diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index a70e8a13964..b7e3c040b7e 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,12 +1,15 @@ # Last match in file takes precedence. # Sorting by path instead of by who added it one day :( +# this isn't how codeowners rules work pls read the first comment instead of trying to force a sorting order /Resources/ConfigPresets/WizardsDen/ @Chief-Engineer # Moony's Gargantuan List Of Things She Cares About, or MGLOTSCA for short. # You need to add your name to these entries, not make a new one, if you care about them. -/Content.*/Bql/ @moonheart08 -/Content.*/Administration/ @moonheart08 @PaulRitter @DrSmugleaf @Chief-Engineer +/Content.*/Toolshed/ @moonheart08 +**/Toolshed/** @moonheart08 +*Command.cs @moonheart08 +/Content.*/Administration/ @moonheart08 @DrSmugleaf @Chief-Engineer /Content.*/Station/ @moonheart08 /Content.*/Maps/ @moonheart08 /Content.*/GameTicking/ @moonheart08 @EmoGarbage404 @@ -14,19 +17,14 @@ /Resources/ServerInfo/Guidebook/ @moonheart08 @EmoGarbage404 /Resources/engineCommandPerms.yml @moonheart08 @Chief-Engineer /Resources/clientCommandPerms.yml @moonheart08 @Chief-Engineer -/Resources/Prototypes/species.yml @moonheart08 -/Resources/Prototypes/Body/ @moonheart08 @mirrorcult @DrSmugleaf # suffering -/Resources/Prototypes/Maps/ @moonheart08 @Emisse -/Resources/Prototypes/Entities/Mobs/Player/ @moonheart08 @mirrorcult @DrSmugleaf -/Resources/Prototypes/Entities/Mobs/Species/ @moonheart08 @mirrorcult @DrSmugleaf -/Content.*/Body/ @mirrorcult @DrSmugleaf -/Content.*/Chemistry/ @mirrorcult -/Content.*/StatusEffect/ @mirrorcult -/Content.*/Whitelist/ @mirrorcult -/Resources/Prototypes/Reagents/ @mirrorcult -/Resources/Prototypes/Recipes/Reactions @mirrorcult -/Resources/Prototypes/Chemistry @mirrorcult +/Resources/Prototypes/Maps/ @Emisse + +/Resources/Prototypes/Body/ @DrSmugleaf # suffering +/Resources/Prototypes/Entities/Mobs/Player/ @DrSmugleaf +/Resources/Prototypes/Entities/Mobs/Species/ @DrSmugleaf +/Content.*/Body/ @DrSmugleaf +/Content.YAMLLinter @DrSmugleaf /Content.*/Verbs/ @ElectroJr /Content.Client/ContextMenu/ @ElectroJr @@ -52,21 +50,13 @@ /Content.*/Forensics/ @ficcialfaint -/Content.YAMLLinter @PaulRitter @DrSmugleaf -/Content.*/Inventory @PaulRitter -/Content.*/Arcade @PaulRitter -/Content.*/Conveyor @PaulRitter -/Content.*/Decals @PaulRitter -/Content.*/Objectives @PaulRitter -/Content.*/MachineLinking @PaulRitter -/Content.*/Crayon @PaulRitter -/Content.*/Clothing @PaulRitter - -# Be they Fluent translations or Freemarker templates, I know them both! -*.ftl @RemieRichards - # SKREEEE /Content.*.Database/ @PJB3005 @DrSmugleaf /Content.Shared.Database/Log*.cs @PJB3005 @DrSmugleaf @Chief-Engineer /Pow3r/ @PJB3005 /Content.Server/Power/Pow3r/ @PJB3005 + +# notafet +/Content.*/Atmos/ @Partmedia +/Content.*/Botany/ @Partmedia + diff --git a/.github/ISSUE_TEMPLATE/toolshed-feature-request.md b/.github/ISSUE_TEMPLATE/toolshed-feature-request.md new file mode 100644 index 00000000000..dae84c3e255 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/toolshed-feature-request.md @@ -0,0 +1,18 @@ +--- +name: Toolshed feature request +about: Suggest a feature for Toolshed (for game admins/developers) +title: "[TOOLSHED REQUEST]" +labels: Toolshed +assignees: moonheart08 + +--- + +**Is your feature request related to a problem/bug? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the command you'd like** +A clear and concise description of what you want and what it should do. +If you're a technical user (i.e. programmer) including type signatures is helpful. + +**Additional context** +Add any other context or screenshots about the feature request here. diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 2879bd210a2..a397604185a 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -2,10 +2,15 @@ ## About the PR - + +## Why / Balance + -**Media** +## Technical details + + +## Media -Putting a name after the :cl: symbol will change the name that shows in the changelog (otherwise it takes your GitHub username) -Like so: :cl: PJB +**Changelog** + + diff --git a/.github/workflows/benchmarks.yml b/.github/workflows/benchmarks.yml index dcedb2f8fec..3a6129c7a6b 100644 --- a/.github/workflows/benchmarks.yml +++ b/.github/workflows/benchmarks.yml @@ -11,7 +11,7 @@ jobs: name: Run Benchmarks runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.6.0 with: submodules: 'recursive' - name: Get Engine version diff --git a/.github/workflows/build-docfx.yml b/.github/workflows/build-docfx.yml index 68439cb6de0..1c4b543743d 100644 --- a/.github/workflows/build-docfx.yml +++ b/.github/workflows/build-docfx.yml @@ -8,7 +8,7 @@ jobs: docfx: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.6.0 - name: Setup submodule run: | git submodule update --init --recursive @@ -19,9 +19,9 @@ jobs: cd RobustToolbox/ git submodule update --init --recursive - name: Setup .NET Core - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v3.2.0 with: - dotnet-version: 6.0.x + dotnet-version: 7.0.x - name: Install dependencies run: dotnet restore diff --git a/.github/workflows/build-map-renderer.yml b/.github/workflows/build-map-renderer.yml new file mode 100644 index 00000000000..4aa4b29c85e --- /dev/null +++ b/.github/workflows/build-map-renderer.yml @@ -0,0 +1,57 @@ +name: Build & Test Map Renderer + +on: + push: + branches: [ master, staging, trying ] + merge_group: + pull_request: + types: [ opened, reopened, synchronize, ready_for_review ] + branches: [ master ] + +jobs: + build: + if: github.actor != 'PJBot' && github.event.pull_request.draft == false + strategy: + matrix: + os: [ubuntu-latest, windows-latest] + + runs-on: ${{ matrix.os }} + + steps: + - name: Checkout Master + uses: actions/checkout@v3.6.0 + + - name: Setup Submodule + run: | + git submodule update --init --recursive + + - name: Pull engine updates + uses: space-wizards/submodule-dependency@v0.1.5 + + - name: Update Engine Submodules + run: | + cd RobustToolbox/ + git submodule update --init --recursive + + - name: Setup .NET Core + uses: actions/setup-dotnet@v3.2.0 + with: + dotnet-version: 7.0.x + + - name: Install dependencies + run: dotnet restore + + - name: Build Project + run: dotnet build Content.MapRenderer --configuration Release --no-restore /p:WarningsAsErrors=nullable /m + + - name: Run Map Renderer + run: dotnet run --project Content.MapRenderer Dev + + ci-success: + name: Build & Test Debug + needs: + - build + runs-on: ubuntu-latest + steps: + - name: CI succeeded + run: exit 0 diff --git a/.github/workflows/build-test-debug.yml b/.github/workflows/build-test-debug.yml index 27e135621b1..1a6addd8bb9 100644 --- a/.github/workflows/build-test-debug.yml +++ b/.github/workflows/build-test-debug.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Checkout Master - uses: actions/checkout@v2 + uses: actions/checkout@v3.6.0 - name: Setup Submodule run: | @@ -34,9 +34,9 @@ jobs: git submodule update --init --recursive - name: Setup .NET Core - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v3.2.0 with: - dotnet-version: 6.0.x + dotnet-version: 7.0.x - name: Install dependencies run: dotnet restore diff --git a/.github/workflows/build-test-release.yml b/.github/workflows/build-test-release.yml index 240b3d55483..b6fc950815c 100644 --- a/.github/workflows/build-test-release.yml +++ b/.github/workflows/build-test-release.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Checkout Master - uses: actions/checkout@v2 + uses: actions/checkout@v3.6.0 - name: Setup Submodule run: | @@ -34,9 +34,9 @@ jobs: git submodule update --init --recursive - name: Setup .NET Core - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v3.2.0 with: - dotnet-version: 6.0.x + dotnet-version: 7.0.x - name: Install dependencies run: dotnet restore diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 8f906dbb865..98764834ac0 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -16,13 +16,13 @@ jobs: - name: Install dependencies run: sudo apt-get install -y python3-paramiko - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.6.0 with: submodules: 'recursive' - name: Setup .NET Core - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v3.2.0 with: - dotnet-version: 6.0.100 + dotnet-version: 7.0.x - name: Get Engine Tag run: | diff --git a/.github/workflows/rsi-diff.yml b/.github/workflows/rsi-diff.yml index a2fef2e3840..1f122526d73 100644 --- a/.github/workflows/rsi-diff.yml +++ b/.github/workflows/rsi-diff.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3.6.0 - name: Get changed files id: files diff --git a/.github/workflows/test-packaging.yml b/.github/workflows/test-packaging.yml index 4afaabf10c2..815b6a4adc6 100644 --- a/.github/workflows/test-packaging.yml +++ b/.github/workflows/test-packaging.yml @@ -34,7 +34,7 @@ jobs: steps: - name: Checkout Master - uses: actions/checkout@v2 + uses: actions/checkout@v3.6.0 - name: Setup Submodule run: | @@ -49,9 +49,9 @@ jobs: git submodule update --init --recursive - name: Setup .NET Core - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v3.2.0 with: - dotnet-version: 6.0.x + dotnet-version: 7.0.x - name: Install dependencies run: dotnet restore diff --git a/.github/workflows/update-wiki.yml b/.github/workflows/update-wiki.yml index 1d5b0a8725f..41f99f5794a 100644 --- a/.github/workflows/update-wiki.yml +++ b/.github/workflows/update-wiki.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Checkout Master - uses: actions/checkout@v2 + uses: actions/checkout@v3.6.0 - name: Setup Submodule run: | @@ -36,9 +36,9 @@ jobs: git submodule update --init --recursive - name: Setup .NET Core - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v3.2.0 with: - dotnet-version: 6.0.100 + dotnet-version: 7.0.x - name: Install Dependencies run: dotnet restore diff --git a/.github/workflows/validate-rgas.yml b/.github/workflows/validate-rgas.yml index 539a3357d4a..2c4bb40fdf3 100644 --- a/.github/workflows/validate-rgas.yml +++ b/.github/workflows/validate-rgas.yml @@ -12,7 +12,7 @@ jobs: if: github.actor != 'PJBot' && github.event.pull_request.draft == false runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.6.0 - name: Setup Submodule run: git submodule update --init - name: Pull engine updates diff --git a/.github/workflows/validate-rsis.yml b/.github/workflows/validate-rsis.yml index 5b9fddff33b..b76df28e6af 100644 --- a/.github/workflows/validate-rsis.yml +++ b/.github/workflows/validate-rsis.yml @@ -13,7 +13,7 @@ jobs: name: Validate RSIs runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.6.0 - name: Setup Submodule run: git submodule update --init - name: Pull engine updates diff --git a/.github/workflows/validate_mapfiles.yml b/.github/workflows/validate_mapfiles.yml index c47d33db716..fb11e1a4697 100644 --- a/.github/workflows/validate_mapfiles.yml +++ b/.github/workflows/validate_mapfiles.yml @@ -12,7 +12,7 @@ jobs: if: github.actor != 'PJBot' && github.event.pull_request.draft == false runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.6.0 - name: Setup Submodule run: git submodule update --init - name: Pull engine updates diff --git a/.github/workflows/yaml-linter.yml b/.github/workflows/yaml-linter.yml index 8634dc473e0..254384acff0 100644 --- a/.github/workflows/yaml-linter.yml +++ b/.github/workflows/yaml-linter.yml @@ -13,7 +13,7 @@ jobs: if: github.actor != 'PJBot' && github.event.pull_request.draft == false runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.6.0 - name: Setup submodule run: | git submodule update --init --recursive @@ -24,9 +24,9 @@ jobs: cd RobustToolbox/ git submodule update --init --recursive - name: Setup .NET Core - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v3.2.0 with: - dotnet-version: 6.0.100 + dotnet-version: 7.0.x - name: Install dependencies run: dotnet restore - name: Build diff --git a/.vscode/settings.json b/.vscode/settings.json index eed7d291a29..0e0d3ae890c 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,4 @@ { - "omnisharp.analyzeOpenDocumentsOnly": true + "omnisharp.analyzeOpenDocumentsOnly": true, + "dotnet.defaultSolution": "SpaceStation14.sln" } diff --git a/Content.Benchmarks/DeviceNetworkingBenchmark.cs b/Content.Benchmarks/DeviceNetworkingBenchmark.cs index 8af7f2b262e..16805c2684f 100644 --- a/Content.Benchmarks/DeviceNetworkingBenchmark.cs +++ b/Content.Benchmarks/DeviceNetworkingBenchmark.cs @@ -2,6 +2,7 @@ using System.Threading.Tasks; using BenchmarkDotNet.Attributes; using Content.IntegrationTests; +using Content.IntegrationTests.Pair; using Content.IntegrationTests.Tests.DeviceNetwork; using Content.Server.DeviceNetwork; using Content.Server.DeviceNetwork.Systems; @@ -16,7 +17,7 @@ namespace Content.Benchmarks; [MemoryDiagnoser] public class DeviceNetworkingBenchmark { - private PairTracker _pair = default!; + private TestPair _pair = default!; private DeviceNetworkTestSystem _deviceNetTestSystem = default!; private DeviceNetworkSystem _deviceNetworkSystem = default!; private EntityUid _sourceEntity; @@ -58,8 +59,9 @@ public class DeviceNetworkingBenchmark public async Task SetupAsync() { ProgramShared.PathOffset = "../../../../"; + PoolManager.Startup(typeof(DeviceNetworkingBenchmark).Assembly); _pair = await PoolManager.GetServerClient(); - var server = _pair.Pair.Server; + var server = _pair.Server; await server.WaitPost(() => { @@ -90,14 +92,15 @@ await server.WaitPost(() => public async Task Cleanup() { await _pair.DisposeAsync(); + PoolManager.Shutdown(); } [Benchmark(Baseline = true, Description = "Entity Events")] public async Task EventSentBaseline() { - var server = _pair.Pair.Server; + var server = _pair.Server; - _pair.Pair.Server.Post(() => + _pair.Server.Post(() => { foreach (var entity in _targetEntities) { @@ -112,9 +115,9 @@ public async Task EventSentBaseline() [Benchmark(Description = "Device Net Broadcast No Connection Checks")] public async Task DeviceNetworkBroadcastNoConnectionChecks() { - var server = _pair.Pair.Server; + var server = _pair.Server; - _pair.Pair.Server.Post(() => + _pair.Server.Post(() => { _deviceNetworkSystem.QueuePacket(_sourceEntity, null, _payload, 100); }); @@ -126,9 +129,9 @@ public async Task DeviceNetworkBroadcastNoConnectionChecks() [Benchmark(Description = "Device Net Broadcast Wireless Connection Checks")] public async Task DeviceNetworkBroadcastWirelessConnectionChecks() { - var server = _pair.Pair.Server; + var server = _pair.Server; - _pair.Pair.Server.Post(() => + _pair.Server.Post(() => { _deviceNetworkSystem.QueuePacket(_sourceWirelessEntity, null, _payload, 100); }); diff --git a/Content.Benchmarks/EntityManagerGetAllComponents.cs b/Content.Benchmarks/EntityManagerGetAllComponents.cs index eb9b2c6a713..14edf54643e 100644 --- a/Content.Benchmarks/EntityManagerGetAllComponents.cs +++ b/Content.Benchmarks/EntityManagerGetAllComponents.cs @@ -11,7 +11,7 @@ namespace Content.Benchmarks { [Virtual] - public class EntityManagerGetAllComponents + public partial class EntityManagerGetAllComponents { private IEntityManager _entityManager; @@ -87,7 +87,7 @@ public int Noop() return count; } - private sealed class DummyComponent : Component + private sealed partial class DummyComponent : Component { } } diff --git a/Content.Benchmarks/MapLoadBenchmark.cs b/Content.Benchmarks/MapLoadBenchmark.cs index bd4213e4385..5d94ef85cbd 100644 --- a/Content.Benchmarks/MapLoadBenchmark.cs +++ b/Content.Benchmarks/MapLoadBenchmark.cs @@ -4,6 +4,7 @@ using System.Threading.Tasks; using BenchmarkDotNet.Attributes; using Content.IntegrationTests; +using Content.IntegrationTests.Pair; using Content.Server.Maps; using Robust.Server.GameObjects; using Robust.Shared; @@ -17,7 +18,7 @@ namespace Content.Benchmarks; [Virtual] public class MapLoadBenchmark { - private PairTracker _pair = default!; + private TestPair _pair = default!; private MapLoaderSystem _mapLoader = default!; private IMapManager _mapManager = default!; @@ -25,9 +26,10 @@ public class MapLoadBenchmark public void Setup() { ProgramShared.PathOffset = "../../../../"; + PoolManager.Startup(null); _pair = PoolManager.GetServerClient().GetAwaiter().GetResult(); - var server = _pair.Pair.Server; + var server = _pair.Server; Paths = server.ResolveDependency() .EnumeratePrototypes() @@ -41,6 +43,7 @@ public void Setup() public async Task Cleanup() { await _pair.DisposeAsync(); + PoolManager.Shutdown(); } public static IEnumerable MapsSource { get; set; } @@ -54,7 +57,7 @@ public async Task Cleanup() public async Task LoadMap() { var mapPath = Paths[Map]; - var server = _pair.Pair.Server; + var server = _pair.Server; await server.WaitPost(() => { var success = _mapLoader.TryLoad(new MapId(10), mapPath, out _); @@ -66,7 +69,7 @@ await server.WaitPost(() => [IterationCleanup] public void IterationCleanup() { - var server = _pair.Pair.Server; + var server = _pair.Server; server.WaitPost(() => { _mapManager.DeleteMap(new MapId(10)); diff --git a/Content.Benchmarks/Program.cs b/Content.Benchmarks/Program.cs index 08724064a6b..65b5abaf731 100644 --- a/Content.Benchmarks/Program.cs +++ b/Content.Benchmarks/Program.cs @@ -1,11 +1,14 @@ using System; using System.Linq; using System.Threading.Tasks; -using BenchmarkDotNet.Configs; using BenchmarkDotNet.Running; using Content.IntegrationTests; using Content.Server.Maps; +#if DEBUG +using BenchmarkDotNet.Configs; +#else using Robust.Benchmarks.Configs; +#endif using Robust.Shared.Prototypes; namespace Content.Benchmarks @@ -22,9 +25,10 @@ public static async Task MainAsync(string[] args) { PoolManager.Startup(typeof(Program).Assembly); var pair = await PoolManager.GetServerClient(); - var gameMaps = pair.Pair.Server.ResolveDependency().EnumeratePrototypes().ToList(); + var gameMaps = pair.Server.ResolveDependency().EnumeratePrototypes().ToList(); MapLoadBenchmark.MapsSource = gameMaps.Select(x => x.ID); await pair.CleanReturnAsync(); + PoolManager.Shutdown(); #if DEBUG Console.ForegroundColor = ConsoleColor.Red; @@ -35,8 +39,6 @@ public static async Task MainAsync(string[] args) var config = Environment.GetEnvironmentVariable("ROBUST_BENCHMARKS_ENABLE_SQL") != null ? DefaultSQLConfig.Instance : null; BenchmarkSwitcher.FromAssembly(typeof(Program).Assembly).Run(args, config); #endif - - PoolManager.Shutdown(); } } } diff --git a/Content.Benchmarks/SpawnEquipDeleteBenchmark.cs b/Content.Benchmarks/SpawnEquipDeleteBenchmark.cs new file mode 100644 index 00000000000..de51b2fb192 --- /dev/null +++ b/Content.Benchmarks/SpawnEquipDeleteBenchmark.cs @@ -0,0 +1,66 @@ +using System.Threading.Tasks; +using BenchmarkDotNet.Attributes; +using Content.IntegrationTests; +using Content.IntegrationTests.Pair; +using Content.Server.Station.Systems; +using Content.Shared.Roles; +using Robust.Shared; +using Robust.Shared.Analyzers; +using Robust.Shared.GameObjects; +using Robust.Shared.Map; + +namespace Content.Benchmarks; + +/// +/// This benchmarks spawns several humans, gives them captain equipment and then deletes them. +/// This measures performance for spawning, deletion, containers, and inventory code. +/// +[Virtual, MemoryDiagnoser] +public class SpawnEquipDeleteBenchmark +{ + private TestPair _pair = default!; + private StationSpawningSystem _spawnSys = default!; + private const string Mob = "MobHuman"; + private StartingGearPrototype _gear = default!; + private EntityUid _entity; + private EntityCoordinates _coords; + + [Params(1, 4, 16, 64)] + public int N; + + [GlobalSetup] + public async Task SetupAsync() + { + ProgramShared.PathOffset = "../../../../"; + PoolManager.Startup(null); + _pair = await PoolManager.GetServerClient(); + var server = _pair.Server; + + var mapData = await _pair.CreateTestMap(); + _coords = mapData.GridCoords; + _spawnSys = server.System(); + _gear = server.ProtoMan.Index("CaptainGear"); + } + + [GlobalCleanup] + public async Task Cleanup() + { + await _pair.DisposeAsync(); + PoolManager.Shutdown(); + } + + [Benchmark] + public async Task SpawnDeletePlayer() + { + await _pair.Server.WaitPost(() => + { + var server = _pair.Server; + for (var i = 0; i < N; i++) + { + _entity = server.EntMan.SpawnAttachedTo(Mob, _coords); + _spawnSys.EquipStartingGear(_entity, _gear, null); + server.EntMan.DeleteEntity(_entity); + } + }); + } +} diff --git a/Content.Client/Access/UI/IdCardConsoleBoundUserInterface.cs b/Content.Client/Access/UI/IdCardConsoleBoundUserInterface.cs index 292759dc878..be45e57c8b1 100644 --- a/Content.Client/Access/UI/IdCardConsoleBoundUserInterface.cs +++ b/Content.Client/Access/UI/IdCardConsoleBoundUserInterface.cs @@ -5,6 +5,7 @@ using Robust.Client.GameObjects; using Robust.Shared.Prototypes; using static Content.Shared.Access.Components.IdCardConsoleComponent; + namespace Content.Client.Access.UI { public sealed class IdCardConsoleBoundUserInterface : BoundUserInterface diff --git a/Content.Client/Actions/ActionEvents.cs b/Content.Client/Actions/ActionEvents.cs index 36739b0dbea..2fdf25c9767 100644 --- a/Content.Client/Actions/ActionEvents.cs +++ b/Content.Client/Actions/ActionEvents.cs @@ -1,11 +1,9 @@ -using Content.Shared.Actions.ActionTypes; - namespace Content.Client.Actions; /// -/// This event is raised when a user clicks on an empty action slot. Enables other systems to fill this slow. +/// This event is raised when a user clicks on an empty action slot. Enables other systems to fill this slot. /// public sealed class FillActionSlotEvent : EntityEventArgs { - public ActionType? Action; + public EntityUid? Action; } diff --git a/Content.Client/Actions/ActionsSystem.cs b/Content.Client/Actions/ActionsSystem.cs index ba007f35aad..07b0e6331d1 100644 --- a/Content.Client/Actions/ActionsSystem.cs +++ b/Content.Client/Actions/ActionsSystem.cs @@ -1,10 +1,10 @@ using System.IO; using System.Linq; using Content.Shared.Actions; -using Content.Shared.Actions.ActionTypes; using JetBrains.Annotations; using Robust.Client.GameObjects; using Robust.Client.Player; +using Robust.Shared.Containers; using Robust.Shared.ContentPack; using Robust.Shared.GameStates; using Robust.Shared.Input.Binding; @@ -12,6 +12,7 @@ using Robust.Shared.Serialization.Markdown; using Robust.Shared.Serialization.Markdown.Mapping; using Robust.Shared.Serialization.Markdown.Sequence; +using Robust.Shared.Serialization.Markdown.Value; using Robust.Shared.Utility; using YamlDotNet.RepresentationModel; @@ -20,14 +21,15 @@ namespace Content.Client.Actions [UsedImplicitly] public sealed class ActionsSystem : SharedActionsSystem { - public delegate void OnActionReplaced(ActionType existing, ActionType action); + public delegate void OnActionReplaced(EntityUid actionId); [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly IResourceManager _resources = default!; [Dependency] private readonly ISerializationManager _serialization = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; - public event Action? ActionAdded; - public event Action? ActionRemoved; + public event Action? ActionAdded; + public event Action? ActionRemoved; public event OnActionReplaced? ActionReplaced; public event Action? ActionsUpdated; public event Action? LinkActions; @@ -35,7 +37,11 @@ public sealed class ActionsSystem : SharedActionsSystem public event Action? ClearAssignments; public event Action>? AssignSlot; - public ActionsComponent? PlayerActions { get; private set; } + /// + /// Queue of entities with that needs to be updated after + /// handling a state. + /// + private readonly Queue _actionHoldersQueue = new(); public override void Initialize() { @@ -45,12 +51,13 @@ public override void Initialize() SubscribeLocalEvent(HandleComponentState); } - public override void Dirty(ActionType action) + public override void Dirty(EntityUid? actionId) { - if (_playerManager.LocalPlayer?.ControlledEntity != action.AttachedEntity) + var action = GetActionData(actionId); + if (_playerManager.LocalPlayer?.ControlledEntity != action?.AttachedEntity) return; - base.Dirty(action); + base.Dirty(actionId); ActionsUpdated?.Invoke(); } @@ -59,96 +66,78 @@ private void HandleComponentState(EntityUid uid, ActionsComponent component, ref if (args.Current is not ActionsComponentState state) return; - state.SortedActions ??= new SortedSet(state.Actions); - var serverActions = state.SortedActions; - var removed = new List(); - - foreach (var act in component.Actions.ToList()) - { - if (act.ClientExclusive) - continue; - - if (!serverActions.TryGetValue(act, out var serverAct)) - { - component.Actions.Remove(act); - if (act.AutoRemove) - removed.Add(act); + component.Actions.Clear(); + component.Actions.UnionWith(EnsureEntitySet(state.Actions, uid)); - continue; - } + _actionHoldersQueue.Enqueue(uid); + } - act.CopyFrom(serverAct); + protected override void AddActionInternal(EntityUid holderId, EntityUid actionId, BaseContainer container, ActionsComponent holder) + { + // Sometimes the client receives actions from the server, before predicting that newly added components will add + // their own shared actions. Just in case those systems ever decided to directly access action properties (e.g., + // action.Toggled), we will remove duplicates: + if (container.Contains(actionId)) + { + ActionReplaced?.Invoke(actionId); } - - var added = new List(); - - // Anything that remains is a new action - foreach (var newAct in serverActions) + else { - if (component.Actions.Contains(newAct)) - continue; - - // We create a new action, not just sorting a reference to the state's action. - var action = (ActionType) newAct.Clone(); - component.Actions.Add(action); - added.Add(action); + base.AddActionInternal(holderId, actionId, container, holder); } + } - if (_playerManager.LocalPlayer?.ControlledEntity != uid) + public override void AddAction(EntityUid holderId, EntityUid actionId, EntityUid? provider, ActionsComponent? holder = null, BaseActionComponent? action = null, bool dirty = true, BaseContainer? actionContainer = null) + { + if (!Resolve(holderId, ref holder, false)) return; - foreach (var action in removed) + action ??= GetActionData(actionId); + if (action == null) { - ActionRemoved?.Invoke(action); + Log.Warning($"No {nameof(BaseActionComponent)} found on entity {actionId}"); + return; } - foreach (var action in added) - { - ActionAdded?.Invoke(action); - } + dirty &= !action.ClientExclusive; + base.AddAction(holderId, actionId, provider, holder, action, dirty, actionContainer); - ActionsUpdated?.Invoke(); + if (holderId == _playerManager.LocalPlayer?.ControlledEntity) + ActionAdded?.Invoke(actionId); } - protected override void AddActionInternal(ActionsComponent comp, ActionType action) + public override void RemoveAction(EntityUid holderId, EntityUid? actionId, ActionsComponent? comp = null, BaseActionComponent? action = null, bool dirty = true) { - // Sometimes the client receives actions from the server, before predicting that newly added components will add - // their own shared actions. Just in case those systems ever decided to directly access action properties (e.g., - // action.Toggled), we will remove duplicates: - if (comp.Actions.TryGetValue(action, out var existing)) - { - comp.Actions.Remove(existing); - ActionReplaced?.Invoke(existing, action); - } - - comp.Actions.Add(action); - } + if (GameTiming.ApplyingState) + return; - public override void AddAction(EntityUid uid, ActionType action, EntityUid? provider, ActionsComponent? comp = null, bool dirty = true) - { - if (!Resolve(uid, ref comp, false)) + if (!Resolve(holderId, ref comp, false)) return; - dirty &= !action.ClientExclusive; - base.AddAction(uid, action, provider, comp, dirty); + if (actionId == null) + return; - if (uid == _playerManager.LocalPlayer?.ControlledEntity) - ActionAdded?.Invoke(action); - } + action ??= GetActionData(actionId); - public override void RemoveAction(EntityUid uid, ActionType action, ActionsComponent? comp = null, bool dirty = true) - { - if (GameTiming.ApplyingState && !action.ClientExclusive) + if (action is { ClientExclusive: false }) return; - if (!Resolve(uid, ref comp, false)) + dirty &= !action?.ClientExclusive ?? true; + base.RemoveAction(holderId, actionId, comp, action, dirty); + + if (_playerManager.LocalPlayer?.ControlledEntity != holderId) return; - dirty &= !action.ClientExclusive; - base.RemoveAction(uid, action, comp, dirty); + if (action == null || action.AutoRemove) + ActionRemoved?.Invoke(actionId.Value); + } - if (action.AutoRemove && uid == _playerManager.LocalPlayer?.ControlledEntity) - ActionRemoved?.Invoke(action); + public IEnumerable<(EntityUid Id, BaseActionComponent Comp)> GetClientActions() + { + if (_playerManager.LocalPlayer?.ControlledEntity is not { } user) + return Enumerable.Empty<(EntityUid, BaseActionComponent)>(); + + return GetActions(user); } private void OnPlayerAttached(EntityUid uid, ActionsComponent component, PlayerAttachedEvent args) @@ -163,20 +152,18 @@ private void OnPlayerDetached(EntityUid uid, ActionsComponent component, PlayerD public void UnlinkAllActions() { - PlayerActions = null; UnlinkActions?.Invoke(); } public void LinkAllActions(ActionsComponent? actions = null) { - var player = _playerManager.LocalPlayer?.ControlledEntity; - if (player == null || !Resolve(player.Value, ref actions, false)) + if (_playerManager.LocalPlayer?.ControlledEntity is not { } user || + !Resolve(user, ref actions, false)) { return; } LinkActions?.Invoke(actions); - PlayerActions = actions; } public override void Shutdown() @@ -185,61 +172,40 @@ public override void Shutdown() CommandBinds.Unregister(); } - public void TriggerAction(ActionType? action) + public void TriggerAction(EntityUid actionId, BaseActionComponent action) { - if (PlayerActions == null || action == null || _playerManager.LocalPlayer?.ControlledEntity is not { Valid: true } user) + if (_playerManager.LocalPlayer?.ControlledEntity is not { } user || + !TryComp(user, out ActionsComponent? actions)) + { return; + } if (action.Provider != null && Deleted(action.Provider)) return; - if (action is not InstantAction instantAction) - { + if (action is not InstantActionComponent instantAction) return; - } if (action.ClientExclusive) { if (instantAction.Event != null) instantAction.Event.Performer = user; - PerformAction(user, PlayerActions, instantAction, instantAction.Event, GameTiming.CurTime); + PerformAction(user, actions, actionId, instantAction, instantAction.Event, GameTiming.CurTime); } else { - var request = new RequestPerformActionEvent(instantAction); + var request = new RequestPerformActionEvent(GetNetEntity(actionId)); EntityManager.RaisePredictiveEvent(request); } } - /*public void SaveActionAssignments(string path) - { - - // Currently only tested with temporary innate actions (i.e., mapping actions). No guarantee it works with - // other actions. If its meant to be used for full game state saving/loading, the entity that provides - // actions needs to keep the same uid. - - var sequence = new SequenceDataNode(); - - foreach (var (action, assigns) in Assignments.Assignments) - { - var slot = new MappingDataNode(); - slot.Add("action", _serializationManager.WriteValue(action)); - slot.Add("assignments", _serializationManager.WriteValue(assigns)); - sequence.Add(slot); - } - - using var writer = _resourceManager.UserData.OpenWriteText(new ResourcePath(path).ToRootedPath()); - var stream = new YamlStream { new(sequence.ToSequenceNode()) }; - stream.Save(new YamlMappingFix(new Emitter(writer)), false); - }*/ - /// /// Load actions and their toolbar assignments from a file. /// public void LoadActionAssignments(string path, bool userData) { - if (PlayerActions == null) + if (_playerManager.LocalPlayer?.ControlledEntity is not { } user) return; var file = new ResPath(path).ToRootedPath(); @@ -265,17 +231,13 @@ public void LoadActionAssignments(string path, bool userData) if (!map.TryGet("action", out var actionNode)) continue; - var action = _serialization.Read(actionNode, notNullableOverride: true); + var action = _serialization.Read(actionNode, notNullableOverride: true); + var actionId = Spawn(null); + AddComp(actionId, action); + AddAction(user, actionId, null); - if (PlayerActions.Actions.TryGetValue(action, out var existingAction)) - { - existingAction.CopyFrom(action); - action = existingAction; - } - else - { - PlayerActions.Actions.Add(action); - } + if (map.TryGet("name", out var nameNode)) + _metaData.SetEntityName(actionId, nameNode.Value); if (!map.TryGet("assignments", out var assignmentNode)) continue; @@ -284,7 +246,7 @@ public void LoadActionAssignments(string path, bool userData) foreach (var index in nodeAssignments) { - var assignment = new SlotAssignment(index.Hotbar, index.Slot, action); + var assignment = new SlotAssignment(index.Hotbar, index.Slot, actionId); assignments.Add(assignment); } } @@ -292,6 +254,95 @@ public void LoadActionAssignments(string path, bool userData) AssignSlot?.Invoke(assignments); } - public record struct SlotAssignment(byte Hotbar, byte Slot, ActionType Action); + public override void Update(float frameTime) + { + base.Update(frameTime); + + if (_actionHoldersQueue.Count == 0) + return; + + var removed = new List(); + var added = new List<(EntityUid Id, BaseActionComponent Comp)>(); + var query = GetEntityQuery(); + var queue = new Queue(_actionHoldersQueue); + _actionHoldersQueue.Clear(); + + while (queue.TryDequeue(out var holderId)) + { + if (!TryGetContainer(holderId, out var container) || container.ExpectedEntities.Count > 0) + { + _actionHoldersQueue.Enqueue(holderId); + continue; + } + + if (!query.TryGetComponent(holderId, out var holder)) + continue; + + removed.Clear(); + added.Clear(); + + foreach (var (act, data) in holder.OldClientActions.ToList()) + { + if (data.ClientExclusive) + continue; + + if (!holder.Actions.Contains(act)) + { + holder.OldClientActions.Remove(act); + if (data.AutoRemove) + removed.Add(act); + } + } + + // Anything that remains is a new action + foreach (var newAct in holder.Actions) + { + if (!TryGetActionData(newAct, out var serverData)) + continue; + + if (!holder.OldClientActions.ContainsKey(newAct)) + added.Add((newAct, serverData)); + + holder.OldClientActions[newAct] = new ActionMetaData(serverData.ClientExclusive, serverData.AutoRemove); + } + + if (_playerManager.LocalPlayer?.ControlledEntity != holderId) + return; + + foreach (var action in removed) + { + ActionRemoved?.Invoke(action); + } + + added.Sort(static (a, b) => + { + if (a.Comp.Priority != b.Comp.Priority) + return a.Comp.Priority - b.Comp.Priority; + + if (a.Comp.Provider != b.Comp.Provider) + { + if (a.Comp.Provider == null) + return -1; + + if (b.Comp.Provider == null) + return 1; + + // uid to int casting... it says "Do NOT use this in content". You can't tell me what to do. + return (int) a.Comp.Provider - (int) b.Comp.Provider; + } + + return 0; + }); + + foreach (var action in added) + { + ActionAdded?.Invoke(action.Item1); + } + + ActionsUpdated?.Invoke(); + } + } + + public record struct SlotAssignment(byte Hotbar, byte Slot, EntityUid ActionId); } } diff --git a/Content.Client/Actions/UI/ActionAlertTooltip.cs b/Content.Client/Actions/UI/ActionAlertTooltip.cs index 319c682299b..f48350d7722 100644 --- a/Content.Client/Actions/UI/ActionAlertTooltip.cs +++ b/Content.Client/Actions/UI/ActionAlertTooltip.cs @@ -1,9 +1,5 @@ -using System; -using Content.Client.Stylesheets; -using Content.Shared.Actions; -using Content.Shared.Actions.ActionTypes; +using Content.Client.Stylesheets; using Robust.Client.UserInterface.Controls; -using Robust.Shared.IoC; using Robust.Shared.Timing; using Robust.Shared.Utility; using static Robust.Client.UserInterface.Controls.BoxContainer; diff --git a/Content.Client/Administration/AdminNameOverlay.cs b/Content.Client/Administration/AdminNameOverlay.cs index 8afee7f3669..c21ba2e32ca 100644 --- a/Content.Client/Administration/AdminNameOverlay.cs +++ b/Content.Client/Administration/AdminNameOverlay.cs @@ -35,20 +35,21 @@ protected override void Draw(in OverlayDrawArgs args) foreach (var playerInfo in _system.PlayerList) { + var entity = _entityManager.GetEntity(playerInfo.NetEntity); + // Otherwise the entity can not exist yet - if (!_entityManager.EntityExists(playerInfo.EntityUid)) + if (entity == null || !_entityManager.EntityExists(entity)) { continue; } - var entity = playerInfo.EntityUid.Value; // if not on the same map, continue - if (_entityManager.GetComponent(entity).MapID != _eyeManager.CurrentMap) + if (_entityManager.GetComponent(entity.Value).MapID != _eyeManager.CurrentMap) { continue; } - var aabb = _entityLookup.GetWorldAABB(entity); + var aabb = _entityLookup.GetWorldAABB(entity.Value); // if not on screen, continue if (!aabb.Intersects(in viewport)) diff --git a/Content.Client/Administration/Components/HeadstandComponent.cs b/Content.Client/Administration/Components/HeadstandComponent.cs index 403d3260929..d95e74576bf 100644 --- a/Content.Client/Administration/Components/HeadstandComponent.cs +++ b/Content.Client/Administration/Components/HeadstandComponent.cs @@ -4,7 +4,7 @@ namespace Content.Client.Administration.Components; [RegisterComponent, NetworkedComponent] -public sealed class HeadstandComponent : SharedHeadstandComponent +public sealed partial class HeadstandComponent : SharedHeadstandComponent { } diff --git a/Content.Client/Administration/Components/KillSignComponent.cs b/Content.Client/Administration/Components/KillSignComponent.cs index 88d7c266b19..1cf47b93ff5 100644 --- a/Content.Client/Administration/Components/KillSignComponent.cs +++ b/Content.Client/Administration/Components/KillSignComponent.cs @@ -4,5 +4,5 @@ namespace Content.Client.Administration.Components; [NetworkedComponent, RegisterComponent] -public sealed class KillSignComponent : SharedKillSignComponent +public sealed partial class KillSignComponent : SharedKillSignComponent { } diff --git a/Content.Client/Administration/Managers/ClientAdminManager.cs b/Content.Client/Administration/Managers/ClientAdminManager.cs index 67d847fe51a..66c8b8a0630 100644 --- a/Content.Client/Administration/Managers/ClientAdminManager.cs +++ b/Content.Client/Administration/Managers/ClientAdminManager.cs @@ -4,6 +4,7 @@ using Robust.Client.Player; using Robust.Shared.ContentPack; using Robust.Shared.Network; +using Robust.Shared.Players; using Robust.Shared.Utility; namespace Content.Client.Administration.Managers @@ -121,5 +122,13 @@ void IPostInjectInit.PostInject() ? _adminData : null; } + + public AdminData? GetAdminData(ICommonSession session, bool includeDeAdmin = false) + { + if (_player.LocalPlayer?.UserId == session.UserId) + return _adminData; + + return null; + } } } diff --git a/Content.Client/Administration/Systems/AdminVerbSystem.cs b/Content.Client/Administration/Systems/AdminVerbSystem.cs index e37b51af526..d08ebc0fcef 100644 --- a/Content.Client/Administration/Systems/AdminVerbSystem.cs +++ b/Content.Client/Administration/Systems/AdminVerbSystem.cs @@ -24,12 +24,14 @@ private void AddAdminVerbs(GetVerbsEvent args) // View variables verbs if (_clientConGroupController.CanViewVar()) { - Verb verb = new(); - verb.Category = VerbCategory.Debug; - verb.Text = "View Variables"; - verb.Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/VerbIcons/vv.svg.192dpi.png")); - verb.Act = () => _clientConsoleHost.ExecuteCommand($"vv {args.Target}"); - verb.ClientExclusive = true; // opening VV window is client-side. Don't ask server to run this verb. + Verb verb = new() + { + Category = VerbCategory.Debug, + Text = "View Variables", + Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/VerbIcons/vv.svg.192dpi.png")), + Act = () => _clientConsoleHost.ExecuteCommand($"vv {GetNetEntity(args.Target)}"), + ClientExclusive = true // opening VV window is client-side. Don't ask server to run this verb. + }; args.Verbs.Add(verb); } } diff --git a/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs b/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs index 51fac3474ac..514ce6251b6 100644 --- a/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs +++ b/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs @@ -18,7 +18,6 @@ namespace Content.Client.Administration.UI.CustomControls public sealed partial class PlayerListControl : BoxContainer { private readonly AdminSystem _adminSystem; - private readonly VerbSystem _verbSystem; private List _playerList = new(); private readonly List _sortedPlayerList = new(); @@ -29,11 +28,14 @@ public sealed partial class PlayerListControl : BoxContainer public Func? OverrideText; public Comparison? Comparison; + private IEntityManager _entManager; + private IUserInterfaceManager _uiManager; + public PlayerListControl() { - _adminSystem = EntitySystem.Get(); - _verbSystem = EntitySystem.Get(); - IoCManager.InjectDependencies(this); + _entManager = IoCManager.Resolve(); + _uiManager = IoCManager.Resolve(); + _adminSystem = _entManager.System(); RobustXamlLoader.Load(this); // Fill the Option data PlayerListContainer.ItemPressed += PlayerListItemPressed; @@ -56,9 +58,9 @@ private void PlayerListItemPressed(BaseButton.ButtonEventArgs args, ListData dat if (OverrideText != null && args.Button.Children.FirstOrDefault()?.Children?.FirstOrDefault() is Label label) label.Text = GetText(selectedPlayer); } - else if (args.Event.Function == EngineKeyFunctions.UseSecondary && selectedPlayer.EntityUid != null) + else if (args.Event.Function == EngineKeyFunctions.UseSecondary && selectedPlayer.NetEntity != null) { - IoCManager.Resolve().GetUIController().OpenVerbMenu(selectedPlayer.EntityUid.Value); + _uiManager.GetUIController().OpenVerbMenu(_entManager.GetEntity(selectedPlayer.NetEntity.Value)); } } diff --git a/Content.Client/Administration/UI/ManageSolutions/EditSolutionsEui.cs b/Content.Client/Administration/UI/ManageSolutions/EditSolutionsEui.cs index 4bee78fa090..2e1b4dcf341 100644 --- a/Content.Client/Administration/UI/ManageSolutions/EditSolutionsEui.cs +++ b/Content.Client/Administration/UI/ManageSolutions/EditSolutionsEui.cs @@ -12,9 +12,11 @@ namespace Content.Client.Administration.UI.ManageSolutions public sealed class EditSolutionsEui : BaseEui { private readonly EditSolutionsWindow _window; + private IEntityManager _entManager; public EditSolutionsEui() { + _entManager = IoCManager.Resolve(); _window = new EditSolutionsWindow(); _window.OnClose += () => SendMessage(new CloseEuiMessage()); } @@ -34,7 +36,7 @@ public override void Closed() public override void HandleState(EuiStateBase baseState) { var state = (EditSolutionsEuiState) baseState; - _window.SetTargetEntity(state.Target); + _window.SetTargetEntity(_entManager.GetEntity(state.Target)); _window.UpdateSolutions(state.Solutions); _window.UpdateReagents(); } diff --git a/Content.Client/Administration/UI/ManageSolutions/EditSolutionsWindow.xaml.cs b/Content.Client/Administration/UI/ManageSolutions/EditSolutionsWindow.xaml.cs index 7e46cb0ab25..6c070d3c2e4 100644 --- a/Content.Client/Administration/UI/ManageSolutions/EditSolutionsWindow.xaml.cs +++ b/Content.Client/Administration/UI/ManageSolutions/EditSolutionsWindow.xaml.cs @@ -1,4 +1,5 @@ using Content.Shared.Chemistry.Components; +using Content.Shared.Chemistry.Reagent; using Robust.Client.AutoGenerated; using Robust.Client.Console; using Robust.Client.UserInterface.Controls; @@ -176,16 +177,16 @@ private void UpdateThermalBox(Solution solution) /// /// Add a single reagent entry to the list /// - private void AddReagentEntry(Solution.ReagentQuantity reagent) + private void AddReagentEntry(ReagentQuantity reagentQuantity) { var box = new BoxContainer(); var spin = new FloatSpinBox(1, 2); - spin.Value = reagent.Quantity.Float(); - spin.OnValueChanged += (args) => SetReagent(args, reagent.ReagentId); + spin.Value = reagentQuantity.Quantity.Float(); + spin.OnValueChanged += (args) => SetReagent(args, reagentQuantity.Reagent.Prototype); spin.HorizontalExpand = true; - box.AddChild(new Label() { Text = reagent.ReagentId , HorizontalExpand = true}); + box.AddChild(new Label() { Text = reagentQuantity.Reagent.Prototype , HorizontalExpand = true}); box.AddChild(spin); ReagentList.AddChild(box); @@ -194,18 +195,18 @@ private void AddReagentEntry(Solution.ReagentQuantity reagent) /// /// Execute a command to modify the reagents in the solution. /// - private void SetReagent(FloatSpinBox.FloatSpinBoxEventArgs args, string reagentId) + private void SetReagent(FloatSpinBox.FloatSpinBoxEventArgs args, string prototype) { if (_solutions == null || _selectedSolution == null) return; - var current = _solutions[_selectedSolution].GetReagentQuantity(reagentId); + var current = _solutions[_selectedSolution].GetTotalPrototypeQuantity(prototype); var delta = args.Value - current.Float(); if (MathF.Abs(delta) < 0.01) return; - var command = $"addreagent {_target} {_selectedSolution} {reagentId} {delta}"; + var command = $"addreagent {_target} {_selectedSolution} {prototype} {delta}"; _consoleHost.ExecuteCommand(command); } diff --git a/Content.Client/Administration/UI/SetOutfit/SetOutfitEui.cs b/Content.Client/Administration/UI/SetOutfit/SetOutfitEui.cs index c2771165267..1d41eb2fdec 100644 --- a/Content.Client/Administration/UI/SetOutfit/SetOutfitEui.cs +++ b/Content.Client/Administration/UI/SetOutfit/SetOutfitEui.cs @@ -9,8 +9,11 @@ namespace Content.Client.Administration.UI.SetOutfit public sealed class SetOutfitEui : BaseEui { private readonly SetOutfitMenu _window; + private IEntityManager _entManager; + public SetOutfitEui() { + _entManager = IoCManager.Resolve(); _window = new SetOutfitMenu(); _window.OnClose += OnClosed; } @@ -34,7 +37,7 @@ public override void Closed() public override void HandleState(EuiStateBase state) { var outfitState = (SetOutfitEuiState) state; - _window.TargetEntityId = outfitState.TargetEntityId; + _window.TargetEntityId = outfitState.TargetNetEntity; } } diff --git a/Content.Client/Administration/UI/SetOutfit/SetOutfitMenu.xaml.cs b/Content.Client/Administration/UI/SetOutfit/SetOutfitMenu.xaml.cs index 473d706badc..a2faf208d92 100644 --- a/Content.Client/Administration/UI/SetOutfit/SetOutfitMenu.xaml.cs +++ b/Content.Client/Administration/UI/SetOutfit/SetOutfitMenu.xaml.cs @@ -18,7 +18,7 @@ public sealed partial class SetOutfitMenu : DefaultWindow [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IClientConsoleHost _consoleHost = default!; - public EntityUid? TargetEntityId { get; set; } + public NetEntity? TargetEntityId { get; set; } private StartingGearPrototype? _selectedOutfit; public SetOutfitMenu() diff --git a/Content.Client/Administration/UI/SpawnExplosion/SpawnExplosionEui.cs b/Content.Client/Administration/UI/SpawnExplosion/SpawnExplosionEui.cs index 5413b953f8b..3a8270afb87 100644 --- a/Content.Client/Administration/UI/SpawnExplosion/SpawnExplosionEui.cs +++ b/Content.Client/Administration/UI/SpawnExplosion/SpawnExplosionEui.cs @@ -10,6 +10,7 @@ namespace Content.Client.Administration.UI.SpawnExplosion; [UsedImplicitly] public sealed class SpawnExplosionEui : BaseEui { + [Dependency] private readonly EntityManager _entManager = default!; [Dependency] private readonly IOverlayManager _overlayManager = default!; private readonly SpawnExplosionWindow _window; @@ -69,7 +70,14 @@ public override void HandleMessage(EuiMessageBase msg) _overlayManager.AddOverlay(_debugOverlay); } - _debugOverlay.Tiles = data.Explosion.Tiles; + var tiles = new Dictionary>>(); + _debugOverlay.Tiles.Clear(); + + foreach (var (nent, det) in data.Explosion.Tiles) + { + tiles[_entManager.GetEntity(nent)] = det; + } + _debugOverlay.SpaceTiles = data.Explosion.SpaceTiles; _debugOverlay.Intensity = data.Explosion.Intensity; _debugOverlay.Slope = data.Slope; diff --git a/Content.Client/Administration/UI/Tabs/AdminbusTab/LoadBlueprintsWindow.xaml.cs b/Content.Client/Administration/UI/Tabs/AdminbusTab/LoadBlueprintsWindow.xaml.cs index 0cc3294df16..34611f51aff 100644 --- a/Content.Client/Administration/UI/Tabs/AdminbusTab/LoadBlueprintsWindow.xaml.cs +++ b/Content.Client/Administration/UI/Tabs/AdminbusTab/LoadBlueprintsWindow.xaml.cs @@ -104,7 +104,7 @@ private void OnOptionSelect(OptionButton.ItemSelectedEventArgs obj) private void OnTeleportButtonPressed(BaseButton.ButtonEventArgs obj) { IoCManager.Resolve().ExecuteCommand( - $"tp {XCoordinate.Value} {YCoordinate.Value} {MapOptions.SelectedId}"); + $"tp {XCoordinate.Value} {YCoordinate.Value} {new MapId(MapOptions.SelectedId)}"); } private void OnSubmitButtonPressed(BaseButton.ButtonEventArgs obj) @@ -112,7 +112,7 @@ private void OnSubmitButtonPressed(BaseButton.ButtonEventArgs obj) if (MapPath.Text.Length == 0) return; IoCManager.Resolve().ExecuteCommand( - $"loadbp {MapOptions.SelectedId} \"{MapPath.Text}\" {XCoordinate.Value} {YCoordinate.Value} {RotationSpin.Value}"); + $"loadbp {new MapId(MapOptions.SelectedId)} \"{MapPath.Text}\" {XCoordinate.Value} {YCoordinate.Value} {RotationSpin.Value}"); } } } diff --git a/Content.Client/Administration/UI/Tabs/AtmosTab/AddAtmosWindow.xaml.cs b/Content.Client/Administration/UI/Tabs/AtmosTab/AddAtmosWindow.xaml.cs index 51ac027901e..2f643caae28 100644 --- a/Content.Client/Administration/UI/Tabs/AtmosTab/AddAtmosWindow.xaml.cs +++ b/Content.Client/Administration/UI/Tabs/AtmosTab/AddAtmosWindow.xaml.cs @@ -38,8 +38,9 @@ private void SubmitButtonOnOnPressed(BaseButton.ButtonEventArgs obj) if (_data == null) return; var dataList = _data.ToList(); + var entManager = IoCManager.Resolve(); var selectedGrid = dataList[GridOptions.SelectedId].Owner; - IoCManager.Resolve().ExecuteCommand($"addatmos {selectedGrid}"); + IoCManager.Resolve().ExecuteCommand($"addatmos {entManager.GetNetEntity(selectedGrid)}"); } } } diff --git a/Content.Client/Administration/UI/Tabs/AtmosTab/AddGasWindow.xaml.cs b/Content.Client/Administration/UI/Tabs/AtmosTab/AddGasWindow.xaml.cs index 87db34fbece..d273ea3e55a 100644 --- a/Content.Client/Administration/UI/Tabs/AtmosTab/AddGasWindow.xaml.cs +++ b/Content.Client/Administration/UI/Tabs/AtmosTab/AddGasWindow.xaml.cs @@ -15,7 +15,7 @@ namespace Content.Client.Administration.UI.Tabs.AtmosTab [UsedImplicitly] public sealed partial class AddGasWindow : DefaultWindow { - private List? _gridData; + private List? _gridData; private IEnumerable? _gasData; protected override void EnteredTree() @@ -25,11 +25,12 @@ protected override void EnteredTree() var playerManager = IoCManager.Resolve(); var gridQuery = entManager.AllEntityQueryEnumerator(); - _gridData ??= new List(); + _gridData ??= new List(); _gridData.Clear(); while (gridQuery.MoveNext(out var uid, out _)) { + _gridData.Add(entManager.GetNetEntity(uid)); var player = playerManager.LocalPlayer?.ControlledEntity; var playerGrid = entManager.GetComponentOrNull(player)?.GridUid; GridOptions.AddItem($"{uid} {(playerGrid == uid ? " (Current)" : "")}"); @@ -60,7 +61,6 @@ private void SubmitButtonOnOnPressed(BaseButton.ButtonEventArgs obj) var gasList = _gasData.ToList(); var gasId = gasList[GasOptions.SelectedId].ID; - IoCManager.Resolve().ExecuteCommand( $"addgas {TileXSpin.Value} {TileYSpin.Value} {gridIndex} {gasId} {AmountSpin.Value}"); } diff --git a/Content.Client/Administration/UI/Tabs/AtmosTab/FillGasWindow.xaml.cs b/Content.Client/Administration/UI/Tabs/AtmosTab/FillGasWindow.xaml.cs index 5e17d3d0313..276ec3d67df 100644 --- a/Content.Client/Administration/UI/Tabs/AtmosTab/FillGasWindow.xaml.cs +++ b/Content.Client/Administration/UI/Tabs/AtmosTab/FillGasWindow.xaml.cs @@ -19,7 +19,7 @@ namespace Content.Client.Administration.UI.Tabs.AtmosTab [UsedImplicitly] public sealed partial class FillGasWindow : DefaultWindow { - private List? _gridData; + private List? _gridData; private IEnumerable? _gasData; protected override void EnteredTree() @@ -29,7 +29,7 @@ protected override void EnteredTree() var playerManager = IoCManager.Resolve(); var gridQuery = entManager.AllEntityQueryEnumerator(); - _gridData ??= new List(); + _gridData ??= new List(); _gridData.Clear(); while (gridQuery.MoveNext(out var uid, out _)) @@ -37,7 +37,7 @@ protected override void EnteredTree() var player = playerManager.LocalPlayer?.ControlledEntity; var playerGrid = entManager.GetComponentOrNull(player)?.GridUid; GridOptions.AddItem($"{uid} {(playerGrid == uid ? " (Current)" : "")}"); - _gridData.Add(uid); + _gridData.Add(entManager.GetNetEntity(uid)); } GridOptions.OnItemSelected += eventArgs => GridOptions.SelectId(eventArgs.Id); diff --git a/Content.Client/Administration/UI/Tabs/AtmosTab/SetTemperatureWindow.xaml.cs b/Content.Client/Administration/UI/Tabs/AtmosTab/SetTemperatureWindow.xaml.cs index c49cb025118..850e43e4188 100644 --- a/Content.Client/Administration/UI/Tabs/AtmosTab/SetTemperatureWindow.xaml.cs +++ b/Content.Client/Administration/UI/Tabs/AtmosTab/SetTemperatureWindow.xaml.cs @@ -17,7 +17,7 @@ namespace Content.Client.Administration.UI.Tabs.AtmosTab [UsedImplicitly] public sealed partial class SetTemperatureWindow : DefaultWindow { - private List? _data; + private List? _data; protected override void EnteredTree() { @@ -25,7 +25,7 @@ protected override void EnteredTree() var playerManager = IoCManager.Resolve(); var gridQuery = entManager.AllEntityQueryEnumerator(); - _data ??= new List(); + _data ??= new List(); _data.Clear(); while (gridQuery.MoveNext(out var uid, out _)) @@ -33,7 +33,7 @@ protected override void EnteredTree() var player = playerManager.LocalPlayer?.ControlledEntity; var playerGrid = entManager.GetComponentOrNull(player)?.GridUid; GridOptions.AddItem($"{uid} {(playerGrid == uid ? " (Current)" : "")}"); - _data.Add(uid); + _data.Add(entManager.GetNetEntity(uid)); } GridOptions.OnItemSelected += eventArgs => GridOptions.SelectId(eventArgs.Id); diff --git a/Content.Client/Administration/UI/Tabs/PlayerTab/PlayerTab.xaml.cs b/Content.Client/Administration/UI/Tabs/PlayerTab/PlayerTab.xaml.cs index 7ece83d1cf0..91a453e416d 100644 --- a/Content.Client/Administration/UI/Tabs/PlayerTab/PlayerTab.xaml.cs +++ b/Content.Client/Administration/UI/Tabs/PlayerTab/PlayerTab.xaml.cs @@ -18,6 +18,7 @@ public sealed partial class PlayerTab : Control private const string ArrowDown = "↓"; private readonly Color _altColor = Color.FromHex("#292B38"); private readonly Color _defaultColor = Color.FromHex("#2F2F3B"); + private IEntityManager _entManager; private readonly AdminSystem _adminSystem; private IReadOnlyList _players = new List(); @@ -29,7 +30,8 @@ public sealed partial class PlayerTab : Control public PlayerTab() { - _adminSystem = EntitySystem.Get(); + _entManager = IoCManager.Resolve(); + _adminSystem = _entManager.System(); RobustXamlLoader.Load(this); RefreshPlayerList(_adminSystem.PlayerList); @@ -119,7 +121,7 @@ private void RefreshPlayerList(IReadOnlyList players) player.Antag ? "YES" : "NO", new StyleBoxFlat(useAltColor ? _altColor : _defaultColor), player.Connected); - entry.PlayerUid = player.EntityUid; + entry.PlayerUid = _entManager.GetEntity(player.NetEntity); entry.OnPressed += args => OnEntryPressed?.Invoke(args); PlayerList.AddChild(entry); diff --git a/Content.Client/Animations/ReusableAnimations.cs b/Content.Client/Animations/ReusableAnimations.cs index 504b81e734e..26115fa20e8 100644 --- a/Content.Client/Animations/ReusableAnimations.cs +++ b/Content.Client/Animations/ReusableAnimations.cs @@ -16,9 +16,14 @@ public static void AnimateEntityPickup(EntityUid entity, EntityCoordinates initi if (entMan.Deleted(entity) || !initialPosition.IsValid(entMan)) return; + var metadata = entMan.GetComponent(entity); + + if (entMan.IsPaused(entity, metadata)) + return; + var animatableClone = entMan.SpawnEntity("clientsideclone", initialPosition); string val = entMan.GetComponent(entity).EntityName; - entMan.GetComponent(animatableClone).EntityName = val; + entMan.System().SetEntityName(animatableClone, val); if (!entMan.TryGetComponent(entity, out SpriteComponent? sprite0)) { diff --git a/Content.Client/Anomaly/Ui/AnomalyGeneratorWindow.xaml.cs b/Content.Client/Anomaly/Ui/AnomalyGeneratorWindow.xaml.cs index 6da7a4e3395..ca8682e72d6 100644 --- a/Content.Client/Anomaly/Ui/AnomalyGeneratorWindow.xaml.cs +++ b/Content.Client/Anomaly/Ui/AnomalyGeneratorWindow.xaml.cs @@ -24,7 +24,7 @@ public AnomalyGeneratorWindow(EntityUid gen) RobustXamlLoader.Load(this); IoCManager.InjectDependencies(this); - EntityView.Sprite = _entityManager.GetComponent(gen); + EntityView.SetEntity(gen); EntityView.SpriteOffset = false; GenerateButton.OnPressed += _ => OnGenerateButtonPressed?.Invoke(); diff --git a/Content.Client/Arcade/BlockGameMenu.cs b/Content.Client/Arcade/BlockGameMenu.cs index 53332908ffb..2e94eb4342a 100644 --- a/Content.Client/Arcade/BlockGameMenu.cs +++ b/Content.Client/Arcade/BlockGameMenu.cs @@ -12,6 +12,7 @@ using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.CustomControls; +using Robust.Shared.Graphics; using Robust.Shared.IoC; using Robust.Shared.Localization; using Robust.Shared.Maths; diff --git a/Content.Client/Atmos/Components/FireVisualsComponent.cs b/Content.Client/Atmos/Components/FireVisualsComponent.cs index 0eebb2040e7..02278e94791 100644 --- a/Content.Client/Atmos/Components/FireVisualsComponent.cs +++ b/Content.Client/Atmos/Components/FireVisualsComponent.cs @@ -5,7 +5,7 @@ namespace Content.Client.Atmos.Components; /// accumulated. /// [RegisterComponent] -public sealed class FireVisualsComponent : Component +public sealed partial class FireVisualsComponent : Component { [DataField("fireStackAlternateState")] public int FireStackAlternateState = 3; diff --git a/Content.Client/Atmos/Components/MapAtmosphereComponent.cs b/Content.Client/Atmos/Components/MapAtmosphereComponent.cs index 2f59eae4390..abad2491347 100644 --- a/Content.Client/Atmos/Components/MapAtmosphereComponent.cs +++ b/Content.Client/Atmos/Components/MapAtmosphereComponent.cs @@ -3,7 +3,7 @@ namespace Content.Client.Atmos.Components; [RegisterComponent] -public sealed class MapAtmosphereComponent : SharedMapAtmosphereComponent +public sealed partial class MapAtmosphereComponent : SharedMapAtmosphereComponent { } diff --git a/Content.Client/Atmos/Components/PipeColorVisualsComponent.cs b/Content.Client/Atmos/Components/PipeColorVisualsComponent.cs index b6eb361553b..355b10cb4a4 100644 --- a/Content.Client/Atmos/Components/PipeColorVisualsComponent.cs +++ b/Content.Client/Atmos/Components/PipeColorVisualsComponent.cs @@ -3,6 +3,6 @@ namespace Content.Client.Atmos.Components; [RegisterComponent] -public sealed class PipeColorVisualsComponent : Component +public sealed partial class PipeColorVisualsComponent : Component { } diff --git a/Content.Client/Atmos/EntitySystems/AtmosDebugOverlaySystem.cs b/Content.Client/Atmos/EntitySystems/AtmosDebugOverlaySystem.cs index db8421d8ccc..c849abf70ef 100644 --- a/Content.Client/Atmos/EntitySystems/AtmosDebugOverlaySystem.cs +++ b/Content.Client/Atmos/EntitySystems/AtmosDebugOverlaySystem.cs @@ -56,7 +56,7 @@ private void OnGridRemoved(GridRemovalEvent ev) private void HandleAtmosDebugOverlayMessage(AtmosDebugOverlayMessage message) { - _tileData[message.GridId] = message; + _tileData[GetEntity(message.GridId)] = message; } private void HandleAtmosDebugOverlayDisableMessage(AtmosDebugOverlayDisableMessage ev) diff --git a/Content.Client/Atmos/EntitySystems/AtmosPipeAppearanceSystem.cs b/Content.Client/Atmos/EntitySystems/AtmosPipeAppearanceSystem.cs index 9a4b93e3d32..adcbfac7f35 100644 --- a/Content.Client/Atmos/EntitySystems/AtmosPipeAppearanceSystem.cs +++ b/Content.Client/Atmos/EntitySystems/AtmosPipeAppearanceSystem.cs @@ -12,7 +12,6 @@ namespace Content.Client.Atmos.EntitySystems; [UsedImplicitly] public sealed class AtmosPipeAppearanceSystem : EntitySystem { - [Dependency] private readonly IResourceCache _resCache = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; public override void Initialize() diff --git a/Content.Client/Atmos/EntitySystems/FireVisualizerSystem.cs b/Content.Client/Atmos/EntitySystems/FireVisualizerSystem.cs index 7799a6deab5..08522d1a429 100644 --- a/Content.Client/Atmos/EntitySystems/FireVisualizerSystem.cs +++ b/Content.Client/Atmos/EntitySystems/FireVisualizerSystem.cs @@ -10,6 +10,8 @@ namespace Content.Client.Atmos.EntitySystems; /// public sealed class FireVisualizerSystem : VisualizerSystem { + [Dependency] private readonly PointLightSystem _lights = default!; + public override void Initialize() { base.Initialize(); @@ -83,11 +85,11 @@ private void UpdateAppearance(EntityUid uid, FireVisualsComponent component, Spr component.LightEntity ??= Spawn(null, new EntityCoordinates(uid, default)); var light = EnsureComp(component.LightEntity.Value); - light.Color = component.LightColor; + _lights.SetColor(component.LightEntity.Value, component.LightColor, light); // light needs a minimum radius to be visible at all, hence the + 1.5f - light.Radius = Math.Clamp(1.5f + component.LightRadiusPerStack * fireStacks, 0f, component.MaxLightRadius); - light.Energy = Math.Clamp(1 + component.LightEnergyPerStack * fireStacks, 0f, component.MaxLightEnergy); + _lights.SetRadius(component.LightEntity.Value, Math.Clamp(1.5f + component.LightRadiusPerStack * fireStacks, 0f, component.MaxLightRadius), light); + _lights.SetEnergy(component.LightEntity.Value, Math.Clamp(1 + component.LightEnergyPerStack * fireStacks, 0f, component.MaxLightEnergy), light); // TODO flickering animation? Or just add a noise mask to the light? But that requires an engine PR. } diff --git a/Content.Client/Atmos/EntitySystems/GasTileOverlaySystem.cs b/Content.Client/Atmos/EntitySystems/GasTileOverlaySystem.cs index ddb0a340855..78185ce6b0e 100644 --- a/Content.Client/Atmos/EntitySystems/GasTileOverlaySystem.cs +++ b/Content.Client/Atmos/EntitySystems/GasTileOverlaySystem.cs @@ -65,8 +65,10 @@ private void OnHandleState(EntityUid gridUid, GasTileOverlayComponent comp, ref private void HandleGasOverlayUpdate(GasOverlayUpdateEvent ev) { - foreach (var (grid, removedIndicies) in ev.RemovedChunks) + foreach (var (nent, removedIndicies) in ev.RemovedChunks) { + var grid = GetEntity(nent); + if (!TryComp(grid, out GasTileOverlayComponent? comp)) continue; @@ -76,8 +78,10 @@ private void HandleGasOverlayUpdate(GasOverlayUpdateEvent ev) } } - foreach (var (grid, gridData) in ev.UpdatedChunks) + foreach (var (nent, gridData) in ev.UpdatedChunks) { + var grid = GetEntity(nent); + if (!TryComp(grid, out GasTileOverlayComponent? comp)) continue; diff --git a/Content.Client/Atmos/Monitor/AtmosAlarmableVisualsComponent.cs b/Content.Client/Atmos/Monitor/AtmosAlarmableVisualsComponent.cs index 57b713e9b70..9b941822fda 100644 --- a/Content.Client/Atmos/Monitor/AtmosAlarmableVisualsComponent.cs +++ b/Content.Client/Atmos/Monitor/AtmosAlarmableVisualsComponent.cs @@ -3,18 +3,18 @@ namespace Content.Client.Atmos.Monitor; [RegisterComponent] -public sealed class AtmosAlarmableVisualsComponent : Component +public sealed partial class AtmosAlarmableVisualsComponent : Component { [DataField("layerMap")] - public string LayerMap { get; } = string.Empty; + public string LayerMap { get; private set; } = string.Empty; [DataField("alarmStates")] - public readonly Dictionary AlarmStates = new(); + public Dictionary AlarmStates = new(); [DataField("hideOnDepowered")] - public readonly List? HideOnDepowered; + public List? HideOnDepowered; // eh... [DataField("setOnDepowered")] - public readonly Dictionary? SetOnDepowered; + public Dictionary? SetOnDepowered; } diff --git a/Content.Client/Atmos/Monitor/UI/AirAlarmBoundUserInterface.cs b/Content.Client/Atmos/Monitor/UI/AirAlarmBoundUserInterface.cs index 3f7f1e73ee5..8f3b507c806 100644 --- a/Content.Client/Atmos/Monitor/UI/AirAlarmBoundUserInterface.cs +++ b/Content.Client/Atmos/Monitor/UI/AirAlarmBoundUserInterface.cs @@ -48,7 +48,7 @@ private void OnDeviceDataChanged(string address, IAtmosDeviceData data) { SendMessage(new AirAlarmUpdateDeviceDataMessage(address, data)); } - + private void OnDeviceDataCopied(IAtmosDeviceData data) { SendMessage(new AirAlarmCopyDeviceDataMessage(data)); diff --git a/Content.Client/Atmos/Overlays/GasTileOverlay.cs b/Content.Client/Atmos/Overlays/GasTileOverlay.cs index d3e6dbc8dec..ef65d43fe85 100644 --- a/Content.Client/Atmos/Overlays/GasTileOverlay.cs +++ b/Content.Client/Atmos/Overlays/GasTileOverlay.cs @@ -8,6 +8,8 @@ using Robust.Client.Graphics; using Robust.Client.ResourceManagement; using Robust.Shared.Enums; +using Robust.Shared.Graphics; +using Robust.Shared.Graphics.RSI; using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Prototypes; @@ -79,7 +81,7 @@ public GasTileOverlay(GasTileOverlaySystem system, IEntityManager entManager, IR if (!rsi.TryGetState(stateId, out var state)) continue; - _frames[i] = state.GetFrames(RSI.State.Direction.South); + _frames[i] = state.GetFrames(RsiDirection.South); _frameDelays[i] = state.GetDelays(); _frameCounter[i] = 0; break; @@ -97,7 +99,7 @@ public GasTileOverlay(GasTileOverlaySystem system, IEntityManager entManager, IR if (!fire.TryGetState((i + 1).ToString(), out var state)) throw new ArgumentOutOfRangeException($"Fire RSI doesn't have state \"{i}\"!"); - _fireFrames[i] = state.GetFrames(RSI.State.Direction.South); + _fireFrames[i] = state.GetFrames(RsiDirection.South); _fireFrameDelays[i] = state.GetDelays(); _fireFrameCounter[i] = 0; } diff --git a/Content.Client/Atmos/UI/GasAnalyzerWindow.xaml.cs b/Content.Client/Atmos/UI/GasAnalyzerWindow.xaml.cs index 33c3e8644ef..ccf9e370e3c 100644 --- a/Content.Client/Atmos/UI/GasAnalyzerWindow.xaml.cs +++ b/Content.Client/Atmos/UI/GasAnalyzerWindow.xaml.cs @@ -9,6 +9,7 @@ using Robust.Client.AutoGenerated; using Robust.Client.UserInterface.XAML; using static Content.Shared.Atmos.Components.GasAnalyzerComponent; +using Direction = Robust.Shared.Maths.Direction; namespace Content.Client.Atmos.UI { @@ -68,7 +69,7 @@ public void Populate(GasAnalyzerUserMessage msg) _ => GridIcon.OverrideDirection }; - GridIcon.SetEntity(msg.DeviceUid); + GridIcon.SetEntity(IoCManager.Resolve().GetEntity(msg.DeviceUid)); LeftPanel.RemoveAllChildren(); MiddlePanel.RemoveAllChildren(); RightPanel.RemoveAllChildren(); diff --git a/Content.Client/Atmos/UI/GasThermomachineBoundUserInterface.cs b/Content.Client/Atmos/UI/GasThermomachineBoundUserInterface.cs index cda7f6836c3..1664c8b9d75 100644 --- a/Content.Client/Atmos/UI/GasThermomachineBoundUserInterface.cs +++ b/Content.Client/Atmos/UI/GasThermomachineBoundUserInterface.cs @@ -1,4 +1,5 @@ -using Content.Shared.Atmos.Piping.Unary.Components; +using Content.Shared.Atmos; +using Content.Shared.Atmos.Piping.Unary.Components; using JetBrains.Annotations; using Robust.Client.GameObjects; @@ -19,6 +20,9 @@ public sealed class GasThermomachineBoundUserInterface : BoundUserInterface [ViewVariables] private float _maxTemp = 0.0f; + [ViewVariables] + private bool _isHeater = true; + public GasThermomachineBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { } @@ -50,7 +54,12 @@ private void OnToggleStatusButtonPressed() private void OnTemperatureChanged(float value) { - var actual = Math.Clamp(value, _minTemp, _maxTemp); + var actual = 0f; + if (_isHeater) + actual = Math.Min(value, _maxTemp); + else + actual = Math.Max(value, _minTemp); + actual = Math.Max(actual, Atmospherics.TCMB); if (!MathHelper.CloseTo(actual, value, 0.09)) { _window?.SetTemperature(actual); @@ -72,14 +81,14 @@ protected override void UpdateState(BoundUserInterfaceState state) _minTemp = cast.MinTemperature; _maxTemp = cast.MaxTemperature; + _isHeater = cast.IsHeater; _window.SetTemperature(cast.Temperature); _window.SetActive(cast.Enabled); - _window.Title = cast.Mode switch + _window.Title = _isHeater switch { - ThermoMachineMode.Freezer => Loc.GetString("comp-gas-thermomachine-ui-title-freezer"), - ThermoMachineMode.Heater => Loc.GetString("comp-gas-thermomachine-ui-title-heater"), - _ => string.Empty + false => Loc.GetString("comp-gas-thermomachine-ui-title-freezer"), + true => Loc.GetString("comp-gas-thermomachine-ui-title-heater") }; } diff --git a/Content.Client/Atmos/Visualizers/Components/PortableScrubberVisualsComponent.cs b/Content.Client/Atmos/Visualizers/Components/PortableScrubberVisualsComponent.cs index d829f6b17b0..bfa04e1e8a8 100644 --- a/Content.Client/Atmos/Visualizers/Components/PortableScrubberVisualsComponent.cs +++ b/Content.Client/Atmos/Visualizers/Components/PortableScrubberVisualsComponent.cs @@ -5,7 +5,7 @@ namespace Content.Client.Atmos.Visualizers; /// the ready / full pair controls the color of the light. /// [RegisterComponent] -public sealed class PortableScrubberVisualsComponent : Component +public sealed partial class PortableScrubberVisualsComponent : Component { [DataField("idleState", required: true)] public string IdleState = default!; diff --git a/Content.Client/Audio/AmbientSoundTreeComponent.cs b/Content.Client/Audio/AmbientSoundTreeComponent.cs index a256b9f0b33..8ae0619a45d 100644 --- a/Content.Client/Audio/AmbientSoundTreeComponent.cs +++ b/Content.Client/Audio/AmbientSoundTreeComponent.cs @@ -8,7 +8,7 @@ namespace Content.Client.Audio; /// Samples nearby and plays audio. /// [RegisterComponent] -public sealed class AmbientSoundTreeComponent : Component, IComponentTreeComponent +public sealed partial class AmbientSoundTreeComponent : Component, IComponentTreeComponent { public DynamicTree> Tree { get; set; } = default!; } diff --git a/Content.Client/Audio/BackgroundAudioSystem.cs b/Content.Client/Audio/BackgroundAudioSystem.cs index 100ee7458e6..0b31db24639 100644 --- a/Content.Client/Audio/BackgroundAudioSystem.cs +++ b/Content.Client/Audio/BackgroundAudioSystem.cs @@ -34,7 +34,7 @@ public override void Initialize() _client.PlayerLeaveServer += OnLeave; - _gameTicker.LobbyStatusUpdated += LobbySongReceived; + _gameTicker.LobbySongUpdated += LobbySongUpdated; } public override void Shutdown() @@ -48,7 +48,7 @@ public override void Shutdown() _client.PlayerLeaveServer -= OnLeave; - _gameTicker.LobbyStatusUpdated -= LobbySongReceived; + _gameTicker.LobbySongUpdated -= LobbySongUpdated; EndLobbyMusic(); } @@ -95,17 +95,9 @@ private void LobbyMusicCVarChanged(bool musicEnabled) } } - private void LobbySongReceived() + private void LobbySongUpdated() { - if (_lobbyStream != null) //Toggling Ready status fires this method. This check ensures we only start the lobby music if it's not playing. - { - return; - } - - if (_stateManager.CurrentState is LobbyState) - { - StartLobbyMusic(); - } + RestartLobbyMusic(); } public void RestartLobbyMusic() diff --git a/Content.Client/Beam/BeamSystem.cs b/Content.Client/Beam/BeamSystem.cs index c221e79769f..4749d4d29b8 100644 --- a/Content.Client/Beam/BeamSystem.cs +++ b/Content.Client/Beam/BeamSystem.cs @@ -17,7 +17,9 @@ public override void Initialize() //TODO: Sometime in the future this needs to be replaced with tiled sprites private void BeamVisualizerMessage(BeamVisualizerEvent args) { - if (TryComp(args.Beam, out var sprites)) + var beam = GetEntity(args.Beam); + + if (TryComp(beam, out var sprites)) { sprites.Rotation = args.UserAngle; diff --git a/Content.Client/Beam/Components/BeamComponent.cs b/Content.Client/Beam/Components/BeamComponent.cs index eb10d32f533..58557b079c0 100644 --- a/Content.Client/Beam/Components/BeamComponent.cs +++ b/Content.Client/Beam/Components/BeamComponent.cs @@ -2,7 +2,7 @@ namespace Content.Client.Beam.Components; [RegisterComponent] -public sealed class BeamComponent : SharedBeamComponent +public sealed partial class BeamComponent : SharedBeamComponent { } diff --git a/Content.Client/Bed/Components/StasisBedVisualsComponent.cs b/Content.Client/Bed/Components/StasisBedVisualsComponent.cs index 8233a32b6f2..e0a8ed57968 100644 --- a/Content.Client/Bed/Components/StasisBedVisualsComponent.cs +++ b/Content.Client/Bed/Components/StasisBedVisualsComponent.cs @@ -1,5 +1,5 @@ namespace Content.Client.Bed; [RegisterComponent] -public sealed class StasisBedVisualsComponent : Component +public sealed partial class StasisBedVisualsComponent : Component {} diff --git a/Content.Client/Botany/Components/PlantHolderVisualsComponent.cs b/Content.Client/Botany/Components/PlantHolderVisualsComponent.cs index fd44c6ae2ae..3cfb4cb0819 100644 --- a/Content.Client/Botany/Components/PlantHolderVisualsComponent.cs +++ b/Content.Client/Botany/Components/PlantHolderVisualsComponent.cs @@ -1,6 +1,6 @@ namespace Content.Client.Botany.Components; [RegisterComponent] -public sealed class PlantHolderVisualsComponent : Component +public sealed partial class PlantHolderVisualsComponent : Component { } diff --git a/Content.Client/Botany/Components/PotencyVisualsComponent.cs b/Content.Client/Botany/Components/PotencyVisualsComponent.cs index 24f3c61fcfa..2fdd3579db5 100644 --- a/Content.Client/Botany/Components/PotencyVisualsComponent.cs +++ b/Content.Client/Botany/Components/PotencyVisualsComponent.cs @@ -1,7 +1,7 @@ namespace Content.Client.Botany.Components; [RegisterComponent] -public sealed class PotencyVisualsComponent : Component +public sealed partial class PotencyVisualsComponent : Component { [DataField("minimumScale")] public float MinimumScale = 1f; diff --git a/Content.Client/Bql/ToolshedVisualizeWindow.xaml.cs b/Content.Client/Bql/ToolshedVisualizeWindow.xaml.cs index 0265e3343ee..55ee029a91c 100644 --- a/Content.Client/Bql/ToolshedVisualizeWindow.xaml.cs +++ b/Content.Client/Bql/ToolshedVisualizeWindow.xaml.cs @@ -23,7 +23,7 @@ public ToolshedVisualizeWindow(IClientConsoleHost console, ILocalizationManager protected override Vector2 ContentsMinimumSize => new(500, 700); - public void Update((string name, EntityUid entity)[] entities) + public void Update((string name, NetEntity entity)[] entities) { StatusLabel.Text = _loc.GetString("ui-bql-results-status", ("count", entities.Length)); ItemList.RemoveAllChildren(); diff --git a/Content.Client/Buckle/BuckleSystem.cs b/Content.Client/Buckle/BuckleSystem.cs index 70960d06a2b..24f12a79158 100644 --- a/Content.Client/Buckle/BuckleSystem.cs +++ b/Content.Client/Buckle/BuckleSystem.cs @@ -25,8 +25,8 @@ private void OnBuckleHandleState(EntityUid uid, BuckleComponent component, ref C return; component.Buckled = state.Buckled; - component.BuckledTo = state.BuckledTo; - component.LastEntityBuckledTo = state.LastEntityBuckledTo; + component.BuckledTo = EnsureEntity(state.BuckledTo, uid); + component.LastEntityBuckledTo = EnsureEntity(state.LastEntityBuckledTo, uid); component.DontCollide = state.DontCollide; ActionBlockerSystem.UpdateCanMove(uid); diff --git a/Content.Client/Camera/CameraRecoilSystem.cs b/Content.Client/Camera/CameraRecoilSystem.cs index a5dc7e6ecd9..65a3fc71c70 100644 --- a/Content.Client/Camera/CameraRecoilSystem.cs +++ b/Content.Client/Camera/CameraRecoilSystem.cs @@ -13,7 +13,7 @@ public override void Initialize() private void OnCameraKick(CameraKickEvent ev) { - KickCamera(ev.Euid, ev.Recoil); + KickCamera(GetEntity(ev.NetEntity), ev.Recoil); } public override void KickCamera(EntityUid uid, Vector2 recoil, CameraRecoilComponent? component = null) diff --git a/Content.Client/CardboardBox/CardboardBoxSystem.cs b/Content.Client/CardboardBox/CardboardBoxSystem.cs index a4a273eacad..3c870f6e6ec 100644 --- a/Content.Client/CardboardBox/CardboardBoxSystem.cs +++ b/Content.Client/CardboardBox/CardboardBoxSystem.cs @@ -19,12 +19,14 @@ public override void Initialize() private void OnBoxEffect(PlayBoxEffectMessage msg) { - if (!TryComp(msg.Source, out var box)) + var source = GetEntity(msg.Source); + + if (!TryComp(source, out var box)) return; var xformQuery = GetEntityQuery(); - if (!xformQuery.TryGetComponent(msg.Source, out var xform)) + if (!xformQuery.TryGetComponent(source, out var xform)) return; var sourcePos = xform.MapPosition; @@ -32,12 +34,13 @@ private void OnBoxEffect(PlayBoxEffectMessage msg) //Any mob that can move should be surprised? //God mind rework needs to come faster so it can just check for mind //TODO: Replace with Mind Query when mind rework is in. - var mobMoverEntities = new HashSet(); + var mobMoverEntities = new List(); + var mover = GetEntity(msg.Mover); //Filter out entities in range to see that they're a mob and add them to the mobMoverEntities hash for faster lookup foreach (var moverComp in _entityLookup.GetComponentsInRange(xform.Coordinates, box.Distance)) { - if (moverComp.Owner == msg.Mover) + if (moverComp.Owner == mover) continue; mobMoverEntities.Add(moverComp.Owner); @@ -57,5 +60,6 @@ private void OnBoxEffect(PlayBoxEffectMessage msg) sprite.Offset = new Vector2(0, 1); entTransform.AttachParent(mob); } + } } diff --git a/Content.Client/CartridgeLoader/CartridgeLoaderBoundUserInterface.cs b/Content.Client/CartridgeLoader/CartridgeLoaderBoundUserInterface.cs index 3ae61b182e4..e4d6a9fb8bd 100644 --- a/Content.Client/CartridgeLoader/CartridgeLoaderBoundUserInterface.cs +++ b/Content.Client/CartridgeLoader/CartridgeLoaderBoundUserInterface.cs @@ -17,8 +17,11 @@ public abstract class CartridgeLoaderBoundUserInterface : BoundUserInterface [ViewVariables] private Control? _activeUiFragment; + private IEntityManager _entManager; + protected CartridgeLoaderBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { + _entManager = IoCManager.Resolve(); } protected override void UpdateState(BoundUserInterfaceState state) @@ -31,13 +34,16 @@ protected override void UpdateState(BoundUserInterfaceState state) return; } - var programs = GetCartridgeComponents(loaderUiState.Programs); + // TODO move this to a component state and ensure the net ids. + var programs = GetCartridgeComponents(_entManager.GetEntityList(loaderUiState.Programs)); UpdateAvailablePrograms(programs); - _activeProgram = loaderUiState.ActiveUI; + var activeUI = _entManager.GetEntity(loaderUiState.ActiveUI); + + _activeProgram = activeUI; - var ui = RetrieveCartridgeUI(loaderUiState.ActiveUI); - var comp = RetrieveCartridgeComponent(loaderUiState.ActiveUI); + var ui = RetrieveCartridgeUI(activeUI); + var comp = RetrieveCartridgeComponent(activeUI); var control = ui?.GetUIFragmentRoot(); //Prevent the same UI fragment from getting disposed and attached multiple times @@ -60,7 +66,7 @@ protected override void UpdateState(BoundUserInterfaceState state) protected void ActivateCartridge(EntityUid cartridgeUid) { - var message = new CartridgeLoaderUiMessage(cartridgeUid, CartridgeUiMessageAction.Activate); + var message = new CartridgeLoaderUiMessage(_entManager.GetNetEntity(cartridgeUid), CartridgeUiMessageAction.Activate); SendMessage(message); } @@ -69,19 +75,19 @@ protected void DeactivateActiveCartridge() if (!_activeProgram.HasValue) return; - var message = new CartridgeLoaderUiMessage(_activeProgram.Value, CartridgeUiMessageAction.Deactivate); + var message = new CartridgeLoaderUiMessage(_entManager.GetNetEntity(_activeProgram.Value), CartridgeUiMessageAction.Deactivate); SendMessage(message); } protected void InstallCartridge(EntityUid cartridgeUid) { - var message = new CartridgeLoaderUiMessage(cartridgeUid, CartridgeUiMessageAction.Install); + var message = new CartridgeLoaderUiMessage(_entManager.GetNetEntity(cartridgeUid), CartridgeUiMessageAction.Install); SendMessage(message); } protected void UninstallCartridge(EntityUid cartridgeUid) { - var message = new CartridgeLoaderUiMessage(cartridgeUid, CartridgeUiMessageAction.Uninstall); + var message = new CartridgeLoaderUiMessage(_entManager.GetNetEntity(cartridgeUid), CartridgeUiMessageAction.Uninstall); SendMessage(message); } @@ -126,7 +132,7 @@ protected override void Dispose(bool disposing) private void SendCartridgeUiReadyEvent(EntityUid cartridgeUid) { - var message = new CartridgeLoaderUiMessage(cartridgeUid, CartridgeUiMessageAction.UIReady); + var message = new CartridgeLoaderUiMessage(_entManager.GetNetEntity(cartridgeUid), CartridgeUiMessageAction.UIReady); SendMessage(message); } diff --git a/Content.Client/CartridgeLoader/Cartridges/CrewManifestUi.cs b/Content.Client/CartridgeLoader/Cartridges/CrewManifestUi.cs index c00e78c8d6f..ed129dc9f6d 100644 --- a/Content.Client/CartridgeLoader/Cartridges/CrewManifestUi.cs +++ b/Content.Client/CartridgeLoader/Cartridges/CrewManifestUi.cs @@ -5,7 +5,7 @@ namespace Content.Client.CartridgeLoader.Cartridges; -public sealed class CrewManifestUi : UIFragment +public sealed partial class CrewManifestUi : UIFragment { private CrewManifestUiFragment? _fragment; diff --git a/Content.Client/CartridgeLoader/Cartridges/NetProbeUi.cs b/Content.Client/CartridgeLoader/Cartridges/NetProbeUi.cs index 5112a61dc25..7ea6f469172 100644 --- a/Content.Client/CartridgeLoader/Cartridges/NetProbeUi.cs +++ b/Content.Client/CartridgeLoader/Cartridges/NetProbeUi.cs @@ -5,7 +5,7 @@ namespace Content.Client.CartridgeLoader.Cartridges; -public sealed class NetProbeUi : UIFragment +public sealed partial class NetProbeUi : UIFragment { private NetProbeUiFragment? _fragment; diff --git a/Content.Client/CartridgeLoader/Cartridges/NewsReadUi.cs b/Content.Client/CartridgeLoader/Cartridges/NewsReadUi.cs index ce240e53a0d..6874e9644d2 100644 --- a/Content.Client/CartridgeLoader/Cartridges/NewsReadUi.cs +++ b/Content.Client/CartridgeLoader/Cartridges/NewsReadUi.cs @@ -6,7 +6,7 @@ namespace Content.Client.CartridgeLoader.Cartridges; -public sealed class NewsReadUi : UIFragment +public sealed partial class NewsReadUi : UIFragment { private NewsReadUiFragment? _fragment; diff --git a/Content.Client/CartridgeLoader/Cartridges/NotekeeperUi.cs b/Content.Client/CartridgeLoader/Cartridges/NotekeeperUi.cs index 8f90cd45f7b..1018d88ccee 100644 --- a/Content.Client/CartridgeLoader/Cartridges/NotekeeperUi.cs +++ b/Content.Client/CartridgeLoader/Cartridges/NotekeeperUi.cs @@ -6,7 +6,7 @@ namespace Content.Client.CartridgeLoader.Cartridges; -public sealed class NotekeeperUi : UIFragment +public sealed partial class NotekeeperUi : UIFragment { private NotekeeperUiFragment? _fragment; diff --git a/Content.Client/Changelog/ChangelogManager.cs b/Content.Client/Changelog/ChangelogManager.cs index 0e27ec7f6a7..249332c337f 100644 --- a/Content.Client/Changelog/ChangelogManager.cs +++ b/Content.Client/Changelog/ChangelogManager.cs @@ -18,7 +18,7 @@ namespace Content.Client.Changelog { - public sealed class ChangelogManager + public sealed partial class ChangelogManager { [Dependency] private readonly IResourceManager _resource = default!; [Dependency] private readonly ISerializationManager _serialization = default!; @@ -86,20 +86,20 @@ public Task> LoadChangelog() } [DataDefinition] - public sealed class ChangelogEntry : ISerializationHooks + public sealed partial class ChangelogEntry : ISerializationHooks { [DataField("id")] public int Id { get; private set; } [DataField("author")] - public string Author { get; } = ""; + public string Author { get; private set; } = ""; [DataField("time")] private string _time = default!; public DateTime Time { get; private set; } [DataField("changes")] - public List Changes { get; } = default!; + public List Changes { get; private set; } = default!; void ISerializationHooks.AfterDeserialization() { @@ -108,7 +108,7 @@ void ISerializationHooks.AfterDeserialization() } [DataDefinition] - public sealed class ChangelogChange : ISerializationHooks + public sealed partial class ChangelogChange : ISerializationHooks { [DataField("type")] public ChangelogLineType Type { get; private set; } diff --git a/Content.Client/CharacterInfo/CharacterInfoSystem.cs b/Content.Client/CharacterInfo/CharacterInfoSystem.cs index 8521bb67975..cd96085d314 100644 --- a/Content.Client/CharacterInfo/CharacterInfoSystem.cs +++ b/Content.Client/CharacterInfo/CharacterInfoSystem.cs @@ -2,6 +2,7 @@ using Content.Shared.Objectives; using Robust.Client.GameObjects; using Robust.Client.Player; +using Robust.Client.UserInterface; namespace Content.Client.CharacterInfo; @@ -29,7 +30,7 @@ public void RequestCharacterInfo() return; } - RaiseNetworkEvent(new RequestCharacterInfoEvent(entity.Value)); + RaiseNetworkEvent(new RequestCharacterInfoEvent(GetNetEntity(entity.Value))); } private void OnPlayerAttached(PlayerAttachSysMessage msg) @@ -42,17 +43,35 @@ private void OnPlayerAttached(PlayerAttachSysMessage msg) private void OnCharacterInfoEvent(CharacterInfoEvent msg, EntitySessionEventArgs args) { - var sprite = CompOrNull(msg.EntityUid); - var data = new CharacterData(msg.JobTitle, msg.Objectives, msg.Briefing, sprite, Name(msg.EntityUid)); + var entity = GetEntity(msg.NetEntity); + var data = new CharacterData(entity, msg.JobTitle, msg.Objectives, msg.Briefing, Name(entity)); OnCharacterUpdate?.Invoke(data); } + public List GetCharacterInfoControls(EntityUid uid) + { + var ev = new GetCharacterInfoControlsEvent(uid); + RaiseLocalEvent(uid, ref ev, true); + return ev.Controls; + } + public readonly record struct CharacterData( + EntityUid Entity, string Job, Dictionary> Objectives, - string Briefing, - SpriteComponent? Sprite, + string? Briefing, string EntityName ); + + /// + /// Event raised to get additional controls to display in the character info menu. + /// + [ByRefEvent] + public readonly record struct GetCharacterInfoControlsEvent(EntityUid Entity) + { + public readonly List Controls = new(); + + public readonly EntityUid Entity = Entity; + } } diff --git a/Content.Client/Chemistry/Components/HyposprayComponent.cs b/Content.Client/Chemistry/Components/HyposprayComponent.cs index 0010270b92c..705b79ad84c 100644 --- a/Content.Client/Chemistry/Components/HyposprayComponent.cs +++ b/Content.Client/Chemistry/Components/HyposprayComponent.cs @@ -4,7 +4,7 @@ namespace Content.Client.Chemistry.Components { [RegisterComponent] - public sealed class HyposprayComponent : SharedHyposprayComponent + public sealed partial class HyposprayComponent : SharedHyposprayComponent { [ViewVariables] public FixedPoint2 CurrentVolume; diff --git a/Content.Client/Chemistry/Components/InjectorComponent.cs b/Content.Client/Chemistry/Components/InjectorComponent.cs index 5a7c07315e4..4d10517a11e 100644 --- a/Content.Client/Chemistry/Components/InjectorComponent.cs +++ b/Content.Client/Chemistry/Components/InjectorComponent.cs @@ -1,15 +1,5 @@ -using Content.Client.Items.Components; -using Content.Client.Message; -using Content.Client.Stylesheets; using Content.Shared.Chemistry.Components; -using Content.Shared.Chemistry.Reagent; using Content.Shared.FixedPoint; -using Robust.Client.UserInterface; -using Robust.Client.UserInterface.Controls; -using Robust.Shared.GameObjects; -using Robust.Shared.Localization; -using Robust.Shared.Timing; -using Robust.Shared.ViewVariables; namespace Content.Client.Chemistry.Components { @@ -17,7 +7,7 @@ namespace Content.Client.Chemistry.Components /// Client behavior for injectors & syringes. Used for item status on injectors /// [RegisterComponent] - public sealed class InjectorComponent : SharedInjectorComponent + public sealed partial class InjectorComponent : SharedInjectorComponent { [ViewVariables] public FixedPoint2 CurrentVolume; diff --git a/Content.Client/Chemistry/UI/ChemMasterWindow.xaml.cs b/Content.Client/Chemistry/UI/ChemMasterWindow.xaml.cs index bf68a55d00e..5eace08a7fd 100644 --- a/Content.Client/Chemistry/UI/ChemMasterWindow.xaml.cs +++ b/Content.Client/Chemistry/UI/ChemMasterWindow.xaml.cs @@ -11,6 +11,7 @@ using Robust.Shared.Utility; using System.Linq; using System.Numerics; +using Content.Shared.FixedPoint; using static Robust.Client.UserInterface.Controls.BoxContainer; namespace Content.Client.Chemistry.UI @@ -87,7 +88,7 @@ public ChemMasterWindow() Tabs.SetTabTitle(1, Loc.GetString("chem-master-window-output-tab")); } - private ReagentButton MakeReagentButton(string text, ChemMasterReagentAmount amount, string id, bool isBuffer, string styleClass) + private ReagentButton MakeReagentButton(string text, ChemMasterReagentAmount amount, ReagentId id, bool isBuffer, string styleClass) { var button = new ReagentButton(text, amount, id, isBuffer, styleClass); button.OnPressed += args @@ -112,11 +113,11 @@ public void UpdateState(BoundUserInterfaceState state) InputEjectButton.Disabled = castState.InputContainerInfo is null; OutputEjectButton.Disabled = output is null; - CreateBottleButton.Disabled = output is null || !output.HoldsReagents; - CreatePillButton.Disabled = output is null || output.HoldsReagents; + CreateBottleButton.Disabled = output?.Reagents == null; + CreatePillButton.Disabled = output?.Entities == null; var remainingCapacity = output is null ? 0 : (output.MaxVolume - output.CurrentVolume).Int(); - var holdsReagents = output?.HoldsReagents ?? false; + var holdsReagents = output?.Reagents != null; var pillNumberMax = holdsReagents ? 0 : remainingCapacity; var bottleAmountMax = holdsReagents ? remainingCapacity : 0; @@ -139,13 +140,10 @@ private string GenerateLabel(ChemMasterBoundUserInterfaceState state) { if (state.BufferCurrentVolume == 0) return ""; - else - { - var reagent = state.BufferReagents.OrderBy(r => r.Quantity).First(); - _prototypeManager.TryIndex(reagent.ReagentId, out ReagentPrototype? proto); - return proto?.LocalizedName ?? ""; - } + var reagent = state.BufferReagents.OrderBy(r => r.Quantity).First().Reagent; + _prototypeManager.TryIndex(reagent.Prototype, out ReagentPrototype? proto); + return proto?.LocalizedName ?? ""; } /// @@ -184,10 +182,10 @@ private void UpdatePanelInfo(ChemMasterBoundUserInterfaceState state) }; bufferHBox.AddChild(bufferVol); - foreach (var reagent in state.BufferReagents) + foreach (var (reagent, quantity) in state.BufferReagents) { // Try to get the prototype for the given reagent. This gives us its name. - _prototypeManager.TryIndex(reagent.ReagentId, out ReagentPrototype? proto); + _prototypeManager.TryIndex(reagent.Prototype, out ReagentPrototype? proto); var name = proto?.LocalizedName ?? Loc.GetString("chem-master-window-unknown-reagent-text"); if (proto != null) @@ -200,20 +198,20 @@ private void UpdatePanelInfo(ChemMasterBoundUserInterfaceState state) new Label {Text = $"{name}: "}, new Label { - Text = $"{reagent.Quantity}u", + Text = $"{quantity}u", StyleClasses = {StyleNano.StyleClassLabelSecondaryColor} }, // Padding new Control {HorizontalExpand = true}, - MakeReagentButton("1", ChemMasterReagentAmount.U1, reagent.ReagentId, true, StyleBase.ButtonOpenRight), - MakeReagentButton("5", ChemMasterReagentAmount.U5, reagent.ReagentId, true, StyleBase.ButtonOpenBoth), - MakeReagentButton("10", ChemMasterReagentAmount.U10, reagent.ReagentId, true, StyleBase.ButtonOpenBoth), - MakeReagentButton("25", ChemMasterReagentAmount.U25, reagent.ReagentId, true, StyleBase.ButtonOpenBoth), - MakeReagentButton("50", ChemMasterReagentAmount.U50, reagent.ReagentId, true, StyleBase.ButtonOpenBoth), - MakeReagentButton("100", ChemMasterReagentAmount.U100, reagent.ReagentId, true, StyleBase.ButtonOpenBoth), - MakeReagentButton(Loc.GetString("chem-master-window-buffer-all-amount"), ChemMasterReagentAmount.All, reagent.ReagentId, true, StyleBase.ButtonOpenLeft), + MakeReagentButton("1", ChemMasterReagentAmount.U1, reagent, true, StyleBase.ButtonOpenRight), + MakeReagentButton("5", ChemMasterReagentAmount.U5, reagent, true, StyleBase.ButtonOpenBoth), + MakeReagentButton("10", ChemMasterReagentAmount.U10, reagent, true, StyleBase.ButtonOpenBoth), + MakeReagentButton("25", ChemMasterReagentAmount.U25, reagent, true, StyleBase.ButtonOpenBoth), + MakeReagentButton("50", ChemMasterReagentAmount.U50, reagent, true, StyleBase.ButtonOpenBoth), + MakeReagentButton("100", ChemMasterReagentAmount.U100, reagent, true, StyleBase.ButtonOpenBoth), + MakeReagentButton(Loc.GetString("chem-master-window-buffer-all-amount"), ChemMasterReagentAmount.All, reagent, true, StyleBase.ButtonOpenLeft), } }); } @@ -248,20 +246,29 @@ private void BuildContainerUI(Control control, ContainerInfo? info, bool addReag } }); - var contents = info.Contents - .Select(lineItem => - { - if (!info.HoldsReagents) - return (lineItem.Id, lineItem.Id, lineItem.Quantity); + IEnumerable<(string Name, ReagentId Id, FixedPoint2 Quantity)> contents; - // Try to get the prototype for the given reagent. This gives us its name. - _prototypeManager.TryIndex(lineItem.Id, out ReagentPrototype? proto); - var name = proto?.LocalizedName - ?? Loc.GetString("chem-master-window-unknown-reagent-text"); + if (info.Entities != null) + { + contents = info.Entities.Select(x => (x.Id, default(ReagentId), x.Quantity)); + } + else if (info.Reagents != null) + { + contents = info.Reagents.Select(x => + { + _prototypeManager.TryIndex(x.Reagent.Prototype, out ReagentPrototype? proto); + var name = proto?.LocalizedName + ?? Loc.GetString("chem-master-window-unknown-reagent-text"); + + return (name, Id: x.Reagent, x.Quantity); + }) + .OrderBy(r => r.Item1); + } + else + { + return; + } - return (name, lineItem.Id, lineItem.Quantity); - }) - .OrderBy(r => r.Item1); foreach (var (name, id, quantity) in contents) { @@ -326,8 +333,8 @@ public sealed class ReagentButton : Button { public ChemMasterReagentAmount Amount { get; set; } public bool IsBuffer = true; - public string Id { get; set; } - public ReagentButton(string text, ChemMasterReagentAmount amount, string id, bool isBuffer, string styleClass) + public ReagentId Id { get; set; } + public ReagentButton(string text, ChemMasterReagentAmount amount, ReagentId id, bool isBuffer, string styleClass) { AddStyleClass(styleClass); Text = text; diff --git a/Content.Client/Chemistry/UI/ReagentDispenserWindow.xaml.cs b/Content.Client/Chemistry/UI/ReagentDispenserWindow.xaml.cs index 64b5f5ddd2b..bf08d4978e9 100644 --- a/Content.Client/Chemistry/UI/ReagentDispenserWindow.xaml.cs +++ b/Content.Client/Chemistry/UI/ReagentDispenserWindow.xaml.cs @@ -48,17 +48,17 @@ public ReagentDispenserWindow() /// Update the button grid of reagents which can be dispensed. /// /// Reagents which can be dispensed by this dispenser - public void UpdateReagentsList(List inventory) + public void UpdateReagentsList(List inventory) { - if (ChemicalList == null) return; - if (inventory == null) return; + if (ChemicalList == null) + return; ChemicalList.Children.Clear(); foreach (var entry in inventory - .OrderBy(r => {_prototypeManager.TryIndex(r, out ReagentPrototype? p); return p?.LocalizedName;})) + .OrderBy(r => {_prototypeManager.TryIndex(r.Prototype, out ReagentPrototype? p); return p?.LocalizedName;})) { - var localizedName = _prototypeManager.TryIndex(entry, out ReagentPrototype? p) + var localizedName = _prototypeManager.TryIndex(entry.Prototype, out ReagentPrototype? p) ? p.LocalizedName : Loc.GetString("reagent-dispenser-window-reagent-name-not-found-text"); @@ -123,7 +123,7 @@ public void UpdateState(BoundUserInterfaceState state) /// State data for the dispenser. /// Prototype ID of the reagent whose dispense button is currently being mouse hovered, /// or null if no button is being hovered. - public void UpdateContainerInfo(ReagentDispenserBoundUserInterfaceState state, string? highlightedReagentId = null) + public void UpdateContainerInfo(ReagentDispenserBoundUserInterfaceState state, ReagentId? highlightedReagentId = null) { ContainerInfo.Children.Clear(); @@ -147,22 +147,22 @@ public void UpdateContainerInfo(ReagentDispenserBoundUserInterfaceState state, s } }); - foreach (var reagent in state.OutputContainer.Contents) + foreach (var (reagent, quantity) in state.OutputContainer.Reagents!) { // Try get to the prototype for the given reagent. This gives us its name. - var localizedName = _prototypeManager.TryIndex(reagent.Id, out ReagentPrototype? p) + var localizedName = _prototypeManager.TryIndex(reagent.Prototype, out ReagentPrototype? p) ? p.LocalizedName : Loc.GetString("reagent-dispenser-window-reagent-name-not-found-text"); var nameLabel = new Label {Text = $"{localizedName}: "}; var quantityLabel = new Label { - Text = Loc.GetString("reagent-dispenser-window-quantity-label-text", ("quantity", reagent.Quantity)), + Text = Loc.GetString("reagent-dispenser-window-quantity-label-text", ("quantity", quantity)), StyleClasses = {StyleNano.StyleClassLabelSecondaryColor}, }; // Check if the reagent is being moused over. If so, color it green. - if (reagent.Id == highlightedReagentId) { + if (reagent == highlightedReagentId) { nameLabel.SetOnlyStyleClass(StyleNano.StyleClassPowerStateGood); quantityLabel.SetOnlyStyleClass(StyleNano.StyleClassPowerStateGood); } @@ -181,9 +181,9 @@ public void UpdateContainerInfo(ReagentDispenserBoundUserInterfaceState state, s } public sealed class DispenseReagentButton : Button { - public string ReagentId { get; } + public ReagentId ReagentId { get; } - public DispenseReagentButton(string reagentId, string text) + public DispenseReagentButton(ReagentId reagentId, string text) { ReagentId = reagentId; Text = text; diff --git a/Content.Client/Chemistry/Visualizers/FoamVisualsComponent.cs b/Content.Client/Chemistry/Visualizers/FoamVisualsComponent.cs index ac71bbb6096..b09c74aa0fe 100644 --- a/Content.Client/Chemistry/Visualizers/FoamVisualsComponent.cs +++ b/Content.Client/Chemistry/Visualizers/FoamVisualsComponent.cs @@ -8,7 +8,7 @@ namespace Content.Client.Chemistry.Visualizers; /// [RegisterComponent] [Access(typeof(FoamVisualizerSystem))] -public sealed class FoamVisualsComponent : Component +public sealed partial class FoamVisualsComponent : Component { /// /// The id of the animation used when the foam dissolves. diff --git a/Content.Client/Chemistry/Visualizers/SmokeVisualsComponent.cs b/Content.Client/Chemistry/Visualizers/SmokeVisualsComponent.cs index f2718f41c90..ecec078837a 100644 --- a/Content.Client/Chemistry/Visualizers/SmokeVisualsComponent.cs +++ b/Content.Client/Chemistry/Visualizers/SmokeVisualsComponent.cs @@ -7,4 +7,4 @@ namespace Content.Client.Chemistry.Visualizers; /// [RegisterComponent] [Access(typeof(SmokeVisualizerSystem))] -public sealed class SmokeVisualsComponent : Component {} +public sealed partial class SmokeVisualsComponent : Component {} diff --git a/Content.Client/Chemistry/Visualizers/SolutionContainerVisualsComponent.cs b/Content.Client/Chemistry/Visualizers/SolutionContainerVisualsComponent.cs index 1608e2d0135..5fd44fe2853 100644 --- a/Content.Client/Chemistry/Visualizers/SolutionContainerVisualsComponent.cs +++ b/Content.Client/Chemistry/Visualizers/SolutionContainerVisualsComponent.cs @@ -11,7 +11,7 @@ namespace Content.Client.Chemistry.Visualizers { [RegisterComponent] - public sealed class SolutionContainerVisualsComponent : Component + public sealed partial class SolutionContainerVisualsComponent : Component { [DataField("maxFillLevels")] public int MaxFillLevels = 0; diff --git a/Content.Client/Chemistry/Visualizers/VaporVisualsComponent.cs b/Content.Client/Chemistry/Visualizers/VaporVisualsComponent.cs index 82e004ee821..34891a46ea4 100644 --- a/Content.Client/Chemistry/Visualizers/VaporVisualsComponent.cs +++ b/Content.Client/Chemistry/Visualizers/VaporVisualsComponent.cs @@ -7,7 +7,7 @@ namespace Content.Client.Chemistry.Visualizers; /// [RegisterComponent] [Access(typeof(VaporVisualizerSystem))] -public sealed class VaporVisualsComponent : Component +public sealed partial class VaporVisualsComponent : Component { /// /// The id of the animation played when the vapor spawns in. diff --git a/Content.Client/Clickable/ClickMapManager.cs b/Content.Client/Clickable/ClickMapManager.cs index 6f34f4453c5..6a77c7e0543 100644 --- a/Content.Client/Clickable/ClickMapManager.cs +++ b/Content.Client/Clickable/ClickMapManager.cs @@ -2,6 +2,8 @@ using Robust.Client.Graphics; using Robust.Client.ResourceManagement; using Robust.Client.Utility; +using Robust.Shared.Graphics; +using Robust.Shared.Graphics.RSI; using SixLabors.ImageSharp; using SixLabors.ImageSharp.PixelFormats; @@ -71,7 +73,7 @@ public bool IsOccluding(Texture texture, Vector2i pos) return SampleClickMap(clickMap, pos, clickMap.Size, Vector2i.Zero); } - public bool IsOccluding(RSI rsi, RSI.StateId state, RSI.State.Direction dir, int frame, Vector2i pos) + public bool IsOccluding(RSI rsi, RSI.StateId state, RsiDirection dir, int frame, Vector2i pos) { if (!_rsiMaps.TryGetValue(rsi, out var rsiData)) { @@ -210,6 +212,6 @@ public interface IClickMapManager { public bool IsOccluding(Texture texture, Vector2i pos); - public bool IsOccluding(RSI rsi, RSI.StateId state, RSI.State.Direction dir, int frame, Vector2i pos); + public bool IsOccluding(RSI rsi, RSI.StateId state, RsiDirection dir, int frame, Vector2i pos); } } diff --git a/Content.Client/Clickable/ClickableComponent.cs b/Content.Client/Clickable/ClickableComponent.cs index a1cbc9a5181..cfbd1a99d69 100644 --- a/Content.Client/Clickable/ClickableComponent.cs +++ b/Content.Client/Clickable/ClickableComponent.cs @@ -2,12 +2,14 @@ using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.Utility; +using Robust.Shared.Graphics; using static Robust.Client.GameObjects.SpriteComponent; +using Direction = Robust.Shared.Maths.Direction; namespace Content.Client.Clickable { [RegisterComponent] - public sealed class ClickableComponent : Component + public sealed partial class ClickableComponent : Component { [Dependency] private readonly IClickMapManager _clickMapManager = default!; @@ -73,7 +75,7 @@ public bool CheckClick(SpriteComponent sprite, TransformComponent transform, Ent if (layer.ActualRsi is not { } rsi || !rsi.TryGetState(layer.State, out var rsiState)) continue; - var dir = Layer.GetDirection(rsiState.Directions, relativeRotation); + var dir = Layer.GetDirection(rsiState.RsiDirections, relativeRotation); // convert to layer-local coordinates layer.GetLayerDrawMatrix(dir, out var matrix); @@ -86,7 +88,7 @@ public bool CheckClick(SpriteComponent sprite, TransformComponent transform, Ent // Next, to get the right click map we need the "direction" of this layer that is actually being used to draw the sprite on the screen. // This **can** differ from the dir defined before, but can also just be the same. if (sprite.EnableDirectionOverride) - dir = sprite.DirectionOverride.Convert(rsiState.Directions); + dir = sprite.DirectionOverride.Convert(rsiState.RsiDirections); dir = dir.OffsetRsiDir(layer.DirOffset); if (_clickMapManager.IsOccluding(layer.ActualRsi!, layer.State, dir, layer.AnimationFrame, layerImagePos)) @@ -131,7 +133,7 @@ public bool CheckDirBound(SpriteComponent sprite, Angle relativeRotation, Vector } [DataDefinition] - public sealed class DirBoundData + public sealed partial class DirBoundData { [DataField("all")] public Box2 All; [DataField("north")] public Box2 North; diff --git a/Content.Client/Clothing/ClientClothingSystem.cs b/Content.Client/Clothing/ClientClothingSystem.cs index 5c638f861c4..b16e14d6535 100644 --- a/Content.Client/Clothing/ClientClothingSystem.cs +++ b/Content.Client/Clothing/ClientClothingSystem.cs @@ -47,7 +47,6 @@ public sealed class ClientClothingSystem : ClothingSystem [Dependency] private readonly IResourceCache _cache = default!; [Dependency] private readonly InventorySystem _inventorySystem = default!; - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; public override void Initialize() { @@ -170,10 +169,12 @@ private bool TryGetDefaultVisuals(EntityUid uid, ClothingComponent clothing, str private void OnVisualsChanged(EntityUid uid, InventoryComponent component, VisualsChangedEvent args) { - if (!TryComp(args.Item, out ClothingComponent? clothing) || clothing.InSlot == null) + var item = GetEntity(args.Item); + + if (!TryComp(item, out ClothingComponent? clothing) || clothing.InSlot == null) return; - RenderEquipment(uid, args.Item, clothing.InSlot, component, null, clothing); + RenderEquipment(uid, item, clothing.InSlot, component, null, clothing); } private void OnDidUnequip(EntityUid uid, SpriteComponent component, DidUnequipEvent args) diff --git a/Content.Client/CombatMode/CombatModeIndicatorsOverlay.cs b/Content.Client/CombatMode/CombatModeIndicatorsOverlay.cs index e3a61fe3be2..9732a677535 100644 --- a/Content.Client/CombatMode/CombatModeIndicatorsOverlay.cs +++ b/Content.Client/CombatMode/CombatModeIndicatorsOverlay.cs @@ -6,6 +6,7 @@ using Robust.Client.Input; using Robust.Client.UserInterface; using Robust.Shared.Enums; +using Robust.Shared.Graphics; using Robust.Shared.Utility; namespace Content.Client.CombatMode; diff --git a/Content.Client/CombatMode/CombatModeSystem.cs b/Content.Client/CombatMode/CombatModeSystem.cs index d89afba2148..9fccfd173e8 100644 --- a/Content.Client/CombatMode/CombatModeSystem.cs +++ b/Content.Client/CombatMode/CombatModeSystem.cs @@ -1,11 +1,10 @@ using Content.Client.Hands.Systems; +using Content.Shared.CCVar; using Content.Shared.CombatMode; using Content.Shared.Targeting; -using Content.Shared.CCVar; -using Robust.Client.Player; -using Robust.Client.Input; using Robust.Client.Graphics; -using Robust.Shared.GameStates; +using Robust.Client.Input; +using Robust.Client.Player; using Robust.Shared.Configuration; namespace Content.Client.CombatMode; @@ -17,30 +16,29 @@ public sealed class CombatModeSystem : SharedCombatModeSystem [Dependency] private readonly IConfigurationManager _cfg = default!; [Dependency] private readonly IInputManager _inputManager = default!; [Dependency] private readonly IEyeManager _eye = default!; - public event Action? LocalPlayerCombatModeUpdated; + + /// + /// Raised whenever combat mode changes. + /// + public event Action? LocalPlayerCombatModeUpdated; public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnHandleState); + SubscribeLocalEvent(OnHandleState); _cfg.OnValueChanged(CCVars.CombatModeIndicatorsPointShow, OnShowCombatIndicatorsChanged, true); } - private void OnHandleState(EntityUid uid, CombatModeComponent component, ref ComponentHandleState args) + private void OnHandleState(EntityUid uid, CombatModeComponent component, ref AfterAutoHandleStateEvent args) { - if (args.Current is not CombatModeComponentState state) - return; - - component.IsInCombatMode = state.IsInCombatMode; - component.ActiveZone = state.TargetingZone; UpdateHud(uid); } public override void Shutdown() { - _cfg.OnValueChanged(CCVars.CombatModeIndicatorsPointShow, OnShowCombatIndicatorsChanged); + _cfg.UnsubValueChanged(CCVars.CombatModeIndicatorsPointShow, OnShowCombatIndicatorsChanged); _overlayManager.RemoveOverlay(); base.Shutdown(); @@ -61,9 +59,9 @@ public bool IsInCombatMode() return IsInCombatMode(entity.Value); } - public override void SetInCombatMode(EntityUid entity, bool inCombatMode, CombatModeComponent? component = null) + public override void SetInCombatMode(EntityUid entity, bool value, CombatModeComponent? component = null) { - base.SetInCombatMode(entity, inCombatMode, component); + base.SetInCombatMode(entity, value, component); UpdateHud(entity); } @@ -75,12 +73,13 @@ public override void SetActiveZone(EntityUid entity, TargetingZone zone, CombatM private void UpdateHud(EntityUid entity) { - if (entity != _playerManager.LocalPlayer?.ControlledEntity) + if (entity != _playerManager.LocalPlayer?.ControlledEntity || !Timing.IsFirstTimePredicted) { return; } - LocalPlayerCombatModeUpdated?.Invoke(); + var inCombatMode = IsInCombatMode(); + LocalPlayerCombatModeUpdated?.Invoke(inCombatMode); } private void OnShowCombatIndicatorsChanged(bool isShow) diff --git a/Content.Client/Commands/ZoomCommand.cs b/Content.Client/Commands/ZoomCommand.cs index 83a04a241bb..2b8cdcbca97 100644 --- a/Content.Client/Commands/ZoomCommand.cs +++ b/Content.Client/Commands/ZoomCommand.cs @@ -64,7 +64,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) if (_entManager.TryGetComponent(player, out var content)) { - _entManager.System().RequestZoom(player.Value, zoom, content); + _entManager.System().RequestZoom(player.Value, zoom, true, content); return; } diff --git a/Content.Client/Communications/CommsHackerSystem.cs b/Content.Client/Communications/CommsHackerSystem.cs new file mode 100644 index 00000000000..3459dd1cd47 --- /dev/null +++ b/Content.Client/Communications/CommsHackerSystem.cs @@ -0,0 +1,10 @@ +using Content.Shared.Communications; + +namespace Content.Client.Communications; + +/// +/// Does nothing special, only exists to provide a client implementation. +/// +public sealed class CommsHackerSystem : SharedCommsHackerSystem +{ +} diff --git a/Content.Client/Construction/ConstructionGhostComponent.cs b/Content.Client/Construction/ConstructionGhostComponent.cs index 54bf4bfb668..8f4fe3867e8 100644 --- a/Content.Client/Construction/ConstructionGhostComponent.cs +++ b/Content.Client/Construction/ConstructionGhostComponent.cs @@ -5,9 +5,8 @@ namespace Content.Client.Construction { [RegisterComponent] - public sealed class ConstructionGhostComponent : Component + public sealed partial class ConstructionGhostComponent : Component { [ViewVariables] public ConstructionPrototype? Prototype { get; set; } - [ViewVariables] public int GhostId { get; set; } } } diff --git a/Content.Client/Construction/ConstructionPlacementHijack.cs b/Content.Client/Construction/ConstructionPlacementHijack.cs index e2e6ab66924..dc5d7bf342f 100644 --- a/Content.Client/Construction/ConstructionPlacementHijack.cs +++ b/Content.Client/Construction/ConstructionPlacementHijack.cs @@ -1,12 +1,7 @@ -using System.Collections.Generic; -using System.Linq; -using Content.Shared.Construction; +using System.Linq; using Content.Shared.Construction.Prototypes; -using Robust.Client.Graphics; using Robust.Client.Placement; using Robust.Client.Utility; -using Robust.Shared.GameObjects; -using Robust.Shared.IoC; using Robust.Shared.Map; namespace Content.Client.Construction @@ -39,9 +34,9 @@ public override bool HijackPlacementRequest(EntityCoordinates coordinates) /// public override bool HijackDeletion(EntityUid entity) { - if (IoCManager.Resolve().TryGetComponent(entity, out ConstructionGhostComponent? ghost)) + if (IoCManager.Resolve().HasComponent(entity)) { - _constructionSystem.ClearGhost(ghost.GhostId); + _constructionSystem.ClearGhost(entity.GetHashCode()); } return true; } diff --git a/Content.Client/Construction/ConstructionSystem.cs b/Content.Client/Construction/ConstructionSystem.cs index 18790ed00ee..98d2dfd414d 100644 --- a/Content.Client/Construction/ConstructionSystem.cs +++ b/Content.Client/Construction/ConstructionSystem.cs @@ -27,11 +27,9 @@ public sealed class ConstructionSystem : SharedConstructionSystem [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; - private readonly Dictionary _ghosts = new(); + private readonly Dictionary _ghosts = new(); private readonly Dictionary _guideCache = new(); - private int _nextId; - public bool CraftingEnabled { get; private set; } /// @@ -39,6 +37,7 @@ public override void Initialize() { base.Initialize(); + UpdatesOutsidePrediction = true; SubscribeLocalEvent(HandlePlayerAttached); SubscribeNetworkEvent(HandleAckStructure); SubscribeNetworkEvent(OnConstructionGuideReceived); @@ -107,6 +106,7 @@ private void HandleConstructionGhostExamined(EntityUid uid, ConstructionGhostCom private void HandleAckStructure(AckStructureConstructionMessage msg) { + // We get sent a NetEntity but it actually corresponds to our local Entity. ClearGhost(msg.GhostId); } @@ -150,13 +150,13 @@ private static bool IsCraftingAvailable(EntityUid? entity) private bool HandleUse(in PointerInputCmdHandler.PointerInputCmdArgs args) { - if (!args.EntityUid.IsValid() || !args.EntityUid.IsClientSide()) + if (!args.EntityUid.IsValid() || !IsClientSide(args.EntityUid)) return false; - if (!EntityManager.TryGetComponent(args.EntityUid, out var ghostComp)) + if (!HasComp(args.EntityUid)) return false; - TryStartConstruction(ghostComp.GhostId); + TryStartConstruction(args.EntityUid); return true; } @@ -196,9 +196,8 @@ public bool TrySpawnGhost( ghost = EntityManager.SpawnEntity("constructionghost", loc); var comp = EntityManager.GetComponent(ghost.Value); comp.Prototype = prototype; - comp.GhostId = _nextId++; EntityManager.GetComponent(ghost.Value).LocalRotation = dir.ToAngle(); - _ghosts.Add(comp.GhostId, comp); + _ghosts.Add(ghost.Value.Id, ghost.Value); var sprite = EntityManager.GetComponent(ghost.Value); sprite.Color = new Color(48, 255, 48, 128); @@ -247,23 +246,25 @@ private bool GhostPresent(EntityCoordinates loc) { foreach (var ghost in _ghosts) { - if (EntityManager.GetComponent(ghost.Value.Owner).Coordinates.Equals(loc)) return true; + if (EntityManager.GetComponent(ghost.Value).Coordinates.Equals(loc)) + return true; } return false; } - public void TryStartConstruction(int ghostId) + public void TryStartConstruction(EntityUid ghostId, ConstructionGhostComponent? ghostComp = null) { - var ghost = _ghosts[ghostId]; + if (!Resolve(ghostId, ref ghostComp)) + return; - if (ghost.Prototype == null) + if (ghostComp.Prototype == null) { throw new ArgumentException($"Can't start construction for a ghost with no prototype. Ghost id: {ghostId}"); } - var transform = EntityManager.GetComponent(ghost.Owner); - var msg = new TryStartStructureConstructionMessage(transform.Coordinates, ghost.Prototype.ID, transform.LocalRotation, ghostId); + var transform = EntityManager.GetComponent(ghostId); + var msg = new TryStartStructureConstructionMessage(GetNetCoordinates(transform.Coordinates), ghostComp.Prototype.ID, transform.LocalRotation, ghostId.Id); RaiseNetworkEvent(msg); } @@ -280,11 +281,11 @@ public void TryStartItemConstruction(string prototypeName) /// public void ClearGhost(int ghostId) { - if (_ghosts.TryGetValue(ghostId, out var ghost)) - { - EntityManager.QueueDeleteEntity(ghost.Owner); - _ghosts.Remove(ghostId); - } + if (!_ghosts.TryGetValue(ghostId, out var ghost)) + return; + + EntityManager.QueueDeleteEntity(ghost); + _ghosts.Remove(ghostId); } /// @@ -292,9 +293,9 @@ public void ClearGhost(int ghostId) /// public void ClearAllGhosts() { - foreach (var (_, ghost) in _ghosts) + foreach (var ghost in _ghosts.Values) { - EntityManager.QueueDeleteEntity(ghost.Owner); + EntityManager.QueueDeleteEntity(ghost); } _ghosts.Clear(); diff --git a/Content.Client/Construction/UI/ConstructionMenu.xaml.cs b/Content.Client/Construction/UI/ConstructionMenu.xaml.cs index 2187a5266e6..8fce1dbbda0 100644 --- a/Content.Client/Construction/UI/ConstructionMenu.xaml.cs +++ b/Content.Client/Construction/UI/ConstructionMenu.xaml.cs @@ -5,6 +5,7 @@ using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.CustomControls; using Robust.Client.UserInterface.XAML; +using Robust.Shared.Graphics; using Robust.Shared.IoC; using Robust.Shared.Localization; diff --git a/Content.Client/Construction/UI/ConstructionMenuPresenter.cs b/Content.Client/Construction/UI/ConstructionMenuPresenter.cs index 657892e2162..cdc9044a40f 100644 --- a/Content.Client/Construction/UI/ConstructionMenuPresenter.cs +++ b/Content.Client/Construction/UI/ConstructionMenuPresenter.cs @@ -8,6 +8,7 @@ using Robust.Client.UserInterface.Controls; using Robust.Client.Utility; using Robust.Shared.Enums; +using Robust.Shared.Graphics; using Robust.Shared.Prototypes; using static Robust.Client.UserInterface.Controls.BaseButton; diff --git a/Content.Client/ContextMenu/UI/ContextMenuUIController.cs b/Content.Client/ContextMenu/UI/ContextMenuUIController.cs index 61e505b007a..5b156644a73 100644 --- a/Content.Client/ContextMenu/UI/ContextMenuUIController.cs +++ b/Content.Client/ContextMenu/UI/ContextMenuUIController.cs @@ -210,9 +210,10 @@ public void OnRemoveElement(ContextMenuPopup menu, Control control) menu.InvalidateMeasure(); } - private void OnCombatModeUpdated() + private void OnCombatModeUpdated(bool inCombatMode) { - Close(); + if (inCombatMode) + Close(); } public void OnSystemLoaded(CombatModeSystem system) diff --git a/Content.Client/ContextMenu/UI/EntityMenuElement.cs b/Content.Client/ContextMenu/UI/EntityMenuElement.cs index 74934724ff4..cdd171a6e7d 100644 --- a/Content.Client/ContextMenu/UI/EntityMenuElement.cs +++ b/Content.Client/ContextMenu/UI/EntityMenuElement.cs @@ -49,7 +49,8 @@ protected override void Dispose(bool disposing) private string? SearchPlayerName(EntityUid entity) { - return _adminSystem.PlayerList.FirstOrDefault(player => player.EntityUid == entity)?.Username; + var netEntity = _entityManager.GetNetEntity(entity); + return _adminSystem.PlayerList.FirstOrDefault(player => player.NetEntity == netEntity)?.Username; } /// @@ -77,12 +78,12 @@ private string GetEntityDescriptionAdmin(EntityUid entity) var representation = _entityManager.ToPrettyString(entity); var name = representation.Name; - var id = representation.Uid; + var id = representation.Uid.ToString(); var prototype = representation.Prototype; var playerName = representation.Session?.Name ?? SearchPlayerName(entity); var deleted = representation.Deleted; - return $"{name} ({id}{(prototype != null ? $", {prototype}" : "")}{(playerName != null ? $", {playerName}" : "")}){(deleted ? "D" : "")}"; + return $"{name} ({id} / {_entityManager.GetNetEntity(entity).ToString()}{(prototype != null ? $", {prototype}" : "")}{(playerName != null ? $", {playerName}" : "")}){(deleted ? "D" : "")}"; } private string GetEntityDescription(EntityUid entity) @@ -107,12 +108,12 @@ public void UpdateEntity(EntityUid? entity = null) // _entityManager.Deleted() implicitly checks all of these. if (_entityManager.Deleted(entity)) { - Icon.Sprite = null; + Icon.SetEntity(null); Text = string.Empty; } else { - Icon.Sprite = _entityManager.GetComponentOrNull(entity); + Icon.SetEntity(entity); Text = GetEntityDescription(entity.Value); } } diff --git a/Content.Client/ContextMenu/UI/EntityMenuPresenterGrouping.cs b/Content.Client/ContextMenu/UI/EntityMenuPresenterGrouping.cs index 057bdd60266..d8804a1218e 100644 --- a/Content.Client/ContextMenu/UI/EntityMenuPresenterGrouping.cs +++ b/Content.Client/ContextMenu/UI/EntityMenuPresenterGrouping.cs @@ -35,8 +35,8 @@ private sealed class PrototypeAndStatesContextMenuComparer : IEqualityComparer entMan.GetComponent(a).EntityPrototype!.ID == entMan.GetComponent(b).EntityPrototype!.ID, (a, b, entMan) => { - entMan.TryGetComponent(a, out var spriteA); - entMan.TryGetComponent(b, out var spriteB); + entMan.TryGetComponent(a, out SpriteComponent? spriteA); + entMan.TryGetComponent(b, out SpriteComponent? spriteB); if (spriteA == null || spriteB == null) return spriteA == spriteB; diff --git a/Content.Client/ContextMenu/UI/EntityMenuUIController.cs b/Content.Client/ContextMenu/UI/EntityMenuUIController.cs index 6ca8d95db7d..03d5a9486b4 100644 --- a/Content.Client/ContextMenu/UI/EntityMenuUIController.cs +++ b/Content.Client/ContextMenu/UI/EntityMenuUIController.cs @@ -133,8 +133,16 @@ public void OnKeyBindDown(ContextMenuElement element, GUIBoundKeyEventArgs args) var func = args.Function; var funcId = _inputManager.NetworkBindMap.KeyFunctionID(func); - var message = new FullInputCmdMessage(_gameTiming.CurTick, _gameTiming.TickFraction, funcId, - BoundKeyState.Down, _entityManager.GetComponent(entity.Value).Coordinates, args.PointerLocation, entity.Value); + var message = new ClientFullInputCmdMessage( + _gameTiming.CurTick, + _gameTiming.TickFraction, + funcId) + { + State = BoundKeyState.Down, + Coordinates = _entityManager.GetComponent(entity.Value).Coordinates, + ScreenCoordinates = args.PointerLocation, + Uid = entity.Value, + }; var session = _playerManager.LocalPlayer?.Session; if (session != null) diff --git a/Content.Client/Crayon/CrayonComponent.cs b/Content.Client/Crayon/CrayonComponent.cs index 3f61961abc1..5729c616c26 100644 --- a/Content.Client/Crayon/CrayonComponent.cs +++ b/Content.Client/Crayon/CrayonComponent.cs @@ -5,7 +5,7 @@ namespace Content.Client.Crayon { [RegisterComponent] - public sealed class CrayonComponent : SharedCrayonComponent + public sealed partial class CrayonComponent : SharedCrayonComponent { [ViewVariables(VVAccess.ReadWrite)] public bool UIUpdateNeeded; [ViewVariables] public int Charges { get; set; } diff --git a/Content.Client/Crayon/UI/CrayonWindow.xaml.cs b/Content.Client/Crayon/UI/CrayonWindow.xaml.cs index 4e21016196c..2a5801ccf2d 100644 --- a/Content.Client/Crayon/UI/CrayonWindow.xaml.cs +++ b/Content.Client/Crayon/UI/CrayonWindow.xaml.cs @@ -8,6 +8,7 @@ using Robust.Client.UserInterface.CustomControls; using Robust.Client.UserInterface.XAML; using Robust.Client.Utility; +using Robust.Shared.Graphics; using Robust.Shared.Maths; using Robust.Shared.Utility; using static Robust.Client.UserInterface.Controls.BaseButton; diff --git a/Content.Client/CrewManifest/CrewManifestSystem.cs b/Content.Client/CrewManifest/CrewManifestSystem.cs index d821117f6b8..05f27620c41 100644 --- a/Content.Client/CrewManifest/CrewManifestSystem.cs +++ b/Content.Client/CrewManifest/CrewManifestSystem.cs @@ -30,10 +30,10 @@ public override void Shutdown() /// /// Requests a crew manifest from the server. /// - /// EntityUid of the entity we're requesting the crew manifest from. - public void RequestCrewManifest(EntityUid uid) + /// EntityUid of the entity we're requesting the crew manifest from. + public void RequestCrewManifest(NetEntity netEntity) { - RaiseNetworkEvent(new RequestCrewManifestMessage(uid)); + RaiseNetworkEvent(new RequestCrewManifestMessage(netEntity)); } private void OnPrototypesReload(PrototypesReloadedEventArgs _) diff --git a/Content.Client/Damage/DamageVisualsComponent.cs b/Content.Client/Damage/DamageVisualsComponent.cs index 1ccf7a5c11d..90171e78f95 100644 --- a/Content.Client/Damage/DamageVisualsComponent.cs +++ b/Content.Client/Damage/DamageVisualsComponent.cs @@ -3,7 +3,7 @@ namespace Content.Client.Damage; [RegisterComponent] -public sealed class DamageVisualsComponent : Component +public sealed partial class DamageVisualsComponent : Component { /// /// Damage thresholds between damage state changes. @@ -55,7 +55,7 @@ public sealed class DamageVisualsComponent : Component /// (for example, Brute), and has a value /// of a DamageVisualizerSprite (see below) /// - [DataField("damageOverlayGroups")] public readonly Dictionary? DamageOverlayGroups; + [DataField("damageOverlayGroups")] public Dictionary? DamageOverlayGroups; /// /// Sets if you want sprites to overlay the @@ -68,7 +68,7 @@ public sealed class DamageVisualsComponent : Component /// - There are no target layers /// - There is no damage group /// - [DataField("overlay")] public readonly bool Overlay = true; + [DataField("overlay")] public bool Overlay = true; /// /// A single damage group to target. @@ -84,7 +84,7 @@ public sealed class DamageVisualsComponent : Component /// what kind of damage combination /// you would want, on which threshold. /// - [DataField("damageGroup")] public readonly string? DamageGroup; + [DataField("damageGroup")] public string? DamageGroup; /// /// Set this if you want incoming damage to be @@ -106,14 +106,14 @@ public sealed class DamageVisualsComponent : Component /// This will only work if you have damageOverlay /// defined - otherwise, it will not work. /// - [DataField("trackAllDamage")] public readonly bool TrackAllDamage; + [DataField("trackAllDamage")] public bool TrackAllDamage; /// /// This is the overlay sprite used, if _trackAllDamage is /// enabled. Supports no complex per-group layering, /// just an actually simple damage overlay. See /// DamageVisualizerSprite for more information. /// - [DataField("damageOverlay")] public readonly DamageVisualizerSprite? DamageOverlay; + [DataField("damageOverlay")] public DamageVisualizerSprite? DamageOverlay; public readonly List TargetLayerMapKeys = new(); public bool Disabled = false; @@ -128,7 +128,7 @@ public sealed class DamageVisualsComponent : Component // deals with the edge case of human damage visuals not // being in color without making a Dict /// The RSI path for the damage visualizer @@ -151,11 +151,11 @@ public sealed class DamageVisualizerSprite /// - DamageOverlay_{threshold} if not targeting /// a layer. /// - [DataField("sprite", required: true)] public readonly string Sprite = default!; + [DataField("sprite", required: true)] public string Sprite = default!; /// /// The color of this sprite overlay. /// Supports only hexadecimal format. /// - [DataField("color")] public readonly string? Color; + [DataField("color")] public string? Color; } diff --git a/Content.Client/DamageState/DamageStateVisualsComponent.cs b/Content.Client/DamageState/DamageStateVisualsComponent.cs index 8034fd87986..689e96afa55 100644 --- a/Content.Client/DamageState/DamageStateVisualsComponent.cs +++ b/Content.Client/DamageState/DamageStateVisualsComponent.cs @@ -3,7 +3,7 @@ namespace Content.Client.DamageState; [RegisterComponent] -public sealed class DamageStateVisualsComponent : Component +public sealed partial class DamageStateVisualsComponent : Component { public int? OriginalDrawDepth; diff --git a/Content.Client/Decals/DecalPlacementSystem.cs b/Content.Client/Decals/DecalPlacementSystem.cs index 937e10ab4ca..c97f8281a17 100644 --- a/Content.Client/Decals/DecalPlacementSystem.cs +++ b/Content.Client/Decals/DecalPlacementSystem.cs @@ -2,7 +2,6 @@ using Content.Client.Actions; using Content.Client.Decals.Overlays; using Content.Shared.Actions; -using Content.Shared.Actions.ActionTypes; using Content.Shared.Decals; using Robust.Client.GameObjects; using Robust.Client.Graphics; @@ -10,7 +9,6 @@ using Robust.Shared.Input; using Robust.Shared.Input.Binding; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Client.Decals; @@ -22,6 +20,7 @@ public sealed class DecalPlacementSystem : EntitySystem [Dependency] private readonly IOverlayManager _overlay = default!; [Dependency] private readonly IPrototypeManager _protoMan = default!; [Dependency] private readonly InputSystem _inputSystem = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly SpriteSystem _sprite = default!; @@ -71,7 +70,7 @@ public override void Initialize() return false; var decal = new Decal(coords.Position, _decalId, _decalColor, _decalAngle, _zIndex, _cleanable); - RaiseNetworkEvent(new RequestDecalPlacementEvent(decal, coords)); + RaiseNetworkEvent(new RequestDecalPlacementEvent(decal, GetNetCoordinates(coords))); return true; }, @@ -91,7 +90,7 @@ public override void Initialize() _erasing = true; - RaiseNetworkEvent(new RequestDecalRemovalEvent(coords)); + RaiseNetworkEvent(new RequestDecalRemovalEvent(GetNetCoordinates(coords))); return true; }, (session, coords, uid) => @@ -129,7 +128,7 @@ private void OnPlaceDecalAction(PlaceDecalActionEvent args) args.Target = args.Target.Offset(new Vector2(-0.5f, -0.5f)); var decal = new Decal(args.Target.Position, args.DecalId, args.Color, Angle.FromDegrees(args.Rotation), args.ZIndex, args.Cleanable); - RaiseNetworkEvent(new RequestDecalPlacementEvent(decal, args.Target)); + RaiseNetworkEvent(new RequestDecalPlacementEvent(decal, GetNetCoordinates(args.Target))); } private void OnFillSlot(FillActionSlotEvent ev) @@ -153,9 +152,10 @@ private void OnFillSlot(FillActionSlotEvent ev) Cleanable = _cleanable, }; - ev.Action = new WorldTargetAction() + var actionId = Spawn(null); + AddComp(actionId, new WorldTargetActionComponent { - DisplayName = $"{_decalId} ({_decalColor.ToHex()}, {(int) _decalAngle.Degrees})", // non-unique actions may be considered duplicates when saving/loading. + // non-unique actions may be considered duplicates when saving/loading. Icon = decalProto.Sprite, Repeat = true, ClientExclusive = true, @@ -164,7 +164,11 @@ private void OnFillSlot(FillActionSlotEvent ev) Range = -1, Event = actionEvent, IconColor = _decalColor, - }; + }); + + _metaData.SetEntityName(actionId, $"{_decalId} ({_decalColor.ToHex()}, {(int) _decalAngle.Degrees})"); + + ev.Action = actionId; } public override void Shutdown() @@ -194,24 +198,3 @@ public void SetActive(bool active) _inputSystem.SetEntityContextActive(); } } - -public sealed class PlaceDecalActionEvent : WorldTargetActionEvent -{ - [DataField("decalId", customTypeSerializer:typeof(PrototypeIdSerializer), required:true)] - public string DecalId = string.Empty; - - [DataField("color")] - public Color Color; - - [DataField("rotation")] - public double Rotation; - - [DataField("snap")] - public bool Snap; - - [DataField("zIndex")] - public int ZIndex; - - [DataField("cleanable")] - public bool Cleanable; -} diff --git a/Content.Client/Decals/DecalSystem.cs b/Content.Client/Decals/DecalSystem.cs index 159efced01a..66b30545dad 100644 --- a/Content.Client/Decals/DecalSystem.cs +++ b/Content.Client/Decals/DecalSystem.cs @@ -92,13 +92,16 @@ private void OnHandleState(EntityUid gridUid, DecalGridComponent gridComp, ref C private void OnChunkUpdate(DecalChunkUpdateEvent ev) { - foreach (var (gridId, updatedGridChunks) in ev.Data) + foreach (var (netGrid, updatedGridChunks) in ev.Data) { - if (updatedGridChunks.Count == 0) continue; + if (updatedGridChunks.Count == 0) + continue; + + var gridId = GetEntity(netGrid); if (!TryComp(gridId, out DecalGridComponent? gridComp)) { - Logger.Error($"Received decal information for an entity without a decal component: {ToPrettyString(gridId)}"); + Log.Error($"Received decal information for an entity without a decal component: {ToPrettyString(gridId)}"); continue; } @@ -106,13 +109,16 @@ private void OnChunkUpdate(DecalChunkUpdateEvent ev) } // Now we'll cull old chunks out of range as the server will send them to us anyway. - foreach (var (gridId, chunks) in ev.RemovedChunks) + foreach (var (netGrid, chunks) in ev.RemovedChunks) { - if (chunks.Count == 0) continue; + if (chunks.Count == 0) + continue; + + var gridId = GetEntity(netGrid); if (!TryComp(gridId, out DecalGridComponent? gridComp)) { - Logger.Error($"Received decal information for an entity without a decal component: {ToPrettyString(gridId)}"); + Log.Error($"Received decal information for an entity without a decal component: {ToPrettyString(gridId)}"); continue; } diff --git a/Content.Client/Decals/UI/DecalPlacerWindow.xaml.cs b/Content.Client/Decals/UI/DecalPlacerWindow.xaml.cs index 00bfd7ec652..199b4f5c1f8 100644 --- a/Content.Client/Decals/UI/DecalPlacerWindow.xaml.cs +++ b/Content.Client/Decals/UI/DecalPlacerWindow.xaml.cs @@ -7,6 +7,7 @@ using Robust.Client.UserInterface.CustomControls; using Robust.Client.UserInterface.XAML; using Robust.Client.Utility; +using Robust.Shared.Graphics; using static Robust.Client.UserInterface.Controls.BaseButton; namespace Content.Client.Decals.UI; diff --git a/Content.Client/Disposal/DisposalUnitComponent.cs b/Content.Client/Disposal/DisposalUnitComponent.cs index 5466ea59dd9..e63a3fd45ec 100644 --- a/Content.Client/Disposal/DisposalUnitComponent.cs +++ b/Content.Client/Disposal/DisposalUnitComponent.cs @@ -3,8 +3,7 @@ namespace Content.Client.Disposal; [RegisterComponent] -[ComponentReference(typeof(SharedDisposalUnitComponent))] -public sealed class DisposalUnitComponent : SharedDisposalUnitComponent +public sealed partial class DisposalUnitComponent : SharedDisposalUnitComponent { } diff --git a/Content.Client/Disposal/Systems/DisposalUnitSystem.cs b/Content.Client/Disposal/Systems/DisposalUnitSystem.cs index 9a2f2079256..d10101754cc 100644 --- a/Content.Client/Disposal/Systems/DisposalUnitSystem.cs +++ b/Content.Client/Disposal/Systems/DisposalUnitSystem.cs @@ -1,3 +1,4 @@ +using System.Diagnostics.CodeAnalysis; using Content.Shared.Disposal; using Content.Shared.Disposal.Components; using Content.Shared.DragDrop; @@ -45,7 +46,22 @@ private void OnHandleState(EntityUid uid, DisposalUnitComponent component, ref C component.Powered = state.Powered; component.Engaged = state.Engaged; component.RecentlyEjected.Clear(); - component.RecentlyEjected.AddRange(state.RecentlyEjected); + component.RecentlyEjected.AddRange(EnsureEntityList(state.RecentlyEjected, uid)); + } + + public override bool HasDisposals(EntityUid? uid) + { + return HasComp(uid); + } + + public override bool ResolveDisposals(EntityUid uid, [NotNullWhen(true)] ref SharedDisposalUnitComponent? component) + { + if (component != null) + return true; + + TryComp(uid, out var storage); + component = storage; + return component != null; } public override void DoInsertDisposalUnit(EntityUid uid, EntityUid toInsert, EntityUid user, SharedDisposalUnitComponent? disposal = null) diff --git a/Content.Client/DoAfter/DoAfterOverlay.cs b/Content.Client/DoAfter/DoAfterOverlay.cs index bc3902cc535..1fc00a81b94 100644 --- a/Content.Client/DoAfter/DoAfterOverlay.cs +++ b/Content.Client/DoAfter/DoAfterOverlay.cs @@ -3,6 +3,7 @@ using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Shared.Enums; +using Robust.Shared.Graphics; using Robust.Shared.Prototypes; using Robust.Shared.Timing; using Robust.Shared.Utility; diff --git a/Content.Client/DoAfter/DoAfterSystem.cs b/Content.Client/DoAfter/DoAfterSystem.cs index 761747b8e99..8c2d8344d38 100644 --- a/Content.Client/DoAfter/DoAfterSystem.cs +++ b/Content.Client/DoAfter/DoAfterSystem.cs @@ -1,3 +1,4 @@ +using System.Diagnostics.CodeAnalysis; using Content.Shared.DoAfter; using Content.Shared.Hands.Components; using Robust.Client.Graphics; @@ -51,4 +52,58 @@ public override void Update(float frameTime) var handsQuery = GetEntityQuery(); Update(playerEntity.Value, active, comp, time, xformQuery, handsQuery); } + + /// + /// Try to find an active do-after being executed by the local player. + /// + /// The entity the do after must be targeting () + /// The found do-after. + /// The event to be raised on the found do-after when it completes. + /// The progress of the found do-after, from 0 to 1. + /// The type of event that must be raised by the found do-after. + /// True if a do-after was found. + public bool TryFindActiveDoAfter( + EntityUid entity, + [NotNullWhen(true)] out Shared.DoAfter.DoAfter? doAfter, + [NotNullWhen(true)] out T? @event, + out float progress) + where T : DoAfterEvent + { + var playerEntity = _player.LocalPlayer?.ControlledEntity; + + doAfter = null; + @event = null; + progress = default; + + if (!TryComp(playerEntity, out ActiveDoAfterComponent? active)) + return false; + + if (_metadata.EntityPaused(playerEntity.Value)) + return false; + + var comp = Comp(playerEntity.Value); + + var time = GameTiming.CurTime; + + foreach (var candidate in comp.DoAfters.Values) + { + if (candidate.Cancelled) + continue; + + if (candidate.Args.Target != entity) + continue; + + if (candidate.Args.Event is not T candidateEvent) + continue; + + @event = candidateEvent; + doAfter = candidate; + var elapsed = time - doAfter.StartTime; + progress = (float) Math.Min(1, elapsed.TotalSeconds / doAfter.Args.Delay.TotalSeconds); + + return true; + } + + return false; + } } diff --git a/Content.Client/DragDrop/DragDropSystem.cs b/Content.Client/DragDrop/DragDropSystem.cs index 84bc63a3b67..a8c1a06686e 100644 --- a/Content.Client/DragDrop/DragDropSystem.cs +++ b/Content.Client/DragDrop/DragDropSystem.cs @@ -112,7 +112,7 @@ public override void Initialize() base.Initialize(); _sawmill = Logger.GetSawmill("drag_drop"); UpdatesOutsidePrediction = true; - UpdatesAfter.Add(typeof(EyeUpdateSystem)); + UpdatesAfter.Add(typeof(SharedEyeSystem)); _cfgMan.OnValueChanged(CCVars.DragDropDeadZone, SetDeadZone, true); @@ -193,27 +193,29 @@ private bool OnUseMouseDown(in PointerInputCmdHandler.PointerInputCmdArgs args) // the mouse, canceling the drag, but just being cautious) EndDrag(); + var entity = args.EntityUid; + // possibly initiating a drag // check if the clicked entity is draggable - if (!Exists(args.EntityUid)) + if (!Exists(entity)) { return false; } // check if the entity is reachable - if (!_interactionSystem.InRangeUnobstructed(dragger, args.EntityUid)) + if (!_interactionSystem.InRangeUnobstructed(dragger, entity)) { return false; } var ev = new CanDragEvent(); - RaiseLocalEvent(args.EntityUid, ref ev); + RaiseLocalEvent(entity, ref ev); if (ev.Handled != true) return false; - _draggedEntity = args.EntityUid; + _draggedEntity = entity; _state = DragState.MouseDown; _mouseDownScreenPos = _inputManager.MouseScreenPosition; _mouseDownTime = 0; @@ -309,14 +311,32 @@ private bool OnUseMouseUp(in PointerInputCmdHandler.PointerInputCmdArgs args) // adjust the timing info based on the current tick so it appears as if it happened now var replayMsg = savedValue.OriginalMessage; - var adjustedInputMsg = new FullInputCmdMessage(args.OriginalMessage.Tick, - args.OriginalMessage.SubTick, - replayMsg.InputFunctionId, replayMsg.State, replayMsg.Coordinates, replayMsg.ScreenCoordinates, - replayMsg.Uid); + switch (replayMsg) + { + case ClientFullInputCmdMessage clientInput: + replayMsg = new ClientFullInputCmdMessage(args.OriginalMessage.Tick, + args.OriginalMessage.SubTick, + replayMsg.InputFunctionId) + { + State = replayMsg.State, + Coordinates = clientInput.Coordinates, + ScreenCoordinates = clientInput.ScreenCoordinates, + Uid = clientInput.Uid, + }; + break; + case FullInputCmdMessage fullInput: + replayMsg = new FullInputCmdMessage(args.OriginalMessage.Tick, + args.OriginalMessage.SubTick, + replayMsg.InputFunctionId, replayMsg.State, fullInput.Coordinates, fullInput.ScreenCoordinates, + fullInput.Uid); + break; + default: + throw new ArgumentOutOfRangeException(); + } if (savedValue.Session != null) { - _inputSystem.HandleInputCommand(savedValue.Session, EngineKeyFunctions.Use, adjustedInputMsg, + _inputSystem.HandleInputCommand(savedValue.Session, EngineKeyFunctions.Use, replayMsg, true); } @@ -340,10 +360,11 @@ private bool OnUseMouseUp(in PointerInputCmdHandler.PointerInputCmdArgs args) } IEnumerable entities; + var coords = args.Coordinates; if (_stateManager.CurrentState is GameplayState screen) { - entities = screen.GetClickableEntities(args.Coordinates); + entities = screen.GetClickableEntities(coords); } else { @@ -371,7 +392,7 @@ private bool OnUseMouseUp(in PointerInputCmdHandler.PointerInputCmdArgs args) } // tell the server about the drop attempt - RaiseNetworkEvent(new DragDropRequestEvent(_draggedEntity.Value, entity)); + RaiseNetworkEvent(new DragDropRequestEvent(GetNetEntity(_draggedEntity.Value), GetNetEntity(entity))); EndDrag(); return true; } diff --git a/Content.Client/Dragon/DragonRiftComponent.cs b/Content.Client/Dragon/DragonRiftComponent.cs index 6aa98a66c54..db86949de9d 100644 --- a/Content.Client/Dragon/DragonRiftComponent.cs +++ b/Content.Client/Dragon/DragonRiftComponent.cs @@ -3,7 +3,7 @@ namespace Content.Client.Dragon; [RegisterComponent] -public sealed class DragonRiftComponent : SharedDragonRiftComponent +public sealed partial class DragonRiftComponent : SharedDragonRiftComponent { } diff --git a/Content.Client/Dragon/DragonSystem.cs b/Content.Client/Dragon/DragonSystem.cs index d11fac8de7a..e164798c1eb 100644 --- a/Content.Client/Dragon/DragonSystem.cs +++ b/Content.Client/Dragon/DragonSystem.cs @@ -6,6 +6,8 @@ namespace Content.Client.Dragon; public sealed class DragonSystem : EntitySystem { + [Dependency] private readonly SharedPointLightSystem _lights = default!; + public override void Initialize() { base.Initialize(); @@ -32,19 +34,25 @@ private void OnRiftHandleState(EntityUid uid, DragonRiftComponent component, ref sprite?.LayerSetColor(0, Color.FromHex("#569fff")); if (light != null) - light.Color = Color.FromHex("#366db5"); + { + _lights.SetColor(uid, Color.FromHex("#366db5"), light); + } break; case DragonRiftState.AlmostFinished: sprite?.LayerSetColor(0, Color.FromHex("#cf4cff")); if (light != null) - light.Color = Color.FromHex("#9e2fc1"); + { + _lights.SetColor(uid, Color.FromHex("#9e2fc1"), light); + } break; case DragonRiftState.Finished: sprite?.LayerSetColor(0, Color.FromHex("#edbc36")); if (light != null) - light.Color = Color.FromHex("#cbaf20"); + { + _lights.SetColor(uid, Color.FromHex("#cbaf20"), light); + } break; } } diff --git a/Content.Client/Drugs/RainbowOverlay.cs b/Content.Client/Drugs/RainbowOverlay.cs index fbaab0dc5f1..8372f7ea600 100644 --- a/Content.Client/Drugs/RainbowOverlay.cs +++ b/Content.Client/Drugs/RainbowOverlay.cs @@ -1,6 +1,5 @@ using Content.Shared.Drugs; using Content.Shared.StatusEffect; -using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.Player; using Robust.Shared.Enums; diff --git a/Content.Client/Drunk/DrunkOverlay.cs b/Content.Client/Drunk/DrunkOverlay.cs index 846c86b3be3..a2adb6ecc7f 100644 --- a/Content.Client/Drunk/DrunkOverlay.cs +++ b/Content.Client/Drunk/DrunkOverlay.cs @@ -1,6 +1,5 @@ using Content.Shared.Drunk; using Content.Shared.StatusEffect; -using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.Player; using Robust.Shared.Enums; diff --git a/Content.Client/Effects/ColorFlashEffectSystem.cs b/Content.Client/Effects/ColorFlashEffectSystem.cs index dca675b8dfb..34acb7f370f 100644 --- a/Content.Client/Effects/ColorFlashEffectSystem.cs +++ b/Content.Client/Effects/ColorFlashEffectSystem.cs @@ -31,7 +31,7 @@ public override void RaiseEffect(Color color, List entities, Filter f if (!_timing.IsFirstTimePredicted) return; - OnColorFlashEffect(new ColorFlashEffectEvent(color, entities)); + OnColorFlashEffect(new ColorFlashEffectEvent(color, GetNetEntityList(entities))); } private void OnEffectAnimationCompleted(EntityUid uid, ColorFlashEffectComponent component, AnimationCompletedEvent args) @@ -77,8 +77,10 @@ private void OnColorFlashEffect(ColorFlashEffectEvent ev) { var color = ev.Color; - foreach (var ent in ev.Entities) + foreach (var nent in ev.Entities) { + var ent = GetEntity(nent); + if (Deleted(ent)) { continue; diff --git a/Content.Client/Effects/EffectVisualsComponent.cs b/Content.Client/Effects/EffectVisualsComponent.cs index 30662126a2a..4ede4e75564 100644 --- a/Content.Client/Effects/EffectVisualsComponent.cs +++ b/Content.Client/Effects/EffectVisualsComponent.cs @@ -4,4 +4,4 @@ namespace Content.Client.Effects; /// Deletes the attached entity whenever any animation completes. Used for temporary client-side entities. /// [RegisterComponent] -public sealed class EffectVisualsComponent : Component {} +public sealed partial class EffectVisualsComponent : Component {} diff --git a/Content.Client/Entry/EntryPoint.cs b/Content.Client/Entry/EntryPoint.cs index 860b1634ad2..a06e496c58d 100644 --- a/Content.Client/Entry/EntryPoint.cs +++ b/Content.Client/Entry/EntryPoint.cs @@ -20,7 +20,6 @@ using Content.Client.Stylesheets; using Content.Client.Viewport; using Content.Client.Voting; -using Content.Shared.Administration; using Content.Shared.Ame; using Content.Shared.Gravity; using Content.Shared.Localizations; @@ -28,13 +27,11 @@ using Robust.Client.Graphics; using Robust.Client.Input; using Robust.Client.Replays.Loading; -using Robust.Client.Replays.Playback; using Robust.Client.State; using Robust.Client.UserInterface; using Robust.Shared; using Robust.Shared.Configuration; using Robust.Shared.ContentPack; -using Robust.Shared.Map; using Robust.Shared.Prototypes; using Robust.Shared.Replays; @@ -97,11 +94,8 @@ public override void Init() _prototypeManager.RegisterIgnore("utilityQuery"); _prototypeManager.RegisterIgnore("utilityCurvePreset"); _prototypeManager.RegisterIgnore("accent"); - _prototypeManager.RegisterIgnore("material"); - _prototypeManager.RegisterIgnore("reaction"); //Chemical reactions only needed by server. Reactions checks are server-side. _prototypeManager.RegisterIgnore("gasReaction"); _prototypeManager.RegisterIgnore("seed"); // Seeds prototypes are server-only. - _prototypeManager.RegisterIgnore("barSign"); _prototypeManager.RegisterIgnore("objective"); _prototypeManager.RegisterIgnore("holiday"); _prototypeManager.RegisterIgnore("aiFaction"); @@ -112,10 +106,7 @@ public override void Init() _prototypeManager.RegisterIgnore("npcFaction"); _prototypeManager.RegisterIgnore("lobbyBackground"); _prototypeManager.RegisterIgnore("advertisementsPack"); - _prototypeManager.RegisterIgnore("metabolizerType"); - _prototypeManager.RegisterIgnore("metabolismGroup"); _prototypeManager.RegisterIgnore("salvageMap"); - _prototypeManager.RegisterIgnore("salvageFaction"); _prototypeManager.RegisterIgnore("gamePreset"); _prototypeManager.RegisterIgnore("noiseChannel"); _prototypeManager.RegisterIgnore("spaceBiome"); @@ -129,7 +120,6 @@ public override void Init() _prototypeManager.RegisterIgnore("wireLayout"); _prototypeManager.RegisterIgnore("alertLevels"); _prototypeManager.RegisterIgnore("nukeopsRole"); - _prototypeManager.RegisterIgnore("flavor"); _componentFactory.GenerateNetIds(); _adminManager.Initialize(); diff --git a/Content.Client/Examine/ExamineButton.cs b/Content.Client/Examine/ExamineButton.cs index 912b7dc9db7..52ff7a972eb 100644 --- a/Content.Client/Examine/ExamineButton.cs +++ b/Content.Client/Examine/ExamineButton.cs @@ -41,7 +41,6 @@ public ExamineButton(ExamineVerb verb) } ToolTip = verb.Message ?? verb.Text; - TooltipDelay = 0.3f; // if you're hovering over these icons, you probably want to know what they do. Icon = new TextureRect { diff --git a/Content.Client/Examine/ExamineSystem.cs b/Content.Client/Examine/ExamineSystem.cs index 180777f374d..59460cec561 100644 --- a/Content.Client/Examine/ExamineSystem.cs +++ b/Content.Client/Examine/ExamineSystem.cs @@ -20,6 +20,9 @@ using Robust.Client; using static Content.Shared.Interaction.SharedInteractionSystem; using static Robust.Client.UserInterface.Controls.BoxContainer; +using Content.Shared.Interaction.Events; +using Content.Shared.Item; +using Direction = Robust.Shared.Maths.Direction; namespace Content.Client.Examine { @@ -50,6 +53,8 @@ public override void Initialize() SubscribeNetworkEvent(OnExamineInfoResponse); + SubscribeLocalEvent(OnExaminedItemDropped); + CommandBinds.Builder .Bind(ContentKeyFunctions.ExamineEntity, new PointerInputCmdHandler(HandleExamine, outsidePrediction: true)) .Register(); @@ -57,6 +62,19 @@ public override void Initialize() _idCounter = 0; } + private void OnExaminedItemDropped(EntityUid item, ItemComponent comp, DroppedEvent args) + { + if (!args.User.Valid) + return; + if (_playerManager.LocalPlayer == null) + return; + if (_examineTooltipOpen == null) + return; + + if (item == _examinedEntity && args.User == _playerManager.LocalPlayer.ControlledEntity) + CloseTooltip(); + } + public override void Update(float frameTime) { if (_examineTooltipOpen is not {Visible: true}) return; @@ -93,19 +111,21 @@ public override bool CanExamine(EntityUid examiner, MapCoordinates target, Ignor private bool HandleExamine(in PointerInputCmdHandler.PointerInputCmdArgs args) { - if (!args.EntityUid.IsValid() || !EntityManager.EntityExists(args.EntityUid)) + var entity = args.EntityUid; + + if (!args.EntityUid.IsValid() || !EntityManager.EntityExists(entity)) { return false; } _playerEntity = _playerManager.LocalPlayer?.ControlledEntity ?? default; - if (_playerEntity == default || !CanExamine(_playerEntity, args.EntityUid)) + if (_playerEntity == default || !CanExamine(_playerEntity, entity)) { return false; } - DoExamine(args.EntityUid); + DoExamine(entity); return true; } @@ -140,8 +160,10 @@ private void OnExamineInfoResponse(ExamineSystemMessages.ExamineInfoResponseMess // Tooltips coming in from the server generally prioritize // opening at the old tooltip rather than the cursor/another entity, // since there's probably one open already if it's coming in from the server. - OpenTooltip(player.Value, ev.EntityUid, ev.CenterAtCursor, ev.OpenAtOldTooltip, ev.KnowTarget); - UpdateTooltipInfo(player.Value, ev.EntityUid, ev.Message, ev.Verbs); + var entity = GetEntity(ev.EntityUid); + + OpenTooltip(player.Value, entity, ev.CenterAtCursor, ev.OpenAtOldTooltip, ev.KnowTarget); + UpdateTooltipInfo(player.Value, entity, ev.Message, ev.Verbs); } public override void SendExamineTooltip(EntityUid player, EntityUid target, FormattedMessage message, bool getVerbs, bool centerAtCursor) @@ -205,14 +227,16 @@ public void OpenTooltip(EntityUid player, EntityUid target, bool centeredOnCurso vBox.AddChild(hBox); - if (EntityManager.TryGetComponent(target, out SpriteComponent? sprite)) + if (EntityManager.HasComponent(target)) { - hBox.AddChild(new SpriteView + var spriteView = new SpriteView { - Sprite = sprite, OverrideDirection = Direction.South, + OverrideDirection = Direction.South, SetSize = new Vector2(32, 32), Margin = new Thickness(2, 0, 2, 0), - }); + }; + spriteView.SetEntity(target); + hBox.AddChild(spriteView); } if (knowTarget) @@ -339,12 +363,10 @@ public void DoExamine(EntityUid entity, bool centeredOnCursor = true, EntityUid? FormattedMessage message; // Basically this just predicts that we can't make out the entity if we have poor vision. - var canSeeClearly = true; - if (HasComp(playerEnt)) - canSeeClearly = false; + var canSeeClearly = !HasComp(playerEnt); OpenTooltip(playerEnt.Value, entity, centeredOnCursor, false, knowTarget: canSeeClearly); - if (entity.IsClientSide() + if (IsClientSide(entity) || _client.RunLevel == ClientRunLevel.SinglePlayerGame) // i.e. a replay { message = GetExamineText(entity, playerEnt); @@ -357,7 +379,7 @@ public void DoExamine(EntityUid entity, bool centeredOnCursor = true, EntityUid? _idCounter += 1; if (_idCounter == int.MaxValue) _idCounter = 0; - RaiseNetworkEvent(new ExamineSystemMessages.RequestExamineInfoMessage(entity, _idCounter, true)); + RaiseNetworkEvent(new ExamineSystemMessages.RequestExamineInfoMessage(GetNetEntity(entity), _idCounter, true)); } RaiseLocalEvent(entity, new ClientExaminedEvent(entity, playerEnt.Value)); diff --git a/Content.Client/Explosion/ClusterGrenadeVisualsComponent.cs b/Content.Client/Explosion/ClusterGrenadeVisualsComponent.cs index df04358c582..3c97f557b6a 100644 --- a/Content.Client/Explosion/ClusterGrenadeVisualsComponent.cs +++ b/Content.Client/Explosion/ClusterGrenadeVisualsComponent.cs @@ -2,7 +2,7 @@ namespace Content.Client.Explosion; [RegisterComponent] [Access(typeof(ClusterGrenadeVisualizerSystem))] -public sealed class ClusterGrenadeVisualsComponent : Component +public sealed partial class ClusterGrenadeVisualsComponent : Component { [DataField("state")] public string? State; diff --git a/Content.Client/Explosion/ExplosionOverlaySystem.cs b/Content.Client/Explosion/ExplosionOverlaySystem.cs index d182c0be2d3..60208ea1a0d 100644 --- a/Content.Client/Explosion/ExplosionOverlaySystem.cs +++ b/Content.Client/Explosion/ExplosionOverlaySystem.cs @@ -1,9 +1,10 @@ using Content.Shared.Explosion; -using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.ResourceManagement; using Robust.Shared.GameStates; +using Robust.Shared.Graphics.RSI; using Robust.Shared.Prototypes; +using Robust.Shared.Utility; namespace Content.Client.Explosion; @@ -16,6 +17,7 @@ public sealed class ExplosionOverlaySystem : EntitySystem [Dependency] private readonly IPrototypeManager _protoMan = default!; [Dependency] private readonly IResourceCache _resCache = default!; [Dependency] private readonly IOverlayManager _overlayMan = default!; + [Dependency] private readonly SharedPointLightSystem _lights = default!; /// /// For how many seconds should an explosion stay on-screen once it has finished expanding? @@ -39,7 +41,13 @@ private void OnExplosionHandleState(EntityUid uid, ExplosionVisualsComponent com component.Epicenter = state.Epicenter; component.SpaceTiles = state.SpaceTiles; - component.Tiles = state.Tiles; + component.Tiles.Clear(); + + foreach (var (nent, data) in state.Tiles) + { + component.Tiles[GetEntity(nent)] = data; + } + component.Intensity = state.Intensity; component.ExplosionType = state.ExplosionType; component.SpaceMatrix = state.SpaceMatrix; @@ -64,9 +72,11 @@ private void OnExplosionInit(EntityUid uid, ExplosionVisualsComponent component, // spawn in a client-side light source at the epicenter var lightEntity = Spawn("ExplosionLight", component.Epicenter); - var light = EnsureComp(lightEntity); - light.Energy = light.Radius = component.Intensity.Count; - light.Color = type.LightColor; + var light = _lights.EnsureLight(lightEntity); + + _lights.SetRadius(lightEntity, component.Intensity.Count, light); + _lights.SetEnergy(lightEntity, component.Intensity.Count, light); + _lights.SetColor(lightEntity, type.LightColor, light); textures.LightEntity = lightEntity; textures.FireColor = type.FireColor; @@ -75,7 +85,7 @@ private void OnExplosionInit(EntityUid uid, ExplosionVisualsComponent component, var fireRsi = _resCache.GetResource(type.TexturePath).RSI; foreach (var state in fireRsi) { - textures.FireFrames.Add(state.GetFrames(RSI.State.Direction.South)); + textures.FireFrames.Add(state.GetFrames(RsiDirection.South)); if (textures.FireFrames.Count == type.FireStates) break; } diff --git a/Content.Client/Explosion/ExplosionVisualsTexturesComponent.cs b/Content.Client/Explosion/ExplosionVisualsTexturesComponent.cs index 4ac70879612..b8641e6cee4 100644 --- a/Content.Client/Explosion/ExplosionVisualsTexturesComponent.cs +++ b/Content.Client/Explosion/ExplosionVisualsTexturesComponent.cs @@ -1,9 +1,10 @@ using Robust.Client.Graphics; +using Robust.Shared.Graphics; namespace Content.Client.Explosion; [RegisterComponent] -public sealed class ExplosionVisualsTexturesComponent : Component +public sealed partial class ExplosionVisualsTexturesComponent : Component { /// /// Uid of the client-side point light entity for this explosion. diff --git a/Content.Client/Explosion/TriggerOnProximityComponent.cs b/Content.Client/Explosion/TriggerOnProximityComponent.cs index 888b8ec0048..5d4714d19c3 100644 --- a/Content.Client/Explosion/TriggerOnProximityComponent.cs +++ b/Content.Client/Explosion/TriggerOnProximityComponent.cs @@ -3,4 +3,4 @@ namespace Content.Client.Explosion; [RegisterComponent, Access(typeof(TriggerSystem))] -public sealed class TriggerOnProximityComponent : SharedTriggerOnProximityComponent {} +public sealed partial class TriggerOnProximityComponent : SharedTriggerOnProximityComponent {} diff --git a/Content.Client/Extinguisher/FireExtinguisherComponent.cs b/Content.Client/Extinguisher/FireExtinguisherComponent.cs index b73c7cd8113..126c172924b 100644 --- a/Content.Client/Extinguisher/FireExtinguisherComponent.cs +++ b/Content.Client/Extinguisher/FireExtinguisherComponent.cs @@ -4,6 +4,6 @@ namespace Content.Client.Extinguisher; [NetworkedComponent, RegisterComponent] -public sealed class FireExtinguisherComponent : SharedFireExtinguisherComponent +public sealed partial class FireExtinguisherComponent : SharedFireExtinguisherComponent { } diff --git a/Content.Client/Eye/Blinding/BlindOverlay.cs b/Content.Client/Eye/Blinding/BlindOverlay.cs index 1ade23c14d5..83c6cd23e64 100644 --- a/Content.Client/Eye/Blinding/BlindOverlay.cs +++ b/Content.Client/Eye/Blinding/BlindOverlay.cs @@ -1,4 +1,3 @@ -using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.Player; using Robust.Shared.Enums; diff --git a/Content.Client/Eye/Blinding/BlurryVisionOverlay.cs b/Content.Client/Eye/Blinding/BlurryVisionOverlay.cs index 34480544e94..94590b54a50 100644 --- a/Content.Client/Eye/Blinding/BlurryVisionOverlay.cs +++ b/Content.Client/Eye/Blinding/BlurryVisionOverlay.cs @@ -1,4 +1,3 @@ -using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.Player; using Robust.Shared.Enums; diff --git a/Content.Client/Eye/EyeLerpingSystem.cs b/Content.Client/Eye/EyeLerpingSystem.cs index 8a5a6586aa1..79af9e719b8 100644 --- a/Content.Client/Eye/EyeLerpingSystem.cs +++ b/Content.Client/Eye/EyeLerpingSystem.cs @@ -1,11 +1,10 @@ -using Content.Shared.Follower.Components; +using System.Numerics; using Content.Shared.Movement.Components; using Content.Shared.Movement.Systems; +using JetBrains.Annotations; using Robust.Client.GameObjects; -using Robust.Client.Graphics; using Robust.Client.Physics; using Robust.Client.Player; -using Robust.Shared.Collections; using Robust.Shared.Timing; namespace Content.Client.Eye; @@ -14,10 +13,12 @@ public sealed class EyeLerpingSystem : EntitySystem { [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly SharedEyeSystem _eye = default!; [Dependency] private readonly SharedMoverController _mover = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; // Convenience variable for for VV. - [ViewVariables] + [ViewVariables, UsedImplicitly] private IEnumerable ActiveEyes => EntityQuery(); public override void Initialize() @@ -26,14 +27,14 @@ public override void Initialize() SubscribeLocalEvent(OnEyeStartup); SubscribeLocalEvent(OnEyeShutdown); - SubscribeLocalEvent(OnAttached); + SubscribeLocalEvent(OnAttached); SubscribeLocalEvent(HandleMapChange); SubscribeLocalEvent(OnDetached); UpdatesAfter.Add(typeof(TransformSystem)); UpdatesAfter.Add(typeof(PhysicsSystem)); - UpdatesBefore.Add(typeof(EyeUpdateSystem)); + UpdatesBefore.Add(typeof(SharedEyeSystem)); UpdatesOutsidePrediction = true; } @@ -59,8 +60,14 @@ public void AddEye(EntityUid uid, EyeComponent? component = null, bool automatic lerpInfo.LastRotation = lerpInfo.TargetRotation; lerpInfo.ManuallyAdded |= !automatic; + lerpInfo.TargetZoom = component.Zoom; + lerpInfo.LastZoom = lerpInfo.TargetZoom; + if (component.Eye != null) - component.Eye.Rotation = lerpInfo.TargetRotation; + { + _eye.SetRotation(uid, lerpInfo.TargetRotation, component); + _eye.SetZoom(uid, lerpInfo.TargetZoom, component); + } } public void RemoveEye(EntityUid uid) @@ -82,9 +89,9 @@ private void HandleMapChange(EntityUid uid, LerpingEyeComponent component, ref E component.LastRotation = GetRotation(uid, args.Transform); } - private void OnAttached(EntityUid uid, EyeComponent component, PlayerAttachedEvent args) + private void OnAttached(ref EyeAttachedEvent ev) { - AddEye(uid, component, true); + AddEye(ev.Entity, ev.Component, true); } private void OnDetached(EntityUid uid, LerpingEyeComponent component, PlayerDetachedEvent args) @@ -107,9 +114,29 @@ public override void Update(float frameTime) { lerpInfo.LastRotation = lerpInfo.TargetRotation; lerpInfo.TargetRotation = GetRotation(uid, xform); + + lerpInfo.LastZoom = lerpInfo.TargetZoom; + lerpInfo.TargetZoom = UpdateZoom(uid, frameTime); } } + private Vector2 UpdateZoom(EntityUid uid, float frameTime, EyeComponent? eye = null, ContentEyeComponent? content = null) + { + if (!Resolve(uid, ref content, ref eye, false)) + return Vector2.One; + + var diff = content.TargetZoom - eye.Zoom; + + if (diff.LengthSquared() < 0.00001f) + { + return content.TargetZoom; + } + + var change = diff * 8f * frameTime; + + return eye.Zoom + change; + } + /// /// Does the eye need to lerp or is its rotation matched. /// @@ -138,7 +165,7 @@ private Angle GetRotation(EntityUid uid, TransformComponent? xform = null, Input // if not tied to a mover then lock it to map / grid var relative = xform.GridUid ?? xform.MapUid; if (relative != null) - return -Transform(relative.Value).WorldRotation; + return -_transform.GetWorldRotation(relative.Value); return Angle.Zero; } @@ -151,6 +178,19 @@ public override void FrameUpdate(float frameTime) while (query.MoveNext(out var entity, out var lerpInfo, out var eye, out var xform)) { + // Handle zoom + var zoomDiff = Vector2.Lerp(lerpInfo.LastZoom, lerpInfo.TargetZoom, tickFraction); + + if ((zoomDiff - lerpInfo.TargetZoom).Length() < lerpMinimum) + { + _eye.SetZoom(entity, lerpInfo.TargetZoom, eye); + } + else + { + _eye.SetZoom(entity, zoomDiff, eye); + } + + // Handle Rotation TryComp(entity, out var mover); // This needs to be recomputed every frame, as if this is simply the grid rotation, then we need to account for grid angle lerping. @@ -158,7 +198,7 @@ public override void FrameUpdate(float frameTime) if (!NeedsLerp(mover)) { - eye.Rotation = lerpInfo.TargetRotation; + _eye.SetRotation(entity, lerpInfo.TargetRotation, eye); continue; } @@ -166,11 +206,11 @@ public override void FrameUpdate(float frameTime) if (Math.Abs(shortest.Theta) < lerpMinimum) { - eye.Rotation = lerpInfo.TargetRotation; + _eye.SetRotation(entity, lerpInfo.TargetRotation, eye); continue; } - eye.Rotation = shortest * tickFraction + lerpInfo.LastRotation; + _eye.SetRotation(entity, shortest * tickFraction + lerpInfo.LastRotation, eye); } } } diff --git a/Content.Client/Eye/LerpingEyeComponent.cs b/Content.Client/Eye/LerpingEyeComponent.cs index e0c791196c0..b11cc0879e9 100644 --- a/Content.Client/Eye/LerpingEyeComponent.cs +++ b/Content.Client/Eye/LerpingEyeComponent.cs @@ -1,10 +1,12 @@ +using System.Numerics; + namespace Content.Client.Eye; /// /// Component for keeping track of client-side eye lerping. This component should only be added or removed via the . /// [RegisterComponent] -public sealed class LerpingEyeComponent : Component +public sealed partial class LerpingEyeComponent : Component { /// /// False if this eye was automatically added when a player was attached to this entity. @@ -16,4 +18,10 @@ public sealed class LerpingEyeComponent : Component [ViewVariables] public Angle TargetRotation; + + [ViewVariables] + public Vector2 LastZoom; + + [ViewVariables] + public Vector2 TargetZoom; } diff --git a/Content.Client/Fax/AdminUI/AdminFaxEui.cs b/Content.Client/Fax/AdminUI/AdminFaxEui.cs index 695c68e60dd..ace3f3eb7b3 100644 --- a/Content.Client/Fax/AdminUI/AdminFaxEui.cs +++ b/Content.Client/Fax/AdminUI/AdminFaxEui.cs @@ -14,8 +14,8 @@ public AdminFaxEui() { _window = new AdminFaxWindow(); _window.OnClose += () => SendMessage(new AdminFaxEuiMsg.Close()); - _window.OnFollowFax += uid => SendMessage(new AdminFaxEuiMsg.Follow(uid)); - _window.OnMessageSend += args => SendMessage(new AdminFaxEuiMsg.Send(args.uid, args.title, + _window.OnFollowFax += entity => SendMessage(new AdminFaxEuiMsg.Follow(entity)); + _window.OnMessageSend += args => SendMessage(new AdminFaxEuiMsg.Send(args.entity, args.title, args.stampedBy, args.message, args.stampSprite, args.stampColor)); } diff --git a/Content.Client/Fax/AdminUI/AdminFaxWindow.xaml.cs b/Content.Client/Fax/AdminUI/AdminFaxWindow.xaml.cs index 642d89b517b..c1fba483094 100644 --- a/Content.Client/Fax/AdminUI/AdminFaxWindow.xaml.cs +++ b/Content.Client/Fax/AdminUI/AdminFaxWindow.xaml.cs @@ -4,6 +4,7 @@ using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.CustomControls; using Robust.Client.UserInterface.XAML; +using Robust.Shared.ContentPack; using Robust.Shared.Utility; namespace Content.Client.Fax.AdminUI; @@ -13,8 +14,10 @@ public sealed partial class AdminFaxWindow : DefaultWindow { private const string StampsRsiPath = "/Textures/Objects/Misc/bureaucracy.rsi"; - public Action<(EntityUid uid, string title, string stampedBy, string message, string stampSprite, Color stampColor)>? OnMessageSend; - public Action? OnFollowFax; + public Action<(NetEntity entity, string title, string stampedBy, string message, string stampSprite, Color stampColor)>? OnMessageSend; + public Action? OnFollowFax; + + [Dependency] private readonly IResourceCache _resCache = default!; public AdminFaxWindow() { @@ -29,7 +32,8 @@ public AdminFaxWindow() SendButton.OnPressed += SendMessage; // Don't use this, but ColorSelectorSliders requires it: - StampColorSelector.OnColorChanged += (Color) => {}; + // what the fok + StampColorSelector.OnColorChanged += (color) => {}; var loc = IoCManager.Resolve(); MessageEdit.Placeholder = new Rope.Leaf(loc.GetString("admin-fax-message-placeholder")); // TextEdit work only with Nodes @@ -47,7 +51,7 @@ public void PopulateFaxes(List faxes) private void PopulateStamps() { - var rsi = IoCManager.Resolve().GetResource(StampsRsiPath).RSI; + var rsi = _resCache.GetResource(StampsRsiPath).RSI; using (var enumerator = rsi.GetEnumerator()) { var i = 0; @@ -67,17 +71,17 @@ private void PopulateStamps() private void FollowFax(BaseButton.ButtonEventArgs obj) { - var faxUid = (EntityUid?) FaxSelector.SelectedMetadata; - if (faxUid == null) + var faxEntity = (NetEntity?) FaxSelector.SelectedMetadata; + if (faxEntity == null) return; - OnFollowFax?.Invoke(faxUid.Value); + OnFollowFax?.Invoke(faxEntity.Value); } private void SendMessage(BaseButton.ButtonEventArgs obj) { - var faxUid = (EntityUid?) FaxSelector.SelectedMetadata; - if (faxUid == null) + var faxEntity = (NetEntity?) FaxSelector.SelectedMetadata; + if (faxEntity == null) return; var stamp = (string?) StampSelector.SelectedMetadata; @@ -94,6 +98,6 @@ private void SendMessage(BaseButton.ButtonEventArgs obj) var from = FromEdit.Text; var stampColor = StampColorSelector.Color; - OnMessageSend?.Invoke((faxUid.Value, title, from, message, stamp, stampColor)); + OnMessageSend?.Invoke((faxEntity.Value, title, from, message, stamp, stampColor)); } } diff --git a/Content.Client/Flash/FlashOverlay.cs b/Content.Client/Flash/FlashOverlay.cs index 8b80a8a6af1..433ee95e1cb 100644 --- a/Content.Client/Flash/FlashOverlay.cs +++ b/Content.Client/Flash/FlashOverlay.cs @@ -1,10 +1,10 @@ using System.Numerics; using Content.Client.Viewport; -using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.State; using Robust.Client.Player; using Robust.Shared.Enums; +using Robust.Shared.Graphics; using Robust.Shared.IoC; using Robust.Shared.Maths; using Robust.Shared.Prototypes; diff --git a/Content.Client/FlavorText/FlavorText.xaml b/Content.Client/FlavorText/FlavorText.xaml index f8377026864..37d4b5fda05 100644 --- a/Content.Client/FlavorText/FlavorText.xaml +++ b/Content.Client/FlavorText/FlavorText.xaml @@ -1,5 +1,5 @@  - + diff --git a/Content.Client/FlavorText/FlavorText.xaml.cs b/Content.Client/FlavorText/FlavorText.xaml.cs index f9eadca314e..ffcf653f119 100644 --- a/Content.Client/FlavorText/FlavorText.xaml.cs +++ b/Content.Client/FlavorText/FlavorText.xaml.cs @@ -1,6 +1,7 @@ using Robust.Client.AutoGenerated; using Robust.Client.UserInterface; using Robust.Client.UserInterface.XAML; +using Robust.Shared.Utility; namespace Content.Client.FlavorText { @@ -14,12 +15,14 @@ public FlavorText() RobustXamlLoader.Load(this); IoCManager.InjectDependencies(this); - CFlavorTextInput.OnTextChanged += _ => FlavorTextChanged(); + var loc = IoCManager.Resolve(); + CFlavorTextInput.Placeholder = new Rope.Leaf(loc.GetString("flavor-text-placeholder")); + CFlavorTextInput.OnKeyBindDown += _ => FlavorTextChanged(); } public void FlavorTextChanged() { - OnFlavorTextChanged?.Invoke(CFlavorTextInput.Text); + OnFlavorTextChanged?.Invoke(Rope.Collapse(CFlavorTextInput.TextRope).Trim()); } } } diff --git a/Content.Client/Fluids/PuddleDebugOverlaySystem.cs b/Content.Client/Fluids/PuddleDebugOverlaySystem.cs index 345e4b7fa64..cec372cb0b3 100644 --- a/Content.Client/Fluids/PuddleDebugOverlaySystem.cs +++ b/Content.Client/Fluids/PuddleDebugOverlaySystem.cs @@ -20,7 +20,7 @@ public override void Initialize() private void RenderDebugData(PuddleOverlayDebugMessage message) { - TileData[message.GridUid] = message; + TileData[GetEntity(message.GridUid)] = message; if (_overlay != null) return; diff --git a/Content.Client/Foldable/FoldableSystem.cs b/Content.Client/Foldable/FoldableSystem.cs deleted file mode 100644 index 4071f7cd3db..00000000000 --- a/Content.Client/Foldable/FoldableSystem.cs +++ /dev/null @@ -1,10 +0,0 @@ -using Content.Shared.Foldable; -using JetBrains.Annotations; - -namespace Content.Client.Foldable; - -[UsedImplicitly] -public sealed class FoldableSystem : SharedFoldableSystem -{ - // classic. -} diff --git a/Content.Client/GPS/Components/HandheldGPSComponent.cs b/Content.Client/GPS/Components/HandheldGPSComponent.cs index 987211ac34c..0f5271fd80c 100644 --- a/Content.Client/GPS/Components/HandheldGPSComponent.cs +++ b/Content.Client/GPS/Components/HandheldGPSComponent.cs @@ -3,7 +3,7 @@ namespace Content.Client.GPS.Components { [RegisterComponent] - public sealed class HandheldGPSComponent : SharedHandheldGPSComponent + public sealed partial class HandheldGPSComponent : SharedHandheldGPSComponent { } } diff --git a/Content.Client/GameTicking/Managers/ClientGameTicker.cs b/Content.Client/GameTicking/Managers/ClientGameTicker.cs index 5c255cd1939..dd07f78d94a 100644 --- a/Content.Client/GameTicking/Managers/ClientGameTicker.cs +++ b/Content.Client/GameTicking/Managers/ClientGameTicker.cs @@ -1,4 +1,3 @@ -using Content.Client.Audio; using Content.Client.Gameplay; using Content.Client.Lobby; using Content.Client.RoundEnd; @@ -8,7 +7,6 @@ using JetBrains.Annotations; using Robust.Client.Graphics; using Robust.Client.State; -using Robust.Shared.Audio; using Robust.Shared.Configuration; using Robust.Shared.Player; using Robust.Shared.Utility; @@ -21,12 +19,11 @@ public sealed class ClientGameTicker : SharedGameTicker [Dependency] private readonly IStateManager _stateManager = default!; [Dependency] private readonly IEntityManager _entityManager = default!; [Dependency] private readonly IConfigurationManager _configManager = default!; - [Dependency] private readonly BackgroundAudioSystem _backgroundAudio = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [ViewVariables] private bool _initialized; - private Dictionary> _jobsAvailable = new(); - private Dictionary _stationNames = new(); + private Dictionary> _jobsAvailable = new(); + private Dictionary _stationNames = new(); /// /// The current round-end window. Could be used to support re-opening the window after closing it. @@ -44,13 +41,14 @@ public sealed class ClientGameTicker : SharedGameTicker [ViewVariables] public TimeSpan RoundStartTimeSpan { get; private set; } [ViewVariables] public new bool Paused { get; private set; } - [ViewVariables] public IReadOnlyDictionary> JobsAvailable => _jobsAvailable; - [ViewVariables] public IReadOnlyDictionary StationNames => _stationNames; + [ViewVariables] public IReadOnlyDictionary> JobsAvailable => _jobsAvailable; + [ViewVariables] public IReadOnlyDictionary StationNames => _stationNames; public event Action? InfoBlobUpdated; public event Action? LobbyStatusUpdated; + public event Action? LobbySongUpdated; public event Action? LobbyLateJoinStatusUpdated; - public event Action>>? LobbyJobsAvailableUpdated; + public event Action>>? LobbyJobsAvailableUpdated; public override void Initialize() { @@ -73,6 +71,16 @@ public override void Initialize() _initialized = true; } + public void SetLobbySong(string? song, bool forceUpdate = false) + { + var updated = song != LobbySong; + + LobbySong = song; + + if (updated || forceUpdate) + LobbySongUpdated?.Invoke(); + } + private void LateJoinStatus(TickerLateJoinStatusEvent message) { DisallowedLateJoin = message.Disallowed; @@ -81,8 +89,18 @@ private void LateJoinStatus(TickerLateJoinStatusEvent message) private void UpdateJobsAvailable(TickerJobsAvailableEvent message) { - _jobsAvailable = message.JobsAvailableByStation; - _stationNames = message.StationNames; + foreach (var (job, data) in message.JobsAvailableByStation) + { + _jobsAvailable.Clear(); + _jobsAvailable[job] = data; + } + + _stationNames.Clear(); + foreach (var weh in message.StationNames) + { + _stationNames[weh.Key] = weh.Value; + } + LobbyJobsAvailableUpdated?.Invoke(JobsAvailable); } @@ -97,7 +115,7 @@ private void LobbyStatus(TickerLobbyStatusEvent message) RoundStartTimeSpan = message.RoundStartTimeSpan; IsGameStarted = message.IsRoundStarted; AreWeReady = message.YouAreReady; - LobbySong = message.LobbySong; + SetLobbySong(message.LobbySong); LobbyBackground = message.LobbyBackground; Paused = message.Paused; @@ -124,12 +142,8 @@ private void LobbyCountdown(TickerLobbyCountdownEvent message) private void RoundEnd(RoundEndMessageEvent message) { - if (message.LobbySong != null) - { - LobbySong = message.LobbySong; - _backgroundAudio.StartLobbyMusic(); - } - + // Force an update in the event of this song being the same as the last. + SetLobbySong(message.LobbySong, true); RestartSound = message.RestartSound; // Don't open duplicate windows (mainly for replays). diff --git a/Content.Client/Gameplay/GameplayStateBase.cs b/Content.Client/Gameplay/GameplayStateBase.cs index bd9d7b44997..87fe257cd08 100644 --- a/Content.Client/Gameplay/GameplayStateBase.cs +++ b/Content.Client/Gameplay/GameplayStateBase.cs @@ -174,9 +174,13 @@ protected virtual void OnKeyBindStateChanged(ViewportBoundKeyEventArgs args) EntityCoordinates.FromMap(_mapManager, mousePosWorld); } - var message = new FullInputCmdMessage(_timing.CurTick, _timing.TickFraction, funcId, kArgs.State, - coordinates , kArgs.PointerLocation, - entityToClick ?? default); // TODO make entityUid nullable + var message = new ClientFullInputCmdMessage(_timing.CurTick, _timing.TickFraction, funcId) + { + State = kArgs.State, + Coordinates = coordinates, + ScreenCoordinates = kArgs.PointerLocation, + Uid = entityToClick ?? default, + }; // TODO make entityUid nullable // client side command handlers will always be sent the local player session. var session = _playerManager.LocalPlayer?.Session; diff --git a/Content.Client/Gateway/UI/GatewayBoundUserInterface.cs b/Content.Client/Gateway/UI/GatewayBoundUserInterface.cs index 9478f0ab452..53b23272d42 100644 --- a/Content.Client/Gateway/UI/GatewayBoundUserInterface.cs +++ b/Content.Client/Gateway/UI/GatewayBoundUserInterface.cs @@ -20,7 +20,7 @@ protected override void Open() _window = new GatewayWindow(); _window.OpenPortal += destination => { - SendMessage(new GatewayOpenPortalMessage(destination)); + SendMessage(new GatewayOpenPortalMessage(EntMan.GetNetEntity(destination))); }; _window.OnClose += Close; _window?.OpenCentered(); diff --git a/Content.Client/Gateway/UI/GatewayWindow.xaml.cs b/Content.Client/Gateway/UI/GatewayWindow.xaml.cs index b070cf3176e..c20b5e1a703 100644 --- a/Content.Client/Gateway/UI/GatewayWindow.xaml.cs +++ b/Content.Client/Gateway/UI/GatewayWindow.xaml.cs @@ -16,10 +16,11 @@ namespace Content.Client.Gateway.UI; public sealed partial class GatewayWindow : FancyWindow, IComputerWindow { + private readonly IEntityManager _entManager; private readonly IGameTiming _timing; public event Action? OpenPortal; - private List<(EntityUid, string, TimeSpan, bool)> _destinations = default!; + private List<(NetEntity, string, TimeSpan, bool)> _destinations = default!; private EntityUid? _current; private TimeSpan _nextClose; private TimeSpan _lastOpen; @@ -29,13 +30,15 @@ public sealed partial class GatewayWindow : FancyWindow, public GatewayWindow() { RobustXamlLoader.Load(this); - _timing = IoCManager.Resolve(); + var dependencies = IoCManager.Instance!; + _entManager = dependencies.Resolve(); + _timing = dependencies.Resolve(); } public void UpdateState(GatewayBoundUserInterfaceState state) { _destinations = state.Destinations; - _current = state.Current; + _current = _entManager.GetEntity(state.Current); _nextClose = state.NextClose; _lastOpen = state.LastOpen; @@ -64,7 +67,7 @@ public void UpdateState(GatewayBoundUserInterfaceState state) var now = _timing.CurTime; foreach (var dest in _destinations) { - var uid = dest.Item1; + var uid = _entManager.GetEntity(dest.Item1); var name = dest.Item2; var nextReady = dest.Item3; var busy = dest.Item4; @@ -101,7 +104,7 @@ public void UpdateState(GatewayBoundUserInterfaceState state) OpenPortal?.Invoke(uid); }; - if (uid == state.Current) + if (uid == _entManager.GetEntity(state.Current)) { openButton.AddStyleClass(StyleBase.ButtonCaution); } diff --git a/Content.Client/Ghost/GhostComponent.cs b/Content.Client/Ghost/GhostComponent.cs deleted file mode 100644 index d1b02362e75..00000000000 --- a/Content.Client/Ghost/GhostComponent.cs +++ /dev/null @@ -1,50 +0,0 @@ -using Content.Shared.Actions; -using Content.Shared.Actions.ActionTypes; -using Content.Shared.Ghost; -using Robust.Shared.Utility; - -namespace Content.Client.Ghost -{ - [RegisterComponent] - [ComponentReference(typeof(SharedGhostComponent))] - public sealed class GhostComponent : SharedGhostComponent - { - public bool IsAttached { get; set; } - - public InstantAction ToggleLightingAction = new() - { - Icon = new SpriteSpecifier.Texture(new ("Interface/VerbIcons/light.svg.192dpi.png")), - DisplayName = "ghost-gui-toggle-lighting-manager-name", - Description = "ghost-gui-toggle-lighting-manager-desc", - ClientExclusive = true, - CheckCanInteract = false, - Event = new ToggleLightingActionEvent(), - }; - - public InstantAction ToggleFoVAction = new() - { - Icon = new SpriteSpecifier.Texture(new ("Interface/VerbIcons/vv.svg.192dpi.png")), - DisplayName = "ghost-gui-toggle-fov-name", - Description = "ghost-gui-toggle-fov-desc", - ClientExclusive = true, - CheckCanInteract = false, - Event = new ToggleFoVActionEvent(), - }; - - public InstantAction ToggleGhostsAction = new() - { - Icon = new SpriteSpecifier.Rsi(new ("Mobs/Ghosts/ghost_human.rsi"), "icon"), - DisplayName = "ghost-gui-toggle-ghost-visibility-name", - Description = "ghost-gui-toggle-ghost-visibility-desc", - ClientExclusive = true, - CheckCanInteract = false, - Event = new ToggleGhostsActionEvent(), - }; - } - - public sealed class ToggleLightingActionEvent : InstantActionEvent { }; - - public sealed class ToggleFoVActionEvent : InstantActionEvent { }; - - public sealed class ToggleGhostsActionEvent : InstantActionEvent { }; -} diff --git a/Content.Client/Ghost/GhostSystem.cs b/Content.Client/Ghost/GhostSystem.cs index 246c6af8b89..04fb1d2f46c 100644 --- a/Content.Client/Ghost/GhostSystem.cs +++ b/Content.Client/Ghost/GhostSystem.cs @@ -3,7 +3,6 @@ using Content.Shared.Actions; using Content.Shared.Ghost; using Content.Shared.Popups; -using JetBrains.Annotations; using Robust.Client.Console; using Robust.Client.GameObjects; using Robust.Client.Graphics; @@ -14,7 +13,6 @@ namespace Content.Client.Ghost { - [UsedImplicitly] public sealed class GhostSystem : SharedGhostSystem { [Dependency] private readonly IClientConsoleHost _console = default!; @@ -76,7 +74,7 @@ public override void Initialize() SubscribeLocalEvent(OnGhostInit); SubscribeLocalEvent(OnGhostRemove); - SubscribeLocalEvent(OnGhostState); + SubscribeLocalEvent(OnGhostState); SubscribeLocalEvent(OnGhostPlayerAttach); SubscribeLocalEvent(OnGhostPlayerDetach); @@ -93,14 +91,14 @@ public override void Initialize() private void OnGhostInit(EntityUid uid, GhostComponent component, ComponentInit args) { - if (TryComp(component.Owner, out SpriteComponent? sprite)) + if (TryComp(uid, out SpriteComponent? sprite)) { sprite.Visible = GhostVisibility; } - _actions.AddAction(uid, component.ToggleLightingAction, null); - _actions.AddAction(uid, component.ToggleFoVAction, null); - _actions.AddAction(uid, component.ToggleGhostsAction, null); + _actions.AddAction(uid, ref component.ToggleLightingActionEntity, component.ToggleGhostsAction); + _actions.AddAction(uid, ref component.ToggleFoVActionEntity, component.ToggleFoVAction); + _actions.AddAction(uid, ref component.ToggleGhostsActionEntity, component.ToggleGhostsAction); } private void OnToggleLighting(EntityUid uid, GhostComponent component, ToggleLightingActionEvent args) @@ -135,9 +133,9 @@ private void OnToggleGhosts(EntityUid uid, GhostComponent component, ToggleGhost private void OnGhostRemove(EntityUid uid, GhostComponent component, ComponentRemove args) { - _actions.RemoveAction(uid, component.ToggleLightingAction); - _actions.RemoveAction(uid, component.ToggleFoVAction); - _actions.RemoveAction(uid, component.ToggleGhostsAction); + _actions.RemoveAction(uid, component.ToggleLightingActionEntity); + _actions.RemoveAction(uid, component.ToggleFoVActionEntity); + _actions.RemoveAction(uid, component.ToggleGhostsActionEntity); if (uid != _playerManager.LocalPlayer?.ControlledEntity) return; @@ -162,7 +160,7 @@ private void OnGhostPlayerAttach(EntityUid uid, GhostComponent component, Player PlayerAttached?.Invoke(component); } - private void OnGhostState(EntityUid uid, GhostComponent component, ref ComponentHandleState args) + private void OnGhostState(EntityUid uid, GhostComponent component, ref AfterAutoHandleStateEvent args) { if (TryComp(uid, out var sprite)) sprite.LayerSetColor(0, component.color); diff --git a/Content.Client/Guidebook/Components/GuideHelpComponent.cs b/Content.Client/Guidebook/Components/GuideHelpComponent.cs index f333c873d6d..db19bb9dcc8 100644 --- a/Content.Client/Guidebook/Components/GuideHelpComponent.cs +++ b/Content.Client/Guidebook/Components/GuideHelpComponent.cs @@ -7,7 +7,7 @@ namespace Content.Client.Guidebook.Components; /// [RegisterComponent] [Access(typeof(GuidebookSystem))] -public sealed class GuideHelpComponent : Component +public sealed partial class GuideHelpComponent : Component { /// /// What guides to include show when opening the guidebook. The first entry will be used to select the currently diff --git a/Content.Client/Guidebook/Components/GuidebookControlsTestComponent.cs b/Content.Client/Guidebook/Components/GuidebookControlsTestComponent.cs index 21c6c0365e9..10330b292d1 100644 --- a/Content.Client/Guidebook/Components/GuidebookControlsTestComponent.cs +++ b/Content.Client/Guidebook/Components/GuidebookControlsTestComponent.cs @@ -4,7 +4,7 @@ /// This is used for the guidebook monkey. /// [RegisterComponent] -public sealed class GuidebookControlsTestComponent : Component +public sealed partial class GuidebookControlsTestComponent : Component { } diff --git a/Content.Client/Guidebook/Controls/GuideEntityEmbed.xaml.cs b/Content.Client/Guidebook/Controls/GuideEntityEmbed.xaml.cs index ee8b46efb07..8fd11dc19eb 100644 --- a/Content.Client/Guidebook/Controls/GuideEntityEmbed.xaml.cs +++ b/Content.Client/Guidebook/Controls/GuideEntityEmbed.xaml.cs @@ -37,11 +37,7 @@ public sealed partial class GuideEntityEmbed : BoxContainer, IDocumentTag public bool Interactive; - public SpriteComponent? Sprite - { - get => View.Sprite; - set => View.Sprite = value; - } + public SpriteComponent? Sprite => View.Sprite; public Vector2 Scale { @@ -64,7 +60,7 @@ public GuideEntityEmbed(string proto, bool caption, bool interactive) : this() Interactive = interactive; var ent = _entityManager.SpawnEntity(proto, MapCoordinates.Nullspace); - Sprite = _entityManager.GetComponent(ent); + View.SetEntity(ent); if (caption) Caption.Text = _entityManager.GetComponent(ent).EntityName; @@ -146,7 +142,7 @@ public bool TryParseTag(Dictionary args, [NotNullWhen(true)] out var ent = _entityManager.SpawnEntity(proto, MapCoordinates.Nullspace); _tagSystem.AddTag(ent, GuidebookSystem.GuideEmbedTag); - Sprite = _entityManager.GetComponent(ent); + View.SetEntity(ent); if (!args.TryGetValue("Caption", out var caption)) caption = _entityManager.GetComponent(ent).EntityName; diff --git a/Content.Client/Guidebook/GuidebookSystem.cs b/Content.Client/Guidebook/GuidebookSystem.cs index 6ed38ddef0f..8ef6f13e31d 100644 --- a/Content.Client/Guidebook/GuidebookSystem.cs +++ b/Content.Client/Guidebook/GuidebookSystem.cs @@ -3,7 +3,7 @@ using Content.Client.Light; using Content.Client.Verbs; using Content.Shared.Interaction; -using Content.Shared.Light.Component; +using Content.Shared.Light.Components; using Content.Shared.Speech; using Content.Shared.Tag; using Content.Shared.Verbs; diff --git a/Content.Client/Hands/ShowHandItemOverlay.cs b/Content.Client/Hands/ShowHandItemOverlay.cs index aa9ccbf4be6..3cb0cd58fff 100644 --- a/Content.Client/Hands/ShowHandItemOverlay.cs +++ b/Content.Client/Hands/ShowHandItemOverlay.cs @@ -7,7 +7,9 @@ using Robust.Client.UserInterface; using Robust.Shared.Configuration; using Robust.Shared.Enums; +using Robust.Shared.Graphics; using Robust.Shared.Map; +using Direction = Robust.Shared.Maths.Direction; namespace Content.Client.Hands { diff --git a/Content.Client/Hands/Systems/HandsSystem.cs b/Content.Client/Hands/Systems/HandsSystem.cs index 0cefbbcfaa6..773ec1491f8 100644 --- a/Content.Client/Hands/Systems/HandsSystem.cs +++ b/Content.Client/Hands/Systems/HandsSystem.cs @@ -47,8 +47,8 @@ public override void Initialize() SubscribeLocalEvent(HandlePlayerAttached); SubscribeLocalEvent(HandlePlayerDetached); - SubscribeLocalEvent(HandleCompAdd); - SubscribeLocalEvent(HandleCompRemove); + SubscribeLocalEvent(OnHandsStartup); + SubscribeLocalEvent(OnHandsShutdown); SubscribeLocalEvent(HandleComponentState); SubscribeLocalEvent(OnVisualsChanged); @@ -124,7 +124,7 @@ private void HandleComponentState(EntityUid uid, HandsComponent component, ref C #region PickupAnimation private void HandlePickupAnimation(PickupAnimationEvent msg) { - PickupAnimation(msg.ItemUid, msg.InitialPosition, msg.FinalPosition, msg.InitialAngle); + PickupAnimation(GetEntity(msg.ItemUid), GetCoordinates(msg.InitialPosition), msg.FinalPosition, msg.InitialAngle); } public override void PickupAnimation(EntityUid item, EntityCoordinates initialPosition, Vector2 finalPosition, Angle initialAngle, @@ -382,7 +382,7 @@ private void OnVisualsChanged(EntityUid uid, HandsComponent component, VisualsCh // update hands visuals if this item is in a hand (rather then inventory or other container). if (component.Hands.TryGetValue(args.ContainerId, out var hand)) { - UpdateHandVisuals(uid, args.Item, hand, component); + UpdateHandVisuals(uid, GetEntity(args.Item), hand, component); } } #endregion @@ -399,13 +399,13 @@ private void HandlePlayerDetached(EntityUid uid, HandsComponent component, Playe OnPlayerHandsRemoved?.Invoke(); } - private void HandleCompAdd(EntityUid uid, HandsComponent component, ComponentAdd args) + private void OnHandsStartup(EntityUid uid, HandsComponent component, ComponentStartup args) { if (_playerManager.LocalPlayer?.ControlledEntity == uid) OnPlayerHandsAdded?.Invoke(component); } - private void HandleCompRemove(EntityUid uid, HandsComponent component, ComponentRemove args) + private void OnHandsShutdown(EntityUid uid, HandsComponent component, ComponentShutdown args) { if (_playerManager.LocalPlayer?.ControlledEntity == uid) OnPlayerHandsRemoved?.Invoke(); diff --git a/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml.cs b/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml.cs index 2f5431e935e..a2f1a4dc5ac 100644 --- a/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml.cs +++ b/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml.cs @@ -24,13 +24,16 @@ public void Populate(HealthAnalyzerScannedUserMessage msg) { var text = new StringBuilder(); var entities = IoCManager.Resolve(); + var target = entities.GetEntity(msg.TargetEntity); - if (msg.TargetEntity != null && entities.TryGetComponent(msg.TargetEntity, out var damageable)) + if (msg.TargetEntity != null && entities.TryGetComponent(target, out var damageable)) { string entityName = "Unknown"; if (msg.TargetEntity != null && - entities.TryGetComponent(msg.TargetEntity.Value, out var metaData)) - entityName = Identity.Name(msg.TargetEntity.Value, entities); + entities.HasComponent(target.Value)) + { + entityName = Identity.Name(target.Value, entities); + } IReadOnlyDictionary damagePerGroup = damageable.DamagePerGroup; IReadOnlyDictionary damagePerType = damageable.Damage.DamageDict; diff --git a/Content.Client/Humanoid/HumanoidAppearanceSystem.cs b/Content.Client/Humanoid/HumanoidAppearanceSystem.cs index 05c9f2eb523..76f1aaaec8a 100644 --- a/Content.Client/Humanoid/HumanoidAppearanceSystem.cs +++ b/Content.Client/Humanoid/HumanoidAppearanceSystem.cs @@ -197,7 +197,7 @@ public override void LoadProfile(EntityUid uid, HumanoidCharacterProfile profile profile.Appearance.EyeColor, _markingManager); - DebugTools.Assert(uid.IsClientSide()); + DebugTools.Assert(IsClientSide(uid)); var state = new HumanoidAppearanceState(markings, new(), diff --git a/Content.Client/IconSmoothing/IconSmoothComponent.cs b/Content.Client/IconSmoothing/IconSmoothComponent.cs index 0ba77018905..88b1f613cb7 100644 --- a/Content.Client/IconSmoothing/IconSmoothComponent.cs +++ b/Content.Client/IconSmoothing/IconSmoothComponent.cs @@ -13,7 +13,7 @@ namespace Content.Client.IconSmoothing /// Any objects with the same key will connect. /// [RegisterComponent] - public sealed class IconSmoothComponent : Component + public sealed partial class IconSmoothComponent : Component { [ViewVariables(VVAccess.ReadWrite), DataField("enabled")] public bool Enabled = true; @@ -24,13 +24,13 @@ public sealed class IconSmoothComponent : Component /// We will smooth with other objects with the same key. /// [ViewVariables(VVAccess.ReadWrite), DataField("key")] - public string? SmoothKey { get; } + public string? SmoothKey { get; private set; } /// /// Prepended to the RSI state. /// [ViewVariables(VVAccess.ReadWrite), DataField("base")] - public string StateBase { get; } = string.Empty; + public string StateBase { get; private set; } = string.Empty; [DataField("shader", customTypeSerializer:typeof(PrototypeIdSerializer))] public string? Shader; diff --git a/Content.Client/Instruments/InstrumentComponent.cs b/Content.Client/Instruments/InstrumentComponent.cs index aab27888f64..74218f802f6 100644 --- a/Content.Client/Instruments/InstrumentComponent.cs +++ b/Content.Client/Instruments/InstrumentComponent.cs @@ -5,7 +5,7 @@ namespace Content.Client.Instruments; [RegisterComponent, ComponentReference(typeof(SharedInstrumentComponent))] -public sealed class InstrumentComponent : SharedInstrumentComponent +public sealed partial class InstrumentComponent : SharedInstrumentComponent { public event Action? OnMidiPlaybackEnded; diff --git a/Content.Client/Instruments/InstrumentSystem.cs b/Content.Client/Instruments/InstrumentSystem.cs index 02e3cf0da3c..0b969b6efde 100644 --- a/Content.Client/Instruments/InstrumentSystem.cs +++ b/Content.Client/Instruments/InstrumentSystem.cs @@ -54,10 +54,10 @@ private void OnShutdown(EntityUid uid, InstrumentComponent component, ComponentS public void SetMaster(EntityUid uid, EntityUid? masterUid) { - if (!TryComp(uid, out InstrumentComponent? instrument)) + if (!HasComp(uid)) return; - RaiseNetworkEvent(new InstrumentSetMasterEvent(uid, masterUid)); + RaiseNetworkEvent(new InstrumentSetMasterEvent(GetNetEntity(uid), GetNetEntity(masterUid))); } public void SetFilteredChannel(EntityUid uid, int channel, bool value) @@ -68,7 +68,7 @@ public void SetFilteredChannel(EntityUid uid, int channel, bool value) if(value) instrument.Renderer?.SendMidiEvent(RobustMidiEvent.AllNotesOff((byte)channel, 0), false); - RaiseNetworkEvent(new InstrumentSetFilteredChannelEvent(uid, channel, value)); + RaiseNetworkEvent(new InstrumentSetFilteredChannelEvent(GetNetEntity(uid), channel, value)); } public override void SetupRenderer(EntityUid uid, bool fromStateChange, SharedInstrumentComponent? component = null) @@ -109,7 +109,7 @@ public override void SetupRenderer(EntityUid uid, bool fromStateChange, SharedIn if (!fromStateChange) { - RaiseNetworkEvent(new InstrumentStartMidiEvent(uid)); + RaiseNetworkEvent(new InstrumentStartMidiEvent(GetNetEntity(uid))); } } @@ -189,7 +189,7 @@ public override void EndRenderer(EntityUid uid, bool fromStateChange, SharedInst if (!fromStateChange && _netManager.IsConnected) { - RaiseNetworkEvent(new InstrumentStopMidiEvent(uid)); + RaiseNetworkEvent(new InstrumentStopMidiEvent(GetNetEntity(uid))); } } @@ -282,7 +282,7 @@ private void OnMaxMidiEventsPerBatchChanged(int obj) private void OnMidiEventRx(InstrumentMidiEventEvent midiEv) { - var uid = midiEv.Uid; + var uid = GetEntity(midiEv.Uid); if (!TryComp(uid, out InstrumentComponent? instrument)) return; @@ -354,12 +354,12 @@ private void SendMidiEvents(IReadOnlyList midiEvents, Instrumen private void OnMidiStart(InstrumentStartMidiEvent ev) { - SetupRenderer(ev.Uid, true); + SetupRenderer(GetEntity(ev.Uid), true); } private void OnMidiStop(InstrumentStopMidiEvent ev) { - EndRenderer(ev.Uid, true); + EndRenderer(GetEntity(ev.Uid), true); } public override void Update(float frameTime) @@ -425,7 +425,7 @@ public override void Update(float frameTime) if (eventCount == 0) continue; - RaiseNetworkEvent(new InstrumentMidiEventEvent(uid, events)); + RaiseNetworkEvent(new InstrumentMidiEventEvent(GetNetEntity(uid), events)); instrument.SentWithinASec += eventCount; diff --git a/Content.Client/Instruments/UI/BandMenu.xaml.cs b/Content.Client/Instruments/UI/BandMenu.xaml.cs index a225fcdfd6e..5fb293a194d 100644 --- a/Content.Client/Instruments/UI/BandMenu.xaml.cs +++ b/Content.Client/Instruments/UI/BandMenu.xaml.cs @@ -32,12 +32,13 @@ private void OnItemSelected(ItemList.ItemListSelectedEventArgs args) Timer.Spawn(0, Close); } - public void Populate((EntityUid, string)[] nearby) + public void Populate((NetEntity, string)[] nearby, IEntityManager entManager) { BandList.Clear(); - foreach (var (uid, name) in nearby) + foreach (var (nent, name) in nearby) { + var uid = entManager.GetEntity(nent); var item = BandList.AddItem(name, null, true, uid); item.Selected = _owner.Instrument?.Master == uid; } diff --git a/Content.Client/Instruments/UI/InstrumentBoundUserInterface.cs b/Content.Client/Instruments/UI/InstrumentBoundUserInterface.cs index 23611c3fda6..2a846ff708a 100644 --- a/Content.Client/Instruments/UI/InstrumentBoundUserInterface.cs +++ b/Content.Client/Instruments/UI/InstrumentBoundUserInterface.cs @@ -10,15 +10,15 @@ namespace Content.Client.Instruments.UI { public sealed class InstrumentBoundUserInterface : BoundUserInterface { - [Dependency] public readonly IEntityManager Entities = default!; + public IEntityManager Entities => EntMan; [Dependency] public readonly IMidiManager MidiManager = default!; [Dependency] public readonly IFileDialogManager FileDialogManager = default!; [Dependency] public readonly IPlayerManager PlayerManager = default!; [Dependency] public readonly ILocalizationManager Loc = default!; - public readonly InstrumentSystem Instruments = default!; - public readonly ActionBlockerSystem ActionBlocker = default!; - public readonly SharedInteractionSystem Interactions = default!; + public readonly InstrumentSystem Instruments; + public readonly ActionBlockerSystem ActionBlocker; + public readonly SharedInteractionSystem Interactions; [ViewVariables] private InstrumentMenu? _instrumentMenu; [ViewVariables] private BandMenu? _bandMenu; @@ -40,7 +40,7 @@ protected override void ReceiveMessage(BoundUserInterfaceMessage message) switch (message) { case InstrumentBandResponseBuiMessage bandRx: - _bandMenu?.Populate(bandRx.Nearby); + _bandMenu?.Populate(bandRx.Nearby, EntMan); break; default: break; @@ -49,7 +49,7 @@ protected override void ReceiveMessage(BoundUserInterfaceMessage message) protected override void Open() { - if (!EntMan.TryGetComponent(Owner, out var instrument)) + if (!EntMan.TryGetComponent(Owner, out InstrumentComponent? instrument)) return; Instrument = instrument; diff --git a/Content.Client/Interactable/Components/InteractionOutlineComponent.cs b/Content.Client/Interactable/Components/InteractionOutlineComponent.cs index dd08e4ba092..9c72d763ff8 100644 --- a/Content.Client/Interactable/Components/InteractionOutlineComponent.cs +++ b/Content.Client/Interactable/Components/InteractionOutlineComponent.cs @@ -5,7 +5,7 @@ namespace Content.Client.Interactable.Components { [RegisterComponent] - public sealed class InteractionOutlineComponent : Component + public sealed partial class InteractionOutlineComponent : Component { [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IEntityManager _entMan = default!; diff --git a/Content.Client/Interactable/InteractionSystem.cs b/Content.Client/Interactable/InteractionSystem.cs index bb8ca89576b..cdfd3aa54fa 100644 --- a/Content.Client/Interactable/InteractionSystem.cs +++ b/Content.Client/Interactable/InteractionSystem.cs @@ -1,5 +1,5 @@ -using Content.Client.Storage; using Content.Shared.Interaction; +using Content.Shared.Storage; using Robust.Shared.Containers; namespace Content.Client.Interactable @@ -14,7 +14,7 @@ public override bool CanAccessViaStorage(EntityUid user, EntityUid target) if (!target.TryGetContainer(out var container)) return false; - if (!TryComp(container.Owner, out ClientStorageComponent? storage)) + if (!TryComp(container.Owner, out StorageComponent? storage)) return false; // we don't check if the user can access the storage entity itself. This should be handed by the UI system. diff --git a/Content.Client/Inventory/ClientInventorySystem.cs b/Content.Client/Inventory/ClientInventorySystem.cs index b454ad27a39..d6a487f3fd5 100644 --- a/Content.Client/Inventory/ClientInventorySystem.cs +++ b/Content.Client/Inventory/ClientInventorySystem.cs @@ -1,6 +1,5 @@ using Content.Client.Clothing; using Content.Client.Examine; -using Content.Client.Storage; using Content.Client.UserInterface.Controls; using Content.Client.Verbs.UI; using Content.Shared.Clothing.Components; @@ -9,6 +8,7 @@ using Content.Shared.Interaction.Events; using Content.Shared.Inventory; using Content.Shared.Inventory.Events; +using Content.Shared.Storage; using JetBrains.Annotations; using Robust.Client.GameObjects; using Robust.Client.Player; @@ -91,7 +91,7 @@ private void OnDidUnequip(InventorySlotsComponent component, DidUnequipEvent arg UpdateSlot(args.Equipee, component, args.Slot); if (args.Equipee != _playerManager.LocalPlayer?.ControlledEntity) return; - var update = new SlotSpriteUpdate(args.SlotGroup, args.Slot, null, false); + var update = new SlotSpriteUpdate(null, args.SlotGroup, args.Slot, false); OnSpriteUpdate?.Invoke(update); } @@ -100,9 +100,8 @@ private void OnDidEquip(InventorySlotsComponent component, DidEquipEvent args) UpdateSlot(args.Equipee, component, args.Slot); if (args.Equipee != _playerManager.LocalPlayer?.ControlledEntity) return; - var sprite = EntityManager.GetComponentOrNull(args.Equipment); - var update = new SlotSpriteUpdate(args.SlotGroup, args.Slot, sprite, - HasComp(args.Equipment)); + var update = new SlotSpriteUpdate(args.Equipment, args.SlotGroup, args.Slot, + HasComp(args.Equipment)); OnSpriteUpdate?.Invoke(update); } @@ -283,7 +282,7 @@ public void UIInventoryActivateItem(string slot, EntityUid uid) return; EntityManager.RaisePredictiveEvent( - new InteractInventorySlotEvent(item.Value, altInteract: false)); + new InteractInventorySlotEvent(GetNetEntity(item.Value), altInteract: false)); } public void UIInventoryAltActivateItem(string slot, EntityUid uid) @@ -291,7 +290,7 @@ public void UIInventoryAltActivateItem(string slot, EntityUid uid) if (!TryGetSlotEntity(uid, slot, out var item)) return; - EntityManager.RaisePredictiveEvent(new InteractInventorySlotEvent(item.Value, altInteract: true)); + EntityManager.RaisePredictiveEvent(new InteractInventorySlotEvent(GetNetEntity(item.Value), altInteract: true)); } public sealed class SlotData @@ -340,9 +339,9 @@ public static implicit operator SlotDefinition(SlotData s) } public readonly record struct SlotSpriteUpdate( + EntityUid? Entity, string Group, string Name, - SpriteComponent? Sprite, bool ShowStorage ); } diff --git a/Content.Client/Inventory/InventorySlotsComponent.cs b/Content.Client/Inventory/InventorySlotsComponent.cs index 91d03dd7155..d4667bcef33 100644 --- a/Content.Client/Inventory/InventorySlotsComponent.cs +++ b/Content.Client/Inventory/InventorySlotsComponent.cs @@ -5,7 +5,7 @@ namespace Content.Client.Inventory; /// [RegisterComponent] [Access(typeof(ClientInventorySystem))] -public sealed class InventorySlotsComponent : Component +public sealed partial class InventorySlotsComponent : Component { [ViewVariables] public readonly Dictionary SlotData = new (); diff --git a/Content.Client/Items/Components/ItemStatusComponent.cs b/Content.Client/Items/Components/ItemStatusComponent.cs deleted file mode 100644 index 6889ce31bca..00000000000 --- a/Content.Client/Items/Components/ItemStatusComponent.cs +++ /dev/null @@ -1,9 +0,0 @@ -using Robust.Shared.GameObjects; - -namespace Content.Client.Items.Components -{ - [RegisterComponent] - public sealed class ItemStatusComponent : Component - { - } -} diff --git a/Content.Client/Items/Systems/ItemSystem.cs b/Content.Client/Items/Systems/ItemSystem.cs index 7ddc7d6c6d2..e406ba2b557 100644 --- a/Content.Client/Items/Systems/ItemSystem.cs +++ b/Content.Client/Items/Systems/ItemSystem.cs @@ -44,7 +44,7 @@ public override void VisualsChanged(EntityUid uid) { // if the item is in a container, it might be equipped to hands or inventory slots --> update visuals. if (Container.TryGetContainingContainer(uid, out var container)) - RaiseLocalEvent(container.Owner, new VisualsChangedEvent(uid, container.ID)); + RaiseLocalEvent(container.Owner, new VisualsChangedEvent(GetNetEntity(uid), container.ID)); } /// diff --git a/Content.Client/Kitchen/UI/GrinderMenu.xaml.cs b/Content.Client/Kitchen/UI/GrinderMenu.xaml.cs index a2237e5f090..1822dd7fff0 100644 --- a/Content.Client/Kitchen/UI/GrinderMenu.xaml.cs +++ b/Content.Client/Kitchen/UI/GrinderMenu.xaml.cs @@ -57,7 +57,9 @@ public void UpdateState(ReagentGrinderInterfaceState state) ChamberContentBox.EjectButton.Disabled = state.ChamberContents.Length <= 0; GrindButton.Disabled = !state.CanGrind || !state.Powered; JuiceButton.Disabled = !state.CanJuice || !state.Powered; - RefreshContentsDisplay(state.ReagentQuantities, state.ChamberContents, state.HasBeakerIn); + + // TODO move this to a component state and ensure the net ids. + RefreshContentsDisplay(state.ReagentQuantities, _entityManager.GetEntityArray(state.ChamberContents), state.HasBeakerIn); } public void HandleMessage(BoundUserInterfaceMessage message) @@ -83,7 +85,7 @@ public void HandleMessage(BoundUserInterfaceMessage message) } } - private void RefreshContentsDisplay(IList? reagents, IReadOnlyList containedSolids, bool isBeakerAttached) + private void RefreshContentsDisplay(IList? reagents, IReadOnlyList containedSolids, bool isBeakerAttached) { //Refresh chamber contents _chamberVisualContents.Clear(); @@ -118,9 +120,11 @@ private void RefreshContentsDisplay(IList? reagents, I } else { - foreach (var reagent in reagents) + foreach (var (reagent, quantity) in reagents) { - var reagentName = _prototypeManager.TryIndex(reagent.ReagentId, out ReagentPrototype? proto) ? Loc.GetString($"{reagent.Quantity} {proto.LocalizedName}") : "???"; + var reagentName = _prototypeManager.TryIndex(reagent.Prototype, out ReagentPrototype? proto) + ? Loc.GetString($"{quantity} {proto.LocalizedName}") + : "???"; BeakerContentBox.BoxContents.AddItem(reagentName); } } diff --git a/Content.Client/Kitchen/UI/MicrowaveBoundUserInterface.cs b/Content.Client/Kitchen/UI/MicrowaveBoundUserInterface.cs index 87f77e24f7f..518fbe095e1 100644 --- a/Content.Client/Kitchen/UI/MicrowaveBoundUserInterface.cs +++ b/Content.Client/Kitchen/UI/MicrowaveBoundUserInterface.cs @@ -1,9 +1,11 @@ using Content.Shared.Chemistry.Components; +using Content.Shared.Chemistry.Reagent; using Content.Shared.Kitchen.Components; using JetBrains.Annotations; using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.UserInterface.Controls; +using Robust.Shared.Graphics; namespace Content.Client.Kitchen.UI { @@ -17,10 +19,13 @@ public sealed class MicrowaveBoundUserInterface : BoundUserInterface private readonly Dictionary _solids = new(); [ViewVariables] - private readonly Dictionary _reagents = new(); + private readonly Dictionary _reagents = new(); + + private IEntityManager _entManager; public MicrowaveBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { + _entManager = IoCManager.Resolve(); } protected override void Open() @@ -33,7 +38,7 @@ protected override void Open() _menu.EjectButton.OnPressed += _ => SendMessage(new MicrowaveEjectMessage()); _menu.IngredientsList.OnItemSelected += args => { - SendMessage(new MicrowaveEjectSolidIndexedMessage(_solids[args.ItemIndex])); + SendMessage(new MicrowaveEjectSolidIndexedMessage(EntMan.GetNetEntity(_solids[args.ItemIndex]))); }; _menu.OnCookTimeSelected += (args, buttonIndex) => @@ -56,7 +61,6 @@ protected override void Dispose(bool disposing) _menu?.Dispose(); } - protected override void UpdateState(BoundUserInterfaceState state) { base.UpdateState(state); @@ -66,7 +70,9 @@ protected override void UpdateState(BoundUserInterfaceState state) } _menu?.ToggleBusyDisableOverlayPanel(cState.IsMicrowaveBusy); - RefreshContentsDisplay(cState.ContainedSolids); + + // TODO move this to a component state and ensure the net ids. + RefreshContentsDisplay(_entManager.GetEntityArray(cState.ContainedSolids)); if (_menu == null) return; diff --git a/Content.Client/Kitchen/UI/ReagentGrinderBoundUserInterface.cs b/Content.Client/Kitchen/UI/ReagentGrinderBoundUserInterface.cs index c8c978d3135..39b85c261b3 100644 --- a/Content.Client/Kitchen/UI/ReagentGrinderBoundUserInterface.cs +++ b/Content.Client/Kitchen/UI/ReagentGrinderBoundUserInterface.cs @@ -74,7 +74,7 @@ public void EjectBeaker(BaseButton.ButtonEventArgs? _ = null) public void EjectChamberContent(EntityUid uid) { - SendMessage(new ReagentGrinderEjectChamberContentMessage(uid)); + SendMessage(new ReagentGrinderEjectChamberContentMessage(EntMan.GetNetEntity(uid))); } } } diff --git a/Content.Client/Kudzu/KudzuVisualizerComponent.cs b/Content.Client/Kudzu/KudzuVisualizerComponent.cs index 11ff2965b55..868f2841f8f 100644 --- a/Content.Client/Kudzu/KudzuVisualizerComponent.cs +++ b/Content.Client/Kudzu/KudzuVisualizerComponent.cs @@ -1,10 +1,10 @@ namespace Content.Client.Kudzu { [RegisterComponent] - public sealed class KudzuVisualsComponent : Component + public sealed partial class KudzuVisualsComponent : Component { [DataField("layer")] - public int Layer { get; } = 0; + public int Layer { get; private set; } = 0; } } diff --git a/Content.Client/LateJoin/LateJoinGui.cs b/Content.Client/LateJoin/LateJoinGui.cs index 55f172b197b..cb136af08d6 100644 --- a/Content.Client/LateJoin/LateJoinGui.cs +++ b/Content.Client/LateJoin/LateJoinGui.cs @@ -23,17 +23,18 @@ public sealed class LateJoinGui : DefaultWindow [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IClientConsoleHost _consoleHost = default!; [Dependency] private readonly IConfigurationManager _configManager = default!; + [Dependency] private readonly IEntityManager _entManager = default!; [Dependency] private readonly IEntitySystemManager _entitySystem = default!; [Dependency] private readonly JobRequirementsManager _jobRequirements = default!; - public event Action<(EntityUid, string)> SelectedId; + public event Action<(NetEntity, string)> SelectedId; private readonly ClientGameTicker _gameTicker; private readonly SpriteSystem _sprites; private readonly CrewManifestSystem _crewManifest; - private readonly Dictionary> _jobButtons = new(); - private readonly Dictionary> _jobCategories = new(); + private readonly Dictionary> _jobButtons = new(); + private readonly Dictionary> _jobCategories = new(); private readonly List _jobLists = new(); private readonly Control _base; @@ -255,9 +256,11 @@ private void RebuildUI() { jobButton.Disabled = true; - if (!string.IsNullOrEmpty(reason)) + if (!reason.IsEmpty) { - jobButton.ToolTip = reason; + var tooltip = new Tooltip(); + tooltip.SetMessage(reason); + jobButton.TooltipSupplier = _ => tooltip; } jobSelector.AddChild(new TextureRect @@ -280,7 +283,7 @@ private void RebuildUI() } } - private void JobsAvailableUpdated(IReadOnlyDictionary> _) + private void JobsAvailableUpdated(IReadOnlyDictionary> _) { RebuildUI(); } diff --git a/Content.Client/Lathe/UI/LatheBoundUserInterface.cs b/Content.Client/Lathe/UI/LatheBoundUserInterface.cs index ab44d0f5a2f..69e41d18855 100644 --- a/Content.Client/Lathe/UI/LatheBoundUserInterface.cs +++ b/Content.Client/Lathe/UI/LatheBoundUserInterface.cs @@ -10,13 +10,6 @@ public sealed class LatheBoundUserInterface : BoundUserInterface { [ViewVariables] private LatheMenu? _menu; - - [ViewVariables] - private LatheQueueMenu? _queueMenu; - - [ViewVariables] - private LatheMaterialsEjectionMenu? _materialsEjectionMenu; - public LatheBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { } @@ -26,26 +19,8 @@ protected override void Open() base.Open(); _menu = new LatheMenu(this); - _queueMenu = new LatheQueueMenu(); - _materialsEjectionMenu = new LatheMaterialsEjectionMenu(); - _menu.OnClose += Close; - _menu.OnQueueButtonPressed += _ => - { - if (_queueMenu.IsOpen) - _queueMenu.Close(); - else - _queueMenu.OpenCenteredLeft(); - }; - - _menu.OnMaterialsEjectionButtonPressed += _ => - { - if (_materialsEjectionMenu.IsOpen) - _materialsEjectionMenu.Close(); - else - _materialsEjectionMenu.OpenCenteredRight(); - }; _menu.OnServerListButtonPressed += _ => { @@ -57,7 +32,7 @@ protected override void Open() SendMessage(new LatheQueueRecipeMessage(recipe, amount)); }; - _materialsEjectionMenu.OnEjectPressed += (material, sheetsToExtract) => + _menu.OnEjectPressed += (material, sheetsToExtract) => { SendMessage(new LatheEjectMaterialMessage(material, sheetsToExtract)); }; @@ -76,9 +51,8 @@ protected override void UpdateState(BoundUserInterfaceState state) _menu.Recipes = msg.Recipes; _menu?.PopulateRecipes(Owner); _menu?.PopulateMaterials(Owner); - _queueMenu?.PopulateList(msg.Queue); - _queueMenu?.SetInfo(msg.CurrentlyProducing); - _materialsEjectionMenu?.PopulateMaterials(Owner); + _menu?.PopulateQueueList(msg.Queue); + _menu?.SetQueueInfo(msg.CurrentlyProducing); break; } } @@ -89,8 +63,7 @@ protected override void Dispose(bool disposing) if (!disposing) return; _menu?.Dispose(); - _queueMenu?.Dispose(); - _materialsEjectionMenu?.Dispose(); + //thom _materialsEjectionMenu?.Dispose(); } } } diff --git a/Content.Client/Lathe/UI/LatheMaterialEjector.xaml b/Content.Client/Lathe/UI/LatheMaterialEjector.xaml index 713b49aa5c8..08c7da53020 100644 --- a/Content.Client/Lathe/UI/LatheMaterialEjector.xaml +++ b/Content.Client/Lathe/UI/LatheMaterialEjector.xaml @@ -14,7 +14,7 @@ Access="Public" HorizontalExpand="True" ClipText="True" - Margin="0 4 0 0"/> + Margin="4 4 4 4"/> diff --git a/Content.Client/Lathe/UI/LatheMaterialEjector.xaml.cs b/Content.Client/Lathe/UI/LatheMaterialEjector.xaml.cs index 090a189c71c..faa397a5942 100644 --- a/Content.Client/Lathe/UI/LatheMaterialEjector.xaml.cs +++ b/Content.Client/Lathe/UI/LatheMaterialEjector.xaml.cs @@ -1,3 +1,4 @@ +using Content.Client.Stylesheets; using Content.Shared.Materials; using Robust.Client.AutoGenerated; using Robust.Client.UserInterface; @@ -10,7 +11,6 @@ namespace Content.Client.Lathe.UI; /// /// This widget is one row in the lathe eject menu. /// - [GenerateTypedNameReferences] public sealed partial class LatheMaterialEjector : PanelContainer { @@ -34,19 +34,28 @@ public LatheMaterialEjector(string material, Action? onEjectPressed public void PopulateButtons(int maxEjectableSheets) { - int[] sheetsToEjectArray = { 1, 5, 10, 30 }; + int[] sheetsToEjectArray = { 1, 5, 10 }; - foreach (int sheetsToEject in sheetsToEjectArray) + for (var i = 0; i < sheetsToEjectArray.Length; i++) { - var button = new Button() + var sheetsToEject = sheetsToEjectArray[i]; + + var styleClass = StyleBase.ButtonOpenBoth; + if (i == 0) + styleClass = StyleBase.ButtonOpenRight; + else if (i == sheetsToEjectArray.Length - 1) + styleClass = StyleBase.ButtonOpenLeft; + + var button = new Button { Name = $"{sheetsToEject}", Access = AccessLevel.Public, Text = Loc.GetString($"{sheetsToEject}"), MinWidth = 45, + StyleClasses = { styleClass } }; - button.OnPressed += (_) => + button.OnPressed += _ => { OnEjectPressed?.Invoke(Material, sheetsToEject); }; @@ -55,7 +64,7 @@ public void PopulateButtons(int maxEjectableSheets) if (_prototypeManager.TryIndex(Material, out var proto)) { - button.ToolTip = Loc.GetString("lathe-menu-tooltip-display", ("amount", sheetsToEject * VolumePerSheet), ("material", Loc.GetString(proto.Name))); + button.ToolTip = Loc.GetString("lathe-menu-tooltip-display", ("amount", sheetsToEject), ("material", Loc.GetString(proto.Name))); } Content.AddChild(button); diff --git a/Content.Client/Lathe/UI/LatheMaterialsEjectionMenu.xaml b/Content.Client/Lathe/UI/LatheMaterialsEjectionMenu.xaml deleted file mode 100644 index be5eb1c7ef9..00000000000 --- a/Content.Client/Lathe/UI/LatheMaterialsEjectionMenu.xaml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - diff --git a/Content.Client/Lathe/UI/LatheMaterialsEjectionMenu.xaml.cs b/Content.Client/Lathe/UI/LatheMaterialsEjectionMenu.xaml.cs deleted file mode 100644 index 4db470c1159..00000000000 --- a/Content.Client/Lathe/UI/LatheMaterialsEjectionMenu.xaml.cs +++ /dev/null @@ -1,74 +0,0 @@ -using Content.Shared.Materials; -using Robust.Client.AutoGenerated; -using Robust.Client.GameObjects; -using Robust.Client.UserInterface.CustomControls; -using Robust.Client.UserInterface.XAML; -using Robust.Shared.Prototypes; -using System.Linq; - -namespace Content.Client.Lathe.UI; - -[GenerateTypedNameReferences] -public sealed partial class LatheMaterialsEjectionMenu : DefaultWindow -{ - [Dependency] private readonly IEntityManager _entityManager = default!; - [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - - private readonly SpriteSystem _spriteSystem; - - public event Action? OnEjectPressed; - - public LatheMaterialsEjectionMenu() - { - RobustXamlLoader.Load(this); - IoCManager.InjectDependencies(this); - _spriteSystem = _entityManager.EntitySysManager.GetEntitySystem(); - } - - public void PopulateMaterials(EntityUid lathe) - { - if (!_entityManager.TryGetComponent(lathe, out var materials)) - return; - - MaterialsList.DisposeAllChildren(); - - foreach (var (materialId, volume) in materials.Storage) - { - if (volume <= 0) - continue; - - if (!_prototypeManager.TryIndex(materialId, out MaterialPrototype? material)) - continue; - - var name = Loc.GetString(material.Name); - int volumePerSheet = 0; - int maxEjectableSheets = 0; - - if (material.StackEntity != null) - { - var proto = _prototypeManager.Index(material.StackEntity); - name = proto.Name; - - if (proto.TryGetComponent(out var composition)) - { - volumePerSheet = composition.MaterialComposition.FirstOrDefault(kvp => kvp.Key == materialId).Value; - maxEjectableSheets = (int) MathF.Floor(volume / volumePerSheet); - } - } - - var row = new LatheMaterialEjector(materialId, OnEjectPressed, volumePerSheet, maxEjectableSheets) - { - Icon = { Texture = _spriteSystem.Frame0(material.Icon) }, - ProductName = { Text = name } - }; - - MaterialsList.AddChild(row); - } - - if (MaterialsList.ChildCount == 0) - { - Close(); - } - } -} - diff --git a/Content.Client/Lathe/UI/LatheMenu.xaml b/Content.Client/Lathe/UI/LatheMenu.xaml index a496fa9e50e..539c08d6528 100644 --- a/Content.Client/Lathe/UI/LatheMenu.xaml +++ b/Content.Client/Lathe/UI/LatheMenu.xaml @@ -2,91 +2,151 @@ xmlns="https://spacestation14.io" xmlns:gfx="clr-namespace:Robust.Client.Graphics;assembly=Robust.Client" Title="{Loc 'lathe-menu-title'}" - MinSize="300 450" - SetSize="350 475"> + MinSize="550 450" + SetSize="750 500"> + - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + - - - - - - + + + + + + + + + + + + + + - - - + + diff --git a/Content.Client/Lathe/UI/LatheMenu.xaml.cs b/Content.Client/Lathe/UI/LatheMenu.xaml.cs index d8d0a8c0ab3..1fd7c78ea40 100644 --- a/Content.Client/Lathe/UI/LatheMenu.xaml.cs +++ b/Content.Client/Lathe/UI/LatheMenu.xaml.cs @@ -1,6 +1,6 @@ using System.Linq; using System.Text; -using Content.Client.Stylesheets; +using Content.Shared.FixedPoint; using Content.Shared.Lathe; using Content.Shared.Materials; using Content.Shared.Research.Prototypes; @@ -21,13 +21,16 @@ public sealed partial class LatheMenu : DefaultWindow private readonly SpriteSystem _spriteSystem; private readonly LatheSystem _lathe; - public event Action? OnQueueButtonPressed; - public event Action? OnMaterialsEjectionButtonPressed; public event Action? OnServerListButtonPressed; public event Action? RecipeQueueAction; - + public event Action? OnEjectPressed; public List Recipes = new(); + /// + /// Default volume for a sheet if the material's entity prototype has no material composition. + /// + private const int DEFAULT_SHEET_VOLUME = 100; + public LatheMenu(LatheBoundUserInterface owner) { RobustXamlLoader.Load(this); @@ -47,8 +50,6 @@ public LatheMenu(LatheBoundUserInterface owner) PopulateRecipes(owner.Owner); }; - QueueButton.OnPressed += a => OnQueueButtonPressed?.Invoke(a); - MaterialsEjectionButton.OnPressed += a => OnMaterialsEjectionButtonPressed?.Invoke(a); ServerListButton.OnPressed += a => OnServerListButtonPressed?.Invoke(a); if (_entityManager.TryGetComponent(owner.Owner, out var latheComponent)) @@ -56,13 +57,6 @@ public LatheMenu(LatheBoundUserInterface owner) if (!latheComponent.DynamicRecipes.Any()) { ServerListButton.Visible = false; - QueueButton.RemoveStyleClass(StyleBase.ButtonOpenRight); - //QueueButton.AddStyleClass(StyleBase.ButtonSquare); - } - - if (MaterialsEjectionButton != null && !latheComponent.CanEjectStoredMaterials) - { - MaterialsEjectionButton.Dispose(); } } } @@ -72,37 +66,43 @@ public void PopulateMaterials(EntityUid lathe) if (!_entityManager.TryGetComponent(lathe, out var materials)) return; - Materials.Clear(); + MaterialsList.DisposeAllChildren(); - foreach (var (id, amount) in materials.Storage) + foreach (var (materialId, volume) in materials.Storage) { - if (amount <= 0) + if (volume <= 0) continue; - if (!_prototypeManager.TryIndex(id, out MaterialPrototype? material)) + if (!_prototypeManager.TryIndex(materialId, out MaterialPrototype? material)) continue; + var sheetVolume = SheetVolume(material); + var sheets = (float) volume / sheetVolume; + var maxEjectableSheets = (int) MathF.Floor(sheets); + + var unit = Loc.GetString(material.Unit); + var amountText = Loc.GetString("lathe-menu-material-amount", ("amount", sheets), ("unit", unit)); var name = Loc.GetString(material.Name); - var mat = Loc.GetString("lathe-menu-material-display", - ("material", name), ("amount", amount)); + var mat = Loc.GetString("lathe-menu-material-display", ("material", name), ("amount", amountText)); - Materials.AddItem(mat, _spriteSystem.Frame0(material.Icon), false); - } + var row = new LatheMaterialEjector(materialId, OnEjectPressed, sheetVolume, maxEjectableSheets) + { + Icon = { Texture = _spriteSystem.Frame0(material.Icon) }, + ProductName = { Text = mat } + }; - if (MaterialsEjectionButton != null) - { - MaterialsEjectionButton.Disabled = Materials.Count == 0; + MaterialsList.AddChild(row); } - if (Materials.Count == 0) + if (MaterialsList.ChildCount == 0) { var noMaterialsMsg = Loc.GetString("lathe-menu-no-materials-message"); - Materials.AddItem(noMaterialsMsg, null, false); + var noItemRow = new Label(); + noItemRow.Text = noMaterialsMsg; + noItemRow.Align = Label.AlignMode.Center; + MaterialsList.AddChild(noItemRow); } - - PopulateRecipes(lathe); } - /// /// Populates the list of all the recipes /// @@ -148,8 +148,14 @@ public void PopulateRecipes(EntityUid lathe) sb.Append('\n'); var adjustedAmount = SharedLatheSystem.AdjustMaterial(amount, prototype.ApplyMaterialDiscount, component.MaterialUseMultiplier); - - sb.Append(Loc.GetString("lathe-menu-tooltip-display", ("amount", adjustedAmount), ("material", Loc.GetString(proto.Name)))); + var sheetVolume = SheetVolume(proto); + + var unit = Loc.GetString(proto.Unit); + // rounded in locale not here + var sheets = adjustedAmount / (float) sheetVolume; + var amountText = Loc.GetString("lathe-menu-material-amount", ("amount", sheets), ("unit", unit)); + var name = Loc.GetString(proto.Name); + sb.Append(Loc.GetString("lathe-menu-tooltip-display", ("material", name), ("amount", amountText))); } var icon = prototype.Icon == null @@ -167,4 +173,46 @@ public void PopulateRecipes(EntityUid lathe) RecipeList.AddChild(control); } } + + /// + /// Populates the build queue list with all queued items + /// + /// + public void PopulateQueueList(List queue) + { + QueueList.Clear(); + var idx = 1; + foreach (var recipe in queue) + { + var icon = recipe.Icon == null + ? _spriteSystem.GetPrototypeIcon(recipe.Result).Default + : _spriteSystem.Frame0(recipe.Icon); + QueueList.AddItem($"{idx}. {recipe.Name}", icon); + idx++; + } + } + + public void SetQueueInfo(LatheRecipePrototype? recipe) + { + FabricatingContainer.Visible = recipe != null; + if (recipe == null) + return; + Icon.Texture = recipe.Icon == null + ? _spriteSystem.GetPrototypeIcon(recipe.Result).Default + : _spriteSystem.Frame0(recipe.Icon); + NameLabel.Text = $"{recipe.Name}"; + } + + private int SheetVolume(MaterialPrototype material) + { + if (material.StackEntity == null) + return DEFAULT_SHEET_VOLUME; + + var proto = _prototypeManager.Index(material.StackEntity); + + if (!proto.TryGetComponent(out var composition)) + return DEFAULT_SHEET_VOLUME; + + return composition.MaterialComposition.FirstOrDefault(kvp => kvp.Key == material.ID).Value; + } } diff --git a/Content.Client/Lathe/UI/LatheQueueMenu.xaml b/Content.Client/Lathe/UI/LatheQueueMenu.xaml deleted file mode 100644 index a92a0a18a17..00000000000 --- a/Content.Client/Lathe/UI/LatheQueueMenu.xaml +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/Content.Client/Lathe/UI/LatheQueueMenu.xaml.cs b/Content.Client/Lathe/UI/LatheQueueMenu.xaml.cs deleted file mode 100644 index eaf03c2fffa..00000000000 --- a/Content.Client/Lathe/UI/LatheQueueMenu.xaml.cs +++ /dev/null @@ -1,57 +0,0 @@ -using Content.Shared.Research.Prototypes; -using Robust.Client.AutoGenerated; -using Robust.Client.GameObjects; -using Robust.Client.Graphics; -using Robust.Client.UserInterface.CustomControls; -using Robust.Client.UserInterface.XAML; - -namespace Content.Client.Lathe.UI -{ - [GenerateTypedNameReferences] - public sealed partial class LatheQueueMenu : DefaultWindow - { - [Dependency] private readonly IEntityManager _entityManager = default!; - private readonly SpriteSystem _spriteSystem; - - public LatheQueueMenu() - { - RobustXamlLoader.Load(this); - IoCManager.InjectDependencies(this); - _spriteSystem = _entityManager.EntitySysManager.GetEntitySystem(); - - SetInfo(null); - } - - public void SetInfo(LatheRecipePrototype? recipe) - { - if (recipe != null) - { - Icon.Texture = recipe.Icon == null - ? _spriteSystem.GetPrototypeIcon(recipe.Result).Default - : _spriteSystem.Frame0(recipe.Icon); - NameLabel.Text = recipe.Name; - Description.Text = recipe.Description; - } - else - { - Icon.Texture = Texture.Transparent; - NameLabel.Text = string.Empty; - Description.Text = Loc.GetString("lathe-queue-menu-not-producing-text"); - } - } - - public void PopulateList(List queue) - { - QueueList.Clear(); - var idx = 1; - foreach (var recipe in queue) - { - var icon =recipe.Icon == null - ? _spriteSystem.GetPrototypeIcon(recipe.Result).Default - : _spriteSystem.Frame0(recipe.Icon); - QueueList.AddItem($"{idx}. {recipe.Name}", icon); - idx++; - } - } - } -} diff --git a/Content.Client/Lathe/UI/RecipeControl.xaml b/Content.Client/Lathe/UI/RecipeControl.xaml index cacbf84ff72..2e02c8a6147 100644 --- a/Content.Client/Lathe/UI/RecipeControl.xaml +++ b/Content.Client/Lathe/UI/RecipeControl.xaml @@ -2,7 +2,6 @@ [RegisterComponent] -public sealed class ExpendableLightComponent : SharedExpendableLightComponent +public sealed partial class ExpendableLightComponent : SharedExpendableLightComponent { /// /// The icon state used by expendable lights when the they have been completely expended. diff --git a/Content.Client/Light/Components/HandheldLightComponent.cs b/Content.Client/Light/Components/HandheldLightComponent.cs index f140f831247..033c45a2062 100644 --- a/Content.Client/Light/Components/HandheldLightComponent.cs +++ b/Content.Client/Light/Components/HandheldLightComponent.cs @@ -1,6 +1,6 @@ using System.Numerics; using Content.Shared.Light; -using Content.Shared.Light.Component; +using Content.Shared.Light.Components; using Robust.Client.Graphics; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; diff --git a/Content.Client/Light/Components/LightBehaviourComponent.cs b/Content.Client/Light/Components/LightBehaviourComponent.cs index 6e4c26df532..a89ddda1089 100644 --- a/Content.Client/Light/Components/LightBehaviourComponent.cs +++ b/Content.Client/Light/Components/LightBehaviourComponent.cs @@ -1,5 +1,5 @@ using System.Linq; -using Content.Shared.Light.Component; +using Content.Shared.Light.Components; using JetBrains.Annotations; using Robust.Client.Animations; using Robust.Client.GameObjects; @@ -16,7 +16,7 @@ namespace Content.Client.Light.Components /// [Serializable] [ImplicitDataDefinitionForInheritors] - public abstract class LightBehaviourAnimationTrack : AnimationTrackProperty + public abstract partial class LightBehaviourAnimationTrack : AnimationTrackProperty { protected IEntityManager _entMan = default!; protected IRobustRandom _random = default!; @@ -53,7 +53,7 @@ public void Initialize(EntityUid parent, IRobustRandom random, IEntityManager en if (Enabled && _entMan.TryGetComponent(_parent, out PointLightComponent? light)) { - light.Enabled = true; + _entMan.System().SetEnabled(_parent, true, light); } OnInitialize(); @@ -63,7 +63,7 @@ public void UpdatePlaybackValues(Animation owner) { if (_entMan.TryGetComponent(_parent, out PointLightComponent? light)) { - light.Enabled = true; + _entMan.System().SetEnabled(_parent, true, light); } if (MinDuration > 0) @@ -111,7 +111,7 @@ public virtual void OnStart() { } /// A light behaviour that alternates between StartValue and EndValue /// [UsedImplicitly] - public sealed class PulseBehaviour : LightBehaviourAnimationTrack + public sealed partial class PulseBehaviour : LightBehaviourAnimationTrack { public override (int KeyFrameIndex, float FramePlayingTime) AdvancePlayback( object context, int prevKeyFrameIndex, float prevPlayingTime, float frameTime) @@ -166,7 +166,7 @@ public override (int KeyFrameIndex, float FramePlayingTime) AdvancePlayback( /// A light behaviour that interpolates from StartValue to EndValue /// [UsedImplicitly] - public sealed class FadeBehaviour : LightBehaviourAnimationTrack + public sealed partial class FadeBehaviour : LightBehaviourAnimationTrack { /// /// Automatically reverse the animation when EndValue is reached. In this particular case, MaxTime specifies the @@ -229,7 +229,7 @@ private void ApplyInterpolation(float start, float end, float interpolateValue) /// A light behaviour that interpolates using random values chosen between StartValue and EndValue. /// [UsedImplicitly] - public sealed class RandomizeBehaviour : LightBehaviourAnimationTrack + public sealed partial class RandomizeBehaviour : LightBehaviourAnimationTrack { private float _randomValue1; private float _randomValue2; @@ -295,7 +295,7 @@ public override (int KeyFrameIndex, float FramePlayingTime) AdvancePlayback( /// [UsedImplicitly] [DataDefinition] - public sealed class ColorCycleBehaviour : LightBehaviourAnimationTrack, ISerializationHooks + public sealed partial class ColorCycleBehaviour : LightBehaviourAnimationTrack, ISerializationHooks { [DataField("property")] public override string Property { get; protected set; } = "Color"; @@ -357,7 +357,7 @@ void ISerializationHooks.AfterDeserialization() /// A component which applies a specific behaviour to a PointLightComponent on its owner. /// [RegisterComponent] - public sealed class LightBehaviourComponent : SharedLightBehaviourComponent, ISerializationHooks + public sealed partial class LightBehaviourComponent : SharedLightBehaviourComponent, ISerializationHooks { [Dependency] private readonly IEntityManager _entMan = default!; [Dependency] private readonly IRobustRandom _random = default!; @@ -381,7 +381,7 @@ public AnimationContainer(int key, Animation animation, LightBehaviourAnimationT [ViewVariables(VVAccess.ReadOnly)] [DataField("behaviours")] - public readonly List Behaviours = new(); + public List Behaviours = new(); [ViewVariables(VVAccess.ReadOnly)] public readonly List Animations = new(); diff --git a/Content.Client/Light/Components/LightFadeComponent.cs b/Content.Client/Light/Components/LightFadeComponent.cs index 3327c9432ec..de31dd90e5e 100644 --- a/Content.Client/Light/Components/LightFadeComponent.cs +++ b/Content.Client/Light/Components/LightFadeComponent.cs @@ -4,7 +4,7 @@ namespace Content.Client.Light.Components; /// Fades out the attached to this entity. /// [RegisterComponent] -public sealed class LightFadeComponent : Component +public sealed partial class LightFadeComponent : Component { [ViewVariables(VVAccess.ReadWrite), DataField("duration")] public float Duration = 0.5f; diff --git a/Content.Client/Light/EmergencyLightSystem.cs b/Content.Client/Light/EmergencyLightSystem.cs deleted file mode 100644 index 34f2b9bf05b..00000000000 --- a/Content.Client/Light/EmergencyLightSystem.cs +++ /dev/null @@ -1,89 +0,0 @@ -using System; -using Content.Client.Light.Components; -using Content.Shared.Light; -using Content.Shared.Light.Component; -using Robust.Client.Animations; -using Robust.Client.GameObjects; -using Robust.Shared.Animations; -using Robust.Shared.GameObjects; -using Robust.Shared.GameStates; -using Robust.Shared.Maths; - -namespace Content.Client.Light -{ - public sealed class EmergencyLightSystem : SharedEmergencyLightSystem - { - private const float DegreesPerSecond = 90; - private static Animation Animation => - new() - { - Length = TimeSpan.FromSeconds(360f/ DegreesPerSecond), - AnimationTracks = - { - new AnimationTrackComponentProperty - { - ComponentType = typeof(PointLightComponent), - InterpolationMode = AnimationInterpolationMode.Linear, - Property = nameof(PointLightComponent.Rotation), - KeyFrames = - { - new AnimationTrackProperty.KeyFrame(Angle.Zero, 0), - new AnimationTrackProperty.KeyFrame(Angle.FromDegrees(120), 120f/DegreesPerSecond), - new AnimationTrackProperty.KeyFrame(Angle.FromDegrees(240), 120f/DegreesPerSecond), - new AnimationTrackProperty.KeyFrame(Angle.FromDegrees(360), 120f/DegreesPerSecond) - } - } - } - }; - - private const string AnimKey = "emergency"; - - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(HandleStartup); - SubscribeLocalEvent(HandleAnimationComplete); - SubscribeLocalEvent(HandleCompState); - } - - private void HandleCompState(EntityUid uid, EmergencyLightComponent component, ref ComponentHandleState args) - { - if (args.Current is not EmergencyLightComponentState state) return; - - if (component.Enabled == state.Enabled) return; - - var playerComponent = component.Owner.EnsureComponent(); - - component.Enabled = state.Enabled; - - if (component.Enabled && !playerComponent.HasRunningAnimation(AnimKey)) - playerComponent.Play(Animation, AnimKey); - - if (!component.Enabled) - playerComponent.Stop(AnimKey); - } - - private void HandleAnimationComplete(EntityUid uid, EmergencyLightComponent component, AnimationCompletedEvent args) - { - if (!component.Enabled || - !EntityManager.TryGetComponent(uid, out var playerComponent)) return; - - playerComponent.Play(Animation, AnimKey); - } - - private void HandleStartup(EntityUid uid, EmergencyLightComponent component, ComponentStartup args) - { - PlayAnimation(component); - } - - private void PlayAnimation(EmergencyLightComponent component) - { - if (!component.Enabled) return; - - var playerComponent = component.Owner.EnsureComponent(); - - if (!playerComponent.HasRunningAnimation(AnimKey)) - playerComponent.Play(Animation, AnimKey); - } - } -} diff --git a/Content.Client/Light/EntitySystems/EmergencyLightSystem.cs b/Content.Client/Light/EntitySystems/EmergencyLightSystem.cs index 71d6673b0d0..452e70b5a34 100644 --- a/Content.Client/Light/EntitySystems/EmergencyLightSystem.cs +++ b/Content.Client/Light/EntitySystems/EmergencyLightSystem.cs @@ -1,5 +1,5 @@ using Content.Client.Light.Components; -using Content.Shared.Light.Component; +using Content.Shared.Light.Components; using Robust.Client.GameObjects; namespace Content.Client.Light.EntitySystems; diff --git a/Content.Client/Light/EntitySystems/ExpendableLightSystem.cs b/Content.Client/Light/EntitySystems/ExpendableLightSystem.cs index d180f430db9..6e9e546dfa3 100644 --- a/Content.Client/Light/EntitySystems/ExpendableLightSystem.cs +++ b/Content.Client/Light/EntitySystems/ExpendableLightSystem.cs @@ -1,5 +1,5 @@ using Content.Client.Light.Components; -using Content.Shared.Light.Component; +using Content.Shared.Light.Components; using Robust.Client.GameObjects; using Robust.Client.Graphics; diff --git a/Content.Client/Light/EntitySystems/LightBulbSystem.cs b/Content.Client/Light/EntitySystems/LightBulbSystem.cs index 5130308c933..09cf3780e2a 100644 --- a/Content.Client/Light/EntitySystems/LightBulbSystem.cs +++ b/Content.Client/Light/EntitySystems/LightBulbSystem.cs @@ -1,4 +1,4 @@ -using Content.Shared.Light.Component; +using Content.Shared.Light.Components; using Robust.Client.GameObjects; namespace Content.Client.Light.Visualizers; diff --git a/Content.Client/Light/EntitySystems/RotatingLightSystem.cs b/Content.Client/Light/EntitySystems/RotatingLightSystem.cs new file mode 100644 index 00000000000..dc70fb63127 --- /dev/null +++ b/Content.Client/Light/EntitySystems/RotatingLightSystem.cs @@ -0,0 +1,89 @@ +using Content.Shared.Light; +using Content.Shared.Light.Components; +using Robust.Client.Animations; +using Robust.Client.GameObjects; +using Robust.Shared.Animations; +using Robust.Shared.GameObjects; +using Robust.Shared.GameStates; +using Robust.Shared.Maths; + +namespace Content.Client.Light.Systems; + +public sealed class RotatingLightSystem : SharedRotatingLightSystem +{ + private Animation GetAnimation(float speed) + { + var third = 120f / speed; + return new Animation() + { + Length = TimeSpan.FromSeconds(360f / speed), + AnimationTracks = + { + new AnimationTrackComponentProperty + { + ComponentType = typeof(PointLightComponent), + InterpolationMode = AnimationInterpolationMode.Linear, + Property = nameof(PointLightComponent.Rotation), + KeyFrames = + { + new AnimationTrackProperty.KeyFrame(Angle.Zero, 0), + new AnimationTrackProperty.KeyFrame(Angle.FromDegrees(120), third), + new AnimationTrackProperty.KeyFrame(Angle.FromDegrees(240), third), + new AnimationTrackProperty.KeyFrame(Angle.FromDegrees(360), third) + } + } + } + }; + } + + private const string AnimKey = "rotating_light"; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnStartup); + SubscribeLocalEvent(OnAfterAutoHandleState); + SubscribeLocalEvent(OnAnimationComplete); + } + + private void OnStartup(EntityUid uid, RotatingLightComponent comp, ComponentStartup args) + { + var player = EnsureComp(uid); + PlayAnimation(uid, comp, player); + } + + private void OnAfterAutoHandleState(EntityUid uid, RotatingLightComponent comp, ref AfterAutoHandleStateEvent args) + { + if (!TryComp(uid, out var player)) + return; + + if (comp.Enabled) + { + PlayAnimation(uid, comp, player); + } + else + { + player.Stop(AnimKey); + } + } + + private void OnAnimationComplete(EntityUid uid, RotatingLightComponent comp, AnimationCompletedEvent args) + { + PlayAnimation(uid, comp); + } + + /// + /// Play the light rotation animation. + /// + public void PlayAnimation(EntityUid uid, RotatingLightComponent? comp = null, AnimationPlayerComponent? player = null) + { + if (!Resolve(uid, ref comp, ref player) || !comp.Enabled) + return; + + if (!player.HasRunningAnimation(AnimKey)) + { + player.Play(GetAnimation(comp.Speed), AnimKey); + } + } +} diff --git a/Content.Client/Light/HandheldLightSystem.cs b/Content.Client/Light/HandheldLightSystem.cs index fb68c7794b9..1912fe91f0b 100644 --- a/Content.Client/Light/HandheldLightSystem.cs +++ b/Content.Client/Light/HandheldLightSystem.cs @@ -1,6 +1,7 @@ using Content.Client.Items; using Content.Client.Light.Components; using Content.Shared.Light; +using Content.Shared.Light.Components; using Content.Shared.Toggleable; using Robust.Client.Animations; using Robust.Client.GameObjects; diff --git a/Content.Client/Light/RgbLightControllerSystem.cs b/Content.Client/Light/RgbLightControllerSystem.cs index ac51e820f01..a9ba34ca7d0 100644 --- a/Content.Client/Light/RgbLightControllerSystem.cs +++ b/Content.Client/Light/RgbLightControllerSystem.cs @@ -4,7 +4,7 @@ using Content.Shared.Hands; using Content.Shared.Inventory.Events; using Content.Shared.Light; -using Content.Shared.Light.Component; +using Content.Shared.Light.Components; using Robust.Client.GameObjects; using Robust.Shared.GameStates; using Robust.Shared.Map.Components; @@ -17,6 +17,7 @@ public sealed class RgbLightControllerSystem : SharedRgbLightControllerSystem { [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly ItemSystem _itemSystem = default!; + [Dependency] private readonly SharedPointLightSystem _lights = default!; public override void Initialize() { @@ -156,7 +157,7 @@ private void ResetOriginalColors(EntityUid uid, RgbLightControllerComponent? rgb if (!Resolve(uid, ref rgb, ref sprite, ref light, false)) return; - light.Color = rgb.OriginalLightColor; + _lights.SetColor(uid, rgb.OriginalLightColor, light); if (rgb.Layers == null || rgb.OriginalLayerColors == null) return; @@ -173,7 +174,7 @@ public override void FrameUpdate(float frameTime) { var color = GetCurrentRgbColor(_gameTiming.RealTime, rgb.CreationTick.Value * _gameTiming.TickPeriod, rgb); - light.Color = color; + _lights.SetColor(light.Owner, color, light); if (rgb.Layers != null) { @@ -205,7 +206,7 @@ public override void FrameUpdate(float frameTime) public static Color GetCurrentRgbColor(TimeSpan curTime, TimeSpan offset, RgbLightControllerComponent rgb) { return Color.FromHsv(new Vector4( - (float) (((curTime.TotalSeconds - offset.TotalSeconds) * rgb.CycleRate + Math.Abs(rgb.Owner.GetHashCode() * 0.1)) % 1), + (float) (((curTime.TotalSeconds - offset.TotalSeconds) * rgb.CycleRate + Math.Abs(rgb.Owner.Id * 0.1)) % 1), 1.0f, 1.0f, 1.0f diff --git a/Content.Client/Light/Visualizers/PoweredLightVisualsComponent.cs b/Content.Client/Light/Visualizers/PoweredLightVisualsComponent.cs index 6a1b4d713dd..0d1e70735ac 100644 --- a/Content.Client/Light/Visualizers/PoweredLightVisualsComponent.cs +++ b/Content.Client/Light/Visualizers/PoweredLightVisualsComponent.cs @@ -5,14 +5,14 @@ namespace Content.Client.Light.Visualizers; [RegisterComponent] [Access(typeof(PoweredLightVisualizerSystem))] -public sealed class PoweredLightVisualsComponent : Component +public sealed partial class PoweredLightVisualsComponent : Component { /// /// A map of the sprite states used by this visualizer indexed by the light state they correspond to. /// [DataField("spriteStateMap")] [ViewVariables(VVAccess.ReadOnly)] - public readonly Dictionary SpriteStateMap = new() + public Dictionary SpriteStateMap = new() { [PoweredLightState.Empty] = "empty", [PoweredLightState.Off] = "off", diff --git a/Content.Client/Lightning/Components/LightningComponent.cs b/Content.Client/Lightning/Components/LightningComponent.cs index 4edc97597fe..521641c7634 100644 --- a/Content.Client/Lightning/Components/LightningComponent.cs +++ b/Content.Client/Lightning/Components/LightningComponent.cs @@ -2,7 +2,7 @@ namespace Content.Client.Lightning.Components; [RegisterComponent] -public sealed class LightningComponent : SharedLightningComponent +public sealed partial class LightningComponent : SharedLightningComponent { } diff --git a/Content.Client/Lobby/LobbyState.cs b/Content.Client/Lobby/LobbyState.cs index 5f8d78d0197..d70a32f8b57 100644 --- a/Content.Client/Lobby/LobbyState.cs +++ b/Content.Client/Lobby/LobbyState.cs @@ -82,6 +82,10 @@ protected override void Startup() _gameTicker.InfoBlobUpdated += UpdateLobbyUi; _gameTicker.LobbyStatusUpdated += LobbyStatusUpdated; _gameTicker.LobbyLateJoinStatusUpdated += LobbyLateJoinStatusUpdated; + + _preferencesManager.OnServerDataLoaded += PreferencesDataLoaded; + + _lobby.CharacterPreview.UpdateUI(); } protected override void Shutdown() @@ -102,6 +106,13 @@ protected override void Shutdown() _characterSetup?.Dispose(); _characterSetup = null; + + _preferencesManager.OnServerDataLoaded -= PreferencesDataLoaded; + } + + private void PreferencesDataLoaded() + { + _lobby?.CharacterPreview.UpdateUI(); } private void OnSetupPressed(BaseButton.ButtonEventArgs args) diff --git a/Content.Client/Lobby/UI/LobbyCharacterPreviewPanel.cs b/Content.Client/Lobby/UI/LobbyCharacterPreviewPanel.cs index 98cd6827352..1ffac0fc3e5 100644 --- a/Content.Client/Lobby/UI/LobbyCharacterPreviewPanel.cs +++ b/Content.Client/Lobby/UI/LobbyCharacterPreviewPanel.cs @@ -79,8 +79,6 @@ public LobbyCharacterPreviewPanel() AddChild(vBox); UpdateUI(); - - _preferencesManager.OnServerDataLoaded += UpdateUI; } public Button CharacterSetupButton { get; } @@ -88,7 +86,6 @@ public LobbyCharacterPreviewPanel() protected override void Dispose(bool disposing) { base.Dispose(disposing); - _preferencesManager.OnServerDataLoaded -= UpdateUI; if (!disposing) return; if (_previewDummy != null) _entityManager.DeleteEntity(_previewDummy.Value); @@ -97,12 +94,14 @@ protected override void Dispose(bool disposing) private SpriteView MakeSpriteView(EntityUid entity, Direction direction) { - return new() + var spriteView = new SpriteView { - Sprite = _entityManager.GetComponent(entity), OverrideDirection = direction, - Scale = new Vector2(2, 2) + Scale = new Vector2(2, 2), }; + + spriteView.SetEntity(entity); + return spriteView; } public void UpdateUI() diff --git a/Content.Client/Mapping/MappingSystem.cs b/Content.Client/Mapping/MappingSystem.cs index 7f29f4e7849..4456be36a65 100644 --- a/Content.Client/Mapping/MappingSystem.cs +++ b/Content.Client/Mapping/MappingSystem.cs @@ -1,10 +1,11 @@ using Content.Client.Actions; using Content.Shared.Actions; -using Content.Shared.Actions.ActionTypes; +using Content.Shared.Mapping; using Content.Shared.Maps; using Robust.Client.Placement; using Robust.Shared.Map; using Robust.Shared.Utility; +using static Robust.Shared.Utility.SpriteSpecifier; namespace Content.Client.Mapping; @@ -13,16 +14,17 @@ public sealed partial class MappingSystem : EntitySystem [Dependency] private readonly IPlacementManager _placementMan = default!; [Dependency] private readonly ITileDefinitionManager _tileMan = default!; [Dependency] private readonly ActionsSystem _actionsSystem = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; /// /// The icon to use for space tiles. /// - private readonly SpriteSpecifier _spaceIcon = new SpriteSpecifier.Texture(new ("Tiles/cropped_parallax.png")); + private readonly SpriteSpecifier _spaceIcon = new Texture(new ("Tiles/cropped_parallax.png")); /// /// The icon to use for entity-eraser. /// - private readonly SpriteSpecifier _deleteIcon = new SpriteSpecifier.Texture(new ("Interface/VerbIcons/delete.svg.192dpi.png")); + private readonly SpriteSpecifier _deleteIcon = new Texture(new ("Interface/VerbIcons/delete.svg.192dpi.png")); public string DefaultMappingActions = "/mapping_actions.yml"; @@ -73,6 +75,9 @@ private void OnFillActionSlot(FillActionSlotEvent ev) else return; + InstantActionComponent action; + string name; + if (tileDef != null) { if (tileDef is not ContentTileDefinition contentTileDef) @@ -80,45 +85,51 @@ private void OnFillActionSlot(FillActionSlotEvent ev) var tileIcon = contentTileDef.IsSpace ? _spaceIcon - : new SpriteSpecifier.Texture(contentTileDef.Sprite!.Value); + : new Texture(contentTileDef.Sprite!.Value); - ev.Action = new InstantAction() + action = new InstantActionComponent { ClientExclusive = true, CheckCanInteract = false, Event = actionEvent, - DisplayName = Loc.GetString(tileDef.Name), Icon = tileIcon }; - return; + name = Loc.GetString(tileDef.Name); } - - if (actionEvent.Eraser) + else if (actionEvent.Eraser) { - ev.Action = new InstantAction() + action = new InstantActionComponent { ClientExclusive = true, CheckCanInteract = false, Event = actionEvent, - DisplayName = "action-name-mapping-erase", Icon = _deleteIcon, }; - return; + name = Loc.GetString("action-name-mapping-erase"); } + else + { + if (string.IsNullOrWhiteSpace(actionEvent.EntityType)) + return; - if (string.IsNullOrWhiteSpace(actionEvent.EntityType)) - return; + action = new InstantActionComponent + { + ClientExclusive = true, + CheckCanInteract = false, + Event = actionEvent, + Icon = new EntityPrototype(actionEvent.EntityType), + }; - ev.Action = new InstantAction() - { - ClientExclusive = true, - CheckCanInteract = false, - Event = actionEvent, - DisplayName = actionEvent.EntityType, - Icon = new SpriteSpecifier.EntityPrototype(actionEvent.EntityType), - }; + name = actionEvent.EntityType; + } + + var actionId = Spawn(null); + AddComp(actionId, action); + _metaData.SetEntityName(actionId, name); + + ev.Action = actionId; } private void OnStartPlacementAction(StartPlacementActionEvent args) @@ -140,18 +151,3 @@ private void OnStartPlacementAction(StartPlacementActionEvent args) _placementMan.ToggleEraser(); } } - -public sealed class StartPlacementActionEvent : InstantActionEvent -{ - [DataField("entityType")] - public string? EntityType; - - [DataField("tileId")] - public string? TileId; - - [DataField("placementOption")] - public string? PlacementOption; - - [DataField("eraser")] - public bool Eraser; -} diff --git a/Content.Client/Maps/GridDraggingSystem.cs b/Content.Client/Maps/GridDraggingSystem.cs index dcf74557eec..16357c89838 100644 --- a/Content.Client/Maps/GridDraggingSystem.cs +++ b/Content.Client/Maps/GridDraggingSystem.cs @@ -47,11 +47,11 @@ private void StartDragging(EntityUid grid, Vector2 localPosition) _dragging = grid; _localPosition = localPosition; - if (TryComp(grid, out var body)) + if (HasComp(grid)) { RaiseNetworkEvent(new GridDragVelocityRequest() { - Grid = grid, + Grid = GetNetEntity(grid), LinearVelocity = Vector2.Zero }); } @@ -69,7 +69,7 @@ private void StopDragging() var distance = _lastMousePosition.Value.Position - xform.WorldPosition; RaiseNetworkEvent(new GridDragVelocityRequest() { - Grid = _dragging.Value, + Grid = GetNetEntity(_dragging.Value), LinearVelocity = distance.LengthSquared() > 0f ? (distance / (float) tickTime.TotalSeconds) * 0.25f : Vector2.Zero, }); } @@ -125,7 +125,7 @@ public override void Update(float frameTime) RaiseNetworkEvent(new GridDragRequestPosition() { - Grid = _dragging.Value, + Grid = GetNetEntity(_dragging.Value), WorldPosition = requestedGridOrigin, }); } diff --git a/Content.Client/Markers/MarkerComponent.cs b/Content.Client/Markers/MarkerComponent.cs index 1af9f829c35..ac28f2ffd36 100644 --- a/Content.Client/Markers/MarkerComponent.cs +++ b/Content.Client/Markers/MarkerComponent.cs @@ -5,7 +5,7 @@ namespace Content.Client.Markers { [RegisterComponent] - public sealed class MarkerComponent : Component + public sealed partial class MarkerComponent : Component { } } diff --git a/Content.Client/MassMedia/Ui/NewsWriteBoundUserInterface.cs b/Content.Client/MassMedia/Ui/NewsWriteBoundUserInterface.cs index 1ec19ad4119..975dfa3f818 100644 --- a/Content.Client/MassMedia/Ui/NewsWriteBoundUserInterface.cs +++ b/Content.Client/MassMedia/Ui/NewsWriteBoundUserInterface.cs @@ -67,20 +67,14 @@ private void OnShareButtonPressed() var stringContent = Rope.Collapse(_menu.ContentInput.TextRope); - if (stringContent == null || stringContent.Length == 0) return; - if (_gameTicker == null) return; + if (stringContent == null || stringContent.Length == 0) + return; - NewsArticle article = new NewsArticle(); var stringName = _menu.NameInput.Text; var name = (stringName.Length <= 25 ? stringName.Trim() : $"{stringName.Trim().Substring(0, 25)}..."); - article.Name = name; - article.Content = stringContent; - article.ShareTime = _gameTiming.CurTime.Subtract(_gameTicker.RoundStartTimeSpan); - _menu.ContentInput.TextRope = new Rope.Leaf(string.Empty); _menu.NameInput.Text = string.Empty; - - SendMessage(new NewsWriteShareMessage(article)); + SendMessage(new NewsWriteShareMessage(name, stringContent)); } private void OnDeleteButtonPressed(int articleNum) diff --git a/Content.Client/MassMedia/Ui/NewsWriteMenu.xaml.cs b/Content.Client/MassMedia/Ui/NewsWriteMenu.xaml.cs index 6d05505bcb5..b3cbf0cf2c2 100644 --- a/Content.Client/MassMedia/Ui/NewsWriteMenu.xaml.cs +++ b/Content.Client/MassMedia/Ui/NewsWriteMenu.xaml.cs @@ -9,9 +9,6 @@ namespace Content.Client.MassMedia.Ui; [GenerateTypedNameReferences] public sealed partial class NewsWriteMenu : DefaultWindow { - [Dependency] private readonly IEntityManager _entityManager = default!; - [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - public event Action? ShareButtonPressed; public event Action? DeleteButtonPressed; diff --git a/Content.Client/Mech/MechAssemblyVisualsComponent.cs b/Content.Client/Mech/MechAssemblyVisualsComponent.cs index 6d22db0cb5e..c4cba0aa0af 100644 --- a/Content.Client/Mech/MechAssemblyVisualsComponent.cs +++ b/Content.Client/Mech/MechAssemblyVisualsComponent.cs @@ -4,7 +4,7 @@ /// This is used for visualizing mech constructions /// [RegisterComponent] -public sealed class MechAssemblyVisualsComponent : Component +public sealed partial class MechAssemblyVisualsComponent : Component { /// /// The prefix that is followed by the number which diff --git a/Content.Client/Mech/Ui/Equipment/MechGrabberUi.cs b/Content.Client/Mech/Ui/Equipment/MechGrabberUi.cs index 6cffba51633..4bb9961fc47 100644 --- a/Content.Client/Mech/Ui/Equipment/MechGrabberUi.cs +++ b/Content.Client/Mech/Ui/Equipment/MechGrabberUi.cs @@ -5,7 +5,7 @@ namespace Content.Client.Mech.Ui.Equipment; -public sealed class MechGrabberUi : UIFragment +public sealed partial class MechGrabberUi : UIFragment { private MechGrabberUiFragment? _fragment; @@ -20,9 +20,11 @@ public override void Setup(BoundUserInterface userInterface, EntityUid? fragment return; _fragment = new MechGrabberUiFragment(); + _fragment.OnEjectAction += e => { - userInterface.SendMessage(new MechGrabberEjectMessage(fragmentOwner.Value, e)); + var entManager = IoCManager.Resolve(); + userInterface.SendMessage(new MechGrabberEjectMessage(entManager.GetNetEntity(fragmentOwner.Value), entManager.GetNetEntity(e))); }; } diff --git a/Content.Client/Mech/Ui/Equipment/MechGrabberUiFragment.xaml.cs b/Content.Client/Mech/Ui/Equipment/MechGrabberUiFragment.xaml.cs index 8fc04d6460e..94f86e74a02 100644 --- a/Content.Client/Mech/Ui/Equipment/MechGrabberUiFragment.xaml.cs +++ b/Content.Client/Mech/Ui/Equipment/MechGrabberUiFragment.xaml.cs @@ -23,7 +23,7 @@ public void UpdateContents(MechGrabberUiState state) SpaceLabel.Text = $"{state.Contents.Count}/{state.MaxContents}"; for (var i = 0; i < state.Contents.Count; i++) { - var ent = state.Contents[i]; + var ent = _entity.GetEntity(state.Contents[i]); if (!_entity.TryGetComponent(ent, out var meta)) continue; diff --git a/Content.Client/Mech/Ui/Equipment/MechSoundboardUi.cs b/Content.Client/Mech/Ui/Equipment/MechSoundboardUi.cs index 67825318a4e..e44e8614094 100644 --- a/Content.Client/Mech/Ui/Equipment/MechSoundboardUi.cs +++ b/Content.Client/Mech/Ui/Equipment/MechSoundboardUi.cs @@ -5,7 +5,7 @@ namespace Content.Client.Mech.Ui.Equipment; -public sealed class MechSoundboardUi : UIFragment +public sealed partial class MechSoundboardUi : UIFragment { private MechSoundboardUiFragment? _fragment; @@ -22,7 +22,8 @@ public override void Setup(BoundUserInterface userInterface, EntityUid? fragment _fragment = new MechSoundboardUiFragment(); _fragment.OnPlayAction += sound => { - userInterface.SendMessage(new MechSoundboardPlayMessage(fragmentOwner.Value, sound)); + // TODO: IDK dog + userInterface.SendMessage(new MechSoundboardPlayMessage(IoCManager.Resolve().GetNetEntity(fragmentOwner.Value), sound)); }; } diff --git a/Content.Client/Mech/Ui/MechBoundUserInterface.cs b/Content.Client/Mech/Ui/MechBoundUserInterface.cs index 62b4fdf250d..4172bdc90f1 100644 --- a/Content.Client/Mech/Ui/MechBoundUserInterface.cs +++ b/Content.Client/Mech/Ui/MechBoundUserInterface.cs @@ -27,7 +27,7 @@ protected override void Open() _menu.OnRemoveButtonPressed += uid => { - SendMessage(new MechEquipmentRemoveMessage(uid)); + SendMessage(new MechEquipmentRemoveMessage(EntMan.GetNetEntity(uid))); }; } @@ -54,7 +54,7 @@ public void UpdateEquipmentControls(MechBoundUiState state) continue; foreach (var (attached, estate) in state.EquipmentStates) { - if (ent == attached) + if (ent == EntMan.GetEntity(attached)) ui.UpdateState(estate); } } diff --git a/Content.Client/Mech/Ui/MechEquipmentControl.xaml.cs b/Content.Client/Mech/Ui/MechEquipmentControl.xaml.cs index 12538904734..9b3bfaa25c0 100644 --- a/Content.Client/Mech/Ui/MechEquipmentControl.xaml.cs +++ b/Content.Client/Mech/Ui/MechEquipmentControl.xaml.cs @@ -10,11 +10,11 @@ public sealed partial class MechEquipmentControl : Control { public event Action? OnRemoveButtonPressed; - public MechEquipmentControl(string itemName, SpriteComponent? sprite, Control? fragment) + public MechEquipmentControl(EntityUid entity, string itemName, Control? fragment) { RobustXamlLoader.Load(this); EquipmentName.SetMessage(itemName); - EquipmentView.Sprite = sprite; + EquipmentView.SetEntity(entity); RemoveButton.TexturePath = "/Textures/Interface/Nano/cross.svg.png"; if (fragment != null) diff --git a/Content.Client/Mech/Ui/MechMenu.xaml.cs b/Content.Client/Mech/Ui/MechMenu.xaml.cs index 1bb59e07e95..8d1d9360318 100644 --- a/Content.Client/Mech/Ui/MechMenu.xaml.cs +++ b/Content.Client/Mech/Ui/MechMenu.xaml.cs @@ -23,10 +23,7 @@ public MechMenu(EntityUid mech) _mech = mech; - if (!_ent.TryGetComponent(mech, out var sprite)) - return; - - MechView.Sprite = sprite; + MechView.SetEntity(mech); } public void UpdateMechStats() @@ -54,14 +51,13 @@ public void UpdateEquipmentView() EquipmentControlContainer.Children.Clear(); foreach (var ent in mechComp.EquipmentContainer.ContainedEntities) { - if (!_ent.TryGetComponent(ent, out var sprite) || - !_ent.TryGetComponent(ent, out var metaData)) + if (!_ent.TryGetComponent(ent, out var metaData)) continue; var uicomp = _ent.GetComponentOrNull(ent); var ui = uicomp?.Ui?.GetUIFragmentRoot(); - var control = new MechEquipmentControl(metaData.EntityName, sprite, ui); + var control = new MechEquipmentControl(ent, metaData.EntityName, ui); control.OnRemoveButtonPressed += () => OnRemoveButtonPressed?.Invoke(ent); diff --git a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs index 40da258a4be..ff08af6bb6b 100644 --- a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs +++ b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs @@ -64,15 +64,18 @@ public void ShowSensors(List stSensors, EntityCoordinates? mon // add a row for each sensor foreach (var sensor in stSensors.OrderBy(a => a.Name)) { + var sensorEntity = _entManager.GetEntity(sensor.SuitSensorUid); + var coordinates = _entManager.GetCoordinates(sensor.Coordinates); + // add button with username var nameButton = new CrewMonitoringButton() { - SuitSensorUid = sensor.SuitSensorUid, - Coordinates = sensor.Coordinates, + SuitSensorUid = sensorEntity, + Coordinates = coordinates, Text = sensor.Name, Margin = new Thickness(5f, 5f), }; - if (sensor.SuitSensorUid == _trackedButton?.SuitSensorUid) + if (sensorEntity == _trackedButton?.SuitSensorUid) nameButton.AddStyleClass(StyleNano.StyleClassButtonColorGreen); SetColorLabel(nameButton.Label, sensor.TotalDamage, sensor.IsAlive); SensorsTable.AddChild(nameButton); @@ -113,10 +116,10 @@ public void ShowSensors(List stSensors, EntityCoordinates? mon SensorsTable.AddChild(box); _rowsContent.Add(box); - if (sensor.Coordinates != null && NavMap.Visible) + if (coordinates != null && NavMap.Visible) { - NavMap.TrackedCoordinates.TryAdd(sensor.Coordinates.Value, - (true, sensor.SuitSensorUid == _trackedButton?.SuitSensorUid ? StyleNano.PointGreen : StyleNano.PointRed)); + NavMap.TrackedCoordinates.TryAdd(coordinates.Value, + (true, sensorEntity == _trackedButton?.SuitSensorUid ? StyleNano.PointGreen : StyleNano.PointRed)); nameButton.OnButtonUp += args => { @@ -124,8 +127,8 @@ public void ShowSensors(List stSensors, EntityCoordinates? mon //Make previous point red NavMap.TrackedCoordinates[_trackedButton.Coordinates.Value] = (true, StyleNano.PointRed); - NavMap.TrackedCoordinates[sensor.Coordinates.Value] = (true, StyleNano.PointGreen); - NavMap.CenterToCoordinates(sensor.Coordinates.Value); + NavMap.TrackedCoordinates[coordinates.Value] = (true, StyleNano.PointGreen); + NavMap.CenterToCoordinates(coordinates.Value); nameButton.AddStyleClass(StyleNano.StyleClassButtonColorGreen); if (_trackedButton != null) @@ -145,7 +148,7 @@ public void ShowSensors(List stSensors, EntityCoordinates? mon private BoxContainer GetPositionBox(SuitSensorStatus sensor, Vector2 monitorCoordsInStationSpace, bool snap, float precision) { - EntityCoordinates? coordinates = sensor.Coordinates; + EntityCoordinates? coordinates = _entManager.GetCoordinates(sensor.Coordinates); var box = new BoxContainer() { Orientation = LayoutOrientation.Horizontal }; if (coordinates == null || _stationUid == null) diff --git a/Content.Client/MedicalScanner/MedicalScannerComponent.cs b/Content.Client/MedicalScanner/MedicalScannerComponent.cs index 8ece8311b9e..4b3318b49df 100644 --- a/Content.Client/MedicalScanner/MedicalScannerComponent.cs +++ b/Content.Client/MedicalScanner/MedicalScannerComponent.cs @@ -3,6 +3,6 @@ namespace Content.Client.MedicalScanner; [RegisterComponent] -public sealed class MedicalScannerComponent : SharedMedicalScannerComponent +public sealed partial class MedicalScannerComponent : SharedMedicalScannerComponent { } diff --git a/Content.Client/Message/RichTextLabelExt.cs b/Content.Client/Message/RichTextLabelExt.cs index df2c61e3065..ab6d17bf44d 100644 --- a/Content.Client/Message/RichTextLabelExt.cs +++ b/Content.Client/Message/RichTextLabelExt.cs @@ -1,13 +1,13 @@ using Robust.Client.UserInterface.Controls; using Robust.Shared.Utility; -namespace Content.Client.Message +namespace Content.Client.Message; + +public static class RichTextLabelExt { - public static class RichTextLabelExt + public static RichTextLabel SetMarkup(this RichTextLabel label, string markup) { - public static void SetMarkup(this RichTextLabel label, string markup) - { - label.SetMessage(FormattedMessage.FromMarkup(markup)); - } + label.SetMessage(FormattedMessage.FromMarkup(markup)); + return label; } } diff --git a/Content.Client/Mind/MindSystem.cs b/Content.Client/Mind/MindSystem.cs new file mode 100644 index 00000000000..87d9e9ddbe0 --- /dev/null +++ b/Content.Client/Mind/MindSystem.cs @@ -0,0 +1,7 @@ +using Content.Shared.Mind; + +namespace Content.Client.Mind; + +public sealed class MindSystem : SharedMindSystem +{ +} diff --git a/Content.Client/Movement/Systems/ContentEyeSystem.cs b/Content.Client/Movement/Systems/ContentEyeSystem.cs index 5c65f3f1246..4056f5fd859 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; @@ -10,7 +9,7 @@ public sealed class ContentEyeSystem : SharedContentEyeSystem { [Dependency] private readonly IPlayerManager _player = default!; - public void RequestZoom(EntityUid uid, Vector2 zoom, ContentEyeComponent? content = null) + public void RequestZoom(EntityUid uid, Vector2 zoom, bool ignoreLimit, ContentEyeComponent? content = null) { if (!Resolve(uid, ref content, false)) return; @@ -18,6 +17,7 @@ public void RequestZoom(EntityUid uid, Vector2 zoom, ContentEyeComponent? conten RaisePredictiveEvent(new RequestTargetZoomEvent() { TargetZoom = zoom, + IgnoreLimit = ignoreLimit, }); } @@ -40,19 +40,4 @@ public void RequestFov(bool value) Fov = value, }); } - - public override void Update(float frameTime) - { - base.Update(frameTime); - - var localPlayer = _player.LocalPlayer?.ControlledEntity; - - if (!TryComp(localPlayer, out var content) || - !TryComp(localPlayer, out var eye)) - { - return; - } - - UpdateEye(localPlayer.Value, content, eye, frameTime); - } } diff --git a/Content.Client/Movement/Systems/FloorOcclusionSystem.cs b/Content.Client/Movement/Systems/FloorOcclusionSystem.cs new file mode 100644 index 00000000000..27ba99b3aa3 --- /dev/null +++ b/Content.Client/Movement/Systems/FloorOcclusionSystem.cs @@ -0,0 +1,55 @@ +using Content.Shared.Movement.Components; +using Content.Shared.Movement.Systems; +using Robust.Client.GameObjects; +using Robust.Client.Graphics; +using Robust.Shared.Prototypes; + +namespace Content.Client.Movement.Systems; + +public sealed class FloorOcclusionSystem : SharedFloorOcclusionSystem +{ + [Dependency] private readonly IPrototypeManager _proto = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnOcclusionStartup); + SubscribeLocalEvent(OnOcclusionAuto); + } + + private void OnOcclusionAuto(EntityUid uid, FloorOcclusionComponent component, ref AfterAutoHandleStateEvent args) + { + SetEnabled(uid, component, component.Enabled); + } + + private void OnOcclusionStartup(EntityUid uid, FloorOcclusionComponent component, ComponentStartup args) + { + if (component.Enabled && TryComp(uid, out var sprite)) + SetShader(sprite, true); + } + + protected override void SetEnabled(EntityUid uid, FloorOcclusionComponent component, bool enabled) + { + if (component.Enabled == enabled) + return; + + base.SetEnabled(uid, component, enabled); + + if (!TryComp(uid, out var sprite)) + return; + + SetShader(sprite, enabled); + } + + private void SetShader(SpriteComponent sprite, bool enabled) + { + if (enabled) + { + sprite.PostShader = _proto.Index("HorizontalCut").Instance(); + } + else + { + sprite.PostShader = null; + } + } +} diff --git a/Content.Client/NPC/HTN/HTNComponent.cs b/Content.Client/NPC/HTN/HTNComponent.cs index 4e5d233e192..cef18e1a9f3 100644 --- a/Content.Client/NPC/HTN/HTNComponent.cs +++ b/Content.Client/NPC/HTN/HTNComponent.cs @@ -1,7 +1,7 @@ namespace Content.Client.NPC.HTN; [RegisterComponent] -public sealed class HTNComponent : NPCComponent +public sealed partial class HTNComponent : NPCComponent { public string DebugText = string.Empty; } diff --git a/Content.Client/NPC/HTN/HTNSystem.cs b/Content.Client/NPC/HTN/HTNSystem.cs index f12dfaf33b2..7ea914b8c31 100644 --- a/Content.Client/NPC/HTN/HTNSystem.cs +++ b/Content.Client/NPC/HTN/HTNSystem.cs @@ -46,7 +46,7 @@ public override void Initialize() private void OnHTNMessage(HTNMessage ev) { - if (!TryComp(ev.Uid, out var htn)) + if (!TryComp(GetEntity(ev.Uid), out var htn)) return; htn.DebugText = ev.Text; diff --git a/Content.Client/NPC/NPCComponent.cs b/Content.Client/NPC/NPCComponent.cs index 31bcb18bd27..11052b99cba 100644 --- a/Content.Client/NPC/NPCComponent.cs +++ b/Content.Client/NPC/NPCComponent.cs @@ -2,7 +2,7 @@ namespace Content.Client.NPC; -public abstract class NPCComponent : SharedNPCComponent +public abstract partial class NPCComponent : SharedNPCComponent { } diff --git a/Content.Client/NPC/NPCSteeringComponent.cs b/Content.Client/NPC/NPCSteeringComponent.cs index f7776ef5c85..8cd1b7fb04b 100644 --- a/Content.Client/NPC/NPCSteeringComponent.cs +++ b/Content.Client/NPC/NPCSteeringComponent.cs @@ -3,7 +3,7 @@ namespace Content.Client.NPC; [RegisterComponent] -public sealed class NPCSteeringComponent : Component +public sealed partial class NPCSteeringComponent : Component { /* Not hooked up to the server component as it's used for debugging only. */ diff --git a/Content.Client/NPC/NPCSteeringSystem.cs b/Content.Client/NPC/NPCSteeringSystem.cs index c647c026c1e..271632d0184 100644 --- a/Content.Client/NPC/NPCSteeringSystem.cs +++ b/Content.Client/NPC/NPCSteeringSystem.cs @@ -61,10 +61,12 @@ private void OnDebugEvent(NPCSteeringDebugEvent ev) foreach (var data in ev.Data) { - if (!Exists(data.EntityUid)) + var entity = GetEntity(data.EntityUid); + + if (!Exists(entity)) continue; - var comp = EnsureComp(data.EntityUid); + var comp = EnsureComp(entity); comp.Direction = data.Direction; comp.DangerMap = data.Danger; comp.InterestMap = data.Interest; diff --git a/Content.Client/NPC/PathfindingSystem.cs b/Content.Client/NPC/PathfindingSystem.cs index ea50725b4fb..518c1f32aae 100644 --- a/Content.Client/NPC/PathfindingSystem.cs +++ b/Content.Client/NPC/PathfindingSystem.cs @@ -60,8 +60,8 @@ public PathfindingDebugMode Modes private PathfindingDebugMode _modes = PathfindingDebugMode.None; // It's debug data IDC if it doesn't support snapshots I just want something fast. - public Dictionary>> Breadcrumbs = new(); - public Dictionary>>> Polys = new(); + public Dictionary>> Breadcrumbs = new(); + public Dictionary>>> Polys = new(); public readonly List<(TimeSpan Time, PathRouteMessage Message)> Routes = new(); public override void Initialize() @@ -184,7 +184,9 @@ private void DrawScreen(OverlayDrawArgs args, DrawingHandleScreen screenHandle) foreach (var grid in _mapManager.FindGridsIntersecting(mouseWorldPos.MapId, aabb)) { - if (found || !_system.Breadcrumbs.TryGetValue(grid.Owner, out var crumbs) || !xformQuery.TryGetComponent(grid.Owner, out var gridXform)) + var netGrid = _entManager.GetNetEntity(grid.Owner); + + if (found || !_system.Breadcrumbs.TryGetValue(netGrid, out var crumbs) || !xformQuery.TryGetComponent(grid.Owner, out var gridXform)) continue; var (_, _, worldMatrix, invWorldMatrix) = gridXform.GetWorldPositionRotationMatrixWithInv(); @@ -257,7 +259,7 @@ private void DrawScreen(OverlayDrawArgs args, DrawingHandleScreen screenHandle) if (!_mapManager.TryFindGridAt(mouseWorldPos, out var gridUid, out var grid) || !xformQuery.TryGetComponent(gridUid, out var gridXform)) return; - if (!_system.Polys.TryGetValue(gridUid, out var data)) + if (!_system.Polys.TryGetValue(_entManager.GetNetEntity(gridUid), out var data)) return; var tileRef = grid.GetTileRef(mouseWorldPos); @@ -333,7 +335,9 @@ private void DrawWorld(OverlayDrawArgs args, DrawingHandleWorld worldHandle) { foreach (var grid in _mapManager.FindGridsIntersecting(mouseWorldPos.MapId, aabb)) { - if (!_system.Breadcrumbs.TryGetValue(grid.Owner, out var crumbs) || + var netGrid = _entManager.GetNetEntity(grid.Owner); + + if (!_system.Breadcrumbs.TryGetValue(netGrid, out var crumbs) || !xformQuery.TryGetComponent(grid.Owner, out var gridXform)) { continue; @@ -390,7 +394,9 @@ private void DrawWorld(OverlayDrawArgs args, DrawingHandleWorld worldHandle) { foreach (var grid in _mapManager.FindGridsIntersecting(args.MapId, aabb)) { - if (!_system.Polys.TryGetValue(grid.Owner, out var data) || + var netGrid = _entManager.GetNetEntity(grid.Owner); + + if (!_system.Polys.TryGetValue(netGrid, out var data) || !xformQuery.TryGetComponent(grid.Owner, out var gridXform)) continue; @@ -424,7 +430,9 @@ private void DrawWorld(OverlayDrawArgs args, DrawingHandleWorld worldHandle) { foreach (var grid in _mapManager.FindGridsIntersecting(args.MapId, aabb)) { - if (!_system.Polys.TryGetValue(grid.Owner, out var data) || + var netGrid = _entManager.GetNetEntity(grid.Owner); + + if (!_system.Polys.TryGetValue(netGrid, out var data) || !xformQuery.TryGetComponent(grid.Owner, out var gridXform)) continue; @@ -450,10 +458,10 @@ private void DrawWorld(OverlayDrawArgs args, DrawingHandleWorld worldHandle) Color color; Vector2 neighborPos; - if (neighborPoly.EntityId != poly.GraphUid) + if (neighborPoly.NetEntity != poly.GraphUid) { color = Color.Green; - var neighborMap = neighborPoly.ToMap(_entManager); + var neighborMap = _entManager.GetCoordinates(neighborPoly).ToMap(_entManager); if (neighborMap.MapId != args.MapId) continue; @@ -478,7 +486,9 @@ private void DrawWorld(OverlayDrawArgs args, DrawingHandleWorld worldHandle) { foreach (var grid in _mapManager.FindGridsIntersecting(args.MapId, args.WorldBounds)) { - if (!_system.Breadcrumbs.TryGetValue(grid.Owner, out var crumbs) || + var netGrid = _entManager.GetNetEntity(grid.Owner); + + if (!_system.Breadcrumbs.TryGetValue(netGrid, out var crumbs) || !xformQuery.TryGetComponent(grid.Owner, out var gridXform)) continue; @@ -506,7 +516,7 @@ private void DrawWorld(OverlayDrawArgs args, DrawingHandleWorld worldHandle) { foreach (var node in route.Message.Path) { - if (!_entManager.TryGetComponent(node.GraphUid, out var graphXform)) + if (!_entManager.TryGetComponent(_entManager.GetEntity(node.GraphUid), out var graphXform)) continue; worldHandle.SetTransform(graphXform.WorldMatrix); @@ -525,12 +535,14 @@ private void DrawWorld(OverlayDrawArgs args, DrawingHandleWorld worldHandle) foreach (var (node, cost) in route.Message.Costs) { - if (matrix != node.GraphUid) + var graph = _entManager.GetEntity(node.GraphUid); + + if (matrix != graph) { - if (!_entManager.TryGetComponent(node.GraphUid, out var graphXform)) + if (!_entManager.TryGetComponent(graph, out var graphXform)) continue; - matrix = node.GraphUid; + matrix = graph; worldHandle.SetTransform(graphXform.WorldMatrix); } diff --git a/Content.Client/NetworkConfigurator/NetworkConfiguratorActiveLinkOverlayComponent.cs b/Content.Client/NetworkConfigurator/NetworkConfiguratorActiveLinkOverlayComponent.cs index b74f8f9af52..d8f2fac6356 100644 --- a/Content.Client/NetworkConfigurator/NetworkConfiguratorActiveLinkOverlayComponent.cs +++ b/Content.Client/NetworkConfigurator/NetworkConfiguratorActiveLinkOverlayComponent.cs @@ -4,7 +4,7 @@ namespace Content.Client.NetworkConfigurator; /// This is used for... /// [RegisterComponent] -public sealed class NetworkConfiguratorActiveLinkOverlayComponent : Component +public sealed partial class NetworkConfiguratorActiveLinkOverlayComponent : Component { /// /// The entities linked to this network configurator. diff --git a/Content.Client/NetworkConfigurator/Systems/NetworkConfiguratorSystem.cs b/Content.Client/NetworkConfigurator/Systems/NetworkConfiguratorSystem.cs index d56296cae9e..48b378af040 100644 --- a/Content.Client/NetworkConfigurator/Systems/NetworkConfiguratorSystem.cs +++ b/Content.Client/NetworkConfigurator/Systems/NetworkConfiguratorSystem.cs @@ -3,7 +3,6 @@ using Content.Client.Items; using Content.Client.Message; using Content.Client.Stylesheets; -using Content.Shared.Actions.ActionTypes; using Content.Shared.DeviceNetwork.Components; using Content.Shared.DeviceNetwork.Systems; using Content.Shared.Input; @@ -22,11 +21,11 @@ public sealed class NetworkConfiguratorSystem : SharedNetworkConfiguratorSystem { [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly IOverlayManager _overlay = default!; - [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly ActionsSystem _actions = default!; [Dependency] private readonly IInputManager _inputManager = default!; - private const string Action = "ClearNetworkLinkOverlays"; + [ValidatePrototypeId] + private const string Action = "ActionClearNetworkLinkOverlays"; public override void Initialize() { @@ -71,7 +70,7 @@ public void ToggleVisualization(EntityUid uid, bool toggle, NetworkConfiguratorC if (!EntityQuery().Any()) { _overlay.RemoveOverlay(); - _actions.RemoveAction(_playerManager.LocalPlayer.ControlledEntity.Value, _prototypeManager.Index(Action)); + _actions.RemoveAction(_playerManager.LocalPlayer.ControlledEntity.Value, Action); } @@ -81,7 +80,7 @@ public void ToggleVisualization(EntityUid uid, bool toggle, NetworkConfiguratorC if (!_overlay.HasOverlay()) { _overlay.AddOverlay(new NetworkConfiguratorLinkOverlay()); - _actions.AddAction(_playerManager.LocalPlayer.ControlledEntity.Value, new InstantAction(_prototypeManager.Index(Action)), null); + _actions.AddAction(_playerManager.LocalPlayer.ControlledEntity.Value, Spawn(Action), null); } EnsureComp(component.ActiveDeviceList.Value); @@ -103,7 +102,7 @@ public void ClearAllOverlays() if (_playerManager.LocalPlayer?.ControlledEntity != null) { - _actions.RemoveAction(_playerManager.LocalPlayer.ControlledEntity.Value, _prototypeManager.Index(Action)); + _actions.RemoveAction(_playerManager.LocalPlayer.ControlledEntity.Value, Action); } } diff --git a/Content.Client/Ninja/Systems/NinjaGlovesSystem.cs b/Content.Client/Ninja/Systems/NinjaGlovesSystem.cs new file mode 100644 index 00000000000..7758c3d7e2b --- /dev/null +++ b/Content.Client/Ninja/Systems/NinjaGlovesSystem.cs @@ -0,0 +1,10 @@ +using Content.Shared.Ninja.Systems; + +namespace Content.Client.Ninja.Systems; + +/// +/// Does nothing special, only exists to provide a client implementation. +/// +public sealed class NinjaGlovesSystem : SharedNinjaGlovesSystem +{ +} diff --git a/Content.Client/Ninja/Systems/NinjaSuitSystem.cs b/Content.Client/Ninja/Systems/NinjaSuitSystem.cs new file mode 100644 index 00000000000..fde1801b37d --- /dev/null +++ b/Content.Client/Ninja/Systems/NinjaSuitSystem.cs @@ -0,0 +1,24 @@ +using Content.Shared.Clothing.EntitySystems; +using Content.Shared.Ninja.Components; +using Content.Shared.Ninja.Systems; + +namespace Content.Client.Ninja.Systems; + +/// +/// Disables cloak prediction since client has no knowledge of battery power. +/// Cloak will still be enabled after server tells it. +/// +public sealed class NinjaSuitSystem : SharedNinjaSuitSystem +{ + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnAttemptStealth); + } + + private void OnAttemptStealth(EntityUid uid, NinjaSuitComponent comp, AttemptStealthEvent args) + { + args.Cancel(); + } +} diff --git a/Content.Client/Ninja/Systems/NinjaSystem.cs b/Content.Client/Ninja/Systems/NinjaSystem.cs new file mode 100644 index 00000000000..aa2fa2047f1 --- /dev/null +++ b/Content.Client/Ninja/Systems/NinjaSystem.cs @@ -0,0 +1,12 @@ +using Content.Shared.Ninja.Systems; + +namespace Content.Client.Ninja.Systems; + +/// +/// Currently does nothing special clientside. +/// All functionality is in shared and server. +/// Only exists to prevent crashing. +/// +public sealed class SpaceNinjaSystem : SharedSpaceNinjaSystem +{ +} diff --git a/Content.Client/NodeContainer/NodeGroupSystem.cs b/Content.Client/NodeContainer/NodeGroupSystem.cs index 4afc5ffc480..0a3d7ddad02 100644 --- a/Content.Client/NodeContainer/NodeGroupSystem.cs +++ b/Content.Client/NodeContainer/NodeGroupSystem.cs @@ -69,7 +69,7 @@ private void DataMsgHandler(NodeVis.MsgData ev) Entities = Groups.Values .SelectMany(g => g.Nodes, (data, nodeData) => (data, nodeData)) - .GroupBy(n => n.nodeData.Entity) + .GroupBy(n => GetEntity(n.nodeData.Entity)) .ToDictionary(g => g.Key, g => g.ToArray()); NodeLookup = Groups.Values diff --git a/Content.Client/NodeContainer/NodeVisualizationOverlay.cs b/Content.Client/NodeContainer/NodeVisualizationOverlay.cs index 43e3c12a72b..85198f01d0c 100644 --- a/Content.Client/NodeContainer/NodeVisualizationOverlay.cs +++ b/Content.Client/NodeContainer/NodeVisualizationOverlay.cs @@ -77,7 +77,7 @@ private void DrawScreen(in OverlayDrawArgs args) var node = _system.NodeLookup[(groupId, nodeId)]; - var xform = _entityManager.GetComponent(node.Entity); + var xform = _entityManager.GetComponent(_entityManager.GetEntity(node.Entity)); if (!_mapManager.TryGetGrid(xform.GridUid, out var grid)) return; var gridTile = grid.TileIndicesFor(xform.Coordinates); diff --git a/Content.Client/NukeOps/WarDeclaratorBoundUserInterface.cs b/Content.Client/NukeOps/WarDeclaratorBoundUserInterface.cs new file mode 100644 index 00000000000..7394e27043a --- /dev/null +++ b/Content.Client/NukeOps/WarDeclaratorBoundUserInterface.cs @@ -0,0 +1,49 @@ +using Content.Shared.NukeOps; +using JetBrains.Annotations; +using Robust.Client.GameObjects; +using Robust.Shared.Timing; + +namespace Content.Client.NukeOps; + +[UsedImplicitly] +public sealed class WarDeclaratorBoundUserInterface : BoundUserInterface +{ + [ViewVariables] + private WarDeclaratorWindow? _window; + + public WarDeclaratorBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) {} + + protected override void Open() + { + base.Open(); + + _window = new WarDeclaratorWindow(); + if (State != null) + UpdateState(State); + + _window.OpenCentered(); + + _window.OnClose += Close; + _window.OnActivated += OnWarDeclaratorActivated; + } + + protected override void UpdateState(BoundUserInterfaceState state) + { + base.UpdateState(state); + if (_window == null || state is not WarDeclaratorBoundUserInterfaceState cast) + return; + + _window?.UpdateState(cast); + } + + protected override void Dispose(bool disposing) + { + base.Dispose(disposing); + if (disposing) _window?.Dispose(); + } + + private void OnWarDeclaratorActivated(string message) + { + SendMessage(new WarDeclaratorActivateMessage(message)); + } +} diff --git a/Content.Client/NukeOps/WarDeclaratorWindow.xaml b/Content.Client/NukeOps/WarDeclaratorWindow.xaml new file mode 100644 index 00000000000..f90ed865a0a --- /dev/null +++ b/Content.Client/NukeOps/WarDeclaratorWindow.xaml @@ -0,0 +1,18 @@ + + + + [RegisterComponent] -public sealed class PdaBorderColorComponent : Component +public sealed partial class PdaBorderColorComponent : Component { [DataField("borderColor", required: true)] public string? BorderColor; diff --git a/Content.Client/Paper/PaperComponent.cs b/Content.Client/Paper/PaperComponent.cs index 3484df2ae7f..d197cd3721b 100644 --- a/Content.Client/Paper/PaperComponent.cs +++ b/Content.Client/Paper/PaperComponent.cs @@ -4,6 +4,6 @@ namespace Content.Client.Paper; [NetworkedComponent, RegisterComponent] -public sealed class PaperComponent : SharedPaperComponent +public sealed partial class PaperComponent : SharedPaperComponent { } diff --git a/Content.Client/Paper/UI/PaperVisualsComponent.cs b/Content.Client/Paper/UI/PaperVisualsComponent.cs index 4eda1395e86..95040e77e65 100644 --- a/Content.Client/Paper/UI/PaperVisualsComponent.cs +++ b/Content.Client/Paper/UI/PaperVisualsComponent.cs @@ -3,7 +3,7 @@ namespace Content.Client.Paper; [RegisterComponent] -public sealed class PaperVisualsComponent : Component +public sealed partial class PaperVisualsComponent : Component { /// /// The path to the image which will be used as a background for the paper itself @@ -88,7 +88,7 @@ public sealed class PaperVisualsComponent : Component /// Modulate the style's font by this color /// [DataField("fontAccentColor")] - public Color FontAccentColor = new Color(0x25, 0x25, 0x2a); + public Color FontAccentColor = new Color(223, 223, 213); /// /// This can enforce that your paper has a limited area to write in. diff --git a/Content.Client/Paper/UI/PaperWindow.xaml.cs b/Content.Client/Paper/UI/PaperWindow.xaml.cs index ca1e6e9bf1b..c3192a495d6 100644 --- a/Content.Client/Paper/UI/PaperWindow.xaml.cs +++ b/Content.Client/Paper/UI/PaperWindow.xaml.cs @@ -7,12 +7,15 @@ using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; using Robust.Shared.Utility; +using Robust.Client.UserInterface.RichText; namespace Content.Client.Paper.UI { [GenerateTypedNameReferences] public sealed partial class PaperWindow : BaseWindow { + private static Color DefaultTextColor = new(25, 25, 25); + // // Size of resize handles around the paper private const int DRAG_MARGIN_SIZE = 16; @@ -27,14 +30,23 @@ public sealed partial class PaperWindow : BaseWindow // If paper limits the size in one or both axes, it'll affect whether // we're able to resize this UI or not. Default to everything enabled: - private DragMode _allowedResizeModes = ~DragMode.None; + private DragMode _allowedResizeModes = ~DragMode.None; + + private readonly Type[] _allowedTags = new Type[] { + typeof(BoldItalicTag), + typeof(BoldTag), + typeof(BulletTag), + typeof(ColorTag), + typeof(HeadingTag), + typeof(ItalicTag) + }; public PaperWindow() { RobustXamlLoader.Load(this); // We can't configure the RichTextLabel contents from xaml, so do it here: - BlankPaperIndicator.SetMessage(Loc.GetString("paper-ui-blank-page-message")); + BlankPaperIndicator.SetMessage(Loc.GetString("paper-ui-blank-page-message"), null, DefaultTextColor); // Hook up the close button: CloseButton.OnPressed += _ => Close(); @@ -188,7 +200,10 @@ public void Populate(SharedPaperComponent.PaperBoundUserInterfaceState state) var msg = new FormattedMessage(); msg.AddMarkupPermissive(state.Text); - if (!wasEditing) + // For premade documents, we want to be able to edit them rather than + // replace them. + var shouldCopyText = 0 == Input.TextLength && 0 != state.Text.Length; + if (!wasEditing || shouldCopyText) { // We can get repeated messages with state.Mode == Write if another // player opens the UI for reading. In this case, don't update the @@ -196,14 +211,14 @@ public void Populate(SharedPaperComponent.PaperBoundUserInterfaceState state) // don't want to lose any text they already input. Input.TextRope = Rope.Leaf.Empty; Input.CursorPosition = new TextEdit.CursorPos(); - Input.InsertAtCursor(msg.ToString()); + Input.InsertAtCursor(state.Text); } for (var i = 0; i <= state.StampedBy.Count * 3 + 1; i++) { msg.AddMarkupPermissive("\r\n"); } - WrittenTextLabel.SetMessage(msg); + WrittenTextLabel.SetMessage(msg, _allowedTags, DefaultTextColor); WrittenTextLabel.Visible = !isEditing && state.Text.Length > 0; BlankPaperIndicator.Visible = !isEditing && state.Text.Length == 0; diff --git a/Content.Client/Parallax/Data/GeneratedParallaxTextureSource.cs b/Content.Client/Parallax/Data/GeneratedParallaxTextureSource.cs index 15ec9d959b9..81f012d93c6 100644 --- a/Content.Client/Parallax/Data/GeneratedParallaxTextureSource.cs +++ b/Content.Client/Parallax/Data/GeneratedParallaxTextureSource.cs @@ -9,6 +9,7 @@ using Robust.Shared.Utility; using Robust.Shared.Configuration; using Robust.Shared.ContentPack; +using Robust.Shared.Graphics; using SixLabors.ImageSharp; using SixLabors.ImageSharp.PixelFormats; @@ -16,14 +17,14 @@ namespace Content.Client.Parallax.Data; [UsedImplicitly] [DataDefinition] -public sealed class GeneratedParallaxTextureSource : IParallaxTextureSource +public sealed partial class GeneratedParallaxTextureSource : IParallaxTextureSource { /// /// Parallax config path (the TOML file). /// In client resources. /// [DataField("configPath")] - public ResPath ParallaxConfigPath { get; } = new("/parallax_config.toml"); + public ResPath ParallaxConfigPath { get; private set; } = new("/parallax_config.toml"); /// /// ID for debugging, caching, and so forth. @@ -31,7 +32,7 @@ public sealed class GeneratedParallaxTextureSource : IParallaxTextureSource /// It is advisible to provide a roughly unique ID for any unique config contents. /// [DataField("id")] - public string Identifier { get; } = "other"; + public string Identifier { get; private set; } = "other"; /// /// Cached path. diff --git a/Content.Client/Parallax/Data/IParallaxTextureSource.cs b/Content.Client/Parallax/Data/IParallaxTextureSource.cs index 99db736af18..dc514c1304b 100644 --- a/Content.Client/Parallax/Data/IParallaxTextureSource.cs +++ b/Content.Client/Parallax/Data/IParallaxTextureSource.cs @@ -1,11 +1,12 @@ using System.Threading; using System.Threading.Tasks; using Robust.Client.Graphics; +using Robust.Shared.Graphics; namespace Content.Client.Parallax.Data { [ImplicitDataDefinitionForInheritors] - public interface IParallaxTextureSource + public partial interface IParallaxTextureSource { /// /// Generates or loads the texture. diff --git a/Content.Client/Parallax/Data/ImageParallaxTextureSource.cs b/Content.Client/Parallax/Data/ImageParallaxTextureSource.cs index d4ac089236d..cec57b83a52 100644 --- a/Content.Client/Parallax/Data/ImageParallaxTextureSource.cs +++ b/Content.Client/Parallax/Data/ImageParallaxTextureSource.cs @@ -4,19 +4,20 @@ using Content.Client.Resources; using Content.Client.IoC; using Robust.Client.Graphics; +using Robust.Shared.Graphics; using Robust.Shared.Utility; namespace Content.Client.Parallax.Data; [UsedImplicitly] [DataDefinition] -public sealed class ImageParallaxTextureSource : IParallaxTextureSource +public sealed partial class ImageParallaxTextureSource : IParallaxTextureSource { /// /// Texture path. /// [DataField("path", required: true)] - public ResPath Path { get; } = default!; + public ResPath Path { get; private set; } = default!; Task IParallaxTextureSource.GenerateTexture(CancellationToken cancel) { diff --git a/Content.Client/Parallax/Data/ParallaxLayerConfig.cs b/Content.Client/Parallax/Data/ParallaxLayerConfig.cs index 556a0a3a4a4..cca8c6df15e 100644 --- a/Content.Client/Parallax/Data/ParallaxLayerConfig.cs +++ b/Content.Client/Parallax/Data/ParallaxLayerConfig.cs @@ -6,7 +6,7 @@ namespace Content.Client.Parallax.Data; /// The configuration for a parallax layer. /// [DataDefinition] -public sealed class ParallaxLayerConfig +public sealed partial class ParallaxLayerConfig { /// /// The texture source for this layer. diff --git a/Content.Client/Parallax/Data/ParallaxPrototype.cs b/Content.Client/Parallax/Data/ParallaxPrototype.cs index cfba2bb8265..32b79717c76 100644 --- a/Content.Client/Parallax/Data/ParallaxPrototype.cs +++ b/Content.Client/Parallax/Data/ParallaxPrototype.cs @@ -15,23 +15,23 @@ public sealed class ParallaxPrototype : IPrototype { /// [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// /// Parallax layers. /// [DataField("layers")] - public List Layers { get; } = new(); + public List Layers { get; private set; } = new(); /// /// Parallax layers, low-quality. /// [DataField("layersLQ")] - public List LayersLQ { get; } = new(); + public List LayersLQ { get; private set; } = new(); /// /// If low-quality layers don't exist for this parallax and high-quality should be used instead. /// [DataField("layersLQUseHQ")] - public bool LayersLQUseHQ { get; } = true; + public bool LayersLQUseHQ { get; private set; } = true; } diff --git a/Content.Client/Parallax/ParallaxLayerPrepared.cs b/Content.Client/Parallax/ParallaxLayerPrepared.cs index 4bd186033a6..a04bfa4d1a9 100644 --- a/Content.Client/Parallax/ParallaxLayerPrepared.cs +++ b/Content.Client/Parallax/ParallaxLayerPrepared.cs @@ -1,6 +1,7 @@ using System; using Robust.Client.Graphics; using Content.Client.Parallax.Data; +using Robust.Shared.Graphics; namespace Content.Client.Parallax; diff --git a/Content.Client/ParticleAccelerator/ParticleAcceleratorPartVisualizerComponent.cs b/Content.Client/ParticleAccelerator/ParticleAcceleratorPartVisualizerComponent.cs index 78fa4cf8fb8..8b3a9f8b9b7 100644 --- a/Content.Client/ParticleAccelerator/ParticleAcceleratorPartVisualizerComponent.cs +++ b/Content.Client/ParticleAccelerator/ParticleAcceleratorPartVisualizerComponent.cs @@ -4,7 +4,7 @@ namespace Content.Client.ParticleAccelerator; [RegisterComponent] [Access(typeof(ParticleAcceleratorPartVisualizerSystem))] -public sealed class ParticleAcceleratorPartVisualsComponent : Component +public sealed partial class ParticleAcceleratorPartVisualsComponent : Component { [DataField("stateBase", required: true)] [ViewVariables(VVAccess.ReadWrite)] @@ -12,7 +12,7 @@ public sealed class ParticleAcceleratorPartVisualsComponent : Component [DataField("stateSuffixes")] [ViewVariables(VVAccess.ReadWrite)] - public readonly Dictionary StatesSuffixes = new() + public Dictionary StatesSuffixes = new() { {ParticleAcceleratorVisualState.Powered, "p"}, {ParticleAcceleratorVisualState.Level0, "p0"}, diff --git a/Content.Client/Players/PlayTimeTracking/JobRequirementsManager.cs b/Content.Client/Players/PlayTimeTracking/JobRequirementsManager.cs index ee516b4a4b2..91f4d657baa 100644 --- a/Content.Client/Players/PlayTimeTracking/JobRequirementsManager.cs +++ b/Content.Client/Players/PlayTimeTracking/JobRequirementsManager.cs @@ -10,6 +10,7 @@ using Robust.Shared.Configuration; using Robust.Shared.Network; using Robust.Shared.Prototypes; +using Robust.Shared.Utility; namespace Content.Client.Players.PlayTimeTracking; @@ -18,6 +19,7 @@ public sealed class JobRequirementsManager [Dependency] private readonly IBaseClient _client = default!; [Dependency] private readonly IClientNetManager _net = default!; [Dependency] private readonly IConfigurationManager _cfg = default!; + [Dependency] private readonly IEntityManager _entManager = default!; [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly IPrototypeManager _prototypes = default!; @@ -84,13 +86,13 @@ private void RxWhitelist(MsgWhitelist message) _whitelisted = message.Whitelisted; } - public bool IsAllowed(JobPrototype job, [NotNullWhen(false)] out string? reason) + public bool IsAllowed(JobPrototype job, [NotNullWhen(false)] out FormattedMessage? reason) { reason = null; if (_roleBans.Contains($"Job:{job.ID}")) { - reason = Loc.GetString("role-ban"); + reason = FormattedMessage.FromUnformatted(Loc.GetString("role-ban")); return false; } @@ -107,17 +109,12 @@ public bool IsAllowed(JobPrototype job, [NotNullWhen(false)] out string? reason) var reasonBuilder = new StringBuilder(); - var first = true; foreach (var requirement in job.Requirements) { - if (JobRequirements.TryRequirementMet(requirement, _roles, out reason, _prototypes)) + if (JobRequirements.TryRequirementMet(requirement, _roles, out var jobReason, _entManager, _prototypes)) continue; - if (!first) - reasonBuilder.Append('\n'); - first = false; - - reasonBuilder.AppendLine(reason); + reasonBuilder.AppendLine(jobReason.ToMarkup()); } if (job.WhitelistRequired == true && _whitelisted) @@ -128,7 +125,7 @@ public bool IsAllowed(JobPrototype job, [NotNullWhen(false)] out string? reason) reasonBuilder.AppendLine(Loc.GetString("playtime-deny-reason-not-whitelisted")); } - reason = reasonBuilder.Length == 0 ? null : reasonBuilder.ToString(); + reason = reasonBuilder.Length == 0 ? null : FormattedMessage.FromMarkup(reasonBuilder.ToString().Trim()); return reason == null; } } diff --git a/Content.Client/Players/PlayerSystem.cs b/Content.Client/Players/PlayerSystem.cs new file mode 100644 index 00000000000..d5ce4ec197f --- /dev/null +++ b/Content.Client/Players/PlayerSystem.cs @@ -0,0 +1,12 @@ +using Content.Shared.Players; +using Robust.Shared.Players; + +namespace Content.Client.Players; + +public sealed class PlayerSystem : SharedPlayerSystem +{ + public override PlayerData? ContentData(ICommonSession? session) + { + return null; + } +} diff --git a/Content.Client/Pointing/Components/PointingArrowComponent.cs b/Content.Client/Pointing/Components/PointingArrowComponent.cs index 223f48a48fa..0d3bc4a5cc2 100644 --- a/Content.Client/Pointing/Components/PointingArrowComponent.cs +++ b/Content.Client/Pointing/Components/PointingArrowComponent.cs @@ -3,21 +3,21 @@ namespace Content.Client.Pointing.Components; [RegisterComponent] -public sealed class PointingArrowComponent : SharedPointingArrowComponent +public sealed partial class PointingArrowComponent : SharedPointingArrowComponent { /// /// How long it takes to go from the bottom of the animation to the top. /// [ViewVariables(VVAccess.ReadWrite)] [DataField("animationTime")] - public readonly float AnimationTime = 0.5f; + public float AnimationTime = 0.5f; /// /// How far it goes in any direction. /// [ViewVariables(VVAccess.ReadWrite)] [DataField("offset")] - public readonly Vector2 Offset = new(0, 0.25f); + public Vector2 Offset = new(0, 0.25f); public readonly string AnimationKey = "pointingarrow"; } diff --git a/Content.Client/Pointing/Components/RoguePointingArrowComponent.cs b/Content.Client/Pointing/Components/RoguePointingArrowComponent.cs index 970d020bb5e..2d1a101d9fe 100644 --- a/Content.Client/Pointing/Components/RoguePointingArrowComponent.cs +++ b/Content.Client/Pointing/Components/RoguePointingArrowComponent.cs @@ -7,7 +7,7 @@ namespace Content.Client.Pointing.Components { [RegisterComponent] - public sealed class RoguePointingArrowComponent : SharedRoguePointingArrowComponent + public sealed partial class RoguePointingArrowComponent : SharedRoguePointingArrowComponent { } } diff --git a/Content.Client/Pointing/PointingSystem.cs b/Content.Client/Pointing/PointingSystem.cs index f8bae5664bd..82b12fbf36a 100644 --- a/Content.Client/Pointing/PointingSystem.cs +++ b/Content.Client/Pointing/PointingSystem.cs @@ -31,7 +31,7 @@ private void OnArrowAnimation(EntityUid uid, PointingArrowComponent component, A private void AddPointingVerb(GetVerbsEvent args) { - if (args.Target.IsClientSide()) + if (IsClientSide(args.Target)) return; // Really this could probably be a properly predicted event, but that requires reworking pointing. For now @@ -57,7 +57,7 @@ private void AddPointingVerb(GetVerbsEvent args) Text = Loc.GetString("pointing-verb-get-data-text"), Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/VerbIcons/point.svg.192dpi.png")), ClientExclusive = true, - Act = () => RaiseNetworkEvent(new PointingAttemptEvent(args.Target)) + Act = () => RaiseNetworkEvent(new PointingAttemptEvent(GetNetEntity(args.Target))) }; args.Verbs.Add(verb); diff --git a/Content.Client/Points/PointSystem.cs b/Content.Client/Points/PointSystem.cs new file mode 100644 index 00000000000..f41c4b09aba --- /dev/null +++ b/Content.Client/Points/PointSystem.cs @@ -0,0 +1,58 @@ +using Content.Client.CharacterInfo; +using Content.Client.Message; +using Content.Shared.Points; +using Robust.Client.UserInterface; +using Robust.Client.UserInterface.Controls; +using Robust.Shared.GameStates; + +namespace Content.Client.Points; + +/// +public sealed class PointSystem : SharedPointSystem +{ + [Dependency] private readonly CharacterInfoSystem _characterInfo = default!; + + /// + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnHandleState); + SubscribeLocalEvent(OnGetCharacterInfoControls); + } + + private void OnHandleState(EntityUid uid, PointManagerComponent component, ref ComponentHandleState args) + { + if (args.Current is not PointManagerComponentState state) + return; + + component.Points = new(state.Points); + component.Scoreboard = state.Scoreboard; + _characterInfo.RequestCharacterInfo(); + } + + private void OnGetCharacterInfoControls(ref CharacterInfoSystem.GetCharacterInfoControlsEvent ev) + { + foreach (var point in EntityQuery()) + { + var box = new BoxContainer + { + Margin = new Thickness(5), + Orientation = BoxContainer.LayoutOrientation.Vertical + }; + + var title = new RichTextLabel + { + HorizontalAlignment = Control.HAlignment.Center + }; + title.SetMarkup(Loc.GetString("point-scoreboard-header")); + + var text = new RichTextLabel(); + text.SetMessage(point.Scoreboard); + + box.AddChild(title); + box.AddChild(text); + ev.Controls.Add(box); + } + } +} diff --git a/Content.Client/Popups/PopupSystem.cs b/Content.Client/Popups/PopupSystem.cs index d8d3f079c51..63b8d7f6df5 100644 --- a/Content.Client/Popups/PopupSystem.cs +++ b/Content.Client/Popups/PopupSystem.cs @@ -61,9 +61,9 @@ private void PopupMessage(string message, PopupType type, EntityCoordinates coor if (recordReplay && _replayRecording.IsRecording) { if (entity != null) - _replayRecording.RecordClientMessage(new PopupEntityEvent(message, type, entity.Value)); + _replayRecording.RecordClientMessage(new PopupEntityEvent(message, type, GetNetEntity(entity.Value))); else - _replayRecording.RecordClientMessage(new PopupCoordinatesEvent(message, type, coordinates)); + _replayRecording.RecordClientMessage(new PopupCoordinatesEvent(message, type, GetNetCoordinates(coordinates))); } var label = new WorldPopupLabel(coordinates) @@ -170,13 +170,15 @@ private void OnPopupCursorEvent(PopupCursorEvent ev) private void OnPopupCoordinatesEvent(PopupCoordinatesEvent ev) { - PopupMessage(ev.Message, ev.Type, ev.Coordinates, null, false); + PopupMessage(ev.Message, ev.Type, GetCoordinates(ev.Coordinates), null, false); } private void OnPopupEntityEvent(PopupEntityEvent ev) { - if (TryComp(ev.Uid, out TransformComponent? transform)) - PopupMessage(ev.Message, ev.Type, transform.Coordinates, ev.Uid, false); + var entity = GetEntity(ev.Uid); + + if (TryComp(entity, out TransformComponent? transform)) + PopupMessage(ev.Message, ev.Type, transform.Coordinates, entity, false); } private void OnRoundRestart(RoundRestartCleanupEvent ev) diff --git a/Content.Client/Power/APC/ApcVisualizerComponent.cs b/Content.Client/Power/APC/ApcVisualizerComponent.cs index d3f0b33b059..1f66a7791a8 100644 --- a/Content.Client/Power/APC/ApcVisualizerComponent.cs +++ b/Content.Client/Power/APC/ApcVisualizerComponent.cs @@ -4,7 +4,7 @@ namespace Content.Client.Power.APC; [RegisterComponent] [Access(typeof(ApcVisualizerSystem))] -public sealed class ApcVisualsComponent : Component +public sealed partial class ApcVisualsComponent : Component { #region Indicators diff --git a/Content.Client/Power/APC/ApcVisualizerSystem.cs b/Content.Client/Power/APC/ApcVisualizerSystem.cs index 6322117f444..23b9157ea37 100644 --- a/Content.Client/Power/APC/ApcVisualizerSystem.cs +++ b/Content.Client/Power/APC/ApcVisualizerSystem.cs @@ -6,6 +6,8 @@ namespace Content.Client.Power.APC; public sealed class ApcVisualizerSystem : VisualizerSystem { + [Dependency] private readonly SharedPointLightSystem _lights = default!; + protected override void OnAppearanceChange(EntityUid uid, ApcVisualsComponent comp, ref AppearanceChangeEvent args) { if (args.Sprite == null) @@ -43,8 +45,10 @@ protected override void OnAppearanceChange(EntityUid uid, ApcVisualsComponent co } } - if (TryComp(uid, out var light)) - light.Color = comp.ScreenColors[(sbyte)chargeState]; + if (TryComp(uid, out var light)) + { + _lights.SetColor(uid, comp.ScreenColors[(sbyte)chargeState], light); + } } else { @@ -61,8 +65,10 @@ protected override void OnAppearanceChange(EntityUid uid, ApcVisualsComponent co args.Sprite.LayerSetVisible(layer, false); } - if (TryComp(uid, out var light)) - light.Color = comp.EmaggedScreenColor; + if (TryComp(uid, out var light)) + { + _lights.SetColor(uid, comp.EmaggedScreenColor, light); + } } } } diff --git a/Content.Client/Power/APC/UI/ApcMenu.xaml.cs b/Content.Client/Power/APC/UI/ApcMenu.xaml.cs index 3bddcfd9288..dbf68ea07b0 100644 --- a/Content.Client/Power/APC/UI/ApcMenu.xaml.cs +++ b/Content.Client/Power/APC/UI/ApcMenu.xaml.cs @@ -17,7 +17,6 @@ namespace Content.Client.Power.APC.UI [GenerateTypedNameReferences] public sealed partial class ApcMenu : FancyWindow { - [Dependency] private readonly IEntityManager _entityManager = default!; public ApcMenu(ApcBoundUserInterface owner) { IoCManager.InjectDependencies(this); @@ -48,7 +47,7 @@ public void UpdateState(BoundUserInterfaceState state) if (PowerLabel != null) { - PowerLabel.Text = castState.Power + "W"; + PowerLabel.Text = castState.Power + " W"; } if (ExternalPowerStateLabel != null) diff --git a/Content.Client/Power/Generation/Teg/TegCirculatorComponent.cs b/Content.Client/Power/Generation/Teg/TegCirculatorComponent.cs index 486f5505f9d..f11af1d7307 100644 --- a/Content.Client/Power/Generation/Teg/TegCirculatorComponent.cs +++ b/Content.Client/Power/Generation/Teg/TegCirculatorComponent.cs @@ -2,7 +2,7 @@ /// [RegisterComponent] -public sealed class TegCirculatorComponent : Component +public sealed partial class TegCirculatorComponent : Component { } diff --git a/Content.Client/Power/Generator/GeneratorWindow.xaml b/Content.Client/Power/Generator/GeneratorWindow.xaml index 86da3835e24..bae63a09edc 100644 --- a/Content.Client/Power/Generator/GeneratorWindow.xaml +++ b/Content.Client/Power/Generator/GeneratorWindow.xaml @@ -1,22 +1,39 @@  + MinSize="450 235" + SetSize="450 235" + Resizable="False" + Title="{Loc 'portable-generator-ui-title'}"> - + + [RegisterComponent] -public sealed class ReplaySpectatorComponent : Component +public sealed partial class ReplaySpectatorComponent : Component { } diff --git a/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Movement.cs b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Movement.cs index 2b72d2563b8..3bb2afe1221 100644 --- a/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Movement.cs +++ b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Movement.cs @@ -55,7 +55,7 @@ public override void FrameUpdate(float frameTime) return; } - if (!player.IsClientSide() || !HasComp(player)) + if (!IsClientSide(player) || !HasComp(player)) { // Player is trying to move -> behave like the ghost-on-move component. SpawnSpectatorGhost(new EntityCoordinates(player, default), true); @@ -113,12 +113,9 @@ public MoverHandler(ReplaySpectatorSystem sys, DirectionFlag dir) _dir = dir; } - public override bool HandleCmdMessage(ICommonSession? session, InputCmdMessage message) + public override bool HandleCmdMessage(IEntityManager entManager, ICommonSession? session, IFullInputCmdMessage message) { - if (message is not FullInputCmdMessage full) - return false; - - if (full.State == BoundKeyState.Down) + if (message.State == BoundKeyState.Down) _sys.Direction |= _dir; else _sys.Direction &= ~_dir; diff --git a/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Position.cs b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Position.cs index 04fd35da11b..66768e9fda2 100644 --- a/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Position.cs +++ b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Position.cs @@ -167,7 +167,7 @@ private void OnParentChanged(EntityUid uid, ReplaySpectatorComponent component, private void OnDetached(EntityUid uid, ReplaySpectatorComponent component, PlayerDetachedEvent args) { - if (uid.IsClientSide()) + if (IsClientSide(uid)) QueueDel(uid); else RemCompDeferred(uid, component); diff --git a/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Spectate.cs b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Spectate.cs index 09325a7a36f..f3475c5479c 100644 --- a/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Spectate.cs +++ b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Spectate.cs @@ -51,7 +51,7 @@ public void SpectateEntity(EntityUid target) if (old == null) return; - if (old.Value.IsClientSide()) + if (IsClientSide(old.Value)) Del(old.Value); else RemComp(old.Value); @@ -77,7 +77,7 @@ public TransformComponent SpawnSpectatorGhost(EntityCoordinates coords, bool gri if (old != null) { - if (old.Value.IsClientSide()) + if (IsClientSide(old.Value)) QueueDel(old.Value); else RemComp(old.Value); @@ -100,12 +100,14 @@ private void SpectateCommand(IConsoleShell shell, string argStr, string[] args) return; } - if (!EntityUid.TryParse(args[0], out var uid)) + if (!NetEntity.TryParse(args[0], out var netEntity)) { shell.WriteError(Loc.GetString("cmd-parse-failure-uid", ("arg", args[0]))); return; } + var uid = GetEntity(netEntity); + if (!Exists(uid)) { shell.WriteError(Loc.GetString("cmd-parse-failure-entity-exist", ("arg", args[0]))); @@ -120,7 +122,7 @@ private CompletionResult SpectateCompletions(IConsoleShell shell, string[] args) if (args.Length != 1) return CompletionResult.Empty; - return CompletionResult.FromHintOptions(CompletionHelper.EntityUids(args[0], + return CompletionResult.FromHintOptions(CompletionHelper.NetEntities(args[0], EntityManager), Loc.GetString("cmd-replay-spectate-hint")); } } diff --git a/Content.Client/Research/ResearchStealerSystem.cs b/Content.Client/Research/ResearchStealerSystem.cs new file mode 100644 index 00000000000..31909044e45 --- /dev/null +++ b/Content.Client/Research/ResearchStealerSystem.cs @@ -0,0 +1,10 @@ +using Content.Shared.Research.Systems; + +namespace Content.Client.Research; + +/// +/// Does nothing special, only exists to provide a client implementation. +/// +public sealed class ResearchStealerSystem : EntitySystem +{ +} diff --git a/Content.Client/Research/UI/MiniTechnologyCardControl.xaml b/Content.Client/Research/UI/MiniTechnologyCardControl.xaml index c447df7bc09..6605e825181 100644 --- a/Content.Client/Research/UI/MiniTechnologyCardControl.xaml +++ b/Content.Client/Research/UI/MiniTechnologyCardControl.xaml @@ -13,8 +13,7 @@ VerticalExpand="False" StyleClasses="ButtonSquare" Margin="0" - ToolTip="foobar" - TooltipDelay="0.25"> + ToolTip="foobar"> (Entity, out var access) || - _accessReader.IsAllowed(local, access); + _accessReader.IsAllowed(local, Entity, access); foreach (var techId in _technologyDatabase.CurrentTechnologyCards) { var tech = _prototype.Index(techId); diff --git a/Content.Client/Resources/ResourceCacheExtensions.cs b/Content.Client/Resources/ResourceCacheExtensions.cs index b2808e007e7..be8b8fed3b3 100644 --- a/Content.Client/Resources/ResourceCacheExtensions.cs +++ b/Content.Client/Resources/ResourceCacheExtensions.cs @@ -1,6 +1,7 @@ using JetBrains.Annotations; using Robust.Client.Graphics; using Robust.Client.ResourceManagement; +using Robust.Shared.Graphics; using Robust.Shared.Utility; namespace Content.Client.Resources diff --git a/Content.Client/Revenant/RevenantOverloadedLightsSystem.cs b/Content.Client/Revenant/RevenantOverloadedLightsSystem.cs index 2d7b8d3a629..9fd4e4f068f 100644 --- a/Content.Client/Revenant/RevenantOverloadedLightsSystem.cs +++ b/Content.Client/Revenant/RevenantOverloadedLightsSystem.cs @@ -6,6 +6,8 @@ namespace Content.Client.Revenant; public sealed class RevenantOverloadedLightsSystem : SharedRevenantOverloadedLightsSystem { + [Dependency] private readonly SharedPointLightSystem _lights = default!; + public override void Initialize() { base.Initialize(); @@ -20,37 +22,37 @@ public override void Update(float frameTime) var enumerator = EntityQueryEnumerator(); - while (enumerator.MoveNext(out var comp, out var light)) + while (enumerator.MoveNext(out var uid, out var comp, out var light)) { //this looks cool :HECK: - light.Energy = 2f * Math.Abs((float) Math.Sin(0.25 * Math.PI * comp.Accumulator)); + _lights.SetEnergy(uid, 2f * Math.Abs((float) Math.Sin(0.25 * Math.PI * comp.Accumulator)), light); } } private void OnStartup(EntityUid uid, RevenantOverloadedLightsComponent component, ComponentStartup args) { - var light = EnsureComp(uid); + var light = _lights.EnsureLight(uid); component.OriginalEnergy = light.Energy; component.OriginalEnabled = light.Enabled; - light.Enabled = component.OriginalEnabled; - Dirty(light); + _lights.SetEnabled(uid, component.OriginalEnabled, light); + Dirty(uid, light); } private void OnShutdown(EntityUid uid, RevenantOverloadedLightsComponent component, ComponentShutdown args) { - if (!TryComp(component.Owner, out var light)) + if (!_lights.TryGetLight(uid, out var light)) return; if (component.OriginalEnergy == null) { - RemComp(component.Owner); + RemComp(uid, light); return; } - light.Energy = component.OriginalEnergy.Value; - light.Enabled = component.OriginalEnabled; - Dirty(light); + _lights.SetEnergy(uid, component.OriginalEnergy.Value, light); + _lights.SetEnabled(uid, component.OriginalEnabled, light); + Dirty(uid, light); } protected override void OnZap(RevenantOverloadedLightsComponent component) diff --git a/Content.Client/Roles/JobSystem.cs b/Content.Client/Roles/JobSystem.cs new file mode 100644 index 00000000000..632554602c7 --- /dev/null +++ b/Content.Client/Roles/JobSystem.cs @@ -0,0 +1,8 @@ +using Content.Shared.Roles.Jobs; + +namespace Content.Client.Roles; + +public sealed class JobSystem : SharedJobSystem +{ + +} diff --git a/Content.Client/Roles/RoleSystem.cs b/Content.Client/Roles/RoleSystem.cs new file mode 100644 index 00000000000..6a98320af4e --- /dev/null +++ b/Content.Client/Roles/RoleSystem.cs @@ -0,0 +1,5 @@ +namespace Content.Client.Roles; + +public sealed class RoleSystem : EntitySystem +{ +} diff --git a/Content.Client/Rotation/RotationVisualsComponent.cs b/Content.Client/Rotation/RotationVisualsComponent.cs index 103ee6b5d36..1cb1118a84d 100644 --- a/Content.Client/Rotation/RotationVisualsComponent.cs +++ b/Content.Client/Rotation/RotationVisualsComponent.cs @@ -1,11 +1,11 @@ namespace Content.Client.Rotation; [RegisterComponent] -public sealed class RotationVisualsComponent : Component +public sealed partial class RotationVisualsComponent : Component { [DataField("defaultRotation")] [ViewVariables(VVAccess.ReadOnly)] - public readonly Angle DefaultRotation = Angle.FromDegrees(90); + public Angle DefaultRotation = Angle.FromDegrees(90); [ViewVariables(VVAccess.ReadWrite)] public Angle VerticalRotation = 0; diff --git a/Content.Client/RoundEnd/RoundEndSummaryWindow.cs b/Content.Client/RoundEnd/RoundEndSummaryWindow.cs index 93212013a90..b12ebe1807c 100644 --- a/Content.Client/RoundEnd/RoundEndSummaryWindow.cs +++ b/Content.Client/RoundEnd/RoundEndSummaryWindow.cs @@ -125,16 +125,19 @@ private BoxContainer MakePlayerManifestTab(RoundEndMessageEvent.RoundEndPlayerIn VerticalExpand = true, }; - if (_entityManager.TryGetComponent(playerInfo.PlayerEntityUid, out SpriteComponent? sprite)) + var playerUid = _entityManager.GetEntity(playerInfo.PlayerNetEntity); + + if (_entityManager.HasComponent(playerUid)) { - hBox.AddChild(new SpriteView + var spriteView = new SpriteView { - Sprite = sprite, OverrideDirection = Direction.South, VerticalAlignment = VAlignment.Center, SetSize = new Vector2(32, 32), VerticalExpand = true, - }); + }; + spriteView.SetEntity(playerUid); + hBox.AddChild(spriteView); } if (playerInfo.PlayerICName != null) diff --git a/Content.Client/SSDIndicator/SSDIndicatorSystem.cs b/Content.Client/SSDIndicator/SSDIndicatorSystem.cs new file mode 100644 index 00000000000..dc7548f8e40 --- /dev/null +++ b/Content.Client/SSDIndicator/SSDIndicatorSystem.cs @@ -0,0 +1,32 @@ +using Content.Shared.CCVar; +using Content.Shared.SSDIndicator; +using Content.Shared.StatusIcon; +using Content.Shared.StatusIcon.Components; +using Robust.Shared.Configuration; +using Robust.Shared.Prototypes; + +namespace Content.Client.SSDIndicator; + +/// +/// Handles displaying SSD indicator as status icon +/// +public sealed class SSDIndicatorSystem : EntitySystem +{ + [Dependency] private readonly IPrototypeManager _prototype = default!; + [Dependency] private readonly IConfigurationManager _cfg = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnGetStatusIcon); + } + + private void OnGetStatusIcon(EntityUid uid, SSDIndicatorComponent component, ref GetStatusIconsEvent args) + { + if (!component.IsSSD || !_cfg.GetCVar(CCVars.ICShowSSDIndicator)) + return; + + args.StatusIcons.Add(_prototype.Index(component.Icon)); + } +} diff --git a/Content.Client/Salvage/FultonSystem.cs b/Content.Client/Salvage/FultonSystem.cs new file mode 100644 index 00000000000..05e7dd12d98 --- /dev/null +++ b/Content.Client/Salvage/FultonSystem.cs @@ -0,0 +1,121 @@ +using System.Numerics; +using Content.Shared.Salvage.Fulton; +using Content.Shared.Spawners.Components; +using JetBrains.Annotations; +using Robust.Client.Animations; +using Robust.Client.GameObjects; +using Robust.Client.Graphics; +using Robust.Shared.Animations; +using Robust.Shared.Serialization.Manager; +using Robust.Shared.Utility; + +namespace Content.Client.Salvage; + +public sealed class FultonSystem : SharedFultonSystem +{ + [Dependency] private readonly ISerializationManager _serManager = default!; + [Dependency] private readonly AnimationPlayerSystem _player = default!; + + private static readonly TimeSpan AnimationDuration = TimeSpan.FromSeconds(0.4); + + private static readonly Animation InitialAnimation = new() + { + Length = AnimationDuration, + AnimationTracks = + { + new AnimationTrackSpriteFlick + { + LayerKey = FultonVisualLayers.Base, + KeyFrames = + { + new AnimationTrackSpriteFlick.KeyFrame(new RSI.StateId("fulton_expand"), 0f), + new AnimationTrackSpriteFlick.KeyFrame(new RSI.StateId("fulton_balloon"), 0.4f), + } + } + } + }; + + private static readonly Animation FultonAnimation = new() + { + Length = TimeSpan.FromSeconds(0.8f), + AnimationTracks = + { + new AnimationTrackComponentProperty() + { + ComponentType = typeof(SpriteComponent), + Property = nameof(SpriteComponent.Offset), + KeyFrames = + { + new AnimationTrackProperty.KeyFrame(Vector2.Zero, 0f), + new AnimationTrackProperty.KeyFrame(new Vector2(0f, -0.3f), 0.3f), + new AnimationTrackProperty.KeyFrame(new Vector2(0f, 20f), 0.5f), + } + } + } + }; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnHandleState); + SubscribeNetworkEvent(OnFultonMessage); + } + + private void OnFultonMessage(FultonAnimationMessage ev) + { + var entity = GetEntity(ev.Entity); + var coordinates = GetCoordinates(ev.Coordinates); + + if (Deleted(entity) || !TryComp(entity, out var entSprite)) + return; + + var animationEnt = Spawn(null, coordinates); + // TODO: Spawn fulton layer + var sprite = AddComp(animationEnt); + _serManager.CopyTo(entSprite, ref sprite, notNullableOverride: true); + + if (TryComp(entity, out var entAppearance)) + { + var appearance = AddComp(animationEnt); + _serManager.CopyTo(entAppearance, ref appearance, notNullableOverride: true); + } + + sprite.NoRotation = true; + var effectLayer = sprite.AddLayer(new SpriteSpecifier.Rsi(new ResPath("Objects/Tools/fulton_balloon.rsi"), "fulton_balloon")); + sprite.LayerSetOffset(effectLayer, EffectOffset + new Vector2(0f, 0.5f)); + + var despawn = AddComp(animationEnt); + despawn.Lifetime = 1.5f; + + _player.Play(animationEnt, FultonAnimation, "fulton-animation"); + } + + private void OnHandleState(EntityUid uid, FultonedComponent component, ref AfterAutoHandleStateEvent args) + { + UpdateAppearance(uid, component); + } + + protected override void UpdateAppearance(EntityUid uid, FultonedComponent component) + { + if (!component.Effect.IsValid()) + return; + + var startTime = component.NextFulton - component.FultonDuration; + var elapsed = Timing.CurTime - startTime; + + if (elapsed >= AnimationDuration) + { + return; + } + + _player.Play(component.Effect, InitialAnimation, "fulton"); + } + + [UsedImplicitly] + public enum FultonVisualLayers : byte + { + Base, + } + + +} diff --git a/Content.Client/Salvage/SalvageExpeditionComponent.cs b/Content.Client/Salvage/SalvageExpeditionComponent.cs index 0c3bdd15a62..2df858e9352 100644 --- a/Content.Client/Salvage/SalvageExpeditionComponent.cs +++ b/Content.Client/Salvage/SalvageExpeditionComponent.cs @@ -3,7 +3,7 @@ namespace Content.Client.Salvage; [RegisterComponent] -public sealed class SalvageExpeditionComponent : SharedSalvageExpeditionComponent +public sealed partial class SalvageExpeditionComponent : SharedSalvageExpeditionComponent { } diff --git a/Content.Client/Salvage/SalvageMagnetComponent.cs b/Content.Client/Salvage/SalvageMagnetComponent.cs index a681c00d7b1..83b765583dd 100644 --- a/Content.Client/Salvage/SalvageMagnetComponent.cs +++ b/Content.Client/Salvage/SalvageMagnetComponent.cs @@ -4,4 +4,4 @@ namespace Content.Client.Salvage; [NetworkedComponent, RegisterComponent] -public sealed class SalvageMagnetComponent : SharedSalvageMagnetComponent {} +public sealed partial class SalvageMagnetComponent : SharedSalvageMagnetComponent {} diff --git a/Content.Client/Shuttles/BUI/RadarConsoleBoundUserInterface.cs b/Content.Client/Shuttles/BUI/RadarConsoleBoundUserInterface.cs index e8cc64a00be..41db4bb0b42 100644 --- a/Content.Client/Shuttles/BUI/RadarConsoleBoundUserInterface.cs +++ b/Content.Client/Shuttles/BUI/RadarConsoleBoundUserInterface.cs @@ -38,7 +38,7 @@ protected override void UpdateState(BoundUserInterfaceState state) base.UpdateState(state); if (state is not RadarConsoleBoundInterfaceState cState) return; - _window?.SetMatrix(cState.Coordinates, cState.Angle); + _window?.SetMatrix(EntMan.GetCoordinates(cState.Coordinates), cState.Angle); _window?.UpdateState(cState); } } diff --git a/Content.Client/Shuttles/BUI/ShuttleConsoleBoundUserInterface.cs b/Content.Client/Shuttles/BUI/ShuttleConsoleBoundUserInterface.cs index b9700976412..1df8416ad7f 100644 --- a/Content.Client/Shuttles/BUI/ShuttleConsoleBoundUserInterface.cs +++ b/Content.Client/Shuttles/BUI/ShuttleConsoleBoundUserInterface.cs @@ -28,7 +28,7 @@ protected override void Open() _window.OnClose += OnClose; } - private void OnDestinationPressed(EntityUid obj) + private void OnDestinationPressed(NetEntity obj) { SendMessage(new ShuttleConsoleFTLRequestMessage() { @@ -51,17 +51,17 @@ protected override void Dispose(bool disposing) } } - private void OnStopAutodockPressed(EntityUid obj) + private void OnStopAutodockPressed(NetEntity obj) { SendMessage(new StopAutodockRequestMessage() { DockEntity = obj }); } - private void OnAutodockPressed(EntityUid obj) + private void OnAutodockPressed(NetEntity obj) { SendMessage(new AutodockRequestMessage() { DockEntity = obj }); } - private void OnUndockPressed(EntityUid obj) + private void OnUndockPressed(NetEntity obj) { SendMessage(new UndockRequestMessage() { DockEntity = obj }); } @@ -71,7 +71,7 @@ protected override void UpdateState(BoundUserInterfaceState state) base.UpdateState(state); if (state is not ShuttleConsoleBoundInterfaceState cState) return; - _window?.SetMatrix(cState.Coordinates, cState.Angle); + _window?.SetMatrix(EntMan.GetCoordinates(cState.Coordinates), cState.Angle); _window?.UpdateState(cState); } } diff --git a/Content.Client/Shuttles/ShuttleConsoleComponent.cs b/Content.Client/Shuttles/ShuttleConsoleComponent.cs index da6b9147948..53b0dee848a 100644 --- a/Content.Client/Shuttles/ShuttleConsoleComponent.cs +++ b/Content.Client/Shuttles/ShuttleConsoleComponent.cs @@ -3,5 +3,5 @@ namespace Content.Client.Shuttles { [RegisterComponent] - public sealed class ShuttleConsoleComponent : SharedShuttleConsoleComponent {} + public sealed partial class ShuttleConsoleComponent : SharedShuttleConsoleComponent {} } diff --git a/Content.Client/Shuttles/Systems/ShuttleConsoleSystem.cs b/Content.Client/Shuttles/Systems/ShuttleConsoleSystem.cs index f18f27ccd2f..20fff4acfad 100644 --- a/Content.Client/Shuttles/Systems/ShuttleConsoleSystem.cs +++ b/Content.Client/Shuttles/Systems/ShuttleConsoleSystem.cs @@ -44,8 +44,9 @@ private void OnHandleState(EntityUid uid, PilotComponent component, ref Componen { if (args.Current is not PilotComponentState state) return; - var console = state.Console.GetValueOrDefault(); - if (!console.IsValid()) + var console = EnsureEntity(state.Console, uid); + + if (console == null) { component.Console = null; _input.Contexts.SetActiveContext("human"); diff --git a/Content.Client/Shuttles/Systems/ShuttleSystem.EmergencyConsole.cs b/Content.Client/Shuttles/Systems/ShuttleSystem.EmergencyConsole.cs index db3f8f5b585..7086fd05411 100644 --- a/Content.Client/Shuttles/Systems/ShuttleSystem.EmergencyConsole.cs +++ b/Content.Client/Shuttles/Systems/ShuttleSystem.EmergencyConsole.cs @@ -47,7 +47,7 @@ private void OnShuttlePosMessage(EmergencyShuttlePositionMessage ev) { if (_overlay == null) return; - _overlay.StationUid = ev.StationUid; + _overlay.StationUid = GetEntity(ev.StationUid); _overlay.Position = ev.Position; } } diff --git a/Content.Client/Shuttles/ThrusterComponent.cs b/Content.Client/Shuttles/ThrusterComponent.cs index 85795b24a83..5fbeaf8a143 100644 --- a/Content.Client/Shuttles/ThrusterComponent.cs +++ b/Content.Client/Shuttles/ThrusterComponent.cs @@ -7,6 +7,6 @@ namespace Content.Client.Shuttles; /// Managed by /// [RegisterComponent, NetworkedComponent, Access(typeof(ThrusterSystem))] -public sealed class ThrusterComponent : Component +public sealed partial class ThrusterComponent : Component { } diff --git a/Content.Client/Shuttles/UI/DockingControl.cs b/Content.Client/Shuttles/UI/DockingControl.cs index 93c72921bb7..e477b5a1a22 100644 --- a/Content.Client/Shuttles/UI/DockingControl.cs +++ b/Content.Client/Shuttles/UI/DockingControl.cs @@ -32,7 +32,7 @@ public class DockingControl : Control private int ScaledMinimapRadius => (int) (MapGridControl.UIDisplayRadius * UIScale); private float MinimapScale => _range != 0 ? ScaledMinimapRadius / _range : 0f; - public EntityUid? ViewedDock; + public NetEntity? ViewedDock; public EntityUid? GridEntity; public EntityCoordinates? Coordinates; @@ -41,7 +41,7 @@ public class DockingControl : Control /// /// Stored by GridID then by docks /// - public Dictionary> Docks = new(); + public Dictionary> Docks = new(); public DockingControl() { @@ -204,7 +204,7 @@ protected override void Draw(DrawingHandleScreen handle) } // Draw any docks on that grid - if (Docks.TryGetValue(grid.Owner, out var gridDocks)) + if (Docks.TryGetValue(_entManager.GetNetEntity(grid.Owner), out var gridDocks)) { foreach (var dock in gridDocks) { diff --git a/Content.Client/Shuttles/UI/RadarControl.cs b/Content.Client/Shuttles/UI/RadarControl.cs index ff597c3f939..12dbe23b85f 100644 --- a/Content.Client/Shuttles/UI/RadarControl.cs +++ b/Content.Client/Shuttles/UI/RadarControl.cs @@ -124,7 +124,7 @@ public void UpdateState(RadarConsoleBoundInterfaceState ls) foreach (var state in ls.Docks) { var coordinates = state.Coordinates; - var grid = _docks.GetOrNew(coordinates.EntityId); + var grid = _docks.GetOrNew(_entManager.GetEntity(coordinates.NetEntity)); grid.Add(state); } } @@ -327,7 +327,7 @@ private void DrawDocks(DrawingHandleScreen handle, EntityUid uid, Matrix3 matrix var labeled = new HashSet(); foreach (var state in docks) { - var ent = state.Entity; + var ent = _entManager.GetEntity(state.Entity); var position = state.Coordinates.Position; var uiPosition = matrix.Transform(position); diff --git a/Content.Client/Shuttles/UI/ShuttleConsoleWindow.xaml.cs b/Content.Client/Shuttles/UI/ShuttleConsoleWindow.xaml.cs index 8b0bd7af226..1cd378a6c54 100644 --- a/Content.Client/Shuttles/UI/ShuttleConsoleWindow.xaml.cs +++ b/Content.Client/Shuttles/UI/ShuttleConsoleWindow.xaml.cs @@ -22,7 +22,7 @@ public sealed partial class ShuttleConsoleWindow : FancyWindow, private readonly IEntityManager _entManager; private readonly IGameTiming _timing; - private EntityUid? _shuttleUid; + private EntityUid? _shuttleEntity; /// /// Currently selected dock button for camera. @@ -32,19 +32,19 @@ public sealed partial class ShuttleConsoleWindow : FancyWindow, /// /// Stored by grid entityid then by states /// - private readonly Dictionary> _docks = new(); + private readonly Dictionary> _docks = new(); - private readonly Dictionary _destinations = new(); + private readonly Dictionary _destinations = new(); /// /// Next FTL state change. /// public TimeSpan FTLTime; - public Action? UndockPressed; - public Action? StartAutodockPressed; - public Action? StopAutodockPressed; - public Action? DestinationPressed; + public Action? UndockPressed; + public Action? StartAutodockPressed; + public Action? StopAutodockPressed; + public Action? DestinationPressed; public ShuttleConsoleWindow() { @@ -89,7 +89,7 @@ private void OnUndockPressed(BaseButton.ButtonEventArgs args) public void SetMatrix(EntityCoordinates? coordinates, Angle? angle) { - _shuttleUid = coordinates?.EntityId; + _shuttleEntity = coordinates?.EntityId; RadarScreen.SetMatrix(coordinates, angle); } @@ -101,7 +101,7 @@ public void UpdateState(ShuttleConsoleBoundInterfaceState scc) MaxRadarRange.Text = $"{scc.MaxRange:0}"; } - private void UpdateFTL(List<(EntityUid Entity, string Destination, bool Enabled)> destinations, FTLState state, TimeSpan time) + private void UpdateFTL(List<(NetEntity Entity, string Destination, bool Enabled)> destinations, FTLState state, TimeSpan time) { HyperspaceDestinations.DisposeAllChildren(); _destinations.Clear(); @@ -184,14 +184,15 @@ private void UpdateDocks(List docks) docks.Sort(new DockComparer()); foreach (var dock in docks) { - var grid = _docks.GetOrNew(dock.Coordinates.EntityId); + var grid = _docks.GetOrNew(dock.Coordinates.NetEntity); grid.Add(dock); } DockPorts.DisposeAllChildren(); DockingScreen.Docks = _docks; + var shuttleNetEntity = _entManager.GetNetEntity(_shuttleEntity); - if (_shuttleUid != null && _docks.TryGetValue(_shuttleUid.Value, out var gridDocks)) + if (shuttleNetEntity != null && _docks.TryGetValue(shuttleNetEntity.Value, out var gridDocks)) { var index = 1; @@ -234,7 +235,7 @@ private void UpdateDocks(List docks) private void OnDockMouseEntered(GUIMouseHoverEventArgs obj, DockingInterfaceState state) { - RadarScreen.HighlightedDock = state.Entity; + RadarScreen.HighlightedDock = _entManager.GetEntity(state.Entity); } private void OnDockMouseExited(GUIMouseHoverEventArgs obj, DockingInterfaceState state) @@ -247,8 +248,6 @@ private void OnDockMouseExited(GUIMouseHoverEventArgs obj, DockingInterfaceState /// private void OnDockToggled(BaseButton.ButtonEventArgs obj, DockingInterfaceState state) { - var ent = state.Entity; - if (_selectedDock != null) { // If it got untoggled via other means then we'll stop viewing the old dock. @@ -275,9 +274,9 @@ private void OnDockToggled(BaseButton.ButtonEventArgs obj, DockingInterfaceState } else { - if (_shuttleUid != null) + if (_shuttleEntity != null) { - DockingScreen.Coordinates = state.Coordinates; + DockingScreen.Coordinates = _entManager.GetCoordinates(state.Coordinates); DockingScreen.Angle = state.Angle; } else @@ -289,9 +288,9 @@ private void OnDockToggled(BaseButton.ButtonEventArgs obj, DockingInterfaceState UndockButton.Disabled = false; RadarScreen.Visible = false; DockingScreen.Visible = true; - DockingScreen.ViewedDock = ent; - StartAutodockPressed?.Invoke(ent); - DockingScreen.GridEntity = _shuttleUid; + DockingScreen.ViewedDock = state.Entity; + StartAutodockPressed?.Invoke(state.Entity); + DockingScreen.GridEntity = _shuttleEntity; _selectedDock = obj.Button; } } @@ -311,13 +310,13 @@ protected override void Draw(DrawingHandleScreen handle) { base.Draw(handle); - if (!_entManager.TryGetComponent(_shuttleUid, out var gridBody) || - !_entManager.TryGetComponent(_shuttleUid, out var gridXform)) + if (!_entManager.TryGetComponent(_shuttleEntity, out var gridBody) || + !_entManager.TryGetComponent(_shuttleEntity, out var gridXform)) { return; } - if (_entManager.TryGetComponent(_shuttleUid, out var metadata) && metadata.EntityPaused) + if (_entManager.TryGetComponent(_shuttleEntity, out var metadata) && metadata.EntityPaused) { FTLTime += _timing.FrameTime; } diff --git a/Content.Client/Silicons/Borgs/BorgBoundUserInterface.cs b/Content.Client/Silicons/Borgs/BorgBoundUserInterface.cs index 1d8bd06d9e5..3cc2a35d795 100644 --- a/Content.Client/Silicons/Borgs/BorgBoundUserInterface.cs +++ b/Content.Client/Silicons/Borgs/BorgBoundUserInterface.cs @@ -39,7 +39,7 @@ protected override void Open() _menu.RemoveModuleButtonPressed += module => { - SendMessage(new BorgRemoveModuleBuiMessage(module)); + SendMessage(new BorgRemoveModuleBuiMessage(EntMan.GetNetEntity(module))); }; _menu.OnClose += Close; diff --git a/Content.Client/Silicons/Laws/Ui/LawDisplay.xaml b/Content.Client/Silicons/Laws/Ui/LawDisplay.xaml index 714d9e0fe7b..427b3ff1818 100644 --- a/Content.Client/Silicons/Laws/Ui/LawDisplay.xaml +++ b/Content.Client/Silicons/Laws/Ui/LawDisplay.xaml @@ -1,4 +1,4 @@ - @@ -13,6 +13,11 @@ diff --git a/Content.Client/Silicons/Laws/Ui/LawDisplay.xaml.cs b/Content.Client/Silicons/Laws/Ui/LawDisplay.xaml.cs index c48fcef619f..47545f17e1b 100644 --- a/Content.Client/Silicons/Laws/Ui/LawDisplay.xaml.cs +++ b/Content.Client/Silicons/Laws/Ui/LawDisplay.xaml.cs @@ -1,21 +1,86 @@ +using Content.Client.Chat.Managers; +using Content.Shared.Chat; +using Content.Shared.Radio; using Content.Shared.Silicons.Laws; +using Content.Shared.Speech; using Robust.Client.AutoGenerated; using Robust.Client.UserInterface; +using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; +using Robust.Shared.Prototypes; namespace Content.Client.Silicons.Laws.Ui; [GenerateTypedNameReferences] public sealed partial class LawDisplay : Control { - public LawDisplay(SiliconLaw prototype) + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly IChatManager _chatManager = default!; + [Dependency] private readonly EntityManager _entityManager = default!; + + public event Action? OnLawAnnouncementButtonPressed; + + public LawDisplay(EntityUid uid, SiliconLaw law, HashSet? radioChannels) { RobustXamlLoader.Load(this); + IoCManager.InjectDependencies(this); + + var identifier = law.LawIdentifierOverride ?? $"{law.Order}"; + var lawIdentifier = Loc.GetString("laws-ui-law-header", ("id", identifier)); + var lawDescription = Loc.GetString(law.LawString); + + LawNumberLabel.Text = lawIdentifier; + LawLabel.SetMessage(lawDescription); + + // If you can't talk, you can't state your laws... + if (!_entityManager.TryGetComponent(uid, out var speech) || speech.SpeechSounds is null) + return; + + var localButton = new Button + { + Text = Loc.GetString("hud-chatbox-select-channel-Local"), + Modulate = Color.DarkGray, + StyleClasses = { "chatSelectorOptionButton" }, + MinHeight = 35, + MinWidth = 75, + }; - var identifier = prototype.LawIdentifierOverride ?? $"{prototype.Order}"; + localButton.OnPressed += _ => + { + _chatManager.SendMessage($"{lawIdentifier}: {lawDescription}", ChatSelectChannel.Local); + }; - LawNumberLabel.Text = Loc.GetString("laws-ui-law-header", ("id", identifier)); - LawLabel.SetMessage(Loc.GetString(prototype.LawString)); + LawAnnouncementButtons.AddChild(localButton); + + if (radioChannels == null) + return; + + foreach (var radioChannel in radioChannels) + { + if (!_prototypeManager.TryIndex(radioChannel, out var radioChannelProto)) + continue; + + var radioChannelButton = new Button + { + Text = Loc.GetString(radioChannelProto.Name), + Modulate = radioChannelProto.Color, + StyleClasses = { "chatSelectorOptionButton" }, + MinHeight = 35, + MinWidth = 75, + }; + + radioChannelButton.OnPressed += _ => + { + switch (radioChannel) + { + case SharedChatSystem.CommonChannel: + _chatManager.SendMessage($"{SharedChatSystem.RadioCommonPrefix} {lawIdentifier}: {lawDescription}", ChatSelectChannel.Radio); break; + default: + _chatManager.SendMessage($"{SharedChatSystem.RadioChannelPrefix}{radioChannelProto.KeyCode} {lawIdentifier}: {lawDescription}", ChatSelectChannel.Radio); break; + } + }; + + LawAnnouncementButtons.AddChild(radioChannelButton); + } } } - diff --git a/Content.Client/Silicons/Laws/Ui/SiliconLawBoundUserInterface.cs b/Content.Client/Silicons/Laws/Ui/SiliconLawBoundUserInterface.cs index 78231c24df1..2aee0a38c0f 100644 --- a/Content.Client/Silicons/Laws/Ui/SiliconLawBoundUserInterface.cs +++ b/Content.Client/Silicons/Laws/Ui/SiliconLawBoundUserInterface.cs @@ -9,10 +9,11 @@ public sealed class SiliconLawBoundUserInterface : BoundUserInterface { [ViewVariables] private SiliconLawMenu? _menu; + private EntityUid _owner; public SiliconLawBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { - + _owner = owner; } protected override void Open() @@ -40,6 +41,6 @@ protected override void UpdateState(BoundUserInterfaceState state) if (state is not SiliconLawBuiState msg) return; - _menu?.Update(msg); + _menu?.Update(_owner, msg); } } diff --git a/Content.Client/Silicons/Laws/Ui/SiliconLawMenu.xaml b/Content.Client/Silicons/Laws/Ui/SiliconLawMenu.xaml index 1b6324dae65..97f6179e459 100644 --- a/Content.Client/Silicons/Laws/Ui/SiliconLawMenu.xaml +++ b/Content.Client/Silicons/Laws/Ui/SiliconLawMenu.xaml @@ -1,9 +1,9 @@ - + SetSize="450 515"> diff --git a/Content.Client/Silicons/Laws/Ui/SiliconLawMenu.xaml.cs b/Content.Client/Silicons/Laws/Ui/SiliconLawMenu.xaml.cs index 48adce87f85..a63494bc52d 100644 --- a/Content.Client/Silicons/Laws/Ui/SiliconLawMenu.xaml.cs +++ b/Content.Client/Silicons/Laws/Ui/SiliconLawMenu.xaml.cs @@ -14,16 +14,16 @@ public SiliconLawMenu() IoCManager.InjectDependencies(this); } - public void Update(SiliconLawBuiState state) + public void Update(EntityUid uid, SiliconLawBuiState state) { state.Laws.Sort(); LawDisplayContainer.Children.Clear(); + foreach (var law in state.Laws) { - var control = new LawDisplay(law); + var control = new LawDisplay(uid, law, state.RadioChannels); LawDisplayContainer.AddChild(control); } } } - diff --git a/Content.Client/Singularity/Systems/SingularitySystem.cs b/Content.Client/Singularity/Systems/SingularitySystem.cs index 3ff0f7c11a4..5293ad499d0 100644 --- a/Content.Client/Singularity/Systems/SingularitySystem.cs +++ b/Content.Client/Singularity/Systems/SingularitySystem.cs @@ -13,8 +13,6 @@ namespace Content.Client.Singularity.EntitySystems; /// public sealed class SingularitySystem : SharedSingularitySystem { - [Dependency] private readonly AppearanceSystem _appearanceSystem = default!; - public override void Initialize() { base.Initialize(); diff --git a/Content.Client/Singularity/Visualizers/RadiationCollectorComponent.cs b/Content.Client/Singularity/Visualizers/RadiationCollectorComponent.cs index 218e10ceca8..4564e789eb9 100644 --- a/Content.Client/Singularity/Visualizers/RadiationCollectorComponent.cs +++ b/Content.Client/Singularity/Visualizers/RadiationCollectorComponent.cs @@ -8,7 +8,7 @@ namespace Content.Client.Singularity.Visualizers; /// [RegisterComponent] [Access(typeof(RadiationCollectorSystem))] -public sealed class RadiationCollectorComponent : Component +public sealed partial class RadiationCollectorComponent : Component { /// /// The key used to index the (de)activation animations played when turning a radiation collector on/off. diff --git a/Content.Client/Smoking/BurnStateVisualsComponent.cs b/Content.Client/Smoking/BurnStateVisualsComponent.cs index 42eb0267853..c32e04e520e 100644 --- a/Content.Client/Smoking/BurnStateVisualsComponent.cs +++ b/Content.Client/Smoking/BurnStateVisualsComponent.cs @@ -1,7 +1,7 @@ namespace Content.Client.Smoking; [RegisterComponent] -public sealed class BurnStateVisualsComponent : Component +public sealed partial class BurnStateVisualsComponent : Component { [DataField("burntIcon")] public string BurntIcon = "burnt-icon"; diff --git a/Content.Client/Spawners/TimedDespawnSystem.cs b/Content.Client/Spawners/TimedDespawnSystem.cs index e899eff0992..14e34dce44e 100644 --- a/Content.Client/Spawners/TimedDespawnSystem.cs +++ b/Content.Client/Spawners/TimedDespawnSystem.cs @@ -6,6 +6,6 @@ public sealed class TimedDespawnSystem : SharedTimedDespawnSystem { protected override bool CanDelete(EntityUid uid) { - return uid.IsClientSide(); + return IsClientSide(uid); } } diff --git a/Content.Client/SprayPainter/SprayPainterSystem.cs b/Content.Client/SprayPainter/SprayPainterSystem.cs index b625f4a667f..4476e2a90ae 100644 --- a/Content.Client/SprayPainter/SprayPainterSystem.cs +++ b/Content.Client/SprayPainter/SprayPainterSystem.cs @@ -4,6 +4,7 @@ using Robust.Shared.Serialization.TypeSerializers.Implementations; using Robust.Shared.Utility; using System.Linq; +using Robust.Shared.Graphics; namespace Content.Client.SprayPainter; diff --git a/Content.Client/Sprite/FadingSpriteComponent.cs b/Content.Client/Sprite/FadingSpriteComponent.cs index ea211df2bbc..23161dc15f6 100644 --- a/Content.Client/Sprite/FadingSpriteComponent.cs +++ b/Content.Client/Sprite/FadingSpriteComponent.cs @@ -6,7 +6,7 @@ namespace Content.Client.Sprite; /// The non-networked client-only component to track active /// [RegisterComponent, Access(typeof(SpriteFadeSystem))] -public sealed class FadingSpriteComponent : Component +public sealed partial class FadingSpriteComponent : Component { [ViewVariables] public float OriginalAlpha; diff --git a/Content.Client/Station/StationSystem.cs b/Content.Client/Station/StationSystem.cs index 85c9272066c..737a12aa600 100644 --- a/Content.Client/Station/StationSystem.cs +++ b/Content.Client/Station/StationSystem.cs @@ -27,6 +27,7 @@ public override void Initialize() private void StationsUpdated(StationsUpdatedEvent ev) { _stations.Clear(); - _stations.UnionWith(ev.Stations); + // TODO this needs to be dona in component states and with the Ensure() methods + _stations.UnionWith(GetEntitySet(ev.Stations)); } } diff --git a/Content.Client/StationRecords/GeneralStationRecordConsoleBoundUserInterface.cs b/Content.Client/StationRecords/GeneralStationRecordConsoleBoundUserInterface.cs index 9330f67b08d..bca3d74b58e 100644 --- a/Content.Client/StationRecords/GeneralStationRecordConsoleBoundUserInterface.cs +++ b/Content.Client/StationRecords/GeneralStationRecordConsoleBoundUserInterface.cs @@ -30,7 +30,7 @@ protected override void Open() private void OnKeySelected(StationRecordKey? key) { - SendMessage(new SelectGeneralStationRecord(key)); + SendMessage(new SelectGeneralStationRecord(EntMan.System().Convert(key))); } private void OnFiltersChanged( diff --git a/Content.Client/StationRecords/GeneralStationRecordConsoleWindow.xaml.cs b/Content.Client/StationRecords/GeneralStationRecordConsoleWindow.xaml.cs index e46806581d3..512bdd0e1cd 100644 --- a/Content.Client/StationRecords/GeneralStationRecordConsoleWindow.xaml.cs +++ b/Content.Client/StationRecords/GeneralStationRecordConsoleWindow.xaml.cs @@ -131,8 +131,7 @@ public void UpdateState(GeneralStationRecordConsoleState state) RecordContainer.RemoveAllChildren(); } } - - private void PopulateRecordListing(Dictionary listing, StationRecordKey? selected) + private void PopulateRecordListing(Dictionary<(NetEntity, uint), string> listing, (NetEntity, uint)? selected) { RecordListing.Clear(); RecordListing.ClearSelected(); @@ -143,7 +142,7 @@ private void PopulateRecordListing(Dictionary listing, { var item = RecordListing.AddItem(name); item.Metadata = key; - if (selected != null && key.ID == selected.Value.ID) + if (selected != null && key.Item1 == selected.Value.Item1 && key.Item2 == selected.Value.Item2) { item.Selected = true; } diff --git a/Content.Client/StationRecords/StationRecordsSystem.cs b/Content.Client/StationRecords/StationRecordsSystem.cs new file mode 100644 index 00000000000..92ec076d0be --- /dev/null +++ b/Content.Client/StationRecords/StationRecordsSystem.cs @@ -0,0 +1,7 @@ +using Content.Shared.StationRecords; + +namespace Content.Client.StationRecords; + +public sealed class StationRecordsSystem : SharedStationRecordsSystem +{ +} diff --git a/Content.Client/Stealth/StealthSystem.cs b/Content.Client/Stealth/StealthSystem.cs index 2dc61f03f29..b60ffc2a408 100644 --- a/Content.Client/Stealth/StealthSystem.cs +++ b/Content.Client/Stealth/StealthSystem.cs @@ -44,7 +44,7 @@ private void SetShader(EntityUid uid, bool enabled, StealthComponent? component if (!enabled) { - if (component.HadOutline) + if (component.HadOutline && !TerminatingOrDeleted(uid)) EnsureComp(uid); return; } @@ -63,7 +63,8 @@ private void OnStartup(EntityUid uid, StealthComponent component, ComponentStart private void OnShutdown(EntityUid uid, StealthComponent component, ComponentShutdown args) { - SetShader(uid, false, component); + if (!Terminating(uid)) + SetShader(uid, false, component); } private void OnShaderRender(EntityUid uid, StealthComponent component, BeforePostShaderRenderEvent args) diff --git a/Content.Client/Storage/ClientStorageComponent.cs b/Content.Client/Storage/ClientStorageComponent.cs deleted file mode 100644 index 8f1697510ab..00000000000 --- a/Content.Client/Storage/ClientStorageComponent.cs +++ /dev/null @@ -1,22 +0,0 @@ -using Content.Client.Animations; -using Content.Shared.DragDrop; -using Content.Shared.Storage; - -namespace Content.Client.Storage -{ - /// - /// Client version of item storage containers, contains a UI which displays stored entities and their size - /// - [RegisterComponent] - [ComponentReference(typeof(SharedStorageComponent))] - public sealed class ClientStorageComponent : SharedStorageComponent - { - private List _storedEntities = new(); - public override IReadOnlyList StoredEntities => _storedEntities; - - public override bool Remove(EntityUid entity) - { - return false; - } - } -} diff --git a/Content.Client/Storage/Components/EntityStorageComponent.cs b/Content.Client/Storage/Components/EntityStorageComponent.cs index 65b510cf6fc..514d5d65957 100644 --- a/Content.Client/Storage/Components/EntityStorageComponent.cs +++ b/Content.Client/Storage/Components/EntityStorageComponent.cs @@ -3,8 +3,8 @@ namespace Content.Client.Storage.Components; -[RegisterComponent, ComponentReference(typeof(SharedEntityStorageComponent))] -public sealed class EntityStorageComponent : SharedEntityStorageComponent +[RegisterComponent] +public sealed partial class EntityStorageComponent : SharedEntityStorageComponent { } diff --git a/Content.Client/Storage/StorageBoundUserInterface.cs b/Content.Client/Storage/StorageBoundUserInterface.cs index bd83670b3cf..1842417a6e2 100644 --- a/Content.Client/Storage/StorageBoundUserInterface.cs +++ b/Content.Client/Storage/StorageBoundUserInterface.cs @@ -4,12 +4,13 @@ using Content.Client.Verbs.UI; using Content.Shared.Input; using Content.Shared.Interaction; +using Content.Shared.Storage; using JetBrains.Annotations; using Robust.Client.GameObjects; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Shared.Input; -using static Content.Shared.Storage.SharedStorageComponent; +using static Content.Shared.Storage.StorageComponent; namespace Content.Client.Storage { @@ -19,8 +20,11 @@ public sealed class StorageBoundUserInterface : BoundUserInterface [ViewVariables] private StorageWindow? _window; + [Dependency] private readonly IEntityManager _entManager = default!; + public StorageBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { + IoCManager.InjectDependencies(this); } protected override void Open() @@ -29,17 +33,22 @@ protected override void Open() if (_window == null) { - _window = new StorageWindow(EntMan) - { - Title = EntMan.GetComponent(Owner).EntityName - }; + // TODO: This is a bit of a mess but storagecomponent got moved to shared and cleaned up a bit. + var controller = IoCManager.Resolve().GetUIController(); + _window = controller.EnsureStorageWindow(Owner); + _window.Title = EntMan.GetComponent(Owner).EntityName; _window.EntityList.GenerateItem += _window.GenerateButton; _window.EntityList.ItemPressed += InteractWithItem; _window.StorageContainerButton.OnPressed += TouchedContainerButton; _window.OnClose += Close; - _window.OpenCenteredLeft(); + + if (EntMan.TryGetComponent(Owner, out var storageComp)) + { + BuildEntityList(Owner, storageComp); + } + } else { @@ -47,6 +56,11 @@ protected override void Open() } } + public void BuildEntityList(EntityUid uid, StorageComponent component) + { + _window?.BuildEntityList(uid, component); + } + public void InteractWithItem(BaseButton.ButtonEventArgs args, ListData cData) { if (cData is not EntityListData { Uid: var entity }) @@ -54,7 +68,7 @@ public void InteractWithItem(BaseButton.ButtonEventArgs args, ListData cData) if (args.Event.Function == EngineKeyFunctions.UIClick) { - SendMessage(new StorageInteractWithItemEvent(entity)); + SendPredictedMessage(new StorageInteractWithItemEvent(_entManager.GetNetEntity(entity))); } else if (EntMan.EntityExists(entity)) { @@ -76,11 +90,11 @@ private void OnButtonPressed(GUIBoundKeyEventArgs args, EntityUid entity) else if (args.Function == ContentKeyFunctions.ActivateItemInWorld) { EntMan.EntityNetManager?.SendSystemNetworkMessage( - new InteractInventorySlotEvent(entity, altInteract: false)); + new InteractInventorySlotEvent(EntMan.GetNetEntity(entity), altInteract: false)); } else if (args.Function == ContentKeyFunctions.AltActivateItemInWorld) { - EntMan.RaisePredictiveEvent(new InteractInventorySlotEvent(entity, altInteract: true)); + EntMan.RaisePredictiveEvent(new InteractInventorySlotEvent(EntMan.GetNetEntity(entity), altInteract: true)); } else { @@ -92,17 +106,7 @@ private void OnButtonPressed(GUIBoundKeyEventArgs args, EntityUid entity) public void TouchedContainerButton(BaseButton.ButtonEventArgs args) { - SendMessage(new StorageInsertItemMessage()); - } - - protected override void UpdateState(BoundUserInterfaceState state) - { - base.UpdateState(state); - - if (_window == null || state is not StorageBoundUserInterfaceState cast) - return; - - _window?.BuildEntityList(cast); + SendPredictedMessage(new StorageInsertItemMessage()); } protected override void Dispose(bool disposing) @@ -113,14 +117,13 @@ protected override void Dispose(bool disposing) if (_window != null) { + _window.Orphan(); _window.EntityList.GenerateItem -= _window.GenerateButton; _window.EntityList.ItemPressed -= InteractWithItem; _window.StorageContainerButton.OnPressed -= TouchedContainerButton; _window.OnClose -= Close; + _window = null; } - - _window?.Dispose(); - _window = null; } } } diff --git a/Content.Client/Storage/Systems/EntityStorageSystem.cs b/Content.Client/Storage/Systems/EntityStorageSystem.cs index 36532b0e9fb..6d37beb0781 100644 --- a/Content.Client/Storage/Systems/EntityStorageSystem.cs +++ b/Content.Client/Storage/Systems/EntityStorageSystem.cs @@ -1,8 +1,42 @@ -using Content.Shared.Storage.EntitySystems; +using System.Diagnostics.CodeAnalysis; +using Content.Client.Storage.Components; +using Content.Shared.Destructible; +using Content.Shared.Foldable; +using Content.Shared.Interaction; +using Content.Shared.Lock; +using Content.Shared.Movement.Events; +using Content.Shared.Storage.Components; +using Content.Shared.Storage.EntitySystems; +using Content.Shared.Verbs; +using Robust.Shared.GameStates; namespace Content.Client.Storage.Systems; public sealed class EntityStorageSystem : SharedEntityStorageSystem { + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnComponentInit); + SubscribeLocalEvent(OnComponentStartup); + SubscribeLocalEvent(OnInteract, after: new[] { typeof(LockSystem) }); + SubscribeLocalEvent(OnLockToggleAttempt); + SubscribeLocalEvent(OnDestruction); + SubscribeLocalEvent>(AddToggleOpenVerb); + SubscribeLocalEvent(OnRelayMovement); + SubscribeLocalEvent(OnFoldAttempt); + SubscribeLocalEvent(OnGetState); + SubscribeLocalEvent(OnHandleState); + } + + public override bool ResolveStorage(EntityUid uid, [NotNullWhen(true)] ref SharedEntityStorageComponent? component) + { + if (component != null) + return true; + + TryComp(uid, out var storage); + component = storage; + return component != null; + } } diff --git a/Content.Client/Storage/Systems/StorageSystem.cs b/Content.Client/Storage/Systems/StorageSystem.cs index 145a7dd9f0d..725c79ffc66 100644 --- a/Content.Client/Storage/Systems/StorageSystem.cs +++ b/Content.Client/Storage/Systems/StorageSystem.cs @@ -1,11 +1,17 @@ using Content.Client.Animations; using Content.Shared.Storage; +using Content.Shared.Storage.EntitySystems; +using Robust.Shared.Timing; namespace Content.Client.Storage.Systems; // TODO kill this is all horrid. -public sealed class StorageSystem : EntitySystem +public sealed class StorageSystem : SharedStorageSystem { + [Dependency] private readonly IGameTiming _timing = default!; + + public event Action? StorageUpdated; + public override void Initialize() { base.Initialize(); @@ -13,24 +19,28 @@ public override void Initialize() SubscribeNetworkEvent(HandleAnimatingInsertingEntities); } + public override void UpdateUI(EntityUid uid, StorageComponent component) + { + // Should we wrap this in some prediction call maybe? + StorageUpdated?.Invoke(uid, component); + } + /// /// Animate the newly stored entities in flying towards this storage's position /// /// public void HandleAnimatingInsertingEntities(AnimateInsertingEntitiesEvent msg) { - if (!TryComp(msg.Storage, out ClientStorageComponent? storage)) - return; - - TryComp(msg.Storage, out TransformComponent? transformComp); + TryComp(GetEntity(msg.Storage), out TransformComponent? transformComp); for (var i = 0; msg.StoredEntities.Count > i; i++) { - var entity = msg.StoredEntities[i]; + var entity = GetEntity(msg.StoredEntities[i]); + var initialPosition = msg.EntityPositions[i]; if (EntityManager.EntityExists(entity) && transformComp != null) { - ReusableAnimations.AnimateEntityPickup(entity, initialPosition, transformComp.LocalPosition, msg.EntityAngles[i], EntityManager); + ReusableAnimations.AnimateEntityPickup(entity, GetCoordinates(initialPosition), transformComp.LocalPosition, msg.EntityAngles[i], EntityManager); } } } diff --git a/Content.Client/Storage/UI/StorageUIController.cs b/Content.Client/Storage/UI/StorageUIController.cs new file mode 100644 index 00000000000..9fc7909c349 --- /dev/null +++ b/Content.Client/Storage/UI/StorageUIController.cs @@ -0,0 +1,60 @@ +using Content.Client.Storage.Systems; +using Content.Shared.Storage; +using Robust.Client.UserInterface.Controllers; + +namespace Content.Client.Storage.UI; + +public sealed class StorageUIController : UIController, IOnSystemChanged +{ + // This is mainly to keep legacy functionality for now. + private readonly Dictionary _storageWindows = new(); + + public override void Initialize() + { + base.Initialize(); + EntityManager.EventBus.SubscribeLocalEvent(OnStorageShutdown); + } + public StorageWindow EnsureStorageWindow(EntityUid uid) + { + if (_storageWindows.TryGetValue(uid, out var window)) + { + UIManager.WindowRoot.AddChild(window); + return window; + } + + window = new StorageWindow(EntityManager); + _storageWindows[uid] = window; + window.OpenCenteredLeft(); + return window; + } + + private void OnStorageShutdown(EntityUid uid, StorageComponent component, ComponentShutdown args) + { + if (!_storageWindows.TryGetValue(uid, out var window)) + return; + + _storageWindows.Remove(uid); + window.Dispose(); + } + + private void OnStorageUpdate(EntityUid uid, StorageComponent component) + { + if (EntityManager.TryGetComponent(uid, out var uiComp) && + uiComp.OpenInterfaces.TryGetValue(StorageComponent.StorageUiKey.Key, out var bui)) + { + var storageBui = (StorageBoundUserInterface) bui; + + storageBui.BuildEntityList(uid, component); + } + } + + public void OnSystemLoaded(StorageSystem system) + { + system.StorageUpdated += OnStorageUpdate; + } + + public void OnSystemUnloaded(StorageSystem system) + { + system.StorageUpdated -= OnStorageUpdate; + } +} diff --git a/Content.Client/Storage/UI/StorageWindow.cs b/Content.Client/Storage/UI/StorageWindow.cs index 83ad6a8e806..1af50cb147d 100644 --- a/Content.Client/Storage/UI/StorageWindow.cs +++ b/Content.Client/Storage/UI/StorageWindow.cs @@ -3,24 +3,25 @@ using Robust.Client.Graphics; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.CustomControls; -using Content.Client.Items.Components; using Content.Client.Stylesheets; using Content.Client.UserInterface.Controls; using Content.Shared.IdentityManagement; using Content.Shared.Item; using Content.Shared.Stacks; +using Content.Shared.Storage; using Robust.Client.UserInterface; +using Robust.Shared.Containers; using static Robust.Client.UserInterface.Controls.BoxContainer; -using static Content.Shared.Storage.SharedStorageComponent; +using Direction = Robust.Shared.Maths.Direction; namespace Content.Client.Storage.UI { /// /// GUI class for client storage component /// - public sealed class StorageWindow : DefaultWindow + public sealed class StorageWindow : FancyWindow { - private IEntityManager _entityManager; + private readonly IEntityManager _entityManager; private readonly Label _information; public readonly ContainerButton StorageContainerButton; @@ -41,7 +42,7 @@ public StorageWindow(IEntityManager entityManager) MouseFilter = MouseFilterMode.Pass, }; - Contents.AddChild(StorageContainerButton); + ContentsContainer.AddChild(StorageContainerButton); var innerContainerButton = new PanelContainer { @@ -54,6 +55,7 @@ public StorageWindow(IEntityManager entityManager) { Orientation = LayoutOrientation.Vertical, MouseFilter = MouseFilterMode.Ignore, + Margin = new Thickness(5), }; StorageContainerButton.AddChild(vBox); @@ -87,20 +89,27 @@ public StorageWindow(IEntityManager entityManager) /// /// Loops through stored entities creating buttons for each, updates information labels /// - public void BuildEntityList(StorageBoundUserInterfaceState state) + public void BuildEntityList(EntityUid entity, StorageComponent component) { - var list = state.StoredEntities.ConvertAll(uid => new EntityListData(uid)); + var storedCount = component.Container.ContainedEntities.Count; + var list = new List(storedCount); + + foreach (var uid in component.Container.ContainedEntities) + { + list.Add(new EntityListData(uid)); + } + EntityList.PopulateList(list); - //Sets information about entire storage container current capacity - if (state.StorageCapacityMax != 0) + // Sets information about entire storage container current capacity + if (component.StorageCapacityMax != 0) { - _information.Text = Loc.GetString("comp-storage-window-volume", ("itemCount", state.StoredEntities.Count), - ("usedVolume", state.StorageSizeUsed), ("maxVolume", state.StorageCapacityMax)); + _information.Text = Loc.GetString("comp-storage-window-volume", ("itemCount", storedCount), + ("usedVolume", component.StorageUsed), ("maxVolume", component.StorageCapacityMax)); } else { - _information.Text = Loc.GetString("comp-storage-window-volume-unlimited", ("itemCount", state.StoredEntities.Count)); + _information.Text = Loc.GetString("comp-storage-window-volume-unlimited", ("itemCount", storedCount)); } } @@ -113,26 +122,26 @@ public void GenerateButton(ListData data, ListContainerButton button) || !_entityManager.EntityExists(entity)) return; - _entityManager.TryGetComponent(entity, out SpriteComponent? sprite); _entityManager.TryGetComponent(entity, out ItemComponent? item); _entityManager.TryGetComponent(entity, out StackComponent? stack); var count = stack?.Count ?? 1; var size = item?.Size; + var spriteView = new SpriteView + { + HorizontalAlignment = HAlignment.Left, + VerticalAlignment = VAlignment.Center, + SetSize = new Vector2(32.0f, 32.0f), + OverrideDirection = Direction.South, + }; + spriteView.SetEntity(entity); button.AddChild(new BoxContainer { Orientation = LayoutOrientation.Horizontal, SeparationOverride = 2, Children = { - new SpriteView - { - HorizontalAlignment = HAlignment.Left, - VerticalAlignment = VAlignment.Center, - SetSize = new Vector2(32.0f, 32.0f), - OverrideDirection = Direction.South, - Sprite = sprite - }, + spriteView, new Label { HorizontalExpand = true, diff --git a/Content.Client/Storage/Visualizers/EntityStorageVisualsComponent.cs b/Content.Client/Storage/Visualizers/EntityStorageVisualsComponent.cs index c3e8e5da9f5..2635608421c 100644 --- a/Content.Client/Storage/Visualizers/EntityStorageVisualsComponent.cs +++ b/Content.Client/Storage/Visualizers/EntityStorageVisualsComponent.cs @@ -2,7 +2,7 @@ namespace Content.Client.Storage.Visualizers; [RegisterComponent] [Access(typeof(EntityStorageVisualizerSystem))] -public sealed class EntityStorageVisualsComponent : Component +public sealed partial class EntityStorageVisualsComponent : Component { /// /// The RSI state used for the base layer of the storage entity sprite while the storage is closed. diff --git a/Content.Client/Store/Ui/StoreListingControl.xaml.cs b/Content.Client/Store/Ui/StoreListingControl.xaml.cs index 073d6274394..bb600588e04 100644 --- a/Content.Client/Store/Ui/StoreListingControl.xaml.cs +++ b/Content.Client/Store/Ui/StoreListingControl.xaml.cs @@ -2,6 +2,7 @@ using Robust.Client.Graphics; using Robust.Client.UserInterface; using Robust.Client.UserInterface.XAML; +using Robust.Shared.Graphics; namespace Content.Client.Store.Ui; diff --git a/Content.Client/Store/Ui/StoreMenu.xaml.cs b/Content.Client/Store/Ui/StoreMenu.xaml.cs index a3f246badba..c59c3a1062a 100644 --- a/Content.Client/Store/Ui/StoreMenu.xaml.cs +++ b/Content.Client/Store/Ui/StoreMenu.xaml.cs @@ -1,15 +1,15 @@ +using System.Linq; +using Content.Client.Actions; using Content.Client.Message; +using Content.Shared.FixedPoint; using Content.Shared.Store; using Robust.Client.AutoGenerated; using Robust.Client.GameObjects; +using Robust.Client.Graphics; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.CustomControls; using Robust.Client.UserInterface.XAML; using Robust.Shared.Prototypes; -using Robust.Client.Graphics; -using Content.Shared.Actions.ActionTypes; -using System.Linq; -using Content.Shared.FixedPoint; namespace Content.Client.Store.Ui; @@ -128,9 +128,12 @@ private void AddListingGui(ListingData listing) } else if (listing.ProductAction != null) { - var action = _prototypeManager.Index(listing.ProductAction); - if (action.Icon != null) + var actionId = _entityManager.Spawn(listing.ProductAction); + if (_entityManager.System().TryGetActionData(actionId, out var action) && + action.Icon != null) + { texture = spriteSys.Frame0(action.Icon); + } } var newListing = new StoreListingControl(listingName, listingDesc, GetListingPriceString(listing), canBuy, texture); diff --git a/Content.Client/Strip/StrippableSystem.cs b/Content.Client/Strip/StrippableSystem.cs index 9aefde6211d..c5083d22046 100644 --- a/Content.Client/Strip/StrippableSystem.cs +++ b/Content.Client/Strip/StrippableSystem.cs @@ -5,7 +5,6 @@ using Content.Shared.Inventory.Events; using Content.Shared.Strip; using Content.Shared.Strip.Components; -using Robust.Client.GameObjects; namespace Content.Client.Strip; @@ -33,7 +32,7 @@ private void OnCuffStateChange(EntityUid uid, StrippableComponent component, ref public void UpdateUi(EntityUid uid, StrippableComponent? component = null, EntityEventArgs? args = null) { - if (!TryComp(uid, out ClientUserInterfaceComponent? uiComp)) + if (!TryComp(uid, out UserInterfaceComponent? uiComp)) return; foreach (var ui in uiComp.OpenInterfaces.Values) diff --git a/Content.Client/Stylesheets/StyleNano.cs b/Content.Client/Stylesheets/StyleNano.cs index 8e6d7ca0f84..d22cd4068bc 100644 --- a/Content.Client/Stylesheets/StyleNano.cs +++ b/Content.Client/Stylesheets/StyleNano.cs @@ -14,6 +14,7 @@ using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.CustomControls; +using Robust.Shared.Graphics; using static Robust.Client.UserInterface.StylesheetHelpers; namespace Content.Client.Stylesheets @@ -372,13 +373,13 @@ public StyleNano(IResourceCache resCache) : base(resCache) { BackgroundColor = new Color(0.25f, 0.25f, 0.25f) }; - progressBarBackground.SetContentMarginOverride(StyleBox.Margin.Vertical, 5); + progressBarBackground.SetContentMarginOverride(StyleBox.Margin.Vertical, 14.5f); var progressBarForeground = new StyleBoxFlat { BackgroundColor = new Color(0.25f, 0.50f, 0.25f) }; - progressBarForeground.SetContentMarginOverride(StyleBox.Margin.Vertical, 5); + progressBarForeground.SetContentMarginOverride(StyleBox.Margin.Vertical, 14.5f); // CheckBox var checkBoxTextureChecked = resCache.GetTexture("/Textures/Interface/Nano/checkbox_checked.svg.96dpi.png"); diff --git a/Content.Client/Stylesheets/StyleSpace.cs b/Content.Client/Stylesheets/StyleSpace.cs index a434907adcd..83b52a83338 100644 --- a/Content.Client/Stylesheets/StyleSpace.cs +++ b/Content.Client/Stylesheets/StyleSpace.cs @@ -52,13 +52,13 @@ public StyleSpace(IResourceCache resCache) : base(resCache) { BackgroundColor = new Color(0.25f, 0.25f, 0.25f) }; - progressBarBackground.SetContentMarginOverride(StyleBox.Margin.Vertical, 5); + progressBarBackground.SetContentMarginOverride(StyleBox.Margin.Vertical, 14.5f); var progressBarForeground = new StyleBoxFlat { BackgroundColor = new Color(0.25f, 0.50f, 0.25f) }; - progressBarForeground.SetContentMarginOverride(StyleBox.Margin.Vertical, 5); + progressBarForeground.SetContentMarginOverride(StyleBox.Margin.Vertical, 14.5f); var textureInvertedTriangle = resCache.GetTexture("/Textures/Interface/Nano/inverted_triangle.svg.png"); diff --git a/Content.Client/SubFloor/TrayRevealedComponent.cs b/Content.Client/SubFloor/TrayRevealedComponent.cs index e1a8b0caf32..5c2f9f596de 100644 --- a/Content.Client/SubFloor/TrayRevealedComponent.cs +++ b/Content.Client/SubFloor/TrayRevealedComponent.cs @@ -4,7 +4,7 @@ namespace Content.Client.SubFloor; /// Added clientside if an entity is revealed for TRay. /// [RegisterComponent] -public sealed class TrayRevealedComponent : Component +public sealed partial class TrayRevealedComponent : Component { } diff --git a/Content.Client/SurveillanceCamera/ActiveSurveillanceCameraMonitor.cs b/Content.Client/SurveillanceCamera/ActiveSurveillanceCameraMonitor.cs index 37df3df0a9a..6b038a3a4ac 100644 --- a/Content.Client/SurveillanceCamera/ActiveSurveillanceCameraMonitor.cs +++ b/Content.Client/SurveillanceCamera/ActiveSurveillanceCameraMonitor.cs @@ -1,7 +1,7 @@ namespace Content.Client.SurveillanceCamera; [RegisterComponent] -public sealed class ActiveSurveillanceCameraMonitorVisualsComponent : Component +public sealed partial class ActiveSurveillanceCameraMonitorVisualsComponent : Component { public float TimeLeft = 10f; diff --git a/Content.Client/SurveillanceCamera/SurveillanceCameraVisualsComponent.cs b/Content.Client/SurveillanceCamera/SurveillanceCameraVisualsComponent.cs index 3883b2e48f9..a4f7316a87f 100644 --- a/Content.Client/SurveillanceCamera/SurveillanceCameraVisualsComponent.cs +++ b/Content.Client/SurveillanceCamera/SurveillanceCameraVisualsComponent.cs @@ -5,8 +5,8 @@ namespace Content.Client.SurveillanceCamera; // Dummy component so that targetted events work on client for // appearance events. [RegisterComponent] -public sealed class SurveillanceCameraVisualsComponent : Component +public sealed partial class SurveillanceCameraVisualsComponent : Component { [DataField("sprites")] - public readonly Dictionary CameraSprites = new(); + public Dictionary CameraSprites = new(); } diff --git a/Content.Client/SurveillanceCamera/UI/SurveillanceCameraMonitorBoundUi.cs b/Content.Client/SurveillanceCamera/UI/SurveillanceCameraMonitorBoundUi.cs index 2213eb832dc..9132dd6ed5f 100644 --- a/Content.Client/SurveillanceCamera/UI/SurveillanceCameraMonitorBoundUi.cs +++ b/Content.Client/SurveillanceCamera/UI/SurveillanceCameraMonitorBoundUi.cs @@ -80,7 +80,9 @@ protected override void UpdateState(BoundUserInterfaceState state) return; } - if (cast.ActiveCamera == null) + var active = EntMan.GetEntity(cast.ActiveCamera); + + if (active == null) { _window.UpdateState(null, cast.Subnets, cast.ActiveAddress, cast.ActiveSubnet, cast.Cameras); @@ -95,17 +97,17 @@ protected override void UpdateState(BoundUserInterfaceState state) { if (_currentCamera == null) { - _eyeLerpingSystem.AddEye(cast.ActiveCamera.Value); - _currentCamera = cast.ActiveCamera; + _eyeLerpingSystem.AddEye(active.Value); + _currentCamera = active; } - else if (_currentCamera != cast.ActiveCamera) + else if (_currentCamera != active) { _eyeLerpingSystem.RemoveEye(_currentCamera.Value); - _eyeLerpingSystem.AddEye(cast.ActiveCamera.Value); - _currentCamera = cast.ActiveCamera; + _eyeLerpingSystem.AddEye(active.Value); + _currentCamera = active; } - if (EntMan.TryGetComponent(cast.ActiveCamera, out var eye)) + if (EntMan.TryGetComponent(active, out var eye)) { _window.UpdateState(eye.Eye, cast.Subnets, cast.ActiveAddress, cast.ActiveSubnet, cast.Cameras); } diff --git a/Content.Client/SurveillanceCamera/UI/SurveillanceCameraMonitorWindow.xaml.cs b/Content.Client/SurveillanceCamera/UI/SurveillanceCameraMonitorWindow.xaml.cs index 1c6e18c7afe..59ac435acf1 100644 --- a/Content.Client/SurveillanceCamera/UI/SurveillanceCameraMonitorWindow.xaml.cs +++ b/Content.Client/SurveillanceCamera/UI/SurveillanceCameraMonitorWindow.xaml.cs @@ -9,6 +9,7 @@ using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.CustomControls; using Robust.Client.UserInterface.XAML; +using Robust.Shared.Graphics; using Robust.Shared.Prototypes; namespace Content.Client.SurveillanceCamera.UI; diff --git a/Content.Client/Tabletop/TabletopSystem.cs b/Content.Client/Tabletop/TabletopSystem.cs index ee0f9646c50..d43111f39c1 100644 --- a/Content.Client/Tabletop/TabletopSystem.cs +++ b/Content.Client/Tabletop/TabletopSystem.cs @@ -109,7 +109,7 @@ public override void FrameUpdate(float frameTime) // Only send new position to server when Delay is reached if (_timePassed >= Delay && _table != null) { - RaisePredictiveEvent(new TabletopMoveEvent(_draggedEntity.Value, clampedCoords, _table.Value)); + RaisePredictiveEvent(new TabletopMoveEvent(GetNetEntity(_draggedEntity.Value), clampedCoords, GetNetEntity(_table.Value))); _timePassed -= Delay; } } @@ -125,15 +125,15 @@ private void OnTabletopPlay(TabletopPlayEvent msg) // Close the currently opened window, if it exists _window?.Close(); - _table = msg.TableUid; + _table = GetEntity(msg.TableUid); // Get the camera entity that the server has created for us - var camera = msg.CameraUid; + var camera = GetEntity(msg.CameraUid); if (!EntityManager.TryGetComponent(camera, out var eyeComponent)) { // If there is no eye, print error and do not open any window - Logger.Error("Camera entity does not have eye component!"); + Log.Error("Camera entity does not have eye component!"); return; } @@ -159,7 +159,7 @@ private void OnWindowClose() { if (_table != null) { - RaiseNetworkEvent(new TabletopStopPlayingEvent(_table.Value)); + RaiseNetworkEvent(new TabletopStopPlayingEvent(GetNetEntity(_table.Value))); } StopDragging(); @@ -182,9 +182,11 @@ private bool OnUseSecondary(in PointerInputCmdArgs args) { if (_draggedEntity != null && _table != null) { - var ev = new TabletopRequestTakeOut(); - ev.Entity = _draggedEntity.Value; - ev.TableUid = _table.Value; + var ev = new TabletopRequestTakeOut + { + Entity = GetNetEntity(_draggedEntity.Value), + TableUid = GetNetEntity(_table.Value) + }; RaiseNetworkEvent(ev); } return false; @@ -196,8 +198,10 @@ private bool OnMouseDown(in PointerInputCmdArgs args) if (_playerManager.LocalPlayer is not {ControlledEntity: { } playerEntity}) return false; + var entity = args.EntityUid; + // Return if can not see table or stunned/no hands - if (!CanSeeTable(playerEntity, _table) || !CanDrag(playerEntity, args.EntityUid, out _)) + if (!CanSeeTable(playerEntity, _table) || !CanDrag(playerEntity, entity, out _)) { return false; } @@ -208,7 +212,7 @@ private bool OnMouseDown(in PointerInputCmdArgs args) return false; } - StartDragging(args.EntityUid, viewport); + StartDragging(entity, viewport); return true; } @@ -247,7 +251,7 @@ private void OnAppearanceChange(EntityUid uid, TabletopDraggableComponent comp, /// The viewport in which we are dragging. private void StartDragging(EntityUid draggedEntity, ScalingViewport viewport) { - RaisePredictiveEvent(new TabletopDraggingPlayerChangedEvent(draggedEntity, true)); + RaisePredictiveEvent(new TabletopDraggingPlayerChangedEvent(GetNetEntity(draggedEntity), true)); _draggedEntity = draggedEntity; _viewport = viewport; @@ -262,8 +266,8 @@ private void StopDragging(bool broadcast = true) // Set the dragging player on the component to noone if (broadcast && _draggedEntity != null && EntityManager.HasComponent(_draggedEntity.Value)) { - RaisePredictiveEvent(new TabletopMoveEvent(_draggedEntity.Value, Transform(_draggedEntity.Value).MapPosition, _table!.Value)); - RaisePredictiveEvent(new TabletopDraggingPlayerChangedEvent(_draggedEntity.Value, false)); + RaisePredictiveEvent(new TabletopMoveEvent(GetNetEntity(_draggedEntity.Value), Transform(_draggedEntity.Value).MapPosition, GetNetEntity(_table!.Value))); + RaisePredictiveEvent(new TabletopDraggingPlayerChangedEvent(GetNetEntity(_draggedEntity.Value), false)); } _draggedEntity = null; diff --git a/Content.Client/Tabletop/UI/TabletopWindow.xaml.cs b/Content.Client/Tabletop/UI/TabletopWindow.xaml.cs index 2b6730958b6..11eb38708ca 100644 --- a/Content.Client/Tabletop/UI/TabletopWindow.xaml.cs +++ b/Content.Client/Tabletop/UI/TabletopWindow.xaml.cs @@ -3,6 +3,7 @@ using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.CustomControls; using Robust.Client.UserInterface.XAML; +using Robust.Shared.Graphics; using Robust.Shared.Maths; namespace Content.Client.Tabletop.UI diff --git a/Content.Client/TextScreen/TextScreenTimerComponent.cs b/Content.Client/TextScreen/TextScreenTimerComponent.cs index c87f1035198..9034f763d17 100644 --- a/Content.Client/TextScreen/TextScreenTimerComponent.cs +++ b/Content.Client/TextScreen/TextScreenTimerComponent.cs @@ -4,7 +4,7 @@ /// This is an active component for tracking /// [RegisterComponent] -public sealed class TextScreenTimerComponent : Component +public sealed partial class TextScreenTimerComponent : Component { } diff --git a/Content.Client/TextScreen/TextScreenVisualsComponent.cs b/Content.Client/TextScreen/TextScreenVisualsComponent.cs index 4a5338cba9c..c3ee23928ce 100644 --- a/Content.Client/TextScreen/TextScreenVisualsComponent.cs +++ b/Content.Client/TextScreen/TextScreenVisualsComponent.cs @@ -6,7 +6,7 @@ namespace Content.Client.TextScreen; [RegisterComponent] -public sealed class TextScreenVisualsComponent : Component +public sealed partial class TextScreenVisualsComponent : Component { /// /// 1/32 - the size of a pixel diff --git a/Content.Client/Toggleable/ToggleableLightVisualsComponent.cs b/Content.Client/Toggleable/ToggleableLightVisualsComponent.cs index 628726c3c13..8acdef1e05b 100644 --- a/Content.Client/Toggleable/ToggleableLightVisualsComponent.cs +++ b/Content.Client/Toggleable/ToggleableLightVisualsComponent.cs @@ -10,7 +10,7 @@ namespace Content.Client.Toggleable; /// visuals. This will modify the color of any attached point lights. /// [RegisterComponent] -public sealed class ToggleableLightVisualsComponent : Component +public sealed partial class ToggleableLightVisualsComponent : Component { /// /// Sprite layer that will have its visibility toggled when this item is toggled. @@ -28,5 +28,5 @@ public sealed class ToggleableLightVisualsComponent : Component /// Layers to add to the sprite of the player that is wearing this entity (while the component is toggled on). /// [DataField("clothingVisuals")] - public readonly Dictionary> ClothingVisuals = new(); + public Dictionary> ClothingVisuals = new(); } diff --git a/Content.Client/Toggleable/ToggleableLightVisualsSystem.cs b/Content.Client/Toggleable/ToggleableLightVisualsSystem.cs index 47c0157499a..e3c17a4fd59 100644 --- a/Content.Client/Toggleable/ToggleableLightVisualsSystem.cs +++ b/Content.Client/Toggleable/ToggleableLightVisualsSystem.cs @@ -13,6 +13,7 @@ namespace Content.Client.Toggleable; public sealed class ToggleableLightVisualsSystem : VisualizerSystem { [Dependency] private readonly SharedItemSystem _itemSys = default!; + [Dependency] private readonly SharedPointLightSystem _lights = default!; public override void Initialize() { @@ -40,9 +41,11 @@ protected override void OnAppearanceChange(EntityUid uid, ToggleableLightVisuals if (TryComp(uid, out PointLightComponent? light)) { DebugTools.Assert(!light.NetSyncEnabled, "light visualizers require point lights without net-sync"); - light.Enabled = enabled; + _lights.SetEnabled(uid, enabled, light); if (enabled && modulate) - light.Color = color; + { + _lights.SetColor(uid, color, light); + } } // update clothing & in-hand visuals. diff --git a/Content.Client/Tools/Components/WeldableComponent.cs b/Content.Client/Tools/Components/WeldableComponent.cs deleted file mode 100644 index 36fd9bc9115..00000000000 --- a/Content.Client/Tools/Components/WeldableComponent.cs +++ /dev/null @@ -1,9 +0,0 @@ -using Content.Shared.Tools.Components; - -namespace Content.Client.Tools.Components; - -[RegisterComponent] -public sealed class WeldableComponent : SharedWeldableComponent -{ - -} diff --git a/Content.Client/Tools/Components/WelderComponent.cs b/Content.Client/Tools/Components/WelderComponent.cs index e69814a9d16..a83a78a5a4d 100644 --- a/Content.Client/Tools/Components/WelderComponent.cs +++ b/Content.Client/Tools/Components/WelderComponent.cs @@ -4,7 +4,7 @@ namespace Content.Client.Tools.Components { [RegisterComponent, Access(typeof(ToolSystem), typeof(WelderStatusControl))] - public sealed class WelderComponent : SharedWelderComponent + public sealed partial class WelderComponent : SharedWelderComponent { [ViewVariables(VVAccess.ReadWrite)] public bool UiUpdateNeeded { get; set; } diff --git a/Content.Client/Tools/Visualizers/WeldableVisualizerSystem.cs b/Content.Client/Tools/Visualizers/WeldableVisualizerSystem.cs index b34c6ffc8a7..6fc90b0da22 100644 --- a/Content.Client/Tools/Visualizers/WeldableVisualizerSystem.cs +++ b/Content.Client/Tools/Visualizers/WeldableVisualizerSystem.cs @@ -1,4 +1,3 @@ -using Content.Client.Tools.Components; using Content.Shared.Tools.Components; using Robust.Client.GameObjects; diff --git a/Content.Client/Traits/ParacusiaSystem.cs b/Content.Client/Traits/ParacusiaSystem.cs index d05820c7ca4..34c7d6859e2 100644 --- a/Content.Client/Traits/ParacusiaSystem.cs +++ b/Content.Client/Traits/ParacusiaSystem.cs @@ -14,7 +14,6 @@ public sealed class ParacusiaSystem : SharedParacusiaSystem [Dependency] private readonly IPlayerManager _player = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly CameraRecoilSystem _camera = default!; public override void Initialize() { diff --git a/Content.Client/Trigger/TimerTriggerVisualizerComponent.cs b/Content.Client/Trigger/TimerTriggerVisualizerComponent.cs index ab8da38abfd..0e5a74b83b1 100644 --- a/Content.Client/Trigger/TimerTriggerVisualizerComponent.cs +++ b/Content.Client/Trigger/TimerTriggerVisualizerComponent.cs @@ -5,7 +5,7 @@ namespace Content.Client.Trigger; [RegisterComponent] [Access(typeof(TimerTriggerVisualizerSystem))] -public sealed class TimerTriggerVisualsComponent : Component +public sealed partial class TimerTriggerVisualsComponent : Component { /// /// The key used to index the priming animation. diff --git a/Content.Client/UserInterface/Controls/DirectionIcon.cs b/Content.Client/UserInterface/Controls/DirectionIcon.cs index c1c17bdbcb0..a6cc428091a 100644 --- a/Content.Client/UserInterface/Controls/DirectionIcon.cs +++ b/Content.Client/UserInterface/Controls/DirectionIcon.cs @@ -1,6 +1,7 @@ using System.Numerics; using Robust.Client.Graphics; using Robust.Client.UserInterface.Controls; +using Direction = Robust.Shared.Maths.Direction; namespace Content.Client.UserInterface.Controls; diff --git a/Content.Client/UserInterface/Controls/FancyTree/FancyTree.xaml.cs b/Content.Client/UserInterface/Controls/FancyTree/FancyTree.xaml.cs index 64e482f37ec..6cf7622ea4e 100644 --- a/Content.Client/UserInterface/Controls/FancyTree/FancyTree.xaml.cs +++ b/Content.Client/UserInterface/Controls/FancyTree/FancyTree.xaml.cs @@ -7,6 +7,7 @@ using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; +using Robust.Shared.Graphics; using Robust.Shared.Timing; using Robust.Shared.Utility; diff --git a/Content.Client/UserInterface/Controls/MenuButton.cs b/Content.Client/UserInterface/Controls/MenuButton.cs index a907f6e8010..05f6ca53f47 100644 --- a/Content.Client/UserInterface/Controls/MenuButton.cs +++ b/Content.Client/UserInterface/Controls/MenuButton.cs @@ -3,6 +3,7 @@ using Robust.Client.Graphics; using Robust.Client.Input; using Robust.Client.UserInterface.Controls; +using Robust.Shared.Graphics; using Robust.Shared.Input; using Robust.Shared.Utility; @@ -13,7 +14,6 @@ public sealed class MenuButton : ContainerButton [Dependency] private readonly IInputManager _inputManager = default!; public const string StyleClassLabelTopButton = "topButtonLabel"; public const string StyleClassRedTopButton = "topButtonLabel"; - private const float CustomTooltipDelay = 0.4f; private static readonly Color ColorNormal = Color.FromHex("#7b7e7b"); private static readonly Color ColorRedNormal = Color.FromHex("#FEFEFE"); @@ -48,7 +48,6 @@ public BoundKeyFunction BoundKey public MenuButton() { IoCManager.InjectDependencies(this); - TooltipDelay = CustomTooltipDelay; _buttonIcon = new TextureRect() { TextureScale = new Vector2(0.5f, 0.5f), diff --git a/Content.Client/UserInterface/Controls/SlotControl.cs b/Content.Client/UserInterface/Controls/SlotControl.cs index 193a9908d08..4caabaa788e 100644 --- a/Content.Client/UserInterface/Controls/SlotControl.cs +++ b/Content.Client/UserInterface/Controls/SlotControl.cs @@ -1,7 +1,6 @@ using System.Numerics; using Content.Client.Cooldown; using Content.Client.UserInterface.Systems.Inventory.Controls; -using Robust.Client.ResourceManagement; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Shared.Input; @@ -192,10 +191,10 @@ public void ClearHover() var tempQualifier = HoverSpriteView.Sprite; if (tempQualifier != null) { - IoCManager.Resolve().DeleteEntity(tempQualifier.Owner); + IoCManager.Resolve().QueueDeleteEntity(tempQualifier.Owner); } - HoverSpriteView.Sprite = null; + HoverSpriteView.SetEntity(null); } private void OnButtonPressed(GUIBoundKeyEventArgs args) diff --git a/Content.Client/UserInterface/Fragments/UIFragment.cs b/Content.Client/UserInterface/Fragments/UIFragment.cs index afdb105783f..cadedb38c94 100644 --- a/Content.Client/UserInterface/Fragments/UIFragment.cs +++ b/Content.Client/UserInterface/Fragments/UIFragment.cs @@ -14,7 +14,7 @@ namespace Content.Client.UserInterface.Fragments; /// /// [ImplicitDataDefinitionForInheritors] -public abstract class UIFragment +public abstract partial class UIFragment { public abstract Control GetUIFragmentRoot(); diff --git a/Content.Client/UserInterface/Fragments/UiFragmentComponent.cs b/Content.Client/UserInterface/Fragments/UiFragmentComponent.cs index 4b7f5fcebd8..ba2f80d98f0 100644 --- a/Content.Client/UserInterface/Fragments/UiFragmentComponent.cs +++ b/Content.Client/UserInterface/Fragments/UiFragmentComponent.cs @@ -8,7 +8,7 @@ /// /// [RegisterComponent] -public sealed class UIFragmentComponent : Component +public sealed partial class UIFragmentComponent : Component { [DataField("ui", true)] public UIFragment? Ui; diff --git a/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs b/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs index ea91e959518..57ec0c40d5e 100644 --- a/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs +++ b/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs @@ -13,7 +13,6 @@ using Content.Client.UserInterface.Systems.Actions.Windows; using Content.Client.UserInterface.Systems.Gameplay; using Content.Shared.Actions; -using Content.Shared.Actions.ActionTypes; using Content.Shared.Input; using Robust.Client.GameObjects; using Robust.Client.Graphics; @@ -21,6 +20,7 @@ using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controllers; using Robust.Client.UserInterface.Controls; +using Robust.Shared.Graphics.RSI; using Robust.Shared.Input; using Robust.Shared.Input.Binding; using Robust.Shared.Timing; @@ -65,7 +65,7 @@ public sealed class ActionUIController : UIController, IOnStateChanged /// Action slot we are currently selecting a target for. /// - public TargetedAction? SelectingTargetFor { get; private set; } + public EntityUid? SelectingTargetFor { get; private set; } public ActionUIController() { @@ -175,7 +175,7 @@ private bool TargetingCancel(in PointerInputCmdArgs args) /// private bool TargetingOnUse(in PointerInputCmdArgs args) { - if (!_timing.IsFirstTimePredicted || _actionsSystem == null || SelectingTargetFor is not { } action) + if (!_timing.IsFirstTimePredicted || _actionsSystem == null || SelectingTargetFor is not { } actionId) return false; if (_playerManager.LocalPlayer?.ControlledEntity is not { } user) @@ -184,6 +184,12 @@ private bool TargetingOnUse(in PointerInputCmdArgs args) if (!EntityManager.TryGetComponent(user, out ActionsComponent? comp)) return false; + if (!_actionsSystem.TryGetActionData(actionId, out var baseAction) || + baseAction is not BaseTargetActionComponent action) + { + return false; + } + // Is the action currently valid? if (!action.Enabled || action.Charges is 0 @@ -196,19 +202,19 @@ private bool TargetingOnUse(in PointerInputCmdArgs args) switch (action) { - case WorldTargetAction mapTarget: - return TryTargetWorld(args, mapTarget, user, comp) || !action.InteractOnMiss; + case WorldTargetActionComponent mapTarget: + return TryTargetWorld(args, actionId, mapTarget, user, comp) || !mapTarget.InteractOnMiss; - case EntityTargetAction entTarget: - return TryTargetEntity(args, entTarget, user, comp) || !action.InteractOnMiss; + case EntityTargetActionComponent entTarget: + return TryTargetEntity(args, actionId, entTarget, user, comp) || !entTarget.InteractOnMiss; default: - Logger.Error($"Unknown targeting action: {action.GetType()}"); + Logger.Error($"Unknown targeting action: {actionId.GetType()}"); return false; } } - private bool TryTargetWorld(in PointerInputCmdArgs args, WorldTargetAction action, EntityUid user, ActionsComponent actionComp) + private bool TryTargetWorld(in PointerInputCmdArgs args, EntityUid actionId, WorldTargetActionComponent action, EntityUid user, ActionsComponent actionComp) { if (_actionsSystem == null) return false; @@ -232,10 +238,10 @@ private bool TryTargetWorld(in PointerInputCmdArgs args, WorldTargetAction actio action.Event.Performer = user; } - _actionsSystem.PerformAction(user, actionComp, action, action.Event, _timing.CurTime); + _actionsSystem.PerformAction(user, actionComp, actionId, action, action.Event, _timing.CurTime); } else - EntityManager.RaisePredictiveEvent(new RequestPerformActionEvent(action, coords)); + EntityManager.RaisePredictiveEvent(new RequestPerformActionEvent(EntityManager.GetNetEntity(actionId), EntityManager.GetNetCoordinates(coords))); if (!action.Repeat) StopTargeting(); @@ -243,12 +249,14 @@ private bool TryTargetWorld(in PointerInputCmdArgs args, WorldTargetAction actio return true; } - private bool TryTargetEntity(in PointerInputCmdArgs args, EntityTargetAction action, EntityUid user, ActionsComponent actionComp) + private bool TryTargetEntity(in PointerInputCmdArgs args, EntityUid actionId, EntityTargetActionComponent action, EntityUid user, ActionsComponent actionComp) { if (_actionsSystem == null) return false; - if (!_actionsSystem.ValidateEntityTarget(user, args.EntityUid, action)) + var entity = args.EntityUid; + + if (!_actionsSystem.ValidateEntityTarget(user, entity, action)) { if (action.DeselectOnMiss) StopTargeting(); @@ -260,14 +268,14 @@ private bool TryTargetEntity(in PointerInputCmdArgs args, EntityTargetAction act { if (action.Event != null) { - action.Event.Target = args.EntityUid; + action.Event.Target = entity; action.Event.Performer = user; } - _actionsSystem.PerformAction(user, actionComp, action, action.Event, _timing.CurTime); + _actionsSystem.PerformAction(user, actionComp, actionId, action, action.Event, _timing.CurTime); } else - EntityManager.RaisePredictiveEvent(new RequestPerformActionEvent(action, args.EntityUid)); + EntityManager.RaisePredictiveEvent(new RequestPerformActionEvent(EntityManager.GetNetEntity(actionId), EntityManager.GetNetEntity(args.EntityUid))); if (!action.Repeat) StopTargeting(); @@ -322,13 +330,17 @@ public void OnStateExited(GameplayState state) private void TriggerAction(int index) { - if (CurrentPage[index] is not { } type) + if (_actionsSystem == null || + CurrentPage[index] is not { } actionId || + !_actionsSystem.TryGetActionData(actionId, out var baseAction)) + { return; + } - if (type is TargetedAction action) - ToggleTargeting(action); + if (baseAction is BaseTargetActionComponent action) + ToggleTargeting(actionId, action); else - _actionsSystem?.TriggerAction(type); + _actionsSystem?.TriggerAction(actionId, baseAction); } private void ChangePage(int index) @@ -360,14 +372,14 @@ private void OnRightArrowPressed(ButtonEventArgs args) ChangePage(_currentPageIndex + 1); } - private void AppendAction(ActionType action) + private void AppendAction(EntityUid action) { if (_container == null) return; foreach (var button in _container.GetButtons()) { - if (button.Action != null) + if (button.ActionId != null) continue; SetAction(button, action); @@ -388,39 +400,45 @@ private void AppendAction(ActionType action) } } - private void OnActionAdded(ActionType action) + private void OnActionAdded(EntityUid actionId) { + if (_actionsSystem == null || + !_actionsSystem.TryGetActionData(actionId, out var action)) + { + return; + } + // if the action is toggled when we add it, start targeting - if (action is TargetedAction targetAction && action.Toggled) - StartTargeting(targetAction); + if (action is BaseTargetActionComponent targetAction && action.Toggled) + StartTargeting(actionId, targetAction); foreach (var page in _pages) { for (var i = 0; i < page.Size; i++) { - if (page[i] == action) + if (page[i] == actionId) { return; } } } - AppendAction(action); + AppendAction(actionId); SearchAndDisplay(); } - private void OnActionRemoved(ActionType action) + private void OnActionRemoved(EntityUid actionId) { if (_container == null) return; // stop targeting if the action is removed - if (action == SelectingTargetFor) + if (actionId == SelectingTargetFor) StopTargeting(); foreach (var button in _container.GetButtons()) { - if (button.Action == action) + if (button.ActionId == actionId) { SetAction(button, null); } @@ -430,7 +448,7 @@ private void OnActionRemoved(ActionType action) { for (var i = 0; i < page.Size; i++) { - if (page[i] == action) + if (page[i] == actionId) { page[i] = null; } @@ -440,15 +458,15 @@ private void OnActionRemoved(ActionType action) SearchAndDisplay(); } - private void OnActionReplaced(ActionType existing, ActionType action) + private void OnActionReplaced(EntityUid actionId) { if (_container == null) return; foreach (var button in _container.GetButtons()) { - if (button.Action == existing) - button.UpdateData(action); + if (button.ActionId == actionId) + button.UpdateData(actionId); } } @@ -499,15 +517,15 @@ private void UpdateFilterLabel() } } - private bool MatchesFilter(ActionType action, Filters filter) + private bool MatchesFilter(BaseActionComponent action, Filters filter) { return filter switch { Filters.Enabled => action.Enabled, Filters.Item => action.Provider != null && action.Provider != _playerManager.LocalPlayer?.ControlledEntity, Filters.Innate => action.Provider == null || action.Provider == _playerManager.LocalPlayer?.ControlledEntity, - Filters.Instant => action is InstantAction, - Filters.Targeted => action is TargetedAction, + Filters.Instant => action is InstantActionComponent, + Filters.Targeted => action is BaseTargetActionComponent, _ => throw new ArgumentOutOfRangeException(nameof(filter), filter, null) }; } @@ -518,7 +536,7 @@ private void ClearList() _window.ResultsGrid.RemoveAllChildren(); } - private void PopulateActions(IEnumerable actions) + private void PopulateActions(IEnumerable<(EntityUid Id, BaseActionComponent Comp)> actions) { if (_window == null) return; @@ -529,7 +547,7 @@ private void PopulateActions(IEnumerable actions) { var button = new ActionButton {Locked = true}; - button.UpdateData(action); + button.UpdateData(action.Id); button.ActionPressed += OnWindowActionPressed; button.ActionUnpressed += OnWindowActionUnPressed; button.ActionFocusExited += OnWindowActionFocusExisted; @@ -538,16 +556,14 @@ private void PopulateActions(IEnumerable actions) } } - private void SearchAndDisplay(ActionsComponent? component = null) + private void SearchAndDisplay() { - if (_window == null) + if (_window is not { Disposed: false } || _actionsSystem == null) return; var search = _window.SearchBar.Text; var filters = _window.FilterButton.SelectedKeys; - - IEnumerable? actions = (component ?? _actionsSystem?.PlayerActions)?.Actions; - actions ??= Array.Empty(); + var actions = _actionsSystem.GetClientActions(); if (filters.Count == 0 && string.IsNullOrWhiteSpace(search)) { @@ -557,45 +573,46 @@ private void SearchAndDisplay(ActionsComponent? component = null) actions = actions.Where(action => { - if (filters.Count > 0 && filters.Any(filter => !MatchesFilter(action, filter))) + if (filters.Count > 0 && filters.Any(filter => !MatchesFilter(action.Comp, filter))) return false; - if (action.Keywords.Any(keyword => search.Contains(keyword, StringComparison.OrdinalIgnoreCase))) + if (action.Comp.Keywords.Any(keyword => search.Contains(keyword, StringComparison.OrdinalIgnoreCase))) return true; - if (action.DisplayName.Contains(search, StringComparison.OrdinalIgnoreCase)) + var name = EntityManager.GetComponent(action.Id).EntityName; + if (name.Contains(search, StringComparison.OrdinalIgnoreCase)) return true; - if (action.Provider == null || action.Provider == _playerManager.LocalPlayer?.ControlledEntity) + if (action.Comp.Provider == null || action.Comp.Provider == _playerManager.LocalPlayer?.ControlledEntity) return false; - var name = EntityManager.GetComponent(action.Provider.Value).EntityName; - return name.Contains(search, StringComparison.OrdinalIgnoreCase); + var providerName = EntityManager.GetComponent(action.Comp.Provider.Value).EntityName; + return providerName.Contains(search, StringComparison.OrdinalIgnoreCase); }); PopulateActions(actions); } - private void SetAction(ActionButton button, ActionType? type) + private void SetAction(ActionButton button, EntityUid? actionId) { int position; - if (type == null) + if (actionId == null) { button.ClearData(); if (_container?.TryGetButtonIndex(button, out position) ?? false) { - CurrentPage[position] = type; + CurrentPage[position] = actionId; } return; } - if (button.TryReplaceWith(type) && + if (button.TryReplaceWith(actionId.Value) && _container != null && _container.TryGetButtonIndex(button, out position)) { - CurrentPage[position] = type; + CurrentPage[position] = actionId; } } @@ -603,7 +620,7 @@ private void DragAction() { if (UIManager.CurrentlyHovered is ActionButton button) { - if (!_menuDragHelper.IsDragging || _menuDragHelper.Dragged?.Action is not { } type) + if (!_menuDragHelper.IsDragging || _menuDragHelper.Dragged?.ActionId is not { } type) { _menuDragHelper.EndDrag(); return; @@ -669,7 +686,7 @@ private void OnActionPressed(GUIBoundKeyEventArgs args, ActionButton button) { if (args.Function == EngineKeyFunctions.UIClick) { - if (button.Action == null) + if (button.ActionId == null) { var ev = new FillActionSlotEvent(); EntityManager.EventBus.RaiseEvent(EventSource.Local, ev); @@ -692,25 +709,28 @@ private void OnActionPressed(GUIBoundKeyEventArgs args, ActionButton button) private void OnActionUnpressed(GUIBoundKeyEventArgs args, ActionButton button) { - if (args.Function != EngineKeyFunctions.UIClick) + if (args.Function != EngineKeyFunctions.UIClick || _actionsSystem == null) return; if (UIManager.CurrentlyHovered == button) { _menuDragHelper.EndDrag(); - if (button.Action is TargetedAction action) + if (_actionsSystem.TryGetActionData(button.ActionId, out var baseAction)) { - // for target actions, we go into "select target" mode, we don't - // message the server until we actually pick our target. + if (baseAction is BaseTargetActionComponent action) + { + // for target actions, we go into "select target" mode, we don't + // message the server until we actually pick our target. - // if we're clicking the same thing we're already targeting for, then we simply cancel - // targeting - ToggleTargeting(action); - return; - } + // if we're clicking the same thing we're already targeting for, then we simply cancel + // targeting + ToggleTargeting(button.ActionId.Value, action); + return; + } - _actionsSystem?.TriggerAction(button.Action); + _actionsSystem?.TriggerAction(button.ActionId.Value, baseAction); + } } else { @@ -722,12 +742,14 @@ private void OnActionUnpressed(GUIBoundKeyEventArgs args, ActionButton button) private bool OnMenuBeginDrag() { - if (_menuDragHelper.Dragged?.Action is { } action) + if (_actionsSystem != null && _actionsSystem.TryGetActionData(_menuDragHelper.Dragged?.ActionId, out var action)) { - if (action.EntityIcon != null) + var entIcon = action.EntityIcon; + + if (entIcon != null) { - _dragShadow.Texture = EntityManager.GetComponent(action.EntityIcon.Value).Icon? - .GetFrame(RSI.State.Direction.South, 0); + _dragShadow.Texture = EntityManager.GetComponent(entIcon.Value).Icon? + .GetFrame(RsiDirection.South, 0); } else if (action.Icon != null) { @@ -828,7 +850,7 @@ private void AssignSlots(List assignments) { foreach (ref var assignment in CollectionsMarshal.AsSpan(assignments)) { - _pages[assignment.Hotbar][assignment.Slot] = assignment.Action; + _pages[assignment.Hotbar][assignment.Slot] = assignment.ActionId; } _container?.SetActionData(_pages[_currentPageIndex]); @@ -864,7 +886,7 @@ private void OnComponentLinked(ActionsComponent component) { LoadDefaultActions(component); _container?.SetActionData(_pages[DefaultPageIndex]); - SearchAndDisplay(component); + SearchAndDisplay(); } private void OnComponentUnlinked() @@ -876,7 +898,10 @@ private void OnComponentUnlinked() private void LoadDefaultActions(ActionsComponent component) { - var actions = component.Actions.Where(actionType => actionType.AutoPopulate).ToList(); + if (_actionsSystem == null) + return; + + var actions = _actionsSystem.GetClientActions().Where(action => action.Comp.AutoPopulate).ToList(); var offset = 0; var totalPages = _pages.Count; @@ -892,7 +917,7 @@ private void LoadDefaultActions(ActionsComponent component) var actionIndex = slot + offset; if (actionIndex < actions.Count) { - page[slot] = actions[slot + offset]; + page[slot] = actions[slot + offset].Id; } else { @@ -916,33 +941,35 @@ private void LoadDefaultActions(ActionsComponent component) /// If currently targeting with no slot or a different slot, switches to /// targeting with the specified slot. /// - private void ToggleTargeting(TargetedAction action) + private void ToggleTargeting(EntityUid actionId, BaseTargetActionComponent action) { - if (SelectingTargetFor == action) + if (SelectingTargetFor == actionId) { StopTargeting(); return; } - StartTargeting(action); + StartTargeting(actionId, action); } /// /// Puts us in targeting mode, where we need to pick either a target point or entity /// - private void StartTargeting(TargetedAction action) + private void StartTargeting(EntityUid actionId, BaseTargetActionComponent action) { // If we were targeting something else we should stop StopTargeting(); - SelectingTargetFor = action; + SelectingTargetFor = actionId; // override "held-item" overlay + var provider = action.Provider; + if (action.TargetingIndicator && _overlays.TryGetOverlay(out var handOverlay)) { if (action.ItemIconStyle == ItemActionIconStyle.BigItem && action.Provider != null) { - handOverlay.EntityOverride = action.Provider; + handOverlay.EntityOverride = provider; } else if (action.Toggled && action.IconOn != null) handOverlay.IconOverride = _spriteSystem.Frame0(action.IconOn); @@ -955,13 +982,14 @@ private void StartTargeting(TargetedAction action) // - Add a yes/no checkmark where the HandItemOverlay usually is // Highlight valid entity targets - if (action is not EntityTargetAction entityAction) + if (action is not EntityTargetActionComponent entityAction) return; Func? predicate = null; + var attachedEnt = entityAction.AttachedEntity; if (!entityAction.CanTargetSelf) - predicate = e => e != entityAction.AttachedEntity; + predicate = e => e != attachedEnt; var range = entityAction.CheckCanAccess ? action.Range : -1; @@ -992,20 +1020,20 @@ private void StopTargeting() //TODO: Serialize this shit private sealed class ActionPage { - private readonly ActionType?[] _data; + private readonly EntityUid?[] _data; public ActionPage(int size) { - _data = new ActionType?[size]; + _data = new EntityUid?[size]; } - public ActionType? this[int index] + public EntityUid? this[int index] { get => _data[index]; set => _data[index] = value; } - public static implicit operator ActionType?[](ActionPage p) + public static implicit operator EntityUid?[](ActionPage p) { return p._data.ToArray(); } diff --git a/Content.Client/UserInterface/Systems/Actions/Controls/ActionButton.cs b/Content.Client/UserInterface/Systems/Actions/Controls/ActionButton.cs index 4030326420f..2af079ccce4 100644 --- a/Content.Client/UserInterface/Systems/Actions/Controls/ActionButton.cs +++ b/Content.Client/UserInterface/Systems/Actions/Controls/ActionButton.cs @@ -1,29 +1,34 @@ using System.Numerics; +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.ActionTypes; using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Client.Utility; +using Robust.Shared.Graphics; using Robust.Shared.Input; using Robust.Shared.Timing; using Robust.Shared.Utility; using static Robust.Client.UserInterface.Controls.BoxContainer; using static Robust.Client.UserInterface.Controls.TextureRect; +using Direction = Robust.Shared.Maths.Direction; namespace Content.Client.UserInterface.Systems.Actions.Controls; public sealed class ActionButton : Control { + private IEntityManager? _entities; + private ActionUIController Controller => UserInterfaceManager.GetUIController(); + private IEntityManager Entities => _entities ??= IoCManager.Resolve(); + private ActionsSystem Actions => Entities.System(); private bool _beingHovered; private bool _depressed; private bool _toggled; - private bool _spriteViewDirty; public BoundKeyFunction? KeyBind { @@ -48,7 +53,7 @@ public BoundKeyFunction? KeyBind private readonly SpriteView _smallItemSpriteView; private readonly SpriteView _bigItemSpriteView; - public ActionType? Action { get; private set; } + public EntityUid? ActionId { get; private set; } public bool Locked { get; set; } public event Action? ActionPressed; @@ -153,7 +158,6 @@ public ActionButton() OnUnpressed(args); }; - TooltipDelay = 0.5f; TooltipSupplier = SupplyTooltip; } @@ -176,11 +180,11 @@ private void OnUnpressed(GUIBoundKeyEventArgs args) private Control? SupplyTooltip(Control sender) { - if (Action == null) + if (!Entities.TryGetComponent(ActionId, out MetaDataComponent? metadata)) return null; - var name = FormattedMessage.FromMarkupPermissive(Loc.GetString(Action.DisplayName)); - var decr = FormattedMessage.FromMarkupPermissive(Loc.GetString(Action.Description)); + var name = FormattedMessage.FromMarkupPermissive(Loc.GetString(metadata.EntityName)); + var decr = FormattedMessage.FromMarkupPermissive(Loc.GetString(metadata.EntityDescription)); return new ActionAlertTooltip(name, decr); } @@ -192,49 +196,36 @@ protected override void ControlFocusExited() private void UpdateItemIcon() { - var entityManager = IoCManager.Resolve(); - if (Action?.EntityIcon != null && !entityManager.EntityExists(Action.EntityIcon)) - { - // This is almost certainly because a player received/processed their own actions component state before - // being send the entity in their inventory that enabled this action. - - // Defer updating icons to the next FrameUpdate(). - _spriteViewDirty = true; - return; - } - - if (Action?.EntityIcon == null || - !entityManager.TryGetComponent(Action.EntityIcon.Value, out SpriteComponent? sprite)) + if (!Actions.TryGetActionData(ActionId, out var action) || + action is not { EntityIcon: { } entity } || + !Entities.HasComponent(entity)) { _bigItemSpriteView.Visible = false; - _bigItemSpriteView.Sprite = null; + _bigItemSpriteView.SetEntity(null); _smallItemSpriteView.Visible = false; - _smallItemSpriteView.Sprite = null; + _smallItemSpriteView.SetEntity(null); } else { - switch (Action.ItemIconStyle) + switch (action.ItemIconStyle) { case ItemActionIconStyle.BigItem: _bigItemSpriteView.Visible = true; - _bigItemSpriteView.Sprite = sprite; + _bigItemSpriteView.SetEntity(entity); _smallItemSpriteView.Visible = false; - _smallItemSpriteView.Sprite = null; + _smallItemSpriteView.SetEntity(null); break; case ItemActionIconStyle.BigAction: - _bigItemSpriteView.Visible = false; - _bigItemSpriteView.Sprite = null; + _bigItemSpriteView.SetEntity(null); _smallItemSpriteView.Visible = true; - _smallItemSpriteView.Sprite = sprite; + _smallItemSpriteView.SetEntity(entity); break; - case ItemActionIconStyle.NoItem: - _bigItemSpriteView.Visible = false; - _bigItemSpriteView.Sprite = null; + _bigItemSpriteView.SetEntity(null); _smallItemSpriteView.Visible = false; - _smallItemSpriteView.Sprite = null; + _smallItemSpriteView.SetEntity(null); break; } } @@ -242,17 +233,17 @@ private void UpdateItemIcon() private void SetActionIcon(Texture? texture) { - if (texture == null || Action == null) + if (!Actions.TryGetActionData(ActionId, out var action) || texture == null) { _bigActionIcon.Texture = null; _bigActionIcon.Visible = false; _smallActionIcon.Texture = null; _smallActionIcon.Visible = false; } - else if (Action.EntityIcon != null && Action.ItemIconStyle == ItemActionIconStyle.BigItem) + else if (action.EntityIcon != null && action.ItemIconStyle == ItemActionIconStyle.BigItem) { _smallActionIcon.Texture = texture; - _smallActionIcon.Modulate = Action.IconColor; + _smallActionIcon.Modulate = action.IconColor; _smallActionIcon.Visible = true; _bigActionIcon.Texture = null; _bigActionIcon.Visible = false; @@ -260,7 +251,7 @@ private void SetActionIcon(Texture? texture) else { _bigActionIcon.Texture = texture; - _bigActionIcon.Modulate = Action.IconColor; + _bigActionIcon.Modulate = action.IconColor; _bigActionIcon.Visible = true; _smallActionIcon.Texture = null; _smallActionIcon.Visible = false; @@ -271,39 +262,39 @@ public void UpdateIcons() { UpdateItemIcon(); - if (Action == null) + if (!Actions.TryGetActionData(ActionId, out var action)) { SetActionIcon(null); return; } - if ((Controller.SelectingTargetFor == Action || Action.Toggled) && Action.IconOn != null) - SetActionIcon(Action.IconOn.Frame0()); + if ((Controller.SelectingTargetFor == ActionId || action.Toggled) && action.IconOn != null) + SetActionIcon(action.IconOn.Frame0()); else - SetActionIcon(Action.Icon?.Frame0()); + SetActionIcon(action.Icon?.Frame0()); } - public bool TryReplaceWith(ActionType action) + public bool TryReplaceWith(EntityUid actionId) { if (Locked) { return false; } - UpdateData(action); + UpdateData(actionId); return true; } - public void UpdateData(ActionType action) + public void UpdateData(EntityUid actionId) { - Action = action; + ActionId = actionId; Label.Visible = true; UpdateIcons(); } public void ClearData() { - Action = null; + ActionId = null; Cooldown.Visible = false; Cooldown.Progress = 1; Label.Visible = false; @@ -314,20 +305,19 @@ protected override void FrameUpdate(FrameEventArgs args) { base.FrameUpdate(args); - if (_spriteViewDirty) + if (!Actions.TryGetActionData(ActionId, out var action)) { - _spriteViewDirty = false; - UpdateIcons(); + return; } - if (Action?.Cooldown != null) + if (action.Cooldown != null) { - Cooldown.FromTime(Action.Cooldown.Value.Start, Action.Cooldown.Value.End); + Cooldown.FromTime(action.Cooldown.Value.Start, action.Cooldown.Value.End); } - if (Action != null && _toggled != Action.Toggled) + if (ActionId != null && _toggled != action.Toggled) { - _toggled = Action.Toggled; + _toggled = action.Toggled; } } @@ -354,7 +344,7 @@ protected override void MouseExited() public void Depress(GUIBoundKeyEventArgs args, bool depress) { // action can still be toggled if it's allowed to stay selected - if (Action is not {Enabled: true}) + if (!Actions.TryGetActionData(ActionId, out var action) || action is not { Enabled: true }) return; if (_depressed && !depress) @@ -372,14 +362,14 @@ public void DrawModeChanged() HighlightRect.Visible = _beingHovered; // always show the normal empty button style if no action in this slot - if (Action == null) + if (!Actions.TryGetActionData(ActionId, out var action)) { SetOnlyStylePseudoClass(ContainerButton.StylePseudoClassNormal); return; } // show a hover only if the action is usable or another action is being dragged on top of this - if (_beingHovered && (Controller.IsDragging || Action.Enabled)) + if (_beingHovered && (Controller.IsDragging || action.Enabled)) { SetOnlyStylePseudoClass(ContainerButton.StylePseudoClassHover); } @@ -394,16 +384,16 @@ public void DrawModeChanged() } // if it's toggled on, always show the toggled on style (currently same as depressed style) - if (Action.Toggled || Controller.SelectingTargetFor == Action) + if (action.Toggled || Controller.SelectingTargetFor == ActionId) { // when there's a toggle sprite, we're showing that sprite instead of highlighting this slot - SetOnlyStylePseudoClass(Action.IconOn != null + SetOnlyStylePseudoClass(action.IconOn != null ? ContainerButton.StylePseudoClassNormal : ContainerButton.StylePseudoClassPressed); return; } - if (!Action.Enabled) + if (!action.Enabled) { SetOnlyStylePseudoClass(ContainerButton.StylePseudoClassDisabled); return; diff --git a/Content.Client/UserInterface/Systems/Actions/Controls/ActionButtonContainer.cs b/Content.Client/UserInterface/Systems/Actions/Controls/ActionButtonContainer.cs index 5dfa53f5abc..bbda27f0a0b 100644 --- a/Content.Client/UserInterface/Systems/Actions/Controls/ActionButtonContainer.cs +++ b/Content.Client/UserInterface/Systems/Actions/Controls/ActionButtonContainer.cs @@ -1,4 +1,3 @@ -using Content.Shared.Actions.ActionTypes; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; @@ -30,7 +29,7 @@ public ActionButton this[int index] } } - public void SetActionData(params ActionType?[] actionTypes) + public void SetActionData(params EntityUid?[] actionTypes) { ClearActionData(); @@ -40,7 +39,7 @@ public void SetActionData(params ActionType?[] actionTypes) if (action == null) continue; - ((ActionButton) GetChild(i)).UpdateData(action); + ((ActionButton) GetChild(i)).UpdateData(action.Value); } } diff --git a/Content.Client/UserInterface/Systems/Alerts/Controls/AlertControl.cs b/Content.Client/UserInterface/Systems/Alerts/Controls/AlertControl.cs index 702558785ac..4445bb0cd08 100644 --- a/Content.Client/UserInterface/Systems/Alerts/Controls/AlertControl.cs +++ b/Content.Client/UserInterface/Systems/Alerts/Controls/AlertControl.cs @@ -11,10 +11,6 @@ namespace Content.Client.UserInterface.Systems.Alerts.Controls { public sealed class AlertControl : BaseButton { - // shorter than default tooltip delay so user can more easily - // see what alerts they have - private const float CustomTooltipDelay = 0.5f; - public AlertPrototype Alert { get; } /// @@ -48,7 +44,6 @@ public sealed class AlertControl : BaseButton public AlertControl(AlertPrototype alert, short? severity) { _gameTiming = IoCManager.Resolve(); - TooltipDelay = CustomTooltipDelay; TooltipSupplier = SupplyTooltip; Alert = alert; _severity = severity; diff --git a/Content.Client/UserInterface/Systems/Character/CharacterUIController.cs b/Content.Client/UserInterface/Systems/Character/CharacterUIController.cs index cea15721cb4..beb37029c64 100644 --- a/Content.Client/UserInterface/Systems/Character/CharacterUIController.cs +++ b/Content.Client/UserInterface/Systems/Character/CharacterUIController.cs @@ -1,3 +1,4 @@ +using System.Linq; using Content.Client.CharacterInfo; using Content.Client.Gameplay; using Content.Client.UserInterface.Controls; @@ -6,10 +7,10 @@ using Content.Client.UserInterface.Systems.Objectives.Controls; using Content.Shared.Input; using JetBrains.Annotations; +using Robust.Client.GameObjects; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controllers; using Robust.Client.UserInterface.Controls; -using Robust.Client.Utility; using Robust.Shared.Input.Binding; using Robust.Shared.Utility; using static Content.Client.CharacterInfo.CharacterInfoSystem; @@ -21,6 +22,7 @@ namespace Content.Client.UserInterface.Systems.Character; public sealed class CharacterUIController : UIController, IOnStateEntered, IOnStateExited, IOnSystemChanged { [UISystemDependency] private readonly CharacterInfoSystem _characterInfo = default!; + [UISystemDependency] private readonly SpriteSystem _sprite = default!; private CharacterWindow? _window; private MenuButton? CharacterButton => UIManager.GetActiveUIWidgetOrNull()?.CharacterButton; @@ -101,10 +103,13 @@ private void CharacterUpdated(CharacterData data) return; } - var (job, objectives, briefing, sprite, entityName) = data; + var (entity, job, objectives, briefing, entityName) = data; + _window.SpriteView.SetEntity(entity); + _window.NameLabel.Text = entityName; _window.SubText.Text = job; _window.Objectives.RemoveAllChildren(); + _window.ObjectivesLabel.Visible = objectives.Any(); foreach (var (groupId, conditions) in objectives) { @@ -123,7 +128,7 @@ private void CharacterUpdated(CharacterData data) foreach (var condition in conditions) { var conditionControl = new ObjectiveConditionsControl(); - conditionControl.ProgressTexture.Texture = condition.SpriteSpecifier.Frame0(); + conditionControl.ProgressTexture.Texture = _sprite.Frame0(condition.SpriteSpecifier); conditionControl.ProgressTexture.Progress = condition.Progress; var titleMessage = new FormattedMessage(); var descriptionMessage = new FormattedMessage(); @@ -136,15 +141,23 @@ private void CharacterUpdated(CharacterData data) objectiveControl.AddChild(conditionControl); } + _window.Objectives.AddChild(objectiveControl); + } + + if (briefing != null) + { var briefingControl = new ObjectiveBriefingControl(); briefingControl.Label.Text = briefing; + _window.Objectives.AddChild(briefingControl); + } - objectiveControl.AddChild(briefingControl); - _window.Objectives.AddChild(objectiveControl); + var controls = _characterInfo.GetCharacterInfoControls(entity); + foreach (var control in controls) + { + _window.Objectives.AddChild(control); } - _window.SpriteView.Sprite = sprite; - _window.NameLabel.Text = entityName; + _window.RolePlaceholder.Visible = briefing == null && !controls.Any() && !objectives.Any(); } private void CharacterDetached() diff --git a/Content.Client/UserInterface/Systems/Character/Windows/CharacterWindow.xaml b/Content.Client/UserInterface/Systems/Character/Windows/CharacterWindow.xaml index e77ee915eca..c5307ab900e 100644 --- a/Content.Client/UserInterface/Systems/Character/Windows/CharacterWindow.xaml +++ b/Content.Client/UserInterface/Systems/Character/Windows/CharacterWindow.xaml @@ -14,9 +14,9 @@ [RegisterComponent] -public sealed class WeaponArcVisualsComponent : Component +public sealed partial class WeaponArcVisualsComponent : Component { [DataField("animation")] public WeaponArcAnimation Animation = WeaponArcAnimation.None; diff --git a/Content.Client/Weapons/Melee/MeleeWeaponSystem.cs b/Content.Client/Weapons/Melee/MeleeWeaponSystem.cs index a2321056425..5770af23aa5 100644 --- a/Content.Client/Weapons/Melee/MeleeWeaponSystem.cs +++ b/Content.Client/Weapons/Melee/MeleeWeaponSystem.cs @@ -25,7 +25,6 @@ namespace Content.Client.Weapons.Melee; public sealed partial class MeleeWeaponSystem : SharedMeleeWeaponSystem { [Dependency] private readonly IEyeManager _eyeManager = default!; - [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly IInputManager _inputManager = default!; [Dependency] private readonly IPlayerManager _player = default!; [Dependency] private readonly IStateManager _stateManager = default!; @@ -75,7 +74,7 @@ public override void Update(float frameTime) { if (weapon.Attacking) { - RaisePredictiveEvent(new StopAttackEvent(weaponUid)); + RaisePredictiveEvent(new StopAttackEvent(GetNetEntity(weaponUid))); } } @@ -127,7 +126,7 @@ public override void Update(float frameTime) target = screen.GetClickedEntity(mousePos); } - EntityManager.RaisePredictiveEvent(new DisarmAttackEvent(target, coordinates)); + EntityManager.RaisePredictiveEvent(new DisarmAttackEvent(GetNetEntity(target), GetNetCoordinates(coordinates))); return; } @@ -153,7 +152,7 @@ public override void Update(float frameTime) target = screen.GetClickedEntity(mousePos); } - RaisePredictiveEvent(new LightAttackEvent(target, weaponUid, coordinates)); + RaisePredictiveEvent(new LightAttackEvent(GetNetEntity(target), GetNetEntity(weaponUid), GetNetCoordinates(coordinates))); } } @@ -183,15 +182,17 @@ protected override bool DoDisarm(EntityUid user, DisarmAttackEvent ev, EntityUid return false; } + var target = GetEntity(ev.Target); + // They need to either have hands... - if (!HasComp(ev.Target!.Value)) + if (!HasComp(target!.Value)) { // or just be able to be shoved over. - if (TryComp(ev.Target!.Value, out var status) && status.AllowedEffects.Contains("KnockedDown")) + if (TryComp(target, out var status) && status.AllowedEffects.Contains("KnockedDown")) return true; - if (Timing.IsFirstTimePredicted && HasComp(ev.Target.Value)) - PopupSystem.PopupEntity(Loc.GetString("disarm-action-disarmable", ("targetName", ev.Target.Value)), ev.Target.Value); + if (Timing.IsFirstTimePredicted && HasComp(target.Value)) + PopupSystem.PopupEntity(Loc.GetString("disarm-action-disarmable", ("targetName", target.Value)), target.Value); return false; } @@ -223,14 +224,16 @@ private void ClientHeavyAttack(EntityUid user, EntityCoordinates coordinates, En // This should really be improved. GetEntitiesInArc uses pos instead of bounding boxes. // Server will validate it with InRangeUnobstructed. - var entities = ArcRayCast(userPos, direction.ToWorldAngle(), component.Angle, distance, userXform.MapID, user).ToList(); - RaisePredictiveEvent(new HeavyAttackEvent(meleeUid, entities.GetRange(0, Math.Min(MaxTargets, entities.Count)), coordinates)); + var entities = GetNetEntityList(ArcRayCast(userPos, direction.ToWorldAngle(), component.Angle, distance, userXform.MapID, user).ToList()); + RaisePredictiveEvent(new HeavyAttackEvent(GetNetEntity(meleeUid), entities.GetRange(0, Math.Min(MaxTargets, entities.Count)), GetNetCoordinates(coordinates))); } private void OnMeleeLunge(MeleeLungeEvent ev) { + var ent = GetEntity(ev.Entity); + // Entity might not have been sent by PVS. - if (Exists(ev.Entity)) - DoLunge(ev.Entity, ev.Angle, ev.LocalPos, ev.Animation); + if (Exists(ent)) + DoLunge(ent, ev.Angle, ev.LocalPos, ev.Animation); } } diff --git a/Content.Client/Weapons/Melee/UI/MeleeSpeechWindow.xaml b/Content.Client/Weapons/Melee/UI/MeleeSpeechWindow.xaml index 5f5e3249627..76ae8a331d7 100644 --- a/Content.Client/Weapons/Melee/UI/MeleeSpeechWindow.xaml +++ b/Content.Client/Weapons/Melee/UI/MeleeSpeechWindow.xaml @@ -1,8 +1,8 @@ + Title="{Loc melee-speech-menu-title}"> - diff --git a/Content.Client/Weapons/Misc/TetherGunSystem.cs b/Content.Client/Weapons/Misc/TetherGunSystem.cs index 2063fa6cf19..dd8f283cbf5 100644 --- a/Content.Client/Weapons/Misc/TetherGunSystem.cs +++ b/Content.Client/Weapons/Misc/TetherGunSystem.cs @@ -91,7 +91,7 @@ public override void Update(float frameTime) RaisePredictiveEvent(new RequestTetherMoveEvent() { - Coordinates = coords + Coordinates = GetNetCoordinates(coords) }); } diff --git a/Content.Client/Weapons/Ranged/Components/AmmoCounterComponent.cs b/Content.Client/Weapons/Ranged/Components/AmmoCounterComponent.cs index 22742219c03..2c1dbb1aa1e 100644 --- a/Content.Client/Weapons/Ranged/Components/AmmoCounterComponent.cs +++ b/Content.Client/Weapons/Ranged/Components/AmmoCounterComponent.cs @@ -4,7 +4,7 @@ namespace Content.Client.Weapons.Ranged.Components; [RegisterComponent] -public sealed class AmmoCounterComponent : SharedAmmoCounterComponent +public sealed partial class AmmoCounterComponent : SharedAmmoCounterComponent { public Control? Control; } diff --git a/Content.Client/Weapons/Ranged/Components/MagazineVisualsComponent.cs b/Content.Client/Weapons/Ranged/Components/MagazineVisualsComponent.cs index 8f8ac3e0ccb..373be94a384 100644 --- a/Content.Client/Weapons/Ranged/Components/MagazineVisualsComponent.cs +++ b/Content.Client/Weapons/Ranged/Components/MagazineVisualsComponent.cs @@ -6,7 +6,7 @@ namespace Content.Client.Weapons.Ranged.Components; /// Visualizer for gun mag presence; can change states based on ammo count or toggle visibility entirely. /// [RegisterComponent, Access(typeof(GunSystem))] -public sealed class MagazineVisualsComponent : Component +public sealed partial class MagazineVisualsComponent : Component { /// /// What RsiState we use. diff --git a/Content.Client/Weapons/Ranged/Components/SpentAmmoVisualsComponent.cs b/Content.Client/Weapons/Ranged/Components/SpentAmmoVisualsComponent.cs index 6e16f40fa30..665ebf71455 100644 --- a/Content.Client/Weapons/Ranged/Components/SpentAmmoVisualsComponent.cs +++ b/Content.Client/Weapons/Ranged/Components/SpentAmmoVisualsComponent.cs @@ -3,7 +3,7 @@ namespace Content.Client.Weapons.Ranged.Components; [RegisterComponent, Access(typeof(GunSystem))] -public sealed class SpentAmmoVisualsComponent : Component +public sealed partial class SpentAmmoVisualsComponent : Component { /// /// Should we do "{_state}-spent" or just "spent" diff --git a/Content.Client/Weapons/Ranged/Systems/FlyBySoundSystem.cs b/Content.Client/Weapons/Ranged/Systems/FlyBySoundSystem.cs index 2372e872cba..4e4df4a1568 100644 --- a/Content.Client/Weapons/Ranged/Systems/FlyBySoundSystem.cs +++ b/Content.Client/Weapons/Ranged/Systems/FlyBySoundSystem.cs @@ -33,7 +33,7 @@ private void OnCollide(EntityUid uid, FlyBySoundComponent component, ref StartCo return; } - if (args.OurFixture.ID != FlyByFixture || + if (args.OurFixtureId != FlyByFixture || !_random.Prob(component.Prob)) { return; diff --git a/Content.Client/Weapons/Ranged/Systems/GunSystem.AmmoCounter.cs b/Content.Client/Weapons/Ranged/Systems/GunSystem.AmmoCounter.cs index 288c730c416..dfb5418f116 100644 --- a/Content.Client/Weapons/Ranged/Systems/GunSystem.AmmoCounter.cs +++ b/Content.Client/Weapons/Ranged/Systems/GunSystem.AmmoCounter.cs @@ -8,6 +8,7 @@ using Robust.Client.Graphics; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; +using Robust.Shared.Graphics; namespace Content.Client.Weapons.Ranged.Systems; diff --git a/Content.Client/Weapons/Ranged/Systems/GunSystem.Ballistic.cs b/Content.Client/Weapons/Ranged/Systems/GunSystem.Ballistic.cs index bb1754f06cd..e0d4fa8e84d 100644 --- a/Content.Client/Weapons/Ranged/Systems/GunSystem.Ballistic.cs +++ b/Content.Client/Weapons/Ranged/Systems/GunSystem.Ballistic.cs @@ -34,16 +34,16 @@ protected override void Cycle(EntityUid uid, BallisticAmmoProviderComponent comp component.Entities.RemoveAt(component.Entities.Count - 1); component.Container.Remove(existing); - EnsureComp(existing); + EnsureShootable(existing); } else if (component.UnspawnedCount > 0) { component.UnspawnedCount--; ent = Spawn(component.FillProto, coordinates); - EnsureComp(ent.Value); + EnsureShootable(ent.Value); } - if (ent != null && ent.Value.IsClientSide()) + if (ent != null && IsClientSide(ent.Value)) Del(ent.Value); var cycledEvent = new GunCycledEvent(); diff --git a/Content.Client/Weapons/Ranged/Systems/GunSystem.ChamberMagazine.cs b/Content.Client/Weapons/Ranged/Systems/GunSystem.ChamberMagazine.cs index 0f1595010f5..52c2caaa3ad 100644 --- a/Content.Client/Weapons/Ranged/Systems/GunSystem.ChamberMagazine.cs +++ b/Content.Client/Weapons/Ranged/Systems/GunSystem.ChamberMagazine.cs @@ -47,7 +47,7 @@ protected override void OnMagazineSlotChange(EntityUid uid, MagazineAmmoProvider // This is dirty af. Prediction moment. // We may be predicting spawning entities and the engine just removes them from the container so we'll just delete them. - if (removedArgs.Entity.IsClientSide()) + if (IsClientSide(removedArgs.Entity)) QueueDel(args.Entity); // AFAIK the only main alternative is having some client-specific handling via a bool or otherwise for the state. diff --git a/Content.Client/Weapons/Ranged/Systems/GunSystem.Revolver.cs b/Content.Client/Weapons/Ranged/Systems/GunSystem.Revolver.cs index 93e8266169a..33a4042daff 100644 --- a/Content.Client/Weapons/Ranged/Systems/GunSystem.Revolver.cs +++ b/Content.Client/Weapons/Ranged/Systems/GunSystem.Revolver.cs @@ -16,10 +16,12 @@ protected override void InitializeRevolver() private void OnRevolverEntRemove(EntityUid uid, RevolverAmmoProviderComponent component, EntRemovedFromContainerMessage args) { - if (args.Container.ID != RevolverContainer) return; + if (args.Container.ID != RevolverContainer) + return; // See ChamberMagazineAmmoProvider - if (!args.Entity.IsClientSide()) return; + if (!IsClientSide(args.Entity)) + return; QueueDel(args.Entity); } diff --git a/Content.Client/Weapons/Ranged/Systems/GunSystem.cs b/Content.Client/Weapons/Ranged/Systems/GunSystem.cs index 2d8f5fdbfa0..743ca562d21 100644 --- a/Content.Client/Weapons/Ranged/Systems/GunSystem.cs +++ b/Content.Client/Weapons/Ranged/Systems/GunSystem.cs @@ -16,6 +16,7 @@ using Robust.Shared.Animations; using Robust.Shared.Input; using Robust.Shared.Map; +using Robust.Shared.Prototypes; using Robust.Shared.Utility; using SharedGunSystem = Content.Shared.Weapons.Ranged.Systems.SharedGunSystem; @@ -30,6 +31,9 @@ public sealed partial class GunSystem : SharedGunSystem [Dependency] private readonly InputSystem _inputSystem = default!; [Dependency] private readonly SharedCameraRecoilSystem _recoil = default!; + [ValidatePrototypeId] + public const string HitscanProto = "HitscanEffect"; + public bool SpreadOverlay { get => _spreadOverlay; @@ -76,7 +80,7 @@ public override void Initialize() private void OnMuzzleFlash(MuzzleFlashEvent args) { - CreateEffect(args.Uid, args); + CreateEffect(GetEntity(args.Uid), args); } private void OnHitscan(HitscanEvent ev) @@ -84,13 +88,15 @@ private void OnHitscan(HitscanEvent ev) // ALL I WANT IS AN ANIMATED EFFECT foreach (var a in ev.Sprites) { - if (a.Sprite is not SpriteSpecifier.Rsi rsi || - Deleted(a.coordinates.EntityId)) - { + if (a.Sprite is not SpriteSpecifier.Rsi rsi) + continue; + + var coords = GetCoordinates(a.coordinates); + + if (Deleted(coords.EntityId)) continue; - } - var ent = Spawn("HitscanEffect", a.coordinates); + var ent = Spawn(HitscanProto, coords); var sprite = Comp(ent); var xform = Transform(ent); xform.LocalRotation = a.angle; @@ -144,7 +150,7 @@ public override void Update(float frameTime) if (_inputSystem.CmdStates.GetState(useKey) != BoundKeyState.Down) { if (gun.ShotCounter != 0) - EntityManager.RaisePredictiveEvent(new RequestStopShootEvent { Gun = gunUid }); + EntityManager.RaisePredictiveEvent(new RequestStopShootEvent { Gun = GetNetEntity(gunUid) }); return; } @@ -156,7 +162,7 @@ public override void Update(float frameTime) if (mousePos.MapId == MapId.Nullspace) { if (gun.ShotCounter != 0) - EntityManager.RaisePredictiveEvent(new RequestStopShootEvent { Gun = gunUid }); + EntityManager.RaisePredictiveEvent(new RequestStopShootEvent { Gun = GetNetEntity(gunUid) }); return; } @@ -168,8 +174,8 @@ public override void Update(float frameTime) EntityManager.RaisePredictiveEvent(new RequestShootEvent { - Coordinates = coordinates, - Gun = gunUid, + Coordinates = GetNetCoordinates(coordinates), + Gun = GetNetEntity(gunUid), }); } @@ -188,10 +194,10 @@ public override void Shoot(EntityUid gunUid, GunComponent gun, List<(EntityUid? if (throwItems) { Recoil(user, direction, gun.CameraRecoilScalar); - if (ent!.Value.IsClientSide()) + if (IsClientSide(ent!.Value)) Del(ent.Value); else - RemComp(ent.Value); + RemoveShootable(ent.Value); continue; } @@ -214,7 +220,7 @@ public override void Shoot(EntityUid gunUid, GunComponent gun, List<(EntityUid? Audio.PlayPredicted(gun.SoundEmpty, gunUid, user); } - if (ent!.Value.IsClientSide()) + if (IsClientSide(ent!.Value)) Del(ent.Value); break; @@ -222,10 +228,10 @@ public override void Shoot(EntityUid gunUid, GunComponent gun, List<(EntityUid? MuzzleFlash(gunUid, newAmmo, user); Audio.PlayPredicted(gun.SoundGunshot, gunUid, user); Recoil(user, direction, gun.CameraRecoilScalar); - if (ent!.Value.IsClientSide()) + if (IsClientSide(ent!.Value)) Del(ent.Value); else - RemComp(ent.Value); + RemoveShootable(ent.Value); break; case HitscanPrototype: Audio.PlayPredicted(gun.SoundGunshot, gunUid, user); @@ -306,8 +312,8 @@ protected override void CreateEffect(EntityUid uid, MuzzleFlashEvent message, En light.NetSyncEnabled = false; Lights.SetEnabled(uid, true, light); Lights.SetRadius(uid, 2f, light); - light.Color = Color.FromHex("#cc8e2b"); - light.Energy = 5f; + Lights.SetColor(uid, Color.FromHex("#cc8e2b"), light); + Lights.SetEnergy(uid, 5f, light); var animTwo = new Animation() { diff --git a/Content.Client/Weather/WeatherOverlay.cs b/Content.Client/Weather/WeatherOverlay.cs index 60571938e75..bd5627292ac 100644 --- a/Content.Client/Weather/WeatherOverlay.cs +++ b/Content.Client/Weather/WeatherOverlay.cs @@ -7,6 +7,8 @@ using Robust.Client.ResourceManagement; using Robust.Client.Utility; using Robust.Shared.Enums; +using Robust.Shared.Graphics; +using Robust.Shared.Graphics.RSI; using Robust.Shared.Map; using Robust.Shared.Physics.Components; using Robust.Shared.Prototypes; @@ -131,7 +133,7 @@ private void DrawWorld(in OverlayDrawArgs args, WeatherPrototype weatherProto, f case SpriteSpecifier.Rsi rsi: var rsiActual = _cache.GetResource(rsi.RsiPath).RSI; rsiActual.TryGetState(rsi.RsiState, out var state); - var frames = state!.GetFrames(RSI.State.Direction.South); + var frames = state!.GetFrames(RsiDirection.South); var delays = state.GetDelays(); var totalDelay = delays.Sum(); var time = curTime.TotalSeconds % totalDelay; diff --git a/Content.Client/Wires/WiresVisualsComponent.cs b/Content.Client/Wires/WiresVisualsComponent.cs index f2c7e477403..c58c121c105 100644 --- a/Content.Client/Wires/WiresVisualsComponent.cs +++ b/Content.Client/Wires/WiresVisualsComponent.cs @@ -1,7 +1,7 @@ namespace Content.Client.Wires { [RegisterComponent] - public sealed class WiresVisualsComponent : Component + public sealed partial class WiresVisualsComponent : Component { } } diff --git a/Content.Client/Xenoarchaeology/Ui/AnalysisConsoleMenu.xaml.cs b/Content.Client/Xenoarchaeology/Ui/AnalysisConsoleMenu.xaml.cs index 344df37a006..1a8ba6c8c92 100644 --- a/Content.Client/Xenoarchaeology/Ui/AnalysisConsoleMenu.xaml.cs +++ b/Content.Client/Xenoarchaeology/Ui/AnalysisConsoleMenu.xaml.cs @@ -56,10 +56,7 @@ private void UpdateArtifactIcon(EntityUid? uid) } ArtifactDisplay.Visible = true; - if (!_ent.TryGetComponent(uid, out var sprite)) - return; - - ArtifactDisplay.Sprite = sprite; + ArtifactDisplay.SetEntity(uid); } public void UpdateInformationDisplay(AnalysisConsoleScanUpdateState state) @@ -74,7 +71,7 @@ public void UpdateInformationDisplay(AnalysisConsoleScanUpdateState state) return; } - UpdateArtifactIcon(state.Artifact); + UpdateArtifactIcon(_ent.GetEntity(state.Artifact)); if (state.ScanReport == null) { diff --git a/Content.IntegrationTests/Pair/TestMapData.cs b/Content.IntegrationTests/Pair/TestMapData.cs new file mode 100644 index 00000000000..bdf12080388 --- /dev/null +++ b/Content.IntegrationTests/Pair/TestMapData.cs @@ -0,0 +1,24 @@ +using Robust.Shared.GameObjects; +using Robust.Shared.Map; +using Robust.Shared.Map.Components; + +namespace Content.IntegrationTests.Pair; + +/// +/// Simple data class that stored information about a map being used by a test. +/// +public sealed class TestMapData +{ + public EntityUid MapUid { get; set; } + public EntityUid GridUid { get; set; } + public MapId MapId { get; set; } + public MapGridComponent MapGrid { get; set; } = default!; + public EntityCoordinates GridCoords { get; set; } + public MapCoordinates MapCoords { get; set; } + public TileRef Tile { get; set; } + + // Client-side uids + public EntityUid CMapUid { get; set; } + public EntityUid CGridUid { get; set; } + public EntityCoordinates CGridCoords { get; set; } +} \ No newline at end of file diff --git a/Content.IntegrationTests/Pair/TestPair.Helpers.cs b/Content.IntegrationTests/Pair/TestPair.Helpers.cs new file mode 100644 index 00000000000..1478a4c7d27 --- /dev/null +++ b/Content.IntegrationTests/Pair/TestPair.Helpers.cs @@ -0,0 +1,79 @@ +#nullable enable +using System.Linq; +using Robust.Shared.GameObjects; +using Robust.Shared.Map; +using Robust.UnitTesting; + +namespace Content.IntegrationTests.Pair; + +// Contains misc helper functions to make writing tests easier. +public sealed partial class TestPair +{ + /// + /// Creates a map, a grid, and a tile, and gives back references to them. + /// + public async Task CreateTestMap() + { + await Server.WaitIdleAsync(); + var tileDefinitionManager = Server.ResolveDependency(); + + var mapData = new TestMapData(); + TestMap = mapData; + await Server.WaitPost(() => + { + mapData.MapId = Server.MapMan.CreateMap(); + mapData.MapUid = Server.MapMan.GetMapEntityId(mapData.MapId); + mapData.MapGrid = Server.MapMan.CreateGrid(mapData.MapId); + mapData.GridUid = mapData.MapGrid.Owner; // Fixing this requires an engine PR. + mapData.GridCoords = new EntityCoordinates(mapData.GridUid, 0, 0); + var plating = tileDefinitionManager["Plating"]; + var platingTile = new Tile(plating.TileId); + mapData.MapGrid.SetTile(mapData.GridCoords, platingTile); + mapData.MapCoords = new MapCoordinates(0, 0, mapData.MapId); + mapData.Tile = mapData.MapGrid.GetAllTiles().First(); + }); + + if (!Settings.Connected) + return mapData; + + await RunTicksSync(10); + mapData.CMapUid = ToClientUid(mapData.MapUid); + mapData.CGridUid = ToClientUid(mapData.GridUid); + mapData.CGridCoords = new EntityCoordinates(mapData.CGridUid, 0, 0); + + return mapData; + } + + /// + /// Convert a client-side uid into a server-side uid + /// + public EntityUid ToServerUid(EntityUid uid) => ConvertUid(uid, Client, Server); + + /// + /// Convert a server-side uid into a client-side uid + /// + public EntityUid ToClientUid(EntityUid uid) => ConvertUid(uid, Server, Client); + + private static EntityUid ConvertUid( + EntityUid uid, + RobustIntegrationTest.IntegrationInstance source, + RobustIntegrationTest.IntegrationInstance destination) + { + if (!uid.IsValid()) + return EntityUid.Invalid; + + if (!source.EntMan.TryGetComponent(uid, out var meta)) + { + Assert.Fail($"Failed to resolve MetaData while converting the EntityUid for entity {uid}"); + return EntityUid.Invalid; + } + + if (!destination.EntMan.TryGetEntity(meta.NetEntity, out var otherUid)) + { + Assert.Fail($"Failed to resolve net ID while converting the EntityUid entity {source.EntMan.ToPrettyString(uid)}"); + return EntityUid.Invalid; + } + + return otherUid.Value; + } +} diff --git a/Content.IntegrationTests/Pair/TestPair.Prototypes.cs b/Content.IntegrationTests/Pair/TestPair.Prototypes.cs new file mode 100644 index 00000000000..a6f2d97bc8a --- /dev/null +++ b/Content.IntegrationTests/Pair/TestPair.Prototypes.cs @@ -0,0 +1,68 @@ +#nullable enable +using System.Collections.Generic; +using Robust.Shared.Prototypes; +using Robust.Shared.Utility; +using Robust.UnitTesting; + +namespace Content.IntegrationTests.Pair; + +// This partial class contains helper methods to deal with yaml prototypes. +public sealed partial class TestPair +{ + private Dictionary> _loadedPrototypes = new(); + private HashSet _loadedEntityPrototypes = new(); + + public async Task LoadPrototypes(List prototypes) + { + await LoadPrototypes(Server, prototypes); + await LoadPrototypes(Client, prototypes); + } + + private async Task LoadPrototypes(RobustIntegrationTest.IntegrationInstance instance, List prototypes) + { + var changed = new Dictionary>(); + foreach (var file in prototypes) + { + instance.ProtoMan.LoadString(file, changed: changed); + } + + await instance.WaitPost(() => + { + instance.ProtoMan.ResolveResults(); + instance.ProtoMan.ReloadPrototypes(changed); + }); + + foreach (var (kind, ids) in changed) + { + _loadedPrototypes.GetOrNew(kind).UnionWith(ids); + } + + if (_loadedPrototypes.TryGetValue(typeof(EntityPrototype), out var entIds)) + _loadedEntityPrototypes.UnionWith(entIds); + } + + public bool IsTestPrototype(EntityPrototype proto) + { + return _loadedEntityPrototypes.Contains(proto.ID); + } + + public bool IsTestEntityPrototype(string id) + { + return _loadedEntityPrototypes.Contains(id); + } + + public bool IsTestPrototype(string id) where TPrototype : IPrototype + { + return IsTestPrototype(typeof(TPrototype), id); + } + + public bool IsTestPrototype(TPrototype proto) where TPrototype : IPrototype + { + return IsTestPrototype(typeof(TPrototype), proto.ID); + } + + public bool IsTestPrototype(Type kind, string id) + { + return _loadedPrototypes.TryGetValue(kind, out var ids) && ids.Contains(id); + } +} \ No newline at end of file diff --git a/Content.IntegrationTests/Pair/TestPair.Recycle.cs b/Content.IntegrationTests/Pair/TestPair.Recycle.cs new file mode 100644 index 00000000000..c9796c0079e --- /dev/null +++ b/Content.IntegrationTests/Pair/TestPair.Recycle.cs @@ -0,0 +1,220 @@ +#nullable enable +using System.IO; +using System.Linq; +using Content.Server.GameTicking; +using Content.Shared.CCVar; +using Content.Shared.GameTicking; +using Content.Shared.Mind; +using Content.Shared.Mind.Components; +using Robust.Client; +using Robust.Server.Player; +using Robust.Shared.Exceptions; +using Robust.Shared.GameObjects; +using Robust.Shared.Network; + +namespace Content.IntegrationTests.Pair; + +// This partial class contains logic related to recycling & disposing test pairs. +public sealed partial class TestPair : IAsyncDisposable +{ + public PairState State { get; private set; } = PairState.Ready; + + private async Task OnDirtyDispose() + { + var usageTime = Watch.Elapsed; + Watch.Restart(); + await _testOut.WriteLineAsync($"{nameof(DisposeAsync)}: Test gave back pair {Id} in {usageTime.TotalMilliseconds} ms"); + Kill(); + var disposeTime = Watch.Elapsed; + await _testOut.WriteLineAsync($"{nameof(DisposeAsync)}: Disposed pair {Id} in {disposeTime.TotalMilliseconds} ms"); + // Test pairs should only dirty dispose if they are failing. If they are not failing, this probably happened + // because someone forgot to clean-return the pair. + Assert.Warn("Test was dirty-disposed."); + } + + private async Task OnCleanDispose() + { + if (TestMap != null) + { + await Server.WaitPost(() => Server.EntMan.DeleteEntity(TestMap.MapUid)); + TestMap = null; + } + + var usageTime = Watch.Elapsed; + Watch.Restart(); + await _testOut.WriteLineAsync($"{nameof(CleanReturnAsync)}: Test borrowed pair {Id} for {usageTime.TotalMilliseconds} ms"); + // Let any last minute failures the test cause happen. + await ReallyBeIdle(); + if (!Settings.Destructive) + { + if (Client.IsAlive == false) + { + throw new Exception($"{nameof(CleanReturnAsync)}: Test killed the client in pair {Id}:", Client.UnhandledException); + } + + if (Server.IsAlive == false) + { + throw new Exception($"{nameof(CleanReturnAsync)}: Test killed the server in pair {Id}:", Server.UnhandledException); + } + } + + if (Settings.MustNotBeReused) + { + Kill(); + await ReallyBeIdle(); + await _testOut.WriteLineAsync($"{nameof(CleanReturnAsync)}: Clean disposed in {Watch.Elapsed.TotalMilliseconds} ms"); + return; + } + + var sRuntimeLog = Server.ResolveDependency(); + if (sRuntimeLog.ExceptionCount > 0) + throw new Exception($"{nameof(CleanReturnAsync)}: Server logged exceptions"); + var cRuntimeLog = Client.ResolveDependency(); + if (cRuntimeLog.ExceptionCount > 0) + throw new Exception($"{nameof(CleanReturnAsync)}: Client logged exceptions"); + + var returnTime = Watch.Elapsed; + await _testOut.WriteLineAsync($"{nameof(CleanReturnAsync)}: PoolManager took {returnTime.TotalMilliseconds} ms to put pair {Id} back into the pool"); + } + + public async ValueTask CleanReturnAsync() + { + if (State != PairState.InUse) + throw new Exception($"{nameof(CleanReturnAsync)}: Unexpected state. Pair: {Id}. State: {State}."); + + await _testOut.WriteLineAsync($"{nameof(CleanReturnAsync)}: Return of pair {Id} started"); + State = PairState.CleanDisposed; + await OnCleanDispose(); + State = PairState.Ready; + PoolManager.NoCheckReturn(this); + ClearContext(); + } + + public async ValueTask DisposeAsync() + { + switch (State) + { + case PairState.Dead: + case PairState.Ready: + break; + case PairState.InUse: + await _testOut.WriteLineAsync($"{nameof(DisposeAsync)}: Dirty return of pair {Id} started"); + await OnDirtyDispose(); + PoolManager.NoCheckReturn(this); + ClearContext(); + break; + default: + throw new Exception($"{nameof(DisposeAsync)}: Unexpected state. Pair: {Id}. State: {State}."); + } + } + + public async Task CleanPooledPair(PoolSettings settings, TextWriter testOut) + { + Settings = default!; + Watch.Restart(); + await testOut.WriteLineAsync($"Recycling..."); + + var gameTicker = Server.System(); + var cNetMgr = Client.ResolveDependency(); + + await RunTicksSync(1); + + // Disconnect the client if they are connected. + if (cNetMgr.IsConnected) + { + await testOut.WriteLineAsync($"Recycling: {Watch.Elapsed.TotalMilliseconds} ms: Disconnecting client."); + await Client.WaitPost(() => cNetMgr.ClientDisconnect("Test pooling cleanup disconnect")); + await RunTicksSync(1); + } + Assert.That(cNetMgr.IsConnected, Is.False); + + // Move to pre-round lobby. Required to toggle dummy ticker on and off + if (gameTicker.RunLevel != GameRunLevel.PreRoundLobby) + { + await testOut.WriteLineAsync($"Recycling: {Watch.Elapsed.TotalMilliseconds} ms: Restarting server."); + Assert.That(gameTicker.DummyTicker, Is.False); + Server.CfgMan.SetCVar(CCVars.GameLobbyEnabled, true); + await Server.WaitPost(() => gameTicker.RestartRound()); + await RunTicksSync(1); + } + + //Apply Cvars + await testOut.WriteLineAsync($"Recycling: {Watch.Elapsed.TotalMilliseconds} ms: Setting CVar "); + await PoolManager.SetupCVars(Client, settings); + await PoolManager.SetupCVars(Server, settings); + await RunTicksSync(1); + + // Restart server. + await testOut.WriteLineAsync($"Recycling: {Watch.Elapsed.TotalMilliseconds} ms: Restarting server again"); + await Server.WaitPost(() => gameTicker.RestartRound()); + await RunTicksSync(1); + + // Connect client + if (settings.ShouldBeConnected) + { + await testOut.WriteLineAsync($"Recycling: {Watch.Elapsed.TotalMilliseconds} ms: Connecting client"); + Client.SetConnectTarget(Server); + await Client.WaitPost(() => cNetMgr.ClientConnect(null!, 0, null!)); + } + + await testOut.WriteLineAsync($"Recycling: {Watch.Elapsed.TotalMilliseconds} ms: Idling"); + await ReallyBeIdle(); + await testOut.WriteLineAsync($"Recycling: {Watch.Elapsed.TotalMilliseconds} ms: Done recycling"); + } + + public void ValidateSettings(PoolSettings settings) + { + var cfg = Server.CfgMan; + Assert.That(cfg.GetCVar(CCVars.AdminLogsEnabled), Is.EqualTo(settings.AdminLogsEnabled)); + Assert.That(cfg.GetCVar(CCVars.GameLobbyEnabled), Is.EqualTo(settings.InLobby)); + Assert.That(cfg.GetCVar(CCVars.GameDummyTicker), Is.EqualTo(settings.UseDummyTicker)); + + var entMan = Server.ResolveDependency(); + var ticker = entMan.System(); + Assert.That(ticker.DummyTicker, Is.EqualTo(settings.UseDummyTicker)); + + var expectPreRound = settings.InLobby | settings.DummyTicker; + var expectedLevel = expectPreRound ? GameRunLevel.PreRoundLobby : GameRunLevel.InRound; + Assert.That(ticker.RunLevel, Is.EqualTo(expectedLevel)); + + var baseClient = Client.ResolveDependency(); + var netMan = Client.ResolveDependency(); + Assert.That(netMan.IsConnected, Is.Not.EqualTo(!settings.ShouldBeConnected)); + + if (!settings.ShouldBeConnected) + return; + + Assert.That(baseClient.RunLevel, Is.EqualTo(ClientRunLevel.InGame)); + var cPlayer = Client.ResolveDependency(); + var sPlayer = Server.ResolveDependency(); + Assert.That(sPlayer.Sessions.Count(), Is.EqualTo(1)); + var session = sPlayer.Sessions.Single(); + Assert.That(cPlayer.LocalPlayer?.Session.UserId, Is.EqualTo(session.UserId)); + + if (ticker.DummyTicker) + return; + + var status = ticker.PlayerGameStatuses[session.UserId]; + var expected = settings.InLobby + ? PlayerGameStatus.NotReadyToPlay + : PlayerGameStatus.JoinedGame; + + Assert.That(status, Is.EqualTo(expected)); + + if (settings.InLobby) + { + Assert.Null(session.AttachedEntity); + return; + } + + Assert.NotNull(session.AttachedEntity); + Assert.That(entMan.EntityExists(session.AttachedEntity)); + Assert.That(entMan.HasComponent(session.AttachedEntity)); + var mindCont = entMan.GetComponent(session.AttachedEntity!.Value); + Assert.NotNull(mindCont.Mind); + Assert.True(entMan.TryGetComponent(mindCont.Mind, out MindComponent? mind)); + Assert.Null(mind!.VisitingEntity); + Assert.That(mind.OwnedEntity, Is.EqualTo(session.AttachedEntity!.Value)); + Assert.That(mind.UserId, Is.EqualTo(session.UserId)); + } +} diff --git a/Content.IntegrationTests/Pair/TestPair.Timing.cs b/Content.IntegrationTests/Pair/TestPair.Timing.cs new file mode 100644 index 00000000000..3487ea68010 --- /dev/null +++ b/Content.IntegrationTests/Pair/TestPair.Timing.cs @@ -0,0 +1,62 @@ +#nullable enable +using Robust.Shared.Timing; + +namespace Content.IntegrationTests.Pair; + +// This partial class contains methods for running the server/client pairs for some number of ticks +public sealed partial class TestPair +{ + /// + /// Runs the server-client pair in sync + /// + /// How many ticks to run them for + public async Task RunTicksSync(int ticks) + { + for (var i = 0; i < ticks; i++) + { + await Server.WaitRunTicks(1); + await Client.WaitRunTicks(1); + } + } + + /// + /// Runs the server-client pair in sync, but also ensures they are both idle each tick. + /// + /// How many ticks to run + public async Task ReallyBeIdle(int runTicks = 25) + { + for (var i = 0; i < runTicks; i++) + { + await Client.WaitRunTicks(1); + await Server.WaitRunTicks(1); + for (var idleCycles = 0; idleCycles < 4; idleCycles++) + { + await Client.WaitIdleAsync(); + await Server.WaitIdleAsync(); + } + } + } + + /// + /// Run the server/clients until the ticks are synchronized. + /// By default the client will be one tick ahead of the server. + /// + public async Task SyncTicks(int targetDelta = 1) + { + var sTick = (int)Server.Timing.CurTick.Value; + var cTick = (int)Client.Timing.CurTick.Value; + var delta = cTick - sTick; + + if (delta == targetDelta) + return; + if (delta > targetDelta) + await Server.WaitRunTicks(delta - targetDelta); + else + await Client.WaitRunTicks(targetDelta - delta); + + sTick = (int)Server.Timing.CurTick.Value; + cTick = (int)Client.Timing.CurTick.Value; + delta = cTick - sTick; + Assert.That(delta, Is.EqualTo(targetDelta)); + } +} \ No newline at end of file diff --git a/Content.IntegrationTests/Pair/TestPair.cs b/Content.IntegrationTests/Pair/TestPair.cs new file mode 100644 index 00000000000..bd79c0f86ba --- /dev/null +++ b/Content.IntegrationTests/Pair/TestPair.cs @@ -0,0 +1,107 @@ +#nullable enable +using System.Collections.Generic; +using System.IO; +using Content.Server.GameTicking; +using Robust.Shared.GameObjects; +using Robust.Shared.IoC; +using Robust.Shared.Network; +using Robust.Shared.Timing; +using Robust.UnitTesting; + +namespace Content.IntegrationTests.Pair; + +/// +/// This object wraps a pooled server+client pair. +/// +public sealed partial class TestPair +{ + public readonly int Id; + private bool _initialized; + private TextWriter _testOut = default!; + public readonly Stopwatch Watch = new(); + public readonly List TestHistory = new(); + public PoolSettings Settings = default!; + public TestMapData? TestMap; + public RobustIntegrationTest.ServerIntegrationInstance Server { get; private set; } = default!; + public RobustIntegrationTest.ClientIntegrationInstance Client { get; private set; } = default!; + + public PoolTestLogHandler ServerLogHandler { get; private set; } = default!; + public PoolTestLogHandler ClientLogHandler { get; private set; } = default!; + + public TestPair(int id) + { + Id = id; + } + + public async Task Initialize(PoolSettings settings, TextWriter testOut, List testPrototypes) + { + if (_initialized) + throw new InvalidOperationException("Already initialized"); + + _initialized = true; + Settings = settings; + (Client, ClientLogHandler) = await PoolManager.GenerateClient(settings, testOut); + (Server, ServerLogHandler) = await PoolManager.GenerateServer(settings, testOut); + ActivateContext(testOut); + + if (!settings.NoLoadTestPrototypes) + await LoadPrototypes(testPrototypes!); + + if (!settings.UseDummyTicker) + { + var gameTicker = Server.ResolveDependency().System(); + await Server.WaitPost(() => gameTicker.RestartRound()); + } + + if (settings.ShouldBeConnected) + { + Client.SetConnectTarget(Server); + await Client.WaitPost(() => + { + var netMgr = IoCManager.Resolve(); + if (!netMgr.IsConnected) + { + netMgr.ClientConnect(null!, 0, null!); + } + }); + await ReallyBeIdle(10); + await Client.WaitRunTicks(1); + } + } + + public void Kill() + { + State = PairState.Dead; + Server.Dispose(); + Client.Dispose(); + } + + private void ClearContext() + { + _testOut = default!; + ServerLogHandler.ClearContext(); + ClientLogHandler.ClearContext(); + } + + public void ActivateContext(TextWriter testOut) + { + _testOut = testOut; + ServerLogHandler.ActivateContext(testOut); + ClientLogHandler.ActivateContext(testOut); + } + + public void Use() + { + if (State != PairState.Ready) + throw new InvalidOperationException($"Pair is not ready to use. State: {State}"); + State = PairState.InUse; + } + + public enum PairState : byte + { + Ready = 0, + InUse = 1, + CleanDisposed = 2, + Dead = 3, + } +} diff --git a/Content.IntegrationTests/PoolManager.Cvars.cs b/Content.IntegrationTests/PoolManager.Cvars.cs new file mode 100644 index 00000000000..dfdbddd9230 --- /dev/null +++ b/Content.IntegrationTests/PoolManager.Cvars.cs @@ -0,0 +1,70 @@ +#nullable enable +using Content.Shared.CCVar; +using Robust.Shared; +using Robust.Shared.Configuration; +using Robust.UnitTesting; + +namespace Content.IntegrationTests; + +// Partial class containing cvar logic +public static partial class PoolManager +{ + private static readonly (string cvar, string value)[] TestCvars = + { + // @formatter:off + (CCVars.DatabaseSynchronous.Name, "true"), + (CCVars.DatabaseSqliteDelay.Name, "0"), + (CCVars.HolidaysEnabled.Name, "false"), + (CCVars.GameMap.Name, TestMap), + (CCVars.AdminLogsQueueSendDelay.Name, "0"), + (CVars.NetPVS.Name, "false"), + (CCVars.NPCMaxUpdates.Name, "999999"), + (CVars.ThreadParallelCount.Name, "1"), + (CCVars.GameRoleTimers.Name, "false"), + (CCVars.GridFill.Name, "false"), + (CCVars.ArrivalsShuttles.Name, "false"), + (CCVars.EmergencyShuttleEnabled.Name, "false"), + (CCVars.ProcgenPreload.Name, "false"), + (CCVars.WorldgenEnabled.Name, "false"), + (CVars.ReplayClientRecordingEnabled.Name, "false"), + (CVars.ReplayServerRecordingEnabled.Name, "false"), + (CCVars.GameDummyTicker.Name, "true"), + (CCVars.GameLobbyEnabled.Name, "false"), + (CCVars.ConfigPresetDevelopment.Name, "false"), + (CCVars.AdminLogsEnabled.Name, "false"), + (CVars.NetBufferSize.Name, "0") + }; + + public static async Task SetupCVars(RobustIntegrationTest.IntegrationInstance instance, PoolSettings settings) + { + var cfg = instance.ResolveDependency(); + await instance.WaitPost(() => + { + if (cfg.IsCVarRegistered(CCVars.GameDummyTicker.Name)) + cfg.SetCVar(CCVars.GameDummyTicker, settings.UseDummyTicker); + + if (cfg.IsCVarRegistered(CCVars.GameLobbyEnabled.Name)) + cfg.SetCVar(CCVars.GameLobbyEnabled, settings.InLobby); + + if (cfg.IsCVarRegistered(CVars.NetInterp.Name)) + cfg.SetCVar(CVars.NetInterp, settings.DisableInterpolate); + + if (cfg.IsCVarRegistered(CCVars.GameMap.Name)) + cfg.SetCVar(CCVars.GameMap, settings.Map); + + if (cfg.IsCVarRegistered(CCVars.AdminLogsEnabled.Name)) + cfg.SetCVar(CCVars.AdminLogsEnabled, settings.AdminLogsEnabled); + + if (cfg.IsCVarRegistered(CVars.NetInterp.Name)) + cfg.SetCVar(CVars.NetInterp, !settings.DisableInterpolate); + }); + } + + private static void SetDefaultCVars(RobustIntegrationTest.IntegrationOptions options) + { + foreach (var (cvar, value) in TestCvars) + { + options.CVarOverrides[cvar] = value; + } + } +} \ No newline at end of file diff --git a/Content.IntegrationTests/PoolManager.cs b/Content.IntegrationTests/PoolManager.cs index 64f94e136b9..3f8d261e8dd 100644 --- a/Content.IntegrationTests/PoolManager.cs +++ b/Content.IntegrationTests/PoolManager.cs @@ -7,30 +7,20 @@ using System.Threading; using Content.Client.IoC; using Content.Client.Parallax.Managers; +using Content.IntegrationTests.Pair; using Content.IntegrationTests.Tests; using Content.IntegrationTests.Tests.Destructible; using Content.IntegrationTests.Tests.DeviceNetwork; using Content.IntegrationTests.Tests.Interaction.Click; -using Content.Server.GameTicking; -using Content.Server.Mind.Components; -using Content.Shared.CCVar; -using Content.Shared.GameTicking; using Robust.Client; using Robust.Server; -using Robust.Server.Player; -using Robust.Shared; using Robust.Shared.Configuration; using Robust.Shared.ContentPack; -using Robust.Shared.Exceptions; using Robust.Shared.GameObjects; using Robust.Shared.IoC; using Robust.Shared.Log; -using Robust.Shared.Map; -using Robust.Shared.Map.Components; -using Robust.Shared.Network; using Robust.Shared.Prototypes; using Robust.Shared.Timing; -using Robust.Shared.Utility; using Robust.UnitTesting; [assembly: LevelOfParallelism(3)] @@ -43,48 +33,16 @@ namespace Content.IntegrationTests; public static partial class PoolManager { public const string TestMap = "Empty"; - - private static readonly (string cvar, string value)[] TestCvars = - { - // @formatter:off - (CCVars.DatabaseSynchronous.Name, "true"), - (CCVars.DatabaseSqliteDelay.Name, "0"), - (CCVars.HolidaysEnabled.Name, "false"), - (CCVars.GameMap.Name, TestMap), - (CCVars.AdminLogsQueueSendDelay.Name, "0"), - (CVars.NetPVS.Name, "false"), - (CCVars.NPCMaxUpdates.Name, "999999"), - (CVars.ThreadParallelCount.Name, "1"), - (CCVars.GameRoleTimers.Name, "false"), - (CCVars.GridFill.Name, "false"), - (CCVars.ArrivalsShuttles.Name, "false"), - (CCVars.EmergencyShuttleEnabled.Name, "false"), - (CCVars.ProcgenPreload.Name, "false"), - (CCVars.WorldgenEnabled.Name, "false"), - (CVars.ReplayClientRecordingEnabled.Name, "false"), - (CVars.ReplayServerRecordingEnabled.Name, "false"), - (CCVars.GameDummyTicker.Name, "true"), - (CCVars.GameLobbyEnabled.Name, "false"), - (CCVars.ConfigPresetDevelopment.Name, "false"), - (CCVars.AdminLogsEnabled.Name, "false"), - - // This breaks some tests. - // TODO: Figure out which tests this breaks. - (CVars.NetBufferSize.Name, "0") - - // @formatter:on - }; - private static int _pairId; private static readonly object PairLock = new(); private static bool _initialized; // Pair, IsBorrowed - private static readonly Dictionary Pairs = new(); + private static readonly Dictionary Pairs = new(); private static bool _dead; private static Exception? _poolFailureReason; - private static async Task<(RobustIntegrationTest.ServerIntegrationInstance, PoolTestLogHandler)> GenerateServer( + public static async Task<(RobustIntegrationTest.ServerIntegrationInstance, PoolTestLogHandler)> GenerateServer( PoolSettings poolSettings, TextWriter testOut) { @@ -134,7 +92,7 @@ private static readonly (string cvar, string value)[] TestCvars = /// public static void Shutdown() { - List localPairs; + List localPairs; lock (PairLock) { if (_dead) @@ -156,11 +114,11 @@ public static string DeathReport() lock (PairLock) { var builder = new StringBuilder(); - var pairs = Pairs.Keys.OrderBy(pair => pair.PairId); + var pairs = Pairs.Keys.OrderBy(pair => pair.Id); foreach (var pair in pairs) { var borrowed = Pairs[pair]; - builder.AppendLine($"Pair {pair.PairId}, Tests Run: {pair.TestHistory.Count}, Borrowed: {borrowed}"); + builder.AppendLine($"Pair {pair.Id}, Tests Run: {pair.TestHistory.Count}, Borrowed: {borrowed}"); for (var i = 0; i < pair.TestHistory.Count; i++) { builder.AppendLine($"#{i}: {pair.TestHistory[i]}"); @@ -171,7 +129,7 @@ public static string DeathReport() } } - private static async Task<(RobustIntegrationTest.ClientIntegrationInstance, PoolTestLogHandler)> GenerateClient( + public static async Task<(RobustIntegrationTest.ClientIntegrationInstance, PoolTestLogHandler)> GenerateClient( PoolSettings poolSettings, TextWriter testOut) { @@ -225,45 +183,12 @@ public static string DeathReport() return (client, logHandler); } - private static async Task SetupCVars(RobustIntegrationTest.IntegrationInstance instance, PoolSettings settings) - { - var cfg = instance.ResolveDependency(); - await instance.WaitPost(() => - { - if (cfg.IsCVarRegistered(CCVars.GameDummyTicker.Name)) - cfg.SetCVar(CCVars.GameDummyTicker, settings.UseDummyTicker); - - if (cfg.IsCVarRegistered(CCVars.GameLobbyEnabled.Name)) - cfg.SetCVar(CCVars.GameLobbyEnabled, settings.InLobby); - - if (cfg.IsCVarRegistered(CVars.NetInterp.Name)) - cfg.SetCVar(CVars.NetInterp, settings.DisableInterpolate); - - if (cfg.IsCVarRegistered(CCVars.GameMap.Name)) - cfg.SetCVar(CCVars.GameMap, settings.Map); - - if (cfg.IsCVarRegistered(CCVars.AdminLogsEnabled.Name)) - cfg.SetCVar(CCVars.AdminLogsEnabled, settings.AdminLogsEnabled); - - if (cfg.IsCVarRegistered(CVars.NetInterp.Name)) - cfg.SetCVar(CVars.NetInterp, !settings.DisableInterpolate); - }); - } - - private static void SetDefaultCVars(RobustIntegrationTest.IntegrationOptions options) - { - foreach (var (cvar, value) in TestCvars) - { - options.CVarOverrides[cvar] = value; - } - } - /// - /// Gets a , which can be used to get access to a server, and client + /// Gets a , which can be used to get access to a server, and client /// /// See /// - public static async Task GetServerClient(PoolSettings? poolSettings = null) + public static async Task GetServerClient(PoolSettings? poolSettings = null) { return await GetServerClientPair(poolSettings ?? new PoolSettings()); } @@ -273,7 +198,7 @@ private static string GetDefaultTestName(TestContext testContext) return testContext.Test.FullName.Replace("Content.IntegrationTests.Tests.", ""); } - private static async Task GetServerClientPair(PoolSettings poolSettings) + private static async Task GetServerClientPair(PoolSettings poolSettings) { if (!_initialized) throw new InvalidOperationException($"Pool manager has not been initialized"); @@ -286,7 +211,7 @@ private static async Task GetServerClientPair(PoolSettings poolSett var currentTestName = poolSettings.TestName ?? GetDefaultTestName(testContext); var poolRetrieveTimeWatch = new Stopwatch(); await testOut.WriteLineAsync($"{nameof(GetServerClientPair)}: Called by test {currentTestName}"); - Pair? pair = null; + TestPair? pair = null; try { poolRetrieveTimeWatch.Start(); @@ -295,11 +220,6 @@ private static async Task GetServerClientPair(PoolSettings poolSett await testOut.WriteLineAsync( $"{nameof(GetServerClientPair)}: Creating pair, because settings of pool settings"); pair = await CreateServerClientPair(poolSettings, testOut); - - // Newly created pairs should always be in a valid state. - await RunTicksSync(pair, 5); - await SyncTicks(pair, targetDelta: 1); - ValidatePair(pair, poolSettings); } else { @@ -308,7 +228,6 @@ await testOut.WriteLineAsync( if (pair != null) { pair.ActivateContext(testOut); - await testOut.WriteLineAsync($"{nameof(GetServerClientPair)}: Suitable pair found"); var canSkip = pair.Settings.CanFastRecycle(poolSettings); @@ -317,17 +236,16 @@ await testOut.WriteLineAsync( await testOut.WriteLineAsync($"{nameof(GetServerClientPair)}: Cleanup not needed, Skipping cleanup of pair"); await SetupCVars(pair.Client, poolSettings); await SetupCVars(pair.Server, poolSettings); - await RunTicksSync(pair, 1); + await pair.RunTicksSync(1); } else { await testOut.WriteLineAsync($"{nameof(GetServerClientPair)}: Cleaning existing pair"); - await CleanPooledPair(poolSettings, pair, testOut); + await pair.CleanPooledPair(poolSettings, testOut); } - await RunTicksSync(pair, 5); - await SyncTicks(pair, targetDelta: 1); - ValidatePair(pair, poolSettings); + await pair.RunTicksSync(5); + await pair.SyncTicks(targetDelta: 1); } else { @@ -335,192 +253,83 @@ await testOut.WriteLineAsync( pair = await CreateServerClientPair(poolSettings, testOut); } } - } finally { if (pair != null && pair.TestHistory.Count > 1) { - await testOut.WriteLineAsync($"{nameof(GetServerClientPair)}: Pair {pair.PairId} Test History Start"); + await testOut.WriteLineAsync($"{nameof(GetServerClientPair)}: Pair {pair.Id} Test History Start"); for (var i = 0; i < pair.TestHistory.Count; i++) { - await testOut.WriteLineAsync($"- Pair {pair.PairId} Test #{i}: {pair.TestHistory[i]}"); + await testOut.WriteLineAsync($"- Pair {pair.Id} Test #{i}: {pair.TestHistory[i]}"); } - await testOut.WriteLineAsync($"{nameof(GetServerClientPair)}: Pair {pair.PairId} Test History End"); + await testOut.WriteLineAsync($"{nameof(GetServerClientPair)}: Pair {pair.Id} Test History End"); } } + + pair.ValidateSettings(poolSettings); + var poolRetrieveTime = poolRetrieveTimeWatch.Elapsed; await testOut.WriteLineAsync( - $"{nameof(GetServerClientPair)}: Retrieving pair {pair.PairId} from pool took {poolRetrieveTime.TotalMilliseconds} ms"); + $"{nameof(GetServerClientPair)}: Retrieving pair {pair.Id} from pool took {poolRetrieveTime.TotalMilliseconds} ms"); await testOut.WriteLineAsync( - $"{nameof(GetServerClientPair)}: Returning pair {pair.PairId}"); + $"{nameof(GetServerClientPair)}: Returning pair {pair.Id}"); pair.Settings = poolSettings; pair.TestHistory.Add(currentTestName); - var usageWatch = new Stopwatch(); - usageWatch.Start(); - - return new PairTracker(testOut) - { - Pair = pair, - UsageWatch = usageWatch - }; - } - - private static void ValidatePair(Pair pair, PoolSettings settings) - { - var cfg = pair.Server.ResolveDependency(); - Assert.That(cfg.GetCVar(CCVars.AdminLogsEnabled), Is.EqualTo(settings.AdminLogsEnabled)); - Assert.That(cfg.GetCVar(CCVars.GameLobbyEnabled), Is.EqualTo(settings.InLobby)); - Assert.That(cfg.GetCVar(CCVars.GameDummyTicker), Is.EqualTo(settings.UseDummyTicker)); - - var entMan = pair.Server.ResolveDependency(); - var ticker = entMan.System(); - Assert.That(ticker.DummyTicker, Is.EqualTo(settings.UseDummyTicker)); - - var expectPreRound = settings.InLobby | settings.DummyTicker; - var expectedLevel = expectPreRound ? GameRunLevel.PreRoundLobby : GameRunLevel.InRound; - Assert.That(ticker.RunLevel, Is.EqualTo(expectedLevel)); - - var baseClient = pair.Client.ResolveDependency(); - var netMan = pair.Client.ResolveDependency(); - Assert.That(netMan.IsConnected, Is.Not.EqualTo(!settings.ShouldBeConnected)); - - if (!settings.ShouldBeConnected) - return; - - Assert.That(baseClient.RunLevel, Is.EqualTo(ClientRunLevel.InGame)); - var cPlayer = pair.Client.ResolveDependency(); - var sPlayer = pair.Server.ResolveDependency(); - Assert.That(sPlayer.Sessions.Count(), Is.EqualTo(1)); - var session = sPlayer.Sessions.Single(); - Assert.That(cPlayer.LocalPlayer?.Session.UserId, Is.EqualTo(session.UserId)); - - if (ticker.DummyTicker) - return; - - var status = ticker.PlayerGameStatuses[session.UserId]; - var expected = settings.InLobby - ? PlayerGameStatus.NotReadyToPlay - : PlayerGameStatus.JoinedGame; - - Assert.That(status, Is.EqualTo(expected)); - - if (settings.InLobby) - { - Assert.Null(session.AttachedEntity); - return; - } - - Assert.NotNull(session.AttachedEntity); - Assert.That(entMan.EntityExists(session.AttachedEntity)); - Assert.That(entMan.HasComponent(session.AttachedEntity)); - var mindCont = entMan.GetComponent(session.AttachedEntity!.Value); - Assert.NotNull(mindCont.Mind); - Assert.Null(mindCont.Mind?.VisitingEntity); - Assert.That(mindCont.Mind!.OwnedEntity, Is.EqualTo(session.AttachedEntity!.Value)); - Assert.That(mindCont.Mind.UserId, Is.EqualTo(session.UserId)); + pair.Watch.Restart(); + return pair; } - private static Pair? GrabOptimalPair(PoolSettings poolSettings) + private static TestPair? GrabOptimalPair(PoolSettings poolSettings) { lock (PairLock) { - Pair? fallback = null; + TestPair? fallback = null; foreach (var pair in Pairs.Keys) { if (Pairs[pair]) continue; + if (!pair.Settings.CanFastRecycle(poolSettings)) { fallback = pair; continue; } + + pair.Use(); Pairs[pair] = true; return pair; } if (fallback != null) { + fallback.Use(); Pairs[fallback!] = true; } + + if (fallback == null && _pairId > 8) + { + var x = 2; + } + return fallback; } } /// - /// Used by PairTracker after checking the server/client pair, Don't use this. + /// Used by TestPair after checking the server/client pair, Don't use this. /// - /// - public static void NoCheckReturn(Pair pair) + public static void NoCheckReturn(TestPair pair) { lock (PairLock) { - if (pair.Dead) - { + if (pair.State == TestPair.PairState.Dead) Pairs.Remove(pair); - } - else - { + else if (pair.State == TestPair.PairState.Ready) Pairs[pair] = false; - } - } - } - - private static async Task CleanPooledPair(PoolSettings settings, Pair pair, TextWriter testOut) - { - pair.Settings = default!; - var methodWatch = new Stopwatch(); - methodWatch.Start(); - await testOut.WriteLineAsync($"Recycling..."); - - var configManager = pair.Server.ResolveDependency(); - var entityManager = pair.Server.ResolveDependency(); - var gameTicker = entityManager.System(); - var cNetMgr = pair.Client.ResolveDependency(); - - await RunTicksSync(pair, 1); - - // Disconnect the client if they are connected. - if (cNetMgr.IsConnected) - { - await testOut.WriteLineAsync($"Recycling: {methodWatch.Elapsed.TotalMilliseconds} ms: Disconnecting client."); - await pair.Client.WaitPost(() => cNetMgr.ClientDisconnect("Test pooling cleanup disconnect")); - await RunTicksSync(pair, 1); - } - Assert.That(cNetMgr.IsConnected, Is.False); - - // Move to pre-round lobby. Required to toggle dummy ticker on and off - if (gameTicker.RunLevel != GameRunLevel.PreRoundLobby) - { - await testOut.WriteLineAsync($"Recycling: {methodWatch.Elapsed.TotalMilliseconds} ms: Restarting server."); - Assert.That(gameTicker.DummyTicker, Is.False); - configManager.SetCVar(CCVars.GameLobbyEnabled, true); - await pair.Server.WaitPost(() => gameTicker.RestartRound()); - await RunTicksSync(pair, 1); - } - - //Apply Cvars - await testOut.WriteLineAsync($"Recycling: {methodWatch.Elapsed.TotalMilliseconds} ms: Setting CVar "); - await SetupCVars(pair.Client, settings); - await SetupCVars(pair.Server, settings); - await RunTicksSync(pair, 1); - - // Restart server. - await testOut.WriteLineAsync($"Recycling: {methodWatch.Elapsed.TotalMilliseconds} ms: Restarting server again"); - await pair.Server.WaitPost(() => gameTicker.RestartRound()); - await RunTicksSync(pair, 1); - - // Connect client - if (settings.ShouldBeConnected) - { - await testOut.WriteLineAsync($"Recycling: {methodWatch.Elapsed.TotalMilliseconds} ms: Connecting client"); - pair.Client.SetConnectTarget(pair.Server); - await pair.Client.WaitPost(() => cNetMgr.ClientConnect(null!, 0, null!)); + else + throw new InvalidOperationException($"Attempted to return a pair in an invalid state. Pair: {pair.Id}. State: {pair.State}."); } - - await testOut.WriteLineAsync($"Recycling: {methodWatch.Elapsed.TotalMilliseconds} ms: Idling"); - await ReallyBeIdle(pair); - await testOut.WriteLineAsync($"Recycling: {methodWatch.Elapsed.TotalMilliseconds} ms: Done recycling"); } private static void DieIfPoolFailure() @@ -543,147 +352,23 @@ private static void DieIfPoolFailure() } } - private static async Task CreateServerClientPair(PoolSettings poolSettings, TextWriter testOut) + private static async Task CreateServerClientPair(PoolSettings poolSettings, TextWriter testOut) { - Pair pair; try { - var (client, clientLog) = await GenerateClient(poolSettings, testOut); - var (server, serverLog) = await GenerateServer(poolSettings, testOut); - pair = new Pair - { - Server = server, - ServerLogHandler = serverLog, - Client = client, - ClientLogHandler = clientLog, - PairId = Interlocked.Increment(ref _pairId) - }; - - if (!poolSettings.NoLoadTestPrototypes) - await pair.LoadPrototypes(_testPrototypes!); + var id = Interlocked.Increment(ref _pairId); + var pair = new TestPair(id); + await pair.Initialize(poolSettings, testOut, _testPrototypes); + pair.Use(); + await pair.RunTicksSync(5); + await pair.SyncTicks(targetDelta: 1); + return pair; } catch (Exception ex) { _poolFailureReason = ex; throw; } - - if (!poolSettings.UseDummyTicker) - { - var gameTicker = pair.Server.ResolveDependency().System(); - await pair.Server.WaitPost(() => gameTicker.RestartRound()); - } - - if (poolSettings.ShouldBeConnected) - { - pair.Client.SetConnectTarget(pair.Server); - await pair.Client.WaitPost(() => - { - var netMgr = IoCManager.Resolve(); - if (!netMgr.IsConnected) - { - netMgr.ClientConnect(null!, 0, null!); - } - }); - await ReallyBeIdle(pair, 10); - await pair.Client.WaitRunTicks(1); - } - return pair; - } - - /// - /// Creates a map, a grid, and a tile, and gives back references to them. - /// - /// A pairTracker - /// A TestMapData - public static async Task CreateTestMap(PairTracker pairTracker) - { - var server = pairTracker.Pair.Server; - - await server.WaitIdleAsync(); - - var settings = pairTracker.Pair.Settings; - var mapManager = server.ResolveDependency(); - var tileDefinitionManager = server.ResolveDependency(); - - var mapData = new TestMapData(); - await server.WaitPost(() => - { - mapData.MapId = mapManager.CreateMap(); - mapData.MapUid = mapManager.GetMapEntityId(mapData.MapId); - mapData.MapGrid = mapManager.CreateGrid(mapData.MapId); - mapData.GridUid = mapData.MapGrid.Owner; // Fixing this requires an engine PR. - mapData.GridCoords = new EntityCoordinates(mapData.GridUid, 0, 0); - var plating = tileDefinitionManager["Plating"]; - var platingTile = new Tile(plating.TileId); - mapData.MapGrid.SetTile(mapData.GridCoords, platingTile); - mapData.MapCoords = new MapCoordinates(0, 0, mapData.MapId); - mapData.Tile = mapData.MapGrid.GetAllTiles().First(); - }); - if (settings.ShouldBeConnected) - { - await RunTicksSync(pairTracker.Pair, 10); - } - - return mapData; - } - - /// - /// Runs a server/client pair in sync - /// - /// A server/client pair - /// How many ticks to run them for - public static async Task RunTicksSync(Pair pair, int ticks) - { - for (var i = 0; i < ticks; i++) - { - await pair.Server.WaitRunTicks(1); - await pair.Client.WaitRunTicks(1); - } - } - - /// - /// Runs the server/client in sync, but also ensures they are both idle each tick. - /// - /// The server/client pair - /// How many ticks to run - public static async Task ReallyBeIdle(Pair pair, int runTicks = 25) - { - for (var i = 0; i < runTicks; i++) - { - await pair.Client.WaitRunTicks(1); - await pair.Server.WaitRunTicks(1); - for (var idleCycles = 0; idleCycles < 4; idleCycles++) - { - await pair.Client.WaitIdleAsync(); - await pair.Server.WaitIdleAsync(); - } - } - } - - /// - /// Run the server/clients until the ticks are synchronized. - /// By default the client will be one tick ahead of the server. - /// - public static async Task SyncTicks(Pair pair, int targetDelta = 1) - { - var sTiming = pair.Server.ResolveDependency(); - var cTiming = pair.Client.ResolveDependency(); - var sTick = (int)sTiming.CurTick.Value; - var cTick = (int)cTiming.CurTick.Value; - var delta = cTick - sTick; - - if (delta == targetDelta) - return; - if (delta > targetDelta) - await pair.Server.WaitRunTicks(delta - targetDelta); - else - await pair.Client.WaitRunTicks(targetDelta - delta); - - sTick = (int)sTiming.CurTick.Value; - cTick = (int)cTiming.CurTick.Value; - delta = cTick - sTick; - Assert.That(delta, Is.EqualTo(targetDelta)); } /// @@ -743,7 +428,7 @@ public static async Task WaitUntil(RobustIntegrationTest.IntegrationInstance ins /// /// Helper method that retrieves all entity prototypes that have some component. /// - public static List GetEntityPrototypes(RobustIntegrationTest.IntegrationInstance instance) where T : Component + public static List GetPrototypesWithComponent(RobustIntegrationTest.IntegrationInstance instance) where T : Component { var protoMan = instance.ResolveDependency(); var compFact = instance.ResolveDependency(); @@ -772,338 +457,3 @@ public static void Startup(Assembly? assembly) DiscoverTestPrototypes(assembly); } } - -/// -/// Settings for the pooled server, and client pair. -/// Some options are for changing the pair, and others are -/// so the pool can properly clean up what you borrowed. -/// -public sealed class PoolSettings -{ - /// - /// If the returned pair must not be reused - /// - public bool MustNotBeReused => Destructive || NoLoadContent || NoLoadTestPrototypes; - - /// - /// If the given pair must be brand new - /// - public bool MustBeNew => Fresh || NoLoadContent || NoLoadTestPrototypes; - - /// - /// Set to true if the test will ruin the server/client pair. - /// - public bool Destructive { get; init; } - - /// - /// Set to true if the given server/client pair should be created fresh. - /// - public bool Fresh { get; init; } - - /// - /// Set to true if the given server should be using a dummy ticker. Ignored if is true. - /// - public bool DummyTicker { get; init; } = true; - - public bool UseDummyTicker => !InLobby && DummyTicker; - - /// - /// If true, this enables the creation of admin logs during the test. - /// - public bool AdminLogsEnabled { get; init; } - - /// - /// Set to true if the given server/client pair should be connected from each other. - /// Defaults to disconnected as it makes dirty recycling slightly faster. - /// If is true, this option is ignored. - /// - public bool Connected { get; init; } - - public bool ShouldBeConnected => InLobby || Connected; - - /// - /// Set to true if the given server/client pair should be in the lobby. - /// If the pair is not in the lobby at the end of the test, this test must be marked as dirty. - /// - /// - /// If this is enabled, the value of is ignored. - /// - public bool InLobby { get; init; } - - /// - /// Set this to true to skip loading the content files. - /// Note: This setting won't work with a client. - /// - public bool NoLoadContent { get; init; } - - /// - /// This will return a server-client pair that has not loaded test prototypes. - /// Try avoiding this whenever possible, as this will always create & destroy a new pair. - /// Use if you need to exclude test prototypees. - /// - public bool NoLoadTestPrototypes { get; init; } - - /// - /// Set this to true to disable the NetInterp CVar on the given server/client pair - /// - public bool DisableInterpolate { get; init; } - - /// - /// Set this to true to always clean up the server/client pair before giving it to another borrower - /// - public bool Dirty { get; init; } - - /// - /// Set this to the path of a map to have the given server/client pair load the map. - /// - public string Map { get; init; } = PoolManager.TestMap; - - /// - /// Overrides the test name detection, and uses this in the test history instead - /// - public string? TestName { get; set; } - - /// - /// Tries to guess if we can skip recycling the server/client pair. - /// - /// The next set of settings the old pair will be set to - /// If we can skip cleaning it up - public bool CanFastRecycle(PoolSettings nextSettings) - { - if (MustNotBeReused) - throw new InvalidOperationException("Attempting to recycle a non-reusable test."); - - if (nextSettings.MustBeNew) - throw new InvalidOperationException("Attempting to recycle a test while requesting a fresh test."); - - if (Dirty) - return false; - - // Check that certain settings match. - return !ShouldBeConnected == !nextSettings.ShouldBeConnected - && UseDummyTicker == nextSettings.UseDummyTicker - && Map == nextSettings.Map - && InLobby == nextSettings.InLobby; - } -} - -/// -/// Holds a reference to things commonly needed when testing on a map -/// -public sealed class TestMapData -{ - public EntityUid MapUid { get; set; } - public EntityUid GridUid { get; set; } - public MapId MapId { get; set; } - public MapGridComponent MapGrid { get; set; } = default!; - public EntityCoordinates GridCoords { get; set; } - public MapCoordinates MapCoords { get; set; } - public TileRef Tile { get; set; } -} - -/// -/// A server/client pair -/// -public sealed class Pair -{ - public bool Dead { get; private set; } - public int PairId { get; init; } - public List TestHistory { get; set; } = new(); - public PoolSettings Settings { get; set; } = default!; - public RobustIntegrationTest.ServerIntegrationInstance Server { get; init; } = default!; - public RobustIntegrationTest.ClientIntegrationInstance Client { get; init; } = default!; - - public PoolTestLogHandler ServerLogHandler { get; init; } = default!; - public PoolTestLogHandler ClientLogHandler { get; init; } = default!; - - private Dictionary> _loadedPrototypes = new(); - private HashSet _loadedEntityPrototypes = new(); - - public void Kill() - { - Dead = true; - Server.Dispose(); - Client.Dispose(); - } - - public void ClearContext() - { - ServerLogHandler.ClearContext(); - ClientLogHandler.ClearContext(); - } - - public void ActivateContext(TextWriter testOut) - { - ServerLogHandler.ActivateContext(testOut); - ClientLogHandler.ActivateContext(testOut); - } - - public async Task LoadPrototypes(List prototypes) - { - await LoadPrototypes(Server, prototypes); - await LoadPrototypes(Client, prototypes); - } - - private async Task LoadPrototypes(RobustIntegrationTest.IntegrationInstance instance, List prototypes) - { - var changed = new Dictionary>(); - var protoMan = instance.ResolveDependency(); - foreach (var file in prototypes) - { - protoMan.LoadString(file, changed: changed); - } - - await instance.WaitPost(() => protoMan.ReloadPrototypes(changed)); - - foreach (var (kind, ids) in changed) - { - _loadedPrototypes.GetOrNew(kind).UnionWith(ids); - } - - if (_loadedPrototypes.TryGetValue(typeof(EntityPrototype), out var entIds)) - _loadedEntityPrototypes.UnionWith(entIds); - } - - public bool IsTestPrototype(EntityPrototype proto) - { - return _loadedEntityPrototypes.Contains(proto.ID); - } - - public bool IsTestEntityPrototype(string id) - { - return _loadedEntityPrototypes.Contains(id); - } - - public bool IsTestPrototype(string id) where TPrototype : IPrototype - { - return IsTestPrototype(typeof(TPrototype), id); - } - - public bool IsTestPrototype(TPrototype proto) where TPrototype : IPrototype - { - return IsTestPrototype(typeof(TPrototype), proto.ID); - } - - public bool IsTestPrototype(Type kind, string id) - { - return _loadedPrototypes.TryGetValue(kind, out var ids) && ids.Contains(id); - } -} - -/// -/// Used by the pool to keep track of a borrowed server/client pair. -/// -public sealed class PairTracker : IAsyncDisposable -{ - private readonly TextWriter _testOut; - private int _disposed; - public Stopwatch UsageWatch { get; set; } = default!; - public Pair Pair { get; init; } = default!; - - public PairTracker(TextWriter testOut) - { - _testOut = testOut; - } - - // Convenience properties. - public RobustIntegrationTest.ServerIntegrationInstance Server => Pair.Server; - public RobustIntegrationTest.ClientIntegrationInstance Client => Pair.Client; - - private async Task OnDirtyDispose() - { - var usageTime = UsageWatch.Elapsed; - await _testOut.WriteLineAsync($"{nameof(DisposeAsync)}: Test gave back pair {Pair.PairId} in {usageTime.TotalMilliseconds} ms"); - var dirtyWatch = new Stopwatch(); - dirtyWatch.Start(); - Pair.Kill(); - PoolManager.NoCheckReturn(Pair); - var disposeTime = dirtyWatch.Elapsed; - await _testOut.WriteLineAsync($"{nameof(DisposeAsync)}: Disposed pair {Pair.PairId} in {disposeTime.TotalMilliseconds} ms"); - - // Test pairs should only dirty dispose if they are failing. If they are not failing, this probably happened - // because someone forgot to clean-return the pair. - Assert.Warn("Test was dirty-disposed."); - } - - private async Task OnCleanDispose() - { - var usageTime = UsageWatch.Elapsed; - await _testOut.WriteLineAsync($"{nameof(CleanReturnAsync)}: Test borrowed pair {Pair.PairId} for {usageTime.TotalMilliseconds} ms"); - var cleanWatch = new Stopwatch(); - cleanWatch.Start(); - // Let any last minute failures the test cause happen. - await PoolManager.ReallyBeIdle(Pair); - if (!Pair.Settings.Destructive) - { - if (Pair.Client.IsAlive == false) - { - throw new Exception($"{nameof(CleanReturnAsync)}: Test killed the client in pair {Pair.PairId}:", Pair.Client.UnhandledException); - } - - if (Pair.Server.IsAlive == false) - { - throw new Exception($"{nameof(CleanReturnAsync)}: Test killed the server in pair {Pair.PairId}:", Pair.Server.UnhandledException); - } - } - - if (Pair.Settings.MustNotBeReused) - { - Pair.Kill(); - PoolManager.NoCheckReturn(Pair); - await PoolManager.ReallyBeIdle(Pair); - var returnTime2 = cleanWatch.Elapsed; - await _testOut.WriteLineAsync($"{nameof(CleanReturnAsync)}: Clean disposed in {returnTime2.TotalMilliseconds} ms"); - return; - } - - var sRuntimeLog = Pair.Server.ResolveDependency(); - if (sRuntimeLog.ExceptionCount > 0) - throw new Exception($"{nameof(CleanReturnAsync)}: Server logged exceptions"); - var cRuntimeLog = Pair.Client.ResolveDependency(); - if (cRuntimeLog.ExceptionCount > 0) - throw new Exception($"{nameof(CleanReturnAsync)}: Client logged exceptions"); - - Pair.ClearContext(); - PoolManager.NoCheckReturn(Pair); - var returnTime = cleanWatch.Elapsed; - await _testOut.WriteLineAsync($"{nameof(CleanReturnAsync)}: PoolManager took {returnTime.TotalMilliseconds} ms to put pair {Pair.PairId} back into the pool"); - } - - public async ValueTask CleanReturnAsync() - { - var disposed = Interlocked.Exchange(ref _disposed, 1); - switch (disposed) - { - case 0: - await _testOut.WriteLineAsync($"{nameof(CleanReturnAsync)}: Return of pair {Pair.PairId} started"); - break; - case 1: - throw new Exception($"{nameof(CleanReturnAsync)}: Already clean returned"); - case 2: - throw new Exception($"{nameof(CleanReturnAsync)}: Already dirty disposed"); - default: - throw new Exception($"{nameof(CleanReturnAsync)}: Unexpected disposed value"); - } - - await OnCleanDispose(); - } - - public async ValueTask DisposeAsync() - { - var disposed = Interlocked.Exchange(ref _disposed, 2); - switch (disposed) - { - case 0: - await _testOut.WriteLineAsync($"{nameof(DisposeAsync)}: Dirty return of pair {Pair.PairId} started"); - break; - case 1: - await _testOut.WriteLineAsync($"{nameof(DisposeAsync)}: Pair {Pair.PairId} was properly clean disposed"); - return; - case 2: - throw new Exception($"{nameof(DisposeAsync)}: Already dirty disposed pair {Pair.PairId}"); - default: - throw new Exception($"{nameof(DisposeAsync)}: Unexpected disposed value"); - } - await OnDirtyDispose(); - } -} diff --git a/Content.IntegrationTests/PoolSettings.cs b/Content.IntegrationTests/PoolSettings.cs new file mode 100644 index 00000000000..a78173808f8 --- /dev/null +++ b/Content.IntegrationTests/PoolSettings.cs @@ -0,0 +1,117 @@ +#nullable enable + +namespace Content.IntegrationTests; + +/// +/// Settings for the pooled server, and client pair. +/// Some options are for changing the pair, and others are +/// so the pool can properly clean up what you borrowed. +/// +public sealed class PoolSettings +{ + /// + /// If the returned pair must not be reused + /// + public bool MustNotBeReused => Destructive || NoLoadContent || NoLoadTestPrototypes; + + /// + /// If the given pair must be brand new + /// + public bool MustBeNew => Fresh || NoLoadContent || NoLoadTestPrototypes; + + /// + /// Set to true if the test will ruin the server/client pair. + /// + public bool Destructive { get; init; } + + /// + /// Set to true if the given server/client pair should be created fresh. + /// + public bool Fresh { get; init; } + + /// + /// Set to true if the given server should be using a dummy ticker. Ignored if is true. + /// + public bool DummyTicker { get; init; } = true; + + public bool UseDummyTicker => !InLobby && DummyTicker; + + /// + /// If true, this enables the creation of admin logs during the test. + /// + public bool AdminLogsEnabled { get; init; } + + /// + /// Set to true if the given server/client pair should be connected from each other. + /// Defaults to disconnected as it makes dirty recycling slightly faster. + /// If is true, this option is ignored. + /// + public bool Connected { get; init; } + + public bool ShouldBeConnected => InLobby || Connected; + + /// + /// Set to true if the given server/client pair should be in the lobby. + /// If the pair is not in the lobby at the end of the test, this test must be marked as dirty. + /// + /// + /// If this is enabled, the value of is ignored. + /// + public bool InLobby { get; init; } + + /// + /// Set this to true to skip loading the content files. + /// Note: This setting won't work with a client. + /// + public bool NoLoadContent { get; init; } + + /// + /// This will return a server-client pair that has not loaded test prototypes. + /// Try avoiding this whenever possible, as this will always create & destroy a new pair. + /// Use if you need to exclude test prototypees. + /// + public bool NoLoadTestPrototypes { get; init; } + + /// + /// Set this to true to disable the NetInterp CVar on the given server/client pair + /// + public bool DisableInterpolate { get; init; } + + /// + /// Set this to true to always clean up the server/client pair before giving it to another borrower + /// + public bool Dirty { get; init; } + + /// + /// Set this to the path of a map to have the given server/client pair load the map. + /// + public string Map { get; init; } = PoolManager.TestMap; + + /// + /// Overrides the test name detection, and uses this in the test history instead + /// + public string? TestName { get; set; } + + /// + /// Tries to guess if we can skip recycling the server/client pair. + /// + /// The next set of settings the old pair will be set to + /// If we can skip cleaning it up + public bool CanFastRecycle(PoolSettings nextSettings) + { + if (MustNotBeReused) + throw new InvalidOperationException("Attempting to recycle a non-reusable test."); + + if (nextSettings.MustBeNew) + throw new InvalidOperationException("Attempting to recycle a test while requesting a fresh test."); + + if (Dirty) + return false; + + // Check that certain settings match. + return !ShouldBeConnected == !nextSettings.ShouldBeConnected + && UseDummyTicker == nextSettings.UseDummyTicker + && Map == nextSettings.Map + && InLobby == nextSettings.InLobby; + } +} \ No newline at end of file diff --git a/Content.IntegrationTests/Tests/Access/AccessReaderTest.cs b/Content.IntegrationTests/Tests/Access/AccessReaderTest.cs index fa172e7048f..7d86fc2f6c2 100644 --- a/Content.IntegrationTests/Tests/Access/AccessReaderTest.cs +++ b/Content.IntegrationTests/Tests/Access/AccessReaderTest.cs @@ -16,7 +16,7 @@ public sealed class AccessReaderTest public async Task TestProtoTags() { await using var pair = await PoolManager.GetServerClient(); - var server = pair.Pair.Server; + var server = pair.Server; var protoManager = server.ResolveDependency(); var accessName = server.ResolveDependency().GetComponentName(typeof(AccessReaderComponent)); @@ -44,8 +44,8 @@ await server.WaitAssertion(() => [Test] public async Task TestTags() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var entityManager = server.ResolveDependency(); @@ -121,7 +121,7 @@ await server.WaitAssertion(() => Assert.That(system.AreAccessTagsAllowed(Array.Empty(), reader), Is.False); }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } diff --git a/Content.IntegrationTests/Tests/Actions/ActionsAddedTest.cs b/Content.IntegrationTests/Tests/Actions/ActionsAddedTest.cs index 0f4250c5084..01f8bdd9387 100644 --- a/Content.IntegrationTests/Tests/Actions/ActionsAddedTest.cs +++ b/Content.IntegrationTests/Tests/Actions/ActionsAddedTest.cs @@ -1,9 +1,10 @@ using System.Linq; using Content.Shared.Actions; -using Content.Shared.Actions.ActionTypes; using Content.Shared.CombatMode; using Robust.Server.Player; using Robust.Shared.GameObjects; +using Robust.Shared.Players; +using PlayerManager = Robust.Client.Player.PlayerManager; namespace Content.IntegrationTests.Tests.Actions; @@ -24,40 +25,47 @@ public async Task TestCombatActionsAdded() var client = pair.Client; var sEntMan = server.ResolveDependency(); var cEntMan = client.ResolveDependency(); - var session = server.ResolveDependency().ServerSessions.Single(); + var clientSession = client.ResolveDependency().LocalPlayer?.Session; + var serverSession = server.ResolveDependency().ServerSessions.Single(); + var sActionSystem = server.System(); + var cActionSystem = client.System(); // Dummy ticker is disabled - client should be in control of a normal mob. - Assert.NotNull(session.AttachedEntity); - var ent = session.AttachedEntity!.Value; - Assert.That(sEntMan.EntityExists(ent)); - Assert.That(cEntMan.EntityExists(ent)); - Assert.That(sEntMan.HasComponent(ent)); - Assert.That(cEntMan.HasComponent(ent)); - Assert.That(sEntMan.HasComponent(ent)); - Assert.That(cEntMan.HasComponent(ent)); + Assert.NotNull(serverSession.AttachedEntity); + var serverEnt = serverSession.AttachedEntity!.Value; + var clientEnt = clientSession!.AttachedEntity!.Value; + Assert.That(sEntMan.EntityExists(serverEnt)); + Assert.That(cEntMan.EntityExists(clientEnt)); + Assert.That(sEntMan.HasComponent(serverEnt)); + Assert.That(cEntMan.HasComponent(clientEnt)); + Assert.That(sEntMan.HasComponent(serverEnt)); + Assert.That(cEntMan.HasComponent(clientEnt)); - var sComp = sEntMan.GetComponent(ent); - var cComp = cEntMan.GetComponent(ent); + var sComp = sEntMan.GetComponent(serverEnt); + var cComp = cEntMan.GetComponent(clientEnt); // Mob should have a combat-mode action. // This action should have a non-null event both on the server & client. var evType = typeof(ToggleCombatActionEvent); - var sActions = sComp!.Actions.Where( - x => x is InstantAction act && act.Event?.GetType() == evType).ToArray(); - var cActions = cComp!.Actions.Where( - x => x is InstantAction act && act.Event?.GetType() == evType).ToArray(); + var sActions = sActionSystem.GetActions(serverEnt).Where( + x => x.Comp is InstantActionComponent act && act.Event?.GetType() == evType).ToArray(); + var cActions = cActionSystem.GetActions(clientEnt).Where( + x => x.Comp is InstantActionComponent act && act.Event?.GetType() == evType).ToArray(); Assert.That(sActions.Length, Is.EqualTo(1)); Assert.That(cActions.Length, Is.EqualTo(1)); - var sAct = (InstantAction) sActions[0]; - var cAct = (InstantAction) cActions[0]; + var sAct = sActions[0].Comp; + var cAct = cActions[0].Comp; + + Assert.NotNull(sAct); + Assert.NotNull(cAct); // Finally, these two actions are not the same object // required, because integration tests do not respect the [NonSerialized] attribute and will simply events by reference. Assert.That(ReferenceEquals(sAct, cAct), Is.False); - Assert.That(ReferenceEquals(sAct.Event, cAct.Event), Is.False); + Assert.That(ReferenceEquals(sAct.BaseEvent, cAct.BaseEvent), Is.False); await pair.CleanReturnAsync(); } diff --git a/Content.IntegrationTests/Tests/Administration/Logs/AddTests.cs b/Content.IntegrationTests/Tests/Administration/Logs/AddTests.cs index 5c6d276050e..6562a26b5e1 100644 --- a/Content.IntegrationTests/Tests/Administration/Logs/AddTests.cs +++ b/Content.IntegrationTests/Tests/Administration/Logs/AddTests.cs @@ -26,15 +26,15 @@ public sealed class AddTests [Test] public async Task AddAndGetSingleLog() { - await using var pairTracker = await PoolManager.GetServerClient(LogTestSettings); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(LogTestSettings); + var server = pair.Server; var sEntities = server.ResolveDependency(); var sAdminLogSystem = server.ResolveDependency(); var guid = Guid.NewGuid(); - var testMap = await PoolManager.CreateTestMap(pairTracker); + var testMap = await pair.CreateTestMap(); var coordinates = testMap.GridCoords; await server.WaitPost(() => { @@ -65,14 +65,14 @@ await PoolManager.WaitUntil(server, async () => return false; }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task AddAndGetUnformattedLog() { - await using var pairTracker = await PoolManager.GetServerClient(LogTestSettings); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(LogTestSettings); + var server = pair.Server; var sDatabase = server.ResolveDependency(); var sEntities = server.ResolveDependency(); @@ -83,7 +83,7 @@ public async Task AddAndGetUnformattedLog() var guid = Guid.NewGuid(); - var testMap = await PoolManager.CreateTestMap(pairTracker); + var testMap = await pair.CreateTestMap(); var coordinates = testMap.GridCoords; await server.WaitPost(() => { @@ -130,20 +130,20 @@ await PoolManager.WaitUntil(server, async () => json.Dispose(); } - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] [TestCase(500)] public async Task BulkAddLogs(int amount) { - await using var pairTracker = await PoolManager.GetServerClient(LogTestSettings); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(LogTestSettings); + var server = pair.Server; var sEntities = server.ResolveDependency(); var sAdminLogSystem = server.ResolveDependency(); - var testMap = await PoolManager.CreateTestMap(pairTracker); + var testMap = await pair.CreateTestMap(); var coordinates = testMap.GridCoords; await server.WaitPost(() => { @@ -161,14 +161,14 @@ await PoolManager.WaitUntil(server, async () => return messages.Count >= amount; }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task AddPlayerSessionLog() { - await using var pairTracker = await PoolManager.GetServerClient(LogTestSettings); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(LogTestSettings); + var server = pair.Server; var sPlayers = server.ResolveDependency(); @@ -197,7 +197,7 @@ await PoolManager.WaitUntil(server, async () => Assert.That(logs.First().Players, Does.Contain(playerGuid)); return true; }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] @@ -210,8 +210,8 @@ public async Task PreRoundAddAndGetSingle() AdminLogsEnabled = true }; - await using var pairTracker = await PoolManager.GetServerClient(setting); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(setting); + var server = pair.Server; var sDatabase = server.ResolveDependency(); var sSystems = server.ResolveDependency(); @@ -264,14 +264,14 @@ await PoolManager.WaitUntil(server, async () => json.Dispose(); } - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task DuplicatePlayerDoesNotThrowTest() { - await using var pairTracker = await PoolManager.GetServerClient(LogTestSettings); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(LogTestSettings); + var server = pair.Server; var sPlayers = server.ResolveDependency(); var sAdminLogSystem = server.ResolveDependency(); @@ -300,15 +300,15 @@ await PoolManager.WaitUntil(server, async () => return true; }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); Assert.Pass(); } [Test] public async Task DuplicatePlayerIdDoesNotThrowTest() { - await using var pairTracker = await PoolManager.GetServerClient(LogTestSettings); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(LogTestSettings); + var server = pair.Server; var sPlayers = server.ResolveDependency(); @@ -338,7 +338,7 @@ await PoolManager.WaitUntil(server, async () => return true; }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); Assert.Pass(); } } diff --git a/Content.IntegrationTests/Tests/Administration/Logs/FilterTests.cs b/Content.IntegrationTests/Tests/Administration/Logs/FilterTests.cs index 7acbba314cd..6f907f425e3 100644 --- a/Content.IntegrationTests/Tests/Administration/Logs/FilterTests.cs +++ b/Content.IntegrationTests/Tests/Administration/Logs/FilterTests.cs @@ -14,8 +14,8 @@ public sealed class FilterTests [TestCase(DateOrder.Descending)] public async Task Date(DateOrder order) { - await using var pairTracker = await PoolManager.GetServerClient(AddTests.LogTestSettings); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(AddTests.LogTestSettings); + var server = pair.Server; var sEntities = server.ResolveDependency(); @@ -24,7 +24,7 @@ public async Task Date(DateOrder order) var commonGuid = Guid.NewGuid(); var firstGuid = Guid.NewGuid(); var secondGuid = Guid.NewGuid(); - var testMap = await PoolManager.CreateTestMap(pairTracker); + var testMap = await pair.CreateTestMap(); var coordinates = testMap.GridCoords; await server.WaitPost(() => @@ -96,6 +96,6 @@ await PoolManager.WaitUntil(server, async () => return firstFound && secondFound; }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } diff --git a/Content.IntegrationTests/Tests/Administration/Logs/QueryTests.cs b/Content.IntegrationTests/Tests/Administration/Logs/QueryTests.cs index cf0e6412d93..1155edfad2d 100644 --- a/Content.IntegrationTests/Tests/Administration/Logs/QueryTests.cs +++ b/Content.IntegrationTests/Tests/Administration/Logs/QueryTests.cs @@ -15,8 +15,8 @@ public sealed class QueryTests [Test] public async Task QuerySingleLog() { - await using var pairTracker = await PoolManager.GetServerClient(AddTests.LogTestSettings); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(AddTests.LogTestSettings); + var server = pair.Server; var sSystems = server.ResolveDependency(); var sPlayers = server.ResolveDependency(); @@ -55,6 +55,6 @@ await PoolManager.WaitUntil(server, async () => return false; }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } diff --git a/Content.IntegrationTests/Tests/Atmos/AlarmThresholdTest.cs b/Content.IntegrationTests/Tests/Atmos/AlarmThresholdTest.cs index 9ebc319d43f..064b4f9a2d9 100644 --- a/Content.IntegrationTests/Tests/Atmos/AlarmThresholdTest.cs +++ b/Content.IntegrationTests/Tests/Atmos/AlarmThresholdTest.cs @@ -24,8 +24,8 @@ public sealed class AlarmThresholdTest [Test] public async Task TestAlarmThreshold() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var prototypeManager = server.ResolveDependency(); AtmosAlarmThreshold threshold = default!; @@ -134,7 +134,7 @@ await server.WaitAssertion(() => Assert.That(alarmType, Is.EqualTo(AtmosAlarmType.Normal)); } }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/Atmos/ConstantsTest.cs b/Content.IntegrationTests/Tests/Atmos/ConstantsTest.cs index 85e9ac934a8..9f016cc89a7 100644 --- a/Content.IntegrationTests/Tests/Atmos/ConstantsTest.cs +++ b/Content.IntegrationTests/Tests/Atmos/ConstantsTest.cs @@ -12,8 +12,8 @@ public sealed class ConstantsTest [Test] public async Task TotalGasesTest() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var entityManager = server.ResolveDependency(); await server.WaitPost(() => @@ -26,7 +26,7 @@ await server.WaitPost(() => Assert.That(Enum.GetValues(typeof(Gas)), Has.Length.EqualTo(Atmospherics.TotalNumberOfGases)); }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/Atmos/GasMixtureTest.cs b/Content.IntegrationTests/Tests/Atmos/GasMixtureTest.cs index 55ef72976c8..1cb8fd8b6f2 100644 --- a/Content.IntegrationTests/Tests/Atmos/GasMixtureTest.cs +++ b/Content.IntegrationTests/Tests/Atmos/GasMixtureTest.cs @@ -12,8 +12,8 @@ public sealed class GasMixtureTest [Test] public async Task TestMerge() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var atmosphereSystem = server.ResolveDependency().GetEntitySystem(); @@ -57,7 +57,7 @@ await server.WaitAssertion(() => }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] @@ -69,8 +69,8 @@ await server.WaitAssertion(() => [TestCase(Atmospherics.BreathPercentage)] public async Task RemoveRatio(float ratio) { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; await server.WaitAssertion(() => { @@ -104,7 +104,7 @@ await server.WaitAssertion(() => }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/Body/LegTest.cs b/Content.IntegrationTests/Tests/Body/LegTest.cs index 5490a9909e1..4d5078f2dce 100644 --- a/Content.IntegrationTests/Tests/Body/LegTest.cs +++ b/Content.IntegrationTests/Tests/Body/LegTest.cs @@ -29,8 +29,8 @@ public sealed class LegTest [Test] public async Task RemoveLegsFallTest() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; EntityUid human = default!; AppearanceComponent appearance = null; @@ -72,7 +72,7 @@ await server.WaitAssertion(() => Assert.That(state, Is.EqualTo(RotationState.Horizontal)); #pragma warning restore NUnit2045 }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/Body/LungTest.cs b/Content.IntegrationTests/Tests/Body/LungTest.cs index 744806cd365..d0325480acd 100644 --- a/Content.IntegrationTests/Tests/Body/LungTest.cs +++ b/Content.IntegrationTests/Tests/Body/LungTest.cs @@ -53,8 +53,8 @@ public sealed class LungTest public async Task AirConsistencyTest() { // --- Setup - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; await server.WaitIdleAsync(); @@ -132,14 +132,14 @@ await server.WaitAssertion(() => }); } - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task NoSuffocationTest() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var mapManager = server.ResolveDependency(); var entityManager = server.ResolveDependency(); @@ -198,7 +198,7 @@ await server.WaitAssertion(() => }); } - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/Body/SaveLoadReparentTest.cs b/Content.IntegrationTests/Tests/Body/SaveLoadReparentTest.cs index ad14acb3248..94591dd2b9c 100644 --- a/Content.IntegrationTests/Tests/Body/SaveLoadReparentTest.cs +++ b/Content.IntegrationTests/Tests/Body/SaveLoadReparentTest.cs @@ -24,8 +24,8 @@ public sealed class SaveLoadReparentTest [Test] public async Task Test() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var entities = server.ResolveDependency(); var maps = server.ResolveDependency(); @@ -159,6 +159,6 @@ await server.WaitAssertion(() => } }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } diff --git a/Content.IntegrationTests/Tests/Buckle/BuckleTest.cs b/Content.IntegrationTests/Tests/Buckle/BuckleTest.cs index 8614f0508a1..2b6c1947b62 100644 --- a/Content.IntegrationTests/Tests/Buckle/BuckleTest.cs +++ b/Content.IntegrationTests/Tests/Buckle/BuckleTest.cs @@ -49,10 +49,10 @@ public sealed class BuckleTest [Test] public async Task BuckleUnbuckleCooldownRangeTest() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; - var testMap = await PoolManager.CreateTestMap(pairTracker); + var testMap = await pair.CreateTestMap(); var coordinates = testMap.GridCoords; var entityManager = server.ResolveDependency(); var actionBlocker = entityManager.System(); @@ -236,16 +236,16 @@ await server.WaitAssertion(() => }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task BuckledDyingDropItemsTest() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; - var testMap = await PoolManager.CreateTestMap(pairTracker); + var testMap = await pair.CreateTestMap(); var coordinates = testMap.GridCoords; EntityUid human = default; @@ -329,16 +329,16 @@ await server.WaitAssertion(() => buckleSystem.TryUnbuckle(human, human, true, buckleComp: buckle); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task ForceUnbuckleBuckleTest() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; - var testMap = await PoolManager.CreateTestMap(pairTracker); + var testMap = await pair.CreateTestMap(); var coordinates = testMap.GridCoords; var entityManager = server.ResolveDependency(); var buckleSystem = entityManager.System(); @@ -405,7 +405,7 @@ await server.WaitAssertion(() => Assert.That(buckle.Buckled); }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/CargoTest.cs b/Content.IntegrationTests/Tests/CargoTest.cs index a75124856c6..27edea04add 100644 --- a/Content.IntegrationTests/Tests/CargoTest.cs +++ b/Content.IntegrationTests/Tests/CargoTest.cs @@ -20,10 +20,10 @@ public sealed class CargoTest [Test] public async Task NoCargoOrderArbitrage() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; - var testMap = await PoolManager.CreateTestMap(pairTracker); + var testMap = await pair.CreateTestMap(); var entManager = server.ResolveDependency(); var mapManager = server.ResolveDependency(); @@ -49,15 +49,15 @@ await server.WaitAssertion(() => mapManager.DeleteMap(mapId); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task NoCargoBountyArbitageTest() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; - var testMap = await PoolManager.CreateTestMap(pairTracker); + var testMap = await pair.CreateTestMap(); var entManager = server.ResolveDependency(); var mapManager = server.ResolveDependency(); @@ -89,16 +89,16 @@ await server.WaitAssertion(() => mapManager.DeleteMap(mapId); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task NoStaticPriceAndStackPrice() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; - var testMap = await PoolManager.CreateTestMap(pairTracker); + var testMap = await pair.CreateTestMap(); var entManager = server.ResolveDependency(); var mapManager = server.ResolveDependency(); @@ -112,7 +112,7 @@ await server.WaitAssertion(() => var protoIds = protoManager.EnumeratePrototypes() .Where(p => !p.Abstract) - .Where(p => !pairTracker.Pair.IsTestPrototype(p)) + .Where(p => !pair.IsTestPrototype(p)) .Where(p => !p.Components.ContainsKey("MapGrid")) // Grids are not for sale. .Select(p => p.ID) .ToList(); @@ -144,7 +144,8 @@ await server.WaitAssertion(() => } mapManager.DeleteMap(mapId); }); - await pairTracker.CleanReturnAsync(); + + await pair.CleanReturnAsync(); } @@ -170,8 +171,8 @@ await server.WaitAssertion(() => [Test] public async Task StackPrice() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var entManager = server.ResolveDependency(); var priceSystem = entManager.System(); @@ -180,6 +181,6 @@ public async Task StackPrice() var price = priceSystem.GetPrice(ent); Assert.That(price, Is.EqualTo(100.0)); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } diff --git a/Content.IntegrationTests/Tests/Chemistry/DispenserTest.cs b/Content.IntegrationTests/Tests/Chemistry/DispenserTest.cs index affb43db3ec..13a0bee28e7 100644 --- a/Content.IntegrationTests/Tests/Chemistry/DispenserTest.cs +++ b/Content.IntegrationTests/Tests/Chemistry/DispenserTest.cs @@ -29,7 +29,7 @@ public async Task InsertEjectBuiTest() // Beaker is back in the player's hands Assert.That(Hands.ActiveHandEntity, Is.Not.Null); - AssertPrototype("Beaker", Hands.ActiveHandEntity); + AssertPrototype("Beaker", SEntMan.GetNetEntity(Hands.ActiveHandEntity)); // Re-insert the beaker await Interact(); @@ -40,6 +40,6 @@ public async Task InsertEjectBuiTest() await ClickControl(nameof(ReagentDispenserWindow.EjectButton)); await RunTicks(5); Assert.That(Hands.ActiveHandEntity, Is.Not.Null); - AssertPrototype("Beaker", Hands.ActiveHandEntity); + AssertPrototype("Beaker", SEntMan.GetNetEntity(Hands.ActiveHandEntity)); } } diff --git a/Content.IntegrationTests/Tests/Chemistry/FixedPoint2SerializationTest.cs b/Content.IntegrationTests/Tests/Chemistry/FixedPoint2SerializationTest.cs index 66918e3a496..8e3b89bff11 100644 --- a/Content.IntegrationTests/Tests/Chemistry/FixedPoint2SerializationTest.cs +++ b/Content.IntegrationTests/Tests/Chemistry/FixedPoint2SerializationTest.cs @@ -51,7 +51,7 @@ public void DeserializeNullDefinitionTest() } [DataDefinition] - public sealed class FixedPoint2TestDefinition + public sealed partial class FixedPoint2TestDefinition { [DataField("unit")] public FixedPoint2? Unit { get; set; } = FixedPoint2.New(5); } diff --git a/Content.IntegrationTests/Tests/Chemistry/ReagentDataTest.cs b/Content.IntegrationTests/Tests/Chemistry/ReagentDataTest.cs new file mode 100644 index 00000000000..f488734655a --- /dev/null +++ b/Content.IntegrationTests/Tests/Chemistry/ReagentDataTest.cs @@ -0,0 +1,30 @@ +using Content.IntegrationTests.Tests.Interaction; +using Content.Shared.Chemistry.Reagent; +using Robust.Shared.Reflection; +using Robust.Shared.Serialization; +using Robust.Shared.Utility; + +namespace Content.IntegrationTests.Tests.Chemistry; + +[TestFixture] +[TestOf(typeof(ReagentData))] +public sealed class ReagentDataTest : InteractionTest +{ + [Test] + public async Task ReagentDataIsSerializable() + { + await using var pair = await PoolManager.GetServerClient(); + var reflection = pair.Server.ResolveDependency(); + + Assert.Multiple(() => + { + foreach (var instance in reflection.GetAllChildren(typeof(ReagentData))) + { + Assert.That(instance.HasCustomAttribute(), $"{instance} must have the NetSerializable attribute."); + Assert.That(instance.HasCustomAttribute(), $"{instance} must have the serializable attribute."); + } + }); + + await pair.CleanReturnAsync(); + } +} diff --git a/Content.IntegrationTests/Tests/Chemistry/SolutionSystemTests.cs b/Content.IntegrationTests/Tests/Chemistry/SolutionSystemTests.cs index ac26de36976..8d0bbbd067f 100644 --- a/Content.IntegrationTests/Tests/Chemistry/SolutionSystemTests.cs +++ b/Content.IntegrationTests/Tests/Chemistry/SolutionSystemTests.cs @@ -46,13 +46,13 @@ public sealed class SolutionSystemTests [Test] public async Task TryAddTwoNonReactiveReagent() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var entityManager = server.ResolveDependency(); var protoMan = server.ResolveDependency(); var containerSystem = entityManager.EntitySysManager.GetEntitySystem(); - var testMap = await PoolManager.CreateTestMap(pairTracker); + var testMap = await pair.CreateTestMap(); var coordinates = testMap.GridCoords; EntityUid beaker; @@ -73,8 +73,8 @@ await server.WaitAssertion(() => Assert.That(containerSystem .TryAddSolution(beaker, solution, oilAdded)); - solution.TryGetReagent("Water", out var water); - solution.TryGetReagent("Oil", out var oil); + var water = solution.GetTotalPrototypeQuantity("Water"); + var oil = solution.GetTotalPrototypeQuantity("Oil"); Assert.Multiple(() => { Assert.That(water, Is.EqualTo(waterQuantity)); @@ -82,7 +82,7 @@ await server.WaitAssertion(() => }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } // This test mimics current behavior @@ -90,10 +90,10 @@ await server.WaitAssertion(() => [Test] public async Task TryAddTooMuchNonReactiveReagent() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; - var testMap = await PoolManager.CreateTestMap(pairTracker); + var testMap = await pair.CreateTestMap(); var entityManager = server.ResolveDependency(); var protoMan = server.ResolveDependency(); @@ -118,8 +118,8 @@ await server.WaitAssertion(() => Assert.That(containerSystem .TryAddSolution(beaker, solution, oilAdded), Is.False); - solution.TryGetReagent("Water", out var water); - solution.TryGetReagent("Oil", out var oil); + var water = solution.GetTotalPrototypeQuantity("Water"); + var oil = solution.GetTotalPrototypeQuantity("Oil"); Assert.Multiple(() => { Assert.That(water, Is.EqualTo(waterQuantity)); @@ -127,20 +127,20 @@ await server.WaitAssertion(() => }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } // Unlike TryAddSolution this adds and two solution without then splits leaving only threshold in original [Test] public async Task TryMixAndOverflowTooMuchReagent() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var entityManager = server.ResolveDependency(); var protoMan = server.ResolveDependency(); - var testMap = await PoolManager.CreateTestMap(pairTracker); + var testMap = await pair.CreateTestMap(); var containerSystem = entityManager.EntitySysManager.GetEntitySystem(); var coordinates = testMap.GridCoords; @@ -168,34 +168,34 @@ await server.WaitAssertion(() => { Assert.That(solution.Volume, Is.EqualTo(FixedPoint2.New(threshold))); - solution.TryGetReagent("Water", out var waterMix); - solution.TryGetReagent("Oil", out var oilMix); + var waterMix = solution.GetTotalPrototypeQuantity("Water"); + var oilMix = solution.GetTotalPrototypeQuantity("Oil"); Assert.That(waterMix, Is.EqualTo(FixedPoint2.New(threshold / (ratio + 1)))); Assert.That(oilMix, Is.EqualTo(FixedPoint2.New(threshold / (ratio + 1) * ratio))); Assert.That(overflowingSolution.Volume, Is.EqualTo(FixedPoint2.New(80))); - overflowingSolution.TryGetReagent("Water", out var waterOverflow); - overflowingSolution.TryGetReagent("Oil", out var oilOverFlow); + var waterOverflow = overflowingSolution.GetTotalPrototypeQuantity("Water"); + var oilOverFlow = overflowingSolution.GetTotalPrototypeQuantity("Oil"); Assert.That(waterOverflow, Is.EqualTo(waterQuantity - waterMix)); Assert.That(oilOverFlow, Is.EqualTo(oilQuantity - oilMix)); }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } // TryMixAndOverflow will fail if Threshold larger than MaxVolume [Test] public async Task TryMixAndOverflowTooBigOverflow() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var entityManager = server.ResolveDependency(); var protoMan = server.ResolveDependency(); var containerSystem = entityManager.EntitySysManager.GetEntitySystem(); - var testMap = await PoolManager.CreateTestMap(pairTracker); + var testMap = await pair.CreateTestMap(); var coordinates = testMap.GridCoords; EntityUid beaker; @@ -220,14 +220,14 @@ await server.WaitAssertion(() => Is.False); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task TestTemperatureCalculations() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var protoMan = server.ResolveDependency(); const float temp = 100.0f; @@ -259,6 +259,6 @@ await server.WaitAssertion(() => Assert.That(solutionOne.GetHeatCapacity(protoMan) * solutionOne.Temperature, Is.EqualTo(thermalEnergyOne + thermalEnergyTwo)); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } diff --git a/Content.IntegrationTests/Tests/Chemistry/TryAllReactionsTest.cs b/Content.IntegrationTests/Tests/Chemistry/TryAllReactionsTest.cs index 777d4b7c7e4..30c15e8da31 100644 --- a/Content.IntegrationTests/Tests/Chemistry/TryAllReactionsTest.cs +++ b/Content.IntegrationTests/Tests/Chemistry/TryAllReactionsTest.cs @@ -27,12 +27,12 @@ public sealed class TryAllReactionsTest [Test] public async Task TryAllTest() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var entityManager = server.ResolveDependency(); var prototypeManager = server.ResolveDependency(); - var testMap = await PoolManager.CreateTestMap(pairTracker); + var testMap = await pair.CreateTestMap(); var coordinates = testMap.GridCoords; var solutionSystem = server.ResolveDependency() .GetEntitySystem(); @@ -79,9 +79,9 @@ await server.WaitAssertion(() => var foundProductsMap = reactionPrototype.Products .Concat(reactionPrototype.Reactants.Where(x => x.Value.Catalyst).ToDictionary(x => x.Key, x => x.Value.Amount)) .ToDictionary(x => x, _ => false); - foreach (var reagent in component.Contents) + foreach (var (reagent, quantity) in component.Contents) { - Assert.That(foundProductsMap.TryFirstOrNull(x => x.Key.Key == reagent.ReagentId && x.Key.Value == reagent.Quantity, out var foundProduct)); + Assert.That(foundProductsMap.TryFirstOrNull(x => x.Key.Key == reagent.Prototype && x.Key.Value == quantity, out var foundProduct)); foundProductsMap[foundProduct.Value.Key] = true; } @@ -89,7 +89,7 @@ await server.WaitAssertion(() => }); } - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } diff --git a/Content.IntegrationTests/Tests/Cleanup/EuiManagerTest.cs b/Content.IntegrationTests/Tests/Cleanup/EuiManagerTest.cs index 12e0e41aa85..9aac4e2892a 100644 --- a/Content.IntegrationTests/Tests/Cleanup/EuiManagerTest.cs +++ b/Content.IntegrationTests/Tests/Cleanup/EuiManagerTest.cs @@ -13,12 +13,12 @@ public async Task EuiManagerRecycleWithOpenWindowTest() // Even though we are using the server EUI here, we actually want to see if the client EUIManager crashes for (var i = 0; i < 2; i++) { - await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings + await using var pair = await PoolManager.GetServerClient(new PoolSettings { Connected = true, Dirty = true }); - var server = pairTracker.Pair.Server; + var server = pair.Server; var sPlayerManager = server.ResolveDependency(); var eui = server.ResolveDependency(); @@ -29,7 +29,7 @@ await server.WaitAssertion(() => var ui = new AdminAnnounceEui(); eui.OpenEui(ui, clientSession); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/ClickableTest.cs b/Content.IntegrationTests/Tests/ClickableTest.cs index 3cca6a03c38..76085381852 100644 --- a/Content.IntegrationTests/Tests/ClickableTest.cs +++ b/Content.IntegrationTests/Tests/ClickableTest.cs @@ -44,10 +44,10 @@ public sealed class ClickableTest [TestCase("ClickTestRotatingCornerInvisibleNoRot", 0.25f, 0.25f, DirSouthEastJustShy, 1, ExpectedResult = true)] public async Task Test(string prototype, float clickPosX, float clickPosY, double angle, float scale) { - await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings { Connected = true }); - var server = pairTracker.Pair.Server; - var client = pairTracker.Pair.Client; - EntityUid entity = default; + await using var pair = await PoolManager.GetServerClient(new PoolSettings { Connected = true }); + var server = pair.Server; + var client = pair.Client; + var clientEntManager = client.ResolveDependency(); var serverEntManager = server.ResolveDependency(); var eyeManager = client.ResolveDependency(); @@ -55,39 +55,42 @@ public async Task Test(string prototype, float clickPosX, float clickPosY, var xformQuery = clientEntManager.GetEntityQuery(); var eye = client.ResolveDependency().CurrentEye; - var testMap = await PoolManager.CreateTestMap(pairTracker); + var testMap = await pair.CreateTestMap(); + + EntityUid serverEnt = default; + await server.WaitPost(() => { - var ent = serverEntManager.SpawnEntity(prototype, testMap.GridCoords); - serverEntManager.System().SetWorldRotation(ent, angle); - entity = ent; + serverEnt = serverEntManager.SpawnEntity(prototype, testMap.GridCoords); + serverEntManager.System().SetWorldRotation(serverEnt, angle); }); // Let client sync up. - await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await pair.RunTicksSync(5); var hit = false; + var clientEnt = clientEntManager.GetEntity(serverEntManager.GetNetEntity(serverEnt)); await client.WaitPost(() => { - var sprite = spriteQuery.GetComponent(entity); + var sprite = spriteQuery.GetComponent(clientEnt); sprite.Scale = new Vector2(scale, scale); // these tests currently all assume player eye is 0 eyeManager.CurrentEye.Rotation = 0; - var pos = clientEntManager.System().GetWorldPosition(entity); - var clickable = clientEntManager.GetComponent(entity); + var pos = clientEntManager.System().GetWorldPosition(clientEnt); + var clickable = clientEntManager.GetComponent(clientEnt); - hit = clickable.CheckClick(sprite, xformQuery.GetComponent(entity), xformQuery, new Vector2(clickPosX, clickPosY) + pos, eye, out _, out _, out _); + hit = clickable.CheckClick(sprite, xformQuery.GetComponent(clientEnt), xformQuery, new Vector2(clickPosX, clickPosY) + pos, eye, out _, out _, out _); }); await server.WaitPost(() => { - serverEntManager.DeleteEntity(entity); + serverEntManager.DeleteEntity(serverEnt); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); return hit; } diff --git a/Content.IntegrationTests/Tests/Climbing/ClimbingTest.cs b/Content.IntegrationTests/Tests/Climbing/ClimbingTest.cs index e909775793d..f6bcc6e1291 100644 --- a/Content.IntegrationTests/Tests/Climbing/ClimbingTest.cs +++ b/Content.IntegrationTests/Tests/Climbing/ClimbingTest.cs @@ -29,7 +29,7 @@ public async Task ClimbTableTest() // Try to start climbing var sys = SEntMan.System(); - await Server.WaitPost(() => sys.TryClimb(Player, Player, Target.Value, out _)); + await Server.WaitPost(() => sys.TryClimb(SEntMan.GetEntity(Player), SEntMan.GetEntity(Player), SEntMan.GetEntity(Target.Value), out _)); await AwaitDoAfters(); // Player should now be climbing @@ -56,7 +56,7 @@ public async Task ClimbTableTest() Assert.That(Delta(), Is.LessThan(0)); // Start climbing - await Server.WaitPost(() => sys.TryClimb(Player, Player, Target.Value, out _)); + await Server.WaitPost(() => sys.TryClimb(SEntMan.GetEntity(Player), SEntMan.GetEntity(Player), SEntMan.GetEntity(Target.Value), out _)); await AwaitDoAfters(); Assert.Multiple(() => diff --git a/Content.IntegrationTests/Tests/Commands/PardonCommand.cs b/Content.IntegrationTests/Tests/Commands/PardonCommand.cs index a6788b0ff7a..b3a66e3211c 100644 --- a/Content.IntegrationTests/Tests/Commands/PardonCommand.cs +++ b/Content.IntegrationTests/Tests/Commands/PardonCommand.cs @@ -15,9 +15,9 @@ public sealed class PardonCommand [Test] public async Task PardonTest() { - await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings { Connected = true }); - var server = pairTracker.Pair.Server; - var client = pairTracker.Pair.Client; + await using var pair = await PoolManager.GetServerClient(new PoolSettings { Connected = true }); + var server = pair.Server; + var client = pair.Client; var sPlayerManager = server.ResolveDependency(); var sConsole = server.ResolveDependency(); @@ -62,7 +62,7 @@ public async Task PardonTest() Assert.That(await sDatabase.GetServerBansAsync(null, clientId, null), Has.Count.EqualTo(1)); }); - await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await pair.RunTicksSync(5); Assert.That(sPlayerManager.Sessions.Count(), Is.EqualTo(0)); Assert.That(!netMan.IsConnected); @@ -146,10 +146,10 @@ public async Task PardonTest() Assert.That(sPlayerManager.Sessions.Count(), Is.EqualTo(0)); client.SetConnectTarget(server); await client.WaitPost(() => netMan.ClientConnect(null!, 0, null!)); - await PoolManager.ReallyBeIdle(pairTracker.Pair); + await pair.RunTicksSync(5); Assert.That(sPlayerManager.Sessions.Count(), Is.EqualTo(1)); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/Commands/RejuvenateTest.cs b/Content.IntegrationTests/Tests/Commands/RejuvenateTest.cs index 0153cfccc4c..2fda3ad58e6 100644 --- a/Content.IntegrationTests/Tests/Commands/RejuvenateTest.cs +++ b/Content.IntegrationTests/Tests/Commands/RejuvenateTest.cs @@ -33,8 +33,8 @@ public sealed class RejuvenateTest [Test] public async Task RejuvenateDeadTest() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var entManager = server.ResolveDependency(); var prototypeManager = server.ResolveDependency(); var mobStateSystem = entManager.EntitySysManager.GetEntitySystem(); @@ -89,7 +89,7 @@ await server.WaitAssertion(() => Assert.That(damageable.TotalDamage, Is.EqualTo(FixedPoint2.Zero)); }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/Commands/RestartRoundTest.cs b/Content.IntegrationTests/Tests/Commands/RestartRoundTest.cs index a94b232d779..74d014b7724 100644 --- a/Content.IntegrationTests/Tests/Commands/RestartRoundTest.cs +++ b/Content.IntegrationTests/Tests/Commands/RestartRoundTest.cs @@ -16,18 +16,18 @@ public sealed class RestartRoundNowTest [TestCase(false)] public async Task RestartRoundAfterStart(bool lobbyEnabled) { - await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings + await using var pair = await PoolManager.GetServerClient(new PoolSettings { DummyTicker = false, Dirty = true }); - var server = pairTracker.Pair.Server; + var server = pair.Server; var configManager = server.ResolveDependency(); var entityManager = server.ResolveDependency(); var gameTicker = entityManager.EntitySysManager.GetEntitySystem(); - await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await pair.RunTicksSync(5); GameTick tickBeforeRestart = default; @@ -49,7 +49,7 @@ await server.WaitAssertion(() => } }); - await PoolManager.RunTicksSync(pairTracker.Pair, 15); + await pair.RunTicksSync(15); await server.WaitAssertion(() => { @@ -58,8 +58,8 @@ await server.WaitAssertion(() => Assert.That(tickBeforeRestart, Is.LessThan(tickAfterRestart)); }); - await PoolManager.RunTicksSync(pairTracker.Pair, 5); - await pairTracker.CleanReturnAsync(); + await pair.RunTicksSync(5); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/Construction/ConstructionActionValid.cs b/Content.IntegrationTests/Tests/Construction/ConstructionActionValid.cs index bc0aee451d6..408b0e0bd03 100644 --- a/Content.IntegrationTests/Tests/Construction/ConstructionActionValid.cs +++ b/Content.IntegrationTests/Tests/Construction/ConstructionActionValid.cs @@ -47,8 +47,8 @@ private bool IsValid(IGraphAction action, IPrototypeManager protoMan, out string [Test] public async Task ConstructionGraphSpawnPrototypeValid() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var protoMan = server.ResolveDependency(); @@ -79,7 +79,7 @@ public async Task ConstructionGraphSpawnPrototypeValid() } } } - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); Assert.That(valid, Is.True, $"One or more SpawnPrototype actions specified invalid entity prototypes!\n{message}"); } @@ -87,8 +87,8 @@ public async Task ConstructionGraphSpawnPrototypeValid() [Test] public async Task ConstructionGraphEdgeValid() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var protoMan = server.ResolveDependency(); @@ -110,7 +110,7 @@ public async Task ConstructionGraphEdgeValid() } Assert.That(valid, Is.True, $"One or more edges specified invalid node targets!\n{message}"); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/Construction/ConstructionPrototypeTest.cs b/Content.IntegrationTests/Tests/Construction/ConstructionPrototypeTest.cs index 385ed39a831..01173c9660f 100644 --- a/Content.IntegrationTests/Tests/Construction/ConstructionPrototypeTest.cs +++ b/Content.IntegrationTests/Tests/Construction/ConstructionPrototypeTest.cs @@ -21,13 +21,13 @@ public sealed class ConstructionPrototypeTest [Test] public async Task TestStartNodeValid() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var entMan = server.ResolveDependency(); var protoMan = server.ResolveDependency(); - var map = await PoolManager.CreateTestMap(pairTracker); + var map = await pair.CreateTestMap(); await server.WaitAssertion(() => { @@ -47,14 +47,14 @@ await server.WaitAssertion(() => } }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task TestStartIsValid() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var protoMan = server.ResolveDependency(); @@ -65,14 +65,14 @@ public async Task TestStartIsValid() Assert.That(graph.Nodes.ContainsKey(start), $"Found no startNode \"{start}\" on graph \"{graph.ID}\" for construction prototype \"{proto.ID}\"!"); } - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task TestTargetIsValid() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var protoMan = server.ResolveDependency(); @@ -83,14 +83,14 @@ public async Task TestTargetIsValid() Assert.That(graph.Nodes.ContainsKey(target), $"Found no targetNode \"{target}\" on graph \"{graph.ID}\" for construction prototype \"{proto.ID}\"!"); } - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task DeconstructionIsValid() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var entMan = server.ResolveDependency(); var protoMan = server.ResolveDependency(); @@ -101,7 +101,7 @@ public async Task DeconstructionIsValid() { foreach (var proto in protoMan.EnumeratePrototypes()) { - if (proto.Abstract || pairTracker.Pair.IsTestPrototype(proto) || !proto.Components.TryGetValue(name, out var reg)) + if (proto.Abstract || pair.IsTestPrototype(proto) || !proto.Components.TryGetValue(name, out var reg)) continue; var comp = (ConstructionComponent) reg.Component; @@ -114,14 +114,14 @@ public async Task DeconstructionIsValid() } }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task TestStartReachesValidTarget() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var protoMan = server.ResolveDependency(); var entMan = server.ResolveDependency(); @@ -142,7 +142,7 @@ public async Task TestStartReachesValidTarget() Assert.That(entity.Components.ContainsKey("Construction"), $"The next node ({next.Name}) in the path from the start node ({start}) to the target node ({target}) specified an entity prototype ({next.Entity}) without a ConstructionComponent."); #pragma warning restore NUnit2045 } - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/Construction/Interaction/ComputerContruction.cs b/Content.IntegrationTests/Tests/Construction/Interaction/ComputerContruction.cs index 87f3c06c12b..1cf0135d7a7 100644 --- a/Content.IntegrationTests/Tests/Construction/Interaction/ComputerContruction.cs +++ b/Content.IntegrationTests/Tests/Construction/Interaction/ComputerContruction.cs @@ -17,7 +17,9 @@ public async Task ConstructComputer() // Initial interaction (ghost turns into real entity) await Interact(Steel, 5); - AssertPrototype(ComputerFrame); + ClientAssertPrototype(ComputerFrame, ClientTarget); + Target = CTestSystem.Ghosts[ClientTarget!.Value.GetHashCode()]; + ClientTarget = null; // Perform construction steps await Interact( @@ -29,7 +31,7 @@ await Interact( Screw); // Construction finished, target entity was replaced with a new one: - AssertPrototype(ComputerId); + AssertPrototype(ComputerId, Target); } [Test] diff --git a/Content.IntegrationTests/Tests/Construction/Interaction/CraftingTests.cs b/Content.IntegrationTests/Tests/Construction/Interaction/CraftingTests.cs index 5c48703dff6..c49e20981e3 100644 --- a/Content.IntegrationTests/Tests/Construction/Interaction/CraftingTests.cs +++ b/Content.IntegrationTests/Tests/Construction/Interaction/CraftingTests.cs @@ -1,5 +1,6 @@ using System.Linq; using Content.IntegrationTests.Tests.Interaction; +using Content.Shared.DoAfter; using Content.Shared.Stacks; using Robust.Shared.Containers; @@ -40,7 +41,7 @@ public async Task CraftSpear() { // Spawn a full tack of rods in the user's hands. await PlaceInHands(Rod, 10); - await SpawnEntity((Cable, 10), PlayerCoords); + await SpawnEntity((Cable, 10), SEntMan.GetCoordinates(PlayerCoords)); // Attempt (and fail) to craft without glass. await CraftItem(Spear, shouldSucceed: false); @@ -69,9 +70,10 @@ public async Task CraftSpear() [Test] public async Task CancelCraft() { - var rods = await SpawnEntity((Rod, 10), TargetCoords); - var wires = await SpawnEntity((Cable, 10), TargetCoords); - var shard = await SpawnEntity(ShardGlass, TargetCoords); + var serverTargetCoords = SEntMan.GetCoordinates(TargetCoords); + var rods = await SpawnEntity((Rod, 10), serverTargetCoords); + var wires = await SpawnEntity((Cable, 10), serverTargetCoords); + var shard = await SpawnEntity(ShardGlass, serverTargetCoords); var rodStack = SEntMan.GetComponent(rods); var wireStack = SEntMan.GetComponent(wires); @@ -86,7 +88,7 @@ public async Task CancelCraft() }); #pragma warning disable CS4014 // Legacy construction code uses DoAfterAwait. If we await it we will be waiting forever. - await Server.WaitPost(() => SConstruction.TryStartItemConstruction(Spear, Player)); + await Server.WaitPost(() => SConstruction.TryStartItemConstruction(Spear, SEntMan.GetEntity(Player))); #pragma warning restore CS4014 await RunTicks(1); @@ -116,7 +118,7 @@ public async Task CancelCraft() // Re-attempt the do-after #pragma warning disable CS4014 // Legacy construction code uses DoAfterAwait. See above. - await Server.WaitPost(() => SConstruction.TryStartItemConstruction(Spear, Player)); + await Server.WaitPost(() => SConstruction.TryStartItemConstruction(Spear, SEntMan.GetEntity(Player))); #pragma warning restore CS4014 await RunTicks(1); diff --git a/Content.IntegrationTests/Tests/Construction/Interaction/GrilleWindowConstruction.cs b/Content.IntegrationTests/Tests/Construction/Interaction/GrilleWindowConstruction.cs index 1a2f4bcda14..0de39d27577 100644 --- a/Content.IntegrationTests/Tests/Construction/Interaction/GrilleWindowConstruction.cs +++ b/Content.IntegrationTests/Tests/Construction/Interaction/GrilleWindowConstruction.cs @@ -18,14 +18,16 @@ public async Task WindowOnGrille() // Construct Grille await StartConstruction(Grille); await Interact(Rod, 10); - AssertPrototype(Grille); + ClientAssertPrototype(Grille, ClientTarget); + Target = CTestSystem.Ghosts[ClientTarget!.Value.GetHashCode()]; var grille = Target; // Construct Window await StartConstruction(Window); await Interact(Glass, 10); - AssertPrototype(Window); + ClientAssertPrototype(Window, ClientTarget); + Target = CTestSystem.Ghosts[ClientTarget!.Value.GetHashCode()]; // Deconstruct Window await Interact(Screw, Wrench); @@ -50,7 +52,7 @@ public async Task ConstructionBlocker(string first, string second) await Client.WaitPost(() => { var proto = ProtoMan.Index(second); - Assert.That(CConSys.TrySpawnGhost(proto, TargetCoords, Direction.South, out _), Is.False); + Assert.That(CConSys.TrySpawnGhost(proto, CEntMan.GetCoordinates(TargetCoords), Direction.South, out _), Is.False); }); } } diff --git a/Content.IntegrationTests/Tests/Construction/Interaction/MachineConstruction.cs b/Content.IntegrationTests/Tests/Construction/Interaction/MachineConstruction.cs index 0382912ccbb..17630405a45 100644 --- a/Content.IntegrationTests/Tests/Construction/Interaction/MachineConstruction.cs +++ b/Content.IntegrationTests/Tests/Construction/Interaction/MachineConstruction.cs @@ -15,7 +15,8 @@ public async Task ConstructProtolathe() { await StartConstruction(MachineFrame); await Interact(Steel, 5); - AssertPrototype(Unfinished); + ClientAssertPrototype(Unfinished, ClientTarget); + Target = CTestSystem.Ghosts[ClientTarget!.Value.GetHashCode()]; await Interact(Wrench, Cable); AssertPrototype(MachineFrame); await Interact(ProtolatheBoard, Bin1, Bin1, Manipulator1, Manipulator1, Beaker, Beaker, Screw); @@ -61,9 +62,10 @@ public async Task UpgradeLathe() { // Partially deconstruct a protolathe. await SpawnTarget(Protolathe); + var serverTarget = SEntMan.GetEntity(Target!.Value); // Initially has all quality-1 parts. - foreach (var part in SConstruction.GetAllParts(Target!.Value)) + foreach (var part in SConstruction.GetAllParts(serverTarget)) { Assert.That(part.Rating, Is.EqualTo(1)); } @@ -78,7 +80,7 @@ public async Task UpgradeLathe() AssertPrototype(Protolathe); // Query now returns higher quality parts. - foreach (var part in SConstruction.GetAllParts(Target!.Value)) + foreach (var part in SConstruction.GetAllParts(SEntMan.GetEntity(Target!.Value))) { Assert.That(part.Rating, Is.EqualTo(4)); } diff --git a/Content.IntegrationTests/Tests/Construction/Interaction/PanelScrewing.cs b/Content.IntegrationTests/Tests/Construction/Interaction/PanelScrewing.cs index 2f69f3abea5..b6d960e2882 100644 --- a/Content.IntegrationTests/Tests/Construction/Interaction/PanelScrewing.cs +++ b/Content.IntegrationTests/Tests/Construction/Interaction/PanelScrewing.cs @@ -1,4 +1,6 @@ +using System.Linq; using Content.IntegrationTests.Tests.Interaction; +using Content.Shared.DoAfter; using Content.Shared.Wires; namespace Content.IntegrationTests.Tests.Construction.Interaction; diff --git a/Content.IntegrationTests/Tests/Construction/Interaction/WallConstruction.cs b/Content.IntegrationTests/Tests/Construction/Interaction/WallConstruction.cs index 05cf8cac1b8..67a2f8025dc 100644 --- a/Content.IntegrationTests/Tests/Construction/Interaction/WallConstruction.cs +++ b/Content.IntegrationTests/Tests/Construction/Interaction/WallConstruction.cs @@ -14,7 +14,8 @@ public async Task ConstructWall() await StartConstruction(Wall); await Interact(Steel, 2); Assert.That(Hands.ActiveHandEntity, Is.Null); - AssertPrototype(Girder); + ClientAssertPrototype(Girder, ClientTarget); + Target = CTestSystem.Ghosts[ClientTarget!.Value.GetHashCode()]; await Interact(Steel, 2); Assert.That(Hands.ActiveHandEntity, Is.Null); AssertPrototype(WallSolid); diff --git a/Content.IntegrationTests/Tests/Construction/Interaction/WindowConstruction.cs b/Content.IntegrationTests/Tests/Construction/Interaction/WindowConstruction.cs index 2be20202775..46bb892ed99 100644 --- a/Content.IntegrationTests/Tests/Construction/Interaction/WindowConstruction.cs +++ b/Content.IntegrationTests/Tests/Construction/Interaction/WindowConstruction.cs @@ -12,7 +12,7 @@ public async Task ConstructWindow() { await StartConstruction(Window); await Interact(Glass, 5); - AssertPrototype(Window); + ClientAssertPrototype(Window, ClientTarget); } [Test] @@ -29,7 +29,7 @@ public async Task ConstructReinforcedWindow() { await StartConstruction(RWindow); await Interact(RGlass, 5); - AssertPrototype(RWindow); + ClientAssertPrototype(RWindow, ClientTarget); } [Test] diff --git a/Content.IntegrationTests/Tests/Construction/Interaction/WindowRepair.cs b/Content.IntegrationTests/Tests/Construction/Interaction/WindowRepair.cs index e04fbfd1429..0bcc935fde3 100644 --- a/Content.IntegrationTests/Tests/Construction/Interaction/WindowRepair.cs +++ b/Content.IntegrationTests/Tests/Construction/Interaction/WindowRepair.cs @@ -19,7 +19,7 @@ public async Task RepairReinforcedWindow() var damageType = Server.ResolveDependency().Index("Blunt"); var damage = new DamageSpecifier(damageType, FixedPoint2.New(10)); Assert.That(comp.Damage.Total, Is.EqualTo(FixedPoint2.Zero)); - await Server.WaitPost(() => sys.TryChangeDamage(Target, damage, ignoreResistances: true)); + await Server.WaitPost(() => sys.TryChangeDamage(SEntMan.GetEntity(Target), damage, ignoreResistances: true)); await RunTicks(5); Assert.That(comp.Damage.Total, Is.GreaterThan(FixedPoint2.Zero)); diff --git a/Content.IntegrationTests/Tests/ContainerOcclusionTest.cs b/Content.IntegrationTests/Tests/ContainerOcclusionTest.cs index 0b1717c3658..c61a70faf0b 100644 --- a/Content.IntegrationTests/Tests/ContainerOcclusionTest.cs +++ b/Content.IntegrationTests/Tests/ContainerOcclusionTest.cs @@ -34,33 +34,35 @@ public sealed class ContainerOcclusionTest [Test] public async Task TestA() { - await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings { Connected = true }); - var s = pairTracker.Pair.Server; - var c = pairTracker.Pair.Client; + await using var pair = await PoolManager.GetServerClient(new PoolSettings { Connected = true }); + var server = pair.Server; + var client = pair.Client; - var cEntities = c.ResolveDependency(); - var ent = s.ResolveDependency(); + var clientEntManager = client.ResolveDependency(); + var serverEntManager = server.ResolveDependency(); EntityUid dummy = default; - var mapManager = s.ResolveDependency(); + var mapManager = server.ResolveDependency(); var mapId = mapManager.CreateMap(); - await s.WaitPost(() => + await server.WaitPost(() => { var pos = new MapCoordinates(Vector2.Zero, mapId); - var entStorage = ent.EntitySysManager.GetEntitySystem(); - var container = ent.SpawnEntity("ContainerOcclusionA", pos); - dummy = ent.SpawnEntity("ContainerOcclusionDummy", pos); + var entStorage = serverEntManager.EntitySysManager.GetEntitySystem(); + var container = serverEntManager.SpawnEntity("ContainerOcclusionA", pos); + dummy = serverEntManager.SpawnEntity("ContainerOcclusionDummy", pos); entStorage.Insert(dummy, container); }); - await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await pair.RunTicksSync(5); - await c.WaitAssertion(() => + var clientEnt = clientEntManager.GetEntity(serverEntManager.GetNetEntity(dummy)); + + await client.WaitAssertion(() => { - var sprite = cEntities.GetComponent(dummy); - var light = cEntities.GetComponent(dummy); + var sprite = clientEntManager.GetComponent(clientEnt); + var light = clientEntManager.GetComponent(clientEnt); Assert.Multiple(() => { Assert.That(sprite.ContainerOccluded); @@ -68,39 +70,41 @@ await c.WaitAssertion(() => }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task TestB() { - await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings { Connected = true }); - var s = pairTracker.Pair.Server; - var c = pairTracker.Pair.Client; + await using var pair = await PoolManager.GetServerClient(new PoolSettings { Connected = true }); + var server = pair.Server; + var client = pair.Client; - var cEntities = c.ResolveDependency(); - var ent = s.ResolveDependency(); + var clientEntManager = client.ResolveDependency(); + var serverEntManager = server.ResolveDependency(); EntityUid dummy = default; - var mapManager = s.ResolveDependency(); + var mapManager = server.ResolveDependency(); var mapId = mapManager.CreateMap(); - await s.WaitPost(() => + await server.WaitPost(() => { var pos = new MapCoordinates(Vector2.Zero, mapId); - var entStorage = ent.EntitySysManager.GetEntitySystem(); - var container = ent.SpawnEntity("ContainerOcclusionB", pos); - dummy = ent.SpawnEntity("ContainerOcclusionDummy", pos); + var entStorage = serverEntManager.EntitySysManager.GetEntitySystem(); + var container = serverEntManager.SpawnEntity("ContainerOcclusionB", pos); + dummy = serverEntManager.SpawnEntity("ContainerOcclusionDummy", pos); entStorage.Insert(dummy, container); }); - await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await pair.RunTicksSync(5); + + var clientEnt = clientEntManager.GetEntity(serverEntManager.GetNetEntity(dummy)); - await c.WaitAssertion(() => + await client.WaitAssertion(() => { - var sprite = cEntities.GetComponent(dummy); - var light = cEntities.GetComponent(dummy); + var sprite = clientEntManager.GetComponent(clientEnt); + var light = clientEntManager.GetComponent(clientEnt); Assert.Multiple(() => { Assert.That(sprite.ContainerOccluded, Is.False); @@ -108,41 +112,43 @@ await c.WaitAssertion(() => }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task TestAb() { - await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings { Connected = true }); - var s = pairTracker.Pair.Server; - var c = pairTracker.Pair.Client; + await using var pair = await PoolManager.GetServerClient(new PoolSettings { Connected = true }); + var server = pair.Server; + var client = pair.Client; - var cEntities = c.ResolveDependency(); - var ent = s.ResolveDependency(); + var clientEntManager = client.ResolveDependency(); + var serverEntManager = server.ResolveDependency(); EntityUid dummy = default; - var mapManager = s.ResolveDependency(); + var mapManager = server.ResolveDependency(); var mapId = mapManager.CreateMap(); - await s.WaitPost(() => + await server.WaitPost(() => { var pos = new MapCoordinates(Vector2.Zero, mapId); - var entStorage = ent.EntitySysManager.GetEntitySystem(); - var containerA = ent.SpawnEntity("ContainerOcclusionA", pos); - var containerB = ent.SpawnEntity("ContainerOcclusionB", pos); - dummy = ent.SpawnEntity("ContainerOcclusionDummy", pos); + var entStorage = serverEntManager.EntitySysManager.GetEntitySystem(); + var containerA = serverEntManager.SpawnEntity("ContainerOcclusionA", pos); + var containerB = serverEntManager.SpawnEntity("ContainerOcclusionB", pos); + dummy = serverEntManager.SpawnEntity("ContainerOcclusionDummy", pos); entStorage.Insert(containerB, containerA); entStorage.Insert(dummy, containerB); }); - await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await pair.RunTicksSync(5); + + var clientEnt = clientEntManager.GetEntity(serverEntManager.GetNetEntity(dummy)); - await c.WaitAssertion(() => + await client.WaitAssertion(() => { - var sprite = cEntities.GetComponent(dummy); - var light = cEntities.GetComponent(dummy); + var sprite = clientEntManager.GetComponent(clientEnt); + var light = clientEntManager.GetComponent(clientEnt); Assert.Multiple(() => { Assert.That(sprite.ContainerOccluded); @@ -150,7 +156,7 @@ await c.WaitAssertion(() => }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/Damageable/DamageableTest.cs b/Content.IntegrationTests/Tests/Damageable/DamageableTest.cs index f527b0577e1..3ab90b07ebc 100644 --- a/Content.IntegrationTests/Tests/Damageable/DamageableTest.cs +++ b/Content.IntegrationTests/Tests/Damageable/DamageableTest.cs @@ -73,8 +73,8 @@ public sealed class DamageableTest [Test] public async Task TestDamageableComponents() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var sEntityManager = server.ResolveDependency(); var sMapManager = server.ResolveDependency(); @@ -237,7 +237,7 @@ await server.WaitAssertion(() => sDamageableSystem.TryChangeDamage(uid, new DamageSpecifier(group3, -100)); Assert.That(sDamageableComponent.TotalDamage, Is.EqualTo(FixedPoint2.Zero)); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/DeleteInventoryTest.cs b/Content.IntegrationTests/Tests/DeleteInventoryTest.cs index a9261c4a23d..49d54bbecfc 100644 --- a/Content.IntegrationTests/Tests/DeleteInventoryTest.cs +++ b/Content.IntegrationTests/Tests/DeleteInventoryTest.cs @@ -14,9 +14,9 @@ public sealed class DeleteInventoryTest [Test] public async Task Test() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; - var testMap = await PoolManager.CreateTestMap(pairTracker); + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; + var testMap = await pair.CreateTestMap(); var entMgr = server.ResolveDependency(); var sysManager = server.ResolveDependency(); var coordinates = testMap.GridCoords; @@ -44,7 +44,7 @@ await server.WaitAssertion(() => // Assert that child item was also deleted. Assert.That(item.Deleted, Is.True); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/Destructible/DestructibleDamageGroupTest.cs b/Content.IntegrationTests/Tests/Destructible/DestructibleDamageGroupTest.cs index 84841eef212..d37de7a5044 100644 --- a/Content.IntegrationTests/Tests/Destructible/DestructibleDamageGroupTest.cs +++ b/Content.IntegrationTests/Tests/Destructible/DestructibleDamageGroupTest.cs @@ -18,10 +18,10 @@ public sealed class DestructibleDamageGroupTest [Test] public async Task AndTest() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; - var testMap = await PoolManager.CreateTestMap(pairTracker); + var testMap = await pair.CreateTestMap(); var sEntityManager = server.ResolveDependency(); var sPrototypeManager = server.ResolveDependency(); @@ -193,7 +193,7 @@ await server.WaitAssertion(() => // No new thresholds reached as triggers once is set to true and it already triggered before Assert.That(sTestThresholdListenerSystem.ThresholdsReached, Is.Empty); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/Destructible/DestructibleDamageTypeTest.cs b/Content.IntegrationTests/Tests/Destructible/DestructibleDamageTypeTest.cs index 3aed14aaa17..69891cbd895 100644 --- a/Content.IntegrationTests/Tests/Destructible/DestructibleDamageTypeTest.cs +++ b/Content.IntegrationTests/Tests/Destructible/DestructibleDamageTypeTest.cs @@ -15,10 +15,10 @@ public sealed class DestructibleDamageTypeTest [Test] public async Task Test() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; - var testMap = await PoolManager.CreateTestMap(pairTracker); + var testMap = await pair.CreateTestMap(); var sEntityManager = server.ResolveDependency(); var sEntitySystemManager = server.ResolveDependency(); @@ -186,7 +186,7 @@ await server.WaitAssertion(() => // No new thresholds reached as triggers once is set to true and it already triggered before Assert.That(sTestThresholdListenerSystem.ThresholdsReached, Is.Empty); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/Destructible/DestructibleDestructionTest.cs b/Content.IntegrationTests/Tests/Destructible/DestructibleDestructionTest.cs index 8fd83fdb962..0255afa50e9 100644 --- a/Content.IntegrationTests/Tests/Destructible/DestructibleDestructionTest.cs +++ b/Content.IntegrationTests/Tests/Destructible/DestructibleDestructionTest.cs @@ -14,10 +14,10 @@ public sealed class DestructibleDestructionTest [Test] public async Task Test() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; - var testMap = await PoolManager.CreateTestMap(pairTracker); + var testMap = await pair.CreateTestMap(); var sEntityManager = server.ResolveDependency(); var sPrototypeManager = server.ResolveDependency(); @@ -88,7 +88,7 @@ await server.WaitAssertion(() => Assert.That(found, Is.True); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/Destructible/DestructibleThresholdActivationTest.cs b/Content.IntegrationTests/Tests/Destructible/DestructibleThresholdActivationTest.cs index 1574fc5f642..34692aa082f 100644 --- a/Content.IntegrationTests/Tests/Destructible/DestructibleThresholdActivationTest.cs +++ b/Content.IntegrationTests/Tests/Destructible/DestructibleThresholdActivationTest.cs @@ -20,15 +20,15 @@ public sealed class DestructibleThresholdActivationTest [Test] public async Task Test() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var sEntityManager = server.ResolveDependency(); var sPrototypeManager = server.ResolveDependency(); var sEntitySystemManager = server.ResolveDependency(); var audio = sEntitySystemManager.GetEntitySystem(); - var testMap = await PoolManager.CreateTestMap(pairTracker); + var testMap = await pair.CreateTestMap(); EntityUid sDestructibleEntity = default; DamageableComponent sDamageableComponent = null; @@ -288,7 +288,7 @@ await server.WaitAssertion(() => Assert.That(sTestThresholdListenerSystem.ThresholdsReached, Is.Empty); }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/DeviceNetwork/DeviceNetworkTest.cs b/Content.IntegrationTests/Tests/DeviceNetwork/DeviceNetworkTest.cs index 4f6a473b39b..0bc123cdbfa 100644 --- a/Content.IntegrationTests/Tests/DeviceNetwork/DeviceNetworkTest.cs +++ b/Content.IntegrationTests/Tests/DeviceNetwork/DeviceNetworkTest.cs @@ -51,8 +51,8 @@ public sealed class DeviceNetworkTest [Test] public async Task NetworkDeviceSendAndReceive() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var mapManager = server.ResolveDependency(); var entityManager = server.ResolveDependency(); @@ -105,15 +105,15 @@ await server.WaitAssertion(() => { CollectionAssert.AreEquivalent(deviceNetTestSystem.LastPayload, payload); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task WirelessNetworkDeviceSendAndReceive() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; - var testMap = await PoolManager.CreateTestMap(pairTracker); + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; + var testMap = await pair.CreateTestMap(); var coordinates = testMap.GridCoords; var mapManager = server.ResolveDependency(); @@ -190,15 +190,15 @@ await server.WaitAssertion(() => CollectionAssert.AreNotEqual(deviceNetTestSystem.LastPayload, payload); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task WiredNetworkDeviceSendAndReceive() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; - var testMap = await PoolManager.CreateTestMap(pairTracker); + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; + var testMap = await pair.CreateTestMap(); var coordinates = testMap.GridCoords; var mapManager = server.ResolveDependency(); @@ -273,7 +273,7 @@ await server.WaitAssertion(() => CollectionAssert.AreEqual(deviceNetTestSystem.LastPayload, payload); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/Disposal/DisposalUnitTest.cs b/Content.IntegrationTests/Tests/Disposal/DisposalUnitTest.cs index 318afce7e83..976fc2eceb5 100644 --- a/Content.IntegrationTests/Tests/Disposal/DisposalUnitTest.cs +++ b/Content.IntegrationTests/Tests/Disposal/DisposalUnitTest.cs @@ -147,10 +147,10 @@ private static void Flush(EntityUid unitEntity, DisposalUnitComponent unit, bool [Test] public async Task Test() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; - var testMap = await PoolManager.CreateTestMap(pairTracker); + var testMap = await pair.CreateTestMap(); EntityUid human = default!; EntityUid wrench = default!; @@ -240,7 +240,7 @@ await server.WaitAssertion(() => // Re-pressurizing Flush(disposalUnit, unitComponent, false, disposalSystem); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/DoAfter/DoAfterCancellationTests.cs b/Content.IntegrationTests/Tests/DoAfter/DoAfterCancellationTests.cs index 29cb6426c94..5522ce8c54b 100644 --- a/Content.IntegrationTests/Tests/DoAfter/DoAfterCancellationTests.cs +++ b/Content.IntegrationTests/Tests/DoAfter/DoAfterCancellationTests.cs @@ -2,7 +2,9 @@ using Content.IntegrationTests.Tests.Construction.Interaction; using Content.IntegrationTests.Tests.Interaction; using Content.IntegrationTests.Tests.Weldable; +using Content.Shared.Tools.Components; using Content.Server.Tools.Components; +using Content.Shared.DoAfter; namespace Content.IntegrationTests.Tests.DoAfter; @@ -50,10 +52,10 @@ public async Task CancelWallConstruct() await StartConstruction(WallConstruction.Wall); await Interact(Steel, 5, awaitDoAfters: false); await CancelDoAfters(); - Assert.That(Target.HasValue && Target.Value.IsClientSide()); await Interact(Steel, 5); - AssertPrototype(WallConstruction.Girder); + ClientAssertPrototype(WallConstruction.Girder, ClientTarget); + Target = CTestSystem.Ghosts[ClientTarget!.Value.GetHashCode()]; await Interact(Steel, 5, awaitDoAfters: false); await CancelDoAfters(); AssertPrototype(WallConstruction.Girder); @@ -84,7 +86,7 @@ public async Task CancelRepeatedTilePry() await AssertTile(Floor); // Second DoAfter cancels the first. - await Server.WaitPost(() => InteractSys.UserInteraction(Player, TargetCoords, Target)); + await Server.WaitPost(() => InteractSys.UserInteraction(SEntMan.GetEntity(Player), SEntMan.GetCoordinates(TargetCoords), SEntMan.GetEntity(Target))); Assert.That(ActiveDoAfters.Count(), Is.EqualTo(0)); await AssertTile(Floor); @@ -100,11 +102,7 @@ public async Task CancelRepeatedWeld() await SpawnTarget(WeldableTests.Locker); var comp = Comp(); - Assert.Multiple(() => - { - Assert.That(comp.Weldable, Is.True); - Assert.That(comp.IsWelded, Is.False); - }); + Assert.That(comp.IsWelded, Is.False); await Interact(Weld, awaitDoAfters: false); await RunTicks(1); @@ -116,7 +114,7 @@ public async Task CancelRepeatedWeld() // Second DoAfter cancels the first. // Not using helper, because it runs too many ticks & causes the do-after to finish. - await Server.WaitPost(() => InteractSys.UserInteraction(Player, TargetCoords, Target)); + await Server.WaitPost(() => InteractSys.UserInteraction(SEntMan.GetEntity(Player), SEntMan.GetCoordinates(TargetCoords), SEntMan.GetEntity(Target))); Assert.Multiple(() => { Assert.That(ActiveDoAfters.Count(), Is.EqualTo(0)); @@ -139,7 +137,7 @@ public async Task CancelRepeatedWeld() Assert.That(ActiveDoAfters.Count(), Is.EqualTo(1)); Assert.That(comp.IsWelded, Is.True); }); - await Server.WaitPost(() => InteractSys.UserInteraction(Player, TargetCoords, Target)); + await Server.WaitPost(() => InteractSys.UserInteraction(SEntMan.GetEntity(Player), SEntMan.GetCoordinates(TargetCoords), SEntMan.GetEntity(Target))); Assert.Multiple(() => { Assert.That(ActiveDoAfters.Count(), Is.EqualTo(0)); diff --git a/Content.IntegrationTests/Tests/DoAfter/DoAfterServerTest.cs b/Content.IntegrationTests/Tests/DoAfter/DoAfterServerTest.cs index 034e264edac..45c2759aa6e 100644 --- a/Content.IntegrationTests/Tests/DoAfter/DoAfterServerTest.cs +++ b/Content.IntegrationTests/Tests/DoAfter/DoAfterServerTest.cs @@ -10,7 +10,7 @@ namespace Content.IntegrationTests.Tests.DoAfter { [TestFixture] [TestOf(typeof(DoAfterComponent))] - public sealed class DoAfterServerTest + public sealed partial class DoAfterServerTest { [TestPrototypes] private const string Prototypes = @" @@ -21,7 +21,7 @@ public sealed class DoAfterServerTest - type: DoAfter "; - private sealed class TestDoAfterEvent : DoAfterEvent + private sealed partial class TestDoAfterEvent : DoAfterEvent { public override DoAfterEvent Clone() { @@ -32,8 +32,8 @@ public override DoAfterEvent Clone() [Test] public async Task TestSerializable() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; await server.WaitIdleAsync(); var refMan = server.ResolveDependency(); @@ -53,14 +53,14 @@ await server.WaitPost(() => }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task TestFinished() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; await server.WaitIdleAsync(); var entityManager = server.ResolveDependency(); @@ -73,7 +73,7 @@ await server.WaitPost(() => { var tickTime = 1.0f / timing.TickRate; var mob = entityManager.SpawnEntity("DoAfterDummy", MapCoordinates.Nullspace); - var args = new DoAfterArgs(mob, tickTime / 2, ev, null) { Broadcast = true }; + var args = new DoAfterArgs(entityManager, mob, tickTime / 2, ev, null) { Broadcast = true }; #pragma warning disable NUnit2045 // Interdependent assertions. Assert.That(doAfterSystem.TryStartDoAfter(args)); Assert.That(ev.Cancelled, Is.False); @@ -83,14 +83,14 @@ await server.WaitPost(() => await server.WaitRunTicks(1); Assert.That(ev.Cancelled, Is.False); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task TestCancelled() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var entityManager = server.ResolveDependency(); var timing = server.ResolveDependency(); var doAfterSystem = entityManager.EntitySysManager.GetEntitySystem(); @@ -101,7 +101,7 @@ await server.WaitPost(() => var tickTime = 1.0f / timing.TickRate; var mob = entityManager.SpawnEntity("DoAfterDummy", MapCoordinates.Nullspace); - var args = new DoAfterArgs(mob, tickTime * 2, ev, null) { Broadcast = true }; + var args = new DoAfterArgs(entityManager, mob, tickTime * 2, ev, null) { Broadcast = true }; if (!doAfterSystem.TryStartDoAfter(args, out var id)) { @@ -118,7 +118,7 @@ await server.WaitPost(() => await server.WaitRunTicks(3); Assert.That(ev.Cancelled); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/Doors/AirlockTest.cs b/Content.IntegrationTests/Tests/Doors/AirlockTest.cs index 9efbcbe18e2..9f31231091f 100644 --- a/Content.IntegrationTests/Tests/Doors/AirlockTest.cs +++ b/Content.IntegrationTests/Tests/Doors/AirlockTest.cs @@ -53,8 +53,8 @@ public sealed class AirlockTest [Test] public async Task OpenCloseDestroyTest() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var entityManager = server.ResolveDependency(); var doors = entityManager.EntitySysManager.GetEntitySystem(); @@ -106,14 +106,14 @@ await server.WaitAssertion(() => server.RunTicks(5); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task AirlockBlockTest() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; await server.WaitIdleAsync(); @@ -178,7 +178,7 @@ await server.WaitAssertion(() => { Assert.That(Math.Abs(xformSystem.GetWorldPosition(AirlockPhysicsDummy).X - 1), Is.GreaterThan(0.01f)); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/DummyIconTest.cs b/Content.IntegrationTests/Tests/DummyIconTest.cs index 757f8ac7002..a11191a51ea 100644 --- a/Content.IntegrationTests/Tests/DummyIconTest.cs +++ b/Content.IntegrationTests/Tests/DummyIconTest.cs @@ -12,8 +12,8 @@ public sealed class DummyIconTest [Test] public async Task Test() { - await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings { Connected = true }); - var client = pairTracker.Pair.Client; + await using var pair = await PoolManager.GetServerClient(new PoolSettings { Connected = true }); + var client = pair.Client; var prototypeManager = client.ResolveDependency(); var resourceCache = client.ResolveDependency(); @@ -21,7 +21,7 @@ await client.WaitAssertion(() => { foreach (var proto in prototypeManager.EnumeratePrototypes()) { - if (proto.NoSpawn || proto.Abstract || pairTracker.Pair.IsTestPrototype(proto) || !proto.Components.ContainsKey("Sprite")) + if (proto.NoSpawn || proto.Abstract || pair.IsTestPrototype(proto) || !proto.Components.ContainsKey("Sprite")) continue; Assert.DoesNotThrow(() => @@ -31,7 +31,7 @@ await client.WaitAssertion(() => proto.ID); } }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/EntityTest.cs b/Content.IntegrationTests/Tests/EntityTest.cs index 45e87e45e01..453796b9165 100644 --- a/Content.IntegrationTests/Tests/EntityTest.cs +++ b/Content.IntegrationTests/Tests/EntityTest.cs @@ -22,8 +22,8 @@ public async Task SpawnAndDeleteAllEntitiesOnDifferentMaps() // This test dirties the pair as it simply deletes ALL entities when done. Overhead of restarting the round // is minimal relative to the rest of the test. var settings = new PoolSettings { Dirty = true }; - await using var pairTracker = await PoolManager.GetServerClient(settings); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(settings); + var server = pair.Server; var entityMan = server.ResolveDependency(); var mapManager = server.ResolveDependency(); @@ -34,7 +34,7 @@ await server.WaitPost(() => var protoIds = prototypeMan .EnumeratePrototypes() .Where(p => !p.Abstract) - .Where(p => !pairTracker.Pair.IsTestPrototype(p)) + .Where(p => !pair.IsTestPrototype(p)) .Where(p => !p.Components.ContainsKey("MapGrid")) // This will smash stuff otherwise. .Select(p => p.ID) .ToList(); @@ -42,6 +42,8 @@ await server.WaitPost(() => { var mapId = mapManager.CreateMap(); var grid = mapManager.CreateGrid(mapId); + // TODO: Fix this better in engine. + grid.SetTile(Vector2i.Zero, new Tile(1)); var coord = new EntityCoordinates(grid.Owner, 0, 0); entityMan.SpawnEntity(protoId, coord); } @@ -57,7 +59,7 @@ await server.WaitPost(() => var query = entityMan.AllEntityQueryEnumerator(); while (query.MoveNext(out var uid, out var meta)) yield return (uid, meta); - }; + } var entityMetas = Query(entityMan).ToList(); foreach (var (uid, meta) in entityMetas) @@ -68,7 +70,8 @@ await server.WaitPost(() => Assert.That(entityMan.EntityCount, Is.Zero); }); - await pairTracker.CleanReturnAsync(); + + await pair.CleanReturnAsync(); } [Test] @@ -77,9 +80,9 @@ public async Task SpawnAndDeleteAllEntitiesInTheSameSpot() // This test dirties the pair as it simply deletes ALL entities when done. Overhead of restarting the round // is minimal relative to the rest of the test. var settings = new PoolSettings { Dirty = true }; - await using var pairTracker = await PoolManager.GetServerClient(settings); - var server = pairTracker.Pair.Server; - var map = await PoolManager.CreateTestMap(pairTracker); + await using var pair = await PoolManager.GetServerClient(settings); + var server = pair.Server; + var map = await pair.CreateTestMap(); var entityMan = server.ResolveDependency(); var prototypeMan = server.ResolveDependency(); @@ -90,7 +93,7 @@ await server.WaitPost(() => var protoIds = prototypeMan .EnumeratePrototypes() .Where(p => !p.Abstract) - .Where(p => !pairTracker.Pair.IsTestPrototype(p)) + .Where(p => !pair.IsTestPrototype(p)) .Where(p => !p.Components.ContainsKey("MapGrid")) // This will smash stuff otherwise. .Select(p => p.ID) .ToList(); @@ -119,7 +122,8 @@ await server.WaitPost(() => Assert.That(entityMan.EntityCount, Is.Zero); }); - await pairTracker.CleanReturnAsync(); + + await pair.CleanReturnAsync(); } /// @@ -132,9 +136,9 @@ public async Task SpawnAndDirtyAllEntities() // This test dirties the pair as it simply deletes ALL entities when done. Overhead of restarting the round // is minimal relative to the rest of the test. var settings = new PoolSettings { Connected = true, Dirty = true }; - await using var pairTracker = await PoolManager.GetServerClient(settings); - var server = pairTracker.Pair.Server; - var client = pairTracker.Pair.Client; + await using var pair = await PoolManager.GetServerClient(settings); + var server = pair.Server; + var client = pair.Client; var cfg = server.ResolveDependency(); var prototypeMan = server.ResolveDependency(); @@ -146,22 +150,15 @@ public async Task SpawnAndDirtyAllEntities() var protoIds = prototypeMan .EnumeratePrototypes() .Where(p => !p.Abstract) - .Where(p => !pairTracker.Pair.IsTestPrototype(p)) + .Where(p => !pair.IsTestPrototype(p)) .Where(p => !p.Components.ContainsKey("MapGrid")) // This will smash stuff otherwise. .Select(p => p.ID) .ToList(); - // for whatever reason, stealth boxes are breaking this test. Surplus crates have a chance of spawning them. - // TODO fix whatever is going wrong here. - HashSet ignored = new() { "GhostBox", "StealthBox", "CrateSyndicateSurplusBundle", "CrateSyndicateSuperSurplusBundle" }; - await server.WaitPost(() => { foreach (var protoId in protoIds) { - if (ignored.Contains(protoId)) - continue; - var mapId = mapManager.CreateMap(); var grid = mapManager.CreateGrid(mapId); var ent = sEntMan.SpawnEntity(protoId, new EntityCoordinates(grid.Owner, 0.5f, 0.5f)); @@ -172,7 +169,7 @@ await server.WaitPost(() => } }); - await PoolManager.RunTicksSync(pairTracker.Pair, 15); + await pair.RunTicksSync(15); // Make sure the client actually received the entities // 500 is completely arbitrary. Note that the client & sever entity counts aren't expected to match. @@ -198,7 +195,7 @@ await server.WaitPost(() => Assert.That(sEntMan.EntityCount, Is.Zero); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] @@ -213,6 +210,7 @@ public async Task AllComponentsOneToOneDeleteTest() "GridFillComponent", "Map", // We aren't testing a map entity in this test "MapGrid", + "Broadphase", "StationData", // errors when removed mid-round "Actor", // We aren't testing actor components, those need their player session set. "BlobFloorPlanBuilder", // Implodes if unconfigured. @@ -221,8 +219,8 @@ public async Task AllComponentsOneToOneDeleteTest() "BiomeSelection", // Whaddya know, requires config. }; - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var mapManager = server.ResolveDependency(); var entityManager = server.ResolveDependency(); @@ -295,137 +293,7 @@ await server.WaitAssertion(() => }); }); - await pairTracker.CleanReturnAsync(); - } - - [Test] - public async Task AllComponentsOneEntityDeleteTest() - { - var skipComponents = new[] - { - "DebugExceptionOnAdd", // Debug components that explicitly throw exceptions - "DebugExceptionExposeData", - "DebugExceptionInitialize", - "DebugExceptionStartup", - "GridFillComponent", - "Map", // We aren't testing a map entity in this test - "MapGrid", - "StationData", // errors when deleted mid-round - "Actor", // We aren't testing actor components, those need their player session set. - "BlobFloorPlanBuilder", // Implodes if unconfigured. - "DebrisFeaturePlacerController", // Above. - "LoadedChunk", // Worldgen chunk loading malding. - "BiomeSelection", // Whaddya know, requires config. - }; - - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; - - var mapManager = server.ResolveDependency(); - var entityManager = server.ResolveDependency(); - var componentFactory = server.ResolveDependency(); - var tileDefinitionManager = server.ResolveDependency(); - var logmill = server.ResolveDependency().GetSawmill("EntityTest"); - - MapGridComponent grid = default; - - await server.WaitPost(() => - { - // Create a one tile grid to stave off the grid 0 monsters - var mapId = mapManager.CreateMap(); - - mapManager.AddUninitializedMap(mapId); - - grid = mapManager.CreateGrid(mapId); - - var tileDefinition = tileDefinitionManager["Plating"]; - var tile = new Tile(tileDefinition.TileId); - - grid.SetTile(Vector2i.Zero, tile); - mapManager.DoMapInitialize(mapId); - }); - await server.WaitRunTicks(5); - - var distinctComponents = new List<(List components, List references)> - { - (new List(), new List()) - }; - - // Split components into groups, ensuring that their references don't conflict - foreach (var type in componentFactory.AllRegisteredTypes) - { - var registration = componentFactory.GetRegistration(type); - - for (var i = 0; i < distinctComponents.Count; i++) - { - var (components, references) = distinctComponents[i]; - - if (references.Intersect(registration.References).Any()) - { - // Ensure the next list if this one has conflicting references - if (i + 1 >= distinctComponents.Count) - { - distinctComponents.Add((new List(), new List())); - } - - continue; - } - - // Add the component and its references if no conflicting references were found - components.Add(registration.Idx); - references.AddRange(registration.References); - } - } - - // Sanity check - Assert.That(distinctComponents, Is.Not.Empty); - - await server.WaitAssertion(() => - { - Assert.Multiple(() => - { - foreach (var (components, _) in distinctComponents) - { - var testLocation = grid.ToCoordinates(); - var entity = entityManager.SpawnEntity(null, testLocation); - - Assert.That(entityManager.GetComponent(entity).EntityInitialized); - - foreach (var type in components) - { - var component = (Component) componentFactory.GetComponent(type); - - // If the entity already has this component, if it was ensured or added by another - if (entityManager.HasComponent(entity, component.GetType())) - { - continue; - } - - var name = componentFactory.GetComponentName(component.GetType()); - - // If this component is ignored - if (skipComponents.Contains(name)) - continue; - - component.Owner = entity; - logmill.Debug($"Adding component: {name}"); - - // Note for the future coder: if an exception occurs where a component reference - // was already occupied it might be because some component is ensuring another // initialize. - // If so, search for cases of EnsureComponent, EnsureComponentWarn - // and all others variations (out parameter) - Assert.DoesNotThrow(() => - { - entityManager.AddComponent(entity, component); - }, "Component '{0}' threw an exception.", - name); - } - entityManager.DeleteEntity(entity); - } - }); - }); - - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/Fluids/FluidSpillTest.cs b/Content.IntegrationTests/Tests/Fluids/FluidSpillTest.cs index b048fa25142..da806aa10a5 100644 --- a/Content.IntegrationTests/Tests/Fluids/FluidSpillTest.cs +++ b/Content.IntegrationTests/Tests/Fluids/FluidSpillTest.cs @@ -30,8 +30,8 @@ public sealed class FluidSpill [Test] public async Task SpillCorner() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var mapManager = server.ResolveDependency(); var entityManager = server.ResolveDependency(); var puddleSystem = server.ResolveDependency().GetEntitySystem(); @@ -106,6 +106,6 @@ await server.WaitAssertion(() => } }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } diff --git a/Content.IntegrationTests/Tests/Fluids/PuddleTest.cs b/Content.IntegrationTests/Tests/Fluids/PuddleTest.cs index 780a5f1933f..3213bba51f9 100644 --- a/Content.IntegrationTests/Tests/Fluids/PuddleTest.cs +++ b/Content.IntegrationTests/Tests/Fluids/PuddleTest.cs @@ -16,10 +16,10 @@ public sealed class PuddleTest [Test] public async Task TilePuddleTest() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; - var testMap = await PoolManager.CreateTestMap(pairTracker); + var testMap = await pair.CreateTestMap(); var entitySystemManager = server.ResolveDependency(); var spillSystem = entitySystemManager.GetEntitySystem(); @@ -34,18 +34,18 @@ await server.WaitAssertion(() => Assert.That(spillSystem.TrySpillAt(coordinates, solution, out _), Is.True); }); - await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await pair.RunTicksSync(5); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task SpaceNoPuddleTest() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; - var testMap = await PoolManager.CreateTestMap(pairTracker); + var testMap = await pair.CreateTestMap(); var entitySystemManager = server.ResolveDependency(); var spillSystem = entitySystemManager.GetEntitySystem(); @@ -63,7 +63,7 @@ await server.WaitPost(() => } }); - await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await pair.RunTicksSync(5); await server.WaitAssertion(() => { @@ -73,7 +73,7 @@ await server.WaitAssertion(() => Assert.That(spillSystem.TrySpillAt(coordinates, solution, out _), Is.False); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/FollowerSystemTest.cs b/Content.IntegrationTests/Tests/FollowerSystemTest.cs index b80975de922..ddd5c7a3f02 100644 --- a/Content.IntegrationTests/Tests/FollowerSystemTest.cs +++ b/Content.IntegrationTests/Tests/FollowerSystemTest.cs @@ -14,8 +14,8 @@ public sealed class FollowerSystemTest [Test] public async Task FollowerMapDeleteTest() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var entMan = server.ResolveDependency(); var mapMan = server.ResolveDependency(); @@ -42,6 +42,6 @@ await server.WaitPost(() => entMan.DeleteEntity(mapMan.GetMapEntityId(map)); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } diff --git a/Content.IntegrationTests/Tests/GameObjects/Components/ActionBlocking/HandCuffTest.cs b/Content.IntegrationTests/Tests/GameObjects/Components/ActionBlocking/HandCuffTest.cs index dfda53a9f5e..1d5dd6d34e2 100644 --- a/Content.IntegrationTests/Tests/GameObjects/Components/ActionBlocking/HandCuffTest.cs +++ b/Content.IntegrationTests/Tests/GameObjects/Components/ActionBlocking/HandCuffTest.cs @@ -37,8 +37,8 @@ public sealed class HandCuffTest [Test] public async Task Test() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; EntityUid human; EntityUid otherHuman; @@ -84,8 +84,8 @@ await server.WaitAssertion(() => Assert.That(cuffed.CuffedHandCount, Is.GreaterThan(0), "Handcuffing a player did not result in their hands being cuffed"); // Test to ensure a player with 4 hands will still only have 2 hands cuffed - AddHand(human, host); - AddHand(human, host); + AddHand(entityManager.GetNetEntity(human), host); + AddHand(entityManager.GetNetEntity(human), host); Assert.Multiple(() => { @@ -98,10 +98,10 @@ await server.WaitAssertion(() => Assert.That(cuffed.CuffedHandCount, Is.EqualTo(4), "Player doesn't have correct amount of hands cuffed"); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } - private static void AddHand(EntityUid to, IServerConsoleHost host) + private static void AddHand(NetEntity to, IServerConsoleHost host) { host.ExecuteCommand(null, $"addhand {to}"); } diff --git a/Content.IntegrationTests/Tests/GameObjects/Components/EntityPrototypeComponentsTest.cs b/Content.IntegrationTests/Tests/GameObjects/Components/EntityPrototypeComponentsTest.cs index fb537877683..5c732455011 100644 --- a/Content.IntegrationTests/Tests/GameObjects/Components/EntityPrototypeComponentsTest.cs +++ b/Content.IntegrationTests/Tests/GameObjects/Components/EntityPrototypeComponentsTest.cs @@ -16,9 +16,9 @@ public sealed class EntityPrototypeComponentsTest [Test] public async Task PrototypesHaveKnownComponents() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; - var client = pairTracker.Pair.Client; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; + var client = pair.Client; var sResourceManager = server.ResolveDependency(); var prototypePath = new ResPath("/Prototypes/"); @@ -93,7 +93,7 @@ public async Task PrototypesHaveKnownComponents() if (unknownComponentsClient.Count + unknownComponentsServer.Count == 0) { - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); Assert.Pass($"Validated {entitiesValidated} entities with {componentsValidated} components in {paths.Length} files."); return; } @@ -118,9 +118,9 @@ public async Task PrototypesHaveKnownComponents() [Test] public async Task IgnoredComponentsExistInTheCorrectPlaces() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; - var client = pairTracker.Pair.Client; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; + var client = pair.Client; var serverComponents = server.ResolveDependency(); var ignoredServerNames = Server.Entry.IgnoredComponents.List; var clientComponents = client.ResolveDependency(); @@ -138,7 +138,7 @@ public async Task IgnoredComponentsExistInTheCorrectPlaces() } } Assert.That(failureMessages, Is.Empty); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/GameObjects/Components/Mobs/AlertsComponentTests.cs b/Content.IntegrationTests/Tests/GameObjects/Components/Mobs/AlertsComponentTests.cs index 295800171db..bbcd24b4156 100644 --- a/Content.IntegrationTests/Tests/GameObjects/Components/Mobs/AlertsComponentTests.cs +++ b/Content.IntegrationTests/Tests/GameObjects/Components/Mobs/AlertsComponentTests.cs @@ -16,13 +16,13 @@ public sealed class AlertsComponentTests [Test] public async Task AlertsTest() { - await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings + await using var pair = await PoolManager.GetServerClient(new PoolSettings { Connected = true, DummyTicker = false }); - var server = pairTracker.Pair.Server; - var client = pairTracker.Pair.Client; + var server = pair.Server; + var client = pair.Client; var clientPlayerMgr = client.ResolveDependency(); var clientUIMgr = client.ResolveDependency(); @@ -52,7 +52,7 @@ await server.WaitAssertion(() => Assert.That(alerts, Has.Count.EqualTo(alertCount + 2)); }); - await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await pair.RunTicksSync(5); AlertsUI clientAlertsUI = default; await client.WaitAssertion(() => @@ -98,7 +98,7 @@ await server.WaitAssertion(() => alertsSystem.ClearAlert(playerUid, AlertType.Debug1); }); - await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await pair.RunTicksSync(5); await client.WaitAssertion(() => { @@ -110,7 +110,7 @@ await client.WaitAssertion(() => Assert.That(alertIDs, Is.SupersetOf(expectedIDs)); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/GameRules/RuleMaxTimeRestartTest.cs b/Content.IntegrationTests/Tests/GameRules/RuleMaxTimeRestartTest.cs index 80d3bbe75da..1e3f9c9854f 100644 --- a/Content.IntegrationTests/Tests/GameRules/RuleMaxTimeRestartTest.cs +++ b/Content.IntegrationTests/Tests/GameRules/RuleMaxTimeRestartTest.cs @@ -16,8 +16,8 @@ public sealed class RuleMaxTimeRestartTest [Test] public async Task RestartTest() { - await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings { InLobby = true }); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(new PoolSettings { InLobby = true }); + var server = pair.Server; var entityManager = server.ResolveDependency(); var sGameTicker = server.ResolveDependency().GetEntitySystem(); @@ -39,7 +39,7 @@ await server.WaitAssertion(() => }); var ticks = sGameTiming.TickRate * (int) Math.Ceiling(maxTime.RoundMaxTime.TotalSeconds * 1.1f); - await PoolManager.RunTicksSync(pairTracker.Pair, ticks); + await pair.RunTicksSync(ticks); await server.WaitAssertion(() => { @@ -47,14 +47,14 @@ await server.WaitAssertion(() => }); ticks = sGameTiming.TickRate * (int) Math.Ceiling(maxTime.RoundEndDelay.TotalSeconds * 1.1f); - await PoolManager.RunTicksSync(pairTracker.Pair, ticks); + await pair.RunTicksSync(ticks); await server.WaitAssertion(() => { Assert.That(sGameTicker.RunLevel, Is.EqualTo(GameRunLevel.PreRoundLobby)); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/GameRules/SecretStartsTest.cs b/Content.IntegrationTests/Tests/GameRules/SecretStartsTest.cs index bff4472b920..941337f7ed3 100644 --- a/Content.IntegrationTests/Tests/GameRules/SecretStartsTest.cs +++ b/Content.IntegrationTests/Tests/GameRules/SecretStartsTest.cs @@ -13,9 +13,9 @@ public sealed class SecretStartsTest [Test] public async Task TestSecretStarts() { - await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings { Dirty = true }); + await using var pair = await PoolManager.GetServerClient(new PoolSettings { Dirty = true }); - var server = pairTracker.Pair.Server; + var server = pair.Server; await server.WaitIdleAsync(); var gameTicker = server.ResolveDependency().GetEntitySystem(); @@ -38,6 +38,6 @@ await server.WaitAssertion(() => gameTicker.ClearGameRules(); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } diff --git a/Content.IntegrationTests/Tests/GameRules/StartEndGameRulesTest.cs b/Content.IntegrationTests/Tests/GameRules/StartEndGameRulesTest.cs index 32113d429ff..bda931397b2 100644 --- a/Content.IntegrationTests/Tests/GameRules/StartEndGameRulesTest.cs +++ b/Content.IntegrationTests/Tests/GameRules/StartEndGameRulesTest.cs @@ -15,12 +15,12 @@ public sealed class StartEndGameRulesTest [Test] public async Task TestAllConcurrent() { - await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings + await using var pair = await PoolManager.GetServerClient(new PoolSettings { Dirty = true, DummyTicker = false }); - var server = pairTracker.Pair.Server; + var server = pair.Server; await server.WaitIdleAsync(); var gameTicker = server.ResolveDependency().GetEntitySystem(); var cfg = server.ResolveDependency(); @@ -48,6 +48,6 @@ await server.WaitAssertion(() => Assert.That(!gameTicker.GetAddedGameRules().Any()); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } diff --git a/Content.IntegrationTests/Tests/Gravity/WeightlessStatusTests.cs b/Content.IntegrationTests/Tests/Gravity/WeightlessStatusTests.cs index b552cc872c0..0ad198d6ef2 100644 --- a/Content.IntegrationTests/Tests/Gravity/WeightlessStatusTests.cs +++ b/Content.IntegrationTests/Tests/Gravity/WeightlessStatusTests.cs @@ -33,15 +33,15 @@ public sealed class WeightlessStatusTests [Test] public async Task WeightlessStatusTest() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var entityManager = server.ResolveDependency(); var alertsSystem = server.ResolveDependency().GetEntitySystem(); EntityUid human = default; - var testMap = await PoolManager.CreateTestMap(pairTracker); + var testMap = await pair.CreateTestMap(); await server.WaitAssertion(() => { @@ -51,7 +51,7 @@ await server.WaitAssertion(() => }); // Let WeightlessSystem and GravitySystem tick - await PoolManager.RunTicksSync(pairTracker.Pair, 10); + await pair.RunTicksSync(10); var generatorUid = EntityUid.Invalid; await server.WaitAssertion(() => { @@ -62,7 +62,7 @@ await server.WaitAssertion(() => }); // Let WeightlessSystem and GravitySystem tick - await PoolManager.RunTicksSync(pairTracker.Pair, 10); + await pair.RunTicksSync(10); await server.WaitAssertion(() => { @@ -72,16 +72,16 @@ await server.WaitAssertion(() => entityManager.DeleteEntity(generatorUid); }); - await PoolManager.RunTicksSync(pairTracker.Pair, 10); + await pair.RunTicksSync(10); await server.WaitAssertion(() => { Assert.That(alertsSystem.IsShowingAlert(human, AlertType.Weightless)); }); - await PoolManager.RunTicksSync(pairTracker.Pair, 10); + await pair.RunTicksSync(10); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/GravityGridTest.cs b/Content.IntegrationTests/Tests/GravityGridTest.cs index e9d0498eccf..22218a097a2 100644 --- a/Content.IntegrationTests/Tests/GravityGridTest.cs +++ b/Content.IntegrationTests/Tests/GravityGridTest.cs @@ -30,10 +30,10 @@ public sealed class GravityGridTest [Test] public async Task Test() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; - var testMap = await PoolManager.CreateTestMap(pairTracker); + var testMap = await pair.CreateTestMap(); EntityUid generator = default; var entityMan = server.ResolveDependency(); @@ -96,7 +96,7 @@ await server.WaitAssertion(() => }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/Guidebook/DocumentParsingTest.cs b/Content.IntegrationTests/Tests/Guidebook/DocumentParsingTest.cs index edc19b531e8..dec2c40c0ac 100644 --- a/Content.IntegrationTests/Tests/Guidebook/DocumentParsingTest.cs +++ b/Content.IntegrationTests/Tests/Guidebook/DocumentParsingTest.cs @@ -45,8 +45,8 @@ some text with a nested control [Test] public async Task ParseTestDocument() { - await using var pairTracker = await PoolManager.GetServerClient(); - var client = pairTracker.Pair.Client; + await using var pair = await PoolManager.GetServerClient(); + var client = pair.Client; await client.WaitIdleAsync(); var parser = client.ResolveDependency(); @@ -134,7 +134,7 @@ await client.WaitPost(() => subTest2.Params.TryGetValue("k", out val); Assert.That(val, Is.EqualTo(@"<>\>=""=<-_?*3.0//")); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } public sealed class TestControl : Control, IDocumentTag diff --git a/Content.IntegrationTests/Tests/Guidebook/GuideEntryPrototypeTests.cs b/Content.IntegrationTests/Tests/Guidebook/GuideEntryPrototypeTests.cs index eba4172a82f..7d686dffe64 100644 --- a/Content.IntegrationTests/Tests/Guidebook/GuideEntryPrototypeTests.cs +++ b/Content.IntegrationTests/Tests/Guidebook/GuideEntryPrototypeTests.cs @@ -15,8 +15,8 @@ public sealed class GuideEntryPrototypeTests [Test] public async Task ValidatePrototypeContents() { - await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings { Connected = true }); - var client = pairTracker.Pair.Client; + await using var pair = await PoolManager.GetServerClient(new PoolSettings { Connected = true }); + var client = pair.Client; await client.WaitIdleAsync(); var protoMan = client.ResolveDependency(); var resMan = client.ResolveDependency(); @@ -35,6 +35,6 @@ await client.WaitAssertion(() => }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } diff --git a/Content.IntegrationTests/Tests/Hands/HandTests.cs b/Content.IntegrationTests/Tests/Hands/HandTests.cs index 1f5a939bdb0..fdcd7f9096f 100644 --- a/Content.IntegrationTests/Tests/Hands/HandTests.cs +++ b/Content.IntegrationTests/Tests/Hands/HandTests.cs @@ -13,20 +13,20 @@ public sealed class HandTests [Test] public async Task TestPickupDrop() { - await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings + await using var pair = await PoolManager.GetServerClient(new PoolSettings { Connected = true, DummyTicker = false }); - var server = pairTracker.Pair.Server; + var server = pair.Server; var entMan = server.ResolveDependency(); var playerMan = server.ResolveDependency(); var mapMan = server.ResolveDependency(); var sys = entMan.System(); - var data = await PoolManager.CreateTestMap(pairTracker); - await PoolManager.RunTicksSync(pairTracker.Pair, 5); + var data = await pair.CreateTestMap(); + await pair.RunTicksSync(5); EntityUid item = default; EntityUid player = default; @@ -41,7 +41,7 @@ await server.WaitPost(() => }); // run ticks here is important, as errors may happen within the container system's frame update methods. - await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await pair.RunTicksSync(5); Assert.That(hands.ActiveHandEntity, Is.EqualTo(item)); await server.WaitPost(() => @@ -49,10 +49,10 @@ await server.WaitPost(() => sys.TryDrop(player, item, null!); }); - await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await pair.RunTicksSync(5); Assert.That(hands.ActiveHandEntity, Is.Null); await server.WaitPost(() => mapMan.DeleteMap(data.MapId)); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } diff --git a/Content.IntegrationTests/Tests/HumanInventoryUniformSlotsTest.cs b/Content.IntegrationTests/Tests/HumanInventoryUniformSlotsTest.cs index f99d1e656f3..3ea3dd7916b 100644 --- a/Content.IntegrationTests/Tests/HumanInventoryUniformSlotsTest.cs +++ b/Content.IntegrationTests/Tests/HumanInventoryUniformSlotsTest.cs @@ -56,9 +56,9 @@ public sealed class HumanInventoryUniformSlotsTest [Test] public async Task Test() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; - var testMap = await PoolManager.CreateTestMap(pairTracker); + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; + var testMap = await pair.CreateTestMap(); var coordinates = testMap.GridCoords; EntityUid human = default; @@ -132,7 +132,7 @@ await server.WaitAssertion(() => mapMan.DeleteMap(testMap.MapId); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } private static bool IsDescendant(EntityUid descendant, EntityUid parent, IEntityManager entManager) diff --git a/Content.IntegrationTests/Tests/Interaction/Click/InteractionSystemTests.cs b/Content.IntegrationTests/Tests/Interaction/Click/InteractionSystemTests.cs index 7e60abdeef0..b05f2732651 100644 --- a/Content.IntegrationTests/Tests/Interaction/Click/InteractionSystemTests.cs +++ b/Content.IntegrationTests/Tests/Interaction/Click/InteractionSystemTests.cs @@ -39,8 +39,8 @@ public sealed class InteractionSystemTests [Test] public async Task InteractionTest() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var sEntities = server.ResolveDependency(); var mapManager = server.ResolveDependency(); @@ -103,14 +103,14 @@ await server.WaitAssertion(() => }); testInteractionSystem.ClearHandlers(); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task InteractionObstructionTest() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var sEntities = server.ResolveDependency(); var mapManager = server.ResolveDependency(); @@ -174,14 +174,14 @@ await server.WaitAssertion(() => }); testInteractionSystem.ClearHandlers(); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task InteractionInRangeTest() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var sEntities = server.ResolveDependency(); var mapManager = server.ResolveDependency(); @@ -243,15 +243,15 @@ await server.WaitAssertion(() => }); testInteractionSystem.ClearHandlers(); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task InteractionOutOfRangeTest() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var sEntities = server.ResolveDependency(); var mapManager = server.ResolveDependency(); @@ -313,14 +313,14 @@ await server.WaitAssertion(() => }); testInteractionSystem.ClearHandlers(); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task InsideContainerInteractionBlockTest() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var sEntities = server.ResolveDependency(); var mapManager = server.ResolveDependency(); @@ -341,7 +341,7 @@ await server.WaitAssertion(() => EntityUid target = default; EntityUid item = default; EntityUid containerEntity = default; - IContainer container = null; + BaseContainer container = null; await server.WaitAssertion(() => { @@ -404,7 +404,7 @@ await server.WaitAssertion(() => }); testInteractionSystem.ClearHandlers(); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Reflect(false)] diff --git a/Content.IntegrationTests/Tests/Interaction/InRangeUnobstructed.cs b/Content.IntegrationTests/Tests/Interaction/InRangeUnobstructed.cs index af3552dc3ad..b8828763a23 100644 --- a/Content.IntegrationTests/Tests/Interaction/InRangeUnobstructed.cs +++ b/Content.IntegrationTests/Tests/Interaction/InRangeUnobstructed.cs @@ -26,8 +26,8 @@ public sealed class InRangeUnobstructed [Test] public async Task EntityEntityTest() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var sEntities = server.ResolveDependency(); var mapManager = server.ResolveDependency(); @@ -107,7 +107,7 @@ await server.WaitAssertion(() => }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs index bd5b95e08e9..1442c0b6702 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs @@ -13,10 +13,11 @@ using Content.Server.Power.Components; using Content.Server.Tools.Components; using Content.Shared.Atmos; +using Content.Shared.Construction; using Content.Shared.Construction.Prototypes; +using Content.Shared.DoAfter; using Content.Shared.Gravity; using Content.Shared.Item; -using Robust.Client.GameObjects; using Robust.Client.UserInterface; using Robust.Client.UserInterface.CustomControls; using Robust.Shared.GameObjects; @@ -40,13 +41,15 @@ protected async Task StartConstruction(string prototype, bool shouldSucceed = tr await Client.WaitPost(() => { - Assert.That(CConSys.TrySpawnGhost(proto, TargetCoords, Direction.South, out Target), + Assert.That(CConSys.TrySpawnGhost(proto, CEntMan.GetCoordinates(TargetCoords), Direction.South, out var clientTarget), Is.EqualTo(shouldSucceed)); if (!shouldSucceed) return; - var comp = CEntMan.GetComponent(Target!.Value); - ConstructionGhostId = comp.GhostId; + + var comp = CEntMan.GetComponent(clientTarget!.Value); + ClientTarget = clientTarget; + ConstructionGhostId = comp.Owner.Id; }); await RunTicks(1); @@ -61,12 +64,12 @@ protected async Task CraftItem(string prototype, bool shouldSucceed = true) // Please someone purge async construction code Task task = default!; - await Server.WaitPost(() => task = SConstruction.TryStartItemConstruction(prototype, Player)); + await Server.WaitPost(() => task = SConstruction.TryStartItemConstruction(prototype, SEntMan.GetEntity(Player))); Task? tickTask = null; while (!task.IsCompleted) { - tickTask = PoolManager.RunTicksSync(PairTracker.Pair, 1); + tickTask = Pair.RunTicksSync(1); await Task.WhenAny(task, tickTask); } @@ -86,10 +89,10 @@ protected async Task CraftItem(string prototype, bool shouldSucceed = true) [MemberNotNull(nameof(Target))] protected async Task SpawnTarget(string prototype) { - Target = EntityUid.Invalid; + Target = NetEntity.Invalid; await Server.WaitPost(() => { - Target = SEntMan.SpawnEntity(prototype, TargetCoords); + Target = SEntMan.GetNetEntity(SEntMan.SpawnEntity(prototype, SEntMan.GetCoordinates(TargetCoords))); }); await RunTicks(5); @@ -102,8 +105,9 @@ await Server.WaitPost(() => protected async Task StartDeconstruction(string prototype) { await SpawnTarget(prototype); - Assert.That(SEntMan.TryGetComponent(Target, out ConstructionComponent? comp)); - await Server.WaitPost(() => SConstruction.SetPathfindingTarget(Target!.Value, comp!.DeconstructionNode, comp)); + var serverTarget = SEntMan.GetEntity(Target); + Assert.That(SEntMan.TryGetComponent(serverTarget, out ConstructionComponent? comp)); + await Server.WaitPost(() => SConstruction.SetPathfindingTarget(serverTarget!.Value, comp!.DeconstructionNode, comp)); await RunTicks(5); } @@ -116,7 +120,7 @@ protected async Task DeleteHeldEntity() { await Server.WaitPost(() => { - Assert.That(HandSys.TryDrop(Player, null, false, true, Hands)); + Assert.That(HandSys.TryDrop(SEntMan.GetEntity(Player), null, false, true, Hands)); SEntMan.DeleteEntity(held); SLogger.Debug($"Deleting held entity"); }); @@ -161,16 +165,18 @@ await Server.WaitPost(() => } // spawn and pick up the new item - var item = await SpawnEntity(entity, PlayerCoords); + var item = await SpawnEntity(entity, SEntMan.GetCoordinates(PlayerCoords)); WelderComponent? welder = null; await Server.WaitPost(() => { - Assert.That(HandSys.TryPickup(Player, item, Hands.ActiveHand, false, false, false, Hands)); + var playerEnt = SEntMan.GetEntity(Player); + + Assert.That(HandSys.TryPickup(playerEnt, item, Hands.ActiveHand, false, false, false, Hands)); // turn on welders if (enableWelder && SEntMan.TryGetComponent(item, out welder) && !welder.Lit) - Assert.That(ToolSys.TryTurnWelderOn(item, Player, welder)); + Assert.That(ToolSys.TryTurnWelderOn(item, playerEnt, welder)); }); await RunTicks(1); @@ -184,9 +190,9 @@ await Server.WaitPost(() => /// /// Pick up an entity. Defaults to just deleting the previously held entity. /// - protected async Task Pickup(EntityUid? uid = null, bool deleteHeld = true) + protected async Task Pickup(NetEntity? entity = null, bool deleteHeld = true) { - uid ??= Target; + entity ??= Target; if (Hands.ActiveHand == null) { @@ -197,15 +203,17 @@ protected async Task Pickup(EntityUid? uid = null, bool deleteHeld = true) if (deleteHeld) await DeleteHeldEntity(); + var uid = SEntMan.GetEntity(entity); + if (!SEntMan.TryGetComponent(uid, out ItemComponent? item)) { - Assert.Fail($"Entity {uid} is not an item"); + Assert.Fail($"Entity {entity} is not an item"); return; } await Server.WaitPost(() => { - Assert.That(HandSys.TryPickup(Player, uid!.Value, Hands.ActiveHand, false, false, false, Hands, item)); + Assert.That(HandSys.TryPickup(SEntMan.GetEntity(Player), uid.Value, Hands.ActiveHand, false, false, false, Hands, item)); }); await RunTicks(1); @@ -225,7 +233,7 @@ protected async Task Drop() await Server.WaitPost(() => { - Assert.That(HandSys.TryDrop(Player, handsComp: Hands)); + Assert.That(HandSys.TryDrop(SEntMan.GetEntity(Player), handsComp: Hands)); }); await RunTicks(1); @@ -247,7 +255,7 @@ protected async Task UseInHand() await Server.WaitPost(() => { - InteractSys.UserInteraction(Player, SEntMan.GetComponent(target).Coordinates, target); + InteractSys.UserInteraction(SEntMan.GetEntity(Player), SEntMan.GetComponent(target).Coordinates, target); }); } @@ -274,7 +282,7 @@ protected async Task Interact(EntitySpecifier entity, bool shouldSucceed = true, // (e.g., servers attempt to assemble construction examine hints). if (Target != null) { - await Client.WaitPost(() => ExamineSys.DoExamine(Target.Value)); + await Client.WaitPost(() => ExamineSys.DoExamine(CEntMan.GetEntity(Target.Value))); } await PlaceInHands(entity); @@ -286,16 +294,19 @@ protected async Task Interact(EntitySpecifier entity, bool shouldSucceed = true, /// protected async Task Interact(bool shouldSucceed = true, bool awaitDoAfters = true) { - if (Target == null || !Target.Value.IsClientSide()) + var clientTarget = ClientTarget; + + if ((clientTarget?.IsValid() != true || CEntMan.Deleted(clientTarget)) && (Target == null || Target.Value.IsValid())) { - await Server.WaitPost(() => InteractSys.UserInteraction(Player, TargetCoords, Target)); + await Server.WaitPost(() => InteractSys.UserInteraction(SEntMan.GetEntity(Player), SEntMan.GetCoordinates(TargetCoords), SEntMan.GetEntity(Target))); await RunTicks(1); } else { // The entity is client-side, so attempt to start construction - var ghost = CEntMan.GetComponent(Target.Value); - await Client.WaitPost(() => CConSys.TryStartConstruction(ghost.GhostId)); + var clientEnt = ClientTarget ?? CEntMan.GetEntity(Target); + + await Client.WaitPost(() => CConSys.TryStartConstruction(clientEnt!.Value)); await RunTicks(5); } @@ -366,7 +377,7 @@ await Server.WaitPost(() => { foreach (var doAfter in doAfters) { - DoAfterSys.Cancel(Player, doAfter.Index, DoAfters); + DoAfterSys.Cancel(SEntMan.GetEntity(Player), doAfter.Index, DoAfters); } }); @@ -386,34 +397,33 @@ await Server.WaitPost(() => /// protected async Task CheckTargetChange(bool shouldSucceed) { - EntityUid newTarget = default; if (Target == null) return; - var target = Target.Value; + var target = Target.Value; await RunTicks(5); - if (target.IsClientSide()) + if (ClientTarget != null && CEntMan.IsClientSide(ClientTarget.Value)) { - Assert.That(CEntMan.Deleted(target), Is.EqualTo(shouldSucceed), + Assert.That(CEntMan.Deleted(ClientTarget.Value), Is.EqualTo(shouldSucceed), $"Construction ghost was {(shouldSucceed ? "not deleted" : "deleted")}."); if (shouldSucceed) { - Assert.That(CTestSystem.Ghosts.TryGetValue(ConstructionGhostId, out newTarget), + Assert.That(CTestSystem.Ghosts.TryGetValue(ConstructionGhostId, out var newWeh), $"Failed to get construction entity from ghost Id"); - await Client.WaitPost(() => CLogger.Debug($"Construction ghost {ConstructionGhostId} became entity {newTarget}")); - Target = newTarget; + await Client.WaitPost(() => CLogger.Debug($"Construction ghost {ConstructionGhostId} became entity {newWeh}")); + Target = newWeh; } } - if (STestSystem.EntChanges.TryGetValue(Target.Value, out newTarget)) + if (STestSystem.EntChanges.TryGetValue(Target.Value, out var newServerWeh)) { await Server.WaitPost( - () => SLogger.Debug($"Construction entity {Target.Value} changed to {newTarget}")); + () => SLogger.Debug($"Construction entity {Target.Value} changed to {newServerWeh}")); - Target = newTarget; + Target = newServerWeh; } if (Target != target) @@ -422,7 +432,26 @@ await Server.WaitPost( #region Asserts - protected void AssertPrototype(string? prototype, EntityUid? target = null) + protected void ClientAssertPrototype(string? prototype, NetEntity? target = null) + { + target ??= Target; + if (target == null) + { + Assert.Fail("No target specified"); + return; + } + + var meta = SEntMan.GetComponent(SEntMan.GetEntity(target.Value)); + Assert.That(meta.EntityPrototype?.ID, Is.EqualTo(prototype)); + } + + protected void ClientAssertPrototype(string? prototype, EntityUid? target) + { + var netEnt = CTestSystem.Ghosts[target.GetHashCode()]; + AssertPrototype(prototype, netEnt); + } + + protected void AssertPrototype(string? prototype, NetEntity? target = null) { target ??= Target; if (target == null) @@ -431,11 +460,11 @@ protected void AssertPrototype(string? prototype, EntityUid? target = null) return; } - var meta = SEntMan.GetComponent(target.Value); + var meta = SEntMan.GetComponent(SEntMan.GetEntity(target.Value)); Assert.That(meta.EntityPrototype?.ID, Is.EqualTo(prototype)); } - protected void AssertAnchored(bool anchored = true, EntityUid? target = null) + protected void AssertAnchored(bool anchored = true, NetEntity? target = null) { target ??= Target; if (target == null) @@ -444,8 +473,8 @@ protected void AssertAnchored(bool anchored = true, EntityUid? target = null) return; } - var sXform = SEntMan.GetComponent(target.Value); - var cXform = CEntMan.GetComponent(target.Value); + var sXform = SEntMan.GetComponent(SEntMan.GetEntity(target.Value)); + var cXform = CEntMan.GetComponent(CEntMan.GetEntity(target.Value)); Assert.Multiple(() => { @@ -454,7 +483,7 @@ protected void AssertAnchored(bool anchored = true, EntityUid? target = null) }); } - protected void AssertDeleted(bool deleted = true, EntityUid? target = null) + protected void AssertDeleted(bool deleted = true, NetEntity? target = null) { target ??= Target; if (target == null) @@ -465,15 +494,15 @@ protected void AssertDeleted(bool deleted = true, EntityUid? target = null) Assert.Multiple(() => { - Assert.That(SEntMan.Deleted(target), Is.EqualTo(deleted)); - Assert.That(CEntMan.Deleted(target), Is.EqualTo(deleted)); + Assert.That(SEntMan.Deleted(SEntMan.GetEntity(target)), Is.EqualTo(deleted)); + Assert.That(CEntMan.Deleted(CEntMan.GetEntity(target)), Is.EqualTo(deleted)); }); } /// /// Assert whether or not the target has the given component. /// - protected void AssertComp(bool hasComp = true, EntityUid? target = null) + protected void AssertComp(bool hasComp = true, NetEntity? target = null) { target ??= Target; if (target == null) @@ -482,24 +511,25 @@ protected void AssertComp(bool hasComp = true, EntityUid? target = null) return; } - Assert.That(SEntMan.HasComponent(target), Is.EqualTo(hasComp)); + Assert.That(SEntMan.HasComponent(SEntMan.GetEntity(target)), Is.EqualTo(hasComp)); } /// /// Check that the tile at the target position matches some prototype. /// - protected async Task AssertTile(string? proto, EntityCoordinates? coords = null) + protected async Task AssertTile(string? proto, NetCoordinates? coords = null) { var targetTile = proto == null ? Tile.Empty : new Tile(TileMan[proto].TileId); var tile = Tile.Empty; - var pos = (coords ?? TargetCoords).ToMap(SEntMan, Transform); + var serverCoords = SEntMan.GetCoordinates(coords ?? TargetCoords); + var pos = serverCoords.ToMap(SEntMan, Transform); await Server.WaitPost(() => { if (MapMan.TryFindGridAt(pos, out _, out var grid)) - tile = grid.GetTileRef(coords ?? TargetCoords).Tile; + tile = grid.GetTileRef(serverCoords).Tile; }); Assert.That(tile.TypeId, Is.EqualTo(targetTile.TypeId)); @@ -541,11 +571,12 @@ await Server.WaitPost(() => foreach (var ent in entities) { var transform = xformQuery.GetComponent(ent); + var netEnt = SEntMan.GetNetEntity(ent); if (ent == transform.MapUid || ent == transform.GridUid - || ent == Player - || ent == Target) + || netEnt == Player + || netEnt == Target) { toRemove.Add(ent); } @@ -646,31 +677,31 @@ protected IEnumerable ActiveDoAfters /// /// Convenience method to get components on the target. Returns SERVER-SIDE components. /// - protected T Comp(EntityUid? target = null) where T : IComponent + protected T Comp(NetEntity? target = null) where T : IComponent { target ??= Target; if (target == null) Assert.Fail("No target specified"); - return SEntMan.GetComponent(target!.Value); + return SEntMan.GetComponent(SEntMan.GetEntity(target!.Value)); } /// /// Set the tile at the target position to some prototype. /// - protected async Task SetTile(string? proto, EntityCoordinates? coords = null, MapGridComponent? grid = null) + protected async Task SetTile(string? proto, NetCoordinates? coords = null, MapGridComponent? grid = null) { var tile = proto == null ? Tile.Empty : new Tile(TileMan[proto].TileId); - var pos = (coords ?? TargetCoords).ToMap(SEntMan, Transform); + var pos = SEntMan.GetCoordinates(coords ?? TargetCoords).ToMap(SEntMan, Transform); await Server.WaitPost(() => { if (grid != null || MapMan.TryFindGridAt(pos, out var gridUid, out grid)) { - grid.SetTile(coords ?? TargetCoords, tile); + grid.SetTile(SEntMan.GetCoordinates(coords ?? TargetCoords), tile); return; } @@ -681,7 +712,7 @@ await Server.WaitPost(() => gridUid = grid.Owner; var gridXform = SEntMan.GetComponent(gridUid); Transform.SetWorldPosition(gridXform, pos.Position); - grid.SetTile(coords ?? TargetCoords, tile); + grid.SetTile(SEntMan.GetCoordinates(coords ?? TargetCoords), tile); if (!MapMan.TryFindGridAt(pos, out _, out grid)) Assert.Fail("Failed to create grid?"); @@ -699,7 +730,7 @@ protected async Task Delete(EntityUid uid) protected async Task RunTicks(int ticks) { - await PoolManager.RunTicksSync(PairTracker.Pair, ticks); + await Pair.RunTicksSync(ticks); } protected int SecondsToTicks(float seconds) @@ -743,7 +774,7 @@ protected async Task CloseBui(Enum key, EntityUid? _ = null) await RunTicks(15); } - protected bool TryGetBui(Enum key, [NotNullWhen(true)] out BoundUserInterface? bui, EntityUid? target = null, bool shouldSucceed = true) + protected bool TryGetBui(Enum key, [NotNullWhen(true)] out BoundUserInterface? bui, NetEntity? target = null, bool shouldSucceed = true) { bui = null; target ??= Target; @@ -753,17 +784,17 @@ protected bool TryGetBui(Enum key, [NotNullWhen(true)] out BoundUserInterface? b return false; } - if (!CEntMan.TryGetComponent(target, out var ui)) + if (!CEntMan.TryGetComponent(CEntMan.GetEntity(target), out var ui)) { if (shouldSucceed) - Assert.Fail($"Entity {SEntMan.ToPrettyString(target.Value)} does not have a bui component"); + Assert.Fail($"Entity {SEntMan.ToPrettyString(SEntMan.GetEntity(target.Value))} does not have a bui component"); return false; } if (!ui.OpenInterfaces.TryGetValue(key, out bui)) { if (shouldSucceed) - Assert.Fail($"Entity {SEntMan.ToPrettyString(target.Value)} does not have an open bui with key {key.GetType()}.{key}."); + Assert.Fail($"Entity {SEntMan.ToPrettyString(SEntMan.GetEntity(target.Value))} does not have an open bui with key {key.GetType()}.{key}."); return false; } @@ -909,7 +940,7 @@ protected bool TryFindWindow(Type type, [NotNullWhen(true)] out BaseWindow? wind #region Power - protected void ToggleNeedPower(EntityUid? target = null) + protected void ToggleNeedPower(NetEntity? target = null) { var comp = Comp(target); comp.NeedsPower = !comp.NeedsPower; @@ -963,8 +994,8 @@ await Server.WaitPost(() => protected async Task PressKey( BoundKeyFunction key, int ticks = 1, - EntityCoordinates? coordinates = null, - EntityUid cursorEntity = default) + NetCoordinates? coordinates = null, + NetEntity cursorEntity = default) { await SetKey(key, BoundKeyState.Down, coordinates, cursorEntity); await RunTicks(ticks); @@ -978,15 +1009,20 @@ protected async Task PressKey( protected async Task SetKey( BoundKeyFunction key, BoundKeyState state, - EntityCoordinates? coordinates = null, - EntityUid cursorEntity = default) + NetCoordinates? coordinates = null, + NetEntity cursorEntity = default) { var coords = coordinates ?? TargetCoords; ScreenCoordinates screen = default; var funcId = InputManager.NetworkBindMap.KeyFunctionID(key); - var message = new FullInputCmdMessage(CTiming.CurTick, CTiming.TickFraction, funcId, state, - coords, screen, cursorEntity); + var message = new ClientFullInputCmdMessage(CTiming.CurTick, CTiming.TickFraction, funcId) + { + State = state, + Coordinates = CEntMan.GetCoordinates(coords), + ScreenCoordinates = screen, + Uid = CEntMan.GetEntity(cursorEntity), + }; await Client.WaitPost(() => InputSystem.HandleInputCommand(ClientSession, key, message)); } diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs index df1563419fb..a3119a1c30c 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs @@ -3,8 +3,8 @@ using System.Numerics; using Content.Client.Construction; using Content.Client.Examine; +using Content.IntegrationTests.Pair; using Content.Server.Body.Systems; -using Content.Server.Mind; using Content.Server.Players; using Content.Server.Stack; using Content.Server.Tools; @@ -13,6 +13,7 @@ using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; using Content.Shared.Interaction; +using Content.Shared.Mind; using Robust.Client.Input; using Robust.Client.UserInterface; using Robust.Server.GameObjects; @@ -40,11 +41,11 @@ public abstract partial class InteractionTest { protected virtual string PlayerPrototype => "InteractionTestMob"; - protected PairTracker PairTracker = default!; - protected TestMapData MapData = default!; + protected TestPair Pair = default!; + protected TestMapData MapData => Pair.TestMap!; - protected RobustIntegrationTest.ServerIntegrationInstance Server => PairTracker.Pair.Server; - protected RobustIntegrationTest.ClientIntegrationInstance Client => PairTracker.Pair.Client; + protected RobustIntegrationTest.ServerIntegrationInstance Server => Pair.Server; + protected RobustIntegrationTest.ClientIntegrationInstance Client => Pair.Client; protected MapId MapId => MapData.MapId; @@ -52,22 +53,24 @@ public abstract partial class InteractionTest /// Target coordinates. Note that this does not necessarily correspond to the position of the /// entity. /// - protected EntityCoordinates TargetCoords; + protected NetCoordinates TargetCoords; /// /// Initial player coordinates. Note that this does not necessarily correspond to the position of the /// entity. /// - protected EntityCoordinates PlayerCoords; + protected NetCoordinates PlayerCoords; /// /// The player entity that performs all these interactions. Defaults to an admin-observer with 1 hand. /// - protected EntityUid Player; + protected NetEntity Player; protected ICommonSession ClientSession = default!; protected IPlayerSession ServerSession = default!; + public EntityUid? ClientTarget; + /// /// The current target entity. This is the default entity for various helper functions. /// @@ -76,7 +79,7 @@ public abstract partial class InteractionTest /// interactions often swap out entities, and there are helper methods that attempt to automatically upddate /// the target entity. See /// - protected EntityUid? Target; + protected NetEntity? Target; /// /// When attempting to start construction, this is the client-side ID of the construction ghost. @@ -140,7 +143,7 @@ public abstract partial class InteractionTest [SetUp] public virtual async Task Setup() { - PairTracker = await PoolManager.GetServerClient(new PoolSettings { Connected = true }); + Pair = await PoolManager.GetServerClient(new PoolSettings { Connected = true }); // server dependencies SEntMan = Server.ResolveDependency(); @@ -172,9 +175,9 @@ public virtual async Task Setup() CLogger = Client.ResolveDependency().RootSawmill; // Setup map. - MapData = await PoolManager.CreateTestMap(PairTracker); - PlayerCoords = MapData.GridCoords.Offset(new Vector2(0.5f, 0.5f)).WithEntityId(MapData.MapUid, Transform, SEntMan); - TargetCoords = MapData.GridCoords.Offset(new Vector2(1.5f, 0.5f)).WithEntityId(MapData.MapUid, Transform, SEntMan); + await Pair.CreateTestMap(); + PlayerCoords = SEntMan.GetNetCoordinates(MapData.GridCoords.Offset(new Vector2(0.5f, 0.5f)).WithEntityId(MapData.MapUid, Transform, SEntMan)); + TargetCoords = SEntMan.GetNetCoordinates(MapData.GridCoords.Offset(new Vector2(1.5f, 0.5f)).WithEntityId(MapData.MapUid, Transform, SEntMan)); await SetTile(Plating, grid: MapData.MapGrid); // Get player data @@ -191,18 +194,19 @@ await Server.WaitPost(() => { // Fuck you mind system I want an hour of my life back // Mind system is a time vampire - SEntMan.System().WipeMind(ServerSession.ContentData()?.Mind); + SEntMan.System().WipeMind(ServerSession.ContentData()?.Mind); old = cPlayerMan.LocalPlayer.ControlledEntity; - Player = SEntMan.SpawnEntity(PlayerPrototype, PlayerCoords); - Actor.Attach(Player, ServerSession); - Hands = SEntMan.GetComponent(Player); - DoAfters = SEntMan.GetComponent(Player); + Player = SEntMan.GetNetEntity(SEntMan.SpawnEntity(PlayerPrototype, SEntMan.GetCoordinates(PlayerCoords))); + var serverPlayerEnt = SEntMan.GetEntity(Player); + Actor.Attach(serverPlayerEnt, ServerSession); + Hands = SEntMan.GetComponent(serverPlayerEnt); + DoAfters = SEntMan.GetComponent(serverPlayerEnt); }); // Check player got attached. await RunTicks(5); - Assert.That(cPlayerMan.LocalPlayer.ControlledEntity, Is.EqualTo(Player)); + Assert.That(CEntMan.GetNetEntity(cPlayerMan.LocalPlayer.ControlledEntity), Is.EqualTo(Player)); // Delete old player entity. await Server.WaitPost(() => @@ -215,7 +219,7 @@ await Server.WaitPost(() => await Server.WaitPost(() => { var bodySystem = SEntMan.System(); - var hands = bodySystem.GetBodyChildrenOfType(Player, BodyPartType.Hand).ToArray(); + var hands = bodySystem.GetBodyChildrenOfType(SEntMan.GetEntity(Player), BodyPartType.Hand).ToArray(); for (var i = 1; i < hands.Length; i++) { @@ -225,11 +229,11 @@ await Server.WaitPost(() => }); // Final player asserts/checks. - await PoolManager.ReallyBeIdle(PairTracker.Pair, 5); + await Pair.ReallyBeIdle(5); Assert.Multiple(() => { - Assert.That(cPlayerMan.LocalPlayer.ControlledEntity, Is.EqualTo(Player)); - Assert.That(sPlayerMan.GetSessionByUserId(ClientSession.UserId).AttachedEntity, Is.EqualTo(Player)); + Assert.That(CEntMan.GetNetEntity(cPlayerMan.LocalPlayer.ControlledEntity), Is.EqualTo(Player)); + Assert.That(sPlayerMan.GetSessionByUserId(ClientSession.UserId).AttachedEntity, Is.EqualTo(SEntMan.GetEntity(Player))); }); } @@ -237,7 +241,7 @@ await Server.WaitPost(() => public async Task TearDownInternal() { await Server.WaitPost(() => MapMan.DeleteMap(MapId)); - await PairTracker.CleanReturnAsync(); + await Pair.CleanReturnAsync(); await TearDown(); } diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTestSystem.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTestSystem.cs index 810a0c24cc2..797f77e7210 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTestSystem.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTestSystem.cs @@ -12,8 +12,8 @@ namespace Content.IntegrationTests.Tests.Interaction; /// public sealed class InteractionTestSystem : EntitySystem { - public Dictionary Ghosts = new(); - public Dictionary EntChanges = new(); + public Dictionary Ghosts = new(); + public Dictionary EntChanges = new(); public override void Initialize() { @@ -23,7 +23,8 @@ public override void Initialize() private void OnEntChange(ConstructionChangeEntityEvent ev) { - EntChanges[ev.Old] = ev.New; + Assert.That(!IsClientSide(ev.Old) && !IsClientSide(ev.New)); + EntChanges[GetNetEntity(ev.Old)] = GetNetEntity(ev.New); } private void OnAck(AckStructureConstructionMessage ev) diff --git a/Content.IntegrationTests/Tests/Interaction/MovementTest.cs b/Content.IntegrationTests/Tests/Interaction/MovementTest.cs index 178439d8e29..553b031c2b7 100644 --- a/Content.IntegrationTests/Tests/Interaction/MovementTest.cs +++ b/Content.IntegrationTests/Tests/Interaction/MovementTest.cs @@ -27,16 +27,18 @@ public abstract class MovementTest : InteractionTest public override async Task Setup() { await base.Setup(); + var pCoords = SEntMan.GetCoordinates(PlayerCoords); + for (var i = -Tiles; i <= Tiles; i++) { - await SetTile(Plating, PlayerCoords.Offset(new Vector2(i, 0)), MapData.MapGrid); + await SetTile(Plating, SEntMan.GetNetCoordinates(pCoords.Offset(new Vector2(i, 0))), MapData.MapGrid); } AssertGridCount(1); if (AddWalls) { - await SpawnEntity("WallSolid", PlayerCoords.Offset(new Vector2(-Tiles, 0))); - await SpawnEntity("WallSolid", PlayerCoords.Offset(new Vector2(Tiles, 0))); + await SpawnEntity("WallSolid", pCoords.Offset(new Vector2(-Tiles, 0))); + await SpawnEntity("WallSolid", pCoords.Offset(new Vector2(Tiles, 0))); } await AddGravity(); @@ -46,7 +48,7 @@ public override async Task Setup() /// /// Get the relative horizontal between two entities. Defaults to using the target & player entity. /// - protected float Delta(EntityUid? target = null, EntityUid? other = null) + protected float Delta(NetEntity? target = null, NetEntity? other = null) { target ??= Target; if (target == null) @@ -55,7 +57,7 @@ protected float Delta(EntityUid? target = null, EntityUid? other = null) return 0; } - var delta = Transform.GetWorldPosition(target.Value) - Transform.GetWorldPosition(other ?? Player); + var delta = Transform.GetWorldPosition(SEntMan.GetEntity(target.Value)) - Transform.GetWorldPosition(SEntMan.GetEntity(other ?? Player)); return delta.X; } } diff --git a/Content.IntegrationTests/Tests/InventoryHelpersTest.cs b/Content.IntegrationTests/Tests/InventoryHelpersTest.cs index 381dfd288b5..4a07177f77a 100644 --- a/Content.IntegrationTests/Tests/InventoryHelpersTest.cs +++ b/Content.IntegrationTests/Tests/InventoryHelpersTest.cs @@ -41,8 +41,8 @@ public sealed class InventoryHelpersTest [Test] public async Task SpawnItemInSlotTest() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var sEntities = server.ResolveDependency(); var systemMan = sEntities.EntitySysManager; @@ -90,7 +90,7 @@ await server.WaitAssertion(() => sEntities.DeleteEntity(human); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/Lobby/CharacterCreationTest.cs b/Content.IntegrationTests/Tests/Lobby/CharacterCreationTest.cs index 50e340c1558..4abe2839fba 100644 --- a/Content.IntegrationTests/Tests/Lobby/CharacterCreationTest.cs +++ b/Content.IntegrationTests/Tests/Lobby/CharacterCreationTest.cs @@ -15,9 +15,9 @@ public sealed class CharacterCreationTest [Test] public async Task CreateDeleteCreateTest() { - await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings { InLobby = true }); - var server = pairTracker.Pair.Server; - var client = pairTracker.Pair.Client; + await using var pair = await PoolManager.GetServerClient(new PoolSettings { InLobby = true }); + var server = pair.Server; + var client = pair.Client; var clientNetManager = client.ResolveDependency(); var clientStateManager = client.ResolveDependency(); @@ -27,7 +27,7 @@ public async Task CreateDeleteCreateTest() // Need to run them in sync to receive the messages. - await PoolManager.RunTicksSync(pairTracker.Pair, 1); + await pair.RunTicksSync(1); await PoolManager.WaitUntil(client, () => clientStateManager.CurrentState is LobbyState, 600); @@ -109,7 +109,7 @@ await server.WaitAssertion(() => Assert.That(serverCharacters, Has.Count.EqualTo(2)); Assert.That(serverCharacters[1].MemberwiseEquals(profile)); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/Lobby/ServerReloginTest.cs b/Content.IntegrationTests/Tests/Lobby/ServerReloginTest.cs index b9ad58abb9b..3dc2075887a 100644 --- a/Content.IntegrationTests/Tests/Lobby/ServerReloginTest.cs +++ b/Content.IntegrationTests/Tests/Lobby/ServerReloginTest.cs @@ -10,13 +10,13 @@ public sealed class ServerReloginTest [Test] public async Task Relogin() { - await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings + await using var pair = await PoolManager.GetServerClient(new PoolSettings { Connected = true, DummyTicker = false }); - var server = pairTracker.Pair.Server; - var client = pairTracker.Pair.Client; + var server = pair.Server; + var client = pair.Client; var originalMaxPlayers = 0; string username = null; @@ -39,7 +39,7 @@ await client.WaitAssertion(() => clientNetManager.ClientDisconnect("For testing"); }); - await PoolManager.RunTicksSync(pairTracker.Pair, 20); + await pair.RunTicksSync(20); await server.WaitAssertion(() => { @@ -51,7 +51,7 @@ await client.WaitPost(() => clientNetManager.ClientConnect(null!, 0, username); }); - await PoolManager.RunTicksSync(pairTracker.Pair, 20); + await pair.RunTicksSync(20); await server.WaitAssertion(() => { @@ -63,6 +63,6 @@ await server.WaitAssertion(() => serverConfig.SetCVar(CCVars.SoftMaxPlayers, originalMaxPlayers); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } diff --git a/Content.IntegrationTests/Tests/LogErrorTest.cs b/Content.IntegrationTests/Tests/LogErrorTest.cs index b41f4c292d0..b8d8dba7cec 100644 --- a/Content.IntegrationTests/Tests/LogErrorTest.cs +++ b/Content.IntegrationTests/Tests/LogErrorTest.cs @@ -12,9 +12,9 @@ public sealed class LogErrorTest [Test] public async Task TestLogErrorCausesTestFailure() { - await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings { Connected = true }); - var server = pairTracker.Pair.Server; - var client = pairTracker.Pair.Client; + await using var pair = await PoolManager.GetServerClient(new PoolSettings { Connected = true }); + var server = pair.Server; + var client = pair.Client; var cfg = server.ResolveDependency(); var logmill = server.ResolveDependency().RootSawmill; @@ -29,6 +29,6 @@ public async Task TestLogErrorCausesTestFailure() await server.WaitPost(() => Assert.Throws(() => logmill.Error("test"))); await client.WaitPost(() => Assert.Throws(() => logmill.Error("test"))); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } diff --git a/Content.IntegrationTests/Tests/MachineBoardTest.cs b/Content.IntegrationTests/Tests/MachineBoardTest.cs index e18852a06c5..bd3a72f4c1d 100644 --- a/Content.IntegrationTests/Tests/MachineBoardTest.cs +++ b/Content.IntegrationTests/Tests/MachineBoardTest.cs @@ -31,8 +31,8 @@ public sealed class MachineBoardTest [Test] public async Task TestMachineBoardHasValidMachine() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var protoMan = server.ResolveDependency(); @@ -40,7 +40,7 @@ await server.WaitAssertion(() => { foreach (var p in protoMan.EnumeratePrototypes() .Where(p => !p.Abstract) - .Where(p => !pairTracker.Pair.IsTestPrototype(p)) + .Where(p => !pair.IsTestPrototype(p)) .Where(p => !_ignoredPrototypes.Contains(p.ID))) { if (!p.TryGetComponent(out var mbc)) @@ -60,7 +60,7 @@ await server.WaitAssertion(() => } }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } /// @@ -70,8 +70,8 @@ await server.WaitAssertion(() => [Test] public async Task TestComputerBoardHasValidComputer() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var protoMan = server.ResolveDependency(); @@ -79,7 +79,7 @@ await server.WaitAssertion(() => { foreach (var p in protoMan.EnumeratePrototypes() .Where(p => !p.Abstract) - .Where(p => !pairTracker.Pair.IsTestPrototype(p)) + .Where(p => !pair.IsTestPrototype(p)) .Where(p => !_ignoredPrototypes.Contains(p.ID))) { if (!p.TryGetComponent(out var cbc)) @@ -99,6 +99,6 @@ await server.WaitAssertion(() => } }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } diff --git a/Content.IntegrationTests/Tests/MaterialArbitrageTest.cs b/Content.IntegrationTests/Tests/MaterialArbitrageTest.cs index e2c7964d844..a2faef0dd4d 100644 --- a/Content.IntegrationTests/Tests/MaterialArbitrageTest.cs +++ b/Content.IntegrationTests/Tests/MaterialArbitrageTest.cs @@ -30,10 +30,10 @@ public sealed class MaterialArbitrageTest [Test] public async Task NoMaterialArbitrage() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; - var testMap = await PoolManager.CreateTestMap(pairTracker); + var testMap = await pair.CreateTestMap(); await server.WaitIdleAsync(); var entManager = server.ResolveDependency(); @@ -65,7 +65,7 @@ public async Task NoMaterialArbitrage() Dictionary constructionRecipes = new(); foreach (var proto in protoManager.EnumeratePrototypes()) { - if (proto.NoSpawn || proto.Abstract || pairTracker.Pair.IsTestPrototype(proto)) + if (proto.NoSpawn || proto.Abstract || pair.IsTestPrototype(proto)) continue; if (!proto.Components.TryGetValue(constructionName, out var destructible)) @@ -125,7 +125,7 @@ public async Task NoMaterialArbitrage() // Here we get the set of entities/materials spawned when destroying an entity. foreach (var proto in protoManager.EnumeratePrototypes()) { - if (proto.NoSpawn || proto.Abstract || pairTracker.Pair.IsTestPrototype(proto)) + if (proto.NoSpawn || proto.Abstract || pair.IsTestPrototype(proto)) continue; if (!proto.Components.TryGetValue(destructibleName, out var destructible)) @@ -290,7 +290,7 @@ public async Task NoMaterialArbitrage() Dictionary physicalCompositions = new(); foreach (var proto in protoManager.EnumeratePrototypes()) { - if (proto.NoSpawn || proto.Abstract || pairTracker.Pair.IsTestPrototype(proto)) + if (proto.NoSpawn || proto.Abstract || pair.IsTestPrototype(proto)) continue; if (!proto.Components.TryGetValue(compositionName, out var composition)) @@ -338,7 +338,7 @@ public async Task NoMaterialArbitrage() }); await server.WaitPost(() => mapManager.DeleteMap(testMap.MapId)); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); async Task GetSpawnedPrice(Dictionary ents) { diff --git a/Content.IntegrationTests/Tests/Materials/MaterialTests.cs b/Content.IntegrationTests/Tests/Materials/MaterialTests.cs index e45cf5dde7c..1caaf8a3ff9 100644 --- a/Content.IntegrationTests/Tests/Materials/MaterialTests.cs +++ b/Content.IntegrationTests/Tests/Materials/MaterialTests.cs @@ -20,15 +20,15 @@ public sealed class MaterialPrototypeSpawnsStackMaterialTest [Test] public async Task MaterialPrototypeSpawnsStackMaterial() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; await server.WaitIdleAsync(); var mapManager = server.ResolveDependency(); var prototypeManager = server.ResolveDependency(); var entityManager = server.ResolveDependency(); - var testMap = await PoolManager.CreateTestMap(pairTracker); + var testMap = await pair.CreateTestMap(); await server.WaitAssertion(() => { @@ -62,7 +62,7 @@ await server.WaitAssertion(() => mapManager.DeleteMap(testMap.MapId); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/Minds/GhostRoleTests.cs b/Content.IntegrationTests/Tests/Minds/GhostRoleTests.cs index 7fb56ba1aad..28e49645c97 100644 --- a/Content.IntegrationTests/Tests/Minds/GhostRoleTests.cs +++ b/Content.IntegrationTests/Tests/Minds/GhostRoleTests.cs @@ -1,10 +1,10 @@ #nullable enable using System.Linq; -using Content.Server.Ghost.Components; using Content.Server.Ghost.Roles; using Content.Server.Ghost.Roles.Components; -using Content.Server.Mind; using Content.Server.Players; +using Content.Shared.Ghost; +using Content.Shared.Mind; using Robust.Shared.Console; using Robust.Shared.GameObjects; using Robust.Shared.Map; @@ -31,42 +31,43 @@ public sealed class GhostRoleTests [Test] public async Task TakeRoleAndReturn() { - await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings + await using var pair = await PoolManager.GetServerClient(new PoolSettings { DummyTicker = false, Connected = true }); - var server = pairTracker.Pair.Server; - var client = pairTracker.Pair.Client; + var server = pair.Server; + var client = pair.Client; var entMan = server.ResolveDependency(); var sPlayerMan = server.ResolveDependency(); var conHost = client.ResolveDependency(); - var mindSystem = entMan.System(); + var mindSystem = entMan.System(); var session = sPlayerMan.ServerSessions.Single(); - var originalMind = session.ContentData()!.Mind!; + var originalMindId = session.ContentData()!.Mind!.Value; // Spawn player entity & attach EntityUid originalMob = default; await server.WaitPost(() => { originalMob = entMan.SpawnEntity(null, MapCoordinates.Nullspace); - mindSystem.TransferTo(originalMind, originalMob, true); + mindSystem.TransferTo(originalMindId, originalMob, true); }); // Check player got attached. - await PoolManager.RunTicksSync(pairTracker.Pair, 10); + await pair.RunTicksSync(10); Assert.That(session.AttachedEntity, Is.EqualTo(originalMob)); + var originalMind = entMan.GetComponent(originalMindId); Assert.That(originalMind.OwnedEntity, Is.EqualTo(originalMob)); Assert.Null(originalMind.VisitingEntity); // Use the ghost command conHost.ExecuteCommand("ghost"); - await PoolManager.RunTicksSync(pairTracker.Pair, 10); + await pair.RunTicksSync(10); var ghost = session.AttachedEntity; Assert.That(entMan.HasComponent(ghost)); Assert.That(ghost, Is.Not.EqualTo(originalMob)); - Assert.That(session.ContentData()?.Mind, Is.EqualTo(originalMind)); + Assert.That(session.ContentData()?.Mind, Is.EqualTo(originalMindId)); Assert.That(originalMind.OwnedEntity, Is.EqualTo(originalMob)); Assert.That(originalMind.VisitingEntity, Is.EqualTo(ghost)); @@ -82,9 +83,10 @@ await server.WaitPost(() => }); // Check player got attached to ghost role. - await PoolManager.RunTicksSync(pairTracker.Pair, 10); - var newMind = session.ContentData()!.Mind!; - Assert.That(newMind, Is.Not.EqualTo(originalMind)); + await pair.RunTicksSync(10); + var newMindId = session.ContentData()!.Mind!.Value; + var newMind = entMan.GetComponent(newMindId); + Assert.That(newMindId, Is.Not.EqualTo(originalMindId)); Assert.That(session.AttachedEntity, Is.EqualTo(ghostRole)); Assert.That(newMind.OwnedEntity, Is.EqualTo(ghostRole)); Assert.Null(newMind.VisitingEntity); @@ -96,18 +98,18 @@ await server.WaitPost(() => // Ghost again. conHost.ExecuteCommand("ghost"); - await PoolManager.RunTicksSync(pairTracker.Pair, 10); + await pair.RunTicksSync(10); var otherGhost = session.AttachedEntity; Assert.That(entMan.HasComponent(otherGhost)); Assert.That(otherGhost, Is.Not.EqualTo(originalMob)); Assert.That(otherGhost, Is.Not.EqualTo(ghostRole)); - Assert.That(session.ContentData()?.Mind, Is.EqualTo(newMind)); + Assert.That(session.ContentData()?.Mind, Is.EqualTo(newMindId)); Assert.That(newMind.OwnedEntity, Is.EqualTo(ghostRole)); Assert.That(newMind.VisitingEntity, Is.EqualTo(session.AttachedEntity)); // Next, control the original entity again: - await server.WaitPost(() => mindSystem.SetUserId(originalMind, session.UserId)); - await PoolManager.RunTicksSync(pairTracker.Pair, 10); + await server.WaitPost(() => mindSystem.SetUserId(originalMindId, session.UserId)); + await pair.RunTicksSync(10); Assert.That(session.AttachedEntity, Is.EqualTo(originalMob)); Assert.That(originalMind.OwnedEntity, Is.EqualTo(originalMob)); Assert.Null(originalMind.VisitingEntity); @@ -117,6 +119,6 @@ await server.WaitPost(() => Assert.Null(newMind.VisitingEntity); Assert.That(entMan.Deleted(otherGhost)); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } diff --git a/Content.IntegrationTests/Tests/Minds/MindTests.EntityDeletion.cs b/Content.IntegrationTests/Tests/Minds/MindTests.EntityDeletion.cs index 63bc52bbe80..9fc68ef93d4 100644 --- a/Content.IntegrationTests/Tests/Minds/MindTests.EntityDeletion.cs +++ b/Content.IntegrationTests/Tests/Minds/MindTests.EntityDeletion.cs @@ -1,7 +1,7 @@ using System.Linq; -using Content.Server.Ghost.Components; -using Content.Server.Mind; using Content.Server.Players; +using Content.Shared.Ghost; +using Content.Shared.Mind; using Robust.Server.Console; using Robust.Server.GameObjects; using Robust.Server.Player; @@ -21,17 +21,18 @@ public sealed partial class MindTests [Test] public async Task TestDeleteVisiting() { - await using var pairTracker = await SetupPair(); - var server = pairTracker.Pair.Server; + await using var pair = await SetupPair(); + var server = pair.Server; var entMan = server.ResolveDependency(); var playerMan = server.ResolveDependency(); - var mindSystem = entMan.EntitySysManager.GetEntitySystem(); + var mindSystem = entMan.EntitySysManager.GetEntitySystem(); EntityUid playerEnt = default; EntityUid visitEnt = default; - Mind mind = default!; + EntityUid mindId = default!; + MindComponent mind = default!; await server.WaitAssertion(() => { var player = playerMan.ServerSessions.Single(); @@ -39,9 +40,10 @@ await server.WaitAssertion(() => playerEnt = entMan.SpawnEntity(null, MapCoordinates.Nullspace); visitEnt = entMan.SpawnEntity(null, MapCoordinates.Nullspace); - mind = mindSystem.CreateMind(player.UserId); - mindSystem.TransferTo(mind, playerEnt); - mindSystem.Visit(mind, visitEnt); + mindId = mindSystem.CreateMind(player.UserId); + mind = entMan.GetComponent(mindId); + mindSystem.TransferTo(mindId, playerEnt); + mindSystem.Visit(mindId, visitEnt); Assert.Multiple(() => { @@ -50,9 +52,9 @@ await server.WaitAssertion(() => }); }); - await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await pair.RunTicksSync(5); await server.WaitPost(() => entMan.DeleteEntity(visitEnt)); - await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await pair.RunTicksSync(5); #pragma warning disable NUnit2045 // Interdependent assertions. Assert.That(mind.VisitingEntity, Is.Null); @@ -62,18 +64,18 @@ await server.WaitAssertion(() => // This used to throw so make sure it doesn't. await server.WaitPost(() => entMan.DeleteEntity(mind.OwnedEntity!.Value)); - await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await pair.RunTicksSync(5); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } // this is a variant of TestGhostOnDelete that just deletes the whole map. [Test] public async Task TestGhostOnDeleteMap() { - await using var pairTracker = await SetupPair(); - var server = pairTracker.Pair.Server; - var testMap = await PoolManager.CreateTestMap(pairTracker); + await using var pair = await SetupPair(dirty: true); + var server = pair.Server; + var testMap = await pair.CreateTestMap(); var coordinates = testMap.GridCoords; var entMan = server.ResolveDependency(); @@ -81,22 +83,24 @@ public async Task TestGhostOnDeleteMap() var playerMan = server.ResolveDependency(); var player = playerMan.ServerSessions.Single(); - var mindSystem = entMan.EntitySysManager.GetEntitySystem(); + var mindSystem = entMan.EntitySysManager.GetEntitySystem(); EntityUid playerEnt = default; - Mind mind = default!; + EntityUid mindId = default!; + MindComponent mind = default!; await server.WaitAssertion(() => { playerEnt = entMan.SpawnEntity(null, coordinates); - mind = player.ContentData()!.Mind!; - mindSystem.TransferTo(mind, playerEnt); + mindId = player.ContentData()!.Mind!.Value; + mind = entMan.GetComponent(mindId); + mindSystem.TransferTo(mindId, playerEnt); Assert.That(mind.CurrentEntity, Is.EqualTo(playerEnt)); }); - await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await pair.RunTicksSync(5); await server.WaitPost(() => mapManager.DeleteMap(testMap.MapId)); - await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await pair.RunTicksSync(5); await server.WaitAssertion(() => { @@ -106,7 +110,7 @@ await server.WaitAssertion(() => #pragma warning restore NUnit2045 }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } /// @@ -118,8 +122,8 @@ await server.WaitAssertion(() => public async Task TestGhostOnDelete() { // Client is needed to spawn session - await using var pairTracker = await SetupPair(dirty: true); - var server = pairTracker.Pair.Server; + await using var pair = await SetupPair(dirty: true); + var server = pair.Server; var entMan = server.ResolveDependency(); var playerMan = server.ResolveDependency(); @@ -130,11 +134,11 @@ public async Task TestGhostOnDelete() // Delete entity await server.WaitPost(() => entMan.DeleteEntity(player.AttachedEntity!.Value)); - await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await pair.RunTicksSync(5); Assert.That(entMan.HasComponent(player.AttachedEntity), "Player did not become a ghost"); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } /// @@ -150,13 +154,13 @@ public async Task TestGhostOnDelete() public async Task TestOriginalDeletedWhileGhostingKeepsGhost() { // Client is needed to spawn session - await using var pairTracker = await SetupPair(); - var server = pairTracker.Pair.Server; + await using var pair = await SetupPair(); + var server = pair.Server; var entMan = server.ResolveDependency(); var playerMan = server.ResolveDependency(); - var mindSystem = entMan.EntitySysManager.GetEntitySystem(); - var mind = GetMind(pairTracker.Pair); + var mindSystem = entMan.EntitySysManager.GetEntitySystem(); + var mind = GetMind(pair); var player = playerMan.ServerSessions.Single(); #pragma warning disable NUnit2045 // Interdependent assertions. @@ -169,34 +173,34 @@ public async Task TestOriginalDeletedWhileGhostingKeepsGhost() await server.WaitAssertion(() => { ghost = entMan.SpawnEntity("MobObserver", MapCoordinates.Nullspace); - mindSystem.Visit(mind, ghost); + mindSystem.Visit(mind.Id, ghost); }); Assert.Multiple(() => { Assert.That(player.AttachedEntity, Is.EqualTo(ghost)); Assert.That(entMan.HasComponent(player.AttachedEntity), "player is not a ghost"); - Assert.That(mind.VisitingEntity, Is.EqualTo(player.AttachedEntity)); - Assert.That(mind.OwnedEntity, Is.EqualTo(originalEntity)); + Assert.That(mind.Comp.VisitingEntity, Is.EqualTo(player.AttachedEntity)); + Assert.That(mind.Comp.OwnedEntity, Is.EqualTo(originalEntity)); }); - await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await pair.RunTicksSync(5); await server.WaitAssertion(() => entMan.DeleteEntity(originalEntity)); - await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await pair.RunTicksSync(5); Assert.That(entMan.Deleted(originalEntity)); // Check that the player is still in control of the ghost - mind = GetMind(pairTracker.Pair); + mind = GetMind(pair); Assert.That(!entMan.Deleted(ghost), "ghost has been deleted"); Assert.Multiple(() => { Assert.That(player.AttachedEntity, Is.EqualTo(ghost)); Assert.That(entMan.HasComponent(player.AttachedEntity)); - Assert.That(mind.VisitingEntity, Is.Null); - Assert.That(mind.OwnedEntity, Is.EqualTo(ghost)); + Assert.That(mind.Comp.VisitingEntity, Is.Null); + Assert.That(mind.Comp.OwnedEntity, Is.EqualTo(ghost)); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } /// @@ -208,22 +212,22 @@ await server.WaitAssertion(() => [Test] public async Task TestGhostToAghost() { - await using var pairTracker = await SetupPair(); - var server = pairTracker.Pair.Server; + await using var pair = await SetupPair(); + var server = pair.Server; var entMan = server.ResolveDependency(); var playerMan = server.ResolveDependency(); var serverConsole = server.ResolveDependency(); var player = playerMan.ServerSessions.Single(); - var ghost = await BecomeGhost(pairTracker.Pair); + var ghost = await BecomeGhost(pair); // Player is a normal ghost (not admin ghost). Assert.That(entMan.GetComponent(player.AttachedEntity!.Value).EntityPrototype?.ID, Is.Not.EqualTo("AdminObserver")); // Try to become an admin ghost await server.WaitAssertion(() => serverConsole.ExecuteCommand(player, "aghost")); - await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await pair.RunTicksSync(5); Assert.That(entMan.Deleted(ghost), "old ghost was not deleted"); Assert.Multiple(() => @@ -233,11 +237,13 @@ public async Task TestGhostToAghost() Assert.That(entMan.GetComponent(player.AttachedEntity!.Value).EntityPrototype?.ID, Is.EqualTo("AdminObserver")); }); - var mind = player.ContentData()?.Mind; - Assert.That(mind, Is.Not.Null); + var mindId = player.ContentData()?.Mind; + Assert.That(mindId, Is.Not.Null); + + var mind = entMan.GetComponent(mindId.Value); Assert.That(mind.VisitingEntity, Is.Null); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } /// @@ -250,8 +256,8 @@ public async Task TestGhostToAghost() public async Task TestGhostDeletedSpawnsNewGhost() { // Client is needed to spawn session - await using var pairTracker = await SetupPair(); - var server = pairTracker.Pair.Server; + await using var pair = await SetupPair(); + var server = pair.Server; var entMan = server.ResolveDependency(); var playerMan = server.ResolveDependency(); @@ -267,7 +273,7 @@ await server.WaitAssertion(() => entMan.DeleteEntity(player.AttachedEntity!.Value); }); - await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await pair.RunTicksSync(5); await server.WaitAssertion(() => { @@ -277,14 +283,14 @@ await server.WaitAssertion(() => Assert.That(entMan.HasComponent(ghost)); }); - await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await pair.RunTicksSync(5); await server.WaitAssertion(() => { serverConsole.ExecuteCommand(player, "aghost"); }); - await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await pair.RunTicksSync(5); await server.WaitAssertion(() => { @@ -295,6 +301,6 @@ await server.WaitAssertion(() => #pragma warning restore NUnit2045 }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } diff --git a/Content.IntegrationTests/Tests/Minds/MindTests.Helpers.cs b/Content.IntegrationTests/Tests/Minds/MindTests.Helpers.cs index 152715d471f..f71a6ad5f98 100644 --- a/Content.IntegrationTests/Tests/Minds/MindTests.Helpers.cs +++ b/Content.IntegrationTests/Tests/Minds/MindTests.Helpers.cs @@ -1,14 +1,14 @@ using System.Linq; -using Content.Server.Ghost.Components; -using Content.Server.Mind; +using Content.IntegrationTests.Pair; using Content.Server.Players; +using Content.Shared.Ghost; +using Content.Shared.Mind; using Robust.Server.GameObjects; using Robust.Server.Player; using Robust.Shared.Enums; using Robust.Shared.GameObjects; using Robust.Shared.Map; using Robust.Shared.Network; -using IPlayerManager = Robust.Server.Player.IPlayerManager; namespace Content.IntegrationTests.Tests.Minds; @@ -23,73 +23,76 @@ public sealed partial class MindTests /// the player's mind's current entity, likely because some previous test directly changed the players attached /// entity. /// - private static async Task SetupPair(bool dirty = false) + private static async Task SetupPair(bool dirty = false) { - var pairTracker = await PoolManager.GetServerClient(new PoolSettings + var pair = await PoolManager.GetServerClient(new PoolSettings { DummyTicker = false, Connected = true, Dirty = dirty }); - var pair = pairTracker.Pair; var entMan = pair.Server.ResolveDependency(); var playerMan = pair.Server.ResolveDependency(); - var mindSys = entMan.System(); + var mindSys = entMan.System(); var player = playerMan.ServerSessions.Single(); EntityUid entity = default; - Mind mind = default!; + EntityUid mindId = default!; + MindComponent mind = default!; await pair.Server.WaitPost(() => { entity = entMan.SpawnEntity(null, MapCoordinates.Nullspace); - mind = mindSys.CreateMind(player.UserId); - mindSys.TransferTo(mind, entity); + mindId = mindSys.CreateMind(player.UserId); + mind = entMan.GetComponent(mindId); + mindSys.TransferTo(mindId, entity); }); - await PoolManager.RunTicksSync(pair, 5); + await pair.RunTicksSync(5); Assert.Multiple(() => { - Assert.That(player.ContentData()?.Mind, Is.EqualTo(mind)); + Assert.That(player.ContentData()?.Mind, Is.EqualTo(mindId)); Assert.That(player.AttachedEntity, Is.EqualTo(entity)); Assert.That(player.AttachedEntity, Is.EqualTo(mind.CurrentEntity), "Player is not attached to the mind's current entity."); Assert.That(entMan.EntityExists(mind.OwnedEntity), "The mind's current entity does not exist"); Assert.That(mind.VisitingEntity == null || entMan.EntityExists(mind.VisitingEntity), "The minds visited entity does not exist."); }); - return pairTracker; + return pair; } - private static async Task BecomeGhost(Pair pair, bool visit = false) + private static async Task BecomeGhost(TestPair pair, bool visit = false) { var entMan = pair.Server.ResolveDependency(); var playerMan = pair.Server.ResolveDependency(); - var mindSys = entMan.System(); + var mindSys = entMan.System(); EntityUid ghostUid = default; - Mind mind = default!; + EntityUid mindId = default!; + MindComponent mind = default!; var player = playerMan.ServerSessions.Single(); await pair.Server.WaitAssertion(() => { var oldUid = player.AttachedEntity; ghostUid = entMan.SpawnEntity("MobObserver", MapCoordinates.Nullspace); - mind = mindSys.GetMind(player.UserId); - Assert.That(mind, Is.Not.Null); + mindId = mindSys.GetMind(player.UserId)!.Value; + Assert.That(mindId, Is.Not.EqualTo(default(EntityUid))); + mind = entMan.GetComponent(mindId); if (visit) { - mindSys.Visit(mind, ghostUid); + mindSys.Visit(mindId, ghostUid); return; } - mindSys.TransferTo(mind, ghostUid); + mindSys.TransferTo(mindId, ghostUid); if (oldUid != null) entMan.DeleteEntity(oldUid.Value); }); - await PoolManager.RunTicksSync(pair, 5); + await pair.RunTicksSync(5); Assert.Multiple(() => { Assert.That(entMan.HasComponent(ghostUid)); @@ -103,7 +106,7 @@ await pair.Server.WaitAssertion(() => return ghostUid; } - private static async Task VisitGhost(Pair pair, bool _ = false) + private static async Task VisitGhost(Pair.TestPair pair, bool _ = false) { return await BecomeGhost(pair, visit: true); } @@ -111,15 +114,16 @@ private static async Task VisitGhost(Pair pair, bool _ = false) /// /// Get the player's current mind and check that the entities exists. /// - private static Mind GetMind(Pair pair) + private static (EntityUid Id, MindComponent Comp) GetMind(Pair.TestPair pair) { var playerMan = pair.Server.ResolveDependency(); var entMan = pair.Server.ResolveDependency(); var player = playerMan.ServerSessions.SingleOrDefault(); Assert.That(player, Is.Not.Null); - var mind = player.ContentData()!.Mind; - Assert.That(mind, Is.Not.Null); + var mindId = player.ContentData()!.Mind!.Value; + Assert.That(mindId, Is.Not.EqualTo(default(EntityUid))); + var mind = entMan.GetComponent(mindId); Assert.Multiple(() => { Assert.That(player.AttachedEntity, Is.EqualTo(mind.CurrentEntity), "Player is not attached to the mind's current entity."); @@ -127,21 +131,23 @@ private static Mind GetMind(Pair pair) Assert.That(mind.VisitingEntity == null || entMan.EntityExists(mind.VisitingEntity), "The minds visited entity does not exist."); }); - return mind; + return (mindId, mind); } - private static async Task Disconnect(Pair pair) + private static async Task Disconnect(Pair.TestPair pair) { var netManager = pair.Client.ResolveDependency(); var playerMan = pair.Server.ResolveDependency(); + var entMan = pair.Server.ResolveDependency(); var player = playerMan.ServerSessions.Single(); - var mind = player.ContentData()!.Mind; + var mindId = player.ContentData()!.Mind!.Value; + var mind = entMan.GetComponent(mindId); await pair.Client.WaitAssertion(() => { netManager.ClientDisconnect("Disconnect command used."); }); - await PoolManager.RunTicksSync(pair, 5); + await pair.RunTicksSync(5); Assert.Multiple(() => { @@ -151,7 +157,7 @@ await pair.Client.WaitAssertion(() => }); } - private static async Task Connect(Pair pair, string username) + private static async Task Connect(Pair.TestPair pair, string username) { var netManager = pair.Client.ResolveDependency(); var playerMan = pair.Server.ResolveDependency(); @@ -160,13 +166,13 @@ private static async Task Connect(Pair pair, string username) await Task.WhenAll(pair.Client.WaitIdleAsync(), pair.Client.WaitIdleAsync()); pair.Client.SetConnectTarget(pair.Server); await pair.Client.WaitPost(() => netManager.ClientConnect(null!, 0, username)); - await PoolManager.RunTicksSync(pair, 5); + await pair.RunTicksSync(5); var player = playerMan.ServerSessions.Single(); Assert.That(player.Status, Is.EqualTo(SessionStatus.InGame)); } - private static async Task DisconnectReconnect(Pair pair) + private static async Task DisconnectReconnect(Pair.TestPair pair) { var playerMan = pair.Server.ResolveDependency(); var player = playerMan.ServerSessions.Single(); diff --git a/Content.IntegrationTests/Tests/Minds/MindTests.ReconnectTests.cs b/Content.IntegrationTests/Tests/Minds/MindTests.ReconnectTests.cs index 49158e06e30..ea2110c03a6 100644 --- a/Content.IntegrationTests/Tests/Minds/MindTests.ReconnectTests.cs +++ b/Content.IntegrationTests/Tests/Minds/MindTests.ReconnectTests.cs @@ -1,6 +1,6 @@ using System.Linq; -using Content.Server.Ghost.Components; -using Content.Server.Mind; +using Content.Shared.Ghost; +using Content.Shared.Mind; using Robust.Server.Player; using Robust.Shared.GameObjects; using Robust.Shared.Map; @@ -17,8 +17,7 @@ public sealed partial class MindTests [Test] public async Task TestGhostsCanReconnect() { - await using var pairTracker = await SetupPair(); - var pair = pairTracker.Pair; + await using var pair = await SetupPair(); var entMan = pair.Server.ResolveDependency(); var mind = GetMind(pair); @@ -30,11 +29,11 @@ public async Task TestGhostsCanReconnect() { Assert.That(GetMind(pair), Is.EqualTo(mind)); Assert.That(entMan.Deleted(ghost)); - Assert.That(entMan.HasComponent(mind.OwnedEntity)); - Assert.That(mind.VisitingEntity, Is.Null); + Assert.That(entMan.HasComponent(mind.Comp.OwnedEntity)); + Assert.That(mind.Comp.VisitingEntity, Is.Null); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } // This test will do the following: @@ -45,8 +44,7 @@ public async Task TestGhostsCanReconnect() [Test] public async Task TestDeletedCanReconnect() { - await using var pairTracker = await SetupPair(); - var pair = pairTracker.Pair; + await using var pair = await SetupPair(); var entMan = pair.Server.ResolveDependency(); var mind = GetMind(pair); @@ -54,11 +52,11 @@ public async Task TestDeletedCanReconnect() var player = playerMan.ServerSessions.Single(); var name = player.Name; var user = player.UserId; - Assert.That(mind.OwnedEntity, Is.Not.Null); - var entity = mind.OwnedEntity.Value; + Assert.That(mind.Comp.OwnedEntity, Is.Not.Null); + var entity = mind.Comp.OwnedEntity.Value; // Player is not a ghost - Assert.That(!entMan.HasComponent(mind.CurrentEntity)); + Assert.That(!entMan.HasComponent(mind.Comp.CurrentEntity)); // Disconnect await Disconnect(pair); @@ -69,7 +67,7 @@ public async Task TestDeletedCanReconnect() Assert.Multiple(() => { Assert.That(entMan.Deleted(entity)); - Assert.That(mind.OwnedEntity, Is.Null); + Assert.That(mind.Comp.OwnedEntity, Is.Null); }); // Reconnect @@ -81,11 +79,11 @@ public async Task TestDeletedCanReconnect() // Player is now a new ghost entity Assert.That(GetMind(pair), Is.EqualTo(mind)); - Assert.That(mind.OwnedEntity, Is.Not.EqualTo(entity)); - Assert.That(entMan.HasComponent(mind.OwnedEntity)); + Assert.That(mind.Comp.OwnedEntity, Is.Not.EqualTo(entity)); + Assert.That(entMan.HasComponent(mind.Comp.OwnedEntity)); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } // This test will do the following: @@ -96,12 +94,11 @@ public async Task TestDeletedCanReconnect() [Test] public async Task TestVisitingGhostReconnect() { - await using var pairTracker = await SetupPair(); - var pair = pairTracker.Pair; + await using var pair = await SetupPair(); var entMan = pair.Server.ResolveDependency(); var mind = GetMind(pair); - var original = mind.CurrentEntity; + var original = mind.Comp.CurrentEntity; var ghost = await VisitGhost(pair); await DisconnectReconnect(pair); @@ -109,12 +106,12 @@ public async Task TestVisitingGhostReconnect() Assert.Multiple(() => { Assert.That(mind, Is.EqualTo(GetMind(pair))); - Assert.That(mind.CurrentEntity, Is.EqualTo(original)); + Assert.That(mind.Comp.CurrentEntity, Is.EqualTo(original)); Assert.That(entMan.Deleted(original), Is.False); Assert.That(entMan.Deleted(ghost)); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } // This test will do the following: @@ -125,21 +122,20 @@ public async Task TestVisitingGhostReconnect() [Test] public async Task TestVisitingReconnect() { - await using var pairTracker = await SetupPair(); - var pair = pairTracker.Pair; + await using var pair = await SetupPair(); var entMan = pair.Server.ResolveDependency(); - var mindSys = entMan.System(); + var mindSys = entMan.System(); var mind = GetMind(pair); // Make player visit a new mob - var original = mind.CurrentEntity; + var original = mind.Comp.CurrentEntity; EntityUid visiting = default; await pair.Server.WaitAssertion(() => { visiting = entMan.SpawnEntity(null, MapCoordinates.Nullspace); - mindSys.Visit(mind, visiting); + mindSys.Visit(mind.Id, visiting); }); - await PoolManager.RunTicksSync(pair, 5); + await pair.RunTicksSync(5); await DisconnectReconnect(pair); @@ -149,9 +145,9 @@ await pair.Server.WaitAssertion(() => Assert.That(GetMind(pair), Is.EqualTo(mind)); Assert.That(entMan.Deleted(original), Is.False); Assert.That(entMan.Deleted(visiting), Is.False); - Assert.That(mind.CurrentEntity, Is.EqualTo(visiting)); + Assert.That(mind.Comp.CurrentEntity, Is.EqualTo(visiting)); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } diff --git a/Content.IntegrationTests/Tests/Minds/MindTests.cs b/Content.IntegrationTests/Tests/Minds/MindTests.cs index 4899f22366b..fb2fef43edb 100644 --- a/Content.IntegrationTests/Tests/Minds/MindTests.cs +++ b/Content.IntegrationTests/Tests/Minds/MindTests.cs @@ -3,22 +3,23 @@ using Content.Server.Ghost; using Content.Server.Ghost.Roles; using Content.Server.Ghost.Roles.Components; -using Content.Server.Mind; using Content.Server.Mind.Commands; -using Content.Server.Mind.Components; using Content.Server.Players; using Content.Server.Roles; using Content.Shared.Damage; using Content.Shared.Damage.Prototypes; using Content.Shared.FixedPoint; +using Content.Shared.Mind; +using Content.Shared.Mind.Components; using Content.Shared.Roles; +using Content.Shared.Roles.Jobs; using Robust.Server.Console; using Robust.Server.GameObjects; +using Robust.Server.Player; using Robust.Shared.GameObjects; using Robust.Shared.IoC; using Robust.Shared.Map; using Robust.Shared.Prototypes; -using IPlayerManager = Robust.Server.Player.IPlayerManager; namespace Content.IntegrationTests.Tests.Minds; @@ -54,73 +55,75 @@ public sealed partial class MindTests [Test] public async Task TestCreateAndTransferMindToNewEntity() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var entMan = server.ResolveDependency(); await server.WaitAssertion(() => { - var mindSystem = entMan.EntitySysManager.GetEntitySystem(); + var mindSystem = entMan.EntitySysManager.GetEntitySystem(); var entity = entMan.SpawnEntity(null, new MapCoordinates()); var mindComp = entMan.EnsureComponent(entity); - var mind = mindSystem.CreateMind(null); + var mindId = mindSystem.CreateMind(null); + var mind = entMan.GetComponent(mindId); Assert.That(mind.UserId, Is.EqualTo(null)); - mindSystem.TransferTo(mind, entity); - Assert.That(mindSystem.GetMind(entity, mindComp), Is.EqualTo(mind)); + mindSystem.TransferTo(mindId, entity, mind: mind); + Assert.That(mindSystem.GetMind(entity, mindComp), Is.EqualTo(mindId)); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task TestReplaceMind() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var entMan = server.ResolveDependency(); await server.WaitAssertion(() => { - var mindSystem = entMan.EntitySysManager.GetEntitySystem(); + var mindSystem = entMan.EntitySysManager.GetEntitySystem(); var entity = entMan.SpawnEntity(null, new MapCoordinates()); var mindComp = entMan.EnsureComponent(entity); - var mind = mindSystem.CreateMind(null); - mindSystem.TransferTo(mind, entity); - Assert.That(mindSystem.GetMind(entity, mindComp), Is.EqualTo(mind)); + var mindId = mindSystem.CreateMind(null); + mindSystem.TransferTo(mindId, entity); + Assert.That(mindSystem.GetMind(entity, mindComp), Is.EqualTo(mindId)); var mind2 = mindSystem.CreateMind(null); mindSystem.TransferTo(mind2, entity); Assert.Multiple(() => { Assert.That(mindSystem.GetMind(entity, mindComp), Is.EqualTo(mind2)); + var mind = entMan.GetComponent(mindId); Assert.That(mind.OwnedEntity, Is.Not.EqualTo(entity)); }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task TestEntityDeadWhenGibbed() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var entMan = server.ResolveDependency(); var protoMan = server.ResolveDependency(); EntityUid entity = default!; MindContainerComponent mindContainerComp = default!; - Mind mind = default!; - var mindSystem = entMan.EntitySysManager.GetEntitySystem(); + EntityUid mindId = default!; + var mindSystem = entMan.EntitySysManager.GetEntitySystem(); var damageableSystem = entMan.EntitySysManager.GetEntitySystem(); await server.WaitAssertion(() => @@ -128,17 +131,18 @@ await server.WaitAssertion(() => entity = entMan.SpawnEntity("MindTestEntityDamageable", new MapCoordinates()); mindContainerComp = entMan.EnsureComponent(entity); - mind = mindSystem.CreateMind(null); + mindId = mindSystem.CreateMind(null); - mindSystem.TransferTo(mind, entity); + mindSystem.TransferTo(mindId, entity); Assert.Multiple(() => { - Assert.That(mindSystem.GetMind(entity, mindContainerComp), Is.EqualTo(mind)); + Assert.That(mindSystem.GetMind(entity, mindContainerComp), Is.EqualTo(mindId)); + var mind = entMan.GetComponent(mindId); Assert.That(!mindSystem.IsCharacterDeadPhysically(mind)); }); }); - await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await pair.RunTicksSync(5); await server.WaitAssertion(() => { @@ -149,30 +153,31 @@ await server.WaitAssertion(() => } damageableSystem.SetDamage(entity, damageable, new DamageSpecifier(prototype, FixedPoint2.New(401))); - Assert.That(mindSystem.GetMind(entity, mindContainerComp), Is.EqualTo(mind)); + Assert.That(mindSystem.GetMind(entity, mindContainerComp), Is.EqualTo(mindId)); }); - await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await pair.RunTicksSync(5); await server.WaitAssertion(() => { + var mind = entMan.GetComponent(mindId); Assert.That(mindSystem.IsCharacterDeadPhysically(mind)); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task TestMindTransfersToOtherEntity() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var entMan = server.ResolveDependency(); await server.WaitAssertion(() => { - var mindSystem = entMan.EntitySysManager.GetEntitySystem(); + var mindSystem = entMan.EntitySysManager.GetEntitySystem(); var entity = entMan.SpawnEntity(null, new MapCoordinates()); var targetEntity = entMan.SpawnEntity(null, new MapCoordinates()); @@ -193,149 +198,154 @@ await server.WaitAssertion(() => }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task TestOwningPlayerCanBeChanged() { - await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings + await using var pair = await PoolManager.GetServerClient(new PoolSettings { Connected = true, DummyTicker = false }); - var server = pairTracker.Pair.Server; + var server = pair.Server; var entMan = server.ResolveDependency(); - await PoolManager.RunTicksSync(pairTracker.Pair, 5); - var mindSystem = entMan.EntitySysManager.GetEntitySystem(); - var originalMind = GetMind(pairTracker.Pair); - var userId = originalMind.UserId; + await pair.RunTicksSync(5); + var mindSystem = entMan.EntitySysManager.GetEntitySystem(); + var originalMind = GetMind(pair); + var userId = originalMind.Comp.UserId; - Mind mind = default!; + EntityUid mindId = default!; + MindComponent mind = default!; await server.WaitAssertion(() => { var entity = entMan.SpawnEntity(null, new MapCoordinates()); var mindComp = entMan.EnsureComponent(entity); entMan.DirtyEntity(entity); - mind = mindSystem.CreateMind(null); - mindSystem.TransferTo(mind, entity); + mindId = mindSystem.CreateMind(null); + mind = entMan.GetComponent(mindId); + mindSystem.TransferTo(mindId, entity); Assert.Multiple(() => { - Assert.That(mindSystem.GetMind(entity, mindComp), Is.EqualTo(mind)); + Assert.That(mindSystem.GetMind(entity, mindComp), Is.EqualTo(mindId)); Assert.That(mindComp.HasMind); }); }); - await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await pair.RunTicksSync(5); await server.WaitAssertion(() => { - mindSystem.SetUserId(mind, userId); + mindSystem.SetUserId(mindId, userId); Assert.Multiple(() => { Assert.That(mind.UserId, Is.EqualTo(userId)); - Assert.That(originalMind.UserId, Is.EqualTo(null)); + Assert.That(originalMind.Comp.UserId, Is.EqualTo(null)); }); - mindSystem.SetUserId(originalMind, userId); + mindSystem.SetUserId(originalMind.Id, userId); Assert.Multiple(() => { Assert.That(mind.UserId, Is.EqualTo(null)); - Assert.That(originalMind.UserId, Is.EqualTo(userId)); + Assert.That(originalMind.Comp.UserId, Is.EqualTo(userId)); }); }); - await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await pair.RunTicksSync(5); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task TestAddRemoveHasRoles() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var entMan = server.ResolveDependency(); await server.WaitAssertion(() => { - var mindSystem = entMan.EntitySysManager.GetEntitySystem(); + var mindSystem = entMan.EntitySysManager.GetEntitySystem(); + var roleSystem = entMan.EntitySysManager.GetEntitySystem(); var entity = entMan.SpawnEntity(null, new MapCoordinates()); var mindComp = entMan.EnsureComponent(entity); - var mind = mindSystem.CreateMind(null); + var mindId = mindSystem.CreateMind(null); + var mind = entMan.EnsureComponent(mindId); Assert.That(mind.UserId, Is.EqualTo(null)); - mindSystem.TransferTo(mind, entity); - Assert.That(mindSystem.GetMind(entity, mindComp), Is.EqualTo(mind)); + mindSystem.TransferTo(mindId, entity); + Assert.That(mindSystem.GetMind(entity, mindComp), Is.EqualTo(mindId)); Assert.Multiple(() => { - Assert.That(mindSystem.HasRole(mind), Is.False); - Assert.That(mindSystem.HasRole(mind), Is.False); + Assert.That(roleSystem.MindHasRole(mindId), Is.False); + Assert.That(roleSystem.MindHasRole(mindId), Is.False); }); - var traitorRole = new TraitorRole(mind, new AntagPrototype()); + var traitorRole = new TraitorRoleComponent(); - mindSystem.AddRole(mind, traitorRole); + roleSystem.MindAddRole(mindId, traitorRole); Assert.Multiple(() => { - Assert.That(mindSystem.HasRole(mind)); - Assert.That(mindSystem.HasRole(mind), Is.False); + Assert.That(roleSystem.MindHasRole(mindId)); + Assert.That(roleSystem.MindHasRole(mindId), Is.False); }); - var jobRole = new Job(mind, new JobPrototype()); + var jobRole = new JobComponent(); - mindSystem.AddRole(mind, jobRole); + roleSystem.MindAddRole(mindId, jobRole); Assert.Multiple(() => { - Assert.That(mindSystem.HasRole(mind)); - Assert.That(mindSystem.HasRole(mind)); + Assert.That(roleSystem.MindHasRole(mindId)); + Assert.That(roleSystem.MindHasRole(mindId)); }); - mindSystem.RemoveRole(mind, traitorRole); + roleSystem.MindRemoveRole(mindId); Assert.Multiple(() => { - Assert.That(mindSystem.HasRole(mind), Is.False); - Assert.That(mindSystem.HasRole(mind)); + Assert.That(roleSystem.MindHasRole(mindId), Is.False); + Assert.That(roleSystem.MindHasRole(mindId)); }); - mindSystem.RemoveRole(mind, jobRole); + roleSystem.MindRemoveRole(mindId); Assert.Multiple(() => { - Assert.That(mindSystem.HasRole(mind), Is.False); - Assert.That(mindSystem.HasRole(mind), Is.False); + Assert.That(roleSystem.MindHasRole(mindId), Is.False); + Assert.That(roleSystem.MindHasRole(mindId), Is.False); }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task TestPlayerCanGhost() { // Client is needed to spawn session - await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings { Connected = true }); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(new PoolSettings { Connected = true }); + var server = pair.Server; var entMan = server.ResolveDependency(); var playerMan = server.ResolveDependency(); - var mindSystem = entMan.EntitySysManager.GetEntitySystem(); + var mindSystem = entMan.EntitySysManager.GetEntitySystem(); var ghostSystem = entMan.EntitySysManager.GetEntitySystem(); EntityUid entity = default!; - Mind mind = default!; + EntityUid mindId = default!; + MindComponent mind = default!; var player = playerMan.ServerSessions.Single(); await server.WaitAssertion(() => @@ -343,25 +353,27 @@ await server.WaitAssertion(() => entity = entMan.SpawnEntity(null, new MapCoordinates()); var mindComp = entMan.EnsureComponent(entity); - mind = mindSystem.CreateMind(player.UserId, "Mindy McThinker"); + mindId = mindSystem.CreateMind(player.UserId, "Mindy McThinker"); + mind = entMan.GetComponent(mindId); Assert.That(mind.UserId, Is.EqualTo(player.UserId)); - mindSystem.TransferTo(mind, entity); - Assert.That(mindSystem.GetMind(entity, mindComp), Is.EqualTo(mind)); + mindSystem.TransferTo(mindId, entity); + Assert.That(mindSystem.GetMind(entity, mindComp), Is.EqualTo(mindId)); }); - await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await pair.RunTicksSync(5); await server.WaitAssertion(() => { entMan.DeleteEntity(entity); }); - await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await pair.RunTicksSync(5); EntityUid mob = default!; - Mind mobMind = default!; + EntityUid mobMindId = default!; + MindComponent mobMind = default!; await server.WaitAssertion(() => { @@ -370,26 +382,29 @@ await server.WaitAssertion(() => mob = entMan.SpawnEntity(null, new MapCoordinates()); MakeSentientCommand.MakeSentient(mob, IoCManager.Resolve()); - mobMind = mindSystem.CreateMind(player.UserId, "Mindy McThinker the Second"); + mobMindId = mindSystem.CreateMind(player.UserId, "Mindy McThinker the Second"); + mobMind = entMan.GetComponent(mobMindId); - mindSystem.SetUserId(mobMind, player.UserId); - mindSystem.TransferTo(mobMind, mob); + mindSystem.SetUserId(mobMindId, player.UserId); + mindSystem.TransferTo(mobMindId, mob); }); - await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await pair.RunTicksSync(5); await server.WaitAssertion(() => { - var m = player.ContentData()?.Mind; - Assert.That(m, Is.Not.Null); + var mId = player.ContentData()?.Mind!.Value; + Assert.That(mId, Is.Not.Null); + Assert.That(mId, Is.Not.EqualTo(default(EntityUid))); + var m = entMan.GetComponent(mId!.Value); Assert.Multiple(() => { Assert.That(m!.OwnedEntity, Is.EqualTo(mob)); - Assert.That(m, Is.Not.EqualTo(mind)); + Assert.That(mId, Is.Not.EqualTo(mindId)); }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } // TODO Implement @@ -401,13 +416,13 @@ public async Task TestPlayerCanReturnFromGhostWhenDead() [Test] public async Task TestGhostDoesNotInfiniteLoop() { - await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings + await using var pair = await PoolManager.GetServerClient(new PoolSettings { DummyTicker = false, Connected = true, Dirty = true }); - var server = pairTracker.Pair.Server; + var server = pair.Server; var entMan = server.ResolveDependency(); var playerMan = server.ResolveDependency(); @@ -416,7 +431,8 @@ public async Task TestGhostDoesNotInfiniteLoop() //EntityUid entity = default!; EntityUid ghostRole = default!; EntityUid ghost = default!; - Mind mind = default!; + EntityUid mindId = default!; + MindComponent mind = default!; var player = playerMan.ServerSessions.Single(); await server.WaitAssertion(() => @@ -434,21 +450,22 @@ await server.WaitAssertion(() => var data = player.ContentData(); Assert.That(data?.Mind, Is.Not.EqualTo(null)); - mind = data!.Mind!; + mindId = data!.Mind!.Value; + mind = entMan.GetComponent(mindId); Assert.That(mind.OwnedEntity, Is.Not.Null); ghostRole = entMan.SpawnEntity("GhostRoleTestEntity", MapCoordinates.Nullspace); }); - await PoolManager.RunTicksSync(pairTracker.Pair, 20); + await pair.RunTicksSync(20); await server.WaitAssertion(() => { serverConsole.ExecuteCommand(player, "aghost"); }); - await PoolManager.RunTicksSync(pairTracker.Pair, 20); + await pair.RunTicksSync(20); await server.WaitAssertion(() => { @@ -456,19 +473,19 @@ await server.WaitAssertion(() => entMan.EntitySysManager.GetEntitySystem().Takeover(player, id); }); - await PoolManager.RunTicksSync(pairTracker.Pair, 20); + await pair.RunTicksSync(20); await server.WaitAssertion(() => { - var data = player.ContentData()!; - Assert.That(data.Mind!.OwnedEntity, Is.EqualTo(ghostRole)); + var data = entMan.GetComponent(player.ContentData()!.Mind!.Value); + Assert.That(data.OwnedEntity, Is.EqualTo(ghostRole)); serverConsole.ExecuteCommand(player, "aghost"); Assert.That(player.AttachedEntity, Is.Not.Null); ghost = player.AttachedEntity!.Value; }); - await PoolManager.RunTicksSync(pairTracker.Pair, 20); + await pair.RunTicksSync(20); await server.WaitAssertion(() => { @@ -476,6 +493,6 @@ await server.WaitAssertion(() => Assert.That(player.AttachedEntity!.Value, Is.EqualTo(ghost)); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } diff --git a/Content.IntegrationTests/Tests/NPC/NPCTest.cs b/Content.IntegrationTests/Tests/NPC/NPCTest.cs index efaacfd8d94..83321fe6138 100644 --- a/Content.IntegrationTests/Tests/NPC/NPCTest.cs +++ b/Content.IntegrationTests/Tests/NPC/NPCTest.cs @@ -13,7 +13,7 @@ public sealed class NPCTest public async Task CompoundRecursion() { var pool = await PoolManager.GetServerClient(); - var server = pool.Pair.Server; + var server = pool.Server; await server.WaitIdleAsync(); diff --git a/Content.IntegrationTests/Tests/Networking/NetworkIdsMatchTest.cs b/Content.IntegrationTests/Tests/Networking/NetworkIdsMatchTest.cs index f4351e1a5ad..c72be944fd3 100644 --- a/Content.IntegrationTests/Tests/Networking/NetworkIdsMatchTest.cs +++ b/Content.IntegrationTests/Tests/Networking/NetworkIdsMatchTest.cs @@ -8,9 +8,9 @@ public sealed class NetworkIdsMatchTest [Test] public async Task TestConnect() { - await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings { Connected = true }); - var server = pairTracker.Pair.Server; - var client = pairTracker.Pair.Client; + await using var pair = await PoolManager.GetServerClient(new PoolSettings { Connected = true }); + var server = pair.Server; + var client = pair.Client; var clientCompFactory = client.ResolveDependency(); var serverCompFactory = server.ResolveDependency(); @@ -38,7 +38,7 @@ public async Task TestConnect() Assert.That(clientNetComps[netId].Name, Is.EqualTo(serverNetComps[netId].Name)); } }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/Networking/ReconnectTest.cs b/Content.IntegrationTests/Tests/Networking/ReconnectTest.cs index 9accbbb417b..4539ca81a51 100644 --- a/Content.IntegrationTests/Tests/Networking/ReconnectTest.cs +++ b/Content.IntegrationTests/Tests/Networking/ReconnectTest.cs @@ -9,9 +9,9 @@ public sealed class ReconnectTest [Test] public async Task Test() { - await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings { Connected = true }); - var server = pairTracker.Pair.Server; - var client = pairTracker.Pair.Client; + await using var pair = await PoolManager.GetServerClient(new PoolSettings { Connected = true }); + var server = pair.Server; + var client = pair.Client; var host = client.ResolveDependency(); var netManager = client.ResolveDependency(); @@ -19,7 +19,7 @@ public async Task Test() await client.WaitPost(() => host.ExecuteCommand("disconnect")); // Run some ticks for the disconnect to complete and such. - await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await pair.RunTicksSync(5); await Task.WhenAll(client.WaitIdleAsync(), server.WaitIdleAsync()); @@ -29,10 +29,10 @@ public async Task Test() await client.WaitPost(() => netManager.ClientConnect(null, 0, null)); // Run some ticks for the handshake to complete and such. - await PoolManager.RunTicksSync(pairTracker.Pair, 10); + await pair.RunTicksSync(10); await Task.WhenAll(client.WaitIdleAsync(), server.WaitIdleAsync()); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/Networking/SimplePredictReconcileTest.cs b/Content.IntegrationTests/Tests/Networking/SimplePredictReconcileTest.cs index 8533c1aad0e..ec60af5d423 100644 --- a/Content.IntegrationTests/Tests/Networking/SimplePredictReconcileTest.cs +++ b/Content.IntegrationTests/Tests/Networking/SimplePredictReconcileTest.cs @@ -31,9 +31,9 @@ public sealed class SimplePredictReconcileTest [Test] public async Task Test() { - await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings { Connected = true }); - var server = pairTracker.Pair.Server; - var client = pairTracker.Pair.Client; + await using var pair = await PoolManager.GetServerClient(new PoolSettings { Connected = true }); + var server = pair.Server; + var client = pair.Client; var sMapManager = server.ResolveDependency(); var sEntityManager = server.ResolveDependency(); @@ -60,8 +60,8 @@ await server.WaitPost(() => }); // Run some ticks and ensure that the buffer has filled up. - await PoolManager.SyncTicks(pairTracker.Pair); - await PoolManager.RunTicksSync(pairTracker.Pair, 25); + await pair.SyncTicks(); + await pair.RunTicksSync(25); Assert.That(cGameTiming.TickTimingAdjustment, Is.EqualTo(0)); Assert.That(sGameTiming.TickTimingAdjustment, Is.EqualTo(0)); @@ -77,7 +77,7 @@ await server.WaitPost(() => await client.WaitPost(() => { - clientComponent = cEntityManager.GetComponent(serverEnt); + clientComponent = cEntityManager.GetComponent(cEntityManager.GetEntity(sEntityManager.GetNetEntity(serverEnt))); }); var baseTick = sGameTiming.CurTick.Value; @@ -110,7 +110,7 @@ await client.WaitPost(() => Assert.That(clientComponent.Foo, Is.False); await client.WaitPost(() => { - cEntityManager.RaisePredictiveEvent(new SetFooMessage(serverEnt, true)); + cEntityManager.RaisePredictiveEvent(new SetFooMessage(sEntityManager.GetNetEntity(serverEnt), true)); }); Assert.That(clientComponent.Foo, Is.True); @@ -190,7 +190,7 @@ await client.WaitPost(() => // Send event to server to change flag again, this time to disable it.. await client.WaitPost(() => { - cEntityManager.RaisePredictiveEvent(new SetFooMessage(serverEnt, false)); + cEntityManager.RaisePredictiveEvent(new SetFooMessage(sEntityManager.GetNetEntity(serverEnt), false)); Assert.That(clientComponent.Foo, Is.False); }); @@ -270,7 +270,7 @@ await client.WaitPost(() => // Send first event to disable the flag (reminder: it never got accepted by the server). await client.WaitPost(() => { - cEntityManager.RaisePredictiveEvent(new SetFooMessage(serverEnt, false)); + cEntityManager.RaisePredictiveEvent(new SetFooMessage(sEntityManager.GetNetEntity(serverEnt), false)); Assert.That(clientComponent.Foo, Is.False); }); @@ -298,7 +298,7 @@ await client.WaitPost(() => // Send another event, to re-enable it. await client.WaitPost(() => { - cEntityManager.RaisePredictiveEvent(new SetFooMessage(serverEnt, true)); + cEntityManager.RaisePredictiveEvent(new SetFooMessage(sEntityManager.GetNetEntity(serverEnt), true)); Assert.That(clientComponent.Foo, Is.True); }); @@ -384,7 +384,7 @@ await client.WaitPost(() => } cfg.SetCVar(CVars.NetLogging, log); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } public sealed class PredictionTestEntitySystem : EntitySystem @@ -406,12 +406,14 @@ public override void Initialize() private void HandleMessage(SetFooMessage message, EntitySessionEventArgs args) { - var component = EntityManager.GetComponent(message.Uid); + var uid = GetEntity(message.Uid); + + var component = EntityManager.GetComponent(uid); var old = component.Foo; if (Allow) { component.Foo = message.NewFoo; - Dirty(message.Uid, component); + Dirty(uid, component); } EventTriggerList.Add((_gameTiming.CurTick, _gameTiming.IsFirstTimePredicted, old, component.Foo, message.NewFoo)); @@ -420,13 +422,13 @@ private void HandleMessage(SetFooMessage message, EntitySessionEventArgs args) public sealed class SetFooMessage : EntityEventArgs { - public SetFooMessage(EntityUid uid, bool newFoo) + public SetFooMessage(NetEntity uid, bool newFoo) { Uid = uid; NewFoo = newFoo; } - public EntityUid Uid { get; } + public NetEntity Uid { get; } public bool NewFoo { get; } } } diff --git a/Content.IntegrationTests/Tests/Payload/ModularGrenadeTests.cs b/Content.IntegrationTests/Tests/Payload/ModularGrenadeTests.cs index 7dafdf551cc..65f4a9d488a 100644 --- a/Content.IntegrationTests/Tests/Payload/ModularGrenadeTests.cs +++ b/Content.IntegrationTests/Tests/Payload/ModularGrenadeTests.cs @@ -18,7 +18,7 @@ public async Task AssembleAndDetonateGrenade() { await PlaceInHands(Steel, 5); await CraftItem("ModularGrenadeRecipe"); - Target = await FindEntity("ModularGrenade"); + Target = SEntMan.GetNetEntity(await FindEntity("ModularGrenade")); await Drop(); await Interact(Cable); diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs index fd525c073d5..6f3bdcc5240 100644 --- a/Content.IntegrationTests/Tests/PostMapInitTest.cs +++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs @@ -60,7 +60,8 @@ public sealed class PostMapInitTest "Saltern", "Core", "Marathon", - "Kettle" + "Kettle", + "MeteorArena" }; /// @@ -69,8 +70,8 @@ public sealed class PostMapInitTest [Test, TestCaseSource(nameof(Grids))] public async Task GridsLoadableTest(string mapFile) { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var entManager = server.ResolveDependency(); var mapLoader = entManager.System(); @@ -104,14 +105,14 @@ await server.WaitPost(() => }); await server.WaitRunTicks(1); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task NoSavedPostMapInitTest() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var resourceManager = server.ResolveDependency(); var mapFolder = new ResPath("/Maps"); @@ -146,14 +147,14 @@ public async Task NoSavedPostMapInitTest() Assert.That(postMapInit, Is.False, $"Map {map.Filename} was saved postmapinit"); } - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test, TestCaseSource(nameof(GameMaps))] public async Task GameMapsLoadableTest(string mapProto) { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var mapManager = server.ResolveDependency(); var entManager = server.ResolveDependency(); @@ -278,18 +279,18 @@ await server.WaitPost(() => }); await server.WaitRunTicks(1); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task AllMapsTested() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var protoMan = server.ResolveDependency(); var gameMaps = protoMan.EnumeratePrototypes() - .Where(x => !pairTracker.Pair.IsTestPrototype(x)) + .Where(x => !pair.IsTestPrototype(x)) .Select(x => x.ID) .ToHashSet(); @@ -297,14 +298,14 @@ public async Task AllMapsTested() CollectionAssert.AreEquivalent(GameMaps.ToHashSet(), gameMaps, "Game map prototype missing from test cases."); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task NonGameMapsLoadableTest() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var mapLoader = server.ResolveDependency().GetEntitySystem(); var mapManager = server.ResolveDependency(); @@ -364,7 +365,7 @@ await server.WaitPost(() => }); await server.WaitRunTicks(1); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/Power/PowerTest.cs b/Content.IntegrationTests/Tests/Power/PowerTest.cs index 40d8ae898c9..d4e2cde9b0d 100644 --- a/Content.IntegrationTests/Tests/Power/PowerTest.cs +++ b/Content.IntegrationTests/Tests/Power/PowerTest.cs @@ -162,8 +162,8 @@ public sealed class PowerTest [Test] public async Task TestSimpleSurplus() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var mapManager = server.ResolveDependency(); var entityManager = server.ResolveDependency(); const float loadPower = 200; @@ -213,7 +213,7 @@ await server.WaitAssertion(() => }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } @@ -223,8 +223,8 @@ await server.WaitAssertion(() => [Test] public async Task TestSimpleDeficit() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var mapManager = server.ResolveDependency(); var entityManager = server.ResolveDependency(); const float loadPower = 200; @@ -274,14 +274,14 @@ await server.WaitAssertion(() => }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task TestSupplyRamp() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var mapManager = server.ResolveDependency(); var entityManager = server.ResolveDependency(); var gameTiming = server.ResolveDependency(); @@ -361,14 +361,14 @@ await server.WaitAssertion(() => }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task TestBatteryRamp() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var mapManager = server.ResolveDependency(); var entityManager = server.ResolveDependency(); var gameTiming = server.ResolveDependency(); @@ -460,7 +460,7 @@ await server.WaitAssertion(() => }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] @@ -468,8 +468,8 @@ public async Task TestNoDemandRampdown() { // checks that batteries and supplies properly ramp down if the load is disconnected/disabled. - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var mapManager = server.ResolveDependency(); var entityManager = server.ResolveDependency(); var batterySys = entityManager.System(); @@ -558,14 +558,14 @@ await server.WaitAssertion(() => }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task TestSimpleBatteryChargeDeficit() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var mapManager = server.ResolveDependency(); var gameTiming = server.ResolveDependency(); var entityManager = server.ResolveDependency(); @@ -614,14 +614,14 @@ await server.WaitAssertion(() => }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task TestFullBattery() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var mapManager = server.ResolveDependency(); var entityManager = server.ResolveDependency(); var gameTiming = server.ResolveDependency(); @@ -691,14 +691,14 @@ await server.WaitAssertion(() => }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task TestFullBatteryEfficiencyPassThrough() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var mapManager = server.ResolveDependency(); var entityManager = server.ResolveDependency(); var gameTiming = server.ResolveDependency(); @@ -768,14 +768,14 @@ await server.WaitAssertion(() => }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task TestFullBatteryEfficiencyDemandPassThrough() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var mapManager = server.ResolveDependency(); var entityManager = server.ResolveDependency(); var batterySys = entityManager.System(); @@ -860,7 +860,7 @@ await server.WaitAssertion(() => }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } /// @@ -870,8 +870,8 @@ await server.WaitAssertion(() => [Test] public async Task TestSupplyPrioritized() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var mapManager = server.ResolveDependency(); var entityManager = server.ResolveDependency(); var gameTiming = server.ResolveDependency(); @@ -959,7 +959,7 @@ await server.WaitAssertion(() => }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } /// @@ -968,8 +968,8 @@ await server.WaitAssertion(() => [Test] public async Task TestBatteriesProportional() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var mapManager = server.ResolveDependency(); var entityManager = server.ResolveDependency(); var batterySys = entityManager.System(); @@ -1049,14 +1049,14 @@ await server.WaitAssertion(() => }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task TestBatteryEngineCut() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var mapManager = server.ResolveDependency(); var entityManager = server.ResolveDependency(); var batterySys = entityManager.System(); @@ -1130,7 +1130,7 @@ await server.WaitAssertion(() => }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } /// @@ -1139,8 +1139,8 @@ await server.WaitAssertion(() => [Test] public async Task TestTerminalNodeGroups() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var mapManager = server.ResolveDependency(); var entityManager = server.ResolveDependency(); var nodeContainer = entityManager.System(); @@ -1198,14 +1198,14 @@ await server.WaitAssertion(() => }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task ApcChargingTest() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var mapManager = server.ResolveDependency(); var entityManager = server.ResolveDependency(); var batterySys = entityManager.System(); @@ -1253,14 +1253,14 @@ await server.WaitAssertion(() => }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task ApcNetTest() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var mapManager = server.ResolveDependency(); var entityManager = server.ResolveDependency(); var batterySys = entityManager.System(); @@ -1317,7 +1317,7 @@ await server.WaitAssertion(() => }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } diff --git a/Content.Tests/Server/Preferences/ServerDbSqliteTests.cs b/Content.IntegrationTests/Tests/Preferences/ServerDbSqliteTests.cs similarity index 78% rename from Content.Tests/Server/Preferences/ServerDbSqliteTests.cs rename to Content.IntegrationTests/Tests/Preferences/ServerDbSqliteTests.cs index 5c5f2bbabd7..6468156b34e 100644 --- a/Content.Tests/Server/Preferences/ServerDbSqliteTests.cs +++ b/Content.IntegrationTests/Tests/Preferences/ServerDbSqliteTests.cs @@ -1,41 +1,36 @@ -using System; using System.Collections.Generic; -using System.IO; using System.Linq; -using System.Threading.Tasks; using Content.Server.Database; using Content.Shared.GameTicking; using Content.Shared.Humanoid; using Content.Shared.Preferences; using Microsoft.Data.Sqlite; using Microsoft.EntityFrameworkCore; -using NUnit.Framework; using Robust.Shared.Configuration; using Robust.Shared.Enums; -using Robust.Shared.IoC; using Robust.Shared.Maths; using Robust.Shared.Network; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.Manager; -namespace Content.Tests.Server.Preferences +namespace Content.IntegrationTests.Tests.Preferences { [TestFixture] - public sealed class ServerDbSqliteTests : ContentUnitTest + public sealed class ServerDbSqliteTests { + [TestPrototypes] private const string Prototypes = @" - type: dataset - id: names_first_male + id: sqlite_test_names_first_male values: - Aaden - type: dataset - id: names_first_female + id: sqlite_test_names_first_female values: - Aaliyah - type: dataset - id: names_last + id: sqlite_test_names_last values: - Ackerley"; @@ -70,50 +65,54 @@ private static HumanoidCharacterProfile CharlieCharlieson() ); } - private static ServerDbSqlite GetDb() + private static ServerDbSqlite GetDb(IConfigurationManager cfgManager) { var builder = new DbContextOptionsBuilder(); var conn = new SqliteConnection("Data Source=:memory:"); conn.Open(); builder.UseSqlite(conn); - return new ServerDbSqlite(() => builder.Options, true, IoCManager.Resolve(), true); + return new ServerDbSqlite(() => builder.Options, true, cfgManager, true); } [Test] public async Task TestUserDoesNotExist() { - var db = GetDb(); + var pair = await PoolManager.GetServerClient(); + var db = GetDb(pair.Server.ResolveDependency()); // Database should be empty so a new GUID should do it. Assert.Null(await db.GetPlayerPreferencesAsync(NewUserId())); + + await pair.CleanReturnAsync(); } [Test] public async Task TestInitPrefs() { - var db = GetDb(); + var pair = await PoolManager.GetServerClient(); + var db = GetDb(pair.Server.ResolveDependency()); var username = new NetUserId(new Guid("640bd619-fc8d-4fe2-bf3c-4a5fb17d6ddd")); const int slot = 0; var originalProfile = CharlieCharlieson(); await db.InitPrefsAsync(username, originalProfile); var prefs = await db.GetPlayerPreferencesAsync(username); Assert.That(prefs.Characters.Single(p => p.Key == slot).Value.MemberwiseEquals(originalProfile)); + await pair.CleanReturnAsync(); } [Test] public async Task TestDeleteCharacter() { - var db = GetDb(); + var pair = await PoolManager.GetServerClient(); + var server = pair.Server; + var db = GetDb(server.ResolveDependency()); var username = new NetUserId(new Guid("640bd619-fc8d-4fe2-bf3c-4a5fb17d6ddd")); - IoCManager.Resolve().Initialize(); - var prototypeManager = IoCManager.Resolve(); - prototypeManager.Initialize(); - prototypeManager.LoadFromStream(new StringReader(Prototypes)); await db.InitPrefsAsync(username, new HumanoidCharacterProfile()); await db.SaveCharacterSlotAsync(username, CharlieCharlieson(), 1); await db.SaveSelectedCharacterIndexAsync(username, 1); await db.SaveCharacterSlotAsync(username, null, 1); var prefs = await db.GetPlayerPreferencesAsync(username); Assert.That(!prefs.Characters.Any(p => p.Key != 0)); + await pair.CleanReturnAsync(); } private static NetUserId NewUserId() diff --git a/Content.IntegrationTests/Tests/Procedural/DungeonTests.cs b/Content.IntegrationTests/Tests/Procedural/DungeonTests.cs index 4300eb52e1b..6bede9660a9 100644 --- a/Content.IntegrationTests/Tests/Procedural/DungeonTests.cs +++ b/Content.IntegrationTests/Tests/Procedural/DungeonTests.cs @@ -12,10 +12,10 @@ public sealed class DungeonTests [Test] public async Task TestDungeonRoomPackBounds() { - await using var pairTracker = await PoolManager.GetServerClient(); - var protoManager = pairTracker.Pair.Server.ResolveDependency(); + await using var pair = await PoolManager.GetServerClient(); + var protoManager = pair.Server.ResolveDependency(); - await pairTracker.Pair.Server.WaitAssertion(() => + await pair.Server.WaitAssertion(() => { var sizes = new HashSet(); @@ -56,16 +56,16 @@ await pairTracker.Pair.Server.WaitAssertion(() => } }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task TestDungeonPresets() { - await using var pairTracker = await PoolManager.GetServerClient(); - var protoManager = pairTracker.Pair.Server.ResolveDependency(); + await using var pair = await PoolManager.GetServerClient(); + var protoManager = pair.Server.ResolveDependency(); - await pairTracker.Pair.Server.WaitAssertion(() => + await pair.Server.WaitAssertion(() => { var sizes = new HashSet(); @@ -93,6 +93,6 @@ await pairTracker.Pair.Server.WaitAssertion(() => } }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } diff --git a/Content.IntegrationTests/Tests/PrototypeSaveTest.cs b/Content.IntegrationTests/Tests/PrototypeSaveTest.cs index 74123b5bc7a..6096c497efa 100644 --- a/Content.IntegrationTests/Tests/PrototypeSaveTest.cs +++ b/Content.IntegrationTests/Tests/PrototypeSaveTest.cs @@ -29,20 +29,11 @@ namespace Content.IntegrationTests.Tests; [TestFixture] public sealed class PrototypeSaveTest { - private readonly HashSet _ignoredPrototypes = new() - { - "Singularity", // physics collision uses "AllMask" (-1). The flag serializer currently fails to save this because this features un-named bits. - "constructionghost", - // Don't add to this list unless you have a good reason - // Or it is just temporary because tests stopped working and now master has too many broken entities. - }; - [Test] public async Task UninitializedSaveTest() { - // Apparently SpawnTest fails to clean up properly. Due to the similarities, I'll assume this also fails. - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var mapManager = server.ResolveDependency(); var entityMan = server.ResolveDependency(); @@ -81,7 +72,7 @@ await server.WaitPost(() => if (prototype.Abstract) continue; - if (pairTracker.Pair.IsTestPrototype(prototype)) + if (pair.IsTestPrototype(prototype)) continue; // Yea this test just doesn't work with this, it parents a grid to another grid and causes game logic to explode. @@ -92,9 +83,6 @@ await server.WaitPost(() => if (!prototype.MapSavable) continue; - if (_ignoredPrototypes.Contains(prototype.ID)) - continue; - if (prototype.SetSuffix == "DEBUG") continue; @@ -165,10 +153,7 @@ await server.WaitAssertion(() => var diff = compMapping.Except(protoMapping); if (diff != null && diff.Children.Count != 0) - { - var modComps = string.Join(",", diff.Keys.Select(x => x.ToString())); - Assert.Fail($"Prototype {prototype.ID} modifies component on spawn: {compName}. Modified fields: {modComps}"); - } + Assert.Fail($"Prototype {prototype.ID} modifies component on spawn: {compName}. Modified yaml:\n{diff}"); } else { @@ -187,7 +172,7 @@ await server.WaitAssertion(() => } }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } public sealed class TestEntityUidContext : ISerializationContext, diff --git a/Content.IntegrationTests/Tests/PrototypeTests/PrototypeTests.cs b/Content.IntegrationTests/Tests/PrototypeTests/PrototypeTests.cs index 8b7c73380e6..440d9e636ec 100644 --- a/Content.IntegrationTests/Tests/PrototypeTests/PrototypeTests.cs +++ b/Content.IntegrationTests/Tests/PrototypeTests/PrototypeTests.cs @@ -17,10 +17,10 @@ public sealed class PrototypeTests [Test] public async Task TestAllServerPrototypesAreSerializable() { - await using var pairTracker = await PoolManager.GetServerClient(); + await using var pair = await PoolManager.GetServerClient(); var context = new PrototypeSaveTest.TestEntityUidContext(); - await SaveThenValidatePrototype(pairTracker.Pair.Server, "server", context); - await pairTracker.CleanReturnAsync(); + await SaveThenValidatePrototype(pair.Server, "server", context); + await pair.CleanReturnAsync(); } /// @@ -30,10 +30,10 @@ public async Task TestAllServerPrototypesAreSerializable() [Test] public async Task TestAllClientPrototypesAreSerializable() { - await using var pairTracker = await PoolManager.GetServerClient(); + await using var pair = await PoolManager.GetServerClient(); var context = new PrototypeSaveTest.TestEntityUidContext(); - await SaveThenValidatePrototype(pairTracker.Pair.Client, "client", context); - await pairTracker.CleanReturnAsync(); + await SaveThenValidatePrototype(pair.Client, "client", context); + await pair.CleanReturnAsync(); } public async Task SaveThenValidatePrototype(RobustIntegrationTest.IntegrationInstance instance, string instanceId, @@ -69,10 +69,10 @@ public async Task SaveThenValidatePrototype(RobustIntegrationTest.IntegrationIns [Test] public async Task ServerPrototypeSaveLoadSaveTest() { - await using var pairTracker = await PoolManager.GetServerClient(); + await using var pair = await PoolManager.GetServerClient(); var context = new PrototypeSaveTest.TestEntityUidContext(); - await SaveLoadSavePrototype(pairTracker.Pair.Server, context); - await pairTracker.CleanReturnAsync(); + await SaveLoadSavePrototype(pair.Server, context); + await pair.CleanReturnAsync(); } /// @@ -81,10 +81,10 @@ public async Task ServerPrototypeSaveLoadSaveTest() [Test] public async Task ClientPrototypeSaveLoadSaveTest() { - await using var pairTracker = await PoolManager.GetServerClient(); + await using var pair = await PoolManager.GetServerClient(); var context = new PrototypeSaveTest.TestEntityUidContext(); - await SaveLoadSavePrototype(pairTracker.Pair.Client, context); - await pairTracker.CleanReturnAsync(); + await SaveLoadSavePrototype(pair.Client, context); + await pair.CleanReturnAsync(); } private async Task SaveLoadSavePrototype( diff --git a/Content.IntegrationTests/Tests/ResearchTest.cs b/Content.IntegrationTests/Tests/ResearchTest.cs index 179d751f180..ee319daa436 100644 --- a/Content.IntegrationTests/Tests/ResearchTest.cs +++ b/Content.IntegrationTests/Tests/ResearchTest.cs @@ -12,8 +12,8 @@ public sealed class ResearchTest [Test] public async Task DisciplineValidTierPrerequesitesTest() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var protoManager = server.ResolveDependency(); @@ -42,14 +42,14 @@ await server.WaitAssertion(() => }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task AllTechPrintableTest() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var protoManager = server.ResolveDependency(); @@ -62,7 +62,7 @@ await server.WaitAssertion(() => if (proto.Abstract) continue; - if (pairTracker.Pair.IsTestPrototype(proto)) + if (pair.IsTestPrototype(proto)) continue; if (!proto.TryGetComponent(out var lathe)) @@ -94,6 +94,6 @@ await server.WaitAssertion(() => }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } diff --git a/Content.IntegrationTests/Tests/ResettingEntitySystemTests.cs b/Content.IntegrationTests/Tests/ResettingEntitySystemTests.cs index f300410a58b..98fb84210f7 100644 --- a/Content.IntegrationTests/Tests/ResettingEntitySystemTests.cs +++ b/Content.IntegrationTests/Tests/ResettingEntitySystemTests.cs @@ -30,12 +30,12 @@ public void Reset(RoundRestartCleanupEvent ev) [Test] public async Task ResettingEntitySystemResetTest() { - await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings + await using var pair = await PoolManager.GetServerClient(new PoolSettings { DummyTicker = false, Connected = true }); - var server = pairTracker.Pair.Server; + var server = pair.Server; var entitySystemManager = server.ResolveDependency(); var gameTicker = entitySystemManager.GetEntitySystem(); @@ -54,7 +54,7 @@ await server.WaitAssertion(() => Assert.That(system.HasBeenReset); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/RestartRoundTest.cs b/Content.IntegrationTests/Tests/RestartRoundTest.cs index 8358a4a95ed..edc6d356eaa 100644 --- a/Content.IntegrationTests/Tests/RestartRoundTest.cs +++ b/Content.IntegrationTests/Tests/RestartRoundTest.cs @@ -10,12 +10,12 @@ public sealed class RestartRoundTest [Test] public async Task Test() { - await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings + await using var pair = await PoolManager.GetServerClient(new PoolSettings { DummyTicker = false, Connected = true }); - var server = pairTracker.Pair.Server; + var server = pair.Server; var sysManager = server.ResolveDependency(); await server.WaitPost(() => @@ -23,8 +23,8 @@ await server.WaitPost(() => sysManager.GetEntitySystem().RestartRound(); }); - await PoolManager.RunTicksSync(pairTracker.Pair, 10); - await pairTracker.CleanReturnAsync(); + await pair.RunTicksSync(10); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/RoundEndTest.cs b/Content.IntegrationTests/Tests/RoundEndTest.cs index c307916841a..4dda2190e8c 100644 --- a/Content.IntegrationTests/Tests/RoundEndTest.cs +++ b/Content.IntegrationTests/Tests/RoundEndTest.cs @@ -13,13 +13,13 @@ public sealed class RoundEndTest : IEntityEventSubscriber [Test] public async Task Test() { - await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings + await using var pair = await PoolManager.GetServerClient(new PoolSettings { DummyTicker = false, Connected = true }); - var server = pairTracker.Pair.Server; + var server = pair.Server; var entManager = server.ResolveDependency(); var config = server.ResolveDependency(); @@ -120,7 +120,7 @@ async Task WaitForEvent() var currentCount = Thread.VolatileRead(ref eventCount); while (currentCount == Thread.VolatileRead(ref eventCount) && !timeout.IsCompleted) { - await PoolManager.RunTicksSync(pairTracker.Pair, 5); + await pair.RunTicksSync(5); } if (timeout.IsCompleted) throw new TimeoutException("Event took too long to trigger"); } @@ -137,9 +137,7 @@ await server.WaitAssertion(() => roundEndSystem.DefaultCountdownDuration = TimeSpan.FromMinutes(4); ticker.RestartRound(); }); - await PoolManager.ReallyBeIdle(pairTracker.Pair, 10); - - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/SalvageTest.cs b/Content.IntegrationTests/Tests/SalvageTest.cs index b16fce89f7e..01680e34838 100644 --- a/Content.IntegrationTests/Tests/SalvageTest.cs +++ b/Content.IntegrationTests/Tests/SalvageTest.cs @@ -19,8 +19,8 @@ public sealed class SalvageTest [Test] public async Task AllSalvageMapsLoadableTest() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var entManager = server.ResolveDependency(); var mapLoader = entManager.System(); @@ -58,6 +58,6 @@ await server.WaitPost(() => }); await server.WaitRunTicks(1); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } diff --git a/Content.IntegrationTests/Tests/SaveLoadMapTest.cs b/Content.IntegrationTests/Tests/SaveLoadMapTest.cs index 03e5b7e6c7d..db2109ca599 100644 --- a/Content.IntegrationTests/Tests/SaveLoadMapTest.cs +++ b/Content.IntegrationTests/Tests/SaveLoadMapTest.cs @@ -18,8 +18,8 @@ public async Task SaveLoadMultiGridMap() { const string mapPath = @"/Maps/Test/TestMap.yml"; - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var mapManager = server.ResolveDependency(); var sEntities = server.ResolveDependency(); var mapLoader = sEntities.System(); @@ -93,7 +93,7 @@ await server.WaitAssertion(() => } }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/SaveLoadSaveTest.cs b/Content.IntegrationTests/Tests/SaveLoadSaveTest.cs index 9acd1bfb135..72c6d464e29 100644 --- a/Content.IntegrationTests/Tests/SaveLoadSaveTest.cs +++ b/Content.IntegrationTests/Tests/SaveLoadSaveTest.cs @@ -21,8 +21,8 @@ public sealed class SaveLoadSaveTest [Test] public async Task SaveLoadSave() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var entManager = server.ResolveDependency(); var mapLoader = entManager.System(); var mapManager = server.ResolveDependency(); @@ -86,7 +86,7 @@ await server.WaitPost(() => TestContext.Error.WriteLine(twoTmp); } }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } private const string TestMap = "Maps/bagel.yml"; @@ -97,8 +97,8 @@ await server.WaitPost(() => [Test] public async Task LoadSaveTicksSaveBagel() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var mapLoader = server.ResolveDependency().GetEntitySystem(); var mapManager = server.ResolveDependency(); @@ -163,7 +163,7 @@ await server.WaitPost(() => }); await server.WaitPost(() => mapManager.DeleteMap(mapId)); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } /// @@ -179,8 +179,8 @@ await server.WaitPost(() => [Test] public async Task LoadTickLoadBagel() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var mapLoader = server.ResolveDependency().GetEntitySystem(); var mapManager = server.ResolveDependency(); @@ -235,7 +235,7 @@ public async Task LoadTickLoadBagel() Assert.That(yamlA, Is.EqualTo(yamlB)); await server.WaitPost(() => mapManager.DeleteMap(mapId)); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/Serialization/SerializationTest.cs b/Content.IntegrationTests/Tests/Serialization/SerializationTest.cs index bdf68a1161e..d2e3eb936b7 100644 --- a/Content.IntegrationTests/Tests/Serialization/SerializationTest.cs +++ b/Content.IntegrationTests/Tests/Serialization/SerializationTest.cs @@ -8,7 +8,7 @@ namespace Content.IntegrationTests.Tests.Serialization; [TestFixture] -public sealed class SerializationTest +public sealed partial class SerializationTest { /// /// Check that serializing generic enums works as intended. This should really be in engine, but engine @@ -17,8 +17,8 @@ public sealed class SerializationTest [Test] public async Task SerializeGenericEnums() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var seriMan = server.ResolveDependency(); var refMan = server.ResolveDependency(); @@ -68,13 +68,13 @@ public async Task SerializeGenericEnums() Assert.That(seriMan.ValidateNode(typedNode).GetErrors().Any(), Is.True); Assert.That(seriMan.ValidateNode(typedNode).GetErrors().Any(), Is.False); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } private enum TestEnum : byte { Aa, Bb, Cc, Dd } [DataDefinition] - private sealed class TestData + private sealed partial class TestData { [DataField("value")] public Enum Value = default!; [DataField("sequence")] public List Sequence = default!; diff --git a/Content.IntegrationTests/Tests/Shuttle/DockTest.cs b/Content.IntegrationTests/Tests/Shuttle/DockTest.cs index 00d29aaf3f1..d08d0a74c24 100644 --- a/Content.IntegrationTests/Tests/Shuttle/DockTest.cs +++ b/Content.IntegrationTests/Tests/Shuttle/DockTest.cs @@ -22,9 +22,9 @@ private static IEnumerable TestSource() public async Task TestDockingConfig(Vector2 dock1Pos, Vector2 dock2Pos, Angle dock1Angle, Angle dock2Angle, bool result) { await using var pair = await PoolManager.GetServerClient(); - var server = pair.Pair.Server; + var server = pair.Server; - var map = await PoolManager.CreateTestMap(pair); + var map = await pair.CreateTestMap(); var entManager = server.ResolveDependency(); var mapManager = server.ResolveDependency(); diff --git a/Content.IntegrationTests/Tests/ShuttleTest.cs b/Content.IntegrationTests/Tests/ShuttleTest.cs index 582efe0c6c0..304366adbf8 100644 --- a/Content.IntegrationTests/Tests/ShuttleTest.cs +++ b/Content.IntegrationTests/Tests/ShuttleTest.cs @@ -15,8 +15,8 @@ public sealed class ShuttleTest [Test] public async Task Test() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; await server.WaitIdleAsync(); var mapMan = server.ResolveDependency(); @@ -51,7 +51,7 @@ await server.WaitAssertion(() => { Assert.That(entManager.GetComponent(gridEnt).LocalPosition, Is.Not.EqualTo(Vector2.Zero)); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/Slipping/SlippingTest.cs b/Content.IntegrationTests/Tests/Slipping/SlippingTest.cs index 53ae1e63b48..d64961b0bec 100644 --- a/Content.IntegrationTests/Tests/Slipping/SlippingTest.cs +++ b/Content.IntegrationTests/Tests/Slipping/SlippingTest.cs @@ -34,7 +34,7 @@ public async Task BananaSlipTest() // Player is to the left of the banana peel and has not slipped. #pragma warning disable NUnit2045 Assert.That(Delta(), Is.GreaterThan(0.5f)); - Assert.That(sys.Slipped, Does.Not.Contain(Player)); + Assert.That(sys.Slipped, Does.Not.Contain(SEntMan.GetEntity(Player))); #pragma warning restore NUnit2045 // Walking over the banana slowly does not trigger a slip. @@ -42,14 +42,14 @@ public async Task BananaSlipTest() await Move(DirectionFlag.East, 1f); #pragma warning disable NUnit2045 Assert.That(Delta(), Is.LessThan(0.5f)); - Assert.That(sys.Slipped, Does.Not.Contain(Player)); + Assert.That(sys.Slipped, Does.Not.Contain(SEntMan.GetEntity(Player))); #pragma warning restore NUnit2045 AssertComp(false, Player); // Moving at normal speeds does trigger a slip. await SetKey(EngineKeyFunctions.Walk, BoundKeyState.Up); await Move(DirectionFlag.West, 1f); - Assert.That(sys.Slipped, Does.Contain(Player)); + Assert.That(sys.Slipped, Does.Contain(SEntMan.GetEntity(Player))); AssertComp(true, Player); } } diff --git a/Content.IntegrationTests/Tests/StackTest.cs b/Content.IntegrationTests/Tests/StackTest.cs index 54688f8ea4f..a34dd7e53dd 100644 --- a/Content.IntegrationTests/Tests/StackTest.cs +++ b/Content.IntegrationTests/Tests/StackTest.cs @@ -11,15 +11,15 @@ public sealed class StackTest [Test] public async Task StackCorrectItemSize() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var protoManager = server.ResolveDependency(); var compFact = server.ResolveDependency(); Assert.Multiple(() => { - foreach (var entity in PoolManager.GetEntityPrototypes(server)) + foreach (var entity in PoolManager.GetPrototypesWithComponent(server)) { if (!entity.TryGetComponent(out var stackComponent, compFact) || !entity.TryGetComponent(out var itemComponent, compFact)) @@ -34,6 +34,6 @@ public async Task StackCorrectItemSize() } }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } diff --git a/Content.IntegrationTests/Tests/StartTest.cs b/Content.IntegrationTests/Tests/StartTest.cs index 90a1179d242..e2bf5e8ff1c 100644 --- a/Content.IntegrationTests/Tests/StartTest.cs +++ b/Content.IntegrationTests/Tests/StartTest.cs @@ -11,8 +11,8 @@ public sealed class StartTest [Test] public async Task TestClientStart() { - await using var pairTracker = await PoolManager.GetServerClient(); - var client = pairTracker.Pair.Client; + await using var pair = await PoolManager.GetServerClient(); + var client = pair.Client; Assert.That(client.IsAlive); await client.WaitRunTicks(5); Assert.That(client.IsAlive); @@ -21,14 +21,14 @@ public async Task TestClientStart() await client.WaitIdleAsync(); Assert.That(client.IsAlive); - var server = pairTracker.Pair.Server; + var server = pair.Server; Assert.That(server.IsAlive); var sRuntimeLog = server.ResolveDependency(); Assert.That(sRuntimeLog.ExceptionCount, Is.EqualTo(0), "No exceptions must be logged on server."); await server.WaitIdleAsync(); Assert.That(server.IsAlive); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/Station/StationJobsTest.cs b/Content.IntegrationTests/Tests/Station/StationJobsTest.cs index 44955b78bc3..0085472c33c 100644 --- a/Content.IntegrationTests/Tests/Station/StationJobsTest.cs +++ b/Content.IntegrationTests/Tests/Station/StationJobsTest.cs @@ -21,7 +21,19 @@ public sealed class StationJobsTest [TestPrototypes] private const string Prototypes = @" - type: playTimeTracker - id: PlayTimeDummy + id: PlayTimeDummyAssistant + +- type: playTimeTracker + id: PlayTimeDummyMime + +- type: playTimeTracker + id: PlayTimeDummyClown + +- type: playTimeTracker + id: PlayTimeDummyCaptain + +- type: playTimeTracker + id: PlayTimeDummyChaplain - type: gameMap id: FooStation @@ -44,26 +56,26 @@ public sealed class StationJobsTest - type: job id: TAssistant - playTimeTracker: PlayTimeDummy + playTimeTracker: PlayTimeDummyAssistant - type: job id: TMime weight: 20 - playTimeTracker: PlayTimeDummy + playTimeTracker: PlayTimeDummyMime - type: job id: TClown weight: -10 - playTimeTracker: PlayTimeDummy + playTimeTracker: PlayTimeDummyClown - type: job id: TCaptain weight: 10 - playTimeTracker: PlayTimeDummy + playTimeTracker: PlayTimeDummyCaptain - type: job id: TChaplain - playTimeTracker: PlayTimeDummy + playTimeTracker: PlayTimeDummyChaplain "; private const int StationCount = 100; @@ -74,8 +86,8 @@ public sealed class StationJobsTest [Test] public async Task AssignJobsTest() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var prototypeManager = server.ResolveDependency(); var fooStationProto = prototypeManager.Index("FooStation"); @@ -142,14 +154,14 @@ await server.WaitAssertion(() => Assert.That(assigned.Values.Select(x => x.Item1).ToList(), Does.Contain("TCaptain")); }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task AdjustJobsTest() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var prototypeManager = server.ResolveDependency(); var mapManager = server.ResolveDependency(); @@ -193,14 +205,14 @@ await server.WaitAssertion(() => Assert.That(stationJobs.IsJobUnlimited(station, "TChaplain"), "Could not make TChaplain unlimited."); }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task InvalidRoundstartJobsTest() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var prototypeManager = server.ResolveDependency(); @@ -232,7 +244,7 @@ await server.WaitAssertion(() => } }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } diff --git a/Content.IntegrationTests/Tests/StorageTest.cs b/Content.IntegrationTests/Tests/StorageTest.cs index f63bb9c3991..ea7f3f5866d 100644 --- a/Content.IntegrationTests/Tests/StorageTest.cs +++ b/Content.IntegrationTests/Tests/StorageTest.cs @@ -4,6 +4,7 @@ using Content.Server.Storage.Components; using Content.Shared.Item; using Content.Shared.Storage; +using Content.Shared.Storage.Components; using Robust.Shared.GameObjects; using Robust.Shared.Prototypes; using Robust.UnitTesting; @@ -20,8 +21,8 @@ public sealed class StorageTest [Test] public async Task StorageSizeArbitrageTest() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var protoManager = server.ResolveDependency(); @@ -29,21 +30,21 @@ await server.WaitAssertion(() => { foreach (var proto in protoManager.EnumeratePrototypes()) { - if (!proto.TryGetComponent("Storage", out var storage) || + if (!proto.TryGetComponent("Storage", out var storage) || storage.Whitelist != null || !proto.TryGetComponent("Item", out var item)) continue; Assert.That(storage.StorageCapacityMax, Is.LessThanOrEqualTo(item.Size), $"Found storage arbitrage on {proto.ID}"); } }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task TestStorageFillPrototypes() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var protoManager = server.ResolveDependency(); @@ -64,14 +65,14 @@ await server.WaitAssertion(() => } }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task TestSufficientSpaceForFill() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var protoMan = server.ResolveDependency(); var compFact = server.ResolveDependency(); @@ -79,12 +80,12 @@ public async Task TestSufficientSpaceForFill() Assert.Multiple(() => { - foreach (var proto in PoolManager.GetEntityPrototypes(server)) + foreach (var proto in PoolManager.GetPrototypesWithComponent(server)) { int capacity; var isEntStorage = false; - if (proto.TryGetComponent("Storage", out var storage)) + if (proto.TryGetComponent("Storage", out var storage)) { capacity = storage.StorageCapacityMax; } @@ -143,7 +144,7 @@ int GetFillSize(StorageFillComponent fill, bool isEntStorage) return totalSize + groups.Values.Sum(); } - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/Tag/TagTest.cs b/Content.IntegrationTests/Tests/Tag/TagTest.cs index 13da0eb6e57..ed3c484b435 100644 --- a/Content.IntegrationTests/Tests/Tag/TagTest.cs +++ b/Content.IntegrationTests/Tests/Tag/TagTest.cs @@ -44,8 +44,8 @@ public sealed class TagTest [Test] public async Task TagComponentTest() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var sEntityManager = server.ResolveDependency(); var sPrototypeManager = server.ResolveDependency(); @@ -240,7 +240,7 @@ await server.WaitAssertion(() => tagSystem.HasAllTags(sTagComponent, UnregisteredTag); }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/Tiles/TileConstructionTests.cs b/Content.IntegrationTests/Tests/Tiles/TileConstructionTests.cs index c4b09a8aa46..0a2af88887a 100644 --- a/Content.IntegrationTests/Tests/Tiles/TileConstructionTests.cs +++ b/Content.IntegrationTests/Tests/Tiles/TileConstructionTests.cs @@ -42,7 +42,7 @@ public async Task CutThenPlaceLatticeNewGrid() // Place Lattice var oldPos = TargetCoords; - TargetCoords = new EntityCoordinates(MapData.MapUid, 1, 0); + TargetCoords = SEntMan.GetNetCoordinates(new EntityCoordinates(MapData.MapUid, 1, 0)); await Interact(Rod); TargetCoords = oldPos; await AssertTile(Lattice); @@ -75,7 +75,7 @@ public async Task FloorConstructDeconstruct() // Space -> Lattice var oldPos = TargetCoords; - TargetCoords = new EntityCoordinates(MapData.MapUid, 1, 0); + TargetCoords = SEntMan.GetNetCoordinates(new EntityCoordinates(MapData.MapUid, 1, 0)); await Interact(Rod); TargetCoords = oldPos; await AssertTile(Lattice); diff --git a/Content.IntegrationTests/Tests/Toolshed/AdminTest.cs b/Content.IntegrationTests/Tests/Toolshed/AdminTest.cs index 2c52d5d5c29..040b09beecc 100644 --- a/Content.IntegrationTests/Tests/Toolshed/AdminTest.cs +++ b/Content.IntegrationTests/Tests/Toolshed/AdminTest.cs @@ -13,8 +13,7 @@ public async Task AllCommandsHavePermissions() await Server.WaitAssertion(() => { Assert.That(InvokeCommand("cmd:list where { acmd:perms isnull }", out var res)); - var list = ((IEnumerable) res).ToList(); - Assert.That(list, Is.Empty, "All commands must have admin permissions set up."); + Assert.That((IEnumerable) res, Is.Empty, "All commands must have admin permissions set up."); }); } } diff --git a/Content.IntegrationTests/Tests/Toolshed/CommandParseTest.cs b/Content.IntegrationTests/Tests/Toolshed/CommandParseTest.cs deleted file mode 100644 index f997db1c480..00000000000 --- a/Content.IntegrationTests/Tests/Toolshed/CommandParseTest.cs +++ /dev/null @@ -1,84 +0,0 @@ -using System.Collections.Generic; -using Robust.Shared.GameObjects; -using Robust.Shared.Toolshed; -using Robust.Shared.Toolshed.Syntax; -using Robust.Shared.Toolshed.TypeParsers; - -namespace Content.IntegrationTests.Tests.Toolshed; - -[TestFixture] -public sealed class CommandRunTest : ToolshedTest -{ - [Test] - public async Task SimpleCommandRun() - { - await Server.WaitAssertion(() => - { - ParseCommand("entities"); - ParseCommand("entities select 1"); - ParseCommand("entities with Item select 1"); - - ExpectError(); - ParseCommand("entities with"); - - ExpectError(); - ParseCommand("player:list with MetaData"); - - ExpectError(); - ParseCommand("player:list", expectedType: typeof(IEnumerable)); - - ParseCommand("entities not with MetaData"); - ParseCommand("with MetaData select 2 any", inputType: typeof(List)); - - ParseCommand("entities not with MetaData => $myEntities"); - ParseCommand("=> $fooBar with MetaData", inputType: typeof(List)); - }); - } - - [Test] - public async Task EntityUidTypeParser() - { - await Server.WaitAssertion(() => - { - ParseCommand("ent 1"); - ParseCommand("ent c1"); - - ExpectError(); - ParseCommand("ent foodigity"); - }); - } - - [Test] - public async Task QuantityTypeParser() - { - await Server.WaitAssertion(() => - { - ParseCommand("entities select 100"); - ParseCommand("entities select 50%"); - - ExpectError(); - ParseCommand("entities select -1"); - - ExpectError(); - ParseCommand("entities select 200%"); - - ExpectError(); - ParseCommand("entities select hotdog"); - }); - } - - [Test] - public async Task ComponentTypeParser() - { - await Server.WaitAssertion(() => - { - ParseCommand("entities with MetaData"); - - ExpectError(); - ParseCommand("entities with Foodiddy"); - - ExpectError(); - ParseCommand("entities with MetaDataComponent"); - }); - } -} diff --git a/Content.IntegrationTests/Tests/Toolshed/LocTest.cs b/Content.IntegrationTests/Tests/Toolshed/LocTest.cs index db8d451dbce..2b5553ad7dd 100644 --- a/Content.IntegrationTests/Tests/Toolshed/LocTest.cs +++ b/Content.IntegrationTests/Tests/Toolshed/LocTest.cs @@ -1,9 +1,13 @@ using System.Collections.Generic; -using System.Linq; +using System.Globalization; +using Robust.Shared.IoC; +using Robust.Shared.Localization; using Robust.Shared.Toolshed; namespace Content.IntegrationTests.Tests.Toolshed; +// this is an EXACT DUPLICATE of LocTest from robust. If you modify this, modify that too. +// Anyone who fails to heed these instructions consents to being scrungled to death. [TestFixture] public sealed class LocTest : ToolshedTest { @@ -13,7 +17,7 @@ public async Task AllCommandsHaveDescriptions() await Server.WaitAssertion(() => { Assert.That(InvokeCommand("cmd:list where { cmd:descloc loc:tryloc isnull }", out var res)); - Assert.That((IEnumerable)res, Is.Empty, "All commands must have localized descriptions."); + Assert.That((IEnumerable)res!, Is.Empty, "All commands must have localized descriptions."); }); } } diff --git a/Content.IntegrationTests/Tests/Toolshed/ToolshedTest.cs b/Content.IntegrationTests/Tests/Toolshed/ToolshedTest.cs index d04c6c6b7ec..ca7eeac199d 100644 --- a/Content.IntegrationTests/Tests/Toolshed/ToolshedTest.cs +++ b/Content.IntegrationTests/Tests/Toolshed/ToolshedTest.cs @@ -1,5 +1,6 @@ #nullable enable using System.Collections.Generic; +using Content.IntegrationTests.Pair; using Content.Server.Administration.Managers; using Robust.Server.Player; using Robust.Shared.Players; @@ -14,22 +15,24 @@ namespace Content.IntegrationTests.Tests.Toolshed; [FixtureLifeCycle(LifeCycle.InstancePerTestCase)] public abstract class ToolshedTest : IInvocationContext { - protected PairTracker PairTracker = default!; + protected TestPair Pair = default!; protected virtual bool Connected => false; protected virtual bool AssertOnUnexpectedError => true; protected RobustIntegrationTest.ServerIntegrationInstance Server = default!; protected RobustIntegrationTest.ClientIntegrationInstance? Client = null; - protected ToolshedManager Toolshed = default!; + public ToolshedManager Toolshed { get; private set; } = default!; + public ToolshedEnvironment Environment => Toolshed.DefaultEnvironment; + protected IAdminManager AdminManager = default!; - protected IInvocationContext? Context = null; + protected IInvocationContext? InvocationContext = null; [TearDown] public async Task TearDownInternal() { - await PairTracker.CleanReturnAsync(); + await Pair.CleanReturnAsync(); await TearDown(); } @@ -42,12 +45,12 @@ protected virtual async Task TearDown() [SetUp] public virtual async Task Setup() { - PairTracker = await PoolManager.GetServerClient(new PoolSettings {Connected = Connected}); - Server = PairTracker.Pair.Server; + Pair = await PoolManager.GetServerClient(new PoolSettings {Connected = Connected}); + Server = Pair.Server; if (Connected) { - Client = PairTracker.Pair.Client; + Client = Pair.Client; await Client.WaitIdleAsync(); } @@ -62,10 +65,17 @@ protected bool InvokeCommand(string command, out object? result, IPlayerSession? return Toolshed.InvokeCommand(this, command, null, out result); } + protected T InvokeCommand(string command) + { + InvokeCommand(command, out var res); + Assert.That(res, Is.AssignableTo()); + return (T) res!; + } + protected void ParseCommand(string command, Type? inputType = null, Type? expectedType = null, bool once = false) { - var parser = new ForwardParser(command, Toolshed); - var success = CommandRun.TryParse(false, false, parser, inputType, expectedType, once, out _, out _, out var error); + var parser = new ParserContext(command, Toolshed); + var success = CommandRun.TryParse(false, parser, inputType, expectedType, once, out _, out _, out var error); if (error is not null) ReportError(error); @@ -76,9 +86,9 @@ protected void ParseCommand(string command, Type? inputType = null, Type? expect public bool CheckInvokable(CommandSpec command, out IConError? error) { - if (Context is not null) + if (InvocationContext is not null) { - return Context.CheckInvokable(command, out error); + return InvocationContext.CheckInvokable(command, out error); } error = null; @@ -91,9 +101,9 @@ public ICommonSession? Session { get { - if (Context is not null) + if (InvocationContext is not null) { - return Context.Session; + return InvocationContext.Session; } return InvocationSession; diff --git a/Content.IntegrationTests/Tests/Utility/EntitySystemExtensionsTest.cs b/Content.IntegrationTests/Tests/Utility/EntitySystemExtensionsTest.cs index 08bc19e1519..d460fd354f0 100644 --- a/Content.IntegrationTests/Tests/Utility/EntitySystemExtensionsTest.cs +++ b/Content.IntegrationTests/Tests/Utility/EntitySystemExtensionsTest.cs @@ -32,10 +32,10 @@ public sealed class EntitySystemExtensionsTest [Test] public async Task Test() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; - var testMap = await PoolManager.CreateTestMap(pairTracker); + var testMap = await pair.CreateTestMap(); var mapCoordinates = testMap.MapCoords; var entityCoordinates = testMap.GridCoords; @@ -95,7 +95,7 @@ await server.WaitAssertion(() => Assert.That(entity, Is.Not.Null); }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/Utility/EntityWhitelistTest.cs b/Content.IntegrationTests/Tests/Utility/EntityWhitelistTest.cs index 31a154af301..6b47ec4d8eb 100644 --- a/Content.IntegrationTests/Tests/Utility/EntityWhitelistTest.cs +++ b/Content.IntegrationTests/Tests/Utility/EntityWhitelistTest.cs @@ -58,10 +58,10 @@ public sealed class EntityWhitelistTest [Test] public async Task Test() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; - var testMap = await PoolManager.CreateTestMap(pairTracker); + var testMap = await pair.CreateTestMap(); var mapCoordinates = testMap.MapCoords; var sEntities = server.ResolveDependency(); @@ -118,7 +118,7 @@ await server.WaitAssertion(() => Assert.That(whitelistSer.IsValid(WhitelistTestInvalidTag), Is.False); }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/VendingMachineRestockTest.cs b/Content.IntegrationTests/Tests/VendingMachineRestockTest.cs index 6a0ddc91c78..7e1de7d0c88 100644 --- a/Content.IntegrationTests/Tests/VendingMachineRestockTest.cs +++ b/Content.IntegrationTests/Tests/VendingMachineRestockTest.cs @@ -12,6 +12,7 @@ using Content.Shared.Wires; using Content.Server.Wires; using Content.Shared.Prototypes; +using Content.Shared.Storage.Components; namespace Content.IntegrationTests.Tests { @@ -105,8 +106,8 @@ public sealed class VendingMachineRestockTest : EntitySystem [Test] public async Task TestAllRestocksAreAvailableToBuy() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; await server.WaitIdleAsync(); var prototypeManager = server.ResolveDependency(); @@ -120,7 +121,7 @@ await server.WaitAssertion(() => foreach (var proto in prototypeManager.EnumeratePrototypes()) { if (proto.Abstract - || pairTracker.Pair.IsTestPrototype(proto) + || pair.IsTestPrototype(proto) || !proto.HasComponent()) { continue; @@ -170,14 +171,14 @@ await server.WaitAssertion(() => }); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task TestCompleteRestockProcess() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; await server.WaitIdleAsync(); var mapManager = server.ResolveDependency(); @@ -193,7 +194,7 @@ public async Task TestCompleteRestockProcess() VendingMachineRestockComponent restockWrongComponent = default!; WiresPanelComponent machineWiresPanel = default!; - var testMap = await PoolManager.CreateTestMap(pairTracker); + var testMap = await pair.CreateTestMap(); await server.WaitAssertion(() => { @@ -256,14 +257,14 @@ await server.WaitAssertion(() => mapManager.DeleteMap(testMap.MapId); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task TestRestockBreaksOpen() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; await server.WaitIdleAsync(); var prototypeManager = server.ResolveDependency(); @@ -273,7 +274,7 @@ public async Task TestRestockBreaksOpen() var damageableSystem = entitySystemManager.GetEntitySystem(); - var testMap = await PoolManager.CreateTestMap(pairTracker); + var testMap = await pair.CreateTestMap(); EntityUid restock = default; @@ -320,14 +321,14 @@ await server.WaitAssertion(() => mapManager.DeleteMap(testMap.MapId); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } [Test] public async Task TestRestockInventoryBounds() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; await server.WaitIdleAsync(); var mapManager = server.ResolveDependency(); @@ -336,7 +337,7 @@ public async Task TestRestockInventoryBounds() var vendingMachineSystem = entitySystemManager.GetEntitySystem(); - var testMap = await PoolManager.CreateTestMap(pairTracker); + var testMap = await pair.CreateTestMap(); await server.WaitAssertion(() => { @@ -366,7 +367,7 @@ await server.WaitAssertion(() => "Machine's available inventory did not stay the same after a third restock."); }); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } } } diff --git a/Content.IntegrationTests/Tests/Weldable/WeldableTests.cs b/Content.IntegrationTests/Tests/Weldable/WeldableTests.cs index 504a51a33cb..6227f3dee1b 100644 --- a/Content.IntegrationTests/Tests/Weldable/WeldableTests.cs +++ b/Content.IntegrationTests/Tests/Weldable/WeldableTests.cs @@ -1,5 +1,5 @@ using Content.IntegrationTests.Tests.Interaction; -using Content.Server.Tools.Components; +using Content.Shared.Tools.Components; namespace Content.IntegrationTests.Tests.Weldable; @@ -16,11 +16,7 @@ public async Task WeldLocker() await SpawnTarget(Locker); var comp = Comp(); - Assert.Multiple(() => - { - Assert.That(comp.Weldable, Is.True); - Assert.That(comp.IsWelded, Is.False); - }); + Assert.That(comp.IsWelded, Is.False); await Interact(Weld); Assert.That(comp.IsWelded, Is.True); diff --git a/Content.MapRenderer/Painters/MapPainter.cs b/Content.MapRenderer/Painters/MapPainter.cs index 49524ba73f3..b799db78a5f 100644 --- a/Content.MapRenderer/Painters/MapPainter.cs +++ b/Content.MapRenderer/Painters/MapPainter.cs @@ -26,7 +26,7 @@ public static async IAsyncEnumerable> Paint(string map var stopwatch = new Stopwatch(); stopwatch.Start(); - await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings + await using var pair = await PoolManager.GetServerClient(new PoolSettings { DummyTicker = false, Connected = true, @@ -34,8 +34,8 @@ public static async IAsyncEnumerable> Paint(string map Map = map }); - var server = pairTracker.Pair.Server; - var client = pairTracker.Pair.Client; + var server = pair.Server; + var client = pair.Client; Console.WriteLine($"Loaded client and server in {(int) stopwatch.Elapsed.TotalMilliseconds} ms"); @@ -55,7 +55,7 @@ await client.WaitPost(() => var sEntityManager = server.ResolveDependency(); var sPlayerManager = server.ResolveDependency(); - await PoolManager.RunTicksSync(pairTracker.Pair, 10); + await pair.RunTicksSync(10); await Task.WhenAll(client.WaitIdleAsync(), server.WaitIdleAsync()); var sMapManager = server.ResolveDependency(); @@ -85,7 +85,7 @@ await server.WaitPost(() => } }); - await PoolManager.RunTicksSync(pairTracker.Pair, 10); + await pair.RunTicksSync(10); await Task.WhenAll(client.WaitIdleAsync(), server.WaitIdleAsync()); foreach (var (uid, grid) in grids) @@ -132,7 +132,7 @@ await server.WaitPost(() => // We don't care if it fails as we have already saved the images. try { - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); } catch { diff --git a/Content.MapRenderer/Program.cs b/Content.MapRenderer/Program.cs index 3735a08bf43..43dcff2c020 100644 --- a/Content.MapRenderer/Program.cs +++ b/Content.MapRenderer/Program.cs @@ -34,8 +34,8 @@ internal static async Task Main(string[] args) { Console.WriteLine("Didn't specify any maps to paint! Loading the map list..."); - await using var pairTracker = await PoolManager.GetServerClient(); - var mapIds = pairTracker.Pair.Server + await using var pair = await PoolManager.GetServerClient(); + var mapIds = pair.Server .ResolveDependency() .EnumeratePrototypes() .Select(map => map.ID) @@ -108,8 +108,8 @@ internal static async Task Main(string[] args) Console.WriteLine("Retrieving map ids by map file names..."); Console.Write("Fetching map prototypes... "); - await using var pairTracker = await PoolManager.GetServerClient(); - var mapPrototypes = pairTracker.Pair.Server + await using var pair = await PoolManager.GetServerClient(); + var mapPrototypes = pair.Server .ResolveDependency() .EnumeratePrototypes() .ToArray(); diff --git a/Content.Server/Abilities/Mime/MimePowersComponent.cs b/Content.Server/Abilities/Mime/MimePowersComponent.cs index 15db6b77093..fd4fc2c2af9 100644 --- a/Content.Server/Abilities/Mime/MimePowersComponent.cs +++ b/Content.Server/Abilities/Mime/MimePowersComponent.cs @@ -1,8 +1,6 @@ -using Content.Shared.Actions.ActionTypes; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -using Robust.Shared.Utility; namespace Content.Server.Abilities.Mime { @@ -10,7 +8,7 @@ namespace Content.Server.Abilities.Mime /// Lets its owner entity use mime powers, like placing invisible walls. /// [RegisterComponent] - public sealed class MimePowersComponent : Component + public sealed partial class MimePowersComponent : Component { /// /// Whether this component is active or not. @@ -24,16 +22,10 @@ public sealed class MimePowersComponent : Component [DataField("wallPrototype", customTypeSerializer: typeof(PrototypeIdSerializer))] public string WallPrototype = "WallInvisible"; - [DataField("invisibleWallAction")] - public InstantAction InvisibleWallAction = new() - { - UseDelay = TimeSpan.FromSeconds(30), - Icon = new SpriteSpecifier.Texture(new("Structures/Walls/solid.rsi/full.png")), - DisplayName = "mime-invisible-wall", - Description = "mime-invisible-wall-desc", - Priority = -1, - Event = new InvisibleWallActionEvent(), - }; + [DataField("invisibleWallAction", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string? InvisibleWallAction = "ActionMimeInvisibleWall"; + + [DataField("invisibleWallActionEntity")] public EntityUid? InvisibleWallActionEntity; // The vow zone lies below public bool VowBroken = false; diff --git a/Content.Server/Abilities/Mime/MimePowersSystem.cs b/Content.Server/Abilities/Mime/MimePowersSystem.cs index dc47c8fbc22..abc3b080fc1 100644 --- a/Content.Server/Abilities/Mime/MimePowersSystem.cs +++ b/Content.Server/Abilities/Mime/MimePowersSystem.cs @@ -1,16 +1,15 @@ using Content.Server.Popups; +using Content.Server.Speech.Muting; using Content.Shared.Actions; +using Content.Shared.Actions.Events; using Content.Shared.Alert; using Content.Shared.Coordinates.Helpers; -using Content.Shared.Physics; -using Content.Shared.Doors.Components; using Content.Shared.Maps; using Content.Shared.Mobs.Components; -using Robust.Shared.Physics.Components; -using Robust.Shared.Timing; -using Content.Server.Speech.Muting; +using Content.Shared.Physics; using Robust.Shared.Containers; using Robust.Shared.Map; +using Robust.Shared.Timing; namespace Content.Server.Abilities.Mime { @@ -31,6 +30,7 @@ public override void Initialize() SubscribeLocalEvent(OnComponentInit); SubscribeLocalEvent(OnInvisibleWall); } + public override void Update(float frameTime) { base.Update(frameTime); @@ -53,8 +53,8 @@ public override void Update(float frameTime) private void OnComponentInit(EntityUid uid, MimePowersComponent component, ComponentInit args) { EnsureComp(uid); - _actionsSystem.AddAction(uid, component.InvisibleWallAction, uid); _alertsSystem.ShowAlert(uid, AlertType.VowOfSilence); + _actionsSystem.AddAction(uid, ref component.InvisibleWallActionEntity, component.InvisibleWallAction, uid); } /// @@ -116,7 +116,7 @@ public void BreakVow(EntityUid uid, MimePowersComponent? mimePowers = null) RemComp(uid); _alertsSystem.ClearAlert(uid, AlertType.VowOfSilence); _alertsSystem.ShowAlert(uid, AlertType.VowBroken); - _actionsSystem.RemoveAction(uid, mimePowers.InvisibleWallAction); + _actionsSystem.RemoveAction(uid, mimePowers.InvisibleWallActionEntity); } /// @@ -139,11 +139,7 @@ public void RetakeVow(EntityUid uid, MimePowersComponent? mimePowers = null) AddComp(uid); _alertsSystem.ClearAlert(uid, AlertType.VowBroken); _alertsSystem.ShowAlert(uid, AlertType.VowOfSilence); - _actionsSystem.AddAction(uid, mimePowers.InvisibleWallAction, uid); + _actionsSystem.AddAction(uid, ref mimePowers.InvisibleWallActionEntity, mimePowers.InvisibleWallAction, uid); } } - - public sealed class InvisibleWallActionEvent : InstantActionEvent - { - } } diff --git a/Content.Server/Access/AccessWireAction.cs b/Content.Server/Access/AccessWireAction.cs index 739e908ee52..4ed9871c403 100644 --- a/Content.Server/Access/AccessWireAction.cs +++ b/Content.Server/Access/AccessWireAction.cs @@ -6,7 +6,7 @@ namespace Content.Server.Access; -public sealed class AccessWireAction : ComponentWireAction +public sealed partial class AccessWireAction : ComponentWireAction { public override Color Color { get; set; } = Color.Green; public override string Name { get; set; } = "wire-name-access"; diff --git a/Content.Server/Access/Components/AgentIDCardComponent.cs b/Content.Server/Access/Components/AgentIDCardComponent.cs index 37b6b25229c..4b92b43ea99 100644 --- a/Content.Server/Access/Components/AgentIDCardComponent.cs +++ b/Content.Server/Access/Components/AgentIDCardComponent.cs @@ -4,12 +4,12 @@ namespace Content.Server.Access.Components { [RegisterComponent] - public sealed class AgentIDCardComponent : Component + public sealed partial class AgentIDCardComponent : Component { /// /// Set of job icons that the agent ID card can show. /// [DataField("icons", customTypeSerializer: typeof(PrototypeIdHashSetSerializer))] - public readonly HashSet Icons = new(); + public HashSet Icons = new(); } } diff --git a/Content.Server/Access/Components/IdExaminableComponent.cs b/Content.Server/Access/Components/IdExaminableComponent.cs index f1b641b6dd1..2def517f408 100644 --- a/Content.Server/Access/Components/IdExaminableComponent.cs +++ b/Content.Server/Access/Components/IdExaminableComponent.cs @@ -3,6 +3,6 @@ namespace Content.Server.Access.Components; [RegisterComponent, Access(typeof(IdExaminableSystem))] -public sealed class IdExaminableComponent : Component +public sealed partial class IdExaminableComponent : Component { } diff --git a/Content.Server/Access/Components/PresetIdCardComponent.cs b/Content.Server/Access/Components/PresetIdCardComponent.cs index 76c650995b8..89850866d65 100644 --- a/Content.Server/Access/Components/PresetIdCardComponent.cs +++ b/Content.Server/Access/Components/PresetIdCardComponent.cs @@ -1,9 +1,9 @@ namespace Content.Server.Access.Components { [RegisterComponent] - public sealed class PresetIdCardComponent : Component + public sealed partial class PresetIdCardComponent : Component { [DataField("job")] - public readonly string? JobName; + public string? JobName; } } diff --git a/Content.Server/Access/Systems/AccessOverriderSystem.cs b/Content.Server/Access/Systems/AccessOverriderSystem.cs index 8184d5cbd8c..a41c0839da1 100644 --- a/Content.Server/Access/Systems/AccessOverriderSystem.cs +++ b/Content.Server/Access/Systems/AccessOverriderSystem.cs @@ -46,7 +46,7 @@ private void AfterInteractOn(EntityUid uid, AccessOverriderComponent component, if (!_interactionSystem.InRangeUnobstructed(args.User, (EntityUid) args.Target)) return; - var doAfterEventArgs = new DoAfterArgs(args.User, component.DoAfterTime, new AccessOverriderDoAfterEvent(), uid, target: args.Target, used: uid) + var doAfterEventArgs = new DoAfterArgs(EntityManager, args.User, component.DoAfterTime, new AccessOverriderDoAfterEvent(), uid, target: args.Target, used: uid) { BreakOnTargetMove = true, BreakOnUserMove = true, @@ -260,6 +260,6 @@ private bool PrivilegedIdIsAuthorized(EntityUid uid, AccessOverriderComponent? c return true; var privilegedId = component.PrivilegedIdSlot.Item; - return privilegedId != null && _accessReader.IsAllowed(privilegedId.Value, reader); + return privilegedId != null && _accessReader.IsAllowed(privilegedId.Value, uid, reader); } } diff --git a/Content.Server/Access/Systems/AgentIDCardSystem.cs b/Content.Server/Access/Systems/AgentIDCardSystem.cs index 1b5037e8d51..b0772fcc32b 100644 --- a/Content.Server/Access/Systems/AgentIDCardSystem.cs +++ b/Content.Server/Access/Systems/AgentIDCardSystem.cs @@ -66,7 +66,7 @@ private void AfterUIOpen(EntityUid uid, AgentIDCardComponent component, AfterAct return; var state = new AgentIDCardBoundUserInterfaceState(idCard.FullName ?? "", idCard.JobTitle ?? "", component.Icons); - UserInterfaceSystem.SetUiState(ui, state, args.Session); + _uiSystem.SetUiState(ui, state, args.Session); } private void OnJobChanged(EntityUid uid, AgentIDCardComponent comp, AgentIDCardJobChangedMessage args) diff --git a/Content.Server/Access/Systems/IdCardConsoleSystem.cs b/Content.Server/Access/Systems/IdCardConsoleSystem.cs index 6730a07137c..10bf65d0c61 100644 --- a/Content.Server/Access/Systems/IdCardConsoleSystem.cs +++ b/Content.Server/Access/Systems/IdCardConsoleSystem.cs @@ -188,7 +188,7 @@ private bool PrivilegedIdIsAuthorized(EntityUid uid, IdCardConsoleComponent? com return true; var privilegedId = component.PrivilegedIdSlot.Item; - return privilegedId != null && _accessReader.IsAllowed(privilegedId.Value, reader); + return privilegedId != null && _accessReader.IsAllowed(privilegedId.Value, uid, reader); } private void UpdateStationRecord(EntityUid uid, EntityUid targetId, string newFullName, string newJobTitle, JobPrototype? newJobProto) diff --git a/Content.Server/Actions/ActionOnInteractComponent.cs b/Content.Server/Actions/ActionOnInteractComponent.cs index 5158130cb82..9efe3d6ba03 100644 --- a/Content.Server/Actions/ActionOnInteractComponent.cs +++ b/Content.Server/Actions/ActionOnInteractComponent.cs @@ -1,5 +1,6 @@ -using Content.Shared.Actions.ActionTypes; using Content.Shared.Interaction; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; namespace Content.Server.Actions; @@ -17,14 +18,10 @@ namespace Content.Server.Actions; /// This component mainly exists as a lazy way to add utility entities that can do things like cast "spells". /// [RegisterComponent] -public sealed class ActionOnInteractComponent : Component +public sealed partial class ActionOnInteractComponent : Component { - [DataField("activateActions")] - public List? ActivateActions; + [DataField("actions", customTypeSerializer: typeof(PrototypeIdListSerializer))] + public List? Actions; - [DataField("entityActions")] - public List? EntityActions; - - [DataField("worldActions")] - public List? WorldActions; + [DataField("actionEntities")] public List? ActionEntities; } diff --git a/Content.Server/Actions/ActionOnInteractSystem.cs b/Content.Server/Actions/ActionOnInteractSystem.cs index baa01e9123f..31f579f7ece 100644 --- a/Content.Server/Actions/ActionOnInteractSystem.cs +++ b/Content.Server/Actions/ActionOnInteractSystem.cs @@ -1,5 +1,4 @@ using Content.Shared.Actions; -using Content.Shared.Actions.ActionTypes; using Content.Shared.Interaction; using Robust.Shared.Random; using Robust.Shared.Timing; @@ -25,51 +24,41 @@ public override void Initialize() private void OnActivate(EntityUid uid, ActionOnInteractComponent component, ActivateInWorldEvent args) { - if (args.Handled || component.ActivateActions == null) + if (args.Handled || component.ActionEntities == null) return; - var options = new List(); - foreach (var action in component.ActivateActions) - { - if (ValidAction(action)) - options.Add(action); - } - + var options = GetValidActions(component.ActionEntities); if (options.Count == 0) return; - var act = _random.Pick(options); + var (actId, act) = _random.Pick(options); if (act.Event != null) act.Event.Performer = args.User; act.Provider = uid; - _actions.PerformAction(args.User, null, act, act.Event, _timing.CurTime, false); + _actions.PerformAction(args.User, null, actId, act, act.Event, _timing.CurTime, false); args.Handled = true; } private void OnAfterInteract(EntityUid uid, ActionOnInteractComponent component, AfterInteractEvent args) { - if (args.Handled) + if (args.Handled || component.ActionEntities == null) return; // First, try entity target actions - if (args.Target != null && component.EntityActions != null) + if (args.Target != null) { - var entOptions = new List(); - foreach (var action in component.EntityActions) + var entOptions = GetValidActions(component.ActionEntities, args.CanReach); + for (var i = entOptions.Count - 1; i >= 0; i--) { - if (!ValidAction(action, args.CanReach)) - continue; - + var action = entOptions[i].Comp; if (!_actions.ValidateEntityTarget(args.User, args.Target.Value, action)) - continue; - - entOptions.Add(action); + entOptions.RemoveAt(i); } if (entOptions.Count > 0) { - var entAct = _random.Pick(entOptions); + var (entActId, entAct) = _random.Pick(entOptions); if (entAct.Event != null) { entAct.Event.Performer = args.User; @@ -77,32 +66,25 @@ private void OnAfterInteract(EntityUid uid, ActionOnInteractComponent component, } entAct.Provider = uid; - _actions.PerformAction(args.User, null, entAct, entAct.Event, _timing.CurTime, false); + _actions.PerformAction(args.User, null, entActId, entAct, entAct.Event, _timing.CurTime, false); args.Handled = true; return; } } // else: try world target actions - if (component.WorldActions == null) - return; - - var options = new List(); - foreach (var action in component.WorldActions) + var options = GetValidActions(component.ActionEntities, args.CanReach); + for (var i = options.Count - 1; i >= 0; i--) { - if (!ValidAction(action, args.CanReach)) - continue; - + var action = options[i].Comp; if (!_actions.ValidateWorldTarget(args.User, args.ClickLocation, action)) - continue; - - options.Add(action); + options.RemoveAt(i); } if (options.Count == 0) return; - var act = _random.Pick(options); + var (actId, act) = _random.Pick(options); if (act.Event != null) { act.Event.Performer = args.User; @@ -110,22 +92,44 @@ private void OnAfterInteract(EntityUid uid, ActionOnInteractComponent component, } act.Provider = uid; - _actions.PerformAction(args.User, null, act, act.Event, _timing.CurTime, false); + _actions.PerformAction(args.User, null, actId, act, act.Event, _timing.CurTime, false); args.Handled = true; } - private bool ValidAction(ActionType act, bool canReach = true) + private bool ValidAction(BaseActionComponent action, bool canReach = true) { - if (!act.Enabled) + if (!action.Enabled) return false; - if (act.Charges.HasValue && act.Charges <= 0) + if (action.Charges.HasValue && action.Charges <= 0) return false; var curTime = _timing.CurTime; - if (act.Cooldown.HasValue && act.Cooldown.Value.End > curTime) + if (action.Cooldown.HasValue && action.Cooldown.Value.End > curTime) return false; - return canReach || act is TargetedAction { CheckCanAccess: false }; + return canReach || action is BaseTargetActionComponent { CheckCanAccess: false }; + } + + private List<(EntityUid Id, T Comp)> GetValidActions(List? actions, bool canReach = true) where T : BaseActionComponent + { + var valid = new List<(EntityUid Id, T Comp)>(); + + if (actions == null) + return valid; + + foreach (var id in actions) + { + if (!_actions.TryGetActionData(id, out var baseAction) || + baseAction as T is not { } action || + !ValidAction(action, canReach)) + { + continue; + } + + valid.Add((id, action)); + } + + return valid; } } diff --git a/Content.Server/Actions/ActionsSystem.cs b/Content.Server/Actions/ActionsSystem.cs index 495640d98b3..21054bbd7a7 100644 --- a/Content.Server/Actions/ActionsSystem.cs +++ b/Content.Server/Actions/ActionsSystem.cs @@ -1,9 +1,5 @@ -using Content.Server.Chat; -using Content.Server.Chat.Systems; using Content.Shared.Actions; -using Content.Shared.Actions.ActionTypes; using JetBrains.Annotations; -using Robust.Server.GameObjects; namespace Content.Server.Actions { diff --git a/Content.Server/Administration/Commands/AGhost.cs b/Content.Server/Administration/Commands/AGhost.cs index 97b1c48ae10..42a8600ff17 100644 --- a/Content.Server/Administration/Commands/AGhost.cs +++ b/Content.Server/Administration/Commands/AGhost.cs @@ -1,9 +1,7 @@ using Content.Server.GameTicking; -using Content.Server.Ghost.Components; -using Content.Server.Mind; -using Content.Server.Players; using Content.Shared.Administration; using Content.Shared.Ghost; +using Content.Shared.Mind; using Robust.Server.Player; using Robust.Shared.Console; @@ -27,19 +25,18 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - var mind = player.ContentData()?.Mind; - - if (mind == null) + var mindSystem = _entities.System(); + if (!mindSystem.TryGetMind(player, out var mindId, out var mind)) { shell.WriteLine("You can't ghost here!"); return; } - - var mindSystem = _entities.System(); + + var metaDataSystem = _entities.System(); if (mind.VisitingEntity != default && _entities.TryGetComponent(mind.VisitingEntity, out var oldGhostComponent)) { - mindSystem.UnVisit(mind); + mindSystem.UnVisit(mindId, mind); // If already an admin ghost, then return to body. if (oldGhostComponent.CanGhostInteract) return; @@ -56,17 +53,17 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) if (canReturn) { // TODO: Remove duplication between all this and "GamePreset.OnGhostAttempt()"... - if(!string.IsNullOrWhiteSpace(mind.CharacterName)) - _entities.GetComponent(ghost).EntityName = mind.CharacterName; + if (!string.IsNullOrWhiteSpace(mind.CharacterName)) + metaDataSystem.SetEntityName(ghost, mind.CharacterName); else if (!string.IsNullOrWhiteSpace(mind.Session?.Name)) - _entities.GetComponent(ghost).EntityName = mind.Session.Name; + metaDataSystem.SetEntityName(ghost, mind.Session.Name); - mindSystem.Visit(mind, ghost); + mindSystem.Visit(mindId, ghost, mind); } else { - _entities.GetComponent(ghost).EntityName = player.Name; - mindSystem.TransferTo(mind, ghost); + metaDataSystem.SetEntityName(ghost, player.Name); + mindSystem.TransferTo(mindId, ghost, mind: mind); } var comp = _entities.GetComponent(ghost); diff --git a/Content.Server/Administration/Commands/AddBodyPartCommand.cs b/Content.Server/Administration/Commands/AddBodyPartCommand.cs index 53af89bf9d2..235a1ed871b 100644 --- a/Content.Server/Administration/Commands/AddBodyPartCommand.cs +++ b/Content.Server/Administration/Commands/AddBodyPartCommand.cs @@ -7,6 +7,8 @@ namespace Content.Server.Administration.Commands [AdminCommand(AdminFlags.Admin)] public sealed class AddBodyPartCommand : IConsoleCommand { + [Dependency] private readonly IEntityManager _entManager = default!; + public string Command => "addbodypart"; public string Description => "Adds a given entity to a containing body."; public string Help => "Usage: addbodypart "; @@ -19,20 +21,21 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!EntityUid.TryParse(args[0], out var childId)) + if (!NetEntity.TryParse(args[0], out var childNetId)) { shell.WriteError(Loc.GetString("shell-entity-uid-must-be-number")); return; } - if (!EntityUid.TryParse(args[1], out var parentId)) + if (!NetEntity.TryParse(args[1], out var parentNetId)) { shell.WriteError(Loc.GetString("shell-entity-uid-must-be-number")); return; } - var entityManager = IoCManager.Resolve(); - var bodySystem = entityManager.System(); + var childId = _entManager.GetEntity(childNetId); + var parentId = _entManager.GetEntity(parentNetId); + var bodySystem = _entManager.System(); if (bodySystem.TryCreatePartSlotAndAttach(parentId, args[2], childId)) { diff --git a/Content.Server/Administration/Commands/AddEntityStorageCommand.cs b/Content.Server/Administration/Commands/AddEntityStorageCommand.cs index c91ed6512e1..4c562d606d4 100644 --- a/Content.Server/Administration/Commands/AddEntityStorageCommand.cs +++ b/Content.Server/Administration/Commands/AddEntityStorageCommand.cs @@ -8,6 +8,8 @@ namespace Content.Server.Administration.Commands [AdminCommand(AdminFlags.Admin)] public sealed class AddEntityStorageCommand : IConsoleCommand { + [Dependency] private readonly IEntityManager _entManager = default!; + public string Command => "addstorage"; public string Description => "Adds a given entity to a containing storage."; public string Help => "Usage: addstorage "; @@ -20,24 +22,22 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!EntityUid.TryParse(args[0], out var entityUid)) + if (!NetEntity.TryParse(args[0], out var entityUidNet) || !_entManager.TryGetEntity(entityUidNet, out var entityUid)) { shell.WriteError(Loc.GetString("shell-entity-uid-must-be-number")); return; } - if (!EntityUid.TryParse(args[1], out var storageUid)) + if (!NetEntity.TryParse(args[1], out var storageUidNet) || !_entManager.TryGetEntity(storageUidNet, out var storageUid)) { shell.WriteError(Loc.GetString("shell-entity-uid-must-be-number")); return; } - var entityManager = IoCManager.Resolve(); - - if (entityManager.HasComponent(storageUid) && - entityManager.EntitySysManager.TryGetEntitySystem(out var storageSys)) + if (_entManager.HasComponent(storageUid) && + _entManager.EntitySysManager.TryGetEntitySystem(out var storageSys)) { - storageSys.Insert(entityUid, storageUid); + storageSys.Insert(entityUid.Value, storageUid.Value); } else { diff --git a/Content.Server/Administration/Commands/AddMechanismCommand.cs b/Content.Server/Administration/Commands/AddMechanismCommand.cs index 73ec8ffd813..0f7a442bb13 100644 --- a/Content.Server/Administration/Commands/AddMechanismCommand.cs +++ b/Content.Server/Administration/Commands/AddMechanismCommand.cs @@ -7,6 +7,8 @@ namespace Content.Server.Administration.Commands [AdminCommand(AdminFlags.Admin)] public sealed class AddMechanismCommand : IConsoleCommand { + [Dependency] private readonly IEntityManager _entManager = default!; + public string Command => "addmechanism"; public string Description => "Adds a given entity to a containing body."; public string Help => "Usage: addmechanism "; @@ -19,20 +21,19 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!EntityUid.TryParse(args[0], out var organId)) + if (!NetEntity.TryParse(args[0], out var organIdNet) || !_entManager.TryGetEntity(organIdNet, out var organId)) { shell.WriteError(Loc.GetString("shell-entity-uid-must-be-number")); return; } - if (!EntityUid.TryParse(args[1], out var partId)) + if (!NetEntity.TryParse(args[1], out var partIdNet) || !_entManager.TryGetEntity(partIdNet, out var partId)) { shell.WriteError(Loc.GetString("shell-entity-uid-must-be-number")); return; } - var entityManager = IoCManager.Resolve(); - var bodySystem = entityManager.System(); + var bodySystem = _entManager.System(); if (bodySystem.AddOrganToFirstValidSlot(organId, partId)) { diff --git a/Content.Server/Administration/Commands/AddPolymorphActionCommand.cs b/Content.Server/Administration/Commands/AddPolymorphActionCommand.cs index 40544327a9f..6223df7a6cb 100644 --- a/Content.Server/Administration/Commands/AddPolymorphActionCommand.cs +++ b/Content.Server/Administration/Commands/AddPolymorphActionCommand.cs @@ -8,6 +8,8 @@ namespace Content.Server.Administration.Commands; [AdminCommand(AdminFlags.Fun)] public sealed class AddPolymorphActionCommand : IConsoleCommand { + [Dependency] private readonly IEntityManager _entityManager = default!; + public string Command => "addpolymorphaction"; public string Description => Loc.GetString("add-polymorph-action-command-description"); @@ -22,16 +24,15 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!EntityUid.TryParse(args[0], 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")); return; } - var entityManager = IoCManager.Resolve(); - var polySystem = entityManager.EntitySysManager.GetEntitySystem(); + var polySystem = _entityManager.EntitySysManager.GetEntitySystem(); - entityManager.EnsureComponent(entityUid); - polySystem.CreatePolymorphAction(args[1], entityUid); + _entityManager.EnsureComponent(entityUid.Value); + polySystem.CreatePolymorphAction(args[1], entityUid.Value); } } diff --git a/Content.Server/Administration/Commands/AddReagent.cs b/Content.Server/Administration/Commands/AddReagent.cs index aef7f04d46a..f18dd3e99d3 100644 --- a/Content.Server/Administration/Commands/AddReagent.cs +++ b/Content.Server/Administration/Commands/AddReagent.cs @@ -14,6 +14,9 @@ namespace Content.Server.Administration.Commands [AdminCommand(AdminFlags.Admin)] public sealed class AddReagent : IConsoleCommand { + [Dependency] private readonly IEntityManager _entManager = default!; + [Dependency] private readonly IPrototypeManager _protomanager = default!; + public string Command => "addreagent"; public string Description => "Add (or remove) some amount of reagent from some solution."; public string Help => $"Usage: {Command} "; @@ -26,13 +29,13 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!EntityUid.TryParse(args[0], out var uid)) + if (!NetEntity.TryParse(args[0], out var uidNet) || !_entManager.TryGetEntity(uidNet, out var uid)) { shell.WriteLine($"Invalid entity id."); return; } - if (!IoCManager.Resolve().TryGetComponent(uid, out SolutionContainerManagerComponent? man)) + if (!_entManager.TryGetComponent(uid, out SolutionContainerManagerComponent? man)) { shell.WriteLine($"Entity does not have any solutions."); return; @@ -46,7 +49,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) } var solution = man.Solutions[args[1]]; - if (!IoCManager.Resolve().HasIndex(args[2])) + if (!_protomanager.HasIndex(args[2])) { shell.WriteLine($"Unknown reagent prototype"); return; @@ -60,9 +63,9 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) var quantity = FixedPoint2.New(MathF.Abs(quantityFloat)); if (quantityFloat > 0) - EntitySystem.Get().TryAddReagent(uid, solution, args[2], quantity, out var _); + _entManager.System().TryAddReagent(uid.Value, solution, args[2], quantity, out _); else - EntitySystem.Get().TryRemoveReagent(uid, solution, args[2], quantity); + _entManager.System().RemoveReagent(uid.Value, solution, args[2], quantity); } } } diff --git a/Content.Server/Administration/Commands/ClearBluespaceLockerLinks.cs b/Content.Server/Administration/Commands/ClearBluespaceLockerLinks.cs index a0c04da38ef..7d7e0ab6ce9 100644 --- a/Content.Server/Administration/Commands/ClearBluespaceLockerLinks.cs +++ b/Content.Server/Administration/Commands/ClearBluespaceLockerLinks.cs @@ -7,6 +7,8 @@ namespace Content.Server.Administration.Commands; [AdminCommand(AdminFlags.Admin)] public sealed class ClearBluespaceLockerLinks : IConsoleCommand { + [Dependency] private readonly IEntityManager _entityManager = default!; + public string Command => "clearbluespacelockerlinks"; public string Description => "Removes the bluespace links of the given uid. Does not remove links this uid is the target of."; public string Help => "Usage: clearbluespacelockerlinks "; @@ -19,15 +21,12 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!EntityUid.TryParse(args[0], 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")); return; } - var entityManager = IoCManager.Resolve(); - - if (entityManager.TryGetComponent(entityUid, out var originComponent)) - entityManager.RemoveComponent(entityUid, originComponent); + _entityManager.RemoveComponent(entityUid.Value); } } diff --git a/Content.Server/Administration/Commands/ControlMob.cs b/Content.Server/Administration/Commands/ControlMob.cs index 18fb3bbb65a..2d205e44d3b 100644 --- a/Content.Server/Administration/Commands/ControlMob.cs +++ b/Content.Server/Administration/Commands/ControlMob.cs @@ -1,10 +1,7 @@ -using Content.Server.Mind; -using Content.Server.Mind.Components; -using Content.Server.Players; using Content.Shared.Administration; +using Content.Shared.Mind; using Robust.Server.Player; using Robust.Shared.Console; -using Robust.Shared.Utility; namespace Content.Server.Administration.Commands { @@ -45,18 +42,14 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!_entities.HasComponent(target)) + var mindSystem = _entities.System(); + if (!mindSystem.TryGetMind(target, out var mindId, out var mind)) { shell.WriteLine(Loc.GetString("shell-entity-is-not-mob")); return; } - var mind = player.ContentData()?.Mind; - - DebugTools.AssertNotNull(mind); - - var mindSystem = _entities.System(); - mindSystem.TransferTo(mind!, target); + mindSystem.TransferTo(mindId, target, mind: mind); } } } diff --git a/Content.Server/Administration/Commands/DirtyCommand.cs b/Content.Server/Administration/Commands/DirtyCommand.cs index daf25fc6cc7..0ed8689d7fc 100644 --- a/Content.Server/Administration/Commands/DirtyCommand.cs +++ b/Content.Server/Administration/Commands/DirtyCommand.cs @@ -6,28 +6,29 @@ namespace Content.Server.Administration.Commands; [AdminCommand(AdminFlags.Debug)] public sealed class DirtyCommand : IConsoleCommand { + [Dependency] private readonly IEntityManager _entManager = default!; + public string Command => "dirty"; public string Description => "Marks all components on an entity as dirty, if not specified, dirties everything"; public string Help => $"Usage: {Command} [entityUid]"; public async void Execute(IConsoleShell shell, string argStr, string[] args) { - var entityManager = IoCManager.Resolve(); switch (args.Length) { case 0: - foreach (var entity in entityManager.GetEntities()) + foreach (var entity in _entManager.GetEntities()) { - DirtyAll(entityManager, entity); + DirtyAll(_entManager, entity); } break; case 1: - if (!EntityUid.TryParse(args[0], out var parsedTarget)) + if (!NetEntity.TryParse(args[0], out var parsedTarget)) { shell.WriteError(Loc.GetString("shell-entity-uid-must-be-number")); return; } - DirtyAll(entityManager, parsedTarget); + DirtyAll(_entManager, _entManager.GetEntity(parsedTarget)); break; default: shell.WriteLine(Loc.GetString("shell-wrong-arguments-number")); diff --git a/Content.Server/Administration/Commands/LinkBluespaceLocker.cs b/Content.Server/Administration/Commands/LinkBluespaceLocker.cs index 59d16745dd3..d2f7e4de159 100644 --- a/Content.Server/Administration/Commands/LinkBluespaceLocker.cs +++ b/Content.Server/Administration/Commands/LinkBluespaceLocker.cs @@ -7,6 +7,8 @@ namespace Content.Server.Administration.Commands; [AdminCommand(AdminFlags.Admin)] public sealed class LinkBluespaceLocker : IConsoleCommand { + [Dependency] private readonly IEntityManager _entManager = default!; + public string Command => "linkbluespacelocker"; public string Description => "Links an entity, the target, to another as a bluespace locker target."; public string Help => "Usage: linkbluespacelocker "; @@ -19,44 +21,42 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!Boolean.TryParse(args[0], out var bidirectional)) + if (!bool.TryParse(args[0], out var bidirectional)) { shell.WriteError(Loc.GetString("shell-invalid-bool")); return; } - if (!EntityUid.TryParse(args[1], out var originUid)) + if (!NetEntity.TryParse(args[1], out var originUidNet) || !_entManager.TryGetEntity(originUidNet, out var originUid)) { shell.WriteError(Loc.GetString("shell-entity-uid-must-be-number")); return; } - if (!EntityUid.TryParse(args[2], out var targetUid)) + if (!NetEntity.TryParse(args[2], out var targetUidNet) || !_entManager.TryGetEntity(targetUidNet, out var targetUid)) { shell.WriteError(Loc.GetString("shell-entity-uid-must-be-number")); return; } - var entityManager = IoCManager.Resolve(); - - if (!entityManager.TryGetComponent(originUid, out var originComponent)) + if (!_entManager.HasComponent(originUid)) { shell.WriteError(Loc.GetString("shell-entity-with-uid-lacks-component", ("uid", originUid), ("componentName", nameof(EntityStorageComponent)))); return; } - if (!entityManager.TryGetComponent(targetUid, out var targetComponent)) + if (!_entManager.HasComponent(targetUid)) { shell.WriteError(Loc.GetString("shell-entity-with-uid-lacks-component", ("uid", targetUid), ("componentName", nameof(EntityStorageComponent)))); return; } - entityManager.EnsureComponent(originUid, out var originBluespaceComponent); - originBluespaceComponent.BluespaceLinks.Add(targetUid); - entityManager.EnsureComponent(targetUid, out var targetBluespaceComponent); + _entManager.EnsureComponent(originUid.Value, out var originBluespaceComponent); + originBluespaceComponent.BluespaceLinks.Add(targetUid.Value); + _entManager.EnsureComponent(targetUid.Value, out var targetBluespaceComponent); if (bidirectional) { - targetBluespaceComponent.BluespaceLinks.Add(originUid); + targetBluespaceComponent.BluespaceLinks.Add(originUid.Value); } else if (targetBluespaceComponent.BluespaceLinks.Count == 0) { diff --git a/Content.Server/Administration/Commands/OSay.cs b/Content.Server/Administration/Commands/OSay.cs index e89bd568818..2f17bd9d70a 100644 --- a/Content.Server/Administration/Commands/OSay.cs +++ b/Content.Server/Administration/Commands/OSay.cs @@ -46,7 +46,7 @@ public override void Execute(IConsoleShell shell, string argStr, string[] args) var chatType = (InGameICChatType) Enum.Parse(typeof(InGameICChatType), args[1]); - if (!EntityUid.TryParse(args[0], out var source) || !_entityManager.EntityExists(source)) + if (!NetEntity.TryParse(args[0], out var sourceNet) || !_entityManager.TryGetEntity(sourceNet, out var source) || !_entityManager.EntityExists(source)) { shell.WriteLine(Loc.GetString("osay-command-error-euid", ("arg", args[0]))); return; @@ -56,7 +56,7 @@ public override void Execute(IConsoleShell shell, string argStr, string[] args) if (string.IsNullOrEmpty(message)) return; - _entityManager.System().TrySendInGameICMessage(source, message, chatType, false); - _adminLogger.Add(LogType.Action, LogImpact.Low, $"{(shell.Player != null ? shell.Player.Name : "An administrator")} forced {_entityManager.ToPrettyString(source)} to {args[1]}: {message}"); + _entityManager.System().TrySendInGameICMessage(source.Value, message, chatType, false); + _adminLogger.Add(LogType.Action, LogImpact.Low, $"{(shell.Player != null ? shell.Player.Name : "An administrator")} forced {_entityManager.ToPrettyString(source.Value)} to {args[1]}: {message}"); } } diff --git a/Content.Server/Administration/Commands/OwoifyCommand.cs b/Content.Server/Administration/Commands/OwoifyCommand.cs index b91bfea36c0..73a1236d194 100644 --- a/Content.Server/Administration/Commands/OwoifyCommand.cs +++ b/Content.Server/Administration/Commands/OwoifyCommand.cs @@ -34,10 +34,10 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) var meta = entityManager.GetComponent(eUid); - var random = IoCManager.Resolve(); - var owoSys = EntitySystem.Get(); + var owoSys = entityManager.System(); + var metaDataSys = entityManager.System(); - meta.EntityName = owoSys.Accentuate(meta.EntityName); - meta.EntityDescription = owoSys.Accentuate(meta.EntityDescription); + metaDataSys.SetEntityName(eUid, owoSys.Accentuate(meta.EntityName), meta); + metaDataSys.SetEntityDescription(eUid, owoSys.Accentuate(meta.EntityDescription), meta); } } diff --git a/Content.Server/Administration/Commands/PolymorphCommand.cs b/Content.Server/Administration/Commands/PolymorphCommand.cs deleted file mode 100644 index f8d465a5419..00000000000 --- a/Content.Server/Administration/Commands/PolymorphCommand.cs +++ /dev/null @@ -1,47 +0,0 @@ -using Content.Server.Polymorph.Components; -using Content.Server.Polymorph.Systems; -using Content.Shared.Administration; -using Content.Shared.Polymorph; -using Robust.Shared.Console; -using Robust.Shared.Prototypes; - -namespace Content.Server.Administration.Commands; - -[AdminCommand(AdminFlags.Fun)] -public sealed class PolymorphCommand : IConsoleCommand -{ - public string Command => "polymorph"; - - public string Description => Loc.GetString("polymorph-command-description"); - - public string Help => Loc.GetString("polymorph-command-help-text"); - - public void Execute(IConsoleShell shell, string argStr, string[] args) - { - if (args.Length != 2) - { - shell.WriteError(Loc.GetString("shell-wrong-arguments-number")); - return; - } - - if (!EntityUid.TryParse(args[0], out var entityUid)) - { - shell.WriteError(Loc.GetString("shell-entity-uid-must-be-number")); - return; - } - - var protoManager = IoCManager.Resolve(); - - if (!protoManager.TryIndex(args[1], out var polyproto)) - { - shell.WriteError(Loc.GetString("polymorph-not-valid-prototype-error")); - return; - } - - var entityManager = IoCManager.Resolve(); - var polySystem = entityManager.EntitySysManager.GetEntitySystem(); - - entityManager.EnsureComponent(entityUid); - polySystem.PolymorphEntity(entityUid, polyproto); - } -} diff --git a/Content.Server/Administration/Commands/RemoveBodyPartCommand.cs b/Content.Server/Administration/Commands/RemoveBodyPartCommand.cs index fbfa62ad6ae..179f75d62db 100644 --- a/Content.Server/Administration/Commands/RemoveBodyPartCommand.cs +++ b/Content.Server/Administration/Commands/RemoveBodyPartCommand.cs @@ -7,6 +7,8 @@ namespace Content.Server.Administration.Commands [AdminCommand(AdminFlags.Admin)] public sealed class RemoveBodyPartCommand : IConsoleCommand { + [Dependency] private readonly IEntityManager _entManager = default!; + public string Command => "rmbodypart"; public string Description => "Removes a given entity from it's containing body, if any."; public string Help => "Usage: rmbodypart "; @@ -19,18 +21,17 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!EntityUid.TryParse(args[0], out var entityUid)) + if (!NetEntity.TryParse(args[0], out var entityUidNet) || !_entManager.TryGetEntity(entityUidNet, out var entityUid)) { shell.WriteError(Loc.GetString("shell-entity-uid-must-be-number")); return; } - var entityManager = IoCManager.Resolve(); - var bodySystem = entityManager.System(); + var bodySystem = _entManager.System(); if (bodySystem.DropPart(entityUid)) { - shell.WriteLine($"Removed body part {entityManager.ToPrettyString(entityUid)}."); + shell.WriteLine($"Removed body part {_entManager.ToPrettyString(entityUid.Value)}."); } else { diff --git a/Content.Server/Administration/Commands/RemoveEntityStorageCommand.cs b/Content.Server/Administration/Commands/RemoveEntityStorageCommand.cs index 990fc1dd0eb..48663f579d6 100644 --- a/Content.Server/Administration/Commands/RemoveEntityStorageCommand.cs +++ b/Content.Server/Administration/Commands/RemoveEntityStorageCommand.cs @@ -8,6 +8,8 @@ namespace Content.Server.Administration.Commands [AdminCommand(AdminFlags.Admin)] public sealed class RemoveEntityStorageCommand : IConsoleCommand { + [Dependency] private readonly IEntityManager _entManager = default!; + public string Command => "rmstorage"; public string Description => "Removes a given entity from it's containing storage, if any."; public string Help => "Usage: rmstorage "; @@ -20,22 +22,23 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!EntityUid.TryParse(args[0], out var entityUid)) + if (!NetEntity.TryParse(args[0], out var entityNet) || !_entManager.TryGetEntity(entityNet, out var entityUid)) { shell.WriteError(Loc.GetString("shell-entity-uid-must-be-number")); return; } - var entityManager = IoCManager.Resolve(); + if (!_entManager.EntitySysManager.TryGetEntitySystem(out var entstorage)) + return; - if (!entityManager.EntitySysManager.TryGetEntitySystem(out var entstorage)) return; - if (!entityManager.TryGetComponent(entityUid, out var transform)) return; + if (!_entManager.TryGetComponent(entityUid, out var transform)) + return; var parent = transform.ParentUid; - if (entityManager.TryGetComponent(parent, out var storage)) + if (_entManager.TryGetComponent(parent, out var storage)) { - entstorage.Remove(entityUid, storage.Owner, storage); + entstorage.Remove(entityUid.Value, storage.Owner, storage); } else { diff --git a/Content.Server/Administration/Commands/RemoveMechanismCommand.cs b/Content.Server/Administration/Commands/RemoveMechanismCommand.cs index 37ccc97fdd4..cabf6c582b6 100644 --- a/Content.Server/Administration/Commands/RemoveMechanismCommand.cs +++ b/Content.Server/Administration/Commands/RemoveMechanismCommand.cs @@ -7,6 +7,8 @@ namespace Content.Server.Administration.Commands [AdminCommand(AdminFlags.Admin)] public sealed class RemoveMechanismCommand : IConsoleCommand { + [Dependency] private readonly IEntityManager _entManager = default!; + public string Command => "rmmechanism"; public string Description => "Removes a given entity from it's containing bodypart, if any."; public string Help => "Usage: rmmechanism "; @@ -19,18 +21,17 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!EntityUid.TryParse(args[0], out var entityUid)) + if (!NetEntity.TryParse(args[0], out var entityNet) || !_entManager.TryGetEntity(entityNet, out var entityUid)) { shell.WriteError(Loc.GetString("shell-entity-uid-must-be-number")); return; } - var entityManager = IoCManager.Resolve(); - var bodySystem = entityManager.System(); + var bodySystem = _entManager.System(); if (bodySystem.DropOrgan(entityUid)) { - shell.WriteLine($"Removed organ {entityManager.ToPrettyString(entityUid)}"); + shell.WriteLine($"Removed organ {_entManager.ToPrettyString(entityUid.Value)}"); } else { diff --git a/Content.Server/Administration/Commands/SetMindCommand.cs b/Content.Server/Administration/Commands/SetMindCommand.cs index 50263bb3288..b9ff329ed2e 100644 --- a/Content.Server/Administration/Commands/SetMindCommand.cs +++ b/Content.Server/Administration/Commands/SetMindCommand.cs @@ -1,7 +1,7 @@ -using Content.Server.Mind; -using Content.Server.Mind.Components; using Content.Server.Players; using Content.Shared.Administration; +using Content.Shared.Mind; +using Content.Shared.Mind.Components; using Robust.Server.Player; using Robust.Shared.Console; @@ -67,14 +67,10 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - var mindSystem = entityManager.System(); + var mindSystem = entityManager.System(); + var metadata = entityManager.GetComponent(eUid); - var mind = playerCData.Mind; - if (mind == null) - { - mind = mindSystem.CreateMind(session.UserId); - mind.CharacterName = entityManager.GetComponent(eUid).EntityName; - } + var mind = playerCData.Mind ?? mindSystem.CreateMind(session.UserId, metadata.EntityName); mindSystem.TransferTo(mind, eUid, ghostOverride); } diff --git a/Content.Server/Administration/Commands/SetOutfitCommand.cs b/Content.Server/Administration/Commands/SetOutfitCommand.cs index 6fbc282bb91..96fa4652531 100644 --- a/Content.Server/Administration/Commands/SetOutfitCommand.cs +++ b/Content.Server/Administration/Commands/SetOutfitCommand.cs @@ -20,7 +20,6 @@ namespace Content.Server.Administration.Commands public sealed class SetOutfitCommand : IConsoleCommand { [Dependency] private readonly IEntityManager _entities = default!; - [Dependency] private readonly IPrototypeManager _prototypes = default!; public string Command => "setoutfit"; @@ -76,7 +75,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) public static bool SetOutfit(EntityUid target, string gear, IEntityManager entityManager, Action? onEquipped = null) { - if (!entityManager.TryGetComponent(target, out var inventoryComponent)) + if (!entityManager.TryGetComponent(target, out InventoryComponent? inventoryComponent)) return false; var prototypeManager = IoCManager.Resolve(); @@ -85,7 +84,7 @@ public static bool SetOutfit(EntityUid target, string gear, IEntityManager entit HumanoidCharacterProfile? profile = null; // Check if we are setting the outfit of a player to respect the preferences - if (entityManager.TryGetComponent(target, out var actorComponent)) + if (entityManager.TryGetComponent(target, out ActorComponent? actorComponent)) { var userId = actorComponent.PlayerSession.UserId; var preferencesManager = IoCManager.Resolve(); @@ -106,7 +105,7 @@ public static bool SetOutfit(EntityUid target, string gear, IEntityManager entit } var equipmentEntity = entityManager.SpawnEntity(gearStr, entityManager.GetComponent(target).Coordinates); if (slot.Name == "id" && - entityManager.TryGetComponent(equipmentEntity, out var pdaComponent) && + entityManager.TryGetComponent(equipmentEntity, out PdaComponent? pdaComponent) && entityManager.TryGetComponent(pdaComponent.ContainedId, out var id)) { id.FullName = entityManager.GetComponent(target).EntityName; diff --git a/Content.Server/Administration/Commands/SetSolutionCapacity.cs b/Content.Server/Administration/Commands/SetSolutionCapacity.cs index 983d89e3d9a..0c439227ff9 100644 --- a/Content.Server/Administration/Commands/SetSolutionCapacity.cs +++ b/Content.Server/Administration/Commands/SetSolutionCapacity.cs @@ -9,6 +9,8 @@ namespace Content.Server.Administration.Commands [AdminCommand(AdminFlags.Fun)] public sealed class SetSolutionCapacity : IConsoleCommand { + [Dependency] private readonly IEntityManager _entManager = default!; + public string Command => "setsolutioncapacity"; public string Description => "Set the capacity (maximum volume) of some solution."; public string Help => $"Usage: {Command} "; @@ -21,13 +23,13 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!EntityUid.TryParse(args[0], out var uid)) + if (!NetEntity.TryParse(args[0], out var uidNet)) { shell.WriteLine($"Invalid entity id."); return; } - if (!IoCManager.Resolve().TryGetComponent(uid, out SolutionContainerManagerComponent? man)) + if (!_entManager.TryGetEntity(uidNet, out var uid) || !_entManager.TryGetComponent(uid, out SolutionContainerManagerComponent? man)) { shell.WriteLine($"Entity does not have any solutions."); return; @@ -54,7 +56,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) } var quantity = FixedPoint2.New(quantityFloat); - EntitySystem.Get().SetCapacity(uid, solution, quantity); + _entManager.System().SetCapacity(uid.Value, solution, quantity); } } } diff --git a/Content.Server/Administration/Commands/SetSolutionTemperature.cs b/Content.Server/Administration/Commands/SetSolutionTemperature.cs index fe6fbcb053d..6c6c618d17a 100644 --- a/Content.Server/Administration/Commands/SetSolutionTemperature.cs +++ b/Content.Server/Administration/Commands/SetSolutionTemperature.cs @@ -8,6 +8,8 @@ namespace Content.Server.Administration.Commands [AdminCommand(AdminFlags.Fun)] public sealed class SetSolutionTemperature : IConsoleCommand { + [Dependency] private readonly IEntityManager _entManager = default!; + public string Command => "setsolutiontemperature"; public string Description => "Set the temperature of some solution."; public string Help => $"Usage: {Command} "; @@ -20,13 +22,13 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!EntityUid.TryParse(args[0], out var uid)) + if (!NetEntity.TryParse(args[0], out var uidNet) || !_entManager.TryGetEntity(uidNet, out var uid)) { shell.WriteLine($"Invalid entity id."); return; } - if (!IoCManager.Resolve().TryGetComponent(uid, out SolutionContainerManagerComponent? man)) + if (!_entManager.TryGetComponent(uid, out SolutionContainerManagerComponent? man)) { shell.WriteLine($"Entity does not have any solutions."); return; @@ -52,7 +54,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - EntitySystem.Get().SetTemperature(uid, solution, quantity); + _entManager.System().SetTemperature(uid.Value, solution, quantity); } } } diff --git a/Content.Server/Administration/Commands/SetSolutionThermalEnergy.cs b/Content.Server/Administration/Commands/SetSolutionThermalEnergy.cs index 6c65a9c2b6b..07b51016cc9 100644 --- a/Content.Server/Administration/Commands/SetSolutionThermalEnergy.cs +++ b/Content.Server/Administration/Commands/SetSolutionThermalEnergy.cs @@ -8,6 +8,8 @@ namespace Content.Server.Administration.Commands [AdminCommand(AdminFlags.Fun)] public sealed class SetSolutionThermalEnergy : IConsoleCommand { + [Dependency] private readonly IEntityManager _entManager = default!; + public string Command => "setsolutionthermalenergy"; public string Description => "Set the thermal energy of some solution."; public string Help => $"Usage: {Command} "; @@ -20,13 +22,13 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!EntityUid.TryParse(args[0], out var uid)) + if (!NetEntity.TryParse(args[0], out var uidNet) || !_entManager.TryGetEntity(uidNet, out var uid)) { shell.WriteLine($"Invalid entity id."); return; } - if (!IoCManager.Resolve().TryGetComponent(uid, out SolutionContainerManagerComponent? man)) + if (!_entManager.TryGetComponent(uid, out SolutionContainerManagerComponent? man)) { shell.WriteLine($"Entity does not have any solutions."); return; @@ -53,13 +55,14 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) shell.WriteLine($"Cannot set the thermal energy of a solution with 0 heat capacity to a non-zero number."); return; } - } else if(quantity <= 0.0f) + } + else if(quantity <= 0.0f) { shell.WriteLine($"Cannot set the thermal energy of a solution with heat capacity to a non-positive number."); return; } - EntitySystem.Get().SetThermalEnergy(uid, solution, quantity); + _entManager.System().SetThermalEnergy(uid.Value, solution, quantity); } } } diff --git a/Content.Server/Administration/Commands/VariantizeCommand.cs b/Content.Server/Administration/Commands/VariantizeCommand.cs index 11141640e9d..1b5cbbd4d50 100644 --- a/Content.Server/Administration/Commands/VariantizeCommand.cs +++ b/Content.Server/Administration/Commands/VariantizeCommand.cs @@ -10,6 +10,9 @@ namespace Content.Server.Administration.Commands; [AdminCommand(AdminFlags.Mapping)] public sealed class VariantizeCommand : IConsoleCommand { + [Dependency] private readonly IEntityManager _entManager = default!; + [Dependency] private readonly IRobustRandom _random = default!; + public string Command => "variantize"; public string Description => Loc.GetString("variantize-command-description"); @@ -24,16 +27,13 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - var entMan = IoCManager.Resolve(); - var random = IoCManager.Resolve(); - - if (!EntityUid.TryParse(args[0], out var euid)) + if (!NetEntity.TryParse(args[0], out var euidNet) || !_entManager.TryGetEntity(euidNet, out var euid)) { shell.WriteError($"Failed to parse euid '{args[0]}'."); return; } - if (!entMan.TryGetComponent(euid, out MapGridComponent? gridComp)) + if (!_entManager.TryGetComponent(euid, out MapGridComponent? gridComp)) { shell.WriteError($"Euid '{euid}' does not exist or is not a grid."); return; @@ -42,7 +42,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) foreach (var tile in gridComp.GetAllTiles()) { var def = tile.GetContentTileDefinition(); - var newTile = new Tile(tile.Tile.TypeId, tile.Tile.Flags, def.PickVariant(random)); + var newTile = new Tile(tile.Tile.TypeId, tile.Tile.Flags, def.PickVariant(_random)); gridComp.SetTile(tile.GridIndices, newTile); } } diff --git a/Content.Server/Administration/Commands/WarpCommand.cs b/Content.Server/Administration/Commands/WarpCommand.cs index 282bb61cc01..5c61208b5b2 100644 --- a/Content.Server/Administration/Commands/WarpCommand.cs +++ b/Content.Server/Administration/Commands/WarpCommand.cs @@ -1,9 +1,9 @@ using System.Linq; using System.Numerics; -using Content.Server.Ghost.Components; using Content.Server.Warps; using Content.Shared.Administration; using Content.Shared.Follower; +using Content.Shared.Ghost; using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Enums; diff --git a/Content.Server/Administration/Components/BufferingComponent.cs b/Content.Server/Administration/Components/BufferingComponent.cs index 1bdefe021dc..1f803765969 100644 --- a/Content.Server/Administration/Components/BufferingComponent.cs +++ b/Content.Server/Administration/Components/BufferingComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Administration.Components; [RegisterComponent, Access(typeof(BufferingSystem))] -public sealed class BufferingComponent : Component +public sealed partial class BufferingComponent : Component { [DataField("minBufferTime")] public float MinimumBufferTime = 0.5f; diff --git a/Content.Server/Administration/Components/HeadstandComponent.cs b/Content.Server/Administration/Components/HeadstandComponent.cs index 0b713112817..8472b5ad368 100644 --- a/Content.Server/Administration/Components/HeadstandComponent.cs +++ b/Content.Server/Administration/Components/HeadstandComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Administration.Components; [RegisterComponent, NetworkedComponent] -public sealed class HeadstandComponent : SharedHeadstandComponent +public sealed partial class HeadstandComponent : SharedHeadstandComponent { } diff --git a/Content.Server/Administration/Components/KillSignComponent.cs b/Content.Server/Administration/Components/KillSignComponent.cs index 97ae88994f6..e29ce202dda 100644 --- a/Content.Server/Administration/Components/KillSignComponent.cs +++ b/Content.Server/Administration/Components/KillSignComponent.cs @@ -4,5 +4,5 @@ namespace Content.Server.Administration.Components; [NetworkedComponent, RegisterComponent] -public sealed class KillSignComponent : SharedKillSignComponent +public sealed partial class KillSignComponent : SharedKillSignComponent { } diff --git a/Content.Server/Administration/Components/StationInfiniteBatteryTargetComponent.cs b/Content.Server/Administration/Components/StationInfiniteBatteryTargetComponent.cs index 2ef7c26c79b..5543d5ed8c4 100644 --- a/Content.Server/Administration/Components/StationInfiniteBatteryTargetComponent.cs +++ b/Content.Server/Administration/Components/StationInfiniteBatteryTargetComponent.cs @@ -4,7 +4,7 @@ /// This is used for the admin map-wide/station-wide/grid-wide infinite power trick. /// [RegisterComponent] -public sealed class StationInfiniteBatteryTargetComponent : Component +public sealed partial class StationInfiniteBatteryTargetComponent : Component { } diff --git a/Content.Server/Administration/Logs/AdminLogManager.Json.cs b/Content.Server/Administration/Logs/AdminLogManager.Json.cs index d4026545ee5..43a1e0b8b56 100644 --- a/Content.Server/Administration/Logs/AdminLogManager.Json.cs +++ b/Content.Server/Administration/Logs/AdminLogManager.Json.cs @@ -5,6 +5,7 @@ using Content.Server.Database; using Robust.Server.GameObjects; using Robust.Server.Player; +using Robust.Shared.Map; namespace Content.Server.Administration.Logs; @@ -46,6 +47,7 @@ private void InitializeJson() value = value switch { IPlayerSession player => new SerializablePlayer(player), + EntityCoordinates entityCoordinates => new SerializableEntityCoordinates(_entityManager, entityCoordinates), _ => value }; diff --git a/Content.Server/Administration/Logs/Converters/EntityCoordinatesConverter.cs b/Content.Server/Administration/Logs/Converters/EntityCoordinatesConverter.cs new file mode 100644 index 00000000000..0384e069561 --- /dev/null +++ b/Content.Server/Administration/Logs/Converters/EntityCoordinatesConverter.cs @@ -0,0 +1,77 @@ +using System.Text.Json; +using Content.Server.Station.Components; +using Robust.Shared.Map; +using Robust.Shared.Map.Components; + +namespace Content.Server.Administration.Logs.Converters; + +[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. + private WeakReference _entityManager = default!; + + public override void Init(IDependencyCollection dependencies) + { + _entityManager = new WeakReference(dependencies.Resolve()); + } + + public void Write(Utf8JsonWriter writer, SerializableEntityCoordinates value, JsonSerializerOptions options, IEntityManager entities) + { + writer.WriteStartObject(); + WriteEntityInfo(writer, value.EntityUid, entities, "parent"); + writer.WriteNumber("x", value.X); + writer.WriteNumber("y", value.Y); + if (value.MapUid.HasValue) + { + WriteEntityInfo(writer, value.MapUid.Value, entities, "map"); + } + writer.WriteEndObject(); + } + + private static void WriteEntityInfo(Utf8JsonWriter writer, EntityUid value, IEntityManager entities, string rootName) + { + writer.WriteStartObject(rootName); + writer.WriteNumber("uid", value.GetHashCode()); + if (entities.TryGetComponent(value, out MetaDataComponent? metaData)) + { + writer.WriteString("name", metaData.EntityName); + } + if (entities.TryGetComponent(value, out MapComponent? mapComponent)) + { + writer.WriteNumber("mapId", mapComponent.MapId.GetHashCode()); + writer.WriteBoolean("mapPaused", mapComponent.MapPaused); + } + if (entities.TryGetComponent(value, out StationMemberComponent? stationMemberComponent)) + { + WriteEntityInfo(writer, stationMemberComponent.Station, entities, "stationMember"); + } + + writer.WriteEndObject(); + } + + public override void Write(Utf8JsonWriter writer, SerializableEntityCoordinates value, JsonSerializerOptions options) + { + if (!_entityManager.TryGetTarget(out var entityManager)) + throw new InvalidOperationException("EntityManager got garbage collected!"); + + Write(writer, value, options, entityManager); + } +} + +public readonly struct SerializableEntityCoordinates +{ + public readonly EntityUid EntityUid; + public readonly float X; + public readonly float Y; + public readonly EntityUid? MapUid; + + public SerializableEntityCoordinates(IEntityManager entityManager, EntityCoordinates coordinates) + { + EntityUid = coordinates.EntityId; + X = coordinates.X; + Y = coordinates.Y; + MapUid = coordinates.GetMapUid(entityManager); + } +} diff --git a/Content.Server/Administration/Managers/AdminManager.cs b/Content.Server/Administration/Managers/AdminManager.cs index 0265e51ae7d..4aa6074b109 100644 --- a/Content.Server/Administration/Managers/AdminManager.cs +++ b/Content.Server/Administration/Managers/AdminManager.cs @@ -49,14 +49,14 @@ public sealed class AdminManager : IAdminManager, IPostInjectInit, IConGroupCont private readonly AdminCommandPermissions _commandPermissions = new(); private readonly AdminCommandPermissions _toolshedCommandPermissions = new(); - public bool IsAdmin(IPlayerSession session, bool includeDeAdmin = false) + public bool IsAdmin(ICommonSession session, bool includeDeAdmin = false) { return GetAdminData(session, includeDeAdmin) != null; } - public AdminData? GetAdminData(IPlayerSession session, bool includeDeAdmin = false) + public AdminData? GetAdminData(ICommonSession session, bool includeDeAdmin = false) { - if (_admins.TryGetValue(session, out var reg) && (reg.Data.Active || includeDeAdmin)) + if (_admins.TryGetValue((IPlayerSession)session, out var reg) && (reg.Data.Active || includeDeAdmin)) { return reg.Data; } @@ -203,7 +203,7 @@ public void Initialize() } } - foreach (var spec in _toolshed.AllCommands()) + foreach (var spec in _toolshed.DefaultEnvironment.AllCommands()) { var (isAvail, flagsReq) = GetRequiredFlag(spec.Cmd); diff --git a/Content.Server/Administration/Managers/IAdminManager.cs b/Content.Server/Administration/Managers/IAdminManager.cs index f5aa9da23e8..eeed5cc36e0 100644 --- a/Content.Server/Administration/Managers/IAdminManager.cs +++ b/Content.Server/Administration/Managers/IAdminManager.cs @@ -29,36 +29,6 @@ public interface IAdminManager : ISharedAdminManager /// IEnumerable AllAdmins { get; } - /// - /// Checks if a player is an admin. - /// - /// The player to check. - /// - /// Whether to return admin data for admins that are current de-adminned. - /// - /// true if the player is an admin, false otherwise. - bool IsAdmin(IPlayerSession session, bool includeDeAdmin = false); - - /// - /// Gets the admin data for a player, if they are an admin. - /// - /// The player to get admin data for. - /// - /// Whether to return admin data for admins that are current de-adminned. - /// - /// if the player is not an admin. - AdminData? GetAdminData(IPlayerSession session, bool includeDeAdmin = false); - - /// - /// See if a player has an admin flag. - /// - /// True if the player is and admin and has the specified flags. - bool HasAdminFlag(IPlayerSession player, AdminFlags flag) - { - var data = GetAdminData(player); - return data != null && data.HasFlag(flag); - } - /// /// De-admins an admin temporarily so they are effectively a normal player. /// diff --git a/Content.Server/Administration/Notes/AdminNotesEui.cs b/Content.Server/Administration/Notes/AdminNotesEui.cs index 787ebbabd63..d1297b251d7 100644 --- a/Content.Server/Administration/Notes/AdminNotesEui.cs +++ b/Content.Server/Administration/Notes/AdminNotesEui.cs @@ -16,7 +16,6 @@ public sealed class AdminNotesEui : BaseEui [Dependency] private readonly IAdminManager _admins = default!; [Dependency] private readonly IAdminNotesManager _notesMan = default!; [Dependency] private readonly IPlayerLocator _locator = default!; - [Dependency] private readonly IServerDbManager _db = default!; public AdminNotesEui() { diff --git a/Content.Server/Administration/Notes/AdminNotesManager.cs b/Content.Server/Administration/Notes/AdminNotesManager.cs index c83a1036066..8a7846663f3 100644 --- a/Content.Server/Administration/Notes/AdminNotesManager.cs +++ b/Content.Server/Administration/Notes/AdminNotesManager.cs @@ -9,10 +9,9 @@ using Content.Shared.CCVar; using Content.Shared.Database; using Content.Shared.Players.PlayTimeTracking; -using Robust.Server.Player; -using Robust.Shared; using Robust.Shared.Configuration; using Robust.Shared.Network; +using Robust.Shared.Players; namespace Content.Server.Administration.Notes; @@ -33,27 +32,27 @@ public sealed class AdminNotesManager : IAdminNotesManager, IPostInjectInit private ISawmill _sawmill = default!; - public bool CanCreate(IPlayerSession admin) + public bool CanCreate(ICommonSession admin) { return CanEdit(admin); } - public bool CanDelete(IPlayerSession admin) + public bool CanDelete(ICommonSession admin) { return CanEdit(admin); } - public bool CanEdit(IPlayerSession admin) + public bool CanEdit(ICommonSession admin) { return _admins.HasAdminFlag(admin, AdminFlags.EditNotes); } - public bool CanView(IPlayerSession admin) + public bool CanView(ICommonSession admin) { return _admins.HasAdminFlag(admin, AdminFlags.ViewNotes); } - public async Task OpenEui(IPlayerSession admin, Guid notedPlayer) + public async Task OpenEui(ICommonSession admin, Guid notedPlayer) { var ui = new AdminNotesEui(); _euis.OpenEui(ui, admin); @@ -61,7 +60,7 @@ public async Task OpenEui(IPlayerSession admin, Guid notedPlayer) await ui.ChangeNotedPlayer(notedPlayer); } - public async Task OpenUserNotesEui(IPlayerSession player) + public async Task OpenUserNotesEui(ICommonSession player) { var ui = new UserNotesEui(); _euis.OpenEui(ui, player); @@ -69,7 +68,7 @@ public async Task OpenUserNotesEui(IPlayerSession player) await ui.UpdateNotes(); } - public async Task AddAdminRemark(IPlayerSession createdBy, Guid player, NoteType type, string message, NoteSeverity? severity, bool secret, DateTime? expiryTime) + public async Task AddAdminRemark(ICommonSession createdBy, Guid player, NoteType type, string message, NoteSeverity? severity, bool secret, DateTime? expiryTime) { message = message.Trim(); @@ -179,7 +178,7 @@ public async Task AddAdminRemark(IPlayerSession createdBy, Guid player, NoteType }; } - public async Task DeleteAdminRemark(int noteId, NoteType type, IPlayerSession deletedBy) + public async Task DeleteAdminRemark(int noteId, NoteType type, ICommonSession deletedBy) { var note = await GetAdminRemark(noteId, type); if (note == null) @@ -215,7 +214,7 @@ public async Task DeleteAdminRemark(int noteId, NoteType type, IPlayerSession de NoteDeleted?.Invoke(note); } - public async Task ModifyAdminRemark(int noteId, NoteType type, IPlayerSession editedBy, string message, NoteSeverity? severity, bool secret, DateTime? expiryTime) + public async Task ModifyAdminRemark(int noteId, NoteType type, ICommonSession editedBy, string message, NoteSeverity? severity, bool secret, DateTime? expiryTime) { message = message.Trim(); diff --git a/Content.Server/Administration/Notes/IAdminNotesManager.cs b/Content.Server/Administration/Notes/IAdminNotesManager.cs index b92f0c1148c..ae7133c56d9 100644 --- a/Content.Server/Administration/Notes/IAdminNotesManager.cs +++ b/Content.Server/Administration/Notes/IAdminNotesManager.cs @@ -2,7 +2,7 @@ using Content.Server.Database; using Content.Shared.Administration.Notes; using Content.Shared.Database; -using Robust.Server.Player; +using Robust.Shared.Players; namespace Content.Server.Administration.Notes; @@ -12,15 +12,15 @@ public interface IAdminNotesManager event Action? NoteModified; event Action? NoteDeleted; - bool CanCreate(IPlayerSession admin); - bool CanDelete(IPlayerSession admin); - bool CanEdit(IPlayerSession admin); - bool CanView(IPlayerSession admin); - Task OpenEui(IPlayerSession admin, Guid notedPlayer); - Task OpenUserNotesEui(IPlayerSession player); - Task AddAdminRemark(IPlayerSession createdBy, Guid player, NoteType type, string message, NoteSeverity? severity, bool secret, DateTime? expiryTime); - Task DeleteAdminRemark(int noteId, NoteType type, IPlayerSession deletedBy); - Task ModifyAdminRemark(int noteId, NoteType type, IPlayerSession editedBy, string message, NoteSeverity? severity, bool secret, DateTime? expiryTime); + bool CanCreate(ICommonSession admin); + bool CanDelete(ICommonSession admin); + bool CanEdit(ICommonSession admin); + bool CanView(ICommonSession admin); + Task OpenEui(ICommonSession admin, Guid notedPlayer); + Task OpenUserNotesEui(ICommonSession player); + Task AddAdminRemark(ICommonSession createdBy, Guid player, NoteType type, string message, NoteSeverity? severity, bool secret, DateTime? expiryTime); + Task DeleteAdminRemark(int noteId, NoteType type, ICommonSession deletedBy); + Task ModifyAdminRemark(int noteId, NoteType type, ICommonSession editedBy, string message, NoteSeverity? severity, bool secret, DateTime? expiryTime); /// /// Queries the database and retrieves all notes, secret and visible /// diff --git a/Content.Server/Administration/Systems/AdminSystem.cs b/Content.Server/Administration/Systems/AdminSystem.cs index 48751e02c6a..d54a7a2092a 100644 --- a/Content.Server/Administration/Systems/AdminSystem.cs +++ b/Content.Server/Administration/Systems/AdminSystem.cs @@ -1,18 +1,18 @@ -using System.Globalization; using System.Linq; using Content.Server.Administration.Managers; -using Content.Server.GameTicking.Events; using Content.Server.IdentityManagement; -using Content.Server.Players; -using Content.Server.Roles; +using Content.Server.Mind; using Content.Shared.Administration; using Content.Shared.Administration.Events; using Content.Shared.GameTicking; using Content.Shared.IdentityManagement; +using Content.Shared.Roles; +using Content.Shared.Roles.Jobs; using Robust.Server.GameObjects; using Robust.Server.Player; using Robust.Shared.Enums; using Robust.Shared.Network; +using Robust.Shared.Player; namespace Content.Server.Administration.Systems { @@ -20,6 +20,9 @@ public sealed class AdminSystem : EntitySystem { [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly IAdminManager _adminManager = default!; + [Dependency] private readonly SharedJobSystem _jobs = default!; + [Dependency] private readonly MindSystem _minds = default!; + [Dependency] private readonly SharedRoleSystem _role = default!; private readonly Dictionary _playerList = new(); @@ -102,10 +105,11 @@ private void OnIdentityChanged(IdentityChangedEvent ev) private void OnRoleEvent(RoleEvent ev) { - if (!ev.Role.Antagonist || ev.Role.Mind.Session == null) + var session = _minds.GetSession(ev.Mind); + if (!ev.Antagonist || session == null) return; - UpdatePlayerList(ev.Role.Mind.Session); + UpdatePlayerList(session); } private void OnAdminPermsChanged(AdminPermsChangedEventArgs obj) @@ -169,16 +173,17 @@ private PlayerInfo GetPlayerInfo(IPlayerData data, IPlayerSession? session) identityName = Identity.Name(session.AttachedEntity.Value, EntityManager); } - var mind = data.ContentData()?.Mind; - - var job = mind?.AllRoles.FirstOrDefault(role => role is Job); - var startingRole = job != null ? CultureInfo.CurrentCulture.TextInfo.ToTitleCase(job.Name) : string.Empty; - - var antag = mind?.AllRoles.Any(r => r.Antagonist) ?? false; + var antag = false; + var startingRole = string.Empty; + if (_minds.TryGetMind(session, out var mindId, out _)) + { + antag = _role.MindIsAntagonist(mindId); + startingRole = _jobs.MindTryGetJobName(mindId); + } var connected = session != null && session.Status is SessionStatus.Connected or SessionStatus.InGame; - return new PlayerInfo(name, entityName, identityName, startingRole, antag, session?.AttachedEntity, data.UserId, + return new PlayerInfo(name, entityName, identityName, startingRole, antag, GetNetEntity(session?.AttachedEntity), data.UserId, connected, _roundActivePlayers.Contains(data.UserId)); } } diff --git a/Content.Server/Administration/Systems/AdminTestArenaSystem.cs b/Content.Server/Administration/Systems/AdminTestArenaSystem.cs index 07fc628bce7..e65acf571cb 100644 --- a/Content.Server/Administration/Systems/AdminTestArenaSystem.cs +++ b/Content.Server/Administration/Systems/AdminTestArenaSystem.cs @@ -13,6 +13,7 @@ public sealed class AdminTestArenaSystem : EntitySystem { [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly MapLoaderSystem _map = default!; + [Dependency] private readonly MetaDataSystem _metaDataSystem = default!; public const string ArenaMapPath = "/Maps/Test/admin_test_arena.yml"; @@ -35,8 +36,17 @@ public sealed class AdminTestArenaSystem : EntitySystem } ArenaMap[admin.UserId] = _mapManager.GetMapEntityId(_mapManager.CreateMap()); + _metaDataSystem.SetEntityName(ArenaMap[admin.UserId], $"ATAM-{admin.Name}"); var grids = _map.LoadMap(Comp(ArenaMap[admin.UserId]).MapId, ArenaMapPath); - ArenaGrid[admin.UserId] = grids.Count == 0 ? null : grids[0]; + if (grids.Count != 0) + { + _metaDataSystem.SetEntityName(grids[0], $"ATAG-{admin.Name}"); + ArenaGrid[admin.UserId] = grids[0]; + } + else + { + ArenaGrid[admin.UserId] = null; + } return (ArenaMap[admin.UserId], ArenaGrid[admin.UserId]); } diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.Antags.cs b/Content.Server/Administration/Systems/AdminVerbSystem.Antags.cs index 2c668c353c9..b6e8a0d3009 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.Antags.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.Antags.cs @@ -1,8 +1,11 @@ using Content.Server.GameTicking.Rules; -using Content.Server.Mind.Components; +using Content.Server.Ninja.Systems; using Content.Server.Zombies; using Content.Shared.Administration; using Content.Shared.Database; +using Content.Shared.Humanoid; +using Content.Shared.Mind; +using Content.Shared.Mind.Components; using Content.Shared.Verbs; using Robust.Server.GameObjects; using Robust.Shared.Utility; @@ -13,13 +16,15 @@ public sealed partial class AdminVerbSystem { [Dependency] private readonly ZombieSystem _zombie = default!; [Dependency] private readonly TraitorRuleSystem _traitorRule = default!; + [Dependency] private readonly SpaceNinjaSystem _ninja = default!; [Dependency] private readonly NukeopsRuleSystem _nukeopsRule = default!; [Dependency] private readonly PiratesRuleSystem _piratesRule = default!; + [Dependency] private readonly SharedMindSystem _minds = default!; // All antag verbs have names so invokeverb works. private void AddAntagVerbs(GetVerbsEvent args) { - if (!EntityManager.TryGetComponent(args.User, out var actor)) + if (!TryComp(args.User, out var actor)) return; var player = actor.PlayerSession; @@ -27,21 +32,22 @@ private void AddAntagVerbs(GetVerbsEvent args) if (!_adminManager.HasAdminFlag(player, AdminFlags.Fun)) return; - var targetHasMind = TryComp(args.Target, out MindContainerComponent? targetMindComp); - if (!targetHasMind || targetMindComp == null) + if (!TryComp(args.Target, out var targetMindComp)) return; Verb traitor = new() { - Text = "Make Traitor", + Text = Loc.GetString("admin-verb-text-make-traitor"), Category = VerbCategory.Antag, Icon = new SpriteSpecifier.Rsi(new ResPath("/Textures/Structures/Wallmounts/posters.rsi"), "poster5_contraband"), Act = () => { - if (targetMindComp.Mind == null || targetMindComp.Mind.Session == null) + if (!_minds.TryGetSession(targetMindComp.Mind, out var session)) return; - _traitorRule.MakeTraitor(targetMindComp.Mind.Session); + // if its a monkey or mouse or something dont give uplink or objectives + var isHuman = HasComp(args.Target); + _traitorRule.MakeTraitor(session, giveUplink: isHuman, giveObjectives: isHuman); }, Impact = LogImpact.High, Message = Loc.GetString("admin-verb-make-traitor"), @@ -50,7 +56,7 @@ private void AddAntagVerbs(GetVerbsEvent args) Verb zombie = new() { - Text = "Make Zombie", + Text = Loc.GetString("admin-verb-text-make-zombie"), Category = VerbCategory.Antag, Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/Actions/zombie-turn.png")), Act = () => @@ -65,15 +71,15 @@ private void AddAntagVerbs(GetVerbsEvent args) Verb nukeOp = new() { - Text = "Make nuclear operative", + Text = Loc.GetString("admin-verb-text-make-nuclear-operative"), Category = VerbCategory.Antag, Icon = new SpriteSpecifier.Rsi(new("/Textures/Structures/Wallmounts/signs.rsi"), "radiation"), Act = () => { - if (targetMindComp.Mind == null || targetMindComp.Mind.Session == null) + if (!_minds.TryGetMind(args.Target, out var mindId, out var mind)) return; - _nukeopsRule.MakeLoneNukie(targetMindComp.Mind); + _nukeopsRule.MakeLoneNukie(mindId, mind); }, Impact = LogImpact.High, Message = Loc.GetString("admin-verb-make-nuclear-operative"), @@ -82,20 +88,36 @@ private void AddAntagVerbs(GetVerbsEvent args) Verb pirate = new() { - Text = "Make Pirate", + Text = Loc.GetString("admin-verb-text-make-pirate"), Category = VerbCategory.Antag, Icon = new SpriteSpecifier.Rsi(new("/Textures/Clothing/Head/Hats/pirate.rsi"), "icon"), Act = () => { - if (targetMindComp.Mind == null || targetMindComp.Mind.Session == null) + if (!_minds.TryGetMind(args.Target, out var mindId, out var mind)) return; - _piratesRule.MakePirate(targetMindComp.Mind); + _piratesRule.MakePirate(mindId, mind); }, Impact = LogImpact.High, Message = Loc.GetString("admin-verb-make-pirate"), }; args.Verbs.Add(pirate); + Verb spaceNinja = new() + { + Text = Loc.GetString("admin-verb-text-make-space-ninja"), + Category = VerbCategory.Antag, + Icon = new SpriteSpecifier.Rsi(new ResPath("/Textures/Objects/Weapons/Melee/energykatana.rsi"), "icon"), + Act = () => + { + if (!_minds.TryGetMind(args.Target, out var mindId, out var mind)) + return; + + _ninja.MakeNinja(mindId, mind); + }, + Impact = LogImpact.High, + Message = Loc.GetString("admin-verb-make-space-ninja"), + }; + args.Verbs.Add(spaceNinja); } } diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs index edd8b85dc5f..5d9eaa0f29b 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs @@ -18,7 +18,6 @@ using Content.Server.Storage.EntitySystems; using Content.Server.Tabletop; using Content.Server.Tabletop.Components; -using Content.Server.Tools.Systems; using Content.Shared.Administration; using Content.Shared.Administration.Components; using Content.Shared.Body.Components; @@ -39,6 +38,7 @@ using Content.Shared.Nutrition.Components; using Content.Shared.Popups; using Content.Shared.Tabletop.Components; +using Content.Shared.Tools.Systems; using Content.Shared.Verbs; using Robust.Server.GameObjects; using Robust.Shared.Map; @@ -80,7 +80,7 @@ public sealed partial class AdminVerbSystem // All smite verbs have names so invokeverb works. private void AddSmiteVerbs(GetVerbsEvent args) { - if (!EntityManager.TryGetComponent(args.User, out var actor)) + if (!EntityManager.TryGetComponent(args.User, out ActorComponent? actor)) return; var player = actor.PlayerSession; @@ -677,7 +677,7 @@ private void AddSmiteVerbs(GetVerbsEvent args) _entityStorageSystem.Insert(args.Target, locker, storage); _entityStorageSystem.ToggleOpen(args.Target, locker, storage); } - _weldableSystem.ForceWeldedState(locker, true); + _weldableSystem.SetWeldedState(locker, true); }, Impact = LogImpact.Extreme, Message = Loc.GetString("admin-smite-locker-stuff-description"), diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.Tools.cs b/Content.Server/Administration/Systems/AdminVerbSystem.Tools.cs index e1266b14bb3..b52e56009df 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.Tools.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.Tools.cs @@ -57,7 +57,7 @@ public sealed partial class AdminVerbSystem private void AddTricksVerbs(GetVerbsEvent args) { - if (!EntityManager.TryGetComponent(args.User, out var actor)) + if (!EntityManager.TryGetComponent(args.User, out ActorComponent? actor)) return; var player = actor.PlayerSession; diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.cs b/Content.Server/Administration/Systems/AdminVerbSystem.cs index ecbf241de2d..8b792b08926 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.cs @@ -8,10 +8,7 @@ using Content.Server.Disposal.Tube.Components; using Content.Server.EUI; using Content.Server.Ghost.Roles; -using Content.Server.Mind; using Content.Server.Mind.Commands; -using Content.Server.Mind.Components; -using Content.Server.Players; using Content.Server.Prayer; using Content.Server.Xenoarchaeology.XenoArtifacts; using Content.Server.Xenoarchaeology.XenoArtifacts.Triggers.Components; @@ -21,6 +18,8 @@ using Content.Shared.GameTicking; using Content.Shared.Interaction.Helpers; using Content.Shared.Inventory; +using Content.Shared.Mind; +using Content.Shared.Mind.Components; using Content.Shared.Popups; using Content.Shared.Verbs; using Robust.Server.Console; @@ -29,6 +28,7 @@ using Robust.Shared.Console; using Robust.Shared.Map; using Robust.Shared.Map.Components; +using Robust.Shared.Players; using Robust.Shared.Prototypes; using Robust.Shared.Timing; using Robust.Shared.Toolshed; @@ -55,11 +55,11 @@ public sealed partial class AdminVerbSystem : EntitySystem [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; [Dependency] private readonly PrayerSystem _prayerSystem = default!; [Dependency] private readonly EuiManager _eui = default!; - [Dependency] private readonly MindSystem _mindSystem = default!; + [Dependency] private readonly SharedMindSystem _mindSystem = default!; [Dependency] private readonly ToolshedManager _toolshed = default!; [Dependency] private readonly RejuvenateSystem _rejuvenate = default!; - private readonly Dictionary _openSolutionUis = new(); + private readonly Dictionary _openSolutionUis = new(); public override void Initialize() { @@ -79,7 +79,7 @@ private void GetVerbs(GetVerbsEvent ev) private void AddAdminVerbs(GetVerbsEvent args) { - if (!EntityManager.TryGetComponent(args.User, out var actor)) + if (!EntityManager.TryGetComponent(args.User, out ActorComponent? actor)) return; var player = actor.PlayerSession; @@ -215,13 +215,13 @@ private void AddAdminVerbs(GetVerbsEvent args) private void AddDebugVerbs(GetVerbsEvent args) { - if (!EntityManager.TryGetComponent(args.User, out var actor)) + if (!EntityManager.TryGetComponent(args.User, out ActorComponent? actor)) return; var player = actor.PlayerSession; // Delete verb - if (_toolshed.ActivePermissionController?.CheckInvokable(new CommandSpec(_toolshed.GetCommand("delete"), null), player, out _) ?? false) + if (_toolshed.ActivePermissionController?.CheckInvokable(new CommandSpec(_toolshed.DefaultEnvironment.GetCommand("delete"), null), player, out _) ?? false) { Verb verb = new() { @@ -236,7 +236,7 @@ private void AddDebugVerbs(GetVerbsEvent args) } // Rejuvenate verb - if (_toolshed.ActivePermissionController?.CheckInvokable(new CommandSpec(_toolshed.GetCommand("rejuvenate"), null), player, out _) ?? false) + if (_toolshed.ActivePermissionController?.CheckInvokable(new CommandSpec(_toolshed.DefaultEnvironment.GetCommand("rejuvenate"), null), player, out _) ?? false) { Verb verb = new() { @@ -250,7 +250,7 @@ private void AddDebugVerbs(GetVerbsEvent args) } // Control mob verb - if (_groupController.CanCommand(player, "controlmob") && + if (_toolshed.ActivePermissionController?.CheckInvokable(new CommandSpec(_toolshed.DefaultEnvironment.GetCommand("mind"), "control"), player, out _) ?? false && args.User != args.Target) { Verb verb = new() @@ -262,11 +262,10 @@ private void AddDebugVerbs(GetVerbsEvent args) { MakeSentientCommand.MakeSentient(args.Target, EntityManager); - var mind = player.ContentData()?.Mind; - if (mind == null) + if (!_minds.TryGetMind(player, out var mindId, out var mind)) return; - _mindSystem.TransferTo(mind, args.Target, ghostCheckOverride: true); + _mindSystem.TransferTo(mindId, args.Target, ghostCheckOverride: true, mind: mind); }, Impact = LogImpact.High, ConfirmationPopup = true @@ -349,7 +348,7 @@ private void AddDebugVerbs(GetVerbsEvent args) // Get Disposal tube direction verb if (_groupController.CanCommand(player, "tubeconnections") && - EntityManager.TryGetComponent(args.Target, out var tube)) + EntityManager.TryGetComponent(args.Target, out DisposalTubeComponent? tube)) { Verb verb = new() { @@ -376,7 +375,7 @@ private void AddDebugVerbs(GetVerbsEvent args) } if (_groupController.CanAdminMenu(player) && - EntityManager.TryGetComponent(args.Target, out var config)) + EntityManager.TryGetComponent(args.Target, out ConfigurationComponent? config)) { Verb verb = new() { @@ -427,7 +426,7 @@ public void OpenEditSolutionsEui(IPlayerSession session, EntityUid uid) eui.StateDirty(); } - public void OnEditSolutionsEuiClosed(IPlayerSession session) + public void OnEditSolutionsEuiClosed(ICommonSession session) { _openSolutionUis.Remove(session, out var eui); } diff --git a/Content.Server/Administration/Systems/BwoinkSystem.cs b/Content.Server/Administration/Systems/BwoinkSystem.cs index 107f299dbf2..98e5af1126b 100644 --- a/Content.Server/Administration/Systems/BwoinkSystem.cs +++ b/Content.Server/Administration/Systems/BwoinkSystem.cs @@ -3,14 +3,14 @@ using System.Text; using System.Text.Json; using System.Text.Json.Nodes; -using System.Text.Json.Serialization; using System.Text.RegularExpressions; using System.Threading.Tasks; using Content.Server.Administration.Managers; +using Content.Server.Discord; using Content.Server.GameTicking; -using Content.Server.Players; using Content.Shared.Administration; using Content.Shared.CCVar; +using Content.Shared.Mind; using JetBrains.Annotations; using Robust.Server.Player; using Robust.Shared; @@ -31,6 +31,7 @@ public sealed class BwoinkSystem : SharedBwoinkSystem [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly IPlayerLocator _playerLocator = default!; [Dependency] private readonly GameTicker _gameTicker = default!; + [Dependency] private readonly SharedMindSystem _minds = default!; private ISawmill _sawmill = default!; private readonly HttpClient _httpClient = new(); @@ -144,7 +145,7 @@ public override void Shutdown() _config.UnsubValueChanged(CVars.GameHostName, OnServerNameChanged); } - private void OnWebhookChanged(string url) + private async void OnWebhookChanged(string url) { _webhookUrl = url; @@ -173,7 +174,7 @@ private void OnWebhookChanged(string url) var webhookToken = match.Groups[2].Value; // Fire and forget - _ = SetWebhookData(webhookId, webhookToken); + await SetWebhookData(webhookId, webhookToken); } private async Task SetWebhookData(string id, string token) @@ -221,8 +222,6 @@ private async void ProcessQueue(NetUserId userId, Queue messages) return; } - var characterName = _playerManager.GetPlayerData(userId).ContentData()?.Mind?.CharacterName; - var linkToPrevious = string.Empty; // If we have all the data required, we can link to the embed of the previous round or embed that was too long @@ -238,6 +237,7 @@ private async void ProcessQueue(NetUserId userId, Queue messages) } } + var characterName = _minds.GetCharacterName(userId); existingEmbed = (null, lookup.Username, linkToPrevious, characterName, _gameTicker.RunLevel); } @@ -337,13 +337,13 @@ private WebhookPayload GeneratePayload(string messages, string username, string? { Username = username, AvatarUrl = string.IsNullOrWhiteSpace(_avatarUrl) ? null : _avatarUrl, - Embeds = new List + Embeds = new List { new() { Description = messages, Color = color, - Footer = new EmbedFooter + Footer = new WebhookEmbedFooter { Text = $"{serverName} ({round})", IconUrl = string.IsNullOrWhiteSpace(_footerIconUrl) ? null : _footerIconUrl @@ -469,75 +469,6 @@ private static string GenerateAHelpMessage(string username, string message, bool stringbuilder.Append(message); return stringbuilder.ToString(); } - - // https://discord.com/developers/docs/resources/channel#message-object-message-structure - private struct WebhookPayload - { - [JsonPropertyName("username")] - public string Username { get; set; } = ""; - - [JsonPropertyName("avatar_url")] - public string? AvatarUrl { get; set; } = ""; - - [JsonPropertyName("embeds")] - public List? Embeds { get; set; } = null; - - [JsonPropertyName("allowed_mentions")] - public Dictionary AllowedMentions { get; set; } = - new() - { - { "parse", Array.Empty() }, - }; - - public WebhookPayload() - { - } - } - - // https://discord.com/developers/docs/resources/channel#embed-object-embed-structure - private struct Embed - { - [JsonPropertyName("description")] - public string Description { get; set; } = ""; - - [JsonPropertyName("color")] - public int Color { get; set; } = 0; - - [JsonPropertyName("footer")] - public EmbedFooter? Footer { get; set; } = null; - - public Embed() - { - } - } - - // https://discord.com/developers/docs/resources/channel#embed-object-embed-footer-structure - private struct EmbedFooter - { - [JsonPropertyName("text")] - public string Text { get; set; } = ""; - - [JsonPropertyName("icon_url")] - public string? IconUrl { get; set; } - - public EmbedFooter() - { - } - } - - // https://discord.com/developers/docs/resources/webhook#webhook-object-webhook-structure - private struct WebhookData - { - [JsonPropertyName("guild_id")] - public string? GuildId { get; set; } = null; - - [JsonPropertyName("channel_id")] - public string? ChannelId { get; set; } = null; - - public WebhookData() - { - } - } } } diff --git a/Content.Server/Administration/Toolshed/RejuvenateCommand.cs b/Content.Server/Administration/Toolshed/RejuvenateCommand.cs index eb1272d3866..61b0d6213aa 100644 --- a/Content.Server/Administration/Toolshed/RejuvenateCommand.cs +++ b/Content.Server/Administration/Toolshed/RejuvenateCommand.cs @@ -1,13 +1,15 @@ using Content.Server.Administration.Systems; using Content.Shared.Administration; using Robust.Shared.Toolshed; +using Robust.Shared.Toolshed.Errors; namespace Content.Server.Administration.Toolshed; -[ToolshedCommand, AdminCommand(AdminFlags.Admin)] +[ToolshedCommand, AdminCommand(AdminFlags.Debug)] public sealed class RejuvenateCommand : ToolshedCommand { private RejuvenateSystem? _rejuvenate; + [CommandImplementation] public IEnumerable Rejuvenate([PipedArgument] IEnumerable input) { @@ -19,4 +21,19 @@ public IEnumerable Rejuvenate([PipedArgument] IEnumerable yield return i; } } + + [CommandImplementation] + public void Rejuvenate([CommandInvocationContext] IInvocationContext ctx) + { + _rejuvenate ??= GetSys(); + if (ExecutingEntity(ctx) is not { } ent) + { + if (ctx.Session is {} session) + ctx.ReportError(new SessionHasNoEntityError(session)); + else + ctx.ReportError(new NotForServerConsoleError()); + } + else + _rejuvenate.PerformRejuvenate(ent); + } } diff --git a/Content.Server/Administration/Toolshed/SolutionCommand.cs b/Content.Server/Administration/Toolshed/SolutionCommand.cs index b3f562a264a..5cbd931a701 100644 --- a/Content.Server/Administration/Toolshed/SolutionCommand.cs +++ b/Content.Server/Administration/Toolshed/SolutionCommand.cs @@ -2,8 +2,11 @@ using Content.Server.Chemistry.EntitySystems; using Content.Shared.Administration; using Content.Shared.Chemistry.Components; +using Content.Shared.Chemistry.Reagent; +using Content.Shared.FixedPoint; using Robust.Shared.Toolshed; using Robust.Shared.Toolshed.Syntax; +using Robust.Shared.Toolshed.TypeParsers; namespace Content.Server.Administration.Toolshed; @@ -38,6 +41,38 @@ [CommandArgument] ValueRef name { return input.Select(x => Get(ctx, x, name)).Where(x => x is not null).Cast(); } + + [CommandImplementation("adjreagent")] + public SolutionRef AdjReagent( + [CommandInvocationContext] IInvocationContext ctx, + [PipedArgument] SolutionRef input, + [CommandArgument] Prototype name, + [CommandArgument] ValueRef amountRef + ) + { + _solutionContainer ??= GetSys(); + + var amount = amountRef.Evaluate(ctx); + if (amount > 0) + { + _solutionContainer.TryAddReagent(input.Owner, input.Solution, name.Value.ID, amount, out _); + } + else if (amount < 0) + { + _solutionContainer.RemoveReagent(input.Owner, input.Solution, name.Value.ID, -amount); + } + + return input; + } + + [CommandImplementation("adjreagent")] + public IEnumerable AdjReagent( + [CommandInvocationContext] IInvocationContext ctx, + [PipedArgument] IEnumerable input, + [CommandArgument] Prototype name, + [CommandArgument] ValueRef amountRef + ) + => input.Select(x => AdjReagent(ctx, x, name, amountRef)); } public readonly record struct SolutionRef(EntityUid Owner, Solution Solution) diff --git a/Content.Server/Administration/UI/EditSolutionsEui.cs b/Content.Server/Administration/UI/EditSolutionsEui.cs index cb5ce8fbfa7..5fa386aae74 100644 --- a/Content.Server/Administration/UI/EditSolutionsEui.cs +++ b/Content.Server/Administration/UI/EditSolutionsEui.cs @@ -1,3 +1,4 @@ +using Content.Server.Administration.Systems; using Content.Server.Chemistry.Components.SolutionManager; using Content.Server.EUI; using Content.Shared.Administration; @@ -30,13 +31,13 @@ public override void Opened() public override void Closed() { base.Closed(); - EntitySystem.Get().OnEditSolutionsEuiClosed(Player); + _entityManager.System().OnEditSolutionsEuiClosed(Player); } public override EuiStateBase GetNewState() { var solutions = _entityManager.GetComponentOrNull(Target)?.Solutions; - return new EditSolutionsEuiState(Target, solutions); + return new EditSolutionsEuiState(_entityManager.GetNetEntity(Target), solutions); } } } diff --git a/Content.Server/Administration/UI/SetOutfitEui.cs b/Content.Server/Administration/UI/SetOutfitEui.cs index 37b98568d35..6243657c325 100644 --- a/Content.Server/Administration/UI/SetOutfitEui.cs +++ b/Content.Server/Administration/UI/SetOutfitEui.cs @@ -10,6 +10,7 @@ namespace Content.Server.Administration.UI public sealed class SetOutfitEui : BaseEui { [Dependency] private readonly IAdminManager _adminManager = default!; + [Dependency] private readonly IEntityManager _entManager = default!; private readonly EntityUid _target; public SetOutfitEui(EntityUid entity) @@ -30,7 +31,7 @@ public override EuiStateBase GetNewState() { return new SetOutfitEuiState { - TargetEntityId = _target + TargetNetEntity = _entManager.GetNetEntity(_target) }; } diff --git a/Content.Server/Advertise/AdvertiseComponent.cs b/Content.Server/Advertise/AdvertiseComponent.cs index 027c90f7e56..f36cc7ae1e6 100644 --- a/Content.Server/Advertise/AdvertiseComponent.cs +++ b/Content.Server/Advertise/AdvertiseComponent.cs @@ -4,14 +4,14 @@ namespace Content.Server.Advertise { [RegisterComponent, Access(typeof(AdvertiseSystem))] - public sealed class AdvertiseComponent : Component + public sealed partial class AdvertiseComponent : Component { /// /// Minimum time in seconds to wait before saying a new ad, in seconds. Has to be larger than or equal to 1. /// [ViewVariables(VVAccess.ReadWrite)] [DataField("minWait")] - public int MinimumWait { get; } = 8 * 60; + public int MinimumWait { get; private set; } = 8 * 60; /// /// Maximum time in seconds to wait before saying a new ad, in seconds. Has to be larger than or equal @@ -19,13 +19,13 @@ public sealed class AdvertiseComponent : Component /// [ViewVariables(VVAccess.ReadWrite)] [DataField("maxWait")] - public int MaximumWait { get; } = 10 * 60; + public int MaximumWait { get; private set; } = 10 * 60; /// /// The identifier for the advertisements pack prototype. /// [DataField("pack", customTypeSerializer:typeof(PrototypeIdSerializer), required: true)] - public string PackPrototypeId { get; } = string.Empty; + public string PackPrototypeId { get; private set; } = string.Empty; /// /// The next time an advertisement will be said. diff --git a/Content.Server/Advertisements/AdvertisementsPackPrototype.cs b/Content.Server/Advertisements/AdvertisementsPackPrototype.cs index f6cf8256a9f..31443573d34 100644 --- a/Content.Server/Advertisements/AdvertisementsPackPrototype.cs +++ b/Content.Server/Advertisements/AdvertisementsPackPrototype.cs @@ -7,9 +7,9 @@ public sealed class AdvertisementsPackPrototype : IPrototype { [ViewVariables] [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [DataField("advertisements")] - public List Advertisements { get; } = new(); + public List Advertisements { get; private set; } = new(); } } diff --git a/Content.Server/Alert/Click/BreakVow.cs b/Content.Server/Alert/Click/BreakVow.cs index 59569739918..400dabbb01d 100644 --- a/Content.Server/Alert/Click/BreakVow.cs +++ b/Content.Server/Alert/Click/BreakVow.cs @@ -7,13 +7,13 @@ namespace Content.Server.Alert.Click /// Break your mime vows /// [DataDefinition] - public sealed class BreakVow : IAlertClick + public sealed partial class BreakVow : IAlertClick { public void AlertClicked(EntityUid player) { var entManager = IoCManager.Resolve(); - if (entManager.TryGetComponent(player, out var mimePowers)) + if (entManager.TryGetComponent(player, out MimePowersComponent? mimePowers)) { entManager.System().BreakVow(player, mimePowers); } diff --git a/Content.Server/Alert/Click/RemoveCuffs.cs b/Content.Server/Alert/Click/RemoveCuffs.cs index f46ba3c106e..b55484283a5 100644 --- a/Content.Server/Alert/Click/RemoveCuffs.cs +++ b/Content.Server/Alert/Click/RemoveCuffs.cs @@ -9,7 +9,7 @@ namespace Content.Server.Alert.Click /// [UsedImplicitly] [DataDefinition] - public sealed class RemoveCuffs : IAlertClick + public sealed partial class RemoveCuffs : IAlertClick { public void AlertClicked(EntityUid player) { diff --git a/Content.Server/Alert/Click/RemoveEnsnare.cs b/Content.Server/Alert/Click/RemoveEnsnare.cs index f821ca3ca92..c33f4ae3417 100644 --- a/Content.Server/Alert/Click/RemoveEnsnare.cs +++ b/Content.Server/Alert/Click/RemoveEnsnare.cs @@ -6,7 +6,7 @@ namespace Content.Server.Alert.Click; [UsedImplicitly] [DataDefinition] -public sealed class RemoveEnsnare : IAlertClick +public sealed partial class RemoveEnsnare : IAlertClick { public void AlertClicked(EntityUid player) { diff --git a/Content.Server/Alert/Click/ResistFire.cs b/Content.Server/Alert/Click/ResistFire.cs index 9ce89ab48b2..9ae49c3f456 100644 --- a/Content.Server/Alert/Click/ResistFire.cs +++ b/Content.Server/Alert/Click/ResistFire.cs @@ -10,7 +10,7 @@ namespace Content.Server.Alert.Click /// [UsedImplicitly] [DataDefinition] - public sealed class ResistFire : IAlertClick + public sealed partial class ResistFire : IAlertClick { public void AlertClicked(EntityUid player) { diff --git a/Content.Server/Alert/Click/RetakeVow.cs b/Content.Server/Alert/Click/RetakeVow.cs index 1996461c47c..1b7a15ea747 100644 --- a/Content.Server/Alert/Click/RetakeVow.cs +++ b/Content.Server/Alert/Click/RetakeVow.cs @@ -7,13 +7,13 @@ namespace Content.Server.Alert.Click /// Retake your mime vows /// [DataDefinition] - public sealed class RetakeVow : IAlertClick + public sealed partial class RetakeVow : IAlertClick { public void AlertClicked(EntityUid player) { var entManager = IoCManager.Resolve(); - if (entManager.TryGetComponent(player, out var mimePowers)) + if (entManager.TryGetComponent(player, out MimePowersComponent? mimePowers)) { entManager.System().RetakeVow(player, mimePowers); } diff --git a/Content.Server/Alert/Click/StopBeingPulled.cs b/Content.Server/Alert/Click/StopBeingPulled.cs index de0f39d27ae..2cf076fbeed 100644 --- a/Content.Server/Alert/Click/StopBeingPulled.cs +++ b/Content.Server/Alert/Click/StopBeingPulled.cs @@ -11,7 +11,7 @@ namespace Content.Server.Alert.Click /// [UsedImplicitly] [DataDefinition] - public sealed class StopBeingPulled : IAlertClick + public sealed partial class StopBeingPulled : IAlertClick { public void AlertClicked(EntityUid player) { @@ -20,7 +20,7 @@ public void AlertClicked(EntityUid player) if (!entityManager.System().CanInteract(player, null)) return; - if (entityManager.TryGetComponent(player, out var playerPullable)) + if (entityManager.TryGetComponent(player, out SharedPullableComponent? playerPullable)) { entityManager.System().TryStopPull(playerPullable); } diff --git a/Content.Server/Alert/Click/StopPiloting.cs b/Content.Server/Alert/Click/StopPiloting.cs index 391ec7de916..cd4e333c0a8 100644 --- a/Content.Server/Alert/Click/StopPiloting.cs +++ b/Content.Server/Alert/Click/StopPiloting.cs @@ -10,7 +10,7 @@ namespace Content.Server.Alert.Click /// [UsedImplicitly] [DataDefinition] - public sealed class StopPiloting : IAlertClick + public sealed partial class StopPiloting : IAlertClick { public void AlertClicked(EntityUid player) { diff --git a/Content.Server/Alert/Click/StopPulling.cs b/Content.Server/Alert/Click/StopPulling.cs index 45ae14172fd..00a41495985 100644 --- a/Content.Server/Alert/Click/StopPulling.cs +++ b/Content.Server/Alert/Click/StopPulling.cs @@ -10,7 +10,7 @@ namespace Content.Server.Alert.Click /// [UsedImplicitly] [DataDefinition] - public sealed class StopPulling : IAlertClick + public sealed partial class StopPulling : IAlertClick { public void AlertClicked(EntityUid player) { diff --git a/Content.Server/Alert/Click/ToggleInternals.cs b/Content.Server/Alert/Click/ToggleInternals.cs index 7772b704d64..523db04df30 100644 --- a/Content.Server/Alert/Click/ToggleInternals.cs +++ b/Content.Server/Alert/Click/ToggleInternals.cs @@ -9,7 +9,7 @@ namespace Content.Server.Alert.Click; /// [UsedImplicitly] [DataDefinition] -public sealed class ToggleInternals : IAlertClick +public sealed partial class ToggleInternals : IAlertClick { public void AlertClicked(EntityUid player) { diff --git a/Content.Server/Alert/Click/Unbuckle.cs b/Content.Server/Alert/Click/Unbuckle.cs index b0a4e190994..3e53955d8c5 100644 --- a/Content.Server/Alert/Click/Unbuckle.cs +++ b/Content.Server/Alert/Click/Unbuckle.cs @@ -9,7 +9,7 @@ namespace Content.Server.Alert.Click /// [UsedImplicitly] [DataDefinition] - public sealed class Unbuckle : IAlertClick + public sealed partial class Unbuckle : IAlertClick { public void AlertClicked(EntityUid player) { diff --git a/Content.Server/AlertLevel/AlertLevelComponent.cs b/Content.Server/AlertLevel/AlertLevelComponent.cs index f25e8aafc5d..cb45c6b40e6 100644 --- a/Content.Server/AlertLevel/AlertLevelComponent.cs +++ b/Content.Server/AlertLevel/AlertLevelComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.AlertLevel; /// signify its alert level state. /// [RegisterComponent] -public sealed class AlertLevelComponent : Component +public sealed partial class AlertLevelComponent : Component { /// /// The current set of alert levels on the station. diff --git a/Content.Server/AlertLevel/AlertLevelPrototype.cs b/Content.Server/AlertLevel/AlertLevelPrototype.cs index a048a9d9f0d..6716203b25c 100644 --- a/Content.Server/AlertLevel/AlertLevelPrototype.cs +++ b/Content.Server/AlertLevel/AlertLevelPrototype.cs @@ -19,7 +19,7 @@ public sealed class AlertLevelPrototype : IPrototype /// Default level that the station is on upon initialization. /// If this isn't in the dictionary, this will default to whatever .First() gives. /// - [DataField("defaultLevel")] public string DefaultLevel { get; } = default!; + [DataField("defaultLevel")] public string DefaultLevel { get; private set; } = default!; } /// @@ -27,17 +27,17 @@ public sealed class AlertLevelPrototype : IPrototype /// the Levels field in AlertLevelPrototype. /// [DataDefinition] -public sealed class AlertLevelDetail +public sealed partial class AlertLevelDetail { /// /// What is announced upon this alert level change. Can be a localized string. /// - [DataField("announcement")] public string Announcement { get; } = string.Empty; + [DataField("announcement")] public string Announcement { get; private set; } = string.Empty; /// /// Whether this alert level is selectable from a communications console. /// - [DataField("selectable")] public bool Selectable { get; } = true; + [DataField("selectable")] public bool Selectable { get; private set; } = true; /// /// If this alert level disables user selection while it is active. Beware - @@ -45,31 +45,31 @@ public sealed class AlertLevelDetail /// This should only apply to entities or gamemodes that auto-select an alert level, /// such as a nuclear bomb being set to active. /// - [DataField("disableSelection")] public bool DisableSelection { get; } + [DataField("disableSelection")] public bool DisableSelection { get; private set; } /// /// The sound that this alert level will play in-game once selected. /// - [DataField("sound")] public SoundSpecifier? Sound { get; } + [DataField("sound")] public SoundSpecifier? Sound { get; private set; } /// /// The color that this alert level will show in-game in chat. /// - [DataField("color")] public Color Color { get; } = Color.White; + [DataField("color")] public Color Color { get; private set; } = Color.White; /// /// The color to turn emergency lights on this station when they are active. /// - [DataField("emergencyLightColor")] public Color EmergencyLightColor { get; } = Color.FromHex("#FF4020"); + [DataField("emergencyLightColor")] public Color EmergencyLightColor { get; private set; } = Color.FromHex("#FF4020"); /// /// Will this alert level force emergency lights on for the station that's active? /// - [DataField("forceEnableEmergencyLights")] public bool ForceEnableEmergencyLights { get; } = false; + [DataField("forceEnableEmergencyLights")] public bool ForceEnableEmergencyLights { get; private set; } = false; /// /// How long it takes for the shuttle to arrive when called. /// - [DataField("shuttleTime")] public TimeSpan ShuttleTime { get; } = TimeSpan.FromMinutes(5); + [DataField("shuttleTime")] public TimeSpan ShuttleTime { get; private set; } = TimeSpan.FromMinutes(5); } diff --git a/Content.Server/Ame/Components/AmeControllerComponent.cs b/Content.Server/Ame/Components/AmeControllerComponent.cs index e9e8e48b6c7..42bfa5303d7 100644 --- a/Content.Server/Ame/Components/AmeControllerComponent.cs +++ b/Content.Server/Ame/Components/AmeControllerComponent.cs @@ -6,12 +6,12 @@ namespace Content.Server.Ame.Components; /// -/// The component used to make an entity the controller/fuel injector port of an AntiMatter Engine. +/// The component used to make an entity the controller/fuel injector port of an AntiMatter Engine. /// Connects to adjacent entities with this component or to make an AME. /// [Access(typeof(AmeControllerSystem), typeof(AmeNodeGroup))] [RegisterComponent] -public sealed class AmeControllerComponent : SharedAmeControllerComponent +public sealed partial class AmeControllerComponent : SharedAmeControllerComponent { /// /// The id of the container used to store the current fuel container for the AME. diff --git a/Content.Server/Ame/Components/AmeFuelContainerComponent.cs b/Content.Server/Ame/Components/AmeFuelContainerComponent.cs index 70f3d55c7d2..b69f1d452f7 100644 --- a/Content.Server/Ame/Components/AmeFuelContainerComponent.cs +++ b/Content.Server/Ame/Components/AmeFuelContainerComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.Ame.Components; /// TODO: network and put in shared /// [RegisterComponent] -public sealed class AmeFuelContainerComponent : Component +public sealed partial class AmeFuelContainerComponent : Component { /// /// The amount of fuel in the jar. diff --git a/Content.Server/Ame/Components/AmePartComponent.cs b/Content.Server/Ame/Components/AmePartComponent.cs index 9c9af185449..2d294747d76 100644 --- a/Content.Server/Ame/Components/AmePartComponent.cs +++ b/Content.Server/Ame/Components/AmePartComponent.cs @@ -8,7 +8,7 @@ namespace Content.Server.Ame.Components; /// Packaged AME machinery that can be deployed to construct an AME. /// [RegisterComponent] -public sealed class AmePartComponent : Component +public sealed partial class AmePartComponent : Component { /// /// The sound played when the AME shielding is unpacked. diff --git a/Content.Server/Ame/Components/AmeShieldComponent.cs b/Content.Server/Ame/Components/AmeShieldComponent.cs index 83dd1e2fadf..322c5218dd9 100644 --- a/Content.Server/Ame/Components/AmeShieldComponent.cs +++ b/Content.Server/Ame/Components/AmeShieldComponent.cs @@ -9,7 +9,7 @@ namespace Content.Server.Ame.Components; /// [Access(typeof(AmeShieldingSystem), typeof(AmeNodeGroup))] [RegisterComponent] -public sealed class AmeShieldComponent : SharedAmeShieldComponent +public sealed partial class AmeShieldComponent : SharedAmeShieldComponent { /// /// Whether or not this AME shield counts as a core for the AME or not. diff --git a/Content.Server/Ame/EntitySystems/AmeControllerSystem.cs b/Content.Server/Ame/EntitySystems/AmeControllerSystem.cs index 3b427f65f4e..00e6c010648 100644 --- a/Content.Server/Ame/EntitySystems/AmeControllerSystem.cs +++ b/Content.Server/Ame/EntitySystems/AmeControllerSystem.cs @@ -1,7 +1,8 @@ +using System.Diagnostics.CodeAnalysis; +using System.Linq; using Content.Server.Administration.Logs; using Content.Server.Ame.Components; using Content.Server.Chat.Managers; -using Content.Server.Mind.Components; using Content.Server.NodeContainer; using Content.Server.Power.Components; using Content.Shared.Ame; @@ -9,14 +10,13 @@ using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; using Content.Shared.Interaction; +using Content.Shared.Mind.Components; using Content.Shared.Popups; using Robust.Server.Containers; using Robust.Server.GameObjects; using Robust.Shared.Audio; using Robust.Shared.Containers; using Robust.Shared.Timing; -using System.Diagnostics.CodeAnalysis; -using System.Linq; namespace Content.Server.Ame.EntitySystems; @@ -94,7 +94,7 @@ public void UpdateUi(EntityUid uid, AmeControllerComponent? controller = null) return; var state = GetUiState(uid, controller); - UserInterfaceSystem.SetUiState(bui, state); + _userInterfaceSystem.SetUiState(bui, state); } private AmeControllerBoundUserInterfaceState GetUiState(EntityUid uid, AmeControllerComponent controller) @@ -201,7 +201,7 @@ public void SetInjectionAmount(EntityUid uid, int value, EntityUid? user = null, safeLimit = group.CoreCount * 2; if (oldValue <= safeLimit && value > safeLimit) - _chatManager.SendAdminAlert(user.Value, $"increased AME over safe limit to {controller.InjectionAmount}", mindContainer); + _chatManager.SendAdminAlert(user.Value, $"increased AME over safe limit to {controller.InjectionAmount}"); } public void AdjustInjectionAmount(EntityUid uid, int delta, int min = 0, int max = int.MaxValue, EntityUid? user = null, AmeControllerComponent? controller = null) @@ -242,7 +242,7 @@ private void OnInteractUsing(EntityUid uid, AmeControllerComponent comp, Interac return; } - if (!HasComp(args.Used)) + if (!HasComp(args.Used)) { _popupSystem.PopupEntity(Loc.GetString("ame-controller-component-interact-using-fail"), uid, args.User); return; diff --git a/Content.Server/Animals/Components/EggLayerComponent.cs b/Content.Server/Animals/Components/EggLayerComponent.cs index a900c96947b..551e665f72e 100644 --- a/Content.Server/Animals/Components/EggLayerComponent.cs +++ b/Content.Server/Animals/Components/EggLayerComponent.cs @@ -1,8 +1,6 @@ -using Content.Shared.Actions; -using Content.Shared.Actions.ActionTypes; using Content.Shared.Storage; using Robust.Shared.Audio; -using Robust.Shared.Serialization; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.Animals.Components; @@ -12,10 +10,10 @@ namespace Content.Server.Animals.Components; /// It also grants an action to players who are controlling these entities, allowing them to do it manually. /// [RegisterComponent] -public sealed class EggLayerComponent : Component +public sealed partial class EggLayerComponent : Component { - [DataField("eggLayAction", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string EggLayAction = "AnimalLayEgg"; + [DataField("eggLayAction", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string EggLayAction = "ActionAnimalLayEgg"; [ViewVariables(VVAccess.ReadWrite)] [DataField("hungerUsage")] @@ -51,5 +49,3 @@ public sealed class EggLayerComponent : Component [DataField("accumulatedFrametime")] public float AccumulatedFrametime; } - -public sealed class EggLayInstantActionEvent : InstantActionEvent {} diff --git a/Content.Server/Animals/Components/UdderComponent.cs b/Content.Server/Animals/Components/UdderComponent.cs index ad591022c19..1c71fcb7c5e 100644 --- a/Content.Server/Animals/Components/UdderComponent.cs +++ b/Content.Server/Animals/Components/UdderComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Animals.Components { [RegisterComponent, Access(typeof(UdderSystem))] - internal sealed class UdderComponent : Component + internal sealed partial class UdderComponent : Component { /// /// The reagent to produce. diff --git a/Content.Server/Animals/Systems/EggLayerSystem.cs b/Content.Server/Animals/Systems/EggLayerSystem.cs index a9ab3c5f29a..abfd74ad01c 100644 --- a/Content.Server/Animals/Systems/EggLayerSystem.cs +++ b/Content.Server/Animals/Systems/EggLayerSystem.cs @@ -1,20 +1,18 @@ using Content.Server.Actions; using Content.Server.Animals.Components; using Content.Server.Popups; -using Content.Shared.Actions.ActionTypes; +using Content.Shared.Actions.Events; using Content.Shared.Nutrition.Components; using Content.Shared.Nutrition.EntitySystems; using Content.Shared.Storage; using Robust.Server.GameObjects; using Robust.Shared.Player; -using Robust.Shared.Prototypes; using Robust.Shared.Random; namespace Content.Server.Animals.Systems; public sealed class EggLayerSystem : EntitySystem { - [Dependency] private readonly IPrototypeManager _prototype = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly ActionsSystem _actions = default!; [Dependency] private readonly AudioSystem _audio = default!; @@ -54,10 +52,10 @@ public override void Update(float frameTime) private void OnComponentInit(EntityUid uid, EggLayerComponent component, ComponentInit args) { - if (!_prototype.TryIndex(component.EggLayAction, out var action)) + if (string.IsNullOrWhiteSpace(component.EggLayAction)) return; - _actions.AddAction(uid, new InstantAction(action), uid); + _actions.AddAction(uid, Spawn(component.EggLayAction), uid); component.CurrentEggLayCooldown = _random.NextFloat(component.EggLayCooldownMin, component.EggLayCooldownMax); } diff --git a/Content.Server/Animals/Systems/UdderSystem.cs b/Content.Server/Animals/Systems/UdderSystem.cs index ce4d1762baa..b57eeaf299a 100644 --- a/Content.Server/Animals/Systems/UdderSystem.cs +++ b/Content.Server/Animals/Systems/UdderSystem.cs @@ -43,7 +43,7 @@ public override void Update(float frameTime) udder.AccumulatedFrameTime -= udder.UpdateRate; // Actually there is food digestion so no problem with instant reagent generation "OnFeed" - if (EntityManager.TryGetComponent(udder.Owner, out var hunger)) + if (EntityManager.TryGetComponent(udder.Owner, out HungerComponent? hunger)) { // Is there enough nutrition to produce reagent? if (_hunger.GetHungerThreshold(hunger) < HungerThreshold.Peckish) @@ -66,7 +66,7 @@ private void AttemptMilk(EntityUid uid, EntityUid userUid, EntityUid containerUi if (!Resolve(uid, ref udder)) return; - var doargs = new DoAfterArgs(userUid, 5, new MilkingDoAfterEvent(), uid, uid, used: containerUid) + var doargs = new DoAfterArgs(EntityManager, userUid, 5, new MilkingDoAfterEvent(), uid, uid, used: containerUid) { BreakOnUserMove = true, BreakOnDamage = true, diff --git a/Content.Server/Announcements/RoundAnnouncementPrototype.cs b/Content.Server/Announcements/RoundAnnouncementPrototype.cs index 039acf41f56..928c279a87d 100644 --- a/Content.Server/Announcements/RoundAnnouncementPrototype.cs +++ b/Content.Server/Announcements/RoundAnnouncementPrototype.cs @@ -12,7 +12,7 @@ namespace Content.Server.Announcements; public sealed class RoundAnnouncementPrototype : IPrototype { [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [DataField("sound")] public SoundSpecifier? Sound; diff --git a/Content.Server/Anomaly/AnomalySystem.Commands.cs b/Content.Server/Anomaly/AnomalySystem.Commands.cs index 91056976a55..b1a7c444397 100644 --- a/Content.Server/Anomaly/AnomalySystem.Commands.cs +++ b/Content.Server/Anomaly/AnomalySystem.Commands.cs @@ -26,13 +26,13 @@ private void PulseAnomalyCommand(IConsoleShell shell, string argstr, string[] ar if (args.Length != 1) shell.WriteError("Argument length must be 1"); - if (!EntityUid.TryParse(args[0], out var uid)) + if (!NetEntity.TryParse(args[0], out var uidNet) || !TryGetEntity(uidNet, out var uid)) return; if (!TryComp(uid, out var anomaly)) return; - DoAnomalyPulse(uid, anomaly); + DoAnomalyPulse(uid.Value, anomaly); } [AdminCommand(AdminFlags.Fun)] @@ -41,13 +41,13 @@ private void SupercriticalAnomalyCommand(IConsoleShell shell, string argstr, str if (args.Length != 1) shell.WriteError("Argument length must be 1"); - if (!EntityUid.TryParse(args[0], out var uid)) + if (!NetEntity.TryParse(args[0], out var uidNet) || !TryGetEntity(uidNet, out var uid)) return; if (!HasComp(uid)) return; - StartSupercriticalEvent(uid); + StartSupercriticalEvent(uid.Value); } private CompletionResult GetAnomalyCompletion(IConsoleShell shell, string[] args) diff --git a/Content.Server/Anomaly/AnomalySystem.Scanner.cs b/Content.Server/Anomaly/AnomalySystem.Scanner.cs index 37c4384f2f3..caff031ace9 100644 --- a/Content.Server/Anomaly/AnomalySystem.Scanner.cs +++ b/Content.Server/Anomaly/AnomalySystem.Scanner.cs @@ -79,7 +79,7 @@ private void OnScannerAfterInteract(EntityUid uid, AnomalyScannerComponent compo if (!HasComp(target)) return; - _doAfter.TryStartDoAfter(new DoAfterArgs(args.User, component.ScanDoAfterDuration, new ScannerDoAfterEvent(), uid, target: target, used: uid) + _doAfter.TryStartDoAfter(new DoAfterArgs(EntityManager, args.User, component.ScanDoAfterDuration, new ScannerDoAfterEvent(), uid, target: target, used: uid) { DistanceThreshold = 2f }); diff --git a/Content.Server/Anomaly/AnomalySystem.Vessel.cs b/Content.Server/Anomaly/AnomalySystem.Vessel.cs index 893a9682584..02c435d2425 100644 --- a/Content.Server/Anomaly/AnomalySystem.Vessel.cs +++ b/Content.Server/Anomaly/AnomalySystem.Vessel.cs @@ -156,7 +156,7 @@ public void UpdateVesselAppearance(EntityUid uid, AnomalyVesselComponent? compon return; Appearance.SetData(uid, AnomalyVesselVisuals.HasAnomaly, on, appearanceComponent); - if (TryComp(uid, out var pointLightComponent)) + if (_pointLight.TryGetLight(uid, out var pointLightComponent)) _pointLight.SetEnabled(uid, on, pointLightComponent); // arbitrary value for the generic visualizer to use. diff --git a/Content.Server/Anomaly/AnomalySystem.cs b/Content.Server/Anomaly/AnomalySystem.cs index b32119264b2..5f6220f386f 100644 --- a/Content.Server/Anomaly/AnomalySystem.cs +++ b/Content.Server/Anomaly/AnomalySystem.cs @@ -1,4 +1,4 @@ -using Content.Server.Anomaly.Components; +using Content.Server.Anomaly.Components; using Content.Server.Atmos.EntitySystems; using Content.Server.Audio; using Content.Server.Explosion.EntitySystems; @@ -73,7 +73,7 @@ private void OnStartCollide(EntityUid uid, AnomalyComponent component, ref Start if (!TryComp(args.OtherEntity, out var particle)) return; - if (args.OtherFixture.ID != particle.FixtureId) + if (args.OtherFixtureId != particle.FixtureId) return; // small function to randomize because it's easier to read like this diff --git a/Content.Server/Anomaly/Components/AnomalousParticleComponent.cs b/Content.Server/Anomaly/Components/AnomalousParticleComponent.cs index 6c018c4f318..9141ca6529c 100644 --- a/Content.Server/Anomaly/Components/AnomalousParticleComponent.cs +++ b/Content.Server/Anomaly/Components/AnomalousParticleComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Anomaly.Components; /// This is used for projectiles which affect anomalies through colliding with them. /// [RegisterComponent, Access(typeof(SharedAnomalySystem))] -public sealed class AnomalousParticleComponent : Component +public sealed partial class AnomalousParticleComponent : Component { /// /// The type of particle that the projectile diff --git a/Content.Server/Anomaly/Components/AnomalyGeneratorComponent.cs b/Content.Server/Anomaly/Components/AnomalyGeneratorComponent.cs index fdb9d2e721a..1ff0290fc96 100644 --- a/Content.Server/Anomaly/Components/AnomalyGeneratorComponent.cs +++ b/Content.Server/Anomaly/Components/AnomalyGeneratorComponent.cs @@ -13,7 +13,7 @@ namespace Content.Server.Anomaly.Components; /// anomalies randomly on the station. /// [RegisterComponent, Access(typeof(SharedAnomalySystem))] -public sealed class AnomalyGeneratorComponent : Component +public sealed partial class AnomalyGeneratorComponent : Component { /// /// The time at which the cooldown for generating another anomaly will be over diff --git a/Content.Server/Anomaly/Components/AnomalyScannerComponent.cs b/Content.Server/Anomaly/Components/AnomalyScannerComponent.cs index c7259ee468a..1bc30704943 100644 --- a/Content.Server/Anomaly/Components/AnomalyScannerComponent.cs +++ b/Content.Server/Anomaly/Components/AnomalyScannerComponent.cs @@ -8,7 +8,7 @@ namespace Content.Server.Anomaly.Components; /// displaying information about them in the ui /// [RegisterComponent, Access(typeof(SharedAnomalySystem))] -public sealed class AnomalyScannerComponent : Component +public sealed partial class AnomalyScannerComponent : Component { /// /// The anomaly that was last scanned by this scanner. diff --git a/Content.Server/Anomaly/Components/AnomalyVesselComponent.cs b/Content.Server/Anomaly/Components/AnomalyVesselComponent.cs index 1dd6cbb2545..426e1d97d55 100644 --- a/Content.Server/Anomaly/Components/AnomalyVesselComponent.cs +++ b/Content.Server/Anomaly/Components/AnomalyVesselComponent.cs @@ -13,7 +13,7 @@ namespace Content.Server.Anomaly.Components; /// the anomaly's stability and severity. /// [RegisterComponent, Access(typeof(SharedAnomalySystem))] -public sealed class AnomalyVesselComponent : Component +public sealed partial class AnomalyVesselComponent : Component { /// /// The anomaly that the vessel is storing. diff --git a/Content.Server/Anomaly/Components/BluespaceAnomalyComponent.cs b/Content.Server/Anomaly/Components/BluespaceAnomalyComponent.cs index d1e9e783b99..6c6692cfffa 100644 --- a/Content.Server/Anomaly/Components/BluespaceAnomalyComponent.cs +++ b/Content.Server/Anomaly/Components/BluespaceAnomalyComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Anomaly.Components; [RegisterComponent, Access(typeof(BluespaceAnomalySystem))] -public sealed class BluespaceAnomalyComponent : Component +public sealed partial class BluespaceAnomalyComponent : Component { /// /// The maximum radius that the shuffle effect will extend for diff --git a/Content.Server/Anomaly/Components/ExplosionAnomalyComponent.cs b/Content.Server/Anomaly/Components/ExplosionAnomalyComponent.cs index 0c9f71bb2d6..05befaf13ce 100644 --- a/Content.Server/Anomaly/Components/ExplosionAnomalyComponent.cs +++ b/Content.Server/Anomaly/Components/ExplosionAnomalyComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Anomaly.Components; [RegisterComponent] -public sealed class ExplosionAnomalyComponent : Component +public sealed partial class ExplosionAnomalyComponent : Component { /// /// The explosion prototype to spawn diff --git a/Content.Server/Anomaly/Components/GasProducerAnomalyComponent.cs b/Content.Server/Anomaly/Components/GasProducerAnomalyComponent.cs index 5df429be46d..240eeddaa80 100644 --- a/Content.Server/Anomaly/Components/GasProducerAnomalyComponent.cs +++ b/Content.Server/Anomaly/Components/GasProducerAnomalyComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Anomaly.Components; /// This component is used for handling gas producing anomalies. Will always spawn one on the tile with the anomaly, and in a random radius around it. /// [RegisterComponent] -public sealed class GasProducerAnomalyComponent : Component +public sealed partial class GasProducerAnomalyComponent : Component { /// /// Should this gas be released when an anomaly reaches max severity? @@ -45,11 +45,11 @@ public sealed class GasProducerAnomalyComponent : Component public float spawnRadius = 3; /// - /// The number of tiles which will be modified. + /// The number of tiles which will be modified. /// [DataField("tileCount")] public int tileCount = 1; - + /// /// The the amount the tempurature should be modified by (negative for decreasing temp) /// diff --git a/Content.Server/Anomaly/Components/GeneratingAnomalyGeneratorComponent.cs b/Content.Server/Anomaly/Components/GeneratingAnomalyGeneratorComponent.cs index 8e4eb603999..d768f905cea 100644 --- a/Content.Server/Anomaly/Components/GeneratingAnomalyGeneratorComponent.cs +++ b/Content.Server/Anomaly/Components/GeneratingAnomalyGeneratorComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.Anomaly.Components; [RegisterComponent, Access(typeof(SharedAnomalySystem))] -public sealed class GeneratingAnomalyGeneratorComponent : Component +public sealed partial class GeneratingAnomalyGeneratorComponent : Component { /// /// When the generating period will end. diff --git a/Content.Server/Anomaly/Components/ProjectileAnomalyComponent.cs b/Content.Server/Anomaly/Components/ProjectileAnomalyComponent.cs index af395fd817c..860b24a8946 100644 --- a/Content.Server/Anomaly/Components/ProjectileAnomalyComponent.cs +++ b/Content.Server/Anomaly/Components/ProjectileAnomalyComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Anomaly.Components; [RegisterComponent] -public sealed class ProjectileAnomalyComponent : Component +public sealed partial class ProjectileAnomalyComponent : Component { /// /// The prototype of the projectile that will be shot when the anomaly pulses diff --git a/Content.Server/Anomaly/Components/TempAffectingAnomalyComponent.cs b/Content.Server/Anomaly/Components/TempAffectingAnomalyComponent.cs index af97694857c..cd74e0c81f7 100644 --- a/Content.Server/Anomaly/Components/TempAffectingAnomalyComponent.cs +++ b/Content.Server/Anomaly/Components/TempAffectingAnomalyComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Anomaly.Components; /// This component is used for handling anomalies that affect the temperature /// [RegisterComponent] -public sealed class TempAffectingAnomalyComponent : Component +public sealed partial class TempAffectingAnomalyComponent : Component { /// diff --git a/Content.Server/Anomaly/Effects/EntityAnomalySystem.cs b/Content.Server/Anomaly/Effects/EntityAnomalySystem.cs index 445774b7a31..5c8e92044ce 100644 --- a/Content.Server/Anomaly/Effects/EntityAnomalySystem.cs +++ b/Content.Server/Anomaly/Effects/EntityAnomalySystem.cs @@ -16,8 +16,6 @@ public sealed class EntityAnomalySystem : EntitySystem { [Dependency] private readonly IMapManager _map = default!; [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly ITileDefinitionManager _tiledef = default!; - [Dependency] private readonly TileSystem _tile = default!; /// public override void Initialize() diff --git a/Content.Server/Arcade/BlockGame/BlockGameArcadeComponent.cs b/Content.Server/Arcade/BlockGame/BlockGameArcadeComponent.cs index 8f168dd8d52..268d5be4d2e 100644 --- a/Content.Server/Arcade/BlockGame/BlockGameArcadeComponent.cs +++ b/Content.Server/Arcade/BlockGame/BlockGameArcadeComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Arcade.BlockGame; [RegisterComponent] -public sealed class BlockGameArcadeComponent : Component +public sealed partial class BlockGameArcadeComponent : Component { /// /// The currently active session of NT-BG. diff --git a/Content.Server/Arcade/BlockGame/BlockGameArcadeSystem.cs b/Content.Server/Arcade/BlockGame/BlockGameArcadeSystem.cs index 06390a42458..dac29accc96 100644 --- a/Content.Server/Arcade/BlockGame/BlockGameArcadeSystem.cs +++ b/Content.Server/Arcade/BlockGame/BlockGameArcadeSystem.cs @@ -30,7 +30,7 @@ public override void Update(float frameTime) } } - private void UpdatePlayerStatus(EntityUid uid, IPlayerSession session, BoundUserInterface? bui = null, BlockGameArcadeComponent? blockGame = null) + private void UpdatePlayerStatus(EntityUid uid, IPlayerSession session, PlayerBoundUserInterface? bui = null, BlockGameArcadeComponent? blockGame = null) { if (!Resolve(uid, ref blockGame)) return; diff --git a/Content.Server/Arcade/SpaceVillainGame/SpaceVillainArcadeComponent.cs b/Content.Server/Arcade/SpaceVillainGame/SpaceVillainArcadeComponent.cs index db55284b1f5..e93fcc6e8f1 100644 --- a/Content.Server/Arcade/SpaceVillainGame/SpaceVillainArcadeComponent.cs +++ b/Content.Server/Arcade/SpaceVillainGame/SpaceVillainArcadeComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Arcade.SpaceVillain; [RegisterComponent] -public sealed class SpaceVillainArcadeComponent : SharedSpaceVillainArcadeComponent +public sealed partial class SpaceVillainArcadeComponent : SharedSpaceVillainArcadeComponent { /// /// Unused flag that can be hacked via wires. diff --git a/Content.Server/Arcade/WireActions/ArcadeInvincibilityWireActions.cs b/Content.Server/Arcade/WireActions/ArcadeInvincibilityWireActions.cs index 84d7a15480b..9c3f78c898a 100644 --- a/Content.Server/Arcade/WireActions/ArcadeInvincibilityWireActions.cs +++ b/Content.Server/Arcade/WireActions/ArcadeInvincibilityWireActions.cs @@ -5,7 +5,7 @@ namespace Content.Server.Arcade; -public sealed class ArcadePlayerInvincibleWireAction : BaseToggleWireAction +public sealed partial class ArcadePlayerInvincibleWireAction : BaseToggleWireAction { public override string Name { get; set; } = "wire-name-arcade-invincible"; @@ -43,7 +43,7 @@ public override bool GetValue(EntityUid owner) } } -public sealed class ArcadeEnemyInvincibleWireAction : BaseToggleWireAction +public sealed partial class ArcadeEnemyInvincibleWireAction : BaseToggleWireAction { public override string Name { get; set; } = "wire-name-player-invincible"; public override Color Color { get; set; } = Color.Purple; diff --git a/Content.Server/Arcade/WireActions/ArcadeOverflowWireAction.cs b/Content.Server/Arcade/WireActions/ArcadeOverflowWireAction.cs index 1d15e03e64b..6028dac53ec 100644 --- a/Content.Server/Arcade/WireActions/ArcadeOverflowWireAction.cs +++ b/Content.Server/Arcade/WireActions/ArcadeOverflowWireAction.cs @@ -5,7 +5,7 @@ namespace Content.Server.Arcade; -public sealed class ArcadeOverflowWireAction : BaseToggleWireAction +public sealed partial class ArcadeOverflowWireAction : BaseToggleWireAction { public override Color Color { get; set; } = Color.Red; public override string Name { get; set; } = "wire-name-arcade-overflow"; diff --git a/Content.Server/Armor/ArmorComponent.cs b/Content.Server/Armor/ArmorComponent.cs index debf1feab8a..09be3bf2401 100644 --- a/Content.Server/Armor/ArmorComponent.cs +++ b/Content.Server/Armor/ArmorComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Armor { [RegisterComponent] - public sealed class ArmorComponent : Component + public sealed partial class ArmorComponent : Component { [DataField("modifiers", required: true)] public DamageModifierSet Modifiers = default!; diff --git a/Content.Server/Atmos/Commands/AddAtmosCommand.cs b/Content.Server/Atmos/Commands/AddAtmosCommand.cs index 7a13eef6d20..d943b5bf066 100644 --- a/Content.Server/Atmos/Commands/AddAtmosCommand.cs +++ b/Content.Server/Atmos/Commands/AddAtmosCommand.cs @@ -24,29 +24,27 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - var entMan = IoCManager.Resolve(); - - if (!EntityUid.TryParse(args[0], out var euid)) + if (!NetEntity.TryParse(args[0], out var eNet) || !_entities.TryGetEntity(eNet, out var euid)) { shell.WriteError($"Failed to parse euid '{args[0]}'."); return; } - if (!entMan.HasComponent(euid)) + if (!_entities.HasComponent(euid)) { shell.WriteError($"Euid '{euid}' does not exist or is not a grid."); return; } - var atmos = entMan.EntitySysManager.GetEntitySystem(); + var atmos = _entities.EntitySysManager.GetEntitySystem(); - if (atmos.HasAtmosphere(euid)) + if (atmos.HasAtmosphere(euid.Value)) { shell.WriteLine("Grid already has an atmosphere."); return; } - _entities.AddComponent(euid); + _entities.AddComponent(euid.Value); shell.WriteLine($"Added atmosphere to grid {euid}."); } diff --git a/Content.Server/Atmos/Commands/AddGasCommand.cs b/Content.Server/Atmos/Commands/AddGasCommand.cs index 2c4eb8785cf..3dccf39023d 100644 --- a/Content.Server/Atmos/Commands/AddGasCommand.cs +++ b/Content.Server/Atmos/Commands/AddGasCommand.cs @@ -11,28 +11,34 @@ namespace Content.Server.Atmos.Commands [AdminCommand(AdminFlags.Debug)] public sealed class AddGasCommand : IConsoleCommand { + [Dependency] private readonly IEntityManager _entManager = default!; + public string Command => "addgas"; public string Description => "Adds gas at a certain position."; public string Help => "addgas "; public void Execute(IConsoleShell shell, string argStr, string[] args) { - if (args.Length < 5) return; + if (args.Length < 5) + return; - if(!int.TryParse(args[0], out var x) - || !int.TryParse(args[1], out var y) - || !EntityUid.TryParse(args[2], out var euid) - || !(AtmosCommandUtils.TryParseGasID(args[3], out var gasId)) - || !float.TryParse(args[4], out var moles)) return; + if (!int.TryParse(args[0], out var x) + || !int.TryParse(args[1], out var y) + || !NetEntity.TryParse(args[2], out var netEnt) + || !_entManager.TryGetEntity(netEnt, out var euid) + || !(AtmosCommandUtils.TryParseGasID(args[3], out var gasId)) + || !float.TryParse(args[4], out var moles)) + { + return; + } - var entMan = IoCManager.Resolve(); - if (!entMan.HasComponent(euid)) + if (!_entManager.HasComponent(euid)) { shell.WriteError($"Euid '{euid}' does not exist or is not a grid."); return; } - var atmosphereSystem = entMan.EntitySysManager.GetEntitySystem(); + var atmosphereSystem = _entManager.EntitySysManager.GetEntitySystem(); var indices = new Vector2i(x, y); var tile = atmosphereSystem.GetTileMixture(euid, null, indices, true); diff --git a/Content.Server/Atmos/Commands/DeleteGasCommand.cs b/Content.Server/Atmos/Commands/DeleteGasCommand.cs index b38b15cec3c..0f0c399b11a 100644 --- a/Content.Server/Atmos/Commands/DeleteGasCommand.cs +++ b/Content.Server/Atmos/Commands/DeleteGasCommand.cs @@ -11,6 +11,9 @@ namespace Content.Server.Atmos.Commands [AdminCommand(AdminFlags.Debug)] public sealed class DeleteGasCommand : IConsoleCommand { + [Dependency] private readonly IEntityManager _entManager = default!; + [Dependency] private readonly IMapManager _mapManager = default!; + public string Command => "deletegas"; public string Description => "Removes all gases from a grid, or just of one type if specified."; public string Help => $"Usage: {Command} / {Command} / {Command} / {Command}"; @@ -21,8 +24,6 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) EntityUid? gridId; Gas? gas = null; - var entMan = IoCManager.Resolve(); - switch (args.Length) { case 0: @@ -39,7 +40,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - gridId = entMan.GetComponent(playerEntity).GridUid; + gridId = _entManager.GetComponent(playerEntity).GridUid; if (gridId == null) { @@ -51,7 +52,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) } case 1: { - if (!EntityUid.TryParse(args[0], out var number)) + if (!NetEntity.TryParse(args[0], out var numberEnt) || !_entManager.TryGetEntity(numberEnt, out var number)) { // Argument is a gas if (player == null) @@ -66,7 +67,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - gridId = entMan.GetComponent(playerEntity).GridUid; + gridId = _entManager.GetComponent(playerEntity).GridUid; if (gridId == null) { @@ -90,7 +91,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) } case 2: { - if (!EntityUid.TryParse(args[0], out var first)) + if (!NetEntity.TryParse(args[0], out var firstNet) || !_entManager.TryGetEntity(firstNet, out var first)) { shell.WriteLine($"{args[0]} is not a valid integer for a grid id."); return; @@ -119,15 +120,13 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - var mapManager = IoCManager.Resolve(); - - if (!mapManager.TryGetGrid(gridId, out _)) + if (!_mapManager.TryGetGrid(gridId, out _)) { shell.WriteLine($"No grid exists with id {gridId}"); return; } - var atmosphereSystem = EntitySystem.Get(); + var atmosphereSystem = _entManager.System(); var tiles = 0; var moles = 0f; @@ -136,7 +135,8 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) { foreach (var tile in atmosphereSystem.GetAllMixtures(gridId.Value, true)) { - if (tile.Immutable) continue; + if (tile.Immutable) + continue; tiles++; moles += tile.TotalMoles; @@ -148,7 +148,8 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) { foreach (var tile in atmosphereSystem.GetAllMixtures(gridId.Value, true)) { - if (tile.Immutable) continue; + if (tile.Immutable) + continue; tiles++; moles += tile.TotalMoles; diff --git a/Content.Server/Atmos/Commands/FillGasCommand.cs b/Content.Server/Atmos/Commands/FillGasCommand.cs index c4befa85105..b6db46abed4 100644 --- a/Content.Server/Atmos/Commands/FillGasCommand.cs +++ b/Content.Server/Atmos/Commands/FillGasCommand.cs @@ -10,26 +10,33 @@ namespace Content.Server.Atmos.Commands [AdminCommand(AdminFlags.Debug)] public sealed class FillGas : IConsoleCommand { + [Dependency] private readonly IEntityManager _entManager = default!; + [Dependency] private readonly IMapManager _mapManager = default!; + public string Command => "fillgas"; public string Description => "Adds gas to all tiles in a grid."; public string Help => "fillgas "; public void Execute(IConsoleShell shell, string argStr, string[] args) { - if (args.Length < 3) return; - if(!EntityUid.TryParse(args[0], out var gridId) - || !(AtmosCommandUtils.TryParseGasID(args[1], out var gasId)) - || !float.TryParse(args[2], out var moles)) return; + if (args.Length < 3) + return; - var mapMan = IoCManager.Resolve(); + if (!NetEntity.TryParse(args[0], out var gridIdNet) + || !_entManager.TryGetEntity(gridIdNet, out var gridId) + || !(AtmosCommandUtils.TryParseGasID(args[1], out var gasId)) + || !float.TryParse(args[2], out var moles)) + { + return; + } - if (!mapMan.TryGetGrid(gridId, out var grid)) + if (!_mapManager.TryGetGrid(gridId, out var grid)) { shell.WriteLine("Invalid grid ID."); return; } - var atmosphereSystem = EntitySystem.Get(); + var atmosphereSystem = _entManager.System(); foreach (var tile in atmosphereSystem.GetAllMixtures(grid.Owner, true)) { diff --git a/Content.Server/Atmos/Commands/RemoveGasCommand.cs b/Content.Server/Atmos/Commands/RemoveGasCommand.cs index 29b9a1cc766..aeea1119f41 100644 --- a/Content.Server/Atmos/Commands/RemoveGasCommand.cs +++ b/Content.Server/Atmos/Commands/RemoveGasCommand.cs @@ -9,20 +9,28 @@ namespace Content.Server.Atmos.Commands [AdminCommand(AdminFlags.Debug)] public sealed class RemoveGasCommand : IConsoleCommand { + [Dependency] private readonly IEntityManager _entManager = default!; + public string Command => "removegas"; public string Description => "Removes an amount of gases."; public string Help => "removegas \nIf is true, amount will be treated as the ratio of gas to be removed."; public void Execute(IConsoleShell shell, string argStr, string[] args) { - if (args.Length < 5) return; - if(!int.TryParse(args[0], out var x) + if (args.Length < 5) + return; + + if (!int.TryParse(args[0], out var x) || !int.TryParse(args[1], out var y) - || !EntityUid.TryParse(args[2], out var id) + || !NetEntity.TryParse(args[2], out var idNet) + || !_entManager.TryGetEntity(idNet, out var id) || !float.TryParse(args[3], out var amount) - || !bool.TryParse(args[4], out var ratio)) return; + || !bool.TryParse(args[4], out var ratio)) + { + return; + } - var atmosphereSystem = EntitySystem.Get(); + var atmosphereSystem = _entManager.System(); var indices = new Vector2i(x, y); var tile = atmosphereSystem.GetTileMixture(id, null, indices, true); diff --git a/Content.Server/Atmos/Commands/SetAtmosTemperatureCommand.cs b/Content.Server/Atmos/Commands/SetAtmosTemperatureCommand.cs index d146655a524..1d7e306d549 100644 --- a/Content.Server/Atmos/Commands/SetAtmosTemperatureCommand.cs +++ b/Content.Server/Atmos/Commands/SetAtmosTemperatureCommand.cs @@ -10,17 +10,23 @@ namespace Content.Server.Atmos.Commands [AdminCommand(AdminFlags.Debug)] public sealed class SetAtmosTemperatureCommand : IConsoleCommand { + [Dependency] private readonly IEntityManager _entManager = default!; + [Dependency] private readonly IMapManager _mapManager = default!; + public string Command => "setatmostemp"; public string Description => "Sets a grid's temperature (in kelvin)."; public string Help => "Usage: setatmostemp "; public void Execute(IConsoleShell shell, string argStr, string[] args) { - if (args.Length < 2) return; - if(!EntityUid.TryParse(args[0], out var gridId) - || !float.TryParse(args[1], out var temperature)) return; + if (args.Length < 2) + return; - var mapMan = IoCManager.Resolve(); + if (!_entManager.TryParseNetEntity(args[0], out var gridId) + || !float.TryParse(args[1], out var temperature)) + { + return; + } if (temperature < Atmospherics.TCMB) { @@ -28,13 +34,13 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!gridId.IsValid() || !mapMan.TryGetGrid(gridId, out var gridComp)) + if (!gridId.Value.IsValid() || !_mapManager.TryGetGrid(gridId, out var gridComp)) { shell.WriteLine("Invalid grid ID."); return; } - var atmosphereSystem = EntitySystem.Get(); + var atmosphereSystem = _entManager.System(); var tiles = 0; foreach (var tile in atmosphereSystem.GetAllMixtures(gridComp.Owner, true)) diff --git a/Content.Server/Atmos/Commands/SetTemperatureCommand.cs b/Content.Server/Atmos/Commands/SetTemperatureCommand.cs index a668278fe1b..e6dcbdb4cfa 100644 --- a/Content.Server/Atmos/Commands/SetTemperatureCommand.cs +++ b/Content.Server/Atmos/Commands/SetTemperatureCommand.cs @@ -22,11 +22,17 @@ public sealed class SetTemperatureCommand : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - if (args.Length < 4) return; - if(!int.TryParse(args[0], out var x) - || !int.TryParse(args[1], out var y) - || !EntityUid.TryParse(args[2], out var gridId) - || !float.TryParse(args[3], out var temperature)) return; + if (args.Length < 4) + return; + + if (!int.TryParse(args[0], out var x) + || !int.TryParse(args[1], out var y) + || !NetEntity.TryParse(args[2], out var gridIdNet) + || !_entities.TryGetEntity(gridIdNet, out var gridId) + || !float.TryParse(args[3], out var temperature)) + { + return; + } if (temperature < Atmospherics.TCMB) { diff --git a/Content.Server/Atmos/Components/AirtightComponent.cs b/Content.Server/Atmos/Components/AirtightComponent.cs index bd18971b954..897981724c9 100644 --- a/Content.Server/Atmos/Components/AirtightComponent.cs +++ b/Content.Server/Atmos/Components/AirtightComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Atmos.Components { [RegisterComponent] - public sealed class AirtightComponent : Component + public sealed partial class AirtightComponent : Component { public (EntityUid Grid, Vector2i Tile) LastPosition { get; set; } diff --git a/Content.Server/Atmos/Components/AtmosExposedComponent.cs b/Content.Server/Atmos/Components/AtmosExposedComponent.cs index 6a2840c288a..721aae8f4fa 100644 --- a/Content.Server/Atmos/Components/AtmosExposedComponent.cs +++ b/Content.Server/Atmos/Components/AtmosExposedComponent.cs @@ -5,7 +5,7 @@ /// Represents that entity can be exposed to Atmos /// [RegisterComponent] - public sealed class AtmosExposedComponent : Component + public sealed partial class AtmosExposedComponent : Component { } } diff --git a/Content.Server/Atmos/Components/AtmosFixMarkerComponent.cs b/Content.Server/Atmos/Components/AtmosFixMarkerComponent.cs index 4cc36196951..5123500239e 100644 --- a/Content.Server/Atmos/Components/AtmosFixMarkerComponent.cs +++ b/Content.Server/Atmos/Components/AtmosFixMarkerComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Atmos.Components /// Used by FixGridAtmos. Entities with this may get magically auto-deleted on map initialization in future. /// [RegisterComponent] - public sealed class AtmosFixMarkerComponent : Component + public sealed partial class AtmosFixMarkerComponent : Component { // See FixGridAtmos for more details [DataField("mode")] diff --git a/Content.Server/Atmos/Components/AtmosPlaqueComponent.cs b/Content.Server/Atmos/Components/AtmosPlaqueComponent.cs index 43a0c17efa8..d86cbe1d2fb 100644 --- a/Content.Server/Atmos/Components/AtmosPlaqueComponent.cs +++ b/Content.Server/Atmos/Components/AtmosPlaqueComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Atmos.Components { [RegisterComponent] - public sealed class AtmosPlaqueComponent : Component + public sealed partial class AtmosPlaqueComponent : Component { [DataField("plaqueType")] public PlaqueType Type = PlaqueType.Unset; diff --git a/Content.Server/Atmos/Components/BarotraumaComponent.cs b/Content.Server/Atmos/Components/BarotraumaComponent.cs index 1a9f8c04f76..1e421f0a12e 100644 --- a/Content.Server/Atmos/Components/BarotraumaComponent.cs +++ b/Content.Server/Atmos/Components/BarotraumaComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Atmos.Components /// Barotrauma: injury because of changes in air pressure. /// [RegisterComponent] - public sealed class BarotraumaComponent : Component + public sealed partial class BarotraumaComponent : Component { [DataField("damage", required: true)] [ViewVariables(VVAccess.ReadWrite)] diff --git a/Content.Server/Atmos/Components/BreathToolComponent.cs b/Content.Server/Atmos/Components/BreathToolComponent.cs index edc494bb362..6e50dc71ea1 100644 --- a/Content.Server/Atmos/Components/BreathToolComponent.cs +++ b/Content.Server/Atmos/Components/BreathToolComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Atmos.Components /// [RegisterComponent] [ComponentProtoName("BreathMask")] - public sealed class BreathToolComponent : Component + public sealed partial class BreathToolComponent : Component { /// /// Tool is functional only in allowed slots diff --git a/Content.Server/Atmos/Components/FlammableComponent.cs b/Content.Server/Atmos/Components/FlammableComponent.cs index badd494cc39..9891c55d4ac 100644 --- a/Content.Server/Atmos/Components/FlammableComponent.cs +++ b/Content.Server/Atmos/Components/FlammableComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Atmos.Components { [RegisterComponent] - public sealed class FlammableComponent : Component + public sealed partial class FlammableComponent : Component { [ViewVariables] public bool Resisting = false; diff --git a/Content.Server/Atmos/Components/GasAnalyzerComponent.cs b/Content.Server/Atmos/Components/GasAnalyzerComponent.cs index b2d10400cb9..238cf33dc8d 100644 --- a/Content.Server/Atmos/Components/GasAnalyzerComponent.cs +++ b/Content.Server/Atmos/Components/GasAnalyzerComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Atmos.Components; /// Used to keep track of which analyzers are active for update purposes /// [RegisterComponent] -public sealed class ActiveGasAnalyzerComponent : Component +public sealed partial class ActiveGasAnalyzerComponent : Component { // Set to a tiny bit after the default because otherwise the user often gets a blank window when first using [DataField("accumulatedFrameTime"), ViewVariables(VVAccess.ReadWrite)] diff --git a/Content.Server/Atmos/Components/GasMixtureHolderComponent.cs b/Content.Server/Atmos/Components/GasMixtureHolderComponent.cs index 819c0964827..9d533f6ec4d 100644 --- a/Content.Server/Atmos/Components/GasMixtureHolderComponent.cs +++ b/Content.Server/Atmos/Components/GasMixtureHolderComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Atmos.Components { [RegisterComponent] - public sealed class GasMixtureHolderComponent : Component, IGasMixtureHolder + public sealed partial class GasMixtureHolderComponent : Component, IGasMixtureHolder { [DataField("air")] public GasMixture Air { get; set; } = new GasMixture(); } diff --git a/Content.Server/Atmos/Components/GasTankComponent.cs b/Content.Server/Atmos/Components/GasTankComponent.cs index ce9f4f3e797..8b411e38db5 100644 --- a/Content.Server/Atmos/Components/GasTankComponent.cs +++ b/Content.Server/Atmos/Components/GasTankComponent.cs @@ -1,11 +1,12 @@ -using Content.Shared.Actions.ActionTypes; using Content.Shared.Atmos; using Robust.Shared.Audio; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.Atmos.Components { [RegisterComponent] - public sealed class GasTankComponent : Component, IGasMixtureHolder + public sealed partial class GasTankComponent : Component, IGasMixtureHolder { public const float MaxExplosionRange = 80f; private const float DefaultLowPressure = 0f; @@ -32,24 +33,32 @@ public sealed class GasTankComponent : Component, IGasMixtureHolder public IPlayingAudioStream? ConnectStream; public IPlayingAudioStream? DisconnectStream; - [DataField("air")] public GasMixture Air { get; set; } = new(); + [DataField("air"), ViewVariables(VVAccess.ReadWrite)] + public GasMixture Air { get; set; } = new(); /// /// Pressure at which tank should be considered 'low' such as for internals. /// - [DataField("tankLowPressure")] - public float TankLowPressure { get; set; } = DefaultLowPressure; + [DataField("tankLowPressure"), ViewVariables(VVAccess.ReadWrite)] + public float TankLowPressure = DefaultLowPressure; /// /// Distributed pressure. /// - [DataField("outputPressure")] - public float OutputPressure { get; set; } = DefaultOutputPressure; + [DataField("outputPressure"), ViewVariables(VVAccess.ReadWrite)] + public float OutputPressure = DefaultOutputPressure; + + /// + /// The maximum allowed output pressure. + /// + [DataField("maxOutputPressure"), ViewVariables(VVAccess.ReadWrite)] + public float MaxOutputPressure = 3 * DefaultOutputPressure; /// /// Tank is connected to internals. /// - [ViewVariables] public bool IsConnected => User != null; + [ViewVariables] + public bool IsConnected => User != null; [ViewVariables] public EntityUid? User; @@ -64,28 +73,49 @@ public sealed class GasTankComponent : Component, IGasMixtureHolder /// /// Pressure at which tanks start leaking. /// - [DataField("tankLeakPressure")] - public float TankLeakPressure { get; set; } = 30 * Atmospherics.OneAtmosphere; + [DataField("tankLeakPressure"), ViewVariables(VVAccess.ReadWrite)] + public float TankLeakPressure = 30 * Atmospherics.OneAtmosphere; /// /// Pressure at which tank spills all contents into atmosphere. /// - [DataField("tankRupturePressure")] - public float TankRupturePressure { get; set; } = 40 * Atmospherics.OneAtmosphere; + [DataField("tankRupturePressure"), ViewVariables(VVAccess.ReadWrite)] + public float TankRupturePressure = 40 * Atmospherics.OneAtmosphere; /// /// Base 3x3 explosion. /// - [DataField("tankFragmentPressure")] - public float TankFragmentPressure { get; set; } = 50 * Atmospherics.OneAtmosphere; + [DataField("tankFragmentPressure"), ViewVariables(VVAccess.ReadWrite)] + public float TankFragmentPressure = 50 * Atmospherics.OneAtmosphere; /// /// Increases explosion for each scale kPa above threshold. /// - [DataField("tankFragmentScale")] - public float TankFragmentScale { get; set; } = 2 * Atmospherics.OneAtmosphere; + [DataField("tankFragmentScale"), ViewVariables(VVAccess.ReadWrite)] + public float TankFragmentScale = 2 * Atmospherics.OneAtmosphere; + + [DataField("toggleAction", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string ToggleAction = "ActionToggleInternals"; + + [DataField("toggleActionEntity")] public EntityUid? ToggleActionEntity; + + /// + /// Valve to release gas from tank + /// + [DataField("isValveOpen"), ViewVariables(VVAccess.ReadWrite)] + public bool IsValveOpen = false; - [DataField("toggleAction", required: true)] - public InstantAction ToggleAction = new(); + /// + /// Gas release rate in L/s + /// + [DataField("valveOutputRate"), ViewVariables(VVAccess.ReadWrite)] + public float ValveOutputRate = 100f; + + [DataField("valveSound"), ViewVariables(VVAccess.ReadWrite)] + public SoundSpecifier ValveSound = + new SoundCollectionSpecifier("valveSqueak") + { + Params = AudioParams.Default.WithVolume(-5f), + }; } } diff --git a/Content.Server/Atmos/Components/GridAtmosphereComponent.cs b/Content.Server/Atmos/Components/GridAtmosphereComponent.cs index f633152e32f..ab24daa7164 100644 --- a/Content.Server/Atmos/Components/GridAtmosphereComponent.cs +++ b/Content.Server/Atmos/Components/GridAtmosphereComponent.cs @@ -10,7 +10,7 @@ namespace Content.Server.Atmos.Components /// [RegisterComponent, Serializable, Access(typeof(AtmosphereSystem), typeof(GasTileOverlaySystem), typeof(AtmosDebugOverlaySystem))] - public sealed class GridAtmosphereComponent : Component + public sealed partial class GridAtmosphereComponent : Component { [ViewVariables(VVAccess.ReadWrite)] public bool Simulated { get; set; } = true; @@ -26,7 +26,7 @@ public sealed class GridAtmosphereComponent : Component [ViewVariables] [IncludeDataField(customTypeSerializer:typeof(TileAtmosCollectionSerializer))] - public readonly Dictionary Tiles = new(1000); + public Dictionary Tiles = new(1000); [ViewVariables] public readonly HashSet ActiveTiles = new(1000); diff --git a/Content.Server/Atmos/Components/HeatExchangerComponent.cs b/Content.Server/Atmos/Components/HeatExchangerComponent.cs index 10819387cfa..4ed9e412763 100644 --- a/Content.Server/Atmos/Components/HeatExchangerComponent.cs +++ b/Content.Server/Atmos/Components/HeatExchangerComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Atmos.Components; [RegisterComponent] -public sealed class HeatExchangerComponent : Component +public sealed partial class HeatExchangerComponent : Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("inlet")] @@ -31,6 +31,6 @@ public sealed class HeatExchangerComponent : Component /// [ViewVariables(VVAccess.ReadWrite)] [DataField("radiationCoefficient")] - public float alpha { get; set; } = 400f; + public float alpha { get; set; } = 140f; } diff --git a/Content.Server/Atmos/Components/IgniteOnCollideComponent.cs b/Content.Server/Atmos/Components/IgniteOnCollideComponent.cs index 212caba54bc..a4f0f34842d 100644 --- a/Content.Server/Atmos/Components/IgniteOnCollideComponent.cs +++ b/Content.Server/Atmos/Components/IgniteOnCollideComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Atmos.Components; [RegisterComponent, Access(typeof(FlammableSystem))] -public sealed class IgniteOnCollideComponent : Component +public sealed partial class IgniteOnCollideComponent : Component { /// /// How many more times the ignition can be applied. diff --git a/Content.Server/Atmos/Components/IgniteOnMeleeHitComponent.cs b/Content.Server/Atmos/Components/IgniteOnMeleeHitComponent.cs index f2f59b3be43..26dd9ad24d1 100644 --- a/Content.Server/Atmos/Components/IgniteOnMeleeHitComponent.cs +++ b/Content.Server/Atmos/Components/IgniteOnMeleeHitComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Atmos.Components; [RegisterComponent] -public sealed class IgniteOnMeleeHitComponent : Component +public sealed partial class IgniteOnMeleeHitComponent : Component { [DataField("fireStacks")] public float FireStacks { get; set; } diff --git a/Content.Server/Atmos/Components/MapAtmosphereComponent.cs b/Content.Server/Atmos/Components/MapAtmosphereComponent.cs index 798dd6cba0c..bbf5ea6403e 100644 --- a/Content.Server/Atmos/Components/MapAtmosphereComponent.cs +++ b/Content.Server/Atmos/Components/MapAtmosphereComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Atmos.Components; /// Component that defines the default GasMixture for a map. /// [RegisterComponent, Access(typeof(SharedAtmosphereSystem))] -public sealed class MapAtmosphereComponent : SharedMapAtmosphereComponent +public sealed partial class MapAtmosphereComponent : SharedMapAtmosphereComponent { /// /// The default GasMixture a map will have. Space mixture by default. diff --git a/Content.Server/Atmos/Components/MovedByPressureComponent.cs b/Content.Server/Atmos/Components/MovedByPressureComponent.cs index 7fcdb85b62d..ca830767bda 100644 --- a/Content.Server/Atmos/Components/MovedByPressureComponent.cs +++ b/Content.Server/Atmos/Components/MovedByPressureComponent.cs @@ -2,7 +2,7 @@ namespace Content.Server.Atmos.Components { // Unfortunately can't be friends yet due to magboots. [RegisterComponent] - public sealed class MovedByPressureComponent : Component + public sealed partial class MovedByPressureComponent : Component { public const float MoveForcePushRatio = 1f; public const float MoveForceForcePushRatio = 1f; diff --git a/Content.Server/Atmos/Components/PressureImmunityComponent.cs b/Content.Server/Atmos/Components/PressureImmunityComponent.cs index c25b2bd2a7c..3aae08458a5 100644 --- a/Content.Server/Atmos/Components/PressureImmunityComponent.cs +++ b/Content.Server/Atmos/Components/PressureImmunityComponent.cs @@ -1,6 +1,6 @@ namespace Content.Server.Atmos.Components; [RegisterComponent] -public sealed class PressureImmunityComponent : Component +public sealed partial class PressureImmunityComponent : Component { } diff --git a/Content.Server/Atmos/Components/PressureProtectionComponent.cs b/Content.Server/Atmos/Components/PressureProtectionComponent.cs index e288cd10d9c..a3a2842159b 100644 --- a/Content.Server/Atmos/Components/PressureProtectionComponent.cs +++ b/Content.Server/Atmos/Components/PressureProtectionComponent.cs @@ -1,18 +1,18 @@ namespace Content.Server.Atmos.Components { [RegisterComponent] - public sealed class PressureProtectionComponent : Component + public sealed partial class PressureProtectionComponent : Component { [DataField("highPressureMultiplier")] - public float HighPressureMultiplier { get; } = 1f; + public float HighPressureMultiplier { get; private set; } = 1f; [DataField("highPressureModifier")] - public float HighPressureModifier { get; } = 0f; + public float HighPressureModifier { get; private set; } = 0f; [DataField("lowPressureMultiplier")] - public float LowPressureMultiplier { get; } = 1f; + public float LowPressureMultiplier { get; private set; } = 1f; [DataField("lowPressureModifier")] - public float LowPressureModifier { get; } = 0f; + public float LowPressureModifier { get; private set; } = 0f; } } diff --git a/Content.Server/Atmos/Components/TemperatureProtectionComponent.cs b/Content.Server/Atmos/Components/TemperatureProtectionComponent.cs index b0e2d3b36b3..3f9d7bc7711 100644 --- a/Content.Server/Atmos/Components/TemperatureProtectionComponent.cs +++ b/Content.Server/Atmos/Components/TemperatureProtectionComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Atmos.Components; [RegisterComponent] -public sealed class TemperatureProtectionComponent : Component +public sealed partial class TemperatureProtectionComponent : Component { /// /// How much to multiply temperature deltas by. diff --git a/Content.Server/Atmos/EntitySystems/AtmosDebugOverlaySystem.cs b/Content.Server/Atmos/EntitySystems/AtmosDebugOverlaySystem.cs index 7d00634e4a8..8b1c425d89a 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosDebugOverlaySystem.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosDebugOverlaySystem.cs @@ -161,7 +161,7 @@ public override void Update(float frameTime) } } - RaiseNetworkEvent(new AtmosDebugOverlayMessage(grid.Owner, baseTile, debugOverlayContent), session.ConnectedClient); + RaiseNetworkEvent(new AtmosDebugOverlayMessage(GetNetEntity(grid.Owner), baseTile, debugOverlayContent), session.ConnectedClient); } } } diff --git a/Content.Server/Atmos/EntitySystems/AtmosPlaqueSystem.cs b/Content.Server/Atmos/EntitySystems/AtmosPlaqueSystem.cs index ed514278a67..0d7cdec5ac2 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosPlaqueSystem.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosPlaqueSystem.cs @@ -9,6 +9,7 @@ public sealed class AtmosPlaqueSystem : EntitySystem { [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; public override void Initialize() { @@ -34,7 +35,7 @@ private void OnPlaqueMapInit(EntityUid uid, AtmosPlaqueComponent component, MapI public void UpdateSign(EntityUid uid, AtmosPlaqueComponent component) { - var metaData = MetaData(component.Owner); + var metaData = MetaData(uid); var val = component.Type switch { @@ -50,7 +51,7 @@ public void UpdateSign(EntityUid uid, AtmosPlaqueComponent component) _ => Loc.GetString("atmos-plaque-component-desc-unset"), }; - metaData.EntityDescription = val; + _metaData.SetEntityDescription(uid, val, metaData); var val1 = component.Type switch { @@ -66,9 +67,9 @@ public void UpdateSign(EntityUid uid, AtmosPlaqueComponent component) _ => Loc.GetString("atmos-plaque-component-name-unset"), }; - metaData.EntityName = val1; + _metaData.SetEntityName(uid, val1, metaData); - if (TryComp(component.Owner, out var appearance)) + if (TryComp(uid, out var appearance)) { var state = component.Type == PlaqueType.Zumos ? "zumosplaque" : "atmosplaque"; diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs index d8c99f0f7a8..75caab93f05 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs @@ -67,7 +67,7 @@ private void FixGridAtmosCommand(IConsoleShell shell, string argstr, string[] ar foreach (var arg in args) { - if(!EntityUid.TryParse(arg, out var euid)) + if (!NetEntity.TryParse(arg, out var netEntity) || !TryGetEntity(netEntity, out var euid)) { shell.WriteError($"Failed to parse euid '{arg}'."); return; @@ -85,7 +85,7 @@ private void FixGridAtmosCommand(IConsoleShell shell, string argstr, string[] ar continue; } - var transform = Transform(euid); + var transform = Transform(euid.Value); foreach (var (indices, tileMain) in gridAtmosphere.Tiles) { diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.HighPressureDelta.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.HighPressureDelta.cs index e7cb278d13e..a06bf3504c7 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.HighPressureDelta.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.HighPressureDelta.cs @@ -57,9 +57,9 @@ private void UpdateHighPressure(float frameTime) if (TryComp(uid, out var fixtures)) { - foreach (var fixture in fixtures.Fixtures.Values) + foreach (var (id, fixture) in fixtures.Fixtures) { - _physics.AddCollisionMask(uid, fixture, (int) CollisionGroup.TableLayer, manager: fixtures); + _physics.AddCollisionMask(uid, id, fixture, (int) CollisionGroup.TableLayer, manager: fixtures); } } } @@ -70,15 +70,16 @@ private void UpdateHighPressure(float frameTime) } } - private void AddMobMovedByPressure(MovedByPressureComponent component, PhysicsComponent body) + private void AddMobMovedByPressure(EntityUid uid, MovedByPressureComponent component, PhysicsComponent body) { - if (!TryComp(component.Owner, out var fixtures)) return; + if (!TryComp(uid, out var fixtures)) + return; _physics.SetBodyStatus(body, BodyStatus.InAir); - foreach (var fixture in fixtures.Fixtures.Values) + foreach (var (id, fixture) in fixtures.Fixtures) { - _physics.RemoveCollisionMask(body.Owner, fixture, (int) CollisionGroup.TableLayer, manager: fixtures); + _physics.RemoveCollisionMask(uid, id, fixture, (int) CollisionGroup.TableLayer, manager: fixtures); } // TODO: Make them dynamic type? Ehh but they still want movement so uhh make it non-predicted like weightless? @@ -214,7 +215,7 @@ public void ExperiencePressureDifference( { if (HasComp(uid)) { - AddMobMovedByPressure(component, physics); + AddMobMovedByPressure(uid, component, physics); } if (maxForce > MovedByPressureComponent.ThrowForce) diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs index ea25874db7f..38b66a73faf 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs @@ -327,6 +327,23 @@ private bool ProcessPipeNets(GridAtmosphereComponent atmosphere) return true; } + /** + * UpdateProcessing() takes a different number of calls to go through all of atmos + * processing depending on what options are enabled. This returns the actual effective time + * between atmos updates that devices actually experience. + */ + public float RealAtmosTime() + { + int num = (int)AtmosphereProcessingState.NumStates; + if (!MonstermosEqualization) + num--; + if (!ExcitedGroups) + num--; + if (!Superconduction) + num--; + return num * AtmosTime; + } + private bool ProcessAtmosDevices(GridAtmosphereComponent atmosphere) { if(!atmosphere.ProcessingPaused) @@ -336,7 +353,7 @@ private bool ProcessAtmosDevices(GridAtmosphereComponent atmosphere) var number = 0; while (atmosphere.CurrentRunAtmosDevices.TryDequeue(out var device)) { - RaiseLocalEvent(device.Owner, new AtmosDeviceUpdateEvent(AtmosTime * (int)AtmosphereProcessingState.NumStates), false); + RaiseLocalEvent(device.Owner, new AtmosDeviceUpdateEvent(RealAtmosTime()), false); device.LastProcess = time; if (number++ < LagCheckIterations) continue; diff --git a/Content.Server/Atmos/EntitySystems/FlammableSystem.cs b/Content.Server/Atmos/EntitySystems/FlammableSystem.cs index 4c36807a356..2adec63db56 100644 --- a/Content.Server/Atmos/EntitySystems/FlammableSystem.cs +++ b/Content.Server/Atmos/EntitySystems/FlammableSystem.cs @@ -135,7 +135,7 @@ private void OnCollide(EntityUid uid, FlammableComponent flammable, ref StartCol // Normal hard collisions, though this isn't generally possible since most flammable things are mobs // which don't collide with one another, shouldn't work here. - if (args.OtherFixture.ID != FlammableFixtureID && args.OurFixture.ID != FlammableFixtureID) + if (args.OtherFixtureId != FlammableFixtureID && args.OurFixtureId != FlammableFixtureID) return; if (!EntityManager.TryGetComponent(otherUid, out FlammableComponent? otherFlammable)) diff --git a/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs b/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs index 29ff7879133..0d7ad48f888 100644 --- a/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs +++ b/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs @@ -229,7 +229,7 @@ private bool UpdateAnalyzer(EntityUid uid, GasAnalyzerComponent? component = nul _userInterface.TrySendUiMessage(uid, GasAnalyzerUiKey.Key, new GasAnalyzerUserMessage(gasMixList.ToArray(), component.Target != null ? Name(component.Target.Value) : string.Empty, - component.Target ?? EntityUid.Invalid, + GetNetEntity(component.Target) ?? NetEntity.Invalid, deviceFlipped)); return true; } diff --git a/Content.Server/Atmos/EntitySystems/GasTankSystem.cs b/Content.Server/Atmos/EntitySystems/GasTankSystem.cs index 220d47520c9..03286f08abc 100644 --- a/Content.Server/Atmos/EntitySystems/GasTankSystem.cs +++ b/Content.Server/Atmos/EntitySystems/GasTankSystem.cs @@ -7,14 +7,17 @@ using Content.Shared.Actions; using Content.Shared.Atmos; using Content.Shared.Atmos.Components; -using Content.Shared.Toggleable; using Content.Shared.Examine; +using Content.Shared.Toggleable; +using Content.Shared.Verbs; using JetBrains.Annotations; using Robust.Server.GameObjects; using Robust.Server.Player; using Robust.Shared.Audio; using Robust.Shared.Containers; +using Robust.Shared.Physics.Systems; using Robust.Shared.Player; +using Robust.Shared.Random; namespace Content.Server.Atmos.EntitySystems { @@ -28,6 +31,8 @@ public sealed class GasTankSystem : EntitySystem [Dependency] private readonly SharedContainerSystem _containers = default!; [Dependency] private readonly SharedActionsSystem _actions = default!; [Dependency] private readonly UserInterfaceSystem _ui = default!; + [Dependency] private readonly SharedPhysicsSystem _physics = default!; + [Dependency] private readonly IRobustRandom _random = default!; private const float TimerDelay = 0.5f; private float _timer = 0f; @@ -45,6 +50,7 @@ public override void Initialize() SubscribeLocalEvent(OnGasTankToggleInternals); SubscribeLocalEvent(OnAnalyzed); SubscribeLocalEvent(OnGasTankPrice); + SubscribeLocalEvent>(OnGetAlternativeVerb); } private void OnGasShutdown(EntityUid uid, GasTankComponent component, ComponentShutdown args) @@ -62,12 +68,15 @@ private void OnGasTankToggleInternals(EntityUid uid, GasTankComponent component, private void OnGasTankSetPressure(EntityUid uid, GasTankComponent component, GasTankSetPressureMessage args) { - component.OutputPressure = args.Pressure; + var pressure = Math.Min(args.Pressure, component.MaxOutputPressure); + + component.OutputPressure = pressure; + + UpdateUserInterface(component, true); } public void UpdateUserInterface(GasTankComponent component, bool initialUpdate = false) { - var internals = GetInternalsComponent(component); _ui.TrySetUiState(component.Owner, SharedGasTankUiKey.Key, new GasTankBoundUserInterfaceState { @@ -94,7 +103,7 @@ private void OnParentChange(EntityUid uid, GasTankComponent component, ref EntPa private void OnGetActions(EntityUid uid, GasTankComponent component, GetItemActionsEvent args) { - args.Actions.Add(component.ToggleAction); + args.AddAction(ref component.ToggleActionEntity, component.ToggleAction); } private void OnExamined(EntityUid uid, GasTankComponent component, ExaminedEvent args) @@ -103,6 +112,7 @@ private void OnExamined(EntityUid uid, GasTankComponent component, ExaminedEvent args.PushMarkup(Loc.GetString("comp-gas-tank-examine", ("pressure", Math.Round(component.Air?.Pressure ?? 0)))); if (component.IsConnected) args.PushMarkup(Loc.GetString("comp-gas-tank-connected")); + args.PushMarkup(Loc.GetString(component.IsValveOpen ? "comp-gas-tank-examine-open-valve" : "comp-gas-tank-examine-closed-valve")); } private void OnActionToggle(EntityUid uid, GasTankComponent component, ToggleActionEvent args) @@ -123,27 +133,50 @@ public override void Update(float frameTime) if (_timer < TimerDelay) return; _timer -= TimerDelay; - foreach (var gasTank in EntityManager.EntityQuery()) + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var gasTank)) { + if (gasTank.IsValveOpen && !gasTank.IsLowPressure) + { + ReleaseGas(uid, gasTank); + } + if (gasTank.CheckUser) { gasTank.CheckUser = false; - if (Transform(gasTank.Owner).ParentUid != gasTank.User) + if (Transform(uid).ParentUid != gasTank.User) { DisconnectFromInternals(gasTank); continue; } } - _atmosphereSystem.React(gasTank.Air, gasTank); + if (gasTank.Air != null) + { + _atmosphereSystem.React(gasTank.Air, gasTank); + } CheckStatus(gasTank); - if (_ui.IsUiOpen(gasTank.Owner, SharedGasTankUiKey.Key)) + if (_ui.IsUiOpen(uid, SharedGasTankUiKey.Key)) { UpdateUserInterface(gasTank); } } } + private void ReleaseGas(EntityUid uid, GasTankComponent component) + { + var removed = RemoveAirVolume(component, component.ValveOutputRate * TimerDelay); + var environment = _atmosphereSystem.GetContainingMixture(uid, false, true); + if (environment != null) + { + _atmosphereSystem.Merge(environment, removed); + } + var impulse = removed.TotalMoles * removed.Temperature; + _physics.ApplyLinearImpulse(uid, _random.NextAngle().ToWorldVec() * impulse); + _physics.ApplyAngularImpulse(uid, _random.NextFloat(-3f, 3f)); + _audioSys.PlayPvs(component.RuptureSound, uid); + } + private void ToggleInternals(GasTankComponent component) { if (component.IsConnected) @@ -183,7 +216,7 @@ public GasMixture RemoveAirVolume(GasTankComponent component, float volume) public bool CanConnectToInternals(GasTankComponent component) { var internals = GetInternalsComponent(component); - return internals != null && internals.BreathToolEntity != null; + return internals != null && internals.BreathToolEntity != null && !component.IsValveOpen; } public void ConnectToInternals(GasTankComponent component) @@ -198,7 +231,7 @@ public void ConnectToInternals(GasTankComponent component) if (_internals.TryConnectTank(internals, component.Owner)) component.User = internals.Owner; - _actions.SetToggled(component.ToggleAction, component.IsConnected); + _actions.SetToggled(component.ToggleActionEntity, component.IsConnected); // Couldn't toggle! if (!component.IsConnected) @@ -220,7 +253,7 @@ public void DisconnectFromInternals(GasTankComponent component) var internals = GetInternalsComponent(component); component.User = null; - _actions.SetToggled(component.ToggleAction, false); + _actions.SetToggled(component.ToggleActionEntity, false); _internals.DisconnectTank(internals); component.DisconnectStream?.Stop(); @@ -330,5 +363,21 @@ private void OnGasTankPrice(EntityUid uid, GasTankComponent component, ref Price { args.Price += _atmosphereSystem.GetPrice(component.Air); } + + private void OnGetAlternativeVerb(EntityUid uid, GasTankComponent component, GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract || args.Hands == null) + return; + args.Verbs.Add(new AlternativeVerb() + { + Text = component.IsValveOpen ? Loc.GetString("comp-gas-tank-close-valve") : Loc.GetString("comp-gas-tank-open-valve"), + Act = () => + { + component.IsValveOpen = !component.IsValveOpen; + _audioSys.PlayPvs(component.ValveSound, uid); + }, + Disabled = component.IsConnected, + }); + } } } diff --git a/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs b/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs index 836d3ba9bf0..c229ef50c9a 100644 --- a/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs +++ b/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs @@ -15,7 +15,6 @@ using Robust.Shared; using Robust.Shared.Configuration; using Robust.Shared.Enums; -using Robust.Shared.GameStates; using Robust.Shared.Map; using Robust.Shared.Threading; using Robust.Shared.Timing; @@ -36,15 +35,15 @@ public sealed class GasTileOverlaySystem : SharedGasTileOverlaySystem [Robust.Shared.IoC.Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; [Robust.Shared.IoC.Dependency] private readonly ChunkingSystem _chunkingSys = default!; - private readonly Dictionary>> _lastSentChunks = new(); + private readonly Dictionary>> _lastSentChunks = new(); // Oh look its more duplicated decal system code! private ObjectPool> _chunkIndexPool = new DefaultObjectPool>( new DefaultPooledObjectPolicy>(), 64); - private ObjectPool>> _chunkViewerPool = - new DefaultObjectPool>>( - new DefaultPooledObjectPolicy>>(), 64); + private ObjectPool>> _chunkViewerPool = + new DefaultObjectPool>>( + new DefaultPooledObjectPolicy>>(), 64); /// /// Overlay update interval, in seconds. @@ -294,22 +293,21 @@ public override void Update(float frameTime) private void UpdatePlayer(IPlayerSession playerSession, GameTick curTick) { - var xformQuery = GetEntityQuery(); - var chunksInRange = _chunkingSys.GetChunksForSession(playerSession, ChunkSize, xformQuery, _chunkIndexPool, _chunkViewerPool); + var chunksInRange = _chunkingSys.GetChunksForSession(playerSession, ChunkSize, _chunkIndexPool, _chunkViewerPool); var previouslySent = _lastSentChunks[playerSession]; var ev = new GasOverlayUpdateEvent(); - foreach (var (grid, oldIndices) in previouslySent) + foreach (var (netGrid, oldIndices) in previouslySent) { // Mark the whole grid as stale and flag for removal. - if (!chunksInRange.TryGetValue(grid, out var chunks)) + if (!chunksInRange.TryGetValue(netGrid, out var chunks)) { - previouslySent.Remove(grid); + previouslySent.Remove(netGrid); // If grid was deleted then don't worry about sending it to the client. - if (_mapManager.IsGrid(grid)) - ev.RemovedChunks[grid] = oldIndices; + if (!TryGetEntity(netGrid, out var gridId) || !_mapManager.IsGrid(gridId.Value)) + ev.RemovedChunks[netGrid] = oldIndices; else { oldIndices.Clear(); @@ -330,19 +328,19 @@ private void UpdatePlayer(IPlayerSession playerSession, GameTick curTick) if (old.Count == 0) _chunkIndexPool.Return(old); else - ev.RemovedChunks.Add(grid, old); + ev.RemovedChunks.Add(netGrid, old); } - foreach (var (grid, gridChunks) in chunksInRange) + foreach (var (netGrid, gridChunks) in chunksInRange) { // Not all grids have atmospheres. - if (!TryComp(grid, out GasTileOverlayComponent? overlay)) + if (!TryGetEntity(netGrid, out var grid) || !TryComp(grid, out GasTileOverlayComponent? overlay)) continue; List dataToSend = new(); - ev.UpdatedChunks[grid] = dataToSend; + ev.UpdatedChunks[netGrid] = dataToSend; - previouslySent.TryGetValue(grid, out var previousChunks); + previouslySent.TryGetValue(netGrid, out var previousChunks); foreach (var index in gridChunks) { @@ -359,7 +357,7 @@ private void UpdatePlayer(IPlayerSession playerSession, GameTick curTick) dataToSend.Add(value); } - previouslySent[grid] = gridChunks; + previouslySent[netGrid] = gridChunks; if (previousChunks != null) { previousChunks.Clear(); diff --git a/Content.Server/Atmos/EntitySystems/HeatExchangerSystem.cs b/Content.Server/Atmos/EntitySystems/HeatExchangerSystem.cs index 0b7a8e6eb7c..e8a7b089c67 100644 --- a/Content.Server/Atmos/EntitySystems/HeatExchangerSystem.cs +++ b/Content.Server/Atmos/EntitySystems/HeatExchangerSystem.cs @@ -53,55 +53,86 @@ private void OnAtmosUpdate(EntityUid uid, HeatExchangerComponent comp, AtmosDevi return; } - // Positive dN flows from inlet to outlet var dt = args.dt; - var dP = inlet.Air.Pressure - outlet.Air.Pressure; - - // What we want is dN/dt = G*dP (first-order constant-coefficient differential equation w.r.t. P). - // However, by approximating dN = G*dP*dt using Forward Euler dN can be larger than all of the gas - // available for sufficiently large dP. However, we know that dN cannot exceed: - // - // dNMax = (n2T2/V2 - n1T1/V1)/(T2/V1 + T2/V2) = Δp/R/T2/(1/V1 + 1/V2) - // - // Because that is the amount of gas that needs to be transferred to equalize pressures [citation needed]. - // So we just limit abs(dN) < abs(dNMax). - // - // Also, by factoring out dP we can avoid taking any abs(). - // transferLimit below is equal to dNMax/dP - var transferLimit = 1/Atmospherics.R/outlet.Air.Temperature/(1/inlet.Air.Volume + 1/outlet.Air.Volume); - var dN = dP*Math.Min(comp.G*dt, transferLimit); + + // Let n = moles(inlet) - moles(outlet), really a Δn + var P = inlet.Air.Pressure - outlet.Air.Pressure; // really a ΔP + // Such that positive P causes flow from the inlet to the outlet. + + // We want moles transferred to be proportional to the pressure difference, i.e. + // dn/dt = G*P + + // To solve this we need to write dn in terms of P. Since PV=nRT, dP/dn=RT/V. + // This assumes that the temperature change from transferring dn moles is negligible. + // Since we have P=Pi-Po, then dP/dn = dPi/dn-dPo/dn = R(Ti/Vi - To/Vo): + float dPdn = Atmospherics.R * (outlet.Air.Temperature / outlet.Air.Volume + inlet.Air.Temperature / inlet.Air.Volume); + + // Multiplying both sides of the differential equation by dP/dn: + // dn/dt * dP/dn = dP/dt = G*P * (dP/dn) + // Which is a first-order linear differential equation with constant (heh...) coefficients: + // dP/dt + kP = 0, where k = -G*(dP/dn). + // This differential equation has a closed-form solution, namely: + float Pfinal = P * MathF.Exp(-comp.G * dPdn * dt); + + // Finally, back out n, the moles transferred in this tick: + float n = (P - Pfinal) / dPdn; GasMixture xfer; - if (dN > 0) - xfer = inlet.Air.Remove(dN); + if (n > 0) + xfer = inlet.Air.Remove(n); else - xfer = outlet.Air.Remove(-dN); + xfer = outlet.Air.Remove(-n); + + float CXfer = _atmosphereSystem.GetHeatCapacity(xfer); + if (CXfer < Atmospherics.MinimumHeatCapacity) + return; var radTemp = Atmospherics.TCMB; - // Convection var environment = _atmosphereSystem.GetContainingMixture(uid, true, true); - if (environment != null && environment.TotalMoles != 0) + bool hasEnv = false; + float CEnv = 0f; + if (environment != null) { - radTemp = environment.Temperature; - - // Positive dT is from pipe to surroundings - var dT = xfer.Temperature - environment.Temperature; - var dE = comp.K * dT * dt; - var envLim = Math.Abs(_atmosphereSystem.GetHeatCapacity(environment) * dT * dt); - var xferLim = Math.Abs(_atmosphereSystem.GetHeatCapacity(xfer) * dT * dt); - var dEactual = Math.Sign(dE) * Math.Min(Math.Abs(dE), Math.Min(envLim, xferLim)); - _atmosphereSystem.AddHeat(xfer, -dEactual); - _atmosphereSystem.AddHeat(environment, dEactual); + CEnv = _atmosphereSystem.GetHeatCapacity(environment); + hasEnv = CEnv >= Atmospherics.MinimumHeatCapacity && environment.TotalMoles > 0f; + if (hasEnv) + radTemp = environment.Temperature; } + // How ΔT' scales in respect to heat transferred + float TdivQ = 1f / CXfer; + // Since it's ΔT, also account for the environment's temperature change + if (hasEnv) + TdivQ += 1f / CEnv; + // Radiation float dTR = xfer.Temperature - radTemp; + float dTRA = MathF.Abs(dTR); float a0 = tileLoss / MathF.Pow(Atmospherics.T20C, 4); - float dER = comp.alpha * a0 * MathF.Pow(dTR, 4) * dt; + // ΔT' = -kΔT^4, k = -ΔT'/ΔT^4 + float kR = comp.alpha * a0 * TdivQ; + // Based on the fact that ((3t)^(-1/3))' = -(3t)^(-4/3) = -((3t)^(-1/3))^4, and ΔT' = -kΔT^4. + float dT2R = dTR * MathF.Pow((1f + 3f * kR * dt * dTRA * dTRA * dTRA), -1f/3f); + float dER = (dTR - dT2R) / TdivQ; _atmosphereSystem.AddHeat(xfer, -dER); + if (hasEnv && environment != null) + { + _atmosphereSystem.AddHeat(environment, dER); + + // Convection + + // Positive dT is from pipe to surroundings + float dT = xfer.Temperature - environment.Temperature; + // ΔT' = -kΔT, k = -ΔT' / ΔT + float k = comp.K * TdivQ; + float dT2 = dT * MathF.Exp(-k * dt); + float dE = (dT - dT2) / TdivQ; + _atmosphereSystem.AddHeat(xfer, -dE); + _atmosphereSystem.AddHeat(environment, dE); + } - if (dN > 0) + if (n > 0) _atmosphereSystem.Merge(outlet.Air, xfer); else _atmosphereSystem.Merge(inlet.Air, xfer); diff --git a/Content.Server/Atmos/GasMixture.cs b/Content.Server/Atmos/GasMixture.cs index cca2e0c4f88..1547c259e61 100644 --- a/Content.Server/Atmos/GasMixture.cs +++ b/Content.Server/Atmos/GasMixture.cs @@ -12,7 +12,7 @@ namespace Content.Server.Atmos /// [Serializable] [DataDefinition] - public sealed class GasMixture : IEquatable, ISerializationHooks + public sealed partial class GasMixture : IEquatable, ISerializationHooks { public static GasMixture SpaceGas => new() {Volume = Atmospherics.CellVolume, Temperature = Atmospherics.TCMB, Immutable = true}; diff --git a/Content.Server/Atmos/IGasReactionEffect.cs b/Content.Server/Atmos/IGasReactionEffect.cs index cc0798100bc..acaef2a0719 100644 --- a/Content.Server/Atmos/IGasReactionEffect.cs +++ b/Content.Server/Atmos/IGasReactionEffect.cs @@ -4,7 +4,7 @@ namespace Content.Server.Atmos { [ImplicitDataDefinitionForInheritors] - public interface IGasReactionEffect + public partial interface IGasReactionEffect { ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem); } diff --git a/Content.Server/Atmos/Monitor/Components/AirAlarmComponent.cs b/Content.Server/Atmos/Monitor/Components/AirAlarmComponent.cs index d0c1a3a86c9..7030d607a6e 100644 --- a/Content.Server/Atmos/Monitor/Components/AirAlarmComponent.cs +++ b/Content.Server/Atmos/Monitor/Components/AirAlarmComponent.cs @@ -1,12 +1,15 @@ +using Content.Server.DeviceLinking.Components; using Content.Shared.Atmos.Monitor; using Content.Shared.Atmos.Monitor.Components; using Content.Shared.Atmos.Piping.Unary.Components; +using Content.Shared.DeviceLinking; using Robust.Shared.Network; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.Atmos.Monitor.Components; [RegisterComponent] -public sealed class AirAlarmComponent : Component +public sealed partial class AirAlarmComponent : Component { [ViewVariables] public AirAlarmMode CurrentMode { get; set; } = AirAlarmMode.Filtering; [ViewVariables] public bool AutoMode { get; set; } = true; @@ -24,4 +27,28 @@ public sealed class AirAlarmComponent : Component public HashSet ActivePlayers = new(); public bool CanSync = true; + + /// + /// Previous alarm state for use with output ports. + /// + [DataField("state")] + public AtmosAlarmType State = AtmosAlarmType.Normal; + + /// + /// The port that gets set to high while the alarm is in the danger state, and low when not. + /// + [DataField("dangerPort", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string DangerPort = "AirDanger"; + + /// + /// The port that gets set to high while the alarm is in the warning state, and low when not. + /// + [DataField("warningPort", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string WarningPort = "AirWarning"; + + /// + /// The port that gets set to high while the alarm is in the normal state, and low when not. + /// + [DataField("normalPort", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string NormalPort = "AirNormal"; } diff --git a/Content.Server/Atmos/Monitor/Components/AtmosAlarmableComponent.cs b/Content.Server/Atmos/Monitor/Components/AtmosAlarmableComponent.cs index 4d4b5e0d9c6..e291334ad0f 100644 --- a/Content.Server/Atmos/Monitor/Components/AtmosAlarmableComponent.cs +++ b/Content.Server/Atmos/Monitor/Components/AtmosAlarmableComponent.cs @@ -26,7 +26,7 @@ namespace Content.Server.Atmos.Monitor.Components; /// calculate the highest network alert. /// [RegisterComponent] -public sealed class AtmosAlarmableComponent : Component +public sealed partial class AtmosAlarmableComponent : Component { [ViewVariables] public readonly Dictionary NetworkAlarmStates = new(); @@ -45,10 +45,10 @@ public sealed class AtmosAlarmableComponent : Component /// List of tags to check for when synchronizing alarms. /// [DataField("syncWith", customTypeSerializer: typeof(PrototypeIdHashSetSerializer))] - public HashSet SyncWithTags { get; } = new(); + public HashSet SyncWithTags { get; private set; } = new(); [DataField("monitorAlertTypes")] - public HashSet? MonitorAlertTypes { get; } + public HashSet? MonitorAlertTypes { get; private set; } /// /// If this device should receive only. If it can only @@ -56,5 +56,5 @@ public sealed class AtmosAlarmableComponent : Component /// will result in nothing happening. /// [DataField("receiveOnly")] - public bool ReceiveOnly { get; } + public bool ReceiveOnly { get; private set; } } diff --git a/Content.Server/Atmos/Monitor/Components/AtmosMonitorComponent.cs b/Content.Server/Atmos/Monitor/Components/AtmosMonitorComponent.cs index d5055e19e82..cb6d4d16301 100644 --- a/Content.Server/Atmos/Monitor/Components/AtmosMonitorComponent.cs +++ b/Content.Server/Atmos/Monitor/Components/AtmosMonitorComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Atmos.Monitor.Components; [RegisterComponent] -public sealed class AtmosMonitorComponent : Component +public sealed partial class AtmosMonitorComponent : Component { // Whether this monitor can send alarms, // or recieve atmos command events. @@ -23,13 +23,13 @@ public sealed class AtmosMonitorComponent : Component public bool NetEnabled = true; [DataField("temperatureThresholdId", customTypeSerializer: (typeof(PrototypeIdSerializer)))] - public readonly string? TemperatureThresholdId; + public string? TemperatureThresholdId; [DataField("temperatureThreshold")] public AtmosAlarmThreshold? TemperatureThreshold; [DataField("pressureThresholdId", customTypeSerializer: (typeof(PrototypeIdSerializer)))] - public readonly string? PressureThresholdId; + public string? PressureThresholdId; [DataField("pressureThreshold")] public AtmosAlarmThreshold? PressureThreshold; diff --git a/Content.Server/Atmos/Monitor/Components/FireAlarmComponent.cs b/Content.Server/Atmos/Monitor/Components/FireAlarmComponent.cs index d04b79a79ce..55b1a6f21c2 100644 --- a/Content.Server/Atmos/Monitor/Components/FireAlarmComponent.cs +++ b/Content.Server/Atmos/Monitor/Components/FireAlarmComponent.cs @@ -1,6 +1,6 @@ namespace Content.Server.Atmos.Monitor.Components; [RegisterComponent] -public sealed class FireAlarmComponent : Component +public sealed partial class FireAlarmComponent : Component { -} \ No newline at end of file +} diff --git a/Content.Server/Atmos/Monitor/Systems/AirAlarmSystem.cs b/Content.Server/Atmos/Monitor/Systems/AirAlarmSystem.cs index 4ee9a9ac8e9..0ef49be46aa 100644 --- a/Content.Server/Atmos/Monitor/Systems/AirAlarmSystem.cs +++ b/Content.Server/Atmos/Monitor/Systems/AirAlarmSystem.cs @@ -1,6 +1,7 @@ using System.Linq; using Content.Server.Atmos.Monitor.Components; using Content.Server.Atmos.Piping.Components; +using Content.Server.DeviceLinking.Systems; using Content.Server.DeviceNetwork; using Content.Server.DeviceNetwork.Components; using Content.Server.DeviceNetwork.Systems; @@ -13,6 +14,7 @@ using Content.Shared.Atmos.Monitor; using Content.Shared.Atmos.Monitor.Components; using Content.Shared.Atmos.Piping.Unary.Components; +using Content.Shared.DeviceLinking; using Content.Shared.DeviceNetwork; using Content.Shared.DeviceNetwork.Systems; using Content.Shared.Interaction; @@ -32,14 +34,14 @@ namespace Content.Server.Atmos.Monitor.Systems; // response data in its data key. public sealed class AirAlarmSystem : EntitySystem { - [Dependency] private readonly DeviceNetworkSystem _deviceNet = default!; - [Dependency] private readonly DeviceListSystem _deviceListSystem = default!; - [Dependency] private readonly AtmosDeviceNetworkSystem _atmosDevNetSystem = default!; + [Dependency] private readonly AccessReaderSystem _access = default!; [Dependency] private readonly AtmosAlarmableSystem _atmosAlarmable = default!; - [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; - [Dependency] private readonly AccessReaderSystem _accessSystem = default!; + [Dependency] private readonly AtmosDeviceNetworkSystem _atmosDevNet = default!; + [Dependency] private readonly DeviceNetworkSystem _deviceNet = default!; + [Dependency] private readonly DeviceLinkSystem _deviceLink = default!; + [Dependency] private readonly DeviceListSystem _deviceList = default!; [Dependency] private readonly PopupSystem _popup = default!; - [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!; + [Dependency] private readonly UserInterfaceSystem _ui = default!; #region Device Network API @@ -57,8 +59,8 @@ public sealed class AirAlarmSystem : EntitySystem /// The data to send to the device. public void SetData(EntityUid uid, string address, IAtmosDeviceData data) { - _atmosDevNetSystem.SetDeviceState(uid, address, data); - _atmosDevNetSystem.Sync(uid, address); + _atmosDevNet.SetDeviceState(uid, address, data); + _atmosDevNet.Sync(uid, address); } /// @@ -66,7 +68,7 @@ public void SetData(EntityUid uid, string address, IAtmosDeviceData data) /// private void SyncAllDevices(EntityUid uid) { - _atmosDevNetSystem.Sync(uid, null); + _atmosDevNet.Sync(uid, null); } /// @@ -75,7 +77,7 @@ private void SyncAllDevices(EntityUid uid) /// The address of the device. private void SyncDevice(EntityUid uid, string address) { - _atmosDevNetSystem.Sync(uid, address); + _atmosDevNet.Sync(uid, address); } /// @@ -85,8 +87,8 @@ private void SyncDevice(EntityUid uid, string address) /// private void SyncRegisterAllDevices(EntityUid uid) { - _atmosDevNetSystem.Register(uid, null); - _atmosDevNetSystem.Sync(uid, null); + _atmosDevNet.Register(uid, null); + _atmosDevNet.Sync(uid, null); } /// @@ -133,8 +135,7 @@ private void SetThreshold(EntityUid uid, string address, AtmosMonitorThresholdTy /// The mode to sync with the rest of the network. private void SyncMode(EntityUid uid, AirAlarmMode mode) { - if (EntityManager.TryGetComponent(uid, out AtmosMonitorComponent? monitor) - && !monitor.NetEnabled) + if (TryComp(uid, out var monitor) && !monitor.NetEnabled) return; var payload = new NetworkPayload @@ -165,6 +166,8 @@ public override void Initialize() SubscribeLocalEvent(OnTabChange); SubscribeLocalEvent(OnDeviceListUpdate); SubscribeLocalEvent(OnClose); + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnShutdown); SubscribeLocalEvent(OnActivate); } @@ -179,7 +182,7 @@ private void OnDeviceListUpdate(EntityUid uid, AirAlarmComponent component, Devi continue; } - _atmosDevNetSystem.Deregister(uid, deviceNet.Address); + _atmosDevNet.Deregister(uid, deviceNet.Address); } component.ScrubberData.Clear(); @@ -220,6 +223,18 @@ private void OnClose(EntityUid uid, AirAlarmComponent component, BoundUIClosedEv RemoveActiveInterface(uid); } + private void OnInit(EntityUid uid, AirAlarmComponent comp, ComponentInit args) + { + _deviceLink.EnsureSourcePorts(uid, comp.DangerPort, comp.WarningPort, comp.NormalPort); + } + + private void OnMapInit(EntityUid uid, AirAlarmComponent comp, MapInitEvent args) + { + // for mapped linked air alarms, start with high so when it changes for the first time it goes from high to low + // without this the output would suddenly get sent a low signal after nothing which is bad + _deviceLink.SendSignal(uid, GetPort(comp), true); + } + private void OnShutdown(EntityUid uid, AirAlarmComponent component, ComponentShutdown args) { _activeUserInterfaces.Remove(uid); @@ -227,9 +242,6 @@ private void OnShutdown(EntityUid uid, AirAlarmComponent component, ComponentShu private void OnActivate(EntityUid uid, AirAlarmComponent component, ActivateInWorldEvent args) { - if (!_interactionSystem.InRangeUnobstructed(args.User, args.Target)) - return; - if (!TryComp(args.User, out var actor)) return; @@ -242,9 +254,9 @@ private void OnActivate(EntityUid uid, AirAlarmComponent component, ActivateInWo if (!this.IsPowered(uid, EntityManager)) return; - var ui = _uiSystem.GetUiOrNull(uid, SharedAirAlarmInterfaceKey.Key); + var ui = _ui.GetUiOrNull(uid, SharedAirAlarmInterfaceKey.Key); if (ui != null) - _uiSystem.OpenUi(ui, actor.PlayerSession); + _ui.OpenUi(ui, actor.PlayerSession); component.ActivePlayers.Add(actor.PlayerSession.UserId); AddActiveInterface(uid); SyncAllDevices(uid); @@ -268,12 +280,20 @@ private void OnResyncAll(EntityUid uid, AirAlarmComponent component, AirAlarmRes private void OnUpdateAlarmMode(EntityUid uid, AirAlarmComponent component, AirAlarmUpdateAlarmModeMessage args) { - var addr = string.Empty; - if (EntityManager.TryGetComponent(uid, out DeviceNetworkComponent? netConn)) addr = netConn.Address; if (AccessCheck(uid, args.Session.AttachedEntity, component)) + { + var addr = string.Empty; + if (TryComp(uid, out var netConn)) + { + addr = netConn.Address; + } + SetMode(uid, addr, args.Mode, false); + } else + { UpdateUI(uid, component); + } } private void OnUpdateAutoMode(EntityUid uid, AirAlarmComponent component, AirAlarmUpdateAutoModeMessage args) @@ -293,7 +313,7 @@ private void OnUpdateThreshold(EntityUid uid, AirAlarmComponent component, AirAl private void OnUpdateDeviceData(EntityUid uid, AirAlarmComponent component, AirAlarmUpdateDeviceDataMessage args) { if (AccessCheck(uid, args.Session.AttachedEntity, component) - && _deviceListSystem.ExistsInDeviceList(uid, args.Address)) + && _deviceList.ExistsInDeviceList(uid, args.Address)) { SetDeviceData(uid, args.Address, args.Data); } @@ -302,13 +322,13 @@ private void OnUpdateDeviceData(EntityUid uid, AirAlarmComponent component, AirA UpdateUI(uid, component); } } - + private void OnCopyDeviceData(EntityUid uid, AirAlarmComponent component, AirAlarmCopyDeviceDataMessage args) { if (!AccessCheck(uid, args.Session.AttachedEntity, component)) { UpdateUI(uid, component); - return; + return; } switch (args.Data) @@ -319,7 +339,7 @@ private void OnCopyDeviceData(EntityUid uid, AirAlarmComponent component, AirAla SetData(uid, addr, args.Data); } break; - + case GasVentScrubberData scrubberData: foreach (string addr in component.ScrubberData.Keys) { @@ -334,10 +354,14 @@ private bool AccessCheck(EntityUid uid, EntityUid? user, AirAlarmComponent? comp if (!Resolve(uid, ref component)) return false; - if (!EntityManager.TryGetComponent(uid, out AccessReaderComponent? reader) || user == null) + // if it has no access reader behave as if the user has AA + if (!TryComp(uid, out var reader)) + return true; + + if (user == null) return false; - if (!_accessSystem.IsAllowed(user.Value, reader)) + if (!_access.IsAllowed(user.Value, uid, reader)) { _popup.PopupEntity(Loc.GetString("air-alarm-ui-access-denied"), user.Value, user.Value); return false; @@ -354,8 +378,10 @@ private void OnAtmosAlarm(EntityUid uid, AirAlarmComponent component, AtmosAlarm } var addr = string.Empty; - if (EntityManager.TryGetComponent(uid, out DeviceNetworkComponent? netConn)) + if (TryComp(uid, out var netConn)) + { addr = netConn.Address; + } if (component.AutoMode) { @@ -369,9 +395,32 @@ private void OnAtmosAlarm(EntityUid uid, AirAlarmComponent component, AtmosAlarm } } + if (component.State != args.AlarmType) + { + TryComp(uid, out var source); + + // send low to old state's port + _deviceLink.SendSignal(uid, GetPort(component), false, source); + + // send high to new state's port, along with updating the cached state + component.State = args.AlarmType; + _deviceLink.SendSignal(uid, GetPort(component), true, source); + } + UpdateUI(uid, component); } + private string GetPort(AirAlarmComponent comp) + { + if (comp.State == AtmosAlarmType.Danger) + return comp.DangerPort; + + if (comp.State == AtmosAlarmType.Warning) + return comp.WarningPort; + + return comp.NormalPort; + } + #endregion #region Air Alarm Settings @@ -517,7 +566,7 @@ private void RemoveActiveInterface(EntityUid uid) /// private void ForceCloseAllInterfaces(EntityUid uid) { - _uiSystem.TryCloseAll(uid, SharedAirAlarmInterfaceKey.Key); + _ui.TryCloseAll(uid, SharedAirAlarmInterfaceKey.Key); } private void OnAtmosUpdate(EntityUid uid, AirAlarmComponent alarm, AtmosDeviceUpdateEvent args) @@ -585,7 +634,7 @@ public void UpdateUI(EntityUid uid, AirAlarmComponent? alarm = null, DeviceNetwo highestAlarm = AtmosAlarmType.Normal; } - _uiSystem.TrySetUiState( + _ui.TrySetUiState( uid, SharedAirAlarmInterfaceKey.Key, new AirAlarmUIState(devNet.Address, deviceCount, pressure, temperature, dataToSend, alarm.CurrentMode, alarm.CurrentTab, highestAlarm.Value, alarm.AutoMode)); diff --git a/Content.Server/Atmos/Monitor/WireActions/AirAlarmPanicWire.cs b/Content.Server/Atmos/Monitor/WireActions/AirAlarmPanicWire.cs index 22cbadb4854..1171b36fb98 100644 --- a/Content.Server/Atmos/Monitor/WireActions/AirAlarmPanicWire.cs +++ b/Content.Server/Atmos/Monitor/WireActions/AirAlarmPanicWire.cs @@ -7,7 +7,7 @@ namespace Content.Server.Atmos.Monitor; -public sealed class AirAlarmPanicWire : ComponentWireAction +public sealed partial class AirAlarmPanicWire : ComponentWireAction { public override string Name { get; set; } = "wire-name-air-alarm-panic"; public override Color Color { get; set; } = Color.Red; diff --git a/Content.Server/Atmos/Monitor/WireActions/AtmosAlarmableAlarmWire.cs b/Content.Server/Atmos/Monitor/WireActions/AtmosAlarmableAlarmWire.cs index 496600ee1e5..7dcb4427ca4 100644 --- a/Content.Server/Atmos/Monitor/WireActions/AtmosAlarmableAlarmWire.cs +++ b/Content.Server/Atmos/Monitor/WireActions/AtmosAlarmableAlarmWire.cs @@ -6,7 +6,7 @@ namespace Content.Server.Atmos.Monitor; -public sealed class AtmosMonitorDeviceNetWire : ComponentWireAction +public sealed partial class AtmosMonitorDeviceNetWire : ComponentWireAction { // whether or not this wire will send out an alarm upon // being pulsed diff --git a/Content.Server/Atmos/Piping/Binary/Components/GasPassiveGateComponent.cs b/Content.Server/Atmos/Piping/Binary/Components/GasPassiveGateComponent.cs index f770a25652d..57d48b64e95 100644 --- a/Content.Server/Atmos/Piping/Binary/Components/GasPassiveGateComponent.cs +++ b/Content.Server/Atmos/Piping/Binary/Components/GasPassiveGateComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Atmos.Piping.Binary.Components { [RegisterComponent] - public sealed class GasPassiveGateComponent : Component + public sealed partial class GasPassiveGateComponent : Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("inlet")] diff --git a/Content.Server/Atmos/Piping/Binary/Components/GasPortComponent.cs b/Content.Server/Atmos/Piping/Binary/Components/GasPortComponent.cs index fe5d62c6aba..fb7ee6d5cf9 100644 --- a/Content.Server/Atmos/Piping/Binary/Components/GasPortComponent.cs +++ b/Content.Server/Atmos/Piping/Binary/Components/GasPortComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Atmos.Piping.Binary.Components { [RegisterComponent] - public sealed class GasPortComponent : Component + public sealed partial class GasPortComponent : Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("pipe")] diff --git a/Content.Server/Atmos/Piping/Binary/Components/GasPressurePumpComponent.cs b/Content.Server/Atmos/Piping/Binary/Components/GasPressurePumpComponent.cs index 40bb842cdbb..8816e1af220 100644 --- a/Content.Server/Atmos/Piping/Binary/Components/GasPressurePumpComponent.cs +++ b/Content.Server/Atmos/Piping/Binary/Components/GasPressurePumpComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Atmos.Piping.Binary.Components { [RegisterComponent] - public sealed class GasPressurePumpComponent : Component + public sealed partial class GasPressurePumpComponent : Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("enabled")] diff --git a/Content.Server/Atmos/Piping/Binary/Components/GasRecyclerComponent.cs b/Content.Server/Atmos/Piping/Binary/Components/GasRecyclerComponent.cs index 28a1abaa234..9129557c225 100644 --- a/Content.Server/Atmos/Piping/Binary/Components/GasRecyclerComponent.cs +++ b/Content.Server/Atmos/Piping/Binary/Components/GasRecyclerComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.Atmos.Piping.Binary.Components { [RegisterComponent] - public sealed class GasRecyclerComponent : Component + public sealed partial class GasRecyclerComponent : Component { [ViewVariables(VVAccess.ReadOnly)] [DataField("reacting")] diff --git a/Content.Server/Atmos/Piping/Binary/Components/GasValveComponent.cs b/Content.Server/Atmos/Piping/Binary/Components/GasValveComponent.cs index abb0becfdeb..1f09f070728 100644 --- a/Content.Server/Atmos/Piping/Binary/Components/GasValveComponent.cs +++ b/Content.Server/Atmos/Piping/Binary/Components/GasValveComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Atmos.Piping.Binary.Components { [RegisterComponent] - public sealed class GasValveComponent : Component + public sealed partial class GasValveComponent : Component { [DataField("open")] public bool Open { get; set; } = true; @@ -15,6 +15,6 @@ public sealed class GasValveComponent : Component public string OutletName { get; set; } = "outlet"; [DataField("valveSound")] - public SoundSpecifier ValveSound { get; } = new SoundCollectionSpecifier("valveSqueak"); + public SoundSpecifier ValveSound { get; private set; } = new SoundCollectionSpecifier("valveSqueak"); } } diff --git a/Content.Server/Atmos/Piping/Binary/Components/GasVolumePumpComponent.cs b/Content.Server/Atmos/Piping/Binary/Components/GasVolumePumpComponent.cs index b79fb3b2542..bdd85524a8a 100644 --- a/Content.Server/Atmos/Piping/Binary/Components/GasVolumePumpComponent.cs +++ b/Content.Server/Atmos/Piping/Binary/Components/GasVolumePumpComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Atmos.Piping.Binary.Components { [RegisterComponent] - public sealed class GasVolumePumpComponent : Component + public sealed partial class GasVolumePumpComponent : Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("enabled")] diff --git a/Content.Server/Atmos/Piping/Binary/Components/SignalControlledValveComponent.cs b/Content.Server/Atmos/Piping/Binary/Components/SignalControlledValveComponent.cs index 4284a01dfa5..9c8860e8493 100644 --- a/Content.Server/Atmos/Piping/Binary/Components/SignalControlledValveComponent.cs +++ b/Content.Server/Atmos/Piping/Binary/Components/SignalControlledValveComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.Atmos.Piping.Binary.Components; [RegisterComponent, Access(typeof(SignalControlledValveSystem))] -public sealed class SignalControlledValveComponent : Component +public sealed partial class SignalControlledValveComponent : Component { [DataField("openPort", customTypeSerializer: typeof(PrototypeIdSerializer))] public string OpenPort = "Open"; diff --git a/Content.Server/Atmos/Piping/Components/AtmosDeviceComponent.cs b/Content.Server/Atmos/Piping/Components/AtmosDeviceComponent.cs index 5afcf2705e2..cf53bb8b6e8 100644 --- a/Content.Server/Atmos/Piping/Components/AtmosDeviceComponent.cs +++ b/Content.Server/Atmos/Piping/Components/AtmosDeviceComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Atmos.Piping.Components /// Adds itself to a to be updated by. /// [RegisterComponent] - public sealed class AtmosDeviceComponent : Component + public sealed partial class AtmosDeviceComponent : Component { /// /// If true, this device must be anchored before it will receive any AtmosDeviceUpdateEvents. @@ -21,7 +21,7 @@ public sealed class AtmosDeviceComponent : Component /// a grid atmosphere. /// [DataField("joinSystem")] - public bool JoinSystem { get; } = false; + public bool JoinSystem { get; private set; } = false; /// /// If non-null, the grid that this device is part of. diff --git a/Content.Server/Atmos/Piping/Components/AtmosPipeColorComponent.cs b/Content.Server/Atmos/Piping/Components/AtmosPipeColorComponent.cs index 36d6bc0f3f1..455d125e44b 100644 --- a/Content.Server/Atmos/Piping/Components/AtmosPipeColorComponent.cs +++ b/Content.Server/Atmos/Piping/Components/AtmosPipeColorComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Atmos.Piping.Components { [RegisterComponent] - public sealed class AtmosPipeColorComponent : Component + public sealed partial class AtmosPipeColorComponent : Component { [DataField("color")] public Color Color { get; set; } = Color.White; diff --git a/Content.Server/Atmos/Piping/Components/AtmosUnsafeUnanchorComponent.cs b/Content.Server/Atmos/Piping/Components/AtmosUnsafeUnanchorComponent.cs index 388cd9f644e..abafd02bdbc 100644 --- a/Content.Server/Atmos/Piping/Components/AtmosUnsafeUnanchorComponent.cs +++ b/Content.Server/Atmos/Piping/Components/AtmosUnsafeUnanchorComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Atmos.Piping.Components { [RegisterComponent] - public sealed class AtmosUnsafeUnanchorComponent : Component + public sealed partial class AtmosUnsafeUnanchorComponent : Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("enabled")] diff --git a/Content.Server/Atmos/Piping/Other/Components/GasMinerComponent.cs b/Content.Server/Atmos/Piping/Other/Components/GasMinerComponent.cs index 01d89cf2d1a..e6d8ec790d8 100644 --- a/Content.Server/Atmos/Piping/Other/Components/GasMinerComponent.cs +++ b/Content.Server/Atmos/Piping/Other/Components/GasMinerComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Atmos.Piping.Other.Components { [RegisterComponent] - public sealed class GasMinerComponent : Component + public sealed partial class GasMinerComponent : Component { public bool Enabled { get; set; } = true; diff --git a/Content.Server/Atmos/Piping/Trinary/Components/GasFilterComponent.cs b/Content.Server/Atmos/Piping/Trinary/Components/GasFilterComponent.cs index d7b408f3698..eac8dc83123 100644 --- a/Content.Server/Atmos/Piping/Trinary/Components/GasFilterComponent.cs +++ b/Content.Server/Atmos/Piping/Trinary/Components/GasFilterComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Atmos.Piping.Trinary.Components { [RegisterComponent] - public sealed class GasFilterComponent : Component + public sealed partial class GasFilterComponent : Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("enabled")] diff --git a/Content.Server/Atmos/Piping/Trinary/Components/GasMixerComponent.cs b/Content.Server/Atmos/Piping/Trinary/Components/GasMixerComponent.cs index 4b72168dc2a..fc219923c10 100644 --- a/Content.Server/Atmos/Piping/Trinary/Components/GasMixerComponent.cs +++ b/Content.Server/Atmos/Piping/Trinary/Components/GasMixerComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.Atmos.Piping.Trinary.Components { [RegisterComponent] [Access(typeof(GasMixerSystem))] - public sealed class GasMixerComponent : Component + public sealed partial class GasMixerComponent : Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("enabled")] diff --git a/Content.Server/Atmos/Piping/Trinary/Components/PressureControlledValveComponent.cs b/Content.Server/Atmos/Piping/Trinary/Components/PressureControlledValveComponent.cs index 5df77ed9fd1..c0b496fae8c 100644 --- a/Content.Server/Atmos/Piping/Trinary/Components/PressureControlledValveComponent.cs +++ b/Content.Server/Atmos/Piping/Trinary/Components/PressureControlledValveComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Atmos.Piping.Trinary.Components { [RegisterComponent] - public sealed class PressureControlledValveComponent : Component + public sealed partial class PressureControlledValveComponent : Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("inlet")] diff --git a/Content.Server/Atmos/Piping/Unary/Components/GasCanisterComponent.cs b/Content.Server/Atmos/Piping/Unary/Components/GasCanisterComponent.cs index 37748780a89..178e169888b 100644 --- a/Content.Server/Atmos/Piping/Unary/Components/GasCanisterComponent.cs +++ b/Content.Server/Atmos/Piping/Unary/Components/GasCanisterComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Atmos.Piping.Unary.Components { [RegisterComponent] - public sealed class GasCanisterComponent : Component, IGasMixtureHolder + public sealed partial class GasCanisterComponent : Component, IGasMixtureHolder { [ViewVariables(VVAccess.ReadWrite)] [DataField("port")] diff --git a/Content.Server/Atmos/Piping/Unary/Components/GasOutletInjectorComponent.cs b/Content.Server/Atmos/Piping/Unary/Components/GasOutletInjectorComponent.cs index adac9d8b05f..7e082024a81 100644 --- a/Content.Server/Atmos/Piping/Unary/Components/GasOutletInjectorComponent.cs +++ b/Content.Server/Atmos/Piping/Unary/Components/GasOutletInjectorComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Atmos.Piping.Unary.Components { [RegisterComponent] [Access(typeof(GasOutletInjectorSystem))] - public sealed class GasOutletInjectorComponent : Component + public sealed partial class GasOutletInjectorComponent : Component { [ViewVariables(VVAccess.ReadWrite)] diff --git a/Content.Server/Atmos/Piping/Unary/Components/GasPassiveVentComponent.cs b/Content.Server/Atmos/Piping/Unary/Components/GasPassiveVentComponent.cs index 6e232f06e02..7d890832ec9 100644 --- a/Content.Server/Atmos/Piping/Unary/Components/GasPassiveVentComponent.cs +++ b/Content.Server/Atmos/Piping/Unary/Components/GasPassiveVentComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Atmos.Piping.Unary.Components { [RegisterComponent] - public sealed class GasPassiveVentComponent : Component + public sealed partial class GasPassiveVentComponent : Component { [DataField("inlet")] public string InletName = "pipe"; diff --git a/Content.Server/Atmos/Piping/Unary/Components/GasPortableComponent.cs b/Content.Server/Atmos/Piping/Unary/Components/GasPortableComponent.cs index d12a71e704e..01d044e1eb2 100644 --- a/Content.Server/Atmos/Piping/Unary/Components/GasPortableComponent.cs +++ b/Content.Server/Atmos/Piping/Unary/Components/GasPortableComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Atmos.Piping.Unary.Components { [RegisterComponent] - public sealed class GasPortableComponent : Component + public sealed partial class GasPortableComponent : Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("port")] diff --git a/Content.Server/Atmos/Piping/Unary/Components/GasThermoMachineComponent.cs b/Content.Server/Atmos/Piping/Unary/Components/GasThermoMachineComponent.cs index 903ad64c953..e8d0f0f30fa 100644 --- a/Content.Server/Atmos/Piping/Unary/Components/GasThermoMachineComponent.cs +++ b/Content.Server/Atmos/Piping/Unary/Components/GasThermoMachineComponent.cs @@ -6,15 +6,14 @@ namespace Content.Server.Atmos.Piping.Unary.Components { [RegisterComponent] - public sealed class GasThermoMachineComponent : Component + public sealed partial class GasThermoMachineComponent : Component { [DataField("inlet")] public string InletName = "pipe"; /// - /// Current maximum temperature, calculated from and the quality of matter - /// bins. The heat capacity effectively determines the rate at which the thermo machine can add or remove - /// heat from a pipenet. + /// Current electrical power consumption, in watts. Increasing power increases the ability of the + /// thermomachine to heat or cool air. /// [ViewVariables(VVAccess.ReadWrite)] public float HeatCapacity = 10000; @@ -30,12 +29,31 @@ public sealed class GasThermoMachineComponent : Component [ViewVariables(VVAccess.ReadWrite)] public float TargetTemperature = Atmospherics.T20C; - [DataField("mode")] - public ThermoMachineMode Mode = ThermoMachineMode.Freezer; + /// + /// Tolerance for temperature setpoint hysteresis. + /// + [ViewVariables(VVAccess.ReadOnly)] + public float TemperatureTolerance = 2f; + + /// + /// Implements setpoint hysteresis to prevent heater from rapidly cycling on and off at setpoint. + /// If true, add Sign(Cp)*TemperatureTolerance to the temperature setpoint. + /// + [ViewVariables(VVAccess.ReadOnly)] + public bool HysteresisState = false; + + /// + /// Coefficient of performance. Output power / input power. + /// Positive for heaters, negative for freezers. + /// + [DataField("coefficientOfPerformance")] + [ViewVariables(VVAccess.ReadWrite)] + public float Cp = 0.9f; // output power / input power, positive is heat /// /// Current minimum temperature, calculated from and . + /// Ignored if heater. /// [ViewVariables(VVAccess.ReadWrite)] public float MinTemperature; @@ -43,6 +61,7 @@ public sealed class GasThermoMachineComponent : Component /// /// Current maximum temperature, calculated from and . + /// Ignored if freezer. /// [ViewVariables(VVAccess.ReadWrite)] public float MaxTemperature; diff --git a/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs b/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs index 311c24c620f..74d945a0b60 100644 --- a/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs +++ b/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs @@ -5,8 +5,9 @@ namespace Content.Server.Atmos.Piping.Unary.Components { + // The world if people documented their shit. [RegisterComponent] - public sealed class GasVentPumpComponent : Component + public sealed partial class GasVentPumpComponent : Component { [ViewVariables(VVAccess.ReadWrite)] public bool Enabled { get; set; } = true; @@ -14,9 +15,6 @@ public sealed class GasVentPumpComponent : Component [ViewVariables] public bool IsDirty { get; set; } = false; - [ViewVariables(VVAccess.ReadWrite)] - public bool Welded { get; set; } = false; - [ViewVariables(VVAccess.ReadWrite)] [DataField("inlet")] public string Inlet { get; set; } = "pipe"; @@ -122,7 +120,7 @@ public float InternalPressureBound /// Whether or not machine linking is enabled for this component. /// [DataField("canLink")] - public readonly bool CanLink = false; + public bool CanLink = false; [DataField("pressurizePort", customTypeSerializer: typeof(PrototypeIdSerializer))] public string PressurizePort = "Pressurize"; diff --git a/Content.Server/Atmos/Piping/Unary/Components/GasVentScrubberComponent.cs b/Content.Server/Atmos/Piping/Unary/Components/GasVentScrubberComponent.cs index 88be051713c..064077a8db2 100644 --- a/Content.Server/Atmos/Piping/Unary/Components/GasVentScrubberComponent.cs +++ b/Content.Server/Atmos/Piping/Unary/Components/GasVentScrubberComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Atmos.Piping.Unary.Components { [RegisterComponent] [Access(typeof(GasVentScrubberSystem))] - public sealed class GasVentScrubberComponent : Component + public sealed partial class GasVentScrubberComponent : Component { [ViewVariables(VVAccess.ReadWrite)] public bool Enabled { get; set; } = true; @@ -15,9 +15,6 @@ public sealed class GasVentScrubberComponent : Component [ViewVariables] public bool IsDirty { get; set; } = false; - [ViewVariables(VVAccess.ReadWrite)] - public bool Welded { get; set; } = false; - [ViewVariables(VVAccess.ReadWrite)] [DataField("outlet")] public string OutletName { get; set; } = "pipe"; diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs index 70fc5bafade..416e2e4f649 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs @@ -260,7 +260,7 @@ private void OnCanisterInteractUsing(EntityUid uid, GasCanisterComponent compone return; // Check the used item is valid... - if (!HasComp(args.Used)) + if (!TryComp(args.Used, out var gasTank) || gasTank.IsValveOpen) return; // Preventing inserting a tank since if its locked you cant remove it. diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasThermoMachineSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasThermoMachineSystem.cs index 756942eccad..7f5f58fe4b7 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasThermoMachineSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasThermoMachineSystem.cs @@ -24,7 +24,6 @@ public sealed class GasThermoMachineSystem : EntitySystem { [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; [Dependency] private readonly UserInterfaceSystem _userInterfaceSystem = default!; - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly PowerReceiverSystem _power = default!; [Dependency] private readonly NodeContainerSystem _nodeContainer = default!; [Dependency] private readonly DeviceNetworkSystem _deviceNetwork = default!; @@ -49,48 +48,74 @@ public override void Initialize() private void OnThermoMachineUpdated(EntityUid uid, GasThermoMachineComponent thermoMachine, AtmosDeviceUpdateEvent args) { - - if (!(_power.IsPowered(uid)) - || !TryComp(uid, out NodeContainerComponent? nodeContainer) + if (!(_power.IsPowered(uid) && TryComp(uid, out var receiver)) + || !TryComp(uid, out var nodeContainer) || !_nodeContainer.TryGetNode(nodeContainer, thermoMachine.InletName, out PipeNode? inlet)) { return; } - var airHeatCapacity = _atmosphereSystem.GetHeatCapacity(inlet.Air); - var combinedHeatCapacity = airHeatCapacity + thermoMachine.HeatCapacity; + float sign = Math.Sign(thermoMachine.Cp); // 1 if heater, -1 if freezer + float targetTemp = thermoMachine.TargetTemperature; + float highTemp = targetTemp + sign * thermoMachine.TemperatureTolerance; + float temp = inlet.Air.Temperature; + + if (sign * temp >= sign * highTemp) // upper bound + thermoMachine.HysteresisState = false; // turn off + else if (sign * temp < sign * targetTemp) // lower bound + thermoMachine.HysteresisState = true; // turn on - var startEnergy = inlet.Air.Temperature * airHeatCapacity; + if (thermoMachine.HysteresisState) + targetTemp = highTemp; // when on, target upper hysteresis bound - if (!MathHelper.CloseTo(combinedHeatCapacity, 0, 0.001f)) + if (!thermoMachine.HysteresisState) // Hysteresis is the same as "Should this be on?" { - var combinedEnergy = thermoMachine.HeatCapacity * thermoMachine.TargetTemperature + airHeatCapacity * inlet.Air.Temperature; - inlet.Air.Temperature = combinedEnergy / combinedHeatCapacity; + // Turn dynamic load back on when power has been adjusted to not cause lights to + // blink every time this heater comes on. + //receiver.Load = 0f; + return; + } - thermoMachine.LastEnergyDelta = inlet.Air.Temperature * airHeatCapacity - startEnergy; + // Multiply power in by coefficient of performance, add that heat to gas + float dQ = thermoMachine.HeatCapacity * thermoMachine.Cp * args.dt; + + // Clamps the heat transferred to not overshoot + float Cin = _atmosphereSystem.GetHeatCapacity(inlet.Air); + float dT = targetTemp - temp; + float dQLim = dT * Cin; + float scale = 1f; + if (Math.Abs(dQ) > Math.Abs(dQLim)) + { + scale = dQLim / dQ; // reduce power consumption + thermoMachine.HysteresisState = false; // turn off } + float dQActual = dQ * scale; + _atmosphereSystem.AddHeat(inlet.Air, dQActual); + receiver.Load = thermoMachine.HeatCapacity;// * scale; // we're not ready for dynamic load yet, see note above + } + + private bool IsHeater(GasThermoMachineComponent comp) + { + return comp.Cp >= 0; } private void OnGasThermoRefreshParts(EntityUid uid, GasThermoMachineComponent thermoMachine, RefreshPartsEvent args) { var heatCapacityPartRating = args.PartRatings[thermoMachine.MachinePartHeatCapacity]; - var temperatureRangePartRating = args.PartRatings[thermoMachine.MachinePartTemperature]; - thermoMachine.HeatCapacity = thermoMachine.BaseHeatCapacity * MathF.Pow(heatCapacityPartRating, 2); - switch (thermoMachine.Mode) + var temperatureRangePartRating = args.PartRatings[thermoMachine.MachinePartTemperature]; + if (IsHeater(thermoMachine)) { // 593.15K with stock parts. - case ThermoMachineMode.Heater: - thermoMachine.MaxTemperature = thermoMachine.BaseMaxTemperature + thermoMachine.MaxTemperatureDelta * temperatureRangePartRating; - thermoMachine.MinTemperature = Atmospherics.T20C; - break; + thermoMachine.MaxTemperature = thermoMachine.BaseMaxTemperature + thermoMachine.MaxTemperatureDelta * temperatureRangePartRating; + thermoMachine.MinTemperature = Atmospherics.T20C; + } + else { // 73.15K with stock parts. - case ThermoMachineMode.Freezer: - thermoMachine.MinTemperature = MathF.Max( - thermoMachine.BaseMinTemperature - thermoMachine.MinTemperatureDelta * temperatureRangePartRating, Atmospherics.TCMB); - thermoMachine.MaxTemperature = Atmospherics.T20C; - break; + thermoMachine.MinTemperature = MathF.Max( + thermoMachine.BaseMinTemperature - thermoMachine.MinTemperatureDelta * temperatureRangePartRating, Atmospherics.TCMB); + thermoMachine.MaxTemperature = Atmospherics.T20C; } DirtyUI(uid, thermoMachine); @@ -98,14 +123,13 @@ private void OnGasThermoRefreshParts(EntityUid uid, GasThermoMachineComponent th private void OnGasThermoUpgradeExamine(EntityUid uid, GasThermoMachineComponent thermoMachine, UpgradeExamineEvent args) { - switch (thermoMachine.Mode) + if (IsHeater(thermoMachine)) + { + args.AddPercentageUpgrade("gas-thermo-component-upgrade-heating", thermoMachine.MaxTemperature / (thermoMachine.BaseMaxTemperature + thermoMachine.MaxTemperatureDelta)); + } + else { - case ThermoMachineMode.Heater: - args.AddPercentageUpgrade("gas-thermo-component-upgrade-heating", thermoMachine.MaxTemperature / (thermoMachine.BaseMaxTemperature + thermoMachine.MaxTemperatureDelta)); - break; - case ThermoMachineMode.Freezer: - args.AddPercentageUpgrade("gas-thermo-component-upgrade-cooling", thermoMachine.MinTemperature / (thermoMachine.BaseMinTemperature - thermoMachine.MinTemperatureDelta)); - break; + args.AddPercentageUpgrade("gas-thermo-component-upgrade-cooling", thermoMachine.MinTemperature / (thermoMachine.BaseMinTemperature - thermoMachine.MinTemperatureDelta)); } args.AddPercentageUpgrade("gas-thermo-component-upgrade-heat-capacity", thermoMachine.HeatCapacity / thermoMachine.BaseHeatCapacity); } @@ -118,13 +142,15 @@ private void OnToggleMessage(EntityUid uid, GasThermoMachineComponent thermoMach private void OnChangeTemperature(EntityUid uid, GasThermoMachineComponent thermoMachine, GasThermomachineChangeTemperatureMessage args) { - thermoMachine.TargetTemperature = - Math.Clamp(args.Temperature, thermoMachine.MinTemperature, thermoMachine.MaxTemperature); - + if (IsHeater(thermoMachine)) + thermoMachine.TargetTemperature = MathF.Min(args.Temperature, thermoMachine.MaxTemperature); + else + thermoMachine.TargetTemperature = MathF.Max(args.Temperature, thermoMachine.MinTemperature); + thermoMachine.TargetTemperature = MathF.Max(thermoMachine.TargetTemperature, Atmospherics.TCMB); DirtyUI(uid, thermoMachine); } - private void DirtyUI(EntityUid uid, GasThermoMachineComponent? thermoMachine, ServerUserInterfaceComponent? ui=null) + private void DirtyUI(EntityUid uid, GasThermoMachineComponent? thermoMachine, UserInterfaceComponent? ui=null) { if (!Resolve(uid, ref thermoMachine, ref ui, false)) return; @@ -134,7 +160,7 @@ private void DirtyUI(EntityUid uid, GasThermoMachineComponent? thermoMachine, Se return; _userInterfaceSystem.TrySetUiState(uid, ThermomachineUiKey.Key, - new GasThermomachineBoundUserInterfaceState(thermoMachine.MinTemperature, thermoMachine.MaxTemperature, thermoMachine.TargetTemperature, !powerReceiver.PowerDisabled, thermoMachine.Mode), null, ui); + new GasThermomachineBoundUserInterfaceState(thermoMachine.MinTemperature, thermoMachine.MaxTemperature, thermoMachine.TargetTemperature, !powerReceiver.PowerDisabled, IsHeater(thermoMachine)), null, ui); } private void OnExamined(EntityUid uid, GasThermoMachineComponent thermoMachine, ExaminedEvent args) @@ -143,8 +169,8 @@ private void OnExamined(EntityUid uid, GasThermoMachineComponent thermoMachine, return; if (Loc.TryGetString("gas-thermomachine-system-examined", out var str, - ("machineName", thermoMachine.Mode == ThermoMachineMode.Freezer ? "freezer" : "heater"), - ("tempColor", thermoMachine.Mode == ThermoMachineMode.Freezer ? "deepskyblue" : "red"), + ("machineName", !IsHeater(thermoMachine) ? "freezer" : "heater"), + ("tempColor", !IsHeater(thermoMachine) ? "deepskyblue" : "red"), ("temp", Math.Round(thermoMachine.TargetTemperature,2)) )) diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs index 6fb6d3f505e..2c95887198e 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs @@ -17,6 +17,7 @@ using Content.Shared.Atmos.Visuals; using Content.Shared.Audio; using Content.Shared.Examine; +using Content.Shared.Tools.Systems; using JetBrains.Annotations; using Robust.Server.GameObjects; @@ -28,9 +29,10 @@ public sealed class GasVentPumpSystem : EntitySystem [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; [Dependency] private readonly DeviceNetworkSystem _deviceNetSystem = default!; [Dependency] private readonly DeviceLinkSystem _signalSystem = default!; + [Dependency] private readonly NodeContainerSystem _nodeContainer = default!; [Dependency] private readonly SharedAmbientSoundSystem _ambientSoundSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly NodeContainerSystem _nodeContainer = default!; + [Dependency] private readonly WeldableSystem _weldable = default!; public override void Initialize() { @@ -46,12 +48,13 @@ public override void Initialize() SubscribeLocalEvent(OnExamine); SubscribeLocalEvent(OnSignalReceived); SubscribeLocalEvent(OnAnalyzed); + SubscribeLocalEvent(OnWeldChanged); } private void OnGasVentPumpUpdated(EntityUid uid, GasVentPumpComponent vent, AtmosDeviceUpdateEvent args) { //Bingo waz here - if (vent.Welded) + if (_weldable.IsWelded(uid)) { return; } @@ -80,7 +83,7 @@ private void OnGasVentPumpUpdated(EntityUid uid, GasVentPumpComponent vent, Atmo } var timeDelta = args.dt; - var pressureDelta = (float) timeDelta * vent.TargetPressureChange; + var pressureDelta = timeDelta * vent.TargetPressureChange; if (vent.PumpDirection == VentPumpDirection.Releasing && pipe.Air.Pressure > 0) { @@ -253,7 +256,12 @@ private void UpdateState(EntityUid uid, GasVentPumpComponent vent, AppearanceCom return; _ambientSoundSystem.SetAmbience(uid, true); - if (!vent.Enabled) + if (_weldable.IsWelded(uid)) + { + _ambientSoundSystem.SetAmbience(uid, false); + _appearance.SetData(uid, VentPumpVisuals.State, VentPumpState.Welded, appearance); + } + else if (!vent.Enabled) { _ambientSoundSystem.SetAmbience(uid, false); _appearance.SetData(uid, VentPumpVisuals.State, VentPumpState.Off, appearance); @@ -266,11 +274,6 @@ private void UpdateState(EntityUid uid, GasVentPumpComponent vent, AppearanceCom { _appearance.SetData(uid, VentPumpVisuals.State, VentPumpState.In, appearance); } - else if (vent.Welded) - { - _ambientSoundSystem.SetAmbience(uid, false); - _appearance.SetData(uid, VentPumpVisuals.State, VentPumpState.Welded, appearance); - } } private void OnExamine(EntityUid uid, GasVentPumpComponent component, ExaminedEvent args) @@ -308,5 +311,10 @@ private void OnAnalyzed(EntityUid uid, GasVentPumpComponent component, GasAnalyz args.GasMixtures = gasMixDict; } + + private void OnWeldChanged(EntityUid uid, GasVentPumpComponent component, ref WeldableChangedEvent args) + { + UpdateState(uid, component); + } } } diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentScrubberSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentScrubberSystem.cs index fda58f07b93..f7f13a4d33c 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentScrubberSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentScrubberSystem.cs @@ -15,6 +15,7 @@ using Content.Shared.Atmos.Monitor; using Content.Shared.Atmos.Piping.Unary.Components; using Content.Shared.Audio; +using Content.Shared.Tools.Systems; using JetBrains.Annotations; using Robust.Server.GameObjects; @@ -25,10 +26,11 @@ public sealed class GasVentScrubberSystem : EntitySystem { [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; [Dependency] private readonly DeviceNetworkSystem _deviceNetSystem = default!; + [Dependency] private readonly NodeContainerSystem _nodeContainer = default!; [Dependency] private readonly SharedAmbientSoundSystem _ambientSoundSystem = default!; [Dependency] private readonly TransformSystem _transformSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly NodeContainerSystem _nodeContainer = default!; + [Dependency] private readonly WeldableSystem _weldable = default!; public override void Initialize() { @@ -40,11 +42,12 @@ public override void Initialize() SubscribeLocalEvent(OnAtmosAlarm); SubscribeLocalEvent(OnPowerChanged); SubscribeLocalEvent(OnPacketRecv); + SubscribeLocalEvent(OnWeldChanged); } private void OnVentScrubberUpdated(EntityUid uid, GasVentScrubberComponent scrubber, AtmosDeviceUpdateEvent args) { - if (scrubber.Welded) + if (_weldable.IsWelded(uid)) { return; } @@ -183,7 +186,12 @@ private void UpdateState(EntityUid uid, GasVentScrubberComponent scrubber, return; _ambientSoundSystem.SetAmbience(uid, true); - if (!scrubber.Enabled) + if (_weldable.IsWelded(uid)) + { + _ambientSoundSystem.SetAmbience(uid, false); + _appearance.SetData(uid, ScrubberVisuals.State, ScrubberState.Welded, appearance); + } + else if (!scrubber.Enabled) { _ambientSoundSystem.SetAmbience(uid, false); _appearance.SetData(uid, ScrubberVisuals.State, ScrubberState.Off, appearance); @@ -196,11 +204,11 @@ private void UpdateState(EntityUid uid, GasVentScrubberComponent scrubber, { _appearance.SetData(uid, ScrubberVisuals.State, ScrubberState.Siphon, appearance); } - else if (scrubber.Welded) - { - _ambientSoundSystem.SetAmbience(uid, false); - _appearance.SetData(uid, ScrubberVisuals.State, ScrubberState.Welded, appearance); - } + } + + private void OnWeldChanged(EntityUid uid, GasVentScrubberComponent component, ref WeldableChangedEvent args) + { + UpdateState(uid, component); } } } diff --git a/Content.Server/Atmos/Portable/PortableScrubberComponent.cs b/Content.Server/Atmos/Portable/PortableScrubberComponent.cs index 4dab51e7343..5cb84439b5a 100644 --- a/Content.Server/Atmos/Portable/PortableScrubberComponent.cs +++ b/Content.Server/Atmos/Portable/PortableScrubberComponent.cs @@ -5,13 +5,13 @@ namespace Content.Server.Atmos.Portable { [RegisterComponent] - public sealed class PortableScrubberComponent : Component + public sealed partial class PortableScrubberComponent : Component { /// /// The air inside this machine. /// [DataField("gasMixture"), ViewVariables(VVAccess.ReadWrite)] - public GasMixture Air { get; } = new(); + public GasMixture Air { get; private set; } = new(); [DataField("port"), ViewVariables(VVAccess.ReadWrite)] public string PortName { get; set; } = "port"; diff --git a/Content.Server/Atmos/Reactions/FrezonCoolantReaction.cs b/Content.Server/Atmos/Reactions/FrezonCoolantReaction.cs index b300a839c4e..36a0f28686a 100644 --- a/Content.Server/Atmos/Reactions/FrezonCoolantReaction.cs +++ b/Content.Server/Atmos/Reactions/FrezonCoolantReaction.cs @@ -8,7 +8,7 @@ namespace Content.Server.Atmos.Reactions; /// Takes in nitrogen and frezon and cools down the surrounding area. /// [UsedImplicitly] -public sealed class FrezonCoolantReaction : IGasReactionEffect +public sealed partial class FrezonCoolantReaction : IGasReactionEffect { public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem) { diff --git a/Content.Server/Atmos/Reactions/FrezonProductionReaction.cs b/Content.Server/Atmos/Reactions/FrezonProductionReaction.cs index 8abba18f552..084d939e4e0 100644 --- a/Content.Server/Atmos/Reactions/FrezonProductionReaction.cs +++ b/Content.Server/Atmos/Reactions/FrezonProductionReaction.cs @@ -9,7 +9,7 @@ namespace Content.Server.Atmos.Reactions; /// Has a max temperature, but paradoxically gets more efficient the hotter it is. /// [UsedImplicitly] -public sealed class FrezonProductionReaction : IGasReactionEffect +public sealed partial class FrezonProductionReaction : IGasReactionEffect { public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem) { diff --git a/Content.Server/Atmos/Reactions/GasReactionPrototype.cs b/Content.Server/Atmos/Reactions/GasReactionPrototype.cs index 8fc30b36b2d..6db99d80d83 100644 --- a/Content.Server/Atmos/Reactions/GasReactionPrototype.cs +++ b/Content.Server/Atmos/Reactions/GasReactionPrototype.cs @@ -22,38 +22,38 @@ public sealed class GasReactionPrototype : IPrototype { [ViewVariables] [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// /// Minimum gas amount requirements. /// [DataField("minimumRequirements")] - public float[] MinimumRequirements { get; } = new float[Atmospherics.TotalNumberOfGases]; + public float[] MinimumRequirements { get; private set; } = new float[Atmospherics.TotalNumberOfGases]; /// /// Maximum temperature requirement. /// [DataField("maximumTemperature")] - public float MaximumTemperatureRequirement { get; } = float.MaxValue; + public float MaximumTemperatureRequirement { get; private set; } = float.MaxValue; /// /// Minimum temperature requirement. /// [DataField("minimumTemperature")] - public float MinimumTemperatureRequirement { get; } = Atmospherics.TCMB; + public float MinimumTemperatureRequirement { get; private set; } = Atmospherics.TCMB; /// /// Minimum energy requirement. /// [DataField("minimumEnergy")] - public float MinimumEnergyRequirement { get; } = 0f; + public float MinimumEnergyRequirement { get; private set; } = 0f; /// /// Lower numbers are checked/react later than higher numbers. /// If two reactions have the same priority, they may happen in either order. /// [DataField("priority")] - public int Priority { get; } = int.MinValue; + public int Priority { get; private set; } = int.MinValue; /// /// A list of effects this will produce. diff --git a/Content.Server/Atmos/Reactions/MiasmicSubsumationReaction.cs b/Content.Server/Atmos/Reactions/MiasmicSubsumationReaction.cs index 6d0c8b01fe7..b7dd5b7eb89 100644 --- a/Content.Server/Atmos/Reactions/MiasmicSubsumationReaction.cs +++ b/Content.Server/Atmos/Reactions/MiasmicSubsumationReaction.cs @@ -8,7 +8,7 @@ namespace Content.Server.Atmos.Reactions; /// Converts frezon into miasma when the two come into contact. Does not occur at very high temperatures. /// [UsedImplicitly] -public sealed class MiasmicSubsumationReaction : IGasReactionEffect +public sealed partial class MiasmicSubsumationReaction : IGasReactionEffect { public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem) { diff --git a/Content.Server/Atmos/Reactions/PlasmaFireReaction.cs b/Content.Server/Atmos/Reactions/PlasmaFireReaction.cs index cd8a773344c..6aae69b2f25 100644 --- a/Content.Server/Atmos/Reactions/PlasmaFireReaction.cs +++ b/Content.Server/Atmos/Reactions/PlasmaFireReaction.cs @@ -6,7 +6,7 @@ namespace Content.Server.Atmos.Reactions { [UsedImplicitly] [DataDefinition] - public sealed class PlasmaFireReaction : IGasReactionEffect + public sealed partial class PlasmaFireReaction : IGasReactionEffect { public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem) { diff --git a/Content.Server/Atmos/Reactions/TritiumFireReaction.cs b/Content.Server/Atmos/Reactions/TritiumFireReaction.cs index c66a005915d..cc58f0cf7de 100644 --- a/Content.Server/Atmos/Reactions/TritiumFireReaction.cs +++ b/Content.Server/Atmos/Reactions/TritiumFireReaction.cs @@ -6,7 +6,7 @@ namespace Content.Server.Atmos.Reactions { [UsedImplicitly] [DataDefinition] - public sealed class TritiumFireReaction : IGasReactionEffect + public sealed partial class TritiumFireReaction : IGasReactionEffect { public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem) { diff --git a/Content.Server/Atmos/Reactions/WaterVaporReaction.cs b/Content.Server/Atmos/Reactions/WaterVaporReaction.cs index 57ffcac28a2..75eb0291dfa 100644 --- a/Content.Server/Atmos/Reactions/WaterVaporReaction.cs +++ b/Content.Server/Atmos/Reactions/WaterVaporReaction.cs @@ -9,13 +9,13 @@ namespace Content.Server.Atmos.Reactions { [UsedImplicitly] [DataDefinition] - public sealed class WaterVaporReaction : IGasReactionEffect + public sealed partial class WaterVaporReaction : IGasReactionEffect { - [DataField("reagent")] public string? Reagent { get; } = null; + [DataField("reagent")] public string? Reagent { get; private set; } = null; - [DataField("gas")] public int GasId { get; } = 0; + [DataField("gas")] public int GasId { get; private set; } = 0; - [DataField("molesPerUnit")] public float MolesPerUnit { get; } = 1; + [DataField("molesPerUnit")] public float MolesPerUnit { get; private set; } = 1; public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem) { diff --git a/Content.Server/Atmos/Serialization/TileAtmosCollectionSerializer.cs b/Content.Server/Atmos/Serialization/TileAtmosCollectionSerializer.cs index c3a6aec3e96..7d385c530a9 100644 --- a/Content.Server/Atmos/Serialization/TileAtmosCollectionSerializer.cs +++ b/Content.Server/Atmos/Serialization/TileAtmosCollectionSerializer.cs @@ -11,7 +11,7 @@ namespace Content.Server.Atmos.Serialization; -public sealed class TileAtmosCollectionSerializer : ITypeSerializer, MappingDataNode>, ITypeCopier> +public sealed partial class TileAtmosCollectionSerializer : ITypeSerializer, MappingDataNode>, ITypeCopier> { public ValidationNode Validate(ISerializationManager serializationManager, MappingDataNode node, IDependencyCollection dependencies, ISerializationContext? context = null) @@ -156,7 +156,7 @@ public DataNode Write(ISerializationManager serializationManager, Dictionary /// Key is unique mix and value is bitflag of the affected tiles. /// [IncludeDataField(customTypeSerializer: typeof(DictionarySerializer))] - public readonly Dictionary Data = new(); + public Dictionary Data = new(); } public void CopyTo(ISerializationManager serializationManager, Dictionary source, ref Dictionary target, diff --git a/Content.Server/Audio/AmbientOnPoweredComponent.cs b/Content.Server/Audio/AmbientOnPoweredComponent.cs index 4c603d8ce19..39e2f93ff9e 100644 --- a/Content.Server/Audio/AmbientOnPoweredComponent.cs +++ b/Content.Server/Audio/AmbientOnPoweredComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Audio /// Toggles on when powered and off when not powered. /// [RegisterComponent] - public sealed class AmbientOnPoweredComponent : Component + public sealed partial class AmbientOnPoweredComponent : Component { } } diff --git a/Content.Server/BarSign/Systems/BarSignSystem.cs b/Content.Server/BarSign/Systems/BarSignSystem.cs index 503fea663ea..c26fe2c2884 100644 --- a/Content.Server/BarSign/Systems/BarSignSystem.cs +++ b/Content.Server/BarSign/Systems/BarSignSystem.cs @@ -10,6 +10,7 @@ public sealed class BarSignSystem : EntitySystem { [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; public override void Initialize() { @@ -36,8 +37,8 @@ private void OnMapInit(EntityUid uid, BarSignComponent component, MapInitEvent a var meta = Comp(uid); var name = newPrototype.Name != string.Empty ? newPrototype.Name : "barsign-component-name"; - meta.EntityName = Loc.GetString(name); - meta.EntityDescription = Loc.GetString(newPrototype.Description); + _metaData.SetEntityName(uid, Loc.GetString(name), meta); + _metaData.SetEntityDescription(uid, Loc.GetString(newPrototype.Description), meta); component.CurrentSign = newPrototype.ID; Dirty(component); diff --git a/Content.Server/Beam/BeamSystem.cs b/Content.Server/Beam/BeamSystem.cs index f53f3361b4b..a9f994ed560 100644 --- a/Content.Server/Beam/BeamSystem.cs +++ b/Content.Server/Beam/BeamSystem.cs @@ -96,7 +96,7 @@ private void CreateBeam(string prototype, var distanceLength = distanceCorrection.Length(); - var beamVisualizerEvent = new BeamVisualizerEvent(ent, distanceLength, userAngle, bodyState, shader); + var beamVisualizerEvent = new BeamVisualizerEvent(GetNetEntity(ent), distanceLength, userAngle, bodyState, shader); RaiseNetworkEvent(beamVisualizerEvent); if (controller != null) @@ -119,7 +119,7 @@ private void CreateBeam(string prototype, beamSpawnPos = beamSpawnPos.Offset(calculatedDistance.Normalized()); var newEnt = Spawn(prototype, beamSpawnPos); - var ev = new BeamVisualizerEvent(newEnt, distanceLength, userAngle, bodyState, shader); + var ev = new BeamVisualizerEvent(GetNetEntity(newEnt), distanceLength, userAngle, bodyState, shader); RaiseNetworkEvent(ev); } diff --git a/Content.Server/Beam/Components/BeamComponent.cs b/Content.Server/Beam/Components/BeamComponent.cs index 960b59f9a4f..175782e6345 100644 --- a/Content.Server/Beam/Components/BeamComponent.cs +++ b/Content.Server/Beam/Components/BeamComponent.cs @@ -2,7 +2,7 @@ namespace Content.Server.Beam.Components; [RegisterComponent] -public sealed class BeamComponent : SharedBeamComponent +public sealed partial class BeamComponent : SharedBeamComponent { } diff --git a/Content.Server/Bed/BedSystem.cs b/Content.Server/Bed/BedSystem.cs index 9791eb26212..c9795928e50 100644 --- a/Content.Server/Bed/BedSystem.cs +++ b/Content.Server/Bed/BedSystem.cs @@ -2,9 +2,9 @@ using Content.Server.Bed.Components; using Content.Server.Bed.Sleep; using Content.Server.Body.Systems; +using Content.Server.Construction; using Content.Server.Power.Components; using Content.Server.Power.EntitySystems; -using Content.Shared.Actions.ActionTypes; using Content.Shared.Bed; using Content.Shared.Bed.Sleep; using Content.Shared.Body.Components; @@ -12,9 +12,7 @@ using Content.Shared.Damage; using Content.Shared.Emag.Components; using Content.Shared.Emag.Systems; -using Content.Server.Construction; using Content.Shared.Mobs.Systems; -using Robust.Shared.Prototypes; using Robust.Shared.Timing; namespace Content.Server.Bed @@ -23,7 +21,6 @@ public sealed class BedSystem : EntitySystem { [Dependency] private readonly DamageableSystem _damageableSystem = default!; [Dependency] private readonly ActionsSystem _actionsSystem = default!; - [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly SleepingSystem _sleepingSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly MobStateSystem _mobStateSystem = default!; @@ -42,18 +39,17 @@ public override void Initialize() private void ManageUpdateList(EntityUid uid, HealOnBuckleComponent component, ref BuckleChangeEvent args) { - _prototypeManager.TryIndex("Sleep", out var sleepAction); if (args.Buckling) { AddComp(uid); component.NextHealTime = _timing.CurTime + TimeSpan.FromSeconds(component.HealTime); - if (sleepAction != null) - _actionsSystem.AddAction(args.BuckledEntity, new InstantAction(sleepAction), null); + component.SleepAction = Spawn(SleepingSystem.SleepActionId); + _actionsSystem.AddAction(args.BuckledEntity, component.SleepAction.Value, null); return; } - if (sleepAction != null) - _actionsSystem.RemoveAction(args.BuckledEntity, sleepAction); + if (component.SleepAction != null) + _actionsSystem.RemoveAction(args.BuckledEntity, component.SleepAction.Value); _sleepingSystem.TryWaking(args.BuckledEntity); RemComp(uid); diff --git a/Content.Server/Bed/Components/HealOnBuckleComponent.cs b/Content.Server/Bed/Components/HealOnBuckleComponent.cs index bab5d202820..f29fe30429f 100644 --- a/Content.Server/Bed/Components/HealOnBuckleComponent.cs +++ b/Content.Server/Bed/Components/HealOnBuckleComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Bed.Components { [RegisterComponent] - public sealed class HealOnBuckleComponent : Component + public sealed partial class HealOnBuckleComponent : Component { [DataField("damage", required: true)] [ViewVariables(VVAccess.ReadWrite)] @@ -17,5 +17,7 @@ public sealed class HealOnBuckleComponent : Component public float SleepMultiplier = 3f; public TimeSpan NextHealTime = TimeSpan.Zero; //Next heal + + [DataField("sleepAction")] public EntityUid? SleepAction; } } diff --git a/Content.Server/Bed/Components/HealOnBuckleHealing.cs b/Content.Server/Bed/Components/HealOnBuckleHealing.cs index 47e76c49ae9..a944e67e12d 100644 --- a/Content.Server/Bed/Components/HealOnBuckleHealing.cs +++ b/Content.Server/Bed/Components/HealOnBuckleHealing.cs @@ -1,6 +1,6 @@ namespace Content.Server.Bed.Components { [RegisterComponent] - public sealed class HealOnBuckleHealingComponent : Component + public sealed partial class HealOnBuckleHealingComponent : Component {} } diff --git a/Content.Server/Bed/Components/StasisBedComponent.cs b/Content.Server/Bed/Components/StasisBedComponent.cs index b70087b4702..f658d01c9fb 100644 --- a/Content.Server/Bed/Components/StasisBedComponent.cs +++ b/Content.Server/Bed/Components/StasisBedComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Bed.Components { [RegisterComponent] - public sealed class StasisBedComponent : Component + public sealed partial class StasisBedComponent : Component { [DataField("baseMultiplier", required: true), ViewVariables(VVAccess.ReadWrite)] public float BaseMultiplier = 10f; diff --git a/Content.Server/Bed/Sleep/SleepingSystem.cs b/Content.Server/Bed/Sleep/SleepingSystem.cs index 7585f209fc9..154a01c2647 100644 --- a/Content.Server/Bed/Sleep/SleepingSystem.cs +++ b/Content.Server/Bed/Sleep/SleepingSystem.cs @@ -1,7 +1,6 @@ using Content.Server.Actions; using Content.Server.Popups; using Content.Server.Sound.Components; -using Content.Shared.Actions.ActionTypes; using Content.Shared.Audio; using Content.Shared.Bed.Sleep; using Content.Shared.Damage; @@ -9,16 +8,14 @@ using Content.Shared.IdentityManagement; using Content.Shared.Mobs; using Content.Shared.Mobs.Components; -using Content.Shared.StatusEffect; using Content.Shared.Slippery; +using Content.Shared.StatusEffect; using Content.Shared.Stunnable; using Content.Shared.Verbs; -using Robust.Shared.Audio; using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Timing; -using Content.Shared.Interaction.Components; namespace Content.Server.Bed.Sleep { @@ -32,6 +29,8 @@ public sealed class SleepingSystem : SharedSleepingSystem [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly StatusEffectsSystem _statusEffectsSystem = default!; + [ValidatePrototypeId] public const string SleepActionId = "ActionSleep"; + public override void Initialize() { base.Initialize(); @@ -53,7 +52,6 @@ public override void Initialize() /// private void OnSleepStateChanged(EntityUid uid, MobStateComponent component, SleepStateChangedEvent args) { - _prototypeManager.TryIndex("Wake", out var wakeAction); if (args.FellAsleep) { // Expiring status effects would remove the components needed for sleeping @@ -72,16 +70,8 @@ private void OnSleepStateChanged(EntityUid uid, MobStateComponent component, Sle emitSound.PopUp = sleepSound.PopUp; } - if (wakeAction != null) - { - var wakeInstance = new InstantAction(wakeAction); - wakeInstance.Cooldown = (_gameTiming.CurTime, _gameTiming.CurTime + TimeSpan.FromSeconds(15)); - _actionsSystem.AddAction(uid, wakeInstance, null); - } return; } - if (wakeAction != null) - _actionsSystem.RemoveAction(uid, wakeAction); RemComp(uid); RemComp(uid); @@ -192,8 +182,7 @@ public bool TrySleeping(EntityUid uid) RaiseLocalEvent(uid, ref tryingToSleepEvent); if (tryingToSleepEvent.Cancelled) return false; - if (_prototypeManager.TryIndex("Sleep", out var sleepAction)) - _actionsSystem.RemoveAction(uid, sleepAction); + _actionsSystem.RemoveAction(uid, SleepActionId); EnsureComp(uid); return true; diff --git a/Content.Server/Bible/BibleSystem.cs b/Content.Server/Bible/BibleSystem.cs index 62d092c6a14..18f34ba1cc1 100644 --- a/Content.Server/Bible/BibleSystem.cs +++ b/Content.Server/Bible/BibleSystem.cs @@ -4,6 +4,7 @@ using Content.Server.Popups; using Content.Shared.ActionBlocker; using Content.Shared.Actions; +using Content.Shared.Bible; using Content.Shared.Damage; using Content.Shared.IdentityManagement; using Content.Shared.Interaction; @@ -179,8 +180,9 @@ private void GetSummonAction(EntityUid uid, SummonableComponent component, GetIt if (component.AlreadySummoned) return; - args.Actions.Add(component.SummonAction); + args.AddAction(ref component.SummonActionEntity, component.SummonAction); } + private void OnSummon(EntityUid uid, SummonableComponent component, SummonActionEvent args) { AttemptSummon(component, args.Performer, Transform(args.Performer)); @@ -238,12 +240,7 @@ private void AttemptSummon(SummonableComponent component, EntityUid user, Transf Transform(familiar).AttachParent(component.Owner); } component.AlreadySummoned = true; - _actionsSystem.RemoveAction(user, component.SummonAction); + _actionsSystem.RemoveAction(user, component.SummonActionEntity); } } - - public sealed class SummonActionEvent : InstantActionEvent - { - - } } diff --git a/Content.Server/Bible/Components/BibleComponent.cs b/Content.Server/Bible/Components/BibleComponent.cs index d4acbd87329..b7dc3db8e35 100644 --- a/Content.Server/Bible/Components/BibleComponent.cs +++ b/Content.Server/Bible/Components/BibleComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Bible.Components { [RegisterComponent] - public sealed class BibleComponent : Component + public sealed partial class BibleComponent : Component { /// /// Damage that will be healed on a success diff --git a/Content.Server/Bible/Components/BibleUserComponent.cs b/Content.Server/Bible/Components/BibleUserComponent.cs index 6ca89013ff3..5948b8a42b3 100644 --- a/Content.Server/Bible/Components/BibleUserComponent.cs +++ b/Content.Server/Bible/Components/BibleUserComponent.cs @@ -1,5 +1,5 @@ namespace Content.Server.Bible.Components { [RegisterComponent] - public sealed class BibleUserComponent : Component {} + public sealed partial class BibleUserComponent : Component {} } diff --git a/Content.Server/Bible/Components/FamiliarComponent.cs b/Content.Server/Bible/Components/FamiliarComponent.cs index f733fced701..2811e77b860 100644 --- a/Content.Server/Bible/Components/FamiliarComponent.cs +++ b/Content.Server/Bible/Components/FamiliarComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Bible.Components /// if any special behavior is needed. /// [RegisterComponent] - public sealed class FamiliarComponent : Component + public sealed partial class FamiliarComponent : Component { /// /// The entity this familiar was summoned from. diff --git a/Content.Server/Bible/Components/SummonableComponent.cs b/Content.Server/Bible/Components/SummonableComponent.cs index 7b4ee11d99b..62f536d5d69 100644 --- a/Content.Server/Bible/Components/SummonableComponent.cs +++ b/Content.Server/Bible/Components/SummonableComponent.cs @@ -1,7 +1,5 @@ -using Content.Shared.Actions.ActionTypes; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -using Robust.Shared.Utility; namespace Content.Server.Bible.Components { @@ -9,7 +7,7 @@ namespace Content.Server.Bible.Components /// This lets you summon a mob or item with an alternative verb on the item /// [RegisterComponent] - public sealed class SummonableComponent : Component + public sealed partial class SummonableComponent : Component { /// /// Used for a special item only the Chaplain can summon. Usually a mob, but supports regular items too. @@ -18,7 +16,7 @@ public sealed class SummonableComponent : Component public string? SpecialItemPrototype = null; public bool AlreadySummoned = false; - [DataField("requriesBibleUser")] + [DataField("requiresBibleUser")] public bool RequiresBibleUser = true; /// @@ -27,14 +25,11 @@ public sealed class SummonableComponent : Component [ViewVariables] public EntityUid? Summon = null; - [DataField("summonAction")] - public InstantAction SummonAction = new() - { - Icon = new SpriteSpecifier.Texture(new ("Clothing/Head/Hats/witch.rsi/icon.png")), - DisplayName = "bible-summon-verb", - Description = "bible-summon-verb-desc", - Event = new SummonActionEvent(), - }; + [DataField("summonAction", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string SummonAction = "ActionBibleSummon"; + + [DataField("summonActionEntity")] + public EntityUid? SummonActionEntity; /// Used for respawning [DataField("accumulator")] diff --git a/Content.Server/Bible/Components/SummonableRespawningComponent.cs b/Content.Server/Bible/Components/SummonableRespawningComponent.cs index 0e526e3ee40..e8ac0a6a814 100644 --- a/Content.Server/Bible/Components/SummonableRespawningComponent.cs +++ b/Content.Server/Bible/Components/SummonableRespawningComponent.cs @@ -4,6 +4,6 @@ namespace Content.Server.Bible.Components /// EntityQuery Tracking Component for Summonables that are counting up a respawn. /// [RegisterComponent] - public sealed class SummonableRespawningComponent : Component + public sealed partial class SummonableRespawningComponent : Component {} } diff --git a/Content.Server/Body/Commands/AddHandCommand.cs b/Content.Server/Body/Commands/AddHandCommand.cs index 7b78304756a..bdb07ca7e1b 100644 --- a/Content.Server/Body/Commands/AddHandCommand.cs +++ b/Content.Server/Body/Commands/AddHandCommand.cs @@ -14,6 +14,10 @@ namespace Content.Server.Body.Commands [AdminCommand(AdminFlags.Fun)] sealed class AddHandCommand : IConsoleCommand { + [Dependency] private readonly IEntityManager _entManager = default!; + [Dependency] private readonly IPrototypeManager _protoManager = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [ValidatePrototypeId] public const string DefaultHandPrototype = "LeftHandHuman"; @@ -25,9 +29,6 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) { var player = shell.Player as IPlayerSession; - var entityManager = IoCManager.Resolve(); - var prototypeManager = IoCManager.Resolve(); - EntityUid entity; EntityUid hand; @@ -48,21 +49,21 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) } entity = player.AttachedEntity.Value; - hand = entityManager.SpawnEntity(DefaultHandPrototype, entityManager.GetComponent(entity).Coordinates); + hand = _entManager.SpawnEntity(DefaultHandPrototype, _entManager.GetComponent(entity).Coordinates); break; } case 1: { - if (EntityUid.TryParse(args[0], out var uid)) + if (NetEntity.TryParse(args[0], out var uidNet) && _entManager.TryGetEntity(uidNet, out var uid)) { - if (!entityManager.EntityExists(uid)) + if (!_entManager.EntityExists(uid)) { shell.WriteLine($"No entity found with uid {uid}"); return; } - entity = uid; - hand = entityManager.SpawnEntity(DefaultHandPrototype, entityManager.GetComponent(entity).Coordinates); + entity = uid.Value; + hand = _entManager.SpawnEntity(DefaultHandPrototype, _entManager.GetComponent(entity).Coordinates); } else { @@ -79,34 +80,34 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) } entity = player.AttachedEntity.Value; - hand = entityManager.SpawnEntity(args[0], entityManager.GetComponent(entity).Coordinates); + hand = _entManager.SpawnEntity(args[0], _entManager.GetComponent(entity).Coordinates); } break; } case 2: { - if (!EntityUid.TryParse(args[0], out var uid)) + if (!NetEntity.TryParse(args[0], out var netEnt) || !_entManager.TryGetEntity(netEnt, out var uid)) { shell.WriteLine($"{args[0]} is not a valid entity uid."); return; } - if (!entityManager.EntityExists(uid)) + if (!_entManager.EntityExists(uid)) { shell.WriteLine($"No entity exists with uid {uid}."); return; } - entity = uid; + entity = uid.Value; - if (!prototypeManager.HasIndex(args[1])) + if (!_protoManager.HasIndex(args[1])) { shell.WriteLine($"No hand entity exists with id {args[1]}."); return; } - hand = entityManager.SpawnEntity(args[1], entityManager.GetComponent(entity).Coordinates); + hand = _entManager.SpawnEntity(args[1], _entManager.GetComponent(entity).Coordinates); break; } @@ -117,22 +118,21 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) } } - if (!entityManager.TryGetComponent(entity, out BodyComponent? body) || body.Root == null) + if (!_entManager.TryGetComponent(entity, out BodyComponent? body) || body.Root == null) { - var random = IoCManager.Resolve(); - var text = $"You have no body{(random.Prob(0.2f) ? " and you must scream." : ".")}"; + var text = $"You have no body{(_random.Prob(0.2f) ? " and you must scream." : ".")}"; shell.WriteLine(text); return; } - if (!entityManager.TryGetComponent(hand, out BodyPartComponent? part)) + if (!_entManager.TryGetComponent(hand, out BodyPartComponent? part)) { shell.WriteLine($"Hand entity {hand} does not have a {nameof(BodyPartComponent)} component."); return; } - var bodySystem = entityManager.System(); + var bodySystem = _entManager.System(); var attachAt = bodySystem.GetBodyChildrenOfType(entity, BodyPartType.Arm, body).FirstOrDefault(); if (attachAt == default) @@ -142,11 +142,11 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) if (!bodySystem.TryCreatePartSlotAndAttach(attachAt.Id, slotId, hand, attachAt.Component, part)) { - shell.WriteError($"Couldn't create a slot with id {slotId} on entity {entityManager.ToPrettyString(entity)}"); + shell.WriteError($"Couldn't create a slot with id {slotId} on entity {_entManager.ToPrettyString(entity)}"); return; } - shell.WriteLine($"Added hand to entity {entityManager.GetComponent(entity).EntityName}"); + shell.WriteLine($"Added hand to entity {_entManager.GetComponent(entity).EntityName}"); } } } diff --git a/Content.Server/Body/Commands/AttachBodyPartCommand.cs b/Content.Server/Body/Commands/AttachBodyPartCommand.cs index de52cf633a6..9a80a200e08 100644 --- a/Content.Server/Body/Commands/AttachBodyPartCommand.cs +++ b/Content.Server/Body/Commands/AttachBodyPartCommand.cs @@ -12,6 +12,8 @@ namespace Content.Server.Body.Commands [AdminCommand(AdminFlags.Fun)] public sealed class AttachBodyPartCommand : IConsoleCommand { + [Dependency] private readonly IEntityManager _entManager = default!; + public string Command => "attachbodypart"; public string Description => "Attaches a body part to you or someone else."; public string Help => $"{Command} / {Command} "; @@ -19,10 +21,9 @@ public sealed class AttachBodyPartCommand : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { var player = shell.Player as IPlayerSession; - var entityManager = IoCManager.Resolve(); EntityUid bodyId; - EntityUid partUid; + EntityUid? partUid; switch (args.Length) { @@ -39,7 +40,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!EntityUid.TryParse(args[0], out partUid)) + if (!NetEntity.TryParse(args[0], out var partNet) || !_entManager.TryGetEntity(partNet, out partUid)) { shell.WriteLine($"{args[0]} is not a valid entity uid."); return; @@ -49,53 +50,53 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) break; case 2: - if (!EntityUid.TryParse(args[0], out var entityUid)) + if (!NetEntity.TryParse(args[0], out var entityNet) || !_entManager.TryGetEntity(entityNet, out var entityUid)) { shell.WriteLine($"{args[0]} is not a valid entity uid."); return; } - if (!EntityUid.TryParse(args[1], out partUid)) + if (!NetEntity.TryParse(args[1], out partNet) || !_entManager.TryGetEntity(partNet, out partUid)) { shell.WriteLine($"{args[1]} is not a valid entity uid."); return; } - if (!entityManager.EntityExists(entityUid)) + if (!_entManager.EntityExists(entityUid)) { shell.WriteLine($"{entityUid} is not a valid entity."); return; } - bodyId = entityUid; + bodyId = entityUid.Value; break; default: shell.WriteLine(Help); return; } - if (!entityManager.TryGetComponent(bodyId, out BodyComponent? body)) + if (!_entManager.TryGetComponent(bodyId, out BodyComponent? body)) { - shell.WriteLine($"Entity {entityManager.GetComponent(bodyId).EntityName} with uid {bodyId} does not have a {nameof(BodyComponent)}."); + shell.WriteLine($"Entity {_entManager.GetComponent(bodyId).EntityName} with uid {bodyId} does not have a {nameof(BodyComponent)}."); return; } - if (!entityManager.EntityExists(partUid)) + if (!_entManager.EntityExists(partUid)) { shell.WriteLine($"{partUid} is not a valid entity."); return; } - if (!entityManager.TryGetComponent(partUid, out BodyPartComponent? part)) + if (!_entManager.TryGetComponent(partUid, out BodyPartComponent? part)) { - shell.WriteLine($"Entity {entityManager.GetComponent(partUid).EntityName} with uid {args[0]} does not have a {nameof(BodyPartComponent)}."); + shell.WriteLine($"Entity {_entManager.GetComponent(partUid.Value).EntityName} with uid {args[0]} does not have a {nameof(BodyPartComponent)}."); return; } - var bodySystem = entityManager.System(); + var bodySystem = _entManager.System(); if (bodySystem.BodyHasChild(bodyId, partUid, body, part)) { - shell.WriteLine($"Body part {entityManager.GetComponent(partUid).EntityName} with uid {partUid} is already attached to entity {entityManager.GetComponent(bodyId).EntityName} with uid {bodyId}"); + shell.WriteLine($"Body part {_entManager.GetComponent(partUid.Value).EntityName} with uid {partUid} is already attached to entity {_entManager.GetComponent(bodyId).EntityName} with uid {bodyId}"); return; } @@ -113,12 +114,12 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) if (!bodySystem.TryCreatePartSlotAndAttach(attachAt.Id, slotId, partUid, attachAt.Component, part)) { - shell.WriteError($"Could not create slot {slotId} on entity {entityManager.ToPrettyString(bodyId)}"); + shell.WriteError($"Could not create slot {slotId} on entity {_entManager.ToPrettyString(bodyId)}"); return; } } - shell.WriteLine($"Attached part {entityManager.ToPrettyString(partUid)} to {entityManager.ToPrettyString(bodyId)}"); + shell.WriteLine($"Attached part {_entManager.ToPrettyString(partUid.Value)} to {_entManager.ToPrettyString(bodyId)}"); } } } diff --git a/Content.Server/Body/Components/BloodstreamComponent.cs b/Content.Server/Body/Components/BloodstreamComponent.cs index 00d8a7b42d4..33db12157e9 100644 --- a/Content.Server/Body/Components/BloodstreamComponent.cs +++ b/Content.Server/Body/Components/BloodstreamComponent.cs @@ -10,7 +10,7 @@ namespace Content.Server.Body.Components { [RegisterComponent, Access(typeof(BloodstreamSystem), (typeof(ChemistrySystem)))] - public sealed class BloodstreamComponent : Component + public sealed partial class BloodstreamComponent : Component { public static string DefaultChemicalsSolutionName = "chemicals"; public static string DefaultBloodSolutionName = "bloodstream"; diff --git a/Content.Server/Body/Components/BrainComponent.cs b/Content.Server/Body/Components/BrainComponent.cs index 44167118c3d..004ff24eaff 100644 --- a/Content.Server/Body/Components/BrainComponent.cs +++ b/Content.Server/Body/Components/BrainComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Body.Components { [RegisterComponent, Access(typeof(BrainSystem))] - public sealed class BrainComponent : Component + public sealed partial class BrainComponent : Component { } } diff --git a/Content.Server/Body/Components/InternalsComponent.cs b/Content.Server/Body/Components/InternalsComponent.cs index 6fa1732127c..4eda008b0f9 100644 --- a/Content.Server/Body/Components/InternalsComponent.cs +++ b/Content.Server/Body/Components/InternalsComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.Body.Components /// Handles hooking up a mask (breathing tool) / gas tank together and allowing the Owner to breathe through it. /// [RegisterComponent] - public sealed class InternalsComponent : Component + public sealed partial class InternalsComponent : Component { [ViewVariables] public EntityUid? GasTankEntity { get; set; } [ViewVariables] public EntityUid? BreathToolEntity { get; set; } diff --git a/Content.Server/Body/Components/LungComponent.cs b/Content.Server/Body/Components/LungComponent.cs index 0ed4ce0dae5..434286a5c6d 100644 --- a/Content.Server/Body/Components/LungComponent.cs +++ b/Content.Server/Body/Components/LungComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Body.Components; [RegisterComponent, Access(typeof(LungSystem))] -public sealed class LungComponent : Component +public sealed partial class LungComponent : Component { [DataField("air")] [Access(typeof(LungSystem), Other = AccessPermissions.ReadExecute)] // FIXME Friends diff --git a/Content.Server/Body/Components/MetabolizerComponent.cs b/Content.Server/Body/Components/MetabolizerComponent.cs index bc1355fc7ef..21a0be25d2b 100644 --- a/Content.Server/Body/Components/MetabolizerComponent.cs +++ b/Content.Server/Body/Components/MetabolizerComponent.cs @@ -10,7 +10,7 @@ namespace Content.Server.Body.Components /// Handles metabolizing various reagents with given effects. /// [RegisterComponent, Access(typeof(MetabolizerSystem))] - public sealed class MetabolizerComponent : Component + public sealed partial class MetabolizerComponent : Component { public float AccumulatedFrametime = 0.0f; @@ -70,7 +70,7 @@ public sealed class MetabolizerComponent : Component /// This allows metabolizers to remove certain groups much faster, or not at all. /// [DataDefinition] - public sealed class MetabolismGroupEntry + public sealed partial class MetabolismGroupEntry { [DataField("id", required: true, customTypeSerializer:typeof(PrototypeIdSerializer))] public string Id = default!; diff --git a/Content.Server/Body/Components/RespiratorComponent.cs b/Content.Server/Body/Components/RespiratorComponent.cs index ffc78b47193..a6e61f5802d 100644 --- a/Content.Server/Body/Components/RespiratorComponent.cs +++ b/Content.Server/Body/Components/RespiratorComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.Body.Components { [RegisterComponent, Access(typeof(RespiratorSystem))] - public sealed class RespiratorComponent : Component + public sealed partial class RespiratorComponent : Component { /// /// Saturation level. Reduced by CycleDelay each tick. diff --git a/Content.Server/Body/Components/StomachComponent.cs b/Content.Server/Body/Components/StomachComponent.cs index a22b11ffa99..30f97915252 100644 --- a/Content.Server/Body/Components/StomachComponent.cs +++ b/Content.Server/Body/Components/StomachComponent.cs @@ -1,12 +1,14 @@ using Content.Server.Body.Systems; using Content.Server.Nutrition.EntitySystems; +using Content.Shared.Chemistry.Components; +using Content.Shared.Chemistry.Reagent; using Content.Shared.FixedPoint; using Content.Shared.Whitelist; namespace Content.Server.Body.Components { [RegisterComponent, Access(typeof(StomachSystem), typeof(FoodSystem))] - public sealed class StomachComponent : Component + public sealed partial class StomachComponent : Component { public float AccumulatedFrameTime; @@ -46,14 +48,12 @@ public sealed class StomachComponent : Component /// public sealed class ReagentDelta { - public readonly string ReagentId; - public readonly FixedPoint2 Quantity; + public readonly ReagentQuantity ReagentQuantity; public float Lifetime { get; private set; } - public ReagentDelta(string reagentId, FixedPoint2 quantity) + public ReagentDelta(ReagentQuantity reagentQuantity) { - ReagentId = reagentId; - Quantity = quantity; + ReagentQuantity = reagentQuantity; Lifetime = 0.0f; } diff --git a/Content.Server/Body/Components/ThermalRegulatorComponent.cs b/Content.Server/Body/Components/ThermalRegulatorComponent.cs index a6004685459..4acdccf1ba7 100644 --- a/Content.Server/Body/Components/ThermalRegulatorComponent.cs +++ b/Content.Server/Body/Components/ThermalRegulatorComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Body.Components; [RegisterComponent] [Access(typeof(ThermalRegulatorSystem))] -public sealed class ThermalRegulatorComponent : Component +public sealed partial class ThermalRegulatorComponent : Component { /// /// Heat generated due to metabolism. It's generated via metabolism diff --git a/Content.Server/Body/Systems/BloodstreamSystem.cs b/Content.Server/Body/Systems/BloodstreamSystem.cs index 33cb59775bb..9ed92da8fc4 100644 --- a/Content.Server/Body/Systems/BloodstreamSystem.cs +++ b/Content.Server/Body/Systems/BloodstreamSystem.cs @@ -274,9 +274,9 @@ public bool FlushChemicals(EntityUid uid, string excludedReagentID, FixedPoint2 for (var i = component.ChemicalSolution.Contents.Count - 1; i >= 0; i--) { var (reagentId, _) = component.ChemicalSolution.Contents[i]; - if (reagentId != excludedReagentID) + if (reagentId.Prototype != excludedReagentID) { - _solutionContainerSystem.TryRemoveReagent(uid, component.ChemicalSolution, reagentId, quantity); + _solutionContainerSystem.RemoveReagent(uid, component.ChemicalSolution, reagentId, quantity); } } diff --git a/Content.Server/Body/Systems/BodySystem.cs b/Content.Server/Body/Systems/BodySystem.cs index e9dee38be31..aa9fd4dd915 100644 --- a/Content.Server/Body/Systems/BodySystem.cs +++ b/Content.Server/Body/Systems/BodySystem.cs @@ -8,10 +8,10 @@ using Content.Shared.Body.Components; using Content.Shared.Body.Organ; using Content.Shared.Body.Part; -using Content.Shared.Body.Prototypes; using Content.Shared.Body.Systems; -using Content.Shared.Coordinates; using Content.Shared.Humanoid; +using Content.Shared.Kitchen.Components; +using Content.Shared.Mind; using Content.Shared.Mobs.Systems; using Content.Shared.Movement.Events; using Content.Shared.Random.Helpers; @@ -30,7 +30,9 @@ public sealed class BodySystem : SharedBodySystem [Dependency] private readonly HumanoidAppearanceSystem _humanoidSystem = default!; [Dependency] private readonly MobStateSystem _mobState = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly MindSystem _mindSystem = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedMindSystem _mindSystem = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; public override void Initialize() { @@ -106,14 +108,10 @@ private void OnBodyStartup(EntityUid uid, BodyComponent component, ComponentStar private void OnRelayMoveInput(EntityUid uid, BodyComponent component, ref MoveInputEvent args) { - if (_mobState.IsDead(uid) && _mindSystem.TryGetMind(uid, out var mind)) + if (_mobState.IsDead(uid) && _mindSystem.TryGetMind(uid, out var mindId, out var mind)) { - if (!mind.TimeOfDeath.HasValue) - { - mind.TimeOfDeath = _gameTiming.RealTime; - } - - _ticker.OnGhostAttempt(mind, true); + mind.TimeOfDeath ??= _gameTiming.RealTime; + _ticker.OnGhostAttempt(mindId, true, mind: mind); } } @@ -132,7 +130,8 @@ private void OnBeingMicrowaved(EntityUid uid, BodyComponent component, BeingMicr return; // Don't microwave animals, kids - Transform(uid).AttachToGridOrMap(); + _transform.AttachToGridOrMap(uid); + _appearance.SetData(args.Microwave, MicrowaveVisualState.Bloody, true); GibBody(uid, false, component); args.Handled = true; diff --git a/Content.Server/Body/Systems/BrainSystem.cs b/Content.Server/Body/Systems/BrainSystem.cs index ce3dadc6288..9b5da508dd2 100644 --- a/Content.Server/Body/Systems/BrainSystem.cs +++ b/Content.Server/Body/Systems/BrainSystem.cs @@ -1,11 +1,10 @@ using Content.Server.Body.Components; using Content.Server.Ghost.Components; -using Content.Server.Mind; -using Content.Server.Mind.Components; using Content.Shared.Body.Components; using Content.Shared.Body.Events; using Content.Shared.Body.Organ; -using Content.Shared.Body.Part; +using Content.Shared.Mind; +using Content.Shared.Mind.Components; using Content.Shared.Movement.Components; using Content.Shared.Movement.Systems; @@ -14,7 +13,7 @@ namespace Content.Server.Body.Systems public sealed class BrainSystem : EntitySystem { [Dependency] private readonly MovementSpeedModifierSystem _movementSpeed = default!; - [Dependency] private readonly MindSystem _mindSystem = default!; + [Dependency] private readonly SharedMindSystem _mindSystem = default!; public override void Initialize() { @@ -57,10 +56,10 @@ private void HandleMind(EntityUid newEntity, EntityUid oldEntity) _movementSpeed.ChangeBaseSpeed(newEntity, 0, 0 , 0, move); } - if (!_mindSystem.TryGetMind(oldEntity, out var mind, oldMind)) + if (!_mindSystem.TryGetMind(oldEntity, out var mindId, out var mind)) return; - _mindSystem.TransferTo(mind, newEntity); + _mindSystem.TransferTo(mindId, newEntity, mind: mind); } } } diff --git a/Content.Server/Body/Systems/InternalsSystem.cs b/Content.Server/Body/Systems/InternalsSystem.cs index 08dbfacbc23..3e8e2307e3d 100644 --- a/Content.Server/Body/Systems/InternalsSystem.cs +++ b/Content.Server/Body/Systems/InternalsSystem.cs @@ -105,7 +105,7 @@ private void StartToggleInternalsDoAfter(EntityUid user, EntityUid target, Inter var isUser = user == target; var delay = !isUser ? internals.Delay : 1.0f; - _doAfter.TryStartDoAfter(new DoAfterArgs(user, delay, new InternalsDoAfterEvent(), target, target: target) + _doAfter.TryStartDoAfter(new DoAfterArgs(EntityManager, user, delay, new InternalsDoAfterEvent(), target, target: target) { BreakOnUserMove = true, BreakOnDamage = true, diff --git a/Content.Server/Body/Systems/MetabolizerSystem.cs b/Content.Server/Body/Systems/MetabolizerSystem.cs index 89ffff718bb..de06fdc81f4 100644 --- a/Content.Server/Body/Systems/MetabolizerSystem.cs +++ b/Content.Server/Body/Systems/MetabolizerSystem.cs @@ -128,9 +128,9 @@ private void TryMetabolize(EntityUid uid, MetabolizerComponent meta, OrganCompon _random.Shuffle(list); int reagents = 0; - foreach (var reagent in list) + foreach (var (reagent, quantity) in list) { - if (!_prototypeManager.TryIndex(reagent.ReagentId, out var proto)) + if (!_prototypeManager.TryIndex(reagent.Prototype, out var proto)) continue; var mostToRemove = FixedPoint2.Zero; @@ -138,7 +138,7 @@ private void TryMetabolize(EntityUid uid, MetabolizerComponent meta, OrganCompon { if (meta.RemoveEmpty) { - _solutionContainerSystem.TryRemoveReagent(solutionEntityUid.Value, solution, reagent.ReagentId, + _solutionContainerSystem.RemoveReagent(solutionEntityUid.Value, solution, reagent, FixedPoint2.New(1)); } @@ -168,7 +168,7 @@ private void TryMetabolize(EntityUid uid, MetabolizerComponent meta, OrganCompon mostToRemove *= group.MetabolismRateModifier; - mostToRemove = FixedPoint2.Clamp(mostToRemove, 0, reagent.Quantity); + mostToRemove = FixedPoint2.Clamp(mostToRemove, 0, quantity); float scale = (float) mostToRemove / (float) entry.MetabolismRate; @@ -204,8 +204,7 @@ private void TryMetabolize(EntityUid uid, MetabolizerComponent meta, OrganCompon // remove a certain amount of reagent if (mostToRemove > FixedPoint2.Zero) { - _solutionContainerSystem.TryRemoveReagent(solutionEntityUid.Value, solution, reagent.ReagentId, - mostToRemove); + _solutionContainerSystem.RemoveReagent(solutionEntityUid.Value, solution, reagent, mostToRemove); } } } diff --git a/Content.Server/Body/Systems/StomachSystem.cs b/Content.Server/Body/Systems/StomachSystem.cs index 3a4bd8e9c8d..e33931315a6 100644 --- a/Content.Server/Body/Systems/StomachSystem.cs +++ b/Content.Server/Body/Systems/StomachSystem.cs @@ -9,7 +9,6 @@ namespace Content.Server.Body.Systems { public sealed class StomachSystem : EntitySystem { - [Dependency] private readonly BodySystem _bodySystem = default!; [Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!; public const string DefaultSolutionName = "stomach"; @@ -46,14 +45,13 @@ public override void Update(float frameTime) delta.Increment(stomach.UpdateInterval); if (delta.Lifetime > stomach.DigestionDelay) { - if (stomachSolution.TryGetReagent(delta.ReagentId, out var quant)) + if (stomachSolution.TryGetReagent(delta.ReagentQuantity.Reagent, out var reagent)) { - if (quant > delta.Quantity) - quant = delta.Quantity; + if (reagent.Quantity > delta.ReagentQuantity.Quantity) + reagent = new(reagent.Reagent, delta.ReagentQuantity.Quantity); - _solutionContainerSystem.TryRemoveReagent((stomach).Owner, stomachSolution, - delta.ReagentId, quant); - transferSolution.AddReagent(delta.ReagentId, quant); + _solutionContainerSystem.RemoveReagent((stomach).Owner, stomachSolution, reagent); + transferSolution.AddReagent(reagent); } queue.Add(delta); @@ -117,7 +115,7 @@ public bool TryTransferSolution(EntityUid uid, Solution solution, // Add each reagent to ReagentDeltas. Used to track how long each reagent has been in the stomach foreach (var reagent in solution.Contents) { - stomach.ReagentDeltas.Add(new StomachComponent.ReagentDelta(reagent.ReagentId, reagent.Quantity)); + stomach.ReagentDeltas.Add(new StomachComponent.ReagentDelta(reagent)); } return true; diff --git a/Content.Server/Botany/Components/BotanySwabComponent.cs b/Content.Server/Botany/Components/BotanySwabComponent.cs index e772d3b4925..5fad5764b41 100644 --- a/Content.Server/Botany/Components/BotanySwabComponent.cs +++ b/Content.Server/Botany/Components/BotanySwabComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Botany /// Anything that can be used to cross-pollinate plants. /// [RegisterComponent] - public sealed class BotanySwabComponent : Component + public sealed partial class BotanySwabComponent : Component { [DataField("swabDelay")] public float SwabDelay = 2f; diff --git a/Content.Server/Botany/Components/LogComponent.cs b/Content.Server/Botany/Components/LogComponent.cs index eb45bae6727..da3f82416e3 100644 --- a/Content.Server/Botany/Components/LogComponent.cs +++ b/Content.Server/Botany/Components/LogComponent.cs @@ -8,7 +8,7 @@ namespace Content.Server.Botany.Components; [RegisterComponent] [Access(typeof(LogSystem))] -public sealed class LogComponent : Component +public sealed partial class LogComponent : Component { [DataField("spawnedPrototype", customTypeSerializer: typeof(PrototypeIdSerializer))] public string SpawnedPrototype = "MaterialWoodPlank1"; diff --git a/Content.Server/Botany/Components/PlantHolderComponent.cs b/Content.Server/Botany/Components/PlantHolderComponent.cs index 97af11328d4..9825167ca24 100644 --- a/Content.Server/Botany/Components/PlantHolderComponent.cs +++ b/Content.Server/Botany/Components/PlantHolderComponent.cs @@ -1,90 +1,93 @@ -namespace Content.Server.Botany.Components +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + +namespace Content.Server.Botany.Components; + +[RegisterComponent] +public sealed partial class PlantHolderComponent : Component { - [RegisterComponent] - public sealed class PlantHolderComponent : Component - { - [ViewVariables] - public TimeSpan NextUpdate = TimeSpan.Zero; - public TimeSpan UpdateDelay = TimeSpan.FromSeconds(3); + [DataField("nextUpdate", customTypeSerializer: typeof(TimeOffsetSerializer))] + public TimeSpan NextUpdate = TimeSpan.Zero; + [ViewVariables(VVAccess.ReadWrite), DataField("updateDelay")] + public TimeSpan UpdateDelay = TimeSpan.FromSeconds(3); - [ViewVariables] - public int LastProduce; + [DataField("lastProduce")] + public int LastProduce; - [ViewVariables(VVAccess.ReadWrite)] - public int MissingGas; + [ViewVariables(VVAccess.ReadWrite), DataField("missingGas")] + public int MissingGas; - public readonly TimeSpan CycleDelay = TimeSpan.FromSeconds(15f); + [DataField("cycleDelay")] + public TimeSpan CycleDelay = TimeSpan.FromSeconds(15f); - [ViewVariables] - public TimeSpan LastCycle = TimeSpan.Zero; + [DataField("lastCycle", customTypeSerializer: typeof(TimeOffsetSerializer))] + public TimeSpan LastCycle = TimeSpan.Zero; - [ViewVariables(VVAccess.ReadWrite)] - public bool UpdateSpriteAfterUpdate; + [ViewVariables(VVAccess.ReadWrite), DataField("updateSpriteAfterUpdate")] + public bool UpdateSpriteAfterUpdate; - [ViewVariables(VVAccess.ReadWrite)] [DataField("drawWarnings")] - public bool DrawWarnings = false; + [ViewVariables(VVAccess.ReadWrite), DataField("drawWarnings")] + public bool DrawWarnings = false; - [ViewVariables(VVAccess.ReadWrite)] - public float WaterLevel = 100f; + [ViewVariables(VVAccess.ReadWrite), DataField("waterLevel")] + public float WaterLevel = 100f; - [ViewVariables(VVAccess.ReadWrite)] - public float NutritionLevel = 100f; + [ViewVariables(VVAccess.ReadWrite), DataField("nutritionLevel")] + public float NutritionLevel = 100f; - [ViewVariables(VVAccess.ReadWrite)] - public float PestLevel { get; set; } + [ViewVariables(VVAccess.ReadWrite), DataField("pestLevel")] + public float PestLevel; - [ViewVariables(VVAccess.ReadWrite)] - public float WeedLevel { get; set; } + [ViewVariables(VVAccess.ReadWrite), DataField("weedLevel")] + public float WeedLevel; - [ViewVariables(VVAccess.ReadWrite)] - public float Toxins { get; set; } + [ViewVariables(VVAccess.ReadWrite), DataField("toxins")] + public float Toxins; - [ViewVariables(VVAccess.ReadWrite)] - public int Age { get; set; } + [ViewVariables(VVAccess.ReadWrite), DataField("age")] + public int Age; - [ViewVariables(VVAccess.ReadWrite)] - public int SkipAging { get; set; } + [ViewVariables(VVAccess.ReadWrite), DataField("skipAging")] + public int SkipAging; - [ViewVariables(VVAccess.ReadWrite)] - public bool Dead { get; set; } + [ViewVariables(VVAccess.ReadWrite), DataField("dead")] + public bool Dead; - [ViewVariables(VVAccess.ReadWrite)] - public bool Harvest { get; set; } + [ViewVariables(VVAccess.ReadWrite), DataField("harvest")] + public bool Harvest; - [ViewVariables(VVAccess.ReadWrite)] - public bool Sampled { get; set; } + [ViewVariables(VVAccess.ReadWrite), DataField("sampled")] + public bool Sampled; - [ViewVariables(VVAccess.ReadWrite)] - public int YieldMod { get; set; } = 1; + [ViewVariables(VVAccess.ReadWrite), DataField("yieldMod")] + public int YieldMod = 1; - [ViewVariables(VVAccess.ReadWrite)] - public float MutationMod { get; set; } = 1f; + [ViewVariables(VVAccess.ReadWrite), DataField("mutationMod")] + public float MutationMod = 1f; - [ViewVariables(VVAccess.ReadWrite)] - public float MutationLevel { get; set; } + [ViewVariables(VVAccess.ReadWrite), DataField("mutationLevel")] + public float MutationLevel; - [ViewVariables(VVAccess.ReadWrite)] - public float Health { get; set; } + [ViewVariables(VVAccess.ReadWrite), DataField("health")] + public float Health; - [ViewVariables(VVAccess.ReadWrite)] - public float WeedCoefficient { get; set; } = 1f; + [ViewVariables(VVAccess.ReadWrite), DataField("weedCoefficient")] + public float WeedCoefficient = 1f; - [ViewVariables(VVAccess.ReadWrite)] - public SeedData? Seed { get; set; } + [ViewVariables(VVAccess.ReadWrite), DataField("seed")] + public SeedData? Seed; - [ViewVariables(VVAccess.ReadWrite)] - public bool ImproperHeat { get; set; } + [ViewVariables(VVAccess.ReadWrite), DataField("improperHeat")] + public bool ImproperHeat; - [ViewVariables(VVAccess.ReadWrite)] - public bool ImproperPressure { get; set; } + [ViewVariables(VVAccess.ReadWrite), DataField("improperPressure")] + public bool ImproperPressure; - [ViewVariables(VVAccess.ReadWrite)] - public bool ImproperLight { get; set; } + [ViewVariables(VVAccess.ReadWrite), DataField("improperLight")] + public bool ImproperLight; - [ViewVariables(VVAccess.ReadWrite)] - public bool ForceUpdate { get; set; } + [ViewVariables(VVAccess.ReadWrite), DataField("forceUpdate")] + public bool ForceUpdate; - [DataField("solution")] - public string SoilSolutionName { get; set; } = "soil"; - } + [ViewVariables(VVAccess.ReadWrite), DataField("solution")] + public string SoilSolutionName = "soil"; } diff --git a/Content.Server/Botany/Components/ProduceComponent.cs b/Content.Server/Botany/Components/ProduceComponent.cs index 4a87c09f501..c78e0a1ad47 100644 --- a/Content.Server/Botany/Components/ProduceComponent.cs +++ b/Content.Server/Botany/Components/ProduceComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.Botany.Components; [RegisterComponent] [Access(typeof(BotanySystem))] -public sealed class ProduceComponent : Component +public sealed partial class ProduceComponent : Component { [DataField("targetSolution")] public string SolutionName { get; set; } = "food"; @@ -19,5 +19,5 @@ public sealed class ProduceComponent : Component /// Seed data used to create a when this produce has its seeds extracted. /// [DataField("seedId", customTypeSerializer: typeof(PrototypeIdSerializer))] - public readonly string? SeedId; + public string? SeedId; } diff --git a/Content.Server/Botany/Components/SeedComponent.cs b/Content.Server/Botany/Components/SeedComponent.cs index 535c916803d..cb48c166837 100644 --- a/Content.Server/Botany/Components/SeedComponent.cs +++ b/Content.Server/Botany/Components/SeedComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Botany.Components { [RegisterComponent, Access(typeof(BotanySystem))] - public sealed class SeedComponent : Component + public sealed partial class SeedComponent : Component { /// /// Seed data containing information about the plant type & properties that this seed can grow seed. If @@ -18,6 +18,6 @@ public sealed class SeedComponent : Component /// Name of a base seed prototype that is used if is null. /// [DataField("seedId", customTypeSerializer:typeof(PrototypeIdSerializer))] - public readonly string? SeedId; + public string? SeedId; } } diff --git a/Content.Server/Botany/Components/SeedExtractorComponent.cs b/Content.Server/Botany/Components/SeedExtractorComponent.cs index b10074c3f9f..d497f027bf1 100644 --- a/Content.Server/Botany/Components/SeedExtractorComponent.cs +++ b/Content.Server/Botany/Components/SeedExtractorComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Botany.Components; [RegisterComponent] [Access(typeof(SeedExtractorSystem))] -public sealed class SeedExtractorComponent : Component +public sealed partial class SeedExtractorComponent : Component { /// /// The minimum amount of seed packets dropped with no machine upgrades. diff --git a/Content.Server/Botany/SeedPrototype.cs b/Content.Server/Botany/SeedPrototype.cs index 0357782edf5..52eed9d0970 100644 --- a/Content.Server/Botany/SeedPrototype.cs +++ b/Content.Server/Botany/SeedPrototype.cs @@ -54,7 +54,7 @@ public enum PlantJuicy : byte */ [DataDefinition] -public struct SeedChemQuantity +public partial struct SeedChemQuantity { [DataField("Min")] public int Min; [DataField("Max")] public int Max; @@ -64,7 +64,7 @@ public struct SeedChemQuantity // TODO reduce the number of friends to a reasonable level. Requires ECS-ing things like plant holder component. [Virtual, DataDefinition] [Access(typeof(BotanySystem), typeof(PlantHolderSystem), typeof(SeedExtractorSystem), typeof(PlantHolderComponent), typeof(ReagentEffect), typeof(MutationSystem))] -public class SeedData +public partial class SeedData { #region Tracking diff --git a/Content.Server/Botany/Systems/BotanySwabSystem.cs b/Content.Server/Botany/Systems/BotanySwabSystem.cs index 5e5bff0f5cd..8f300c94486 100644 --- a/Content.Server/Botany/Systems/BotanySwabSystem.cs +++ b/Content.Server/Botany/Systems/BotanySwabSystem.cs @@ -44,7 +44,7 @@ private void OnAfterInteract(EntityUid uid, BotanySwabComponent swab, AfterInter if (args.Target == null || !args.CanReach || !HasComp(args.Target)) return; - _doAfterSystem.TryStartDoAfter(new DoAfterArgs(args.User, swab.SwabDelay, new BotanySwabDoAfterEvent(), uid, target: args.Target, used: uid) + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, args.User, swab.SwabDelay, new BotanySwabDoAfterEvent(), uid, target: args.Target, used: uid) { Broadcast = true, BreakOnTargetMove = true, diff --git a/Content.Server/Botany/Systems/BotanySystem.Seed.cs b/Content.Server/Botany/Systems/BotanySystem.Seed.cs index da8f5bfc6ad..b2cad7e0120 100644 --- a/Content.Server/Botany/Systems/BotanySystem.Seed.cs +++ b/Content.Server/Botany/Systems/BotanySystem.Seed.cs @@ -7,12 +7,16 @@ using Content.Shared.Botany; using Content.Shared.Examine; using Content.Shared.Hands.EntitySystems; +using Content.Shared.Physics; using Content.Shared.Popups; using Content.Shared.Random.Helpers; using Content.Shared.Slippery; using Content.Shared.StepTrigger.Components; using Robust.Server.GameObjects; using Robust.Shared.Map; +using Robust.Shared.Physics; +using Robust.Shared.Physics.Components; +using Robust.Shared.Physics.Systems; using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Random; @@ -22,12 +26,16 @@ namespace Content.Server.Botany.Systems; public sealed partial class BotanySystem : EntitySystem { - [Dependency] private readonly AppearanceSystem _appearance = default!; - [Dependency] private readonly SharedHandsSystem _hands = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - [Dependency] private readonly PopupSystem _popupSystem = default!; [Dependency] private readonly IRobustRandom _robustRandom = default!; + [Dependency] private readonly AppearanceSystem _appearance = default!; + [Dependency] private readonly PopupSystem _popupSystem = default!; + [Dependency] private readonly SharedHandsSystem _hands = default!; + [Dependency] private readonly SharedPointLightSystem _light = default!; [Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; + [Dependency] private readonly FixtureSystem _fixtureSystem = default!; + [Dependency] private readonly CollisionWakeSystem _colWakeSystem = default!; public override void Initialize() { @@ -102,7 +110,7 @@ public EntityUid SpawnSeedPacket(SeedData proto, EntityCoordinates coords, Entit var name = Loc.GetString(proto.Name); var noun = Loc.GetString(proto.Noun); var val = Loc.GetString("botany-seed-packet-name", ("seedName", name), ("seedNoun", noun)); - MetaData(seed).EntityName = val; + _metaData.SetEntityName(seed, val); // try to automatically place in user's other hand _hands.TryPickupAnyHand(user, seed); @@ -167,24 +175,33 @@ public IEnumerable GenerateProduct(SeedData proto, EntityCoordinates if (proto.Mysterious) { var metaData = MetaData(entity); - metaData.EntityName += "?"; - metaData.EntityDescription += " " + Loc.GetString("botany-mysterious-description-addon"); + _metaData.SetEntityName(entity, metaData.EntityName + "?", metaData); + _metaData.SetEntityDescription(entity, + metaData.EntityDescription + " " + Loc.GetString("botany-mysterious-description-addon"), metaData); } if (proto.Bioluminescent) { - var light = EnsureComp(entity); - light.Radius = proto.BioluminescentRadius; - light.Color = proto.BioluminescentColor; - light.CastShadows = false; // this is expensive, and botanists make lots of plants - Dirty(light); + var light = _light.EnsureLight(entity); + _light.SetRadius(entity, proto.BioluminescentRadius, light); + _light.SetColor(entity, proto.BioluminescentColor, light); + // TODO: Ayo why you copy-pasting code between here and plantholder? + _light.SetCastShadows(entity, false, light); // this is expensive, and botanists make lots of plants } if (proto.Slip) { var slippery = EnsureComp(entity); - EntityManager.Dirty(slippery); + Dirty(entity, slippery); EnsureComp(entity); + // Need a fixture with a slip layer in order to actually do the slipping + var fixtures = EnsureComp(entity); + var body = EnsureComp(entity); + var shape = fixtures.Fixtures["fix1"].Shape; + _fixtureSystem.TryCreateFixture(entity, shape, "slips", 1, false, (int) CollisionGroup.SlipLayer, manager: fixtures, body: body); + // Need to disable collision wake so that mobs can collide with and slip on it + var collisionWake = EnsureComp(entity); + _colWakeSystem.SetEnabled(entity, false, collisionWake); } } diff --git a/Content.Server/Botany/Systems/MutationSystem.cs b/Content.Server/Botany/Systems/MutationSystem.cs index 85f882255fe..dbe0dfa5c4f 100644 --- a/Content.Server/Botany/Systems/MutationSystem.cs +++ b/Content.Server/Botany/Systems/MutationSystem.cs @@ -1,10 +1,21 @@ +using Robust.Shared.Prototypes; using Robust.Shared.Random; +using Content.Shared.Chemistry.Reagent; +using System.Linq; +using Content.Shared.Atmos; namespace Content.Server.Botany; public sealed class MutationSystem : EntitySystem { [Dependency] private readonly IRobustRandom _robustRandom = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + private List _allChemicals = default!; + + public override void Initialize() + { + _allChemicals = _prototypeManager.EnumeratePrototypes().ToList(); + } /// /// Main idea: Simulate genetic mutation using random binary flips. Each @@ -25,7 +36,7 @@ public void MutateSeed(SeedData seed, float severity) } // Add up everything in the bits column and put the number here. - const int totalbits = 245; + const int totalbits = 270; // Tolerances (55) MutateFloat(ref seed.NutrientConsumption , 0.05f , 1.2f , 5 , totalbits , severity); @@ -62,13 +73,20 @@ public void MutateSeed(SeedData seed, float severity) //seed.BioluminescentColor = RandomColor(seed.BioluminescentColor, 10, totalbits, severity); // ConstantUpgade (10) MutateHarvestType(ref seed.HarvestRepeat , 10 , totalbits , severity); + + // Gas (5) + MutateGasses(ref seed.ExudeGasses, 0.01f, 0.5f, 4, totalbits, severity); + MutateGasses(ref seed.ConsumeGasses, 0.01f, 0.5f, 1, totalbits, severity); + + // Chems (20) + MutateChemicals(ref seed.Chemicals, 5, 20, totalbits, severity); } public SeedData Cross(SeedData a, SeedData b) { SeedData result = b.Clone(); - result.Chemicals = Random(0.5f) ? a.Chemicals : result.Chemicals; + CrossChemicals(ref result.Chemicals, a.Chemicals); CrossFloat(ref result.NutrientConsumption, a.NutrientConsumption); CrossFloat(ref result.WaterConsumption, a.WaterConsumption); @@ -97,6 +115,9 @@ public SeedData Cross(SeedData a, SeedData b) //CrossBool(ref result.Bioluminescent, a.Bioluminescent); CrossBool(ref result.TurnIntoKudzu, a.TurnIntoKudzu); CrossBool(ref result.CanScream, a.CanScream); + CrossGasses(ref result.ExudeGasses, a.ExudeGasses); + CrossGasses(ref result.ConsumeGasses, a.ConsumeGasses); + //result.BioluminescentColor = Random(0.5f) ? a.BioluminescentColor : result.BioluminescentColor; // Hybrids have a high chance of being seedless. Balances very @@ -200,6 +221,59 @@ private void MutateHarvestType(ref HarvestType val, int bits, int totalbits, flo val = HarvestType.SelfHarvest; } + private void MutateGasses(ref Dictionary gasses, float min, float max, int bits, int totalbits, float mult) + { + float p = mult * bits / totalbits; + p = Math.Clamp(p, 0, 1); + if (!Random(p)) + return; + + // Add a random amount of a random gas to this gas dictionary + float amount = _robustRandom.NextFloat(min, max); + Gas gas = _robustRandom.Pick(Enum.GetValues(typeof(Gas)).Cast().ToList()); + if (gasses.ContainsKey(gas)) + { + gasses[gas] += amount; + } + else + { + gasses.Add(gas, amount); + } + } + + private void MutateChemicals(ref Dictionary chemicals, int max, int bits, int totalbits, float mult) + { + float p = mult * bits / totalbits; + p = Math.Clamp(p, 0, 1); + if (!Random(p)) + return; + + // Add a random amount of a random chemical to this set of chemicals + ReagentPrototype selected_chemical = _robustRandom.Pick(_allChemicals); + if (selected_chemical != null) + { + string chemical_id = selected_chemical.ID; + int amount = _robustRandom.Next(1, max); + SeedChemQuantity seed_chem_quantity = new SeedChemQuantity(); + if (chemicals.ContainsKey(chemical_id)) + { + seed_chem_quantity.Min = chemicals[chemical_id].Min; + seed_chem_quantity.Max = chemicals[chemical_id].Max + amount; + int potency = (int) Math.Ceiling(100.0f / (float) seed_chem_quantity.Max); + seed_chem_quantity.PotencyDivisor = potency; + chemicals[chemical_id] = seed_chem_quantity; + } + else + { + seed_chem_quantity.Min = 1; + seed_chem_quantity.Max = 1 + amount; + int potency = (int) Math.Ceiling(100.0f / (float) seed_chem_quantity.Max); + seed_chem_quantity.PotencyDivisor = potency; + chemicals.Add(chemical_id, seed_chem_quantity); + } + } + } + private Color RandomColor(Color color, int bits, int totalbits, float mult) { float p = mult*bits/totalbits; @@ -214,12 +288,75 @@ private Color RandomColor(Color color, int bits, int totalbits, float mult) Color.Purple, Color.Pink }; - var rng = IoCManager.Resolve(); - return rng.Pick(colors); + return _robustRandom.Pick(colors); } return color; } + private void CrossChemicals(ref Dictionary val, Dictionary other) + { + // Go through chemicals from the pollen in swab + foreach (var other_chem in other) + { + // if both have same chemical, randomly pick potency ratio from the two. + if (val.ContainsKey(other_chem.Key)) + { + val[other_chem.Key] = Random(0.5f) ? other_chem.Value : val[other_chem.Key]; + } + // if target plant doesn't have this chemical, has 50% chance to add it. + else + { + if (Random(0.5f)) + { + val.Add(other_chem.Key, other_chem.Value); + } + } + } + + // if the target plant has chemical that the pollen in swab does not, 50% chance to remove it. + foreach (var this_chem in val) + { + if (!other.ContainsKey(this_chem.Key)) + { + if (Random(0.5f)) + { + val.Remove(this_chem.Key); + } + } + } + } + + private void CrossGasses(ref Dictionary val, Dictionary other) + { + // Go through gasses from the pollen in swab + foreach (var other_gas in other) + { + // if both have same gas, randomly pick ammount from the two. + if (val.ContainsKey(other_gas.Key)) + { + val[other_gas.Key] = Random(0.5f) ? other_gas.Value : val[other_gas.Key]; + } + // if target plant doesn't have this gas, has 50% chance to add it. + else + { + if (Random(0.5f)) + { + val.Add(other_gas.Key, other_gas.Value); + } + } + } + // if the target plant has gas that the pollen in swab does not, 50% chance to remove it. + foreach (var this_gas in val) + { + if (!other.ContainsKey(this_gas.Key)) + { + if (Random(0.5f)) + { + val.Remove(this_gas.Key); + } + } + } + } private void CrossFloat(ref float val, float other) { val = Random(0.5f) ? val : other; diff --git a/Content.Server/Botany/Systems/PlantHolderSystem.cs b/Content.Server/Botany/Systems/PlantHolderSystem.cs index 1c0582e5f4d..275b80dd7fe 100644 --- a/Content.Server/Botany/Systems/PlantHolderSystem.cs +++ b/Content.Server/Botany/Systems/PlantHolderSystem.cs @@ -25,919 +25,920 @@ using Robust.Shared.Random; using Robust.Shared.Timing; -namespace Content.Server.Botany.Systems +namespace Content.Server.Botany.Systems; + +public sealed class PlantHolderSystem : EntitySystem { - public sealed class PlantHolderSystem : EntitySystem + [Dependency] private readonly AtmosphereSystem _atmosphere = default!; + [Dependency] private readonly BotanySystem _botany = default!; + [Dependency] private readonly IPrototypeManager _prototype = default!; + [Dependency] private readonly MutationSystem _mutation = default!; + [Dependency] private readonly AppearanceSystem _appearance = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly SharedPointLightSystem _pointLight = default!; + [Dependency] private readonly SolutionContainerSystem _solutionSystem = default!; + [Dependency] private readonly TagSystem _tagSystem = default!; + [Dependency] private readonly IRobustRandom _random = default!; + + + public const float HydroponicsSpeedMultiplier = 1f; + public const float HydroponicsConsumptionMultiplier = 2f; + + public override void Initialize() { - [Dependency] private readonly BotanySystem _botanySystem = default!; - [Dependency] private readonly IPrototypeManager _prototype = default!; - [Dependency] private readonly MutationSystem _mutation = default!; - [Dependency] private readonly AppearanceSystem _appearance = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly PopupSystem _popupSystem = default!; - [Dependency] private readonly IGameTiming _gameTiming = default!; - [Dependency] private readonly TagSystem _tagSystem = default!; - [Dependency] private readonly SolutionContainerSystem _solutionSystem = default!; - [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly AtmosphereSystem _atmosphere = default!; + base.Initialize(); + SubscribeLocalEvent(OnExamine); + SubscribeLocalEvent(OnInteractUsing); + SubscribeLocalEvent(OnInteractHand); + } - public const float HydroponicsSpeedMultiplier = 1f; - public const float HydroponicsConsumptionMultiplier = 2f; + public override void Update(float frameTime) + { + base.Update(frameTime); - public override void Initialize() + foreach (var plantHolder in EntityQuery()) { - base.Initialize(); - SubscribeLocalEvent(OnExamine); - SubscribeLocalEvent(OnInteractUsing); - SubscribeLocalEvent(OnInteractHand); + if (plantHolder.NextUpdate > _gameTiming.CurTime) + continue; + plantHolder.NextUpdate = _gameTiming.CurTime + plantHolder.UpdateDelay; + + Update(plantHolder.Owner, plantHolder); } + } + + private void OnExamine(EntityUid uid, PlantHolderComponent component, ExaminedEvent args) + { + if (!args.IsInDetailsRange) + return; - public override void Update(float frameTime) + if (component.Seed == null) { - base.Update(frameTime); + args.PushMarkup(Loc.GetString("plant-holder-component-nothing-planted-message")); + } + else if (!component.Dead) + { + var displayName = Loc.GetString(component.Seed.DisplayName); + args.PushMarkup(Loc.GetString("plant-holder-component-something-already-growing-message", + ("seedName", displayName), + ("toBeForm", displayName.EndsWith('s') ? "are" : "is"))); - foreach (var plantHolder in EntityQuery()) + if (component.Health <= component.Seed.Endurance / 2) { - if (plantHolder.NextUpdate > _gameTiming.CurTime) - continue; - plantHolder.NextUpdate = _gameTiming.CurTime + plantHolder.UpdateDelay; - - Update(plantHolder.Owner, plantHolder); + args.PushMarkup(Loc.GetString( + "plant-holder-component-something-already-growing-low-health-message", + ("healthState", + Loc.GetString(component.Age > component.Seed.Lifespan + ? "plant-holder-component-plant-old-adjective" + : "plant-holder-component-plant-unhealthy-adjective")))); } } + else + { + args.PushMarkup(Loc.GetString("plant-holder-component-dead-plant-matter-message")); + } + + if (component.WeedLevel >= 5) + args.PushMarkup(Loc.GetString("plant-holder-component-weed-high-level-message")); + + if (component.PestLevel >= 5) + args.PushMarkup(Loc.GetString("plant-holder-component-pest-high-level-message")); - private void OnExamine(EntityUid uid, PlantHolderComponent component, ExaminedEvent args) + args.PushMarkup(Loc.GetString($"plant-holder-component-water-level-message", + ("waterLevel", (int) component.WaterLevel))); + args.PushMarkup(Loc.GetString($"plant-holder-component-nutrient-level-message", + ("nutritionLevel", (int) component.NutritionLevel))); + + if (component.DrawWarnings) { - if (!args.IsInDetailsRange) - return; + if (component.Toxins > 40f) + args.PushMarkup(Loc.GetString("plant-holder-component-toxins-high-warning")); + + if (component.ImproperLight) + args.PushMarkup(Loc.GetString("plant-holder-component-light-improper-warning")); + + if (component.ImproperHeat) + args.PushMarkup(Loc.GetString("plant-holder-component-heat-improper-warning")); + + if (component.ImproperPressure) + args.PushMarkup(Loc.GetString("plant-holder-component-pressure-improper-warning")); + + if (component.MissingGas > 0) + args.PushMarkup(Loc.GetString("plant-holder-component-gas-missing-warning")); + } + } + private void OnInteractUsing(EntityUid uid, PlantHolderComponent component, InteractUsingEvent args) + { + if (TryComp(args.Used, out SeedComponent? seeds)) + { if (component.Seed == null) { - args.PushMarkup(Loc.GetString("plant-holder-component-nothing-planted-message")); + if (!_botany.TryGetSeed(seeds, out var seed)) + return; + + var name = Loc.GetString(seed.Name); + var noun = Loc.GetString(seed.Noun); + _popup.PopupCursor(Loc.GetString("plant-holder-component-plant-success-message", + ("seedName", name), + ("seedNoun", noun)), args.User, PopupType.Medium); + + component.Seed = seed; + component.Dead = false; + component.Age = 1; + component.Health = component.Seed.Endurance; + component.LastCycle = _gameTiming.CurTime; + + QueueDel(args.Used); + + CheckLevelSanity(uid, component); + UpdateSprite(uid, component); + + return; } - else if (!component.Dead) - { - var displayName = Loc.GetString(component.Seed.DisplayName); - args.PushMarkup(Loc.GetString("plant-holder-component-something-already-growing-message", - ("seedName", displayName), - ("toBeForm", displayName.EndsWith('s') ? "are" : "is"))); - if (component.Health <= component.Seed.Endurance / 2) - { - args.PushMarkup(Loc.GetString( - "plant-holder-component-something-already-growing-low-health-message", - ("healthState", - Loc.GetString(component.Age > component.Seed.Lifespan - ? "plant-holder-component-plant-old-adjective" - : "plant-holder-component-plant-unhealthy-adjective")))); - } + _popup.PopupCursor(Loc.GetString("plant-holder-component-already-seeded-message", + ("name", Comp(uid).EntityName)), args.User, PopupType.Medium); + return; + } + + if (_tagSystem.HasTag(args.Used, "Hoe")) + { + if (component.WeedLevel > 0) + { + _popup.PopupCursor(Loc.GetString("plant-holder-component-remove-weeds-message", + ("name", Comp(uid).EntityName)), args.User, PopupType.Medium); + _popup.PopupEntity(Loc.GetString("plant-holder-component-remove-weeds-others-message", + ("otherName", Comp(args.User).EntityName)), uid, Filter.PvsExcept(args.User), true); + component.WeedLevel = 0; + UpdateSprite(uid, component); } else { - args.PushMarkup(Loc.GetString("plant-holder-component-dead-plant-matter-message")); + _popup.PopupCursor(Loc.GetString("plant-holder-component-no-weeds-message"), args.User); } - if (component.WeedLevel >= 5) - args.PushMarkup(Loc.GetString("plant-holder-component-weed-high-level-message")); - - if (component.PestLevel >= 5) - args.PushMarkup(Loc.GetString("plant-holder-component-pest-high-level-message")); - - args.PushMarkup(Loc.GetString($"plant-holder-component-water-level-message", - ("waterLevel", (int) component.WaterLevel))); - args.PushMarkup(Loc.GetString($"plant-holder-component-nutrient-level-message", - ("nutritionLevel", (int) component.NutritionLevel))); + return; + } - if (component.DrawWarnings) + if (_tagSystem.HasTag(args.Used, "Shovel")) + { + if (component.Seed != null) { - if (component.Toxins > 40f) - args.PushMarkup(Loc.GetString("plant-holder-component-toxins-high-warning")); + _popup.PopupCursor(Loc.GetString("plant-holder-component-remove-plant-message", + ("name", Comp(uid).EntityName)), args.User, PopupType.Medium); + _popup.PopupEntity(Loc.GetString("plant-holder-component-remove-plant-others-message", + ("name", Comp(args.User).EntityName)), uid, Filter.PvsExcept(args.User), true); + RemovePlant(uid, component); + } + else + { + _popup.PopupCursor(Loc.GetString("plant-holder-component-no-plant-message", + ("name", Comp(uid).EntityName)), args.User); + } - if (component.ImproperLight) - args.PushMarkup(Loc.GetString("plant-holder-component-light-improper-warning")); + return; + } - if (component.ImproperHeat) - args.PushMarkup(Loc.GetString("plant-holder-component-heat-improper-warning")); + if (_solutionSystem.TryGetDrainableSolution(args.Used, out var solution) + && _solutionSystem.TryGetSolution(uid, component.SoilSolutionName, out var targetSolution) + && TryComp(args.Used, out SprayComponent? spray)) + { + var amount = FixedPoint2.New(1); - if (component.ImproperPressure) - args.PushMarkup(Loc.GetString("plant-holder-component-pressure-improper-warning")); + var targetEntity = uid; + var solutionEntity = args.Used; - if (component.MissingGas > 0) - args.PushMarkup(Loc.GetString("plant-holder-component-gas-missing-warning")); - } - } + _audio.PlayPvs(spray.SpraySound, args.Used, AudioParams.Default.WithVariation(0.125f)); - private void OnInteractUsing(EntityUid uid, PlantHolderComponent component, InteractUsingEvent args) - { - if (TryComp(args.Used, out SeedComponent? seeds)) - { - if (component.Seed == null) - { - if (!_botanySystem.TryGetSeed(seeds, out var seed)) - return; + var split = _solutionSystem.Drain(solutionEntity, solution, amount); - var name = Loc.GetString(seed.Name); - var noun = Loc.GetString(seed.Noun); - _popupSystem.PopupCursor(Loc.GetString("plant-holder-component-plant-success-message", - ("seedName", name), - ("seedNoun", noun)), args.User, PopupType.Medium); + if (split.Volume == 0) + { + _popup.PopupCursor(Loc.GetString("plant-holder-component-no-plant-message", + ("owner", args.Used)), args.User); + return; + } - component.Seed = seed; - component.Dead = false; - component.Age = 1; - component.Health = component.Seed.Endurance; - component.LastCycle = _gameTiming.CurTime; + _popup.PopupCursor(Loc.GetString("plant-holder-component-spray-message", + ("owner", uid), + ("amount", split.Volume)), args.User, PopupType.Medium); - EntityManager.QueueDeleteEntity(args.Used); + _solutionSystem.TryAddSolution(targetEntity, targetSolution, split); - CheckLevelSanity(uid, component); - UpdateSprite(uid, component); + ForceUpdateByExternalCause(uid, component); - return; - } + return; + } - _popupSystem.PopupCursor(Loc.GetString("plant-holder-component-already-seeded-message", - ("name", Comp(uid).EntityName)), args.User, PopupType.Medium); + if (_tagSystem.HasTag(args.Used, "PlantSampleTaker")) + { + if (component.Seed == null) + { + _popup.PopupCursor(Loc.GetString("plant-holder-component-nothing-to-sample-message"), args.User); return; } - if (_tagSystem.HasTag(args.Used, "Hoe")) + if (component.Sampled) { - if (component.WeedLevel > 0) - { - _popupSystem.PopupCursor(Loc.GetString("plant-holder-component-remove-weeds-message", - ("name", Comp(uid).EntityName)), args.User, PopupType.Medium); - _popupSystem.PopupEntity(Loc.GetString("plant-holder-component-remove-weeds-others-message", - ("otherName", Comp(args.User).EntityName)), uid, Filter.PvsExcept(args.User), true); - component.WeedLevel = 0; - UpdateSprite(uid, component); - } - else - { - _popupSystem.PopupCursor(Loc.GetString("plant-holder-component-no-weeds-message"), args.User); - } - + _popup.PopupCursor(Loc.GetString("plant-holder-component-already-sampled-message"), args.User); return; } - if (_tagSystem.HasTag(args.Used, "Shovel")) + if (component.Dead) { - if (component.Seed != null) - { - _popupSystem.PopupCursor(Loc.GetString("plant-holder-component-remove-plant-message", - ("name", Comp(uid).EntityName)), args.User, PopupType.Medium); - _popupSystem.PopupEntity(Loc.GetString("plant-holder-component-remove-plant-others-message", - ("name", Comp(args.User).EntityName)), uid, Filter.PvsExcept(args.User), true); - RemovePlant(uid, component); - } - else - { - _popupSystem.PopupCursor(Loc.GetString("plant-holder-component-no-plant-message", - ("name", Comp(uid).EntityName)), args.User); - } - + _popup.PopupCursor(Loc.GetString("plant-holder-component-dead-plant-message"), args.User); return; } - if (_solutionSystem.TryGetDrainableSolution(args.Used, out var solution) - && _solutionSystem.TryGetSolution(uid, component.SoilSolutionName, out var targetSolution) - && TryComp(args.Used, out SprayComponent? spray)) + component.Seed.Unique = false; + var seed = _botany.SpawnSeedPacket(component.Seed, Transform(args.User).Coordinates, args.User); + seed.RandomOffset(0.25f); + var displayName = Loc.GetString(component.Seed.DisplayName); + _popup.PopupCursor(Loc.GetString("plant-holder-component-take-sample-message", + ("seedName", displayName)), args.User); + component.Health -= (_random.Next(3, 5) * 10); + + if (component.Seed != null && component.Seed.CanScream) { - var amount = FixedPoint2.New(1); + _audio.PlayPvs(component.Seed.ScreamSound, uid, AudioParams.Default.WithVolume(-2)); + } - var targetEntity = uid; - var solutionEntity = args.Used; + if (_random.Prob(0.3f)) + component.Sampled = true; - _audio.PlayPvs(spray.SpraySound, args.Used, AudioParams.Default.WithVariation(0.125f)); + // Just in case. + CheckLevelSanity(uid, component); + ForceUpdateByExternalCause(uid, component); - var split = _solutionSystem.Drain(solutionEntity, solution, amount); + return; + } - if (split.Volume == 0) - { - _popupSystem.PopupCursor(Loc.GetString("plant-holder-component-no-plant-message", - ("owner", args.Used)), args.User); - return; - } + if (HasComp(args.Used)) + DoHarvest(uid, args.User, component); - _popupSystem.PopupCursor(Loc.GetString("plant-holder-component-spray-message", - ("owner", uid), - ("amount", split.Volume)), args.User, PopupType.Medium); + if (TryComp(args.Used, out var produce)) + { + _popup.PopupCursor(Loc.GetString("plant-holder-component-compost-message", + ("owner", uid), + ("usingItem", args.Used)), args.User, PopupType.Medium); + _popup.PopupEntity(Loc.GetString("plant-holder-component-compost-others-message", + ("user", Identity.Entity(args.User, EntityManager)), + ("usingItem", args.Used), + ("owner", uid)), uid, Filter.PvsExcept(args.User), true); - _solutionSystem.TryAddSolution(targetEntity, targetSolution, split); + if (_solutionSystem.TryGetSolution(args.Used, produce.SolutionName, out var solution2)) + { + if (_solutionSystem.TryGetSolution(uid, component.SoilSolutionName, out var solution1)) + { + // We try to fit as much of the composted plant's contained solution into the hydroponics tray as we can, + // since the plant will be consumed anyway. - ForceUpdateByExternalCause(uid, component); + var fillAmount = FixedPoint2.Min(solution2.Volume, solution1.AvailableVolume); + _solutionSystem.TryAddSolution(uid, solution1, + _solutionSystem.SplitSolution(args.Used, solution2, fillAmount)); - return; + ForceUpdateByExternalCause(uid, component); + } } - - if (_tagSystem.HasTag(args.Used, "PlantSampleTaker")) + var seed = produce.Seed; + if (seed != null) { - if (component.Seed == null) - { - _popupSystem.PopupCursor(Loc.GetString("plant-holder-component-nothing-to-sample-message"), args.User); - return; - } + var nutrientBonus = seed.Potency / 2.5f; + AdjustNutrient(uid, nutrientBonus, component); + } + QueueDel(args.Used); + } + } - if (component.Sampled) - { - _popupSystem.PopupCursor(Loc.GetString("plant-holder-component-already-sampled-message"), args.User); - return; - } + private void OnInteractHand(EntityUid uid, PlantHolderComponent component, InteractHandEvent args) + { + DoHarvest(uid, args.User, component); + } - if (component.Dead) - { - _popupSystem.PopupCursor(Loc.GetString("plant-holder-component-dead-plant-message"), args.User); - return; - } + public void WeedInvasion() + { + // TODO + } - component.Seed.Unique = false; - var seed = _botanySystem.SpawnSeedPacket(component.Seed, Transform(args.User).Coordinates, args.User); - seed.RandomOffset(0.25f); - var displayName = Loc.GetString(component.Seed.DisplayName); - _popupSystem.PopupCursor(Loc.GetString("plant-holder-component-take-sample-message", - ("seedName", displayName)), args.User); - component.Health -= (_random.Next(3, 5) * 10); - if (component.Seed != null && component.Seed.CanScream) - { - _audio.PlayPvs(component.Seed.ScreamSound, uid, AudioParams.Default.WithVolume(-2)); - } + public void Update(EntityUid uid, PlantHolderComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; - if (_random.Prob(0.3f)) - component.Sampled = true; + UpdateReagents(uid, component); - // Just in case. - CheckLevelSanity(uid, component); - ForceUpdateByExternalCause(uid, component); + var curTime = _gameTiming.CurTime; - return; - } + if (component.ForceUpdate) + component.ForceUpdate = false; + else if (curTime < (component.LastCycle + component.CycleDelay)) + { + if (component.UpdateSpriteAfterUpdate) + UpdateSprite(uid, component); + return; + } - if (HasComp(args.Used)) - DoHarvest(uid, args.User, component); + component.LastCycle = curTime; - if (TryComp(args.Used, out var produce)) - { - _popupSystem.PopupCursor(Loc.GetString("plant-holder-component-compost-message", - ("owner", uid), - ("usingItem", args.Used)), args.User, PopupType.Medium); - _popupSystem.PopupEntity(Loc.GetString("plant-holder-component-compost-others-message", - ("user", Identity.Entity(args.User, EntityManager)), - ("usingItem", args.Used), - ("owner", uid)), uid, Filter.PvsExcept(args.User), true); + // Process mutations + if (component.MutationLevel > 0) + { + Mutate(uid, Math.Min(component.MutationLevel, 25), component); + component.MutationLevel = 0; + } - if (_solutionSystem.TryGetSolution(args.Used, produce.SolutionName, out var solution2)) - { - if (_solutionSystem.TryGetSolution(uid, component.SoilSolutionName, out var solution1)) - { - // We try to fit as much of the composted plant's contained solution into the hydroponics tray as we can, - // since the plant will be consumed anyway. + // Weeds like water and nutrients! They may appear even if there's not a seed planted. + if (component.WaterLevel > 10 && component.NutritionLevel > 5) + { + var chance = 0f; + if (component.Seed == null) + chance = 0.05f; + else if (component.Seed.TurnIntoKudzu) + chance = 1f; + else + chance = 0.01f; - var fillAmount = FixedPoint2.Min(solution2.Volume, solution1.AvailableVolume); - _solutionSystem.TryAddSolution(uid, solution1, - _solutionSystem.SplitSolution(args.Used, solution2, fillAmount)); + if (_random.Prob(chance)) + component.WeedLevel += 1 + HydroponicsSpeedMultiplier * component.WeedCoefficient; - ForceUpdateByExternalCause(uid, component); - } - } - var seed = produce.Seed; - if (seed != null) - { - var nutrientBonus = seed.Potency / 2.5f; - AdjustNutrient(uid, nutrientBonus, component); - } - EntityManager.QueueDeleteEntity(args.Used); - } + if (component.DrawWarnings) + component.UpdateSpriteAfterUpdate = true; } - private void OnInteractHand(EntityUid uid, PlantHolderComponent component, InteractHandEvent args) + if (component.Seed != null && component.Seed.TurnIntoKudzu + && component.WeedLevel >= component.Seed.WeedHighLevelThreshold) { - DoHarvest(uid, args.User, component); + Spawn(component.Seed.KudzuPrototype, Transform(uid).Coordinates.SnapToGrid(EntityManager)); + component.Seed.TurnIntoKudzu = false; + component.Health = 0; } - public void WeedInvasion() + // There's a chance for a weed explosion to happen if weeds take over. + // Plants that are themselves weeds (WeedTolerance > 8) are unaffected. + if (component.WeedLevel >= 10 && _random.Prob(0.1f)) { - // TODO + if (component.Seed == null || component.WeedLevel >= component.Seed.WeedTolerance + 2) + WeedInvasion(); } - - public void Update(EntityUid uid, PlantHolderComponent? component = null) + // If we have no seed planted, or the plant is dead, stop processing here. + if (component.Seed == null || component.Dead) { - if (!Resolve(uid, ref component)) - return; + if (component.UpdateSpriteAfterUpdate) + UpdateSprite(uid, component); - UpdateReagents(uid, component); + return; + } - var curTime = _gameTiming.CurTime; + // There's a small chance the pest population increases. + // Can only happen when there's a live seed planted. + if (_random.Prob(0.01f)) + { + component.PestLevel += 0.5f * HydroponicsSpeedMultiplier; + if (component.DrawWarnings) + component.UpdateSpriteAfterUpdate = true; + } - if (component.ForceUpdate) - component.ForceUpdate = false; - else if (curTime < (component.LastCycle + component.CycleDelay)) - { - if (component.UpdateSpriteAfterUpdate) - UpdateSprite(uid, component); - return; - } + // Advance plant age here. + if (component.SkipAging > 0) + component.SkipAging--; + else + { + if (_random.Prob(0.8f)) + component.Age += (int) (1 * HydroponicsSpeedMultiplier); - component.LastCycle = curTime; + component.UpdateSpriteAfterUpdate = true; + } - // Process mutations - if (component.MutationLevel > 0) - { - Mutate(uid, Math.Min(component.MutationLevel, 25), component); - component.MutationLevel = 0; - } + // Nutrient consumption. + if (component.Seed.NutrientConsumption > 0 && component.NutritionLevel > 0 && _random.Prob(0.75f)) + { + component.NutritionLevel -= MathF.Max(0f, component.Seed.NutrientConsumption * HydroponicsSpeedMultiplier); + if (component.DrawWarnings) + component.UpdateSpriteAfterUpdate = true; + } - // Weeds like water and nutrients! They may appear even if there's not a seed planted. - if (component.WaterLevel > 10 && component.NutritionLevel > 5) - { - var chance = 0f; - if (component.Seed == null) - chance = 0.05f; - else if (component.Seed.TurnIntoKudzu) - chance = 1f; - else - chance = 0.01f; + // Water consumption. + if (component.Seed.WaterConsumption > 0 && component.WaterLevel > 0 && _random.Prob(0.75f)) + { + component.WaterLevel -= MathF.Max(0f, + component.Seed.WaterConsumption * HydroponicsConsumptionMultiplier * HydroponicsSpeedMultiplier); + if (component.DrawWarnings) + component.UpdateSpriteAfterUpdate = true; + } - if (_random.Prob(chance)) - component.WeedLevel += 1 + HydroponicsSpeedMultiplier * component.WeedCoefficient; + var healthMod = _random.Next(1, 3) * HydroponicsSpeedMultiplier; - if (component.DrawWarnings) - component.UpdateSpriteAfterUpdate = true; - } + // Make sure genetics are viable. + if (!component.Seed.Viable) + { + AffectGrowth(uid, -1, component); + component.Health -= 6 * healthMod; + } - if (component.Seed != null && component.Seed.TurnIntoKudzu - && component.WeedLevel >= component.Seed.WeedHighLevelThreshold) + // Make sure the plant is not starving. + if (_random.Prob(0.35f)) + { + if (component.NutritionLevel > 5) { - Spawn(component.Seed.KudzuPrototype, Transform(uid).Coordinates.SnapToGrid(EntityManager)); - component.Seed.TurnIntoKudzu = false; - component.Health = 0; + component.Health += healthMod; } - - // There's a chance for a weed explosion to happen if weeds take over. - // Plants that are themselves weeds (WeedTolerance > 8) are unaffected. - if (component.WeedLevel >= 10 && _random.Prob(0.1f)) + else { - if (component.Seed == null || component.WeedLevel >= component.Seed.WeedTolerance + 2) - WeedInvasion(); + AffectGrowth(uid, -1, component); + component.Health -= healthMod; } - // If we have no seed planted, or the plant is dead, stop processing here. - if (component.Seed == null || component.Dead) - { - if (component.UpdateSpriteAfterUpdate) - UpdateSprite(uid, component); - - return; - } + if (component.DrawWarnings) + component.UpdateSpriteAfterUpdate = true; + } - // There's a small chance the pest population increases. - // Can only happen when there's a live seed planted. - if (_random.Prob(0.01f)) + // Make sure the plant is not thirsty. + if (_random.Prob(0.35f)) + { + if (component.WaterLevel > 10) { - component.PestLevel += 0.5f * HydroponicsSpeedMultiplier; - if (component.DrawWarnings) - component.UpdateSpriteAfterUpdate = true; + component.Health += healthMod; } - - // Advance plant age here. - if (component.SkipAging > 0) - component.SkipAging--; else { - if (_random.Prob(0.8f)) - component.Age += (int) (1 * HydroponicsSpeedMultiplier); - - component.UpdateSpriteAfterUpdate = true; - } - - // Nutrient consumption. - if (component.Seed.NutrientConsumption > 0 && component.NutritionLevel > 0 && _random.Prob(0.75f)) - { - component.NutritionLevel -= MathF.Max(0f, component.Seed.NutrientConsumption * HydroponicsSpeedMultiplier); - if (component.DrawWarnings) - component.UpdateSpriteAfterUpdate = true; + AffectGrowth(uid, -1, component); + component.Health -= healthMod; } - // Water consumption. - if (component.Seed.WaterConsumption > 0 && component.WaterLevel > 0 && _random.Prob(0.75f)) - { - component.WaterLevel -= MathF.Max(0f, - component.Seed.WaterConsumption * HydroponicsConsumptionMultiplier * HydroponicsSpeedMultiplier); - if (component.DrawWarnings) - component.UpdateSpriteAfterUpdate = true; - } + if (component.DrawWarnings) + component.UpdateSpriteAfterUpdate = true; + } - var healthMod = _random.Next(1, 3) * HydroponicsSpeedMultiplier; + var environment = _atmosphere.GetContainingMixture(uid, true, true) ?? GasMixture.SpaceGas; - // Make sure genetics are viable. - if (!component.Seed.Viable) - { - AffectGrowth(uid, -1, component); - component.Health -= 6 * healthMod; - } + if (component.Seed.ConsumeGasses.Count > 0) + { + component.MissingGas = 0; - // Make sure the plant is not starving. - if (_random.Prob(0.35f)) + foreach (var (gas, amount) in component.Seed.ConsumeGasses) { - if (component.NutritionLevel > 5) + if (environment.GetMoles(gas) < amount) { - component.Health += healthMod; - } - else - { - AffectGrowth(uid, -1, component); - component.Health -= healthMod; + component.MissingGas++; + continue; } - if (component.DrawWarnings) - component.UpdateSpriteAfterUpdate = true; + environment.AdjustMoles(gas, -amount); } - // Make sure the plant is not thirsty. - if (_random.Prob(0.35f)) + if (component.MissingGas > 0) { - if (component.WaterLevel > 10) - { - component.Health += healthMod; - } - else - { - AffectGrowth(uid, -1, component); - component.Health -= healthMod; - } - + component.Health -= component.MissingGas * HydroponicsSpeedMultiplier; if (component.DrawWarnings) component.UpdateSpriteAfterUpdate = true; } + } - var environment = _atmosphere.GetContainingMixture(uid, true, true) ?? GasMixture.SpaceGas; - - if (component.Seed.ConsumeGasses.Count > 0) - { - component.MissingGas = 0; - - foreach (var (gas, amount) in component.Seed.ConsumeGasses) - { - if (environment.GetMoles(gas) < amount) - { - component.MissingGas++; - continue; - } - - environment.AdjustMoles(gas, -amount); - } + // SeedPrototype pressure resistance. + var pressure = environment.Pressure; + if (pressure < component.Seed.LowPressureTolerance || pressure > component.Seed.HighPressureTolerance) + { + component.Health -= healthMod; + component.ImproperPressure = true; + if (component.DrawWarnings) + component.UpdateSpriteAfterUpdate = true; + } + else + { + component.ImproperPressure = false; + } - if (component.MissingGas > 0) - { - component.Health -= component.MissingGas * HydroponicsSpeedMultiplier; - if (component.DrawWarnings) - component.UpdateSpriteAfterUpdate = true; - } - } + // SeedPrototype ideal temperature. + if (MathF.Abs(environment.Temperature - component.Seed.IdealHeat) > component.Seed.HeatTolerance) + { + component.Health -= healthMod; + component.ImproperHeat = true; + if (component.DrawWarnings) + component.UpdateSpriteAfterUpdate = true; + } + else + { + component.ImproperHeat = false; + } - // SeedPrototype pressure resistance. - var pressure = environment.Pressure; - if (pressure < component.Seed.LowPressureTolerance || pressure > component.Seed.HighPressureTolerance) - { - component.Health -= healthMod; - component.ImproperPressure = true; - if (component.DrawWarnings) - component.UpdateSpriteAfterUpdate = true; - } - else + // Gas production. + var exudeCount = component.Seed.ExudeGasses.Count; + if (exudeCount > 0) + { + foreach (var (gas, amount) in component.Seed.ExudeGasses) { - component.ImproperPressure = false; + environment.AdjustMoles(gas, + MathF.Max(1f, MathF.Round(amount * MathF.Round(component.Seed.Potency) / exudeCount))); } + } - // SeedPrototype ideal temperature. - if (MathF.Abs(environment.Temperature - component.Seed.IdealHeat) > component.Seed.HeatTolerance) - { - component.Health -= healthMod; - component.ImproperHeat = true; - if (component.DrawWarnings) - component.UpdateSpriteAfterUpdate = true; - } - else + // Toxin levels beyond the plant's tolerance cause damage. + // They are, however, slowly reduced over time. + if (component.Toxins > 0) + { + var toxinUptake = MathF.Max(1, MathF.Round(component.Toxins / 10f)); + if (component.Toxins > component.Seed.ToxinsTolerance) { - component.ImproperHeat = false; + component.Health -= toxinUptake; } - // Gas production. - var exudeCount = component.Seed.ExudeGasses.Count; - if (exudeCount > 0) - { - foreach (var (gas, amount) in component.Seed.ExudeGasses) - { - environment.AdjustMoles(gas, - MathF.Max(1f, MathF.Round(amount * MathF.Round(component.Seed.Potency) / exudeCount))); - } - } + component.Toxins -= toxinUptake; + if (component.DrawWarnings) + component.UpdateSpriteAfterUpdate = true; + } - // Toxin levels beyond the plant's tolerance cause damage. - // They are, however, slowly reduced over time. - if (component.Toxins > 0) + // Weed levels. + if (component.PestLevel > 0) + { + // TODO: Carnivorous plants? + if (component.PestLevel > component.Seed.PestTolerance) { - var toxinUptake = MathF.Max(1, MathF.Round(component.Toxins / 10f)); - if (component.Toxins > component.Seed.ToxinsTolerance) - { - component.Health -= toxinUptake; - } - - component.Toxins -= toxinUptake; - if (component.DrawWarnings) - component.UpdateSpriteAfterUpdate = true; + component.Health -= HydroponicsSpeedMultiplier; } - // Weed levels. - if (component.PestLevel > 0) - { - // TODO: Carnivorous plants? - if (component.PestLevel > component.Seed.PestTolerance) - { - component.Health -= HydroponicsSpeedMultiplier; - } - - if (component.DrawWarnings) - component.UpdateSpriteAfterUpdate = true; - } + if (component.DrawWarnings) + component.UpdateSpriteAfterUpdate = true; + } - // Weed levels. - if (component.WeedLevel > 0) + // Weed levels. + if (component.WeedLevel > 0) + { + // TODO: Parasitic plants. + if (component.WeedLevel >= component.Seed.WeedTolerance) { - // TODO: Parasitic plants. - if (component.WeedLevel >= component.Seed.WeedTolerance) - { - component.Health -= HydroponicsSpeedMultiplier; - } - - if (component.DrawWarnings) - component.UpdateSpriteAfterUpdate = true; + component.Health -= HydroponicsSpeedMultiplier; } - if (component.Age > component.Seed.Lifespan) - { - component.Health -= _random.Next(3, 5) * HydroponicsSpeedMultiplier; - if (component.DrawWarnings) - component.UpdateSpriteAfterUpdate = true; - } - else if (component.Age < 0) // Revert back to seed packet! - { - // will put it in the trays hands if it has any, please do not try doing this - _botanySystem.SpawnSeedPacket(component.Seed, Transform(uid).Coordinates, uid); - RemovePlant(uid, component); - component.ForceUpdate = true; - Update(uid, component); - } + if (component.DrawWarnings) + component.UpdateSpriteAfterUpdate = true; + } - CheckHealth(uid, component); + if (component.Age > component.Seed.Lifespan) + { + component.Health -= _random.Next(3, 5) * HydroponicsSpeedMultiplier; + if (component.DrawWarnings) + component.UpdateSpriteAfterUpdate = true; + } + else if (component.Age < 0) // Revert back to seed packet! + { + // will put it in the trays hands if it has any, please do not try doing this + _botany.SpawnSeedPacket(component.Seed, Transform(uid).Coordinates, uid); + RemovePlant(uid, component); + component.ForceUpdate = true; + Update(uid, component); + } + + CheckHealth(uid, component); - if (component.Harvest && component.Seed.HarvestRepeat == HarvestType.SelfHarvest) - AutoHarvest(uid, component); + if (component.Harvest && component.Seed.HarvestRepeat == HarvestType.SelfHarvest) + AutoHarvest(uid, component); - // If enough time has passed since the plant was harvested, we're ready to harvest again! - if (!component.Dead && component.Seed.ProductPrototypes.Count > 0) + // If enough time has passed since the plant was harvested, we're ready to harvest again! + if (!component.Dead && component.Seed.ProductPrototypes.Count > 0) + { + if (component.Age > component.Seed.Production) { - if (component.Age > component.Seed.Production) + if (component.Age - component.LastProduce > component.Seed.Production && !component.Harvest) { - if (component.Age - component.LastProduce > component.Seed.Production && !component.Harvest) - { - component.Harvest = true; - component.LastProduce = component.Age; - } + component.Harvest = true; + component.LastProduce = component.Age; } - else + } + else + { + if (component.Harvest) { - if (component.Harvest) - { - component.Harvest = false; - component.LastProduce = component.Age; - } + component.Harvest = false; + component.LastProduce = component.Age; } } + } - CheckLevelSanity(uid, component); - - if (component.Seed.Sentient) - { - var ghostRole = EnsureComp(uid); - EnsureComp(uid); - ghostRole.RoleName = MetaData(uid).EntityName; - ghostRole.RoleDescription = Loc.GetString("station-event-random-sentience-role-description", ("name", ghostRole.RoleName)); - } + CheckLevelSanity(uid, component); - if (component.UpdateSpriteAfterUpdate) - UpdateSprite(uid, component); + if (component.Seed.Sentient) + { + var ghostRole = EnsureComp(uid); + EnsureComp(uid); + ghostRole.RoleName = MetaData(uid).EntityName; + ghostRole.RoleDescription = Loc.GetString("station-event-random-sentience-role-description", ("name", ghostRole.RoleName)); } - //TODO: kill this bullshit - public void CheckLevelSanity(EntityUid uid, PlantHolderComponent? component = null) - { - if (!Resolve(uid, ref component)) - return; + if (component.UpdateSpriteAfterUpdate) + UpdateSprite(uid, component); + } - if (component.Seed != null) - component.Health = MathHelper.Clamp(component.Health, 0, component.Seed.Endurance); - else - { - component.Health = 0f; - component.Dead = false; - } + //TODO: kill this bullshit + public void CheckLevelSanity(EntityUid uid, PlantHolderComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; - component.MutationLevel = MathHelper.Clamp(component.MutationLevel, 0f, 100f); - component.NutritionLevel = MathHelper.Clamp(component.NutritionLevel, 0f, 100f); - component.WaterLevel = MathHelper.Clamp(component.WaterLevel, 0f, 100f); - component.PestLevel = MathHelper.Clamp(component.PestLevel, 0f, 10f); - component.WeedLevel = MathHelper.Clamp(component.WeedLevel, 0f, 10f); - component.Toxins = MathHelper.Clamp(component.Toxins, 0f, 100f); - component.YieldMod = MathHelper.Clamp(component.YieldMod, 0, 2); - component.MutationMod = MathHelper.Clamp(component.MutationMod, 0f, 3f); + if (component.Seed != null) + component.Health = MathHelper.Clamp(component.Health, 0, component.Seed.Endurance); + else + { + component.Health = 0f; + component.Dead = false; } - public bool DoHarvest(EntityUid plantholder, EntityUid user, PlantHolderComponent? component = null) - { - if (!Resolve(plantholder, ref component)) - return false; + component.MutationLevel = MathHelper.Clamp(component.MutationLevel, 0f, 100f); + component.NutritionLevel = MathHelper.Clamp(component.NutritionLevel, 0f, 100f); + component.WaterLevel = MathHelper.Clamp(component.WaterLevel, 0f, 100f); + component.PestLevel = MathHelper.Clamp(component.PestLevel, 0f, 10f); + component.WeedLevel = MathHelper.Clamp(component.WeedLevel, 0f, 10f); + component.Toxins = MathHelper.Clamp(component.Toxins, 0f, 100f); + component.YieldMod = MathHelper.Clamp(component.YieldMod, 0, 2); + component.MutationMod = MathHelper.Clamp(component.MutationMod, 0f, 3f); + } - if (component.Seed == null || Deleted(user)) - return false; + public bool DoHarvest(EntityUid plantholder, EntityUid user, PlantHolderComponent? component = null) + { + if (!Resolve(plantholder, ref component)) + return false; + + if (component.Seed == null || Deleted(user)) + return false; - if (component.Harvest && !component.Dead) + if (component.Harvest && !component.Dead) + { + if (TryComp(user, out var hands)) { - if (TryComp(user, out var hands)) - { - if (!_botanySystem.CanHarvest(component.Seed, hands.ActiveHandEntity)) - return false; - } - else if (!_botanySystem.CanHarvest(component.Seed)) - { + if (!_botany.CanHarvest(component.Seed, hands.ActiveHandEntity)) return false; - } - - _botanySystem.Harvest(component.Seed, user, component.YieldMod); - AfterHarvest(plantholder, component); - return true; } - - if (!component.Dead) + else if (!_botany.CanHarvest(component.Seed)) + { return false; + } - RemovePlant(plantholder, component); + _botany.Harvest(component.Seed, user, component.YieldMod); AfterHarvest(plantholder, component); return true; } - public void AutoHarvest(EntityUid uid, PlantHolderComponent? component = null) - { - if (!Resolve(uid, ref component)) - return; + if (!component.Dead) + return false; - if (component.Seed == null || !component.Harvest) - return; + RemovePlant(plantholder, component); + AfterHarvest(plantholder, component); + return true; + } - _botanySystem.AutoHarvest(component.Seed, Transform(uid).Coordinates); - AfterHarvest(uid, component); - } + public void AutoHarvest(EntityUid uid, PlantHolderComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; - private void AfterHarvest(EntityUid uid, PlantHolderComponent? component = null) - { - if (!Resolve(uid, ref component)) - return; + if (component.Seed == null || !component.Harvest) + return; - component.Harvest = false; - component.LastProduce = component.Age; + _botany.AutoHarvest(component.Seed, Transform(uid).Coordinates); + AfterHarvest(uid, component); + } - if (component.Seed != null && component.Seed.CanScream) - _audio.PlayPvs(component.Seed.ScreamSound, uid, AudioParams.Default.WithVolume(-2)); + private void AfterHarvest(EntityUid uid, PlantHolderComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; - if (component.Seed?.HarvestRepeat == HarvestType.NoRepeat) - RemovePlant(uid, component); + component.Harvest = false; + component.LastProduce = component.Age; - CheckLevelSanity(uid, component); - UpdateSprite(uid, component); - } + if (component.Seed != null && component.Seed.CanScream) + _audio.PlayPvs(component.Seed.ScreamSound, uid, AudioParams.Default.WithVolume(-2)); - public void CheckHealth(EntityUid uid, PlantHolderComponent? component = null) - { - if (!Resolve(uid, ref component)) - return; + if (component.Seed?.HarvestRepeat == HarvestType.NoRepeat) + RemovePlant(uid, component); - if (component.Health <= 0) - { - Die(uid, component); - } - } + CheckLevelSanity(uid, component); + UpdateSprite(uid, component); + } - public void Die(EntityUid uid, PlantHolderComponent? component = null) - { - if (!Resolve(uid, ref component)) - return; + public void CheckHealth(EntityUid uid, PlantHolderComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; - component.Dead = true; - component.Harvest = false; - component.MutationLevel = 0; - component.YieldMod = 1; - component.MutationMod = 1; - component.ImproperLight = false; - component.ImproperHeat = false; - component.ImproperPressure = false; - component.WeedLevel += 1 * HydroponicsSpeedMultiplier; - component.PestLevel = 0; - UpdateSprite(uid, component); + if (component.Health <= 0) + { + Die(uid, component); } + } - public void RemovePlant(EntityUid uid, PlantHolderComponent? component = null) - { - if (!Resolve(uid, ref component)) - return; + public void Die(EntityUid uid, PlantHolderComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; + + component.Dead = true; + component.Harvest = false; + component.MutationLevel = 0; + component.YieldMod = 1; + component.MutationMod = 1; + component.ImproperLight = false; + component.ImproperHeat = false; + component.ImproperPressure = false; + component.WeedLevel += 1 * HydroponicsSpeedMultiplier; + component.PestLevel = 0; + UpdateSprite(uid, component); + } - component.YieldMod = 1; - component.MutationMod = 1; - component.PestLevel = 0; - component.Seed = null; - component.Dead = false; - component.Age = 0; - component.Sampled = false; - component.Harvest = false; - component.ImproperLight = false; - component.ImproperPressure = false; - component.ImproperHeat = false; + public void RemovePlant(EntityUid uid, PlantHolderComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; + + component.YieldMod = 1; + component.MutationMod = 1; + component.PestLevel = 0; + component.Seed = null; + component.Dead = false; + component.Age = 0; + component.Sampled = false; + component.Harvest = false; + component.ImproperLight = false; + component.ImproperPressure = false; + component.ImproperHeat = false; + + UpdateSprite(uid, component); + } - UpdateSprite(uid, component); - } + public void AffectGrowth(EntityUid uid, int amount, PlantHolderComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; + + if (component.Seed == null) + return; - public void AffectGrowth(EntityUid uid, int amount, PlantHolderComponent? component = null) + if (amount > 0) { - if (!Resolve(uid, ref component)) - return; + if (component.Age < component.Seed.Maturation) + component.Age += amount; + else if (!component.Harvest && component.Seed.Yield <= 0f) + component.LastProduce -= amount; + } + else + { + if (component.Age < component.Seed.Maturation) + component.SkipAging++; + else if (!component.Harvest && component.Seed.Yield <= 0f) + component.LastProduce += amount; + } + } - if (component.Seed == null) - return; + public void AdjustNutrient(EntityUid uid, float amount, PlantHolderComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; - if (amount > 0) - { - if (component.Age < component.Seed.Maturation) - component.Age += amount; - else if (!component.Harvest && component.Seed.Yield <= 0f) - component.LastProduce -= amount; - } - else - { - if (component.Age < component.Seed.Maturation) - component.SkipAging++; - else if (!component.Harvest && component.Seed.Yield <= 0f) - component.LastProduce += amount; - } - } + component.NutritionLevel += amount; + } - public void AdjustNutrient(EntityUid uid, float amount, PlantHolderComponent? component = null) - { - if (!Resolve(uid, ref component)) - return; + public void AdjustWater(EntityUid uid, float amount, PlantHolderComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; - component.NutritionLevel += amount; - } + component.WaterLevel += amount; - public void AdjustWater(EntityUid uid, float amount, PlantHolderComponent? component = null) + // Water dilutes toxins. + if (amount > 0) { - if (!Resolve(uid, ref component)) - return; + component.Toxins -= amount * 4f; + } + } + + public void UpdateReagents(EntityUid uid, PlantHolderComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; - component.WaterLevel += amount; + if (!_solutionSystem.TryGetSolution(uid, component.SoilSolutionName, out var solution)) + return; - // Water dilutes toxins. - if (amount > 0) + if (solution.Volume > 0 && component.MutationLevel < 25) + { + var amt = FixedPoint2.New(1); + foreach (var entry in _solutionSystem.RemoveEachReagent(uid, solution, amt)) { - component.Toxins -= amount * 4f; + var reagentProto = _prototype.Index(entry.Reagent.Prototype); + reagentProto.ReactionPlant(uid, entry, solution); } } - public void UpdateReagents(EntityUid uid, PlantHolderComponent? component = null) + CheckLevelSanity(uid, component); + } + + private void Mutate(EntityUid uid, float severity, PlantHolderComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; + + if (component.Seed != null) { - if (!Resolve(uid, ref component)) - return; + EnsureUniqueSeed(uid, component); + _mutation.MutateSeed(component.Seed, severity); + } + } - if (!_solutionSystem.TryGetSolution(uid, component.SoilSolutionName, out var solution)) - return; + public void UpdateSprite(EntityUid uid, PlantHolderComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; - if (solution.Volume > 0 && component.MutationLevel < 25) - { - var amt = FixedPoint2.New(1); - foreach (var (reagentId, quantity) in _solutionSystem.RemoveEachReagent(uid, solution, amt)) - { - var reagentProto = _prototype.Index(reagentId); - reagentProto.ReactionPlant(uid, new Solution.ReagentQuantity(reagentId, quantity), solution); - } - } + component.UpdateSpriteAfterUpdate = false; - CheckLevelSanity(uid, component); + if (component.Seed != null && component.Seed.Bioluminescent) + { + var light = EnsureComp(uid); + _pointLight.SetRadius(uid, component.Seed.BioluminescentRadius, light); + _pointLight.SetColor(uid, component.Seed.BioluminescentColor, light); + _pointLight.SetCastShadows(uid, false, light); + Dirty(uid, light); } - - private void Mutate(EntityUid uid, float severity, PlantHolderComponent? component = null) + else { - if (!Resolve(uid, ref component)) - return; - - if (component.Seed != null) - { - EnsureUniqueSeed(uid, component); - _mutation.MutateSeed(component.Seed, severity); - } + RemComp(uid); } - public void UpdateSprite(EntityUid uid, PlantHolderComponent? component = null) - { - if (!Resolve(uid, ref component)) - return; + if (!TryComp(uid, out var app)) + return; - component.UpdateSpriteAfterUpdate = false; + if (component.Seed != null) + { + if (component.DrawWarnings) + { + _appearance.SetData(uid, PlantHolderVisuals.HealthLight, component.Health <= component.Seed.Endurance / 2f); + } - if (component.Seed != null && component.Seed.Bioluminescent) + if (component.Dead) { - var light = EnsureComp(uid); - light.Radius = component.Seed.BioluminescentRadius; - light.Color = component.Seed.BioluminescentColor; - light.CastShadows = false; // this is expensive, and botanists make lots of plants - Dirty(light); + _appearance.SetData(uid, PlantHolderVisuals.PlantRsi, component.Seed.PlantRsi.ToString(), app); + _appearance.SetData(uid, PlantHolderVisuals.PlantState, "dead", app); } - else + else if (component.Harvest) { - RemComp(uid); + _appearance.SetData(uid, PlantHolderVisuals.PlantRsi, component.Seed.PlantRsi.ToString(), app); + _appearance.SetData(uid, PlantHolderVisuals.PlantState, "harvest", app); } - - if (!TryComp(uid, out var app)) - return; - - if (component.Seed != null) + else if (component.Age < component.Seed.Maturation) { - if (component.DrawWarnings) - { - _appearance.SetData(uid, PlantHolderVisuals.HealthLight, component.Health <= component.Seed.Endurance / 2f); - } - - if (component.Dead) - { - _appearance.SetData(uid, PlantHolderVisuals.PlantRsi, component.Seed.PlantRsi.ToString(), app); - _appearance.SetData(uid, PlantHolderVisuals.PlantState, "dead", app); - } - else if (component.Harvest) - { - _appearance.SetData(uid, PlantHolderVisuals.PlantRsi, component.Seed.PlantRsi.ToString(), app); - _appearance.SetData(uid, PlantHolderVisuals.PlantState, "harvest", app); - } - else if (component.Age < component.Seed.Maturation) - { - var growthStage = Math.Max(1, (int) (component.Age * component.Seed.GrowthStages / component.Seed.Maturation)); + var growthStage = Math.Max(1, (int) (component.Age * component.Seed.GrowthStages / component.Seed.Maturation)); - _appearance.SetData(uid, PlantHolderVisuals.PlantRsi, component.Seed.PlantRsi.ToString(), app); - _appearance.SetData(uid, PlantHolderVisuals.PlantState, $"stage-{growthStage}", app); - component.LastProduce = component.Age; - } - else - { - _appearance.SetData(uid, PlantHolderVisuals.PlantRsi, component.Seed.PlantRsi.ToString(), app); - _appearance.SetData(uid, PlantHolderVisuals.PlantState, $"stage-{component.Seed.GrowthStages}", app); - } + _appearance.SetData(uid, PlantHolderVisuals.PlantRsi, component.Seed.PlantRsi.ToString(), app); + _appearance.SetData(uid, PlantHolderVisuals.PlantState, $"stage-{growthStage}", app); + component.LastProduce = component.Age; } else { - _appearance.SetData(uid, PlantHolderVisuals.PlantState, "", app); - _appearance.SetData(uid, PlantHolderVisuals.HealthLight, false, app); + _appearance.SetData(uid, PlantHolderVisuals.PlantRsi, component.Seed.PlantRsi.ToString(), app); + _appearance.SetData(uid, PlantHolderVisuals.PlantState, $"stage-{component.Seed.GrowthStages}", app); } + } + else + { + _appearance.SetData(uid, PlantHolderVisuals.PlantState, "", app); + _appearance.SetData(uid, PlantHolderVisuals.HealthLight, false, app); + } - if (!component.DrawWarnings) - return; + if (!component.DrawWarnings) + return; - _appearance.SetData(uid, PlantHolderVisuals.WaterLight, component.WaterLevel <= 15, app); - _appearance.SetData(uid, PlantHolderVisuals.NutritionLight, component.NutritionLevel <= 8, app); - _appearance.SetData(uid, PlantHolderVisuals.AlertLight, - component.WeedLevel >= 5 || component.PestLevel >= 5 || component.Toxins >= 40 || component.ImproperHeat || - component.ImproperLight || component.ImproperPressure || component.MissingGas > 0, app); - _appearance.SetData(uid, PlantHolderVisuals.HarvestLight, component.Harvest, app); - } + _appearance.SetData(uid, PlantHolderVisuals.WaterLight, component.WaterLevel <= 15, app); + _appearance.SetData(uid, PlantHolderVisuals.NutritionLight, component.NutritionLevel <= 8, app); + _appearance.SetData(uid, PlantHolderVisuals.AlertLight, + component.WeedLevel >= 5 || component.PestLevel >= 5 || component.Toxins >= 40 || component.ImproperHeat || + component.ImproperLight || component.ImproperPressure || component.MissingGas > 0, app); + _appearance.SetData(uid, PlantHolderVisuals.HarvestLight, component.Harvest, app); + } - /// - /// Check if the currently contained seed is unique. If it is not, clone it so that we have a unique seed. - /// Necessary to avoid modifying global seeds. - /// - public void EnsureUniqueSeed(EntityUid uid, PlantHolderComponent? component = null) - { - if (!Resolve(uid, ref component)) - return; + /// + /// Check if the currently contained seed is unique. If it is not, clone it so that we have a unique seed. + /// Necessary to avoid modifying global seeds. + /// + public void EnsureUniqueSeed(EntityUid uid, PlantHolderComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; - if (component.Seed is { Unique: false }) - component.Seed = component.Seed.Clone(); - } + if (component.Seed is { Unique: false }) + component.Seed = component.Seed.Clone(); + } - public void ForceUpdateByExternalCause(EntityUid uid, PlantHolderComponent? component = null) - { - if (!Resolve(uid, ref component)) - return; + public void ForceUpdateByExternalCause(EntityUid uid, PlantHolderComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; - component.SkipAging++; // We're forcing an update cycle, so one age hasn't passed. - component.ForceUpdate = true; - Update(uid, component); - } + component.SkipAging++; // We're forcing an update cycle, so one age hasn't passed. + component.ForceUpdate = true; + Update(uid, component); } } diff --git a/Content.Server/Camera/CameraRecoilSystem.cs b/Content.Server/Camera/CameraRecoilSystem.cs index 0022ce3214f..ddf47fca794 100644 --- a/Content.Server/Camera/CameraRecoilSystem.cs +++ b/Content.Server/Camera/CameraRecoilSystem.cs @@ -8,8 +8,9 @@ public sealed class CameraRecoilSystem : SharedCameraRecoilSystem { public override void KickCamera(EntityUid euid, Vector2 kickback, CameraRecoilComponent? component = null) { - if (!Resolve(euid, ref component, false)) return; + if (!Resolve(euid, ref component, false)) + return; - RaiseNetworkEvent(new CameraKickEvent(euid, kickback), euid); + RaiseNetworkEvent(new CameraKickEvent(GetNetEntity(euid), kickback), euid); } } diff --git a/Content.Server/CardboardBox/CardboardBoxSystem.cs b/Content.Server/CardboardBox/CardboardBoxSystem.cs index b3f2aa561c2..df9743a21a6 100644 --- a/Content.Server/CardboardBox/CardboardBoxSystem.cs +++ b/Content.Server/CardboardBox/CardboardBoxSystem.cs @@ -73,7 +73,7 @@ private void BeforeStorageOpen(EntityUid uid, CardboardBoxComponent component, r { if (_timing.CurTime > component.EffectCooldown) { - RaiseNetworkEvent(new PlayBoxEffectMessage(uid, component.Mover.Value)); + RaiseNetworkEvent(new PlayBoxEffectMessage(GetNetEntity(uid), GetNetEntity(component.Mover.Value))); _audio.PlayPvs(component.EffectSound, uid); component.EffectCooldown = _timing.CurTime + component.CooldownDuration; } diff --git a/Content.Server/Cargo/Components/CargoBountyLabelComponent.cs b/Content.Server/Cargo/Components/CargoBountyLabelComponent.cs index 8c907bf84c1..b38fe2ad5e0 100644 --- a/Content.Server/Cargo/Components/CargoBountyLabelComponent.cs +++ b/Content.Server/Cargo/Components/CargoBountyLabelComponent.cs @@ -5,7 +5,7 @@ /// containing goods for fulfilling bounties. /// [RegisterComponent] -public sealed class CargoBountyLabelComponent : Component +public sealed partial class CargoBountyLabelComponent : Component { /// /// The ID for the bounty this label corresponds to. diff --git a/Content.Server/Cargo/Components/CargoOrderConsoleComponent.cs b/Content.Server/Cargo/Components/CargoOrderConsoleComponent.cs index 419f00793cb..1c418c9cc70 100644 --- a/Content.Server/Cargo/Components/CargoOrderConsoleComponent.cs +++ b/Content.Server/Cargo/Components/CargoOrderConsoleComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Cargo.Components /// Handles sending order requests to cargo. Doesn't handle orders themselves via shuttle or telepads. /// [RegisterComponent] - public sealed class CargoOrderConsoleComponent : Component + public sealed partial class CargoOrderConsoleComponent : Component { [DataField("soundError")] public SoundSpecifier ErrorSound = new SoundPathSpecifier("/Audio/Effects/Cargo/buzz_sigh.ogg"); diff --git a/Content.Server/Cargo/Components/CargoPalletComponent.cs b/Content.Server/Cargo/Components/CargoPalletComponent.cs index 24fd2eda9e5..ebf0be93e0c 100644 --- a/Content.Server/Cargo/Components/CargoPalletComponent.cs +++ b/Content.Server/Cargo/Components/CargoPalletComponent.cs @@ -4,4 +4,4 @@ namespace Content.Server.Cargo.Components; /// Any entities intersecting when a shuttle is recalled will be sold. /// [RegisterComponent] -public sealed class CargoPalletComponent : Component {} +public sealed partial class CargoPalletComponent : Component {} diff --git a/Content.Server/Cargo/Components/CargoPalletConsoleComponent.cs b/Content.Server/Cargo/Components/CargoPalletConsoleComponent.cs index 86102bb846f..6092ea0c3ed 100644 --- a/Content.Server/Cargo/Components/CargoPalletConsoleComponent.cs +++ b/Content.Server/Cargo/Components/CargoPalletConsoleComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Cargo.Components; [RegisterComponent] [Access(typeof(CargoSystem))] -public sealed class CargoPalletConsoleComponent : Component +public sealed partial class CargoPalletConsoleComponent : Component { [ViewVariables(VVAccess.ReadWrite), DataField("cashType", customTypeSerializer:typeof(PrototypeIdSerializer))] public string CashType = "Credit"; diff --git a/Content.Server/Cargo/Components/CargoSellBlacklistComponent.cs b/Content.Server/Cargo/Components/CargoSellBlacklistComponent.cs index 757c86890ec..9cbaa4a15b6 100644 --- a/Content.Server/Cargo/Components/CargoSellBlacklistComponent.cs +++ b/Content.Server/Cargo/Components/CargoSellBlacklistComponent.cs @@ -4,6 +4,6 @@ /// Marks an entity as unable to be sold through the cargo shuttle. /// [RegisterComponent] -public sealed class CargoSellBlacklistComponent : Component +public sealed partial class CargoSellBlacklistComponent : Component { } diff --git a/Content.Server/Cargo/Components/CargoShuttleConsoleComponent.cs b/Content.Server/Cargo/Components/CargoShuttleConsoleComponent.cs index e247b917a55..2f6172601ab 100644 --- a/Content.Server/Cargo/Components/CargoShuttleConsoleComponent.cs +++ b/Content.Server/Cargo/Components/CargoShuttleConsoleComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Cargo.Components; [RegisterComponent] -public sealed class CargoShuttleConsoleComponent : Component +public sealed partial class CargoShuttleConsoleComponent : Component { [ViewVariables(VVAccess.ReadWrite), DataField("soundDeny")] public SoundSpecifier DenySound = new SoundPathSpecifier("/Audio/Effects/Cargo/buzz_two.ogg"); diff --git a/Content.Server/Cargo/Components/MobPriceComponent.cs b/Content.Server/Cargo/Components/MobPriceComponent.cs index 895ef55aa8d..ee9f53d0871 100644 --- a/Content.Server/Cargo/Components/MobPriceComponent.cs +++ b/Content.Server/Cargo/Components/MobPriceComponent.cs @@ -4,7 +4,7 @@ /// This is used for calculating the price of mobs. /// [RegisterComponent] -public sealed class MobPriceComponent : Component +public sealed partial class MobPriceComponent : Component { /// /// How much of a penalty per part there should be. This is a multiplier for a multiplier, the penalty for each body part is calculated from the total number of slots, and then multiplied by this. diff --git a/Content.Server/Cargo/Components/PriceGunComponent.cs b/Content.Server/Cargo/Components/PriceGunComponent.cs index ca3d1d47702..7207beae999 100644 --- a/Content.Server/Cargo/Components/PriceGunComponent.cs +++ b/Content.Server/Cargo/Components/PriceGunComponent.cs @@ -4,7 +4,7 @@ /// This is used for the price gun, which calculates the price of any object it appraises. /// [RegisterComponent] -public sealed class PriceGunComponent : Component +public sealed partial class PriceGunComponent : Component { } diff --git a/Content.Server/Cargo/Components/StationBankAccountComponent.cs b/Content.Server/Cargo/Components/StationBankAccountComponent.cs index d04f55dc744..43aaf7689ad 100644 --- a/Content.Server/Cargo/Components/StationBankAccountComponent.cs +++ b/Content.Server/Cargo/Components/StationBankAccountComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Cargo.Components; /// Added to the abstract representation of a station to track its money. /// [RegisterComponent, Access(typeof(SharedCargoSystem))] -public sealed class StationBankAccountComponent : Component +public sealed partial class StationBankAccountComponent : Component { [ViewVariables(VVAccess.ReadWrite), DataField("balance")] public int Balance = 8000; diff --git a/Content.Server/Cargo/Components/StationCargoBountyDatabaseComponent.cs b/Content.Server/Cargo/Components/StationCargoBountyDatabaseComponent.cs index f043810023e..d94c2995e3d 100644 --- a/Content.Server/Cargo/Components/StationCargoBountyDatabaseComponent.cs +++ b/Content.Server/Cargo/Components/StationCargoBountyDatabaseComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Cargo.Components; /// Stores all active cargo bounties for a particular station. /// [RegisterComponent] -public sealed class StationCargoBountyDatabaseComponent : Component +public sealed partial class StationCargoBountyDatabaseComponent : Component { /// /// Maximum amount of bounties a station can have. diff --git a/Content.Server/Cargo/Components/StationCargoOrderDatabaseComponent.cs b/Content.Server/Cargo/Components/StationCargoOrderDatabaseComponent.cs index 5ec104ac5ca..6c19dbc4a2a 100644 --- a/Content.Server/Cargo/Components/StationCargoOrderDatabaseComponent.cs +++ b/Content.Server/Cargo/Components/StationCargoOrderDatabaseComponent.cs @@ -8,7 +8,7 @@ namespace Content.Server.Cargo.Components; /// Stores all of cargo orders for a particular station. /// [RegisterComponent] -public sealed class StationCargoOrderDatabaseComponent : Component +public sealed partial class StationCargoOrderDatabaseComponent : Component { /// /// Maximum amount of orders a station is allowed, approved or not. diff --git a/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs b/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs index 30c666cdd08..be8f54dfeef 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs @@ -9,7 +9,6 @@ using Content.Shared.Database; using JetBrains.Annotations; using Robust.Server.Containers; -using Robust.Server.GameObjects; using Robust.Shared.Collections; using Robust.Shared.Containers; using Robust.Shared.Random; @@ -314,7 +313,7 @@ public bool TryGetBountyFromId( public void UpdateBountyConsoles() { - var query = EntityQueryEnumerator(); + var query = EntityQueryEnumerator(); while (query.MoveNext(out var uid, out _, out var ui)) { if (_station.GetOwningStation(uid) is not { } station || diff --git a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs index 2bbab2a4f20..03531d9fe52 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs @@ -257,7 +257,7 @@ private void UpdateOrderState(CargoOrderConsoleComponent component, EntityUid? s balance, orderDatabase.Orders); - UserInterfaceSystem.SetUiState(bui, state); + _uiSystem.SetUiState(bui, state); } private void ConsolePopup(ICommonSession session, string text) diff --git a/Content.Server/Cargo/Systems/CargoSystem.Shuttle.cs b/Content.Server/Cargo/Systems/CargoSystem.Shuttle.cs index 291208df6da..c00068bdbbe 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Shuttle.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Shuttle.cs @@ -1,5 +1,6 @@ using System.Linq; using Content.Server.Cargo.Components; +using Content.Server.GameTicking.Events; using Content.Server.Shuttles.Components; using Content.Server.Shuttles.Events; using Content.Shared.Stacks; @@ -42,6 +43,8 @@ private void InitializeShuttle() SubscribeLocalEvent(OnPalletUIOpen); SubscribeLocalEvent(OnRoundRestart); + SubscribeLocalEvent(OnRoundStart); + _cfgManager.OnValueChanged(CCVars.GridFill, SetGridFill); } @@ -93,7 +96,7 @@ private void UpdatePalletConsoleInterface(EntityUid uid) var bui = _uiSystem.GetUi(uid, CargoPalletConsoleUiKey.Sale); if (Transform(uid).GridUid is not EntityUid gridUid) { - UserInterfaceSystem.SetUiState(bui, + _uiSystem.SetUiState(bui, new CargoPalletConsoleInterfaceState(0, 0, false)); return; } @@ -102,7 +105,7 @@ private void UpdatePalletConsoleInterface(EntityUid uid) { amount *= priceMod.Mod; } - UserInterfaceSystem.SetUiState(bui, + _uiSystem.SetUiState(bui, new CargoPalletConsoleInterfaceState((int) amount, toSell.Count, true)); } @@ -149,7 +152,7 @@ private void UpdateShuttleState(EntityUid uid, EntityUid? station = null) var shuttleName = orderDatabase?.Shuttle != null ? MetaData(orderDatabase.Shuttle.Value).EntityName : string.Empty; if (_uiSystem.TryGetUi(uid, CargoConsoleUiKey.Shuttle, out var bui)) - UserInterfaceSystem.SetUiState(bui, new CargoShuttleConsoleBoundUserInterfaceState( + _uiSystem.SetUiState(bui, new CargoShuttleConsoleBoundUserInterfaceState( station != null ? MetaData(station.Value).EntityName : Loc.GetString("cargo-shuttle-console-station-unknown"), string.IsNullOrEmpty(shuttleName) ? Loc.GetString("cargo-shuttle-console-shuttle-not-found") : shuttleName, orders @@ -337,7 +340,7 @@ private void OnPalletSale(EntityUid uid, CargoPalletConsoleComponent component, var bui = _uiSystem.GetUi(uid, CargoPalletConsoleUiKey.Sale); if (Transform(uid).GridUid is not EntityUid gridUid) { - UserInterfaceSystem.SetUiState(bui, + _uiSystem.SetUiState(bui, new CargoPalletConsoleInterfaceState(0, 0, false)); return; } @@ -391,7 +394,10 @@ private void OnRoundRestart(RoundRestartCleanupEvent ev) { Reset(); CleanupCargoShuttle(); + } + private void OnRoundStart(RoundStartingEvent ev) + { if (_cfgManager.GetCVar(CCVars.GridFill)) SetupCargoShuttle(); } diff --git a/Content.Server/Cargo/Systems/PricingSystem.cs b/Content.Server/Cargo/Systems/PricingSystem.cs index 2bd1cf564c1..64ba671adf8 100644 --- a/Content.Server/Cargo/Systems/PricingSystem.cs +++ b/Content.Server/Cargo/Systems/PricingSystem.cs @@ -53,7 +53,7 @@ private void AppraiseGridCommand(IConsoleShell shell, string argstr, string[] ar foreach (var gid in args) { - if (!EntityUid.TryParse(gid, out var gridId) || !gridId.IsValid()) + if (!EntityManager.TryParseNetEntity(gid, out var gridId) || !gridId.Value.IsValid()) { shell.WriteError($"Invalid grid ID \"{gid}\"."); continue; @@ -92,7 +92,7 @@ private void CalculateMobPrice(EntityUid uid, MobPriceComponent component, ref P if (!TryComp(uid, out var body) || !TryComp(uid, out var state)) { - Logger.ErrorS("pricing", $"Tried to get the mob price of {ToPrettyString(uid)}, which has no {nameof(BodyComponent)} and no {nameof(MobStateComponent)}."); + Log.Error($"Tried to get the mob price of {ToPrettyString(uid)}, which has no {nameof(BodyComponent)} and no {nameof(MobStateComponent)}."); return; } @@ -112,11 +112,13 @@ private double GetSolutionPrice(SolutionContainerManagerComponent component) foreach (var solution in component.Solutions.Values) { - foreach (var reagent in solution.Contents) + foreach (var (reagent, quantity) in solution.Contents) { - if (!_prototypeManager.TryIndex(reagent.ReagentId, out var reagentProto)) + if (!_prototypeManager.TryIndex(reagent.Prototype, out var reagentProto)) continue; - price += (float) reagent.Quantity * reagentProto.PricePerUnit; + + // TODO check ReagentData for price information? + price += (float) quantity * reagentProto.PricePerUnit; } } diff --git a/Content.Server/CartridgeLoader/CartridgeLoaderSystem.cs b/Content.Server/CartridgeLoader/CartridgeLoaderSystem.cs index 42f065a4c2b..c9ae2f6c802 100644 --- a/Content.Server/CartridgeLoader/CartridgeLoaderSystem.cs +++ b/Content.Server/CartridgeLoader/CartridgeLoaderSystem.cs @@ -1,4 +1,7 @@ -using Content.Server.DeviceNetwork.Systems; +using System.Diagnostics.CodeAnalysis; +using System.Linq; +using Content.Server.DeviceNetwork.Systems; +using Content.Server.PDA; using Content.Shared.CartridgeLoader; using Content.Shared.Interaction; using Robust.Server.Containers; @@ -6,7 +9,6 @@ using Robust.Server.Player; using Robust.Shared.Containers; using Robust.Shared.Map; -using System.Diagnostics.CodeAnalysis; namespace Content.Server.CartridgeLoader; @@ -14,8 +16,7 @@ public sealed class CartridgeLoaderSystem : SharedCartridgeLoaderSystem { [Dependency] private readonly ContainerSystem _containerSystem = default!; [Dependency] private readonly UserInterfaceSystem _userInterfaceSystem = default!; - - private const string ContainerName = "program-container"; + [Dependency] private readonly PdaSystem _pda = default!; public override void Initialize() { @@ -29,6 +30,66 @@ public override void Initialize() SubscribeLocalEvent(OnUiMessage); } + public IReadOnlyList GetInstalled(EntityUid uid, ContainerManagerComponent? comp = null) + { + if (_containerSystem.TryGetContainer(uid, InstalledContainerId, out var container, comp)) + return container.ContainedEntities; + + return Array.Empty(); + } + + public bool TryGetProgram( + EntityUid uid, + [NotNullWhen(true)] out EntityUid? programUid, + [NotNullWhen(true)] out T? program, + bool installedOnly = false, + CartridgeLoaderComponent? loader = null, + ContainerManagerComponent? containerManager = null) + { + program = default; + programUid = null; + + if (!_containerSystem.TryGetContainer(uid, InstalledContainerId, out var container, containerManager)) + return false; + + foreach (var prog in container.ContainedEntities) + { + if (!TryComp(prog, out program)) + continue; + + programUid = prog; + return true; + } + + if (installedOnly) + return false; + + if (!Resolve(uid, ref loader) || !TryComp(loader.CartridgeSlot.Item, out program)) + return false; + + programUid = loader.CartridgeSlot.Item; + return true; + } + + public bool TryGetProgram( + EntityUid uid, + [NotNullWhen(true)] out EntityUid? programUid, + bool installedOnly = false, + CartridgeLoaderComponent? loader = null, + ContainerManagerComponent? containerManager = null) + { + return TryGetProgram(uid, out programUid, out _, installedOnly, loader, containerManager); + } + + public bool HasProgram( + EntityUid uid, + bool installedOnly = false, + CartridgeLoaderComponent? loader = null, + ContainerManagerComponent? containerManager = null) + { + return TryGetProgram(uid, out _, out _, installedOnly, loader, containerManager); + } + /// /// Updates the cartridge loaders ui state. /// @@ -37,16 +98,17 @@ public override void Initialize() /// and use this method to update its state so the cartridge loaders state can be added to it. /// /// - public void UpdateUiState(EntityUid loaderUid, CartridgeLoaderUiState state, IPlayerSession? session = default!, CartridgeLoaderComponent? loader = default!) + public void UpdateUiState(EntityUid loaderUid, IPlayerSession? session, CartridgeLoaderComponent? loader) { if (!Resolve(loaderUid, ref loader)) return; - state.ActiveUI = loader.ActiveProgram; - state.Programs = GetAvailablePrograms(loaderUid, loader); + if (!_userInterfaceSystem.TryGetUi(loaderUid, loader.UiKey, out var ui)) + return; - if (_userInterfaceSystem.TryGetUi(loaderUid, loader.UiKey, out var ui)) - UserInterfaceSystem.SetUiState(ui, state, session); + var programs = GetAvailablePrograms(loaderUid, loader); + var state = new CartridgeLoaderUiState(programs, GetNetEntity(loader.ActiveProgram)); + _userInterfaceSystem.SetUiState(ui, state, session); } /// @@ -66,7 +128,7 @@ public void UpdateCartridgeUiState(EntityUid loaderUid, BoundUserInterfaceState return; if (_userInterfaceSystem.TryGetUi(loaderUid, loader.UiKey, out var ui)) - UserInterfaceSystem.SetUiState(ui, state, session); + _userInterfaceSystem.SetUiState(ui, state, session); } /// @@ -75,21 +137,18 @@ public void UpdateCartridgeUiState(EntityUid loaderUid, BoundUserInterfaceState /// The cartridge loaders uid /// The cartridge loader component /// A list of all the available program entity ids - public List GetAvailablePrograms(EntityUid uid, CartridgeLoaderComponent? loader = default!) + public List GetAvailablePrograms(EntityUid uid, CartridgeLoaderComponent? loader = default!) { if (!Resolve(uid, ref loader)) - return new List(); - - //Don't count a cartridge that has already been installed as available to avoid confusion - if (loader.CartridgeSlot.HasItem && TryFindInstalled(Prototype(loader.CartridgeSlot.Item!.Value)?.ID, loader, out _)) - return loader.InstalledPrograms; + return new List(); - var available = new List(); - available.AddRange(loader.InstalledPrograms); + var available = GetNetEntityList(GetInstalled(uid)); - if (loader.CartridgeSlot.HasItem) - available.Add(loader.CartridgeSlot.Item!.Value); + if (loader.CartridgeSlot.Item is not { } cartridge) + return available; + // TODO exclude duplicate programs. Or something I dunno I CBF fixing this mess. + available.Add(GetNetEntity(cartridge)); return available; } @@ -102,11 +161,13 @@ public List GetAvailablePrograms(EntityUid uid, CartridgeLoaderCompon /// Whether installing the cartridge was successful public bool InstallCartridge(EntityUid loaderUid, EntityUid cartridgeUid, CartridgeLoaderComponent? loader = default!) { - if (!Resolve(loaderUid, ref loader) || loader.InstalledPrograms.Count >= loader.DiskSpace) + if (!Resolve(loaderUid, ref loader)) return false; //This will eventually be replaced by serializing and deserializing the cartridge to copy it when something needs //the data on the cartridge to carry over when installing + + // For anyone stumbling onto this: Do not do this or I will cut you. var prototypeId = Prototype(cartridgeUid)?.ID; return prototypeId != null && InstallProgram(loaderUid, prototypeId, loader: loader); } @@ -121,16 +182,16 @@ public bool InstallCartridge(EntityUid loaderUid, EntityUid cartridgeUid, Cartri /// Whether installing the cartridge was successful public bool InstallProgram(EntityUid loaderUid, string prototype, bool deinstallable = true, CartridgeLoaderComponent? loader = default!) { - if (!Resolve(loaderUid, ref loader) || loader.InstalledPrograms.Count >= loader.DiskSpace) + if (!Resolve(loaderUid, ref loader)) return false; - if (!_containerSystem.TryGetContainer(loaderUid, ContainerName, out var container)) + if (!_containerSystem.TryGetContainer(loaderUid, InstalledContainerId, out var container)) return false; - //Prevent installing cartridges that have already been installed - if (TryFindInstalled(prototype, loader, out _)) + if (container.Count >= loader.DiskSpace) return false; + // TODO cancel duplicate program installations var ev = new ProgramInstallationAttempt(loaderUid, prototype); RaiseLocalEvent(ref ev); @@ -138,32 +199,15 @@ public bool InstallProgram(EntityUid loaderUid, string prototype, bool deinstall return false; var installedProgram = Spawn(prototype, new EntityCoordinates(loaderUid, 0, 0)); - container?.Insert(installedProgram); + container.Insert(installedProgram); UpdateCartridgeInstallationStatus(installedProgram, deinstallable ? InstallationStatus.Installed : InstallationStatus.Readonly); - loader.InstalledPrograms.Add(installedProgram); RaiseLocalEvent(installedProgram, new CartridgeAddedEvent(loaderUid)); UpdateUserInterfaceState(loaderUid, loader); return true; } - /// - /// Uninstalls a program using its prototype - /// - /// The cartridge loader uid - /// The prototype name of the program to be uninstalled - /// The cartridge loader component - /// Whether uninstalling the program was successful - public bool UninstallProgram(EntityUid loaderUid, string prototype, CartridgeLoaderComponent? loader = default!) - { - if (!Resolve(loaderUid, ref loader)) - return false; - - return TryFindInstalled(prototype, loader, out var programUid) && - UninstallProgram(loaderUid, programUid.Value, loader); - } - /// /// Uninstalls a program using its uid /// @@ -173,14 +217,16 @@ public bool UninstallProgram(EntityUid loaderUid, string prototype, CartridgeLoa /// Whether uninstalling the program was successful public bool UninstallProgram(EntityUid loaderUid, EntityUid programUid, CartridgeLoaderComponent? loader = default!) { - if (!Resolve(loaderUid, ref loader) || !ContainsCartridge(programUid, loader, true)) + if (!Resolve(loaderUid, ref loader)) + return false; + + if (!GetInstalled(loaderUid).Contains(programUid)) return false; if (loader.ActiveProgram == programUid) loader.ActiveProgram = null; loader.BackgroundPrograms.Remove(programUid); - loader.InstalledPrograms.Remove(programUid); EntityManager.QueueDeleteEntity(programUid); UpdateUserInterfaceState(loaderUid, loader); return true; @@ -194,7 +240,7 @@ public void ActivateProgram(EntityUid loaderUid, EntityUid programUid, Cartridge if (!Resolve(loaderUid, ref loader)) return; - if (!ContainsCartridge(programUid, loader)) + if (!HasProgram(loaderUid, programUid, loader)) return; if (loader.ActiveProgram.HasValue) @@ -215,7 +261,7 @@ public void DeactivateProgram(EntityUid loaderUid, EntityUid programUid, Cartrid if (!Resolve(loaderUid, ref loader)) return; - if (!ContainsCartridge(programUid, loader) || loader.ActiveProgram != programUid) + if (!HasProgram(loaderUid, programUid, loader) || loader.ActiveProgram != programUid) return; if (!loader.BackgroundPrograms.Contains(programUid)) @@ -236,7 +282,7 @@ public void RegisterBackgroundProgram(EntityUid loaderUid, EntityUid cartridgeUi if (!Resolve(loaderUid, ref loader)) return; - if (!ContainsCartridge(cartridgeUid, loader)) + if (!HasProgram(loaderUid, cartridgeUid, loader)) return; if (loader.ActiveProgram != cartridgeUid) @@ -253,7 +299,7 @@ public void UnregisterBackgroundProgram(EntityUid loaderUid, EntityUid cartridge if (!Resolve(loaderUid, ref loader)) return; - if (!ContainsCartridge(cartridgeUid, loader)) + if (!HasProgram(loaderUid, cartridgeUid, loader)) return; if (loader.ActiveProgram != cartridgeUid) @@ -264,12 +310,18 @@ public void UnregisterBackgroundProgram(EntityUid loaderUid, EntityUid cartridge protected override void OnItemInserted(EntityUid uid, CartridgeLoaderComponent loader, EntInsertedIntoContainerMessage args) { + if (args.Container.ID != InstalledContainerId && args.Container.ID != loader.CartridgeSlot.ID) + return; + RaiseLocalEvent(args.Entity, new CartridgeAddedEvent(uid)); base.OnItemInserted(uid, loader, args); } protected override void OnItemRemoved(EntityUid uid, CartridgeLoaderComponent loader, EntRemovedFromContainerMessage args) { + if (args.Container.ID != InstalledContainerId && args.Container.ID != loader.CartridgeSlot.ID) + return; + var deactivate = loader.BackgroundPrograms.Remove(args.Entity); if (loader.ActiveProgram == args.Entity) @@ -283,6 +335,8 @@ protected override void OnItemRemoved(EntityUid uid, CartridgeLoaderComponent lo RaiseLocalEvent(args.Entity, new CartridgeRemovedEvent(uid)); base.OnItemRemoved(uid, loader, args); + + _pda.UpdatePdaUi(uid); } /// @@ -290,6 +344,7 @@ protected override void OnItemRemoved(EntityUid uid, CartridgeLoaderComponent lo /// private void OnMapInit(EntityUid uid, CartridgeLoaderComponent component, MapInitEvent args) { + // TODO remove this and use container fill. foreach (var prototype in component.PreinstalledPrograms) { InstallProgram(uid, prototype, deinstallable: false); @@ -308,19 +363,21 @@ private void OnPacketReceived(EntityUid uid, CartridgeLoaderComponent component, private void OnLoaderUiMessage(EntityUid loaderUid, CartridgeLoaderComponent component, CartridgeLoaderUiMessage message) { + var cartridge = GetEntity(message.CartridgeUid); + switch (message.Action) { case CartridgeUiMessageAction.Activate: - ActivateProgram(loaderUid, message.CartridgeUid, component); + ActivateProgram(loaderUid, cartridge, component); break; case CartridgeUiMessageAction.Deactivate: - DeactivateProgram(loaderUid, message.CartridgeUid, component); + DeactivateProgram(loaderUid, cartridge, component); break; case CartridgeUiMessageAction.Install: - InstallCartridge(loaderUid, message.CartridgeUid, component); + InstallCartridge(loaderUid, cartridge, component); break; case CartridgeUiMessageAction.Uninstall: - UninstallProgram(loaderUid, message.CartridgeUid, component); + UninstallProgram(loaderUid, cartridge, component); break; case CartridgeUiMessageAction.UIReady: if (component.ActiveProgram.HasValue) @@ -337,7 +394,7 @@ private void OnLoaderUiMessage(EntityUid loaderUid, CartridgeLoaderComponent com private void OnUiMessage(EntityUid uid, CartridgeLoaderComponent component, CartridgeUiMessage args) { var cartridgeEvent = args.MessageEvent; - cartridgeEvent.LoaderUid = uid; + cartridgeEvent.LoaderUid = GetNetEntity(uid); RelayEvent(component, cartridgeEvent, true); } @@ -367,24 +424,6 @@ private void RelayEvent(CartridgeLoaderComponent loader, TEvent args, bo } } - /// - /// Searches for a program by its prototype name in the list of installed programs - /// - private bool TryFindInstalled(string? prototype, CartridgeLoaderComponent loader, [NotNullWhen(true)] out EntityUid? programUid) - { - foreach (var program in loader.InstalledPrograms) - { - if (Prototype(program)?.ID == prototype) - { - programUid = program; - return true; - } - } - - programUid = default; - return false; - } - /// /// Shortcut for updating the loaders user interface state without passing in a subtype of /// like the does when updating its ui state @@ -392,7 +431,7 @@ private bool TryFindInstalled(string? prototype, CartridgeLoaderComponent loader /// private void UpdateUserInterfaceState(EntityUid loaderUid, CartridgeLoaderComponent loader) { - UpdateUiState(loaderUid, new CartridgeLoaderUiState(), null, loader); + UpdateUiState(loaderUid, null, loader); } private void UpdateCartridgeInstallationStatus(EntityUid cartridgeUid, InstallationStatus installationStatus, CartridgeComponent? cartridgeComponent = default!) @@ -400,13 +439,13 @@ private void UpdateCartridgeInstallationStatus(EntityUid cartridgeUid, Installat if (Resolve(cartridgeUid, ref cartridgeComponent)) { cartridgeComponent.InstallationStatus = installationStatus; - Dirty(cartridgeComponent); + Dirty(cartridgeUid, cartridgeComponent); } } - private static bool ContainsCartridge(EntityUid cartridgeUid, CartridgeLoaderComponent loader, bool onlyInstalled = false) + private bool HasProgram(EntityUid loader, EntityUid program, CartridgeLoaderComponent component) { - return !onlyInstalled && loader.CartridgeSlot.Item?.Equals(cartridgeUid) == true || loader.InstalledPrograms.Contains(cartridgeUid); + return component.CartridgeSlot.Item == program || GetInstalled(loader).Contains(program); } } diff --git a/Content.Server/CartridgeLoader/Cartridges/CrewManifestCartridgeComponent.cs b/Content.Server/CartridgeLoader/Cartridges/CrewManifestCartridgeComponent.cs index 344f8674e35..709bb09099e 100644 --- a/Content.Server/CartridgeLoader/Cartridges/CrewManifestCartridgeComponent.cs +++ b/Content.Server/CartridgeLoader/Cartridges/CrewManifestCartridgeComponent.cs @@ -1,6 +1,6 @@ namespace Content.Server.CartridgeLoader.Cartridges; [RegisterComponent] -public sealed class CrewManifestCartridgeComponent : Component +public sealed partial class CrewManifestCartridgeComponent : Component { } diff --git a/Content.Server/CartridgeLoader/Cartridges/CrewManifestCartridgeSystem.cs b/Content.Server/CartridgeLoader/Cartridges/CrewManifestCartridgeSystem.cs index 49fb2e17320..fca29a40132 100644 --- a/Content.Server/CartridgeLoader/Cartridges/CrewManifestCartridgeSystem.cs +++ b/Content.Server/CartridgeLoader/Cartridges/CrewManifestCartridgeSystem.cs @@ -4,6 +4,7 @@ using Content.Shared.CartridgeLoader.Cartridges; using Content.Shared.CCVar; using Robust.Shared.Configuration; +using Robust.Shared.Containers; using Robust.Shared.Prototypes; namespace Content.Server.CartridgeLoader.Cartridges; @@ -41,7 +42,7 @@ public override void Initialize() /// private void OnUiMessage(EntityUid uid, CrewManifestCartridgeComponent component, CartridgeMessageEvent args) { - UpdateUiState(uid, args.LoaderUid, component); + UpdateUiState(uid, GetEntity(args.LoaderUid), component); } /// @@ -78,14 +79,17 @@ private void OnCrewManifestUnsecureChanged(bool unsecureViewersAllowed) { _unsecureViewersAllowed = unsecureViewersAllowed; - var allCartridgeLoaders = AllEntityQuery(); - - while (allCartridgeLoaders.MoveNext(out EntityUid loaderUid, out CartridgeLoaderComponent? comp)) + var allCartridgeLoaders = AllEntityQuery(); + while (allCartridgeLoaders.MoveNext(out var loaderUid, out var comp, out var cont)) { if (_unsecureViewersAllowed) - _cartridgeLoader?.InstallProgram(loaderUid, CartridgePrototypeName, false, comp); - else - _cartridgeLoader?.UninstallProgram(loaderUid, CartridgePrototypeName, comp); + { + _cartridgeLoader.InstallProgram(loaderUid, CartridgePrototypeName, false, comp); + return; + } + + if (_cartridgeLoader.TryGetProgram(loaderUid, out var program, true, comp, cont)) + _cartridgeLoader.UninstallProgram(loaderUid, program.Value, comp); } } diff --git a/Content.Server/CartridgeLoader/Cartridges/NetProbeCartridgeComponent.cs b/Content.Server/CartridgeLoader/Cartridges/NetProbeCartridgeComponent.cs index b4845206223..0de3538c0df 100644 --- a/Content.Server/CartridgeLoader/Cartridges/NetProbeCartridgeComponent.cs +++ b/Content.Server/CartridgeLoader/Cartridges/NetProbeCartridgeComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.CartridgeLoader.Cartridges; [RegisterComponent] -public sealed class NetProbeCartridgeComponent : Component +public sealed partial class NetProbeCartridgeComponent : Component { /// /// The list of probed network devices diff --git a/Content.Server/CartridgeLoader/Cartridges/NewsReadCartridgeComponent.cs b/Content.Server/CartridgeLoader/Cartridges/NewsReadCartridgeComponent.cs index f1d77162fcc..d4e70fa591e 100644 --- a/Content.Server/CartridgeLoader/Cartridges/NewsReadCartridgeComponent.cs +++ b/Content.Server/CartridgeLoader/Cartridges/NewsReadCartridgeComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.CartridgeLoader.Cartridges; [RegisterComponent] -public sealed class NewsReadCartridgeComponent : Component +public sealed partial class NewsReadCartridgeComponent : Component { [ViewVariables(VVAccess.ReadWrite)] public int ArticleNum; diff --git a/Content.Server/CartridgeLoader/Cartridges/NotekeeperCartridgeComponent.cs b/Content.Server/CartridgeLoader/Cartridges/NotekeeperCartridgeComponent.cs index 3afab1c1cd5..dacf13f0796 100644 --- a/Content.Server/CartridgeLoader/Cartridges/NotekeeperCartridgeComponent.cs +++ b/Content.Server/CartridgeLoader/Cartridges/NotekeeperCartridgeComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.CartridgeLoader.Cartridges; [RegisterComponent] -public sealed class NotekeeperCartridgeComponent : Component +public sealed partial class NotekeeperCartridgeComponent : Component { /// /// The list of notes that got written down diff --git a/Content.Server/CartridgeLoader/Cartridges/NotekeeperCartridgeSystem.cs b/Content.Server/CartridgeLoader/Cartridges/NotekeeperCartridgeSystem.cs index 92c6ea6d761..287f6824024 100644 --- a/Content.Server/CartridgeLoader/Cartridges/NotekeeperCartridgeSystem.cs +++ b/Content.Server/CartridgeLoader/Cartridges/NotekeeperCartridgeSystem.cs @@ -42,7 +42,7 @@ private void OnUiMessage(EntityUid uid, NotekeeperCartridgeComponent component, component.Notes.Remove(message.Note); } - UpdateUiState(uid, args.LoaderUid, component); + UpdateUiState(uid, GetEntity(args.LoaderUid), component); } diff --git a/Content.Server/CharacterInfo/CharacterInfoSystem.cs b/Content.Server/CharacterInfo/CharacterInfoSystem.cs index bd26a4836bb..602f9e8af0f 100644 --- a/Content.Server/CharacterInfo/CharacterInfoSystem.cs +++ b/Content.Server/CharacterInfo/CharacterInfoSystem.cs @@ -1,13 +1,17 @@ -using Content.Server.Mind.Components; +using Content.Server.Mind; using Content.Server.Roles; +using Content.Server.Roles.Jobs; using Content.Shared.CharacterInfo; using Content.Shared.Objectives; -using Robust.Shared.Player; namespace Content.Server.CharacterInfo; public sealed class CharacterInfoSystem : EntitySystem { + [Dependency] private readonly JobSystem _jobs = default!; + [Dependency] private readonly MindSystem _minds = default!; + [Dependency] private readonly RoleSystem _roles = default!; + public override void Initialize() { base.Initialize(); @@ -18,18 +22,16 @@ public override void Initialize() private void OnRequestCharacterInfoEvent(RequestCharacterInfoEvent msg, EntitySessionEventArgs args) { if (!args.SenderSession.AttachedEntity.HasValue - || args.SenderSession.AttachedEntity != msg.EntityUid) + || args.SenderSession.AttachedEntity != GetEntity(msg.NetEntity)) return; var entity = args.SenderSession.AttachedEntity.Value; var conditions = new Dictionary>(); var jobTitle = "No Profession"; - var briefing = "!!ERROR: No Briefing!!"; //should never show on the UI unless there's a bug - if (EntityManager.TryGetComponent(entity, out MindContainerComponent? mindContainerComponent) && mindContainerComponent.Mind != null) + string? briefing = null; + if (_minds.TryGetMind(entity, out var mindId, out var mind)) { - var mind = mindContainerComponent.Mind; - // Get objectives foreach (var objective in mind.AllObjectives) { @@ -42,19 +44,13 @@ private void OnRequestCharacterInfoEvent(RequestCharacterInfoEvent msg, EntitySe } } - // Get job title - foreach (var role in mind.AllRoles) - { - if (role.GetType() != typeof(Job)) continue; - - jobTitle = role.Name; - break; - } + if (_jobs.MindTryGetJobName(mindId, out var jobName)) + jobTitle = jobName; // Get briefing - briefing = mind.Briefing; + briefing = _roles.MindGetBriefing(mindId); } - RaiseNetworkEvent(new CharacterInfoEvent(entity, jobTitle, conditions, briefing), args.SenderSession); + RaiseNetworkEvent(new CharacterInfoEvent(GetNetEntity(entity), jobTitle, conditions, briefing), args.SenderSession); } } diff --git a/Content.Server/Charges/Components/AutoRechargeComponent.cs b/Content.Server/Charges/Components/AutoRechargeComponent.cs index 911145062bd..e23f0229bb4 100644 --- a/Content.Server/Charges/Components/AutoRechargeComponent.cs +++ b/Content.Server/Charges/Components/AutoRechargeComponent.cs @@ -9,7 +9,7 @@ namespace Content.Server.Charges.Components; /// [RegisterComponent] [Access(typeof(ChargesSystem))] -public sealed class AutoRechargeComponent : Component +public sealed partial class AutoRechargeComponent : Component { /// /// The time it takes to regain a single charge diff --git a/Content.Server/Chat/AutoEmoteComponent.cs b/Content.Server/Chat/AutoEmoteComponent.cs index 5a4211c2de5..e334d069bb9 100644 --- a/Content.Server/Chat/AutoEmoteComponent.cs +++ b/Content.Server/Chat/AutoEmoteComponent.cs @@ -8,7 +8,7 @@ namespace Content.Server.Chat; /// Causes an entity to automatically emote at a set interval. /// [RegisterComponent, Access(typeof(AutoEmoteSystem))] -public sealed class AutoEmoteComponent : Component +public sealed partial class AutoEmoteComponent : Component { /// /// A set of emotes that the entity will preform. diff --git a/Content.Server/Chat/Commands/SuicideCommand.cs b/Content.Server/Chat/Commands/SuicideCommand.cs index 16c699b0a9c..389ff039bf0 100644 --- a/Content.Server/Chat/Commands/SuicideCommand.cs +++ b/Content.Server/Chat/Commands/SuicideCommand.cs @@ -1,6 +1,6 @@ using Content.Server.GameTicking; -using Content.Server.Players; using Content.Shared.Administration; +using Content.Shared.Mind; using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Enums; @@ -26,25 +26,27 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) if (player.Status != SessionStatus.InGame || player.AttachedEntity == null) return; - var mind = player.ContentData()?.Mind; + var minds = IoCManager.Resolve().System(); // This check also proves mind not-null for at the end when the mob is ghosted. - if (mind?.OwnedEntity is not { Valid: true } victim) + if (!minds.TryGetMind(player, out var mindId, out var mind) || + mind.OwnedEntity is not { Valid: true } victim) { shell.WriteLine("You don't have a mind!"); return; } + var gameTicker = EntitySystem.Get(); var suicideSystem = EntitySystem.Get(); if (suicideSystem.Suicide(victim)) { // Prevent the player from returning to the body. // Note that mind cannot be null because otherwise victim would be null. - gameTicker.OnGhostAttempt(mind, false); + gameTicker.OnGhostAttempt(mindId, false, mind: mind); return; } - if (gameTicker.OnGhostAttempt(mind, true)) + if (gameTicker.OnGhostAttempt(mindId, true, mind: mind)) return; shell.WriteLine("You can't ghost right now."); diff --git a/Content.Server/Chat/EmoteOnDamageComponent.cs b/Content.Server/Chat/EmoteOnDamageComponent.cs index f2c7dc5b7ea..91eddef215b 100644 --- a/Content.Server/Chat/EmoteOnDamageComponent.cs +++ b/Content.Server/Chat/EmoteOnDamageComponent.cs @@ -9,7 +9,7 @@ namespace Content.Server.Chat; /// Causes an entity to automatically emote when taking damage. /// [RegisterComponent, Access(typeof(EmoteOnDamageSystem))] -public sealed class EmoteOnDamageComponent : Component +public sealed partial class EmoteOnDamageComponent : Component { /// /// Chance of preforming an emote when taking damage and not on cooldown. diff --git a/Content.Server/Chat/Managers/ChatManager.cs b/Content.Server/Chat/Managers/ChatManager.cs index ee55f5a91c6..aa055e44914 100644 --- a/Content.Server/Chat/Managers/ChatManager.cs +++ b/Content.Server/Chat/Managers/ChatManager.cs @@ -2,19 +2,18 @@ using Content.Server.Administration.Logs; using Content.Server.Administration.Managers; using Content.Server.Administration.Systems; -using Content.Server.Mind.Components; using Content.Server.MoMMI; using Content.Server.Preferences.Managers; -using Content.Server.Station.Systems; using Content.Shared.Administration; using Content.Shared.CCVar; using Content.Shared.Chat; using Content.Shared.Database; +using Content.Shared.Mind; using Robust.Server.Player; using Robust.Shared.Configuration; -using Robust.Shared.Map; using Robust.Shared.Network; using Robust.Shared.Player; +using Robust.Shared.Players; using Robust.Shared.Replays; using Robust.Shared.Utility; @@ -86,7 +85,7 @@ public void DispatchServerAnnouncement(string message, Color? colorOverride = nu _adminLogger.Add(LogType.Chat, LogImpact.Low, $"Server announcement: {message}"); } - public void DispatchServerMessage(IPlayerSession player, string message, bool suppressLog = false) + public void DispatchServerMessage(ICommonSession player, string message, bool suppressLog = false) { var wrappedMessage = Loc.GetString("chat-manager-server-wrap-message", ("message", FormattedMessage.EscapeText(message))); ChatMessageToOne(ChatChannel.Server, message, wrappedMessage, default, false, player.ConnectedClient); @@ -116,19 +115,19 @@ public void SendAdminAlert(string message) ChatMessageToMany(ChatChannel.AdminAlert, message, wrappedMessage, default, false, true, clients); } - public void SendAdminAlert(EntityUid player, string message, MindContainerComponent? mindContainerComponent = null) + public void SendAdminAlert(EntityUid player, string message) { - if ((mindContainerComponent == null && !_entityManager.TryGetComponent(player, out mindContainerComponent)) || !mindContainerComponent.HasMind) + var mindSystem = _entityManager.System(); + if (!mindSystem.TryGetMind(player, out var mindId, out var mind)) { SendAdminAlert(message); return; } var adminSystem = _entityManager.System(); - var antag = mindContainerComponent.Mind!.UserId != null - && (adminSystem.GetCachedPlayerInfo(mindContainerComponent.Mind!.UserId.Value)?.Antag ?? false); + var antag = mind.UserId != null && (adminSystem.GetCachedPlayerInfo(mind.UserId.Value)?.Antag ?? false); - SendAdminAlert($"{mindContainerComponent.Mind!.Session?.Name}{(antag ? " (ANTAG)" : "")} {message}"); + SendAdminAlert($"{mind.Session?.Name}{(antag ? " (ANTAG)" : "")} {message}"); } public void SendHookOOC(string sender, string message) @@ -243,7 +242,7 @@ private void SendAdminChat(IPlayerSession player, string message) public void ChatMessageToOne(ChatChannel channel, string message, string wrappedMessage, EntityUid source, bool hideChat, INetChannel client, Color? colorOverride = null, bool recordReplay = false, string? audioPath = null, float audioVolume = 0) { - var msg = new ChatMessage(channel, message, wrappedMessage, source, hideChat, colorOverride, audioPath, audioVolume); + var msg = new ChatMessage(channel, message, wrappedMessage, _entityManager.GetNetEntity(source), hideChat, colorOverride, audioPath, audioVolume); _netManager.ServerSendMessage(new MsgChatMessage() { Message = msg }, client); if (!recordReplay) @@ -261,7 +260,7 @@ public void ChatMessageToMany(ChatChannel channel, string message, string wrappe public void ChatMessageToMany(ChatChannel channel, string message, string wrappedMessage, EntityUid source, bool hideChat, bool recordReplay, List clients, Color? colorOverride = null, string? audioPath = null, float audioVolume = 0) { - var msg = new ChatMessage(channel, message, wrappedMessage, source, hideChat, colorOverride, audioPath, audioVolume); + var msg = new ChatMessage(channel, message, wrappedMessage, _entityManager.GetNetEntity(source), hideChat, colorOverride, audioPath, audioVolume); _netManager.ServerSendToMany(new MsgChatMessage() { Message = msg }, clients); if (!recordReplay) @@ -291,7 +290,7 @@ public void ChatMessageToManyFiltered(Filter filter, ChatChannel channel, string public void ChatMessageToAll(ChatChannel channel, string message, string wrappedMessage, EntityUid source, bool hideChat, bool recordReplay, Color? colorOverride = null, string? audioPath = null, float audioVolume = 0) { - var msg = new ChatMessage(channel, message, wrappedMessage, source, hideChat, colorOverride, audioPath, audioVolume); + var msg = new ChatMessage(channel, message, wrappedMessage, _entityManager.GetNetEntity(source), hideChat, colorOverride, audioPath, audioVolume); _netManager.ServerSendToAll(new MsgChatMessage() { Message = msg }); if (!recordReplay) diff --git a/Content.Server/Chat/Managers/IChatManager.cs b/Content.Server/Chat/Managers/IChatManager.cs index f3e0e8e2cf7..a398be74fd2 100644 --- a/Content.Server/Chat/Managers/IChatManager.cs +++ b/Content.Server/Chat/Managers/IChatManager.cs @@ -1,8 +1,8 @@ -using Content.Server.Mind.Components; using Content.Shared.Chat; using Robust.Server.Player; using Robust.Shared.Network; using Robust.Shared.Player; +using Robust.Shared.Players; namespace Content.Server.Chat.Managers { @@ -17,14 +17,14 @@ public interface IChatManager /// Override the color of the message being sent. void DispatchServerAnnouncement(string message, Color? colorOverride = null); - void DispatchServerMessage(IPlayerSession player, string message, bool suppressLog = false); + void DispatchServerMessage(ICommonSession player, string message, bool suppressLog = false); void TrySendOOCMessage(IPlayerSession player, string message, OOCChatType type); void SendHookOOC(string sender, string message); void SendAdminAnnouncement(string message); void SendAdminAlert(string message); - void SendAdminAlert(EntityUid player, string message, MindContainerComponent? mindContainerComponent = null); + void SendAdminAlert(EntityUid player, string message); void ChatMessageToOne(ChatChannel channel, string message, string wrappedMessage, EntityUid source, bool hideChat, INetChannel client, Color? colorOverride = null, bool recordReplay = false, string? audioPath = null, float audioVolume = 0); diff --git a/Content.Server/Chat/SuicideSystem.cs b/Content.Server/Chat/SuicideSystem.cs index 25819082ff5..2f6ac51d724 100644 --- a/Content.Server/Chat/SuicideSystem.cs +++ b/Content.Server/Chat/SuicideSystem.cs @@ -80,7 +80,7 @@ private void DefaultSuicideHandler(EntityUid victim, SuicideEvent suicideEvent) /// Returns true if there was a blocked attempt private bool SuicideAttemptBlocked(EntityUid victim, SuicideEvent suicideEvent) { - RaiseLocalEvent(victim, suicideEvent, false); + RaiseLocalEvent(victim, suicideEvent, true); if (suicideEvent.AttemptBlocked) return true; diff --git a/Content.Server/Chat/Systems/ChatSystem.Emote.cs b/Content.Server/Chat/Systems/ChatSystem.Emote.cs index 89fe35f56b6..7ab86aa1081 100644 --- a/Content.Server/Chat/Systems/ChatSystem.Emote.cs +++ b/Content.Server/Chat/Systems/ChatSystem.Emote.cs @@ -92,7 +92,7 @@ public void TryEmoteWithChat( { // not all emotes are loc'd, but for the ones that are we pass in entity var action = Loc.GetString(_random.Pick(emote.ChatMessages), ("entity", source)); - SendEntityEmote(source, action, range, nameOverride, hideLog: hideLog, ignoreActionBlocker: ignoreActionBlocker); + SendEntityEmote(source, action, range, nameOverride, hideLog: hideLog, checkEmote: false, ignoreActionBlocker: ignoreActionBlocker); } // do the rest of emote event logic here diff --git a/Content.Server/Chat/Systems/ChatSystem.cs b/Content.Server/Chat/Systems/ChatSystem.cs index 09064bd6347..acc375b8b11 100644 --- a/Content.Server/Chat/Systems/ChatSystem.cs +++ b/Content.Server/Chat/Systems/ChatSystem.cs @@ -1,10 +1,10 @@ +using System.Globalization; using System.Linq; using System.Text; using Content.Server.Administration.Logs; using Content.Server.Administration.Managers; using Content.Server.Chat.Managers; using Content.Server.GameTicking; -using Content.Server.Ghost.Components; using Content.Server.Players; using Content.Server.Station.Components; using Content.Server.Station.Systems; @@ -12,6 +12,7 @@ using Content.Shared.CCVar; using Content.Shared.Chat; using Content.Shared.Database; +using Content.Shared.Ghost; using Content.Shared.IdentityManagement; using Content.Shared.Interaction; using Content.Shared.Inventory; @@ -199,8 +200,11 @@ public void TrySendInGameICMessage( bool shouldCapitalize = (desiredType != InGameICChatType.Emote); bool shouldPunctuate = _configurationManager.GetCVar(CCVars.ChatPunctuation); + // Capitalizing the word I only happens in English, so we check language here + bool shouldCapitalizeTheWordI = (!CultureInfo.CurrentCulture.IsNeutralCulture && CultureInfo.CurrentCulture.Parent.Name == "en") + || (CultureInfo.CurrentCulture.IsNeutralCulture && CultureInfo.CurrentCulture.Name == "en"); - message = SanitizeInGameICMessage(source, message, out var emoteStr, shouldCapitalize, shouldPunctuate); + message = SanitizeInGameICMessage(source, message, out var emoteStr, shouldCapitalize, shouldPunctuate, shouldCapitalizeTheWordI); // Was there an emote in the message? If so, send it. if (player != null && emoteStr != message && emoteStr != null) @@ -480,7 +484,7 @@ private void SendEntityWhisper( _chatManager.ChatMessageToOne(ChatChannel.Whisper, obfuscatedMessage, wrappedUnknownMessage, source, false, session.ConnectedClient); } - _replay.RecordServerMessage(new ChatMessage(ChatChannel.Whisper, message, wrappedMessage, source, MessageRangeHideChatForReplay(range))); + _replay.RecordServerMessage(new ChatMessage(ChatChannel.Whisper, message, wrappedMessage, GetNetEntity(source), MessageRangeHideChatForReplay(range))); var ev = new EntitySpokeEvent(source, message, channel, obfuscatedMessage); RaiseLocalEvent(source, ev, true); @@ -581,7 +585,7 @@ private void SendDeadChat(EntityUid source, IPlayerSession player, string messag _adminLogger.Add(LogType.Chat, LogImpact.Low, $"Dead chat from {player:Player}: {message}"); } - _chatManager.ChatMessageToMany(ChatChannel.Dead, message, wrappedMessage, source, hideChat, false, clients.ToList()); + _chatManager.ChatMessageToMany(ChatChannel.Dead, message, wrappedMessage, source, hideChat, true, clients.ToList()); } #endregion @@ -647,7 +651,7 @@ private void SendInVoiceRange(ChatChannel channel, string message, string wrappe _chatManager.ChatMessageToOne(channel, message, wrappedMessage, source, entHideChat, session.ConnectedClient); } - _replay.RecordServerMessage(new ChatMessage(channel, message, wrappedMessage, source, MessageRangeHideChatForReplay(range))); + _replay.RecordServerMessage(new ChatMessage(channel, message, wrappedMessage, GetNetEntity(source), MessageRangeHideChatForReplay(range))); } /// @@ -677,11 +681,13 @@ private bool CanSendInGame(string message, IConsoleShell? shell = null, IPlayerS } // ReSharper disable once InconsistentNaming - private string SanitizeInGameICMessage(EntityUid source, string message, out string? emoteStr, bool capitalize = true, bool punctuate = false) + private string SanitizeInGameICMessage(EntityUid source, string message, out string? emoteStr, bool capitalize = true, bool punctuate = false, bool capitalizeTheWordI = true) { var newMessage = message.Trim(); if (capitalize) newMessage = SanitizeMessageCapital(newMessage); + if (capitalizeTheWordI) + newMessage = SanitizeMessageCapitalizeTheWordI(newMessage, "i"); if (punctuate) newMessage = SanitizeMessagePeriod(newMessage); diff --git a/Content.Server/Chemistry/Components/ActiveSolutionHeaterComponent.cs b/Content.Server/Chemistry/Components/ActiveSolutionHeaterComponent.cs index e190c0ebd34..3159250869b 100644 --- a/Content.Server/Chemistry/Components/ActiveSolutionHeaterComponent.cs +++ b/Content.Server/Chemistry/Components/ActiveSolutionHeaterComponent.cs @@ -1,6 +1,6 @@ namespace Content.Server.Chemistry.Components; [RegisterComponent] -public sealed class ActiveSolutionHeaterComponent : Component +public sealed partial class ActiveSolutionHeaterComponent : Component { } diff --git a/Content.Server/Chemistry/Components/ChemMasterComponent.cs b/Content.Server/Chemistry/Components/ChemMasterComponent.cs index c1f79909f6e..9578755ba76 100644 --- a/Content.Server/Chemistry/Components/ChemMasterComponent.cs +++ b/Content.Server/Chemistry/Components/ChemMasterComponent.cs @@ -10,7 +10,7 @@ namespace Content.Server.Chemistry.Components /// [RegisterComponent] [Access(typeof(ChemMasterSystem))] - public sealed class ChemMasterComponent : Component + public sealed partial class ChemMasterComponent : Component { [DataField("pillType"), ViewVariables(VVAccess.ReadWrite)] public uint PillType = 0; diff --git a/Content.Server/Chemistry/Components/HyposprayComponent.cs b/Content.Server/Chemistry/Components/HyposprayComponent.cs index 78adadefedb..76bb0e8d418 100644 --- a/Content.Server/Chemistry/Components/HyposprayComponent.cs +++ b/Content.Server/Chemistry/Components/HyposprayComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Chemistry.Components { [RegisterComponent] - public sealed class HyposprayComponent : SharedHyposprayComponent + public sealed partial class HyposprayComponent : SharedHyposprayComponent { // TODO: This should be on clumsycomponent. [DataField("clumsyFailChance")] @@ -19,5 +19,11 @@ public sealed class HyposprayComponent : SharedHyposprayComponent [DataField("injectSound")] public SoundSpecifier InjectSound = new SoundPathSpecifier("/Audio/Items/hypospray.ogg"); + + /// + /// Whether or not the hypo is able to inject only into mobs. On false you can inject into beakers/jugs + /// + [DataField("onlyMobs")] + public bool OnlyMobs = true; } } diff --git a/Content.Server/Chemistry/Components/InjectorComponent.cs b/Content.Server/Chemistry/Components/InjectorComponent.cs index e9d6b7c42ea..d6d149ad0f4 100644 --- a/Content.Server/Chemistry/Components/InjectorComponent.cs +++ b/Content.Server/Chemistry/Components/InjectorComponent.cs @@ -9,7 +9,7 @@ namespace Content.Server.Chemistry.Components /// containers, and can directly inject into a mobs bloodstream. /// [RegisterComponent] - public sealed class InjectorComponent : SharedInjectorComponent + public sealed partial class InjectorComponent : SharedInjectorComponent { public const string SolutionName = "injector"; diff --git a/Content.Server/Chemistry/Components/MeleeChemicalInjectorComponent.cs b/Content.Server/Chemistry/Components/MeleeChemicalInjectorComponent.cs index 2042c1d2123..6b6ce830a96 100644 --- a/Content.Server/Chemistry/Components/MeleeChemicalInjectorComponent.cs +++ b/Content.Server/Chemistry/Components/MeleeChemicalInjectorComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Chemistry.Components { [RegisterComponent] - public sealed class MeleeChemicalInjectorComponent : Component + public sealed partial class MeleeChemicalInjectorComponent : Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("transferAmount")] diff --git a/Content.Server/Chemistry/Components/ReagentDispenserComponent.cs b/Content.Server/Chemistry/Components/ReagentDispenserComponent.cs index 8592eda00e4..7229010228b 100644 --- a/Content.Server/Chemistry/Components/ReagentDispenserComponent.cs +++ b/Content.Server/Chemistry/Components/ReagentDispenserComponent.cs @@ -11,7 +11,7 @@ namespace Content.Server.Chemistry.Components /// [RegisterComponent] [Access(typeof(ReagentDispenserSystem))] - public sealed class ReagentDispenserComponent : Component + public sealed partial class ReagentDispenserComponent : Component { [DataField("pack", customTypeSerializer:typeof(PrototypeIdSerializer))] diff --git a/Content.Server/Chemistry/Components/ReagentTankComponent.cs b/Content.Server/Chemistry/Components/ReagentTankComponent.cs index 162e3d6b8af..cc0d2657d7d 100644 --- a/Content.Server/Chemistry/Components/ReagentTankComponent.cs +++ b/Content.Server/Chemistry/Components/ReagentTankComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Chemistry.Components { [RegisterComponent] - public sealed class ReagentTankComponent : Component + public sealed partial class ReagentTankComponent : Component { [DataField("transferAmount")] [ViewVariables(VVAccess.ReadWrite)] diff --git a/Content.Server/Chemistry/Components/RehydratableComponent.cs b/Content.Server/Chemistry/Components/RehydratableComponent.cs index 4e0c1c48469..636eba6ca1a 100644 --- a/Content.Server/Chemistry/Components/RehydratableComponent.cs +++ b/Content.Server/Chemistry/Components/RehydratableComponent.cs @@ -11,7 +11,7 @@ namespace Content.Server.Chemistry.Components; /// But specifically, this component deletes the entity and spawns in a new entity when the entity is exposed to a certain amount of a given reagent. /// [RegisterComponent, Access(typeof(RehydratableSystem))] -public sealed class RehydratableComponent : Component +public sealed partial class RehydratableComponent : Component { /// /// The reagent that must be present to count as hydrated. diff --git a/Content.Server/Chemistry/Components/SmokeComponent.cs b/Content.Server/Chemistry/Components/SmokeComponent.cs index 088287bfa2b..133ad41f139 100644 --- a/Content.Server/Chemistry/Components/SmokeComponent.cs +++ b/Content.Server/Chemistry/Components/SmokeComponent.cs @@ -8,7 +8,7 @@ namespace Content.Server.Chemistry.Components; /// to entities that collide with it. Similar to /// [RegisterComponent] -public sealed class SmokeComponent : Component +public sealed partial class SmokeComponent : Component { public const string SolutionName = "solutionArea"; diff --git a/Content.Server/Chemistry/Components/SmokeDissipateSpawnComponent.cs b/Content.Server/Chemistry/Components/SmokeDissipateSpawnComponent.cs index a791880d937..068ac432b65 100644 --- a/Content.Server/Chemistry/Components/SmokeDissipateSpawnComponent.cs +++ b/Content.Server/Chemistry/Components/SmokeDissipateSpawnComponent.cs @@ -9,7 +9,7 @@ namespace Content.Server.Chemistry.Components; /// When a despawns this will spawn another entity in its place. /// [RegisterComponent, Access(typeof(SmokeSystem))] -public sealed class SmokeDissipateSpawnComponent : Component +public sealed partial class SmokeDissipateSpawnComponent : Component { [DataField("prototype", required: true, customTypeSerializer:typeof(PrototypeIdSerializer))] public string Prototype = string.Empty; diff --git a/Content.Server/Chemistry/Components/SolutionHeaterComponent.cs b/Content.Server/Chemistry/Components/SolutionHeaterComponent.cs index 2c5f5e5ab84..71956701250 100644 --- a/Content.Server/Chemistry/Components/SolutionHeaterComponent.cs +++ b/Content.Server/Chemistry/Components/SolutionHeaterComponent.cs @@ -1,9 +1,7 @@ -using Content.Shared.Whitelist; - namespace Content.Server.Chemistry.Components; [RegisterComponent] -public sealed class SolutionHeaterComponent : Component +public sealed partial class SolutionHeaterComponent : Component { /// /// How much heat is added per second to the solution, with no upgrades. @@ -28,23 +26,4 @@ public sealed class SolutionHeaterComponent : Component /// [DataField("partRatingHeatMultiplier")] public float PartRatingHeatMultiplier = 1.5f; - - /// - /// The entities that are placed on the heater. - /// - [DataField("placedEntities")] - public HashSet PlacedEntities = new(); - - /// - /// The max amount of entities that can be heated at the same time. - /// - [DataField("maxEntities")] - public uint MaxEntities = 1; - - /// - /// Whitelist for entities that can be placed on the heater. - /// - [DataField("whitelist")] - [ViewVariables(VVAccess.ReadWrite)] - public EntityWhitelist? Whitelist; } diff --git a/Content.Server/Chemistry/Components/SolutionInjectOnCollideComponent.cs b/Content.Server/Chemistry/Components/SolutionInjectOnCollideComponent.cs index bf51da1db74..073bc1167c5 100644 --- a/Content.Server/Chemistry/Components/SolutionInjectOnCollideComponent.cs +++ b/Content.Server/Chemistry/Components/SolutionInjectOnCollideComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Chemistry.Components /// On colliding with an entity that has a bloodstream will dump its solution onto them. /// [RegisterComponent] - internal sealed class SolutionInjectOnCollideComponent : Component + internal sealed partial class SolutionInjectOnCollideComponent : Component { [ViewVariables(VVAccess.ReadWrite)] diff --git a/Content.Server/Chemistry/Components/SolutionManager/DrawableSolutionComponent.cs b/Content.Server/Chemistry/Components/SolutionManager/DrawableSolutionComponent.cs index 65d1638c917..2ecb7e8c430 100644 --- a/Content.Server/Chemistry/Components/SolutionManager/DrawableSolutionComponent.cs +++ b/Content.Server/Chemistry/Components/SolutionManager/DrawableSolutionComponent.cs @@ -4,7 +4,7 @@ /// Denotes the solution that can removed be with syringes. /// [RegisterComponent] - public sealed class DrawableSolutionComponent : Component + public sealed partial class DrawableSolutionComponent : Component { /// /// Solution name that can be removed with syringes. diff --git a/Content.Server/Chemistry/Components/SolutionManager/ExaminableSolutionComponent.cs b/Content.Server/Chemistry/Components/SolutionManager/ExaminableSolutionComponent.cs index a1500910330..52b8affb24d 100644 --- a/Content.Server/Chemistry/Components/SolutionManager/ExaminableSolutionComponent.cs +++ b/Content.Server/Chemistry/Components/SolutionManager/ExaminableSolutionComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Chemistry.Components.SolutionManager { [RegisterComponent] - public sealed class ExaminableSolutionComponent: Component + public sealed partial class ExaminableSolutionComponent: Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("solution")] diff --git a/Content.Server/Chemistry/Components/SolutionManager/InjectableSolutionComponent.cs b/Content.Server/Chemistry/Components/SolutionManager/InjectableSolutionComponent.cs index 01ee25e175c..17fc34b5068 100644 --- a/Content.Server/Chemistry/Components/SolutionManager/InjectableSolutionComponent.cs +++ b/Content.Server/Chemistry/Components/SolutionManager/InjectableSolutionComponent.cs @@ -4,7 +4,7 @@ /// Denotes a solution which can be added with syringes. /// [RegisterComponent] - public sealed class InjectableSolutionComponent : Component + public sealed partial class InjectableSolutionComponent : Component { /// diff --git a/Content.Server/Chemistry/Components/SolutionManager/RandomFillSolutionComponent.cs b/Content.Server/Chemistry/Components/SolutionManager/RandomFillSolutionComponent.cs index 409665fb0dd..e4ee6bfc0b1 100644 --- a/Content.Server/Chemistry/Components/SolutionManager/RandomFillSolutionComponent.cs +++ b/Content.Server/Chemistry/Components/SolutionManager/RandomFillSolutionComponent.cs @@ -8,7 +8,7 @@ namespace Content.Server.Chemistry.Components.SolutionManager; /// Fills a solution container randomly using a weighted random prototype /// [RegisterComponent, Access(typeof(SolutionRandomFillSystem))] -public sealed class RandomFillSolutionComponent : Component +public sealed partial class RandomFillSolutionComponent : Component { /// /// Solution name which to add reagents to. @@ -20,5 +20,5 @@ public sealed class RandomFillSolutionComponent : Component /// Weighted random fill prototype Id. Used to pick reagent and quantity. /// [DataField("weightedRandomId", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] - public string WeightedRandomId { get; set; } = "default"; + public string? WeightedRandomId; } diff --git a/Content.Server/Chemistry/Components/SolutionManager/SolutionContainerManagerComponent.cs b/Content.Server/Chemistry/Components/SolutionManager/SolutionContainerManagerComponent.cs index 69ceb55333b..d76237a80b2 100644 --- a/Content.Server/Chemistry/Components/SolutionManager/SolutionContainerManagerComponent.cs +++ b/Content.Server/Chemistry/Components/SolutionManager/SolutionContainerManagerComponent.cs @@ -5,10 +5,10 @@ namespace Content.Server.Chemistry.Components.SolutionManager { [RegisterComponent] [Access(typeof(SolutionContainerSystem))] - public sealed class SolutionContainerManagerComponent : Component + public sealed partial class SolutionContainerManagerComponent : Component { [DataField("solutions")] [Access(typeof(SolutionContainerSystem), Other = AccessPermissions.ReadExecute)] // FIXME Friends - public readonly Dictionary Solutions = new(); + public Dictionary Solutions = new(); } } diff --git a/Content.Server/Chemistry/Components/SolutionPurgeComponent.cs b/Content.Server/Chemistry/Components/SolutionPurgeComponent.cs index d4a71b9ddeb..0525542b969 100644 --- a/Content.Server/Chemistry/Components/SolutionPurgeComponent.cs +++ b/Content.Server/Chemistry/Components/SolutionPurgeComponent.cs @@ -11,7 +11,7 @@ namespace Content.Server.Chemistry.Components; /// [RegisterComponent] [Access(typeof(SolutionPurgeSystem))] -public sealed class SolutionPurgeComponent : Component +public sealed partial class SolutionPurgeComponent : Component { /// /// The name of the solution to detract from. diff --git a/Content.Server/Chemistry/Components/SolutionRegenerationComponent.cs b/Content.Server/Chemistry/Components/SolutionRegenerationComponent.cs index d84f9365c79..1fc5772d4e6 100644 --- a/Content.Server/Chemistry/Components/SolutionRegenerationComponent.cs +++ b/Content.Server/Chemistry/Components/SolutionRegenerationComponent.cs @@ -11,7 +11,7 @@ namespace Content.Server.Chemistry.Components; /// [RegisterComponent] [Access(typeof(SolutionRegenerationSystem))] -public sealed class SolutionRegenerationComponent : Component +public sealed partial class SolutionRegenerationComponent : Component { /// /// The name of the solution to add to. diff --git a/Content.Server/Chemistry/Components/SolutionSpikerComponent.cs b/Content.Server/Chemistry/Components/SolutionSpikerComponent.cs index 16ce3a36fbc..63b6ebefcc6 100644 --- a/Content.Server/Chemistry/Components/SolutionSpikerComponent.cs +++ b/Content.Server/Chemistry/Components/SolutionSpikerComponent.cs @@ -1,30 +1,30 @@ namespace Content.Server.Chemistry.Components; [RegisterComponent] -public sealed class SolutionSpikerComponent : Component +public sealed partial class SolutionSpikerComponent : Component { /// /// The source solution to take the reagents from in order /// to spike the other solution container. /// [DataField("sourceSolution")] - public string SourceSolution { get; } = string.Empty; + public string SourceSolution { get; private set; } = string.Empty; /// /// If spiking with this entity should ignore empty containers or not. /// [DataField("ignoreEmpty")] - public bool IgnoreEmpty { get; } + public bool IgnoreEmpty { get; private set; } /// /// What should pop up when spiking with this entity. /// [DataField("popup")] - public string Popup { get; } = "spike-solution-generic"; + public string Popup { get; private set; } = "spike-solution-generic"; /// /// What should pop up when spiking fails because the container was empty. /// [DataField("popupEmpty")] - public string PopupEmpty { get; } = "spike-solution-empty-generic"; + public string PopupEmpty { get; private set; } = "spike-solution-empty-generic"; } diff --git a/Content.Server/Chemistry/Components/TransformableContainerComponent.cs b/Content.Server/Chemistry/Components/TransformableContainerComponent.cs index ede2e5fb9bf..5ea9a244878 100644 --- a/Content.Server/Chemistry/Components/TransformableContainerComponent.cs +++ b/Content.Server/Chemistry/Components/TransformableContainerComponent.cs @@ -12,7 +12,7 @@ namespace Content.Server.Chemistry.Components; /// Should probably be joined with SolutionContainerVisualsComponent when solutions are networked. /// [RegisterComponent, Access(typeof(TransformableContainerSystem))] -public sealed class TransformableContainerComponent : Component +public sealed partial class TransformableContainerComponent : Component { /// /// This is the initial metadata name for the container. diff --git a/Content.Server/Chemistry/Components/VaporComponent.cs b/Content.Server/Chemistry/Components/VaporComponent.cs index 5517e11ea5b..a2f4a01a2a0 100644 --- a/Content.Server/Chemistry/Components/VaporComponent.cs +++ b/Content.Server/Chemistry/Components/VaporComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Chemistry.Components { [RegisterComponent] - public sealed class VaporComponent : Component + public sealed partial class VaporComponent : Component { public const string SolutionName = "vapor"; diff --git a/Content.Server/Chemistry/EntitySystems/ChemMasterSystem.cs b/Content.Server/Chemistry/EntitySystems/ChemMasterSystem.cs index e5fb7ea7e98..5e1baa71bba 100644 --- a/Content.Server/Chemistry/EntitySystems/ChemMasterSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/ChemMasterSystem.cs @@ -3,14 +3,15 @@ using Content.Server.Chemistry.Components; using Content.Server.Labels; using Content.Server.Popups; -using Content.Server.Storage.Components; using Content.Server.Storage.EntitySystems; using Content.Shared.Administration.Logs; using Content.Shared.Chemistry; using Content.Shared.Chemistry.Components; +using Content.Shared.Chemistry.Reagent; using Content.Shared.Containers.ItemSlots; using Content.Shared.Database; using Content.Shared.FixedPoint; +using Content.Shared.Storage; using JetBrains.Annotations; using Robust.Server.GameObjects; using Robust.Shared.Audio; @@ -35,7 +36,6 @@ public sealed class ChemMasterSystem : EntitySystem [Dependency] private readonly StorageSystem _storageSystem = default!; [Dependency] private readonly LabelSystem _labelSystem = default!; [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; - [Dependency] private readonly AppearanceSystem _appearance = default!; [ValidatePrototypeId] private const string PillPrototypeId = "Pill"; @@ -118,7 +118,7 @@ private void OnReagentButtonMessage(EntityUid uid, ChemMasterComponent chemMaste ClickSound(chemMaster); } - private void TransferReagents(ChemMasterComponent chemMaster, string reagentId, FixedPoint2 amount, bool fromBuffer) + private void TransferReagents(ChemMasterComponent chemMaster, ReagentId id, FixedPoint2 amount, bool fromBuffer) { var container = _itemSlotsSystem.GetItemOrNull(chemMaster.Owner, SharedChemMaster.InputSlotName); if (container is null || @@ -131,26 +131,26 @@ private void TransferReagents(ChemMasterComponent chemMaster, string reagentId, if (fromBuffer) // Buffer to container { amount = FixedPoint2.Min(amount, containerSolution.AvailableVolume); - amount = bufferSolution.RemoveReagent(reagentId, amount); - _solutionContainerSystem.TryAddReagent(container.Value, containerSolution, reagentId, amount, out var _); + amount = bufferSolution.RemoveReagent(id, amount); + _solutionContainerSystem.TryAddReagent(container.Value, containerSolution, id, amount, out var _); } else // Container to buffer { - amount = FixedPoint2.Min(amount, containerSolution.GetReagentQuantity(reagentId)); - _solutionContainerSystem.TryRemoveReagent(container.Value, containerSolution, reagentId, amount); - bufferSolution.AddReagent(reagentId, amount); + amount = FixedPoint2.Min(amount, containerSolution.GetReagentQuantity(id)); + _solutionContainerSystem.RemoveReagent(container.Value, containerSolution, id, amount); + bufferSolution.AddReagent(id, amount); } UpdateUiState(chemMaster, updateLabel: true); } - private void DiscardReagents(ChemMasterComponent chemMaster, string reagentId, FixedPoint2 amount, bool fromBuffer) + private void DiscardReagents(ChemMasterComponent chemMaster, ReagentId id, FixedPoint2 amount, bool fromBuffer) { if (fromBuffer) { if (_solutionContainerSystem.TryGetSolution(chemMaster.Owner, SharedChemMaster.BufferSolutionName, out var bufferSolution)) - bufferSolution.RemoveReagent(reagentId, amount); + bufferSolution.RemoveReagent(id, amount); else return; } @@ -160,7 +160,7 @@ private void DiscardReagents(ChemMasterComponent chemMaster, string reagentId, F if (container is not null && _solutionContainerSystem.TryGetFitsInDispenser(container.Value, out var containerSolution)) { - _solutionContainerSystem.TryRemoveReagent(container.Value, containerSolution, reagentId, amount); + _solutionContainerSystem.RemoveReagent(container.Value, containerSolution, id, amount); } else return; @@ -174,8 +174,8 @@ private void OnCreatePillsMessage(EntityUid uid, ChemMasterComponent chemMaster, var user = message.Session.AttachedEntity; var maybeContainer = _itemSlotsSystem.GetItemOrNull(chemMaster.Owner, SharedChemMaster.OutputSlotName); if (maybeContainer is not { Valid: true } container - || !TryComp(container, out ServerStorageComponent? storage) - || storage.Storage is null) + || !TryComp(container, out StorageComponent? storage) + || storage.Container is null) { return; // output can't fit pills } @@ -201,7 +201,7 @@ private void OnCreatePillsMessage(EntityUid uid, ChemMasterComponent chemMaster, for (var i = 0; i < message.Number; i++) { var item = Spawn(PillPrototypeId, Transform(container).Coordinates); - _storageSystem.Insert(container, item, storage); + _storageSystem.Insert(container, item, user, storage); _labelSystem.Label(item, message.Label); var itemSolution = _solutionContainerSystem.EnsureSolution(item, SharedChemMaster.PillSolutionName); @@ -340,27 +340,31 @@ private void ClickSound(ChemMasterComponent chemMaster) } } - if (!TryComp(container, out ServerStorageComponent? storage)) + if (!TryComp(container, out StorageComponent? storage)) return null; - var pills = storage.Storage?.ContainedEntities.Select((Func) (pill => + var pills = storage.Container?.ContainedEntities.Select((Func) (pill => { _solutionContainerSystem.TryGetSolution(pill, SharedChemMaster.PillSolutionName, out var solution); var quantity = solution?.Volume ?? FixedPoint2.Zero; return (Name(pill), quantity); })).ToList(); - return pills is null - ? null - : new ContainerInfo(name, false, storage.StorageUsed, storage.StorageCapacityMax, pills); + if (pills == null) + return null; + + return new ContainerInfo(name, storage.StorageUsed, storage.StorageCapacityMax) + { + Entities = pills + }; } private static ContainerInfo BuildContainerInfo(string name, Solution solution) { - var reagents = solution.Contents - .Select(reagent => (reagent.ReagentId, reagent.Quantity)).ToList(); - - return new ContainerInfo(name, true, solution.Volume, solution.MaxVolume, reagents); + return new ContainerInfo(name, solution.Volume, solution.MaxVolume) + { + Reagents = solution.Contents + }; } } } diff --git a/Content.Server/Chemistry/EntitySystems/ChemistrySystem.Injector.cs b/Content.Server/Chemistry/EntitySystems/ChemistrySystem.Injector.cs index 6ac7f7f0d62..eb4c274c940 100644 --- a/Content.Server/Chemistry/EntitySystems/ChemistrySystem.Injector.cs +++ b/Content.Server/Chemistry/EntitySystems/ChemistrySystem.Injector.cs @@ -42,7 +42,7 @@ private void AddSetTransferVerbs(EntityUid uid, InjectorComponent component, Get if (!args.CanAccess || !args.CanInteract || args.Hands == null) return; - if (!EntityManager.TryGetComponent(args.User, out var actor)) + if (!EntityManager.TryGetComponent(args.User, out ActorComponent? actor)) return; // Add specific transfer verbs according to the container's size @@ -259,7 +259,7 @@ private void InjectDoAfter(InjectorComponent component, EntityUid user, EntityUi _adminLogger.Add(LogType.Ingestion, $"{EntityManager.ToPrettyString(user):user} is attempting to inject themselves with a solution {SolutionContainerSystem.ToPrettyString(solution):solution}."); } - _doAfter.TryStartDoAfter(new DoAfterArgs(user, actualDelay, new InjectorDoAfterEvent(), injector, target: target, used: injector) + _doAfter.TryStartDoAfter(new DoAfterArgs(EntityManager, user, actualDelay, new InjectorDoAfterEvent(), injector, target: target, used: injector) { BreakOnUserMove = true, BreakOnDamage = true, @@ -312,7 +312,7 @@ private void TryInject(InjectorComponent component, EntityUid injector, EntityUi // Move units from attackSolution to targetSolution Solution removedSolution; - if (TryComp(targetEntity, out var stack)) + if (TryComp(targetEntity, out var stack)) removedSolution = _solutions.SplitStackSolution(injector, solution, realTransferAmount, stack.Count); else removedSolution = _solutions.SplitSolution(injector, solution, realTransferAmount); diff --git a/Content.Server/Chemistry/EntitySystems/ChemistrySystemHypospray.cs b/Content.Server/Chemistry/EntitySystems/ChemistrySystemHypospray.cs index d357e46f667..a352d51368e 100644 --- a/Content.Server/Chemistry/EntitySystems/ChemistrySystemHypospray.cs +++ b/Content.Server/Chemistry/EntitySystems/ChemistrySystemHypospray.cs @@ -74,7 +74,7 @@ public bool TryDoInject(EntityUid uid, EntityUid? target, EntityUid user, Hyposp if (!Resolve(uid, ref component)) return false; - if (!EligibleEntity(target, _entMan)) + if (!EligibleEntity(target, _entMan, component)) return false; if (TryComp(uid, out UseDelayComponent? delayComp) && _useDelay.ActiveDelay(uid, delayComp)) @@ -84,7 +84,7 @@ public bool TryDoInject(EntityUid uid, EntityUid? target, EntityUid user, Hyposp if (target == user) msgFormat = "hypospray-component-inject-self-message"; - else if (EligibleEntity(user, _entMan) && _interaction.TryRollClumsy(user, component.ClumsyFailChance)) + else if (EligibleEntity(user, _entMan, component) && _interaction.TryRollClumsy(user, component.ClumsyFailChance)) { msgFormat = "hypospray-component-inject-self-clumsy-message"; target = user; @@ -143,13 +143,15 @@ public bool TryDoInject(EntityUid uid, EntityUid? target, EntityUid user, Hyposp return true; } - static bool EligibleEntity([NotNullWhen(true)] EntityUid? entity, IEntityManager entMan) + static bool EligibleEntity([NotNullWhen(true)] EntityUid? entity, IEntityManager entMan, HyposprayComponent component) { // TODO: Does checking for BodyComponent make sense as a "can be hypospray'd" tag? // In SS13 the hypospray ONLY works on mobs, NOT beakers or anything else. - - return entMan.HasComponent(entity) - && entMan.HasComponent(entity); + // But this is 14, we dont do what SS13 does just because SS13 does it. + return component.OnlyMobs + ? entMan.HasComponent(entity) && + entMan.HasComponent(entity) + : entMan.HasComponent(entity); } } } diff --git a/Content.Server/Chemistry/EntitySystems/ReagentDispenserSystem.cs b/Content.Server/Chemistry/EntitySystems/ReagentDispenserSystem.cs index 9a1d560f34f..a84dff49d8b 100644 --- a/Content.Server/Chemistry/EntitySystems/ReagentDispenserSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/ReagentDispenserSystem.cs @@ -3,6 +3,7 @@ using Content.Server.Chemistry.Components; using Content.Shared.Chemistry; using Content.Shared.Chemistry.Dispenser; +using Content.Shared.Chemistry.Reagent; using Content.Shared.Containers.ItemSlots; using Content.Shared.Database; using Content.Shared.Emag.Components; @@ -63,28 +64,30 @@ private void UpdateUiState(ReagentDispenserComponent reagentDispenser) if (_solutionContainerSystem.TryGetFitsInDispenser(container.Value, out var solution)) { - var reagents = solution.Contents.Select(reagent => (reagent.ReagentId, reagent.Quantity)).ToList(); - return new ContainerInfo(Name(container.Value), true, solution.Volume, solution.MaxVolume, reagents); + return new ContainerInfo(Name(container.Value), solution.Volume, solution.MaxVolume) + { + Reagents = solution.Contents + }; } return null; } - private List GetInventory(ReagentDispenserComponent reagentDispenser) + private List GetInventory(ReagentDispenserComponent reagentDispenser) { - var inventory = new List(); + var inventory = new List(); if (reagentDispenser.PackPrototypeId is not null && _prototypeManager.TryIndex(reagentDispenser.PackPrototypeId, out ReagentDispenserInventoryPrototype? packPrototype)) { - inventory.AddRange(packPrototype.Inventory); + inventory.AddRange(packPrototype.Inventory.Select(x => new ReagentId(x, null))); } if (HasComp(reagentDispenser.Owner) && reagentDispenser.EmagPackPrototypeId is not null && _prototypeManager.TryIndex(reagentDispenser.EmagPackPrototypeId, out ReagentDispenserInventoryPrototype? emagPackPrototype)) { - inventory.AddRange(emagPackPrototype.Inventory); + inventory.AddRange(emagPackPrototype.Inventory.Select(x => new ReagentId(x, null))); } return inventory; diff --git a/Content.Server/Chemistry/EntitySystems/RehydratableSystem.cs b/Content.Server/Chemistry/EntitySystems/RehydratableSystem.cs index 3dd1c6ae587..85f823f7aa9 100644 --- a/Content.Server/Chemistry/EntitySystems/RehydratableSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/RehydratableSystem.cs @@ -20,7 +20,7 @@ public override void Initialize() private void OnSolutionChange(EntityUid uid, RehydratableComponent comp, SolutionChangedEvent args) { - var quantity = _solutions.GetReagentQuantity(uid, comp.CatalystPrototype); + var quantity = _solutions.GetTotalPrototypeQuantity(uid, comp.CatalystPrototype); if (quantity != FixedPoint2.Zero && quantity >= comp.CatalystMinimum) { Expand(uid, comp); diff --git a/Content.Server/Chemistry/EntitySystems/SolutionContainerSystem.Capabilities.cs b/Content.Server/Chemistry/EntitySystems/SolutionContainerSystem.Capabilities.cs index 0e47881c845..3b8505efd40 100644 --- a/Content.Server/Chemistry/EntitySystems/SolutionContainerSystem.Capabilities.cs +++ b/Content.Server/Chemistry/EntitySystems/SolutionContainerSystem.Capabilities.cs @@ -91,6 +91,21 @@ public bool TryGetDrainableSolution(EntityUid uid, return true; } + public bool TryGetDumpableSolution(EntityUid uid, + [NotNullWhen(true)] out Solution? solution, + DumpableSolutionComponent? dumpable = null, + SolutionContainerManagerComponent? manager = null) + { + if (!Resolve(uid, ref dumpable, ref manager, false) + || !manager.Solutions.TryGetValue(dumpable.Solution, out solution)) + { + solution = null; + return false; + } + + return true; + } + public bool TryGetDrawableSolution(EntityUid uid, [NotNullWhen(true)] out Solution? solution, DrawableSolutionComponent? drawable = null, diff --git a/Content.Server/Chemistry/EntitySystems/SolutionContainerSystem.cs b/Content.Server/Chemistry/EntitySystems/SolutionContainerSystem.cs index 61da862be9b..3ab07cc49b1 100644 --- a/Content.Server/Chemistry/EntitySystems/SolutionContainerSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/SolutionContainerSystem.cs @@ -23,9 +23,11 @@ namespace Content.Server.Chemistry.EntitySystems; public sealed class SolutionChangedEvent : EntityEventArgs { public readonly Solution Solution; + public readonly string SolutionId; - public SolutionChangedEvent(Solution solution) + public SolutionChangedEvent(Solution solution, string solutionId) { + SolutionId = solutionId; Solution = solution; } } @@ -103,7 +105,7 @@ private FormattedMessage GetSolutionExamine(Solution solution) { var msg = new FormattedMessage(); - if (solution.Contents.Count == 0) //TODO: better way to see if empty? + if (solution.Volume == 0) { msg.AddMarkup(Loc.GetString("scannable-solution-empty-container")); return msg; @@ -111,17 +113,13 @@ private FormattedMessage GetSolutionExamine(Solution solution) msg.AddMarkup(Loc.GetString("scannable-solution-main-text")); - foreach (var reagent in solution) + foreach (var (proto, quantity) in solution.GetReagentPrototypes(_prototypeManager)) { - if (!_prototypeManager.TryIndex(reagent.ReagentId, out var proto)) - { - continue; - } msg.PushNewline(); msg.AddMarkup(Loc.GetString("scannable-solution-chemical" , ("type", proto.LocalizedName) , ("color", proto.SubstanceColor.ToHexNoAlpha()) - , ("amount", reagent.Quantity))); + , ("amount", quantity))); } return msg; @@ -132,46 +130,41 @@ private void OnExamineSolution(EntityUid uid, ExaminableSolutionComponent examin { SolutionContainerManagerComponent? solutionsManager = null; if (!Resolve(args.Examined, ref solutionsManager) - || !solutionsManager.Solutions.TryGetValue(examinableComponent.Solution, out var solutionHolder)) + || !solutionsManager.Solutions.TryGetValue(examinableComponent.Solution, out var solution)) { return; } - var primaryReagent = solutionHolder.GetPrimaryReagentId(); + var primaryReagent = solution.GetPrimaryReagentId(); - if (string.IsNullOrEmpty(primaryReagent)) + if (string.IsNullOrEmpty(primaryReagent?.Prototype)) { args.PushText(Loc.GetString("shared-solution-container-component-on-examine-empty-container")); return; } - if (!_prototypeManager.TryIndex(primaryReagent, out ReagentPrototype? primary)) + if (!_prototypeManager.TryIndex(primaryReagent.Value.Prototype, out ReagentPrototype? primary)) { Logger.Error( $"{nameof(Solution)} could not find the prototype associated with {primaryReagent}."); return; } - var colorHex = solutionHolder.GetColor(_prototypeManager) + var colorHex = solution.GetColor(_prototypeManager) .ToHexNoAlpha(); //TODO: If the chem has a dark color, the examine text becomes black on a black background, which is unreadable. var messageString = "shared-solution-container-component-on-examine-main-text"; args.PushMarkup(Loc.GetString(messageString, ("color", colorHex), - ("wordedAmount", Loc.GetString(solutionHolder.Contents.Count == 1 + ("wordedAmount", Loc.GetString(solution.Contents.Count == 1 ? "shared-solution-container-component-on-examine-worded-amount-one-reagent" : "shared-solution-container-component-on-examine-worded-amount-multiple-reagents")), ("desc", primary.LocalizedPhysicalDescription))); // Add descriptions of immediately recognizable reagents, like water or beer var recognized = new List(); - foreach (var (id, _) in solutionHolder) + foreach (var proto in solution.GetReagentPrototypes(_prototypeManager).Keys) { - if (!_prototypeManager.TryIndex(id, out var proto)) - { - continue; - } - if (!proto.Recognizable) { continue; @@ -278,7 +271,7 @@ public void UpdateChemicals(EntityUid uid, Solution solutionHolder, bool needsRe } UpdateAppearance(uid, solutionHolder); - RaiseLocalEvent(uid, new SolutionChangedEvent(solutionHolder)); + RaiseLocalEvent(uid, new SolutionChangedEvent(solutionHolder, solutionHolder.Name)); } public void RemoveAllSolution(EntityUid uid, Solution solutionHolder) @@ -324,46 +317,111 @@ public void SetCapacity(EntityUid targetUid, Solution targetSolution, FixedPoint /// /// /// Container to which we are adding reagent - /// The Id of the reagent to add. - /// The amount of reagent to add. + /// The reagent to add. /// The amount of reagent successfully added. /// If all the reagent could be added. - public bool TryAddReagent(EntityUid targetUid, Solution targetSolution, string reagentId, FixedPoint2 quantity, + public bool TryAddReagent(EntityUid targetUid, Solution targetSolution, ReagentQuantity reagentQuantity, out FixedPoint2 acceptedQuantity, float? temperature = null) { - acceptedQuantity = targetSolution.AvailableVolume > quantity ? quantity : targetSolution.AvailableVolume; + acceptedQuantity = targetSolution.AvailableVolume > reagentQuantity.Quantity + ? reagentQuantity.Quantity + : targetSolution.AvailableVolume; if (acceptedQuantity <= 0) - return quantity == 0; + return reagentQuantity.Quantity == 0; if (temperature == null) - targetSolution.AddReagent(reagentId, acceptedQuantity); + { + targetSolution.AddReagent(reagentQuantity.Reagent, acceptedQuantity); + } else - targetSolution.AddReagent(_prototypeManager.Index(reagentId), acceptedQuantity, temperature.Value, _prototypeManager); + { + var proto = _prototypeManager.Index(reagentQuantity.Reagent.Prototype); + targetSolution.AddReagent(proto, acceptedQuantity, temperature.Value, _prototypeManager); + } UpdateChemicals(targetUid, targetSolution, true); - return acceptedQuantity == quantity; + return acceptedQuantity == reagentQuantity.Quantity; } + /// + /// Adds reagent of an Id to the container. + /// + /// + /// Container to which we are adding reagent + /// The Id of the reagent to add. + /// The amount of reagent to add. + /// The amount of reagent successfully added. + /// If all the reagent could be added. + public bool TryAddReagent(EntityUid targetUid, Solution targetSolution, string prototype, FixedPoint2 quantity, + out FixedPoint2 acceptedQuantity, float? temperature = null, ReagentData? data = null) + { + var reagent = new ReagentQuantity(prototype, quantity, data); + return TryAddReagent(targetUid, targetSolution, reagent, out acceptedQuantity, temperature); + } + + /// + /// Adds reagent of an Id to the container. + /// + /// + /// Container to which we are adding reagent + /// The reagent to add. + /// The amount of reagent to add. + /// The amount of reagent successfully added. + /// If all the reagent could be added. + public bool TryAddReagent(EntityUid targetUid, Solution targetSolution, ReagentId reagentId, FixedPoint2 quantity, + out FixedPoint2 acceptedQuantity, float? temperature = null) + { + var quant = new ReagentQuantity(reagentId, quantity); + return TryAddReagent(targetUid, targetSolution, quant, out acceptedQuantity, temperature); + } /// - /// Removes reagent of an Id to the container. + /// Removes reagent from a container. /// /// /// Solution container from which we are removing reagent - /// The Id of the reagent to remove. - /// The amount of reagent to remove. + /// The reagent to remove. /// If the reagent to remove was found in the container. - public bool TryRemoveReagent(EntityUid targetUid, Solution? container, string reagentId, FixedPoint2 quantity) + public bool RemoveReagent(EntityUid targetUid, Solution? container, ReagentQuantity reagentQuantity) { - if (container == null || !container.ContainsReagent(reagentId)) + if (container == null) + return false; + + var quant = container.RemoveReagent(reagentQuantity); + if (quant <= FixedPoint2.Zero) return false; - container.RemoveReagent(reagentId, quantity); UpdateChemicals(targetUid, container); return true; } + /// + /// Removes reagent from a container. + /// + /// + /// Solution container from which we are removing reagent + /// The Id of the reagent to remove. + /// The amount of reagent to remove. + /// If the reagent to remove was found in the container. + public bool RemoveReagent(EntityUid targetUid, Solution? container, string prototype, FixedPoint2 quantity, ReagentData? data = null) + { + return RemoveReagent(targetUid, container, new ReagentQuantity(prototype, quantity, data)); + } + + /// + /// Removes reagent from a container. + /// + /// + /// Solution container from which we are removing reagent + /// The reagent to remove. + /// The amount of reagent to remove. + /// If the reagent to remove was found in the container. + public bool RemoveReagent(EntityUid targetUid, Solution? container, ReagentId reagentId, FixedPoint2 quantity) + { + return RemoveReagent(targetUid, container, new ReagentQuantity(reagentId, quantity)); + } + /// /// Adds a solution to the container, if it can fully fit. /// @@ -391,19 +449,35 @@ public bool TryAddSolution(EntityUid targetUid, Solution? targetSolution, Soluti /// target solution /// quantity of solution to move from source to target. If this is a negative number, the source & target roles are reversed. public bool TryTransferSolution(EntityUid sourceUid, EntityUid targetUid, Solution source, Solution target, FixedPoint2 quantity) + { + if (!TryTransferSolution(targetUid, target, source, quantity)) + return false; + + UpdateChemicals(sourceUid, source, false); + return true; + } + + /// + /// Moves some quantity of a solution from one solution to another. + /// + /// entity holding the source solution + /// entity holding the target solution + /// source solution + /// target solution + /// quantity of solution to move from source to target. If this is a negative number, the source & target roles are reversed. + public bool TryTransferSolution(EntityUid targetUid, Solution target, Solution source, FixedPoint2 quantity) { if (quantity < 0) - return TryTransferSolution(targetUid, sourceUid, target, source, -quantity); + throw new InvalidOperationException("Quantity must be positive"); quantity = FixedPoint2.Min(quantity, target.AvailableVolume, source.Volume); if (quantity == 0) return false; - // TODO This should be made into a function that directly transfers reagents. currently this is quite - // inefficient. + // TODO This should be made into a function that directly transfers reagents. + // Currently this is quite inefficient. target.AddSolution(source.SplitSolution(quantity), _prototypeManager); - UpdateChemicals(sourceUid, source, false); UpdateChemicals(targetUid, target, true); return true; } @@ -540,7 +614,7 @@ public Solution EnsureSolution(EntityUid uid, string name, FixedPoint2 minVol, o } public Solution EnsureSolution(EntityUid uid, string name, - IEnumerable reagents, + IEnumerable reagents, bool setMaxVol = true, SolutionContainerManagerComponent? solutionsMgr = null) { @@ -574,19 +648,16 @@ public Solution RemoveEachReagent(EntityUid uid, Solution solution, FixedPoint2 // RemoveReagent does a RemoveSwap, meaning we don't have to copy the list if we iterate it backwards. for (var i = solution.Contents.Count-1; i >= 0; i--) { - var (reagentId, _) = solution.Contents[i]; - - var removedQuantity = solution.RemoveReagent(reagentId, quantity); - - if(removedQuantity > 0) - removedSolution.AddReagent(reagentId, removedQuantity); + var (reagent, _) = solution.Contents[i]; + var removedQuantity = solution.RemoveReagent(reagent, quantity); + removedSolution.AddReagent(reagent, removedQuantity); } UpdateChemicals(uid, solution); return removedSolution; } - public FixedPoint2 GetReagentQuantity(EntityUid owner, string reagentId) + public FixedPoint2 GetTotalPrototypeQuantity(EntityUid owner, string reagentId) { var reagentQuantity = FixedPoint2.New(0); if (EntityManager.EntityExists(owner) @@ -594,7 +665,7 @@ public FixedPoint2 GetReagentQuantity(EntityUid owner, string reagentId) { foreach (var solution in managerComponent.Solutions.Values) { - reagentQuantity += solution.GetReagentQuantity(reagentId); + reagentQuantity += solution.GetTotalPrototypeQuantity(reagentId); } } @@ -640,21 +711,21 @@ public bool TryGetMixableSolution(EntityUid uid, if (component.Solutions.Count == 0) return null; - var reagentCounts = new Dictionary(); + var reagentCounts = new Dictionary(); foreach (var solution in component.Solutions.Values) { - foreach (var reagent in solution.Contents) + foreach (var (reagent, quantity) in solution.Contents) { - reagentCounts.TryGetValue(reagent.ReagentId, out var existing); - existing += reagent.Quantity; - reagentCounts[reagent.ReagentId] = existing; + reagentCounts.TryGetValue(reagent, out var existing); + existing += quantity; + reagentCounts[reagent] = existing; } } var max = reagentCounts.Max(); - return _prototypeManager.Index(max.Key); + return _prototypeManager.Index(max.Key.Prototype); } public SoundSpecifier? GetSound(SolutionContainerManagerComponent component) diff --git a/Content.Server/Chemistry/EntitySystems/SolutionHeaterSystem.cs b/Content.Server/Chemistry/EntitySystems/SolutionHeaterSystem.cs index 4e3db49e80a..31698cf1757 100644 --- a/Content.Server/Chemistry/EntitySystems/SolutionHeaterSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/SolutionHeaterSystem.cs @@ -1,4 +1,3 @@ -using System.Linq; using Content.Server.Chemistry.Components; using Content.Server.Chemistry.Components.SolutionManager; using Content.Server.Construction; @@ -6,27 +5,25 @@ using Content.Server.Power.EntitySystems; using Content.Shared.Chemistry; using Content.Shared.Placeable; -using Robust.Shared.Physics.Events; -using Robust.Shared.Physics.Systems; namespace Content.Server.Chemistry.EntitySystems; public sealed class SolutionHeaterSystem : EntitySystem { - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly SharedPhysicsSystem _physics = default!; - [Dependency] private readonly PlaceableSurfaceSystem _placeableSurface = default!; [Dependency] private readonly PowerReceiverSystem _powerReceiver = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly SolutionContainerSystem _solution = default!; /// public override void Initialize() { + base.Initialize(); + SubscribeLocalEvent(OnPowerChanged); SubscribeLocalEvent(OnRefreshParts); SubscribeLocalEvent(OnUpgradeExamine); - SubscribeLocalEvent(OnStartCollide); - SubscribeLocalEvent(OnEndCollide); + SubscribeLocalEvent(OnItemPlaced); + SubscribeLocalEvent(OnItemRemoved); } private void TurnOn(EntityUid uid) @@ -35,9 +32,12 @@ private void TurnOn(EntityUid uid) EnsureComp(uid); } - public bool TryTurnOn(EntityUid uid, SolutionHeaterComponent component) + public bool TryTurnOn(EntityUid uid, ItemPlacerComponent? placer = null) { - if (component.PlacedEntities.Count <= 0 || !_powerReceiver.IsPowered(uid)) + if (!Resolve(uid, ref placer)) + return false; + + if (placer.PlacedEntities.Count <= 0 || !_powerReceiver.IsPowered(uid)) return false; TurnOn(uid); @@ -52,7 +52,8 @@ public void TurnOff(EntityUid uid) private void OnPowerChanged(EntityUid uid, SolutionHeaterComponent component, ref PowerChangedEvent args) { - if (args.Powered && component.PlacedEntities.Count > 0) + var placer = Comp(uid); + if (args.Powered && placer.PlacedEntities.Count > 0) { TurnOn(uid); } @@ -74,43 +75,26 @@ private void OnUpgradeExamine(EntityUid uid, SolutionHeaterComponent component, args.AddPercentageUpgrade("solution-heater-upgrade-heat", component.HeatPerSecond / component.BaseHeatPerSecond); } - private void OnStartCollide(EntityUid uid, SolutionHeaterComponent component, ref StartCollideEvent args) + private void OnItemPlaced(EntityUid uid, SolutionHeaterComponent comp, ref ItemPlacedEvent args) { - if (component.Whitelist is not null && !component.Whitelist.IsValid(args.OtherEntity)) - return; - - // Disallow sleeping so we can detect when entity is removed from the heater. - _physics.SetSleepingAllowed(args.OtherEntity, args.OtherBody, false); - - component.PlacedEntities.Add(args.OtherEntity); - - TryTurnOn(uid, component); - - if (component.PlacedEntities.Count >= component.MaxEntities) - _placeableSurface.SetPlaceable(uid, false); + TryTurnOn(uid); } - private void OnEndCollide(EntityUid uid, SolutionHeaterComponent component, ref EndCollideEvent args) + private void OnItemRemoved(EntityUid uid, SolutionHeaterComponent component, ref ItemRemovedEvent args) { - // Re-allow sleeping. - _physics.SetSleepingAllowed(args.OtherEntity, args.OtherBody, true); - - component.PlacedEntities.Remove(args.OtherEntity); - - if (component.PlacedEntities.Count == 0) // Last entity was removed + var placer = Comp(uid); + if (placer.PlacedEntities.Count == 0) // Last entity was removed TurnOff(uid); - - _placeableSurface.SetPlaceable(uid, true); } public override void Update(float frameTime) { base.Update(frameTime); - var query = EntityQueryEnumerator(); - while (query.MoveNext(out _, out _, out var heater)) + var query = EntityQueryEnumerator(); + while (query.MoveNext(out _, out _, out var heater, out var placer)) { - foreach (var heatingEntity in heater.PlacedEntities.Take((int) heater.MaxEntities)) + foreach (var heatingEntity in placer.PlacedEntities) { if (!TryComp(heatingEntity, out var solution)) continue; diff --git a/Content.Server/Chemistry/EntitySystems/SolutionRandomFillSystem.cs b/Content.Server/Chemistry/EntitySystems/SolutionRandomFillSystem.cs index 78afda99108..efd7857147d 100644 --- a/Content.Server/Chemistry/EntitySystems/SolutionRandomFillSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/SolutionRandomFillSystem.cs @@ -22,6 +22,9 @@ public override void Initialize() private void OnRandomSolutionFillMapInit(EntityUid uid, RandomFillSolutionComponent component, MapInitEvent args) { + if (component.WeightedRandomId == null) + return; + var target = _solutionsSystem.EnsureSolution(uid, component.Solution); var pick = _proto.Index(component.WeightedRandomId).Pick(_random); diff --git a/Content.Server/Chemistry/EntitySystems/SolutionTransferSystem.cs b/Content.Server/Chemistry/EntitySystems/SolutionTransferSystem.cs index 0f587e92943..893834f1767 100644 --- a/Content.Server/Chemistry/EntitySystems/SolutionTransferSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/SolutionTransferSystem.cs @@ -48,7 +48,7 @@ private void AddSetTransferVerbs(EntityUid uid, SolutionTransferComponent compon if (!args.CanAccess || !args.CanInteract || !component.CanChangeTransferAmount || args.Hands == null) return; - if (!EntityManager.TryGetComponent(args.User, out var actor)) + if (!EntityManager.TryGetComponent(args.User, out ActorComponent? actor)) return; // Custom transfer verb diff --git a/Content.Server/Chemistry/EntitySystems/TransformableContainerSystem.cs b/Content.Server/Chemistry/EntitySystems/TransformableContainerSystem.cs index 41ab11aab0d..13246c22e12 100644 --- a/Content.Server/Chemistry/EntitySystems/TransformableContainerSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/TransformableContainerSystem.cs @@ -47,14 +47,14 @@ private void OnSolutionChange(EntityUid owner, TransformableContainerComponent c var reagentId = solution.GetPrimaryReagentId(); //If biggest reagent didn't changed - don't change anything at all - if (component.CurrentReagent != null && component.CurrentReagent.ID == reagentId) + if (component.CurrentReagent != null && component.CurrentReagent.ID == reagentId?.Prototype) { return; } //Only reagents with spritePath property can change appearance of transformable containers! - if (!string.IsNullOrWhiteSpace(reagentId) - && _prototypeManager.TryIndex(reagentId, out ReagentPrototype? proto)) + if (!string.IsNullOrWhiteSpace(reagentId?.Prototype) + && _prototypeManager.TryIndex(reagentId.Value.Prototype, out ReagentPrototype? proto)) { var metadata = MetaData(owner); var val = Loc.GetString("transformable-container-component-glass", ("name", proto.LocalizedName)); diff --git a/Content.Server/Chemistry/EntitySystems/VaporSystem.cs b/Content.Server/Chemistry/EntitySystems/VaporSystem.cs index 92ba44b2c6f..7288a993d3c 100644 --- a/Content.Server/Chemistry/EntitySystems/VaporSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/VaporSystem.cs @@ -1,18 +1,17 @@ using System.Numerics; using Content.Server.Chemistry.Components; using Content.Server.Chemistry.Components.SolutionManager; +using Content.Shared.Chemistry; using Content.Shared.Chemistry.Components; using Content.Shared.Chemistry.Reagent; using Content.Shared.FixedPoint; using Content.Shared.Physics; using Content.Shared.Spawners.Components; using Content.Shared.Throwing; -using Content.Shared.Vapor; using JetBrains.Annotations; using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Physics.Components; -using Robust.Shared.Physics.Dynamics; using Robust.Shared.Physics.Events; using Robust.Shared.Physics.Systems; using Robust.Shared.Prototypes; @@ -27,6 +26,7 @@ internal sealed class VaporSystem : EntitySystem [Dependency] private readonly SharedPhysicsSystem _physics = default!; [Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!; [Dependency] private readonly ThrowingSystem _throwing = default!; + [Dependency] private readonly ReactiveSystem _reactive = default!; private const float ReactTime = 0.125f; @@ -45,7 +45,7 @@ private void HandleCollide(EntityUid uid, VaporComponent component, ref StartCol foreach (var value in contents.Solutions.Values) { - value.DoEntityReaction(args.OtherEntity, ReactionMethod.Touch); + _reactive.DoEntityReaction(args.OtherEntity, value, ReactionMethod.Touch); } // Check for collision with a impassable object (e.g. wall) and stop @@ -120,18 +120,18 @@ private void Update(float frameTime, VaporComponent vapor, Solution contents, Tr foreach (var reagentQuantity in contents.Contents.ToArray()) { if (reagentQuantity.Quantity == FixedPoint2.Zero) continue; - var reagent = _protoManager.Index(reagentQuantity.ReagentId); + var reagent = _protoManager.Index(reagentQuantity.Reagent.Prototype); var reaction = reagent.ReactionTile(tile, (reagentQuantity.Quantity / vapor.TransferAmount) * 0.25f); if (reaction > reagentQuantity.Quantity) { - _sawmill.Error($"Tried to tile react more than we have for reagent {reagentQuantity.ReagentId}. Found {reaction} and we only have {reagentQuantity.Quantity}"); + _sawmill.Error($"Tried to tile react more than we have for reagent {reagentQuantity}. Found {reaction} and we only have {reagentQuantity.Quantity}"); reaction = reagentQuantity.Quantity; } - _solutionContainerSystem.TryRemoveReagent(vapor.Owner, contents, reagentQuantity.ReagentId, reaction); + _solutionContainerSystem.RemoveReagent(vapor.Owner, contents, reagentQuantity.Reagent, reaction); } } diff --git a/Content.Server/Chemistry/ReactionEffects/AreaReactionEffect.cs b/Content.Server/Chemistry/ReactionEffects/AreaReactionEffect.cs index e323d9c8344..103433c9a53 100644 --- a/Content.Server/Chemistry/ReactionEffects/AreaReactionEffect.cs +++ b/Content.Server/Chemistry/ReactionEffects/AreaReactionEffect.cs @@ -21,7 +21,7 @@ namespace Content.Server.Chemistry.ReactionEffects /// [UsedImplicitly] [DataDefinition] - public sealed class AreaReactionEffect : ReagentEffect + public sealed partial class AreaReactionEffect : ReagentEffect { /// /// How many seconds will the effect stay, counting after fully spreading. diff --git a/Content.Server/Chemistry/ReactionEffects/CreateEntityReactionEffect.cs b/Content.Server/Chemistry/ReactionEffects/CreateEntityReactionEffect.cs index 2cc5ea9dbe5..53c4f676a83 100644 --- a/Content.Server/Chemistry/ReactionEffects/CreateEntityReactionEffect.cs +++ b/Content.Server/Chemistry/ReactionEffects/CreateEntityReactionEffect.cs @@ -6,7 +6,7 @@ namespace Content.Server.Chemistry.ReactionEffects; [DataDefinition] -public sealed class CreateEntityReactionEffect : ReagentEffect +public sealed partial class CreateEntityReactionEffect : ReagentEffect { /// /// What entity to create. diff --git a/Content.Server/Chemistry/ReactionEffects/EmpReactionEffect.cs b/Content.Server/Chemistry/ReactionEffects/EmpReactionEffect.cs index 17d868a0e9d..2efdff93af2 100644 --- a/Content.Server/Chemistry/ReactionEffects/EmpReactionEffect.cs +++ b/Content.Server/Chemistry/ReactionEffects/EmpReactionEffect.cs @@ -6,7 +6,7 @@ namespace Content.Server.Chemistry.ReactionEffects; [DataDefinition] -public sealed class EmpReactionEffect : ReagentEffect +public sealed partial class EmpReactionEffect : ReagentEffect { /// /// Impulse range per unit of reagent diff --git a/Content.Server/Chemistry/ReactionEffects/ExplosionReactionEffect.cs b/Content.Server/Chemistry/ReactionEffects/ExplosionReactionEffect.cs index 7b5c0bfce79..41a389ee2f1 100644 --- a/Content.Server/Chemistry/ReactionEffects/ExplosionReactionEffect.cs +++ b/Content.Server/Chemistry/ReactionEffects/ExplosionReactionEffect.cs @@ -9,7 +9,7 @@ namespace Content.Server.Chemistry.ReactionEffects { [DataDefinition] - public sealed class ExplosionReactionEffect : ReagentEffect + public sealed partial class ExplosionReactionEffect : ReagentEffect { /// /// The type of explosion. Determines damage types and tile break chance scaling. diff --git a/Content.Server/Chemistry/ReactionEffects/SolutionTemperatureEffects.cs b/Content.Server/Chemistry/ReactionEffects/SolutionTemperatureEffects.cs index d7689354661..6117132831c 100644 --- a/Content.Server/Chemistry/ReactionEffects/SolutionTemperatureEffects.cs +++ b/Content.Server/Chemistry/ReactionEffects/SolutionTemperatureEffects.cs @@ -9,7 +9,7 @@ namespace Content.Server.Chemistry.ReactionEffects /// Sets the temperature of the solution involved with the reaction to a new value. /// [DataDefinition] - public sealed class SetSolutionTemperatureEffect : ReagentEffect + public sealed partial class SetSolutionTemperatureEffect : ReagentEffect { /// /// The temperature to set the solution to. @@ -34,7 +34,7 @@ public override void Effect(ReagentEffectArgs args) /// Adjusts the temperature of the solution involved in the reaction. /// [DataDefinition] - public sealed class AdjustSolutionTemperatureEffect : ReagentEffect + public sealed partial class AdjustSolutionTemperatureEffect : ReagentEffect { /// /// The change in temperature. @@ -74,7 +74,7 @@ public override void Effect(ReagentEffectArgs args) /// /// Adjusts the thermal energy of the solution involved in the reaction. /// - public sealed class AdjustSolutionThermalEnergyEffect : ReagentEffect + public sealed partial class AdjustSolutionThermalEnergyEffect : ReagentEffect { /// /// The change in energy. diff --git a/Content.Server/Chemistry/ReagentEffectConditions/BodyTemperature.cs b/Content.Server/Chemistry/ReagentEffectConditions/BodyTemperature.cs index 057d2ebdb8c..fbb18948131 100644 --- a/Content.Server/Chemistry/ReagentEffectConditions/BodyTemperature.cs +++ b/Content.Server/Chemistry/ReagentEffectConditions/BodyTemperature.cs @@ -8,7 +8,7 @@ namespace Content.Server.Chemistry.ReagentEffectConditions /// Requires the solution entity to be above or below a certain temperature. /// Used for things like cryoxadone and pyroxadone. /// - public sealed class Temperature : ReagentEffectCondition + public sealed partial class Temperature : ReagentEffectCondition { [DataField("min")] public float Min = 0; diff --git a/Content.Server/Chemistry/ReagentEffectConditions/HasTagCondition.cs b/Content.Server/Chemistry/ReagentEffectConditions/HasTagCondition.cs index dccf4f33ebd..e2f4ca0968d 100644 --- a/Content.Server/Chemistry/ReagentEffectConditions/HasTagCondition.cs +++ b/Content.Server/Chemistry/ReagentEffectConditions/HasTagCondition.cs @@ -7,7 +7,7 @@ namespace Content.Server.Chemistry.ReagentEffectConditions; [UsedImplicitly] -public sealed class HasTag : ReagentEffectCondition +public sealed partial class HasTag : ReagentEffectCondition { [DataField("tag", customTypeSerializer: typeof(PrototypeIdSerializer))] public string Tag = default!; diff --git a/Content.Server/Chemistry/ReagentEffectConditions/MobStateCondition.cs b/Content.Server/Chemistry/ReagentEffectConditions/MobStateCondition.cs index b76e8fac3c8..4585cc6d8a0 100644 --- a/Content.Server/Chemistry/ReagentEffectConditions/MobStateCondition.cs +++ b/Content.Server/Chemistry/ReagentEffectConditions/MobStateCondition.cs @@ -5,7 +5,7 @@ namespace Content.Server.Chemistry.ReagentEffectConditions { - public sealed class MobStateCondition : ReagentEffectCondition + public sealed partial class MobStateCondition : ReagentEffectCondition { diff --git a/Content.Server/Chemistry/ReagentEffectConditions/OrganType.cs b/Content.Server/Chemistry/ReagentEffectConditions/OrganType.cs index cbb0ec2f522..a8e9e3077ba 100644 --- a/Content.Server/Chemistry/ReagentEffectConditions/OrganType.cs +++ b/Content.Server/Chemistry/ReagentEffectConditions/OrganType.cs @@ -9,7 +9,7 @@ namespace Content.Server.Chemistry.ReagentEffectConditions /// /// Requires that the metabolizing organ is or is not tagged with a certain MetabolizerType /// - public sealed class OrganType : ReagentEffectCondition + public sealed partial class OrganType : ReagentEffectCondition { [DataField("type", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] public string Type = default!; diff --git a/Content.Server/Chemistry/ReagentEffectConditions/ReagentThreshold.cs b/Content.Server/Chemistry/ReagentEffectConditions/ReagentThreshold.cs index befefd1f535..203656be738 100644 --- a/Content.Server/Chemistry/ReagentEffectConditions/ReagentThreshold.cs +++ b/Content.Server/Chemistry/ReagentEffectConditions/ReagentThreshold.cs @@ -11,7 +11,7 @@ namespace Content.Server.Chemistry.ReagentEffectConditions /// This can also trigger on -other- reagents, not just the one metabolizing. By default, it uses the /// one being metabolized. /// - public sealed class ReagentThreshold : ReagentEffectCondition + public sealed partial class ReagentThreshold : ReagentEffectCondition { [DataField("min")] public FixedPoint2 Min = FixedPoint2.Zero; @@ -19,6 +19,7 @@ public sealed class ReagentThreshold : ReagentEffectCondition [DataField("max")] public FixedPoint2 Max = FixedPoint2.MaxValue; + // TODO use ReagentId [DataField("reagent")] public string? Reagent; @@ -29,10 +30,8 @@ public override bool Condition(ReagentEffectArgs args) return true; // No condition to apply. var quant = FixedPoint2.Zero; - if (args.Source != null && args.Source.ContainsReagent(reagent)) - { - quant = args.Source.GetReagentQuantity(reagent); - } + if (args.Source != null) + quant = args.Source.GetTotalPrototypeQuantity(reagent); return quant >= Min && quant <= Max; } diff --git a/Content.Server/Chemistry/ReagentEffectConditions/SolutionTemperature.cs b/Content.Server/Chemistry/ReagentEffectConditions/SolutionTemperature.cs index 6b370fb9a42..974f2fb81aa 100644 --- a/Content.Server/Chemistry/ReagentEffectConditions/SolutionTemperature.cs +++ b/Content.Server/Chemistry/ReagentEffectConditions/SolutionTemperature.cs @@ -7,7 +7,7 @@ namespace Content.Server.Chemistry.ReagentEffectConditions /// Requires the solution to be above or below a certain temperature. /// Used for things like explosives. /// - public sealed class SolutionTemperature : ReagentEffectCondition + public sealed partial class SolutionTemperature : ReagentEffectCondition { [DataField("min")] public float Min = 0.0f; diff --git a/Content.Server/Chemistry/ReagentEffectConditions/TotalDamage.cs b/Content.Server/Chemistry/ReagentEffectConditions/TotalDamage.cs index 8c62dd7ce04..81f6475449d 100644 --- a/Content.Server/Chemistry/ReagentEffectConditions/TotalDamage.cs +++ b/Content.Server/Chemistry/ReagentEffectConditions/TotalDamage.cs @@ -5,7 +5,7 @@ namespace Content.Server.Chemistry.ReagentEffectConditions { - public sealed class TotalDamage : ReagentEffectCondition + public sealed partial class TotalDamage : ReagentEffectCondition { [DataField("max")] public FixedPoint2 Max = FixedPoint2.MaxValue; diff --git a/Content.Server/Chemistry/ReagentEffects/ActivateArtifact.cs b/Content.Server/Chemistry/ReagentEffects/ActivateArtifact.cs index bd89e8ec450..41af90f60a1 100644 --- a/Content.Server/Chemistry/ReagentEffects/ActivateArtifact.cs +++ b/Content.Server/Chemistry/ReagentEffects/ActivateArtifact.cs @@ -4,7 +4,7 @@ namespace Content.Server.Chemistry.ReagentEffects; -public sealed class ActivateArtifact : ReagentEffect +public sealed partial class ActivateArtifact : ReagentEffect { public override void Effect(ReagentEffectArgs args) { diff --git a/Content.Server/Chemistry/ReagentEffects/AddToSolutionReaction.cs b/Content.Server/Chemistry/ReagentEffects/AddToSolutionReaction.cs index 5ec0b2a08b5..e2d3af58f15 100644 --- a/Content.Server/Chemistry/ReagentEffects/AddToSolutionReaction.cs +++ b/Content.Server/Chemistry/ReagentEffects/AddToSolutionReaction.cs @@ -6,7 +6,7 @@ namespace Content.Server.Chemistry.ReagentEffects { [UsedImplicitly] - public sealed class AddToSolutionReaction : ReagentEffect + public sealed partial class AddToSolutionReaction : ReagentEffect { [DataField("solution")] private string _solution = "reagents"; diff --git a/Content.Server/Chemistry/ReagentEffects/AdjustAlert.cs b/Content.Server/Chemistry/ReagentEffects/AdjustAlert.cs index acae2e01533..ee384a2834b 100644 --- a/Content.Server/Chemistry/ReagentEffects/AdjustAlert.cs +++ b/Content.Server/Chemistry/ReagentEffects/AdjustAlert.cs @@ -5,7 +5,7 @@ namespace Content.Server.Chemistry.ReagentEffects; -public sealed class AdjustAlert : ReagentEffect +public sealed partial class AdjustAlert : ReagentEffect { [DataField("alertType", required: true)] public AlertType Type; diff --git a/Content.Server/Chemistry/ReagentEffects/AdjustReagent.cs b/Content.Server/Chemistry/ReagentEffects/AdjustReagent.cs index c29459b30fd..c79dd243329 100644 --- a/Content.Server/Chemistry/ReagentEffects/AdjustReagent.cs +++ b/Content.Server/Chemistry/ReagentEffects/AdjustReagent.cs @@ -9,13 +9,14 @@ namespace Content.Server.Chemistry.ReagentEffects { [UsedImplicitly] - public sealed class AdjustReagent : ReagentEffect + public sealed partial class AdjustReagent : ReagentEffect { /// /// The reagent ID to remove. Only one of this and should be active. /// [DataField("reagent", customTypeSerializer:typeof(PrototypeIdSerializer))] public string? Reagent = null; + // TODO use ReagentId /// /// The metabolism group to remove, if the reagent satisfies any. @@ -38,8 +39,8 @@ public override void Effect(ReagentEffectArgs args) if (Reagent != null) { - if (amount < 0 && args.Source.ContainsReagent(Reagent)) - solutionSys.TryRemoveReagent(args.SolutionEntity, args.Source, Reagent, -amount); + if (amount < 0 && args.Source.ContainsPrototype(Reagent)) + solutionSys.RemoveReagent(args.SolutionEntity, args.Source, Reagent, -amount); if (amount > 0) solutionSys.TryAddReagent(args.SolutionEntity, args.Source, Reagent, amount, out _); } @@ -48,13 +49,13 @@ public override void Effect(ReagentEffectArgs args) var prototypeMan = IoCManager.Resolve(); foreach (var quant in args.Source.Contents.ToArray()) { - var proto = prototypeMan.Index(quant.ReagentId); + var proto = prototypeMan.Index(quant.Reagent.Prototype); if (proto.Metabolisms != null && proto.Metabolisms.ContainsKey(Group)) { if (amount < 0) - solutionSys.TryRemoveReagent(args.SolutionEntity, args.Source, quant.ReagentId, amount); + solutionSys.RemoveReagent(args.SolutionEntity, args.Source, quant.Reagent, amount); if (amount > 0) - solutionSys.TryAddReagent(args.SolutionEntity, args.Source, quant.ReagentId, amount, out _); + solutionSys.TryAddReagent(args.SolutionEntity, args.Source, quant.Reagent, amount, out _); } } } diff --git a/Content.Server/Chemistry/ReagentEffects/AdjustTemperature.cs b/Content.Server/Chemistry/ReagentEffects/AdjustTemperature.cs index b96d2a04697..66ae5ba1db0 100644 --- a/Content.Server/Chemistry/ReagentEffects/AdjustTemperature.cs +++ b/Content.Server/Chemistry/ReagentEffects/AdjustTemperature.cs @@ -5,7 +5,7 @@ namespace Content.Server.Chemistry.ReagentEffects { - public sealed class AdjustTemperature : ReagentEffect + public sealed partial class AdjustTemperature : ReagentEffect { [DataField("amount")] public float Amount; diff --git a/Content.Server/Chemistry/ReagentEffects/CauseZombieInfection.cs b/Content.Server/Chemistry/ReagentEffects/CauseZombieInfection.cs index 011ef6be4dc..ed3098dbdcd 100644 --- a/Content.Server/Chemistry/ReagentEffects/CauseZombieInfection.cs +++ b/Content.Server/Chemistry/ReagentEffects/CauseZombieInfection.cs @@ -7,10 +7,10 @@ namespace Content.Server.Chemistry.ReagentEffects; -public sealed class CauseZombieInfection : ReagentEffect +public sealed partial class CauseZombieInfection : ReagentEffect { protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) - => Loc.GetString("reagent-effect-guidebook-cause-zombie-infection", ("chance", Probability)); + => Loc.GetString("reagent-effect-guidebook-cause-zombie-infection", ("chance", Probability)); // Adds the Zombie Infection Components public override void Effect(ReagentEffectArgs args) diff --git a/Content.Server/Chemistry/ReagentEffects/ChemCleanBoodstream.cs b/Content.Server/Chemistry/ReagentEffects/ChemCleanBoodstream.cs index 132315663f6..f0deb29f87f 100644 --- a/Content.Server/Chemistry/ReagentEffects/ChemCleanBoodstream.cs +++ b/Content.Server/Chemistry/ReagentEffects/ChemCleanBoodstream.cs @@ -9,7 +9,7 @@ namespace Content.Server.Chemistry.ReactionEffects /// Basically smoke and foam reactions. /// [UsedImplicitly] - public sealed class ChemCleanBloodstream : ReagentEffect + public sealed partial class ChemCleanBloodstream : ReagentEffect { [DataField("cleanseRate")] public float CleanseRate = 3.0f; diff --git a/Content.Server/Chemistry/ReagentEffects/ChemHealEyeDamage.cs b/Content.Server/Chemistry/ReagentEffects/ChemHealEyeDamage.cs index f95c52ba409..9f074bca523 100644 --- a/Content.Server/Chemistry/ReagentEffects/ChemHealEyeDamage.cs +++ b/Content.Server/Chemistry/ReagentEffects/ChemHealEyeDamage.cs @@ -10,7 +10,7 @@ namespace Content.Server.Chemistry.ReagentEffects /// Heal or apply eye damage /// [UsedImplicitly] - public sealed class ChemHealEyeDamage : ReagentEffect + public sealed partial class ChemHealEyeDamage : ReagentEffect { /// /// How much eye damage to add. diff --git a/Content.Server/Chemistry/ReagentEffects/ChemVomit.cs b/Content.Server/Chemistry/ReagentEffects/ChemVomit.cs index 74ecfefff41..cfdfd5ffa05 100644 --- a/Content.Server/Chemistry/ReagentEffects/ChemVomit.cs +++ b/Content.Server/Chemistry/ReagentEffects/ChemVomit.cs @@ -9,7 +9,7 @@ namespace Content.Server.Chemistry.ReagentEffects /// Forces you to vomit. /// [UsedImplicitly] - public sealed class ChemVomit : ReagentEffect + public sealed partial class ChemVomit : ReagentEffect { /// How many units of thirst to add each time we vomit [DataField("thirstAmount")] diff --git a/Content.Server/Chemistry/ReagentEffects/CreateGas.cs b/Content.Server/Chemistry/ReagentEffects/CreateGas.cs index 0778c0727f3..ca9ecd67d18 100644 --- a/Content.Server/Chemistry/ReagentEffects/CreateGas.cs +++ b/Content.Server/Chemistry/ReagentEffects/CreateGas.cs @@ -6,7 +6,7 @@ namespace Content.Server.Chemistry.ReagentEffects; -public sealed class CreateGas : ReagentEffect +public sealed partial class CreateGas : ReagentEffect { [DataField("gas", required: true)] public Gas Gas = default!; diff --git a/Content.Server/Chemistry/ReagentEffects/CureZombieInfection.cs b/Content.Server/Chemistry/ReagentEffects/CureZombieInfection.cs index 638830c0466..4e1733e60aa 100644 --- a/Content.Server/Chemistry/ReagentEffects/CureZombieInfection.cs +++ b/Content.Server/Chemistry/ReagentEffects/CureZombieInfection.cs @@ -6,7 +6,7 @@ namespace Content.Server.Chemistry.ReagentEffects; -public sealed class CureZombieInfection : ReagentEffect +public sealed partial class CureZombieInfection : ReagentEffect { [DataField("innoculate")] public bool Innoculate; diff --git a/Content.Server/Chemistry/ReagentEffects/Drunk.cs b/Content.Server/Chemistry/ReagentEffects/Drunk.cs index dedf984b2b7..8053c8100fb 100644 --- a/Content.Server/Chemistry/ReagentEffects/Drunk.cs +++ b/Content.Server/Chemistry/ReagentEffects/Drunk.cs @@ -4,7 +4,7 @@ namespace Content.Server.Chemistry.ReagentEffects; -public sealed class Drunk : ReagentEffect +public sealed partial class Drunk : ReagentEffect { /// /// BoozePower is how long each metabolism cycle will make the drunk effect last for. diff --git a/Content.Server/Chemistry/ReagentEffects/Electrocute.cs b/Content.Server/Chemistry/ReagentEffects/Electrocute.cs index b6d2d58e289..85819d36eab 100644 --- a/Content.Server/Chemistry/ReagentEffects/Electrocute.cs +++ b/Content.Server/Chemistry/ReagentEffects/Electrocute.cs @@ -4,7 +4,7 @@ namespace Content.Server.Chemistry.ReagentEffects; -public sealed class Electrocute : ReagentEffect +public sealed partial class Electrocute : ReagentEffect { [DataField("electrocuteTime")] public int ElectrocuteTime = 2; diff --git a/Content.Server/Chemistry/ReagentEffects/Emote.cs b/Content.Server/Chemistry/ReagentEffects/Emote.cs index 753435a599e..45da55ea1aa 100644 --- a/Content.Server/Chemistry/ReagentEffects/Emote.cs +++ b/Content.Server/Chemistry/ReagentEffects/Emote.cs @@ -11,7 +11,7 @@ namespace Content.Server.Chemistry.ReagentEffects; /// Tries to force someone to emote (scream, laugh, etc). /// [UsedImplicitly] -public sealed class Emote : ReagentEffect +public sealed partial class Emote : ReagentEffect { [DataField("emote", customTypeSerializer: typeof(PrototypeIdSerializer))] public string? EmoteId; diff --git a/Content.Server/Chemistry/ReagentEffects/ExtinguishReaction.cs b/Content.Server/Chemistry/ReagentEffects/ExtinguishReaction.cs index eb2aefd444b..e9029089988 100644 --- a/Content.Server/Chemistry/ReagentEffects/ExtinguishReaction.cs +++ b/Content.Server/Chemistry/ReagentEffects/ExtinguishReaction.cs @@ -7,7 +7,7 @@ namespace Content.Server.Chemistry.ReagentEffects { [UsedImplicitly] - public sealed class ExtinguishReaction : ReagentEffect + public sealed partial class ExtinguishReaction : ReagentEffect { protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) => Loc.GetString("reagent-effect-guidebook-extinguish-reaction", ("chance", Probability)); diff --git a/Content.Server/Chemistry/ReagentEffects/FlammableReaction.cs b/Content.Server/Chemistry/ReagentEffects/FlammableReaction.cs index 0cf28d1ac1d..26bd4c8b7ea 100644 --- a/Content.Server/Chemistry/ReagentEffects/FlammableReaction.cs +++ b/Content.Server/Chemistry/ReagentEffects/FlammableReaction.cs @@ -8,7 +8,7 @@ namespace Content.Server.Chemistry.ReagentEffects { [UsedImplicitly] - public sealed class FlammableReaction : ReagentEffect + public sealed partial class FlammableReaction : ReagentEffect { [DataField("multiplier")] public float Multiplier = 0.05f; diff --git a/Content.Server/Chemistry/ReagentEffects/HealthChange.cs b/Content.Server/Chemistry/ReagentEffects/HealthChange.cs index f47813d78df..6d22db742f4 100644 --- a/Content.Server/Chemistry/ReagentEffects/HealthChange.cs +++ b/Content.Server/Chemistry/ReagentEffects/HealthChange.cs @@ -14,7 +14,7 @@ namespace Content.Server.Chemistry.ReagentEffects /// Default metabolism for medicine reagents. /// [UsedImplicitly] - public sealed class HealthChange : ReagentEffect + public sealed partial class HealthChange : ReagentEffect { /// /// Damage to apply every metabolism cycle. Damage Ignores resistances. diff --git a/Content.Server/Chemistry/ReagentEffects/Ignite.cs b/Content.Server/Chemistry/ReagentEffects/Ignite.cs index 6f2a44ea2d6..1fc90f63e31 100644 --- a/Content.Server/Chemistry/ReagentEffects/Ignite.cs +++ b/Content.Server/Chemistry/ReagentEffects/Ignite.cs @@ -8,7 +8,7 @@ namespace Content.Server.Chemistry.ReagentEffects; /// /// Ignites a mob. /// -public sealed class Ignite : ReagentEffect +public sealed partial class Ignite : ReagentEffect { public override bool ShouldLog => true; diff --git a/Content.Server/Chemistry/ReagentEffects/MakeSentient.cs b/Content.Server/Chemistry/ReagentEffects/MakeSentient.cs index 899477cfa58..00266c39a85 100644 --- a/Content.Server/Chemistry/ReagentEffects/MakeSentient.cs +++ b/Content.Server/Chemistry/ReagentEffects/MakeSentient.cs @@ -1,13 +1,12 @@ using Content.Server.Ghost.Roles.Components; -using Content.Server.Mind.Components; using Content.Server.Speech.Components; using Content.Shared.Chemistry.Reagent; -using Content.Server.Ghost.Roles.Components; +using Content.Shared.Mind.Components; using Robust.Shared.Prototypes; namespace Content.Server.Chemistry.ReagentEffects; -public sealed class MakeSentient : ReagentEffect +public sealed partial class MakeSentient : ReagentEffect { protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) => Loc.GetString("reagent-effect-guidebook-make-sentient", ("chance", Probability)); @@ -17,38 +16,29 @@ public override void Effect(ReagentEffectArgs args) var entityManager = args.EntityManager; var uid = args.SolutionEntity; - // This makes it so it doesn't affect things that are already sentient - if (entityManager.HasComponent(uid)) - { - return; - } - - // This piece of code makes things able to speak "normally". One thing of note is that monkeys have a unique accent and won't be affected by this. + // Let affected entities speak normally to make this effect different from, say, the "random sentience" event + // This also works on entities that already have a mind + // We call this before the mind check to allow things like player-controlled mice to be able to benefit from the effect entityManager.RemoveComponent(uid); - - // Monke talk. This makes cognizine a cure to AMIV's long term damage funnily enough, do with this information what you will. entityManager.RemoveComponent(uid); - // This makes it so it doesn't add a ghost role to things that are already sentient + // Stops from adding a ghost role to things like people who already have a mind if (entityManager.HasComponent(uid)) { return; } - // No idea what anything past this point does - if (entityManager.TryGetComponent(uid, out GhostRoleComponent? ghostRole) || - entityManager.TryGetComponent(uid, out GhostTakeoverAvailableComponent? takeOver)) + // Don't add a ghost role to things that already have ghost roles + if (entityManager.TryGetComponent(uid, out GhostRoleComponent? ghostRole)) { return; } ghostRole = entityManager.AddComponent(uid); - entityManager.AddComponent(uid); + entityManager.EnsureComponent(uid); var entityData = entityManager.GetComponent(uid); ghostRole.RoleName = entityData.EntityName; ghostRole.RoleDescription = Loc.GetString("ghost-role-information-cognizine-description"); } } - -// Original code written by areitpog on GitHub in Issue #7666, then I (Interrobang01) copied it and used my nonexistant C# skills to try to make it work again. diff --git a/Content.Server/Chemistry/ReagentEffects/ModifyBleedAmount.cs b/Content.Server/Chemistry/ReagentEffects/ModifyBleedAmount.cs index f50bcc4a271..bb990214f1a 100644 --- a/Content.Server/Chemistry/ReagentEffects/ModifyBleedAmount.cs +++ b/Content.Server/Chemistry/ReagentEffects/ModifyBleedAmount.cs @@ -5,7 +5,7 @@ namespace Content.Server.Chemistry.ReagentEffects; -public sealed class ModifyBleedAmount : ReagentEffect +public sealed partial class ModifyBleedAmount : ReagentEffect { [DataField("scaled")] public bool Scaled = false; diff --git a/Content.Server/Chemistry/ReagentEffects/ModifyBloodLevel.cs b/Content.Server/Chemistry/ReagentEffects/ModifyBloodLevel.cs index 6a125436a2a..42fb14809f5 100644 --- a/Content.Server/Chemistry/ReagentEffects/ModifyBloodLevel.cs +++ b/Content.Server/Chemistry/ReagentEffects/ModifyBloodLevel.cs @@ -6,7 +6,7 @@ namespace Content.Server.Chemistry.ReagentEffects; -public sealed class ModifyBloodLevel : ReagentEffect +public sealed partial class ModifyBloodLevel : ReagentEffect { [DataField("scaled")] public bool Scaled = false; diff --git a/Content.Server/Chemistry/ReagentEffects/ModifyLungGas.cs b/Content.Server/Chemistry/ReagentEffects/ModifyLungGas.cs index 7cecac7e6b6..e12cab80a91 100644 --- a/Content.Server/Chemistry/ReagentEffects/ModifyLungGas.cs +++ b/Content.Server/Chemistry/ReagentEffects/ModifyLungGas.cs @@ -5,7 +5,7 @@ namespace Content.Server.Chemistry.ReagentEffects; -public sealed class ModifyLungGas : ReagentEffect +public sealed partial class ModifyLungGas : ReagentEffect { [DataField("ratios", required: true)] private Dictionary _ratios = default!; diff --git a/Content.Server/Chemistry/ReagentEffects/MovespeedModifier.cs b/Content.Server/Chemistry/ReagentEffects/MovespeedModifier.cs index 6564346b870..948726bb062 100644 --- a/Content.Server/Chemistry/ReagentEffects/MovespeedModifier.cs +++ b/Content.Server/Chemistry/ReagentEffects/MovespeedModifier.cs @@ -10,7 +10,7 @@ namespace Content.Server.Chemistry.ReagentEffects /// Default metabolism for stimulants and tranqs. Attempts to find a MovementSpeedModifier on the target, /// adding one if not there and to change the movespeed /// - public sealed class MovespeedModifier : ReagentEffect + public sealed partial class MovespeedModifier : ReagentEffect { /// /// How much the entities' walk speed is multiplied by. diff --git a/Content.Server/Chemistry/ReagentEffects/Oxygenate.cs b/Content.Server/Chemistry/ReagentEffects/Oxygenate.cs index f642c1c8a63..00ac03181d7 100644 --- a/Content.Server/Chemistry/ReagentEffects/Oxygenate.cs +++ b/Content.Server/Chemistry/ReagentEffects/Oxygenate.cs @@ -5,7 +5,7 @@ namespace Content.Server.Chemistry.ReagentEffects; -public sealed class Oxygenate : ReagentEffect +public sealed partial class Oxygenate : ReagentEffect { [DataField("factor")] public float Factor = 1f; diff --git a/Content.Server/Chemistry/ReagentEffects/Paralyze.cs b/Content.Server/Chemistry/ReagentEffects/Paralyze.cs index 8a27de9b073..262d942fa95 100644 --- a/Content.Server/Chemistry/ReagentEffects/Paralyze.cs +++ b/Content.Server/Chemistry/ReagentEffects/Paralyze.cs @@ -4,7 +4,7 @@ namespace Content.Server.Chemistry.ReagentEffects; -public sealed class Paralyze : ReagentEffect +public sealed partial class Paralyze : ReagentEffect { [DataField("paralyzeTime")] public double ParalyzeTime = 2; diff --git a/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustAttribute.cs b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustAttribute.cs index e8146d0bcc5..a2d35c82643 100644 --- a/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustAttribute.cs +++ b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustAttribute.cs @@ -7,7 +7,7 @@ namespace Content.Server.Chemistry.ReagentEffects.PlantMetabolism { [ImplicitDataDefinitionForInheritors] - public abstract class PlantAdjustAttribute : ReagentEffect + public abstract partial class PlantAdjustAttribute : ReagentEffect { [DataField("amount")] public float Amount { get; protected set; } = 1; [DataField("prob")] public float Prob { get; protected set; } = 1; // = (80); diff --git a/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustHealth.cs b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustHealth.cs index d6ab8c79639..f03464469eb 100644 --- a/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustHealth.cs +++ b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustHealth.cs @@ -3,7 +3,7 @@ namespace Content.Server.Chemistry.ReagentEffects.PlantMetabolism { - public sealed class PlantAdjustHealth : PlantAdjustAttribute + public sealed partial class PlantAdjustHealth : PlantAdjustAttribute { public override void Effect(ReagentEffectArgs args) { diff --git a/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustMutationLevel.cs b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustMutationLevel.cs index 560e684395f..8c8d04765a2 100644 --- a/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustMutationLevel.cs +++ b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustMutationLevel.cs @@ -2,7 +2,7 @@ namespace Content.Server.Chemistry.ReagentEffects.PlantMetabolism { - public sealed class PlantAdjustMutationLevel : PlantAdjustAttribute + public sealed partial class PlantAdjustMutationLevel : PlantAdjustAttribute { public override void Effect(ReagentEffectArgs args) { diff --git a/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustMutationMod.cs b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustMutationMod.cs index 7d204f39db5..af4a00a044e 100644 --- a/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustMutationMod.cs +++ b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustMutationMod.cs @@ -4,7 +4,7 @@ namespace Content.Server.Chemistry.ReagentEffects.PlantMetabolism { [UsedImplicitly] - public sealed class PlantAdjustMutationMod : PlantAdjustAttribute + public sealed partial class PlantAdjustMutationMod : PlantAdjustAttribute { public override void Effect(ReagentEffectArgs args) { diff --git a/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustNutrition.cs b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustNutrition.cs index 9d408e3b858..900121412e8 100644 --- a/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustNutrition.cs +++ b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustNutrition.cs @@ -5,7 +5,7 @@ namespace Content.Server.Chemistry.ReagentEffects.PlantMetabolism { [UsedImplicitly] - public sealed class PlantAdjustNutrition : PlantAdjustAttribute + public sealed partial class PlantAdjustNutrition : PlantAdjustAttribute { public override void Effect(ReagentEffectArgs args) { diff --git a/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustPests.cs b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustPests.cs index cebe30f3ddd..27729b4b2ca 100644 --- a/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustPests.cs +++ b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustPests.cs @@ -4,7 +4,7 @@ namespace Content.Server.Chemistry.ReagentEffects.PlantMetabolism { [UsedImplicitly] - public sealed class PlantAdjustPests : PlantAdjustAttribute + public sealed partial class PlantAdjustPests : PlantAdjustAttribute { public override void Effect(ReagentEffectArgs args) { diff --git a/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustToxins.cs b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustToxins.cs index 9565af7c394..35130238ad5 100644 --- a/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustToxins.cs +++ b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustToxins.cs @@ -4,7 +4,7 @@ namespace Content.Server.Chemistry.ReagentEffects.PlantMetabolism { [UsedImplicitly] - public sealed class PlantAdjustToxins : PlantAdjustAttribute + public sealed partial class PlantAdjustToxins : PlantAdjustAttribute { public override void Effect(ReagentEffectArgs args) { diff --git a/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustWater.cs b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustWater.cs index 2f4b8d9927b..71b4670dc65 100644 --- a/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustWater.cs +++ b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustWater.cs @@ -5,7 +5,7 @@ namespace Content.Server.Chemistry.ReagentEffects.PlantMetabolism { [UsedImplicitly] - public sealed class PlantAdjustWater : PlantAdjustAttribute + public sealed partial class PlantAdjustWater : PlantAdjustAttribute { public override void Effect(ReagentEffectArgs args) { diff --git a/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustWeeds.cs b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustWeeds.cs index bd78238dfdf..6184b95adb8 100644 --- a/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustWeeds.cs +++ b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAdjustWeeds.cs @@ -4,7 +4,7 @@ namespace Content.Server.Chemistry.ReagentEffects.PlantMetabolism { [UsedImplicitly] - public sealed class PlantAdjustWeeds : PlantAdjustAttribute + public sealed partial class PlantAdjustWeeds : PlantAdjustAttribute { public override void Effect(ReagentEffectArgs args) { diff --git a/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAffectGrowth.cs b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAffectGrowth.cs index 32ff4d717ab..54ec628fdc9 100644 --- a/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAffectGrowth.cs +++ b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantAffectGrowth.cs @@ -5,7 +5,7 @@ namespace Content.Server.Chemistry.ReagentEffects.PlantMetabolism { [UsedImplicitly] - public sealed class PlantAffectGrowth : PlantAdjustAttribute + public sealed partial class PlantAffectGrowth : PlantAdjustAttribute { public override void Effect(ReagentEffectArgs args) { diff --git a/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantCryoxadone.cs b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantCryoxadone.cs index 127690ed75e..83a5f56e592 100644 --- a/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantCryoxadone.cs +++ b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantCryoxadone.cs @@ -8,7 +8,7 @@ namespace Content.Server.Chemistry.ReagentEffects.PlantMetabolism { [UsedImplicitly] [DataDefinition] - public sealed class PlantCryoxadone : ReagentEffect + public sealed partial class PlantCryoxadone : ReagentEffect { public override void Effect(ReagentEffectArgs args) { diff --git a/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantDiethylamine.cs b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantDiethylamine.cs index dbba70dfff2..23cb436d2f1 100644 --- a/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantDiethylamine.cs +++ b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantDiethylamine.cs @@ -9,7 +9,7 @@ namespace Content.Server.Chemistry.ReagentEffects.PlantMetabolism { [UsedImplicitly] [DataDefinition] - public sealed class PlantDiethylamine : ReagentEffect + public sealed partial class PlantDiethylamine : ReagentEffect { public override void Effect(ReagentEffectArgs args) { diff --git a/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantPhalanximine.cs b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantPhalanximine.cs new file mode 100644 index 00000000000..c0640d7fc04 --- /dev/null +++ b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/PlantPhalanximine.cs @@ -0,0 +1,24 @@ +using Content.Server.Botany.Components; +using Content.Shared.Chemistry.Reagent; +using JetBrains.Annotations; +using Robust.Shared.Prototypes; + +namespace Content.Server.Chemistry.ReagentEffects.PlantMetabolism +{ + [UsedImplicitly] + [DataDefinition] + public sealed partial class PlantPhalanximine : ReagentEffect + { + public override void Effect(ReagentEffectArgs args) + { + if (!args.EntityManager.TryGetComponent(args.SolutionEntity, out PlantHolderComponent? plantHolderComp) + || plantHolderComp.Seed == null || plantHolderComp.Dead || + plantHolderComp.Seed.Immutable) + return; + + plantHolderComp.Seed.Viable = true; + } + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) => Loc.GetString("reagent-effect-guidebook-missing", ("chance", Probability)); + } +} diff --git a/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/RobustHarvest.cs b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/RobustHarvest.cs index 81dd072a622..bcd5a01170e 100644 --- a/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/RobustHarvest.cs +++ b/Content.Server/Chemistry/ReagentEffects/PlantMetabolism/RobustHarvest.cs @@ -9,7 +9,7 @@ namespace Content.Server.Chemistry.ReagentEffects.PlantMetabolism { [UsedImplicitly] [DataDefinition] - public sealed class RobustHarvest : ReagentEffect + public sealed partial class RobustHarvest : ReagentEffect { [DataField("potencyLimit")] public int PotencyLimit = 50; diff --git a/Content.Server/Chemistry/ReagentEffects/Polymorph.cs b/Content.Server/Chemistry/ReagentEffects/Polymorph.cs new file mode 100644 index 00000000000..569da51e39a --- /dev/null +++ b/Content.Server/Chemistry/ReagentEffects/Polymorph.cs @@ -0,0 +1,33 @@ +using Content.Server.Polymorph.Components; +using Content.Server.Polymorph.Systems; +using Content.Shared.Chemistry.Reagent; +using Content.Shared.Polymorph; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Server.Chemistry.ReagentEffects; + +public sealed partial class Polymorph : ReagentEffect +{ + /// + /// What polymorph prototype is used on effect + /// + [DataField("prototype", customTypeSerializer:typeof(PrototypeIdSerializer))] + public string PolymorphPrototype { get; set; } + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-make-polymorph", + ("chance", Probability), ("entityname", + prototype.Index(prototype.Index(PolymorphPrototype).Entity).Name)); + + public override void Effect(ReagentEffectArgs args) + { + var entityManager = args.EntityManager; + var uid = args.SolutionEntity; + var polySystem = entityManager.System(); + + // Make it into a prototype + entityManager.EnsureComponent(uid); + polySystem.PolymorphEntity(uid, PolymorphPrototype); + } +} diff --git a/Content.Server/Chemistry/ReagentEffects/PopupMessage.cs b/Content.Server/Chemistry/ReagentEffects/PopupMessage.cs index 9d060323073..660a539e8ad 100644 --- a/Content.Server/Chemistry/ReagentEffects/PopupMessage.cs +++ b/Content.Server/Chemistry/ReagentEffects/PopupMessage.cs @@ -6,7 +6,7 @@ namespace Content.Server.Chemistry.ReagentEffects { - public sealed class PopupMessage : ReagentEffect + public sealed partial class PopupMessage : ReagentEffect { [DataField("messages", required: true)] public string[] Messages = default!; diff --git a/Content.Server/Chemistry/ReagentEffects/ResetNarcolepsy.cs b/Content.Server/Chemistry/ReagentEffects/ResetNarcolepsy.cs index 20044d4037c..fa4f9108918 100644 --- a/Content.Server/Chemistry/ReagentEffects/ResetNarcolepsy.cs +++ b/Content.Server/Chemistry/ReagentEffects/ResetNarcolepsy.cs @@ -9,7 +9,7 @@ namespace Content.Server.Chemistry.ReagentEffects; /// Reset narcolepsy timer /// [UsedImplicitly] -public sealed class ResetNarcolepsy : ReagentEffect +public sealed partial class ResetNarcolepsy : ReagentEffect { /// /// The # of seconds the effect resets the narcolepsy timer to diff --git a/Content.Server/Chemistry/ReagentEffects/SatiateHunger.cs b/Content.Server/Chemistry/ReagentEffects/SatiateHunger.cs index a0d00c538e6..be772022556 100644 --- a/Content.Server/Chemistry/ReagentEffects/SatiateHunger.cs +++ b/Content.Server/Chemistry/ReagentEffects/SatiateHunger.cs @@ -10,7 +10,7 @@ namespace Content.Server.Chemistry.ReagentEffects /// Attempts to find a HungerComponent on the target, /// and to update it's hunger values. /// - public sealed class SatiateHunger : ReagentEffect + public sealed partial class SatiateHunger : ReagentEffect { private const float DefaultNutritionFactor = 3.0f; diff --git a/Content.Server/Chemistry/ReagentEffects/SatiateThirst.cs b/Content.Server/Chemistry/ReagentEffects/SatiateThirst.cs index 79911110a98..551e4923bc9 100644 --- a/Content.Server/Chemistry/ReagentEffects/SatiateThirst.cs +++ b/Content.Server/Chemistry/ReagentEffects/SatiateThirst.cs @@ -9,7 +9,7 @@ namespace Content.Server.Chemistry.ReagentEffects /// Default metabolism for drink reagents. Attempts to find a ThirstComponent on the target, /// and to update it's thirst values. /// - public sealed class SatiateThirst : ReagentEffect + public sealed partial class SatiateThirst : ReagentEffect { private const float DefaultHydrationFactor = 3.0f; diff --git a/Content.Server/Chemistry/ReagentEffects/StatusEffects/GenericStatusEffect.cs b/Content.Server/Chemistry/ReagentEffects/StatusEffects/GenericStatusEffect.cs index 982606194a9..06608df4bbf 100644 --- a/Content.Server/Chemistry/ReagentEffects/StatusEffects/GenericStatusEffect.cs +++ b/Content.Server/Chemistry/ReagentEffects/StatusEffects/GenericStatusEffect.cs @@ -15,7 +15,7 @@ namespace Content.Server.Chemistry.ReagentEffects.StatusEffects /// Can be used for things like adding accents or something. I don't know. Go wild. /// [UsedImplicitly] - public sealed class GenericStatusEffect : ReagentEffect + public sealed partial class GenericStatusEffect : ReagentEffect { [DataField("key", required: true)] public string Key = default!; diff --git a/Content.Server/Chemistry/ReagentEffects/StatusEffects/Jitter.cs b/Content.Server/Chemistry/ReagentEffects/StatusEffects/Jitter.cs index 3aa81e20f6a..7ceb91a0d17 100644 --- a/Content.Server/Chemistry/ReagentEffects/StatusEffects/Jitter.cs +++ b/Content.Server/Chemistry/ReagentEffects/StatusEffects/Jitter.cs @@ -9,7 +9,7 @@ namespace Content.Server.Chemistry.ReagentEffects.StatusEffects /// This doesn't use generic status effects because it needs to /// take in some parameters that JitterSystem needs. /// - public sealed class Jitter : ReagentEffect + public sealed partial class Jitter : ReagentEffect { [DataField("amplitude")] public float Amplitude = 10.0f; diff --git a/Content.Server/Chemistry/ReagentEffects/WashCreamPieReaction.cs b/Content.Server/Chemistry/ReagentEffects/WashCreamPieReaction.cs index 6e2e871d2da..9bf6792eca2 100644 --- a/Content.Server/Chemistry/ReagentEffects/WashCreamPieReaction.cs +++ b/Content.Server/Chemistry/ReagentEffects/WashCreamPieReaction.cs @@ -7,7 +7,7 @@ namespace Content.Server.Chemistry.ReagentEffects { [UsedImplicitly] - public sealed class WashCreamPieReaction : ReagentEffect + public sealed partial class WashCreamPieReaction : ReagentEffect { protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) => Loc.GetString("reagent-effect-guidebook-wash-cream-pie-reaction", ("chance", Probability)); diff --git a/Content.Server/Chemistry/TileReactions/CleanDecalsReaction.cs b/Content.Server/Chemistry/TileReactions/CleanDecalsReaction.cs index b5e10258ca5..b5d5862e6c7 100644 --- a/Content.Server/Chemistry/TileReactions/CleanDecalsReaction.cs +++ b/Content.Server/Chemistry/TileReactions/CleanDecalsReaction.cs @@ -13,7 +13,7 @@ namespace Content.Server.Chemistry.TileReactions; /// Purges all cleanable decals on a tile. /// [DataDefinition] -public sealed class CleanDecalsReaction : ITileReaction +public sealed partial class CleanDecalsReaction : ITileReaction { /// /// For every cleaned decal we lose this much reagent. diff --git a/Content.Server/Chemistry/TileReactions/CleanTileReaction.cs b/Content.Server/Chemistry/TileReactions/CleanTileReaction.cs index 1ac40375a4a..b179adc3700 100644 --- a/Content.Server/Chemistry/TileReactions/CleanTileReaction.cs +++ b/Content.Server/Chemistry/TileReactions/CleanTileReaction.cs @@ -14,7 +14,7 @@ namespace Content.Server.Chemistry.TileReactions; /// Turns all of the reagents on a puddle into water. /// [DataDefinition] -public sealed class CleanTileReaction : ITileReaction +public sealed partial class CleanTileReaction : ITileReaction { /// /// How much it costs to clean 1 unit of reagent. diff --git a/Content.Server/Chemistry/TileReactions/CreateEntityTileReaction.cs b/Content.Server/Chemistry/TileReactions/CreateEntityTileReaction.cs index e59d669868c..3b1494cc2f0 100644 --- a/Content.Server/Chemistry/TileReactions/CreateEntityTileReaction.cs +++ b/Content.Server/Chemistry/TileReactions/CreateEntityTileReaction.cs @@ -12,7 +12,7 @@ namespace Content.Server.Chemistry.TileReactions; [DataDefinition] -public sealed class CreateEntityTileReaction : ITileReaction +public sealed partial class CreateEntityTileReaction : ITileReaction { [DataField("entity", required: true, customTypeSerializer:typeof(PrototypeIdSerializer))] public string Entity = default!; diff --git a/Content.Server/Chemistry/TileReactions/ExtinguishTileReaction.cs b/Content.Server/Chemistry/TileReactions/ExtinguishTileReaction.cs index 36438d8dee3..312b88bd341 100644 --- a/Content.Server/Chemistry/TileReactions/ExtinguishTileReaction.cs +++ b/Content.Server/Chemistry/TileReactions/ExtinguishTileReaction.cs @@ -10,7 +10,7 @@ namespace Content.Server.Chemistry.TileReactions { [UsedImplicitly] [DataDefinition] - public sealed class ExtinguishTileReaction : ITileReaction + public sealed partial class ExtinguishTileReaction : ITileReaction { [DataField("coolingTemperature")] private float _coolingTemperature = 2f; diff --git a/Content.Server/Chemistry/TileReactions/FlammableTileReaction.cs b/Content.Server/Chemistry/TileReactions/FlammableTileReaction.cs index 47f5c910064..a694bf60190 100644 --- a/Content.Server/Chemistry/TileReactions/FlammableTileReaction.cs +++ b/Content.Server/Chemistry/TileReactions/FlammableTileReaction.cs @@ -9,7 +9,7 @@ namespace Content.Server.Chemistry.TileReactions { [UsedImplicitly] [DataDefinition] - public sealed class FlammableTileReaction : ITileReaction + public sealed partial class FlammableTileReaction : ITileReaction { [DataField("temperatureMultiplier")] private float _temperatureMultiplier = 1.15f; diff --git a/Content.Server/Chemistry/TileReactions/PryTileReaction.cs b/Content.Server/Chemistry/TileReactions/PryTileReaction.cs index 5598634e26a..39e95df5f7c 100644 --- a/Content.Server/Chemistry/TileReactions/PryTileReaction.cs +++ b/Content.Server/Chemistry/TileReactions/PryTileReaction.cs @@ -10,7 +10,7 @@ namespace Content.Server.Chemistry.TileReactions; [UsedImplicitly] [DataDefinition] -public sealed class PryTileReaction : ITileReaction +public sealed partial class PryTileReaction : ITileReaction { public FixedPoint2 TileReact(TileRef tile, ReagentPrototype reagent, FixedPoint2 reactVolume) { diff --git a/Content.Server/Chemistry/TileReactions/SpillIfPuddlePresentTileReaction.cs b/Content.Server/Chemistry/TileReactions/SpillIfPuddlePresentTileReaction.cs index c79d8d41eb0..82ede720cd0 100644 --- a/Content.Server/Chemistry/TileReactions/SpillIfPuddlePresentTileReaction.cs +++ b/Content.Server/Chemistry/TileReactions/SpillIfPuddlePresentTileReaction.cs @@ -10,7 +10,7 @@ namespace Content.Server.Chemistry.TileReactions { [UsedImplicitly] [DataDefinition] - public sealed class SpillIfPuddlePresentTileReaction : ITileReaction + public sealed partial class SpillIfPuddlePresentTileReaction : ITileReaction { public FixedPoint2 TileReact(TileRef tile, ReagentPrototype reagent, FixedPoint2 reactVolume) { diff --git a/Content.Server/Chemistry/TileReactions/SpillTileReaction.cs b/Content.Server/Chemistry/TileReactions/SpillTileReaction.cs index 1f2a3d8b4f4..87246927d75 100644 --- a/Content.Server/Chemistry/TileReactions/SpillTileReaction.cs +++ b/Content.Server/Chemistry/TileReactions/SpillTileReaction.cs @@ -15,7 +15,7 @@ namespace Content.Server.Chemistry.TileReactions { [UsedImplicitly] [DataDefinition] - public sealed class SpillTileReaction : ITileReaction + public sealed partial class SpillTileReaction : ITileReaction { [DataField("launchForwardsMultiplier")] private float _launchForwardsMultiplier = 1; [DataField("requiredSlipSpeed")] private float _requiredSlipSpeed = 6; diff --git a/Content.Server/Chunking/ChunkingSystem.cs b/Content.Server/Chunking/ChunkingSystem.cs index f04a720fc93..f204b5cf729 100644 --- a/Content.Server/Chunking/ChunkingSystem.cs +++ b/Content.Server/Chunking/ChunkingSystem.cs @@ -20,11 +20,14 @@ public sealed class ChunkingSystem : EntitySystem [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; + private EntityQuery _xformQuery; + private Box2 _baseViewBounds; public override void Initialize() { base.Initialize(); + _xformQuery = GetEntityQuery(); _configurationManager.OnValueChanged(CVars.NetMaxUpdateRange, OnPvsRangeChanged, true); } @@ -36,16 +39,15 @@ public override void Shutdown() private void OnPvsRangeChanged(float value) => _baseViewBounds = Box2.UnitCentered.Scale(value); - public Dictionary> GetChunksForSession( + public Dictionary> GetChunksForSession( IPlayerSession session, int chunkSize, - EntityQuery xformQuery, ObjectPool> indexPool, - ObjectPool>> viewerPool, + ObjectPool>> viewerPool, float? viewEnlargement = null) { var viewers = GetSessionViewers(session); - var chunks = GetChunksForViewers(viewers, chunkSize, indexPool, viewerPool, viewEnlargement ?? chunkSize, xformQuery); + var chunks = GetChunksForViewers(viewers, chunkSize, indexPool, viewerPool, viewEnlargement ?? chunkSize); return chunks; } @@ -65,37 +67,38 @@ private HashSet GetSessionViewers(IPlayerSession session) return viewers; } - private Dictionary> GetChunksForViewers( + private Dictionary> GetChunksForViewers( HashSet viewers, int chunkSize, ObjectPool> indexPool, - ObjectPool>> viewerPool, - float viewEnlargement, - EntityQuery xformQuery) + ObjectPool>> viewerPool, + float viewEnlargement) { - Dictionary> chunks = viewerPool.Get(); + var chunks = viewerPool.Get(); DebugTools.Assert(chunks.Count == 0); foreach (var viewerUid in viewers) { - if (!xformQuery.TryGetComponent(viewerUid, out var xform)) + if (!_xformQuery.TryGetComponent(viewerUid, out var xform)) { - Log.Error($"Player has deleted viewer entities? Viewers: {string.Join(", ", viewers.Select(x => ToPrettyString(x)))}"); + Log.Error($"Player has deleted viewer entities? Viewers: {string.Join(", ", viewers.Select(ToPrettyString))}"); continue; } - var pos = _transform.GetWorldPosition(xform, xformQuery); + var pos = _transform.GetWorldPosition(xform); var bounds = _baseViewBounds.Translated(pos).Enlarged(viewEnlargement); foreach (var grid in _mapManager.FindGridsIntersecting(xform.MapID, bounds, true)) { - if (!chunks.TryGetValue(grid.Owner, out var set)) + var netGrid = GetNetEntity(grid.Owner); + + if (!chunks.TryGetValue(netGrid, out var set)) { - chunks[grid.Owner] = set = indexPool.Get(); + chunks[netGrid] = set = indexPool.Get(); DebugTools.Assert(set.Count == 0); } - var enumerator = new ChunkIndicesEnumerator(_transform.GetInvWorldMatrix(grid.Owner, xformQuery).TransformBox(bounds), chunkSize); + var enumerator = new ChunkIndicesEnumerator(_transform.GetInvWorldMatrix(grid.Owner).TransformBox(bounds), chunkSize); while (enumerator.MoveNext(out var indices)) { diff --git a/Content.Server/Climbing/ClimbSystem.cs b/Content.Server/Climbing/ClimbSystem.cs index 8361cda62f2..08830fc89c0 100644 --- a/Content.Server/Climbing/ClimbSystem.cs +++ b/Content.Server/Climbing/ClimbSystem.cs @@ -49,7 +49,7 @@ public sealed class ClimbSystem : SharedClimbSystem private const string ClimbingFixtureName = "climb"; private const int ClimbingCollisionGroup = (int) (CollisionGroup.TableLayer | CollisionGroup.LowImpassable); - private readonly Dictionary> _fixtureRemoveQueue = new(); + private readonly Dictionary> _fixtureRemoveQueue = new(); public override void Initialize() { @@ -128,7 +128,7 @@ public bool TryClimb(EntityUid user, if (climbing.IsClimbing) return true; - var args = new DoAfterArgs(user, comp.ClimbDelay, new ClimbDoAfterEvent(), entityToMove, target: climbable, used: entityToMove) + var args = new DoAfterArgs(EntityManager, user, comp.ClimbDelay, new ClimbDoAfterEvent(), entityToMove, target: climbable, used: entityToMove) { BreakOnTargetMove = true, BreakOnUserMove = true, @@ -212,8 +212,8 @@ private bool ReplaceFixtures(ClimbingComponent climbingComp, FixturesComponent f || (fixture.CollisionMask & ClimbingCollisionGroup) == 0) continue; - climbingComp.DisabledFixtureMasks.Add(fixture.ID, fixture.CollisionMask & ClimbingCollisionGroup); - _physics.SetCollisionMask(uid, fixture, fixture.CollisionMask & ~ClimbingCollisionGroup, fixturesComp); + climbingComp.DisabledFixtureMasks.Add(name, fixture.CollisionMask & ClimbingCollisionGroup); + _physics.SetCollisionMask(uid, name, fixture, fixture.CollisionMask & ~ClimbingCollisionGroup, fixturesComp); } if (!_fixtureSystem.TryCreateFixture( @@ -233,7 +233,7 @@ private bool ReplaceFixtures(ClimbingComponent climbingComp, FixturesComponent f private void OnClimbEndCollide(EntityUid uid, ClimbingComponent component, ref EndCollideEvent args) { - if (args.OurFixture.ID != ClimbingFixtureName + if (args.OurFixtureId != ClimbingFixtureName || !component.IsClimbing || component.OwnerIsTransitioning) return; @@ -262,18 +262,18 @@ private void StopClimb(EntityUid uid, ClimbingComponent? climbing = null, Fixtur continue; } - _physics.SetCollisionMask(uid, fixture, fixture.CollisionMask | fixtureMask, fixtures); + _physics.SetCollisionMask(uid, name, fixture, fixture.CollisionMask | fixtureMask, fixtures); } climbing.DisabledFixtureMasks.Clear(); if (!_fixtureRemoveQueue.TryGetValue(uid, out var removeQueue)) { - removeQueue = new List(); + removeQueue = new Dictionary(); _fixtureRemoveQueue.Add(uid, removeQueue); } if (fixtures.Fixtures.TryGetValue(ClimbingFixtureName, out var climbingFixture)) - removeQueue.Add(climbingFixture); + removeQueue.Add(ClimbingFixtureName, climbingFixture); climbing.IsClimbing = false; climbing.OwnerIsTransitioning = false; @@ -440,7 +440,7 @@ public override void Update(float frameTime) foreach (var fixture in fixtures) { - _fixtureSystem.DestroyFixture(uid, fixture, body: physicsComp, manager: fixturesComp); + _fixtureSystem.DestroyFixture(uid, fixture.Key, fixture.Value, body: physicsComp, manager: fixturesComp); } } diff --git a/Content.Server/Climbing/Components/GlassTableComponent.cs b/Content.Server/Climbing/Components/GlassTableComponent.cs index e42b057e4c8..009fba91f44 100644 --- a/Content.Server/Climbing/Components/GlassTableComponent.cs +++ b/Content.Server/Climbing/Components/GlassTableComponent.cs @@ -8,7 +8,7 @@ namespace Content.Server.Climbing.Components; /// not very generalized with regards to naming. /// [RegisterComponent, Access(typeof(ClimbSystem))] -public sealed class GlassTableComponent : Component +public sealed partial class GlassTableComponent : Component { /// /// How much damage should be given to the climber? diff --git a/Content.Server/Cloning/AcceptCloningEui.cs b/Content.Server/Cloning/AcceptCloningEui.cs index c3a4e670602..3d4356f8ca0 100644 --- a/Content.Server/Cloning/AcceptCloningEui.cs +++ b/Content.Server/Cloning/AcceptCloningEui.cs @@ -1,16 +1,19 @@ using Content.Server.EUI; using Content.Shared.Cloning; using Content.Shared.Eui; +using Content.Shared.Mind; namespace Content.Server.Cloning { public sealed class AcceptCloningEui : BaseEui { + private readonly EntityUid _mindId; + private readonly MindComponent _mind; private readonly CloningSystem _cloningSystem; - private readonly Mind.Mind _mind; - public AcceptCloningEui(Mind.Mind mind, CloningSystem cloningSys) + public AcceptCloningEui(EntityUid mindId, MindComponent mind, CloningSystem cloningSys) { + _mindId = mindId; _mind = mind; _cloningSystem = cloningSys; } @@ -26,7 +29,7 @@ public override void HandleMessage(EuiMessageBase msg) return; } - _cloningSystem.TransferMindToClone(_mind); + _cloningSystem.TransferMindToClone(_mindId, _mind); Close(); } } diff --git a/Content.Server/Cloning/CloningConsoleSystem.cs b/Content.Server/Cloning/CloningConsoleSystem.cs index 165923038e7..29f42bf6c21 100644 --- a/Content.Server/Cloning/CloningConsoleSystem.cs +++ b/Content.Server/Cloning/CloningConsoleSystem.cs @@ -1,23 +1,23 @@ using System.Linq; -using JetBrains.Annotations; using Content.Server.Administration.Logs; -using Content.Server.Medical.Components; using Content.Server.Cloning.Components; using Content.Server.DeviceLinking.Systems; +using Content.Server.Medical.Components; using Content.Server.Power.Components; -using Content.Server.Mind.Components; -using Content.Server.UserInterface; using Content.Server.Power.EntitySystems; -using Robust.Server.GameObjects; -using Robust.Server.Player; -using Content.Shared.Cloning.CloningConsole; +using Content.Server.UserInterface; using Content.Shared.Cloning; +using Content.Shared.Cloning.CloningConsole; using Content.Shared.Database; using Content.Shared.DeviceLinking; using Content.Shared.DeviceLinking.Events; using Content.Shared.IdentityManagement; +using Content.Shared.Mind; using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; +using JetBrains.Annotations; +using Robust.Server.GameObjects; +using Robust.Server.Player; namespace Content.Server.Cloning { @@ -31,6 +31,8 @@ public sealed class CloningConsoleSystem : EntitySystem [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; [Dependency] private readonly MobStateSystem _mobStateSystem = default!; [Dependency] private readonly PowerReceiverSystem _powerReceiverSystem = default!; + [Dependency] private readonly SharedMindSystem _mindSystem = default!; + public override void Initialize() { base.Initialize(); @@ -143,7 +145,7 @@ public void UpdateUserInterface(EntityUid consoleUid, CloningConsoleComponent co } var newState = GetUserInterfaceState(consoleComponent); - UserInterfaceSystem.SetUiState(ui, newState); + _uiSystem.SetUiState(ui, newState); } public void TryClone(EntityUid uid, EntityUid cloningPodUid, EntityUid scannerUid, CloningPodComponent? cloningPod = null, MedicalScannerComponent? scannerComp = null, CloningConsoleComponent? consoleComponent = null) @@ -162,12 +164,10 @@ public void TryClone(EntityUid uid, EntityUid cloningPodUid, EntityUid scannerUi if (body is null) return; - if (!TryComp(body, out var mindComp)) + if (!_mindSystem.TryGetMind(body.Value, out var mindId, out var mind)) return; - var mind = mindComp.Mind; - - if (mind == null || mind.UserId.HasValue == false || mind.Session == null) + if (mind.UserId.HasValue == false || mind.Session == null) return; if (_cloningSystem.TryCloning(cloningPodUid, body.Value, mind, cloningPod, scannerComp.CloningFailChanceMultiplier)) @@ -212,15 +212,15 @@ private CloningConsoleBoundUserInterfaceState GetUserInterfaceState(CloningConso { scanBodyInfo = MetaData(scanBody.Value).EntityName; - TryComp(scanBody, out var mindComp); - if (!_mobStateSystem.IsDead(scanBody.Value)) { clonerStatus = ClonerStatus.ScannerOccupantAlive; } else { - if (mindComp == null || mindComp.Mind == null || mindComp.Mind.UserId == null || !_playerManager.TryGetSessionById(mindComp.Mind.UserId.Value, out _)) + if (!_mindSystem.TryGetMind(scanBody.Value, out _, out var mind) || + mind.UserId == null || + !_playerManager.TryGetSessionById(mind.UserId.Value, out _)) { clonerStatus = ClonerStatus.NoMindDetected; } diff --git a/Content.Server/Cloning/CloningSystem.cs b/Content.Server/Cloning/CloningSystem.cs index b0e09163ca8..13f68f098e0 100644 --- a/Content.Server/Cloning/CloningSystem.cs +++ b/Content.Server/Cloning/CloningSystem.cs @@ -1,38 +1,40 @@ -using Content.Shared.GameTicking; -using Content.Shared.Damage; -using Content.Shared.Examine; -using Content.Shared.Cloning; -using Content.Shared.Atmos; -using Content.Shared.CCVar; -using Content.Server.Cloning.Components; -using Content.Server.Mind.Components; -using Content.Server.Power.EntitySystems; using Content.Server.Atmos.EntitySystems; -using Content.Server.EUI; -using Content.Server.Humanoid; -using Content.Shared.Chemistry.Components; -using Content.Server.Fluids.EntitySystems; using Content.Server.Chat.Systems; +using Content.Server.Cloning.Components; using Content.Server.Construction; -using Content.Server.DeviceLinking.Events; using Content.Server.DeviceLinking.Systems; -using Content.Server.Materials; +using Content.Server.EUI; +using Content.Server.Fluids.EntitySystems; +using Content.Server.Humanoid; using Content.Server.Jobs; +using Content.Server.Materials; +using Content.Server.Popups; +using Content.Server.Power.EntitySystems; +using Content.Server.Traits.Assorted; +using Content.Shared.Atmos; +using Content.Shared.CCVar; +using Content.Shared.Chemistry.Components; +using Content.Shared.Cloning; +using Content.Shared.Damage; using Content.Shared.DeviceLinking.Events; using Content.Shared.Emag.Components; -using Content.Server.Mind; +using Content.Shared.Emag.Systems; +using Content.Shared.Examine; +using Content.Shared.GameTicking; using Content.Shared.Humanoid; using Content.Shared.Humanoid.Prototypes; -using Content.Shared.Zombies; +using Content.Shared.Mind; +using Content.Shared.Mind.Components; using Content.Shared.Mobs.Systems; -using Robust.Server.GameObjects; +using Content.Shared.Roles.Jobs; using Robust.Server.Containers; +using Robust.Server.GameObjects; using Robust.Server.Player; -using Robust.Shared.Prototypes; -using Robust.Shared.Random; using Robust.Shared.Configuration; using Robust.Shared.Containers; using Robust.Shared.Physics.Components; +using Robust.Shared.Prototypes; +using Robust.Shared.Random; using Content.Shared.Emag.Systems; using Content.Server.Popups; using Content.Server.Traits.Assorted; @@ -61,10 +63,11 @@ public sealed class CloningSystem : EntitySystem [Dependency] private readonly IConfigurationManager _configManager = default!; [Dependency] private readonly MaterialStorageSystem _material = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; - [Dependency] private readonly MindSystem _mindSystem = default!; + [Dependency] private readonly SharedMindSystem _mindSystem = default!; [Dependency] private readonly MetaDataSystem _metaSystem = default!; + [Dependency] private readonly SharedJobSystem _jobs = default!; - public readonly Dictionary ClonesWaitingForMind = new(); + public readonly Dictionary ClonesWaitingForMind = new(); public const float EasyModeCloningCost = 0.7f; public override void Initialize() @@ -103,7 +106,7 @@ private void OnUpgradeExamine(EntityUid uid, CloningPodComponent component, Upgr args.AddPercentageUpgrade("cloning-pod-component-upgrade-biomass-requirement", component.BiomassRequirementMultiplier); } - internal void TransferMindToClone(Mind.Mind mind) + internal void TransferMindToClone(EntityUid mindId, MindComponent mind) { if (!ClonesWaitingForMind.TryGetValue(mind, out var entity) || !EntityManager.EntityExists(entity) || @@ -111,8 +114,8 @@ internal void TransferMindToClone(Mind.Mind mind) mindComp.Mind != null) return; - _mindSystem.TransferTo(mind, entity, ghostCheckOverride: true); - _mindSystem.UnVisit(mind); + _mindSystem.TransferTo(mindId, entity, ghostCheckOverride: true, mind: mind); + _mindSystem.UnVisit(mindId, mind); ClonesWaitingForMind.Remove(mind); } @@ -155,7 +158,7 @@ private void OnExamined(EntityUid uid, CloningPodComponent component, ExaminedEv args.PushMarkup(Loc.GetString("cloning-pod-biomass", ("number", _material.GetMaterialAmount(uid, component.RequiredMaterial)))); } - public bool TryCloning(EntityUid uid, EntityUid bodyToClone, Mind.Mind mind, CloningPodComponent? clonePod, float failChanceModifier = 1) + public bool TryCloning(EntityUid uid, EntityUid bodyToClone, MindComponent mind, CloningPodComponent? clonePod, float failChanceModifier = 1) { if (!Resolve(uid, ref clonePod)) return false; @@ -168,7 +171,7 @@ public bool TryCloning(EntityUid uid, EntityUid bodyToClone, Mind.Mind mind, Clo if (EntityManager.EntityExists(clone) && !_mobStateSystem.IsDead(clone) && TryComp(clone, out var cloneMindComp) && - (cloneMindComp.Mind == null || cloneMindComp.Mind == mind)) + (cloneMindComp.Mind == null || cloneMindComp.Mind == mind.Owner)) return false; // Mind already has clone ClonesWaitingForMind.Remove(mind); @@ -261,16 +264,16 @@ public bool TryCloning(EntityUid uid, EntityUid bodyToClone, Mind.Mind mind, Clo clonePod.BodyContainer.Insert(mob); ClonesWaitingForMind.Add(mind, mob); UpdateStatus(uid, CloningPodStatus.NoMind, clonePod); - _euiManager.OpenEui(new AcceptCloningEui(mind, this), client); + var mindId = mind.Owner; + _euiManager.OpenEui(new AcceptCloningEui(mindId, mind, this), client); AddComp(uid); - // TODO: Ideally, components like this should be on a mind entity so this isn't neccesary. - // Remove this when 'mind entities' are added. + // TODO: Ideally, components like this should be components on the mind entity so this isn't necessary. // Add on special job components to the mob. - if (mind.CurrentJob != null) + if (_jobs.MindTryGetJob(mindId, out _, out var prototype)) { - foreach (var special in mind.CurrentJob.Prototype.Special) + foreach (var special in prototype.Special) { if (special is AddComponentSpecial) special.AfterEquip(mob); diff --git a/Content.Server/Cloning/Components/ActiveCloningPodComponent.cs b/Content.Server/Cloning/Components/ActiveCloningPodComponent.cs index 131670d7646..11e0e36166a 100644 --- a/Content.Server/Cloning/Components/ActiveCloningPodComponent.cs +++ b/Content.Server/Cloning/Components/ActiveCloningPodComponent.cs @@ -4,6 +4,6 @@ namespace Content.Server.Cloning.Components; /// Shrimply a tracking component for pods that are cloning. /// [RegisterComponent] -public sealed class ActiveCloningPodComponent : Component +public sealed partial class ActiveCloningPodComponent : Component { } diff --git a/Content.Server/Cloning/Components/BeingClonedComponent.cs b/Content.Server/Cloning/Components/BeingClonedComponent.cs index d22f541a722..769f8b4d12e 100644 --- a/Content.Server/Cloning/Components/BeingClonedComponent.cs +++ b/Content.Server/Cloning/Components/BeingClonedComponent.cs @@ -1,10 +1,12 @@ +using Content.Shared.Mind; + namespace Content.Server.Cloning.Components { [RegisterComponent] - public sealed class BeingClonedComponent : Component + public sealed partial class BeingClonedComponent : Component { [ViewVariables] - public Mind.Mind? Mind = default; + public MindComponent? Mind = default; [ViewVariables] public EntityUid Parent; diff --git a/Content.Server/Cloning/Components/CloningConsoleComponent.cs b/Content.Server/Cloning/Components/CloningConsoleComponent.cs index 5f372023ac4..40197517a37 100644 --- a/Content.Server/Cloning/Components/CloningConsoleComponent.cs +++ b/Content.Server/Cloning/Components/CloningConsoleComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Cloning.Components { [RegisterComponent] - public sealed class CloningConsoleComponent : Component + public sealed partial class CloningConsoleComponent : Component { public const string ScannerPort = "MedicalScannerSender"; diff --git a/Content.Server/Cloning/Components/CloningPodComponent.cs b/Content.Server/Cloning/Components/CloningPodComponent.cs index 30674856aa1..e2c3f469782 100644 --- a/Content.Server/Cloning/Components/CloningPodComponent.cs +++ b/Content.Server/Cloning/Components/CloningPodComponent.cs @@ -9,7 +9,7 @@ namespace Content.Server.Cloning.Components { [RegisterComponent] - public sealed class CloningPodComponent : Component + public sealed partial class CloningPodComponent : Component { public const string PodPort = "CloningPodReceiver"; diff --git a/Content.Server/Clothing/Components/GloveHeatResistanceComponent.cs b/Content.Server/Clothing/Components/GloveHeatResistanceComponent.cs index ce3d46e97f8..29a3b901a78 100644 --- a/Content.Server/Clothing/Components/GloveHeatResistanceComponent.cs +++ b/Content.Server/Clothing/Components/GloveHeatResistanceComponent.cs @@ -5,7 +5,7 @@ /// Handles 'heat resistance' for gloves touching bulbs and that's it, ick. /// [RegisterComponent] -public sealed class GloveHeatResistanceComponent : Component +public sealed partial class GloveHeatResistanceComponent : Component { [DataField("heatResistance")] public int HeatResistance = 323; diff --git a/Content.Server/Clothing/Components/MaskComponent.cs b/Content.Server/Clothing/Components/MaskComponent.cs index f2ea000d0e0..704ea11ecea 100644 --- a/Content.Server/Clothing/Components/MaskComponent.cs +++ b/Content.Server/Clothing/Components/MaskComponent.cs @@ -1,20 +1,21 @@ -using Content.Shared.Actions; -using Content.Shared.Actions.ActionTypes; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.Clothing.Components { [Access(typeof(MaskSystem))] [RegisterComponent] - public sealed class MaskComponent : Component + public sealed partial class MaskComponent : Component { + [DataField("toggleAction", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string ToggleAction = "ActionToggleMask"; + /// /// This mask can be toggled (pulled up/down) /// - [DataField("toggleAction")] - public InstantAction? ToggleAction = null; + [DataField("toggleActionEntity")] + public EntityUid? ToggleActionEntity; public bool IsToggled = false; } - - public sealed class ToggleMaskEvent : InstantActionEvent { } } diff --git a/Content.Server/Clothing/MaskSystem.cs b/Content.Server/Clothing/MaskSystem.cs index acf63ad98d5..fbf6ac60773 100644 --- a/Content.Server/Clothing/MaskSystem.cs +++ b/Content.Server/Clothing/MaskSystem.cs @@ -9,6 +9,7 @@ using Content.Server.Popups; using Content.Server.VoiceMask; using Content.Shared.Actions; +using Content.Shared.Clothing; using Content.Shared.Clothing.Components; using Content.Shared.Clothing.EntitySystems; using Content.Shared.IdentityManagement.Components; @@ -38,20 +39,20 @@ public override void Initialize() private void OnGetActions(EntityUid uid, MaskComponent component, GetItemActionsEvent args) { - if (component.ToggleAction != null && !args.InHands) - args.Actions.Add(component.ToggleAction); + if (!args.InHands) + args.AddAction(ref component.ToggleActionEntity, component.ToggleAction); } private void OnToggleMask(EntityUid uid, MaskComponent mask, ToggleMaskEvent args) { - if (mask.ToggleAction == null) + if (mask.ToggleActionEntity == null) return; if (!_inventorySystem.TryGetSlotEntity(args.Performer, "mask", out var existing) || !mask.Owner.Equals(existing)) return; mask.IsToggled ^= true; - _actionSystem.SetToggled(mask.ToggleAction, mask.IsToggled); + _actionSystem.SetToggled(mask.ToggleActionEntity, mask.IsToggled); // Pulling mask down can change identity, so we want to update that _identity.QueueIdentityUpdate(args.Performer); @@ -67,11 +68,11 @@ private void OnToggleMask(EntityUid uid, MaskComponent mask, ToggleMaskEvent arg // set to untoggled when unequipped, so it isn't left in a 'pulled down' state private void OnGotUnequipped(EntityUid uid, MaskComponent mask, GotUnequippedEvent args) { - if (mask.ToggleAction == null) + if (mask.ToggleActionEntity == null) return; mask.IsToggled = false; - _actionSystem.SetToggled(mask.ToggleAction, mask.IsToggled); + _actionSystem.SetToggled(mask.ToggleActionEntity, mask.IsToggled); ToggleMaskComponents(uid, mask, args.Equipee, true); } diff --git a/Content.Server/Cluwne/CluwneSystem.cs b/Content.Server/Cluwne/CluwneSystem.cs index aca90c3461d..9ce50137bf6 100644 --- a/Content.Server/Cluwne/CluwneSystem.cs +++ b/Content.Server/Cluwne/CluwneSystem.cs @@ -27,6 +27,7 @@ public sealed class CluwneSystem : EntitySystem [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly ChatSystem _chat = default!; [Dependency] private readonly AutoEmoteSystem _autoEmote = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; public override void Initialize() { @@ -74,7 +75,7 @@ private void OnComponentStartup(EntityUid uid, CluwneComponent component, Compon _popupSystem.PopupEntity(Loc.GetString("cluwne-transform", ("target", uid)), uid, PopupType.LargeCaution); _audio.PlayPvs(component.SpawnSound, uid); - meta.EntityName = Loc.GetString("cluwne-name-prefix", ("target", name)); + _metaData.SetEntityName(uid, Loc.GetString("cluwne-name-prefix", ("target", name)), meta); SetOutfitCommand.SetOutfit(uid, "CluwneGear", EntityManager); } diff --git a/Content.Server/CombatMode/CombatModeSystem.cs b/Content.Server/CombatMode/CombatModeSystem.cs index 945a7f67ce9..1c1df817e68 100644 --- a/Content.Server/CombatMode/CombatModeSystem.cs +++ b/Content.Server/CombatMode/CombatModeSystem.cs @@ -1,20 +1,7 @@ using Content.Shared.CombatMode; -using JetBrains.Annotations; -using Robust.Shared.GameStates; namespace Content.Server.CombatMode; public sealed class CombatModeSystem : SharedCombatModeSystem { - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnGetState); - } - - private void OnGetState(EntityUid uid, CombatModeComponent component, ref ComponentGetState args) - { - args.State = new CombatModeComponentState(component.IsInCombatMode, component.ActiveZone); - } } diff --git a/Content.Server/CombatMode/Disarm/DisarmMalusComponent.cs b/Content.Server/CombatMode/Disarm/DisarmMalusComponent.cs index 9e5b454ae71..49f677f286c 100644 --- a/Content.Server/CombatMode/Disarm/DisarmMalusComponent.cs +++ b/Content.Server/CombatMode/Disarm/DisarmMalusComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.CombatMode.Disarm /// Applies a malus to disarm attempts against this item. /// [RegisterComponent] - public sealed class DisarmMalusComponent : Component + public sealed partial class DisarmMalusComponent : Component { /// /// So, disarm chances are a % chance represented as a value between 0 and 1. diff --git a/Content.Server/Communications/CommsHackerSystem.cs b/Content.Server/Communications/CommsHackerSystem.cs new file mode 100644 index 00000000000..95cad6eb974 --- /dev/null +++ b/Content.Server/Communications/CommsHackerSystem.cs @@ -0,0 +1,89 @@ +using Content.Server.Chat.Systems; +using Content.Server.GameTicking; +using Content.Server.Ninja.Systems; +using Content.Shared.Communications; +using Content.Shared.DoAfter; +using Content.Shared.Interaction; +using Robust.Shared.Random; +using Robust.Shared.Serialization; + +namespace Content.Server.Communications; + +public sealed class CommsHackerSystem : SharedCommsHackerSystem +{ + [Dependency] private readonly ChatSystem _chat = default!; + [Dependency] private readonly GameTicker _gameTicker = default!; + [Dependency] private readonly IRobustRandom _random = default!; + // TODO: remove when generic check event is used + [Dependency] private readonly NinjaGlovesSystem _gloves = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnBeforeInteractHand); + SubscribeLocalEvent(OnDoAfter); + } + + /// + /// Start the doafter to hack a comms console + /// + private void OnBeforeInteractHand(EntityUid uid, CommsHackerComponent comp, BeforeInteractHandEvent args) + { + if (args.Handled || !HasComp(args.Target)) + return; + + // TODO: generic check event + if (!_gloves.AbilityCheck(uid, args, out var target)) + return; + + var doAfterArgs = new DoAfterArgs(EntityManager, uid, comp.Delay, new TerrorDoAfterEvent(), target: target, used: uid, eventTarget: uid) + { + BreakOnDamage = true, + BreakOnUserMove = true, + MovementThreshold = 0.5f, + CancelDuplicate = false + }; + + _doAfter.TryStartDoAfter(doAfterArgs); + args.Handled = true; + } + + /// + /// Call in a random threat and do cleanup. + /// + private void OnDoAfter(EntityUid uid, CommsHackerComponent comp, TerrorDoAfterEvent args) + { + if (args.Cancelled || args.Handled || comp.Threats.Count == 0 || args.Target == null) + return; + + var threat = _random.Pick(comp.Threats); + CallInThreat(threat); + + // prevent calling in multiple threats + RemComp(uid); + + var ev = new ThreatCalledInEvent(uid, args.Target.Value); + RaiseLocalEvent(args.User, ref ev); + } + + /// + /// Makes announcement and adds game rule of the threat. + /// + public void CallInThreat(Threat threat) + { + _gameTicker.StartGameRule(threat.Rule, out _); + _chat.DispatchGlobalAnnouncement(Loc.GetString(threat.Announcement), playSound: true, colorOverride: Color.Red); + } +} + +/// +/// Raised on the user when a threat is called in on the communications console. +/// +/// +/// If you add , make sure to use this event to prevent adding it twice. +/// For example, you could add a marker component after a threat is called in then check if the user doesn't have that marker before adding CommsHackerComponent. +/// +[ByRefEvent] +public record struct ThreatCalledInEvent(EntityUid Used, EntityUid Target); diff --git a/Content.Server/Communications/CommunicationsConsoleComponent.cs b/Content.Server/Communications/CommunicationsConsoleComponent.cs index cae9b2d8501..e7b5f20cf39 100644 --- a/Content.Server/Communications/CommunicationsConsoleComponent.cs +++ b/Content.Server/Communications/CommunicationsConsoleComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Communications { [RegisterComponent] - public sealed class CommunicationsConsoleComponent : SharedCommunicationsConsoleComponent + public sealed partial class CommunicationsConsoleComponent : SharedCommunicationsConsoleComponent { public float UIUpdateAccumulator = 0f; @@ -57,6 +57,6 @@ public sealed class CommunicationsConsoleComponent : SharedCommunicationsConsole [DataField("sound")] public SoundSpecifier AnnouncementSound = new SoundPathSpecifier("/Audio/Announcements/announce.ogg"); - public BoundUserInterface? UserInterface => Owner.GetUIOrNull(CommunicationsConsoleUiKey.Key); + public PlayerBoundUserInterface? UserInterface => Owner.GetUIOrNull(CommunicationsConsoleUiKey.Key); } } diff --git a/Content.Server/Communications/CommunicationsConsoleSystem.cs b/Content.Server/Communications/CommunicationsConsoleSystem.cs index b9b701efdb4..b7ad536816a 100644 --- a/Content.Server/Communications/CommunicationsConsoleSystem.cs +++ b/Content.Server/Communications/CommunicationsConsoleSystem.cs @@ -1,9 +1,7 @@ using System.Globalization; -using System.Linq; using Content.Server.Access.Systems; using Content.Server.Administration.Logs; using Content.Server.AlertLevel; -using Content.Server.Chat; using Content.Server.Chat.Systems; using Content.Server.Interaction; using Content.Server.Popups; @@ -16,11 +14,9 @@ using Content.Shared.Communications; using Content.Shared.Database; using Content.Shared.Emag.Components; -using Content.Shared.Examine; using Content.Shared.Popups; using Robust.Server.GameObjects; using Robust.Shared.Configuration; -using Robust.Shared.Player; namespace Content.Server.Communications { @@ -35,9 +31,9 @@ public sealed class CommunicationsConsoleSystem : EntitySystem [Dependency] private readonly PopupSystem _popupSystem = default!; [Dependency] private readonly RoundEndSystem _roundEndSystem = default!; [Dependency] private readonly StationSystem _stationSystem = default!; + [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; [Dependency] private readonly IConfigurationManager _cfg = default!; [Dependency] private readonly IAdminLogManager _adminLogger = default!; - [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; private const int MaxMessageLength = 256; private const int MaxMessageNewlines = 2; @@ -156,7 +152,7 @@ public void UpdateCommsConsoleInterface(EntityUid uid, CommunicationsConsoleComp } if (comp.UserInterface is not null) - UserInterfaceSystem.SetUiState(comp.UserInterface, new CommunicationsConsoleInterfaceState( + _uiSystem.SetUiState(comp.UserInterface, new CommunicationsConsoleInterfaceState( CanAnnounce(comp), CanCallOrRecall(comp), levels, @@ -179,7 +175,7 @@ private bool CanUse(EntityUid user, EntityUid console) if (TryComp(console, out var accessReaderComponent) && !HasComp(console)) { - return _accessReaderSystem.IsAllowed(user, accessReaderComponent); + return _accessReaderSystem.IsAllowed(user, console, accessReaderComponent); } return true; } @@ -263,6 +259,9 @@ private void OnAnnounceMessage(EntityUid uid, CommunicationsConsoleComponent com comp.AnnouncementCooldownRemaining = comp.DelayBetweenAnnouncements; UpdateCommsConsoleInterface(uid, comp); + var ev = new CommunicationConsoleAnnouncementEvent(uid, comp, msg, message.Session.AttachedEntity); + RaiseLocalEvent(ref ev); + // allow admemes with vv Loc.TryGetString(comp.AnnouncementDisplayName, out var title); title ??= comp.AnnouncementDisplayName; @@ -292,6 +291,15 @@ private void OnCallShuttleMessage(EntityUid uid, CommunicationsConsoleComponent _popupSystem.PopupEntity(Loc.GetString("comms-console-permission-denied"), uid, message.Session); return; } + + var ev = new CommunicationConsoleCallShuttleAttemptEvent(uid, comp, mob); + RaiseLocalEvent(ref ev); + if (ev.Cancelled) + { + _popupSystem.PopupEntity(ev.Reason ?? Loc.GetString("comms-console-shuttle-unavailable"), uid, message.Session); + return; + } + _roundEndSystem.RequestRoundEnd(uid); _adminLogger.Add(LogType.Action, LogImpact.Extreme, $"{ToPrettyString(mob):player} has called the shuttle."); } @@ -310,4 +318,29 @@ private void OnRecallShuttleMessage(EntityUid uid, CommunicationsConsoleComponen _adminLogger.Add(LogType.Action, LogImpact.Extreme, $"{ToPrettyString(mob):player} has recalled the shuttle."); } } + + /// + /// Raised on announcement + /// + [ByRefEvent] + public record struct CommunicationConsoleAnnouncementEvent(EntityUid Uid, CommunicationsConsoleComponent Component, string Text, EntityUid? Sender) + { + public EntityUid Uid = Uid; + public CommunicationsConsoleComponent Component = Component; + public EntityUid? Sender = Sender; + public string Text = Text; + } + + /// + /// Raised on shuttle call attempt. Can be cancelled + /// + [ByRefEvent] + public record struct CommunicationConsoleCallShuttleAttemptEvent(EntityUid Uid, CommunicationsConsoleComponent Component, EntityUid? Sender) + { + public bool Cancelled = false; + public EntityUid Uid = Uid; + public CommunicationsConsoleComponent Component = Component; + public EntityUid? Sender = Sender; + public string? Reason; + } } diff --git a/Content.Server/Configurable/ConfigurationSystem.cs b/Content.Server/Configurable/ConfigurationSystem.cs index cfe580f3914..c134c1a87d9 100644 --- a/Content.Server/Configurable/ConfigurationSystem.cs +++ b/Content.Server/Configurable/ConfigurationSystem.cs @@ -43,7 +43,7 @@ private void OnStartup(EntityUid uid, ConfigurationComponent component, Componen private void UpdateUi(EntityUid uid, ConfigurationComponent component) { if (_uiSystem.TryGetUi(uid, ConfigurationUiKey.Key, out var ui)) - UserInterfaceSystem.SetUiState(ui, new ConfigurationBoundUserInterfaceState(component.Config)); + _uiSystem.SetUiState(ui, new ConfigurationBoundUserInterfaceState(component.Config)); } private void OnUpdate(EntityUid uid, ConfigurationComponent component, ConfigurationUpdatedMessage args) diff --git a/Content.Server/Construction/Commands/FixRotationsCommand.cs b/Content.Server/Construction/Commands/FixRotationsCommand.cs index 307f0159a99..02429fcaa62 100644 --- a/Content.Server/Construction/Commands/FixRotationsCommand.cs +++ b/Content.Server/Construction/Commands/FixRotationsCommand.cs @@ -10,8 +10,11 @@ namespace Content.Server.Construction.Commands { [AdminCommand(AdminFlags.Mapping)] - sealed class FixRotationsCommand : IConsoleCommand + public sealed class FixRotationsCommand : IConsoleCommand { + [Dependency] private readonly IEntityManager _entManager = default!; + [Dependency] private readonly IMapManager _mapManager = default!; + // ReSharper disable once StringLiteralTypo public string Command => "fixrotations"; public string Description => "Sets the rotation of all occluders, low walls and windows to south."; @@ -20,9 +23,8 @@ sealed class FixRotationsCommand : IConsoleCommand public void Execute(IConsoleShell shell, string argsOther, string[] args) { var player = shell.Player as IPlayerSession; - var entityManager = IoCManager.Resolve(); EntityUid? gridId; - var xformQuery = entityManager.GetEntityQuery(); + var xformQuery = _entManager.GetEntityQuery(); switch (args.Length) { @@ -36,7 +38,7 @@ public void Execute(IConsoleShell shell, string argsOther, string[] args) gridId = xformQuery.GetComponent(playerEntity).GridUid; break; case 1: - if (!EntityUid.TryParse(args[0], out var id)) + if (!NetEntity.TryParse(args[0], out var idNet) || !_entManager.TryGetEntity(idNet, out var id)) { shell.WriteError($"{args[0]} is not a valid entity."); return; @@ -49,25 +51,24 @@ public void Execute(IConsoleShell shell, string argsOther, string[] args) return; } - var mapManager = IoCManager.Resolve(); - if (!mapManager.TryGetGrid(gridId, out var grid)) + if (!_mapManager.TryGetGrid(gridId, out var grid)) { shell.WriteError($"No grid exists with id {gridId}"); return; } - if (!entityManager.EntityExists(grid.Owner)) + if (!_entManager.EntityExists(grid.Owner)) { shell.WriteError($"Grid {gridId} doesn't have an associated grid entity."); return; } var changed = 0; - var tagSystem = entityManager.EntitySysManager.GetEntitySystem(); + var tagSystem = _entManager.EntitySysManager.GetEntitySystem(); foreach (var child in xformQuery.GetComponent(grid.Owner).ChildEntities) { - if (!entityManager.EntityExists(child)) + if (!_entManager.EntityExists(child)) { continue; } @@ -76,14 +77,14 @@ public void Execute(IConsoleShell shell, string argsOther, string[] args) // Occluders should only count if the state of it right now is enabled. // This prevents issues with edge firelocks. - if (entityManager.TryGetComponent(child, out var occluder)) + if (_entManager.TryGetComponent(child, out var occluder)) { valid |= occluder.Enabled; } // low walls & grilles - valid |= entityManager.HasComponent(child); + valid |= _entManager.HasComponent(child); // cables - valid |= entityManager.HasComponent(child); + valid |= _entManager.HasComponent(child); // anything else that might need this forced valid |= tagSystem.HasTag(child, "ForceFixRotations"); // override diff --git a/Content.Server/Construction/Commands/TileReplaceCommand.cs b/Content.Server/Construction/Commands/TileReplaceCommand.cs index c730c81f8d8..7de6c510d49 100644 --- a/Content.Server/Construction/Commands/TileReplaceCommand.cs +++ b/Content.Server/Construction/Commands/TileReplaceCommand.cs @@ -9,6 +9,10 @@ namespace Content.Server.Construction.Commands; [AdminCommand(AdminFlags.Mapping)] sealed class TileReplaceCommand : IConsoleCommand { + [Dependency] private readonly IEntityManager _entManager = default!; + [Dependency] private readonly IMapManager _mapManager = default!; + [Dependency] private readonly ITileDefinitionManager _tileDef = default!; + // ReSharper disable once StringLiteralTypo public string Command => "tilereplace"; public string Description => "Replaces one tile with another."; @@ -17,7 +21,6 @@ sealed class TileReplaceCommand : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { var player = shell.Player as IPlayerSession; - var entityManager = IoCManager.Resolve(); EntityUid? gridId; string tileIdA; string tileIdB; @@ -31,12 +34,13 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - gridId = entityManager.GetComponent(playerEntity).GridUid; + gridId = _entManager.GetComponent(playerEntity).GridUid; tileIdA = args[0]; tileIdB = args[1]; break; case 3: - if (!EntityUid.TryParse(args[0], out var id)) + if (!NetEntity.TryParse(args[0], out var idNet) || + !_entManager.TryGetEntity(idNet, out var id)) { shell.WriteLine($"{args[0]} is not a valid entity."); return; @@ -51,18 +55,16 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - var tileDefinitionManager = IoCManager.Resolve(); - var tileA = tileDefinitionManager[tileIdA]; - var tileB = tileDefinitionManager[tileIdB]; + var tileA = _tileDef[tileIdA]; + var tileB = _tileDef[tileIdB]; - var mapManager = IoCManager.Resolve(); - if (!mapManager.TryGetGrid(gridId, out var grid)) + if (!_mapManager.TryGetGrid(gridId, out var grid)) { shell.WriteLine($"No grid exists with id {gridId}"); return; } - if (!entityManager.EntityExists(grid.Owner)) + if (!_entManager.EntityExists(grid.Owner)) { shell.WriteLine($"Grid {gridId} doesn't have an associated grid entity."); return; diff --git a/Content.Server/Construction/Commands/TileWallsCommand.cs b/Content.Server/Construction/Commands/TileWallsCommand.cs index af079405d2f..e9193503648 100644 --- a/Content.Server/Construction/Commands/TileWallsCommand.cs +++ b/Content.Server/Construction/Commands/TileWallsCommand.cs @@ -11,6 +11,10 @@ namespace Content.Server.Construction.Commands [AdminCommand(AdminFlags.Mapping)] sealed class TileWallsCommand : IConsoleCommand { + [Dependency] private readonly IEntityManager _entManager = default!; + [Dependency] private readonly IMapManager _mapManager = default!; + [Dependency] private readonly ITileDefinitionManager _tileDefManager = default!; + // ReSharper disable once StringLiteralTypo public string Command => "tilewalls"; public string Description => "Puts an underplating tile below every wall on a grid."; @@ -25,7 +29,6 @@ sealed class TileWallsCommand : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { var player = shell.Player as IPlayerSession; - var entityManager = IoCManager.Resolve(); EntityUid? gridId; switch (args.Length) @@ -37,10 +40,10 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - gridId = entityManager.GetComponent(playerEntity).GridUid; + gridId = _entManager.GetComponent(playerEntity).GridUid; break; case 1: - if (!EntityUid.TryParse(args[0], out var id)) + if (!NetEntity.TryParse(args[0], out var idNet) || !_entManager.TryGetEntity(idNet, out var id)) { shell.WriteLine($"{args[0]} is not a valid entity."); return; @@ -53,27 +56,25 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - var mapManager = IoCManager.Resolve(); - if (!mapManager.TryGetGrid(gridId, out var grid)) + if (!_mapManager.TryGetGrid(gridId, out var grid)) { shell.WriteLine($"No grid exists with id {gridId}"); return; } - if (!entityManager.EntityExists(grid.Owner)) + if (!_entManager.EntityExists(grid.Owner)) { shell.WriteLine($"Grid {gridId} doesn't have an associated grid entity."); return; } - var tileDefinitionManager = IoCManager.Resolve(); - var tagSystem = entityManager.EntitySysManager.GetEntitySystem(); - var underplating = tileDefinitionManager[TilePrototypeId]; + var tagSystem = _entManager.EntitySysManager.GetEntitySystem(); + var underplating = _tileDefManager[TilePrototypeId]; var underplatingTile = new Tile(underplating.TileId); var changed = 0; - foreach (var child in entityManager.GetComponent(grid.Owner).ChildEntities) + foreach (var child in _entManager.GetComponent(grid.Owner).ChildEntities) { - if (!entityManager.EntityExists(child)) + if (!_entManager.EntityExists(child)) { continue; } @@ -83,7 +84,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) continue; } - var childTransform = entityManager.GetComponent(child); + var childTransform = _entManager.GetComponent(child); if (!childTransform.Anchored) { @@ -91,7 +92,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) } var tile = grid.GetTileRef(childTransform.Coordinates); - var tileDef = (ContentTileDefinition) tileDefinitionManager[tile.Tile.TypeId]; + var tileDef = (ContentTileDefinition) _tileDefManager[tile.Tile.TypeId]; if (tileDef.ID == TilePrototypeId) { diff --git a/Content.Server/Construction/Completions/AddContainer.cs b/Content.Server/Construction/Completions/AddContainer.cs index 882c5c2a525..5885cd82483 100644 --- a/Content.Server/Construction/Completions/AddContainer.cs +++ b/Content.Server/Construction/Completions/AddContainer.cs @@ -5,7 +5,7 @@ namespace Content.Server.Construction.Completions { [UsedImplicitly] [DataDefinition] - public sealed class AddContainer : IGraphAction + public sealed partial class AddContainer : IGraphAction { [DataField("container")] public string? Container { get; private set; } diff --git a/Content.Server/Construction/Completions/AdminLog.cs b/Content.Server/Construction/Completions/AdminLog.cs index 9cde75ba0c1..82758634d9c 100644 --- a/Content.Server/Construction/Completions/AdminLog.cs +++ b/Content.Server/Construction/Completions/AdminLog.cs @@ -9,7 +9,7 @@ namespace Content.Server.Construction.Completions; /// Generate an admin log upon reaching this node. Useful for dangerous construction (e.g., modular grenades) /// [UsedImplicitly] -public sealed class AdminLog : IGraphAction +public sealed partial class AdminLog : IGraphAction { [DataField("logType")] public LogType LogType = LogType.Construction; diff --git a/Content.Server/Construction/Completions/AppearanceChange.cs b/Content.Server/Construction/Completions/AppearanceChange.cs index 4b05281165c..15b3816722f 100644 --- a/Content.Server/Construction/Completions/AppearanceChange.cs +++ b/Content.Server/Construction/Completions/AppearanceChange.cs @@ -7,7 +7,7 @@ namespace Content.Server.Construction.Completions; [UsedImplicitly] [DataDefinition] -public sealed class AppearanceChange : IGraphAction +public sealed partial class AppearanceChange : IGraphAction { /// /// The appearance key to use. diff --git a/Content.Server/Construction/Completions/AttemptElectrocute.cs b/Content.Server/Construction/Completions/AttemptElectrocute.cs index eb6c1007648..05f0977b662 100644 --- a/Content.Server/Construction/Completions/AttemptElectrocute.cs +++ b/Content.Server/Construction/Completions/AttemptElectrocute.cs @@ -4,7 +4,7 @@ namespace Content.Server.Construction.Completions; [DataDefinition] -public sealed class AttemptElectrocute : IGraphAction +public sealed partial class AttemptElectrocute : IGraphAction { public void PerformAction(EntityUid uid, EntityUid? userUid, IEntityManager entityManager) { diff --git a/Content.Server/Construction/Completions/BuildMech.cs b/Content.Server/Construction/Completions/BuildMech.cs index b801daac268..46c6caf5cf0 100644 --- a/Content.Server/Construction/Completions/BuildMech.cs +++ b/Content.Server/Construction/Completions/BuildMech.cs @@ -15,7 +15,7 @@ namespace Content.Server.Construction.Completions; /// for right now, the cell that was used in construction. /// [UsedImplicitly, DataDefinition] -public sealed class BuildMech : IGraphAction +public sealed partial class BuildMech : IGraphAction { [DataField("mechPrototype", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] public string MechPrototype = string.Empty; diff --git a/Content.Server/Construction/Completions/ChangeWiresPanelSecurityLevel.cs b/Content.Server/Construction/Completions/ChangeWiresPanelSecurityLevel.cs index 28d7c833d3f..e4848492aef 100644 --- a/Content.Server/Construction/Completions/ChangeWiresPanelSecurityLevel.cs +++ b/Content.Server/Construction/Completions/ChangeWiresPanelSecurityLevel.cs @@ -7,7 +7,7 @@ namespace Content.Server.Construction.Completions; [UsedImplicitly] [DataDefinition] -public sealed class ChangeWiresPanelSecurityLevel : IGraphAction +public sealed partial class ChangeWiresPanelSecurityLevel : IGraphAction { [DataField("level")] [ValidatePrototypeId] diff --git a/Content.Server/Construction/Completions/ConditionalAction.cs b/Content.Server/Construction/Completions/ConditionalAction.cs index d2827c5ecb1..905d4aab026 100644 --- a/Content.Server/Construction/Completions/ConditionalAction.cs +++ b/Content.Server/Construction/Completions/ConditionalAction.cs @@ -5,15 +5,15 @@ namespace Content.Server.Construction.Completions { [UsedImplicitly] [DataDefinition] - public sealed class ConditionalAction : IGraphAction + public sealed partial class ConditionalAction : IGraphAction { - [DataField("passUser")] public bool PassUser { get; } + [DataField("passUser")] public bool PassUser { get; private set; } - [DataField("condition", required:true)] public IGraphCondition? Condition { get; } + [DataField("condition", required:true)] public IGraphCondition? Condition { get; private set; } - [DataField("action", required:true)] public IGraphAction? Action { get; } + [DataField("action", required:true)] public IGraphAction? Action { get; private set; } - [DataField("else")] public IGraphAction? Else { get; } + [DataField("else")] public IGraphAction? Else { get; private set; } public void PerformAction(EntityUid uid, EntityUid? userUid, IEntityManager entityManager) { diff --git a/Content.Server/Construction/Completions/DeleteEntitiesInContainer.cs b/Content.Server/Construction/Completions/DeleteEntitiesInContainer.cs index 0b030447aca..b18bb733d91 100644 --- a/Content.Server/Construction/Completions/DeleteEntitiesInContainer.cs +++ b/Content.Server/Construction/Completions/DeleteEntitiesInContainer.cs @@ -6,9 +6,9 @@ namespace Content.Server.Construction.Completions { [DataDefinition] - public sealed class DeleteEntitiesInContainer : IGraphAction + public sealed partial class DeleteEntitiesInContainer : IGraphAction { - [DataField("container")] public string Container { get; } = string.Empty; + [DataField("container")] public string Container { get; private set; } = string.Empty; public void PerformAction(EntityUid uid, EntityUid? userUid, IEntityManager entityManager) { diff --git a/Content.Server/Construction/Completions/DeleteEntity.cs b/Content.Server/Construction/Completions/DeleteEntity.cs index 8aa1f988933..97bb605105b 100644 --- a/Content.Server/Construction/Completions/DeleteEntity.cs +++ b/Content.Server/Construction/Completions/DeleteEntity.cs @@ -15,7 +15,7 @@ public ConstructionBeforeDeleteEvent(EntityUid? user) [UsedImplicitly] [DataDefinition] - public sealed class DeleteEntity : IGraphAction + public sealed partial class DeleteEntity : IGraphAction { public void PerformAction(EntityUid uid, EntityUid? userUid, IEntityManager entityManager) { diff --git a/Content.Server/Construction/Completions/DestroyEntity.cs b/Content.Server/Construction/Completions/DestroyEntity.cs index 6220c325df1..d7600ca28ad 100644 --- a/Content.Server/Construction/Completions/DestroyEntity.cs +++ b/Content.Server/Construction/Completions/DestroyEntity.cs @@ -6,7 +6,7 @@ namespace Content.Server.Construction.Completions { [UsedImplicitly] [DataDefinition] - public sealed class DestroyEntity : IGraphAction + public sealed partial class DestroyEntity : IGraphAction { public void PerformAction(EntityUid uid, EntityUid? userUid, IEntityManager entityManager) { diff --git a/Content.Server/Construction/Completions/EmptyAllContainers.cs b/Content.Server/Construction/Completions/EmptyAllContainers.cs index ab71c8beddb..5b086efb4a9 100644 --- a/Content.Server/Construction/Completions/EmptyAllContainers.cs +++ b/Content.Server/Construction/Completions/EmptyAllContainers.cs @@ -9,7 +9,7 @@ namespace Content.Server.Construction.Completions { [UsedImplicitly] [DataDefinition] - public sealed class EmptyAllContainers : IGraphAction + public sealed partial class EmptyAllContainers : IGraphAction { /// /// Whether or not the user should attempt to pick up the removed entities. diff --git a/Content.Server/Construction/Completions/EmptyContainer.cs b/Content.Server/Construction/Completions/EmptyContainer.cs index 063ed883c80..21e36e7e14a 100644 --- a/Content.Server/Construction/Completions/EmptyContainer.cs +++ b/Content.Server/Construction/Completions/EmptyContainer.cs @@ -9,7 +9,7 @@ namespace Content.Server.Construction.Completions { [UsedImplicitly] [DataDefinition] - public sealed class EmptyContainer : IGraphAction + public sealed partial class EmptyContainer : IGraphAction { [DataField("container")] public string Container { get; private set; } = string.Empty; diff --git a/Content.Server/Construction/Completions/GivePrototype.cs b/Content.Server/Construction/Completions/GivePrototype.cs index 9d49c16cd80..f45bd5ba105 100644 --- a/Content.Server/Construction/Completions/GivePrototype.cs +++ b/Content.Server/Construction/Completions/GivePrototype.cs @@ -11,7 +11,7 @@ namespace Content.Server.Construction.Completions { [UsedImplicitly] [DataDefinition] - public sealed class GivePrototype : IGraphAction + public sealed partial class GivePrototype : IGraphAction { [DataField("prototype", customTypeSerializer:typeof(PrototypeIdSerializer))] public string Prototype { get; private set; } = string.Empty; diff --git a/Content.Server/Construction/Completions/MachineFrameRegenerateProgress.cs b/Content.Server/Construction/Completions/MachineFrameRegenerateProgress.cs index 425c95bc0dd..a47dec67426 100644 --- a/Content.Server/Construction/Completions/MachineFrameRegenerateProgress.cs +++ b/Content.Server/Construction/Completions/MachineFrameRegenerateProgress.cs @@ -6,7 +6,7 @@ namespace Content.Server.Construction.Completions { [UsedImplicitly] [DataDefinition] - public sealed class MachineFrameRegenerateProgress : IGraphAction + public sealed partial class MachineFrameRegenerateProgress : IGraphAction { public void PerformAction(EntityUid uid, EntityUid? userUid, IEntityManager entityManager) { diff --git a/Content.Server/Construction/Completions/MoveContainer.cs b/Content.Server/Construction/Completions/MoveContainer.cs index 77d11c7e851..cba1819ae9d 100644 --- a/Content.Server/Construction/Completions/MoveContainer.cs +++ b/Content.Server/Construction/Completions/MoveContainer.cs @@ -8,10 +8,10 @@ namespace Content.Server.Construction.Completions { [UsedImplicitly] [DataDefinition] - public sealed class MoveContainer : IGraphAction + public sealed partial class MoveContainer : IGraphAction { - [DataField("from")] public string? FromContainer { get; } - [DataField("to")] public string? ToContainer { get; } + [DataField("from")] public string? FromContainer { get; private set; } + [DataField("to")] public string? ToContainer { get; private set; } public void PerformAction(EntityUid uid, EntityUid? userUid, IEntityManager entityManager) { diff --git a/Content.Server/Construction/Completions/PlaySound.cs b/Content.Server/Construction/Completions/PlaySound.cs index 28ebc2e19ac..9fa3c43ae47 100644 --- a/Content.Server/Construction/Completions/PlaySound.cs +++ b/Content.Server/Construction/Completions/PlaySound.cs @@ -7,7 +7,7 @@ namespace Content.Server.Construction.Completions { [UsedImplicitly] [DataDefinition] - public sealed class PlaySound : IGraphAction + public sealed partial class PlaySound : IGraphAction { [DataField("sound", required: true)] public SoundSpecifier Sound { get; private set; } = default!; diff --git a/Content.Server/Construction/Completions/PopupEveryone.cs b/Content.Server/Construction/Completions/PopupEveryone.cs index 08424c1c0da..6ceeea7cb07 100644 --- a/Content.Server/Construction/Completions/PopupEveryone.cs +++ b/Content.Server/Construction/Completions/PopupEveryone.cs @@ -5,9 +5,9 @@ namespace Content.Server.Construction.Completions { [DataDefinition] - public sealed class PopupEveryone : IGraphAction + public sealed partial class PopupEveryone : IGraphAction { - [DataField("text")] public string Text { get; } = string.Empty; + [DataField("text")] public string Text { get; private set; } = string.Empty; public void PerformAction(EntityUid uid, EntityUid? userUid, IEntityManager entityManager) { diff --git a/Content.Server/Construction/Completions/PopupUser.cs b/Content.Server/Construction/Completions/PopupUser.cs index 0f598d263f5..b0d063acc90 100644 --- a/Content.Server/Construction/Completions/PopupUser.cs +++ b/Content.Server/Construction/Completions/PopupUser.cs @@ -7,10 +7,10 @@ namespace Content.Server.Construction.Completions { [UsedImplicitly] [DataDefinition] - public sealed class PopupUser : IGraphAction + public sealed partial class PopupUser : IGraphAction { - [DataField("cursor")] public bool Cursor { get; } - [DataField("text")] public string Text { get; } = string.Empty; + [DataField("cursor")] public bool Cursor { get; private set; } + [DataField("text")] public string Text { get; private set; } = string.Empty; public void PerformAction(EntityUid uid, EntityUid? userUid, IEntityManager entityManager) { diff --git a/Content.Server/Construction/Completions/RaiseEvent.cs b/Content.Server/Construction/Completions/RaiseEvent.cs index 2d28ae5c522..4f510bd7e90 100644 --- a/Content.Server/Construction/Completions/RaiseEvent.cs +++ b/Content.Server/Construction/Completions/RaiseEvent.cs @@ -4,16 +4,16 @@ namespace Content.Server.Construction.Completions { [UsedImplicitly] - public sealed class RaiseEvent : IGraphAction + public sealed partial class RaiseEvent : IGraphAction { [DataField("event", required:true)] - public EntityEventArgs? Event { get; } + public EntityEventArgs? Event { get; private set; } [DataField("directed")] - public bool Directed { get; } = true; + public bool Directed { get; private set; } = true; [DataField("broadcast")] - public bool Broadcast { get; } = true; + public bool Broadcast { get; private set; } = true; public void PerformAction(EntityUid uid, EntityUid? userUid, IEntityManager entityManager) { diff --git a/Content.Server/Construction/Completions/SetAnchor.cs b/Content.Server/Construction/Completions/SetAnchor.cs index d507968b664..989ecc99bda 100644 --- a/Content.Server/Construction/Completions/SetAnchor.cs +++ b/Content.Server/Construction/Completions/SetAnchor.cs @@ -5,7 +5,7 @@ namespace Content.Server.Construction.Completions { [UsedImplicitly] [DataDefinition] - public sealed class SetAnchor : IGraphAction + public sealed partial class SetAnchor : IGraphAction { [DataField("value")] public bool Value { get; private set; } = true; diff --git a/Content.Server/Construction/Completions/SetStackCount.cs b/Content.Server/Construction/Completions/SetStackCount.cs index 48f255102ba..f1e3f9fb9ea 100644 --- a/Content.Server/Construction/Completions/SetStackCount.cs +++ b/Content.Server/Construction/Completions/SetStackCount.cs @@ -6,9 +6,9 @@ namespace Content.Server.Construction.Completions { [UsedImplicitly] [DataDefinition] - public sealed class SetStackCount : IGraphAction + public sealed partial class SetStackCount : IGraphAction { - [DataField("amount")] public int Amount { get; } = 1; + [DataField("amount")] public int Amount { get; private set; } = 1; public void PerformAction(EntityUid uid, EntityUid? userUid, IEntityManager entityManager) { diff --git a/Content.Server/Construction/Completions/SnapToGrid.cs b/Content.Server/Construction/Completions/SnapToGrid.cs index 4793a73a428..47941108f53 100644 --- a/Content.Server/Construction/Completions/SnapToGrid.cs +++ b/Content.Server/Construction/Completions/SnapToGrid.cs @@ -6,7 +6,7 @@ namespace Content.Server.Construction.Completions { [UsedImplicitly] [DataDefinition] - public sealed class SnapToGrid : IGraphAction + public sealed partial class SnapToGrid : IGraphAction { [DataField("southRotation")] public bool SouthRotation { get; private set; } diff --git a/Content.Server/Construction/Completions/SpawnPrototype.cs b/Content.Server/Construction/Completions/SpawnPrototype.cs index cb8f124a413..c42ecb611f3 100644 --- a/Content.Server/Construction/Completions/SpawnPrototype.cs +++ b/Content.Server/Construction/Completions/SpawnPrototype.cs @@ -10,7 +10,7 @@ namespace Content.Server.Construction.Completions { [UsedImplicitly] [DataDefinition] - public sealed class SpawnPrototype : IGraphAction + public sealed partial class SpawnPrototype : IGraphAction { [DataField("prototype", customTypeSerializer:typeof(PrototypeIdSerializer))] public string Prototype { get; private set; } = string.Empty; diff --git a/Content.Server/Construction/Completions/SpawnPrototypeAtContainer.cs b/Content.Server/Construction/Completions/SpawnPrototypeAtContainer.cs index 89812cfeb71..fc4563c93ae 100644 --- a/Content.Server/Construction/Completions/SpawnPrototypeAtContainer.cs +++ b/Content.Server/Construction/Completions/SpawnPrototypeAtContainer.cs @@ -7,11 +7,11 @@ namespace Content.Server.Construction.Completions { [UsedImplicitly] [DataDefinition] - public sealed class SpawnPrototypeAtContainer : IGraphAction + public sealed partial class SpawnPrototypeAtContainer : IGraphAction { - [DataField("prototype")] public string Prototype { get; } = string.Empty; - [DataField("container")] public string Container { get; } = string.Empty; - [DataField("amount")] public int Amount { get; } = 1; + [DataField("prototype")] public string Prototype { get; private set; } = string.Empty; + [DataField("container")] public string Container { get; private set; } = string.Empty; + [DataField("amount")] public int Amount { get; private set; } = 1; public void PerformAction(EntityUid uid, EntityUid? userUid, IEntityManager entityManager) { diff --git a/Content.Server/Construction/Completions/VisualizerDataInt.cs b/Content.Server/Construction/Completions/VisualizerDataInt.cs index 065e35b6aa7..cd25f82adb4 100644 --- a/Content.Server/Construction/Completions/VisualizerDataInt.cs +++ b/Content.Server/Construction/Completions/VisualizerDataInt.cs @@ -8,7 +8,7 @@ namespace Content.Server.Construction.Completions { [UsedImplicitly] [DataDefinition] - public sealed class VisualizerDataInt : IGraphAction + public sealed partial class VisualizerDataInt : IGraphAction { [DataField("key")] public string Key { get; private set; } = string.Empty; [DataField("data")] public int Data { get; private set; } = 0; diff --git a/Content.Server/Construction/Components/ComputerBoardComponent.cs b/Content.Server/Construction/Components/ComputerBoardComponent.cs index a75ab34b80a..f3e897c3e42 100644 --- a/Content.Server/Construction/Components/ComputerBoardComponent.cs +++ b/Content.Server/Construction/Components/ComputerBoardComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Construction.Components /// Used for construction graphs in building computers. /// [RegisterComponent] - public sealed class ComputerBoardComponent : Component + public sealed partial class ComputerBoardComponent : Component { [DataField("prototype", customTypeSerializer:typeof(PrototypeIdSerializer))] public string? Prototype { get; private set; } diff --git a/Content.Server/Construction/Components/ComputerComponent.cs b/Content.Server/Construction/Components/ComputerComponent.cs index b0e8d03b208..10d91df2da9 100644 --- a/Content.Server/Construction/Components/ComputerComponent.cs +++ b/Content.Server/Construction/Components/ComputerComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Construction.Components { [RegisterComponent, ComponentProtoName("Computer")] - public sealed class ComputerComponent : Component + public sealed partial class ComputerComponent : Component { [DataField("board", customTypeSerializer:typeof(PrototypeIdSerializer))] public string? BoardPrototype; diff --git a/Content.Server/Construction/Components/ConstructionComponent.cs b/Content.Server/Construction/Components/ConstructionComponent.cs index 193c644da87..4164763f03d 100644 --- a/Content.Server/Construction/Components/ConstructionComponent.cs +++ b/Content.Server/Construction/Components/ConstructionComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.Construction.Components { [RegisterComponent, Access(typeof(ConstructionSystem))] - public sealed class ConstructionComponent : Component + public sealed partial class ConstructionComponent : Component { [DataField("graph", required:true, customTypeSerializer:typeof(PrototypeIdSerializer))] public string Graph { get; set; } = string.Empty; diff --git a/Content.Server/Construction/Components/MachineComponent.cs b/Content.Server/Construction/Components/MachineComponent.cs index 59a251c5683..42c85e6d0b5 100644 --- a/Content.Server/Construction/Components/MachineComponent.cs +++ b/Content.Server/Construction/Components/MachineComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.Construction.Components { [RegisterComponent, ComponentProtoName("Machine")] - public sealed class MachineComponent : Component + public sealed partial class MachineComponent : Component { [DataField("board", customTypeSerializer: typeof(PrototypeIdSerializer))] public string? BoardPrototype { get; private set; } diff --git a/Content.Server/Construction/Components/MachineFrameComponent.cs b/Content.Server/Construction/Components/MachineFrameComponent.cs index 3da4ba69611..16aba3bd173 100644 --- a/Content.Server/Construction/Components/MachineFrameComponent.cs +++ b/Content.Server/Construction/Components/MachineFrameComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Construction.Components { [RegisterComponent] - public sealed class MachineFrameComponent : Component + public sealed partial class MachineFrameComponent : Component { public const string PartContainerName = "machine_parts"; public const string BoardContainerName = "machine_board"; @@ -15,7 +15,7 @@ public sealed class MachineFrameComponent : Component public bool HasBoard => BoardContainer?.ContainedEntities.Count != 0; [DataField("progress", customTypeSerializer: typeof(PrototypeIdDictionarySerializer))] - public readonly Dictionary Progress = new(); + public Dictionary Progress = new(); [ViewVariables] public readonly Dictionary MaterialProgress = new(); @@ -46,7 +46,7 @@ public sealed class MachineFrameComponent : Component } [DataDefinition] - public sealed class MachineDeconstructedEvent : EntityEventArgs + public sealed partial class MachineDeconstructedEvent : EntityEventArgs { } } diff --git a/Content.Server/Construction/Components/PartExchangerComponent.cs b/Content.Server/Construction/Components/PartExchangerComponent.cs index 1e9a15e243c..6cf32a5e460 100644 --- a/Content.Server/Construction/Components/PartExchangerComponent.cs +++ b/Content.Server/Construction/Components/PartExchangerComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Construction.Components; [RegisterComponent] -public sealed class PartExchangerComponent : Component +public sealed partial class PartExchangerComponent : Component { /// /// How long it takes to exchange the parts diff --git a/Content.Server/Construction/Components/WelderRefinableComponent.cs b/Content.Server/Construction/Components/WelderRefinableComponent.cs index ec2753374a7..9d8958f7614 100644 --- a/Content.Server/Construction/Components/WelderRefinableComponent.cs +++ b/Content.Server/Construction/Components/WelderRefinableComponent.cs @@ -8,7 +8,7 @@ namespace Content.Server.Construction.Components /// For example, glass shard can be refined to glass sheet. /// [RegisterComponent] - public sealed class WelderRefinableComponent : Component + public sealed partial class WelderRefinableComponent : Component { [DataField("refineResult")] public HashSet? RefineResult = new(); diff --git a/Content.Server/Construction/Conditions/AirlockBolted.cs b/Content.Server/Construction/Conditions/AirlockBolted.cs index 6f1b98ae0b6..7048735f883 100644 --- a/Content.Server/Construction/Conditions/AirlockBolted.cs +++ b/Content.Server/Construction/Conditions/AirlockBolted.cs @@ -7,7 +7,7 @@ namespace Content.Server.Construction.Conditions { [UsedImplicitly] [DataDefinition] - public sealed class DoorBolted : IGraphCondition + public sealed partial class DoorBolted : IGraphCondition { [DataField("value")] public bool Value { get; private set; } = true; diff --git a/Content.Server/Construction/Conditions/AllConditions.cs b/Content.Server/Construction/Conditions/AllConditions.cs index b9815bfe920..626b6075212 100644 --- a/Content.Server/Construction/Conditions/AllConditions.cs +++ b/Content.Server/Construction/Conditions/AllConditions.cs @@ -6,10 +6,10 @@ namespace Content.Server.Construction.Conditions { [UsedImplicitly] [DataDefinition] - public sealed class AllConditions : IGraphCondition + public sealed partial class AllConditions : IGraphCondition { [DataField("conditions")] - public IGraphCondition[] Conditions { get; } = Array.Empty(); + public IGraphCondition[] Conditions { get; private set; } = Array.Empty(); public bool Condition(EntityUid uid, IEntityManager entityManager) { diff --git a/Content.Server/Construction/Conditions/AllWiresCut.cs b/Content.Server/Construction/Conditions/AllWiresCut.cs index 065edd8c85f..10cb2e5cf09 100644 --- a/Content.Server/Construction/Conditions/AllWiresCut.cs +++ b/Content.Server/Construction/Conditions/AllWiresCut.cs @@ -11,7 +11,7 @@ namespace Content.Server.Construction.Conditions /// [UsedImplicitly] [DataDefinition] - public sealed class AllWiresCut : IGraphCondition + public sealed partial class AllWiresCut : IGraphCondition { [DataField("value")] public bool Value { get; private set; } = true; diff --git a/Content.Server/Construction/Conditions/AnyConditions.cs b/Content.Server/Construction/Conditions/AnyConditions.cs index 485fbc560bf..499bdf54af3 100644 --- a/Content.Server/Construction/Conditions/AnyConditions.cs +++ b/Content.Server/Construction/Conditions/AnyConditions.cs @@ -6,10 +6,10 @@ namespace Content.Server.Construction.Conditions { [UsedImplicitly] [DataDefinition] - public sealed class AnyConditions : IGraphCondition + public sealed partial class AnyConditions : IGraphCondition { [DataField("conditions")] - public IGraphCondition[] Conditions { get; } = Array.Empty(); + public IGraphCondition[] Conditions { get; private set; } = Array.Empty(); public bool Condition(EntityUid uid, IEntityManager entityManager) { diff --git a/Content.Server/Construction/Conditions/ComponentInTile.cs b/Content.Server/Construction/Conditions/ComponentInTile.cs index 1ceb70c8227..8ab4046a721 100644 --- a/Content.Server/Construction/Conditions/ComponentInTile.cs +++ b/Content.Server/Construction/Conditions/ComponentInTile.cs @@ -12,7 +12,7 @@ namespace Content.Server.Construction.Conditions /// [UsedImplicitly] [DataDefinition] - public sealed class ComponentInTile : IGraphCondition + public sealed partial class ComponentInTile : IGraphCondition { /// /// If true, any entity on the tile must have the component. @@ -22,13 +22,13 @@ public sealed class ComponentInTile : IGraphCondition public bool HasEntity { get; private set; } [DataField("examineText")] - public string? ExamineText { get; } + public string? ExamineText { get; private set; } [DataField("guideText")] - public string? GuideText { get; } + public string? GuideText { get; private set; } [DataField("guideIcon")] - public SpriteSpecifier? GuideIcon { get; } + public SpriteSpecifier? GuideIcon { get; private set; } /// /// The component name in question. diff --git a/Content.Server/Construction/Conditions/ContainerEmpty.cs b/Content.Server/Construction/Conditions/ContainerEmpty.cs index e37d1201378..cc2b25d1ad0 100644 --- a/Content.Server/Construction/Conditions/ContainerEmpty.cs +++ b/Content.Server/Construction/Conditions/ContainerEmpty.cs @@ -9,19 +9,19 @@ namespace Content.Server.Construction.Conditions { [UsedImplicitly] [DataDefinition] - public sealed class ContainerEmpty : IGraphCondition + public sealed partial class ContainerEmpty : IGraphCondition { [DataField("container")] - public string Container { get; } = string.Empty; + public string Container { get; private set; } = string.Empty; [DataField("examineText")] - public string? ExamineText { get; } + public string? ExamineText { get; private set; } [DataField("guideStep")] - public string? GuideText { get; } + public string? GuideText { get; private set; } [DataField("guideIcon")] - public SpriteSpecifier? GuideIcon { get; } + public SpriteSpecifier? GuideIcon { get; private set; } public bool Condition(EntityUid uid, IEntityManager entityManager) { diff --git a/Content.Server/Construction/Conditions/ContainerNotEmpty.cs b/Content.Server/Construction/Conditions/ContainerNotEmpty.cs index 25db10c1888..c6e79434f40 100644 --- a/Content.Server/Construction/Conditions/ContainerNotEmpty.cs +++ b/Content.Server/Construction/Conditions/ContainerNotEmpty.cs @@ -9,12 +9,12 @@ namespace Content.Server.Construction.Conditions { [UsedImplicitly] [DataDefinition] - public sealed class ContainerNotEmpty : IGraphCondition + public sealed partial class ContainerNotEmpty : IGraphCondition { [DataField("container")] public string Container { get; private set; } = string.Empty; - [DataField("examineText")] public string? ExamineText { get; } - [DataField("guideText")] public string? GuideText { get; } - [DataField("guideIcon")] public SpriteSpecifier? GuideIcon { get; } + [DataField("examineText")] public string? ExamineText { get; private set; } + [DataField("guideText")] public string? GuideText { get; private set; } + [DataField("guideIcon")] public SpriteSpecifier? GuideIcon { get; private set; } public bool Condition(EntityUid uid, IEntityManager entityManager) { diff --git a/Content.Server/Construction/Conditions/DoorWelded.cs b/Content.Server/Construction/Conditions/DoorWelded.cs index 3e3042e4979..4ae0cc7d90c 100644 --- a/Content.Server/Construction/Conditions/DoorWelded.cs +++ b/Content.Server/Construction/Conditions/DoorWelded.cs @@ -7,7 +7,7 @@ namespace Content.Server.Construction.Conditions { [UsedImplicitly] [DataDefinition] - public sealed class DoorWelded : IGraphCondition + public sealed partial class DoorWelded : IGraphCondition { [DataField("welded")] public bool Welded { get; private set; } = true; diff --git a/Content.Server/Construction/Conditions/EntityAnchored.cs b/Content.Server/Construction/Conditions/EntityAnchored.cs index 78b7e33ee90..6bcfe0b772f 100644 --- a/Content.Server/Construction/Conditions/EntityAnchored.cs +++ b/Content.Server/Construction/Conditions/EntityAnchored.cs @@ -7,7 +7,7 @@ namespace Content.Server.Construction.Conditions { [UsedImplicitly] [DataDefinition] - public sealed class EntityAnchored : IGraphCondition + public sealed partial class EntityAnchored : IGraphCondition { [DataField("anchored")] public bool Anchored { get; private set; } = true; diff --git a/Content.Server/Construction/Conditions/Locked.cs b/Content.Server/Construction/Conditions/Locked.cs index 2b8abd335c8..fde704b161b 100644 --- a/Content.Server/Construction/Conditions/Locked.cs +++ b/Content.Server/Construction/Conditions/Locked.cs @@ -7,7 +7,7 @@ namespace Content.Server.Construction.Conditions { [UsedImplicitly] [DataDefinition] - public sealed class Locked : IGraphCondition + public sealed partial class Locked : IGraphCondition { [DataField("locked")] public bool IsLocked { get; private set; } = true; diff --git a/Content.Server/Construction/Conditions/MachineFrameComplete.cs b/Content.Server/Construction/Conditions/MachineFrameComplete.cs index 449418d5e51..9fa4098ec21 100644 --- a/Content.Server/Construction/Conditions/MachineFrameComplete.cs +++ b/Content.Server/Construction/Conditions/MachineFrameComplete.cs @@ -11,13 +11,13 @@ namespace Content.Server.Construction.Conditions /// [UsedImplicitly] [DataDefinition] - public sealed class MachineFrameComplete : IGraphCondition + public sealed partial class MachineFrameComplete : IGraphCondition { [DataField("guideIconBoard")] - public SpriteSpecifier? GuideIconBoard { get; } + public SpriteSpecifier? GuideIconBoard { get; private set; } [DataField("guideIconParts")] - public SpriteSpecifier? GuideIconPart { get; } + public SpriteSpecifier? GuideIconPart { get; private set; } public bool Condition(EntityUid uid, IEntityManager entityManager) @@ -34,7 +34,7 @@ public bool DoExamine(ExaminedEvent args) var entityManager = IoCManager.Resolve(); - if (!entityManager.TryGetComponent(entity, out var machineFrame)) + if (!entityManager.TryGetComponent(entity, out MachineFrameComponent? machineFrame)) return false; if (!machineFrame.HasBoard) diff --git a/Content.Server/Construction/Conditions/StorageWelded.cs b/Content.Server/Construction/Conditions/StorageWelded.cs index 8bc54de1d2e..ba0927ffa37 100644 --- a/Content.Server/Construction/Conditions/StorageWelded.cs +++ b/Content.Server/Construction/Conditions/StorageWelded.cs @@ -1,23 +1,21 @@ using Content.Server.Storage.Components; using Content.Shared.Construction; using Content.Shared.Examine; +using Content.Shared.Tools.Systems; using JetBrains.Annotations; namespace Content.Server.Construction.Conditions { [UsedImplicitly] [DataDefinition] - public sealed class StorageWelded : IGraphCondition + public sealed partial class StorageWelded : IGraphCondition { [DataField("welded")] public bool Welded { get; private set; } = true; public bool Condition(EntityUid uid, IEntityManager entityManager) { - if (!entityManager.TryGetComponent(uid, out EntityStorageComponent? entityStorageComponent)) - return false; - - return entityStorageComponent.IsWeldedShut == Welded; + return entityManager.System().IsWelded(uid) == Welded; } public bool DoExamine(ExaminedEvent args) @@ -25,11 +23,12 @@ public bool DoExamine(ExaminedEvent args) var entMan = IoCManager.Resolve(); var entity = args.Examined; - if (!entMan.TryGetComponent(entity, out EntityStorageComponent? entityStorage)) return false; + if (!entMan.HasComponent(entity)) + return false; var metaData = entMan.GetComponent(entity); - if (entityStorage.IsWeldedShut != Welded) + if (entMan.System().IsWelded(entity) != Welded) { if (Welded) args.PushMarkup(Loc.GetString("construction-examine-condition-door-weld", ("entityName", metaData.EntityName)) + "\n"); diff --git a/Content.Server/Construction/Conditions/ToiletLidClosed.cs b/Content.Server/Construction/Conditions/ToiletLidClosed.cs index 93e7ee2f744..40a3be006bc 100644 --- a/Content.Server/Construction/Conditions/ToiletLidClosed.cs +++ b/Content.Server/Construction/Conditions/ToiletLidClosed.cs @@ -7,7 +7,7 @@ namespace Content.Server.Construction.Conditions { [UsedImplicitly] [DataDefinition] - public sealed class ToiletLidClosed : IGraphCondition + public sealed partial class ToiletLidClosed : IGraphCondition { public bool Condition(EntityUid uid, IEntityManager entityManager) { diff --git a/Content.Server/Construction/Conditions/WirePanel.cs b/Content.Server/Construction/Conditions/WirePanel.cs index a4c478026e0..9e53b97b09d 100644 --- a/Content.Server/Construction/Conditions/WirePanel.cs +++ b/Content.Server/Construction/Conditions/WirePanel.cs @@ -7,7 +7,7 @@ namespace Content.Server.Construction.Conditions { [UsedImplicitly] [DataDefinition] - public sealed class WirePanel : IGraphCondition + public sealed partial class WirePanel : IGraphCondition { [DataField("open")] public bool Open { get; private set; } = true; diff --git a/Content.Server/Construction/ConstructionSystem.Graph.cs b/Content.Server/Construction/ConstructionSystem.Graph.cs index 43b7b009a59..5d4bcde4cec 100644 --- a/Content.Server/Construction/ConstructionSystem.Graph.cs +++ b/Content.Server/Construction/ConstructionSystem.Graph.cs @@ -324,11 +324,17 @@ public bool ChangeNode(EntityUid uid, EntityUid? userUid, string id, bool perfor } } - // We set the graph and node accordingly. - ChangeGraph(newUid, userUid, construction.Graph, construction.Node, false, newConstruction); + // If the new entity has the *same* construction graph, stay on the same node. + // If not, we effectively restart the construction graph, so the new entity can be completed. + if (construction.Graph == newConstruction.Graph) + { + ChangeNode(newUid, userUid, construction.Node, false, newConstruction); - if (construction.TargetNode is {} targetNode) - SetPathfindingTarget(newUid, targetNode, newConstruction); + // Retain the target node if an entity change happens in response to deconstruction; + // in that case, we must continue to move towards the start node. + if (construction.TargetNode is {} targetNode) + SetPathfindingTarget(newUid, targetNode, newConstruction); + } // Transfer all pending interaction events too. while (construction.InteractionQueue.TryDequeue(out var ev)) diff --git a/Content.Server/Construction/ConstructionSystem.Initial.cs b/Content.Server/Construction/ConstructionSystem.Initial.cs index 2284ade6bd2..e74edb5da24 100644 --- a/Content.Server/Construction/ConstructionSystem.Initial.cs +++ b/Content.Server/Construction/ConstructionSystem.Initial.cs @@ -2,7 +2,6 @@ using System.Linq; using System.Threading.Tasks; using Content.Server.Construction.Components; -using Content.Server.Storage.Components; using Content.Server.Storage.EntitySystems; using Content.Shared.ActionBlocker; using Content.Shared.Construction; @@ -30,7 +29,6 @@ public sealed partial class ConstructionSystem [Dependency] private readonly ActionBlockerSystem _actionBlocker = default!; [Dependency] private readonly SharedHandsSystem _handsSystem = default!; [Dependency] private readonly EntityLookupSystem _lookupSystem = default!; - [Dependency] private readonly StorageSystem _storageSystem = default!; // --- WARNING! LEGACY CODE AHEAD! --- // This entire file contains the legacy code for initial construction. @@ -51,9 +49,9 @@ private IEnumerable EnumerateNearby(EntityUid user) { foreach (var item in _handsSystem.EnumerateHeld(user)) { - if (TryComp(item, out ServerStorageComponent? storage)) + if (TryComp(item, out StorageComponent? storage)) { - foreach (var storedEntity in storage.StoredEntities!) + foreach (var storedEntity in storage.Container.ContainedEntities!) { yield return storedEntity; } @@ -66,10 +64,12 @@ private IEnumerable EnumerateNearby(EntityUid user) { while (containerSlotEnumerator.MoveNext(out var containerSlot)) { - if(!containerSlot.ContainedEntity.HasValue) continue; - if (EntityManager.TryGetComponent(containerSlot.ContainedEntity.Value, out ServerStorageComponent? storage)) + if(!containerSlot.ContainedEntity.HasValue) + continue; + + if (EntityManager.TryGetComponent(containerSlot.ContainedEntity.Value, out StorageComponent? storage)) { - foreach (var storedEntity in storage.StoredEntities!) + foreach (var storedEntity in storage.Container.ContainedEntities) { yield return storedEntity; } @@ -207,12 +207,9 @@ void ShutdownContainers() continue; // Dump out any stored entities in used entity - if (TryComp(entity, out var storage) && storage.StoredEntities != null) + if (TryComp(entity, out var storage)) { - foreach (var storedEntity in storage.StoredEntities.ToList()) - { - _storageSystem.RemoveAndDrop(entity, storedEntity, storage); - } + _container.EmptyContainer(storage.Container); } if (string.IsNullOrEmpty(arbitraryStep.Store)) @@ -247,7 +244,7 @@ void ShutdownContainers() return null; } - var doAfterArgs = new DoAfterArgs(user, doAfterTime, new AwaitedDoAfterEvent(), null) + var doAfterArgs = new DoAfterArgs(EntityManager, user, doAfterTime, new AwaitedDoAfterEvent(), null) { BreakOnDamage = true, BreakOnTargetMove = false, @@ -432,9 +429,11 @@ private async void HandleStartStructureConstruction(TryStartStructureConstructio _beingBuilt[args.SenderSession] = newSet; } + var location = GetCoordinates(ev.Location); + foreach (var condition in constructionPrototype.Conditions) { - if (!condition.Condition(user, ev.Location, ev.Angle.GetCardinalDir())) + if (!condition.Condition(user, location, ev.Angle.GetCardinalDir())) { Cleanup(); return; @@ -453,7 +452,7 @@ void Cleanup() return; } - var mapPos = ev.Location.ToMap(EntityManager); + var mapPos = location.ToMap(EntityManager); var predicate = GetPredicate(constructionPrototype.CanBuildInImpassable, mapPos); if (!_interactionSystem.InRangeUnobstructed(user, mapPos, predicate: predicate)) @@ -515,11 +514,11 @@ void Cleanup() var xform = Transform(structure); var wasAnchored = xform.Anchored; xform.Anchored = false; - xform.Coordinates = ev.Location; + xform.Coordinates = GetCoordinates(ev.Location); xform.LocalRotation = constructionPrototype.CanRotate ? ev.Angle : Angle.Zero; xform.Anchored = wasAnchored; - RaiseNetworkEvent(new AckStructureConstructionMessage(ev.Ack, structure)); + RaiseNetworkEvent(new AckStructureConstructionMessage(ev.Ack, GetNetEntity(structure))); _adminLogger.Add(LogType.Construction, LogImpact.Low, $"{ToPrettyString(user):player} has turned a {ev.PrototypeName} construction ghost into {ToPrettyString(structure)} at {Transform(structure).Coordinates}"); Cleanup(); } diff --git a/Content.Server/Construction/ConstructionSystem.Interactions.cs b/Content.Server/Construction/ConstructionSystem.Interactions.cs index 3336736fac8..e6c0f039b02 100644 --- a/Content.Server/Construction/ConstructionSystem.Interactions.cs +++ b/Content.Server/Construction/ConstructionSystem.Interactions.cs @@ -240,7 +240,7 @@ private HandleResult HandleInteraction(EntityUid uid, object ev, ConstructionGra interactDoAfter.User, interactDoAfter.Used!.Value, uid, - interactDoAfter.ClickLocation); + GetCoordinates(interactDoAfter.ClickLocation)); doAfterState = DoAfterState.Completed; } @@ -281,9 +281,9 @@ private HandleResult HandleInteraction(EntityUid uid, object ev, ConstructionGra // If we still haven't completed this step's DoAfter... if (doAfterState == DoAfterState.None && insertStep.DoAfter > 0) { - var doAfterEv = new ConstructionInteractDoAfterEvent(interactUsing); + var doAfterEv = new ConstructionInteractDoAfterEvent(EntityManager, interactUsing); - var doAfterEventArgs = new DoAfterArgs(interactUsing.User, step.DoAfter, doAfterEv, uid, uid, interactUsing.Used) + var doAfterEventArgs = new DoAfterArgs(EntityManager, interactUsing.User, step.DoAfter, doAfterEv, uid, uid, interactUsing.Used) { BreakOnDamage = false, BreakOnTargetMove = true, @@ -367,7 +367,7 @@ private HandleResult HandleInteraction(EntityUid uid, object ev, ConstructionGra uid, TimeSpan.FromSeconds(toolInsertStep.DoAfter), new [] { toolInsertStep.Tool }, - new ConstructionInteractDoAfterEvent(interactUsing), + new ConstructionInteractDoAfterEvent(EntityManager, interactUsing), out var doAfter); return result && doAfter != null ? HandleResult.DoAfter : HandleResult.False; diff --git a/Content.Server/Construction/NodeEntities/BoardNodeEntity.cs b/Content.Server/Construction/NodeEntities/BoardNodeEntity.cs index 237d13be96d..4f95945262d 100644 --- a/Content.Server/Construction/NodeEntities/BoardNodeEntity.cs +++ b/Content.Server/Construction/NodeEntities/BoardNodeEntity.cs @@ -12,7 +12,7 @@ namespace Content.Server.Construction.NodeEntities; /// [UsedImplicitly] [DataDefinition] -public sealed class BoardNodeEntity : IGraphNodeEntity +public sealed partial class BoardNodeEntity : IGraphNodeEntity { [DataField("container")] public string Container { get; private set; } = string.Empty; diff --git a/Content.Server/Construction/PartExchangerSystem.cs b/Content.Server/Construction/PartExchangerSystem.cs index f5d7a4c3545..3f732019651 100644 --- a/Content.Server/Construction/PartExchangerSystem.cs +++ b/Content.Server/Construction/PartExchangerSystem.cs @@ -1,12 +1,12 @@ using System.Linq; using Content.Server.Construction.Components; -using Content.Server.Storage.Components; using Content.Server.Storage.EntitySystems; using Content.Shared.DoAfter; using Content.Shared.Construction.Components; using Content.Shared.Exchanger; using Content.Shared.Interaction; using Content.Shared.Popups; +using Content.Shared.Storage; using Robust.Shared.Containers; using Robust.Shared.Utility; using Content.Shared.Wires; @@ -41,13 +41,13 @@ private void OnDoAfter(EntityUid uid, PartExchangerComponent component, DoAfterE if (args.Handled || args.Args.Target == null) return; - if (!TryComp(uid, out var storage) || storage.Storage == null) + if (!TryComp(uid, out var storage) || storage.Container == null) return; //the parts are stored in here var machinePartQuery = GetEntityQuery(); var machineParts = new List<(EntityUid, MachinePartComponent)>(); - foreach (var item in storage.Storage.ContainedEntities) //get parts in RPED + foreach (var item in storage.Container.ContainedEntities) //get parts in RPED { if (machinePartQuery.TryGetComponent(item, out var part)) machineParts.Add((item, part)); @@ -96,7 +96,7 @@ private void TryExchangeMachineParts(EntityUid uid, EntityUid storageUid, List<( //put the unused parts back into rped. (this also does the "swapping") foreach (var (unused, _) in machineParts) { - _storage.Insert(storageUid, unused, null, false); + _storage.Insert(storageUid, unused, playSound: false); } _construction.RefreshParts(uid, machine); } @@ -146,7 +146,7 @@ private void TryConstructMachineParts(EntityUid uid, EntityUid storageEnt, List< //put the unused parts back into rped. (this also does the "swapping") foreach (var (unused, _) in machineParts) { - _storage.Insert(storageEnt, unused, null, false); + _storage.Insert(storageEnt, unused, playSound: false); } } @@ -170,7 +170,7 @@ private void OnAfterInteract(EntityUid uid, PartExchangerComponent component, Af component.AudioStream = _audio.PlayPvs(component.ExchangeSound, uid); - _doAfter.TryStartDoAfter(new DoAfterArgs(args.User, component.ExchangeDuration, new ExchangerDoAfterEvent(), uid, target: args.Target, used: uid) + _doAfter.TryStartDoAfter(new DoAfterArgs(EntityManager, args.User, component.ExchangeDuration, new ExchangerDoAfterEvent(), uid, target: args.Target, used: uid) { BreakOnDamage = true, BreakOnUserMove = true diff --git a/Content.Server/Containers/EmptyOnMachineDeconstructComponent.cs b/Content.Server/Containers/EmptyOnMachineDeconstructComponent.cs index c2cc43d15dd..376528b7c4a 100644 --- a/Content.Server/Containers/EmptyOnMachineDeconstructComponent.cs +++ b/Content.Server/Containers/EmptyOnMachineDeconstructComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Containers /// Empties a list of containers when the machine is deconstructed via MachineDeconstructedEvent. /// [RegisterComponent] - public sealed class EmptyOnMachineDeconstructComponent : Component + public sealed partial class EmptyOnMachineDeconstructComponent : Component { [DataField("containers")] public HashSet Containers { get; set; } = new(); diff --git a/Content.Server/Containers/EmptyOnMachineDeconstructSystem.cs b/Content.Server/Containers/EmptyOnMachineDeconstructSystem.cs index 5d4c9145c20..234408c3bab 100644 --- a/Content.Server/Containers/EmptyOnMachineDeconstructSystem.cs +++ b/Content.Server/Containers/EmptyOnMachineDeconstructSystem.cs @@ -31,7 +31,7 @@ private void OnSlotsDeconstruct(EntityUid uid, ItemSlotsComponent component, Mac private void OnDeconstruct(EntityUid uid, EmptyOnMachineDeconstructComponent component, MachineDeconstructedEvent ev) { - if (!EntityManager.TryGetComponent(uid, out var mComp)) + if (!EntityManager.TryGetComponent(uid, out var mComp)) return; var baseCoords = EntityManager.GetComponent(component.Owner).Coordinates; foreach (var v in component.Containers) diff --git a/Content.Server/Content.Server.csproj b/Content.Server/Content.Server.csproj index fa3ee60eb92..3aba36c788d 100644 --- a/Content.Server/Content.Server.csproj +++ b/Content.Server/Content.Server.csproj @@ -25,5 +25,9 @@ + + + + diff --git a/Content.Server/Contests/ContestsSystem.cs b/Content.Server/Contests/ContestsSystem.cs index c061bb9aa09..3ec696083d8 100644 --- a/Content.Server/Contests/ContestsSystem.cs +++ b/Content.Server/Contests/ContestsSystem.cs @@ -18,7 +18,6 @@ namespace Content.Server.Contests /// public sealed class ContestsSystem : EntitySystem { - [Dependency] private readonly MobStateSystem _mobStateSystem = default!; [Dependency] private readonly MobThresholdSystem _mobThresholdSystem = default!; /// /// Returns the roller's mass divided by the target's. diff --git a/Content.Server/Coordinates/SpawnRandomOffsetComponent.cs b/Content.Server/Coordinates/SpawnRandomOffsetComponent.cs index 6ae9b927abc..6a844cda39f 100644 --- a/Content.Server/Coordinates/SpawnRandomOffsetComponent.cs +++ b/Content.Server/Coordinates/SpawnRandomOffsetComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Coordinates; [RegisterComponent] -public sealed class SpawnRandomOffsetComponent : Component +public sealed partial class SpawnRandomOffsetComponent : Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("offset")] public float Offset = 0.5f; diff --git a/Content.Server/Crayon/CrayonComponent.cs b/Content.Server/Crayon/CrayonComponent.cs index df2a2e406ef..6f2cd6d397e 100644 --- a/Content.Server/Crayon/CrayonComponent.cs +++ b/Content.Server/Crayon/CrayonComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Crayon { [RegisterComponent] - public sealed class CrayonComponent : SharedCrayonComponent + public sealed partial class CrayonComponent : SharedCrayonComponent { [DataField("useSound")] public SoundSpecifier? UseSound; @@ -25,6 +25,6 @@ public sealed class CrayonComponent : SharedCrayonComponent [DataField("deleteEmpty")] public bool DeleteEmpty = true; - [ViewVariables] public BoundUserInterface? UserInterface => Owner.GetUIOrNull(CrayonUiKey.Key); + [ViewVariables] public PlayerBoundUserInterface? UserInterface => Owner.GetUIOrNull(CrayonUiKey.Key); } } diff --git a/Content.Server/Crayon/CrayonSystem.cs b/Content.Server/Crayon/CrayonSystem.cs index fd684f53d7c..7cc2c20d897 100644 --- a/Content.Server/Crayon/CrayonSystem.cs +++ b/Content.Server/Crayon/CrayonSystem.cs @@ -99,7 +99,7 @@ private void OnCrayonUse(EntityUid uid, CrayonComponent component, UseInHandEven if (component.UserInterface?.SubscribedSessions.Contains(actor.PlayerSession) == true) { // Tell the user interface the selected stuff - UserInterfaceSystem.SetUiState(component.UserInterface, new CrayonBoundUserInterfaceState(component.SelectedState, component.SelectableColor, component.Color)); + _uiSystem.SetUiState(component.UserInterface, new CrayonBoundUserInterfaceState(component.SelectedState, component.SelectableColor, component.Color)); } args.Handled = true; diff --git a/Content.Server/CrewManifest/CrewManifestSystem.cs b/Content.Server/CrewManifest/CrewManifestSystem.cs index 7fffc33627f..9471c88c9ea 100644 --- a/Content.Server/CrewManifest/CrewManifestSystem.cs +++ b/Content.Server/CrewManifest/CrewManifestSystem.cs @@ -13,6 +13,7 @@ using Robust.Server.Player; using Robust.Shared.Configuration; using Robust.Shared.Console; +using Robust.Shared.Players; namespace Content.Server.CrewManifest; @@ -30,7 +31,7 @@ public sealed class CrewManifestSystem : EntitySystem /// private readonly Dictionary _cachedEntries = new(); - private readonly Dictionary> _openEuis = new(); + private readonly Dictionary> _openEuis = new(); public override void Initialize() { @@ -64,7 +65,7 @@ private void OnRequestCrewManifest(RequestCrewManifestMessage message, EntitySes return; } - OpenEui(message.Id, sessionCast); + OpenEui(GetEntity(message.Id), sessionCast); } // Not a big fan of this one. Rebuilds the crew manifest every time @@ -168,7 +169,7 @@ public void OpenEui(EntityUid station, IPlayerSession session, EntityUid? owner /// Station that we're displaying the crew manifest for. /// The player's session. /// The owner of this EUI, if there was one. - public void CloseEui(EntityUid station, IPlayerSession session, EntityUid? owner = null) + public void CloseEui(EntityUid station, ICommonSession session, EntityUid? owner = null) { if (!HasComp(station)) { @@ -212,15 +213,7 @@ private void BuildCrewManifest(EntityUid station) } entries.Entries = entries.Entries.OrderBy(e => e.JobTitle).ThenBy(e => e.Name).ToList(); - - if (_cachedEntries.ContainsKey(station)) - { - _cachedEntries[station] = entries; - } - else - { - _cachedEntries.Add(station, entries); - } + _cachedEntries[station] = entries; } } @@ -246,7 +239,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!EntityUid.TryParse(args[0], out var uid)) + if (!NetEntity.TryParse(args[0], out var uidNet) || !_entityManager.TryGetEntity(uidNet, out var uid)) { shell.WriteLine($"{args[0]} is not a valid entity UID."); return; @@ -260,7 +253,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) var crewManifestSystem = _entityManager.System(); - crewManifestSystem.OpenEui(uid, session); + crewManifestSystem.OpenEui(uid.Value, session); } public CompletionResult GetCompletion(IConsoleShell shell, string[] args) diff --git a/Content.Server/CrewManifest/CrewManifestViewerComponent.cs b/Content.Server/CrewManifest/CrewManifestViewerComponent.cs index 5c0dc223cb3..f66bc4c1afb 100644 --- a/Content.Server/CrewManifest/CrewManifestViewerComponent.cs +++ b/Content.Server/CrewManifest/CrewManifestViewerComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.CrewManifest; [RegisterComponent] -public sealed class CrewManifestViewerComponent : Component +public sealed partial class CrewManifestViewerComponent : Component { /// /// If this manifest viewer is unsecure or not. If it is, diff --git a/Content.Server/Damage/Commands/GodModeCommand.cs b/Content.Server/Damage/Commands/GodModeCommand.cs index d5d3d32b599..92a0e53f0f0 100644 --- a/Content.Server/Damage/Commands/GodModeCommand.cs +++ b/Content.Server/Damage/Commands/GodModeCommand.cs @@ -10,6 +10,8 @@ namespace Content.Server.Damage.Commands [AdminCommand(AdminFlags.Admin)] public sealed class GodModeCommand : IConsoleCommand { + [Dependency] private readonly IEntityManager _entManager = default!; + public string Command => "godmode"; public string Description => "Makes your entity or another invulnerable to almost anything. May have irreversible changes."; public string Help => $"Usage: {Command} / {Command} "; @@ -19,8 +21,6 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) var player = shell.Player as IPlayerSession; EntityUid entity; - var entityManager = IoCManager.Resolve(); - switch (args.Length) { case 0: @@ -39,29 +39,29 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) entity = player.AttachedEntity.Value; break; case 1: - if (!EntityUid.TryParse(args[0], out var id)) + if (!NetEntity.TryParse(args[0], out var idNet) || !_entManager.TryGetEntity(idNet, out var id)) { shell.WriteLine($"{args[0]} isn't a valid entity id."); return; } - if (!entityManager.EntityExists(id)) + if (!_entManager.EntityExists(id)) { shell.WriteLine($"No entity found with id {id}."); return; } - entity = id; + entity = id.Value; break; default: shell.WriteLine(Help); return; } - var godmodeSystem = EntitySystem.Get(); + var godmodeSystem = _entManager.System(); var enabled = godmodeSystem.ToggleGodmode(entity); - var name = entityManager.GetComponent(entity).EntityName; + var name = _entManager.GetComponent(entity).EntityName; shell.WriteLine(enabled ? $"Enabled godmode for entity {name} with id {entity}" diff --git a/Content.Server/Damage/Commands/HurtCommand.cs b/Content.Server/Damage/Commands/HurtCommand.cs index 8e00ad14b2a..af9c1ee8fc3 100644 --- a/Content.Server/Damage/Commands/HurtCommand.cs +++ b/Content.Server/Damage/Commands/HurtCommand.cs @@ -13,15 +13,13 @@ namespace Content.Server.Damage.Commands [AdminCommand(AdminFlags.Fun)] sealed class DamageCommand : IConsoleCommand { + [Dependency] private readonly IEntityManager _entManager = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + public string Command => "damage"; public string Description => Loc.GetString("damage-command-description"); public string Help => Loc.GetString("damage-command-help", ("command", Command)); - private readonly IPrototypeManager _prototypeManager = default!; - public DamageCommand() { - _prototypeManager = IoCManager.Resolve(); - } - public CompletionResult GetCompletion(IConsoleShell shell, string[] args) { if (args.Length == 1) @@ -75,28 +73,27 @@ private bool TryParseDamageArgs( func = (entity, ignoreResistances) => { var damage = new DamageSpecifier(damageGroup, amount); - EntitySystem.Get().TryChangeDamage(entity, damage, ignoreResistances); + _entManager.System().TryChangeDamage(entity, damage, ignoreResistances); }; return true; } // Fall back to DamageType - else if (_prototypeManager.TryIndex(args[0], out var damageType)) + + if (_prototypeManager.TryIndex(args[0], out var damageType)) { func = (entity, ignoreResistances) => { var damage = new DamageSpecifier(damageType, amount); - EntitySystem.Get().TryChangeDamage(entity, damage, ignoreResistances); + _entManager.System().TryChangeDamage(entity, damage, ignoreResistances); }; return true; } - else - { - shell.WriteLine(Loc.GetString("damage-command-error-type", ("arg", args[0]))); - func = null; - return false; - } + + shell.WriteLine(Loc.GetString("damage-command-error-type", ("arg", args[0]))); + func = null; + return false; } public void Execute(IConsoleShell shell, string argStr, string[] args) @@ -107,11 +104,11 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - EntityUid target; - var entMan = IoCManager.Resolve(); + EntityUid? target; + if (args.Length == 4) { - if (!EntityUid.TryParse(args[3], out target) || !entMan.EntityExists(target)) + if (!_entManager.TryParseNetEntity(args[3], out target) || !_entManager.EntityExists(target)) { shell.WriteLine(Loc.GetString("damage-command-error-euid", ("arg", args[3]))); return; @@ -127,7 +124,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!TryParseDamageArgs(shell, target, args, out var damageFunc)) + if (!TryParseDamageArgs(shell, target.Value, args, out var damageFunc)) return; bool ignoreResistances; @@ -144,7 +141,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) ignoreResistances = false; } - damageFunc(target, ignoreResistances); + damageFunc(target.Value, ignoreResistances); } } } diff --git a/Content.Server/Damage/Components/DamageOnHighSpeedImpactComponent.cs b/Content.Server/Damage/Components/DamageOnHighSpeedImpactComponent.cs index b1824396f02..243cc70c1ad 100644 --- a/Content.Server/Damage/Components/DamageOnHighSpeedImpactComponent.cs +++ b/Content.Server/Damage/Components/DamageOnHighSpeedImpactComponent.cs @@ -9,7 +9,7 @@ namespace Content.Server.Damage.Components; /// Should the entity take damage / be stunned if colliding at a speed above MinimumSpeed? /// [RegisterComponent, Access(typeof(DamageOnHighSpeedImpactSystem))] -public sealed class DamageOnHighSpeedImpactComponent : Component +public sealed partial class DamageOnHighSpeedImpactComponent : Component { [DataField("minimumSpeed"), ViewVariables(VVAccess.ReadWrite)] public float MinimumSpeed = 20f; diff --git a/Content.Server/Damage/Components/DamageOnHitComponent.cs b/Content.Server/Damage/Components/DamageOnHitComponent.cs index c6251680739..3580e9a8d54 100644 --- a/Content.Server/Damage/Components/DamageOnHitComponent.cs +++ b/Content.Server/Damage/Components/DamageOnHitComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.Damage.Components; [RegisterComponent] -public sealed class DamageOnHitComponent : Component +public sealed partial class DamageOnHitComponent : Component { [DataField("ignoreResistances")] [ViewVariables(VVAccess.ReadWrite)] diff --git a/Content.Server/Damage/Components/DamageOnLandComponent.cs b/Content.Server/Damage/Components/DamageOnLandComponent.cs index 0867bae5c92..b7c5644f826 100644 --- a/Content.Server/Damage/Components/DamageOnLandComponent.cs +++ b/Content.Server/Damage/Components/DamageOnLandComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Damage.Components { [RegisterComponent] - public sealed class DamageOnLandComponent : Component + public sealed partial class DamageOnLandComponent : Component { [DataField("ignoreResistances")] [ViewVariables(VVAccess.ReadWrite)] diff --git a/Content.Server/Damage/Components/DamageOnToolInteractComponent.cs b/Content.Server/Damage/Components/DamageOnToolInteractComponent.cs index c8e9139a2ce..e54090cdbbf 100644 --- a/Content.Server/Damage/Components/DamageOnToolInteractComponent.cs +++ b/Content.Server/Damage/Components/DamageOnToolInteractComponent.cs @@ -5,18 +5,18 @@ namespace Content.Server.Damage.Components { [RegisterComponent] - public sealed class DamageOnToolInteractComponent : Component + public sealed partial class DamageOnToolInteractComponent : Component { [DataField("tools")] - public PrototypeFlags Tools { get; } = new (); + public PrototypeFlags Tools { get; private set; } = new (); // TODO: Remove this snowflake stuff, make damage per-tool quality perhaps? [DataField("weldingDamage")] [ViewVariables(VVAccess.ReadWrite)] - public DamageSpecifier? WeldingDamage { get; } + public DamageSpecifier? WeldingDamage { get; private set; } [DataField("defaultDamage")] [ViewVariables(VVAccess.ReadWrite)] - public DamageSpecifier? DefaultDamage { get; } + public DamageSpecifier? DefaultDamage { get; private set; } } } diff --git a/Content.Server/Damage/Components/DamageOtherOnHitComponent.cs b/Content.Server/Damage/Components/DamageOtherOnHitComponent.cs index 55b4b5f2b17..3123e251af4 100644 --- a/Content.Server/Damage/Components/DamageOtherOnHitComponent.cs +++ b/Content.Server/Damage/Components/DamageOtherOnHitComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.Damage.Components { [Access(typeof(DamageOtherOnHitSystem))] [RegisterComponent] - public sealed class DamageOtherOnHitComponent : Component + public sealed partial class DamageOtherOnHitComponent : Component { [DataField("ignoreResistances")] [ViewVariables(VVAccess.ReadWrite)] diff --git a/Content.Server/Damage/Components/DamagePopupComponent.cs b/Content.Server/Damage/Components/DamagePopupComponent.cs index bbb9efd77c7..b1216069f5e 100644 --- a/Content.Server/Damage/Components/DamagePopupComponent.cs +++ b/Content.Server/Damage/Components/DamagePopupComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Damage.Components; [RegisterComponent, Access(typeof(DamagePopupSystem))] -public sealed class DamagePopupComponent : Component +public sealed partial class DamagePopupComponent : Component { /// /// Enum that will be used to determine the type of damage popup displayed. diff --git a/Content.Server/Damage/Components/DamageUserOnTriggerComponent.cs b/Content.Server/Damage/Components/DamageUserOnTriggerComponent.cs index 4d313e8d6dd..2a30374709b 100644 --- a/Content.Server/Damage/Components/DamageUserOnTriggerComponent.cs +++ b/Content.Server/Damage/Components/DamageUserOnTriggerComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Damage.Components; [RegisterComponent] -public sealed class DamageUserOnTriggerComponent : Component +public sealed partial class DamageUserOnTriggerComponent : Component { [DataField("ignoreResistances")] public bool IgnoreResistances; diff --git a/Content.Server/Damage/Components/ExaminableDamageComponent.cs b/Content.Server/Damage/Components/ExaminableDamageComponent.cs index 022b14d19b0..46a86012adb 100644 --- a/Content.Server/Damage/Components/ExaminableDamageComponent.cs +++ b/Content.Server/Damage/Components/ExaminableDamageComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Damage.Components; /// This component shows entity damage severity when it is examined by player. /// [RegisterComponent] -public sealed class ExaminableDamageComponent : Component +public sealed partial class ExaminableDamageComponent : Component { [DataField("messages", required: true, customTypeSerializer:typeof(PrototypeIdSerializer))] public string? MessagesProtoId; diff --git a/Content.Server/Damage/Systems/DamageOnToolInteractSystem.cs b/Content.Server/Damage/Systems/DamageOnToolInteractSystem.cs index db9335302f1..2abd6fdf86a 100644 --- a/Content.Server/Damage/Systems/DamageOnToolInteractSystem.cs +++ b/Content.Server/Damage/Systems/DamageOnToolInteractSystem.cs @@ -26,7 +26,7 @@ private void OnInteracted(EntityUid uid, DamageOnToolInteractComponent component return; if (component.WeldingDamage is {} weldingDamage - && EntityManager.TryGetComponent(args.Used, out var welder) + && EntityManager.TryGetComponent(args.Used, out WelderComponent? welder) && welder.Lit && !welder.TankSafe) { @@ -39,7 +39,7 @@ private void OnInteracted(EntityUid uid, DamageOnToolInteractComponent component args.Handled = true; } else if (component.DefaultDamage is {} damage - && EntityManager.TryGetComponent(args.Used, out var tool) + && EntityManager.TryGetComponent(args.Used, out ToolComponent? tool) && tool.Qualities.ContainsAny(component.Tools)) { var dmg = _damageableSystem.TryChangeDamage(args.Target, damage, origin: args.User); diff --git a/Content.Server/Damage/Systems/DamageOtherOnHitSystem.cs b/Content.Server/Damage/Systems/DamageOtherOnHitSystem.cs index b8501cf5521..13fa3d246e3 100644 --- a/Content.Server/Damage/Systems/DamageOtherOnHitSystem.cs +++ b/Content.Server/Damage/Systems/DamageOtherOnHitSystem.cs @@ -23,7 +23,6 @@ public sealed class DamageOtherOnHitSystem : EntitySystem [Dependency] private readonly DamageExamineSystem _damageExamine = default!; [Dependency] private readonly SharedCameraRecoilSystem _sharedCameraRecoil = default!; [Dependency] private readonly SharedColorFlashEffectSystem _color = default!; - [Dependency] private readonly SharedPhysicsSystem _physics = default!; [Dependency] private readonly ThrownItemSystem _thrownItem = default!; public override void Initialize() diff --git a/Content.Server/Database/ServerDbManager.cs b/Content.Server/Database/ServerDbManager.cs index e8bb38edb43..f345763f53d 100644 --- a/Content.Server/Database/ServerDbManager.cs +++ b/Content.Server/Database/ServerDbManager.cs @@ -292,7 +292,6 @@ public sealed class ServerDbManager : IServerDbManager [Dependency] private readonly IConfigurationManager _cfg = default!; [Dependency] private readonly IResourceManager _res = default!; [Dependency] private readonly ILogManager _logMgr = default!; - [Dependency] private readonly ITaskManager _taskManager = default!; private ServerDbBase _db = default!; private LoggingProvider _msLogProvider = default!; diff --git a/Content.Server/Decals/Commands/AddDecalCommand.cs b/Content.Server/Decals/Commands/AddDecalCommand.cs index be57d917866..b780f0686dd 100644 --- a/Content.Server/Decals/Commands/AddDecalCommand.cs +++ b/Content.Server/Decals/Commands/AddDecalCommand.cs @@ -12,6 +12,10 @@ namespace Content.Server.Decals.Commands [AdminCommand(AdminFlags.Mapping)] public sealed class AddDecalCommand : IConsoleCommand { + [Dependency] private readonly IEntityManager _entManager = default!; + [Dependency] private readonly IMapManager _mapManager = default!; + [Dependency] private readonly IPrototypeManager _protoManager = default!; + public string Command => "adddecal"; public string Description => "Creates a decal on the map"; public string Help => $"{Command} [angle= zIndex= color=]"; @@ -23,7 +27,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!IoCManager.Resolve().HasIndex(args[0])) + if (!_protoManager.HasIndex(args[0])) { shell.WriteError($"Cannot find decalprototype '{args[0]}'."); } @@ -40,8 +44,9 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - var mapManager = IoCManager.Resolve(); - if (!EntityUid.TryParse(args[3], out var gridIdRaw) || !mapManager.TryGetGrid(gridIdRaw, out var grid)) + if (!NetEntity.TryParse(args[3], out var gridIdNet) || + !_entManager.TryGetEntity(gridIdNet, out var gridIdRaw) || + !_mapManager.TryGetGrid(gridIdRaw, out var grid)) { shell.WriteError($"Failed parsing gridId '{args[3]}'."); return; @@ -101,7 +106,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) } } - if(EntitySystem.Get().TryAddDecal(args[0], coordinates, out var uid, color, rotation, zIndex)) + if (_entManager.System().TryAddDecal(args[0], coordinates, out var uid, color, rotation, zIndex)) { shell.WriteLine($"Successfully created decal {uid}."); } diff --git a/Content.Server/Decals/Commands/EditDecalCommand.cs b/Content.Server/Decals/Commands/EditDecalCommand.cs index a300d218500..baaef1f3f64 100644 --- a/Content.Server/Decals/Commands/EditDecalCommand.cs +++ b/Content.Server/Decals/Commands/EditDecalCommand.cs @@ -9,6 +9,9 @@ namespace Content.Server.Decals; [AdminCommand(AdminFlags.Mapping)] public sealed class EditDecalCommand : IConsoleCommand { + [Dependency] private readonly IEntityManager _entManager = default!; + [Dependency] private readonly IMapManager _mapManager = default!; + public string Command => "editdecal"; public string Description => "Edits a decal."; public string Help => $@"{Command} \n @@ -28,7 +31,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!EntityUid.TryParse(args[0], out var gridId)) + if (!NetEntity.TryParse(args[0], out var gridIdNet) || !_entManager.TryGetEntity(gridIdNet, out var gridId)) { shell.WriteError($"Failed parsing gridId '{args[3]}'."); return; @@ -40,13 +43,13 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!IoCManager.Resolve().GridExists(gridId)) + if (!_mapManager.GridExists(gridId)) { shell.WriteError($"No grid with gridId {gridId} exists."); return; } - var decalSystem = EntitySystem.Get(); + var decalSystem = _entManager.System(); switch (args[2].ToLower()) { case "position": @@ -62,7 +65,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!decalSystem.SetDecalPosition(gridId, uid, new(gridId, new Vector2(x, y)))) + if (!decalSystem.SetDecalPosition(gridId.Value, uid, new(gridId.Value, new Vector2(x, y)))) { shell.WriteError("Failed changing decalposition."); } @@ -80,7 +83,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!decalSystem.SetDecalColor(gridId, uid, color)) + if (!decalSystem.SetDecalColor(gridId.Value, uid, color)) { shell.WriteError("Failed changing decal color."); } @@ -92,7 +95,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!decalSystem.SetDecalId(gridId, uid, args[3])) + if (!decalSystem.SetDecalId(gridId.Value, uid, args[3])) { shell.WriteError("Failed changing decal id."); } @@ -110,7 +113,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!decalSystem.SetDecalRotation(gridId, uid, Angle.FromDegrees(degrees))) + if (!decalSystem.SetDecalRotation(gridId.Value, uid, Angle.FromDegrees(degrees))) { shell.WriteError("Failed changing decal rotation."); } @@ -128,7 +131,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!decalSystem.SetDecalZIndex(gridId, uid, zIndex)) + if (!decalSystem.SetDecalZIndex(gridId.Value, uid, zIndex)) { shell.WriteError("Failed changing decal zIndex."); } @@ -146,7 +149,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!decalSystem.SetDecalCleanable(gridId, uid, cleanable)) + if (!decalSystem.SetDecalCleanable(gridId.Value, uid, cleanable)) { shell.WriteError("Failed changing decal cleanable flag."); } diff --git a/Content.Server/Decals/Commands/RemoveDecalCommand.cs b/Content.Server/Decals/Commands/RemoveDecalCommand.cs index 3c7d44d5c48..771c66fbbd5 100644 --- a/Content.Server/Decals/Commands/RemoveDecalCommand.cs +++ b/Content.Server/Decals/Commands/RemoveDecalCommand.cs @@ -2,12 +2,16 @@ using Content.Shared.Administration; using Robust.Shared.Console; using Robust.Shared.Map; +using SQLitePCL; namespace Content.Server.Decals.Commands { [AdminCommand(AdminFlags.Mapping)] public sealed class RemoveDecalCommand : IConsoleCommand { + [Dependency] private readonly IEntityManager _entManager = default!; + [Dependency] private readonly IMapManager _mapManager = default!; + public string Command => "rmdecal"; public string Description => "removes a decal"; public string Help => $"{Command} "; @@ -25,14 +29,16 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!EntityUid.TryParse(args[1], out var rawGridId) || - !IoCManager.Resolve().GridExists(rawGridId)) + if (!NetEntity.TryParse(args[1], out var rawGridIdNet) || + !_entManager.TryGetEntity(rawGridIdNet, out var rawGridId) || + !_mapManager.GridExists(rawGridId)) { shell.WriteError("Failed parsing gridId."); + return; } - var decalSystem = EntitySystem.Get(); - if (decalSystem.RemoveDecal(rawGridId, uid)) + var decalSystem = _entManager.System(); + if (decalSystem.RemoveDecal(rawGridId.Value, uid)) { shell.WriteLine($"Successfully removed decal {uid}."); return; diff --git a/Content.Server/Decals/DecalSystem.cs b/Content.Server/Decals/DecalSystem.cs index e76ca250696..6f40ebae3a3 100644 --- a/Content.Server/Decals/DecalSystem.cs +++ b/Content.Server/Decals/DecalSystem.cs @@ -1,4 +1,3 @@ -using System.Diagnostics.CodeAnalysis; using System.Linq; using System.Numerics; using System.Threading.Tasks; @@ -14,7 +13,6 @@ using Robust.Shared; using Robust.Shared.Configuration; using Robust.Shared.Enums; -using Robust.Shared.GameStates; using Robust.Shared.Map; using Robust.Shared.Threading; using Robust.Shared.Timing; @@ -34,8 +32,8 @@ public sealed class DecalSystem : SharedDecalSystem [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly IAdminLogManager _adminLogger = default!; - private readonly Dictionary> _dirtyChunks = new(); - private readonly Dictionary>> _previousSentChunks = new(); + private readonly Dictionary> _dirtyChunks = new(); + private readonly Dictionary>> _previousSentChunks = new(); private static readonly Vector2 _boundsMinExpansion = new(0.01f, 0.01f); private static readonly Vector2 _boundsMaxExpansion = new(1.01f, 1.01f); @@ -44,9 +42,9 @@ public sealed class DecalSystem : SharedDecalSystem new DefaultObjectPool>( new DefaultPooledObjectPolicy>(), 64); - private ObjectPool>> _chunkViewerPool = - new DefaultObjectPool>>( - new DefaultPooledObjectPolicy>>(), 64); + private ObjectPool>> _chunkViewerPool = + new DefaultObjectPool>>( + new DefaultPooledObjectPolicy>>(), 64); public override void Initialize() { @@ -203,10 +201,12 @@ private void OnDecalPlacementRequest(RequestDecalPlacementEvent ev, EntitySessio if (!_adminManager.HasAdminFlag(session, AdminFlags.Spawn)) return; - if (!ev.Coordinates.IsValid(EntityManager)) + var coordinates = GetCoordinates(ev.Coordinates); + + if (!coordinates.IsValid(EntityManager)) return; - if (!TryAddDecal(ev.Decal, ev.Coordinates, out _)) + if (!TryAddDecal(ev.Decal, coordinates, out _)) return; if (eventArgs.SenderSession.AttachedEntity != null) @@ -230,10 +230,12 @@ private void OnDecalRemovalRequest(RequestDecalRemovalEvent ev, EntitySessionEve if (!_adminManager.HasAdminFlag(session, AdminFlags.Spawn)) return; - if (!ev.Coordinates.IsValid(EntityManager)) + var coordinates = GetCoordinates(ev.Coordinates); + + if (!coordinates.IsValid(EntityManager)) return; - var gridId = ev.Coordinates.GetGridUid(EntityManager); + var gridId = coordinates.GetGridUid(EntityManager); if (gridId == null) return; @@ -256,8 +258,9 @@ private void OnDecalRemovalRequest(RequestDecalRemovalEvent ev, EntitySessionEve } } - protected override void DirtyChunk(EntityUid id, Vector2i chunkIndices, DecalChunk chunk) + protected override void DirtyChunk(EntityUid uid, Vector2i chunkIndices, DecalChunk chunk) { + var id = GetNetEntity(uid); chunk.LastModified = _timing.CurTick; if(!_dirtyChunks.ContainsKey(id)) _dirtyChunks[id] = new HashSet(); @@ -409,8 +412,8 @@ public override void Update(float frameTime) foreach (var ent in _dirtyChunks.Keys) { - if (TryComp(ent, out DecalGridComponent? decals)) - Dirty(decals); + if (TryGetEntity(ent, out var uid) && TryComp(uid, out DecalGridComponent? decals)) + Dirty(uid.Value, decals); } if (!PvsEnabled) @@ -431,8 +434,7 @@ public override void Update(float frameTime) public void UpdatePlayer(IPlayerSession player) { - var xformQuery = GetEntityQuery(); - var chunksInRange = _chunking.GetChunksForSession(player, ChunkSize, xformQuery, _chunkIndexPool, _chunkViewerPool); + var chunksInRange = _chunking.GetChunksForSession(player, ChunkSize, _chunkIndexPool, _chunkViewerPool); var staleChunks = _chunkViewerPool.Get(); var previouslySent = _previousSentChunks[player]; @@ -440,16 +442,16 @@ public void UpdatePlayer(IPlayerSession player) // Then, remove them from previousSentChunks (for stuff like grids out of range) // and also mark them as stale for networking. - foreach (var (gridId, oldIndices) in previouslySent) + foreach (var (netGrid, oldIndices) in previouslySent) { // Mark the whole grid as stale and flag for removal. - if (!chunksInRange.TryGetValue(gridId, out var chunks)) + if (!chunksInRange.TryGetValue(netGrid, out var chunks)) { - previouslySent.Remove(gridId); + previouslySent.Remove(netGrid); // Was the grid deleted? - if (MapManager.IsGrid(gridId)) - staleChunks[gridId] = oldIndices; + if (!TryGetEntity(netGrid, out var gridId) || !MapManager.IsGrid(gridId.Value)) + staleChunks[netGrid] = oldIndices; else { // If grid was deleted then don't worry about telling the client to delete the chunk. @@ -465,7 +467,9 @@ public void UpdatePlayer(IPlayerSession player) // Get individual stale chunks. foreach (var chunk in oldIndices) { - if (chunks.Contains(chunk)) continue; + if (chunks.Contains(chunk)) + continue; + elmo.Add(chunk); } @@ -475,16 +479,16 @@ public void UpdatePlayer(IPlayerSession player) continue; } - staleChunks.Add(gridId, elmo); + staleChunks.Add(netGrid, elmo); } var updatedChunks = _chunkViewerPool.Get(); - foreach (var (gridId, gridChunks) in chunksInRange) + foreach (var (netGrid, gridChunks) in chunksInRange) { var newChunks = _chunkIndexPool.Get(); - _dirtyChunks.TryGetValue(gridId, out var dirtyChunks); + _dirtyChunks.TryGetValue(netGrid, out var dirtyChunks); - if (!previouslySent.TryGetValue(gridId, out var previousChunks)) + if (!previouslySent.TryGetValue(netGrid, out var previousChunks)) newChunks.UnionWith(gridChunks); else { @@ -498,19 +502,19 @@ public void UpdatePlayer(IPlayerSession player) _chunkIndexPool.Return(previousChunks); } - previouslySent[gridId] = gridChunks; + previouslySent[netGrid] = gridChunks; if (newChunks.Count == 0) _chunkIndexPool.Return(newChunks); else - updatedChunks[gridId] = newChunks; + updatedChunks[netGrid] = newChunks; } //send all gridChunks to client SendChunkUpdates(player, updatedChunks, staleChunks); } - private void ReturnToPool(Dictionary> chunks) + private void ReturnToPool(Dictionary> chunks) { foreach (var (_, previous) in chunks) { @@ -524,12 +528,14 @@ private void ReturnToPool(Dictionary> chunks) private void SendChunkUpdates( IPlayerSession session, - Dictionary> updatedChunks, - Dictionary> staleChunks) + Dictionary> updatedChunks, + Dictionary> staleChunks) { - var updatedDecals = new Dictionary>(); - foreach (var (gridId, chunks) in updatedChunks) + var updatedDecals = new Dictionary>(); + foreach (var (netGrid, chunks) in updatedChunks) { + var gridId = GetEntity(netGrid); + var collection = ChunkCollection(gridId); if (collection == null) continue; @@ -542,7 +548,7 @@ private void SendChunkUpdates( ? chunk : new()); } - updatedDecals[gridId] = gridChunks; + updatedDecals[netGrid] = gridChunks; } if (updatedDecals.Count != 0 || staleChunks.Count != 0) diff --git a/Content.Server/Destructible/DestructibleComponent.cs b/Content.Server/Destructible/DestructibleComponent.cs index 041809fe336..5c593fb083c 100644 --- a/Content.Server/Destructible/DestructibleComponent.cs +++ b/Content.Server/Destructible/DestructibleComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Destructible /// and triggers thresholds when reached. /// [RegisterComponent] - public sealed class DestructibleComponent : Component + public sealed partial class DestructibleComponent : Component { [DataField("thresholds")] public List Thresholds = new(); diff --git a/Content.Server/Destructible/Thresholds/Behaviors/ChangeConstructionNodeBehavior.cs b/Content.Server/Destructible/Thresholds/Behaviors/ChangeConstructionNodeBehavior.cs index c971ceebe9f..add8ce335f0 100644 --- a/Content.Server/Destructible/Thresholds/Behaviors/ChangeConstructionNodeBehavior.cs +++ b/Content.Server/Destructible/Thresholds/Behaviors/ChangeConstructionNodeBehavior.cs @@ -4,7 +4,7 @@ namespace Content.Server.Destructible.Thresholds.Behaviors { [Serializable] [DataDefinition] - public sealed class ChangeConstructionNodeBehavior : IThresholdBehavior + public sealed partial class ChangeConstructionNodeBehavior : IThresholdBehavior { [DataField("node")] public string Node { get; private set; } = string.Empty; diff --git a/Content.Server/Destructible/Thresholds/Behaviors/DoActsBehavior.cs b/Content.Server/Destructible/Thresholds/Behaviors/DoActsBehavior.cs index 064afbe26b7..bfebae8f925 100644 --- a/Content.Server/Destructible/Thresholds/Behaviors/DoActsBehavior.cs +++ b/Content.Server/Destructible/Thresholds/Behaviors/DoActsBehavior.cs @@ -2,7 +2,7 @@ { [Serializable] [DataDefinition] - public sealed class DoActsBehavior : IThresholdBehavior + public sealed partial class DoActsBehavior : IThresholdBehavior { /// /// What acts should be triggered upon activation. diff --git a/Content.Server/Destructible/Thresholds/Behaviors/DumpCanisterBehavior.cs b/Content.Server/Destructible/Thresholds/Behaviors/DumpCanisterBehavior.cs index 342edef2712..961ccfcb4e0 100644 --- a/Content.Server/Destructible/Thresholds/Behaviors/DumpCanisterBehavior.cs +++ b/Content.Server/Destructible/Thresholds/Behaviors/DumpCanisterBehavior.cs @@ -4,7 +4,7 @@ namespace Content.Server.Destructible.Thresholds.Behaviors { [Serializable] [DataDefinition] - public sealed class DumpCanisterBehavior : IThresholdBehavior + public sealed partial class DumpCanisterBehavior : IThresholdBehavior { public void Execute(EntityUid owner, DestructibleSystem system, EntityUid? cause = null) { diff --git a/Content.Server/Destructible/Thresholds/Behaviors/DumpRestockInventory.cs b/Content.Server/Destructible/Thresholds/Behaviors/DumpRestockInventory.cs index 56c4200fcb7..e13fd5e05be 100644 --- a/Content.Server/Destructible/Thresholds/Behaviors/DumpRestockInventory.cs +++ b/Content.Server/Destructible/Thresholds/Behaviors/DumpRestockInventory.cs @@ -11,7 +11,7 @@ namespace Content.Server.Destructible.Thresholds.Behaviors /// [Serializable] [DataDefinition] - public sealed class DumpRestockInventory: IThresholdBehavior + public sealed partial class DumpRestockInventory: IThresholdBehavior { /// /// The percent of each inventory entry that will be salvaged diff --git a/Content.Server/Destructible/Thresholds/Behaviors/EjectVendorItems.cs b/Content.Server/Destructible/Thresholds/Behaviors/EjectVendorItems.cs index 5cd377f0b56..2ffd9a8f9f5 100644 --- a/Content.Server/Destructible/Thresholds/Behaviors/EjectVendorItems.cs +++ b/Content.Server/Destructible/Thresholds/Behaviors/EjectVendorItems.cs @@ -8,7 +8,7 @@ namespace Content.Server.Destructible.Thresholds.Behaviors /// [Serializable] [DataDefinition] - public sealed class EjectVendorItems : IThresholdBehavior + public sealed partial class EjectVendorItems : IThresholdBehavior { /// /// The percent amount of the total inventory that will be ejected. diff --git a/Content.Server/Destructible/Thresholds/Behaviors/EmptyAllContainersBehaviour.cs b/Content.Server/Destructible/Thresholds/Behaviors/EmptyAllContainersBehaviour.cs index 1082acb25d7..406e7bf7e28 100644 --- a/Content.Server/Destructible/Thresholds/Behaviors/EmptyAllContainersBehaviour.cs +++ b/Content.Server/Destructible/Thresholds/Behaviors/EmptyAllContainersBehaviour.cs @@ -6,7 +6,7 @@ namespace Content.Server.Destructible.Thresholds.Behaviors /// Drop all items from all containers /// [DataDefinition] - public sealed class EmptyAllContainersBehaviour : IThresholdBehavior + public sealed partial class EmptyAllContainersBehaviour : IThresholdBehavior { public void Execute(EntityUid owner, DestructibleSystem system, EntityUid? cause = null) { diff --git a/Content.Server/Destructible/Thresholds/Behaviors/EmptyContainersBehaviour.cs b/Content.Server/Destructible/Thresholds/Behaviors/EmptyContainersBehaviour.cs index 253fd19a7f9..77f81c062dd 100644 --- a/Content.Server/Destructible/Thresholds/Behaviors/EmptyContainersBehaviour.cs +++ b/Content.Server/Destructible/Thresholds/Behaviors/EmptyContainersBehaviour.cs @@ -7,7 +7,7 @@ namespace Content.Server.Destructible.Thresholds.Behaviors /// Drop all items from specified containers /// [DataDefinition] - public sealed class EmptyContainersBehaviour : IThresholdBehavior + public sealed partial class EmptyContainersBehaviour : IThresholdBehavior { [DataField("containers")] public List Containers = new(); diff --git a/Content.Server/Destructible/Thresholds/Behaviors/ExplodeBehavior.cs b/Content.Server/Destructible/Thresholds/Behaviors/ExplodeBehavior.cs index 261501f8173..e3a990c76bb 100644 --- a/Content.Server/Destructible/Thresholds/Behaviors/ExplodeBehavior.cs +++ b/Content.Server/Destructible/Thresholds/Behaviors/ExplodeBehavior.cs @@ -8,7 +8,7 @@ namespace Content.Server.Destructible.Thresholds.Behaviors /// [UsedImplicitly] [DataDefinition] - public sealed class ExplodeBehavior : IThresholdBehavior + public sealed partial class ExplodeBehavior : IThresholdBehavior { public void Execute(EntityUid owner, DestructibleSystem system, EntityUid? cause = null) { diff --git a/Content.Server/Destructible/Thresholds/Behaviors/GibBehavior.cs b/Content.Server/Destructible/Thresholds/Behaviors/GibBehavior.cs index cca0515112d..c83fed19069 100644 --- a/Content.Server/Destructible/Thresholds/Behaviors/GibBehavior.cs +++ b/Content.Server/Destructible/Thresholds/Behaviors/GibBehavior.cs @@ -5,7 +5,7 @@ namespace Content.Server.Destructible.Thresholds.Behaviors { [UsedImplicitly] [DataDefinition] - public sealed class GibBehavior : IThresholdBehavior + public sealed partial class GibBehavior : IThresholdBehavior { [DataField("recursive")] private bool _recursive = true; diff --git a/Content.Server/Destructible/Thresholds/Behaviors/PlaySoundBehavior.cs b/Content.Server/Destructible/Thresholds/Behaviors/PlaySoundBehavior.cs index f1fcfa4449a..74a4cdfb1b6 100644 --- a/Content.Server/Destructible/Thresholds/Behaviors/PlaySoundBehavior.cs +++ b/Content.Server/Destructible/Thresholds/Behaviors/PlaySoundBehavior.cs @@ -6,7 +6,7 @@ namespace Content.Server.Destructible.Thresholds.Behaviors { [Serializable] [DataDefinition] - public sealed class PlaySoundBehavior : IThresholdBehavior + public sealed partial class PlaySoundBehavior : IThresholdBehavior { /// /// Sound played upon destruction. diff --git a/Content.Server/Destructible/Thresholds/Behaviors/SolutionExplosionBehavior.cs b/Content.Server/Destructible/Thresholds/Behaviors/SolutionExplosionBehavior.cs index 76b76c4dc60..024cb928d09 100644 --- a/Content.Server/Destructible/Thresholds/Behaviors/SolutionExplosionBehavior.cs +++ b/Content.Server/Destructible/Thresholds/Behaviors/SolutionExplosionBehavior.cs @@ -11,7 +11,7 @@ namespace Content.Server.Destructible.Thresholds.Behaviors /// [UsedImplicitly] [DataDefinition] - public sealed class SolutionExplosionBehavior : IThresholdBehavior + public sealed partial class SolutionExplosionBehavior : IThresholdBehavior { [DataField("solution", required: true)] public string Solution = default!; diff --git a/Content.Server/Destructible/Thresholds/Behaviors/SpawnEntitiesBehavior.cs b/Content.Server/Destructible/Thresholds/Behaviors/SpawnEntitiesBehavior.cs index 243ad44c0bc..5b9b7596efb 100644 --- a/Content.Server/Destructible/Thresholds/Behaviors/SpawnEntitiesBehavior.cs +++ b/Content.Server/Destructible/Thresholds/Behaviors/SpawnEntitiesBehavior.cs @@ -11,7 +11,7 @@ namespace Content.Server.Destructible.Thresholds.Behaviors { [Serializable] [DataDefinition] - public sealed class SpawnEntitiesBehavior : IThresholdBehavior + public sealed partial class SpawnEntitiesBehavior : IThresholdBehavior { /// /// Entities spawned on reaching this threshold, from a min to a max. diff --git a/Content.Server/Destructible/Thresholds/Behaviors/SpawnGasBehavior.cs b/Content.Server/Destructible/Thresholds/Behaviors/SpawnGasBehavior.cs index 7efd8dfb778..fec93a87f45 100644 --- a/Content.Server/Destructible/Thresholds/Behaviors/SpawnGasBehavior.cs +++ b/Content.Server/Destructible/Thresholds/Behaviors/SpawnGasBehavior.cs @@ -5,7 +5,7 @@ namespace Content.Server.Destructible.Thresholds.Behaviors; [UsedImplicitly] [DataDefinition] -public sealed class SpawnGasBehavior : IThresholdBehavior +public sealed partial class SpawnGasBehavior : IThresholdBehavior { [DataField("gasMixture", required: true)] public GasMixture Gas = new(); diff --git a/Content.Server/Destructible/Thresholds/Behaviors/SpillBehavior.cs b/Content.Server/Destructible/Thresholds/Behaviors/SpillBehavior.cs index 99b6171f7e5..588d26e6f47 100644 --- a/Content.Server/Destructible/Thresholds/Behaviors/SpillBehavior.cs +++ b/Content.Server/Destructible/Thresholds/Behaviors/SpillBehavior.cs @@ -7,7 +7,7 @@ namespace Content.Server.Destructible.Thresholds.Behaviors { [UsedImplicitly] [DataDefinition] - public sealed class SpillBehavior : IThresholdBehavior + public sealed partial class SpillBehavior : IThresholdBehavior { [DataField("solution")] public string? Solution; diff --git a/Content.Server/Destructible/Thresholds/Behaviors/TriggerBehavior.cs b/Content.Server/Destructible/Thresholds/Behaviors/TriggerBehavior.cs index 255b4f7ace8..03bdb8ff696 100644 --- a/Content.Server/Destructible/Thresholds/Behaviors/TriggerBehavior.cs +++ b/Content.Server/Destructible/Thresholds/Behaviors/TriggerBehavior.cs @@ -1,7 +1,7 @@ namespace Content.Server.Destructible.Thresholds.Behaviors; [DataDefinition] -public sealed class TriggerBehavior : IThresholdBehavior +public sealed partial class TriggerBehavior : IThresholdBehavior { public void Execute(EntityUid owner, DestructibleSystem system, EntityUid? cause = null) { diff --git a/Content.Server/Destructible/Thresholds/DamageThreshold.cs b/Content.Server/Destructible/Thresholds/DamageThreshold.cs index b7f5bb61f4f..e180f5c45cb 100644 --- a/Content.Server/Destructible/Thresholds/DamageThreshold.cs +++ b/Content.Server/Destructible/Thresholds/DamageThreshold.cs @@ -5,7 +5,7 @@ namespace Content.Server.Destructible.Thresholds { [DataDefinition] - public sealed class DamageThreshold + public sealed partial class DamageThreshold { [DataField("behaviors")] private List _behaviors = new(); diff --git a/Content.Server/Destructible/Thresholds/MinMax.cs b/Content.Server/Destructible/Thresholds/MinMax.cs index af4bc40fee5..b438e7c0e8d 100644 --- a/Content.Server/Destructible/Thresholds/MinMax.cs +++ b/Content.Server/Destructible/Thresholds/MinMax.cs @@ -2,7 +2,7 @@ { [Serializable] [DataDefinition] - public struct MinMax + public partial struct MinMax { [DataField("min")] public int Min; diff --git a/Content.Server/Destructible/Thresholds/Triggers/AndTrigger.cs b/Content.Server/Destructible/Thresholds/Triggers/AndTrigger.cs index c4c3537f7f6..70e0c3917c1 100644 --- a/Content.Server/Destructible/Thresholds/Triggers/AndTrigger.cs +++ b/Content.Server/Destructible/Thresholds/Triggers/AndTrigger.cs @@ -7,7 +7,7 @@ namespace Content.Server.Destructible.Thresholds.Triggers /// [Serializable] [DataDefinition] - public sealed class AndTrigger : IThresholdTrigger + public sealed partial class AndTrigger : IThresholdTrigger { [DataField("triggers")] public List Triggers { get; set; } = new(); diff --git a/Content.Server/Destructible/Thresholds/Triggers/DamageGroupTrigger.cs b/Content.Server/Destructible/Thresholds/Triggers/DamageGroupTrigger.cs index bb47f3151d1..09083105cae 100644 --- a/Content.Server/Destructible/Thresholds/Triggers/DamageGroupTrigger.cs +++ b/Content.Server/Destructible/Thresholds/Triggers/DamageGroupTrigger.cs @@ -10,7 +10,7 @@ namespace Content.Server.Destructible.Thresholds.Triggers /// [Serializable] [DataDefinition] - public sealed class DamageGroupTrigger : IThresholdTrigger + public sealed partial class DamageGroupTrigger : IThresholdTrigger { [DataField("damageGroup", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] public string DamageGroup { get; set; } = default!; diff --git a/Content.Server/Destructible/Thresholds/Triggers/DamageTrigger.cs b/Content.Server/Destructible/Thresholds/Triggers/DamageTrigger.cs index 845c7732797..ce0106ee2b1 100644 --- a/Content.Server/Destructible/Thresholds/Triggers/DamageTrigger.cs +++ b/Content.Server/Destructible/Thresholds/Triggers/DamageTrigger.cs @@ -8,7 +8,7 @@ namespace Content.Server.Destructible.Thresholds.Triggers /// [Serializable] [DataDefinition] - public sealed class DamageTrigger : IThresholdTrigger + public sealed partial class DamageTrigger : IThresholdTrigger { /// /// The amount of damage at which this threshold will trigger. diff --git a/Content.Server/Destructible/Thresholds/Triggers/DamageTypeTrigger.cs b/Content.Server/Destructible/Thresholds/Triggers/DamageTypeTrigger.cs index 36401ae26ad..ed9fd27ab73 100644 --- a/Content.Server/Destructible/Thresholds/Triggers/DamageTypeTrigger.cs +++ b/Content.Server/Destructible/Thresholds/Triggers/DamageTypeTrigger.cs @@ -10,7 +10,7 @@ namespace Content.Server.Destructible.Thresholds.Triggers /// [Serializable] [DataDefinition] - public sealed class DamageTypeTrigger : IThresholdTrigger + public sealed partial class DamageTypeTrigger : IThresholdTrigger { [DataField("damageType", required:true, customTypeSerializer: typeof(PrototypeIdSerializer))] public string DamageType { get; set; } = default!; diff --git a/Content.Server/Destructible/Thresholds/Triggers/OrTrigger.cs b/Content.Server/Destructible/Thresholds/Triggers/OrTrigger.cs index 09c38cd9684..179141dbf80 100644 --- a/Content.Server/Destructible/Thresholds/Triggers/OrTrigger.cs +++ b/Content.Server/Destructible/Thresholds/Triggers/OrTrigger.cs @@ -7,10 +7,10 @@ namespace Content.Server.Destructible.Thresholds.Triggers /// [Serializable] [DataDefinition] - public sealed class OrTrigger : IThresholdTrigger + public sealed partial class OrTrigger : IThresholdTrigger { [DataField("triggers")] - public List Triggers { get; } = new(); + public List Triggers { get; private set; } = new(); public bool Reached(DamageableComponent damageable, DestructibleSystem system) { diff --git a/Content.Server/DetailExaminable/DetailExaminableComponent.cs b/Content.Server/DetailExaminable/DetailExaminableComponent.cs index ba8741be0bb..3cefb75869d 100644 --- a/Content.Server/DetailExaminable/DetailExaminableComponent.cs +++ b/Content.Server/DetailExaminable/DetailExaminableComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.DetailExaminable { [RegisterComponent] - public sealed class DetailExaminableComponent : Component + public sealed partial class DetailExaminableComponent : Component { [DataField("content", required: true)] [ViewVariables(VVAccess.ReadWrite)] public string Content = ""; diff --git a/Content.Server/DetailExaminable/DetailExaminableystem.cs b/Content.Server/DetailExaminable/DetailExaminableystem.cs index 1af408e4ad8..c0acd87ca43 100644 --- a/Content.Server/DetailExaminable/DetailExaminableystem.cs +++ b/Content.Server/DetailExaminable/DetailExaminableystem.cs @@ -1,4 +1,5 @@ using Content.Shared.Examine; +using Content.Shared.IdentityManagement; using Content.Shared.Verbs; using Robust.Shared.Utility; @@ -17,7 +18,9 @@ public override void Initialize() private void OnGetExamineVerbs(EntityUid uid, DetailExaminableComponent component, GetVerbsEvent args) { - // TODO: Hide if identity isn't visible (when identity is merged) + if (Identity.Name(args.Target, EntityManager) != MetaData(args.Target).EntityName) + return; + var detailsRange = _examineSystem.IsInDetailsRange(args.User, uid); var verb = new ExamineVerb() diff --git a/Content.Server/DeviceLinking/Components/ActiveSignalTimerComponent.cs b/Content.Server/DeviceLinking/Components/ActiveSignalTimerComponent.cs index 9cd1a5ff21b..5746637ad80 100644 --- a/Content.Server/DeviceLinking/Components/ActiveSignalTimerComponent.cs +++ b/Content.Server/DeviceLinking/Components/ActiveSignalTimerComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.DeviceLinking.Components { [RegisterComponent] - public sealed class ActiveSignalTimerComponent : Component + public sealed partial class ActiveSignalTimerComponent : Component { /// /// The time the timer triggers. diff --git a/Content.Server/DeviceLinking/Components/AutoLinkReceiverComponent.cs b/Content.Server/DeviceLinking/Components/AutoLinkReceiverComponent.cs index 6bf8c7fec5d..a65e44c98dd 100644 --- a/Content.Server/DeviceLinking/Components/AutoLinkReceiverComponent.cs +++ b/Content.Server/DeviceLinking/Components/AutoLinkReceiverComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.DeviceLinking.Components; /// This is used for automatic linkage with buttons and other transmitters. /// [RegisterComponent] -public sealed class AutoLinkReceiverComponent : Component +public sealed partial class AutoLinkReceiverComponent : Component { [DataField("channel", required: true)] public string AutoLinkChannel = default!; diff --git a/Content.Server/DeviceLinking/Components/AutoLinkTransmitterComponent.cs b/Content.Server/DeviceLinking/Components/AutoLinkTransmitterComponent.cs index f42628dff6a..b0cd45d0627 100644 --- a/Content.Server/DeviceLinking/Components/AutoLinkTransmitterComponent.cs +++ b/Content.Server/DeviceLinking/Components/AutoLinkTransmitterComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.DeviceLinking.Components; /// This is used for automatic linkage with various receivers, like shutters. /// [RegisterComponent] -public sealed class AutoLinkTransmitterComponent : Component +public sealed partial class AutoLinkTransmitterComponent : Component { [DataField("channel", required: true)] public string AutoLinkChannel = default!; diff --git a/Content.Server/DeviceLinking/Components/DoorSignalControlComponent.cs b/Content.Server/DeviceLinking/Components/DoorSignalControlComponent.cs index 205ebb33e4b..8d2e984753f 100644 --- a/Content.Server/DeviceLinking/Components/DoorSignalControlComponent.cs +++ b/Content.Server/DeviceLinking/Components/DoorSignalControlComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.DeviceLinking.Components { [RegisterComponent] - public sealed class DoorSignalControlComponent : Component + public sealed partial class DoorSignalControlComponent : Component { [DataField("openPort", customTypeSerializer: typeof(PrototypeIdSerializer))] public string OpenPort = "Open"; diff --git a/Content.Server/DeviceLinking/Components/EdgeDetectorComponent.cs b/Content.Server/DeviceLinking/Components/EdgeDetectorComponent.cs index 64926a3d557..603aa2aa20e 100644 --- a/Content.Server/DeviceLinking/Components/EdgeDetectorComponent.cs +++ b/Content.Server/DeviceLinking/Components/EdgeDetectorComponent.cs @@ -9,7 +9,7 @@ namespace Content.Server.DeviceLinking.Components; /// [RegisterComponent] [Access(typeof(EdgeDetectorSystem))] -public sealed class EdgeDetectorComponent : Component +public sealed partial class EdgeDetectorComponent : Component { /// /// Name of the input port. diff --git a/Content.Server/DeviceLinking/Components/LogicGateComponent.cs b/Content.Server/DeviceLinking/Components/LogicGateComponent.cs index b034335828d..ee055c5df82 100644 --- a/Content.Server/DeviceLinking/Components/LogicGateComponent.cs +++ b/Content.Server/DeviceLinking/Components/LogicGateComponent.cs @@ -11,7 +11,7 @@ namespace Content.Server.DeviceLinking.Components; /// [RegisterComponent] [Access(typeof(LogicGateSystem))] -public sealed class LogicGateComponent : Component +public sealed partial class LogicGateComponent : Component { /// /// The logic gate operation to use. diff --git a/Content.Server/DeviceLinking/Components/Overload/SoundOnOverloadComponent.cs b/Content.Server/DeviceLinking/Components/Overload/SoundOnOverloadComponent.cs index b1ff146c83b..b70ce950a11 100644 --- a/Content.Server/DeviceLinking/Components/Overload/SoundOnOverloadComponent.cs +++ b/Content.Server/DeviceLinking/Components/Overload/SoundOnOverloadComponent.cs @@ -10,7 +10,7 @@ namespace Content.Server.DeviceLinking.Components.Overload; /// [RegisterComponent] [Access(typeof(DeviceLinkOverloadSystem))] -public sealed class SoundOnOverloadComponent : Component +public sealed partial class SoundOnOverloadComponent : Component { /// /// Sound to play when the device overloads diff --git a/Content.Server/DeviceLinking/Components/Overload/SpawnOnOverloadComponent.cs b/Content.Server/DeviceLinking/Components/Overload/SpawnOnOverloadComponent.cs index ece7c2b7de5..2ee24cf3d10 100644 --- a/Content.Server/DeviceLinking/Components/Overload/SpawnOnOverloadComponent.cs +++ b/Content.Server/DeviceLinking/Components/Overload/SpawnOnOverloadComponent.cs @@ -11,7 +11,7 @@ namespace Content.Server.DeviceLinking.Components.Overload; /// [RegisterComponent] [Access(typeof(DeviceLinkOverloadSystem))] -public sealed class SpawnOnOverloadComponent : Component +public sealed partial class SpawnOnOverloadComponent : Component { /// /// The entity prototype to spawn when the device overloads diff --git a/Content.Server/DeviceLinking/Components/SignalSwitchComponent.cs b/Content.Server/DeviceLinking/Components/SignalSwitchComponent.cs index 418b0b02e50..5dd3b9c4815 100644 --- a/Content.Server/DeviceLinking/Components/SignalSwitchComponent.cs +++ b/Content.Server/DeviceLinking/Components/SignalSwitchComponent.cs @@ -10,7 +10,7 @@ namespace Content.Server.DeviceLinking.Components; /// same port regardless of its state. /// [RegisterComponent, Access(typeof(SignalSwitchSystem))] -public sealed class SignalSwitchComponent : Component +public sealed partial class SignalSwitchComponent : Component { /// /// The port that gets signaled when the switch turns on. diff --git a/Content.Server/DeviceLinking/Components/SignalTimerComponent.cs b/Content.Server/DeviceLinking/Components/SignalTimerComponent.cs index 7711d506c70..00119b1f639 100644 --- a/Content.Server/DeviceLinking/Components/SignalTimerComponent.cs +++ b/Content.Server/DeviceLinking/Components/SignalTimerComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.DeviceLinking.Components; [RegisterComponent] -public sealed class SignalTimerComponent : Component +public sealed partial class SignalTimerComponent : Component { [DataField("delay"), ViewVariables(VVAccess.ReadWrite)] public double Delay = 5; diff --git a/Content.Server/DeviceLinking/Components/SignallerComponent.cs b/Content.Server/DeviceLinking/Components/SignallerComponent.cs index d031272d751..410395c66f8 100644 --- a/Content.Server/DeviceLinking/Components/SignallerComponent.cs +++ b/Content.Server/DeviceLinking/Components/SignallerComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.DeviceLinking.Components /// Sends out a signal to machine linked objects. /// [RegisterComponent] - public sealed class SignallerComponent : Component + public sealed partial class SignallerComponent : Component { /// /// The port that gets signaled when the switch turns on. diff --git a/Content.Server/DeviceLinking/Components/TwoWayLeverComponent.cs b/Content.Server/DeviceLinking/Components/TwoWayLeverComponent.cs index dc16a0b650f..bbf78b6876b 100644 --- a/Content.Server/DeviceLinking/Components/TwoWayLeverComponent.cs +++ b/Content.Server/DeviceLinking/Components/TwoWayLeverComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.DeviceLinking.Components { [RegisterComponent] - public sealed class TwoWayLeverComponent : Component + public sealed partial class TwoWayLeverComponent : Component { [DataField("state")] public TwoWayLeverState State; diff --git a/Content.Server/DeviceLinking/Systems/DeviceLinkSystem.cs b/Content.Server/DeviceLinking/Systems/DeviceLinkSystem.cs index edf937a30c8..76f1d55a6b1 100644 --- a/Content.Server/DeviceLinking/Systems/DeviceLinkSystem.cs +++ b/Content.Server/DeviceLinking/Systems/DeviceLinkSystem.cs @@ -1,3 +1,4 @@ +using Content.Server.DeviceLinking.Components; using Content.Server.DeviceLinking.Events; using Content.Server.DeviceNetwork; using Content.Server.DeviceNetwork.Components; @@ -95,11 +96,25 @@ public void InvokePort(EntityUid uid, string port, NetworkPayload? data = null, } } - _deviceNetworkSystem.QueuePacket(uid, sinkNetworkComponent.Address, payload, sinkNetworkComponent.ReceiveFrequency); + // force using wireless network so things like atmos devices are able to send signals + var network = (int) DeviceNetworkComponent.DeviceNetIdDefaults.Wireless; + _deviceNetworkSystem.QueuePacket(uid, sinkNetworkComponent.Address, payload, sinkNetworkComponent.ReceiveFrequency, network); } } } + /// + /// Helper function that invokes a port with a high/low binary logic signal. + /// + public void SendSignal(EntityUid uid, string port, bool signal, DeviceLinkSourceComponent? comp = null) + { + var data = new NetworkPayload + { + [DeviceNetworkConstants.LogicState] = signal ? SignalState.High : SignalState.Low + }; + InvokePort(uid, port, data, comp); + } + /// /// Checks if the payload has a port defined and if the port is present on the sink. /// Raises a containing the payload when the check passes diff --git a/Content.Server/DeviceLinking/Systems/LogicGateSystem.cs b/Content.Server/DeviceLinking/Systems/LogicGateSystem.cs index d8c87a90ee5..360f86eebe9 100644 --- a/Content.Server/DeviceLinking/Systems/LogicGateSystem.cs +++ b/Content.Server/DeviceLinking/Systems/LogicGateSystem.cs @@ -140,12 +140,7 @@ private void UpdateOutput(EntityUid uid, LogicGateComponent comp) { comp.LastOutput = output; - var data = new NetworkPayload - { - [DeviceNetworkConstants.LogicState] = output ? SignalState.High : SignalState.Low - }; - - _deviceLink.InvokePort(uid, comp.OutputPort, data); + _deviceLink.SendSignal(uid, comp.OutputPort, output); } } } diff --git a/Content.Server/DeviceLinking/Systems/SignalSwitchSystem.cs b/Content.Server/DeviceLinking/Systems/SignalSwitchSystem.cs index 7da8532f2e5..7bcc438b92a 100644 --- a/Content.Server/DeviceLinking/Systems/SignalSwitchSystem.cs +++ b/Content.Server/DeviceLinking/Systems/SignalSwitchSystem.cs @@ -30,15 +30,11 @@ private void OnActivated(EntityUid uid, SignalSwitchComponent comp, ActivateInWo comp.State = !comp.State; _deviceLink.InvokePort(uid, comp.State ? comp.OnPort : comp.OffPort); - var data = new NetworkPayload - { - [DeviceNetworkConstants.LogicState] = comp.State ? SignalState.High : SignalState.Low - }; // only send status if it's a toggle switch and not a button if (comp.OnPort != comp.OffPort) { - _deviceLink.InvokePort(uid, comp.StatusPort, data); + _deviceLink.SendSignal(uid, comp.StatusPort, comp.State); } _audio.PlayPvs(comp.ClickSound, uid, AudioParams.Default.WithVariation(0.125f).WithVolume(8f)); diff --git a/Content.Server/DeviceLinking/Systems/SignalTimerSystem.cs b/Content.Server/DeviceLinking/Systems/SignalTimerSystem.cs index c42e1e5a5a3..3a7fd6bec99 100644 --- a/Content.Server/DeviceLinking/Systems/SignalTimerSystem.cs +++ b/Content.Server/DeviceLinking/Systems/SignalTimerSystem.cs @@ -40,7 +40,7 @@ private void OnAfterActivatableUIOpen(EntityUid uid, SignalTimerComponent compon if (_ui.TryGetUi(uid, SignalTimerUiKey.Key, out var bui)) { - UserInterfaceSystem.SetUiState(bui, new SignalTimerBoundUserInterfaceState(component.Label, + _ui.SetUiState(bui, new SignalTimerBoundUserInterfaceState(component.Label, TimeSpan.FromSeconds(component.Delay).Minutes.ToString("D2"), TimeSpan.FromSeconds(component.Delay).Seconds.ToString("D2"), component.CanEditLabel, @@ -60,7 +60,7 @@ public void Trigger(EntityUid uid, SignalTimerComponent signalTimer) if (_ui.TryGetUi(uid, SignalTimerUiKey.Key, out var bui)) { - UserInterfaceSystem.SetUiState(bui, new SignalTimerBoundUserInterfaceState(signalTimer.Label, + _ui.SetUiState(bui, new SignalTimerBoundUserInterfaceState(signalTimer.Label, TimeSpan.FromSeconds(signalTimer.Delay).Minutes.ToString("D2"), TimeSpan.FromSeconds(signalTimer.Delay).Seconds.ToString("D2"), signalTimer.CanEditLabel, diff --git a/Content.Server/DeviceNetwork/Components/ApcNetworkComponent.cs b/Content.Server/DeviceNetwork/Components/ApcNetworkComponent.cs index 4a195cf4512..4f021e7b71e 100644 --- a/Content.Server/DeviceNetwork/Components/ApcNetworkComponent.cs +++ b/Content.Server/DeviceNetwork/Components/ApcNetworkComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.DeviceNetwork.Components [RegisterComponent] [Access(typeof(ApcNetworkSystem))] [ComponentProtoName("ApcNetworkConnection")] - public sealed class ApcNetworkComponent : Component + public sealed partial class ApcNetworkComponent : Component { /// /// The node Group the ApcNetworkConnection is connected to diff --git a/Content.Server/DeviceNetwork/Components/DeviceNetworkComponent.cs b/Content.Server/DeviceNetwork/Components/DeviceNetworkComponent.cs index 55b91704228..7bd89382bc5 100644 --- a/Content.Server/DeviceNetwork/Components/DeviceNetworkComponent.cs +++ b/Content.Server/DeviceNetwork/Components/DeviceNetworkComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.DeviceNetwork.Components { [RegisterComponent] [Access(typeof(DeviceNetworkSystem), typeof(DeviceNet))] - public sealed class DeviceNetworkComponent : Component + public sealed partial class DeviceNetworkComponent : Component { public enum DeviceNetIdDefaults { diff --git a/Content.Server/DeviceNetwork/Components/DeviceNetworkRequiresPowerComponent.cs b/Content.Server/DeviceNetwork/Components/DeviceNetworkRequiresPowerComponent.cs index 72d946d313c..7a8ca54f053 100644 --- a/Content.Server/DeviceNetwork/Components/DeviceNetworkRequiresPowerComponent.cs +++ b/Content.Server/DeviceNetwork/Components/DeviceNetworkRequiresPowerComponent.cs @@ -6,6 +6,6 @@ namespace Content.Server.DeviceNetwork.Components; /// if the entity is not powered. /// [RegisterComponent] -public sealed class DeviceNetworkRequiresPowerComponent : Component +public sealed partial class DeviceNetworkRequiresPowerComponent : Component { } diff --git a/Content.Server/DeviceNetwork/Components/Devices/ApcNetSwitchComponent.cs b/Content.Server/DeviceNetwork/Components/Devices/ApcNetSwitchComponent.cs index eed039432f4..7f298e3cf4f 100644 --- a/Content.Server/DeviceNetwork/Components/Devices/ApcNetSwitchComponent.cs +++ b/Content.Server/DeviceNetwork/Components/Devices/ApcNetSwitchComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.DeviceNetwork.Components.Devices { [RegisterComponent] [Access(typeof(ApcNetSwitchSystem))] - public sealed class ApcNetSwitchComponent : Component + public sealed partial class ApcNetSwitchComponent : Component { [ViewVariables] public bool State; } diff --git a/Content.Server/DeviceNetwork/Components/StationLimitedNetworkComponent.cs b/Content.Server/DeviceNetwork/Components/StationLimitedNetworkComponent.cs index 7d69c3c5738..29efa50e795 100644 --- a/Content.Server/DeviceNetwork/Components/StationLimitedNetworkComponent.cs +++ b/Content.Server/DeviceNetwork/Components/StationLimitedNetworkComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.DeviceNetwork.Components { [RegisterComponent] - public sealed class StationLimitedNetworkComponent : Component + public sealed partial class StationLimitedNetworkComponent : Component { /// /// The station id the device is limited to. diff --git a/Content.Server/DeviceNetwork/Components/WiredNetworkComponent.cs b/Content.Server/DeviceNetwork/Components/WiredNetworkComponent.cs index ad0bc5c0c31..b7bec1415f1 100644 --- a/Content.Server/DeviceNetwork/Components/WiredNetworkComponent.cs +++ b/Content.Server/DeviceNetwork/Components/WiredNetworkComponent.cs @@ -2,7 +2,7 @@ namespace Content.Server.DeviceNetwork.Components { [RegisterComponent] [ComponentProtoName("WiredNetworkConnection")] - public sealed class WiredNetworkComponent : Component + public sealed partial class WiredNetworkComponent : Component { } } diff --git a/Content.Server/DeviceNetwork/Components/WirelessNetworkComponent.cs b/Content.Server/DeviceNetwork/Components/WirelessNetworkComponent.cs index 26867fdcf7f..6d6a4449006 100644 --- a/Content.Server/DeviceNetwork/Components/WirelessNetworkComponent.cs +++ b/Content.Server/DeviceNetwork/Components/WirelessNetworkComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.DeviceNetwork.Components /// [RegisterComponent] [ComponentProtoName("WirelessNetworkConnection")] - public sealed class WirelessNetworkComponent : Component + public sealed partial class WirelessNetworkComponent : Component { [DataField("range")] public int Range { get; set; } diff --git a/Content.Server/DeviceNetwork/Systems/DeviceNetworkSystem.cs b/Content.Server/DeviceNetwork/Systems/DeviceNetworkSystem.cs index 75204d48855..d17093c294f 100644 --- a/Content.Server/DeviceNetwork/Systems/DeviceNetworkSystem.cs +++ b/Content.Server/DeviceNetwork/Systems/DeviceNetworkSystem.cs @@ -66,7 +66,7 @@ public override void Update(float frameTime) /// The frequency to send on /// The data to be sent /// Returns true when the packet was successfully enqueued. - public bool QueuePacket(EntityUid uid, string? address, NetworkPayload data, uint? frequency = null, DeviceNetworkComponent? device = null) + public bool QueuePacket(EntityUid uid, string? address, NetworkPayload data, uint? frequency = null, int? network = null, DeviceNetworkComponent? device = null) { if (!Resolve(uid, ref device, false)) return false; @@ -79,7 +79,9 @@ public bool QueuePacket(EntityUid uid, string? address, NetworkPayload data, uin if (frequency == null) return false; - _nextQueue.Enqueue(new DeviceNetworkPacketEvent(device.DeviceNetId, address, frequency.Value, device.Address, uid, data)); + network ??= device.DeviceNetId; + + _nextQueue.Enqueue(new DeviceNetworkPacketEvent(network.Value, address, frequency.Value, device.Address, uid, data)); return true; } diff --git a/Content.Server/DeviceNetwork/Systems/NetworkConfiguratorSystem.cs b/Content.Server/DeviceNetwork/Systems/NetworkConfiguratorSystem.cs index 276e3ebb65a..c2507616871 100644 --- a/Content.Server/DeviceNetwork/Systems/NetworkConfiguratorSystem.cs +++ b/Content.Server/DeviceNetwork/Systems/NetworkConfiguratorSystem.cs @@ -192,7 +192,7 @@ private bool AccessCheck(EntityUid target, EntityUid? user, NetworkConfiguratorC if (!TryComp(target, out AccessReaderComponent? reader) || user == null) return true; - if (_accessSystem.IsAllowed(user.Value, reader)) + if (_accessSystem.IsAllowed(user.Value, target, reader)) return true; _audioSystem.PlayPvs(component.SoundNoAccess, user.Value, AudioParams.Default.WithVolume(-2f).WithPitchScale(1.2f)); @@ -473,7 +473,7 @@ private void OpenDeviceListUi(EntityUid configuratorUid, EntityUid? targetUid, E return; if (_uiSystem.OpenUi(bui, actor.PlayerSession)) - UserInterfaceSystem.SetUiState(bui, new DeviceListUserInterfaceState( + _uiSystem.SetUiState(bui, new DeviceListUserInterfaceState( _deviceListSystem.GetDeviceList(configurator.ActiveDeviceList.Value) .Select(v => (v.Key, MetaData(v.Value).EntityName)).ToHashSet() )); @@ -505,7 +505,7 @@ private void UpdateListUiState(EntityUid uid, NetworkConfiguratorComponent compo } if (_uiSystem.TryGetUi(uid, NetworkConfiguratorUiKey.List, out var bui)) - UserInterfaceSystem.SetUiState(bui, new NetworkConfiguratorUserInterfaceState(devices)); + _uiSystem.SetUiState(bui, new NetworkConfiguratorUserInterfaceState(devices)); } /// diff --git a/Content.Server/DeviceNetwork/Systems/WiredNetworkSystem.cs b/Content.Server/DeviceNetwork/Systems/WiredNetworkSystem.cs index 384e701d247..758a333c7ae 100644 --- a/Content.Server/DeviceNetwork/Systems/WiredNetworkSystem.cs +++ b/Content.Server/DeviceNetwork/Systems/WiredNetworkSystem.cs @@ -17,7 +17,7 @@ public override void Initialize() /// private void OnBeforePacketSent(EntityUid uid, WiredNetworkComponent component, BeforePacketSentEvent args) { - if (EntityManager.GetComponent(uid).GridUid != args.SenderTransform.GridUid) + if (Transform(uid).GridUid != args.SenderTransform.GridUid) { args.Cancel(); } diff --git a/Content.Server/DeviceNetwork/Systems/WirelessNetworkSystem.cs b/Content.Server/DeviceNetwork/Systems/WirelessNetworkSystem.cs index cbf591624d7..b27ef52eca6 100644 --- a/Content.Server/DeviceNetwork/Systems/WirelessNetworkSystem.cs +++ b/Content.Server/DeviceNetwork/Systems/WirelessNetworkSystem.cs @@ -20,8 +20,11 @@ private void OnBeforePacketSent(EntityUid uid, WirelessNetworkComponent componen var ownPosition = args.SenderPosition; var xform = Transform(uid); + // not a wireless to wireless connection, just let it happen + if (!TryComp(args.Sender, out var sendingComponent)) + return; + if (xform.MapID != args.SenderTransform.MapID - || !TryComp(args.Sender, out var sendingComponent) || (ownPosition - xform.WorldPosition).Length() > sendingComponent.Range) { args.Cancel(); diff --git a/Content.Server/Devour/DevourSystem.cs b/Content.Server/Devour/DevourSystem.cs index 54217511000..3b15e725fe6 100644 --- a/Content.Server/Devour/DevourSystem.cs +++ b/Content.Server/Devour/DevourSystem.cs @@ -1,10 +1,8 @@ -using Content.Shared.Devour; using Content.Server.Body.Systems; -using Content.Shared.Humanoid; using Content.Shared.Chemistry.Components; -using Content.Server.Devour.Components; -using Content.Shared.DoAfter; -using Robust.Shared.Serialization; +using Content.Shared.Devour; +using Content.Shared.Devour.Components; +using Content.Shared.Humanoid; namespace Content.Server.Devour; diff --git a/Content.Server/Discord/DiscordWebhook.cs b/Content.Server/Discord/DiscordWebhook.cs new file mode 100644 index 00000000000..d8a93184445 --- /dev/null +++ b/Content.Server/Discord/DiscordWebhook.cs @@ -0,0 +1,101 @@ +using System.Net.Http; +using System.Net.Http.Json; +using System.Threading.Tasks; + +namespace Content.Server.Discord; + +public sealed class DiscordWebhook : IPostInjectInit +{ + [Dependency] private readonly ILogManager _log = default!; + + private const string BaseUrl = "https://discord.com/api/v10/webhooks"; + private readonly HttpClient _http = new(); + private ISawmill _sawmill = default!; + + private string GetUrl(WebhookIdentifier identifier) + { + return $"{BaseUrl}/{identifier.Id}/{identifier.Token}"; + } + + /// + /// Gets the webhook data from the given webhook url. + /// + /// The url to get the data from. + /// The webhook data returned from the url. + public async Task GetWebhook(string url) + { + try + { + return await _http.GetFromJsonAsync(url); + } + catch + { + _sawmill.Error($"Error getting discord webhook data. Stack trace:\n{Environment.StackTrace}"); + return null; + } + } + + /// + /// Gets the webhook data from the given webhook url. + /// + /// The url to get the data from. + /// The delegate to invoke with the obtained data, if any. + public async void GetWebhook(string url, Action onComplete) + { + if (await GetWebhook(url) is { } data) + onComplete(data); + } + + /// + /// Tries to get the webhook data from the given webhook url if it is not null or whitespace. + /// + /// The url to get the data from. + /// The delegate to invoke with the obtained data, if any. + public async void TryGetWebhook(string url, Action onComplete) + { + if (await GetWebhook(url) is { } data) + onComplete(data); + } + + /// + /// Creates a new webhook message with the given identifier and payload. + /// + /// The identifier for the webhook url. + /// The payload to create the message from. + /// The response from Discord's API. + public async Task CreateMessage(WebhookIdentifier identifier, WebhookPayload payload) + { + var url = $"{GetUrl(identifier)}?wait=true"; + return await _http.PostAsJsonAsync(url, payload); + } + + /// + /// Deletes a webhook message with the given identifier and message id. + /// + /// The identifier for the webhook url. + /// The message id to delete. + /// The response from Discord's API. + public async Task DeleteMessage(WebhookIdentifier identifier, ulong messageId) + { + var url = $"{GetUrl(identifier)}/messages/{messageId}"; + return await _http.DeleteAsync(url); + } + + /// + /// Creates a new webhook message with the given identifier, message id and payload. + /// + /// The identifier for the webhook url. + /// The message id to edit. + /// The payload used to edit the message. + /// The response from Discord's API. + public async Task EditMessage(WebhookIdentifier identifier, ulong messageId, WebhookPayload payload) + { + var url = $"{GetUrl(identifier)}/messages/{messageId}"; + return await _http.PatchAsJsonAsync(url, payload); + } + + void IPostInjectInit.PostInject() + { + _sawmill = _log.GetSawmill("DISCORD"); + } +} diff --git a/Content.Server/Discord/WebhookData.cs b/Content.Server/Discord/WebhookData.cs new file mode 100644 index 00000000000..1a669237e1b --- /dev/null +++ b/Content.Server/Discord/WebhookData.cs @@ -0,0 +1,42 @@ +using System.Text.Json.Serialization; + +namespace Content.Server.Discord; + +// https://discord.com/developers/docs/resources/webhook#webhook-object-webhook-structure +public struct WebhookData +{ + [JsonPropertyName("id")] + public string Id { get; set; } + + [JsonPropertyName("type")] + public int Type { get; set; } + + [JsonPropertyName("guild_id")] + public string? GuildId { get; set; } + + [JsonPropertyName("channel_id")] + public string? ChannelId { get; set; } + + [JsonPropertyName("user")] + public WebhookUser? User { get; set; } + + [JsonPropertyName("name")] + public string? Name { get; set; } + + [JsonPropertyName("avatar")] + public string? Avatar { get; set; } + + [JsonPropertyName("token")] + public string Token { get; set; } + + [JsonPropertyName("application_id")] + public string? ApplicationId { get; set; } + + [JsonPropertyName("url")] + public string? Url { get; set; } + + public WebhookIdentifier ToIdentifier() + { + return new WebhookIdentifier(Id, Token); + } +} diff --git a/Content.Server/Discord/WebhookEmbed.cs b/Content.Server/Discord/WebhookEmbed.cs new file mode 100644 index 00000000000..8e0db0722c2 --- /dev/null +++ b/Content.Server/Discord/WebhookEmbed.cs @@ -0,0 +1,20 @@ +using System.Text.Json.Serialization; + +namespace Content.Server.Discord; + +// https://discord.com/developers/docs/resources/channel#embed-object-embed-structure +public struct WebhookEmbed +{ + [JsonPropertyName("description")] + public string Description { get; set; } = ""; + + [JsonPropertyName("color")] + public int Color { get; set; } = 0; + + [JsonPropertyName("footer")] + public WebhookEmbedFooter? Footer { get; set; } = null; + + public WebhookEmbed() + { + } +} diff --git a/Content.Server/Discord/WebhookEmbedFooter.cs b/Content.Server/Discord/WebhookEmbedFooter.cs new file mode 100644 index 00000000000..9eda006ed20 --- /dev/null +++ b/Content.Server/Discord/WebhookEmbedFooter.cs @@ -0,0 +1,17 @@ +using System.Text.Json.Serialization; + +namespace Content.Server.Discord; + +// https://discord.com/developers/docs/resources/channel#embed-object-embed-footer-structure +public struct WebhookEmbedFooter +{ + [JsonPropertyName("text")] + public string Text { get; set; } = ""; + + [JsonPropertyName("icon_url")] + public string? IconUrl { get; set; } + + public WebhookEmbedFooter() + { + } +} diff --git a/Content.Server/Discord/WebhookIdentifier.cs b/Content.Server/Discord/WebhookIdentifier.cs new file mode 100644 index 00000000000..71706fe766c --- /dev/null +++ b/Content.Server/Discord/WebhookIdentifier.cs @@ -0,0 +1,3 @@ +namespace Content.Server.Discord; + +public record struct WebhookIdentifier(string Id, string Token); diff --git a/Content.Server/Discord/WebhookMentions.cs b/Content.Server/Discord/WebhookMentions.cs new file mode 100644 index 00000000000..da945b363e0 --- /dev/null +++ b/Content.Server/Discord/WebhookMentions.cs @@ -0,0 +1,18 @@ +using System.Text.Json.Serialization; + +namespace Content.Server.Discord; + +public struct WebhookMentions +{ + [JsonPropertyName("parse")] + public HashSet Parse { get; set; } = new(); + + public WebhookMentions() + { + } + + public void AllowRoleMentions() + { + Parse.Add("roles"); + } +} diff --git a/Content.Server/Discord/WebhookPayload.cs b/Content.Server/Discord/WebhookPayload.cs new file mode 100644 index 00000000000..6300f86ad57 --- /dev/null +++ b/Content.Server/Discord/WebhookPayload.cs @@ -0,0 +1,29 @@ +using System.Text.Json.Serialization; + +namespace Content.Server.Discord; + +// https://discord.com/developers/docs/resources/channel#message-object-message-structure +public struct WebhookPayload +{ + /// + /// The message to send in the webhook. Maximum of 2000 characters. + /// + [JsonPropertyName("content")] + public string Content { get; set; } = ""; + + [JsonPropertyName("username")] + public string? Username { get; set; } + + [JsonPropertyName("avatar_url")] + public string? AvatarUrl { get; set; } = ""; + + [JsonPropertyName("embeds")] + public List? Embeds { get; set; } = null; + + [JsonPropertyName("allowed_mentions")] + public WebhookMentions AllowedMentions { get; set; } = new(); + + public WebhookPayload() + { + } +} diff --git a/Content.Server/Discord/WebhookUser.cs b/Content.Server/Discord/WebhookUser.cs new file mode 100644 index 00000000000..103f41800ca --- /dev/null +++ b/Content.Server/Discord/WebhookUser.cs @@ -0,0 +1,58 @@ +using System.Text.Json.Serialization; + +namespace Content.Server.Discord; + +// https://discord.com/developers/docs/resources/user#user-object +public struct WebhookUser +{ + [JsonPropertyName("id")] + public string Id { get; set; } + + [JsonPropertyName("username")] + public string Username { get; set; } + + [JsonPropertyName("discriminator")] + public string Discriminator { get; set; } + + [JsonPropertyName("global_name")] + public string? GlobalName { get; set; } + + [JsonPropertyName("avatar")] + public string? Avatar { get; set; } + + [JsonPropertyName("bot")] + public bool? Bot { get; set; } + + [JsonPropertyName("system")] + public bool? System { get; set; } + + [JsonPropertyName("mfa_enabled")] + public bool? MfaEnabled { get; set; } + + [JsonPropertyName("banner")] + public string? Banner { get; set; } + + [JsonPropertyName("accent_color")] + public int? AccentColor { get; set; } + + [JsonPropertyName("locale")] + public string? Locale { get; set; } + + [JsonPropertyName("verified")] + public bool? Verified { get; set; } + + [JsonPropertyName("email")] + public string? Email { get; set; } + + [JsonPropertyName("flags")] + public int? Flags { get; set; } + + [JsonPropertyName("premium_type")] + public int? PremiumType { get; set; } + + [JsonPropertyName("public_flags")] + public int? PublicFlags { get; set; } + + [JsonPropertyName("avatar_decoration")] + public string? AvatarDecoration { get; set; } +} diff --git a/Content.Server/Disposal/Mailing/MailingUnitComponent.cs b/Content.Server/Disposal/Mailing/MailingUnitComponent.cs index 598c0826883..be5eca99c49 100644 --- a/Content.Server/Disposal/Mailing/MailingUnitComponent.cs +++ b/Content.Server/Disposal/Mailing/MailingUnitComponent.cs @@ -4,14 +4,14 @@ namespace Content.Server.Disposal.Mailing; [Access(typeof(MailingUnitSystem))] [RegisterComponent] -public sealed class MailingUnitComponent : Component +public sealed partial class MailingUnitComponent : Component { /// /// List of targets the mailing unit can send to. /// Each target is just a disposal routing tag /// [DataField("targetList")] - public readonly List TargetList = new(); + public List TargetList = new(); /// /// The target that gets attached to the disposal holders tag list on flush diff --git a/Content.Server/Disposal/Mailing/MailingUnitSystem.cs b/Content.Server/Disposal/Mailing/MailingUnitSystem.cs index 6e08224778a..7993ccc07d5 100644 --- a/Content.Server/Disposal/Mailing/MailingUnitSystem.cs +++ b/Content.Server/Disposal/Mailing/MailingUnitSystem.cs @@ -111,7 +111,7 @@ private void BroadcastSentMessage(EntityUid uid, MailingUnitComponent component, [NetTarget] = component.Target }; - _deviceNetworkSystem.QueuePacket(uid, null, payload, null, device); + _deviceNetworkSystem.QueuePacket(uid, null, payload, null, null, device); } /// @@ -129,7 +129,7 @@ private void UpdateTargetList(EntityUid uid, MailingUnitComponent component, Dev }; component.TargetList.Clear(); - _deviceNetworkSystem.QueuePacket(uid, null, payload, null, device); + _deviceNetworkSystem.QueuePacket(uid, null, payload, null, null, device); } /// @@ -177,7 +177,7 @@ private void UpdateUserInterface(EntityUid uid, MailingUnitComponent component) var state = new MailingUnitBoundUserInterfaceState(component.DisposalUnitInterfaceState, component.Target, component.TargetList, component.Tag); if (_userInterfaceSystem.TryGetUi(uid, MailingUnitUiKey.Key, out var bui)) - UserInterfaceSystem.SetUiState(bui, state); + _userInterfaceSystem.SetUiState(bui, state); } private void OnTargetSelected(EntityUid uid, MailingUnitComponent component, TargetSelectedMessage args) diff --git a/Content.Server/Disposal/Tube/Components/DisposalBendComponent.cs b/Content.Server/Disposal/Tube/Components/DisposalBendComponent.cs index caae2e10367..ace8a684621 100644 --- a/Content.Server/Disposal/Tube/Components/DisposalBendComponent.cs +++ b/Content.Server/Disposal/Tube/Components/DisposalBendComponent.cs @@ -2,6 +2,6 @@ namespace Content.Server.Disposal.Tube.Components; [RegisterComponent] [Access(typeof(DisposalTubeSystem))] -public sealed class DisposalBendComponent : Component +public sealed partial class DisposalBendComponent : Component { } diff --git a/Content.Server/Disposal/Tube/Components/DisposalEntryComponent.cs b/Content.Server/Disposal/Tube/Components/DisposalEntryComponent.cs index 3223de35db4..e4b8955c9cf 100644 --- a/Content.Server/Disposal/Tube/Components/DisposalEntryComponent.cs +++ b/Content.Server/Disposal/Tube/Components/DisposalEntryComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Disposal.Tube.Components { [RegisterComponent] [Access(typeof(DisposalTubeSystem), typeof(DisposalUnitSystem))] - public sealed class DisposalEntryComponent : Component + public sealed partial class DisposalEntryComponent : Component { public const string HolderPrototypeId = "DisposalHolder"; } diff --git a/Content.Server/Disposal/Tube/Components/DisposalJunctionComponent.cs b/Content.Server/Disposal/Tube/Components/DisposalJunctionComponent.cs index ca1a4cb5852..d929dd16bf9 100644 --- a/Content.Server/Disposal/Tube/Components/DisposalJunctionComponent.cs +++ b/Content.Server/Disposal/Tube/Components/DisposalJunctionComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Disposal.Tube.Components; [RegisterComponent] [Access(typeof(DisposalTubeSystem))] [Virtual] -public class DisposalJunctionComponent : Component +public partial class DisposalJunctionComponent : Component { /// /// The angles to connect to. diff --git a/Content.Server/Disposal/Tube/Components/DisposalRouterComponent.cs b/Content.Server/Disposal/Tube/Components/DisposalRouterComponent.cs index 6ab7e3d3be7..18c0945cef1 100644 --- a/Content.Server/Disposal/Tube/Components/DisposalRouterComponent.cs +++ b/Content.Server/Disposal/Tube/Components/DisposalRouterComponent.cs @@ -10,10 +10,8 @@ namespace Content.Server.Disposal.Tube.Components { [RegisterComponent] [Access(typeof(DisposalTubeSystem))] - public sealed class DisposalRouterComponent : DisposalJunctionComponent + public sealed partial class DisposalRouterComponent : DisposalJunctionComponent { - [Dependency] private readonly IEntityManager _entMan = default!; - [DataField("tags")] public HashSet Tags = new(); diff --git a/Content.Server/Disposal/Tube/Components/DisposalTaggerComponent.cs b/Content.Server/Disposal/Tube/Components/DisposalTaggerComponent.cs index a1fbade5e78..a291f4a941a 100644 --- a/Content.Server/Disposal/Tube/Components/DisposalTaggerComponent.cs +++ b/Content.Server/Disposal/Tube/Components/DisposalTaggerComponent.cs @@ -10,7 +10,7 @@ namespace Content.Server.Disposal.Tube.Components { [RegisterComponent] - public sealed class DisposalTaggerComponent : DisposalTransitComponent + public sealed partial class DisposalTaggerComponent : DisposalTransitComponent { [ViewVariables(VVAccess.ReadWrite)] [DataField("tag")] diff --git a/Content.Server/Disposal/Tube/Components/DisposalTransitComponent.cs b/Content.Server/Disposal/Tube/Components/DisposalTransitComponent.cs index 9753978cd13..e9163275163 100644 --- a/Content.Server/Disposal/Tube/Components/DisposalTransitComponent.cs +++ b/Content.Server/Disposal/Tube/Components/DisposalTransitComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Disposal.Tube.Components [RegisterComponent] [Access(typeof(DisposalTubeSystem))] [Virtual] - public class DisposalTransitComponent : Component + public partial class DisposalTransitComponent : Component { } } diff --git a/Content.Server/Disposal/Tube/Components/DisposalTubeComponent.cs b/Content.Server/Disposal/Tube/Components/DisposalTubeComponent.cs index c673e9cca5e..8b3cd4720de 100644 --- a/Content.Server/Disposal/Tube/Components/DisposalTubeComponent.cs +++ b/Content.Server/Disposal/Tube/Components/DisposalTubeComponent.cs @@ -10,12 +10,10 @@ namespace Content.Server.Disposal.Tube.Components { [RegisterComponent] [Access(typeof(DisposalTubeSystem), typeof(DisposableSystem))] - public sealed class DisposalTubeComponent : Component + public sealed partial class DisposalTubeComponent : Component { [DataField("containerId")] public string ContainerId { get; set; } = "DisposalTube"; - [Dependency] private readonly IEntityManager _entMan = default!; - public static readonly TimeSpan ClangDelay = TimeSpan.FromSeconds(0.5); public TimeSpan LastClang; diff --git a/Content.Server/Disposal/Tube/DisposalTubeSystem.cs b/Content.Server/Disposal/Tube/DisposalTubeSystem.cs index cf819dfd78f..477a167fa27 100644 --- a/Content.Server/Disposal/Tube/DisposalTubeSystem.cs +++ b/Content.Server/Disposal/Tube/DisposalTubeSystem.cs @@ -325,8 +325,9 @@ private void OnOpenTaggerUIAttempt(EntityUid uid, DisposalTaggerComponent tagger args.Cancel(); } - if (_uiSystem.TryGetUi(uid, SharedDisposalTaggerComponent.DisposalTaggerUiKey.Key, out var bui)) - UserInterfaceSystem.SetUiState(bui, new SharedDisposalTaggerComponent.DisposalTaggerUserInterfaceState(tagger.Tag)); + if (_uiSystem.TryGetUi(uid, DisposalTaggerUiKey.Key, out var bui)) + _uiSystem.SetUiState(bui, + new DisposalTaggerUserInterfaceState(tagger.Tag)); } /// @@ -335,11 +336,11 @@ private void OnOpenTaggerUIAttempt(EntityUid uid, DisposalTaggerComponent tagger /// Returns a private void UpdateRouterUserInterface(EntityUid uid, DisposalRouterComponent router) { - var bui = _uiSystem.GetUiOrNull(uid, SharedDisposalTaggerComponent.DisposalTaggerUiKey.Key); + var bui = _uiSystem.GetUiOrNull(uid, DisposalTaggerUiKey.Key); if (router.Tags.Count <= 0) { if (bui is not null) - UserInterfaceSystem.SetUiState(bui, new SharedDisposalTaggerComponent.DisposalTaggerUserInterfaceState("")); + _uiSystem.SetUiState(bui, new DisposalTaggerUserInterfaceState("")); return; } @@ -354,7 +355,7 @@ private void UpdateRouterUserInterface(EntityUid uid, DisposalRouterComponent ro taglist.Remove(taglist.Length - 2, 2); if (bui is not null) - UserInterfaceSystem.SetUiState(bui, new SharedDisposalTaggerComponent.DisposalTaggerUserInterfaceState(taglist.ToString())); + _uiSystem.SetUiState(bui, new DisposalTaggerUserInterfaceState(taglist.ToString())); } private void OnAnchorChange(EntityUid uid, DisposalTubeComponent component, ref AnchorStateChangedEvent args) diff --git a/Content.Server/Disposal/TubeConnectionsCommand.cs b/Content.Server/Disposal/TubeConnectionsCommand.cs index 98f8a2bfe00..7895dcbca66 100644 --- a/Content.Server/Disposal/TubeConnectionsCommand.cs +++ b/Content.Server/Disposal/TubeConnectionsCommand.cs @@ -31,7 +31,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!EntityUid.TryParse(args[0], out var id)) + if (!NetEntity.TryParse(args[0], out var idNet) || !_entities.TryGetEntity(idNet, out var id)) { shell.WriteLine(Loc.GetString("shell-invalid-entity-uid",("uid", args[0]))); return; @@ -51,7 +51,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - _entities.System().PopupDirections(id, tube, player.AttachedEntity.Value); + _entities.System().PopupDirections(id.Value, tube, player.AttachedEntity.Value); } } } diff --git a/Content.Server/Disposal/Unit/Components/BeingDisposedComponent.cs b/Content.Server/Disposal/Unit/Components/BeingDisposedComponent.cs index 0cec11aae02..060c7c98bd0 100644 --- a/Content.Server/Disposal/Unit/Components/BeingDisposedComponent.cs +++ b/Content.Server/Disposal/Unit/Components/BeingDisposedComponent.cs @@ -4,7 +4,7 @@ /// A component added to entities that are currently in disposals. /// [RegisterComponent] -public sealed class BeingDisposedComponent : Component +public sealed partial class BeingDisposedComponent : Component { [ViewVariables] public EntityUid Holder; diff --git a/Content.Server/Disposal/Unit/Components/DisposalHolderComponent.cs b/Content.Server/Disposal/Unit/Components/DisposalHolderComponent.cs index 653d7789b01..3df2182b41e 100644 --- a/Content.Server/Disposal/Unit/Components/DisposalHolderComponent.cs +++ b/Content.Server/Disposal/Unit/Components/DisposalHolderComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.Disposal.Unit.Components { [RegisterComponent] - public sealed class DisposalHolderComponent : Component, IGasMixtureHolder + public sealed partial class DisposalHolderComponent : Component, IGasMixtureHolder { public Container Container = null!; diff --git a/Content.Server/Disposal/Unit/Components/DisposalUnitComponent.cs b/Content.Server/Disposal/Unit/Components/DisposalUnitComponent.cs index c9608dfba4d..548af039daa 100644 --- a/Content.Server/Disposal/Unit/Components/DisposalUnitComponent.cs +++ b/Content.Server/Disposal/Unit/Components/DisposalUnitComponent.cs @@ -6,8 +6,7 @@ namespace Content.Server.Disposal.Unit.Components; // GasMixture life. [RegisterComponent] -[ComponentReference(typeof(SharedDisposalUnitComponent))] -public sealed class DisposalUnitComponent : SharedDisposalUnitComponent +public sealed partial class DisposalUnitComponent : SharedDisposalUnitComponent { [DataField("air")] public GasMixture Air = new(Atmospherics.CellVolume); diff --git a/Content.Server/Disposal/Unit/EntitySystems/DisposableSystem.cs b/Content.Server/Disposal/Unit/EntitySystems/DisposableSystem.cs index 83e079746ea..3edc2a5fa78 100644 --- a/Content.Server/Disposal/Unit/EntitySystems/DisposableSystem.cs +++ b/Content.Server/Disposal/Unit/EntitySystems/DisposableSystem.cs @@ -57,7 +57,7 @@ private bool CanInsert(EntityUid uid, EntityUid toInsert, DisposalHolderComponen if (!Resolve(uid, ref holder)) return false; - if (!holder.Container.CanInsert(toInsert)) + if (!_containerSystem.CanInsert(toInsert, holder.Container)) { return false; } diff --git a/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs b/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs index d98af4bf201..41db7b1dd89 100644 --- a/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs +++ b/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs @@ -1,3 +1,4 @@ +using System.Diagnostics.CodeAnalysis; using System.Linq; using Content.Server.Administration.Logs; using Content.Server.Atmos.EntitySystems; @@ -95,7 +96,7 @@ private void OnGetState(EntityUid uid, DisposalUnitComponent component, ref Comp component.NextFlush, component.Powered, component.Engaged, - component.RecentlyEjected); + GetNetEntityList(component.RecentlyEjected)); } private void OnUnpaused(EntityUid uid, SharedDisposalUnitComponent component, ref EntityUnpausedEvent args) @@ -200,7 +201,7 @@ private void OnDoAfter(EntityUid uid, SharedDisposalUnitComponent component, DoA public override void DoInsertDisposalUnit(EntityUid uid, EntityUid toInsert, EntityUid user, SharedDisposalUnitComponent? disposal = null) { - if (!Resolve(uid, ref disposal)) + if (!ResolveDisposals(uid, ref disposal)) return; if (!disposal.Container.Insert(toInsert)) @@ -498,7 +499,7 @@ public bool TryInsert(EntityUid unitId, EntityUid toInsertId, EntityUid? userId, // Can't check if our target AND disposals moves currently so we'll just check target. // if you really want to check if disposals moves then add a predicate. - var doAfterArgs = new DoAfterArgs(userId.Value, delay, new DisposalDoAfterEvent(), unitId, target: toInsertId, used: unitId) + var doAfterArgs = new DoAfterArgs(EntityManager, userId.Value, delay, new DisposalDoAfterEvent(), unitId, target: toInsertId, used: unitId) { BreakOnDamage = true, BreakOnTargetMove = true, @@ -541,7 +542,7 @@ public bool TryFlush(EntityUid uid, SharedDisposalUnitComponent component) if (entry == default || component is not DisposalUnitComponent sDisposals) { component.Engaged = false; - Dirty(component); + Dirty(uid, component); return false; } @@ -549,7 +550,10 @@ public bool TryFlush(EntityUid uid, SharedDisposalUnitComponent component) _disposalTubeSystem.TryInsert(entry, sDisposals, beforeFlushArgs.Tags); - component.NextPressurized = GameTiming.CurTime + TimeSpan.FromSeconds(1f / PressurePerSecond); + component.NextPressurized = GameTiming.CurTime; + if (!component.DisablePressure) + component.NextPressurized += TimeSpan.FromSeconds(1f / PressurePerSecond); + component.Engaged = false; // stop queuing NOW component.NextFlush = null; @@ -557,7 +561,7 @@ public bool TryFlush(EntityUid uid, SharedDisposalUnitComponent component) UpdateVisualState(uid, component, true); UpdateInterface(uid, component, component.Powered); - Dirty(component); + Dirty(uid, component); return true; } @@ -673,7 +677,7 @@ public void Remove(EntityUid uid, SharedDisposalUnitComponent component, EntityU component.RecentlyEjected.Add(toRemove); UpdateVisualState(uid, component); - Dirty(component); + Dirty(uid, component); } public bool CanFlush(EntityUid unit, SharedDisposalUnitComponent component) @@ -688,7 +692,7 @@ public void ManualEngage(EntityUid uid, SharedDisposalUnitComponent component, M component.Engaged = true; UpdateVisualState(uid, component); UpdateInterface(uid, component, component.Powered); - Dirty(component); + Dirty(uid, component); if (!CanFlush(uid, component)) return; @@ -712,7 +716,7 @@ public void Disengage(EntityUid uid, SharedDisposalUnitComponent component) UpdateVisualState(uid, component); UpdateInterface(uid, component, component.Powered); - Dirty(component); + Dirty(uid, component); } /// @@ -728,16 +732,31 @@ public void TryEjectContents(EntityUid uid, SharedDisposalUnitComponent componen if (!component.Engaged) { component.NextFlush = null; - Dirty(component); + Dirty(uid, component); } } + public override bool HasDisposals(EntityUid? uid) + { + return HasComp(uid); + } + + public override bool ResolveDisposals(EntityUid uid, [NotNullWhen(true)] ref SharedDisposalUnitComponent? component) + { + if (component != null) + return true; + + TryComp(uid, out var storage); + component = storage; + return component != null; + } + public override bool CanInsert(EntityUid uid, SharedDisposalUnitComponent component, EntityUid entity) { - if (!base.CanInsert(uid, component, entity) || component is not SharedDisposalUnitComponent serverComp) + if (!base.CanInsert(uid, component, entity)) return false; - return serverComp.Container.CanInsert(entity); + return _containerSystem.CanInsert(entity, component.Container); } /// diff --git a/Content.Server/Doors/Systems/DoorSystem.cs b/Content.Server/Doors/Systems/DoorSystem.cs index c16b2b6fec4..f9918dfb0a6 100644 --- a/Content.Server/Doors/Systems/DoorSystem.cs +++ b/Content.Server/Doors/Systems/DoorSystem.cs @@ -2,7 +2,6 @@ using Content.Server.Atmos.Components; using Content.Server.Atmos.EntitySystems; using Content.Server.Construction; -using Content.Server.Tools.Systems; using Content.Shared.Database; using Content.Shared.Doors; using Content.Shared.Doors.Components; @@ -18,6 +17,7 @@ using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Events; using Content.Shared.DoAfter; +using Content.Shared.Tools.Systems; namespace Content.Server.Doors.Systems; @@ -139,7 +139,7 @@ private void OnWeldAttempt(EntityUid uid, DoorComponent component, WeldableAttem } } - private void OnWeldChanged(EntityUid uid, DoorComponent component, WeldableChangedEvent args) + private void OnWeldChanged(EntityUid uid, DoorComponent component, ref WeldableChangedEvent args) { if (component.State == DoorState.Closed) SetState(uid, DoorState.Welded, component); @@ -276,4 +276,3 @@ protected override void CheckDoorBump(DoorComponent component, PhysicsComponent } } } - diff --git a/Content.Server/Doors/WireActions/DoorBoltLightWireAction.cs b/Content.Server/Doors/WireActions/DoorBoltLightWireAction.cs index 7b81d952f48..233ebfed3fa 100644 --- a/Content.Server/Doors/WireActions/DoorBoltLightWireAction.cs +++ b/Content.Server/Doors/WireActions/DoorBoltLightWireAction.cs @@ -6,7 +6,7 @@ namespace Content.Server.Doors; -public sealed class DoorBoltLightWireAction : ComponentWireAction +public sealed partial class DoorBoltLightWireAction : ComponentWireAction { public override Color Color { get; set; } = Color.Lime; public override string Name { get; set; } = "wire-name-bolt-light"; diff --git a/Content.Server/Doors/WireActions/DoorBoltWireAction.cs b/Content.Server/Doors/WireActions/DoorBoltWireAction.cs index af69bdea799..29b5d726a28 100644 --- a/Content.Server/Doors/WireActions/DoorBoltWireAction.cs +++ b/Content.Server/Doors/WireActions/DoorBoltWireAction.cs @@ -7,7 +7,7 @@ namespace Content.Server.Doors; -public sealed class DoorBoltWireAction : ComponentWireAction +public sealed partial class DoorBoltWireAction : ComponentWireAction { public override Color Color { get; set; } = Color.Red; public override string Name { get; set; } = "wire-name-door-bolt"; diff --git a/Content.Server/Doors/WireActions/DoorSafetyWireAction.cs b/Content.Server/Doors/WireActions/DoorSafetyWireAction.cs index 939d617de5e..9eef70b4883 100644 --- a/Content.Server/Doors/WireActions/DoorSafetyWireAction.cs +++ b/Content.Server/Doors/WireActions/DoorSafetyWireAction.cs @@ -6,7 +6,7 @@ namespace Content.Server.Doors; -public sealed class DoorSafetyWireAction : ComponentWireAction +public sealed partial class DoorSafetyWireAction : ComponentWireAction { public override Color Color { get; set; } = Color.Red; public override string Name { get; set; } = "wire-name-door-safety"; diff --git a/Content.Server/Doors/WireActions/DoorTimingWireAction.cs b/Content.Server/Doors/WireActions/DoorTimingWireAction.cs index 1f576342f00..7fde1022285 100644 --- a/Content.Server/Doors/WireActions/DoorTimingWireAction.cs +++ b/Content.Server/Doors/WireActions/DoorTimingWireAction.cs @@ -6,7 +6,7 @@ namespace Content.Server.Doors; -public sealed class DoorTimingWireAction : ComponentWireAction +public sealed partial class DoorTimingWireAction : ComponentWireAction { public override Color Color { get; set; } = Color.Orange; public override string Name { get; set; } = "wire-name-door-timer"; diff --git a/Content.Server/Dragon/Components/DragonComponent.cs b/Content.Server/Dragon/Components/DragonComponent.cs index 430b5d5fc22..f403979a007 100644 --- a/Content.Server/Dragon/Components/DragonComponent.cs +++ b/Content.Server/Dragon/Components/DragonComponent.cs @@ -1,17 +1,11 @@ -using System.Threading; -using Content.Shared.Actions; -using Content.Shared.Actions.ActionTypes; -using Content.Shared.Chemistry.Reagent; -using Content.Shared.Whitelist; using Robust.Shared.Audio; -using Robust.Shared.Containers; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.Dragon { [RegisterComponent] - public sealed class DragonComponent : Component + public sealed partial class DragonComponent : Component { /// @@ -42,11 +36,14 @@ public sealed class DragonComponent : Component /// [ViewVariables(VVAccess.ReadWrite), DataField("maxAccumulator")] public float RiftMaxAccumulator = 300f; + [DataField("spawnRiftAction", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string SpawnRiftAction = "ActionSpawnRift"; + /// /// Spawns a rift which can summon more mobs. /// - [DataField("spawnRiftAction")] - public InstantAction? SpawnRiftAction; + [DataField("spawnRiftActionEntity")] + public EntityUid? SpawnRiftActionEntity; [ViewVariables(VVAccess.ReadWrite), DataField("riftPrototype", customTypeSerializer: typeof(PrototypeIdSerializer))] public string RiftPrototype = "CarpRift"; @@ -61,8 +58,4 @@ public sealed class DragonComponent : Component Params = AudioParams.Default.WithVolume(3f), }; } - - public sealed class DragonDevourActionEvent : EntityTargetActionEvent {} - - public sealed class DragonSpawnRiftActionEvent : InstantActionEvent {} } diff --git a/Content.Server/Dragon/Components/DragonRiftComponent.cs b/Content.Server/Dragon/Components/DragonRiftComponent.cs index b5c7c79a9d9..fa49b1f1f18 100644 --- a/Content.Server/Dragon/Components/DragonRiftComponent.cs +++ b/Content.Server/Dragon/Components/DragonRiftComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.Dragon; [RegisterComponent] -public sealed class DragonRiftComponent : SharedDragonRiftComponent +public sealed partial class DragonRiftComponent : SharedDragonRiftComponent { /// /// Dragon that spawned this rift. diff --git a/Content.Server/Dragon/Components/DragonRuleComponent.cs b/Content.Server/Dragon/Components/DragonRuleComponent.cs index 8f358c31b0f..a87232bebc9 100644 --- a/Content.Server/Dragon/Components/DragonRuleComponent.cs +++ b/Content.Server/Dragon/Components/DragonRuleComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Dragon; [RegisterComponent] -public sealed class DragonRuleComponent : Component +public sealed partial class DragonRuleComponent : Component { } diff --git a/Content.Server/Dragon/DragonSystem.cs b/Content.Server/Dragon/DragonSystem.cs index e9abc266eef..f132e0041e1 100644 --- a/Content.Server/Dragon/DragonSystem.cs +++ b/Content.Server/Dragon/DragonSystem.cs @@ -1,28 +1,20 @@ -using Content.Server.Body.Systems; +using System.Numerics; using Content.Server.Chat.Systems; using Content.Server.GameTicking; using Content.Server.NPC; using Content.Server.NPC.Systems; using Content.Server.Popups; -using Content.Server.Station.Systems; using Content.Shared.Actions; -using Content.Shared.Chemistry.Components; using Content.Shared.Damage; -using Content.Shared.DoAfter; using Content.Shared.Dragon; using Content.Shared.Examine; -using Content.Shared.Humanoid; using Content.Shared.Maps; using Content.Shared.Mobs; -using Content.Shared.Mobs.Components; using Content.Shared.Movement.Systems; -using Robust.Shared.Containers; -using Robust.Shared.Player; +using Content.Shared.Sprite; using Robust.Shared.GameStates; using Robust.Shared.Map; -using Robust.Shared.Random; -using System.Numerics; -using Content.Shared.Sprite; +using Robust.Shared.Player; using Robust.Shared.Serialization.Manager; namespace Content.Server.Dragon; @@ -30,16 +22,12 @@ namespace Content.Server.Dragon; public sealed partial class DragonSystem : EntitySystem { [Dependency] private readonly IMapManager _mapManager = default!; - [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly ISerializationManager _serManager = default!; [Dependency] private readonly ITileDefinitionManager _tileDef = default!; [Dependency] private readonly ChatSystem _chat = default!; [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; - [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; - [Dependency] private readonly BloodstreamSystem _bloodstreamSystem = default!; [Dependency] private readonly MovementSpeedModifierSystem _movement = default!; - [Dependency] private readonly SharedContainerSystem _containerSystem = default!; [Dependency] private readonly SharedAudioSystem _audioSystem = default!; [Dependency] private readonly NPCSystem _npc = default!; @@ -306,10 +294,8 @@ private void Roar(DragonComponent component) private void OnStartup(EntityUid uid, DragonComponent component, ComponentStartup args) { - if (component.SpawnRiftAction != null) - _actionsSystem.AddAction(uid, component.SpawnRiftAction, null); - Roar(component); + _actionsSystem.AddAction(uid, ref component.SpawnRiftActionEntity, component.SpawnRiftAction); } } diff --git a/Content.Server/Drone/Components/DroneComponent.cs b/Content.Server/Drone/Components/DroneComponent.cs index 73c75aefd4d..df7ad2bcc8f 100644 --- a/Content.Server/Drone/Components/DroneComponent.cs +++ b/Content.Server/Drone/Components/DroneComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Drone.Components { [RegisterComponent] - public sealed class DroneComponent : Component + public sealed partial class DroneComponent : Component { public float InteractionBlockRange = 2.15f; } diff --git a/Content.Server/Drone/DroneSystem.cs b/Content.Server/Drone/DroneSystem.cs index 1cffb79ae7e..7e1199bb4d6 100644 --- a/Content.Server/Drone/DroneSystem.cs +++ b/Content.Server/Drone/DroneSystem.cs @@ -1,8 +1,6 @@ using Content.Server.Body.Systems; using Content.Server.Drone.Components; -using Content.Server.Ghost.Components; using Content.Server.Ghost.Roles.Components; -using Content.Server.Mind.Components; using Content.Server.Popups; using Content.Server.Tools.Innate; using Content.Server.UserInterface; @@ -10,18 +8,18 @@ using Content.Shared.Drone; using Content.Shared.Emoting; using Content.Shared.Examine; +using Content.Shared.Ghost; using Content.Shared.IdentityManagement; using Content.Shared.Interaction.Components; using Content.Shared.Interaction.Events; using Content.Shared.Item; +using Content.Shared.Mind.Components; using Content.Shared.Mobs; using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; using Content.Shared.Popups; using Content.Shared.Tag; using Content.Shared.Throwing; -using Robust.Server.GameObjects; -using Robust.Shared.Player; using Robust.Shared.Timing; namespace Content.Server.Drone diff --git a/Content.Server/EUI/BaseEui.cs b/Content.Server/EUI/BaseEui.cs index b569f9e87cf..4a41ad40a55 100644 --- a/Content.Server/EUI/BaseEui.cs +++ b/Content.Server/EUI/BaseEui.cs @@ -1,7 +1,6 @@ using Content.Shared.Eui; -using Robust.Server.Player; using Robust.Shared.Network; - +using Robust.Shared.Players; namespace Content.Server.EUI { @@ -23,7 +22,7 @@ public abstract class BaseEui /// /// The player that this EUI is open for. /// - public IPlayerSession Player { get; private set; } = default!; + public ICommonSession Player { get; private set; } = default!; public bool IsShutDown { get; private set; } public EuiManager Manager { get; private set; } = default!; public uint Id { get; private set; } @@ -118,7 +117,7 @@ internal void DoStateUpdate() netMgr.ServerSendMessage(msg, Player.ConnectedClient); } - internal void Initialize(EuiManager manager, IPlayerSession player, uint id) + internal void Initialize(EuiManager manager, ICommonSession player, uint id) { Manager = manager; Player = player; diff --git a/Content.Server/EUI/EuiManager.cs b/Content.Server/EUI/EuiManager.cs index ab4b8bd18be..4d997195252 100644 --- a/Content.Server/EUI/EuiManager.cs +++ b/Content.Server/EUI/EuiManager.cs @@ -2,9 +2,9 @@ using Robust.Server.Player; using Robust.Shared.Enums; using Robust.Shared.Network; +using Robust.Shared.Players; using Robust.Shared.Utility; - namespace Content.Server.EUI { public sealed class EuiManager : IPostInjectInit @@ -12,11 +12,11 @@ public sealed class EuiManager : IPostInjectInit [Dependency] private readonly IPlayerManager _players = default!; [Dependency] private readonly IServerNetManager _net = default!; - private readonly Dictionary _playerData = + private readonly Dictionary _playerData = new(); - private readonly Queue<(IPlayerSession player, uint id)> _stateUpdateQueue = - new Queue<(IPlayerSession, uint id)>(); + private readonly Queue<(ICommonSession player, uint id)> _stateUpdateQueue = + new Queue<(ICommonSession, uint id)>(); private sealed class PlayerEuiData { @@ -53,7 +53,7 @@ public void SendUpdates() } } - public void OpenEui(BaseEui eui, IPlayerSession player) + public void OpenEui(BaseEui eui, ICommonSession player) { if (eui.Id != 0) { diff --git a/Content.Server/Effects/ColorFlashEffectSystem.cs b/Content.Server/Effects/ColorFlashEffectSystem.cs index b3cc66a4412..2d291346578 100644 --- a/Content.Server/Effects/ColorFlashEffectSystem.cs +++ b/Content.Server/Effects/ColorFlashEffectSystem.cs @@ -7,6 +7,6 @@ public sealed class ColorFlashEffectSystem : SharedColorFlashEffectSystem { public override void RaiseEffect(Color color, List entities, Filter filter) { - RaiseNetworkEvent(new ColorFlashEffectEvent(color, entities), filter); + RaiseNetworkEvent(new ColorFlashEffectEvent(color, GetNetEntityList(entities)), filter); } } diff --git a/Content.Server/Electrocution/Components/ActivatedElectrifiedComponent.cs b/Content.Server/Electrocution/Components/ActivatedElectrifiedComponent.cs index 60c3cff880f..3b6822d5143 100644 --- a/Content.Server/Electrocution/Components/ActivatedElectrifiedComponent.cs +++ b/Content.Server/Electrocution/Components/ActivatedElectrifiedComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Electrocution; /// Updates every frame for short duration to check if electrifed entity is powered when activated, e.g to play animation /// [RegisterComponent] -public sealed class ActivatedElectrifiedComponent : Component +public sealed partial class ActivatedElectrifiedComponent : Component { /// /// How long electrified entity will remain active diff --git a/Content.Server/Electrocution/Components/ElectrifiedComponent.cs b/Content.Server/Electrocution/Components/ElectrifiedComponent.cs index 97a24ffe0c5..d551aa15410 100644 --- a/Content.Server/Electrocution/Components/ElectrifiedComponent.cs +++ b/Content.Server/Electrocution/Components/ElectrifiedComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Electrocution; /// Component for things that shock users on touch. /// [RegisterComponent] -public sealed class ElectrifiedComponent : Component +public sealed partial class ElectrifiedComponent : Component { [DataField("enabled")] public bool Enabled = true; diff --git a/Content.Server/Electrocution/Components/ElectrocutionComponent.cs b/Content.Server/Electrocution/Components/ElectrocutionComponent.cs index 60c752c34d6..2534544f6ce 100644 --- a/Content.Server/Electrocution/Components/ElectrocutionComponent.cs +++ b/Content.Server/Electrocution/Components/ElectrocutionComponent.cs @@ -5,7 +5,7 @@ /// [RegisterComponent] [Access(typeof(ElectrocutionSystem))] -public sealed class ElectrocutionComponent : Component +public sealed partial class ElectrocutionComponent : Component { [DataField("timeLeft")] public float TimeLeft; diff --git a/Content.Server/Electrocution/ElectrocuteCommand.cs b/Content.Server/Electrocution/ElectrocuteCommand.cs index af8b3e5a5ee..75eb64c1bb8 100644 --- a/Content.Server/Electrocution/ElectrocuteCommand.cs +++ b/Content.Server/Electrocution/ElectrocuteCommand.cs @@ -8,6 +8,8 @@ namespace Content.Server.Electrocution [AdminCommand(AdminFlags.Fun)] public sealed class ElectrocuteCommand : IConsoleCommand { + [Dependency] private readonly IEntityManager _entManager = default!; + public string Command => "electrocute"; public string Description => Loc.GetString("electrocute-command-description"); public string Help => $"{Command} "; @@ -24,15 +26,15 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - var entityManager = IoCManager.Resolve(); - - if (!EntityUid.TryParse(args[0], out var uid) || !entityManager.EntityExists(uid)) + if (!NetEntity.TryParse(args[0], out var uidNet) || + !_entManager.TryGetEntity(uidNet, out var uid) || + !_entManager.EntityExists(uid)) { shell.WriteError($"Invalid entity specified!"); return; } - if (!entityManager.EntitySysManager.GetEntitySystem().CanApplyEffect(uid, ElectrocutionStatusEffect)) + if (!_entManager.EntitySysManager.GetEntitySystem().CanApplyEffect(uid.Value, ElectrocutionStatusEffect)) { shell.WriteError(Loc.GetString("electrocute-command-entity-cannot-be-electrocuted")); return; @@ -48,8 +50,8 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) damage = 10; } - entityManager.EntitySysManager.GetEntitySystem() - .TryDoElectrocution(uid, null, damage, TimeSpan.FromSeconds(seconds), refresh: true, ignoreInsulation: true); + _entManager.EntitySysManager.GetEntitySystem() + .TryDoElectrocution(uid.Value, null, damage, TimeSpan.FromSeconds(seconds), refresh: true, ignoreInsulation: true); } } } diff --git a/Content.Server/Electrocution/ElectrocutionNode.cs b/Content.Server/Electrocution/ElectrocutionNode.cs index 3fdfebaf47d..7abcba76666 100644 --- a/Content.Server/Electrocution/ElectrocutionNode.cs +++ b/Content.Server/Electrocution/ElectrocutionNode.cs @@ -6,7 +6,7 @@ namespace Content.Server.Electrocution { [DataDefinition] - public sealed class ElectrocutionNode : Node + public sealed partial class ElectrocutionNode : Node { [DataField("cable")] public EntityUid CableEntity; diff --git a/Content.Server/Electrocution/ElectrocutionSystem.cs b/Content.Server/Electrocution/ElectrocutionSystem.cs index e013cfbe7f0..c6ce90692ff 100644 --- a/Content.Server/Electrocution/ElectrocutionSystem.cs +++ b/Content.Server/Electrocution/ElectrocutionSystem.cs @@ -51,6 +51,7 @@ public sealed class ElectrocutionSystem : SharedElectrocutionSystem [Dependency] private readonly SharedStunSystem _stun = default!; [Dependency] private readonly SharedStutteringSystem _stuttering = default!; [Dependency] private readonly TagSystem _tag = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; [ValidatePrototypeId] private const string StatusEffectKey = "Electrocution"; @@ -302,16 +303,8 @@ public bool TryDoElectrifiedAct(EntityUid uid, EntityUid targetUid, } } - /// Entity being electrocuted. - /// Source entity of the electrocution. - /// How much shock damage the entity takes. - /// How long the entity will be stunned. - /// Should time be refreshed (instead of accumilated) if the entity is already electrocuted? - /// How insulated the entity is from the shock. 0 means completely insulated, and 1 means no insulation. - /// Status effects to apply to the entity. - /// Should the electrocution bypass the Insulated component? - /// Whether the entity was stunned by the shock. - public bool TryDoElectrocution( + /// + public override bool TryDoElectrocution( EntityUid uid, EntityUid? sourceUid, int shockDamage, TimeSpan time, bool refresh, float siemensCoefficient = 1f, StatusEffectsComponent? statusEffects = null, bool ignoreInsulation = false) { @@ -358,7 +351,7 @@ private bool TryDoElectrocutionPowered( // This shows up in the power monitor. // Yes. Yes exactly. - MetaData(electrocutionEntity).EntityName = MetaData(uid).EntityName; + _metaData.SetEntityName(electrocutionEntity, MetaData(uid).EntityName); electrocutionNode.CableEntity = sourceUid; electrocutionNode.NodeName = node.Name; diff --git a/Content.Server/Electrocution/RandomInsulationComponent.cs b/Content.Server/Electrocution/RandomInsulationComponent.cs index 8d697979a1b..9b0511e5935 100644 --- a/Content.Server/Electrocution/RandomInsulationComponent.cs +++ b/Content.Server/Electrocution/RandomInsulationComponent.cs @@ -1,9 +1,9 @@ namespace Content.Server.Electrocution { [RegisterComponent] - public sealed class RandomInsulationComponent : Component + public sealed partial class RandomInsulationComponent : Component { [DataField("list")] - public readonly float[] List = { 0f }; + public float[] List = { 0f }; } } diff --git a/Content.Server/Emoting/Components/BodyEmotesComponent.cs b/Content.Server/Emoting/Components/BodyEmotesComponent.cs index dba4cb48066..3fd71def0d0 100644 --- a/Content.Server/Emoting/Components/BodyEmotesComponent.cs +++ b/Content.Server/Emoting/Components/BodyEmotesComponent.cs @@ -9,7 +9,7 @@ namespace Content.Server.Emoting.Components; /// [RegisterComponent] [Access(typeof(BodyEmotesSystem))] -public sealed class BodyEmotesComponent : Component +public sealed partial class BodyEmotesComponent : Component { /// /// Emote sounds prototype id for body emotes. diff --git a/Content.Server/Emp/EmpOnTriggerComponent.cs b/Content.Server/Emp/EmpOnTriggerComponent.cs index b64c34cecf2..fac509ea9f9 100644 --- a/Content.Server/Emp/EmpOnTriggerComponent.cs +++ b/Content.Server/Emp/EmpOnTriggerComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.Emp; /// [RegisterComponent] [Access(typeof(EmpSystem))] -public sealed class EmpOnTriggerComponent : Component +public sealed partial class EmpOnTriggerComponent : Component { [DataField("range"), ViewVariables(VVAccess.ReadWrite)] public float Range = 1.0f; diff --git a/Content.Server/Emp/EmpSystem.cs b/Content.Server/Emp/EmpSystem.cs index cb984897c8b..4f3f41317e7 100644 --- a/Content.Server/Emp/EmpSystem.cs +++ b/Content.Server/Emp/EmpSystem.cs @@ -34,6 +34,11 @@ public void EmpPulse(MapCoordinates coordinates, float range, float energyConsum { foreach (var uid in _lookup.GetEntitiesInRange(coordinates, range)) { + var attemptEv = new EmpAttemptEvent(); + RaiseLocalEvent(uid, attemptEv); + if (attemptEv.Cancelled) + continue; + var ev = new EmpPulseEvent(energyConsumption, false, false); RaiseLocalEvent(uid, ref ev); if (ev.Affected) @@ -108,6 +113,13 @@ private void OnThrusterToggle(EntityUid uid, EmpDisabledComponent component, ref } } +/// +/// Raised on an entity before . Cancel this to prevent the emp event being raised. +/// +public sealed partial class EmpAttemptEvent : CancellableEntityEventArgs +{ +} + [ByRefEvent] public record struct EmpPulseEvent(float EnergyConsumption, bool Affected, bool Disabled); diff --git a/Content.Server/Engineering/Components/DisassembleOnAltVerbComponent.cs b/Content.Server/Engineering/Components/DisassembleOnAltVerbComponent.cs index 7bd620963ca..6e4123e04a9 100644 --- a/Content.Server/Engineering/Components/DisassembleOnAltVerbComponent.cs +++ b/Content.Server/Engineering/Components/DisassembleOnAltVerbComponent.cs @@ -5,10 +5,10 @@ namespace Content.Server.Engineering.Components { [RegisterComponent] - public sealed class DisassembleOnAltVerbComponent : Component + public sealed partial class DisassembleOnAltVerbComponent : Component { [DataField("prototype", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string? Prototype { get; } + public string? Prototype { get; private set; } [DataField("doAfter")] public float DoAfterTime = 0; diff --git a/Content.Server/Engineering/Components/SpawnAfterInteractComponent.cs b/Content.Server/Engineering/Components/SpawnAfterInteractComponent.cs index 447bbd5cd34..839932b034c 100644 --- a/Content.Server/Engineering/Components/SpawnAfterInteractComponent.cs +++ b/Content.Server/Engineering/Components/SpawnAfterInteractComponent.cs @@ -4,13 +4,13 @@ namespace Content.Server.Engineering.Components { [RegisterComponent] - public sealed class SpawnAfterInteractComponent : Component + public sealed partial class SpawnAfterInteractComponent : Component { [DataField("prototype", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string? Prototype { get; } + public string? Prototype { get; private set; } [DataField("ignoreDistance")] - public bool IgnoreDistance { get; } + public bool IgnoreDistance { get; private set; } [DataField("doAfter")] public float DoAfterTime = 0; diff --git a/Content.Server/Engineering/EntitySystems/DisassembleOnAltVerbSystem.cs b/Content.Server/Engineering/EntitySystems/DisassembleOnAltVerbSystem.cs index 91bf49b7ec9..3085af0cdce 100644 --- a/Content.Server/Engineering/EntitySystems/DisassembleOnAltVerbSystem.cs +++ b/Content.Server/Engineering/EntitySystems/DisassembleOnAltVerbSystem.cs @@ -42,7 +42,7 @@ public async void AttemptDisassemble(EntityUid uid, EntityUid user, EntityUid ta if (component.DoAfterTime > 0 && TryGet(out var doAfterSystem)) { - var doAfterArgs = new DoAfterArgs(user, component.DoAfterTime, new AwaitedDoAfterEvent(), null) + var doAfterArgs = new DoAfterArgs(EntityManager, user, component.DoAfterTime, new AwaitedDoAfterEvent(), null) { BreakOnUserMove = true, }; diff --git a/Content.Server/Engineering/EntitySystems/SpawnAfterInteractSystem.cs b/Content.Server/Engineering/EntitySystems/SpawnAfterInteractSystem.cs index 696db2ec3af..4893552c2c0 100644 --- a/Content.Server/Engineering/EntitySystems/SpawnAfterInteractSystem.cs +++ b/Content.Server/Engineering/EntitySystems/SpawnAfterInteractSystem.cs @@ -45,7 +45,7 @@ bool IsTileClear() if (component.DoAfterTime > 0) { - var doAfterArgs = new DoAfterArgs(args.User, component.DoAfterTime, new AwaitedDoAfterEvent(), null) + var doAfterArgs = new DoAfterArgs(EntityManager, args.User, component.DoAfterTime, new AwaitedDoAfterEvent(), null) { BreakOnUserMove = true, }; @@ -58,7 +58,7 @@ bool IsTileClear() if (component.Deleted || !IsTileClear()) return; - if (EntityManager.TryGetComponent(component.Owner, out var stackComp) + if (EntityManager.TryGetComponent(component.Owner, out StackComponent? stackComp) && component.RemoveOnInteract && !_stackSystem.Use(uid, 1, stackComp)) { return; diff --git a/Content.Server/Ensnaring/EnsnareableSystem.Ensnaring.cs b/Content.Server/Ensnaring/EnsnareableSystem.Ensnaring.cs index 1359e1d5505..bb1690c9350 100644 --- a/Content.Server/Ensnaring/EnsnareableSystem.Ensnaring.cs +++ b/Content.Server/Ensnaring/EnsnareableSystem.Ensnaring.cs @@ -98,7 +98,7 @@ public void TryFree(EntityUid target, EntityUid user, EntityUid ensnare, Ensnar var freeTime = user == target ? component.BreakoutTime : component.FreeTime; var breakOnMove = !component.CanMoveBreakout; - var doAfterEventArgs = new DoAfterArgs(user, freeTime, new EnsnareableDoAfterEvent(), target, target: target, used: ensnare) + var doAfterEventArgs = new DoAfterArgs(EntityManager, user, freeTime, new EnsnareableDoAfterEvent(), target, target: target, used: ensnare) { BreakOnUserMove = breakOnMove, BreakOnTargetMove = breakOnMove, diff --git a/Content.Server/Entry/IgnoredComponents.cs b/Content.Server/Entry/IgnoredComponents.cs index 3294b430307..e1d744da2da 100644 --- a/Content.Server/Entry/IgnoredComponents.cs +++ b/Content.Server/Entry/IgnoredComponents.cs @@ -7,7 +7,6 @@ public static class IgnoredComponents "ConstructionGhost", "IconSmooth", "InteractionOutline", - "ItemStatus", "Marker", "GuidebookControlsTest", "GuideHelp", diff --git a/Content.Server/Examine/ExamineSystem.cs b/Content.Server/Examine/ExamineSystem.cs index d50f0cafdcd..98aa806885d 100644 --- a/Content.Server/Examine/ExamineSystem.cs +++ b/Content.Server/Examine/ExamineSystem.cs @@ -38,7 +38,7 @@ public override void SendExamineTooltip(EntityUid player, EntityUid target, Form verbs = _verbSystem.GetLocalVerbs(target, player, typeof(ExamineVerb)); var ev = new ExamineSystemMessages.ExamineInfoResponseMessage( - target, 0, message, verbs?.ToList(), centerAtCursor + GetNetEntity(target), 0, message, verbs?.ToList(), centerAtCursor ); RaiseNetworkEvent(ev, session.ConnectedClient); @@ -49,29 +49,30 @@ private void ExamineInfoRequest(ExamineSystemMessages.RequestExamineInfoMessage var player = (IPlayerSession) eventArgs.SenderSession; var session = eventArgs.SenderSession; var channel = player.ConnectedClient; + var entity = GetEntity(request.NetEntity); if (session.AttachedEntity is not {Valid: true} playerEnt - || !EntityManager.EntityExists(request.EntityUid)) + || !EntityManager.EntityExists(entity)) { RaiseNetworkEvent(new ExamineSystemMessages.ExamineInfoResponseMessage( - request.EntityUid, request.Id, _entityNotFoundMessage), channel); + request.NetEntity, request.Id, _entityNotFoundMessage), channel); return; } - if (!CanExamine(playerEnt, request.EntityUid)) + if (!CanExamine(playerEnt, entity)) { RaiseNetworkEvent(new ExamineSystemMessages.ExamineInfoResponseMessage( - request.EntityUid, request.Id, _entityOutOfRangeMessage, knowTarget: false), channel); + request.NetEntity, request.Id, _entityOutOfRangeMessage, knowTarget: false), channel); return; } SortedSet? verbs = null; if (request.GetVerbs) - verbs = _verbSystem.GetLocalVerbs(request.EntityUid, playerEnt, typeof(ExamineVerb)); + verbs = _verbSystem.GetLocalVerbs(entity, playerEnt, typeof(ExamineVerb)); - var text = GetExamineText(request.EntityUid, player.AttachedEntity); + var text = GetExamineText(entity, player.AttachedEntity); RaiseNetworkEvent(new ExamineSystemMessages.ExamineInfoResponseMessage( - request.EntityUid, request.Id, text, verbs?.ToList()), channel); + request.NetEntity, request.Id, text, verbs?.ToList()), channel); } } } diff --git a/Content.Server/Explosion/Components/ActiveTimerTriggerComponent.cs b/Content.Server/Explosion/Components/ActiveTimerTriggerComponent.cs index 69115f31301..d4f57b71370 100644 --- a/Content.Server/Explosion/Components/ActiveTimerTriggerComponent.cs +++ b/Content.Server/Explosion/Components/ActiveTimerTriggerComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Explosion.Components; /// Component for tracking active trigger timers. A timers can activated by some other component, e.g. . /// [RegisterComponent] -public sealed class ActiveTimerTriggerComponent : Component +public sealed partial class ActiveTimerTriggerComponent : Component { [DataField("timeRemaining")] public float TimeRemaining; diff --git a/Content.Server/Explosion/Components/ActiveTriggerOnTimedCollideComponent.cs b/Content.Server/Explosion/Components/ActiveTriggerOnTimedCollideComponent.cs index 51530d1b220..9d8073413c1 100644 --- a/Content.Server/Explosion/Components/ActiveTriggerOnTimedCollideComponent.cs +++ b/Content.Server/Explosion/Components/ActiveTriggerOnTimedCollideComponent.cs @@ -1,4 +1,4 @@ namespace Content.Server.Explosion.Components; [RegisterComponent] -public sealed class ActiveTriggerOnTimedCollideComponent : Component { } +public sealed partial class ActiveTriggerOnTimedCollideComponent : Component { } diff --git a/Content.Server/Explosion/Components/AutomatedTimerComponent.cs b/Content.Server/Explosion/Components/AutomatedTimerComponent.cs new file mode 100644 index 00000000000..7019c08d43d --- /dev/null +++ b/Content.Server/Explosion/Components/AutomatedTimerComponent.cs @@ -0,0 +1,9 @@ +namespace Content.Server.Explosion.Components; + +/// +/// Disallows starting the timer by hand, must be stuck or triggered by a system. +/// +[RegisterComponent] +public sealed partial class AutomatedTimerComponent : Component +{ +} diff --git a/Content.Server/Explosion/Components/ClusterGrenadeComponent.cs b/Content.Server/Explosion/Components/ClusterGrenadeComponent.cs index e739f4506c2..e2e3ca27333 100644 --- a/Content.Server/Explosion/Components/ClusterGrenadeComponent.cs +++ b/Content.Server/Explosion/Components/ClusterGrenadeComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Explosion.Components { [RegisterComponent, Access(typeof(ClusterGrenadeSystem))] - public sealed class ClusterGrenadeComponent : Component + public sealed partial class ClusterGrenadeComponent : Component { public Container GrenadesContainer = default!; diff --git a/Content.Server/Explosion/Components/ExplosionResistanceComponent.cs b/Content.Server/Explosion/Components/ExplosionResistanceComponent.cs index ed30479690f..a65764c4133 100644 --- a/Content.Server/Explosion/Components/ExplosionResistanceComponent.cs +++ b/Content.Server/Explosion/Components/ExplosionResistanceComponent.cs @@ -13,7 +13,7 @@ namespace Content.Server.Explosion.Components; /// [RegisterComponent] [Access(typeof(ExplosionSystem))] -public sealed class ExplosionResistanceComponent : Component +public sealed partial class ExplosionResistanceComponent : Component { /// /// The explosive resistance coefficient, This fraction is multiplied into the total resistance. diff --git a/Content.Server/Explosion/Components/ExplosiveComponent.cs b/Content.Server/Explosion/Components/ExplosiveComponent.cs index 88213d61e55..04a08955a35 100644 --- a/Content.Server/Explosion/Components/ExplosiveComponent.cs +++ b/Content.Server/Explosion/Components/ExplosiveComponent.cs @@ -13,7 +13,7 @@ namespace Content.Server.Explosion.Components; /// component still determines the explosion type and other properties. /// [RegisterComponent] -public sealed class ExplosiveComponent : Component +public sealed partial class ExplosiveComponent : Component { /// diff --git a/Content.Server/Explosion/Components/OnTrigger/AnchorOnTriggerComponent.cs b/Content.Server/Explosion/Components/OnTrigger/AnchorOnTriggerComponent.cs index 41c58c171f4..d83b57c188c 100644 --- a/Content.Server/Explosion/Components/OnTrigger/AnchorOnTriggerComponent.cs +++ b/Content.Server/Explosion/Components/OnTrigger/AnchorOnTriggerComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Explosion.Components; /// Will anchor the attached entity upon a . /// [RegisterComponent] -public sealed class AnchorOnTriggerComponent : Component +public sealed partial class AnchorOnTriggerComponent : Component { [DataField("removeOnTrigger")] public bool RemoveOnTrigger = true; diff --git a/Content.Server/Explosion/Components/OnTrigger/DeleteOnTriggerComponent.cs b/Content.Server/Explosion/Components/OnTrigger/DeleteOnTriggerComponent.cs index c0f19d90481..9846cad84ba 100644 --- a/Content.Server/Explosion/Components/OnTrigger/DeleteOnTriggerComponent.cs +++ b/Content.Server/Explosion/Components/OnTrigger/DeleteOnTriggerComponent.cs @@ -6,6 +6,6 @@ namespace Content.Server.Explosion.Components; /// Will delete the attached entity upon a . /// [RegisterComponent] -public sealed class DeleteOnTriggerComponent : Component +public sealed partial class DeleteOnTriggerComponent : Component { } diff --git a/Content.Server/Explosion/Components/OnTrigger/ExplodeOnTriggerComponent.cs b/Content.Server/Explosion/Components/OnTrigger/ExplodeOnTriggerComponent.cs index a6f2a324ae5..326ae6dab57 100644 --- a/Content.Server/Explosion/Components/OnTrigger/ExplodeOnTriggerComponent.cs +++ b/Content.Server/Explosion/Components/OnTrigger/ExplodeOnTriggerComponent.cs @@ -4,6 +4,6 @@ namespace Content.Server.Explosion.Components; /// Explode using the entity's if Triggered. /// [RegisterComponent] -public sealed class ExplodeOnTriggerComponent : Component +public sealed partial class ExplodeOnTriggerComponent : Component { } diff --git a/Content.Server/Explosion/Components/OnTrigger/GibOnTriggerComponent.cs b/Content.Server/Explosion/Components/OnTrigger/GibOnTriggerComponent.cs index 554b5b25d0b..da584676593 100644 --- a/Content.Server/Explosion/Components/OnTrigger/GibOnTriggerComponent.cs +++ b/Content.Server/Explosion/Components/OnTrigger/GibOnTriggerComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.Explosion.Components; /// Also in case of an implant using this, gibs the implant user instead. /// [RegisterComponent] -public sealed class GibOnTriggerComponent : Component +public sealed partial class GibOnTriggerComponent : Component { /// /// Should gibbing also delete the owners items? diff --git a/Content.Server/Explosion/Components/OnTrigger/SoundOnTriggerComponent.cs b/Content.Server/Explosion/Components/OnTrigger/SoundOnTriggerComponent.cs index 0df3d587310..7f9f16a2274 100644 --- a/Content.Server/Explosion/Components/OnTrigger/SoundOnTriggerComponent.cs +++ b/Content.Server/Explosion/Components/OnTrigger/SoundOnTriggerComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Explosion.Components; /// Will play sound from the attached entity upon a . /// [RegisterComponent] -public sealed class SoundOnTriggerComponent : Component +public sealed partial class SoundOnTriggerComponent : Component { [DataField("removeOnTrigger")] public bool RemoveOnTrigger = true; diff --git a/Content.Server/Explosion/Components/OnTrigger/TwoStageTriggerComponent.cs b/Content.Server/Explosion/Components/OnTrigger/TwoStageTriggerComponent.cs index 90cc5e3e3bb..357286b192e 100644 --- a/Content.Server/Explosion/Components/OnTrigger/TwoStageTriggerComponent.cs +++ b/Content.Server/Explosion/Components/OnTrigger/TwoStageTriggerComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Explosion.Components.OnTrigger; /// After being triggered applies the specified components and runs triggers again. /// [RegisterComponent] -public sealed class TwoStageTriggerComponent : Component +public sealed partial class TwoStageTriggerComponent : Component { /// /// How long it takes for the second stage to be triggered. @@ -19,12 +19,15 @@ public sealed class TwoStageTriggerComponent : Component /// /// This list of components that will be added for the second trigger. /// - [ViewVariables(VVAccess.ReadOnly)] [DataField("components", required: true)] public ComponentRegistry SecondStageComponents = new(); [DataField("nextTriggerTime", customTypeSerializer: typeof(TimeOffsetSerializer))] public TimeSpan? NextTriggerTime; - [ViewVariables(VVAccess.ReadWrite), DataField("triggered")] public bool Triggered = false; + [DataField("triggered")] + public bool Triggered = false; + + [DataField("ComponentsIsLoaded")] + public bool ComponentsIsLoaded = false; } diff --git a/Content.Server/Explosion/Components/OnUseTimerTriggerComponent.cs b/Content.Server/Explosion/Components/OnUseTimerTriggerComponent.cs index f4941350ddd..008bbbe284b 100644 --- a/Content.Server/Explosion/Components/OnUseTimerTriggerComponent.cs +++ b/Content.Server/Explosion/Components/OnUseTimerTriggerComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Explosion.Components { [RegisterComponent] - public sealed class OnUseTimerTriggerComponent : Component + public sealed partial class OnUseTimerTriggerComponent : Component { [DataField("delay")] public float Delay = 1f; diff --git a/Content.Server/Explosion/Components/SpawnOnTriggerComponent.cs b/Content.Server/Explosion/Components/SpawnOnTriggerComponent.cs index 0821d30881d..a8b36fbd848 100644 --- a/Content.Server/Explosion/Components/SpawnOnTriggerComponent.cs +++ b/Content.Server/Explosion/Components/SpawnOnTriggerComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.Explosion.Components; [RegisterComponent, Access(typeof(TriggerSystem))] -public sealed class SpawnOnTriggerComponent : Component +public sealed partial class SpawnOnTriggerComponent : Component { [ViewVariables(VVAccess.ReadWrite), DataField("proto", required: true, customTypeSerializer:typeof(PrototypeIdSerializer))] public string Proto = string.Empty; diff --git a/Content.Server/Explosion/Components/TriggerOnActivateComponent.cs b/Content.Server/Explosion/Components/TriggerOnActivateComponent.cs index 549ab62f8f8..1531c7425ea 100644 --- a/Content.Server/Explosion/Components/TriggerOnActivateComponent.cs +++ b/Content.Server/Explosion/Components/TriggerOnActivateComponent.cs @@ -4,4 +4,4 @@ /// Triggers on click. /// [RegisterComponent] -public sealed class TriggerOnActivateComponent : Component { } +public sealed partial class TriggerOnActivateComponent : Component { } diff --git a/Content.Server/Explosion/Components/TriggerOnCollideComponent.cs b/Content.Server/Explosion/Components/TriggerOnCollideComponent.cs index b35a3ebb6a4..950bd3e462b 100644 --- a/Content.Server/Explosion/Components/TriggerOnCollideComponent.cs +++ b/Content.Server/Explosion/Components/TriggerOnCollideComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Explosion.Components { [RegisterComponent] - public sealed class TriggerOnCollideComponent : Component + public sealed partial class TriggerOnCollideComponent : Component { [DataField("fixtureID", required: true)] public string FixtureID = String.Empty; diff --git a/Content.Server/Explosion/Components/TriggerOnMobstateChangeComponent.cs b/Content.Server/Explosion/Components/TriggerOnMobstateChangeComponent.cs index e5d8c6c9bf7..a6cdda247c3 100644 --- a/Content.Server/Explosion/Components/TriggerOnMobstateChangeComponent.cs +++ b/Content.Server/Explosion/Components/TriggerOnMobstateChangeComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Explosion.Components; /// Use where you want something to trigger on mobstate change /// [RegisterComponent] -public sealed class TriggerOnMobstateChangeComponent : Component +public sealed partial class TriggerOnMobstateChangeComponent : Component { /// /// What state should trigger this? diff --git a/Content.Server/Explosion/Components/TriggerOnProximityComponent.cs b/Content.Server/Explosion/Components/TriggerOnProximityComponent.cs index 720aec0a02c..cfa1042245b 100644 --- a/Content.Server/Explosion/Components/TriggerOnProximityComponent.cs +++ b/Content.Server/Explosion/Components/TriggerOnProximityComponent.cs @@ -13,7 +13,7 @@ namespace Content.Server.Explosion.Components /// Raises a whenever an entity collides with a fixture attached to the owner of this component. /// [RegisterComponent] - public sealed class TriggerOnProximityComponent : SharedTriggerOnProximityComponent + public sealed partial class TriggerOnProximityComponent : SharedTriggerOnProximityComponent { public const string FixtureID = "trigger-on-proximity-fixture"; @@ -85,6 +85,6 @@ public sealed class TriggerOnProximityComponent : SharedTriggerOnProximityCompon /// [ViewVariables] [DataField("layer", customTypeSerializer: typeof(FlagSerializer))] - public readonly int Layer = (int) (CollisionGroup.MidImpassable | CollisionGroup.LowImpassable | CollisionGroup.HighImpassable); + public int Layer = (int) (CollisionGroup.MidImpassable | CollisionGroup.LowImpassable | CollisionGroup.HighImpassable); } } diff --git a/Content.Server/Explosion/Components/TriggerOnSignalComponent.cs b/Content.Server/Explosion/Components/TriggerOnSignalComponent.cs index ed53c2c3f16..fb7495612c7 100644 --- a/Content.Server/Explosion/Components/TriggerOnSignalComponent.cs +++ b/Content.Server/Explosion/Components/TriggerOnSignalComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Explosion.Components /// Sends a trigger when signal is received. /// [RegisterComponent] - public sealed class TriggerOnSignalComponent : Component + public sealed partial class TriggerOnSignalComponent : Component { [DataField("port", customTypeSerializer: typeof(PrototypeIdSerializer))] public string Port = "Trigger"; diff --git a/Content.Server/Explosion/Components/TriggerOnSlipComponent.cs b/Content.Server/Explosion/Components/TriggerOnSlipComponent.cs index da9d30240cb..16632b9b72b 100644 --- a/Content.Server/Explosion/Components/TriggerOnSlipComponent.cs +++ b/Content.Server/Explosion/Components/TriggerOnSlipComponent.cs @@ -1,6 +1,6 @@ namespace Content.Server.Explosion.Components; [RegisterComponent] -public sealed class TriggerOnSlipComponent : Component +public sealed partial class TriggerOnSlipComponent : Component { } diff --git a/Content.Server/Explosion/Components/TriggerOnStepTriggerComponent.cs b/Content.Server/Explosion/Components/TriggerOnStepTriggerComponent.cs index 9539e78768a..49e99ff7858 100644 --- a/Content.Server/Explosion/Components/TriggerOnStepTriggerComponent.cs +++ b/Content.Server/Explosion/Components/TriggerOnStepTriggerComponent.cs @@ -5,6 +5,6 @@ /// Not done by default, since it's not useful for everything and might cause weird behavior. But it is useful for a lot of stuff like mousetraps. /// [RegisterComponent] -public sealed class TriggerOnStepTriggerComponent : Component +public sealed partial class TriggerOnStepTriggerComponent : Component { } diff --git a/Content.Server/Explosion/Components/TriggerOnTimedCollideComponent.cs b/Content.Server/Explosion/Components/TriggerOnTimedCollideComponent.cs index 892ce33e49b..d53bcbcc5db 100644 --- a/Content.Server/Explosion/Components/TriggerOnTimedCollideComponent.cs +++ b/Content.Server/Explosion/Components/TriggerOnTimedCollideComponent.cs @@ -4,7 +4,7 @@ /// Triggers when the entity is overlapped for the specified duration. /// [RegisterComponent] -public sealed class TriggerOnTimedCollideComponent : Component +public sealed partial class TriggerOnTimedCollideComponent : Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("threshold")] diff --git a/Content.Server/Explosion/Components/TriggerOnVoiceComponent.cs b/Content.Server/Explosion/Components/TriggerOnVoiceComponent.cs index 1fa28f0f115..7d07f496d04 100644 --- a/Content.Server/Explosion/Components/TriggerOnVoiceComponent.cs +++ b/Content.Server/Explosion/Components/TriggerOnVoiceComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Explosion.Components /// Sends a trigger when the keyphrase is heard /// [RegisterComponent] - public sealed class TriggerOnVoiceComponent : Component + public sealed partial class TriggerOnVoiceComponent : Component { public bool IsListening => IsRecording || !string.IsNullOrWhiteSpace(KeyPhrase); diff --git a/Content.Server/Explosion/Components/TriggerWhenEmptyComponent.cs b/Content.Server/Explosion/Components/TriggerWhenEmptyComponent.cs index 71edd42646c..ad39b9c5153 100644 --- a/Content.Server/Explosion/Components/TriggerWhenEmptyComponent.cs +++ b/Content.Server/Explosion/Components/TriggerWhenEmptyComponent.cs @@ -4,6 +4,6 @@ namespace Content.Server.Explosion.Components; /// Triggers a gun when attempting to shoot while it's empty /// [RegisterComponent] -public sealed class TriggerWhenEmptyComponent : Component +public sealed partial class TriggerWhenEmptyComponent : Component { } diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs index 8e9cb6651fc..e9efe639f22 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs @@ -1,13 +1,12 @@ using System.Linq; using System.Numerics; using Content.Server.Explosion.Components; -using Content.Server.Mind.Components; using Content.Shared.CCVar; using Content.Shared.Damage; using Content.Shared.Database; using Content.Shared.Explosion; -using Content.Shared.FixedPoint; using Content.Shared.Maps; +using Content.Shared.Mind.Components; using Content.Shared.Physics; using Content.Shared.Projectiles; using Content.Shared.Spawners.Components; diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.TileFill.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.TileFill.cs index fc16c9daa4a..65ca6e782ca 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.TileFill.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.TileFill.cs @@ -331,12 +331,12 @@ public sealed partial class ExplosionSystem : EntitySystem var (area, iterationIntensity, spaceData, gridData, spaceMatrix) = results.Value; - Logger.Info($"Generated explosion preview with {area} tiles in {stopwatch.Elapsed.TotalMilliseconds}ms"); + Log.Info($"Generated explosion preview with {area} tiles in {stopwatch.Elapsed.TotalMilliseconds}ms"); - Dictionary>> tileLists = new(); + Dictionary>> tileLists = new(); foreach (var (grid, data) in gridData) { - tileLists.Add(grid, data.TileLists); + tileLists.Add(GetNetEntity(grid), data.TileLists); } return new ExplosionVisualsState( diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Visuals.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Visuals.cs index 5d3adff1c23..08374d73924 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Visuals.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Visuals.cs @@ -15,12 +15,18 @@ public void InitVisuals() private void OnGetState(EntityUid uid, ExplosionVisualsComponent component, ref ComponentGetState args) { + Dictionary>> tileLists = new(); + foreach (var (grid, data) in component.Tiles) + { + tileLists.Add(GetNetEntity(grid), data); + } + args.State = new ExplosionVisualsState( component.Epicenter, component.ExplosionType, component.Intensity, component.SpaceTiles, - component.Tiles, + tileLists, component.SpaceMatrix, component.SpaceTileSize); } diff --git a/Content.Server/Explosion/EntitySystems/TriggerSystem.OnUse.cs b/Content.Server/Explosion/EntitySystems/TriggerSystem.OnUse.cs index b2ef93b74d4..1a3323b1ce2 100644 --- a/Content.Server/Explosion/EntitySystems/TriggerSystem.OnUse.cs +++ b/Content.Server/Explosion/EntitySystems/TriggerSystem.OnUse.cs @@ -140,7 +140,7 @@ private void ToggleStartOnStick(EntityUid grenade, EntityUid user, OnUseTimerTri private void OnTimerUse(EntityUid uid, OnUseTimerTriggerComponent component, UseInHandEvent args) { - if (args.Handled) + if (args.Handled || HasComp(uid)) return; HandleTimerTrigger( diff --git a/Content.Server/Explosion/EntitySystems/TriggerSystem.Proximity.cs b/Content.Server/Explosion/EntitySystems/TriggerSystem.Proximity.cs index 01d8ea47165..d3d97a851e6 100644 --- a/Content.Server/Explosion/EntitySystems/TriggerSystem.Proximity.cs +++ b/Content.Server/Explosion/EntitySystems/TriggerSystem.Proximity.cs @@ -61,6 +61,7 @@ private void OnMapInit(EntityUid uid, TriggerOnProximityComponent component, Map component.Shape, TriggerOnProximityComponent.FixtureID, hard: false, + body: body, collisionLayer: component.Layer); } @@ -72,7 +73,7 @@ private void OnUnpaused(EntityUid uid, TriggerOnProximityComponent component, re private void OnProximityStartCollide(EntityUid uid, TriggerOnProximityComponent component, ref StartCollideEvent args) { - if (args.OurFixture.ID != TriggerOnProximityComponent.FixtureID) + if (args.OurFixtureId != TriggerOnProximityComponent.FixtureID) return; component.Colliding[args.OtherEntity] = args.OtherBody; @@ -80,7 +81,7 @@ private void OnProximityStartCollide(EntityUid uid, TriggerOnProximityComponent private static void OnProximityEndCollide(EntityUid uid, TriggerOnProximityComponent component, ref EndCollideEvent args) { - if (args.OurFixture.ID != TriggerOnProximityComponent.FixtureID) + if (args.OurFixtureId != TriggerOnProximityComponent.FixtureID) return; component.Colliding.Remove(args.OtherEntity); diff --git a/Content.Server/Explosion/EntitySystems/TriggerSystem.cs b/Content.Server/Explosion/EntitySystems/TriggerSystem.cs index 5c0fdea7b62..427edf21e31 100644 --- a/Content.Server/Explosion/EntitySystems/TriggerSystem.cs +++ b/Content.Server/Explosion/EntitySystems/TriggerSystem.cs @@ -107,7 +107,7 @@ private void OnAnchorTrigger(EntityUid uid, AnchorOnTriggerComponent component, _transformSystem.AnchorEntity(uid, xform); - if(component.RemoveOnTrigger) + if (component.RemoveOnTrigger) RemCompDeferred(uid); } @@ -184,13 +184,13 @@ private void HandleRattleTrigger(EntityUid uid, RattleComponent component, Trigg private void OnTriggerCollide(EntityUid uid, TriggerOnCollideComponent component, ref StartCollideEvent args) { - if (args.OurFixture.ID == component.FixtureID && (!component.IgnoreOtherNonHard || args.OtherFixture.Hard)) - Trigger(component.Owner); + if (args.OurFixtureId == component.FixtureID && (!component.IgnoreOtherNonHard || args.OtherFixture.Hard)) + Trigger(uid); } private void OnActivate(EntityUid uid, TriggerOnActivateComponent component, ActivateInWorldEvent args) { - Trigger(component.Owner, args.User); + Trigger(uid, args.User); args.Handled = true; } @@ -236,7 +236,7 @@ public void HandleTimerTrigger(EntityUid uid, EntityUid? user, float delay , flo if (user != null) { // Check if entity is bomb/mod. grenade/etc - if (_container.TryGetContainer(uid, "payload", out IContainer? container) && + if (_container.TryGetContainer(uid, "payload", out BaseContainer? container) && container.ContainedEntities.Count > 0 && TryComp(container.ContainedEntities[0], out ChemicalPayloadComponent? chemicalPayloadComponent)) { diff --git a/Content.Server/Explosion/EntitySystems/TwoStageTriggerSystem.cs b/Content.Server/Explosion/EntitySystems/TwoStageTriggerSystem.cs index 03837236b45..a8c48f21d6c 100644 --- a/Content.Server/Explosion/EntitySystems/TwoStageTriggerSystem.cs +++ b/Content.Server/Explosion/EntitySystems/TwoStageTriggerSystem.cs @@ -33,7 +33,7 @@ private void OnTrigger(EntityUid uid, TwoStageTriggerComponent component, Trigge component.NextTriggerTime = _timing.CurTime + component.TriggerDelay; } - public void LoadComponents(EntityUid uid, TwoStageTriggerComponent component) + private void LoadComponents(EntityUid uid, TwoStageTriggerComponent component) { foreach (var (name, entry) in component.SecondStageComponents) { @@ -47,6 +47,7 @@ public void LoadComponents(EntityUid uid, TwoStageTriggerComponent component) _serializationManager.CopyTo(entry.Component, ref temp); EntityManager.AddComponent(uid, comp); } + component.ComponentsIsLoaded = true; } public override void Update(float frameTime) @@ -54,17 +55,18 @@ public override void Update(float frameTime) base.Update(frameTime); var enumerator = EntityQueryEnumerator(); - while (enumerator.MoveNext(out var uid, out var component)) { - if (component.NextTriggerTime == null) + if (!component.Triggered) continue; + if (!component.ComponentsIsLoaded) + LoadComponents(uid, component); + if (_timing.CurTime < component.NextTriggerTime) continue; component.NextTriggerTime = null; - LoadComponents(uid, component); _triggerSystem.Trigger(uid); } } diff --git a/Content.Server/Extinguisher/FireExtinguisherComponent.cs b/Content.Server/Extinguisher/FireExtinguisherComponent.cs index e9bc5d00ce9..fe10b4a574a 100644 --- a/Content.Server/Extinguisher/FireExtinguisherComponent.cs +++ b/Content.Server/Extinguisher/FireExtinguisherComponent.cs @@ -5,6 +5,6 @@ namespace Content.Server.Extinguisher; [NetworkedComponent, RegisterComponent] [Access(typeof(FireExtinguisherSystem))] -public sealed class FireExtinguisherComponent : SharedFireExtinguisherComponent +public sealed partial class FireExtinguisherComponent : SharedFireExtinguisherComponent { } diff --git a/Content.Server/Eye/Blinding/ActivatableUIRequiresVisionComponent.cs b/Content.Server/Eye/Blinding/ActivatableUIRequiresVisionComponent.cs index 8f8c7f0fb0c..725b871b16d 100644 --- a/Content.Server/Eye/Blinding/ActivatableUIRequiresVisionComponent.cs +++ b/Content.Server/Eye/Blinding/ActivatableUIRequiresVisionComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Eye.Blinding { [RegisterComponent] - public sealed class ActivatableUIRequiresVisionComponent : Component + public sealed partial class ActivatableUIRequiresVisionComponent : Component { } } diff --git a/Content.Server/Eye/Blinding/ActivatableUIRequiresVisionSystem.cs b/Content.Server/Eye/Blinding/ActivatableUIRequiresVisionSystem.cs index cbecba701c6..7bed97db123 100644 --- a/Content.Server/Eye/Blinding/ActivatableUIRequiresVisionSystem.cs +++ b/Content.Server/Eye/Blinding/ActivatableUIRequiresVisionSystem.cs @@ -44,7 +44,7 @@ private void OnBlindnessChanged(EntityUid uid, BlindableComponent component, ref if (uiList == null) return; - Queue closeList = new(); // foreach collection modified moment + Queue closeList = new(); // foreach collection modified moment foreach (var ui in uiList) { diff --git a/Content.Server/Fax/AdminUI/AdminFaxEui.cs b/Content.Server/Fax/AdminUI/AdminFaxEui.cs index da7a0769ad6..c8be6618e45 100644 --- a/Content.Server/Fax/AdminUI/AdminFaxEui.cs +++ b/Content.Server/Fax/AdminUI/AdminFaxEui.cs @@ -1,9 +1,9 @@ using Content.Server.DeviceNetwork.Components; using Content.Server.EUI; -using Content.Server.Ghost.Components; using Content.Shared.Eui; using Content.Shared.Fax; using Content.Shared.Follower; +using Content.Shared.Ghost; using Content.Shared.Paper; namespace Content.Server.Fax.AdminUI; @@ -32,7 +32,7 @@ public override AdminFaxEuiState GetNewState() var entries = new List(); while (faxes.MoveNext(out var uid, out var fax, out var device)) { - entries.Add(new AdminFaxEntry(uid, fax.FaxName, device.Address)); + entries.Add(new AdminFaxEntry(_entityManager.GetNetEntity(uid), fax.FaxName, device.Address)); } return new AdminFaxEuiState(entries); } @@ -49,14 +49,14 @@ public override void HandleMessage(EuiMessageBase msg) !_entityManager.HasComponent(Player.AttachedEntity.Value)) return; - _followerSystem.StartFollowingEntity(Player.AttachedEntity.Value, followData.TargetFax); + _followerSystem.StartFollowingEntity(Player.AttachedEntity.Value, _entityManager.GetEntity(followData.TargetFax)); break; } case AdminFaxEuiMsg.Send sendData: { var printout = new FaxPrintout(sendData.Content, sendData.Title, null, sendData.StampState, new() { new StampDisplayInfo { StampedName = sendData.From, StampedColor = sendData.StampColor } }); - _faxSystem.Receive(sendData.Target, printout); + _faxSystem.Receive(_entityManager.GetEntity(sendData.Target), printout); break; } } diff --git a/Content.Server/Fax/FaxMachineComponent.cs b/Content.Server/Fax/FaxMachineComponent.cs index 0c38fb6cd29..99db2161c81 100644 --- a/Content.Server/Fax/FaxMachineComponent.cs +++ b/Content.Server/Fax/FaxMachineComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Fax; [RegisterComponent] -public sealed class FaxMachineComponent : Component +public sealed partial class FaxMachineComponent : Component { /// /// Name with which the fax will be visible to others on the network @@ -87,7 +87,7 @@ public sealed class FaxMachineComponent : Component /// [ViewVariables] [DataField("printingQueue")] - public Queue PrintingQueue { get; } = new(); + public Queue PrintingQueue { get; private set; } = new(); /// /// Message sending timeout @@ -129,22 +129,22 @@ public sealed class FaxMachineComponent : Component } [DataDefinition] -public sealed class FaxPrintout +public sealed partial class FaxPrintout { [DataField("name", required: true)] - public string Name { get; } = default!; + public string Name { get; private set; } = default!; [DataField("content", required: true)] - public string Content { get; } = default!; + public string Content { get; private set; } = default!; [DataField("prototypeId", customTypeSerializer: typeof(PrototypeIdSerializer), required: true)] - public string PrototypeId { get; } = default!; + public string PrototypeId { get; private set; } = default!; [DataField("stampState")] - public string? StampState { get; } + public string? StampState { get; private set; } [DataField("stampedBy")] - public List StampedBy { get; } = new(); + public List StampedBy { get; private set; } = new(); private FaxPrintout() { diff --git a/Content.Server/Fax/FaxSystem.cs b/Content.Server/Fax/FaxSystem.cs index f5e46350050..e73fe44cb19 100644 --- a/Content.Server/Fax/FaxSystem.cs +++ b/Content.Server/Fax/FaxSystem.cs @@ -38,6 +38,7 @@ public sealed class FaxSystem : EntitySystem [Dependency] private readonly QuickDialogSystem _quickDialog = default!; [Dependency] private readonly UserInterfaceSystem _userInterface = default!; [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; private const string PaperSlotId = "Paper"; @@ -473,9 +474,7 @@ private void SpawnPaperFromQueue(EntityUid uid, FaxMachineComponent? component = } } - if (TryComp(printed, out var metadata)) - metadata.EntityName = printout.Name; - + _metaData.SetEntityName(printed, printout.Name); _adminLogger.Add(LogType.Action, LogImpact.Low, $"\"{component.FaxName}\" {ToPrettyString(uid)} printed {ToPrettyString(printed)}: {printout.Content}"); } diff --git a/Content.Server/Flash/Components/FlashComponent.cs b/Content.Server/Flash/Components/FlashComponent.cs index 3f2ca0e3892..d2b1c7f4984 100644 --- a/Content.Server/Flash/Components/FlashComponent.cs +++ b/Content.Server/Flash/Components/FlashComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Flash.Components { [RegisterComponent, Access(typeof(FlashSystem))] - public sealed class FlashComponent : Component + public sealed partial class FlashComponent : Component { [DataField("duration")] [ViewVariables(VVAccess.ReadWrite)] diff --git a/Content.Server/Flash/Components/FlashImmunityComponent.cs b/Content.Server/Flash/Components/FlashImmunityComponent.cs index fe8fab28036..80bbdd12828 100644 --- a/Content.Server/Flash/Components/FlashImmunityComponent.cs +++ b/Content.Server/Flash/Components/FlashImmunityComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Flash.Components { [RegisterComponent, Access(typeof(FlashSystem))] - public sealed class FlashImmunityComponent : Component + public sealed partial class FlashImmunityComponent : Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("enabled")] diff --git a/Content.Server/Flash/Components/FlashOnTriggerComponent.cs b/Content.Server/Flash/Components/FlashOnTriggerComponent.cs index 9017c3fc01e..ad12dbdb02d 100644 --- a/Content.Server/Flash/Components/FlashOnTriggerComponent.cs +++ b/Content.Server/Flash/Components/FlashOnTriggerComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Flash.Components /// Upon being triggered will flash in an area around it. /// [RegisterComponent] - internal sealed class FlashOnTriggerComponent : Component + internal sealed partial class FlashOnTriggerComponent : Component { [DataField("range")] internal float Range = 1.0f; [DataField("duration")] internal float Duration = 8.0f; diff --git a/Content.Server/Fluids/Components/EvaporationComponent.cs b/Content.Server/Fluids/Components/EvaporationComponent.cs index 0c7a497e000..0f530da79ec 100644 --- a/Content.Server/Fluids/Components/EvaporationComponent.cs +++ b/Content.Server/Fluids/Components/EvaporationComponent.cs @@ -8,7 +8,7 @@ namespace Content.Server.Fluids.Components; /// Added to puddles that contain water so it may evaporate over time. /// [RegisterComponent, Access(typeof(PuddleSystem))] -public sealed class EvaporationComponent : Component +public sealed partial class EvaporationComponent : Component { /// /// The next time we remove the EvaporationSystem reagent amount from this entity. diff --git a/Content.Server/Fluids/Components/EvaporationSparkleComponent.cs b/Content.Server/Fluids/Components/EvaporationSparkleComponent.cs index 393328e579a..be4a693e7ff 100644 --- a/Content.Server/Fluids/Components/EvaporationSparkleComponent.cs +++ b/Content.Server/Fluids/Components/EvaporationSparkleComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Fluids.Components; /// Used to track evaporation sparkles so we can delete if necessary. /// [RegisterComponent] -public sealed class EvaporationSparkleComponent : Component +public sealed partial class EvaporationSparkleComponent : Component { } diff --git a/Content.Server/Fluids/Components/FootstepTrackComponent.cs b/Content.Server/Fluids/Components/FootstepTrackComponent.cs index 04df4dec75e..4807ec3013e 100644 --- a/Content.Server/Fluids/Components/FootstepTrackComponent.cs +++ b/Content.Server/Fluids/Components/FootstepTrackComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Fluids.Components; [RegisterComponent] -public sealed class FootstepTrackComponent : Component +public sealed partial class FootstepTrackComponent : Component { } diff --git a/Content.Server/Fluids/Components/SpillableComponent.cs b/Content.Server/Fluids/Components/SpillableComponent.cs index 30a1bc66a05..645b0af6121 100644 --- a/Content.Server/Fluids/Components/SpillableComponent.cs +++ b/Content.Server/Fluids/Components/SpillableComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Fluids.Components; [RegisterComponent] -public sealed class SpillableComponent : Component +public sealed partial class SpillableComponent : Component { [DataField("solution")] public string SolutionName = "puddle"; diff --git a/Content.Server/Fluids/Components/SprayComponent.cs b/Content.Server/Fluids/Components/SprayComponent.cs index c3c9c0e92b3..98e7238889f 100644 --- a/Content.Server/Fluids/Components/SprayComponent.cs +++ b/Content.Server/Fluids/Components/SprayComponent.cs @@ -8,7 +8,7 @@ namespace Content.Server.Fluids.Components; [RegisterComponent] [Access(typeof(SpraySystem))] -public sealed class SprayComponent : Component +public sealed partial class SprayComponent : Component { public const string SolutionName = "spray"; @@ -32,5 +32,5 @@ public sealed class SprayComponent : Component [ViewVariables(VVAccess.ReadWrite), DataField("spraySound", required: true)] [Access(typeof(SpraySystem), Other = AccessPermissions.ReadExecute)] // FIXME Friends - public SoundSpecifier SpraySound { get; } = default!; + public SoundSpecifier SpraySound { get; private set; } = default!; } diff --git a/Content.Server/Fluids/EntitySystems/AbsorbentSystem.cs b/Content.Server/Fluids/EntitySystems/AbsorbentSystem.cs index db58430e390..58757af6603 100644 --- a/Content.Server/Fluids/EntitySystems/AbsorbentSystem.cs +++ b/Content.Server/Fluids/EntitySystems/AbsorbentSystem.cs @@ -55,7 +55,8 @@ private void UpdateAbsorbent(EntityUid uid, AbsorbentComponent component) var oldProgress = component.Progress.ShallowClone(); component.Progress.Clear(); - if (solution.TryGetReagent(PuddleSystem.EvaporationReagent, out var water)) + var water = solution.GetTotalPrototypeQuantity(PuddleSystem.EvaporationReagent); + if (water > FixedPoint2.Zero) { component.Progress[_prototype.Index(PuddleSystem.EvaporationReagent).SubstanceColor] = water.Float(); } @@ -230,7 +231,7 @@ private bool TryPuddleInteract(EntityUid user, EntityUid used, EntityUid target, } // Check if we have any evaporative reagents on our absorber to transfer - absorberSoln.TryGetReagent(PuddleSystem.EvaporationReagent, out var available); + var available = absorberSoln.GetTotalPrototypeQuantity(PuddleSystem.EvaporationReagent); // No material if (available == FixedPoint2.Zero) diff --git a/Content.Server/Fluids/EntitySystems/DrainSystem.cs b/Content.Server/Fluids/EntitySystems/DrainSystem.cs index 425e21153c5..d067a64e13e 100644 --- a/Content.Server/Fluids/EntitySystems/DrainSystem.cs +++ b/Content.Server/Fluids/EntitySystems/DrainSystem.cs @@ -228,7 +228,7 @@ private void OnInteract(EntityUid uid, DrainComponent component, InteractEvent a _audioSystem.PlayPvs(component.PlungerSound, uid); - var doAfterArgs = new DoAfterArgs(args.User, component.UnclogDuration, new DrainDoAfterEvent(),uid, args.Target, args.Used) + var doAfterArgs = new DoAfterArgs(EntityManager, args.User, component.UnclogDuration, new DrainDoAfterEvent(),uid, args.Target, args.Used) { BreakOnTargetMove = true, BreakOnUserMove = true, diff --git a/Content.Server/Fluids/EntitySystems/PuddleDebugDebugOverlaySystem.cs b/Content.Server/Fluids/EntitySystems/PuddleDebugDebugOverlaySystem.cs index b09d74c4d0c..ec4fb3b399f 100644 --- a/Content.Server/Fluids/EntitySystems/PuddleDebugDebugOverlaySystem.cs +++ b/Content.Server/Fluids/EntitySystems/PuddleDebugDebugOverlaySystem.cs @@ -79,7 +79,7 @@ public override void Update(float frameTime) data.Add(new PuddleDebugOverlayData(pos, vol)); } - RaiseNetworkEvent(new PuddleOverlayDebugMessage(gridUid, data.ToArray())); + RaiseNetworkEvent(new PuddleOverlayDebugMessage(GetNetEntity(gridUid), data.ToArray())); } } diff --git a/Content.Server/Fluids/EntitySystems/PuddleSystem.Evaporation.cs b/Content.Server/Fluids/EntitySystems/PuddleSystem.Evaporation.cs index 429f1288101..1392a233560 100644 --- a/Content.Server/Fluids/EntitySystems/PuddleSystem.Evaporation.cs +++ b/Content.Server/Fluids/EntitySystems/PuddleSystem.Evaporation.cs @@ -25,7 +25,7 @@ private void UpdateEvaporation(EntityUid uid, Solution solution) return; } - if (solution.ContainsReagent(EvaporationReagent)) + if (solution.ContainsPrototype(EvaporationReagent)) { var evaporation = AddComp(uid); evaporation.NextTick = _timing.CurTime + EvaporationCooldown; @@ -51,7 +51,7 @@ private void TickEvaporation() continue; var reagentTick = evaporation.EvaporationAmount * EvaporationCooldown.TotalSeconds; - _solutionContainerSystem.TryRemoveReagent(uid, puddleSolution, EvaporationReagent, reagentTick); + _solutionContainerSystem.RemoveReagent(uid, puddleSolution, EvaporationReagent, reagentTick); // Despawn if we're done if (puddleSolution.Volume == FixedPoint2.Zero) @@ -65,6 +65,6 @@ private void TickEvaporation() public bool CanFullyEvaporate(Solution solution) { - return solution.Contents.Count == 1 && solution.ContainsReagent(EvaporationReagent); + return solution.Contents.Count == 1 && solution.ContainsPrototype(EvaporationReagent); } } diff --git a/Content.Server/Fluids/EntitySystems/PuddleSystem.Spillable.cs b/Content.Server/Fluids/EntitySystems/PuddleSystem.Spillable.cs index 94283bd7450..ff12aed7298 100644 --- a/Content.Server/Fluids/EntitySystems/PuddleSystem.Spillable.cs +++ b/Content.Server/Fluids/EntitySystems/PuddleSystem.Spillable.cs @@ -181,7 +181,7 @@ private void AddSpillVerb(EntityUid uid, SpillableComponent component, GetVerbsE { verb.Act = () => { - _doAfterSystem.TryStartDoAfter(new DoAfterArgs(args.User, component.SpillDelay ?? 0, new SpillDoAfterEvent(), uid, target: uid) + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, args.User, component.SpillDelay ?? 0, new SpillDoAfterEvent(), uid, target: uid) { BreakOnTargetMove = true, BreakOnUserMove = true, diff --git a/Content.Server/Fluids/EntitySystems/PuddleSystem.Transfers.cs b/Content.Server/Fluids/EntitySystems/PuddleSystem.Transfers.cs index c73685c2889..ba73adf389f 100644 --- a/Content.Server/Fluids/EntitySystems/PuddleSystem.Transfers.cs +++ b/Content.Server/Fluids/EntitySystems/PuddleSystem.Transfers.cs @@ -24,20 +24,26 @@ private void OnRefillableDragged(EntityUid uid, RefillableSolutionComponent comp return; } - TryComp(args.Target, out var drainable); - - _solutionContainerSystem.TryGetDrainableSolution(args.Target, out var drainableSolution, drainable); - - // Dump reagents into drain - if (TryComp(args.Target, out var drain) && drainable != null) + // Dump reagents into DumpableSolution + if (TryComp(args.Target, out var dump)) { - if (drainableSolution == null || solution == null) + _solutionContainerSystem.TryGetDumpableSolution(args.Target, out var dumpableSolution, dump); + if (dumpableSolution == null || solution == null) return; - var split = _solutionContainerSystem.SplitSolution(uid, solution, drainableSolution.AvailableVolume); + bool success = true; + if (dump.Unlimited) + { + var split = _solutionContainerSystem.SplitSolution(uid, solution, solution.Volume); + dumpableSolution.AddSolution(split, _prototypeManager); + } + else + { + var split = _solutionContainerSystem.SplitSolution(uid, solution, dumpableSolution.AvailableVolume); + success = _solutionContainerSystem.TryAddSolution(args.Target, dumpableSolution, split); + } - // TODO: Drane refactor - if (_solutionContainerSystem.TryAddSolution(args.Target, drainableSolution, split)) + if (success) { _audio.PlayPvs(AbsorbentComponent.DefaultTransferSound, args.Target); } @@ -49,6 +55,10 @@ private void OnRefillableDragged(EntityUid uid, RefillableSolutionComponent comp return; } + TryComp(args.Target, out var drainable); + + _solutionContainerSystem.TryGetDrainableSolution(args.Target, out var drainableSolution, drainable); + // Take reagents from target if (drainable != null) { diff --git a/Content.Server/Fluids/EntitySystems/PuddleSystem.cs b/Content.Server/Fluids/EntitySystems/PuddleSystem.cs index 991bbac6deb..614e6854563 100644 --- a/Content.Server/Fluids/EntitySystems/PuddleSystem.cs +++ b/Content.Server/Fluids/EntitySystems/PuddleSystem.cs @@ -56,6 +56,17 @@ public sealed partial class PuddleSystem : SharedPuddleSystem [Dependency] private readonly SlowContactsSystem _slowContacts = default!; [Dependency] private readonly TileFrictionController _tile = default!; + [ValidatePrototypeId] + private const string Blood = "Blood"; + + [ValidatePrototypeId] + private const string Slime = "Slime"; + + [ValidatePrototypeId] + private const string SpiderBlood = "SpiderBlood"; + + private static string[] _standoutReagents = new[] { Blood, Slime, SpiderBlood }; + public static float PuddleVolume = 1000; // Using local deletion queue instead of the standard queue so that we can easily "undelete" if a puddle @@ -272,14 +283,14 @@ private void UpdateAppearance(EntityUid uid, PuddleComponent? puddleComponent = // Make blood stand out more // Kinda EH // Could potentially do alpha per-solution but future problem. - var standoutReagents = new string[] { "Blood", "Slime", "SpiderBlood" }; - 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) { - if (!solution.TryGetReagent(standout, out var quantity)) + var quantity = solution.GetTotalPrototypeQuantity(standout); + if (quantity <= FixedPoint2.Zero) continue; var interpolateValue = quantity.Float() / solution.Volume.Float(); @@ -298,13 +309,13 @@ private void UpdateSlip(EntityUid entityUid, PuddleComponent component, Solution var amountRequired = FixedPoint2.New(component.OverflowVolume.Float() * LowThreshold); var slipperyAmount = FixedPoint2.Zero; - foreach (var reagent in solution.Contents) + foreach (var (reagent, quantity) in solution.Contents) { - var reagentProto = _prototypeManager.Index(reagent.ReagentId); + var reagentProto = _prototypeManager.Index(reagent.Prototype); if (reagentProto.Slippery) { - slipperyAmount += reagent.Quantity; + slipperyAmount += quantity; if (slipperyAmount > amountRequired) { @@ -331,9 +342,9 @@ private void UpdateSlip(EntityUid entityUid, PuddleComponent component, Solution private void UpdateSlow(EntityUid uid, Solution solution) { var maxViscosity = 0f; - foreach (var reagent in solution.Contents) + foreach (var (reagent, _) in solution.Contents) { - var reagentProto = _prototypeManager.Index(reagent.ReagentId); + var reagentProto = _prototypeManager.Index(reagent.Prototype); maxViscosity = Math.Max(maxViscosity, reagentProto.Viscosity); } if (maxViscosity > 0) @@ -362,7 +373,7 @@ private void HandlePuddleExamined(EntityUid uid, PuddleComponent component, Exam { args.PushMarkup(Loc.GetString("puddle-component-examine-evaporating")); } - else if (solution?.ContainsReagent(EvaporationReagent) == true) + else if (solution?.ContainsPrototype(EvaporationReagent) == true) { args.PushMarkup(Loc.GetString("puddle-component-examine-evaporating-partial")); } @@ -588,15 +599,15 @@ public bool TrySpillAt(TileRef tileRef, Solution solution, out EntityUid puddleU if (tileReact) { // First, do all tile reactions - for (var i = 0; i < solution.Contents.Count; i++) + for (var i = solution.Contents.Count - 1; i >= 0; i--) { - var (reagentId, quantity) = solution.Contents[i]; - var proto = _prototypeManager.Index(reagentId); + var (reagent, quantity) = solution.Contents[i]; + var proto = _prototypeManager.Index(reagent.Prototype); var removed = proto.ReactionTile(tileRef, quantity); if (removed <= FixedPoint2.Zero) continue; - solution.RemoveReagent(reagentId, removed); + solution.RemoveReagent(reagent, removed); } } diff --git a/Content.Server/Fluids/EntitySystems/SmokeSystem.cs b/Content.Server/Fluids/EntitySystems/SmokeSystem.cs index 241ec1daa2d..ee0d16a7a2d 100644 --- a/Content.Server/Fluids/EntitySystems/SmokeSystem.cs +++ b/Content.Server/Fluids/EntitySystems/SmokeSystem.cs @@ -29,15 +29,11 @@ namespace Content.Server.Fluids.EntitySystems; public sealed class SmokeSystem : EntitySystem { // If I could do it all again this could probably use a lot more of puddles. - [Dependency] private readonly IAdminLogManager _logger = default!; [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly IPrototypeManager _prototype = default!; [Dependency] private readonly AppearanceSystem _appearance = default!; - [Dependency] private readonly BloodstreamSystem _blood = default!; [Dependency] private readonly EntityLookupSystem _lookup = default!; - [Dependency] private readonly InternalsSystem _internals = default!; - [Dependency] private readonly ReactiveSystem _reactive = default!; [Dependency] private readonly SolutionContainerSystem _solutionSystem = default!; /// diff --git a/Content.Server/Foldable/FoldableSystem.cs b/Content.Server/Foldable/FoldableSystem.cs deleted file mode 100644 index 7b5b2577dd6..00000000000 --- a/Content.Server/Foldable/FoldableSystem.cs +++ /dev/null @@ -1,89 +0,0 @@ -using System.Linq; -using Content.Server.Storage.Components; -using Content.Shared.Buckle; -using Content.Shared.Buckle.Components; -using Content.Shared.Foldable; -using Content.Shared.Verbs; -using JetBrains.Annotations; -using Robust.Shared.Containers; -using Robust.Shared.Utility; - -namespace Content.Server.Foldable -{ - [UsedImplicitly] - public sealed class FoldableSystem : SharedFoldableSystem - { - [Dependency] private readonly SharedContainerSystem _container = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent>(AddFoldVerb); - - } - public bool TryToggleFold(EntityUid uid, FoldableComponent comp) - { - return TrySetFolded(uid, comp, !comp.IsFolded); - } - - public bool CanToggleFold(EntityUid uid, FoldableComponent? fold = null) - { - if (!Resolve(uid, ref fold)) - return false; - - // Can't un-fold in any container (locker, hands, inventory, whatever). - if (_container.IsEntityInContainer(uid)) - return false; - - // If an entity is buckled to the object we can't pick it up or fold it - if (TryComp(uid, out StrapComponent? strap) && strap.BuckledEntities.Any()) - return false; - - if (!TryComp(uid, out EntityStorageComponent? storage)) - return true; - - if (storage.Open) - return false; - - return !storage.Contents.ContainedEntities.Any(); - } - - /// - /// Try to fold/unfold - /// - public bool TrySetFolded(EntityUid uid, FoldableComponent comp, bool state) - { - if (state == comp.IsFolded) - return false; - - if (!CanToggleFold(uid, comp)) - return false; - - SetFolded(uid, comp, state); - return true; - } - - #region Verb - - private void AddFoldVerb(EntityUid uid, FoldableComponent component, GetVerbsEvent args) - { - if (!args.CanAccess || !args.CanInteract || args.Hands == null || !CanToggleFold(uid, component)) - return; - - AlternativeVerb verb = new() - { - Act = () => TryToggleFold(uid, component), - Text = component.IsFolded ? Loc.GetString("unfold-verb") : Loc.GetString("fold-verb"), - Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/VerbIcons/fold.svg.192dpi.png")), - - // If the object is unfolded and they click it, they want to fold it, if it's folded, they want to pick it up - Priority = component.IsFolded ? 0 : 2, - }; - - args.Verbs.Add(verb); - } - - #endregion - } -} diff --git a/Content.Server/Forensics/Components/DnaComponent.cs b/Content.Server/Forensics/Components/DnaComponent.cs index 101b9a0900d..78857f9f31b 100644 --- a/Content.Server/Forensics/Components/DnaComponent.cs +++ b/Content.Server/Forensics/Components/DnaComponent.cs @@ -4,7 +4,7 @@ /// This component is for mobs that have DNA. /// [RegisterComponent] -public sealed class DnaComponent : Component +public sealed partial class DnaComponent : Component { [DataField("dna"), ViewVariables(VVAccess.ReadWrite)] public string DNA = String.Empty; diff --git a/Content.Server/Forensics/Components/FiberComponent.cs b/Content.Server/Forensics/Components/FiberComponent.cs index 2d457304604..766ad979b66 100644 --- a/Content.Server/Forensics/Components/FiberComponent.cs +++ b/Content.Server/Forensics/Components/FiberComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.Forensics /// which the forensics system uses. /// [RegisterComponent] - public sealed class FiberComponent : Component + public sealed partial class FiberComponent : Component { [DataField("fiberMaterial")] public string FiberMaterial = "fibers-synthetic"; diff --git a/Content.Server/Forensics/Components/FingerprintComponent.cs b/Content.Server/Forensics/Components/FingerprintComponent.cs index a75b90e3aab..96f8042ddfc 100644 --- a/Content.Server/Forensics/Components/FingerprintComponent.cs +++ b/Content.Server/Forensics/Components/FingerprintComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Forensics /// This component is for mobs that leave fingerprints. /// [RegisterComponent] - public sealed class FingerprintComponent : Component + public sealed partial class FingerprintComponent : Component { [DataField("fingerprint")] public string? Fingerprint; diff --git a/Content.Server/Forensics/Components/FingerprintMaskComponent.cs b/Content.Server/Forensics/Components/FingerprintMaskComponent.cs index a9d80d06ba0..73710977616 100644 --- a/Content.Server/Forensics/Components/FingerprintMaskComponent.cs +++ b/Content.Server/Forensics/Components/FingerprintMaskComponent.cs @@ -5,6 +5,6 @@ namespace Content.Server.Forensics /// usually so fibres can be left instead. /// [RegisterComponent] - public sealed class FingerprintMaskComponent : Component + public sealed partial class FingerprintMaskComponent : Component {} } diff --git a/Content.Server/Forensics/Components/ForensicPadComponent.cs b/Content.Server/Forensics/Components/ForensicPadComponent.cs index 8476d17a0dc..d707886481f 100644 --- a/Content.Server/Forensics/Components/ForensicPadComponent.cs +++ b/Content.Server/Forensics/Components/ForensicPadComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Forensics /// Used to take a sample of someone's fingerprints. /// [RegisterComponent] - public sealed class ForensicPadComponent : Component + public sealed partial class ForensicPadComponent : Component { [DataField("scanDelay")] public float ScanDelay = 3.0f; diff --git a/Content.Server/Forensics/Components/ForensicScannerComponent.cs b/Content.Server/Forensics/Components/ForensicScannerComponent.cs index 29a34407fe6..16eb852590e 100644 --- a/Content.Server/Forensics/Components/ForensicScannerComponent.cs +++ b/Content.Server/Forensics/Components/ForensicScannerComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Forensics { [RegisterComponent] - public sealed class ForensicScannerComponent : Component + public sealed partial class ForensicScannerComponent : Component { public CancellationTokenSource? CancelToken; diff --git a/Content.Server/Forensics/Components/ForensicsComponent.cs b/Content.Server/Forensics/Components/ForensicsComponent.cs index e814cd025fb..5a73a6a3e38 100644 --- a/Content.Server/Forensics/Components/ForensicsComponent.cs +++ b/Content.Server/Forensics/Components/ForensicsComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Forensics { [RegisterComponent] - public sealed class ForensicsComponent : Component + public sealed partial class ForensicsComponent : Component { [DataField("fingerprints")] public HashSet Fingerprints = new(); diff --git a/Content.Server/Forensics/Systems/ForensicPadSystem.cs b/Content.Server/Forensics/Systems/ForensicPadSystem.cs index f7a79ef9741..ad39817f8b0 100644 --- a/Content.Server/Forensics/Systems/ForensicPadSystem.cs +++ b/Content.Server/Forensics/Systems/ForensicPadSystem.cs @@ -16,6 +16,7 @@ public sealed class ForensicPadSystem : EntitySystem [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; [Dependency] private readonly InventorySystem _inventory = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; public override void Initialize() { @@ -80,7 +81,7 @@ private void StartScan(EntityUid used, EntityUid user, EntityUid target, Forensi { var ev = new ForensicPadDoAfterEvent(sample); - var doAfterEventArgs = new DoAfterArgs(user, pad.ScanDelay, ev, used, target: target, used: used) + var doAfterEventArgs = new DoAfterArgs(EntityManager, user, pad.ScanDelay, ev, used, target: target, used: used) { BreakOnTargetMove = true, BreakOnUserMove = true, @@ -99,10 +100,10 @@ private void OnDoAfter(EntityUid uid, ForensicPadComponent padComponent, Forensi if (args.Args.Target != null) { - if (HasComp(args.Args.Target)) - MetaData(uid).EntityName = Loc.GetString("forensic-pad-fingerprint-name", ("entity", args.Args.Target)); - else - MetaData(uid).EntityName = Loc.GetString("forensic-pad-gloves-name", ("entity", args.Args.Target)); + var name = HasComp(args.Args.Target) + ? "forensic-pad-fingerprint-name" + : "forensic-pad-gloves-name"; + _metaData.SetEntityName(uid, Loc.GetString(name, ("entity", args.Args.Target))); } padComponent.Sample = args.Sample; diff --git a/Content.Server/Forensics/Systems/ForensicScannerSystem.cs b/Content.Server/Forensics/Systems/ForensicScannerSystem.cs index 27b59014681..117717fca46 100644 --- a/Content.Server/Forensics/Systems/ForensicScannerSystem.cs +++ b/Content.Server/Forensics/Systems/ForensicScannerSystem.cs @@ -23,6 +23,7 @@ public sealed class ForensicScannerSystem : EntitySystem [Dependency] private readonly PaperSystem _paperSystem = default!; [Dependency] private readonly SharedHandsSystem _handsSystem = default!; [Dependency] private readonly SharedAudioSystem _audioSystem = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; private ISawmill _sawmill = default!; @@ -90,7 +91,7 @@ private void OnDoAfter(EntityUid uid, ForensicScannerComponent component, DoAfte /// private void StartScan(EntityUid uid, ForensicScannerComponent component, EntityUid user, EntityUid target) { - _doAfterSystem.TryStartDoAfter(new DoAfterArgs(user, component.ScanDelay, new ForensicScannerDoAfterEvent(), uid, target: target, used: uid) + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, user, component.ScanDelay, new ForensicScannerDoAfterEvent(), uid, target: target, used: uid) { BreakOnTargetMove = true, BreakOnUserMove = true, @@ -106,7 +107,7 @@ private void OnUtilityVerb(EntityUid uid, ForensicScannerComponent component, Ge var verb = new UtilityVerb() { Act = () => StartScan(uid, component, args.User, args.Target), - IconEntity = uid, + IconEntity = GetNetEntity(uid), Text = Loc.GetString("forensic-scanner-verb-text"), Message = Loc.GetString("forensic-scanner-verb-message") }; @@ -197,7 +198,7 @@ private void OnPrint(EntityUid uid, ForensicScannerComponent component, Forensic return; } - MetaData(printed).EntityName = Loc.GetString("forensic-scanner-report-title", ("entity", component.LastScannedName)); + _metaData.SetEntityName(printed, Loc.GetString("forensic-scanner-report-title", ("entity", component.LastScannedName))); var text = new StringBuilder(); diff --git a/Content.Server/Friends/Components/PettableFriendComponent.cs b/Content.Server/Friends/Components/PettableFriendComponent.cs index 18404931eec..fe68029a663 100644 --- a/Content.Server/Friends/Components/PettableFriendComponent.cs +++ b/Content.Server/Friends/Components/PettableFriendComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Friends.Components; /// Uses FactionExceptionComponent behind the scenes /// [RegisterComponent, Access(typeof(PettableFriendSystem))] -public sealed class PettableFriendComponent : Component +public sealed partial class PettableFriendComponent : Component { /// /// Localized popup sent when petting for the first time diff --git a/Content.Server/GameTicking/Commands/JoinGameCommand.cs b/Content.Server/GameTicking/Commands/JoinGameCommand.cs index acb211d8bd8..366e6c4e772 100644 --- a/Content.Server/GameTicking/Commands/JoinGameCommand.cs +++ b/Content.Server/GameTicking/Commands/JoinGameCommand.cs @@ -11,6 +11,7 @@ namespace Content.Server.GameTicking.Commands [AnyCommand] sealed class JoinGameCommand : IConsoleCommand { + [Dependency] private readonly IEntityManager _entManager = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; public string Command => "joingame"; @@ -36,9 +37,8 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - var ticker = EntitySystem.Get(); - var stationSystem = EntitySystem.Get(); - var stationJobs = EntitySystem.Get(); + var ticker = _entManager.System(); + var stationJobs = _entManager.System(); if (ticker.PlayerGameStatuses.TryGetValue(player.UserId, out var status) && status == PlayerGameStatus.JoinedGame) { @@ -61,7 +61,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) shell.WriteError(Loc.GetString("shell-argument-must-be-number")); } - var station = new EntityUid(sid); + var station = _entManager.GetEntity(new NetEntity(sid)); var jobPrototype = _prototypeManager.Index(id); if(stationJobs.TryGetJobSlot(station, jobPrototype, out var slots) == false || slots == 0) { diff --git a/Content.Server/GameTicking/Commands/RespawnCommand.cs b/Content.Server/GameTicking/Commands/RespawnCommand.cs index 9c887dbf175..057572297f9 100644 --- a/Content.Server/GameTicking/Commands/RespawnCommand.cs +++ b/Content.Server/GameTicking/Commands/RespawnCommand.cs @@ -1,5 +1,5 @@ -using Content.Server.Mind; -using Content.Server.Players; +using Content.Shared.Mind; +using Content.Shared.Players; using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Network; @@ -24,7 +24,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) var playerMgr = IoCManager.Resolve(); var sysMan = IoCManager.Resolve(); var ticker = sysMan.GetEntitySystem(); - var mind = sysMan.GetEntitySystem(); + var mind = sysMan.GetEntitySystem(); NetUserId userId; if (args.Length == 0) diff --git a/Content.Server/GameTicking/GameTicker.CVars.cs b/Content.Server/GameTicking/GameTicker.CVars.cs index bc8dfb67838..beae71c50b5 100644 --- a/Content.Server/GameTicking/GameTicker.CVars.cs +++ b/Content.Server/GameTicking/GameTicker.CVars.cs @@ -1,3 +1,4 @@ +using Content.Server.Discord; using Content.Shared.CCVar; using Content.Shared.GameTicking; @@ -26,6 +27,14 @@ public sealed partial class GameTicker [ViewVariables] public float MaxStationOffset { get; private set; } = 0f; + [ViewVariables] + public string? ServerName { get; private set; } + + [ViewVariables] + private string? DiscordRoundEndRole { get; set; } + + private WebhookIdentifier? _webhookIdentifier; + #if EXCEPTION_TOLERANCE [ViewVariables] public int RoundStartFailShutdownCount { get; private set; } = 0; @@ -51,6 +60,27 @@ private void InitializeCVars() _configurationManager.OnValueChanged(CCVars.StationOffset, value => StationOffset = value, true); _configurationManager.OnValueChanged(CCVars.StationRotation, value => StationRotation = value, true); _configurationManager.OnValueChanged(CCVars.MaxStationOffset, value => MaxStationOffset = value, true); + _configurationManager.OnValueChanged(CCVars.AdminLogsServerName, value => + { + // TODO why tf is the server name on admin logs + ServerName = value; + }, true); + _configurationManager.OnValueChanged(CCVars.DiscordRoundUpdateWebhook, value => + { + if (!string.IsNullOrWhiteSpace(value)) + { + _discord.GetWebhook(value, data => _webhookIdentifier = data.ToIdentifier()); + } + }, true); + _configurationManager.OnValueChanged(CCVars.DiscordRoundEndRoleWebhook, value => + { + DiscordRoundEndRole = value; + + if (value == string.Empty) + { + DiscordRoundEndRole = null; + } + }, true); #if EXCEPTION_TOLERANCE _configurationManager.OnValueChanged(CCVars.RoundStartFailShutdownCount, value => RoundStartFailShutdownCount = value, true); #endif diff --git a/Content.Server/GameTicking/GameTicker.GamePreset.cs b/Content.Server/GameTicking/GameTicker.GamePreset.cs index 9ccddd110d5..a5e6d7a6056 100644 --- a/Content.Server/GameTicking/GameTicker.GamePreset.cs +++ b/Content.Server/GameTicking/GameTicker.GamePreset.cs @@ -2,12 +2,13 @@ using System.Linq; using System.Threading.Tasks; using Content.Server.GameTicking.Presets; -using Content.Server.Ghost.Components; using Content.Server.Maps; using Content.Shared.CCVar; using Content.Shared.Damage; using Content.Shared.Damage.Prototypes; using Content.Shared.Database; +using Content.Shared.Ghost; +using Content.Shared.Mind; using Content.Shared.Mobs.Components; using JetBrains.Annotations; using Robust.Server.Player; @@ -192,8 +193,11 @@ private void StartGamePresetRules() } } - public bool OnGhostAttempt(Mind.Mind mind, bool canReturnGlobal, bool viaCommand = false) + public bool OnGhostAttempt(EntityUid mindId, bool canReturnGlobal, bool viaCommand = false, MindComponent? mind = null) { + if (!Resolve(mindId, ref mind)) + return false; + var playerEntity = mind.CurrentEntity; if (playerEntity != null && viaCommand) @@ -210,7 +214,7 @@ public bool OnGhostAttempt(Mind.Mind mind, bool canReturnGlobal, bool viaCommand { if (mind.Session != null) // Logging is suppressed to prevent spam from ghost attempts caused by movement attempts { - _chatManager.DispatchServerMessage(mind.Session, Loc.GetString("comp-mind-ghosting-prevented"), + _chatManager.DispatchServerMessage((IPlayerSession) mind.Session, Loc.GetString("comp-mind-ghosting-prevented"), true); } @@ -222,7 +226,7 @@ public bool OnGhostAttempt(Mind.Mind mind, bool canReturnGlobal, bool viaCommand if (mind.VisitingEntity != default) { - _mind.UnVisit(mind); + _mind.UnVisit(mindId, mind: mind); } var position = Exists(playerEntity) @@ -263,28 +267,27 @@ public bool OnGhostAttempt(Mind.Mind mind, bool canReturnGlobal, bool viaCommand // Try setting the ghost entity name to either the character name or the player name. // If all else fails, it'll default to the default entity prototype name, "observer". // However, that should rarely happen. - var meta = MetaData(ghost); - if(!string.IsNullOrWhiteSpace(mind.CharacterName)) - meta.EntityName = mind.CharacterName; + if (!string.IsNullOrWhiteSpace(mind.CharacterName)) + _metaData.SetEntityName(ghost, mind.CharacterName); else if (!string.IsNullOrWhiteSpace(mind.Session?.Name)) - meta.EntityName = mind.Session.Name; + _metaData.SetEntityName(ghost, mind.Session.Name); var ghostComponent = Comp(ghost); if (mind.TimeOfDeath.HasValue) { - ghostComponent.TimeOfDeath = mind.TimeOfDeath!.Value; + _ghost.SetTimeOfDeath(ghost, mind.TimeOfDeath!.Value, ghostComponent); } if (playerEntity != null) _adminLogger.Add(LogType.Mind, $"{EntityManager.ToPrettyString(playerEntity.Value):player} ghosted{(!canReturn ? " (non-returnable)" : "")}"); - _ghosts.SetCanReturnToBody(ghostComponent, canReturn); + _ghost.SetCanReturnToBody(ghostComponent, canReturn); if (canReturn) - _mind.Visit(mind, ghost); + _mind.Visit(mindId, ghost, mind); else - _mind.TransferTo(mind, ghost); + _mind.TransferTo(mindId, ghost, mind: mind); return true; } @@ -309,11 +312,11 @@ private void IncrementRoundNumber() public sealed class GhostAttemptHandleEvent : HandledEntityEventArgs { - public Mind.Mind Mind { get; } + public MindComponent Mind { get; } public bool CanReturnGlobal { get; } public bool Result { get; set; } - public GhostAttemptHandleEvent(Mind.Mind mind, bool canReturnGlobal) + public GhostAttemptHandleEvent(MindComponent mind, bool canReturnGlobal) { Mind = mind; CanReturnGlobal = canReturnGlobal; diff --git a/Content.Server/GameTicking/GameTicker.GameRule.cs b/Content.Server/GameTicking/GameTicker.GameRule.cs index f3845e753a5..82e2872914e 100644 --- a/Content.Server/GameTicking/GameTicker.GameRule.cs +++ b/Content.Server/GameTicking/GameTicker.GameRule.cs @@ -104,6 +104,7 @@ public bool StartGameRule(EntityUid ruleEntity, GameRuleComponent? ruleData = nu _sawmill.Info($"Started game rule {ToPrettyString(ruleEntity)}"); ruleData.Active = true; + ruleData.ActivatedAt = _gameTiming.CurTime; var ev = new GameRuleStartedEvent(ruleEntity, id); RaiseLocalEvent(ruleEntity, ref ev, true); return true; @@ -246,10 +247,10 @@ private void EndGameRuleCommand(IConsoleShell shell, string argstr, string[] arg foreach (var rule in args) { - if (!EntityUid.TryParse(rule, out var ruleEnt)) + if (!NetEntity.TryParse(rule, out var ruleEntNet) || !TryGetEntity(ruleEntNet, out var ruleEnt)) continue; - EndGameRule(ruleEnt); + EndGameRule(ruleEnt.Value); } } diff --git a/Content.Server/GameTicking/GameTicker.Player.cs b/Content.Server/GameTicking/GameTicker.Player.cs index 894d133f4db..f6402589b2e 100644 --- a/Content.Server/GameTicking/GameTicker.Player.cs +++ b/Content.Server/GameTicking/GameTicker.Player.cs @@ -2,13 +2,13 @@ using Content.Server.Players; using Content.Shared.GameTicking; using Content.Shared.GameWindow; +using Content.Shared.Players; using Content.Shared.Preferences; using JetBrains.Annotations; using Robust.Server.Player; using Robust.Shared.Enums; using Robust.Shared.Timing; using Robust.Shared.Utility; -using PlayerData = Content.Server.Players.PlayerData; namespace Content.Server.GameTicking { @@ -27,7 +27,7 @@ private async void PlayerStatusChanged(object? sender, SessionStatusEventArgs ar { var session = args.Session; - if (_mind.TryGetMind(session.UserId, out var mind)) + if (_mind.TryGetMind(session.UserId, out var mindId, out var mind)) { if (args.OldStatus == SessionStatus.Connecting && args.NewStatus == SessionStatus.Connected) mind.Session = session; @@ -35,7 +35,7 @@ private async void PlayerStatusChanged(object? sender, SessionStatusEventArgs ar DebugTools.Assert(mind.Session == session); } - DebugTools.Assert(session.GetMind() == mind); + DebugTools.Assert(session.GetMind() == mindId); switch (args.NewStatus) { @@ -47,7 +47,7 @@ private async void PlayerStatusChanged(object? sender, SessionStatusEventArgs ar if (session.Data.ContentDataUncast == null) { var data = new PlayerData(session.UserId, args.Session.Name); - data.Mind = mind; + data.Mind = mindId; session.Data.ContentDataUncast = data; } @@ -145,9 +145,10 @@ private HumanoidCharacterProfile GetPlayerProfile(IPlayerSession p) return (HumanoidCharacterProfile) _prefsManager.GetPreferences(p.UserId).SelectedCharacter; } - public void PlayerJoinGame(IPlayerSession session) + public void PlayerJoinGame(IPlayerSession session, bool silent = false) { - _chatManager.DispatchServerMessage(session, Loc.GetString("game-ticker-player-join-game-message")); + if (!silent) + _chatManager.DispatchServerMessage(session, Loc.GetString("game-ticker-player-join-game-message")); _playerGameStatuses[session.UserId] = PlayerGameStatus.JoinedGame; _db.AddRoundPlayers(RoundId, session.UserId); diff --git a/Content.Server/GameTicking/GameTicker.Replays.cs b/Content.Server/GameTicking/GameTicker.Replays.cs index a9df6976471..3254fb840de 100644 --- a/Content.Server/GameTicking/GameTicker.Replays.cs +++ b/Content.Server/GameTicking/GameTicker.Replays.cs @@ -43,9 +43,7 @@ private void ReplayStartRound() { var baseReplayPath = new ResPath(_cfg.GetCVar(CVars.ReplayDirectory)).ToRootedPath(); moveToPath = baseReplayPath / finalPath; - - var fileName = finalPath.Filename; - recordPath = new ResPath(tempDir) / fileName; + recordPath = new ResPath(tempDir) / finalPath; _sawmillReplays.Debug($"Replay will record in temporary position: {recordPath}"); } diff --git a/Content.Server/GameTicking/GameTicker.RoundFlow.cs b/Content.Server/GameTicking/GameTicker.RoundFlow.cs index a0c7e06ba32..7d802c1bb3b 100644 --- a/Content.Server/GameTicking/GameTicker.RoundFlow.cs +++ b/Content.Server/GameTicking/GameTicker.RoundFlow.cs @@ -1,30 +1,31 @@ +using System.Linq; using Content.Server.Announcements; +using Content.Server.Discord; using Content.Server.GameTicking.Events; using Content.Server.Ghost; using Content.Server.Maps; -using Content.Server.Players; +using Content.Shared.Database; using Content.Shared.GameTicking; +using Content.Shared.Mind; +using Content.Shared.Players; using Content.Shared.Preferences; using JetBrains.Annotations; using Prometheus; -using Robust.Server.GameStates; using Robust.Server.Maps; using Robust.Server.Player; +using Robust.Shared.Asynchronous; using Robust.Shared.Audio; using Robust.Shared.Map; using Robust.Shared.Network; using Robust.Shared.Player; using Robust.Shared.Random; using Robust.Shared.Utility; -using System.Linq; -using Content.Shared.Database; -using Robust.Shared.Asynchronous; -using PlayerData = Content.Server.Players.PlayerData; namespace Content.Server.GameTicking { public sealed partial class GameTicker { + [Dependency] private readonly DiscordWebhook _discord = default!; [Dependency] private readonly ITaskManager _taskManager = default!; private static readonly Counter RoundNumberMetric = Metrics.CreateCounter( @@ -46,22 +47,6 @@ public sealed partial class GameTicker [ViewVariables] private bool _startingRound; - /// - /// This is a list of players that are going to appear in the round-end - /// crew manifest so their children entities can be collected each update - /// and sent to far-away players. - /// - [ViewVariables] - private HashSet _expandPvsPlayers = new(); - - /// - /// This is the list of the children entities that should be sent to - /// all players at the end of the round, to keep distant characters from - /// looking naked in the crew manifest. - /// - [ViewVariables] - private HashSet _expandPvsEntities = new(); - [ViewVariables] private GameRunLevel _runLevel; @@ -81,16 +66,6 @@ private set } } - private void InitializeRoundFlow() - { - SubscribeLocalEvent(OnExpandPvs); - } - - private void OnEntityDeleted(EntityUid uid) - { - _expandPvsEntities.Remove(uid); - } - /// /// Returns true if the round's map is eligible to be updated. /// @@ -142,7 +117,7 @@ private void LoadMaps() if (CurrentPreset?.MapPool != null && _prototypeManager.TryIndex(CurrentPreset.MapPool, out var pool) && - pool.Maps.Contains(mainStationMap.ID)) + !pool.Maps.Contains(mainStationMap.ID)) { var msg = Loc.GetString("game-ticker-start-round-invalid-map", ("map", mainStationMap.MapName), @@ -278,6 +253,7 @@ public void StartRound(bool force = false) AnnounceRound(); UpdateInfoText(); RaiseLocalEvent(new RoundStartedEvent(RoundId)); + SendRoundStartedDiscordMessage(); #if EXCEPTION_TOLERANCE } @@ -324,15 +300,14 @@ public void EndRound(string text = "") RunLevel = GameRunLevel.PostRound; - ShowRoundEndScoreboard(text); - } - - private void OnExpandPvs(ref ExpandPvsEvent args) - { - if (RunLevel != GameRunLevel.PostRound) - return; + // The lobby song is set here instead of in RestartRound, + // because ShowRoundEndScoreboard triggers the start of the music playing + // at the end of a round, and this needs to be set before RestartRound + // in order for the lobby song status display to be accurate. + LobbySong = _robustRandom.Pick(_lobbyMusicCollection.PickFiles).ToString(); - args.Entities.AddRange(_expandPvsEntities); + ShowRoundEndScoreboard(text); + SendRoundEndDiscordMessage(); } public void ShowRoundEndScoreboard(string text = "") @@ -352,16 +327,11 @@ public void ShowRoundEndScoreboard(string text = "") //Get the timespan of the round. var roundDuration = RoundDuration(); - // Should already be empty, but just in case. - _expandPvsEntities.Clear(); - _expandPvsPlayers.Clear(); - EntityManager.EntityDeleted += OnEntityDeleted; - //Generate a list of basic player info to display in the end round summary. var listOfPlayerInfo = new List(); // Grab the great big book of all the Minds, we'll need them for this. - var allMinds = _mindTracker.AllMinds; - foreach (var mind in allMinds) + var allMinds = EntityQueryEnumerator(); + while (allMinds.MoveNext(out var mindId, out var mind)) { // TODO don't list redundant observer roles? // I.e., if a player was an observer ghost, then a hamster ghost role, maybe just list hamster and not @@ -369,7 +339,7 @@ public void ShowRoundEndScoreboard(string text = "") var userId = mind.UserId ?? mind.OriginalOwnerUserId; var connected = false; - var observer = mind.AllRoles.Any(role => role is ObserverRole); + var observer = HasComp(mindId); // Continuing if (userId != null && _playerManager.ValidSessionId(userId.Value)) { @@ -381,7 +351,8 @@ public void ShowRoundEndScoreboard(string text = "") contentPlayerData = playerData.ContentData(); } // Finish - var antag = mind.AllRoles.Any(role => role.Antagonist); + + var antag = _roles.MindIsAntagonist(mindId); var playerIcName = "Unknown"; @@ -390,8 +361,11 @@ public void ShowRoundEndScoreboard(string text = "") else if (mind.CurrentEntity != null && TryName(mind.CurrentEntity.Value, out var icName)) playerIcName = icName; - if (Exists(mind.OriginalOwnedEntity)) - _expandPvsPlayers.Add(mind.OriginalOwnedEntity.Value); + var entity = mind.OriginalOwnedEntity; + if (Exists(entity)) + _pvsOverride.AddGlobalOverride(entity.Value, recursive: true); + + var roles = _roles.MindGetAllRoles(mindId); var playerEndRoundInfo = new RoundEndMessageEvent.RoundEndPlayerInfo() { @@ -400,10 +374,10 @@ public void ShowRoundEndScoreboard(string text = "") PlayerOOCName = contentPlayerData?.Name ?? "(IMPOSSIBLE: REGISTERED MIND WITH NO OWNER)", // Character name takes precedence over current entity name PlayerICName = playerIcName, - PlayerEntityUid = mind.OriginalOwnedEntity, + PlayerNetEntity = GetNetEntity(entity), Role = antag - ? mind.AllRoles.First(role => role.Antagonist).Name - : mind.AllRoles.FirstOrDefault()?.Name ?? Loc.GetString("game-ticker-unknown-role"), + ? roles.First(role => role.Antagonist).Name + : roles.FirstOrDefault().Name ?? Loc.GetString("game-ticker-unknown-role"), Antag = antag, Observer = observer, Connected = connected @@ -411,20 +385,6 @@ public void ShowRoundEndScoreboard(string text = "") listOfPlayerInfo.Add(playerEndRoundInfo); } - // Recursively collect entities for the crew manifest. - void RecursePvsEntities(IEnumerable entities) - { - _expandPvsEntities.UnionWith(entities); - - foreach (var entity in entities) - { - if (TryComp(entity, out var xform)) - RecursePvsEntities(xform.ChildEntities); - } - } - - RecursePvsEntities(_expandPvsPlayers); - // This ordering mechanism isn't great (no ordering of minds) but functions var listOfPlayerInfoFinal = listOfPlayerInfo.OrderBy(pi => pi.PlayerOOCName).ToArray(); @@ -434,6 +394,38 @@ void RecursePvsEntities(IEnumerable entities) RaiseLocalEvent(new RoundEndedEvent(RoundId, roundDuration)); } + private async void SendRoundEndDiscordMessage() + { + try + { + if (_webhookIdentifier == null) + return; + + var duration = RoundDuration(); + var content = Loc.GetString("discord-round-notifications-end", + ("id", RoundId), + ("hours", Math.Truncate(duration.TotalHours)), + ("minutes", duration.Minutes), + ("seconds", duration.Seconds)); + var payload = new WebhookPayload { Content = content }; + + await _discord.CreateMessage(_webhookIdentifier.Value, payload); + + if (DiscordRoundEndRole == null) + return; + + content = Loc.GetString("discord-round-notifications-end-ping", ("roleId", DiscordRoundEndRole)); + payload = new WebhookPayload { Content = content }; + payload.AllowedMentions.AllowRoleMentions(); + + await _discord.CreateMessage(_webhookIdentifier.Value, payload); + } + catch (Exception e) + { + Log.Error($"Error while sending discord round end message:\n{e}"); + } + } + public void RestartRound() { // If this game ticker is a dummy, do nothing! @@ -455,10 +447,10 @@ public void RestartRound() PlayersJoinedRoundNormally = 0; RunLevel = GameRunLevel.PreRoundLobby; - LobbySong = _robustRandom.Pick(_lobbyMusicCollection.PickFiles).ToString(); RandomizeLobbyBackground(); ResettingCleanup(); IncrementRoundNumber(); + SendRoundStartingDiscordMessage(); if (!LobbyEnabled) { @@ -478,6 +470,25 @@ public void RestartRound() } } + private async void SendRoundStartingDiscordMessage() + { + try + { + if (_webhookIdentifier == null) + return; + + var content = Loc.GetString("discord-round-notifications-new"); + + var payload = new WebhookPayload { Content = content }; + + await _discord.CreateMessage(_webhookIdentifier.Value, payload); + } + catch (Exception e) + { + Log.Error($"Error while sending discord round starting message:\n{e}"); + } + } + /// /// Cleanup that has to run to clear up anything from the previous round. /// Stuff like wiping the previous map clean. @@ -490,6 +501,13 @@ private void ResettingCleanup() PlayerJoinLobby(player); } + // Round restart cleanup event, so entity systems can reset. + var ev = new RoundRestartCleanupEvent(); + RaiseLocalEvent(ev); + + // So clients' entity systems can clean up too... + RaiseNetworkEvent(ev, Filter.Broadcast()); + // Delete all entities. foreach (var entity in EntityManager.GetEntities().ToArray()) { @@ -524,17 +542,6 @@ private void ResettingCleanup() _allPreviousGameRules.Clear(); - EntityManager.EntityDeleted -= OnEntityDeleted; - _expandPvsPlayers.Clear(); - _expandPvsEntities.Clear(); - - // Round restart cleanup event, so entity systems can reset. - var ev = new RoundRestartCleanupEvent(); - RaiseLocalEvent(ev); - - // So clients' entity systems can clean up too... - RaiseNetworkEvent(ev, Filter.Broadcast()); - DisallowLateJoin = false; _playerGameStatuses.Clear(); foreach (var session in _playerManager.ServerSessions) @@ -608,6 +615,26 @@ private void AnnounceRound() if (proto.Sound != null) SoundSystem.Play(proto.Sound.GetSound(), Filter.Broadcast()); } + + private async void SendRoundStartedDiscordMessage() + { + try + { + if (_webhookIdentifier == null) + return; + + var mapName = _gameMapManager.GetSelectedMap()?.MapName ?? Loc.GetString("discord-round-notifications-unknown-map"); + var content = Loc.GetString("discord-round-notifications-started", ("id", RoundId), ("map", mapName)); + + var payload = new WebhookPayload { Content = content }; + + await _discord.CreateMessage(_webhookIdentifier.Value, payload); + } + catch (Exception e) + { + Log.Error($"Error while sending discord round start message:\n{e}"); + } + } } public enum GameRunLevel diff --git a/Content.Server/GameTicking/GameTicker.Spawning.cs b/Content.Server/GameTicking/GameTicker.Spawning.cs index f97e603d97c..9d0a9d3beb1 100644 --- a/Content.Server/GameTicking/GameTicker.Spawning.cs +++ b/Content.Server/GameTicking/GameTicker.Spawning.cs @@ -11,6 +11,7 @@ using Content.Shared.Database; using Content.Shared.Preferences; using Content.Shared.Roles; +using Content.Shared.Roles.Jobs; using JetBrains.Annotations; using Robust.Server.Player; using Robust.Shared.Map; @@ -18,13 +19,13 @@ using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Utility; -using Job = Content.Server.Roles.Job; namespace Content.Server.GameTicking { public sealed partial class GameTicker { [Dependency] private readonly IAdminManager _adminManager = default!; + [Dependency] private readonly SharedJobSystem _jobs = default!; [ValidatePrototypeId] private const string ObserverPrototypeName = "MobObserver"; @@ -103,7 +104,7 @@ private void SpawnPlayers(List readyPlayers, Dictionary _playerManager.GetSessionByUserId(x)).ToArray(), profiles, force)); } - private void SpawnPlayer(IPlayerSession player, EntityUid station, string? jobId = null, bool lateJoin = true) + private void SpawnPlayer(IPlayerSession player, EntityUid station, string? jobId = null, bool lateJoin = true, bool silent = false) { var character = GetPlayerProfile(player); @@ -113,10 +114,10 @@ private void SpawnPlayer(IPlayerSession player, EntityUid station, string? jobId if (jobId != null && !_playTimeTrackings.IsAllowed(player, jobId)) return; - SpawnPlayer(player, character, station, jobId, lateJoin); + SpawnPlayer(player, character, station, jobId, lateJoin, silent); } - private void SpawnPlayer(IPlayerSession player, HumanoidCharacterProfile character, EntityUid station, string? jobId = null, bool lateJoin = true) + private void SpawnPlayer(IPlayerSession player, HumanoidCharacterProfile character, EntityUid station, string? jobId = null, bool lateJoin = true, bool silent = false) { // Can't spawn players with a dummy ticker! if (DummyTicker) @@ -149,7 +150,7 @@ private void SpawnPlayer(IPlayerSession player, HumanoidCharacterProfile charact // Do nothing, something else has handled spawning this player for us! if (bev.Handled) { - PlayerJoinGame(player); + PlayerJoinGame(player, silent); return; } @@ -176,7 +177,7 @@ private void SpawnPlayer(IPlayerSession player, HumanoidCharacterProfile charact return; } - PlayerJoinGame(player); + PlayerJoinGame(player, silent); var data = player.ContentData(); @@ -186,25 +187,25 @@ private void SpawnPlayer(IPlayerSession player, HumanoidCharacterProfile charact _mind.SetUserId(newMind, data.UserId); var jobPrototype = _prototypeManager.Index(jobId); - var job = new Job(newMind, jobPrototype); - _mind.AddRole(newMind, job); + var job = new JobComponent { PrototypeId = jobId }; + _roles.MindAddRole(newMind, job, silent: silent); + var jobName = _jobs.MindTryGetJobName(newMind); _playTimeTrackings.PlayerRolesChanged(player); - var mobMaybe = _stationSpawning.SpawnPlayerCharacterOnStation(station, job, character); DebugTools.AssertNotNull(mobMaybe); var mob = mobMaybe!.Value; _mind.TransferTo(newMind, mob); - if (lateJoin) + if (lateJoin && !silent) { _chatSystem.DispatchStationAnnouncement(station, Loc.GetString( "latejoin-arrival-announcement", ("character", MetaData(mob).EntityName), - ("job", CultureInfo.CurrentCulture.TextInfo.ToTitleCase(job.Name)) + ("job", CultureInfo.CurrentCulture.TextInfo.ToTitleCase(jobName)) ), Loc.GetString("latejoin-arrival-sender"), playDefaultSound: false); } @@ -218,9 +219,9 @@ private void SpawnPlayer(IPlayerSession player, HumanoidCharacterProfile charact _stationJobs.TryAssignJob(station, jobPrototype); if (lateJoin) - _adminLogger.Add(LogType.LateJoin, LogImpact.Medium, $"Player {player.Name} late joined as {character.Name:characterName} on station {Name(station):stationName} with {ToPrettyString(mob):entity} as a {job.Name:jobName}."); + _adminLogger.Add(LogType.LateJoin, LogImpact.Medium, $"Player {player.Name} late joined as {character.Name:characterName} on station {Name(station):stationName} with {ToPrettyString(mob):entity} as a {jobName:jobName}."); else - _adminLogger.Add(LogType.RoundStartJoin, LogImpact.Medium, $"Player {player.Name} joined as {character.Name:characterName} on station {Name(station):stationName} with {ToPrettyString(mob):entity} as a {job.Name:jobName}."); + _adminLogger.Add(LogType.RoundStartJoin, LogImpact.Medium, $"Player {player.Name} joined as {character.Name:characterName} on station {Name(station):stationName} with {ToPrettyString(mob):entity} as a {jobName:jobName}."); // Make sure they're aware of extended access. if (Comp(station).ExtendedAccess @@ -230,7 +231,7 @@ private void SpawnPlayer(IPlayerSession player, HumanoidCharacterProfile charact _chatManager.DispatchServerMessage(player, Loc.GetString("job-greet-crew-shortages")); } - if (TryComp(station, out MetaDataComponent? metaData)) + if (!silent && TryComp(station, out MetaDataComponent? metaData)) { _chatManager.DispatchServerMessage(player, Loc.GetString("job-greet-station-name", ("stationName", metaData.EntityName))); @@ -238,9 +239,18 @@ private void SpawnPlayer(IPlayerSession player, HumanoidCharacterProfile charact // Arrivals is unable to do this during spawning as no actor is attached yet. // We also want this message last. - if (lateJoin && _arrivals.Enabled) + if (!silent && lateJoin && _arrivals.Enabled) { - _chatManager.DispatchServerMessage(player, Loc.GetString("latejoin-arrivals-direction")); + var arrival = _arrivals.NextShuttleArrival(); + if (arrival == null) + { + _chatManager.DispatchServerMessage(player, Loc.GetString("latejoin-arrivals-direction")); + } + else + { + _chatManager.DispatchServerMessage(player, Loc.GetString("latejoin-arrivals-direction-time", + ("time", $"{arrival:mm\\:ss}"))); + } } // We raise this event directed to the mob, but also broadcast it so game rules can do something now. @@ -260,7 +270,14 @@ public void Respawn(IPlayerSession player) SpawnPlayer(player, EntityUid.Invalid); } - public void MakeJoinGame(IPlayerSession player, EntityUid station, string? jobId = null) + /// + /// Makes a player join into the game and spawn on a staiton. + /// + /// The player joining + /// The station they're spawning on + /// An optional job for them to spawn as + /// Whether or not the player should be greeted upon joining + public void MakeJoinGame(IPlayerSession player, EntityUid station, string? jobId = null, bool silent = false) { if (!_playerGameStatuses.ContainsKey(player.UserId)) return; @@ -268,7 +285,7 @@ public void MakeJoinGame(IPlayerSession player, EntityUid station, string? jobId if (!_userDb.IsLoadComplete(player)) return; - SpawnPlayer(player, station, jobId); + SpawnPlayer(player, station, jobId, silent: silent); } /// @@ -297,15 +314,15 @@ public void SpawnObserver(IPlayerSession player) if (mind == null) { mind = _mind.CreateMind(player.UserId); - _mind.SetUserId(mind, player.UserId); - _mind.AddRole(mind, new ObserverRole(mind)); + _mind.SetUserId(mind.Value, player.UserId); + _roles.MindAddRole(mind.Value, new ObserverRoleComponent()); } var name = GetPlayerProfile(player).Name; var ghost = SpawnObserverMob(); - MetaData(ghost).EntityName = name; + _metaData.SetEntityName(ghost, name); _ghost.SetCanReturnToBody(ghost, false); - _mind.TransferTo(mind, ghost); + _mind.TransferTo(mind.Value, ghost); } #region Mob Spawning Helpers diff --git a/Content.Server/GameTicking/GameTicker.cs b/Content.Server/GameTicking/GameTicker.cs index fbe40ee6d67..14819fb0aca 100644 --- a/Content.Server/GameTicking/GameTicker.cs +++ b/Content.Server/GameTicking/GameTicker.cs @@ -5,7 +5,6 @@ using Content.Server.Database; using Content.Server.Ghost; using Content.Server.Maps; -using Content.Server.Mind; using Content.Server.Players.PlayTimeTracking; using Content.Server.Preferences.Managers; using Content.Server.ServerUpdates; @@ -14,33 +13,60 @@ using Content.Shared.Chat; using Content.Shared.Damage; using Content.Shared.GameTicking; +using Content.Shared.Mind; using Content.Shared.Mobs.Systems; using Content.Shared.Roles; using Robust.Server; using Robust.Server.GameObjects; +using Robust.Server.GameStates; using Robust.Shared.Configuration; using Robust.Shared.Console; -#if EXCEPTION_TOLERANCE -using Robust.Shared.Exceptions; -#endif using Robust.Shared.Map; using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Timing; using Robust.Shared.Utility; +#if EXCEPTION_TOLERANCE +using Robust.Shared.Exceptions; +#endif namespace Content.Server.GameTicking { public sealed partial class GameTicker : SharedGameTicker { + [Dependency] private readonly IAdminLogManager _adminLogger = default!; + [Dependency] private readonly IBanManager _banManager = default!; + [Dependency] private readonly IBaseServer _baseServer = default!; + [Dependency] private readonly IChatManager _chatManager = default!; + [Dependency] private readonly IConfigurationManager _configurationManager = default!; + [Dependency] private readonly IConsoleHost _consoleHost = default!; + [Dependency] private readonly IGameMapManager _gameMapManager = default!; + [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly ILogManager _logManager = default!; + [Dependency] private readonly IMapManager _mapManager = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly IRobustRandom _robustRandom = default!; +#if EXCEPTION_TOLERANCE + [Dependency] private readonly IRuntimeLog _runtimeLog = default!; +#endif + [Dependency] private readonly IServerPreferencesManager _prefsManager = default!; + [Dependency] private readonly IServerDbManager _db = default!; [Dependency] private readonly ArrivalsSystem _arrivals = default!; + [Dependency] private readonly ChatSystem _chatSystem = default!; + [Dependency] private readonly DamageableSystem _damageable = default!; [Dependency] private readonly MapLoaderSystem _map = default!; - [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly GhostSystem _ghost = default!; - [Dependency] private readonly MindSystem _mind = default!; - [Dependency] private readonly MindTrackerSystem _mindTracker = default!; + [Dependency] private readonly SharedMindSystem _mind = default!; [Dependency] private readonly MobStateSystem _mobState = default!; - [Dependency] private readonly IAdminLogManager _adminLogs = default!; + [Dependency] private readonly PlayTimeTrackingSystem _playTimeTrackings = default!; + [Dependency] private readonly PvsOverrideSystem _pvsOverride = default!; + [Dependency] private readonly ServerUpdateManager _serverUpdates = default!; + [Dependency] private readonly StationJobsSystem _stationJobs = default!; + [Dependency] private readonly StationSpawningSystem _stationSpawning = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly UserDbDataManager _userDb = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; + [Dependency] private readonly SharedRoleSystem _roles = default!; [ViewVariables] private bool _initialized; [ViewVariables] private bool _postInitialized; @@ -70,7 +96,6 @@ public override void Initialize() "Overflow role does not have the correct name!"); InitializeGameRules(); InitializeReplays(); - InitializeRoundFlow(); _initialized = true; } @@ -106,31 +131,5 @@ public override void Update(float frameTime) base.Update(frameTime); UpdateRoundFlow(frameTime); } - - [Dependency] private readonly IMapManager _mapManager = default!; - [Dependency] private readonly IGameTiming _gameTiming = default!; - [Dependency] private readonly IConfigurationManager _configurationManager = default!; - [Dependency] private readonly IChatManager _chatManager = default!; - [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - [Dependency] private readonly IRobustRandom _robustRandom = default!; - [Dependency] private readonly IServerPreferencesManager _prefsManager = default!; - [Dependency] private readonly IBaseServer _baseServer = default!; - [Dependency] private readonly IGameMapManager _gameMapManager = default!; - [Dependency] private readonly IServerDbManager _db = default!; - [Dependency] private readonly IAdminLogManager _adminLogger = default!; - [Dependency] private readonly ILogManager _logManager = default!; - [Dependency] private readonly IConsoleHost _consoleHost = default!; -#if EXCEPTION_TOLERANCE - [Dependency] private readonly IRuntimeLog _runtimeLog = default!; -#endif - [Dependency] private readonly StationSpawningSystem _stationSpawning = default!; - [Dependency] private readonly StationJobsSystem _stationJobs = default!; - [Dependency] private readonly DamageableSystem _damageable = default!; - [Dependency] private readonly GhostSystem _ghosts = default!; - [Dependency] private readonly IBanManager _banManager = default!; - [Dependency] private readonly ChatSystem _chatSystem = default!; - [Dependency] private readonly ServerUpdateManager _serverUpdates = default!; - [Dependency] private readonly PlayTimeTrackingSystem _playTimeTrackings = default!; - [Dependency] private readonly UserDbDataManager _userDb = default!; } } diff --git a/Content.Server/GameTicking/Presets/GamePresetPrototype.cs b/Content.Server/GameTicking/Presets/GamePresetPrototype.cs index e3edb894c02..aff42cb4a7d 100644 --- a/Content.Server/GameTicking/Presets/GamePresetPrototype.cs +++ b/Content.Server/GameTicking/Presets/GamePresetPrototype.cs @@ -13,34 +13,34 @@ namespace Content.Server.GameTicking.Presets public sealed class GamePresetPrototype : IPrototype { [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [DataField("alias")] - public readonly string[] Alias = Array.Empty(); + public string[] Alias = Array.Empty(); [DataField("name")] - public readonly string ModeTitle = "????"; + public string ModeTitle = "????"; [DataField("description")] - public readonly string Description = string.Empty; + public string Description = string.Empty; [DataField("showInVote")] - public readonly bool ShowInVote; + public bool ShowInVote; [DataField("minPlayers")] - public readonly int? MinPlayers; + public int? MinPlayers; [DataField("maxPlayers")] - public readonly int? MaxPlayers; + public int? MaxPlayers; [DataField("rules", customTypeSerializer: typeof(PrototypeIdListSerializer))] - public IReadOnlyList Rules { get; } = Array.Empty(); + public IReadOnlyList Rules { get; private set; } = Array.Empty(); /// /// If specified, the gamemode will only be run with these maps. /// If none are elligible, the global fallback will be used. /// [DataField("supportedMaps", customTypeSerializer: typeof(PrototypeIdSerializer))] - public readonly string? MapPool; + public string? MapPool; } } diff --git a/Content.Server/GameTicking/Rules/Components/DeathMatchRuleComponent.cs b/Content.Server/GameTicking/Rules/Components/DeathMatchRuleComponent.cs index 7a11eb7b563..cb2c4138702 100644 --- a/Content.Server/GameTicking/Rules/Components/DeathMatchRuleComponent.cs +++ b/Content.Server/GameTicking/Rules/Components/DeathMatchRuleComponent.cs @@ -1,33 +1,46 @@ -namespace Content.Server.GameTicking.Rules.Components; +using Content.Shared.FixedPoint; +using Content.Shared.Roles; +using Content.Shared.Storage; +using Robust.Shared.Network; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Server.GameTicking.Rules.Components; /// -/// Simple GameRule that will do a free-for-all death match. -/// Kill everybody else to win. +/// Gamerule that ends when a player gets a certain number of kills. /// [RegisterComponent, Access(typeof(DeathMatchRuleSystem))] -public sealed class DeathMatchRuleComponent : Component +public sealed partial class DeathMatchRuleComponent : Component { + /// + /// The number of points a player has to get to win. + /// + [DataField("killCap"), ViewVariables(VVAccess.ReadWrite)] + public FixedPoint2 KillCap = 31; + /// /// How long until the round restarts /// [DataField("restartDelay"), ViewVariables(VVAccess.ReadWrite)] - public float RestartDelay = 10f; + public TimeSpan RestartDelay = TimeSpan.FromSeconds(10f); /// - /// How long after a person dies will the restart be checked + /// The person who won. + /// We store this here in case of some assist shenanigans. /// - [DataField("deadCheckDelay"), ViewVariables(VVAccess.ReadWrite)] - public float DeadCheckDelay = 5f; + [DataField("victor")] + public NetUserId? Victor; /// - /// A timer for checking after a death + /// An entity spawned after a player is killed. /// - [DataField("deadCheckTimer"), ViewVariables(VVAccess.ReadWrite)] - public float? DeadCheckTimer; + [DataField("rewardSpawns")] + public List RewardSpawns = new(); /// - /// A timer for the restart. + /// The gear all players spawn with. /// - [DataField("restartTimer"), ViewVariables(VVAccess.ReadWrite)] - public float? RestartTimer; + [DataField("gear", customTypeSerializer: typeof(PrototypeIdSerializer)), ViewVariables(VVAccess.ReadWrite)] + public string Gear = "DeathMatchGear"; } diff --git a/Content.Server/GameTicking/Rules/Components/GameRuleComponent.cs b/Content.Server/GameTicking/Rules/Components/GameRuleComponent.cs index 640b6cb8390..cc384b47d3c 100644 --- a/Content.Server/GameTicking/Rules/Components/GameRuleComponent.cs +++ b/Content.Server/GameTicking/Rules/Components/GameRuleComponent.cs @@ -1,11 +1,13 @@ -namespace Content.Server.GameTicking.Rules.Components; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + +namespace Content.Server.GameTicking.Rules.Components; /// /// Component attached to all gamerule entities. /// Used to both track the entity as well as store basic data /// [RegisterComponent] -public sealed class GameRuleComponent : Component +public sealed partial class GameRuleComponent : Component { /// /// Whether or not the rule is active. @@ -14,6 +16,12 @@ public sealed class GameRuleComponent : Component [DataField("active")] public bool Active; + /// + /// Game time when game rule was activated + /// + [DataField("activatedAt", customTypeSerializer:typeof(TimeOffsetSerializer))] + public TimeSpan ActivatedAt; + /// /// Whether or not the gamerule finished. /// Used for tracking whether a non-active gamerule has been started before. diff --git a/Content.Server/GameTicking/Rules/Components/InactivityRuleComponent.cs b/Content.Server/GameTicking/Rules/Components/InactivityRuleComponent.cs index ae9657a3003..5d1bd5f0730 100644 --- a/Content.Server/GameTicking/Rules/Components/InactivityRuleComponent.cs +++ b/Content.Server/GameTicking/Rules/Components/InactivityRuleComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.GameTicking.Rules.Components; /// Gamerule that ends the round after a period of inactivity. /// [RegisterComponent, Access(typeof(InactivityTimeRestartRuleSystem))] -public sealed class InactivityRuleComponent : Component +public sealed partial class InactivityRuleComponent : Component { /// /// How long the round must be inactive to restart diff --git a/Content.Server/GameTicking/Rules/Components/KillCalloutRuleComponent.cs b/Content.Server/GameTicking/Rules/Components/KillCalloutRuleComponent.cs new file mode 100644 index 00000000000..e82a952290f --- /dev/null +++ b/Content.Server/GameTicking/Rules/Components/KillCalloutRuleComponent.cs @@ -0,0 +1,32 @@ +namespace Content.Server.GameTicking.Rules.Components; + +/// +/// This is used for a rule that announces kills globally. +/// +[RegisterComponent, Access(typeof(KillCalloutRuleSystem))] +public sealed partial class KillCalloutRuleComponent : Component +{ + /// + /// Root used to generate kill callouts + /// + [DataField("killCalloutPrefix")] + public string KillCalloutPrefix = "death-match-kill-callout-"; + + /// + /// A value used to randomly select a kill callout + /// + [DataField("killCalloutAmount")] + public int KillCalloutAmount = 60; + + /// + /// Root used to generate kill callouts when a player is killed by the environment + /// + [DataField("environmentKillCallouts")] + public string SelfKillCalloutPrefix = "death-match-kill-callout-env-"; + + /// + /// A value used to randomly select a kill callout when a player is killed by the environment + /// + [DataField("selfKillCalloutAmount")] + public int SelfKillCalloutAmount = 10; +} diff --git a/Content.Server/GameTicking/Rules/Components/MaxTimeRestartRuleComponent.cs b/Content.Server/GameTicking/Rules/Components/MaxTimeRestartRuleComponent.cs index 45d9d387402..4706f6216b3 100644 --- a/Content.Server/GameTicking/Rules/Components/MaxTimeRestartRuleComponent.cs +++ b/Content.Server/GameTicking/Rules/Components/MaxTimeRestartRuleComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.GameTicking.Rules.Components; /// Configures the game rule. /// [RegisterComponent] -public sealed class MaxTimeRestartRuleComponent : Component +public sealed partial class MaxTimeRestartRuleComponent : Component { /// /// The max amount of time the round can last diff --git a/Content.Server/GameTicking/Rules/Components/NinjaRuleComponent.cs b/Content.Server/GameTicking/Rules/Components/NinjaRuleComponent.cs new file mode 100644 index 00000000000..62eee90d507 --- /dev/null +++ b/Content.Server/GameTicking/Rules/Components/NinjaRuleComponent.cs @@ -0,0 +1,37 @@ +using Content.Server.Ninja.Systems; +using Content.Shared.Communications; +using Content.Shared.Objectives; +using Robust.Shared.Audio; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; + +namespace Content.Server.GameTicking.Rules.Components; + +[RegisterComponent, Access(typeof(SpaceNinjaSystem))] +public sealed partial class NinjaRuleComponent : Component +{ + /// + /// All ninja minds that are using this rule. + /// Their SpaceNinjaComponent Rule field should point back to this rule. + /// + [DataField("minds")] + public List Minds = new(); + + /// + /// List of objective prototype ids to add + /// + [DataField("objectives", required: true, customTypeSerializer: typeof(PrototypeIdListSerializer))] + public List Objectives = new(); + + /// + /// List of threats that can be called in. Copied onto when gloves are enabled. + /// + [DataField("threats", required: true)] + public List Threats = new(); + + /// + /// Sound played when making the player a ninja via antag control or ghost role + /// + [DataField("greetingSound", customTypeSerializer: typeof(SoundSpecifierTypeSerializer))] + public SoundSpecifier? GreetingSound = new SoundPathSpecifier("/Audio/Misc/ninja_greeting.ogg"); +} diff --git a/Content.Server/GameTicking/Rules/Components/NukeOperativeComponent.cs b/Content.Server/GameTicking/Rules/Components/NukeOperativeComponent.cs index b27e8b73dc4..59fc9526dca 100644 --- a/Content.Server/GameTicking/Rules/Components/NukeOperativeComponent.cs +++ b/Content.Server/GameTicking/Rules/Components/NukeOperativeComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.GameTicking.Rules.Components; /// This is used for tagging a mob as a nuke operative. /// [RegisterComponent] -public sealed class NukeOperativeComponent : Component +public sealed partial class NukeOperativeComponent : Component { /// /// Path to antagonist alert sound. diff --git a/Content.Server/GameTicking/Rules/Components/NukeOperativeSpawnerComponent.cs b/Content.Server/GameTicking/Rules/Components/NukeOperativeSpawnerComponent.cs index b2f63bd1ff4..56907788a56 100644 --- a/Content.Server/GameTicking/Rules/Components/NukeOperativeSpawnerComponent.cs +++ b/Content.Server/GameTicking/Rules/Components/NukeOperativeSpawnerComponent.cs @@ -9,7 +9,7 @@ namespace Content.Server.GameTicking.Rules.Components; /// TODO: Remove once systems can request spawns from the ghost role system directly. /// [RegisterComponent] -public sealed class NukeOperativeSpawnerComponent : Component +public sealed partial class NukeOperativeSpawnerComponent : Component { [DataField("name", required:true)] public string OperativeName = default!; diff --git a/Content.Server/GameTicking/Rules/Components/NukeOpsShuttleComponent.cs b/Content.Server/GameTicking/Rules/Components/NukeOpsShuttleComponent.cs new file mode 100644 index 00000000000..358b157cdf3 --- /dev/null +++ b/Content.Server/GameTicking/Rules/Components/NukeOpsShuttleComponent.cs @@ -0,0 +1,9 @@ +namespace Content.Server.GameTicking.Rules.Components; + +/// +/// Tags grid as nuke ops shuttle +/// +[RegisterComponent] +public sealed partial class NukeOpsShuttleComponent : Component +{ +} diff --git a/Content.Server/GameTicking/Rules/Components/NukeopsRuleComponent.cs b/Content.Server/GameTicking/Rules/Components/NukeopsRuleComponent.cs index 185146cffd8..8795bf1950b 100644 --- a/Content.Server/GameTicking/Rules/Components/NukeopsRuleComponent.cs +++ b/Content.Server/GameTicking/Rules/Components/NukeopsRuleComponent.cs @@ -1,21 +1,19 @@ using Content.Server.NPC.Components; using Content.Server.StationEvents.Events; using Content.Shared.Dataset; -using Content.Shared.Humanoid.Prototypes; using Content.Shared.Roles; -using Robust.Server.Player; -using Robust.Shared.Audio; using Robust.Shared.Map; +using Robust.Shared.Players; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Set; using Robust.Shared.Utility; namespace Content.Server.GameTicking.Rules.Components; [RegisterComponent, Access(typeof(NukeopsRuleSystem), typeof(LoneOpsSpawnRule))] -public sealed class NukeopsRuleComponent : Component +public sealed partial class NukeopsRuleComponent : Component { /// /// The minimum needed amount of players @@ -44,6 +42,48 @@ public sealed class NukeopsRuleComponent : Component [DataField("spawnOutpost")] public bool SpawnOutpost = true; + /// + /// Whether or not nukie left their outpost + /// + [DataField("leftOutpost")] + public bool LeftOutpost = false; + + /// + /// Enables opportunity to get extra TC for war declaration + /// + [DataField("canEnableWarOps")] + public bool CanEnableWarOps = true; + + /// + /// Indicates time when war has been declared, null if not declared + /// + [DataField("warDeclaredTime", customTypeSerializer: typeof(TimeOffsetSerializer))] + public TimeSpan? WarDeclaredTime; + + /// + /// This amount of TC will be given to each nukie + /// + [DataField("warTCAmountPerNukie")] + public int WarTCAmountPerNukie = 40; + + /// + /// Time allowed for declaration of war + /// + [DataField("warDeclarationDelay")] + public TimeSpan WarDeclarationDelay = TimeSpan.FromMinutes(6); + + /// + /// Delay between war declaration and nuke ops arrival on station map. Gives crew time to prepare + /// + [DataField("warNukieArriveDelay")] + public TimeSpan? WarNukieArriveDelay = TimeSpan.FromMinutes(15); + + /// + /// Minimal operatives count for war declaration + /// + [DataField("warDeclarationMinOps")] + public int WarDeclarationMinOps = 4; + [DataField("spawnPointProto", customTypeSerializer: typeof(PrototypeIdSerializer))] public string SpawnPointPrototype = "SpawnPointNukies"; @@ -98,19 +138,19 @@ public sealed class NukeopsRuleComponent : Component /// Cached starting gear prototypes. /// [DataField("startingGearPrototypes")] - public readonly Dictionary StartingGearPrototypes = new (); + public Dictionary StartingGearPrototypes = new (); /// /// Cached operator name prototypes. /// [DataField("operativeNames")] - public readonly Dictionary> OperativeNames = new(); + public Dictionary> OperativeNames = new(); /// /// Data to be used in for an operative once the Mind has been added. /// [DataField("operativeMindPendingData")] - public readonly Dictionary OperativeMindPendingData = new(); + public Dictionary OperativeMindPendingData = new(); /// /// Players who played as an operative at some point in the round. @@ -118,7 +158,7 @@ public sealed class NukeopsRuleComponent : Component /// /// todo: don't store sessions, dingus [DataField("operativePlayers")] - public readonly Dictionary OperativePlayers = new(); + public Dictionary OperativePlayers = new(); [DataField("faction", customTypeSerializer: typeof(PrototypeIdSerializer), required: true)] public string Faction = default!; diff --git a/Content.Server/GameTicking/Rules/Components/PiratesRuleComponent.cs b/Content.Server/GameTicking/Rules/Components/PiratesRuleComponent.cs index 1c8045d4845..1d03b41d773 100644 --- a/Content.Server/GameTicking/Rules/Components/PiratesRuleComponent.cs +++ b/Content.Server/GameTicking/Rules/Components/PiratesRuleComponent.cs @@ -3,10 +3,10 @@ namespace Content.Server.GameTicking.Rules.Components; [RegisterComponent, Access(typeof(PiratesRuleSystem))] -public sealed class PiratesRuleComponent : Component +public sealed partial class PiratesRuleComponent : Component { [ViewVariables] - public List Pirates = new(); + public List Pirates = new(); [ViewVariables] public EntityUid PirateShip = EntityUid.Invalid; [ViewVariables] @@ -18,7 +18,7 @@ public sealed class PiratesRuleComponent : Component /// Path to antagonist alert sound. /// [DataField("pirateAlertSound")] - public readonly SoundSpecifier PirateAlertSound = new SoundPathSpecifier( + public SoundSpecifier PirateAlertSound = new SoundPathSpecifier( "/Audio/Ambience/Antag/pirate_start.ogg", AudioParams.Default.WithVolume(4)); } diff --git a/Content.Server/GameTicking/Rules/Components/RespawnDeadRuleComponent.cs b/Content.Server/GameTicking/Rules/Components/RespawnDeadRuleComponent.cs new file mode 100644 index 00000000000..fafe811dd92 --- /dev/null +++ b/Content.Server/GameTicking/Rules/Components/RespawnDeadRuleComponent.cs @@ -0,0 +1,9 @@ +namespace Content.Server.GameTicking.Rules.Components; + +/// +/// This is used for gamemodes that automatically respawn players when they're no longer alive. +/// +[RegisterComponent, Access(typeof(RespawnRuleSystem))] +public sealed partial class RespawnDeadRuleComponent : Component +{ +} diff --git a/Content.Server/GameTicking/Rules/Components/RespawnTrackerComponent.cs b/Content.Server/GameTicking/Rules/Components/RespawnTrackerComponent.cs new file mode 100644 index 00000000000..3d338c2d133 --- /dev/null +++ b/Content.Server/GameTicking/Rules/Components/RespawnTrackerComponent.cs @@ -0,0 +1,30 @@ +using Robust.Shared.Network; + +namespace Content.Server.GameTicking.Rules.Components; + +/// +/// This is used for globally tracking players that need to be respawned. +/// Used on gamerule entities. +/// +[RegisterComponent, Access(typeof(RespawnRuleSystem))] +public sealed partial class RespawnTrackerComponent : Component +{ + /// + /// A list of the people that should be respawned. + /// Used to make sure that we don't respawn aghosts or observers. + /// + [DataField("players")] + public HashSet Players = new(); + + /// + /// The delay between dying and respawning. + /// + [DataField("respawnDelay")] + public TimeSpan RespawnDelay = TimeSpan.Zero; + + /// + /// A dictionary of player netuserids and when they will respawn. + /// + [DataField("respawnQueue")] + public Dictionary RespawnQueue = new(); +} diff --git a/Content.Server/GameTicking/Rules/Components/SandboxRuleComponent.cs b/Content.Server/GameTicking/Rules/Components/SandboxRuleComponent.cs index 6f79b892c52..9ed7b4e5296 100644 --- a/Content.Server/GameTicking/Rules/Components/SandboxRuleComponent.cs +++ b/Content.Server/GameTicking/Rules/Components/SandboxRuleComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.GameTicking.Rules.Components; [RegisterComponent, Access(typeof(SandboxRuleSystem))] -public sealed class SandboxRuleComponent : Component +public sealed partial class SandboxRuleComponent : Component { } diff --git a/Content.Server/GameTicking/Rules/Components/SecretRuleComponent.cs b/Content.Server/GameTicking/Rules/Components/SecretRuleComponent.cs index f6a67267a33..f2d21ee93cd 100644 --- a/Content.Server/GameTicking/Rules/Components/SecretRuleComponent.cs +++ b/Content.Server/GameTicking/Rules/Components/SecretRuleComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.GameTicking.Rules.Components; [RegisterComponent, Access(typeof(SecretRuleSystem))] -public sealed class SecretRuleComponent : Component +public sealed partial class SecretRuleComponent : Component { /// /// The gamerules that get added by secret. diff --git a/Content.Server/GameTicking/Rules/Components/TraitorRuleComponent.cs b/Content.Server/GameTicking/Rules/Components/TraitorRuleComponent.cs index 844aa74f3d3..883abef52fa 100644 --- a/Content.Server/GameTicking/Rules/Components/TraitorRuleComponent.cs +++ b/Content.Server/GameTicking/Rules/Components/TraitorRuleComponent.cs @@ -1,5 +1,4 @@ -using Content.Server.Roles; -using Content.Shared.Preferences; +using Content.Shared.Preferences; using Content.Shared.Roles; using Robust.Server.Player; using Robust.Shared.Audio; @@ -8,14 +7,14 @@ namespace Content.Server.GameTicking.Rules.Components; [RegisterComponent, Access(typeof(TraitorRuleSystem))] -public sealed class TraitorRuleComponent : Component +public sealed partial class TraitorRuleComponent : Component { - public List Traitors = new(); + public readonly List TraitorMinds = new(); [DataField("traitorPrototypeId", customTypeSerializer: typeof(PrototypeIdSerializer))] public string TraitorPrototypeId = "Traitor"; - public int TotalTraitors => Traitors.Count; + public int TotalTraitors => TraitorMinds.Count; public string[] Codewords = new string[3]; public enum SelectionState diff --git a/Content.Server/GameTicking/Rules/Components/ZombieRuleComponent.cs b/Content.Server/GameTicking/Rules/Components/ZombieRuleComponent.cs index 84b440d69e2..5f31f52fc43 100644 --- a/Content.Server/GameTicking/Rules/Components/ZombieRuleComponent.cs +++ b/Content.Server/GameTicking/Rules/Components/ZombieRuleComponent.cs @@ -1,12 +1,13 @@ -using Content.Shared.Roles; +using Content.Shared.Roles; using Robust.Shared.Audio; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.GameTicking.Rules.Components; [RegisterComponent, Access(typeof(ZombieRuleSystem))] -public sealed class ZombieRuleComponent : Component +public sealed partial class ZombieRuleComponent : Component { [DataField("initialInfectedNames")] public Dictionary InitialInfectedNames = new(); @@ -93,5 +94,6 @@ public sealed class ZombieRuleComponent : Component [DataField("shuttleCalled")] public bool ShuttleCalled; - public const string ZombifySelfActionPrototype = "TurnUndead"; + [ValidatePrototypeId] + public const string ZombifySelfActionPrototype = "ActionTurnUndead"; } diff --git a/Content.Server/GameTicking/Rules/DeathMatchRuleSystem.cs b/Content.Server/GameTicking/Rules/DeathMatchRuleSystem.cs index 79c3394d11a..042455e75df 100644 --- a/Content.Server/GameTicking/Rules/DeathMatchRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/DeathMatchRuleSystem.cs @@ -1,12 +1,14 @@ -using Content.Server.Chat.Managers; +using Content.Server.Administration.Commands; using Content.Server.GameTicking.Rules.Components; -using Content.Shared.CCVar; -using Content.Shared.Damage; -using Content.Shared.Mobs.Components; -using Content.Shared.Mobs.Systems; +using Content.Server.KillTracking; +using Content.Server.Mind; +using Content.Server.Points; +using Content.Server.RoundEnd; +using Content.Server.Station.Systems; +using Content.Shared.Points; +using Content.Shared.Storage; using Robust.Server.Player; -using Robust.Shared.Configuration; -using Robust.Shared.Enums; +using Robust.Shared.Utility; namespace Content.Server.GameTicking.Rules; @@ -15,116 +17,116 @@ namespace Content.Server.GameTicking.Rules; /// public sealed class DeathMatchRuleSystem : GameRuleSystem { - [Dependency] private readonly IPlayerManager _playerManager = default!; - [Dependency] private readonly IChatManager _chatManager = default!; - [Dependency] private readonly MobStateSystem _mobStateSystem = default!; - [Dependency] private readonly IConfigurationManager _cfg = default!; + [Dependency] private readonly IPlayerManager _player = default!; + [Dependency] private readonly MindSystem _mind = default!; + [Dependency] private readonly PointSystem _point = default!; + [Dependency] private readonly RespawnRuleSystem _respawn = default!; + [Dependency] private readonly RoundEndSystem _roundEnd = default!; + [Dependency] private readonly StationSpawningSystem _stationSpawning = default!; public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnHealthChanged); - _playerManager.PlayerStatusChanged += OnPlayerStatusChanged; + SubscribeLocalEvent(OnBeforeSpawn); + SubscribeLocalEvent(OnSpawnComplete); + SubscribeLocalEvent(OnKillReported); + SubscribeLocalEvent(OnPointChanged); + SubscribeLocalEvent(OnRoundEndTextAppend); } - public override void Shutdown() + private void OnBeforeSpawn(PlayerBeforeSpawnEvent ev) { - base.Shutdown(); - _playerManager.PlayerStatusChanged -= OnPlayerStatusChanged; - } - - protected override void Started(EntityUid uid, DeathMatchRuleComponent component, GameRuleComponent gameRule, GameRuleStartedEvent args) - { - _chatManager.DispatchServerAnnouncement(Loc.GetString("rule-death-match-added-announcement")); + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var dm, out var tracker, out var point, out var rule)) + { + if (!GameTicker.IsGameRuleActive(uid, rule)) + continue; - } + var newMind = _mind.CreateMind(ev.Player.UserId, ev.Profile.Name); + _mind.SetUserId(newMind, ev.Player.UserId); - protected override void Ended(EntityUid uid, DeathMatchRuleComponent component, GameRuleComponent gameRule, GameRuleEndedEvent args) - { - base.Ended(uid, component, gameRule, args); + var mobMaybe = _stationSpawning.SpawnPlayerCharacterOnStation(ev.Station, null, ev.Profile); + DebugTools.AssertNotNull(mobMaybe); + var mob = mobMaybe!.Value; - component.DeadCheckTimer = null; - component.RestartTimer = null; + _mind.TransferTo(newMind, mob); + SetOutfitCommand.SetOutfit(mob, dm.Gear, EntityManager); + EnsureComp(mob); + _respawn.AddToTracker(ev.Player.UserId, uid, tracker); - } + _point.EnsurePlayer(ev.Player.UserId, uid, point); - private void OnHealthChanged(DamageChangedEvent _) - { - RunDelayedCheck(); + ev.Handled = true; + break; + } } - private void OnPlayerStatusChanged(object? ojb, SessionStatusEventArgs e) + private void OnSpawnComplete(PlayerSpawnCompleteEvent ev) { - if (e.NewStatus == SessionStatus.Disconnected) + EnsureComp(ev.Mob); + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out _, out var tracker, out var rule)) { - RunDelayedCheck(); + if (!GameTicker.IsGameRuleActive(uid, rule)) + continue; + _respawn.AddToTracker(ev.Mob, uid, tracker); } } - private void RunDelayedCheck() + private void OnKillReported(ref KillReportedEvent ev) { - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var deathMatch, out var gameRule)) + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var dm, out var point, out var rule)) { - if (!GameTicker.IsGameRuleActive(uid, gameRule) || deathMatch.DeadCheckTimer != null) + if (!GameTicker.IsGameRuleActive(uid, rule)) continue; - deathMatch.DeadCheckTimer = deathMatch.DeadCheckDelay; - } - } - - protected override void ActiveTick(EntityUid uid, DeathMatchRuleComponent component, GameRuleComponent gameRule, float frameTime) - { - base.ActiveTick(uid, component, gameRule, frameTime); + // YOU SUICIDED OR GOT THROWN INTO LAVA! + // WHAT A GIANT FUCKING NERD! LAUGH NOW! + if (ev.Primary is not KillPlayerSource player) + { + _point.AdjustPointValue(ev.Entity, -1, uid, point); + continue; + } - // If the restart timer is active, that means the round is ending soon, no need to check for winners. - // TODO: We probably want a sane, centralized round end thingie in GameTicker, RoundEndSystem is no good... - if (component.RestartTimer != null) - { - component.RestartTimer -= frameTime; + _point.AdjustPointValue(player.PlayerId, 1, uid, point); - if (component.RestartTimer > 0f) - return; + if (ev.Assist is KillPlayerSource assist && dm.Victor == null) + _point.AdjustPointValue(assist.PlayerId, 1, uid, point); - GameTicker.EndRound(); - GameTicker.RestartRound(); - return; + var spawns = EntitySpawnCollection.GetSpawns(dm.RewardSpawns); + EntityManager.SpawnEntities(Transform(ev.Entity).MapPosition, spawns); } + } - if (!_cfg.GetCVar(CCVars.GameLobbyEnableWin) || component.DeadCheckTimer == null) + private void OnPointChanged(EntityUid uid, DeathMatchRuleComponent component, ref PlayerPointChangedEvent args) + { + if (component.Victor != null) return; - component.DeadCheckTimer -= frameTime; - - if (component.DeadCheckTimer > 0) + if (args.Points < component.KillCap) return; - component.DeadCheckTimer = null; + component.Victor = args.Player; + _roundEnd.EndRound(component.RestartDelay); + } - IPlayerSession? winner = null; - foreach (var playerSession in _playerManager.ServerSessions) + private void OnRoundEndTextAppend(RoundEndTextAppendEvent ev) + { + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var dm, out var point, out var rule)) { - if (playerSession.AttachedEntity is not { Valid: true } playerEntity - || !TryComp(playerEntity, out MobStateComponent? state)) - continue; - - if (!_mobStateSystem.IsAlive(playerEntity, state)) + if (!GameTicker.IsGameRuleAdded(uid, rule)) continue; - // Found a second person alive, nothing decided yet! - if (winner != null) - return; - - winner = playerSession; + if (dm.Victor != null && _player.TryGetPlayerData(dm.Victor.Value, out var data)) + { + ev.AddLine(Loc.GetString("point-scoreboard-winner", ("player", data.UserName))); + ev.AddLine(""); + } + ev.AddLine(Loc.GetString("point-scoreboard-header")); + ev.AddLine(new FormattedMessage(point.Scoreboard).ToMarkup()); } - - _chatManager.DispatchServerAnnouncement(winner == null - ? Loc.GetString("rule-death-match-check-winner-stalemate") - : Loc.GetString("rule-death-match-check-winner", ("winner", winner))); - - _chatManager.DispatchServerAnnouncement(Loc.GetString("rule-restarting-in-seconds", - ("seconds", component.RestartDelay))); - component.RestartTimer = component.RestartDelay; } } diff --git a/Content.Server/GameTicking/Rules/GameRulePrototype.cs b/Content.Server/GameTicking/Rules/GameRulePrototype.cs index c2b55822c8c..d4872fdcad2 100644 --- a/Content.Server/GameTicking/Rules/GameRulePrototype.cs +++ b/Content.Server/GameTicking/Rules/GameRulePrototype.cs @@ -7,9 +7,9 @@ namespace Content.Server.GameTicking.Rules; public sealed class GameRulePrototype : IPrototype { [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [DataField("config", required: true)] - public GameRuleConfiguration Configuration { get; } = default!; + public GameRuleConfiguration Configuration { get; private set; } = default!; } */ diff --git a/Content.Server/GameTicking/Rules/GameRuleSystem.cs b/Content.Server/GameTicking/Rules/GameRuleSystem.cs index 4f788e00527..e87660c2cc4 100644 --- a/Content.Server/GameTicking/Rules/GameRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/GameRuleSystem.cs @@ -2,7 +2,7 @@ namespace Content.Server.GameTicking.Rules; -public abstract class GameRuleSystem : EntitySystem where T : Component +public abstract partial class GameRuleSystem : EntitySystem where T : Component { [Dependency] protected readonly GameTicker GameTicker = default!; diff --git a/Content.Server/GameTicking/Rules/KillCalloutRuleSystem.cs b/Content.Server/GameTicking/Rules/KillCalloutRuleSystem.cs new file mode 100644 index 00000000000..94eeb5de565 --- /dev/null +++ b/Content.Server/GameTicking/Rules/KillCalloutRuleSystem.cs @@ -0,0 +1,99 @@ +using Content.Server.Chat.Managers; +using Content.Server.GameTicking.Rules.Components; +using Content.Server.KillTracking; +using Content.Shared.Chat; +using Robust.Server.GameObjects; +using Robust.Server.Player; +using Robust.Shared.Random; + +namespace Content.Server.GameTicking.Rules; + +/// +/// This handles calling out kills from +/// +public sealed class KillCalloutRuleSystem : GameRuleSystem +{ + [Dependency] private readonly IChatManager _chatManager = default!; + [Dependency] private readonly IPlayerManager _playerManager = default!; + [Dependency] private readonly IRobustRandom _random = default!; + + /// + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnKillReported); + } + + private void OnKillReported(ref KillReportedEvent ev) + { + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var kill, out var rule)) + { + if (!GameTicker.IsGameRuleActive(uid, rule)) + continue; + + var callout = GetCallout(kill, ev); + _chatManager.ChatMessageToAll(ChatChannel.Server, callout, callout, uid, false, true, Color.OrangeRed); + } + } + + private string GetCallout(KillCalloutRuleComponent component, KillReportedEvent ev) + { + // Do the humiliation callouts if you kill yourself or die from bleeding out or something lame. + if (ev.Primary is KillEnvironmentSource || ev.Suicide) + { + var selfCallout = $"{component.SelfKillCalloutPrefix}{_random.Next(component.SelfKillCalloutAmount)}"; + return Loc.GetString(selfCallout, + ("victim", GetCalloutName(ev.Entity))); + } + + var primary = GetCalloutName(ev.Primary); + var killerString = primary; + if (ev.Assist != null) + { + var secondary = GetCalloutName(ev.Assist); + killerString = Loc.GetString("death-match-assist", + ("primary", primary), ("secondary", secondary)); + } + + var callout = $"{component.KillCalloutPrefix}{_random.Next(component.KillCalloutAmount)}"; + return Loc.GetString(callout, ("killer", killerString), + ("victim", GetCalloutName(ev.Entity))); + } + + private string GetCalloutName(KillSource source) + { + switch (source) + { + case KillPlayerSource player: + if (!_playerManager.TryGetSessionById(player.PlayerId, out var session)) + break; + if (session.AttachedEntity == null) + break; + + return Loc.GetString("death-match-name-player", + ("name", MetaData(session.AttachedEntity.Value).EntityName), + ("username", session.Name)); + + case KillNpcSource npc: + if (Deleted(npc.NpcEnt)) + return string.Empty; + return Loc.GetString("death-match-name-npc", ("name", MetaData(npc.NpcEnt).EntityName)); + } + + return string.Empty; + } + + private string GetCalloutName(EntityUid source) + { + if (TryComp(source, out var actorComp)) + { + return Loc.GetString("death-match-name-player", + ("name", MetaData(source).EntityName), + ("username", actorComp.PlayerSession.Name)); + } + + return Loc.GetString("death-match-name-npc", ("name", MetaData(source).EntityName)); + } +} diff --git a/Content.Server/GameTicking/Rules/NinjaRuleSystem.cs b/Content.Server/GameTicking/Rules/NinjaRuleSystem.cs new file mode 100644 index 00000000000..b75241eaf42 --- /dev/null +++ b/Content.Server/GameTicking/Rules/NinjaRuleSystem.cs @@ -0,0 +1,23 @@ +using Content.Server.GameTicking.Rules.Components; +using Content.Server.Objectives; + +namespace Content.Server.GameTicking.Rules; + +/// +/// Only handles round end text for ninja. +/// +public sealed class NinjaRuleSystem : GameRuleSystem +{ + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnObjectivesTextGetInfo); + } + + private void OnObjectivesTextGetInfo(EntityUid uid, NinjaRuleComponent comp, ref ObjectivesTextGetInfoEvent args) + { + args.Minds = comp.Minds; + args.AgentName = Loc.GetString("ninja-round-end-agent-name"); + } +} diff --git a/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs b/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs index 38bf8c6fc74..20d0871448c 100644 --- a/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs @@ -1,42 +1,54 @@ +using System.Diagnostics.CodeAnalysis; using System.Linq; using System.Numerics; using Content.Server.Administration.Commands; using Content.Server.Chat.Managers; +using Content.Server.Chat.Systems; +using Content.Server.Communications; using Content.Server.GameTicking.Rules.Components; using Content.Server.Ghost.Roles.Components; using Content.Server.Ghost.Roles.Events; using Content.Server.Humanoid; -using Content.Server.Humanoid.Systems; using Content.Server.Mind; -using Content.Server.Mind.Components; using Content.Server.NPC.Components; using Content.Server.NPC.Systems; using Content.Server.Nuke; +using Content.Server.NukeOps; +using Content.Server.Popups; using Content.Server.Preferences.Managers; using Content.Server.Roles; using Content.Server.RoundEnd; using Content.Server.Shuttles.Components; +using Content.Server.Shuttles.Events; using Content.Server.Shuttles.Systems; using Content.Server.Spawners.Components; using Content.Server.Station.Components; using Content.Server.Station.Systems; -using Content.Server.Traitor; +using Content.Server.Store.Components; +using Content.Server.Store.Systems; using Content.Shared.Dataset; using Content.Shared.Humanoid; using Content.Shared.Humanoid.Prototypes; +using Content.Shared.Mind; +using Content.Shared.Mind.Components; using Content.Shared.Mobs; using Content.Shared.Mobs.Components; using Content.Shared.Nuke; +using Content.Shared.NukeOps; using Content.Shared.Preferences; using Content.Shared.Roles; +using Content.Shared.Store; +using Content.Shared.Tag; using Content.Shared.Zombies; using Robust.Server.GameObjects; using Robust.Server.Maps; using Robust.Server.Player; +using Robust.Shared.Audio; using Robust.Shared.Map; using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Random; +using Robust.Shared.Timing; using Robust.Shared.Utility; namespace Content.Server.GameTicking.Rules; @@ -53,12 +65,28 @@ public sealed class NukeopsRuleSystem : GameRuleSystem [Dependency] private readonly NpcFactionSystem _npcFaction = default!; [Dependency] private readonly HumanoidAppearanceSystem _humanoidSystem = default!; [Dependency] private readonly StationSpawningSystem _stationSpawningSystem = default!; - [Dependency] private readonly StationSystem _stationSystem = default!; [Dependency] private readonly RoundEndSystem _roundEndSystem = default!; [Dependency] private readonly SharedAudioSystem _audioSystem = default!; [Dependency] private readonly MapLoaderSystem _map = default!; [Dependency] private readonly ShuttleSystem _shuttle = default!; [Dependency] private readonly MindSystem _mindSystem = default!; + [Dependency] private readonly SharedRoleSystem _roles = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; + [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly ChatSystem _chatSystem = default!; + [Dependency] private readonly StoreSystem _storeSystem = default!; + [Dependency] private readonly TagSystem _tag = default!; + [Dependency] private readonly PopupSystem _popupSystem = default!; + [Dependency] private readonly WarDeclaratorSystem _warDeclaratorSystem = default!; + + [ValidatePrototypeId] + private const string TelecrystalCurrencyPrototype = "Telecrystal"; + + [ValidatePrototypeId] + private const string NukeOpsUplinkTagPrototype = "NukeOpsUplink"; + + [ValidatePrototypeId] + public const string NukeopsId = "Nukeops"; public override void Initialize() { @@ -76,6 +104,119 @@ public override void Initialize() SubscribeLocalEvent(OnComponentInit); SubscribeLocalEvent(OnComponentRemove); SubscribeLocalEvent(OnOperativeZombified); + SubscribeLocalEvent(OnShuttleCallAttempt); + SubscribeLocalEvent(OnShuttleConsoleFTLStart); + SubscribeLocalEvent(OnShuttleFTLAttempt); + } + + /// + /// Returns true when the player with UID opUid is a nuclear operative. Prevents random + /// people from using the war declarator outside of the game mode. + /// + public bool TryGetRuleFromOperative(EntityUid opUid, [NotNullWhen(true)] out (NukeopsRuleComponent, GameRuleComponent)? comps) + { + comps = null; + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var ruleEnt, out var nukeops, out var gameRule)) + { + if (!GameTicker.IsGameRuleAdded(ruleEnt, gameRule)) + continue; + + var found = nukeops.OperativePlayers.Values.Any(v => v.AttachedEntity == opUid); + if (found) + { + comps = (nukeops, gameRule); + return true; + } + } + + return false; + } + + /// + /// Search rule components by grid uid + /// + public bool TryGetRuleFromGrid(EntityUid gridId, [NotNullWhen(true)] out (NukeopsRuleComponent, GameRuleComponent)? comps) + { + comps = null; + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var ruleEnt, out var nukeops, out var gameRule)) + { + if (!GameTicker.IsGameRuleAdded(ruleEnt, gameRule)) + continue; + + if (gridId == nukeops.NukieShuttle || gridId == nukeops.NukieOutpost) + { + comps = (nukeops, gameRule); + return true; + } + } + + return false; + } + + /// + /// Returns conditions for war declaration + /// + public WarConditionStatus GetWarCondition(NukeopsRuleComponent nukieRule, GameRuleComponent gameRule) + { + if (!nukieRule.CanEnableWarOps) + return WarConditionStatus.NO_WAR_UNKNOWN; + + if (nukieRule.WarDeclaredTime != null && nukieRule.WarNukieArriveDelay != null) + { + // Nukies must wait some time after declaration of war to get on the station + var warTime = _gameTiming.CurTime.Subtract(nukieRule.WarDeclaredTime.Value); + if (warTime > nukieRule.WarNukieArriveDelay) + { + return WarConditionStatus.WAR_READY; + } + return WarConditionStatus.WAR_DELAY; + } + + if (nukieRule.OperativePlayers.Count < nukieRule.WarDeclarationMinOps) + return WarConditionStatus.NO_WAR_SMALL_CREW; + if (nukieRule.LeftOutpost) + return WarConditionStatus.NO_WAR_SHUTTLE_DEPARTED; + + var gameruleTime = _gameTiming.CurTime.Subtract(gameRule.ActivatedAt); + if (gameruleTime > nukieRule.WarDeclarationDelay) + return WarConditionStatus.NO_WAR_TIMEOUT; + + return WarConditionStatus.YES_WAR; + } + + public void DeclareWar(EntityUid opsUid, string msg, string title, SoundSpecifier? announcementSound = null, Color? colorOverride = null) + { + if (!TryGetRuleFromOperative(opsUid, out var comps)) + return; + + var nukieRule = comps.Value.Item1; + nukieRule.WarDeclaredTime = _gameTiming.CurTime; + _chatSystem.DispatchGlobalAnnouncement(msg, title, announcementSound: announcementSound, colorOverride: colorOverride); + DistributeExtraTC(nukieRule); + _warDeclaratorSystem.RefreshAllUI(comps.Value.Item1, comps.Value.Item2); + } + + private void DistributeExtraTC(NukeopsRuleComponent nukieRule) + { + var enumerator = EntityQueryEnumerator(); + while (enumerator.MoveNext(out var uid, out var component)) + { + if (!_tag.HasTag(uid, NukeOpsUplinkTagPrototype)) + continue; + + if (!nukieRule.NukieOutpost.HasValue) + continue; + + if (Transform(uid).MapID != Transform(nukieRule.NukieOutpost.Value).MapID) // Will receive bonus TC only on their start outpost + continue; + + _storeSystem.TryAddCurrency(new () { { TelecrystalCurrencyPrototype, nukieRule.WarTCAmountPerNukie } }, uid, component); + + var msg = Loc.GetString("store-currency-war-boost-given", ("target", uid)); + _popupSystem.PopupEntity(msg, uid); + } } private void OnComponentInit(EntityUid uid, NukeOperativeComponent component, ComponentInit args) @@ -87,10 +228,10 @@ private void OnComponentInit(EntityUid uid, NukeOperativeComponent component, Co continue; // If entity has a prior mind attached, add them to the players list. - if (!TryComp(uid, out var mindComponent)) + if (!_mindSystem.TryGetMind(uid, out _, out var mind)) continue; - var session = mindComponent.Mind?.Session; + var session = mind?.Session; var name = MetaData(uid).EntityName; if (session != null) nukeops.OperativePlayers.Add(name, session); @@ -201,9 +342,10 @@ private void OnRoundStart(EntityUid uid, NukeopsRuleComponent? component = null) var filter = Filter.Empty(); var query = EntityQueryEnumerator(); - while (query.MoveNext(out _, out _, out var actor)) + while (query.MoveNext(out _, out var nukeops, out var actor)) { _chatManager.DispatchServerMessage(actor.PlayerSession, Loc.GetString("nukeops-welcome", ("station", component.TargetStation.Value))); + _audioSystem.PlayGlobal(nukeops.GreetSoundNotification, actor.PlayerSession); filter.AddPlayer(actor.PlayerSession); } } @@ -591,28 +733,28 @@ private void OnPlayersGhostSpawning(EntityUid uid, NukeOperativeComponent compon private void OnMindAdded(EntityUid uid, NukeOperativeComponent component, MindAddedMessage args) { - if (!TryComp(uid, out var mindContainerComponent) || mindContainerComponent.Mind == null) + if (!_mindSystem.TryGetMind(uid, out var mindId, out var mind)) return; - var mind = mindContainerComponent.Mind; - - foreach (var nukeops in EntityQuery()) + foreach (var (nukeops, gameRule) in EntityQuery()) { if (nukeops.OperativeMindPendingData.TryGetValue(uid, out var role) || !nukeops.SpawnOutpost || !nukeops.EndsRound) { role ??= nukeops.OperativeRoleProto; - _mindSystem.AddRole(mind, new NukeopsRole(mind, _prototypeManager.Index(role))); + _roles.MindAddRole(mindId, new NukeopsRoleComponent { PrototypeId = role }); nukeops.OperativeMindPendingData.Remove(uid); } - if (!_mindSystem.TryGetSession(mind, out var playerSession)) + if (mind.Session is not { } playerSession) return; + if (nukeops.OperativePlayers.ContainsValue(playerSession)) return; var name = MetaData(uid).EntityName; nukeops.OperativePlayers.Add(name, playerSession); + _warDeclaratorSystem.RefreshAllUI(nukeops, gameRule); if (GameTicker.RunLevel != GameRunLevel.InRound) return; @@ -678,6 +820,8 @@ private bool SpawnMap(EntityUid uid, NukeopsRuleComponent? component = null) _shuttle.TryFTLDock(shuttleId, shuttle, component.NukieOutpost.Value); } + AddComp(shuttleId); + component.NukiePlanet = mapId; component.NukieShuttle = shuttleId; return true; @@ -717,7 +861,7 @@ private bool SpawnMap(EntityUid uid, NukeopsRuleComponent? component = null) /// private void SetupOperativeEntity(EntityUid mob, string name, string gear, HumanoidCharacterProfile? profile, NukeopsRuleComponent component) { - MetaData(mob).EntityName = name; + _metaData.SetEntityName(mob, name); EnsureComp(mob); if (profile != null) @@ -777,7 +921,7 @@ private void SpawnOperatives(int spawnCount, List sessions, bool SetupOperativeEntity(mob, spawnDetails.Name, spawnDetails.Gear, profile, component); var newMind = _mindSystem.CreateMind(session.UserId, spawnDetails.Name); _mindSystem.SetUserId(newMind, session.UserId); - _mindSystem.AddRole(newMind, new NukeopsRole(newMind, nukeOpsAntag)); + _roles.MindAddRole(newMind, new NukeopsRoleComponent { PrototypeId = spawnDetails.Role }); _mindSystem.TransferTo(newMind, mob); } @@ -819,13 +963,13 @@ private void SpawnOperativesForGhostRoles(EntityUid uid, NukeopsRuleComponent? c } //For admins forcing someone to nukeOps. - public void MakeLoneNukie(Mind.Mind mind) + public void MakeLoneNukie(EntityUid mindId, MindComponent mind) { if (!mind.OwnedEntity.HasValue) return; //ok hardcoded value bad but so is everything else here - _mindSystem.AddRole(mind, new NukeopsRole(mind, _prototypeManager.Index("Nukeops"))); + _roles.MindAddRole(mindId, new NukeopsRoleComponent { PrototypeId = NukeopsId }, mind); SetOutfitCommand.SetOutfit(mind.OwnedEntity.Value, "SyndicateOperativeGearFull", EntityManager); } @@ -854,6 +998,81 @@ private void OnStartAttempt(RoundStartAttemptEvent ev) } } + private void OnShuttleFTLAttempt(ref ConsoleFTLAttemptEvent ev) + { + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var ruleUid, out var nukeops, out var gameRule)) + { + if (!GameTicker.IsGameRuleAdded(ruleUid, gameRule)) + continue; + + if (nukeops.NukieOutpost == null || + nukeops.WarDeclaredTime == null || + nukeops.WarNukieArriveDelay == null || + ev.Uid != nukeops.NukieShuttle) + continue; + + var mapOutpost = Transform(nukeops.NukieOutpost.Value).MapID; + var mapShuttle = Transform(ev.Uid).MapID; + + if (mapOutpost == mapShuttle) + { + var timeAfterDeclaration = _gameTiming.CurTime.Subtract(nukeops.WarDeclaredTime.Value); + var timeRemain = nukeops.WarNukieArriveDelay.Value.Subtract(timeAfterDeclaration); + if (timeRemain > TimeSpan.Zero) + { + ev.Cancelled = true; + ev.Reason = Loc.GetString("war-ops-infiltrator-unavailable", ("minutes", timeRemain.Minutes), ("seconds", timeRemain.Seconds)); + } + } + } + } + + private void OnShuttleConsoleFTLStart(ref ShuttleConsoleFTLTravelStartEvent ev) + { + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var ruleUid, out var nukeops, out var gameRule)) + { + if (!GameTicker.IsGameRuleAdded(ruleUid, gameRule)) + continue; + + var gridUid = Transform(ev.Uid).GridUid; + if (nukeops.NukieOutpost == null || + gridUid == null || + gridUid.Value != nukeops.NukieShuttle) + continue; + + var mapOutpost = Transform(nukeops.NukieOutpost.Value).MapID; + var mapShuttle = Transform(ev.Uid).MapID; + + if (mapOutpost == mapShuttle) + { + nukeops.LeftOutpost = true; + + if (TryGetRuleFromGrid(gridUid.Value, out var comps)) + _warDeclaratorSystem.RefreshAllUI(comps.Value.Item1, comps.Value.Item2); + } + } + } + + private void OnShuttleCallAttempt(ref CommunicationConsoleCallShuttleAttemptEvent ev) + { + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var ruleUid, out var nukeops, out var gameRule)) + { + if (!GameTicker.IsGameRuleAdded(ruleUid, gameRule)) + continue; + + // Can't call while nukies are preparing to arrive + if (GetWarCondition(nukeops, gameRule) == WarConditionStatus.WAR_DELAY) + { + ev.Cancelled = true; + ev.Reason = Loc.GetString("war-ops-shuttle-call-unavailable"); + return; + } + } + } + protected override void Started(EntityUid uid, NukeopsRuleComponent component, GameRuleComponent gameRule, GameRuleStartedEvent args) { base.Started(uid, component, gameRule, args); @@ -877,7 +1096,7 @@ protected override void Started(EntityUid uid, NukeopsRuleComponent component, G var query = EntityQuery(true); foreach (var (_, mindComp, metaData) in query) { - if (!mindComp.HasMind || !_mindSystem.TryGetSession(mindComp.Mind, out var session)) + if (!mindComp.HasMind || !_mindSystem.TryGetSession(mindComp.Mind.Value, out var session)) continue; component.OperativePlayers.Add(metaData.EntityName, session); } diff --git a/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs b/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs index f98adb93e41..b223161c10e 100644 --- a/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs @@ -4,26 +4,24 @@ using Content.Server.Cargo.Systems; using Content.Server.Chat.Managers; using Content.Server.GameTicking.Rules.Components; -using Content.Server.Mind; using Content.Server.Preferences.Managers; using Content.Server.Spawners.Components; using Content.Server.Station.Components; using Content.Server.Station.Systems; using Content.Shared.CCVar; using Content.Shared.Humanoid; +using Content.Shared.Mind; using Content.Shared.Preferences; using Content.Shared.Roles; using Robust.Server.GameObjects; using Robust.Server.Maps; using Robust.Server.Player; -using Robust.Shared.Audio; using Robust.Shared.Configuration; +using Robust.Shared.Enums; using Robust.Shared.Map; using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Utility; -using Robust.Shared.Enums; -using Robust.Shared.Player; namespace Content.Server.GameTicking.Rules; @@ -42,8 +40,9 @@ public sealed class PiratesRuleSystem : GameRuleSystem [Dependency] private readonly PricingSystem _pricingSystem = default!; [Dependency] private readonly MapLoaderSystem _map = default!; [Dependency] private readonly NamingSystem _namingSystem = default!; - [Dependency] private readonly MindSystem _mindSystem = default!; + [Dependency] private readonly SharedMindSystem _mindSystem = default!; [Dependency] private readonly SharedAudioSystem _audioSystem = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; /// public override void Initialize() @@ -67,15 +66,14 @@ private void OnRoundEndTextEvent(RoundEndTextAppendEvent ev) } else { - List<(double, EntityUid)> mostValuableThefts = new(); var comp1 = pirates; var finalValue = _pricingSystem.AppraiseGrid(pirates.PirateShip, uid => { - foreach (var mind in comp1.Pirates) + foreach (var mindId in comp1.Pirates) { - if (mind.CurrentEntity == uid) + if (TryComp(mindId, out MindComponent? mind) && mind.CurrentEntity == uid) return false; // Don't appraise the pirates twice, we count them in separately. } @@ -91,9 +89,9 @@ private void OnRoundEndTextEvent(RoundEndTextAppendEvent ev) mostValuableThefts.Pop(); }); - foreach (var mind in pirates.Pirates) + foreach (var mindId in pirates.Pirates) { - if (mind.CurrentEntity is not null) + if (TryComp(mindId, out MindComponent? mind) && mind.CurrentEntity is not null) finalValue += _pricingSystem.GetPrice(mind.CurrentEntity.Value); } @@ -118,7 +116,10 @@ private void OnRoundEndTextEvent(RoundEndTextAppendEvent ev) ev.AddLine(Loc.GetString("pirates-list-start")); foreach (var pirate in pirates.Pirates) { - ev.AddLine($"- {pirate.CharacterName} ({pirate.Session?.Name})"); + if (TryComp(pirate, out MindComponent? mind)) + { + ev.AddLine($"- {mind.CharacterName} ({mind.Session?.Name})"); + } } } } @@ -215,7 +216,7 @@ private void OnPlayerSpawningEvent(RulePlayerSpawningEvent ev) _mindSystem.SetUserId(newMind, session.UserId); var mob = Spawn("MobHuman", _random.Pick(spawns)); - MetaData(mob).EntityName = name; + _metaData.SetEntityName(mob, name); _mindSystem.TransferTo(newMind, mob); var profile = _prefs.GetPreferences(session.UserId).SelectedCharacter as HumanoidCharacterProfile; @@ -238,7 +239,7 @@ private void OnPlayerSpawningEvent(RulePlayerSpawningEvent ev) } //Forcing one player to be a pirate. - public void MakePirate(Mind.Mind mind) + public void MakePirate(EntityUid mindId, MindComponent mind) { if (!mind.OwnedEntity.HasValue) return; diff --git a/Content.Server/GameTicking/Rules/RespawnRuleSystem.cs b/Content.Server/GameTicking/Rules/RespawnRuleSystem.cs new file mode 100644 index 00000000000..a2868086237 --- /dev/null +++ b/Content.Server/GameTicking/Rules/RespawnRuleSystem.cs @@ -0,0 +1,143 @@ +using Content.Server.Chat.Managers; +using Content.Server.GameTicking.Rules.Components; +using Content.Server.Players; +using Content.Server.Station.Systems; +using Content.Shared.Chat; +using Content.Shared.Interaction.Events; +using Content.Shared.Mind; +using Content.Shared.Mobs; +using Robust.Server.GameObjects; +using Robust.Server.Player; +using Robust.Shared.Network; +using Robust.Shared.Timing; +using Robust.Shared.Utility; + +namespace Content.Server.GameTicking.Rules; + +/// +/// This handles logic and interactions related to +/// +public sealed class RespawnRuleSystem : GameRuleSystem +{ + [Dependency] private readonly IChatManager _chatManager = default!; + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly IPlayerManager _playerManager = default!; + [Dependency] private readonly StationSystem _station = default!; + + /// + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnSuicide); + SubscribeLocalEvent(OnMobStateChanged); + } + + private void OnSuicide(SuicideEvent ev) + { + if (!TryComp(ev.Victim, out var actor)) + return; + + var query = EntityQueryEnumerator(); + while (query.MoveNext(out _, out var respawn)) + { + if (respawn.Players.Remove(actor.PlayerSession.UserId)) + QueueDel(ev.Victim); + } + } + + private void OnMobStateChanged(MobStateChangedEvent args) + { + if (args.NewMobState == MobState.Alive) + return; + + if (!TryComp(args.Target, out var actor)) + return; + + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out _, out var rule)) + { + if (!GameTicker.IsGameRuleActive(uid, rule)) + continue; + + if (RespawnPlayer(args.Target, uid, actor: actor)) + break; + } + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + if (_station.GetStations().FirstOrNull() is not { } station) + return; + + foreach (var tracker in EntityQuery()) + { + var queue = new Dictionary(tracker.RespawnQueue); + foreach (var (player, time) in queue) + { + if (_timing.CurTime < time) + continue; + + if (!_playerManager.TryGetSessionById(player, out var session)) + continue; + + if (session.GetMind() is { } mind && TryComp(mind, out var mindComp) && mindComp.OwnedEntity.HasValue) + QueueDel(mindComp.OwnedEntity.Value); + GameTicker.MakeJoinGame(session, station, silent: true); + tracker.RespawnQueue.Remove(player); + } + } + } + + /// + /// Adds a given player to the respawn tracker, ensuring that they are respawned if they die. + /// + public void AddToTracker(EntityUid player, EntityUid tracker, RespawnTrackerComponent? component = null, ActorComponent? actor = null) + { + if (!Resolve(tracker, ref component) || !Resolve(player, ref actor, false)) + return; + + AddToTracker(actor.PlayerSession.UserId, tracker, component); + } + + /// + /// Adds a given player to the respawn tracker, ensuring that they are respawned if they die. + /// + public void AddToTracker(NetUserId id, EntityUid tracker, RespawnTrackerComponent? component = null) + { + if (!Resolve(tracker, ref component)) + return; + + component.Players.Add(id); + } + + /// + /// Attempts to directly respawn a player, skipping the lobby screen. + /// + public bool RespawnPlayer(EntityUid player, EntityUid respawnTracker, RespawnTrackerComponent? component = null, ActorComponent? actor = null) + { + if (!Resolve(respawnTracker, ref component) || !Resolve(player, ref actor, false)) + return false; + + if (!component.Players.Contains(actor.PlayerSession.UserId) || component.RespawnQueue.ContainsKey(actor.PlayerSession.UserId)) + return false; + + if (component.RespawnDelay == TimeSpan.Zero) + { + if (_station.GetStations().FirstOrNull() is not { } station) + return false; + + QueueDel(player); + GameTicker.MakeJoinGame(actor.PlayerSession, station, silent: true); + return false; + } + + var msg = Loc.GetString("rule-respawn-in-seconds", ("second", component.RespawnDelay.TotalSeconds)); + var wrappedMsg = Loc.GetString("chat-manager-server-wrap-message", ("message", msg)); + _chatManager.ChatMessageToOne(ChatChannel.Server, msg, wrappedMsg, respawnTracker, false, actor.PlayerSession.ConnectedClient, Color.LimeGreen); + component.RespawnQueue[actor.PlayerSession.UserId] = _timing.CurTime + component.RespawnDelay; + return true; + } +} diff --git a/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs b/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs index 8778e29ec08..210425526c2 100644 --- a/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs @@ -1,22 +1,24 @@ using System.Linq; using Content.Server.Chat.Managers; using Content.Server.GameTicking.Rules.Components; -using Content.Server.NPC.Systems; using Content.Server.Mind; -using Content.Server.Objectives.Interfaces; +using Content.Server.NPC.Systems; +using Content.Server.Objectives; using Content.Server.PDA.Ringer; -using Content.Server.Players; using Content.Server.Roles; using Content.Server.Shuttles.Components; using Content.Server.Traitor.Uplink; using Content.Shared.CCVar; using Content.Shared.Dataset; -using Content.Shared.Preferences; +using Content.Shared.Mind; using Content.Shared.Mobs.Systems; using Content.Shared.PDA; +using Content.Shared.Preferences; using Content.Shared.Roles; +using Content.Shared.Roles.Jobs; using Robust.Server.Player; using Robust.Shared.Configuration; +using Robust.Shared.Players; using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Timing; @@ -28,7 +30,6 @@ public sealed class TraitorRuleSystem : GameRuleSystem [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly IConfigurationManager _cfg = default!; - [Dependency] private readonly IObjectivesManager _objectivesManager = default!; [Dependency] private readonly IChatManager _chatManager = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly NpcFactionSystem _npcFaction = default!; @@ -36,8 +37,9 @@ public sealed class TraitorRuleSystem : GameRuleSystem [Dependency] private readonly UplinkSystem _uplink = default!; [Dependency] private readonly SharedAudioSystem _audioSystem = default!; [Dependency] private readonly MindSystem _mindSystem = default!; - - private ISawmill _sawmill = default!; + [Dependency] private readonly SharedRoleSystem _roleSystem = default!; + [Dependency] private readonly SharedJobSystem _jobs = default!; + [Dependency] private readonly ObjectivesSystem _objectives = default!; private int PlayersPerTraitor => _cfg.GetCVar(CCVars.TraitorPlayersPerTraitor); private int MaxTraitors => _cfg.GetCVar(CCVars.TraitorMaxTraitors); @@ -46,12 +48,12 @@ public override void Initialize() { base.Initialize(); - _sawmill = Logger.GetSawmill("preset"); - SubscribeLocalEvent(OnStartAttempt); SubscribeLocalEvent(OnPlayersSpawned); SubscribeLocalEvent(HandleLatejoin); - SubscribeLocalEvent(OnRoundEndText); + + SubscribeLocalEvent(OnObjectivesTextGetInfo); + SubscribeLocalEvent(OnObjectivesTextPrepend); } protected override void ActiveTick(EntityUid uid, TraitorRuleComponent component, GameRuleComponent gameRule, float frameTime) @@ -107,7 +109,7 @@ private void DoTraitorStart(TraitorRuleComponent component) { if (!component.StartCandidates.Any()) { - _sawmill.Error("Tried to start Traitor mode without any candidates."); + Log.Error("Tried to start Traitor mode without any candidates."); return; } @@ -156,7 +158,7 @@ private List FindPotentialTraitors(in Dictionary role is not Job { CanBeAntag: false }) ?? false)) + if (!_jobs.CanBeAntag(player)) { continue; } @@ -180,7 +182,7 @@ private List FindPotentialTraitors(in Dictionary PickTraitors(int traitorCount, List var results = new List(traitorCount); if (prefList.Count == 0) { - _sawmill.Info("Insufficient ready players to fill up with traitors, stopping the selection."); + Log.Info("Insufficient ready players to fill up with traitors, stopping the selection."); return results; } for (var i = 0; i < traitorCount; i++) { results.Add(_random.PickAndTake(prefList)); - _sawmill.Info("Selected a preferred traitor."); + Log.Info("Selected a preferred traitor."); } return results; } - public bool MakeTraitor(IPlayerSession traitor) + public bool MakeTraitor(ICommonSession traitor, bool giveUplink = true, bool giveObjectives = true) { var traitorRule = EntityQuery().FirstOrDefault(); if (traitorRule == null) @@ -215,48 +217,67 @@ public bool MakeTraitor(IPlayerSession traitor) MakeCodewords(traitorRule); } - var mind = traitor.Data.ContentData()?.Mind; - if (mind == null) + if (!_mindSystem.TryGetMind(traitor, out var mindId, out var mind)) { - _sawmill.Info("Failed getting mind for picked traitor."); + Log.Info("Failed getting mind for picked traitor."); return false; } + + if (HasComp(mindId)) + { + Log.Error($"Player {traitor.Name} is already a traitor."); + return false; + } + if (mind.OwnedEntity is not { } entity) { - Logger.ErrorS("preset", "Mind picked for traitor did not have an attached entity."); + Log.Error("Mind picked for traitor did not have an attached entity."); return false; } // Calculate the amount of currency on the uplink. var startingBalance = _cfg.GetCVar(CCVars.TraitorStartingBalance); - if (mind.CurrentJob != null) - startingBalance = Math.Max(startingBalance - mind.CurrentJob.Prototype.AntagAdvantage, 0); - - // creadth: we need to create uplink for the antag. - // PDA should be in place already - var pda = _uplink.FindUplinkTarget(mind.OwnedEntity!.Value); - if (pda == null || !_uplink.AddUplink(mind.OwnedEntity.Value, startingBalance)) - return false; - - // Add the ringtone uplink and get its code for greeting - var code = EnsureComp(pda.Value).Code; - - // Prepare antagonist role - var antagPrototype = _prototypeManager.Index(traitorRule.TraitorPrototypeId); - var traitorRole = new TraitorRole(mind, antagPrototype); + if (_jobs.MindTryGetJob(mindId, out _, out var prototype)) + startingBalance = Math.Max(startingBalance - prototype.AntagAdvantage, 0); // Give traitors their codewords and uplink code to keep in their character info menu - traitorRole.Mind.Briefing = string.Format( - "{0}\n{1}", - Loc.GetString("traitor-role-codewords-short", ("codewords", string.Join(", ", traitorRule.Codewords))), - Loc.GetString("traitor-role-uplink-code-short", ("code", string.Join("-", code).Replace("sharp","#")))); + var briefing = Loc.GetString("traitor-role-codewords-short", ("codewords", string.Join(", ", traitorRule.Codewords))); + Note[]? code = null; + if (giveUplink) + { + // creadth: we need to create uplink for the antag. + // PDA should be in place already + var pda = _uplink.FindUplinkTarget(mind.OwnedEntity!.Value); + if (pda == null || !_uplink.AddUplink(mind.OwnedEntity.Value, startingBalance)) + return false; + + // Give traitors their codewords and uplink code to keep in their character info menu + code = EnsureComp(pda.Value).Code; + // If giveUplink is false the uplink code part is omitted + briefing = string.Format("{0}\n{1}", briefing, + Loc.GetString("traitor-role-uplink-code-short", ("code", string.Join("-", code).Replace("sharp","#")))); + } + + // Prepare traitor role + var traitorRole = new TraitorRoleComponent + { + PrototypeId = traitorRule.TraitorPrototypeId, + }; // Assign traitor roles - _mindSystem.AddRole(mind, traitorRole); - SendTraitorBriefing(mind, traitorRule.Codewords, code); - traitorRule.Traitors.Add(traitorRole); + _roleSystem.MindAddRole(mindId, new TraitorRoleComponent + { + PrototypeId = traitorRule.TraitorPrototypeId + }); + // Assign briefing + _roleSystem.MindAddRole(mindId, new RoleBriefingComponent + { + Briefing = briefing + }); + SendTraitorBriefing(mindId, traitorRule.Codewords, code); + traitorRule.TraitorMinds.Add(mindId); - if (_mindSystem.TryGetSession(mind, out var session)) + if (_mindSystem.TryGetSession(mindId, out var session)) { // Notificate player about new role assignment _audioSystem.PlayGlobal(traitorRule.GreetSoundNotification, session); @@ -267,17 +288,20 @@ public bool MakeTraitor(IPlayerSession traitor) _npcFaction.AddFaction(entity, "Syndicate"); // Give traitors their objectives - var maxDifficulty = _cfg.GetCVar(CCVars.TraitorMaxDifficulty); - var maxPicks = _cfg.GetCVar(CCVars.TraitorMaxPicks); - var difficulty = 0f; - for (var pick = 0; pick < maxPicks && maxDifficulty > difficulty; pick++) + if (giveObjectives) { - var objective = _objectivesManager.GetRandomObjective(traitorRole.Mind, "TraitorObjectiveGroups"); + var maxDifficulty = _cfg.GetCVar(CCVars.TraitorMaxDifficulty); + var maxPicks = _cfg.GetCVar(CCVars.TraitorMaxPicks); + var difficulty = 0f; + for (var pick = 0; pick < maxPicks && maxDifficulty > difficulty; pick++) + { + var objective = _objectives.GetRandomObjective(mindId, mind, "TraitorObjectiveGroups"); + if (objective == null) + continue; - if (objective == null) - continue; - if (_mindSystem.TryAddObjective(traitorRole.Mind, objective)) - difficulty += objective.Difficulty; + if (_mindSystem.TryAddObjective(mindId, mind, objective)) + difficulty += objective.Difficulty; + } } return true; @@ -289,14 +313,15 @@ public bool MakeTraitor(IPlayerSession traitor) /// A mind (player) /// Codewords /// Uplink codes - private void SendTraitorBriefing(Mind.Mind mind, string[] codewords, Note[] code) + private void SendTraitorBriefing(EntityUid mind, string[] codewords, Note[]? code) { - if (_mindSystem.TryGetSession(mind, out var session)) - { - _chatManager.DispatchServerMessage(session, Loc.GetString("traitor-role-greeting")); - _chatManager.DispatchServerMessage(session, Loc.GetString("traitor-role-codewords", ("codewords", string.Join(", ", codewords)))); + if (!_mindSystem.TryGetSession(mind, out var session)) + return; + + _chatManager.DispatchServerMessage(session, Loc.GetString("traitor-role-greeting")); + _chatManager.DispatchServerMessage(session, Loc.GetString("traitor-role-codewords", ("codewords", string.Join(", ", codewords)))); + if (code != null) _chatManager.DispatchServerMessage(session, Loc.GetString("traitor-role-uplink-code", ("code", string.Join("-", code).Replace("sharp","#")))); - } } private void HandleLatejoin(PlayerSpawnCompleteEvent ev) @@ -354,95 +379,23 @@ private void HandleLatejoin(PlayerSpawnCompleteEvent ev) } } - private void OnRoundEndText(RoundEndTextAppendEvent ev) + private void OnObjectivesTextGetInfo(EntityUid uid, TraitorRuleComponent comp, ref ObjectivesTextGetInfoEvent args) { - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var traitor, out var gameRule)) - { - if (!GameTicker.IsGameRuleAdded(uid, gameRule)) - continue; - - var result = Loc.GetString("traitor-round-end-result", ("traitorCount", traitor.Traitors.Count)); - - result += "\n" + Loc.GetString("traitor-round-end-codewords", ("codewords", string.Join(", ", traitor.Codewords))) + - "\n"; - - foreach (var t in traitor.Traitors) - { - var name = t.Mind.CharacterName; - _mindSystem.TryGetSession(t.Mind, out var session); - var username = session?.Name; - - var objectives = t.Mind.AllObjectives.ToArray(); - if (objectives.Length == 0) - { - if (username != null) - { - if (name == null) - result += "\n" + Loc.GetString("traitor-user-was-a-traitor", ("user", username)); - else - result += "\n" + Loc.GetString("traitor-user-was-a-traitor-named", ("user", username), - ("name", name)); - } - else if (name != null) - result += "\n" + Loc.GetString("traitor-was-a-traitor-named", ("name", name)); - - continue; - } - - if (username != null) - { - if (name == null) - result += "\n" + Loc.GetString("traitor-user-was-a-traitor-with-objectives", - ("user", username)); - else - result += "\n" + Loc.GetString("traitor-user-was-a-traitor-with-objectives-named", - ("user", username), ("name", name)); - } - else if (name != null) - result += "\n" + Loc.GetString("traitor-was-a-traitor-with-objectives-named", ("name", name)); - - foreach (var objectiveGroup in objectives.GroupBy(o => o.Prototype.Issuer)) - { - result += "\n" + Loc.GetString($"preset-traitor-objective-issuer-{objectiveGroup.Key}"); - - foreach (var objective in objectiveGroup) - { - foreach (var condition in objective.Conditions) - { - var progress = condition.Progress; - if (progress > 0.99f) - { - result += "\n- " + Loc.GetString( - "traitor-objective-condition-success", - ("condition", condition.Title), - ("markupColor", "green") - ); - } - else - { - result += "\n- " + Loc.GetString( - "traitor-objective-condition-fail", - ("condition", condition.Title), - ("progress", (int) (progress * 100)), - ("markupColor", "red") - ); - } - } - } - } - } + args.Minds = comp.TraitorMinds; + args.AgentName = Loc.GetString("traitor-round-end-agent-name"); + } - ev.AddLine(result); - } + private void OnObjectivesTextPrepend(EntityUid uid, TraitorRuleComponent comp, ref ObjectivesTextPrependEvent args) + { + args.Text += "\n" + Loc.GetString("traitor-round-end-codewords", ("codewords", string.Join(", ", comp.Codewords))); } - public List GetOtherTraitorsAliveAndConnected(Mind.Mind ourMind) + public List<(EntityUid Id, MindComponent Mind)> GetOtherTraitorMindsAliveAndConnected(MindComponent ourMind) { - List allTraitors = new(); + List<(EntityUid Id, MindComponent Mind)> allTraitors = new(); foreach (var traitor in EntityQuery()) { - foreach (var role in GetOtherTraitorsAliveAndConnected(ourMind, traitor)) + foreach (var role in GetOtherTraitorMindsAliveAndConnected(ourMind, traitor)) { if (!allTraitors.Contains(role)) allTraitors.Add(role); @@ -452,13 +405,22 @@ public List GetOtherTraitorsAliveAndConnected(Mind.Mind ourMind) return allTraitors; } - private List GetOtherTraitorsAliveAndConnected(Mind.Mind ourMind, TraitorRuleComponent component) + private List<(EntityUid Id, MindComponent Mind)> GetOtherTraitorMindsAliveAndConnected(MindComponent ourMind, TraitorRuleComponent component) { - return component.Traitors // don't want - .Where(t => t.Mind.OwnedEntity is not null) // no entity - .Where(t => t.Mind.Session is not null) // player disconnected - .Where(t => t.Mind != ourMind) // ourselves - .Where(t => _mobStateSystem.IsAlive((EntityUid) t.Mind.OwnedEntity!)) // dead - .Where(t => t.Mind.CurrentEntity == t.Mind.OwnedEntity).ToList(); // not in original body + var traitors = new List<(EntityUid Id, MindComponent Mind)>(); + foreach (var traitor in component.TraitorMinds) + { + if (TryComp(traitor, out MindComponent? mind) && + mind.OwnedEntity != null && + mind.Session != null && + mind != ourMind && + _mobStateSystem.IsAlive(mind.OwnedEntity.Value) && + mind.CurrentEntity == mind.OwnedEntity) + { + traitors.Add((traitor, mind)); + } + } + + return traitors; } } diff --git a/Content.Server/GameTicking/Rules/ZombieRuleSystem.cs b/Content.Server/GameTicking/Rules/ZombieRuleSystem.cs index 592f30adeef..bdc40f102ef 100644 --- a/Content.Server/GameTicking/Rules/ZombieRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/ZombieRuleSystem.cs @@ -4,9 +4,6 @@ using Content.Server.Chat.Managers; using Content.Server.Chat.Systems; using Content.Server.GameTicking.Rules.Components; -using Content.Server.Mind; -using Content.Server.Mind.Components; -using Content.Server.Players; using Content.Server.Popups; using Content.Server.Preferences.Managers; using Content.Server.Roles; @@ -14,9 +11,9 @@ using Content.Server.Station.Components; using Content.Server.Station.Systems; using Content.Server.Zombies; -using Content.Shared.Actions.ActionTypes; using Content.Shared.CCVar; using Content.Shared.Humanoid; +using Content.Shared.Mind; using Content.Shared.Mobs; using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; @@ -47,7 +44,8 @@ public sealed class ZombieRuleSystem : GameRuleSystem [Dependency] private readonly ActionsSystem _action = default!; [Dependency] private readonly MobStateSystem _mobState = default!; [Dependency] private readonly ZombieSystem _zombie = default!; - [Dependency] private readonly MindSystem _mindSystem = default!; + [Dependency] private readonly SharedMindSystem _mindSystem = default!; + [Dependency] private readonly SharedRoleSystem _roles = default!; [Dependency] private readonly StationSystem _station = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; @@ -97,10 +95,9 @@ private void OnRoundEndText(RoundEndTextAppendEvent ev) { var meta = MetaData(survivor); var username = string.Empty; - if (TryComp(survivor, out var mindcomp)) + if (_mindSystem.TryGetMind(survivor, out _, out var mind) && mind.Session != null) { - if (mindcomp.Mind != null && mindcomp.Mind.Session != null) - username = mindcomp.Mind.Session.Name; + username = mind.Session.Name; } ev.AddLine(Loc.GetString("zombie-round-end-user-was-survivor", @@ -197,9 +194,7 @@ protected override void ActiveTick(EntityUid uid, ZombieRuleComponent component, private void OnZombifySelf(EntityUid uid, ZombifyOnDeathComponent component, ZombifySelfActionEvent args) { _zombie.ZombifyEntity(uid); - - var action = new InstantAction(_prototypeManager.Index(ZombieRuleComponent.ZombifySelfActionPrototype)); - _action.RemoveAction(uid, action); + _action.RemoveAction(uid, ZombieRuleComponent.ZombifySelfActionPrototype); } private float GetInfectedFraction(bool includeOffStation = true, bool includeDead = false) @@ -312,19 +307,22 @@ private void InfectInitialPlayers(ZombieRuleComponent component) prefList.Remove(zombie); playerList.Remove(zombie); - if (zombie.Data.ContentData()?.Mind is not { } mind || mind.OwnedEntity is not { } ownedEntity) + if (!_mindSystem.TryGetMind(zombie, out var mindId, out var mind) || + mind.OwnedEntity is not { } ownedEntity) + { continue; + } totalInfected++; - _mindSystem.AddRole(mind, new ZombieRole(mind, _prototypeManager.Index(component.PatientZeroPrototypeId))); + _roles.MindAddRole(mindId, new InitialInfectedRoleComponent { PrototypeId = component.PatientZeroPrototypeId }); var pending = EnsureComp(ownedEntity); pending.GracePeriod = _random.Next(component.MinInitialInfectedGrace, component.MaxInitialInfectedGrace); EnsureComp(ownedEntity); EnsureComp(ownedEntity); var inCharacterName = MetaData(ownedEntity).EntityName; - var action = new InstantAction(_prototypeManager.Index(ZombieRuleComponent.ZombifySelfActionPrototype)); + var action = Spawn(ZombieRuleComponent.ZombifySelfActionPrototype); _action.AddAction(mind.OwnedEntity.Value, action, null); var message = Loc.GetString("zombie-patientzero-role-greeting"); diff --git a/Content.Server/Gateway/Components/GatewayComponent.cs b/Content.Server/Gateway/Components/GatewayComponent.cs index 4dda4ad2fc4..bc1668b8a81 100644 --- a/Content.Server/Gateway/Components/GatewayComponent.cs +++ b/Content.Server/Gateway/Components/GatewayComponent.cs @@ -8,7 +8,7 @@ namespace Content.Server.Gateway.Components; /// Controlling gateway that links to other gateway destinations on the server. /// [RegisterComponent, Access(typeof(GatewaySystem))] -public sealed class GatewayComponent : Component +public sealed partial class GatewayComponent : Component { /// /// Sound to play when opening or closing the portal. diff --git a/Content.Server/Gateway/Components/GatewayDestinationComponent.cs b/Content.Server/Gateway/Components/GatewayDestinationComponent.cs index 699c852900d..50aff0b24a4 100644 --- a/Content.Server/Gateway/Components/GatewayDestinationComponent.cs +++ b/Content.Server/Gateway/Components/GatewayDestinationComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Gateway.Components; /// A gateway destination linked to by station gateway(s). /// [RegisterComponent, Access(typeof(GatewaySystem))] -public sealed class GatewayDestinationComponent : Component +public sealed partial class GatewayDestinationComponent : Component { /// /// Whether this destination is shown in the gateway ui. diff --git a/Content.Server/Gateway/Systems/GatewaySystem.cs b/Content.Server/Gateway/Systems/GatewaySystem.cs index 0c6f68b64da..21cb58c3bd2 100644 --- a/Content.Server/Gateway/Systems/GatewaySystem.cs +++ b/Content.Server/Gateway/Systems/GatewaySystem.cs @@ -66,18 +66,18 @@ private void UpdateUserInterface(EntityUid uid, GatewayComponent comp, T args private void UpdateUserInterface(EntityUid uid, GatewayComponent comp) { - var destinations = new List<(EntityUid, String, TimeSpan, bool)>(); + var destinations = new List<(NetEntity, String, TimeSpan, bool)>(); foreach (var destUid in comp.Destinations) { var dest = Comp(destUid); if (!dest.Enabled) continue; - destinations.Add((destUid, dest.Name, dest.NextReady, HasComp(destUid))); + destinations.Add((GetNetEntity(destUid), dest.Name, dest.NextReady, HasComp(destUid))); } GetDestination(uid, out var current); - var state = new GatewayBoundUserInterfaceState(destinations, current, comp.NextClose, comp.LastOpen); + var state = new GatewayBoundUserInterfaceState(destinations, GetNetEntity(current), comp.NextClose, comp.LastOpen); _ui.TrySetUiState(uid, GatewayUiKey.Key, state); } @@ -89,22 +89,24 @@ private void UpdateAppearance(EntityUid uid) private void OnOpenPortal(EntityUid uid, GatewayComponent comp, GatewayOpenPortalMessage args) { // can't link if portal is already open on either side, the destination is invalid or on cooldown + var desto = GetEntity(args.Destination); + if (HasComp(uid) || - HasComp(args.Destination) || - !TryComp(args.Destination, out var dest) || + HasComp(desto) || + !TryComp(desto, out var dest) || !dest.Enabled || _timing.CurTime < dest.NextReady) return; // TODO: admin log??? - OpenPortal(uid, comp, args.Destination, dest); + OpenPortal(uid, comp, desto, dest); } private void OpenPortal(EntityUid uid, GatewayComponent comp, EntityUid dest, GatewayDestinationComponent destComp) { _linkedEntity.TryLink(uid, dest); - EnsureComp(uid); - EnsureComp(dest); + EnsureComp(uid).CanTeleportToOtherMaps = true; + EnsureComp(dest).CanTeleportToOtherMaps = true; // for ui comp.LastOpen = _timing.CurTime; diff --git a/Content.Server/Gatherable/Components/GatherableComponent.cs b/Content.Server/Gatherable/Components/GatherableComponent.cs index 53775a1124a..f1d0c6ef74d 100644 --- a/Content.Server/Gatherable/Components/GatherableComponent.cs +++ b/Content.Server/Gatherable/Components/GatherableComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Gatherable.Components; [RegisterComponent] [Access(typeof(GatherableSystem))] -public sealed class GatherableComponent : Component +public sealed partial class GatherableComponent : Component { /// /// Whitelist for specifying the kind of tools can be used on a resource diff --git a/Content.Server/Gatherable/Components/GatheringProjectileComponent.cs b/Content.Server/Gatherable/Components/GatheringProjectileComponent.cs index 0803ee1dde7..2ac8eedcd17 100644 --- a/Content.Server/Gatherable/Components/GatheringProjectileComponent.cs +++ b/Content.Server/Gatherable/Components/GatheringProjectileComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Gatherable.Components; /// Destroys a gatherable entity when colliding with it. /// [RegisterComponent] -public sealed class GatheringProjectileComponent : Component +public sealed partial class GatheringProjectileComponent : Component { /// /// How many more times we can gather. diff --git a/Content.Server/Gatherable/Components/SoundOnGatherComponent.cs b/Content.Server/Gatherable/Components/SoundOnGatherComponent.cs new file mode 100644 index 00000000000..f46eb281f85 --- /dev/null +++ b/Content.Server/Gatherable/Components/SoundOnGatherComponent.cs @@ -0,0 +1,19 @@ +using Content.Shared.Audio; +using Robust.Shared.Audio; + +namespace Content.Server.Gatherable.Components; + +/// +/// Plays the specified sound when this entity is gathered. +/// +[RegisterComponent, Access(typeof(GatherableSystem))] +public sealed partial class SoundOnGatherComponent : Component +{ + [ViewVariables(VVAccess.ReadWrite), DataField("sound")] + public SoundSpecifier Sound = new SoundPathSpecifier("/Audio/Effects/break_stone.ogg") + { + Params = AudioParams.Default + .WithVariation(SharedContentAudioSystem.DefaultVariation) + .WithVolume(-3f), + }; +} diff --git a/Content.Server/Gatherable/GatherableSystem.Projectile.cs b/Content.Server/Gatherable/GatherableSystem.Projectile.cs index b8f30a466c9..f773ca2dbb9 100644 --- a/Content.Server/Gatherable/GatherableSystem.Projectile.cs +++ b/Content.Server/Gatherable/GatherableSystem.Projectile.cs @@ -16,7 +16,7 @@ private void InitializeProjectile() private void OnProjectileCollide(EntityUid uid, GatheringProjectileComponent component, ref StartCollideEvent args) { if (!args.OtherFixture.Hard || - args.OurFixture.ID != SharedProjectileSystem.ProjectileFixture || + args.OurFixtureId != SharedProjectileSystem.ProjectileFixture || component.Amount <= 0 || !TryComp(args.OtherEntity, out var gatherable)) { diff --git a/Content.Server/Gatherable/GatherableSystem.cs b/Content.Server/Gatherable/GatherableSystem.cs index 84976bb4bc5..5eaff020d5e 100644 --- a/Content.Server/Gatherable/GatherableSystem.cs +++ b/Content.Server/Gatherable/GatherableSystem.cs @@ -43,14 +43,18 @@ private void OnActivate(EntityUid uid, GatherableComponent component, ActivateIn Gather(uid, args.User, component); } - public void Gather(EntityUid gatheredUid, EntityUid? gatherer = null, GatherableComponent? component = null, SoundSpecifier? sound = null) + public void Gather(EntityUid gatheredUid, EntityUid? gatherer = null, GatherableComponent? component = null) { if (!Resolve(gatheredUid, ref component)) return; + if (TryComp(gatheredUid, out var soundComp)) + { + _audio.PlayPvs(soundComp.Sound, Transform(gatheredUid).Coordinates); + } + // Complete the gathering process _destructible.DestroyEntity(gatheredUid); - _audio.PlayPvs(sound, gatheredUid); // Spawn the loot! if (component.MappedLoot == null) diff --git a/Content.Server/Ghost/Components/GhostComponent.cs b/Content.Server/Ghost/Components/GhostComponent.cs deleted file mode 100644 index 02f123d6a9f..00000000000 --- a/Content.Server/Ghost/Components/GhostComponent.cs +++ /dev/null @@ -1,33 +0,0 @@ -using Content.Shared.Actions; -using Content.Shared.Actions.ActionTypes; -using Content.Shared.Ghost; -using Robust.Shared.Utility; - -namespace Content.Server.Ghost.Components -{ - [RegisterComponent] - [ComponentReference(typeof(SharedGhostComponent))] - public sealed class GhostComponent : SharedGhostComponent - { - public TimeSpan TimeOfDeath { get; set; } = TimeSpan.Zero; - - [DataField("booRadius")] - public float BooRadius = 3; - - [DataField("booMaxTargets")] - public int BooMaxTargets = 3; - - [DataField("action")] - public InstantAction Action = new() - { - UseDelay = TimeSpan.FromSeconds(120), - Icon = new SpriteSpecifier.Texture(new ("Interface/Actions/scream.png")), - DisplayName = "action-name-boo", - Description = "action-description-boo", - CheckCanInteract = false, - Event = new BooActionEvent(), - }; - } - - public sealed class BooActionEvent : InstantActionEvent { } -} diff --git a/Content.Server/Ghost/Components/GhostOnMoveComponent.cs b/Content.Server/Ghost/Components/GhostOnMoveComponent.cs index c4577d36c95..e3abc976885 100644 --- a/Content.Server/Ghost/Components/GhostOnMoveComponent.cs +++ b/Content.Server/Ghost/Components/GhostOnMoveComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Ghost.Components { [RegisterComponent] - public sealed class GhostOnMoveComponent : Component + public sealed partial class GhostOnMoveComponent : Component { [DataField("canReturn")] public bool CanReturn { get; set; } = true; diff --git a/Content.Server/Ghost/Ghost.cs b/Content.Server/Ghost/Ghost.cs index c539c119faa..0462d1bc943 100644 --- a/Content.Server/Ghost/Ghost.cs +++ b/Content.Server/Ghost/Ghost.cs @@ -1,6 +1,6 @@ using Content.Server.GameTicking; -using Content.Server.Players; using Content.Shared.Administration; +using Content.Shared.Mind; using Robust.Server.Player; using Robust.Shared.Console; @@ -9,6 +9,8 @@ namespace Content.Server.Ghost [AnyCommand] public sealed class Ghost : IConsoleCommand { + [Dependency] private readonly IEntityManager _entities = default!; + public string Command => "ghost"; public string Description => "Give up on life and become a ghost."; public string Help => "ghost"; @@ -22,14 +24,14 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - var mind = player.ContentData()?.Mind; - if (mind == null) + var minds = _entities.System(); + if (!minds.TryGetMind(player, out var mindId, out var mind)) { shell.WriteLine("You have no Mind, you can't ghost."); return; } - if (!EntitySystem.Get().OnGhostAttempt(mind, true, viaCommand:true)) + if (!EntitySystem.Get().OnGhostAttempt(mindId, true, true, mind)) { shell.WriteLine("You can't ghost right now."); } diff --git a/Content.Server/Ghost/GhostSystem.cs b/Content.Server/Ghost/GhostSystem.cs index 320db2ed388..de21cc3db49 100644 --- a/Content.Server/Ghost/GhostSystem.cs +++ b/Content.Server/Ghost/GhostSystem.cs @@ -3,20 +3,20 @@ using Content.Server.GameTicking; using Content.Server.Ghost.Components; using Content.Server.Mind; -using Content.Server.Mind.Components; -using Content.Server.Players; -using Content.Server.Visible; +using Content.Server.Roles.Jobs; using Content.Server.Warps; using Content.Shared.Actions; using Content.Shared.Administration; using Content.Shared.Examine; +using Content.Shared.Eye; using Content.Shared.Follower; using Content.Shared.Ghost; +using Content.Shared.Mind; +using Content.Shared.Mind.Components; using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; using Content.Shared.Movement.Events; using Content.Shared.Storage.Components; -using JetBrains.Annotations; using Robust.Server.GameObjects; using Robust.Server.Player; using Robust.Shared.Console; @@ -26,19 +26,21 @@ namespace Content.Server.Ghost { - [UsedImplicitly] - public sealed class GhostSystem : SharedGhostSystem + public sealed partial class GhostSystem : SharedGhostSystem { [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly GameTicker _ticker = default!; - [Dependency] private readonly MindSystem _mindSystem = default!; + [Dependency] private readonly SharedMindSystem _mindSystem = default!; [Dependency] private readonly SharedActionsSystem _actions = default!; [Dependency] private readonly VisibilitySystem _visibilitySystem = default!; [Dependency] private readonly EntityLookupSystem _lookup = default!; [Dependency] private readonly FollowerSystem _followerSystem = default!; [Dependency] private readonly MobStateSystem _mobState = default!; + [Dependency] private readonly SharedEyeSystem _eye = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; + [Dependency] private readonly MindSystem _minds = default!; + [Dependency] private readonly JobSystem _jobs = default!; public override void Initialize() { @@ -93,19 +95,19 @@ private void OnRelayMoveInput(EntityUid uid, GhostOnMoveComponent component, ref if (EntityManager.HasComponent(uid)) return; - if (!EntityManager.TryGetComponent(uid, out var mind) || !mind.HasMind || mind.Mind.IsVisitingEntity) + if (!_minds.TryGetMind(uid, out var mindId, out var mind) || mind.IsVisitingEntity) return; if (component.MustBeDead && (_mobState.IsAlive(uid) || _mobState.IsCritical(uid))) return; - _ticker.OnGhostAttempt(mind.Mind, component.CanReturn); + _ticker.OnGhostAttempt(mindId, component.CanReturn, mind: mind); } private void OnGhostStartup(EntityUid uid, GhostComponent component, ComponentStartup args) { // Allow this entity to be seen by other ghosts. - var visibility = EntityManager.EnsureComponent(component.Owner); + var visibility = EntityManager.EnsureComponent(uid); if (_ticker.RunLevel != GameRunLevel.PostRound) { @@ -114,18 +116,25 @@ private void OnGhostStartup(EntityUid uid, GhostComponent component, ComponentSt _visibilitySystem.RefreshVisibility(visibility); } - if (EntityManager.TryGetComponent(component.Owner, out EyeComponent? eye)) + if (EntityManager.TryGetComponent(uid, out EyeComponent? eye)) { - eye.VisibilityMask |= (uint) VisibilityFlags.Ghost; + _eye.SetVisibilityMask(uid, eye.VisibilityMask | (int) VisibilityFlags.Ghost, eye); } var time = _gameTiming.CurTime; component.TimeOfDeath = time; Dirty(component); // TODO ghost: remove once ghosts are persistent and aren't deleted when returning to body - if (component.Action.UseDelay != null) - component.Action.Cooldown = (time, time + component.Action.UseDelay.Value); - _actions.AddAction(uid, component.Action, null); + var action = _actions.AddAction(uid, ref component.ActionEntity, component.Action); + if (action?.UseDelay != null) + { + action.Cooldown = (time, time + action.UseDelay.Value); + Dirty(component.ActionEntity!.Value, action); + } + + _actions.AddAction(uid, ref component.ToggleLightingActionEntity, component.ToggleLightingAction); + _actions.AddAction(uid, ref component.ToggleFoVActionEntity, component.ToggleFoVAction); + _actions.AddAction(uid, ref component.ToggleGhostsActionEntity, component.ToggleGhostsAction); } private void OnGhostShutdown(EntityUid uid, GhostComponent component, ComponentShutdown args) @@ -134,7 +143,7 @@ private void OnGhostShutdown(EntityUid uid, GhostComponent component, ComponentS if (!Terminating(uid)) { // Entity can't be seen by ghosts anymore. - if (EntityManager.TryGetComponent(component.Owner, out VisibilityComponent? visibility)) + if (EntityManager.TryGetComponent(uid, out VisibilityComponent? visibility)) { _visibilitySystem.RemoveLayer(visibility, (int) VisibilityFlags.Ghost, false); _visibilitySystem.AddLayer(visibility, (int) VisibilityFlags.Normal, false); @@ -142,12 +151,12 @@ private void OnGhostShutdown(EntityUid uid, GhostComponent component, ComponentS } // Entity can't see ghosts anymore. - if (EntityManager.TryGetComponent(component.Owner, out EyeComponent? eye)) + if (EntityManager.TryGetComponent(uid, out EyeComponent? eye)) { - eye.VisibilityMask &= ~(uint) VisibilityFlags.Ghost; + _eye.SetVisibilityMask(uid, eye.VisibilityMask & ~(int) VisibilityFlags.Ghost, eye); } - _actions.RemoveAction(uid, component.Action); + _actions.RemoveAction(uid, component.ActionEntity); } } @@ -181,7 +190,7 @@ private void OnGhostWarpsRequest(GhostWarpsRequestEvent msg, EntitySessionEventA if (args.SenderSession.AttachedEntity is not {Valid: true} entity || !EntityManager.HasComponent(entity)) { - Logger.Warning($"User {args.SenderSession.Name} sent a {nameof(GhostWarpsRequestEvent)} without being a ghost."); + Log.Warning($"User {args.SenderSession.Name} sent a {nameof(GhostWarpsRequestEvent)} without being a ghost."); return; } @@ -196,11 +205,11 @@ private void OnGhostReturnToBodyRequest(GhostReturnToBodyRequest msg, EntitySess !ghost.CanReturnToBody || !EntityManager.TryGetComponent(attached, out ActorComponent? actor)) { - Logger.Warning($"User {args.SenderSession.Name} sent an invalid {nameof(GhostReturnToBodyRequest)}"); + Log.Warning($"User {args.SenderSession.Name} sent an invalid {nameof(GhostReturnToBodyRequest)}"); return; } - _mindSystem.UnVisit(actor.PlayerSession.ContentData()!.Mind); + _mindSystem.UnVisit(actor.PlayerSession); } private void OnGhostWarpToTargetRequest(GhostWarpToTargetRequestEvent msg, EntitySessionEventArgs args) @@ -208,25 +217,27 @@ private void OnGhostWarpToTargetRequest(GhostWarpToTargetRequestEvent msg, Entit if (args.SenderSession.AttachedEntity is not {Valid: true} attached || !EntityManager.TryGetComponent(attached, out GhostComponent? ghost)) { - Logger.Warning($"User {args.SenderSession.Name} tried to warp to {msg.Target} without being a ghost."); + Log.Warning($"User {args.SenderSession.Name} tried to warp to {msg.Target} without being a ghost."); return; } - if (!EntityManager.EntityExists(msg.Target)) + var target = GetEntity(msg.Target); + + if (!EntityManager.EntityExists(target)) { - Logger.Warning($"User {args.SenderSession.Name} tried to warp to an invalid entity id: {msg.Target}"); + Log.Warning($"User {args.SenderSession.Name} tried to warp to an invalid entity id: {msg.Target}"); return; } - if (TryComp(msg.Target, out WarpPointComponent? warp) && warp.Follow - || HasComp(msg.Target)) + if (TryComp(target, out WarpPointComponent? warp) && warp.Follow + || HasComp(target)) { - _followerSystem.StartFollowingEntity(ghost.Owner, msg.Target); + _followerSystem.StartFollowingEntity(attached, target); return; } - var xform = Transform(ghost.Owner); - xform.Coordinates = Transform(msg.Target).Coordinates; + var xform = Transform(attached); + xform.Coordinates = Transform(target).Coordinates; xform.AttachToGridOrMap(); if (TryComp(attached, out PhysicsComponent? physics)) _physics.SetLinearVelocity(attached, Vector2.Zero, body: physics); @@ -242,11 +253,13 @@ private void DeleteEntity(EntityUid uid) private IEnumerable GetLocationWarps() { - foreach (var warp in EntityManager.EntityQuery(true)) + var allQuery = AllEntityQuery(); + + while (allQuery.MoveNext(out var uid, out var warp)) { if (warp.Location != null) { - yield return new GhostWarp(warp.Owner, warp.Location, true); + yield return new GhostWarp(GetNetEntity(uid), warp.Location, true); } } } @@ -261,10 +274,11 @@ private IEnumerable GetPlayerWarps(EntityUid except) TryComp(attached, out var mind); - string playerInfo = $"{EntityManager.GetComponent(attached).EntityName} ({mind?.Mind?.CurrentJob?.Name ?? "Unknown"})"; + var jobName = _jobs.MindTryGetJobName(mind?.Mind); + var playerInfo = $"{EntityManager.GetComponent(attached).EntityName} ({jobName})"; if (_mobState.IsAlive(attached) || _mobState.IsCritical(attached)) - yield return new GhostWarp(attached, playerInfo, false); + yield return new GhostWarp(GetNetEntity(attached), playerInfo, false); } } } @@ -321,9 +335,11 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) if (uid == null || !entityManager.HasComponent(uid) || !entityManager.TryGetComponent(uid, out var eyeComponent)) + { return; + } - eyeComponent.VisibilityMask ^= (uint) VisibilityFlags.Ghost; + entityManager.System().SetVisibilityMask(uid.Value, eyeComponent.VisibilityMask ^ (int) VisibilityFlags.Ghost, eyeComponent); } } } diff --git a/Content.Server/Ghost/ObserverRole.cs b/Content.Server/Ghost/ObserverRole.cs deleted file mode 100644 index 86a422422bf..00000000000 --- a/Content.Server/Ghost/ObserverRole.cs +++ /dev/null @@ -1,17 +0,0 @@ -using Content.Server.Roles; - -namespace Content.Server.Ghost -{ - /// - /// This is used to mark Observers properly, as they get Minds - /// - public sealed class ObserverRole : Role - { - public override string Name => Loc.GetString("observer-role-name"); - public override bool Antagonist => false; - - public ObserverRole(Mind.Mind mind) : base(mind) - { - } - } -} diff --git a/Content.Server/Ghost/ObserverRoleComponent.cs b/Content.Server/Ghost/ObserverRoleComponent.cs new file mode 100644 index 00000000000..9952da72a12 --- /dev/null +++ b/Content.Server/Ghost/ObserverRoleComponent.cs @@ -0,0 +1,11 @@ +namespace Content.Server.Ghost +{ + /// + /// This is used to mark Observers properly, as they get Minds + /// + [RegisterComponent] + public sealed partial class ObserverRoleComponent : Component + { + public string Name => Loc.GetString("observer-role-name"); + } +} diff --git a/Content.Server/Ghost/ReturnToBodyEui.cs b/Content.Server/Ghost/ReturnToBodyEui.cs index ff7ba16a01e..77b143f7df9 100644 --- a/Content.Server/Ghost/ReturnToBodyEui.cs +++ b/Content.Server/Ghost/ReturnToBodyEui.cs @@ -1,18 +1,17 @@ using Content.Server.EUI; -using Content.Server.Mind; -using Content.Server.Players; using Content.Shared.Eui; using Content.Shared.Ghost; +using Content.Shared.Mind; namespace Content.Server.Ghost; public sealed class ReturnToBodyEui : BaseEui { - private readonly MindSystem _mindSystem; + private readonly SharedMindSystem _mindSystem; - private readonly Mind.Mind _mind; + private readonly MindComponent _mind; - public ReturnToBodyEui(Mind.Mind mind, MindSystem mindSystem) + public ReturnToBodyEui(MindComponent mind, SharedMindSystem mindSystem) { _mind = mind; _mindSystem = mindSystem; @@ -29,8 +28,8 @@ public override void HandleMessage(EuiMessageBase msg) return; } - if (_mindSystem.TryGetSession(_mind, out var session)) - _mindSystem.UnVisit(session.ContentData()!.Mind); + _mindSystem.UnVisit(_mind.Session); + Close(); } } diff --git a/Content.Server/Ghost/Roles/Components/GhostRoleComponent.cs b/Content.Server/Ghost/Roles/Components/GhostRoleComponent.cs index 330adbfe684..775156dc76d 100644 --- a/Content.Server/Ghost/Roles/Components/GhostRoleComponent.cs +++ b/Content.Server/Ghost/Roles/Components/GhostRoleComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Ghost.Roles.Components { [RegisterComponent] [Access(typeof(GhostRoleSystem))] - public sealed class GhostRoleComponent : Component + public sealed partial class GhostRoleComponent : Component { [DataField("name")] private string _roleName = "Unknown"; diff --git a/Content.Server/Ghost/Roles/Components/GhostRoleMobSpawnerComponent.cs b/Content.Server/Ghost/Roles/Components/GhostRoleMobSpawnerComponent.cs index 39e22d96c12..4cdab6ce070 100644 --- a/Content.Server/Ghost/Roles/Components/GhostRoleMobSpawnerComponent.cs +++ b/Content.Server/Ghost/Roles/Components/GhostRoleMobSpawnerComponent.cs @@ -8,7 +8,7 @@ namespace Content.Server.Ghost.Roles.Components /// [RegisterComponent] [Access(typeof(GhostRoleSystem))] - public sealed class GhostRoleMobSpawnerComponent : Component + public sealed partial class GhostRoleMobSpawnerComponent : Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("deleteOnSpawn")] public bool DeleteOnSpawn = true; diff --git a/Content.Server/Ghost/Roles/Components/GhostTakeoverAvailableComponent.cs b/Content.Server/Ghost/Roles/Components/GhostTakeoverAvailableComponent.cs index 44c09f3a673..4422cbbb5ec 100644 --- a/Content.Server/Ghost/Roles/Components/GhostTakeoverAvailableComponent.cs +++ b/Content.Server/Ghost/Roles/Components/GhostTakeoverAvailableComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.Ghost.Roles.Components /// [RegisterComponent] [Access(typeof(GhostRoleSystem))] - public sealed class GhostTakeoverAvailableComponent : Component + public sealed partial class GhostTakeoverAvailableComponent : Component { } } diff --git a/Content.Server/Ghost/Roles/Components/TakeGhostRoleEvent.cs b/Content.Server/Ghost/Roles/Components/TakeGhostRoleEvent.cs index a76ea955798..c97e3be9dc4 100644 --- a/Content.Server/Ghost/Roles/Components/TakeGhostRoleEvent.cs +++ b/Content.Server/Ghost/Roles/Components/TakeGhostRoleEvent.cs @@ -1,9 +1,9 @@ -using Robust.Server.Player; +using Robust.Shared.Players; namespace Content.Server.Ghost.Roles.Components; [ByRefEvent] -public record struct TakeGhostRoleEvent(IPlayerSession Player) +public record struct TakeGhostRoleEvent(ICommonSession Player) { public bool TookRole { get; set; } } diff --git a/Content.Server/Ghost/Roles/Components/ToggleableGhostRoleComponent.cs b/Content.Server/Ghost/Roles/Components/ToggleableGhostRoleComponent.cs index 8af0886d92c..fc10d55069e 100644 --- a/Content.Server/Ghost/Roles/Components/ToggleableGhostRoleComponent.cs +++ b/Content.Server/Ghost/Roles/Components/ToggleableGhostRoleComponent.cs @@ -4,7 +4,7 @@ /// This is used for a ghost role which can be toggled on and off at will, like a PAI. /// [RegisterComponent, Access(typeof(ToggleableGhostRoleSystem))] -public sealed class ToggleableGhostRoleComponent : Component +public sealed partial class ToggleableGhostRoleComponent : Component { [DataField("examineTextMindPresent")] public string ExamineTextMindPresent = string.Empty; diff --git a/Content.Server/Ghost/Roles/GhostRoleMarkerRole.cs b/Content.Server/Ghost/Roles/GhostRoleMarkerRole.cs deleted file mode 100644 index 1f178765abd..00000000000 --- a/Content.Server/Ghost/Roles/GhostRoleMarkerRole.cs +++ /dev/null @@ -1,20 +0,0 @@ -using Content.Server.Roles; - -namespace Content.Server.Ghost.Roles -{ - /// - /// This is used for round end display of ghost roles. - /// It may also be used to ensure some ghost roles count as antagonists in future. - /// - public sealed class GhostRoleMarkerRole : Role - { - private readonly string _name; - public override string Name => _name; - public override bool Antagonist => false; - - public GhostRoleMarkerRole(Mind.Mind mind, string name) : base(mind) - { - _name = name; - } - } -} diff --git a/Content.Server/Ghost/Roles/GhostRoleMarkerRoleComponent.cs b/Content.Server/Ghost/Roles/GhostRoleMarkerRoleComponent.cs new file mode 100644 index 00000000000..bd276e6df70 --- /dev/null +++ b/Content.Server/Ghost/Roles/GhostRoleMarkerRoleComponent.cs @@ -0,0 +1,11 @@ +namespace Content.Server.Ghost.Roles; + +/// +/// This is used for round end display of ghost roles. +/// It may also be used to ensure some ghost roles count as antagonists in future. +/// +[RegisterComponent] +public sealed partial class GhostRoleMarkerRoleComponent : Component +{ + [DataField("name")] public string? Name; +} diff --git a/Content.Server/Ghost/Roles/GhostRoleSystem.cs b/Content.Server/Ghost/Roles/GhostRoleSystem.cs index 09cb53392bc..38be3083792 100644 --- a/Content.Server/Ghost/Roles/GhostRoleSystem.cs +++ b/Content.Server/Ghost/Roles/GhostRoleSystem.cs @@ -1,12 +1,9 @@ using Content.Server.Administration.Logs; using Content.Server.EUI; -using Content.Server.Ghost.Components; using Content.Server.Ghost.Roles.Components; using Content.Server.Ghost.Roles.Events; using Content.Server.Ghost.Roles.UI; using Content.Server.Mind.Commands; -using Content.Server.Mind; -using Content.Server.Mind.Components; using Content.Server.Players; using Content.Shared.Administration; using Content.Shared.Database; @@ -14,12 +11,16 @@ using Content.Shared.GameTicking; using Content.Shared.Ghost; using Content.Shared.Ghost.Roles; +using Content.Shared.Mind; +using Content.Shared.Mind.Components; using Content.Shared.Mobs; +using Content.Shared.Roles; using JetBrains.Annotations; using Robust.Server.GameObjects; using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Enums; +using Robust.Shared.Players; using Robust.Shared.Random; using Robust.Shared.Utility; @@ -34,13 +35,14 @@ public sealed class GhostRoleSystem : EntitySystem [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly FollowerSystem _followerSystem = default!; [Dependency] private readonly TransformSystem _transform = default!; - [Dependency] private readonly MindSystem _mindSystem = default!; + [Dependency] private readonly SharedMindSystem _mindSystem = default!; + [Dependency] private readonly SharedRoleSystem _roleSystem = default!; private uint _nextRoleIdentifier; private bool _needsUpdateGhostRoleCount = true; private readonly Dictionary _ghostRoles = new(); - private readonly Dictionary _openUis = new(); - private readonly Dictionary _openMakeGhostRoleUis = new(); + private readonly Dictionary _openUis = new(); + private readonly Dictionary _openMakeGhostRoleUis = new(); [ViewVariables] public IReadOnlyCollection GhostRoles => _ghostRoles.Values; @@ -117,12 +119,12 @@ public void OpenMakeGhostRoleEui(IPlayerSession session, EntityUid uid) if (_openMakeGhostRoleUis.ContainsKey(session)) CloseEui(session); - var eui = _openMakeGhostRoleUis[session] = new MakeGhostRoleEui(uid); + var eui = _openMakeGhostRoleUis[session] = new MakeGhostRoleEui(EntityManager, GetNetEntity(uid)); _euiManager.OpenEui(eui, session); eui.StateDirty(); } - public void CloseEui(IPlayerSession session) + public void CloseEui(ICommonSession session) { if (!_openUis.ContainsKey(session)) return; @@ -131,7 +133,7 @@ public void CloseEui(IPlayerSession session) eui?.Close(); } - public void CloseMakeGhostRoleEui(IPlayerSession session) + public void CloseMakeGhostRoleEui(ICommonSession session) { if (_openMakeGhostRoleUis.Remove(session, out var eui)) { @@ -189,7 +191,7 @@ public void UnregisterGhostRole(GhostRoleComponent role) UpdateAllEui(); } - public void Takeover(IPlayerSession player, uint identifier) + public void Takeover(ICommonSession player, uint identifier) { if (!_ghostRoles.TryGetValue(identifier, out var role)) return; @@ -204,7 +206,7 @@ public void Takeover(IPlayerSession player, uint identifier) CloseEui(player); } - public void Follow(IPlayerSession player, uint identifier) + public void Follow(ICommonSession player, uint identifier) { if (!_ghostRoles.TryGetValue(identifier, out var role)) return; if (player.AttachedEntity == null) return; @@ -212,7 +214,7 @@ public void Follow(IPlayerSession player, uint identifier) _followerSystem.StartFollowingEntity(player.AttachedEntity.Value, role.Owner); } - public void GhostRoleInternalCreateMindAndTransfer(IPlayerSession player, EntityUid roleUid, EntityUid mob, GhostRoleComponent? role = null) + public void GhostRoleInternalCreateMindAndTransfer(ICommonSession player, EntityUid roleUid, EntityUid mob, GhostRoleComponent? role = null) { if (!Resolve(roleUid, ref role)) return; @@ -220,7 +222,7 @@ public void GhostRoleInternalCreateMindAndTransfer(IPlayerSession player, Entity var newMind = _mindSystem.CreateMind(player.UserId, EntityManager.GetComponent(mob).EntityName); - _mindSystem.AddRole(newMind, new GhostRoleMarkerRole(newMind, role.RoleName)); + _roleSystem.MindAddRole(newMind, new GhostRoleMarkerRoleComponent { Name = role.RoleName }); _mindSystem.SetUserId(newMind, player.UserId); _mindSystem.TransferTo(newMind, mob); diff --git a/Content.Server/Ghost/Roles/MakeGhostRoleCommand.cs b/Content.Server/Ghost/Roles/MakeGhostRoleCommand.cs index cbbec64f11f..45c577de225 100644 --- a/Content.Server/Ghost/Roles/MakeGhostRoleCommand.cs +++ b/Content.Server/Ghost/Roles/MakeGhostRoleCommand.cs @@ -1,7 +1,7 @@ using Content.Server.Administration; using Content.Server.Ghost.Roles.Components; -using Content.Server.Mind.Components; using Content.Shared.Administration; +using Content.Shared.Mind.Components; using Robust.Shared.Console; namespace Content.Server.Ghost.Roles @@ -9,6 +9,8 @@ namespace Content.Server.Ghost.Roles [AdminCommand(AdminFlags.Admin)] public sealed class MakeGhostRoleCommand : IConsoleCommand { + [Dependency] private readonly IEntityManager _entManager = default!; + public string Command => "makeghostrole"; public string Description => "Turns an entity into a ghost role."; public string Help => $"Usage: {Command} []"; @@ -21,21 +23,19 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - var entityManager = IoCManager.Resolve(); - - if (!EntityUid.TryParse(args[0], out var uid)) + if (!NetEntity.TryParse(args[0], out var uidNet) || !_entManager.TryGetEntity(uidNet, out var uid)) { shell.WriteLine($"{args[0]} is not a valid entity uid."); return; } - if (!entityManager.TryGetComponent(uid, out MetaDataComponent? metaData)) + if (!_entManager.TryGetComponent(uid, out MetaDataComponent? metaData)) { shell.WriteLine($"No entity found with uid {uid}"); return; } - if (entityManager.TryGetComponent(uid, out MindContainerComponent? mind) && + if (_entManager.TryGetComponent(uid, out MindContainerComponent? mind) && mind.HasMind) { shell.WriteLine($"Entity {metaData.EntityName} with id {uid} already has a mind."); @@ -46,20 +46,20 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) var description = args[2]; var rules = args.Length >= 4 ? args[3] : Loc.GetString("ghost-role-component-default-rules"); - if (entityManager.TryGetComponent(uid, out GhostRoleComponent? ghostRole)) + if (_entManager.TryGetComponent(uid, out GhostRoleComponent? ghostRole)) { shell.WriteLine($"Entity {metaData.EntityName} with id {uid} already has a {nameof(GhostRoleComponent)}"); return; } - if (entityManager.TryGetComponent(uid, out GhostTakeoverAvailableComponent? takeOver)) + if (_entManager.HasComponent(uid)) { shell.WriteLine($"Entity {metaData.EntityName} with id {uid} already has a {nameof(GhostTakeoverAvailableComponent)}"); return; } - ghostRole = entityManager.AddComponent(uid); - entityManager.AddComponent(uid); + ghostRole = _entManager.AddComponent(uid.Value); + _entManager.AddComponent(uid.Value); ghostRole.RoleName = name; ghostRole.RoleDescription = description; ghostRole.RoleRules = rules; diff --git a/Content.Server/Ghost/Roles/ToggleableGhostRoleSystem.cs b/Content.Server/Ghost/Roles/ToggleableGhostRoleSystem.cs index 3655da6fd88..774de4e191e 100644 --- a/Content.Server/Ghost/Roles/ToggleableGhostRoleSystem.cs +++ b/Content.Server/Ghost/Roles/ToggleableGhostRoleSystem.cs @@ -1,10 +1,8 @@ -using Content.Server.Ghost.Roles.Components; -using Content.Server.Mind; -using Content.Server.Mind.Components; -using Content.Server.PAI; +using Content.Server.Ghost.Roles.Components; using Content.Shared.Examine; using Content.Shared.Interaction.Events; using Content.Shared.Mind; +using Content.Shared.Mind.Components; using Content.Shared.Popups; using Content.Shared.Verbs; @@ -17,9 +15,7 @@ public sealed class ToggleableGhostRoleSystem : EntitySystem { [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; - [Dependency] private readonly MindSystem _mind = default!; - //todo this really shouldn't be in here but this system was converted from PAIs - [Dependency] private readonly PAISystem _pai = default!; + [Dependency] private readonly SharedMindSystem _mind = default!; /// public override void Initialize() @@ -87,6 +83,8 @@ private void OnMindAdded(EntityUid uid, ToggleableGhostRoleComponent pai, MindAd private void OnMindRemoved(EntityUid uid, ToggleableGhostRoleComponent component, MindRemovedMessage args) { + // Mind was removed, prepare for re-toggle of the role + RemCompDeferred(uid); UpdateAppearance(uid, ToggleableGhostRoleStatus.Off); } @@ -107,15 +105,12 @@ private void AddWipeVerb(EntityUid uid, ToggleableGhostRoleComponent component, Text = Loc.GetString(component.WipeVerbText), Act = () => { - if (!TryComp(uid, out var mindComp) || mindComp.Mind == null) + if (!_mind.TryGetMind(uid, out var mindId, out var mind)) return; // Wiping device :( // The shutdown of the Mind should cause automatic reset of the pAI during OnMindRemoved - // EDIT: But it doesn't!!!! Wtf? Do stuff manually - _mind.TransferTo(mindComp.Mind, null); + _mind.TransferTo(mindId, null, mind: mind); _popup.PopupEntity(Loc.GetString(component.WipeVerbPopup), uid, args.User, PopupType.Large); - UpdateAppearance(uid, ToggleableGhostRoleStatus.Off); - _pai.PAITurningOff(uid); } }; args.Verbs.Add(verb); @@ -133,7 +128,6 @@ private void AddWipeVerb(EntityUid uid, ToggleableGhostRoleComponent component, RemCompDeferred(uid); _popup.PopupEntity(Loc.GetString(component.StopSearchVerbPopup), uid, args.User); UpdateAppearance(uid, ToggleableGhostRoleStatus.Off); - _pai.PAITurningOff(uid); } }; args.Verbs.Add(verb); diff --git a/Content.Server/Ghost/Roles/UI/MakeGhostRoleEui.cs b/Content.Server/Ghost/Roles/UI/MakeGhostRoleEui.cs index c2f46f7c795..c2dce9c563d 100644 --- a/Content.Server/Ghost/Roles/UI/MakeGhostRoleEui.cs +++ b/Content.Server/Ghost/Roles/UI/MakeGhostRoleEui.cs @@ -6,23 +6,26 @@ namespace Content.Server.Ghost.Roles.UI { public sealed class MakeGhostRoleEui : BaseEui { - public MakeGhostRoleEui(EntityUid entityUid) + private IEntityManager _entManager; + + public MakeGhostRoleEui(IEntityManager entManager, NetEntity entity) { - EntityUid = entityUid; + _entManager = entManager; + Entity = entity; } - public EntityUid EntityUid { get; } + public NetEntity Entity { get; } public override EuiStateBase GetNewState() { - return new MakeGhostRoleEuiState(EntityUid); + return new MakeGhostRoleEuiState(Entity); } public override void Closed() { base.Closed(); - EntitySystem.Get().CloseMakeGhostRoleEui(Player); + _entManager.System().CloseMakeGhostRoleEui(Player); } } } diff --git a/Content.Server/GhostKick/GhostKickUserOnTriggerComponent.cs b/Content.Server/GhostKick/GhostKickUserOnTriggerComponent.cs index dcbf72deb8e..11fb0156a40 100644 --- a/Content.Server/GhostKick/GhostKickUserOnTriggerComponent.cs +++ b/Content.Server/GhostKick/GhostKickUserOnTriggerComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.GhostKick; [RegisterComponent] -public sealed class GhostKickUserOnTriggerComponent : Component +public sealed partial class GhostKickUserOnTriggerComponent : Component { } diff --git a/Content.Server/Gravity/GravityGeneratorComponent.cs b/Content.Server/Gravity/GravityGeneratorComponent.cs index 511fd49bdd6..4168de43df7 100644 --- a/Content.Server/Gravity/GravityGeneratorComponent.cs +++ b/Content.Server/Gravity/GravityGeneratorComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Gravity { [RegisterComponent] [Access(typeof(GravityGeneratorSystem))] - public sealed class GravityGeneratorComponent : SharedGravityGeneratorComponent + public sealed partial class GravityGeneratorComponent : SharedGravityGeneratorComponent { // 1% charge per second. [ViewVariables(VVAccess.ReadWrite)] [DataField("chargeRate")] public float ChargeRate { get; set; } = 0.01f; diff --git a/Content.Server/Gravity/GravityGeneratorSystem.cs b/Content.Server/Gravity/GravityGeneratorSystem.cs index ad745ffa5d7..1a9b2ad6e99 100644 --- a/Content.Server/Gravity/GravityGeneratorSystem.cs +++ b/Content.Server/Gravity/GravityGeneratorSystem.cs @@ -17,6 +17,7 @@ public sealed class GravityGeneratorSystem : EntitySystem [Dependency] private readonly AmbientSoundSystem _ambientSoundSystem = default!; [Dependency] private readonly GravitySystem _gravitySystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedPointLightSystem _lights = default!; [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; public override void Initialize() @@ -233,10 +234,10 @@ public void UpdateState(GravityGeneratorComponent grav, ApcPowerReceiverComponen var appearance = EntityManager.GetComponentOrNull(uid); _appearance.SetData(uid, GravityGeneratorVisuals.Charge, grav.Charge, appearance); - if (EntityManager.TryGetComponent(uid, out PointLightComponent? pointLight)) + if (_lights.TryGetLight(uid, out var pointLight)) { - pointLight.Enabled = grav.Charge > 0; - pointLight.Radius = MathHelper.Lerp(grav.LightRadiusMin, grav.LightRadiusMax, grav.Charge); + _lights.SetEnabled(uid, grav.Charge > 0, pointLight); + _lights.SetRadius(uid, MathHelper.Lerp(grav.LightRadiusMin, grav.LightRadiusMax, grav.Charge), pointLight); } if (!grav.Intact) diff --git a/Content.Server/Guardian/CanHostGuardianComponent.cs b/Content.Server/Guardian/CanHostGuardianComponent.cs index 92297602261..543a263d85f 100644 --- a/Content.Server/Guardian/CanHostGuardianComponent.cs +++ b/Content.Server/Guardian/CanHostGuardianComponent.cs @@ -1,6 +1,6 @@ namespace Content.Server.Guardian; [RegisterComponent] -public sealed class CanHostGuardianComponent : Component +public sealed partial class CanHostGuardianComponent : Component { } diff --git a/Content.Server/Guardian/GuardianComponent.cs b/Content.Server/Guardian/GuardianComponent.cs index 426642f517a..dcb9a8c0540 100644 --- a/Content.Server/Guardian/GuardianComponent.cs +++ b/Content.Server/Guardian/GuardianComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Guardian /// Given to guardians to monitor their link with the host /// [RegisterComponent] - public sealed class GuardianComponent : Component + public sealed partial class GuardianComponent : Component { /// /// The guardian host entity diff --git a/Content.Server/Guardian/GuardianCreatorComponent.cs b/Content.Server/Guardian/GuardianCreatorComponent.cs index 7729348453e..dfe801f290f 100644 --- a/Content.Server/Guardian/GuardianCreatorComponent.cs +++ b/Content.Server/Guardian/GuardianCreatorComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Guardian /// Creates a GuardianComponent attached to the user's GuardianHost. /// [RegisterComponent] - public sealed class GuardianCreatorComponent : Component + public sealed partial class GuardianCreatorComponent : Component { /// /// Counts as spent upon exhausting the injection diff --git a/Content.Server/Guardian/GuardianHostComponent.cs b/Content.Server/Guardian/GuardianHostComponent.cs index e317f59be86..6a747ae86a4 100644 --- a/Content.Server/Guardian/GuardianHostComponent.cs +++ b/Content.Server/Guardian/GuardianHostComponent.cs @@ -1,7 +1,6 @@ -using Content.Shared.Actions; -using Content.Shared.Actions.ActionTypes; using Robust.Shared.Containers; -using Robust.Shared.Utility; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.Guardian { @@ -9,7 +8,7 @@ namespace Content.Server.Guardian /// Given to guardian users upon establishing a guardian link with the entity /// [RegisterComponent] - public sealed class GuardianHostComponent : Component + public sealed partial class GuardianHostComponent : Component { /// /// Guardian hosted within the component @@ -24,17 +23,9 @@ public sealed class GuardianHostComponent : Component /// [ViewVariables] public ContainerSlot GuardianContainer = default!; - [DataField("action")] - public InstantAction Action = new() - { - DisplayName = "action-name-guardian", - Description = "action-description-guardian", - Icon = new SpriteSpecifier.Texture(new ("Interface/Actions/manifest.png")), - UseDelay = TimeSpan.FromSeconds(2), - CheckCanInteract = false, // allow use while stunned, etc. Gets removed on death anyways. - Event = new GuardianToggleActionEvent(), - }; - } + [DataField("action", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string Action = "ActionToggleGuardian"; - public sealed class GuardianToggleActionEvent : InstantActionEvent { }; + [DataField("actionEntity")] public EntityUid? ActionEntity; + } } diff --git a/Content.Server/Guardian/GuardianSystem.cs b/Content.Server/Guardian/GuardianSystem.cs index 24d7a7e8386..4283869a25d 100644 --- a/Content.Server/Guardian/GuardianSystem.cs +++ b/Content.Server/Guardian/GuardianSystem.cs @@ -1,12 +1,12 @@ -using Content.Server.Inventory; -using Content.Server.Popups; using Content.Server.Body.Systems; +using Content.Server.Popups; using Content.Shared.Actions; using Content.Shared.Audio; using Content.Shared.Damage; using Content.Shared.DoAfter; using Content.Shared.Examine; using Content.Shared.Guardian; +using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; using Content.Shared.Interaction; using Content.Shared.Interaction.Events; @@ -16,7 +16,6 @@ using Robust.Shared.Containers; using Robust.Shared.Player; using Robust.Shared.Utility; -using Content.Shared.Hands.Components; namespace Content.Server.Guardian { @@ -90,7 +89,7 @@ private void OnGuardianPlayer(EntityUid uid, GuardianComponent component, Player private void OnHostInit(EntityUid uid, GuardianHostComponent component, ComponentInit args) { component.GuardianContainer = uid.EnsureContainer("GuardianContainer"); - _actionSystem.AddAction(uid, component.Action, null); + _actionSystem.AddAction(uid, ref component.ActionEntity, component.Action); } private void OnHostShutdown(EntityUid uid, GuardianHostComponent component, ComponentShutdown args) @@ -102,7 +101,7 @@ private void OnHostShutdown(EntityUid uid, GuardianHostComponent component, Comp _bodySystem.GibBody(component.HostedGuardian.Value); EntityManager.QueueDeleteEntity(component.HostedGuardian.Value); - _actionSystem.RemoveAction(uid, component.Action); + _actionSystem.RemoveAction(uid, component.ActionEntity); } private void OnGuardianAttackAttempt(EntityUid uid, GuardianComponent component, AttackAttemptEvent args) @@ -168,7 +167,7 @@ private void UseCreator(EntityUid user, EntityUid target, EntityUid injector, Gu return; } - _doAfterSystem.TryStartDoAfter(new DoAfterArgs(user, component.InjectionDelay, new GuardianCreatorDoAfterEvent(), injector, target: target, used: injector) + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, user, component.InjectionDelay, new GuardianCreatorDoAfterEvent(), injector, target: target, used: injector) { BreakOnTargetMove = true, BreakOnUserMove = true diff --git a/Content.Server/Hands/Systems/HandsSystem.cs b/Content.Server/Hands/Systems/HandsSystem.cs index 9a72d312076..5a9afe01444 100644 --- a/Content.Server/Hands/Systems/HandsSystem.cs +++ b/Content.Server/Hands/Systems/HandsSystem.cs @@ -1,8 +1,8 @@ +using System.Linq; using System.Numerics; using Content.Server.Popups; using Content.Server.Pulling; using Content.Server.Stack; -using Content.Server.Storage.Components; using Content.Server.Storage.EntitySystems; using Content.Server.Stunnable; using Content.Shared.ActionBlocker; @@ -16,6 +16,7 @@ using Content.Shared.Physics.Pull; using Content.Shared.Pulling.Components; using Content.Shared.Stacks; +using Content.Shared.Storage; using Content.Shared.Throwing; using JetBrains.Annotations; using Robust.Server.Player; @@ -30,8 +31,7 @@ namespace Content.Server.Hands.Systems { - [UsedImplicitly] - internal sealed class HandsSystem : SharedHandsSystem + public sealed class HandsSystem : SharedHandsSystem { [Dependency] private readonly InventorySystem _inventorySystem = default!; [Dependency] private readonly StackSystem _stackSystem = default!; @@ -105,7 +105,7 @@ public override void PickupAnimation(EntityUid item, EntityCoordinates initialPo if (exclude != null) filter = filter.RemoveWhereAttachedEntity(entity => entity == exclude); - RaiseNetworkEvent(new PickupAnimationEvent(item, initialPosition, finalPosition, initialAngle), filter); + RaiseNetworkEvent(new PickupAnimationEvent(GetNetEntity(item), GetNetCoordinates(initialPosition), finalPosition, initialAngle), filter); } protected override void HandleEntityRemoved(EntityUid uid, HandsComponent hands, EntRemovedFromContainerMessage args) @@ -178,7 +178,7 @@ private void HandlePullStopped(EntityUid uid, HandsComponent component, PullStop #endregion #region interactions - private bool HandleThrowItem(ICommonSession? session, EntityCoordinates coords, EntityUid uid) + private bool HandleThrowItem(ICommonSession? session, EntityCoordinates coordinates, EntityUid entity) { if (session is not IPlayerSession playerSession) return false; @@ -201,7 +201,7 @@ hands.ActiveHandEntity is not EntityUid throwEnt || throwEnt = splitStack.Value; } - var direction = coords.ToMapPos(EntityManager) - Transform(player).WorldPosition; + var direction = coordinates.ToMapPos(EntityManager) - Transform(player).WorldPosition; if (direction == Vector2.Zero) return true; @@ -252,7 +252,7 @@ private void HandleSmartEquip(ICommonSession? session, string equipmentSlot) return; if (!_inventorySystem.TryGetSlotEntity(plyEnt, equipmentSlot, out var slotEntity) || - !TryComp(slotEntity, out ServerStorageComponent? storageComponent)) + !TryComp(slotEntity, out StorageComponent? storageComponent)) { if (_inventorySystem.HasSlot(plyEnt, equipmentSlot)) { @@ -287,16 +287,17 @@ private void HandleSmartEquip(ICommonSession? session, string equipmentSlot) { _storageSystem.PlayerInsertHeldEntity(slotEntity.Value, plyEnt, storageComponent); } - else if (storageComponent.StoredEntities != null) + else { - if (storageComponent.StoredEntities.Count == 0) + if (!storageComponent.Container.ContainedEntities.Any()) { _popupSystem.PopupEntity(Loc.GetString("hands-system-empty-equipment-slot", ("slotName", equipmentSlot)), plyEnt, session); } else { - var lastStoredEntity = storageComponent.StoredEntities[^1]; - if (storageComponent.Remove(lastStoredEntity)) + var lastStoredEntity = storageComponent.Container.ContainedEntities[^1]; + + if (storageComponent.Container.Remove(lastStoredEntity)) { PickupOrDrop(plyEnt, lastStoredEntity, animateUser: true, handsComp: hands); } diff --git a/Content.Server/HealthExaminable/HealthExaminableComponent.cs b/Content.Server/HealthExaminable/HealthExaminableComponent.cs index 1f3dcb512b7..3f434a93cfe 100644 --- a/Content.Server/HealthExaminable/HealthExaminableComponent.cs +++ b/Content.Server/HealthExaminable/HealthExaminableComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.HealthExaminable; [RegisterComponent, Access(typeof(HealthExaminableSystem))] -public sealed class HealthExaminableComponent : Component +public sealed partial class HealthExaminableComponent : Component { public List Thresholds = new() { FixedPoint2.New(10), FixedPoint2.New(25), FixedPoint2.New(50), FixedPoint2.New(75) }; diff --git a/Content.Server/Holiday/Christmas/LimitedItemGiverComponent.cs b/Content.Server/Holiday/Christmas/LimitedItemGiverComponent.cs index 119987c8cfd..befcfc1e13e 100644 --- a/Content.Server/Holiday/Christmas/LimitedItemGiverComponent.cs +++ b/Content.Server/Holiday/Christmas/LimitedItemGiverComponent.cs @@ -8,7 +8,7 @@ namespace Content.Server.Holiday.Christmas; /// This is used for granting items to lucky souls, exactly once. /// [RegisterComponent, Access(typeof(LimitedItemGiverSystem))] -public sealed class LimitedItemGiverComponent : Component +public sealed partial class LimitedItemGiverComponent : Component { /// /// Santa knows who you are behind the screen, only one gift per player per round! diff --git a/Content.Server/Holiday/Christmas/LimitedItemGiverSystem.cs b/Content.Server/Holiday/Christmas/LimitedItemGiverSystem.cs index d0790dd1a6c..58cf415a250 100644 --- a/Content.Server/Holiday/Christmas/LimitedItemGiverSystem.cs +++ b/Content.Server/Holiday/Christmas/LimitedItemGiverSystem.cs @@ -1,5 +1,4 @@ using Content.Server.Hands.Systems; -using Content.Server.Mind.Components; using Content.Server.Popups; using Content.Shared.Interaction; using Content.Shared.Storage; diff --git a/Content.Server/Holiday/Christmas/RandomGiftComponent.cs b/Content.Server/Holiday/Christmas/RandomGiftComponent.cs index e76f1ee9c43..d67f4133386 100644 --- a/Content.Server/Holiday/Christmas/RandomGiftComponent.cs +++ b/Content.Server/Holiday/Christmas/RandomGiftComponent.cs @@ -9,7 +9,7 @@ namespace Content.Server.Holiday.Christmas; /// This is used for gifts with COMPLETELY random things. /// [RegisterComponent, Access(typeof(RandomGiftSystem))] -public sealed class RandomGiftComponent : Component +public sealed partial class RandomGiftComponent : Component { /// /// The wrapper entity to spawn when unwrapping the gift. diff --git a/Content.Server/Holiday/Christmas/SantaComponent.cs b/Content.Server/Holiday/Christmas/SantaComponent.cs index 3769803f938..a0ce54b66d4 100644 --- a/Content.Server/Holiday/Christmas/SantaComponent.cs +++ b/Content.Server/Holiday/Christmas/SantaComponent.cs @@ -4,7 +4,7 @@ /// This is used as a marker component, allows them to see gift contents. /// [RegisterComponent] -public sealed class SantaComponent : Component +public sealed partial class SantaComponent : Component { } diff --git a/Content.Server/Holiday/Greet/Custom.cs b/Content.Server/Holiday/Greet/Custom.cs index c0db91e8130..1a038fcdf78 100644 --- a/Content.Server/Holiday/Greet/Custom.cs +++ b/Content.Server/Holiday/Greet/Custom.cs @@ -5,7 +5,7 @@ namespace Content.Server.Holiday.Greet { [UsedImplicitly] [DataDefinition] - public sealed class Custom : IHolidayGreet + public sealed partial class Custom : IHolidayGreet { [DataField("text")] private string _greet = string.Empty; diff --git a/Content.Server/Holiday/Greet/DefaultHolidayGreet.cs b/Content.Server/Holiday/Greet/DefaultHolidayGreet.cs index f4bf2fbb203..dcd85318a75 100644 --- a/Content.Server/Holiday/Greet/DefaultHolidayGreet.cs +++ b/Content.Server/Holiday/Greet/DefaultHolidayGreet.cs @@ -3,7 +3,7 @@ namespace Content.Server.Holiday.Greet { [DataDefinition] - public sealed class DefaultHolidayGreet : IHolidayGreet + public sealed partial class DefaultHolidayGreet : IHolidayGreet { public string Greet(HolidayPrototype holiday) { diff --git a/Content.Server/Holiday/HolidayPrototype.cs b/Content.Server/Holiday/HolidayPrototype.cs index 6a3d9770c73..20414ad939a 100644 --- a/Content.Server/Holiday/HolidayPrototype.cs +++ b/Content.Server/Holiday/HolidayPrototype.cs @@ -12,7 +12,7 @@ public sealed class HolidayPrototype : IPrototype [ViewVariables] [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [DataField("beginDay")] public byte BeginDay { get; set; } = 1; @@ -33,13 +33,13 @@ public sealed class HolidayPrototype : IPrototype public Month EndMonth { get; set; } = Month.Invalid; [DataField("shouldCelebrate")] - private readonly IHolidayShouldCelebrate _shouldCelebrate = new DefaultHolidayShouldCelebrate(); + private IHolidayShouldCelebrate _shouldCelebrate = new DefaultHolidayShouldCelebrate(); [DataField("greet")] - private readonly IHolidayGreet _greet = new DefaultHolidayGreet(); + private IHolidayGreet _greet = new DefaultHolidayGreet(); [DataField("celebrate")] - private readonly IHolidayCelebrate? _celebrate = null; + private IHolidayCelebrate? _celebrate = null; public bool ShouldCelebrate(DateTime date) { diff --git a/Content.Server/Holiday/Interfaces/IHolidayShouldCelebrate.cs b/Content.Server/Holiday/Interfaces/IHolidayShouldCelebrate.cs index c2414632b86..611c1bbf04a 100644 --- a/Content.Server/Holiday/Interfaces/IHolidayShouldCelebrate.cs +++ b/Content.Server/Holiday/Interfaces/IHolidayShouldCelebrate.cs @@ -1,7 +1,7 @@ namespace Content.Server.Holiday.Interfaces { [ImplicitDataDefinitionForInheritors] - public interface IHolidayShouldCelebrate + public partial interface IHolidayShouldCelebrate { bool ShouldCelebrate(DateTime date, HolidayPrototype holiday); } diff --git a/Content.Server/Holiday/ShouldCelebrate/ChineseNewYear.cs b/Content.Server/Holiday/ShouldCelebrate/ChineseNewYear.cs index c4b8a4eaa46..2ccc83953b6 100644 --- a/Content.Server/Holiday/ShouldCelebrate/ChineseNewYear.cs +++ b/Content.Server/Holiday/ShouldCelebrate/ChineseNewYear.cs @@ -3,7 +3,7 @@ namespace Content.Server.Holiday.ShouldCelebrate { - public sealed class ChineseNewYear : IHolidayShouldCelebrate + public sealed partial class ChineseNewYear : IHolidayShouldCelebrate { public bool ShouldCelebrate(DateTime date, HolidayPrototype holiday) { diff --git a/Content.Server/Holiday/ShouldCelebrate/Computus.cs b/Content.Server/Holiday/ShouldCelebrate/Computus.cs index ff5fa777e02..ec707d46eac 100644 --- a/Content.Server/Holiday/ShouldCelebrate/Computus.cs +++ b/Content.Server/Holiday/ShouldCelebrate/Computus.cs @@ -8,7 +8,7 @@ namespace Content.Server.Holiday.ShouldCelebrate /// [UsedImplicitly] [DataDefinition] - public sealed class Computus : DefaultHolidayShouldCelebrate + public sealed partial class Computus : DefaultHolidayShouldCelebrate { [DataField("daysEarly")] private byte _daysEarly = 1; diff --git a/Content.Server/Holiday/ShouldCelebrate/DayOfYear.cs b/Content.Server/Holiday/ShouldCelebrate/DayOfYear.cs index 2d777182d1f..30b321d69bc 100644 --- a/Content.Server/Holiday/ShouldCelebrate/DayOfYear.cs +++ b/Content.Server/Holiday/ShouldCelebrate/DayOfYear.cs @@ -8,7 +8,7 @@ namespace Content.Server.Holiday.ShouldCelebrate /// [UsedImplicitly] [DataDefinition] - public sealed class DayOfYear : IHolidayShouldCelebrate + public sealed partial class DayOfYear : IHolidayShouldCelebrate { [DataField("dayOfYear")] private uint _dayOfYear = 1; diff --git a/Content.Server/Holiday/ShouldCelebrate/DefaultHolidayShouldCelebrate.cs b/Content.Server/Holiday/ShouldCelebrate/DefaultHolidayShouldCelebrate.cs index 342189df66a..237bb71e746 100644 --- a/Content.Server/Holiday/ShouldCelebrate/DefaultHolidayShouldCelebrate.cs +++ b/Content.Server/Holiday/ShouldCelebrate/DefaultHolidayShouldCelebrate.cs @@ -3,7 +3,7 @@ namespace Content.Server.Holiday.ShouldCelebrate { [Virtual, DataDefinition] - public class DefaultHolidayShouldCelebrate : IHolidayShouldCelebrate + public partial class DefaultHolidayShouldCelebrate : IHolidayShouldCelebrate { public virtual bool ShouldCelebrate(DateTime date, HolidayPrototype holiday) { diff --git a/Content.Server/Holiday/ShouldCelebrate/FridayThirteenth.cs b/Content.Server/Holiday/ShouldCelebrate/FridayThirteenth.cs index c06202344e7..8f4a9341dd9 100644 --- a/Content.Server/Holiday/ShouldCelebrate/FridayThirteenth.cs +++ b/Content.Server/Holiday/ShouldCelebrate/FridayThirteenth.cs @@ -7,7 +7,7 @@ namespace Content.Server.Holiday.ShouldCelebrate /// For Friday the 13th. Spooky! /// [UsedImplicitly] - public sealed class FridayThirteenth : IHolidayShouldCelebrate + public sealed partial class FridayThirteenth : IHolidayShouldCelebrate { public bool ShouldCelebrate(DateTime date, HolidayPrototype holiday) { diff --git a/Content.Server/Holiday/ShouldCelebrate/WeekdayInMonth.cs b/Content.Server/Holiday/ShouldCelebrate/WeekdayInMonth.cs index 052054b8391..3d626079e61 100644 --- a/Content.Server/Holiday/ShouldCelebrate/WeekdayInMonth.cs +++ b/Content.Server/Holiday/ShouldCelebrate/WeekdayInMonth.cs @@ -7,7 +7,7 @@ namespace Content.Server.Holiday.ShouldCelebrate /// For a holiday that happens the first instance of a weekday on a month. /// [UsedImplicitly] - public sealed class WeekdayInMonth : DefaultHolidayShouldCelebrate + public sealed partial class WeekdayInMonth : DefaultHolidayShouldCelebrate { [DataField("weekday")] private DayOfWeek _weekday = DayOfWeek.Monday; diff --git a/Content.Server/Holosign/HolosignProjectorComponent.cs b/Content.Server/Holosign/HolosignProjectorComponent.cs index be7c712c117..b1d24562214 100644 --- a/Content.Server/Holosign/HolosignProjectorComponent.cs +++ b/Content.Server/Holosign/HolosignProjectorComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Holosign { [RegisterComponent] - public sealed class HolosignProjectorComponent : Component + public sealed partial class HolosignProjectorComponent : Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("signProto", customTypeSerializer:typeof(PrototypeIdSerializer))] diff --git a/Content.Server/Humanoid/Components/RandomHumanoidAppearanceComponent.cs b/Content.Server/Humanoid/Components/RandomHumanoidAppearanceComponent.cs index 2d10a4ae14d..5a0f6fcef11 100644 --- a/Content.Server/Humanoid/Components/RandomHumanoidAppearanceComponent.cs +++ b/Content.Server/Humanoid/Components/RandomHumanoidAppearanceComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.CharacterAppearance.Components; [RegisterComponent] -public sealed class RandomHumanoidAppearanceComponent : Component +public sealed partial class RandomHumanoidAppearanceComponent : Component { [DataField("randomizeName")] public bool RandomizeName = true; } diff --git a/Content.Server/Humanoid/Components/RandomHumanoidSpawnerComponent.cs b/Content.Server/Humanoid/Components/RandomHumanoidSpawnerComponent.cs index 7abfe096e80..b56664fe19e 100644 --- a/Content.Server/Humanoid/Components/RandomHumanoidSpawnerComponent.cs +++ b/Content.Server/Humanoid/Components/RandomHumanoidSpawnerComponent.cs @@ -9,8 +9,8 @@ namespace Content.Server.Humanoid.Components; /// humanoid ingame. /// [RegisterComponent] -public sealed class RandomHumanoidSpawnerComponent : Component +public sealed partial class RandomHumanoidSpawnerComponent : Component { [DataField("settings", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string SettingsPrototypeId = default!; + public string? SettingsPrototypeId; } diff --git a/Content.Server/Humanoid/Systems/RandomHumanoidAppearanceSystem.cs b/Content.Server/Humanoid/Systems/RandomHumanoidAppearanceSystem.cs index 0775f315c97..9185fedc389 100644 --- a/Content.Server/Humanoid/Systems/RandomHumanoidAppearanceSystem.cs +++ b/Content.Server/Humanoid/Systems/RandomHumanoidAppearanceSystem.cs @@ -7,6 +7,7 @@ namespace Content.Server.Humanoid.Systems; public sealed class RandomHumanoidAppearanceSystem : EntitySystem { [Dependency] private readonly HumanoidAppearanceSystem _humanoid = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; public override void Initialize() { @@ -28,9 +29,6 @@ private void OnMapInit(EntityUid uid, RandomHumanoidAppearanceComponent componen _humanoid.LoadProfile(uid, profile, humanoid); if (component.RandomizeName) - { - var meta = MetaData(uid); - meta.EntityName = profile.Name; - } + _metaData.SetEntityName(uid, profile.Name); } } diff --git a/Content.Server/Humanoid/Systems/RandomHumanoidSystem.cs b/Content.Server/Humanoid/Systems/RandomHumanoidSystem.cs index 465987332fc..6a17a52c3dc 100644 --- a/Content.Server/Humanoid/Systems/RandomHumanoidSystem.cs +++ b/Content.Server/Humanoid/Systems/RandomHumanoidSystem.cs @@ -14,7 +14,6 @@ namespace Content.Server.Humanoid.Systems; public sealed class RandomHumanoidSystem : EntitySystem { [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - [Dependency] private readonly IComponentFactory _compFactory = default!; [Dependency] private readonly ISerializationManager _serialization = default!; [Dependency] private readonly MetaDataSystem _metaData = default!; @@ -30,7 +29,8 @@ public override void Initialize() private void OnMapInit(EntityUid uid, RandomHumanoidSpawnerComponent component, MapInitEvent args) { QueueDel(uid); - SpawnRandomHumanoid(component.SettingsPrototypeId, Transform(uid).Coordinates, MetaData(uid).EntityName); + if (component.SettingsPrototypeId != null) + SpawnRandomHumanoid(component.SettingsPrototypeId, Transform(uid).Coordinates, MetaData(uid).EntityName); } public EntityUid SpawnRandomHumanoid(string prototypeId, EntityCoordinates coordinates, string name) diff --git a/Content.Server/IdentityManagement/IdentitySystem.cs b/Content.Server/IdentityManagement/IdentitySystem.cs index cf5d2e181e4..6be3a964335 100644 --- a/Content.Server/IdentityManagement/IdentitySystem.cs +++ b/Content.Server/IdentityManagement/IdentitySystem.cs @@ -1,14 +1,17 @@ using Content.Server.Access.Systems; using Content.Server.Administration.Logs; +using Content.Server.Humanoid; using Content.Shared.Database; using Content.Shared.Hands; using Content.Shared.Humanoid; +using Content.Shared.Humanoid.Prototypes; using Content.Shared.IdentityManagement; using Content.Shared.IdentityManagement.Components; using Content.Shared.Inventory; using Content.Shared.Inventory.Events; using Robust.Shared.Enums; using Robust.Shared.GameObjects.Components.Localization; +using Robust.Shared.Prototypes; namespace Content.Server.IdentityManagement; @@ -19,6 +22,8 @@ public class IdentitySystem : SharedIdentitySystem { [Dependency] private readonly IdCardSystem _idCard = default!; [Dependency] private readonly IAdminLogManager _adminLog = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; + [Dependency] private readonly HumanoidAppearanceSystem _humanoid = default!; private HashSet _queuedIdentityUpdates = new(); @@ -98,7 +103,7 @@ private void UpdateIdentityInfo(EntityUid uid, IdentityComponent identity) if (name == Name(ident)) return; - MetaData(ident).EntityName = name; + _metaData.SetEntityName(ident, name); _adminLog.Add(LogType.Identity, LogImpact.Medium, $"{ToPrettyString(uid)} changed identity to {name}"); RaiseLocalEvent(new IdentityChangedEvent(uid, ident)); @@ -122,17 +127,20 @@ private IdentityRepresentation GetIdentityRepresentation(EntityUid target, { int age = 18; Gender gender = Gender.Epicene; + string species = SharedHumanoidAppearanceSystem.DefaultSpecies; // Always use their actual age and gender, since that can't really be changed by an ID. if (Resolve(target, ref appearance, false)) { gender = appearance.Gender; age = appearance.Age; + species = appearance.Species; } + var ageString = _humanoid.GetAgeRepresentation(species, age); var trueName = Name(target); if (!Resolve(target, ref inventory, false)) - return new(trueName, age, gender, string.Empty); + return new(trueName, gender, ageString, string.Empty); string? presumedJob = null; string? presumedName = null; @@ -145,7 +153,7 @@ private IdentityRepresentation GetIdentityRepresentation(EntityUid target, } // If it didn't find a job, that's fine. - return new(trueName, age, gender, presumedName, presumedJob); + return new(trueName, gender, ageString, presumedName, presumedJob); } #endregion diff --git a/Content.Server/IgnitionSource/IgnitionSourceComponent.cs b/Content.Server/IgnitionSource/IgnitionSourceComponent.cs index 2251013cbe0..d5a53c6ddb1 100644 --- a/Content.Server/IgnitionSource/IgnitionSourceComponent.cs +++ b/Content.Server/IgnitionSource/IgnitionSourceComponent.cs @@ -5,7 +5,7 @@ /// [RegisterComponent] [Access(typeof(IgnitionSourceSystem))] -public sealed class IgnitionSourceComponent : Component +public sealed partial class IgnitionSourceComponent : Component { [DataField("ignited")] public bool Ignited = false; diff --git a/Content.Server/ImmovableRod/ImmovableRodComponent.cs b/Content.Server/ImmovableRod/ImmovableRodComponent.cs index 5ef5b0e7c73..75b82d117a0 100644 --- a/Content.Server/ImmovableRod/ImmovableRodComponent.cs +++ b/Content.Server/ImmovableRod/ImmovableRodComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.ImmovableRod; [RegisterComponent] -public sealed class ImmovableRodComponent : Component +public sealed partial class ImmovableRodComponent : Component { public int MobCount = 0; diff --git a/Content.Server/Implants/AutoImplantSystem.cs b/Content.Server/Implants/AutoImplantSystem.cs new file mode 100644 index 00000000000..b854e3ca3db --- /dev/null +++ b/Content.Server/Implants/AutoImplantSystem.cs @@ -0,0 +1,21 @@ +using Content.Server.Implants.Components; + +namespace Content.Server.Implants; + +public sealed class AutoImplantSystem : EntitySystem +{ + [Dependency] private readonly SubdermalImplantSystem _subdermalImplant = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMapInit); + } + + private void OnMapInit(EntityUid uid, AutoImplantComponent comp, MapInitEvent args) + { + _subdermalImplant.AddImplants(uid, comp.Implants); + RemComp(uid); + } +} diff --git a/Content.Server/Implants/Components/AutoImplantComponent.cs b/Content.Server/Implants/Components/AutoImplantComponent.cs new file mode 100644 index 00000000000..e082354d8b4 --- /dev/null +++ b/Content.Server/Implants/Components/AutoImplantComponent.cs @@ -0,0 +1,17 @@ +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; + +namespace Content.Server.Implants.Components; + +/// +/// Implants an entity automatically on MapInit. +/// +[RegisterComponent] +public sealed partial class AutoImplantComponent : Component +{ + /// + /// List of implants to inject. + /// + [DataField("implants", required: true, customTypeSerializer: typeof(PrototypeIdListSerializer))] + public List Implants = new(); +} diff --git a/Content.Server/Implants/ImplanterSystem.cs b/Content.Server/Implants/ImplanterSystem.cs index 1ebf3a1d5ee..db5602a2bb9 100644 --- a/Content.Server/Implants/ImplanterSystem.cs +++ b/Content.Server/Implants/ImplanterSystem.cs @@ -69,7 +69,7 @@ private void OnImplanterAfterInteract(EntityUid uid, ImplanterComponent componen /// The implanter being used public void TryImplant(ImplanterComponent component, EntityUid user, EntityUid target, EntityUid implanter) { - var args = new DoAfterArgs(user, component.ImplantTime, new ImplantEvent(), implanter, target: target, used: implanter) + var args = new DoAfterArgs(EntityManager, user, component.ImplantTime, new ImplantEvent(), implanter, target: target, used: implanter) { BreakOnUserMove = true, BreakOnTargetMove = true, @@ -96,7 +96,7 @@ public void TryImplant(ImplanterComponent component, EntityUid user, EntityUid t //TODO: Remove when surgery is in public void TryDraw(ImplanterComponent component, EntityUid user, EntityUid target, EntityUid implanter) { - var args = new DoAfterArgs(user, component.DrawTime, new DrawEvent(), implanter, target: target, used: implanter) + var args = new DoAfterArgs(EntityManager, user, component.DrawTime, new DrawEvent(), implanter, target: target, used: implanter) { BreakOnUserMove = true, BreakOnTargetMove = true, diff --git a/Content.Server/Instruments/InstrumentComponent.cs b/Content.Server/Instruments/InstrumentComponent.cs index fb569250959..51de0ed35bb 100644 --- a/Content.Server/Instruments/InstrumentComponent.cs +++ b/Content.Server/Instruments/InstrumentComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Instruments; [RegisterComponent, ComponentReference(typeof(SharedInstrumentComponent))] -public sealed class InstrumentComponent : SharedInstrumentComponent +public sealed partial class InstrumentComponent : SharedInstrumentComponent { [Dependency] private readonly IEntityManager _entMan = default!; @@ -21,10 +21,10 @@ public sealed class InstrumentComponent : SharedInstrumentComponent _entMan.GetComponentOrNull(Owner)?.CurrentSingleUser ?? _entMan.GetComponentOrNull(Owner)?.PlayerSession; - [ViewVariables] public BoundUserInterface? UserInterface => Owner.GetUIOrNull(InstrumentUiKey.Key); + [ViewVariables] public PlayerBoundUserInterface? UserInterface => Owner.GetUIOrNull(InstrumentUiKey.Key); } [RegisterComponent] -public sealed class ActiveInstrumentComponent : Component +public sealed partial class ActiveInstrumentComponent : Component { } diff --git a/Content.Server/Instruments/InstrumentSystem.cs b/Content.Server/Instruments/InstrumentSystem.cs index 2f27e5ff55f..70947069508 100644 --- a/Content.Server/Instruments/InstrumentSystem.cs +++ b/Content.Server/Instruments/InstrumentSystem.cs @@ -30,7 +30,6 @@ public sealed partial class InstrumentSystem : SharedInstrumentSystem [Dependency] private readonly UserInterfaceSystem _bui = default!; [Dependency] private readonly PopupSystem _popup = default!; [Dependency] private readonly TransformSystem _transform = default!; - [Dependency] private readonly EntityLookupSystem _lookup = default!; [Dependency] private readonly InteractionSystem _interactions = default!; private const float MaxInstrumentBandRange = 10f; @@ -62,13 +61,13 @@ public override void Initialize() [AdminCommand(AdminFlags.Fun)] private void AddToBandCommand(IConsoleShell shell, string _, string[] args) { - if (!EntityUid.TryParse(args[0], out var firstUid)) + if (!NetEntity.TryParse(args[0], out var firstUidNet) || !TryGetEntity(firstUidNet, out var firstUid)) { shell.WriteError($"Cannot parse first Uid"); return; } - if (!EntityUid.TryParse(args[1], out var secondUid)) + if (!NetEntity.TryParse(args[1], out var secondUidNet) || !TryGetEntity(secondUidNet, out var secondUid)) { shell.WriteError($"Cannot parse second Uid"); return; @@ -80,15 +79,15 @@ private void AddToBandCommand(IConsoleShell shell, string _, string[] args) return; } - var otherInstrument = Comp(secondUid); + var otherInstrument = Comp(secondUid.Value); otherInstrument.Playing = true; otherInstrument.Master = firstUid; - Dirty(secondUid, otherInstrument); + Dirty(secondUid.Value, otherInstrument); } private void OnMidiStart(InstrumentStartMidiEvent msg, EntitySessionEventArgs args) { - var uid = msg.Uid; + var uid = GetEntity(msg.Uid); if (!TryComp(uid, out InstrumentComponent? instrument)) return; @@ -102,7 +101,7 @@ private void OnMidiStart(InstrumentStartMidiEvent msg, EntitySessionEventArgs ar private void OnMidiStop(InstrumentStopMidiEvent msg, EntitySessionEventArgs args) { - var uid = msg.Uid; + var uid = GetEntity(msg.Uid); if (!TryComp(uid, out InstrumentComponent? instrument)) return; @@ -115,8 +114,8 @@ private void OnMidiStop(InstrumentStopMidiEvent msg, EntitySessionEventArgs args private void OnMidiSetMaster(InstrumentSetMasterEvent msg, EntitySessionEventArgs args) { - var uid = msg.Uid; - var master = msg.Master; + var uid = GetEntity(msg.Uid); + var master = GetEntity(msg.Master); if (!HasComp(uid)) return; @@ -151,7 +150,7 @@ private void OnMidiSetMaster(InstrumentSetMasterEvent msg, EntitySessionEventArg private void OnMidiSetFilteredChannel(InstrumentSetFilteredChannelEvent msg, EntitySessionEventArgs args) { - var uid = msg.Uid; + var uid = GetEntity(msg.Uid); if (!TryComp(uid, out InstrumentComponent? instrument)) return; @@ -167,7 +166,7 @@ private void OnMidiSetFilteredChannel(InstrumentSetFilteredChannelEvent msg, Ent if (msg.Value) { // Prevent stuck notes when turning off a channel... Shrimple. - RaiseNetworkEvent(new InstrumentMidiEventEvent(uid, new []{RobustMidiEvent.AllNotesOff((byte)msg.Channel, 0)})); + RaiseNetworkEvent(new InstrumentMidiEventEvent(msg.Uid, new []{RobustMidiEvent.AllNotesOff((byte)msg.Channel, 0)})); } Dirty(uid, instrument); @@ -216,19 +215,19 @@ private void OnBoundUIRequestBands(EntityUid uid, InstrumentComponent component, _bandRequestQueue.Add(args); } - public (EntityUid, string)[] GetBands(EntityUid uid) + public (NetEntity, string)[] GetBands(EntityUid uid) { var metadataQuery = EntityManager.GetEntityQuery(); if (Deleted(uid, metadataQuery)) - return Array.Empty<(EntityUid, string)>(); + return Array.Empty<(NetEntity, string)>(); - var list = new ValueList<(EntityUid, string)>(); + var list = new ValueList<(NetEntity, string)>(); var instrumentQuery = EntityManager.GetEntityQuery(); if (!TryComp(uid, out InstrumentComponent? originInstrument) || originInstrument.InstrumentPlayer?.AttachedEntity is not {} originPlayer) - return Array.Empty<(EntityUid, string)>(); + return Array.Empty<(NetEntity, string)>(); // It's probably faster to get all possible active instruments than all entities in range var activeEnumerator = EntityManager.EntityQueryEnumerator(); @@ -255,7 +254,7 @@ private void OnBoundUIRequestBands(EntityUid uid, InstrumentComponent component, || !metadataQuery.TryGetComponent(entity, out var metadata)) continue; - list.Add((entity, $"{playerMetadata.EntityName} - {metadata.EntityName}")); + list.Add((GetNetEntity(entity), $"{playerMetadata.EntityName} - {metadata.EntityName}")); } return list.ToArray(); @@ -268,10 +267,12 @@ public void Clean(EntityUid uid, InstrumentComponent? instrument = null) if (instrument.Playing) { + var netUid = GetNetEntity(uid); + // Reset puppet instruments too. - RaiseNetworkEvent(new InstrumentMidiEventEvent(uid, new[]{RobustMidiEvent.SystemReset(0)})); + RaiseNetworkEvent(new InstrumentMidiEventEvent(netUid, new[]{RobustMidiEvent.SystemReset(0)})); - RaiseNetworkEvent(new InstrumentStopMidiEvent(uid)); + RaiseNetworkEvent(new InstrumentStopMidiEvent(netUid)); } instrument.Playing = false; @@ -285,7 +286,7 @@ public void Clean(EntityUid uid, InstrumentComponent? instrument = null) private void OnMidiEventRx(InstrumentMidiEventEvent msg, EntitySessionEventArgs args) { - var uid = msg.Uid; + var uid = GetEntity(msg.Uid); if (!TryComp(uid, out InstrumentComponent? instrument)) return; @@ -293,8 +294,10 @@ private void OnMidiEventRx(InstrumentMidiEventEvent msg, EntitySessionEventArgs if (!instrument.Playing || args.SenderSession != instrument.InstrumentPlayer || instrument.InstrumentPlayer == null - || args.SenderSession.AttachedEntity is not {} attached) + || args.SenderSession.AttachedEntity is not { } attached) + { return; + } var send = true; @@ -362,8 +365,10 @@ public override void Update(float frameTime) foreach (var request in _bandRequestQueue) { - var nearby = GetBands(request.Entity); - _bui.TrySendUiMessage(request.Entity, request.UiKey, new InstrumentBandResponseBuiMessage(nearby), + var entity = GetEntity(request.Entity); + + var nearby = GetBands(entity); + _bui.TrySendUiMessage(entity, request.UiKey, new InstrumentBandResponseBuiMessage(nearby), (IPlayerSession)request.Session); } diff --git a/Content.Server/Instruments/SwappableInstrumentComponent.cs b/Content.Server/Instruments/SwappableInstrumentComponent.cs index bfe8b5c3a60..f8b2b97a102 100644 --- a/Content.Server/Instruments/SwappableInstrumentComponent.cs +++ b/Content.Server/Instruments/SwappableInstrumentComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Instruments; [RegisterComponent] -public sealed class SwappableInstrumentComponent : Component +public sealed partial class SwappableInstrumentComponent : Component { /// /// Used to store the different instruments that can be swapped between. diff --git a/Content.Server/Interaction/Components/InteractionPopupComponent.cs b/Content.Server/Interaction/Components/InteractionPopupComponent.cs index 0ebc9fe4f7a..eef29506b27 100644 --- a/Content.Server/Interaction/Components/InteractionPopupComponent.cs +++ b/Content.Server/Interaction/Components/InteractionPopupComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Interaction.Components; [RegisterComponent, Access(typeof(InteractionPopupSystem))] -public sealed class InteractionPopupComponent : Component +public sealed partial class InteractionPopupComponent : Component { /// /// Time delay between interactions to avoid spam. diff --git a/Content.Server/Interaction/InteractionSystem.cs b/Content.Server/Interaction/InteractionSystem.cs index 2433332afc7..c39c086960d 100644 --- a/Content.Server/Interaction/InteractionSystem.cs +++ b/Content.Server/Interaction/InteractionSystem.cs @@ -2,7 +2,6 @@ using Content.Server.Administration.Logs; using Content.Server.Pulling; -using Content.Server.Storage.Components; using Content.Shared.ActionBlocker; using Content.Shared.DragDrop; using Content.Shared.Input; @@ -25,8 +24,6 @@ namespace Content.Server.Interaction [UsedImplicitly] public sealed partial class InteractionSystem : SharedInteractionSystem { - [Dependency] private readonly IAdminLogManager _adminLogger = default!; - [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly ActionBlockerSystem _actionBlockerSystem = default!; [Dependency] private readonly SharedContainerSystem _container = default!; [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; @@ -36,6 +33,8 @@ public override void Initialize() base.Initialize(); SubscribeNetworkEvent(HandleDragDropRequestEvent); + + SubscribeLocalEvent(HandleUserInterfaceRangeCheck); } public override bool CanAccessViaStorage(EntityUid user, EntityUid target) @@ -46,52 +45,71 @@ public override bool CanAccessViaStorage(EntityUid user, EntityUid target) if (!_container.TryGetContainingContainer(target, out var container)) return false; - if (!TryComp(container.Owner, out ServerStorageComponent? storage)) + if (!TryComp(container.Owner, out StorageComponent? storage)) return false; - if (storage.Storage?.ID != container.ID) + if (storage.Container?.ID != container.ID) return false; if (!TryComp(user, out ActorComponent? actor)) return false; // we don't check if the user can access the storage entity itself. This should be handed by the UI system. - return _uiSystem.SessionHasOpenUi(container.Owner, SharedStorageComponent.StorageUiKey.Key, actor.PlayerSession); + return _uiSystem.SessionHasOpenUi(container.Owner, StorageComponent.StorageUiKey.Key, actor.PlayerSession); } #region Drag drop private void HandleDragDropRequestEvent(DragDropRequestEvent msg, EntitySessionEventArgs args) { - if (Deleted(msg.Dragged) || Deleted(msg.Target)) + var dragged = GetEntity(msg.Dragged); + var target = GetEntity(msg.Target); + + if (Deleted(dragged) || Deleted(target)) return; var user = args.SenderSession.AttachedEntity; - if (user == null || !_actionBlockerSystem.CanInteract(user.Value, msg.Target)) + if (user == null || !_actionBlockerSystem.CanInteract(user.Value, target)) return; // must be in range of both the target and the object they are drag / dropping // Client also does this check but ya know we gotta validate it. - if (!InRangeUnobstructed(user.Value, msg.Dragged, popup: true) - || !InRangeUnobstructed(user.Value, msg.Target, popup: true)) + if (!InRangeUnobstructed(user.Value, dragged, popup: true) + || !InRangeUnobstructed(user.Value, target, popup: true)) { return; } - var dragArgs = new DragDropDraggedEvent(user.Value, msg.Target); + var dragArgs = new DragDropDraggedEvent(user.Value, target); // trigger dragdrops on the dropped entity - RaiseLocalEvent(msg.Dragged, ref dragArgs); + RaiseLocalEvent(dragged, ref dragArgs); if (dragArgs.Handled) return; - var dropArgs = new DragDropTargetEvent(user.Value, msg.Dragged); + var dropArgs = new DragDropTargetEvent(user.Value, dragged); - RaiseLocalEvent(msg.Target, ref dropArgs); + // trigger dragdrops on the target entity (what you are dropping onto) + RaiseLocalEvent(GetEntity(msg.Target), ref dropArgs); } #endregion + + private void HandleUserInterfaceRangeCheck(ref BoundUserInterfaceCheckRangeEvent ev) + { + if (ev.Player.AttachedEntity is not { } user) + return; + + if (InRangeUnobstructed(user, ev.Target, ev.UserInterface.InteractionRange)) + { + ev.Result = BoundUserInterfaceRangeResult.Pass; + } + else + { + ev.Result = BoundUserInterfaceRangeResult.Fail; + } + } } } diff --git a/Content.Server/Inventory/ServerInventorySystem.cs b/Content.Server/Inventory/ServerInventorySystem.cs index a1cb007d91f..f80a604ad5d 100644 --- a/Content.Server/Inventory/ServerInventorySystem.cs +++ b/Content.Server/Inventory/ServerInventorySystem.cs @@ -1,9 +1,9 @@ -using Content.Server.Storage.Components; using Content.Server.Storage.EntitySystems; using Content.Shared.Clothing.Components; using Content.Shared.Interaction.Events; using Content.Shared.Inventory; using Content.Shared.Inventory.Events; +using Content.Shared.Storage; namespace Content.Server.Inventory { @@ -33,7 +33,7 @@ private void OnOpenSlotStorage(OpenSlotStorageNetworkMessage ev, EntitySessionEv if (args.SenderSession.AttachedEntity is not { Valid: true } uid) return; - if (TryGetSlotEntity(uid, ev.Slot, out var entityUid) && TryComp(entityUid, out var storageComponent)) + if (TryGetSlotEntity(uid, ev.Slot, out var entityUid) && TryComp(entityUid, out var storageComponent)) { _storageSystem.OpenStorageUI(entityUid.Value, uid, storageComponent); } diff --git a/Content.Server/IoC/ServerContentIoC.cs b/Content.Server/IoC/ServerContentIoC.cs index 70796a72393..a69afc86579 100644 --- a/Content.Server/IoC/ServerContentIoC.cs +++ b/Content.Server/IoC/ServerContentIoC.cs @@ -6,15 +6,13 @@ using Content.Server.Chat.Managers; using Content.Server.Connection; using Content.Server.Database; +using Content.Server.Discord; using Content.Server.EUI; using Content.Server.GhostKick; using Content.Server.Info; using Content.Server.Maps; using Content.Server.MoMMI; -using Content.Server.NewCon; using Content.Server.NodeContainer.NodeGroups; -using Content.Server.Objectives; -using Content.Server.Objectives.Interfaces; using Content.Server.Players.PlayTimeTracking; using Content.Server.Preferences.Managers; using Content.Server.ServerInfo; @@ -24,7 +22,6 @@ using Content.Shared.Administration.Logs; using Content.Shared.Administration.Managers; using Content.Shared.Kitchen; -using Robust.Shared.Toolshed; namespace Content.Server.IoC { @@ -41,7 +38,6 @@ public static void Register() IoCManager.Register(); IoCManager.Register(); IoCManager.Register(); - IoCManager.Register(); IoCManager.Register(); IoCManager.Register(); IoCManager.Register(); @@ -60,6 +56,7 @@ public static void Register() IoCManager.Register(); IoCManager.Register(); IoCManager.Register(); + IoCManager.Register(); } } } diff --git a/Content.Server/Item/ItemSystem.cs b/Content.Server/Item/ItemSystem.cs index 33c95d37801..55fb5aae091 100644 --- a/Content.Server/Item/ItemSystem.cs +++ b/Content.Server/Item/ItemSystem.cs @@ -1,7 +1,7 @@ -using Content.Server.Storage.Components; -using Content.Server.Storage.EntitySystems; +using Content.Server.Storage.EntitySystems; using Content.Shared.Item; using Content.Shared.Stacks; +using Content.Shared.Storage; namespace Content.Server.Item; @@ -14,9 +14,12 @@ protected override void OnStackCountChanged(EntityUid uid, ItemComponent compone base.OnStackCountChanged(uid, component, args); if (!Container.TryGetContainingContainer(uid, out var container) || - !TryComp(container.Owner, out var storage)) + !TryComp(container.Owner, out var storage)) + { return; + } + _storage.RecalculateStorageUsed(storage); - _storage.UpdateStorageUI(container.Owner, storage); + _storage.UpdateUI(container.Owner, storage); } } diff --git a/Content.Server/Jobs/AddComponentSpecial.cs b/Content.Server/Jobs/AddComponentSpecial.cs index ce2907efc51..1b183c5c3f8 100644 --- a/Content.Server/Jobs/AddComponentSpecial.cs +++ b/Content.Server/Jobs/AddComponentSpecial.cs @@ -6,12 +6,11 @@ namespace Content.Server.Jobs { [UsedImplicitly] - public sealed class AddComponentSpecial : JobSpecial + public sealed partial class AddComponentSpecial : JobSpecial { - [DataField("components")] [AlwaysPushInheritance] - public ComponentRegistry Components { get; } = new(); + public ComponentRegistry Components { get; private set; } = new(); public override void AfterEquip(EntityUid mob) { diff --git a/Content.Server/Jobs/AddImplantSpecial.cs b/Content.Server/Jobs/AddImplantSpecial.cs index c1ec09edaed..83193e7056c 100644 --- a/Content.Server/Jobs/AddImplantSpecial.cs +++ b/Content.Server/Jobs/AddImplantSpecial.cs @@ -1,5 +1,4 @@ using Content.Shared.Implants; -using Content.Shared.Implants.Components; using Content.Shared.Roles; using JetBrains.Annotations; using Robust.Shared.Prototypes; @@ -11,29 +10,15 @@ namespace Content.Server.Jobs; /// Adds implants on spawn to the entity /// [UsedImplicitly] -public sealed class AddImplantSpecial : JobSpecial +public sealed partial class AddImplantSpecial : JobSpecial { - [DataField("implants", customTypeSerializer: typeof(PrototypeIdHashSetSerializer))] - public HashSet Implants { get; } = new(); + public HashSet Implants { get; private set; } = new(); public override void AfterEquip(EntityUid mob) { var entMan = IoCManager.Resolve(); var implantSystem = entMan.System(); - var xformQuery = entMan.GetEntityQuery(); - - if (!xformQuery.TryGetComponent(mob, out var xform)) - return; - - foreach (var implantId in Implants) - { - var implant = entMan.SpawnEntity(implantId, xform.Coordinates); - - if (!entMan.TryGetComponent(implant, out var implantComp)) - return; - - implantSystem.ForceImplant(mob, implant, implantComp); - } + implantSystem.AddImplants(mob, Implants); } } diff --git a/Content.Server/Jobs/GiveItemOnHolidaySpecial.cs b/Content.Server/Jobs/GiveItemOnHolidaySpecial.cs index 0b5a65bca92..eb767a32a52 100644 --- a/Content.Server/Jobs/GiveItemOnHolidaySpecial.cs +++ b/Content.Server/Jobs/GiveItemOnHolidaySpecial.cs @@ -9,13 +9,13 @@ namespace Content.Server.Jobs { [UsedImplicitly] [DataDefinition] - public sealed class GiveItemOnHolidaySpecial : JobSpecial + public sealed partial class GiveItemOnHolidaySpecial : JobSpecial { [DataField("holiday", customTypeSerializer:typeof(PrototypeIdSerializer))] - public string Holiday { get; } = string.Empty; + public string Holiday { get; private set; } = string.Empty; [DataField("prototype", customTypeSerializer:typeof(PrototypeIdSerializer))] - public string Prototype { get; } = string.Empty; + public string Prototype { get; private set; } = string.Empty; public override void AfterEquip(EntityUid mob) { diff --git a/Content.Server/KillTracking/KillTrackerComponent.cs b/Content.Server/KillTracking/KillTrackerComponent.cs new file mode 100644 index 00000000000..aad6671df94 --- /dev/null +++ b/Content.Server/KillTracking/KillTrackerComponent.cs @@ -0,0 +1,62 @@ +using Content.Shared.FixedPoint; +using Content.Shared.Mobs; +using Robust.Shared.Network; + +namespace Content.Server.KillTracking; + +/// +/// This is used for entities that track player damage sources and killers. +/// +[RegisterComponent, Access(typeof(KillTrackingSystem))] +public sealed partial class KillTrackerComponent : Component +{ + /// + /// The mobstate that registers as a "kill" + /// + [DataField("killState")] + public MobState KillState = MobState.Critical; + + /// + /// A dictionary of sources and how much damage they've done to this entity over time. + /// + [DataField("lifetimeDamage")] + public Dictionary LifetimeDamage = new(); +} + +public abstract record KillSource; + +/// +/// A kill source for players +/// +[DataDefinition, Serializable] +public sealed partial record KillPlayerSource : KillSource +{ + [DataField("playerId")] + public NetUserId PlayerId; + + public KillPlayerSource(NetUserId playerId) + { + PlayerId = playerId; + } +} + +/// +/// A kill source for non-player controlled entities +/// +[DataDefinition, Serializable] +public sealed partial record KillNpcSource : KillSource +{ + [DataField("npcEnt")] + public EntityUid NpcEnt; + + public KillNpcSource(EntityUid npcEnt) + { + NpcEnt = npcEnt; + } +} + +/// +/// A kill source for kills with no damage origin +/// +[DataDefinition, Serializable] +public sealed partial record KillEnvironmentSource : KillSource; diff --git a/Content.Server/KillTracking/KillTrackingSystem.cs b/Content.Server/KillTracking/KillTrackingSystem.cs new file mode 100644 index 00000000000..177f28ddc89 --- /dev/null +++ b/Content.Server/KillTracking/KillTrackingSystem.cs @@ -0,0 +1,129 @@ +using Content.Server.NPC.HTN; +using Content.Shared.Damage; +using Content.Shared.FixedPoint; +using Content.Shared.Mobs; +using Robust.Server.GameObjects; + +namespace Content.Server.KillTracking; + +/// +/// This handles and recording who is damaging and killing entities. +/// +public sealed class KillTrackingSystem : EntitySystem +{ + /// + public override void Initialize() + { + SubscribeLocalEvent(OnDamageChanged); + SubscribeLocalEvent(OnMobStateChanged); + } + + private void OnDamageChanged(EntityUid uid, KillTrackerComponent component, DamageChangedEvent args) + { + if (args.DamageDelta == null) + return; + + if (!args.DamageIncreased) + { + foreach (var key in component.LifetimeDamage.Keys) + { + component.LifetimeDamage[key] -= args.DamageDelta.Total; + } + + return; + } + + var source = GetKillSource(args.Origin); + var damage = component.LifetimeDamage.GetValueOrDefault(source); + component.LifetimeDamage[source] = damage + args.DamageDelta.Total; + } + + private void OnMobStateChanged(EntityUid uid, KillTrackerComponent component, MobStateChangedEvent args) + { + if (args.NewMobState != component.KillState || args.OldMobState >= args.NewMobState) + return; + + // impulse is the entity that did the finishing blow. + var killImpulse = GetKillSource(args.Origin); + + // source is the kill tracker source with the most damage dealt. + var largestSource = GetLargestSource(component.LifetimeDamage); + largestSource ??= killImpulse; + + KillSource? killSource; + KillSource? assistSource = null; + + if (killImpulse is KillEnvironmentSource) + { + // if the kill was environmental, whatever did the most damage gets the kill. + killSource = largestSource; + } + else if (killImpulse == largestSource) + { + // if the impulse and the source are the same, there's no assist + killSource = killImpulse; + } + else + { + // the impulse gets the kill and the most damage gets the assist + killSource = killImpulse; + + // no assist is given to environmental kills + if (largestSource is not KillEnvironmentSource) + { + // you have to do at least 50% of largest source's damage to get the assist. + if (component.LifetimeDamage[largestSource] >= component.LifetimeDamage[killSource] / 2) + { + assistSource = largestSource; + } + } + } + + // it's a suicide if: + // - you caused your own death + // - the kill source was the entity that died + // - the entity that died had an assist on themselves + var suicide = args.Origin == uid || + killSource is KillNpcSource npc && npc.NpcEnt == uid || + killSource is KillPlayerSource player && player.PlayerId == CompOrNull(uid)?.PlayerSession.UserId || + assistSource is KillNpcSource assistNpc && assistNpc.NpcEnt == uid || + assistSource is KillPlayerSource assistPlayer && assistPlayer.PlayerId == CompOrNull(uid)?.PlayerSession.UserId; + + var ev = new KillReportedEvent(uid, killSource, assistSource, suicide); + RaiseLocalEvent(uid, ref ev, true); + } + + private KillSource GetKillSource(EntityUid? sourceEntity) + { + if (TryComp(sourceEntity, out var actor)) + return new KillPlayerSource(actor.PlayerSession.UserId); + if (HasComp(sourceEntity)) + return new KillNpcSource(sourceEntity.Value); + return new KillEnvironmentSource(); + } + + private KillSource? GetLargestSource(Dictionary lifetimeDamages) + { + KillSource? maxSource = null; + var maxDamage = FixedPoint2.Zero; + foreach (var (source, damage) in lifetimeDamages) + { + if (damage < maxDamage) + continue; + maxSource = source; + maxDamage = damage; + } + + return maxSource; + } +} + +/// +/// Event broadcasted and raised by-ref on an entity with when they are killed. +/// +/// The entity that was killed +/// The primary source of the kill +/// A secondary source of the kill. Can be null. +/// True if the entity that was killed caused their own death. +[ByRefEvent] +public readonly record struct KillReportedEvent(EntityUid Entity, KillSource Primary, KillSource? Assist, bool Suicide); diff --git a/Content.Server/Kitchen/Components/ActiveMicrowaveComponent.cs b/Content.Server/Kitchen/Components/ActiveMicrowaveComponent.cs index e8cfe86ab3d..da8a35a695c 100644 --- a/Content.Server/Kitchen/Components/ActiveMicrowaveComponent.cs +++ b/Content.Server/Kitchen/Components/ActiveMicrowaveComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Kitchen.Components; /// Attached to a microwave that is currently in the process of cooking /// [RegisterComponent] -public sealed class ActiveMicrowaveComponent : Component +public sealed partial class ActiveMicrowaveComponent : Component { [ViewVariables(VVAccess.ReadWrite)] public float CookTimeRemaining; diff --git a/Content.Server/Kitchen/Components/ExtractableComponent.cs b/Content.Server/Kitchen/Components/ExtractableComponent.cs index 6c68059428a..a1949b87b39 100644 --- a/Content.Server/Kitchen/Components/ExtractableComponent.cs +++ b/Content.Server/Kitchen/Components/ExtractableComponent.cs @@ -8,7 +8,7 @@ namespace Content.Server.Kitchen.Components /// [RegisterComponent] [Access(typeof(ReagentGrinderSystem))] - public sealed class ExtractableComponent : Component + public sealed partial class ExtractableComponent : Component { [DataField("juiceSolution")] public Solution? JuiceSolution; diff --git a/Content.Server/Kitchen/Components/MicrowaveComponent.cs b/Content.Server/Kitchen/Components/MicrowaveComponent.cs index 11b2568050d..538a069d16c 100644 --- a/Content.Server/Kitchen/Components/MicrowaveComponent.cs +++ b/Content.Server/Kitchen/Components/MicrowaveComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Kitchen.Components { [RegisterComponent] - public sealed class MicrowaveComponent : Component + public sealed partial class MicrowaveComponent : Component { [DataField("cookTimeMultiplier"), ViewVariables(VVAccess.ReadWrite)] public float CookTimeMultiplier = 1; diff --git a/Content.Server/Kitchen/Components/ReagentGrinderComponent.cs b/Content.Server/Kitchen/Components/ReagentGrinderComponent.cs index 3793cecd4f8..4b53049086d 100644 --- a/Content.Server/Kitchen/Components/ReagentGrinderComponent.cs +++ b/Content.Server/Kitchen/Components/ReagentGrinderComponent.cs @@ -13,7 +13,7 @@ namespace Content.Server.Kitchen.Components /// it contained, juice an apple and get "apple juice". /// [Access(typeof(ReagentGrinderSystem)), RegisterComponent] - public sealed class ReagentGrinderComponent : Component + public sealed partial class ReagentGrinderComponent : Component { [ViewVariables(VVAccess.ReadWrite)] public int StorageMaxEntities = 6; @@ -52,7 +52,7 @@ public sealed class ReagentGrinderComponent : Component } [Access(typeof(ReagentGrinderSystem)), RegisterComponent] - public sealed class ActiveReagentGrinderComponent : Component + public sealed partial class ActiveReagentGrinderComponent : Component { /// /// Remaining time until the grinder finishes grinding/juicing. diff --git a/Content.Server/Kitchen/Components/SharpComponent.cs b/Content.Server/Kitchen/Components/SharpComponent.cs index abe9d3074d9..c67c3b8a4d4 100644 --- a/Content.Server/Kitchen/Components/SharpComponent.cs +++ b/Content.Server/Kitchen/Components/SharpComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.Kitchen.Components; /// are otherwise sharp for some purpose. /// [RegisterComponent] -public sealed class SharpComponent : Component +public sealed partial class SharpComponent : Component { // TODO just make this a tool type. public HashSet Butchering = new(); diff --git a/Content.Server/Kitchen/EntitySystems/KitchenSpikeSystem.cs b/Content.Server/Kitchen/EntitySystems/KitchenSpikeSystem.cs index 1b5ca4ade82..04a224a3a74 100644 --- a/Content.Server/Kitchen/EntitySystems/KitchenSpikeSystem.cs +++ b/Content.Server/Kitchen/EntitySystems/KitchenSpikeSystem.cs @@ -33,6 +33,7 @@ public sealed class KitchenSpikeSystem : SharedKitchenSpikeSystem [Dependency] private readonly BodySystem _bodySystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; public override void Initialize() { @@ -170,8 +171,8 @@ private bool TryGetPiece(EntityUid uid, EntityUid user, EntityUid used, var item = _random.PickAndTake(component.PrototypesToSpawn); var ent = Spawn(item, Transform(uid).Coordinates); - MetaData(ent).EntityName = - Loc.GetString("comp-kitchen-spike-meat-name", ("name", Name(ent)), ("victim", component.Victim)); + _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); @@ -251,7 +252,7 @@ public bool TrySpike(EntityUid uid, EntityUid userUid, EntityUid victimUid, Kitc butcherable.BeingButchered = true; component.InUse = true; - var doAfterArgs = new DoAfterArgs(userUid, component.SpikeDelay + butcherable.ButcherDelay, new SpikeDoAfterEvent(), uid, target: victimUid, used: uid) + var doAfterArgs = new DoAfterArgs(EntityManager, userUid, component.SpikeDelay + butcherable.ButcherDelay, new SpikeDoAfterEvent(), uid, target: victimUid, used: uid) { BreakOnTargetMove = true, BreakOnUserMove = true, diff --git a/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs b/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs index fe8064381b4..878a14ef730 100644 --- a/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs +++ b/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs @@ -113,6 +113,8 @@ private void AddTemperature(MicrowaveComponent component, float time) private void SubtractContents(MicrowaveComponent component, FoodRecipePrototype recipe) { + // TODO Turn recipe.IngredientsReagents into a ReagentQuantity[] + var totalReagentsToRemove = new Dictionary(recipe.IngredientsReagents); // this is spaghetti ngl @@ -130,10 +132,7 @@ private void SubtractContents(MicrowaveComponent component, FoodRecipePrototype if (!totalReagentsToRemove.ContainsKey(reagent)) continue; - if (!solution.ContainsReagent(reagent)) - continue; - - var quant = solution.GetReagentQuantity(reagent); + var quant = solution.GetTotalPrototypeQuantity(reagent); if (quant >= totalReagentsToRemove[reagent]) { @@ -145,7 +144,7 @@ private void SubtractContents(MicrowaveComponent component, FoodRecipePrototype totalReagentsToRemove[reagent] -= quant; } - _solutionContainer.TryRemoveReagent(item, solution, reagent, quant); + _solutionContainer.RemoveReagent(item, solution, reagent, quant); } } } @@ -289,18 +288,20 @@ public void UpdateUserInterfaceState(EntityUid uid, MicrowaveComponent component if (ui == null) return; - UserInterfaceSystem.SetUiState(ui, new MicrowaveUpdateUserInterfaceState( - component.Storage.ContainedEntities.ToArray(), + _userInterface.SetUiState(ui, new MicrowaveUpdateUserInterfaceState( + GetNetEntityArray(component.Storage.ContainedEntities.ToArray()), HasComp(uid), component.CurrentCookTimeButtonIndex, component.CurrentCookTimerTime )); } - public void SetAppearance(EntityUid uid, MicrowaveVisualState state, MicrowaveComponent component) + public void SetAppearance(EntityUid uid, MicrowaveVisualState state, MicrowaveComponent? component = null, AppearanceComponent? appearanceComponent = null) { + if (!Resolve(uid, ref component, ref appearanceComponent, false)) + return; var display = component.Broken ? MicrowaveVisualState.Broken : state; - _appearance.SetData(uid, PowerDeviceVisuals.VisualState, display); + _appearance.SetData(uid, PowerDeviceVisuals.VisualState, display, appearanceComponent); } public static bool HasContents(MicrowaveComponent component) @@ -322,6 +323,8 @@ public void Wzhzhzh(EntityUid uid, MicrowaveComponent component, EntityUid? user var solidsDict = new Dictionary(); var reagentDict = new Dictionary(); + // TODO use lists of Reagent quantities instead of reagent prototype ids. + foreach (var item in component.Storage.ContainedEntities) { // special behavior when being microwaved ;) @@ -368,12 +371,12 @@ public void Wzhzhzh(EntityUid uid, MicrowaveComponent component, EntityUid? user foreach (var (_, solution) in solMan.Solutions) { - foreach (var reagent in solution.Contents) + foreach (var (reagent, quantity) in solution.Contents) { - if (reagentDict.ContainsKey(reagent.ReagentId)) - reagentDict[reagent.ReagentId] += reagent.Quantity; + if (reagentDict.ContainsKey(reagent.Prototype)) + reagentDict[reagent.Prototype] += quantity; else - reagentDict.Add(reagent.ReagentId, reagent.Quantity); + reagentDict.Add(reagent.Prototype, quantity); } } } @@ -415,6 +418,7 @@ public static (FoodRecipePrototype, int) CanSatisfyRecipe(MicrowaveComponent com foreach (var reagent in recipe.IngredientsReagents) { + // TODO Turn recipe.IngredientsReagents into a ReagentQuantity[] if (!reagents.ContainsKey(reagent.Key)) return (recipe, 0); @@ -478,7 +482,7 @@ private void OnEjectIndex(EntityUid uid, MicrowaveComponent component, Microwave if (!HasContents(component) || HasComp(uid)) return; - component.Storage.Remove(args.EntityID); + component.Storage.Remove(EntityManager.GetEntity(args.EntityID)); UpdateUserInterfaceState(uid, component); } diff --git a/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs b/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs index 4198e6d7032..68d9577dd65 100644 --- a/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs +++ b/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs @@ -206,7 +206,7 @@ private void UpdateUiState(EntityUid uid) this.IsPowered(uid, EntityManager), canJuice, canGrind, - inputContainer.ContainedEntities.Select(item => item).ToArray(), + GetNetEntityArray(inputContainer.ContainedEntities.ToArray()), containerSolution?.Contents.ToArray() ); _userInterfaceSystem.TrySetUiState(uid, ReagentGrinderUiKey.Key, state); @@ -242,10 +242,11 @@ private void OnEjectChamberContentMessage(EntityUid uid, ReagentGrinderComponent return; var inputContainer = _containerSystem.EnsureContainer(uid, SharedReagentGrinder.InputContainerId); + var ent = GetEntity(message.EntityId); - if (inputContainer.Remove(message.EntityId)) + if (inputContainer.Remove(ent)) { - message.EntityId.RandomOffset(0.4f); + ent.RandomOffset(0.4f); ClickSound(uid, reagentGrinder); UpdateUiState(uid); } diff --git a/Content.Server/Kitchen/EntitySystems/SharpSystem.cs b/Content.Server/Kitchen/EntitySystems/SharpSystem.cs index 4ebc6fe74d1..f270fe76d2c 100644 --- a/Content.Server/Kitchen/EntitySystems/SharpSystem.cs +++ b/Content.Server/Kitchen/EntitySystems/SharpSystem.cs @@ -66,7 +66,7 @@ private void TryStartButcherDoafter(EntityUid knife, EntityUid target, EntityUid return; var doAfter = - new DoAfterArgs(user, sharp.ButcherDelayModifier * butcher.ButcherDelay, new SharpDoAfterEvent(), knife, target: target, used: knife) + new DoAfterArgs(EntityManager, user, sharp.ButcherDelayModifier * butcher.ButcherDelay, new SharpDoAfterEvent(), knife, target: target, used: knife) { BreakOnTargetMove = true, BreakOnUserMove = true, diff --git a/Content.Server/Labels/Label/Components/HandLabelerComponent.cs b/Content.Server/Labels/Label/Components/HandLabelerComponent.cs index b0e9496a1d1..6c96cada9e7 100644 --- a/Content.Server/Labels/Label/Components/HandLabelerComponent.cs +++ b/Content.Server/Labels/Label/Components/HandLabelerComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Labels.Components { [RegisterComponent] - public sealed class HandLabelerComponent : Component + public sealed partial class HandLabelerComponent : Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("assignedLabel")] diff --git a/Content.Server/Labels/Label/Components/LabelComponent.cs b/Content.Server/Labels/Label/Components/LabelComponent.cs index 272baaa1450..d697d6260a6 100644 --- a/Content.Server/Labels/Label/Components/LabelComponent.cs +++ b/Content.Server/Labels/Label/Components/LabelComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Labels.Components /// Makes entities have a label in their name. Labels are normally given by /// [RegisterComponent] - public sealed class LabelComponent : Component + public sealed partial class LabelComponent : Component { /// /// The actual text in the label diff --git a/Content.Server/Labels/Label/Components/PaperLabelComponent.cs b/Content.Server/Labels/Label/Components/PaperLabelComponent.cs index d3685a0bcf2..5dead98084d 100644 --- a/Content.Server/Labels/Label/Components/PaperLabelComponent.cs +++ b/Content.Server/Labels/Label/Components/PaperLabelComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Labels.Components /// This component allows you to attach and remove a piece of paper to an entity. /// [RegisterComponent] - public sealed class PaperLabelComponent : Component + public sealed partial class PaperLabelComponent : Component { [DataField("labelSlot")] public ItemSlot LabelSlot = new(); diff --git a/Content.Server/Labels/Label/LabelSystem.cs b/Content.Server/Labels/Label/LabelSystem.cs index cf8f3623276..23f2851665f 100644 --- a/Content.Server/Labels/Label/LabelSystem.cs +++ b/Content.Server/Labels/Label/LabelSystem.cs @@ -18,6 +18,7 @@ public sealed class LabelSystem : EntitySystem { [Dependency] private readonly ItemSlotsSystem _itemSlotsSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; public const string ContainerName = "paper_label"; @@ -53,7 +54,7 @@ public void Label(EntityUid uid, string? text, MetaDataComponent? metadata = nul return; // Remove label - metadata.EntityName = label.OriginalName; + _metaData.SetEntityName(uid, label.OriginalName, metadata); label.CurrentLabel = null; label.OriginalName = null; @@ -63,7 +64,7 @@ public void Label(EntityUid uid, string? text, MetaDataComponent? metadata = nul // Update label label.OriginalName ??= metadata.EntityName; label.CurrentLabel = text; - metadata.EntityName = $"{label.OriginalName} ({text})"; + _metaData.SetEntityName(uid, $"{label.OriginalName} ({text})", metadata); } private void OnComponentInit(EntityUid uid, PaperLabelComponent component, ComponentInit args) diff --git a/Content.Server/LandMines/LandMineComponent.cs b/Content.Server/LandMines/LandMineComponent.cs index b2cc7754742..63e1e4b99f0 100644 --- a/Content.Server/LandMines/LandMineComponent.cs +++ b/Content.Server/LandMines/LandMineComponent.cs @@ -1,6 +1,6 @@ namespace Content.Server.LandMines; [RegisterComponent] -public sealed class LandMineComponent : Component +public sealed partial class LandMineComponent : Component { } diff --git a/Content.Server/Lathe/Components/LatheProducingComponent.cs b/Content.Server/Lathe/Components/LatheProducingComponent.cs index e991dc42485..e60e8eeb524 100644 --- a/Content.Server/Lathe/Components/LatheProducingComponent.cs +++ b/Content.Server/Lathe/Components/LatheProducingComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Lathe.Components; /// For EntityQuery to keep track of which lathes are producing /// [RegisterComponent] -public sealed class LatheProducingComponent : Component +public sealed partial class LatheProducingComponent : Component { /// /// The time at which production began diff --git a/Content.Server/Lathe/LatheSystem.cs b/Content.Server/Lathe/LatheSystem.cs index 02f932f8c21..41898ce01f3 100644 --- a/Content.Server/Lathe/LatheSystem.cs +++ b/Content.Server/Lathe/LatheSystem.cs @@ -64,7 +64,7 @@ private void OnLatheEjectMessage(EntityUid uid, LatheComponent lathe, LatheEject if (!_prototypeManager.TryIndex(message.Material, out var material)) return; - int volume = 0; + var volume = 0; if (material.StackEntity != null) { @@ -73,14 +73,20 @@ private void OnLatheEjectMessage(EntityUid uid, LatheComponent lathe, LatheEject return; var volumePerSheet = composition.MaterialComposition.FirstOrDefault(kvp => kvp.Key == message.Material).Value; - int sheetsToExtract = Math.Min(message.SheetsToExtract, _stack.GetMaxCount(material.StackEntity)); + var sheetsToExtract = Math.Min(message.SheetsToExtract, _stack.GetMaxCount(material.StackEntity)); volume = sheetsToExtract * volumePerSheet; } if (volume > 0 && _materialStorage.TryChangeMaterialAmount(uid, message.Material, -volume)) { - _materialStorage.SpawnMultipleFromMaterial(volume, material, Transform(uid).Coordinates, out var overflow); + var mats = _materialStorage.SpawnMultipleFromMaterial(volume, material, Transform(uid).Coordinates, out _); + foreach (var mat in mats) + { + if (TerminatingOrDeleted(mat)) + continue; + _stack.TryMergeToContacts(mat); + } } } @@ -218,7 +224,7 @@ public void UpdateUserInterfaceState(EntityUid uid, LatheComponent? component = var producing = component.CurrentRecipe ?? component.Queue.FirstOrDefault(); var state = new LatheUpdateState(GetAvailableRecipes(uid, component), component.Queue, producing); - UserInterfaceSystem.SetUiState(ui, state); + _uiSys.SetUiState(ui, state); } private void OnGetRecipes(EntityUid uid, TechnologyDatabaseComponent component, LatheGetRecipesEvent args) diff --git a/Content.Server/Light/Components/ActiveEmergencyLightComponent.cs b/Content.Server/Light/Components/ActiveEmergencyLightComponent.cs index 964e0d8b1d9..cb5a932595e 100644 --- a/Content.Server/Light/Components/ActiveEmergencyLightComponent.cs +++ b/Content.Server/Light/Components/ActiveEmergencyLightComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Light.Components; [RegisterComponent] -public sealed class ActiveEmergencyLightComponent : Component +public sealed partial class ActiveEmergencyLightComponent : Component { } diff --git a/Content.Server/Light/Components/EmergencyLightComponent.cs b/Content.Server/Light/Components/EmergencyLightComponent.cs index 3d55b5c5596..20de7f1c03b 100644 --- a/Content.Server/Light/Components/EmergencyLightComponent.cs +++ b/Content.Server/Light/Components/EmergencyLightComponent.cs @@ -1,62 +1,58 @@ using Content.Server.Light.EntitySystems; -using Content.Shared.Light.Component; +using Content.Shared.Light.Components; -namespace Content.Server.Light.Components +namespace Content.Server.Light.Components; + +/// +/// Component that represents an emergency light, it has an internal battery that charges when the power is on. +/// +[RegisterComponent, Access(typeof(EmergencyLightSystem))] +public sealed partial class EmergencyLightComponent : SharedEmergencyLightComponent { + [ViewVariables] + public EmergencyLightState State; + /// - /// Component that represents an emergency light, it has an internal battery that charges when the power is on. + /// Is this emergency light forced on for some reason and cannot be disabled through normal means + /// (i.e. delta alert level?) /// - [RegisterComponent, Access(typeof(EmergencyLightSystem))] - public sealed class EmergencyLightComponent : SharedEmergencyLightComponent - { - [ViewVariables] - public EmergencyLightState State; - - /// - /// Is this emergency light forced on for some reason and cannot be disabled through normal means - /// (i.e. delta alert level?) - /// - public bool ForciblyEnabled = false; - - [ViewVariables(VVAccess.ReadWrite)] - [DataField("wattage")] - public float Wattage = 5; - - [ViewVariables(VVAccess.ReadWrite)] - [DataField("chargingWattage")] - public float ChargingWattage = 60; - - [ViewVariables(VVAccess.ReadWrite)] - [DataField("chargingEfficiency")] - public float ChargingEfficiency = 0.85f; - - public Dictionary BatteryStateText = new() - { - { EmergencyLightState.Full, "emergency-light-component-light-state-full" }, - { EmergencyLightState.Empty, "emergency-light-component-light-state-empty" }, - { EmergencyLightState.Charging, "emergency-light-component-light-state-charging" }, - { EmergencyLightState.On, "emergency-light-component-light-state-on" } - }; - } + public bool ForciblyEnabled = false; - public enum EmergencyLightState : byte - { - Charging, - Full, - Empty, - On - } + [ViewVariables(VVAccess.ReadWrite)] + [DataField("wattage")] + public float Wattage = 5; + + [ViewVariables(VVAccess.ReadWrite)] + [DataField("chargingWattage")] + public float ChargingWattage = 60; - public sealed class EmergencyLightEvent : EntityEventArgs + [ViewVariables(VVAccess.ReadWrite)] + [DataField("chargingEfficiency")] + public float ChargingEfficiency = 0.85f; + + public Dictionary BatteryStateText = new() { - public EmergencyLightComponent Component { get; } + { EmergencyLightState.Full, "emergency-light-component-light-state-full" }, + { EmergencyLightState.Empty, "emergency-light-component-light-state-empty" }, + { EmergencyLightState.Charging, "emergency-light-component-light-state-charging" }, + { EmergencyLightState.On, "emergency-light-component-light-state-on" } + }; +} - public EmergencyLightState State { get; } +public enum EmergencyLightState : byte +{ + Charging, + Full, + Empty, + On +} - public EmergencyLightEvent(EmergencyLightComponent component, EmergencyLightState state) - { - Component = component; - State = state; - } +public sealed class EmergencyLightEvent : EntityEventArgs +{ + public EmergencyLightState State { get; } + + public EmergencyLightEvent(EmergencyLightState state) + { + State = state; } } diff --git a/Content.Server/Light/Components/ExpendableLightComponent.cs b/Content.Server/Light/Components/ExpendableLightComponent.cs index 2b5cb7553c7..4129412706d 100644 --- a/Content.Server/Light/Components/ExpendableLightComponent.cs +++ b/Content.Server/Light/Components/ExpendableLightComponent.cs @@ -1,4 +1,4 @@ -using Content.Shared.Light.Component; +using Content.Shared.Light.Components; namespace Content.Server.Light.Components { @@ -6,7 +6,7 @@ namespace Content.Server.Light.Components /// Component that represents a handheld expendable light which can be activated and eventually dies over time. /// [RegisterComponent] - public sealed class ExpendableLightComponent : SharedExpendableLightComponent + public sealed partial class ExpendableLightComponent : SharedExpendableLightComponent { /// /// Status of light, whether or not it is emitting light. diff --git a/Content.Server/Light/Components/LightBehaviourComponent.cs b/Content.Server/Light/Components/LightBehaviourComponent.cs index 86852bedf6d..430c692c3ac 100644 --- a/Content.Server/Light/Components/LightBehaviourComponent.cs +++ b/Content.Server/Light/Components/LightBehaviourComponent.cs @@ -1,4 +1,4 @@ -using Content.Shared.Light.Component; +using Content.Shared.Light.Components; namespace Content.Server.Light.Components { @@ -6,7 +6,7 @@ namespace Content.Server.Light.Components /// A component which applies a specific behaviour to a PointLightComponent on its owner. /// [RegisterComponent] - public sealed class LightBehaviourComponent : SharedLightBehaviourComponent + public sealed partial class LightBehaviourComponent : SharedLightBehaviourComponent { } diff --git a/Content.Server/Light/Components/LightReplacerComponent.cs b/Content.Server/Light/Components/LightReplacerComponent.cs index 49c4523b86f..cecdba6b47d 100644 --- a/Content.Server/Light/Components/LightReplacerComponent.cs +++ b/Content.Server/Light/Components/LightReplacerComponent.cs @@ -10,7 +10,7 @@ namespace Content.Server.Light.Components; /// Can be reloaded by new light tubes or light bulbs /// [RegisterComponent, Access(typeof(LightReplacerSystem))] -public sealed class LightReplacerComponent : Component +public sealed partial class LightReplacerComponent : Component { [DataField("sound")] public SoundSpecifier Sound = new SoundPathSpecifier("/Audio/Weapons/click.ogg") diff --git a/Content.Server/Light/Components/LitOnPoweredComponent.cs b/Content.Server/Light/Components/LitOnPoweredComponent.cs index d456f705c92..c744b0b91f4 100644 --- a/Content.Server/Light/Components/LitOnPoweredComponent.cs +++ b/Content.Server/Light/Components/LitOnPoweredComponent.cs @@ -9,7 +9,7 @@ namespace Content.Server.Light.Components /// state of an entity. /// [RegisterComponent, Access(typeof(PoweredLightSystem))] - public sealed class LitOnPoweredComponent : Component + public sealed partial class LitOnPoweredComponent : Component { } } diff --git a/Content.Server/Light/Components/MatchboxComponent.cs b/Content.Server/Light/Components/MatchboxComponent.cs index 8cb57c793cc..12cd4e38808 100644 --- a/Content.Server/Light/Components/MatchboxComponent.cs +++ b/Content.Server/Light/Components/MatchboxComponent.cs @@ -3,7 +3,7 @@ // TODO make changes in icons when different threshold reached // e.g. different icons for 10% 50% 100% [RegisterComponent] - public sealed class MatchboxComponent : Component + public sealed partial class MatchboxComponent : Component { } } diff --git a/Content.Server/Light/Components/MatchstickComponent.cs b/Content.Server/Light/Components/MatchstickComponent.cs index 4837c147c4b..3c47f4c18b3 100644 --- a/Content.Server/Light/Components/MatchstickComponent.cs +++ b/Content.Server/Light/Components/MatchstickComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Light.Components { [RegisterComponent] [Access(typeof(MatchstickSystem))] - public sealed class MatchstickComponent : Component + public sealed partial class MatchstickComponent : Component { /// /// Current state to matchstick. Can be Unlit, Lit or Burnt. diff --git a/Content.Server/Light/Components/PoweredLightComponent.cs b/Content.Server/Light/Components/PoweredLightComponent.cs index 676aa382234..489a49eec22 100644 --- a/Content.Server/Light/Components/PoweredLightComponent.cs +++ b/Content.Server/Light/Components/PoweredLightComponent.cs @@ -1,7 +1,7 @@ using Content.Server.Light.EntitySystems; using Content.Shared.Damage; using Content.Shared.DeviceLinking; -using Content.Shared.Light.Component; +using Content.Shared.Light.Components; using Robust.Shared.Audio; using Robust.Shared.Containers; using Robust.Shared.Prototypes; @@ -13,7 +13,7 @@ namespace Content.Server.Light.Components /// Component that represents a wall light. It has a light bulb that can be replaced when broken. /// [RegisterComponent, Access(typeof(PoweredLightSystem))] - public sealed class PoweredLightComponent : Component + public sealed partial class PoweredLightComponent : Component { [DataField("burnHandSound")] public SoundSpecifier BurnHandSound = new SoundPathSpecifier("/Audio/Effects/lightburn.ogg"); diff --git a/Content.Server/Light/EntitySystems/EmergencyLightSystem.cs b/Content.Server/Light/EntitySystems/EmergencyLightSystem.cs index c18406564e9..bc3e7e83e28 100644 --- a/Content.Server/Light/EntitySystems/EmergencyLightSystem.cs +++ b/Content.Server/Light/EntitySystems/EmergencyLightSystem.cs @@ -2,228 +2,197 @@ using Content.Server.Audio; using Content.Server.Light.Components; using Content.Server.Power.Components; +using Content.Server.Power.EntitySystems; using Content.Server.Station.Components; using Content.Server.Station.Systems; using Content.Shared.Examine; using Content.Shared.Light; -using Content.Shared.Light.Component; -using JetBrains.Annotations; +using Content.Shared.Light.Components; using Robust.Server.GameObjects; -using Robust.Shared.GameStates; using Color = Robust.Shared.Maths.Color; -namespace Content.Server.Light.EntitySystems -{ - [UsedImplicitly] - public sealed class EmergencyLightSystem : SharedEmergencyLightSystem - { - [Dependency] private readonly AmbientSoundSystem _ambient = default!; - [Dependency] private readonly StationSystem _station = default!; - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; +namespace Content.Server.Light.EntitySystems; - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnEmergencyLightEvent); - SubscribeLocalEvent(OnAlertLevelChanged); - SubscribeLocalEvent(GetCompState); - SubscribeLocalEvent(HandleLightToggle); - SubscribeLocalEvent(OnEmergencyExamine); - SubscribeLocalEvent(OnEmergencyPower); - } +public sealed class EmergencyLightSystem : SharedEmergencyLightSystem +{ + [Dependency] private readonly AmbientSoundSystem _ambient = default!; + [Dependency] private readonly BatterySystem _battery = default!; + [Dependency] private readonly PointLightSystem _pointLight = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly StationSystem _station = default!; - private void OnEmergencyPower(EntityUid uid, EmergencyLightComponent component, ref PowerChangedEvent args) - { - var meta = MetaData(uid); + public override void Initialize() + { + base.Initialize(); - // TODO: PowerChangedEvent shouldn't be issued for paused ents but this is the world we live in. - if (meta.EntityLifeStage >= EntityLifeStage.Terminating || - meta.EntityPaused) - { - return; - } + SubscribeLocalEvent(OnEmergencyLightEvent); + SubscribeLocalEvent(OnAlertLevelChanged); + SubscribeLocalEvent(OnEmergencyExamine); + SubscribeLocalEvent(OnEmergencyPower); + } - UpdateState(component); - } + private void OnEmergencyPower(EntityUid uid, EmergencyLightComponent component, ref PowerChangedEvent args) + { + var meta = MetaData(uid); - private void OnEmergencyExamine(EntityUid uid, EmergencyLightComponent component, ExaminedEvent args) + // TODO: PowerChangedEvent shouldn't be issued for paused ents but this is the world we live in. + if (meta.EntityLifeStage >= EntityLifeStage.Terminating || + meta.EntityPaused) { - args.PushMarkup( - Loc.GetString("emergency-light-component-on-examine", - ("batteryStateText", - Loc.GetString(component.BatteryStateText[component.State])))); + return; + } - // Show alert level on the light itself. - if (!TryComp(_station.GetOwningStation(uid), out var alerts)) - return; + UpdateState(uid, component); + } - if (alerts.AlertLevels == null) - return; + private void OnEmergencyExamine(EntityUid uid, EmergencyLightComponent component, ExaminedEvent args) + { + args.PushMarkup( + Loc.GetString("emergency-light-component-on-examine", + ("batteryStateText", + Loc.GetString(component.BatteryStateText[component.State])))); - var name = alerts.CurrentLevel; + // Show alert level on the light itself. + if (!TryComp(_station.GetOwningStation(uid), out var alerts)) + return; - var color = Color.White; - if (alerts.AlertLevels.Levels.TryGetValue(alerts.CurrentLevel, out var details)) - color = details.Color; + if (alerts.AlertLevels == null) + return; - args.PushMarkup( - Loc.GetString("emergency-light-component-on-examine-alert", - ("color", color.ToHex()), - ("level", name))); - } + var name = alerts.CurrentLevel; - private void HandleLightToggle(EntityUid uid, EmergencyLightComponent component, PointLightToggleEvent args) - { - if (component.Enabled == args.Enabled) - return; + var color = Color.White; + if (alerts.AlertLevels.Levels.TryGetValue(alerts.CurrentLevel, out var details)) + color = details.Color; - component.Enabled = args.Enabled; - Dirty(component); - } + args.PushMarkup( + Loc.GetString("emergency-light-component-on-examine-alert", + ("color", color.ToHex()), + ("level", name))); + } - private void GetCompState(EntityUid uid, EmergencyLightComponent component, ref ComponentGetState args) + private void OnEmergencyLightEvent(EntityUid uid, EmergencyLightComponent component, EmergencyLightEvent args) + { + switch (args.State) { - args.State = new EmergencyLightComponentState(component.Enabled); + case EmergencyLightState.On: + case EmergencyLightState.Charging: + EnsureComp(uid); + break; + case EmergencyLightState.Full: + case EmergencyLightState.Empty: + RemComp(uid); + break; + default: + throw new ArgumentOutOfRangeException(); } + } - private void OnEmergencyLightEvent(EntityUid uid, EmergencyLightComponent component, EmergencyLightEvent args) - { - switch (args.State) - { - case EmergencyLightState.On: - case EmergencyLightState.Charging: - EnsureComp(uid); - break; - case EmergencyLightState.Full: - case EmergencyLightState.Empty: - RemComp(uid); - break; - default: - throw new ArgumentOutOfRangeException(); - } - } + private void OnAlertLevelChanged(AlertLevelChangedEvent ev) + { + if (!TryComp(ev.Station, out var alert)) + return; + + if (alert.AlertLevels == null || !alert.AlertLevels.Levels.TryGetValue(ev.AlertLevel, out var details)) + return; - private void OnAlertLevelChanged(AlertLevelChangedEvent ev) + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var light, out var pointLight, out var appearance, out var xform)) { - if (!TryComp(ev.Station, out var alert)) - return; + if (CompOrNull(xform.GridUid)?.Station != ev.Station) + continue; - if (alert.AlertLevels == null || !alert.AlertLevels.Levels.TryGetValue(ev.AlertLevel, out var details)) - return; + _pointLight.SetColor(uid, details.EmergencyLightColor, pointLight); + _appearance.SetData(uid, EmergencyLightVisuals.Color, details.EmergencyLightColor, appearance); - foreach (var (light, pointLight, appearance, xform) in EntityQuery()) + if (details.ForceEnableEmergencyLights && !light.ForciblyEnabled) { - if (CompOrNull(xform.GridUid)?.Station != ev.Station) - continue; - - pointLight.Color = details.EmergencyLightColor; - _appearance.SetData(appearance.Owner, EmergencyLightVisuals.Color, details.EmergencyLightColor, appearance); - - if (details.ForceEnableEmergencyLights && !light.ForciblyEnabled) - { - light.ForciblyEnabled = true; - TurnOn(light); - } - else if (!details.ForceEnableEmergencyLights && light.ForciblyEnabled) - { - // Previously forcibly enabled, and we went down an alert level. - light.ForciblyEnabled = false; - UpdateState(light); - } + light.ForciblyEnabled = true; + TurnOn(uid, light); + } + else if (!details.ForceEnableEmergencyLights && light.ForciblyEnabled) + { + // Previously forcibly enabled, and we went down an alert level. + light.ForciblyEnabled = false; + UpdateState(uid, light); } } + } - public void SetState(EmergencyLightComponent component, EmergencyLightState state) - { - if (component.State == state) return; + public void SetState(EntityUid uid, EmergencyLightComponent component, EmergencyLightState state) + { + if (component.State == state) return; - component.State = state; - RaiseLocalEvent(component.Owner, new EmergencyLightEvent(component, state)); + component.State = state; + RaiseLocalEvent(uid, new EmergencyLightEvent(state)); + } + + public override void Update(float frameTime) + { + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out _, out var emergencyLight, out var battery)) + { + Update(uid, emergencyLight, battery, frameTime); } + } - public override void Update(float frameTime) + private void Update(EntityUid uid, EmergencyLightComponent component, BatteryComponent battery, float frameTime) + { + if (component.State == EmergencyLightState.On) { - foreach (var (_, activeLight, battery) in EntityQuery()) + if (!_battery.TryUseCharge(uid, component.Wattage * frameTime, battery)) { - Update(activeLight, battery, frameTime); + SetState(uid, component, EmergencyLightState.Empty); + TurnOff(uid, component); } } - - private void Update(EmergencyLightComponent component, BatteryComponent battery, float frameTime) + else { - if (component.State == EmergencyLightState.On) + battery.CurrentCharge += component.ChargingWattage * frameTime * component.ChargingEfficiency; + if (battery.IsFullyCharged) { - if (!battery.TryUseCharge(component.Wattage * frameTime)) + if (TryComp(uid, out var receiver)) { - SetState(component, EmergencyLightState.Empty); - TurnOff(component); + receiver.Load = 1; } - } - else - { - battery.CurrentCharge += component.ChargingWattage * frameTime * component.ChargingEfficiency; - if (battery.IsFullyCharged) - { - if (TryComp(component.Owner, out ApcPowerReceiverComponent? receiver)) - { - receiver.Load = 1; - } - SetState(component, EmergencyLightState.Full); - } + SetState(uid, component, EmergencyLightState.Full); } } + } - /// - /// Updates the light's power drain, battery drain, sprite and actual light state. - /// - public void UpdateState(EmergencyLightComponent component) - { - if (!TryComp(component.Owner, out ApcPowerReceiverComponent? receiver)) - { - return; - } - - if (receiver.Powered && !component.ForciblyEnabled) - { - receiver.Load = (int) Math.Abs(component.Wattage); - TurnOff(component); - SetState(component, EmergencyLightState.Charging); - } - else - { - TurnOn(component); - SetState(component, EmergencyLightState.On); - } - } + /// + /// Updates the light's power drain, battery drain, sprite and actual light state. + /// + public void UpdateState(EntityUid uid, EmergencyLightComponent component) + { + if (!TryComp(uid, out var receiver)) + return; - private void TurnOff(EmergencyLightComponent component) + if (receiver.Powered && !component.ForciblyEnabled) { - if (TryComp(component.Owner, out PointLightComponent? light)) - { - light.Enabled = false; - } - - if (TryComp(component.Owner, out AppearanceComponent? appearance)) - _appearance.SetData(appearance.Owner, EmergencyLightVisuals.On, false, appearance); - - _ambient.SetAmbience(component.Owner, false); + receiver.Load = (int) Math.Abs(component.Wattage); + TurnOff(uid, component); + SetState(uid, component, EmergencyLightState.Charging); } - - private void TurnOn(EmergencyLightComponent component) + else { - if (TryComp(component.Owner, out PointLightComponent? light)) - { - light.Enabled = true; - } + TurnOn(uid, component); + SetState(uid, component, EmergencyLightState.On); + } + } - if (TryComp(component.Owner, out AppearanceComponent? appearance)) - { - _appearance.SetData(appearance.Owner, EmergencyLightVisuals.On, true, appearance); - } + private void TurnOff(EntityUid uid, EmergencyLightComponent component) + { + _pointLight.SetEnabled(uid, false); + _appearance.SetData(uid, EmergencyLightVisuals.On, false); + _ambient.SetAmbience(uid, false); + } - _ambient.SetAmbience(component.Owner, true); - } + private void TurnOn(EntityUid uid, EmergencyLightComponent component) + { + _pointLight.SetEnabled(uid, true); + _appearance.SetData(uid, EmergencyLightVisuals.On, true); + _ambient.SetAmbience(uid, true); } } - diff --git a/Content.Server/Light/EntitySystems/ExpendableLightSystem.cs b/Content.Server/Light/EntitySystems/ExpendableLightSystem.cs index 8d04e896c30..ff6393fe5a3 100644 --- a/Content.Server/Light/EntitySystems/ExpendableLightSystem.cs +++ b/Content.Server/Light/EntitySystems/ExpendableLightSystem.cs @@ -3,7 +3,7 @@ using Content.Shared.Clothing.EntitySystems; using Content.Shared.Interaction.Events; using Content.Shared.Item; -using Content.Shared.Light.Component; +using Content.Shared.Light.Components; using Content.Shared.Tag; using Content.Shared.Temperature; using Content.Shared.Verbs; @@ -23,6 +23,7 @@ public sealed class ExpendableLightSystem : EntitySystem [Dependency] private readonly TagSystem _tagSystem = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; public override void Initialize() { @@ -63,8 +64,8 @@ private void UpdateLight(ExpendableLightComponent component, float frameTime) case ExpendableLightState.Fading: component.CurrentState = ExpendableLightState.Dead; var meta = MetaData(component.Owner); - meta.EntityName = Loc.GetString(component.SpentName); - meta.EntityDescription = Loc.GetString(component.SpentDesc); + _metaData.SetEntityName(component.Owner, Loc.GetString(component.SpentName), meta); + _metaData.SetEntityDescription(component.Owner, Loc.GetString(component.SpentDesc), meta); _tagSystem.AddTag(component.Owner, "Trash"); diff --git a/Content.Server/Light/EntitySystems/HandheldLightSystem.cs b/Content.Server/Light/EntitySystems/HandheldLightSystem.cs index 2c23057e2d5..3ff115d14e6 100644 --- a/Content.Server/Light/EntitySystems/HandheldLightSystem.cs +++ b/Content.Server/Light/EntitySystems/HandheldLightSystem.cs @@ -2,33 +2,31 @@ using Content.Server.Popups; using Content.Server.PowerCell; using Content.Shared.Actions; -using Content.Shared.Actions.ActionTypes; using Content.Shared.Examine; using Content.Shared.Interaction; using Content.Shared.Light; +using Content.Shared.Light.Components; using Content.Shared.Rounding; using Content.Shared.Toggleable; using Content.Shared.Verbs; using JetBrains.Annotations; using Robust.Server.GameObjects; -using Robust.Shared.Audio; using Robust.Shared.Containers; using Robust.Shared.GameStates; -using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Utility; namespace Content.Server.Light.EntitySystems { - [UsedImplicitly] public sealed class HandheldLightSystem : SharedHandheldLightSystem { + [Dependency] private readonly IPrototypeManager _proto = default!; [Dependency] private readonly ActionsSystem _actions = default!; [Dependency] private readonly PopupSystem _popup = default!; [Dependency] private readonly PowerCellSystem _powerCell = default!; - [Dependency] private readonly IPrototypeManager _proto = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedPointLightSystem _lights = default!; // TODO: Ideally you'd be able to subscribe to power stuff to get events at certain percentages.. or something? // But for now this will be better anyway. @@ -76,14 +74,7 @@ private void OnEntRemoved( private void OnGetActions(EntityUid uid, HandheldLightComponent component, GetItemActionsEvent args) { - if (component.ToggleAction == null - && _proto.TryIndex(component.ToggleActionId, out InstantActionPrototype? act)) - { - component.ToggleAction = new(act); - } - - if (component.ToggleAction != null) - args.Actions.Add(component.ToggleAction); + args.AddAction(ref component.ToggleActionEntity, component.ToggleAction); } private void OnToggleAction(EntityUid uid, HandheldLightComponent component, ToggleActionEvent args) @@ -106,20 +97,12 @@ private void OnGetState(EntityUid uid, HandheldLightComponent component, ref Com private void OnMapInit(EntityUid uid, HandheldLightComponent component, MapInitEvent args) { - if (component.ToggleAction == null - && _proto.TryIndex(component.ToggleActionId, out InstantActionPrototype? act)) - { - component.ToggleAction = new(act); - } - - if (component.ToggleAction != null) - _actions.AddAction(uid, component.ToggleAction, null); + _actions.AddAction(uid, ref component.ToggleActionEntity, component.ToggleAction); } private void OnShutdown(EntityUid uid, HandheldLightComponent component, ComponentShutdown args) { - if (component.ToggleAction != null) - _actions.RemoveAction(uid, component.ToggleAction); + _actions.RemoveAction(uid, component.ToggleActionEntity); } private byte? GetLevel(EntityUid uid, HandheldLightComponent component) @@ -215,12 +198,12 @@ private void AddToggleLightVerb(EntityUid uid, HandheldLightComponent component, public bool TurnOff(EntityUid uid, HandheldLightComponent component, bool makeNoise = true) { - if (!component.Activated || !TryComp(uid, out var pointLightComponent)) + if (!component.Activated || !_lights.TryGetLight(uid, out var pointLightComponent)) { return false; } - pointLightComponent.Enabled = false; + _lights.SetEnabled(uid, false, pointLightComponent); SetActivated(uid, false, component, makeNoise); component.Level = null; _activeLights.Remove(component); @@ -229,7 +212,7 @@ public bool TurnOff(EntityUid uid, HandheldLightComponent component, bool makeNo public bool TurnOn(EntityUid user, EntityUid uid, HandheldLightComponent component) { - if (component.Activated || !TryComp(uid, out var pointLightComponent)) + if (component.Activated || !_lights.TryGetLight(uid, out var pointLightComponent)) { return false; } @@ -252,7 +235,7 @@ public bool TurnOn(EntityUid user, EntityUid uid, HandheldLightComponent compone return false; } - pointLightComponent.Enabled = true; + _lights.SetEnabled(uid, true, pointLightComponent); SetActivated(uid, true, component, true); _activeLights.Add(component); diff --git a/Content.Server/Light/EntitySystems/LightBulbSystem.cs b/Content.Server/Light/EntitySystems/LightBulbSystem.cs index 75e34fca36c..43b0b4662c8 100644 --- a/Content.Server/Light/EntitySystems/LightBulbSystem.cs +++ b/Content.Server/Light/EntitySystems/LightBulbSystem.cs @@ -1,6 +1,6 @@ using Content.Server.Light.Components; using Content.Shared.Destructible; -using Content.Shared.Light.Component; +using Content.Shared.Light.Components; using Content.Shared.Throwing; using Robust.Server.GameObjects; using Robust.Shared.Audio; diff --git a/Content.Server/Light/EntitySystems/LightReplacerSystem.cs b/Content.Server/Light/EntitySystems/LightReplacerSystem.cs index e43ce5a5aed..d37080a1e10 100644 --- a/Content.Server/Light/EntitySystems/LightReplacerSystem.cs +++ b/Content.Server/Light/EntitySystems/LightReplacerSystem.cs @@ -1,9 +1,8 @@ using System.Linq; using Content.Server.Light.Components; -using Content.Server.Storage.Components; using Content.Shared.Examine; using Content.Shared.Interaction; -using Content.Shared.Light.Component; +using Content.Shared.Light.Components; using Content.Shared.Popups; using Content.Shared.Storage; using JetBrains.Annotations; @@ -101,7 +100,7 @@ private void HandleInteract(EntityUid uid, LightReplacerComponent component, Int if (TryComp(usedUid, out var bulb)) eventArgs.Handled = TryInsertBulb(uid, usedUid, eventArgs.User, true, component, bulb); // add bulbs from storage? - else if (TryComp(usedUid, out var storage)) + else if (TryComp(usedUid, out var storage)) eventArgs.Handled = TryInsertBulbsFromStorage(uid, usedUid, eventArgs.User, component, storage); } @@ -205,23 +204,23 @@ public bool TryInsertBulb(EntityUid replacerUid, EntityUid bulbUid, EntityUid? u /// which was successfully inserted inside light replacer /// public bool TryInsertBulbsFromStorage(EntityUid replacerUid, EntityUid storageUid, EntityUid? userUid = null, - LightReplacerComponent? replacer = null, ServerStorageComponent? storage = null) + LightReplacerComponent? replacer = null, StorageComponent? storage = null) { if (!Resolve(replacerUid, ref replacer)) return false; if (!Resolve(storageUid, ref storage)) return false; - if (storage.StoredEntities == null) - return false; - var insertedBulbs = 0; - var storagedEnts = storage.StoredEntities.ToArray(); + var storagedEnts = storage.Container.ContainedEntities.ToArray(); + foreach (var ent in storagedEnts) { if (TryComp(ent, out var bulb) && TryInsertBulb(replacerUid, ent, userUid, false, replacer, bulb)) + { insertedBulbs++; + } } // show some message if success diff --git a/Content.Server/Light/EntitySystems/LitOnPoweredSystem.cs b/Content.Server/Light/EntitySystems/LitOnPoweredSystem.cs index b3961b15f98..752fb8f5fe6 100644 --- a/Content.Server/Light/EntitySystems/LitOnPoweredSystem.cs +++ b/Content.Server/Light/EntitySystems/LitOnPoweredSystem.cs @@ -1,12 +1,13 @@ using Content.Server.Light.Components; using Content.Server.Power.Components; using Content.Server.Power.EntitySystems; -using Robust.Server.GameObjects; namespace Content.Server.Light.EntitySystems { public sealed class LitOnPoweredSystem : EntitySystem { + [Dependency] private readonly SharedPointLightSystem _lights = default!; + public override void Initialize() { base.Initialize(); @@ -16,17 +17,17 @@ public override void Initialize() private void OnPowerChanged(EntityUid uid, LitOnPoweredComponent component, ref PowerChangedEvent args) { - if (EntityManager.TryGetComponent(uid, out var light)) + if (_lights.TryGetLight(uid, out var light)) { - light.Enabled = args.Powered; + _lights.SetEnabled(uid, args.Powered, light); } } private void OnPowerSupply(EntityUid uid, LitOnPoweredComponent component, ref PowerNetBatterySupplyEvent args) { - if (EntityManager.TryGetComponent(uid, out var light)) + if (_lights.TryGetLight(uid, out var light)) { - light.Enabled = args.Supply; + _lights.SetEnabled(uid, args.Supply, light); } } } diff --git a/Content.Server/Light/EntitySystems/MatchboxSystem.cs b/Content.Server/Light/EntitySystems/MatchboxSystem.cs index b4c6f28eadf..606b2c00220 100644 --- a/Content.Server/Light/EntitySystems/MatchboxSystem.cs +++ b/Content.Server/Light/EntitySystems/MatchboxSystem.cs @@ -18,7 +18,7 @@ public override void Initialize() private void OnInteractUsing(EntityUid uid, MatchboxComponent component, InteractUsingEvent args) { if (!args.Handled - && EntityManager.TryGetComponent(args.Used, out var matchstick) + && EntityManager.TryGetComponent(args.Used, out MatchstickComponent? matchstick) && matchstick.CurrentState == SmokableState.Unlit) { _stickSystem.Ignite(args.Used, matchstick, args.User); diff --git a/Content.Server/Light/EntitySystems/MatchstickSystem.cs b/Content.Server/Light/EntitySystems/MatchstickSystem.cs index b705fabce43..7fe8aa92376 100644 --- a/Content.Server/Light/EntitySystems/MatchstickSystem.cs +++ b/Content.Server/Light/EntitySystems/MatchstickSystem.cs @@ -14,9 +14,10 @@ namespace Content.Server.Light.EntitySystems public sealed class MatchstickSystem : EntitySystem { [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; - [Dependency] private readonly TransformSystem _transformSystem = default!; - [Dependency] private readonly SharedItemSystem _item = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedItemSystem _item = default!; + [Dependency] private readonly SharedPointLightSystem _lights = default!; + [Dependency] private readonly TransformSystem _transformSystem = default!; private HashSet _litMatches = new(); @@ -92,25 +93,25 @@ private void SetState(EntityUid uid, MatchstickComponent component, SmokableStat { component.CurrentState = value; - if (TryComp(component.Owner, out var pointLightComponent)) + if (_lights.TryGetLight(uid, out var pointLightComponent)) { - pointLightComponent.Enabled = component.CurrentState == SmokableState.Lit; + _lights.SetEnabled(uid, component.CurrentState == SmokableState.Lit, pointLightComponent); } - if (EntityManager.TryGetComponent(component.Owner, out ItemComponent? item)) + if (EntityManager.TryGetComponent(uid, out ItemComponent? item)) { switch (component.CurrentState) { case SmokableState.Lit: - _item.SetHeldPrefix(component.Owner, "lit", item); + _item.SetHeldPrefix(uid, "lit", item); break; default: - _item.SetHeldPrefix(component.Owner, "unlit", item); + _item.SetHeldPrefix(uid, "unlit", item); break; } } - if (EntityManager.TryGetComponent(component.Owner, out AppearanceComponent? appearance)) + if (EntityManager.TryGetComponent(uid, out AppearanceComponent? appearance)) { _appearance.SetData(uid, SmokingVisuals.Smoking, component.CurrentState, appearance); } diff --git a/Content.Server/Light/EntitySystems/PoweredLightSystem.cs b/Content.Server/Light/EntitySystems/PoweredLightSystem.cs index 7c0225579a6..b23f741ef19 100644 --- a/Content.Server/Light/EntitySystems/PoweredLightSystem.cs +++ b/Content.Server/Light/EntitySystems/PoweredLightSystem.cs @@ -11,7 +11,7 @@ using Content.Shared.Hands.EntitySystems; using Content.Shared.Interaction; using Content.Shared.Light; -using Content.Shared.Light.Component; +using Content.Shared.Light.Components; using Content.Shared.Popups; using Robust.Server.GameObjects; using Robust.Shared.Audio; @@ -41,6 +41,7 @@ public sealed class PoweredLightSystem : EntitySystem [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!; private static readonly TimeSpan ThunkDelay = TimeSpan.FromSeconds(2); @@ -74,9 +75,10 @@ private void OnInit(EntityUid uid, PoweredLightComponent light, ComponentInit ar private void OnMapInit(EntityUid uid, PoweredLightComponent light, MapInitEvent args) { + // TODO: Use ContainerFill dog if (light.HasLampOnSpawn != null) { - var entity = EntityManager.SpawnEntity(light.HasLampOnSpawn, EntityManager.GetComponent(light.Owner).Coordinates); + var entity = EntityManager.SpawnEntity(light.HasLampOnSpawn, EntityManager.GetComponent(uid).Coordinates); light.LightBulbContainer.Insert(entity); } // need this to update visualizers @@ -138,7 +140,7 @@ private void OnInteractHand(EntityUid uid, PoweredLightComponent light, Interact } // removing a working bulb, so require a delay - _doAfterSystem.TryStartDoAfter(new DoAfterArgs(userUid, light.EjectBulbDelay, new PoweredLightDoAfterEvent(), uid, target: uid) + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, userUid, light.EjectBulbDelay, new PoweredLightDoAfterEvent(), uid, target: uid) { BreakOnUserMove = true, BreakOnDamage = true, @@ -246,7 +248,7 @@ private void UpdateLight(EntityUid uid, ApcPowerReceiverComponent? powerReceiver = null, AppearanceComponent? appearance = null) { - if (!Resolve(uid, ref light, ref powerReceiver)) + if (!Resolve(uid, ref light, ref powerReceiver, false)) return; // Optional component. @@ -386,16 +388,16 @@ private void SetLight(EntityUid uid, bool value, Color? color = null, PoweredLig if (EntityManager.TryGetComponent(uid, out PointLightComponent? pointLight)) { - pointLight.Enabled = value; + _pointLight.SetEnabled(uid, value, pointLight); if (color != null) - pointLight.Color = color.Value; + _pointLight.SetColor(uid, color.Value, pointLight); if (radius != null) - pointLight.Radius = (float) radius; + _pointLight.SetRadius(uid, (float) radius, pointLight); if (energy != null) - pointLight.Energy = (float) energy; + _pointLight.SetEnergy(uid, (float) energy, pointLight); if (softness != null) - pointLight.Softness = (float) softness; + _pointLight.SetSoftness(uid, (float) softness, pointLight); } } diff --git a/Content.Server/Light/EntitySystems/RotatingLightSystem.cs b/Content.Server/Light/EntitySystems/RotatingLightSystem.cs new file mode 100644 index 00000000000..dd72b3a43e8 --- /dev/null +++ b/Content.Server/Light/EntitySystems/RotatingLightSystem.cs @@ -0,0 +1,24 @@ +using Content.Shared.Light; +using Content.Shared.Light.Components; +using Robust.Shared.GameObjects; + +namespace Content.Server.Light.EntitySystems; + +public sealed class RotatingLightSystem : SharedRotatingLightSystem +{ + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnLightToggle); + } + + private void OnLightToggle(EntityUid uid, RotatingLightComponent comp, PointLightToggleEvent args) + { + if (comp.Enabled == args.Enabled) + return; + + comp.Enabled = args.Enabled; + Dirty(comp); + } +} diff --git a/Content.Server/Light/EntitySystems/UnpoweredFlashlightSystem.cs b/Content.Server/Light/EntitySystems/UnpoweredFlashlightSystem.cs index bd6c0d5dba5..2be870ff0da 100644 --- a/Content.Server/Light/EntitySystems/UnpoweredFlashlightSystem.cs +++ b/Content.Server/Light/EntitySystems/UnpoweredFlashlightSystem.cs @@ -1,13 +1,12 @@ using Content.Server.Light.Events; -using Content.Server.Mind.Components; using Content.Shared.Actions; using Content.Shared.Decals; using Content.Shared.Emag.Systems; using Content.Shared.Light; -using Content.Shared.Light.Component; +using Content.Shared.Light.Components; +using Content.Shared.Mind.Components; using Content.Shared.Toggleable; using Content.Shared.Verbs; -using Robust.Server.GameObjects; using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Utility; @@ -16,11 +15,12 @@ namespace Content.Server.Light.EntitySystems { public sealed class UnpoweredFlashlightSystem : EntitySystem { + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly SharedAudioSystem _audioSystem = default!; + [Dependency] private readonly SharedPointLightSystem _light = default!; public override void Initialize() { @@ -45,7 +45,7 @@ private void OnToggleAction(EntityUid uid, UnpoweredFlashlightComponent componen private void OnGetActions(EntityUid uid, UnpoweredFlashlightComponent component, GetItemActionsEvent args) { - args.Actions.Add(component.ToggleAction); + args.AddAction(ref component.ToggleActionEntity, component.ToggleAction); } private void AddToggleLightVerbs(EntityUid uid, UnpoweredFlashlightComponent component, GetVerbsEvent args) @@ -66,18 +66,18 @@ private void AddToggleLightVerbs(EntityUid uid, UnpoweredFlashlightComponent com private void OnMindAdded(EntityUid uid, UnpoweredFlashlightComponent component, MindAddedMessage args) { - _actionsSystem.AddAction(uid, component.ToggleAction, null); + _actionsSystem.AddAction(uid, ref component.ToggleActionEntity, component.ToggleAction); } private void OnGotEmagged(EntityUid uid, UnpoweredFlashlightComponent component, ref GotEmaggedEvent args) { - if (!TryComp(uid, out var light)) + if (!_light.TryGetLight(uid, out var light)) return; if (_prototypeManager.TryIndex(component.EmaggedColorsPrototype, out var possibleColors)) { var pick = _random.Pick(possibleColors.Colors.Values); - light.Color = pick; + _light.SetColor(uid, pick, light); } args.Repeatable = true; @@ -86,18 +86,18 @@ private void OnGotEmagged(EntityUid uid, UnpoweredFlashlightComponent component, public void ToggleLight(EntityUid uid, UnpoweredFlashlightComponent flashlight) { - if (!TryComp(uid, out var light)) + if (!_light.TryGetLight(uid, out var light)) return; flashlight.LightOn = !flashlight.LightOn; - light.Enabled = flashlight.LightOn; + _light.SetEnabled(uid, flashlight.LightOn, light); _appearance.SetData(uid, UnpoweredFlashlightVisuals.LightOn, flashlight.LightOn); _audioSystem.PlayPvs(flashlight.ToggleSound, uid); RaiseLocalEvent(uid, new LightToggleEvent(flashlight.LightOn), true); - _actionsSystem.SetToggled(flashlight.ToggleAction, flashlight.LightOn); + _actionsSystem.SetToggled(flashlight.ToggleActionEntity, flashlight.LightOn); } } } diff --git a/Content.Server/Lightning/Components/LightningComponent.cs b/Content.Server/Lightning/Components/LightningComponent.cs index 598d4112a5e..138d7010d4e 100644 --- a/Content.Server/Lightning/Components/LightningComponent.cs +++ b/Content.Server/Lightning/Components/LightningComponent.cs @@ -2,7 +2,7 @@ namespace Content.Server.Lightning.Components; [RegisterComponent] -public sealed class LightningComponent : SharedLightningComponent +public sealed partial class LightningComponent : SharedLightningComponent { } diff --git a/Content.Server/Magic/Components/SpellbookComponent.cs b/Content.Server/Magic/Components/SpellbookComponent.cs index db6c7170610..ebc3c880436 100644 --- a/Content.Server/Magic/Components/SpellbookComponent.cs +++ b/Content.Server/Magic/Components/SpellbookComponent.cs @@ -1,4 +1,4 @@ -using Content.Shared.Actions.ActionTypes; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Dictionary; namespace Content.Server.Magic.Components; @@ -7,28 +7,20 @@ namespace Content.Server.Magic.Components; /// Spellbooks for having an entity learn spells as long as they've read the book and it's in their hand. /// [RegisterComponent] -public sealed class SpellbookComponent : Component +public sealed partial class SpellbookComponent : Component { /// /// List of spells that this book has. This is a combination of the WorldSpells, EntitySpells, and InstantSpells. /// [ViewVariables] - public readonly List Spells = new(); + public readonly List Spells = new(); /// /// The three fields below is just used for initialization. /// - [DataField("worldSpells", customTypeSerializer: typeof(PrototypeIdDictionarySerializer))] + [DataField("spells", customTypeSerializer: typeof(PrototypeIdDictionarySerializer))] [ViewVariables(VVAccess.ReadWrite)] - public readonly Dictionary WorldSpells = new(); - - [DataField("entitySpells", customTypeSerializer: typeof(PrototypeIdDictionarySerializer))] - [ViewVariables(VVAccess.ReadWrite)] - public readonly Dictionary EntitySpells = new(); - - [DataField("instantSpells", customTypeSerializer: typeof(PrototypeIdDictionarySerializer))] - [ViewVariables(VVAccess.ReadWrite)] - public readonly Dictionary InstantSpells = new(); + public Dictionary SpellActions = new(); [DataField("learnTime")] [ViewVariables(VVAccess.ReadWrite)] diff --git a/Content.Server/Magic/MagicSystem.cs b/Content.Server/Magic/MagicSystem.cs index e75bae0249a..c4ed74604d5 100644 --- a/Content.Server/Magic/MagicSystem.cs +++ b/Content.Server/Magic/MagicSystem.cs @@ -4,10 +4,8 @@ using Content.Server.Chat.Systems; using Content.Server.Doors.Systems; using Content.Server.Magic.Components; -using Content.Server.Magic.Events; using Content.Server.Weapons.Ranged.Systems; using Content.Shared.Actions; -using Content.Shared.Actions.ActionTypes; using Content.Shared.Body.Components; using Content.Shared.Coordinates.Helpers; using Content.Shared.DoAfter; @@ -15,6 +13,7 @@ using Content.Shared.Doors.Systems; using Content.Shared.Interaction.Events; using Content.Shared.Magic; +using Content.Shared.Magic.Events; using Content.Shared.Maps; using Content.Shared.Physics; using Content.Shared.Spawners.Components; @@ -22,11 +21,8 @@ using Robust.Server.GameObjects; using Robust.Shared.Audio; using Robust.Shared.Map; -using Robust.Shared.Player; -using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Serialization.Manager; -using Robust.Shared.Serialization.Manager.Exceptions; namespace Content.Server.Magic; @@ -38,7 +34,6 @@ public sealed class MagicSystem : EntitySystem [Dependency] private readonly ISerializationManager _seriMan = default!; [Dependency] private readonly IComponentFactory _compFact = default!; [Dependency] private readonly IMapManager _mapManager = default!; - [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly DoorBoltSystem _boltsSystem = default!; [Dependency] private readonly BodySystem _bodySystem = default!; @@ -81,23 +76,9 @@ private void OnDoAfter(EntityUid uid, SpellbookComponent component, DoAfterEvent private void OnInit(EntityUid uid, SpellbookComponent component, ComponentInit args) { //Negative charges means the spell can be used without it running out. - foreach (var (id, charges) in component.WorldSpells) + foreach (var (id, charges) in component.SpellActions) { - var spell = new WorldTargetAction(_prototypeManager.Index(id)); - _actionsSystem.SetCharges(spell, charges < 0 ? null : charges); - component.Spells.Add(spell); - } - - foreach (var (id, charges) in component.InstantSpells) - { - var spell = new InstantAction(_prototypeManager.Index(id)); - _actionsSystem.SetCharges(spell, charges < 0 ? null : charges); - component.Spells.Add(spell); - } - - foreach (var (id, charges) in component.EntitySpells) - { - var spell = new EntityTargetAction(_prototypeManager.Index(id)); + var spell = Spawn(id); _actionsSystem.SetCharges(spell, charges < 0 ? null : charges); component.Spells.Add(spell); } @@ -115,7 +96,7 @@ private void OnUse(EntityUid uid, SpellbookComponent component, UseInHandEvent a private void AttemptLearn(EntityUid uid, SpellbookComponent component, UseInHandEvent args) { - var doAfterEventArgs = new DoAfterArgs(args.User, component.LearnTime, new SpellbookDoAfterEvent(), uid, target: uid) + var doAfterEventArgs = new DoAfterArgs(EntityManager, args.User, component.LearnTime, new SpellbookDoAfterEvent(), uid, target: uid) { BreakOnTargetMove = true, BreakOnUserMove = true, diff --git a/Content.Server/MagicMirror/MagicMirrorComponent.cs b/Content.Server/MagicMirror/MagicMirrorComponent.cs index 05b12690a0d..d9c2fff6daf 100644 --- a/Content.Server/MagicMirror/MagicMirrorComponent.cs +++ b/Content.Server/MagicMirror/MagicMirrorComponent.cs @@ -1,6 +1,6 @@ namespace Content.Server.MagicMirror; [RegisterComponent] -public sealed class MagicMirrorComponent : Component +public sealed partial class MagicMirrorComponent : Component { } diff --git a/Content.Server/Maps/Conditions/HolidayMapCondition.cs b/Content.Server/Maps/Conditions/HolidayMapCondition.cs index 4de5d3ad8d2..81ecfb356e8 100644 --- a/Content.Server/Maps/Conditions/HolidayMapCondition.cs +++ b/Content.Server/Maps/Conditions/HolidayMapCondition.cs @@ -3,10 +3,10 @@ namespace Content.Server.Maps.Conditions; -public sealed class HolidayMapCondition : GameMapCondition +public sealed partial class HolidayMapCondition : GameMapCondition { [DataField("holidays")] - public string[] Holidays { get; } = default!; + public string[] Holidays { get; private set; } = default!; public override bool Check(GameMapPrototype map) { diff --git a/Content.Server/Maps/GameMapCondition.cs b/Content.Server/Maps/GameMapCondition.cs index f25e1166846..78c5323777c 100644 --- a/Content.Server/Maps/GameMapCondition.cs +++ b/Content.Server/Maps/GameMapCondition.cs @@ -1,9 +1,9 @@ namespace Content.Server.Maps; [ImplicitDataDefinitionForInheritors] -public abstract class GameMapCondition +public abstract partial class GameMapCondition { [DataField("inverted")] - public bool Inverted { get; } + public bool Inverted { get; private set; } public abstract bool Check(GameMapPrototype map); } diff --git a/Content.Server/Maps/GameMapManager.cs b/Content.Server/Maps/GameMapManager.cs index 2fb531e5d0b..69f732151f8 100644 --- a/Content.Server/Maps/GameMapManager.cs +++ b/Content.Server/Maps/GameMapManager.cs @@ -85,7 +85,7 @@ public IEnumerable AllVotableMaps() var poolPrototype = _entityManager.System().Preset?.MapPool ?? _configurationManager.GetCVar(CCVars.GameMapPool); - if (_prototypeManager.TryIndex(_configurationManager.GetCVar(CCVars.GameMapPool), out var pool)) + if (_prototypeManager.TryIndex(poolPrototype, out var pool)) { foreach (var map in pool.Maps) { diff --git a/Content.Server/Maps/GameMapPoolPrototype.cs b/Content.Server/Maps/GameMapPoolPrototype.cs index 2d20084a577..4c439d44a68 100644 --- a/Content.Server/Maps/GameMapPoolPrototype.cs +++ b/Content.Server/Maps/GameMapPoolPrototype.cs @@ -12,11 +12,11 @@ public sealed class GameMapPoolPrototype : IPrototype { /// [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// /// Which maps are in this pool. /// [DataField("maps", customTypeSerializer:typeof(PrototypeIdHashSetSerializer), required: true)] - public readonly HashSet Maps = new(0); + public HashSet Maps = new(0); } diff --git a/Content.Server/Maps/GameMapPrototype.MapSelection.cs b/Content.Server/Maps/GameMapPrototype.MapSelection.cs index 53ace8e5f4a..ff8fd357171 100644 --- a/Content.Server/Maps/GameMapPrototype.MapSelection.cs +++ b/Content.Server/Maps/GameMapPrototype.MapSelection.cs @@ -6,21 +6,21 @@ public sealed partial class GameMapPrototype /// Controls if the map can be used as a fallback if no maps are eligible. /// [DataField("fallback")] - public bool Fallback { get; } + public bool Fallback { get; private set; } /// /// Minimum players for the given map. /// [DataField("minPlayers", required: true)] - public uint MinPlayers { get; } + public uint MinPlayers { get; private set; } /// /// Maximum players for the given map. /// [DataField("maxPlayers")] - public uint MaxPlayers { get; } = uint.MaxValue; + public uint MaxPlayers { get; private set; } = uint.MaxValue; - [DataField("conditions")] private readonly List _conditions = new(); + [DataField("conditions")] private List _conditions = new(); /// /// The game map conditions that must be fulfilled for this map to be selectable. diff --git a/Content.Server/Maps/GameMapPrototype.cs b/Content.Server/Maps/GameMapPrototype.cs index e289b7d1b1e..837e838290a 100644 --- a/Content.Server/Maps/GameMapPrototype.cs +++ b/Content.Server/Maps/GameMapPrototype.cs @@ -19,19 +19,19 @@ public sealed partial class GameMapPrototype : IPrototype { /// [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// /// Name of the map to use in generic messages, like the map vote. /// [DataField("mapName", required: true)] - public string MapName { get; } = default!; + public string MapName { get; private set; } = default!; /// /// Relative directory path to the given map, i.e. `/Maps/saltern.yml` /// [DataField("mapPath", required: true)] - public ResPath MapPath { get; } = default!; + public ResPath MapPath { get; private set; } = default!; [DataField("stations", required: true)] private Dictionary _stations = new(); diff --git a/Content.Server/Maps/GridDraggingSystem.cs b/Content.Server/Maps/GridDraggingSystem.cs index eef3e568498..90770af1ad2 100644 --- a/Content.Server/Maps/GridDraggingSystem.cs +++ b/Content.Server/Maps/GridDraggingSystem.cs @@ -50,24 +50,34 @@ public void Toggle(ICommonSession session) private void OnRequestVelocity(GridDragVelocityRequest ev, EntitySessionEventArgs args) { + var grid = GetEntity(ev.Grid); + if (args.SenderSession is not IPlayerSession playerSession || !_admin.CanCommand(playerSession, CommandName) || - !Exists(ev.Grid) || - Deleted(ev.Grid)) return; + !Exists(grid) || + Deleted(grid)) + { + return; + } - var gridBody = Comp(ev.Grid); - _physics.SetLinearVelocity(ev.Grid, ev.LinearVelocity, body: gridBody); - _physics.SetAngularVelocity(ev.Grid, 0f, body: gridBody); + var gridBody = Comp(grid); + _physics.SetLinearVelocity(grid, ev.LinearVelocity, body: gridBody); + _physics.SetAngularVelocity(grid, 0f, body: gridBody); } private void OnRequestDrag(GridDragRequestPosition msg, EntitySessionEventArgs args) { + var grid = GetEntity(msg.Grid); + if (args.SenderSession is not IPlayerSession playerSession || !_admin.CanCommand(playerSession, CommandName) || - !Exists(msg.Grid) || - Deleted(msg.Grid)) return; + !Exists(grid) || + Deleted(grid)) + { + return; + } - var gridXform = Transform(msg.Grid); + var gridXform = Transform(grid); gridXform.WorldPosition = msg.WorldPosition; } diff --git a/Content.Server/Maps/NameGenerators/NanotrasenNameGenerator.cs b/Content.Server/Maps/NameGenerators/NanotrasenNameGenerator.cs index 12dfc7cb1b7..48f12a38827 100644 --- a/Content.Server/Maps/NameGenerators/NanotrasenNameGenerator.cs +++ b/Content.Server/Maps/NameGenerators/NanotrasenNameGenerator.cs @@ -4,7 +4,7 @@ namespace Content.Server.Maps.NameGenerators; [UsedImplicitly] -public sealed class NanotrasenNameGenerator : StationNameGenerator +public sealed partial class NanotrasenNameGenerator : StationNameGenerator { /// /// Where the map comes from. Should be a two or three letter code, for example "VG" for Packedstation. diff --git a/Content.Server/Maps/NameGenerators/StationNameGenerator.cs b/Content.Server/Maps/NameGenerators/StationNameGenerator.cs index bfb8a21867c..5dd40e8d721 100644 --- a/Content.Server/Maps/NameGenerators/StationNameGenerator.cs +++ b/Content.Server/Maps/NameGenerators/StationNameGenerator.cs @@ -1,7 +1,7 @@ namespace Content.Server.Maps.NameGenerators; [ImplicitDataDefinitionForInheritors] -public abstract class StationNameGenerator +public abstract partial class StationNameGenerator { public abstract string FormatName(string input); } diff --git a/Content.Server/MassMedia/Components/NewsWriteComponent.cs b/Content.Server/MassMedia/Components/NewsWriteComponent.cs index 7308959d567..c064759610e 100644 --- a/Content.Server/MassMedia/Components/NewsWriteComponent.cs +++ b/Content.Server/MassMedia/Components/NewsWriteComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.MassMedia.Components { [RegisterComponent] - public sealed class NewsWriteComponent : Component + public sealed partial class NewsWriteComponent : Component { [ViewVariables(VVAccess.ReadWrite)] public bool ShareAvalible = false; diff --git a/Content.Server/MassMedia/Systems/NewsSystem.cs b/Content.Server/MassMedia/Systems/NewsSystem.cs index 6cca0cc7c33..f5b17fefb89 100644 --- a/Content.Server/MassMedia/Systems/NewsSystem.cs +++ b/Content.Server/MassMedia/Systems/NewsSystem.cs @@ -13,9 +13,13 @@ using Content.Shared.CartridgeLoader; using Content.Shared.CartridgeLoader.Cartridges; using Content.Server.CartridgeLoader; +using Content.Server.GameTicking; using Robust.Shared.Timing; using Content.Server.Popups; +using Content.Server.StationRecords.Systems; using Content.Shared.Database; +using Robust.Shared.Containers; +using Robust.Shared.Utility; namespace Content.Server.MassMedia.Systems; @@ -24,14 +28,15 @@ public sealed class NewsSystem : EntitySystem [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly UserInterfaceSystem _ui = default!; [Dependency] private readonly RingerSystem _ringer = default!; - [Dependency] private readonly CartridgeLoaderSystem? _cartridgeLoaderSystem = default!; + [Dependency] private readonly CartridgeLoaderSystem _cartridgeLoaderSystem = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly PopupSystem _popup = default!; [Dependency] private readonly IAdminLogManager _adminLogger = default!; - + [Dependency] private readonly GameTicker _ticker = default!; [Dependency] private readonly AccessReaderSystem _accessReader = default!; + [Dependency] private readonly StationRecordsSystem _stationRecords = default!; - + // TODO remove this. Dont store data on systems private readonly List _articles = new List(); public override void Initialize() @@ -103,45 +108,51 @@ private void OnReadUiMessage(EntityUid uid, NewsReadCartridgeComponent component if (message.Action == NewsReadUiAction.NotificationSwith) component.NotificationOn = !component.NotificationOn; - UpdateReadUi(uid, args.LoaderUid, component); + UpdateReadUi(uid, GetEntity(args.LoaderUid), component); } public void OnWriteUiShareMessage(EntityUid uid, NewsWriteComponent component, NewsWriteShareMessage msg) { - var article = msg.Article; + // dont blindly trust input from clients. + if (msg.Session.AttachedEntity is not {} author) + return; + + if (!_accessReader.FindAccessItemsInventory(author, out var items)) + return; - var author = msg.Session.AttachedEntity; - if (author.HasValue - && _accessReader.FindAccessItemsInventory(author.Value, out var items) - && _accessReader.FindStationRecordKeys(author.Value, out var stationRecordKeys, items)) + if (!_accessReader.FindStationRecordKeys(author, out var stationRecordKeys, items)) + return; + + string? authorName = null; + foreach (var item in items) { - article.AuthorStationRecordKeyIds = stationRecordKeys; + // ID Card + if (TryComp(item, out IdCardComponent? id)) + { + authorName = id.FullName; + break; + } - foreach (var item in items) + if (TryComp(item, out PdaComponent? pda) + && pda.ContainedId != null + && TryComp(pda.ContainedId, out id)) { - // ID Card - if (TryComp(item, out IdCardComponent? id)) - { - article.Author = id.FullName; - break; - } - // PDA - else if (TryComp(item, out PdaComponent? pda) - && pda.ContainedId != null - && TryComp(pda.ContainedId, out id)) - { - article.Author = id.FullName; - break; - } + authorName = id.FullName; + break; } } - _audio.PlayPvs(component.ConfirmSound, uid); + NewsArticle article = new NewsArticle + { + Author = authorName, + Name = (msg.Name.Length <= 25 ? msg.Name.Trim() : $"{msg.Name.Trim().Substring(0, 25)}..."), + Content = msg.Content, + ShareTime = _ticker.RoundDuration() - if (author != null) - _adminLogger.Add(LogType.Chat, LogImpact.Medium, $"{ToPrettyString(author.Value):actor} created news article {article.Name} by {article.Author}: {article.Content}"); - else - _adminLogger.Add(LogType.Chat, LogImpact.Medium, $"{msg.Session.Name:actor} created news article {article.Name}: {article.Content}"); + }; + + _audio.PlayPvs(component.ConfirmSound, uid); + _adminLogger.Add(LogType.Chat, LogImpact.Medium, $"{ToPrettyString(author):actor} created news article {article.Name} by {article.Author}: {article.Content}"); _articles.Add(article); component.ShareAvalible = false; @@ -192,18 +203,15 @@ private void NewsReadLeafArticle(NewsReadCartridgeComponent component, int leafD private void TryNotify() { - var query = EntityQueryEnumerator(); + var query = EntityQueryEnumerator(); - while (query.MoveNext(out var owner, out var comp, out var ringer)) + while (query.MoveNext(out var uid, out var comp, out var ringer, out var cont)) { - foreach (var app in comp.InstalledPrograms) - { - if (EntityManager.TryGetComponent(app, out var cartridge) && cartridge.NotificationOn) - { - _ringer.RingerPlayRingtone(owner, ringer); - break; - } - } + if (!_cartridgeLoaderSystem.HasProgram(uid, false, comp, cont)) + continue; + + _ringer.RingerPlayRingtone(uid, ringer); + break; } } @@ -232,7 +240,7 @@ private bool CheckDeleteAccess(NewsArticle articleToDelete, EntityUid device, En { if (EntityManager.TryGetComponent(device, out var accessReader) && user.HasValue && - _accessReader.IsAllowed(user.Value, accessReader)) + _accessReader.IsAllowed(user.Value, device, accessReader)) { return true; } @@ -242,9 +250,11 @@ private bool CheckDeleteAccess(NewsArticle articleToDelete, EntityUid device, En { return true; } + + var conv = _stationRecords.Convert(articleToDelete.AuthorStationRecordKeyIds); if (user.HasValue && _accessReader.FindStationRecordKeys(user.Value, out var recordKeys) - && recordKeys.Intersect(articleToDelete.AuthorStationRecordKeyIds).Any()) + && recordKeys.Intersect(conv).Any()) { return true; } diff --git a/Content.Server/Materials/MaterialReclaimerSystem.cs b/Content.Server/Materials/MaterialReclaimerSystem.cs index ff25b5354e8..fe6f9dcc9d6 100644 --- a/Content.Server/Materials/MaterialReclaimerSystem.cs +++ b/Content.Server/Materials/MaterialReclaimerSystem.cs @@ -5,7 +5,6 @@ using Content.Server.Fluids.EntitySystems; using Content.Server.GameTicking; using Content.Server.Nutrition.Components; -using Content.Server.Players; using Content.Server.Popups; using Content.Server.Power.Components; using Content.Server.Stack; @@ -17,6 +16,7 @@ using Content.Shared.Interaction; using Content.Shared.Interaction.Events; using Content.Shared.Materials; +using Content.Shared.Mind; using Robust.Server.GameObjects; using Robust.Shared.Player; using Robust.Shared.Utility; @@ -34,6 +34,7 @@ public sealed class MaterialReclaimerSystem : SharedMaterialReclaimerSystem [Dependency] private readonly SharedBodySystem _body = default!; //bobby [Dependency] private readonly PuddleSystem _puddle = default!; [Dependency] private readonly StackSystem _stack = default!; + [Dependency] private readonly SharedMindSystem _mind = default!; /// public override void Initialize() @@ -105,9 +106,9 @@ private void OnSuicide(EntityUid uid, MaterialReclaimerComponent component, Suic args.SetHandled(SuicideKind.Bloodloss); var victim = args.Victim; if (TryComp(victim, out ActorComponent? actor) && - actor.PlayerSession.ContentData()?.Mind is { } mind) + _mind.TryGetMind(actor.PlayerSession, out var mindId, out var mind)) { - _ticker.OnGhostAttempt(mind, false); + _ticker.OnGhostAttempt(mindId, false, mind: mind); if (mind.OwnedEntity is { Valid: true } entity) { _popup.PopupEntity(Loc.GetString("recycler-component-suicide-message"), entity); @@ -219,14 +220,16 @@ private void SpawnChemicalsFromComposition(EntityUid reclaimer, if (!Resolve(reclaimer, ref reclaimerComponent, ref xform)) return; - var overflow = new Solution(); - var totalChemicals = new Dictionary(); + efficiency *= reclaimerComponent.Efficiency; + + var totalChemicals = new Solution(); if (Resolve(item, ref composition, false)) { foreach (var (key, value) in composition.ChemicalComposition) { - totalChemicals[key] = totalChemicals.GetValueOrDefault(key) + value; + // TODO use ReagentQuantity + totalChemicals.AddReagent(key, value * efficiency, false); } } @@ -237,27 +240,15 @@ private void SpawnChemicalsFromComposition(EntityUid reclaimer, { foreach (var quantity in solution.Contents) { - totalChemicals[quantity.ReagentId] = - totalChemicals.GetValueOrDefault(quantity.ReagentId) + quantity.Quantity; + totalChemicals.AddReagent(quantity.Reagent.Prototype, quantity.Quantity * efficiency, false); } } } - foreach (var (reagent, amount) in totalChemicals) - { - var outputAmount = amount * efficiency * reclaimerComponent.Efficiency; - _solutionContainer.TryAddReagent(reclaimer, reclaimerComponent.OutputSolution, reagent, outputAmount, - out var accepted); - var overflowAmount = outputAmount - accepted; - if (overflowAmount > 0) - { - overflow.AddReagent(reagent, overflowAmount); - } - } - - if (overflow.Volume > 0) + _solutionContainer.TryTransferSolution(reclaimer, reclaimerComponent.OutputSolution, totalChemicals, totalChemicals.Volume); + if (totalChemicals.Volume > 0) { - _puddle.TrySpillAt(reclaimer, overflow, out _, transformComponent: xform); + _puddle.TrySpillAt(reclaimer, totalChemicals, out _, transformComponent: xform); } } } diff --git a/Content.Server/Materials/MaterialStorageSystem.cs b/Content.Server/Materials/MaterialStorageSystem.cs index f7029c96d26..b3626774c83 100644 --- a/Content.Server/Materials/MaterialStorageSystem.cs +++ b/Content.Server/Materials/MaterialStorageSystem.cs @@ -1,4 +1,5 @@ -using Content.Server.Administration.Logs; +using System.Linq; +using Content.Server.Administration.Logs; using Content.Shared.Materials; using Content.Shared.Popups; using Content.Shared.Stacks; @@ -129,4 +130,63 @@ public List SpawnMultipleFromMaterial(int amount, MaterialPrototype m overflowMaterial = amount - amountToSpawn * materialPerStack; return _stackSystem.SpawnMultiple(materialProto.StackEntity, amountToSpawn, coordinates); } + + /// + /// Eject a material out of this storage. The internal counts are updated. + /// Material that cannot be ejected stays in storage. (e.g. only have 50 but a sheet needs 100). + /// + /// The entity with storage to eject from. + /// The material prototype to eject. + /// The maximum amount to eject. If not given, as much as possible is ejected. + /// The position where to spawn the created sheets. If not given, they're spawned next to the entity. + /// The storage component on . Resolved automatically if not given. + /// The stack entities that were spawned. + public List EjectMaterial( + EntityUid entity, + string material, + int? maxAmount = null, + EntityCoordinates? coordinates = null, + MaterialStorageComponent? component = null) + { + if (!Resolve(entity, ref component)) + return new List(); + + coordinates ??= Transform(entity).Coordinates; + + var amount = GetMaterialAmount(entity, material, component); + if (maxAmount != null) + amount = Math.Min(maxAmount.Value, amount); + + var spawned = SpawnMultipleFromMaterial(amount, material, coordinates.Value, out var overflow); + + TryChangeMaterialAmount(entity, material, -(amount - overflow), component); + return spawned; + } + + /// + /// Eject all material stored in an entity, with the same mechanics as . + /// + /// The entity with storage to eject from. + /// The position where to spawn the created sheets. If not given, they're spawned next to the entity. + /// The storage component on . Resolved automatically if not given. + /// The stack entities that were spawned. + public List EjectAllMaterial( + EntityUid entity, + EntityCoordinates? coordinates = null, + MaterialStorageComponent? component = null) + { + if (!Resolve(entity, ref component)) + return new List(); + + coordinates ??= Transform(entity).Coordinates; + + var allSpawned = new List(); + foreach (var material in component.Storage.Keys.ToArray()) + { + var spawned = EjectMaterial(entity, material, null, coordinates, component); + allSpawned.AddRange(spawned); + } + + return allSpawned; + } } diff --git a/Content.Server/Mech/Components/MechAirComponent.cs b/Content.Server/Mech/Components/MechAirComponent.cs index e30a5af80e2..7e989f6481a 100644 --- a/Content.Server/Mech/Components/MechAirComponent.cs +++ b/Content.Server/Mech/Components/MechAirComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Mech.Components; [RegisterComponent] -public sealed class MechAirComponent : Component +public sealed partial class MechAirComponent : Component { //TODO: this doesn't support a tank implant for mechs or anything like that [ViewVariables(VVAccess.ReadWrite)] diff --git a/Content.Server/Mech/Components/MechAirFilterComponent.cs b/Content.Server/Mech/Components/MechAirFilterComponent.cs new file mode 100644 index 00000000000..d35b4af471f --- /dev/null +++ b/Content.Server/Mech/Components/MechAirFilterComponent.cs @@ -0,0 +1,22 @@ +using Content.Shared.Atmos; + +namespace Content.Server.Mech.Components; + +/// +/// This is basically a reverse scrubber for MechAir +/// +[RegisterComponent] +public sealed partial class MechAirFilterComponent : Component +{ + /// + /// Gases that will be filtered out of internal air + /// + [DataField("gases", required: true)] + public HashSet Gases = new(); + + /// + /// Target volume to transfer every second. + /// + [DataField("transferRate")] + public float TransferRate = MechAirComponent.GasMixVolume * 0.1f; +} diff --git a/Content.Server/Mech/Components/MechAirIntakeComponent.cs b/Content.Server/Mech/Components/MechAirIntakeComponent.cs new file mode 100644 index 00000000000..7b3a84c66ba --- /dev/null +++ b/Content.Server/Mech/Components/MechAirIntakeComponent.cs @@ -0,0 +1,28 @@ +using Content.Shared.Atmos; + +namespace Content.Server.Mech.Components; + +/// +/// This is basically a siphon vent for mech but not using pump vent component because MechAir bad +/// +[RegisterComponent] +public sealed partial class MechAirIntakeComponent : Component +{ + /// + /// Target pressure change for a single atmos tick + /// + [DataField("targetPressureChange")] + public float TargetPressureChange = 5f; + + /// + /// How strong the intake pump is, it will be able to replenish air from lower pressure areas. + /// + [DataField("pumpPower")] + public float PumpPower = 2f; + + /// + /// Pressure to intake gases up to, maintains MechAir pressure. + /// + [DataField("pressure")] + public float Pressure = Atmospherics.OneAtmosphere; +} diff --git a/Content.Server/Mech/Components/MechAssemblyComponent.cs b/Content.Server/Mech/Components/MechAssemblyComponent.cs index 2d99957a313..2d352cbf15c 100644 --- a/Content.Server/Mech/Components/MechAssemblyComponent.cs +++ b/Content.Server/Mech/Components/MechAssemblyComponent.cs @@ -18,7 +18,7 @@ namespace Content.Server.Mech.Components; /// done via /// [RegisterComponent] -public sealed class MechAssemblyComponent : Component +public sealed partial class MechAssemblyComponent : Component { /// /// The parts needed to be placed within the assembly, diff --git a/Content.Server/Mech/Equipment/Components/MechGrabberComponent.cs b/Content.Server/Mech/Equipment/Components/MechGrabberComponent.cs index 6b3cceaafeb..1424f880f36 100644 --- a/Content.Server/Mech/Equipment/Components/MechGrabberComponent.cs +++ b/Content.Server/Mech/Equipment/Components/MechGrabberComponent.cs @@ -10,7 +10,7 @@ namespace Content.Server.Mech.Equipment.Components; /// inside of a container so large objects can be moved. /// [RegisterComponent] -public sealed class MechGrabberComponent : Component +public sealed partial class MechGrabberComponent : Component { /// /// The change in energy after each grab. diff --git a/Content.Server/Mech/Equipment/EntitySystems/MechGrabberSystem.cs b/Content.Server/Mech/Equipment/EntitySystems/MechGrabberSystem.cs index 84f60573b17..499f833ac83 100644 --- a/Content.Server/Mech/Equipment/EntitySystems/MechGrabberSystem.cs +++ b/Content.Server/Mech/Equipment/EntitySystems/MechGrabberSystem.cs @@ -56,10 +56,12 @@ private void OnGrabberMessage(EntityUid uid, MechGrabberComponent component, Mec if (!_interaction.InRangeUnobstructed(mech, targetCoords)) return; - if (!component.ItemContainer.Contains(msg.Item)) + var item = GetEntity(msg.Item); + + if (!component.ItemContainer.Contains(item)) return; - RemoveItem(uid, mech, msg.Item, component); + RemoveItem(uid, mech, item, component); } /// @@ -77,11 +79,11 @@ public void RemoveItem(EntityUid uid, EntityUid mech, EntityUid toRemove, MechGr component.ItemContainer.Remove(toRemove); var mechxform = Transform(mech); var xform = Transform(toRemove); - xform.AttachToGridOrMap(); + _transform.AttachToGridOrMap(toRemove, xform); + var (mechPos, mechRot) = _transform.GetWorldPositionRotation(mechxform); - var offset = _transform.GetWorldPosition(mechxform) + _transform.GetWorldRotation(mechxform).RotateVec(component.DepositOffset); - _transform.SetWorldPosition(xform, offset); - _transform.SetWorldRotation(xform, Angle.Zero); + var offset = mechPos + mechRot.RotateVec(component.DepositOffset); + _transform.SetWorldPositionRotation(xform, offset, Angle.Zero); _mech.UpdateUserInterface(mech); } @@ -113,10 +115,10 @@ private void OnUiStateReady(EntityUid uid, MechGrabberComponent component, MechE { var state = new MechGrabberUiState { - Contents = component.ItemContainer.ContainedEntities.ToList(), + Contents = GetNetEntityList(component.ItemContainer.ContainedEntities.ToList()), MaxContents = component.MaxContents }; - args.States.Add(uid, state); + args.States.Add(GetNetEntity(uid), state); } private void OnInteract(EntityUid uid, MechGrabberComponent component, InteractNoHandEvent args) @@ -148,7 +150,7 @@ private void OnInteract(EntityUid uid, MechGrabberComponent component, InteractN args.Handled = true; component.AudioStream = _audio.PlayPvs(component.GrabSound, uid); - _doAfter.TryStartDoAfter(new DoAfterArgs(args.User, component.GrabDelay, new GrabberDoAfterEvent(), uid, target: target, used: uid) + _doAfter.TryStartDoAfter(new DoAfterArgs(EntityManager, args.User, component.GrabDelay, new GrabberDoAfterEvent(), uid, target: target, used: uid) { BreakOnTargetMove = true, BreakOnUserMove = true diff --git a/Content.Server/Mech/Systems/MechEquipmentSystem.cs b/Content.Server/Mech/Systems/MechEquipmentSystem.cs index 71b31b6f300..5191f53004e 100644 --- a/Content.Server/Mech/Systems/MechEquipmentSystem.cs +++ b/Content.Server/Mech/Systems/MechEquipmentSystem.cs @@ -45,7 +45,7 @@ private void OnUsed(EntityUid uid, MechEquipmentComponent component, AfterIntera _popup.PopupEntity(Loc.GetString("mech-equipment-begin-install", ("item", uid)), mech); - var doAfterEventArgs = new DoAfterArgs(args.User, component.InstallDuration, new InsertEquipmentEvent(), uid, target: mech, used: uid) + var doAfterEventArgs = new DoAfterArgs(EntityManager, args.User, component.InstallDuration, new InsertEquipmentEvent(), uid, target: mech, used: uid) { BreakOnTargetMove = true, BreakOnUserMove = true diff --git a/Content.Server/Mech/Systems/MechSystem.Filtering.cs b/Content.Server/Mech/Systems/MechSystem.Filtering.cs new file mode 100644 index 00000000000..930a2afbd15 --- /dev/null +++ b/Content.Server/Mech/Systems/MechSystem.Filtering.cs @@ -0,0 +1,81 @@ +using Content.Server.Atmos; +using Content.Server.Atmos.Piping.Components; +using Content.Server.Mech.Components; +using Content.Shared.Atmos; +using Content.Shared.Mech.Components; +using Robust.Shared.GameObjects; + +namespace Content.Server.Mech.Systems; + +// TODO: this could be reused for gasmask or something if MechAir wasnt a thing +public sealed partial class MechSystem +{ + [Dependency] private readonly SharedTransformSystem _transform = default!; + + private void InitializeFiltering() + { + SubscribeLocalEvent(OnIntakeUpdate); + SubscribeLocalEvent(OnFilterUpdate); + } + + private void OnIntakeUpdate(EntityUid uid, MechAirIntakeComponent intake, AtmosDeviceUpdateEvent args) + { + if (!TryComp(uid, out var mech) || !mech.Airtight || !TryComp(uid, out var mechAir)) + return; + + // if the mech is filled there is nothing to do + if (mechAir.Air.Pressure >= intake.Pressure) + return; + + var environment = _atmosphere.GetContainingMixture(uid, true, true); + // nothing to intake from + if (environment == null) + return; + + // absolute maximum pressure change + var pressureDelta = args.dt * intake.TargetPressureChange; + pressureDelta = MathF.Min(pressureDelta, intake.Pressure - mechAir.Air.Pressure); + if (pressureDelta <= 0) + return; + + // how many moles to transfer to change internal pressure by pressureDelta + // ignores temperature difference because lazy + var transferMoles = pressureDelta * mechAir.Air.Volume / (environment.Temperature * Atmospherics.R); + _atmosphere.Merge(mechAir.Air, environment.Remove(transferMoles)); + } + + private void OnFilterUpdate(EntityUid uid, MechAirFilterComponent filter, AtmosDeviceUpdateEvent args) + { + if (!TryComp(uid, out var mech) || !mech.Airtight || !TryComp(uid, out var mechAir)) + return; + + var ratio = MathF.Min(1f, args.dt * filter.TransferRate / mechAir.Air.Volume); + var removed = mechAir.Air.RemoveRatio(ratio); + // nothing left to remove from the mech + if (MathHelper.CloseToPercent(removed.TotalMoles, 0f)) + return; + + + var coordinates = Transform(uid).MapPosition; + GasMixture? destination = null; + if (_map.TryFindGridAt(coordinates, out _, out var grid)) + { + var tile = grid.GetTileRef(coordinates); + destination = _atmosphere.GetTileMixture(tile.GridUid, null, tile.GridIndices, true); + } + + if (destination != null) + { + _atmosphere.ScrubInto(removed, destination, filter.Gases); + } + else + { + // filtering into space/planet so just discard them + foreach (var gas in filter.Gases) + { + removed.SetMoles(gas, 0f); + } + } + _atmosphere.Merge(mechAir.Air, removed); + } +} diff --git a/Content.Server/Mech/Systems/MechSystem.cs b/Content.Server/Mech/Systems/MechSystem.cs index 37c9db2b0a1..8c34f875bfe 100644 --- a/Content.Server/Mech/Systems/MechSystem.cs +++ b/Content.Server/Mech/Systems/MechSystem.cs @@ -24,17 +24,17 @@ namespace Content.Server.Mech.Systems; /// -public sealed class MechSystem : SharedMechSystem +public sealed partial class MechSystem : SharedMechSystem { + [Dependency] private readonly ActionBlockerSystem _actionBlocker = default!; [Dependency] private readonly AtmosphereSystem _atmosphere = default!; + [Dependency] private readonly BatterySystem _battery = default!; [Dependency] private readonly ContainerSystem _container = default!; [Dependency] private readonly DamageableSystem _damageable = default!; - [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; [Dependency] private readonly IMapManager _map = default!; - [Dependency] private readonly UserInterfaceSystem _ui = default!; - [Dependency] private readonly ActionBlockerSystem _actionBlocker = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; - [Dependency] private readonly BatterySystem _batterySystem = default!; + [Dependency] private readonly UserInterfaceSystem _ui = default!; private ISawmill _sawmill = default!; @@ -45,6 +45,8 @@ public override void Initialize() _sawmill = Logger.GetSawmill("mech"); + InitializeFiltering(); + SubscribeLocalEvent(OnInteractUsing); SubscribeLocalEvent(OnInsertBattery); SubscribeLocalEvent(OnMapInit); @@ -91,7 +93,7 @@ private void OnInteractUsing(EntityUid uid, MechComponent component, InteractUsi if (TryComp(args.Used, out var tool) && tool.Qualities.Contains("Prying") && component.BatterySlot.ContainedEntity != null) { - var doAfterEventArgs = new DoAfterArgs(args.User, component.BatteryRemovalDelay, new RemoveBatteryEvent(), uid, target: uid, used: args.Target) + var doAfterEventArgs = new DoAfterArgs(EntityManager, args.User, component.BatteryRemovalDelay, new RemoveBatteryEvent(), uid, target: uid, used: args.Target) { BreakOnTargetMove = true, BreakOnUserMove = true, @@ -127,11 +129,14 @@ private void OnRemoveBattery(EntityUid uid, MechComponent component, RemoveBatte private void OnMapInit(EntityUid uid, MechComponent component, MapInitEvent args) { var xform = Transform(uid); - foreach (var ent in component.StartingEquipment.Select(equipment => Spawn(equipment, xform.Coordinates))) + // TODO: this should use containerfill? + foreach (var equipment in component.StartingEquipment) { + var ent = Spawn(equipment, xform.Coordinates); InsertEquipment(uid, ent, component); } + // TODO: this should just be damage and battery component.Integrity = component.MaxIntegrity; component.Energy = component.MaxEnergy; @@ -141,13 +146,15 @@ private void OnMapInit(EntityUid uid, MechComponent component, MapInitEvent args private void OnRemoveEquipmentMessage(EntityUid uid, MechComponent component, MechEquipmentRemoveMessage args) { - if (!Exists(args.Equipment) || Deleted(args.Equipment)) + var equip = GetEntity(args.Equipment); + + if (!Exists(equip) || Deleted(equip)) return; - if (!component.EquipmentContainer.ContainedEntities.Contains(args.Equipment)) + if (!component.EquipmentContainer.ContainedEntities.Contains(equip)) return; - RemoveEquipment(uid, args.Equipment, component); + RemoveEquipment(uid, equip, component); } private void OnOpenUi(EntityUid uid, MechComponent component, MechOpenUiEvent args) @@ -174,7 +181,7 @@ private void OnAlternativeVerb(EntityUid uid, MechComponent component, GetVerbsE Text = Loc.GetString("mech-verb-enter"), Act = () => { - var doAfterEventArgs = new DoAfterArgs(args.User, component.EntryDelay, new MechEntryEvent(), uid, target: uid) + var doAfterEventArgs = new DoAfterArgs(EntityManager, args.User, component.EntryDelay, new MechEntryEvent(), uid, target: uid) { BreakOnUserMove = true, }; @@ -204,7 +211,7 @@ private void OnAlternativeVerb(EntityUid uid, MechComponent component, GetVerbsE return; } - var doAfterEventArgs = new DoAfterArgs(args.User, component.ExitDelay, new MechExitEvent(), uid, target: uid) + var doAfterEventArgs = new DoAfterArgs(EntityManager, args.User, component.ExitDelay, new MechExitEvent(), uid, target: uid) { BreakOnUserMove = true, BreakOnTargetMove = true, @@ -277,9 +284,11 @@ private void ReceiveEquipmentUiMesssages(EntityUid uid, MechComponent compone { var ev = new MechEquipmentUiMessageRelayEvent(args); var allEquipment = new List(component.EquipmentContainer.ContainedEntities); + var argEquip = GetEntity(args.Equipment); + foreach (var equipment in allEquipment) { - if (args.Equipment == equipment) + if (argEquip == equipment) RaiseLocalEvent(equipment, ev); } } @@ -302,57 +311,7 @@ public override void UpdateUserInterface(EntityUid uid, MechComponent? component EquipmentStates = ev.States }; var ui = _ui.GetUi(uid, MechUiKey.Key); - UserInterfaceSystem.SetUiState(ui, state); - } - - public override bool TryInsert(EntityUid uid, EntityUid? toInsert, MechComponent? component = null) - { - if (!Resolve(uid, ref component)) - return false; - - if (!base.TryInsert(uid, toInsert, component)) - return false; - - if (component.Airtight && TryComp(uid, out MechAirComponent? mechAir)) - { - var coordinates = Transform(uid).MapPosition; - if (_map.TryFindGridAt(coordinates, out _, out var grid)) - { - var tile = grid.GetTileRef(coordinates); - - if (_atmosphere.GetTileMixture(tile.GridUid, null, tile.GridIndices, true) is { } environment) - { - _atmosphere.Merge(mechAir.Air, environment.RemoveVolume(MechAirComponent.GasMixVolume)); - } - } - } - return true; - } - - public override bool TryEject(EntityUid uid, MechComponent? component = null) - { - if (!Resolve(uid, ref component)) - return false; - - if (!base.TryEject(uid, component)) - return false; - - if (component.Airtight && TryComp(uid, out MechAirComponent? mechAir)) - { - var coordinates = Transform(uid).MapPosition; - if (_map.TryFindGridAt(coordinates, out _, out var grid)) - { - var tile = grid.GetTileRef(coordinates); - - if (_atmosphere.GetTileMixture(tile.GridUid, null, tile.GridIndices, true) is { } environment) - { - _atmosphere.Merge(environment, mechAir.Air); - mechAir.Air.Clear(); - } - } - } - - return true; + _ui.SetUiState(ui, state); } public override void BreakMech(EntityUid uid, MechComponent? component = null) @@ -378,7 +337,7 @@ public override bool TryChangeEnergy(EntityUid uid, FixedPoint2 delta, MechCompo if (!TryComp(battery, out var batteryComp)) return false; - _batterySystem.SetCharge(battery!.Value, batteryComp.CurrentCharge + delta.Float(), batteryComp); + _battery.SetCharge(battery!.Value, batteryComp.CurrentCharge + delta.Float(), batteryComp); if (batteryComp.CurrentCharge != component.Energy) //if there's a discrepency, we have to resync them { _sawmill.Debug($"Battery charge was not equal to mech charge. Battery {batteryComp.CurrentCharge}. Mech {component.Energy}"); diff --git a/Content.Server/Medical/BiomassReclaimer/ActiveBiomassReclaimerComponent.cs b/Content.Server/Medical/BiomassReclaimer/ActiveBiomassReclaimerComponent.cs index 9e57f38d948..fffe2fdcfd6 100644 --- a/Content.Server/Medical/BiomassReclaimer/ActiveBiomassReclaimerComponent.cs +++ b/Content.Server/Medical/BiomassReclaimer/ActiveBiomassReclaimerComponent.cs @@ -1,6 +1,6 @@ namespace Content.Server.Medical.BiomassReclaimer { [RegisterComponent] - public sealed class ActiveBiomassReclaimerComponent : Component + public sealed partial class ActiveBiomassReclaimerComponent : Component {} } diff --git a/Content.Server/Medical/BiomassReclaimer/BiomassReclaimerComponent.cs b/Content.Server/Medical/BiomassReclaimer/BiomassReclaimerComponent.cs index 4281aacc52f..744f579af04 100644 --- a/Content.Server/Medical/BiomassReclaimer/BiomassReclaimerComponent.cs +++ b/Content.Server/Medical/BiomassReclaimer/BiomassReclaimerComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Medical.BiomassReclaimer { [RegisterComponent] - public sealed class BiomassReclaimerComponent : Component + public sealed partial class BiomassReclaimerComponent : Component { /// /// This gets set for each mob it processes. diff --git a/Content.Server/Medical/BiomassReclaimer/BiomassReclaimerSystem.cs b/Content.Server/Medical/BiomassReclaimer/BiomassReclaimerSystem.cs index 18d1d009f44..40637c5362b 100644 --- a/Content.Server/Medical/BiomassReclaimer/BiomassReclaimerSystem.cs +++ b/Content.Server/Medical/BiomassReclaimer/BiomassReclaimerSystem.cs @@ -1,32 +1,32 @@ using System.Numerics; -using Content.Shared.Interaction; -using Content.Shared.Audio; -using Content.Shared.Jittering; -using Content.Shared.Chemistry.Components; -using Content.Shared.Throwing; -using Content.Shared.Construction.Components; -using Content.Shared.Nutrition.Components; -using Content.Shared.Administration.Logs; -using Content.Shared.CCVar; -using Content.Shared.Database; -using Content.Server.Power.Components; -using Content.Server.Fluids.EntitySystems; using Content.Server.Body.Components; using Content.Server.Climbing; using Content.Server.Construction; +using Content.Server.Fluids.EntitySystems; using Content.Server.Materials; -using Content.Server.Mind.Components; +using Content.Server.Power.Components; +using Content.Shared.Administration.Logs; +using Content.Shared.Audio; +using Content.Shared.CCVar; +using Content.Shared.Chemistry.Components; +using Content.Shared.Construction.Components; +using Content.Shared.Database; using Content.Shared.DoAfter; using Content.Shared.Humanoid; +using Content.Shared.Interaction; using Content.Shared.Interaction.Events; +using Content.Shared.Jittering; +using Content.Shared.Medical; +using Content.Shared.Mind; using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; +using Content.Shared.Nutrition.Components; using Content.Shared.Popups; -using Robust.Shared.Random; -using Robust.Shared.Configuration; +using Content.Shared.Throwing; using Robust.Server.Player; +using Robust.Shared.Configuration; using Robust.Shared.Physics.Components; -using Content.Shared.Medical; +using Robust.Shared.Random; namespace Content.Server.Medical.BiomassReclaimer { @@ -45,6 +45,7 @@ public sealed class BiomassReclaimerSystem : EntitySystem [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly MaterialStorageSystem _material = default!; + [Dependency] private readonly SharedMindSystem _minds = default!; public override void Update(float frameTime) { @@ -151,7 +152,7 @@ private void OnAfterInteractUsing(EntityUid uid, BiomassReclaimerComponent compo if (!HasComp(args.Used) || !CanGib(uid, args.Used, component)) return; - _doAfterSystem.TryStartDoAfter(new DoAfterArgs(args.User, 7f, new ReclaimerDoAfterEvent(), uid, target: args.Target, used: args.Used) + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, args.User, 7f, new ReclaimerDoAfterEvent(), uid, target: args.Target, used: args.Used) { BreakOnTargetMove = true, BreakOnUserMove = true, @@ -244,9 +245,9 @@ private bool CanGib(EntityUid uid, EntityUid dragged, BiomassReclaimerComponent // Reject souled bodies in easy mode. if (_configManager.GetCVar(CCVars.BiomassEasyMode) && HasComp(dragged) && - TryComp(dragged, out var mindComp)) + _minds.TryGetMind(dragged, out _, out var mind)) { - if (mindComp.Mind?.UserId != null && _playerManager.TryGetSessionById(mindComp.Mind.UserId.Value, out _)) + if (mind.UserId != null && _playerManager.TryGetSessionById(mind.UserId.Value, out _)) return false; } diff --git a/Content.Server/Medical/Components/CryoPodAirComponent.cs b/Content.Server/Medical/Components/CryoPodAirComponent.cs index cc5416a4d20..baaa3bcda0e 100644 --- a/Content.Server/Medical/Components/CryoPodAirComponent.cs +++ b/Content.Server/Medical/Components/CryoPodAirComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Medical.Components; [RegisterComponent] -public sealed class CryoPodAirComponent : Component +public sealed partial class CryoPodAirComponent : Component { /// /// Local air buffer that will be mixed with the pipenet, if one exists, per tick. diff --git a/Content.Server/Medical/Components/HealingComponent.cs b/Content.Server/Medical/Components/HealingComponent.cs index 22d1f9a7e06..a56bc171432 100644 --- a/Content.Server/Medical/Components/HealingComponent.cs +++ b/Content.Server/Medical/Components/HealingComponent.cs @@ -9,7 +9,7 @@ namespace Content.Server.Medical.Components /// Applies a damage change to the target when used in an interaction. /// [RegisterComponent] - public sealed class HealingComponent : Component + public sealed partial class HealingComponent : Component { [DataField("damage", required: true)] [ViewVariables(VVAccess.ReadWrite)] diff --git a/Content.Server/Medical/Components/HealthAnalyzerComponent.cs b/Content.Server/Medical/Components/HealthAnalyzerComponent.cs index 788db33fd73..4b0bb5ff1fb 100644 --- a/Content.Server/Medical/Components/HealthAnalyzerComponent.cs +++ b/Content.Server/Medical/Components/HealthAnalyzerComponent.cs @@ -9,7 +9,7 @@ namespace Content.Server.Medical.Components /// After scanning, retrieves the target Uid to use with its related UI. /// [RegisterComponent] - public sealed class HealthAnalyzerComponent : Component + public sealed partial class HealthAnalyzerComponent : Component { /// /// How long it takes to scan someone. @@ -17,7 +17,7 @@ public sealed class HealthAnalyzerComponent : Component [DataField("scanDelay")] public float ScanDelay = 0.8f; - public BoundUserInterface? UserInterface => Owner.GetUIOrNull(HealthAnalyzerUiKey.Key); + public PlayerBoundUserInterface? UserInterface => Owner.GetUIOrNull(HealthAnalyzerUiKey.Key); /// /// Sound played on scanning begin diff --git a/Content.Server/Medical/Components/MedicalScannerComponent.cs b/Content.Server/Medical/Components/MedicalScannerComponent.cs index fd351c68043..fdfb19cbacd 100644 --- a/Content.Server/Medical/Components/MedicalScannerComponent.cs +++ b/Content.Server/Medical/Components/MedicalScannerComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Medical.Components { [RegisterComponent] - public sealed class MedicalScannerComponent : SharedMedicalScannerComponent + public sealed partial class MedicalScannerComponent : SharedMedicalScannerComponent { public const string ScannerPort = "MedicalScannerReceiver"; public ContainerSlot BodyContainer = default!; diff --git a/Content.Server/Medical/CrewMonitoring/CrewMonitoringConsoleComponent.cs b/Content.Server/Medical/CrewMonitoring/CrewMonitoringConsoleComponent.cs index 2ef369bf101..7aaa2ef368f 100644 --- a/Content.Server/Medical/CrewMonitoring/CrewMonitoringConsoleComponent.cs +++ b/Content.Server/Medical/CrewMonitoring/CrewMonitoringConsoleComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Medical.CrewMonitoring { [RegisterComponent] [Access(typeof(CrewMonitoringConsoleSystem))] - public sealed class CrewMonitoringConsoleComponent : Component + public sealed partial class CrewMonitoringConsoleComponent : Component { /// /// List of all currently connected sensors to this console. diff --git a/Content.Server/Medical/CrewMonitoring/CrewMonitoringConsoleSystem.cs b/Content.Server/Medical/CrewMonitoring/CrewMonitoringConsoleSystem.cs index 3b73ce80c48..ed650704361 100644 --- a/Content.Server/Medical/CrewMonitoring/CrewMonitoringConsoleSystem.cs +++ b/Content.Server/Medical/CrewMonitoring/CrewMonitoringConsoleSystem.cs @@ -59,7 +59,7 @@ private void UpdateUserInterface(EntityUid uid, CrewMonitoringConsoleComponent? // update all sensors info var allSensors = component.ConnectedSensors.Values.ToList(); - UserInterfaceSystem.SetUiState(bui, new CrewMonitoringState(allSensors, component.Snap, component.Precision)); + _uiSystem.SetUiState(bui, new CrewMonitoringState(allSensors, component.Snap, component.Precision)); } } } diff --git a/Content.Server/Medical/CrewMonitoring/CrewMonitoringServerComponent.cs b/Content.Server/Medical/CrewMonitoring/CrewMonitoringServerComponent.cs index 3a73f4d0b42..0d95cc48c7e 100644 --- a/Content.Server/Medical/CrewMonitoring/CrewMonitoringServerComponent.cs +++ b/Content.Server/Medical/CrewMonitoring/CrewMonitoringServerComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.Medical.CrewMonitoring; [RegisterComponent] [Access(typeof(CrewMonitoringServerSystem))] -public sealed class CrewMonitoringServerComponent : Component +public sealed partial class CrewMonitoringServerComponent : Component { /// diff --git a/Content.Server/Medical/CryoPodEjectLockWireAction.cs b/Content.Server/Medical/CryoPodEjectLockWireAction.cs index 93c6a49aa93..6fbf9eb2501 100644 --- a/Content.Server/Medical/CryoPodEjectLockWireAction.cs +++ b/Content.Server/Medical/CryoPodEjectLockWireAction.cs @@ -8,7 +8,7 @@ namespace Content.Server.Medical; /// /// Causes a failure in the cryo pod ejection system when cut. A crowbar will be needed to pry open the pod. /// -public sealed class CryoPodEjectLockWireAction: ComponentWireAction +public sealed partial class CryoPodEjectLockWireAction: ComponentWireAction { public override Color Color { get; set; } = Color.Red; public override string Name { get; set; } = "wire-name-lock"; diff --git a/Content.Server/Medical/CryoPodSystem.cs b/Content.Server/Medical/CryoPodSystem.cs index 57f1799fad1..ddd29d26a2c 100644 --- a/Content.Server/Medical/CryoPodSystem.cs +++ b/Content.Server/Medical/CryoPodSystem.cs @@ -134,7 +134,7 @@ private void HandleDragDropOn(EntityUid uid, CryoPodComponent cryoPodComponent, if (cryoPodComponent.BodyContainer.ContainedEntity != null) return; - var doAfterArgs = new DoAfterArgs(args.User, cryoPodComponent.EntryDelay, new CryoPodDragFinished(), uid, target: args.Dragged, used: uid) + var doAfterArgs = new DoAfterArgs(EntityManager, args.User, cryoPodComponent.EntryDelay, new CryoPodDragFinished(), uid, target: args.Dragged, used: uid) { BreakOnDamage = true, BreakOnTargetMove = true, @@ -184,8 +184,8 @@ private void OnActivateUI(EntityUid uid, CryoPodComponent cryoPodComponent, Afte _userInterfaceSystem.TrySendUiMessage( uid, HealthAnalyzerUiKey.Key, - new HealthAnalyzerScannedUserMessage(cryoPodComponent.BodyContainer.ContainedEntity, - temp != null ? temp.CurrentTemperature : 0, bloodstream != null ? bloodstream.BloodSolution.FillFraction : 0)); + new HealthAnalyzerScannedUserMessage(GetNetEntity(cryoPodComponent.BodyContainer.ContainedEntity), + temp?.CurrentTemperature ?? 0, bloodstream != null ? bloodstream.BloodSolution.FillFraction : 0)); } private void OnInteractUsing(EntityUid uid, CryoPodComponent cryoPodComponent, InteractUsingEvent args) diff --git a/Content.Server/Medical/DefibrillatorSystem.cs b/Content.Server/Medical/DefibrillatorSystem.cs index 5e4e3ca0f20..d80d8bdb650 100644 --- a/Content.Server/Medical/DefibrillatorSystem.cs +++ b/Content.Server/Medical/DefibrillatorSystem.cs @@ -4,8 +4,6 @@ using Content.Server.Electrocution; using Content.Server.EUI; using Content.Server.Ghost; -using Content.Server.Mind; -using Content.Server.Mind.Components; using Content.Server.Popups; using Content.Server.PowerCell; using Content.Shared.Damage; @@ -14,12 +12,13 @@ using Content.Shared.Interaction.Components; using Content.Shared.Interaction.Events; using Content.Shared.Medical; +using Content.Shared.Mind; using Content.Shared.Mobs; using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; using Content.Shared.Timing; using Content.Shared.Toggleable; -using Robust.Server.Player; +using Robust.Shared.Players; using Robust.Shared.Timing; namespace Content.Server.Medical; @@ -43,7 +42,7 @@ public sealed class DefibrillatorSystem : EntitySystem [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly UseDelaySystem _useDelay = default!; - [Dependency] private readonly MindSystem _mind = default!; + [Dependency] private readonly SharedMindSystem _mind = default!; /// public override void Initialize() @@ -178,7 +177,7 @@ public bool TryStartZap(EntityUid uid, EntityUid target, EntityUid user, Defibri return false; _audio.PlayPvs(component.ChargeSound, uid); - return _doAfter.TryStartDoAfter(new DoAfterArgs(user, component.DoAfterDuration, new DefibrillatorZapDoAfterEvent(), + return _doAfter.TryStartDoAfter(new DoAfterArgs(EntityManager, user, component.DoAfterDuration, new DefibrillatorZapDoAfterEvent(), uid, target, uid) { BlockDuplicate = true, @@ -209,7 +208,7 @@ public void Zap(EntityUid uid, EntityUid target, EntityUid user, DefibrillatorCo component.NextZapTime = _timing.CurTime + component.ZapDelay; _appearance.SetData(uid, DefibrillatorVisuals.Ready, false); - IPlayerSession? session = null; + ICommonSession? session = null; if (_rotting.IsRotten(target)) { @@ -224,16 +223,16 @@ public void Zap(EntityUid uid, EntityUid target, EntityUid user, DefibrillatorCo _mobState.ChangeMobState(target, MobState.Critical, mob, uid); _mobThreshold.SetAllowRevives(target, false, thresholds); - if (TryComp(target, out var mindComp) && - mindComp.Mind?.Session is { } playerSession) + if (_mind.TryGetMind(target, out var mindId, out var mind) && + mind.Session is { } playerSession) { session = playerSession; // notify them they're being revived. - if (mindComp.Mind.CurrentEntity != target) + if (mind.CurrentEntity != target) { _chatManager.TrySendInGameICMessage(uid, Loc.GetString("defibrillator-ghosted"), InGameICChatType.Speak, true); - _euiManager.OpenEui(new ReturnToBodyEui(mindComp.Mind, _mind), session); + _euiManager.OpenEui(new ReturnToBodyEui(mind, _mind), session); } } else diff --git a/Content.Server/Medical/HealingSystem.cs b/Content.Server/Medical/HealingSystem.cs index 9dbc4048928..2e04e1b03cb 100644 --- a/Content.Server/Medical/HealingSystem.cs +++ b/Content.Server/Medical/HealingSystem.cs @@ -84,10 +84,18 @@ component.DamageContainerID is not null && var total = healed?.Total ?? FixedPoint2.Zero; // Re-verify that we can heal the damage. - _stacks.Use(args.Used.Value, 1); - if (_stacks.GetCount(args.Used.Value) <= 0) - dontRepeat = true; + if (TryComp(args.Used.Value, out var stackComp)) + { + _stacks.Use(args.Used.Value, 1, stackComp); + + if (_stacks.GetCount(args.Used.Value, stackComp) <= 0) + dontRepeat = true; + } + else + { + QueueDel(args.Used.Value); + } if (uid != args.User) { @@ -157,7 +165,7 @@ targetDamage.DamageContainerID is not null && if (user != target && !_interactionSystem.InRangeUnobstructed(user, target, popup: true)) return false; - if (!TryComp(uid, out var stack) || stack.Count < 1) + if (TryComp(uid, out var stack) && stack.Count < 1) return false; if (!TryComp(target, out var bloodstream)) @@ -179,7 +187,7 @@ targetDamage.DamageContainerID is not null && : component.Delay * GetScaledHealingPenalty(user, component); var doAfterEventArgs = - new DoAfterArgs(user, delay, new HealingDoAfterEvent(), target, target: target, used: uid) + new DoAfterArgs(EntityManager, user, delay, new HealingDoAfterEvent(), target, target: target, used: uid) { //Raise the event on the target if it's not self, otherwise raise it on self. BreakOnUserMove = true, diff --git a/Content.Server/Medical/HealthAnalyzerSystem.cs b/Content.Server/Medical/HealthAnalyzerSystem.cs index 7e07e4ac976..79d55e8068c 100644 --- a/Content.Server/Medical/HealthAnalyzerSystem.cs +++ b/Content.Server/Medical/HealthAnalyzerSystem.cs @@ -32,7 +32,7 @@ private void OnAfterInteract(EntityUid uid, HealthAnalyzerComponent healthAnalyz _audio.PlayPvs(healthAnalyzer.ScanningBeginSound, uid); - _doAfterSystem.TryStartDoAfter(new DoAfterArgs(args.User, healthAnalyzer.ScanDelay, new HealthAnalyzerDoAfterEvent(), uid, target: args.Target, used: uid) + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, args.User, healthAnalyzer.ScanDelay, new HealthAnalyzerDoAfterEvent(), uid, target: args.Target, used: uid) { BreakOnTargetMove = true, BreakOnUserMove = true, @@ -75,7 +75,7 @@ public void UpdateScannedUser(EntityUid uid, EntityUid user, EntityUid? target, OpenUserInterface(user, healthAnalyzer); - _uiSystem.SendUiMessage(healthAnalyzer.UserInterface, new HealthAnalyzerScannedUserMessage(target, temp != null ? temp.CurrentTemperature : float.NaN, + _uiSystem.SendUiMessage(healthAnalyzer.UserInterface, new HealthAnalyzerScannedUserMessage(GetNetEntity(target), temp != null ? temp.CurrentTemperature : float.NaN, bloodstream != null ? bloodstream.BloodSolution.FillFraction : float.NaN)); } } diff --git a/Content.Server/Medical/Stethoscope/Components/StethoscopeComponent.cs b/Content.Server/Medical/Stethoscope/Components/StethoscopeComponent.cs index b16d49f38df..d7e971e953f 100644 --- a/Content.Server/Medical/Stethoscope/Components/StethoscopeComponent.cs +++ b/Content.Server/Medical/Stethoscope/Components/StethoscopeComponent.cs @@ -1,26 +1,22 @@ -using System.Threading; -using Content.Shared.Actions.ActionTypes; -using Robust.Shared.Utility; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -namespace Content.Server.Medical.Components +namespace Content.Server.Medical.Stethoscope.Components { /// /// Adds an innate verb when equipped to use a stethoscope. /// [RegisterComponent] - public sealed class StethoscopeComponent : Component + public sealed partial class StethoscopeComponent : Component { public bool IsActive = false; [DataField("delay")] public float Delay = 2.5f; - public EntityTargetAction Action = new() - { - Icon = new SpriteSpecifier.Texture(new ("Clothing/Neck/Misc/stethoscope.rsi/icon.png")), - DisplayName = "stethoscope-verb", - Priority = -1, - Event = new StethoscopeActionEvent(), - }; + [DataField("action", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string Action = "ActionStethoscope"; + + [DataField("actionEntity")] public EntityUid? ActionEntity; } } diff --git a/Content.Server/Medical/Stethoscope/Components/WearingStethoscopeComponent.cs b/Content.Server/Medical/Stethoscope/Components/WearingStethoscopeComponent.cs index 64f7694bbc9..dfce294a73f 100644 --- a/Content.Server/Medical/Stethoscope/Components/WearingStethoscopeComponent.cs +++ b/Content.Server/Medical/Stethoscope/Components/WearingStethoscopeComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Medical.Components /// Used to let doctors use the stethoscope on people. /// [RegisterComponent] - public sealed class WearingStethoscopeComponent : Component + public sealed partial class WearingStethoscopeComponent : Component { public CancellationTokenSource? CancelToken; diff --git a/Content.Server/Medical/Stethoscope/StethoscopeSystem.cs b/Content.Server/Medical/Stethoscope/StethoscopeSystem.cs index 273b2d508b9..9521c14f2e3 100644 --- a/Content.Server/Medical/Stethoscope/StethoscopeSystem.cs +++ b/Content.Server/Medical/Stethoscope/StethoscopeSystem.cs @@ -1,19 +1,21 @@ using Content.Server.Body.Components; using Content.Server.Medical.Components; +using Content.Server.Medical.Stethoscope.Components; using Content.Server.Popups; using Content.Shared.Actions; using Content.Shared.Clothing.Components; using Content.Shared.Damage; +using Content.Shared.DoAfter; using Content.Shared.FixedPoint; using Content.Shared.Inventory.Events; -using Content.Shared.Verbs; +using Content.Shared.Medical; +using Content.Shared.Medical.Stethoscope; using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; -using Content.Shared.DoAfter; -using Content.Shared.Medical; +using Content.Shared.Verbs; using Robust.Shared.Utility; -namespace Content.Server.Medical +namespace Content.Server.Medical.Stethoscope { public sealed class StethoscopeSystem : EntitySystem { @@ -97,13 +99,13 @@ private void OnStethoscopeAction(EntityUid uid, StethoscopeComponent component, private void OnGetActions(EntityUid uid, StethoscopeComponent component, GetItemActionsEvent args) { - args.Actions.Add(component.Action); + args.AddAction(ref component.ActionEntity, component.Action); } // construct the doafter and start it private void StartListening(EntityUid scope, EntityUid user, EntityUid target, StethoscopeComponent comp) { - _doAfterSystem.TryStartDoAfter(new DoAfterArgs(user, comp.Delay, new StethoscopeDoAfterEvent(), scope, target: target, used: scope) + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, user, comp.Delay, new StethoscopeDoAfterEvent(), scope, target: target, used: scope) { BreakOnTargetMove = true, BreakOnUserMove = true, @@ -156,6 +158,4 @@ private string GetDamageMessage(FixedPoint2 totalOxyloss) return msg; } } - - public sealed class StethoscopeActionEvent : EntityTargetActionEvent {} } diff --git a/Content.Server/Medical/SuitSensors/SuitSensorComponent.cs b/Content.Server/Medical/SuitSensors/SuitSensorComponent.cs index 17d1feffa3e..294be8c7e1d 100644 --- a/Content.Server/Medical/SuitSensors/SuitSensorComponent.cs +++ b/Content.Server/Medical/SuitSensors/SuitSensorComponent.cs @@ -9,7 +9,7 @@ namespace Content.Server.Medical.SuitSensors /// [RegisterComponent] [Access(typeof(SuitSensorSystem))] - public sealed class SuitSensorComponent : Component + public sealed partial class SuitSensorComponent : Component { /// /// Choose a random sensor mode when item is spawned. diff --git a/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs b/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs index 597b6476464..ae28db3f29a 100644 --- a/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs +++ b/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs @@ -321,7 +321,7 @@ public void SetSensor(EntityUid uid, SuitSensorMode mode, EntityUid? userUid = n totalDamage = damageable.TotalDamage.Int(); // finally, form suit sensor status - var status = new SuitSensorStatus(uid, userName, userJob); + var status = new SuitSensorStatus(GetNetEntity(uid), userName, userJob); switch (sensor.Mode) { case SuitSensorMode.SensorBinary: @@ -353,7 +353,7 @@ public void SetSensor(EntityUid uid, SuitSensorMode mode, EntityUid? userUid = n coordinates = EntityCoordinates.Invalid; } - status.Coordinates = coordinates; + status.Coordinates = GetNetCoordinates(coordinates); break; } @@ -398,17 +398,17 @@ public NetworkPayload SuitSensorToPacket(SuitSensorStatus status) 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_IS_ALIVE, out bool? isAlive)) return null; - if (!payload.TryGetValue(SuitSensorConstants.NET_SUIT_SENSOR_UID, out EntityUid suitSensorUid)) return null; + if (!payload.TryGetValue(SuitSensorConstants.NET_SUIT_SENSOR_UID, out NetEntity suitSensorUid)) return null; // try get total damage and cords (optionals) payload.TryGetValue(SuitSensorConstants.NET_TOTAL_DAMAGE, out int? totalDamage); - payload.TryGetValue(SuitSensorConstants.NET_COORDINATES, out EntityCoordinates? cords); + payload.TryGetValue(SuitSensorConstants.NET_COORDINATES, out NetCoordinates? coords); var status = new SuitSensorStatus(suitSensorUid, name, job) { IsAlive = isAlive.Value, TotalDamage = totalDamage, - Coordinates = cords, + Coordinates = coords, }; return status; } diff --git a/Content.Server/Mind/Commands/MakeSentientCommand.cs b/Content.Server/Mind/Commands/MakeSentientCommand.cs index 22ca8ebde09..5e19d135b6f 100644 --- a/Content.Server/Mind/Commands/MakeSentientCommand.cs +++ b/Content.Server/Mind/Commands/MakeSentientCommand.cs @@ -1,9 +1,8 @@ using Content.Server.Administration; -using Content.Server.Mind.Components; -using Content.Server.NPC.Components; using Content.Shared.Administration; using Content.Shared.Emoting; using Content.Shared.Examine; +using Content.Shared.Mind.Components; using Content.Shared.Movement.Components; using Content.Shared.Speech; using Robust.Shared.Console; @@ -13,6 +12,8 @@ namespace Content.Server.Mind.Commands [AdminCommand(AdminFlags.Admin)] public sealed class MakeSentientCommand : IConsoleCommand { + [Dependency] private readonly IEntityManager _entManager = default!; + public string Command => "makesentient"; public string Description => "Makes an entity sentient (able to be controlled by a player)"; public string Help => "makesentient "; @@ -25,21 +26,19 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!EntityUid.TryParse(args[0], out var entId)) + if (!NetEntity.TryParse(args[0], out var entNet) || !_entManager.TryGetEntity(entNet, out var entId)) { shell.WriteLine("Invalid argument."); return; } - var entityManager = IoCManager.Resolve(); - - if (!entityManager.EntityExists(entId)) + if (!_entManager.EntityExists(entId)) { shell.WriteLine("Invalid entity specified!"); return; } - MakeSentient(entId, entityManager, true, true); + MakeSentient(entId.Value, _entManager, true, true); } public static void MakeSentient(EntityUid uid, IEntityManager entityManager, bool allowMovement = true, bool allowSpeech = true) diff --git a/Content.Server/Mind/Commands/MindInfoCommand.cs b/Content.Server/Mind/Commands/MindInfoCommand.cs index 749135d2605..d4961b82dbb 100644 --- a/Content.Server/Mind/Commands/MindInfoCommand.cs +++ b/Content.Server/Mind/Commands/MindInfoCommand.cs @@ -1,7 +1,8 @@ using System.Text; using Content.Server.Administration; -using Content.Server.Players; using Content.Shared.Administration; +using Content.Shared.Mind; +using Content.Shared.Roles; using Robust.Server.Player; using Robust.Shared.Console; @@ -10,10 +11,10 @@ namespace Content.Server.Mind.Commands [AdminCommand(AdminFlags.Admin)] public sealed class MindInfoCommand : IConsoleCommand { - public string Command => "mindinfo"; + [Dependency] private readonly IEntityManager _entities = default!; + public string Command => "mindinfo"; public string Description => "Lists info for the mind of a specific player."; - public string Help => "mindinfo "; public void Execute(IConsoleShell shell, string argStr, string[] args) @@ -25,15 +26,14 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) } var mgr = IoCManager.Resolve(); - if (!mgr.TryGetSessionByUsername(args[0], out var data)) + if (!mgr.TryGetSessionByUsername(args[0], out var session)) { shell.WriteLine("Can't find that mind"); return; } - var mind = data.ContentData()?.Mind; - - if (mind == null) + var minds = _entities.System(); + if (!minds.TryGetMind(session, out var mindId, out var mind)) { shell.WriteLine("Can't find that mind"); return; @@ -41,7 +41,9 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) var builder = new StringBuilder(); builder.AppendFormat("player: {0}, mob: {1}\nroles: ", mind.UserId, mind.OwnedEntity); - foreach (var role in mind.AllRoles) + + var roles = _entities.System(); + foreach (var role in roles.MindGetAllRoles(mindId)) { builder.AppendFormat("{0} ", role.Name); } diff --git a/Content.Server/Mind/Commands/RenameCommand.cs b/Content.Server/Mind/Commands/RenameCommand.cs index bd22dd4c7d0..afdd1caf9b8 100644 --- a/Content.Server/Mind/Commands/RenameCommand.cs +++ b/Content.Server/Mind/Commands/RenameCommand.cs @@ -1,11 +1,12 @@ +using System.Diagnostics.CodeAnalysis; using Content.Server.Access.Systems; using Content.Server.Administration; using Content.Server.Administration.Systems; -using Content.Server.Mind.Components; using Content.Server.PDA; using Content.Server.StationRecords.Systems; using Content.Shared.Access.Components; using Content.Shared.Administration; +using Content.Shared.Mind; using Content.Shared.PDA; using Content.Shared.StationRecords; using Robust.Server.GameObjects; @@ -17,6 +18,9 @@ namespace Content.Server.Mind.Commands; [AdminCommand(AdminFlags.VarEdit)] public sealed class RenameCommand : IConsoleCommand { + [Dependency] private readonly IEntityManager _entManager = default!; + [Dependency] private readonly IPlayerManager _playerManager = default!; + public string Command => "rename"; public string Description => "Renames an entity and its cloner entries, ID cards, and PDAs."; public string Help => "rename "; @@ -36,53 +40,53 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - var entMan = IoCManager.Resolve(); - - if (!TryParseUid(args[0], shell, entMan, out var entityUid)) + if (!TryParseUid(args[0], shell, _entManager, out var entityUid)) return; // Metadata - var metadata = entMan.GetComponent(entityUid); + var metadata = _entManager.GetComponent(entityUid.Value); var oldName = metadata.EntityName; - metadata.EntityName = name; + _entManager.System().SetEntityName(entityUid.Value, name, metadata); - var entSysMan = IoCManager.Resolve(); + var minds = _entManager.System(); - if (entMan.TryGetComponent(entityUid, out MindContainerComponent? mind) && mind.Mind != null) + if (minds.TryGetMind(entityUid.Value, out var mindId, out var mind)) { // Mind - mind.Mind.CharacterName = name; + mind.CharacterName = name; } // Id Cards - if (entSysMan.TryGetEntitySystem(out var idCardSystem)) + if (_entManager.TrySystem(out var idCardSystem)) { - if (idCardSystem.TryFindIdCard(entityUid, out var idCard)) + if (idCardSystem.TryFindIdCard(entityUid.Value, out var idCard)) { idCardSystem.TryChangeFullName(idCard.Owner, name, idCard); // Records // This is done here because ID cards are linked to station records - if (entSysMan.TryGetEntitySystem(out var recordsSystem) - && entMan.TryGetComponent(idCard.Owner, out StationRecordKeyStorageComponent? keyStorage) + if (_entManager.TrySystem(out var recordsSystem) + && _entManager.TryGetComponent(idCard.Owner, out StationRecordKeyStorageComponent? keyStorage) && keyStorage.Key != null) { - if (recordsSystem.TryGetRecord(keyStorage.Key.Value.OriginStation, + var origin = keyStorage.Key.Value.OriginStation; + + if (recordsSystem.TryGetRecord(origin, keyStorage.Key.Value, out var generalRecord)) { generalRecord.Name = name; } - recordsSystem.Synchronize(keyStorage.Key.Value.OriginStation); + recordsSystem.Synchronize(origin); } } } // PDAs - if (entSysMan.TryGetEntitySystem(out var pdaSystem)) + if (_entManager.TrySystem(out var pdaSystem)) { - var query = entMan.EntityQueryEnumerator(); + var query = _entManager.EntityQueryEnumerator(); while (query.MoveNext(out var uid, out var pda)) { if (pda.OwnerName == oldName) @@ -93,21 +97,20 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) } // Admin Overlay - if (entSysMan.TryGetEntitySystem(out var adminSystem) - && entMan.TryGetComponent(entityUid, out var actorComp)) + if (_entManager.TrySystem(out var adminSystem) + && _entManager.TryGetComponent(entityUid, out var actorComp)) { adminSystem.UpdatePlayerList(actorComp.PlayerSession); } } - private static bool TryParseUid(string str, IConsoleShell shell, - IEntityManager entMan, out EntityUid entityUid) + private bool TryParseUid(string str, IConsoleShell shell, + IEntityManager entMan, [NotNullWhen(true)] out EntityUid? entityUid) { - if (EntityUid.TryParse(str, out entityUid) && entMan.EntityExists(entityUid)) + if (NetEntity.TryParse(str, out var entityUidNet) && _entManager.TryGetEntity(entityUidNet, out entityUid) && entMan.EntityExists(entityUid)) return true; - var playerMan = IoCManager.Resolve(); - if (playerMan.TryGetSessionByUsername(str, out var session) && session.AttachedEntity.HasValue) + if (_playerManager.TryGetSessionByUsername(str, out var session) && session.AttachedEntity.HasValue) { entityUid = session.AttachedEntity.Value; return true; @@ -117,6 +120,8 @@ private static bool TryParseUid(string str, IConsoleShell shell, shell.WriteError("Can't find username/uid: " + str); else shell.WriteError(str + " does not have an entity."); + + entityUid = EntityUid.Invalid; return false; } } diff --git a/Content.Server/Mind/Components/VisitingMindComponent.cs b/Content.Server/Mind/Components/VisitingMindComponent.cs deleted file mode 100644 index 9b2e0d66e58..00000000000 --- a/Content.Server/Mind/Components/VisitingMindComponent.cs +++ /dev/null @@ -1,13 +0,0 @@ -namespace Content.Server.Mind.Components -{ - [RegisterComponent] - public sealed class VisitingMindComponent : Component - { - [ViewVariables] - public Mind? Mind; - } - - public sealed class MindUnvisitedMessage : EntityEventArgs - { - } -} diff --git a/Content.Server/Mind/MindSystem.cs b/Content.Server/Mind/MindSystem.cs index 6e78578ed01..aca5a9d485d 100644 --- a/Content.Server/Mind/MindSystem.cs +++ b/Content.Server/Mind/MindSystem.cs @@ -1,19 +1,11 @@ -using System.Diagnostics.CodeAnalysis; -using System.Linq; +using System.Diagnostics.CodeAnalysis; using Content.Server.Administration.Logs; using Content.Server.GameTicking; -using Content.Server.Ghost; -using Content.Server.Ghost.Components; -using Content.Server.Mind.Components; -using Content.Server.Objectives; -using Content.Server.Players; -using Content.Server.Roles; using Content.Shared.Database; -using Content.Shared.Examine; -using Content.Shared.GameTicking; -using Content.Shared.Mobs.Systems; -using Content.Shared.Interaction.Events; -using Content.Shared.Mobs.Components; +using Content.Shared.Ghost; +using Content.Shared.Mind; +using Content.Shared.Mind.Components; +using Content.Shared.Players; using Robust.Server.GameObjects; using Robust.Server.Player; using Robust.Shared.Map; @@ -23,121 +15,22 @@ namespace Content.Server.Mind; -public sealed class MindSystem : EntitySystem +public sealed class MindSystem : SharedMindSystem { - [Dependency] private readonly IMapManager _mapManager = default!; - [Dependency] private readonly GameTicker _gameTicker = default!; [Dependency] private readonly ActorSystem _actor = default!; - [Dependency] private readonly MobStateSystem _mobStateSystem = default!; - [Dependency] private readonly GhostSystem _ghostSystem = default!; - [Dependency] private readonly TransformSystem _transform = default!; + [Dependency] private readonly GameTicker _gameTicker = default!; [Dependency] private readonly IAdminLogManager _adminLogger = default!; - [Dependency] private readonly IPlayerManager _playerManager = default!; - - // This is dictionary is required to track the minds of disconnected players that may have had their entity deleted. - private readonly Dictionary _userMinds = new(); + [Dependency] private readonly IMapManager _maps = default!; + [Dependency] private readonly IPlayerManager _players = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; + [Dependency] private readonly SharedGhostSystem _ghosts = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnExamined); - SubscribeLocalEvent(OnSuicide); SubscribeLocalEvent(OnMindContainerTerminating); - SubscribeLocalEvent(OnVisitingTerminating); - SubscribeLocalEvent(OnReset); - } - - public override void Shutdown() - { - base.Shutdown(); - WipeAllMinds(); - } - - public void SetGhostOnShutdown(EntityUid uid, bool value, MindContainerComponent? mind = null) - { - if (!Resolve(uid, ref mind)) - return; - - mind.GhostOnShutdown = value; - } - - private void OnReset(RoundRestartCleanupEvent ev) - { - WipeAllMinds(); - } - - public void WipeAllMinds() - { - foreach (var mind in _userMinds.Values) - { - WipeMind(mind); - } - DebugTools.Assert(_userMinds.Count == 0); - - foreach (var unCastData in _playerManager.GetAllPlayerData()) - { - if (unCastData.ContentData()?.Mind is not { } mind) - continue; - - Log.Error("Player mind was missing from MindSystem dictionary."); - WipeMind(mind); - } - } - - public Mind? GetMind(NetUserId user) - { - TryGetMind(user, out var mind); - return mind; - } - - public bool TryGetMind(NetUserId user, [NotNullWhen(true)] out Mind? mind) - { - if (_userMinds.TryGetValue(user, out mind)) - { - DebugTools.Assert(mind.UserId == user); - DebugTools.Assert(_playerManager.GetPlayerData(user).ContentData() is not {} data - || data.Mind == mind); - return true; - } - - DebugTools.Assert(_playerManager.GetPlayerData(user).ContentData()?.Mind == null); - return false; - } - - /// - /// Don't call this unless you know what the hell you're doing. - /// Use instead. - /// If that doesn't cover it, make something to cover it. - /// - private void InternalAssignMind(EntityUid uid, Mind value, MindContainerComponent? mind = null) - { - if (!Resolve(uid, ref mind)) - return; - - mind.Mind = value; - RaiseLocalEvent(uid, new MindAddedMessage(), true); - } - - /// - /// Don't call this unless you know what the hell you're doing. - /// Use instead. - /// If that doesn't cover it, make something to cover it. - /// - private void InternalEjectMind(EntityUid uid, MindContainerComponent? mind = null) - { - if (!Resolve(uid, ref mind, false) || mind.Mind == null) - return; - - var oldMind = mind.Mind; - mind.Mind = null; - RaiseLocalEvent(uid, new MindRemovedMessage(oldMind), true); - } - - private void OnVisitingTerminating(EntityUid uid, VisitingMindComponent component, ref EntityTerminatingEvent args) - { - if (component.Mind != null) - UnVisit(component.Mind); } private void OnMindContainerTerminating(EntityUid uid, MindContainerComponent component, ref EntityTerminatingEvent args) @@ -146,7 +39,7 @@ private void OnMindContainerTerminating(EntityUid uid, MindContainerComponent co if (_gameTicker.RunLevel == GameRunLevel.PreRoundLobby) return; - if (component.Mind is not { } mind) + if (!TryGetMind(uid, out var mindId, out var mind, component)) return; // If the player is currently visiting some other entity, simply attach to that entity. @@ -155,13 +48,13 @@ private void OnMindContainerTerminating(EntityUid uid, MindContainerComponent co && !Deleted(visiting) && !Terminating(visiting)) { - TransferTo(mind, visiting); + TransferTo(mindId, visiting, mind: mind); if (TryComp(visiting, out GhostComponent? ghost)) - _ghostSystem.SetCanReturnToBody(ghost, false); + _ghosts.SetCanReturnToBody(ghost, false); return; } - TransferTo(mind, null, createGhost: false); + TransferTo(mindId, null, createGhost: false, mind: mind); if (component.GhostOnShutdown && mind.Session != null) { @@ -177,7 +70,7 @@ private void OnMindContainerTerminating(EntityUid uid, MindContainerComponent co return; // Async this so that we don't throw if the grid we're on is being deleted. - if (!_mapManager.GridExists(gridId)) + if (!_maps.GridExists(gridId)) spawnPosition = _gameTicker.GetObserverSpawnPoint(); // TODO refactor observer spawning. @@ -186,104 +79,73 @@ private void OnMindContainerTerminating(EntityUid uid, MindContainerComponent co { // This should be an error, if it didn't cause tests to start erroring when they delete a player. Log.Warning($"Entity \"{ToPrettyString(uid)}\" for {mind.CharacterName} was deleted, and no applicable spawn location is available."); - TransferTo(mind, null, createGhost: false); + TransferTo(mindId, null, createGhost: false, mind: mind); return; } var ghost = Spawn("MobObserver", spawnPosition); var ghostComponent = Comp(ghost); - _ghostSystem.SetCanReturnToBody(ghostComponent, false); + _ghosts.SetCanReturnToBody(ghostComponent, false); // Log these to make sure they're not causing the GameTicker round restart bugs... Log.Debug($"Entity \"{ToPrettyString(uid)}\" for {mind.CharacterName} was deleted, spawned \"{ToPrettyString(ghost)}\"."); var val = mind.CharacterName ?? string.Empty; - MetaData(ghost).EntityName = val; - TransferTo(mind, ghost); + _metaData.SetEntityName(ghost, val); + TransferTo(mindId, ghost, mind: mind); }); } } - private void OnExamined(EntityUid uid, MindContainerComponent mindContainer, ExaminedEvent args) + public override bool TryGetMind(NetUserId user, [NotNullWhen(true)] out EntityUid? mindId, [NotNullWhen(true)] out MindComponent? mind) { - if (!mindContainer.ShowExamineInfo || !args.IsInDetailsRange) - return; + if (base.TryGetMind(user, out mindId, out mind)) + { + DebugTools.Assert(_players.GetPlayerData(user).ContentData() is not { } data || data.Mind == mindId); + return true; + } - var dead = _mobStateSystem.IsDead(uid); - var hasSession = mindContainer.Mind?.Session; - - if (dead && hasSession == null) - args.PushMarkup($"[color=yellow]{Loc.GetString("comp-mind-examined-dead-and-ssd", ("ent", uid))}[/color]"); - else if (dead) - args.PushMarkup($"[color=red]{Loc.GetString("comp-mind-examined-dead", ("ent", uid))}[/color]"); - else if (!mindContainer.HasMind) - args.PushMarkup($"[color=mediumpurple]{Loc.GetString("comp-mind-examined-catatonic", ("ent", uid))}[/color]"); - else if (hasSession == null) - args.PushMarkup($"[color=yellow]{Loc.GetString("comp-mind-examined-ssd", ("ent", uid))}[/color]"); + DebugTools.Assert(_players.GetPlayerData(user).ContentData()?.Mind == null); + return false; } - private void OnSuicide(EntityUid uid, MindContainerComponent component, SuicideEvent args) + public bool TryGetSession(EntityUid? mindId, [NotNullWhen(true)] out IPlayerSession? session) { - if (args.Handled) - return; - - if (component.HasMind && component.Mind.PreventSuicide) - { - args.BlockSuicideAttempt(true); - } + session = null; + return TryComp(mindId, out MindComponent? mind) && (session = (IPlayerSession?) mind.Session) != null; } - public Mind? GetMind(EntityUid uid, MindContainerComponent? mind = null) + public IPlayerSession? GetSession(MindComponent mind) { - if (!Resolve(uid, ref mind)) - return null; - - if (mind.HasMind) - return mind.Mind; - return null; + return (IPlayerSession?) mind.Session; } - public Mind CreateMind(NetUserId? userId, string? name = null) + public bool TryGetSession(MindComponent mind, [NotNullWhen(true)] out IPlayerSession? session) { - var mind = new Mind(); - mind.CharacterName = name; - SetUserId(mind, userId); - - return mind; + return (session = GetSession(mind)) != null; } - /// - /// True if the OwnedEntity of this mind is physically dead. - /// This specific definition, as opposed to CharacterDeadIC, is used to determine if ghosting should allow return. - /// - public bool IsCharacterDeadPhysically(Mind mind) + public override void WipeAllMinds() { - // This is written explicitly so that the logic can be understood. - // But it's also weird and potentially situational. - // Specific considerations when updating this: - // + Does being turned into a borg (if/when implemented) count as dead? - // *If not, add specific conditions to users of this property where applicable.* - // + Is being transformed into a donut 'dead'? - // TODO: Consider changing the way ghost roles work. - // Mind is an *IC* mind, therefore ghost takeover is IC revival right now. - // + Is it necessary to have a reference to a specific 'mind iteration' to cycle when certain events happen? - // (If being a borg or AI counts as dead, then this is highly likely, as it's still the same Mind for practical purposes.) - - if (mind.OwnedEntity == null) - return true; + base.WipeAllMinds(); - // This can be null if they're deleted (spike / brain nom) - var targetMobState = EntityManager.GetComponentOrNull(mind.OwnedEntity); - // This can be null if it's a brain (this happens very often) - // Brains are the result of gibbing so should definitely count as dead - if (targetMobState == null) - return true; - // They might actually be alive. - return _mobStateSystem.IsDead(mind.OwnedEntity.Value, targetMobState); + foreach (var unCastData in _players.GetAllPlayerData()) + { + if (unCastData.ContentData()?.Mind is not { } mind) + continue; + + Log.Error("Player mind was missing from MindSystem dictionary."); + WipeMind(mind); + } } - public void Visit(Mind mind, EntityUid entity) + public override void Visit(EntityUid mindId, EntityUid entity, MindComponent? mind = null) { + base.Visit(mindId, entity, mind); + + if (!Resolve(mindId, ref mind)) + return; + if (mind.VisitingEntity != null) { Log.Error($"Attempted to visit an entity ({ToPrettyString(entity)}) while already visiting another ({ToPrettyString(mind.VisitingEntity.Value)})."); @@ -296,21 +158,23 @@ public void Visit(Mind mind, EntityUid entity) return; } - mind.Session?.AttachToEntity(entity); + GetSession(mind)?.AttachToEntity(entity); mind.VisitingEntity = entity; // EnsureComp instead of AddComp to deal with deferred deletions. var comp = EnsureComp(entity); - comp.Mind = mind; + comp.MindId = mindId; Log.Info($"Session {mind.Session?.Name} visiting entity {entity}."); } - /// - /// Returns the mind to its original entity. - /// - public void UnVisit(Mind? mind) + public override void UnVisit(EntityUid mindId, MindComponent? mind = null) { - if (mind == null || mind.VisitingEntity == null) + base.UnVisit(mindId, mind); + + if (!Resolve(mindId, ref mind)) + return; + + if (mind.VisitingEntity == null) return; RemoveVisitingEntity(mind); @@ -319,7 +183,7 @@ public void UnVisit(Mind? mind) return; var owned = mind.OwnedEntity; - mind.Session.AttachToEntity(owned); + GetSession(mind)?.AttachToEntity(owned); if (owned.HasValue) { @@ -328,63 +192,14 @@ public void UnVisit(Mind? mind) } } - /// - /// Cleans up the VisitingEntity. - /// - /// - private void RemoveVisitingEntity(Mind mind) + public override void TransferTo(EntityUid mindId, EntityUid? entity, bool ghostCheckOverride = false, bool createGhost = true, + MindComponent? mind = null) { - if (mind.VisitingEntity == null) - return; - - var oldVisitingEnt = mind.VisitingEntity.Value; - // Null this before removing the component to avoid any infinite loops. - mind.VisitingEntity = null; - - if (TryComp(oldVisitingEnt, out VisitingMindComponent? visitComp)) - { - visitComp.Mind = null; - RemCompDeferred(oldVisitingEnt, visitComp); - } - - RaiseLocalEvent(oldVisitingEnt, new MindUnvisitedMessage(), true); - } + base.TransferTo(mindId, entity, ghostCheckOverride, createGhost, mind); - public void WipeMind(IPlayerSession player) - { - var mind = player.ContentData()?.Mind; - DebugTools.Assert(GetMind(player.UserId) == mind); - WipeMind(mind); - } - - /// - /// Detaches a mind from all entities and clears the user ID. - /// - public void WipeMind(Mind? mind) - { - if (mind == null) + if (!Resolve(mindId, ref mind)) return; - TransferTo(mind, null); - SetUserId(mind, null); - } - - /// - /// Transfer this mind's control over to a new entity. - /// - /// The mind to transfer - /// - /// The entity to control. - /// Can be null, in which case it will simply detach the mind from any entity. - /// - /// - /// If true, skips ghost check for Visiting Entity - /// - /// - /// Thrown if is already owned by another mind. - /// - public void TransferTo(Mind mind, EntityUid? entity, bool ghostCheckOverride = false, bool createGhost = true) - { if (entity == mind.OwnedEntity) return; @@ -396,7 +211,7 @@ public void TransferTo(Mind mind, EntityUid? entity, bool ghostCheckOverride = f component = EnsureComp(entity.Value); if (component.HasMind) - _gameTicker.OnGhostAttempt(component.Mind, false); + _gameTicker.OnGhostAttempt(component.Mind.Value, false); if (TryComp(entity.Value, out var actor)) { @@ -417,13 +232,16 @@ public void TransferTo(Mind mind, EntityUid? entity, bool ghostCheckOverride = f entity = Spawn("MobObserver", position); var ghostComponent = Comp(entity.Value); - _ghostSystem.SetCanReturnToBody(ghostComponent, false); + _ghosts.SetCanReturnToBody(ghostComponent, false); } var oldComp = mind.OwnedComponent; var oldEntity = mind.OwnedEntity; - if(oldComp != null && oldEntity != null) - InternalEjectMind(oldEntity.Value, oldComp); + if (oldComp != null && oldEntity != null) + { + oldComp.Mind = null; + RaiseLocalEvent(oldEntity.Value, new MindRemovedMessage(oldEntity.Value, mind), true); + } SetOwnedEntity(mind, entity, component); @@ -444,171 +262,35 @@ public void TransferTo(Mind mind, EntityUid? entity, bool ghostCheckOverride = f } // Player is CURRENTLY connected. - if (mind.Session != null && !alreadyAttached && mind.VisitingEntity == null) + var session = GetSession(mind); + if (session != null && !alreadyAttached && mind.VisitingEntity == null) { - _actor.Attach(entity, mind.Session, true); - Log.Info($"Session {mind.Session.Name} transferred to entity {entity}."); + _actor.Attach(entity, session, true); + Log.Info($"Session {session.Name} transferred to entity {entity}."); } if (mind.OwnedComponent != null) { - InternalAssignMind(mind.OwnedEntity!.Value, mind, mind.OwnedComponent); + mind.OwnedComponent.Mind = mindId; + RaiseLocalEvent(mind.OwnedEntity!.Value, new MindAddedMessage(), true); mind.OriginalOwnedEntity ??= mind.OwnedEntity; } } - /// - /// Adds an objective to this mind. - /// - public bool TryAddObjective(Mind mind, ObjectivePrototype objectivePrototype) - { - if (!objectivePrototype.CanBeAssigned(mind)) - return false; - var objective = objectivePrototype.GetObjective(mind); - if (mind.Objectives.Contains(objective)) - return false; - - foreach (var condition in objective.Conditions) - { - _adminLogger.Add(LogType.Mind, LogImpact.Low, $"'{condition.Title}' added to mind of {MindOwnerLoggingString(mind)}"); - } - - - mind.Objectives.Add(objective); - return true; - } - - /// - /// Removes an objective to this mind. - /// - /// Returns true if the removal succeeded. - public bool TryRemoveObjective(Mind mind, int index) - { - if (index < 0 || index >= mind.Objectives.Count) return false; - - var objective = mind.Objectives[index]; - - foreach (var condition in objective.Conditions) - { - _adminLogger.Add(LogType.Mind, LogImpact.Low, $"'{condition.Title}' removed from the mind of {MindOwnerLoggingString(mind)}"); - } - - mind.Objectives.Remove(objective); - return true; - } - - /// - /// Gives this mind a new role. - /// - /// The mind to add the role to. - /// The type of the role to give. - /// The instance of the role. - /// - /// Thrown if we already have a role with this type. - /// - public void AddRole(Mind mind, Role role) - { - if (mind.Roles.Contains(role)) - { - throw new ArgumentException($"We already have this role: {role}"); - } - - mind.Roles.Add(role); - role.Greet(); - - var message = new RoleAddedEvent(mind, role); - if (mind.OwnedEntity != null) - { - RaiseLocalEvent(mind.OwnedEntity.Value, message, true); - } - - _adminLogger.Add(LogType.Mind, LogImpact.Low, - $"'{role.Name}' added to mind of {MindOwnerLoggingString(mind)}"); - } - - /// - /// Removes a role from this mind. - /// - /// The mind to remove the role from. - /// The type of the role to remove. - /// - /// Thrown if we do not have this role. - /// - public void RemoveRole(Mind mind, Role role) - { - if (!mind.Roles.Contains(role)) - { - throw new ArgumentException($"We do not have this role: {role}"); - } - - mind.Roles.Remove(role); - - var message = new RoleRemovedEvent(mind, role); - - if (mind.OwnedEntity != null) - { - RaiseLocalEvent(mind.OwnedEntity.Value, message, true); - } - _adminLogger.Add(LogType.Mind, LogImpact.Low, - $"'{role.Name}' removed from mind of {MindOwnerLoggingString(mind)}"); - } - - public bool HasRole(Mind mind) where T : Role - { - return mind.Roles.Any(role => role is T); - } - - public bool TryGetSession(Mind mind, [NotNullWhen(true)] out IPlayerSession? session) - { - return (session = mind.Session) != null; - } - - /// - /// Gets a mind from uid and/or MindContainerComponent. Used for null checks. - /// - /// Entity UID that owns the mind. - /// The returned mind. - /// Mind component on to get the mind from. - /// True if mind found. False if not. - public bool TryGetMind(EntityUid uid, [NotNullWhen(true)] out Mind? mind, MindContainerComponent? mindContainerComponent = null) - { - mind = null; - if (!Resolve(uid, ref mindContainerComponent, false)) - return false; - - if (!mindContainerComponent.HasMind) - return false; - - mind = mindContainerComponent.Mind; - return true; - } - - /// - /// Sets the Mind's OwnedComponent and OwnedEntity - /// - /// Mind to set OwnedComponent and OwnedEntity on - /// Entity owned by - /// MindContainerComponent owned by - private void SetOwnedEntity(Mind mind, EntityUid? uid, MindContainerComponent? mindContainerComponent) - { - if (uid != null) - Resolve(uid.Value, ref mindContainerComponent); - - mind.OwnedEntity = uid; - mind.OwnedComponent = mindContainerComponent; - } - /// /// Sets the Mind's UserId, Session, and updates the player's PlayerData. This should have no direct effect on the /// entity that any mind is connected to, except as a side effect of the fact that it may change a player's /// attached entity. E.g., ghosts get deleted. /// - public void SetUserId(Mind mind, NetUserId? userId) + public override void SetUserId(EntityUid mindId, NetUserId? userId, MindComponent? mind = null) { + if (!Resolve(mindId, ref mind)) + return; + if (mind.UserId == userId) return; - if (userId != null && !_playerManager.TryGetPlayerData(userId.Value, out _)) + if (userId != null && !_players.TryGetPlayerData(userId.Value, out _)) { Log.Error($"Attempted to set mind user to invalid value {userId}"); return; @@ -616,14 +298,14 @@ public void SetUserId(Mind mind, NetUserId? userId) if (mind.Session != null) { - _actor.Attach(null, mind.Session); + _actor.Attach(null, GetSession(mind)!); mind.Session = null; } if (mind.UserId != null) { - _userMinds.Remove(mind.UserId.Value); - if (_playerManager.GetPlayerData(mind.UserId.Value).ContentData() is { } oldData) + UserMinds.Remove(mind.UserId.Value); + if (_players.GetPlayerData(mind.UserId.Value).ContentData() is { } oldData) oldData.Mind = null; mind.UserId = null; } @@ -634,63 +316,26 @@ public void SetUserId(Mind mind, NetUserId? userId) return; } - if (_userMinds.TryGetValue(userId.Value, out var oldMind)) - SetUserId(oldMind, null); + if (UserMinds.TryGetValue(userId.Value, out var oldMindId) && + TryComp(oldMindId, out MindComponent? oldMind)) + { + SetUserId(oldMindId, null, oldMind); + } - DebugTools.AssertNull(_playerManager.GetPlayerData(userId.Value).ContentData()?.Mind); + DebugTools.AssertNull(_players.GetPlayerData(userId.Value).ContentData()?.Mind); - _userMinds[userId.Value] = mind; + UserMinds[userId.Value] = mindId; mind.UserId = userId; mind.OriginalOwnerUserId ??= userId; - if (_playerManager.TryGetSessionById(userId.Value, out var ret)) + if (_players.TryGetSessionById(userId.Value, out var ret)) { mind.Session = ret; - _actor.Attach(mind.CurrentEntity, mind.Session); + _actor.Attach(mind.CurrentEntity, ret); } // session may be null, but user data may still exist for disconnected players. - if (_playerManager.GetPlayerData(userId.Value).ContentData() is { } data) - data.Mind = mind; - } - - /// - /// True if this Mind is 'sufficiently dead' IC (Objectives, EndText). - /// Note that this is *IC logic*, it's not necessarily tied to any specific truth. - /// "If administrators decide that zombies are dead, this returns true for zombies." - /// (Maybe you were looking for the action blocker system?) - /// - public bool IsCharacterDeadIc(Mind mind) - { - if (mind.OwnedEntity is { } owned) - { - var ev = new GetCharactedDeadIcEvent(null); - RaiseLocalEvent(owned, ref ev); - - if (ev.Dead != null) - return ev.Dead.Value; - } - - return IsCharacterDeadPhysically(mind); - } - - /// - /// A string to represent the mind for logging - /// - private string MindOwnerLoggingString(Mind mind) - { - if (mind.OwnedEntity != null) - return ToPrettyString(mind.OwnedEntity.Value); - if (mind.UserId != null) - return mind.UserId.Value.ToString(); - return "(originally " + mind.OriginalOwnerUserId + ")"; + if (_players.GetPlayerData(userId.Value).ContentData() is { } data) + data.Mind = mindId; } } - -/// -/// Raised on an entity to determine whether or not they are "dead" in IC-logic. -/// If not handled, then it will simply check if they are dead physically. -/// -/// -[ByRefEvent] -public record struct GetCharactedDeadIcEvent(bool? Dead); diff --git a/Content.Server/Mind/MindTrackerSystem.cs b/Content.Server/Mind/MindTrackerSystem.cs deleted file mode 100644 index 2ab76ce9af9..00000000000 --- a/Content.Server/Mind/MindTrackerSystem.cs +++ /dev/null @@ -1,39 +0,0 @@ -using Content.Server.Mind.Components; -using Content.Shared.GameTicking; - -namespace Content.Server.Mind -{ - /// - /// This is absolutely evil. - /// It tracks all mind changes and logs all the Mind objects. - /// This is so that when round end comes around, there's a coherent list of all Minds that were in play during the round. - /// The Minds themselves contain metadata about their owners. - /// Anyway, this is because disconnected people and ghost roles have been breaking round end statistics for way too long. - /// - public sealed class MindTrackerSystem : EntitySystem - { - [ViewVariables] - public readonly HashSet AllMinds = new(); - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(Reset); - SubscribeLocalEvent(OnMindAdded); - } - - void Reset(RoundRestartCleanupEvent ev) - { - AllMinds.Clear(); - } - - void OnMindAdded(EntityUid uid, MindContainerComponent mc, MindAddedMessage args) - { - var mind = mc.Mind; - if (mind != null) - AllMinds.Add(mind); - } - } -} - diff --git a/Content.Server/Mind/Toolshed/MindCommand.cs b/Content.Server/Mind/Toolshed/MindCommand.cs new file mode 100644 index 00000000000..b53f9a6a9cd --- /dev/null +++ b/Content.Server/Mind/Toolshed/MindCommand.cs @@ -0,0 +1,55 @@ +using Content.Shared.Mind; +using Robust.Server.Player; +using Robust.Shared.Toolshed; +using Robust.Shared.Toolshed.Errors; +using Robust.Shared.Toolshed.Syntax; + +namespace Content.Server.Mind.Toolshed; + +/// +/// Contains various mind-manipulation commands like getting minds, controlling mobs, etc. +/// +[ToolshedCommand] +public sealed class MindCommand : ToolshedCommand +{ + private SharedMindSystem? _mind; + + [CommandImplementation("get")] + public MindComponent? Get([PipedArgument] IPlayerSession session) + { + _mind ??= GetSys(); + return _mind.TryGetMind(session, out _, out var mind) ? mind : null; + } + + [CommandImplementation("get")] + public MindComponent? Get([PipedArgument] EntityUid ent) + { + _mind ??= GetSys(); + return _mind.TryGetMind(ent, out _, out var mind) ? mind : null; + } + + [CommandImplementation("control")] + public EntityUid Control( + [CommandInvocationContext] IInvocationContext ctx, + [PipedArgument] EntityUid target, + [CommandArgument] ValueRef playerRef) + { + _mind ??= GetSys(); + + var player = playerRef.Evaluate(ctx); + if (player is null) + { + ctx.ReportError(new NotForServerConsoleError()); + return target; + } + + if (!_mind.TryGetMind(player, out var mindId, out var mind)) + { + ctx.ReportError(new SessionHasNoEntityError(player)); + return target; + } + + _mind.TransferTo(mindId, target, mind: mind); + return target; + } +} diff --git a/Content.Server/Mind/TransferMindOnGibSystem.cs b/Content.Server/Mind/TransferMindOnGibSystem.cs index d499d6a4dd1..758a23c8682 100644 --- a/Content.Server/Mind/TransferMindOnGibSystem.cs +++ b/Content.Server/Mind/TransferMindOnGibSystem.cs @@ -1,6 +1,7 @@ using System.Linq; using Content.Server.Body.Components; -using Content.Server.Mind.Components; +using Content.Shared.Mind; +using Content.Shared.Mind.Components; using Content.Shared.Tag; using Robust.Shared.Random; @@ -15,7 +16,7 @@ public sealed class TransferMindOnGibSystem : EntitySystem { [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly TagSystem _tag = default!; - [Dependency] private readonly MindSystem _mindSystem = default!; + [Dependency] private readonly SharedMindSystem _mindSystem = default!; /// public override void Initialize() @@ -25,7 +26,7 @@ public override void Initialize() private void OnGib(EntityUid uid, TransferMindOnGibComponent component, BeingGibbedEvent args) { - if (!TryComp(uid, out var mindcomp) || mindcomp.Mind == null) + if (!_mindSystem.TryGetMind(uid, out var mindId, out var mind)) return; var validParts = args.GibbedParts.Where(p => _tag.HasTag(p, component.TargetTag)).ToHashSet(); @@ -33,6 +34,6 @@ private void OnGib(EntityUid uid, TransferMindOnGibComponent component, BeingGib return; var ent = _random.Pick(validParts); - _mindSystem.TransferTo(mindcomp.Mind, ent); + _mindSystem.TransferTo(mindId, ent, mind: mind); } } diff --git a/Content.Server/Mobs/CritMobActionsSystem.cs b/Content.Server/Mobs/CritMobActionsSystem.cs index 47da6961e7e..9d0a6b4a857 100644 --- a/Content.Server/Mobs/CritMobActionsSystem.cs +++ b/Content.Server/Mobs/CritMobActionsSystem.cs @@ -1,13 +1,12 @@ using Content.Server.Administration; using Content.Server.Chat.Systems; -using Content.Server.GameTicking; -using Content.Server.Mind.Components; -using Content.Shared.Actions; +using Content.Server.Popups; +using Content.Server.Speech.Muting; +using Content.Shared.Mobs; using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; using Robust.Server.Console; using Robust.Server.GameObjects; -using System; namespace Content.Server.Mobs; @@ -20,6 +19,7 @@ public sealed class CritMobActionsSystem : EntitySystem [Dependency] private readonly DeathgaspSystem _deathgasp = default!; [Dependency] private readonly IServerConsoleHost _host = default!; [Dependency] private readonly MobStateSystem _mobState = default!; + [Dependency] private readonly PopupSystem _popupSystem = default!; [Dependency] private readonly QuickDialogSystem _quickDialog = default!; private const int MaxLastWordsLength = 30; @@ -47,6 +47,12 @@ private void OnFakeDeath(EntityUid uid, MobStateActionsComponent component, Crit if (!_mobState.IsCritical(uid)) return; + if (HasComp(uid)) + { + _popupSystem.PopupEntity(Loc.GetString("fake-death-muted"), uid, uid); + return; + } + args.Handled = _deathgasp.Deathgasp(uid); } @@ -58,6 +64,7 @@ private void OnLastWords(EntityUid uid, MobStateActionsComponent component, Crit _quickDialog.OpenDialog(actor.PlayerSession, Loc.GetString("action-name-crit-last-words"), "", (string lastWords) => { + // Intentionally does not check for muteness if (actor.PlayerSession.AttachedEntity != uid || !_mobState.IsCritical(uid)) return; @@ -75,24 +82,3 @@ private void OnLastWords(EntityUid uid, MobStateActionsComponent component, Crit args.Handled = true; } } - -/// -/// Only applies to mobs in crit capable of ghosting/succumbing -/// -public sealed class CritSuccumbEvent : InstantActionEvent -{ -} - -/// -/// Only applies/has functionality to mobs in crit that have -/// -public sealed class CritFakeDeathEvent : InstantActionEvent -{ -} - -/// -/// Only applies to mobs capable of speaking, as a last resort in crit -/// -public sealed class CritLastWordsEvent : InstantActionEvent -{ -} diff --git a/Content.Server/Mobs/DeathgaspComponent.cs b/Content.Server/Mobs/DeathgaspComponent.cs index 01d9c321c9c..cb1f02f0d97 100644 --- a/Content.Server/Mobs/DeathgaspComponent.cs +++ b/Content.Server/Mobs/DeathgaspComponent.cs @@ -8,7 +8,7 @@ namespace Content.Server.Mobs; /// /// [RegisterComponent] -public sealed class DeathgaspComponent : Component +public sealed partial class DeathgaspComponent : Component { /// /// The emote prototype to use. diff --git a/Content.Server/Mobs/DeathgaspSystem.cs b/Content.Server/Mobs/DeathgaspSystem.cs index ef1cf24932a..3919d9a4be5 100644 --- a/Content.Server/Mobs/DeathgaspSystem.cs +++ b/Content.Server/Mobs/DeathgaspSystem.cs @@ -1,4 +1,5 @@ using Content.Server.Chat.Systems; +using Content.Server.Speech.Muting; using Content.Shared.Mobs; using Robust.Shared.Prototypes; @@ -33,6 +34,9 @@ public bool Deathgasp(EntityUid uid, DeathgaspComponent? component = null) if (!Resolve(uid, ref component, false)) return false; + if (HasComp(uid)) + return false; + _chat.TryEmoteWithChat(uid, component.Prototype, ignoreActionBlocker: true); return true; diff --git a/Content.Server/Morgue/Components/ActiveCrematoriumComponent.cs b/Content.Server/Morgue/Components/ActiveCrematoriumComponent.cs index 56e0b88e154..e5180cd8923 100644 --- a/Content.Server/Morgue/Components/ActiveCrematoriumComponent.cs +++ b/Content.Server/Morgue/Components/ActiveCrematoriumComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Morgue.Components; /// used to track actively cooking crematoriums /// [RegisterComponent] -public sealed class ActiveCrematoriumComponent : Component +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 index c86220ee052..f00a21b7558 100644 --- a/Content.Server/Morgue/Components/CrematoriumComponent.cs +++ b/Content.Server/Morgue/Components/CrematoriumComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Morgue.Components; [RegisterComponent] -public sealed class CrematoriumComponent : Component +public sealed partial class CrematoriumComponent : Component { /// /// The time it takes to cook in second diff --git a/Content.Server/Morgue/Components/EntityStorageLayingDownOverrideComponent.cs b/Content.Server/Morgue/Components/EntityStorageLayingDownOverrideComponent.cs index b94635f6f15..9726094497e 100644 --- a/Content.Server/Morgue/Components/EntityStorageLayingDownOverrideComponent.cs +++ b/Content.Server/Morgue/Components/EntityStorageLayingDownOverrideComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Morgue.Components; [RegisterComponent] -public sealed class EntityStorageLayingDownOverrideComponent : Component +public sealed partial class EntityStorageLayingDownOverrideComponent : Component { } diff --git a/Content.Server/Morgue/CrematoriumSystem.cs b/Content.Server/Morgue/CrematoriumSystem.cs index ef1f8c9a2aa..5ef42ea00e8 100644 --- a/Content.Server/Morgue/CrematoriumSystem.cs +++ b/Content.Server/Morgue/CrematoriumSystem.cs @@ -1,20 +1,20 @@ +using Content.Server.GameTicking; using Content.Server.Morgue.Components; -using Content.Shared.Morgue; -using Robust.Server.GameObjects; -using Robust.Shared.Player; using Content.Server.Storage.Components; -using Content.Shared.Verbs; +using Content.Server.Storage.EntitySystems; using Content.Shared.Database; +using Content.Shared.Examine; +using Content.Shared.IdentityManagement; using Content.Shared.Interaction.Events; -using Content.Server.Players; -using Content.Server.GameTicking; +using Content.Shared.Mind; +using Content.Shared.Morgue; using Content.Shared.Popups; -using Content.Server.Storage.EntitySystems; -using Content.Shared.Examine; using Content.Shared.Standing; using Content.Shared.Storage; -using Content.Shared.IdentityManagement; using Content.Shared.Storage.Components; +using Content.Shared.Verbs; +using Robust.Server.GameObjects; +using Robust.Shared.Player; namespace Content.Server.Morgue; @@ -26,6 +26,7 @@ public sealed class CrematoriumSystem : EntitySystem [Dependency] private readonly EntityStorageSystem _entityStorage = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly StandingStateSystem _standing = default!; + [Dependency] private readonly SharedMindSystem _minds = default!; public override void Initialize() { @@ -141,9 +142,9 @@ private void OnSuicide(EntityUid uid, CrematoriumComponent component, SuicideEve args.SetHandled(SuicideKind.Heat); var victim = args.Victim; - if (TryComp(victim, out ActorComponent? actor) && actor.PlayerSession.ContentData()?.Mind is { } mind) + if (TryComp(victim, out ActorComponent? actor) && _minds.TryGetMind(victim, out var mindId, out var mind)) { - _ticker.OnGhostAttempt(mind, false); + _ticker.OnGhostAttempt(mindId, false, mind: mind); if (mind.OwnedEntity is { Valid: true } entity) { diff --git a/Content.Server/Morgue/MorgueSystem.cs b/Content.Server/Morgue/MorgueSystem.cs index df9cd35b14e..131689a139e 100644 --- a/Content.Server/Morgue/MorgueSystem.cs +++ b/Content.Server/Morgue/MorgueSystem.cs @@ -62,7 +62,7 @@ private void CheckContents(EntityUid uid, MorgueComponent? morgue = null, Entity if (!hasMob && HasComp(ent)) hasMob = true; - if (HasComp(ent)) + if (HasComp(ent)) { _appearance.SetData(uid, MorgueVisuals.Contents, MorgueContents.HasSoul, app); return; diff --git a/Content.Server/Mousetrap/MousetrapComponent.cs b/Content.Server/Mousetrap/MousetrapComponent.cs index 2cf75e35cbc..b666c45a4ce 100644 --- a/Content.Server/Mousetrap/MousetrapComponent.cs +++ b/Content.Server/Mousetrap/MousetrapComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Mousetrap; [RegisterComponent] -public sealed class MousetrapComponent : Component +public sealed partial class MousetrapComponent : Component { [ViewVariables] [DataField("isActive")] diff --git a/Content.Server/Movement/Components/ActiveLagCompensationComponent.cs b/Content.Server/Movement/Components/ActiveLagCompensationComponent.cs deleted file mode 100644 index ae202b483a7..00000000000 --- a/Content.Server/Movement/Components/ActiveLagCompensationComponent.cs +++ /dev/null @@ -1,10 +0,0 @@ -namespace Content.Server.Movement.Components; - -/// -/// Track lag compensation components that may need to have their data culled for memory reasons. -/// -[RegisterComponent] -public sealed class ActiveLagCompensationComponent : Component -{ - -} diff --git a/Content.Server/Movement/Components/LagCompensationComponent.cs b/Content.Server/Movement/Components/LagCompensationComponent.cs index 8178a8f2afe..8affd8cd715 100644 --- a/Content.Server/Movement/Components/LagCompensationComponent.cs +++ b/Content.Server/Movement/Components/LagCompensationComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Movement.Components; [RegisterComponent] -public sealed class LagCompensationComponent : Component +public sealed partial class LagCompensationComponent : Component { [ViewVariables] public readonly Queue> Positions = new(); diff --git a/Content.Server/Movement/Components/StressTestMovementComponent.cs b/Content.Server/Movement/Components/StressTestMovementComponent.cs index d897b5fae24..051747a8490 100644 --- a/Content.Server/Movement/Components/StressTestMovementComponent.cs +++ b/Content.Server/Movement/Components/StressTestMovementComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Movement.Components; [RegisterComponent] -public sealed class StressTestMovementComponent : Component +public sealed partial class StressTestMovementComponent : Component { public float Progress { get; set; } public Vector2 Origin { get; set; } diff --git a/Content.Server/Movement/Systems/ContentEyeSystem.cs b/Content.Server/Movement/Systems/ContentEyeSystem.cs index 54428d9bee4..a77e6c7918e 100644 --- a/Content.Server/Movement/Systems/ContentEyeSystem.cs +++ b/Content.Server/Movement/Systems/ContentEyeSystem.cs @@ -1,22 +1,5 @@ -using Content.Shared.Movement.Components; using Content.Shared.Movement.Systems; namespace Content.Server.Movement.Systems; -public sealed class ContentEyeSystem : SharedContentEyeSystem -{ - public override void Update(float frameTime) - { - base.Update(frameTime); - - var query = AllEntityQuery(); - - while (query.MoveNext(out var uid, out var comp, out var eyeComp)) - { - if (eyeComp.Zoom.Equals(comp.TargetZoom)) - continue; - - UpdateEye(uid, comp, eyeComp, frameTime); - } - } -} +public sealed class ContentEyeSystem : SharedContentEyeSystem {} diff --git a/Content.Server/Movement/Systems/FloorOcclusionSystem.cs b/Content.Server/Movement/Systems/FloorOcclusionSystem.cs new file mode 100644 index 00000000000..9597070af28 --- /dev/null +++ b/Content.Server/Movement/Systems/FloorOcclusionSystem.cs @@ -0,0 +1,8 @@ +using Content.Shared.Movement.Systems; + +namespace Content.Server.Movement.Systems; + +public sealed class FloorOcclusionSystem : SharedFloorOcclusionSystem +{ + +} diff --git a/Content.Server/Movement/Systems/JetpackSystem.cs b/Content.Server/Movement/Systems/JetpackSystem.cs index 4de854f38f8..79b365be412 100644 --- a/Content.Server/Movement/Systems/JetpackSystem.cs +++ b/Content.Server/Movement/Systems/JetpackSystem.cs @@ -32,12 +32,17 @@ public override void Update(float frameTime) continue; active.TargetTime = _timing.CurTime + TimeSpan.FromSeconds(active.EffectCooldown); - var air = _gasTank.RemoveAir(gasTank, comp.MoleUsage); + var usedAir = _gasTank.RemoveAir(gasTank, comp.MoleUsage); - if (air == null || !MathHelper.CloseTo(air.TotalMoles, comp.MoleUsage, 0.001f)) + if (usedAir == null) + continue; + + var usedEnoughAir = + MathHelper.CloseTo(usedAir.TotalMoles, comp.MoleUsage, comp.MoleUsage/100); + + if (!usedEnoughAir) { toDisable.Add((uid, comp)); - continue; } _gasTank.UpdateUserInterface(gasTank); diff --git a/Content.Server/Movement/Systems/LagCompensationSystem.cs b/Content.Server/Movement/Systems/LagCompensationSystem.cs index 0fbec2d4922..64965c2fee7 100644 --- a/Content.Server/Movement/Systems/LagCompensationSystem.cs +++ b/Content.Server/Movement/Systems/LagCompensationSystem.cs @@ -36,7 +36,9 @@ public override void Update(float frameTime) // Cull any old ones from active updates // Probably fine to include ignored. - foreach (var (_, comp) in EntityQuery(true)) + var query = AllEntityQuery(); + + while (query.MoveNext(out var comp)) { while (comp.Positions.TryPeek(out var pos)) { @@ -48,11 +50,6 @@ public override void Update(float frameTime) break; } - - if (comp.Positions.Count == 0) - { - RemComp(comp.Owner); - } } } @@ -61,7 +58,6 @@ private void OnLagMove(EntityUid uid, LagCompensationComponent component, ref Mo if (!args.NewPosition.EntityId.IsValid()) return; // probably being sent to nullspace for deletion. - EnsureComp(uid); component.Positions.Enqueue((_timing.CurTime, args.NewPosition, args.NewRotation)); } diff --git a/Content.Server/NPC/Components/ActiveNPCComponent.cs b/Content.Server/NPC/Components/ActiveNPCComponent.cs index e81ad25a465..75491ee1c85 100644 --- a/Content.Server/NPC/Components/ActiveNPCComponent.cs +++ b/Content.Server/NPC/Components/ActiveNPCComponent.cs @@ -4,4 +4,4 @@ namespace Content.Server.NPC.Components; /// Added to NPCs that are actively being updated. /// [RegisterComponent] -public sealed class ActiveNPCComponent : Component {} +public sealed partial class ActiveNPCComponent : Component {} diff --git a/Content.Server/NPC/Components/FactionExceptionComponent.cs b/Content.Server/NPC/Components/FactionExceptionComponent.cs index 661156668cc..e73b34905e1 100644 --- a/Content.Server/NPC/Components/FactionExceptionComponent.cs +++ b/Content.Server/NPC/Components/FactionExceptionComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.NPC.Components; /// Can be added to if pettable, see PettableFriendComponent. /// [RegisterComponent, Access(typeof(FactionExceptionSystem))] -public sealed class FactionExceptionComponent : Component +public sealed partial class FactionExceptionComponent : Component { /// /// List of entities that this NPC will refuse to attack diff --git a/Content.Server/NPC/Components/NPCAvoidanceComponent.cs b/Content.Server/NPC/Components/NPCAvoidanceComponent.cs index 57d954d4c10..44fcf00c1ca 100644 --- a/Content.Server/NPC/Components/NPCAvoidanceComponent.cs +++ b/Content.Server/NPC/Components/NPCAvoidanceComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.NPC.Components; /// Should this entity be considered for collision avoidance /// [RegisterComponent] -public sealed class NPCAvoidanceComponent : Component +public sealed partial class NPCAvoidanceComponent : Component { [ViewVariables(VVAccess.ReadWrite), DataField("enabled")] public bool Enabled = true; diff --git a/Content.Server/NPC/Components/NPCComponent.cs b/Content.Server/NPC/Components/NPCComponent.cs index df969048c59..b1d5bfcf5f2 100644 --- a/Content.Server/NPC/Components/NPCComponent.cs +++ b/Content.Server/NPC/Components/NPCComponent.cs @@ -1,13 +1,12 @@ using Content.Shared.NPC; -namespace Content.Server.NPC.Components +namespace Content.Server.NPC.Components; + +public abstract partial class NPCComponent : SharedNPCComponent { - public abstract class NPCComponent : SharedNPCComponent - { - /// - /// Contains all of the world data for a particular NPC in terms of how it sees the world. - /// - [DataField("blackboard", customTypeSerializer: typeof(NPCBlackboardSerializer))] - public NPCBlackboard Blackboard = new(); - } + /// + /// Contains all of the world data for a particular NPC in terms of how it sees the world. + /// + [DataField("blackboard", customTypeSerializer: typeof(NPCBlackboardSerializer))] + public NPCBlackboard Blackboard = new(); } diff --git a/Content.Server/NPC/Components/NPCJukeComponent.cs b/Content.Server/NPC/Components/NPCJukeComponent.cs index 670ea345e8b..4cbd8017f21 100644 --- a/Content.Server/NPC/Components/NPCJukeComponent.cs +++ b/Content.Server/NPC/Components/NPCJukeComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.NPC.Components; [RegisterComponent] -public sealed class NPCJukeComponent : Component +public sealed partial class NPCJukeComponent : Component { [DataField("jukeType")] public JukeType JukeType = JukeType.Away; diff --git a/Content.Server/NPC/Components/NPCMeleeCombatComponent.cs b/Content.Server/NPC/Components/NPCMeleeCombatComponent.cs index 17f4fee0909..810f26b69f4 100644 --- a/Content.Server/NPC/Components/NPCMeleeCombatComponent.cs +++ b/Content.Server/NPC/Components/NPCMeleeCombatComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.NPC.Components; /// Added to NPCs whenever they're in melee combat so they can be handled by the dedicated system. /// [RegisterComponent] -public sealed class NPCMeleeCombatComponent : Component +public sealed partial class NPCMeleeCombatComponent : Component { /// /// If the target is moving what is the chance for this NPC to miss. diff --git a/Content.Server/NPC/Components/NPCPathfindPointComponent.cs b/Content.Server/NPC/Components/NPCPathfindPointComponent.cs index 43966da4960..ca18674daa4 100644 --- a/Content.Server/NPC/Components/NPCPathfindPointComponent.cs +++ b/Content.Server/NPC/Components/NPCPathfindPointComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.NPC.Components; [RegisterComponent] -public sealed class NPCPathfindPointComponent : Component +public sealed partial class NPCPathfindPointComponent : Component { // /// // /// Next point for the NPC to head to. diff --git a/Content.Server/NPC/Components/NPCRangedCombatComponent.cs b/Content.Server/NPC/Components/NPCRangedCombatComponent.cs index 7d6d86dcb5b..2e4fcf5298b 100644 --- a/Content.Server/NPC/Components/NPCRangedCombatComponent.cs +++ b/Content.Server/NPC/Components/NPCRangedCombatComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.NPC.Components; /// Added to an NPC doing ranged combat. /// [RegisterComponent] -public sealed class NPCRangedCombatComponent : Component +public sealed partial class NPCRangedCombatComponent : Component { [ViewVariables] public EntityUid Target; diff --git a/Content.Server/NPC/Components/NPCRecentlyInjectedComponent.cs b/Content.Server/NPC/Components/NPCRecentlyInjectedComponent.cs index 0e8887eda4a..0bc5dce55b9 100644 --- a/Content.Server/NPC/Components/NPCRecentlyInjectedComponent.cs +++ b/Content.Server/NPC/Components/NPCRecentlyInjectedComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.NPC.Components /// Added when a medibot injects someone /// So they don't get injected again for at least a minute. [RegisterComponent] - public sealed class NPCRecentlyInjectedComponent : Component + public sealed partial class NPCRecentlyInjectedComponent : Component { [ViewVariables(VVAccess.ReadWrite), DataField("accumulator")] public float Accumulator = 0f; diff --git a/Content.Server/NPC/Components/NPCSteeringComponent.cs b/Content.Server/NPC/Components/NPCSteeringComponent.cs index 521e0688a16..52f96e9c554 100644 --- a/Content.Server/NPC/Components/NPCSteeringComponent.cs +++ b/Content.Server/NPC/Components/NPCSteeringComponent.cs @@ -12,7 +12,7 @@ namespace Content.Server.NPC.Components; /// Added to NPCs that are moving. /// [RegisterComponent] -public sealed class NPCSteeringComponent : Component +public sealed partial class NPCSteeringComponent : Component { #region Context Steering diff --git a/Content.Server/NPC/Components/NpcFactionMemberComponent.cs b/Content.Server/NPC/Components/NpcFactionMemberComponent.cs index 1c54a550a2b..72df5d0c8ab 100644 --- a/Content.Server/NPC/Components/NpcFactionMemberComponent.cs +++ b/Content.Server/NPC/Components/NpcFactionMemberComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.NPC.Components { [RegisterComponent] [Access(typeof(NpcFactionSystem))] - public sealed class NpcFactionMemberComponent : Component + public sealed partial class NpcFactionMemberComponent : Component { /// /// Factions this entity is a part of. diff --git a/Content.Server/NPC/Components/NpcFactionPrototype.cs b/Content.Server/NPC/Components/NpcFactionPrototype.cs index 53794ac3c14..dba51c6a60f 100644 --- a/Content.Server/NPC/Components/NpcFactionPrototype.cs +++ b/Content.Server/NPC/Components/NpcFactionPrototype.cs @@ -11,7 +11,7 @@ public sealed class NpcFactionPrototype : IPrototype { [ViewVariables] [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [ViewVariables(VVAccess.ReadWrite), DataField("friendly", customTypeSerializer:typeof(PrototypeIdListSerializer))] public List Friendly = new(); diff --git a/Content.Server/NPC/HTN/HTNBranch.cs b/Content.Server/NPC/HTN/HTNBranch.cs index 02941343814..256135b1dda 100644 --- a/Content.Server/NPC/HTN/HTNBranch.cs +++ b/Content.Server/NPC/HTN/HTNBranch.cs @@ -6,7 +6,7 @@ namespace Content.Server.NPC.HTN; /// AKA Method. This is a branch available for a compound task. /// [DataDefinition] -public sealed class HTNBranch +public sealed partial class HTNBranch { // Made this its own class if we ever need to change it. [DataField("preconditions")] diff --git a/Content.Server/NPC/HTN/HTNComponent.cs b/Content.Server/NPC/HTN/HTNComponent.cs index f2a80059127..f482e0808cb 100644 --- a/Content.Server/NPC/HTN/HTNComponent.cs +++ b/Content.Server/NPC/HTN/HTNComponent.cs @@ -3,8 +3,8 @@ namespace Content.Server.NPC.HTN; -[RegisterComponent, ComponentReference(typeof(NPCComponent))] -public sealed class HTNComponent : NPCComponent +[RegisterComponent] +public sealed partial class HTNComponent : NPCComponent { /// /// The base task to use for planning diff --git a/Content.Server/NPC/HTN/HTNCompoundTask.cs b/Content.Server/NPC/HTN/HTNCompoundTask.cs index 43a10aa3564..b2bd4e6c291 100644 --- a/Content.Server/NPC/HTN/HTNCompoundTask.cs +++ b/Content.Server/NPC/HTN/HTNCompoundTask.cs @@ -8,7 +8,7 @@ namespace Content.Server.NPC.HTN; /// /// This just points to a specific htnCompound prototype /// -public sealed class HTNCompoundTask : HTNTask, IHTNCompound +public sealed partial class HTNCompoundTask : HTNTask, IHTNCompound { [DataField("task", required: true, customTypeSerializer:typeof(PrototypeIdSerializer))] public string Task = string.Empty; diff --git a/Content.Server/NPC/HTN/HTNSystem.cs b/Content.Server/NPC/HTN/HTNSystem.cs index 6a85fe050c6..6fa9af0ccdf 100644 --- a/Content.Server/NPC/HTN/HTNSystem.cs +++ b/Content.Server/NPC/HTN/HTNSystem.cs @@ -8,8 +8,10 @@ using Content.Server.NPC.HTN.PrimitiveTasks; using Content.Server.NPC.Systems; using Content.Shared.Administration; +using Content.Shared.Mobs; using Content.Shared.NPC; using JetBrains.Annotations; +using Robust.Server.GameObjects; using Robust.Server.Player; using Robust.Shared.Players; using Robust.Shared.Prototypes; @@ -32,6 +34,10 @@ public sealed class HTNSystem : EntitySystem public override void Initialize() { base.Initialize(); + SubscribeLocalEvent(_npc.OnMobStateChange); + SubscribeLocalEvent(_npc.OnNPCMapInit); + SubscribeLocalEvent(_npc.OnPlayerNPCAttach); + SubscribeLocalEvent(_npc.OnPlayerNPCDetach); SubscribeLocalEvent(OnHTNShutdown); SubscribeNetworkEvent(OnHTNMessage); @@ -132,6 +138,7 @@ private void UpdateTask(HTNTask task) private void OnHTNShutdown(EntityUid uid, HTNComponent component, ComponentShutdown args) { + _npc.OnNPCShutdown(uid, component, args); component.PlanningToken?.Cancel(); component.PlanningJob = null; } @@ -224,7 +231,7 @@ public void UpdateNPC(ref int count, int maxUpdates, float frameTime) RaiseNetworkEvent(new HTNMessage() { - Uid = uid, + Uid = GetNetEntity(uid), Text = text.ToString(), }, session.ConnectedClient); } diff --git a/Content.Server/NPC/HTN/HTNTask.cs b/Content.Server/NPC/HTN/HTNTask.cs index f06b15234ab..0f7c0a377ea 100644 --- a/Content.Server/NPC/HTN/HTNTask.cs +++ b/Content.Server/NPC/HTN/HTNTask.cs @@ -1,6 +1,6 @@ namespace Content.Server.NPC.HTN; [ImplicitDataDefinitionForInheritors] -public abstract class HTNTask +public abstract partial class HTNTask { } diff --git a/Content.Server/NPC/HTN/Preconditions/ActiveHandComponentPrecondition.cs b/Content.Server/NPC/HTN/Preconditions/ActiveHandComponentPrecondition.cs index 063c9f50728..e2e65684ff6 100644 --- a/Content.Server/NPC/HTN/Preconditions/ActiveHandComponentPrecondition.cs +++ b/Content.Server/NPC/HTN/Preconditions/ActiveHandComponentPrecondition.cs @@ -6,7 +6,7 @@ namespace Content.Server.NPC.HTN.Preconditions; /// /// Returns true if the active hand entity has the specified components. /// -public sealed class ActiveHandComponentPrecondition : HTNPrecondition +public sealed partial class ActiveHandComponentPrecondition : HTNPrecondition { [Dependency] private readonly IEntityManager _entManager = default!; diff --git a/Content.Server/NPC/HTN/Preconditions/ActiveHandEntityPrecondition.cs b/Content.Server/NPC/HTN/Preconditions/ActiveHandEntityPrecondition.cs index a194ff486b2..0e6c63a433d 100644 --- a/Content.Server/NPC/HTN/Preconditions/ActiveHandEntityPrecondition.cs +++ b/Content.Server/NPC/HTN/Preconditions/ActiveHandEntityPrecondition.cs @@ -5,7 +5,7 @@ namespace Content.Server.NPC.HTN.Preconditions; /// /// Returns true if an entity is held in the active hand. /// -public sealed class ActiveHandEntityPrecondition : HTNPrecondition +public sealed partial class ActiveHandEntityPrecondition : HTNPrecondition { [Dependency] private readonly IEntityManager _entManager = default!; diff --git a/Content.Server/NPC/HTN/Preconditions/ActiveHandFreePrecondition.cs b/Content.Server/NPC/HTN/Preconditions/ActiveHandFreePrecondition.cs index 041ef085ee2..0ad205de747 100644 --- a/Content.Server/NPC/HTN/Preconditions/ActiveHandFreePrecondition.cs +++ b/Content.Server/NPC/HTN/Preconditions/ActiveHandFreePrecondition.cs @@ -5,7 +5,7 @@ namespace Content.Server.NPC.HTN.Preconditions; /// /// Returns true if the active hand is unoccupied. /// -public sealed class ActiveHandFreePrecondition : HTNPrecondition +public sealed partial class ActiveHandFreePrecondition : HTNPrecondition { [Dependency] private readonly IEntityManager _entManager = default!; diff --git a/Content.Server/NPC/HTN/Preconditions/BuckledPrecondition.cs b/Content.Server/NPC/HTN/Preconditions/BuckledPrecondition.cs index b7a07572a69..d4bbfde15ad 100644 --- a/Content.Server/NPC/HTN/Preconditions/BuckledPrecondition.cs +++ b/Content.Server/NPC/HTN/Preconditions/BuckledPrecondition.cs @@ -5,7 +5,7 @@ namespace Content.Server.NPC.HTN.Preconditions; /// /// Checks if the owner is buckled or not /// -public sealed class BuckledPrecondition : HTNPrecondition +public sealed partial class BuckledPrecondition : HTNPrecondition { private SharedBuckleSystem _buckle = default!; diff --git a/Content.Server/NPC/HTN/Preconditions/CoordinatesInRangePrecondition.cs b/Content.Server/NPC/HTN/Preconditions/CoordinatesInRangePrecondition.cs index 9d388fc7627..3e030aa8197 100644 --- a/Content.Server/NPC/HTN/Preconditions/CoordinatesInRangePrecondition.cs +++ b/Content.Server/NPC/HTN/Preconditions/CoordinatesInRangePrecondition.cs @@ -5,7 +5,7 @@ namespace Content.Server.NPC.HTN.Preconditions; /// /// Is the specified coordinate in range of us. /// -public sealed class CoordinatesInRangePrecondition : HTNPrecondition +public sealed partial class CoordinatesInRangePrecondition : HTNPrecondition { [Dependency] private readonly IEntityManager _entManager = default!; diff --git a/Content.Server/NPC/HTN/Preconditions/CoordinatesNotInRangePrecondition.cs b/Content.Server/NPC/HTN/Preconditions/CoordinatesNotInRangePrecondition.cs index 0688fb7e85d..6d8977bb7a7 100644 --- a/Content.Server/NPC/HTN/Preconditions/CoordinatesNotInRangePrecondition.cs +++ b/Content.Server/NPC/HTN/Preconditions/CoordinatesNotInRangePrecondition.cs @@ -5,7 +5,7 @@ namespace Content.Server.NPC.HTN.Preconditions; /// /// Is the specified coordinate not in range of us. /// -public sealed class CoordinatesNotInRangePrecondition : HTNPrecondition +public sealed partial class CoordinatesNotInRangePrecondition : HTNPrecondition { [Dependency] private readonly IEntityManager _entManager = default!; diff --git a/Content.Server/NPC/HTN/Preconditions/GunAmmoPrecondition.cs b/Content.Server/NPC/HTN/Preconditions/GunAmmoPrecondition.cs index 6bc0bf0ee5a..fe3b844ae34 100644 --- a/Content.Server/NPC/HTN/Preconditions/GunAmmoPrecondition.cs +++ b/Content.Server/NPC/HTN/Preconditions/GunAmmoPrecondition.cs @@ -6,7 +6,7 @@ namespace Content.Server.NPC.HTN.Preconditions; /// /// Gets ammo for this NPC's selected gun; either active hand or itself. /// -public sealed class GunAmmoPrecondition : HTNPrecondition +public sealed partial class GunAmmoPrecondition : HTNPrecondition { [Dependency] private readonly IEntityManager _entManager = default!; diff --git a/Content.Server/NPC/HTN/Preconditions/HTNPrecondition.cs b/Content.Server/NPC/HTN/Preconditions/HTNPrecondition.cs index 959acb90e0c..9ae18507c78 100644 --- a/Content.Server/NPC/HTN/Preconditions/HTNPrecondition.cs +++ b/Content.Server/NPC/HTN/Preconditions/HTNPrecondition.cs @@ -4,7 +4,7 @@ namespace Content.Server.NPC.HTN.Preconditions; /// Condition that needs to be true for a particular primitive task or compound task branch. /// [ImplicitDataDefinitionForInheritors] -public abstract class HTNPrecondition +public abstract partial class HTNPrecondition { /// /// Handles one-time initialization of this precondition. diff --git a/Content.Server/NPC/HTN/Preconditions/KeyExistsPrecondition.cs b/Content.Server/NPC/HTN/Preconditions/KeyExistsPrecondition.cs index 766f85241fe..72c4e6367fe 100644 --- a/Content.Server/NPC/HTN/Preconditions/KeyExistsPrecondition.cs +++ b/Content.Server/NPC/HTN/Preconditions/KeyExistsPrecondition.cs @@ -1,6 +1,6 @@ namespace Content.Server.NPC.HTN.Preconditions; -public sealed class KeyExistsPrecondition : HTNPrecondition +public sealed partial class KeyExistsPrecondition : HTNPrecondition { [DataField("key", required: true)] public string Key = string.Empty; diff --git a/Content.Server/NPC/HTN/Preconditions/PulledPrecondition.cs b/Content.Server/NPC/HTN/Preconditions/PulledPrecondition.cs index d20dd557209..64a72b13cfa 100644 --- a/Content.Server/NPC/HTN/Preconditions/PulledPrecondition.cs +++ b/Content.Server/NPC/HTN/Preconditions/PulledPrecondition.cs @@ -5,7 +5,7 @@ namespace Content.Server.NPC.HTN.Preconditions; /// /// Checks if the owner is being pulled or not. /// -public sealed class PulledPrecondition : HTNPrecondition +public sealed partial class PulledPrecondition : HTNPrecondition { private SharedPullingSystem _pulling = default!; diff --git a/Content.Server/NPC/HTN/Preconditions/TargetInLOSPrecondition.cs b/Content.Server/NPC/HTN/Preconditions/TargetInLOSPrecondition.cs index a80451075ff..0b233292a4b 100644 --- a/Content.Server/NPC/HTN/Preconditions/TargetInLOSPrecondition.cs +++ b/Content.Server/NPC/HTN/Preconditions/TargetInLOSPrecondition.cs @@ -2,7 +2,7 @@ namespace Content.Server.NPC.HTN.Preconditions; -public sealed class TargetInLOSPrecondition : HTNPrecondition +public sealed partial class TargetInLOSPrecondition : HTNPrecondition { [Dependency] private readonly IEntityManager _entManager = default!; private InteractionSystem _interaction = default!; diff --git a/Content.Server/NPC/HTN/Preconditions/TargetInRangePrecondition.cs b/Content.Server/NPC/HTN/Preconditions/TargetInRangePrecondition.cs index 85eaf2f7b41..5d616ba630e 100644 --- a/Content.Server/NPC/HTN/Preconditions/TargetInRangePrecondition.cs +++ b/Content.Server/NPC/HTN/Preconditions/TargetInRangePrecondition.cs @@ -5,7 +5,7 @@ namespace Content.Server.NPC.HTN.Preconditions; /// /// Is the specified key within the specified range of us. /// -public sealed class TargetInRangePrecondition : HTNPrecondition +public sealed partial class TargetInRangePrecondition : HTNPrecondition { [Dependency] private readonly IEntityManager _entManager = default!; diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/HTNOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/HTNOperator.cs index 145fb7a5b9f..d89fa92cebd 100644 --- a/Content.Server/NPC/HTN/PrimitiveTasks/HTNOperator.cs +++ b/Content.Server/NPC/HTN/PrimitiveTasks/HTNOperator.cs @@ -8,7 +8,7 @@ namespace Content.Server.NPC.HTN.PrimitiveTasks; /// Concrete code that gets run for an NPC task. /// [ImplicitDataDefinitionForInheritors, MeansImplicitUse] -public abstract class HTNOperator +public abstract partial class HTNOperator { /// /// Called once whenever prototypes reload. Typically used to inject dependencies. diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/HTNPrimitiveTask.cs b/Content.Server/NPC/HTN/PrimitiveTasks/HTNPrimitiveTask.cs index 49be119d1b6..476f9dcf22e 100644 --- a/Content.Server/NPC/HTN/PrimitiveTasks/HTNPrimitiveTask.cs +++ b/Content.Server/NPC/HTN/PrimitiveTasks/HTNPrimitiveTask.cs @@ -4,7 +4,7 @@ namespace Content.Server.NPC.HTN.PrimitiveTasks; -public sealed class HTNPrimitiveTask : HTNTask +public sealed partial class HTNPrimitiveTask : HTNTask { /// /// Should we re-apply our blackboard state as a result of our operator during startup? diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/JukeOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/JukeOperator.cs index 8ca900954fa..02a3b085104 100644 --- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/JukeOperator.cs +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/JukeOperator.cs @@ -2,7 +2,7 @@ namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators.Combat; -public sealed class JukeOperator : HTNOperator, IHtnConditionalShutdown +public sealed partial class JukeOperator : HTNOperator, IHtnConditionalShutdown { [Dependency] private readonly IEntityManager _entManager = default!; @@ -10,7 +10,7 @@ public sealed class JukeOperator : HTNOperator, IHtnConditionalShutdown public JukeType JukeType = JukeType.AdjacentTile; [DataField("shutdownState")] - public HTNPlanState ShutdownState { get; } = HTNPlanState.PlanFinished; + public HTNPlanState ShutdownState { get; private set; } = HTNPlanState.PlanFinished; public override void Startup(NPCBlackboard blackboard) { diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/Melee/MeleeOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/Melee/MeleeOperator.cs index 80ac6f10e77..c40b037d98f 100644 --- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/Melee/MeleeOperator.cs +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/Melee/MeleeOperator.cs @@ -10,7 +10,7 @@ namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators.Combat.Melee; /// /// Attacks the specified key in melee combat. /// -public sealed class MeleeOperator : HTNOperator, IHtnConditionalShutdown +public sealed partial class MeleeOperator : HTNOperator, IHtnConditionalShutdown { [Dependency] private readonly IEntityManager _entManager = default!; @@ -18,7 +18,7 @@ public sealed class MeleeOperator : HTNOperator, IHtnConditionalShutdown /// When to shut the task down. /// [DataField("shutdownState")] - public HTNPlanState ShutdownState { get; } = HTNPlanState.TaskFinished; + public HTNPlanState ShutdownState { get; private set; } = HTNPlanState.TaskFinished; /// /// Key that contains the target entity. diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/Ranged/GunOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/Ranged/GunOperator.cs index e0fe35fbf2d..53c5ed19522 100644 --- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/Ranged/GunOperator.cs +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/Ranged/GunOperator.cs @@ -8,12 +8,12 @@ namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators.Combat.Ranged; -public sealed class GunOperator : HTNOperator, IHtnConditionalShutdown +public sealed partial class GunOperator : HTNOperator, IHtnConditionalShutdown { [Dependency] private readonly IEntityManager _entManager = default!; [DataField("shutdownState")] - public HTNPlanState ShutdownState { get; } = HTNPlanState.TaskFinished; + public HTNPlanState ShutdownState { get; private set; } = HTNPlanState.TaskFinished; /// /// Key that contains the target entity. diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Interactions/AltInteractOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Interactions/AltInteractOperator.cs index 99386139660..c6075961f6a 100644 --- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Interactions/AltInteractOperator.cs +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Interactions/AltInteractOperator.cs @@ -6,7 +6,7 @@ namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators.Interactions; -public sealed class AltInteractOperator : HTNOperator +public sealed partial class AltInteractOperator : HTNOperator { [Dependency] private readonly IEntityManager _entManager = default!; diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Interactions/DropOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Interactions/DropOperator.cs index 68d49a60fb6..0ea062a9100 100644 --- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Interactions/DropOperator.cs +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Interactions/DropOperator.cs @@ -6,7 +6,7 @@ namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators.Interactions; /// /// Drops the active hand entity underneath us. /// -public sealed class DropOperator : HTNOperator +public sealed partial class DropOperator : HTNOperator { [Dependency] private readonly IEntityManager _entManager = default!; diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Interactions/EquipOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Interactions/EquipOperator.cs index fbd3d7ab577..e64a7184e4b 100644 --- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Interactions/EquipOperator.cs +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Interactions/EquipOperator.cs @@ -2,7 +2,7 @@ namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators.Interactions; -public sealed class EquipOperator : HTNOperator +public sealed partial class EquipOperator : HTNOperator { [Dependency] private readonly IEntityManager _entManager = default!; diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Interactions/InteractWithOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Interactions/InteractWithOperator.cs index 133c4f47230..d3f4f2ea8dc 100644 --- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Interactions/InteractWithOperator.cs +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Interactions/InteractWithOperator.cs @@ -4,7 +4,7 @@ namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators.Interactions; -public sealed class InteractWithOperator : HTNOperator +public sealed partial class InteractWithOperator : HTNOperator { [Dependency] private readonly IEntityManager _entManager = default!; diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Interactions/SwapToFreeHandOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Interactions/SwapToFreeHandOperator.cs index fc1b671762b..97307f49dcf 100644 --- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Interactions/SwapToFreeHandOperator.cs +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Interactions/SwapToFreeHandOperator.cs @@ -9,7 +9,7 @@ namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators.Interactions; /// /// Swaps to any free hand. /// -public sealed class SwapToFreeHandOperator : HTNOperator +public sealed partial class SwapToFreeHandOperator : HTNOperator { [Dependency] private readonly IEntityManager _entManager = default!; diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/MoveToOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/MoveToOperator.cs index e63026a8c91..dd35d2112c9 100644 --- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/MoveToOperator.cs +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/MoveToOperator.cs @@ -11,7 +11,7 @@ namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators; /// /// Moves an NPC to the specified target key. Hands the actual steering off to NPCSystem.Steering /// -public sealed class MoveToOperator : HTNOperator, IHtnConditionalShutdown +public sealed partial class MoveToOperator : HTNOperator, IHtnConditionalShutdown { [Dependency] private readonly IEntityManager _entManager = default!; [Dependency] private readonly IMapManager _mapManager = default!; @@ -23,7 +23,7 @@ public sealed class MoveToOperator : HTNOperator, IHtnConditionalShutdown /// When to shut the task down. /// [DataField("shutdownState")] - public HTNPlanState ShutdownState { get; } = HTNPlanState.TaskFinished; + public HTNPlanState ShutdownState { get; private set; } = HTNPlanState.TaskFinished; /// /// Should we assume the MovementTarget is reachable during planning or should we pathfind to it? diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/NoOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/NoOperator.cs index 550d232a734..672516dbd82 100644 --- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/NoOperator.cs +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/NoOperator.cs @@ -3,7 +3,7 @@ namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators; /// /// What it sounds like. /// -public sealed class NoOperator : HTNOperator +public sealed partial class NoOperator : HTNOperator { } diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/PickAccessibleComponentOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/PickAccessibleComponentOperator.cs index 53f1826c82d..9f89669f2d2 100644 --- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/PickAccessibleComponentOperator.cs +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/PickAccessibleComponentOperator.cs @@ -9,7 +9,7 @@ namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators; /// /// Picks a nearby component that is accessible. /// -public sealed class PickAccessibleComponentOperator : HTNOperator +public sealed partial class PickAccessibleComponentOperator : HTNOperator { [Dependency] private readonly IComponentFactory _factory = default!; [Dependency] private readonly IEntityManager _entManager = default!; diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/PickAccessibleOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/PickAccessibleOperator.cs index 2de9b6d6951..9025be12586 100644 --- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/PickAccessibleOperator.cs +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/PickAccessibleOperator.cs @@ -8,7 +8,7 @@ namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators; /// /// Chooses a nearby coordinate and puts it into the resulting key. /// -public sealed class PickAccessibleOperator : HTNOperator +public sealed partial class PickAccessibleOperator : HTNOperator { [Dependency] private readonly IEntityManager _entManager = default!; private PathfindingSystem _pathfinding = default!; diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/PickRandomRotationOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/PickRandomRotationOperator.cs index 6e891202191..38f1c87df71 100644 --- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/PickRandomRotationOperator.cs +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/PickRandomRotationOperator.cs @@ -4,7 +4,7 @@ namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators; -public sealed class PickRandomRotationOperator : HTNOperator +public sealed partial class PickRandomRotationOperator : HTNOperator { [Dependency] private readonly IRobustRandom _random = default!; diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/RandomOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/RandomOperator.cs index 1d8a23bd12c..b7ba1183273 100644 --- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/RandomOperator.cs +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/RandomOperator.cs @@ -4,7 +4,7 @@ namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators; -public sealed class RandomOperator : HTNOperator +public sealed partial class RandomOperator : HTNOperator { [Dependency] private readonly IEntityManager _entManager = default!; [Dependency] private readonly IRobustRandom _random = default!; diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/RotateToTargetOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/RotateToTargetOperator.cs index 1adc552b30f..71a25bc5486 100644 --- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/RotateToTargetOperator.cs +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/RotateToTargetOperator.cs @@ -2,7 +2,7 @@ namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators; -public sealed class RotateToTargetOperator : HTNOperator +public sealed partial class RotateToTargetOperator : HTNOperator { [Dependency] private readonly IEntityManager _entityManager = default!; private RotateToFaceSystem _rotate = default!; diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/SetFloatOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/SetFloatOperator.cs index 43057cda97d..7a460592cb4 100644 --- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/SetFloatOperator.cs +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/SetFloatOperator.cs @@ -6,7 +6,7 @@ namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators; /// /// Just sets a blackboard key to a float /// -public sealed class SetFloatOperator : HTNOperator +public sealed partial class SetFloatOperator : HTNOperator { [DataField("targetKey", required: true)] public string TargetKey = string.Empty; diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/SpeakOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/SpeakOperator.cs index eb60bba4011..7fb2f91b943 100644 --- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/SpeakOperator.cs +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/SpeakOperator.cs @@ -2,7 +2,7 @@ namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators; -public sealed class SpeakOperator : HTNOperator +public sealed partial class SpeakOperator : HTNOperator { private ChatSystem _chat = default!; diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/MedibotInjectOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/MedibotInjectOperator.cs index 7c60add4276..fa43c111b95 100644 --- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/MedibotInjectOperator.cs +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/MedibotInjectOperator.cs @@ -11,7 +11,7 @@ namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators.Specific; -public sealed class MedibotInjectOperator : HTNOperator +public sealed partial class MedibotInjectOperator : HTNOperator { [Dependency] private readonly IEntityManager _entMan = default!; private SharedAudioSystem _audio = default!; diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/PickNearbyInjectableOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/PickNearbyInjectableOperator.cs index 57138bf0bfa..2103cd737fa 100644 --- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/PickNearbyInjectableOperator.cs +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/PickNearbyInjectableOperator.cs @@ -11,7 +11,7 @@ namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators.Specific; -public sealed class PickNearbyInjectableOperator : HTNOperator +public sealed partial class PickNearbyInjectableOperator : HTNOperator { [Dependency] private readonly IEntityManager _entManager = default!; private EntityLookupSystem _lookup = default!; diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Test/PickPathfindPointOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Test/PickPathfindPointOperator.cs index 15a185e4b2d..edb597557ab 100644 --- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Test/PickPathfindPointOperator.cs +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Test/PickPathfindPointOperator.cs @@ -6,7 +6,7 @@ namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators.Test; -public sealed class PickPathfindPointOperator : HTNOperator +public sealed partial class PickPathfindPointOperator : HTNOperator { [Dependency] private readonly IEntityManager _entManager = default!; [Dependency] private readonly IRobustRandom _random = default!; diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/UtilityOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/UtilityOperator.cs index 8f716ceee08..2bf9b09b106 100644 --- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/UtilityOperator.cs +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/UtilityOperator.cs @@ -11,7 +11,7 @@ namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators; /// /// Utilises a to determine the best target and sets it to the Key. /// -public sealed class UtilityOperator : HTNOperator +public sealed partial class UtilityOperator : HTNOperator { [Dependency] private readonly IEntityManager _entManager = default!; diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/WaitOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/WaitOperator.cs index 6c45f2daec7..26fea76d700 100644 --- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/WaitOperator.cs +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/WaitOperator.cs @@ -3,7 +3,7 @@ namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators; /// /// Waits the specified amount of time. Removes the key when finished. /// -public sealed class WaitOperator : HTNOperator +public sealed partial class WaitOperator : HTNOperator { [Dependency] private readonly IEntityManager _entManager = default!; diff --git a/Content.Server/NPC/NPCBlackboard.cs b/Content.Server/NPC/NPCBlackboard.cs index 039ad4b3dc8..294d9d80273 100644 --- a/Content.Server/NPC/NPCBlackboard.cs +++ b/Content.Server/NPC/NPCBlackboard.cs @@ -12,7 +12,7 @@ namespace Content.Server.NPC; [DataDefinition] -public sealed class NPCBlackboard : IEnumerable> +public sealed partial class NPCBlackboard : IEnumerable> { /// /// Global defaults for NPCs diff --git a/Content.Server/NPC/Pathfinding/GridPathfindingComponent.cs b/Content.Server/NPC/Pathfinding/GridPathfindingComponent.cs index edd013c574c..335a2bbaa11 100644 --- a/Content.Server/NPC/Pathfinding/GridPathfindingComponent.cs +++ b/Content.Server/NPC/Pathfinding/GridPathfindingComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.NPC.Pathfinding; /// Stores the relevant pathfinding data for grids. /// [RegisterComponent, Access(typeof(PathfindingSystem))] -public sealed class GridPathfindingComponent : Component +public sealed partial class GridPathfindingComponent : Component { [ViewVariables] public readonly HashSet DirtyChunks = new(); diff --git a/Content.Server/NPC/Pathfinding/PathfindingSystem.Grid.cs b/Content.Server/NPC/Pathfinding/PathfindingSystem.Grid.cs index f2d4620a1ec..a173cb7942e 100644 --- a/Content.Server/NPC/Pathfinding/PathfindingSystem.Grid.cs +++ b/Content.Server/NPC/Pathfinding/PathfindingSystem.Grid.cs @@ -465,6 +465,14 @@ private void BuildBreadcrumbs(GridPathfindingChunk chunk, continue; } + var xform = xformQuery.GetComponent(ent); + + if (xform.ParentUid != grid.Owner || + grid.LocalToTile(xform.Coordinates) != tilePos) + { + continue; + } + tileEntities.Add(ent); } @@ -641,7 +649,7 @@ private void BuildBreadcrumbs(GridPathfindingChunk chunk, } } - // _sawmill.Debug($"Built breadcrumbs in {sw.Elapsed.TotalMilliseconds}ms"); + // Log.Debug($"Built breadcrumbs in {sw.Elapsed.TotalMilliseconds}ms"); SendBreadcrumbs(chunk, grid.Owner); } @@ -827,7 +835,7 @@ private void BuildNavmesh(GridPathfindingChunk chunk, GridPathfindingComponent c } } - // _sawmill.Debug($"Built navmesh in {sw.Elapsed.TotalMilliseconds}ms"); + // Log.Debug($"Built navmesh in {sw.Elapsed.TotalMilliseconds}ms"); SendPolys(chunk, component.Owner, chunkPolys); } diff --git a/Content.Server/NPC/Pathfinding/PathfindingSystem.cs b/Content.Server/NPC/Pathfinding/PathfindingSystem.cs index e29b2958b78..d8ecebc12ca 100644 --- a/Content.Server/NPC/Pathfinding/PathfindingSystem.cs +++ b/Content.Server/NPC/Pathfinding/PathfindingSystem.cs @@ -5,16 +5,14 @@ using System.Threading.Tasks; using Content.Server.Administration.Managers; using Content.Server.Destructible; -using Content.Server.NPC.Components; +using Content.Server.NPC.HTN; +using Content.Server.NPC.Systems; using Content.Shared.Administration; -using Content.Shared.Climbing; -using Content.Shared.Interaction; using Content.Shared.NPC; using Robust.Server.Player; using Robust.Shared.Enums; using Robust.Shared.Map; using Robust.Shared.Physics; -using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Systems; using Robust.Shared.Players; using Robust.Shared.Random; @@ -47,10 +45,9 @@ public sealed partial class PathfindingSystem : SharedPathfindingSystem [Dependency] private readonly DestructibleSystem _destructible = default!; [Dependency] private readonly EntityLookupSystem _lookup = default!; [Dependency] private readonly FixtureSystem _fixtures = default!; + [Dependency] private readonly NPCSystem _npc = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; - private ISawmill _sawmill = default!; - private readonly Dictionary _subscribedSessions = new(); [ViewVariables] @@ -69,7 +66,6 @@ public sealed partial class PathfindingSystem : SharedPathfindingSystem public override void Initialize() { base.Initialize(); - _sawmill = Logger.GetSawmill("nav"); _playerManager.PlayerStatusChanged += OnPlayerChange; InitializeGrid(); SubscribeNetworkEvent(OnBreadcrumbs); @@ -421,7 +417,7 @@ private PathRequest GetRequest(EntityUid entity, EntityCoordinates start, Entity public PathFlags GetFlags(EntityUid uid) { - if (!TryComp(uid, out var npc)) + if (!_npc.TryGetNpc(uid, out var npc)) { return PathFlags.None; } @@ -499,16 +495,16 @@ private async Task GetPath( private DebugPathPoly GetDebugPoly(PathPoly poly) { // Create fake neighbors for it - var neighbors = new List(poly.Neighbors.Count); + var neighbors = new List(poly.Neighbors.Count); foreach (var neighbor in poly.Neighbors) { - neighbors.Add(neighbor.Coordinates); + neighbors.Add(GetNetCoordinates(neighbor.Coordinates)); } return new DebugPathPoly() { - GraphUid = poly.GraphUid, + GraphUid = GetNetEntity(poly.GraphUid), ChunkOrigin = poly.ChunkOrigin, TileIndex = poly.TileIndex, Box = poly.Box, @@ -583,12 +579,14 @@ private void SendBreadcrumbs(ICommonSession pSession) foreach (var comp in EntityQuery(true)) { - msg.Breadcrumbs.Add(comp.Owner, new Dictionary>(comp.Chunks.Count)); + var netGrid = GetNetEntity(comp.Owner); + + msg.Breadcrumbs.Add(netGrid, new Dictionary>(comp.Chunks.Count)); foreach (var chunk in comp.Chunks) { var data = GetCrumbs(chunk.Value); - msg.Breadcrumbs[comp.Owner].Add(chunk.Key, data); + msg.Breadcrumbs[netGrid].Add(chunk.Key, data); } } @@ -630,12 +628,14 @@ private void SendPolys(ICommonSession pSession) foreach (var comp in EntityQuery(true)) { - msg.Polys.Add(comp.Owner, new Dictionary>>(comp.Chunks.Count)); + var netGrid = GetNetEntity(comp.Owner); + + msg.Polys.Add(netGrid, new Dictionary>>(comp.Chunks.Count)); foreach (var chunk in comp.Chunks) { var data = GetPolys(chunk.Value); - msg.Polys[comp.Owner].Add(chunk.Key, data); + msg.Polys[netGrid].Add(chunk.Key, data); } } @@ -650,7 +650,7 @@ private void SendBreadcrumbs(GridPathfindingChunk chunk, EntityUid gridUid) var msg = new PathBreadcrumbsRefreshMessage() { Origin = chunk.Origin, - GridUid = gridUid, + GridUid = GetNetEntity(gridUid), Data = GetCrumbs(chunk), }; @@ -684,7 +684,7 @@ private void SendPolys(GridPathfindingChunk chunk, EntityUid gridUid, var msg = new PathPolysRefreshMessage() { Origin = chunk.Origin, - GridUid = gridUid, + GridUid = GetNetEntity(gridUid), Polys = data, }; diff --git a/Content.Server/NPC/Queries/Considerations/DrinkValueCon.cs b/Content.Server/NPC/Queries/Considerations/DrinkValueCon.cs index 1ab5b204388..d45ab16fc2e 100644 --- a/Content.Server/NPC/Queries/Considerations/DrinkValueCon.cs +++ b/Content.Server/NPC/Queries/Considerations/DrinkValueCon.cs @@ -1,6 +1,6 @@ namespace Content.Server.NPC.Queries.Considerations; -public sealed class DrinkValueCon : UtilityConsideration +public sealed partial class DrinkValueCon : UtilityConsideration { } diff --git a/Content.Server/NPC/Queries/Considerations/FoodValueCon.cs b/Content.Server/NPC/Queries/Considerations/FoodValueCon.cs index c10213f3f14..9aabe5c56b4 100644 --- a/Content.Server/NPC/Queries/Considerations/FoodValueCon.cs +++ b/Content.Server/NPC/Queries/Considerations/FoodValueCon.cs @@ -1,6 +1,6 @@ namespace Content.Server.NPC.Queries.Considerations; -public sealed class FoodValueCon : UtilityConsideration +public sealed partial class FoodValueCon : UtilityConsideration { } diff --git a/Content.Server/NPC/Queries/Considerations/TargetAccessibleCon.cs b/Content.Server/NPC/Queries/Considerations/TargetAccessibleCon.cs index d47f7417eb4..3f2318df25b 100644 --- a/Content.Server/NPC/Queries/Considerations/TargetAccessibleCon.cs +++ b/Content.Server/NPC/Queries/Considerations/TargetAccessibleCon.cs @@ -3,7 +3,7 @@ namespace Content.Server.NPC.Queries.Considerations; /// /// Returns 1f if the target is freely accessible (e.g. not in locked storage). /// -public sealed class TargetAccessibleCon : UtilityConsideration +public sealed partial class TargetAccessibleCon : UtilityConsideration { } diff --git a/Content.Server/NPC/Queries/Considerations/TargetAmmoCon.cs b/Content.Server/NPC/Queries/Considerations/TargetAmmoCon.cs index afae94eb47e..c57d8bc6d3b 100644 --- a/Content.Server/NPC/Queries/Considerations/TargetAmmoCon.cs +++ b/Content.Server/NPC/Queries/Considerations/TargetAmmoCon.cs @@ -1,6 +1,6 @@ namespace Content.Server.NPC.Queries.Considerations; -public sealed class TargetAmmoCon : UtilityConsideration +public sealed partial class TargetAmmoCon : UtilityConsideration { } diff --git a/Content.Server/NPC/Queries/Considerations/TargetAmmoMatchesCon.cs b/Content.Server/NPC/Queries/Considerations/TargetAmmoMatchesCon.cs index 4eac5d51386..564848e660b 100644 --- a/Content.Server/NPC/Queries/Considerations/TargetAmmoMatchesCon.cs +++ b/Content.Server/NPC/Queries/Considerations/TargetAmmoMatchesCon.cs @@ -3,7 +3,7 @@ namespace Content.Server.NPC.Queries.Considerations; /// /// Returns 1f where the specified target is valid for the active hand's whitelist. /// -public sealed class TargetAmmoMatchesCon : UtilityConsideration +public sealed partial class TargetAmmoMatchesCon : UtilityConsideration { } diff --git a/Content.Server/NPC/Queries/Considerations/TargetDistanceCon.cs b/Content.Server/NPC/Queries/Considerations/TargetDistanceCon.cs index a2cb99baf11..cd7ff548727 100644 --- a/Content.Server/NPC/Queries/Considerations/TargetDistanceCon.cs +++ b/Content.Server/NPC/Queries/Considerations/TargetDistanceCon.cs @@ -1,6 +1,6 @@ namespace Content.Server.NPC.Queries.Considerations; -public sealed class TargetDistanceCon : UtilityConsideration +public sealed partial class TargetDistanceCon : UtilityConsideration { } diff --git a/Content.Server/NPC/Queries/Considerations/TargetHealthCon.cs b/Content.Server/NPC/Queries/Considerations/TargetHealthCon.cs index a6496670af8..d4e8a277ea6 100644 --- a/Content.Server/NPC/Queries/Considerations/TargetHealthCon.cs +++ b/Content.Server/NPC/Queries/Considerations/TargetHealthCon.cs @@ -1,6 +1,6 @@ namespace Content.Server.NPC.Queries.Considerations; -public sealed class TargetHealthCon : UtilityConsideration +public sealed partial class TargetHealthCon : UtilityConsideration { } diff --git a/Content.Server/NPC/Queries/Considerations/TargetInLOSCon.cs b/Content.Server/NPC/Queries/Considerations/TargetInLOSCon.cs index 219a301f0b2..8d4480a3058 100644 --- a/Content.Server/NPC/Queries/Considerations/TargetInLOSCon.cs +++ b/Content.Server/NPC/Queries/Considerations/TargetInLOSCon.cs @@ -3,7 +3,7 @@ namespace Content.Server.NPC.Queries.Considerations; /// /// Returns whether the target is in line-of-sight. /// -public sealed class TargetInLOSCon : UtilityConsideration +public sealed partial class TargetInLOSCon : UtilityConsideration { } diff --git a/Content.Server/NPC/Queries/Considerations/TargetInLOSOrCurrentCon.cs b/Content.Server/NPC/Queries/Considerations/TargetInLOSOrCurrentCon.cs index 2919a91c112..8701c17c73d 100644 --- a/Content.Server/NPC/Queries/Considerations/TargetInLOSOrCurrentCon.cs +++ b/Content.Server/NPC/Queries/Considerations/TargetInLOSOrCurrentCon.cs @@ -3,7 +3,7 @@ namespace Content.Server.NPC.Queries.Considerations; /// /// Placeholder considerations -> returns 1f if they're in LOS or the current target. /// -public sealed class TargetInLOSOrCurrentCon : UtilityConsideration +public sealed partial class TargetInLOSOrCurrentCon : UtilityConsideration { } diff --git a/Content.Server/NPC/Queries/Considerations/TargetIsAliveCon.cs b/Content.Server/NPC/Queries/Considerations/TargetIsAliveCon.cs index 3c74811ca6d..7892d9afb49 100644 --- a/Content.Server/NPC/Queries/Considerations/TargetIsAliveCon.cs +++ b/Content.Server/NPC/Queries/Considerations/TargetIsAliveCon.cs @@ -3,7 +3,7 @@ namespace Content.Server.NPC.Queries.Considerations; /// /// Returns 1f if the target is alive or 0f if not. /// -public sealed class TargetIsAliveCon : UtilityConsideration +public sealed partial class TargetIsAliveCon : UtilityConsideration { } diff --git a/Content.Server/NPC/Queries/Considerations/TargetIsCritCon.cs b/Content.Server/NPC/Queries/Considerations/TargetIsCritCon.cs index 03c73a14df8..0eb9f948554 100644 --- a/Content.Server/NPC/Queries/Considerations/TargetIsCritCon.cs +++ b/Content.Server/NPC/Queries/Considerations/TargetIsCritCon.cs @@ -3,7 +3,7 @@ namespace Content.Server.NPC.Queries.Considerations; /// /// Returns 1f if the target is crit or 0f if not. /// -public sealed class TargetIsCritCon : UtilityConsideration +public sealed partial class TargetIsCritCon : UtilityConsideration { } diff --git a/Content.Server/NPC/Queries/Considerations/TargetIsDeadCon.cs b/Content.Server/NPC/Queries/Considerations/TargetIsDeadCon.cs index 53e0a9b595d..8a08e1938f6 100644 --- a/Content.Server/NPC/Queries/Considerations/TargetIsDeadCon.cs +++ b/Content.Server/NPC/Queries/Considerations/TargetIsDeadCon.cs @@ -3,7 +3,7 @@ namespace Content.Server.NPC.Queries.Considerations; /// /// Returns 1f if the target is dead or 0f if not. /// -public sealed class TargetIsDeadCon : UtilityConsideration +public sealed partial class TargetIsDeadCon : UtilityConsideration { } diff --git a/Content.Server/NPC/Queries/Considerations/TargetMeleeCon.cs b/Content.Server/NPC/Queries/Considerations/TargetMeleeCon.cs index 5be6ee65b56..d825bbde70d 100644 --- a/Content.Server/NPC/Queries/Considerations/TargetMeleeCon.cs +++ b/Content.Server/NPC/Queries/Considerations/TargetMeleeCon.cs @@ -3,7 +3,7 @@ namespace Content.Server.NPC.Queries.Considerations; /// /// Gets the DPS out of 100. /// -public sealed class TargetMeleeCon : UtilityConsideration +public sealed partial class TargetMeleeCon : UtilityConsideration { } diff --git a/Content.Server/NPC/Queries/Considerations/UtilityConsideration.cs b/Content.Server/NPC/Queries/Considerations/UtilityConsideration.cs index e74b7aa9599..75b215fe686 100644 --- a/Content.Server/NPC/Queries/Considerations/UtilityConsideration.cs +++ b/Content.Server/NPC/Queries/Considerations/UtilityConsideration.cs @@ -4,7 +4,7 @@ namespace Content.Server.NPC.Queries.Considerations; [ImplicitDataDefinitionForInheritors, MeansImplicitUse] -public abstract class UtilityConsideration +public abstract partial class UtilityConsideration { [DataField("curve", required: true)] public IUtilityCurve Curve = default!; diff --git a/Content.Server/NPC/Queries/Curves/BoolCurve.cs b/Content.Server/NPC/Queries/Curves/BoolCurve.cs index 70651167a9e..8ba043825cd 100644 --- a/Content.Server/NPC/Queries/Curves/BoolCurve.cs +++ b/Content.Server/NPC/Queries/Curves/BoolCurve.cs @@ -1,5 +1,5 @@ namespace Content.Server.NPC.Queries.Curves; -public sealed class BoolCurve : IUtilityCurve +public sealed partial class BoolCurve : IUtilityCurve { } diff --git a/Content.Server/NPC/Queries/Curves/IUtilityCurve.cs b/Content.Server/NPC/Queries/Curves/IUtilityCurve.cs index db48f32d2ed..d4dc6ee0345 100644 --- a/Content.Server/NPC/Queries/Curves/IUtilityCurve.cs +++ b/Content.Server/NPC/Queries/Curves/IUtilityCurve.cs @@ -1,7 +1,7 @@ namespace Content.Server.NPC.Queries.Curves; [ImplicitDataDefinitionForInheritors] -public interface IUtilityCurve +public partial interface IUtilityCurve { } diff --git a/Content.Server/NPC/Queries/Curves/InverseBoolCurve.cs b/Content.Server/NPC/Queries/Curves/InverseBoolCurve.cs index 13b31771c7a..cca7ebd87c2 100644 --- a/Content.Server/NPC/Queries/Curves/InverseBoolCurve.cs +++ b/Content.Server/NPC/Queries/Curves/InverseBoolCurve.cs @@ -1,6 +1,6 @@ namespace Content.Server.NPC.Queries.Curves; -public sealed class InverseBoolCurve : IUtilityCurve +public sealed partial class InverseBoolCurve : IUtilityCurve { } diff --git a/Content.Server/NPC/Queries/Curves/PresetCurve.cs b/Content.Server/NPC/Queries/Curves/PresetCurve.cs index 689be8e2ec0..8e62e414222 100644 --- a/Content.Server/NPC/Queries/Curves/PresetCurve.cs +++ b/Content.Server/NPC/Queries/Curves/PresetCurve.cs @@ -2,7 +2,7 @@ namespace Content.Server.NPC.Queries.Curves; -public sealed class PresetCurve : IUtilityCurve +public sealed partial class PresetCurve : IUtilityCurve { - [DataField("preset", required: true, customTypeSerializer:typeof(PrototypeIdSerializer))] public readonly string Preset = default!; + [DataField("preset", required: true, customTypeSerializer:typeof(PrototypeIdSerializer))] public string Preset = default!; } diff --git a/Content.Server/NPC/Queries/Curves/QuadraticCurve.cs b/Content.Server/NPC/Queries/Curves/QuadraticCurve.cs index 76ad92c2a49..a20e638c1e8 100644 --- a/Content.Server/NPC/Queries/Curves/QuadraticCurve.cs +++ b/Content.Server/NPC/Queries/Curves/QuadraticCurve.cs @@ -1,12 +1,12 @@ namespace Content.Server.NPC.Queries.Curves; -public sealed class QuadraticCurve : IUtilityCurve +public sealed partial class QuadraticCurve : IUtilityCurve { - [DataField("slope")] public readonly float Slope = 1f; + [DataField("slope")] public float Slope = 1f; - [DataField("exponent")] public readonly float Exponent = 1f; + [DataField("exponent")] public float Exponent = 1f; - [DataField("yOffset")] public readonly float YOffset; + [DataField("yOffset")] public float YOffset; - [DataField("xOffset")] public readonly float XOffset; + [DataField("xOffset")] public float XOffset; } diff --git a/Content.Server/NPC/Queries/Queries/ClothingSlotFilter.cs b/Content.Server/NPC/Queries/Queries/ClothingSlotFilter.cs index 427b388112a..fab90dd2c1c 100644 --- a/Content.Server/NPC/Queries/Queries/ClothingSlotFilter.cs +++ b/Content.Server/NPC/Queries/Queries/ClothingSlotFilter.cs @@ -2,7 +2,7 @@ namespace Content.Server.NPC.Queries.Queries; -public sealed class ClothingSlotFilter : UtilityQueryFilter +public sealed partial class ClothingSlotFilter : UtilityQueryFilter { [DataField("slotFlags", required: true)] public SlotFlags SlotFlags = SlotFlags.NONE; diff --git a/Content.Server/NPC/Queries/Queries/ComponentFilter.cs b/Content.Server/NPC/Queries/Queries/ComponentFilter.cs index f89a00d77be..0df4bd902f1 100644 --- a/Content.Server/NPC/Queries/Queries/ComponentFilter.cs +++ b/Content.Server/NPC/Queries/Queries/ComponentFilter.cs @@ -2,7 +2,7 @@ namespace Content.Server.NPC.Queries.Queries; -public sealed class ComponentFilter : UtilityQueryFilter +public sealed partial class ComponentFilter : UtilityQueryFilter { /// /// Components to filter for. diff --git a/Content.Server/NPC/Queries/Queries/ComponentQuery.cs b/Content.Server/NPC/Queries/Queries/ComponentQuery.cs index f426fc4f400..ed1c37eabc3 100644 --- a/Content.Server/NPC/Queries/Queries/ComponentQuery.cs +++ b/Content.Server/NPC/Queries/Queries/ComponentQuery.cs @@ -5,7 +5,7 @@ namespace Content.Server.NPC.Queries.Queries; /// /// Returns nearby components that match the specified components. /// -public sealed class ComponentQuery : UtilityQuery +public sealed partial class ComponentQuery : UtilityQuery { [DataField("components", required: true)] public ComponentRegistry Components = default!; diff --git a/Content.Server/NPC/Queries/Queries/InventoryQuery.cs b/Content.Server/NPC/Queries/Queries/InventoryQuery.cs index b1b250d8205..0cb432f6642 100644 --- a/Content.Server/NPC/Queries/Queries/InventoryQuery.cs +++ b/Content.Server/NPC/Queries/Queries/InventoryQuery.cs @@ -3,7 +3,7 @@ namespace Content.Server.NPC.Queries.Queries; /// /// Returns inventory entities recursively. /// -public sealed class InventoryQuery : UtilityQuery +public sealed partial class InventoryQuery : UtilityQuery { } diff --git a/Content.Server/NPC/Queries/Queries/NearbyHostilesQuery.cs b/Content.Server/NPC/Queries/Queries/NearbyHostilesQuery.cs index 25e53438f6d..d6a6efbdb19 100644 --- a/Content.Server/NPC/Queries/Queries/NearbyHostilesQuery.cs +++ b/Content.Server/NPC/Queries/Queries/NearbyHostilesQuery.cs @@ -5,7 +5,7 @@ namespace Content.Server.NPC.Queries.Queries; /// /// Returns nearby entities considered hostile from /// -public sealed class NearbyHostilesQuery : UtilityQuery +public sealed partial class NearbyHostilesQuery : UtilityQuery { } diff --git a/Content.Server/NPC/Queries/Queries/PuddleFilter.cs b/Content.Server/NPC/Queries/Queries/PuddleFilter.cs index 65ebfda3959..436a97d74fc 100644 --- a/Content.Server/NPC/Queries/Queries/PuddleFilter.cs +++ b/Content.Server/NPC/Queries/Queries/PuddleFilter.cs @@ -1,6 +1,6 @@ namespace Content.Server.NPC.Queries.Queries; -public sealed class PuddleFilter : UtilityQueryFilter +public sealed partial class PuddleFilter : UtilityQueryFilter { } diff --git a/Content.Server/NPC/Queries/Queries/PuddlesQuery.cs b/Content.Server/NPC/Queries/Queries/PuddlesQuery.cs index 791e5bee827..0c88cc2de6b 100644 --- a/Content.Server/NPC/Queries/Queries/PuddlesQuery.cs +++ b/Content.Server/NPC/Queries/Queries/PuddlesQuery.cs @@ -1,6 +1,6 @@ namespace Content.Server.NPC.Queries.Queries; -public sealed class PuddlesQuery : UtilityQuery +public sealed partial class PuddlesQuery : UtilityQuery { } diff --git a/Content.Server/NPC/Queries/Queries/UtilityQuery.cs b/Content.Server/NPC/Queries/Queries/UtilityQuery.cs index 401d41c2a17..c457b8aef72 100644 --- a/Content.Server/NPC/Queries/Queries/UtilityQuery.cs +++ b/Content.Server/NPC/Queries/Queries/UtilityQuery.cs @@ -4,7 +4,7 @@ namespace Content.Server.NPC.Queries.Queries; /// Adds entities to a query. /// [ImplicitDataDefinitionForInheritors] -public abstract class UtilityQuery +public abstract partial class UtilityQuery { -} \ No newline at end of file +} diff --git a/Content.Server/NPC/Queries/Queries/UtilityQueryFilter.cs b/Content.Server/NPC/Queries/Queries/UtilityQueryFilter.cs index 906cf23be36..99f6f86c51a 100644 --- a/Content.Server/NPC/Queries/Queries/UtilityQueryFilter.cs +++ b/Content.Server/NPC/Queries/Queries/UtilityQueryFilter.cs @@ -3,7 +3,7 @@ namespace Content.Server.NPC.Queries.Queries; /// /// Removes entities from a query. /// -public abstract class UtilityQueryFilter : UtilityQuery +public abstract partial class UtilityQueryFilter : UtilityQuery { -} \ No newline at end of file +} diff --git a/Content.Server/NPC/Queries/UtilityQueryPrototype.cs b/Content.Server/NPC/Queries/UtilityQueryPrototype.cs index 934ac89926f..e9b7e244fd6 100644 --- a/Content.Server/NPC/Queries/UtilityQueryPrototype.cs +++ b/Content.Server/NPC/Queries/UtilityQueryPrototype.cs @@ -13,7 +13,7 @@ namespace Content.Server.NPC.Queries; public sealed class UtilityQueryPrototype : IPrototype { [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [ViewVariables(VVAccess.ReadWrite), DataField("query")] public List Query = new(); diff --git a/Content.Server/NPC/Queries/UtilityService.cs b/Content.Server/NPC/Queries/UtilityService.cs index d8b0a3457dc..295cd995b0b 100644 --- a/Content.Server/NPC/Queries/UtilityService.cs +++ b/Content.Server/NPC/Queries/UtilityService.cs @@ -6,7 +6,7 @@ namespace Content.Server.NPC.Queries; /// Utility queries that run regularly to update an NPC without re-doing their thinking logic. /// [DataDefinition] -public sealed class UtilityService +public sealed partial class UtilityService { /// /// Identifier to use for this service. This is used to track its cooldown. diff --git a/Content.Server/NPC/Systems/NPCCombatSystem.cs b/Content.Server/NPC/Systems/NPCCombatSystem.cs index a06fd6a2879..fe01b2fcbe8 100644 --- a/Content.Server/NPC/Systems/NPCCombatSystem.cs +++ b/Content.Server/NPC/Systems/NPCCombatSystem.cs @@ -21,7 +21,6 @@ public sealed partial class NPCCombatSystem : EntitySystem [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly NPCSteeringSystem _steering = default!; [Dependency] private readonly SharedMeleeWeaponSystem _melee = default!; - [Dependency] private readonly SharedPhysicsSystem _physics = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; /// diff --git a/Content.Server/NPC/Systems/NPCJukeSystem.cs b/Content.Server/NPC/Systems/NPCJukeSystem.cs index 1f089a666c3..19f566405a2 100644 --- a/Content.Server/NPC/Systems/NPCJukeSystem.cs +++ b/Content.Server/NPC/Systems/NPCJukeSystem.cs @@ -20,7 +20,7 @@ public sealed class NPCJukeSystem : EntitySystem [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly EntityLookupSystem _lookup = default!; [Dependency] private readonly MeleeWeaponSystem _melee = default!; - [Dependency] private readonly SharedPhysicsSystem _physics = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; private EntityQuery _npcMeleeQuery; private EntityQuery _npcRangedQuery; @@ -156,15 +156,19 @@ private void OnJukeSteering(EntityUid uid, NPCJukeComponent component, ref NPCSt if (cdRemaining < attackCooldown * 0.45f) return; - if (!_physics.TryGetNearestPoints(uid, melee.Target, out var pointA, out var pointB)) - return; + // If we get whacky boss mobs might need nearestpos that's more of a PITA + // so will just use this for now. + var obstacleDirection = _transform.GetWorldPosition(melee.Target) - args.WorldPosition; - var obstacleDirection = pointB - args.WorldPosition; + if (obstacleDirection == Vector2.Zero) + { + obstacleDirection = _random.NextVector2(); + } // If they're moving away then pursue anyway. // If just hit then always back up a bit. if (cdRemaining < attackCooldown * 0.90f && - TryComp(melee.Target, out var targetPhysics) && + _physicsQuery.TryGetComponent(melee.Target, out var targetPhysics) && Vector2.Dot(targetPhysics.LinearVelocity, obstacleDirection) > 0f) { return; @@ -173,6 +177,7 @@ private void OnJukeSteering(EntityUid uid, NPCJukeComponent component, ref NPCSt if (cdRemaining < TimeSpan.FromSeconds(1f / _melee.GetAttackRate(weaponUid, uid, weapon)) * 0.45f) return; + // TODO: Probably add in our bounds and target bounds for ideal distance. var idealDistance = weapon.Range * 4f; var obstacleDistance = obstacleDirection.Length(); diff --git a/Content.Server/NPC/Systems/NPCSteeringSystem.cs b/Content.Server/NPC/Systems/NPCSteeringSystem.cs index dcfd7ecc5f9..62fd13fc9fb 100644 --- a/Content.Server/NPC/Systems/NPCSteeringSystem.cs +++ b/Content.Server/NPC/Systems/NPCSteeringSystem.cs @@ -49,7 +49,6 @@ public sealed partial class NPCSteeringSystem : SharedNPCSteeringSystem [Dependency] private readonly IConfigurationManager _configManager = default!; [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly IMapManager _mapManager = default!; - [Dependency] private readonly IParallelManager _parallel = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly ClimbSystem _climb = default!; [Dependency] private readonly DoAfterSystem _doAfter = default!; @@ -89,18 +88,13 @@ public override void Initialize() { base.Initialize(); + Log.Level = LogLevel.Info; _fixturesQuery = GetEntityQuery(); _modifierQuery = GetEntityQuery(); _factionQuery = GetEntityQuery(); _physicsQuery = GetEntityQuery(); _xformQuery = GetEntityQuery(); -#if DEBUG - Log.Level = LogLevel.Warning; -#else - Log.Level = LogLevel.Debug; -#endif - for (var i = 0; i < InterestDirections; i++) { Directions[i] = new Angle(InterestRadians * i).ToVec(); @@ -274,7 +268,7 @@ public override void Update(float frameTime) var (uid, steering, mover, _) = npcs[i]; data.Add(new NPCSteeringDebugData( - uid, + GetNetEntity(uid), mover.CurTickSprintMovement, steering.Interest, steering.Danger, diff --git a/Content.Server/NPC/Systems/NPCSystem.Blackboard.cs b/Content.Server/NPC/Systems/NPCSystem.Blackboard.cs index f2ce0ef80fb..f85f5853db6 100644 --- a/Content.Server/NPC/Systems/NPCSystem.Blackboard.cs +++ b/Content.Server/NPC/Systems/NPCSystem.Blackboard.cs @@ -1,10 +1,10 @@ -using Content.Server.NPC.Components; +using Content.Server.NPC.HTN; namespace Content.Server.NPC.Systems; public sealed partial class NPCSystem { - public void SetBlackboard(EntityUid uid, string key, object value, NPCComponent? component = null) + public void SetBlackboard(EntityUid uid, string key, object value, HTNComponent? component = null) { if (!Resolve(uid, ref component, false)) { diff --git a/Content.Server/NPC/Systems/NPCSystem.cs b/Content.Server/NPC/Systems/NPCSystem.cs index 1a2d3fcab3a..40b8e26897a 100644 --- a/Content.Server/NPC/Systems/NPCSystem.cs +++ b/Content.Server/NPC/Systems/NPCSystem.cs @@ -1,9 +1,9 @@ +using System.Diagnostics.CodeAnalysis; using Content.Server.NPC.Components; using Content.Server.NPC.HTN; using Content.Shared.CCVar; using Content.Shared.Mobs; using Content.Shared.Mobs.Systems; -using JetBrains.Annotations; using Robust.Server.GameObjects; using Robust.Shared.Configuration; @@ -12,7 +12,6 @@ namespace Content.Server.NPC.Systems /// /// Handles NPCs running every tick. /// - [UsedImplicitly] public sealed partial class NPCSystem : EntitySystem { [Dependency] private readonly IConfigurationManager _configurationManager = default!; @@ -33,21 +32,16 @@ public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnMobStateChange); - SubscribeLocalEvent(OnNPCMapInit); - SubscribeLocalEvent(OnNPCShutdown); - SubscribeLocalEvent(OnPlayerNPCAttach); - SubscribeLocalEvent(OnPlayerNPCDetach); _configurationManager.OnValueChanged(CCVars.NPCEnabled, SetEnabled, true); _configurationManager.OnValueChanged(CCVars.NPCMaxUpdates, SetMaxUpdates, true); } - private void OnPlayerNPCAttach(EntityUid uid, NPCComponent component, PlayerAttachedEvent args) + public void OnPlayerNPCAttach(EntityUid uid, HTNComponent component, PlayerAttachedEvent args) { SleepNPC(uid, component); } - private void OnPlayerNPCDetach(EntityUid uid, NPCComponent component, PlayerDetachedEvent args) + public void OnPlayerNPCDetach(EntityUid uid, HTNComponent component, PlayerDetachedEvent args) { if (_mobState.IsIncapacitated(uid) || TerminatingOrDeleted(uid)) return; @@ -65,13 +59,13 @@ public override void Shutdown() _configurationManager.UnsubValueChanged(CCVars.NPCMaxUpdates, SetMaxUpdates); } - private void OnNPCMapInit(EntityUid uid, NPCComponent component, MapInitEvent args) + public void OnNPCMapInit(EntityUid uid, HTNComponent component, MapInitEvent args) { component.Blackboard.SetValue(NPCBlackboard.Owner, uid); WakeNPC(uid, component); } - private void OnNPCShutdown(EntityUid uid, NPCComponent component, ComponentShutdown args) + public void OnNPCShutdown(EntityUid uid, HTNComponent component, ComponentShutdown args) { SleepNPC(uid, component); } @@ -79,15 +73,29 @@ private void OnNPCShutdown(EntityUid uid, NPCComponent component, ComponentShutd /// /// Is the NPC awake and updating? /// - public bool IsAwake(EntityUid uid, NPCComponent component, ActiveNPCComponent? active = null) + public bool IsAwake(EntityUid uid, HTNComponent component, ActiveNPCComponent? active = null) { return Resolve(uid, ref active, false); } + public bool TryGetNpc(EntityUid uid, [NotNullWhen(true)] out NPCComponent? component) + { + // If you add your own NPC components then add them here. + + if (TryComp(uid, out var htn)) + { + component = htn; + return true; + } + + component = null; + return false; + } + /// /// Allows the NPC to actively be updated. /// - public void WakeNPC(EntityUid uid, NPCComponent? component = null) + public void WakeNPC(EntityUid uid, HTNComponent? component = null) { if (!Resolve(uid, ref component, false)) { @@ -98,7 +106,7 @@ public void WakeNPC(EntityUid uid, NPCComponent? component = null) EnsureComp(uid); } - public void SleepNPC(EntityUid uid, NPCComponent? component = null) + public void SleepNPC(EntityUid uid, HTNComponent? component = null) { if (!Resolve(uid, ref component, false)) { @@ -134,7 +142,7 @@ public override void Update(float frameTime) _htn.UpdateNPC(ref _count, _maxUpdates, frameTime); } - private void OnMobStateChange(EntityUid uid, NPCComponent component, MobStateChangedEvent args) + public void OnMobStateChange(EntityUid uid, HTNComponent component, MobStateChangedEvent args) { if (HasComp(uid)) return; diff --git a/Content.Server/NPC/Systems/NPCUtilitySystem.cs b/Content.Server/NPC/Systems/NPCUtilitySystem.cs index 10354e13363..d9aec892ceb 100644 --- a/Content.Server/NPC/Systems/NPCUtilitySystem.cs +++ b/Content.Server/NPC/Systems/NPCUtilitySystem.cs @@ -15,6 +15,7 @@ using Content.Shared.Inventory; using Content.Shared.Mobs.Systems; using Content.Shared.Nutrition.Components; +using Content.Shared.Tools.Systems; using Content.Shared.Weapons.Melee; using Content.Shared.Weapons.Ranged.Components; using Content.Shared.Weapons.Ranged.Events; @@ -42,6 +43,7 @@ public sealed class NPCUtilitySystem : EntitySystem [Dependency] private readonly PuddleSystem _puddle = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly SolutionContainerSystem _solutions = default!; + [Dependency] private readonly WeldableSystem _weldable = default!; private EntityQuery _xformQuery; @@ -195,7 +197,7 @@ private float GetScore(NPCBlackboard blackboard, EntityUid targetUid, UtilityCon { if (TryComp(container.Owner, out var storageComponent)) { - if (storageComponent is { IsWeldedShut: true, Open: false }) + if (storageComponent is { Open: false } && _weldable.IsWelded(container.Owner)) { return 0.0f; } diff --git a/Content.Server/Ninja/Systems/BatteryDrainerSystem.cs b/Content.Server/Ninja/Systems/BatteryDrainerSystem.cs new file mode 100644 index 00000000000..d5871c147df --- /dev/null +++ b/Content.Server/Ninja/Systems/BatteryDrainerSystem.cs @@ -0,0 +1,100 @@ +using Content.Server.Power.Components; +using Content.Server.Power.EntitySystems; +using Content.Shared.DoAfter; +using Content.Shared.Interaction; +using Content.Shared.Ninja.Components; +using Content.Shared.Ninja.Systems; +using Content.Shared.Popups; +using Robust.Shared.Audio; + +namespace Content.Server.Ninja.Systems; + +/// +/// Handles the doafter and power transfer when draining. +/// +public sealed class BatteryDrainerSystem : SharedBatteryDrainerSystem +{ + [Dependency] private readonly BatterySystem _battery = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnBeforeInteractHand); + } + + /// + /// Start do after for draining a power source. + /// Can't predict PNBC existing so only done on server. + /// + private void OnBeforeInteractHand(EntityUid uid, BatteryDrainerComponent comp, BeforeInteractHandEvent args) + { + var target = args.Target; + if (args.Handled || comp.BatteryUid == null || !HasComp(target)) + return; + + // handles even if battery is full so you can actually see the poup + args.Handled = true; + + if (_battery.IsFull(comp.BatteryUid.Value)) + { + _popup.PopupEntity(Loc.GetString("battery-drainer-full"), uid, uid, PopupType.Medium); + return; + } + + var doAfterArgs = new DoAfterArgs(EntityManager, uid, comp.DrainTime, new DrainDoAfterEvent(), target: target, eventTarget: uid) + { + BreakOnUserMove = true, + MovementThreshold = 0.5f, + CancelDuplicate = false, + AttemptFrequency = AttemptFrequency.StartAndEnd + }; + + _doAfter.TryStartDoAfter(doAfterArgs); + } + + /// + protected override void OnDoAfterAttempt(EntityUid uid, BatteryDrainerComponent comp, DoAfterAttemptEvent args) + { + base.OnDoAfterAttempt(uid, comp, args); + + if (comp.BatteryUid == null || _battery.IsFull(comp.BatteryUid.Value)) + args.Cancel(); + } + + /// + protected override bool TryDrainPower(EntityUid uid, BatteryDrainerComponent comp, EntityUid target) + { + if (comp.BatteryUid == null || !TryComp(comp.BatteryUid.Value, out var battery)) + return false; + + if (!TryComp(target, out var targetBattery) || !TryComp(target, out var pnb)) + return false; + + if (MathHelper.CloseToPercent(targetBattery.CurrentCharge, 0)) + { + _popup.PopupEntity(Loc.GetString("battery-drainer-empty", ("battery", target)), uid, uid, PopupType.Medium); + return false; + } + + var available = targetBattery.CurrentCharge; + var required = battery.MaxCharge - battery.CurrentCharge; + // higher tier storages can charge more + var maxDrained = pnb.MaxSupply * comp.DrainTime; + var input = Math.Min(Math.Min(available, required / comp.DrainEfficiency), maxDrained); + if (!_battery.TryUseCharge(target, input, targetBattery)) + return false; + + var output = input * comp.DrainEfficiency; + _battery.SetCharge(comp.BatteryUid.Value, battery.CurrentCharge + output, battery); + Spawn("EffectSparks", Transform(target).Coordinates); + _audio.PlayPvs(comp.SparkSound, target); + _popup.PopupEntity(Loc.GetString("battery-drainer-success", ("battery", target)), uid, uid); + + // repeat the doafter until battery is full + return !battery.IsFullyCharged; + } +} diff --git a/Content.Server/Ninja/Systems/NinjaGlovesSystem.cs b/Content.Server/Ninja/Systems/NinjaGlovesSystem.cs new file mode 100644 index 00000000000..402650d6a65 --- /dev/null +++ b/Content.Server/Ninja/Systems/NinjaGlovesSystem.cs @@ -0,0 +1,102 @@ +using Content.Server.Communications; +using Content.Server.DoAfter; +using Content.Server.Mind; +using Content.Server.Ninja.Systems; +using Content.Server.Power.Components; +using Content.Server.Roles; +using Content.Shared.Communications; +using Content.Shared.DoAfter; +using Content.Shared.Interaction.Components; +using Content.Shared.Interaction.Events; +using Content.Shared.Ninja.Components; +using Content.Shared.Ninja.Systems; +using Content.Shared.Popups; +using Content.Shared.Research.Components; +using Content.Shared.Toggleable; + +namespace Content.Server.Ninja.Systems; + +/// +/// Handles the toggle gloves action. +/// +public sealed class NinjaGlovesSystem : SharedNinjaGlovesSystem +{ + [Dependency] private readonly EmagProviderSystem _emagProvider = default!; + [Dependency] private readonly SharedBatteryDrainerSystem _drainer = default!; + [Dependency] private readonly SharedStunProviderSystem _stunProvider = default!; + [Dependency] private readonly SpaceNinjaSystem _ninja = default!; + [Dependency] private readonly CommsHackerSystem _commsHacker = default!; + [Dependency] private readonly MindSystem _mind = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnToggleAction); + } + + /// + /// Toggle gloves, if the user is a ninja wearing a ninja suit. + /// + private void OnToggleAction(EntityUid uid, NinjaGlovesComponent comp, ToggleActionEvent args) + { + if (args.Handled) + return; + + args.Handled = true; + + var user = args.Performer; + // need to wear suit to enable gloves + if (!TryComp(user, out var ninja) + || ninja.Suit == null + || !HasComp(ninja.Suit.Value)) + { + Popup.PopupEntity(Loc.GetString("ninja-gloves-not-wearing-suit"), user, user); + return; + } + + // show its state to the user + var enabling = comp.User == null; + Appearance.SetData(uid, ToggleVisuals.Toggled, enabling); + var message = Loc.GetString(enabling ? "ninja-gloves-on" : "ninja-gloves-off"); + Popup.PopupEntity(message, user, user); + + if (enabling) + { + EnableGloves(uid, comp, user, ninja); + } + else + { + DisableGloves(uid, comp); + } + } + + private void EnableGloves(EntityUid uid, NinjaGlovesComponent comp, EntityUid user, SpaceNinjaComponent ninja) + { + comp.User = user; + Dirty(uid, comp); + _ninja.AssignGloves(user, uid, ninja); + + var drainer = EnsureComp(user); + var stun = EnsureComp(user); + _stunProvider.SetNoPowerPopup(user, "ninja-no-power", stun); + if (_ninja.GetNinjaBattery(user, out var battery, out var _)) + { + _drainer.SetBattery(user, battery, drainer); + _stunProvider.SetBattery(user, battery, stun); + } + + var emag = EnsureComp(user); + _emagProvider.SetWhitelist(user, comp.DoorjackWhitelist, emag); + + EnsureComp(user); + // prevent calling in multiple threats by toggling gloves after + if (_mind.TryGetRole(user, out var role) && !role.CalledInThreat) + { + var hacker = EnsureComp(user); + var rule = _ninja.NinjaRule(user); + if (rule != null) + _commsHacker.SetThreats(user, rule.Threats, hacker); + } + } +} diff --git a/Content.Server/Ninja/Systems/NinjaSuitSystem.cs b/Content.Server/Ninja/Systems/NinjaSuitSystem.cs new file mode 100644 index 00000000000..f6ad646d226 --- /dev/null +++ b/Content.Server/Ninja/Systems/NinjaSuitSystem.cs @@ -0,0 +1,147 @@ +using Content.Server.Emp; +using Content.Server.Popups; +using Content.Server.Power.Components; +using Content.Server.PowerCell; +using Content.Shared.Actions; +using Content.Shared.Clothing.EntitySystems; +using Content.Shared.Hands.EntitySystems; +using Content.Shared.Ninja.Components; +using Content.Shared.Ninja.Systems; +using Content.Shared.Popups; +using Robust.Shared.Containers; + +namespace Content.Server.Ninja.Systems; + +/// +/// Handles power cell upgrading and actions. +/// +public sealed class NinjaSuitSystem : SharedNinjaSuitSystem +{ + [Dependency] private readonly EmpSystem _emp = default!; + [Dependency] private readonly SharedHandsSystem _hands = default!; + [Dependency] private readonly SpaceNinjaSystem _ninja = default!; + [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly PowerCellSystem _powerCell = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnSuitInsertAttempt); + SubscribeLocalEvent(OnEmpAttempt); + SubscribeLocalEvent(OnAttemptStealth); + SubscribeLocalEvent(OnCreateThrowingStar); + SubscribeLocalEvent(OnRecallKatana); + SubscribeLocalEvent(OnEmp); + } + + protected override void NinjaEquippedSuit(EntityUid uid, NinjaSuitComponent comp, EntityUid user, SpaceNinjaComponent ninja) + { + base.NinjaEquippedSuit(uid, comp, user, ninja); + + _ninja.SetSuitPowerAlert(user); + } + + // TODO: if/when battery is in shared, put this there too + // TODO: or put MaxCharge in shared along with powercellslot + private void OnSuitInsertAttempt(EntityUid uid, NinjaSuitComponent comp, ContainerIsInsertingAttemptEvent args) + { + // no power cell for some reason??? allow it + if (!_powerCell.TryGetBatteryFromSlot(uid, out var battery)) + return; + + // can only upgrade power cell, not swap to recharge instantly otherwise ninja could just swap batteries with flashlights in maints for easy power + if (!TryComp(args.EntityUid, out var inserting) || inserting.MaxCharge <= battery.MaxCharge) + { + args.Cancel(); + } + + // TODO: raise event on ninja telling it to update battery + } + + private void OnEmpAttempt(EntityUid uid, NinjaSuitComponent comp, EmpAttemptEvent args) + { + // ninja suit (battery) is immune to emp + // powercell relays the event to suit + args.Cancel(); + } + + protected override void UserUnequippedSuit(EntityUid uid, NinjaSuitComponent comp, EntityUid user) + { + base.UserUnequippedSuit(uid, comp, user); + + // remove power indicator + _ninja.SetSuitPowerAlert(user); + } + + private void OnAttemptStealth(EntityUid uid, NinjaSuitComponent comp, AttemptStealthEvent args) + { + var user = args.User; + // need 1 second of charge to turn on stealth + var chargeNeeded = SuitWattage(uid, comp); + // being attacked while cloaked gives no power message since it overloads the power supply or something + if (!_ninja.GetNinjaBattery(user, out var _, out var battery) || battery.CurrentCharge < chargeNeeded || UseDelay.ActiveDelay(user)) + { + _popup.PopupEntity(Loc.GetString("ninja-no-power"), user, user); + args.Cancel(); + return; + } + + StealthClothing.SetEnabled(uid, user, true); + } + + private void OnCreateThrowingStar(EntityUid uid, NinjaSuitComponent comp, CreateThrowingStarEvent args) + { + args.Handled = true; + var user = args.Performer; + if (!_ninja.TryUseCharge(user, comp.ThrowingStarCharge) || UseDelay.ActiveDelay(user)) + { + _popup.PopupEntity(Loc.GetString("ninja-no-power"), user, user); + return; + } + + // try to put throwing star in hand, otherwise it goes on the ground + var star = Spawn(comp.ThrowingStarPrototype, Transform(user).Coordinates); + _hands.TryPickupAnyHand(user, star); + } + + private void OnRecallKatana(EntityUid uid, NinjaSuitComponent comp, RecallKatanaEvent args) + { + args.Handled = true; + var user = args.Performer; + if (!TryComp(user, out var ninja) || ninja.Katana == null) + return; + + var katana = ninja.Katana.Value; + var coords = _transform.GetWorldPosition(katana); + var distance = (_transform.GetWorldPosition(user) - coords).Length(); + var chargeNeeded = (float) distance * comp.RecallCharge; + if (!_ninja.TryUseCharge(user, chargeNeeded) || UseDelay.ActiveDelay(user)) + { + _popup.PopupEntity(Loc.GetString("ninja-no-power"), user, user); + return; + } + + // TODO: teleporting into belt slot + var message = _hands.TryPickupAnyHand(user, katana) + ? "ninja-katana-recalled" + : "ninja-hands-full"; + _popup.PopupEntity(Loc.GetString(message), user, user); + } + + private void OnEmp(EntityUid uid, NinjaSuitComponent comp, NinjaEmpEvent args) + { + args.Handled = true; + var user = args.Performer; + if (!_ninja.TryUseCharge(user, comp.EmpCharge) || UseDelay.ActiveDelay(user)) + { + _popup.PopupEntity(Loc.GetString("ninja-no-power"), user, user); + return; + } + + // I don't think this affects the suit battery, but if it ever does in the future add a blacklist for it + var coords = Transform(user).MapPosition; + _emp.EmpPulse(coords, comp.EmpRange, comp.EmpConsumption, comp.EmpDuration); + } +} diff --git a/Content.Server/Ninja/Systems/SpaceNinjaSystem.cs b/Content.Server/Ninja/Systems/SpaceNinjaSystem.cs new file mode 100644 index 00000000000..4d856f7fb38 --- /dev/null +++ b/Content.Server/Ninja/Systems/SpaceNinjaSystem.cs @@ -0,0 +1,299 @@ +using Content.Server.Administration.Commands; +using Content.Server.Communications; +using Content.Server.Chat.Managers; +using Content.Server.StationEvents.Components; +using Content.Server.GameTicking; +using Content.Server.GameTicking.Rules; +using Content.Server.GameTicking.Rules.Components; +using Content.Server.Ghost.Roles.Events; +using Content.Server.Objectives; +using Content.Server.Power.Components; +using Content.Server.Power.EntitySystems; +using Content.Server.PowerCell; +using Content.Server.Research.Systems; +using Content.Server.Roles; +using Content.Server.Warps; +using Content.Shared.Alert; +using Content.Shared.Clothing.EntitySystems; +using Content.Shared.Doors.Components; +using Content.Shared.IdentityManagement; +using Content.Shared.Mind; +using Content.Shared.Mind.Components; +using Content.Shared.Ninja.Components; +using Content.Shared.Ninja.Systems; +using Content.Shared.Popups; +using Content.Shared.Roles; +using Content.Shared.PowerCell.Components; +using Content.Shared.Rounding; +using Robust.Shared.Audio; +using Robust.Shared.GameObjects; +using Robust.Shared.Physics.Components; +using Robust.Shared.Player; +using Robust.Shared.Random; +using System.Diagnostics.CodeAnalysis; +using System.Linq; + +namespace Content.Server.Ninja.Systems; + +// TODO: when syndiborgs are a thing have a borg converter with 6 second doafter +// engi -> saboteur +// medi -> idk reskin it +// other -> assault +// TODO: when criminal records is merged, hack it to set everyone to arrest + +/// +/// Main ninja system that handles ninja setup and greentext, provides helper methods for the rest of the code to use. +/// +public sealed class SpaceNinjaSystem : SharedSpaceNinjaSystem +{ + [Dependency] private readonly AlertsSystem _alerts = default!; + [Dependency] private readonly BatterySystem _battery = default!; + [Dependency] private readonly GameTicker _gameTicker = default!; + [Dependency] private readonly IChatManager _chatMan = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly PowerCellSystem _powerCell = default!; + [Dependency] private readonly RoleSystem _role = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedMindSystem _mind = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly StealthClothingSystem _stealthClothing = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnNinjaMindAdded); + SubscribeLocalEvent(OnDoorjack); + SubscribeLocalEvent(OnResearchStolen); + SubscribeLocalEvent(OnThreatCalledIn); + } + + public override void Update(float frameTime) + { + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var ninja)) + { + UpdateNinja(uid, ninja, frameTime); + } + } + + /// + /// Turns the player into a space ninja + /// + public void MakeNinja(EntityUid mindId, MindComponent mind) + { + if (mind.OwnedEntity == null) + return; + + // prevent double ninja'ing + var user = mind.OwnedEntity.Value; + if (HasComp(user)) + return; + + AddComp(user); + SetOutfitCommand.SetOutfit(user, "SpaceNinjaGear", EntityManager); + GreetNinja(mindId, mind); + } + + /// + /// Download the given set of nodes, returning how many new nodes were downloaded. + /// + private int Download(EntityUid uid, List ids) + { + if (!_mind.TryGetRole(uid, out var role)) + return 0; + + var oldCount = role.DownloadedNodes.Count; + role.DownloadedNodes.UnionWith(ids); + var newCount = role.DownloadedNodes.Count; + return newCount - oldCount; + } + + /// + /// Returns a ninja's gamerule config data. + /// If the gamerule was not started then it will be started automatically. + /// + public NinjaRuleComponent? NinjaRule(EntityUid uid, SpaceNinjaComponent? comp = null) + { + if (!Resolve(uid, ref comp)) + return null; + + // already exists so just check it + if (comp.Rule != null) + return CompOrNull(comp.Rule); + + // start it + _gameTicker.StartGameRule("Ninja", out var rule); + comp.Rule = rule; + + if (!TryComp(rule, out var ninjaRule)) + return null; + + // add ninja mind to the rule's list for objective showing + if (TryComp(uid, out var mindContainer) && mindContainer.Mind != null) + { + ninjaRule.Minds.Add(mindContainer.Mind.Value); + } + + return ninjaRule; + } + + // TODO: can probably copy paste borg code here + /// + /// Update the alert for the ninja's suit power indicator. + /// + public void SetSuitPowerAlert(EntityUid uid, SpaceNinjaComponent? comp = null) + { + if (!Resolve(uid, ref comp, false) || comp.Deleted || comp.Suit == null) + { + _alerts.ClearAlert(uid, AlertType.SuitPower); + return; + } + + if (GetNinjaBattery(uid, out _, out var battery)) + { + var severity = ContentHelpers.RoundToLevels(MathF.Max(0f, battery.CurrentCharge), battery.MaxCharge, 8); + _alerts.ShowAlert(uid, AlertType.SuitPower, (short) severity); + } + else + { + _alerts.ClearAlert(uid, AlertType.SuitPower); + } + } + + /// + /// Get the battery component in a ninja's suit, if it's worn. + /// + public bool GetNinjaBattery(EntityUid user, [NotNullWhen(true)] out EntityUid? uid, [NotNullWhen(true)] out BatteryComponent? battery) + { + if (TryComp(user, out var ninja) + && ninja.Suit != null + && _powerCell.TryGetBatteryFromSlot(ninja.Suit.Value, out uid, out battery)) + { + return true; + } + + uid = null; + battery = null; + return false; + } + + /// + public override bool TryUseCharge(EntityUid user, float charge) + { + return GetNinjaBattery(user, out var uid, out var battery) && _battery.TryUseCharge(uid.Value, charge, battery); + } + + /// + /// Greets the ninja when a ghost takes over a ninja, if that happens. + /// + private void OnNinjaMindAdded(EntityUid uid, SpaceNinjaComponent comp, MindAddedMessage args) + { + if (TryComp(uid, out var mind) && mind.Mind != null) + GreetNinja(mind.Mind.Value); + } + + /// + /// Set up everything for ninja to work and send the greeting message/sound. + /// + private void GreetNinja(EntityUid mindId, MindComponent? mind = null) + { + if (!Resolve(mindId, ref mind) || mind.OwnedEntity == null || mind.Session == null) + return; + + var uid = mind.OwnedEntity.Value; + var config = NinjaRule(uid); + if (config == null) + return; + + var role = new NinjaRoleComponent + { + PrototypeId = "SpaceNinja" + }; + _role.MindAddRole(mindId, role, mind); + + // choose spider charge detonation point + var warps = new List(); + var query = EntityQueryEnumerator(); + var map = Transform(uid).MapID; + while (query.MoveNext(out var warpUid, out _, out var warp, out var xform)) + { + if (warp.Location != null) + warps.Add(warpUid); + } + + if (warps.Count > 0) + role.SpiderChargeTarget = _random.Pick(warps); + + // assign objectives - must happen after spider charge target so that the obj requirement works + foreach (var objective in config.Objectives) + { + if (!_mind.TryAddObjective(mindId, objective, mind)) + { + Log.Error($"Failed to add {objective} to ninja {mind.OwnedEntity.Value}"); + } + } + + var session = mind.Session; + _audio.PlayGlobal(config.GreetingSound, Filter.Empty().AddPlayer(session), false, AudioParams.Default); + _chatMan.DispatchServerMessage(session, Loc.GetString("ninja-role-greeting")); + } + + // TODO: PowerCellDraw, modify when cloak enabled + /// + /// Handle constant power drains from passive usage and cloak. + /// + private void UpdateNinja(EntityUid uid, SpaceNinjaComponent ninja, float frameTime) + { + if (ninja.Suit == null) + return; + + float wattage = _suit.SuitWattage(ninja.Suit.Value); + + SetSuitPowerAlert(uid, ninja); + if (!TryUseCharge(uid, wattage * frameTime)) + { + // ran out of power, uncloak ninja + _stealthClothing.SetEnabled(ninja.Suit.Value, uid, false); + } + } + + /// + /// Increment greentext when emagging a door. + /// + private void OnDoorjack(EntityUid uid, SpaceNinjaComponent comp, ref EmaggedSomethingEvent args) + { + // incase someone lets ninja emag non-doors double check it here + if (!HasComp(args.Target)) + return; + + // this popup is serverside since door emag logic is serverside (power funnies) + _popup.PopupEntity(Loc.GetString("ninja-doorjack-success", ("target", Identity.Entity(args.Target, EntityManager))), uid, uid, PopupType.Medium); + + // handle greentext + if (_mind.TryGetRole(uid, out var role)) + role.DoorsJacked++; + } + + /// + /// Add to greentext when stealing technologies. + /// + private void OnResearchStolen(EntityUid uid, SpaceNinjaComponent comp, ref ResearchStolenEvent args) + { + var gained = Download(uid, args.Techs); + var str = gained == 0 + ? Loc.GetString("ninja-research-steal-fail") + : Loc.GetString("ninja-research-steal-success", ("count", gained), ("server", args.Target)); + + _popup.PopupEntity(str, uid, uid, PopupType.Medium); + } + + private void OnThreatCalledIn(EntityUid uid, SpaceNinjaComponent comp, ref ThreatCalledInEvent args) + { + if (_mind.TryGetRole(uid, out var role)) + { + role.CalledInThreat = true; + } + } +} diff --git a/Content.Server/Ninja/Systems/SpiderChargeSystem.cs b/Content.Server/Ninja/Systems/SpiderChargeSystem.cs new file mode 100644 index 00000000000..3ffc2a8ff35 --- /dev/null +++ b/Content.Server/Ninja/Systems/SpiderChargeSystem.cs @@ -0,0 +1,78 @@ +using Content.Server.Explosion.EntitySystems; +using Content.Server.Mind; +using Content.Server.Popups; +using Content.Server.Roles; +using Content.Server.Sticky.Events; +using Content.Shared.Interaction; +using Content.Shared.Ninja.Components; +using Robust.Shared.GameObjects; + +namespace Content.Server.Ninja.Systems; + +/// +/// Prevents planting a spider charge outside of its location and handles greentext. +/// +public sealed class SpiderChargeSystem : EntitySystem +{ + [Dependency] private readonly MindSystem _mind = default!; + [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(BeforePlant); + SubscribeLocalEvent(OnStuck); + SubscribeLocalEvent(OnExplode); + } + + /// + /// Require that the planter is a ninja and the charge is near the target warp point. + /// + private void BeforePlant(EntityUid uid, SpiderChargeComponent comp, BeforeRangedInteractEvent args) + { + var user = args.User; + + if (!_mind.TryGetRole(user, out var role)) + { + _popup.PopupEntity(Loc.GetString("spider-charge-not-ninja"), user, user); + args.Handled = true; + return; + } + + // allow planting anywhere if there is no target, which should never happen + if (role.SpiderChargeTarget == null) + return; + + // assumes warp point still exists + var target = Transform(role.SpiderChargeTarget.Value).MapPosition; + var coords = args.ClickLocation.ToMap(EntityManager, _transform); + if (!coords.InRange(target, comp.Range)) + { + _popup.PopupEntity(Loc.GetString("spider-charge-too-far"), user, user); + args.Handled = true; + } + } + + /// + /// Allows greentext to occur after exploding. + /// + private void OnStuck(EntityUid uid, SpiderChargeComponent comp, EntityStuckEvent args) + { + comp.Planter = args.User; + } + + /// + /// Handles greentext after exploding. + /// Assumes it didn't move and the target was destroyed so be nice. + /// + private void OnExplode(EntityUid uid, SpiderChargeComponent comp, TriggerEvent args) + { + if (comp.Planter == null || !_mind.TryGetRole(comp.Planter.Value, out var role)) + return; + + // assumes the target was destroyed, that the charge wasn't moved somehow + role.SpiderChargeDetonated = true; + } +} diff --git a/Content.Server/Ninja/Systems/StunProviderSystem.cs b/Content.Server/Ninja/Systems/StunProviderSystem.cs new file mode 100644 index 00000000000..21e8b2042fa --- /dev/null +++ b/Content.Server/Ninja/Systems/StunProviderSystem.cs @@ -0,0 +1,60 @@ +using Content.Shared.Electrocution; +using Content.Shared.Interaction; +using Content.Shared.Ninja.Components; +using Content.Shared.Ninja.Systems; +using Content.Shared.Popups; +using Content.Shared.Whitelist; +using Content.Server.Power.EntitySystems; +using Robust.Shared.Timing; + +namespace Content.Server.Ninja.Systems; + +/// +/// Shocks clicked mobs using battery charge. +/// +public sealed class StunProviderSystem : SharedStunProviderSystem +{ + [Dependency] private readonly BatterySystem _battery = default!; + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly SharedElectrocutionSystem _electrocution = default!; + [Dependency] private readonly SharedNinjaGlovesSystem _gloves = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnBeforeInteractHand); + } + + /// + /// Stun clicked mobs on the whitelist, if there is enough power. + /// + private void OnBeforeInteractHand(EntityUid uid, StunProviderComponent comp, BeforeInteractHandEvent args) + { + // TODO: generic check + if (args.Handled || comp.BatteryUid == null || !_gloves.AbilityCheck(uid, args, out var target)) + return; + + if (target == uid || !comp.Whitelist.IsValid(target, EntityManager)) + return; + + if (_timing.CurTime < comp.NextStun) + return; + + // take charge from battery + if (!_battery.TryUseCharge(comp.BatteryUid.Value, comp.StunCharge)) + { + _popup.PopupEntity(Loc.GetString(comp.NoPowerPopup), uid, uid); + return; + } + + // not holding hands with target so insuls don't matter + _electrocution.TryDoElectrocution(target, uid, comp.StunDamage, comp.StunTime, false, ignoreInsulation: true); + // short cooldown to prevent instant stunlocking + comp.NextStun = _timing.CurTime + comp.Cooldown; + Dirty(uid, comp); + + args.Handled = true; + } +} diff --git a/Content.Server/NodeContainer/EntitySystems/NodeGroupSystem.cs b/Content.Server/NodeContainer/EntitySystems/NodeGroupSystem.cs index 2f53bff7ad4..e4bd303150b 100644 --- a/Content.Server/NodeContainer/EntitySystems/NodeGroupSystem.cs +++ b/Content.Server/NodeContainer/EntitySystems/NodeGroupSystem.cs @@ -409,7 +409,7 @@ private void VisSendFullStateImmediate(IPlayerSession player) RaiseNetworkEvent(msg, player.ConnectedClient); } - private static NodeVis.GroupData VisMakeGroupState(BaseNodeGroup group) + private NodeVis.GroupData VisMakeGroupState(BaseNodeGroup group) { return new() { @@ -421,7 +421,7 @@ private static NodeVis.GroupData VisMakeGroupState(BaseNodeGroup group) Name = n.Name, NetId = n.NetId, Reachable = n.ReachableNodes.Select(r => r.NetId).ToArray(), - Entity = n.Owner, + Entity = GetNetEntity(n.Owner), Type = n.GetType().Name }).ToArray(), DebugData = group.GetDebugData() diff --git a/Content.Server/NodeContainer/NodeContainerComponent.cs b/Content.Server/NodeContainer/NodeContainerComponent.cs index 39a4f48771c..de4586d9acc 100644 --- a/Content.Server/NodeContainer/NodeContainerComponent.cs +++ b/Content.Server/NodeContainer/NodeContainerComponent.cs @@ -7,10 +7,10 @@ namespace Content.Server.NodeContainer /// Creates and maintains a set of s. /// [RegisterComponent] - public sealed class NodeContainerComponent : Component + public sealed partial class NodeContainerComponent : Component { //HACK: THIS BEING readOnly IS A FILTHY HACK AND I HATE IT --moony - [DataField("nodes", readOnly: true)] public Dictionary Nodes { get; } = new(); + [DataField("nodes", readOnly: true)] public Dictionary Nodes { get; private set; } = new(); [DataField("examinable")] public bool Examinable = false; } diff --git a/Content.Server/NodeContainer/Nodes/AdjacentNode.cs b/Content.Server/NodeContainer/Nodes/AdjacentNode.cs index cbead878467..6df534b285c 100644 --- a/Content.Server/NodeContainer/Nodes/AdjacentNode.cs +++ b/Content.Server/NodeContainer/Nodes/AdjacentNode.cs @@ -7,7 +7,7 @@ namespace Content.Server.NodeContainer.Nodes /// A that can reach other s that are directly adjacent to it. /// [DataDefinition] - public sealed class AdjacentNode : Node + public sealed partial class AdjacentNode : Node { public override IEnumerable GetReachableNodes(TransformComponent xform, EntityQuery nodeQuery, diff --git a/Content.Server/NodeContainer/Nodes/Node.cs b/Content.Server/NodeContainer/Nodes/Node.cs index 480fa271a36..fe9299e453d 100644 --- a/Content.Server/NodeContainer/Nodes/Node.cs +++ b/Content.Server/NodeContainer/Nodes/Node.cs @@ -10,7 +10,7 @@ namespace Content.Server.NodeContainer.Nodes /// that they can "reach" and have the same . /// [ImplicitDataDefinitionForInheritors] - public abstract class Node + public abstract partial class Node { /// /// An ID used as a criteria for combining into groups. Determines which @@ -49,7 +49,7 @@ public virtual bool Connectable(IEntityManager entMan, TransformComponent? xform [ViewVariables(VVAccess.ReadWrite)] [DataField("needAnchored")] - public bool NeedAnchored { get; } = true; + public bool NeedAnchored { get; private set; } = true; public virtual void OnAnchorStateChanged(IEntityManager entityManager, bool anchored) { } diff --git a/Content.Server/NodeContainer/Nodes/PipeNode.cs b/Content.Server/NodeContainer/Nodes/PipeNode.cs index a10efcfa77e..14afa2f1083 100644 --- a/Content.Server/NodeContainer/Nodes/PipeNode.cs +++ b/Content.Server/NodeContainer/Nodes/PipeNode.cs @@ -14,7 +14,7 @@ namespace Content.Server.NodeContainer.Nodes /// [DataDefinition] [Virtual] - public class PipeNode : Node, IGasMixtureHolder, IRotatableNode + public partial class PipeNode : Node, IGasMixtureHolder, IRotatableNode { /// /// The directions in which this pipe can connect to other pipes around it. diff --git a/Content.Server/NodeContainer/Nodes/PortPipeNode.cs b/Content.Server/NodeContainer/Nodes/PortPipeNode.cs index 5a11b75286f..69d85b42248 100644 --- a/Content.Server/NodeContainer/Nodes/PortPipeNode.cs +++ b/Content.Server/NodeContainer/Nodes/PortPipeNode.cs @@ -4,7 +4,7 @@ namespace Content.Server.NodeContainer.Nodes { [DataDefinition] - public sealed class PortPipeNode : PipeNode + public sealed partial class PortPipeNode : PipeNode { public override IEnumerable GetReachableNodes(TransformComponent xform, EntityQuery nodeQuery, diff --git a/Content.Server/NodeContainer/Nodes/PortablePipeNode.cs b/Content.Server/NodeContainer/Nodes/PortablePipeNode.cs index a8a2dd65de4..287cd6b3b52 100644 --- a/Content.Server/NodeContainer/Nodes/PortablePipeNode.cs +++ b/Content.Server/NodeContainer/Nodes/PortablePipeNode.cs @@ -4,7 +4,7 @@ namespace Content.Server.NodeContainer.Nodes { [DataDefinition] - public sealed class PortablePipeNode : PipeNode + public sealed partial class PortablePipeNode : PipeNode { public override IEnumerable GetReachableNodes(TransformComponent xform, EntityQuery nodeQuery, diff --git a/Content.Server/Nuke/Commands/SendNukeCodesCommand.cs b/Content.Server/Nuke/Commands/SendNukeCodesCommand.cs index fccfbe7c6b0..55dca4f70d8 100644 --- a/Content.Server/Nuke/Commands/SendNukeCodesCommand.cs +++ b/Content.Server/Nuke/Commands/SendNukeCodesCommand.cs @@ -18,11 +18,6 @@ public sealed class SendNukeCodesCommand : IConsoleCommand [Dependency] private readonly IEntityManager _entityManager = default!; - public SendNukeCodesCommand() - { - IoCManager.InjectDependencies(this); - } - public void Execute(IConsoleShell shell, string argStr, string[] args) { if (args.Length != 1) @@ -31,13 +26,13 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!EntityUid.TryParse(args[0], out var uid)) + if (!NetEntity.TryParse(args[0], out var uidNet) || !_entityManager.TryGetEntity(uidNet, out var uid)) { shell.WriteError(Loc.GetString("shell-entity-uid-must-be-number")); return; } - _entityManager.System().SendNukeCodes(uid); + _entityManager.System().SendNukeCodes(uid.Value); } public CompletionResult GetCompletion(IConsoleShell shell, string[] args) diff --git a/Content.Server/Nuke/Commands/ToggleNukeCommand.cs b/Content.Server/Nuke/Commands/ToggleNukeCommand.cs index 6caafc13c41..e499afb225e 100644 --- a/Content.Server/Nuke/Commands/ToggleNukeCommand.cs +++ b/Content.Server/Nuke/Commands/ToggleNukeCommand.cs @@ -16,12 +16,12 @@ public sealed class ToggleNukeCommand : LocalizedCommands public override void Execute(IConsoleShell shell, string argStr, string[] args) { - EntityUid bombUid; + EntityUid? bombUid = null; NukeComponent? bomb = null; if (args.Length >= 2) { - if (!EntityUid.TryParse(args[1], out bombUid)) + if (!_entManager.TryParseNetEntity(args[1], out bombUid)) { shell.WriteError(Loc.GetString("shell-entity-uid-must-be-number")); return; @@ -31,12 +31,13 @@ public override void Execute(IConsoleShell shell, string argStr, string[] args) { var query = _entManager.EntityQueryEnumerator(); - while (query.MoveNext(out bombUid, out bomb)) + while (query.MoveNext(out var bomba, out bomb)) { + bombUid = bomba; break; } - if (bomb == null) + if (bombUid == null) { shell.WriteError(Loc.GetString("cmd-nukearm-not-found")); return; @@ -53,10 +54,10 @@ public override void Execute(IConsoleShell shell, string argStr, string[] args) return; } - nukeSys.SetRemainingTime(bombUid, timer, bomb); + nukeSys.SetRemainingTime(bombUid.Value, timer, bomb); } - nukeSys.ToggleBomb(bombUid, bomb); + nukeSys.ToggleBomb(bombUid.Value, bomb); } public override CompletionResult GetCompletion(IConsoleShell shell, string[] args) diff --git a/Content.Server/Nuke/NukeCodePaperComponent.cs b/Content.Server/Nuke/NukeCodePaperComponent.cs index 00565036984..7dfda0236ae 100644 --- a/Content.Server/Nuke/NukeCodePaperComponent.cs +++ b/Content.Server/Nuke/NukeCodePaperComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.Nuke /// Can be used in mapping or admins spawn. /// [RegisterComponent] - public sealed class NukeCodePaperComponent : Component + public sealed partial class NukeCodePaperComponent : Component { /// /// Whether or not paper will contain a code for a nuke on the same diff --git a/Content.Server/Nuke/NukeComponent.cs b/Content.Server/Nuke/NukeComponent.cs index dca093f053e..2b9c9fe01e4 100644 --- a/Content.Server/Nuke/NukeComponent.cs +++ b/Content.Server/Nuke/NukeComponent.cs @@ -16,7 +16,7 @@ namespace Content.Server.Nuke /// [RegisterComponent] [Access(typeof(NukeSystem))] - public sealed class NukeComponent : SharedNukeComponent + public sealed partial class NukeComponent : SharedNukeComponent { /// /// Default bomb timer value in seconds. diff --git a/Content.Server/Nuke/NukeLabelComponent.cs b/Content.Server/Nuke/NukeLabelComponent.cs index 91567476281..a8e4786888c 100644 --- a/Content.Server/Nuke/NukeLabelComponent.cs +++ b/Content.Server/Nuke/NukeLabelComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Nuke; /// This is a separate component because the fake nuclear bomb keg exists. /// [RegisterComponent] -public sealed class NukeLabelComponent : Component +public sealed partial class NukeLabelComponent : Component { [DataField("prefix")] public string NukeLabel = "nuke-label-nanotrasen"; [DataField("serialLength")] public int SerialLength = 6; diff --git a/Content.Server/Nuke/NukeLabelSystem.cs b/Content.Server/Nuke/NukeLabelSystem.cs index e47d16e077a..b9416ee2792 100644 --- a/Content.Server/Nuke/NukeLabelSystem.cs +++ b/Content.Server/Nuke/NukeLabelSystem.cs @@ -6,6 +6,8 @@ namespace Content.Server.Nuke; public sealed class NukeLabelSystem : EntitySystem { [Dependency] private readonly NukeSystem _nuke = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; + /// public override void Initialize() { @@ -16,6 +18,6 @@ private void OnMapInit(EntityUid uid, NukeLabelComponent nuke, MapInitEvent args { var label = Loc.GetString(nuke.NukeLabel, ("serial", _nuke.GenerateRandomNumberString(nuke.SerialLength))); var meta = MetaData(uid); - meta.EntityName = $"{meta.EntityName} ({label})"; + _metaData.SetEntityName(uid, $"{meta.EntityName} ({label})", meta); } } diff --git a/Content.Server/Nuke/NukeSystem.cs b/Content.Server/Nuke/NukeSystem.cs index e7cc515e2bd..97c3b6c94f4 100644 --- a/Content.Server/Nuke/NukeSystem.cs +++ b/Content.Server/Nuke/NukeSystem.cs @@ -12,6 +12,7 @@ using Content.Shared.Nuke; using Content.Shared.Popups; using Robust.Server.GameObjects; +using Robust.Shared.Audio; using Robust.Shared.Containers; using Robust.Shared.Map; using Robust.Shared.Player; @@ -28,6 +29,7 @@ public sealed class NukeSystem : EntitySystem [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly ITileDefinitionManager _tileDefManager = default!; [Dependency] private readonly ItemSlotsSystem _itemSlots = default!; + [Dependency] private readonly PointLightSystem _pointLight = default!; [Dependency] private readonly PopupSystem _popups = default!; [Dependency] private readonly ServerGlobalSoundSystem _sound = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; @@ -291,7 +293,7 @@ private void TickTimer(EntityUid uid, float frameTime, NukeComponent? nuke = nul // play alert sound if time is running out if (nuke.RemainingTime <= nuke.AlertSoundTime && !nuke.PlayedAlertSound) { - _sound.PlayGlobalOnStation(uid, _audio.GetSound(nuke.AlertSound)); + _sound.PlayGlobalOnStation(uid, _audio.GetSound(nuke.AlertSound), new AudioParams{Volume = -5f}); _sound.StopStationEventMusic(uid, StationEventMusicType.Nuke); nuke.PlayedAlertSound = true; } @@ -375,7 +377,7 @@ private void UpdateUserInterface(EntityUid uid, NukeComponent? component = null) CooldownTime = (int) component.CooldownTime }; - UserInterfaceSystem.SetUiState(ui, state); + _ui.SetUiState(ui, state); } private void PlayNukeKeypadSound(EntityUid uid, int number, NukeComponent? component = null) @@ -454,6 +456,9 @@ public void ArmBomb(EntityUid uid, NukeComponent? component = null) _sound.PlayGlobalOnStation(uid, _audio.GetSound(component.ArmSound)); + // turn on the spinny light + _pointLight.SetEnabled(uid, true); + _itemSlots.SetLock(uid, component.DiskSlot, true); if (!nukeXform.Anchored) { @@ -493,6 +498,9 @@ public void DisarmBomb(EntityUid uid, NukeComponent? component = null) component.PlayedAlertSound = false; component.AlertAudioStream?.Stop(); + // turn off the spinny light + _pointLight.SetEnabled(uid, false); + // start bomb cooldown _itemSlots.SetLock(uid, component.DiskSlot, false); component.Status = NukeStatus.COOLDOWN; @@ -560,7 +568,7 @@ public void SetRemainingTime(EntityUid uid, float timer, NukeComponent? componen private void DisarmBombDoafter(EntityUid uid, EntityUid user, NukeComponent nuke) { - var doAfter = new DoAfterArgs(user, nuke.DisarmDoafterLength, new NukeDisarmDoAfterEvent(), uid, target: uid) + var doAfter = new DoAfterArgs(EntityManager, user, nuke.DisarmDoafterLength, new NukeDisarmDoAfterEvent(), uid, target: uid) { BreakOnDamage = true, BreakOnTargetMove = true, diff --git a/Content.Server/NukeOps/WarDeclaratorComponent.cs b/Content.Server/NukeOps/WarDeclaratorComponent.cs new file mode 100644 index 00000000000..1a1f9116c60 --- /dev/null +++ b/Content.Server/NukeOps/WarDeclaratorComponent.cs @@ -0,0 +1,48 @@ +using Robust.Shared.Audio; + +namespace Content.Server.NukeOps; + +/// +/// Used with NukeOps game rule to send war declaration announcement +/// +[RegisterComponent] +public sealed partial class WarDeclaratorComponent : Component +{ + /// + /// Custom war declaration message. If empty, use default. + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("message")] + public string Message; + + /// + /// Permission to customize message text + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("allowEditingMessage")] + public bool AllowEditingMessage = true; + + [ViewVariables(VVAccess.ReadWrite)] + [DataField("maxMessageLength")] + public int MaxMessageLength = 512; + + /// + /// War declarement text color + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("color")] + public Color DeclarementColor = Color.Red; + + /// + /// War declarement sound file path + /// + [DataField("sound")] + public SoundSpecifier DeclarementSound = new SoundPathSpecifier("/Audio/Announcements/war.ogg"); + + /// + /// Fluent ID for the declarement title + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("title")] + public string DeclarementTitle = "comms-console-announcement-title-nukie"; +} diff --git a/Content.Server/NukeOps/WarDeclaratorSystem.cs b/Content.Server/NukeOps/WarDeclaratorSystem.cs new file mode 100644 index 00000000000..2df2cb34832 --- /dev/null +++ b/Content.Server/NukeOps/WarDeclaratorSystem.cs @@ -0,0 +1,127 @@ +using Content.Server.Administration.Logs; +using Content.Server.GameTicking.Rules; +using Content.Server.GameTicking.Rules.Components; +using Content.Server.Popups; +using Content.Server.UserInterface; +using Content.Shared.Database; +using Content.Shared.NukeOps; +using Robust.Server.GameObjects; + +namespace Content.Server.NukeOps; + +/// +/// This handles nukeops special war mode declaration device and directly using nukeops game rule +/// +public sealed class WarDeclaratorSystem : EntitySystem +{ + [Dependency] private readonly UserInterfaceSystem _userInterfaceSystem = default!; + [Dependency] private readonly IAdminLogManager _adminLogger = default!; + [Dependency] private readonly NukeopsRuleSystem _nukeopsRuleSystem = default!; + [Dependency] private readonly PopupSystem _popupSystem = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnActivated); + SubscribeLocalEvent(OnAttemptOpenUI); + } + + private void OnAttemptOpenUI(EntityUid uid, WarDeclaratorComponent component, ActivatableUIOpenAttemptEvent args) + { + if (!_nukeopsRuleSystem.TryGetRuleFromOperative(args.User, out var comps)) + { + var msg = Loc.GetString("war-declarator-not-nukeops"); + _popupSystem.PopupEntity(msg, uid); + args.Cancel(); + return; + } + + UpdateUI(uid, comps.Value.Item1, comps.Value.Item2); + } + + private void OnActivated(EntityUid uid, WarDeclaratorComponent component, WarDeclaratorActivateMessage args) + { + if (!args.Session.AttachedEntity.HasValue || + !_nukeopsRuleSystem.TryGetRuleFromOperative(args.Session.AttachedEntity.Value, out var comps)) + return; + + var condition = _nukeopsRuleSystem.GetWarCondition(comps.Value.Item1, comps.Value.Item2); + if (condition != WarConditionStatus.YES_WAR) + { + UpdateUI(uid, comps.Value.Item1, comps.Value.Item2); + return; + } + + var text = (args.Message.Length <= component.MaxMessageLength ? args.Message.Trim() : $"{args.Message.Trim().Substring(0, 256)}...").ToCharArray(); + + // No more than 2 newlines, other replaced to spaces + var newlines = 0; + for (var i = 0; i < text.Length; i++) + { + if (text[i] != '\n') + continue; + + if (newlines >= 2) + text[i] = ' '; + + newlines++; + } + + string message = new string(text); + if (component.AllowEditingMessage && message != string.Empty) + { + component.Message = message; + } + else + { + message = Loc.GetString("war-declarator-default-message"); + } + var title = Loc.GetString(component.DeclarementTitle); + + _nukeopsRuleSystem.DeclareWar(args.Session.AttachedEntity.Value, message, title, component.DeclarementSound, component.DeclarementColor); + + if (args.Session.AttachedEntity != null) + _adminLogger.Add(LogType.Chat, LogImpact.Low, $"{ToPrettyString(args.Session.AttachedEntity.Value):player} has declared war with this text: {message}"); + } + + public void RefreshAllUI(NukeopsRuleComponent nukeops, GameRuleComponent gameRule) + { + var enumerator = EntityQueryEnumerator(); + while (enumerator.MoveNext(out var uid, out _)) + { + UpdateUI(uid, nukeops, gameRule); + } + } + + private void UpdateUI(EntityUid declaratorUid, NukeopsRuleComponent nukeops, GameRuleComponent gameRule) + { + var condition = _nukeopsRuleSystem.GetWarCondition(nukeops, gameRule); + + TimeSpan startTime; + TimeSpan delayTime; + switch(condition) + { + case WarConditionStatus.YES_WAR: + startTime = gameRule.ActivatedAt; + delayTime = nukeops.WarDeclarationDelay; + break; + case WarConditionStatus.WAR_DELAY: + startTime = nukeops.WarDeclaredTime!.Value; + delayTime = nukeops.WarNukieArriveDelay!.Value; + break; + default: + startTime = TimeSpan.Zero; + delayTime = TimeSpan.Zero; + break; + } + + _userInterfaceSystem.TrySetUiState( + declaratorUid, + WarDeclaratorUiKey.Key, + new WarDeclaratorBoundUserInterfaceState( + condition, + nukeops.WarDeclarationMinOps, + delayTime, + startTime)); + } +} diff --git a/Content.Server/Nutrition/Components/BadDrinkComponent.cs b/Content.Server/Nutrition/Components/BadDrinkComponent.cs index 6512f444660..5b9e5a62971 100644 --- a/Content.Server/Nutrition/Components/BadDrinkComponent.cs +++ b/Content.Server/Nutrition/Components/BadDrinkComponent.cs @@ -7,6 +7,6 @@ namespace Content.Server.Nutrition.Components; /// Including but not limited to: puddles /// [RegisterComponent, Access(typeof(DrinkSystem))] -public sealed class BadDrinkComponent : Component +public sealed partial class BadDrinkComponent : Component { } diff --git a/Content.Server/Nutrition/Components/BadFoodComponent.cs b/Content.Server/Nutrition/Components/BadFoodComponent.cs index 901575e01cc..0924b465a4b 100644 --- a/Content.Server/Nutrition/Components/BadFoodComponent.cs +++ b/Content.Server/Nutrition/Components/BadFoodComponent.cs @@ -7,6 +7,6 @@ namespace Content.Server.Nutrition.Components; /// Including but not limited to: uranium, death pills, insulation /// [RegisterComponent, Access(typeof(FoodSystem))] -public sealed class BadFoodComponent : Component +public sealed partial class BadFoodComponent : Component { } diff --git a/Content.Server/Nutrition/Components/CigarComponent.cs b/Content.Server/Nutrition/Components/CigarComponent.cs index b839f97cd04..1ec94d5bd57 100644 --- a/Content.Server/Nutrition/Components/CigarComponent.cs +++ b/Content.Server/Nutrition/Components/CigarComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Nutrition.Components /// A disposable, single-use smokable. /// [RegisterComponent, Access(typeof(SmokingSystem))] - public sealed class CigarComponent : Component + public sealed partial class CigarComponent : Component { } } diff --git a/Content.Server/Nutrition/Components/DrinkComponent.cs b/Content.Server/Nutrition/Components/DrinkComponent.cs index 2ffaa8a357c..aa467d3e611 100644 --- a/Content.Server/Nutrition/Components/DrinkComponent.cs +++ b/Content.Server/Nutrition/Components/DrinkComponent.cs @@ -8,7 +8,7 @@ namespace Content.Server.Nutrition.Components { [RegisterComponent] [Access(typeof(DrinkSystem))] - public sealed class DrinkComponent : Component + public sealed partial class DrinkComponent : Component { [DataField("solution")] public string SolutionName { get; set; } = DefaultSolutionName; diff --git a/Content.Server/Nutrition/Components/FatExtractorComponent.cs b/Content.Server/Nutrition/Components/FatExtractorComponent.cs index 4d70ead8fc3..61bb85f9ec1 100644 --- a/Content.Server/Nutrition/Components/FatExtractorComponent.cs +++ b/Content.Server/Nutrition/Components/FatExtractorComponent.cs @@ -12,7 +12,7 @@ namespace Content.Server.Nutrition.Components; /// This is used for a machine that extracts hunger from entities and creates meat. Yum! /// [RegisterComponent, Access(typeof(FatExtractorSystem))] -public sealed class FatExtractorComponent : Component +public sealed partial class FatExtractorComponent : Component { /// /// Whether or not the extractor is currently extracting fat from someone diff --git a/Content.Server/Nutrition/Components/FlavorProfileComponent.cs b/Content.Server/Nutrition/Components/FlavorProfileComponent.cs index 415bcb6367c..a4d5c1085a5 100644 --- a/Content.Server/Nutrition/Components/FlavorProfileComponent.cs +++ b/Content.Server/Nutrition/Components/FlavorProfileComponent.cs @@ -1,19 +1,19 @@ namespace Content.Server.Nutrition.Components; [RegisterComponent] -public sealed class FlavorProfileComponent : Component +public sealed partial class FlavorProfileComponent : Component { /// /// Localized string containing the base flavor of this entity. /// [DataField("flavors")] - public HashSet Flavors { get; } = new(); + public HashSet Flavors { get; private set; } = new(); /// /// Reagent IDs to ignore when processing this flavor profile. Defaults to nutriment. /// [DataField("ignoreReagents")] - public HashSet IgnoreReagents { get; } = new() + public HashSet IgnoreReagents { get; private set; } = new() { "Nutriment", "Vitamin", diff --git a/Content.Server/Nutrition/Components/FoodComponent.cs b/Content.Server/Nutrition/Components/FoodComponent.cs index 61709e616df..3d75fd633b2 100644 --- a/Content.Server/Nutrition/Components/FoodComponent.cs +++ b/Content.Server/Nutrition/Components/FoodComponent.cs @@ -9,7 +9,7 @@ namespace Content.Server.Nutrition.Components { [RegisterComponent, Access(typeof(FoodSystem))] - public sealed class FoodComponent : Component + public sealed partial class FoodComponent : Component { [DataField("solution")] public string SolutionName { get; set; } = "food"; @@ -39,7 +39,7 @@ public sealed class FoodComponent : Component /// If this is set to true, food can only be eaten if you have a stomach with a /// that includes this entity in its whitelist, /// rather than just being digestible by anything that can eat food. - /// Whitelist the food component to allow eating of normal food. + /// Whitelist the food component to allow eating of normal food. /// [DataField("requiresSpecialDigestion")] public bool RequiresSpecialDigestion = false; diff --git a/Content.Server/Nutrition/Components/IgnoreBadFoodComponent.cs b/Content.Server/Nutrition/Components/IgnoreBadFoodComponent.cs index 734af7000f7..cb30b98e191 100644 --- a/Content.Server/Nutrition/Components/IgnoreBadFoodComponent.cs +++ b/Content.Server/Nutrition/Components/IgnoreBadFoodComponent.cs @@ -7,6 +7,6 @@ namespace Content.Server.Nutrition.Components; /// See MobMouseAdmeme for usage. /// [RegisterComponent, Access(typeof(FoodSystem))] -public sealed class IgnoreBadFoodComponent : Component +public sealed partial class IgnoreBadFoodComponent : Component { } diff --git a/Content.Server/Nutrition/Components/IngestionBlockerComponent.cs b/Content.Server/Nutrition/Components/IngestionBlockerComponent.cs index c1764a7e286..68d2b78fbaa 100644 --- a/Content.Server/Nutrition/Components/IngestionBlockerComponent.cs +++ b/Content.Server/Nutrition/Components/IngestionBlockerComponent.cs @@ -10,7 +10,7 @@ namespace Content.Server.Nutrition.EntitySystems; /// masks), then this component might become redundant. /// [RegisterComponent, Access(typeof(FoodSystem), typeof(DrinkSystem), typeof(MaskSystem))] -public sealed class IngestionBlockerComponent : Component +public sealed partial class IngestionBlockerComponent : Component { /// /// Is this component currently blocking consumption. diff --git a/Content.Server/Nutrition/Components/SliceableFoodComponent.cs b/Content.Server/Nutrition/Components/SliceableFoodComponent.cs index 26eb0f2d7be..7173e2ecd23 100644 --- a/Content.Server/Nutrition/Components/SliceableFoodComponent.cs +++ b/Content.Server/Nutrition/Components/SliceableFoodComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Nutrition.Components { [RegisterComponent, Access(typeof(SliceableFoodSystem))] - internal sealed class SliceableFoodComponent : Component + internal sealed partial class SliceableFoodComponent : Component { [DataField("slice")] [ViewVariables(VVAccess.ReadWrite)] diff --git a/Content.Server/Nutrition/Components/SmokingPipeComponent.cs b/Content.Server/Nutrition/Components/SmokingPipeComponent.cs index feafd72a0bb..678289a3764 100644 --- a/Content.Server/Nutrition/Components/SmokingPipeComponent.cs +++ b/Content.Server/Nutrition/Components/SmokingPipeComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Nutrition.Components /// A reusable vessel for smoking /// [RegisterComponent, Access(typeof(SmokingSystem))] - public sealed class SmokingPipeComponent : Component + public sealed partial class SmokingPipeComponent : Component { public const string BowlSlotId = "bowl_slot"; diff --git a/Content.Server/Nutrition/Components/ThirstComponent.cs b/Content.Server/Nutrition/Components/ThirstComponent.cs index d0fbd00abe3..1b2d9049b8e 100644 --- a/Content.Server/Nutrition/Components/ThirstComponent.cs +++ b/Content.Server/Nutrition/Components/ThirstComponent.cs @@ -14,7 +14,7 @@ public enum ThirstThreshold : byte } [RegisterComponent] - public sealed class ThirstComponent : Component + public sealed partial class ThirstComponent : Component { // Base stuff [ViewVariables(VVAccess.ReadWrite)] @@ -35,7 +35,7 @@ public sealed class ThirstComponent : Component public float CurrentThirst = -1f; [DataField("thresholds")] - public Dictionary ThirstThresholds { get; } = new() + public Dictionary ThirstThresholds { get; private set; } = new() { {ThirstThreshold.OverHydrated, 600.0f}, {ThirstThreshold.Okay, 450.0f}, diff --git a/Content.Server/Nutrition/Components/TrashOnEmptyComponent.cs b/Content.Server/Nutrition/Components/TrashOnEmptyComponent.cs index ee249d703e4..b36bd172bf5 100644 --- a/Content.Server/Nutrition/Components/TrashOnEmptyComponent.cs +++ b/Content.Server/Nutrition/Components/TrashOnEmptyComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.Nutrition.Components /// Used for things like used ketchup packets or used syringes. /// [RegisterComponent] - public sealed class TrashOnEmptyComponent : Component + public sealed partial class TrashOnEmptyComponent : Component { /// /// The name of the solution of which to check emptiness diff --git a/Content.Server/Nutrition/Components/UtensilComponent.cs b/Content.Server/Nutrition/Components/UtensilComponent.cs index 421144011b7..4058d7e154b 100644 --- a/Content.Server/Nutrition/Components/UtensilComponent.cs +++ b/Content.Server/Nutrition/Components/UtensilComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Nutrition.Components { [RegisterComponent, Access(typeof(UtensilSystem))] - public sealed class UtensilComponent : Component + public sealed partial class UtensilComponent : Component { [DataField("types")] private UtensilType _types = UtensilType.None; diff --git a/Content.Server/Nutrition/Components/VapeComponent.cs b/Content.Server/Nutrition/Components/VapeComponent.cs index 28b2e6e5316..41b03edfb4b 100644 --- a/Content.Server/Nutrition/Components/VapeComponent.cs +++ b/Content.Server/Nutrition/Components/VapeComponent.cs @@ -1,15 +1,11 @@ -using System.Threading; using Content.Server.Nutrition.EntitySystems; using Content.Shared.Damage; using Content.Shared.Atmos; -/// -/// Component for vapes -/// -namespace Content.Server.Nutrition.Components +namespace Content.Server.Nutrition.Components // Vapes are very nutritious. { - [RegisterComponent, Access(typeof(SmokingSystem))] - public sealed class VapeComponent : Component + [RegisterComponent, Access(typeof(SmokingSystem))] + public sealed partial class VapeComponent : Component { [DataField("delay")] [ViewVariables(VVAccess.ReadWrite)] @@ -23,6 +19,7 @@ public sealed class VapeComponent : Component [ViewVariables(VVAccess.ReadWrite)] public float ExplosionIntensity { get; set; } = 2.5f; + // TODO use RiggableComponent. [DataField("explodeOnUse")] [ViewVariables(VVAccess.ReadWrite)] public bool ExplodeOnUse { get; set; } = false; @@ -42,10 +39,9 @@ public sealed class VapeComponent : Component [ViewVariables(VVAccess.ReadWrite)] public float ReductionFactor { get; set; } = 300f; + // TODO when this gets fixed, use prototype serializers [DataField("solutionNeeded")] [ViewVariables(VVAccess.ReadWrite)] public string SolutionNeeded = "Water"; - - public CancellationTokenSource? CancelToken; } -} \ No newline at end of file +} diff --git a/Content.Server/Nutrition/EntitySystems/AnimalHusbandrySystem.cs b/Content.Server/Nutrition/EntitySystems/AnimalHusbandrySystem.cs index b5779bfe0a1..94a80c4bd5e 100644 --- a/Content.Server/Nutrition/EntitySystems/AnimalHusbandrySystem.cs +++ b/Content.Server/Nutrition/EntitySystems/AnimalHusbandrySystem.cs @@ -1,17 +1,16 @@ using Content.Server.Administration.Logs; using Content.Server.Interaction.Components; -using Content.Server.Mind.Components; using Content.Server.Nutrition.Components; using Content.Server.Popups; using Content.Shared.Database; using Content.Shared.IdentityManagement; +using Content.Shared.Mind.Components; using Content.Shared.Mobs.Systems; using Content.Shared.Nutrition.AnimalHusbandry; using Content.Shared.Nutrition.Components; using Content.Shared.Nutrition.EntitySystems; using Content.Shared.Storage; using Robust.Server.GameObjects; -using Robust.Shared.Collections; using Robust.Shared.Random; using Robust.Shared.Timing; diff --git a/Content.Server/Nutrition/EntitySystems/CreamPieSystem.cs b/Content.Server/Nutrition/EntitySystems/CreamPieSystem.cs index c9840ff235a..2740f52b0ce 100644 --- a/Content.Server/Nutrition/EntitySystems/CreamPieSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/CreamPieSystem.cs @@ -39,7 +39,7 @@ protected override void SplattedCreamPie(EntityUid uid, CreamPieComponent creamP { _audio.Play(_audio.GetSound(creamPie.Sound), Filter.Pvs(uid), uid, false, new AudioParams().WithVariation(0.125f)); - if (EntityManager.TryGetComponent(uid, out var foodComp)) + if (EntityManager.TryGetComponent(uid, out FoodComponent? foodComp)) { if (_solutions.TryGetSolution(uid, foodComp.SolutionName, out var solution)) { diff --git a/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs b/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs index 36521568a1a..1aff7e1e9ba 100644 --- a/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs @@ -101,7 +101,7 @@ public float TotalHydration(EntityUid uid, DrinkComponent? comp = null) var total = 0f; foreach (var quantity in solution.Contents) { - var reagent = _proto.Index(quantity.ReagentId); + var reagent = _proto.Index(quantity.Reagent.Prototype); if (reagent.Metabolisms == null) continue; @@ -311,7 +311,7 @@ private bool TryDrink(EntityUid user, EntityUid target, DrinkComponent drink, En var flavors = _flavorProfile.GetLocalizedFlavorsMessage(user, drinkSolution); - var doAfterEventArgs = new DoAfterArgs( + var doAfterEventArgs = new DoAfterArgs(EntityManager, user, forceDrink ? drink.ForceFeedDelay : drink.Delay, new ConsumeDoAfterEvent(drinkSolution.Name, flavors), diff --git a/Content.Server/Nutrition/EntitySystems/FlavorProfileSystem.cs b/Content.Server/Nutrition/EntitySystems/FlavorProfileSystem.cs index 9e20484c311..e01f199ae10 100644 --- a/Content.Server/Nutrition/EntitySystems/FlavorProfileSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/FlavorProfileSystem.cs @@ -84,9 +84,9 @@ private string FlavorsToFlavorMessage(HashSet flavorSet) private HashSet GetFlavorsFromReagents(Solution solution, int desiredAmount, HashSet? toIgnore = null) { var flavors = new HashSet(); - foreach (var reagent in solution.Contents) + foreach (var (reagent, quantity) in solution.GetReagentPrototypes(_prototypeManager)) { - if (toIgnore != null && toIgnore.Contains(reagent.ReagentId)) + if (toIgnore != null && toIgnore.Contains(reagent.ID)) { continue; } @@ -96,15 +96,14 @@ private HashSet GetFlavorsFromReagents(Solution solution, int desiredAmo break; } - var proto = _prototypeManager.Index(reagent.ReagentId); // don't care if the quantity is negligible - if (reagent.Quantity < proto.FlavorMinimum) + if (quantity < reagent.FlavorMinimum) { continue; } - if (proto.Flavor != null) - flavors.Add(proto.Flavor); + if (reagent.Flavor != null) + flavors.Add(reagent.Flavor); } return flavors; diff --git a/Content.Server/Nutrition/EntitySystems/FoodSystem.cs b/Content.Server/Nutrition/EntitySystems/FoodSystem.cs index 43131f5c832..125edd2c4c7 100644 --- a/Content.Server/Nutrition/EntitySystems/FoodSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/FoodSystem.cs @@ -28,7 +28,7 @@ using Robust.Shared.Player; using Robust.Shared.Utility; using Content.Shared.Tag; -using Content.Server.Storage.Components; +using Content.Shared.Storage; namespace Content.Server.Nutrition.EntitySystems { @@ -52,7 +52,6 @@ public sealed class FoodSystem : EntitySystem [Dependency] private readonly ReactiveSystem _reaction = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly StackSystem _stack = default!; - [Dependency] private readonly TagSystem _tags = default!; public const float MaxFeedDistance = 1.0f; @@ -121,7 +120,7 @@ private void OnFeedFood(EntityUid uid, FoodComponent foodComponent, AfterInterac } // Check for used storage on the food item - if (TryComp(food, out var storageState) && storageState.StorageUsed != 0) + if (TryComp(food, out var storageState) && storageState.StorageUsed != 0) { _popupSystem.PopupEntity(Loc.GetString("food-has-used-storage", ("food", food)), user, user); return (false, true); @@ -171,7 +170,7 @@ private void OnFeedFood(EntityUid uid, FoodComponent foodComponent, AfterInterac _adminLogger.Add(LogType.Ingestion, LogImpact.Low, $"{ToPrettyString(target):target} is eating {ToPrettyString(food):food} {SolutionContainerSystem.ToPrettyString(foodSolution)}"); } - var doAfterArgs = new DoAfterArgs( + var doAfterArgs = new DoAfterArgs(EntityManager, user, forceFeed ? foodComp.ForceFeedDelay : foodComp.Delay, new ConsumeDoAfterEvent(foodSolution.Name, flavors), diff --git a/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs b/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs index 07fb24cd205..4dd9aff9ac8 100644 --- a/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs +++ b/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs @@ -35,7 +35,7 @@ private void InitializeVapes() SubscribeLocalEvent(OnEmagged); } - private void OnVapeInteraction(EntityUid uid, VapeComponent comp, AfterInteractEvent args) + private void OnVapeInteraction(EntityUid uid, VapeComponent comp, AfterInteractEvent args) { _solutionContainerSystem.TryGetRefillableSolution(uid, out var solution); @@ -44,11 +44,12 @@ private void OnVapeInteraction(EntityUid uid, VapeComponent comp, AfterInteractE var exploded = false; if (!args.CanReach - || solution == null - || comp.CancelToken != null - || !TryComp(args.Target, out var _) - || _foodSystem.IsMouthBlocked(args.Target.Value, args.User)) + || solution == null + || !HasComp(args.Target) + || _foodSystem.IsMouthBlocked(args.Target.Value, args.User)) + { return; + } if (solution.Contents.Count == 0) { @@ -72,9 +73,14 @@ private void OnVapeInteraction(EntityUid uid, VapeComponent comp, AfterInteractE } else { + // All vapes explode if they contain anything other than pure water??? + // WTF is this? Why is this? Am I going insane? + // Who the fuck vapes pure water? + // If this isn't how this is meant to work and this is meant to be for vapes with plasma or something, + // just re-use the existing RiggableSystem. foreach (var name in solution.Contents) { - if (name.ReagentId != comp.SolutionNeeded) + if (name.Reagent.Prototype != comp.SolutionNeeded) { exploded = true; _explosionSystem.QueueExplosion(uid, "Default", comp.ExplosionIntensity, 0.5f, 3, canCreateVacuum: false); @@ -92,7 +98,7 @@ private void OnVapeInteraction(EntityUid uid, VapeComponent comp, AfterInteractE _popupSystem.PopupEntity( Loc.GetString("vape-component-try-use-vape-forced", ("user", userName)), args.Target.Value, args.Target.Value); - + _popupSystem.PopupEntity( Loc.GetString("vape-component-try-use-vape-forced-user", ("target", targetName)), args.User, args.User); @@ -106,10 +112,8 @@ private void OnVapeInteraction(EntityUid uid, VapeComponent comp, AfterInteractE if (!exploded) { - comp.CancelToken = new CancellationTokenSource(); - var vapeDoAfterEvent = new VapeDoAfterEvent(solution, forced); - _doAfterSystem.TryStartDoAfter(new DoAfterArgs(args.User, delay, vapeDoAfterEvent, uid, target: args.Target, used: uid) + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, args.User, delay, vapeDoAfterEvent, uid, target: args.Target, used: uid) { BreakOnTargetMove = true, BreakOnUserMove = false, @@ -121,14 +125,6 @@ private void OnVapeInteraction(EntityUid uid, VapeComponent comp, AfterInteractE private void OnVapeDoAfter(EntityUid uid, VapeComponent comp, VapeDoAfterEvent args) { - if (args.Cancelled) - { - comp.CancelToken = null; - return; - } - - comp.CancelToken = null; - if (args.Handled || args.Args.Target == null) return; @@ -148,7 +144,7 @@ private void OnVapeDoAfter(EntityUid uid, VapeComponent comp, VapeDoAfterEvent a _atmosphereSystem.Merge(environment, merger); args.Solution.RemoveAllSolution(); - + if (args.Forced) { var targetName = Identity.Entity(args.Args.Target.Value, EntityManager); @@ -157,7 +153,7 @@ private void OnVapeDoAfter(EntityUid uid, VapeComponent comp, VapeDoAfterEvent a _popupSystem.PopupEntity( Loc.GetString("vape-component-vape-success-forced", ("user", userName)), args.Args.Target.Value, args.Args.Target.Value); - + _popupSystem.PopupEntity( Loc.GetString("vape-component-vape-success-user-forced", ("target", targetName)), args.Args.User, args.Args.Target.Value); diff --git a/Content.Server/Objectives/Commands/AddObjectiveCommand.cs b/Content.Server/Objectives/Commands/AddObjectiveCommand.cs index 7353763b63e..f5519e50957 100644 --- a/Content.Server/Objectives/Commands/AddObjectiveCommand.cs +++ b/Content.Server/Objectives/Commands/AddObjectiveCommand.cs @@ -1,7 +1,7 @@ using Content.Server.Administration; -using Content.Server.Mind; -using Content.Server.Players; using Content.Shared.Administration; +using Content.Shared.Mind; +using Content.Shared.Objectives; using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Prototypes; @@ -12,7 +12,7 @@ namespace Content.Server.Objectives.Commands public sealed class AddObjectiveCommand : IConsoleCommand { [Dependency] private readonly IEntityManager _entityManager = default!; - + public string Command => "addobjective"; public string Description => "Adds an objective to the player's mind."; public string Help => "addobjective "; @@ -25,15 +25,14 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) } var mgr = IoCManager.Resolve(); - if (!mgr.TryGetPlayerDataByUsername(args[0], out var data)) + if (!mgr.TryGetSessionByUsername(args[0], out var data)) { shell.WriteLine("Can't find the playerdata."); return; } - - var mind = data.ContentData()?.Mind; - if (mind == null) + var minds = _entityManager.System(); + if (!minds.TryGetMind(data, out var mindId, out var mind)) { shell.WriteLine("Can't find the mind."); return; @@ -45,14 +44,12 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) shell.WriteLine($"Can't find matching ObjectivePrototype {objectivePrototype}"); return; } - - var mindSystem = _entityManager.System(); - if (!mindSystem.TryAddObjective(mind, objectivePrototype)) + var mindSystem = _entityManager.System(); + if (!mindSystem.TryAddObjective(mindId, mind, objectivePrototype)) { shell.WriteLine("Objective requirements dont allow that objective to be added."); } - } } } diff --git a/Content.Server/Objectives/Commands/ListObjectivesCommand.cs b/Content.Server/Objectives/Commands/ListObjectivesCommand.cs index 1126cac24f2..d1a7feb0ca6 100644 --- a/Content.Server/Objectives/Commands/ListObjectivesCommand.cs +++ b/Content.Server/Objectives/Commands/ListObjectivesCommand.cs @@ -1,7 +1,7 @@ using System.Linq; using Content.Server.Administration; -using Content.Server.Players; using Content.Shared.Administration; +using Content.Shared.Mind; using Robust.Server.Player; using Robust.Shared.Console; @@ -10,39 +10,38 @@ namespace Content.Server.Objectives.Commands [AdminCommand(AdminFlags.Logs)] public sealed class ListObjectivesCommand : LocalizedCommands { + [Dependency] private readonly IEntityManager _entities = default!; + [Dependency] private readonly IPlayerManager _players = default!; + public override string Command => "lsobjectives"; + public override void Execute(IConsoleShell shell, string argStr, string[] args) { var player = shell.Player as IPlayerSession; - IPlayerData? data; - if (args.Length == 0 && player != null) - { - data = player.Data; - } - else if (player == null || !IoCManager.Resolve().TryGetPlayerDataByUsername(args[0], out data)) + if (player == null || !_players.TryGetSessionByUsername(args[0], out player)) { shell.WriteError(LocalizationManager.GetString("shell-target-player-does-not-exist")); return; } - var mind = data.ContentData()?.Mind; - if (mind == null) + var minds = _entities.System(); + if (!minds.TryGetMind(player, out _, out var mind)) { shell.WriteError(LocalizationManager.GetString("shell-target-entity-does-not-have-message", ("missing", "mind"))); return; } - shell.WriteLine($"Objectives for player {data.UserId}:"); + shell.WriteLine($"Objectives for player {player.UserId}:"); var objectives = mind.AllObjectives.ToList(); if (objectives.Count == 0) { shell.WriteLine("None."); } + for (var i = 0; i < objectives.Count; i++) { shell.WriteLine($"- [{i}] {objectives[i].Conditions[0].Title}"); } - } public override CompletionResult GetCompletion(IConsoleShell shell, string[] args) diff --git a/Content.Server/Objectives/Commands/RemoveObjectiveCommand.cs b/Content.Server/Objectives/Commands/RemoveObjectiveCommand.cs index c0846a1e434..26369822fda 100644 --- a/Content.Server/Objectives/Commands/RemoveObjectiveCommand.cs +++ b/Content.Server/Objectives/Commands/RemoveObjectiveCommand.cs @@ -1,7 +1,6 @@ using Content.Server.Administration; -using Content.Server.Mind; -using Content.Server.Players; using Content.Shared.Administration; +using Content.Shared.Mind; using Robust.Server.Player; using Robust.Shared.Console; @@ -11,7 +10,7 @@ namespace Content.Server.Objectives.Commands public sealed class RemoveObjectiveCommand : IConsoleCommand { [Dependency] private readonly IEntityManager _entityManager = default!; - + public string Command => "rmobjective"; public string Description => "Removes an objective from the player's mind."; public string Help => "rmobjective "; @@ -24,30 +23,29 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) } var mgr = IoCManager.Resolve(); - if (mgr.TryGetPlayerDataByUsername(args[0], out var data)) + var minds = _entityManager.System(); + if (!mgr.TryGetSessionByUsername(args[0], out var session)) + { + shell.WriteLine("Can't find the playerdata."); + return; + } + + if (!minds.TryGetMind(session, out _, out var mind)) { - var mind = data.ContentData()?.Mind; - if (mind == null) - { - shell.WriteLine("Can't find the mind."); - return; - } + shell.WriteLine("Can't find the mind."); + return; + } - if (int.TryParse(args[1], out var i)) - { - var mindSystem = _entityManager.System(); - shell.WriteLine(mindSystem.TryRemoveObjective(mind, i) - ? "Objective successfully removed!" - : "Objective removing failed. Maybe the index is out of bounds? Check lsobjectives!"); - } - else - { - shell.WriteLine($"Invalid index {args[1]}!"); - } + if (int.TryParse(args[1], out var i)) + { + var mindSystem = _entityManager.System(); + shell.WriteLine(mindSystem.TryRemoveObjective(mind, i) + ? "Objective successfully removed!" + : "Objective removing failed. Maybe the index is out of bounds? Check lsobjectives!"); } else { - shell.WriteLine("Can't find the playerdata."); + shell.WriteLine($"Invalid index {args[1]}!"); } } } diff --git a/Content.Server/Objectives/Conditions/DieCondition.cs b/Content.Server/Objectives/Conditions/DieCondition.cs index 5a63147ad4a..d5e9e1aef67 100644 --- a/Content.Server/Objectives/Conditions/DieCondition.cs +++ b/Content.Server/Objectives/Conditions/DieCondition.cs @@ -1,5 +1,5 @@ -using Content.Server.Mind; -using Content.Server.Objectives.Interfaces; +using Content.Shared.Mind; +using Content.Shared.Objectives.Interfaces; using JetBrains.Annotations; using Robust.Shared.Utility; @@ -7,13 +7,13 @@ namespace Content.Server.Objectives.Conditions { [UsedImplicitly] [DataDefinition] - public sealed class DieCondition : IObjectiveCondition + public sealed partial class DieCondition : IObjectiveCondition { - private Mind.Mind? _mind; + private MindComponent? _mind; - public IObjectiveCondition GetAssigned(Mind.Mind mind) + public IObjectiveCondition GetAssigned(EntityUid mindId, MindComponent mind) { - return new DieCondition {_mind = mind}; + return new DieCondition { _mind = mind }; } public string Title => Loc.GetString("objective-condition-die-title"); @@ -27,7 +27,7 @@ public float Progress get { var entityManager = IoCManager.Resolve(); - var mindSystem = entityManager.System(); + var mindSystem = entityManager.System(); return _mind == null || mindSystem.IsCharacterDeadIc(_mind) ? 1f : 0f; } } diff --git a/Content.Server/Objectives/Conditions/DoorjackCondition.cs b/Content.Server/Objectives/Conditions/DoorjackCondition.cs new file mode 100644 index 00000000000..07520485544 --- /dev/null +++ b/Content.Server/Objectives/Conditions/DoorjackCondition.cs @@ -0,0 +1,70 @@ +using Content.Server.Roles; +using Content.Shared.Mind; +using Content.Shared.Objectives.Interfaces; +using Robust.Shared.Random; +using Robust.Shared.Utility; + +namespace Content.Server.Objectives.Conditions; + +/// +/// Objective condition that requires the player to be a ninja and have doorjacked at least a random number of airlocks. +/// +[DataDefinition] +public sealed partial class DoorjackCondition : IObjectiveCondition +{ + private EntityUid? _mind; + private int _target; + + public IObjectiveCondition GetAssigned(EntityUid uid, MindComponent mind) + { + // TODO: clamp to number of doors on station incase its somehow a shittle or something + return new DoorjackCondition { + _mind = uid, + _target = IoCManager.Resolve().Next(15, 40) + }; + } + + public string Title => Loc.GetString("objective-condition-doorjack-title", ("count", _target)); + + public string Description => Loc.GetString("objective-condition-doorjack-description", ("count", _target)); + + public SpriteSpecifier Icon => new SpriteSpecifier.Rsi(new ResPath("Objects/Tools/emag.rsi"), "icon"); + + public float Progress + { + get + { + // prevent divide-by-zero + if (_target == 0) + return 1f; + + var entMan = IoCManager.Resolve(); + if (!entMan.TryGetComponent(_mind, out var role)) + return 0f; + + if (role.DoorsJacked >= _target) + return 1f; + + return (float) role.DoorsJacked / (float) _target; + } + } + + public float Difficulty => 1.5f; + + public bool Equals(IObjectiveCondition? other) + { + return other is DoorjackCondition cond && Equals(_mind, cond._mind) && _target == cond._target; + } + + public override bool Equals(object? obj) + { + if (ReferenceEquals(null, obj)) return false; + if (ReferenceEquals(this, obj)) return true; + return obj is DoorjackCondition cond && cond.Equals(this); + } + + public override int GetHashCode() + { + return HashCode.Combine(_mind?.GetHashCode() ?? 0, _target); + } +} diff --git a/Content.Server/Objectives/Conditions/EscapeShuttleCondition.cs b/Content.Server/Objectives/Conditions/EscapeShuttleCondition.cs index f26d2564465..27d7975c242 100644 --- a/Content.Server/Objectives/Conditions/EscapeShuttleCondition.cs +++ b/Content.Server/Objectives/Conditions/EscapeShuttleCondition.cs @@ -1,7 +1,7 @@ -using Content.Server.Mind; -using Content.Server.Objectives.Interfaces; using Content.Server.Shuttles.Systems; using Content.Shared.Cuffs.Components; +using Content.Shared.Mind; +using Content.Shared.Objectives.Interfaces; using JetBrains.Annotations; using Robust.Shared.Utility; @@ -9,13 +9,15 @@ namespace Content.Server.Objectives.Conditions { [UsedImplicitly] [DataDefinition] - public sealed class EscapeShuttleCondition : IObjectiveCondition + public sealed partial class EscapeShuttleCondition : IObjectiveCondition { - private Mind.Mind? _mind; + // TODO refactor all of this to be ecs + private MindComponent? _mind; - public IObjectiveCondition GetAssigned(Mind.Mind mind) + public IObjectiveCondition GetAssigned(EntityUid mindId, MindComponent mind) { - return new EscapeShuttleCondition { + return new EscapeShuttleCondition + { _mind = mind, }; } @@ -30,7 +32,7 @@ public float Progress { get { var entMan = IoCManager.Resolve(); - var mindSystem = entMan.System(); + var mindSystem = entMan.System(); if (_mind?.OwnedEntity == null || !entMan.TryGetComponent(_mind.OwnedEntity, out var xform)) diff --git a/Content.Server/Objectives/Conditions/KillPersonCondition.cs b/Content.Server/Objectives/Conditions/KillPersonCondition.cs index 8543fd95477..b5f16a62a2d 100644 --- a/Content.Server/Objectives/Conditions/KillPersonCondition.cs +++ b/Content.Server/Objectives/Conditions/KillPersonCondition.cs @@ -1,8 +1,9 @@ -using Content.Server.Mind; -using Content.Server.Objectives.Interfaces; using Content.Server.Shuttles.Systems; using Content.Shared.CCVar; +using Content.Shared.Mind; using Content.Shared.Mobs.Systems; +using Content.Shared.Objectives.Interfaces; +using Content.Shared.Roles.Jobs; using Robust.Shared.Configuration; using Robust.Shared.Utility; @@ -10,10 +11,14 @@ namespace Content.Server.Objectives.Conditions { public abstract class KillPersonCondition : IObjectiveCondition { + // TODO refactor all of this to be ecs protected IEntityManager EntityManager => IoCManager.Resolve(); - protected MobStateSystem MobStateSystem => EntityManager.EntitySysManager.GetEntitySystem(); - protected Mind.Mind? Target; - public abstract IObjectiveCondition GetAssigned(Mind.Mind mind); + protected SharedMindSystem Minds => EntityManager.System(); + protected SharedJobSystem Jobs => EntityManager.System(); + protected MobStateSystem MobStateSystem => EntityManager.System(); + protected EntityUid? TargetMindId; + protected MindComponent? TargetMind => EntityManager.GetComponentOrNull(TargetMindId); + public abstract IObjectiveCondition GetAssigned(EntityUid mindId, MindComponent mind); /// /// Whether the target must be truly dead, ignores missing evac. @@ -24,10 +29,11 @@ public string Title { get { - var targetName = Target?.CharacterName ?? "Unknown"; - var jobName = Target?.CurrentJob?.Name ?? "Unknown"; + var mind = TargetMind; + var targetName = mind?.CharacterName ?? "Unknown"; + var jobName = Jobs.MindTryGetJobName(TargetMindId); - if (Target == null) + if (TargetMind == null) return Loc.GetString("objective-condition-kill-person-title", ("targetName", targetName), ("job", jobName)); return Loc.GetString("objective-condition-kill-person-title", ("targetName", targetName), ("job", jobName)); @@ -42,12 +48,12 @@ public float Progress { get { - if (Target == null || Target.OwnedEntity == null) + if (TargetMindId == null || TargetMind?.OwnedEntity == null) return 1f; var entMan = IoCManager.Resolve(); - var mindSystem = entMan.System(); - if (mindSystem.IsCharacterDeadIc(Target)) + var mindSystem = entMan.System(); + if (mindSystem.IsCharacterDeadIc(TargetMind)) return 1f; if (RequireDead) @@ -60,7 +66,7 @@ public float Progress // target is escaping so you fail var emergencyShuttle = entMan.System(); - if (emergencyShuttle.IsTargetEscaping(Target.OwnedEntity.Value)) + if (emergencyShuttle.IsTargetEscaping(TargetMind.OwnedEntity.Value)) return 0f; // evac has left without the target, greentext since the target is afk in space with a full oxygen tank and coordinates off. @@ -76,7 +82,7 @@ public float Progress public bool Equals(IObjectiveCondition? other) { - return other is KillPersonCondition kpc && Equals(Target, kpc.Target); + return other is KillPersonCondition kpc && Equals(TargetMindId, kpc.TargetMindId); } public override bool Equals(object? obj) @@ -89,7 +95,7 @@ public override bool Equals(object? obj) public override int GetHashCode() { - return Target?.GetHashCode() ?? 0; + return TargetMindId?.GetHashCode() ?? 0; } } } diff --git a/Content.Server/Objectives/Conditions/KillRandomHeadCondition.cs b/Content.Server/Objectives/Conditions/KillRandomHeadCondition.cs index 4476c0106ac..2703a37bc13 100644 --- a/Content.Server/Objectives/Conditions/KillRandomHeadCondition.cs +++ b/Content.Server/Objectives/Conditions/KillRandomHeadCondition.cs @@ -1,46 +1,43 @@ -using Content.Server.Mind.Components; -using Content.Server.Objectives.Interfaces; -using Content.Server.Roles; +using System.Linq; +using Content.Shared.Mind; +using Content.Shared.Mind.Components; using Content.Shared.Mobs.Components; +using Content.Shared.Objectives.Interfaces; using Robust.Shared.Random; -using System.Linq; namespace Content.Server.Objectives.Conditions; [DataDefinition] -public sealed class KillRandomHeadCondition : KillPersonCondition +public sealed partial class KillRandomHeadCondition : KillPersonCondition { - public override IObjectiveCondition GetAssigned(Mind.Mind mind) + // TODO refactor all of this to be ecs + public override IObjectiveCondition GetAssigned(EntityUid mindId, MindComponent mind) { RequireDead = true; var allHumans = EntityManager.EntityQuery(true).Where(mc => { - var entity = mc.Mind?.OwnedEntity; + var entity = EntityManagerExt.GetComponentOrNull(EntityManager, (EntityUid?) mc.Mind)?.OwnedEntity; if (entity == default) return false; return EntityManager.TryGetComponent(entity, out MobStateComponent? mobState) && - MobStateSystem.IsAlive(entity.Value, mobState) && - mc.Mind != mind; + MobStateSystem.IsAlive(entity.Value, mobState) && + mc.Mind != mindId; }).Select(mc => mc.Mind).ToList(); if (allHumans.Count == 0) return new DieCondition(); // I guess I'll die - var allHeads = allHumans.Where(mind => mind?.AllRoles.Any(role => { - if (role is not Job job) - return false; - - // basically a command department check, pretty sussy but whatever - return job.Prototype.RequireAdminNotify; - }) ?? false).ToList(); + var allHeads = allHumans + .Where(mind => Jobs.MindTryGetJob(mind, out _, out var prototype) && prototype.RequireAdminNotify) + .ToList(); if (allHeads.Count == 0) allHeads = allHumans; // fallback to non-head target - return new KillRandomHeadCondition {Target = IoCManager.Resolve().Pick(allHeads)}; + return new KillRandomHeadCondition { TargetMindId = IoCManager.Resolve().Pick(allHeads) }; } public string Description => Loc.GetString("objective-condition-kill-head-description"); diff --git a/Content.Server/Objectives/Conditions/KillRandomPersonCondition.cs b/Content.Server/Objectives/Conditions/KillRandomPersonCondition.cs index 94b87947492..74eb6422b2b 100644 --- a/Content.Server/Objectives/Conditions/KillRandomPersonCondition.cs +++ b/Content.Server/Objectives/Conditions/KillRandomPersonCondition.cs @@ -1,35 +1,36 @@ -using Content.Server.Mind.Components; -using Content.Server.Objectives.Interfaces; using Content.Shared.Humanoid; +using Content.Shared.Mind; +using Content.Shared.Mind.Components; using Content.Shared.Mobs.Components; +using Content.Shared.Objectives.Interfaces; using Robust.Shared.Random; namespace Content.Server.Objectives.Conditions; [DataDefinition] -public sealed class KillRandomPersonCondition : KillPersonCondition +public sealed partial class KillRandomPersonCondition : KillPersonCondition { - public override IObjectiveCondition GetAssigned(Mind.Mind mind) + public override IObjectiveCondition GetAssigned(EntityUid mindId, MindComponent mind) { - var allHumans = new List(); + var allHumans = new List(); var query = EntityManager.EntityQuery(true); foreach (var (mc, _) in query) { - var entity = mc.Mind?.OwnedEntity; + var entity = EntityManager.GetComponentOrNull(mc.Mind)?.OwnedEntity; if (entity == default) continue; if (EntityManager.TryGetComponent(entity, out MobStateComponent? mobState) && MobStateSystem.IsAlive(entity.Value, mobState) && - mc.Mind != mind && mc.Mind != null) + mc.Mind != mindId && mc.Mind != null) { - allHumans.Add(mc.Mind); + allHumans.Add(mc.Mind.Value); } } if (allHumans.Count == 0) return new DieCondition(); // I guess I'll die - return new KillRandomPersonCondition {Target = IoCManager.Resolve().Pick(allHumans)}; + return new KillRandomPersonCondition {TargetMindId = IoCManager.Resolve().Pick(allHumans)}; } } diff --git a/Content.Server/Objectives/Conditions/RandomTraitorAliveCondition.cs b/Content.Server/Objectives/Conditions/RandomTraitorAliveCondition.cs index 4e550dcfe0d..8f914f08962 100644 --- a/Content.Server/Objectives/Conditions/RandomTraitorAliveCondition.cs +++ b/Content.Server/Objectives/Conditions/RandomTraitorAliveCondition.cs @@ -1,25 +1,27 @@ using System.Linq; -using Content.Server.Objectives.Interfaces; +using Content.Server.GameTicking.Rules; +using Content.Shared.Mind; +using Content.Shared.Objectives.Interfaces; +using Content.Shared.Roles.Jobs; using Robust.Shared.Random; using Robust.Shared.Utility; -using Content.Server.GameTicking.Rules; -using Content.Server.Mind; namespace Content.Server.Objectives.Conditions { [DataDefinition] - public sealed class RandomTraitorAliveCondition : IObjectiveCondition + public sealed partial class RandomTraitorAliveCondition : IObjectiveCondition { - private Mind.Mind? _target; + private EntityUid? _targetMind; - public IObjectiveCondition GetAssigned(Mind.Mind mind) + public IObjectiveCondition GetAssigned(EntityUid mindId, MindComponent mind) { var entityMgr = IoCManager.Resolve(); - var traitors = entityMgr.EntitySysManager.GetEntitySystem().GetOtherTraitorsAliveAndConnected(mind).ToList(); + var traitors = Enumerable.ToList<(EntityUid Id, MindComponent Mind)>(entityMgr.System().GetOtherTraitorMindsAliveAndConnected(mind)); + if (traitors.Count == 0) return new EscapeShuttleCondition(); //You were made a traitor by admins, and are the first/only. - return new RandomTraitorAliveCondition { _target = IoCManager.Resolve().Pick(traitors).Mind }; + return new RandomTraitorAliveCondition { _targetMind = IoCManager.Resolve().Pick(traitors).Id }; } public string Title @@ -27,13 +29,18 @@ public string Title get { var targetName = string.Empty; - var jobName = _target?.CurrentJob?.Name ?? "Unknown"; + var ents = IoCManager.Resolve(); + var jobs = ents.System(); + var jobName = jobs.MindTryGetJobName(_targetMind); - if (_target == null) + if (_targetMind == null) return Loc.GetString("objective-condition-other-traitor-alive-title", ("targetName", targetName), ("job", jobName)); - if (_target.OwnedEntity is {Valid: true} owned) - targetName = IoCManager.Resolve().GetComponent(owned).EntityName; + if (ents.TryGetComponent(_targetMind, out MindComponent? mind) && + mind.OwnedEntity is {Valid: true} owned) + { + targetName = ents.GetComponent(owned).EntityName; + } return Loc.GetString("objective-condition-other-traitor-alive-title", ("targetName", targetName), ("job", jobName)); } @@ -48,8 +55,11 @@ public float Progress get { var entityManager = IoCManager.Resolve(); - var mindSystem = entityManager.System(); - return _target == null || !mindSystem.IsCharacterDeadIc(_target) ? 1f : 0f; + var mindSystem = entityManager.System(); + return !entityManager.TryGetComponent(_targetMind, out MindComponent? mind) || + !mindSystem.IsCharacterDeadIc(mind) + ? 1f + : 0f; } } @@ -57,7 +67,7 @@ public float Progress public bool Equals(IObjectiveCondition? other) { - return other is RandomTraitorAliveCondition kpc && Equals(_target, kpc._target); + return other is RandomTraitorAliveCondition kpc && Equals(_targetMind, kpc._targetMind); } public override bool Equals(object? obj) @@ -69,7 +79,7 @@ public override bool Equals(object? obj) public override int GetHashCode() { - return _target?.GetHashCode() ?? 0; + return _targetMind?.GetHashCode() ?? 0; } } } diff --git a/Content.Server/Objectives/Conditions/RandomTraitorProgressCondition.cs b/Content.Server/Objectives/Conditions/RandomTraitorProgressCondition.cs index 1f8e6ffc2e0..4b0dc018aaf 100644 --- a/Content.Server/Objectives/Conditions/RandomTraitorProgressCondition.cs +++ b/Content.Server/Objectives/Conditions/RandomTraitorProgressCondition.cs @@ -1,24 +1,26 @@ using System.Linq; -using Content.Server.Objectives.Interfaces; +using Content.Server.GameTicking.Rules; +using Content.Shared.Mind; +using Content.Shared.Objectives.Interfaces; +using Content.Shared.Roles.Jobs; using Robust.Shared.Random; using Robust.Shared.Utility; -using Content.Server.GameTicking.Rules; -using Content.Server.Roles; namespace Content.Server.Objectives.Conditions { [DataDefinition] - public sealed class RandomTraitorProgressCondition : IObjectiveCondition + public sealed partial class RandomTraitorProgressCondition : IObjectiveCondition { - private Mind.Mind? _target; + // TODO ecs all of this + private EntityUid? _targetMind; - public IObjectiveCondition GetAssigned(Mind.Mind mind) + public IObjectiveCondition GetAssigned(EntityUid mindId, MindComponent mind) { //todo shit of a fuck var entityMgr = IoCManager.Resolve(); - var traitors = entityMgr.EntitySysManager.GetEntitySystem().GetOtherTraitorsAliveAndConnected(mind).ToList(); - List removeList = new(); + var traitors = entityMgr.System().GetOtherTraitorMindsAliveAndConnected(mind).ToList(); + List removeList = new(); foreach (var traitor in traitors) { @@ -28,7 +30,7 @@ public IObjectiveCondition GetAssigned(Mind.Mind mind) { if (condition is RandomTraitorProgressCondition) { - removeList.Add(traitor); + removeList.Add(traitor.Id); } } } @@ -36,11 +38,11 @@ public IObjectiveCondition GetAssigned(Mind.Mind mind) foreach (var traitor in removeList) { - traitors.Remove(traitor); + traitors.RemoveAll(t => t.Id == traitor); } if (traitors.Count == 0) return new EscapeShuttleCondition{}; //You were made a traitor by admins, and are the first/only. - return new RandomTraitorProgressCondition { _target = IoCManager.Resolve().Pick(traitors).Mind }; + return new RandomTraitorProgressCondition { _targetMind = IoCManager.Resolve().Pick(traitors).Id }; } public string Title @@ -48,13 +50,18 @@ public string Title get { var targetName = string.Empty; - var jobName = _target?.CurrentJob?.Name ?? "Unknown"; + var entities = IoCManager.Resolve(); + var jobs = entities.System(); + var jobName = jobs.MindTryGetJobName(_targetMind); - if (_target == null) + if (_targetMind == null) return Loc.GetString("objective-condition-other-traitor-progress-title", ("targetName", targetName), ("job", jobName)); - if (_target.OwnedEntity is {Valid: true} owned) - targetName = IoCManager.Resolve().GetComponent(owned).EntityName; + if (entities.TryGetComponent(_targetMind, out MindComponent? mind) && + mind.OwnedEntity is {Valid: true} owned) + { + targetName = entities.GetComponent(owned).EntityName; + } return Loc.GetString("objective-condition-other-traitor-progress-title", ("targetName", targetName), ("job", jobName)); } @@ -66,24 +73,27 @@ public string Title public float Progress { - get { - var entMan = IoCManager.Resolve(); - + get + { float total = 0f; // how much progress they have float max = 0f; // how much progress is needed for 100% - if (_target == null) + if (_targetMind == null) { Logger.Error("Null target on RandomTraitorProgressCondition."); return 1f; } - foreach (var objective in _target.AllObjectives) + var entities = IoCManager.Resolve(); + if (entities.TryGetComponent(_targetMind, out MindComponent? mind)) { - foreach (var condition in objective.Conditions) + foreach (var objective in mind.AllObjectives) { - max++; // things can only be up to 100% complete yeah - total += condition.Progress; + foreach (var condition in objective.Conditions) + { + max++; // things can only be up to 100% complete yeah + total += condition.Progress; + } } } @@ -106,7 +116,7 @@ public float Progress public bool Equals(IObjectiveCondition? other) { - return other is RandomTraitorProgressCondition kpc && Equals(_target, kpc._target); + return other is RandomTraitorProgressCondition kpc && Equals(_targetMind, kpc._targetMind); } public override bool Equals(object? obj) @@ -118,7 +128,7 @@ public override bool Equals(object? obj) public override int GetHashCode() { - return _target?.GetHashCode() ?? 0; + return _targetMind?.GetHashCode() ?? 0; } } } diff --git a/Content.Server/Objectives/Conditions/SpiderChargeCondition.cs b/Content.Server/Objectives/Conditions/SpiderChargeCondition.cs new file mode 100644 index 00000000000..52092968425 --- /dev/null +++ b/Content.Server/Objectives/Conditions/SpiderChargeCondition.cs @@ -0,0 +1,75 @@ +using Content.Server.Roles; +using Content.Server.Warps; +using Content.Shared.Mind; +using Content.Shared.Objectives.Interfaces; +using Robust.Shared.Random; +using Robust.Shared.Utility; + +namespace Content.Server.Objectives.Conditions; + +/// +/// Objective condition that requires the player to be a ninja and have detonated their spider charge. +/// +[DataDefinition] +public sealed partial class SpiderChargeCondition : IObjectiveCondition +{ + private EntityUid? _mind; + + public IObjectiveCondition GetAssigned(EntityUid uid, MindComponent mind) + { + return new SpiderChargeCondition { + _mind = uid + }; + } + + public string Title + { + get + { + var entMan = IoCManager.Resolve(); + if (!entMan.TryGetComponent(_mind, out var role) + || role.SpiderChargeTarget == null + || !entMan.TryGetComponent(role.SpiderChargeTarget, out var warp) + || warp.Location == null) + // this should never really happen but eh + return Loc.GetString("objective-condition-spider-charge-no-target"); + + return Loc.GetString("objective-condition-spider-charge-title", ("location", warp.Location)); + } + } + + public string Description => Loc.GetString("objective-condition-spider-charge-description"); + + public SpriteSpecifier Icon => new SpriteSpecifier.Rsi(new ResPath("Objects/Weapons/Bombs/spidercharge.rsi"), "icon"); + + public float Progress + { + get + { + var entMan = IoCManager.Resolve(); + if (!entMan.TryGetComponent(_mind, out var role)) + return 0f; + + return role.SpiderChargeDetonated ? 1f : 0f; + } + } + + public float Difficulty => 2.5f; + + public bool Equals(IObjectiveCondition? other) + { + return other is SpiderChargeCondition cond && Equals(_mind, cond._mind); + } + + public override bool Equals(object? obj) + { + if (ReferenceEquals(null, obj)) return false; + if (ReferenceEquals(this, obj)) return true; + return obj is SpiderChargeCondition cond && cond.Equals(this); + } + + public override int GetHashCode() + { + return _mind?.GetHashCode() ?? 0; + } +} diff --git a/Content.Server/Objectives/Conditions/StealCondition.cs b/Content.Server/Objectives/Conditions/StealCondition.cs index 40219b849f1..5ca36a7784c 100644 --- a/Content.Server/Objectives/Conditions/StealCondition.cs +++ b/Content.Server/Objectives/Conditions/StealCondition.cs @@ -1,4 +1,5 @@ -using Content.Server.Objectives.Interfaces; +using Content.Shared.Mind; +using Content.Shared.Objectives.Interfaces; using JetBrains.Annotations; using Robust.Shared.Containers; using Robust.Shared.Prototypes; @@ -10,9 +11,9 @@ namespace Content.Server.Objectives.Conditions // Oh god my eyes [UsedImplicitly] [DataDefinition] - public sealed class StealCondition : IObjectiveCondition, ISerializationHooks + public sealed partial class StealCondition : IObjectiveCondition, ISerializationHooks { - private Mind.Mind? _mind; + private EntityUid? _mind; [DataField("prototype")] private string _prototypeId = string.Empty; /// @@ -21,11 +22,11 @@ public sealed class StealCondition : IObjectiveCondition, ISerializationHooks /// [DataField("owner")] private string? _owner = null; - public IObjectiveCondition GetAssigned(Mind.Mind mind) + public IObjectiveCondition GetAssigned(EntityUid mindId, MindComponent mind) { return new StealCondition { - _mind = mind, + _mind = mindId, _prototypeId = _prototypeId, _owner = _owner }; @@ -49,7 +50,6 @@ public float Progress { get { - var uid = _mind?.OwnedEntity; var entMan = IoCManager.Resolve(); // TODO make this a container system function @@ -59,13 +59,16 @@ public float Progress var managerQuery = entMan.GetEntityQuery(); var stack = new Stack(); - if (!metaQuery.TryGetComponent(_mind?.OwnedEntity, out var meta)) + if (!entMan.TryGetComponent(_mind, out MindComponent? mind)) + return 0; + + if (!metaQuery.TryGetComponent(mind.OwnedEntity, out var meta)) return 0; if (meta.EntityPrototype?.ID == _prototypeId) return 1; - if (!managerQuery.TryGetComponent(uid, out var currentManager)) + if (!managerQuery.TryGetComponent(mind.OwnedEntity, out var currentManager)) return 0; do diff --git a/Content.Server/Objectives/Conditions/StealResearchCondition.cs b/Content.Server/Objectives/Conditions/StealResearchCondition.cs new file mode 100644 index 00000000000..4c32f3c3fc6 --- /dev/null +++ b/Content.Server/Objectives/Conditions/StealResearchCondition.cs @@ -0,0 +1,70 @@ +using Content.Server.Roles; +using Content.Shared.Mind; +using Content.Shared.Objectives.Interfaces; +using Robust.Shared.Random; +using Robust.Shared.Utility; + +namespace Content.Server.Objectives.Conditions; + +/// +/// Objective condition that requires the player to be a ninja and have stolen at least a random number of technologies. +/// +[DataDefinition] +public sealed partial class StealResearchCondition : IObjectiveCondition +{ + private EntityUid? _mind; + private int _target; + + public IObjectiveCondition GetAssigned(EntityUid uid, MindComponent mind) + { + // TODO: clamp to number of research nodes in a single discipline maybe so easily maintainable + return new StealResearchCondition { + _mind = uid, + _target = IoCManager.Resolve().Next(5, 10) + }; + } + + public string Title => Loc.GetString("objective-condition-steal-research-title", ("count", _target)); + + public string Description => Loc.GetString("objective-condition-steal-research-description"); + + public SpriteSpecifier Icon => new SpriteSpecifier.Rsi(new ResPath("Structures/Machines/server.rsi"), "server"); + + public float Progress + { + get + { + // prevent divide-by-zero + if (_target == 0) + return 1f; + + var entMan = IoCManager.Resolve(); + if (!entMan.TryGetComponent(_mind, out var role)) + return 0f; + + if (role.DownloadedNodes.Count >= _target) + return 1f; + + return (float) role.DownloadedNodes.Count / (float) _target; + } + } + + public float Difficulty => 2.5f; + + public bool Equals(IObjectiveCondition? other) + { + return other is StealResearchCondition cond && Equals(_mind, cond._mind) && _target == cond._target; + } + + public override bool Equals(object? obj) + { + if (ReferenceEquals(null, obj)) return false; + if (ReferenceEquals(this, obj)) return true; + return obj is StealResearchCondition cond && cond.Equals(this); + } + + public override int GetHashCode() + { + return HashCode.Combine(_mind?.GetHashCode() ?? 0, _target); + } +} diff --git a/Content.Server/Objectives/Conditions/SurviveCondition.cs b/Content.Server/Objectives/Conditions/SurviveCondition.cs new file mode 100644 index 00000000000..98b5aa6c89a --- /dev/null +++ b/Content.Server/Objectives/Conditions/SurviveCondition.cs @@ -0,0 +1,58 @@ +using Content.Shared.Mind; +using Content.Shared.Objectives.Interfaces; +using Robust.Shared.Utility; + +namespace Content.Server.Objectives.Conditions; + +/// +/// Just requires that the player is not dead, ignores evac and what not. +/// +[DataDefinition] +public sealed partial class SurviveCondition : IObjectiveCondition +{ + private EntityUid? _mind; + + public IObjectiveCondition GetAssigned(EntityUid uid, MindComponent mind) + { + return new SurviveCondition {_mind = uid}; + } + + public string Title => Loc.GetString("objective-condition-survive-title"); + + public string Description => Loc.GetString("objective-condition-survive-description"); + + public SpriteSpecifier Icon => new SpriteSpecifier.Rsi(new ResPath("Clothing/Mask/ninja.rsi"), "icon"); + + public float Difficulty => 0.5f; + + public float Progress + { + get + { + var entMan = IoCManager.Resolve(); + if (!entMan.TryGetComponent(_mind, out var mind)) + return 0f; + + var mindSystem = entMan.System(); + return mindSystem.IsCharacterDeadIc(mind) ? 0f : 1f; + } + } + + public bool Equals(IObjectiveCondition? other) + { + return other is SurviveCondition condition && Equals(_mind, condition._mind); + } + + public override bool Equals(object? obj) + { + if (ReferenceEquals(null, obj)) return false; + if (ReferenceEquals(this, obj)) return true; + if (obj.GetType() != GetType()) return false; + return Equals((SurviveCondition) obj); + } + + public override int GetHashCode() + { + return (_mind != null ? _mind.GetHashCode() : 0); + } +} diff --git a/Content.Server/Objectives/Conditions/TerrorCondition.cs b/Content.Server/Objectives/Conditions/TerrorCondition.cs new file mode 100644 index 00000000000..28cce20aa28 --- /dev/null +++ b/Content.Server/Objectives/Conditions/TerrorCondition.cs @@ -0,0 +1,57 @@ +using Content.Server.Roles; +using Content.Shared.Mind; +using Content.Shared.Objectives.Interfaces; +using Robust.Shared.Utility; + +namespace Content.Server.Objectives.Conditions; + +/// +/// Objective condition that requires the player to be a ninja and have called in a threat. +/// +[DataDefinition] +public sealed partial class TerrorCondition : IObjectiveCondition +{ + private EntityUid? _mind; + + public IObjectiveCondition GetAssigned(EntityUid uid, MindComponent mind) + { + return new TerrorCondition {_mind = uid}; + } + + public string Title => Loc.GetString("objective-condition-terror-title"); + + public string Description => Loc.GetString("objective-condition-terror-description"); + + public SpriteSpecifier Icon => new SpriteSpecifier.Rsi(new ResPath("Objects/Fun/Instruments/otherinstruments.rsi"), "red_phone"); + + public float Progress + { + get + { + var entMan = IoCManager.Resolve(); + if (!entMan.TryGetComponent(_mind, out var role)) + return 0f; + + return role.CalledInThreat ? 1f : 0f; + } + } + + public float Difficulty => 2.75f; + + public bool Equals(IObjectiveCondition? other) + { + return other is TerrorCondition cond && Equals(_mind, cond._mind); + } + + public override bool Equals(object? obj) + { + if (ReferenceEquals(null, obj)) return false; + if (ReferenceEquals(this, obj)) return true; + return obj is TerrorCondition cond && cond.Equals(this); + } + + public override int GetHashCode() + { + return _mind?.GetHashCode() ?? 0; + } +} diff --git a/Content.Server/Objectives/Interfaces/IObjectivesManager.cs b/Content.Server/Objectives/Interfaces/IObjectivesManager.cs deleted file mode 100644 index bee98bc80bd..00000000000 --- a/Content.Server/Objectives/Interfaces/IObjectivesManager.cs +++ /dev/null @@ -1,10 +0,0 @@ -namespace Content.Server.Objectives.Interfaces -{ - public interface IObjectivesManager - { - /// - /// Returns a randomly picked objective the provided mind is valid for. - /// - ObjectivePrototype? GetRandomObjective(Mind.Mind mind, string objectiveGroupProto); - } -} diff --git a/Content.Server/Objectives/ObjectivesManager.cs b/Content.Server/Objectives/ObjectivesManager.cs deleted file mode 100644 index 11563f99343..00000000000 --- a/Content.Server/Objectives/ObjectivesManager.cs +++ /dev/null @@ -1,44 +0,0 @@ -using Content.Server.Objectives.Interfaces; -using Content.Shared.Random.Helpers; -using Content.Shared.Random; -using Robust.Shared.Prototypes; -using Robust.Shared.Random; - -namespace Content.Server.Objectives -{ - public sealed class ObjectivesManager : IObjectivesManager - { - [Dependency] private IPrototypeManager _prototypeManager = default!; - [Dependency] private IRobustRandom _random = default!; - - public ObjectivePrototype? GetRandomObjective(Mind.Mind mind, string objectiveGroupProto) - { - if (!_prototypeManager.TryIndex(objectiveGroupProto, out var groups)) - { - Logger.Error("Tried to get a random objective, but can't index WeightedRandomPrototype " + objectiveGroupProto); - return null; - } - - // yeah the old 'preventing infinite loops' thing wasn't super elegant either and it mislead people on what exactly it did - var tries = 0; - while (tries < 20) - { - var groupName = groups.Pick(_random); - - if (!_prototypeManager.TryIndex(groupName, out var group)) - { - Logger.Error("Couldn't index objective group prototype" + groupName); - return null; - } - - if (_prototypeManager.TryIndex(group.Pick(_random), out var objective) - && objective.CanBeAssigned(mind)) - return objective; - else - tries++; - } - - return null; - } - } -} diff --git a/Content.Server/Objectives/ObjectivesSystem.cs b/Content.Server/Objectives/ObjectivesSystem.cs new file mode 100644 index 00000000000..86cc58438a4 --- /dev/null +++ b/Content.Server/Objectives/ObjectivesSystem.cs @@ -0,0 +1,170 @@ +using Content.Server.GameTicking; +using Content.Server.GameTicking.Rules.Components; +using Content.Server.Mind; +using Content.Shared.Mind; +using Content.Shared.Objectives; +using Content.Shared.Random; +using Content.Shared.Random.Helpers; +using Robust.Shared.Prototypes; +using Robust.Shared.Random; +using System.Linq; + +namespace Content.Server.Objectives; + +public sealed class ObjectivesSystem : EntitySystem +{ + [Dependency] private readonly GameTicker _gameTicker = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly MindSystem _mind = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnRoundEndText); + } + + /// + /// Adds objective text for each game rule's players on round end. + /// + private void OnRoundEndText(RoundEndTextAppendEvent ev) + { + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var gameRule)) + { + if (!_gameTicker.IsGameRuleAdded(uid, gameRule)) + continue; + + var info = new ObjectivesTextGetInfoEvent(new List(), string.Empty); + RaiseLocalEvent(uid, ref info); + if (info.Minds.Count == 0) + continue; + + var agent = info.AgentName; + var result = Loc.GetString("objectives-round-end-result", ("count", info.Minds.Count), ("agent", agent)); + var prepend = new ObjectivesTextPrependEvent(result); + RaiseLocalEvent(uid, ref prepend); + // space between the start text and player list + result = prepend.Text + "\n"; + + foreach (var mindId in info.Minds) + { + if (!TryComp(mindId, out MindComponent? mind)) + continue; + + var name = mind.CharacterName; + _mind.TryGetSession(mindId, out var session); + var username = session?.Name; + + string title; + if (username != null) + { + if (name != null) + title = Loc.GetString("objectives-player-user-named", ("user", username), ("name", name)); + else + title = Loc.GetString("objectives-player-user", ("user", username)); + } + else + { + // nothing to identify the player by, just give up + if (name == null) + continue; + + title = Loc.GetString("objectives-player-named", ("name", name)); + } + + result += "\n"; + + var objectives = mind.AllObjectives.ToArray(); + if (objectives.Length == 0) + { + result += Loc.GetString("objectives-no-objectives", ("title", title), ("agent", agent)); + continue; + } + + result += Loc.GetString("objectives-with-objectives", ("title", title), ("agent", agent)); + + foreach (var objectiveGroup in objectives.GroupBy(o => o.Prototype.Issuer)) + { + result += "\n" + Loc.GetString($"objective-issuer-{objectiveGroup.Key}"); + + foreach (var objective in objectiveGroup) + { + foreach (var condition in objective.Conditions) + { + var progress = condition.Progress; + if (progress > 0.99f) + { + result += "\n- " + Loc.GetString( + "objectives-condition-success", + ("condition", condition.Title), + ("markupColor", "green") + ); + } + else + { + result += "\n- " + Loc.GetString( + "objectives-condition-fail", + ("condition", condition.Title), + ("progress", (int) (progress * 100)), + ("markupColor", "red") + ); + } + } + } + } + } + + ev.AddLine(result + "\n"); + } + } + + public ObjectivePrototype? GetRandomObjective(EntityUid mindId, MindComponent mind, string objectiveGroupProto) + { + if (!_prototypeManager.TryIndex(objectiveGroupProto, out var groups)) + { + Log.Error("Tried to get a random objective, but can't index WeightedRandomPrototype " + objectiveGroupProto); + return null; + } + + // TODO replace whatever the fuck this is with a proper objective selection system + // yeah the old 'preventing infinite loops' thing wasn't super elegant either and it mislead people on what exactly it did + var tries = 0; + while (tries < 20) + { + var groupName = groups.Pick(_random); + + if (!_prototypeManager.TryIndex(groupName, out var group)) + { + Log.Error("Couldn't index objective group prototype" + groupName); + return null; + } + + if (_prototypeManager.TryIndex(group.Pick(_random), out var objective) + && objective.CanBeAssigned(mindId, mind)) + return objective; + else + tries++; + } + + return null; + } +} + +/// +/// Raised on the game rule to get info for any objectives. +/// If its minds list is set then the players will have their objectives shown in the round end text. +/// AgentName is the generic name for a player in the list. +/// +/// +/// The objectives system already checks if the game rule is added so you don't need to check that in this event's handler. +/// +[ByRefEvent] +public record struct ObjectivesTextGetInfoEvent(List Minds, string AgentName); + +/// +/// Raised on the game rule before text for each agent's objectives is added, letting you prepend something. +/// +[ByRefEvent] +public record struct ObjectivesTextPrependEvent(string Text); diff --git a/Content.Server/Objectives/Requirements/IncompatibleConditionsRequirement.cs b/Content.Server/Objectives/Requirements/IncompatibleConditionsRequirement.cs index e0bda216d0c..9a235e53ad8 100644 --- a/Content.Server/Objectives/Requirements/IncompatibleConditionsRequirement.cs +++ b/Content.Server/Objectives/Requirements/IncompatibleConditionsRequirement.cs @@ -1,14 +1,15 @@ -using Content.Server.Objectives.Interfaces; +using Content.Shared.Mind; +using Content.Shared.Objectives.Interfaces; namespace Content.Server.Objectives.Requirements { [DataDefinition] - public sealed class IncompatibleConditionsRequirement : IObjectiveRequirement + public sealed partial class IncompatibleConditionsRequirement : IObjectiveRequirement { [DataField("conditions")] - private readonly List _incompatibleConditions = new(); + private List _incompatibleConditions = new(); - public bool CanBeAssigned(Mind.Mind mind) + public bool CanBeAssigned(EntityUid mindId, MindComponent mind) { foreach (var objective in mind.AllObjectives) { diff --git a/Content.Server/Objectives/Requirements/IncompatibleObjectivesRequirement.cs b/Content.Server/Objectives/Requirements/IncompatibleObjectivesRequirement.cs index 15e11efbd5e..57209dcdbf1 100644 --- a/Content.Server/Objectives/Requirements/IncompatibleObjectivesRequirement.cs +++ b/Content.Server/Objectives/Requirements/IncompatibleObjectivesRequirement.cs @@ -1,14 +1,15 @@ -using Content.Server.Objectives.Interfaces; +using Content.Shared.Mind; +using Content.Shared.Objectives.Interfaces; namespace Content.Server.Objectives.Requirements { [DataDefinition] - public sealed class IncompatibleObjectivesRequirement : IObjectiveRequirement + public sealed partial class IncompatibleObjectivesRequirement : IObjectiveRequirement { [DataField("objectives")] - private readonly List _incompatibleObjectives = new(); + private List _incompatibleObjectives = new(); - public bool CanBeAssigned(Mind.Mind mind) + public bool CanBeAssigned(EntityUid mindId, MindComponent mind) { foreach (var objective in mind.AllObjectives) { diff --git a/Content.Server/Objectives/Requirements/MultipleTraitorsRequirement.cs b/Content.Server/Objectives/Requirements/MultipleTraitorsRequirement.cs index 5d4e458297e..826894104c1 100644 --- a/Content.Server/Objectives/Requirements/MultipleTraitorsRequirement.cs +++ b/Content.Server/Objectives/Requirements/MultipleTraitorsRequirement.cs @@ -1,17 +1,18 @@ -using Content.Server.Objectives.Interfaces; using Content.Server.GameTicking.Rules; +using Content.Shared.Mind; +using Content.Shared.Objectives.Interfaces; namespace Content.Server.Objectives.Requirements { [DataDefinition] - public sealed class MultipleTraitorsRequirement : IObjectiveRequirement + public sealed partial class MultipleTraitorsRequirement : IObjectiveRequirement { [DataField("traitors")] - private readonly int _requiredTraitors = 2; + private int _requiredTraitors = 2; - public bool CanBeAssigned(Mind.Mind mind) + public bool CanBeAssigned(EntityUid mindId, MindComponent mind) { - return EntitySystem.Get().GetOtherTraitorsAliveAndConnected(mind).Count >= _requiredTraitors; + return EntitySystem.Get().GetOtherTraitorMindsAliveAndConnected(mind).Count >= _requiredTraitors; } } } diff --git a/Content.Server/Objectives/Requirements/NinjaRequirement.cs b/Content.Server/Objectives/Requirements/NinjaRequirement.cs new file mode 100644 index 00000000000..8a0993bed81 --- /dev/null +++ b/Content.Server/Objectives/Requirements/NinjaRequirement.cs @@ -0,0 +1,18 @@ +using Content.Server.Roles; +using Content.Shared.Mind; +using Content.Shared.Objectives.Interfaces; + +namespace Content.Server.Objectives.Requirements; + +/// +/// Requires the player's mind to have the ninja role component, aka be a ninja. +/// +[DataDefinition] +public sealed partial class NinjaRequirement : IObjectiveRequirement +{ + public bool CanBeAssigned(EntityUid mindId, MindComponent mind) + { + var entMan = IoCManager.Resolve(); + return entMan.HasComponent(mindId); + } +} diff --git a/Content.Server/Objectives/Requirements/NotRoleRequirement.cs b/Content.Server/Objectives/Requirements/NotRoleRequirement.cs index 9e9c4dfde2b..f0b06f3b82c 100644 --- a/Content.Server/Objectives/Requirements/NotRoleRequirement.cs +++ b/Content.Server/Objectives/Requirements/NotRoleRequirement.cs @@ -1,12 +1,13 @@ +using Content.Shared.Mind; +using Content.Shared.Objectives.Interfaces; using Content.Shared.Roles; -using Content.Server.Objectives.Interfaces; +using Content.Shared.Roles.Jobs; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.Objectives.Requirements { - [DataDefinition] - public sealed class NotRoleRequirement : IObjectiveRequirement + public sealed partial class NotRoleRequirement : IObjectiveRequirement { [DataField("roleId", customTypeSerializer:typeof(PrototypeIdSerializer), required:true)] private string _roleId = default!; @@ -14,12 +15,14 @@ public sealed class NotRoleRequirement : IObjectiveRequirement /// /// This requirement is met if the traitor is NOT the roleId, and fails if they are. /// - public bool CanBeAssigned(Mind.Mind mind) + public bool CanBeAssigned(EntityUid mindId, MindComponent mind) { - if (mind.CurrentJob == null) // no job no problems + // TODO ECS this shit i keep seeing shitcode everywhere + var entities = IoCManager.Resolve(); + if (!entities.TryGetComponent(mindId, out JobComponent? job)) return true; - return (mind.CurrentJob.Prototype.ID != _roleId); + return job.PrototypeId != _roleId; } } } diff --git a/Content.Server/Objectives/Requirements/SpiderChargeTargetRequirement.cs b/Content.Server/Objectives/Requirements/SpiderChargeTargetRequirement.cs new file mode 100644 index 00000000000..6bb6bbb7a85 --- /dev/null +++ b/Content.Server/Objectives/Requirements/SpiderChargeTargetRequirement.cs @@ -0,0 +1,19 @@ +using Content.Server.Roles; +using Content.Shared.Mind; +using Content.Shared.Objectives.Interfaces; + +namespace Content.Server.Objectives.Requirements; + +/// +/// Requires the player to be a ninja that has a spider charge target assigned, which is almost always the case. +/// +[DataDefinition] +public sealed partial class SpiderChargeTargetRequirement : IObjectiveRequirement +{ + public bool CanBeAssigned(EntityUid mindId, MindComponent mind) + { + var entMan = IoCManager.Resolve(); + entMan.TryGetComponent(mindId, out var role); + return role?.SpiderChargeTarget != null; + } +} diff --git a/Content.Server/Objectives/Requirements/TraitorRequirement.cs b/Content.Server/Objectives/Requirements/TraitorRequirement.cs index 5ddcaa673de..e2bab8f4718 100644 --- a/Content.Server/Objectives/Requirements/TraitorRequirement.cs +++ b/Content.Server/Objectives/Requirements/TraitorRequirement.cs @@ -1,19 +1,19 @@ -using Content.Server.Mind; -using Content.Server.Objectives.Interfaces; +using Content.Server.Roles; +using Content.Shared.Mind; +using Content.Shared.Objectives.Interfaces; +using Content.Shared.Roles; using JetBrains.Annotations; -using TraitorRole = Content.Server.Roles.TraitorRole; namespace Content.Server.Objectives.Requirements { [UsedImplicitly] [DataDefinition] - public sealed class TraitorRequirement : IObjectiveRequirement + public sealed partial class TraitorRequirement : IObjectiveRequirement { - public bool CanBeAssigned(Mind.Mind mind) + public bool CanBeAssigned(EntityUid mindId, MindComponent mind) { - var entityManager = IoCManager.Resolve(); - var mindSystem = entityManager.System(); - return mindSystem.HasRole(mind); + var roleSystem = IoCManager.Resolve().System(); + return roleSystem.MindHasRole(mindId); } } } diff --git a/Content.Server/PAI/PAISystem.cs b/Content.Server/PAI/PAISystem.cs index 27ab1ba165c..a601bdea8b3 100644 --- a/Content.Server/PAI/PAISystem.cs +++ b/Content.Server/PAI/PAISystem.cs @@ -1,6 +1,6 @@ using Content.Server.Instruments; -using Content.Server.Mind.Components; using Content.Shared.Interaction.Events; +using Content.Shared.Mind.Components; using Content.Shared.PAI; using Robust.Server.GameObjects; diff --git a/Content.Server/PDA/PdaSystem.cs b/Content.Server/PDA/PdaSystem.cs index b975b96073a..6c506dc3dd2 100644 --- a/Content.Server/PDA/PdaSystem.cs +++ b/Content.Server/PDA/PdaSystem.cs @@ -12,7 +12,8 @@ using Content.Server.Store.Components; using Content.Server.Store.Systems; using Content.Shared.Access.Components; -using Content.Shared.Light.Component; +using Content.Shared.CartridgeLoader; +using Content.Shared.Light.Components; using Content.Shared.PDA; using Robust.Server.GameObjects; using Robust.Server.Player; @@ -27,7 +28,6 @@ public sealed class PdaSystem : SharedPdaSystem [Dependency] private readonly RingerSystem _ringer = default!; [Dependency] private readonly StationSystem _station = default!; [Dependency] private readonly StoreSystem _store = default!; - [Dependency] private readonly NewsSystem _news = default!; [Dependency] private readonly UserInterfaceSystem _ui = default!; [Dependency] private readonly UnpoweredFlashlightSystem _unpoweredFlashlight = default!; @@ -53,7 +53,7 @@ protected override void OnComponentInit(EntityUid uid, PdaComponent pda, Compone { base.OnComponentInit(uid, pda, args); - if (!HasComp(uid)) + if (!HasComp(uid)) return; UpdateAlertLevel(uid, pda); @@ -68,6 +68,13 @@ protected override void OnItemInserted(EntityUid uid, PdaComponent pda, EntInser protected override void OnItemRemoved(EntityUid uid, PdaComponent pda, EntRemovedFromContainerMessage args) { + if (args.Container.ID != pda.IdSlot.ID && args.Container.ID != pda.PenSlot.ID) + return; + + // TODO: This is super cursed just use compstates please. + if (MetaData(uid).EntityLifeStage >= EntityLifeStage.Terminating) + return; + base.OnItemRemoved(uid, pda, args); UpdatePdaUi(uid, pda); } @@ -106,9 +113,12 @@ private void UpdateAllPdaUisOnStation() /// /// Send new UI state to clients, call if you modify something like uplink. /// - public void UpdatePdaUi(EntityUid uid, PdaComponent pda) + public void UpdatePdaUi(EntityUid uid, PdaComponent? pda = null) { - if (!_ui.TryGetUi(uid, PdaUiKey.Key, out _)) + if (!Resolve(uid, ref pda, false)) + return; + + if (!_ui.TryGetUi(uid, PdaUiKey.Key, out var ui)) return; var address = GetDeviceNetAddress(uid); @@ -120,8 +130,15 @@ public void UpdatePdaUi(EntityUid uid, PdaComponent pda) // TODO: Update the level and name of the station with each call to UpdatePdaUi is only needed for latejoin players. // TODO: If someone can implement changing the level and name of the station when changing the PDA grid, this can be removed. + // TODO don't make this depend on cartridge loader!?!? + if (!TryComp(uid, out CartridgeLoaderComponent? loader)) + return; + + var programs = _cartridgeLoader.GetAvailablePrograms(uid, loader); var id = CompOrNull(pda.ContainedId); var state = new PdaUpdateState( + programs, + GetNetEntity(loader.ActiveProgram), pda.FlashlightOn, pda.PenSlot.HasItem, new PdaIdInfoText @@ -137,7 +154,7 @@ public void UpdatePdaUi(EntityUid uid, PdaComponent pda) hasInstrument, address); - _cartridgeLoader?.UpdateUiState(uid, state); + _ui.SetUiState(ui, state); } private void OnUiMessage(EntityUid uid, PdaComponent pda, PdaRequestUpdateInterfaceMessage msg) diff --git a/Content.Server/PDA/Ringer/RingerComponent.cs b/Content.Server/PDA/Ringer/RingerComponent.cs index 5ef26a8426c..55dc458b74d 100644 --- a/Content.Server/PDA/Ringer/RingerComponent.cs +++ b/Content.Server/PDA/Ringer/RingerComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.PDA.Ringer { [RegisterComponent] - public sealed class RingerComponent : Component + public sealed partial class RingerComponent : Component { [DataField("ringtone")] public Note[] Ringtone = new Note[SharedRingerSystem.RingtoneLength]; @@ -30,7 +30,7 @@ public sealed class RingerComponent : Component } [RegisterComponent] - public sealed class ActiveRingerComponent : Component + public sealed partial class ActiveRingerComponent : Component { } } diff --git a/Content.Server/PDA/Ringer/RingerSystem.cs b/Content.Server/PDA/Ringer/RingerSystem.cs index b132fa761f1..2145dae3266 100644 --- a/Content.Server/PDA/Ringer/RingerSystem.cs +++ b/Content.Server/PDA/Ringer/RingerSystem.cs @@ -164,7 +164,7 @@ private bool UpdateRingerRingtone(EntityUid uid, RingerComponent ringer, Note[] private void UpdateRingerUserInterface(EntityUid uid, RingerComponent ringer) { if (_ui.TryGetUi(uid, RingerUiKey.Key, out var bui)) - UserInterfaceSystem.SetUiState(bui, new RingerUpdateState(HasComp(uid), ringer.Ringtone)); + _ui.SetUiState(bui, new RingerUpdateState(HasComp(uid), ringer.Ringtone)); } public bool ToggleRingerUI(EntityUid uid, IPlayerSession session) diff --git a/Content.Server/PDA/Ringer/RingerUplinkComponent.cs b/Content.Server/PDA/Ringer/RingerUplinkComponent.cs index a446468ee1b..4ffedf3af4a 100644 --- a/Content.Server/PDA/Ringer/RingerUplinkComponent.cs +++ b/Content.Server/PDA/Ringer/RingerUplinkComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.PDA.Ringer; /// Traitors are told the code when greeted. /// [RegisterComponent, Access(typeof(RingerSystem))] -public sealed class RingerUplinkComponent : Component +public sealed partial class RingerUplinkComponent : Component { /// /// Notes to set ringtone to in order to lock or unlock the uplink. diff --git a/Content.Server/Paper/ActivateOnPaperOpenedComponent.cs b/Content.Server/Paper/ActivateOnPaperOpenedComponent.cs index c702ec58501..0d0f72b6126 100644 --- a/Content.Server/Paper/ActivateOnPaperOpenedComponent.cs +++ b/Content.Server/Paper/ActivateOnPaperOpenedComponent.cs @@ -5,6 +5,6 @@ namespace Content.Server.Paper; /// [RegisterComponent] [Access(typeof(PaperSystem))] -public sealed class ActivateOnPaperOpenedComponent : Component +public sealed partial class ActivateOnPaperOpenedComponent : Component { } diff --git a/Content.Server/Paper/PaperComponent.cs b/Content.Server/Paper/PaperComponent.cs index 33418ffb154..3cf011e34df 100644 --- a/Content.Server/Paper/PaperComponent.cs +++ b/Content.Server/Paper/PaperComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Paper; [NetworkedComponent, RegisterComponent] -public sealed class PaperComponent : SharedPaperComponent +public sealed partial class PaperComponent : SharedPaperComponent { public PaperAction Mode; [DataField("content")] diff --git a/Content.Server/Paper/PaperSystem.cs b/Content.Server/Paper/PaperSystem.cs index 594d4446fcd..f38013e14d1 100644 --- a/Content.Server/Paper/PaperSystem.cs +++ b/Content.Server/Paper/PaperSystem.cs @@ -145,10 +145,8 @@ private void OnInputTextMessage(EntityUid uid, PaperComponent paperComp, PaperIn if (string.IsNullOrEmpty(args.Text)) return; - var text = FormattedMessage.EscapeText(args.Text); - - if (text.Length + paperComp.Content.Length <= paperComp.ContentSize) - paperComp.Content = text; + if (args.Text.Length + paperComp.Content.Length <= paperComp.ContentSize) + paperComp.Content = args.Text; if (TryComp(uid, out var appearance)) _appearance.SetData(uid, PaperVisuals.Status, PaperStatus.Written, appearance); @@ -215,7 +213,7 @@ public void UpdateUserInterface(EntityUid uid, PaperComponent? paperComp = null, return; if (_uiSystem.TryGetUi(uid, PaperUiKey.Key, out var bui)) - UserInterfaceSystem.SetUiState(bui, new PaperBoundUserInterfaceState(paperComp.Content, paperComp.StampedBy, paperComp.Mode), session); + _uiSystem.SetUiState(bui, new PaperBoundUserInterfaceState(paperComp.Content, paperComp.StampedBy, paperComp.Mode), session); } } diff --git a/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorControlBoxComponent.cs b/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorControlBoxComponent.cs index 035c6ead729..2adbbe05f79 100644 --- a/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorControlBoxComponent.cs +++ b/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorControlBoxComponent.cs @@ -10,7 +10,7 @@ namespace Content.Server.ParticleAccelerator.Components; /// Also contains primary logic for actual PA behavior, part scanning, etc... /// [RegisterComponent] -public sealed class ParticleAcceleratorControlBoxComponent : Component +public sealed partial class ParticleAcceleratorControlBoxComponent : Component { /// /// Whether the PA parts have been correctly arranged to make a functional device. diff --git a/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorEmitterComponent.cs b/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorEmitterComponent.cs index 434aa6b59ce..05ab81c0f59 100644 --- a/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorEmitterComponent.cs +++ b/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorEmitterComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.ParticleAccelerator.Components; [RegisterComponent] -public sealed class ParticleAcceleratorEmitterComponent : Component +public sealed partial class ParticleAcceleratorEmitterComponent : Component { [DataField("emittedPrototype")] [ViewVariables(VVAccess.ReadWrite)] diff --git a/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorEndCapComponent.cs b/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorEndCapComponent.cs index 4103e89ff97..9c111d1ea97 100644 --- a/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorEndCapComponent.cs +++ b/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorEndCapComponent.cs @@ -1,6 +1,6 @@ namespace Content.Server.ParticleAccelerator.Components; [RegisterComponent] -public sealed class ParticleAcceleratorEndCapComponent : Component +public sealed partial class ParticleAcceleratorEndCapComponent : Component { } diff --git a/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorFuelChamberComponent.cs b/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorFuelChamberComponent.cs index 2a87bcdeb8f..9029e880d90 100644 --- a/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorFuelChamberComponent.cs +++ b/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorFuelChamberComponent.cs @@ -1,6 +1,6 @@ namespace Content.Server.ParticleAccelerator.Components; [RegisterComponent] -public sealed class ParticleAcceleratorFuelChamberComponent : Component +public sealed partial class ParticleAcceleratorFuelChamberComponent : Component { } diff --git a/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorPartComponent.cs b/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorPartComponent.cs index e539ff30a30..6d2b7b89607 100644 --- a/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorPartComponent.cs +++ b/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorPartComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.ParticleAccelerator.Components; [RegisterComponent] -public sealed class ParticleAcceleratorPartComponent : Component +public sealed partial class ParticleAcceleratorPartComponent : Component { [ViewVariables] public EntityUid? Master; diff --git a/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorPowerBoxComponent.cs b/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorPowerBoxComponent.cs index a0cbe06f4b3..f8ad4ef5d25 100644 --- a/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorPowerBoxComponent.cs +++ b/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorPowerBoxComponent.cs @@ -1,6 +1,6 @@ namespace Content.Server.ParticleAccelerator.Components; [RegisterComponent] -public sealed class ParticleAcceleratorPowerBoxComponent : Component +public sealed partial class ParticleAcceleratorPowerBoxComponent : Component { } diff --git a/Content.Server/ParticleAccelerator/Components/ParticleProjectileComponent.cs b/Content.Server/ParticleAccelerator/Components/ParticleProjectileComponent.cs index b2438f07005..25d68160200 100644 --- a/Content.Server/ParticleAccelerator/Components/ParticleProjectileComponent.cs +++ b/Content.Server/ParticleAccelerator/Components/ParticleProjectileComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.ParticleAccelerator.Components; [RegisterComponent] -public sealed class ParticleProjectileComponent : Component +public sealed partial class ParticleProjectileComponent : Component { public ParticleAcceleratorPowerState State; } diff --git a/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.ControlBox.cs b/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.ControlBox.cs index 489038af127..20ed2769670 100644 --- a/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.ControlBox.cs +++ b/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.ControlBox.cs @@ -233,7 +233,7 @@ private void UpdateUI(EntityUid uid, ParticleAcceleratorControlBoxComponent? com receive = powerConsumer.ReceivedPower; } - UserInterfaceSystem.SetUiState(bui, new ParticleAcceleratorUIState( + _uiSystem.SetUiState(bui, new ParticleAcceleratorUIState( comp.Assembled, comp.Enabled, comp.SelectedStrength, diff --git a/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorInterfaceWireAction.cs b/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorInterfaceWireAction.cs index 8c6046a72db..4e70854d6b4 100644 --- a/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorInterfaceWireAction.cs +++ b/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorInterfaceWireAction.cs @@ -5,7 +5,7 @@ namespace Content.Server.ParticleAccelerator.Wires; -public sealed class ParticleAcceleratorKeyboardWireAction : ComponentWireAction +public sealed partial class ParticleAcceleratorKeyboardWireAction : ComponentWireAction { public override string Name { get; set; } = "wire-name-pa-keyboard"; public override Color Color { get; set; } = Color.LimeGreen; diff --git a/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorLimiterWireAction.cs b/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorLimiterWireAction.cs index dabebf7ebbd..09700e2193b 100644 --- a/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorLimiterWireAction.cs +++ b/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorLimiterWireAction.cs @@ -9,7 +9,7 @@ namespace Content.Server.ParticleAccelerator.Wires; -public sealed class ParticleAcceleratorLimiterWireAction : ComponentWireAction +public sealed partial class ParticleAcceleratorLimiterWireAction : ComponentWireAction { public override string Name { get; set; } = "wire-name-pa-limiter"; public override Color Color { get; set; } = Color.Teal; diff --git a/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorStrengthWireAction.cs b/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorStrengthWireAction.cs index 3e5c78d4adf..85775906715 100644 --- a/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorStrengthWireAction.cs +++ b/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorStrengthWireAction.cs @@ -8,7 +8,7 @@ namespace Content.Server.ParticleAccelerator.Wires; -public sealed class ParticleAcceleratorStrengthWireAction : ComponentWireAction +public sealed partial class ParticleAcceleratorStrengthWireAction : ComponentWireAction { public override string Name { get; set; } = "wire-name-pa-strength"; public override Color Color { get; set; } = Color.Blue; diff --git a/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorToggleWireAction.cs b/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorToggleWireAction.cs index 22dbf95196c..00c5845713b 100644 --- a/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorToggleWireAction.cs +++ b/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorToggleWireAction.cs @@ -7,7 +7,7 @@ namespace Content.Server.ParticleAccelerator.Wires; -public sealed class ParticleAcceleratorPowerWireAction : ComponentWireAction +public sealed partial class ParticleAcceleratorPowerWireAction : ComponentWireAction { public override string Name { get; set; } = "wire-name-pa-power"; public override Color Color { get; set; } = Color.Yellow; diff --git a/Content.Server/Physics/Components/RandomWalkComponent.cs b/Content.Server/Physics/Components/RandomWalkComponent.cs index 63ba22d7cc9..e017f61dddd 100644 --- a/Content.Server/Physics/Components/RandomWalkComponent.cs +++ b/Content.Server/Physics/Components/RandomWalkComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Physics.Components; /// A component which makes its entity move around at random. /// [RegisterComponent] -public sealed class RandomWalkComponent : Component +public sealed partial class RandomWalkComponent : Component { /// /// The minimum speed at which this entity will move. diff --git a/Content.Server/Physics/Controllers/MoverController.cs b/Content.Server/Physics/Controllers/MoverController.cs index c6bb5fa6cc2..5c8968dd984 100644 --- a/Content.Server/Physics/Controllers/MoverController.cs +++ b/Content.Server/Physics/Controllers/MoverController.cs @@ -232,6 +232,29 @@ private static void ApplyTick(PilotComponent component, float fraction) component.CurTickBraking += brake * fraction; } + /// + /// Helper function to extrapolate max velocity for a given Vector2 (really, its angle) and shuttle. + /// + private Vector2 ObtainMaxVel(Vector2 vel, ShuttleComponent shuttle) + { + if (vel.Length() == 0f) + return Vector2.Zero; + + // this math could PROBABLY be simplified for performance + // probably + // __________________________________ + // / / __ __ \2 / __ __ \2 + // O = I : _ / |I * | 1/H | | + |I * | 0 | | + // V \ |_ 0 _| / \ |_1/V_| / + + var horizIndex = vel.X > 0 ? 1 : 3; // east else west + var vertIndex = vel.Y > 0 ? 2 : 0; // north else south + var horizComp = MathF.Pow(Vector2.Dot(vel, new (shuttle.BaseLinearThrust[horizIndex] / shuttle.LinearThrust[horizIndex], 0f)), 2); + var vertComp = MathF.Pow(Vector2.Dot(vel, new (0f, shuttle.BaseLinearThrust[vertIndex] / shuttle.LinearThrust[vertIndex])), 2); + + return shuttle.BaseMaxLinearVelocity * vel * MathF.ReciprocalSqrtEstimate(horizComp + vertComp); + } + private void HandleShuttleMovement(float frameTime) { var newPilots = new Dictionary)>(); @@ -478,19 +501,27 @@ private void HandleShuttleMovement(float frameTime) totalForce += impulse; } - totalForce = shuttleNorthAngle.RotateVec(totalForce); - var forceMul = frameTime * body.InvMass; - var maxVelocity = (ShuttleComponent.MaxLinearVelocity - body.LinearVelocity.Length()) / forceMul; - if (maxVelocity != 0f) - { - // Don't overshoot - if (totalForce.Length() > maxVelocity) - totalForce = totalForce.Normalized() * maxVelocity; + var localVel = (-shuttleNorthAngle).RotateVec(body.LinearVelocity); + var maxVelocity = ObtainMaxVel(localVel, shuttle); // max for current travel dir + var maxWishVelocity = ObtainMaxVel(totalForce, shuttle); + var properAccel = (maxWishVelocity - localVel) / forceMul; - PhysicsSystem.ApplyForce(shuttleUid, totalForce, body: body); - } + var finalForce = Vector2.Dot(totalForce, properAccel.Normalized()) * properAccel.Normalized(); + + if (localVel.Length() >= maxVelocity.Length() && Vector2.Dot(totalForce, localVel) > 0f) + finalForce = Vector2.Zero; // burn would be faster if used as such + + if (finalForce.Length() > properAccel.Length()) + finalForce = properAccel; // don't overshoot + + //Logger.Info($"shuttle: maxVelocity {maxVelocity} totalForce {totalForce} finalForce {finalForce} forceMul {forceMul} properAccel {properAccel}"); + + finalForce = shuttleNorthAngle.RotateVec(finalForce); + + if (finalForce.Length() > 0f) + PhysicsSystem.ApplyForce(shuttleUid, finalForce, body: body); } if (MathHelper.CloseTo(angularInput, 0f)) diff --git a/Content.Server/Pinpointer/ProximityBeeperComponent.cs b/Content.Server/Pinpointer/ProximityBeeperComponent.cs index 8abc7b6df7a..0fc73b5e791 100644 --- a/Content.Server/Pinpointer/ProximityBeeperComponent.cs +++ b/Content.Server/Pinpointer/ProximityBeeperComponent.cs @@ -8,7 +8,7 @@ namespace Content.Server.Pinpointer; /// proximity to a specified component. /// [RegisterComponent, Access(typeof(ProximityBeeperSystem))] -public sealed class ProximityBeeperComponent : Component +public sealed partial class ProximityBeeperComponent : Component { /// /// Whether or not it's on. diff --git a/Content.Server/Pinpointer/StationMapComponent.cs b/Content.Server/Pinpointer/StationMapComponent.cs index 0e602898766..942ea1aba8e 100644 --- a/Content.Server/Pinpointer/StationMapComponent.cs +++ b/Content.Server/Pinpointer/StationMapComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Pinpointer; [RegisterComponent] -public sealed class StationMapComponent : Component +public sealed partial class StationMapComponent : Component { } @@ -10,7 +10,7 @@ public sealed class StationMapComponent : Component /// Added to an entity using station map so when its parent changes we reset it. /// [RegisterComponent] -public sealed class StationMapUserComponent : Component +public sealed partial class StationMapUserComponent : Component { [DataField("mapUid")] public EntityUid Map; diff --git a/Content.Server/Plants/Components/PottedPlantHideComponent.cs b/Content.Server/Plants/Components/PottedPlantHideComponent.cs index 93e6e138afe..bc35bbe44f9 100644 --- a/Content.Server/Plants/Components/PottedPlantHideComponent.cs +++ b/Content.Server/Plants/Components/PottedPlantHideComponent.cs @@ -10,7 +10,7 @@ namespace Content.Server.Plants.Components /// [RegisterComponent] [Access(typeof(PottedPlantHideSystem))] - public sealed class PottedPlantHideComponent : Component + public sealed partial class PottedPlantHideComponent : Component { [DataField("rustleSound")] public SoundSpecifier RustleSound = new SoundPathSpecifier("/Audio/Effects/plant_rustle.ogg"); diff --git a/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs b/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs index 73e7e01f15d..13d0794dd5e 100644 --- a/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs +++ b/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs @@ -2,11 +2,12 @@ using Content.Server.Afk; using Content.Server.Afk.Events; using Content.Server.GameTicking; -using Content.Server.Roles; +using Content.Server.Mind; using Content.Shared.CCVar; using Content.Shared.GameTicking; using Content.Shared.Mobs; using Content.Shared.Mobs.Components; +using Content.Shared.Players; using Content.Shared.Players.PlayTimeTracking; using Content.Shared.Roles; using Robust.Server.GameObjects; @@ -27,6 +28,7 @@ public sealed class PlayTimeTrackingSystem : EntitySystem [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly IPrototypeManager _prototypes = default!; [Dependency] private readonly IConfigurationManager _cfg = default!; + [Dependency] private readonly MindSystem _minds = default!; [Dependency] private readonly PlayTimeTrackingManager _tracking = default!; public override void Initialize() @@ -77,14 +79,17 @@ private bool IsPlayerAlive(IPlayerSession session) return state.CurrentState is MobState.Alive or MobState.Critical; } - public IEnumerable GetTimedRoles(Mind.Mind mind) + public IEnumerable GetTimedRoles(EntityUid mindId) { - foreach (var role in mind.AllRoles) + var ev = new MindGetAllRolesEvent(new List()); + RaiseLocalEvent(mindId, ref ev); + + foreach (var role in ev.Roles) { - if (role is not IRoleTimer timer) + if (string.IsNullOrWhiteSpace(role.PlayTimeTrackerId)) continue; - yield return _prototypes.Index(timer.Timer).ID; + yield return _prototypes.Index(role.PlayTimeTrackerId).ID; } } @@ -95,23 +100,19 @@ private IEnumerable GetTimedRoles(IPlayerSession session) if (contentData?.Mind == null) return Enumerable.Empty(); - return GetTimedRoles(contentData.Mind); + return GetTimedRoles(contentData.Mind.Value); } private void OnRoleRemove(RoleRemovedEvent ev) { - if (ev.Mind.Session == null) - return; - - _tracking.QueueRefreshTrackers(ev.Mind.Session); + if (_minds.TryGetSession(ev.Mind, out var session)) + _tracking.QueueRefreshTrackers(session); } private void OnRoleAdd(RoleAddedEvent ev) { - if (ev.Mind.Session == null) - return; - - _tracking.QueueRefreshTrackers(ev.Mind.Session); + if (_minds.TryGetSession(ev.Mind, out var session)) + _tracking.QueueRefreshTrackers(session); } private void OnRoundEnd(RoundRestartCleanupEvent ev) @@ -164,7 +165,7 @@ public bool IsAllowed(IPlayerSession player, string role) var playTimes = _tracking.GetTrackerTimes(player); - return JobRequirements.TryRequirementsMet(job, playTimes, out _, _prototypes); + return JobRequirements.TryRequirementsMet(job, playTimes, out _, EntityManager, _prototypes); } public HashSet GetDisallowedJobs(IPlayerSession player) @@ -181,7 +182,7 @@ public HashSet GetDisallowedJobs(IPlayerSession player) { foreach (var requirement in job.Requirements) { - if (JobRequirements.TryRequirementMet(requirement, playTimes, out _, _prototypes)) + if (JobRequirements.TryRequirementMet(requirement, playTimes, out _, EntityManager, _prototypes)) continue; goto NoRole; @@ -204,7 +205,7 @@ public void RemoveDisallowedJobs(NetUserId userId, ref List jobs) if (!_tracking.TryGetTrackerTimes(player, out var playTimes)) { // Sorry mate but your playtimes haven't loaded. - Logger.ErrorS("playtime", $"Playtimes weren't ready yet for {player} on roundstart!"); + Log.Error($"Playtimes weren't ready yet for {player} on roundstart!"); playTimes ??= new Dictionary(); } @@ -219,7 +220,7 @@ public void RemoveDisallowedJobs(NetUserId userId, ref List jobs) foreach (var requirement in jobber.Requirements) { - if (JobRequirements.TryRequirementMet(requirement, playTimes, out _, _prototypes)) + if (JobRequirements.TryRequirementMet(requirement, playTimes, out _, EntityManager, _prototypes)) continue; jobs.RemoveSwap(i); diff --git a/Content.Server/Players/PlayerData.cs b/Content.Server/Players/PlayerData.cs index c144ff4115a..b0ca6f3c189 100644 --- a/Content.Server/Players/PlayerData.cs +++ b/Content.Server/Players/PlayerData.cs @@ -1,71 +1,28 @@ -using Content.Server.GameTicking; -using Content.Server.Mind; +using Content.Shared.Players; using Robust.Server.Player; -using Robust.Shared.Network; +using Robust.Shared.Players; namespace Content.Server.Players { - /// - /// Content side for all data that tracks a player session. - /// Use to retrieve this from an . - /// - public sealed class PlayerData - { - /// - /// The session ID of the player owning this data. - /// - [ViewVariables] - public NetUserId UserId { get; } - - /// - /// This is a backup copy of the player name stored on connection. - /// This is useful in the event the player disconnects. - /// - [ViewVariables] - public string Name { get; } - - /// - /// The currently occupied mind of the player owning this data. - /// DO NOT DIRECTLY SET THIS UNLESS YOU KNOW WHAT YOU'RE DOING. - /// - [ViewVariables, Access(typeof(MindSystem), typeof(GameTicker))] - public Mind.Mind? Mind { get; set; } - - /// - /// If true, the player is an admin and they explicitly de-adminned mid-game, - /// so they should not regain admin if they reconnect. - /// - public bool ExplicitlyDeadminned { get; set; } - - public PlayerData(NetUserId userId, string name) - { - UserId = userId; - Name = name; - } - } - public static class PlayerDataExt { /// /// Gets the correctly cast instance of content player data from an engine player data storage. /// - public static PlayerData? ContentData(this IPlayerData data) + public static PlayerData? ContentData(this IPlayerSession session) { - return (PlayerData?) data.ContentDataUncast; + return session.Data.ContentData(); } - /// - /// Gets the correctly cast instance of content player data from an engine player data storage. - /// - public static PlayerData? ContentData(this IPlayerSession session) + public static PlayerData? ContentData(this ICommonSession session) { - return session.Data.ContentData(); + return ((IPlayerSession) session).ContentData(); } /// /// Gets the mind that is associated with this player. /// - public static Mind.Mind? GetMind(this IPlayerSession session) + public static EntityUid? GetMind(this IPlayerSession session) { return session.Data.ContentData()?.Mind; } diff --git a/Content.Server/Players/PlayerSystem.cs b/Content.Server/Players/PlayerSystem.cs new file mode 100644 index 00000000000..0c407aa876b --- /dev/null +++ b/Content.Server/Players/PlayerSystem.cs @@ -0,0 +1,12 @@ +using Content.Shared.Players; +using Robust.Shared.Players; + +namespace Content.Server.Players; + +public sealed class PlayerSystem : SharedPlayerSystem +{ + public override PlayerData? ContentData(ICommonSession? session) + { + return session?.ContentData(); + } +} diff --git a/Content.Server/Pointing/Components/PointingArrowAngeringComponent.cs b/Content.Server/Pointing/Components/PointingArrowAngeringComponent.cs index 42d8e3c1543..446be1b1195 100644 --- a/Content.Server/Pointing/Components/PointingArrowAngeringComponent.cs +++ b/Content.Server/Pointing/Components/PointingArrowAngeringComponent.cs @@ -4,7 +4,7 @@ /// Causes pointing arrows to go mode and murder this entity. /// [RegisterComponent] -public sealed class PointingArrowAngeringComponent : Component +public sealed partial class PointingArrowAngeringComponent : Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("remainingAnger")] diff --git a/Content.Server/Pointing/Components/PointingArrowComponent.cs b/Content.Server/Pointing/Components/PointingArrowComponent.cs index 309440aea17..11a5532bc92 100644 --- a/Content.Server/Pointing/Components/PointingArrowComponent.cs +++ b/Content.Server/Pointing/Components/PointingArrowComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.Pointing.Components { [RegisterComponent] [Access(typeof(PointingSystem))] - public sealed class PointingArrowComponent : SharedPointingArrowComponent + public sealed partial class PointingArrowComponent : SharedPointingArrowComponent { /// /// Whether or not this arrow will convert into a diff --git a/Content.Server/Pointing/Components/RoguePointingArrowComponent.cs b/Content.Server/Pointing/Components/RoguePointingArrowComponent.cs index ad5e95b7de4..dfdb3b92298 100644 --- a/Content.Server/Pointing/Components/RoguePointingArrowComponent.cs +++ b/Content.Server/Pointing/Components/RoguePointingArrowComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.Pointing.Components { [RegisterComponent] [Access(typeof(RoguePointingSystem))] - public sealed class RoguePointingArrowComponent : SharedRoguePointingArrowComponent + public sealed partial class RoguePointingArrowComponent : SharedRoguePointingArrowComponent { [ViewVariables] public EntityUid? Chasing; diff --git a/Content.Server/Pointing/EntitySystems/PointingSystem.cs b/Content.Server/Pointing/EntitySystems/PointingSystem.cs index bcf6ca66579..dc610ef4091 100644 --- a/Content.Server/Pointing/EntitySystems/PointingSystem.cs +++ b/Content.Server/Pointing/EntitySystems/PointingSystem.cs @@ -1,15 +1,15 @@ using System.Linq; using Content.Server.Administration.Logs; -using Content.Server.Ghost.Components; -using Content.Server.Players; using Content.Server.Pointing.Components; -using Content.Server.Visible; using Content.Shared.Bed.Sleep; using Content.Shared.Database; +using Content.Shared.Eye; +using Content.Shared.Ghost; using Content.Shared.IdentityManagement; using Content.Shared.Input; using Content.Shared.Interaction; using Content.Shared.Interaction.Helpers; +using Content.Shared.Mind; using Content.Shared.Mobs.Systems; using Content.Shared.Pointing; using Content.Shared.Popups; @@ -38,6 +38,7 @@ internal sealed class PointingSystem : SharedPointingSystem [Dependency] private readonly MobStateSystem _mobState = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly VisibilitySystem _visibilitySystem = default!; + [Dependency] private readonly SharedMindSystem _minds = default!; [Dependency] private readonly IAdminLogManager _adminLogger = default!; private static readonly TimeSpan PointDelay = TimeSpan.FromSeconds(0.5f); @@ -64,6 +65,8 @@ private void OnPlayerStatusChanged(object? sender, SessionStatusEventArgs e) private void SendMessage(EntityUid source, IEnumerable viewers, EntityUid pointed, string selfMessage, string viewerMessage, string? viewerPointedAtMessage = null) { + var netSource = GetNetEntity(source); + foreach (var viewer in viewers) { if (viewer.AttachedEntity is not {Valid: true} viewerEntity) @@ -77,10 +80,10 @@ private void SendMessage(EntityUid source, IEnumerable viewers, ? viewerPointedAtMessage : viewerMessage; - RaiseNetworkEvent(new PopupEntityEvent(message, PopupType.Small, source), viewerEntity); + RaiseNetworkEvent(new PopupEntityEvent(message, PopupType.Small, netSource), viewerEntity); } - _replay.RecordServerMessage(new PopupEntityEvent(viewerMessage, PopupType.Small, source)); + _replay.RecordServerMessage(new PopupEntityEvent(viewerMessage, PopupType.Small, netSource)); } public bool InRange(EntityUid pointer, EntityCoordinates coordinates) @@ -99,13 +102,13 @@ public bool TryPoint(ICommonSession? session, EntityCoordinates coords, EntityUi { if (session?.AttachedEntity is not { } player) { - Logger.Warning($"Player {session} attempted to point without any attached entity"); + Log.Warning($"Player {session} attempted to point without any attached entity"); return false; } if (!coords.IsValid(EntityManager)) { - Logger.Warning($"Player {ToPrettyString(player)} attempted to point at invalid coordinates: {coords}"); + Log.Warning($"Player {ToPrettyString(player)} attempted to point at invalid coordinates: {coords}"); return false; } @@ -169,7 +172,8 @@ public bool TryPoint(ICommonSession? session, EntityCoordinates coords, EntityUi // Get players that are in range and whose visibility layer matches the arrow's. bool ViewerPredicate(IPlayerSession playerSession) { - if (playerSession.ContentData()?.Mind?.CurrentEntity is not {Valid: true} ent || + if (!_minds.TryGetMind(playerSession, out _, out var mind) || + mind.CurrentEntity is not { Valid: true } ent || !TryComp(ent, out EyeComponent? eyeComp) || (eyeComp.VisibilityMask & layer) == 0) return false; @@ -245,10 +249,12 @@ public override void Initialize() private void OnPointAttempt(PointingAttemptEvent ev, EntitySessionEventArgs args) { - if (TryComp(ev.Target, out TransformComponent? xform)) - TryPoint(args.SenderSession, xform.Coordinates, ev.Target); + var target = GetEntity(ev.Target); + + if (TryComp(target, out TransformComponent? xform)) + TryPoint(args.SenderSession, xform.Coordinates, target); else - Logger.Warning($"User {args.SenderSession} attempted to point at a non-existent entity uid: {ev.Target}"); + Log.Warning($"User {args.SenderSession} attempted to point at a non-existent entity uid: {ev.Target}"); } public override void Shutdown() diff --git a/Content.Server/Points/PointSystem.cs b/Content.Server/Points/PointSystem.cs new file mode 100644 index 00000000000..c3265701c07 --- /dev/null +++ b/Content.Server/Points/PointSystem.cs @@ -0,0 +1,96 @@ +using System.Linq; +using Content.Shared.FixedPoint; +using Content.Shared.Points; +using JetBrains.Annotations; +using Robust.Server.GameObjects; +using Robust.Server.GameStates; +using Robust.Server.Player; +using Robust.Shared.GameStates; +using Robust.Shared.Utility; + +namespace Content.Server.Points; + +/// +public sealed class PointSystem : SharedPointSystem +{ + [Dependency] private readonly IPlayerManager _player = default!; + [Dependency] private readonly PvsOverrideSystem _pvsOverride = default!; + + /// + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnStartup); + SubscribeLocalEvent(OnGetState); + } + + private void OnStartup(EntityUid uid, PointManagerComponent component, ComponentStartup args) + { + _pvsOverride.AddGlobalOverride(uid); + } + + private void OnGetState(EntityUid uid, PointManagerComponent component, ref ComponentGetState args) + { + args.State = new PointManagerComponentState(component.Points, component.Scoreboard); + } + + /// + /// Adds the specified point value to a player. + /// + [PublicAPI] + public void AdjustPointValue(EntityUid user, FixedPoint2 value, EntityUid uid, PointManagerComponent? component, ActorComponent? actor = null) + { + if (!Resolve(uid, ref component) || !Resolve(user, ref actor, false)) + return; + AdjustPointValue(actor.PlayerSession.UserId, value, uid, component); + } + + /// + /// Sets the amount of points for a player + /// + [PublicAPI] + public void SetPointValue(EntityUid user, FixedPoint2 value, EntityUid uid, PointManagerComponent? component, ActorComponent? actor = null) + { + if (!Resolve(uid, ref component) || !Resolve(user, ref actor, false)) + return; + SetPointValue(actor.PlayerSession.UserId, value, uid, component); + } + + /// + /// Gets the amount of points for a given player + /// + [PublicAPI] + public FixedPoint2 GetPointValue(EntityUid user, EntityUid uid, PointManagerComponent? component, ActorComponent? actor = null) + { + if (!Resolve(uid, ref component) || !Resolve(user, ref actor, false)) + return FixedPoint2.Zero; + return GetPointValue(actor.PlayerSession.UserId, uid, component); + } + + /// + public override FormattedMessage GetScoreboard(EntityUid uid, PointManagerComponent? component = null) + { + var msg = new FormattedMessage(); + + if (!Resolve(uid, ref component)) + return msg; + + var orderedPlayers = component.Points.OrderByDescending(p => p.Value).ToList(); + var place = 1; + foreach (var (id, points) in orderedPlayers) + { + if (!_player.TryGetPlayerData(id, out var data)) + continue; + + msg.AddMarkup(Loc.GetString("point-scoreboard-list", + ("place", place), + ("name", data.UserName), + ("points", points.Int()))); + msg.PushNewline(); + place++; + } + + return msg; + } +} diff --git a/Content.Server/Polymorph/Components/PolymorphOnCollideComponent.cs b/Content.Server/Polymorph/Components/PolymorphOnCollideComponent.cs index 3cb322ea5ab..5d513df9338 100644 --- a/Content.Server/Polymorph/Components/PolymorphOnCollideComponent.cs +++ b/Content.Server/Polymorph/Components/PolymorphOnCollideComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Polymorph.Components; [RegisterComponent] -public sealed class PolymorphOnCollideComponent : Component +public sealed partial class PolymorphOnCollideComponent : Component { [DataField("polymorph", required: true, customTypeSerializer:typeof(PrototypeIdSerializer))] public string Polymorph = default!; diff --git a/Content.Server/Polymorph/Components/PolymorphableComponent.cs b/Content.Server/Polymorph/Components/PolymorphableComponent.cs index 80211d76801..c05d36a8425 100644 --- a/Content.Server/Polymorph/Components/PolymorphableComponent.cs +++ b/Content.Server/Polymorph/Components/PolymorphableComponent.cs @@ -1,17 +1,16 @@ -using Content.Shared.Actions.ActionTypes; using Content.Shared.Polymorph; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; namespace Content.Server.Polymorph.Components { [RegisterComponent] - public sealed class PolymorphableComponent : Component + public sealed partial class PolymorphableComponent : Component { /// /// A list of all the polymorphs that the entity has. /// Used to manage them and remove them if needed. /// - public Dictionary? PolymorphActions = null; + public Dictionary? PolymorphActions = null; /// /// The polymorphs that the entity starts out being able to do. diff --git a/Content.Server/Polymorph/Components/PolymorphedEntityComponent.cs b/Content.Server/Polymorph/Components/PolymorphedEntityComponent.cs index 3263832e137..d295031a5b4 100644 --- a/Content.Server/Polymorph/Components/PolymorphedEntityComponent.cs +++ b/Content.Server/Polymorph/Components/PolymorphedEntityComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Polymorph.Components { [RegisterComponent] - public sealed class PolymorphedEntityComponent : Component + public sealed partial class PolymorphedEntityComponent : Component { /// /// The polymorph prototype, used to track various information diff --git a/Content.Server/Polymorph/Systems/PolymorphSystem.Collide.cs b/Content.Server/Polymorph/Systems/PolymorphSystem.Collide.cs index c6a6417efee..46b962b20e8 100644 --- a/Content.Server/Polymorph/Systems/PolymorphSystem.Collide.cs +++ b/Content.Server/Polymorph/Systems/PolymorphSystem.Collide.cs @@ -33,7 +33,7 @@ private void InitializeCollide() private void OnPolymorphCollide(EntityUid uid, PolymorphOnCollideComponent component, ref StartCollideEvent args) { - if (args.OurFixture.ID != SharedProjectileSystem.ProjectileFixture) + if (args.OurFixtureId != SharedProjectileSystem.ProjectileFixture) return; var other = args.OtherEntity; diff --git a/Content.Server/Polymorph/Systems/PolymorphSystem.cs b/Content.Server/Polymorph/Systems/PolymorphSystem.cs index 7b7e2a0a8ca..d630cbcad73 100644 --- a/Content.Server/Polymorph/Systems/PolymorphSystem.cs +++ b/Content.Server/Polymorph/Systems/PolymorphSystem.cs @@ -1,17 +1,15 @@ using Content.Server.Actions; using Content.Server.Humanoid; using Content.Server.Inventory; -using Content.Server.Mind; using Content.Server.Mind.Commands; -using Content.Server.Mind.Components; using Content.Server.Nutrition; using Content.Server.Polymorph.Components; using Content.Shared.Actions; -using Content.Shared.Actions.ActionTypes; using Content.Shared.Buckle; using Content.Shared.Damage; using Content.Shared.Hands.EntitySystems; using Content.Shared.IdentityManagement; +using Content.Shared.Mind; using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; using Content.Shared.Polymorph; @@ -42,10 +40,13 @@ public sealed partial class PolymorphSystem : EntitySystem [Dependency] private readonly SharedHandsSystem _hands = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly TransformSystem _transform = default!; - [Dependency] private readonly MindSystem _mindSystem = default!; + [Dependency] private readonly SharedMindSystem _mindSystem = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; private ISawmill _sawmill = default!; + private const string RevertPolymorphId = "ActionRevertPolymorph"; + public override void Initialize() { base.Initialize(); @@ -97,23 +98,21 @@ public void OnStartup(EntityUid uid, PolymorphedEntityComponent component, Compo if (proto.Forced) return; - var act = new InstantAction + var actionId = Spawn(RevertPolymorphId); + if (_actions.TryGetActionData(actionId, out var action)) { - Event = new RevertPolymorphActionEvent(), - EntityIcon = component.Parent, - DisplayName = Loc.GetString("polymorph-revert-action-name"), - Description = Loc.GetString("polymorph-revert-action-description"), - UseDelay = TimeSpan.FromSeconds(proto.Delay), - }; - - _actions.AddAction(uid, act, null); + action.EntityIcon = component.Parent; + action.UseDelay = TimeSpan.FromSeconds(proto.Delay); + } + + _actions.AddAction(uid, actionId, null, null, action); } private void OnBeforeFullyEaten(EntityUid uid, PolymorphedEntityComponent comp, BeforeFullyEatenEvent args) { if (!_proto.TryIndex(comp.Prototype, out var proto)) { - _sawmill.Error("Invalid polymorph prototype {comp.Prototype}"); + _sawmill.Error($"Invalid polymorph prototype {comp.Prototype}"); return; } @@ -220,20 +219,16 @@ private void OnBeforeFullySliced(EntityUid uid, PolymorphedEntityComponent comp, } } - if (proto.TransferName && - TryComp(uid, out var targetMeta) && - TryComp(child, out var childMeta)) - { - childMeta.EntityName = targetMeta.EntityName; - } + if (proto.TransferName && TryComp(uid, out var targetMeta)) + _metaData.SetEntityName(child, targetMeta.EntityName); if (proto.TransferHumanoidAppearance) { _humanoid.CloneAppearance(uid, child); } - if (_mindSystem.TryGetMind(uid, out var mind)) - _mindSystem.TransferTo(mind, child); + if (_mindSystem.TryGetMind(uid, out var mindId, out var mind)) + _mindSystem.TransferTo(mindId, child, mind: mind); //Ensures a map to banish the entity to EnsurePausesdMap(); @@ -248,22 +243,22 @@ private void OnBeforeFullySliced(EntityUid uid, PolymorphedEntityComponent comp, /// /// The entityuid of the entity being reverted /// - public void Revert(EntityUid uid, PolymorphedEntityComponent? component = null) + public EntityUid? Revert(EntityUid uid, PolymorphedEntityComponent? component = null) { if (Deleted(uid)) - return; + return null; if (!Resolve(uid, ref component)) - return; + return null; var parent = component.Parent; if (Deleted(parent)) - return; + return null; if (!_proto.TryIndex(component.Prototype, out PolymorphPrototype? proto)) { _sawmill.Error($"{nameof(PolymorphSystem)} encountered an improperly initialized polymorph component while reverting. Entity {ToPrettyString(uid)}. Prototype: {component.Prototype}"); - return; + return null; } var uidXform = Transform(uid); @@ -306,8 +301,8 @@ public void Revert(EntityUid uid, PolymorphedEntityComponent? component = null) } } - if (_mindSystem.TryGetMind(uid, out var mind)) - _mindSystem.TransferTo(mind, parent); + if (_mindSystem.TryGetMind(uid, out var mindId, out var mind)) + _mindSystem.TransferTo(mindId, parent, mind: mind); // if an item polymorph was picked up, put it back down after reverting Transform(parent).AttachToGridOrMap(); @@ -317,6 +312,8 @@ public void Revert(EntityUid uid, PolymorphedEntityComponent? component = null) ("child", Identity.Entity(parent, EntityManager))), parent); QueueDel(uid); + + return parent; } /// @@ -336,23 +333,19 @@ public void CreatePolymorphAction(string id, EntityUid target) return; var entproto = _proto.Index(polyproto.Entity); - - var act = new InstantAction + var actionId = Spawn(RevertPolymorphId); + if (_actions.TryGetActionData(actionId, out var baseAction) && + baseAction is InstantActionComponent action) { - Event = new PolymorphActionEvent - { - Prototype = polyproto, - }, - DisplayName = Loc.GetString("polymorph-self-action-name", ("target", entproto.Name)), - Description = Loc.GetString("polymorph-self-action-description", ("target", entproto.Name)), - Icon = new SpriteSpecifier.EntityPrototype(polyproto.Entity), - ItemIconStyle = ItemActionIconStyle.NoItem, - }; - - polycomp.PolymorphActions ??= new(); - - polycomp.PolymorphActions.Add(id, act); - _actions.AddAction(target, act, target); + action.Event = new PolymorphActionEvent { Prototype = polyproto }; + action.Icon = new SpriteSpecifier.EntityPrototype(polyproto.Entity); + _metaData.SetEntityName(actionId, Loc.GetString("polymorph-self-action-name", ("target", entproto.Name))); + _metaData.SetEntityDescription(actionId, Loc.GetString("polymorph-self-action-description", ("target", entproto.Name))); + + polycomp.PolymorphActions ??= new Dictionary(); + polycomp.PolymorphActions.Add(id, actionId); + _actions.AddAction(target, actionId, target); + } } [PublicAPI] @@ -401,18 +394,4 @@ public override void Update(float frameTime) UpdateCollide(); } } - - public sealed class PolymorphActionEvent : InstantActionEvent - { - /// - /// The polymorph prototype containing all the information about - /// the specific polymorph. - /// - public PolymorphPrototype Prototype = default!; - } - - public sealed class RevertPolymorphActionEvent : InstantActionEvent - { - - } } diff --git a/Content.Server/Polymorph/Toolshed/PolymorphCommand.cs b/Content.Server/Polymorph/Toolshed/PolymorphCommand.cs new file mode 100644 index 00000000000..e1eca01aa3d --- /dev/null +++ b/Content.Server/Polymorph/Toolshed/PolymorphCommand.cs @@ -0,0 +1,36 @@ +using System.Linq; +using Content.Server.Administration; +using Content.Server.Polymorph.Systems; +using Content.Shared.Administration; +using Content.Shared.Polymorph; +using Robust.Shared.Toolshed; +using Robust.Shared.Toolshed.TypeParsers; + +namespace Content.Server.Polymorph.Toolshed; + +/// +/// Polymorphs the given entity(s) into the target morph. +/// +[ToolshedCommand, AdminCommand(AdminFlags.Fun)] +public sealed class PolymorphCommand : ToolshedCommand +{ + private PolymorphSystem? _system; + + [CommandImplementation] + public EntityUid? Polymorph( + [PipedArgument] EntityUid input, + [CommandArgument] Prototype prototype + ) + { + _system ??= GetSys(); + + return _system.PolymorphEntity(input, prototype.Value); + } + + [CommandImplementation] + public IEnumerable Polymorph( + [PipedArgument] IEnumerable input, + [CommandArgument] Prototype prototype + ) + => input.Select(x => Polymorph(x, prototype)).Where(x => x is not null).Select(x => (EntityUid)x!); +} diff --git a/Content.Server/Polymorph/Toolshed/UnpolymorphCommand.cs b/Content.Server/Polymorph/Toolshed/UnpolymorphCommand.cs new file mode 100644 index 00000000000..1f3117fe679 --- /dev/null +++ b/Content.Server/Polymorph/Toolshed/UnpolymorphCommand.cs @@ -0,0 +1,30 @@ +using System.Linq; +using Content.Server.Administration; +using Content.Server.Polymorph.Systems; +using Content.Shared.Administration; +using Content.Shared.Polymorph; +using Robust.Shared.Toolshed; +using Robust.Shared.Toolshed.TypeParsers; + +namespace Content.Server.Polymorph.Toolshed; + +/// +/// Undoes a polymorph, reverting the target to it's original form. +/// +[ToolshedCommand, AdminCommand(AdminFlags.Fun)] +public sealed class UnpolymorphCommand : ToolshedCommand +{ + private PolymorphSystem? _system; + + [CommandImplementation] + public EntityUid? Unpolymorph([PipedArgument] EntityUid input) + { + _system ??= GetSys(); + + return _system.Revert(input); + } + + [CommandImplementation] + public IEnumerable Unpolymorph([PipedArgument] IEnumerable input) + => input.Select(Unpolymorph).Where(x => x is not null).Select(x => (EntityUid)x!); +} diff --git a/Content.Server/Popups/PopupSystem.cs b/Content.Server/Popups/PopupSystem.cs index 9c4b0ae082a..407d2c49aa4 100644 --- a/Content.Server/Popups/PopupSystem.cs +++ b/Content.Server/Popups/PopupSystem.cs @@ -31,37 +31,37 @@ public override void PopupCursor(string message, EntityUid recipient, PopupType public override void PopupCoordinates(string message, EntityCoordinates coordinates, Filter filter, bool replayRecord, PopupType type = PopupType.Small) { - RaiseNetworkEvent(new PopupCoordinatesEvent(message, type, coordinates), filter, replayRecord); + RaiseNetworkEvent(new PopupCoordinatesEvent(message, type, GetNetCoordinates(coordinates)), filter, replayRecord); } public override void PopupCoordinates(string message, EntityCoordinates coordinates, PopupType type = PopupType.Small) { var mapPos = coordinates.ToMap(EntityManager); var filter = Filter.Empty().AddPlayersByPvs(mapPos, entManager: EntityManager, playerMan: _player, cfgMan: _cfg); - RaiseNetworkEvent(new PopupCoordinatesEvent(message, type, coordinates), filter); + RaiseNetworkEvent(new PopupCoordinatesEvent(message, type, GetNetCoordinates(coordinates)), filter); } public override void PopupCoordinates(string message, EntityCoordinates coordinates, ICommonSession recipient, PopupType type = PopupType.Small) { - RaiseNetworkEvent(new PopupCoordinatesEvent(message, type, coordinates), recipient); + RaiseNetworkEvent(new PopupCoordinatesEvent(message, type, GetNetCoordinates(coordinates)), recipient); } public override void PopupCoordinates(string message, EntityCoordinates coordinates, EntityUid recipient, PopupType type = PopupType.Small) { if (TryComp(recipient, out ActorComponent? actor)) - RaiseNetworkEvent(new PopupCoordinatesEvent(message, type, coordinates), actor.PlayerSession); + RaiseNetworkEvent(new PopupCoordinatesEvent(message, type, GetNetCoordinates(coordinates)), actor.PlayerSession); } public override void PopupEntity(string message, EntityUid uid, PopupType type = PopupType.Small) { var filter = Filter.Empty().AddPlayersByPvs(uid, entityManager:EntityManager, playerMan: _player, cfgMan: _cfg); - RaiseNetworkEvent(new PopupEntityEvent(message, type, uid), filter); + RaiseNetworkEvent(new PopupEntityEvent(message, type, GetNetEntity(uid)), filter); } public override void PopupEntity(string message, EntityUid uid, EntityUid recipient, PopupType type=PopupType.Small) { if (TryComp(recipient, out ActorComponent? actor)) - RaiseNetworkEvent(new PopupEntityEvent(message, type, uid), actor.PlayerSession); + RaiseNetworkEvent(new PopupEntityEvent(message, type, GetNetEntity(uid)), actor.PlayerSession); } public override void PopupClient(string message, EntityUid uid, EntityUid recipient, PopupType type = PopupType.Small) @@ -72,12 +72,12 @@ public override void PopupClient(string message, EntityUid uid, EntityUid recipi public override void PopupEntity(string message, EntityUid uid, ICommonSession recipient, PopupType type = PopupType.Small) { - RaiseNetworkEvent(new PopupEntityEvent(message, type, uid), recipient); + RaiseNetworkEvent(new PopupEntityEvent(message, type, GetNetEntity(uid)), recipient); } public override void PopupEntity(string message, EntityUid uid, Filter filter, bool recordReplay, PopupType type = PopupType.Small) { - RaiseNetworkEvent(new PopupEntityEvent(message, type, uid), filter, recordReplay); + RaiseNetworkEvent(new PopupEntityEvent(message, type, GetNetEntity(uid)), filter, recordReplay); } } } diff --git a/Content.Server/Power/Components/ActivatableUIRequiresPowerComponent.cs b/Content.Server/Power/Components/ActivatableUIRequiresPowerComponent.cs index 3ae50b7f76a..c387457adba 100644 --- a/Content.Server/Power/Components/ActivatableUIRequiresPowerComponent.cs +++ b/Content.Server/Power/Components/ActivatableUIRequiresPowerComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Power.Components { [RegisterComponent] - public sealed class ActivatableUIRequiresPowerComponent : Component + public sealed partial class ActivatableUIRequiresPowerComponent : Component { } } diff --git a/Content.Server/Power/Components/ActiveChargerComponent.cs b/Content.Server/Power/Components/ActiveChargerComponent.cs index 57f2f1a79c6..f3d863c9e43 100644 --- a/Content.Server/Power/Components/ActiveChargerComponent.cs +++ b/Content.Server/Power/Components/ActiveChargerComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Power.Components { [RegisterComponent] - public sealed class ActiveChargerComponent : Component + public sealed partial class ActiveChargerComponent : Component { } } diff --git a/Content.Server/Power/Components/ApcComponent.cs b/Content.Server/Power/Components/ApcComponent.cs index 40ed3f87942..1b9e3009193 100644 --- a/Content.Server/Power/Components/ApcComponent.cs +++ b/Content.Server/Power/Components/ApcComponent.cs @@ -1,11 +1,12 @@ using Content.Server.Power.NodeGroups; using Content.Shared.APC; using Robust.Shared.Audio; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; namespace Content.Server.Power.Components; [RegisterComponent] -public sealed class ApcComponent : BaseApcNetComponent +public sealed partial class ApcComponent : BaseApcNetComponent { [DataField("onReceiveMessageSound")] public SoundSpecifier OnReceiveMessageSound = new SoundPathSpecifier("/Audio/Machines/machine_switch.ogg"); @@ -13,16 +14,26 @@ public sealed class ApcComponent : BaseApcNetComponent [DataField("apcIgnoreEmp")] public bool ApcIgnoreEmp = false; - [ViewVariables] + [DataField("lastChargeState")] public ApcChargeState LastChargeState; + [DataField("lastChargeStateTime", customTypeSerializer: typeof(TimeOffsetSerializer))] public TimeSpan LastChargeStateTime; - [ViewVariables] + [DataField("lastExternalState")] public ApcExternalPowerState LastExternalState; + + /// + /// Time the ui was last updated automatically. + /// Done after every to show the latest load. + /// If charge state changes it will be instantly updated. + /// + [DataField("lastUiUpdate", customTypeSerializer: typeof(TimeOffsetSerializer))] public TimeSpan LastUiUpdate; - [ViewVariables] + [DataField("enabled")] public bool MainBreakerEnabled = true; + // TODO: remove this since it probably breaks when 2 people use it + [DataField("hasAccess")] public bool HasAccess = false; public const float HighPowerThreshold = 0.9f; diff --git a/Content.Server/Power/Components/ApcElectronicsComponent.cs b/Content.Server/Power/Components/ApcElectronicsComponent.cs index 80339cf11ba..6d19a16ee11 100644 --- a/Content.Server/Power/Components/ApcElectronicsComponent.cs +++ b/Content.Server/Power/Components/ApcElectronicsComponent.cs @@ -6,6 +6,6 @@ namespace Content.Server.Power.Components /// This object is an APC electronics, used for constructing APCs /// [RegisterComponent] - public sealed class ApcElectronicsComponent : Component + public sealed partial class ApcElectronicsComponent : Component { } } diff --git a/Content.Server/Power/Components/ApcPowerProviderComponent.cs b/Content.Server/Power/Components/ApcPowerProviderComponent.cs index 20a547f0db7..de18985e899 100644 --- a/Content.Server/Power/Components/ApcPowerProviderComponent.cs +++ b/Content.Server/Power/Components/ApcPowerProviderComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Power.Components { [RegisterComponent] [ComponentProtoName("PowerProvider")] - public sealed class ApcPowerProviderComponent : BaseApcNetComponent + public sealed partial class ApcPowerProviderComponent : BaseApcNetComponent { [ViewVariables] public List LinkedReceivers { get; } = new(); diff --git a/Content.Server/Power/Components/ApcPowerReceiverComponent.cs b/Content.Server/Power/Components/ApcPowerReceiverComponent.cs index bb8d5549da3..ae4d7394304 100644 --- a/Content.Server/Power/Components/ApcPowerReceiverComponent.cs +++ b/Content.Server/Power/Components/ApcPowerReceiverComponent.cs @@ -8,7 +8,7 @@ namespace Content.Server.Power.Components /// so that it can receive power from a . /// [RegisterComponent] - public sealed class ApcPowerReceiverComponent : Component + public sealed partial class ApcPowerReceiverComponent : Component { [ViewVariables] public bool Powered => (MathHelper.CloseToPercent(NetworkLoad.ReceivingPower, Load) || !NeedsPower) && !PowerDisabled; diff --git a/Content.Server/Power/Components/BaseApcNetComponent.cs b/Content.Server/Power/Components/BaseApcNetComponent.cs index 634653c022e..6c4fa80494e 100644 --- a/Content.Server/Power/Components/BaseApcNetComponent.cs +++ b/Content.Server/Power/Components/BaseApcNetComponent.cs @@ -2,7 +2,7 @@ namespace Content.Server.Power.Components { - public abstract class BaseApcNetComponent : BaseNetConnectorComponent + public abstract partial class BaseApcNetComponent : BaseNetConnectorComponent { } } diff --git a/Content.Server/Power/Components/BaseNetConnectorComponent.cs b/Content.Server/Power/Components/BaseNetConnectorComponent.cs index e452474a2dc..174c62a1df8 100644 --- a/Content.Server/Power/Components/BaseNetConnectorComponent.cs +++ b/Content.Server/Power/Components/BaseNetConnectorComponent.cs @@ -12,7 +12,8 @@ public interface IBaseNetConnectorComponent public string? NodeId { get; } } - public abstract class BaseNetConnectorComponent : Component, IBaseNetConnectorComponent + public abstract partial class BaseNetConnectorComponent : Component, IBaseNetConnectorComponent + where TNetType : class { [Dependency] private readonly IEntityManager _entMan = default!; @@ -46,7 +47,10 @@ public void TryFindAndSetNet() public void ClearNet() { if (_net != null) + { RemoveSelfFromNet(_net); + _net = null; + } } protected abstract void AddSelfToNet(TNetType net); @@ -55,7 +59,7 @@ public void ClearNet() private bool TryFindNet([NotNullWhen(true)] out TNetType? foundNet) { - if (_entMan.TryGetComponent(Owner, out var container)) + if (_entMan.TryGetComponent(Owner, out NodeContainerComponent? container)) { var compatibleNet = container.Nodes.Values .Where(node => (NodeId == null || NodeId == node.Name) && node.NodeGroupID == (NodeGroupID) Voltage) diff --git a/Content.Server/Power/Components/BasePowerNetComponent.cs b/Content.Server/Power/Components/BasePowerNetComponent.cs index ccd3b6bc3a6..5c7a760983e 100644 --- a/Content.Server/Power/Components/BasePowerNetComponent.cs +++ b/Content.Server/Power/Components/BasePowerNetComponent.cs @@ -7,7 +7,7 @@ public interface IBasePowerNetComponent : IBaseNetConnectorComponent } - public abstract class BasePowerNetComponent : BaseNetConnectorComponent + public abstract partial class BasePowerNetComponent : BaseNetConnectorComponent { } } diff --git a/Content.Server/Power/Components/BatteryChargerComponent.cs b/Content.Server/Power/Components/BatteryChargerComponent.cs index b4f2a0bb790..99284e44acf 100644 --- a/Content.Server/Power/Components/BatteryChargerComponent.cs +++ b/Content.Server/Power/Components/BatteryChargerComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Power.Components /// Connects the loading side of a to a non-APC power network. /// [RegisterComponent] - public sealed class BatteryChargerComponent : BasePowerNetComponent + public sealed partial class BatteryChargerComponent : BasePowerNetComponent { protected override void AddSelfToNet(IPowerNet net) { diff --git a/Content.Server/Power/Components/BatteryComponent.cs b/Content.Server/Power/Components/BatteryComponent.cs index 7581e9af9b8..0fbee9aa346 100644 --- a/Content.Server/Power/Components/BatteryComponent.cs +++ b/Content.Server/Power/Components/BatteryComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Power.Components /// [RegisterComponent] [Virtual] - public class BatteryComponent : Component + public partial class BatteryComponent : Component { [Dependency] private readonly IEntityManager _entMan = default!; public string SolutionName = "battery"; diff --git a/Content.Server/Power/Components/BatteryDischargerComponent.cs b/Content.Server/Power/Components/BatteryDischargerComponent.cs index f06949fea91..c716338546a 100644 --- a/Content.Server/Power/Components/BatteryDischargerComponent.cs +++ b/Content.Server/Power/Components/BatteryDischargerComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Power.Components { [RegisterComponent] - public sealed class BatteryDischargerComponent : BasePowerNetComponent + public sealed partial class BatteryDischargerComponent : BasePowerNetComponent { protected override void AddSelfToNet(IPowerNet net) { diff --git a/Content.Server/Power/Components/BatterySelfRechargerComponent.cs b/Content.Server/Power/Components/BatterySelfRechargerComponent.cs index d67b6f693f0..4798beb7573 100644 --- a/Content.Server/Power/Components/BatterySelfRechargerComponent.cs +++ b/Content.Server/Power/Components/BatterySelfRechargerComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Power.Components /// Self-recharging battery. /// [RegisterComponent] - public sealed class BatterySelfRechargerComponent : Component + public sealed partial class BatterySelfRechargerComponent : Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("autoRecharge")] public bool AutoRecharge { get; set; } diff --git a/Content.Server/Power/Components/CableComponent.cs b/Content.Server/Power/Components/CableComponent.cs index 970ef46468a..306c9f732e6 100644 --- a/Content.Server/Power/Components/CableComponent.cs +++ b/Content.Server/Power/Components/CableComponent.cs @@ -10,10 +10,10 @@ namespace Content.Server.Power.Components /// [RegisterComponent] [Access(typeof(CableSystem))] - public sealed class CableComponent : Component + public sealed partial class CableComponent : Component { [DataField("cableDroppedOnCutPrototype", customTypeSerializer: typeof(PrototypeIdSerializer))] - public readonly string CableDroppedOnCutPrototype = "CableHVStack1"; + public string CableDroppedOnCutPrototype = "CableHVStack1"; [DataField("cuttingQuality", customTypeSerializer:typeof(PrototypeIdSerializer))] public string CuttingQuality = "Cutting"; diff --git a/Content.Server/Power/Components/CablePlacerComponent.cs b/Content.Server/Power/Components/CablePlacerComponent.cs index 49b18ddb8f7..affe3c77a48 100644 --- a/Content.Server/Power/Components/CablePlacerComponent.cs +++ b/Content.Server/Power/Components/CablePlacerComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Power.Components { [RegisterComponent] - public sealed class CablePlacerComponent : Component + public sealed partial class CablePlacerComponent : Component { [DataField("cablePrototypeID", customTypeSerializer:typeof(PrototypeIdSerializer))] public string? CablePrototypeId = "CableHV"; diff --git a/Content.Server/Power/Components/CableVisComponent.cs b/Content.Server/Power/Components/CableVisComponent.cs index fe73960c616..bd9c62ba808 100644 --- a/Content.Server/Power/Components/CableVisComponent.cs +++ b/Content.Server/Power/Components/CableVisComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Power.Components { [RegisterComponent] - public sealed class CableVisComponent : Component + public sealed partial class CableVisComponent : Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("node")] diff --git a/Content.Server/Power/Components/ChargerComponent.cs b/Content.Server/Power/Components/ChargerComponent.cs index e93dcd3c1e0..b7e3b3da8ce 100644 --- a/Content.Server/Power/Components/ChargerComponent.cs +++ b/Content.Server/Power/Components/ChargerComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Power.Components { [RegisterComponent] - public sealed class ChargerComponent : Component + public sealed partial class ChargerComponent : Component { [ViewVariables] public CellChargerStatus Status; diff --git a/Content.Server/Power/Components/ExaminableBatteryComponent.cs b/Content.Server/Power/Components/ExaminableBatteryComponent.cs index de4154afbcf..4cf4abd3cfa 100644 --- a/Content.Server/Power/Components/ExaminableBatteryComponent.cs +++ b/Content.Server/Power/Components/ExaminableBatteryComponent.cs @@ -1,6 +1,6 @@ namespace Content.Server.Power.Components { [RegisterComponent] - public sealed class ExaminableBatteryComponent : Component + public sealed partial class ExaminableBatteryComponent : Component {} } diff --git a/Content.Server/Power/Components/ExtensionCableProviderComponent.cs b/Content.Server/Power/Components/ExtensionCableProviderComponent.cs index efcca655032..27dae2ed767 100644 --- a/Content.Server/Power/Components/ExtensionCableProviderComponent.cs +++ b/Content.Server/Power/Components/ExtensionCableProviderComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Power.Components { [RegisterComponent] [Access(typeof(ExtensionCableSystem))] - public sealed class ExtensionCableProviderComponent : Component + public sealed partial class ExtensionCableProviderComponent : Component { /// /// The max distance this can connect to s from. diff --git a/Content.Server/Power/Components/ExtensionCableReceiverComponent.cs b/Content.Server/Power/Components/ExtensionCableReceiverComponent.cs index 835698f4c1b..58e5c05dd09 100644 --- a/Content.Server/Power/Components/ExtensionCableReceiverComponent.cs +++ b/Content.Server/Power/Components/ExtensionCableReceiverComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Power.Components { [RegisterComponent] [Access(typeof(ExtensionCableSystem))] - public sealed class ExtensionCableReceiverComponent : Component + public sealed partial class ExtensionCableReceiverComponent : Component { [ViewVariables] public ExtensionCableProviderComponent? Provider { get; set; } diff --git a/Content.Server/Power/Components/PowerConsumerComponent.cs b/Content.Server/Power/Components/PowerConsumerComponent.cs index 73c49d0f38e..eb704c61c40 100644 --- a/Content.Server/Power/Components/PowerConsumerComponent.cs +++ b/Content.Server/Power/Components/PowerConsumerComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Power.Components /// Draws power directly from an MV or HV wire it is on top of. /// [RegisterComponent] - public sealed class PowerConsumerComponent : BaseNetConnectorComponent + public sealed partial class PowerConsumerComponent : BaseNetConnectorComponent { /// /// How much power this needs to be fully powered. diff --git a/Content.Server/Power/Components/PowerMonitoringConsoleComponent.cs b/Content.Server/Power/Components/PowerMonitoringConsoleComponent.cs index 076c873de1e..7bf8a3b4142 100644 --- a/Content.Server/Power/Components/PowerMonitoringConsoleComponent.cs +++ b/Content.Server/Power/Components/PowerMonitoringConsoleComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Power.Components; [RegisterComponent] -public sealed class PowerMonitoringConsoleComponent : Component +public sealed partial class PowerMonitoringConsoleComponent : Component { } diff --git a/Content.Server/Power/Components/PowerNetworkBatteryComponent.cs b/Content.Server/Power/Components/PowerNetworkBatteryComponent.cs index a5215fba1af..a0f74df6a12 100644 --- a/Content.Server/Power/Components/PowerNetworkBatteryComponent.cs +++ b/Content.Server/Power/Components/PowerNetworkBatteryComponent.cs @@ -10,7 +10,7 @@ namespace Content.Server.Power.Components /// and battery storage should be handed off to components like . /// [RegisterComponent] - public sealed class PowerNetworkBatteryComponent : Component + public sealed partial class PowerNetworkBatteryComponent : Component { [ViewVariables] public float LastSupply = 0f; diff --git a/Content.Server/Power/Components/PowerSupplierComponent.cs b/Content.Server/Power/Components/PowerSupplierComponent.cs index cd55940a637..cf23288fcd6 100644 --- a/Content.Server/Power/Components/PowerSupplierComponent.cs +++ b/Content.Server/Power/Components/PowerSupplierComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Power.Components { [RegisterComponent] - public sealed class PowerSupplierComponent : BasePowerNetComponent + public sealed partial class PowerSupplierComponent : BaseNetConnectorComponent { [ViewVariables(VVAccess.ReadWrite)] [DataField("supplyRate")] @@ -47,12 +47,12 @@ public bool Enabled [ViewVariables] public PowerState.Supply NetworkSupply { get; } = new(); - protected override void AddSelfToNet(IPowerNet powerNet) + protected override void AddSelfToNet(IBasePowerNet powerNet) { powerNet.AddSupplier(this); } - protected override void RemoveSelfFromNet(IPowerNet powerNet) + protected override void RemoveSelfFromNet(IBasePowerNet powerNet) { powerNet.RemoveSupplier(this); } diff --git a/Content.Server/Power/Components/PowerSwitchComponent.cs b/Content.Server/Power/Components/PowerSwitchComponent.cs index 3124557f81a..42e787e6d71 100644 --- a/Content.Server/Power/Components/PowerSwitchComponent.cs +++ b/Content.Server/Power/Components/PowerSwitchComponent.cs @@ -4,6 +4,6 @@ namespace Content.Server.Power.Components /// Provides an alt verb to toggle power. /// [RegisterComponent] - public sealed class PowerSwitchComponent : Component + public sealed partial class PowerSwitchComponent : Component {} } diff --git a/Content.Server/Power/Components/RiggableComponent.cs b/Content.Server/Power/Components/RiggableComponent.cs index 09839896708..797c8c81f4c 100644 --- a/Content.Server/Power/Components/RiggableComponent.cs +++ b/Content.Server/Power/Components/RiggableComponent.cs @@ -1,11 +1,20 @@ +using Content.Shared.Chemistry.Reagent; +using Content.Shared.FixedPoint; + namespace Content.Server.Power.Components; [RegisterComponent] -public sealed class RiggableComponent : Component +public sealed partial class RiggableComponent : Component { - public const string SolutionName = "battery"; - [ViewVariables(VVAccess.ReadWrite)] [DataField("isRigged")] public bool IsRigged; + + [ViewVariables(VVAccess.ReadWrite)] + [DataField("solution")] + public string Solution = "battery"; + + [ViewVariables(VVAccess.ReadWrite)] + [DataField("reagent")] + public ReagentQuantity RequiredQuantity = new("Plasma", FixedPoint2.New(5), null); } diff --git a/Content.Server/Power/Components/UpgradeBatteryComponent.cs b/Content.Server/Power/Components/UpgradeBatteryComponent.cs index 74a53281484..e1fc4d2bb82 100644 --- a/Content.Server/Power/Components/UpgradeBatteryComponent.cs +++ b/Content.Server/Power/Components/UpgradeBatteryComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.Power.Components { [RegisterComponent] - public sealed class UpgradeBatteryComponent : Component + public sealed partial class UpgradeBatteryComponent : Component { /// /// The machine part that affects the power capacity. diff --git a/Content.Server/Power/Components/UpgradePowerDrawComponent.cs b/Content.Server/Power/Components/UpgradePowerDrawComponent.cs index 2ecd1d4a057..02a6c57b9bf 100644 --- a/Content.Server/Power/Components/UpgradePowerDrawComponent.cs +++ b/Content.Server/Power/Components/UpgradePowerDrawComponent.cs @@ -9,7 +9,7 @@ namespace Content.Server.Power.Components; /// can be decreased through machine part upgrades. /// [RegisterComponent] -public sealed class UpgradePowerDrawComponent : Component +public sealed partial class UpgradePowerDrawComponent : Component { /// /// The base power draw of the machine. diff --git a/Content.Server/Power/Components/UpgradePowerSupplierComponent.cs b/Content.Server/Power/Components/UpgradePowerSupplierComponent.cs index e9262f481ec..35b43867d2f 100644 --- a/Content.Server/Power/Components/UpgradePowerSupplierComponent.cs +++ b/Content.Server/Power/Components/UpgradePowerSupplierComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.Power.Components; [RegisterComponent] -public sealed class UpgradePowerSupplierComponent : Component +public sealed partial class UpgradePowerSupplierComponent : Component { [ViewVariables(VVAccess.ReadWrite)] public float BaseSupplyRate; diff --git a/Content.Server/Power/EntitySystems/ApcSystem.cs b/Content.Server/Power/EntitySystems/ApcSystem.cs index ed07ee912a9..08d2b297b6f 100644 --- a/Content.Server/Power/EntitySystems/ApcSystem.cs +++ b/Content.Server/Power/EntitySystems/ApcSystem.cs @@ -8,185 +8,188 @@ using Content.Shared.Emag.Components; using Content.Shared.Emag.Systems; using Content.Shared.Popups; -using JetBrains.Annotations; using Robust.Server.GameObjects; using Robust.Shared.Audio; using Robust.Shared.Timing; -namespace Content.Server.Power.EntitySystems +namespace Content.Server.Power.EntitySystems; + +public sealed class ApcSystem : EntitySystem { - [UsedImplicitly] - internal sealed class ApcSystem : EntitySystem + [Dependency] private readonly AccessReaderSystem _accessReader = default!; + [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly UserInterfaceSystem _ui = default!; + + public override void Initialize() { - [Dependency] private readonly AccessReaderSystem _accessReader = default!; - [Dependency] private readonly UserInterfaceSystem _ui = default!; - [Dependency] private readonly PopupSystem _popup = default!; - [Dependency] private readonly IGameTiming _gameTiming = default!; - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; - - public override void Initialize() - { - base.Initialize(); + base.Initialize(); - UpdatesAfter.Add(typeof(PowerNetSystem)); + UpdatesAfter.Add(typeof(PowerNetSystem)); - SubscribeLocalEvent(OnBoundUiOpen); - SubscribeLocalEvent(OnApcInit); - SubscribeLocalEvent(OnBatteryChargeChanged); - SubscribeLocalEvent(OnToggleMainBreaker); - SubscribeLocalEvent(OnEmagged); + SubscribeLocalEvent(OnBoundUiOpen); + SubscribeLocalEvent(OnApcInit); + SubscribeLocalEvent(OnBatteryChargeChanged); + SubscribeLocalEvent(OnToggleMainBreaker); + SubscribeLocalEvent(OnEmagged); - SubscribeLocalEvent(OnEmpPulse); - } - - // Change the APC's state only when the battery state changes, or when it's first created. - private void OnBatteryChargeChanged(EntityUid uid, ApcComponent component, ref ChargeChangedEvent args) - { - UpdateApcState(uid, component); - } + SubscribeLocalEvent(OnEmpPulse); + } - private void OnApcInit(EntityUid uid, ApcComponent component, MapInitEvent args) - { - UpdateApcState(uid, component); - } - //Update the HasAccess var for UI to read - private void OnBoundUiOpen(EntityUid uid, ApcComponent component, BoundUIOpenedEvent args) + public override void Update(float deltaTime) + { + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var apc, out var battery, out var ui)) { - TryComp(uid, out var access); - if (args.Session.AttachedEntity == null) - return; - - if (access == null || _accessReader.IsAllowed(args.Session.AttachedEntity.Value, access)) + if (apc.LastUiUpdate + ApcComponent.VisualsChangeDelay < _gameTiming.CurTime) { - component.HasAccess = true; - } - else - { - component.HasAccess = false; + apc.LastUiUpdate = _gameTiming.CurTime; + UpdateUIState(uid, apc, battery); } - UpdateApcState(uid, component); } - private void OnToggleMainBreaker(EntityUid uid, ApcComponent component, ApcToggleMainBreakerMessage args) - { - var attemptEv = new ApcToggleMainBreakerAttemptEvent(); - RaiseLocalEvent(uid, ref attemptEv); - if (attemptEv.Cancelled) - { - _popup.PopupCursor(Loc.GetString("apc-component-on-toggle-cancel"), - args.Session, PopupType.Medium); - return; - } + } - TryComp(uid, out var access); - if (args.Session.AttachedEntity == null) - return; + // Change the APC's state only when the battery state changes, or when it's first created. + private void OnBatteryChargeChanged(EntityUid uid, ApcComponent component, ref ChargeChangedEvent args) + { + UpdateApcState(uid, component); + } - if (access == null || _accessReader.IsAllowed(args.Session.AttachedEntity.Value, access)) - { - ApcToggleBreaker(uid, component); - } - else - { - _popup.PopupCursor(Loc.GetString("apc-component-insufficient-access"), - args.Session, PopupType.Medium); - } - } + private void OnApcInit(EntityUid uid, ApcComponent component, MapInitEvent args) + { + UpdateApcState(uid, component); + } - public void ApcToggleBreaker(EntityUid uid, ApcComponent? apc = null, PowerNetworkBatteryComponent? battery = null) - { - if (!Resolve(uid, ref apc, ref battery)) - return; + //Update the HasAccess var for UI to read + private void OnBoundUiOpen(EntityUid uid, ApcComponent component, BoundUIOpenedEvent args) + { + if (args.Session.AttachedEntity == null) + return; - apc.MainBreakerEnabled = !apc.MainBreakerEnabled; - battery.CanDischarge = apc.MainBreakerEnabled; + // TODO: this should be per-player not stored on the apc + component.HasAccess = _accessReader.IsAllowed(args.Session.AttachedEntity.Value, uid); + UpdateApcState(uid, component); + } - UpdateUIState(uid, apc); - _audio.PlayPvs(apc.OnReceiveMessageSound, uid, AudioParams.Default.WithVolume(-2f)); + private void OnToggleMainBreaker(EntityUid uid, ApcComponent component, ApcToggleMainBreakerMessage args) + { + var attemptEv = new ApcToggleMainBreakerAttemptEvent(); + RaiseLocalEvent(uid, ref attemptEv); + if (attemptEv.Cancelled) + { + _popup.PopupCursor(Loc.GetString("apc-component-on-toggle-cancel"), + args.Session, PopupType.Medium); + return; } - private void OnEmagged(EntityUid uid, ApcComponent comp, ref GotEmaggedEvent args) + if (args.Session.AttachedEntity == null) + return; + + if (_accessReader.IsAllowed(args.Session.AttachedEntity.Value, uid)) { - // no fancy conditions - args.Handled = true; + ApcToggleBreaker(uid, component); } - - public void UpdateApcState(EntityUid uid, - ApcComponent? apc=null, - PowerNetworkBatteryComponent? battery = null) + else { - if (!Resolve(uid, ref apc, ref battery)) - return; + _popup.PopupCursor(Loc.GetString("apc-component-insufficient-access"), + args.Session, PopupType.Medium); + } + } - var newState = CalcChargeState(uid, battery.NetworkBattery); - if (newState != apc.LastChargeState && apc.LastChargeStateTime + ApcComponent.VisualsChangeDelay < _gameTiming.CurTime) - { - apc.LastChargeState = newState; - apc.LastChargeStateTime = _gameTiming.CurTime; + public void ApcToggleBreaker(EntityUid uid, ApcComponent? apc = null, PowerNetworkBatteryComponent? battery = null) + { + if (!Resolve(uid, ref apc, ref battery)) + return; - if (TryComp(uid, out AppearanceComponent? appearance)) - { - _appearance.SetData(uid, ApcVisuals.ChargeState, newState, appearance); - } - } + apc.MainBreakerEnabled = !apc.MainBreakerEnabled; + battery.CanDischarge = apc.MainBreakerEnabled; + + UpdateUIState(uid, apc); + _audio.PlayPvs(apc.OnReceiveMessageSound, uid, AudioParams.Default.WithVolume(-2f)); + } + + private void OnEmagged(EntityUid uid, ApcComponent comp, ref GotEmaggedEvent args) + { + // no fancy conditions + args.Handled = true; + } - var extPowerState = CalcExtPowerState(uid, battery.NetworkBattery); - if (extPowerState != apc.LastExternalState - || apc.LastUiUpdate + ApcComponent.VisualsChangeDelay < _gameTiming.CurTime) + public void UpdateApcState(EntityUid uid, + ApcComponent? apc=null, + PowerNetworkBatteryComponent? battery = null) + { + if (!Resolve(uid, ref apc, ref battery, false)) + return; + + var newState = CalcChargeState(uid, battery.NetworkBattery); + if (newState != apc.LastChargeState && apc.LastChargeStateTime + ApcComponent.VisualsChangeDelay < _gameTiming.CurTime) + { + apc.LastChargeState = newState; + apc.LastChargeStateTime = _gameTiming.CurTime; + + if (TryComp(uid, out AppearanceComponent? appearance)) { - apc.LastExternalState = extPowerState; - apc.LastUiUpdate = _gameTiming.CurTime; - UpdateUIState(uid, apc, battery); + _appearance.SetData(uid, ApcVisuals.ChargeState, newState, appearance); } } - public void UpdateUIState(EntityUid uid, - ApcComponent? apc = null, - PowerNetworkBatteryComponent? netBat = null, - ServerUserInterfaceComponent? ui = null) + var extPowerState = CalcExtPowerState(uid, battery.NetworkBattery); + if (extPowerState != apc.LastExternalState) { - if (!Resolve(uid, ref apc, ref netBat, ref ui)) - return; + apc.LastExternalState = extPowerState; + UpdateUIState(uid, apc, battery); + } + } + + public void UpdateUIState(EntityUid uid, + ApcComponent? apc = null, + PowerNetworkBatteryComponent? netBat = null, + UserInterfaceComponent? ui = null) + { + if (!Resolve(uid, ref apc, ref netBat, ref ui)) + return; - var battery = netBat.NetworkBattery; + var battery = netBat.NetworkBattery; - var state = new ApcBoundInterfaceState(apc.MainBreakerEnabled, apc.HasAccess, - (int) MathF.Ceiling(battery.CurrentSupply), apc.LastExternalState, - battery.CurrentStorage / battery.Capacity); + var state = new ApcBoundInterfaceState(apc.MainBreakerEnabled, apc.HasAccess, + (int) MathF.Ceiling(battery.CurrentSupply), apc.LastExternalState, + battery.CurrentStorage / battery.Capacity); - _ui.TrySetUiState(uid, ApcUiKey.Key, state, ui: ui); - } + _ui.TrySetUiState(uid, ApcUiKey.Key, state, ui: ui); + } + + private ApcChargeState CalcChargeState(EntityUid uid, PowerState.Battery battery) + { + if (HasComp(uid)) + return ApcChargeState.Emag; - private ApcChargeState CalcChargeState(EntityUid uid, PowerState.Battery battery) + if (battery.CurrentStorage / battery.Capacity > ApcComponent.HighPowerThreshold) { - if (HasComp(uid)) - return ApcChargeState.Emag; + return ApcChargeState.Full; + } - if (battery.CurrentStorage / battery.Capacity > ApcComponent.HighPowerThreshold) - { - return ApcChargeState.Full; - } + var delta = battery.CurrentSupply - battery.CurrentReceiving; + return delta < 0 ? ApcChargeState.Charging : ApcChargeState.Lack; + } - var delta = battery.CurrentSupply - battery.CurrentReceiving; - return delta < 0 ? ApcChargeState.Charging : ApcChargeState.Lack; + private ApcExternalPowerState CalcExtPowerState(EntityUid uid, PowerState.Battery battery) + { + if (battery.CurrentReceiving == 0 && !MathHelper.CloseTo(battery.CurrentStorage / battery.Capacity, 1)) + { + return ApcExternalPowerState.None; } - private ApcExternalPowerState CalcExtPowerState(EntityUid uid, PowerState.Battery battery) + var delta = battery.CurrentSupply - battery.CurrentReceiving; + if (!MathHelper.CloseToPercent(delta, 0, 0.1f) && delta < 0) { - if (battery.CurrentReceiving == 0 && !MathHelper.CloseTo(battery.CurrentStorage / battery.Capacity, 1)) - { - return ApcExternalPowerState.None; - } - - var delta = battery.CurrentSupply - battery.CurrentReceiving; - if (!MathHelper.CloseToPercent(delta, 0, 0.1f) && delta < 0) - { - return ApcExternalPowerState.Low; - } - - return ApcExternalPowerState.Good; + return ApcExternalPowerState.Low; } + return ApcExternalPowerState.Good; + } + private void OnEmpPulse(EntityUid uid, ApcComponent component, ref EmpPulseEvent args) { if (component.ApcIgnoreEmp) @@ -206,6 +209,5 @@ private void OnEmpPulse(EntityUid uid, ApcComponent component, ref EmpPulseEvent } } - [ByRefEvent] - public record struct ApcToggleMainBreakerAttemptEvent(bool Cancelled); -} +[ByRefEvent] +public record struct ApcToggleMainBreakerAttemptEvent(bool Cancelled); diff --git a/Content.Server/Power/EntitySystems/BatterySystem.cs b/Content.Server/Power/EntitySystems/BatterySystem.cs index 410aa30bba2..c844988b065 100644 --- a/Content.Server/Power/EntitySystems/BatterySystem.cs +++ b/Content.Server/Power/EntitySystems/BatterySystem.cs @@ -156,5 +156,16 @@ public bool TryUseCharge(EntityUid uid, float value, BatteryComponent? battery = UseCharge(uid, value, battery); return true; } + + /// + /// Returns whether the battery is at least 99% charged, basically full. + /// + public bool IsFull(EntityUid uid, BatteryComponent? battery = null) + { + if (!Resolve(uid, ref battery)) + return false; + + return battery.CurrentCharge / battery.MaxCharge >= 0.99f; + } } } diff --git a/Content.Server/Power/EntitySystems/PowerMonitoringConsoleSystem.cs b/Content.Server/Power/EntitySystems/PowerMonitoringConsoleSystem.cs index 07e1a62eedb..6bf4e69334b 100644 --- a/Content.Server/Power/EntitySystems/PowerMonitoringConsoleSystem.cs +++ b/Content.Server/Power/EntitySystems/PowerMonitoringConsoleSystem.cs @@ -100,7 +100,7 @@ PowerMonitoringConsoleEntry LoadOrSource(Component comp, double rate, bool isBat // Actually set state. if (_userInterfaceSystem.TryGetUi(target, PowerMonitoringConsoleUiKey.Key, out var bui)) - UserInterfaceSystem.SetUiState(bui, new PowerMonitoringConsoleBoundInterfaceState(totalSources, totalLoads, sources.ToArray(), loads.ToArray())); + _userInterfaceSystem.SetUiState(bui, new PowerMonitoringConsoleBoundInterfaceState(totalSources, totalLoads, sources.ToArray(), loads.ToArray())); } private int CompareLoadOrSources(PowerMonitoringConsoleEntry x, PowerMonitoringConsoleEntry y) diff --git a/Content.Server/Power/EntitySystems/PowerNetConnectorSystem.cs b/Content.Server/Power/EntitySystems/PowerNetConnectorSystem.cs index cb8593adc1f..df38c2f17a2 100644 --- a/Content.Server/Power/EntitySystems/PowerNetConnectorSystem.cs +++ b/Content.Server/Power/EntitySystems/PowerNetConnectorSystem.cs @@ -39,7 +39,7 @@ private void OnApcInit(EntityUid uid, ApcComponent component, ComponentInit args BaseNetConnectorInit(component); } - public void BaseNetConnectorInit(BaseNetConnectorComponent component) + public void BaseNetConnectorInit(BaseNetConnectorComponent component) where T : class { if (component.NeedsNet) { diff --git a/Content.Server/Power/EntitySystems/PowerNetSystem.cs b/Content.Server/Power/EntitySystems/PowerNetSystem.cs index b457a321a19..a3aa1caee2e 100644 --- a/Content.Server/Power/EntitySystems/PowerNetSystem.cs +++ b/Content.Server/Power/EntitySystems/PowerNetSystem.cs @@ -394,11 +394,7 @@ private void DoReconnectApcNet(ApcNet net) } } - foreach (var consumer in net.Consumers) - { - netNode.Loads.Add(consumer.NetworkLoad.Id); - consumer.NetworkLoad.LinkedNetwork = netNode.Id; - } + DoReconnectBasePowerNet(net, netNode); var batteryQuery = GetEntityQuery(); @@ -419,17 +415,7 @@ private void DoReconnectPowerNet(PowerNet net) netNode.BatteryLoads.Clear(); netNode.BatterySupplies.Clear(); - foreach (var consumer in net.Consumers) - { - netNode.Loads.Add(consumer.NetworkLoad.Id); - consumer.NetworkLoad.LinkedNetwork = netNode.Id; - } - - foreach (var supplier in net.Suppliers) - { - netNode.Supplies.Add(supplier.NetworkSupply.Id); - supplier.NetworkSupply.LinkedNetwork = netNode.Id; - } + DoReconnectBasePowerNet(net, netNode); var batteryQuery = GetEntityQuery(); @@ -447,6 +433,22 @@ private void DoReconnectPowerNet(PowerNet net) battery.NetworkBattery.LinkedNetworkDischarging = netNode.Id; } } + + private void DoReconnectBasePowerNet(BasePowerNet net, PowerState.Network netNode) + where TNetType : IBasePowerNet + { + foreach (var consumer in net.Consumers) + { + netNode.Loads.Add(consumer.NetworkLoad.Id); + consumer.NetworkLoad.LinkedNetwork = netNode.Id; + } + + foreach (var supplier in net.Suppliers) + { + netNode.Supplies.Add(supplier.NetworkSupply.Id); + supplier.NetworkSupply.LinkedNetwork = netNode.Id; + } + } } /// diff --git a/Content.Server/Power/EntitySystems/RiggableSystem.cs b/Content.Server/Power/EntitySystems/RiggableSystem.cs index 9d988f00b9d..b35d936ace0 100644 --- a/Content.Server/Power/EntitySystems/RiggableSystem.cs +++ b/Content.Server/Power/EntitySystems/RiggableSystem.cs @@ -4,6 +4,7 @@ using Content.Server.Kitchen.Components; using Content.Server.Power.Components; using Content.Server.Stunnable.Components; +using Content.Shared.Chemistry.Components; using Content.Shared.Database; using Content.Shared.Rejuvenate; @@ -47,24 +48,16 @@ private void OnMicrowaved(EntityUid uid, RiggableComponent component, BeingMicro private void OnSolutionChanged(EntityUid uid, RiggableComponent component, SolutionChangedEvent args) { - if (TryComp(uid, out var battery)) - { - IsRigged(uid, args); - } + if (args.SolutionId != component.Solution) + return; - if (component.IsRigged) - { - _adminLogger.Add(LogType.Explosion, LogImpact.Medium, $"{ToPrettyString(uid)} has been rigged up to explode when used."); - } - } + var wasRigged = component.IsRigged; + var quantity = args.Solution.GetReagentQuantity(component.RequiredQuantity.Reagent); + component.IsRigged = quantity >= component.RequiredQuantity.Quantity; - public void IsRigged(EntityUid uid, SolutionChangedEvent args) - { - if (TryComp(uid, out var riggableComp)) + if (component.IsRigged && !wasRigged) { - riggableComp.IsRigged = _solutionsSystem.TryGetSolution(uid, RiggableComponent.SolutionName, out var solution) - && solution.TryGetReagent("Plasma", out var plasma) - && plasma >= 5; + _adminLogger.Add(LogType.Explosion, LogImpact.Medium, $"{ToPrettyString(uid)} has been rigged up to explode when used."); } } diff --git a/Content.Server/Power/Generation/Teg/TegCirculatorComponent.cs b/Content.Server/Power/Generation/Teg/TegCirculatorComponent.cs index 636ccdd17ad..95f3b919f2f 100644 --- a/Content.Server/Power/Generation/Teg/TegCirculatorComponent.cs +++ b/Content.Server/Power/Generation/Teg/TegCirculatorComponent.cs @@ -9,7 +9,7 @@ namespace Content.Server.Power.Generation.Teg; /// [RegisterComponent] [Access(typeof(TegSystem))] -public sealed class TegCirculatorComponent : Component +public sealed partial class TegCirculatorComponent : Component { /// /// The difference between the inlet and outlet pressure at the start of the previous tick. diff --git a/Content.Server/Power/Generation/Teg/TegGeneratorComponent.cs b/Content.Server/Power/Generation/Teg/TegGeneratorComponent.cs index 13ccc50eae9..87998e5d82a 100644 --- a/Content.Server/Power/Generation/Teg/TegGeneratorComponent.cs +++ b/Content.Server/Power/Generation/Teg/TegGeneratorComponent.cs @@ -6,7 +6,7 @@ /// [RegisterComponent] [Access(typeof(TegSystem))] -public sealed class TegGeneratorComponent : Component +public sealed partial class TegGeneratorComponent : Component { /// /// When transferring energy from the hot to cold side, diff --git a/Content.Server/Power/Generation/Teg/TegNodeGroup.cs b/Content.Server/Power/Generation/Teg/TegNodeGroup.cs index 7d844afcc43..ed6b46e304a 100644 --- a/Content.Server/Power/Generation/Teg/TegNodeGroup.cs +++ b/Content.Server/Power/Generation/Teg/TegNodeGroup.cs @@ -117,7 +117,7 @@ public override void LoadNodes(List groupNodes) /// /// [DataDefinition] -public sealed class TegNodeGenerator : Node +public sealed partial class TegNodeGenerator : Node { public override IEnumerable GetReachableNodes( TransformComponent xform, @@ -169,7 +169,7 @@ public override IEnumerable GetReachableNodes( /// /// [DataDefinition] -public sealed class TegNodeCirculator : Node +public sealed partial class TegNodeCirculator : Node { public override IEnumerable GetReachableNodes( TransformComponent xform, diff --git a/Content.Server/Power/Generation/Teg/TegSystem.cs b/Content.Server/Power/Generation/Teg/TegSystem.cs index 4bd1c0a14c9..9219f5f73cf 100644 --- a/Content.Server/Power/Generation/Teg/TegSystem.cs +++ b/Content.Server/Power/Generation/Teg/TegSystem.cs @@ -270,10 +270,10 @@ private void UpdateCirculatorAppearance(EntityUid uid, bool powered) _appearance.SetData(uid, TegVisuals.CirculatorSpeed, speed); _appearance.SetData(uid, TegVisuals.CirculatorPower, powered); - if (TryComp(uid, out PointLightComponent? pointLight)) + if (_pointLight.TryGetLight(uid, out var pointLight)) { _pointLight.SetEnabled(uid, powered, pointLight); - pointLight.Color = speed == TegCirculatorSpeed.SpeedFast ? circ.LightColorFast : circ.LightColorSlow; + _pointLight.SetColor(uid, speed == TegCirculatorSpeed.SpeedFast ? circ.LightColorFast : circ.LightColorSlow, pointLight); } } diff --git a/Content.Server/Power/Generator/ChemicalFuelGeneratorAdapterComponent.cs b/Content.Server/Power/Generator/ChemicalFuelGeneratorAdapterComponent.cs index a16bdbbca15..dd922368dab 100644 --- a/Content.Server/Power/Generator/ChemicalFuelGeneratorAdapterComponent.cs +++ b/Content.Server/Power/Generator/ChemicalFuelGeneratorAdapterComponent.cs @@ -1,6 +1,7 @@ -using Content.Shared.Chemistry.Reagent; -using Content.Shared.Whitelist; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Dictionary; +using Content.Server.Chemistry.Components.SolutionManager; +using Content.Shared.Chemistry.Reagent; +using Content.Shared.FixedPoint; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.Power.Generator; @@ -8,17 +9,32 @@ namespace Content.Server.Power.Generator; /// This is used for chemical fuel input into generators. /// [RegisterComponent, Access(typeof(GeneratorSystem))] -public sealed class ChemicalFuelGeneratorAdapterComponent : Component +public sealed partial class ChemicalFuelGeneratorAdapterComponent : Component { /// - /// The acceptable list of input entities. + /// The reagent to accept as fuel. /// - [DataField("whitelist")] - public EntityWhitelist? Whitelist; + [DataField("reagent", customTypeSerializer: typeof(PrototypeIdSerializer))] + [ViewVariables(VVAccess.ReadWrite)] + public string Reagent = "WeldingFuel"; /// - /// The conversion factor for different chems you can put in. + /// The solution on the to use. /// - [DataField("chemConversionFactors", required: true, customTypeSerializer:typeof(PrototypeIdDictionarySerializer))] - public Dictionary ChemConversionFactors = default!; + [DataField("solution")] + [ViewVariables(VVAccess.ReadWrite)] + public string Solution = "tank"; + + /// + /// Value to multiply reagent amount by to get fuel amount. + /// + [DataField("multiplier"), ViewVariables(VVAccess.ReadWrite)] + public float Multiplier = 1f; + + /// + /// How much reagent (can be fractional) is left in the generator. + /// Stored in units of . + /// + [DataField("fractionalReagent"), ViewVariables(VVAccess.ReadWrite)] + public float FractionalReagent; } diff --git a/Content.Server/Power/Generator/ChemicalFuelGeneratorDirectSourceComponent.cs b/Content.Server/Power/Generator/ChemicalFuelGeneratorDirectSourceComponent.cs index 3904a3bdf7c..2e8be848224 100644 --- a/Content.Server/Power/Generator/ChemicalFuelGeneratorDirectSourceComponent.cs +++ b/Content.Server/Power/Generator/ChemicalFuelGeneratorDirectSourceComponent.cs @@ -4,7 +4,7 @@ /// This is used for stuff that can directly be shoved into a generator. /// [RegisterComponent, Access(typeof(GeneratorSystem))] -public sealed class ChemicalFuelGeneratorDirectSourceComponent : Component +public sealed partial class ChemicalFuelGeneratorDirectSourceComponent : Component { /// /// The solution to pull fuel material from. diff --git a/Content.Server/Power/Generator/GasPowerReceiverComponent.cs b/Content.Server/Power/Generator/GasPowerReceiverComponent.cs index 2eede9f243f..4d26f28185c 100644 --- a/Content.Server/Power/Generator/GasPowerReceiverComponent.cs +++ b/Content.Server/Power/Generator/GasPowerReceiverComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Power.Generator; /// This is used for providing gas power to machinery. /// [RegisterComponent, Access(typeof(GasPowerReceiverSystem))] -public sealed class GasPowerReceiverComponent : Component +public sealed partial class GasPowerReceiverComponent : Component { /// /// Past this temperature we assume we're in reaction mass mode and not magic mode. diff --git a/Content.Server/Power/Generator/GeneratorExhaustGasSystem.cs b/Content.Server/Power/Generator/GeneratorExhaustGasSystem.cs new file mode 100644 index 00000000000..cd85e67221c --- /dev/null +++ b/Content.Server/Power/Generator/GeneratorExhaustGasSystem.cs @@ -0,0 +1,28 @@ +using Content.Server.Atmos; +using Content.Server.Atmos.EntitySystems; +using Content.Shared.Power.Generator; + +namespace Content.Server.Power.Generator; + +/// +/// +public sealed class GeneratorExhaustGasSystem : EntitySystem +{ + [Dependency] private readonly AtmosphereSystem _atmosphere = default!; + + public override void Initialize() + { + SubscribeLocalEvent(FuelUsed); + } + + private void FuelUsed(EntityUid uid, GeneratorExhaustGasComponent component, GeneratorUseFuel args) + { + var exhaustMixture = new GasMixture(); + exhaustMixture.SetMoles(component.GasType, args.FuelUsed * component.MoleRatio); + exhaustMixture.Temperature = component.Temperature; + + var environment = _atmosphere.GetContainingMixture(uid, false, true); + if (environment != null) + _atmosphere.Merge(environment, exhaustMixture); + } +} diff --git a/Content.Server/Power/Generator/GeneratorSystem.cs b/Content.Server/Power/Generator/GeneratorSystem.cs index c34922e5f42..591fd7f300b 100644 --- a/Content.Server/Power/Generator/GeneratorSystem.cs +++ b/Content.Server/Power/Generator/GeneratorSystem.cs @@ -1,22 +1,29 @@ -using Content.Server.Chemistry.Components.SolutionManager; +using Content.Server.Audio; +using Content.Server.Chemistry.EntitySystems; +using Content.Server.Fluids.EntitySystems; +using Content.Server.Materials; using Content.Server.Popups; using Content.Server.Power.Components; -using Content.Shared.Chemistry.Components; -using Content.Shared.Interaction; -using Content.Shared.Materials; +using Content.Server.Power.EntitySystems; +using Content.Shared.FixedPoint; +using Content.Shared.Popups; using Content.Shared.Power.Generator; -using Content.Shared.Stacks; using Robust.Server.GameObjects; namespace Content.Server.Power.Generator; /// +/// +/// +/// public sealed class GeneratorSystem : SharedGeneratorSystem { + [Dependency] private readonly AppearanceSystem _appearance = default!; + [Dependency] private readonly AmbientSoundSystem _ambientSound = default!; + [Dependency] private readonly MaterialStorageSystem _materialStorage = default!; + [Dependency] private readonly SolutionContainerSystem _solutionContainer = default!; [Dependency] private readonly PopupSystem _popup = default!; - [Dependency] private readonly SharedStackSystem _stack = default!; - [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; - + [Dependency] private readonly PuddleSystem _puddle = default!; private EntityQuery _upgradeQuery; @@ -24,100 +31,239 @@ public override void Initialize() { _upgradeQuery = GetEntityQuery(); - SubscribeLocalEvent(OnSolidFuelAdapterInteractUsing); - SubscribeLocalEvent(OnChemicalFuelAdapterInteractUsing); - SubscribeLocalEvent(OnTargetPowerSet); + UpdatesBefore.Add(typeof(PowerNetSystem)); + + SubscribeLocalEvent(OnTargetPowerSet); + SubscribeLocalEvent(OnEjectFuel); + SubscribeLocalEvent(OnAnchorStateChanged); + SubscribeLocalEvent(SolidGetFuel); + SubscribeLocalEvent(SolidUseFuel); + SubscribeLocalEvent(SolidEmpty); + SubscribeLocalEvent(ChemicalGetFuel); + SubscribeLocalEvent(ChemicalUseFuel); + SubscribeLocalEvent(ChemicalGetClogged); + SubscribeLocalEvent(ChemicalEmpty); } - private void OnChemicalFuelAdapterInteractUsing(EntityUid uid, ChemicalFuelGeneratorAdapterComponent component, InteractUsingEvent args) + private void OnAnchorStateChanged(EntityUid uid, FuelGeneratorComponent component, ref AnchorStateChangedEvent args) { - if (args.Handled) + // Turn off generator if unanchored while running. + + if (!component.On) return; - if (!TryComp(args.Used, out var solutions) || - !TryComp(uid, out var generator)) + SetFuelGeneratorOn(uid, false, component); + } + + private void OnEjectFuel(EntityUid uid, FuelGeneratorComponent component, PortableGeneratorEjectFuelMessage args) + { + EmptyGenerator(uid); + } + + private void SolidEmpty(EntityUid uid, SolidFuelGeneratorAdapterComponent component, GeneratorEmpty args) + { + _materialStorage.EjectAllMaterial(uid); + } + + private void ChemicalEmpty(EntityUid uid, ChemicalFuelGeneratorAdapterComponent component, GeneratorEmpty args) + { + if (!_solutionContainer.TryGetSolution(uid, component.Solution, out var solution)) return; - if (!(component.Whitelist?.IsValid(args.Used) ?? true)) + var spillSolution = _solutionContainer.SplitSolution(uid, solution, solution.Volume); + _puddle.TrySpillAt(uid, spillSolution, out _); + } + + private void ChemicalGetClogged(EntityUid uid, ChemicalFuelGeneratorAdapterComponent component, ref GeneratorGetCloggedEvent args) + { + if (!_solutionContainer.TryGetSolution(uid, component.Solution, out var solution)) return; - if (TryComp(args.Used, out var source)) + foreach (var reagentQuantity in solution) { - if (!solutions.Solutions.ContainsKey(source.Solution)) + if (reagentQuantity.Reagent.Prototype != component.Reagent) { - Log.Error($"Couldn't get solution {source.Solution} on {ToPrettyString(args.Used)}"); + args.Clogged = true; return; } - - var solution = solutions.Solutions[source.Solution]; - generator.RemainingFuel += ReagentsToFuel(component, solution); - solution.RemoveAllSolution(); - QueueDel(args.Used); } } - private float ReagentsToFuel(ChemicalFuelGeneratorAdapterComponent component, Solution solution) + private void ChemicalUseFuel(EntityUid uid, ChemicalFuelGeneratorAdapterComponent component, GeneratorUseFuel args) { - var total = 0.0f; - foreach (var reagent in solution.Contents) - { - if (!component.ChemConversionFactors.ContainsKey(reagent.ReagentId)) - continue; + if (!_solutionContainer.TryGetSolution(uid, component.Solution, out var solution)) + return; - total += reagent.Quantity.Float() * component.ChemConversionFactors[reagent.ReagentId]; - } + var availableReagent = solution.GetTotalPrototypeQuantity(component.Reagent).Value; + var toRemove = RemoveFractionalFuel( + ref component.FractionalReagent, + args.FuelUsed, + component.Multiplier * FixedPoint2.Epsilon.Float(), + availableReagent); - return total; + solution.RemoveReagent(component.Reagent, FixedPoint2.FromCents(toRemove)); } - private void OnTargetPowerSet(EntityUid uid, FuelGeneratorComponent component, SetTargetPowerMessage args) + private void ChemicalGetFuel( + EntityUid uid, + ChemicalFuelGeneratorAdapterComponent component, + ref GeneratorGetFuelEvent args) { - component.TargetPower = Math.Clamp(args.TargetPower, 0, component.MaxTargetPower / 1000) * 1000; + if (!_solutionContainer.TryGetSolution(uid, component.Solution, out var solution)) + return; + + var availableReagent = solution.GetTotalPrototypeQuantity(component.Reagent).Float(); + var reagent = component.FractionalReagent * FixedPoint2.Epsilon.Float() + availableReagent; + args.Fuel = reagent * component.Multiplier; } - private void OnSolidFuelAdapterInteractUsing(EntityUid uid, SolidFuelGeneratorAdapterComponent component, InteractUsingEvent args) + private void SolidUseFuel(EntityUid uid, SolidFuelGeneratorAdapterComponent component, GeneratorUseFuel args) { - if (args.Handled) - return; + var availableMaterial = _materialStorage.GetMaterialAmount(uid, component.FuelMaterial); + var toRemove = RemoveFractionalFuel( + ref component.FractionalMaterial, + args.FuelUsed, + component.Multiplier, + availableMaterial); + + _materialStorage.TryChangeMaterialAmount(uid, component.FuelMaterial, -toRemove); + } + + private int RemoveFractionalFuel(ref float fractional, float fuelUsed, float multiplier, int availableQuantity) + { + fractional -= fuelUsed / multiplier; + if (fractional >= 0) + return 0; + + // worst (unrealistic) case: -5.5 -> -6.0 -> 6 + var toRemove = -(int) MathF.Floor(fractional); + toRemove = Math.Min(availableQuantity, toRemove); + + fractional = Math.Max(0, fractional + toRemove); + return toRemove; + } + + private void SolidGetFuel( + EntityUid uid, + SolidFuelGeneratorAdapterComponent component, + ref GeneratorGetFuelEvent args) + { + var material = component.FractionalMaterial + _materialStorage.GetMaterialAmount(uid, component.FuelMaterial); + args.Fuel = material * component.Multiplier; + } - if (!TryComp(args.Used, out var mat) || - !HasComp(args.Used) || - !TryComp(uid, out var generator)) + private void OnTargetPowerSet(EntityUid uid, FuelGeneratorComponent component, + PortableGeneratorSetTargetPowerMessage args) + { + component.TargetPower = Math.Clamp( + args.TargetPower, + component.MinTargetPower / 1000, + component.MaxTargetPower / 1000) * 1000; + } + + public void SetFuelGeneratorOn(EntityUid uid, bool on, FuelGeneratorComponent? generator = null) + { + if (!Resolve(uid, ref generator)) return; - if (!mat.MaterialComposition.ContainsKey(component.FuelMaterial)) + if (on && !Transform(uid).Anchored) + { + // Generator must be anchored to start. return; + } - _popup.PopupEntity(Loc.GetString("generator-insert-material", ("item", args.Used), ("generator", uid)), uid); - generator.RemainingFuel += _stack.GetCount(args.Used) * component.Multiplier; - QueueDel(args.Used); - args.Handled = true; + generator.On = on; + UpdateState(uid, generator); } public override void Update(float frameTime) { - var query = EntityQueryEnumerator(); + var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var gen, out var supplier, out var xform)) + while (query.MoveNext(out var uid, out var gen, out var supplier)) { - supplier.Enabled = gen.RemainingFuel > 0.0f && xform.Anchored; + if (!gen.On) + continue; + + var fuel = GetFuel(uid); + if (fuel <= 0) + { + SetFuelGeneratorOn(uid, false, gen); + continue; + } + + if (GetIsClogged(uid)) + { + _popup.PopupEntity(Loc.GetString("generator-clogged", ("generator", uid)), uid, PopupType.SmallCaution); + SetFuelGeneratorOn(uid, false, gen); + continue; + } + + supplier.Enabled = true; var upgradeMultiplier = _upgradeQuery.CompOrNull(uid)?.ActualScalar ?? 1f; supplier.MaxSupply = gen.TargetPower * upgradeMultiplier; var eff = 1 / CalcFuelEfficiency(gen.TargetPower, gen.OptimalPower, gen); - - gen.RemainingFuel = MathF.Max(gen.RemainingFuel - (gen.OptimalBurnRate * frameTime * eff), 0.0f); - UpdateUi(uid, gen); + var consumption = gen.OptimalBurnRate * frameTime * eff; + RaiseLocalEvent(uid, new GeneratorUseFuel(consumption)); } } - private void UpdateUi(EntityUid uid, FuelGeneratorComponent comp) + public float GetFuel(EntityUid generator) { - if (!_uiSystem.IsUiOpen(uid, GeneratorComponentUiKey.Key)) - return; + GeneratorGetFuelEvent getFuelEvent = default; + RaiseLocalEvent(generator, ref getFuelEvent); + return getFuelEvent.Fuel; + } + + public bool GetIsClogged(EntityUid generator) + { + GeneratorGetCloggedEvent getCloggedEvent = default; + RaiseLocalEvent(generator, ref getCloggedEvent); + return getCloggedEvent.Clogged; + } + + public void EmptyGenerator(EntityUid generator) + { + RaiseLocalEvent(generator, GeneratorEmpty.Instance); + } - _uiSystem.TrySetUiState(uid, GeneratorComponentUiKey.Key, new SolidFuelGeneratorComponentBuiState(comp)); + private void UpdateState(EntityUid generator, FuelGeneratorComponent component) + { + _appearance.SetData(generator, GeneratorVisuals.Running, component.On); + _ambientSound.SetAmbience(generator, component.On); + if (!component.On) + Comp(generator).Enabled = false; } } + +/// +/// Raised by to calculate the amount of remaining fuel in the generator. +/// +[ByRefEvent] +public record struct GeneratorGetFuelEvent(float Fuel); + +/// +/// Raised by to check if a generator is "clogged". +/// For example there's bad chemicals in the fuel tank that prevent starting it. +/// +[ByRefEvent] +public record struct GeneratorGetCloggedEvent(bool Clogged); + +/// +/// Raised by to draw fuel from its adapters. +/// +/// +/// Implementations are expected to round fuel consumption up if the used fuel value is too small (e.g. reagent units). +/// +public record struct GeneratorUseFuel(float FuelUsed); + +/// +/// Raised by to empty a generator of its fuel contents. +/// +public sealed class GeneratorEmpty +{ + public static readonly GeneratorEmpty Instance = new(); +} diff --git a/Content.Server/Power/Generator/PortableGeneratorSystem.cs b/Content.Server/Power/Generator/PortableGeneratorSystem.cs new file mode 100644 index 00000000000..416f509978a --- /dev/null +++ b/Content.Server/Power/Generator/PortableGeneratorSystem.cs @@ -0,0 +1,190 @@ +using Content.Server.DoAfter; +using Content.Server.Popups; +using Content.Shared.DoAfter; +using Content.Shared.Power.Generator; +using Content.Shared.Verbs; +using Robust.Server.GameObjects; +using Robust.Shared.Player; +using Robust.Shared.Random; +using Robust.Shared.Utility; + +namespace Content.Server.Power.Generator; + +/// +/// Implements logic for portable generators (the PACMAN). Primarily UI & power switching behavior. +/// +/// +public sealed class PortableGeneratorSystem : SharedPortableGeneratorSystem +{ + [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; + [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly DoAfterSystem _doAfter = default!; + [Dependency] private readonly AudioSystem _audio = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly GeneratorSystem _generator = default!; + [Dependency] private readonly PowerSwitchableGeneratorSystem _switchableGenerator = default!; + + public override void Initialize() + { + base.Initialize(); + + // Update UI after main system runs. + UpdatesAfter.Add(typeof(GeneratorSystem)); + + SubscribeLocalEvent>(GetAlternativeVerb); + SubscribeLocalEvent(GeneratorTugged); + SubscribeLocalEvent(GeneratorStartMessage); + SubscribeLocalEvent(GeneratorStopMessage); + SubscribeLocalEvent(GeneratorSwitchOutputMessage); + } + + private void GeneratorSwitchOutputMessage(EntityUid uid, PortableGeneratorComponent component, PortableGeneratorSwitchOutputMessage args) + { + if (args.Session.AttachedEntity == null) + return; + + var fuelGenerator = Comp(uid); + if (fuelGenerator.On) + return; + + _switchableGenerator.ToggleActiveOutput(uid, args.Session.AttachedEntity.Value); + } + + private void GeneratorStopMessage(EntityUid uid, PortableGeneratorComponent component, PortableGeneratorStopMessage args) + { + if (args.Session.AttachedEntity == null) + return; + + StopGenerator(uid, component, args.Session.AttachedEntity.Value); + } + + private void GeneratorStartMessage(EntityUid uid, PortableGeneratorComponent component, PortableGeneratorStartMessage args) + { + if (args.Session.AttachedEntity == null) + return; + + StartGenerator(uid, component, args.Session.AttachedEntity.Value); + } + + private void StartGenerator(EntityUid uid, PortableGeneratorComponent component, EntityUid user) + { + var fuelGenerator = Comp(uid); + if (fuelGenerator.On || !Transform(uid).Anchored) + return; + + _doAfter.TryStartDoAfter(new DoAfterArgs(EntityManager, user, component.StartTime, new GeneratorStartedEvent(), uid, uid) + { + BreakOnDamage = true, BreakOnTargetMove = true, BreakOnUserMove = true, RequireCanInteract = true, + NeedHand = true + }); + } + + private void StopGenerator(EntityUid uid, PortableGeneratorComponent component, EntityUid user) + { + _generator.SetFuelGeneratorOn(uid, false); + } + + private void GeneratorTugged(EntityUid uid, PortableGeneratorComponent component, GeneratorStartedEvent args) + { + if (args.Cancelled || !Transform(uid).Anchored) + return; + + var fuelGenerator = Comp(uid); + + var empty = _generator.GetFuel(uid) == 0; + var clogged = _generator.GetIsClogged(uid); + + var sound = empty ? component.StartSoundEmpty : component.StartSound; + _audio.Play(sound, Filter.Pvs(uid), uid, true); + + if (!clogged && !empty && _random.Prob(component.StartChance)) + { + _popup.PopupEntity(Loc.GetString("portable-generator-start-success"), uid, args.User); + _generator.SetFuelGeneratorOn(uid, true, fuelGenerator); + } + else + { + _popup.PopupEntity(Loc.GetString("portable-generator-start-fail"), uid, args.User); + // Try again bozo + args.Repeat = true; + } + } + + private void GetAlternativeVerb(EntityUid uid, PortableGeneratorComponent component, + GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract) + return; + + var fuelGenerator = Comp(uid); + if (fuelGenerator.On) + { + AlternativeVerb verb = new() + { + Act = () => + { + StopGenerator(uid, component, args.User); + }, + Disabled = false, + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/zap.svg.192dpi.png")), + Text = Loc.GetString("portable-generator-verb-stop"), + }; + + args.Verbs.Add(verb); + } + else + { + // ReSharper disable once CompareOfFloatsByEqualityOperator + var reliable = component.StartChance == 1; + + AlternativeVerb verb = new() + { + Act = () => + { + StartGenerator(uid, component, args.User); + }, + + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/zap.svg.192dpi.png")), + Text = Loc.GetString("portable-generator-verb-start"), + }; + + if (!Transform(uid).Anchored) + { + verb.Disabled = true; + verb.Message = Loc.GetString("portable-generator-verb-start-msg-unanchored"); + } + else + { + verb.Message = Loc.GetString(reliable + ? "portable-generator-verb-start-msg-reliable" + : "portable-generator-verb-start-msg-unreliable"); + } + + args.Verbs.Add(verb); + } + } + + public override void Update(float frameTime) + { + var query = EntityQueryEnumerator(); + + while (query.MoveNext(out var uid, out var portGen, out var fuelGen, out var xform)) + { + UpdateUI(uid, portGen, fuelGen); + } + } + + private void UpdateUI(EntityUid uid, PortableGeneratorComponent comp, FuelGeneratorComponent fuelComp) + { + if (!_uiSystem.IsUiOpen(uid, GeneratorComponentUiKey.Key)) + return; + + var fuel = _generator.GetFuel(uid); + var clogged = _generator.GetIsClogged(uid); + + _uiSystem.TrySetUiState( + uid, + GeneratorComponentUiKey.Key, + new PortableGeneratorComponentBuiState(fuelComp, fuel, clogged)); + } +} diff --git a/Content.Server/Power/Generator/PowerSwitchableGeneratorSystem.cs b/Content.Server/Power/Generator/PowerSwitchableGeneratorSystem.cs new file mode 100644 index 00000000000..b81d77ea9f1 --- /dev/null +++ b/Content.Server/Power/Generator/PowerSwitchableGeneratorSystem.cs @@ -0,0 +1,111 @@ +using Content.Server.NodeContainer; +using Content.Server.NodeContainer.EntitySystems; +using Content.Server.Popups; +using Content.Server.Power.Components; +using Content.Server.Power.Nodes; +using Content.Shared.Power.Generator; +using Content.Shared.Verbs; +using Robust.Server.GameObjects; +using Robust.Shared.Player; +using Robust.Shared.Utility; + +namespace Content.Server.Power.Generator; + +/// +/// Implements power-switchable generators. +/// +/// +/// +/// +public sealed class PowerSwitchableGeneratorSystem : SharedPowerSwitchableGeneratorSystem +{ + [Dependency] private readonly NodeGroupSystem _nodeGroup = default!; + [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly AudioSystem _audio = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent>(GetInteractionVerbs); + } + + private void GetInteractionVerbs( + EntityUid uid, + PowerSwitchableGeneratorComponent component, + GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract) + return; + + var isCurrentlyHV = component.ActiveOutput == PowerSwitchableGeneratorOutput.HV; + var msg = isCurrentlyHV ? "power-switchable-generator-verb-mv" : "power-switchable-generator-verb-hv"; + + var isOn = TryComp(uid, out FuelGeneratorComponent? fuelGenerator) && fuelGenerator.On; + + InteractionVerb verb = new() + { + Act = () => + { + + var verbIsOn = TryComp(uid, out FuelGeneratorComponent? verbFuelGenerator) && verbFuelGenerator.On; + if (verbIsOn) + return; + + ToggleActiveOutput(uid, args.User, component); + }, + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/zap.svg.192dpi.png")), + Text = Loc.GetString(msg), + }; + + if (isOn) + { + verb.Message = Loc.GetString("power-switchable-generator-verb-disable-on"); + verb.Disabled = true; + } + + args.Verbs.Add(verb); + } + + public void ToggleActiveOutput(EntityUid uid, EntityUid user, PowerSwitchableGeneratorComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; + + var supplier = Comp(uid); + var nodeContainer = Comp(uid); + var outputMV = (CableDeviceNode) nodeContainer.Nodes[component.NodeOutputMV]; + var outputHV = (CableDeviceNode) nodeContainer.Nodes[component.NodeOutputHV]; + + if (component.ActiveOutput == PowerSwitchableGeneratorOutput.HV) + { + component.ActiveOutput = PowerSwitchableGeneratorOutput.MV; + supplier.Voltage = Voltage.Medium; + + // Switching around the voltage on the power supplier is "enough", + // but we also want to disconnect the cable nodes so it doesn't show up in power monitors etc. + outputMV.Enabled = true; + outputHV.Enabled = false; + } + else + { + component.ActiveOutput = PowerSwitchableGeneratorOutput.HV; + supplier.Voltage = Voltage.High; + + outputMV.Enabled = false; + outputHV.Enabled = true; + } + + _popup.PopupEntity( + Loc.GetString("power-switchable-generator-switched-output"), + uid, + user); + + _audio.Play(component.SwitchSound, Filter.Pvs(uid), uid, true); + + Dirty(uid, component); + + _nodeGroup.QueueReflood(outputMV); + _nodeGroup.QueueReflood(outputHV); + } +} diff --git a/Content.Server/Power/Generator/SolidFuelGeneratorAdapterComponent.cs b/Content.Server/Power/Generator/SolidFuelGeneratorAdapterComponent.cs index 70e3d164108..61c69f2a235 100644 --- a/Content.Server/Power/Generator/SolidFuelGeneratorAdapterComponent.cs +++ b/Content.Server/Power/Generator/SolidFuelGeneratorAdapterComponent.cs @@ -1,23 +1,40 @@ using Content.Shared.Materials; +using Content.Shared.Power.Generator; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.Power.Generator; /// -/// This is used for allowing you to insert fuel into gens. +/// Fuels a through solid materials. /// +/// +/// +/// Must be accompanied with a to store the actual material and handle insertion logic. +/// You should set a whitelist there for the fuel material. +/// +/// +/// The component itself stores a "fractional" fuel value to allow stack materials to be gradually consumed. +/// +/// [RegisterComponent, Access(typeof(GeneratorSystem))] -public sealed class SolidFuelGeneratorAdapterComponent : Component +public sealed partial class SolidFuelGeneratorAdapterComponent : Component { /// /// The material to accept as fuel. /// - [DataField("fuelMaterial", customTypeSerializer: typeof(PrototypeIdSerializer)), ViewVariables(VVAccess.ReadWrite)] + [DataField("fuelMaterial", customTypeSerializer: typeof(PrototypeIdSerializer))] + [ViewVariables(VVAccess.ReadWrite)] public string FuelMaterial = "Plasma"; /// - /// How much fuel that material should count for. + /// How much material (can be fractional) is left in the generator. + /// + [DataField("fractionalMaterial"), ViewVariables(VVAccess.ReadWrite)] + public float FractionalMaterial; + + /// + /// Value to multiply material amount by to get fuel amount. /// [DataField("multiplier"), ViewVariables(VVAccess.ReadWrite)] - public float Multiplier = 1.0f; + public float Multiplier; } diff --git a/Content.Server/Power/NodeGroups/ApcNet.cs b/Content.Server/Power/NodeGroups/ApcNet.cs index a3adf2a8204..32bb4e33b16 100644 --- a/Content.Server/Power/NodeGroups/ApcNet.cs +++ b/Content.Server/Power/NodeGroups/ApcNet.cs @@ -3,9 +3,7 @@ using Content.Server.NodeContainer.Nodes; using Content.Server.Power.Components; using Content.Server.Power.EntitySystems; -using Content.Server.Power.Pow3r; using JetBrains.Annotations; -using Robust.Shared.Map; namespace Content.Server.Power.NodeGroups { @@ -24,13 +22,12 @@ public interface IApcNet : IBasePowerNet [NodeGroup(NodeGroupID.Apc)] [UsedImplicitly] - public sealed class ApcNet : BaseNetConnectorNodeGroup, IApcNet + public sealed partial class ApcNet : BasePowerNet, IApcNet { private PowerNetSystem? _powerNetSystem; [ViewVariables] public readonly List Apcs = new(); [ViewVariables] public readonly List Providers = new(); - [ViewVariables] public readonly List Consumers = new(); //Debug property [ViewVariables] private int TotalReceivers => Providers.Sum(provider => provider.LinkedReceivers.Count); @@ -39,9 +36,6 @@ public sealed class ApcNet : BaseNetConnectorNodeGroup, IApcNet private IEnumerable AllReceivers => Providers.SelectMany(provider => provider.LinkedReceivers); - [ViewVariables] - public PowerState.Network NetworkNode { get; } = new(); - public override void Initialize(Node sourceNode, IEntityManager entMan) { base.Initialize(sourceNode, entMan); @@ -89,21 +83,7 @@ public void RemovePowerProvider(ApcPowerProviderComponent provider) QueueNetworkReconnect(); } - public void AddConsumer(PowerConsumerComponent consumer) - { - consumer.NetworkLoad.LinkedNetwork = default; - Consumers.Add(consumer); - QueueNetworkReconnect(); - } - - public void RemoveConsumer(PowerConsumerComponent consumer) - { - consumer.NetworkLoad.LinkedNetwork = default; - Consumers.Remove(consumer); - QueueNetworkReconnect(); - } - - public void QueueNetworkReconnect() + public override void QueueNetworkReconnect() { _powerNetSystem?.QueueReconnectApcNet(this); } diff --git a/Content.Server/Power/NodeGroups/BasePowerNet.cs b/Content.Server/Power/NodeGroups/BasePowerNet.cs new file mode 100644 index 00000000000..295740d29ea --- /dev/null +++ b/Content.Server/Power/NodeGroups/BasePowerNet.cs @@ -0,0 +1,51 @@ +using Content.Server.Power.Components; +using Content.Server.Power.Pow3r; +using Robust.Shared.Utility; + +namespace Content.Server.Power.NodeGroups; + +public abstract class BasePowerNet : BaseNetConnectorNodeGroup, IBasePowerNet + where TNetType : IBasePowerNet +{ + [ViewVariables] public readonly List Consumers = new(); + [ViewVariables] public readonly List Suppliers = new(); + + [ViewVariables] + public PowerState.Network NetworkNode { get; } = new(); + + public void AddConsumer(PowerConsumerComponent consumer) + { + DebugTools.Assert(consumer.NetworkLoad.LinkedNetwork == default); + consumer.NetworkLoad.LinkedNetwork = default; + Consumers.Add(consumer); + QueueNetworkReconnect(); + } + + public void RemoveConsumer(PowerConsumerComponent consumer) + { + // Linked network can be default if it was re-connected twice in one tick. + DebugTools.Assert(consumer.NetworkLoad.LinkedNetwork == default || consumer.NetworkLoad.LinkedNetwork == NetworkNode.Id); + consumer.NetworkLoad.LinkedNetwork = default; + Consumers.Remove(consumer); + QueueNetworkReconnect(); + } + + public void AddSupplier(PowerSupplierComponent supplier) + { + DebugTools.Assert(supplier.NetworkSupply.LinkedNetwork == default); + supplier.NetworkSupply.LinkedNetwork = default; + Suppliers.Add(supplier); + QueueNetworkReconnect(); + } + + public void RemoveSupplier(PowerSupplierComponent supplier) + { + // Linked network can be default if it was re-connected twice in one tick. + DebugTools.Assert(supplier.NetworkSupply.LinkedNetwork == default || supplier.NetworkSupply.LinkedNetwork == NetworkNode.Id); + supplier.NetworkSupply.LinkedNetwork = default; + Suppliers.Remove(supplier); + QueueNetworkReconnect(); + } + + public abstract void QueueNetworkReconnect(); +} diff --git a/Content.Server/Power/NodeGroups/IBasePowerNet.cs b/Content.Server/Power/NodeGroups/IBasePowerNet.cs index 626b02c6931..5e9076f98ec 100644 --- a/Content.Server/Power/NodeGroups/IBasePowerNet.cs +++ b/Content.Server/Power/NodeGroups/IBasePowerNet.cs @@ -9,6 +9,10 @@ public interface IBasePowerNet void RemoveConsumer(PowerConsumerComponent consumer); + void AddSupplier(PowerSupplierComponent supplier); + + void RemoveSupplier(PowerSupplierComponent supplier); + PowerState.Network NetworkNode { get; } } } diff --git a/Content.Server/Power/NodeGroups/PowerNet.cs b/Content.Server/Power/NodeGroups/PowerNet.cs index a266c984994..0bbf11db723 100644 --- a/Content.Server/Power/NodeGroups/PowerNet.cs +++ b/Content.Server/Power/NodeGroups/PowerNet.cs @@ -2,7 +2,6 @@ using Content.Server.NodeContainer.Nodes; using Content.Server.Power.Components; using Content.Server.Power.EntitySystems; -using Content.Server.Power.Pow3r; using JetBrains.Annotations; using Robust.Shared.Utility; using System.Linq; @@ -11,10 +10,6 @@ namespace Content.Server.Power.NodeGroups { public interface IPowerNet : IBasePowerNet { - void AddSupplier(PowerSupplierComponent supplier); - - void RemoveSupplier(PowerSupplierComponent supplier); - void AddDischarger(BatteryDischargerComponent discharger); void RemoveDischarger(BatteryDischargerComponent discharger); @@ -26,19 +21,14 @@ public interface IPowerNet : IBasePowerNet [NodeGroup(NodeGroupID.HVPower, NodeGroupID.MVPower)] [UsedImplicitly] - public sealed class PowerNet : BaseNetConnectorNodeGroup, IPowerNet + public sealed partial class PowerNet : BasePowerNet, IPowerNet { private PowerNetSystem? _powerNetSystem; private IEntityManager? _entMan; - [ViewVariables] public readonly List Suppliers = new(); - [ViewVariables] public readonly List Consumers = new(); [ViewVariables] public readonly List Chargers = new(); [ViewVariables] public readonly List Dischargers = new(); - [ViewVariables] - public PowerState.Network NetworkNode { get; } = new(); - public override void Initialize(Node sourceNode, IEntityManager entMan) { base.Initialize(sourceNode, entMan); @@ -61,38 +51,6 @@ protected override void SetNetConnectorNet(IBaseNetConnectorComponent netConnectorComponent.Net = this; } - public void AddSupplier(PowerSupplierComponent supplier) - { - DebugTools.Assert(supplier.NetworkSupply.LinkedNetwork == default); - supplier.NetworkSupply.LinkedNetwork = default; - Suppliers.Add(supplier); - _powerNetSystem?.QueueReconnectPowerNet(this); - } - - public void RemoveSupplier(PowerSupplierComponent supplier) - { - DebugTools.Assert(supplier.NetworkSupply.LinkedNetwork == NetworkNode.Id); - supplier.NetworkSupply.LinkedNetwork = default; - Suppliers.Remove(supplier); - _powerNetSystem?.QueueReconnectPowerNet(this); - } - - public void AddConsumer(PowerConsumerComponent consumer) - { - DebugTools.Assert(consumer.NetworkLoad.LinkedNetwork == default); - consumer.NetworkLoad.LinkedNetwork = default; - Consumers.Add(consumer); - _powerNetSystem?.QueueReconnectPowerNet(this); - } - - public void RemoveConsumer(PowerConsumerComponent consumer) - { - DebugTools.Assert(consumer.NetworkLoad.LinkedNetwork == NetworkNode.Id); - consumer.NetworkLoad.LinkedNetwork = default; - Consumers.Remove(consumer); - _powerNetSystem?.QueueReconnectPowerNet(this); - } - public void AddDischarger(BatteryDischargerComponent discharger) { if (_entMan == null) @@ -102,7 +60,7 @@ public void AddDischarger(BatteryDischargerComponent discharger) DebugTools.Assert(battery.NetworkBattery.LinkedNetworkDischarging == default); battery.NetworkBattery.LinkedNetworkDischarging = default; Dischargers.Add(discharger); - _powerNetSystem?.QueueReconnectPowerNet(this); + QueueNetworkReconnect(); } public void RemoveDischarger(BatteryDischargerComponent discharger) @@ -113,12 +71,13 @@ public void RemoveDischarger(BatteryDischargerComponent discharger) // Can be missing if the entity is being deleted, not a big deal. if (_entMan.TryGetComponent(discharger.Owner, out PowerNetworkBatteryComponent? battery)) { - DebugTools.Assert(battery.NetworkBattery.LinkedNetworkDischarging == NetworkNode.Id); + // Linked network can be default if it was re-connected twice in one tick. + DebugTools.Assert(battery.NetworkBattery.LinkedNetworkDischarging == default || battery.NetworkBattery.LinkedNetworkDischarging == NetworkNode.Id); battery.NetworkBattery.LinkedNetworkDischarging = default; } Dischargers.Remove(discharger); - _powerNetSystem?.QueueReconnectPowerNet(this); + QueueNetworkReconnect(); } public void AddCharger(BatteryChargerComponent charger) @@ -130,7 +89,7 @@ public void AddCharger(BatteryChargerComponent charger) DebugTools.Assert(battery.NetworkBattery.LinkedNetworkCharging == default); battery.NetworkBattery.LinkedNetworkCharging = default; Chargers.Add(charger); - _powerNetSystem?.QueueReconnectPowerNet(this); + QueueNetworkReconnect(); } public void RemoveCharger(BatteryChargerComponent charger) @@ -141,11 +100,17 @@ public void RemoveCharger(BatteryChargerComponent charger) // Can be missing if the entity is being deleted, not a big deal. if (_entMan.TryGetComponent(charger.Owner, out PowerNetworkBatteryComponent? battery)) { - DebugTools.Assert(battery.NetworkBattery.LinkedNetworkCharging == NetworkNode.Id); + // Linked network can be default if it was re-connected twice in one tick. + DebugTools.Assert(battery.NetworkBattery.LinkedNetworkCharging == default || battery.NetworkBattery.LinkedNetworkCharging == NetworkNode.Id); battery.NetworkBattery.LinkedNetworkCharging = default; } Chargers.Remove(charger); + QueueNetworkReconnect(); + } + + public override void QueueNetworkReconnect() + { _powerNetSystem?.QueueReconnectPowerNet(this); } diff --git a/Content.Server/Power/Nodes/CableDeviceNode.cs b/Content.Server/Power/Nodes/CableDeviceNode.cs index d823247f39f..d7914f2b2ea 100644 --- a/Content.Server/Power/Nodes/CableDeviceNode.cs +++ b/Content.Server/Power/Nodes/CableDeviceNode.cs @@ -1,6 +1,6 @@ using Content.Server.NodeContainer; +using Content.Server.NodeContainer.EntitySystems; using Content.Server.NodeContainer.Nodes; -using Robust.Shared.Map; using Robust.Shared.Map.Components; namespace Content.Server.Power.Nodes @@ -10,8 +10,26 @@ namespace Content.Server.Power.Nodes /// [DataDefinition] [Virtual] - public class CableDeviceNode : Node + public partial class CableDeviceNode : Node { + /// + /// If disabled, this cable device will never connect. + /// + /// + /// If you change this, + /// you must manually call to update the node connections. + /// + [DataField("enabled")] + public bool Enabled { get; set; } = true; + + public override bool Connectable(IEntityManager entMan, TransformComponent? xform = null) + { + if (!Enabled) + return false; + + return base.Connectable(entMan, xform); + } + public override IEnumerable GetReachableNodes(TransformComponent xform, EntityQuery nodeQuery, EntityQuery xformQuery, diff --git a/Content.Server/Power/Nodes/CableNode.cs b/Content.Server/Power/Nodes/CableNode.cs index 16968ed5a71..4f2dbd42dff 100644 --- a/Content.Server/Power/Nodes/CableNode.cs +++ b/Content.Server/Power/Nodes/CableNode.cs @@ -6,7 +6,7 @@ namespace Content.Server.Power.Nodes { [DataDefinition] - public sealed class CableNode : Node + public sealed partial class CableNode : Node { public override IEnumerable GetReachableNodes(TransformComponent xform, EntityQuery nodeQuery, diff --git a/Content.Server/Power/Nodes/CableTerminalNode.cs b/Content.Server/Power/Nodes/CableTerminalNode.cs index de56810a137..bb44e862567 100644 --- a/Content.Server/Power/Nodes/CableTerminalNode.cs +++ b/Content.Server/Power/Nodes/CableTerminalNode.cs @@ -6,7 +6,7 @@ namespace Content.Server.Power.Nodes { [DataDefinition] - public sealed class CableTerminalNode : CableDeviceNode + public sealed partial class CableTerminalNode : CableDeviceNode { public override IEnumerable GetReachableNodes(TransformComponent xform, EntityQuery nodeQuery, diff --git a/Content.Server/Power/Nodes/CableTerminalPortNode.cs b/Content.Server/Power/Nodes/CableTerminalPortNode.cs index 72baf124af2..bbce1aff744 100644 --- a/Content.Server/Power/Nodes/CableTerminalPortNode.cs +++ b/Content.Server/Power/Nodes/CableTerminalPortNode.cs @@ -6,7 +6,7 @@ namespace Content.Server.Power.Nodes { [DataDefinition] - public sealed class CableTerminalPortNode : Node + public sealed partial class CableTerminalPortNode : Node { public override IEnumerable GetReachableNodes(TransformComponent xform, EntityQuery nodeQuery, diff --git a/Content.Server/Power/PowerWireAction.cs b/Content.Server/Power/PowerWireAction.cs index a5925742e0d..785eac91dba 100644 --- a/Content.Server/Power/PowerWireAction.cs +++ b/Content.Server/Power/PowerWireAction.cs @@ -8,7 +8,7 @@ namespace Content.Server.Power; // Generic power wire action. Use on anything // that requires power. -public sealed class PowerWireAction : BaseWireAction +public sealed partial class PowerWireAction : BaseWireAction { public override Color Color { get; set; } = Color.Red; public override string Name { get; set; } = "wire-name-power"; diff --git a/Content.Server/Power/SMES/SmesComponent.cs b/Content.Server/Power/SMES/SmesComponent.cs index 29e1dbd7cbe..6a375d9092d 100644 --- a/Content.Server/Power/SMES/SmesComponent.cs +++ b/Content.Server/Power/SMES/SmesComponent.cs @@ -10,7 +10,7 @@ namespace Content.Server.Power.SMES; /// Code interfacing with the powernet is handled in and . /// [RegisterComponent, Access(typeof(SmesSystem))] -public sealed class SmesComponent : Component +public sealed partial class SmesComponent : Component { [ViewVariables] public ChargeState LastChargeState; diff --git a/Content.Server/Power/SMES/SmesSystem.cs b/Content.Server/Power/SMES/SmesSystem.cs index 7da8eb06881..ebd56ee3e1b 100644 --- a/Content.Server/Power/SMES/SmesSystem.cs +++ b/Content.Server/Power/SMES/SmesSystem.cs @@ -57,7 +57,7 @@ private void UpdateSmesState(EntityUid uid, SmesComponent smes) private int CalcChargeLevel(EntityUid uid, BatteryComponent? battery = null) { - if (!Resolve(uid, ref battery)) + if (!Resolve(uid, ref battery, false)) return 0; return ContentHelpers.RoundToLevels(battery.CurrentCharge, battery.MaxCharge, 6); @@ -65,7 +65,7 @@ private int CalcChargeLevel(EntityUid uid, BatteryComponent? battery = null) private ChargeState CalcChargeState(EntityUid uid, PowerNetworkBatteryComponent? netBattery = null) { - if (!Resolve(uid, ref netBattery)) + if (!Resolve(uid, ref netBattery, false)) return ChargeState.Still; return (netBattery.CurrentSupply - netBattery.CurrentReceiving) switch diff --git a/Content.Server/Power/SetBatteryPercentCommand.cs b/Content.Server/Power/SetBatteryPercentCommand.cs index 5fd39ceb67e..775ca412d3e 100644 --- a/Content.Server/Power/SetBatteryPercentCommand.cs +++ b/Content.Server/Power/SetBatteryPercentCommand.cs @@ -8,6 +8,8 @@ namespace Content.Server.Power [AdminCommand(AdminFlags.Debug)] public sealed class SetBatteryPercentCommand : IConsoleCommand { + [Dependency] private readonly IEntityManager _entManager = default!; + public string Command => "setbatterypercent"; public string Description => "Drains or recharges a battery by entity uid and percentage, i.e.: forall with Battery do setbatterypercent $ID 0"; public string Help => $"{Command} "; @@ -20,7 +22,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!EntityUid.TryParse(args[0], out var id)) + if (!NetEntity.TryParse(args[0], out var netEnt) || !_entManager.TryGetEntity(netEnt, out var id)) { shell.WriteLine($"{args[0]} is not a valid entity id."); return; @@ -32,9 +34,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - var entityManager = IoCManager.Resolve(); - - if (!entityManager.TryGetComponent(id, out var battery)) + if (!_entManager.TryGetComponent(id, out var battery)) { shell.WriteLine($"No battery found with id {id}."); return; diff --git a/Content.Server/PowerCell/PowerCellSystem.cs b/Content.Server/PowerCell/PowerCellSystem.cs index 0f0bf12022c..1cfb4d1d701 100644 --- a/Content.Server/PowerCell/PowerCellSystem.cs +++ b/Content.Server/PowerCell/PowerCellSystem.cs @@ -1,6 +1,7 @@ using Content.Server.Administration.Logs; using Content.Server.Chemistry.EntitySystems; using Content.Server.Explosion.EntitySystems; +using Content.Server.Emp; using Content.Server.Power.Components; using Content.Shared.Database; using Content.Shared.Examine; @@ -23,12 +24,9 @@ namespace Content.Server.PowerCell; /// public sealed partial class PowerCellSystem : SharedPowerCellSystem { - [Dependency] private readonly IAdminLogManager _adminLogger = default!; [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly ActivatableUISystem _activatable = default!; [Dependency] private readonly BatterySystem _battery = default!; - [Dependency] private readonly SolutionContainerSystem _solutionsSystem = default!; - [Dependency] private readonly ExplosionSystem _explosionSystem = default!; [Dependency] private readonly SharedContainerSystem _containerSystem = default!; [Dependency] private readonly ItemSlotsSystem _itemSlotsSystem = default!; [Dependency] private readonly SharedAppearanceSystem _sharedAppearanceSystem = default!; @@ -41,6 +39,7 @@ public override void Initialize() SubscribeLocalEvent(OnChargeChanged); SubscribeLocalEvent(OnCellExamined); + SubscribeLocalEvent(OnCellEmpAttempt); SubscribeLocalEvent(OnUnpaused); SubscribeLocalEvent(OnDrawChargeChanged); @@ -236,6 +235,14 @@ private void OnCellExamined(EntityUid uid, PowerCellComponent component, Examine OnBatteryExamined(uid, battery, args); } + private void OnCellEmpAttempt(EntityUid uid, PowerCellComponent component, EmpAttemptEvent args) + { + var parent = Transform(uid).ParentUid; + // relay the attempt event to the slot so it can cancel it + if (HasComp(parent)) + RaiseLocalEvent(parent, args); + } + private void OnCellSlotExamined(EntityUid uid, PowerCellSlotComponent component, ExaminedEvent args) { TryGetBatteryFromSlot(uid, out var battery); diff --git a/Content.Server/PowerSink/PowerSinkComponent.cs b/Content.Server/PowerSink/PowerSinkComponent.cs index 1b55739c8c5..f1df042179f 100644 --- a/Content.Server/PowerSink/PowerSinkComponent.cs +++ b/Content.Server/PowerSink/PowerSinkComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.PowerSink /// Absorbs power up to its capacity when anchored then explodes. /// [RegisterComponent] - public sealed class PowerSinkComponent : Component + public sealed partial class PowerSinkComponent : Component { /// /// When the power sink is nearing its explosion, warn the crew so they can look for it diff --git a/Content.Server/Prayer/PrayerSystem.cs b/Content.Server/Prayer/PrayerSystem.cs index 2056586a414..be6ae80bfda 100644 --- a/Content.Server/Prayer/PrayerSystem.cs +++ b/Content.Server/Prayer/PrayerSystem.cs @@ -36,7 +36,7 @@ public override void Initialize() private void AddPrayVerb(EntityUid uid, PrayableComponent comp, GetVerbsEvent args) { // if it doesn't have an actor and we can't reach it then don't add the verb - if (!EntityManager.TryGetComponent(args.User, out var actor)) + if (!EntityManager.TryGetComponent(args.User, out ActorComponent? actor)) return; // this is to prevent ghosts from using it diff --git a/Content.Server/Procedural/DungeonAtlasTemplateComponent.cs b/Content.Server/Procedural/DungeonAtlasTemplateComponent.cs index 95f48da6435..119320b589c 100644 --- a/Content.Server/Procedural/DungeonAtlasTemplateComponent.cs +++ b/Content.Server/Procedural/DungeonAtlasTemplateComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Procedural; /// Added to pre-loaded maps for dungeon templates. /// [RegisterComponent] -public sealed class DungeonAtlasTemplateComponent : Component +public sealed partial class DungeonAtlasTemplateComponent : Component { [DataField("path", required: true)] public ResPath Path; diff --git a/Content.Server/Projectiles/ProjectileSystem.cs b/Content.Server/Projectiles/ProjectileSystem.cs index 34aa822a6c5..61d67a469b5 100644 --- a/Content.Server/Projectiles/ProjectileSystem.cs +++ b/Content.Server/Projectiles/ProjectileSystem.cs @@ -30,7 +30,7 @@ public override void Initialize() private void OnStartCollide(EntityUid uid, ProjectileComponent component, ref StartCollideEvent args) { // This is so entities that shouldn't get a collision are ignored. - if (args.OurFixture.ID != ProjectileFixture || !args.OtherFixture.Hard || component.DamagedEntity) + if (args.OurFixtureId != ProjectileFixture || !args.OtherFixture.Hard || component.DamagedEntity) return; var target = args.OtherEntity; @@ -43,12 +43,12 @@ private void OnStartCollide(EntityUid uid, ProjectileComponent component, ref St return; } - var ev = new ProjectileHitEvent(target); + var ev = new ProjectileHitEvent(component.Damage, target, component.Shooter); RaiseLocalEvent(uid, ref ev); var otherName = ToPrettyString(target); var direction = args.OurBody.LinearVelocity.Normalized(); - var modifiedDamage = _damageableSystem.TryChangeDamage(target, component.Damage, component.IgnoreResistances, origin: component.Shooter); + var modifiedDamage = _damageableSystem.TryChangeDamage(target, ev.Damage, component.IgnoreResistances, origin: component.Shooter); var deleted = Deleted(target); if (modifiedDamage is not null && EntityManager.EntityExists(component.Shooter)) @@ -78,7 +78,7 @@ private void OnStartCollide(EntityUid uid, ProjectileComponent component, ref St if (component.ImpactEffect != null && TryComp(uid, out var xform)) { - RaiseNetworkEvent(new ImpactEffectEvent(component.ImpactEffect, xform.Coordinates), Filter.Pvs(xform.Coordinates, entityMan: EntityManager)); + RaiseNetworkEvent(new ImpactEffectEvent(component.ImpactEffect, GetNetCoordinates(xform.Coordinates)), Filter.Pvs(xform.Coordinates, entityMan: EntityManager)); } } } diff --git a/Content.Server/Radiation/Components/RadiationBlockerComponent.cs b/Content.Server/Radiation/Components/RadiationBlockerComponent.cs index d030048a944..a034bb415b8 100644 --- a/Content.Server/Radiation/Components/RadiationBlockerComponent.cs +++ b/Content.Server/Radiation/Components/RadiationBlockerComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Radiation.Components; /// [RegisterComponent] [Access(typeof(RadiationSystem))] -public sealed class RadiationBlockerComponent : Component +public sealed partial class RadiationBlockerComponent : Component { /// /// Does it block radiation at all? diff --git a/Content.Server/Radiation/Components/RadiationGridResistanceComponent.cs b/Content.Server/Radiation/Components/RadiationGridResistanceComponent.cs index 72f49f12970..12f04261a56 100644 --- a/Content.Server/Radiation/Components/RadiationGridResistanceComponent.cs +++ b/Content.Server/Radiation/Components/RadiationGridResistanceComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Radiation.Components; /// [RegisterComponent] [Access(typeof(RadiationSystem), Other = AccessPermissions.ReadExecute)] -public sealed class RadiationGridResistanceComponent : Component +public sealed partial class RadiationGridResistanceComponent : Component { /// /// Radiation resistance per tile. diff --git a/Content.Server/Radiation/Components/RadiationReceiverComponent.cs b/Content.Server/Radiation/Components/RadiationReceiverComponent.cs index 3021f2907fe..4a47007a9a3 100644 --- a/Content.Server/Radiation/Components/RadiationReceiverComponent.cs +++ b/Content.Server/Radiation/Components/RadiationReceiverComponent.cs @@ -8,7 +8,7 @@ namespace Content.Server.Radiation.Components; /// [RegisterComponent] [Access(typeof(RadiationSystem))] -public sealed class RadiationReceiverComponent : Component +public sealed partial class RadiationReceiverComponent : Component { /// /// Current radiation value in rads per second. diff --git a/Content.Server/Radiation/Systems/GeigerSystem.cs b/Content.Server/Radiation/Systems/GeigerSystem.cs index fdbb6e353cc..050b1698192 100644 --- a/Content.Server/Radiation/Systems/GeigerSystem.cs +++ b/Content.Server/Radiation/Systems/GeigerSystem.cs @@ -93,7 +93,7 @@ private void OnGetState(EntityUid uid, GeigerComponent component, ref ComponentG CurrentRadiation = component.CurrentRadiation, DangerLevel = component.DangerLevel, IsEnabled = component.IsEnabled, - User = component.User + User = GetNetEntity(component.User) }; } diff --git a/Content.Server/Radiation/Systems/RadiationSystem.Debug.cs b/Content.Server/Radiation/Systems/RadiationSystem.Debug.cs index bd422663f2e..97f2e485ca3 100644 --- a/Content.Server/Radiation/Systems/RadiationSystem.Debug.cs +++ b/Content.Server/Radiation/Systems/RadiationSystem.Debug.cs @@ -56,18 +56,14 @@ private void UpdateResistanceDebugOverlay() if (_debugSessions.Count == 0) return; - var query = GetEntityQuery(); - var dict = new Dictionary>(); + var dict = new Dictionary>(); - var gridQuery = AllEntityQuery(); + var gridQuery = AllEntityQuery(); - while (gridQuery.MoveNext(out var gridUid, out var grid)) + while (gridQuery.MoveNext(out var gridUid, out _, out var resistance)) { - if (!query.TryGetComponent(gridUid, out var resistance)) - continue; - var resMap = resistance.ResistancePerTile; - dict.Add(gridUid, resMap); + dict.Add(GetNetEntity(gridUid), resMap); } var ev = new OnRadiationOverlayResistanceUpdateEvent(dict); diff --git a/Content.Server/Radiation/Systems/RadiationSystem.GridCast.cs b/Content.Server/Radiation/Systems/RadiationSystem.GridCast.cs index c4a6a67033e..719b3fc1ca0 100644 --- a/Content.Server/Radiation/Systems/RadiationSystem.GridCast.cs +++ b/Content.Server/Radiation/Systems/RadiationSystem.GridCast.cs @@ -3,6 +3,7 @@ using Content.Server.Radiation.Events; using Content.Shared.Radiation.Components; using Content.Shared.Radiation.Systems; +using Content.Shared.Stacks; using Robust.Shared.Collections; using Robust.Shared.Map; using Robust.Shared.Map.Components; @@ -14,6 +15,8 @@ namespace Content.Server.Radiation.Systems; // main algorithm that fire radiation rays to target public partial class RadiationSystem { + [Dependency] private readonly SharedStackSystem _stack = default!; + private void UpdateGridcast() { // should we save debug information into rays? @@ -23,19 +26,20 @@ private void UpdateGridcast() var stopwatch = new Stopwatch(); stopwatch.Start(); - var sources = EntityQuery(); + var sources = EntityQueryEnumerator(); var destinations = EntityQuery(); var resistanceQuery = GetEntityQuery(); var transformQuery = GetEntityQuery(); var gridQuery = GetEntityQuery(); + var stackQuery = GetEntityQuery(); // precalculate world positions for each source // so we won't need to calc this in cycle over and over again - var sourcesData = new ValueList<(RadiationSourceComponent, TransformComponent, Vector2)>(); - foreach (var (source, sourceTrs) in sources) + var sourcesData = new ValueList<(EntityUid, RadiationSourceComponent, TransformComponent, Vector2)>(); + while (sources.MoveNext(out var uid, out var source, out var sourceTrs)) { var worldPos = _transform.GetWorldPosition(sourceTrs, transformQuery); - var data = (source, sourceTrs, worldPos); + var data = (uid, source, sourceTrs, worldPos); sourcesData.Add(data); } @@ -47,12 +51,15 @@ private void UpdateGridcast() var destWorld = _transform.GetWorldPosition(destTrs, transformQuery); var rads = 0f; - foreach (var (source, sourceTrs, sourceWorld) in sourcesData) + foreach (var (uid, source, sourceTrs, sourceWorld) in sourcesData) { + stackQuery.TryGetComponent(uid, out var stack); + var intensity = source.Intensity * _stack.GetCount(uid, stack); + // send ray towards destination entity - var ray = Irradiate(sourceTrs.Owner, sourceTrs, sourceWorld, + var ray = Irradiate(uid, sourceTrs, sourceWorld, destTrs.Owner, destTrs, destWorld, - source.Intensity, source.Slope, saveVisitedTiles, resistanceQuery, transformQuery, gridQuery); + intensity, source.Slope, saveVisitedTiles, resistanceQuery, transformQuery, gridQuery); if (ray == null) continue; @@ -115,7 +122,7 @@ private void UpdateGridcast() // create a new radiation ray from source to destination // at first we assume that it doesn't hit any radiation blockers // and has only distance penalty - var ray = new RadiationRay(mapId, sourceUid, sourceWorld, destUid, destWorld, rads); + var ray = new RadiationRay(mapId, GetNetEntity(sourceUid), sourceWorld, GetNetEntity(destUid), destWorld, rads); // if source and destination on the same grid it's possible that // between them can be another grid (ie. shuttle in center of donut station) @@ -207,7 +214,7 @@ private RadiationRay Gridcast(MapGridComponent grid, RadiationRay ray, bool save // save data for debug if needed if (saveVisitedTiles && blockers.Count > 0) - ray.Blockers.Add(gridUid, blockers); + ray.Blockers.Add(GetNetEntity(gridUid), blockers); return ray; } diff --git a/Content.Server/Radio/Components/ActiveRadioComponent.cs b/Content.Server/Radio/Components/ActiveRadioComponent.cs index 2c3ed9defa4..6428c0946e5 100644 --- a/Content.Server/Radio/Components/ActiveRadioComponent.cs +++ b/Content.Server/Radio/Components/ActiveRadioComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Radio.Components; /// This component is required to receive radio message events. /// [RegisterComponent] -public sealed class ActiveRadioComponent : Component +public sealed partial class ActiveRadioComponent : Component { /// /// The channels that this radio is listening on. diff --git a/Content.Server/Radio/Components/ActiveRadioJammerComponent.cs b/Content.Server/Radio/Components/ActiveRadioJammerComponent.cs index e608f0be7a6..ff3e6271bef 100644 --- a/Content.Server/Radio/Components/ActiveRadioJammerComponent.cs +++ b/Content.Server/Radio/Components/ActiveRadioJammerComponent.cs @@ -7,6 +7,6 @@ namespace Content.Server.Radio.Components; /// [RegisterComponent] [Access(typeof(JammerSystem))] -public sealed class ActiveRadioJammerComponent : Component +public sealed partial class ActiveRadioJammerComponent : Component { } diff --git a/Content.Server/Radio/Components/IntrinsicRadioReceiverComponent.cs b/Content.Server/Radio/Components/IntrinsicRadioReceiverComponent.cs index 3683049c099..416dfe39cb8 100644 --- a/Content.Server/Radio/Components/IntrinsicRadioReceiverComponent.cs +++ b/Content.Server/Radio/Components/IntrinsicRadioReceiverComponent.cs @@ -6,6 +6,6 @@ namespace Content.Server.Radio.Components; /// channels. /// [RegisterComponent] -public sealed class IntrinsicRadioReceiverComponent : Component +public sealed partial class IntrinsicRadioReceiverComponent : Component { } diff --git a/Content.Server/Radio/Components/IntrinsicRadioTransmitterComponent.cs b/Content.Server/Radio/Components/IntrinsicRadioTransmitterComponent.cs index eb28bac4ecd..13cc090663e 100644 --- a/Content.Server/Radio/Components/IntrinsicRadioTransmitterComponent.cs +++ b/Content.Server/Radio/Components/IntrinsicRadioTransmitterComponent.cs @@ -10,8 +10,8 @@ namespace Content.Server.Radio.Components; /// radio headset). /// [RegisterComponent] -public sealed class IntrinsicRadioTransmitterComponent : Component +public sealed partial class IntrinsicRadioTransmitterComponent : Component { [DataField("channels", customTypeSerializer: typeof(PrototypeIdHashSetSerializer))] - public readonly HashSet Channels = new() { SharedChatSystem.CommonChannel }; + public HashSet Channels = new() { SharedChatSystem.CommonChannel }; } diff --git a/Content.Server/Radio/Components/RadioJammerComponent.cs b/Content.Server/Radio/Components/RadioJammerComponent.cs index ef451b06301..69837200ac3 100644 --- a/Content.Server/Radio/Components/RadioJammerComponent.cs +++ b/Content.Server/Radio/Components/RadioJammerComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Radio.Components; /// [RegisterComponent] [Access(typeof(JammerSystem))] -public sealed class RadioJammerComponent : Component +public sealed partial class RadioJammerComponent : Component { [DataField("range"), ViewVariables(VVAccess.ReadWrite)] public float Range = 8f; diff --git a/Content.Server/Radio/Components/RadioMicrophoneComponent.cs b/Content.Server/Radio/Components/RadioMicrophoneComponent.cs index 162eeb61108..af01f86f23c 100644 --- a/Content.Server/Radio/Components/RadioMicrophoneComponent.cs +++ b/Content.Server/Radio/Components/RadioMicrophoneComponent.cs @@ -11,7 +11,7 @@ namespace Content.Server.Radio.Components; /// [RegisterComponent] [Access(typeof(RadioDeviceSystem))] -public sealed class RadioMicrophoneComponent : Component +public sealed partial class RadioMicrophoneComponent : Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("broadcastChannel", customTypeSerializer: typeof(PrototypeIdSerializer))] diff --git a/Content.Server/Radio/Components/RadioSpeakerComponent.cs b/Content.Server/Radio/Components/RadioSpeakerComponent.cs index 1b842fbd0df..150e903e527 100644 --- a/Content.Server/Radio/Components/RadioSpeakerComponent.cs +++ b/Content.Server/Radio/Components/RadioSpeakerComponent.cs @@ -10,7 +10,7 @@ namespace Content.Server.Radio.Components; /// [RegisterComponent] [Access(typeof(RadioDeviceSystem))] -public sealed class RadioSpeakerComponent : Component +public sealed partial class RadioSpeakerComponent : Component { /// /// Whether or not interacting with this entity diff --git a/Content.Server/Radio/Components/WearingHeadsetComponent.cs b/Content.Server/Radio/Components/WearingHeadsetComponent.cs index d175b4dbab9..2d68b44a3c8 100644 --- a/Content.Server/Radio/Components/WearingHeadsetComponent.cs +++ b/Content.Server/Radio/Components/WearingHeadsetComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Radio.Components; /// This component is used to tag players that are currently wearing an ACTIVE headset. /// [RegisterComponent] -public sealed class WearingHeadsetComponent : Component +public sealed partial class WearingHeadsetComponent : Component { [DataField("headset")] public EntityUid Headset; diff --git a/Content.Server/Radio/EntitySystems/RadioSystem.cs b/Content.Server/Radio/EntitySystems/RadioSystem.cs index 6494908020b..c4f66a0cd9c 100644 --- a/Content.Server/Radio/EntitySystems/RadioSystem.cs +++ b/Content.Server/Radio/EntitySystems/RadioSystem.cs @@ -27,7 +27,6 @@ public sealed class RadioSystem : EntitySystem [Dependency] private readonly IReplayRecordingManager _replay = default!; [Dependency] private readonly IAdminLogManager _adminLogger = default!; [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly PopupSystem _popup = default!; [Dependency] private readonly ChatSystem _chat = default!; // set used to prevent radio feedback loops. @@ -88,7 +87,7 @@ public void SendRadioMessage(EntityUid messageSource, string message, RadioChann ChatChannel.Radio, message, wrappedMessage, - EntityUid.Invalid); + NetEntity.Invalid); var chatMsg = new MsgChatMessage { Message = chat }; var ev = new RadioReceiveEvent(message, messageSource, channel, chatMsg); diff --git a/Content.Server/RandomAppearance/RandomAppearanceComponent.cs b/Content.Server/RandomAppearance/RandomAppearanceComponent.cs index c61e04404b9..8560eebb57f 100644 --- a/Content.Server/RandomAppearance/RandomAppearanceComponent.cs +++ b/Content.Server/RandomAppearance/RandomAppearanceComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.RandomAppearance; [RegisterComponent] [Access(typeof(RandomAppearanceSystem))] -public sealed class RandomAppearanceComponent : Component, ISerializationHooks +public sealed partial class RandomAppearanceComponent : Component, ISerializationHooks { [DataField("spriteStates")] public string[] SpriteStates = { "0", "1", "2", "3", "4" }; diff --git a/Content.Server/RandomMetadata/RandomMetadataComponent.cs b/Content.Server/RandomMetadata/RandomMetadataComponent.cs index 29aef86751a..7ad97625e3f 100644 --- a/Content.Server/RandomMetadata/RandomMetadataComponent.cs +++ b/Content.Server/RandomMetadata/RandomMetadataComponent.cs @@ -4,7 +4,7 @@ /// Randomizes the description and/or the name for an entity by creating it from list of dataset prototypes or strings. /// [RegisterComponent] -public sealed class RandomMetadataComponent : Component +public sealed partial class RandomMetadataComponent : Component { [DataField("descriptionSegments")] public List? DescriptionSegments; diff --git a/Content.Server/RandomMetadata/RandomMetadataSystem.cs b/Content.Server/RandomMetadata/RandomMetadataSystem.cs index e9136f82ebf..ebec4d5249f 100644 --- a/Content.Server/RandomMetadata/RandomMetadataSystem.cs +++ b/Content.Server/RandomMetadata/RandomMetadataSystem.cs @@ -9,6 +9,7 @@ public sealed class RandomMetadataSystem : EntitySystem { [Dependency] private readonly IPrototypeManager _prototype = default!; [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; public override void Initialize() { @@ -24,12 +25,13 @@ private void OnMapInit(EntityUid uid, RandomMetadataComponent component, MapInit if (component.NameSegments != null) { - meta.EntityName = GetRandomFromSegments(component.NameSegments, component.NameSeparator); + _metaData.SetEntityName(uid, GetRandomFromSegments(component.NameSegments, component.NameSeparator), meta); } if (component.DescriptionSegments != null) { - meta.EntityDescription = GetRandomFromSegments(component.DescriptionSegments, component.DescriptionSeparator); + _metaData.SetEntityDescription(uid, + GetRandomFromSegments(component.DescriptionSegments, component.DescriptionSeparator), meta); } } diff --git a/Content.Server/RatKing/RatKingComponent.cs b/Content.Server/RatKing/RatKingComponent.cs index bca37237a92..22e9de41357 100644 --- a/Content.Server/RatKing/RatKingComponent.cs +++ b/Content.Server/RatKing/RatKingComponent.cs @@ -1,17 +1,18 @@ -using Content.Shared.Actions.ActionTypes; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.RatKing { [RegisterComponent] - public sealed class RatKingComponent : Component + public sealed partial class RatKingComponent : Component { + [DataField("actionRaiseArmy", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string ActionRaiseArmy = "ActionRatKingRaiseArmy"; + /// /// The action for the Raise Army ability /// - [DataField("actionRaiseArmy", required: true)] - public InstantAction ActionRaiseArmy = new(); + [DataField("actionRaiseArmyEntity")] public EntityUid? ActionRaiseArmyEntity; /// /// The amount of hunger one use of Raise Army consumes @@ -25,11 +26,14 @@ public sealed class RatKingComponent : Component [ViewVariables(VVAccess.ReadWrite), DataField("armyMobSpawnId", customTypeSerializer: typeof(PrototypeIdSerializer))] public string ArmyMobSpawnId = "MobRatServant"; + [DataField("actionDomain", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string ActionDomain = "ActionRatKingDomain"; + /// /// The action for the Domain ability /// - [DataField("actionDomain", required: true)] - public InstantAction ActionDomain = new(); + [DataField("actionDomainEntity")] + public EntityUid? ActionDomainEntity; /// /// The amount of hunger one use of Domain consumes @@ -43,4 +47,4 @@ public sealed class RatKingComponent : Component [DataField("molesMiasmaPerDomain")] public float MolesMiasmaPerDomain = 100f; } -}; +} diff --git a/Content.Server/RatKing/RatKingSystem.cs b/Content.Server/RatKing/RatKingSystem.cs index 6dee181d592..cd3cbbb691d 100644 --- a/Content.Server/RatKing/RatKingSystem.cs +++ b/Content.Server/RatKing/RatKingSystem.cs @@ -1,13 +1,11 @@ using Content.Server.Actions; using Content.Server.Atmos.EntitySystems; -using Content.Server.Nutrition.Components; using Content.Server.Popups; -using Content.Shared.Actions; using Content.Shared.Atmos; using Content.Shared.Nutrition.Components; using Content.Shared.Nutrition.EntitySystems; +using Content.Shared.RatKing; using Robust.Server.GameObjects; -using Robust.Shared.Player; namespace Content.Server.RatKing { @@ -23,16 +21,16 @@ public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnStartup); + SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnRaiseArmy); SubscribeLocalEvent(OnDomain); } - private void OnStartup(EntityUid uid, RatKingComponent component, ComponentStartup args) + private void OnMapInit(EntityUid uid, RatKingComponent component, MapInitEvent args) { - _action.AddAction(uid, component.ActionRaiseArmy, null); - _action.AddAction(uid, component.ActionDomain, null); + _action.AddAction(uid, ref component.ActionRaiseArmyEntity, component.ActionRaiseArmy); + _action.AddAction(uid, ref component.ActionDomainEntity, component.ActionDomain); } /// @@ -86,14 +84,4 @@ private void OnDomain(EntityUid uid, RatKingComponent component, RatKingDomainAc tileMix?.AdjustMoles(Gas.Miasma, component.MolesMiasmaPerDomain); } } - - public sealed class RatKingRaiseArmyActionEvent : InstantActionEvent - { - - } - - public sealed class RatKingDomainActionEvent : InstantActionEvent - { - - } -}; +} diff --git a/Content.Server/Remotes/DoorRemoteComponent.cs b/Content.Server/Remotes/DoorRemoteComponent.cs index 92187e2543b..91cb7ccad10 100644 --- a/Content.Server/Remotes/DoorRemoteComponent.cs +++ b/Content.Server/Remotes/DoorRemoteComponent.cs @@ -2,7 +2,7 @@ namespace Content.Server.Remotes { [RegisterComponent] [Access(typeof(DoorRemoteSystem))] - public sealed class DoorRemoteComponent : Component + public sealed partial class DoorRemoteComponent : Component { public OperatingMode Mode = OperatingMode.OpenClose; diff --git a/Content.Server/Repairable/RepairableComponent.cs b/Content.Server/Repairable/RepairableComponent.cs index 911397ec944..c436386110c 100644 --- a/Content.Server/Repairable/RepairableComponent.cs +++ b/Content.Server/Repairable/RepairableComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.Repairable { [RegisterComponent] - public sealed class RepairableComponent : Component + public sealed partial class RepairableComponent : Component { /// /// All the damage to change information is stored in this . diff --git a/Content.Server/Research/Components/ResearchConsoleComponent.cs b/Content.Server/Research/Components/ResearchConsoleComponent.cs index 39910a3283c..038357ef8ba 100644 --- a/Content.Server/Research/Components/ResearchConsoleComponent.cs +++ b/Content.Server/Research/Components/ResearchConsoleComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Research.Components; [RegisterComponent] -public sealed class ResearchConsoleComponent : Component +public sealed partial class ResearchConsoleComponent : Component { } diff --git a/Content.Server/Research/Components/ResearchPointSourceComponent.cs b/Content.Server/Research/Components/ResearchPointSourceComponent.cs index 10fc27ba87e..90785b1db16 100644 --- a/Content.Server/Research/Components/ResearchPointSourceComponent.cs +++ b/Content.Server/Research/Components/ResearchPointSourceComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Research.Components; [RegisterComponent] -public sealed class ResearchPointSourceComponent : Component +public sealed partial class ResearchPointSourceComponent : Component { [DataField("pointspersecond"), ViewVariables(VVAccess.ReadWrite)] public int PointsPerSecond; diff --git a/Content.Server/Research/Disk/ResearchDiskComponent.cs b/Content.Server/Research/Disk/ResearchDiskComponent.cs index 1d4beee1ab2..b3356b4714e 100644 --- a/Content.Server/Research/Disk/ResearchDiskComponent.cs +++ b/Content.Server/Research/Disk/ResearchDiskComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Research.Disk { [RegisterComponent] - public sealed class ResearchDiskComponent : Component + public sealed partial class ResearchDiskComponent : Component { [DataField("points"), ViewVariables(VVAccess.ReadWrite)] public int Points = 1000; diff --git a/Content.Server/Research/Systems/ResearchStealerSystem.cs b/Content.Server/Research/Systems/ResearchStealerSystem.cs new file mode 100644 index 00000000000..5bab6048de5 --- /dev/null +++ b/Content.Server/Research/Systems/ResearchStealerSystem.cs @@ -0,0 +1,39 @@ +using Content.Shared.Research.Components; +using Content.Shared.Research.Systems; + +namespace Content.Server.Research.Systems; + +public sealed class ResearchStealerSystem : SharedResearchStealerSystem +{ + [Dependency] private readonly SharedResearchSystem _research = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnDoAfter); + } + + private void OnDoAfter(EntityUid uid, ResearchStealerComponent comp, ResearchStealDoAfterEvent args) + { + if (args.Cancelled || args.Handled || args.Target == null) + return; + + var target = args.Target.Value; + + if (!TryComp(target, out var database)) + return; + + var ev = new ResearchStolenEvent(uid, target, database.UnlockedTechnologies); + RaiseLocalEvent(uid, ref ev); + // oops, no more advanced lasers! + _research.ClearTechs(target, database); + } +} + +/// +/// Event raised on the user when research is stolen from a R&D server. +/// Techs contains every technology id researched. +/// +[ByRefEvent] +public record struct ResearchStolenEvent(EntityUid Used, EntityUid Target, List Techs); diff --git a/Content.Server/Research/Systems/ResearchSystem.Console.cs b/Content.Server/Research/Systems/ResearchSystem.Console.cs index 2721a9f294e..6da547999dd 100644 --- a/Content.Server/Research/Systems/ResearchSystem.Console.cs +++ b/Content.Server/Research/Systems/ResearchSystem.Console.cs @@ -25,7 +25,7 @@ private void OnConsoleUnlock(EntityUid uid, ResearchConsoleComponent component, if (!this.IsPowered(uid, EntityManager)) return; - if (TryComp(uid, out var access) && !_accessReader.IsAllowed(ent, access)) + if (TryComp(uid, out var access) && !_accessReader.IsAllowed(ent, uid, access)) { _popup.PopupEntity(Loc.GetString("research-console-no-access-popup"), ent); return; diff --git a/Content.Server/Research/TechnologyDisk/Components/DiskConsoleComponent.cs b/Content.Server/Research/TechnologyDisk/Components/DiskConsoleComponent.cs index 09b1972e5f4..93d5bb43b69 100644 --- a/Content.Server/Research/TechnologyDisk/Components/DiskConsoleComponent.cs +++ b/Content.Server/Research/TechnologyDisk/Components/DiskConsoleComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.Research.TechnologyDisk.Components; [RegisterComponent] -public sealed class DiskConsoleComponent : Component +public sealed partial class DiskConsoleComponent : Component { /// /// How much it costs to print a disk diff --git a/Content.Server/Research/TechnologyDisk/Components/DiskConsolePrintingComponent.cs b/Content.Server/Research/TechnologyDisk/Components/DiskConsolePrintingComponent.cs index 38230279833..ab3b7ef9bb1 100644 --- a/Content.Server/Research/TechnologyDisk/Components/DiskConsolePrintingComponent.cs +++ b/Content.Server/Research/TechnologyDisk/Components/DiskConsolePrintingComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Research.TechnologyDisk.Components; [RegisterComponent] -public sealed class DiskConsolePrintingComponent : Component +public sealed partial class DiskConsolePrintingComponent : Component { public TimeSpan FinishTime; } diff --git a/Content.Server/Research/TechnologyDisk/Components/TechnologyDiskComponent.cs b/Content.Server/Research/TechnologyDisk/Components/TechnologyDiskComponent.cs index a3aee909f7c..eb5a0623a08 100644 --- a/Content.Server/Research/TechnologyDisk/Components/TechnologyDiskComponent.cs +++ b/Content.Server/Research/TechnologyDisk/Components/TechnologyDiskComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Research.TechnologyDisk.Components; [RegisterComponent] -public sealed class TechnologyDiskComponent : Component +public sealed partial class TechnologyDiskComponent : Component { /// /// The recipe that will be added. If null, one will be randomly generated diff --git a/Content.Server/Resist/CanEscapeInventoryComponent.cs b/Content.Server/Resist/CanEscapeInventoryComponent.cs index 6572eca330b..19b4abf7d0c 100644 --- a/Content.Server/Resist/CanEscapeInventoryComponent.cs +++ b/Content.Server/Resist/CanEscapeInventoryComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Resist; [RegisterComponent] -public sealed class CanEscapeInventoryComponent : Component +public sealed partial class CanEscapeInventoryComponent : Component { /// /// Base doafter length for uncontested breakouts. diff --git a/Content.Server/Resist/EscapeInventorySystem.cs b/Content.Server/Resist/EscapeInventorySystem.cs index 6cd9cb77bf2..f120d79c840 100644 --- a/Content.Server/Resist/EscapeInventorySystem.cs +++ b/Content.Server/Resist/EscapeInventorySystem.cs @@ -62,7 +62,7 @@ private void OnRelayMovement(EntityUid uid, CanEscapeInventoryComponent componen } // Uncontested - if (HasComp(container.Owner) || HasComp(container.Owner) || HasComp(container.Owner)) + if (HasComp(container.Owner) || HasComp(container.Owner) || HasComp(container.Owner)) AttemptEscape(uid, container.Owner, component); } @@ -71,7 +71,7 @@ public void AttemptEscape(EntityUid user, EntityUid container, CanEscapeInventor if (component.IsEscaping) return; - var doAfterEventArgs = new DoAfterArgs(user, component.BaseResistTime * multiplier, new EscapeInventoryEvent(), user, target: container) + var doAfterEventArgs = new DoAfterArgs(EntityManager, user, component.BaseResistTime * multiplier, new EscapeInventoryEvent(), user, target: container) { BreakOnTargetMove = false, BreakOnUserMove = true, diff --git a/Content.Server/Resist/ResistLockerComponent.cs b/Content.Server/Resist/ResistLockerComponent.cs index 52a4683abf1..922c83d2557 100644 --- a/Content.Server/Resist/ResistLockerComponent.cs +++ b/Content.Server/Resist/ResistLockerComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Resist; [RegisterComponent] [Access(typeof(ResistLockerSystem))] -public sealed class ResistLockerComponent : Component +public sealed partial class ResistLockerComponent : Component { /// /// How long will this locker take to kick open, defaults to 2 minutes diff --git a/Content.Server/Resist/ResistLockerSystem.cs b/Content.Server/Resist/ResistLockerSystem.cs index 4b433073ca8..7a17a2eba19 100644 --- a/Content.Server/Resist/ResistLockerSystem.cs +++ b/Content.Server/Resist/ResistLockerSystem.cs @@ -6,15 +6,18 @@ using Content.Shared.Movement.Events; using Content.Shared.Popups; using Content.Shared.Resist; +using Content.Shared.Tools.Components; +using Content.Shared.Tools.Systems; namespace Content.Server.Resist; public sealed class ResistLockerSystem : EntitySystem { - [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; - [Dependency] private readonly PopupSystem _popupSystem = default!; - [Dependency] private readonly LockSystem _lockSystem = default!; [Dependency] private readonly EntityStorageSystem _entityStorage = default!; + [Dependency] private readonly LockSystem _lockSystem = default!; + [Dependency] private readonly PopupSystem _popupSystem = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; + [Dependency] private readonly WeldableSystem _weldable = default!; public override void Initialize() { @@ -31,7 +34,7 @@ private void OnRelayMovement(EntityUid uid, ResistLockerComponent component, ref if (!TryComp(uid, out EntityStorageComponent? storageComponent)) return; - if (TryComp(uid, out var lockComponent) && lockComponent.Locked || storageComponent.IsWeldedShut) + if (TryComp(uid, out var lockComponent) && lockComponent.Locked || _weldable.IsWelded(uid)) { AttemptResist(args.Entity, uid, storageComponent, component); } @@ -42,7 +45,7 @@ private void AttemptResist(EntityUid user, EntityUid target, EntityStorageCompon if (!Resolve(target, ref storageComponent, ref resistLockerComponent)) return; - var doAfterEventArgs = new DoAfterArgs(user, resistLockerComponent.ResistTime, new ResistLockerDoAfterEvent(), target, target: target) + var doAfterEventArgs = new DoAfterArgs(EntityManager, user, resistLockerComponent.ResistTime, new ResistLockerDoAfterEvent(), target, target: target) { BreakOnTargetMove = false, BreakOnUserMove = true, @@ -69,10 +72,11 @@ private void OnDoAfter(EntityUid uid, ResistLockerComponent component, DoAfterEv component.IsResisting = false; - if (TryComp(uid, out var storageComponent)) + if (HasComp(uid)) { - if (storageComponent.IsWeldedShut) - storageComponent.IsWeldedShut = false; + WeldableComponent? weldable = null; + if (_weldable.IsWelded(uid, weldable)) + _weldable.SetWeldedState(uid, false, weldable); if (TryComp(args.Args.Target.Value, out var lockComponent)) _lockSystem.Unlock(uid, args.Args.User, lockComponent); diff --git a/Content.Server/Revenant/Components/EssenceComponent.cs b/Content.Server/Revenant/Components/EssenceComponent.cs index bafd926aca8..19cdcfd32b8 100644 --- a/Content.Server/Revenant/Components/EssenceComponent.cs +++ b/Content.Server/Revenant/Components/EssenceComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Revenant.Components; [RegisterComponent] -public sealed class EssenceComponent : Component +public sealed partial class EssenceComponent : Component { /// /// Whether or not the entity has been harvested yet. diff --git a/Content.Server/Revenant/EntitySystems/CorporealSystem.cs b/Content.Server/Revenant/EntitySystems/CorporealSystem.cs index bad5eb61001..350d0827565 100644 --- a/Content.Server/Revenant/EntitySystems/CorporealSystem.cs +++ b/Content.Server/Revenant/EntitySystems/CorporealSystem.cs @@ -1,5 +1,5 @@ using Content.Server.GameTicking; -using Content.Server.Visible; +using Content.Shared.Eye; using Content.Shared.Revenant.Components; using Content.Shared.Revenant.EntitySystems; using Robust.Server.GameObjects; diff --git a/Content.Server/Revenant/EntitySystems/EssenceSystem.cs b/Content.Server/Revenant/EntitySystems/EssenceSystem.cs index 5f95da95e87..f6de79fee54 100644 --- a/Content.Server/Revenant/EntitySystems/EssenceSystem.cs +++ b/Content.Server/Revenant/EntitySystems/EssenceSystem.cs @@ -1,6 +1,6 @@ -using Content.Server.Mind.Components; using Content.Server.Revenant.Components; using Content.Shared.Examine; +using Content.Shared.Mind.Components; using Content.Shared.Mobs; using Content.Shared.Mobs.Components; using Content.Shared.Revenant.Components; diff --git a/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs b/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs index 66a7076569a..b3caced0daf 100644 --- a/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs +++ b/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs @@ -82,7 +82,7 @@ private void OnInteract(EntityUid uid, RevenantComponent component, InteractNoHa private void BeginSoulSearchDoAfter(EntityUid uid, EntityUid target, RevenantComponent revenant) { - var searchDoAfter = new DoAfterArgs(uid, revenant.SoulSearchDuration, new SoulEvent(), uid, target: target) + var searchDoAfter = new DoAfterArgs(EntityManager, uid, revenant.SoulSearchDuration, new SoulEvent(), uid, target: target) { BreakOnUserMove = true, BreakOnDamage = true, @@ -136,7 +136,7 @@ private void BeginHarvestDoAfter(EntityUid uid, EntityUid target, RevenantCompon return; } - var doAfter = new DoAfterArgs(uid, revenant.HarvestDebuffs.X, new HarvestEvent(), uid, target: target) + var doAfter = new DoAfterArgs(EntityManager, uid, revenant.HarvestDebuffs.X, new HarvestEvent(), uid, target: target) { DistanceThreshold = 2, BreakOnUserMove = true, @@ -193,7 +193,7 @@ private void OnHarvest(EntityUid uid, RevenantComponent component, HarvestEvent if (!_mobThresholdSystem.TryGetThresholdForState(args.Args.Target.Value, MobState.Dead, out var damage)) return; DamageSpecifier dspec = new(); - dspec.DamageDict.Add("Poison", damage.Value); + dspec.DamageDict.Add("Cold", damage.Value); _damage.TryChangeDamage(args.Args.Target, dspec, true, origin: uid); args.Handled = true; diff --git a/Content.Server/Revenant/EntitySystems/RevenantSystem.cs b/Content.Server/Revenant/EntitySystems/RevenantSystem.cs index 73a04ca8a40..3ff247d6f8a 100644 --- a/Content.Server/Revenant/EntitySystems/RevenantSystem.cs +++ b/Content.Server/Revenant/EntitySystems/RevenantSystem.cs @@ -1,56 +1,59 @@ using System.Numerics; using Content.Server.Actions; -using Content.Shared.Popups; -using Content.Shared.Alert; -using Content.Shared.Damage; -using Content.Shared.Interaction; using Content.Server.GameTicking; -using Content.Shared.Stunnable; -using Content.Shared.Revenant; -using Robust.Server.GameObjects; -using Robust.Shared.Random; -using Content.Shared.StatusEffect; -using Content.Server.Visible; -using Content.Shared.Examine; -using Robust.Shared.Prototypes; -using Content.Shared.Actions.ActionTypes; -using Content.Shared.Tag; using Content.Server.Store.Components; using Content.Server.Store.Systems; +using Content.Shared.Alert; +using Content.Shared.Damage; using Content.Shared.DoAfter; +using Content.Shared.Examine; +using Content.Shared.Eye; using Content.Shared.FixedPoint; +using Content.Shared.Interaction; using Content.Shared.Maps; using Content.Shared.Mobs.Systems; using Content.Shared.Physics; +using Content.Shared.Popups; +using Content.Shared.Revenant; using Content.Shared.Revenant.Components; +using Content.Shared.StatusEffect; +using Content.Shared.Stunnable; +using Content.Shared.Tag; +using Robust.Server.GameObjects; +using Robust.Shared.Prototypes; +using Robust.Shared.Random; namespace Content.Server.Revenant.EntitySystems; public sealed partial class RevenantSystem : EntitySystem { [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly IPrototypeManager _proto = default!; [Dependency] private readonly ActionsSystem _action = default!; [Dependency] private readonly AlertsSystem _alerts = default!; [Dependency] private readonly DamageableSystem _damage = default!; - [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; [Dependency] private readonly EntityLookupSystem _lookup = default!; + [Dependency] private readonly GameTicker _ticker = default!; [Dependency] private readonly MobStateSystem _mobState = default!; [Dependency] private readonly PhysicsSystem _physics = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; + [Dependency] private readonly SharedEyeSystem _eye = default!; [Dependency] private readonly StatusEffectsSystem _statusEffects = default!; [Dependency] private readonly SharedInteractionSystem _interact = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SharedStunSystem _stun = default!; - [Dependency] private readonly TagSystem _tag = default!; [Dependency] private readonly StoreSystem _store = default!; + [Dependency] private readonly TagSystem _tag = default!; [Dependency] private readonly VisibilitySystem _visibility = default!; - [Dependency] private readonly GameTicker _ticker = default!; + + [ValidatePrototypeId] + private const string RevenantShopId = "ActionRevenantShop"; public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnStartup); + SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnShop); SubscribeLocalEvent(OnDamage); @@ -81,10 +84,14 @@ private void OnStartup(EntityUid uid, RevenantComponent component, ComponentStar //ghost vision if (TryComp(uid, out EyeComponent? eye)) - eye.VisibilityMask |= (uint) (VisibilityFlags.Ghost); + { + _eye.SetVisibilityMask(uid, eye.VisibilityMask | (int) (VisibilityFlags.Ghost), eye); + } + } - var shopaction = new InstantAction(_proto.Index("RevenantShop")); - _action.AddAction(uid, shopaction, null); + private void OnMapInit(EntityUid uid, RevenantComponent component, MapInitEvent args) + { + _action.AddAction(uid, Spawn(RevenantShopId), null); } private void OnStatusAdded(EntityUid uid, RevenantComponent component, StatusEffectAddedEvent args) diff --git a/Content.Server/Roles/AddRoleCommand.cs b/Content.Server/Roles/AddRoleCommand.cs index b172873fdf8..e510d24ac05 100644 --- a/Content.Server/Roles/AddRoleCommand.cs +++ b/Content.Server/Roles/AddRoleCommand.cs @@ -1,12 +1,11 @@ using Content.Server.Administration; -using Content.Server.Players; +using Content.Server.Roles.Jobs; using Content.Shared.Administration; +using Content.Shared.Players; using Content.Shared.Roles; using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Prototypes; -using System.Linq; -using Content.Server.Mind; namespace Content.Server.Roles { @@ -14,7 +13,7 @@ namespace Content.Server.Roles public sealed class AddRoleCommand : IConsoleCommand { [Dependency] private readonly EntityManager _entityManager = default!; - + public string Command => "addrole"; public string Description => "Adds a role to a player's mind."; @@ -50,15 +49,14 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (mind.AllRoles.Any(r => r.Name == jobPrototype.Name)) + var jobs = _entityManager.System(); + if (jobs.MindHasJobWithId(mind, jobPrototype.Name)) { shell.WriteLine("Mind already has that role"); return; } - var role = new Job(mind, jobPrototype); - var mindSystem = _entityManager.System(); - mindSystem.AddRole(mind, role); + jobs.MindAddJob(mind.Value, args[1]); } } } diff --git a/Content.Server/Roles/AntagonistRole.cs b/Content.Server/Roles/AntagonistRole.cs deleted file mode 100644 index 9eb6146365f..00000000000 --- a/Content.Server/Roles/AntagonistRole.cs +++ /dev/null @@ -1,24 +0,0 @@ -using Content.Shared.Roles; - -namespace Content.Server.Roles; - -public abstract class AntagonistRole : Role -{ - public AntagPrototype Prototype { get; } - - public override string Name { get; } - - public override bool Antagonist { get; } - - /// - /// .ctor - /// - /// A mind (player) - /// Antagonist prototype - protected AntagonistRole(Mind.Mind mind, AntagPrototype antagPrototype) : base(mind) - { - Prototype = antagPrototype; - Name = Loc.GetString(antagPrototype.Name); - Antagonist = antagPrototype.Antagonist; - } -} diff --git a/Content.Server/Roles/InitialInfectedRoleComponent.cs b/Content.Server/Roles/InitialInfectedRoleComponent.cs new file mode 100644 index 00000000000..d8cc5fd04bf --- /dev/null +++ b/Content.Server/Roles/InitialInfectedRoleComponent.cs @@ -0,0 +1,9 @@ +using Content.Shared.Roles; + +namespace Content.Server.Roles; + +[RegisterComponent] +public sealed partial class InitialInfectedRoleComponent : AntagonistRoleComponent +{ + +} diff --git a/Content.Server/Roles/Job.cs b/Content.Server/Roles/Job.cs deleted file mode 100644 index c5c74036002..00000000000 --- a/Content.Server/Roles/Job.cs +++ /dev/null @@ -1,56 +0,0 @@ -using Content.Server.Chat.Managers; -using Content.Server.Chat.Systems; -using Content.Shared.Roles; -using System.Globalization; -using Content.Server.Mind; - -namespace Content.Server.Roles -{ - public sealed class Job : Role, IRoleTimer - { - [ViewVariables] public string Timer => Prototype.PlayTimeTracker; - - [ViewVariables] - public JobPrototype Prototype { get; } - - public override string Name { get; } - - public override bool Antagonist => false; - - [ViewVariables] - public string? StartingGear => Prototype.StartingGear; - - [ViewVariables] - public string? JobEntity => Prototype.JobEntity; - - [ViewVariables] - public bool CanBeAntag; - - public Job(Mind.Mind mind, JobPrototype jobPrototype) : base(mind) - { - Prototype = jobPrototype; - Name = jobPrototype.LocalizedName; - CanBeAntag = jobPrototype.CanBeAntag; - } - - public override void Greet() - { - base.Greet(); - - var entityManager = IoCManager.Resolve(); - var mindSystem = entityManager.System(); - - if (mindSystem.TryGetSession(Mind, out var session)) - { - var chatMgr = IoCManager.Resolve(); - chatMgr.DispatchServerMessage(session, Loc.GetString("job-greet-introduce-job-name", - ("jobName", CultureInfo.CurrentCulture.TextInfo.ToTitleCase(Name)))); - - if(Prototype.RequireAdminNotify) - chatMgr.DispatchServerMessage(session, Loc.GetString("job-greet-important-disconnect-admin-notify")); - - chatMgr.DispatchServerMessage(session, Loc.GetString("job-greet-supervisors-warning", ("jobName", Name), ("supervisors", Loc.GetString(Prototype.Supervisors)))); - } - } - } -} diff --git a/Content.Server/Roles/Jobs/JobSystem.cs b/Content.Server/Roles/Jobs/JobSystem.cs new file mode 100644 index 00000000000..7bee6da7554 --- /dev/null +++ b/Content.Server/Roles/Jobs/JobSystem.cs @@ -0,0 +1,53 @@ +using System.Globalization; +using Content.Server.Chat.Managers; +using Content.Server.Mind; +using Content.Shared.Mind; +using Content.Shared.Roles; +using Content.Shared.Roles.Jobs; +using Robust.Shared.Prototypes; + +namespace Content.Server.Roles.Jobs; + +/// +/// Handles the job data on mind entities. +/// +public sealed class JobSystem : SharedJobSystem +{ + [Dependency] private readonly IChatManager _chat = default!; + [Dependency] private readonly MindSystem _mind = default!; + [Dependency] private readonly RoleSystem _roles = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(MindOnDoGreeting); + } + + private void MindOnDoGreeting(EntityUid mindId, MindComponent component, ref MindRoleAddedEvent args) + { + if (args.Silent) + return; + + if (!_mind.TryGetSession(mindId, out var session)) + return; + + if (!MindTryGetJob(mindId, out _, out var prototype)) + return; + + _chat.DispatchServerMessage(session, Loc.GetString("job-greet-introduce-job-name", + ("jobName", CultureInfo.CurrentCulture.TextInfo.ToTitleCase(prototype.LocalizedName)))); + + if (prototype.RequireAdminNotify) + _chat.DispatchServerMessage(session, Loc.GetString("job-greet-important-disconnect-admin-notify")); + + _chat.DispatchServerMessage(session, Loc.GetString("job-greet-supervisors-warning", ("jobName", prototype.LocalizedName), ("supervisors", Loc.GetString(prototype.Supervisors)))); + } + + public void MindAddJob(EntityUid mindId, string jobPrototypeId) + { + if (MindHasJobWithId(mindId, jobPrototypeId)) + return; + + _roles.MindAddRole(mindId, new JobComponent { PrototypeId = jobPrototypeId }); + } +} diff --git a/Content.Server/Roles/NinjaRoleComponent.cs b/Content.Server/Roles/NinjaRoleComponent.cs new file mode 100644 index 00000000000..aa9e1cfa328 --- /dev/null +++ b/Content.Server/Roles/NinjaRoleComponent.cs @@ -0,0 +1,40 @@ +using Content.Shared.Roles; + +namespace Content.Server.Roles; + +/// +/// Stores the ninja's objectives on the mind so if they die the rest of the greentext persists. +/// +[RegisterComponent] +public sealed partial class NinjaRoleComponent : AntagonistRoleComponent +{ + /// + /// Number of doors that have been doorjacked, used for objective + /// + [DataField("doorsJacked")] + public int DoorsJacked; + + /// + /// Research nodes that have been downloaded, used for objective + /// + [DataField("downloadedNodes")] + public HashSet DownloadedNodes = new(); + + /// + /// Warp point that the spider charge has to target + /// + [DataField("spiderChargeTarget")] + public EntityUid? SpiderChargeTarget; + + /// + /// Whether the spider charge has been detonated on the target, used for objective + /// + [DataField("spiderChargeDetonated")] + public bool SpiderChargeDetonated; + + /// + /// Whether the comms console has been hacked, used for objective + /// + [DataField("calledInThreat")] + public bool CalledInThreat; +} diff --git a/Content.Server/Roles/NukeopsRole.cs b/Content.Server/Roles/NukeopsRole.cs deleted file mode 100644 index bbb8ca1da3a..00000000000 --- a/Content.Server/Roles/NukeopsRole.cs +++ /dev/null @@ -1,8 +0,0 @@ -using Content.Shared.Roles; - -namespace Content.Server.Roles; - -public sealed class NukeopsRole : AntagonistRole -{ - public NukeopsRole(Mind.Mind mind, AntagPrototype antagPrototype) : base(mind, antagPrototype) { } -} diff --git a/Content.Server/Roles/NukeopsRoleComponent.cs b/Content.Server/Roles/NukeopsRoleComponent.cs new file mode 100644 index 00000000000..5ae893566cd --- /dev/null +++ b/Content.Server/Roles/NukeopsRoleComponent.cs @@ -0,0 +1,11 @@ +using Content.Shared.Roles; + +namespace Content.Server.Roles; + +/// +/// Added to mind entities to tag that they are a nuke operative. +/// +[RegisterComponent] +public sealed partial class NukeopsRoleComponent : AntagonistRoleComponent +{ +} diff --git a/Content.Server/Roles/RemoveRoleCommand.cs b/Content.Server/Roles/RemoveRoleCommand.cs index 00b64924045..edb29da624f 100644 --- a/Content.Server/Roles/RemoveRoleCommand.cs +++ b/Content.Server/Roles/RemoveRoleCommand.cs @@ -1,8 +1,8 @@ using Content.Server.Administration; -using Content.Server.Mind; -using Content.Server.Players; using Content.Shared.Administration; +using Content.Shared.Players; using Content.Shared.Roles; +using Content.Shared.Roles.Jobs; using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Prototypes; @@ -44,9 +44,10 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - var role = new Job(mind, _prototypeManager.Index(args[1])); - var mindSystem = _entityManager.System(); - mindSystem.RemoveRole(mind, role); + var roles = _entityManager.System(); + var jobs = _entityManager.System(); + if (jobs.MindHasJobWithId(mind, args[1])) + roles.MindRemoveRole(mind.Value); } } } diff --git a/Content.Server/Roles/Role.cs b/Content.Server/Roles/Role.cs deleted file mode 100644 index e1d58446e1c..00000000000 --- a/Content.Server/Roles/Role.cs +++ /dev/null @@ -1,44 +0,0 @@ -// Hey look, -// Antag Datums. - -namespace Content.Server.Roles -{ - /// - /// The Role is a basic building block for, - /// well, IC roles. - /// This can be anything and is not necessarily limited to antagonists. - /// - public abstract class Role - { - /// - /// The mind owning this role instance. - /// - [ViewVariables] - public Mind.Mind Mind { get; } - - /// - /// A friendly name for this role type. - /// - [ViewVariables] - public abstract string Name { get; } - - /// - /// Whether this role should be considered antagonistic or not. - /// - [ViewVariables] - public abstract bool Antagonist { get; } - - protected Role(Mind.Mind mind) - { - Mind = mind; - } - - /// - /// Called when a mind (player) first gets this role, to greet them. - /// - public virtual void Greet() - { - - } - } -} diff --git a/Content.Server/Roles/RoleAddedEvent.cs b/Content.Server/Roles/RoleAddedEvent.cs deleted file mode 100644 index 789ea258694..00000000000 --- a/Content.Server/Roles/RoleAddedEvent.cs +++ /dev/null @@ -1,7 +0,0 @@ -namespace Content.Server.Roles -{ - public sealed class RoleAddedEvent : RoleEvent - { - public RoleAddedEvent(Mind.Mind mind, Role role) : base(mind, role) { } - } -} diff --git a/Content.Server/Roles/RoleBriefingComponent.cs b/Content.Server/Roles/RoleBriefingComponent.cs new file mode 100644 index 00000000000..3577033f7dc --- /dev/null +++ b/Content.Server/Roles/RoleBriefingComponent.cs @@ -0,0 +1,11 @@ +namespace Content.Server.Roles; + +/// +/// Adds a briefing to the character info menu, does nothing else. +/// +[RegisterComponent] +public sealed partial class RoleBriefingComponent : Component +{ + [DataField("briefing"), ViewVariables(VVAccess.ReadWrite)] + public string Briefing; +} diff --git a/Content.Server/Roles/RoleBriefingSystem.cs b/Content.Server/Roles/RoleBriefingSystem.cs new file mode 100644 index 00000000000..27cfdc1cad1 --- /dev/null +++ b/Content.Server/Roles/RoleBriefingSystem.cs @@ -0,0 +1,25 @@ +namespace Content.Server.Roles; + +public sealed class RoleBriefingSystem : EntitySystem +{ + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnGetBriefing); + } + + private void OnGetBriefing(EntityUid uid, RoleBriefingComponent comp, ref GetBriefingEvent args) + { + if (args.Briefing == null) + { + // no previous briefing so just set it + args.Briefing = comp.Briefing; + } + else + { + // there is a previous briefing so append to it + args.Briefing += "\n" + comp.Briefing; + } + } +} diff --git a/Content.Server/Roles/RoleEvent.cs b/Content.Server/Roles/RoleEvent.cs deleted file mode 100644 index 6bd5a34d9da..00000000000 --- a/Content.Server/Roles/RoleEvent.cs +++ /dev/null @@ -1,14 +0,0 @@ -namespace Content.Server.Roles -{ - public abstract class RoleEvent : EntityEventArgs - { - public readonly Mind.Mind Mind; - public readonly Role Role; - - public RoleEvent(Mind.Mind mind, Role role) - { - Mind = mind; - Role = role; - } - } -} diff --git a/Content.Server/Roles/RoleRemovedEvent.cs b/Content.Server/Roles/RoleRemovedEvent.cs deleted file mode 100644 index dcacdae6add..00000000000 --- a/Content.Server/Roles/RoleRemovedEvent.cs +++ /dev/null @@ -1,7 +0,0 @@ -namespace Content.Server.Roles -{ - public sealed class RoleRemovedEvent : RoleEvent - { - public RoleRemovedEvent(Mind.Mind mind, Role role) : base(mind, role) { } - } -} diff --git a/Content.Server/Roles/RoleSystem.cs b/Content.Server/Roles/RoleSystem.cs new file mode 100644 index 00000000000..4ca6c0ac801 --- /dev/null +++ b/Content.Server/Roles/RoleSystem.cs @@ -0,0 +1,36 @@ +using Content.Shared.Roles; + +namespace Content.Server.Roles; + +public sealed class RoleSystem : SharedRoleSystem +{ + public override void Initialize() + { + // TODO make roles entities + base.Initialize(); + + SubscribeAntagEvents(); + SubscribeAntagEvents(); + SubscribeAntagEvents(); + SubscribeAntagEvents(); + SubscribeAntagEvents(); + SubscribeAntagEvents(); + } + + public string? MindGetBriefing(EntityUid? mindId) + { + if (mindId == null) + return null; + + var ev = new GetBriefingEvent(); + RaiseLocalEvent(mindId.Value, ref ev); + return ev.Briefing; + } +} + +/// +/// Event raised on the mind to get its briefing. +/// Handlers can either replace or append to the briefing, whichever is more appropriate. +/// +[ByRefEvent] +public record struct GetBriefingEvent(string? Briefing = null); diff --git a/Content.Server/Roles/SubvertedSiliconRole.cs b/Content.Server/Roles/SubvertedSiliconRole.cs deleted file mode 100644 index 1da518d0212..00000000000 --- a/Content.Server/Roles/SubvertedSiliconRole.cs +++ /dev/null @@ -1,8 +0,0 @@ -using Content.Shared.Roles; - -namespace Content.Server.Roles; - -public sealed class SubvertedSiliconRole : AntagonistRole -{ - public SubvertedSiliconRole(Mind.Mind mind, AntagPrototype antagPrototype) : base(mind, antagPrototype) { } -} diff --git a/Content.Server/Roles/SubvertedSiliconRoleComponent.cs b/Content.Server/Roles/SubvertedSiliconRoleComponent.cs new file mode 100644 index 00000000000..70056fbec9e --- /dev/null +++ b/Content.Server/Roles/SubvertedSiliconRoleComponent.cs @@ -0,0 +1,8 @@ +using Content.Shared.Roles; + +namespace Content.Server.Roles; + +[RegisterComponent] +public sealed partial class SubvertedSiliconRoleComponent : AntagonistRoleComponent +{ +} diff --git a/Content.Server/Roles/TraitorRole.cs b/Content.Server/Roles/TraitorRole.cs deleted file mode 100644 index adab41eed2b..00000000000 --- a/Content.Server/Roles/TraitorRole.cs +++ /dev/null @@ -1,10 +0,0 @@ -using Content.Server.Chat.Managers; -using Content.Shared.PDA; -using Content.Shared.Roles; - -namespace Content.Server.Roles; - -public sealed class TraitorRole : AntagonistRole -{ - public TraitorRole(Mind.Mind mind, AntagPrototype antagPrototype) : base(mind, antagPrototype) { } -} diff --git a/Content.Server/Roles/TraitorRoleComponent.cs b/Content.Server/Roles/TraitorRoleComponent.cs new file mode 100644 index 00000000000..6c436e76aca --- /dev/null +++ b/Content.Server/Roles/TraitorRoleComponent.cs @@ -0,0 +1,8 @@ +using Content.Shared.Roles; + +namespace Content.Server.Roles; + +[RegisterComponent] +public sealed partial class TraitorRoleComponent : AntagonistRoleComponent +{ +} diff --git a/Content.Server/Roles/ZombieRole.cs b/Content.Server/Roles/ZombieRole.cs deleted file mode 100644 index 75a4807664c..00000000000 --- a/Content.Server/Roles/ZombieRole.cs +++ /dev/null @@ -1,8 +0,0 @@ -using Content.Shared.Roles; - -namespace Content.Server.Roles; - -public sealed class ZombieRole : AntagonistRole -{ - public ZombieRole(Mind.Mind mind, AntagPrototype antagPrototype) : base(mind, antagPrototype) { } -} diff --git a/Content.Server/Roles/ZombieRoleComponent.cs b/Content.Server/Roles/ZombieRoleComponent.cs new file mode 100644 index 00000000000..8c0354afc4f --- /dev/null +++ b/Content.Server/Roles/ZombieRoleComponent.cs @@ -0,0 +1,8 @@ +using Content.Shared.Roles; + +namespace Content.Server.Roles; + +[RegisterComponent] +public sealed partial class ZombieRoleComponent : AntagonistRoleComponent +{ +} diff --git a/Content.Server/Rotatable/FlippableComponent.cs b/Content.Server/Rotatable/FlippableComponent.cs index 0e7464ec9e7..98eb0f6d5c6 100644 --- a/Content.Server/Rotatable/FlippableComponent.cs +++ b/Content.Server/Rotatable/FlippableComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Rotatable { [RegisterComponent] - public sealed class FlippableComponent : Component + public sealed partial class FlippableComponent : Component { /// /// Entity to replace this entity with when the current one is 'flipped'. diff --git a/Content.Server/RoundEnd/RoundEndSystem.cs b/Content.Server/RoundEnd/RoundEndSystem.cs index 5d180b8d17e..4681acc227b 100644 --- a/Content.Server/RoundEnd/RoundEndSystem.cs +++ b/Content.Server/RoundEnd/RoundEndSystem.cs @@ -201,7 +201,7 @@ public void CancelRoundEndCountdown(EntityUid? requester = null, bool checkCoold RaiseLocalEvent(RoundEndSystemChangedEvent.Default); } - public void EndRound() + public void EndRound(TimeSpan? countdownTime = null) { if (_gameTicker.RunLevel != GameRunLevel.InRound) return; LastCountdownStart = null; @@ -211,17 +211,17 @@ public void EndRound() _countdownTokenSource?.Cancel(); _countdownTokenSource = new(); - var countdownTime = TimeSpan.FromSeconds(_cfg.GetCVar(CCVars.RoundRestartTime)); + countdownTime ??= TimeSpan.FromSeconds(_cfg.GetCVar(CCVars.RoundRestartTime)); int time; string unitsLocString; - if (countdownTime.TotalSeconds < 60) + if (countdownTime.Value.TotalSeconds < 60) { - time = countdownTime.Seconds; + time = countdownTime.Value.Seconds; unitsLocString = "eta-units-seconds"; } else { - time = countdownTime.Minutes; + time = countdownTime.Value.Minutes; unitsLocString = "eta-units-minutes"; } _chatManager.DispatchServerAnnouncement( @@ -229,7 +229,7 @@ public void EndRound() "round-end-system-round-restart-eta-announcement", ("time", time), ("units", Loc.GetString(unitsLocString)))); - Timer.Spawn(countdownTime, AfterEndRoundRestart, _countdownTokenSource.Token); + Timer.Spawn(countdownTime.Value, AfterEndRoundRestart, _countdownTokenSource.Token); } private void AfterEndRoundRestart() diff --git a/Content.Server/Salvage/Expeditions/SalvageEliminationExpeditionComponent.cs b/Content.Server/Salvage/Expeditions/SalvageEliminationExpeditionComponent.cs index 045b7b444ed..a3ec66ff302 100644 --- a/Content.Server/Salvage/Expeditions/SalvageEliminationExpeditionComponent.cs +++ b/Content.Server/Salvage/Expeditions/SalvageEliminationExpeditionComponent.cs @@ -6,11 +6,11 @@ namespace Content.Server.Salvage.Expeditions.Structure; /// Tracks expedition data for /// [RegisterComponent, Access(typeof(SalvageSystem), typeof(SpawnSalvageMissionJob))] -public sealed class SalvageEliminationExpeditionComponent : Component +public sealed partial class SalvageEliminationExpeditionComponent : Component { /// /// List of mobs that need to be killed for the mission to be complete. /// [DataField("megafauna")] - public readonly List Megafauna = new(); + public List Megafauna = new(); } diff --git a/Content.Server/Salvage/Expeditions/SalvageExpeditionComponent.cs b/Content.Server/Salvage/Expeditions/SalvageExpeditionComponent.cs index e7938ae5d95..ee4b7c88cd6 100644 --- a/Content.Server/Salvage/Expeditions/SalvageExpeditionComponent.cs +++ b/Content.Server/Salvage/Expeditions/SalvageExpeditionComponent.cs @@ -12,7 +12,7 @@ namespace Content.Server.Salvage.Expeditions; /// Designates this entity as holding a salvage expedition. /// [RegisterComponent] -public sealed class SalvageExpeditionComponent : SharedSalvageExpeditionComponent +public sealed partial class SalvageExpeditionComponent : SharedSalvageExpeditionComponent { public SalvageMissionParams MissionParams = default!; diff --git a/Content.Server/Salvage/Expeditions/SalvageMiningExpeditionComponent.cs b/Content.Server/Salvage/Expeditions/SalvageMiningExpeditionComponent.cs index 6fdbc7d57e7..b9a1379aab9 100644 --- a/Content.Server/Salvage/Expeditions/SalvageMiningExpeditionComponent.cs +++ b/Content.Server/Salvage/Expeditions/SalvageMiningExpeditionComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Salvage.Expeditions; /// Tracks expedition data for /// [RegisterComponent, Access(typeof(SalvageSystem))] -public sealed class SalvageMiningExpeditionComponent : Component +public sealed partial class SalvageMiningExpeditionComponent : Component { /// /// Entities that were present on the shuttle and match the loot tax. diff --git a/Content.Server/Salvage/Expeditions/SalvageShuttleComponent.cs b/Content.Server/Salvage/Expeditions/SalvageShuttleComponent.cs index 067d7d2482d..99f63d41da9 100644 --- a/Content.Server/Salvage/Expeditions/SalvageShuttleComponent.cs +++ b/Content.Server/Salvage/Expeditions/SalvageShuttleComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Salvage.Expeditions; /// Added to salvage shuttle. Used for drone control. /// [RegisterComponent] -public sealed class SalvageShuttleComponent : Component +public sealed partial class SalvageShuttleComponent : Component { } diff --git a/Content.Server/Salvage/Expeditions/SalvageStructureComponent.cs b/Content.Server/Salvage/Expeditions/SalvageStructureComponent.cs index 3abce55e416..f79d33412a5 100644 --- a/Content.Server/Salvage/Expeditions/SalvageStructureComponent.cs +++ b/Content.Server/Salvage/Expeditions/SalvageStructureComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Salvage.Expeditions.Structure; /// Mission objective for salvage expeditions. /// [RegisterComponent, Access(typeof(SalvageSystem))] -public sealed class SalvageStructureComponent : Component +public sealed partial class SalvageStructureComponent : Component { } diff --git a/Content.Server/Salvage/Expeditions/SalvageStructureExpeditionComponent.cs b/Content.Server/Salvage/Expeditions/SalvageStructureExpeditionComponent.cs index daa704cb91b..0dec1f81adf 100644 --- a/Content.Server/Salvage/Expeditions/SalvageStructureExpeditionComponent.cs +++ b/Content.Server/Salvage/Expeditions/SalvageStructureExpeditionComponent.cs @@ -6,8 +6,8 @@ namespace Content.Server.Salvage.Expeditions.Structure; /// Tracks expedition data for /// [RegisterComponent, Access(typeof(SalvageSystem), typeof(SpawnSalvageMissionJob))] -public sealed class SalvageStructureExpeditionComponent : Component +public sealed partial class SalvageStructureExpeditionComponent : Component { [DataField("structures")] - public readonly List Structures = new(); + public List Structures = new(); } diff --git a/Content.Server/Salvage/FultonSystem.cs b/Content.Server/Salvage/FultonSystem.cs new file mode 100644 index 00000000000..23145cc1a8e --- /dev/null +++ b/Content.Server/Salvage/FultonSystem.cs @@ -0,0 +1,76 @@ +using Content.Shared.Salvage.Fulton; +using Robust.Shared.Containers; +using Robust.Shared.Map; +using Robust.Shared.Random; + +namespace Content.Server.Salvage; + +public sealed class FultonSystem : SharedFultonSystem +{ + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnFultonedStartup); + SubscribeLocalEvent(OnFultonedShutdown); + } + + private void OnFultonedShutdown(EntityUid uid, FultonedComponent component, ComponentShutdown args) + { + Del(component.Effect); + component.Effect = EntityUid.Invalid; + } + + private void OnFultonedStartup(EntityUid uid, FultonedComponent component, ComponentStartup args) + { + if (Exists(component.Effect)) + return; + + component.Effect = Spawn(EffectProto, new EntityCoordinates(uid, EffectOffset)); + Dirty(uid, component); + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + var query = EntityQueryEnumerator(); + var curTime = Timing.CurTime; + + while (query.MoveNext(out var uid, out var comp)) + { + if (comp.NextFulton > curTime) + continue; + + Fulton(uid, comp); + } + } + + private void Fulton(EntityUid uid, FultonedComponent component) + { + if (!Deleted(component.Beacon) && + TryComp(component.Beacon, out var beaconXform) && + !_container.IsEntityOrParentInContainer(component.Beacon.Value, xform: beaconXform)) + { + var xform = Transform(uid); + var metadata = MetaData(uid); + var oldCoords = xform.Coordinates; + var offset = _random.NextVector2(1.5f); + var localPos = TransformSystem.GetInvWorldMatrix(beaconXform.ParentUid) + .Transform(TransformSystem.GetWorldPosition(beaconXform)) + offset; + + TransformSystem.SetCoordinates(uid, new EntityCoordinates(beaconXform.ParentUid, localPos)); + + RaiseNetworkEvent(new FultonAnimationMessage() + { + Entity = GetNetEntity(uid, metadata), + Coordinates = GetNetCoordinates(oldCoords, metadata), + }); + } + + Audio.PlayPvs(component.Sound, uid); + RemCompDeferred(uid); + } +} diff --git a/Content.Server/Salvage/SalvageGridComponent.cs b/Content.Server/Salvage/SalvageGridComponent.cs index be8a12f9d63..af7a851f1fb 100644 --- a/Content.Server/Salvage/SalvageGridComponent.cs +++ b/Content.Server/Salvage/SalvageGridComponent.cs @@ -4,7 +4,7 @@ /// A grid spawned by a salvage magnet. /// [RegisterComponent] - public sealed class SalvageGridComponent : Component + public sealed partial class SalvageGridComponent : Component { /// /// The magnet that spawned this grid. diff --git a/Content.Server/Salvage/SalvageMagnetComponent.cs b/Content.Server/Salvage/SalvageMagnetComponent.cs index d99e52fc7fa..d9a5b79b1ad 100644 --- a/Content.Server/Salvage/SalvageMagnetComponent.cs +++ b/Content.Server/Salvage/SalvageMagnetComponent.cs @@ -11,7 +11,7 @@ namespace Content.Server.Salvage /// [NetworkedComponent, RegisterComponent] [Access(typeof(SalvageSystem))] - public sealed class SalvageMagnetComponent : SharedSalvageMagnetComponent + public sealed partial class SalvageMagnetComponent : SharedSalvageMagnetComponent { /// /// Maximum distance from the offset position that will be used as a salvage's spawnpoint. diff --git a/Content.Server/Salvage/SalvageMobRestrictionsComponent.cs b/Content.Server/Salvage/SalvageMobRestrictionsComponent.cs index eabad86e5fe..4d1b01e25ad 100644 --- a/Content.Server/Salvage/SalvageMobRestrictionsComponent.cs +++ b/Content.Server/Salvage/SalvageMobRestrictionsComponent.cs @@ -14,7 +14,7 @@ namespace Content.Server.Salvage; /// whatever it's currently parented to. /// [RegisterComponent] -public sealed class SalvageMobRestrictionsComponent : Component +public sealed partial class SalvageMobRestrictionsComponent : Component { [ViewVariables(VVAccess.ReadOnly)] [DataField("linkedGridEntity")] diff --git a/Content.Server/Salvage/SalvageMobRestrictionsGridComponent.cs b/Content.Server/Salvage/SalvageMobRestrictionsGridComponent.cs index 6d7bf93ec0b..29ea7c5a668 100644 --- a/Content.Server/Salvage/SalvageMobRestrictionsGridComponent.cs +++ b/Content.Server/Salvage/SalvageMobRestrictionsGridComponent.cs @@ -14,7 +14,7 @@ namespace Content.Server.Salvage; /// *This applies even if the mobs are off-grid at the time.* /// [RegisterComponent] -public sealed class SalvageMobRestrictionsGridComponent : Component +public sealed partial class SalvageMobRestrictionsGridComponent : Component { [ViewVariables(VVAccess.ReadOnly)] [DataField("mobsToKill")] diff --git a/Content.Server/Salvage/SalvageSystem.ExpeditionConsole.cs b/Content.Server/Salvage/SalvageSystem.ExpeditionConsole.cs index caa377b5819..124fbfaa5e5 100644 --- a/Content.Server/Salvage/SalvageSystem.ExpeditionConsole.cs +++ b/Content.Server/Salvage/SalvageSystem.ExpeditionConsole.cs @@ -72,7 +72,7 @@ private void UpdateConsoles(SalvageExpeditionDataComponent component) { var state = GetState(component); - foreach (var (console, xform, uiComp) in EntityQuery(true)) + foreach (var (console, xform, uiComp) in EntityQuery(true)) { var station = _station.GetOwningStation(console.Owner, xform); diff --git a/Content.Server/Salvage/SalvageSystem.Expeditions.cs b/Content.Server/Salvage/SalvageSystem.Expeditions.cs index a148cdb134a..d36c534ca8b 100644 --- a/Content.Server/Salvage/SalvageSystem.Expeditions.cs +++ b/Content.Server/Salvage/SalvageSystem.Expeditions.cs @@ -285,6 +285,7 @@ private void SpawnMission(SalvageMissionParams missionParams, EntityUid station) _dungeon, _shuttle, _stationSystem, + _metaData, this, station, missionParams, diff --git a/Content.Server/Salvage/SalvageSystem.Runner.cs b/Content.Server/Salvage/SalvageSystem.Runner.cs index f94d71bf677..ce65ead9283 100644 --- a/Content.Server/Salvage/SalvageSystem.Runner.cs +++ b/Content.Server/Salvage/SalvageSystem.Runner.cs @@ -155,24 +155,24 @@ private void UpdateRunner() { var remaining = comp.EndTime - _timing.CurTime; - if (comp.Stage < ExpeditionStage.FinalCountdown && remaining < TimeSpan.FromSeconds(30)) + if (comp.Stage < ExpeditionStage.FinalCountdown && remaining < TimeSpan.FromSeconds(45)) { comp.Stage = ExpeditionStage.FinalCountdown; - Dirty(comp); - Announce(uid, Loc.GetString("salvage-expedition-announcement-countdown-seconds", ("duration", TimeSpan.FromSeconds(30).Seconds))); + Dirty(uid, comp); + Announce(uid, Loc.GetString("salvage-expedition-announcement-countdown-seconds", ("duration", TimeSpan.FromSeconds(45).Seconds))); } else if (comp.Stage < ExpeditionStage.MusicCountdown && remaining < TimeSpan.FromMinutes(2)) { // TODO: Some way to play audio attached to a map for players. comp.Stream = _audio.PlayGlobal(comp.Sound, Filter.BroadcastMap(Comp(uid).MapId), true); comp.Stage = ExpeditionStage.MusicCountdown; - Dirty(comp); + Dirty(uid, comp); Announce(uid, Loc.GetString("salvage-expedition-announcement-countdown-minutes", ("duration", TimeSpan.FromMinutes(2).Minutes))); } else if (comp.Stage < ExpeditionStage.Countdown && remaining < TimeSpan.FromMinutes(5)) { comp.Stage = ExpeditionStage.Countdown; - Dirty(comp); + Dirty(uid, comp); Announce(uid, Loc.GetString("salvage-expedition-announcement-countdown-minutes", ("duration", TimeSpan.FromMinutes(5).Minutes))); } // Auto-FTL out any shuttles diff --git a/Content.Server/Salvage/SalvageSystem.cs b/Content.Server/Salvage/SalvageSystem.cs index ece652ad07b..1065f7426e6 100644 --- a/Content.Server/Salvage/SalvageSystem.cs +++ b/Content.Server/Salvage/SalvageSystem.cs @@ -25,6 +25,7 @@ using Content.Shared.Construction.EntitySystems; using Content.Shared.Random; using Content.Shared.Random.Helpers; +using Content.Shared.Tools.Components; using Robust.Server.Maps; using Robust.Shared.Map.Components; using Robust.Shared.Timing; @@ -53,6 +54,7 @@ public sealed partial class SalvageSystem : SharedSalvageSystem [Dependency] private readonly ShuttleConsoleSystem _shuttleConsoles = default!; [Dependency] private readonly StationSystem _station = default!; [Dependency] private readonly UserInterfaceSystem _ui = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; private const int SalvageLocationPlaceAttempts = 25; @@ -67,6 +69,7 @@ public override void Initialize() SubscribeLocalEvent(OnRefreshParts); SubscribeLocalEvent(OnUpgradeExamine); SubscribeLocalEvent(OnExamined); + SubscribeLocalEvent(OnToolUseAttempt); SubscribeLocalEvent(OnMagnetRemoval); SubscribeLocalEvent(OnGridRemoval); @@ -231,6 +234,15 @@ private void OnExamined(EntityUid uid, SalvageMagnetComponent component, Examine } } + private void OnToolUseAttempt(EntityUid uid, SalvageMagnetComponent comp, ToolUseAttemptEvent args) + { + // prevent reconstruct exploit to "leak" wrecks or skip cooldowns + if (comp.MagnetState != MagnetState.Inactive) + { + args.Cancel(); + } + } + private void OnInteractHand(EntityUid uid, SalvageMagnetComponent component, InteractHandEvent args) { if (args.Handled) diff --git a/Content.Server/Salvage/SpawnSalvageMissionJob.cs b/Content.Server/Salvage/SpawnSalvageMissionJob.cs index 8cd7ea0d9b9..e29936969b9 100644 --- a/Content.Server/Salvage/SpawnSalvageMissionJob.cs +++ b/Content.Server/Salvage/SpawnSalvageMissionJob.cs @@ -45,6 +45,7 @@ public sealed class SpawnSalvageMissionJob : Job private readonly AnchorableSystem _anchorable; private readonly BiomeSystem _biome; private readonly DungeonSystem _dungeon; + private readonly MetaDataSystem _metaData; private readonly SalvageSystem _salvage; private readonly ShuttleSystem _shuttle; private readonly StationSystem _stationSystem; @@ -62,6 +63,7 @@ public SpawnSalvageMissionJob( DungeonSystem dungeon, ShuttleSystem shuttle, StationSystem stationSystem, + MetaDataSystem metaData, SalvageSystem salvage, EntityUid station, SalvageMissionParams missionParams, @@ -76,6 +78,7 @@ public SpawnSalvageMissionJob( _dungeon = dungeon; _shuttle = shuttle; _stationSystem = stationSystem; + _metaData = metaData; _salvage = salvage; Station = station; _missionParams = missionParams; @@ -147,8 +150,9 @@ protected override async Task Process() expedition.Rewards = mission.Rewards; // On Frontier, we cant share our locations it breaks ftl in a bad bad way - /*var ftlUid = _entManager.CreateEntityUninitialized("FTLPoint", new EntityCoordinates(mapUid, Vector2.Zero)); - _entManager.GetComponent(ftlUid).EntityName = SharedSalvageSystem.GetFTLName(_prototypeManager.Index("names_borer"), _missionParams.Seed); + // Don't want consoles to have the incorrect name until refreshed. + /*var ftlUid = _entManager.CreateEntityUninitialized("FTLPoint", new EntityCoordinates(mapUid, grid.TileSizeHalfVector)); + _metaData.SetEntityName(ftlUid, SharedSalvageSystem.GetFTLName(_prototypeManager.Index("names_borer"), _missionParams.Seed)); _entManager.InitializeAndStartEntity(ftlUid);*/ // so we just gunna yeet them there instead why not. they chose this life. diff --git a/Content.Server/Sandbox/Commands/ColorNetworkCommand.cs b/Content.Server/Sandbox/Commands/ColorNetworkCommand.cs index 203e85b2662..0b9148f0fbb 100644 --- a/Content.Server/Sandbox/Commands/ColorNetworkCommand.cs +++ b/Content.Server/Sandbox/Commands/ColorNetworkCommand.cs @@ -79,7 +79,7 @@ private void PaintNodes(NodeContainerComponent nodeContainerComponent, NodeGroup foreach (var x in group.Nodes) { - if (!IoCManager.Resolve().TryGetComponent(x.Owner, out var atmosPipeColorComponent)) continue; + if (!IoCManager.Resolve().TryGetComponent(x.Owner, out AtmosPipeColorComponent? atmosPipeColorComponent)) continue; EntitySystem.Get().SetColor(x.Owner, atmosPipeColorComponent, color); } diff --git a/Content.Server/Security/Components/DeployableBarrierComponent.cs b/Content.Server/Security/Components/DeployableBarrierComponent.cs deleted file mode 100644 index 6cf59204398..00000000000 --- a/Content.Server/Security/Components/DeployableBarrierComponent.cs +++ /dev/null @@ -1,7 +0,0 @@ -namespace Content.Server.Security.Components; - -[RegisterComponent] -public sealed class DeployableBarrierComponent : Component -{ -} - diff --git a/Content.Server/Security/Systems/DeployableBarrierSystem.cs b/Content.Server/Security/Systems/DeployableBarrierSystem.cs deleted file mode 100644 index 729159a8af5..00000000000 --- a/Content.Server/Security/Systems/DeployableBarrierSystem.cs +++ /dev/null @@ -1,49 +0,0 @@ -using Content.Server.Pulling; -using Content.Server.Security.Components; -using Content.Shared.Lock; -using Content.Shared.Pulling.Components; -using Content.Shared.Security; -using Robust.Server.GameObjects; - -namespace Content.Server.Security.Systems -{ - public sealed class DeployableBarrierSystem : EntitySystem - { - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly PullingSystem _pulling = default!; - - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnStartup); - SubscribeLocalEvent(OnLockToggled); - } - - private void OnStartup(EntityUid uid, DeployableBarrierComponent component, ComponentStartup args) - { - if (!TryComp(uid, out LockComponent? lockComponent)) - return; - - ToggleBarrierDeploy(uid, lockComponent.Locked); - } - - private void OnLockToggled(EntityUid uid, DeployableBarrierComponent component, ref LockToggledEvent args) - { - ToggleBarrierDeploy(uid, args.Locked); - } - - private void ToggleBarrierDeploy(EntityUid uid, bool isDeployed) - { - Transform(uid).Anchored = isDeployed; - - var state = isDeployed ? DeployableBarrierState.Deployed : DeployableBarrierState.Idle; - _appearance.SetData(uid, DeployableBarrierVisuals.State, state); - - if (TryComp(uid, out var pullable)) - _pulling.TryStopPull(pullable); - - if (TryComp(uid, out PointLightComponent? light)) - light.Enabled = isDeployed; - } - } -} diff --git a/Content.Server/SensorMonitoring/BatterySensorComponent.cs b/Content.Server/SensorMonitoring/BatterySensorComponent.cs index c99573882c4..2f0c97e6ec6 100644 --- a/Content.Server/SensorMonitoring/BatterySensorComponent.cs +++ b/Content.Server/SensorMonitoring/BatterySensorComponent.cs @@ -9,7 +9,7 @@ namespace Content.Server.SensorMonitoring; /// The entity should also have a and . /// [RegisterComponent] -public sealed class BatterySensorComponent : Component +public sealed partial class BatterySensorComponent : Component { } diff --git a/Content.Server/SensorMonitoring/SensorMonitoringConsoleComponent.cs b/Content.Server/SensorMonitoring/SensorMonitoringConsoleComponent.cs index d73421ebf1c..cd4f2ea23b9 100644 --- a/Content.Server/SensorMonitoring/SensorMonitoringConsoleComponent.cs +++ b/Content.Server/SensorMonitoring/SensorMonitoringConsoleComponent.cs @@ -1,11 +1,12 @@ using Content.Shared.SensorMonitoring; using Robust.Server.Player; using Robust.Shared.Collections; +using Robust.Shared.Players; namespace Content.Server.SensorMonitoring; [RegisterComponent] -public sealed class SensorMonitoringConsoleComponent : Component +public sealed partial class SensorMonitoringConsoleComponent : Component { /// /// Used to assign network IDs for sensors and sensor streams. @@ -26,7 +27,7 @@ public sealed class SensorMonitoringConsoleComponent : Component public TimeSpan RetentionTime = TimeSpan.FromMinutes(1); // UI update tracking stuff. - public HashSet InitialUIStateSent = new(); + public HashSet InitialUIStateSent = new(); public TimeSpan LastUIUpdate; public ValueList RemovedSensors; diff --git a/Content.Server/SensorMonitoring/SensorMonitoringConsoleSystem.UI.cs b/Content.Server/SensorMonitoring/SensorMonitoringConsoleSystem.UI.cs index e08e9fed6cc..a09badcd595 100644 --- a/Content.Server/SensorMonitoring/SensorMonitoringConsoleSystem.UI.cs +++ b/Content.Server/SensorMonitoring/SensorMonitoringConsoleSystem.UI.cs @@ -36,7 +36,7 @@ private void UpdateConsoleUI(EntityUid uid, SensorMonitoringConsoleComponent com else { fullState ??= CalculateFullState(); - UserInterfaceSystem.SetUiState(ui, fullState, session); + _userInterface.SetUiState(ui, fullState, session); comp.InitialUIStateSent.Add(session); } } diff --git a/Content.Server/Sericulture/SericultureComponent.cs b/Content.Server/Sericulture/SericultureComponent.cs index 37da04ff13c..2d258accc89 100644 --- a/Content.Server/Sericulture/SericultureComponent.cs +++ b/Content.Server/Sericulture/SericultureComponent.cs @@ -1,9 +1,11 @@ +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + namespace Content.Server.Sericulture; [RegisterComponent] -public sealed class SericultureComponent : Component +public sealed partial class SericultureComponent : Component { - [DataField("popupText")] public string PopupText = "sericulture-failure-hunger"; @@ -13,8 +15,10 @@ public sealed class SericultureComponent : Component [DataField("entityProduced", required: true)] public string EntityProduced = ""; - [DataField("actionProto", required: true)] - public string ActionProto = ""; + [DataField("action", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string Action = "ActionSericulture"; + + [DataField("actionEntity")] public EntityUid? ActionEntity; /// /// How long will it take to make. diff --git a/Content.Server/Sericulture/SericultureSystem.cs b/Content.Server/Sericulture/SericultureSystem.cs index 5eb538271ee..c100d3d4a5f 100644 --- a/Content.Server/Sericulture/SericultureSystem.cs +++ b/Content.Server/Sericulture/SericultureSystem.cs @@ -1,22 +1,18 @@ using Content.Server.Actions; using Content.Server.DoAfter; using Content.Server.Popups; -using Content.Shared.Actions; -using Content.Shared.Actions.ActionTypes; +using Content.Server.Stack; using Content.Shared.DoAfter; using Content.Shared.Nutrition.Components; using Content.Shared.Nutrition.EntitySystems; -using Robust.Shared.Prototypes; using Content.Shared.Sericulture; -using Content.Server.Stack; namespace Content.Server.Sericulture; -public sealed class SericultureSystem : EntitySystem +public sealed partial class SericultureSystem : EntitySystem { [Dependency] private readonly ActionsSystem _actionsSystem = default!; [Dependency] private readonly DoAfterSystem _doAfterSystem = default!; - [Dependency] private readonly IPrototypeManager _protoManager = default!; [Dependency] private readonly HungerSystem _hungerSystem = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; [Dependency] private readonly StackSystem _stackSystem = default!; @@ -25,26 +21,20 @@ public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnCompInit); + SubscribeLocalEvent(OnCompMapInit); SubscribeLocalEvent(OnCompRemove); SubscribeLocalEvent(OnSericultureStart); SubscribeLocalEvent(OnSericultureDoAfter); } - private void OnCompInit(EntityUid uid, SericultureComponent comp, ComponentInit args) + private void OnCompMapInit(EntityUid uid, SericultureComponent comp, MapInitEvent args) { - if (!_protoManager.TryIndex(comp.ActionProto, out var actionProto)) - return; - - _actionsSystem.AddAction(uid, new InstantAction(actionProto), uid); + _actionsSystem.AddAction(uid, ref comp.ActionEntity, comp.Action, uid); } private void OnCompRemove(EntityUid uid, SericultureComponent comp, ComponentShutdown args) { - if (!_protoManager.TryIndex(comp.ActionProto, out var actionProto)) - return; - - _actionsSystem.RemoveAction(uid, new InstantAction(actionProto)); + _actionsSystem.RemoveAction(uid, comp.ActionEntity); } private void OnSericultureStart(EntityUid uid, SericultureComponent comp, SericultureActionEvent args) @@ -55,7 +45,7 @@ private void OnSericultureStart(EntityUid uid, SericultureComponent comp, Sericu return; } - var doAfter = new DoAfterArgs(uid, comp.ProductionLength, new SericultureDoAfterEvent(), uid) + var doAfter = new DoAfterArgs(EntityManager, uid, comp.ProductionLength, new SericultureDoAfterEvent(), uid) { BreakOnUserMove = true, BlockDuplicate = true, @@ -96,6 +86,4 @@ private bool IsHungry(EntityUid uid, HungerComponent? comp = null) return false; } - - public sealed class SericultureActionEvent : InstantActionEvent { } } diff --git a/Content.Server/Shuttle/Components/DroneConsoleComponent.cs b/Content.Server/Shuttle/Components/DroneConsoleComponent.cs index 933dc358d06..07a8fb9cbd4 100644 --- a/Content.Server/Shuttle/Components/DroneConsoleComponent.cs +++ b/Content.Server/Shuttle/Components/DroneConsoleComponent.cs @@ -8,11 +8,11 @@ namespace Content.Server.Shuttle.Components; /// Lets you remotely control a shuttle. /// [RegisterComponent] -public sealed class DroneConsoleComponent : Component +public sealed partial class DroneConsoleComponent : Component { [DataField("components", required: true)] public ComponentRegistry Components = default!; - + /// /// that we're proxied into. /// diff --git a/Content.Server/Shuttles/Commands/DockCommand.cs b/Content.Server/Shuttles/Commands/DockCommand.cs index 7a621c2b80c..5f287e03970 100644 --- a/Content.Server/Shuttles/Commands/DockCommand.cs +++ b/Content.Server/Shuttles/Commands/DockCommand.cs @@ -22,13 +22,13 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!EntityUid.TryParse(args[0], out var airlock1)) + if (!NetEntity.TryParse(args[0], out var airlock1Net) || !_entManager.TryGetEntity(airlock1Net, out var airlock1)) { shell.WriteError(Loc.GetString("cmd-dock-invalid", ("entity", args[0]))); return; } - if (!EntityUid.TryParse(args[1], out var airlock2)) + if (!NetEntity.TryParse(args[1], out var airlock2Net) || !_entManager.TryGetEntity(airlock2Net, out var airlock2)) { shell.WriteError(Loc.GetString("cmd-dock-invalid", ("entity", args[1]))); return; @@ -47,7 +47,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) } var dockSystem = _entManager.System(); - dockSystem.Dock(airlock1, dock1, airlock2, dock2); + dockSystem.Dock(airlock1.Value, dock1, airlock2.Value, dock2); if (dock1.DockedWith == airlock2) { diff --git a/Content.Server/Shuttles/Components/ArrivalsBlacklistComponent.cs b/Content.Server/Shuttles/Components/ArrivalsBlacklistComponent.cs index 838305a1382..1d5b88d4825 100644 --- a/Content.Server/Shuttles/Components/ArrivalsBlacklistComponent.cs +++ b/Content.Server/Shuttles/Components/ArrivalsBlacklistComponent.cs @@ -4,6 +4,6 @@ namespace Content.Server.Shuttles.Components; /// This is used for blacklisting entities from being on the arrivals shuttle when it goes FTL. /// [RegisterComponent] -public sealed class ArrivalsBlacklistComponent : Component +public sealed partial class ArrivalsBlacklistComponent : Component { } diff --git a/Content.Server/Shuttles/Components/ArrivalsShuttleComponent.cs b/Content.Server/Shuttles/Components/ArrivalsShuttleComponent.cs index 1f6b777963c..79ba1a46cba 100644 --- a/Content.Server/Shuttles/Components/ArrivalsShuttleComponent.cs +++ b/Content.Server/Shuttles/Components/ArrivalsShuttleComponent.cs @@ -4,11 +4,15 @@ namespace Content.Server.Shuttles.Components; [RegisterComponent, Access(typeof(ArrivalsSystem))] -public sealed class ArrivalsShuttleComponent : Component +public sealed partial class ArrivalsShuttleComponent : Component { [DataField("station")] public EntityUid Station; [DataField("nextTransfer", customTypeSerializer:typeof(TimeOffsetSerializer))] public TimeSpan NextTransfer; + + [DataField("nextArrivalsTime", customTypeSerializer:typeof(TimeOffsetSerializer))] + public TimeSpan NextArrivalsTime; + } diff --git a/Content.Server/Shuttles/Components/ArrivalsSourceComponent.cs b/Content.Server/Shuttles/Components/ArrivalsSourceComponent.cs index a1a00793f26..c7ed634b282 100644 --- a/Content.Server/Shuttles/Components/ArrivalsSourceComponent.cs +++ b/Content.Server/Shuttles/Components/ArrivalsSourceComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Shuttles.Components; /// Added to a designated arrivals station for players to spawn at, if enabled. /// [RegisterComponent, Access(typeof(ArrivalsSystem))] -public sealed class ArrivalsSourceComponent : Component +public sealed partial class ArrivalsSourceComponent : Component { } diff --git a/Content.Server/Shuttles/Components/AutoDockComponent.cs b/Content.Server/Shuttles/Components/AutoDockComponent.cs index 91e895cbdf9..fa4cd4dfaf3 100644 --- a/Content.Server/Shuttles/Components/AutoDockComponent.cs +++ b/Content.Server/Shuttles/Components/AutoDockComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.Shuttles.Components; /// We track it because checking every dock constantly would be expensive. /// [RegisterComponent] -public sealed class AutoDockComponent : Component +public sealed partial class AutoDockComponent : Component { /// /// Track who has requested autodocking so we can know when to be removed. diff --git a/Content.Server/Shuttles/Components/DockingComponent.cs b/Content.Server/Shuttles/Components/DockingComponent.cs index eec52f9588f..4c83b3f5bd5 100644 --- a/Content.Server/Shuttles/Components/DockingComponent.cs +++ b/Content.Server/Shuttles/Components/DockingComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Shuttles.Components { [RegisterComponent] - public sealed class DockingComponent : SharedDockingComponent + public sealed partial class DockingComponent : SharedDockingComponent { [DataField("dockedWith")] public EntityUid? DockedWith; diff --git a/Content.Server/Shuttles/Components/EmergencyShuttleConsoleComponent.cs b/Content.Server/Shuttles/Components/EmergencyShuttleConsoleComponent.cs index 3edcf2f015d..6379a76f558 100644 --- a/Content.Server/Shuttles/Components/EmergencyShuttleConsoleComponent.cs +++ b/Content.Server/Shuttles/Components/EmergencyShuttleConsoleComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Shuttles.Components; [RegisterComponent] -public sealed class EmergencyShuttleConsoleComponent : Component +public sealed partial class EmergencyShuttleConsoleComponent : Component { // TODO: Okay doing it by string is kinda suss but also ID card tracking doesn't seem to be robust enough diff --git a/Content.Server/Shuttles/Components/EscapePodComponent.cs b/Content.Server/Shuttles/Components/EscapePodComponent.cs index 20d3bbad39d..d68065fc00e 100644 --- a/Content.Server/Shuttles/Components/EscapePodComponent.cs +++ b/Content.Server/Shuttles/Components/EscapePodComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Shuttles.Components; /// If added to a grid gets launched when the emergency shuttle launches. /// [RegisterComponent, Access(typeof(EmergencyShuttleSystem))] -public sealed class EscapePodComponent : Component +public sealed partial class EscapePodComponent : Component { [DataField("launchTime", customTypeSerializer:typeof(TimeOffsetSerializer))] public TimeSpan? LaunchTime; diff --git a/Content.Server/Shuttles/Components/FTLComponent.cs b/Content.Server/Shuttles/Components/FTLComponent.cs index 7563b083aa3..43b702cd39b 100644 --- a/Content.Server/Shuttles/Components/FTLComponent.cs +++ b/Content.Server/Shuttles/Components/FTLComponent.cs @@ -10,7 +10,7 @@ namespace Content.Server.Shuttles.Components; /// Added to a component when it is queued or is travelling via FTL. /// [RegisterComponent] -public sealed class FTLComponent : Component +public sealed partial class FTLComponent : Component { [ViewVariables] public FTLState State = FTLState.Available; diff --git a/Content.Server/Shuttles/Components/FTLDestinationComponent.cs b/Content.Server/Shuttles/Components/FTLDestinationComponent.cs index f938e142027..6eedcbd8ce0 100644 --- a/Content.Server/Shuttles/Components/FTLDestinationComponent.cs +++ b/Content.Server/Shuttles/Components/FTLDestinationComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Shuttles.Components; [RegisterComponent] -public sealed class FTLDestinationComponent : Component +public sealed partial class FTLDestinationComponent : Component { /// /// Should this destination be restricted in some form from console visibility. diff --git a/Content.Server/Shuttles/Components/GridFillComponent.cs b/Content.Server/Shuttles/Components/GridFillComponent.cs index 6154c7a283e..5f0a9113f3d 100644 --- a/Content.Server/Shuttles/Components/GridFillComponent.cs +++ b/Content.Server/Shuttles/Components/GridFillComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Shuttles.Components; /// If added to an airlock will try to autofill a grid onto it on MapInit /// [RegisterComponent, Access(typeof(ShuttleSystem))] -public sealed class GridFillComponent : Component +public sealed partial class GridFillComponent : Component { [DataField("path")] public ResPath Path = new("/Maps/Shuttles/escape_pod_small.yml"); } diff --git a/Content.Server/Shuttles/Components/GridSpawnComponent.cs b/Content.Server/Shuttles/Components/GridSpawnComponent.cs index 0311f2c1c70..9303d06e8dc 100644 --- a/Content.Server/Shuttles/Components/GridSpawnComponent.cs +++ b/Content.Server/Shuttles/Components/GridSpawnComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Shuttles.Components; /// Similar to except spawns the grid near to the station. /// [RegisterComponent, Access(typeof(ShuttleSystem))] -public sealed class GridSpawnComponent : Component +public sealed partial class GridSpawnComponent : Component { [DataField("paths", required: true)] public List Paths = new(); } diff --git a/Content.Server/Shuttles/Components/IFFConsoleComponent.cs b/Content.Server/Shuttles/Components/IFFConsoleComponent.cs index 8adb42fb19f..562bec51c26 100644 --- a/Content.Server/Shuttles/Components/IFFConsoleComponent.cs +++ b/Content.Server/Shuttles/Components/IFFConsoleComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Shuttles.Components; [RegisterComponent, Access(typeof(ShuttleSystem))] -public sealed class IFFConsoleComponent : Component +public sealed partial class IFFConsoleComponent : Component { /// /// Flags that this console is allowed to set. diff --git a/Content.Server/Shuttles/Components/PendingClockInComponent.cs b/Content.Server/Shuttles/Components/PendingClockInComponent.cs index 549bc134385..62cd1e85481 100644 --- a/Content.Server/Shuttles/Components/PendingClockInComponent.cs +++ b/Content.Server/Shuttles/Components/PendingClockInComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Shuttles.Components; /// Added to arrivals latejoins until they have arrived at the station. /// [RegisterComponent] -public sealed class PendingClockInComponent : Component +public sealed partial class PendingClockInComponent : Component { } diff --git a/Content.Server/Shuttles/Components/PriorityDockComponent.cs b/Content.Server/Shuttles/Components/PriorityDockComponent.cs index 4f19d72e08f..1226a558080 100644 --- a/Content.Server/Shuttles/Components/PriorityDockComponent.cs +++ b/Content.Server/Shuttles/Components/PriorityDockComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Shuttles.Components; /// Given priority when considering where to dock. /// [RegisterComponent] -public sealed class PriorityDockComponent : Component +public sealed partial class PriorityDockComponent : Component { /// /// Tag to match on the docking request, if this dock is to be prioritised. diff --git a/Content.Server/Shuttles/Components/RecentlyDockedComponent.cs b/Content.Server/Shuttles/Components/RecentlyDockedComponent.cs index 5ffbd8b8939..6b0667d1e6c 100644 --- a/Content.Server/Shuttles/Components/RecentlyDockedComponent.cs +++ b/Content.Server/Shuttles/Components/RecentlyDockedComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.Shuttles.Components; /// This checks for whether they've left the specified radius before allowing them to automatically dock again. /// [RegisterComponent] -public sealed class RecentlyDockedComponent : Component +public sealed partial class RecentlyDockedComponent : Component { [DataField("lastDocked")] public EntityUid LastDocked; diff --git a/Content.Server/Shuttles/Components/ShuttleComponent.cs b/Content.Server/Shuttles/Components/ShuttleComponent.cs index 87c65b622fd..488f1d3a21b 100644 --- a/Content.Server/Shuttles/Components/ShuttleComponent.cs +++ b/Content.Server/Shuttles/Components/ShuttleComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Shuttles.Components { [RegisterComponent] - public sealed class ShuttleComponent : Component + public sealed partial class ShuttleComponent : Component { [ViewVariables] public bool Enabled = true; @@ -16,7 +16,11 @@ public sealed class ShuttleComponent : Component /// public const float BrakeCoefficient = 1.5f; - public const float MaxLinearVelocity = 20f; + /// + /// Maximum velocity assuming unupgraded, tier 1 thrusters + /// + [ViewVariables(VVAccess.ReadWrite)] + public float BaseMaxLinearVelocity = 20f; public const float MaxAngularVelocity = 4f; @@ -26,10 +30,23 @@ public sealed class ShuttleComponent : Component [ViewVariables] public readonly float[] LinearThrust = new float[4]; + /// + /// The cached thrust available for each cardinal direction, if all thrusters are T1 + /// + [ViewVariables] + public readonly float[] BaseLinearThrust = new float[4]; + /// /// The thrusters contributing to each direction for impulse. /// - public readonly List[] LinearThrusters = new List[4]; + // No touchy + public readonly List[] LinearThrusters = new List[] + { + new(), + new(), + new(), + new(), + }; /// /// The thrusters contributing to the angular impulse of the shuttle. diff --git a/Content.Server/Shuttles/Components/ShuttleConsoleComponent.cs b/Content.Server/Shuttles/Components/ShuttleConsoleComponent.cs index b2a5fd3a808..91cecde0445 100644 --- a/Content.Server/Shuttles/Components/ShuttleConsoleComponent.cs +++ b/Content.Server/Shuttles/Components/ShuttleConsoleComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Shuttles.Components { [RegisterComponent] - public sealed class ShuttleConsoleComponent : SharedShuttleConsoleComponent + public sealed partial class ShuttleConsoleComponent : SharedShuttleConsoleComponent { [ViewVariables] public readonly List SubscribedPilots = new(); diff --git a/Content.Server/Shuttles/Components/SpaceGarbageComponent.cs b/Content.Server/Shuttles/Components/SpaceGarbageComponent.cs index 3f8fa6f865f..299458ab339 100644 --- a/Content.Server/Shuttles/Components/SpaceGarbageComponent.cs +++ b/Content.Server/Shuttles/Components/SpaceGarbageComponent.cs @@ -5,4 +5,4 @@ namespace Content.Server.Shuttles.Components; /// Useful for small, unimportant items like bullets to avoid generating many contacts. /// [RegisterComponent] -public sealed class SpaceGarbageComponent : Component {} +public sealed partial class SpaceGarbageComponent : Component {} diff --git a/Content.Server/Shuttles/Components/StationArrivalsComponent.cs b/Content.Server/Shuttles/Components/StationArrivalsComponent.cs index ff88c798f40..1d469f9bffe 100644 --- a/Content.Server/Shuttles/Components/StationArrivalsComponent.cs +++ b/Content.Server/Shuttles/Components/StationArrivalsComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Shuttles.Components; /// Added to a station that is available for arrivals shuttles. /// [RegisterComponent, Access(typeof(ArrivalsSystem))] -public sealed class StationArrivalsComponent : Component +public sealed partial class StationArrivalsComponent : Component { [DataField("shuttle")] public EntityUid Shuttle; diff --git a/Content.Server/Shuttles/Components/StationCentcommComponent.cs b/Content.Server/Shuttles/Components/StationCentcommComponent.cs index ee12a266f1f..43b35ebc50c 100644 --- a/Content.Server/Shuttles/Components/StationCentcommComponent.cs +++ b/Content.Server/Shuttles/Components/StationCentcommComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Shuttles.Components; /// Spawns Central Command (emergency destination) for a station. /// [RegisterComponent] -public sealed class StationCentcommComponent : Component +public sealed partial class StationCentcommComponent : Component { /// /// Crude shuttle offset spawning. diff --git a/Content.Server/Shuttles/Components/StationEmergencyShuttleComponent.cs b/Content.Server/Shuttles/Components/StationEmergencyShuttleComponent.cs index 4eaf1390727..bdfdcb273aa 100644 --- a/Content.Server/Shuttles/Components/StationEmergencyShuttleComponent.cs +++ b/Content.Server/Shuttles/Components/StationEmergencyShuttleComponent.cs @@ -8,7 +8,7 @@ namespace Content.Server.Shuttles.Components; /// This is used for controlling evacuation for a station. /// [RegisterComponent] -public sealed class StationEmergencyShuttleComponent : Component +public sealed partial class StationEmergencyShuttleComponent : Component { /// /// The emergency shuttle assigned to this station. diff --git a/Content.Server/Shuttles/Components/ThrusterComponent.cs b/Content.Server/Shuttles/Components/ThrusterComponent.cs index e32e0dd49ec..19397e27996 100644 --- a/Content.Server/Shuttles/Components/ThrusterComponent.cs +++ b/Content.Server/Shuttles/Components/ThrusterComponent.cs @@ -11,7 +11,7 @@ namespace Content.Server.Shuttles.Components { [RegisterComponent, NetworkedComponent] [Access(typeof(ThrusterSystem))] - public sealed class ThrusterComponent : Component + public sealed partial class ThrusterComponent : Component { /// /// Whether the thruster has been force to be enabled / disabled (e.g. VV, interaction, etc.) diff --git a/Content.Server/Shuttles/Events/ShuttleConsoleFTLStartEvent.cs b/Content.Server/Shuttles/Events/ShuttleConsoleFTLStartEvent.cs new file mode 100644 index 00000000000..cfa6d4157d2 --- /dev/null +++ b/Content.Server/Shuttles/Events/ShuttleConsoleFTLStartEvent.cs @@ -0,0 +1,10 @@ +namespace Content.Server.Shuttles.Events; + +/// +/// Raised when shuttle console approved FTL +/// +[ByRefEvent] +public record struct ShuttleConsoleFTLTravelStartEvent(EntityUid Uid) +{ + public EntityUid Uid = Uid; +} diff --git a/Content.Server/Shuttles/Systems/ArrivalsSystem.cs b/Content.Server/Shuttles/Systems/ArrivalsSystem.cs index eeb9de8ad81..7bbe6ed1081 100644 --- a/Content.Server/Shuttles/Systems/ArrivalsSystem.cs +++ b/Content.Server/Shuttles/Systems/ArrivalsSystem.cs @@ -16,6 +16,7 @@ using Content.Shared.Spawners.Components; using Content.Shared.Tiles; using Robust.Server.GameObjects; +using Robust.Shared.Collections; using Robust.Shared.Configuration; using Robust.Shared.Console; using Robust.Shared.Map; @@ -154,6 +155,14 @@ public override void Shutdown() private void OnArrivalsFTL(EntityUid shuttleUid, ArrivalsShuttleComponent component, ref FTLStartedEvent args) { + if (!TryGetArrivals(out EntityUid arrivals)) + return; + + var arrivalsMapUid = Transform(arrivals).MapUid; + // Don't do anything here when leaving arrivals. + if (args.FromMapUid == arrivalsMapUid) + return; + // Any mob then yeet them off the shuttle. if (!_cfgManager.GetCVar(CCVars.ArrivalsReturns) && args.FromMapUid != null) { @@ -166,13 +175,24 @@ private void OnArrivalsFTL(EntityUid shuttleUid, ArrivalsShuttleComponent compon var pendingQuery = AllEntityQuery(); - // Clock them in when they FTL + // We're heading from the station back to arrivals (if leaving arrivals, would have returned above). + // Process everyone who holds a PendingClockInComponent + // Note, due to way DumpChildren works, anyone who doesn't have a PendingClockInComponent gets left in space + // and will not warp. This is intended behavior. while (pendingQuery.MoveNext(out var pUid, out _, out var xform)) { - // Cheaper to iterate pending arrivals than all children - if (xform.GridUid != shuttleUid) + if (xform.GridUid == shuttleUid) + { + // Warp all players who are still on this shuttle to a spawn point. This doesn't let them return to + // arrivals. It also ensures noobs, slow players or AFK players safely leave the shuttle. + TryTeleportToMapSpawn(pUid, component.Station, xform); + } + + // Players who have remained at arrives keep their warp coupon (PendingClockInComponent) for now. + if (xform.MapUid == arrivalsMapUid) continue; + // The player has successfully left arrivals and is also not on the shuttle. Remove their warp coupon. RemCompDeferred(pUid); RemCompDeferred(pUid); } @@ -246,6 +266,35 @@ private void OnPlayerSpawn(PlayerSpawningEvent ev) } } + private bool TryTeleportToMapSpawn(EntityUid player, EntityUid stationId, TransformComponent? transform = null) + { + if (!Resolve(player, ref transform)) + return false; + + var points = EntityQueryEnumerator(); + var possiblePositions = new ValueList(32); + + // Find a spawnpoint on the same map as the player is already docked with now. + while ( points.MoveNext(out var uid, out var spawnPoint, out var xform)) + { + if (spawnPoint.SpawnType == SpawnPointType.LateJoin && + _station.GetOwningStation(uid, xform) == stationId) + { + // Add to list of possible spawn locations + possiblePositions.Add(xform.Coordinates); + } + } + + if (possiblePositions.Count > 0) + { + // Move the player to a random late-join spawnpoint. + _transform.SetCoordinates(player, transform, _random.Pick(possiblePositions)); + return true; + } + + return false; + } + private void OnShuttleStartup(EntityUid uid, ArrivalsShuttleComponent component, ComponentStartup args) { EnsureComp(uid); @@ -268,6 +317,20 @@ private bool TryGetArrivals(out EntityUid uid) return false; } + public TimeSpan? NextShuttleArrival() + { + var query = EntityQueryEnumerator(); + var time = TimeSpan.MaxValue; + while (query.MoveNext(out var uid, out var comp)) + { + if (comp.NextArrivalsTime < time) + time = comp.NextArrivalsTime; + } + + var duration = _timing.CurTime; + return (time < duration) ? null : time - duration; + } + public override void Update(float frameTime) { base.Update(frameTime); @@ -291,11 +354,15 @@ public override void Update(float frameTime) if (comp.NextTransfer > curTime || !TryComp(comp.Station, out var data)) continue; + var tripTime = ShuttleSystem.DefaultTravelTime + ShuttleSystem.DefaultStartupTime ; + // Go back to arrivals source if (xform.MapUid != arrivalsXform.MapUid) { if (arrivals.IsValid()) _shuttles.FTLTravel(uid, shuttle, arrivals, dock: true); + + comp.NextArrivalsTime = _timing.CurTime + TimeSpan.FromSeconds(tripTime); } // Go to station else @@ -304,6 +371,11 @@ public override void Update(float frameTime) if (targetGrid != null) _shuttles.FTLTravel(uid, shuttle, targetGrid.Value, dock: true); + + // The ArrivalsCooldown includes the trip there, so we only need to add the time taken for + // the trip back. + comp.NextArrivalsTime = _timing.CurTime + TimeSpan.FromSeconds( + _cfgManager.GetCVar(CCVars.ArrivalsCooldown) + tripTime); } comp.NextTransfer += TimeSpan.FromSeconds(_cfgManager.GetCVar(CCVars.ArrivalsCooldown)); diff --git a/Content.Server/Shuttles/Systems/DockingSystem.AutoDock.cs b/Content.Server/Shuttles/Systems/DockingSystem.AutoDock.cs index 1a18cd2cb32..439367a0805 100644 --- a/Content.Server/Shuttles/Systems/DockingSystem.AutoDock.cs +++ b/Content.Server/Shuttles/Systems/DockingSystem.AutoDock.cs @@ -65,7 +65,7 @@ private void UpdateAutodock() if ((worldPos - otherWorldPos).Length() < comp.Radius) continue; - _sawmill.Debug($"Removed RecentlyDocked from {ToPrettyString(uid)} and {ToPrettyString(comp.LastDocked)}"); + Log.Debug($"Removed RecentlyDocked from {ToPrettyString(uid)} and {ToPrettyString(comp.LastDocked)}"); RemComp(uid); RemComp(comp.LastDocked); } @@ -73,48 +73,52 @@ private void UpdateAutodock() private void OnRequestUndock(EntityUid uid, ShuttleConsoleComponent component, UndockRequestMessage args) { - _sawmill.Debug($"Received undock request for {ToPrettyString(args.DockEntity)}"); + var dork = GetEntity(args.DockEntity); + + Log.Debug($"Received undock request for {ToPrettyString(dork)}"); // TODO: Validation - if (!TryComp(args.DockEntity, out var dock) || + if (!TryComp(dork, out var dock) || !dock.Docked || HasComp(Transform(uid).GridUid)) { return; } - Undock(args.DockEntity, dock); + Undock(dork, dock); } private void OnRequestAutodock(EntityUid uid, ShuttleConsoleComponent component, AutodockRequestMessage args) { - _sawmill.Debug($"Received autodock request for {ToPrettyString(args.DockEntity)}"); + var dork = GetEntity(args.DockEntity); + Log.Debug($"Received autodock request for {ToPrettyString(dork)}"); var player = args.Session.AttachedEntity; if (player == null || - !HasComp(args.DockEntity) || + !HasComp(dork) || HasComp(Transform(uid).GridUid)) { return; } // TODO: Validation - var comp = EnsureComp(args.DockEntity); + var comp = EnsureComp(dork); comp.Requesters.Add(player.Value); } private void OnRequestStopAutodock(EntityUid uid, ShuttleConsoleComponent component, StopAutodockRequestMessage args) { - _sawmill.Debug($"Received stop autodock request for {ToPrettyString(args.DockEntity)}"); + var dork = GetEntity(args.DockEntity); + Log.Debug($"Received stop autodock request for {ToPrettyString(dork)}"); var player = args.Session.AttachedEntity; // TODO: Validation - if (player == null || !TryComp(args.DockEntity, out var comp)) return; + if (player == null || !TryComp(dork, out var comp)) return; comp.Requesters.Remove(player.Value); if (comp.Requesters.Count == 0) - RemComp(args.DockEntity); + RemComp(dork); } } diff --git a/Content.Server/Shuttles/Systems/DockingSystem.cs b/Content.Server/Shuttles/Systems/DockingSystem.cs index 16b62378834..a00a9e0f585 100644 --- a/Content.Server/Shuttles/Systems/DockingSystem.cs +++ b/Content.Server/Shuttles/Systems/DockingSystem.cs @@ -28,7 +28,6 @@ public sealed partial class DockingSystem : EntitySystem [Dependency] private readonly SharedPhysicsSystem _physics = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; - private ISawmill _sawmill = default!; private const string DockingFixture = "docking"; private const string DockingJoint = "docking"; private const float DockingRadius = 0.20f; @@ -36,7 +35,6 @@ public sealed partial class DockingSystem : EntitySystem public override void Initialize() { base.Initialize(); - _sawmill = Logger.GetSawmill("docking"); SubscribeLocalEvent(OnStartup); SubscribeLocalEvent(OnShutdown); SubscribeLocalEvent(OnAnchorChange); @@ -114,7 +112,7 @@ private void OnAutoClose(EntityUid uid, DockingComponent component, BeforeDoorAu if (otherDockingFixture == null) { DebugTools.Assert(false); - _sawmill.Error($"Found null docking fixture on {ent}"); + Log.Error($"Found null docking fixture on {ent}"); continue; } @@ -159,7 +157,7 @@ private void Cleanup(EntityUid dockAUid, DockingComponent dockA) !TryComp(dockBUid, out DockingComponent? dockB)) { DebugTools.Assert(false); - _sawmill.Error($"Tried to cleanup {dockAUid} but not docked?"); + Log.Error($"Tried to cleanup {dockAUid} but not docked?"); dockA.DockedWith = null; if (dockA.DockJoint != null) @@ -288,7 +286,7 @@ public void Dock(EntityUid dockAUid, DockingComponent dockA, EntityUid dockBUid, (dockAUid, dockBUid) = (dockBUid, dockAUid); } - _sawmill.Debug($"Docking between {dockAUid} and {dockBUid}"); + Log.Debug($"Docking between {dockAUid} and {dockBUid}"); // https://gamedev.stackexchange.com/questions/98772/b2distancejoint-with-frequency-equal-to-0-vs-b2weldjoint diff --git a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs index d0d8b9ff7b6..0603ff75022 100644 --- a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs +++ b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs @@ -340,7 +340,7 @@ private void UpdateConsoleState(EntityUid uid, EmergencyShuttleConsoleComponent } if (_uiSystem.TryGetUi(uid, EmergencyConsoleUiKey.Key, out var bui)) - UserInterfaceSystem.SetUiState( + _uiSystem.SetUiState( bui, new EmergencyConsoleBoundUserInterfaceState() { diff --git a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs index a6bdc043a94..1a1debc9e3b 100644 --- a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs +++ b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs @@ -165,7 +165,7 @@ private void OnShuttleRequestPosition(EmergencyShuttleRequestPositionMessage msg RaiseNetworkEvent(new EmergencyShuttlePositionMessage() { - StationUid = targetGrid, + StationUid = GetNetEntity(targetGrid), Position = config.Area, }); } diff --git a/Content.Server/Shuttles/Systems/RadarConsoleSystem.cs b/Content.Server/Shuttles/Systems/RadarConsoleSystem.cs index a52c40cb2c9..a8d380541b7 100644 --- a/Content.Server/Shuttles/Systems/RadarConsoleSystem.cs +++ b/Content.Server/Shuttles/Systems/RadarConsoleSystem.cs @@ -45,9 +45,9 @@ protected override void UpdateState(EntityUid uid, RadarConsoleComponent compone } if (_uiSystem.TryGetUi(uid, RadarConsoleUiKey.Key, out var bui)) - UserInterfaceSystem.SetUiState(bui, new RadarConsoleBoundInterfaceState( + _uiSystem.SetUiState(bui, new RadarConsoleBoundInterfaceState( component.MaxRange, - coordinates, + GetNetCoordinates(coordinates), angle, new List() )); diff --git a/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.cs b/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.cs index 5acf8f75dd1..72575be9419 100644 --- a/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.cs +++ b/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.cs @@ -74,7 +74,9 @@ private void OnFtlDestShutdown(EntityUid uid, FTLDestinationComponent component, private void OnDestinationMessage(EntityUid uid, ShuttleConsoleComponent component, ShuttleConsoleFTLRequestMessage args) { - if (!TryComp(args.Destination, out var dest)) + var destination = GetEntity(args.Destination); + + if (!TryComp(destination, out var dest)) { return; } @@ -118,11 +120,14 @@ private void OnDestinationMessage(EntityUid uid, ShuttleConsoleComponent compone return; } - var dock = HasComp(args.Destination) && HasComp(args.Destination); + var dock = HasComp(destination) && HasComp(destination); var tagEv = new FTLTagEvent(); RaiseLocalEvent(xform.GridUid.Value, ref tagEv); - _shuttle.FTLTravel(xform.GridUid.Value, shuttle, args.Destination, dock: dock, priorityTag: tagEv.Tag); + var ev = new ShuttleConsoleFTLTravelStartEvent(uid); + RaiseLocalEvent(ref ev); + + _shuttle.FTLTravel(xform.GridUid.Value, shuttle, destination, dock: dock, priorityTag: tagEv.Tag); } private void OnDock(DockEvent ev) @@ -211,7 +216,7 @@ private bool TryPilot(EntityUid user, EntityUid uid) { RemovePilot(user, pilotComponent); - // This feels backwards; is this intended to be a toggle? + // This feels backwards; is this intended to be a toggle? if (console == uid) return false; } @@ -222,7 +227,7 @@ private bool TryPilot(EntityUid user, EntityUid uid) private void OnGetState(EntityUid uid, PilotComponent component, ref ComponentGetState args) { - args.State = new PilotComponentState(component.Console); + args.State = new PilotComponentState(GetNetEntity(component.Console)); } /// @@ -241,9 +246,9 @@ private List GetAllDocks() var state = new DockingInterfaceState() { - Coordinates = xform.Coordinates, + Coordinates = GetNetCoordinates(xform.Coordinates), Angle = xform.LocalRotation, - Entity = uid, + Entity = GetNetEntity(uid), Connected = comp.Docked, Color = comp.RadarColor, Name = comp.Name, @@ -273,7 +278,7 @@ private void UpdateState(EntityUid consoleUid, List? dock var shuttleGridUid = consoleXform?.GridUid; - var destinations = new List<(EntityUid, string, bool)>(); + var destinations = new List<(NetEntity, string, bool)>(); var ftlState = FTLState.Available; var ftlTime = TimeSpan.Zero; @@ -322,22 +327,24 @@ private void UpdateState(EntityUid consoleUid, List? dock canTravel = false; } - destinations.Add((destUid, name, canTravel)); + destinations.Add((GetNetEntity(destUid), name, canTravel)); } } docks ??= GetAllDocks(); if (_ui.TryGetUi(consoleUid, ShuttleConsoleUiKey.Key, out var bui)) - UserInterfaceSystem.SetUiState(bui, new ShuttleConsoleBoundInterfaceState( + { + _ui.SetUiState(bui, new ShuttleConsoleBoundInterfaceState( ftlState, ftlTime, destinations, range, - consoleXform?.Coordinates, + GetNetCoordinates(consoleXform?.Coordinates), consoleXform?.LocalRotation, docks )); + } } public override void Update(float frameTime) diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs index ac966293798..8d3d276c44a 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs @@ -1,5 +1,7 @@ using Content.Server.Shuttles.Components; using Content.Server.Station.Systems; +using Content.Shared.Body.Components; +using Content.Shared.Maps; using Content.Shared.Parallax; using Content.Shared.Shuttles.Systems; using Content.Shared.StatusEffect; @@ -17,6 +19,7 @@ using Content.Shared.Doors.Components; using Content.Shared.Mobs.Components; using Content.Shared.Shuttles.Components; +using Content.Shared.Throwing; using JetBrains.Annotations; using Robust.Shared.Map.Components; using Robust.Shared.Physics; @@ -75,8 +78,20 @@ public sealed partial class ShuttleSystem /// public const float FTLDestinationMass = 1000f; + private EntityQuery _bodyQuery; + private EntityQuery _buckleQuery; + private EntityQuery _physicsQuery; + private EntityQuery _statusQuery; + private EntityQuery _xformQuery; + private void InitializeFTL() { + _bodyQuery = GetEntityQuery(); + _buckleQuery = GetEntityQuery(); + _physicsQuery = GetEntityQuery(); + _statusQuery = GetEntityQuery(); + _xformQuery = GetEntityQuery(); + SubscribeLocalEvent(OnStationGridAdd); } @@ -461,34 +476,61 @@ private void CleanupHyperspace() /// private void DoTheDinosaur(TransformComponent xform) { - var buckleQuery = GetEntityQuery(); - var statusQuery = GetEntityQuery(); // Get enumeration exceptions from people dropping things if we just paralyze as we go var toKnock = new ValueList(); + KnockOverKids(xform, ref toKnock); - KnockOverKids(xform, buckleQuery, statusQuery, ref toKnock); - - foreach (var child in toKnock) + if (TryComp(xform.GridUid, out var shuttleBody)) { - if (!statusQuery.TryGetComponent(child, out var status)) continue; - _stuns.TryParalyze(child, _hyperspaceKnockdownTime, true, status); + + foreach (var child in toKnock) + { + if (!_statusQuery.TryGetComponent(child, out var status)) continue; + _stuns.TryParalyze(child, _hyperspaceKnockdownTime, true, status); + + // If the guy we knocked down is on a spaced tile, throw them too + TossIfSpaced(shuttleBody, child); + } } } - private void KnockOverKids(TransformComponent xform, EntityQuery buckleQuery, EntityQuery statusQuery, ref ValueList toKnock) + private void KnockOverKids(TransformComponent xform, ref ValueList toKnock) { // Not recursive because probably not necessary? If we need it to be that's why this method is separate. var childEnumerator = xform.ChildEnumerator; - while (childEnumerator.MoveNext(out var child)) { - if (!buckleQuery.TryGetComponent(child.Value, out var buckle) || buckle.Buckled) + if (!_buckleQuery.TryGetComponent(child.Value, out var buckle) || buckle.Buckled) continue; toKnock.Add(child.Value); } } + /// + /// Throws people who are standing on a spaced tile, tries to throw them towards a neighbouring space tile + /// + private void TossIfSpaced(PhysicsComponent shuttleBody, EntityUid tossed) + { + + if (!_xformQuery.TryGetComponent(tossed, out var childXform)) + return; + + if (!_physicsQuery.TryGetComponent(tossed, out var phys)) + return; + + // only toss if its on lattice/space + var tile = childXform.Coordinates.GetTileRef(EntityManager, _mapManager); + + if (tile != null && tile.Value.IsSpace() && _mapManager.TryGetGrid(tile.Value.GridUid, out var grid)) + { + Vector2 direction = -Vector2.UnitY; + + var foo = childXform.LocalPosition - shuttleBody.LocalCenter; + _throwing.TryThrow(tossed, foo.Normalized() * 10.0f, 50.0f); + } + } + /// /// Tries to dock with the target grid, otherwise falls back to proximity. /// diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.Impact.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.Impact.cs index 4fbd90449fe..73dc4b208c2 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.Impact.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.Impact.cs @@ -1,4 +1,5 @@ using Content.Server.Shuttles.Components; +using Content.Shared.Audio; using Robust.Shared.Audio; using Robust.Shared.Map; using Robust.Shared.Physics.Dynamics; @@ -51,7 +52,7 @@ private void OnShuttleCollide(EntityUid uid, ShuttleComponent component, ref Sta var coordinates = new EntityCoordinates(ourXform.MapUid.Value, args.WorldPoint); var volume = MathF.Min(10f, 1f * MathF.Pow(jungleDiff, 0.5f) - 5f); - var audioParams = AudioParams.Default.WithVariation(0.05f).WithVolume(volume); + var audioParams = AudioParams.Default.WithVariation(SharedContentAudioSystem.DefaultVariation).WithVolume(volume); _audio.Play(_shuttleImpactSound, Filter.Pvs(coordinates, rangeMultiplier: 4f, entityMan: EntityManager), coordinates, true, audioParams); } diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.cs index 5fe0bc615de..cc93858948d 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.cs @@ -6,6 +6,7 @@ using Content.Shared.GameTicking; using Content.Shared.Mobs.Systems; using Content.Shared.Shuttles.Systems; +using Content.Shared.Throwing; using JetBrains.Annotations; using Robust.Server.GameObjects; using Robust.Shared.Configuration; @@ -36,6 +37,7 @@ public sealed partial class ShuttleSystem : SharedShuttleSystem [Dependency] private readonly ShuttleConsoleSystem _console = default!; [Dependency] private readonly StationSystem _station = default!; [Dependency] private readonly StunSystem _stuns = default!; + [Dependency] private readonly ThrowingSystem _throwing = default!; [Dependency] private readonly ThrusterSystem _thruster = default!; [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; [Dependency] private readonly IConfigurationManager _cfg = default!; @@ -54,7 +56,6 @@ public override void Initialize() InitializeIFF(); InitializeImpact(); - SubscribeLocalEvent(OnShuttleAdd); SubscribeLocalEvent(OnShuttleStartup); SubscribeLocalEvent(OnShuttleShutdown); @@ -82,21 +83,12 @@ private void OnRoundRestart(RoundRestartCleanupEvent ev) CleanupHyperspace(); } - private void OnShuttleAdd(EntityUid uid, ShuttleComponent component, ComponentAdd args) - { - // Easier than doing it in the comp and they don't have constructors. - for (var i = 0; i < component.LinearThrusters.Length; i++) - { - component.LinearThrusters[i] = new List(); - } - } - private void OnGridFixtureChange(EntityUid uid, FixturesComponent manager, GridFixtureChangeEvent args) { foreach (var fixture in args.NewFixtures) { - _physics.SetDensity(uid, fixture, TileMassMultiplier, false, manager); - _fixtures.SetRestitution(uid, fixture, 0.1f, false, manager); + _physics.SetDensity(uid, fixture.Key, fixture.Value, TileMassMultiplier, false, manager); + _fixtures.SetRestitution(uid, fixture.Key, fixture.Value, 0.1f, false, manager); } } diff --git a/Content.Server/Shuttles/Systems/ThrusterSystem.cs b/Content.Server/Shuttles/Systems/ThrusterSystem.cs index fd7773381f0..568d4bbe2f3 100644 --- a/Content.Server/Shuttles/Systems/ThrusterSystem.cs +++ b/Content.Server/Shuttles/Systems/ThrusterSystem.cs @@ -1,5 +1,5 @@ -using Content.Server.Emp; using System.Numerics; +using Content.Server.Emp; using Content.Server.Audio; using Content.Server.Construction; using Content.Server.Power.Components; @@ -12,7 +12,6 @@ using Content.Shared.Physics; using Content.Shared.Shuttles.Components; using Content.Shared.Temperature; -using Robust.Server.GameObjects; using Robust.Shared.Map; using Robust.Shared.Physics.Collision.Shapes; using Robust.Shared.Physics.Components; @@ -37,6 +36,7 @@ public sealed class ThrusterSystem : EntitySystem [Dependency] private readonly AmbientSoundSystem _ambient = default!; [Dependency] private readonly FixtureSystem _fixtureSystem = default!; [Dependency] private readonly DamageableSystem _damageable = default!; + [Dependency] private readonly SharedPointLightSystem _light = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; // Essentially whenever thruster enables we update the shuttle's available impulses which are used for movement. @@ -142,7 +142,6 @@ private void OnActivateThruster(EntityUid uid, ThrusterComponent component, Acti component.Enabled ^= true; } - /// /// If the thruster rotates change the direction where the linear thrust is applied /// @@ -182,10 +181,12 @@ private void OnRotate(EntityUid uid, ThrusterComponent component, ref MoveEvent var direction = (int) args.NewRotation.GetCardinalDir() / 2; shuttleComponent.LinearThrust[oldDirection] -= component.Thrust; + shuttleComponent.BaseLinearThrust[oldDirection] -= component.BaseThrust; DebugTools.Assert(shuttleComponent.LinearThrusters[oldDirection].Contains(uid)); shuttleComponent.LinearThrusters[oldDirection].Remove(uid); shuttleComponent.LinearThrust[direction] += component.Thrust; + shuttleComponent.BaseLinearThrust[direction] += component.BaseThrust; DebugTools.Assert(!shuttleComponent.LinearThrusters[direction].Contains(uid)); shuttleComponent.LinearThrusters[direction].Add(uid); } @@ -278,6 +279,7 @@ public void EnableThruster(EntityUid uid, ThrusterComponent component, Transform var direction = (int) xform.LocalRotation.GetCardinalDir() / 2; shuttleComponent.LinearThrust[direction] += component.Thrust; + shuttleComponent.BaseLinearThrust[direction] += component.BaseThrust; DebugTools.Assert(!shuttleComponent.LinearThrusters[direction].Contains(uid)); shuttleComponent.LinearThrusters[direction].Add(uid); @@ -305,9 +307,9 @@ public void EnableThruster(EntityUid uid, ThrusterComponent component, Transform _appearance.SetData(uid, ThrusterVisualState.State, true, appearance); } - if (EntityManager.TryGetComponent(uid, out PointLightComponent? pointLightComponent)) + if (_light.TryGetLight(uid, out var pointLightComponent)) { - pointLightComponent.Enabled = true; + _light.SetEnabled(uid, true, pointLightComponent); } _ambient.SetAmbience(uid, true); @@ -376,6 +378,7 @@ public void DisableThruster(EntityUid uid, ThrusterComponent component, EntityUi var direction = (int) angle.Value.GetCardinalDir() / 2; shuttleComponent.LinearThrust[direction] -= component.Thrust; + shuttleComponent.BaseLinearThrust[direction] -= component.BaseThrust; DebugTools.Assert(shuttleComponent.LinearThrusters[direction].Contains(uid)); shuttleComponent.LinearThrusters[direction].Remove(uid); break; @@ -393,9 +396,9 @@ public void DisableThruster(EntityUid uid, ThrusterComponent component, EntityUi _appearance.SetData(uid, ThrusterVisualState.State, false, appearance); } - if (EntityManager.TryGetComponent(uid, out PointLightComponent? pointLightComponent)) + if (_light.TryGetLight(uid, out var pointLightComponent)) { - pointLightComponent.Enabled = false; + _light.SetEnabled(uid, false, pointLightComponent); } _ambient.SetAmbience(uid, false); @@ -481,7 +484,7 @@ public override void Update(float frameTime) private void OnStartCollide(EntityUid uid, ThrusterComponent component, ref StartCollideEvent args) { - if (args.OurFixture.ID != BurnFixture) + if (args.OurFixtureId != BurnFixture) return; component.Colliding.Add(args.OtherEntity); @@ -489,7 +492,7 @@ private void OnStartCollide(EntityUid uid, ThrusterComponent component, ref Star private void OnEndCollide(EntityUid uid, ThrusterComponent component, ref EndCollideEvent args) { - if (args.OurFixture.ID != BurnFixture) + if (args.OurFixtureId != BurnFixture) return; component.Colliding.Remove(args.OtherEntity); @@ -588,9 +591,15 @@ public void SetAngularThrust(ShuttleComponent component, bool on) private void OnRefreshParts(EntityUid uid, ThrusterComponent component, RefreshPartsEvent args) { + if (component.IsOn) // safely disable thruster to prevent negative thrust + DisableThruster(uid, component); + var thrustRating = args.PartRatings[component.MachinePartThrust]; component.Thrust = component.BaseThrust * MathF.Pow(component.PartRatingThrustMultiplier, thrustRating - 1); + + if (component.Enabled && CanEnable(uid, component)) + EnableThruster(uid, component); } private void OnUpgradeExamine(EntityUid uid, ThrusterComponent component, UpgradeExamineEvent args) diff --git a/Content.Server/Silicons/Borgs/BorgSystem.MMI.cs b/Content.Server/Silicons/Borgs/BorgSystem.MMI.cs index 6e700520602..76ccb21da35 100644 --- a/Content.Server/Silicons/Borgs/BorgSystem.MMI.cs +++ b/Content.Server/Silicons/Borgs/BorgSystem.MMI.cs @@ -1,5 +1,5 @@ -using Content.Server.Mind.Components; -using Content.Shared.Containers.ItemSlots; +using Content.Shared.Containers.ItemSlots; +using Content.Shared.Mind.Components; using Content.Shared.Silicons.Borgs.Components; using Robust.Shared.Containers; @@ -40,8 +40,8 @@ private void OnMMIEntityInserted(EntityUid uid, MMIComponent component, EntInser linked.LinkedMMI = uid; Dirty(uid, component); - if (_mind.TryGetMind(ent, out var mind)) - _mind.TransferTo(mind, uid, true); + if (_mind.TryGetMind(ent, out var mindId, out var mind)) + _mind.TransferTo(mindId, uid, true, mind: mind); _appearance.SetData(uid, MMIVisuals.BrainPresent, true); } @@ -58,9 +58,11 @@ private void OnMMIMindRemoved(EntityUid uid, MMIComponent component, MindRemoved private void OnMMILinkedMindAdded(EntityUid uid, MMILinkedComponent component, MindAddedMessage args) { - if (!_mind.TryGetMind(uid, out var mind) || component.LinkedMMI == null) + if (!_mind.TryGetMind(uid, out var mindId, out var mind) || + component.LinkedMMI == null) return; - _mind.TransferTo(mind, component.LinkedMMI, true); + + _mind.TransferTo(mindId, component.LinkedMMI, true, mind: mind); } private void OnMMILinkedRemoved(EntityUid uid, MMILinkedComponent component, EntGotRemovedFromContainerMessage args) @@ -72,8 +74,8 @@ private void OnMMILinkedRemoved(EntityUid uid, MMILinkedComponent component, Ent return; RemComp(uid, component); - if (_mind.TryGetMind(linked, out var mind)) - _mind.TransferTo(mind, uid, true); + if (_mind.TryGetMind(linked, out var mindId, out var mind)) + _mind.TransferTo(mindId, uid, true, mind: mind); _appearance.SetData(linked, MMIVisuals.BrainPresent, false); } diff --git a/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs b/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs index 3e939336050..51987fb721c 100644 --- a/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs +++ b/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs @@ -57,8 +57,14 @@ private void OnProvideItemStartup(EntityUid uid, ItemBorgModuleComponent compone private void OnSelectableInstalled(EntityUid uid, SelectableBorgModuleComponent component, ref BorgModuleInstalledEvent args) { var chassis = args.ChassisEnt; - component.ModuleSwapAction.EntityIcon = uid; - _actions.AddAction(chassis, component.ModuleSwapAction, uid); + + var action = _actions.AddAction(chassis, ref component.ModuleSwapActionEntity, component.ModuleSwapActionId, uid); + if (action != null) + { + action.EntityIcon = uid; + Dirty(component.ModuleSwapActionEntity!.Value, action); + } + SelectModule(chassis, uid, moduleComp: component); } diff --git a/Content.Server/Silicons/Borgs/BorgSystem.Ui.cs b/Content.Server/Silicons/Borgs/BorgSystem.Ui.cs index aefe91b07c2..ad2622af509 100644 --- a/Content.Server/Silicons/Borgs/BorgSystem.Ui.cs +++ b/Content.Server/Silicons/Borgs/BorgSystem.Ui.cs @@ -84,13 +84,15 @@ private void OnRemoveModuleBuiMessage(EntityUid uid, BorgChassisComponent compon if (args.Session.AttachedEntity is not { } attachedEntity) return; - if (!component.ModuleContainer.Contains(args.Module)) + var module = GetEntity(args.Module); + + if (!component.ModuleContainer.Contains(module)) return; _adminLog.Add(LogType.Action, LogImpact.Medium, - $"{ToPrettyString(attachedEntity):player} removed module {ToPrettyString(args.Module)} from borg {ToPrettyString(uid)}"); - component.ModuleContainer.Remove(args.Module); - _hands.TryPickupAnyHand(attachedEntity, args.Module); + $"{ToPrettyString(attachedEntity):player} removed module {ToPrettyString(module)} from borg {ToPrettyString(uid)}"); + component.ModuleContainer.Remove(module); + _hands.TryPickupAnyHand(attachedEntity, module); UpdateUI(uid, component); } diff --git a/Content.Server/Silicons/Borgs/BorgSystem.cs b/Content.Server/Silicons/Borgs/BorgSystem.cs index 9b9284c2a9f..611dfa6ea2a 100644 --- a/Content.Server/Silicons/Borgs/BorgSystem.cs +++ b/Content.Server/Silicons/Borgs/BorgSystem.cs @@ -2,8 +2,6 @@ using Content.Server.Administration.Logs; using Content.Server.Administration.Managers; using Content.Server.Hands.Systems; -using Content.Server.Mind; -using Content.Server.Mind.Components; using Content.Server.PowerCell; using Content.Server.UserInterface; using Content.Shared.Access.Systems; @@ -11,6 +9,8 @@ using Content.Shared.Database; using Content.Shared.IdentityManagement; using Content.Shared.Interaction; +using Content.Shared.Mind; +using Content.Shared.Mind.Components; using Content.Shared.Movement.Systems; using Content.Shared.PowerCell; using Content.Shared.PowerCell.Components; @@ -20,8 +20,8 @@ using Content.Shared.Throwing; using Content.Shared.Wires; using Robust.Server.GameObjects; -using Robust.Server.Player; using Robust.Shared.Containers; +using Robust.Shared.Players; using Robust.Shared.Random; namespace Content.Server.Silicons.Borgs; @@ -38,7 +38,7 @@ public sealed partial class BorgSystem : SharedBorgSystem [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly HandsSystem _hands = default!; [Dependency] private readonly MetaDataSystem _metaData = default!; - [Dependency] private readonly MindSystem _mind = default!; + [Dependency] private readonly SharedMindSystem _mind = default!; [Dependency] private readonly MovementSpeedModifierSystem _movementSpeedModifier = default!; [Dependency] private readonly PowerCellSystem _powerCell = default!; [Dependency] private readonly ThrowingSystem _throwing = default!; @@ -96,7 +96,7 @@ private void OnChassisInteractUsing(EntityUid uid, BorgChassisComponent componen brain != null && component.BrainWhitelist?.IsValid(used) != false) { - if (_mind.TryGetMind(used, out var mind) && mind.Session != null) + if (_mind.TryGetMind(used, out _, out var mind) && mind.Session != null) { if (!CanPlayerBeBorgged(mind.Session)) { @@ -127,9 +127,9 @@ protected override void OnInserted(EntityUid uid, BorgChassisComponent component { base.OnInserted(uid, component, args); - if (HasComp(args.Entity) && _mind.TryGetMind(args.Entity, out var mind)) + if (HasComp(args.Entity) && _mind.TryGetMind(args.Entity, out var mindId, out var mind)) { - _mind.TransferTo(mind, uid); + _mind.TransferTo(mindId, uid, mind: mind); } } @@ -137,9 +137,10 @@ protected override void OnRemoved(EntityUid uid, BorgChassisComponent component, { base.OnRemoved(uid, component, args); - if (HasComp(args.Entity) && _mind.TryGetMind(uid, out var mind)) + if (HasComp(args.Entity) & + _mind.TryGetMind(uid, out var mindId, out var mind)) { - _mind.TransferTo(mind, args.Entity); + _mind.TransferTo(mindId, args.Entity, mind: mind); } } @@ -171,7 +172,7 @@ private void OnPowerCellChanged(EntityUid uid, BorgChassisComponent component, P if (_powerCell.HasDrawCharge(uid, draw)) { // only reenable the powerdraw if a player has the role. - if (!draw.Drawing && _mind.TryGetMind(uid, out _)) + if (!draw.Drawing && _mind.TryGetMind(uid, out _, out _)) _powerCell.SetPowerCellDrawEnabled(uid, true); EnableBorgAbilities(uid, component); @@ -209,7 +210,7 @@ private void OnBrainMindAdded(EntityUid uid, BorgBrainComponent component, MindA container.ID != chassisComponent.BrainContainerId) return; - if (!_mind.TryGetMind(uid, out var mind) || mind.Session == null) + if (!_mind.TryGetMind(uid, out var mindId, out var mind) || mind.Session == null) return; if (!CanPlayerBeBorgged(mind.Session)) @@ -220,7 +221,7 @@ private void OnBrainMindAdded(EntityUid uid, BorgBrainComponent component, MindA return; } - _mind.TransferTo(mind, containerEnt); + _mind.TransferTo(mindId, containerEnt, mind: mind); } private void UpdateBatteryAlert(EntityUid uid, PowerCellSlotComponent? slotComponent = null) @@ -301,7 +302,7 @@ public void BorgDeactivate(EntityUid uid, BorgChassisComponent component) /// Checks that a player has fulfilled the requirements for the borg job. /// If they don't have enough hours, they cannot be placed into a chassis. /// - public bool CanPlayerBeBorgged(IPlayerSession session) + public bool CanPlayerBeBorgged(ICommonSession session) { if (_banManager.GetJobBans(session.UserId)?.Contains(BorgJobId) == true) return false; diff --git a/Content.Server/Silicons/Laws/SiliconLawSystem.cs b/Content.Server/Silicons/Laws/SiliconLawSystem.cs index cda9b2d1d92..1d5c2e35e8b 100644 --- a/Content.Server/Silicons/Laws/SiliconLawSystem.cs +++ b/Content.Server/Silicons/Laws/SiliconLawSystem.cs @@ -1,21 +1,21 @@ -using System.Linq; using Content.Server.Administration; using Content.Server.Chat.Managers; using Content.Server.GameTicking; -using Content.Server.Mind; -using Content.Server.Mind.Components; +using Content.Server.Radio.Components; using Content.Server.Roles; using Content.Server.Station.Systems; using Content.Shared.Actions; -using Content.Shared.Actions.ActionTypes; using Content.Shared.Administration; using Content.Shared.Chat; using Content.Shared.Emag.Components; using Content.Shared.Emag.Systems; using Content.Shared.Examine; +using Content.Shared.Mind; +using Content.Shared.Mind.Components; using Content.Shared.Roles; using Content.Shared.Silicons.Laws; using Content.Shared.Silicons.Laws.Components; +using Content.Shared.Stunnable; using Content.Shared.Wires; using Robust.Server.GameObjects; using Robust.Server.Player; @@ -29,17 +29,19 @@ public sealed class SiliconLawSystem : SharedSiliconLawSystem { [Dependency] private readonly IChatManager _chatManager = default!; [Dependency] private readonly IPrototypeManager _prototype = default!; - [Dependency] private readonly MindSystem _mind = default!; + [Dependency] private readonly SharedMindSystem _mind = default!; [Dependency] private readonly SharedActionsSystem _actions = default!; [Dependency] private readonly StationSystem _station = default!; [Dependency] private readonly UserInterfaceSystem _userInterface = default!; + [Dependency] private readonly SharedStunSystem _stunSystem = default!; + [Dependency] private readonly IEntityManager _entityManager = default!; + [Dependency] private readonly SharedRoleSystem _roles = default!; /// public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnComponentStartup); SubscribeLocalEvent(OnComponentShutdown); SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnMindAdded); @@ -54,20 +56,15 @@ public override void Initialize() SubscribeLocalEvent(OnExamined); } - private void OnComponentStartup(EntityUid uid, SiliconLawBoundComponent component, ComponentStartup args) - { - component.ProvidedAction = new (_prototype.Index(component.ViewLawsAction)); - _actions.AddAction(uid, component.ProvidedAction, null); - } - private void OnComponentShutdown(EntityUid uid, SiliconLawBoundComponent component, ComponentShutdown args) { - if (component.ProvidedAction != null) - _actions.RemoveAction(uid, component.ProvidedAction); + if (component.ViewLawsActionEntity != null) + _actions.RemoveAction(uid, component.ViewLawsActionEntity); } private void OnMapInit(EntityUid uid, SiliconLawBoundComponent component, MapInitEvent args) { + _actions.AddAction(uid, ref component.ViewLawsActionEntity, component.ViewLawsAction); GetLaws(uid, component); } @@ -93,7 +90,10 @@ private void OnToggleLawsScreen(EntityUid uid, SiliconLawBoundComponent componen private void OnBoundUIOpened(EntityUid uid, SiliconLawBoundComponent component, BoundUIOpenedEvent args) { - var state = new SiliconLawBuiState(GetLaws(uid)); + _entityManager.TryGetComponent(uid, out var intrinsicRadio); + HashSet? radioChannels = intrinsicRadio?.Channels; + + var state = new SiliconLawBuiState(GetLaws(uid), radioChannels); _userInterface.TrySetUiState(args.Entity, SiliconLawsUiKey.Key, state, (IPlayerSession) args.Session); } @@ -120,11 +120,20 @@ private void OnDirectedEmagGetLaws(EntityUid uid, EmagSiliconLawComponent compon if (args.Handled || !HasComp(uid) || component.OwnerName == null) return; + // Add the first emag law args.Laws.Add(new SiliconLaw { LawString = Loc.GetString("law-emag-custom", ("name", component.OwnerName)), Order = 0 }); + + // Add new emagged laws + foreach (var law in component.EmagLaws) + { + args.Laws.Add(_prototype.Index(law)); + } + + args.Handled = true; } private void OnExamined(EntityUid uid, EmagSiliconLawComponent component, ExaminedEvent args) @@ -146,6 +155,8 @@ protected override void OnGotEmagged(EntityUid uid, EmagSiliconLawComponent comp base.OnGotEmagged(uid, component, ref args); NotifyLawsChanged(uid); EnsureEmaggedRole(uid, component); + + _stunSystem.TryParalyze(uid, component.StunTime, true); } private void OnEmagMindAdded(EntityUid uid, EmagSiliconLawComponent component, MindAddedMessage args) @@ -159,20 +170,18 @@ private void OnEmagMindRemoved(EntityUid uid, EmagSiliconLawComponent component, if (component.AntagonistRole == null) return; - if (args.OldMind.Roles.FirstOrDefault(r => r is SubvertedSiliconRole) is not { } role) - return; - - _mind.RemoveRole(args.OldMind, role); + _roles.MindTryRemoveRole(args.OldMindId); } private void EnsureEmaggedRole(EntityUid uid, EmagSiliconLawComponent component) { - if (component.AntagonistRole == null || !_mind.TryGetMind(uid, out var mind)) + if (component.AntagonistRole == null || !_mind.TryGetMind(uid, out var mindId, out _)) return; - if (_mind.HasRole(mind)) + if (_roles.MindHasRole(mindId)) return; - _mind.AddRole(mind, new SubvertedSiliconRole(mind, _prototype.Index(component.AntagonistRole))); + + _roles.MindAddRole(mindId, new SubvertedSiliconRoleComponent { PrototypeId = component.AntagonistRole }); } public List GetLaws(EntityUid uid, SiliconLawBoundComponent? component = null) diff --git a/Content.Server/Singularity/Components/GravityWellComponent.cs b/Content.Server/Singularity/Components/GravityWellComponent.cs index 53993e3798e..58a314fa8bb 100644 --- a/Content.Server/Singularity/Components/GravityWellComponent.cs +++ b/Content.Server/Singularity/Components/GravityWellComponent.cs @@ -8,7 +8,7 @@ namespace Content.Server.Singularity.Components; /// Primarily managed by . /// [RegisterComponent] -public sealed class GravityWellComponent : Component +public sealed partial class GravityWellComponent : Component { /// /// The maximum range at which the gravity well can push/pull entities. diff --git a/Content.Server/Singularity/Components/RadiationCollectorComponent.cs b/Content.Server/Singularity/Components/RadiationCollectorComponent.cs index 5c4130058b4..649514ed420 100644 --- a/Content.Server/Singularity/Components/RadiationCollectorComponent.cs +++ b/Content.Server/Singularity/Components/RadiationCollectorComponent.cs @@ -1,37 +1,87 @@ using Content.Server.Singularity.EntitySystems; +using Content.Shared.Atmos; -namespace Content.Server.Singularity.Components +namespace Content.Server.Singularity.Components; + +/// +/// Generates electricity from radiation. +/// +[RegisterComponent] +[Access(typeof(RadiationCollectorSystem))] +public sealed partial class RadiationCollectorComponent : Component { /// - /// Generates electricity from radiation. - /// - [RegisterComponent] - [Access(typeof(RadiationCollectorSystem))] - public sealed class RadiationCollectorComponent : Component - { - /// - /// How much joules will collector generate for each rad. - /// - [DataField("chargeModifier")] - [ViewVariables(VVAccess.ReadWrite)] - public float ChargeModifier = 30000f; - - /// - /// Cooldown time between users interaction. - /// - [DataField("cooldown")] - [ViewVariables(VVAccess.ReadWrite)] - public TimeSpan Cooldown = TimeSpan.FromSeconds(0.81f); - - /// - /// Was machine activated by user? - /// - [ViewVariables(VVAccess.ReadOnly)] - public bool Enabled; - - /// - /// Timestamp when machine can be deactivated again. - /// - public TimeSpan CoolDownEnd; - } + /// How much joules will collector generate for each rad. + /// + [DataField("chargeModifier")] + [ViewVariables(VVAccess.ReadWrite)] + public float ChargeModifier = 30000f; + + /// + /// Cooldown time between users interaction. + /// + [DataField("cooldown")] + [ViewVariables(VVAccess.ReadWrite)] + public TimeSpan Cooldown = TimeSpan.FromSeconds(0.81f); + + /// + /// Was machine activated by user? + /// + [ViewVariables(VVAccess.ReadOnly)] + public bool Enabled; + + /// + /// Timestamp when machine can be deactivated again. + /// + public TimeSpan CoolDownEnd; + + /// + /// List of gases that will react to the radiation passing through the collector + /// + [DataField("radiationReactiveGases")] + [ViewVariables(VVAccess.ReadWrite)] + public List? RadiationReactiveGases; +} + +/// +/// Describes how a gas reacts to the collected radiation +/// +[DataDefinition] +public sealed partial class RadiationReactiveGas +{ + /// + /// The reactant gas + /// + [DataField("reactantPrototype", required: true)] + public Gas Reactant = Gas.Plasma; + + /// + /// Multipier for the amount of power produced by the radiation collector when using this gas + /// + [DataField("powerGenerationEfficiency")] + public float PowerGenerationEfficiency = 1f; + + /// + /// Controls the rate (molar percentage per rad) at which the reactant breaks down when exposed to radiation + /// + /// /// + /// Set to zero if the reactant does not deplete + /// + [DataField("reactantBreakdownRate")] + public float ReactantBreakdownRate = 1f; + + /// + /// A byproduct gas that is generated when the reactant breaks down + /// + /// + /// Leave null if the reactant no byproduct gas is to be formed + /// + [DataField("byproductPrototype")] + public Gas? Byproduct = null; + + /// + /// The molar ratio of the byproduct gas generated from the reactant gas + /// + [DataField("molarRatio")] + public float MolarRatio = 1f; } diff --git a/Content.Server/Singularity/Components/SingularityGeneratorComponent.cs b/Content.Server/Singularity/Components/SingularityGeneratorComponent.cs index 59a17e834a7..ea2628e5cb8 100644 --- a/Content.Server/Singularity/Components/SingularityGeneratorComponent.cs +++ b/Content.Server/Singularity/Components/SingularityGeneratorComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Singularity.Components; [RegisterComponent] -public sealed class SingularityGeneratorComponent : Component +public sealed partial class SingularityGeneratorComponent : Component { /// /// The amount of power this generator has accumulated. diff --git a/Content.Server/Singularity/Components/SinguloFoodComponent.cs b/Content.Server/Singularity/Components/SinguloFoodComponent.cs index 0da73635339..e9f9da15c13 100644 --- a/Content.Server/Singularity/Components/SinguloFoodComponent.cs +++ b/Content.Server/Singularity/Components/SinguloFoodComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Singularity.Components /// Overrides exactly how much energy this object gives to a singularity. /// [RegisterComponent] - public sealed class SinguloFoodComponent : Component + public sealed partial class SinguloFoodComponent : Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("energy")] diff --git a/Content.Server/Singularity/EntitySystems/ContainmentFieldGeneratorSystem.cs b/Content.Server/Singularity/EntitySystems/ContainmentFieldGeneratorSystem.cs index ac213423760..a0621ef63de 100644 --- a/Content.Server/Singularity/EntitySystems/ContainmentFieldGeneratorSystem.cs +++ b/Content.Server/Singularity/EntitySystems/ContainmentFieldGeneratorSystem.cs @@ -18,10 +18,11 @@ namespace Content.Server.Singularity.EntitySystems; public sealed class ContainmentFieldGeneratorSystem : EntitySystem { [Dependency] private readonly IAdminLogManager _adminLogger = default!; - [Dependency] private readonly TagSystem _tags = default!; - [Dependency] private readonly PopupSystem _popupSystem = default!; - [Dependency] private readonly PhysicsSystem _physics = default!; [Dependency] private readonly AppearanceSystem _visualizer = default!; + [Dependency] private readonly PhysicsSystem _physics = default!; + [Dependency] private readonly PopupSystem _popupSystem = default!; + [Dependency] private readonly SharedPointLightSystem _light = default!; + [Dependency] private readonly TagSystem _tags = default!; public override void Initialize() { @@ -325,9 +326,9 @@ private List GenerateFieldConnection(ContainmentFieldGeneratorCompone /// public void UpdateConnectionLights(ContainmentFieldGeneratorComponent component) { - if (EntityManager.TryGetComponent(component.Owner, out var pointLightComponent)) + if (_light.TryGetLight(component.Owner, out var pointLightComponent)) { - pointLightComponent.Enabled = component.Connections.Count > 0; + _light.SetEnabled(component.Owner, component.Connections.Count > 0, pointLightComponent); } } diff --git a/Content.Server/Singularity/EntitySystems/EventHorizonSystem.cs b/Content.Server/Singularity/EntitySystems/EventHorizonSystem.cs index cca68ccc5e7..fd9eb3e8c62 100644 --- a/Content.Server/Singularity/EntitySystems/EventHorizonSystem.cs +++ b/Content.Server/Singularity/EntitySystems/EventHorizonSystem.cs @@ -1,19 +1,18 @@ +using System.Numerics; using Content.Server.Administration.Logs; -using Content.Server.Ghost.Components; -using Content.Server.Mind.Components; -using Content.Server.Station.Components; using Content.Server.Singularity.Events; +using Content.Server.Station.Components; using Content.Shared.Database; +using Content.Shared.Ghost; +using Content.Shared.Mind.Components; using Content.Shared.Singularity.Components; using Content.Shared.Singularity.EntitySystems; using Content.Shared.Tag; using Robust.Shared.Containers; -using Robust.Shared.Timing; using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Physics.Events; -using System.Numerics; - +using Robust.Shared.Timing; namespace Content.Server.Singularity.EntitySystems; @@ -121,7 +120,7 @@ public void Update(EntityUid uid, EventHorizonComponent? eventHorizon = null, Tr /// /// Makes an event horizon consume a given entity. /// - public void ConsumeEntity(EntityUid hungry, EntityUid morsel, EventHorizonComponent eventHorizon, IContainer? outerContainer = null) + public void ConsumeEntity(EntityUid hungry, EntityUid morsel, EventHorizonComponent eventHorizon, BaseContainer? outerContainer = null) { if (!EntityManager.IsQueuedForDeletion(morsel) // I saw it log twice a few times for some reason? && (HasComp(morsel) @@ -141,7 +140,7 @@ public void ConsumeEntity(EntityUid hungry, EntityUid morsel, EventHorizonCompon /// /// Makes an event horizon attempt to consume a given entity. /// - public bool AttemptConsumeEntity(EntityUid hungry, EntityUid morsel, EventHorizonComponent eventHorizon, IContainer? outerContainer = null) + public bool AttemptConsumeEntity(EntityUid hungry, EntityUid morsel, EventHorizonComponent eventHorizon, BaseContainer? outerContainer = null) { if (!CanConsumeEntity(hungry, morsel, eventHorizon)) return false; @@ -193,7 +192,7 @@ public void ConsumeEntitiesInRange(EntityUid uid, float range, TransformComponen /// Excludes the event horizon itself. /// All immune entities within the container will be dumped to a given container or the map/grid if that is impossible. /// - public void ConsumeEntitiesInContainer(EntityUid hungry, IContainer container, EventHorizonComponent eventHorizon, IContainer? outerContainer = null) + public void ConsumeEntitiesInContainer(EntityUid hungry, BaseContainer container, EventHorizonComponent eventHorizon, BaseContainer? outerContainer = null) { // Removing the immune entities from the container needs to be deferred until after iteration or the iterator raises an error. List immune = new(); @@ -398,7 +397,7 @@ private void OnStartCollide(EntityUid uid, EventHorizonComponent comp, ref Start { if (comp.BeingConsumedByAnotherEventHorizon) return; - if (args.OurFixture.ID != comp.ConsumerFixtureId) + if (args.OurFixtureId != comp.ConsumerFixtureId) return; AttemptConsumeEntity(uid, args.OtherEntity, comp); diff --git a/Content.Server/Singularity/EntitySystems/GravityWellSystem.cs b/Content.Server/Singularity/EntitySystems/GravityWellSystem.cs index 493f7deb938..b10685ed277 100644 --- a/Content.Server/Singularity/EntitySystems/GravityWellSystem.cs +++ b/Content.Server/Singularity/EntitySystems/GravityWellSystem.cs @@ -6,9 +6,8 @@ using Robust.Shared.Timing; using Content.Shared.Singularity.EntitySystems; - -using Content.Server.Ghost.Components; using Content.Server.Singularity.Components; +using Content.Shared.Ghost; namespace Content.Server.Singularity.EntitySystems; diff --git a/Content.Server/Singularity/EntitySystems/RadiationCollectorSystem.cs b/Content.Server/Singularity/EntitySystems/RadiationCollectorSystem.cs index 142686fcd02..19d9b98f4ab 100644 --- a/Content.Server/Singularity/EntitySystems/RadiationCollectorSystem.cs +++ b/Content.Server/Singularity/EntitySystems/RadiationCollectorSystem.cs @@ -4,84 +4,157 @@ using Content.Server.Popups; using Content.Server.Power.Components; using Content.Shared.Radiation.Events; -using Robust.Server.GameObjects; using Robust.Shared.Timing; -using Robust.Shared.Player; +using Robust.Shared.Containers; +using Content.Server.Atmos.Components; +using Content.Shared.Examine; +using Content.Server.Atmos; +using System.Diagnostics.CodeAnalysis; -namespace Content.Server.Singularity.EntitySystems +namespace Content.Server.Singularity.EntitySystems; + +public sealed class RadiationCollectorSystem : EntitySystem { - public sealed class RadiationCollectorSystem : EntitySystem + [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly PopupSystem _popupSystem = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedContainerSystem _containerSystem = default!; + + public override void Initialize() { - [Dependency] private readonly IGameTiming _gameTiming = default!; - [Dependency] private readonly PopupSystem _popupSystem = default!; - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + base.Initialize(); + SubscribeLocalEvent(OnInteractHand); + SubscribeLocalEvent(OnRadiation); + SubscribeLocalEvent(OnExamined); + SubscribeLocalEvent(OnAnalyzed); + } - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnInteractHand); - SubscribeLocalEvent(OnRadiation); - } + private bool TryGetLoadedGasTank(EntityUid uid, [NotNullWhen(true)] out GasTankComponent? gasTankComponent) + { + gasTankComponent = null; + var container = _containerSystem.EnsureContainer(uid, "GasTank"); - private void OnInteractHand(EntityUid uid, RadiationCollectorComponent component, InteractHandEvent args) - { - var curTime = _gameTiming.CurTime; + if (container.ContainedEntity == null) + return false; - if(curTime < component.CoolDownEnd) - return; + if (!EntityManager.TryGetComponent(container.ContainedEntity, out gasTankComponent)) + return false; - ToggleCollector(uid, args.User, component); - component.CoolDownEnd = curTime + component.Cooldown; - } + return true; + } + + private void OnInteractHand(EntityUid uid, RadiationCollectorComponent component, InteractHandEvent args) + { + var curTime = _gameTiming.CurTime; + + if (curTime < component.CoolDownEnd) + return; - private void OnRadiation(EntityUid uid, RadiationCollectorComponent component, OnIrradiatedEvent args) + ToggleCollector(uid, args.User, component); + component.CoolDownEnd = curTime + component.Cooldown; + } + + private void OnRadiation(EntityUid uid, RadiationCollectorComponent component, OnIrradiatedEvent args) + { + if (!component.Enabled || component.RadiationReactiveGases == null) + return; + + if (!TryGetLoadedGasTank(uid, out var gasTankComponent)) + return; + + var charge = 0f; + + foreach (var gas in component.RadiationReactiveGases) { - if (!component.Enabled) return; - - // No idea if this is even vaguely accurate to the previous logic. - // The maths is copied from that logic even though it works differently. - // But the previous logic would also make the radiation collectors never ever stop providing energy. - // And since frameTime was used there, I'm assuming that this is what the intent was. - // This still won't stop things being potentially hilariously unbalanced though. - if (TryComp(uid, out var batteryComponent)) + float reactantMol = gasTankComponent.Air.GetMoles(gas.Reactant); + float delta = args.TotalRads * reactantMol * gas.ReactantBreakdownRate; + + // We need to offset the huge power gains possible when using very cold gases + // (they allow you to have a much higher molar concentrations of gas in the tank). + // Hence power output is modified using the Michaelis-Menten equation, + // it will heavily penalise the power output of low temperature reactions: + // 300K = 100% power output, 73K = 49% power output, 1K = 1% power output + float temperatureMod = 1.5f * gasTankComponent.Air.Temperature / (150f + gasTankComponent.Air.Temperature); + charge += args.TotalRads * reactantMol * component.ChargeModifier * gas.PowerGenerationEfficiency * temperatureMod; + + if (delta > 0) + { + gasTankComponent.Air.AdjustMoles(gas.Reactant, -Math.Min(delta, reactantMol)); + } + + if (gas.Byproduct != null) { - var charge = args.TotalRads * component.ChargeModifier; - batteryComponent.CurrentCharge += charge; + gasTankComponent.Air.AdjustMoles((int) gas.Byproduct, delta * gas.MolarRatio); } } - public void ToggleCollector(EntityUid uid, EntityUid? user = null, RadiationCollectorComponent? component = null) + // No idea if this is even vaguely accurate to the previous logic. + // The maths is copied from that logic even though it works differently. + // But the previous logic would also make the radiation collectors never ever stop providing energy. + // And since frameTime was used there, I'm assuming that this is what the intent was. + // This still won't stop things being potentially hilariously unbalanced though. + if (TryComp(uid, out var batteryComponent)) + { + batteryComponent.CurrentCharge += charge; + } + } + + private void OnExamined(EntityUid uid, RadiationCollectorComponent component, ExaminedEvent args) + { + if (!TryGetLoadedGasTank(uid, out var gasTankComponent)) { - if (!Resolve(uid, ref component)) - return; - SetCollectorEnabled(uid, !component.Enabled, user, component); + args.PushMarkup(Loc.GetString("power-radiation-collector-gas-tank-missing")); + return; } - public void SetCollectorEnabled(EntityUid uid, bool enabled, EntityUid? user = null, RadiationCollectorComponent? component = null) + args.PushMarkup(Loc.GetString("power-radiation-collector-gas-tank-present")); + + if (gasTankComponent.IsLowPressure) { - if (!Resolve(uid, ref component)) - return; - component.Enabled = enabled; + args.PushMarkup(Loc.GetString("power-radiation-collector-gas-tank-low-pressure")); + } + } - // Show message to the player - if (user != null) - { - var msg = component.Enabled ? "radiation-collector-component-use-on" : "radiation-collector-component-use-off"; - _popupSystem.PopupEntity(Loc.GetString(msg), uid); + private void OnAnalyzed(EntityUid uid, RadiationCollectorComponent component, GasAnalyzerScanEvent args) + { + if (!TryGetLoadedGasTank(uid, out var gasTankComponent)) + return; - } + args.GasMixtures = new Dictionary { { Name(uid), gasTankComponent.Air } }; + } - // Update appearance - UpdateAppearance(uid, component); - } + public void ToggleCollector(EntityUid uid, EntityUid? user = null, RadiationCollectorComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; - private void UpdateAppearance(EntityUid uid, RadiationCollectorComponent? component, AppearanceComponent? appearance = null) - { - if (!Resolve(uid, ref component, ref appearance)) - return; + SetCollectorEnabled(uid, !component.Enabled, user, component); + } + + public void SetCollectorEnabled(EntityUid uid, bool enabled, EntityUid? user = null, RadiationCollectorComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; + + component.Enabled = enabled; - var state = component.Enabled ? RadiationCollectorVisualState.Active : RadiationCollectorVisualState.Deactive; - _appearance.SetData(uid, RadiationCollectorVisuals.VisualState, state, appearance); + // Show message to the player + if (user != null) + { + var msg = component.Enabled ? "radiation-collector-component-use-on" : "radiation-collector-component-use-off"; + _popupSystem.PopupEntity(Loc.GetString(msg), uid); } + + // Update appearance + UpdateAppearance(uid, component); + } + + private void UpdateAppearance(EntityUid uid, RadiationCollectorComponent? component, AppearanceComponent? appearance = null) + { + if (!Resolve(uid, ref component, ref appearance)) + return; + + var state = component.Enabled ? RadiationCollectorVisualState.Active : RadiationCollectorVisualState.Deactive; + _appearance.SetData(uid, RadiationCollectorVisuals.VisualState, state, appearance); } } diff --git a/Content.Server/Singularity/Events/EntityConsumedByEventHorizonEvent.cs b/Content.Server/Singularity/Events/EntityConsumedByEventHorizonEvent.cs index 84e8a8ff2b8..ce5184c7174 100644 --- a/Content.Server/Singularity/Events/EntityConsumedByEventHorizonEvent.cs +++ b/Content.Server/Singularity/Events/EntityConsumedByEventHorizonEvent.cs @@ -8,7 +8,7 @@ namespace Content.Server.Singularity.Events; /// [ByRefEvent] public readonly record struct EntityConsumedByEventHorizonEvent -(EntityUid entity, EntityUid eventHorizonUid, EventHorizonComponent eventHorizon, IContainer? container) +(EntityUid entity, EntityUid eventHorizonUid, EventHorizonComponent eventHorizon, BaseContainer? container) { /// /// The entity being consumed by the event horizon. @@ -29,5 +29,5 @@ public readonly record struct EntityConsumedByEventHorizonEvent /// The innermost container of the entity being consumed by the event horizon that is not also in the process of being consumed by the event horizon. /// Used to correctly dump out the contents containers that are consumed by the event horizon. /// - public readonly IContainer? Container = container; + public readonly BaseContainer? Container = container; } diff --git a/Content.Server/Singularity/Events/EventHorizonConsumedEntityEvent.cs b/Content.Server/Singularity/Events/EventHorizonConsumedEntityEvent.cs index 19342195177..d71b1da7e7b 100644 --- a/Content.Server/Singularity/Events/EventHorizonConsumedEntityEvent.cs +++ b/Content.Server/Singularity/Events/EventHorizonConsumedEntityEvent.cs @@ -8,7 +8,7 @@ namespace Content.Server.Singularity.Events; /// [ByRefEvent] public readonly record struct EventHorizonConsumedEntityEvent -(EntityUid entity, EntityUid eventHorizonUid, EventHorizonComponent eventHorizon, IContainer? container) +(EntityUid entity, EntityUid eventHorizonUid, EventHorizonComponent eventHorizon, BaseContainer? container) { /// /// The entity being consumed by the event horizon. @@ -29,5 +29,5 @@ public readonly record struct EventHorizonConsumedEntityEvent /// The innermost container of the entity being consumed by the event horizon that is not also in the process of being consumed by the event horizon. /// Used to correctly dump out the contents containers that are consumed by the event horizon. /// - public readonly IContainer? Container = container; + public readonly BaseContainer? Container = container; } diff --git a/Content.Server/Solar/Components/SolarControlConsoleComponent.cs b/Content.Server/Solar/Components/SolarControlConsoleComponent.cs index ccb21149c7f..906a5845fb0 100644 --- a/Content.Server/Solar/Components/SolarControlConsoleComponent.cs +++ b/Content.Server/Solar/Components/SolarControlConsoleComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Solar.Components { [RegisterComponent] - public sealed class SolarControlConsoleComponent : Component + public sealed partial class SolarControlConsoleComponent : Component { } } diff --git a/Content.Server/Solar/Components/SolarPanelComponent.cs b/Content.Server/Solar/Components/SolarPanelComponent.cs index 9e035e2b99d..870b4c78ef1 100644 --- a/Content.Server/Solar/Components/SolarPanelComponent.cs +++ b/Content.Server/Solar/Components/SolarPanelComponent.cs @@ -9,7 +9,7 @@ namespace Content.Server.Solar.Components /// [RegisterComponent] [Access(typeof(PowerSolarSystem))] - public sealed class SolarPanelComponent : Component + public sealed partial class SolarPanelComponent : Component { /// /// Maximum supply output by this panel (coverage = 1) diff --git a/Content.Server/Solar/EntitySystems/PowerSolarControlConsoleSystem.cs b/Content.Server/Solar/EntitySystems/PowerSolarControlConsoleSystem.cs index d79f993d87f..179cadcfbcb 100644 --- a/Content.Server/Solar/EntitySystems/PowerSolarControlConsoleSystem.cs +++ b/Content.Server/Solar/EntitySystems/PowerSolarControlConsoleSystem.cs @@ -34,7 +34,7 @@ public override void Update(float frameTime) { _updateTimer -= 1; var state = new SolarControlConsoleBoundInterfaceState(_powerSolarSystem.TargetPanelRotation, _powerSolarSystem.TargetPanelVelocity, _powerSolarSystem.TotalPanelPower, _powerSolarSystem.TowardsSun); - var query = EntityQueryEnumerator(); + var query = EntityQueryEnumerator(); while (query.MoveNext(out var uid, out var _, out var uiComp)) { _uiSystem.TrySetUiState(uid, SolarControlConsoleUiKey.Key, state, ui: uiComp); diff --git a/Content.Server/Solar/EntitySystems/PowerSolarSystem.cs b/Content.Server/Solar/EntitySystems/PowerSolarSystem.cs index 74f88bc0d1a..cead16b76d3 100644 --- a/Content.Server/Solar/EntitySystems/PowerSolarSystem.cs +++ b/Content.Server/Solar/EntitySystems/PowerSolarSystem.cs @@ -172,10 +172,8 @@ public void UpdateSupply( SolarPanelComponent? solar = null, PowerSupplierComponent? supplier = null) { - if (!Resolve(uid, ref solar, ref supplier)) - { + if (!Resolve(uid, ref solar, ref supplier, false)) return; - } supplier.MaxSupply = (int) (solar.MaxSupply * solar.Coverage); } diff --git a/Content.Server/Sound/Components/EmitSoundOnTriggerComponent.cs b/Content.Server/Sound/Components/EmitSoundOnTriggerComponent.cs index 40b385268af..53383519484 100644 --- a/Content.Server/Sound/Components/EmitSoundOnTriggerComponent.cs +++ b/Content.Server/Sound/Components/EmitSoundOnTriggerComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Sound.Components /// Whenever a is run play a sound in PVS range. /// [RegisterComponent] - public sealed class EmitSoundOnTriggerComponent : BaseEmitSoundComponent + public sealed partial class EmitSoundOnTriggerComponent : BaseEmitSoundComponent { } } diff --git a/Content.Server/Sound/Components/EmitSoundOnUIOpenComponent.cs b/Content.Server/Sound/Components/EmitSoundOnUIOpenComponent.cs index afde39f4594..44e83b0e794 100644 --- a/Content.Server/Sound/Components/EmitSoundOnUIOpenComponent.cs +++ b/Content.Server/Sound/Components/EmitSoundOnUIOpenComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Sound.Components /// Simple sound emitter that emits sound on AfterActivatableUIOpenEvent /// [RegisterComponent] - public sealed class EmitSoundOnUIOpenComponent : BaseEmitSoundComponent + public sealed partial class EmitSoundOnUIOpenComponent : BaseEmitSoundComponent { } } diff --git a/Content.Server/Sound/Components/SpamEmitSoundComponent.cs b/Content.Server/Sound/Components/SpamEmitSoundComponent.cs index e89b4e01d5a..d17bbb9e8f6 100644 --- a/Content.Server/Sound/Components/SpamEmitSoundComponent.cs +++ b/Content.Server/Sound/Components/SpamEmitSoundComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Sound.Components /// Rolls to play a sound every few seconds. /// [RegisterComponent] - public sealed class SpamEmitSoundComponent : BaseEmitSoundComponent + public sealed partial class SpamEmitSoundComponent : BaseEmitSoundComponent { [DataField("accumulator")] public float Accumulator = 0f; diff --git a/Content.Server/Spawners/Components/ConditionalSpawnerComponent.cs b/Content.Server/Spawners/Components/ConditionalSpawnerComponent.cs index 12a16151c1d..1910431eee3 100644 --- a/Content.Server/Spawners/Components/ConditionalSpawnerComponent.cs +++ b/Content.Server/Spawners/Components/ConditionalSpawnerComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.Spawners.Components { [RegisterComponent] [Virtual] - public class ConditionalSpawnerComponent : Component + public partial class ConditionalSpawnerComponent : Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("prototypes", customTypeSerializer: typeof(PrototypeIdListSerializer))] @@ -13,7 +13,7 @@ public class ConditionalSpawnerComponent : Component [ViewVariables(VVAccess.ReadWrite)] [DataField("gameRules", customTypeSerializer: typeof(PrototypeIdListSerializer))] - public readonly List GameRules = new(); + public List GameRules = new(); [ViewVariables(VVAccess.ReadWrite)] [DataField("chance")] diff --git a/Content.Server/Spawners/Components/RandomSpawnerComponent.cs b/Content.Server/Spawners/Components/RandomSpawnerComponent.cs index f3ddfae0ce4..ece17de974a 100644 --- a/Content.Server/Spawners/Components/RandomSpawnerComponent.cs +++ b/Content.Server/Spawners/Components/RandomSpawnerComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Spawners.Components { [RegisterComponent] - public sealed class RandomSpawnerComponent : ConditionalSpawnerComponent + public sealed partial class RandomSpawnerComponent : ConditionalSpawnerComponent { [ViewVariables(VVAccess.ReadWrite)] [DataField("rarePrototypes", customTypeSerializer:typeof(PrototypeIdListSerializer))] diff --git a/Content.Server/Spawners/Components/SpawnPointComponent.cs b/Content.Server/Spawners/Components/SpawnPointComponent.cs index f520f06f4f3..5a86175a1d2 100644 --- a/Content.Server/Spawners/Components/SpawnPointComponent.cs +++ b/Content.Server/Spawners/Components/SpawnPointComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Spawners.Components; [RegisterComponent] -public sealed class SpawnPointComponent : Component +public sealed partial class SpawnPointComponent : Component { [Dependency] private readonly IPrototypeManager _prototypeManager = default!; @@ -14,9 +14,14 @@ public sealed class SpawnPointComponent : Component [ViewVariables(VVAccess.ReadWrite)] [DataField("spawn_type")] - public SpawnPointType SpawnType { get; } = SpawnPointType.Unset; + public SpawnPointType SpawnType { get; private set; } = SpawnPointType.Unset; public JobPrototype? Job => string.IsNullOrEmpty(_jobId) ? null : _prototypeManager.Index(_jobId); + + public override string ToString() + { + return $"{_jobId} {SpawnType}"; + } } public enum SpawnPointType diff --git a/Content.Server/Spawners/Components/TimedSpawnerComponent.cs b/Content.Server/Spawners/Components/TimedSpawnerComponent.cs index a79444d88f5..abbfd37c6a2 100644 --- a/Content.Server/Spawners/Components/TimedSpawnerComponent.cs +++ b/Content.Server/Spawners/Components/TimedSpawnerComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Spawners.Components { [RegisterComponent] - public sealed class TimedSpawnerComponent : Component, ISerializationHooks + public sealed partial class TimedSpawnerComponent : Component, ISerializationHooks { [ViewVariables(VVAccess.ReadWrite)] [DataField("prototypes", customTypeSerializer:typeof(PrototypeIdListSerializer))] diff --git a/Content.Server/Spawners/EntitySystems/SpawnPointSystem.cs b/Content.Server/Spawners/EntitySystems/SpawnPointSystem.cs index 595b432c8ea..755153d309b 100644 --- a/Content.Server/Spawners/EntitySystems/SpawnPointSystem.cs +++ b/Content.Server/Spawners/EntitySystems/SpawnPointSystem.cs @@ -1,6 +1,4 @@ -using System.Linq; -using Content.Server.GameTicking; -using Content.Server.Shuttles.Components; +using Content.Server.GameTicking; using Content.Server.Spawners.Components; using Content.Server.Station.Systems; using Robust.Shared.Map; @@ -28,7 +26,6 @@ private void OnSpawnPlayer(PlayerSpawningEvent args) // TODO: Cache all this if it ends up important. var points = EntityQueryEnumerator(); var possiblePositions = new List(); - EntityCoordinates? firstLoc = null; while ( points.MoveNext(out var uid, out var spawnPoint, out var xform)) { @@ -40,7 +37,9 @@ private void OnSpawnPlayer(PlayerSpawningEvent args) possiblePositions.Add(xform.Coordinates); } - if (_gameTicker.RunLevel != GameRunLevel.InRound && spawnPoint.SpawnType == SpawnPointType.Job && (args.Job == null || spawnPoint.Job?.ID == args.Job.Prototype.ID)) + if (_gameTicker.RunLevel != GameRunLevel.InRound && + spawnPoint.SpawnType == SpawnPointType.Job && + (args.Job == null || spawnPoint.Job?.ID == args.Job.PrototypeId)) { possiblePositions.Add(xform.Coordinates); } diff --git a/Content.Server/Speech/Components/ActiveListenerComponent.cs b/Content.Server/Speech/Components/ActiveListenerComponent.cs index 051c0a468a4..4553fafa51d 100644 --- a/Content.Server/Speech/Components/ActiveListenerComponent.cs +++ b/Content.Server/Speech/Components/ActiveListenerComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Speech.Components; /// This component is used to relay speech events to other systems. /// [RegisterComponent] -public sealed class ActiveListenerComponent : Component +public sealed partial class ActiveListenerComponent : Component { [DataField("range")] public float Range = ChatSystem.VoiceRange; diff --git a/Content.Server/Speech/Components/AddAccentClothingComponent.cs b/Content.Server/Speech/Components/AddAccentClothingComponent.cs index 38dc541818f..9d93b55368c 100644 --- a/Content.Server/Speech/Components/AddAccentClothingComponent.cs +++ b/Content.Server/Speech/Components/AddAccentClothingComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Speech.Components; /// Applies accent to user while they wear entity as a clothing. /// [RegisterComponent] -public sealed class AddAccentClothingComponent : Component +public sealed partial class AddAccentClothingComponent : Component { /// /// Component name for accent that will be applied. diff --git a/Content.Server/Speech/Components/ArchaicAccentComponent.cs b/Content.Server/Speech/Components/ArchaicAccentComponent.cs index 9975f97bf6c..0d43f544243 100644 --- a/Content.Server/Speech/Components/ArchaicAccentComponent.cs +++ b/Content.Server/Speech/Components/ArchaicAccentComponent.cs @@ -4,11 +4,11 @@ namespace Content.Server.Speech.Components; [RegisterComponent] [Access(typeof(ArchaicAccentSystem))] -public sealed class ArchaicAccentComponent : Component +public sealed partial class ArchaicAccentComponent : Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("forsoothChance")] - public readonly float ForsoothChance = 0.15f; + public float ForsoothChance = 0.15f; [ViewVariables] public readonly List ArchaicWords = new() diff --git a/Content.Server/Speech/Components/BackwardsAccentComponent.cs b/Content.Server/Speech/Components/BackwardsAccentComponent.cs index bc03c43474d..4da8bb52f01 100644 --- a/Content.Server/Speech/Components/BackwardsAccentComponent.cs +++ b/Content.Server/Speech/Components/BackwardsAccentComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Speech.Components { [RegisterComponent] - public sealed class BackwardsAccentComponent : Component + public sealed partial class BackwardsAccentComponent : Component { } } diff --git a/Content.Server/Speech/Components/LizardAccentComponent.cs b/Content.Server/Speech/Components/LizardAccentComponent.cs index c84336bea47..0ac29c43d1a 100644 --- a/Content.Server/Speech/Components/LizardAccentComponent.cs +++ b/Content.Server/Speech/Components/LizardAccentComponent.cs @@ -4,7 +4,7 @@ /// Hiss! /// [RegisterComponent] -public sealed class LizardAccentComponent : Component +public sealed partial class LizardAccentComponent : Component { } diff --git a/Content.Server/Speech/Components/MobsterAccentComponent.cs b/Content.Server/Speech/Components/MobsterAccentComponent.cs index f67ea32792a..d781f5676c0 100644 --- a/Content.Server/Speech/Components/MobsterAccentComponent.cs +++ b/Content.Server/Speech/Components/MobsterAccentComponent.cs @@ -5,7 +5,7 @@ /// Etc etc. /// [RegisterComponent] -public sealed class MobsterAccentComponent : Component +public sealed partial class MobsterAccentComponent : Component { /// /// Do you make all the rules? diff --git a/Content.Server/Speech/Components/MonkeyAccentComponent.cs b/Content.Server/Speech/Components/MonkeyAccentComponent.cs index 07810eedd16..58237d8deb2 100644 --- a/Content.Server/Speech/Components/MonkeyAccentComponent.cs +++ b/Content.Server/Speech/Components/MonkeyAccentComponent.cs @@ -1,4 +1,4 @@ namespace Content.Server.Speech.Components; [RegisterComponent] -public sealed class MonkeyAccentComponent : Component {} +public sealed partial class MonkeyAccentComponent : Component {} diff --git a/Content.Server/Speech/Components/OwOAccentComponent.cs b/Content.Server/Speech/Components/OwOAccentComponent.cs index df8a57dbe8c..960ff2f7214 100644 --- a/Content.Server/Speech/Components/OwOAccentComponent.cs +++ b/Content.Server/Speech/Components/OwOAccentComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Speech.Components { [RegisterComponent] - public sealed class OwOAccentComponent : Component + public sealed partial class OwOAccentComponent : Component { } } diff --git a/Content.Server/Speech/Components/PirateAccentComponent.cs b/Content.Server/Speech/Components/PirateAccentComponent.cs index be6a8b62119..0559d9854b8 100644 --- a/Content.Server/Speech/Components/PirateAccentComponent.cs +++ b/Content.Server/Speech/Components/PirateAccentComponent.cs @@ -4,11 +4,11 @@ namespace Content.Server.Speech.Components; [RegisterComponent] [Access(typeof(PirateAccentSystem))] -public sealed class PirateAccentComponent : Component +public sealed partial class PirateAccentComponent : Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("yarrChance")] - public readonly float YarrChance = 0.5f; + public float YarrChance = 0.5f; [ViewVariables] public readonly List PirateWords = new() diff --git a/Content.Server/Speech/Components/ReplacementAccentComponent.cs b/Content.Server/Speech/Components/ReplacementAccentComponent.cs index ee3a102be3d..cbec2e84645 100644 --- a/Content.Server/Speech/Components/ReplacementAccentComponent.cs +++ b/Content.Server/Speech/Components/ReplacementAccentComponent.cs @@ -8,7 +8,7 @@ public sealed class ReplacementAccentPrototype : IPrototype { [ViewVariables] [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// /// If this array is non-null, the full text of anything said will be randomly replaced with one of these words. @@ -28,7 +28,7 @@ public sealed class ReplacementAccentPrototype : IPrototype /// Replaces full sentences or words within sentences with new strings. /// [RegisterComponent] - public sealed class ReplacementAccentComponent : Component + public sealed partial class ReplacementAccentComponent : Component { [DataField("accent", customTypeSerializer: typeof(PrototypeIdSerializer), required: true)] public string Accent = default!; diff --git a/Content.Server/Speech/Components/RussianAccentComponent.cs b/Content.Server/Speech/Components/RussianAccentComponent.cs index 527561dcc92..057bf83bb67 100644 --- a/Content.Server/Speech/Components/RussianAccentComponent.cs +++ b/Content.Server/Speech/Components/RussianAccentComponent.cs @@ -1,4 +1,4 @@ namespace Content.Server.Speech.Components; [RegisterComponent] -public sealed class RussianAccentComponent : Component {} +public sealed partial class RussianAccentComponent : Component {} diff --git a/Content.Server/Speech/Components/ScrambledAccentComponent.cs b/Content.Server/Speech/Components/ScrambledAccentComponent.cs index d25e048ede8..70776c099dc 100644 --- a/Content.Server/Speech/Components/ScrambledAccentComponent.cs +++ b/Content.Server/Speech/Components/ScrambledAccentComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Speech.Components { [RegisterComponent] - public sealed class ScrambledAccentComponent : Component + public sealed partial class ScrambledAccentComponent : Component { } } diff --git a/Content.Server/Speech/Components/SkeletonAccentComponent.cs b/Content.Server/Speech/Components/SkeletonAccentComponent.cs index f5339826800..b3aea22dbab 100644 --- a/Content.Server/Speech/Components/SkeletonAccentComponent.cs +++ b/Content.Server/Speech/Components/SkeletonAccentComponent.cs @@ -4,7 +4,7 @@ /// Rattle me bones! /// [RegisterComponent] -public sealed class SkeletonAccentComponent : Component +public sealed partial class SkeletonAccentComponent : Component { /// /// Chance that the message will be appended with "ACK ACK!" diff --git a/Content.Server/Speech/Components/SlurredAccentComponent.cs b/Content.Server/Speech/Components/SlurredAccentComponent.cs index 18cfeea86c4..b50ba86cb50 100644 --- a/Content.Server/Speech/Components/SlurredAccentComponent.cs +++ b/Content.Server/Speech/Components/SlurredAccentComponent.cs @@ -1,4 +1,4 @@ namespace Content.Server.Speech.Components; [RegisterComponent] -public sealed class SlurredAccentComponent : Component { } +public sealed partial class SlurredAccentComponent : Component { } diff --git a/Content.Server/Speech/Components/SpanishAccentComponent.cs b/Content.Server/Speech/Components/SpanishAccentComponent.cs index 948085f0ae2..16a2d188b68 100644 --- a/Content.Server/Speech/Components/SpanishAccentComponent.cs +++ b/Content.Server/Speech/Components/SpanishAccentComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Speech.Components { [RegisterComponent] - public sealed class SpanishAccentComponent : Component + public sealed partial class SpanishAccentComponent : Component { } } diff --git a/Content.Server/Speech/Components/StutteringAccentComponent.cs b/Content.Server/Speech/Components/StutteringAccentComponent.cs index 361b08f379f..b283a8354b9 100644 --- a/Content.Server/Speech/Components/StutteringAccentComponent.cs +++ b/Content.Server/Speech/Components/StutteringAccentComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Speech.Components { [RegisterComponent] - public sealed class StutteringAccentComponent : Component + public sealed partial class StutteringAccentComponent : Component { } } diff --git a/Content.Server/Speech/Components/VocalComponent.cs b/Content.Server/Speech/Components/VocalComponent.cs index 4ebce82d9d3..029d638a669 100644 --- a/Content.Server/Speech/Components/VocalComponent.cs +++ b/Content.Server/Speech/Components/VocalComponent.cs @@ -1,10 +1,8 @@ -using Content.Server.Humanoid; using Content.Server.Speech.EntitySystems; -using Content.Shared.Actions; -using Content.Shared.Actions.ActionTypes; using Content.Shared.Chat.Prototypes; using Content.Shared.Humanoid; using Robust.Shared.Audio; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Dictionary; @@ -15,7 +13,7 @@ namespace Content.Server.Speech.Components; /// [RegisterComponent] [Access(typeof(VocalSystem))] -public sealed class VocalComponent : Component +public sealed partial class VocalComponent : Component { /// /// Emote sounds prototype id for each sex (not gender). @@ -33,11 +31,11 @@ public sealed class VocalComponent : Component [DataField("wilhelmProbability")] public float WilhelmProbability = 0.0002f; - [DataField("screamActionId", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string ScreamActionId = "Scream"; + [DataField("screamAction", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string ScreamAction = "ActionScream"; - [DataField("screamAction")] - public InstantAction? ScreamAction; + [DataField("screamActionEntity")] + public EntityUid? ScreamActionEntity; /// /// Currently loaded emote sounds prototype, based on entity sex. @@ -46,8 +44,3 @@ public sealed class VocalComponent : Component [ViewVariables] public EmoteSoundsPrototype? EmoteSounds = null; } - -public sealed class ScreamActionEvent : InstantActionEvent -{ - -} diff --git a/Content.Server/Speech/EntitySystems/ArchaicAccentSystem.cs b/Content.Server/Speech/EntitySystems/ArchaicAccentSystem.cs index d5a16135939..68ecc56f8c0 100644 --- a/Content.Server/Speech/EntitySystems/ArchaicAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/ArchaicAccentSystem.cs @@ -6,7 +6,6 @@ namespace Content.Server.Speech.EntitySystems; public sealed class ArchaicAccentSystem : EntitySystem { - [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly ReplacementAccentSystem _replacement = default!; public override void Initialize() diff --git a/Content.Server/Speech/EntitySystems/MeleeSpeechSystem.cs b/Content.Server/Speech/EntitySystems/MeleeSpeechSystem.cs index 65cde8f8f4b..815b0224c8a 100644 --- a/Content.Server/Speech/EntitySystems/MeleeSpeechSystem.cs +++ b/Content.Server/Speech/EntitySystems/MeleeSpeechSystem.cs @@ -1,76 +1,81 @@ using Content.Server.Administration.Logs; +using Content.Shared.Actions; +using Content.Shared.Database; using Content.Shared.Speech.Components; using Content.Shared.Speech.EntitySystems; -using Content.Shared.Database; - +using Robust.Server.GameObjects; namespace Content.Server.Speech.EntitySystems; public sealed class MeleeSpeechSystem : SharedMeleeSpeechSystem { - - [Dependency] private readonly IAdminLogManager _adminLogger = default!; - - - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnBattlecryChanged); - } - - - private void OnBattlecryChanged(EntityUid uid, MeleeSpeechComponent comp, MeleeSpeechBattlecryChangedMessage args) - { - + [Dependency] private readonly IAdminLogManager _adminLogger = default!; + [Dependency] private readonly SharedActionsSystem _actionSystem = default!; + [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnBattlecryChanged); + SubscribeLocalEvent(OnConfigureAction); + SubscribeLocalEvent(OnGetActions); + SubscribeLocalEvent(OnComponentMapInit); + } + private void OnComponentMapInit(EntityUid uid, MeleeSpeechComponent component, MapInitEvent args) + { + _actionSystem.AddAction(uid, ref component.ConfigureActionEntity, component.ConfigureAction, uid); + } + private void OnGetActions(EntityUid uid, MeleeSpeechComponent component, GetItemActionsEvent args) + { + args.AddAction(ref component.ConfigureActionEntity, component.ConfigureAction); + } + private void OnBattlecryChanged(EntityUid uid, MeleeSpeechComponent comp, MeleeSpeechBattlecryChangedMessage args) + { if (!TryComp(uid, out var meleeSpeechUser)) - return; - - string battlecry = args.Battlecry; - + return; + var battlecry = args.Battlecry; if (battlecry.Length > comp.MaxBattlecryLength) battlecry = battlecry[..comp.MaxBattlecryLength]; - TryChangeBattlecry(uid, battlecry, meleeSpeechUser); - } - - - - - /// - /// Attempts to change the battlecry of an entity. - /// Returns true/false. - /// - /// - /// If provided with a player's EntityUid to the player parameter, adds the change to the admin logs. - /// - public bool TryChangeBattlecry(EntityUid uid, string? battlecry, MeleeSpeechComponent? meleeSpeechComp = null) - { - + } + /// + /// Attempts to open the Battlecry UI. + /// + private void OnConfigureAction(EntityUid uid, MeleeSpeechComponent comp, MeleeSpeechConfigureActionEvent args) + { + TryOpenUi(args.Performer, uid, comp); + } + public void TryOpenUi(EntityUid user, EntityUid source, MeleeSpeechComponent? component = null) + { + if (!Resolve(source, ref component)) + return; + if (!TryComp(user, out var actor)) + return; + _uiSystem.TryToggleUi(source, MeleeSpeechUiKey.Key, actor.PlayerSession); + } + /// + /// Attempts to change the battlecry of an entity. + /// Returns true/false. + /// + /// + /// Logs changes to an entity's battlecry + /// + public bool TryChangeBattlecry(EntityUid uid, string? battlecry, MeleeSpeechComponent? meleeSpeechComp = null) + { if (!Resolve(uid, ref meleeSpeechComp)) - return false; - - if (!string.IsNullOrWhiteSpace(battlecry)) - { - battlecry = battlecry.Trim(); - - - } - else - { - battlecry = null; - } - - if (meleeSpeechComp.Battlecry == battlecry) - - return true; - - - - meleeSpeechComp.Battlecry = battlecry; - Dirty(meleeSpeechComp); - - _adminLogger.Add(LogType.ItemConfigure, LogImpact.Medium, $" {ToPrettyString(uid):entity}'s battlecry has been changed to {battlecry}"); - return true; - } + return false; + if (!string.IsNullOrWhiteSpace(battlecry)) + { + battlecry = battlecry.Trim(); + } + else + { + battlecry = null; + } + if (meleeSpeechComp.Battlecry == battlecry) + return true; + meleeSpeechComp.Battlecry = battlecry; + Dirty(uid, meleeSpeechComp); + _adminLogger.Add(LogType.ItemConfigure, LogImpact.Medium, $" {ToPrettyString(uid):entity}'s battlecry has been changed to {battlecry}"); + return true; + } } - diff --git a/Content.Server/Speech/EntitySystems/VocalSystem.cs b/Content.Server/Speech/EntitySystems/VocalSystem.cs index 244b5124c29..5dccb8bf9cc 100644 --- a/Content.Server/Speech/EntitySystems/VocalSystem.cs +++ b/Content.Server/Speech/EntitySystems/VocalSystem.cs @@ -1,10 +1,9 @@ using Content.Server.Actions; using Content.Server.Chat.Systems; -using Content.Server.Humanoid; using Content.Server.Speech.Components; -using Content.Shared.Actions.ActionTypes; using Content.Shared.Chat.Prototypes; using Content.Shared.Humanoid; +using Content.Shared.Speech; using Robust.Shared.Prototypes; using Robust.Shared.Random; @@ -32,21 +31,16 @@ public override void Initialize() private void OnMapInit(EntityUid uid, VocalComponent component, MapInitEvent args) { // try to add scream action when vocal comp added - if (_proto.TryIndex(component.ScreamActionId, out InstantActionPrototype? proto)) - { - component.ScreamAction = new InstantAction(proto); - _actions.AddAction(uid, component.ScreamAction, null); - } - + _actions.AddAction(uid, ref component.ScreamActionEntity, component.ScreamAction); LoadSounds(uid, component); } private void OnShutdown(EntityUid uid, VocalComponent component, ComponentShutdown args) { // remove scream action when component removed - if (component.ScreamAction != null) + if (component.ScreamActionEntity != null) { - _actions.RemoveAction(uid, component.ScreamAction); + _actions.RemoveAction(uid, component.ScreamActionEntity); } } @@ -76,7 +70,7 @@ private void OnScreamAction(EntityUid uid, VocalComponent component, ScreamActio if (args.Handled) return; - _chat.TryEmoteWithChat(uid, component.ScreamActionId); + _chat.TryEmoteWithChat(uid, component.ScreamId); args.Handled = true; } diff --git a/Content.Server/Speech/Muting/MutedComponent.cs b/Content.Server/Speech/Muting/MutedComponent.cs index 1ee39d0289d..5b3ae83992b 100644 --- a/Content.Server/Speech/Muting/MutedComponent.cs +++ b/Content.Server/Speech/Muting/MutedComponent.cs @@ -1,6 +1,6 @@ namespace Content.Server.Speech.Muting { [RegisterComponent] - public sealed class MutedComponent : Component + public sealed partial class MutedComponent : Component {} } diff --git a/Content.Server/SprayPainter/SprayPainterComponent.cs b/Content.Server/SprayPainter/SprayPainterComponent.cs index c67b793891b..9417112b4f2 100644 --- a/Content.Server/SprayPainter/SprayPainterComponent.cs +++ b/Content.Server/SprayPainter/SprayPainterComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.SprayPainter; [RegisterComponent] -public sealed class SprayPainterComponent : Component +public sealed partial class SprayPainterComponent : Component { [DataField("spraySound")] public SoundSpecifier SpraySound = new SoundPathSpecifier("/Audio/Effects/spray2.ogg"); diff --git a/Content.Server/SprayPainter/SprayPainterSystem.cs b/Content.Server/SprayPainter/SprayPainterSystem.cs index 7fe6ecfb372..1b44b7b0ba0 100644 --- a/Content.Server/SprayPainter/SprayPainterSystem.cs +++ b/Content.Server/SprayPainter/SprayPainterSystem.cs @@ -108,7 +108,7 @@ private void AfterInteractOn(EntityUid uid, SprayPainterComponent component, Aft } component.IsSpraying = true; - var doAfterEventArgs = new DoAfterArgs(args.User, component.AirlockSprayTime, new SprayPainterDoAfterEvent(sprite, null), uid, target: target, used: uid) + var doAfterEventArgs = new DoAfterArgs(EntityManager, args.User, component.AirlockSprayTime, new SprayPainterDoAfterEvent(sprite, null), uid, target: target, used: uid) { BreakOnTargetMove = true, BreakOnUserMove = true, @@ -129,7 +129,7 @@ private void AfterInteractOn(EntityUid uid, SprayPainterComponent component, Aft if(!component.ColorPalette.TryGetValue(component.PickedColor, out var color)) return; - var doAfterEventArgs = new DoAfterArgs(args.User, component.PipeSprayTime, new SprayPainterDoAfterEvent(null, color), uid, target, uid) + var doAfterEventArgs = new DoAfterArgs(EntityManager, args.User, component.PipeSprayTime, new SprayPainterDoAfterEvent(null, color), uid, target, uid) { BreakOnTargetMove = true, BreakOnUserMove = true, diff --git a/Content.Server/Spreader/EdgeSpreaderComponent.cs b/Content.Server/Spreader/EdgeSpreaderComponent.cs index 8a5c231d3fa..d0e18fccc29 100644 --- a/Content.Server/Spreader/EdgeSpreaderComponent.cs +++ b/Content.Server/Spreader/EdgeSpreaderComponent.cs @@ -5,6 +5,6 @@ namespace Content.Server.Spreader; /// This needs to be manually added and removed. /// [RegisterComponent, Access(typeof(SpreaderSystem))] -public sealed class EdgeSpreaderComponent : Component +public sealed partial class EdgeSpreaderComponent : Component { } diff --git a/Content.Server/Spreader/GrowingKudzuComponent.cs b/Content.Server/Spreader/GrowingKudzuComponent.cs index b3f571dea84..98d34593d63 100644 --- a/Content.Server/Spreader/GrowingKudzuComponent.cs +++ b/Content.Server/Spreader/GrowingKudzuComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Spreader; [RegisterComponent, Access(typeof(KudzuSystem))] -public sealed class GrowingKudzuComponent : Component +public sealed partial class GrowingKudzuComponent : Component { /// /// At level 3 spreading can occur; prior to that we have a chance of increasing our growth level and changing our sprite. diff --git a/Content.Server/Spreader/KudzuComponent.cs b/Content.Server/Spreader/KudzuComponent.cs index 8fcc56c5dd7..afdf510f05c 100644 --- a/Content.Server/Spreader/KudzuComponent.cs +++ b/Content.Server/Spreader/KudzuComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Spreader; /// Handles entities that spread out when they reach the relevant growth level. /// [RegisterComponent] -public sealed class KudzuComponent : Component +public sealed partial class KudzuComponent : Component { /// /// Chance to spread whenever an edge spread is possible. diff --git a/Content.Server/Spreader/SpreaderGridComponent.cs b/Content.Server/Spreader/SpreaderGridComponent.cs index 2dff8d87476..102678a251c 100644 --- a/Content.Server/Spreader/SpreaderGridComponent.cs +++ b/Content.Server/Spreader/SpreaderGridComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Spreader; [RegisterComponent] -public sealed class SpreaderGridComponent : Component +public sealed partial class SpreaderGridComponent : Component { [DataField("nextUpdate", customTypeSerializer:typeof(TimeOffsetSerializer))] public TimeSpan NextUpdate = TimeSpan.Zero; diff --git a/Content.Server/Spreader/SpreaderNode.cs b/Content.Server/Spreader/SpreaderNode.cs index fa0c127889e..0c8a5c8ee8d 100644 --- a/Content.Server/Spreader/SpreaderNode.cs +++ b/Content.Server/Spreader/SpreaderNode.cs @@ -9,7 +9,7 @@ namespace Content.Server.Spreader; /// Handles the node for . /// Functions as a generic tile-based entity spreader for systems such as puddles or smoke. /// -public sealed class SpreaderNode : Node +public sealed partial class SpreaderNode : Node { // [Dependency] private readonly NodeContainerSystem _nodeContainer = default!; diff --git a/Content.Server/Stack/StackSystem.cs b/Content.Server/Stack/StackSystem.cs index 8907a08b6e4..c6d1458c14a 100644 --- a/Content.Server/Stack/StackSystem.cs +++ b/Content.Server/Stack/StackSystem.cs @@ -1,7 +1,7 @@ -using Content.Server.Storage.Components; using Content.Server.Storage.EntitySystems; using Content.Shared.Popups; using Content.Shared.Stacks; +using Content.Shared.Storage; using Content.Shared.Verbs; using JetBrains.Annotations; using Robust.Server.Containers; @@ -163,9 +163,9 @@ private void UserSplit(EntityUid uid, EntityUid userUid, int amount, return; if (_container.TryGetContainingContainer(uid, out var container) && - TryComp(container.Owner, out var storage)) + TryComp(container.Owner, out var storage)) { - _storage.UpdateStorageUI(container.Owner, storage); + _storage.UpdateUI(container.Owner, storage); } Hands.PickupOrDrop(userUid, split); diff --git a/Content.Server/Station/Components/BecomesStationComponent.cs b/Content.Server/Station/Components/BecomesStationComponent.cs index eb33ef42828..b4544b8c3bc 100644 --- a/Content.Server/Station/Components/BecomesStationComponent.cs +++ b/Content.Server/Station/Components/BecomesStationComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Station.Components; /// [RegisterComponent] [Access(typeof(GameTicker))] -public sealed class BecomesStationComponent : Component +public sealed partial class BecomesStationComponent : Component { /// /// Mapping only. Should use StationIds in all other diff --git a/Content.Server/Station/Components/StationDataComponent.cs b/Content.Server/Station/Components/StationDataComponent.cs index 6d33bcedabe..d154c6936dd 100644 --- a/Content.Server/Station/Components/StationDataComponent.cs +++ b/Content.Server/Station/Components/StationDataComponent.cs @@ -10,7 +10,7 @@ namespace Content.Server.Station.Components; /// All station entities will have this component. /// [RegisterComponent, Access(typeof(StationSystem))] -public sealed class StationDataComponent : Component +public sealed partial class StationDataComponent : Component { /// /// The game map prototype, if any, associated with this station. @@ -22,5 +22,5 @@ public sealed class StationDataComponent : Component /// List of all grids this station is part of. /// [DataField("grids")] - public readonly HashSet Grids = new(); + public HashSet Grids = new(); } diff --git a/Content.Server/Station/Components/StationEventEligibleComponent.cs b/Content.Server/Station/Components/StationEventEligibleComponent.cs index 0f3f6f85f76..0a899446a03 100644 --- a/Content.Server/Station/Components/StationEventEligibleComponent.cs +++ b/Content.Server/Station/Components/StationEventEligibleComponent.cs @@ -4,7 +4,7 @@ /// This is used for event eligibility. /// [RegisterComponent] -public sealed class StationEventEligibleComponent : Component +public sealed partial class StationEventEligibleComponent : Component { } diff --git a/Content.Server/Station/Components/StationJobsComponent.cs b/Content.Server/Station/Components/StationJobsComponent.cs index a717477f5a3..677600df7e6 100644 --- a/Content.Server/Station/Components/StationJobsComponent.cs +++ b/Content.Server/Station/Components/StationJobsComponent.cs @@ -10,7 +10,7 @@ namespace Content.Server.Station.Components; /// Stores information about a station's job selection. /// [RegisterComponent, Access(typeof(StationJobsSystem)), PublicAPI] -public sealed class StationJobsComponent : Component +public sealed partial class StationJobsComponent : Component { /// /// Total *round-start* jobs at station start. @@ -77,5 +77,5 @@ public sealed class StationJobsComponent : Component [DataField("availableJobs", required: true, customTypeSerializer: typeof(PrototypeIdDictionarySerializer, JobPrototype>))] - public readonly Dictionary> SetupAvailableJobs = default!; + public Dictionary> SetupAvailableJobs = default!; } diff --git a/Content.Server/Station/Components/StationMemberComponent.cs b/Content.Server/Station/Components/StationMemberComponent.cs index 684ec205302..7213d2549e5 100644 --- a/Content.Server/Station/Components/StationMemberComponent.cs +++ b/Content.Server/Station/Components/StationMemberComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Station.Components; /// Indicates that a grid is a member of the given station. /// [RegisterComponent, Access(typeof(StationSystem))] -public sealed class StationMemberComponent : Component +public sealed partial class StationMemberComponent : Component { /// /// Station that this grid is a part of. diff --git a/Content.Server/Station/Components/StationNameSetupComponent.cs b/Content.Server/Station/Components/StationNameSetupComponent.cs index 976434eb62c..7af44eee621 100644 --- a/Content.Server/Station/Components/StationNameSetupComponent.cs +++ b/Content.Server/Station/Components/StationNameSetupComponent.cs @@ -6,18 +6,18 @@ namespace Content.Server.Station.Components; /// This is used for setting up a station's name. /// [RegisterComponent] -public sealed class StationNameSetupComponent : Component +public sealed partial class StationNameSetupComponent : Component { /// /// The name template to use for the station. /// If there's a name generator this should follow it's required format. /// [DataField("mapNameTemplate", required: true)] - public string StationNameTemplate { get; } = default!; + public string StationNameTemplate { get; private set; } = default!; /// /// Name generator to use for the station, if any. /// [DataField("nameGenerator")] - public StationNameGenerator? NameGenerator { get; } + public StationNameGenerator? NameGenerator { get; private set; } } diff --git a/Content.Server/Station/Components/StationSpawningComponent.cs b/Content.Server/Station/Components/StationSpawningComponent.cs index a26c9ee7b6d..81e68d7684e 100644 --- a/Content.Server/Station/Components/StationSpawningComponent.cs +++ b/Content.Server/Station/Components/StationSpawningComponent.cs @@ -6,6 +6,6 @@ namespace Content.Server.Station.Components; /// Controls spawning on the given station, tracking spawners present on it. /// [RegisterComponent, Access(typeof(StationSpawningSystem))] -public sealed class StationSpawningComponent : Component +public sealed partial class StationSpawningComponent : Component { } diff --git a/Content.Server/Station/StationConfig.cs b/Content.Server/Station/StationConfig.cs index a5f998a0162..8bc0caf1aad 100644 --- a/Content.Server/Station/StationConfig.cs +++ b/Content.Server/Station/StationConfig.cs @@ -8,7 +8,7 @@ namespace Content.Server.Station; /// A config for a station. Specifies name and component modifications. /// [DataDefinition, PublicAPI] -public sealed class StationConfig +public sealed partial class StationConfig { [DataField("stationProto", required: true)] public string StationPrototype = default!; diff --git a/Content.Server/Station/Systems/StationJobsSystem.cs b/Content.Server/Station/Systems/StationJobsSystem.cs index 3f52d6810bb..2709bc2072b 100644 --- a/Content.Server/Station/Systems/StationJobsSystem.cs +++ b/Content.Server/Station/Systems/StationJobsSystem.cs @@ -450,7 +450,7 @@ bool TryPick(JobPriority priority, [NotNullWhen(true)] out string? jobId) private bool _availableJobsDirty; - private TickerJobsAvailableEvent _cachedAvailableJobs = new (new Dictionary(), new Dictionary>()); + private TickerJobsAvailableEvent _cachedAvailableJobs = new (new Dictionary(), new Dictionary>()); /// /// Assembles an event from the current available-to-play jobs. @@ -461,18 +461,19 @@ private TickerJobsAvailableEvent GenerateJobsAvailableEvent() { // If late join is disallowed, return no available jobs. if (_gameTicker.DisallowLateJoin) - return new TickerJobsAvailableEvent(new Dictionary(), new Dictionary>()); + return new TickerJobsAvailableEvent(new Dictionary(), new Dictionary>()); - var jobs = new Dictionary>(); - var stationNames = new Dictionary(); + var jobs = new Dictionary>(); + var stationNames = new Dictionary(); var query = EntityQueryEnumerator(); while (query.MoveNext(out var station, out var comp)) { + var netStation = GetNetEntity(station); var list = comp.JobList.ToDictionary(x => x.Key, x => x.Value); - jobs.Add(station, list); - stationNames.Add(station, Name(station)); + jobs.Add(netStation, list); + stationNames.Add(netStation, Name(station)); } return new TickerJobsAvailableEvent(stationNames, jobs); } diff --git a/Content.Server/Station/Systems/StationSpawningSystem.cs b/Content.Server/Station/Systems/StationSpawningSystem.cs index fa54778b26a..4aa1b117e57 100644 --- a/Content.Server/Station/Systems/StationSpawningSystem.cs +++ b/Content.Server/Station/Systems/StationSpawningSystem.cs @@ -1,26 +1,23 @@ using Content.Server.Access.Systems; using Content.Server.DetailExaminable; -using Content.Server.Hands.Systems; using Content.Server.Humanoid; using Content.Server.IdentityManagement; using Content.Server.Mind.Commands; using Content.Server.PDA; -using Content.Server.Roles; using Content.Server.Station.Components; using Content.Shared.Access.Components; using Content.Shared.Access.Systems; using Content.Shared.CCVar; -using Content.Shared.Hands.Components; using Content.Shared.Humanoid; using Content.Shared.Humanoid.Prototypes; -using Content.Shared.Inventory; using Content.Shared.PDA; using Content.Shared.Preferences; using Content.Shared.Random; using Content.Shared.Random.Helpers; using Content.Shared.Roles; -using Content.Shared.StatusIcon; +using Content.Shared.Roles.Jobs; using Content.Shared.Station; +using Content.Shared.StatusIcon; using JetBrains.Annotations; using Robust.Shared.Configuration; using Robust.Shared.Map; @@ -67,7 +64,7 @@ public override void Initialize() /// /// This only spawns the character, and does none of the mind-related setup you'd need for it to be playable. /// - public EntityUid? SpawnPlayerCharacterOnStation(EntityUid? station, Job? job, HumanoidCharacterProfile? profile, StationSpawningComponent? stationSpawning = null) + public EntityUid? SpawnPlayerCharacterOnStation(EntityUid? station, JobComponent? job, HumanoidCharacterProfile? profile, StationSpawningComponent? stationSpawning = null) { if (station != null && !Resolve(station.Value, ref stationSpawning)) throw new ArgumentException("Tried to use a non-station entity as a station!", nameof(station)); @@ -95,16 +92,18 @@ public override void Initialize() /// The spawned entity public EntityUid SpawnPlayerMob( EntityCoordinates coordinates, - Job? job, + JobComponent? job, HumanoidCharacterProfile? profile, EntityUid? station, EntityUid? entity = null) { + _prototypeManager.TryIndex(job?.PrototypeId ?? string.Empty, out JobPrototype? prototype); + // If we're not spawning a humanoid, we're gonna exit early without doing all the humanoid stuff. - if (job?.JobEntity != null) + if (prototype?.JobEntity != null) { DebugTools.Assert(entity is null); - var jobEntity = EntityManager.SpawnEntity(job.JobEntity, coordinates); + var jobEntity = EntityManager.SpawnEntity(prototype.JobEntity, coordinates); MakeSentientCommand.MakeSentient(jobEntity, EntityManager); DoJobSpecials(job, jobEntity); _identity.QueueIdentityUpdate(jobEntity); @@ -137,12 +136,12 @@ public EntityUid SpawnPlayerMob( profile = HumanoidCharacterProfile.RandomWithSpecies(speciesId); } - if (job?.StartingGear != null) + if (prototype?.StartingGear != null) { - var startingGear = _prototypeManager.Index(job.StartingGear); + var startingGear = _prototypeManager.Index(prototype.StartingGear); EquipStartingGear(entity.Value, startingGear, profile); if (profile != null) - EquipIdCard(entity.Value, profile.Name, job.Prototype, station); + EquipIdCard(entity.Value, profile.Name, prototype, station); } if (profile != null) @@ -160,9 +159,12 @@ public EntityUid SpawnPlayerMob( return entity.Value; } - private static void DoJobSpecials(Job? job, EntityUid entity) + private void DoJobSpecials(JobComponent? job, EntityUid entity) { - foreach (var jobSpecial in job?.Prototype.Special ?? Array.Empty()) + if (!_prototypeManager.TryIndex(job?.PrototypeId ?? string.Empty, out JobPrototype? prototype)) + return; + + foreach (var jobSpecial in prototype.Special) { jobSpecial.AfterEquip(entity); } @@ -224,7 +226,7 @@ public sealed class PlayerSpawningEvent : EntityEventArgs /// /// The job to use, if any. /// - public readonly Job? Job; + public readonly JobComponent? Job; /// /// The profile to use, if any. /// @@ -234,7 +236,7 @@ public sealed class PlayerSpawningEvent : EntityEventArgs /// public readonly EntityUid? Station; - public PlayerSpawningEvent(Job? job, HumanoidCharacterProfile? humanoidCharacterProfile, EntityUid? station) + public PlayerSpawningEvent(JobComponent? job, HumanoidCharacterProfile? humanoidCharacterProfile, EntityUid? station) { Job = job; HumanoidCharacterProfile = humanoidCharacterProfile; diff --git a/Content.Server/Station/Systems/StationSystem.cs b/Content.Server/Station/Systems/StationSystem.cs index 9f154c1b729..8fdf103cd70 100644 --- a/Content.Server/Station/Systems/StationSystem.cs +++ b/Content.Server/Station/Systems/StationSystem.cs @@ -34,6 +34,7 @@ public sealed class StationSystem : EntitySystem [Dependency] private readonly ChatSystem _chatSystem = default!; [Dependency] private readonly GameTicker _gameTicker = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; private ISawmill _sawmill = default!; @@ -84,7 +85,7 @@ private void OnPlayerStatusChanged(object? sender, SessionStatusEventArgs e) { if (e.NewStatus == SessionStatus.Connected) { - RaiseNetworkEvent(new StationsUpdatedEvent(GetStationsSet()), e.Session); + RaiseNetworkEvent(new StationsUpdatedEvent(GetNetEntitySet(GetStationsSet())), e.Session); } } @@ -92,7 +93,7 @@ private void OnPlayerStatusChanged(object? sender, SessionStatusEventArgs e) private void OnStationAdd(EntityUid uid, StationDataComponent component, ComponentStartup args) { - RaiseNetworkEvent(new StationsUpdatedEvent(GetStationsSet()), Filter.Broadcast()); + RaiseNetworkEvent(new StationsUpdatedEvent(GetNetEntitySet(GetStationsSet())), Filter.Broadcast()); var metaData = MetaData(uid); RaiseLocalEvent(new StationInitializedEvent(uid)); @@ -107,7 +108,7 @@ private void OnStationDeleted(EntityUid uid, StationDataComponent component, Com RemComp(grid); } - RaiseNetworkEvent(new StationsUpdatedEvent(GetStationsSet()), Filter.Broadcast()); + RaiseNetworkEvent(new StationsUpdatedEvent(GetNetEntitySet(GetStationsSet())), Filter.Broadcast()); } private void OnPreGameMapLoad(PreGameMapLoad ev) @@ -328,7 +329,7 @@ public void AddGridToStation(EntityUid station, EntityUid mapGrid, MapGridCompon throw new ArgumentException("Tried to use a non-station entity as a station!", nameof(station)); if (!string.IsNullOrEmpty(name)) - MetaData(mapGrid).EntityName = name; + _metaData.SetEntityName(mapGrid, name); var stationMember = AddComp(mapGrid); stationMember.Station = station; @@ -376,7 +377,7 @@ public void RenameStation(EntityUid station, string name, bool loud = true, Stat throw new ArgumentException("Tried to use a non-station entity as a station!", nameof(station)); var oldName = metaData.EntityName; - metaData.EntityName = name; + _metaData.SetEntityName(station, name, metaData); if (loud) { diff --git a/Content.Server/StationEvents/Components/AnomalySpawnRuleComponent.cs b/Content.Server/StationEvents/Components/AnomalySpawnRuleComponent.cs index 8e8e8532607..d3f7324794c 100644 --- a/Content.Server/StationEvents/Components/AnomalySpawnRuleComponent.cs +++ b/Content.Server/StationEvents/Components/AnomalySpawnRuleComponent.cs @@ -8,7 +8,7 @@ namespace Content.Server.StationEvents.Components; /// Used an event that spawns an anomaly somewhere random on the map. /// [RegisterComponent, Access(typeof(AnomalySpawnRule))] -public sealed class AnomalySpawnRuleComponent : Component +public sealed partial class AnomalySpawnRuleComponent : Component { [DataField("anomalySpawnerPrototype", customTypeSerializer: typeof(PrototypeIdSerializer))] public string AnomalySpawnerPrototype = "RandomAnomalySpawner"; diff --git a/Content.Server/StationEvents/Components/BasicStationEventSchedulerComponent.cs b/Content.Server/StationEvents/Components/BasicStationEventSchedulerComponent.cs index 1f920b6c7c7..a6ea139f04e 100644 --- a/Content.Server/StationEvents/Components/BasicStationEventSchedulerComponent.cs +++ b/Content.Server/StationEvents/Components/BasicStationEventSchedulerComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.StationEvents.Components; [RegisterComponent, Access(typeof(BasicStationEventSchedulerSystem))] -public sealed class BasicStationEventSchedulerComponent : Component +public sealed partial class BasicStationEventSchedulerComponent : Component { public const float MinimumTimeUntilFirstEvent = 300; diff --git a/Content.Server/StationEvents/Components/BluespaceArtifactRuleComponent.cs b/Content.Server/StationEvents/Components/BluespaceArtifactRuleComponent.cs index fe953c97f8a..d2d4b6e5de9 100644 --- a/Content.Server/StationEvents/Components/BluespaceArtifactRuleComponent.cs +++ b/Content.Server/StationEvents/Components/BluespaceArtifactRuleComponent.cs @@ -9,7 +9,7 @@ namespace Content.Server.StationEvents.Components; /// somewhere random on the station. /// [RegisterComponent, Access(typeof(BluespaceArtifactRule))] -public sealed class BluespaceArtifactRuleComponent : Component +public sealed partial class BluespaceArtifactRuleComponent : Component { [DataField("artifactSpawnerPrototype", customTypeSerializer: typeof(PrototypeIdSerializer))] public string ArtifactSpawnerPrototype = "RandomArtifactSpawner"; diff --git a/Content.Server/StationEvents/Components/BluespaceLockerRuleComponent.cs b/Content.Server/StationEvents/Components/BluespaceLockerRuleComponent.cs index 06515f53fc0..1ea59e3b9d9 100644 --- a/Content.Server/StationEvents/Components/BluespaceLockerRuleComponent.cs +++ b/Content.Server/StationEvents/Components/BluespaceLockerRuleComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.StationEvents.Components; [RegisterComponent, Access(typeof(BluespaceLockerRule))] -public sealed class BluespaceLockerRuleComponent : Component +public sealed partial class BluespaceLockerRuleComponent : Component { } diff --git a/Content.Server/StationEvents/Components/BreakerFlipRuleComponent.cs b/Content.Server/StationEvents/Components/BreakerFlipRuleComponent.cs index a4acef13451..6c8d4288778 100644 --- a/Content.Server/StationEvents/Components/BreakerFlipRuleComponent.cs +++ b/Content.Server/StationEvents/Components/BreakerFlipRuleComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.StationEvents.Components; [RegisterComponent, Access(typeof(BreakerFlipRule))] -public sealed class BreakerFlipRuleComponent : Component +public sealed partial class BreakerFlipRuleComponent : Component { } diff --git a/Content.Server/StationEvents/Components/BureaucraticErrorRuleComponent.cs b/Content.Server/StationEvents/Components/BureaucraticErrorRuleComponent.cs index 5132a09e687..6dfbd9083e8 100644 --- a/Content.Server/StationEvents/Components/BureaucraticErrorRuleComponent.cs +++ b/Content.Server/StationEvents/Components/BureaucraticErrorRuleComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.StationEvents.Components; [RegisterComponent, Access(typeof(BureaucraticErrorRule))] -public sealed class BureaucraticErrorRuleComponent : Component +public sealed partial class BureaucraticErrorRuleComponent : Component { } diff --git a/Content.Server/StationEvents/Components/CargoGiftsRuleComponent.cs b/Content.Server/StationEvents/Components/CargoGiftsRuleComponent.cs index 5c433e0d2c0..895afc6a9f6 100644 --- a/Content.Server/StationEvents/Components/CargoGiftsRuleComponent.cs +++ b/Content.Server/StationEvents/Components/CargoGiftsRuleComponent.cs @@ -10,7 +10,7 @@ namespace Content.Server.StationEvents.Components; /// Used an event that gifts the station with certian cargo /// [RegisterComponent, Access(typeof(CargoGiftsRule))] -public sealed class CargoGiftsRuleComponent : Component +public sealed partial class CargoGiftsRuleComponent : Component { /// /// The base announcement string (which then incorporates the strings below) diff --git a/Content.Server/StationEvents/Components/FalseAlarmRuleComponent.cs b/Content.Server/StationEvents/Components/FalseAlarmRuleComponent.cs index 6e3f69ad6c6..b58884b7504 100644 --- a/Content.Server/StationEvents/Components/FalseAlarmRuleComponent.cs +++ b/Content.Server/StationEvents/Components/FalseAlarmRuleComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.StationEvents.Components; [RegisterComponent, Access(typeof(FalseAlarmRule))] -public sealed class FalseAlarmRuleComponent : Component +public sealed partial class FalseAlarmRuleComponent : Component { } diff --git a/Content.Server/StationEvents/Components/GasLeakRuleComponent.cs b/Content.Server/StationEvents/Components/GasLeakRuleComponent.cs index 5f2c2f5ff67..066b14e9186 100644 --- a/Content.Server/StationEvents/Components/GasLeakRuleComponent.cs +++ b/Content.Server/StationEvents/Components/GasLeakRuleComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.StationEvents.Components; [RegisterComponent, Access(typeof(GasLeakRule))] -public sealed class GasLeakRuleComponent : Component +public sealed partial class GasLeakRuleComponent : Component { public readonly Gas[] LeakableGases = { diff --git a/Content.Server/StationEvents/Components/ImmovableRodRuleComponent.cs b/Content.Server/StationEvents/Components/ImmovableRodRuleComponent.cs index e204de16cd3..95c32652072 100644 --- a/Content.Server/StationEvents/Components/ImmovableRodRuleComponent.cs +++ b/Content.Server/StationEvents/Components/ImmovableRodRuleComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.StationEvents.Components; [RegisterComponent, Access(typeof(ImmovableRodRule))] -public sealed class ImmovableRodRuleComponent : Component +public sealed partial class ImmovableRodRuleComponent : Component { [DataField("rodPrototype", customTypeSerializer: typeof(PrototypeIdSerializer))] public string RodPrototype = "ImmovableRodKeepTilesStill"; diff --git a/Content.Server/StationEvents/Components/KudzuGrowthRuleComponent.cs b/Content.Server/StationEvents/Components/KudzuGrowthRuleComponent.cs index 82cc1ac77d0..a075598863a 100644 --- a/Content.Server/StationEvents/Components/KudzuGrowthRuleComponent.cs +++ b/Content.Server/StationEvents/Components/KudzuGrowthRuleComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.StationEvents.Components; [RegisterComponent, Access(typeof(KudzuGrowthRule))] -public sealed class KudzuGrowthRuleComponent : Component +public sealed partial class KudzuGrowthRuleComponent : Component { } diff --git a/Content.Server/StationEvents/Components/LoneOpsSpawnRuleComponent.cs b/Content.Server/StationEvents/Components/LoneOpsSpawnRuleComponent.cs index 535660362ff..92911e08584 100644 --- a/Content.Server/StationEvents/Components/LoneOpsSpawnRuleComponent.cs +++ b/Content.Server/StationEvents/Components/LoneOpsSpawnRuleComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.StationEvents.Components; [RegisterComponent, Access(typeof(LoneOpsSpawnRule))] -public sealed class LoneOpsSpawnRuleComponent : Component +public sealed partial class LoneOpsSpawnRuleComponent : Component { [DataField("loneOpsShuttlePath")] public string LoneOpsShuttlePath = "Maps/Shuttles/striker.yml"; diff --git a/Content.Server/StationEvents/Components/MassHallucinationsComponent.cs b/Content.Server/StationEvents/Components/MassHallucinationsComponent.cs index d5522df80d4..99b893cad51 100644 --- a/Content.Server/StationEvents/Components/MassHallucinationsComponent.cs +++ b/Content.Server/StationEvents/Components/MassHallucinationsComponent.cs @@ -6,6 +6,6 @@ namespace Content.Server.StationEvents.Components; /// This is used to keep track of hallucinated entities to remove effects when event ends /// [RegisterComponent, Access(typeof(MassHallucinationsRule))] -public sealed class MassHallucinationsComponent : Component +public sealed partial class MassHallucinationsComponent : Component { } diff --git a/Content.Server/StationEvents/Components/MassHallucinationsRuleComponent.cs b/Content.Server/StationEvents/Components/MassHallucinationsRuleComponent.cs index e16eb39d768..63a1f872513 100644 --- a/Content.Server/StationEvents/Components/MassHallucinationsRuleComponent.cs +++ b/Content.Server/StationEvents/Components/MassHallucinationsRuleComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.StationEvents.Components; [RegisterComponent, Access(typeof(MassHallucinationsRule))] -public sealed class MassHallucinationsRuleComponent : Component +public sealed partial class MassHallucinationsRuleComponent : Component { /// /// The maximum time between incidents in seconds diff --git a/Content.Server/StationEvents/Components/MeteorSwarmRuleComponent.cs b/Content.Server/StationEvents/Components/MeteorSwarmRuleComponent.cs index 96664c44d01..3927f943195 100644 --- a/Content.Server/StationEvents/Components/MeteorSwarmRuleComponent.cs +++ b/Content.Server/StationEvents/Components/MeteorSwarmRuleComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.StationEvents.Components; [RegisterComponent, Access(typeof(MeteorSwarmRule))] -public sealed class MeteorSwarmRuleComponent : Component +public sealed partial class MeteorSwarmRuleComponent : Component { [DataField("cooldown")] public float Cooldown; diff --git a/Content.Server/StationEvents/Components/NinjaSpawnRuleComponent.cs b/Content.Server/StationEvents/Components/NinjaSpawnRuleComponent.cs new file mode 100644 index 00000000000..d758247eca2 --- /dev/null +++ b/Content.Server/StationEvents/Components/NinjaSpawnRuleComponent.cs @@ -0,0 +1,16 @@ +using Content.Server.StationEvents.Events; + +namespace Content.Server.StationEvents.Components; + +/// +/// Configuration component for the Space Ninja antag. +/// +[RegisterComponent, Access(typeof(NinjaSpawnRule))] +public sealed partial class NinjaSpawnRuleComponent : Component +{ + /// + /// Distance that the ninja spawns from the station's half AABB radius + /// + [DataField("spawnDistance")] + public float SpawnDistance = 20f; +} diff --git a/Content.Server/StationEvents/Components/PowerGridCheckRuleComponent.cs b/Content.Server/StationEvents/Components/PowerGridCheckRuleComponent.cs index 1788a780778..509c5a8ecf7 100644 --- a/Content.Server/StationEvents/Components/PowerGridCheckRuleComponent.cs +++ b/Content.Server/StationEvents/Components/PowerGridCheckRuleComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.StationEvents.Components; [RegisterComponent, Access(typeof(PowerGridCheckRule))] -public sealed class PowerGridCheckRuleComponent : Component +public sealed partial class PowerGridCheckRuleComponent : Component { public CancellationTokenSource? AnnounceCancelToken; diff --git a/Content.Server/StationEvents/Components/RampingStationEventSchedulerComponent.cs b/Content.Server/StationEvents/Components/RampingStationEventSchedulerComponent.cs index dd3f38b5ddb..53bc8b62a43 100644 --- a/Content.Server/StationEvents/Components/RampingStationEventSchedulerComponent.cs +++ b/Content.Server/StationEvents/Components/RampingStationEventSchedulerComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.StationEvents.Components; [RegisterComponent, Access(typeof(RampingStationEventSchedulerSystem))] -public sealed class RampingStationEventSchedulerComponent : Component +public sealed partial class RampingStationEventSchedulerComponent : Component { [DataField("endTime"), ViewVariables(VVAccess.ReadWrite)] public float EndTime; diff --git a/Content.Server/StationEvents/Components/RandomSentienceRuleComponent.cs b/Content.Server/StationEvents/Components/RandomSentienceRuleComponent.cs index 6c00e9e3620..98ebf06595d 100644 --- a/Content.Server/StationEvents/Components/RandomSentienceRuleComponent.cs +++ b/Content.Server/StationEvents/Components/RandomSentienceRuleComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.StationEvents.Components; [RegisterComponent, Access(typeof(RandomSentienceRule))] -public sealed class RandomSentienceRuleComponent : Component +public sealed partial class RandomSentienceRuleComponent : Component { } diff --git a/Content.Server/StationEvents/Components/RandomSpawnRuleComponent.cs b/Content.Server/StationEvents/Components/RandomSpawnRuleComponent.cs index 7c8d8ab84c5..a7b06809d17 100644 --- a/Content.Server/StationEvents/Components/RandomSpawnRuleComponent.cs +++ b/Content.Server/StationEvents/Components/RandomSpawnRuleComponent.cs @@ -8,7 +8,7 @@ namespace Content.Server.StationEvents.Components; /// Spawns a single entity at a random tile on a station using TryGetRandomTile. /// [RegisterComponent, Access(typeof(RandomSpawnRule))] -public sealed class RandomSpawnRuleComponent : Component +public sealed partial class RandomSpawnRuleComponent : Component { /// /// The entity to be spawned. diff --git a/Content.Server/StationEvents/Components/SentienceTargetComponent.cs b/Content.Server/StationEvents/Components/SentienceTargetComponent.cs index d22f3e74eb9..f8f7e587c19 100644 --- a/Content.Server/StationEvents/Components/SentienceTargetComponent.cs +++ b/Content.Server/StationEvents/Components/SentienceTargetComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.StationEvents.Components; [RegisterComponent, Access(typeof(RandomSentienceRule))] -public sealed class SentienceTargetComponent : Component +public sealed partial class SentienceTargetComponent : Component { [DataField("flavorKind", required: true)] public string FlavorKind = default!; diff --git a/Content.Server/StationEvents/Components/SolarFlareRuleComponent.cs b/Content.Server/StationEvents/Components/SolarFlareRuleComponent.cs index 92a3b433757..577d7777d77 100644 --- a/Content.Server/StationEvents/Components/SolarFlareRuleComponent.cs +++ b/Content.Server/StationEvents/Components/SolarFlareRuleComponent.cs @@ -1,5 +1,6 @@ using Content.Server.StationEvents.Events; using Content.Shared.Radio; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Set; namespace Content.Server.StationEvents.Components; @@ -8,7 +9,7 @@ namespace Content.Server.StationEvents.Components; /// Solar Flare event specific configuration /// [RegisterComponent, Access(typeof(SolarFlareRule))] -public sealed class SolarFlareRuleComponent : Component +public sealed partial class SolarFlareRuleComponent : Component { /// /// If true, only headsets affected, but e.g. handheld radio will still work @@ -20,7 +21,25 @@ public sealed class SolarFlareRuleComponent : Component /// Channels that will be disabled for a duration of event /// [DataField("affectedChannels", customTypeSerializer: typeof(PrototypeIdHashSetSerializer))] - public readonly HashSet AffectedChannels = new(); + public HashSet AffectedChannels = new(); + + /// + /// List of extra channels that can be random disabled on top of the starting channels. + /// + /// + /// Channels are not removed from this, so its possible to roll the same channel multiple times. + /// + [DataField("extraChannels", customTypeSerializer: typeof(PrototypeIdListSerializer))] + public List ExtraChannels = new(); + + /// + /// Number of times to roll a channel from ExtraChannels. + /// + /// + /// Channels are not removed from it, so its possible to roll the same channel multiple times. + /// + [DataField("extraCount")] + public uint ExtraCount; /// /// Chance light bulb breaks per second during event diff --git a/Content.Server/StationEvents/Components/StationEventComponent.cs b/Content.Server/StationEvents/Components/StationEventComponent.cs index ac9f6e72be9..de0dc1c28a8 100644 --- a/Content.Server/StationEvents/Components/StationEventComponent.cs +++ b/Content.Server/StationEvents/Components/StationEventComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.StationEvents.Components; /// Defines basic data for a station event /// [RegisterComponent] -public sealed class StationEventComponent : Component +public sealed partial class StationEventComponent : Component { public const float WeightVeryLow = 0.0f; public const float WeightLow = 5.0f; diff --git a/Content.Server/StationEvents/Components/VentClogRuleComponent.cs b/Content.Server/StationEvents/Components/VentClogRuleComponent.cs index ae2166dc174..79ebc520c80 100644 --- a/Content.Server/StationEvents/Components/VentClogRuleComponent.cs +++ b/Content.Server/StationEvents/Components/VentClogRuleComponent.cs @@ -6,14 +6,14 @@ namespace Content.Server.StationEvents.Components; [RegisterComponent, Access(typeof(VentClogRule))] -public sealed class VentClogRuleComponent : Component +public sealed partial class VentClogRuleComponent : Component { /// /// Somewhat safe chemicals to put in foam that probably won't instantly kill you. /// There is a small chance of using any reagent, ignoring this. /// [DataField("safeishVentChemicals", customTypeSerializer: typeof(PrototypeIdListSerializer))] - public readonly IReadOnlyList SafeishVentChemicals = new[] + public IReadOnlyList SafeishVentChemicals = new[] { "Water", "Blood", "Slime", "SpaceDrugs", "SpaceCleaner", "Nutriment", "Sugar", "SpaceLube", "Ephedrine", "Ale", "Beer", "SpaceGlue" }; diff --git a/Content.Server/StationEvents/Components/VentCritterSpawnLocationComponent.cs b/Content.Server/StationEvents/Components/VentCritterSpawnLocationComponent.cs index f675744929d..7fed97cbcf2 100644 --- a/Content.Server/StationEvents/Components/VentCritterSpawnLocationComponent.cs +++ b/Content.Server/StationEvents/Components/VentCritterSpawnLocationComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.StationEvents.Components; [RegisterComponent, Access(typeof(VentClogRule))] -public sealed class VentCritterSpawnLocationComponent : Component +public sealed partial class VentCritterSpawnLocationComponent : Component { } diff --git a/Content.Server/StationEvents/Components/VentCrittersRuleComponent.cs b/Content.Server/StationEvents/Components/VentCrittersRuleComponent.cs index 2e5c33973c4..f280468fc34 100644 --- a/Content.Server/StationEvents/Components/VentCrittersRuleComponent.cs +++ b/Content.Server/StationEvents/Components/VentCrittersRuleComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.StationEvents.Components; [RegisterComponent, Access(typeof(VentCrittersRule))] -public sealed class VentCrittersRuleComponent : Component +public sealed partial class VentCrittersRuleComponent : Component { [DataField("entries")] public List Entries = new(); diff --git a/Content.Server/StationEvents/Events/MassHallucinationsRule.cs b/Content.Server/StationEvents/Events/MassHallucinationsRule.cs index 9e82571c996..722a489541f 100644 --- a/Content.Server/StationEvents/Events/MassHallucinationsRule.cs +++ b/Content.Server/StationEvents/Events/MassHallucinationsRule.cs @@ -1,7 +1,7 @@ using Content.Server.GameTicking.Rules.Components; -using Content.Server.Mind.Components; using Content.Server.StationEvents.Components; using Content.Server.Traits.Assorted; +using Content.Shared.Mind.Components; using Content.Shared.Traits.Assorted; namespace Content.Server.StationEvents.Events; diff --git a/Content.Server/StationEvents/Events/NinjaSpawnRule.cs b/Content.Server/StationEvents/Events/NinjaSpawnRule.cs new file mode 100644 index 00000000000..c60f3298e74 --- /dev/null +++ b/Content.Server/StationEvents/Events/NinjaSpawnRule.cs @@ -0,0 +1,51 @@ +using Content.Server.GameTicking.Rules.Components; +using Content.Server.Ninja.Systems; +using Content.Server.Station.Components; +using Content.Server.StationEvents.Components; +using Robust.Server.GameObjects; +using Robust.Shared.Map; +using Robust.Shared.Map.Components; +using Robust.Shared.Random; + +namespace Content.Server.StationEvents.Events; + +/// +/// Event for spawning a Space Ninja mid-game. +/// +public sealed class NinjaSpawnRule : StationEventSystem +{ + [Dependency] private readonly SpaceNinjaSystem _ninja = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; + + protected override void Started(EntityUid uid, NinjaSpawnRuleComponent comp, GameRuleComponent gameRule, GameRuleStartedEvent args) + { + base.Started(uid, comp, gameRule, args); + + if (!TryGetRandomStation(out var station)) + return; + + var stationData = Comp(station.Value); + + // find a station grid + var gridUid = StationSystem.GetLargestGrid(stationData); + if (gridUid == null || !TryComp(gridUid, out var grid)) + { + Sawmill.Warning("Chosen station has no grids, cannot spawn space ninja!"); + return; + } + + // figure out its AABB size and use that as a guide to how far ninja should be + var size = grid.LocalAABB.Size.Length() / 2; + var distance = size + comp.SpawnDistance; + var angle = RobustRandom.NextAngle(); + // position relative to station center + var location = angle.ToVec() * distance; + + // create the spawner, the ninja will appear when a ghost has picked the role + var xform = Transform(gridUid.Value); + var position = _transform.GetWorldPosition(xform) + location; + var coords = new MapCoordinates(position, xform.MapID); + Sawmill.Info($"Creating ninja spawnpoint at {coords}"); + Spawn("SpawnPointGhostSpaceNinja", coords); + } +} diff --git a/Content.Server/StationEvents/Events/SolarFlareRule.cs b/Content.Server/StationEvents/Events/SolarFlareRule.cs index 206a8ca6854..a4ec74b43ba 100644 --- a/Content.Server/StationEvents/Events/SolarFlareRule.cs +++ b/Content.Server/StationEvents/Events/SolarFlareRule.cs @@ -20,7 +20,18 @@ public sealed class SolarFlareRule : StationEventSystem public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnRadioSendAttempt); + SubscribeLocalEvent(OnRadioReceiveAttempt); + } + + protected override void Started(EntityUid uid, SolarFlareRuleComponent comp, GameRuleComponent gameRule, GameRuleStartedEvent args) + { + base.Started(uid, comp, gameRule, args); + + for (var i = 0; i < comp.ExtraCount; i++) + { + var channel = RobustRandom.Pick(comp.ExtraChannels); + comp.AffectedChannels.Add(channel); + } } protected override void ActiveTick(EntityUid uid, SolarFlareRuleComponent component, GameRuleComponent gameRule, float frameTime) @@ -46,7 +57,7 @@ protected override void ActiveTick(EntityUid uid, SolarFlareRuleComponent compon } } - private void OnRadioSendAttempt(ref RadioReceiveAttemptEvent args) + private void OnRadioReceiveAttempt(ref RadioReceiveAttemptEvent args) { var query = EntityQueryEnumerator(); while (query.MoveNext(out var uid, out var flare, out var gameRule)) diff --git a/Content.Server/StationEvents/Events/StationEventSystem.cs b/Content.Server/StationEvents/Events/StationEventSystem.cs index ac3d2980b90..c647c965064 100644 --- a/Content.Server/StationEvents/Events/StationEventSystem.cs +++ b/Content.Server/StationEvents/Events/StationEventSystem.cs @@ -22,7 +22,7 @@ namespace Content.Server.StationEvents.Events; /// /// An abstract entity system inherited by all station events for their behavior. /// -public abstract class StationEventSystem : GameRuleSystem where T : Component +public abstract partial class StationEventSystem : GameRuleSystem where T : Component { [Dependency] protected readonly IAdminLogManager AdminLogManager = default!; [Dependency] private readonly IGameTiming _timing = default!; diff --git a/Content.Server/StationRecords/Components/GeneralStationRecordConsoleComponent.cs b/Content.Server/StationRecords/Components/GeneralStationRecordConsoleComponent.cs index 8c79fa2dbe0..e5b7f7a260b 100644 --- a/Content.Server/StationRecords/Components/GeneralStationRecordConsoleComponent.cs +++ b/Content.Server/StationRecords/Components/GeneralStationRecordConsoleComponent.cs @@ -3,8 +3,8 @@ namespace Content.Server.StationRecords; [RegisterComponent] -public sealed class GeneralStationRecordConsoleComponent : Component +public sealed partial class GeneralStationRecordConsoleComponent : Component { - public StationRecordKey? ActiveKey { get; set; } + public (NetEntity, uint)? ActiveKey { get; set; } public GeneralStationRecordsFilter? Filter { get; set; } } diff --git a/Content.Server/StationRecords/Components/StationRecordsComponent.cs b/Content.Server/StationRecords/Components/StationRecordsComponent.cs index 447d06385a5..4ea65522f4b 100644 --- a/Content.Server/StationRecords/Components/StationRecordsComponent.cs +++ b/Content.Server/StationRecords/Components/StationRecordsComponent.cs @@ -4,10 +4,11 @@ namespace Content.Server.StationRecords; [Access(typeof(StationRecordsSystem))] [RegisterComponent] -public sealed class StationRecordsComponent : Component +public sealed partial class StationRecordsComponent : Component { // Every single record in this station, by key. // Essentially a columnar database, but I really suck // at implementing that so - [ViewVariables] public readonly StationRecordSet Records = new(); + [IncludeDataField] + public StationRecordSet Records = new(); } diff --git a/Content.Server/StationRecords/StationRecordSet.cs b/Content.Server/StationRecords/StationRecordSet.cs index bc0bc5a4270..2f6b220a783 100644 --- a/Content.Server/StationRecords/StationRecordSet.cs +++ b/Content.Server/StationRecords/StationRecordSet.cs @@ -1,6 +1,7 @@ using System.Diagnostics.CodeAnalysis; using System.Linq; using Content.Shared.StationRecords; +using Robust.Shared.Utility; namespace Content.Server.StationRecords; @@ -9,15 +10,20 @@ namespace Content.Server.StationRecords; /// Keyed by StationRecordKey, which should be obtained from /// an entity that stores a reference to it. /// -public sealed class StationRecordSet +[DataDefinition] +public sealed partial class StationRecordSet { + [DataField("currentRecordId")] private uint _currentRecordId; - private HashSet _keys = new(); + // TODO add custom type serializer so that keys don't have to be written twice. + [DataField("keys")] + public HashSet Keys = new(); + [DataField("recentlyAccessed")] private HashSet _recentlyAccessed = new(); - [ViewVariables] + [DataField("tables")] // TODO ensure all of this data is serializable. private Dictionary> _tables = new(); /// @@ -46,16 +52,17 @@ public sealed class StationRecordSet } /// - /// Add a new record into this set of entries. + /// Add an entry into a record. /// - /// Station that we're adding the record for. - /// A key that represents the record in this set. - public StationRecordKey AddRecord(EntityUid station) + /// Entry to add. + /// Type of the entry that's being added. + public StationRecordKey AddRecordEntry(EntityUid station, T entry) { - var key = new StationRecordKey(_currentRecordId++, station); - - _keys.Add(key); + if (entry == null) + return StationRecordKey.Invalid; + var key = new StationRecordKey(_currentRecordId++, station); + AddRecordEntry(key, entry); return key; } @@ -67,18 +74,11 @@ public StationRecordKey AddRecord(EntityUid station) /// Type of the entry that's being added. public void AddRecordEntry(StationRecordKey key, T entry) { - if (!_keys.Contains(key) || entry == null) - { + if (entry == null) return; - } - - if (!_tables.TryGetValue(typeof(T), out var table)) - { - table = new(); - _tables.Add(typeof(T), table); - } - table.Add(key, entry); + if (Keys.Add(key)) + _tables.GetOrNew(typeof(T))[key] = entry; } /// @@ -92,7 +92,7 @@ public bool TryGetRecordEntry(StationRecordKey key, [NotNullWhen(true)] out T { entry = default; - if (!_keys.Contains(key) + if (!Keys.Contains(key) || !_tables.TryGetValue(typeof(T), out var table) || !table.TryGetValue(key, out var entryObject)) { @@ -113,7 +113,7 @@ public bool TryGetRecordEntry(StationRecordKey key, [NotNullWhen(true)] out T /// True if the entry exists, false otherwise. public bool HasRecordEntry(StationRecordKey key) { - return _keys.Contains(key) + return Keys.Contains(key) && _tables.TryGetValue(typeof(T), out var table) && table.ContainsKey(key); } @@ -142,7 +142,7 @@ public void ClearRecentlyAccessed() /// True if successful, false otherwise. public bool RemoveAllRecords(StationRecordKey key) { - if (!_keys.Remove(key)) + if (!Keys.Remove(key)) { return false; } diff --git a/Content.Server/StationRecords/Systems/GeneralStationRecordConsoleSystem.cs b/Content.Server/StationRecords/Systems/GeneralStationRecordConsoleSystem.cs index f584eeea73e..5e67a554906 100644 --- a/Content.Server/StationRecords/Systems/GeneralStationRecordConsoleSystem.cs +++ b/Content.Server/StationRecords/Systems/GeneralStationRecordConsoleSystem.cs @@ -76,7 +76,7 @@ private void UpdateUserInterface(EntityUid uid, var consoleRecords = _stationRecordsSystem.GetRecordsOfType(owningStation.Value, stationRecordsComponent); - var listing = new Dictionary(); + var listing = new Dictionary<(NetEntity, uint), string>(); foreach (var pair in consoleRecords) { @@ -85,7 +85,7 @@ private void UpdateUserInterface(EntityUid uid, continue; } - listing.Add(pair.Item1, pair.Item2.Name); + listing.Add(_stationRecordsSystem.Convert(pair.Item1), pair.Item2.Name); } if (listing.Count == 0) @@ -104,7 +104,7 @@ private void UpdateUserInterface(EntityUid uid, GeneralStationRecord? record = null; if (console.ActiveKey != null) { - _stationRecordsSystem.TryGetRecord(owningStation.Value, console.ActiveKey.Value, out record, + _stationRecordsSystem.TryGetRecord(owningStation.Value, _stationRecordsSystem.Convert(console.ActiveKey.Value), out record, stationRecordsComponent); } diff --git a/Content.Server/StationRecords/Systems/StationRecordsSystem.cs b/Content.Server/StationRecords/Systems/StationRecordsSystem.cs index f98bc67c338..c70e1d0d9a9 100644 --- a/Content.Server/StationRecords/Systems/StationRecordsSystem.cs +++ b/Content.Server/StationRecords/Systems/StationRecordsSystem.cs @@ -1,11 +1,7 @@ using System.Diagnostics.CodeAnalysis; -using System.Linq; using Content.Server.GameTicking; -using Content.Server.Station.Systems; -using Content.Shared.Access.Components; using Content.Server.Forensics; using Content.Shared.Inventory; -using Content.Shared.Nuke; using Content.Shared.PDA; using Content.Shared.Preferences; using Content.Shared.Roles; @@ -34,7 +30,7 @@ namespace Content.Server.StationRecords.Systems; /// depend on this general record being created. This is subject /// to change. /// -public sealed class StationRecordsSystem : EntitySystem +public sealed class StationRecordsSystem : SharedStationRecordsSystem { [Dependency] private readonly InventorySystem _inventorySystem = default!; [Dependency] private readonly StationRecordKeyStorageSystem _keyStorageSystem = default!; @@ -131,8 +127,9 @@ public void CreateGeneralRecord(EntityUid station, EntityUid? idUid, string name DNA = dna }; - var key = AddRecord(station, records); - AddRecordEntry(key, record, records); + var key = AddRecordEntry(station, record); + if (!key.IsValid()) + return; if (idUid != null) { @@ -148,7 +145,7 @@ public void CreateGeneralRecord(EntityUid station, EntityUid? idUid, string name } } - RaiseLocalEvent(new AfterGeneralRecordCreatedEvent(key, record, profile)); + RaiseLocalEvent(new AfterGeneralRecordCreatedEvent(station, key, record, profile)); } /// @@ -160,13 +157,10 @@ public void CreateGeneralRecord(EntityUid station, EntityUid? idUid, string name /// True if the record was removed, false otherwise. public bool RemoveRecord(EntityUid station, StationRecordKey key, StationRecordsComponent? records = null) { - if (station != key.OriginStation || !Resolve(station, ref records)) - { + if (!Resolve(station, ref records)) return false; - } - - RaiseLocalEvent(new RecordRemovedEvent(key)); + RaiseLocalEvent(new RecordRemovedEvent(station, key)); return records.Records.RemoveAllRecords(key); } @@ -185,10 +179,8 @@ public bool TryGetRecord(EntityUid station, StationRecordKey key, [NotNullWhe { entry = default; - if (key.OriginStation != station || !Resolve(station, ref records)) - { + if (!Resolve(station, ref records)) return false; - } return records.Records.TryGetRecordEntry(key, out entry); } @@ -210,43 +202,20 @@ public bool TryGetRecord(EntityUid station, StationRecordKey key, [NotNullWhe return records.Records.GetRecordsOfType(); } - /// - /// Adds a record to a station's record set. - /// - /// The station to add a record to. - /// Station records component. - /// - /// A station record key, which can be used to add and get records. - /// - /// - /// Occurs when the entity given does not have a station records component. - /// - public StationRecordKey AddRecord(EntityUid station, StationRecordsComponent? records) - { - if (!Resolve(station, ref records)) - { - throw new ArgumentException($"Could not retrieve a {nameof(StationRecordsComponent)} from entity {station}"); - } - - return records.Records.AddRecord(station); - } - /// /// Adds a record entry to a station's record set. /// - /// The key to add the record to. + /// The station to add the record to. /// The record to add. /// Station records component. /// The type of record to add. - public void AddRecordEntry(StationRecordKey key, T record, + public StationRecordKey AddRecordEntry(EntityUid station, T record, StationRecordsComponent? records = null) { - if (!Resolve(key.OriginStation, ref records)) - { - return; - } + if (!Resolve(station, ref records)) + return StationRecordKey.Invalid; - records.Records.AddRecordEntry(key, record); + return records.Records.AddRecordEntry(station, record); } /// @@ -263,7 +232,7 @@ public void Synchronize(EntityUid station, StationRecordsComponent? records = nu foreach (var key in records.Records.GetRecentlyAccessed()) { - RaiseLocalEvent(new RecordModifiedEvent(key)); + RaiseLocalEvent(new RecordModifiedEvent(station, key)); } records.Records.ClearRecentlyAccessed(); @@ -278,6 +247,7 @@ public void Synchronize(EntityUid station, StationRecordsComponent? records = nu /// public sealed class AfterGeneralRecordCreatedEvent : EntityEventArgs { + public readonly EntityUid Station; public StationRecordKey Key { get; } public GeneralStationRecord Record { get; } /// @@ -287,8 +257,10 @@ public sealed class AfterGeneralRecordCreatedEvent : EntityEventArgs /// public HumanoidCharacterProfile? Profile { get; } - public AfterGeneralRecordCreatedEvent(StationRecordKey key, GeneralStationRecord record, HumanoidCharacterProfile? profile) + public AfterGeneralRecordCreatedEvent(EntityUid station, StationRecordKey key, GeneralStationRecord record, + HumanoidCharacterProfile? profile) { + Station = station; Key = key; Record = record; Profile = profile; @@ -303,10 +275,12 @@ public AfterGeneralRecordCreatedEvent(StationRecordKey key, GeneralStationRecord /// public sealed class RecordRemovedEvent : EntityEventArgs { + public readonly EntityUid Station; public StationRecordKey Key { get; } - public RecordRemovedEvent(StationRecordKey key) + public RecordRemovedEvent(EntityUid station, StationRecordKey key) { + Station = station; Key = key; } } @@ -318,10 +292,12 @@ public RecordRemovedEvent(StationRecordKey key) /// public sealed class RecordModifiedEvent : EntityEventArgs { + public readonly EntityUid Station; public StationRecordKey Key { get; } - public RecordModifiedEvent(StationRecordKey key) + public RecordModifiedEvent(EntityUid station, StationRecordKey key) { + Station = station; Key = key; } } diff --git a/Content.Server/Sticky/Components/StickyComponent.cs b/Content.Server/Sticky/Components/StickyComponent.cs index 159022b1893..320938000f5 100644 --- a/Content.Server/Sticky/Components/StickyComponent.cs +++ b/Content.Server/Sticky/Components/StickyComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Sticky.Components; /// For example paper stickers or C4 charges. /// [RegisterComponent] -public sealed class StickyComponent : Component +public sealed partial class StickyComponent : Component { /// /// What target entities are valid to be surface for sticky entity. diff --git a/Content.Server/Sticky/Systems/StickySystem.cs b/Content.Server/Sticky/Systems/StickySystem.cs index 8d89d206155..330b878c05a 100644 --- a/Content.Server/Sticky/Systems/StickySystem.cs +++ b/Content.Server/Sticky/Systems/StickySystem.cs @@ -86,7 +86,7 @@ private bool StartSticking(EntityUid uid, EntityUid user, EntityUid target, Stic component.Stick = true; // start sticking object to target - _doAfterSystem.TryStartDoAfter(new DoAfterArgs(user, delay, new StickyDoAfterEvent(), uid, target: target, used: uid) + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, user, delay, new StickyDoAfterEvent(), uid, target: target, used: uid) { BreakOnTargetMove = true, BreakOnUserMove = true, @@ -133,7 +133,7 @@ private void StartUnsticking(EntityUid uid, EntityUid user, StickyComponent? com component.Stick = false; // start unsticking object - _doAfterSystem.TryStartDoAfter(new DoAfterArgs(user, delay, new StickyDoAfterEvent(), uid, target: uid) + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, user, delay, new StickyDoAfterEvent(), uid, target: uid) { BreakOnTargetMove = true, BreakOnUserMove = true, diff --git a/Content.Server/Storage/Components/BluespaceLockerComponent.cs b/Content.Server/Storage/Components/BluespaceLockerComponent.cs index 92fc18ef39f..7064c0e8574 100644 --- a/Content.Server/Storage/Components/BluespaceLockerComponent.cs +++ b/Content.Server/Storage/Components/BluespaceLockerComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Storage.Components; [RegisterComponent] -public sealed class BluespaceLockerComponent : Component +public sealed partial class BluespaceLockerComponent : Component { /// /// If length > 0, when something is added to the storage, it will instead be teleported to a random storage @@ -85,7 +85,7 @@ public sealed class BluespaceLockerComponent : Component } [DataDefinition] -public record BluespaceLockerBehaviorProperties +public partial record BluespaceLockerBehaviorProperties { /// /// Determines if gas will be transported. diff --git a/Content.Server/Storage/Components/CursedEntityStorageComponent.cs b/Content.Server/Storage/Components/CursedEntityStorageComponent.cs index 92e83afcee7..8a56ecc78e6 100644 --- a/Content.Server/Storage/Components/CursedEntityStorageComponent.cs +++ b/Content.Server/Storage/Components/CursedEntityStorageComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Storage.Components; [RegisterComponent] -public sealed class CursedEntityStorageComponent : Component +public sealed partial class CursedEntityStorageComponent : Component { [DataField("cursedSound")] public SoundSpecifier CursedSound = new SoundPathSpecifier("/Audio/Effects/teleport_departure.ogg"); diff --git a/Content.Server/Storage/Components/EntityStorageComponent.cs b/Content.Server/Storage/Components/EntityStorageComponent.cs index 0824dc89097..40fdb1b3261 100644 --- a/Content.Server/Storage/Components/EntityStorageComponent.cs +++ b/Content.Server/Storage/Components/EntityStorageComponent.cs @@ -4,8 +4,8 @@ namespace Content.Server.Storage.Components; -[RegisterComponent, ComponentReference(typeof(SharedEntityStorageComponent))] -public sealed class EntityStorageComponent : SharedEntityStorageComponent, IGasMixtureHolder +[RegisterComponent] +public sealed partial class EntityStorageComponent : SharedEntityStorageComponent, IGasMixtureHolder { /// /// Gas currently contained in this entity storage. diff --git a/Content.Server/Storage/Components/PickRandomComponent.cs b/Content.Server/Storage/Components/PickRandomComponent.cs index 1046c55911e..ae48ce2e214 100644 --- a/Content.Server/Storage/Components/PickRandomComponent.cs +++ b/Content.Server/Storage/Components/PickRandomComponent.cs @@ -9,7 +9,7 @@ namespace Content.Server.Storage.Components; /// [RegisterComponent] [Access(typeof(PickRandomSystem))] -public sealed class PickRandomComponent : Component +public sealed partial class PickRandomComponent : Component { /// /// Whitelist for potential picked items. diff --git a/Content.Server/Storage/Components/SecretStashComponent.cs b/Content.Server/Storage/Components/SecretStashComponent.cs index 1d7c75ae3ef..60d0c829e90 100644 --- a/Content.Server/Storage/Components/SecretStashComponent.cs +++ b/Content.Server/Storage/Components/SecretStashComponent.cs @@ -13,7 +13,7 @@ namespace Content.Server.Storage.Components /// [RegisterComponent] [Access(typeof(SecretStashSystem))] - public sealed class SecretStashComponent : Component + public sealed partial class SecretStashComponent : Component { /// /// Max item size that can be fitted into secret stash. diff --git a/Content.Server/Storage/Components/ServerStorageComponent.cs b/Content.Server/Storage/Components/ServerStorageComponent.cs deleted file mode 100644 index b0b276ea2c8..00000000000 --- a/Content.Server/Storage/Components/ServerStorageComponent.cs +++ /dev/null @@ -1,88 +0,0 @@ -using Content.Shared.Storage; -using Content.Shared.Whitelist; -using Robust.Shared.Audio; -using Robust.Shared.Containers; -using System.Threading; - -namespace Content.Server.Storage.Components -{ - /// - /// Storage component for containing entities within this one, matches a UI on the client which shows stored entities - /// - [RegisterComponent] - [ComponentReference(typeof(SharedStorageComponent))] - public sealed class ServerStorageComponent : SharedStorageComponent - { - public string LoggerName = "Storage"; - - public Container? Storage; - - public readonly Dictionary SizeCache = new(); - - private bool _occludesLight = true; - - [DataField("quickInsert")] - public bool QuickInsert = false; // Can insert storables by "attacking" them with the storage entity - - [DataField("clickInsert")] - public bool ClickInsert = true; // Can insert stuff by clicking the storage entity with it - - [DataField("areaInsert")] - public bool AreaInsert = false; // "Attacking" with the storage entity causes it to insert all nearby storables after a delay - - [DataField("areaInsertRadius")] - public int AreaInsertRadius = 1; - - [DataField("whitelist")] - public EntityWhitelist? Whitelist = null; - [DataField("blacklist")] - public EntityWhitelist? Blacklist = null; - - /// - /// If true, storage will show popup messages to the player after failed interactions. - /// Usually this is message that item doesn't fit inside container. - /// - [DataField("popup")] - public bool ShowPopup = true; - - /// - /// This storage has an open UI - /// - public bool IsOpen = false; - public int StorageUsed; - [DataField("capacity")] - public int StorageCapacityMax = 10000; - - [DataField("storageOpenSound")] - public SoundSpecifier? StorageOpenSound { get; set; } = new SoundCollectionSpecifier("storageRustle"); - - [DataField("storageInsertSound")] - public SoundSpecifier? StorageInsertSound { get; set; } = new SoundCollectionSpecifier("storageRustle"); - - [DataField("storageRemoveSound")] - public SoundSpecifier? StorageRemoveSound { get; set; } - [DataField("storageCloseSound")] - public SoundSpecifier? StorageCloseSound { get; set; } - - [ViewVariables] - public override IReadOnlyList? StoredEntities => Storage?.ContainedEntities; - - [ViewVariables(VVAccess.ReadWrite)] - [DataField("occludesLight")] - public bool OccludesLight - { - get => _occludesLight; - set - { - _occludesLight = value; - if (Storage != null) Storage.OccludesLight = value; - } - } - - // neccesary for abstraction, should be deleted on complete storage ECS - public override bool Remove(EntityUid entity) - { - return true; - } - } -} diff --git a/Content.Server/Storage/Components/SpawnItemsOnUseComponent.cs b/Content.Server/Storage/Components/SpawnItemsOnUseComponent.cs index 95ef6b33c3f..4112f0cce07 100644 --- a/Content.Server/Storage/Components/SpawnItemsOnUseComponent.cs +++ b/Content.Server/Storage/Components/SpawnItemsOnUseComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Storage.Components /// Spawns items when used in hand. /// [RegisterComponent] - public sealed class SpawnItemsOnUseComponent : Component + public sealed partial class SpawnItemsOnUseComponent : Component { /// /// The list of entities to spawn, with amounts and orGroups. @@ -18,12 +18,13 @@ public sealed class SpawnItemsOnUseComponent : Component /// /// A sound to play when the items are spawned. For example, gift boxes being unwrapped. /// - [DataField("sound", required: true)] + [DataField("sound")] public SoundSpecifier? Sound = null; /// /// How many uses before the item should delete itself. /// + [ViewVariables(VVAccess.ReadWrite)] [DataField("uses")] public int Uses = 1; } diff --git a/Content.Server/Storage/Components/StorageFillComponent.cs b/Content.Server/Storage/Components/StorageFillComponent.cs deleted file mode 100644 index c62868d5eea..00000000000 --- a/Content.Server/Storage/Components/StorageFillComponent.cs +++ /dev/null @@ -1,11 +0,0 @@ -using Content.Server.Storage.EntitySystems; -using Content.Shared.Storage; - -namespace Content.Server.Storage.Components -{ - [RegisterComponent, Access(typeof(StorageSystem))] - public sealed class StorageFillComponent : Component - { - [DataField("contents")] public List Contents = new(); - } -} diff --git a/Content.Server/Storage/EntitySystems/BluespaceLockerSystem.cs b/Content.Server/Storage/EntitySystems/BluespaceLockerSystem.cs index 6f57da16587..805eabb3573 100644 --- a/Content.Server/Storage/EntitySystems/BluespaceLockerSystem.cs +++ b/Content.Server/Storage/EntitySystems/BluespaceLockerSystem.cs @@ -1,16 +1,16 @@ using System.Linq; using Content.Server.Explosion.EntitySystems; -using Content.Server.Mind.Components; using Content.Server.Resist; using Content.Server.Station.Components; using Content.Server.Storage.Components; -using Content.Server.Tools.Systems; using Content.Shared.Access.Components; using Content.Shared.Coordinates; using Content.Shared.DoAfter; using Content.Shared.Lock; +using Content.Shared.Mind.Components; using Content.Shared.Storage.Components; using Content.Shared.Storage.EntitySystems; +using Content.Shared.Tools.Systems; using Robust.Shared.Random; using Robust.Shared.Timing; @@ -284,7 +284,7 @@ private void PostClose(EntityUid uid, BluespaceLockerComponent component, bool d { EnsureComp(uid); - _doAfterSystem.TryStartDoAfter(new DoAfterArgs(uid, component.BehaviorProperties.Delay, new BluespaceLockerDoAfterEvent(), uid)); + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, uid, component.BehaviorProperties.Delay, new BluespaceLockerDoAfterEvent(), uid)); return; } @@ -327,13 +327,12 @@ private void PostClose(EntityUid uid, BluespaceLockerComponent component, bool d } else { - if (target.Value.storageComponent.IsWeldedShut) + if (_weldableSystem.IsWelded(target.Value.uid)) { // It gets bluespaced open... - _weldableSystem.ForceWeldedState(target.Value.uid, false); - if (target.Value.storageComponent.IsWeldedShut) - target.Value.storageComponent.IsWeldedShut = false; + _weldableSystem.SetWeldedState(target.Value.uid, false); } + LockComponent? lockComponent = null; if (Resolve(target.Value.uid, ref lockComponent, false) && lockComponent.Locked) _lockSystem.Unlock(target.Value.uid, target.Value.uid, lockComponent); diff --git a/Content.Server/Storage/EntitySystems/EntityStorageSystem.cs b/Content.Server/Storage/EntitySystems/EntityStorageSystem.cs index faa5f112b99..a828c22d5b9 100644 --- a/Content.Server/Storage/EntitySystems/EntityStorageSystem.cs +++ b/Content.Server/Storage/EntitySystems/EntityStorageSystem.cs @@ -1,11 +1,19 @@ +using System.Diagnostics.CodeAnalysis; using Content.Server.Atmos.EntitySystems; using Content.Server.Construction; using Content.Server.Construction.Components; using Content.Server.Storage.Components; -using Content.Server.Tools.Systems; +using Content.Shared.Destructible; +using Content.Shared.Foldable; +using Content.Shared.Interaction; +using Content.Shared.Lock; +using Content.Shared.Movement.Events; using Content.Shared.Storage.Components; using Content.Shared.Storage.EntitySystems; +using Content.Shared.Tools.Systems; +using Content.Shared.Verbs; using Robust.Shared.Containers; +using Robust.Shared.GameStates; using Robust.Shared.Map; namespace Content.Server.Storage.EntitySystems; @@ -20,9 +28,22 @@ public override void Initialize() { base.Initialize(); + /* CompRef things */ + SubscribeLocalEvent(OnComponentInit); + SubscribeLocalEvent(OnComponentStartup); + SubscribeLocalEvent(OnInteract, after: new[] { typeof(LockSystem) }); + SubscribeLocalEvent(OnLockToggleAttempt); + SubscribeLocalEvent(OnDestruction); + SubscribeLocalEvent>(AddToggleOpenVerb); + SubscribeLocalEvent(OnRelayMovement); + SubscribeLocalEvent(OnFoldAttempt); + + SubscribeLocalEvent(OnGetState); + SubscribeLocalEvent(OnHandleState); + /* CompRef things */ + SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnWeldableAttempt); - SubscribeLocalEvent(OnWelded); SubscribeLocalEvent(OnInsideInhale); SubscribeLocalEvent(OnInsideExhale); @@ -49,6 +70,16 @@ protected override void OnComponentInit(EntityUid uid, SharedEntityStorageCompon _construction.AddContainer(uid, ContainerName, construction); } + public override bool ResolveStorage(EntityUid uid, [NotNullWhen(true)] ref SharedEntityStorageComponent? component) + { + if (component != null) + return true; + + TryComp(uid, out var storage); + component = storage; + return component != null; + } + private void OnWeldableAttempt(EntityUid uid, EntityStorageComponent component, WeldableAttemptEvent args) { if (component.Open) @@ -65,12 +96,6 @@ private void OnWeldableAttempt(EntityUid uid, EntityStorageComponent component, } } - private void OnWelded(EntityUid uid, EntityStorageComponent component, WeldableChangedEvent args) - { - component.IsWeldedShut = args.IsWelded; - Dirty(component); - } - protected override void TakeGas(EntityUid uid, SharedEntityStorageComponent component) { if (!component.Airtight) diff --git a/Content.Server/Storage/EntitySystems/ItemCounterSystem.cs b/Content.Server/Storage/EntitySystems/ItemCounterSystem.cs index e9c42a401ad..415e8d92467 100644 --- a/Content.Server/Storage/EntitySystems/ItemCounterSystem.cs +++ b/Content.Server/Storage/EntitySystems/ItemCounterSystem.cs @@ -1,4 +1,4 @@ -using Content.Server.Storage.Components; +using Content.Shared.Storage; using Content.Shared.Storage.Components; using Content.Shared.Storage.EntitySystems; using JetBrains.Annotations; @@ -11,16 +11,16 @@ public sealed class ItemCounterSystem : SharedItemCounterSystem { protected override int? GetCount(ContainerModifiedMessage msg, ItemCounterComponent itemCounter) { - if (!EntityManager.TryGetComponent(msg.Container.Owner, out ServerStorageComponent? component) - || component.StoredEntities == null) + if (!EntityManager.TryGetComponent(msg.Container.Owner, out StorageComponent? component)) { return null; } var count = 0; - foreach (var entity in component.StoredEntities) + foreach (var entity in component.Container.ContainedEntities) { - if (itemCounter.Count.IsValid(entity)) count++; + if (itemCounter.Count.IsValid(entity)) + count++; } return count; diff --git a/Content.Server/Storage/EntitySystems/PickRandomSystem.cs b/Content.Server/Storage/EntitySystems/PickRandomSystem.cs index 3b73ecb6bb4..50f6db459c1 100644 --- a/Content.Server/Storage/EntitySystems/PickRandomSystem.cs +++ b/Content.Server/Storage/EntitySystems/PickRandomSystem.cs @@ -5,6 +5,7 @@ using Robust.Shared.Containers; using Robust.Shared.Random; using System.Linq; +using Content.Shared.Storage; namespace Content.Server.Storage.EntitySystems; @@ -24,21 +25,20 @@ public override void Initialize() private void OnGetAlternativeVerbs(EntityUid uid, PickRandomComponent comp, GetVerbsEvent args) { - if (!args.CanAccess || !args.CanInteract || !TryComp(uid, out var storage)) + if (!args.CanAccess || !args.CanInteract || !TryComp(uid, out var storage)) return; var user = args.User; - var enabled = false; - if (storage.StoredEntities != null) - enabled = storage.StoredEntities.Any(item => comp.Whitelist?.IsValid(item, EntityManager) ?? true); + var enabled = storage.Container.ContainedEntities.Any(item => comp.Whitelist?.IsValid(item, EntityManager) ?? true); // alt-click / alt-z to pick an item args.Verbs.Add(new AlternativeVerb { - Act = (() => { + Act = () => + { TryPick(uid, comp, storage, user); - }), + }, Impact = LogImpact.Low, Text = Loc.GetString(comp.VerbText), Disabled = !enabled, @@ -46,16 +46,14 @@ private void OnGetAlternativeVerbs(EntityUid uid, PickRandomComponent comp, GetV }); } - private void TryPick(EntityUid uid, PickRandomComponent comp, ServerStorageComponent storage, EntityUid user) + private void TryPick(EntityUid uid, PickRandomComponent comp, StorageComponent storage, EntityUid user) { - if (storage.StoredEntities == null) - return; + var entities = storage.Container.ContainedEntities.Where(item => comp.Whitelist?.IsValid(item, EntityManager) ?? true).ToArray(); - var entities = storage.StoredEntities.Where(item => comp.Whitelist?.IsValid(item, EntityManager) ?? true); if (!entities.Any()) return; - var picked = _random.Pick(entities.ToList()); + var picked = _random.Pick(entities); // if it fails to go into a hand of the user, will be on the storage _container.AttachParentToContainerOrGrid(Transform(picked)); diff --git a/Content.Server/Storage/EntitySystems/SpawnItemsOnUseSystem.cs b/Content.Server/Storage/EntitySystems/SpawnItemsOnUseSystem.cs index b24348507dd..061ddee824f 100644 --- a/Content.Server/Storage/EntitySystems/SpawnItemsOnUseSystem.cs +++ b/Content.Server/Storage/EntitySystems/SpawnItemsOnUseSystem.cs @@ -65,6 +65,10 @@ private void OnUseInHand(EntityUid uid, SpawnItemsOnUseComponent component, UseI if (args.Handled) return; + // If starting with zero or less uses, this component is a no-op + if (component.Uses <= 0) + return; + var coords = Transform(args.User).Coordinates; var spawnEntities = GetSpawns(component.Items, _random); EntityUid? entityToPlaceInHands = null; @@ -79,7 +83,9 @@ private void OnUseInHand(EntityUid uid, SpawnItemsOnUseComponent component, UseI SoundSystem.Play(component.Sound.GetSound(), Filter.Pvs(uid), uid); component.Uses--; - if (component.Uses == 0) + + // Delete entity only if component was successfully used + if (component.Uses <= 0) { args.Handled = true; EntityManager.DeleteEntity(uid); diff --git a/Content.Server/Storage/EntitySystems/StorageFillVisualizerSystem.cs b/Content.Server/Storage/EntitySystems/StorageFillVisualizerSystem.cs index 786e0bc93ca..ed48de2e450 100644 --- a/Content.Server/Storage/EntitySystems/StorageFillVisualizerSystem.cs +++ b/Content.Server/Storage/EntitySystems/StorageFillVisualizerSystem.cs @@ -1,5 +1,5 @@ -using Content.Server.Storage.Components; -using Content.Shared.Rounding; +using Content.Shared.Rounding; +using Content.Shared.Storage; using Content.Shared.Storage.Components; using Robust.Server.GameObjects; using Robust.Shared.Containers; @@ -33,7 +33,7 @@ private void OnRemoved(EntityUid uid, StorageFillVisualizerComponent component, UpdateAppearance(uid, component: component); } - private void UpdateAppearance(EntityUid uid, ServerStorageComponent? storage = null, AppearanceComponent? appearance = null, + private void UpdateAppearance(EntityUid uid, StorageComponent? storage = null, AppearanceComponent? appearance = null, StorageFillVisualizerComponent? component = null) { if (!Resolve(uid, ref storage, ref appearance, ref component, false)) diff --git a/Content.Server/Storage/EntitySystems/StorageSystem.Fill.cs b/Content.Server/Storage/EntitySystems/StorageSystem.Fill.cs index 9a58ff87e88..77c8458b91a 100644 --- a/Content.Server/Storage/EntitySystems/StorageSystem.Fill.cs +++ b/Content.Server/Storage/EntitySystems/StorageSystem.Fill.cs @@ -1,5 +1,6 @@ using Content.Server.Storage.Components; using Content.Shared.Storage; +using Content.Shared.Storage.Components; namespace Content.Server.Storage.EntitySystems; @@ -7,32 +8,33 @@ public sealed partial class StorageSystem { private void OnStorageFillMapInit(EntityUid uid, StorageFillComponent component, MapInitEvent args) { - if (component.Contents.Count == 0) return; + if (component.Contents.Count == 0) + return; - TryComp(uid, out var serverStorageComp); + TryComp(uid, out var storageComp); TryComp(uid, out var entityStorageComp); - if (entityStorageComp == null && serverStorageComp == null) + if (entityStorageComp == null && storageComp == null) { - Logger.Error($"StorageFillComponent couldn't find any StorageComponent ({uid})"); + Log.Error($"StorageFillComponent couldn't find any StorageComponent ({uid})"); return; } var coordinates = Transform(uid).Coordinates; - var spawnItems = EntitySpawnCollection.GetSpawns(component.Contents, _random); + var spawnItems = EntitySpawnCollection.GetSpawns(component.Contents, Random); foreach (var item in spawnItems) { var ent = EntityManager.SpawnEntity(item, coordinates); // handle depending on storage component, again this should be unified after ECS - if (entityStorageComp != null && _entityStorage.Insert(ent, uid)) - continue; + if (entityStorageComp != null && EntityStorage.Insert(ent, uid)) + continue; - if (serverStorageComp != null && Insert(uid, ent, serverStorageComp, false)) + if (storageComp != null && Insert(uid, ent, storageComp: storageComp, playSound: false)) continue; - Logger.ErrorS("storage", $"Tried to StorageFill {item} inside {ToPrettyString(uid)} but can't."); + Log.Error($"Tried to StorageFill {item} inside {ToPrettyString(uid)} but can't."); EntityManager.DeleteEntity(ent); } } diff --git a/Content.Server/Storage/EntitySystems/StorageSystem.cs b/Content.Server/Storage/EntitySystems/StorageSystem.cs index 0322af11faf..da6a4627520 100644 --- a/Content.Server/Storage/EntitySystems/StorageSystem.cs +++ b/Content.Server/Storage/EntitySystems/StorageSystem.cs @@ -1,758 +1,148 @@ -using System.Linq; using Content.Server.Administration.Managers; -using Content.Server.Ghost.Components; -using Content.Server.Interaction; -using Content.Server.Popups; -using Content.Server.Stack; -using Content.Server.Storage.Components; -using Content.Shared.ActionBlocker; using Content.Shared.Administration; -using Content.Shared.CombatMode; -using Content.Shared.Containers.ItemSlots; -using Content.Shared.Destructible; -using Content.Shared.DoAfter; -using Content.Shared.Hands.Components; -using Content.Shared.Hands.EntitySystems; -using Content.Shared.Implants.Components; -using Content.Shared.Interaction; -using Content.Shared.Item; +using Content.Shared.Ghost; using Content.Shared.Lock; -using Content.Shared.Placeable; -using Content.Shared.Stacks; using Content.Shared.Storage; using Content.Shared.Storage.Components; +using Content.Shared.Storage.EntitySystems; using Content.Shared.Timing; using Content.Shared.Verbs; -using Robust.Server.Containers; using Robust.Server.GameObjects; using Robust.Server.Player; -using Robust.Shared.Audio; -using Robust.Shared.Containers; -using Robust.Shared.Map; -using Robust.Shared.Physics.Systems; using Robust.Shared.Player; -using Robust.Shared.Random; +using Robust.Shared.Players; using Robust.Shared.Utility; -using static Content.Shared.Storage.SharedStorageComponent; -namespace Content.Server.Storage.EntitySystems -{ - public sealed partial class StorageSystem : EntitySystem - { - [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly IAdminManager _admin = default!; - [Dependency] private readonly ILogManager _logManager = default!; - [Dependency] private readonly ContainerSystem _containerSystem = default!; - [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; - [Dependency] private readonly EntityLookupSystem _entityLookupSystem = default!; - [Dependency] private readonly EntityStorageSystem _entityStorage = default!; - [Dependency] private readonly InteractionSystem _interactionSystem = default!; - [Dependency] private readonly PopupSystem _popupSystem = default!; - [Dependency] private readonly SharedHandsSystem _sharedHandsSystem = default!; - [Dependency] private readonly SharedInteractionSystem _sharedInteractionSystem = default!; - [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; - [Dependency] private readonly ActionBlockerSystem _actionBlockerSystem = default!; - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly SharedCombatModeSystem _combatMode = default!; - [Dependency] private readonly SharedTransformSystem _transform = default!; - [Dependency] private readonly StackSystem _stack = default!; - [Dependency] private readonly UseDelaySystem _useDelay = default!; - - /// - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnComponentInit); - SubscribeLocalEvent>(AddOpenUiVerb); - SubscribeLocalEvent>(AddTransferVerbs); - SubscribeLocalEvent(OnInteractUsing, after: new[] { typeof(ItemSlotsSystem) }); - SubscribeLocalEvent(OnActivate); - SubscribeLocalEvent(OnImplantActivate); - SubscribeLocalEvent(AfterInteract); - SubscribeLocalEvent(OnDestroy); - SubscribeLocalEvent(OnInteractWithItem); - SubscribeLocalEvent(OnInsertItemMessage); - SubscribeLocalEvent(OnBoundUIOpen); - SubscribeLocalEvent(OnBoundUIClosed); - SubscribeLocalEvent(OnStorageItemRemoved); - - SubscribeLocalEvent(OnDoAfter); - - SubscribeLocalEvent(OnStorageFillMapInit); - } - - private void OnComponentInit(EntityUid uid, ServerStorageComponent storageComp, ComponentInit args) - { - base.Initialize(); - - // ReSharper disable once StringLiteralTypo - storageComp.Storage = _containerSystem.EnsureContainer(uid, "storagebase"); - storageComp.Storage.OccludesLight = storageComp.OccludesLight; - UpdateStorageVisualization(uid, storageComp); - RecalculateStorageUsed(storageComp); - UpdateStorageUI(uid, storageComp); - } - - private void AddOpenUiVerb(EntityUid uid, ServerStorageComponent component, GetVerbsEvent args) - { - var silent = false; - if (!args.CanAccess || !args.CanInteract || TryComp(uid, out var lockComponent) && lockComponent.Locked) - { - // we allow admins to open the storage anyways - if (!_admin.HasAdminFlag(args.User, AdminFlags.Admin)) - return; - - silent = true; - } - - silent |= HasComp(args.User); - - // Get the session for the user - if (!TryComp(args.User, out var actor)) - return; - - // Does this player currently have the storage UI open? - var uiOpen = _uiSystem.SessionHasOpenUi(uid, StorageUiKey.Key, actor.PlayerSession); - - ActivationVerb verb = new() - { - Act = () => OpenStorageUI(uid, args.User, component, silent) - }; - if (uiOpen) - { - verb.Text = Loc.GetString("verb-common-close-ui"); - verb.Icon = new SpriteSpecifier.Texture( - new("/Textures/Interface/VerbIcons/close.svg.192dpi.png")); - } - else - { - verb.Text = Loc.GetString("verb-common-open-ui"); - verb.Icon = new SpriteSpecifier.Texture( - new("/Textures/Interface/VerbIcons/open.svg.192dpi.png")); - } - args.Verbs.Add(verb); - } - - private void AddTransferVerbs(EntityUid uid, ServerStorageComponent component, GetVerbsEvent args) - { - if (!args.CanAccess || !args.CanInteract) - return; +namespace Content.Server.Storage.EntitySystems; - var entities = component.Storage?.ContainedEntities; - if (entities == null || entities.Count == 0 || TryComp(uid, out LockComponent? lockComponent) && lockComponent.Locked) - return; - - // if the target is storage, add a verb to transfer storage. - if (TryComp(args.Target, out ServerStorageComponent? targetStorage) - && (!TryComp(uid, out LockComponent? targetLock) || !targetLock.Locked)) - { - UtilityVerb verb = new() - { - Text = Loc.GetString("storage-component-transfer-verb"), - IconEntity = args.Using, - Act = () => TransferEntities(uid, args.Target, component, lockComponent, targetStorage, targetLock) - }; - - args.Verbs.Add(verb); - } - } - - /// - /// Inserts storable entities into this storage container if possible, otherwise return to the hand of the user - /// - /// true if inserted, false otherwise - private void OnInteractUsing(EntityUid uid, ServerStorageComponent storageComp, InteractUsingEvent args) - { - if (args.Handled || !storageComp.ClickInsert || TryComp(uid, out LockComponent? lockComponent) && lockComponent.Locked) - return; - - _logManager.GetSawmill(storageComp.LoggerName) - .Debug($"Storage (UID {uid}) attacked by user (UID {args.User}) with entity (UID {args.Used})."); - - if (HasComp(uid)) - return; - - PlayerInsertHeldEntity(uid, args.User, storageComp); - // Always handle it, even if insertion fails. - // We don't want to trigger any AfterInteract logic here. - // Example bug: placing wires if item doesn't fit in backpack. - args.Handled = true; - } +public sealed partial class StorageSystem : SharedStorageSystem +{ + [Dependency] private readonly IAdminManager _admin = default!; + [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; - /// - /// Sends a message to open the storage UI - /// - /// - private void OnActivate(EntityUid uid, ServerStorageComponent storageComp, ActivateInWorldEvent args) - { - if (args.Handled || _combatMode.IsInCombatMode(args.User) || TryComp(uid, out LockComponent? lockComponent) && lockComponent.Locked) - return; + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent>(AddUiVerb); + SubscribeLocalEvent(OnBoundUIClosed); - OpenStorageUI(uid, args.User, storageComp); - } + SubscribeLocalEvent(OnStorageFillMapInit); + } - /// - /// Specifically for storage implants. - /// - private void OnImplantActivate(EntityUid uid, ServerStorageComponent storageComp, OpenStorageImplantEvent args) + private void AddUiVerb(EntityUid uid, StorageComponent component, GetVerbsEvent args) + { + var silent = false; + if (!args.CanAccess || !args.CanInteract || TryComp(uid, out var lockComponent) && lockComponent.Locked) { - if (args.Handled || !TryComp(uid, out var xform)) + // we allow admins to open the storage anyways + if (!_admin.HasAdminFlag(args.User, AdminFlags.Admin)) return; - OpenStorageUI(uid, xform.ParentUid, storageComp); + silent = true; } - /// - /// Allows a user to pick up entities by clicking them, or pick up all entities in a certain radius - /// around a click. - /// - /// - private async void AfterInteract(EntityUid uid, ServerStorageComponent storageComp, AfterInteractEvent args) - { - if (!args.CanReach) - return; - - // Pick up all entities in a radius around the clicked location. - // The last half of the if is because carpets exist and this is terrible - if (storageComp.AreaInsert && (args.Target == null || !HasComp(args.Target.Value))) - { - var validStorables = new List(); - var itemQuery = GetEntityQuery(); - - foreach (var entity in _entityLookupSystem.GetEntitiesInRange(args.ClickLocation, storageComp.AreaInsertRadius, LookupFlags.Dynamic | LookupFlags.Sundries)) - { - if (entity == args.User - || !itemQuery.HasComponent(entity) - || !CanInsert(uid, entity, out _, storageComp) - || !_interactionSystem.InRangeUnobstructed(args.User, entity)) - { - continue; - } - - validStorables.Add(entity); - } - - //If there's only one then let's be generous - if (validStorables.Count > 1) - { - var doAfterArgs = new DoAfterArgs(args.User, 0.2f * validStorables.Count, new AreaPickupDoAfterEvent(validStorables), uid, target: uid) - { - BreakOnDamage = true, - BreakOnUserMove = true, - NeedHand = true - }; - - _doAfterSystem.TryStartDoAfter(doAfterArgs); - } - - return; - } - - // Pick up the clicked entity - if (storageComp.QuickInsert) - { - if (args.Target is not { Valid: true } target) - return; + silent |= HasComp(args.User); - if (_containerSystem.IsEntityInContainer(target) - || target == args.User - || !HasComp(target)) - return; + // Get the session for the user + if (!TryComp(args.User, out var actor)) + return; - if (TryComp(uid, out var transformOwner) && TryComp(target, out var transformEnt)) - { - var parent = transformOwner.ParentUid; - - var position = EntityCoordinates.FromMap( - parent.IsValid() ? parent : uid, - transformEnt.MapPosition, - _transform - ); - - if (PlayerInsertEntityInWorld(uid, args.User, target, storageComp)) - { - RaiseNetworkEvent(new AnimateInsertingEntitiesEvent(uid, - new List { target }, - new List { position }, - new List { transformOwner.LocalRotation })); - } - } - } - } + // Does this player currently have the storage UI open? + var uiOpen = _uiSystem.SessionHasOpenUi(uid, StorageComponent.StorageUiKey.Key, actor.PlayerSession); - private void OnDoAfter(EntityUid uid, ServerStorageComponent component, AreaPickupDoAfterEvent args) + ActivationVerb verb = new() { - if (args.Handled || args.Cancelled) - return; - - var successfullyInserted = new List(); - var successfullyInsertedPositions = new List(); - var successfullyInsertedAngles = new List(); - var itemQuery = GetEntityQuery(); - var xformQuery = GetEntityQuery(); - xformQuery.TryGetComponent(uid, out var xform); - - foreach (var entity in args.Entities) + Act = () => { - // Check again, situation may have changed for some entities, but we'll still pick up any that are valid - if (_containerSystem.IsEntityInContainer(entity) - || entity == args.Args.User - || !itemQuery.HasComponent(entity)) - continue; - - if (xform == null || - !xformQuery.TryGetComponent(entity, out var targetXform) || - targetXform.MapID != xform.MapID) + if (uiOpen) { - continue; + _uiSystem.TryClose(uid, StorageComponent.StorageUiKey.Key, actor.PlayerSession); } - - var position = EntityCoordinates.FromMap( - xform.ParentUid.IsValid() ? xform.ParentUid : uid, - new MapCoordinates(_transform.GetWorldPosition(targetXform, xformQuery), targetXform.MapID), - _transform - ); - - var angle = targetXform.LocalRotation; - - if (PlayerInsertEntityInWorld(uid, args.Args.User, entity, component)) + else { - successfullyInserted.Add(entity); - successfullyInsertedPositions.Add(position); - successfullyInsertedAngles.Add(angle); + OpenStorageUI(uid, args.User, component, silent); } } - - // If we picked up atleast one thing, play a sound and do a cool animation! - if (successfullyInserted.Count > 0) - { - _audio.PlayPvs(component.StorageInsertSound, uid); - RaiseNetworkEvent(new AnimateInsertingEntitiesEvent(uid, successfullyInserted, successfullyInsertedPositions, successfullyInsertedAngles)); - } - - args.Handled = true; - } - - private void OnDestroy(EntityUid uid, ServerStorageComponent storageComp, DestructionEventArgs args) + }; + if (uiOpen) { - var storedEntities = storageComp.StoredEntities?.ToList(); - - if (storedEntities == null) - return; - - foreach (var entity in storedEntities) - { - RemoveAndDrop(uid, entity, storageComp); - } + verb.Text = Loc.GetString("verb-common-close-ui"); + verb.Icon = new SpriteSpecifier.Texture( + new("/Textures/Interface/VerbIcons/close.svg.192dpi.png")); } - - /// - /// This function gets called when the user clicked on an item in the storage UI. This will either place the - /// item in the user's hand if it is currently empty, or interact with the item using the user's currently - /// held item. - /// - private void OnInteractWithItem(EntityUid uid, ServerStorageComponent storageComp, StorageInteractWithItemEvent args) + else { - // TODO move this to shared for prediction. - if (args.Session.AttachedEntity is not EntityUid player) - return; - - if (!Exists(args.InteractedItemUID)) - { - Log.Error($"Player {args.Session} interacted with non-existent item {args.InteractedItemUID} stored in {ToPrettyString(uid)}"); - return; - } - - if (!_actionBlockerSystem.CanInteract(player, args.InteractedItemUID) || storageComp.Storage == null || !storageComp.Storage.Contains(args.InteractedItemUID)) - return; - - // Does the player have hands? - if (!TryComp(player, out HandsComponent? hands) || hands.Count == 0) - return; - - // If the user's active hand is empty, try pick up the item. - if (hands.ActiveHandEntity == null) - { - if (_sharedHandsSystem.TryPickupAnyHand(player, args.InteractedItemUID, handsComp: hands) - && storageComp.StorageRemoveSound != null) - _audio.Play(storageComp.StorageRemoveSound, Filter.Pvs(uid, entityManager: EntityManager), uid, true, AudioParams.Default); - return; - } - - // Else, interact using the held item - _interactionSystem.InteractUsing(player, hands.ActiveHandEntity.Value, args.InteractedItemUID, Transform(args.InteractedItemUID).Coordinates, checkCanInteract: false); + verb.Text = Loc.GetString("verb-common-open-ui"); + verb.Icon = new SpriteSpecifier.Texture( + new("/Textures/Interface/VerbIcons/open.svg.192dpi.png")); } + args.Verbs.Add(verb); + } - private void OnInsertItemMessage(EntityUid uid, ServerStorageComponent storageComp, StorageInsertItemMessage args) - { - // TODO move this to shared for prediction. - if (args.Session.AttachedEntity == null) - return; - - PlayerInsertHeldEntity(uid, args.Session.AttachedEntity.Value, storageComp); - } - - private void OnBoundUIOpen(EntityUid uid, ServerStorageComponent storageComp, BoundUIOpenedEvent args) - { - if (!storageComp.IsOpen) - { - storageComp.IsOpen = true; - UpdateStorageVisualization(uid, storageComp); - } - } - - private void OnBoundUIClosed(EntityUid uid, ServerStorageComponent storageComp, BoundUIClosedEvent args) - { - if (TryComp(args.Session.AttachedEntity, out var actor) && actor?.PlayerSession != null) - CloseNestedInterfaces(uid, actor.PlayerSession, storageComp); - - // If UI is closed for everyone - if (!_uiSystem.IsUiOpen(uid, args.UiKey)) - { - storageComp.IsOpen = false; - UpdateStorageVisualization(uid, storageComp); - - if (storageComp.StorageCloseSound is not null) - _audio.Play(storageComp.StorageCloseSound, Filter.Pvs(uid, entityManager: EntityManager), uid, true, storageComp.StorageCloseSound.Params); - } - } - - private void OnStorageItemRemoved(EntityUid uid, ServerStorageComponent storageComp, EntRemovedFromContainerMessage args) - { - RecalculateStorageUsed(storageComp); - UpdateStorageUI(uid, storageComp); - } - - private void UpdateStorageVisualization(EntityUid uid, ServerStorageComponent storageComp) - { - if (!TryComp(uid, out var appearance)) - return; - - _appearance.SetData(uid, StorageVisuals.Open, storageComp.IsOpen, appearance); - _appearance.SetData(uid, SharedBagOpenVisuals.BagState, storageComp.IsOpen ? SharedBagState.Open : SharedBagState.Closed); - - if (HasComp(uid)) - _appearance.SetData(uid, StackVisuals.Hide, !storageComp.IsOpen); - } - - public void RecalculateStorageUsed(ServerStorageComponent storageComp) - { - storageComp.StorageUsed = 0; - storageComp.SizeCache.Clear(); - - if (storageComp.Storage == null) - return; - - var itemQuery = GetEntityQuery(); - - foreach (var entity in storageComp.Storage.ContainedEntities) - { - if (!itemQuery.TryGetComponent(entity, out var itemComp)) - continue; - - var size = itemComp.Size; - storageComp.StorageUsed += size; - storageComp.SizeCache.Add(entity, size); - } - } - - public int GetAvailableSpace(EntityUid uid, ServerStorageComponent? component = null) - { - if (!Resolve(uid, ref component)) - return 0; - - return component.StorageCapacityMax - component.StorageUsed; - } - - /// - /// Move entities from one storage to another. - /// - public void TransferEntities(EntityUid source, EntityUid target, - ServerStorageComponent? sourceComp = null, LockComponent? sourceLock = null, - ServerStorageComponent? targetComp = null, LockComponent? targetLock = null) - { - if (!Resolve(source, ref sourceComp) || !Resolve(target, ref targetComp)) - return; - - var entities = sourceComp.Storage?.ContainedEntities; - if (entities == null || entities.Count == 0) - return; - - if (Resolve(source, ref sourceLock, false) && sourceLock.Locked - || Resolve(target, ref targetLock, false) && targetLock.Locked) - return; - - foreach (var entity in entities.ToList()) - { - Insert(target, entity, targetComp); - } - RecalculateStorageUsed(sourceComp); - UpdateStorageUI(source, sourceComp); - } - - /// - /// Verifies if an entity can be stored and if it fits - /// - /// The entity to check - /// If returning false, the reason displayed to the player - /// true if it can be inserted, false otherwise - public bool CanInsert(EntityUid uid, EntityUid insertEnt, out string? reason, ServerStorageComponent? storageComp = null) - { - if (!Resolve(uid, ref storageComp)) - { - reason = null; - return false; - } - - if (TryComp(insertEnt, out TransformComponent? transformComp) && transformComp.Anchored) - { - reason = "comp-storage-anchored-failure"; - return false; - } - - if (storageComp.Whitelist?.IsValid(insertEnt, EntityManager) == false) - { - reason = "comp-storage-invalid-container"; - return false; - } - - if (storageComp.Blacklist?.IsValid(insertEnt, EntityManager) == true) - { - reason = "comp-storage-invalid-container"; - return false; - } - - if (TryComp(insertEnt, out ServerStorageComponent? storage) && - storage.StorageCapacityMax >= storageComp.StorageCapacityMax) - { - reason = "comp-storage-insufficient-capacity"; - return false; - } - - if (TryComp(insertEnt, out ItemComponent? itemComp) && - itemComp.Size > storageComp.StorageCapacityMax - storageComp.StorageUsed) - { - reason = "comp-storage-insufficient-capacity"; - return false; - } - - reason = null; - return true; - } - - /// - /// Inserts into the storage container - /// - /// true if the entity was inserted, false otherwise - public bool Insert(EntityUid uid, EntityUid insertEnt, ServerStorageComponent? storageComp = null, bool playSound = true) - { - if (!Resolve(uid, ref storageComp) || !CanInsert(uid, insertEnt, out _, storageComp) || storageComp.Storage == null) - return false; - - /* - * 1. If the inserted thing is stackable then try to stack it to existing stacks - * 2. If anything remains insert whatever is possible. - * 3. If insertion is not possible then leave the stack as is. - * At either rate still play the insertion sound - * - * For now we just treat items as always being the same size regardless of stack count. - */ - - // If it's stackable then prefer to stack it - var stackQuery = GetEntityQuery(); - - if (stackQuery.TryGetComponent(insertEnt, out var insertStack)) - { - var toInsertCount = insertStack.Count; - - foreach (var ent in storageComp.Storage.ContainedEntities) - { - if (!stackQuery.TryGetComponent(ent, out var containedStack) || !insertStack.StackTypeId.Equals(containedStack.StackTypeId)) - continue; - - if (!_stack.TryAdd(insertEnt, ent, insertStack, containedStack)) - continue; - - var remaining = insertStack.Count; - toInsertCount -= toInsertCount - remaining; - - if (remaining > 0) - continue; - - break; - } - - // Still stackable remaining - if (insertStack.Count > 0) - { - // Try to insert it as a new stack. - if (TryComp(insertEnt, out ItemComponent? itemComp) && - itemComp.Size > storageComp.StorageCapacityMax - storageComp.StorageUsed || - !storageComp.Storage.Insert(insertEnt)) - { - // If we also didn't do any stack fills above then just end - // otherwise play sound and update UI anyway. - if (toInsertCount == insertStack.Count) - return false; - } - } - } - // Non-stackable but no insertion for reasons. - else if (!storageComp.Storage.Insert(insertEnt)) - { - return false; - } - - if (playSound && storageComp.StorageInsertSound is not null) - _audio.PlayPvs(storageComp.StorageInsertSound, uid); - - RecalculateStorageUsed(storageComp); - UpdateStorageUI(uid, storageComp); - return true; - } + private void OnBoundUIClosed(EntityUid uid, StorageComponent storageComp, BoundUIClosedEvent args) + { + if (TryComp(args.Session.AttachedEntity, out var actor) && actor?.PlayerSession != null) + CloseNestedInterfaces(uid, actor.PlayerSession, storageComp); - // REMOVE: remove and drop on the ground - public bool RemoveAndDrop(EntityUid uid, EntityUid removeEnt, ServerStorageComponent? storageComp = null) + // If UI is closed for everyone + if (!_uiSystem.IsUiOpen(uid, args.UiKey)) { - if (!Resolve(uid, ref storageComp)) - return false; - - var itemRemoved = storageComp.Storage?.Remove(removeEnt) == true; - if (itemRemoved) - RecalculateStorageUsed(storageComp); + storageComp.IsUiOpen = false; + UpdateStorageVisualization(uid, storageComp); - return itemRemoved; + if (storageComp.StorageCloseSound is not null) + Audio.Play(storageComp.StorageCloseSound, Filter.Pvs(uid, entityManager: EntityManager), uid, true, storageComp.StorageCloseSound.Params); } + } - /// - /// Inserts an entity into storage from the player's active hand - /// - /// The player to insert an entity from - /// true if inserted, false otherwise - public bool PlayerInsertHeldEntity(EntityUid uid, EntityUid player, ServerStorageComponent? storageComp = null) - { - if (!Resolve(uid, ref storageComp) || !TryComp(player, out HandsComponent? hands) || hands.ActiveHandEntity == null) - return false; - - var toInsert = hands.ActiveHandEntity; - - if (!CanInsert(uid, toInsert.Value, out var reason, storageComp)) - { - Popup(uid, player, reason ?? "comp-storage-cant-insert", storageComp); - return false; - } - - if (!_sharedHandsSystem.TryDrop(player, toInsert.Value, handsComp: hands)) - { - PopupEnt(uid, player, "comp-storage-cant-drop", toInsert.Value, storageComp); - return false; - } - - return PlayerInsertEntityInWorld(uid, player, toInsert.Value, storageComp); - } + /// + /// Opens the storage UI for an entity + /// + /// The entity to open the UI for + public override void OpenStorageUI(EntityUid uid, EntityUid entity, StorageComponent? storageComp = null, bool silent = false) + { + if (!Resolve(uid, ref storageComp) || !TryComp(entity, out ActorComponent? player)) + return; - /// - /// Inserts an Entity () in the world into storage, informing if it fails. - /// is *NOT* held, see . - /// - /// The player to insert an entity with - /// true if inserted, false otherwise - public bool PlayerInsertEntityInWorld(EntityUid uid, EntityUid player, EntityUid toInsert, ServerStorageComponent? storageComp = null) + // prevent spamming bag open / honkerton honk sound + silent |= TryComp(uid, out var useDelay) && UseDelay.ActiveDelay(uid, useDelay); + if (!silent) { - if (!Resolve(uid, ref storageComp) || !_sharedInteractionSystem.InRangeUnobstructed(player, uid, popup: storageComp.ShowPopup)) - return false; - - if (!Insert(uid, toInsert, storageComp)) - { - Popup(uid, player, "comp-storage-cant-insert", storageComp); - return false; - } - return true; + Audio.PlayPvs(storageComp.StorageOpenSound, uid); + if (useDelay != null) + UseDelay.BeginDelay(uid, useDelay); } - /// - /// Opens the storage UI for an entity - /// - /// The entity to open the UI for - public void OpenStorageUI(EntityUid uid, EntityUid entity, ServerStorageComponent? storageComp = null, bool silent = false) - { - if (!Resolve(uid, ref storageComp) || !TryComp(entity, out ActorComponent? player)) - return; - - // prevent spamming bag open / honkerton honk sound - silent |= TryComp(uid, out var useDelay) && _useDelay.ActiveDelay(uid, useDelay); - if (!silent) - { - _audio.PlayPvs(storageComp.StorageOpenSound, uid); - if (useDelay != null) - _useDelay.BeginDelay(uid, useDelay); - } + Log.Debug($"Storage (UID {uid}) \"used\" by player session (UID {player.PlayerSession.AttachedEntity})."); - _logManager.GetSawmill(storageComp.LoggerName) - .Debug($"Storage (UID {uid}) \"used\" by player session (UID {player.PlayerSession.AttachedEntity})."); + var bui = _uiSystem.GetUiOrNull(uid, StorageComponent.StorageUiKey.Key); + if (bui != null) + _uiSystem.OpenUi(bui, player.PlayerSession); + } - var bui = _uiSystem.GetUiOrNull(uid, StorageUiKey.Key); - if (bui != null) - _uiSystem.OpenUi(bui, player.PlayerSession); - } + /// + /// If the user has nested-UIs open (e.g., PDA UI open when pda is in a backpack), close them. + /// + /// + public void CloseNestedInterfaces(EntityUid uid, IPlayerSession session, StorageComponent? storageComp = null) + { + if (!Resolve(uid, ref storageComp)) + return; - /// - /// If the user has nested-UIs open (e.g., PDA UI open when pda is in a backpack), close them. - /// - /// - public void CloseNestedInterfaces(EntityUid uid, IPlayerSession session, ServerStorageComponent? storageComp = null) + // for each containing thing + // if it has a storage comp + // ensure unsubscribe from session + // if it has a ui component + // close ui + foreach (var entity in storageComp.Container.ContainedEntities) { - if (!Resolve(uid, ref storageComp) || storageComp.StoredEntities == null) - return; + if (!TryComp(entity, out UserInterfaceComponent? ui)) + continue; - // for each containing thing - // if it has a storage comp - // ensure unsubscribe from session - // if it has a ui component - // close ui - foreach (var entity in storageComp.StoredEntities) + foreach (var bui in ui.Interfaces.Values) { - if (TryComp(entity, out ServerStorageComponent? storedStorageComp)) - DebugTools.Assert(storedStorageComp != storageComp, $"Storage component contains itself!? Entity: {uid}"); - - if (!TryComp(entity, out ServerUserInterfaceComponent? ui)) - continue; - - foreach (var bui in ui.Interfaces.Values) - { - _uiSystem.TryClose(entity, bui.UiKey, session, ui); - } + _uiSystem.TryClose(entity, bui.UiKey, session, ui); } } - - public void UpdateStorageUI(EntityUid uid, ServerStorageComponent storageComp) - { - if (storageComp.Storage == null) - return; - - var state = new StorageBoundUserInterfaceState((List) storageComp.Storage.ContainedEntities, storageComp.StorageUsed, storageComp.StorageCapacityMax); - - var bui = _uiSystem.GetUiOrNull(uid, StorageUiKey.Key); - if (bui != null) - UserInterfaceSystem.SetUiState(bui, state); - } - - private void Popup(EntityUid _, EntityUid player, string message, ServerStorageComponent storageComp) - { - if (!storageComp.ShowPopup) - return; - - _popupSystem.PopupEntity(Loc.GetString(message), player, player); - } - - private void PopupEnt(EntityUid _, EntityUid player, string message, EntityUid entityUid, ServerStorageComponent storageComp) - { - if (!storageComp.ShowPopup) - return; - - _popupSystem.PopupEntity(Loc.GetString(message, ("entity", entityUid)), player, player); - } } } diff --git a/Content.Server/Store/Components/CurrencyComponent.cs b/Content.Server/Store/Components/CurrencyComponent.cs index 872a995bdeb..cfe9b76c8bf 100644 --- a/Content.Server/Store/Components/CurrencyComponent.cs +++ b/Content.Server/Store/Components/CurrencyComponent.cs @@ -9,7 +9,7 @@ namespace Content.Server.Store.Components; /// to increase its balance. /// [RegisterComponent] -public sealed class CurrencyComponent : Component +public sealed partial class CurrencyComponent : Component { /// /// The value of the currency. diff --git a/Content.Server/Store/Components/StoreComponent.cs b/Content.Server/Store/Components/StoreComponent.cs index 43f038effa2..54f8c9ee15b 100644 --- a/Content.Server/Store/Components/StoreComponent.cs +++ b/Content.Server/Store/Components/StoreComponent.cs @@ -12,7 +12,7 @@ namespace Content.Server.Store.Components; /// through the ui. The currency, listings, and categories are defined in yaml. /// [RegisterComponent] -public sealed class StoreComponent : Component +public sealed partial class StoreComponent : Component { /// /// The default preset for the store. Is overriden by default values specified on the component. diff --git a/Content.Server/Store/Conditions/BuyerAntagCondition.cs b/Content.Server/Store/Conditions/BuyerAntagCondition.cs index 6fb346d2c30..1edc4a33657 100644 --- a/Content.Server/Store/Conditions/BuyerAntagCondition.cs +++ b/Content.Server/Store/Conditions/BuyerAntagCondition.cs @@ -1,17 +1,16 @@ -using Content.Server.Mind.Components; -using Content.Server.Roles; -using Content.Server.Traitor; +using Content.Shared.Mind; using Content.Shared.Roles; +using Content.Shared.Store; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Set; -namespace Content.Shared.Store.Conditions; +namespace Content.Server.Store.Conditions; /// /// Allows a store entry to be filtered out based on the user's antag role. /// Supports both blacklists and whitelists. This is copypaste because roles /// are absolute shitcode. Refactor this later. -emo /// -public sealed class BuyerAntagCondition : ListingCondition +public sealed partial class BuyerAntagCondition : ListingCondition { /// /// A whitelist of antag roles that can purchase this listing. Only one needs to be found. @@ -28,18 +27,22 @@ public sealed class BuyerAntagCondition : ListingCondition public override bool Condition(ListingConditionArgs args) { var ent = args.EntityManager; + var minds = ent.System(); - if (!ent.TryGetComponent(args.Buyer, out var mind) || mind.Mind == null) + if (!minds.TryGetMind(args.Buyer, out var mindId, out var mind)) return true; + var roleSystem = ent.System(); + var roles = roleSystem.MindGetAllRoles(mindId); + if (Blacklist != null) { - foreach (var role in mind.Mind.AllRoles) + foreach (var role in roles) { - if (role is not AntagonistRole blacklistantag) + if (role.Component is not AntagonistRoleComponent blacklistantag) continue; - if (Blacklist.Contains(blacklistantag.Prototype.ID)) + if (blacklistantag.PrototypeId != null && Blacklist.Contains(blacklistantag.PrototypeId)) return false; } } @@ -47,12 +50,12 @@ public override bool Condition(ListingConditionArgs args) if (Whitelist != null) { var found = false; - foreach (var role in mind.Mind.AllRoles) + foreach (var role in roles) { - if (role is not AntagonistRole antag) + if (role.Component is not AntagonistRoleComponent antag) continue; - if (Whitelist.Contains(antag.Prototype.ID)) + if (antag.PrototypeId != null && Whitelist.Contains(antag.PrototypeId)) found = true; } if (!found) diff --git a/Content.Server/Store/Conditions/BuyerDepartmentCondition.cs b/Content.Server/Store/Conditions/BuyerDepartmentCondition.cs new file mode 100644 index 00000000000..a71adc4e779 --- /dev/null +++ b/Content.Server/Store/Conditions/BuyerDepartmentCondition.cs @@ -0,0 +1,73 @@ +using Content.Shared.Mind; +using Content.Shared.Roles; +using Content.Shared.Roles.Jobs; +using Content.Shared.Store; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Set; + +namespace Content.Server.Store.Conditions; + +/// +/// Allows a store entry to be filtered out based on the user's job. +/// Supports both blacklists and whitelists +/// +public sealed partial class BuyerDepartmentCondition : ListingCondition +{ + /// + /// A whitelist of department prototypes that can purchase this listing. Only one needs to be found. + /// + [DataField("whitelist", customTypeSerializer: typeof(PrototypeIdHashSetSerializer))] + public HashSet? Whitelist; + + /// + /// A blacklist of department prototypes that can purchase this listing. Only one needs to be found. + /// + [DataField("blacklist", customTypeSerializer: typeof(PrototypeIdHashSetSerializer))] + public HashSet? Blacklist; + + public override bool Condition(ListingConditionArgs args) + { + var prototypeManager = IoCManager.Resolve(); + + var ent = args.EntityManager; + var minds = ent.System(); + + // this is for things like surplus crate + if (!minds.TryGetMind(args.Buyer, out var mindId, out _)) + return true; + + var jobs = ent.System(); + jobs.MindTryGetJob(mindId, out var job, out _); + + if (Blacklist != null && job?.PrototypeId != null) + { + foreach (var department in prototypeManager.EnumeratePrototypes()) + { + if (department.Roles.Contains(job.PrototypeId) && Blacklist.Contains(department.ID)) + return false; + } + } + + if (Whitelist != null) + { + var found = false; + + if (job?.PrototypeId != null) + { + foreach (var department in prototypeManager.EnumeratePrototypes()) + { + if (department.Roles.Contains(job.PrototypeId) && Whitelist.Contains(department.ID)) + { + found = true; + break; + } + } + } + + if (!found) + return false; + } + + return true; + } +} diff --git a/Content.Server/Store/Conditions/BuyerJobCondition.cs b/Content.Server/Store/Conditions/BuyerJobCondition.cs index b34b6a320ba..f5013008abf 100644 --- a/Content.Server/Store/Conditions/BuyerJobCondition.cs +++ b/Content.Server/Store/Conditions/BuyerJobCondition.cs @@ -1,6 +1,6 @@ -using Content.Server.Mind.Components; -using Content.Server.Roles; +using Content.Shared.Mind; using Content.Shared.Roles; +using Content.Shared.Roles.Jobs; using Content.Shared.Store; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Set; @@ -10,7 +10,7 @@ namespace Content.Server.Store.Conditions; /// Allows a store entry to be filtered out based on the user's job. /// Supports both blacklists and whitelists /// -public sealed class BuyerJobCondition : ListingCondition +public sealed partial class BuyerJobCondition : ListingCondition { /// /// A whitelist of jobs prototypes that can purchase this listing. Only one needs to be found. @@ -27,34 +27,24 @@ public sealed class BuyerJobCondition : ListingCondition public override bool Condition(ListingConditionArgs args) { var ent = args.EntityManager; + var minds = ent.System(); - if (!ent.TryGetComponent(args.Buyer, out var mind) || mind.Mind == null) - return true; //this is for things like surplus crate + // this is for things like surplus crate + if (!minds.TryGetMind(args.Buyer, out var mindId, out _)) + return true; + + var jobs = ent.System(); + jobs.MindTryGetJob(mindId, out var job, out _); if (Blacklist != null) { - foreach (var role in mind.Mind.AllRoles) - { - if (role is not Job job) - continue; - - if (Blacklist.Contains(job.Prototype.ID)) - return false; - } + if (job?.PrototypeId != null && Blacklist.Contains(job.PrototypeId)) + return false; } if (Whitelist != null) { - var found = false; - foreach (var role in mind.Mind.AllRoles) - { - if (role is not Job job) - continue; - - if (Whitelist.Contains(job.Prototype.ID)) - found = true; - } - if (!found) + if (job?.PrototypeId == null || !Whitelist.Contains(job.PrototypeId)) return false; } diff --git a/Content.Server/Store/Conditions/BuyerSpeciesCondition.cs b/Content.Server/Store/Conditions/BuyerSpeciesCondition.cs index 404c9422a00..3a3df725c45 100644 --- a/Content.Server/Store/Conditions/BuyerSpeciesCondition.cs +++ b/Content.Server/Store/Conditions/BuyerSpeciesCondition.cs @@ -11,7 +11,7 @@ namespace Content.Server.Store.Conditions; /// Allows a store entry to be filtered out based on the user's species. /// Supports both blacklists and whitelists. /// -public sealed class BuyerSpeciesCondition : ListingCondition +public sealed partial class BuyerSpeciesCondition : ListingCondition { /// /// A whitelist of species that can purchase this listing. diff --git a/Content.Server/Store/Conditions/BuyerWhitelistCondition.cs b/Content.Server/Store/Conditions/BuyerWhitelistCondition.cs index e9ca245ccd9..859703a72a7 100644 --- a/Content.Server/Store/Conditions/BuyerWhitelistCondition.cs +++ b/Content.Server/Store/Conditions/BuyerWhitelistCondition.cs @@ -6,7 +6,7 @@ namespace Content.Server.Store.Conditions; /// /// Filters out an entry based on the components or tags on an entity. /// -public sealed class BuyerWhitelistCondition : ListingCondition +public sealed partial class BuyerWhitelistCondition : ListingCondition { /// /// A whitelist of tags or components. diff --git a/Content.Server/Store/Conditions/ListingLimitedStockCondition.cs b/Content.Server/Store/Conditions/ListingLimitedStockCondition.cs index e1fdbfe892b..94df62feb83 100644 --- a/Content.Server/Store/Conditions/ListingLimitedStockCondition.cs +++ b/Content.Server/Store/Conditions/ListingLimitedStockCondition.cs @@ -5,7 +5,7 @@ namespace Content.Server.Store.Conditions; /// /// Only allows a listing to be purchased a certain amount of times. /// -public sealed class ListingLimitedStockCondition : ListingCondition +public sealed partial class ListingLimitedStockCondition : ListingCondition { /// /// The amount of times this listing can be purchased. diff --git a/Content.Server/Store/Conditions/StoreWhitelistCondition.cs b/Content.Server/Store/Conditions/StoreWhitelistCondition.cs index ccef958320a..20ec5cecce8 100644 --- a/Content.Server/Store/Conditions/StoreWhitelistCondition.cs +++ b/Content.Server/Store/Conditions/StoreWhitelistCondition.cs @@ -6,7 +6,7 @@ namespace Content.Server.Store.Conditions; /// /// Filters out an entry based on the components or tags on the store itself. /// -public sealed class StoreWhitelistCondition : ListingCondition +public sealed partial class StoreWhitelistCondition : ListingCondition { /// /// A whitelist of tags or components. diff --git a/Content.Server/Store/Systems/StoreSystem.Command.cs b/Content.Server/Store/Systems/StoreSystem.Command.cs index 5823bfe0288..d259da2c95e 100644 --- a/Content.Server/Store/Systems/StoreSystem.Command.cs +++ b/Content.Server/Store/Systems/StoreSystem.Command.cs @@ -26,8 +26,10 @@ private void AddCurrencyCommand(IConsoleShell shell, string argstr, string[] arg return; } - if (!EntityUid.TryParse(args[0], out var uid) || !float.TryParse(args[2], out var id)) + if (!NetEntity.TryParse(args[0], out var uidNet) || !TryGetEntity(uidNet, out var uid) || !float.TryParse(args[2], out var id)) + { return; + } if (!TryComp(uid, out var store)) return; @@ -37,7 +39,7 @@ private void AddCurrencyCommand(IConsoleShell shell, string argstr, string[] arg { args[1], id } }; - TryAddCurrency(currency, uid, store); + TryAddCurrency(currency, uid.Value, store); } private CompletionResult AddCurrencyCommandCompletions(IConsoleShell shell, string[] args) @@ -53,7 +55,7 @@ private CompletionResult AddCurrencyCommandCompletions(IConsoleShell shell, stri return CompletionResult.FromHintOptions(allStores, ""); } - if (args.Length == 2 && EntityUid.TryParse(args[0], out var uid)) + if (args.Length == 2 && NetEntity.TryParse(args[0], out var uidNet) && TryGetEntity(uidNet, out var uid)) { if (TryComp(uid, out var store)) return CompletionResult.FromHintOptions(store.CurrencyWhitelist, ""); diff --git a/Content.Server/Store/Systems/StoreSystem.Ui.cs b/Content.Server/Store/Systems/StoreSystem.Ui.cs index 19f5a2105e5..d2fccd1b9c3 100644 --- a/Content.Server/Store/Systems/StoreSystem.Ui.cs +++ b/Content.Server/Store/Systems/StoreSystem.Ui.cs @@ -1,16 +1,15 @@ +using System.Linq; using Content.Server.Actions; using Content.Server.Administration.Logs; using Content.Server.PDA.Ringer; using Content.Server.Stack; using Content.Server.Store.Components; using Content.Server.UserInterface; -using Content.Shared.Actions.ActionTypes; +using Content.Shared.Database; using Content.Shared.FixedPoint; using Content.Shared.Hands.EntitySystems; using Content.Shared.Store; -using Content.Shared.Database; using Robust.Server.GameObjects; -using System.Linq; namespace Content.Server.Store.Systems; @@ -68,7 +67,7 @@ public void CloseUi(EntityUid uid, StoreComponent? component = null) /// The store entity itself /// The store component being refreshed. /// - public void UpdateUserInterface(EntityUid? user, EntityUid store, StoreComponent? component = null, BoundUserInterface? ui = null) + public void UpdateUserInterface(EntityUid? user, EntityUid store, StoreComponent? component = null, PlayerBoundUserInterface? ui = null) { if (!Resolve(store, ref component)) return; @@ -98,12 +97,12 @@ public void UpdateUserInterface(EntityUid? user, EntityUid store, StoreComponent // only tell operatives to lock their uplink if it can be locked var showFooter = HasComp(store); var state = new StoreUpdateState(component.LastAvailableListings, allCurrency, showFooter); - UserInterfaceSystem.SetUiState(ui, state); + _ui.SetUiState(ui, state); } private void OnRequestUpdate(EntityUid uid, StoreComponent component, StoreRequestUpdateInterfaceMessage args) { - UpdateUserInterface(args.Session.AttachedEntity, args.Entity, component); + UpdateUserInterface(args.Session.AttachedEntity, GetEntity(args.Entity), component); } private void BeforeActivatableUiOpen(EntityUid uid, StoreComponent component, BeforeActivatableUIOpenEvent args) @@ -162,10 +161,9 @@ private void OnBuyRequest(EntityUid uid, StoreComponent component, StoreBuyListi } //give action - if (listing.ProductAction != null) + if (!string.IsNullOrWhiteSpace(listing.ProductAction)) { - var action = new InstantAction(_proto.Index(listing.ProductAction)); - _actions.AddAction(buyer, action, null); + _actions.AddAction(buyer, Spawn(listing.ProductAction), null); } //broadcast event diff --git a/Content.Server/Store/Systems/StoreSystem.cs b/Content.Server/Store/Systems/StoreSystem.cs index 3f769b67365..d5b17f440e9 100644 --- a/Content.Server/Store/Systems/StoreSystem.cs +++ b/Content.Server/Store/Systems/StoreSystem.cs @@ -183,7 +183,7 @@ public void InitializeFromPreset(StorePresetPrototype preset, EntityUid uid, Sto var ui = _ui.GetUiOrNull(uid, StoreUiKey.Key); if (ui != null) { - UserInterfaceSystem.SetUiState(ui, new StoreInitializeState(preset.StoreName)); + _ui.SetUiState(ui, new StoreInitializeState(preset.StoreName)); } } } diff --git a/Content.Server/Strip/StrippableSystem.cs b/Content.Server/Strip/StrippableSystem.cs index 8052765a557..8f723ab97d4 100644 --- a/Content.Server/Strip/StrippableSystem.cs +++ b/Content.Server/Strip/StrippableSystem.cs @@ -217,7 +217,7 @@ bool Check() var ev = new BeforeGettingStrippedEvent(userEv.Time, userEv.Stealth); RaiseLocalEvent(target, ev); - var doAfterArgs = new DoAfterArgs(user, ev.Time, new AwaitedDoAfterEvent(), null, target: target, used: held) + var doAfterArgs = new DoAfterArgs(EntityManager, user, ev.Time, new AwaitedDoAfterEvent(), null, target: target, used: held) { ExtraCheck = Check, AttemptFrequency = AttemptFrequency.EveryTick, @@ -289,7 +289,7 @@ bool Check() var ev = new BeforeGettingStrippedEvent(userEv.Time, userEv.Stealth); RaiseLocalEvent(target, ev); - var doAfterArgs = new DoAfterArgs(user, ev.Time, new AwaitedDoAfterEvent(), null, target: target, used: held) + var doAfterArgs = new DoAfterArgs(EntityManager, user, ev.Time, new AwaitedDoAfterEvent(), null, target: target, used: held) { ExtraCheck = Check, AttemptFrequency = AttemptFrequency.EveryTick, @@ -349,7 +349,7 @@ bool Check() var ev = new BeforeGettingStrippedEvent(userEv.Time, userEv.Stealth); RaiseLocalEvent(target, ev); - var doAfterArgs = new DoAfterArgs(user, ev.Time, new AwaitedDoAfterEvent(), null, target: target, used: item) + var doAfterArgs = new DoAfterArgs(EntityManager, user, ev.Time, new AwaitedDoAfterEvent(), null, target: target, used: item) { ExtraCheck = Check, AttemptFrequency = AttemptFrequency.EveryTick, @@ -424,7 +424,7 @@ bool Check() var ev = new BeforeGettingStrippedEvent(userEv.Time, userEv.Stealth); RaiseLocalEvent(target, ev); - var doAfterArgs = new DoAfterArgs(user, ev.Time, new AwaitedDoAfterEvent(), null, target: target, used: item) + var doAfterArgs = new DoAfterArgs(EntityManager, user, ev.Time, new AwaitedDoAfterEvent(), null, target: target, used: item) { ExtraCheck = Check, AttemptFrequency = AttemptFrequency.EveryTick, diff --git a/Content.Server/Stunnable/Components/StunOnCollideComponent.cs b/Content.Server/Stunnable/Components/StunOnCollideComponent.cs index 8e07959e718..1ce1cbea575 100644 --- a/Content.Server/Stunnable/Components/StunOnCollideComponent.cs +++ b/Content.Server/Stunnable/Components/StunOnCollideComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Stunnable.Components /// Adds stun when it collides with an entity /// [RegisterComponent, Access(typeof(StunOnCollideSystem))] - public sealed class StunOnCollideComponent : Component + public sealed partial class StunOnCollideComponent : Component { // TODO: Can probably predict this. diff --git a/Content.Server/Stunnable/Systems/StunOnCollideSystem.cs b/Content.Server/Stunnable/Systems/StunOnCollideSystem.cs index f2ddbcf803e..52e3cab79c5 100644 --- a/Content.Server/Stunnable/Systems/StunOnCollideSystem.cs +++ b/Content.Server/Stunnable/Systems/StunOnCollideSystem.cs @@ -36,7 +36,8 @@ private void TryDoCollideStun(EntityUid uid, StunOnCollideComponent component, E } private void HandleCollide(EntityUid uid, StunOnCollideComponent component, ref StartCollideEvent args) { - if (args.OurFixture.ID != component.FixtureID) return; + if (args.OurFixtureId != component.FixtureID) + return; TryDoCollideStun(uid, component, args.OtherEntity); } diff --git a/Content.Server/SurveillanceCamera/Components/ActiveSurveillanceCameraMonitorComponent.cs b/Content.Server/SurveillanceCamera/Components/ActiveSurveillanceCameraMonitorComponent.cs index b00c432baa3..a84689bca30 100644 --- a/Content.Server/SurveillanceCamera/Components/ActiveSurveillanceCameraMonitorComponent.cs +++ b/Content.Server/SurveillanceCamera/Components/ActiveSurveillanceCameraMonitorComponent.cs @@ -2,6 +2,6 @@ namespace Content.Server.SurveillanceCamera; // Dummy component for active surveillance monitors. [RegisterComponent] -public sealed class ActiveSurveillanceCameraMonitorComponent : Component +public sealed partial class ActiveSurveillanceCameraMonitorComponent : Component { } diff --git a/Content.Server/SurveillanceCamera/Components/SurveillanceCameraComponent.cs b/Content.Server/SurveillanceCamera/Components/SurveillanceCameraComponent.cs index cd7480506b3..8473462f80c 100644 --- a/Content.Server/SurveillanceCamera/Components/SurveillanceCameraComponent.cs +++ b/Content.Server/SurveillanceCamera/Components/SurveillanceCameraComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.SurveillanceCamera; [RegisterComponent] [Access(typeof(SurveillanceCameraSystem))] -public sealed class SurveillanceCameraComponent : Component +public sealed partial class SurveillanceCameraComponent : Component { // List of active viewers. This is for bookkeeping purposes, // so that when a camera shuts down, any entity viewing it @@ -44,5 +44,5 @@ public sealed class SurveillanceCameraComponent : Component // This has to be device network frequency prototypes. [DataField("setupAvailableNetworks", customTypeSerializer:typeof(PrototypeIdListSerializer))] - public List AvailableNetworks { get; } = new(); + public List AvailableNetworks { get; private set; } = new(); } diff --git a/Content.Server/SurveillanceCamera/Components/SurveillanceCameraMicrophoneComponent.cs b/Content.Server/SurveillanceCamera/Components/SurveillanceCameraMicrophoneComponent.cs index 91f940a2cf1..d1a3ff442b7 100644 --- a/Content.Server/SurveillanceCamera/Components/SurveillanceCameraMicrophoneComponent.cs +++ b/Content.Server/SurveillanceCamera/Components/SurveillanceCameraMicrophoneComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.SurveillanceCamera; /// environment. All surveillance camera monitors have speakers for this. /// [RegisterComponent] -public sealed class SurveillanceCameraMicrophoneComponent : Component +public sealed partial class SurveillanceCameraMicrophoneComponent : Component { [DataField("enabled")] public bool Enabled { get; set; } = true; @@ -18,9 +18,9 @@ public sealed class SurveillanceCameraMicrophoneComponent : Component /// Used to avoid things like feedback loops, or radio spam. /// [DataField("blacklist")] - public EntityWhitelist Blacklist { get; } = new(); + public EntityWhitelist Blacklist { get; private set; } = new(); [ViewVariables(VVAccess.ReadWrite)] [DataField("range")] - public int Range { get; } = 10; + public int Range { get; private set; } = 10; } diff --git a/Content.Server/SurveillanceCamera/Components/SurveillanceCameraMonitorComponent.cs b/Content.Server/SurveillanceCamera/Components/SurveillanceCameraMonitorComponent.cs index de276afa3e6..ec1611244aa 100644 --- a/Content.Server/SurveillanceCamera/Components/SurveillanceCameraMonitorComponent.cs +++ b/Content.Server/SurveillanceCamera/Components/SurveillanceCameraMonitorComponent.cs @@ -2,7 +2,7 @@ namespace Content.Server.SurveillanceCamera; [RegisterComponent] [Access(typeof(SurveillanceCameraMonitorSystem))] -public sealed class SurveillanceCameraMonitorComponent : Component +public sealed partial class SurveillanceCameraMonitorComponent : Component { // Currently active camera viewed by this monitor. [ViewVariables] diff --git a/Content.Server/SurveillanceCamera/Components/SurveillanceCameraRouterComponent.cs b/Content.Server/SurveillanceCamera/Components/SurveillanceCameraRouterComponent.cs index 0cf1f9301b8..d15d5e7d394 100644 --- a/Content.Server/SurveillanceCamera/Components/SurveillanceCameraRouterComponent.cs +++ b/Content.Server/SurveillanceCamera/Components/SurveillanceCameraRouterComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.SurveillanceCamera; [RegisterComponent] -public sealed class SurveillanceCameraRouterComponent : Component +public sealed partial class SurveillanceCameraRouterComponent : Component { [ViewVariables] public bool Active { get; set; } @@ -27,5 +27,5 @@ public sealed class SurveillanceCameraRouterComponent : Component public string? SubnetFrequencyId { get; set; } [DataField("setupAvailableNetworks", customTypeSerializer:typeof(PrototypeIdListSerializer))] - public List AvailableNetworks { get; } = new(); + public List AvailableNetworks { get; private set; } = new(); } diff --git a/Content.Server/SurveillanceCamera/Components/SurveillanceCameraSpeakerComponent.cs b/Content.Server/SurveillanceCamera/Components/SurveillanceCameraSpeakerComponent.cs index ad028913e79..c78d4109e53 100644 --- a/Content.Server/SurveillanceCamera/Components/SurveillanceCameraSpeakerComponent.cs +++ b/Content.Server/SurveillanceCamera/Components/SurveillanceCameraSpeakerComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.SurveillanceCamera; /// has a microphone that listens to speech. /// [RegisterComponent] -public sealed class SurveillanceCameraSpeakerComponent : Component +public sealed partial class SurveillanceCameraSpeakerComponent : Component { // mostly copied from Speech [DataField("speechEnabled")] public bool SpeechEnabled = true; diff --git a/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraMonitorSystem.cs b/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraMonitorSystem.cs index 09f767ffd9e..2d691602f73 100644 --- a/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraMonitorSystem.cs +++ b/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraMonitorSystem.cs @@ -488,14 +488,7 @@ private void UpdateUserInterface(EntityUid uid, SurveillanceCameraMonitorCompone return; } - IPlayerSession? session = null; - if (player != null - && TryComp(player, out ActorComponent? actor)) - { - session = actor.PlayerSession; - } - - var state = new SurveillanceCameraMonitorUiState(monitor.ActiveCamera, monitor.KnownSubnets.Keys.ToHashSet(), monitor.ActiveCameraAddress, monitor.ActiveSubnet, monitor.KnownCameras); + var state = new SurveillanceCameraMonitorUiState(GetNetEntity(monitor.ActiveCamera), monitor.KnownSubnets.Keys.ToHashSet(), monitor.ActiveCameraAddress, monitor.ActiveSubnet, monitor.KnownCameras); _userInterface.TrySetUiState(uid, SurveillanceCameraMonitorUiKey.Key, state); } } diff --git a/Content.Server/Tabletop/Components/TabletopGameComponent.cs b/Content.Server/Tabletop/Components/TabletopGameComponent.cs index dfac9e89df9..0196eec196b 100644 --- a/Content.Server/Tabletop/Components/TabletopGameComponent.cs +++ b/Content.Server/Tabletop/Components/TabletopGameComponent.cs @@ -7,31 +7,31 @@ namespace Content.Server.Tabletop.Components /// A component that makes an object playable as a tabletop game. /// [RegisterComponent, Access(typeof(TabletopSystem))] - public sealed class TabletopGameComponent : Component + public sealed partial class TabletopGameComponent : Component { /// /// The localized name of the board. Shown in the UI. /// [DataField("boardName")] - public string BoardName { get; } = "tabletop-default-board-name"; + public string BoardName { get; private set; } = "tabletop-default-board-name"; /// /// The type of method used to set up a tabletop. /// [DataField("setup", required: true)] - public TabletopSetup Setup { get; } = new TabletopChessSetup(); + public TabletopSetup Setup { get; private set; } = new TabletopChessSetup(); /// /// The size of the viewport being opened. Must match the board dimensions otherwise you'll get the space parallax (unless that's what you want). /// [DataField("size")] - public Vector2i Size { get; } = (300, 300); + public Vector2i Size { get; private set; } = (300, 300); /// /// The zoom of the viewport camera. /// [DataField("cameraZoom")] - public Vector2 CameraZoom { get; } = Vector2.One; + public Vector2 CameraZoom { get; private set; } = Vector2.One; /// /// The specific session of this tabletop. diff --git a/Content.Server/Tabletop/Components/TabletopGamerComponent.cs b/Content.Server/Tabletop/Components/TabletopGamerComponent.cs index f051b65ac3c..406dcc2853e 100644 --- a/Content.Server/Tabletop/Components/TabletopGamerComponent.cs +++ b/Content.Server/Tabletop/Components/TabletopGamerComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Tabletop.Components /// Component for marking an entity as currently playing a tabletop. /// [RegisterComponent, Access(typeof(TabletopSystem))] - public sealed class TabletopGamerComponent : Component + public sealed partial class TabletopGamerComponent : Component { [DataField("tabletop")] public EntityUid Tabletop { get; set; } = EntityUid.Invalid; diff --git a/Content.Server/Tabletop/TabletopBackgammonSetup.cs b/Content.Server/Tabletop/TabletopBackgammonSetup.cs index f0bb72d0f89..4833819b695 100644 --- a/Content.Server/Tabletop/TabletopBackgammonSetup.cs +++ b/Content.Server/Tabletop/TabletopBackgammonSetup.cs @@ -3,14 +3,14 @@ namespace Content.Server.Tabletop { [UsedImplicitly] - public sealed class TabletopBackgammonSetup : TabletopSetup + public sealed partial class TabletopBackgammonSetup : TabletopSetup { [DataField("whitePiecePrototype")] - public string WhitePiecePrototype { get; } = "WhiteTabletopPiece"; + public string WhitePiecePrototype { get; private set; } = "WhiteTabletopPiece"; [DataField("blackPiecePrototype")] - public string BlackPiecePrototype { get; } = "BlackTabletopPiece"; + public string BlackPiecePrototype { get; private set; } = "BlackTabletopPiece"; public override void SetupTabletop(TabletopSession session, IEntityManager entityManager) { var board = entityManager.SpawnEntity(BoardPrototype, session.Position); diff --git a/Content.Server/Tabletop/TabletopCheckerSetup.cs b/Content.Server/Tabletop/TabletopCheckerSetup.cs index 790b6fe109f..aa38bac7a36 100644 --- a/Content.Server/Tabletop/TabletopCheckerSetup.cs +++ b/Content.Server/Tabletop/TabletopCheckerSetup.cs @@ -6,77 +6,99 @@ namespace Content.Server.Tabletop { [UsedImplicitly] - public sealed class TabletopCheckerSetup : TabletopSetup + public sealed partial class TabletopCheckerSetup : TabletopSetup { - // TODO: Un-hardcode the rest of entity prototype IDs, probably. + [DataField("prototypePieceWhite", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string PrototypePieceWhite = default!; + + [DataField("prototypeCrownWhite", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string PrototypeCrownWhite = default!; + + [DataField("prototypePieceBlack", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string PrototypePieceBlack = default!; + + [DataField("prototypeCrownBlack", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string PrototypeCrownBlack = default!; public override void SetupTabletop(TabletopSession session, IEntityManager entityManager) { - var checkerboard = entityManager.SpawnEntity(BoardPrototype, session.Position.Offset(-1, 0)); - - session.Entities.Add(checkerboard); + session.Entities.Add( + entityManager.SpawnEntity(BoardPrototype, session.Position.Offset(-1, 0)) + ); SpawnPieces(session, entityManager, session.Position.Offset(-4.5f, 3.5f)); } - private void SpawnPieces(TabletopSession session, IEntityManager entityManager, MapCoordinates topLeft, float separation = 1f) + private void SpawnPieces(TabletopSession session, IEntityManager entityManager, MapCoordinates left) { - var (mapId, x, y) = topLeft; - - // Spawn all black pieces - SpawnPieces(session, entityManager, "Black", topLeft, separation); + static float GetOffset(float offset) => offset * 1f /* separation */; - // Spawn all white pieces - SpawnPieces(session, entityManager, "White", new MapCoordinates(x, y - 7 * separation, mapId), separation); + Span pieces = stackalloc EntityUid[42]; + var pieceIndex = 0; - // Queens - for (int i = 1; i < 4; i++) + // Pieces + for (var offsetY = 0; offsetY < 3; offsetY++) { - EntityUid tempQualifier = entityManager.SpawnEntity("BlackCheckerQueen", new MapCoordinates(x + 9 * separation + 9f / 32, y - (i - 1) * separation, mapId)); - session.Entities.Add(tempQualifier); - - EntityUid tempQualifier1 = entityManager.SpawnEntity("WhiteCheckerQueen", new MapCoordinates(x + 8 * separation + 9f / 32, y - (i - 1) * separation, mapId)); - session.Entities.Add(tempQualifier1); + var checker = offsetY % 2; + + for (var offsetX = 0; offsetX < 8; offsetX += 2) + { + // Prevents an extra piece on the middle row + if (checker + offsetX > 8) continue; + + pieces[pieceIndex] = entityManager.SpawnEntity( + PrototypePieceBlack, + left.Offset(GetOffset(offsetX + (1 - checker)), GetOffset(offsetY * -1)) + ); + pieces[pieceIndex] = entityManager.SpawnEntity( + PrototypePieceWhite, + left.Offset(GetOffset(offsetX + checker), GetOffset(offsetY - 7)) + ); + pieceIndex += 2; + } } - var spares = new List(); - for (var i = 1; i < 7; i++) + const int NumCrowns = 3; + const float Overlap = 0.25f; + const float xOffset = 9f / 32; + const float xOffsetBlack = 9 + xOffset; + const float xOffsetWhite = 8 + xOffset; + + // Crowns + for (var i = 0; i < NumCrowns; i++) { - var step = 3 + 0.25f * (i - 1); - spares.Add( - entityManager.SpawnEntity("BlackCheckerPiece", - new MapCoordinates(x + 9 * separation + 9f / 32, y - step * separation, mapId) - )); - - spares.Add( - entityManager.SpawnEntity("WhiteCheckerPiece", - new MapCoordinates(x + 8 * separation + 9f / 32, y - step * separation, mapId) - )); + var step = -(Overlap * i); + pieces[pieceIndex] = entityManager.SpawnEntity( + PrototypeCrownBlack, + left.Offset(GetOffset(xOffsetBlack), GetOffset(step)) + ); + pieces[pieceIndex + 1] = entityManager.SpawnEntity( + PrototypeCrownWhite, + left.Offset(GetOffset(xOffsetWhite), GetOffset(step)) + ); + pieceIndex += 2; } - session.Entities.UnionWith(spares); - } - - private void SpawnPieces(TabletopSession session, IEntityManager entityManager, string color, MapCoordinates left, float separation = 1f) - { - var (mapId, x, y) = left; - // If white is being placed it must go from bottom->up - var reversed = (color == "White") ? 1 : -1; - for (int i = 0; i < 3; i++) + // Spares + for (var i = 0; i < 6; i++) { - var x_offset = i % 2; - if (reversed == -1) x_offset = 1 - x_offset; // Flips it + var step = -((Overlap * (NumCrowns + 2)) + (Overlap * i)); + pieces[pieceIndex] = entityManager.SpawnEntity( + PrototypePieceBlack, + left.Offset(GetOffset(xOffsetBlack), GetOffset(step)) + ); + pieces[pieceIndex] = entityManager.SpawnEntity( + PrototypePieceWhite, + left.Offset(GetOffset(xOffsetWhite), GetOffset(step)) + ); + pieceIndex += 2; + } - for (int j = 0; j < 8; j += 2) + for (var i = 0; i < pieces.Length; i++) { - // Prevents an extra piece on the middle row - if (x_offset + j > 8) continue; - - EntityUid tempQualifier4 = entityManager.SpawnEntity(color + "CheckerPiece", new MapCoordinates(x + (j + x_offset) * separation, y + i * reversed * separation, mapId)); - session.Entities.Add(tempQualifier4); + session.Entities.Add(pieces[i]); } - } } } } diff --git a/Content.Server/Tabletop/TabletopChessSetup.cs b/Content.Server/Tabletop/TabletopChessSetup.cs index 463de146804..b636b8c05fb 100644 --- a/Content.Server/Tabletop/TabletopChessSetup.cs +++ b/Content.Server/Tabletop/TabletopChessSetup.cs @@ -6,7 +6,7 @@ namespace Content.Server.Tabletop { [UsedImplicitly] - public sealed class TabletopChessSetup : TabletopSetup + public sealed partial class TabletopChessSetup : TabletopSetup { // TODO: Un-hardcode the rest of entity prototype IDs, probably. diff --git a/Content.Server/Tabletop/TabletopEmptySetup.cs b/Content.Server/Tabletop/TabletopEmptySetup.cs index 840afccfc77..58fb109df91 100644 --- a/Content.Server/Tabletop/TabletopEmptySetup.cs +++ b/Content.Server/Tabletop/TabletopEmptySetup.cs @@ -3,7 +3,7 @@ namespace Content.Server.Tabletop { [UsedImplicitly] - public sealed class TabletopEmptySetup : TabletopSetup + public sealed partial class TabletopEmptySetup : TabletopSetup { public override void SetupTabletop(TabletopSession session, IEntityManager entityManager) { diff --git a/Content.Server/Tabletop/TabletopHologramComponent.cs b/Content.Server/Tabletop/TabletopHologramComponent.cs index 1a9c7ec61ce..e2aa65f2dc5 100644 --- a/Content.Server/Tabletop/TabletopHologramComponent.cs +++ b/Content.Server/Tabletop/TabletopHologramComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Tabletop; /// This is used for tracking pieces that are simply "holograms" shown on the tabletop /// [RegisterComponent] -public sealed class TabletopHologramComponent : Component +public sealed partial class TabletopHologramComponent : Component { } diff --git a/Content.Server/Tabletop/TabletopParchisSetup.cs b/Content.Server/Tabletop/TabletopParchisSetup.cs index 353ca868774..ffc8e03364a 100644 --- a/Content.Server/Tabletop/TabletopParchisSetup.cs +++ b/Content.Server/Tabletop/TabletopParchisSetup.cs @@ -5,20 +5,20 @@ namespace Content.Server.Tabletop { [UsedImplicitly] - public sealed class TabletopParchisSetup : TabletopSetup + public sealed partial class TabletopParchisSetup : TabletopSetup { [DataField("redPiecePrototype", customTypeSerializer:typeof(PrototypeIdSerializer))] - public string RedPiecePrototype { get; } = "RedTabletopPiece"; + public string RedPiecePrototype { get; private set; } = "RedTabletopPiece"; [DataField("greenPiecePrototype", customTypeSerializer:typeof(PrototypeIdSerializer))] - public string GreenPiecePrototype { get; } = "GreenTabletopPiece"; + public string GreenPiecePrototype { get; private set; } = "GreenTabletopPiece"; [DataField("yellowPiecePrototype", customTypeSerializer:typeof(PrototypeIdSerializer))] - public string YellowPiecePrototype { get; } = "YellowTabletopPiece"; + public string YellowPiecePrototype { get; private set; } = "YellowTabletopPiece"; [DataField("bluePiecePrototype", customTypeSerializer:typeof(PrototypeIdSerializer))] - public string BluePiecePrototype { get; } = "BlueTabletopPiece"; + public string BluePiecePrototype { get; private set; } = "BlueTabletopPiece"; public override void SetupTabletop(TabletopSession session, IEntityManager entityManager) { diff --git a/Content.Server/Tabletop/TabletopSetup.cs b/Content.Server/Tabletop/TabletopSetup.cs index 3c9a020651f..66aff1fca7a 100644 --- a/Content.Server/Tabletop/TabletopSetup.cs +++ b/Content.Server/Tabletop/TabletopSetup.cs @@ -4,7 +4,7 @@ namespace Content.Server.Tabletop { [ImplicitDataDefinitionForInheritors] - public abstract class TabletopSetup + public abstract partial class TabletopSetup { /// /// Method for setting up a tabletop. Use this to spawn the board and pieces, etc. diff --git a/Content.Server/Tabletop/TabletopSystem.Session.cs b/Content.Server/Tabletop/TabletopSystem.Session.cs index 2f73d0e0d2b..ef96733a121 100644 --- a/Content.Server/Tabletop/TabletopSystem.Session.cs +++ b/Content.Server/Tabletop/TabletopSystem.Session.cs @@ -1,7 +1,6 @@ using System.Numerics; using Content.Server.Tabletop.Components; using Content.Shared.Tabletop.Events; -using Robust.Server.GameObjects; using Robust.Server.Player; using Robust.Shared.Utility; @@ -78,7 +77,7 @@ public void OpenSessionFor(IPlayerSession player, EntityUid uid) if (session.Players.ContainsKey(player)) return; - if(EntityManager.TryGetComponent(attachedEntity, out var gamer)) + if(EntityManager.TryGetComponent(attachedEntity, out TabletopGamerComponent? gamer)) CloseSessionFor(player, gamer.Tabletop, false); // Set the entity as an absolute GAMER. @@ -90,7 +89,7 @@ public void OpenSessionFor(IPlayerSession player, EntityUid uid) session.Players[player] = new TabletopSessionPlayerData { Camera = camera }; // Tell the gamer to open a viewport for the tabletop game - RaiseNetworkEvent(new TabletopPlayEvent(uid, camera, Loc.GetString(tabletop.BoardName), tabletop.Size), player.ConnectedClient); + RaiseNetworkEvent(new TabletopPlayEvent(GetNetEntity(uid), GetNetEntity(camera), Loc.GetString(tabletop.BoardName), tabletop.Size), player.ConnectedClient); } /// @@ -141,8 +140,8 @@ private EntityUid CreateCamera(TabletopGameComponent tabletop, IPlayerSession pl // Add an eye component and disable FOV var eyeComponent = camera.EnsureComponent(); - eyeComponent.DrawFov = false; - eyeComponent.Zoom = tabletop.CameraZoom; + _eye.SetDrawFov(camera, false, eyeComponent); + _eye.SetZoom(camera, tabletop.CameraZoom, eyeComponent); // Add the user to the view subscribers. If there is no player session, just skip this step _viewSubscriberSystem.AddViewSubscriber(camera, player); diff --git a/Content.Server/Tabletop/TabletopSystem.cs b/Content.Server/Tabletop/TabletopSystem.cs index f76b2d93867..3b817c2c61b 100644 --- a/Content.Server/Tabletop/TabletopSystem.cs +++ b/Content.Server/Tabletop/TabletopSystem.cs @@ -21,7 +21,7 @@ namespace Content.Server.Tabletop public sealed partial class TabletopSystem : SharedTabletopSystem { [Dependency] private readonly IMapManager _mapManager = default!; - [Dependency] private readonly IEntityManager _entityManager = default!; + [Dependency] private readonly EyeSystem _eye = default!; [Dependency] private readonly ViewSubscriberSystem _viewSubscriberSystem = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; @@ -46,16 +46,19 @@ private void OnTabletopRequestTakeOut(TabletopRequestTakeOut msg, EntitySessionE if (args.SenderSession is not IPlayerSession playerSession) return; - if (!TryComp(msg.TableUid, out TabletopGameComponent? tabletop) || tabletop.Session is not { } session) - return; + var table = GetEntity(msg.TableUid); + if (!TryComp(table, out TabletopGameComponent? tabletop) || tabletop.Session is not { } session) + return; if (!msg.Entity.IsValid()) return; - if (!TryComp(msg.Entity, out TabletopHologramComponent? hologram)) + var entity = GetEntity(msg.Entity); + + if (!TryComp(entity, out TabletopHologramComponent? hologram)) { - _popupSystem.PopupEntity(Loc.GetString("tabletop-error-remove-non-hologram"), msg.TableUid, args.SenderSession); + _popupSystem.PopupEntity(Loc.GetString("tabletop-error-remove-non-hologram"), table, args.SenderSession); return; } @@ -64,9 +67,9 @@ private void OnTabletopRequestTakeOut(TabletopRequestTakeOut msg, EntitySessionE return; // Find the entity, remove it from the session and set it's position to the tabletop - session.Entities.TryGetValue(msg.Entity, out var result); + session.Entities.TryGetValue(entity, out var result); session.Entities.Remove(result); - _entityManager.QueueDeleteEntity(result); + QueueDel(result); } private void OnInteractUsing(EntityUid uid, TabletopGameComponent component, InteractUsingEvent args) @@ -91,7 +94,7 @@ private void OnInteractUsing(EntityUid uid, TabletopGameComponent component, Int var meta = MetaData(handEnt); var protoId = meta.EntityPrototype?.ID; - var hologram = _entityManager.SpawnEntity(protoId, session.Position.Offset(-1, 0)); + var hologram = Spawn(protoId, session.Position.Offset(-1, 0)); // Make sure the entity can be dragged and can be removed, move it into the board game world and add it to the Entities hashmap EnsureComp(hologram); @@ -106,7 +109,7 @@ protected override void OnTabletopMove(TabletopMoveEvent msg, EntitySessionEvent if (args.SenderSession is not IPlayerSession playerSession) return; - if (!TryComp(msg.TableUid, out TabletopGameComponent? tabletop) || tabletop.Session is not { } session) + if (!TryComp(GetEntity(msg.TableUid), out TabletopGameComponent? tabletop) || tabletop.Session is not { } session) return; // Check if player is actually playing at this table @@ -124,7 +127,7 @@ private void AddPlayGameVerb(EntityUid uid, TabletopGameComponent component, Get if (!args.CanAccess || !args.CanInteract) return; - if (!EntityManager.TryGetComponent(args.User, out var actor)) + if (!EntityManager.TryGetComponent(args.User, out ActorComponent? actor)) return; var playVerb = new ActivationVerb() @@ -153,7 +156,7 @@ private void OnGameShutdown(EntityUid uid, TabletopGameComponent component, Comp private void OnStopPlaying(TabletopStopPlayingEvent msg, EntitySessionEventArgs args) { - CloseSessionFor((IPlayerSession)args.SenderSession, msg.TableUid); + CloseSessionFor((IPlayerSession)args.SenderSession, GetEntity(msg.TableUid)); } private void OnPlayerDetached(EntityUid uid, TabletopGamerComponent component, PlayerDetachedEvent args) diff --git a/Content.Server/Teleportation/HandTeleporterSystem.cs b/Content.Server/Teleportation/HandTeleporterSystem.cs index f1fceb2054b..4bfe03ba422 100644 --- a/Content.Server/Teleportation/HandTeleporterSystem.cs +++ b/Content.Server/Teleportation/HandTeleporterSystem.cs @@ -54,7 +54,7 @@ private void OnUseInHand(EntityUid uid, HandTeleporterComponent component, UseIn if (xform.ParentUid != xform.GridUid) return; - var doafterArgs = new DoAfterArgs(args.User, component.PortalCreationDelay, new TeleporterDoAfterEvent(), uid, used: uid) + var doafterArgs = new DoAfterArgs(EntityManager, args.User, component.PortalCreationDelay, new TeleporterDoAfterEvent(), uid, used: uid) { BreakOnDamage = true, BreakOnUserMove = true, diff --git a/Content.Server/Teleportation/PortalSystem.cs b/Content.Server/Teleportation/PortalSystem.cs index 2ca10c6082b..76900a7e198 100644 --- a/Content.Server/Teleportation/PortalSystem.cs +++ b/Content.Server/Teleportation/PortalSystem.cs @@ -1,7 +1,7 @@ -using Content.Server.Ghost.Components; -using Content.Server.Mind.Components; -using Content.Shared.Administration.Logs; +using Content.Shared.Administration.Logs; using Content.Shared.Database; +using Content.Shared.Ghost; +using Content.Shared.Mind.Components; using Content.Shared.Teleportation.Systems; using Robust.Shared.Map; diff --git a/Content.Server/Temperature/Components/ContainerTemperatureDamageThresholdsComponent.cs b/Content.Server/Temperature/Components/ContainerTemperatureDamageThresholdsComponent.cs index 78a9da80881..ae8acc49ef6 100644 --- a/Content.Server/Temperature/Components/ContainerTemperatureDamageThresholdsComponent.cs +++ b/Content.Server/Temperature/Components/ContainerTemperatureDamageThresholdsComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Temperature.Components; [RegisterComponent] -public sealed class ContainerTemperatureDamageThresholdsComponent: Component +public sealed partial class ContainerTemperatureDamageThresholdsComponent: Component { [DataField("heatDamageThreshold")] [ViewVariables(VVAccess.ReadWrite)] diff --git a/Content.Server/Temperature/Components/HeatResistanceComponent.cs b/Content.Server/Temperature/Components/HeatResistanceComponent.cs index 586b30c64dd..3847d8a859d 100644 --- a/Content.Server/Temperature/Components/HeatResistanceComponent.cs +++ b/Content.Server/Temperature/Components/HeatResistanceComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Temperature.Components { [RegisterComponent] - public sealed class HeatResistanceComponent : Component + public sealed partial class HeatResistanceComponent : Component { public int GetHeatResistance() { diff --git a/Content.Server/Temperature/Components/TemperatureComponent.cs b/Content.Server/Temperature/Components/TemperatureComponent.cs index 939fd3b6ccf..6ace329426f 100644 --- a/Content.Server/Temperature/Components/TemperatureComponent.cs +++ b/Content.Server/Temperature/Components/TemperatureComponent.cs @@ -12,7 +12,7 @@ namespace Content.Server.Temperature.Components /// and taking fire damage from high temperature. /// [RegisterComponent] - public sealed class TemperatureComponent : Component + public sealed partial class TemperatureComponent : Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("currentTemperature")] diff --git a/Content.Server/Tiles/LavaComponent.cs b/Content.Server/Tiles/LavaComponent.cs index 0b1df9b139d..d536a2e4ced 100644 --- a/Content.Server/Tiles/LavaComponent.cs +++ b/Content.Server/Tiles/LavaComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Tiles; /// Applies flammable and damage while vaulting. /// [RegisterComponent, Access(typeof(LavaSystem))] -public sealed class LavaComponent : Component +public sealed partial class LavaComponent : Component { /// /// Sound played if something disintegrates in lava. diff --git a/Content.Server/Tiles/LavaSystem.cs b/Content.Server/Tiles/LavaSystem.cs index bdba76784ea..7aee0b65010 100644 --- a/Content.Server/Tiles/LavaSystem.cs +++ b/Content.Server/Tiles/LavaSystem.cs @@ -15,7 +15,6 @@ public override void Initialize() SubscribeLocalEvent(OnLavaStepTriggerAttempt); } - private void OnLavaStepTriggerAttempt(EntityUid uid, LavaComponent component, ref StepTriggerAttemptEvent args) { if (!HasComp(args.Tripper)) diff --git a/Content.Server/Toilet/ToiletSystem.cs b/Content.Server/Toilet/ToiletSystem.cs index 1177fdf1d7f..e749260e945 100644 --- a/Content.Server/Toilet/ToiletSystem.cs +++ b/Content.Server/Toilet/ToiletSystem.cs @@ -3,6 +3,7 @@ using Content.Server.Popups; using Content.Server.Storage.Components; using Content.Server.Storage.EntitySystems; +using Content.Shared.Audio; using Content.Shared.Body.Components; using Content.Shared.Body.Part; using Content.Shared.Buckle.Components; @@ -14,6 +15,7 @@ using Content.Shared.Toilet; using Content.Shared.Tools; using Content.Shared.Tools.Components; +using Content.Shared.Verbs; using Robust.Shared.Audio; using Robust.Shared.Player; using Robust.Shared.Random; @@ -36,10 +38,11 @@ public override void Initialize() SubscribeLocalEvent(OnInit); SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnInteractUsing); - SubscribeLocalEvent(OnInteractHand, new []{typeof(SharedBuckleSystem)}); + SubscribeLocalEvent(OnInteractHand); SubscribeLocalEvent(OnExamine); SubscribeLocalEvent(OnSuicide); SubscribeLocalEvent(OnToiletPried); + SubscribeLocalEvent>(OnToggleSeatVerb); } private void OnSuicide(EntityUid uid, ToiletComponent component, SuicideEvent args) @@ -122,13 +125,26 @@ private void OnInteractHand(EntityUid uid, ToiletComponent component, InteractHa } } - // just want to up/down seat? - // check that nobody seats on seat right now - if (TryComp(uid, out var strap) && strap.BuckledEntities.Count != 0) + args.Handled = true; + } + + private void OnToggleSeatVerb(EntityUid uid, ToiletComponent component, GetVerbsEvent args) + { + if (!args.CanInteract || !args.CanAccess || !CanToggle(uid)) return; - ToggleToiletSeat(uid, component); - args.Handled = true; + var alterToiletSeatText = component.IsSeatUp ? Loc.GetString("toilet-seat-close") : Loc.GetString("toilet-seat-open"); + + var verb = new AlternativeVerb() + { + Act = () => { + if (CanToggle(uid)) + ToggleToiletSeat(uid, component); + }, + Text = alterToiletSeatText + }; + + args.Verbs.Add(verb); } private void OnExamine(EntityUid uid, ToiletComponent component, ExaminedEvent args) @@ -152,13 +168,18 @@ private void OnToiletPried(EntityUid uid, ToiletComponent toilet, ToiletPryDoAft UpdateSprite(uid, toilet); } + public bool CanToggle(EntityUid uid) + { + return TryComp(uid, out var strap) && strap.BuckledEntities.Count == 0; + } + public void ToggleToiletSeat(EntityUid uid, ToiletComponent? component = null) { if (!Resolve(uid, ref component)) return; component.IsSeatUp = !component.IsSeatUp; - _audio.PlayPvs(component.ToggleSound, uid, AudioParams.Default.WithVariation(0.05f)); + _audio.PlayPvs(component.ToggleSound, uid, AudioParams.Default.WithVariation(SharedContentAudioSystem.DefaultVariation)); UpdateSprite(uid, component); } diff --git a/Content.Server/Tools/Components/LatticeCuttingComponent.cs b/Content.Server/Tools/Components/LatticeCuttingComponent.cs index 589b3cf52e4..077d64cf7f0 100644 --- a/Content.Server/Tools/Components/LatticeCuttingComponent.cs +++ b/Content.Server/Tools/Components/LatticeCuttingComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Tools.Components; [RegisterComponent] -public sealed class LatticeCuttingComponent : Component +public sealed partial class LatticeCuttingComponent : Component { [DataField("qualityNeeded", customTypeSerializer:typeof(PrototypeIdSerializer))] public string QualityNeeded = "Cutting"; diff --git a/Content.Server/Tools/Components/TilePryingComponent.cs b/Content.Server/Tools/Components/TilePryingComponent.cs index d6d028252e6..99d7144b687 100644 --- a/Content.Server/Tools/Components/TilePryingComponent.cs +++ b/Content.Server/Tools/Components/TilePryingComponent.cs @@ -5,14 +5,14 @@ namespace Content.Server.Tools.Components { [RegisterComponent] - public sealed class TilePryingComponent : Component + public sealed partial class TilePryingComponent : Component { [DataField("toolComponentNeeded")] public bool ToolComponentNeeded = true; [DataField("qualityNeeded", customTypeSerializer:typeof(PrototypeIdSerializer))] public string QualityNeeded = "Prying"; - + /// /// Whether this tool can pry tiles with CanAxe. /// diff --git a/Content.Server/Tools/Components/WeldableComponent.cs b/Content.Server/Tools/Components/WeldableComponent.cs deleted file mode 100644 index e5abb50d732..00000000000 --- a/Content.Server/Tools/Components/WeldableComponent.cs +++ /dev/null @@ -1,48 +0,0 @@ -using Content.Server.Tools.Systems; -using Content.Shared.Tools; -using Content.Shared.Tools.Components; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; - -namespace Content.Server.Tools.Components; - -/// -/// Allows users to weld/unweld doors, crates and lockers. -/// -[RegisterComponent] -[Access(typeof(WeldableSystem))] -public sealed class WeldableComponent : SharedWeldableComponent -{ - /// - /// Tool quality for welding. - /// - [DataField("weldingQuality", customTypeSerializer: typeof(PrototypeIdSerializer))] - [ViewVariables(VVAccess.ReadWrite)] - public string WeldingQuality = "Welding"; - - /// - /// Whether this entity can ever be welded shut. - /// - [DataField("weldable")] - [ViewVariables(VVAccess.ReadWrite)] - public bool Weldable = true; - - /// - /// How much time does it take to weld/unweld entity. - /// - [DataField("time")] - [ViewVariables(VVAccess.ReadWrite)] - public TimeSpan WeldingTime = TimeSpan.FromSeconds(1f); - - /// - /// Shown when welded entity is examined. - /// - [DataField("weldedExamineMessage")] - [ViewVariables(VVAccess.ReadWrite)] - public string? WeldedExamineMessage = "weldable-component-examine-is-welded"; - - /// - /// Is this entity currently welded shut? - /// - [DataField("isWelded")] - public bool IsWelded; -} diff --git a/Content.Server/Tools/Components/WelderComponent.cs b/Content.Server/Tools/Components/WelderComponent.cs index 65c042bfa89..48fbd3640a3 100644 --- a/Content.Server/Tools/Components/WelderComponent.cs +++ b/Content.Server/Tools/Components/WelderComponent.cs @@ -8,46 +8,46 @@ namespace Content.Server.Tools.Components { [RegisterComponent] - public sealed class WelderComponent : SharedWelderComponent + public sealed partial class WelderComponent : SharedWelderComponent { /// /// Solution on the entity that contains the fuel. /// [DataField("fuelSolution"), ViewVariables(VVAccess.ReadWrite)] - public string FuelSolution { get; } = "Welder"; + public string FuelSolution { get; private set; } = "Welder"; /// /// Reagent that will be used as fuel for welding. /// [DataField("fuelReagent", customTypeSerializer:typeof(PrototypeIdSerializer)), ViewVariables(VVAccess.ReadWrite)] - public string FuelReagent { get; } = "WeldingFuel"; + public string FuelReagent { get; private set; } = "WeldingFuel"; /// /// Fuel consumption per second, while the welder is active. /// [DataField("fuelConsumption"), ViewVariables(VVAccess.ReadWrite)] - public FixedPoint2 FuelConsumption { get; } = FixedPoint2.New(2.0f); + public FixedPoint2 FuelConsumption { get; private set; } = FixedPoint2.New(2.0f); /// /// A fuel amount to be consumed when the welder goes from being unlit to being lit. /// [DataField("fuelLitCost"), ViewVariables(VVAccess.ReadWrite)] - public FixedPoint2 FuelLitCost { get; } = FixedPoint2.New(0.5f); + public FixedPoint2 FuelLitCost { get; private set; } = FixedPoint2.New(0.5f); /// /// Sound played when the welder is turned off. /// [DataField("welderOffSounds")] - public SoundSpecifier WelderOffSounds { get; } = new SoundCollectionSpecifier("WelderOff"); + public SoundSpecifier WelderOffSounds { get; private set; } = new SoundCollectionSpecifier("WelderOff"); /// /// Sound played when the tool is turned on. /// [DataField("welderOnSounds")] - public SoundSpecifier WelderOnSounds { get; } = new SoundCollectionSpecifier("WelderOn"); + public SoundSpecifier WelderOnSounds { get; private set; } = new SoundCollectionSpecifier("WelderOn"); [DataField("welderRefill")] - public SoundSpecifier WelderRefill { get; } = new SoundPathSpecifier("/Audio/Effects/refill.ogg"); + public SoundSpecifier WelderRefill { get; private set; } = new SoundPathSpecifier("/Audio/Effects/refill.ogg"); /// /// When the welder is lit, this damage is added to the base melee weapon damage. diff --git a/Content.Server/Tools/Innate/InnateToolComponent.cs b/Content.Server/Tools/Innate/InnateToolComponent.cs index 2f4486e857c..bfe7c213425 100644 --- a/Content.Server/Tools/Innate/InnateToolComponent.cs +++ b/Content.Server/Tools/Innate/InnateToolComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Tools.Innate { [RegisterComponent] - public sealed class InnateToolComponent : Component + public sealed partial class InnateToolComponent : Component { [DataField("tools")] public List Tools = new(); public List ToolUids = new(); diff --git a/Content.Server/Tools/ToolSystem.LatticeCutting.cs b/Content.Server/Tools/ToolSystem.LatticeCutting.cs index c1557ee7c58..674a8102390 100644 --- a/Content.Server/Tools/ToolSystem.LatticeCutting.cs +++ b/Content.Server/Tools/ToolSystem.LatticeCutting.cs @@ -26,11 +26,12 @@ private void OnLatticeCutComplete(EntityUid uid, LatticeCuttingComponent compone if (args.Cancelled) return; - var gridUid = args.Coordinates.GetGridUid(EntityManager); + var coords = GetCoordinates(args.Coordinates); + var gridUid = coords.GetGridUid(EntityManager); if (gridUid == null) return; var grid = _mapManager.GetGrid(gridUid.Value); - var tile = grid.GetTileRef(args.Coordinates); + var tile = grid.GetTileRef(coords); if (_tileDefinitionManager[tile.Tile.TypeId] is not ContentTileDefinition tileDef || !tileDef.CanWirecutter @@ -69,9 +70,11 @@ private bool TryCut(EntityUid toolEntity, EntityUid user, LatticeCuttingComponen || string.IsNullOrEmpty(tileDef.BaseTurf) || _tileDefinitionManager[tileDef.BaseTurf] is not ContentTileDefinition newDef || tile.IsBlockedTurf(true)) + { return false; + } - var ev = new LatticeCuttingCompleteEvent(coordinates); + var ev = new LatticeCuttingCompleteEvent(GetNetCoordinates(coordinates)); return UseTool(toolEntity, user, toolEntity, component.Delay, component.QualityNeeded, ev); } } diff --git a/Content.Server/Tools/ToolSystem.TilePrying.cs b/Content.Server/Tools/ToolSystem.TilePrying.cs index 1f602dae37d..614d6b87340 100644 --- a/Content.Server/Tools/ToolSystem.TilePrying.cs +++ b/Content.Server/Tools/ToolSystem.TilePrying.cs @@ -31,14 +31,15 @@ private void OnTilePryComplete(EntityUid uid, TilePryingComponent component, Til if (args.Cancelled) return; - var gridUid = args.Coordinates.GetGridUid(EntityManager); + var coords = GetCoordinates(args.Coordinates); + var gridUid = coords.GetGridUid(EntityManager); if (!_mapManager.TryGetGrid(gridUid, out var grid)) { Log.Error("Attempted to pry from a non-existent grid?"); return; } - var tile = grid.GetTileRef(args.Coordinates); + var tile = grid.GetTileRef(coords); var center = _turf.GetTileCenter(tile); if (args.Used != null) { @@ -74,7 +75,7 @@ private bool TryPryTile(EntityUid toolEntity, EntityUid user, TilePryingComponen if (!tileDef.CanCrowbar && !(tileDef.CanAxe && component.Advanced)) return false; - var ev = new TilePryingDoAfterEvent(coordinates); + var ev = new TilePryingDoAfterEvent(GetNetCoordinates(coordinates)); return UseTool(toolEntity, user, toolEntity, component.Delay, component.QualityNeeded, ev, toolComponent: tool); } diff --git a/Content.Server/Tools/ToolSystem.Welder.cs b/Content.Server/Tools/ToolSystem.Welder.cs index 1af28f70e1f..7e9c7181c51 100644 --- a/Content.Server/Tools/ToolSystem.Welder.cs +++ b/Content.Server/Tools/ToolSystem.Welder.cs @@ -22,11 +22,6 @@ namespace Content.Server.Tools { public sealed partial class ToolSystem { - [Dependency] private readonly IEntityManager _entityManager = default!; - - [Dependency] private readonly AppearanceSystem _appearanceSystem = default!; - [Dependency] private readonly SharedAudioSystem _audioSystem = default!; - private readonly HashSet _activeWelders = new(); private const float WelderUpdateTimer = 1f; @@ -58,14 +53,14 @@ private void OnGetMeleeDamage(EntityUid uid, WelderComponent component, ref GetM || !_solutionContainerSystem.TryGetSolution(uid, welder.FuelSolution, out var fuelSolution, solutionContainer)) return (FixedPoint2.Zero, FixedPoint2.Zero); - return (_solutionContainerSystem.GetReagentQuantity(uid, welder.FuelReagent), fuelSolution.MaxVolume); + return (_solutionContainerSystem.GetTotalPrototypeQuantity(uid, welder.FuelReagent), fuelSolution.MaxVolume); } public bool TryToggleWelder(EntityUid uid, EntityUid? user, WelderComponent? welder = null, SolutionContainerManagerComponent? solutionContainer = null, ItemComponent? item = null, - PointLightComponent? light = null, + SharedPointLightComponent? light = null, AppearanceComponent? appearance = null) { // Right now, we only need the welder. @@ -82,7 +77,7 @@ public bool TryTurnWelderOn(EntityUid uid, EntityUid? user, WelderComponent? welder = null, SolutionContainerManagerComponent? solutionContainer = null, ItemComponent? item = null, - PointLightComponent? light = null, + SharedPointLightComponent? light = null, AppearanceComponent? appearance = null, TransformComponent? transform = null) { @@ -90,12 +85,14 @@ public bool TryTurnWelderOn(EntityUid uid, EntityUid? user, return false; // Optional components. - Resolve(uid, ref item, ref light, ref appearance, false); + Resolve(uid, ref item,ref appearance, false); + + _light.ResolveLight(uid, ref light); if (!_solutionContainerSystem.TryGetSolution(uid, welder.FuelSolution, out var solution, solutionContainer)) return false; - var fuel = solution.GetReagentQuantity(welder.FuelReagent); + var fuel = solution.GetTotalPrototypeQuantity(welder.FuelReagent); // Not enough fuel to lit welder. if (fuel == FixedPoint2.Zero || fuel < welder.FuelLitCost) @@ -125,7 +122,9 @@ public bool TryTurnWelderOn(EntityUid uid, EntityUid? user, _appearanceSystem.SetData(uid, ToggleableLightVisuals.Enabled, true); if (light != null) - light.Enabled = true; + { + _light.SetEnabled(uid, true, light); + } _audioSystem.PlayPvs(welder.WelderOnSounds, uid, AudioParams.Default.WithVariation(0.125f).WithVolume(-5f)); @@ -135,7 +134,7 @@ public bool TryTurnWelderOn(EntityUid uid, EntityUid? user, _atmosphereSystem.HotspotExpose(gridUid, position, 700, 50, uid, true); } - _entityManager.Dirty(welder); + Dirty(uid, welder); _activeWelders.Add(uid); return true; @@ -144,7 +143,7 @@ public bool TryTurnWelderOn(EntityUid uid, EntityUid? user, public bool TryTurnWelderOff(EntityUid uid, EntityUid? user, WelderComponent? welder = null, ItemComponent? item = null, - PointLightComponent? light = null, + SharedPointLightComponent? light = null, AppearanceComponent? appearance = null) { if (!Resolve(uid, ref welder)) @@ -162,7 +161,7 @@ public bool TryTurnWelderOff(EntityUid uid, EntityUid? user, _adminLogger.Add(LogType.Action, LogImpact.Low, $"{ToPrettyString(uid):welder} toggled off"); var ev = new WelderToggledEvent(false); - RaiseLocalEvent(welder.Owner, ev, false); + RaiseLocalEvent(uid, ev, false); var hotEvent = new IsHotEvent() {IsHot = false}; RaiseLocalEvent(uid, hotEvent); @@ -172,11 +171,13 @@ public bool TryTurnWelderOff(EntityUid uid, EntityUid? user, _appearanceSystem.SetData(uid, ToggleableLightVisuals.Enabled, false); if (light != null) - light.Enabled = false; + { + _light.SetEnabled(uid, false, light); + } _audioSystem.PlayPvs(welder.WelderOffSounds, uid, AudioParams.Default.WithVariation(0.125f).WithVolume(-5f)); - _entityManager.Dirty(welder); + Dirty(uid, welder); _activeWelders.Remove(uid); return true; @@ -184,7 +185,8 @@ public bool TryTurnWelderOff(EntityUid uid, EntityUid? user, private void OnWelderStartup(EntityUid uid, WelderComponent welder, ComponentStartup args) { - _entityManager.Dirty(welder); + // TODO: Delete this shit what + Dirty(welder); } private void OnWelderIsHotEvent(EntityUid uid, WelderComponent welder, IsHotEvent args) @@ -217,7 +219,9 @@ private void OnWelderExamine(EntityUid uid, WelderComponent welder, ExaminedEven private void OnWelderSolutionChange(EntityUid uid, WelderComponent welder, SolutionChangedEvent args) { - _entityManager.Dirty(welder); + // TODO what + // ???? + Dirty(welder); } private void OnWelderActivate(EntityUid uid, WelderComponent welder, ActivateInWorldEvent args) @@ -307,10 +311,10 @@ private void UpdateWelders(float frameTime) solution.RemoveReagent(welder.FuelReagent, welder.FuelConsumption * _welderTimer); - if (solution.GetReagentQuantity(welder.FuelReagent) <= FixedPoint2.Zero) + if (solution.GetTotalPrototypeQuantity(welder.FuelReagent) <= FixedPoint2.Zero) TryTurnWelderOff(tool, null, welder); - _entityManager.Dirty(welder); + Dirty(welder); } _welderTimer -= WelderUpdateTimer; diff --git a/Content.Server/Tools/ToolSystem.cs b/Content.Server/Tools/ToolSystem.cs index dde6fd81753..a56dabaf8b7 100644 --- a/Content.Server/Tools/ToolSystem.cs +++ b/Content.Server/Tools/ToolSystem.cs @@ -12,11 +12,14 @@ namespace Content.Server.Tools // TODO move tool system to shared, and make it a friend of Tool Component. public sealed partial class ToolSystem : SharedToolSystem { - [Dependency] private readonly ITileDefinitionManager _tileDefinitionManager = default!; [Dependency] private readonly IMapManager _mapManager = default!; - [Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!; + [Dependency] private readonly ITileDefinitionManager _tileDefinitionManager = default!; + [Dependency] private readonly AppearanceSystem _appearanceSystem = default!; [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; + [Dependency] private readonly SharedAudioSystem _audioSystem = default!; + [Dependency] private readonly SharedPointLightSystem _light = default!; + [Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!; [Dependency] private readonly TransformSystem _transformSystem = default!; [Dependency] private readonly TurfSystem _turf = default!; diff --git a/Content.Server/NewCon/Commands/AdminDebug/ACmdCommand.cs b/Content.Server/Toolshed/Commands/AdminDebug/ACmdCommand.cs similarity index 95% rename from Content.Server/NewCon/Commands/AdminDebug/ACmdCommand.cs rename to Content.Server/Toolshed/Commands/AdminDebug/ACmdCommand.cs index a7921967158..d2b3cc261cd 100644 --- a/Content.Server/NewCon/Commands/AdminDebug/ACmdCommand.cs +++ b/Content.Server/Toolshed/Commands/AdminDebug/ACmdCommand.cs @@ -5,7 +5,7 @@ using Robust.Shared.Toolshed; using Robust.Shared.Toolshed.Syntax; -namespace Content.Server.NewCon.Commands.AdminDebug; +namespace Content.Server.Toolshed.Commands.AdminDebug; [ToolshedCommand, AdminCommand(AdminFlags.Debug)] public sealed class ACmdCommand : ToolshedCommand diff --git a/Content.Server/NewCon/Commands/Verbs/RunVerbAsCommand.cs b/Content.Server/Toolshed/Commands/Verbs/RunVerbAsCommand.cs similarity index 67% rename from Content.Server/NewCon/Commands/Verbs/RunVerbAsCommand.cs rename to Content.Server/Toolshed/Commands/Verbs/RunVerbAsCommand.cs index 21f2119dacf..1b11dffeea7 100644 --- a/Content.Server/NewCon/Commands/Verbs/RunVerbAsCommand.cs +++ b/Content.Server/Toolshed/Commands/Verbs/RunVerbAsCommand.cs @@ -6,7 +6,7 @@ using Robust.Shared.Toolshed.Syntax; using Robust.Shared.Toolshed.TypeParsers; -namespace Content.Server.NewCon.Commands.Verbs; +namespace Content.Server.Toolshed.Commands.Verbs; [ToolshedCommand, AdminCommand(AdminFlags.Admin)] public sealed class RunVerbAsCommand : ToolshedCommand @@ -14,10 +14,10 @@ public sealed class RunVerbAsCommand : ToolshedCommand private SharedVerbSystem? _verb; [CommandImplementation] - public IEnumerable RunVerbAs( + public IEnumerable RunVerbAs( [CommandInvocationContext] IInvocationContext ctx, - [PipedArgument] IEnumerable input, - [CommandArgument] ValueRef runner, + [PipedArgument] IEnumerable input, + [CommandArgument] ValueRef runner, [CommandArgument] string verb ) { @@ -26,16 +26,17 @@ [CommandArgument] string verb foreach (var i in input) { - var runnerEid = runner.Evaluate(ctx); + var runnerNet = runner.Evaluate(ctx); + var runnerEid = EntityManager.GetEntity(runnerNet); - - if (EntityManager.Deleted(runnerEid) && runnerEid != default) + if (EntityManager.Deleted(runnerEid) && runnerEid.IsValid()) ctx.ReportError(new DeadEntity(runnerEid)); if (ctx.GetErrors().Any()) yield break; - var verbs = _verb.GetLocalVerbs(i, runnerEid, Verb.VerbTypes, true); + var eId = EntityManager.GetEntity(i); + var verbs = _verb.GetLocalVerbs(eId, runnerEid, Verb.VerbTypes, true); // if the "verb name" is actually a verb-type, try run any verb of that type. var verbType = Verb.VerbTypes.FirstOrDefault(x => x.Name == verb); @@ -44,7 +45,7 @@ [CommandArgument] string verb var verbTy = verbs.FirstOrDefault(v => v.GetType() == verbType); if (verbTy != null) { - _verb.ExecuteVerb(verbTy, runnerEid, i, forced: true); + _verb.ExecuteVerb(verbTy, runnerEid, eId, forced: true); yield return i; } } @@ -53,7 +54,7 @@ [CommandArgument] string verb { if (verbTy.Text.ToLowerInvariant() == verb) { - _verb.ExecuteVerb(verbTy, runnerEid, i, forced: true); + _verb.ExecuteVerb(verbTy, runnerEid, eId, forced: true); yield return i; } } diff --git a/Content.Server/NewCon/Commands/VisualizeCommand.cs b/Content.Server/Toolshed/Commands/VisualizeCommand.cs similarity index 82% rename from Content.Server/NewCon/Commands/VisualizeCommand.cs rename to Content.Server/Toolshed/Commands/VisualizeCommand.cs index 44e4730959a..4ef08a91bf0 100644 --- a/Content.Server/NewCon/Commands/VisualizeCommand.cs +++ b/Content.Server/Toolshed/Commands/VisualizeCommand.cs @@ -8,7 +8,7 @@ using Robust.Shared.Toolshed; using Robust.Shared.Toolshed.Errors; -namespace Content.Server.NewCon.Commands; +namespace Content.Server.Toolshed.Commands; [ToolshedCommand, AdminCommand(AdminFlags.Admin)] public sealed class VisualizeCommand : ToolshedCommand @@ -28,7 +28,7 @@ [PipedArgument] IEnumerable input } var ui = new ToolshedVisualizeEui( - input.Select(e => (EntName(e), e)).ToArray() + input.Select(e => (EntName(e), EntityManager.GetNetEntity(e))).ToArray() ); _euiManager.OpenEui(ui, (IPlayerSession) ctx.Session); _euiManager.QueueStateUpdate(ui); @@ -36,9 +36,9 @@ [PipedArgument] IEnumerable input } internal sealed class ToolshedVisualizeEui : BaseEui { - private readonly (string name, EntityUid entity)[] _entities; + private readonly (string name, NetEntity entity)[] _entities; - public ToolshedVisualizeEui((string name, EntityUid entity)[] entities) + public ToolshedVisualizeEui((string name, NetEntity entity)[] entities) { _entities = entities; } diff --git a/Content.Server/Traitor/Components/AutoTraitorComponent.cs b/Content.Server/Traitor/Components/AutoTraitorComponent.cs new file mode 100644 index 00000000000..ab4bee2f267 --- /dev/null +++ b/Content.Server/Traitor/Components/AutoTraitorComponent.cs @@ -0,0 +1,22 @@ +using Content.Server.Traitor.Systems; + +namespace Content.Server.Traitor.Components; + +/// +/// Makes the entity a traitor either instantly if it has a mind or when a mind is added. +/// +[RegisterComponent, Access(typeof(AutoTraitorSystem))] +public sealed partial class AutoTraitorComponent : Component +{ + /// + /// Whether to give the traitor an uplink or not. + /// + [DataField("giveUplink"), ViewVariables(VVAccess.ReadWrite)] + public bool GiveUplink = true; + + /// + /// Whether to give the traitor objectives or not. + /// + [DataField("giveObjectives"), ViewVariables(VVAccess.ReadWrite)] + public bool GiveObjectives = true; +} diff --git a/Content.Server/Traitor/Systems/AutoTraitorSystem.cs b/Content.Server/Traitor/Systems/AutoTraitorSystem.cs new file mode 100644 index 00000000000..70fefd4c905 --- /dev/null +++ b/Content.Server/Traitor/Systems/AutoTraitorSystem.cs @@ -0,0 +1,76 @@ +using Content.Server.GameTicking.Rules; +using Content.Server.Traitor.Components; +using Content.Shared.Mind; +using Content.Shared.Mind.Components; + +namespace Content.Server.Traitor.Systems; + +/// +/// Makes entities with a traitor either immediately if they have a mind or when a mind is added. +/// +public sealed class AutoTraitorSystem : EntitySystem +{ + [Dependency] private readonly TraitorRuleSystem _traitorRule = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnMindAdded); + } + + private void OnMapInit(EntityUid uid, AutoTraitorComponent comp, MapInitEvent args) + { + TryMakeTraitor(uid, comp); + } + + private void OnMindAdded(EntityUid uid, AutoTraitorComponent comp, MindAddedMessage args) + { + TryMakeTraitor(uid, comp); + } + + /// + /// Sets the GiveUplink field. + /// + public void SetGiveUplink(EntityUid uid, bool giveUplink, AutoTraitorComponent? comp = null) + { + if (!Resolve(uid, ref comp)) + return; + + comp.GiveUplink = giveUplink; + } + + /// + /// Sets the GiveObjectives field. + /// + public void SetGiveObjectives(EntityUid uid, bool giveObjectives, AutoTraitorComponent? comp = null) + { + if (!Resolve(uid, ref comp)) + return; + + comp.GiveObjectives = giveObjectives; + } + + /// + /// Checks if there is a mind, then makes it a traitor using the options. + /// + public bool TryMakeTraitor(EntityUid uid, AutoTraitorComponent? comp = null) + { + if (!Resolve(uid, ref comp)) + return false; + + if (!TryComp(uid, out var mindContainer) || mindContainer.Mind == null) + return false; + + var mindId = mindContainer.Mind.Value; + if (!TryComp(mindId, out var mind) || mind.Session == null) + return false; + + var session = mind.Session; + _traitorRule.MakeTraitor(session, giveUplink: comp.GiveUplink, giveObjectives: comp.GiveObjectives); + // prevent spamming anything if it fails + RemComp(uid); + return true; + } +} diff --git a/Content.Server/Traitor/Uplink/SurplusBundle/SurplusBundleComponent.cs b/Content.Server/Traitor/Uplink/SurplusBundle/SurplusBundleComponent.cs index 8258034e67b..47ce68625a1 100644 --- a/Content.Server/Traitor/Uplink/SurplusBundle/SurplusBundleComponent.cs +++ b/Content.Server/Traitor/Uplink/SurplusBundle/SurplusBundleComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Traitor.Uplink.SurplusBundle; /// Fill crate with a random uplink items. /// [RegisterComponent] -public sealed class SurplusBundleComponent : Component +public sealed partial class SurplusBundleComponent : Component { /// /// Total price of all content inside bundle. diff --git a/Content.Server/Traits/Assorted/NarcolepsyComponent.cs b/Content.Server/Traits/Assorted/NarcolepsyComponent.cs index be8f6cde549..efa34584958 100644 --- a/Content.Server/Traits/Assorted/NarcolepsyComponent.cs +++ b/Content.Server/Traits/Assorted/NarcolepsyComponent.cs @@ -6,19 +6,19 @@ namespace Content.Server.Traits.Assorted; /// This is used for the narcolepsy trait. /// [RegisterComponent, Access(typeof(NarcolepsySystem))] -public sealed class NarcolepsyComponent : Component +public sealed partial class NarcolepsyComponent : Component { /// /// The random time between incidents, (min, max). /// [DataField("timeBetweenIncidents", required: true)] - public Vector2 TimeBetweenIncidents { get; } + public Vector2 TimeBetweenIncidents { get; private set; } /// /// The duration of incidents, (min, max). /// [DataField("durationOfIncident", required: true)] - public Vector2 DurationOfIncident { get; } + public Vector2 DurationOfIncident { get; private set; } public float NextIncidentTime; } diff --git a/Content.Server/Traits/Assorted/UncloneableComponent.cs b/Content.Server/Traits/Assorted/UncloneableComponent.cs index 8e20ec9bf1f..650b78cd0f2 100644 --- a/Content.Server/Traits/Assorted/UncloneableComponent.cs +++ b/Content.Server/Traits/Assorted/UncloneableComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Traits.Assorted; /// This is used for the uncloneable trait. /// [RegisterComponent] -public sealed class UncloneableComponent : Component +public sealed partial class UncloneableComponent : Component { } diff --git a/Content.Server/Traits/Assorted/WheelchairBoundComponent.cs b/Content.Server/Traits/Assorted/WheelchairBoundComponent.cs index 5e307b12db9..44608ba4ace 100644 --- a/Content.Server/Traits/Assorted/WheelchairBoundComponent.cs +++ b/Content.Server/Traits/Assorted/WheelchairBoundComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Traits.Assorted; /// On adding spawns wheelchair prototype and tries buckle player to it, then self removing /// [RegisterComponent, Access(typeof(WheelchairBoundSystem))] -public sealed class WheelchairBoundComponent : Component +public sealed partial class WheelchairBoundComponent : Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("wheelchairPrototype", customTypeSerializer: typeof(PrototypeIdSerializer))] diff --git a/Content.Server/UserInterface/ActivatableUIComponent.cs b/Content.Server/UserInterface/ActivatableUIComponent.cs index f1dcb80382d..fe9ae850c84 100644 --- a/Content.Server/UserInterface/ActivatableUIComponent.cs +++ b/Content.Server/UserInterface/ActivatableUIComponent.cs @@ -6,13 +6,13 @@ namespace Content.Server.UserInterface { [RegisterComponent] - public sealed class ActivatableUIComponent : Component, + public sealed partial class ActivatableUIComponent : Component, ISerializationHooks { [ViewVariables] public Enum? Key { get; set; } - [ViewVariables] public BoundUserInterface? UserInterface => (Key != null) ? Owner.GetUIOrNull(Key) : null; + [ViewVariables] public PlayerBoundUserInterface? UserInterface => (Key != null) ? Owner.GetUIOrNull(Key) : null; [ViewVariables(VVAccess.ReadWrite)] [DataField("inHandsOnly")] diff --git a/Content.Server/UserInterface/ActivatableUIRequiresPowerCellComponent.cs b/Content.Server/UserInterface/ActivatableUIRequiresPowerCellComponent.cs index df7f91a1c1c..fdc56f89a05 100644 --- a/Content.Server/UserInterface/ActivatableUIRequiresPowerCellComponent.cs +++ b/Content.Server/UserInterface/ActivatableUIRequiresPowerCellComponent.cs @@ -8,7 +8,7 @@ namespace Content.Server.UserInterface; /// Specifies that the attached entity requires power. /// [RegisterComponent] -public sealed class ActivatableUIRequiresPowerCellComponent : Component +public sealed partial class ActivatableUIRequiresPowerCellComponent : Component { } diff --git a/Content.Server/UserInterface/ActivatableUISystem.cs b/Content.Server/UserInterface/ActivatableUISystem.cs index eb1343560cd..c200d7a3f00 100644 --- a/Content.Server/UserInterface/ActivatableUISystem.cs +++ b/Content.Server/UserInterface/ActivatableUISystem.cs @@ -1,10 +1,11 @@ using Content.Server.Administration.Managers; -using Content.Server.Ghost.Components; using Content.Shared.ActionBlocker; +using Content.Shared.Ghost; using Content.Shared.Hands; using Content.Shared.Hands.Components; using Content.Shared.Interaction; using Content.Shared.Interaction.Events; +using Content.Shared.UserInterface; using Content.Shared.Verbs; using Robust.Server.GameObjects; using Robust.Server.Player; @@ -32,7 +33,7 @@ public override void Initialize() SubscribeLocalEvent>(AddOpenUiVerb); - SubscribeLocalEvent(OnActionPerform); + SubscribeLocalEvent(OnActionPerform); InitializePower(); } @@ -49,7 +50,7 @@ private void OnBoundInterfaceInteractAttempt(BoundUserInterfaceMessageAttempt ev ev.Cancel(); } - private void OnActionPerform(EntityUid uid, ServerUserInterfaceComponent component, OpenUiActionEvent args) + private void OnActionPerform(EntityUid uid, UserInterfaceComponent component, OpenUiActionEvent args) { if (args.Handled || args.Key == null) return; diff --git a/Content.Server/UserInterface/IntrinsicUIComponent.cs b/Content.Server/UserInterface/IntrinsicUIComponent.cs index dd6fcdbd905..4d3c7ffba97 100644 --- a/Content.Server/UserInterface/IntrinsicUIComponent.cs +++ b/Content.Server/UserInterface/IntrinsicUIComponent.cs @@ -1,57 +1,32 @@ -using Content.Shared.Actions.ActionTypes; -using Robust.Shared.Reflection; -using Robust.Shared.Serialization; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.UserInterface; [RegisterComponent] -public sealed class IntrinsicUIComponent : Component, ISerializationHooks +public sealed partial class IntrinsicUIComponent : Component { /// /// List of UIs and their actions that this entity has. /// - [DataField("uis", required: true)] - public List UIs = new(); - - void ISerializationHooks.AfterDeserialization() - { - for (var i = 0; i < UIs.Count; i++) - { - var ui = UIs[i]; - ui.AfterDeserialization(); - UIs[i] = ui; - } - } + [DataField("uis", required: true)] public List UIs = new(); } [DataDefinition] -public struct IntrinsicUIEntry +public partial class IntrinsicUIEntry { - [ViewVariables] public Enum? Key { get; private set; } = null; - /// /// The BUI key that this intrinsic UI should open. /// [DataField("key", required: true)] - private string _keyRaw = default!; + public Enum? Key { get; private set; } + + [DataField("toggleAction", customTypeSerializer: typeof(PrototypeIdSerializer), required: true)] + public string? ToggleAction; /// /// The action used for this BUI. /// - [DataField("toggleAction", required: true)] - public InstantAction ToggleAction = new(); - - public void AfterDeserialization() - { - var reflectionManager = IoCManager.Resolve(); - if (reflectionManager.TryParseEnumReference(_keyRaw, out var key)) - Key = key; - - if (ToggleAction.Event is ToggleIntrinsicUIEvent ev) - { - ev.Key = Key; - } - } - - public IntrinsicUIEntry() {} + [DataField("toggleActionEntity")] + public EntityUid? ToggleActionEntity = new(); } diff --git a/Content.Server/UserInterface/IntrinsicUISystem.cs b/Content.Server/UserInterface/IntrinsicUISystem.cs index 7d76bfe8b6c..ce89974f631 100644 --- a/Content.Server/UserInterface/IntrinsicUISystem.cs +++ b/Content.Server/UserInterface/IntrinsicUISystem.cs @@ -1,6 +1,6 @@ using Content.Server.Actions; using Content.Shared.Actions; -using JetBrains.Annotations; +using Content.Shared.UserInterface; using Robust.Server.GameObjects; namespace Content.Server.UserInterface; @@ -28,7 +28,7 @@ private void OnGetActions(EntityUid uid, IntrinsicUIComponent component, Compone foreach (var entry in component.UIs) { - _actionsSystem.AddAction(uid, entry.ToggleAction, null, actions); + _actionsSystem.AddAction(uid, ref entry.ToggleActionEntity, entry.ToggleAction, null, actions); } } @@ -59,7 +59,7 @@ public bool InteractUI(EntityUid uid, Enum? key, IntrinsicUIComponent? iui = nul return true; } - private BoundUserInterface? GetUIOrNull(EntityUid uid, Enum? key, IntrinsicUIComponent? component = null) + private PlayerBoundUserInterface? GetUIOrNull(EntityUid uid, Enum? key, IntrinsicUIComponent? component = null) { if (!Resolve(uid, ref component)) return null; @@ -68,13 +68,6 @@ public bool InteractUI(EntityUid uid, Enum? key, IntrinsicUIComponent? iui = nul } } -[UsedImplicitly] -public sealed class ToggleIntrinsicUIEvent : InstantActionEvent -{ - [ViewVariables] - public Enum? Key { get; set; } -} - // Competing with ActivatableUI for horrible event names. public sealed class IntrinsicUIOpenAttemptEvent : CancellableEntityEventArgs { diff --git a/Content.Server/UserInterface/UserInterfaceHelpers.cs b/Content.Server/UserInterface/UserInterfaceHelpers.cs index 4a0e9d15438..865772c772c 100644 --- a/Content.Server/UserInterface/UserInterfaceHelpers.cs +++ b/Content.Server/UserInterface/UserInterfaceHelpers.cs @@ -5,7 +5,7 @@ namespace Content.Server.UserInterface public static class UserInterfaceHelpers { [Obsolete("Use UserInterfaceSystem")] - public static BoundUserInterface? GetUIOrNull(this EntityUid entity, Enum uiKey) + public static PlayerBoundUserInterface? GetUIOrNull(this EntityUid entity, Enum uiKey) { return IoCManager.Resolve().GetEntitySystem().GetUiOrNull(entity, uiKey); } diff --git a/Content.Server/VendingMachines/VendingMachineContrabandWireAction.cs b/Content.Server/VendingMachines/VendingMachineContrabandWireAction.cs index 0d7d974737e..22a0341fcbe 100644 --- a/Content.Server/VendingMachines/VendingMachineContrabandWireAction.cs +++ b/Content.Server/VendingMachines/VendingMachineContrabandWireAction.cs @@ -5,7 +5,7 @@ namespace Content.Server.VendingMachines; [DataDefinition] -public sealed class VendingMachineContrabandWireAction : BaseToggleWireAction +public sealed partial class VendingMachineContrabandWireAction : BaseToggleWireAction { public override Color Color { get; set; } = Color.Green; public override string Name { get; set; } = "wire-name-vending-contraband"; diff --git a/Content.Server/VendingMachines/VendingMachineEjectItemWireAction.cs b/Content.Server/VendingMachines/VendingMachineEjectItemWireAction.cs index c9b1fbc4f11..45e5e96426c 100644 --- a/Content.Server/VendingMachines/VendingMachineEjectItemWireAction.cs +++ b/Content.Server/VendingMachines/VendingMachineEjectItemWireAction.cs @@ -4,7 +4,7 @@ namespace Content.Server.VendingMachines; -public sealed class VendingMachineEjectItemWireAction : ComponentWireAction +public sealed partial class VendingMachineEjectItemWireAction : ComponentWireAction { private VendingMachineSystem _vendingMachineSystem = default!; diff --git a/Content.Server/VendingMachines/VendingMachineSystem.cs b/Content.Server/VendingMachines/VendingMachineSystem.cs index 80ae893fbdd..3a389760a1d 100644 --- a/Content.Server/VendingMachines/VendingMachineSystem.cs +++ b/Content.Server/VendingMachines/VendingMachineSystem.cs @@ -55,6 +55,7 @@ public override void Initialize() base.Initialize(); _sawmill = Logger.GetSawmill("vending"); + SubscribeLocalEvent(OnComponentMapInit); SubscribeLocalEvent(OnPowerChanged); SubscribeLocalEvent(OnBreak); SubscribeLocalEvent(OnEmagged); @@ -73,6 +74,12 @@ public override void Initialize() SubscribeLocalEvent(OnPriceCalculation); } + private void OnComponentMapInit(EntityUid uid, VendingMachineComponent component, MapInitEvent args) + { + _action.AddAction(uid, ref component.ActionEntity, component.Action, uid); + Dirty(uid, component); + } + private void OnVendingPrice(EntityUid uid, VendingMachineComponent component, ref PriceCalculationEvent args) { var price = 0.0; @@ -99,12 +106,6 @@ protected override void OnComponentInit(EntityUid uid, VendingMachineComponent c { TryUpdateVisualState(uid, component); } - - if (component.Action != null) - { - var action = new InstantAction(PrototypeManager.Index(component.Action)); - _action.AddAction(uid, action, uid); - } } private void OnActivatableUIOpenAttempt(EntityUid uid, VendingMachineComponent component, ActivatableUIOpenAttemptEvent args) @@ -250,7 +251,7 @@ public bool IsAuthorized(EntityUid uid, EntityUid sender, VendingMachineComponen if (!TryComp(uid, out var accessReader)) return true; - if (_accessReader.IsAllowed(sender, accessReader) || HasComp(uid)) + if (_accessReader.IsAllowed(sender, uid, accessReader) || HasComp(uid)) return true; Popup.PopupEntity(Loc.GetString("vending-machine-component-try-eject-access-denied"), uid); diff --git a/Content.Server/Verbs/VerbSystem.cs b/Content.Server/Verbs/VerbSystem.cs index 28d300ade59..6d12b08e865 100644 --- a/Content.Server/Verbs/VerbSystem.cs +++ b/Content.Server/Verbs/VerbSystem.cs @@ -27,15 +27,15 @@ private void HandleVerbRequest(RequestServerVerbsEvent args, EntitySessionEventA { var player = (IPlayerSession) eventArgs.SenderSession; - if (!EntityManager.EntityExists(args.EntityUid)) + if (!EntityManager.EntityExists(GetEntity(args.EntityUid))) { - Logger.Warning($"{nameof(HandleVerbRequest)} called on a non-existent entity with id {args.EntityUid} by player {player}."); + Log.Warning($"{nameof(HandleVerbRequest)} called on a non-existent entity with id {args.EntityUid} by player {player}."); return; } if (player.AttachedEntity is not {} attached) { - Logger.Warning($"{nameof(HandleVerbRequest)} called by player {player} with no attached entity."); + Log.Warning($"{nameof(HandleVerbRequest)} called by player {player} with no attached entity."); return; } @@ -54,11 +54,11 @@ private void HandleVerbRequest(RequestServerVerbsEvent args, EntitySessionEventA if (type != null) verbTypes.Add(type); else - Logger.Error($"Unknown verb type received: {key}"); + Log.Error($"Unknown verb type received: {key}"); } var response = - new VerbsResponseEvent(args.EntityUid, GetLocalVerbs(args.EntityUid, attached, verbTypes, force)); + new VerbsResponseEvent(args.EntityUid, GetLocalVerbs(GetEntity(args.EntityUid), attached, verbTypes, force)); RaiseNetworkEvent(response, player.ConnectedClient); } diff --git a/Content.Server/Visible/VisibilityFlags.cs b/Content.Server/Visible/VisibilityFlags.cs deleted file mode 100644 index 03c2022fea8..00000000000 --- a/Content.Server/Visible/VisibilityFlags.cs +++ /dev/null @@ -1,10 +0,0 @@ -namespace Content.Server.Visible -{ - [Flags] - public enum VisibilityFlags : uint - { - None = 0, - Normal = 1 << 0, - Ghost = 1 << 1, - } -} diff --git a/Content.Server/VoiceMask/VoiceMaskComponent.cs b/Content.Server/VoiceMask/VoiceMaskComponent.cs index 32d2125e557..edf38b39d48 100644 --- a/Content.Server/VoiceMask/VoiceMaskComponent.cs +++ b/Content.Server/VoiceMask/VoiceMaskComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.VoiceMask; [RegisterComponent] -public sealed class VoiceMaskComponent : Component +public sealed partial class VoiceMaskComponent : Component { [ViewVariables(VVAccess.ReadWrite)] public bool Enabled = true; diff --git a/Content.Server/VoiceMask/VoiceMaskSystem.Equip.cs b/Content.Server/VoiceMask/VoiceMaskSystem.Equip.cs index 74c7b3b77e7..87b3b9ef323 100644 --- a/Content.Server/VoiceMask/VoiceMaskSystem.Equip.cs +++ b/Content.Server/VoiceMask/VoiceMaskSystem.Equip.cs @@ -1,9 +1,6 @@ using Content.Server.Actions; -using Content.Shared.Actions.ActionTypes; using Content.Shared.Inventory; using Content.Shared.Inventory.Events; -using Content.Shared.Speech; -using Robust.Shared.Prototypes; namespace Content.Server.VoiceMask; @@ -12,7 +9,6 @@ public sealed partial class VoiceMaskSystem { [Dependency] private readonly InventorySystem _inventory = default!; [Dependency] private readonly ActionsSystem _actions = default!; - [Dependency] private readonly IPrototypeManager _prototypeManager = default!; private const string MaskSlot = "mask"; @@ -26,12 +22,7 @@ private void OnEquip(EntityUid uid, VoiceMaskerComponent component, GotEquippedE var comp = EnsureComp(user); comp.VoiceName = component.LastSetName; - if (!_prototypeManager.TryIndex(component.Action, out var action)) - { - throw new ArgumentException("Could not get voice masking prototype."); - } - - _actions.AddAction(user, (InstantAction) action.Clone(), uid); + _actions.AddAction(user, ref component.ActionEntity, component.Action, uid); } private void OnUnequip(EntityUid uid, VoiceMaskerComponent compnent, GotUnequippedEvent args) diff --git a/Content.Server/VoiceMask/VoiceMaskSystem.cs b/Content.Server/VoiceMask/VoiceMaskSystem.cs index 05a87891e00..fdd5f3a9f42 100644 --- a/Content.Server/VoiceMask/VoiceMaskSystem.cs +++ b/Content.Server/VoiceMask/VoiceMaskSystem.cs @@ -1,7 +1,6 @@ using Content.Server.Administration.Logs; using Content.Server.Chat.Systems; using Content.Server.Popups; -using Content.Shared.Actions; using Content.Shared.Database; using Content.Shared.Inventory.Events; using Content.Shared.Preferences; @@ -85,10 +84,6 @@ private void UpdateUI(EntityUid owner, VoiceMaskComponent? component = null) } if (_uiSystem.TryGetUi(owner, VoiceMaskUIKey.Key, out var bui)) - UserInterfaceSystem.SetUiState(bui, new VoiceMaskBuiState(component.VoiceName)); + _uiSystem.SetUiState(bui, new VoiceMaskBuiState(component.VoiceName)); } } - -public sealed class VoiceMaskSetNameEvent : InstantActionEvent -{ -} diff --git a/Content.Server/VoiceMask/VoiceMaskerComponent.cs b/Content.Server/VoiceMask/VoiceMaskerComponent.cs index 53b6f92e2a6..c3cc29c5271 100644 --- a/Content.Server/VoiceMask/VoiceMaskerComponent.cs +++ b/Content.Server/VoiceMask/VoiceMaskerComponent.cs @@ -1,13 +1,15 @@ -using Content.Shared.Actions.ActionTypes; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.VoiceMask; [RegisterComponent] -public sealed class VoiceMaskerComponent : Component +public sealed partial class VoiceMaskerComponent : Component { [ViewVariables(VVAccess.ReadWrite)] public string LastSetName = "Unknown"; - [DataField("action", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string Action = "ChangeVoiceMask"; + [DataField("action", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string Action = "ActionChangeVoiceMask"; + + [DataField("actionEntity")] public EntityUid? ActionEntity; } diff --git a/Content.Server/Warps/WarpPointComponent.cs b/Content.Server/Warps/WarpPointComponent.cs index b4cb00f4fa4..388b67f05ef 100644 --- a/Content.Server/Warps/WarpPointComponent.cs +++ b/Content.Server/Warps/WarpPointComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Warps /// Allows ghosts etc to warp to this entity by name. /// [RegisterComponent] - public sealed class WarpPointComponent : Component + public sealed partial class WarpPointComponent : Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("location")] public string? Location { get; set; } @@ -12,7 +12,7 @@ public sealed class WarpPointComponent : Component /// If true, ghosts warping to this entity will begin following it. /// [DataField("follow")] - public readonly bool Follow = false; + public bool Follow = false; /// /// If true, will sync warp point name with a station name. diff --git a/Content.Server/Warps/WarpPointSystem.cs b/Content.Server/Warps/WarpPointSystem.cs index 9798f3fe86b..d3b978a147d 100644 --- a/Content.Server/Warps/WarpPointSystem.cs +++ b/Content.Server/Warps/WarpPointSystem.cs @@ -1,5 +1,5 @@ -using Content.Server.Ghost.Components; using Content.Shared.Examine; +using Content.Shared.Ghost; namespace Content.Server.Warps; diff --git a/Content.Server/Weapons/Melee/Balloon/BalloonPopperComponent.cs b/Content.Server/Weapons/Melee/Balloon/BalloonPopperComponent.cs index 1f7ac592fc5..e7f318d61c1 100644 --- a/Content.Server/Weapons/Melee/Balloon/BalloonPopperComponent.cs +++ b/Content.Server/Weapons/Melee/Balloon/BalloonPopperComponent.cs @@ -8,7 +8,7 @@ namespace Content.Server.Weapons.Melee.Balloon; /// This is used for weapons that pop balloons on attack. /// [RegisterComponent] -public sealed class BalloonPopperComponent : Component +public sealed partial class BalloonPopperComponent : Component { /// /// The tag that marks something as a balloon. diff --git a/Content.Server/Weapons/Melee/EnergySword/EnergySwordComponent.cs b/Content.Server/Weapons/Melee/EnergySword/EnergySwordComponent.cs index a6378ea28b4..f699ef7b348 100644 --- a/Content.Server/Weapons/Melee/EnergySword/EnergySwordComponent.cs +++ b/Content.Server/Weapons/Melee/EnergySword/EnergySwordComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Weapons.Melee.EnergySword; [RegisterComponent] -internal sealed class EnergySwordComponent : Component +internal sealed partial class EnergySwordComponent : Component { public Color BladeColor = Color.DodgerBlue; diff --git a/Content.Server/Weapons/Melee/EnergySword/EnergySwordSystem.cs b/Content.Server/Weapons/Melee/EnergySword/EnergySwordSystem.cs index 2b414ea00df..67866e6e5a7 100644 --- a/Content.Server/Weapons/Melee/EnergySword/EnergySwordSystem.cs +++ b/Content.Server/Weapons/Melee/EnergySword/EnergySwordSystem.cs @@ -4,7 +4,7 @@ using Content.Shared.Interaction.Events; using Content.Shared.Item; using Content.Shared.Light; -using Content.Shared.Light.Component; +using Content.Shared.Light.Components; using Content.Shared.Temperature; using Content.Shared.Toggleable; using Content.Shared.Tools.Components; diff --git a/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs b/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs index c8f894ea19b..c4fec25139f 100644 --- a/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs +++ b/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs @@ -102,15 +102,15 @@ protected override bool DoDisarm(EntityUid user, DisarmAttackEvent ev, EntityUid return false; } - var target = ev.Target!.Value; + var target = GetEntity(ev.Target!.Value); - if (!TryComp(ev.Target.Value, out var targetHandsComponent)) + if (!TryComp(target, out var targetHandsComponent)) { - if (!TryComp(ev.Target!.Value, out var status) || !status.AllowedEffects.Contains("KnockedDown")) + if (!TryComp(target, out var status) || !status.AllowedEffects.Contains("KnockedDown")) return false; } - if (!InRange(user, ev.Target.Value, component.Range, session)) + if (!InRange(user, target, component.Range, session)) { return false; } @@ -122,7 +122,7 @@ protected override bool DoDisarm(EntityUid user, DisarmAttackEvent ev, EntityUid inTargetHand = targetHandsComponent.ActiveHand.HeldEntity!.Value; } - Interaction.DoContactInteraction(user, ev.Target); + Interaction.DoContactInteraction(user, target); var attemptEvent = new DisarmAttemptEvent(target, user, inTargetHand); @@ -228,7 +228,7 @@ public override void DoLunge(EntityUid user, Angle angle, Vector2 localPos, stri filter = Filter.Pvs(user, entityManager: EntityManager); } - RaiseNetworkEvent(new MeleeLungeEvent(user, angle, localPos, animation), filter); + RaiseNetworkEvent(new MeleeLungeEvent(GetNetEntity(user), angle, localPos, animation), filter); } private void OnSpeechHit(EntityUid owner, MeleeSpeechComponent comp, MeleeHitEvent args) diff --git a/Content.Server/Weapons/Melee/WeaponRandom/WeaponRandomComponent.cs b/Content.Server/Weapons/Melee/WeaponRandom/WeaponRandomComponent.cs index 66ca5135ff1..c8cb5d2f285 100644 --- a/Content.Server/Weapons/Melee/WeaponRandom/WeaponRandomComponent.cs +++ b/Content.Server/Weapons/Melee/WeaponRandom/WeaponRandomComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Weapons.Melee.WeaponRandom; [RegisterComponent] -internal sealed class WeaponRandomComponent : Component +internal sealed partial class WeaponRandomComponent : Component { /// diff --git a/Content.Server/Weapons/Ranged/Components/AmmoCounterComponent.cs b/Content.Server/Weapons/Ranged/Components/AmmoCounterComponent.cs index 7c7a606de97..3815ce15dbf 100644 --- a/Content.Server/Weapons/Ranged/Components/AmmoCounterComponent.cs +++ b/Content.Server/Weapons/Ranged/Components/AmmoCounterComponent.cs @@ -3,4 +3,4 @@ namespace Content.Server.Weapons.Ranged.Components; [RegisterComponent] -public sealed class AmmoCounterComponent : SharedAmmoCounterComponent {} +public sealed partial class AmmoCounterComponent : SharedAmmoCounterComponent {} diff --git a/Content.Server/Weapons/Ranged/Components/BatteryWeaponFireModesComponent.cs b/Content.Server/Weapons/Ranged/Components/BatteryWeaponFireModesComponent.cs new file mode 100644 index 00000000000..0d2b05d36c5 --- /dev/null +++ b/Content.Server/Weapons/Ranged/Components/BatteryWeaponFireModesComponent.cs @@ -0,0 +1,44 @@ +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Content.Server.Weapons.Ranged.Systems; + +namespace Content.Server.Weapons.Ranged.Components; + +/// +/// Allows battery weapons to fire different types of projectiles +/// +[RegisterComponent] +[Access(typeof(BatteryWeaponFireModesSystem))] +[AutoGenerateComponentState] +public sealed partial class BatteryWeaponFireModesComponent : Component +{ + /// + /// A list of the different firing modes the weapon can switch between + /// + [DataField("fireModes", required: true)] + [AutoNetworkedField] + public List FireModes = new(); + + /// + /// The currently selected firing mode + /// + [DataField("currentFireMode")] + [AutoNetworkedField] + public BatteryWeaponFireMode? CurrentFireMode = default!; +} + +[DataDefinition] +public sealed partial class BatteryWeaponFireMode +{ + /// + /// The projectile prototype associated with this firing mode + /// + [DataField("proto", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] + public string Prototype = default!; + + /// + /// The battery cost to fire the projectile associated with this firing mode + /// + [DataField("fireCost")] + public float FireCost = 100; +} diff --git a/Content.Server/Weapons/Ranged/Components/ChemicalAmmoComponent.cs b/Content.Server/Weapons/Ranged/Components/ChemicalAmmoComponent.cs index 87d3ed76121..b9a5eca09b6 100644 --- a/Content.Server/Weapons/Ranged/Components/ChemicalAmmoComponent.cs +++ b/Content.Server/Weapons/Ranged/Components/ChemicalAmmoComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Weapons.Ranged.Components { [RegisterComponent] - public sealed class ChemicalAmmoComponent : Component + public sealed partial class ChemicalAmmoComponent : Component { public const string DefaultSolutionName = "ammo"; diff --git a/Content.Server/Weapons/Ranged/Components/RangedDamageSoundComponent.cs b/Content.Server/Weapons/Ranged/Components/RangedDamageSoundComponent.cs index 1897bb7d93f..ccb5119af86 100644 --- a/Content.Server/Weapons/Ranged/Components/RangedDamageSoundComponent.cs +++ b/Content.Server/Weapons/Ranged/Components/RangedDamageSoundComponent.cs @@ -8,7 +8,7 @@ namespace Content.Server.Weapons.Ranged.Components; /// Plays the specified sound upon receiving damage of that type. /// [RegisterComponent] -public sealed class RangedDamageSoundComponent : Component +public sealed partial class RangedDamageSoundComponent : Component { // TODO: Limb damage changing sound type. diff --git a/Content.Server/Weapons/Ranged/Systems/BatteryWeaponFireModesSystem.cs b/Content.Server/Weapons/Ranged/Systems/BatteryWeaponFireModesSystem.cs new file mode 100644 index 00000000000..90859d40682 --- /dev/null +++ b/Content.Server/Weapons/Ranged/Systems/BatteryWeaponFireModesSystem.cs @@ -0,0 +1,130 @@ +using Content.Server.Popups; +using Content.Server.Weapons.Ranged.Components; +using Content.Shared.Database; +using Content.Shared.Examine; +using Content.Shared.Interaction; +using Content.Shared.Verbs; +using Content.Shared.Weapons.Ranged.Components; +using Robust.Shared.Prototypes; +using System.Linq; + +namespace Content.Server.Weapons.Ranged.Systems; + +public sealed class BatteryWeaponFireModesSystem : EntitySystem +{ + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly PopupSystem _popupSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnInteractHandEvent); + SubscribeLocalEvent>(OnGetVerb); + SubscribeLocalEvent(OnExamined); + } + + private void OnExamined(EntityUid uid, BatteryWeaponFireModesComponent component, ExaminedEvent args) + { + if (component.FireModes == null || component.FireModes.Count < 2) + return; + + if (component.CurrentFireMode == null) + { + SetFireMode(uid, component, component.FireModes.First()); + } + + if (component.CurrentFireMode?.Prototype == null) + return; + + if (!_prototypeManager.TryIndex(component.CurrentFireMode.Prototype, out var proto)) + return; + + args.PushMarkup(Loc.GetString("gun-set-fire-mode", ("mode", proto.Name))); + } + + private void OnGetVerb(EntityUid uid, BatteryWeaponFireModesComponent component, GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract || args.Hands == null) + return; + + if (component.FireModes == null || component.FireModes.Count < 2) + return; + + if (component.CurrentFireMode == null) + { + SetFireMode(uid, component, component.FireModes.First()); + } + + foreach (var fireMode in component.FireModes) + { + var entProto = _prototypeManager.Index(fireMode.Prototype); + + var v = new Verb + { + Priority = 1, + Category = VerbCategory.SelectType, + Text = entProto.Name, + Disabled = fireMode == component.CurrentFireMode, + Impact = LogImpact.Low, + DoContactInteraction = true, + Act = () => + { + SetFireMode(uid, component, fireMode, args.User); + } + }; + + args.Verbs.Add(v); + } + } + + private void OnInteractHandEvent(EntityUid uid, BatteryWeaponFireModesComponent component, ActivateInWorldEvent args) + { + if (component.FireModes == null || component.FireModes.Count < 2) + return; + + CycleFireMode(uid, component, args.User); + } + + private void CycleFireMode(EntityUid uid, BatteryWeaponFireModesComponent component, EntityUid user) + { + int index = (component.CurrentFireMode != null) ? + Math.Max(component.FireModes.IndexOf(component.CurrentFireMode), 0) + 1 : 1; + + BatteryWeaponFireMode? fireMode; + + if (index >= component.FireModes.Count) + { + fireMode = component.FireModes.FirstOrDefault(); + } + + else + { + fireMode = component.FireModes[index]; + } + + SetFireMode(uid, component, fireMode, user); + } + + private void SetFireMode(EntityUid uid, BatteryWeaponFireModesComponent component, BatteryWeaponFireMode? fireMode, EntityUid? user = null) + { + if (fireMode?.Prototype == null) + return; + + component.CurrentFireMode = fireMode; + + if (TryComp(uid, out ProjectileBatteryAmmoProviderComponent? projectileBatteryAmmoProvider)) + { + if (!_prototypeManager.TryIndex(fireMode.Prototype, out var prototype)) + return; + + projectileBatteryAmmoProvider.Prototype = fireMode.Prototype; + projectileBatteryAmmoProvider.FireCost = fireMode.FireCost; + + if (user != null) + { + _popupSystem.PopupEntity(Loc.GetString("gun-set-fire-mode", ("mode", prototype.Name)), uid, user.Value); + } + } + } +} diff --git a/Content.Server/Weapons/Ranged/Systems/GunSystem.Ballistic.cs b/Content.Server/Weapons/Ranged/Systems/GunSystem.Ballistic.cs index 3a28c7cdb1a..ef3127e39bf 100644 --- a/Content.Server/Weapons/Ranged/Systems/GunSystem.Ballistic.cs +++ b/Content.Server/Weapons/Ranged/Systems/GunSystem.Ballistic.cs @@ -17,13 +17,13 @@ protected override void Cycle(EntityUid uid, BallisticAmmoProviderComponent comp component.Entities.RemoveAt(component.Entities.Count - 1); component.Container.Remove(existing); - EnsureComp(existing); + EnsureShootable(existing); } else if (component.UnspawnedCount > 0) { component.UnspawnedCount--; ent = Spawn(component.FillProto, coordinates); - EnsureComp(ent.Value); + EnsureShootable(ent.Value); } if (ent != null) diff --git a/Content.Server/Weapons/Ranged/Systems/GunSystem.cs b/Content.Server/Weapons/Ranged/Systems/GunSystem.cs index 4a35e64c6c5..0acb20f5a24 100644 --- a/Content.Server/Weapons/Ranged/Systems/GunSystem.cs +++ b/Content.Server/Weapons/Ranged/Systems/GunSystem.cs @@ -283,7 +283,7 @@ private void ShootOrThrow(EntityUid uid, Vector2 mapDirection, Vector2 gunVeloci // Do a throw if (!HasComp(uid)) { - RemComp(uid); + RemoveShootable(uid); // TODO: Someone can probably yeet this a billion miles so need to pre-validate input somewhere up the call stack. ThrowingSystem.TryThrow(uid, mapDirection, gun.ProjectileSpeed, user); return; @@ -398,7 +398,7 @@ private void FireEffects(EntityCoordinates fromCoordinates, float distance, Angl // Lord // Forgive me for the shitcode I am about to do // Effects tempt me not - var sprites = new List<(EntityCoordinates coordinates, Angle angle, SpriteSpecifier sprite, float scale)>(); + var sprites = new List<(NetCoordinates coordinates, Angle angle, SpriteSpecifier sprite, float scale)>(); var gridUid = fromCoordinates.GetGridUid(EntityManager); var angle = mapDirection; @@ -421,18 +421,27 @@ private void FireEffects(EntityCoordinates fromCoordinates, float distance, Angl { if (hitscan.MuzzleFlash != null) { - sprites.Add((fromCoordinates.Offset(angle.ToVec().Normalized() / 2), angle, hitscan.MuzzleFlash, 1f)); + var coords = fromCoordinates.Offset(angle.ToVec().Normalized() / 2); + var netCoords = GetNetCoordinates(coords); + + sprites.Add((netCoords, angle, hitscan.MuzzleFlash, 1f)); } if (hitscan.TravelFlash != null) { - sprites.Add((fromCoordinates.Offset(angle.ToVec() * (distance + 0.5f) / 2), angle, hitscan.TravelFlash, distance - 1.5f)); + var coords = fromCoordinates.Offset(angle.ToVec() * (distance + 0.5f) / 2); + var netCoords = GetNetCoordinates(coords); + + sprites.Add((netCoords, angle, hitscan.TravelFlash, distance - 1.5f)); } } if (hitscan.ImpactFlash != null) { - sprites.Add((fromCoordinates.Offset(angle.ToVec() * distance), angle.FlipPositive(), hitscan.ImpactFlash, 1f)); + var coords = fromCoordinates.Offset(angle.ToVec() * distance); + var netCoords = GetNetCoordinates(coords); + + sprites.Add((netCoords, angle.FlipPositive(), hitscan.ImpactFlash, 1f)); } if (sprites.Count > 0) diff --git a/Content.Server/Wires/ActivatableUIRequiresPanelComponent.cs b/Content.Server/Wires/ActivatableUIRequiresPanelComponent.cs index 74701c1ccdc..f92df3d3d59 100644 --- a/Content.Server/Wires/ActivatableUIRequiresPanelComponent.cs +++ b/Content.Server/Wires/ActivatableUIRequiresPanelComponent.cs @@ -4,7 +4,7 @@ /// This is used for activatable UIs that require the entity to have a panel in a certain state. /// [RegisterComponent] -public sealed class ActivatableUIRequiresPanelComponent : Component +public sealed partial class ActivatableUIRequiresPanelComponent : Component { /// /// TRUE: the panel must be open to access the UI. diff --git a/Content.Server/Wires/BaseToggleWireAction.cs b/Content.Server/Wires/BaseToggleWireAction.cs index 33d9d12c3b8..e5348958dd4 100644 --- a/Content.Server/Wires/BaseToggleWireAction.cs +++ b/Content.Server/Wires/BaseToggleWireAction.cs @@ -5,7 +5,7 @@ namespace Content.Server.Wires; /// toggle a value whenever a wire is cut, mended, /// or pulsed. /// -public abstract class BaseToggleWireAction : BaseWireAction +public abstract partial class BaseToggleWireAction : BaseWireAction { /// /// Toggles the value on the given entity. An implementor diff --git a/Content.Server/Wires/BaseWireAction.cs b/Content.Server/Wires/BaseWireAction.cs index 10baed90ebe..ef6a0fdf36e 100644 --- a/Content.Server/Wires/BaseWireAction.cs +++ b/Content.Server/Wires/BaseWireAction.cs @@ -7,7 +7,7 @@ namespace Content.Server.Wires; /// [ImplicitDataDefinitionForInheritors] -public abstract class BaseWireAction : IWireAction +public abstract partial class BaseWireAction : IWireAction { private ISharedAdminLogManager _adminLogger = default!; diff --git a/Content.Server/Wires/ComponentWireAction.cs b/Content.Server/Wires/ComponentWireAction.cs index 0ee1d231f49..24070680563 100644 --- a/Content.Server/Wires/ComponentWireAction.cs +++ b/Content.Server/Wires/ComponentWireAction.cs @@ -5,7 +5,7 @@ namespace Content.Server.Wires; /// /// convenience class for wires that depend on the existence of some component to function. Slightly reduces boilerplate. /// -public abstract class ComponentWireAction : BaseWireAction where TComponent : Component +public abstract partial class ComponentWireAction : BaseWireAction where TComponent : Component { public abstract StatusLightState? GetLightState(Wire wire, TComponent component); public override StatusLightState? GetLightState(Wire wire) diff --git a/Content.Server/Wires/WireLayout.cs b/Content.Server/Wires/WireLayout.cs index 39fdb30eba8..ed4381822fc 100644 --- a/Content.Server/Wires/WireLayout.cs +++ b/Content.Server/Wires/WireLayout.cs @@ -15,7 +15,7 @@ namespace Content.Server.Wires; public sealed class WireLayoutPrototype : IPrototype, IInheritingPrototype { [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [ParentDataField(typeof(AbstractPrototypeIdArraySerializer))] public string[]? Parents { get; private set; } @@ -29,11 +29,11 @@ public sealed class WireLayoutPrototype : IPrototype, IInheritingPrototype /// initialization) /// [DataField("dummyWires")] - public int DummyWires { get; } = default!; + public int DummyWires { get; private set; } = default!; /// /// All the valid IWireActions currently in this layout. /// [DataField("wires")] - public List? Wires { get; } + public List? Wires { get; private set; } } diff --git a/Content.Server/Wires/WiresComponent.cs b/Content.Server/Wires/WiresComponent.cs index 1221e618637..9283e1e18f2 100644 --- a/Content.Server/Wires/WiresComponent.cs +++ b/Content.Server/Wires/WiresComponent.cs @@ -3,13 +3,13 @@ namespace Content.Server.Wires; [RegisterComponent] -public sealed class WiresComponent : Component +public sealed partial class WiresComponent : Component { /// /// The name of this entity's internal board. /// [DataField("BoardName")] - public string BoardName { get; set; } = "Wires"; + public string BoardName { get; set; } = "wires-board-name-default"; /// /// The layout ID of this entity's wires. @@ -48,7 +48,7 @@ public sealed class WiresComponent : Component /// layout ID is generated, or if a new wire order should be generated every time. /// [DataField("alwaysRandomize")] - public bool AlwaysRandomize { get; } + public bool AlwaysRandomize { get; private set; } /// /// Per wire status, keyed by an object. diff --git a/Content.Server/Wires/WiresSystem.cs b/Content.Server/Wires/WiresSystem.cs index 67924ec5e2b..0baf0c5c224 100644 --- a/Content.Server/Wires/WiresSystem.cs +++ b/Content.Server/Wires/WiresSystem.cs @@ -33,7 +33,6 @@ public sealed class WiresSystem : SharedWiresSystem [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly WiresSystem _wiresSystem = default!; // This is where all the wire layouts are stored. [ViewVariables] private readonly Dictionary _layouts = new(); @@ -566,7 +565,7 @@ private void GenerateSerialNumber(EntityUid uid, WiresComponent? wires = null) UpdateUserInterface(uid); } - private void UpdateUserInterface(EntityUid uid, WiresComponent? wires = null, ServerUserInterfaceComponent? ui = null) + private void UpdateUserInterface(EntityUid uid, WiresComponent? wires = null, UserInterfaceComponent? ui = null) { if (!Resolve(uid, ref wires, ref ui, false)) // logging this means that we get a bunch of errors return; @@ -596,7 +595,7 @@ private void UpdateUserInterface(EntityUid uid, WiresComponent? wires = null, Se _uiSystem.TrySetUiState(uid, WiresUiKey.Key, new WiresBoundUserInterfaceState( clientList.ToArray(), statuses.Select(p => new StatusEntry(p.key, p.value)).ToArray(), - wires.BoardName, + Loc.GetString(wires.BoardName), wires.SerialNumber, wires.WireSeed), ui: ui); } @@ -743,7 +742,7 @@ private void TryDoWireAction(EntityUid target, EntityUid user, EntityUid toolEnt if (_toolTime > 0f) { - var args = new DoAfterArgs(user, _toolTime, new WireDoAfterEvent(action, id), target, target: target, used: toolEntity) + var args = new DoAfterArgs(EntityManager, user, _toolTime, new WireDoAfterEvent(action, id), target, target: target, used: toolEntity) { NeedHand = true, BreakOnDamage = true, diff --git a/Content.Server/Worldgen/Components/BiomeSelectionComponent.cs b/Content.Server/Worldgen/Components/BiomeSelectionComponent.cs index b82b8eb6b60..f6b4c82ebb6 100644 --- a/Content.Server/Worldgen/Components/BiomeSelectionComponent.cs +++ b/Content.Server/Worldgen/Components/BiomeSelectionComponent.cs @@ -9,7 +9,7 @@ namespace Content.Server.Worldgen.Components; /// [RegisterComponent] [Access(typeof(BiomeSelectionSystem))] -public sealed class BiomeSelectionComponent : Component +public sealed partial class BiomeSelectionComponent : Component { /// /// The list of biomes available to this selector. diff --git a/Content.Server/Worldgen/Components/Carvers/NoiseRangeCarverComponent.cs b/Content.Server/Worldgen/Components/Carvers/NoiseRangeCarverComponent.cs index 141d54c8df9..28724d20a49 100644 --- a/Content.Server/Worldgen/Components/Carvers/NoiseRangeCarverComponent.cs +++ b/Content.Server/Worldgen/Components/Carvers/NoiseRangeCarverComponent.cs @@ -10,19 +10,19 @@ namespace Content.Server.Worldgen.Components.Carvers; /// [RegisterComponent] [Access(typeof(NoiseRangeCarverSystem))] -public sealed class NoiseRangeCarverComponent : Component +public sealed partial class NoiseRangeCarverComponent : Component { /// /// The noise channel to use as a density controller. /// /// This noise channel should be mapped to exactly the range [0, 1] unless you want a lot of warnings in the log. [DataField("noiseChannel", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string NoiseChannel { get; } = default!; + public string NoiseChannel { get; private set; } = default!; /// /// The index of ranges in which to cut debris generation. /// [DataField("ranges", required: true)] - public List Ranges { get; } = default!; + public List Ranges { get; private set; } = default!; } diff --git a/Content.Server/Worldgen/Components/Debris/BlobFloorPlanBuilderComponent.cs b/Content.Server/Worldgen/Components/Debris/BlobFloorPlanBuilderComponent.cs index 70861bfca62..6d1fa5d9570 100644 --- a/Content.Server/Worldgen/Components/Debris/BlobFloorPlanBuilderComponent.cs +++ b/Content.Server/Worldgen/Components/Debris/BlobFloorPlanBuilderComponent.cs @@ -9,7 +9,7 @@ namespace Content.Server.Worldgen.Components.Debris; /// [RegisterComponent] [Access(typeof(BlobFloorPlanBuilderSystem))] -public sealed class BlobFloorPlanBuilderComponent : Component +public sealed partial class BlobFloorPlanBuilderComponent : Component { /// /// The probability that placing a floor tile will add up to three-four neighboring tiles as well. @@ -26,12 +26,12 @@ public sealed class BlobFloorPlanBuilderComponent : Component /// [DataField("floorTileset", required: true, customTypeSerializer: typeof(PrototypeIdListSerializer))] - public List FloorTileset { get; } = default!; + public List FloorTileset { get; private set; } = default!; /// /// The number of floor tiles to place when drawing the asteroid layout. /// [DataField("floorPlacements", required: true)] - public int FloorPlacements { get; } + public int FloorPlacements { get; private set; } } diff --git a/Content.Server/Worldgen/Components/Debris/DebrisFeaturePlacerControllerComponent.cs b/Content.Server/Worldgen/Components/Debris/DebrisFeaturePlacerControllerComponent.cs index 0a10a1360a2..ae61f0581e3 100644 --- a/Content.Server/Worldgen/Components/Debris/DebrisFeaturePlacerControllerComponent.cs +++ b/Content.Server/Worldgen/Components/Debris/DebrisFeaturePlacerControllerComponent.cs @@ -10,7 +10,7 @@ namespace Content.Server.Worldgen.Components.Debris; /// [RegisterComponent] [Access(typeof(DebrisFeaturePlacerSystem))] -public sealed class DebrisFeaturePlacerControllerComponent : Component +public sealed partial class DebrisFeaturePlacerControllerComponent : Component { /// /// Whether or not to clip debris that would spawn at a location that has a density of zero. @@ -38,6 +38,6 @@ public sealed class DebrisFeaturePlacerControllerComponent : Component /// The noise channel to use as a density controller. /// [DataField("densityNoiseChannel", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string DensityNoiseChannel { get; } = default!; + public string DensityNoiseChannel { get; private set; } = default!; } diff --git a/Content.Server/Worldgen/Components/Debris/NoiseDrivenDebrisSelectorComponent.cs b/Content.Server/Worldgen/Components/Debris/NoiseDrivenDebrisSelectorComponent.cs index 9690bc5f6e3..af4ef7f1cf0 100644 --- a/Content.Server/Worldgen/Components/Debris/NoiseDrivenDebrisSelectorComponent.cs +++ b/Content.Server/Worldgen/Components/Debris/NoiseDrivenDebrisSelectorComponent.cs @@ -12,7 +12,7 @@ namespace Content.Server.Worldgen.Components.Debris; /// [RegisterComponent] [Access(typeof(NoiseDrivenDebrisSelectorSystem))] -public sealed class NoiseDrivenDebrisSelectorComponent : Component +public sealed partial class NoiseDrivenDebrisSelectorComponent : Component { private EntitySpawnCollectionCache? _cache; @@ -39,6 +39,6 @@ public EntitySpawnCollectionCache CachedDebrisTable /// /// This noise channel should be mapped to exactly the range [0, 1] unless you want a lot of warnings in the log. [DataField("noiseChannel", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string NoiseChannel { get; } = default!; + public string NoiseChannel { get; private set; } = default!; } diff --git a/Content.Server/Worldgen/Components/Debris/OwnedDebrisComponent.cs b/Content.Server/Worldgen/Components/Debris/OwnedDebrisComponent.cs index 42bc50c5fcd..b2112779972 100644 --- a/Content.Server/Worldgen/Components/Debris/OwnedDebrisComponent.cs +++ b/Content.Server/Worldgen/Components/Debris/OwnedDebrisComponent.cs @@ -9,7 +9,7 @@ namespace Content.Server.Worldgen.Components.Debris; /// [RegisterComponent] [Access(typeof(DebrisFeaturePlacerSystem))] -public sealed class OwnedDebrisComponent : Component +public sealed partial class OwnedDebrisComponent : Component { /// /// The last location in the controller's internal structure for this debris. diff --git a/Content.Server/Worldgen/Components/Debris/SimpleDebrisSelectorComponent.cs b/Content.Server/Worldgen/Components/Debris/SimpleDebrisSelectorComponent.cs index 16b9f3973a1..5db9bad9255 100644 --- a/Content.Server/Worldgen/Components/Debris/SimpleDebrisSelectorComponent.cs +++ b/Content.Server/Worldgen/Components/Debris/SimpleDebrisSelectorComponent.cs @@ -9,7 +9,7 @@ namespace Content.Server.Worldgen.Components.Debris; /// [RegisterComponent] [Access(typeof(DebrisFeaturePlacerSystem))] -public sealed class SimpleDebrisSelectorComponent : Component +public sealed partial class SimpleDebrisSelectorComponent : Component { private EntitySpawnCollectionCache? _cache; diff --git a/Content.Server/Worldgen/Components/Debris/SimpleFloorPlanPopulatorComponent.cs b/Content.Server/Worldgen/Components/Debris/SimpleFloorPlanPopulatorComponent.cs index eab15c8c8db..4865773bf34 100644 --- a/Content.Server/Worldgen/Components/Debris/SimpleFloorPlanPopulatorComponent.cs +++ b/Content.Server/Worldgen/Components/Debris/SimpleFloorPlanPopulatorComponent.cs @@ -12,7 +12,7 @@ namespace Content.Server.Worldgen.Components.Debris; /// [RegisterComponent] [Access(typeof(SimpleFloorPlanPopulatorSystem))] -public sealed class SimpleFloorPlanPopulatorComponent : Component +public sealed partial class SimpleFloorPlanPopulatorComponent : Component { private Dictionary? _caches; diff --git a/Content.Server/Worldgen/Components/LoadedChunkComponent.cs b/Content.Server/Worldgen/Components/LoadedChunkComponent.cs index cebabaece6f..d2743ad4ab3 100644 --- a/Content.Server/Worldgen/Components/LoadedChunkComponent.cs +++ b/Content.Server/Worldgen/Components/LoadedChunkComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Worldgen.Components; /// [RegisterComponent] [Access(typeof(WorldControllerSystem))] -public sealed class LoadedChunkComponent : Component +public sealed partial class LoadedChunkComponent : Component { /// /// The current list of entities loading this chunk. diff --git a/Content.Server/Worldgen/Components/LocalityLoaderComponent.cs b/Content.Server/Worldgen/Components/LocalityLoaderComponent.cs index e0b0eb28655..1d37ab34c90 100644 --- a/Content.Server/Worldgen/Components/LocalityLoaderComponent.cs +++ b/Content.Server/Worldgen/Components/LocalityLoaderComponent.cs @@ -8,7 +8,7 @@ namespace Content.Server.Worldgen.Components; /// [RegisterComponent] [Access(typeof(LocalityLoaderSystem))] -public sealed class LocalityLoaderComponent : Component +public sealed partial class LocalityLoaderComponent : Component { /// /// The maximum distance an entity can be from the loader for it to not load. diff --git a/Content.Server/Worldgen/Components/NoiseIndexComponent.cs b/Content.Server/Worldgen/Components/NoiseIndexComponent.cs index ed6d44f5374..06d84d2f85f 100644 --- a/Content.Server/Worldgen/Components/NoiseIndexComponent.cs +++ b/Content.Server/Worldgen/Components/NoiseIndexComponent.cs @@ -8,7 +8,7 @@ namespace Content.Server.Worldgen.Components; /// [RegisterComponent] [Access(typeof(NoiseIndexSystem))] -public sealed class NoiseIndexComponent : Component +public sealed partial class NoiseIndexComponent : Component { /// /// An index of generators, to avoid having to recreate them every time a noise channel is used. diff --git a/Content.Server/Worldgen/Components/WorldChunkComponent.cs b/Content.Server/Worldgen/Components/WorldChunkComponent.cs index 4b5e294eb90..3a91c007564 100644 --- a/Content.Server/Worldgen/Components/WorldChunkComponent.cs +++ b/Content.Server/Worldgen/Components/WorldChunkComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Worldgen.Components; /// [RegisterComponent] [Access(typeof(WorldControllerSystem))] -public sealed class WorldChunkComponent : Component +public sealed partial class WorldChunkComponent : Component { /// /// The coordinates of the chunk, in chunk space. diff --git a/Content.Server/Worldgen/Components/WorldControllerComponent.cs b/Content.Server/Worldgen/Components/WorldControllerComponent.cs index 9d1bcc7ca26..63580e7541a 100644 --- a/Content.Server/Worldgen/Components/WorldControllerComponent.cs +++ b/Content.Server/Worldgen/Components/WorldControllerComponent.cs @@ -9,7 +9,7 @@ namespace Content.Server.Worldgen.Components; /// [RegisterComponent] [Access(typeof(WorldControllerSystem))] -public sealed class WorldControllerComponent : Component +public sealed partial class WorldControllerComponent : Component { /// /// The prototype to use for chunks on this world map. diff --git a/Content.Server/Worldgen/Components/WorldLoaderComponent.cs b/Content.Server/Worldgen/Components/WorldLoaderComponent.cs index 43c990cd270..e6bb7781e96 100644 --- a/Content.Server/Worldgen/Components/WorldLoaderComponent.cs +++ b/Content.Server/Worldgen/Components/WorldLoaderComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Worldgen.Components; /// [RegisterComponent] [Access(typeof(WorldControllerSystem))] -public sealed class WorldLoaderComponent : Component +public sealed partial class WorldLoaderComponent : Component { /// /// The radius in which the loader loads the world. diff --git a/Content.Server/Worldgen/Prototypes/BiomePrototype.cs b/Content.Server/Worldgen/Prototypes/BiomePrototype.cs index 5417c60fb9e..4f097d04e2e 100644 --- a/Content.Server/Worldgen/Prototypes/BiomePrototype.cs +++ b/Content.Server/Worldgen/Prototypes/BiomePrototype.cs @@ -23,7 +23,7 @@ public sealed class BiomePrototype : IPrototype, IInheritingPrototype /// [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// /// The valid ranges of noise values under which this biome can be picked. @@ -35,7 +35,7 @@ public sealed class BiomePrototype : IPrototype, IInheritingPrototype /// Higher priority biomes get picked before lower priority ones. /// [DataField("priority", required: true)] - public int Priority { get; } + public int Priority { get; private set; } /// /// The components that get added to the target map. diff --git a/Content.Server/Worldgen/Prototypes/NoiseChannelPrototype.cs b/Content.Server/Worldgen/Prototypes/NoiseChannelPrototype.cs index 8e495c2ad0a..67da4c4df18 100644 --- a/Content.Server/Worldgen/Prototypes/NoiseChannelPrototype.cs +++ b/Content.Server/Worldgen/Prototypes/NoiseChannelPrototype.cs @@ -15,68 +15,68 @@ public class NoiseChannelConfig /// The noise type used by the noise generator. /// [DataField("noiseType")] - public FastNoiseLite.NoiseType NoiseType { get; } = FastNoiseLite.NoiseType.Cellular; + public FastNoiseLite.NoiseType NoiseType { get; private set; } = FastNoiseLite.NoiseType.Cellular; /// /// The fractal type used by the noise generator. /// [DataField("fractalType")] - public FastNoiseLite.FractalType FractalType { get; } = FastNoiseLite.FractalType.FBm; + public FastNoiseLite.FractalType FractalType { get; private set; } = FastNoiseLite.FractalType.FBm; /// /// Multiplied by pi in code when used. /// [DataField("fractalLacunarityByPi")] - public float FractalLacunarityByPi { get; } = 2.0f / 3.0f; + public float FractalLacunarityByPi { get; private set; } = 2.0f / 3.0f; /// /// Ranges of values that get clamped down to the "clipped" value. /// [DataField("clippingRanges")] - public List ClippingRanges { get; } = new(); + public List ClippingRanges { get; private set; } = new(); /// /// The value clipped chunks are set to. /// [DataField("clippedValue")] - public float ClippedValue { get; } + public float ClippedValue { get; private set; } /// /// A value the output is multiplied by. /// [DataField("outputMultiplier")] - public float OutputMultiplier { get; } = 1.0f; + public float OutputMultiplier { get; private set; } = 1.0f; /// /// A value the input is multiplied by. /// [DataField("inputMultiplier")] - public float InputMultiplier { get; } = 1.0f; + public float InputMultiplier { get; private set; } = 1.0f; /// /// Remaps the output of the noise function from the range (-1, 1) to (0, 1). This is done before all other output /// transformations. /// [DataField("remapTo0Through1")] - public bool RemapTo0Through1 { get; } + public bool RemapTo0Through1 { get; private set; } /// /// For when the transformation you need is too complex to describe in YAML. /// [DataField("noisePostProcess")] - public NoisePostProcess? NoisePostProcess { get; } + public NoisePostProcess? NoisePostProcess { get; private set; } /// /// For when you need a complex transformation of the input coordinates. /// [DataField("noiseCoordinateProcess")] - public NoiseCoordinateProcess? NoiseCoordinateProcess { get; } + public NoiseCoordinateProcess? NoiseCoordinateProcess { get; private set; } /// /// The "center" of the range of values. Or the minimum if mapped 0 through 1. /// [DataField("minimum")] - public float Minimum { get; } + public float Minimum { get; private set; } } [Prototype("noiseChannel")] @@ -93,7 +93,7 @@ public sealed class NoiseChannelPrototype : NoiseChannelConfig, IPrototype, IInh /// [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; } /// @@ -154,7 +154,7 @@ public float Evaluate(Vector2 coords) /// A processing class that adjusts the input coordinate space to a noise channel. /// [ImplicitDataDefinitionForInheritors] -public abstract class NoiseCoordinateProcess +public abstract partial class NoiseCoordinateProcess { public abstract Vector2 Process(Vector2 inp); } @@ -163,7 +163,7 @@ public abstract class NoiseCoordinateProcess /// A processing class that adjusts the final result of the noise channel. /// [ImplicitDataDefinitionForInheritors] -public abstract class NoisePostProcess +public abstract partial class NoisePostProcess { public abstract float Process(float inp); } diff --git a/Content.Server/Worldgen/Prototypes/WorldgenConfigPrototype.cs b/Content.Server/Worldgen/Prototypes/WorldgenConfigPrototype.cs index 13408f5d94a..d6dda9fb747 100644 --- a/Content.Server/Worldgen/Prototypes/WorldgenConfigPrototype.cs +++ b/Content.Server/Worldgen/Prototypes/WorldgenConfigPrototype.cs @@ -12,13 +12,13 @@ public sealed class WorldgenConfigPrototype : IPrototype { /// [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// /// The components that get added to the target map. /// [DataField("components", required: true)] - public ComponentRegistry Components { get; } = default!; + public ComponentRegistry Components { get; private set; } = default!; //TODO: Get someone to make this a method on componentregistry that does it Correctly. /// diff --git a/Content.Server/Worldgen/Systems/WorldControllerSystem.cs b/Content.Server/Worldgen/Systems/WorldControllerSystem.cs index e05c76e013b..19c777e1ad6 100644 --- a/Content.Server/Worldgen/Systems/WorldControllerSystem.cs +++ b/Content.Server/Worldgen/Systems/WorldControllerSystem.cs @@ -1,7 +1,7 @@ using System.Linq; -using Content.Server.Ghost.Components; -using Content.Server.Mind.Components; using Content.Server.Worldgen.Components; +using Content.Shared.Ghost; +using Content.Shared.Mind.Components; using JetBrains.Annotations; using Robust.Server.GameObjects; using Robust.Shared.Map; @@ -17,6 +17,7 @@ public sealed class WorldControllerSystem : EntitySystem [Dependency] private readonly TransformSystem _xformSys = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly ILogManager _logManager = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; private const int PlayerLoadRadius = 2; @@ -231,8 +232,7 @@ private EntityUid CreateChunkEntity(Vector2i chunkCoords, EntityUid map, WorldCo { var chunk = Spawn(controller.ChunkProto, MapCoordinates.Nullspace); StartupChunkEntity(chunk, chunkCoords, map, controller); - var md = MetaData(chunk); - md.EntityName = $"Chunk {chunkCoords.X}/{chunkCoords.Y}"; + _metaData.SetEntityName(chunk, $"Chunk {chunkCoords.X}/{chunkCoords.Y}"); return chunk; } diff --git a/Content.Server/Xenoarchaeology/Equipment/Components/ActiveArtifactAnalyzerComponent.cs b/Content.Server/Xenoarchaeology/Equipment/Components/ActiveArtifactAnalyzerComponent.cs index f4b089636b5..6bd20b2bf4f 100644 --- a/Content.Server/Xenoarchaeology/Equipment/Components/ActiveArtifactAnalyzerComponent.cs +++ b/Content.Server/Xenoarchaeology/Equipment/Components/ActiveArtifactAnalyzerComponent.cs @@ -8,7 +8,7 @@ namespace Content.Server.Xenoarchaeology.Equipment.Components; /// in the process of scanning an artifact. /// [RegisterComponent] -public sealed class ActiveArtifactAnalyzerComponent : Component +public sealed partial class ActiveArtifactAnalyzerComponent : Component { /// /// When did the scanning start? diff --git a/Content.Server/Xenoarchaeology/Equipment/Components/ActiveScannedArtifactComponent.cs b/Content.Server/Xenoarchaeology/Equipment/Components/ActiveScannedArtifactComponent.cs index 3475e2ab03f..da6b35dab0a 100644 --- a/Content.Server/Xenoarchaeology/Equipment/Components/ActiveScannedArtifactComponent.cs +++ b/Content.Server/Xenoarchaeology/Equipment/Components/ActiveScannedArtifactComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Xenoarchaeology.Equipment.Components; /// being scanned by /// [RegisterComponent] -public sealed class ActiveScannedArtifactComponent : Component +public sealed partial class ActiveScannedArtifactComponent : Component { /// /// The scanner that is scanning this artifact diff --git a/Content.Server/Xenoarchaeology/Equipment/Components/AnalysisConsoleComponent.cs b/Content.Server/Xenoarchaeology/Equipment/Components/AnalysisConsoleComponent.cs index b03a4df25da..892e24495bb 100644 --- a/Content.Server/Xenoarchaeology/Equipment/Components/AnalysisConsoleComponent.cs +++ b/Content.Server/Xenoarchaeology/Equipment/Components/AnalysisConsoleComponent.cs @@ -9,7 +9,7 @@ namespace Content.Server.Xenoarchaeology.Equipment.Components; /// The console that is used for artifact analysis /// [RegisterComponent] -public sealed class AnalysisConsoleComponent : Component +public sealed partial class AnalysisConsoleComponent : Component { /// /// The analyzer entity the console is linked. @@ -22,7 +22,7 @@ public sealed class AnalysisConsoleComponent : Component /// The machine linking port for the analyzer /// [DataField("linkingPort", customTypeSerializer: typeof(PrototypeIdSerializer))] - public readonly string LinkingPort = "ArtifactAnalyzerSender"; + public string LinkingPort = "ArtifactAnalyzerSender"; /// /// The sound played when an artifact has points extracted. diff --git a/Content.Server/Xenoarchaeology/Equipment/Components/ArtifactAnalyzerComponent.cs b/Content.Server/Xenoarchaeology/Equipment/Components/ArtifactAnalyzerComponent.cs index d07819fd064..cea3b9fbf85 100644 --- a/Content.Server/Xenoarchaeology/Equipment/Components/ArtifactAnalyzerComponent.cs +++ b/Content.Server/Xenoarchaeology/Equipment/Components/ArtifactAnalyzerComponent.cs @@ -11,7 +11,7 @@ namespace Content.Server.Xenoarchaeology.Equipment.Components; /// in order to analyze artifacts and extract points. /// [RegisterComponent] -public sealed class ArtifactAnalyzerComponent : Component +public sealed partial class ArtifactAnalyzerComponent : Component { /// /// How long it takes to analyze an artifact @@ -45,17 +45,11 @@ public sealed class ArtifactAnalyzerComponent : Component [ViewVariables] public EntityUid? Console; - /// - /// All of the valid artifacts currently touching the analyzer. - /// - [ViewVariables] - public HashSet Contacts = new(); - [ViewVariables(VVAccess.ReadWrite)] public bool ReadyToPrint = false; [DataField("scanFinishedSound")] - public readonly SoundSpecifier ScanFinishedSound = new SoundPathSpecifier("/Audio/Machines/scan_finish.ogg"); + public SoundSpecifier ScanFinishedSound = new SoundPathSpecifier("/Audio/Machines/scan_finish.ogg"); #region Analysis Data [ViewVariables] diff --git a/Content.Server/Xenoarchaeology/Equipment/Components/BiasedArtifactComponent.cs b/Content.Server/Xenoarchaeology/Equipment/Components/BiasedArtifactComponent.cs index 9b42e96ffb5..16bd34d7eae 100644 --- a/Content.Server/Xenoarchaeology/Equipment/Components/BiasedArtifactComponent.cs +++ b/Content.Server/Xenoarchaeology/Equipment/Components/BiasedArtifactComponent.cs @@ -5,7 +5,7 @@ /// in a particular direction via the /// [RegisterComponent] -public sealed class BiasedArtifactComponent : Component +public sealed partial class BiasedArtifactComponent : Component { [ViewVariables] public EntityUid Provider; diff --git a/Content.Server/Xenoarchaeology/Equipment/Components/NodeScannerComponent.cs b/Content.Server/Xenoarchaeology/Equipment/Components/NodeScannerComponent.cs index c625ced2094..36cc5f830ef 100644 --- a/Content.Server/Xenoarchaeology/Equipment/Components/NodeScannerComponent.cs +++ b/Content.Server/Xenoarchaeology/Equipment/Components/NodeScannerComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Xenoarchaeology.Equipment.Components; [RegisterComponent] -public sealed class NodeScannerComponent : Component +public sealed partial class NodeScannerComponent : Component { } diff --git a/Content.Server/Xenoarchaeology/Equipment/Components/SuppressArtifactContainerComponent.cs b/Content.Server/Xenoarchaeology/Equipment/Components/SuppressArtifactContainerComponent.cs index 7f210f6efdf..c555f314ad7 100644 --- a/Content.Server/Xenoarchaeology/Equipment/Components/SuppressArtifactContainerComponent.cs +++ b/Content.Server/Xenoarchaeology/Equipment/Components/SuppressArtifactContainerComponent.cs @@ -4,7 +4,7 @@ /// Suppress artifact activation, when entity is placed inside this container. /// [RegisterComponent] -public sealed class SuppressArtifactContainerComponent : Component +public sealed partial class SuppressArtifactContainerComponent : Component { } diff --git a/Content.Server/Xenoarchaeology/Equipment/Components/TraversalDistorterComponent.cs b/Content.Server/Xenoarchaeology/Equipment/Components/TraversalDistorterComponent.cs index b029836c081..a7a58778ef5 100644 --- a/Content.Server/Xenoarchaeology/Equipment/Components/TraversalDistorterComponent.cs +++ b/Content.Server/Xenoarchaeology/Equipment/Components/TraversalDistorterComponent.cs @@ -8,7 +8,7 @@ namespace Content.Server.Xenoarchaeology.Equipment.Components; /// an artifact placed on it to move up/down /// [RegisterComponent] -public sealed class TraversalDistorterComponent : Component +public sealed partial class TraversalDistorterComponent : Component { [ViewVariables(VVAccess.ReadWrite)] public float BiasChance; diff --git a/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs b/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs index 47cf5f27664..49036fb19d8 100644 --- a/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs +++ b/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs @@ -10,6 +10,7 @@ using Content.Shared.Audio; using Content.Shared.DeviceLinking; using Content.Shared.DeviceLinking.Events; +using Content.Shared.Placeable; using Content.Shared.Popups; using Content.Shared.Research.Components; using Content.Shared.Xenoarchaeology.Equipment; @@ -18,7 +19,6 @@ using Robust.Server.GameObjects; using Robust.Server.Player; using Robust.Shared.Audio; -using Robust.Shared.Physics.Events; using Robust.Shared.Prototypes; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -45,7 +45,6 @@ public sealed class ArtifactAnalyzerSystem : EntitySystem /// public override void Initialize() { - SubscribeLocalEvent(OnScannedMoved); SubscribeLocalEvent(OnArtifactActivated); SubscribeLocalEvent(OnAnalyzeStart); @@ -54,8 +53,8 @@ public override void Initialize() SubscribeLocalEvent(OnUpgradeExamine); SubscribeLocalEvent(OnRefreshParts); - SubscribeLocalEvent(OnCollide); - SubscribeLocalEvent(OnEndCollide); + SubscribeLocalEvent(OnItemPlaced); + SubscribeLocalEvent(OnItemRemoved); SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnNewLink); @@ -107,22 +106,18 @@ public void ResetAnalyzer(EntityUid uid, ArtifactAnalyzerComponent? component = } /// - /// Goes through the current contacts on + /// Goes through the current entities on /// the analyzer and returns a valid artifact /// /// - /// + /// /// - private EntityUid? GetArtifactForAnalysis(EntityUid? uid, ArtifactAnalyzerComponent? component = null) + private EntityUid? GetArtifactForAnalysis(EntityUid? uid, ItemPlacerComponent? placer = null) { - if (uid == null) - return null; - - if (!Resolve(uid.Value, ref component)) + if (uid == null || !Resolve(uid.Value, ref placer)) return null; - var validEnts = component.Contacts.Where(HasComp).ToHashSet(); - return validEnts.FirstOrNull(); + return placer.PlacedEntities.FirstOrNull(); } /// @@ -205,11 +200,12 @@ private void UpdateUserInterface(EntityUid uid, AnalysisConsoleComponent? compon artifact = analyzer.LastAnalyzedArtifact; msg = GetArtifactScanMessage(analyzer); totalTime = analyzer.AnalysisDuration * analyzer.AnalysisDurationMulitplier; - canScan = analyzer.Contacts.Any(); + if (TryComp(component.AnalyzerEntity, out var placer)) + canScan = placer.PlacedEntities.Any(); canPrint = analyzer.ReadyToPrint; // the artifact that's actually on the scanner right now. - if (GetArtifactForAnalysis(component.AnalyzerEntity, analyzer) is { } current) + if (GetArtifactForAnalysis(component.AnalyzerEntity, placer) is { } current) points = _artifact.GetResearchPointValue(current); } var analyzerConnected = component.AnalyzerEntity != null; @@ -218,11 +214,11 @@ private void UpdateUserInterface(EntityUid uid, AnalysisConsoleComponent? compon var scanning = TryComp(component.AnalyzerEntity, out var active); var remaining = active != null ? _timing.CurTime - active.StartTime : TimeSpan.Zero; - var state = new AnalysisConsoleScanUpdateState(artifact, analyzerConnected, serverConnected, + var state = new AnalysisConsoleScanUpdateState(GetNetEntity(artifact), analyzerConnected, serverConnected, canScan, canPrint, msg, scanning, remaining, totalTime, points); var bui = _ui.GetUi(uid, ArtifactAnalzyerUiKey.Key); - UserInterfaceSystem.SetUiState(bui, state); + _ui.SetUiState(bui, state); } /// @@ -381,20 +377,6 @@ private void OnArtifactActivated(EntityUid uid, ActiveScannedArtifactComponent c CancelScan(uid); } - /// - /// Checks to make sure that the currently scanned artifact isn't moved off of the scanner - /// - private void OnScannedMoved(EntityUid uid, ActiveScannedArtifactComponent component, ref MoveEvent args) - { - if (!TryComp(component.Scanner, out var analyzer)) - return; - - if (analyzer.Contacts.Contains(uid)) - return; - - CancelScan(uid, component, analyzer); - } - /// /// Stops the current scan /// @@ -448,27 +430,16 @@ private void OnUpgradeExamine(EntityUid uid, ArtifactAnalyzerComponent component args.AddPercentageUpgrade("analyzer-artifact-component-upgrade-analysis", component.AnalysisDurationMulitplier); } - private void OnCollide(EntityUid uid, ArtifactAnalyzerComponent component, ref StartCollideEvent args) + private void OnItemPlaced(EntityUid uid, ArtifactAnalyzerComponent component, ref ItemPlacedEvent args) { - var otherEnt = args.OtherEntity; - - if (!HasComp(otherEnt)) - return; - - component.Contacts.Add(otherEnt); - - if (component.Console != null) + if (component.Console != null && Exists(component.Console)) UpdateUserInterface(component.Console.Value); } - private void OnEndCollide(EntityUid uid, ArtifactAnalyzerComponent component, ref EndCollideEvent args) + private void OnItemRemoved(EntityUid uid, ArtifactAnalyzerComponent component, ref ItemRemovedEvent args) { - var otherEnt = args.OtherEntity; - - if (!HasComp(otherEnt)) - return; - component.Contacts.Remove(otherEnt); - + // cancel the scan if the artifact moves off the analyzer + CancelScan(args.OtherEntity); if (component.Console != null && Exists(component.Console)) UpdateUserInterface(component.Console.Value); } diff --git a/Content.Server/Xenoarchaeology/Equipment/Systems/TraversalDistorterSystem.cs b/Content.Server/Xenoarchaeology/Equipment/Systems/TraversalDistorterSystem.cs index e4617efb1b8..5a1639de4c0 100644 --- a/Content.Server/Xenoarchaeology/Equipment/Systems/TraversalDistorterSystem.cs +++ b/Content.Server/Xenoarchaeology/Equipment/Systems/TraversalDistorterSystem.cs @@ -5,7 +5,7 @@ using Content.Server.Xenoarchaeology.XenoArtifacts; using Content.Shared.Examine; using Content.Shared.Interaction; -using Robust.Shared.Physics.Events; +using Content.Shared.Placeable; using Robust.Shared.Player; using Robust.Shared.Timing; @@ -13,8 +13,8 @@ namespace Content.Server.Xenoarchaeology.Equipment.Systems; public sealed class TraversalDistorterSystem : EntitySystem { - [Dependency] private readonly PopupSystem _popup = default!; [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly PopupSystem _popup = default!; /// public override void Initialize() @@ -26,8 +26,8 @@ public override void Initialize() SubscribeLocalEvent(OnRefreshParts); SubscribeLocalEvent(OnUpgradeExamine); - SubscribeLocalEvent(OnCollide); - SubscribeLocalEvent(OnEndCollide); + SubscribeLocalEvent(OnItemPlaced); + SubscribeLocalEvent(OnItemRemoved); } private void OnInit(EntityUid uid, TraversalDistorterComponent component, MapInitEvent args) @@ -88,24 +88,15 @@ private void OnUpgradeExamine(EntityUid uid, TraversalDistorterComponent compone args.AddPercentageUpgrade("traversal-distorter-upgrade-bias", component.BiasChance / component.BaseBiasChance); } - private void OnCollide(EntityUid uid, TraversalDistorterComponent component, ref StartCollideEvent args) + private void OnItemPlaced(EntityUid uid, TraversalDistorterComponent component, ref ItemPlacedEvent args) { - var otherEnt = args.OtherEntity; - - if (!HasComp(otherEnt)) - return; - - var bias = EnsureComp(otherEnt); + var bias = EnsureComp(args.OtherEntity); bias.Provider = uid; } - private void OnEndCollide(EntityUid uid, TraversalDistorterComponent component, ref EndCollideEvent args) + private void OnItemRemoved(EntityUid uid, TraversalDistorterComponent component, ref ItemRemovedEvent args) { var otherEnt = args.OtherEntity; - - if (!HasComp(otherEnt)) - return; - if (TryComp(otherEnt, out var bias) && bias.Provider == uid) RemComp(otherEnt, bias); } diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactComponent.cs index 72f5b4cd318..e1c9184d4f5 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Xenoarchaeology.XenoArtifacts; [RegisterComponent, Access(typeof(ArtifactSystem))] -public sealed class ArtifactComponent : Component +public sealed partial class ArtifactComponent : Component { /// /// Every node contained in the tree @@ -91,13 +91,15 @@ public sealed class ArtifactComponent : Component Volume = 3f } }; + + [DataField("activateActionEntity")] public EntityUid? ActivateActionEntity; } /// /// A single "node" of an artifact that contains various data about it. /// [DataDefinition] -public sealed class ArtifactNode : ICloneable +public sealed partial class ArtifactNode : ICloneable { /// /// A numeric id corresponding to each node. diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.Actions.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.Actions.cs index 69f9450a4fc..6c4089a2dbd 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.Actions.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.Actions.cs @@ -1,7 +1,5 @@ using Content.Server.Actions; using Content.Server.Popups; -using Content.Shared.Actions; -using Content.Shared.Actions.ActionTypes; using Content.Shared.Xenoarchaeology.XenoArtifacts; using Robust.Shared.Prototypes; @@ -12,32 +10,29 @@ public partial class ArtifactSystem [Dependency] private readonly ActionsSystem _actions = default!; [Dependency] private readonly PopupSystem _popup = default!; + [ValidatePrototypeId] private const string ArtifactActivateActionId = "ActionArtifactActivate"; + /// /// Used to add the artifact activation action (hehe), which lets sentient artifacts activate themselves, /// either through admemery or the sentience effect. /// public void InitializeActions() { - SubscribeLocalEvent(OnStartup); + SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnRemove); SubscribeLocalEvent(OnSelfActivate); } - private void OnStartup(EntityUid uid, ArtifactComponent component, ComponentStartup args) + private void OnMapInit(EntityUid uid, ArtifactComponent component, MapInitEvent args) { - if (_prototype.TryIndex("ArtifactActivate", out var proto)) - { - _actions.AddAction(uid, new InstantAction(proto), null); - } + RandomizeArtifact(uid, component); + _actions.AddAction(uid, ref component.ActivateActionEntity, ArtifactActivateActionId); } private void OnRemove(EntityUid uid, ArtifactComponent component, ComponentRemove args) { - if (_prototype.TryIndex("ArtifactActivate", out var proto)) - { - _actions.RemoveAction(uid, new InstantAction(proto)); - } + _actions.RemoveAction(uid, component.ActivateActionEntity); } private void OnSelfActivate(EntityUid uid, ArtifactComponent component, ArtifactSelfActivateEvent args) @@ -52,4 +47,3 @@ private void OnSelfActivate(EntityUid uid, ArtifactComponent component, Artifact args.Handled = true; } } - diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.Commands.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.Commands.cs index 37f974f6b0a..649a7a34f16 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.Commands.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.Commands.cs @@ -25,7 +25,7 @@ private void ForceArtifactNode(IConsoleShell shell, string argstr, string[] args if (args.Length != 2) shell.WriteError("Argument length must be 2"); - if (!EntityUid.TryParse(args[0], out var uid) || ! int.TryParse(args[1], out var id)) + if (!NetEntity.TryParse(args[0], out var uidNet) || !TryGetEntity(uidNet, out var uid) || !int.TryParse(args[1], out var id)) return; if (!TryComp(uid, out var artifact)) @@ -33,13 +33,13 @@ private void ForceArtifactNode(IConsoleShell shell, string argstr, string[] args if (artifact.NodeTree.FirstOrDefault(n => n.Id == id) is { } node) { - EnterNode(uid, ref node); + EnterNode(uid.Value, ref node); } } private CompletionResult ForceArtifactNodeCompletions(IConsoleShell shell, string[] args) { - if (args.Length == 2 && EntityUid.TryParse(args[0], out var uid)) + if (args.Length == 2 && NetEntity.TryParse(args[0], out var uidNet) && TryGetEntity(uidNet, out var uid)) { if (TryComp(uid, out var artifact)) { @@ -56,13 +56,13 @@ private void GetArtifactMaxValue(IConsoleShell shell, string argstr, string[] ar if (args.Length != 1) shell.WriteError("Argument length must be 1"); - if (!EntityUid.TryParse(args[0], out var uid)) + if (!NetEntity.TryParse(args[0], out var uidNet) || !TryGetEntity(uidNet, out var uid)) return; if (!TryComp(uid, out var artifact)) return; - var pointSum = GetResearchPointValue(uid, artifact, true); - shell.WriteLine($"Max point value for {ToPrettyString(uid)} with {artifact.NodeTree.Count} nodes: {pointSum}"); + var pointSum = GetResearchPointValue(uid.Value, artifact, true); + shell.WriteLine($"Max point value for {ToPrettyString(uid.Value)} with {artifact.NodeTree.Count} nodes: {pointSum}"); } } diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs index 573fa36a269..0791924caaf 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs @@ -6,12 +6,12 @@ using Content.Server.Xenoarchaeology.Equipment.Components; using Content.Server.Xenoarchaeology.XenoArtifacts.Events; using Content.Server.Xenoarchaeology.XenoArtifacts.Triggers.Components; +using Content.Shared.CCVar; using Content.Shared.Xenoarchaeology.XenoArtifacts; using JetBrains.Annotations; +using Robust.Shared.Configuration; using Robust.Shared.Random; using Robust.Shared.Timing; -using Robust.Shared.Configuration; -using Content.Shared.CCVar; namespace Content.Server.Xenoarchaeology.XenoArtifacts; @@ -30,7 +30,6 @@ public override void Initialize() _sawmill = Logger.GetSawmill("artifact"); - SubscribeLocalEvent(OnInit); SubscribeLocalEvent(GetPrice); SubscribeLocalEvent(OnRoundEnd); @@ -38,11 +37,6 @@ public override void Initialize() InitializeActions(); } - private void OnInit(EntityUid uid, ArtifactComponent component, MapInitEvent args) - { - RandomizeArtifact(uid, component); - } - /// /// Calculates the price of an artifact based on /// how many nodes have been unlocked/triggered diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/ChargeBatteryArtifactComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/ChargeBatteryArtifactComponent.cs index cb2c226f6ac..a46dd9e8135 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/ChargeBatteryArtifactComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/ChargeBatteryArtifactComponent.cs @@ -4,7 +4,7 @@ /// This is used for recharging all nearby batteries when activated /// [RegisterComponent] -public sealed class ChargeBatteryArtifactComponent : Component +public sealed partial class ChargeBatteryArtifactComponent : Component { /// /// The radius of entities that will be affected diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/ChemicalPuddleArtifactComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/ChemicalPuddleArtifactComponent.cs index ad75e1b95d8..1e40807f6ea 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/ChemicalPuddleArtifactComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/ChemicalPuddleArtifactComponent.cs @@ -12,7 +12,7 @@ namespace Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Components; /// random chemicals upon being triggered. /// [RegisterComponent, Access(typeof(ChemicalPuddleArtifactSystem))] -public sealed class ChemicalPuddleArtifactComponent : Component +public sealed partial class ChemicalPuddleArtifactComponent : Component { /// /// The solution where all the chemicals are stored diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/DamageNearbyArtifactComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/DamageNearbyArtifactComponent.cs index 530f730687b..fb85446400c 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/DamageNearbyArtifactComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/DamageNearbyArtifactComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Components; /// When activated, damages nearby entities. /// [RegisterComponent] -public sealed class DamageNearbyArtifactComponent : Component +public sealed partial class DamageNearbyArtifactComponent : Component { /// /// The radius of entities that will be affected diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/EmpArtifactComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/EmpArtifactComponent.cs index cea776f05de..d00e65e7c6d 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/EmpArtifactComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/EmpArtifactComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Components; /// [RegisterComponent] [Access(typeof(EmpArtifactSystem))] -public sealed class EmpArtifactComponent : Component +public sealed partial class EmpArtifactComponent : Component { [DataField("range"), ViewVariables(VVAccess.ReadWrite)] public float Range = 4f; diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/FoamArtifactComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/FoamArtifactComponent.cs index ec4e491f1a2..e455c319ca1 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/FoamArtifactComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/FoamArtifactComponent.cs @@ -8,7 +8,7 @@ namespace Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Components; /// Generates foam from the artifact when activated /// [RegisterComponent, Access(typeof(FoamArtifactSystem))] -public sealed class FoamArtifactComponent : Component +public sealed partial class FoamArtifactComponent : Component { /// /// The list of reagents that will randomly be picked from diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/GasArtifactComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/GasArtifactComponent.cs index 4d9d9b5ac9e..a8c7a3dba36 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/GasArtifactComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/GasArtifactComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Components; /// Spawn a random gas with random temperature when artifact activated. /// [RegisterComponent] -public sealed class GasArtifactComponent : Component +public sealed partial class GasArtifactComponent : Component { /// /// Gas that will be spawned when artifact activated. diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/IgniteArtifactComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/IgniteArtifactComponent.cs index 100fb15b63e..436790a16f0 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/IgniteArtifactComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/IgniteArtifactComponent.cs @@ -4,7 +4,7 @@ /// Artifact that ignites surrounding entities when triggered. /// [RegisterComponent] -public sealed class IgniteArtifactComponent : Component +public sealed partial class IgniteArtifactComponent : Component { [DataField("range")] public float Range = 2f; diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/KnockArtifactComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/KnockArtifactComponent.cs index ee4b804827b..4db2f8ea5ed 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/KnockArtifactComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/KnockArtifactComponent.cs @@ -4,7 +4,7 @@ /// This is used for using the "knock" spell when the artifact is activated /// [RegisterComponent] -public sealed class KnockArtifactComponent : Component +public sealed partial class KnockArtifactComponent : Component { /// /// The range of the spell diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/LightFlickerArtifactComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/LightFlickerArtifactComponent.cs index 9f8a7a304fb..24578d722d5 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/LightFlickerArtifactComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/LightFlickerArtifactComponent.cs @@ -4,7 +4,7 @@ /// Flickers all the lights within a certain radius. /// [RegisterComponent] -public sealed class LightFlickerArtifactComponent : Component +public sealed partial class LightFlickerArtifactComponent : Component { /// /// Lights within this radius will be flickered on activation diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/PhasingArtifactComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/PhasingArtifactComponent.cs index 7369060ed47..4857233b65e 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/PhasingArtifactComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/PhasingArtifactComponent.cs @@ -5,6 +5,6 @@ /// and such. /// [RegisterComponent] -public sealed class PhasingArtifactComponent : Component +public sealed partial class PhasingArtifactComponent : Component { } diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/RandomInstrumentArtifactComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/RandomInstrumentArtifactComponent.cs index b268f9907c1..28e91584ce2 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/RandomInstrumentArtifactComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/RandomInstrumentArtifactComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Components; [RegisterComponent] -public sealed class RandomInstrumentArtifactComponent : Component +public sealed partial class RandomInstrumentArtifactComponent : Component { } diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/RandomTeleportArtifactComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/RandomTeleportArtifactComponent.cs index 539af03d5fc..d2be32e95c8 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/RandomTeleportArtifactComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/RandomTeleportArtifactComponent.cs @@ -5,7 +5,7 @@ /// to a random position within a certain radius /// [RegisterComponent] -public sealed class RandomTeleportArtifactComponent : Component +public sealed partial class RandomTeleportArtifactComponent : Component { /// /// The max distance that the artifact will teleport. diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/ShuffleArtifactComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/ShuffleArtifactComponent.cs index aac7a0fe285..4b712135f24 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/ShuffleArtifactComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/ShuffleArtifactComponent.cs @@ -5,7 +5,7 @@ /// within a certain radius. /// [RegisterComponent] -public sealed class ShuffleArtifactComponent : Component +public sealed partial class ShuffleArtifactComponent : Component { [DataField("radius")] public float Radius = 7.5f; diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/SpawnArtifactComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/SpawnArtifactComponent.cs index 6c3689f6264..6fcd8b3f8bc 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/SpawnArtifactComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/SpawnArtifactComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Components; /// It could be an angry mob or some random item. /// [RegisterComponent] -public sealed class SpawnArtifactComponent : Component +public sealed partial class SpawnArtifactComponent : Component { [DataField("spawns")] public List? Spawns; diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/TelepathicArtifactComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/TelepathicArtifactComponent.cs index 523fb43fde4..a7073a743a5 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/TelepathicArtifactComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/TelepathicArtifactComponent.cs @@ -5,7 +5,7 @@ namespace Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Components; /// Thoughts are shown as popups and unique for each player. /// [RegisterComponent] -public sealed class TelepathicArtifactComponent : Component +public sealed partial class TelepathicArtifactComponent : Component { /// /// Loc string ids of telepathic messages. diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/TemperatureArtifactComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/TemperatureArtifactComponent.cs index c55ef6abbcd..0988617cdc7 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/TemperatureArtifactComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/TemperatureArtifactComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Components; /// Change atmospherics temperature until it reach target. /// [RegisterComponent] -public sealed class TemperatureArtifactComponent : Component +public sealed partial class TemperatureArtifactComponent : Component { [DataField("targetTemp"), ViewVariables(VVAccess.ReadWrite)] public float TargetTemperature = Atmospherics.T0C; diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/ThrowArtifactComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/ThrowArtifactComponent.cs index f3150576dc0..0c273922082 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/ThrowArtifactComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/ThrowArtifactComponent.cs @@ -5,7 +5,7 @@ /// Also pries nearby tiles. /// [RegisterComponent] -public sealed class ThrowArtifactComponent : Component +public sealed partial class ThrowArtifactComponent : Component { /// /// How close do you have to be to get yeeted? diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/TriggerArtifactComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/TriggerArtifactComponent.cs index f706b3b0d07..9194cde7b1d 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/TriggerArtifactComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Components/TriggerArtifactComponent.cs @@ -4,7 +4,7 @@ /// This is used for an artifact that triggers when activated. /// [RegisterComponent] -public sealed class TriggerArtifactComponent : Component +public sealed partial class TriggerArtifactComponent : Component { } diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/KnockArtifactSystem.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/KnockArtifactSystem.cs index 4554ff94b2b..0245b220a33 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/KnockArtifactSystem.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/KnockArtifactSystem.cs @@ -1,6 +1,6 @@ -using Content.Server.Magic.Events; -using Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Components; +using Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Components; using Content.Server.Xenoarchaeology.XenoArtifacts.Events; +using Content.Shared.Magic.Events; namespace Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Systems; diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/ThrowArtifactSystem.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/ThrowArtifactSystem.cs index 55159feebbf..85783b552da 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/ThrowArtifactSystem.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/ThrowArtifactSystem.cs @@ -2,9 +2,12 @@ using Content.Server.Maps; using Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Components; using Content.Server.Xenoarchaeology.XenoArtifacts.Events; +using Content.Shared.Ghost; using Content.Shared.Maps; +using Content.Shared.Physics; using Content.Shared.Throwing; using Robust.Shared.Map; +using Robust.Shared.Physics.Components; using Robust.Shared.Random; namespace Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Systems; @@ -41,8 +44,13 @@ private void OnActivated(EntityUid uid, ThrowArtifactComponent component, Artifa } var lookup = _lookup.GetEntitiesInRange(uid, component.Range, LookupFlags.Dynamic | LookupFlags.Sundries); + var physQuery = GetEntityQuery(); foreach (var ent in lookup) { + if (physQuery.TryGetComponent(ent, out var phys) + && (phys.CollisionMask & (int) CollisionGroup.GhostImpassable) != 0) + continue; + var tempXform = Transform(ent); var foo = tempXform.MapPosition.Position - xform.MapPosition.Position; diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactAnchorTriggerComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactAnchorTriggerComponent.cs index 3855bdc4ac0..3b2190debd9 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactAnchorTriggerComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactAnchorTriggerComponent.cs @@ -7,7 +7,7 @@ /// Not every trigger can be a winner /// [RegisterComponent] -public sealed class ArtifactAnchorTriggerComponent : Component +public sealed partial class ArtifactAnchorTriggerComponent : Component { } diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactDamageTriggerComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactDamageTriggerComponent.cs index d442d5d4302..2f5ac6de811 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactDamageTriggerComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactDamageTriggerComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Xenoarchaeology.XenoArtifacts.Triggers.Components; /// Triggers when a certain threshold of damage of certain types is reached /// [RegisterComponent] -public sealed class ArtifactDamageTriggerComponent : Component +public sealed partial class ArtifactDamageTriggerComponent : Component { /// /// What damage types are accumulated for the trigger? diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactDeathTriggerComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactDeathTriggerComponent.cs index 797583a8a08..a9d4d1af481 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactDeathTriggerComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactDeathTriggerComponent.cs @@ -4,7 +4,7 @@ /// Triggers when a nearby entity dies /// [RegisterComponent] -public sealed class ArtifactDeathTriggerComponent : Component +public sealed partial class ArtifactDeathTriggerComponent : Component { /// /// How close to the death the artifact has to be for it to trigger. diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactElectricityTriggerComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactElectricityTriggerComponent.cs index 110a3ff4e5d..4046d8c4d8b 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactElectricityTriggerComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactElectricityTriggerComponent.cs @@ -5,7 +5,7 @@ /// It could be connected MV cables, stun baton or multi tool. /// [RegisterComponent] -public sealed class ArtifactElectricityTriggerComponent : Component +public sealed partial class ArtifactElectricityTriggerComponent : Component { /// /// How much power should artifact receive to operate. diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactExamineTriggerComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactExamineTriggerComponent.cs index a494b954682..ac669970de9 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactExamineTriggerComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactExamineTriggerComponent.cs @@ -4,7 +4,7 @@ /// Triggers when the artifact is examined. /// [RegisterComponent] -public sealed class ArtifactExamineTriggerComponent : Component +public sealed partial class ArtifactExamineTriggerComponent : Component { } diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactGasTriggerComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactGasTriggerComponent.cs index 30300f1084f..8762637d520 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactGasTriggerComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactGasTriggerComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Xenoarchaeology.XenoArtifacts.Triggers.Components; /// Activates artifact when it surrounded by certain gas. /// [RegisterComponent] -public sealed class ArtifactGasTriggerComponent : Component +public sealed partial class ArtifactGasTriggerComponent : Component { /// /// List of possible activation gases to pick on startup. diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactHeatTriggerComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactHeatTriggerComponent.cs index fecbdd7ca33..0af42007808 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactHeatTriggerComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactHeatTriggerComponent.cs @@ -8,7 +8,7 @@ /// has contacted with a hot object (lit welder, lighter, etc). /// [RegisterComponent] -public sealed class ArtifactHeatTriggerComponent : Component +public sealed partial class ArtifactHeatTriggerComponent : Component { /// /// Minimal surrounding gas temperature to trigger artifact. diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactInteractionTriggerComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactInteractionTriggerComponent.cs index b5c08cc4c41..e2f00f9ebd8 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactInteractionTriggerComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactInteractionTriggerComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Xenoarchaeology.XenoArtifacts.Triggers.Components; /// Activate artifact by touching, attacking or pulling it. /// [RegisterComponent] -public sealed class ArtifactInteractionTriggerComponent : Component +public sealed partial class ArtifactInteractionTriggerComponent : Component { /// /// Should artifact be activated just by touching with empty hand? diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactLandTriggerComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactLandTriggerComponent.cs index 700b162635d..b8be1b196fc 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactLandTriggerComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactLandTriggerComponent.cs @@ -4,6 +4,6 @@ /// Triggers when the artifact lands after being thrown. /// [RegisterComponent] -public sealed class ArtifactLandTriggerComponent : Component +public sealed partial class ArtifactLandTriggerComponent : Component { } diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactMagnetTriggerComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactMagnetTriggerComponent.cs index f29f0576879..6e7bb43e8b2 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactMagnetTriggerComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactMagnetTriggerComponent.cs @@ -4,7 +4,7 @@ /// Triggers when the salvage magnet is activated /// [RegisterComponent] -public sealed class ArtifactMagnetTriggerComponent : Component +public sealed partial class ArtifactMagnetTriggerComponent : Component { /// /// how close to the magnet do you have to be? diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactMicrowaveTriggerComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactMicrowaveTriggerComponent.cs index 038c7f4a1ba..6270e4d826e 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactMicrowaveTriggerComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactMicrowaveTriggerComponent.cs @@ -4,6 +4,6 @@ /// Triggers when an item artifact is microwaved. /// [RegisterComponent] -public sealed class ArtifactMicrowaveTriggerComponent : Component +public sealed partial class ArtifactMicrowaveTriggerComponent : Component { } diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactMusicTriggerComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactMusicTriggerComponent.cs index c0c5bd9a7f7..1a67d5e446a 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactMusicTriggerComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactMusicTriggerComponent.cs @@ -4,7 +4,7 @@ /// Triggers when an instrument is played nearby /// [RegisterComponent] -public sealed class ArtifactMusicTriggerComponent : Component +public sealed partial class ArtifactMusicTriggerComponent : Component { /// /// how close does the artifact have to be to the instrument to activate diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactPressureTriggerComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactPressureTriggerComponent.cs index e28169b6b57..8a7d37cfb11 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactPressureTriggerComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactPressureTriggerComponent.cs @@ -4,7 +4,7 @@ /// Triggers when a certain pressure threshold is hit /// [RegisterComponent] -public sealed class ArtifactPressureTriggerComponent : Component +public sealed partial class ArtifactPressureTriggerComponent : Component { /// /// The lower-end pressure threshold diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactTimerTriggerComponent.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactTimerTriggerComponent.cs index 0bd94cb8394..bab364afbb9 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactTimerTriggerComponent.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactTimerTriggerComponent.cs @@ -5,7 +5,7 @@ /// Doesn't used for random artifacts, can be spawned by admins. /// [RegisterComponent] -public sealed class ArtifactTimerTriggerComponent : Component +public sealed partial class ArtifactTimerTriggerComponent : Component { /// /// Time between artifact activation attempts. diff --git a/Content.Server/Zombies/IncurableZombieComponent.cs b/Content.Server/Zombies/IncurableZombieComponent.cs index 79c1af55299..26958656909 100644 --- a/Content.Server/Zombies/IncurableZombieComponent.cs +++ b/Content.Server/Zombies/IncurableZombieComponent.cs @@ -4,7 +4,7 @@ /// This is used for a zombie that cannot be cured by any methods. /// [RegisterComponent] -public sealed class IncurableZombieComponent : Component +public sealed partial class IncurableZombieComponent : Component { } diff --git a/Content.Server/Zombies/PendingZombieComponent.cs b/Content.Server/Zombies/PendingZombieComponent.cs index 929c702ec49..fb3d6debcd0 100644 --- a/Content.Server/Zombies/PendingZombieComponent.cs +++ b/Content.Server/Zombies/PendingZombieComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Zombies; /// Temporary because diseases suck. /// [RegisterComponent] -public sealed class PendingZombieComponent : Component +public sealed partial class PendingZombieComponent : Component { /// /// Damage dealt every second to infected individuals. diff --git a/Content.Server/Zombies/ZombieImmuneComponent.cs b/Content.Server/Zombies/ZombieImmuneComponent.cs index 1a8517d2581..5f8ea625d85 100644 --- a/Content.Server/Zombies/ZombieImmuneComponent.cs +++ b/Content.Server/Zombies/ZombieImmuneComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Zombies; [RegisterComponent] -public sealed class ZombieImmuneComponent : Component +public sealed partial class ZombieImmuneComponent : Component { //still no } diff --git a/Content.Server/Zombies/ZombieSystem.Transform.cs b/Content.Server/Zombies/ZombieSystem.Transform.cs index d979639f886..5da7c6e8cd7 100644 --- a/Content.Server/Zombies/ZombieSystem.Transform.cs +++ b/Content.Server/Zombies/ZombieSystem.Transform.cs @@ -6,8 +6,12 @@ using Content.Server.Humanoid; using Content.Server.IdentityManagement; using Content.Server.Inventory; +using Content.Server.Mind; using Content.Server.Mind.Commands; -using Content.Server.Mind.Components; +using Content.Server.NPC; +using Content.Server.NPC.Components; +using Content.Server.NPC.HTN; +using Content.Server.NPC.Systems; using Content.Server.Nutrition.Components; using Content.Server.Roles; using Content.Server.Speech.Components; @@ -16,11 +20,6 @@ using Content.Shared.Damage; using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; -using Content.Server.Mind; -using Content.Server.NPC; -using Content.Server.NPC.Components; -using Content.Server.NPC.HTN; -using Content.Server.NPC.Systems; using Content.Shared.Humanoid; using Content.Shared.Mobs; using Content.Shared.Mobs.Components; @@ -33,7 +32,6 @@ using Content.Shared.Weapons.Melee; using Content.Shared.Zombies; using Robust.Shared.Audio; -using System.Linq; namespace Content.Server.Zombies { @@ -55,6 +53,7 @@ public sealed partial class ZombieSystem [Dependency] private readonly SharedCombatModeSystem _combat = default!; [Dependency] private readonly IChatManager _chatMan = default!; [Dependency] private readonly MindSystem _mind = default!; + [Dependency] private readonly SharedRoleSystem _roles = default!; [Dependency] private readonly MobThresholdSystem _mobThreshold = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; @@ -106,8 +105,8 @@ public void ZombifyEntity(EntityUid target, MobStateComponent? mobState = null) //This is needed for stupid entities that fuck up combat mode component //in an attempt to make an entity not attack. This is the easiest way to do it. - RemComp(target); - var combat = AddComp(target); + var combat = EnsureComp(target); + _combat.SetCanDisarm(target, false, combat); _combat.SetInCombatMode(target, true, combat); //This is the actual damage of the zombie. We assign the visual appearance @@ -133,12 +132,15 @@ public void ZombifyEntity(EntityUid target, MobStateComponent? mobState = null) { //store some values before changing them in case the humanoid get cloned later zombiecomp.BeforeZombifiedSkinColor = huApComp.SkinColor; + zombiecomp.BeforeZombifiedEyeColor = huApComp.EyeColor; zombiecomp.BeforeZombifiedCustomBaseLayers = new(huApComp.CustomBaseLayers); if (TryComp(target, out var stream)) zombiecomp.BeforeZombifiedBloodReagent = stream.BloodReagent; _humanoidAppearance.SetSkinColor(target, zombiecomp.SkinColor, verify: false, humanoid: huApComp); - _humanoidAppearance.SetBaseLayerColor(target, HumanoidVisualLayers.Eyes, zombiecomp.EyeColor, humanoid: huApComp); + + // Messing with the eye layer made it vanish upon cloning, and also it didn't even appear right + huApComp.EyeColor = zombiecomp.EyeColor; // this might not resync on clone? _humanoidAppearance.SetBaseLayerId(target, HumanoidVisualLayers.Tail, zombiecomp.BaseLayerExternal, humanoid: huApComp); @@ -215,11 +217,11 @@ public void ZombifyEntity(EntityUid target, MobStateComponent? mobState = null) _identity.QueueIdentityUpdate(target); //He's gotta have a mind - var mindComp = EnsureComp(target); - if (_mind.TryGetMind(target, out var mind, mindComp) && _mind.TryGetSession(mind, out var session)) + var hasMind = _mind.TryGetMind(target, out var mindId, out _); + if (hasMind && _mind.TryGetSession(mindId, out var session)) { //Zombie role for player manifest - _mind.AddRole(mind, new ZombieRole(mind, _protoManager.Index(zombiecomp.ZombieRoleId))); + _roles.MindAddRole(mindId, new ZombieRoleComponent { PrototypeId = zombiecomp.ZombieRoleId }); //Greeting message for new bebe zombers _chatMan.DispatchServerMessage(session, Loc.GetString("zombie-infection-greeting")); @@ -235,7 +237,7 @@ public void ZombifyEntity(EntityUid target, MobStateComponent? mobState = null) _npc.WakeNPC(target, htn); } - if (!HasComp(target) && !mindComp.HasMind) //this specific component gives build test trouble so pop off, ig + if (!HasComp(target) && !hasMind) //this specific component gives build test trouble so pop off, ig { //yet more hardcoding. Visit zombie.ftl for more information. var ghostRole = EnsureComp(target); diff --git a/Content.Server/Zombies/ZombieSystem.cs b/Content.Server/Zombies/ZombieSystem.cs index 659bc164147..0d51da03ae8 100644 --- a/Content.Server/Zombies/ZombieSystem.cs +++ b/Content.Server/Zombies/ZombieSystem.cs @@ -4,13 +4,14 @@ using Content.Server.Chat.Systems; using Content.Server.Cloning; using Content.Server.Drone.Components; -using Content.Server.Inventory; -using Content.Shared.Bed.Sleep; using Content.Server.Emoting.Systems; -using Content.Server.Mind; +using Content.Server.Inventory; using Content.Server.Speech.EntitySystems; +using Content.Shared.Bed.Sleep; using Content.Shared.Damage; +using Content.Shared.Humanoid; using Content.Shared.Inventory; +using Content.Shared.Mind; using Content.Shared.Mobs; using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; @@ -256,7 +257,11 @@ public bool UnZombify(EntityUid source, EntityUid target, ZombieComponent? zombi _humanoidAppearance.SetBaseLayerColor(target, layer, info.Color); _humanoidAppearance.SetBaseLayerId(target, layer, info.ID); } - _humanoidAppearance.SetSkinColor(target, zombiecomp.BeforeZombifiedSkinColor); + if(TryComp(target, out var appcomp)) + { + appcomp.EyeColor = zombiecomp.BeforeZombifiedEyeColor; + } + _humanoidAppearance.SetSkinColor(target, zombiecomp.BeforeZombifiedSkinColor, false); _bloodstream.ChangeBloodReagent(target, zombiecomp.BeforeZombifiedBloodReagent); _metaData.SetEntityName(target, zombiecomp.BeforeZombifiedEntityName); diff --git a/Content.Server/Zombies/ZombifyOnDeathComponent.cs b/Content.Server/Zombies/ZombifyOnDeathComponent.cs index 793e356eeb9..dff17c4613a 100644 --- a/Content.Server/Zombies/ZombifyOnDeathComponent.cs +++ b/Content.Server/Zombies/ZombifyOnDeathComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Zombies { [RegisterComponent] - public sealed class ZombifyOnDeathComponent : Component + public sealed partial class ZombifyOnDeathComponent : Component { //this is not the component you are looking for } diff --git a/Content.Shared/Access/AccessGroupPrototype.cs b/Content.Shared/Access/AccessGroupPrototype.cs index 67da25c29e7..f32c8ffbca6 100644 --- a/Content.Shared/Access/AccessGroupPrototype.cs +++ b/Content.Shared/Access/AccessGroupPrototype.cs @@ -12,7 +12,7 @@ namespace Content.Shared.Access; public sealed class AccessGroupPrototype : IPrototype { [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [DataField("tags", required: true, customTypeSerializer: typeof(PrototypeIdHashSetSerializer))] public HashSet Tags = default!; diff --git a/Content.Shared/Access/AccessLevelPrototype.cs b/Content.Shared/Access/AccessLevelPrototype.cs index e5b4f0bfe15..4d3e4884b6b 100644 --- a/Content.Shared/Access/AccessLevelPrototype.cs +++ b/Content.Shared/Access/AccessLevelPrototype.cs @@ -10,7 +10,7 @@ public sealed class AccessLevelPrototype : IPrototype { [ViewVariables] [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// /// The player-visible name of the access level, in the ID card console and such. diff --git a/Content.Shared/Access/Components/AccessOverriderComponent.cs b/Content.Shared/Access/Components/AccessOverriderComponent.cs index 044ce23497a..459cc24f0ca 100644 --- a/Content.Shared/Access/Components/AccessOverriderComponent.cs +++ b/Content.Shared/Access/Components/AccessOverriderComponent.cs @@ -9,7 +9,7 @@ namespace Content.Shared.Access.Components; [RegisterComponent, NetworkedComponent] [Access(typeof(SharedAccessOverriderSystem))] -public sealed class AccessOverriderComponent : Component +public sealed partial class AccessOverriderComponent : Component { public static string PrivilegedIdCardSlotId = "AccessOverrider-privilegedId"; diff --git a/Content.Shared/Access/Components/AccessReaderComponent.cs b/Content.Shared/Access/Components/AccessReaderComponent.cs index c3ed9eeb17d..796646c83c2 100644 --- a/Content.Shared/Access/Components/AccessReaderComponent.cs +++ b/Content.Shared/Access/Components/AccessReaderComponent.cs @@ -10,7 +10,7 @@ namespace Content.Shared.Access.Components; /// and allows checking if something or somebody is authorized with these access levels. /// [RegisterComponent, NetworkedComponent] -public sealed class AccessReaderComponent : Component +public sealed partial class AccessReaderComponent : Component { /// /// Whether or not the accessreader is enabled. @@ -26,25 +26,30 @@ public sealed class AccessReaderComponent : Component public HashSet DenyTags = new(); /// - /// List of access lists to check allowed against. For an access check to pass - /// there has to be an access list that is a subset of the access in the checking list. + /// List of access groups that grant access to this reader. Only a single matching group is required to gain access. + /// A group matches if it is a subset of the set being checked against. /// [DataField("access")] public List> AccessLists = new(); /// - /// A list of valid stationrecordkeys + /// A list of s that grant access. Only a single matching key is required tp gaim + /// access. /// [DataField("accessKeys")] public HashSet AccessKeys = new(); - /// - /// The name of the container in which additional - /// AccessReaderComponents may be found. + /// If specified, then this access reader will instead pull access requirements from entities contained in the + /// given container. /// + /// + /// This effectively causes , , and to be + /// ignored, though is still respected. Access is denied if there are no valid entities or + /// they all deny access. + /// [DataField("containerAccessProvider")] - public string? ContainerAccessProvider = null; + public string? ContainerAccessProvider; } [Serializable, NetSerializable] @@ -56,9 +61,9 @@ public sealed class AccessReaderComponentState : ComponentState public List> AccessLists; - public HashSet AccessKeys; + public List<(NetEntity, uint)> AccessKeys; - public AccessReaderComponentState(bool enabled, HashSet denyTags, List> accessLists, HashSet accessKeys) + public AccessReaderComponentState(bool enabled, HashSet denyTags, List> accessLists, List<(NetEntity, uint)> accessKeys) { Enabled = enabled; DenyTags = denyTags; diff --git a/Content.Shared/Access/Components/IdCardConsoleComponent.cs b/Content.Shared/Access/Components/IdCardConsoleComponent.cs index 53001867c54..dbc78e24741 100644 --- a/Content.Shared/Access/Components/IdCardConsoleComponent.cs +++ b/Content.Shared/Access/Components/IdCardConsoleComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Access.Components; [RegisterComponent, NetworkedComponent] [Access(typeof(SharedIdCardConsoleSystem))] -public sealed class IdCardConsoleComponent : Component +public sealed partial class IdCardConsoleComponent : Component { public const int MaxFullNameLength = 30; public const int MaxJobTitleLength = 30; diff --git a/Content.Shared/Access/SharedAgentIDCardSystem.cs b/Content.Shared/Access/SharedAgentIDCardSystem.cs index d127b326cc7..ef6690cc356 100644 --- a/Content.Shared/Access/SharedAgentIDCardSystem.cs +++ b/Content.Shared/Access/SharedAgentIDCardSystem.cs @@ -8,7 +8,7 @@ public abstract class SharedAgentIdCardSystem : EntitySystem } /// - /// Key representing which is currently open. + /// Key representing which is currently open. /// Useful when there are multiple UI for an object. Here it's future-proofing only. /// [Serializable, NetSerializable] diff --git a/Content.Shared/Access/Systems/AccessReaderSystem.cs b/Content.Shared/Access/Systems/AccessReaderSystem.cs index 96cd3b1d8c5..8794500b900 100644 --- a/Content.Shared/Access/Systems/AccessReaderSystem.cs +++ b/Content.Shared/Access/Systems/AccessReaderSystem.cs @@ -21,6 +21,7 @@ public sealed class AccessReaderSystem : EntitySystem [Dependency] private readonly InventorySystem _inventorySystem = default!; [Dependency] private readonly SharedHandsSystem _handsSystem = default!; [Dependency] private readonly SharedContainerSystem _containerSystem = default!; + [Dependency] private readonly SharedStationRecordsSystem _records = default!; public override void Initialize() { @@ -36,7 +37,7 @@ public override void Initialize() private void OnGetState(EntityUid uid, AccessReaderComponent component, ref ComponentGetState args) { args.State = new AccessReaderComponentState(component.Enabled, component.DenyTags, component.AccessLists, - component.AccessKeys); + _records.Convert(component.AccessKeys)); } private void OnHandleState(EntityUid uid, AccessReaderComponent component, ref ComponentHandleState args) @@ -44,7 +45,16 @@ private void OnHandleState(EntityUid uid, AccessReaderComponent component, ref C if (args.Current is not AccessReaderComponentState state) return; component.Enabled = state.Enabled; - component.AccessKeys = new(state.AccessKeys); + component.AccessKeys.Clear(); + foreach (var key in state.AccessKeys) + { + var id = EnsureEntity(key.Item1, uid); + if (!id.IsValid()) + continue; + + component.AccessKeys.Add(new StationRecordKey(key.Item2, id)); + } + component.AccessLists = new(state.AccessLists); component.DenyTags = new(state.DenyTags); } @@ -53,7 +63,7 @@ private void OnLinkAttempt(EntityUid uid, AccessReaderComponent component, LinkA { if (args.User == null) // AutoLink (and presumably future external linkers) have no user. return; - if (!HasComp(uid) && !IsAllowed(args.User.Value, component)) + if (!HasComp(uid) && !IsAllowed(args.User.Value, uid, component)) args.Cancel(); } @@ -64,80 +74,65 @@ private void OnEmagged(EntityUid uid, AccessReaderComponent reader, ref GotEmagg Dirty(reader); } - /// - /// Finds all AccessReaderComponents in the container of the - /// required entity. - /// - /// The entity to search for a container - /// - /// - private bool FindAccessReadersInContainer(EntityUid target, AccessReaderComponent accessReader, out List result) - { - result = new(); - if (accessReader.ContainerAccessProvider == null) - return false; - - if (!_containerSystem.TryGetContainer(target, accessReader.ContainerAccessProvider, out var container)) - return false; - - foreach (var entity in container.ContainedEntities) - { - if (TryComp(entity, out var entityAccessReader)) - result.Add(entityAccessReader); - } - - return result.Any(); - } - /// /// Searches the source for access tags /// then compares it with the all targets accesses to see if it is allowed. /// - /// The entity that wants access. + /// The entity that wants access. /// The entity to search for an access reader /// Optional reader from the target entity - public bool IsAllowed(EntityUid source, EntityUid target, AccessReaderComponent? reader = null) + public bool IsAllowed(EntityUid user, EntityUid target, AccessReaderComponent? reader = null) { if (!Resolve(target, ref reader, false)) return true; - if (FindAccessReadersInContainer(target, reader, out var accessReaderList)) - { - foreach (var access in accessReaderList) - { - if (IsAllowed(source, access)) - return true; - } + if (!reader.Enabled) + return true; - return false; - } + var accessSources = FindPotentialAccessItems(user); + var access = FindAccessTags(user, accessSources); + FindStationRecordKeys(user, out var stationKeys, accessSources); - return IsAllowed(source, reader); + return IsAllowed(access, stationKeys, target, reader); } + /// - /// Searches the given entity for access tags - /// then compares it with the readers access list to see if it is allowed. + /// Check whether the given access permissions satisfy an access reader's requirements. /// - /// The entity that wants access. - /// A reader from a different entity - public bool IsAllowed(EntityUid entity, AccessReaderComponent reader) + public bool IsAllowed( + ICollection access, + ICollection stationKeys, + EntityUid target, + AccessReaderComponent reader) { - // Access reader is totally disabled, so access is always allowed. if (!reader.Enabled) return true; - var allEnts = FindPotentialAccessItems(entity); + if (reader.ContainerAccessProvider == null) + return IsAllowedInternal(access, stationKeys, reader); - if (AreAccessTagsAllowed(FindAccessTags(entity, allEnts), reader)) - return true; + if (!_containerSystem.TryGetContainer(target, reader.ContainerAccessProvider, out var container)) + return false; - if (FindStationRecordKeys(entity, out var recordKeys, allEnts) - && AreStationRecordKeysAllowed(recordKeys, reader)) - return true; + foreach (var entity in container.ContainedEntities) + { + if (!TryComp(entity, out AccessReaderComponent? containedReader)) + continue; + + if (IsAllowed(access, stationKeys, entity, containedReader)) + return true; + } return false; } + private bool IsAllowedInternal(ICollection access, ICollection stationKeys, AccessReaderComponent reader) + { + return !reader.Enabled + || AreAccessTagsAllowed(access, reader) + || AreStationRecordKeysAllowed(stationKeys, reader); + } + /// /// Compares the given tags with the readers access list to see if it is allowed. /// @@ -155,7 +150,16 @@ public bool AreAccessTagsAllowed(ICollection accessTags, AccessReaderCom return false; } - return reader.AccessLists.Count == 0 || reader.AccessLists.Any(a => a.IsSubsetOf(accessTags)); + if (reader.AccessLists.Count == 0) + return true; + + foreach (var set in reader.AccessLists) + { + if (set.IsSubsetOf(accessTags)) + return true; + } + + return false; } /// @@ -163,7 +167,13 @@ public bool AreAccessTagsAllowed(ICollection accessTags, AccessReaderCom /// public bool AreStationRecordKeysAllowed(ICollection keys, AccessReaderComponent reader) { - return keys.Any() && reader.AccessKeys.Any(keys.Contains); + foreach (var key in reader.AccessKeys) + { + if (keys.Contains(key)) + return true; + } + + return false; } /// diff --git a/Content.Shared/Access/Systems/SharedAccessOverriderSystem.cs b/Content.Shared/Access/Systems/SharedAccessOverriderSystem.cs index 11ec9adec88..c19fe697e6c 100644 --- a/Content.Shared/Access/Systems/SharedAccessOverriderSystem.cs +++ b/Content.Shared/Access/Systems/SharedAccessOverriderSystem.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Access.Systems { [UsedImplicitly] - public abstract class SharedAccessOverriderSystem : EntitySystem + public abstract partial class SharedAccessOverriderSystem : EntitySystem { [Dependency] private readonly ItemSlotsSystem _itemSlotsSystem = default!; [Dependency] private readonly ILogManager _log = default!; @@ -60,7 +60,7 @@ public AccessOverriderComponentState(List accessLevels) } [Serializable, NetSerializable] - public sealed class AccessOverriderDoAfterEvent : DoAfterEvent + public sealed partial class AccessOverriderDoAfterEvent : DoAfterEvent { public AccessOverriderDoAfterEvent() { diff --git a/Content.Shared/Actions/ActionEvents.cs b/Content.Shared/Actions/ActionEvents.cs index 4c6b6719d06..c6f873c78a3 100644 --- a/Content.Shared/Actions/ActionEvents.cs +++ b/Content.Shared/Actions/ActionEvents.cs @@ -1,8 +1,8 @@ -using Content.Shared.Actions.ActionTypes; using Content.Shared.Hands; using Content.Shared.Inventory; using Content.Shared.Inventory.Events; using Robust.Shared.Map; +using Robust.Shared.Network; using Robust.Shared.Serialization; namespace Content.Shared.Actions; @@ -18,7 +18,14 @@ namespace Content.Shared.Actions; /// public sealed class GetItemActionsEvent : EntityEventArgs { - public SortedSet Actions = new(); + private readonly IEntityManager _entities; + private readonly INetManager _net; + public readonly SortedSet Actions = new(); + + /// + /// User equipping the item. + /// + public EntityUid User; /// /// Slot flags for the inventory slot that this item got equipped to. Null if not in a slot (i.e., if equipped to hands). @@ -30,10 +37,26 @@ public sealed class GetItemActionsEvent : EntityEventArgs /// public bool InHands => SlotFlags == null; - public GetItemActionsEvent(SlotFlags? slotFlags = null) + public GetItemActionsEvent(IEntityManager entities, INetManager net, EntityUid user, SlotFlags? slotFlags = null) { + _entities = entities; + _net = net; + User = user; SlotFlags = slotFlags; } + + public void AddAction(ref EntityUid? actionId, string? prototypeId) + { + if (_entities.Deleted(actionId)) + { + if (string.IsNullOrWhiteSpace(prototypeId) || _net.IsClient) + return; + + actionId = _entities.Spawn(prototypeId); + } + + Actions.Add(actionId.Value); + } } /// @@ -42,22 +65,22 @@ public GetItemActionsEvent(SlotFlags? slotFlags = null) [Serializable, NetSerializable] public sealed class RequestPerformActionEvent : EntityEventArgs { - public readonly ActionType Action; - public readonly EntityUid? EntityTarget; - public readonly EntityCoordinates? EntityCoordinatesTarget; + public readonly NetEntity Action; + public readonly NetEntity? EntityTarget; + public readonly NetCoordinates? EntityCoordinatesTarget; - public RequestPerformActionEvent(InstantAction action) + public RequestPerformActionEvent(NetEntity action) { Action = action; } - public RequestPerformActionEvent(EntityTargetAction action, EntityUid entityTarget) + public RequestPerformActionEvent(NetEntity action, NetEntity entityTarget) { Action = action; EntityTarget = entityTarget; } - public RequestPerformActionEvent(WorldTargetAction action, EntityCoordinates entityCoordinatesTarget) + public RequestPerformActionEvent(NetEntity action, NetCoordinates entityCoordinatesTarget) { Action = action; EntityCoordinatesTarget = entityCoordinatesTarget; @@ -71,7 +94,7 @@ public RequestPerformActionEvent(WorldTargetAction action, EntityCoordinates ent /// /// To define a new action for some system, you need to create an event that inherits from this class. /// -public abstract class InstantActionEvent : BaseActionEvent { } +public abstract partial class InstantActionEvent : BaseActionEvent { } /// /// This is the type of event that gets raised when an is performed. The /// To define a new action for some system, you need to create an event that inherits from this class. /// -public abstract class EntityTargetActionEvent : BaseActionEvent +public abstract partial class EntityTargetActionEvent : BaseActionEvent { /// /// The entity that the user targeted. @@ -97,7 +120,7 @@ public abstract class EntityTargetActionEvent : BaseActionEvent /// /// To define a new action for some system, you need to create an event that inherits from this class. /// -public abstract class WorldTargetActionEvent : BaseActionEvent +public abstract partial class WorldTargetActionEvent : BaseActionEvent { /// /// The coordinates of the location that the user targeted. @@ -110,7 +133,7 @@ public abstract class WorldTargetActionEvent : BaseActionEvent /// system. /// [ImplicitDataDefinitionForInheritors] -public abstract class BaseActionEvent : HandledEntityEventArgs +public abstract partial class BaseActionEvent : HandledEntityEventArgs { /// /// The user performing the action. diff --git a/Content.Shared/Actions/ActionTypes/ActionPrototypes.cs b/Content.Shared/Actions/ActionTypes/ActionPrototypes.cs deleted file mode 100644 index 87be616323d..00000000000 --- a/Content.Shared/Actions/ActionTypes/ActionPrototypes.cs +++ /dev/null @@ -1,56 +0,0 @@ -using Robust.Shared.Prototypes; - -namespace Content.Shared.Actions.ActionTypes; - -// These are just prototype definitions for actions. Allows actions to be defined once in yaml and re-used elsewhere. -// Note that you still need to create a new instance of each action to properly track the state (cooldown, toggled, -// enabled, etc). The prototypes should not be modified directly. -// -// If ever action states data is separated from the rest of the data, this might not be required -// anymore. - -[Prototype("worldTargetAction")] -public sealed class WorldTargetActionPrototype : WorldTargetAction, IPrototype -{ - [IdDataField] - public string ID { get; } = default!; - - // This is a shitty hack to get around the fact that action-prototypes should not in general be sever-exclusive - // prototypes, but some actions may need to use server-exclusive events, and there is no way to specify on a - // per-prototype basis whether the client should ignore it when validating yaml. - [DataField("serverEvent", serverOnly: true)] - public WorldTargetActionEvent? ServerEvent - { - get => Event; - set => Event = value; - } -} - -[Prototype("entityTargetAction")] -public sealed class EntityTargetActionPrototype : EntityTargetAction, IPrototype -{ - [IdDataField] - public string ID { get; } = default!; - - [DataField("serverEvent", serverOnly: true)] - public EntityTargetActionEvent? ServerEvent - { - get => Event; - set => Event = value; - } -} - -[Prototype("instantAction")] -public sealed class InstantActionPrototype : InstantAction, IPrototype -{ - [IdDataField] - public string ID { get; } = default!; - - [DataField("serverEvent", serverOnly: true)] - public InstantActionEvent? ServerEvent - { - get => Event; - set => Event = value; - } -} - diff --git a/Content.Shared/Actions/ActionTypes/ActionType.cs b/Content.Shared/Actions/ActionTypes/ActionType.cs deleted file mode 100644 index 2ed3e0c88bc..00000000000 --- a/Content.Shared/Actions/ActionTypes/ActionType.cs +++ /dev/null @@ -1,275 +0,0 @@ -using Robust.Shared.Audio; -using Robust.Shared.Serialization; -using Robust.Shared.Utility; - -namespace Content.Shared.Actions.ActionTypes; - -[ImplicitDataDefinitionForInheritors] -[Serializable, NetSerializable] -public abstract class ActionType : IEquatable, IComparable, ICloneable -{ - /// - /// Icon representing this action in the UI. - /// - [DataField("icon")] - public SpriteSpecifier? Icon; - - /// - /// For toggle actions only, icon to show when toggled on. If omitted, the action will simply be highlighted - /// when turned on. - /// - [DataField("iconOn")] - public SpriteSpecifier? IconOn; - - /// - /// If not null, this color will modulate the action icon color. - /// - /// - /// This currently only exists for decal-placement actions, so that the action icons correspond to the color of - /// the decal. But this is probably useful for other actions, including maybe changing color on toggle. - /// - [DataField("iconColor")] - public Color IconColor = Color.White; - - /// - /// Name to show in UI. - /// - [DataField("name")] - public string DisplayName = string.Empty; - - /// - /// This is just with localized strings resolved and markup removed. If null, will be - /// inferred from . This is cached to speed up game state handling. - /// - [NonSerialized] - public string? RawName; - - /// - /// Description to show in UI. Accepts formatting. - /// - [DataField("description")] - public string Description = string.Empty; - - /// - /// Keywords that can be used to search for this action in the action menu. - /// - [DataField("keywords")] - public HashSet Keywords = new(); - - /// - /// Whether this action is currently enabled. If not enabled, this action cannot be performed. - /// - [DataField("enabled")] - public bool Enabled = true; - - /// - /// The toggle state of this action. Toggling switches the currently displayed icon, see and . - /// - /// - /// The toggle can set directly via , but it will also be - /// automatically toggled for targeted-actions while selecting a target. - /// - public bool Toggled; - - /// - /// The current cooldown on the action. - /// - public (TimeSpan Start, TimeSpan End)? Cooldown; - - /// - /// Time interval between action uses. - /// - [DataField("useDelay")] - public TimeSpan? UseDelay; - - /// - /// Convenience tool for actions with limited number of charges. Automatically decremented on use, and the - /// action is disabled when it reaches zero. Does NOT automatically remove the action from the action bar. - /// - [DataField("charges")] - public int? Charges; - - /// - /// The entity that enables / provides this action. If the action is innate, this may be the user themselves. If - /// this action has no provider (e.g., mapping tools), the this will result in broadcast events. - /// - public EntityUid? Provider; - - /// - /// Entity to use for the action icon. Defaults to using . - /// - public EntityUid? EntityIcon - { - get => _entityIcon ?? Provider; - set => _entityIcon = value; - } - - private EntityUid? _entityIcon; - - /// - /// Whether the action system should block this action if the user cannot currently interact. Some spells or - /// abilities may want to disable this and implement their own checks. - /// - [DataField("checkCanInteract")] - public bool CheckCanInteract = true; - - /// - /// If true, will simply execute the action locally without sending to the server. - /// - [DataField("clientExclusive")] - public bool ClientExclusive = false; - - /// - /// Determines the order in which actions are automatically added the action bar. - /// - [DataField("priority")] - public int Priority = 0; - - /// - /// What entity, if any, currently has this action in the actions component? - /// - [ViewVariables] - public EntityUid? AttachedEntity; - - /// - /// Whether or not to automatically add this action to the action bar when it becomes available. - /// - [DataField("autoPopulate")] - public bool AutoPopulate = true; - - - /// - /// Whether or not to automatically remove this action to the action bar when it becomes unavailable. - /// - [DataField("autoRemove")] - public bool AutoRemove = true; - - /// - /// Temporary actions are removed from the action component when removed from the action-bar/GUI. Currently, - /// should only be used for client-exclusive actions (server is not notified). - /// - /// - /// Currently there is no way for a player to just voluntarily remove actions. They can hide them from the - /// toolbar, but not actually remove them. This is undesirable for things like dynamically added mapping - /// entity-selection actions, as the # of actions would just keep increasing. - /// - [DataField("temporary")] - public bool Temporary; - // TODO re-add support for this - // UI refactor seems to have just broken it. - - /// - /// Determines the appearance of the entity-icon for actions that are enabled via some entity. - /// - [DataField("itemIconStyle")] - public ItemActionIconStyle ItemIconStyle; - - /// - /// If not null, this sound will be played when performing this action. - /// - [DataField("sound")] - public SoundSpecifier? Sound; - - /// - /// Compares two actions based on their properties. This is used to determine equality when the client requests the - /// server to perform some action. Also determines the order in which actions are automatically added to the action bar. - /// - /// - /// Basically: if an action has the same priority, name, and is enabled by the same entity, then the actions are considered equal. - /// The entity-check is required to avoid toggling all flashlights simultaneously whenever a flashlight-hoarder uses an action. - /// - public virtual int CompareTo(object? obj) - { - if (obj is not ActionType otherAction) - return -1; - - if (Priority != otherAction.Priority) - return otherAction.Priority - Priority; - - RawName ??= FormattedMessage.RemoveMarkup(Loc.GetString(DisplayName)); - otherAction.RawName ??= FormattedMessage.RemoveMarkup(Loc.GetString(otherAction.DisplayName)); - var cmp = string.Compare(RawName, otherAction.RawName, StringComparison.CurrentCulture); - if (cmp != 0) - return cmp; - - if (Provider != otherAction.Provider) - { - if (Provider == null) - return -1; - - if (otherAction.Provider == null) - return 1; - - // uid to int casting... it says "Do NOT use this in content". You can't tell me what to do. - return (int) Provider - (int) otherAction.Provider; - } - - return 0; - } - - /// - /// Proper client-side state handling requires the ability to clone an action from the component state. - /// Otherwise modifying the action can lead to modifying the stored server state. - /// - public abstract object Clone(); - - public virtual void CopyFrom(object objectToClone) - { - if (objectToClone is not ActionType toClone) - return; - - // This is pretty Ugly to look at. But actions are sent to the client in a component state, so they have to be - // cloneable. Would be easy if this were a struct of only value-types, but I don't want to restrict actions like - // that. - Priority = toClone.Priority; - Icon = toClone.Icon; - IconOn = toClone.IconOn; - DisplayName = toClone.DisplayName; - RawName = null; - Description = toClone.Description; - Provider = toClone.Provider; - AttachedEntity = toClone.AttachedEntity; - Enabled = toClone.Enabled; - Toggled = toClone.Toggled; - Cooldown = toClone.Cooldown; - Charges = toClone.Charges; - Keywords = new(toClone.Keywords); - AutoPopulate = toClone.AutoPopulate; - AutoRemove = toClone.AutoRemove; - ItemIconStyle = toClone.ItemIconStyle; - CheckCanInteract = toClone.CheckCanInteract; - UseDelay = toClone.UseDelay; - Sound = toClone.Sound; - ItemIconStyle = toClone.ItemIconStyle; - _entityIcon = toClone._entityIcon; - } - - public bool Equals(ActionType? other) - { - return CompareTo(other) == 0; - } - - public static bool operator ==(ActionType? left, ActionType? right) - { - if (left is null) - return right is null; - - return left.Equals(right); - } - - public static bool operator !=(ActionType? left, ActionType? right) - { - return !(left == right); - } - - public override int GetHashCode() - { - unchecked - { - var hashCode = Priority.GetHashCode(); - hashCode = (hashCode * 397) ^ DisplayName.GetHashCode(); - hashCode = (hashCode * 397) ^ Provider.GetHashCode(); - return hashCode; - } - } -} diff --git a/Content.Shared/Actions/ActionTypes/InstantAction.cs b/Content.Shared/Actions/ActionTypes/InstantAction.cs deleted file mode 100644 index 27254c4d05e..00000000000 --- a/Content.Shared/Actions/ActionTypes/InstantAction.cs +++ /dev/null @@ -1,43 +0,0 @@ -using Robust.Shared.Serialization; - -namespace Content.Shared.Actions.ActionTypes; - -/// -/// Instantaneous action with no extra targeting information. Will result in being raised. -/// -[Serializable, NetSerializable] -[Virtual] -public class InstantAction : ActionType -{ - /// - /// The local-event to raise when this action is performed. - /// - [DataField("event")] - [NonSerialized] - public InstantActionEvent? Event; - - public InstantAction() { } - public InstantAction(InstantAction toClone) - { - CopyFrom(toClone); - } - - public override void CopyFrom(object objectToClone) - { - base.CopyFrom(objectToClone); - - // Server doesn't serialize events to us. - // As such we don't want them to bulldoze any events we may have gotten locally. - if (objectToClone is not InstantAction toClone) - return; - - // Events should be re-usable, and shouldn't be modified during prediction. - if (toClone.Event != null) - Event = toClone.Event; - } - - public override object Clone() - { - return new InstantAction(this); - } -} diff --git a/Content.Shared/Actions/ActionTypes/TargetedAction.cs b/Content.Shared/Actions/ActionTypes/TargetedAction.cs deleted file mode 100644 index ba32fae0da0..00000000000 --- a/Content.Shared/Actions/ActionTypes/TargetedAction.cs +++ /dev/null @@ -1,153 +0,0 @@ -using Content.Shared.Interaction; -using Content.Shared.Whitelist; -using Robust.Shared.Serialization; - -namespace Content.Shared.Actions.ActionTypes; - -[Serializable, NetSerializable] -public abstract class TargetedAction : ActionType -{ - /// - /// For entity- or map-targeting actions, if this is true the action will remain selected after it is used, so - /// it can be continuously re-used. If this is false, the action will be deselected after one use. - /// - [DataField("repeat")] - public bool Repeat; - - /// - /// For entity- or map-targeting action, determines whether the action is deselected if the user doesn't click a valid target. - /// - [DataField("deselectOnMiss")] - public bool DeselectOnMiss; - - /// - /// Whether the action system should block this action if the user cannot actually access the target - /// (unobstructed, in inventory, in backpack, etc). Some spells or abilities may want to disable this and - /// implement their own checks. - /// - /// - /// Even if this is false, the will still be checked. - /// - [DataField("checkCanAccess")] - public bool CheckCanAccess = true; - - [DataField("range")] - public float Range = SharedInteractionSystem.InteractionRange; - - /// - /// If the target is invalid, this bool determines whether the left-click will default to performing a standard-interaction - /// - /// - /// Interactions will still be blocked if the target-validation generates a pop-up - /// - [DataField("interactOnMiss")] - public bool InteractOnMiss = false; - - /// - /// If true, and if is enabled, then this action's icon will be drawn by that - /// over lay in place of the currently held item "held item". - /// - [DataField("targetingIndicator")] - public bool TargetingIndicator = true; - - public override void CopyFrom(object objectToClone) - { - base.CopyFrom(objectToClone); - - if (objectToClone is not TargetedAction toClone) - return; - - Range = toClone.Range; - CheckCanAccess = toClone.CheckCanAccess; - DeselectOnMiss = toClone.DeselectOnMiss; - Repeat = toClone.Repeat; - InteractOnMiss = toClone.InteractOnMiss; - TargetingIndicator = toClone.TargetingIndicator; - } -} - -/// -/// Action that targets some entity. Will result in being raised. -/// -[Serializable, NetSerializable] -[Virtual] -public class EntityTargetAction : TargetedAction -{ - /// - /// The local-event to raise when this action is performed. - /// - [NonSerialized] - [DataField("event")] - public EntityTargetActionEvent? Event; - - [DataField("whitelist")] - public EntityWhitelist? Whitelist; - - [DataField("canTargetSelf")] - public bool CanTargetSelf = true; - - public EntityTargetAction() { } - public EntityTargetAction(EntityTargetAction toClone) - { - CopyFrom(toClone); - } - public override void CopyFrom(object objectToClone) - { - base.CopyFrom(objectToClone); - - if (objectToClone is not EntityTargetAction toClone) - return; - - CanTargetSelf = toClone.CanTargetSelf; - - // This isn't a deep copy, but I don't expect white-lists to ever be edited during prediction. So good enough? - Whitelist = toClone.Whitelist; - - // Events should be re-usable, and shouldn't be modified during prediction. - if (toClone.Event != null) - Event = toClone.Event; - } - - public override object Clone() - { - return new EntityTargetAction(this); - } -} - -/// -/// Action that targets some map coordinates. Will result in being raised. -/// -[Serializable, NetSerializable] -[Virtual] -public class WorldTargetAction : TargetedAction -{ - /// - /// The local-event to raise when this action is performed. - /// - [DataField("event")] - [NonSerialized] - public WorldTargetActionEvent? Event; - - public WorldTargetAction() { } - public WorldTargetAction(WorldTargetAction toClone) - { - CopyFrom(toClone); - } - - public override void CopyFrom(object objectToClone) - { - base.CopyFrom(objectToClone); - - if (objectToClone is not WorldTargetAction toClone) - return; - - // Events should be re-usable, and shouldn't be modified during prediction. - if (toClone.Event != null) - Event = toClone.Event; - } - - public override object Clone() - { - return new WorldTargetAction(this); - } -} diff --git a/Content.Shared/Actions/ActionsComponent.cs b/Content.Shared/Actions/ActionsComponent.cs index d422fcdbc22..f7db07a85a8 100644 --- a/Content.Shared/Actions/ActionsComponent.cs +++ b/Content.Shared/Actions/ActionsComponent.cs @@ -1,4 +1,3 @@ -using Content.Shared.Actions.ActionTypes; using Robust.Shared.GameStates; using Robust.Shared.Serialization; @@ -7,12 +6,14 @@ namespace Content.Shared.Actions; [NetworkedComponent] [RegisterComponent] [Access(typeof(SharedActionsSystem))] -public sealed class ActionsComponent : Component +public sealed partial class ActionsComponent : Component { - [ViewVariables] - [Access(typeof(SharedActionsSystem), Other = AccessPermissions.ReadExecute)] - // FIXME Friends - public SortedSet Actions = new(); + /// + /// Handled on the client to track added and removed actions. + /// + [ViewVariables] public readonly Dictionary OldClientActions = new(); + + [ViewVariables] public readonly HashSet Actions = new(); public override bool SendOnlyToOwner => true; } @@ -20,17 +21,16 @@ public sealed class ActionsComponent : Component [Serializable, NetSerializable] public sealed class ActionsComponentState : ComponentState { - public readonly List Actions; + public readonly HashSet Actions; - [NonSerialized] - public SortedSet? SortedActions; - - public ActionsComponentState(List actions) + public ActionsComponentState(HashSet actions) { Actions = actions; } } +public readonly record struct ActionMetaData(bool ClientExclusive, bool AutoRemove); + /// /// Determines how the action icon appears in the hotbar for item actions. /// diff --git a/Content.Shared/Actions/BaseActionComponent.cs b/Content.Shared/Actions/BaseActionComponent.cs new file mode 100644 index 00000000000..5580c19e199 --- /dev/null +++ b/Content.Shared/Actions/BaseActionComponent.cs @@ -0,0 +1,193 @@ +using Robust.Shared.Audio; +using Robust.Shared.Serialization; +using Robust.Shared.Utility; + +namespace Content.Shared.Actions; + +// TODO this should be an IncludeDataFields of each action component type, not use inheritance +public abstract partial class BaseActionComponent : Component +{ + public abstract BaseActionEvent? BaseEvent { get; } + + /// + /// Icon representing this action in the UI. + /// + [DataField("icon")] public SpriteSpecifier? Icon; + + /// + /// For toggle actions only, icon to show when toggled on. If omitted, the action will simply be highlighted + /// when turned on. + /// + [DataField("iconOn")] public SpriteSpecifier? IconOn; + + /// + /// If not null, this color will modulate the action icon color. + /// + /// + /// This currently only exists for decal-placement actions, so that the action icons correspond to the color of + /// the decal. But this is probably useful for other actions, including maybe changing color on toggle. + /// + [DataField("iconColor")] public Color IconColor = Color.White; + + /// + /// Keywords that can be used to search for this action in the action menu. + /// + [DataField("keywords")] public HashSet Keywords = new(); + + /// + /// Whether this action is currently enabled. If not enabled, this action cannot be performed. + /// + [DataField("enabled")] public bool Enabled = true; + + /// + /// The toggle state of this action. Toggling switches the currently displayed icon, see and . + /// + /// + /// The toggle can set directly via , but it will also be + /// automatically toggled for targeted-actions while selecting a target. + /// + public bool Toggled; + + /// + /// The current cooldown on the action. + /// + public (TimeSpan Start, TimeSpan End)? Cooldown; + + /// + /// Time interval between action uses. + /// + [DataField("useDelay")] public TimeSpan? UseDelay; + + /// + /// Convenience tool for actions with limited number of charges. Automatically decremented on use, and the + /// action is disabled when it reaches zero. Does NOT automatically remove the action from the action bar. + /// + [DataField("charges")] public int? Charges; + + /// + /// The entity that enables / provides this action. If the action is innate, this may be the user themselves. If + /// this action has no provider (e.g., mapping tools), the this will result in broadcast events. + /// + public EntityUid? Provider; + + /// + /// Entity to use for the action icon. Defaults to using . + /// + public EntityUid? EntityIcon + { + get => _entityIcon ?? Provider; + set => _entityIcon = value; + } + + private EntityUid? _entityIcon; + + /// + /// Whether the action system should block this action if the user cannot currently interact. Some spells or + /// abilities may want to disable this and implement their own checks. + /// + [DataField("checkCanInteract")] public bool CheckCanInteract = true; + + /// + /// If true, will simply execute the action locally without sending to the server. + /// + [DataField("clientExclusive")] public bool ClientExclusive = false; + + /// + /// Determines the order in which actions are automatically added the action bar. + /// + [DataField("priority")] public int Priority = 0; + + /// + /// What entity, if any, currently has this action in the actions component? + /// + [ViewVariables] public EntityUid? AttachedEntity; + + /// + /// Whether or not to automatically add this action to the action bar when it becomes available. + /// + [DataField("autoPopulate")] public bool AutoPopulate = true; + + + /// + /// Whether or not to automatically remove this action to the action bar when it becomes unavailable. + /// + [DataField("autoRemove")] public bool AutoRemove = true; + + /// + /// Temporary actions are removed from the action component when removed from the action-bar/GUI. Currently, + /// should only be used for client-exclusive actions (server is not notified). + /// + /// + /// Currently there is no way for a player to just voluntarily remove actions. They can hide them from the + /// toolbar, but not actually remove them. This is undesirable for things like dynamically added mapping + /// entity-selection actions, as the # of actions would just keep increasing. + /// + [DataField("temporary")] public bool Temporary; + // TODO re-add support for this + // UI refactor seems to have just broken it. + + /// + /// Determines the appearance of the entity-icon for actions that are enabled via some entity. + /// + [DataField("itemIconStyle")] public ItemActionIconStyle ItemIconStyle; + + /// + /// If not null, this sound will be played when performing this action. + /// + [DataField("sound")] public SoundSpecifier? Sound; +} + +[Serializable, NetSerializable] +public abstract class BaseActionComponentState : ComponentState +{ + public SpriteSpecifier? Icon; + public SpriteSpecifier? IconOn; + public Color IconColor; + public HashSet Keywords; + public bool Enabled; + public bool Toggled; + public (TimeSpan Start, TimeSpan End)? Cooldown; + public TimeSpan? UseDelay; + public int? Charges; + public NetEntity? Provider; + public NetEntity? EntityIcon; + public bool CheckCanInteract; + public bool ClientExclusive; + public int Priority; + public NetEntity? AttachedEntity; + public bool AutoPopulate; + public bool AutoRemove; + public bool Temporary; + public ItemActionIconStyle ItemIconStyle; + public SoundSpecifier? Sound; + + protected BaseActionComponentState(BaseActionComponent component, IEntityManager entManager) + { + Icon = component.Icon; + IconOn = component.IconOn; + IconColor = component.IconColor; + Keywords = component.Keywords; + Enabled = component.Enabled; + Toggled = component.Toggled; + Cooldown = component.Cooldown; + UseDelay = component.UseDelay; + Charges = component.Charges; + + // TODO ACTION REFACTOR fix bugs + if (entManager.TryGetNetEntity(component.Provider, out var provider)) + Provider = provider; + if (entManager.TryGetNetEntity(component.EntityIcon, out var icon)) + EntityIcon = icon; + if (entManager.TryGetNetEntity(component.AttachedEntity, out var attached)) + AttachedEntity = attached; + + CheckCanInteract = component.CheckCanInteract; + ClientExclusive = component.ClientExclusive; + Priority = component.Priority; + AutoPopulate = component.AutoPopulate; + AutoRemove = component.AutoRemove; + Temporary = component.Temporary; + ItemIconStyle = component.ItemIconStyle; + Sound = component.Sound; + } +} diff --git a/Content.Shared/Actions/BaseTargetActionComponent.cs b/Content.Shared/Actions/BaseTargetActionComponent.cs new file mode 100644 index 00000000000..7e40b10c327 --- /dev/null +++ b/Content.Shared/Actions/BaseTargetActionComponent.cs @@ -0,0 +1,43 @@ +using Content.Shared.Interaction; + +namespace Content.Shared.Actions; + +public abstract partial class BaseTargetActionComponent : BaseActionComponent +{ + /// + /// For entity- or map-targeting actions, if this is true the action will remain selected after it is used, so + /// it can be continuously re-used. If this is false, the action will be deselected after one use. + /// + [DataField("repeat")] public bool Repeat; + + /// + /// For entity- or map-targeting action, determines whether the action is deselected if the user doesn't click a valid target. + /// + [DataField("deselectOnMiss")] public bool DeselectOnMiss; + + /// + /// Whether the action system should block this action if the user cannot actually access the target + /// (unobstructed, in inventory, in backpack, etc). Some spells or abilities may want to disable this and + /// implement their own checks. + /// + /// + /// Even if this is false, the will still be checked. + /// + [DataField("checkCanAccess")] public bool CheckCanAccess = true; + + [DataField("range")] public float Range = SharedInteractionSystem.InteractionRange; + + /// + /// If the target is invalid, this bool determines whether the left-click will default to performing a standard-interaction + /// + /// + /// Interactions will still be blocked if the target-validation generates a pop-up + /// + [DataField("interactOnMiss")] public bool InteractOnMiss = false; + + /// + /// If true, and if is enabled, then this action's icon will be drawn by that + /// over lay in place of the currently held item "held item". + /// + [DataField("targetingIndicator")] public bool TargetingIndicator = true; +} diff --git a/Content.Shared/Actions/EntityTargetActionComponent.cs b/Content.Shared/Actions/EntityTargetActionComponent.cs new file mode 100644 index 00000000000..9024f42e0e7 --- /dev/null +++ b/Content.Shared/Actions/EntityTargetActionComponent.cs @@ -0,0 +1,35 @@ +using Content.Shared.Whitelist; +using Robust.Shared.GameStates; +using Robust.Shared.Serialization; + +namespace Content.Shared.Actions; + +[RegisterComponent, NetworkedComponent] +public sealed partial class EntityTargetActionComponent : BaseTargetActionComponent +{ + public override BaseActionEvent? BaseEvent => Event; + + /// + /// The local-event to raise when this action is performed. + /// + [DataField("event")] + [NonSerialized] + public EntityTargetActionEvent? Event; + + [DataField("whitelist")] public EntityWhitelist? Whitelist; + + [DataField("canTargetSelf")] public bool CanTargetSelf = true; +} + +[Serializable, NetSerializable] +public sealed class EntityTargetActionComponentState : BaseActionComponentState +{ + public EntityWhitelist? Whitelist; + public bool CanTargetSelf; + + public EntityTargetActionComponentState(EntityTargetActionComponent component, IEntityManager entManager) : base(component, entManager) + { + Whitelist = component.Whitelist; + CanTargetSelf = component.CanTargetSelf; + } +} diff --git a/Content.Shared/Actions/Events/EggLayInstantActionEvent.cs b/Content.Shared/Actions/Events/EggLayInstantActionEvent.cs new file mode 100644 index 00000000000..5cdcfce9859 --- /dev/null +++ b/Content.Shared/Actions/Events/EggLayInstantActionEvent.cs @@ -0,0 +1,3 @@ +namespace Content.Shared.Actions.Events; + +public sealed partial class EggLayInstantActionEvent : InstantActionEvent {} diff --git a/Content.Shared/Actions/Events/GetActionDataEvent.cs b/Content.Shared/Actions/Events/GetActionDataEvent.cs new file mode 100644 index 00000000000..be77cfd4265 --- /dev/null +++ b/Content.Shared/Actions/Events/GetActionDataEvent.cs @@ -0,0 +1,4 @@ +namespace Content.Shared.Actions.Events; + +[ByRefEvent] +public record struct GetActionDataEvent(BaseActionComponent? Action); diff --git a/Content.Shared/Actions/Events/InvisibleWallActionEvent.cs b/Content.Shared/Actions/Events/InvisibleWallActionEvent.cs new file mode 100644 index 00000000000..d84b9910e06 --- /dev/null +++ b/Content.Shared/Actions/Events/InvisibleWallActionEvent.cs @@ -0,0 +1,5 @@ +namespace Content.Shared.Actions.Events; + +public sealed partial class InvisibleWallActionEvent : InstantActionEvent +{ +} diff --git a/Content.Shared/Actions/InstantActionComponent.cs b/Content.Shared/Actions/InstantActionComponent.cs new file mode 100644 index 00000000000..04c9b94556c --- /dev/null +++ b/Content.Shared/Actions/InstantActionComponent.cs @@ -0,0 +1,25 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Serialization; + +namespace Content.Shared.Actions; + +[RegisterComponent, NetworkedComponent] +public sealed partial class InstantActionComponent : BaseActionComponent +{ + public override BaseActionEvent? BaseEvent => Event; + + /// + /// The local-event to raise when this action is performed. + /// + [DataField("event")] + [NonSerialized] + public InstantActionEvent? Event; +} + +[Serializable, NetSerializable] +public sealed class InstantActionComponentState : BaseActionComponentState +{ + public InstantActionComponentState(InstantActionComponent component, IEntityManager entManager) : base(component, entManager) + { + } +} diff --git a/Content.Shared/Actions/SharedActionsSystem.cs b/Content.Shared/Actions/SharedActionsSystem.cs index 8dce478eb2f..3d476dd48c0 100644 --- a/Content.Shared/Actions/SharedActionsSystem.cs +++ b/Content.Shared/Actions/SharedActionsSystem.cs @@ -1,5 +1,7 @@ +using System.Diagnostics.CodeAnalysis; +using System.Linq; using Content.Shared.ActionBlocker; -using Content.Shared.Actions.ActionTypes; +using Content.Shared.Actions.Events; using Content.Shared.Administration.Logs; using Content.Shared.Database; using Content.Shared.Hands; @@ -8,16 +10,20 @@ using Robust.Shared.Containers; using Robust.Shared.GameStates; using Robust.Shared.Map; -using Robust.Shared.Prototypes; +using Robust.Shared.Network; using Robust.Shared.Timing; -using System.Linq; +using Robust.Shared.Utility; namespace Content.Shared.Actions; public abstract class SharedActionsSystem : EntitySystem { + private const string ActionContainerId = "ActionContainer"; + private const string ProvidedActionContainerId = "ProvidedActionContainer"; + [Dependency] protected readonly IGameTiming GameTiming = default!; [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; + [Dependency] private readonly INetManager _net = default!; [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!; [Dependency] private readonly ActionBlockerSystem _actionBlockerSystem = default!; [Dependency] private readonly SharedContainerSystem _containerSystem = default!; @@ -34,56 +40,242 @@ public override void Initialize() SubscribeLocalEvent(OnDidUnequip); SubscribeLocalEvent(OnHandUnequipped); - SubscribeLocalEvent(GetState); + SubscribeLocalEvent(OnActionsMapInit); + SubscribeLocalEvent(OnActionsGetState); + SubscribeLocalEvent(OnActionsShutdown); + + SubscribeLocalEvent(OnInstantGetState); + SubscribeLocalEvent(OnEntityTargetGetState); + SubscribeLocalEvent(OnWorldTargetGetState); + + SubscribeLocalEvent(OnInstantHandleState); + SubscribeLocalEvent(OnEntityTargetHandleState); + SubscribeLocalEvent(OnWorldTargetHandleState); + + SubscribeLocalEvent(OnGetActionData); + SubscribeLocalEvent(OnGetActionData); + SubscribeLocalEvent(OnGetActionData); + + SubscribeLocalEvent(OnEntGotRemovedFromContainer); + SubscribeLocalEvent(OnEntGotRemovedFromContainer); + SubscribeLocalEvent(OnEntGotRemovedFromContainer); SubscribeAllEvent(OnActionRequest); } + private void OnInstantGetState(EntityUid uid, InstantActionComponent component, ref ComponentGetState args) + { + args.State = new InstantActionComponentState(component, EntityManager); + } + + private void OnEntityTargetGetState(EntityUid uid, EntityTargetActionComponent component, ref ComponentGetState args) + { + args.State = new EntityTargetActionComponentState(component, EntityManager); + } + + private void OnWorldTargetGetState(EntityUid uid, WorldTargetActionComponent component, ref ComponentGetState args) + { + args.State = new WorldTargetActionComponentState(component, EntityManager); + } + + private void BaseHandleState(EntityUid uid, BaseActionComponent component, BaseActionComponentState state) where T : BaseActionComponent + { + component.Icon = state.Icon; + component.IconOn = state.IconOn; + component.IconColor = state.IconColor; + component.Keywords = new HashSet(state.Keywords); + component.Enabled = state.Enabled; + component.Toggled = state.Toggled; + component.Cooldown = state.Cooldown; + component.UseDelay = state.UseDelay; + component.Charges = state.Charges; + component.Provider = EnsureEntity(state.Provider, uid); + component.EntityIcon = EnsureEntity(state.EntityIcon, uid); + component.CheckCanInteract = state.CheckCanInteract; + component.ClientExclusive = state.ClientExclusive; + component.Priority = state.Priority; + component.AttachedEntity = EnsureEntity(state.AttachedEntity, uid); + component.AutoPopulate = state.AutoPopulate; + component.AutoRemove = state.AutoRemove; + component.Temporary = state.Temporary; + component.ItemIconStyle = state.ItemIconStyle; + component.Sound = state.Sound; + } + + private void OnInstantHandleState(EntityUid uid, InstantActionComponent component, ref ComponentHandleState args) + { + if (args.Current is not InstantActionComponentState state) + return; + + BaseHandleState(uid, component, state); + } + + private void OnEntityTargetHandleState(EntityUid uid, EntityTargetActionComponent component, ref ComponentHandleState args) + { + if (args.Current is not EntityTargetActionComponentState state) + return; + + BaseHandleState(uid, component, state); + component.Whitelist = state.Whitelist; + component.CanTargetSelf = state.CanTargetSelf; + } + + private void OnWorldTargetHandleState(EntityUid uid, WorldTargetActionComponent component, ref ComponentHandleState args) + { + if (args.Current is not WorldTargetActionComponentState state) + return; + + BaseHandleState(uid, component, state); + } + + private void OnGetActionData(EntityUid uid, T component, ref GetActionDataEvent args) where T : BaseActionComponent + { + args.Action = component; + } + + private void OnEntGotRemovedFromContainer(EntityUid uid, T component, EntGotRemovedFromContainerMessage args) where T : BaseActionComponent + { + if (args.Container.ID != ProvidedActionContainerId) + return; + + if (TryComp(component.AttachedEntity, out ActionsComponent? actions)) + { + actions.Actions.Remove(uid); + Dirty(component.AttachedEntity.Value, actions); + + if (TryGetActionData(uid, out var action)) + action.AttachedEntity = null; + } + } + + public BaseActionComponent? GetActionData(EntityUid? actionId) + { + if (actionId == null) + return null; + + // TODO split up logic between each action component with different subscriptions + // good luck future coder + var ev = new GetActionDataEvent(); + RaiseLocalEvent(actionId.Value, ref ev); + return ev.Action; + } + + public bool TryGetActionData( + [NotNullWhen(true)] EntityUid? actionId, + [NotNullWhen(true)] out BaseActionComponent? action) + { + action = null; + return actionId != null && (action = GetActionData(actionId)) != null; + } + + protected Container EnsureContainer(EntityUid holderId, EntityUid? providerId) + { + return providerId == null + ? _containerSystem.EnsureContainer(holderId, ActionContainerId) + : _containerSystem.EnsureContainer(providerId.Value, ProvidedActionContainerId); + } + + protected bool TryGetContainer( + EntityUid holderId, + [NotNullWhen(true)] out BaseContainer? container, + ContainerManagerComponent? containerManager = null) + { + return _containerSystem.TryGetContainer(holderId, ActionContainerId, out container, containerManager); + } + + protected bool TryGetProvidedContainer( + EntityUid providerId, + [NotNullWhen(true)] out BaseContainer? container, + ContainerManagerComponent? containerManager = null) + { + return _containerSystem.TryGetContainer(providerId, ProvidedActionContainerId, out container, containerManager); + } + + public void SetCooldown(EntityUid? actionId, TimeSpan start, TimeSpan end) + { + if (actionId == null) + return; + + var action = GetActionData(actionId); + if (action == null) + return; + + action.Cooldown = (start, end); + Dirty(actionId.Value, action); + } + #region ComponentStateManagement - public virtual void Dirty(ActionType action) + public virtual void Dirty(EntityUid? actionId) { + if (!TryGetActionData(actionId, out var action)) + return; + + Dirty(actionId.Value, action); + if (action.AttachedEntity == null) return; - if (!TryComp(action.AttachedEntity, out ActionsComponent? comp)) + var ent = action.AttachedEntity; + + if (!TryComp(ent, out ActionsComponent? comp)) { action.AttachedEntity = null; return; } - Dirty(comp); + Dirty(action.AttachedEntity.Value, comp); } - public void SetToggled(ActionType action, bool toggled) + public void SetToggled(EntityUid? actionId, bool toggled) { - if (action.Toggled == toggled) + if (!TryGetActionData(actionId, out var action) || + action.Toggled == toggled) + { return; + } action.Toggled = toggled; - Dirty(action); + Dirty(actionId.Value, action); } - public void SetEnabled(ActionType action, bool enabled) + public void SetEnabled(EntityUid? actionId, bool enabled) { - if (action.Enabled == enabled) + if (!TryGetActionData(actionId, out var action) || + action.Enabled == enabled) + { return; + } action.Enabled = enabled; - Dirty(action); + Dirty(actionId.Value, action); } - public void SetCharges(ActionType action, int? charges) + public void SetCharges(EntityUid? actionId, int? charges) { - if (action.Charges == charges) + if (!TryGetActionData(actionId, out var action) || + action.Charges == charges) + { return; + } action.Charges = charges; - Dirty(action); + Dirty(actionId.Value, action); + } + + private void OnActionsMapInit(EntityUid uid, ActionsComponent component, MapInitEvent args) + { + EnsureContainer(uid, null); } - private void GetState(EntityUid uid, ActionsComponent component, ref ComponentGetState args) + private void OnActionsGetState(EntityUid uid, ActionsComponent component, ref ComponentGetState args) { - args.State = new ActionsComponentState(component.Actions.ToList()); + args.State = new ActionsComponentState(GetNetEntitySet(component.Actions)); + } + + private void OnActionsShutdown(EntityUid uid, ActionsComponent component, ComponentShutdown args) + { + if (TryGetContainer(uid, out var container)) + container.Shutdown(EntityManager); } #endregion @@ -101,43 +293,50 @@ private void OnActionRequest(RequestPerformActionEvent ev, EntitySessionEventArg if (!TryComp(user, out ActionsComponent? component)) return; + var actionEnt = GetEntity(ev.Action); + + if (!TryComp(actionEnt, out MetaDataComponent? metaData)) + return; + + var name = Name(actionEnt, metaData); + // Does the user actually have the requested action? - if (!component.Actions.TryGetValue(ev.Action, out var act)) + if (!component.Actions.Contains(actionEnt)) { _adminLogger.Add(LogType.Action, - $"{ToPrettyString(user):user} attempted to perform an action that they do not have: {ev.Action.DisplayName}."); + $"{ToPrettyString(user):user} attempted to perform an action that they do not have: {name}."); return; } - if (!act.Enabled) + var action = GetActionData(actionEnt); + if (action == null || !action.Enabled) return; var curTime = GameTiming.CurTime; - if (act.Cooldown.HasValue && act.Cooldown.Value.End > curTime) + if (action.Cooldown.HasValue && action.Cooldown.Value.End > curTime) return; BaseActionEvent? performEvent = null; // Validate request by checking action blockers and the like: - var name = Loc.GetString(act.DisplayName); - - switch (act) + switch (action) { - case EntityTargetAction entityAction: - - if (ev.EntityTarget is not { Valid: true } entityTarget) + case EntityTargetActionComponent entityAction: + if (ev.EntityTarget is not { Valid: true } netTarget) { - Log.Error($"Attempted to perform an entity-targeted action without a target! Action: {entityAction.DisplayName}"); + Log.Error($"Attempted to perform an entity-targeted action without a target! Action: {name}"); return; } + var entityTarget = GetEntity(netTarget); + var targetWorldPos = _transformSystem.GetWorldPosition(entityTarget); _rotateToFaceSystem.TryFaceCoordinates(user, targetWorldPos); if (!ValidateEntityTarget(user, entityTarget, entityAction)) return; - if (act.Provider == null) + if (action.Provider == null) { _adminLogger.Add(LogType.Action, $"{ToPrettyString(user):user} is performing the {name:action} action targeted at {ToPrettyString(entityTarget):target}."); @@ -145,31 +344,31 @@ private void OnActionRequest(RequestPerformActionEvent ev, EntitySessionEventArg else { _adminLogger.Add(LogType.Action, - $"{ToPrettyString(user):user} is performing the {name:action} action (provided by {ToPrettyString(act.Provider.Value):provider}) targeted at {ToPrettyString(entityTarget):target}."); + $"{ToPrettyString(user):user} is performing the {name:action} action (provided by {ToPrettyString(action.Provider.Value):provider}) targeted at {ToPrettyString(entityTarget):target}."); } if (entityAction.Event != null) { entityAction.Event.Target = entityTarget; + Dirty(actionEnt, entityAction); performEvent = entityAction.Event; } break; - - case WorldTargetAction worldAction: - - if (ev.EntityCoordinatesTarget is not { } entityCoordinatesTarget) + case WorldTargetActionComponent worldAction: + if (ev.EntityCoordinatesTarget is not { } netCoordinatesTarget) { - Log.Error($"Attempted to perform a world-targeted action without a target! Action: {worldAction.DisplayName}"); + Log.Error($"Attempted to perform a world-targeted action without a target! Action: {name}"); return; } + var entityCoordinatesTarget = GetCoordinates(netCoordinatesTarget); _rotateToFaceSystem.TryFaceCoordinates(user, entityCoordinatesTarget.Position); if (!ValidateWorldTarget(user, entityCoordinatesTarget, worldAction)) return; - if (act.Provider == null) + if (action.Provider == null) { _adminLogger.Add(LogType.Action, $"{ToPrettyString(user):user} is performing the {name:action} action targeted at {entityCoordinatesTarget:target}."); @@ -177,23 +376,22 @@ private void OnActionRequest(RequestPerformActionEvent ev, EntitySessionEventArg else { _adminLogger.Add(LogType.Action, - $"{ToPrettyString(user):user} is performing the {name:action} action (provided by {ToPrettyString(act.Provider.Value):provider}) targeted at {entityCoordinatesTarget:target}."); + $"{ToPrettyString(user):user} is performing the {name:action} action (provided by {ToPrettyString(action.Provider.Value):provider}) targeted at {entityCoordinatesTarget:target}."); } if (worldAction.Event != null) { worldAction.Event.Target = entityCoordinatesTarget; + Dirty(actionEnt, worldAction); performEvent = worldAction.Event; } break; - - case InstantAction instantAction: - - if (act.CheckCanInteract && !_actionBlockerSystem.CanInteract(user, null)) + case InstantActionComponent instantAction: + if (action.CheckCanInteract && !_actionBlockerSystem.CanInteract(user, null)) return; - if (act.Provider == null) + if (action.Provider == null) { _adminLogger.Add(LogType.Action, $"{ToPrettyString(user):user} is performing the {name:action} action."); @@ -201,7 +399,7 @@ private void OnActionRequest(RequestPerformActionEvent ev, EntitySessionEventArg else { _adminLogger.Add(LogType.Action, - $"{ToPrettyString(user):user} is performing the {name:action} action provided by {ToPrettyString(act.Provider.Value):provider}."); + $"{ToPrettyString(user):user} is performing the {name:action} action provided by {ToPrettyString(action.Provider.Value):provider}."); } performEvent = instantAction.Event; @@ -212,10 +410,10 @@ private void OnActionRequest(RequestPerformActionEvent ev, EntitySessionEventArg performEvent.Performer = user; // All checks passed. Perform the action! - PerformAction(user, component, act, performEvent, curTime); + PerformAction(user, component, actionEnt, action, performEvent, curTime); } - public bool ValidateEntityTarget(EntityUid user, EntityUid target, EntityTargetAction action) + public bool ValidateEntityTarget(EntityUid user, EntityUid target, EntityTargetActionComponent action) { if (!target.IsValid() || Deleted(target)) return false; @@ -254,7 +452,7 @@ public bool ValidateEntityTarget(EntityUid user, EntityUid target, EntityTargetA return _interactionSystem.CanAccessViaStorage(user, target); } - public bool ValidateWorldTarget(EntityUid user, EntityCoordinates coords, WorldTargetAction action) + public bool ValidateWorldTarget(EntityUid user, EntityCoordinates coords, WorldTargetActionComponent action) { if (action.CheckCanInteract && !_actionBlockerSystem.CanInteract(user, null)) return false; @@ -276,7 +474,7 @@ public bool ValidateWorldTarget(EntityUid user, EntityCoordinates coords, WorldT return _interactionSystem.InRangeUnobstructed(user, coords, range: action.Range); } - public void PerformAction(EntityUid performer, ActionsComponent? component, ActionType action, BaseActionEvent? actionEvent, TimeSpan curTime, bool predicted = true) + public void PerformAction(EntityUid performer, ActionsComponent? component, EntityUid actionId, BaseActionComponent action, BaseActionEvent? actionEvent, TimeSpan curTime, bool predicted = true) { var handled = false; @@ -286,11 +484,12 @@ public void PerformAction(EntityUid performer, ActionsComponent? component, Acti { // This here is required because of client-side prediction (RaisePredictiveEvent results in event re-use). actionEvent.Handled = false; + var provider = action.Provider; - if (action.Provider == null) + if (provider == null) RaiseLocalEvent(performer, (object) actionEvent, broadcast: true); else - RaiseLocalEvent(action.Provider.Value, (object) actionEvent, broadcast: true); + RaiseLocalEvent(provider.Value, (object) actionEvent, broadcast: true); handled = actionEvent.Handled; } @@ -320,89 +519,186 @@ public void PerformAction(EntityUid performer, ActionsComponent? component, Acti action.Cooldown = (curTime, curTime + action.UseDelay.Value); } + Dirty(actionId, action); + if (dirty && component != null) - Dirty(component); + Dirty(performer, component); } #endregion #region AddRemoveActions /// - /// Add an action to an action component. If the entity has no action component, this will give them one. + /// Add an action to an action holder. + /// If the holder has no actions component, this will give them one. + /// + public BaseActionComponent? AddAction(EntityUid holderId, ref EntityUid? actionId, string? actionPrototypeId, EntityUid? provider = null, ActionsComponent? holderComp = null) + { + if (Deleted(actionId)) + { + if (_net.IsClient) + return null; + + if (string.IsNullOrWhiteSpace(actionPrototypeId)) + return null; + + actionId = Spawn(actionPrototypeId); + } + + AddAction(holderId, actionId.Value, provider, holderComp); + return GetActionData(actionId); + } + + /// + /// Add an action to an action holder. + /// If the holder has no actions component, this will give them one. /// - /// Entity to receive the actions - /// The action to add + /// Entity to receive the actions + /// Action entity to add /// The entity that enables these actions (e.g., flashlight). May be null (innate actions). - public virtual void AddAction(EntityUid uid, ActionType action, EntityUid? provider, ActionsComponent? comp = null, bool dirty = true) + /// Component of + /// Component of + /// Action container of + public virtual void AddAction(EntityUid holderId, EntityUid actionId, EntityUid? provider, ActionsComponent? holder = null, BaseActionComponent? action = null, bool dirty = true, BaseContainer? actionContainer = null) { - // Because action classes have state data, e.g. cooldowns and uses-remaining, people should not be adding prototypes directly - if (action is IPrototype) + action ??= GetActionData(actionId); + // TODO remove when action subscriptions are split up + if (action == null) { - Log.Error("Attempted to directly add a prototype action. You need to clone a prototype in order to use it."); + Log.Warning($"No {nameof(BaseActionComponent)} found on entity {actionId}"); return; } - comp ??= EnsureComp(uid); + holder ??= EnsureComp(holderId); action.Provider = provider; - action.AttachedEntity = uid; - AddActionInternal(comp, action); + action.AttachedEntity = holderId; + Dirty(actionId, action); + + actionContainer ??= EnsureContainer(holderId, provider); + AddActionInternal(holderId, actionId, actionContainer, holder); if (dirty) - Dirty(comp); + Dirty(holderId, holder); } - protected virtual void AddActionInternal(ActionsComponent comp, ActionType action) + protected virtual void AddActionInternal(EntityUid holderId, EntityUid actionId, BaseContainer container, ActionsComponent holder) { - comp.Actions.Add(action); + container.Insert(actionId); + holder.Actions.Add(actionId); + Dirty(holderId, holder); } /// /// Add actions to an action component. If the entity has no action component, this will give them one. /// - /// Entity to receive the actions + /// Entity to receive the actions /// The actions to add /// The entity that enables these actions (e.g., flashlight). May be null (innate actions). - public void AddActions(EntityUid uid, IEnumerable actions, EntityUid? provider, ActionsComponent? comp = null, bool dirty = true) + public void AddActions(EntityUid holderId, IEnumerable actions, EntityUid? provider, ActionsComponent? comp = null, bool dirty = true) { - comp ??= EnsureComp(uid); + comp ??= EnsureComp(holderId); var allClientExclusive = true; + var container = EnsureContainer(holderId, provider); - foreach (var action in actions) + foreach (var actionId in actions) { - AddAction(uid, action, provider, comp, false); + var action = GetActionData(actionId); + if (action == null) + continue; + + AddAction(holderId, actionId, provider, comp, action, false, container); allClientExclusive = allClientExclusive && action.ClientExclusive; } if (dirty && !allClientExclusive) - Dirty(comp); + Dirty(holderId, comp); + } + + public IEnumerable<(EntityUid Id, BaseActionComponent Comp)> GetActions(EntityUid holderId, ActionsComponent? actions = null) + { + if (!Resolve(holderId, ref actions, false)) + yield break; + + foreach (var actionId in actions.Actions) + { + if (!TryGetActionData(actionId, out var action)) + continue; + + yield return (actionId, action); + } } /// /// Remove any actions that were enabled by some other entity. Useful when unequiping items that grant actions. /// - public void RemoveProvidedActions(EntityUid uid, EntityUid provider, ActionsComponent? comp = null) + public void RemoveProvidedActions(EntityUid holderId, EntityUid provider, ActionsComponent? comp = null) { - if (!Resolve(uid, ref comp, false)) + if (!Resolve(holderId, ref comp, false)) + return; + + if (!TryGetProvidedContainer(provider, out var container)) return; - foreach (var act in comp.Actions.ToArray()) + foreach (var actionId in container.ContainedEntities.ToArray()) { - if (act.Provider == provider) - RemoveAction(uid, act, comp, dirty: false); + var action = GetActionData(actionId); + if (action?.Provider == provider) + RemoveAction(holderId, actionId, comp, dirty: false); } - Dirty(comp); + + Dirty(holderId, comp); } - public virtual void RemoveAction(EntityUid uid, ActionType action, ActionsComponent? comp = null, bool dirty = true) + public virtual void RemoveAction(EntityUid holderId, EntityUid? actionId, ActionsComponent? comp = null, BaseActionComponent? action = null, bool dirty = true) { - if (!Resolve(uid, ref comp, false)) + if (actionId == null || + !Resolve(holderId, ref comp, false) || + TerminatingOrDeleted(actionId.Value)) + { return; + } + + action ??= GetActionData(actionId); - comp.Actions.Remove(action); - action.AttachedEntity = null; + if (TryGetContainer(holderId, out var container) && container.Contains(actionId.Value)) + QueueDel(actionId.Value); + + comp.Actions.Remove(actionId.Value); + + if (action != null) + { + action.AttachedEntity = null; + Dirty(actionId.Value, action); + } if (dirty) - Dirty(comp); + Dirty(holderId, comp); + + DebugTools.Assert(Transform(actionId.Value).ParentUid.IsValid()); + } + + /// + /// Removes all actions with the given prototype id. + /// + public void RemoveAction(EntityUid holderId, string actionPrototypeId, ActionsComponent? holderComp = null) + { + if (!Resolve(holderId, ref holderComp, false)) + return; + + var actions = new List<(EntityUid Id, BaseActionComponent Comp)>(); + foreach (var (id, comp) in GetActions(holderId)) + { + if (Prototype(id)?.ID == actionPrototypeId) + actions.Add((id, comp)); + } + + if (actions.Count == 0) + return; + + foreach (var action in actions) + { + RemoveAction(holderId, action.Id, holderComp, action.Comp); + } } #endregion @@ -410,7 +706,7 @@ public virtual void RemoveAction(EntityUid uid, ActionType action, ActionsCompon #region EquipHandlers private void OnDidEquip(EntityUid uid, ActionsComponent component, DidEquipEvent args) { - var ev = new GetItemActionsEvent(args.SlotFlags); + var ev = new GetItemActionsEvent(EntityManager, _net, args.Equipee, args.SlotFlags); RaiseLocalEvent(args.Equipment, ev); if (ev.Actions.Count == 0) @@ -421,7 +717,7 @@ private void OnDidEquip(EntityUid uid, ActionsComponent component, DidEquipEvent private void OnHandEquipped(EntityUid uid, ActionsComponent component, DidEquipHandEvent args) { - var ev = new GetItemActionsEvent(); + var ev = new GetItemActionsEvent(EntityManager, _net, args.User); RaiseLocalEvent(args.Equipped, ev); if (ev.Actions.Count == 0) diff --git a/Content.Shared/Actions/WorldTargetActionComponent.cs b/Content.Shared/Actions/WorldTargetActionComponent.cs new file mode 100644 index 00000000000..4974b4478db --- /dev/null +++ b/Content.Shared/Actions/WorldTargetActionComponent.cs @@ -0,0 +1,25 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Serialization; + +namespace Content.Shared.Actions; + +[RegisterComponent, NetworkedComponent] +public sealed partial class WorldTargetActionComponent : BaseTargetActionComponent +{ + public override BaseActionEvent? BaseEvent => Event; + + /// + /// The local-event to raise when this action is performed. + /// + [DataField("event")] + [NonSerialized] + public WorldTargetActionEvent? Event; +} + +[Serializable, NetSerializable] +public sealed class WorldTargetActionComponentState : BaseActionComponentState +{ + public WorldTargetActionComponentState(WorldTargetActionComponent component, IEntityManager entManager) : base(component, entManager) + { + } +} diff --git a/Content.Shared/Administration/AdminFrozenComponent.cs b/Content.Shared/Administration/AdminFrozenComponent.cs index 8a15971055f..164cf764c86 100644 --- a/Content.Shared/Administration/AdminFrozenComponent.cs +++ b/Content.Shared/Administration/AdminFrozenComponent.cs @@ -4,6 +4,6 @@ namespace Content.Shared.Administration; [RegisterComponent, Access(typeof(AdminFrozenSystem))] [NetworkedComponent] -public sealed class AdminFrozenComponent : Component +public sealed partial class AdminFrozenComponent : Component { } diff --git a/Content.Shared/Administration/Components/DisarmProneComponent.cs b/Content.Shared/Administration/Components/DisarmProneComponent.cs index 3829dfd5285..4ba11df8e23 100644 --- a/Content.Shared/Administration/Components/DisarmProneComponent.cs +++ b/Content.Shared/Administration/Components/DisarmProneComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Administration.Components; /// [RegisterComponent, NetworkedComponent] [Access(typeof(SharedMeleeWeaponSystem))] -public sealed class DisarmProneComponent : Component +public sealed partial class DisarmProneComponent : Component { } diff --git a/Content.Shared/Administration/Components/SharedHeadstandComponent.cs b/Content.Shared/Administration/Components/SharedHeadstandComponent.cs index fdba980610a..ebc23c7b053 100644 --- a/Content.Shared/Administration/Components/SharedHeadstandComponent.cs +++ b/Content.Shared/Administration/Components/SharedHeadstandComponent.cs @@ -3,4 +3,4 @@ /// /// Flips the target's sprite on it's head, so they do a headstand. /// -public abstract class SharedHeadstandComponent : Component { } +public abstract partial class SharedHeadstandComponent : Component { } diff --git a/Content.Shared/Administration/Components/SharedKillSignComponent.cs b/Content.Shared/Administration/Components/SharedKillSignComponent.cs index 6536c39cbb6..2e6d54ca884 100644 --- a/Content.Shared/Administration/Components/SharedKillSignComponent.cs +++ b/Content.Shared/Administration/Components/SharedKillSignComponent.cs @@ -1,6 +1,6 @@ namespace Content.Shared.Administration.Components; -public abstract class SharedKillSignComponent : Component +public abstract partial class SharedKillSignComponent : Component { } diff --git a/Content.Shared/Administration/EditSolutionsEuiState.cs b/Content.Shared/Administration/EditSolutionsEuiState.cs index 218202ff3de..782c4b84f2f 100644 --- a/Content.Shared/Administration/EditSolutionsEuiState.cs +++ b/Content.Shared/Administration/EditSolutionsEuiState.cs @@ -7,10 +7,10 @@ namespace Content.Shared.Administration [Serializable, NetSerializable] public sealed class EditSolutionsEuiState : EuiStateBase { - public readonly EntityUid Target; + public readonly NetEntity Target; public readonly Dictionary? Solutions; - public EditSolutionsEuiState(EntityUid target, Dictionary? solutions) + public EditSolutionsEuiState(NetEntity target, Dictionary? solutions) { Target = target; Solutions = solutions; diff --git a/Content.Shared/Administration/Managers/ISharedAdminManager.cs b/Content.Shared/Administration/Managers/ISharedAdminManager.cs index 34a1a416764..7e01c814332 100644 --- a/Content.Shared/Administration/Managers/ISharedAdminManager.cs +++ b/Content.Shared/Administration/Managers/ISharedAdminManager.cs @@ -1,3 +1,5 @@ +using Robust.Shared.Players; + namespace Content.Shared.Administration.Managers; /// @@ -16,6 +18,18 @@ public interface ISharedAdminManager /// /// if the player is not an admin. AdminData? GetAdminData(EntityUid uid, bool includeDeAdmin = false); + + /// + /// Gets the admin data for a player, if they are an admin. + /// + /// + /// When used by the client, this only returns accurate results for the player's own session. + /// + /// + /// Whether to return admin data for admins that are current de-adminned. + /// + /// if the player is not an admin. + AdminData? GetAdminData(ICommonSession session, bool includeDeAdmin = false); /// /// See if a player has an admin flag. @@ -29,6 +43,19 @@ bool HasAdminFlag(EntityUid player, AdminFlags flag) var data = GetAdminData(player); return data != null && data.HasFlag(flag); } + + /// + /// See if a player has an admin flag. + /// + /// + /// When used by the client, this only returns accurate results for the player's own session. + /// + /// True if the player is and admin and has the specified flags. + bool HasAdminFlag(ICommonSession player, AdminFlags flag) + { + var data = GetAdminData(player); + return data != null && data.HasFlag(flag); + } /// /// Checks if a player is an admin. @@ -44,4 +71,19 @@ bool IsAdmin(EntityUid uid, bool includeDeAdmin = false) { return GetAdminData(uid, includeDeAdmin) != null; } + + /// + /// Checks if a player is an admin. + /// + /// + /// When used by the client, this only returns accurate results for the player's own session. + /// + /// + /// Whether to return admin data for admins that are current de-adminned. + /// + /// true if the player is an admin, false otherwise. + bool IsAdmin(ICommonSession session, bool includeDeAdmin = false) + { + return GetAdminData(session, includeDeAdmin) != null; + } } diff --git a/Content.Shared/Administration/PlayerInfo.cs b/Content.Shared/Administration/PlayerInfo.cs index d6b3f0c0dca..bc1195dc47d 100644 --- a/Content.Shared/Administration/PlayerInfo.cs +++ b/Content.Shared/Administration/PlayerInfo.cs @@ -10,7 +10,7 @@ public record PlayerInfo( string IdentityName, string StartingJob, bool Antag, - EntityUid? EntityUid, + NetEntity? NetEntity, NetUserId SessionId, bool Connected, bool ActiveThisRound); diff --git a/Content.Shared/Administration/SetOutfitEuiState.cs b/Content.Shared/Administration/SetOutfitEuiState.cs index 495543509ea..f1b4837859e 100644 --- a/Content.Shared/Administration/SetOutfitEuiState.cs +++ b/Content.Shared/Administration/SetOutfitEuiState.cs @@ -6,6 +6,6 @@ namespace Content.Shared.Administration [Serializable, NetSerializable] public sealed class SetOutfitEuiState : EuiStateBase { - public EntityUid TargetEntityId; + public NetEntity TargetNetEntity; } } diff --git a/Content.Shared/Alert/AlertOrderPrototype.cs b/Content.Shared/Alert/AlertOrderPrototype.cs index 5c75f1cb4c9..8279d592b4b 100644 --- a/Content.Shared/Alert/AlertOrderPrototype.cs +++ b/Content.Shared/Alert/AlertOrderPrototype.cs @@ -9,11 +9,11 @@ namespace Content.Shared.Alert /// [Prototype("alertOrder")] [DataDefinition] - public sealed class AlertOrderPrototype : IPrototype, IComparer + public sealed partial class AlertOrderPrototype : IPrototype, IComparer { [ViewVariables] [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [DataField("order")] private (string type, string alert)[] Order diff --git a/Content.Shared/Alert/AlertPrototype.cs b/Content.Shared/Alert/AlertPrototype.cs index 502cf63eec9..ba37e513329 100644 --- a/Content.Shared/Alert/AlertPrototype.cs +++ b/Content.Shared/Alert/AlertPrototype.cs @@ -24,7 +24,7 @@ public sealed class AlertPrototype : IPrototype, ISerializationHooks /// minimum and incrementing upwards. If severities are not supported, the first entry is used. /// [DataField("icons", required: true)] - public readonly List Icons = new(); + public List Icons = new(); /// /// Name to show in tooltip window. Accepts formatting. diff --git a/Content.Shared/Alert/AlertType.cs b/Content.Shared/Alert/AlertType.cs index 7f746120105..8ba35ae282a 100644 --- a/Content.Shared/Alert/AlertType.cs +++ b/Content.Shared/Alert/AlertType.cs @@ -47,7 +47,8 @@ public enum AlertType : byte Debug3, Debug4, Debug5, - Debug6 + Debug6, + SuitPower } } diff --git a/Content.Shared/Alert/AlertsComponent.cs b/Content.Shared/Alert/AlertsComponent.cs index cc63efd29f4..4468db44638 100644 --- a/Content.Shared/Alert/AlertsComponent.cs +++ b/Content.Shared/Alert/AlertsComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Alert; /// [RegisterComponent] [NetworkedComponent] -public sealed class AlertsComponent : Component +public sealed partial class AlertsComponent : Component { [ViewVariables] public Dictionary Alerts = new(); diff --git a/Content.Shared/AlertLevel/AlertLevelDisplayComponent.cs b/Content.Shared/AlertLevel/AlertLevelDisplayComponent.cs index b3a697d7296..c305296e79d 100644 --- a/Content.Shared/AlertLevel/AlertLevelDisplayComponent.cs +++ b/Content.Shared/AlertLevel/AlertLevelDisplayComponent.cs @@ -1,8 +1,8 @@ namespace Content.Shared.AlertLevel; [RegisterComponent] -public sealed class AlertLevelDisplayComponent : Component +public sealed partial class AlertLevelDisplayComponent : Component { [DataField("alertVisuals")] - public readonly Dictionary AlertVisuals = new(); + public Dictionary AlertVisuals = new(); } diff --git a/Content.Shared/Ame/SharedAmeControllerComponent.cs b/Content.Shared/Ame/SharedAmeControllerComponent.cs index 73797af268c..386d577ef38 100644 --- a/Content.Shared/Ame/SharedAmeControllerComponent.cs +++ b/Content.Shared/Ame/SharedAmeControllerComponent.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Ame; [Virtual] -public class SharedAmeControllerComponent : Component +public partial class SharedAmeControllerComponent : Component { } diff --git a/Content.Shared/Ame/SharedAmeShieldComponent.cs b/Content.Shared/Ame/SharedAmeShieldComponent.cs index 92b86f9bc4d..3057de71608 100644 --- a/Content.Shared/Ame/SharedAmeShieldComponent.cs +++ b/Content.Shared/Ame/SharedAmeShieldComponent.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Ame; [Virtual] -public class SharedAmeShieldComponent : Component +public partial class SharedAmeShieldComponent : Component { } diff --git a/Content.Shared/Anomaly/Components/AnomalyComponent.cs b/Content.Shared/Anomaly/Components/AnomalyComponent.cs index 42d6542209d..e1e15561f81 100644 --- a/Content.Shared/Anomaly/Components/AnomalyComponent.cs +++ b/Content.Shared/Anomaly/Components/AnomalyComponent.cs @@ -15,7 +15,7 @@ namespace Content.Shared.Anomaly.Components; /// Anomalies and their related components were designed here: https://hackmd.io/@ss14-design/r1sQbkJOs /// [RegisterComponent, NetworkedComponent, Access(typeof(SharedAnomalySystem))] -public sealed class AnomalyComponent : Component +public sealed partial class AnomalyComponent : Component { /// /// How likely an anomaly is to grow more dangerous. Moves both up and down. @@ -213,14 +213,14 @@ public sealed class AnomalyComponent : Component /// [ViewVariables(VVAccess.ReadWrite)] [DataField("animationTime")] - public readonly float AnimationTime = 2f; + public float AnimationTime = 2f; /// /// How far it goes in any direction. /// [ViewVariables(VVAccess.ReadWrite)] [DataField("offset")] - public readonly Vector2 FloatingOffset = new(0, 0.15f); + public Vector2 FloatingOffset = new(0, 0.15f); public readonly string AnimationKey = "anomalyfloat"; #endregion diff --git a/Content.Shared/Anomaly/Components/AnomalyPulsingComponent.cs b/Content.Shared/Anomaly/Components/AnomalyPulsingComponent.cs index 0420ffac0a1..7326118b3cb 100644 --- a/Content.Shared/Anomaly/Components/AnomalyPulsingComponent.cs +++ b/Content.Shared/Anomaly/Components/AnomalyPulsingComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Anomaly.Components; /// This component tracks anomalies that are currently pulsing /// [RegisterComponent, Access(typeof(SharedAnomalySystem))] -public sealed class AnomalyPulsingComponent : Component +public sealed partial class AnomalyPulsingComponent : Component { /// /// The time at which the pulse will be over. diff --git a/Content.Shared/Anomaly/Components/AnomalySupercriticalComponent.cs b/Content.Shared/Anomaly/Components/AnomalySupercriticalComponent.cs index b02a7a4333f..e5101fef667 100644 --- a/Content.Shared/Anomaly/Components/AnomalySupercriticalComponent.cs +++ b/Content.Shared/Anomaly/Components/AnomalySupercriticalComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Anomaly.Components; /// Tracks anomalies going supercritical /// [RegisterComponent, NetworkedComponent, Access(typeof(SharedAnomalySystem))] -public sealed class AnomalySupercriticalComponent : Component +public sealed partial class AnomalySupercriticalComponent : Component { /// /// The time when the supercritical animation ends and it does whatever effect. diff --git a/Content.Shared/Anomaly/Effects/Components/ElectricityAnomalyComponent.cs b/Content.Shared/Anomaly/Effects/Components/ElectricityAnomalyComponent.cs index 06d03f10198..5e4fc333e38 100644 --- a/Content.Shared/Anomaly/Effects/Components/ElectricityAnomalyComponent.cs +++ b/Content.Shared/Anomaly/Effects/Components/ElectricityAnomalyComponent.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Anomaly.Effects.Components; [RegisterComponent] -public sealed class ElectricityAnomalyComponent : Component +public sealed partial class ElectricityAnomalyComponent : Component { /// /// The maximum radius of the passive electrocution effect diff --git a/Content.Shared/Anomaly/Effects/Components/EntitySpawnAnomalyComponent.cs b/Content.Shared/Anomaly/Effects/Components/EntitySpawnAnomalyComponent.cs index ce1024d5efb..1dbe59a09b7 100644 --- a/Content.Shared/Anomaly/Effects/Components/EntitySpawnAnomalyComponent.cs +++ b/Content.Shared/Anomaly/Effects/Components/EntitySpawnAnomalyComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Anomaly.Effects.Components; [RegisterComponent] -public sealed class EntitySpawnAnomalyComponent : Component +public sealed partial class EntitySpawnAnomalyComponent : Component { /// /// A list of entities that are random picked to be spawned on each pulse diff --git a/Content.Shared/Anomaly/Effects/Components/GravityAnomalyComponent.cs b/Content.Shared/Anomaly/Effects/Components/GravityAnomalyComponent.cs index 1ede852f7d3..ac2ae32dff6 100644 --- a/Content.Shared/Anomaly/Effects/Components/GravityAnomalyComponent.cs +++ b/Content.Shared/Anomaly/Effects/Components/GravityAnomalyComponent.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Anomaly.Effects.Components; [RegisterComponent, NetworkedComponent, Access(typeof(SharedGravityAnomalySystem))] -public sealed class GravityAnomalyComponent : Component +public sealed partial class GravityAnomalyComponent : Component { /// /// The maximumum size the GravityWellComponent MaxRange can be. diff --git a/Content.Shared/Anomaly/Effects/Components/PyroclasticAnomalyComponent.cs b/Content.Shared/Anomaly/Effects/Components/PyroclasticAnomalyComponent.cs index 35905c37b5e..16c422f1ab4 100644 --- a/Content.Shared/Anomaly/Effects/Components/PyroclasticAnomalyComponent.cs +++ b/Content.Shared/Anomaly/Effects/Components/PyroclasticAnomalyComponent.cs @@ -1,7 +1,7 @@ namespace Content.Shared.Anomaly.Effects.Components; [RegisterComponent] -public sealed class PyroclasticAnomalyComponent : Component +public sealed partial class PyroclasticAnomalyComponent : Component { /// /// The maximum distance from which you can be ignited by the anomaly. diff --git a/Content.Shared/Anomaly/Effects/Components/TileSpawnAnomaly.cs b/Content.Shared/Anomaly/Effects/Components/TileSpawnAnomaly.cs index 5403225baea..3ea1475c756 100644 --- a/Content.Shared/Anomaly/Effects/Components/TileSpawnAnomaly.cs +++ b/Content.Shared/Anomaly/Effects/Components/TileSpawnAnomaly.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Anomaly.Effects.Components; [RegisterComponent] -public sealed class TileSpawnAnomalyComponent : Component +public sealed partial class TileSpawnAnomalyComponent : Component { /// /// The maximum radius of tiles scales with stability diff --git a/Content.Shared/Anomaly/Effects/SharedGravityAnomalySystem.cs b/Content.Shared/Anomaly/Effects/SharedGravityAnomalySystem.cs index 1f9b2fbce56..eca71e6fd73 100644 --- a/Content.Shared/Anomaly/Effects/SharedGravityAnomalySystem.cs +++ b/Content.Shared/Anomaly/Effects/SharedGravityAnomalySystem.cs @@ -1,8 +1,11 @@ using System.Linq; using Content.Shared.Anomaly.Components; using Content.Shared.Anomaly.Effects.Components; +using Content.Shared.Ghost; using Content.Shared.Throwing; using Robust.Shared.Map; +using Content.Shared.Physics; +using Robust.Shared.Physics.Components; namespace Content.Shared.Anomaly.Effects; @@ -28,9 +31,14 @@ private void OnAnomalyPulse(EntityUid uid, GravityAnomalyComponent component, re var lookup = _lookup.GetEntitiesInRange(uid, range, LookupFlags.Dynamic | LookupFlags.Sundries); var xformQuery = GetEntityQuery(); var worldPos = _xform.GetWorldPosition(xform, xformQuery); + var physQuery = GetEntityQuery(); foreach (var ent in lookup) { + if (physQuery.TryGetComponent(ent, out var phys) + && (phys.CollisionMask & (int) CollisionGroup.GhostImpassable) != 0) + continue; + var foo = _xform.GetWorldPosition(ent, xformQuery) - worldPos; _throwing.TryThrow(ent, foo * 10, strength, uid, 0); } @@ -51,9 +59,14 @@ private void OnSupercritical(EntityUid uid, GravityAnomalyComponent component, r var strength = component.MaxThrowStrength * 2; var lookup = _lookup.GetEntitiesInRange(uid, range, LookupFlags.Dynamic | LookupFlags.Sundries); var xformQuery = GetEntityQuery(); + var physQuery = GetEntityQuery(); foreach (var ent in lookup) { + if (physQuery.TryGetComponent(ent, out var phys) + && (phys.CollisionMask & (int) CollisionGroup.GhostImpassable) != 0) + continue; + var foo = _xform.GetWorldPosition(ent, xformQuery) - worldPos; _throwing.TryThrow(ent, foo * 5, strength, uid, 0); } diff --git a/Content.Shared/Anomaly/ScannerDoAfterEvent.cs b/Content.Shared/Anomaly/ScannerDoAfterEvent.cs index b280b60b705..e9c234d28fe 100644 --- a/Content.Shared/Anomaly/ScannerDoAfterEvent.cs +++ b/Content.Shared/Anomaly/ScannerDoAfterEvent.cs @@ -4,6 +4,6 @@ namespace Content.Shared.Anomaly; [Serializable, NetSerializable] -public sealed class ScannerDoAfterEvent : SimpleDoAfterEvent +public sealed partial class ScannerDoAfterEvent : SimpleDoAfterEvent { -} \ No newline at end of file +} diff --git a/Content.Shared/Anomaly/SharedAnomaly.cs b/Content.Shared/Anomaly/SharedAnomaly.cs index 60023b28e92..b7585cb5f14 100644 --- a/Content.Shared/Anomaly/SharedAnomaly.cs +++ b/Content.Shared/Anomaly/SharedAnomaly.cs @@ -1,4 +1,4 @@ -using Robust.Shared.Serialization; +using Robust.Shared.Serialization; using Robust.Shared.Utility; namespace Content.Shared.Anomaly; diff --git a/Content.Shared/Arcade/SharedSpaceVillainArcadeComponent.cs b/Content.Shared/Arcade/SharedSpaceVillainArcadeComponent.cs index b0bf87bd192..8b685421c0e 100644 --- a/Content.Shared/Arcade/SharedSpaceVillainArcadeComponent.cs +++ b/Content.Shared/Arcade/SharedSpaceVillainArcadeComponent.cs @@ -2,7 +2,7 @@ namespace Content.Shared.Arcade { - public abstract class SharedSpaceVillainArcadeComponent : Component + public abstract partial class SharedSpaceVillainArcadeComponent : Component { [Serializable, NetSerializable] public enum Indicators diff --git a/Content.Shared/Atmos/Components/GasAnalyzerComponent.cs b/Content.Shared/Atmos/Components/GasAnalyzerComponent.cs index 8a260595912..51ae8cc7406 100644 --- a/Content.Shared/Atmos/Components/GasAnalyzerComponent.cs +++ b/Content.Shared/Atmos/Components/GasAnalyzerComponent.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Atmos.Components; [RegisterComponent, NetworkedComponent] -public sealed class GasAnalyzerComponent : Component +public sealed partial class GasAnalyzerComponent : Component { [ViewVariables] public EntityUid? Target; @@ -32,11 +32,11 @@ public enum GasAnalyzerUiKey public sealed class GasAnalyzerUserMessage : BoundUserInterfaceMessage { public string DeviceName; - public EntityUid DeviceUid; + public NetEntity DeviceUid; public bool DeviceFlipped; public string? Error; public GasMixEntry[] NodeGasMixes; - public GasAnalyzerUserMessage(GasMixEntry[] nodeGasMixes, string deviceName, EntityUid deviceUid, bool deviceFlipped, string? error = null) + public GasAnalyzerUserMessage(GasMixEntry[] nodeGasMixes, string deviceName, NetEntity deviceUid, bool deviceFlipped, string? error = null) { NodeGasMixes = nodeGasMixes; DeviceName = deviceName; diff --git a/Content.Shared/Atmos/Components/GasTileOverlayComponent.cs b/Content.Shared/Atmos/Components/GasTileOverlayComponent.cs index 3f75c81c428..b97da1d30cb 100644 --- a/Content.Shared/Atmos/Components/GasTileOverlayComponent.cs +++ b/Content.Shared/Atmos/Components/GasTileOverlayComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Atmos.Components; [RegisterComponent, NetworkedComponent] -public sealed class GasTileOverlayComponent : Component +public sealed partial class GasTileOverlayComponent : Component { /// /// The tiles that have had their atmos data updated since last tick diff --git a/Content.Shared/Atmos/Components/PipeAppearanceComponent.cs b/Content.Shared/Atmos/Components/PipeAppearanceComponent.cs index b412599d659..b5f979c4821 100644 --- a/Content.Shared/Atmos/Components/PipeAppearanceComponent.cs +++ b/Content.Shared/Atmos/Components/PipeAppearanceComponent.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Atmos.Components; [RegisterComponent] -public sealed class PipeAppearanceComponent : Component +public sealed partial class PipeAppearanceComponent : Component { [DataField("sprite")] public SpriteSpecifier.Rsi Sprite = new(new("Structures/Piping/Atmospherics/pipe.rsi"), "pipeConnector"); diff --git a/Content.Shared/Atmos/Components/SharedMapAtmosphereComponent.cs b/Content.Shared/Atmos/Components/SharedMapAtmosphereComponent.cs index 5d350a030a8..9b52ab9a87f 100644 --- a/Content.Shared/Atmos/Components/SharedMapAtmosphereComponent.cs +++ b/Content.Shared/Atmos/Components/SharedMapAtmosphereComponent.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Atmos.Components; [NetworkedComponent] -public abstract class SharedMapAtmosphereComponent : Component +public abstract partial class SharedMapAtmosphereComponent : Component { [ViewVariables] public SharedGasTileOverlaySystem.GasOverlayData OverlayData; } diff --git a/Content.Shared/Atmos/EntitySystems/SharedAtmosDebugOverlaySystem.cs b/Content.Shared/Atmos/EntitySystems/SharedAtmosDebugOverlaySystem.cs index 4abdc2131f0..d52c6a4ae7d 100644 --- a/Content.Shared/Atmos/EntitySystems/SharedAtmosDebugOverlaySystem.cs +++ b/Content.Shared/Atmos/EntitySystems/SharedAtmosDebugOverlaySystem.cs @@ -39,13 +39,13 @@ public AtmosDebugOverlayData(float temperature, float[] moles, AtmosDirection pr [Serializable, NetSerializable] public sealed class AtmosDebugOverlayMessage : EntityEventArgs { - public EntityUid GridId { get; } + public NetEntity GridId { get; } public Vector2i BaseIdx { get; } // LocalViewRange*LocalViewRange public AtmosDebugOverlayData[] OverlayData { get; } - public AtmosDebugOverlayMessage(EntityUid gridIndices, Vector2i baseIdx, AtmosDebugOverlayData[] overlayData) + public AtmosDebugOverlayMessage(NetEntity gridIndices, Vector2i baseIdx, AtmosDebugOverlayData[] overlayData) { GridId = gridIndices; BaseIdx = baseIdx; diff --git a/Content.Shared/Atmos/EntitySystems/SharedGasTileOverlaySystem.cs b/Content.Shared/Atmos/EntitySystems/SharedGasTileOverlaySystem.cs index b4722fb53f3..eb0079eb358 100644 --- a/Content.Shared/Atmos/EntitySystems/SharedGasTileOverlaySystem.cs +++ b/Content.Shared/Atmos/EntitySystems/SharedGasTileOverlaySystem.cs @@ -103,8 +103,8 @@ public bool Equals(GasOverlayData other) [Serializable, NetSerializable] public sealed class GasOverlayUpdateEvent : EntityEventArgs { - public Dictionary> UpdatedChunks = new(); - public Dictionary> RemovedChunks = new(); + public Dictionary> UpdatedChunks = new(); + public Dictionary> RemovedChunks = new(); } } } diff --git a/Content.Shared/Atmos/Miasma/AntiRottingContainerComponent.cs b/Content.Shared/Atmos/Miasma/AntiRottingContainerComponent.cs index 3a05dbc3b06..0557ec91336 100644 --- a/Content.Shared/Atmos/Miasma/AntiRottingContainerComponent.cs +++ b/Content.Shared/Atmos/Miasma/AntiRottingContainerComponent.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Atmos.Miasma; /// Entities inside this container will not rot. /// [RegisterComponent] -public sealed class AntiRottingContainerComponent : Component +public sealed partial class AntiRottingContainerComponent : Component { } diff --git a/Content.Shared/Atmos/Miasma/PerishableComponent.cs b/Content.Shared/Atmos/Miasma/PerishableComponent.cs index 088c7a9911e..e7f1438bf6e 100644 --- a/Content.Shared/Atmos/Miasma/PerishableComponent.cs +++ b/Content.Shared/Atmos/Miasma/PerishableComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Atmos.Miasma; /// It may be expanded to food at some point, but it's just for mobs right now. /// [RegisterComponent] -public sealed class PerishableComponent : Component +public sealed partial class PerishableComponent : Component { /// /// How long it takes after death to start rotting. diff --git a/Content.Shared/Atmos/Miasma/RotIntoComponent.cs b/Content.Shared/Atmos/Miasma/RotIntoComponent.cs index 552f7ad1c9d..5f4a472c2e2 100644 --- a/Content.Shared/Atmos/Miasma/RotIntoComponent.cs +++ b/Content.Shared/Atmos/Miasma/RotIntoComponent.cs @@ -9,7 +9,7 @@ namespace Content.Shared.Atmos.Miasma; /// Used by raw meat to turn into rotten meat. /// [RegisterComponent, NetworkedComponent] -public sealed class RotIntoComponent : Component +public sealed partial class RotIntoComponent : Component { /// /// Entity to rot into. diff --git a/Content.Shared/Atmos/Miasma/RottingComponent.cs b/Content.Shared/Atmos/Miasma/RottingComponent.cs index e37fe3996c7..c5485eba6d3 100644 --- a/Content.Shared/Atmos/Miasma/RottingComponent.cs +++ b/Content.Shared/Atmos/Miasma/RottingComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Atmos.Miasma; /// Tracking component for stuff that has started to rot. /// [RegisterComponent, NetworkedComponent] -public sealed class RottingComponent : Component +public sealed partial class RottingComponent : Component { /// /// Whether or not the rotting should deal damage diff --git a/Content.Shared/Atmos/Monitor/AtmosAlarmThreshold.cs b/Content.Shared/Atmos/Monitor/AtmosAlarmThreshold.cs index 1a9fb71a056..7ad0e0f5022 100644 --- a/Content.Shared/Atmos/Monitor/AtmosAlarmThreshold.cs +++ b/Content.Shared/Atmos/Monitor/AtmosAlarmThreshold.cs @@ -8,26 +8,26 @@ namespace Content.Shared.Atmos.Monitor; public sealed class AtmosAlarmThresholdPrototype : IPrototype { [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [DataField("ignore")] - public readonly bool Ignore; + public bool Ignore; [DataField("upperBound")] - public readonly AlarmThresholdSetting UpperBound = AlarmThresholdSetting.Disabled; + public AlarmThresholdSetting UpperBound = AlarmThresholdSetting.Disabled; [DataField("lowerBound")] - public readonly AlarmThresholdSetting LowerBound = AlarmThresholdSetting.Disabled; + public AlarmThresholdSetting LowerBound = AlarmThresholdSetting.Disabled; [DataField("upperWarnAround")] - public readonly AlarmThresholdSetting UpperWarningPercentage = AlarmThresholdSetting.Disabled; + public AlarmThresholdSetting UpperWarningPercentage = AlarmThresholdSetting.Disabled; [DataField("lowerWarnAround")] - public readonly AlarmThresholdSetting LowerWarningPercentage = AlarmThresholdSetting.Disabled; + public AlarmThresholdSetting LowerWarningPercentage = AlarmThresholdSetting.Disabled; } [Serializable, NetSerializable, DataDefinition] -public sealed class AtmosAlarmThreshold +public sealed partial class AtmosAlarmThreshold { [DataField("ignore")] public bool Ignore; @@ -256,7 +256,7 @@ public void SetLimit(AtmosMonitorLimitType whichLimit, float limit) } [DataDefinition, Serializable] -public readonly struct AlarmThresholdSetting +public readonly partial struct AlarmThresholdSetting { [DataField("enabled")] public bool Enabled { get; init; } = true; diff --git a/Content.Shared/Atmos/Piping/Binary/Components/SharedGasCanisterComponent.cs b/Content.Shared/Atmos/Piping/Binary/Components/SharedGasCanisterComponent.cs index c7694aaae77..23300cb2a01 100644 --- a/Content.Shared/Atmos/Piping/Binary/Components/SharedGasCanisterComponent.cs +++ b/Content.Shared/Atmos/Piping/Binary/Components/SharedGasCanisterComponent.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Atmos.Piping.Binary.Components { /// - /// Key representing which is currently open. + /// Key representing which is currently open. /// Useful when there are multiple UI for an object. Here it's future-proofing only. /// [Serializable, NetSerializable] diff --git a/Content.Shared/Atmos/Piping/Unary/Components/SharedGasThermomachineComponent.cs b/Content.Shared/Atmos/Piping/Unary/Components/SharedGasThermomachineComponent.cs index 4bdd6a0e5fd..259ebf4eea1 100644 --- a/Content.Shared/Atmos/Piping/Unary/Components/SharedGasThermomachineComponent.cs +++ b/Content.Shared/Atmos/Piping/Unary/Components/SharedGasThermomachineComponent.cs @@ -12,14 +12,6 @@ public enum ThermomachineUiKey Key } -[Serializable] -[NetSerializable] -public enum ThermoMachineMode : byte -{ - Freezer = 0, - Heater = 1, -} - [Serializable] [NetSerializable] public sealed class GasThermomachineToggleMessage : BoundUserInterfaceMessage @@ -46,14 +38,14 @@ public sealed class GasThermomachineBoundUserInterfaceState : BoundUserInterface public float MaxTemperature { get; } public float Temperature { get; } public bool Enabled { get; } - public ThermoMachineMode Mode { get; } + public bool IsHeater { get; } - public GasThermomachineBoundUserInterfaceState(float minTemperature, float maxTemperature, float temperature, bool enabled, ThermoMachineMode mode) + public GasThermomachineBoundUserInterfaceState(float minTemperature, float maxTemperature, float temperature, bool enabled, bool isHeater) { MinTemperature = minTemperature; MaxTemperature = maxTemperature; Temperature = temperature; Enabled = enabled; - Mode = mode; + IsHeater = isHeater; } } diff --git a/Content.Shared/Atmos/Prototypes/GasPrototype.cs b/Content.Shared/Atmos/Prototypes/GasPrototype.cs index 39a041a3b5f..75416db3f99 100644 --- a/Content.Shared/Atmos/Prototypes/GasPrototype.cs +++ b/Content.Shared/Atmos/Prototypes/GasPrototype.cs @@ -14,7 +14,7 @@ public sealed class GasPrototype : IPrototype [ViewVariables] [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// /// Specific heat for gas. @@ -39,7 +39,7 @@ public sealed class GasPrototype : IPrototype /// Minimum amount of moles for this gas to be visible. /// [DataField("gasMolesVisible")] - public float GasMolesVisible { get; } = 0.25f; + public float GasMolesVisible { get; private set; } = 0.25f; /// /// Visibility for this gas will be max after this value. @@ -53,7 +53,7 @@ public sealed class GasPrototype : IPrototype /// If this reagent is in gas form, this is the path to the overlay that will be used to make the gas visible. /// [DataField("gasOverlayTexture")] - public string GasOverlayTexture { get; } = string.Empty; + public string GasOverlayTexture { get; private set; } = string.Empty; /// /// If this reagent is in gas form, this will be the path to the RSI sprite that will be used to make the gas visible. @@ -71,15 +71,15 @@ public sealed class GasPrototype : IPrototype /// Path to the tile overlay used when this gas appears visible. /// [DataField("overlayPath")] - public string OverlayPath { get; } = string.Empty; + public string OverlayPath { get; private set; } = string.Empty; /// /// The reagent that this gas will turn into when inhaled. /// [DataField("reagent", customTypeSerializer:typeof(PrototypeIdSerializer))] - public string? Reagent { get; } = default!; + public string? Reagent { get; private set; } = default!; - [DataField("color")] public string Color { get; } = string.Empty; + [DataField("color")] public string Color { get; private set; } = string.Empty; [DataField("pricePerMole")] public float PricePerMole { get; set; } = 0; diff --git a/Content.Shared/Audio/AmbientSoundComponent.cs b/Content.Shared/Audio/AmbientSoundComponent.cs index db13db2e6fa..8075c0bd4b9 100644 --- a/Content.Shared/Audio/AmbientSoundComponent.cs +++ b/Content.Shared/Audio/AmbientSoundComponent.cs @@ -10,7 +10,7 @@ namespace Content.Shared.Audio; [RegisterComponent] [NetworkedComponent] [Access(typeof(SharedAmbientSoundSystem))] -public sealed class AmbientSoundComponent : Component, IComponentTreeEntry +public sealed partial class AmbientSoundComponent : Component, IComponentTreeEntry { [DataField("enabled")] [ViewVariables(VVAccess.ReadWrite)] // only for map editing diff --git a/Content.Shared/Audio/SharedContentAudioSystem.cs b/Content.Shared/Audio/SharedContentAudioSystem.cs index 77f1ab87ecd..7151ef2c174 100644 --- a/Content.Shared/Audio/SharedContentAudioSystem.cs +++ b/Content.Shared/Audio/SharedContentAudioSystem.cs @@ -6,6 +6,11 @@ public abstract class SharedContentAudioSystem : EntitySystem { [Dependency] private readonly SharedAudioSystem _audio = default!; + /// + /// Standard variation to use for sounds. + /// + public const float DefaultVariation = 0.05f; + public override void Initialize() { base.Initialize(); diff --git a/Content.Shared/BarSign/BarSignComponent.cs b/Content.Shared/BarSign/BarSignComponent.cs index 2800f3c3617..182597ba2e6 100644 --- a/Content.Shared/BarSign/BarSignComponent.cs +++ b/Content.Shared/BarSign/BarSignComponent.cs @@ -5,7 +5,7 @@ namespace Content.Shared.BarSign { [RegisterComponent, NetworkedComponent] - public sealed class BarSignComponent : Component + public sealed partial class BarSignComponent : Component { [DataField("current", customTypeSerializer:typeof(PrototypeIdSerializer))] public string? CurrentSign; diff --git a/Content.Shared/BarSign/BarSignPrototype.cs b/Content.Shared/BarSign/BarSignPrototype.cs index 66a6e8fa189..6b8fec1275c 100644 --- a/Content.Shared/BarSign/BarSignPrototype.cs +++ b/Content.Shared/BarSign/BarSignPrototype.cs @@ -7,7 +7,7 @@ public sealed class BarSignPrototype : IPrototype { [ViewVariables] [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [DataField("icon")] public string Icon { get; private set; } = string.Empty; diff --git a/Content.Shared/Beam/Components/SharedBeamComponent.cs b/Content.Shared/Beam/Components/SharedBeamComponent.cs index a903604b151..9c5c5dd3448 100644 --- a/Content.Shared/Beam/Components/SharedBeamComponent.cs +++ b/Content.Shared/Beam/Components/SharedBeamComponent.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Beam.Components; /// /// Use this as a generic beam. Not for something like a laser gun, more for something continuous like lightning. /// -public abstract class SharedBeamComponent : Component +public abstract partial class SharedBeamComponent : Component { /// /// A unique list of targets that this beam collided with. @@ -97,13 +97,13 @@ public BeamFiredEvent(EntityUid createdBeam) [Serializable, NetSerializable] public sealed class BeamVisualizerEvent : EntityEventArgs { - public readonly EntityUid Beam; + public readonly NetEntity Beam; public readonly float DistanceLength; public readonly Angle UserAngle; public readonly string? BodyState; public readonly string Shader = "unshaded"; - public BeamVisualizerEvent(EntityUid beam, float distanceLength, Angle userAngle, string? bodyState = null, string shader = "unshaded") + public BeamVisualizerEvent(NetEntity beam, float distanceLength, Angle userAngle, string? bodyState = null, string shader = "unshaded") { Beam = beam; DistanceLength = distanceLength; diff --git a/Content.Shared/Bed/Sleep/ForcedSleepingComponent.cs b/Content.Shared/Bed/Sleep/ForcedSleepingComponent.cs index ca0e632210e..197e8cc56a8 100644 --- a/Content.Shared/Bed/Sleep/ForcedSleepingComponent.cs +++ b/Content.Shared/Bed/Sleep/ForcedSleepingComponent.cs @@ -6,6 +6,6 @@ namespace Content.Shared.Bed.Sleep /// Prevents waking up. Use as a status effect. /// [NetworkedComponent, RegisterComponent] - public sealed class ForcedSleepingComponent : Component + public sealed partial class ForcedSleepingComponent : Component {} } diff --git a/Content.Shared/Bed/Sleep/SharedSleepingSystem.cs b/Content.Shared/Bed/Sleep/SharedSleepingSystem.cs index 458a69b6215..bb9c8dcf438 100644 --- a/Content.Shared/Bed/Sleep/SharedSleepingSystem.cs +++ b/Content.Shared/Bed/Sleep/SharedSleepingSystem.cs @@ -1,14 +1,22 @@ -using Content.Shared.Speech; using Content.Shared.Actions; using Content.Shared.Bed.Sleep; using Content.Shared.Eye.Blinding.Systems; +using Content.Shared.Speech; +using Robust.Shared.Network; +using Robust.Shared.Prototypes; +using Robust.Shared.Timing; namespace Content.Server.Bed.Sleep { public abstract class SharedSleepingSystem : EntitySystem { + [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly INetManager _net = default!; + [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; [Dependency] private readonly BlindableSystem _blindableSystem = default!; + [ValidatePrototypeId] private const string WakeActionId = "ActionWake"; + public override void Initialize() { base.Initialize(); @@ -22,7 +30,7 @@ public override void Initialize() private void OnSleepUnpaused(EntityUid uid, SleepingComponent component, ref EntityUnpausedEvent args) { component.CoolDownEnd += args.PausedTime; - Dirty(component); + Dirty(uid, component); } private void OnStartup(EntityUid uid, SleepingComponent component, ComponentStartup args) @@ -30,10 +38,19 @@ private void OnStartup(EntityUid uid, SleepingComponent component, ComponentStar var ev = new SleepStateChangedEvent(true); RaiseLocalEvent(uid, ev); _blindableSystem.UpdateIsBlind(uid); + + if (_net.IsClient) + return; + + component.WakeAction = Spawn(WakeActionId); + _actionsSystem.SetCooldown(component.WakeAction, _gameTiming.CurTime, _gameTiming.CurTime + TimeSpan.FromSeconds(15)); + _actionsSystem.AddAction(uid, component.WakeAction.Value, null); } private void OnShutdown(EntityUid uid, SleepingComponent component, ComponentShutdown args) { + _actionsSystem.RemoveAction(uid, component.WakeAction); + var ev = new SleepStateChangedEvent(false); RaiseLocalEvent(uid, ev); _blindableSystem.UpdateIsBlind(uid); @@ -53,9 +70,9 @@ private void OnSeeAttempt(EntityUid uid, SleepingComponent component, CanSeeAtte } -public sealed class SleepActionEvent : InstantActionEvent {} +public sealed partial class SleepActionEvent : InstantActionEvent {} -public sealed class WakeActionEvent : InstantActionEvent {} +public sealed partial class WakeActionEvent : InstantActionEvent {} /// /// Raised on an entity when they fall asleep or wake up. diff --git a/Content.Shared/Bed/Sleep/SleepEmitSoundComponent.cs b/Content.Shared/Bed/Sleep/SleepEmitSoundComponent.cs index b48d3b239cf..e1918eac262 100644 --- a/Content.Shared/Bed/Sleep/SleepEmitSoundComponent.cs +++ b/Content.Shared/Bed/Sleep/SleepEmitSoundComponent.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Bed.Sleep; [RegisterComponent] -public sealed class SleepEmitSoundComponent : Component +public sealed partial class SleepEmitSoundComponent : Component { /// /// Sound to play when sleeping diff --git a/Content.Shared/Bed/Sleep/SleepingComponent.cs b/Content.Shared/Bed/Sleep/SleepingComponent.cs index 4ea419c65ac..94838b658ff 100644 --- a/Content.Shared/Bed/Sleep/SleepingComponent.cs +++ b/Content.Shared/Bed/Sleep/SleepingComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Bed.Sleep; /// Added to entities when they go to sleep. /// [NetworkedComponent, RegisterComponent] -public sealed class SleepingComponent : Component +public sealed partial class SleepingComponent : Component { /// /// How much damage of any type it takes to wake this entity. @@ -25,4 +25,6 @@ public sealed class SleepingComponent : Component [DataField("cooldownEnd", customTypeSerializer:typeof(TimeOffsetSerializer))] public TimeSpan CoolDownEnd; + + [DataField("wakeAction")] public EntityUid? WakeAction; } diff --git a/Content.Shared/Bible/SummonActionEvent.cs b/Content.Shared/Bible/SummonActionEvent.cs new file mode 100644 index 00000000000..3d57f4095e7 --- /dev/null +++ b/Content.Shared/Bible/SummonActionEvent.cs @@ -0,0 +1,8 @@ +using Content.Shared.Actions; + +namespace Content.Shared.Bible; + +public sealed partial class SummonActionEvent : InstantActionEvent +{ + +} \ No newline at end of file diff --git a/Content.Shared/Blocking/BlockingSystem.cs b/Content.Shared/Blocking/BlockingSystem.cs index 7a7cf02e1d9..37350581540 100644 --- a/Content.Shared/Blocking/BlockingSystem.cs +++ b/Content.Shared/Blocking/BlockingSystem.cs @@ -1,8 +1,6 @@ using System.Linq; using Content.Shared.Actions; -using Content.Shared.Actions.ActionTypes; using Content.Shared.Damage; -using Content.Shared.Damage.Prototypes; using Content.Shared.Examine; using Content.Shared.Hands; using Content.Shared.Hands.Components; @@ -80,11 +78,7 @@ private void OnDrop(EntityUid uid, BlockingComponent component, DroppedEvent arg private void OnGetActions(EntityUid uid, BlockingComponent component, GetItemActionsEvent args) { - if (component.BlockingToggleAction == null && _proto.TryIndex(component.BlockingToggleActionId, out InstantActionPrototype? act)) - component.BlockingToggleAction = new(act); - - if (component.BlockingToggleAction != null) - args.Actions.Add(component.BlockingToggleAction); + args.AddAction(ref component.BlockingToggleActionEntity, component.BlockingToggleAction); } private void OnToggleAction(EntityUid uid, BlockingComponent component, ToggleActionEvent args) @@ -191,7 +185,7 @@ public bool StartBlocking(EntityUid item, BlockingComponent component, EntityUid CantBlockError(user); return false; } - _actionsSystem.SetToggled(component.BlockingToggleAction, true); + _actionsSystem.SetToggled(component.BlockingToggleActionEntity, true); _popupSystem.PopupEntity(msgUser, user, user); _popupSystem.PopupEntity(msgOther, user, Filter.PvsExcept(user), true); } @@ -252,7 +246,7 @@ public bool StopBlocking(EntityUid item, BlockingComponent component, EntityUid if (xform.Anchored) _transformSystem.Unanchor(user, xform); - _actionsSystem.SetToggled(component.BlockingToggleAction, false); + _actionsSystem.SetToggled(component.BlockingToggleActionEntity, false); _fixtureSystem.DestroyFixture(user, BlockingComponent.BlockFixtureID, body: physicsComponent); _physics.SetBodyType(user, blockingUserComponent.OriginalBodyType, body: physicsComponent); _popupSystem.PopupEntity(msgUser, user, user); diff --git a/Content.Shared/Blocking/Components/BlockingComponent.cs b/Content.Shared/Blocking/Components/BlockingComponent.cs index b9d2e33657e..b33a7d7a734 100644 --- a/Content.Shared/Blocking/Components/BlockingComponent.cs +++ b/Content.Shared/Blocking/Components/BlockingComponent.cs @@ -1,7 +1,7 @@ -using Content.Shared.Actions.ActionTypes; using Content.Shared.Damage; using Robust.Shared.Audio; using Robust.Shared.Physics.Collision.Shapes; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Shared.Blocking; @@ -10,7 +10,7 @@ namespace Content.Shared.Blocking; /// This component goes on an item that you want to use to block /// [RegisterComponent] -public sealed class BlockingComponent : Component +public sealed partial class BlockingComponent : Component { /// /// The entity that's blocking @@ -47,11 +47,11 @@ public sealed class BlockingComponent : Component [DataField("activeBlockModifier", required: true)] public DamageModifierSet ActiveBlockDamageModifier = default!; - [DataField("blockingToggleActionId", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string BlockingToggleActionId = "ToggleBlock"; + [DataField("blockingToggleAction", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string BlockingToggleAction = "ActionToggleBlock"; - [DataField("blockingToggleAction")] - public InstantAction? BlockingToggleAction; + [DataField("blockingToggleActionEntity")] + public EntityUid? BlockingToggleActionEntity; /// /// The sound to be played when you get hit while actively blocking diff --git a/Content.Shared/Blocking/Components/BlockingUserComponent.cs b/Content.Shared/Blocking/Components/BlockingUserComponent.cs index 7f71cefd435..129741478c7 100644 --- a/Content.Shared/Blocking/Components/BlockingUserComponent.cs +++ b/Content.Shared/Blocking/Components/BlockingUserComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Blocking; /// This component gets dynamically added to an Entity via the /// [RegisterComponent] -public sealed class BlockingUserComponent : Component +public sealed partial class BlockingUserComponent : Component { /// /// The entity that's being used to block diff --git a/Content.Shared/Body/Components/BodyComponent.cs b/Content.Shared/Body/Components/BodyComponent.cs index 312f37f251d..84027d2c372 100644 --- a/Content.Shared/Body/Components/BodyComponent.cs +++ b/Content.Shared/Body/Components/BodyComponent.cs @@ -9,10 +9,10 @@ namespace Content.Shared.Body.Components; [RegisterComponent, NetworkedComponent] [Access(typeof(SharedBodySystem))] -public sealed class BodyComponent : Component +public sealed partial class BodyComponent : Component { [DataField("prototype", customTypeSerializer: typeof(PrototypeIdSerializer))] - public readonly string? Prototype; + public string? Prototype; [DataField("root")] public BodyPartSlot? Root; diff --git a/Content.Shared/Body/Organ/OrganComponent.cs b/Content.Shared/Body/Organ/OrganComponent.cs index ac676e99803..e48d6da3007 100644 --- a/Content.Shared/Body/Organ/OrganComponent.cs +++ b/Content.Shared/Body/Organ/OrganComponent.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Body.Organ; [RegisterComponent, NetworkedComponent] [Access(typeof(SharedBodySystem))] -public sealed class OrganComponent : Component +public sealed partial class OrganComponent : Component { [DataField("body")] public EntityUid? Body; diff --git a/Content.Shared/Body/Organ/OrganComponentState.cs b/Content.Shared/Body/Organ/OrganComponentState.cs index 821c2c2e5bd..6ca323fd130 100644 --- a/Content.Shared/Body/Organ/OrganComponentState.cs +++ b/Content.Shared/Body/Organ/OrganComponentState.cs @@ -5,10 +5,10 @@ namespace Content.Shared.Body.Organ; [Serializable, NetSerializable] public sealed class OrganComponentState : ComponentState { - public readonly EntityUid? Body; + public readonly NetEntity? Body; public readonly OrganSlot? Parent; - public OrganComponentState(EntityUid? body, OrganSlot? parent) + public OrganComponentState(NetEntity? body, OrganSlot? parent) { Body = body; Parent = parent; diff --git a/Content.Shared/Body/Organ/OrganSlot.cs b/Content.Shared/Body/Organ/OrganSlot.cs index 924e4f8aaf8..e67c9852bc1 100644 --- a/Content.Shared/Body/Organ/OrganSlot.cs +++ b/Content.Shared/Body/Organ/OrganSlot.cs @@ -5,10 +5,23 @@ namespace Content.Shared.Body.Organ; [Serializable, NetSerializable] [Access(typeof(SharedBodySystem))] -[DataRecord] -public sealed record OrganSlot(string Id, EntityUid Parent) +[DataDefinition] +public sealed partial record OrganSlot { - public EntityUid? Child { get; set; } + [DataField("id")] + public string Id = string.Empty; + + [NonSerialized] + [DataField("parent")] + public EntityUid Parent; + + public NetEntity NetParent; + + [NonSerialized] + [DataField("child")] + public EntityUid? Child; + + public NetEntity? NetChild; // Rider doesn't suggest explicit properties during deconstruction without this public void Deconstruct(out EntityUid? child, out string id, out EntityUid parent) diff --git a/Content.Shared/Body/Part/BodyPartComponent.cs b/Content.Shared/Body/Part/BodyPartComponent.cs index 6e06b1dc0d1..dd200c491a5 100644 --- a/Content.Shared/Body/Part/BodyPartComponent.cs +++ b/Content.Shared/Body/Part/BodyPartComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Body.Part; [RegisterComponent, NetworkedComponent] [Access(typeof(SharedBodySystem))] -public sealed class BodyPartComponent : Component +public sealed partial class BodyPartComponent : Component { [DataField("body")] public EntityUid? Body; diff --git a/Content.Shared/Body/Part/BodyPartComponentState.cs b/Content.Shared/Body/Part/BodyPartComponentState.cs index bd3cf55efde..e50ecdda125 100644 --- a/Content.Shared/Body/Part/BodyPartComponentState.cs +++ b/Content.Shared/Body/Part/BodyPartComponentState.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Body.Part; [Serializable, NetSerializable] public sealed class BodyPartComponentState : ComponentState { - public readonly EntityUid? Body; + public readonly NetEntity? Body; public readonly BodyPartSlot? ParentSlot; public readonly Dictionary Children; public readonly Dictionary Organs; @@ -15,7 +15,7 @@ public sealed class BodyPartComponentState : ComponentState public readonly BodyPartSymmetry Symmetry; public BodyPartComponentState( - EntityUid? body, + NetEntity? body, BodyPartSlot? parentSlot, Dictionary children, Dictionary organs, diff --git a/Content.Shared/Body/Part/BodyPartSlot.cs b/Content.Shared/Body/Part/BodyPartSlot.cs index da80a6d8327..8f6348ce33a 100644 --- a/Content.Shared/Body/Part/BodyPartSlot.cs +++ b/Content.Shared/Body/Part/BodyPartSlot.cs @@ -5,10 +5,32 @@ namespace Content.Shared.Body.Part; [Serializable, NetSerializable] [Access(typeof(SharedBodySystem))] -[DataRecord] -public sealed record BodyPartSlot(string Id, EntityUid Parent, BodyPartType? Type) +[DataDefinition] +public sealed partial record BodyPartSlot { - public EntityUid? Child { get; set; } + [DataField("id")] + public string Id = string.Empty; + + [DataField("type")] + public BodyPartType? Type; + + [NonSerialized] + [DataField("parent")] + public EntityUid Parent; + + public NetEntity NetParent; + + [NonSerialized] + [DataField("child")] + public EntityUid? Child; + + public NetEntity? NetChild; + + public void SetChild(EntityUid? child, NetEntity? netChild) + { + Child = child; + NetChild = netChild; + } // Rider doesn't suggest explicit properties during deconstruction without this public void Deconstruct(out EntityUid? child, out string id, out EntityUid parent, out BodyPartType? type) diff --git a/Content.Shared/Body/Prototypes/BodyPrototype.cs b/Content.Shared/Body/Prototypes/BodyPrototype.cs index 05defb3f6e9..e3a8d01ce01 100644 --- a/Content.Shared/Body/Prototypes/BodyPrototype.cs +++ b/Content.Shared/Body/Prototypes/BodyPrototype.cs @@ -11,9 +11,9 @@ public sealed class BodyPrototype : IPrototype [DataField("name")] public string Name { get; private set; } = ""; - [DataField("root")] public string Root { get; } = string.Empty; + [DataField("root")] public string Root { get; private set; } = string.Empty; - [DataField("slots")] public Dictionary Slots { get; } = new(); + [DataField("slots")] public Dictionary Slots { get; private set; } = new(); private BodyPrototype() { } @@ -30,7 +30,7 @@ public BodyPrototype(string id, string name, string root, Dictionary))] - public readonly string? Part; + public string? Part; public readonly HashSet Connections = new(); public readonly Dictionary Organs = new(); diff --git a/Content.Shared/Body/Prototypes/MetabolismGroupPrototype.cs b/Content.Shared/Body/Prototypes/MetabolismGroupPrototype.cs index bf8cf4f2d4b..2bf2c5110e4 100644 --- a/Content.Shared/Body/Prototypes/MetabolismGroupPrototype.cs +++ b/Content.Shared/Body/Prototypes/MetabolismGroupPrototype.cs @@ -6,6 +6,6 @@ namespace Content.Shared.Body.Prototypes public sealed class MetabolismGroupPrototype : IPrototype { [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; } } diff --git a/Content.Shared/Body/Prototypes/MetabolizerTypePrototype.cs b/Content.Shared/Body/Prototypes/MetabolizerTypePrototype.cs index e5eee21185a..4add9738f30 100644 --- a/Content.Shared/Body/Prototypes/MetabolizerTypePrototype.cs +++ b/Content.Shared/Body/Prototypes/MetabolizerTypePrototype.cs @@ -6,9 +6,9 @@ namespace Content.Shared.Body.Prototypes public sealed class MetabolizerTypePrototype : IPrototype { [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [DataField("name", required: true)] - public string Name { get; } = default!; + public string Name { get; private set; } = default!; } } diff --git a/Content.Shared/Body/Systems/SharedBodySystem.Body.cs b/Content.Shared/Body/Systems/SharedBodySystem.Body.cs index 151f287cdb4..9519faf0f1e 100644 --- a/Content.Shared/Body/Systems/SharedBodySystem.Body.cs +++ b/Content.Shared/Body/Systems/SharedBodySystem.Body.cs @@ -38,7 +38,7 @@ private void OnBodyInit(EntityUid bodyId, BodyComponent body, ComponentInit args var prototype = Prototypes.Index(body.Prototype); - if (!_netManager.IsClient || bodyId.IsClientSide()) + if (!_netManager.IsClient || IsClientSide(bodyId)) InitBody(body, prototype); Dirty(body); // Client doesn't actually spawn the body, need to sync it @@ -72,7 +72,12 @@ public bool TryCreateBodyRootSlot( body.Root != null) return false; - slot = new BodyPartSlot(slotId, bodyId.Value, null); + slot = new BodyPartSlot + { + Id = slotId, + Parent = bodyId.Value, + NetParent = GetNetEntity(bodyId.Value), + }; body.Root = slot; return true; @@ -86,7 +91,13 @@ protected void InitBody(BodyComponent body, BodyPrototype prototype) return; var bodyId = Spawn(root.Part, body.Owner.ToCoordinates()); var partComponent = Comp(bodyId); - var slot = new BodyPartSlot(root.Part, body.Owner, partComponent.PartType); + var slot = new BodyPartSlot + { + Id = root.Part, + Type = partComponent.PartType, + Parent = body.Owner, + NetParent = GetNetEntity(body.Owner), + }; body.Root = slot; partComponent.Body = bodyId; diff --git a/Content.Shared/Body/Systems/SharedBodySystem.Organs.cs b/Content.Shared/Body/Systems/SharedBodySystem.Organs.cs index dbfadc6a0fe..57fea15ba44 100644 --- a/Content.Shared/Body/Systems/SharedBodySystem.Organs.cs +++ b/Content.Shared/Body/Systems/SharedBodySystem.Organs.cs @@ -12,6 +12,8 @@ namespace Content.Shared.Body.Systems; public partial class SharedBodySystem { + [Dependency] private readonly SharedContainerSystem _container = default!; + private void InitializeOrgans() { SubscribeLocalEvent(OnOrganGetState); @@ -23,7 +25,12 @@ private void InitializeOrgans() if (!Resolve(parent, ref part, false)) return null; - var slot = new OrganSlot(slotId, parent); + var slot = new OrganSlot() + { + Id = slotId, + Parent = parent, + NetParent = GetNetEntity(parent), + }; part.Organs.Add(slotId, slot); return slot; @@ -35,12 +42,12 @@ private bool CanInsertOrgan(EntityUid? organId, OrganSlot slot, OrganComponent? slot.Child == null && Resolve(organId.Value, ref organ, false) && Containers.TryGetContainer(slot.Parent, BodyContainerId, out var container) && - container.CanInsert(organId.Value); + _container.CanInsert(organId.Value, container); } private void OnOrganGetState(EntityUid uid, OrganComponent organ, ref ComponentGetState args) { - args.State = new OrganComponentState(organ.Body, organ.ParentSlot); + args.State = new OrganComponentState(GetNetEntity(organ.Body), organ.ParentSlot); } private void OnOrganHandleState(EntityUid uid, OrganComponent organ, ref ComponentHandleState args) @@ -48,7 +55,7 @@ private void OnOrganHandleState(EntityUid uid, OrganComponent organ, ref Compone if (args.Current is not OrganComponentState state) return; - organ.Body = state.Body; + organ.Body = EnsureEntity(state.Body, uid); organ.ParentSlot = state.Parent; } diff --git a/Content.Shared/Body/Systems/SharedBodySystem.Parts.cs b/Content.Shared/Body/Systems/SharedBodySystem.Parts.cs index 8c55fe9cddc..b58a9cefd22 100644 --- a/Content.Shared/Body/Systems/SharedBodySystem.Parts.cs +++ b/Content.Shared/Body/Systems/SharedBodySystem.Parts.cs @@ -26,7 +26,7 @@ private void InitializeParts() private void OnPartGetState(EntityUid uid, BodyPartComponent part, ref ComponentGetState args) { args.State = new BodyPartComponentState( - part.Body, + GetNetEntity(part.Body), part.ParentSlot, part.Children, part.Organs, @@ -41,7 +41,7 @@ private void OnPartHandleState(EntityUid uid, BodyPartComponent part, ref Compon if (args.Current is not BodyPartComponentState state) return; - part.Body = state.Body; + part.Body = EnsureEntity(state.Body, uid); part.ParentSlot = state.ParentSlot; // TODO use containers. This is broken and does not work. part.Children = state.Children; // TODO use containers. This is broken and does not work. part.Organs = state.Organs; // TODO end my suffering. @@ -54,7 +54,7 @@ private void OnPartRemoved(EntityUid uid, BodyPartComponent part, ComponentRemov { if (part.ParentSlot is { } slot) { - slot.Child = null; + slot.SetChild(null, GetNetEntity(null)); DirtyAllComponents(slot.Parent); } @@ -73,7 +73,13 @@ private void OnPartRemoved(EntityUid uid, BodyPartComponent part, ComponentRemov if (!Resolve(parent, ref part, false)) return null; - var slot = new BodyPartSlot(slotId, parent, partType); + var slot = new BodyPartSlot + { + Id = slotId, + Type = partType, + Parent = parent, + NetParent = GetNetEntity(parent), + }; part.Children.Add(slotId, slot); return slot; @@ -91,7 +97,12 @@ public bool TryCreatePartSlot( !Resolve(parentId.Value, ref parent, false)) return false; - slot = new BodyPartSlot(id, parentId.Value, null); + slot = new BodyPartSlot + { + Id = id, + Parent = parentId.Value, + NetParent = GetNetEntity(parentId.Value), + }; if (!parent.Children.TryAdd(id, slot)) { slot = null; @@ -171,7 +182,7 @@ public bool CanAttachPart([NotNullWhen(true)] EntityUid? partId, BodyPartSlot sl Resolve(partId.Value, ref part, false) && (slot.Type == null || slot.Type == part.PartType) && Containers.TryGetContainer(slot.Parent, BodyContainerId, out var container) && - container.CanInsert(partId.Value); + _container.CanInsert(partId.Value, container); } public virtual bool AttachPart( @@ -191,7 +202,7 @@ public virtual bool AttachPart( if (!container.Insert(partId.Value)) return false; - slot.Child = partId; + slot.SetChild(partId, GetNetEntity(partId)); part.ParentSlot = slot; if (TryComp(slot.Parent, out BodyPartComponent? parentPart)) @@ -241,7 +252,7 @@ public virtual bool DropPart(EntityUid? partId, BodyPartComponent? part = null) var oldBodyNullable = part.Body; - slot.Child = null; + slot.SetChild(null, null); part.ParentSlot = null; part.Body = null; diff --git a/Content.Shared/Bql/ToolshedVisualizeEuiState.cs b/Content.Shared/Bql/ToolshedVisualizeEuiState.cs index 95058546144..64595f6ecf4 100644 --- a/Content.Shared/Bql/ToolshedVisualizeEuiState.cs +++ b/Content.Shared/Bql/ToolshedVisualizeEuiState.cs @@ -6,9 +6,9 @@ namespace Content.Shared.Bql; [Serializable, NetSerializable] public sealed class ToolshedVisualizeEuiState : EuiStateBase { - public readonly (string name, EntityUid entity)[] Entities; + public readonly (string name, NetEntity entity)[] Entities; - public ToolshedVisualizeEuiState((string name, EntityUid entity)[] entities) + public ToolshedVisualizeEuiState((string name, NetEntity entity)[] entities) { Entities = entities; } diff --git a/Content.Shared/Buckle/Components/BuckleComponent.cs b/Content.Shared/Buckle/Components/BuckleComponent.cs index 59fab362855..8f44c7fead3 100644 --- a/Content.Shared/Buckle/Components/BuckleComponent.cs +++ b/Content.Shared/Buckle/Components/BuckleComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Buckle.Components; [RegisterComponent, NetworkedComponent] [Access(typeof(SharedBuckleSystem))] -public sealed class BuckleComponent : Component +public sealed partial class BuckleComponent : Component { /// /// The range from which this entity can buckle to a . @@ -78,7 +78,7 @@ public sealed class BuckleComponent : Component [Serializable, NetSerializable] public sealed class BuckleComponentState : ComponentState { - public BuckleComponentState(bool buckled, EntityUid? buckledTo, EntityUid? lastEntityBuckledTo, + public BuckleComponentState(bool buckled, NetEntity? buckledTo, NetEntity? lastEntityBuckledTo, bool dontCollide) { Buckled = buckled; @@ -88,8 +88,8 @@ public BuckleComponentState(bool buckled, EntityUid? buckledTo, EntityUid? lastE } public readonly bool Buckled; - public readonly EntityUid? BuckledTo; - public readonly EntityUid? LastEntityBuckledTo; + public readonly NetEntity? BuckledTo; + public readonly NetEntity? LastEntityBuckledTo; public readonly bool DontCollide; } diff --git a/Content.Shared/Buckle/Components/StrapComponent.cs b/Content.Shared/Buckle/Components/StrapComponent.cs index 6a0b27650c7..8cb11ddd435 100644 --- a/Content.Shared/Buckle/Components/StrapComponent.cs +++ b/Content.Shared/Buckle/Components/StrapComponent.cs @@ -10,7 +10,7 @@ namespace Content.Shared.Buckle.Components; [RegisterComponent, NetworkedComponent] [Access(typeof(SharedBuckleSystem), typeof(SharedVehicleSystem))] -public sealed class StrapComponent : Component +public sealed partial class StrapComponent : Component { /// /// The entities that are currently buckled @@ -125,10 +125,10 @@ public sealed class StrapComponentState : ComponentState public readonly StrapPosition Position; public readonly float MaxBuckleDistance; public readonly Vector2 BuckleOffsetClamped; - public readonly HashSet BuckledEntities; + public readonly HashSet BuckledEntities; public readonly int OccupiedSize; - public StrapComponentState(StrapPosition position, Vector2 offset, HashSet buckled, + public StrapComponentState(StrapPosition position, Vector2 offset, HashSet buckled, float maxBuckleDistance, int occupiedSize) { Position = position; diff --git a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs index 13a00dd5a14..e4b9e4391f9 100644 --- a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs +++ b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs @@ -59,7 +59,7 @@ private void OnBuckleComponentShutdown(EntityUid uid, BuckleComponent component, private void OnBuckleComponentGetState(EntityUid uid, BuckleComponent component, ref ComponentGetState args) { - args.State = new BuckleComponentState(component.Buckled, component.BuckledTo, component.LastEntityBuckledTo, component.DontCollide); + args.State = new BuckleComponentState(component.Buckled, GetNetEntity(component.BuckledTo), GetNetEntity(component.LastEntityBuckledTo), component.DontCollide); } private void OnBuckleMove(EntityUid uid, BuckleComponent component, ref MoveEvent ev) @@ -493,6 +493,7 @@ public bool TryUnbuckle(EntityUid buckleUid, EntityUid userUid, bool force = fal Dirty(strapComp); } + _joints.RefreshRelay(buckleUid); AppearanceSystem.SetData(strapUid, StrapVisuals.State, strapComp.BuckledEntities.Count != 0); var audioSourceUid = userUid != buckleUid ? userUid : strapUid; _audioSystem.PlayPredicted(strapComp.UnbuckleSound, strapUid, audioSourceUid); diff --git a/Content.Shared/Buckle/SharedBuckleSystem.Strap.cs b/Content.Shared/Buckle/SharedBuckleSystem.Strap.cs index 15a0a0a9f27..c84078baceb 100644 --- a/Content.Shared/Buckle/SharedBuckleSystem.Strap.cs +++ b/Content.Shared/Buckle/SharedBuckleSystem.Strap.cs @@ -2,6 +2,7 @@ using Content.Shared.Buckle.Components; using Content.Shared.Destructible; using Content.Shared.DragDrop; +using Content.Shared.Foldable; using Content.Shared.Interaction; using Content.Shared.Storage; using Content.Shared.Verbs; @@ -31,6 +32,7 @@ private void InitializeStrap() SubscribeLocalEvent(OnStrapDragDropTarget); SubscribeLocalEvent(OnCanDropTarget); + SubscribeLocalEvent(OnAttemptFold); SubscribeLocalEvent(OnStrapMoveEvent); } @@ -50,7 +52,7 @@ private void OnStrapShutdown(EntityUid uid, StrapComponent component, ComponentS private void OnStrapGetState(EntityUid uid, StrapComponent component, ref ComponentGetState args) { - args.State = new StrapComponentState(component.Position, component.BuckleOffset, component.BuckledEntities, component.MaxBuckleDistance, component.OccupiedSize); + args.State = new StrapComponentState(component.Position, component.BuckleOffset, GetNetEntitySet(component.BuckledEntities), component.MaxBuckleDistance, component.OccupiedSize); } private void OnStrapHandleState(EntityUid uid, StrapComponent component, ref ComponentHandleState args) @@ -61,7 +63,7 @@ private void OnStrapHandleState(EntityUid uid, StrapComponent component, ref Com component.Position = state.Position; component.BuckleOffsetUnclamped = state.BuckleOffsetClamped; component.BuckledEntities.Clear(); - component.BuckledEntities.UnionWith(state.BuckledEntities); + component.BuckledEntities.UnionWith(EnsureEntitySet(state.BuckledEntities, uid)); component.MaxBuckleDistance = state.MaxBuckleDistance; component.OccupiedSize = state.OccupiedSize; } @@ -106,7 +108,7 @@ private void ContainerModifiedReAttach(EntityUid buckleUid, EntityUid strapUid, private void OnStrapContainerGettingInsertedAttempt(EntityUid uid, StrapComponent component, ContainerGettingInsertedAttemptEvent args) { // If someone is attempting to put this item inside of a backpack, ensure that it has no entities strapped to it. - if (HasComp(args.Container.Owner) && component.BuckledEntities.Count != 0) + if (HasComp(args.Container.Owner) && component.BuckledEntities.Count != 0) args.Cancel(); } @@ -115,7 +117,7 @@ private void OnStrapInteractHand(EntityUid uid, StrapComponent component, Intera if (args.Handled) return; - ToggleBuckle(args.User, args.User, uid); + args.Handled = ToggleBuckle(args.User, args.User, uid); } private void AddStrapVerbs(EntityUid uid, StrapComponent component, GetVerbsEvent args) @@ -199,6 +201,14 @@ private void OnCanDropTarget(EntityUid uid, StrapComponent component, ref CanDro args.Handled = true; } + private void OnAttemptFold(EntityUid uid, StrapComponent component, ref FoldAttemptEvent args) + { + if (args.Cancelled) + return; + + args.Cancelled = component.BuckledEntities.Count != 0; + } + private void OnStrapDragDropTarget(EntityUid uid, StrapComponent component, ref DragDropTargetEvent args) { if (!StrapCanDragDropOn(uid, args.User, uid, args.Dragged, component)) diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index 8c6d2788ba7..8163546bd8f 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -326,7 +326,7 @@ public static readonly CVarDef /// URL of the Discord webhook which will relay all ahelp messages. /// public static readonly CVarDef DiscordAHelpWebhook = - CVarDef.Create("discord.ahelp_webhook", string.Empty, CVar.SERVERONLY); + CVarDef.Create("discord.ahelp_webhook", string.Empty, CVar.SERVERONLY | CVar.CONFIDENTIAL); /// /// The server icon to use in the Discord ahelp embed footer. @@ -365,6 +365,18 @@ public static readonly CVarDef public static readonly CVarDef DiscordLeaderboardWebhook = CVarDef.Create("discord.leaderboard_webhook", string.Empty, CVar.SERVERONLY); + /// + /// URL of the Discord webhook which will relay round restart messages. + /// + public static readonly CVarDef DiscordRoundUpdateWebhook = + CVarDef.Create("discord.round_update_webhook", string.Empty, CVar.SERVERONLY | CVar.CONFIDENTIAL); + + /// + /// Role id for the Discord webhook to ping when the round ends. + /// + public static readonly CVarDef DiscordRoundEndRoleWebhook = + CVarDef.Create("discord.round_end_role", string.Empty, CVar.SERVERONLY); + /* * Suspicion */ @@ -1482,6 +1494,12 @@ public static readonly CVarDef public static readonly CVarDef ICRandomSpeciesWeights = CVarDef.Create("ic.random_species_weights", "SpeciesWeights", CVar.SERVER); + /// + /// Control displaying SSD indicators near players + /// + public static readonly CVarDef ICShowSSDIndicator = + CVarDef.Create("ic.show_ssd_indicator", true, CVar.CLIENTONLY); + /* * Salvage */ @@ -1496,10 +1514,10 @@ public static readonly CVarDef /// Cooldown for successful missions. /// public static readonly CVarDef - SalvageExpeditionCooldown = CVarDef.Create("salvage.expedition_cooldown", 160f, CVar.REPLICATED); + SalvageExpeditionCooldown = CVarDef.Create("salvage.expedition_cooldown", 220f, CVar.REPLICATED); public static readonly CVarDef - SalvageExpeditionFailedCooldown = CVarDef.Create("salvage.expedition_failed_cooldown", 600f, CVar.REPLICATED); + SalvageExpeditionFailedCooldown = CVarDef.Create("salvage.expedition_failed_cooldown", 720f, CVar.REPLICATED); /* * Flavor diff --git a/Content.Shared/Cabinet/ItemCabinetComponent.cs b/Content.Shared/Cabinet/ItemCabinetComponent.cs index adb5f6d26df..4f49badfa99 100644 --- a/Content.Shared/Cabinet/ItemCabinetComponent.cs +++ b/Content.Shared/Cabinet/ItemCabinetComponent.cs @@ -9,7 +9,7 @@ namespace Content.Shared.Cabinet; /// Used for entities that can be opened, closed, and can hold one item. E.g., fire extinguisher cabinets. /// [RegisterComponent, NetworkedComponent] -public sealed class ItemCabinetComponent : Component +public sealed partial class ItemCabinetComponent : Component { /// /// Sound to be played when the cabinet door is opened. diff --git a/Content.Shared/Camera/CameraRecoilComponent.cs b/Content.Shared/Camera/CameraRecoilComponent.cs index 3784b8b6334..5d615f87bef 100644 --- a/Content.Shared/Camera/CameraRecoilComponent.cs +++ b/Content.Shared/Camera/CameraRecoilComponent.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Camera; [RegisterComponent] [NetworkedComponent] -public sealed class CameraRecoilComponent : Component +public sealed partial class CameraRecoilComponent : Component { public Vector2 CurrentKick { get; set; } public float LastKickTime { get; set; } diff --git a/Content.Shared/Camera/SharedCameraRecoilSystem.cs b/Content.Shared/Camera/SharedCameraRecoilSystem.cs index 3a5fe372e24..3507bf10233 100644 --- a/Content.Shared/Camera/SharedCameraRecoilSystem.cs +++ b/Content.Shared/Camera/SharedCameraRecoilSystem.cs @@ -28,19 +28,13 @@ public abstract class SharedCameraRecoilSystem : EntitySystem /// protected const float KickMagnitudeMax = 1f; - private ISawmill _log = default!; - - public override void Initialize() - { - base.Initialize(); - _log = Logger.GetSawmill($"ecs.systems.{nameof(SharedCameraRecoilSystem)}"); - } + [Dependency] private readonly SharedEyeSystem _eye = default!; /// /// Applies explosion/recoil/etc kickback to the view of the entity. /// /// - /// If the entity is missing and/or , + /// If the entity is missing and/or , /// this call will have no effect. It is safe to call this function on any entity. /// public abstract void KickCamera(EntityUid euid, Vector2 kickback, CameraRecoilComponent? component = null); @@ -49,15 +43,15 @@ public override void FrameUpdate(float frameTime) { base.FrameUpdate(frameTime); - foreach (var entity in EntityManager.EntityQuery(true)) + var query = AllEntityQuery(); + + while (query.MoveNext(out var uid, out var eye, out var recoil)) { - var recoil = entity.Item2; - var eye = entity.Item1; var magnitude = recoil.CurrentKick.Length(); if (magnitude <= 0.005f) { recoil.CurrentKick = Vector2.Zero; - eye.Offset = recoil.BaseOffset + recoil.CurrentKick; + _eye.SetOffset(uid, recoil.BaseOffset + recoil.CurrentKick, eye); } else // Continually restore camera to 0. { @@ -72,7 +66,7 @@ public override void FrameUpdate(float frameTime) recoil.CurrentKick = new Vector2(x, y); - eye.Offset = recoil.BaseOffset + recoil.CurrentKick; + _eye.SetOffset(uid, recoil.BaseOffset + recoil.CurrentKick, eye); } } } @@ -82,12 +76,12 @@ public override void FrameUpdate(float frameTime) [NetSerializable] public sealed class CameraKickEvent : EntityEventArgs { - public readonly EntityUid Euid; + public readonly NetEntity NetEntity; public readonly Vector2 Recoil; - public CameraKickEvent(EntityUid euid, Vector2 recoil) + public CameraKickEvent(NetEntity netEntity, Vector2 recoil) { Recoil = recoil; - Euid = euid; + NetEntity = netEntity; } } diff --git a/Content.Shared/CardboardBox/Components/CardboardBoxComponent.cs b/Content.Shared/CardboardBox/Components/CardboardBoxComponent.cs index 0da44dab3c6..0e607f50769 100644 --- a/Content.Shared/CardboardBox/Components/CardboardBoxComponent.cs +++ b/Content.Shared/CardboardBox/Components/CardboardBoxComponent.cs @@ -9,7 +9,7 @@ namespace Content.Shared.CardboardBox.Components; /// Used for big cardboard box entities. /// [RegisterComponent, NetworkedComponent] -public sealed class CardboardBoxComponent : Component +public sealed partial class CardboardBoxComponent : Component { /// /// The person in control of this box @@ -55,16 +55,16 @@ public sealed class CardboardBoxComponent : Component /// Time between sound effects. Prevents effect spam /// [DataField("cooldownDuration")] - public readonly TimeSpan CooldownDuration = TimeSpan.FromSeconds(5f); + public TimeSpan CooldownDuration = TimeSpan.FromSeconds(5f); } [Serializable, NetSerializable] public sealed class PlayBoxEffectMessage : EntityEventArgs { - public EntityUid Source; - public EntityUid Mover; + public NetEntity Source; + public NetEntity Mover; - public PlayBoxEffectMessage(EntityUid source, EntityUid mover) + public PlayBoxEffectMessage(NetEntity source, NetEntity mover) { Source = source; Mover = mover; diff --git a/Content.Shared/Cargo/CargoBountyData.cs b/Content.Shared/Cargo/CargoBountyData.cs index fb1d953d122..275d27ea673 100644 --- a/Content.Shared/Cargo/CargoBountyData.cs +++ b/Content.Shared/Cargo/CargoBountyData.cs @@ -9,26 +9,26 @@ namespace Content.Shared.Cargo; /// A data structure for storing currently available bounties. /// [DataDefinition, NetSerializable, Serializable] -public readonly record struct CargoBountyData(int Id, string Bounty, TimeSpan EndTime) +public readonly partial record struct CargoBountyData(int Id, string Bounty, TimeSpan EndTime) { /// /// A numeric id used to identify the bounty /// [DataField("id"), ViewVariables(VVAccess.ReadWrite)] - public readonly int Id = Id; + public int Id { get; init; } = Id; /// /// The prototype containing information about the bounty. /// [ViewVariables(VVAccess.ReadWrite)] [DataField("bounty", customTypeSerializer: typeof(PrototypeIdSerializer), required:true)] - public readonly string Bounty = Bounty; + public string Bounty { get; init; } = Bounty; /// /// The time at which the bounty is closed and no longer is available. /// [DataField("endTime", customTypeSerializer: typeof(TimeOffsetSerializer))] - public readonly TimeSpan EndTime = EndTime; + public TimeSpan EndTime { get; init; } = EndTime; public CargoBountyData() : this(default, string.Empty, default) { diff --git a/Content.Shared/Cargo/Components/CargoBountyConsoleComponent.cs b/Content.Shared/Cargo/Components/CargoBountyConsoleComponent.cs index e547fa59de2..6ea07acc9d5 100644 --- a/Content.Shared/Cargo/Components/CargoBountyConsoleComponent.cs +++ b/Content.Shared/Cargo/Components/CargoBountyConsoleComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Cargo.Components; [RegisterComponent] -public sealed class CargoBountyConsoleComponent : Component +public sealed partial class CargoBountyConsoleComponent : Component { /// /// The id of the label entity spawned by the print label button. diff --git a/Content.Shared/Cargo/Components/CargoShuttleComponent.cs b/Content.Shared/Cargo/Components/CargoShuttleComponent.cs index 6e1ed3c9f1c..eaa78ce8d38 100644 --- a/Content.Shared/Cargo/Components/CargoShuttleComponent.cs +++ b/Content.Shared/Cargo/Components/CargoShuttleComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Cargo.Components; /// Present on cargo shuttles to provide metadata such as preventing spam calling. /// [RegisterComponent, NetworkedComponent, Access(typeof(SharedCargoSystem))] -public sealed class CargoShuttleComponent : Component +public sealed partial class CargoShuttleComponent : Component { /// /// The paper-type prototype to spawn with the order information. diff --git a/Content.Shared/Cargo/Components/SharedCargoTelepadComponent.cs b/Content.Shared/Cargo/Components/SharedCargoTelepadComponent.cs index 50e38b95b65..911066207cc 100644 --- a/Content.Shared/Cargo/Components/SharedCargoTelepadComponent.cs +++ b/Content.Shared/Cargo/Components/SharedCargoTelepadComponent.cs @@ -11,7 +11,7 @@ namespace Content.Shared.Cargo.Components; /// Handles teleporting in requested cargo after the specified delay. /// [RegisterComponent, NetworkedComponent, Access(typeof(SharedCargoSystem))] -public sealed class CargoTelepadComponent : Component +public sealed partial class CargoTelepadComponent : Component { /// /// The base amount of time it takes to teleport from the telepad diff --git a/Content.Shared/Cargo/Components/StackPriceComponent.cs b/Content.Shared/Cargo/Components/StackPriceComponent.cs index 86596b43c0c..aa0dc839a66 100644 --- a/Content.Shared/Cargo/Components/StackPriceComponent.cs +++ b/Content.Shared/Cargo/Components/StackPriceComponent.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Cargo.Components; /// This is used for pricing stacks of items. /// [RegisterComponent] -public sealed class StackPriceComponent : Component +public sealed partial class StackPriceComponent : Component { /// /// The price of the object this component is on, per unit. diff --git a/Content.Shared/Cargo/Components/StaticPriceComponent.cs b/Content.Shared/Cargo/Components/StaticPriceComponent.cs index da5310ab628..320cd0a6135 100644 --- a/Content.Shared/Cargo/Components/StaticPriceComponent.cs +++ b/Content.Shared/Cargo/Components/StaticPriceComponent.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Cargo.Components; /// This is used for setting a static, unchanging price for an object. /// [RegisterComponent] -public sealed class StaticPriceComponent : Component +public sealed partial class StaticPriceComponent : Component { /// /// The price of the object this component is on. diff --git a/Content.Shared/Cargo/Prototypes/CargoBountyPrototype.cs b/Content.Shared/Cargo/Prototypes/CargoBountyPrototype.cs index 4f048004dd5..e9c64ec9909 100644 --- a/Content.Shared/Cargo/Prototypes/CargoBountyPrototype.cs +++ b/Content.Shared/Cargo/Prototypes/CargoBountyPrototype.cs @@ -14,35 +14,35 @@ public sealed class CargoBountyPrototype : IPrototype { /// [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// /// The monetary reward for completing the bounty /// [DataField("reward", required: true)] - public readonly int Reward; + public int Reward; /// /// A description for flava purposes. /// [DataField("description")] - public readonly string Description = string.Empty; + public string Description = string.Empty; /// /// The entries that must be satisfied for the cargo bounty to be complete. /// [DataField("entries", required: true)] - public readonly List Entries = new(); + public List Entries = new(); } [DataDefinition, Serializable, NetSerializable] -public readonly record struct CargoBountyItemEntry() +public readonly partial record struct CargoBountyItemEntry() { /// /// A whitelist for determining what items satisfy the entry. /// [DataField("whitelist", required: true)] - public readonly EntityWhitelist Whitelist = default!; + public EntityWhitelist Whitelist { get; init; } = default!; // todo: implement some kind of simple generic condition system @@ -50,11 +50,11 @@ public readonly record struct CargoBountyItemEntry() /// How much of the item must be present to satisfy the entry /// [DataField("amount")] - public readonly int Amount = 1; + public int Amount { get; init; } = 1; /// /// A player-facing name for the item. /// [DataField("name")] - public readonly string Name = string.Empty; + public string Name { get; init; } = string.Empty; } diff --git a/Content.Shared/Cargo/Prototypes/CargoProductPrototype.cs b/Content.Shared/Cargo/Prototypes/CargoProductPrototype.cs index a08fc00eb50..a2dc9b516da 100644 --- a/Content.Shared/Cargo/Prototypes/CargoProductPrototype.cs +++ b/Content.Shared/Cargo/Prototypes/CargoProductPrototype.cs @@ -14,7 +14,7 @@ public sealed class CargoProductPrototype : IPrototype [ViewVariables] [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// /// Product name. @@ -60,30 +60,30 @@ public string Description /// Texture path used in the CargoConsole GUI. /// [DataField("icon")] - public SpriteSpecifier Icon { get; } = SpriteSpecifier.Invalid; + public SpriteSpecifier Icon { get; private set; } = SpriteSpecifier.Invalid; /// /// The prototype name of the product. /// [DataField("product", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string Product { get; } = string.Empty; + public string Product { get; private set; } = string.Empty; /// /// The point cost of the product. /// [DataField("cost")] - public int PointCost { get; } + public int PointCost { get; private set; } /// /// The prototype category of the product. (e.g. Engineering, Medical) /// [DataField("category")] - public string Category { get; } = string.Empty; + public string Category { get; private set; } = string.Empty; /// /// The prototype group of the product. (e.g. Contraband) /// [DataField("group")] - public string Group { get; } = string.Empty; + public string Group { get; private set; } = string.Empty; } } diff --git a/Content.Shared/CartridgeLoader/CartridgeComponent.cs b/Content.Shared/CartridgeLoader/CartridgeComponent.cs index ab41fb84e78..775cc33d810 100644 --- a/Content.Shared/CartridgeLoader/CartridgeComponent.cs +++ b/Content.Shared/CartridgeLoader/CartridgeComponent.cs @@ -9,7 +9,7 @@ namespace Content.Shared.CartridgeLoader; /// [NetworkedComponent] [RegisterComponent] -public sealed class CartridgeComponent : Component +public sealed partial class CartridgeComponent : Component { [DataField("programName", required: true)] public string ProgramName = "default-program-name"; diff --git a/Content.Shared/CartridgeLoader/CartridgeLoaderComponent.cs b/Content.Shared/CartridgeLoader/CartridgeLoaderComponent.cs index 2822c76b286..5ff5fdd9a37 100644 --- a/Content.Shared/CartridgeLoader/CartridgeLoaderComponent.cs +++ b/Content.Shared/CartridgeLoader/CartridgeLoaderComponent.cs @@ -1,11 +1,10 @@ using Content.Shared.Containers.ItemSlots; using Robust.Shared.GameStates; -using Robust.Shared.Serialization.TypeSerializers.Implementations; namespace Content.Shared.CartridgeLoader; [RegisterComponent, NetworkedComponent] -public sealed class CartridgeLoaderComponent : Component +public sealed partial class CartridgeLoaderComponent : Component { public const string CartridgeSlotId = "Cartridge-Slot"; @@ -15,7 +14,7 @@ public sealed class CartridgeLoaderComponent : Component /// /// List of programs that come preinstalled with this cartridge loader /// - [DataField("preinstalled")] + [DataField("preinstalled")] // TODO remove this and use container fill. public List PreinstalledPrograms = new(); /// @@ -30,18 +29,12 @@ public sealed class CartridgeLoaderComponent : Component [ViewVariables] public readonly List BackgroundPrograms = new(); - /// - /// The list of program entities that are spawned into the cartridge loaders program container - /// - [DataField("installedCartridges")] - public List InstalledPrograms = new(); - /// /// The maximum amount of programs that can be installed on the cartridge loader entity /// [DataField("diskSpace")] public int DiskSpace = 5; - [DataField("uiKey", required: true, customTypeSerializer: typeof(EnumSerializer))] + [DataField("uiKey", required: true)] public Enum UiKey = default!; } diff --git a/Content.Shared/CartridgeLoader/CartridgeLoaderUiMessage.cs b/Content.Shared/CartridgeLoader/CartridgeLoaderUiMessage.cs index 5f7aaec0263..18c5cf9f919 100644 --- a/Content.Shared/CartridgeLoader/CartridgeLoaderUiMessage.cs +++ b/Content.Shared/CartridgeLoader/CartridgeLoaderUiMessage.cs @@ -5,10 +5,10 @@ namespace Content.Shared.CartridgeLoader; [Serializable, NetSerializable] public sealed class CartridgeLoaderUiMessage : BoundUserInterfaceMessage { - public readonly EntityUid CartridgeUid; + public readonly NetEntity CartridgeUid; public readonly CartridgeUiMessageAction Action; - public CartridgeLoaderUiMessage(EntityUid cartridgeUid, CartridgeUiMessageAction action) + public CartridgeLoaderUiMessage(NetEntity cartridgeUid, CartridgeUiMessageAction action) { CartridgeUid = cartridgeUid; Action = action; diff --git a/Content.Shared/CartridgeLoader/CartridgeLoaderUiState.cs b/Content.Shared/CartridgeLoader/CartridgeLoaderUiState.cs index 2e7a961c968..0bc3f66a571 100644 --- a/Content.Shared/CartridgeLoader/CartridgeLoaderUiState.cs +++ b/Content.Shared/CartridgeLoader/CartridgeLoaderUiState.cs @@ -7,6 +7,12 @@ namespace Content.Shared.CartridgeLoader; [Serializable, NetSerializable] public class CartridgeLoaderUiState : BoundUserInterfaceState { - public EntityUid? ActiveUI; - public List Programs = new(); + public NetEntity? ActiveUI; + public List Programs; + + public CartridgeLoaderUiState(List programs, NetEntity? activeUI) + { + Programs = programs; + ActiveUI = activeUI; + } } diff --git a/Content.Shared/CartridgeLoader/CartridgeUiMessage.cs b/Content.Shared/CartridgeLoader/CartridgeUiMessage.cs index 537fa1c9219..1155030f938 100644 --- a/Content.Shared/CartridgeLoader/CartridgeUiMessage.cs +++ b/Content.Shared/CartridgeLoader/CartridgeUiMessage.cs @@ -16,5 +16,5 @@ public CartridgeUiMessage(CartridgeMessageEvent messageEvent) [Serializable, NetSerializable] public abstract class CartridgeMessageEvent : EntityEventArgs { - public EntityUid LoaderUid; + public NetEntity LoaderUid; } diff --git a/Content.Shared/CartridgeLoader/Cartridges/NotekeeperUiState.cs b/Content.Shared/CartridgeLoader/Cartridges/NotekeeperUiState.cs index c71dd0fff0c..52c86936ec3 100644 --- a/Content.Shared/CartridgeLoader/Cartridges/NotekeeperUiState.cs +++ b/Content.Shared/CartridgeLoader/Cartridges/NotekeeperUiState.cs @@ -5,7 +5,7 @@ namespace Content.Shared.CartridgeLoader.Cartridges; [Serializable, NetSerializable] public sealed class NotekeeperUiState : BoundUserInterfaceState { - public List Notes; + public List Notes; public NotekeeperUiState(List notes) { diff --git a/Content.Shared/CartridgeLoader/SharedCartridgeLoaderSystem.cs b/Content.Shared/CartridgeLoader/SharedCartridgeLoaderSystem.cs index 0bd7c5ec16a..15d29689b84 100644 --- a/Content.Shared/CartridgeLoader/SharedCartridgeLoaderSystem.cs +++ b/Content.Shared/CartridgeLoader/SharedCartridgeLoaderSystem.cs @@ -2,13 +2,18 @@ using Robust.Shared.Containers; using Robust.Shared.GameStates; using Robust.Shared.Map; +using Robust.Shared.Network; namespace Content.Shared.CartridgeLoader; public abstract class SharedCartridgeLoaderSystem : EntitySystem { + public const string InstalledContainerId = "program-container"; + [Dependency] private readonly ItemSlotsSystem _itemSlotsSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearanceSystem = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly INetManager _netMan = default!; public override void Initialize() { @@ -36,11 +41,8 @@ private void OnComponentInit(EntityUid uid, CartridgeLoaderComponent loader, Com private void OnComponentRemove(EntityUid uid, CartridgeLoaderComponent loader, ComponentRemove args) { _itemSlotsSystem.RemoveItemSlot(uid, loader.CartridgeSlot); - - foreach (var program in loader.InstalledPrograms) - { - EntityManager.QueueDeleteEntity(program); - } + if (_container.TryGetContainer(uid, InstalledContainerId, out var cont)) + cont.Shutdown(EntityManager, _netMan); } protected virtual void OnItemInserted(EntityUid uid, CartridgeLoaderComponent loader, EntInsertedIntoContainerMessage args) diff --git a/Content.Shared/CharacterInfo/SharedCharacterInfoSystem.cs b/Content.Shared/CharacterInfo/SharedCharacterInfoSystem.cs index 7365229f2ab..b330af26299 100644 --- a/Content.Shared/CharacterInfo/SharedCharacterInfoSystem.cs +++ b/Content.Shared/CharacterInfo/SharedCharacterInfoSystem.cs @@ -6,25 +6,25 @@ namespace Content.Shared.CharacterInfo; [Serializable, NetSerializable] public sealed class RequestCharacterInfoEvent : EntityEventArgs { - public readonly EntityUid EntityUid; + public readonly NetEntity NetEntity; - public RequestCharacterInfoEvent(EntityUid entityUid) + public RequestCharacterInfoEvent(NetEntity netEntity) { - EntityUid = entityUid; + NetEntity = netEntity; } } [Serializable, NetSerializable] public sealed class CharacterInfoEvent : EntityEventArgs { - public readonly EntityUid EntityUid; + public readonly NetEntity NetEntity; public readonly string JobTitle; public readonly Dictionary> Objectives; - public readonly string Briefing; + public readonly string? Briefing; - public CharacterInfoEvent(EntityUid entityUid, string jobTitle, Dictionary> objectives, string briefing) + public CharacterInfoEvent(NetEntity netEntity, string jobTitle, Dictionary> objectives, string? briefing) { - EntityUid = entityUid; + NetEntity = netEntity; JobTitle = jobTitle; Objectives = objectives; Briefing = briefing; diff --git a/Content.Shared/Chasm/ChasmComponent.cs b/Content.Shared/Chasm/ChasmComponent.cs index 6a366531292..95edac4cfd7 100644 --- a/Content.Shared/Chasm/ChasmComponent.cs +++ b/Content.Shared/Chasm/ChasmComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Chasm; /// Marks a component that will cause entities to fall into them on a step trigger activation /// [NetworkedComponent, RegisterComponent, Access(typeof(ChasmSystem))] -public sealed class ChasmComponent : Component +public sealed partial class ChasmComponent : Component { /// /// Sound that should be played when an entity falls into the chasm diff --git a/Content.Shared/Chasm/ChasmFallingComponent.cs b/Content.Shared/Chasm/ChasmFallingComponent.cs index 726c561ab92..69b1c8e3081 100644 --- a/Content.Shared/Chasm/ChasmFallingComponent.cs +++ b/Content.Shared/Chasm/ChasmFallingComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Chasm; /// Added to entities which have started falling into a chasm. /// [RegisterComponent, NetworkedComponent] -public sealed class ChasmFallingComponent : Component +public sealed partial class ChasmFallingComponent : Component { /// /// Time it should take for the falling animation (scaling down) to complete. diff --git a/Content.Shared/Chasm/ChasmSystem.cs b/Content.Shared/Chasm/ChasmSystem.cs index 123fa5b9982..7353bd0e9c7 100644 --- a/Content.Shared/Chasm/ChasmSystem.cs +++ b/Content.Shared/Chasm/ChasmSystem.cs @@ -1,4 +1,5 @@ using Content.Shared.ActionBlocker; +using Content.Shared.Buckle.Components; using Content.Shared.Movement.Events; using Content.Shared.StepTrigger.Systems; using Robust.Shared.Network; @@ -51,18 +52,22 @@ private void OnStepTriggered(EntityUid uid, ChasmComponent component, ref StepTr if (HasComp(args.Tripper)) return; - var falling = AddComp(args.Tripper); + StartFalling(uid, component, args.Tripper); + } + + public void StartFalling(EntityUid chasm, ChasmComponent component, EntityUid tripper, bool playSound = true) + { + var falling = AddComp(tripper); falling.NextDeletionTime = _timing.CurTime + falling.DeletionTime; - _blocker.UpdateCanMove(args.Tripper); - _audio.PlayPredicted(component.FallingSound, uid, args.Tripper); + _blocker.UpdateCanMove(tripper); + + if (playSound) + _audio.PlayPredicted(component.FallingSound, chasm, tripper); } private void OnStepTriggerAttempt(EntityUid uid, ChasmComponent component, ref StepTriggerAttemptEvent args) { - if (TryComp(args.Tripper, out var physics) && physics.BodyStatus == BodyStatus.InAir) - return; - args.Continue = true; } diff --git a/Content.Shared/Chat/MsgChatMessage.cs b/Content.Shared/Chat/MsgChatMessage.cs index fee886b023e..27ab203d6e8 100644 --- a/Content.Shared/Chat/MsgChatMessage.cs +++ b/Content.Shared/Chat/MsgChatMessage.cs @@ -13,7 +13,7 @@ public sealed class ChatMessage public ChatChannel Channel; public string Message; public string WrappedMessage; - public EntityUid SenderEntity; + public NetEntity SenderEntity; public bool HideChat; public Color? MessageColorOverride; public string? AudioPath; @@ -22,7 +22,7 @@ public sealed class ChatMessage [NonSerialized] public bool Read; - public ChatMessage(ChatChannel channel, string message, string wrappedMessage, EntityUid source, bool hideChat = false, Color? colorOverride = null, string? audioPath = null, float audioVolume = 0) + public ChatMessage(ChatChannel channel, string message, string wrappedMessage, NetEntity source, bool hideChat = false, Color? colorOverride = null, string? audioPath = null, float audioVolume = 0) { Channel = channel; Message = message; diff --git a/Content.Shared/Chat/Prototypes/AutoEmotePrototype.cs b/Content.Shared/Chat/Prototypes/AutoEmotePrototype.cs index 99f3845fcb7..bfa98fa243d 100644 --- a/Content.Shared/Chat/Prototypes/AutoEmotePrototype.cs +++ b/Content.Shared/Chat/Prototypes/AutoEmotePrototype.cs @@ -8,7 +8,7 @@ public sealed class AutoEmotePrototype : IPrototype { /// [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// /// The ID of the emote prototype. diff --git a/Content.Shared/Chat/Prototypes/EmotePrototype.cs b/Content.Shared/Chat/Prototypes/EmotePrototype.cs index edd80f1a9ac..d9d6a634419 100644 --- a/Content.Shared/Chat/Prototypes/EmotePrototype.cs +++ b/Content.Shared/Chat/Prototypes/EmotePrototype.cs @@ -11,7 +11,7 @@ namespace Content.Shared.Chat.Prototypes; public sealed class EmotePrototype : IPrototype { [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// /// Different emote categories may be handled by different systems. diff --git a/Content.Shared/Chat/Prototypes/EmoteSoundsPrototype.cs b/Content.Shared/Chat/Prototypes/EmoteSoundsPrototype.cs index 76f3459504a..769bc7b2053 100644 --- a/Content.Shared/Chat/Prototypes/EmoteSoundsPrototype.cs +++ b/Content.Shared/Chat/Prototypes/EmoteSoundsPrototype.cs @@ -12,7 +12,7 @@ namespace Content.Shared.Chat.Prototypes; public sealed class EmoteSoundsPrototype : IPrototype { [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// /// Optional fallback sound that will play if collection diff --git a/Content.Shared/Chat/SharedChatSystem.cs b/Content.Shared/Chat/SharedChatSystem.cs index 0517cfd2b94..24cf1c46496 100644 --- a/Content.Shared/Chat/SharedChatSystem.cs +++ b/Content.Shared/Chat/SharedChatSystem.cs @@ -162,4 +162,33 @@ public string SanitizeMessageCapital(string message) message = char.ToUpper(message[0]) + message.Remove(0, 1); return message; } + + public string SanitizeMessageCapitalizeTheWordI(string message, string theWordI = "i") + { + if (string.IsNullOrEmpty(message)) + return message; + + for + ( + var index = message.IndexOf(theWordI); + index != -1; + index = message.IndexOf(theWordI, index + 1) + ) + { + // Stops the code If It's tryIng to capItalIze the letter I In the mIddle of words + // Repeating the code twice is the simplest option + if (index + 1 < message.Length && char.IsLetter(message[index + 1])) + continue; + if (index - 1 >= 0 && char.IsLetter(message[index - 1])) + continue; + + var beforeTarget = message.Substring(0, index); + var target = message.Substring(index, theWordI.Length); + var afterTarget = message.Substring(index + theWordI.Length); + + message = beforeTarget + target.ToUpper() + afterTarget; + } + + return message; + } } diff --git a/Content.Shared/Chat/TypingIndicator/TypingIndicatorClothingComponent.cs b/Content.Shared/Chat/TypingIndicator/TypingIndicatorClothingComponent.cs index 1bffa2a89a3..5ec8185587a 100644 --- a/Content.Shared/Chat/TypingIndicator/TypingIndicatorClothingComponent.cs +++ b/Content.Shared/Chat/TypingIndicator/TypingIndicatorClothingComponent.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Chat.TypingIndicator; [RegisterComponent, NetworkedComponent] [Access(typeof(SharedTypingIndicatorSystem))] -public sealed class TypingIndicatorClothingComponent : Component +public sealed partial class TypingIndicatorClothingComponent : Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("proto", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] diff --git a/Content.Shared/Chat/TypingIndicator/TypingIndicatorComponent.cs b/Content.Shared/Chat/TypingIndicator/TypingIndicatorComponent.cs index 24da9f21856..a4507b06b8a 100644 --- a/Content.Shared/Chat/TypingIndicator/TypingIndicatorComponent.cs +++ b/Content.Shared/Chat/TypingIndicator/TypingIndicatorComponent.cs @@ -9,7 +9,7 @@ namespace Content.Shared.Chat.TypingIndicator; /// [RegisterComponent, NetworkedComponent] [Access(typeof(SharedTypingIndicatorSystem))] -public sealed class TypingIndicatorComponent : Component +public sealed partial class TypingIndicatorComponent : Component { /// /// Prototype id that store all visual info about typing indicator. diff --git a/Content.Shared/Chat/TypingIndicator/TypingIndicatorPrototype.cs b/Content.Shared/Chat/TypingIndicator/TypingIndicatorPrototype.cs index dae694e43d4..2cd114fde7e 100644 --- a/Content.Shared/Chat/TypingIndicator/TypingIndicatorPrototype.cs +++ b/Content.Shared/Chat/TypingIndicator/TypingIndicatorPrototype.cs @@ -11,7 +11,7 @@ namespace Content.Shared.Chat.TypingIndicator; public sealed class TypingIndicatorPrototype : IPrototype { [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [DataField("spritePath")] public ResPath SpritePath = new("/Textures/Effects/speech.rsi"); diff --git a/Content.Shared/Chemistry/Components/DrainableSolutionComponent.cs b/Content.Shared/Chemistry/Components/DrainableSolutionComponent.cs index 2a69a880881..4cdff566f6c 100644 --- a/Content.Shared/Chemistry/Components/DrainableSolutionComponent.cs +++ b/Content.Shared/Chemistry/Components/DrainableSolutionComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Chemistry.Components; /// Think pouring this or draining from a water tank. /// [RegisterComponent, NetworkedComponent] -public sealed class DrainableSolutionComponent : Component +public sealed partial class DrainableSolutionComponent : Component { /// /// Solution name that can be drained. diff --git a/Content.Shared/Chemistry/Components/DumpableSolutionComponent.cs b/Content.Shared/Chemistry/Components/DumpableSolutionComponent.cs new file mode 100644 index 00000000000..ad9e1f19a6c --- /dev/null +++ b/Content.Shared/Chemistry/Components/DumpableSolutionComponent.cs @@ -0,0 +1,25 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Chemistry.Components; + +/// +/// Denotes the solution that can be easily dumped into (completely removed from the dumping container into this one) +/// Think pouring a container fully into this. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class DumpableSolutionComponent : Component +{ + /// + /// Solution name that can be dumped into. + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("solution")] + public string Solution { get; set; } = "default"; + + /// + /// Whether the solution can be dumped into infinitely. + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("unlimited")] + public bool Unlimited { get; set; } = false; +} diff --git a/Content.Shared/Chemistry/Components/FitsInDispenserComponent.cs b/Content.Shared/Chemistry/Components/FitsInDispenserComponent.cs index 38e3f00d077..a479dcdbe8b 100644 --- a/Content.Shared/Chemistry/Components/FitsInDispenserComponent.cs +++ b/Content.Shared/Chemistry/Components/FitsInDispenserComponent.cs @@ -11,7 +11,7 @@ namespace Content.Shared.Chemistry.Components /// [RegisterComponent] [NetworkedComponent] // only needed for white-lists. Client doesn't actually need Solution data; - public sealed class FitsInDispenserComponent : Component + public sealed partial class FitsInDispenserComponent : Component { /// /// Solution name that will interact with ReagentDispenserComponent. diff --git a/Content.Shared/Chemistry/Components/MovespeedModifierMetabolismComponent.cs b/Content.Shared/Chemistry/Components/MovespeedModifierMetabolismComponent.cs index afdc55f0d57..f0a0c22ba57 100644 --- a/Content.Shared/Chemistry/Components/MovespeedModifierMetabolismComponent.cs +++ b/Content.Shared/Chemistry/Components/MovespeedModifierMetabolismComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Chemistry.Components //TODO: refactor movement modifier component because this is a pretty poor solution [RegisterComponent] [NetworkedComponent] - public sealed class MovespeedModifierMetabolismComponent : Component + public sealed partial class MovespeedModifierMetabolismComponent : Component { [ViewVariables] public float WalkSpeedModifier { get; set; } diff --git a/Content.Shared/Chemistry/Components/RefillableSolutionComponent.cs b/Content.Shared/Chemistry/Components/RefillableSolutionComponent.cs index 49f2edbf7b5..cb5ab7679d7 100644 --- a/Content.Shared/Chemistry/Components/RefillableSolutionComponent.cs +++ b/Content.Shared/Chemistry/Components/RefillableSolutionComponent.cs @@ -9,7 +9,7 @@ namespace Content.Shared.Chemistry.Components; /// tank of a car. /// [RegisterComponent, NetworkedComponent] -public sealed class RefillableSolutionComponent : Component +public sealed partial class RefillableSolutionComponent : Component { /// /// Solution name that can added to easily. diff --git a/Content.Shared/Chemistry/Components/SharedHyposprayComponent.cs b/Content.Shared/Chemistry/Components/SharedHyposprayComponent.cs index f93dc0748b7..a8df6be1090 100644 --- a/Content.Shared/Chemistry/Components/SharedHyposprayComponent.cs +++ b/Content.Shared/Chemistry/Components/SharedHyposprayComponent.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Chemistry.Components; [NetworkedComponent()] -public abstract class SharedHyposprayComponent : Component +public abstract partial class SharedHyposprayComponent : Component { [DataField("solutionName")] public string SolutionName = "hypospray"; diff --git a/Content.Shared/Chemistry/Components/SharedInjectorComponent.cs b/Content.Shared/Chemistry/Components/SharedInjectorComponent.cs index 3c1e2e2e562..a4cea4e7c47 100644 --- a/Content.Shared/Chemistry/Components/SharedInjectorComponent.cs +++ b/Content.Shared/Chemistry/Components/SharedInjectorComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Chemistry.Components { [Serializable, NetSerializable] - public sealed class InjectorDoAfterEvent : SimpleDoAfterEvent + public sealed partial class InjectorDoAfterEvent : SimpleDoAfterEvent { } @@ -14,7 +14,7 @@ public sealed class InjectorDoAfterEvent : SimpleDoAfterEvent /// Shared class for injectors & syringes /// [NetworkedComponent, ComponentProtoName("Injector")] - public abstract class SharedInjectorComponent : Component + public abstract partial class SharedInjectorComponent : Component { /// /// Component data used for net updates. Used by client for item status ui diff --git a/Content.Shared/Chemistry/Components/Solution.cs b/Content.Shared/Chemistry/Components/Solution.cs index 629acca6c90..65fdcd62dd1 100644 --- a/Content.Shared/Chemistry/Components/Solution.cs +++ b/Content.Shared/Chemistry/Components/Solution.cs @@ -3,10 +3,8 @@ using JetBrains.Annotations; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; using Robust.Shared.Utility; using System.Collections; -using System.Diagnostics.CodeAnalysis; using System.Linq; namespace Content.Shared.Chemistry.Components @@ -16,12 +14,12 @@ namespace Content.Shared.Chemistry.Components /// [Serializable, NetSerializable] [DataDefinition] - public sealed partial class Solution : IEnumerable, ISerializationHooks + public sealed partial class Solution : IEnumerable, ISerializationHooks { // This is a list because it is actually faster to add and remove reagents from // a list than a dictionary, though contains-reagent checks are slightly slower, [DataField("reagents")] - public List Contents = new(2); + public List Contents; /// /// The calculated total volume of all reagents in the solution (ex. Total volume of liquid in beaker). @@ -86,14 +84,12 @@ public bool CanAddSolution(Solution solution) /// /// The total heat capacity of all reagents in the solution. /// - [ViewVariables] - private float _heatCapacity; + [ViewVariables] private float _heatCapacity; /// /// If true, then needs to be recomputed. /// - [ViewVariables] - private bool _heatCapacityDirty = true; + [ViewVariables] private bool _heatCapacityDirty = true; public void UpdateHeatCapacity(IPrototypeManager? protoMan) { @@ -101,9 +97,10 @@ public void UpdateHeatCapacity(IPrototypeManager? protoMan) DebugTools.Assert(_heatCapacityDirty); _heatCapacityDirty = false; _heatCapacity = 0; - foreach (var reagent in Contents) + foreach (var (reagent, quantity) in Contents) { - _heatCapacity += (float) reagent.Quantity * protoMan.Index(reagent.ReagentId).SpecificHeat; + _heatCapacity += (float) quantity * + protoMan.Index(reagent.Prototype).SpecificHeat; } } @@ -137,11 +134,11 @@ public Solution(int capacity) /// /// Constructs a solution containing 100% of a reagent (ex. A beaker of pure water). /// - /// The prototype ID of the reagent to add. + /// The prototype ID of the reagent to add. /// The quantity in milli-units. - public Solution(string reagentId, FixedPoint2 quantity) : this() + public Solution(string prototype, FixedPoint2 quantity, ReagentData? data = null) : this() { - AddReagent(reagentId, quantity); + AddReagent(new ReagentId(prototype, data), quantity); } public Solution(IEnumerable reagents, bool setMaxVol = true) @@ -173,7 +170,6 @@ public Solution Clone() return new Solution(this); } - [AssertionMethod] public void ValidateSolution() { @@ -185,8 +181,8 @@ public void ValidateSolution() // All reagents have at least some reagent present. DebugTools.Assert(!Contents.Any(x => x.Quantity <= FixedPoint2.Zero)); - // No duplicate reagent iDs - DebugTools.Assert(Contents.Select(x => x.ReagentId).ToHashSet().Count() == Contents.Count); + // No duplicate reagents iDs + DebugTools.Assert(Contents.Select(x => x.Reagent).ToHashSet().Count == Contents.Count); // If it isn't flagged as dirty, check heat capacity is correct. if (!_heatCapacityDirty) @@ -211,33 +207,101 @@ void ISerializationHooks.AfterDeserialization() MaxVolume = Volume; } - public bool ContainsReagent(string reagentId) + public bool ContainsPrototype(string prototype) { - foreach (var reagent in Contents) + foreach (var (reagent, _) in Contents) { - if (reagent.ReagentId == reagentId) + if (reagent.Prototype == prototype) return true; } return false; } - public bool TryGetReagent(string reagentId, out FixedPoint2 quantity) + public bool ContainsReagent(ReagentId id) { - foreach (var reagent in Contents) + foreach (var (reagent, _) in Contents) { - if (reagent.ReagentId == reagentId) - { - quantity = reagent.Quantity; + if (reagent == id) return true; - } } - quantity = FixedPoint2.New(0); return false; } - public string? GetPrimaryReagentId() + public bool ContainsReagent(string reagentId, ReagentData? data) + => ContainsReagent(new(reagentId, data)); + + public bool TryGetReagent(ReagentId id, out ReagentQuantity quantity) + { + foreach (var tuple in Contents) + { + if (tuple.Reagent != id) + continue; + + DebugTools.Assert(tuple.Quantity > FixedPoint2.Zero); + quantity = tuple; + return true; + } + + quantity = new ReagentQuantity(id, FixedPoint2.Zero); + return false; + } + + public bool TryGetReagentQuantity(ReagentId id, out FixedPoint2 volume) + { + volume = FixedPoint2.Zero; + if (!TryGetReagent(id, out var quant)) + return false; + + volume = quant.Quantity; + return true; + } + + [Pure] + public ReagentQuantity GetReagent(ReagentId id) + { + TryGetReagent(id, out var quantity); + return quantity; + } + + public ReagentQuantity this[ReagentId id] + { + get + { + if (!TryGetReagent(id, out var quantity)) + throw new KeyNotFoundException(id.ToString()); + return quantity; + } + } + + /// + /// Get the volume/quantity of a single reagent in the solution. + /// + [Pure] + public FixedPoint2 GetReagentQuantity(ReagentId id) + { + return GetReagent(id).Quantity; + } + + /// + /// Gets the total volume of all reagents in the solution with the given prototype Id. + /// If you only want the volume of a single reagent, use + /// + [Pure] + public FixedPoint2 GetTotalPrototypeQuantity(string prototype) + { + var total = FixedPoint2.Zero; + foreach (var (reagent, quantity) in Contents) + { + if (reagent.Prototype == prototype) + total += quantity; + } + + return total; + } + + public ReagentId? GetPrimaryReagentId() { if (Contents.Count == 0) return null; @@ -252,15 +316,23 @@ public bool TryGetReagent(string reagentId, out FixedPoint2 quantity) } } - return max.ReagentId!; + return max.Reagent; } /// /// Adds a given quantity of a reagent directly into the solution. /// - /// The prototype ID of the reagent to add. + /// The prototype ID of the reagent to add. + /// The quantity in milli-units. + public void AddReagent(string prototype, FixedPoint2 quantity, bool dirtyHeatCap = true) + => AddReagent(new ReagentId(prototype, null), quantity, dirtyHeatCap); + + /// + /// Adds a given quantity of a reagent directly into the solution. + /// + /// The reagent to add. /// The quantity in milli-units. - public void AddReagent(string reagentId, FixedPoint2 quantity, bool dirtyHeatCap = true) + public void AddReagent(ReagentId id, FixedPoint2 quantity, bool dirtyHeatCap = true) { if (quantity <= 0) { @@ -272,42 +344,45 @@ public void AddReagent(string reagentId, FixedPoint2 quantity, bool dirtyHeatCap _heatCapacityDirty |= dirtyHeatCap; for (var i = 0; i < Contents.Count; i++) { - var reagent = Contents[i]; - if (reagent.ReagentId != reagentId) + var (reagent, existingQuantity) = Contents[i]; + if (reagent != id) continue; - Contents[i] = new ReagentQuantity(reagentId, reagent.Quantity + quantity); + Contents[i] = new ReagentQuantity(id, existingQuantity + quantity); ValidateSolution(); return; } - Contents.Add(new ReagentQuantity(reagentId, quantity)); + Contents.Add(new ReagentQuantity(id, quantity)); ValidateSolution(); } /// /// Adds a given quantity of a reagent directly into the solution. /// - /// The prototype of the reagent to add. + /// The reagent to add. /// The quantity in milli-units. - public void AddReagent(ReagentPrototype proto, FixedPoint2 quantity) + public void AddReagent(ReagentPrototype proto, ReagentId reagentId, FixedPoint2 quantity) { - AddReagent(proto.ID, quantity, false); + AddReagent(reagentId, quantity, false); _heatCapacity += quantity.Float() * proto.SpecificHeat; } + public void AddReagent(ReagentQuantity reagentQuantity) + => AddReagent(reagentQuantity.Reagent, reagentQuantity.Quantity); + /// /// Adds a given quantity of a reagent directly into the solution. /// /// The prototype of the reagent to add. /// The quantity in milli-units. - public void AddReagent(ReagentPrototype proto, FixedPoint2 quantity, float temperature, IPrototypeManager? protoMan) + public void AddReagent(ReagentPrototype proto, FixedPoint2 quantity, float temperature, IPrototypeManager? protoMan, ReagentData? data = null) { if (_heatCapacityDirty) UpdateHeatCapacity(protoMan); var totalThermalEnergy = Temperature * _heatCapacity + temperature * proto.SpecificHeat; - AddReagent(proto, quantity); + AddReagent(new ReagentId(proto.ID, data), quantity); Temperature = _heatCapacity == 0 ? 0 : totalThermalEnergy / _heatCapacity; } @@ -333,7 +408,7 @@ public void ScaleSolution(int scale) for (int i = 0; i < Contents.Count; i++) { var old = Contents[i]; - Contents[i] = new ReagentQuantity(old.ReagentId, old.Quantity * scale); + Contents[i] = new ReagentQuantity(old.Reagent, old.Quantity * scale); } ValidateSolution(); } @@ -362,7 +437,7 @@ public void ScaleSolution(float scale) Contents.RemoveSwap(i); else { - Contents[i] = new ReagentQuantity(old.ReagentId, newQuantity); + Contents[i] = new ReagentQuantity(old.Reagent, newQuantity); Volume += newQuantity; } } @@ -371,43 +446,24 @@ public void ScaleSolution(float scale) ValidateSolution(); } - /// - /// Returns the amount of a single reagent inside the solution. - /// - /// The prototype ID of the reagent to add. - /// The quantity in milli-units. - public FixedPoint2 GetReagentQuantity(string reagentId) - { - for (var i = 0; i < Contents.Count; i++) - { - var reagent = Contents[i]; - if (reagent.ReagentId == reagentId) - return reagent.Quantity; - } - - return FixedPoint2.Zero; - } - /// /// Attempts to remove an amount of reagent from the solution. /// - /// The reagent to be removed. - /// The amount of reagent to remove. + /// The reagent to be removed. /// How much reagent was actually removed. Zero if the reagent is not present on the solution. - public FixedPoint2 RemoveReagent(string reagentId, FixedPoint2 quantity) + public FixedPoint2 RemoveReagent(ReagentQuantity toRemove) { - if (quantity <= FixedPoint2.Zero) + if (toRemove.Quantity <= FixedPoint2.Zero) return FixedPoint2.Zero; for (var i = 0; i < Contents.Count; i++) { - var reagent = Contents[i]; + var (reagent, curQuantity) = Contents[i]; - if(reagent.ReagentId != reagentId) + if(reagent != toRemove.Reagent) continue; - var curQuantity = reagent.Quantity; - var newQuantity = curQuantity - quantity; + var newQuantity = curQuantity - toRemove.Quantity; _heatCapacityDirty = true; if (newQuantity <= 0) @@ -418,16 +474,38 @@ public FixedPoint2 RemoveReagent(string reagentId, FixedPoint2 quantity) return curQuantity; } - Contents[i] = new ReagentQuantity(reagentId, newQuantity); - Volume -= quantity; + Contents[i] = new ReagentQuantity(reagent, newQuantity); + Volume -= toRemove.Quantity; ValidateSolution(); - return quantity; + return toRemove.Quantity; } // Reagent is not on the solution... return FixedPoint2.Zero; } + /// + /// Attempts to remove an amount of reagent from the solution. + /// + /// The prototype of the reagent to be removed. + /// The amount of reagent to remove. + /// How much reagent was actually removed. Zero if the reagent is not present on the solution. + public FixedPoint2 RemoveReagent(string prototype, FixedPoint2 quantity, ReagentData? data = null) + { + return RemoveReagent(new ReagentQuantity(prototype, quantity, data)); + } + + /// + /// Attempts to remove an amount of reagent from the solution. + /// + /// The reagent to be removed. + /// The amount of reagent to remove. + /// How much reagent was actually removed. Zero if the reagent is not present on the solution. + public FixedPoint2 RemoveReagent(ReagentId reagentId, FixedPoint2 quantity) + { + return RemoveReagent(new ReagentQuantity(reagentId, quantity)); + } + public void RemoveAllSolution() { Contents.Clear(); @@ -437,21 +515,33 @@ public void RemoveAllSolution() } /// - /// Splits a solution without the specified reagent. + /// Splits a solution without the specified reagent prototypes. /// - public Solution SplitSolutionWithout(FixedPoint2 toTake, params string[] without) + public Solution SplitSolutionWithout(FixedPoint2 toTake, params string[] excludedPrototypes) { - var existing = new FixedPoint2[without.Length]; - for (var i = 0; i < without.Length; i++) + // First remove the blacklisted prototypes + List excluded = new(); + foreach (var id in excludedPrototypes) { - TryGetReagent(without[i], out existing[i]); - RemoveReagent(without[i], existing[i]); + foreach (var tuple in Contents) + { + if (tuple.Reagent.Prototype != id) + continue; + + excluded.Add(tuple); + RemoveReagent(tuple); + break; + } } + // Then split the solution var sol = SplitSolution(toTake); - for (var i = 0; i < without.Length; i++) - AddReagent(without[i], existing[i]); + // Then re-add the excluded reagents to the original solution. + foreach (var reagent in excluded) + { + AddReagent(reagent); + } return sol; } @@ -477,32 +567,32 @@ public Solution SplitSolution(FixedPoint2 toTake) for (var i = Contents.Count - 1; i >= 0; i--) // iterate backwards because of remove swap. { - var reagent = Contents[i]; + var (reagent, quantity) = Contents[i]; // This is set up such that integer rounding will tend to take more reagents. - var split = remaining * reagent.Quantity.Value / effVol; + var split = remaining * quantity.Value / effVol; if (split <= 0) { - effVol -= reagent.Quantity.Value; + effVol -= quantity.Value; DebugTools.Assert(split == 0, "Negative solution quantity while splitting? Long/int overflow?"); continue; } var splitQuantity = FixedPoint2.FromCents((int) split); - var newQuantity = reagent.Quantity - splitQuantity; + var newQuantity = quantity - splitQuantity; DebugTools.Assert(newQuantity >= 0); if (newQuantity > FixedPoint2.Zero) - Contents[i] = new ReagentQuantity(reagent.ReagentId, newQuantity); + Contents[i] = new ReagentQuantity(reagent, newQuantity); else Contents.RemoveSwap(i); - newSolution.Contents.Add(new ReagentQuantity(reagent.ReagentId, splitQuantity)); + newSolution.Contents.Add(new ReagentQuantity(reagent, splitQuantity)); Volume -= splitQuantity; remaining -= split; - effVol -= reagent.Quantity.Value; + effVol -= quantity.Value; } newSolution.Volume = origVol - Volume; @@ -539,28 +629,28 @@ public void RemoveSolution(FixedPoint2 toTake) var remaining = (long) toTake.Value; for (var i = Contents.Count - 1; i >= 0; i--)// iterate backwards because of remove swap. { - var reagent = Contents[i]; + var (reagent, quantity) = Contents[i]; // This is set up such that integer rounding will tend to take more reagents. - var split = remaining * reagent.Quantity.Value / effVol; + var split = remaining * quantity.Value / effVol; if (split <= 0) { - effVol -= reagent.Quantity.Value; + effVol -= quantity.Value; DebugTools.Assert(split == 0, "Negative solution quantity while splitting? Long/int overflow?"); continue; } var splitQuantity = FixedPoint2.FromCents((int) split); - var newQuantity = reagent.Quantity - splitQuantity; + var newQuantity = quantity - splitQuantity; if (newQuantity > FixedPoint2.Zero) - Contents[i] = new ReagentQuantity(reagent.ReagentId, newQuantity); + Contents[i] = new ReagentQuantity(reagent, newQuantity); else Contents.RemoveSwap(i); remaining -= split; - effVol -= reagent.Quantity.Value; + effVol -= quantity.Value; } DebugTools.Assert(remaining >= 0); @@ -594,23 +684,23 @@ public void AddSolution(Solution otherSolution, IPrototypeManager? protoMan) for (var i = 0; i < otherSolution.Contents.Count; i++) { - var otherReagent = otherSolution.Contents[i]; + var (otherReagent, otherQuantity) = otherSolution.Contents[i]; var found = false; for (var j = 0; j < Contents.Count; j++) { - var reagent = Contents[j]; - if (reagent.ReagentId == otherReagent.ReagentId) + var (reagent, quantity) = Contents[j]; + if (reagent == otherReagent) { found = true; - Contents[j] = new ReagentQuantity(reagent.ReagentId, reagent.Quantity + otherReagent.Quantity); + Contents[j] = new ReagentQuantity(reagent, quantity + otherQuantity); break; } } if (!found) { - Contents.Add(new ReagentQuantity(otherReagent.ReagentId, otherReagent.Quantity)); + Contents.Add(new ReagentQuantity(otherReagent, otherQuantity)); } } @@ -636,14 +726,14 @@ public Color GetColorWithout(IPrototypeManager? protoMan, params string[] withou var runningTotalQuantity = FixedPoint2.New(0); bool first = true; - foreach (var reagent in Contents) + foreach (var (reagent, quantity) in Contents) { - if (without.Contains(reagent.ReagentId)) + if (without.Contains(reagent.Prototype)) continue; - runningTotalQuantity += reagent.Quantity; + runningTotalQuantity += quantity; - if (!protoMan.TryIndex(reagent.ReagentId, out ReagentPrototype? proto)) + if (!protoMan.TryIndex(reagent.Prototype, out ReagentPrototype? proto)) { continue; } @@ -655,7 +745,7 @@ public Color GetColorWithout(IPrototypeManager? protoMan, params string[] withou continue; } - var interpolateValue = reagent.Quantity.Float() / runningTotalQuantity.Float(); + var interpolateValue = quantity.Float() / runningTotalQuantity.Float(); mixColor = Color.InterpolateBetween(mixColor, proto.SubstanceColor, interpolateValue); } return mixColor; @@ -666,46 +756,6 @@ public Color GetColor(IPrototypeManager? protoMan) return GetColorWithout(protoMan); } - [Obsolete("Use ReactiveSystem.DoEntityReaction")] - public void DoEntityReaction(EntityUid uid, ReactionMethod method) - { - IoCManager.Resolve().GetEntitySystem().DoEntityReaction(uid, this, method); - } - - [Serializable, NetSerializable] - [DataDefinition] - public readonly struct ReagentQuantity: IComparable - { - [DataField("ReagentId", customTypeSerializer:typeof(PrototypeIdSerializer), required:true)] - public readonly string ReagentId; - [DataField("Quantity", required:true)] - public readonly FixedPoint2 Quantity; - - public ReagentQuantity(string reagentId, FixedPoint2 quantity) - { - ReagentId = reagentId; - Quantity = quantity; - } - - public ReagentQuantity() : this(string.Empty, default) - { - } - - [ExcludeFromCodeCoverage] - public override string ToString() - { - return $"{ReagentId}:{Quantity}"; - } - - public int CompareTo(ReagentQuantity other) { return Quantity.Float().CompareTo(other.Quantity.Float()); } - - public void Deconstruct(out string reagentId, out FixedPoint2 quantity) - { - reagentId = ReagentId; - quantity = Quantity; - } - } - #region Enumeration public IEnumerator GetEnumerator() @@ -721,6 +771,7 @@ IEnumerator IEnumerable.GetEnumerator() public void SetContents(IEnumerable reagents, bool setMaxVol = false) { + Volume = 0; RemoveAllSolution(); _heatCapacityDirty = true; Contents = new(reagents); @@ -735,5 +786,15 @@ public void SetContents(IEnumerable reagents, bool setMaxVol = ValidateSolution(); } + public Dictionary GetReagentPrototypes(IPrototypeManager protoMan) + { + var dict = new Dictionary(Contents.Count); + foreach (var (reagent, quantity) in Contents) + { + var proto = protoMan.Index(reagent.Prototype); + dict[proto] = quantity + dict.GetValueOrDefault(proto); + } + return dict; + } } } diff --git a/Content.Shared/Chemistry/Components/SolutionScannerComponent.cs b/Content.Shared/Chemistry/Components/SolutionScannerComponent.cs index 12f9ebdc6d0..a342cde2dd1 100644 --- a/Content.Shared/Chemistry/Components/SolutionScannerComponent.cs +++ b/Content.Shared/Chemistry/Components/SolutionScannerComponent.cs @@ -1,7 +1,7 @@ namespace Content.Shared.Chemistry.Components; [RegisterComponent] -public sealed class SolutionScannerComponent : Component +public sealed partial class SolutionScannerComponent : Component { } diff --git a/Content.Shared/Chemistry/Components/SolutionTransferComponent.cs b/Content.Shared/Chemistry/Components/SolutionTransferComponent.cs index 826810dcd73..b130304afc8 100644 --- a/Content.Shared/Chemistry/Components/SolutionTransferComponent.cs +++ b/Content.Shared/Chemistry/Components/SolutionTransferComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Chemistry.Components; /// Gives click behavior for transferring to/from other reagent containers. /// [RegisterComponent, NetworkedComponent] -public sealed class SolutionTransferComponent : Component +public sealed partial class SolutionTransferComponent : Component { /// /// The amount of solution to be transferred from this solution when clicking on other solutions with it. diff --git a/Content.Shared/Chemistry/Dispenser/ReagentDispenserInventoryPrototype.cs b/Content.Shared/Chemistry/Dispenser/ReagentDispenserInventoryPrototype.cs index 15fd6a25203..84578168381 100644 --- a/Content.Shared/Chemistry/Dispenser/ReagentDispenserInventoryPrototype.cs +++ b/Content.Shared/Chemistry/Dispenser/ReagentDispenserInventoryPrototype.cs @@ -14,13 +14,11 @@ namespace Content.Shared.Chemistry.Dispenser [Serializable, NetSerializable, Prototype("reagentDispenserInventory")] public sealed class ReagentDispenserInventoryPrototype : IPrototype { + // TODO use ReagentId [DataField("inventory", customTypeSerializer: typeof(PrototypeIdListSerializer))] - private List _inventory = new(); + public List Inventory = new(); - [ViewVariables] - [IdDataField] + [ViewVariables, IdDataField] public string ID { get; } = default!; - - public List Inventory => _inventory; } } diff --git a/Content.Shared/Chemistry/Reaction/ChemicalReactionSystem.cs b/Content.Shared/Chemistry/Reaction/ChemicalReactionSystem.cs index da8560fc5b4..4ec50bc61ad 100644 --- a/Content.Shared/Chemistry/Reaction/ChemicalReactionSystem.cs +++ b/Content.Shared/Chemistry/Reaction/ChemicalReactionSystem.cs @@ -136,7 +136,9 @@ private bool CanReact(Solution solution, ReactionPrototype reaction, EntityUid o var reactantName = reactantData.Key; var reactantCoefficient = reactantData.Value.Amount; - if (!solution.TryGetReagent(reactantName, out var reactantQuantity)) + var reactantQuantity = solution.GetTotalPrototypeQuantity(reactantName); + + if (reactantQuantity <= FixedPoint2.Zero) return false; if (reactantData.Value.Catalyst) @@ -292,7 +294,7 @@ public void FullyReactSolution(Solution solution, EntityUid owner, FixedPoint2 m SortedSet reactions = new(); foreach (var reactant in solution.Contents) { - if (_reactions.TryGetValue(reactant.ReagentId, out var reactantReactions)) + if (_reactions.TryGetValue(reactant.Reagent.Prototype, out var reactantReactions)) reactions.UnionWith(reactantReactions); } diff --git a/Content.Shared/Chemistry/Reaction/ReactionMixerComponent.cs b/Content.Shared/Chemistry/Reaction/ReactionMixerComponent.cs index 55d19e353bd..849fffcf5e3 100644 --- a/Content.Shared/Chemistry/Reaction/ReactionMixerComponent.cs +++ b/Content.Shared/Chemistry/Reaction/ReactionMixerComponent.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Chemistry.Reaction; [RegisterComponent] -public sealed class ReactionMixerComponent : Component +public sealed partial class ReactionMixerComponent : Component { /// /// A list of IDs for categories of reactions that can be mixed (i.e. HOLY for a bible, DRINK for a spoon) diff --git a/Content.Shared/Chemistry/Reaction/ReactionPrototype.cs b/Content.Shared/Chemistry/Reaction/ReactionPrototype.cs index ac561ccbdff..2ad0ff5e1d5 100644 --- a/Content.Shared/Chemistry/Reaction/ReactionPrototype.cs +++ b/Content.Shared/Chemistry/Reaction/ReactionPrototype.cs @@ -15,10 +15,10 @@ public sealed class ReactionPrototype : IPrototype, IComparable /// Reactants required for the reaction to occur. @@ -108,7 +108,7 @@ public int CompareTo(ReactionPrototype? other) /// Prototype for chemical reaction reactants. /// [DataDefinition] - public sealed class ReactantPrototype + public sealed partial class ReactantPrototype { [DataField("amount")] private FixedPoint2 _amount = FixedPoint2.New(1); diff --git a/Content.Shared/Chemistry/Reaction/ReactiveComponent.cs b/Content.Shared/Chemistry/Reaction/ReactiveComponent.cs index 45df9a7d065..310129c6fc7 100644 --- a/Content.Shared/Chemistry/Reaction/ReactiveComponent.cs +++ b/Content.Shared/Chemistry/Reaction/ReactiveComponent.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Chemistry.Reaction; [RegisterComponent] -public sealed class ReactiveComponent : Component +public sealed partial class ReactiveComponent : Component { /// /// A dictionary of reactive groups -> methods that work on them. @@ -24,7 +24,7 @@ public sealed class ReactiveComponent : Component } [DataDefinition] -public sealed class ReactiveReagentEffectEntry +public sealed partial class ReactiveReagentEffectEntry { [DataField("methods")] public HashSet Methods = default!; @@ -37,5 +37,5 @@ public sealed class ReactiveReagentEffectEntry [DataField("groups", readOnly: true, serverOnly: true, customTypeSerializer:typeof(PrototypeIdDictionarySerializer, ReactiveGroupPrototype>))] - public Dictionary>? ReactiveGroups { get; } + public Dictionary>? ReactiveGroups { get; private set; } } diff --git a/Content.Shared/Chemistry/Reaction/ReactiveGroupPrototype.cs b/Content.Shared/Chemistry/Reaction/ReactiveGroupPrototype.cs index aeb2e06554d..32935368150 100644 --- a/Content.Shared/Chemistry/Reaction/ReactiveGroupPrototype.cs +++ b/Content.Shared/Chemistry/Reaction/ReactiveGroupPrototype.cs @@ -6,5 +6,5 @@ namespace Content.Shared.Chemistry.Reaction; public sealed class ReactiveGroupPrototype : IPrototype { [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; } diff --git a/Content.Shared/Chemistry/ReactiveSystem.cs b/Content.Shared/Chemistry/ReactiveSystem.cs index ca372e940bd..4881a6bf96d 100644 --- a/Content.Shared/Chemistry/ReactiveSystem.cs +++ b/Content.Shared/Chemistry/ReactiveSystem.cs @@ -19,32 +19,33 @@ public sealed class ReactiveSystem : EntitySystem public void DoEntityReaction(EntityUid uid, Solution solution, ReactionMethod method) { - foreach (var (reagentId, quantity) in solution.Contents.ToArray()) + foreach (var reagent in solution.Contents.ToArray()) { - ReactionEntity(uid, method, reagentId, quantity, solution); + ReactionEntity(uid, method, reagent, solution); } } - public void ReactionEntity(EntityUid uid, ReactionMethod method, string reagentId, FixedPoint2 reactVolume, Solution? source) + public void ReactionEntity(EntityUid uid, ReactionMethod method, ReagentQuantity reagentQuantity, Solution? source) { // We throw if the reagent specified doesn't exist. - ReactionEntity(uid, method, _prototypeManager.Index(reagentId), reactVolume, source); + var proto = _prototypeManager.Index(reagentQuantity.Reagent.Prototype); + ReactionEntity(uid, method, proto, reagentQuantity, source); } - public void ReactionEntity(EntityUid uid, ReactionMethod method, ReagentPrototype reagent, - FixedPoint2 reactVolume, Solution? source) + public void ReactionEntity(EntityUid uid, ReactionMethod method, ReagentPrototype proto, + ReagentQuantity reagentQuantity, Solution? source) { - if (!EntityManager.TryGetComponent(uid, out ReactiveComponent? reactive)) + if (!TryComp(uid, out ReactiveComponent? reactive)) return; // If we have a source solution, use the reagent quantity we have left. Otherwise, use the reaction volume specified. - var args = new ReagentEffectArgs(uid, null, source, reagent, - source?.GetReagentQuantity(reagent.ID) ?? reactVolume, EntityManager, method, 1f); + var args = new ReagentEffectArgs(uid, null, source, proto, + source?.GetReagentQuantity(reagentQuantity.Reagent) ?? reagentQuantity.Quantity, EntityManager, method, 1f); // First, check if the reagent wants to apply any effects. - if (reagent.ReactiveEffects != null && reactive.ReactiveGroups != null) + if (proto.ReactiveEffects != null && reactive.ReactiveGroups != null) { - foreach (var (key, val) in reagent.ReactiveEffects) + foreach (var (key, val) in proto.ReactiveEffects) { if (!val.Methods.Contains(method)) continue; @@ -64,7 +65,7 @@ public void ReactionEntity(EntityUid uid, ReactionMethod method, ReagentPrototyp { var entity = args.SolutionEntity; _adminLogger.Add(LogType.ReagentEffect, effect.LogImpact, - $"Reactive effect {effect.GetType().Name:effect} of reagent {reagent.ID:reagent} with method {method} applied on entity {ToPrettyString(entity):entity} at {Transform(entity).Coordinates:coordinates}"); + $"Reactive effect {effect.GetType().Name:effect} of reagent {proto.ID:reagent} with method {method} applied on entity {ToPrettyString(entity):entity} at {Transform(entity).Coordinates:coordinates}"); } effect.Effect(args); @@ -80,7 +81,7 @@ public void ReactionEntity(EntityUid uid, ReactionMethod method, ReagentPrototyp if (!entry.Methods.Contains(method)) continue; - if (entry.Reagents != null && !entry.Reagents.Contains(reagent.ID)) + if (entry.Reagents != null && !entry.Reagents.Contains(proto.ID)) continue; foreach (var effect in entry.Effects) @@ -92,7 +93,7 @@ public void ReactionEntity(EntityUid uid, ReactionMethod method, ReagentPrototyp { var entity = args.SolutionEntity; _adminLogger.Add(LogType.ReagentEffect, effect.LogImpact, - $"Reactive effect {effect.GetType().Name:effect} of {ToPrettyString(entity):entity} using reagent {reagent.ID:reagent} with method {method} at {Transform(entity).Coordinates:coordinates}"); + $"Reactive effect {effect.GetType().Name:effect} of {ToPrettyString(entity):entity} using reagent {proto.ID:reagent} with method {method} at {Transform(entity).Coordinates:coordinates}"); } effect.Effect(args); diff --git a/Content.Shared/Chemistry/Reagent/ReagentData.cs b/Content.Shared/Chemistry/Reagent/ReagentData.cs new file mode 100644 index 00000000000..a4a77f552e3 --- /dev/null +++ b/Content.Shared/Chemistry/Reagent/ReagentData.cs @@ -0,0 +1,44 @@ +using Content.Shared.FixedPoint; +using Robust.Shared.Serialization; + +namespace Content.Shared.Chemistry.Reagent; + +[ImplicitDataDefinitionForInheritors, Serializable, NetSerializable] +public abstract partial class ReagentData : IEquatable +{ + /// + /// Convert to a string representation. This if for logging & debugging. This is not localized and should not be + /// shown to players. + /// + public virtual string ToString(string prototype, FixedPoint2 quantity) + { + return $"{prototype}:{GetType().Name}:{quantity}"; + } + + /// + /// Convert to a string representation. This if for logging & debugging. This is not localized and should not be + /// shown to players. + /// + public virtual string ToString(string prototype) + { + return $"{prototype}:{GetType().Name}"; + } + + public abstract bool Equals(ReagentData? other); + + public override bool Equals(object? obj) + { + if (ReferenceEquals(null, obj)) + return false; + if (ReferenceEquals(this, obj)) + return true; + if (obj.GetType() != GetType()) + return false; + + return Equals((ReagentData) obj); + } + + public abstract override int GetHashCode(); + + public abstract ReagentData Clone(); +} diff --git a/Content.Shared/Chemistry/Reagent/ReagentEffect.cs b/Content.Shared/Chemistry/Reagent/ReagentEffect.cs index 1ece3afc135..5bcb21fedb3 100644 --- a/Content.Shared/Chemistry/Reagent/ReagentEffect.cs +++ b/Content.Shared/Chemistry/Reagent/ReagentEffect.cs @@ -16,7 +16,7 @@ namespace Content.Shared.Chemistry.Reagent /// [ImplicitDataDefinitionForInheritors] [MeansImplicitUse] - public abstract class ReagentEffect + public abstract partial class ReagentEffect { [JsonPropertyName("id")] private protected string _id => this.GetType().Name; /// @@ -39,14 +39,14 @@ public abstract class ReagentEffect [JsonIgnore] [DataField("logImpact")] - public virtual LogImpact LogImpact { get; } = LogImpact.Low; + public virtual LogImpact LogImpact { get; private set; } = LogImpact.Low; /// /// Should this reagent effect log at all? /// [JsonIgnore] [DataField("shouldLog")] - public virtual bool ShouldLog { get; } = false; + public virtual bool ShouldLog { get; private set; } = false; public abstract void Effect(ReagentEffectArgs args); diff --git a/Content.Shared/Chemistry/Reagent/ReagentEffectCondition.cs b/Content.Shared/Chemistry/Reagent/ReagentEffectCondition.cs index 708fe24c702..a32b4fa8e3a 100644 --- a/Content.Shared/Chemistry/Reagent/ReagentEffectCondition.cs +++ b/Content.Shared/Chemistry/Reagent/ReagentEffectCondition.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Chemistry.Reagent { [ImplicitDataDefinitionForInheritors] [MeansImplicitUse] - public abstract class ReagentEffectCondition + public abstract partial class ReagentEffectCondition { [JsonPropertyName("id")] private protected string _id => this.GetType().Name; diff --git a/Content.Shared/Chemistry/Reagent/ReagentId.cs b/Content.Shared/Chemistry/Reagent/ReagentId.cs new file mode 100644 index 00000000000..07a42002197 --- /dev/null +++ b/Content.Shared/Chemistry/Reagent/ReagentId.cs @@ -0,0 +1,93 @@ +using Content.Shared.FixedPoint; +using Robust.Shared.Serialization; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Shared.Chemistry.Reagent; + +/// +/// Struct used to uniquely identify a reagent. This is usually just a ReagentPrototype id string, however some reagents +/// contain additional data (e.g., blood could store DNA data). +/// +[Serializable, NetSerializable] +[DataDefinition] +public partial struct ReagentId : IEquatable +{ + // TODO rename data field. + [DataField("ReagentId", customTypeSerializer: typeof(PrototypeIdSerializer), required: true)] + public string Prototype { get; private set; } + + /// + /// Any additional data that is unique to this reagent type. E.g., for blood this could be DNA data. + /// + [DataField("data")] + public ReagentData? Data { get; private set; } + + public ReagentId(string prototype, ReagentData? data) + { + Prototype = prototype; + Data = data; + } + + public ReagentId() + { + Prototype = default!; + } + + public bool Equals(ReagentId other) + { + if (Prototype != other.Prototype) + return false; + + if (Data == null) + return other.Data == null; + + if (other.Data == null) + return false; + + if (Data.GetType() != other.Data.GetType()) + return false; + + return Data.Equals(other.Data); + } + + public bool Equals(string prototype, ReagentData? otherData = null) + { + if (Prototype != prototype) + return false; + + if (Data == null) + return otherData == null; + + return Data.Equals(otherData); + } + + public override bool Equals(object? obj) + { + return obj is ReagentId other && Equals(other); + } + + public override int GetHashCode() + { + return HashCode.Combine(Prototype, Data); + } + + public string ToString(FixedPoint2 quantity) + { + return Data?.ToString(Prototype, quantity) ?? $"{Prototype}:{quantity}"; + } + + public override string ToString() + { + return Data?.ToString(Prototype) ?? Prototype; + } + + public static bool operator ==(ReagentId left, ReagentId right) + { + return left.Equals(right); + } + + public static bool operator !=(ReagentId left, ReagentId right) + { + return !(left == right); + } +} diff --git a/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs b/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs index abf8fa82755..0f24a363392 100644 --- a/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs +++ b/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs @@ -21,20 +21,20 @@ namespace Content.Shared.Chemistry.Reagent { [Prototype("reagent")] [DataDefinition] - public sealed class ReagentPrototype : IPrototype, IInheritingPrototype + public sealed partial class ReagentPrototype : IPrototype, IInheritingPrototype { [ViewVariables] [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [DataField("name", required: true)] - private string Name { get; } = default!; + private string Name { get; set; } = default!; [ViewVariables(VVAccess.ReadOnly)] public string LocalizedName => Loc.GetString(Name); [DataField("group")] - public string Group { get; } = "Unknown"; + public string Group { get; private set; } = "Unknown"; [ParentDataFieldAttribute(typeof(AbstractPrototypeIdArraySerializer))] public string[]? Parents { get; private set; } @@ -44,13 +44,13 @@ public sealed class ReagentPrototype : IPrototype, IInheritingPrototype public bool Abstract { get; private set; } [DataField("desc", required: true)] - private string Description { get; } = default!; + private string Description { get; set; } = default!; [ViewVariables(VVAccess.ReadOnly)] public string LocalizedDescription => Loc.GetString(Description); [DataField("physicalDesc", required: true)] - private string PhysicalDescription { get; } = default!; + private string PhysicalDescription { get; set; } = default!; [ViewVariables(VVAccess.ReadOnly)] public string LocalizedPhysicalDescription => Loc.GetString(PhysicalDescription); @@ -71,23 +71,23 @@ public sealed class ReagentPrototype : IPrototype, IInheritingPrototype public FixedPoint2 FlavorMinimum = FixedPoint2.New(0.1f); [DataField("color")] - public Color SubstanceColor { get; } = Color.White; + public Color SubstanceColor { get; private set; } = Color.White; /// /// The specific heat of the reagent. /// How much energy it takes to heat one unit of this reagent by one Kelvin. /// [DataField("specificHeat")] - public float SpecificHeat { get; } = 1.0f; + public float SpecificHeat { get; private set; } = 1.0f; [DataField("boilingPoint")] - public float? BoilingPoint { get; } + public float? BoilingPoint { get; private set; } [DataField("meltingPoint")] - public float? MeltingPoint { get; } + public float? MeltingPoint { get; private set; } [DataField("metamorphicSprite")] - public SpriteSpecifier? MetamorphicSprite { get; } = null; + public SpriteSpecifier? MetamorphicSprite { get; private set; } = null; /// /// If this reagent is part of a puddle is it slippery. @@ -109,10 +109,10 @@ public sealed class ReagentPrototype : IPrototype, IInheritingPrototype public Dictionary? ReactiveEffects = null; [DataField("tileReactions", serverOnly: true)] - public readonly List TileReactions = new(0); + public List TileReactions = new(0); [DataField("plantMetabolism", serverOnly: true)] - public readonly List PlantMetabolisms = new(0); + public List PlantMetabolisms = new(0); [DataField("pricePerUnit")] public float PricePerUnit; @@ -141,7 +141,7 @@ public FixedPoint2 ReactionTile(TileRef tile, FixedPoint2 reactVolume) return removed; } - public void ReactionPlant(EntityUid? plantHolder, Solution.ReagentQuantity amount, Solution solution) + public void ReactionPlant(EntityUid? plantHolder, ReagentQuantity amount, Solution solution) { if (plantHolder == null) return; @@ -184,7 +184,7 @@ public ReagentGuideEntry(ReagentPrototype proto, IPrototypeManager prototype, IE [DataDefinition] - public sealed class ReagentEffectsEntry + public sealed partial class ReagentEffectsEntry { /// /// Amount of reagent to metabolize, per metabolism cycle. @@ -226,7 +226,7 @@ public ReagentEffectsGuideEntry(FixedPoint2 metabolismRate, string[] effectDescr } [DataDefinition] - public sealed class ReactiveReagentEffectEntry + public sealed partial class ReactiveReagentEffectEntry { [DataField("methods", required: true)] public HashSet Methods = default!; diff --git a/Content.Shared/Chemistry/Reagent/ReagentQuantity.cs b/Content.Shared/Chemistry/Reagent/ReagentQuantity.cs new file mode 100644 index 00000000000..9644f919f74 --- /dev/null +++ b/Content.Shared/Chemistry/Reagent/ReagentQuantity.cs @@ -0,0 +1,77 @@ +using Content.Shared.FixedPoint; +using Robust.Shared.Serialization; + +namespace Content.Shared.Chemistry.Reagent; + +/// +/// Simple struct for storing a & quantity tuple. +/// +[Serializable, NetSerializable] +[DataDefinition] +public partial struct ReagentQuantity : IEquatable +{ + [DataField("Quantity", required:true)] + public FixedPoint2 Quantity { get; private set; } + + [IncludeDataField] + [ViewVariables] + public ReagentId Reagent { get; private set; } + + public ReagentQuantity(string reagentId, FixedPoint2 quantity, ReagentData? data) + : this(new ReagentId(reagentId, data), quantity) + { + } + + public ReagentQuantity(ReagentId reagent, FixedPoint2 quantity) + { + Reagent = reagent; + Quantity = quantity; + } + + public ReagentQuantity() : this(default, default) + { + } + + public override string ToString() + { + return Reagent.ToString(Quantity); + } + + public void Deconstruct(out string prototype, out FixedPoint2 quantity, out ReagentData? data) + { + prototype = Reagent.Prototype; + quantity = Quantity; + data = Reagent.Data; + } + + public void Deconstruct(out ReagentId id, out FixedPoint2 quantity) + { + id = Reagent; + quantity = Quantity; + } + + public bool Equals(ReagentQuantity other) + { + return Quantity != other.Quantity && Reagent.Equals(other.Reagent); + } + + public override bool Equals(object? obj) + { + return obj is ReagentQuantity other && Equals(other); + } + + public override int GetHashCode() + { + return HashCode.Combine(Reagent.GetHashCode(), Quantity); + } + + public static bool operator ==(ReagentQuantity left, ReagentQuantity right) + { + return left.Equals(right); + } + + public static bool operator !=(ReagentQuantity left, ReagentQuantity right) + { + return !(left == right); + } +} diff --git a/Content.Shared/Chemistry/SharedChemMaster.cs b/Content.Shared/Chemistry/SharedChemMaster.cs index 0e20e91a515..027002098e0 100644 --- a/Content.Shared/Chemistry/SharedChemMaster.cs +++ b/Content.Shared/Chemistry/SharedChemMaster.cs @@ -1,4 +1,5 @@ using Content.Shared.Chemistry.Components; +using Content.Shared.Chemistry.Reagent; using Content.Shared.FixedPoint; using Robust.Shared.Serialization; @@ -43,11 +44,11 @@ public ChemMasterSetPillTypeMessage(uint pillType) [Serializable, NetSerializable] public sealed class ChemMasterReagentAmountButtonMessage : BoundUserInterfaceMessage { - public readonly string ReagentId; + public readonly ReagentId ReagentId; public readonly ChemMasterReagentAmount Amount; public readonly bool FromBuffer; - public ChemMasterReagentAmountButtonMessage(string reagentId, ChemMasterReagentAmount amount, bool fromBuffer) + public ChemMasterReagentAmountButtonMessage(ReagentId reagentId, ChemMasterReagentAmount amount, bool fromBuffer) { ReagentId = reagentId; Amount = amount; @@ -121,34 +122,29 @@ public sealed class ContainerInfo /// The container name to show to the player /// public readonly string DisplayName; - /// - /// Whether the container holds reagents or entities - /// - public readonly bool HoldsReagents; + /// /// The currently used volume of the container /// public readonly FixedPoint2 CurrentVolume; + /// /// The maximum volume of the container /// public readonly FixedPoint2 MaxVolume; + /// - /// A list of the reagents/entities and their sizes within the container + /// A list of the entities and their sizes within the container /// - // todo: this causes NetSerializer exceptions if it's an IReadOnlyList (which would be preferred) - public readonly List<(string Id, FixedPoint2 Quantity)> Contents; + public List<(string Id, FixedPoint2 Quantity)>? Entities { get; init; } + + public List? Reagents { get; init; } - public ContainerInfo( - string displayName, bool holdsReagents, - FixedPoint2 currentVolume, FixedPoint2 maxVolume, - List<(string, FixedPoint2)> contents) + public ContainerInfo(string displayName, FixedPoint2 currentVolume, FixedPoint2 maxVolume) { DisplayName = displayName; - HoldsReagents = holdsReagents; CurrentVolume = currentVolume; MaxVolume = maxVolume; - Contents = contents; } } @@ -161,7 +157,7 @@ public sealed class ChemMasterBoundUserInterfaceState : BoundUserInterfaceState /// /// A list of the reagents and their amounts within the buffer, if applicable. /// - public readonly IReadOnlyList BufferReagents; + public readonly IReadOnlyList BufferReagents; public readonly ChemMasterMode Mode; @@ -174,7 +170,7 @@ public sealed class ChemMasterBoundUserInterfaceState : BoundUserInterfaceState public ChemMasterBoundUserInterfaceState( ChemMasterMode mode, ContainerInfo? inputContainerInfo, ContainerInfo? outputContainerInfo, - IReadOnlyList bufferReagents, FixedPoint2 bufferCurrentVolume, + IReadOnlyList bufferReagents, FixedPoint2 bufferCurrentVolume, uint selectedPillType, uint pillDosageLimit, bool updateLabel) { InputContainerInfo = inputContainerInfo; diff --git a/Content.Shared/Chemistry/SharedReagentDispenser.cs b/Content.Shared/Chemistry/SharedReagentDispenser.cs index 3dd9a18f427..1ecb0993f53 100644 --- a/Content.Shared/Chemistry/SharedReagentDispenser.cs +++ b/Content.Shared/Chemistry/SharedReagentDispenser.cs @@ -1,3 +1,4 @@ +using Content.Shared.Chemistry.Reagent; using Robust.Shared.Serialization; namespace Content.Shared.Chemistry @@ -24,9 +25,9 @@ public ReagentDispenserSetDispenseAmountMessage(ReagentDispenserDispenseAmount a [Serializable, NetSerializable] public sealed class ReagentDispenserDispenseReagentMessage : BoundUserInterfaceMessage { - public readonly string ReagentId; + public readonly ReagentId ReagentId; - public ReagentDispenserDispenseReagentMessage(string reagentId) + public ReagentDispenserDispenseReagentMessage(ReagentId reagentId) { ReagentId = reagentId; } @@ -58,11 +59,11 @@ public sealed class ReagentDispenserBoundUserInterfaceState : BoundUserInterface /// /// A list of the reagents which this dispenser can dispense. /// - public readonly List Inventory; + public readonly List Inventory; public readonly ReagentDispenserDispenseAmount SelectedDispenseAmount; - public ReagentDispenserBoundUserInterfaceState(ContainerInfo? outputContainer, List inventory, ReagentDispenserDispenseAmount selectedDispenseAmount) + public ReagentDispenserBoundUserInterfaceState(ContainerInfo? outputContainer, List inventory, ReagentDispenserDispenseAmount selectedDispenseAmount) { OutputContainer = outputContainer; Inventory = inventory; diff --git a/Content.Shared/Climbing/BonkSystem.cs b/Content.Shared/Climbing/BonkSystem.cs index 09bee2d7f8e..eda392fa31f 100644 --- a/Content.Shared/Climbing/BonkSystem.cs +++ b/Content.Shared/Climbing/BonkSystem.cs @@ -13,7 +13,7 @@ namespace Content.Shared.Climbing; -public sealed class BonkSystem : EntitySystem +public sealed partial class BonkSystem : EntitySystem { [Dependency] private readonly IConfigurationManager _cfg = default!; [Dependency] private readonly DamageableSystem _damageableSystem = default!; @@ -76,7 +76,7 @@ private void OnDragDrop(EntityUid uid, BonkableComponent component, ref DragDrop if (args.Handled || !HasComp(args.Dragged)) return; - var doAfterArgs = new DoAfterArgs(args.Dragged, component.BonkDelay, new BonkDoAfterEvent(), uid, target: uid) + var doAfterArgs = new DoAfterArgs(EntityManager, args.Dragged, component.BonkDelay, new BonkDoAfterEvent(), uid, target: uid) { BreakOnTargetMove = true, BreakOnUserMove = true, @@ -89,7 +89,7 @@ private void OnDragDrop(EntityUid uid, BonkableComponent component, ref DragDrop } [Serializable, NetSerializable] - private sealed class BonkDoAfterEvent : SimpleDoAfterEvent + private sealed partial class BonkDoAfterEvent : SimpleDoAfterEvent { } } diff --git a/Content.Shared/Climbing/BonkableComponent.cs b/Content.Shared/Climbing/BonkableComponent.cs index 7fccde5bc4c..afffe1ff991 100644 --- a/Content.Shared/Climbing/BonkableComponent.cs +++ b/Content.Shared/Climbing/BonkableComponent.cs @@ -9,7 +9,7 @@ namespace Content.Shared.Climbing; /// upon DragDrop or Climb interactions. /// [RegisterComponent, NetworkedComponent, Access(typeof(BonkSystem))] -public sealed class BonkableComponent : Component +public sealed partial class BonkableComponent : Component { /// /// Chance of bonk triggering if the user is clumsy. diff --git a/Content.Shared/Climbing/ClimbableComponent.cs b/Content.Shared/Climbing/ClimbableComponent.cs index 60f2cad9b93..7ad289348ab 100644 --- a/Content.Shared/Climbing/ClimbableComponent.cs +++ b/Content.Shared/Climbing/ClimbableComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Climbing { [RegisterComponent, NetworkedComponent] - public sealed class ClimbableComponent : Component + public sealed partial class ClimbableComponent : Component { /// /// The range from which this entity can be climbed. diff --git a/Content.Shared/Climbing/ClimbingComponent.cs b/Content.Shared/Climbing/ClimbingComponent.cs index bf9745ebd6a..40e192d8ef0 100644 --- a/Content.Shared/Climbing/ClimbingComponent.cs +++ b/Content.Shared/Climbing/ClimbingComponent.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Climbing; [RegisterComponent, NetworkedComponent] -public sealed class ClimbingComponent : Component +public sealed partial class ClimbingComponent : Component { /// /// Whether the owner is climbing on a climbable entity. diff --git a/Content.Shared/Climbing/SharedClimbSystem.cs b/Content.Shared/Climbing/SharedClimbSystem.cs index 915b69392a8..12b84bbb7ea 100644 --- a/Content.Shared/Climbing/SharedClimbSystem.cs +++ b/Content.Shared/Climbing/SharedClimbSystem.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Climbing; -public abstract class SharedClimbSystem : EntitySystem +public abstract partial class SharedClimbSystem : EntitySystem { public override void Initialize() { @@ -28,7 +28,7 @@ protected virtual void OnCanDragDropOn(EntityUid uid, ClimbableComponent compone } [Serializable, NetSerializable] - protected sealed class ClimbDoAfterEvent : SimpleDoAfterEvent + protected sealed partial class ClimbDoAfterEvent : SimpleDoAfterEvent { } } diff --git a/Content.Shared/Clothing/ClothingEvents.cs b/Content.Shared/Clothing/ClothingEvents.cs index 639212dd4d9..028537f8b2b 100644 --- a/Content.Shared/Clothing/ClothingEvents.cs +++ b/Content.Shared/Clothing/ClothingEvents.cs @@ -1,4 +1,6 @@ +using Content.Shared.Actions; + namespace Content.Shared.Clothing; /// @@ -55,3 +57,5 @@ public EquipmentVisualsUpdatedEvent(EntityUid equipee, string slot, HashSet [Access(typeof(ToggleableClothingSystem))] [RegisterComponent] -public sealed class AttachedClothingComponent : Component +public sealed partial class AttachedClothingComponent : Component { /// /// The Id of the piece of clothing that this entity belongs to. diff --git a/Content.Shared/Clothing/Components/ChameleonClothingComponent.cs b/Content.Shared/Clothing/Components/ChameleonClothingComponent.cs index 56f5d3646e0..d2f2138670f 100644 --- a/Content.Shared/Clothing/Components/ChameleonClothingComponent.cs +++ b/Content.Shared/Clothing/Components/ChameleonClothingComponent.cs @@ -12,7 +12,7 @@ namespace Content.Shared.Clothing.Components; /// [RegisterComponent, NetworkedComponent] [Access(typeof(SharedChameleonClothingSystem))] -public sealed class ChameleonClothingComponent : Component +public sealed partial class ChameleonClothingComponent : Component { /// /// Filter possible chameleon options by their slot flag. diff --git a/Content.Shared/Clothing/Components/ClothingComponent.cs b/Content.Shared/Clothing/Components/ClothingComponent.cs index a748e2348ed..321b06114ac 100644 --- a/Content.Shared/Clothing/Components/ClothingComponent.cs +++ b/Content.Shared/Clothing/Components/ClothingComponent.cs @@ -12,7 +12,7 @@ namespace Content.Shared.Clothing.Components; [NetworkedComponent] [RegisterComponent] [Access(typeof(ClothingSystem), typeof(InventorySystem))] -public sealed class ClothingComponent : Component +public sealed partial class ClothingComponent : Component { [DataField("clothingVisuals")] [Access(typeof(ClothingSystem), typeof(InventorySystem), Other = AccessPermissions.ReadExecute)] // TODO remove execute permissions. diff --git a/Content.Shared/Clothing/Components/LoadoutComponent.cs b/Content.Shared/Clothing/Components/LoadoutComponent.cs index a6d426a4b7d..e4a02760d35 100644 --- a/Content.Shared/Clothing/Components/LoadoutComponent.cs +++ b/Content.Shared/Clothing/Components/LoadoutComponent.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Clothing.Components; [RegisterComponent, NetworkedComponent] -public sealed class LoadoutComponent : Component +public sealed partial class LoadoutComponent : Component { /// /// A list of starting gears, of which one will be given. diff --git a/Content.Shared/Clothing/Components/StealthClothingComponent.cs b/Content.Shared/Clothing/Components/StealthClothingComponent.cs new file mode 100644 index 00000000000..fe84fbe76c7 --- /dev/null +++ b/Content.Shared/Clothing/Components/StealthClothingComponent.cs @@ -0,0 +1,43 @@ +using Content.Shared.Actions; +using Content.Shared.Clothing.EntitySystems; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Shared.Clothing.Components; + +/// +/// Adds StealthComponent to the user when enabled, either by an action or the system's SetEnabled method. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState(true), Access(typeof(StealthClothingSystem))] +public sealed partial class StealthClothingComponent : Component +{ + /// + /// Whether stealth effect is enabled. + /// + [DataField("enabled"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + public bool Enabled; + + /// + /// Number added to MinVisibility when stealthed, to make the user not fully invisible. + /// + [DataField("visibility"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + public float Visibility; + + [DataField("toggleAction", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string ToggleAction = "ActionTogglePhaseCloak"; + + /// + /// The action for enabling and disabling stealth. + /// + [DataField("toggleActionEntity")] public EntityUid? ToggleActionEntity; +} + +/// +/// When stealth is enabled, disables it. +/// When it is disabled, raises before enabling. +/// Put any checks in a handler for that event to cancel it. +/// +public sealed partial class ToggleStealthEvent : InstantActionEvent +{ +} diff --git a/Content.Shared/Clothing/Components/ToggleableClothingComponent.cs b/Content.Shared/Clothing/Components/ToggleableClothingComponent.cs index fc584639e04..b87cd3fee5d 100644 --- a/Content.Shared/Clothing/Components/ToggleableClothingComponent.cs +++ b/Content.Shared/Clothing/Components/ToggleableClothingComponent.cs @@ -1,4 +1,3 @@ -using Content.Shared.Actions.ActionTypes; using Content.Shared.Clothing.EntitySystems; using Content.Shared.Inventory; using Robust.Shared.Containers; @@ -13,26 +12,29 @@ namespace Content.Shared.Clothing.Components; /// [Access(typeof(ToggleableClothingSystem))] [RegisterComponent] -public sealed class ToggleableClothingComponent : Component +public sealed partial class ToggleableClothingComponent : Component { public const string DefaultClothingContainerId = "toggleable-clothing"; /// /// Action used to toggle the clothing on or off. /// - [DataField("actionId", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string ActionId = "ToggleSuitHelmet"; - public InstantAction? ToggleAction = null; + [DataField("action", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string Action = "ActionToggleSuitPiece"; + + [DataField("actionEntity")] + public EntityUid? ActionEntity; /// /// Default clothing entity prototype to spawn into the clothing container. /// [DataField("clothingPrototype", required: true, customTypeSerializer:typeof(PrototypeIdSerializer))] - public readonly string ClothingPrototype = default!; + public string ClothingPrototype = default!; /// /// The inventory slot that the clothing is equipped to. /// + [ViewVariables(VVAccess.ReadWrite)] [DataField("slot")] public string Slot = "head"; @@ -65,7 +67,7 @@ public sealed class ToggleableClothingComponent : Component public TimeSpan? StripDelay = TimeSpan.FromSeconds(3); /// - /// Text shown in the toggle-clothing verb. Defaults to using the name of the action. + /// Text shown in the toggle-clothing verb. Defaults to using the name of the action. /// [DataField("verbText")] public string? VerbText; diff --git a/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs index 1484d74963a..34b48bc2926 100644 --- a/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs @@ -13,6 +13,7 @@ public abstract class SharedChameleonClothingSystem : EntitySystem [Dependency] private readonly IPrototypeManager _proto = default!; [Dependency] private readonly SharedItemSystem _itemSystem = default!; [Dependency] private readonly ClothingSystem _clothingSystem = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; public override void Initialize() { @@ -46,8 +47,8 @@ protected void UpdateVisuals(EntityUid uid, ChameleonClothingComponent component // copy name and description var meta = MetaData(uid); - meta.EntityName = proto.Name; - meta.EntityDescription = proto.Description; + _metaData.SetEntityName(uid, proto.Name, meta); + _metaData.SetEntityDescription(uid, proto.Description, meta); // item sprite logic if (TryComp(uid, out ItemComponent? item) && diff --git a/Content.Shared/Clothing/EntitySystems/StealthClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/StealthClothingSystem.cs new file mode 100644 index 00000000000..2fbaa6ea20b --- /dev/null +++ b/Content.Shared/Clothing/EntitySystems/StealthClothingSystem.cs @@ -0,0 +1,136 @@ +using Content.Shared.Actions; +using Content.Shared.Clothing.Components; +using Content.Shared.Inventory.Events; +using Content.Shared.Stealth; +using Content.Shared.Stealth.Components; + +namespace Content.Shared.Clothing.EntitySystems; + +/// +/// Handles the toggle action and disables stealth when clothing is unequipped. +/// +public sealed class StealthClothingSystem : EntitySystem +{ + [Dependency] private readonly SharedStealthSystem _stealth = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnGetItemActions); + SubscribeLocalEvent(OnToggleStealth); + SubscribeLocalEvent(OnHandleState); + SubscribeLocalEvent(OnUnequipped); + } + + /// + /// Sets the clothing's stealth effect for the user. + /// + /// True if it was changed, false otherwise + public bool SetEnabled(EntityUid uid, EntityUid user, bool enabled, StealthClothingComponent? comp = null) + { + if (!Resolve(uid, ref comp) || comp.Enabled == enabled) + return false; + + // TODO remove this when clothing unequip on delete is less sus + // prevent debug assert when ending round and its disabled + if (MetaData(user).EntityLifeStage >= EntityLifeStage.Terminating) + return false; + + comp.Enabled = enabled; + Dirty(uid, comp); + + var stealth = EnsureComp(user); + // slightly visible, but doesn't change when moving so it's ok + var visibility = enabled ? stealth.MinVisibility + comp.Visibility : stealth.MaxVisibility; + _stealth.SetVisibility(user, visibility, stealth); + _stealth.SetEnabled(user, enabled, stealth); + return true; + } + + /// + /// Raise then add the toggle action if it was not cancelled. + /// + private void OnGetItemActions(EntityUid uid, StealthClothingComponent comp, GetItemActionsEvent args) + { + var ev = new AddStealthActionEvent(args.User); + RaiseLocalEvent(uid, ev); + if (ev.Cancelled) + return; + + args.AddAction(ref comp.ToggleActionEntity, comp.ToggleAction); + } + + /// + /// Raises if enabling. + /// + private void OnToggleStealth(EntityUid uid, StealthClothingComponent comp, ToggleStealthEvent args) + { + args.Handled = true; + var user = args.Performer; + if (comp.Enabled) + { + SetEnabled(uid, user, false, comp); + return; + } + + var ev = new AttemptStealthEvent(user); + RaiseLocalEvent(uid, ev); + if (ev.Cancelled) + return; + + SetEnabled(uid, user, true, comp); + } + + /// + /// Calls when server sends new state. + /// + private void OnHandleState(EntityUid uid, StealthClothingComponent comp, ref AfterAutoHandleStateEvent args) + { + // SetEnabled checks if it is the same, so change it to before state was received from the server + var enabled = comp.Enabled; + comp.Enabled = !enabled; + var user = Transform(uid).ParentUid; + SetEnabled(uid, user, enabled, comp); + } + + /// + /// Force unstealths the user, doesnt remove StealthComponent since other things might use it + /// + private void OnUnequipped(EntityUid uid, StealthClothingComponent comp, GotUnequippedEvent args) + { + SetEnabled(uid, args.Equipee, false, comp); + } +} + +/// +/// Raised on the stealth clothing when attempting to add an action. +/// +public class AddStealthActionEvent : CancellableEntityEventArgs +{ + /// + /// User that equipped the stealth clothing. + /// + public EntityUid User; + + public AddStealthActionEvent(EntityUid user) + { + User = user; + } +} + +/// +/// Raised on the stealth clothing when the user is attemping to enable it. +/// +public class AttemptStealthEvent : CancellableEntityEventArgs +{ + /// + /// User that is attempting to enable the stealth clothing. + /// + public EntityUid User; + + public AttemptStealthEvent(EntityUid user) + { + User = user; + } +} diff --git a/Content.Shared/Clothing/EntitySystems/ToggleableClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/ToggleableClothingSystem.cs index 8f863e68310..53f7284bbef 100644 --- a/Content.Shared/Clothing/EntitySystems/ToggleableClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/ToggleableClothingSystem.cs @@ -1,5 +1,4 @@ using Content.Shared.Actions; -using Content.Shared.Actions.ActionTypes; using Content.Shared.Clothing.Components; using Content.Shared.DoAfter; using Content.Shared.IdentityManagement; @@ -10,8 +9,6 @@ using Content.Shared.Strip; using Content.Shared.Verbs; using Robust.Shared.Containers; -using Robust.Shared.Network; -using Robust.Shared.Prototypes; using Robust.Shared.Serialization; using Robust.Shared.Utility; @@ -25,7 +22,6 @@ public sealed class ToggleableClothingSystem : EntitySystem [Dependency] private readonly SharedPopupSystem _popupSystem = default!; [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; [Dependency] private readonly SharedStrippableSystem _strippable = default!; - [Dependency] private readonly IPrototypeManager _proto = default!; private Queue _toInsert = new(); @@ -60,7 +56,7 @@ private void OnGetVerbs(EntityUid uid, ToggleableClothingComponent component, Ge if (!args.CanAccess || !args.CanInteract || component.ClothingUid == null || component.Container == null) return; - var text = component.VerbText ?? component.ToggleAction?.DisplayName; + var text = component.VerbText ?? (component.ActionEntity == null ? null : Name(component.ActionEntity.Value)); if (text == null) return; @@ -97,7 +93,7 @@ private void StartDoAfter(EntityUid user, EntityUid item, EntityUid wearer, Togg var (time, stealth) = _strippable.GetStripTimeModifiers(user, wearer, (float) component.StripDelay.Value.TotalSeconds); - var args = new DoAfterArgs(user, time, new ToggleClothingDoAfterEvent(), item, wearer, item) + var args = new DoAfterArgs(EntityManager, user, time, new ToggleClothingDoAfterEvent(), item, wearer, item) { BreakOnDamage = true, BreakOnTargetMove = true, @@ -179,8 +175,11 @@ private void OnRemoveToggleable(EntityUid uid, ToggleableClothingComponent compo // automatically be deleted. // remove action. - if (component.ToggleAction?.AttachedEntity != null) - _actionsSystem.RemoveAction(component.ToggleAction.AttachedEntity.Value, component.ToggleAction); + if (_actionsSystem.TryGetActionData(component.ActionEntity, out var action) && + action.AttachedEntity != null) + { + _actionsSystem.RemoveAction(action.AttachedEntity.Value, component.ActionEntity); + } if (component.ClothingUid != null) QueueDel(component.ClothingUid.Value); @@ -200,8 +199,11 @@ private void OnRemoveAttached(EntityUid uid, AttachedClothingComponent component return; // remove action. - if (toggleComp.ToggleAction?.AttachedEntity != null) - _actionsSystem.RemoveAction(toggleComp.ToggleAction.AttachedEntity.Value, toggleComp.ToggleAction); + if (_actionsSystem.TryGetActionData(toggleComp.ActionEntity, out var action) && + action.AttachedEntity != null) + { + _actionsSystem.RemoveAction(action.AttachedEntity.Value, toggleComp.ActionEntity); + } RemComp(component.AttachedUid, toggleComp); } @@ -259,8 +261,7 @@ private void OnGetActions(EntityUid uid, ToggleableClothingComponent component, if (component.ClothingUid == null || (args.SlotFlags & component.RequiredFlags) != component.RequiredFlags) return; - if (component.ToggleAction != null) - args.Actions.Add(component.ToggleAction); + args.AddAction(ref component.ActionEntity, component.Action); } private void OnInit(EntityUid uid, ToggleableClothingComponent component, ComponentInit args) @@ -280,13 +281,7 @@ private void OnMapInit(EntityUid uid, ToggleableClothingComponent component, Map return; } - if (component.ToggleAction == null - && _proto.TryIndex(component.ActionId, out InstantActionPrototype? act)) - { - component.ToggleAction = new(act); - } - - if (component.ClothingUid != null && component.ToggleAction != null) + if (component.ClothingUid != null && component.ActionEntity != null) { DebugTools.Assert(Exists(component.ClothingUid), "Toggleable clothing is missing expected entity."); DebugTools.Assert(TryComp(component.ClothingUid, out AttachedClothingComponent? comp), "Toggleable clothing is missing an attached component"); @@ -300,19 +295,19 @@ private void OnMapInit(EntityUid uid, ToggleableClothingComponent component, Map component.Container.Insert(component.ClothingUid.Value, EntityManager, ownerTransform: xform); } - if (component.ToggleAction != null) + if (_actionsSystem.TryGetActionData(component.ActionEntity, out var action)) { - component.ToggleAction.EntityIcon = component.ClothingUid; - _actionsSystem.Dirty(component.ToggleAction); + action.EntityIcon = component.ClothingUid; + _actionsSystem.Dirty(component.ActionEntity); } } } -public sealed class ToggleClothingEvent : InstantActionEvent +public sealed partial class ToggleClothingEvent : InstantActionEvent { } [Serializable, NetSerializable] -public sealed class ToggleClothingDoAfterEvent : SimpleDoAfterEvent +public sealed partial class ToggleClothingDoAfterEvent : SimpleDoAfterEvent { } diff --git a/Content.Shared/Clothing/MagbootsComponent.cs b/Content.Shared/Clothing/MagbootsComponent.cs index f9980c80145..f90a5576c5f 100644 --- a/Content.Shared/Clothing/MagbootsComponent.cs +++ b/Content.Shared/Clothing/MagbootsComponent.cs @@ -1,5 +1,6 @@ -using Content.Shared.Actions.ActionTypes; using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Shared.Clothing; @@ -7,8 +8,11 @@ namespace Content.Shared.Clothing; [Access(typeof(SharedMagbootsSystem))] public sealed partial class MagbootsComponent : Component { - [DataField("toggleAction", required: true)] - public InstantAction ToggleAction = new(); + [DataField("toggleAction", customTypeSerializer: typeof(PrototypeIdSerializer), required: true)] + public string? ToggleAction; + + [DataField("toggleActionEntity")] + public EntityUid? ToggleActionEntity; [DataField("on"), AutoNetworkedField] public bool On; diff --git a/Content.Shared/Clothing/SharedMagbootsSystem.cs b/Content.Shared/Clothing/SharedMagbootsSystem.cs index 12c0ddba4a8..69b78499928 100644 --- a/Content.Shared/Clothing/SharedMagbootsSystem.cs +++ b/Content.Shared/Clothing/SharedMagbootsSystem.cs @@ -62,7 +62,7 @@ protected virtual void UpdateMagbootEffects(EntityUid parent, EntityUid uid, boo protected void OnChanged(EntityUid uid, MagbootsComponent component) { - _sharedActions.SetToggled(component.ToggleAction, component.On); + _sharedActions.SetToggled(component.ToggleActionEntity, component.On); _clothingSpeedModifier.SetClothingSpeedModifierEnabled(uid, component.On); } @@ -86,8 +86,8 @@ private void OnSlipAttempt(EntityUid uid, MagbootsComponent component, Inventory private void OnGetActions(EntityUid uid, MagbootsComponent component, GetItemActionsEvent args) { - args.Actions.Add(component.ToggleAction); + args.AddAction(ref component.ToggleActionEntity, component.ToggleAction); } } -public sealed class ToggleMagbootsEvent : InstantActionEvent {} +public sealed partial class ToggleMagbootsEvent : InstantActionEvent {} diff --git a/Content.Shared/Cluwne/CluwneComponent.cs b/Content.Shared/Cluwne/CluwneComponent.cs index 0ddac352ac1..c9f96d030b3 100644 --- a/Content.Shared/Cluwne/CluwneComponent.cs +++ b/Content.Shared/Cluwne/CluwneComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Cluwne; [RegisterComponent] [NetworkedComponent] -public sealed class CluwneComponent : Component +public sealed partial class CluwneComponent : Component { /// /// timings for giggles and knocks. diff --git a/Content.Shared/CombatMode/CombatModeComponent.cs b/Content.Shared/CombatMode/CombatModeComponent.cs index a7ec35e3e4f..12d1cf264a1 100644 --- a/Content.Shared/CombatMode/CombatModeComponent.cs +++ b/Content.Shared/CombatMode/CombatModeComponent.cs @@ -1,8 +1,7 @@ -using Content.Shared.Actions; -using Content.Shared.Actions.ActionTypes; using Content.Shared.Targeting; using Robust.Shared.Audio; using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Shared.CombatMode @@ -12,9 +11,9 @@ namespace Content.Shared.CombatMode /// This is used to differentiate between regular item interactions or /// using *everything* as a weapon. /// - [RegisterComponent, NetworkedComponent] + [RegisterComponent, NetworkedComponent, AutoGenerateComponentState(true)] [Access(typeof(SharedCombatModeSystem))] - public sealed class CombatModeComponent : Component + public sealed partial class CombatModeComponent : Component { #region Disarm @@ -26,47 +25,23 @@ public sealed class CombatModeComponent : Component public bool? CanDisarm; [DataField("disarmSuccessSound")] - public readonly SoundSpecifier DisarmSuccessSound = new SoundPathSpecifier("/Audio/Effects/thudswoosh.ogg"); + public SoundSpecifier DisarmSuccessSound = new SoundPathSpecifier("/Audio/Effects/thudswoosh.ogg"); [DataField("disarmFailChance")] - public readonly float BaseDisarmFailChance = 0.75f; + public float BaseDisarmFailChance = 0.75f; #endregion - private bool _isInCombatMode; - private TargetingZone _activeZone; + [DataField("combatToggleAction", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string CombatToggleAction = "ActionCombatModeToggle"; - [DataField("combatToggleActionId", customTypeSerializer: typeof(PrototypeIdSerializer))] - public readonly string CombatToggleActionId = "CombatModeToggle"; + [DataField("combatToggleActionEntity")] + public EntityUid? CombatToggleActionEntity; - [DataField("combatToggleAction")] - public InstantAction? CombatToggleAction; + [ViewVariables(VVAccess.ReadWrite), DataField("isInCombatMode"), AutoNetworkedField] + public bool IsInCombatMode; - [ViewVariables(VVAccess.ReadWrite)] - public bool IsInCombatMode - { - get => _isInCombatMode; - set - { - if (_isInCombatMode == value) return; - _isInCombatMode = value; - if (CombatToggleAction != null) - EntitySystem.Get().SetToggled(CombatToggleAction, _isInCombatMode); - - Dirty(); - } - } - - [ViewVariables(VVAccess.ReadWrite)] - public TargetingZone ActiveZone - { - get => _activeZone; - set - { - if (_activeZone == value) return; - _activeZone = value; - Dirty(); - } - } + [ViewVariables(VVAccess.ReadWrite), DataField("activeZone"), AutoNetworkedField] + public TargetingZone ActiveZone; } } diff --git a/Content.Shared/CombatMode/Events/TogglePrecisionModeEvent.cs b/Content.Shared/CombatMode/Events/TogglePrecisionModeEvent.cs deleted file mode 100644 index e0ac52cea16..00000000000 --- a/Content.Shared/CombatMode/Events/TogglePrecisionModeEvent.cs +++ /dev/null @@ -1,7 +0,0 @@ -using Content.Shared.Actions; - -namespace Content.Shared.CombatMode; - -public sealed class TogglePrecisionModeEvent : InstantActionEvent -{ -} diff --git a/Content.Shared/CombatMode/Pacification/PacificationSystem.cs b/Content.Shared/CombatMode/Pacification/PacificationSystem.cs index 670d3976eac..c52605e09f9 100644 --- a/Content.Shared/CombatMode/Pacification/PacificationSystem.cs +++ b/Content.Shared/CombatMode/Pacification/PacificationSystem.cs @@ -1,7 +1,6 @@ using Content.Shared.Actions; using Content.Shared.Alert; using Content.Shared.Interaction.Events; -using Content.Shared.Popups; namespace Content.Shared.CombatMode.Pacification; @@ -10,7 +9,6 @@ public sealed class PacificationSystem : EntitySystem [Dependency] private readonly AlertsSystem _alertsSystem = default!; [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; [Dependency] private readonly SharedCombatModeSystem _combatSystem = default!; - [Dependency] private readonly SharedPopupSystem _popupSystem = default!; public override void Initialize() { @@ -34,10 +32,7 @@ private void OnStartup(EntityUid uid, PacifiedComponent component, ComponentStar _combatSystem.SetCanDisarm(uid, false, combatMode); _combatSystem.SetInCombatMode(uid, false, combatMode); - - if (combatMode.CombatToggleAction != null) - _actionsSystem.SetEnabled(combatMode.CombatToggleAction, false); - + _actionsSystem.SetEnabled(combatMode.CombatToggleActionEntity, false); _alertsSystem.ShowAlert(uid, AlertType.Pacified); } @@ -49,9 +44,7 @@ private void OnShutdown(EntityUid uid, PacifiedComponent component, ComponentShu if (combatMode.CanDisarm != null) _combatSystem.SetCanDisarm(uid, true, combatMode); - if (combatMode.CombatToggleAction != null) - _actionsSystem.SetEnabled(combatMode.CombatToggleAction, true); - + _actionsSystem.SetEnabled(combatMode.CombatToggleActionEntity, true); _alertsSystem.ClearAlert(uid, AlertType.Pacified); } } diff --git a/Content.Shared/CombatMode/Pacification/PacifiedComponent.cs b/Content.Shared/CombatMode/Pacification/PacifiedComponent.cs index ad50b4bf1f4..40ddc700020 100644 --- a/Content.Shared/CombatMode/Pacification/PacifiedComponent.cs +++ b/Content.Shared/CombatMode/Pacification/PacifiedComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.CombatMode.Pacification; /// [RegisterComponent, NetworkedComponent] [Access(typeof(PacificationSystem))] -public sealed class PacifiedComponent : Component +public sealed partial class PacifiedComponent : Component { } diff --git a/Content.Shared/CombatMode/SharedCombatModeSystem.cs b/Content.Shared/CombatMode/SharedCombatModeSystem.cs index fe406cde766..263f3e8311a 100644 --- a/Content.Shared/CombatMode/SharedCombatModeSystem.cs +++ b/Content.Shared/CombatMode/SharedCombatModeSystem.cs @@ -1,47 +1,35 @@ using Content.Shared.Actions; -using Content.Shared.Actions.ActionTypes; using Content.Shared.Popups; using Content.Shared.Targeting; using Robust.Shared.Network; -using Robust.Shared.Prototypes; -using Robust.Shared.Serialization; using Robust.Shared.Timing; namespace Content.Shared.CombatMode; public abstract class SharedCombatModeSystem : EntitySystem { - [Dependency] private readonly IPrototypeManager _protoMan = default!; - [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; - [Dependency] private readonly SharedPopupSystem _popup = default!; - [Dependency] private readonly IGameTiming _timing = default!; - [Dependency] private readonly INetManager _netMan = default!; + [Dependency] protected readonly IGameTiming Timing = default!; + [Dependency] private readonly INetManager _netMan = default!; + [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnStartup); + SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnShutdown); SubscribeLocalEvent(OnActionPerform); } - private void OnStartup(EntityUid uid, CombatModeComponent component, ComponentStartup args) + private void OnMapInit(EntityUid uid, CombatModeComponent component, MapInitEvent args) { - if (component.CombatToggleAction == null - && _protoMan.TryIndex(component.CombatToggleActionId, out InstantActionPrototype? toggleProto)) - { - component.CombatToggleAction = new(toggleProto); - } - - if (component.CombatToggleAction != null) - _actionsSystem.AddAction(uid, component.CombatToggleAction, null); + _actionsSystem.AddAction(uid, ref component.CombatToggleActionEntity, component.CombatToggleAction); } private void OnShutdown(EntityUid uid, CombatModeComponent component, ComponentShutdown args) { - if (component.CombatToggleAction != null) - _actionsSystem.RemoveAction(uid, component.CombatToggleAction); + _actionsSystem.RemoveAction(uid, component.CombatToggleActionEntity); } private void OnActionPerform(EntityUid uid, CombatModeComponent component, ToggleCombatActionEvent args) @@ -55,7 +43,7 @@ private void OnActionPerform(EntityUid uid, CombatModeComponent component, Toggl // TODO better handling of predicted pop-ups. // This probably breaks if the client has prediction disabled. - if (!_netMan.IsClient || !_timing.IsFirstTimePredicted) + if (!_netMan.IsClient || !Timing.IsFirstTimePredicted) return; var msg = component.IsInCombatMode ? "action-popup-combat-enabled" : "action-popup-combat-disabled"; @@ -75,13 +63,19 @@ public bool IsInCombatMode(EntityUid? entity, CombatModeComponent? component = n return entity != null && Resolve(entity.Value, ref component, false) && component.IsInCombatMode; } - public virtual void SetInCombatMode(EntityUid entity, bool inCombatMode, - CombatModeComponent? component = null) + public virtual void SetInCombatMode(EntityUid entity, bool value, CombatModeComponent? component = null) { if (!Resolve(entity, ref component)) return; - component.IsInCombatMode = inCombatMode; + if (component.IsInCombatMode == value) + return; + + component.IsInCombatMode = value; + Dirty(entity, component); + + if (component.CombatToggleActionEntity != null) + _actionsSystem.SetToggled(component.CombatToggleActionEntity, component.IsInCombatMode); } public virtual void SetActiveZone(EntityUid entity, TargetingZone zone, @@ -92,19 +86,6 @@ public virtual void SetActiveZone(EntityUid entity, TargetingZone zone, component.ActiveZone = zone; } - - [Serializable, NetSerializable] - protected sealed class CombatModeComponentState : ComponentState - { - public bool IsInCombatMode { get; } - public TargetingZone TargetingZone { get; } - - public CombatModeComponentState(bool isInCombatMode, TargetingZone targetingZone) - { - IsInCombatMode = isInCombatMode; - TargetingZone = targetingZone; - } - } } -public sealed class ToggleCombatActionEvent : InstantActionEvent { } +public sealed partial class ToggleCombatActionEvent : InstantActionEvent { } diff --git a/Content.Shared/Communications/CommsHackerComponent.cs b/Content.Shared/Communications/CommsHackerComponent.cs new file mode 100644 index 00000000000..9116899ccae --- /dev/null +++ b/Content.Shared/Communications/CommsHackerComponent.cs @@ -0,0 +1,47 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Shared.Communications; + +/// +/// Component for hacking a communications console to call in a threat. +/// Can only be done once, the component is remove afterwards. +/// +[RegisterComponent, NetworkedComponent, Access(typeof(SharedCommsHackerSystem))] +public sealed partial class CommsHackerComponent : Component +{ + /// + /// Time taken to hack the console + /// + [DataField("delay")] + public TimeSpan Delay = TimeSpan.FromSeconds(20); + + /// + /// Possible threats to choose from. + /// + [DataField("threats", required: true)] + public List Threats = new(); +} + +/// +/// A threat that can be called in to the station by a ninja hacking a communications console. +/// Generally some kind of mid-round minor antag, though you could make it call in scrubber backflow if you wanted to. +/// You wouldn't do that, right? +/// +[DataDefinition] +public sealed partial class Threat +{ + /// + /// Locale id for the announcement to be made from CentCom. + /// + [DataField("announcement")] + public string Announcement = default!; + + /// + /// The game rule for the threat to be added, it should be able to work when added mid-round otherwise this will do nothing. + /// + [DataField("rule", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string Rule = default!; +} diff --git a/Content.Shared/Communications/SharedCommsHackerSystem.cs b/Content.Shared/Communications/SharedCommsHackerSystem.cs new file mode 100644 index 00000000000..94c530878a4 --- /dev/null +++ b/Content.Shared/Communications/SharedCommsHackerSystem.cs @@ -0,0 +1,28 @@ +using Content.Shared.DoAfter; +using Robust.Shared.Serialization; + +namespace Content.Shared.Communications; + +/// +/// Only exists in shared to provide API and for access. +/// All logic is serverside. +/// +public abstract class SharedCommsHackerSystem : EntitySystem +{ + /// + /// Set the list of threats to choose from when hacking a comms console. + /// + public void SetThreats(EntityUid uid, List threats, CommsHackerComponent? comp = null) + { + if (!Resolve(uid, ref comp)) + return; + + comp.Threats = threats; + } +} + +/// +/// DoAfter event for comms console terror ability. +/// +[Serializable, NetSerializable] +public sealed partial class TerrorDoAfterEvent : SimpleDoAfterEvent { } diff --git a/Content.Shared/Communications/SharedCommunicationsConsoleComponent.cs b/Content.Shared/Communications/SharedCommunicationsConsoleComponent.cs index 324f7055003..7f9094726c8 100644 --- a/Content.Shared/Communications/SharedCommunicationsConsoleComponent.cs +++ b/Content.Shared/Communications/SharedCommunicationsConsoleComponent.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Communications { [Virtual] - public class SharedCommunicationsConsoleComponent : Component + public partial class SharedCommunicationsConsoleComponent : Component { } diff --git a/Content.Shared/Configurable/ConfigurationComponent.cs b/Content.Shared/Configurable/ConfigurationComponent.cs index 51399ce914f..63a0dfe95a5 100644 --- a/Content.Shared/Configurable/ConfigurationComponent.cs +++ b/Content.Shared/Configurable/ConfigurationComponent.cs @@ -7,16 +7,16 @@ namespace Content.Shared.Configurable { [RegisterComponent, NetworkedComponent] - public sealed class ConfigurationComponent : Component + public sealed partial class ConfigurationComponent : Component { [DataField("config")] - public readonly Dictionary Config = new(); + public Dictionary Config = new(); [DataField("qualityNeeded", customTypeSerializer: typeof(PrototypeIdSerializer))] public string QualityNeeded = "Pulsing"; [DataField("validation")] - public readonly Regex Validation = new("^[a-zA-Z0-9 ]*$", RegexOptions.Compiled); + public Regex Validation = new("^[a-zA-Z0-9 ]*$", RegexOptions.Compiled); [Serializable, NetSerializable] public sealed class ConfigurationBoundUserInterfaceState : BoundUserInterfaceState diff --git a/Content.Shared/Construction/Components/AnchorableComponent.cs b/Content.Shared/Construction/Components/AnchorableComponent.cs index 455ce2f9ba5..09bb94f4654 100644 --- a/Content.Shared/Construction/Components/AnchorableComponent.cs +++ b/Content.Shared/Construction/Components/AnchorableComponent.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Construction.Components { [RegisterComponent, Access(typeof(AnchorableSystem))] - public sealed class AnchorableComponent : Component + public sealed partial class AnchorableComponent : Component { [DataField("tool", customTypeSerializer: typeof(PrototypeIdSerializer))] public string Tool { get; private set; } = "Anchoring"; diff --git a/Content.Shared/Construction/Components/MachineBoardComponent.cs b/Content.Shared/Construction/Components/MachineBoardComponent.cs index f81b68e8538..dbca3160616 100644 --- a/Content.Shared/Construction/Components/MachineBoardComponent.cs +++ b/Content.Shared/Construction/Components/MachineBoardComponent.cs @@ -7,21 +7,21 @@ namespace Content.Shared.Construction.Components { [RegisterComponent, NetworkedComponent] - public sealed class MachineBoardComponent : Component + public sealed partial class MachineBoardComponent : Component { [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [DataField("requirements", customTypeSerializer: typeof(PrototypeIdDictionarySerializer))] - public readonly Dictionary Requirements = new(); + public Dictionary Requirements = new(); [DataField("materialRequirements")] - public readonly Dictionary MaterialIdRequirements = new(); + public Dictionary MaterialIdRequirements = new(); [DataField("tagRequirements")] - public readonly Dictionary TagRequirements = new(); + public Dictionary TagRequirements = new(); [DataField("componentRequirements")] - public readonly Dictionary ComponentRequirements = new(); + public Dictionary ComponentRequirements = new(); [ViewVariables(VVAccess.ReadWrite)] [DataField("prototype")] @@ -42,7 +42,7 @@ public IEnumerable> MaterialRequirements [Serializable] [DataDefinition] - public struct GenericPartInfo + public partial struct GenericPartInfo { [DataField("Amount")] public int Amount; diff --git a/Content.Shared/Construction/Components/MachinePartComponent.cs b/Content.Shared/Construction/Components/MachinePartComponent.cs index 21faf369c9d..a68e3495e29 100644 --- a/Content.Shared/Construction/Components/MachinePartComponent.cs +++ b/Content.Shared/Construction/Components/MachinePartComponent.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Construction.Components { [RegisterComponent, NetworkedComponent] - public sealed class MachinePartComponent : Component + public sealed partial class MachinePartComponent : Component { [DataField("part", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] public string PartType { get; private set; } = default!; diff --git a/Content.Shared/Construction/Components/PartAssemblyComponent.cs b/Content.Shared/Construction/Components/PartAssemblyComponent.cs index b583379d553..2e0667bbdb2 100644 --- a/Content.Shared/Construction/Components/PartAssemblyComponent.cs +++ b/Content.Shared/Construction/Components/PartAssemblyComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Construction.Components; /// todo: in a pr that isn't 6k loc, combine this with MechAssemblyComponent /// [RegisterComponent] -public sealed class PartAssemblyComponent : Component +public sealed partial class PartAssemblyComponent : Component { /// /// A dictionary of a set of parts to a list of tags for each assembly. diff --git a/Content.Shared/Construction/Conditions/EmptyOrWindowValidInTile.cs b/Content.Shared/Construction/Conditions/EmptyOrWindowValidInTile.cs index b5348654e10..c6c7c47c70d 100644 --- a/Content.Shared/Construction/Conditions/EmptyOrWindowValidInTile.cs +++ b/Content.Shared/Construction/Conditions/EmptyOrWindowValidInTile.cs @@ -6,10 +6,10 @@ namespace Content.Shared.Construction.Conditions { [UsedImplicitly] [DataDefinition] - public sealed class EmptyOrWindowValidInTile : IConstructionCondition + public sealed partial class EmptyOrWindowValidInTile : IConstructionCondition { [DataField("tileNotBlocked")] - private readonly TileNotBlocked _tileNotBlocked = new(); + private TileNotBlocked _tileNotBlocked = new(); public bool Condition(EntityUid user, EntityCoordinates location, Direction direction) { diff --git a/Content.Shared/Construction/Conditions/NoUnstackableInTile.cs b/Content.Shared/Construction/Conditions/NoUnstackableInTile.cs index 27315efbd69..78518187d68 100644 --- a/Content.Shared/Construction/Conditions/NoUnstackableInTile.cs +++ b/Content.Shared/Construction/Conditions/NoUnstackableInTile.cs @@ -10,7 +10,7 @@ namespace Content.Shared.Construction.Conditions; /// [UsedImplicitly] [DataDefinition] -public sealed class NoUnstackableInTile : IConstructionCondition +public sealed partial class NoUnstackableInTile : IConstructionCondition { public const string GuidebookString = "construction-step-condition-no-unstackable-in-tile"; public bool Condition(EntityUid user, EntityCoordinates location, Direction direction) diff --git a/Content.Shared/Construction/Conditions/NoWindowsInTile.cs b/Content.Shared/Construction/Conditions/NoWindowsInTile.cs index 21f6e07974e..be6bc2cfacb 100644 --- a/Content.Shared/Construction/Conditions/NoWindowsInTile.cs +++ b/Content.Shared/Construction/Conditions/NoWindowsInTile.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Construction.Conditions { [UsedImplicitly] [DataDefinition] - public sealed class NoWindowsInTile : IConstructionCondition + public sealed partial class NoWindowsInTile : IConstructionCondition { public bool Condition(EntityUid user, EntityCoordinates location, Direction direction) { diff --git a/Content.Shared/Construction/Conditions/TileNotBlocked.cs b/Content.Shared/Construction/Conditions/TileNotBlocked.cs index c7baaa01c79..02bc84f7362 100644 --- a/Content.Shared/Construction/Conditions/TileNotBlocked.cs +++ b/Content.Shared/Construction/Conditions/TileNotBlocked.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Construction.Conditions; [UsedImplicitly] [DataDefinition] -public sealed class TileNotBlocked : IConstructionCondition +public sealed partial class TileNotBlocked : IConstructionCondition { [DataField("filterMobs")] private bool _filterMobs = false; [DataField("failIfSpace")] private bool _failIfSpace = true; diff --git a/Content.Shared/Construction/Conditions/TileType.cs b/Content.Shared/Construction/Conditions/TileType.cs index 60385b0ff37..3ffdf660502 100644 --- a/Content.Shared/Construction/Conditions/TileType.cs +++ b/Content.Shared/Construction/Conditions/TileType.cs @@ -7,10 +7,10 @@ namespace Content.Shared.Construction.Conditions { [UsedImplicitly] [DataDefinition] - public sealed class TileType : IConstructionCondition + public sealed partial class TileType : IConstructionCondition { [DataField("targets")] - public List TargetTiles { get; } = new(); + public List TargetTiles { get; private set; } = new(); [DataField("guideText")] public string? GuideText; diff --git a/Content.Shared/Construction/Conditions/WallmountCondition.cs b/Content.Shared/Construction/Conditions/WallmountCondition.cs index 7bde86802b5..bf3016d4974 100644 --- a/Content.Shared/Construction/Conditions/WallmountCondition.cs +++ b/Content.Shared/Construction/Conditions/WallmountCondition.cs @@ -12,7 +12,7 @@ namespace Content.Shared.Construction.Conditions { [UsedImplicitly] [DataDefinition] - public sealed class WallmountCondition : IConstructionCondition + public sealed partial class WallmountCondition : IConstructionCondition { public bool Condition(EntityUid user, EntityCoordinates location, Direction direction) { diff --git a/Content.Shared/Construction/ConstructionGraphEdge.cs b/Content.Shared/Construction/ConstructionGraphEdge.cs index 81e03cd8b4a..6ac75717430 100644 --- a/Content.Shared/Construction/ConstructionGraphEdge.cs +++ b/Content.Shared/Construction/ConstructionGraphEdge.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Construction { [Serializable] [DataDefinition] - public sealed class ConstructionGraphEdge + public sealed partial class ConstructionGraphEdge { [DataField("steps")] private ConstructionGraphStep[] _steps = Array.Empty(); @@ -16,7 +16,7 @@ public sealed class ConstructionGraphEdge private IGraphAction[] _completed = Array.Empty(); [DataField("to", required:true)] - public string Target { get; } = string.Empty; + public string Target { get; private set; } = string.Empty; [ViewVariables] public IReadOnlyList Conditions => _conditions; diff --git a/Content.Shared/Construction/ConstructionGraphNode.cs b/Content.Shared/Construction/ConstructionGraphNode.cs index 1519587e925..265463c2431 100644 --- a/Content.Shared/Construction/ConstructionGraphNode.cs +++ b/Content.Shared/Construction/ConstructionGraphNode.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Construction { [Serializable] [DataDefinition] - public sealed class ConstructionGraphNode + public sealed partial class ConstructionGraphNode { [DataField("actions", serverOnly: true)] private IGraphAction[] _actions = Array.Empty(); diff --git a/Content.Shared/Construction/EntitySystems/AnchorableSystem.cs b/Content.Shared/Construction/EntitySystems/AnchorableSystem.cs index 0951583c532..3e1cf5584c1 100644 --- a/Content.Shared/Construction/EntitySystems/AnchorableSystem.cs +++ b/Content.Shared/Construction/EntitySystems/AnchorableSystem.cs @@ -21,7 +21,7 @@ namespace Content.Shared.Construction.EntitySystems; -public sealed class AnchorableSystem : EntitySystem +public sealed partial class AnchorableSystem : EntitySystem { [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; @@ -331,12 +331,12 @@ public bool AnyUnstackablesAnchoredAt(EntityCoordinates location) } [Serializable, NetSerializable] - private sealed class TryUnanchorCompletedEvent : SimpleDoAfterEvent + private sealed partial class TryUnanchorCompletedEvent : SimpleDoAfterEvent { } [Serializable, NetSerializable] - private sealed class TryAnchorCompletedEvent : SimpleDoAfterEvent + private sealed partial class TryAnchorCompletedEvent : SimpleDoAfterEvent { } } diff --git a/Content.Shared/Construction/Events.cs b/Content.Shared/Construction/Events.cs index f36686a53cb..12f2c198a3a 100644 --- a/Content.Shared/Construction/Events.cs +++ b/Content.Shared/Construction/Events.cs @@ -15,7 +15,7 @@ public sealed class TryStartStructureConstructionMessage : EntityEventArgs /// /// Position to start building. /// - public readonly EntityCoordinates Location; + public readonly NetCoordinates Location; /// /// The construction prototype to start building. @@ -27,9 +27,13 @@ public sealed class TryStartStructureConstructionMessage : EntityEventArgs /// /// Identifier to be sent back in the acknowledgement so that the client can clean up its ghost. /// + /// + /// So essentially the client is sending its own entity to the server so it knows to delete it when it gets server + /// response back. + /// public readonly int Ack; - public TryStartStructureConstructionMessage(EntityCoordinates loc, string prototypeName, Angle angle, int ack) + public TryStartStructureConstructionMessage(NetCoordinates loc, string prototypeName, Angle angle, int ack) { Location = loc; PrototypeName = prototypeName; @@ -67,9 +71,9 @@ public sealed class AckStructureConstructionMessage : EntityEventArgs /// /// The entity that is now being constructed, if any. /// - public readonly EntityUid? Uid; + public readonly NetEntity? Uid; - public AckStructureConstructionMessage(int ghostId, EntityUid? uid = null) + public AckStructureConstructionMessage(int ghostId, NetEntity? uid = null) { GhostId = ghostId; Uid = uid; @@ -107,24 +111,24 @@ public ResponseConstructionGuide(string constructionId, ConstructionGuide guide) } [Serializable, NetSerializable] -public sealed class ConstructionInteractDoAfterEvent : DoAfterEvent +public sealed partial class ConstructionInteractDoAfterEvent : DoAfterEvent { [DataField("clickLocation")] - public readonly EntityCoordinates ClickLocation; + public NetCoordinates ClickLocation; private ConstructionInteractDoAfterEvent() { } - public ConstructionInteractDoAfterEvent(InteractUsingEvent ev) + public ConstructionInteractDoAfterEvent(IEntityManager entManager, InteractUsingEvent ev) { - ClickLocation = ev.ClickLocation; + ClickLocation = entManager.GetNetCoordinates(ev.ClickLocation); } public override DoAfterEvent Clone() => this; } [Serializable, NetSerializable] -public sealed class WelderRefineDoAfterEvent : SimpleDoAfterEvent +public sealed partial class WelderRefineDoAfterEvent : SimpleDoAfterEvent { } diff --git a/Content.Shared/Construction/IGraphAction.cs b/Content.Shared/Construction/IGraphAction.cs index b1aed0be000..0c2a867859c 100644 --- a/Content.Shared/Construction/IGraphAction.cs +++ b/Content.Shared/Construction/IGraphAction.cs @@ -1,7 +1,7 @@ namespace Content.Shared.Construction { [ImplicitDataDefinitionForInheritors] - public interface IGraphAction + public partial interface IGraphAction { // TODO pass in node/edge & graph ID for better error logs. void PerformAction(EntityUid uid, EntityUid? userUid, IEntityManager entityManager); diff --git a/Content.Shared/Construction/IGraphCondition.cs b/Content.Shared/Construction/IGraphCondition.cs index fbeb9e4b1db..f8da8594f78 100644 --- a/Content.Shared/Construction/IGraphCondition.cs +++ b/Content.Shared/Construction/IGraphCondition.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Construction { [ImplicitDataDefinitionForInheritors] - public interface IGraphCondition + public partial interface IGraphCondition { bool Condition(EntityUid uid, IEntityManager entityManager); bool DoExamine(ExaminedEvent args); diff --git a/Content.Shared/Construction/NodeEntities/NullNodeEntity.cs b/Content.Shared/Construction/NodeEntities/NullNodeEntity.cs index 3ca89931ba1..f8db079c449 100644 --- a/Content.Shared/Construction/NodeEntities/NullNodeEntity.cs +++ b/Content.Shared/Construction/NodeEntities/NullNodeEntity.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Construction.NodeEntities; [UsedImplicitly] [DataDefinition] -public sealed class NullNodeEntity : IGraphNodeEntity +public sealed partial class NullNodeEntity : IGraphNodeEntity { public string? GetId(EntityUid? uid, EntityUid? userUid, GraphNodeEntityArgs args) { diff --git a/Content.Shared/Construction/NodeEntities/StaticNodeEntity.cs b/Content.Shared/Construction/NodeEntities/StaticNodeEntity.cs index c5bc734575a..34770a02a70 100644 --- a/Content.Shared/Construction/NodeEntities/StaticNodeEntity.cs +++ b/Content.Shared/Construction/NodeEntities/StaticNodeEntity.cs @@ -6,11 +6,11 @@ namespace Content.Shared.Construction.NodeEntities; [UsedImplicitly] [DataDefinition] -public sealed class StaticNodeEntity : IGraphNodeEntity +public sealed partial class StaticNodeEntity : IGraphNodeEntity { [DataField("id", customTypeSerializer:typeof(PrototypeIdSerializer))] [ViewVariables(VVAccess.ReadWrite)] - public string? Id { get; } + public string? Id { get; private set; } public StaticNodeEntity() { diff --git a/Content.Shared/Construction/Prototypes/ConstructionGraphPrototype.cs b/Content.Shared/Construction/Prototypes/ConstructionGraphPrototype.cs index 5eb7c19fb89..050f8b6c188 100644 --- a/Content.Shared/Construction/Prototypes/ConstructionGraphPrototype.cs +++ b/Content.Shared/Construction/Prototypes/ConstructionGraphPrototype.cs @@ -14,10 +14,10 @@ public sealed class ConstructionGraphPrototype : IPrototype, ISerializationHooks [ViewVariables] [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [DataField("start")] - public string? Start { get; } + public string? Start { get; private set; } [DataField("graph", priority: 0)] private List _graph = new(); diff --git a/Content.Shared/Construction/Prototypes/ConstructionPrototype.cs b/Content.Shared/Construction/Prototypes/ConstructionPrototype.cs index e249c1d11b2..e4e28b11b51 100644 --- a/Content.Shared/Construction/Prototypes/ConstructionPrototype.cs +++ b/Content.Shared/Construction/Prototypes/ConstructionPrototype.cs @@ -70,7 +70,7 @@ public sealed class ConstructionPrototype : IPrototype [ViewVariables] [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [DataField("placementMode")] public string PlacementMode = "PlaceFree"; diff --git a/Content.Shared/Construction/Prototypes/MachinePartPrototype.cs b/Content.Shared/Construction/Prototypes/MachinePartPrototype.cs index a4a4b91a09e..707dc5dc23f 100644 --- a/Content.Shared/Construction/Prototypes/MachinePartPrototype.cs +++ b/Content.Shared/Construction/Prototypes/MachinePartPrototype.cs @@ -12,17 +12,17 @@ public sealed class MachinePartPrototype : IPrototype { /// [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// /// A human-readable name for the machine part type. /// [DataField("name")] - public readonly string Name = string.Empty; + public string Name = string.Empty; /// /// A stock part entity based on the machine part. /// [DataField("stockPartPrototype", customTypeSerializer: typeof(PrototypeIdSerializer), required: true)] - public readonly string StockPartPrototype = string.Empty; + public string StockPartPrototype = string.Empty; } diff --git a/Content.Shared/Construction/SharedCanBuildWindowOnTopComponent.cs b/Content.Shared/Construction/SharedCanBuildWindowOnTopComponent.cs index 13dedaa5d2d..b7a586aafe0 100644 --- a/Content.Shared/Construction/SharedCanBuildWindowOnTopComponent.cs +++ b/Content.Shared/Construction/SharedCanBuildWindowOnTopComponent.cs @@ -1,7 +1,7 @@ namespace Content.Shared.Construction { [RegisterComponent] - public sealed class SharedCanBuildWindowOnTopComponent : Component + public sealed partial class SharedCanBuildWindowOnTopComponent : Component { } } diff --git a/Content.Shared/Construction/Steps/ArbitraryInsertConstructionGraphStep.cs b/Content.Shared/Construction/Steps/ArbitraryInsertConstructionGraphStep.cs index a6a7719fbe4..8e3dcd4f4dc 100644 --- a/Content.Shared/Construction/Steps/ArbitraryInsertConstructionGraphStep.cs +++ b/Content.Shared/Construction/Steps/ArbitraryInsertConstructionGraphStep.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Construction.Steps { - public abstract class ArbitraryInsertConstructionGraphStep : EntityInsertConstructionGraphStep + public abstract partial class ArbitraryInsertConstructionGraphStep : EntityInsertConstructionGraphStep { [DataField("name")] public string Name { get; private set; } = string.Empty; diff --git a/Content.Shared/Construction/Steps/ComponentConstructionGraphStep.cs b/Content.Shared/Construction/Steps/ComponentConstructionGraphStep.cs index 8908eac5aa3..a85a1ed472d 100644 --- a/Content.Shared/Construction/Steps/ComponentConstructionGraphStep.cs +++ b/Content.Shared/Construction/Steps/ComponentConstructionGraphStep.cs @@ -3,9 +3,9 @@ namespace Content.Shared.Construction.Steps { [DataDefinition] - public sealed class ComponentConstructionGraphStep : ArbitraryInsertConstructionGraphStep + public sealed partial class ComponentConstructionGraphStep : ArbitraryInsertConstructionGraphStep { - [DataField("component")] public string Component { get; } = string.Empty; + [DataField("component")] public string Component { get; private set; } = string.Empty; public override bool EntityValid(EntityUid uid, IEntityManager entityManager, IComponentFactory compFactory) { diff --git a/Content.Shared/Construction/Steps/ConstructionGraphStep.cs b/Content.Shared/Construction/Steps/ConstructionGraphStep.cs index 3e3a9da8282..82248fa1051 100644 --- a/Content.Shared/Construction/Steps/ConstructionGraphStep.cs +++ b/Content.Shared/Construction/Steps/ConstructionGraphStep.cs @@ -4,11 +4,11 @@ namespace Content.Shared.Construction.Steps { [Serializable] [ImplicitDataDefinitionForInheritors] - public abstract class ConstructionGraphStep + public abstract partial class ConstructionGraphStep { [DataField("completed", serverOnly: true)] private IGraphAction[] _completed = Array.Empty(); - [DataField("doAfter")] public float DoAfter { get; } + [DataField("doAfter")] public float DoAfter { get; private set; } public IReadOnlyList Completed => _completed; diff --git a/Content.Shared/Construction/Steps/EntityInsertConstructionGraphStep.cs b/Content.Shared/Construction/Steps/EntityInsertConstructionGraphStep.cs index 7bd14ee00b3..28684dead30 100644 --- a/Content.Shared/Construction/Steps/EntityInsertConstructionGraphStep.cs +++ b/Content.Shared/Construction/Steps/EntityInsertConstructionGraphStep.cs @@ -1,9 +1,9 @@ namespace Content.Shared.Construction.Steps { [ImplicitDataDefinitionForInheritors] - public abstract class EntityInsertConstructionGraphStep : ConstructionGraphStep + public abstract partial class EntityInsertConstructionGraphStep : ConstructionGraphStep { - [DataField("store")] public string Store { get; } = string.Empty; + [DataField("store")] public string Store { get; private set; } = string.Empty; public abstract bool EntityValid(EntityUid uid, IEntityManager entityManager, IComponentFactory compFactory); } diff --git a/Content.Shared/Construction/Steps/MaterialConstructionGraphStep.cs b/Content.Shared/Construction/Steps/MaterialConstructionGraphStep.cs index 93f81fd91cb..d9f968d41a6 100644 --- a/Content.Shared/Construction/Steps/MaterialConstructionGraphStep.cs +++ b/Content.Shared/Construction/Steps/MaterialConstructionGraphStep.cs @@ -7,14 +7,14 @@ namespace Content.Shared.Construction.Steps { [DataDefinition] - public sealed class MaterialConstructionGraphStep : EntityInsertConstructionGraphStep + public sealed partial class MaterialConstructionGraphStep : EntityInsertConstructionGraphStep { // TODO: Make this use the material system. // TODO TODO: Make the material system not shit. [DataField("material", required:true, customTypeSerializer:typeof(PrototypeIdSerializer))] - public string MaterialPrototypeId { get; } = "Steel"; + public string MaterialPrototypeId { get; private set; } = "Steel"; - [DataField("amount")] public int Amount { get; } = 1; + [DataField("amount")] public int Amount { get; private set; } = 1; public override void DoExamine(ExaminedEvent examinedEvent) { diff --git a/Content.Shared/Construction/Steps/MultipleTagsConstructionGraphStep.cs b/Content.Shared/Construction/Steps/MultipleTagsConstructionGraphStep.cs index 083bdd0c404..668952dac23 100644 --- a/Content.Shared/Construction/Steps/MultipleTagsConstructionGraphStep.cs +++ b/Content.Shared/Construction/Steps/MultipleTagsConstructionGraphStep.cs @@ -2,7 +2,7 @@ namespace Content.Shared.Construction.Steps { - public sealed class MultipleTagsConstructionGraphStep : ArbitraryInsertConstructionGraphStep + public sealed partial class MultipleTagsConstructionGraphStep : ArbitraryInsertConstructionGraphStep { [DataField("allTags")] private List? _allTags; diff --git a/Content.Shared/Construction/Steps/PartAssemblyConstructionGraphStep.cs b/Content.Shared/Construction/Steps/PartAssemblyConstructionGraphStep.cs index de7eec13c07..9119587a6b2 100644 --- a/Content.Shared/Construction/Steps/PartAssemblyConstructionGraphStep.cs +++ b/Content.Shared/Construction/Steps/PartAssemblyConstructionGraphStep.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Construction.Steps; [DataDefinition] -public sealed class PartAssemblyConstructionGraphStep : ConstructionGraphStep +public sealed partial class PartAssemblyConstructionGraphStep : ConstructionGraphStep { /// /// A valid ID on 's dictionary of strings to part lists. diff --git a/Content.Shared/Construction/Steps/TagConstructionGraphStep.cs b/Content.Shared/Construction/Steps/TagConstructionGraphStep.cs index db87e6adff1..df8c166aa1d 100644 --- a/Content.Shared/Construction/Steps/TagConstructionGraphStep.cs +++ b/Content.Shared/Construction/Steps/TagConstructionGraphStep.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Construction.Steps { [DataDefinition] - public sealed class TagConstructionGraphStep : ArbitraryInsertConstructionGraphStep + public sealed partial class TagConstructionGraphStep : ArbitraryInsertConstructionGraphStep { [DataField("tag")] private string? _tag; diff --git a/Content.Shared/Construction/Steps/TemperatureConstructionGraphStep.cs b/Content.Shared/Construction/Steps/TemperatureConstructionGraphStep.cs index b9b9e3288f8..6b3a742968e 100644 --- a/Content.Shared/Construction/Steps/TemperatureConstructionGraphStep.cs +++ b/Content.Shared/Construction/Steps/TemperatureConstructionGraphStep.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Construction.Steps { [DataDefinition] - public sealed class TemperatureConstructionGraphStep : ConstructionGraphStep + public sealed partial class TemperatureConstructionGraphStep : ConstructionGraphStep { [DataField("minTemperature")] public float? MinTemperature; diff --git a/Content.Shared/Construction/Steps/ToolConstructionGraphStep.cs b/Content.Shared/Construction/Steps/ToolConstructionGraphStep.cs index e9d79b6b9c2..f096c698bb5 100644 --- a/Content.Shared/Construction/Steps/ToolConstructionGraphStep.cs +++ b/Content.Shared/Construction/Steps/ToolConstructionGraphStep.cs @@ -6,14 +6,14 @@ namespace Content.Shared.Construction.Steps { [DataDefinition] - public sealed class ToolConstructionGraphStep : ConstructionGraphStep + public sealed partial class ToolConstructionGraphStep : ConstructionGraphStep { [DataField("tool", required:true, customTypeSerializer:typeof(PrototypeIdSerializer))] - public string Tool { get; } = string.Empty; + public string Tool { get; private set; } = string.Empty; - [DataField("fuel")] public float Fuel { get; } = 10; + [DataField("fuel")] public float Fuel { get; private set; } = 10; - [DataField("examine")] public string ExamineOverride { get; } = string.Empty; + [DataField("examine")] public string ExamineOverride { get; private set; } = string.Empty; public override void DoExamine(ExaminedEvent examinedEvent) { diff --git a/Content.Shared/Containers/ContainerFillComponent.cs b/Content.Shared/Containers/ContainerFillComponent.cs index 6d5fd93ed77..8c63cbc66af 100644 --- a/Content.Shared/Containers/ContainerFillComponent.cs +++ b/Content.Shared/Containers/ContainerFillComponent.cs @@ -18,10 +18,10 @@ namespace Content.Shared.Containers; /// cref="EntitySpawnCollection.GetSpawns"/>, which is also used by several other systems. /// [RegisterComponent] -public sealed class ContainerFillComponent : Component +public sealed partial class ContainerFillComponent : Component { [DataField("containers", customTypeSerializer:typeof(ContainerFillSerializer))] - public readonly Dictionary> Containers = new(); + public Dictionary> Containers = new(); /// /// If true, entities spawned via the construction system will not have entities spawned into containers managed diff --git a/Content.Shared/Containers/ContainerFillSystem.cs b/Content.Shared/Containers/ContainerFillSystem.cs index 81b9782dcde..88aa1def350 100644 --- a/Content.Shared/Containers/ContainerFillSystem.cs +++ b/Content.Shared/Containers/ContainerFillSystem.cs @@ -17,10 +17,7 @@ public override void Initialize() private void OnMapInit(EntityUid uid, ContainerFillComponent component, MapInitEvent args) { if (!TryComp(uid, out ContainerManagerComponent? containerComp)) - { - Log.Error($"Entity {ToPrettyString(uid)} with a {nameof(ContainerFillComponent)} has no {nameof(ContainerManagerComponent)}."); return; - } var xform = Transform(uid); var coords = new EntityCoordinates(uid, Vector2.Zero); diff --git a/Content.Shared/Containers/ItemSlot/ItemSlotsComponent.cs b/Content.Shared/Containers/ItemSlot/ItemSlotsComponent.cs index 753fadb0ff8..effba18210d 100644 --- a/Content.Shared/Containers/ItemSlot/ItemSlotsComponent.cs +++ b/Content.Shared/Containers/ItemSlot/ItemSlotsComponent.cs @@ -15,14 +15,14 @@ namespace Content.Shared.Containers.ItemSlots [RegisterComponent] [Access(typeof(ItemSlotsSystem))] [NetworkedComponent] - public sealed class ItemSlotsComponent : Component + public sealed partial class ItemSlotsComponent : Component { /// /// The dictionary that stores all of the item slots whose interactions will be managed by the . /// [DataField("slots", readOnly:true)] - public readonly Dictionary Slots = new(); + public Dictionary Slots = new(); // There are two ways to use item slots: // @@ -58,7 +58,7 @@ public ItemSlotsComponentState(Dictionary slots) [DataDefinition] [Access(typeof(ItemSlotsSystem))] [Serializable, NetSerializable] - public sealed class ItemSlot + public sealed partial class ItemSlot { public ItemSlot() { } @@ -112,6 +112,15 @@ public ItemSlot(ItemSlot other) [ViewVariables(VVAccess.ReadWrite)] public bool Locked = false; + /// + /// Prevents adding the eject alt-verb, but still lets you swap items. + /// + /// + /// This does not affect EjectOnInteract, since if you do that you probably want ejecting to work. + /// + [DataField("disableEject"), ViewVariables(VVAccess.ReadWrite)] + public bool DisableEject = false; + /// /// Whether the item slots system will attempt to insert item from the user's hands into this slot when interacted with. /// It doesn't block other insertion methods, like verbs. diff --git a/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs b/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs index 1e56d6936ba..cb92892305c 100644 --- a/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs +++ b/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs @@ -246,6 +246,9 @@ private void Insert(EntityUid uid, ItemSlot slot, EntityUid item, EntityUid? use /// public bool CanInsert(EntityUid uid, EntityUid usedUid, EntityUid? user, ItemSlot slot, bool swap = false, EntityUid? popup = null) { + if (slot.ContainerSlot == null) + return false; + if (slot.Locked) return false; @@ -265,7 +268,7 @@ public bool CanInsert(EntityUid uid, EntityUid usedUid, EntityUid? user, ItemSlo if (ev.Cancelled) return false; - return slot.ContainerSlot?.CanInsertIfEmpty(usedUid, EntityManager) ?? false; + return _containers.CanInsert(usedUid, slot.ContainerSlot, assumeEmpty: true); } /// @@ -325,16 +328,16 @@ public bool TryInsertFromHand(EntityUid uid, ItemSlot slot, EntityUid user, Hand public bool CanEject(EntityUid uid, EntityUid? user, ItemSlot slot) { - if (slot.Locked || slot.Item == null) + if (slot.Locked || slot.ContainerSlot?.ContainedEntity is not {} item) return false; - var ev = new ItemSlotEjectAttemptEvent(uid, slot.Item.Value, user, slot); + var ev = new ItemSlotEjectAttemptEvent(uid, item, user, slot); RaiseLocalEvent(uid, ref ev); - RaiseLocalEvent(slot.Item.Value, ref ev); + RaiseLocalEvent(item, ref ev); if (ev.Cancelled) return false; - return slot.ContainerSlot?.CanRemove(slot.Item.Value, EntityManager) ?? false; + return _containers.CanRemove(item, slot.ContainerSlot); } /// @@ -435,11 +438,13 @@ private void AddAlternativeVerbs(EntityUid uid, ItemSlotsComponent itemSlots, Ge var verbSubject = slot.Name != string.Empty ? Loc.GetString(slot.Name) - : Name(args.Using.Value) ?? string.Empty; + : Name(args.Using.Value); - AlternativeVerb verb = new(); - verb.IconEntity = args.Using; - verb.Act = () => Insert(uid, slot, args.Using.Value, args.User, excludeUserAudio: true); + AlternativeVerb verb = new() + { + IconEntity = GetNetEntity(args.Using), + Act = () => Insert(uid, slot, args.Using.Value, args.User, excludeUserAudio: true) + }; if (slot.InsertVerbText != null) { @@ -474,7 +479,7 @@ private void AddAlternativeVerbs(EntityUid uid, ItemSlotsComponent itemSlots, Ge // Add the eject-item verbs foreach (var slot in itemSlots.Slots.Values) { - if (slot.EjectOnInteract) + if (slot.EjectOnInteract || slot.DisableEject) // For this item slot, ejecting/inserting is a primary interaction. Instead of an eject category // alt-click verb, there will be a "Take item" primary interaction verb. continue; @@ -491,7 +496,7 @@ private void AddAlternativeVerbs(EntityUid uid, ItemSlotsComponent itemSlots, Ge AlternativeVerb verb = new() { - IconEntity = slot.Item, + IconEntity = GetNetEntity(slot.Item), Act = () => TryEjectToHands(uid, slot, args.User, excludeUserAudio: true) }; @@ -528,9 +533,11 @@ private void AddInteractionVerbsVerbs(EntityUid uid, ItemSlotsComponent itemSlot ? Loc.GetString(slot.Name) : Name(slot.Item!.Value); - InteractionVerb takeVerb = new(); - takeVerb.IconEntity = slot.Item; - takeVerb.Act = () => TryEjectToHands(uid, slot, args.User, excludeUserAudio: true); + InteractionVerb takeVerb = new() + { + IconEntity = GetNetEntity(slot.Item), + Act = () => TryEjectToHands(uid, slot, args.User, excludeUserAudio: true) + }; if (slot.EjectVerbText == null) takeVerb.Text = Loc.GetString("take-item-verb-text", ("subject", verbSubject)); @@ -556,7 +563,7 @@ private void AddInteractionVerbsVerbs(EntityUid uid, ItemSlotsComponent itemSlot InteractionVerb insertVerb = new() { - IconEntity = args.Using, + IconEntity = GetNetEntity(args.Using), Act = () => Insert(uid, slot, args.Using.Value, args.User, excludeUserAudio: true) }; diff --git a/Content.Shared/Conveyor/ActiveConveyorComponent.cs b/Content.Shared/Conveyor/ActiveConveyorComponent.cs index 951bed4f1fb..1c94be97642 100644 --- a/Content.Shared/Conveyor/ActiveConveyorComponent.cs +++ b/Content.Shared/Conveyor/ActiveConveyorComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Conveyor; /// Used to track which conveyors are relevant in case there's a lot of them. /// [RegisterComponent] -public sealed class ActiveConveyorComponent : Component +public sealed partial class ActiveConveyorComponent : Component { } diff --git a/Content.Shared/Conveyor/ConveyorComponent.cs b/Content.Shared/Conveyor/ConveyorComponent.cs index d6cedcbab2d..2af859b4a1d 100644 --- a/Content.Shared/Conveyor/ConveyorComponent.cs +++ b/Content.Shared/Conveyor/ConveyorComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Conveyor; [RegisterComponent, NetworkedComponent] -public sealed class ConveyorComponent : Component +public sealed partial class ConveyorComponent : Component { /// /// The angle to move entities by in relation to the owner's rotation. diff --git a/Content.Shared/Crayon/SharedCrayonComponent.cs b/Content.Shared/Crayon/SharedCrayonComponent.cs index a442d352930..f8e88b218de 100644 --- a/Content.Shared/Crayon/SharedCrayonComponent.cs +++ b/Content.Shared/Crayon/SharedCrayonComponent.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Crayon { [NetworkedComponent, ComponentProtoName("Crayon"), Access(typeof(SharedCrayonSystem))] - public abstract class SharedCrayonComponent : Component + public abstract partial class SharedCrayonComponent : Component { public string SelectedState { get; set; } = string.Empty; diff --git a/Content.Shared/CrewManifest/SharedCrewManifestSystem.cs b/Content.Shared/CrewManifest/SharedCrewManifestSystem.cs index 0f174175fcd..7e4c824e205 100644 --- a/Content.Shared/CrewManifest/SharedCrewManifestSystem.cs +++ b/Content.Shared/CrewManifest/SharedCrewManifestSystem.cs @@ -11,9 +11,9 @@ namespace Content.Shared.CrewManifest; [Serializable, NetSerializable] public sealed class RequestCrewManifestMessage : EntityEventArgs { - public EntityUid Id { get; } + public NetEntity Id { get; } - public RequestCrewManifestMessage(EntityUid id) + public RequestCrewManifestMessage(NetEntity id) { Id = id; } diff --git a/Content.Shared/Cuffs/Components/CuffableComponent.cs b/Content.Shared/Cuffs/Components/CuffableComponent.cs index 4cfeec56362..5da6fa41a5f 100644 --- a/Content.Shared/Cuffs/Components/CuffableComponent.cs +++ b/Content.Shared/Cuffs/Components/CuffableComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Cuffs.Components; [RegisterComponent, NetworkedComponent] [Access(typeof(SharedCuffableSystem))] -public sealed class CuffableComponent : Component +public sealed partial class CuffableComponent : Component { /// /// The current RSI for the handcuff layer diff --git a/Content.Shared/Cuffs/Components/HandcuffComponent.cs b/Content.Shared/Cuffs/Components/HandcuffComponent.cs index 398fce4fc71..da44ee01ff7 100644 --- a/Content.Shared/Cuffs/Components/HandcuffComponent.cs +++ b/Content.Shared/Cuffs/Components/HandcuffComponent.cs @@ -10,7 +10,7 @@ namespace Content.Shared.Cuffs.Components; [RegisterComponent, NetworkedComponent] [Access(typeof(SharedCuffableSystem))] -public sealed class HandcuffComponent : Component +public sealed partial class HandcuffComponent : Component { /// /// The time it takes to cuff an entity. diff --git a/Content.Shared/Cuffs/SharedCuffableSystem.cs b/Content.Shared/Cuffs/SharedCuffableSystem.cs index 57b4b19af0e..9294083a444 100644 --- a/Content.Shared/Cuffs/SharedCuffableSystem.cs +++ b/Content.Shared/Cuffs/SharedCuffableSystem.cs @@ -36,7 +36,7 @@ namespace Content.Shared.Cuffs { // TODO remove all the IsServer() checks. - public abstract class SharedCuffableSystem : EntitySystem + public abstract partial class SharedCuffableSystem : EntitySystem { [Dependency] private readonly IComponentFactory _componentFactory = default!; [Dependency] private readonly INetManager _net = default!; @@ -141,7 +141,8 @@ private void OnRejuvenate(EntityUid uid, CuffableComponent component, Rejuvenate private void OnCuffsRemovedFromContainer(EntityUid uid, CuffableComponent component, EntRemovedFromContainerMessage args) { - if (args.Container.ID != component.Container.ID) + // ReSharper disable once ConditionalAccessQualifierIsNonNullableAccordingToAPIContract + if (args.Container.ID != component.Container?.ID) return; _handVirtualItem.DeleteInHandsMatching(uid, args.Entity); @@ -478,7 +479,7 @@ public bool TryCuffing(EntityUid user, EntityUid target, EntityUid handcuff, Han if (HasComp(target)) cuffTime = 0.0f; // cuff them instantly. - var doAfterEventArgs = new DoAfterArgs(user, cuffTime, new AddCuffDoAfterEvent(), handcuff, target, handcuff) + var doAfterEventArgs = new DoAfterArgs(EntityManager, user, cuffTime, new AddCuffDoAfterEvent(), handcuff, target, handcuff) { BreakOnTargetMove = true, BreakOnUserMove = true, @@ -565,7 +566,7 @@ public void TryUncuff(EntityUid target, EntityUid user, EntityUid? cuffsToRemove } var uncuffTime = isOwner ? cuff.BreakoutTime : cuff.UncuffTime; - var doAfterEventArgs = new DoAfterArgs(user, uncuffTime, new UnCuffDoAfterEvent(), target, target, cuffsToRemove) + var doAfterEventArgs = new DoAfterArgs(EntityManager, user, uncuffTime, new UnCuffDoAfterEvent(), target, target, cuffsToRemove) { BreakOnUserMove = true, BreakOnTargetMove = true, @@ -705,12 +706,12 @@ public IReadOnlyList GetAllCuffs(CuffableComponent component) } [Serializable, NetSerializable] - private sealed class UnCuffDoAfterEvent : SimpleDoAfterEvent + private sealed partial class UnCuffDoAfterEvent : SimpleDoAfterEvent { } [Serializable, NetSerializable] - private sealed class AddCuffDoAfterEvent : SimpleDoAfterEvent + private sealed partial class AddCuffDoAfterEvent : SimpleDoAfterEvent { } } diff --git a/Content.Shared/Damage/Components/ActiveStaminaComponent.cs b/Content.Shared/Damage/Components/ActiveStaminaComponent.cs index 35d21a0253e..ea63bb1395b 100644 --- a/Content.Shared/Damage/Components/ActiveStaminaComponent.cs +++ b/Content.Shared/Damage/Components/ActiveStaminaComponent.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Damage.Components; /// Tracks whether an entity has ANY stamina damage for update purposes only. /// [RegisterComponent] -public sealed class ActiveStaminaComponent : Component +public sealed partial class ActiveStaminaComponent : Component { } diff --git a/Content.Shared/Damage/Components/DamageContactsComponent.cs b/Content.Shared/Damage/Components/DamageContactsComponent.cs index 3eedda7fc63..4ae88db8d72 100644 --- a/Content.Shared/Damage/Components/DamageContactsComponent.cs +++ b/Content.Shared/Damage/Components/DamageContactsComponent.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Damage.Components; [NetworkedComponent, RegisterComponent] -public sealed class DamageContactsComponent : Component +public sealed partial class DamageContactsComponent : Component { /// /// The damage done each second to those touching this entity diff --git a/Content.Shared/Damage/Components/DamageExaminableComponent.cs b/Content.Shared/Damage/Components/DamageExaminableComponent.cs index 4bd019deaf9..a9fa833070b 100644 --- a/Content.Shared/Damage/Components/DamageExaminableComponent.cs +++ b/Content.Shared/Damage/Components/DamageExaminableComponent.cs @@ -3,6 +3,6 @@ namespace Content.Shared.Damage.Components; [RegisterComponent, NetworkedComponent] -public sealed class DamageExaminableComponent : Component +public sealed partial class DamageExaminableComponent : Component { } diff --git a/Content.Shared/Damage/Components/DamageableComponent.cs b/Content.Shared/Damage/Components/DamageableComponent.cs index b9a55e70a63..f8ba661a665 100644 --- a/Content.Shared/Damage/Components/DamageableComponent.cs +++ b/Content.Shared/Damage/Components/DamageableComponent.cs @@ -17,7 +17,7 @@ namespace Content.Shared.Damage [RegisterComponent] [NetworkedComponent()] [Access(typeof(DamageableSystem), Other = AccessPermissions.ReadExecute)] - public sealed class DamageableComponent : Component + public sealed partial class DamageableComponent : Component { /// /// This specifies what damage types are supported by this component. diff --git a/Content.Shared/Damage/Components/DamagedByContactComponent.cs b/Content.Shared/Damage/Components/DamagedByContactComponent.cs index 1b4c2999aa5..bc86f1f5e2a 100644 --- a/Content.Shared/Damage/Components/DamagedByContactComponent.cs +++ b/Content.Shared/Damage/Components/DamagedByContactComponent.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Damage.Components; [NetworkedComponent, RegisterComponent] -public sealed class DamagedByContactComponent : Component +public sealed partial class DamagedByContactComponent : Component { [DataField("nextSecond", customTypeSerializer: typeof(TimeOffsetSerializer)), ViewVariables(VVAccess.ReadWrite)] public TimeSpan NextSecond = TimeSpan.Zero; diff --git a/Content.Shared/Damage/Components/GodmodeComponent.cs b/Content.Shared/Damage/Components/GodmodeComponent.cs index f85479bb657..66f0daff39b 100644 --- a/Content.Shared/Damage/Components/GodmodeComponent.cs +++ b/Content.Shared/Damage/Components/GodmodeComponent.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Damage.Components; [RegisterComponent, NetworkedComponent, Access(typeof(SharedGodmodeSystem))] -public sealed class GodmodeComponent : Component +public sealed partial class GodmodeComponent : Component { [DataField("wasMovedByPressure")] public bool WasMovedByPressure; diff --git a/Content.Shared/Damage/Components/SlowOnDamageComponent.cs b/Content.Shared/Damage/Components/SlowOnDamageComponent.cs index 0d60c0122ea..aa0cafa0576 100644 --- a/Content.Shared/Damage/Components/SlowOnDamageComponent.cs +++ b/Content.Shared/Damage/Components/SlowOnDamageComponent.cs @@ -6,12 +6,12 @@ namespace Content.Shared.Damage.Components // TODO It'd be nice if this could be a destructible threshold, but on the other hand, // that doesn't really work with events at all, and [RegisterComponent, NetworkedComponent] - public sealed class SlowOnDamageComponent : Component + public sealed partial class SlowOnDamageComponent : Component { /// /// Damage -> movespeed dictionary. This is -damage-, not -health-. /// [DataField("speedModifierThresholds", required: true)] - public readonly Dictionary SpeedModifierThresholds = default!; + public Dictionary SpeedModifierThresholds = default!; } } diff --git a/Content.Shared/Damage/Components/StaminaComponent.cs b/Content.Shared/Damage/Components/StaminaComponent.cs index f75d4ec2fc3..3cdc90ecb1e 100644 --- a/Content.Shared/Damage/Components/StaminaComponent.cs +++ b/Content.Shared/Damage/Components/StaminaComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Damage.Components; /// Add to an entity to paralyze it whenever it reaches critical amounts of Stamina DamageType. /// [RegisterComponent, NetworkedComponent] -public sealed class StaminaComponent : Component +public sealed partial class StaminaComponent : Component { /// /// Have we reached peak stamina damage and been paralyzed? @@ -39,6 +39,12 @@ public sealed class StaminaComponent : Component [ViewVariables(VVAccess.ReadWrite), DataField("critThreshold")] public float CritThreshold = 100f; + /// + /// How long will this mob be stunned for? + /// + [ViewVariables(VVAccess.ReadWrite), DataField("stunTime")] + public TimeSpan StunTime = TimeSpan.FromSeconds(6); + /// /// To avoid continuously updating our data we track the last time we updated so we can extrapolate our current stamina. /// diff --git a/Content.Shared/Damage/Components/StaminaDamageOnCollideComponent.cs b/Content.Shared/Damage/Components/StaminaDamageOnCollideComponent.cs index a5a6e1bb8a7..5ed2bb628e9 100644 --- a/Content.Shared/Damage/Components/StaminaDamageOnCollideComponent.cs +++ b/Content.Shared/Damage/Components/StaminaDamageOnCollideComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Damage.Components; /// Applies stamina damage when colliding with an entity. /// [RegisterComponent] -public sealed class StaminaDamageOnCollideComponent : Component +public sealed partial class StaminaDamageOnCollideComponent : Component { [ViewVariables(VVAccess.ReadWrite), DataField("damage")] public float Damage = 55f; diff --git a/Content.Shared/Damage/Components/StaminaDamageOnHitComponent.cs b/Content.Shared/Damage/Components/StaminaDamageOnHitComponent.cs index 578acce410b..7a524a00520 100644 --- a/Content.Shared/Damage/Components/StaminaDamageOnHitComponent.cs +++ b/Content.Shared/Damage/Components/StaminaDamageOnHitComponent.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Damage.Components; [RegisterComponent] -public sealed class StaminaDamageOnHitComponent : Component +public sealed partial class StaminaDamageOnHitComponent : Component { [ViewVariables(VVAccess.ReadWrite), DataField("damage")] public float Damage = 30f; diff --git a/Content.Shared/Damage/DamageModifierSet.cs b/Content.Shared/Damage/DamageModifierSet.cs index b47eab01227..2dfc38715e4 100644 --- a/Content.Shared/Damage/DamageModifierSet.cs +++ b/Content.Shared/Damage/DamageModifierSet.cs @@ -13,7 +13,7 @@ namespace Content.Shared.Damage [DataDefinition] [Serializable, NetSerializable] [Virtual] - public class DamageModifierSet + public partial class DamageModifierSet { [DataField("coefficients", customTypeSerializer: typeof(PrototypeIdDictionarySerializer))] public Dictionary Coefficients = new(); diff --git a/Content.Shared/Damage/DamageSpecifier.cs b/Content.Shared/Damage/DamageSpecifier.cs index 341e3bb76bf..903ee605f1a 100644 --- a/Content.Shared/Damage/DamageSpecifier.cs +++ b/Content.Shared/Damage/DamageSpecifier.cs @@ -16,18 +16,18 @@ namespace Content.Shared.Damage /// functions to apply resistance sets and supports basic math operations to modify this dictionary. /// [DataDefinition] - public sealed class DamageSpecifier : IEquatable + public sealed partial class DamageSpecifier : IEquatable { // These exist solely so the wiki works. Please do not touch them or use them. [JsonPropertyName("types")] [DataField("types", customTypeSerializer: typeof(PrototypeIdDictionarySerializer))] [UsedImplicitly] - private readonly Dictionary? _damageTypeDictionary; + private Dictionary? _damageTypeDictionary; [JsonPropertyName("groups")] [DataField("groups", customTypeSerializer: typeof(PrototypeIdDictionarySerializer))] [UsedImplicitly] - private readonly Dictionary? _damageGroupDictionary; + private Dictionary? _damageGroupDictionary; /// /// Main DamageSpecifier dictionary. Most DamageSpecifier functions exist to somehow modifying this. diff --git a/Content.Shared/Damage/Prototypes/DamageContainerPrototype.cs b/Content.Shared/Damage/Prototypes/DamageContainerPrototype.cs index 8a5c2a7a522..0bcb95294bd 100644 --- a/Content.Shared/Damage/Prototypes/DamageContainerPrototype.cs +++ b/Content.Shared/Damage/Prototypes/DamageContainerPrototype.cs @@ -18,7 +18,7 @@ public sealed class DamageContainerPrototype : IPrototype { [ViewVariables] [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// /// List of damage groups that are supported by this container. diff --git a/Content.Shared/Damage/Prototypes/DamageGroupPrototype.cs b/Content.Shared/Damage/Prototypes/DamageGroupPrototype.cs index 8842f34660b..2a508a03e62 100644 --- a/Content.Shared/Damage/Prototypes/DamageGroupPrototype.cs +++ b/Content.Shared/Damage/Prototypes/DamageGroupPrototype.cs @@ -18,6 +18,6 @@ public sealed class DamageGroupPrototype : IPrototype [IdDataField] public string ID { get; } = default!; [DataField("damageTypes", required: true, customTypeSerializer: typeof(PrototypeIdListSerializer))] - public List DamageTypes { get; } = default!; + public List DamageTypes { get; private set; } = default!; } } diff --git a/Content.Shared/Damage/Prototypes/DamageModifierSetPrototype.cs b/Content.Shared/Damage/Prototypes/DamageModifierSetPrototype.cs index 8aa4c7b9489..99e13ee2842 100644 --- a/Content.Shared/Damage/Prototypes/DamageModifierSetPrototype.cs +++ b/Content.Shared/Damage/Prototypes/DamageModifierSetPrototype.cs @@ -14,6 +14,6 @@ public sealed class DamageModifierSetPrototype : DamageModifierSet, IPrototype { [ViewVariables] [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; } } diff --git a/Content.Shared/Damage/Prototypes/DamageTypePrototype.cs b/Content.Shared/Damage/Prototypes/DamageTypePrototype.cs index ca6ac74e990..592de5acf34 100644 --- a/Content.Shared/Damage/Prototypes/DamageTypePrototype.cs +++ b/Content.Shared/Damage/Prototypes/DamageTypePrototype.cs @@ -9,7 +9,7 @@ namespace Content.Shared.Damage.Prototypes public sealed class DamageTypePrototype : IPrototype { [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// /// The price for each 1% damage reduction in armors diff --git a/Content.Shared/Damage/Prototypes/ExaminableDamagePrototype.cs b/Content.Shared/Damage/Prototypes/ExaminableDamagePrototype.cs index 4aa0a2498a2..c4191f4d137 100644 --- a/Content.Shared/Damage/Prototypes/ExaminableDamagePrototype.cs +++ b/Content.Shared/Damage/Prototypes/ExaminableDamagePrototype.cs @@ -9,7 +9,7 @@ namespace Content.Shared.Damage.Prototypes; public sealed class ExaminableDamagePrototype : IPrototype { [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// /// List of damage messages IDs sorted by severity. diff --git a/Content.Shared/Damage/Systems/DamageableSystem.cs b/Content.Shared/Damage/Systems/DamageableSystem.cs index 2e25d665868..a3cdd14ef7b 100644 --- a/Content.Shared/Damage/Systems/DamageableSystem.cs +++ b/Content.Shared/Damage/Systems/DamageableSystem.cs @@ -123,18 +123,12 @@ public void DamageChanged(EntityUid uid, DamageableComponent component, DamageSp return null; } - if (damage == null) - { - Log.Error("Null DamageSpecifier. Probably because a required yaml field was not given."); - return null; - } - if (damage.Empty) { return damage; } - var before = new BeforeDamageChangedEvent(damage); + var before = new BeforeDamageChangedEvent(damage, origin); RaiseLocalEvent(uid.Value, ref before); if (before.Cancelled) @@ -149,7 +143,7 @@ public void DamageChanged(EntityUid uid, DamageableComponent component, DamageSp damage = DamageSpecifier.ApplyModifierSet(damage, modifierSet); } - var ev = new DamageModifyEvent(damage); + var ev = new DamageModifyEvent(damage, origin); RaiseLocalEvent(uid.Value, ev); damage = ev.Damage; @@ -271,7 +265,7 @@ private void DamageableHandleState(EntityUid uid, DamageableComponent component, /// Raised before damage is done, so stuff can cancel it if necessary. /// [ByRefEvent] - public record struct BeforeDamageChangedEvent(DamageSpecifier Delta, bool Cancelled=false); + public record struct BeforeDamageChangedEvent(DamageSpecifier Delta, EntityUid? Origin = null, bool Cancelled = false); /// /// Raised on an entity when damage is about to be dealt, @@ -287,11 +281,13 @@ public sealed class DamageModifyEvent : EntityEventArgs, IInventoryRelayEvent public readonly DamageSpecifier OriginalDamage; public DamageSpecifier Damage; + public EntityUid? Origin; - public DamageModifyEvent(DamageSpecifier damage) + public DamageModifyEvent(DamageSpecifier damage, EntityUid? origin = null) { OriginalDamage = damage; Damage = damage; + Origin = origin; } } diff --git a/Content.Shared/Damage/Systems/StaminaSystem.cs b/Content.Shared/Damage/Systems/StaminaSystem.cs index 31abbf039cf..7bf2941dacf 100644 --- a/Content.Shared/Damage/Systems/StaminaSystem.cs +++ b/Content.Shared/Damage/Systems/StaminaSystem.cs @@ -394,11 +394,10 @@ private void EnterStamCrit(EntityUid uid, StaminaComponent? component = null) component.Critical = true; component.StaminaDamage = component.CritThreshold; - var stunTime = TimeSpan.FromSeconds(6); - _stunSystem.TryParalyze(uid, stunTime, true); + _stunSystem.TryParalyze(uid, component.StunTime, true); // Give them buffer before being able to be re-stunned - component.NextUpdate = _timing.CurTime + stunTime + StamCritBufferTime; + component.NextUpdate = _timing.CurTime + component.StunTime + StamCritBufferTime; EnsureComp(uid); Dirty(component); _adminLogger.Add(LogType.Stamina, LogImpact.Medium, $"{ToPrettyString(uid):user} entered stamina crit"); diff --git a/Content.Shared/Dataset/DatasetPrototype.cs b/Content.Shared/Dataset/DatasetPrototype.cs index 6a29fea6052..b4188642994 100644 --- a/Content.Shared/Dataset/DatasetPrototype.cs +++ b/Content.Shared/Dataset/DatasetPrototype.cs @@ -7,8 +7,8 @@ public sealed class DatasetPrototype : IPrototype { [ViewVariables] [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; - [DataField("values")] public IReadOnlyList Values { get; } = new List(); + [DataField("values")] public IReadOnlyList Values { get; private set; } = new List(); } } diff --git a/Content.Shared/Decals/ColorPalettePrototype.cs b/Content.Shared/Decals/ColorPalettePrototype.cs index 59f09544f78..a42e0a0ff3a 100644 --- a/Content.Shared/Decals/ColorPalettePrototype.cs +++ b/Content.Shared/Decals/ColorPalettePrototype.cs @@ -6,6 +6,6 @@ namespace Content.Shared.Decals; public sealed class ColorPalettePrototype : IPrototype { [IdDataField] public string ID { get; } = null!; - [DataField("name")] public string Name { get; } = null!; - [DataField("colors")] public Dictionary Colors { get; } = null!; + [DataField("name")] public string Name { get; private set; } = null!; + [DataField("colors")] public Dictionary Colors { get; private set; } = null!; } diff --git a/Content.Shared/Decals/Decal.cs b/Content.Shared/Decals/Decal.cs index 7368b6f2cd3..56ecc829e7c 100644 --- a/Content.Shared/Decals/Decal.cs +++ b/Content.Shared/Decals/Decal.cs @@ -5,15 +5,15 @@ namespace Content.Shared.Decals { [Serializable, NetSerializable] [DataDefinition] - public sealed class Decal + public sealed partial class Decal { // if these are made not-readonly, then decal grid state handling needs to be updated to clone decals. - [DataField("coordinates")] public readonly Vector2 Coordinates = Vector2.Zero; - [DataField("id")] public readonly string Id = string.Empty; - [DataField("color")] public readonly Color? Color; - [DataField("angle")] public readonly Angle Angle = Angle.Zero; - [DataField("zIndex")] public readonly int ZIndex; - [DataField("cleanable")] public readonly bool Cleanable; + [DataField("coordinates")] public Vector2 Coordinates = Vector2.Zero; + [DataField("id")] public string Id = string.Empty; + [DataField("color")] public Color? Color; + [DataField("angle")] public Angle Angle = Angle.Zero; + [DataField("zIndex")] public int ZIndex; + [DataField("cleanable")] public bool Cleanable; public Decal() {} diff --git a/Content.Shared/Decals/DecalChunkUpdateEvent.cs b/Content.Shared/Decals/DecalChunkUpdateEvent.cs index 74bea5333c8..eb8ee93b959 100644 --- a/Content.Shared/Decals/DecalChunkUpdateEvent.cs +++ b/Content.Shared/Decals/DecalChunkUpdateEvent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Decals [Serializable, NetSerializable] public sealed class DecalChunkUpdateEvent : EntityEventArgs { - public Dictionary> Data = new(); - public Dictionary> RemovedChunks = new(); + public Dictionary> Data = new(); + public Dictionary> RemovedChunks = new(); } } diff --git a/Content.Shared/Decals/DecalGridChunkCollectionTypeSerializer.cs b/Content.Shared/Decals/DecalGridChunkCollectionTypeSerializer.cs index be10e8f41ac..ba89c8a6959 100644 --- a/Content.Shared/Decals/DecalGridChunkCollectionTypeSerializer.cs +++ b/Content.Shared/Decals/DecalGridChunkCollectionTypeSerializer.cs @@ -16,7 +16,7 @@ namespace Content.Shared.Decals { [TypeSerializer] - public sealed class DecalGridChunkCollectionTypeSerializer : ITypeSerializer + public sealed partial class DecalGridChunkCollectionTypeSerializer : ITypeSerializer { public ValidationNode Validate(ISerializationManager serializationManager, MappingDataNode node, IDependencyCollection dependencies, ISerializationContext? context = null) @@ -163,22 +163,22 @@ public DataNode Write(ISerializationManager serializationManager, } [DataDefinition] - private readonly struct DecalData : IEquatable, IComparable + private readonly partial struct DecalData : IEquatable, IComparable { [DataField("id")] - public readonly string Id = string.Empty; + public string Id { get; init; } = string.Empty; [DataField("color")] - public readonly Color? Color; + public Color? Color { get; init; } [DataField("angle")] - public readonly Angle Angle = Angle.Zero; + public Angle Angle { get; init; } = Angle.Zero; [DataField("zIndex")] - public readonly int ZIndex; + public int ZIndex { get; init; } [DataField("cleanable")] - public readonly bool Cleanable; + public bool Cleanable { get; init; } public DecalData(string id, Color? color, Angle angle, int zIndex, bool cleanable) { diff --git a/Content.Shared/Decals/DecalGridComponent.cs b/Content.Shared/Decals/DecalGridComponent.cs index 32273e76f81..aa366f28c91 100644 --- a/Content.Shared/Decals/DecalGridComponent.cs +++ b/Content.Shared/Decals/DecalGridComponent.cs @@ -10,7 +10,7 @@ namespace Content.Shared.Decals [RegisterComponent] [Access(typeof(SharedDecalSystem))] [NetworkedComponent] - public sealed class DecalGridComponent : Component + public sealed partial class DecalGridComponent : Component { [DataField("chunkCollection", serverOnly: true)] public DecalGridChunkCollection ChunkCollection = new(new ()); @@ -31,7 +31,7 @@ public sealed class DecalGridComponent : Component [DataDefinition] [Serializable, NetSerializable] - public sealed class DecalChunk + public sealed partial class DecalChunk { [IncludeDataField(customTypeSerializer:typeof(DictionarySerializer))] public Dictionary Decals; diff --git a/Content.Shared/Decals/DecalPrototype.cs b/Content.Shared/Decals/DecalPrototype.cs index 00970a3a7c0..db9d5b5b873 100644 --- a/Content.Shared/Decals/DecalPrototype.cs +++ b/Content.Shared/Decals/DecalPrototype.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Decals public sealed class DecalPrototype : IPrototype { [IdDataField] public string ID { get; } = null!; - [DataField("sprite")] public SpriteSpecifier Sprite { get; } = SpriteSpecifier.Invalid; + [DataField("sprite")] public SpriteSpecifier Sprite { get; private set; } = SpriteSpecifier.Invalid; [DataField("tags")] public List Tags = new(); [DataField("showMenu")] public bool ShowMenu = true; diff --git a/Content.Shared/Decals/PlaceDecalActionEvent.cs b/Content.Shared/Decals/PlaceDecalActionEvent.cs new file mode 100644 index 00000000000..3991cd36c91 --- /dev/null +++ b/Content.Shared/Decals/PlaceDecalActionEvent.cs @@ -0,0 +1,25 @@ +using Content.Shared.Actions; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Shared.Decals; + +public sealed partial class PlaceDecalActionEvent : WorldTargetActionEvent +{ + [DataField("decalId", customTypeSerializer:typeof(PrototypeIdSerializer), required:true)] + public string DecalId = string.Empty; + + [DataField("color")] + public Color Color; + + [DataField("rotation")] + public double Rotation; + + [DataField("snap")] + public bool Snap; + + [DataField("zIndex")] + public int ZIndex; + + [DataField("cleanable")] + public bool Cleanable; +} diff --git a/Content.Shared/Decals/SharedDecalSystem.cs b/Content.Shared/Decals/SharedDecalSystem.cs index f22029d6e13..79bf826eedb 100644 --- a/Content.Shared/Decals/SharedDecalSystem.cs +++ b/Content.Shared/Decals/SharedDecalSystem.cs @@ -149,9 +149,9 @@ public bool MoveNext([NotNullWhen(true)] out Vector2i? indices) public sealed class RequestDecalPlacementEvent : EntityEventArgs { public Decal Decal; - public EntityCoordinates Coordinates; + public NetCoordinates Coordinates; - public RequestDecalPlacementEvent(Decal decal, EntityCoordinates coordinates) + public RequestDecalPlacementEvent(Decal decal, NetCoordinates coordinates) { Decal = decal; Coordinates = coordinates; @@ -161,9 +161,9 @@ public RequestDecalPlacementEvent(Decal decal, EntityCoordinates coordinates) [Serializable, NetSerializable] public sealed class RequestDecalRemovalEvent : EntityEventArgs { - public EntityCoordinates Coordinates; + public NetCoordinates Coordinates; - public RequestDecalRemovalEvent(EntityCoordinates coordinates) + public RequestDecalRemovalEvent(NetCoordinates coordinates) { Coordinates = coordinates; } diff --git a/Content.Shared/DeviceLinking/DeviceLinkSinkComponent.cs b/Content.Shared/DeviceLinking/DeviceLinkSinkComponent.cs index 1bb0fc8971b..a66431e68ae 100644 --- a/Content.Shared/DeviceLinking/DeviceLinkSinkComponent.cs +++ b/Content.Shared/DeviceLinking/DeviceLinkSinkComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.DeviceLinking; [RegisterComponent] [NetworkedComponent] // for interactions. Actual state isn't currently synced. [Access(typeof(SharedDeviceLinkSystem))] -public sealed class DeviceLinkSinkComponent : Component +public sealed partial class DeviceLinkSinkComponent : Component { /// /// The ports this sink has diff --git a/Content.Shared/DeviceLinking/DeviceLinkSourceComponent.cs b/Content.Shared/DeviceLinking/DeviceLinkSourceComponent.cs index 01417988d9d..3a5d4d9f6da 100644 --- a/Content.Shared/DeviceLinking/DeviceLinkSourceComponent.cs +++ b/Content.Shared/DeviceLinking/DeviceLinkSourceComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.DeviceLinking; [RegisterComponent] [NetworkedComponent] // for interactions. Actual state isn't currently synced. [Access(typeof(SharedDeviceLinkSystem))] -public sealed class DeviceLinkSourceComponent : Component +public sealed partial class DeviceLinkSourceComponent : Component { /// /// The ports the device link source sends signals from diff --git a/Content.Shared/DeviceLinking/DevicePortPrototype.cs b/Content.Shared/DeviceLinking/DevicePortPrototype.cs index 823f6f57481..c0a419ee653 100644 --- a/Content.Shared/DeviceLinking/DevicePortPrototype.cs +++ b/Content.Shared/DeviceLinking/DevicePortPrototype.cs @@ -11,7 +11,7 @@ namespace Content.Shared.DeviceLinking; public abstract class DevicePortPrototype { [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// /// Localization string for the port name. Displayed in the linking UI. @@ -42,5 +42,5 @@ public sealed class SourcePortPrototype : DevicePortPrototype, IPrototype /// default-link functionality. /// [DataField("defaultLinks", customTypeSerializer: typeof(PrototypeIdHashSetSerializer))] - public readonly HashSet? DefaultLinks; + public HashSet? DefaultLinks; } diff --git a/Content.Shared/DeviceNetwork/Components/DeviceListComponent.cs b/Content.Shared/DeviceNetwork/Components/DeviceListComponent.cs index e52ac766ba2..e7fee450d12 100644 --- a/Content.Shared/DeviceNetwork/Components/DeviceListComponent.cs +++ b/Content.Shared/DeviceNetwork/Components/DeviceListComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.DeviceNetwork.Components; [RegisterComponent] [NetworkedComponent] [Access(typeof(SharedDeviceListSystem))] -public sealed class DeviceListComponent : Component +public sealed partial class DeviceListComponent : Component { /// /// The list of devices can or can't connect to, depending on the field. @@ -40,11 +40,11 @@ public sealed class DeviceListComponent : Component [Serializable, NetSerializable] public sealed class DeviceListComponentState : ComponentState { - public readonly HashSet Devices; + public readonly HashSet Devices; public readonly bool IsAllowList; public readonly bool HandleIncomingPackets; - public DeviceListComponentState(HashSet devices, bool isAllowList, bool handleIncomingPackets) + public DeviceListComponentState(HashSet devices, bool isAllowList, bool handleIncomingPackets) { Devices = devices; IsAllowList = isAllowList; diff --git a/Content.Shared/DeviceNetwork/Components/NetworkConfiguratorComponent.cs b/Content.Shared/DeviceNetwork/Components/NetworkConfiguratorComponent.cs index b0b675ac0bf..910aff4a149 100644 --- a/Content.Shared/DeviceNetwork/Components/NetworkConfiguratorComponent.cs +++ b/Content.Shared/DeviceNetwork/Components/NetworkConfiguratorComponent.cs @@ -10,7 +10,7 @@ namespace Content.Shared.DeviceNetwork.Components; [RegisterComponent] [NetworkedComponent] [Access(typeof(SharedNetworkConfiguratorSystem))] -public sealed class NetworkConfiguratorComponent : Component +public sealed partial class NetworkConfiguratorComponent : Component { /// /// Determines whether the configurator is in linking mode or list mode @@ -62,10 +62,10 @@ public sealed class NetworkConfiguratorComponent : Component [Serializable, NetSerializable] public sealed class NetworkConfiguratorComponentState : ComponentState { - public readonly EntityUid? ActiveDeviceList; + public readonly NetEntity? ActiveDeviceList; public readonly bool LinkModeActive; - public NetworkConfiguratorComponentState(EntityUid? activeDeviceList, bool linkModeActive) + public NetworkConfiguratorComponentState(NetEntity? activeDeviceList, bool linkModeActive) { ActiveDeviceList = activeDeviceList; LinkModeActive = linkModeActive; diff --git a/Content.Shared/DeviceNetwork/DeviceFrequencyPrototype.cs b/Content.Shared/DeviceNetwork/DeviceFrequencyPrototype.cs index fb9da7cbd2b..2e6ef4d1a02 100644 --- a/Content.Shared/DeviceNetwork/DeviceFrequencyPrototype.cs +++ b/Content.Shared/DeviceNetwork/DeviceFrequencyPrototype.cs @@ -11,7 +11,7 @@ namespace Content.Shared.DeviceNetwork; public sealed class DeviceFrequencyPrototype : IPrototype { [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; // TODO Somehow Allow per-station or some other type of named but randomized frequencies? [DataField("frequency", required: true)] diff --git a/Content.Shared/DeviceNetwork/Systems/SharedDeviceListSystem.cs b/Content.Shared/DeviceNetwork/Systems/SharedDeviceListSystem.cs index 2f9112d58e7..c4d5d688c61 100644 --- a/Content.Shared/DeviceNetwork/Systems/SharedDeviceListSystem.cs +++ b/Content.Shared/DeviceNetwork/Systems/SharedDeviceListSystem.cs @@ -60,7 +60,7 @@ protected virtual void UpdateShutdownSubscription(EntityUid uid, List private void GetDeviceListState(EntityUid uid, DeviceListComponent comp, ref ComponentGetState args) { - args.State = new DeviceListComponentState(comp.Devices, comp.IsAllowList, comp.HandleIncomingPackets); + args.State = new DeviceListComponentState(GetNetEntitySet(comp.Devices), comp.IsAllowList, comp.HandleIncomingPackets); } private void HandleDeviceListState(EntityUid uid, DeviceListComponent comp, ref ComponentHandleState args) @@ -70,7 +70,7 @@ private void HandleDeviceListState(EntityUid uid, DeviceListComponent comp, ref return; } - comp.Devices = state.Devices; + comp.Devices = EnsureEntitySet(state.Devices, uid); comp.HandleIncomingPackets = state.HandleIncomingPackets; comp.IsAllowList = state.IsAllowList; } diff --git a/Content.Shared/DeviceNetwork/Systems/SharedNetworkConfiguratorSystem.cs b/Content.Shared/DeviceNetwork/Systems/SharedNetworkConfiguratorSystem.cs index 9a9d7e1885c..87f77c8f0a2 100644 --- a/Content.Shared/DeviceNetwork/Systems/SharedNetworkConfiguratorSystem.cs +++ b/Content.Shared/DeviceNetwork/Systems/SharedNetworkConfiguratorSystem.cs @@ -18,7 +18,7 @@ public override void Initialize() private void GetNetworkConfiguratorState(EntityUid uid, NetworkConfiguratorComponent comp, ref ComponentGetState args) { - args.State = new NetworkConfiguratorComponentState(comp.ActiveDeviceList, comp.LinkModeActive); + args.State = new NetworkConfiguratorComponentState(GetNetEntity(comp.ActiveDeviceList), comp.LinkModeActive); } private void HandleNetworkConfiguratorState(EntityUid uid, NetworkConfiguratorComponent comp, @@ -29,12 +29,12 @@ private void HandleNetworkConfiguratorState(EntityUid uid, NetworkConfiguratorCo return; } - comp.ActiveDeviceList = state.ActiveDeviceList; + comp.ActiveDeviceList = EnsureEntity(state.ActiveDeviceList, uid); comp.LinkModeActive = state.LinkModeActive; } } -public sealed class ClearAllOverlaysEvent : InstantActionEvent +public sealed partial class ClearAllOverlaysEvent : InstantActionEvent { } diff --git a/Content.Shared/Devour/Components/DevourerComponent.cs b/Content.Shared/Devour/Components/DevourerComponent.cs index d2831683b05..fbeec28ca57 100644 --- a/Content.Shared/Devour/Components/DevourerComponent.cs +++ b/Content.Shared/Devour/Components/DevourerComponent.cs @@ -1,21 +1,22 @@ -using Content.Shared.Actions; -using Content.Shared.Actions.ActionTypes; using Content.Shared.Chemistry.Reagent; -using Content.Shared.Devour; using Content.Shared.Whitelist; 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.Devour.Components; +namespace Content.Shared.Devour.Components; [RegisterComponent, NetworkedComponent] [Access(typeof(SharedDevourSystem))] -public sealed class DevourerComponent : Component +public sealed partial class DevourerComponent : Component { - [DataField("devourAction")] - public EntityTargetAction? DevourAction; + [DataField("devourAction", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string? DevourAction = "ActionDevour"; + + [DataField("devourActionEntity")] + public EntityUid? DevourActionEntity; [ViewVariables(VVAccess.ReadWrite), DataField("soundDevour")] public SoundSpecifier? SoundDevour = new SoundPathSpecifier("/Audio/Effects/demon_consume.ogg") diff --git a/Content.Shared/Devour/SharedDevourSystem.cs b/Content.Shared/Devour/SharedDevourSystem.cs index 117d0106065..cef8ad8de14 100644 --- a/Content.Shared/Devour/SharedDevourSystem.cs +++ b/Content.Shared/Devour/SharedDevourSystem.cs @@ -1,10 +1,10 @@ +using Content.Shared.Actions; +using Content.Shared.Devour.Components; using Content.Shared.DoAfter; -using Content.Shared.Mobs.Components; using Content.Shared.Mobs; -using Robust.Shared.Containers; -using Content.Server.Devour.Components; -using Content.Shared.Actions; +using Content.Shared.Mobs.Components; using Content.Shared.Popups; +using Robust.Shared.Containers; using Robust.Shared.Serialization; namespace Content.Shared.Devour; @@ -31,8 +31,7 @@ protected void OnStartup(EntityUid uid, DevourerComponent component, ComponentSt //I did it mom, I added ERP content into upstream. Legally! component.Stomach = _containerSystem.EnsureContainer(uid, "stomach"); - if (component.DevourAction != null) - _actionsSystem.AddAction(uid, component.DevourAction, null); + _actionsSystem.AddAction(uid, ref component.DevourActionEntity, component.DevourAction); } /// @@ -54,26 +53,26 @@ protected void OnDevourAction(EntityUid uid, DevourerComponent component, Devour case MobState.Critical: case MobState.Dead: - _doAfterSystem.TryStartDoAfter(new DoAfterArgs(uid, component.DevourTime, new DevourDoAfterEvent(), uid, target: target, used: uid) + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, uid, component.DevourTime, new DevourDoAfterEvent(), uid, target: target, used: uid) { BreakOnTargetMove = true, BreakOnUserMove = true, }); break; default: - _popupSystem.PopupEntity(Loc.GetString("devour-action-popup-message-fail-target-alive"), uid, uid); + _popupSystem.PopupClient(Loc.GetString("devour-action-popup-message-fail-target-alive"), uid,uid); break; } return; } - _popupSystem.PopupEntity(Loc.GetString("devour-action-popup-message-structure"), uid, uid); + _popupSystem.PopupClient(Loc.GetString("devour-action-popup-message-structure"), uid, uid); if (component.SoundStructureDevour != null) - _audioSystem.PlayPvs(component.SoundStructureDevour, uid, component.SoundStructureDevour.Params); + _audioSystem.PlayPredicted(component.SoundStructureDevour, uid, uid, component.SoundStructureDevour.Params); - _doAfterSystem.TryStartDoAfter(new DoAfterArgs(uid, component.StructureDevourTime, new DevourDoAfterEvent(), uid, target: target, used: uid) + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, uid, component.StructureDevourTime, new DevourDoAfterEvent(), uid, target: target, used: uid) { BreakOnTargetMove = true, BreakOnUserMove = true, @@ -81,10 +80,10 @@ protected void OnDevourAction(EntityUid uid, DevourerComponent component, Devour } } -public sealed class DevourActionEvent : EntityTargetActionEvent { } +public sealed partial class DevourActionEvent : EntityTargetActionEvent { } [Serializable, NetSerializable] -public sealed class DevourDoAfterEvent : SimpleDoAfterEvent { } +public sealed partial class DevourDoAfterEvent : SimpleDoAfterEvent { } [Serializable, NetSerializable] public enum FoodPreference : byte diff --git a/Content.Shared/Dice/DiceComponent.cs b/Content.Shared/Dice/DiceComponent.cs index 53b640effb4..e2e23890a41 100644 --- a/Content.Shared/Dice/DiceComponent.cs +++ b/Content.Shared/Dice/DiceComponent.cs @@ -5,26 +5,26 @@ namespace Content.Shared.Dice; [RegisterComponent, NetworkedComponent, Access(typeof(SharedDiceSystem))] -public sealed class DiceComponent : Component +public sealed partial class DiceComponent : Component { [DataField("sound")] - public SoundSpecifier Sound { get; } = new SoundCollectionSpecifier("Dice"); + public SoundSpecifier Sound { get; private set; } = new SoundCollectionSpecifier("Dice"); /// /// Multiplier for the value of a die. Applied after the . /// [DataField("multiplier")] - public int Multiplier { get; } = 1; + public int Multiplier { get; private set; } = 1; /// /// Quantity that is subtracted from the value of a die. Can be used to make dice that start at "0". Applied /// before the /// [DataField("offset")] - public int Offset { get; } = 0; + public int Offset { get; private set; } = 0; [DataField("sides")] - public int Sides { get; } = 20; + public int Sides { get; private set; } = 20; /// /// The currently displayed value. diff --git a/Content.Shared/Disposal/Components/SharedDisposalRouterComponent.cs b/Content.Shared/Disposal/Components/SharedDisposalRouterComponent.cs index 8a9c1112dbb..6d78a4c5262 100644 --- a/Content.Shared/Disposal/Components/SharedDisposalRouterComponent.cs +++ b/Content.Shared/Disposal/Components/SharedDisposalRouterComponent.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Disposal.Components { - public sealed class SharedDisposalRouterComponent : Component + public sealed partial class SharedDisposalRouterComponent : Component { public static readonly Regex TagRegex = new("^[a-zA-Z0-9, ]*$", RegexOptions.Compiled); diff --git a/Content.Shared/Disposal/Components/SharedDisposalTaggerComponent.cs b/Content.Shared/Disposal/Components/SharedDisposalTaggerComponent.cs index cd5bed46119..d9099a56e9e 100644 --- a/Content.Shared/Disposal/Components/SharedDisposalTaggerComponent.cs +++ b/Content.Shared/Disposal/Components/SharedDisposalTaggerComponent.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Disposal.Components { - public sealed class SharedDisposalTaggerComponent : Component + public sealed partial class SharedDisposalTaggerComponent : Component { public static readonly Regex TagRegex = new("^[a-zA-Z0-9 ]*$", RegexOptions.Compiled); diff --git a/Content.Shared/Disposal/Components/SharedDisposalUnitComponent.cs b/Content.Shared/Disposal/Components/SharedDisposalUnitComponent.cs index 66bb5de0c64..4b867c639f1 100644 --- a/Content.Shared/Disposal/Components/SharedDisposalUnitComponent.cs +++ b/Content.Shared/Disposal/Components/SharedDisposalUnitComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Disposal.Components; [NetworkedComponent] -public abstract class SharedDisposalUnitComponent : Component +public abstract partial class SharedDisposalUnitComponent : Component { public const string ContainerId = "disposals"; @@ -28,7 +28,7 @@ public abstract class SharedDisposalUnitComponent : Component /// We'll track whatever just left disposals so we know what collision we need to ignore until they stop intersecting our BB. /// [ViewVariables, DataField("recentlyEjected")] - public readonly List RecentlyEjected = new(); + public List RecentlyEjected = new(); /// /// Next time the disposal unit will be pressurized. @@ -55,7 +55,7 @@ public abstract class SharedDisposalUnitComponent : Component /// Removes the pressure requirement for flushing. /// [DataField("disablePressure"), ViewVariables(VVAccess.ReadWrite)] - public bool DisablePressure = false; + public bool DisablePressure; /// /// Last time that an entity tried to exit this disposal unit. diff --git a/Content.Shared/Disposal/SharedDisposalUnitSystem.cs b/Content.Shared/Disposal/SharedDisposalUnitSystem.cs index 7ca2959443c..600036a8910 100644 --- a/Content.Shared/Disposal/SharedDisposalUnitSystem.cs +++ b/Content.Shared/Disposal/SharedDisposalUnitSystem.cs @@ -1,4 +1,5 @@ -using Content.Shared.Body.Components; +using System.Diagnostics.CodeAnalysis; +using Content.Shared.Body.Components; using Content.Shared.Disposal.Components; using Content.Shared.DoAfter; using Content.Shared.DragDrop; @@ -7,7 +8,6 @@ using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; using Content.Shared.Throwing; -using JetBrains.Annotations; using Robust.Shared.Audio; using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Events; @@ -18,7 +18,7 @@ namespace Content.Shared.Disposal; [Serializable, NetSerializable] -public sealed class DisposalDoAfterEvent : SimpleDoAfterEvent +public sealed partial class DisposalDoAfterEvent : SimpleDoAfterEvent { } @@ -34,6 +34,10 @@ public abstract class SharedDisposalUnitSystem : EntitySystem // Percentage public const float PressurePerSecond = 0.05f; + public abstract bool HasDisposals([NotNullWhen(true)] EntityUid? uid); + + public abstract bool ResolveDisposals(EntityUid uid, [NotNullWhen(true)] ref SharedDisposalUnitComponent? component); + /// /// Gets the current pressure state of a disposals unit. /// @@ -76,8 +80,7 @@ protected void OnPreventCollide(EntityUid uid, SharedDisposalUnitComponent compo var otherBody = args.OtherEntity; // Items dropped shouldn't collide but items thrown should - if (EntityManager.HasComponent(otherBody) && - !EntityManager.HasComponent(otherBody)) + if (HasComp(otherBody) && !HasComp(otherBody)) { args.Cancelled = true; return; @@ -106,25 +109,20 @@ protected void OnEmagged(EntityUid uid, SharedDisposalUnitComponent component, r public virtual bool CanInsert(EntityUid uid, SharedDisposalUnitComponent component, EntityUid entity) { - if (!EntityManager.GetComponent(uid).Anchored) + if (!Transform(uid).Anchored) return false; // TODO: Probably just need a disposable tag. - if (!EntityManager.TryGetComponent(entity, out ItemComponent? storable) && - !EntityManager.HasComponent(entity)) - { + var storable = HasComp(entity); + if (!storable && !HasComp(entity)) return false; - } //Check if the entity is a mob and if mobs can be inserted if (TryComp(entity, out var damageState) && !component.MobsCanEnter) return false; - if (EntityManager.TryGetComponent(entity, out PhysicsComponent? physics) && - (physics.CanCollide || storable != null)) - { + if (TryComp(entity, out var physics) && (physics.CanCollide || storable)) return true; - } return damageState != null && (!component.MobsCanEnter || _mobState.IsDead(entity, damageState)); } @@ -144,9 +142,9 @@ protected sealed class DisposalUnitComponentState : ComponentState public TimeSpan? NextFlush; public bool Powered; public bool Engaged; - public List RecentlyEjected; + public List RecentlyEjected; - public DisposalUnitComponentState(SoundSpecifier? flushSound, DisposalsPressureState state, TimeSpan nextPressurized, TimeSpan automaticEngageTime, TimeSpan? nextFlush, bool powered, bool engaged, List recentlyEjected) + public DisposalUnitComponentState(SoundSpecifier? flushSound, DisposalsPressureState state, TimeSpan nextPressurized, TimeSpan automaticEngageTime, TimeSpan? nextFlush, bool powered, bool engaged, List recentlyEjected) { FlushSound = flushSound; State = state; diff --git a/Content.Shared/DoAfter/ActiveDoAfterComponent.cs b/Content.Shared/DoAfter/ActiveDoAfterComponent.cs index 186b102f68b..9554f9e5cf6 100644 --- a/Content.Shared/DoAfter/ActiveDoAfterComponent.cs +++ b/Content.Shared/DoAfter/ActiveDoAfterComponent.cs @@ -6,6 +6,6 @@ namespace Content.Shared.DoAfter; /// Added to entities that are currently performing any doafters. /// [RegisterComponent] -public sealed class ActiveDoAfterComponent : Component +public sealed partial class ActiveDoAfterComponent : Component { } diff --git a/Content.Shared/DoAfter/DoAfter.cs b/Content.Shared/DoAfter/DoAfter.cs index ed8db8c7b21..d999b370b3f 100644 --- a/Content.Shared/DoAfter/DoAfter.cs +++ b/Content.Shared/DoAfter/DoAfter.cs @@ -8,7 +8,7 @@ namespace Content.Shared.DoAfter; [Serializable, NetSerializable] [DataDefinition] [Access(typeof(SharedDoAfterSystem))] -public sealed class DoAfter +public sealed partial class DoAfter { [DataField("index", required:true)] public ushort Index; @@ -16,7 +16,7 @@ public sealed class DoAfter public DoAfterId Id => new(Args.User, Index); [IncludeDataField] - public readonly DoAfterArgs Args = default!; + public DoAfterArgs Args = default!; /// /// Time at which this do after was started. @@ -44,9 +44,12 @@ public sealed class DoAfter /// /// Position of the user relative to their parent when the do after was started. /// + [NonSerialized] [DataField("userPosition")] public EntityCoordinates UserPosition; + public NetCoordinates NetUserPosition; + /// /// Distance from the user to the target when the do after was started. /// @@ -62,9 +65,12 @@ public sealed class DoAfter /// /// If is true, this is the entity that was in the active hand when the doafter started. /// + [NonSerialized] [DataField("activeItem")] public EntityUid? InitialItem; + public NetEntity? NetInitialItem; + // cached attempt event for the sake of avoiding unnecessary reflection every time this needs to be raised. [NonSerialized] public object? AttemptEvent; @@ -86,7 +92,7 @@ public DoAfter(ushort index, DoAfterArgs args, TimeSpan startTime) StartTime = startTime; } - public DoAfter(DoAfter other) + public DoAfter(IEntityManager entManager, DoAfter other) { Index = other.Index; Args = new(other.Args); @@ -97,6 +103,9 @@ public DoAfter(DoAfter other) TargetDistance = other.TargetDistance; InitialHand = other.InitialHand; InitialItem = other.InitialItem; + + NetUserPosition = other.NetUserPosition; + NetInitialItem = other.NetInitialItem; } } diff --git a/Content.Shared/DoAfter/DoAfterArgs.cs b/Content.Shared/DoAfter/DoAfterArgs.cs index 618297d235f..c5cbc1f3028 100644 --- a/Content.Shared/DoAfter/DoAfterArgs.cs +++ b/Content.Shared/DoAfter/DoAfterArgs.cs @@ -5,38 +5,47 @@ namespace Content.Shared.DoAfter; [Serializable, NetSerializable] [DataDefinition] -public sealed class DoAfterArgs +public sealed partial class DoAfterArgs { /// /// The entity invoking do_after /// + [NonSerialized] [DataField("user", required: true)] - public readonly EntityUid User; + public EntityUid User; + + public NetEntity NetUser; /// /// How long does the do_after require to complete /// [DataField("delay", required: true)] - public readonly TimeSpan Delay; + public TimeSpan Delay; /// /// Applicable target (if relevant) /// + [NonSerialized] [DataField("target")] - public readonly EntityUid? Target; + public EntityUid? Target; + + public NetEntity? NetTarget; /// /// Entity used by the User on the Target. /// + [NonSerialized] [DataField("using")] - public readonly EntityUid? Used; + public EntityUid? Used; + + public NetEntity? NetUsed; #region Event options /// /// The event that will get raised when the DoAfter has finished. If null, this will simply raise a /// [DataField("event", required: true)] - public readonly DoAfterEvent Event = default!; + public DoAfterEvent Event = default!; /// /// This option determines how frequently the DoAfterAttempt event will get raised. Defaults to never raising the @@ -48,8 +57,11 @@ public sealed class DoAfterArgs /// /// Entity which will receive the directed event. If null, no directed event will be raised. /// + [NonSerialized] [DataField("eventTarget")] - public readonly EntityUid? EventTarget; + public EntityUid? EventTarget; + + public NetEntity? NetEventTarget; /// /// Should the DoAfter event broadcast? If this is false, then should be a valid entity. @@ -173,6 +185,7 @@ public sealed class DoAfterArgs /// The entity being targeted by the DoAFter. Not the same as . /// The entity being used during the DoAfter. E.g., a tool public DoAfterArgs( + IEntityManager entManager, EntityUid user, TimeSpan delay, DoAfterEvent @event, @@ -186,6 +199,10 @@ public DoAfterArgs( Used = used; EventTarget = eventTarget; Event = @event; + + NetUser = entManager.GetNetEntity(User); + NetTarget = entManager.GetNetEntity(Target); + NetUsed = entManager.GetNetEntity(Used); } private DoAfterArgs() @@ -202,13 +219,14 @@ private DoAfterArgs() /// The entity being targeted by the DoAfter. Not the same as . /// The entity being used during the DoAfter. E.g., a tool public DoAfterArgs( + IEntityManager entManager, EntityUid user, float seconds, DoAfterEvent @event, EntityUid? eventTarget, EntityUid? target = null, EntityUid? used = null) - : this(user, TimeSpan.FromSeconds(seconds), @event, eventTarget, target, used) + : this(entManager, user, TimeSpan.FromSeconds(seconds), @event, eventTarget, target, used) { } @@ -238,6 +256,12 @@ public DoAfterArgs(DoAfterArgs other) CancelDuplicate = other.CancelDuplicate; DuplicateCondition = other.DuplicateCondition; + // Networked + NetUser = other.NetUser; + NetTarget = other.NetTarget; + NetUsed = other.NetUsed; + NetEventTarget = other.NetEventTarget; + Event = other.Event.Clone(); } } diff --git a/Content.Shared/DoAfter/DoAfterComponent.cs b/Content.Shared/DoAfter/DoAfterComponent.cs index cebd171176b..ce45e35c592 100644 --- a/Content.Shared/DoAfter/DoAfterComponent.cs +++ b/Content.Shared/DoAfter/DoAfterComponent.cs @@ -6,13 +6,13 @@ namespace Content.Shared.DoAfter; [RegisterComponent, NetworkedComponent] [Access(typeof(SharedDoAfterSystem))] -public sealed class DoAfterComponent : Component +public sealed partial class DoAfterComponent : Component { [DataField("nextId")] public ushort NextId; [DataField("doAfters")] - public readonly Dictionary DoAfters = new(); + public Dictionary DoAfters = new(); // Used by obsolete async do afters public readonly Dictionary> AwaitedDoAfters = new(); @@ -24,7 +24,7 @@ public sealed class DoAfterComponentState : ComponentState public readonly ushort NextId; public readonly Dictionary DoAfters; - public DoAfterComponentState(DoAfterComponent component) + public DoAfterComponentState(IEntityManager entManager, DoAfterComponent component) { NextId = component.NextId; @@ -36,9 +36,10 @@ public DoAfterComponentState(DoAfterComponent component) DoAfters = component.DoAfters; #else DoAfters = new(); - foreach (var (id, doafter) in component.DoAfters) + foreach (var (id, doAfter) in component.DoAfters) { - DoAfters.Add(id, new DoAfter(doafter)); + var newDoAfter = new DoAfter(entManager, doAfter); + DoAfters.Add(id, newDoAfter); } #endif } diff --git a/Content.Shared/DoAfter/DoAfterEvent.cs b/Content.Shared/DoAfter/DoAfterEvent.cs index 454aa6a1efd..c01505f9b25 100644 --- a/Content.Shared/DoAfter/DoAfterEvent.cs +++ b/Content.Shared/DoAfter/DoAfterEvent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.DoAfter; /// [Serializable, NetSerializable] [ImplicitDataDefinitionForInheritors] -public abstract class DoAfterEvent : HandledEntityEventArgs +public abstract partial class DoAfterEvent : HandledEntityEventArgs { /// /// The do after that triggered this event. This will be set by the do after system before the event is raised. @@ -44,7 +44,7 @@ public abstract class DoAfterEvent : HandledEntityEventArgs /// If an event actually contains data, it should actually override Clone(). /// [Serializable, NetSerializable] -public abstract class SimpleDoAfterEvent : DoAfterEvent +public abstract partial class SimpleDoAfterEvent : DoAfterEvent { // TODO: Find some way to enforce that inheritors don't store data? // Alternatively, I just need to allow generics to be networked. @@ -57,7 +57,7 @@ public abstract class SimpleDoAfterEvent : DoAfterEvent // Placeholder for obsolete async do afters [Serializable, NetSerializable] [Obsolete("Dont use async DoAfters")] -public sealed class AwaitedDoAfterEvent : SimpleDoAfterEvent +public sealed partial class AwaitedDoAfterEvent : SimpleDoAfterEvent { } @@ -65,7 +65,7 @@ public sealed class AwaitedDoAfterEvent : SimpleDoAfterEvent /// This event will optionally get raised every tick while a do-after is in progress to check whether the do-after /// should be canceled. /// -public sealed class DoAfterAttemptEvent : CancellableEntityEventArgs where TEvent : DoAfterEvent +public sealed partial class DoAfterAttemptEvent : CancellableEntityEventArgs where TEvent : DoAfterEvent { /// /// The do after that triggered this event. diff --git a/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs b/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs index 8903e23b898..32f46e5791b 100644 --- a/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs +++ b/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs @@ -71,7 +71,7 @@ protected void Update( } if (dirty) - Dirty(comp); + Dirty(uid, comp); if (comp.DoAfters.Count == 0) RemCompDeferred(uid, active); diff --git a/Content.Shared/DoAfter/SharedDoAfterSystem.cs b/Content.Shared/DoAfter/SharedDoAfterSystem.cs index 350f6e4b27e..472db8cfd61 100644 --- a/Content.Shared/DoAfter/SharedDoAfterSystem.cs +++ b/Content.Shared/DoAfter/SharedDoAfterSystem.cs @@ -100,7 +100,7 @@ private void RaiseDoAfterEvents(DoAfter doAfter, DoAfterComponent component) private void OnDoAfterGetState(EntityUid uid, DoAfterComponent comp, ref ComponentGetState args) { - args.State = new DoAfterComponentState(comp); + args.State = new DoAfterComponentState(EntityManager, comp); } private void OnDoAfterHandleState(EntityUid uid, DoAfterComponent comp, ref ComponentHandleState args) @@ -115,7 +115,18 @@ private void OnDoAfterHandleState(EntityUid uid, DoAfterComponent comp, ref Comp comp.DoAfters.Clear(); foreach (var (id, doAfter) in state.DoAfters) { - comp.DoAfters.Add(id, new(doAfter)); + var newDoAfter = new DoAfter(EntityManager, doAfter); + comp.DoAfters.Add(id, newDoAfter); + + // Networking yay (if you have an easier way dear god please). + newDoAfter.UserPosition = EnsureCoordinates(newDoAfter.NetUserPosition, uid); + newDoAfter.InitialItem = EnsureEntity(newDoAfter.NetInitialItem, uid); + + var doAfterArgs = newDoAfter.Args; + doAfterArgs.Target = EnsureEntity(doAfterArgs.NetTarget, uid); + doAfterArgs.Used = EnsureEntity(doAfterArgs.NetUsed, uid); + doAfterArgs.User = EnsureEntity(doAfterArgs.NetUser, uid); + doAfterArgs.EventTarget = EnsureEntity(doAfterArgs.NetEventTarget, uid); } comp.NextId = state.NextId; @@ -195,6 +206,16 @@ public bool TryStartDoAfter(DoAfterArgs args, [NotNullWhen(true)] out DoAfterId? id = new DoAfterId(args.User, comp.NextId++); var doAfter = new DoAfter(id.Value.Index, args, GameTiming.CurTime); + // Networking yay + doAfter.NetUserPosition = GetNetCoordinates(doAfter.UserPosition); + doAfter.NetInitialItem = GetNetEntity(doAfter.InitialItem); + + // Networking yay + args.NetTarget = GetNetEntity(args.Target); + args.NetUsed = GetNetEntity(args.Used); + args.NetUser = GetNetEntity(args.User); + args.NetEventTarget = GetNetEntity(args.EventTarget); + if (args.BreakOnUserMove || args.BreakOnTargetMove) doAfter.UserPosition = Transform(args.User).Coordinates; @@ -216,7 +237,7 @@ public bool TryStartDoAfter(DoAfterArgs args, [NotNullWhen(true)] out DoAfterId? doAfter.InitialItem = handsComponent.ActiveHandEntity; } - // Inital checks + // Initial checks if (ShouldCancel(doAfter, GetEntityQuery(), GetEntityQuery())) return false; @@ -322,7 +343,7 @@ public void Cancel(EntityUid entity, ushort id, DoAfterComponent? comp = null) } InternalCancel(doAfter, comp); - Dirty(comp); + Dirty(entity, comp); } private void InternalCancel(DoAfter doAfter, DoAfterComponent component) diff --git a/Content.Shared/Doors/Components/AirlockComponent.cs b/Content.Shared/Doors/Components/AirlockComponent.cs index 3e73a7ef9d1..c64e1ac518d 100644 --- a/Content.Shared/Doors/Components/AirlockComponent.cs +++ b/Content.Shared/Doors/Components/AirlockComponent.cs @@ -11,7 +11,7 @@ namespace Content.Shared.Doors.Components; /// [RegisterComponent, NetworkedComponent] [Access(typeof(SharedAirlockSystem), Friend = AccessPermissions.ReadWriteExecute, Other = AccessPermissions.Read)] -public sealed class AirlockComponent : Component +public sealed partial class AirlockComponent : Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("safety")] @@ -27,7 +27,7 @@ public sealed class AirlockComponent : Component /// so this default is closer to 6 effectively on e.g. jaws (9 seconds when applied to other default.) /// [DataField("poweredPryModifier")] - public readonly float PoweredPryModifier = 9f; + public float PoweredPryModifier = 9f; /// /// Whether the maintenance panel should be visible even if the airlock is opened. diff --git a/Content.Shared/Doors/Components/DoorBoltComponent.cs b/Content.Shared/Doors/Components/DoorBoltComponent.cs index 8ce744e36cd..52f7d56db55 100644 --- a/Content.Shared/Doors/Components/DoorBoltComponent.cs +++ b/Content.Shared/Doors/Components/DoorBoltComponent.cs @@ -9,7 +9,7 @@ namespace Content.Shared.Doors.Components; /// [RegisterComponent, NetworkedComponent] [Access(typeof(SharedDoorBoltSystem))] -public sealed class DoorBoltComponent : Component +public sealed partial class DoorBoltComponent : Component { /// /// Sound to play when the bolts on the airlock go up. diff --git a/Content.Shared/Doors/Components/DoorComponent.cs b/Content.Shared/Doors/Components/DoorComponent.cs index 2be28ab5c45..567afa07701 100644 --- a/Content.Shared/Doors/Components/DoorComponent.cs +++ b/Content.Shared/Doors/Components/DoorComponent.cs @@ -15,7 +15,7 @@ namespace Content.Shared.Doors.Components; [NetworkedComponent] [RegisterComponent] -public sealed class DoorComponent : Component +public sealed partial class DoorComponent : Component { /// /// The current state of the door -- whether it is open, closed, opening, or closing. @@ -36,34 +36,34 @@ public sealed class DoorComponent : Component /// Closing time until impassable. Total time is this plus . /// [DataField("closeTimeOne")] - public readonly TimeSpan CloseTimeOne = TimeSpan.FromSeconds(0.4f); + public TimeSpan CloseTimeOne = TimeSpan.FromSeconds(0.4f); /// /// Closing time until fully closed. Total time is this plus . /// [DataField("closeTimeTwo")] - public readonly TimeSpan CloseTimeTwo = TimeSpan.FromSeconds(0.2f); + public TimeSpan CloseTimeTwo = TimeSpan.FromSeconds(0.2f); /// /// Opening time until passable. Total time is this plus . /// [DataField("openTimeOne")] - public readonly TimeSpan OpenTimeOne = TimeSpan.FromSeconds(0.4f); + public TimeSpan OpenTimeOne = TimeSpan.FromSeconds(0.4f); /// /// Opening time until fully open. Total time is this plus . /// [DataField("openTimeTwo")] - public readonly TimeSpan OpenTimeTwo = TimeSpan.FromSeconds(0.2f); + public TimeSpan OpenTimeTwo = TimeSpan.FromSeconds(0.2f); /// /// Interval between deny sounds & visuals; /// [DataField("denyDuration")] - public readonly TimeSpan DenyDuration = TimeSpan.FromSeconds(0.45f); + public TimeSpan DenyDuration = TimeSpan.FromSeconds(0.45f); [DataField("emagDuration")] - public readonly TimeSpan EmagDuration = TimeSpan.FromSeconds(0.8f); + public TimeSpan EmagDuration = TimeSpan.FromSeconds(0.8f); /// /// When the door is active, this is the time when the state will next update. @@ -116,7 +116,7 @@ public sealed class DoorComponent : Component /// again. Total stun time is actually given by this plus . /// [DataField("doorStunTime")] - public readonly TimeSpan DoorStunTime = TimeSpan.FromSeconds(2f); + public TimeSpan DoorStunTime = TimeSpan.FromSeconds(2f); [DataField("crushDamage")] public DamageSpecifier? CrushDamage; @@ -126,14 +126,14 @@ public sealed class DoorComponent : Component /// stun, not whether it can close despite entities being in the way. /// [DataField("canCrush")] - public readonly bool CanCrush = true; + public bool CanCrush = true; /// /// Whether to check for colliding entities before closing. This may be overridden by other system by subscribing to /// . For example, hacked airlocks will set this to false. /// [DataField("performCollisionCheck")] - public readonly bool PerformCollisionCheck = true; + public bool PerformCollisionCheck = true; /// /// List of EntityUids of entities we're currently crushing. Cleared in OnPartialOpen(). @@ -340,14 +340,14 @@ public enum DoorVisualLayers : byte public sealed class DoorComponentState : ComponentState { public readonly DoorState DoorState; - public readonly HashSet CurrentlyCrushing; + public readonly HashSet CurrentlyCrushing; public readonly TimeSpan? NextStateChange; public readonly bool Partial; - public DoorComponentState(DoorComponent door) + public DoorComponentState(DoorComponent door, HashSet currentlyCrushing) { DoorState = door.State; - CurrentlyCrushing = door.CurrentlyCrushing; + CurrentlyCrushing = currentlyCrushing; NextStateChange = door.NextStateChange; Partial = door.Partial; } diff --git a/Content.Shared/Doors/Components/FirelockComponent.cs b/Content.Shared/Doors/Components/FirelockComponent.cs index ceef5964a31..97e57185cac 100644 --- a/Content.Shared/Doors/Components/FirelockComponent.cs +++ b/Content.Shared/Doors/Components/FirelockComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Doors.Components /// retaining pressure.. /// [RegisterComponent] - public sealed class FirelockComponent : Component + public sealed partial class FirelockComponent : Component { /// /// Pry time modifier to be used when the firelock is currently closed due to fire or pressure. diff --git a/Content.Shared/Doors/Systems/SharedDoorSystem.cs b/Content.Shared/Doors/Systems/SharedDoorSystem.cs index b5528ea0d25..3fc912deba9 100644 --- a/Content.Shared/Doors/Systems/SharedDoorSystem.cs +++ b/Content.Shared/Doors/Systems/SharedDoorSystem.cs @@ -19,7 +19,7 @@ namespace Content.Shared.Doors.Systems; -public abstract class SharedDoorSystem : EntitySystem +public abstract partial class SharedDoorSystem : EntitySystem { [Dependency] protected readonly IGameTiming GameTiming = default!; [Dependency] protected readonly SharedPhysicsSystem PhysicsSystem = default!; @@ -101,7 +101,7 @@ private void OnRemove(EntityUid uid, DoorComponent door, ComponentRemove args) #region StateManagement private void OnGetState(EntityUid uid, DoorComponent door, ref ComponentGetState args) { - args.State = new DoorComponentState(door); + args.State = new DoorComponentState(door, GetNetEntitySet(door.CurrentlyCrushing)); } private void OnHandleState(EntityUid uid, DoorComponent door, ref ComponentHandleState args) @@ -109,11 +109,8 @@ private void OnHandleState(EntityUid uid, DoorComponent door, ref ComponentHandl if (args.Current is not DoorComponentState state) return; - if (!door.CurrentlyCrushing.SetEquals(state.CurrentlyCrushing)) - { - door.CurrentlyCrushing.Clear(); - door.CurrentlyCrushing.UnionWith(state.CurrentlyCrushing); - } + door.CurrentlyCrushing.Clear(); + door.CurrentlyCrushing.UnionWith(EnsureEntitySet(state.CurrentlyCrushing, uid)); door.State = state.DoorState; door.NextStateChange = state.NextStateChange; @@ -509,9 +506,9 @@ public bool HasAccess(EntityUid uid, EntityUid? user = null, DoorComponent? door return AccessType switch { // Some game modes modify access rules. - AccessTypes.AllowAllIdExternal => !isExternal || _accessReaderSystem.IsAllowed(user.Value, access), + AccessTypes.AllowAllIdExternal => !isExternal || _accessReaderSystem.IsAllowed(user.Value, uid, access), AccessTypes.AllowAllNoExternal => !isExternal, - _ => _accessReaderSystem.IsAllowed(user.Value, access) + _ => _accessReaderSystem.IsAllowed(user.Value, uid, access) }; } @@ -664,7 +661,7 @@ private void NextState(DoorComponent door, TimeSpan time) protected abstract void PlaySound(EntityUid uid, SoundSpecifier soundSpecifier, AudioParams audioParams, EntityUid? predictingPlayer, bool predicted); [Serializable, NetSerializable] - protected sealed class DoorPryDoAfterEvent : SimpleDoAfterEvent + protected sealed partial class DoorPryDoAfterEvent : SimpleDoAfterEvent { } } diff --git a/Content.Shared/DragDrop/DragDropRequestEvent.cs b/Content.Shared/DragDrop/DragDropRequestEvent.cs index af32997942b..34b4a7a9478 100644 --- a/Content.Shared/DragDrop/DragDropRequestEvent.cs +++ b/Content.Shared/DragDrop/DragDropRequestEvent.cs @@ -11,14 +11,14 @@ public sealed class DragDropRequestEvent : EntityEventArgs /// /// Entity that was dragged and dropped. /// - public EntityUid Dragged { get; } + public NetEntity Dragged { get; } /// /// Entity that was drag dropped on. /// - public EntityUid Target { get; } + public NetEntity Target { get; } - public DragDropRequestEvent(EntityUid dragged, EntityUid target) + public DragDropRequestEvent(NetEntity dragged, NetEntity target) { Dragged = dragged; Target = target; diff --git a/Content.Shared/Dragon/DragonEvents.cs b/Content.Shared/Dragon/DragonEvents.cs new file mode 100644 index 00000000000..e3db9c32da6 --- /dev/null +++ b/Content.Shared/Dragon/DragonEvents.cs @@ -0,0 +1,11 @@ +using Content.Shared.Actions; + +namespace Content.Shared.Dragon; + +public sealed partial class DragonDevourActionEvent : EntityTargetActionEvent +{ +} + +public sealed partial class DragonSpawnRiftActionEvent : InstantActionEvent +{ +} diff --git a/Content.Shared/Dragon/SharedDragonRiftComponent.cs b/Content.Shared/Dragon/SharedDragonRiftComponent.cs index 5f629e8e878..0d2bf440180 100644 --- a/Content.Shared/Dragon/SharedDragonRiftComponent.cs +++ b/Content.Shared/Dragon/SharedDragonRiftComponent.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Dragon; [NetworkedComponent] -public abstract class SharedDragonRiftComponent : Component +public abstract partial class SharedDragonRiftComponent : Component { [DataField("state")] public DragonRiftState State = DragonRiftState.Charging; diff --git a/Content.Shared/DrawDepth/DrawDepth.cs b/Content.Shared/DrawDepth/DrawDepth.cs index e15b4b9e624..f7b1f3648ab 100644 --- a/Content.Shared/DrawDepth/DrawDepth.cs +++ b/Content.Shared/DrawDepth/DrawDepth.cs @@ -75,30 +75,32 @@ public enum DrawDepth Items = DrawDepthTag.Default + 3, Mobs = DrawDepthTag.Default + 4, + + OverMobs = DrawDepthTag.Default + 5, - Doors = DrawDepthTag.Default + 5, + Doors = DrawDepthTag.Default + 6, /// /// Blast doors and shutters which go over the usual doors. /// - BlastDoors = DrawDepthTag.Default + 6, + BlastDoors = DrawDepthTag.Default + 7, /// /// Stuff that needs to draw over most things, but not effects, like Kudzu. /// - Overdoors = DrawDepthTag.Default + 7, + Overdoors = DrawDepthTag.Default + 8, /// /// Explosions, fire, melee swings. Whatever. /// - Effects = DrawDepthTag.Default + 8, + Effects = DrawDepthTag.Default + 9, - Ghosts = DrawDepthTag.Default + 9, + Ghosts = DrawDepthTag.Default + 10, /// /// Use this selectively if it absolutely needs to be drawn above (almost) everything else. Examples include /// the pointing arrow, the drag & drop ghost-entity, and some debug tools. /// - Overlays = DrawDepthTag.Default + 10, + Overlays = DrawDepthTag.Default + 11, } } diff --git a/Content.Shared/Drugs/SeeingRainbowsComponent.cs b/Content.Shared/Drugs/SeeingRainbowsComponent.cs index 50fc25494fb..221599c26e4 100644 --- a/Content.Shared/Drugs/SeeingRainbowsComponent.cs +++ b/Content.Shared/Drugs/SeeingRainbowsComponent.cs @@ -6,4 +6,4 @@ namespace Content.Shared.Drugs; /// Exists for use as a status effect. Adds a shader to the client that scales with the effect duration. /// [RegisterComponent, NetworkedComponent] -public sealed class SeeingRainbowsComponent : Component { } +public sealed partial class SeeingRainbowsComponent : Component { } diff --git a/Content.Shared/Drunk/DrunkComponent.cs b/Content.Shared/Drunk/DrunkComponent.cs index 0d053bf7536..61c195d27e9 100644 --- a/Content.Shared/Drunk/DrunkComponent.cs +++ b/Content.Shared/Drunk/DrunkComponent.cs @@ -3,4 +3,4 @@ namespace Content.Shared.Drunk; [RegisterComponent, NetworkedComponent] -public sealed class DrunkComponent : Component { } +public sealed partial class DrunkComponent : Component { } diff --git a/Content.Shared/Effects/ColorFlashEffectComponent.cs b/Content.Shared/Effects/ColorFlashEffectComponent.cs index 3a9895e9c0e..8300bef1b8c 100644 --- a/Content.Shared/Effects/ColorFlashEffectComponent.cs +++ b/Content.Shared/Effects/ColorFlashEffectComponent.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Effects; /// Stores the original sprite color for flashing entity to be able to restore it later. /// [RegisterComponent] -public sealed class ColorFlashEffectComponent : Component +public sealed partial class ColorFlashEffectComponent : Component { [ViewVariables] public Color Color = Color.White; diff --git a/Content.Shared/Effects/ColorFlashEffectEvent.cs b/Content.Shared/Effects/ColorFlashEffectEvent.cs index 0396d395474..06043d3c000 100644 --- a/Content.Shared/Effects/ColorFlashEffectEvent.cs +++ b/Content.Shared/Effects/ColorFlashEffectEvent.cs @@ -13,9 +13,9 @@ public sealed class ColorFlashEffectEvent : EntityEventArgs /// public Color Color; - public List Entities; + public List Entities; - public ColorFlashEffectEvent(Color color, List entities) + public ColorFlashEffectEvent(Color color, List entities) { Color = color; Entities = entities; diff --git a/Content.Shared/Electrocution/ElectrocutedComponent.cs b/Content.Shared/Electrocution/ElectrocutedComponent.cs index 3ecd8845273..f71ba5b7153 100644 --- a/Content.Shared/Electrocution/ElectrocutedComponent.cs +++ b/Content.Shared/Electrocution/ElectrocutedComponent.cs @@ -1,7 +1,7 @@ namespace Content.Shared.Electrocution { [RegisterComponent] - public sealed class ElectrocutedComponent : Component + public sealed partial class ElectrocutedComponent : Component { } } diff --git a/Content.Shared/Electrocution/InsulatedComponent.cs b/Content.Shared/Electrocution/InsulatedComponent.cs index c83a4501b7e..cd4e5e32c5c 100644 --- a/Content.Shared/Electrocution/InsulatedComponent.cs +++ b/Content.Shared/Electrocution/InsulatedComponent.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Electrocution { [Access(typeof(SharedElectrocutionSystem))] [RegisterComponent, NetworkedComponent] - public sealed class InsulatedComponent : Component + public sealed partial class InsulatedComponent : Component { /// /// Siemens coefficient. Zero means completely insulated. diff --git a/Content.Shared/Electrocution/SharedElectrocutionSystem.cs b/Content.Shared/Electrocution/SharedElectrocutionSystem.cs index d7848c073b1..67a395bb81c 100644 --- a/Content.Shared/Electrocution/SharedElectrocutionSystem.cs +++ b/Content.Shared/Electrocution/SharedElectrocutionSystem.cs @@ -1,4 +1,5 @@ using Content.Shared.Inventory; +using Content.Shared.StatusEffect; using Robust.Shared.GameStates; namespace Content.Shared.Electrocution @@ -25,6 +26,23 @@ public void SetInsulatedSiemensCoefficient(EntityUid uid, float siemensCoefficie Dirty(insulated); } + /// Entity being electrocuted. + /// Source entity of the electrocution. + /// How much shock damage the entity takes. + /// How long the entity will be stunned. + /// Should time be refreshed (instead of accumilated) if the entity is already electrocuted? + /// How insulated the entity is from the shock. 0 means completely insulated, and 1 means no insulation. + /// Status effects to apply to the entity. + /// Should the electrocution bypass the Insulated component? + /// Whether the entity was stunned by the shock. + public virtual bool TryDoElectrocution( + EntityUid uid, EntityUid? sourceUid, int shockDamage, TimeSpan time, bool refresh, float siemensCoefficient = 1f, + StatusEffectsComponent? statusEffects = null, bool ignoreInsulation = false) + { + // only done serverside + return false; + } + private void OnInsulatedElectrocutionAttempt(EntityUid uid, InsulatedComponent insulated, ElectrocutionAttemptEvent args) { args.SiemensCoefficient *= insulated.SiemensCoefficient; diff --git a/Content.Shared/Emag/Components/EmaggedComponent.cs b/Content.Shared/Emag/Components/EmaggedComponent.cs index 1b66357f3e7..337f1a8e561 100644 --- a/Content.Shared/Emag/Components/EmaggedComponent.cs +++ b/Content.Shared/Emag/Components/EmaggedComponent.cs @@ -6,6 +6,6 @@ namespace Content.Shared.Emag.Components; /// Marker component for emagged entities /// [RegisterComponent, NetworkedComponent] -public sealed class EmaggedComponent : Component +public sealed partial class EmaggedComponent : Component { } diff --git a/Content.Shared/Emag/Systems/EmagSystem.cs b/Content.Shared/Emag/Systems/EmagSystem.cs index 7d304381550..ebbd4c02ac6 100644 --- a/Content.Shared/Emag/Systems/EmagSystem.cs +++ b/Content.Shared/Emag/Systems/EmagSystem.cs @@ -7,8 +7,6 @@ using Content.Shared.Interaction; using Content.Shared.Popups; using Content.Shared.Tag; -using Robust.Shared.Network; -using Robust.Shared.Timing; namespace Content.Shared.Emag.Systems; @@ -22,10 +20,8 @@ public sealed class EmagSystem : EntitySystem { [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; [Dependency] private readonly SharedChargesSystem _charges = default!; - [Dependency] private readonly INetManager _net = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly TagSystem _tag = default!; - [Dependency] private readonly IGameTiming _timing = default!; public override void Initialize() { @@ -56,8 +52,7 @@ public bool TryUseEmag(EntityUid uid, EntityUid user, EntityUid target, EmagComp TryComp(uid, out var charges); if (_charges.IsEmpty(uid, charges)) { - if (_net.IsClient && _timing.IsFirstTimePredicted) - _popup.PopupEntity(Loc.GetString("emag-no-charges"), user, user); + _popup.PopupClient(Loc.GetString("emag-no-charges"), user, user); return false; } @@ -65,12 +60,8 @@ public bool TryUseEmag(EntityUid uid, EntityUid user, EntityUid target, EmagComp if (!handled) return false; - // only do popup on client - if (_net.IsClient && _timing.IsFirstTimePredicted) - { - _popup.PopupEntity(Loc.GetString("emag-success", ("target", Identity.Entity(target, EntityManager))), user, - user, PopupType.Medium); - } + _popup.PopupClient(Loc.GetString("emag-success", ("target", Identity.Entity(target, EntityManager))), user, + user, PopupType.Medium); _adminLogger.Add(LogType.Emag, LogImpact.High, $"{ToPrettyString(user):player} emagged {ToPrettyString(target):target}"); diff --git a/Content.Shared/Emoting/EmotingComponent.cs b/Content.Shared/Emoting/EmotingComponent.cs index 2a1bca85b24..a7a1542a91d 100644 --- a/Content.Shared/Emoting/EmotingComponent.cs +++ b/Content.Shared/Emoting/EmotingComponent.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Emoting { [RegisterComponent, NetworkedComponent] - public sealed class EmotingComponent : Component + public sealed partial class EmotingComponent : Component { [DataField("enabled"), Access(typeof(EmoteSystem), Friend = AccessPermissions.ReadWrite, diff --git a/Content.Shared/Emp/EmpDisabledComponent.cs b/Content.Shared/Emp/EmpDisabledComponent.cs index b1e5c805e36..2c9faebde8f 100644 --- a/Content.Shared/Emp/EmpDisabledComponent.cs +++ b/Content.Shared/Emp/EmpDisabledComponent.cs @@ -5,11 +5,11 @@ namespace Content.Shared.Emp; /// /// While entity has this component it is "disabled" by EMP. -/// Add desired behaviour in other systems +/// Add desired behaviour in other systems /// [RegisterComponent, NetworkedComponent] [Access(typeof(SharedEmpSystem))] -public sealed class EmpDisabledComponent : Component +public sealed partial class EmpDisabledComponent : Component { /// /// Moment of time when component is removed and entity stops being "disabled" diff --git a/Content.Shared/Ensnaring/Components/EnsnareableComponent.cs b/Content.Shared/Ensnaring/Components/EnsnareableComponent.cs index e0c3806996b..553f6df1c77 100644 --- a/Content.Shared/Ensnaring/Components/EnsnareableComponent.cs +++ b/Content.Shared/Ensnaring/Components/EnsnareableComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Ensnaring.Components; /// Use this on an entity that you would like to be ensnared by anything that has the /// [RegisterComponent, NetworkedComponent] -public sealed class EnsnareableComponent : Component +public sealed partial class EnsnareableComponent : Component { /// /// How much should this slow down the entities walk? diff --git a/Content.Shared/Ensnaring/Components/EnsnaringComponent.cs b/Content.Shared/Ensnaring/Components/EnsnaringComponent.cs index 1604f7472b9..e7d769d3395 100644 --- a/Content.Shared/Ensnaring/Components/EnsnaringComponent.cs +++ b/Content.Shared/Ensnaring/Components/EnsnaringComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Ensnaring.Components; /// Use this on something you want to use to ensnare an entity with /// [RegisterComponent, NetworkedComponent] -public sealed class EnsnaringComponent : Component +public sealed partial class EnsnaringComponent : Component { /// /// How long it should take to free someone else. diff --git a/Content.Shared/Ensnaring/SharedEnsnareableSystem.cs b/Content.Shared/Ensnaring/SharedEnsnareableSystem.cs index 3486a29251f..4f35dc583a1 100644 --- a/Content.Shared/Ensnaring/SharedEnsnareableSystem.cs +++ b/Content.Shared/Ensnaring/SharedEnsnareableSystem.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Ensnaring; [Serializable, NetSerializable] -public sealed class EnsnareableDoAfterEvent : SimpleDoAfterEvent +public sealed partial class EnsnareableDoAfterEvent : SimpleDoAfterEvent { } diff --git a/Content.Shared/EntityList/EntityListPrototype.cs b/Content.Shared/EntityList/EntityListPrototype.cs index 222d4369529..4ba6dbd7caf 100644 --- a/Content.Shared/EntityList/EntityListPrototype.cs +++ b/Content.Shared/EntityList/EntityListPrototype.cs @@ -9,10 +9,10 @@ public sealed class EntityListPrototype : IPrototype { [ViewVariables] [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [DataField("entities", customTypeSerializer: typeof(PrototypeIdListSerializer))] - public ImmutableList EntityIds { get; } = ImmutableList.Empty; + public ImmutableList EntityIds { get; private set; } = ImmutableList.Empty; public IEnumerable Entities(IPrototypeManager? prototypeManager = null) { diff --git a/Content.Shared/EntityList/EntityLootTablePrototype.cs b/Content.Shared/EntityList/EntityLootTablePrototype.cs index df81b454e02..06b33eb7f61 100644 --- a/Content.Shared/EntityList/EntityLootTablePrototype.cs +++ b/Content.Shared/EntityList/EntityLootTablePrototype.cs @@ -9,7 +9,7 @@ namespace Content.Shared.EntityList; public sealed class EntityLootTablePrototype : IPrototype { [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [DataField("entries")] public ImmutableList Entries = ImmutableList.Empty; diff --git a/Content.Shared/Examine/ExamineSystemMessages.cs b/Content.Shared/Examine/ExamineSystemMessages.cs index 50549c37b14..5d5c67431a5 100644 --- a/Content.Shared/Examine/ExamineSystemMessages.cs +++ b/Content.Shared/Examine/ExamineSystemMessages.cs @@ -9,15 +9,15 @@ public static class ExamineSystemMessages [Serializable, NetSerializable] public sealed class RequestExamineInfoMessage : EntityEventArgs { - public readonly EntityUid EntityUid; - + public readonly NetEntity NetEntity; + public readonly int Id; public readonly bool GetVerbs; - public RequestExamineInfoMessage(EntityUid entityUid, int id, bool getVerbs=false) + public RequestExamineInfoMessage(NetEntity netEntity, int id, bool getVerbs=false) { - EntityUid = entityUid; + NetEntity = netEntity; Id = id; GetVerbs = getVerbs; } @@ -26,7 +26,7 @@ public RequestExamineInfoMessage(EntityUid entityUid, int id, bool getVerbs=fals [Serializable, NetSerializable] public sealed class ExamineInfoResponseMessage : EntityEventArgs { - public readonly EntityUid EntityUid; + public readonly NetEntity EntityUid; public readonly int Id; public readonly FormattedMessage Message; @@ -37,7 +37,7 @@ public sealed class ExamineInfoResponseMessage : EntityEventArgs public readonly bool KnowTarget; - public ExamineInfoResponseMessage(EntityUid entityUid, int id, FormattedMessage message, List? verbs=null, + public ExamineInfoResponseMessage(NetEntity entityUid, int id, FormattedMessage message, List? verbs=null, bool centerAtCursor=true, bool openAtOldTooltip=true, bool knowTarget = true) { EntityUid = entityUid; diff --git a/Content.Shared/Examine/ExamineSystemShared.cs b/Content.Shared/Examine/ExamineSystemShared.cs index a092b7052f9..81fc0169041 100644 --- a/Content.Shared/Examine/ExamineSystemShared.cs +++ b/Content.Shared/Examine/ExamineSystemShared.cs @@ -48,7 +48,7 @@ public abstract partial class ExamineSystemShared : EntitySystem public bool IsInDetailsRange(EntityUid examiner, EntityUid entity) { - if (entity.IsClientSide()) + if (IsClientSide(entity)) return true; // check if the mob is in critical or dead @@ -72,7 +72,7 @@ public bool IsInDetailsRange(EntityUid examiner, EntityUid entity) public bool CanExamine(EntityUid examiner, EntityUid examined) { // special check for client-side entities stored in null-space for some UI guff. - if (examined.IsClientSide()) + if (IsClientSide(examined)) return true; return !Deleted(examined) && CanExamine(examiner, EntityManager.GetComponent(examined).MapPosition, @@ -138,7 +138,7 @@ public float GetExaminerRange(EntityUid examiner, MobStateComponent? mobState = /// public bool IsOccluded(EntityUid uid) { - return TryComp(uid, out var eye) && eye.DrawFov; + return TryComp(uid, out var eye) && eye.DrawFov; } public static bool InRangeUnOccluded(MapCoordinates origin, MapCoordinates other, float range, Ignored? predicate, bool ignoreInsideBlocker = true, IEntityManager? entMan = null) diff --git a/Content.Shared/Examine/ExaminerComponent.cs b/Content.Shared/Examine/ExaminerComponent.cs index 3a931d961f7..f46754eea81 100644 --- a/Content.Shared/Examine/ExaminerComponent.cs +++ b/Content.Shared/Examine/ExaminerComponent.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Examine /// Component required for a player to be able to examine things. /// [RegisterComponent] - public sealed class ExaminerComponent : Component + public sealed partial class ExaminerComponent : Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("skipChecks")] diff --git a/Content.Shared/Examine/GroupExamineComponent.cs b/Content.Shared/Examine/GroupExamineComponent.cs index 529ad6075d5..a61971a2c5f 100644 --- a/Content.Shared/Examine/GroupExamineComponent.cs +++ b/Content.Shared/Examine/GroupExamineComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Examine /// This component groups examine messages together /// [RegisterComponent] - public sealed class GroupExamineComponent : Component + public sealed partial class GroupExamineComponent : Component { /// /// A list of ExamineGroups. @@ -28,7 +28,7 @@ public sealed class GroupExamineComponent : Component } [DataDefinition] - public sealed class ExamineGroup + public sealed partial class ExamineGroup { /// /// The title of the Examine Group. Localized string that gets added to the examine tooltip. @@ -74,7 +74,7 @@ public sealed class ExamineGroup /// An entry used when showing examine details /// [Serializable, NetSerializable, DataDefinition] - public sealed class ExamineEntry + public sealed partial class ExamineEntry { /// /// Which component does this entry relate to? diff --git a/Content.Shared/Exchanger/ExchangerDoAfterEvent.cs b/Content.Shared/Exchanger/ExchangerDoAfterEvent.cs index 0060cf7f57a..921b0697ebd 100644 --- a/Content.Shared/Exchanger/ExchangerDoAfterEvent.cs +++ b/Content.Shared/Exchanger/ExchangerDoAfterEvent.cs @@ -4,6 +4,6 @@ namespace Content.Shared.Exchanger; [Serializable, NetSerializable] -public sealed class ExchangerDoAfterEvent : SimpleDoAfterEvent +public sealed partial class ExchangerDoAfterEvent : SimpleDoAfterEvent { -} \ No newline at end of file +} diff --git a/Content.Shared/Explosion/ExplosionPrototype.cs b/Content.Shared/Explosion/ExplosionPrototype.cs index 927b963f9e1..a2fa7d632e8 100644 --- a/Content.Shared/Explosion/ExplosionPrototype.cs +++ b/Content.Shared/Explosion/ExplosionPrototype.cs @@ -17,27 +17,27 @@ namespace Content.Shared.Explosion; public sealed class ExplosionPrototype : IPrototype { [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// /// Damage to deal to entities. This is scaled by the explosion intensity. /// [DataField("damagePerIntensity", required: true)] - public readonly DamageSpecifier DamagePerIntensity = default!; + public DamageSpecifier DamagePerIntensity = default!; /// /// This set of points, together with define a function that maps the /// explosion intensity to a tile break chance via linear interpolation. /// [DataField("tileBreakChance")] - private readonly float[] _tileBreakChance = { 0f, 1f }; + private float[] _tileBreakChance = { 0f, 1f }; /// /// This set of points, together with define a function that maps the /// explosion intensity to a tile break chance via linear interpolation. /// [DataField("tileBreakIntensity")] - private readonly float[] _tileBreakIntensity = {0f, 15f }; + private float[] _tileBreakIntensity = {0f, 15f }; /// /// When a tile is broken by an explosion, the intensity is reduced by this amount and is used to try and @@ -48,25 +48,25 @@ public sealed class ExplosionPrototype : IPrototype /// chance to create a space tile. /// [DataField("tileBreakRerollReduction")] - public readonly float TileBreakRerollReduction = 10f; + public float TileBreakRerollReduction = 10f; /// /// Color emitted by a point light at the center of the explosion. /// [DataField("lightColor")] - public readonly Color LightColor = Color.Orange; + public Color LightColor = Color.Orange; /// /// Color used to modulate the fire texture. /// [DataField("fireColor")] - public readonly Color? FireColor; + public Color? FireColor; [DataField("Sound")] - public readonly SoundSpecifier Sound = new SoundCollectionSpecifier("explosion"); + public SoundSpecifier Sound = new SoundCollectionSpecifier("explosion"); [DataField("texturePath")] - public readonly ResPath TexturePath = new("/Textures/Effects/fire.rsi"); + public ResPath TexturePath = new("/Textures/Effects/fire.rsi"); /// /// How intense does the explosion have to be at a tile to advance to the next fire texture state? @@ -77,7 +77,7 @@ public sealed class ExplosionPrototype : IPrototype // Theres probably a better way to do this. Currently Atmos just hard codes a constant int, so I have no one to // steal code from. [DataField("fireStates")] - public readonly int FireStates = 3; + public int FireStates = 3; /// /// Basic function for linear interpolation of the _tileBreakChance and _tileBreakIntensity arrays diff --git a/Content.Shared/Explosion/ExplosionVisualsComponent.cs b/Content.Shared/Explosion/ExplosionVisualsComponent.cs index 5d1400cedb1..5baa59fc5a0 100644 --- a/Content.Shared/Explosion/ExplosionVisualsComponent.cs +++ b/Content.Shared/Explosion/ExplosionVisualsComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Explosion; /// Component that is used to send explosion overlay/visual data to an abstract explosion entity. /// [RegisterComponent, NetworkedComponent] -public sealed class ExplosionVisualsComponent : Component +public sealed partial class ExplosionVisualsComponent : Component { public MapCoordinates Epicenter; public Dictionary>? SpaceTiles; @@ -24,7 +24,7 @@ public sealed class ExplosionVisualsState : ComponentState { public MapCoordinates Epicenter; public Dictionary>? SpaceTiles; - public Dictionary>> Tiles; + public Dictionary>> Tiles; public List Intensity; public string ExplosionType = string.Empty; public Matrix3 SpaceMatrix; @@ -35,7 +35,7 @@ public ExplosionVisualsState( string typeID, List intensity, Dictionary>? spaceTiles, - Dictionary>> tiles, + Dictionary>> tiles, Matrix3 spaceMatrix, ushort spaceTileSize) { diff --git a/Content.Shared/Explosion/SharedTriggerOnProximityComponent.cs b/Content.Shared/Explosion/SharedTriggerOnProximityComponent.cs index 72c17e89364..fdc5cd11342 100644 --- a/Content.Shared/Explosion/SharedTriggerOnProximityComponent.cs +++ b/Content.Shared/Explosion/SharedTriggerOnProximityComponent.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Explosion; [NetworkedComponent] -public abstract class SharedTriggerOnProximityComponent : Component +public abstract partial class SharedTriggerOnProximityComponent : Component { } diff --git a/Content.Shared/Extinguisher/SharedFireExtinguisherComponent.cs b/Content.Shared/Extinguisher/SharedFireExtinguisherComponent.cs index a5e4c7efb2e..53d58f1d80f 100644 --- a/Content.Shared/Extinguisher/SharedFireExtinguisherComponent.cs +++ b/Content.Shared/Extinguisher/SharedFireExtinguisherComponent.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Extinguisher; -public abstract class SharedFireExtinguisherComponent : Component +public abstract partial class SharedFireExtinguisherComponent : Component { [DataField("refillSound")] public SoundSpecifier RefillSound = new SoundPathSpecifier("/Audio/Effects/refill.ogg"); @@ -12,7 +12,7 @@ public abstract class SharedFireExtinguisherComponent : Component [DataField("safety")] public bool Safety = true; [DataField("safetySound")] - public SoundSpecifier SafetySound { get; } = new SoundPathSpecifier("/Audio/Machines/button.ogg"); + public SoundSpecifier SafetySound { get; private set; } = new SoundPathSpecifier("/Audio/Machines/button.ogg"); } diff --git a/Content.Shared/Eye/Blinding/Components/BlindfoldComponent.cs b/Content.Shared/Eye/Blinding/Components/BlindfoldComponent.cs index 85268d85456..c1ab3b87d25 100644 --- a/Content.Shared/Eye/Blinding/Components/BlindfoldComponent.cs +++ b/Content.Shared/Eye/Blinding/Components/BlindfoldComponent.cs @@ -7,6 +7,6 @@ namespace Content.Shared.Eye.Blinding.Components; /// [RegisterComponent] [NetworkedComponent] -public sealed class BlindfoldComponent : Component +public sealed partial class BlindfoldComponent : Component { } diff --git a/Content.Shared/Eye/Blinding/Components/EyeProtectionComponent.cs b/Content.Shared/Eye/Blinding/Components/EyeProtectionComponent.cs index eaf3bdb9246..eab9e6912b9 100644 --- a/Content.Shared/Eye/Blinding/Components/EyeProtectionComponent.cs +++ b/Content.Shared/Eye/Blinding/Components/EyeProtectionComponent.cs @@ -4,12 +4,12 @@ namespace Content.Shared.Eye.Blinding.Components; /// For welding masks, sunglasses, etc. /// [RegisterComponent] -public sealed class EyeProtectionComponent : Component +public sealed partial class EyeProtectionComponent : Component { /// /// How many seconds to subtract from the status effect. If it's greater than the source /// of blindness, do not blind. /// [DataField("protectionTime")] - public readonly TimeSpan ProtectionTime = TimeSpan.FromSeconds(10); + public TimeSpan ProtectionTime = TimeSpan.FromSeconds(10); } diff --git a/Content.Shared/Eye/Blinding/Components/TemporaryBlindnessComponent.cs b/Content.Shared/Eye/Blinding/Components/TemporaryBlindnessComponent.cs index 41049e3671d..1f89c3df867 100644 --- a/Content.Shared/Eye/Blinding/Components/TemporaryBlindnessComponent.cs +++ b/Content.Shared/Eye/Blinding/Components/TemporaryBlindnessComponent.cs @@ -6,6 +6,6 @@ namespace Content.Shared.Eye.Blinding.Components; /// Component used for the blind status effect. /// [NetworkedComponent, RegisterComponent] -public sealed class TemporaryBlindnessComponent : Component +public sealed partial class TemporaryBlindnessComponent : Component { } diff --git a/Content.Shared/Eye/VisibilityFlags.cs b/Content.Shared/Eye/VisibilityFlags.cs new file mode 100644 index 00000000000..a4037f2bd74 --- /dev/null +++ b/Content.Shared/Eye/VisibilityFlags.cs @@ -0,0 +1,13 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared.Eye +{ + [Flags] + [FlagsFor(typeof(VisibilityMaskLayer))] + public enum VisibilityFlags : int + { + None = 0, + Normal = 1 << 0, + Ghost = 1 << 1, + } +} diff --git a/Content.Shared/Fax/AdminFaxEui.cs b/Content.Shared/Fax/AdminFaxEui.cs index 40fc5d72da2..7b3e1fae8d3 100644 --- a/Content.Shared/Fax/AdminFaxEui.cs +++ b/Content.Shared/Fax/AdminFaxEui.cs @@ -17,11 +17,11 @@ public AdminFaxEuiState(List entries) [Serializable, NetSerializable] public sealed class AdminFaxEntry { - public EntityUid Uid { get; } + public NetEntity Uid { get; } public string Name { get; } public string Address { get; } - public AdminFaxEntry(EntityUid uid, string name, string address) + public AdminFaxEntry(NetEntity uid, string name, string address) { Uid = uid; Name = name; @@ -39,9 +39,9 @@ public sealed class Close : EuiMessageBase [Serializable, NetSerializable] public sealed class Follow : EuiMessageBase { - public EntityUid TargetFax { get; } + public NetEntity TargetFax { get; } - public Follow(EntityUid targetFax) + public Follow(NetEntity targetFax) { TargetFax = targetFax; } @@ -50,14 +50,14 @@ public Follow(EntityUid targetFax) [Serializable, NetSerializable] public sealed class Send : EuiMessageBase { - public EntityUid Target { get; } + public NetEntity Target { get; } public string Title { get; } public string From { get; } public string Content { get; } public string StampState { get; } public Color StampColor { get; } - public Send(EntityUid target, string title, string from, string content, string stamp, Color stampColor) + public Send(NetEntity target, string title, string from, string content, string stamp, Color stampColor) { Target = target; Title = title; diff --git a/Content.Shared/FixedPoint/FixedPoint2.cs b/Content.Shared/FixedPoint/FixedPoint2.cs index e296c276f7d..eb0e75e7ab9 100644 --- a/Content.Shared/FixedPoint/FixedPoint2.cs +++ b/Content.Shared/FixedPoint/FixedPoint2.cs @@ -1,6 +1,7 @@ using System.Globalization; using System.Linq; using Robust.Shared.Serialization; +using Robust.Shared.Utility; namespace Content.Shared.FixedPoint { @@ -13,14 +14,23 @@ public struct FixedPoint2 : ISelfSerialize, IComparable, IEquatable { public int Value { get; private set; } private const int Shift = 2; + private const int ShiftConstant = 100; // Must be equal to pow(10, Shift) public static FixedPoint2 MaxValue { get; } = new(int.MaxValue); public static FixedPoint2 Epsilon { get; } = new(1); public static FixedPoint2 Zero { get; } = new(0); +#if DEBUG + static FixedPoint2() + { + // ReSharper disable once CompareOfFloatsByEqualityOperator + DebugTools.Assert(Math.Pow(10, Shift) == ShiftConstant, "ShiftConstant must be equal to pow(10, Shift)"); + } +#endif + private readonly double ShiftDown() { - return Value / Math.Pow(10, Shift); + return Value / (double) ShiftConstant; } private FixedPoint2(int value) @@ -30,24 +40,27 @@ private FixedPoint2(int value) public static FixedPoint2 New(int value) { - return new(value * (int) Math.Pow(10, Shift)); + return new(value * ShiftConstant); } public static FixedPoint2 FromCents(int value) => new(value); public static FixedPoint2 New(float value) { - return new(FromFloat(value)); + return new((int) MathF.Round(value * ShiftConstant, MidpointRounding.AwayFromZero)); } - private static int FromFloat(float value) + /// + /// Create the closest for a float value, always rounding up. + /// + public static FixedPoint2 NewCeiling(float value) { - return (int) MathF.Round(value * MathF.Pow(10, Shift), MidpointRounding.AwayFromZero); + return new((int) MathF.Ceiling(value * ShiftConstant)); } public static FixedPoint2 New(double value) { - return new((int) Math.Round(value * Math.Pow(10, Shift), MidpointRounding.AwayFromZero)); + return new((int) Math.Round(value * ShiftConstant, MidpointRounding.AwayFromZero)); } public static FixedPoint2 New(string value) @@ -72,7 +85,7 @@ private static float FloatFromString(string value) public static FixedPoint2 operator *(FixedPoint2 a, FixedPoint2 b) { - return new((int) MathF.Round(b.Value * a.Value / MathF.Pow(10, Shift), MidpointRounding.AwayFromZero)); + return new((int) MathF.Round(b.Value * a.Value / (float) ShiftConstant, MidpointRounding.AwayFromZero)); } public static FixedPoint2 operator *(FixedPoint2 a, float b) @@ -92,7 +105,7 @@ private static float FloatFromString(string value) public static FixedPoint2 operator /(FixedPoint2 a, FixedPoint2 b) { - return new((int) MathF.Round((MathF.Pow(10, Shift) * a.Value) / b.Value, MidpointRounding.AwayFromZero)); + return new((int) MathF.Round((ShiftConstant * a.Value) / (float) b.Value, MidpointRounding.AwayFromZero)); } public static FixedPoint2 operator /(FixedPoint2 a, float b) @@ -253,7 +266,7 @@ public void Deserialize(string value) if (value == "MaxValue") Value = int.MaxValue; else - Value = FromFloat(FloatFromString(value)); + this = New(FloatFromString(value)); } public override readonly string ToString() => $"{ShiftDown().ToString(CultureInfo.InvariantCulture)}"; diff --git a/Content.Shared/Flash/FlashableComponent.cs b/Content.Shared/Flash/FlashableComponent.cs index c51933e0a6e..e20e2e79414 100644 --- a/Content.Shared/Flash/FlashableComponent.cs +++ b/Content.Shared/Flash/FlashableComponent.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Flash { [RegisterComponent, NetworkedComponent] - public sealed class FlashableComponent : Component + public sealed partial class FlashableComponent : Component { public float Duration; public TimeSpan LastFlash; diff --git a/Content.Shared/Fluids/AbsorbentComponent.cs b/Content.Shared/Fluids/AbsorbentComponent.cs index 4966c8c5f6e..450ecc0df6d 100644 --- a/Content.Shared/Fluids/AbsorbentComponent.cs +++ b/Content.Shared/Fluids/AbsorbentComponent.cs @@ -1,3 +1,4 @@ +using Content.Shared.Audio; using Content.Shared.FixedPoint; using Robust.Shared.Audio; using Robust.Shared.GameStates; @@ -8,7 +9,7 @@ namespace Content.Shared.Fluids; /// For entities that can clean up puddles /// [RegisterComponent, NetworkedComponent] -public sealed class AbsorbentComponent : Component +public sealed partial class AbsorbentComponent : Component { public const string SolutionName = "absorbed"; @@ -23,18 +24,18 @@ public sealed class AbsorbentComponent : Component [DataField("pickupSound")] public SoundSpecifier PickupSound = new SoundPathSpecifier("/Audio/Effects/Fluids/watersplash.ogg") { - Params = AudioParams.Default.WithVariation(0.05f), + Params = AudioParams.Default.WithVariation(SharedContentAudioSystem.DefaultVariation), }; [DataField("transferSound")] public SoundSpecifier TransferSound = new SoundPathSpecifier("/Audio/Effects/Fluids/slosh.ogg") { - Params = AudioParams.Default.WithVariation(0.05f).WithVolume(-3f), + Params = AudioParams.Default.WithVariation(SharedContentAudioSystem.DefaultVariation).WithVolume(-3f), }; public static readonly SoundSpecifier DefaultTransferSound = new SoundPathSpecifier("/Audio/Effects/Fluids/slosh.ogg") { - Params = AudioParams.Default.WithVariation(0.05f).WithVolume(-3f), + Params = AudioParams.Default.WithVariation(SharedContentAudioSystem.DefaultVariation).WithVolume(-3f), }; } diff --git a/Content.Shared/Fluids/Components/DrainComponent.cs b/Content.Shared/Fluids/Components/DrainComponent.cs index 6c368336eed..84331851d16 100644 --- a/Content.Shared/Fluids/Components/DrainComponent.cs +++ b/Content.Shared/Fluids/Components/DrainComponent.cs @@ -12,7 +12,7 @@ namespace Content.Shared.Fluids.Components; /// Later this can be refactored into a proper Plunger component if needed. /// [RegisterComponent, Access(typeof(SharedDrainSystem))] -public sealed class DrainComponent : Component +public sealed partial class DrainComponent : Component { public const string SolutionName = "drainBuffer"; diff --git a/Content.Shared/Fluids/Components/PuddleComponent.cs b/Content.Shared/Fluids/Components/PuddleComponent.cs index 614d6701c57..4abacf1ac99 100644 --- a/Content.Shared/Fluids/Components/PuddleComponent.cs +++ b/Content.Shared/Fluids/Components/PuddleComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Fluids.Components /// Puddle on a floor /// [RegisterComponent, NetworkedComponent, Access(typeof(SharedPuddleSystem))] - public sealed class PuddleComponent : Component + public sealed partial class PuddleComponent : Component { [DataField("spillSound")] public SoundSpecifier SpillSound = new SoundPathSpecifier("/Audio/Effects/Fluids/splat.ogg"); diff --git a/Content.Shared/Fluids/Events.cs b/Content.Shared/Fluids/Events.cs index 5cff7ea757a..e281de91377 100644 --- a/Content.Shared/Fluids/Events.cs +++ b/Content.Shared/Fluids/Events.cs @@ -6,19 +6,19 @@ namespace Content.Shared.Fluids; [Serializable, NetSerializable] -public sealed class AbsorbantDoAfterEvent : DoAfterEvent +public sealed partial class AbsorbantDoAfterEvent : DoAfterEvent { [DataField("solution", required: true)] - public readonly string TargetSolution = default!; + public string TargetSolution = default!; [DataField("message", required: true)] - public readonly string Message = default!; + public string Message = default!; [DataField("sound", required: true)] - public readonly SoundSpecifier Sound = default!; + public SoundSpecifier Sound = default!; [DataField("transferAmount", required: true)] - public readonly FixedPoint2 TransferAmount; + public FixedPoint2 TransferAmount; private AbsorbantDoAfterEvent() { diff --git a/Content.Shared/Fluids/SharedDrainSystem.cs b/Content.Shared/Fluids/SharedDrainSystem.cs index 43df0c352b5..f9bcee44eee 100644 --- a/Content.Shared/Fluids/SharedDrainSystem.cs +++ b/Content.Shared/Fluids/SharedDrainSystem.cs @@ -3,10 +3,10 @@ namespace Content.Shared.Fluids; -public class SharedDrainSystem : EntitySystem +public partial class SharedDrainSystem : EntitySystem { [Serializable, NetSerializable] - public sealed class DrainDoAfterEvent : SimpleDoAfterEvent + public sealed partial class DrainDoAfterEvent : SimpleDoAfterEvent { } } diff --git a/Content.Shared/Fluids/SharedPuddleDebugOverlaySystem.cs b/Content.Shared/Fluids/SharedPuddleDebugOverlaySystem.cs index df0a05fa64b..6f6d56cf60a 100644 --- a/Content.Shared/Fluids/SharedPuddleDebugOverlaySystem.cs +++ b/Content.Shared/Fluids/SharedPuddleDebugOverlaySystem.cs @@ -26,10 +26,10 @@ public sealed class PuddleOverlayDebugMessage : EntityEventArgs { public PuddleDebugOverlayData[] OverlayData { get; } - public EntityUid GridUid { get; } + public NetEntity GridUid { get; } - public PuddleOverlayDebugMessage(EntityUid gridUid, PuddleDebugOverlayData[] overlayData) + public PuddleOverlayDebugMessage(NetEntity gridUid, PuddleDebugOverlayData[] overlayData) { GridUid = gridUid; OverlayData = overlayData; diff --git a/Content.Shared/Fluids/SharedPuddleSystem.cs b/Content.Shared/Fluids/SharedPuddleSystem.cs index 161ea1469d1..056c3ba9198 100644 --- a/Content.Shared/Fluids/SharedPuddleSystem.cs +++ b/Content.Shared/Fluids/SharedPuddleSystem.cs @@ -17,8 +17,9 @@ public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnRefillableCanDrag); - SubscribeLocalEvent(OnRefillableCanDropDragged); + SubscribeLocalEvent(OnDumpCanDropTarget); SubscribeLocalEvent(OnDrainCanDropTarget); + SubscribeLocalEvent(OnRefillableCanDropDragged); } private void OnRefillableCanDrag(EntityUid uid, RefillableSolutionComponent component, ref CanDragEvent args) @@ -26,6 +27,15 @@ private void OnRefillableCanDrag(EntityUid uid, RefillableSolutionComponent comp args.Handled = true; } + private void OnDumpCanDropTarget(EntityUid uid, DumpableSolutionComponent component, ref CanDropTargetEvent args) + { + if (HasComp(args.Dragged)) + { + args.CanDrop = true; + args.Handled = true; + } + } + private void OnDrainCanDropTarget(EntityUid uid, DrainableSolutionComponent component, ref CanDropTargetEvent args) { if (HasComp(args.Dragged)) @@ -37,7 +47,7 @@ private void OnDrainCanDropTarget(EntityUid uid, DrainableSolutionComponent comp private void OnRefillableCanDropDragged(EntityUid uid, RefillableSolutionComponent component, ref CanDropDraggedEvent args) { - if (!HasComp(args.Target) && !HasComp(args.Target)) + if (!HasComp(args.Target) && !HasComp(args.Target)) return; args.CanDrop = true; diff --git a/Content.Shared/Foldable/FoldableComponent.cs b/Content.Shared/Foldable/FoldableComponent.cs index ec29db7d984..7303f64fdbc 100644 --- a/Content.Shared/Foldable/FoldableComponent.cs +++ b/Content.Shared/Foldable/FoldableComponent.cs @@ -11,8 +11,8 @@ namespace Content.Shared.Foldable; /// [RegisterComponent] [NetworkedComponent] -[Access(typeof(SharedFoldableSystem))] -public sealed class FoldableComponent : Component +[Access(typeof(FoldableSystem))] +public sealed partial class FoldableComponent : Component { [DataField("folded")] public bool IsFolded = false; diff --git a/Content.Shared/Foldable/FoldableSystem.cs b/Content.Shared/Foldable/FoldableSystem.cs new file mode 100644 index 00000000000..7bf00a5d243 --- /dev/null +++ b/Content.Shared/Foldable/FoldableSystem.cs @@ -0,0 +1,160 @@ +using Content.Shared.Buckle; +using Content.Shared.Storage.Components; +using Content.Shared.Verbs; +using Robust.Shared.Containers; +using Robust.Shared.GameStates; +using Robust.Shared.Serialization; +using Robust.Shared.Utility; + +namespace Content.Shared.Foldable; + +public sealed class FoldableSystem : EntitySystem +{ + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedBuckleSystem _buckle = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent>(AddFoldVerb); + SubscribeLocalEvent(OnGetState); + SubscribeLocalEvent(OnHandleState); + + SubscribeLocalEvent(OnFoldableInit); + SubscribeLocalEvent(OnInsertEvent); + SubscribeLocalEvent(OnStoreThisAttempt); + SubscribeLocalEvent(OnFoldableOpenAttempt); + } + + private void OnGetState(EntityUid uid, FoldableComponent component, ref ComponentGetState args) + { + args.State = new FoldableComponentState(component.IsFolded); + } + + private void OnHandleState(EntityUid uid, FoldableComponent component, ref ComponentHandleState args) + { + if (args.Current is not FoldableComponentState state) + return; + + if (state.IsFolded != component.IsFolded) + SetFolded(uid, component, state.IsFolded); + } + + private void OnFoldableInit(EntityUid uid, FoldableComponent component, ComponentInit args) + { + SetFolded(uid, component, component.IsFolded); + } + + private void OnFoldableOpenAttempt(EntityUid uid, FoldableComponent component, ref StorageOpenAttemptEvent args) + { + if (component.IsFolded) + args.Cancelled = true; + } + + public void OnStoreThisAttempt(EntityUid uid, FoldableComponent comp, ref StoreMobInItemContainerAttemptEvent args) + { + args.Handled = true; + + if (comp.IsFolded) + args.Cancelled = true; + } + + /// + /// Returns false if the entity isn't foldable. + /// + public bool IsFolded(EntityUid uid, FoldableComponent? component = null) + { + if (!Resolve(uid, ref component)) + return false; + + return component.IsFolded; + } + + /// + /// Set the folded state of the given + /// + public void SetFolded(EntityUid uid, FoldableComponent component, bool folded) + { + component.IsFolded = folded; + Dirty(uid, component); + _appearance.SetData(uid, FoldedVisuals.State, folded); + _buckle.StrapSetEnabled(uid, !component.IsFolded); + } + + private void OnInsertEvent(EntityUid uid, FoldableComponent component, ContainerGettingInsertedAttemptEvent args) + { + if (!component.IsFolded) + args.Cancel(); + } + + public bool TryToggleFold(EntityUid uid, FoldableComponent comp) + { + return TrySetFolded(uid, comp, !comp.IsFolded); + } + + public bool CanToggleFold(EntityUid uid, FoldableComponent? fold = null) + { + if (!Resolve(uid, ref fold)) + return false; + + // Can't un-fold in any container (locker, hands, inventory, whatever). + if (_container.IsEntityInContainer(uid)) + return false; + + var ev = new FoldAttemptEvent(); + RaiseLocalEvent(uid, ref ev); + return !ev.Cancelled; + } + + /// + /// Try to fold/unfold + /// + public bool TrySetFolded(EntityUid uid, FoldableComponent comp, bool state) + { + if (state == comp.IsFolded) + return false; + + if (!CanToggleFold(uid, comp)) + return false; + + SetFolded(uid, comp, state); + return true; + } + + #region Verb + + private void AddFoldVerb(EntityUid uid, FoldableComponent component, GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract || args.Hands == null || !CanToggleFold(uid, component)) + return; + + AlternativeVerb verb = new() + { + Act = () => TryToggleFold(uid, component), + Text = component.IsFolded ? Loc.GetString("unfold-verb") : Loc.GetString("fold-verb"), + Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/VerbIcons/fold.svg.192dpi.png")), + + // If the object is unfolded and they click it, they want to fold it, if it's folded, they want to pick it up + Priority = component.IsFolded ? 0 : 2, + }; + + args.Verbs.Add(verb); + } + + #endregion + + [Serializable, NetSerializable] + public enum FoldedVisuals : byte + { + State + } +} + +/// +/// Event raised on an entity to determine if it can be folded. +/// +/// +[ByRefEvent] +public record struct FoldAttemptEvent(bool Cancelled = false); diff --git a/Content.Shared/Foldable/SharedFoldableSystem.cs b/Content.Shared/Foldable/SharedFoldableSystem.cs deleted file mode 100644 index 2b2b6423d01..00000000000 --- a/Content.Shared/Foldable/SharedFoldableSystem.cs +++ /dev/null @@ -1,84 +0,0 @@ -using Content.Shared.Buckle; -using Content.Shared.Storage.Components; -using JetBrains.Annotations; -using Robust.Shared.Containers; -using Robust.Shared.GameStates; -using Robust.Shared.Serialization; - -namespace Content.Shared.Foldable; - -[UsedImplicitly] -public abstract class SharedFoldableSystem : EntitySystem -{ - [Dependency] protected readonly SharedAppearanceSystem Appearance = default!; - [Dependency] private readonly SharedBuckleSystem _buckle = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnGetState); - SubscribeLocalEvent(OnHandleState); - - SubscribeLocalEvent(OnFoldableInit); - SubscribeLocalEvent(OnInsertEvent); - SubscribeLocalEvent(OnStoreThisAttempt); - SubscribeLocalEvent(OnFoldableOpenAttempt); - } - - private void OnGetState(EntityUid uid, FoldableComponent component, ref ComponentGetState args) - { - args.State = new FoldableComponentState(component.IsFolded); - } - - private void OnHandleState(EntityUid uid, FoldableComponent component, ref ComponentHandleState args) - { - if (args.Current is not FoldableComponentState state) - return; - - if (state.IsFolded != component.IsFolded) - SetFolded(uid, component, state.IsFolded); - } - - private void OnFoldableInit(EntityUid uid, FoldableComponent component, ComponentInit args) - { - SetFolded(uid, component, component.IsFolded); - } - - private void OnFoldableOpenAttempt(EntityUid uid, FoldableComponent component, ref StorageOpenAttemptEvent args) - { - if (component.IsFolded) - args.Cancelled = true; - } - - public void OnStoreThisAttempt(EntityUid uid, FoldableComponent comp, ref StoreMobInItemContainerAttemptEvent args) - { - args.Handled = true; - - if (comp.IsFolded) - args.Cancelled = true; - } - - /// - /// Set the folded state of the given - /// - public virtual void SetFolded(EntityUid uid, FoldableComponent component, bool folded) - { - component.IsFolded = folded; - Dirty(component); - Appearance.SetData(uid, FoldedVisuals.State, folded); - _buckle.StrapSetEnabled(uid, !component.IsFolded); - } - - private void OnInsertEvent(EntityUid uid, FoldableComponent component, ContainerGettingInsertedAttemptEvent args) - { - if (!component.IsFolded) - args.Cancel(); - } - - [Serializable, NetSerializable] - public enum FoldedVisuals : byte - { - State - } -} diff --git a/Content.Shared/Follower/Components/FollowedComponent.cs b/Content.Shared/Follower/Components/FollowedComponent.cs index 259af7c4845..83e486668eb 100644 --- a/Content.Shared/Follower/Components/FollowedComponent.cs +++ b/Content.Shared/Follower/Components/FollowedComponent.cs @@ -7,9 +7,9 @@ namespace Content.Shared.Follower.Components; /// Attached to entities that are currently being followed by a ghost. /// [RegisterComponent, Access(typeof(FollowerSystem))] -[NetworkedComponent, AutoGenerateComponentState] +[NetworkedComponent] public sealed partial class FollowedComponent : Component { - [AutoNetworkedField(true), DataField("following")] + [DataField("following")] public HashSet Following = new(); } diff --git a/Content.Shared/Follower/Components/OrbitVisualsComponent.cs b/Content.Shared/Follower/Components/OrbitVisualsComponent.cs index 9b005baa6ce..a1ee17c27fc 100644 --- a/Content.Shared/Follower/Components/OrbitVisualsComponent.cs +++ b/Content.Shared/Follower/Components/OrbitVisualsComponent.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Follower.Components; [RegisterComponent] [NetworkedComponent] -public sealed class OrbitVisualsComponent : Component +public sealed partial class OrbitVisualsComponent : Component { /// /// How long should the orbit animation last in seconds, before being randomized? diff --git a/Content.Shared/Follower/FollowerSystem.cs b/Content.Shared/Follower/FollowerSystem.cs index 98e4d69ab84..10e7a7be1d0 100644 --- a/Content.Shared/Follower/FollowerSystem.cs +++ b/Content.Shared/Follower/FollowerSystem.cs @@ -8,12 +8,14 @@ using Content.Shared.Tag; using Content.Shared.Verbs; using Robust.Shared.Containers; +using Robust.Shared.GameStates; using Robust.Shared.Map; using Robust.Shared.Map.Events; using Robust.Shared.Network; using Robust.Shared.Utility; using Robust.Shared.Physics; using Robust.Shared.Physics.Systems; +using Robust.Shared.Serialization; namespace Content.Shared.Follower; @@ -36,6 +38,25 @@ public override void Initialize() SubscribeLocalEvent(OnGotEquippedHand); SubscribeLocalEvent(OnFollowedTerminating); SubscribeLocalEvent(OnBeforeSave); + + SubscribeLocalEvent(OnFollowedGetState); + SubscribeLocalEvent(OnFollowedHandleState); + } + + private void OnFollowedGetState(EntityUid uid, FollowedComponent component, ref ComponentGetState args) + { + args.State = new FollowedComponentState() + { + Following = GetNetEntitySet(component.Following), + }; + } + + private void OnFollowedHandleState(EntityUid uid, FollowedComponent component, ref ComponentHandleState args) + { + if (args.Current is not FollowedComponentState state) + return; + + component.Following = EnsureEntitySet(state.Following, uid); } private void OnBeforeSave(BeforeSaveEvent ev) @@ -58,10 +79,10 @@ private void OnBeforeSave(BeforeSaveEvent ev) private void OnGetAlternativeVerbs(GetVerbsEvent ev) { - if (ev.User == ev.Target || ev.Target.IsClientSide()) + if (ev.User == ev.Target || IsClientSide(ev.Target)) return; - if (HasComp(ev.User)) + if (HasComp(ev.User)) { var verb = new AlternativeVerb() { @@ -221,6 +242,12 @@ public void StopAllFollowers(EntityUid uid, StopFollowingEntity(player, uid, followed); } } + + [Serializable, NetSerializable] + private sealed class FollowedComponentState : ComponentState + { + public HashSet Following = new(); + } } public abstract class FollowEvent : EntityEventArgs diff --git a/Content.Shared/Forensics/Events.cs b/Content.Shared/Forensics/Events.cs index 7db2965c0ea..d49bb24fbb7 100644 --- a/Content.Shared/Forensics/Events.cs +++ b/Content.Shared/Forensics/Events.cs @@ -4,14 +4,14 @@ namespace Content.Shared.Forensics; [Serializable, NetSerializable] -public sealed class ForensicScannerDoAfterEvent : SimpleDoAfterEvent +public sealed partial class ForensicScannerDoAfterEvent : SimpleDoAfterEvent { } [Serializable, NetSerializable] -public sealed class ForensicPadDoAfterEvent : DoAfterEvent +public sealed partial class ForensicPadDoAfterEvent : DoAfterEvent { - [DataField("sample", required: true)] public readonly string Sample = default!; + [DataField("sample", required: true)] public string Sample = default!; private ForensicPadDoAfterEvent() { diff --git a/Content.Shared/GameTicking/SharedGameTicker.cs b/Content.Shared/GameTicking/SharedGameTicker.cs index 62af2caef5c..b4e82184297 100644 --- a/Content.Shared/GameTicking/SharedGameTicker.cs +++ b/Content.Shared/GameTicking/SharedGameTicker.cs @@ -124,10 +124,10 @@ public sealed class TickerJobsAvailableEvent : EntityEventArgs /// /// The Status of the Player in the lobby (ready, observer, ...) /// - public Dictionary> JobsAvailableByStation { get; } - public Dictionary StationNames { get; } + public Dictionary> JobsAvailableByStation { get; } + public Dictionary StationNames { get; } - public TickerJobsAvailableEvent(Dictionary stationNames, Dictionary> jobsAvailableByStation) + public TickerJobsAvailableEvent(Dictionary stationNames, Dictionary> jobsAvailableByStation) { StationNames = stationNames; JobsAvailableByStation = jobsAvailableByStation; @@ -143,7 +143,7 @@ public struct RoundEndPlayerInfo public string PlayerOOCName; public string? PlayerICName; public string Role; - public EntityUid? PlayerEntityUid; + public NetEntity? PlayerNetEntity; public bool Antag; public bool Observer; public bool Connected; diff --git a/Content.Shared/Gateway/GatewayUi.cs b/Content.Shared/Gateway/GatewayUi.cs index b3ab67e3963..75518c2be8b 100644 --- a/Content.Shared/Gateway/GatewayUi.cs +++ b/Content.Shared/Gateway/GatewayUi.cs @@ -26,12 +26,12 @@ public sealed class GatewayBoundUserInterfaceState : BoundUserInterfaceState /// /// List of enabled destinations and information about them. /// - public readonly List<(EntityUid, string, TimeSpan, bool)> Destinations; + public readonly List<(NetEntity, string, TimeSpan, bool)> Destinations; /// /// Which destination it is currently linked to, if any. /// - public readonly EntityUid? Current; + public readonly NetEntity? Current; /// /// Time the portal will close at. @@ -43,8 +43,8 @@ public sealed class GatewayBoundUserInterfaceState : BoundUserInterfaceState /// public readonly TimeSpan LastOpen; - public GatewayBoundUserInterfaceState(List<(EntityUid, string, TimeSpan, bool)> destinations, - EntityUid? current, TimeSpan nextClose, TimeSpan lastOpen) + public GatewayBoundUserInterfaceState(List<(NetEntity, string, TimeSpan, bool)> destinations, + NetEntity? current, TimeSpan nextClose, TimeSpan lastOpen) { Destinations = destinations; Current = current; @@ -56,9 +56,9 @@ public GatewayBoundUserInterfaceState(List<(EntityUid, string, TimeSpan, bool)> [Serializable, NetSerializable] public sealed class GatewayOpenPortalMessage : BoundUserInterfaceMessage { - public EntityUid Destination; + public NetEntity Destination; - public GatewayOpenPortalMessage(EntityUid destination) + public GatewayOpenPortalMessage(NetEntity destination) { Destination = destination; } diff --git a/Content.Shared/Ghost/GhostComponent.cs b/Content.Shared/Ghost/GhostComponent.cs new file mode 100644 index 00000000000..63fc64c6ce8 --- /dev/null +++ b/Content.Shared/Ghost/GhostComponent.cs @@ -0,0 +1,98 @@ +using Content.Shared.Actions; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Shared.Ghost; + +[RegisterComponent, NetworkedComponent, Access(typeof(SharedGhostSystem))] +[AutoGenerateComponentState(true)] +public sealed partial class GhostComponent : Component +{ + // I have no idea what this means I just wanted to kill comp references. + [ViewVariables] + public bool IsAttached; + + [DataField("toggleLightingAction", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string ToggleLightingAction = "ActionToggleLighting"; + + [DataField("toggleLightingActionEntity")] + public EntityUid? ToggleLightingActionEntity; + + [DataField("toggleFovAction", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string ToggleFoVAction = "ActionToggleFov"; + + [DataField("toggleFovActionEntity")] + public EntityUid? ToggleFoVActionEntity; + + [DataField("toggleGhostsAction", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string ToggleGhostsAction = "ActionToggleGhosts"; + + [DataField("toggleGhostsActionEntity")] + public EntityUid? ToggleGhostsActionEntity; + + [ViewVariables(VVAccess.ReadWrite), DataField("timeOfDeath", customTypeSerializer:typeof(TimeOffsetSerializer))] + public TimeSpan TimeOfDeath = TimeSpan.Zero; + + [DataField("booRadius")] + public float BooRadius = 3; + + [DataField("booMaxTargets")] + public int BooMaxTargets = 3; + + [DataField("action", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string Action = "ActionGhostBoo"; + + [DataField("actionEntity")] public EntityUid? ActionEntity; + + // TODO: instead of this funny stuff just give it access and update in system dirtying when needed + [ViewVariables(VVAccess.ReadWrite)] + public bool CanGhostInteract + { + get => _canGhostInteract; + set + { + if (_canGhostInteract == value) return; + _canGhostInteract = value; + Dirty(); + } + } + + [DataField("canInteract"), AutoNetworkedField] + private bool _canGhostInteract; + + /// + /// Changed by + /// + // TODO MIRROR change this to use friend classes when thats merged + [ViewVariables(VVAccess.ReadWrite)] + public bool CanReturnToBody + { + get => _canReturnToBody; + set + { + if (_canReturnToBody == value) return; + _canReturnToBody = value; + Dirty(); + } + } + + /// + /// Ghost color + /// + /// Used to allow admins to change ghost colors. Should be removed if the capability to edit existing sprite colors is ever added back. + [DataField("color"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + public Color color = Color.White; + + [DataField("canReturnToBody"), AutoNetworkedField] + private bool _canReturnToBody; +} + +public sealed partial class BooActionEvent : InstantActionEvent { } + +public sealed partial class ToggleFoVActionEvent : InstantActionEvent { }; + +public sealed partial class ToggleGhostsActionEvent : InstantActionEvent { }; + +public sealed partial class ToggleLightingActionEvent : InstantActionEvent { }; diff --git a/Content.Shared/Ghost/Roles/MakeGhostRoleEuiState.cs b/Content.Shared/Ghost/Roles/MakeGhostRoleEuiState.cs index 3bde2517c3b..e17ab4aab3f 100644 --- a/Content.Shared/Ghost/Roles/MakeGhostRoleEuiState.cs +++ b/Content.Shared/Ghost/Roles/MakeGhostRoleEuiState.cs @@ -6,11 +6,11 @@ namespace Content.Shared.Ghost.Roles [Serializable, NetSerializable] public sealed class MakeGhostRoleEuiState : EuiStateBase { - public MakeGhostRoleEuiState(EntityUid entityUid) + public MakeGhostRoleEuiState(NetEntity entity) { - EntityUid = entityUid; + Entity = entity; } - public EntityUid EntityUid { get; } + public NetEntity Entity { get; } } } diff --git a/Content.Shared/Ghost/Roles/SharedGhostRoleSystem.cs b/Content.Shared/Ghost/Roles/SharedGhostRoleSystem.cs index 8aae54aa5b4..b64844e9a06 100644 --- a/Content.Shared/Ghost/Roles/SharedGhostRoleSystem.cs +++ b/Content.Shared/Ghost/Roles/SharedGhostRoleSystem.cs @@ -7,6 +7,6 @@ public sealed class GhostRole { public string Name { get; set; } = string.Empty; public string Description { get; set; } = string.Empty; - public EntityUid Id; + public NetEntity Id; } } diff --git a/Content.Shared/Ghost/SharedGhostComponent.cs b/Content.Shared/Ghost/SharedGhostComponent.cs index fae2a9a210a..e69de29bb2d 100644 --- a/Content.Shared/Ghost/SharedGhostComponent.cs +++ b/Content.Shared/Ghost/SharedGhostComponent.cs @@ -1,78 +0,0 @@ -using Robust.Shared.GameStates; -using Robust.Shared.Serialization; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; - -namespace Content.Shared.Ghost -{ - [NetworkedComponent] - [AutoGenerateComponentState] - public abstract partial class SharedGhostComponent : Component - { - // TODO: instead of this funny stuff just give it access and update in system dirtying when needed - [ViewVariables(VVAccess.ReadWrite)] - public bool CanGhostInteract - { - get => _canGhostInteract; - set - { - if (_canGhostInteract == value) return; - _canGhostInteract = value; - Dirty(); - } - } - - [DataField("canInteract"), AutoNetworkedField] - private bool _canGhostInteract; - - /// - /// Changed by - /// - // TODO MIRROR change this to use friend classes when thats merged - [ViewVariables(VVAccess.ReadWrite)] - public bool CanReturnToBody - { - get => _canReturnToBody; - set - { - if (_canReturnToBody == value) return; - _canReturnToBody = value; - Dirty(); - } - } - - /// - /// Ghost color - /// - /// Used to allow admins to change ghost colors. Should be removed if the capability to edit existing sprite colors is ever added back. - [DataField("color"), AutoNetworkedField] - [ViewVariables(VVAccess.ReadWrite)] - public Color color = Color.White; - - [DataField("canReturnToBody"), AutoNetworkedField] - private bool _canReturnToBody; - - [DataField("TimeOfDeath", customTypeSerializer: typeof(TimeOffsetSerializer)), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] - public TimeSpan TimeOfDeath = TimeSpan.Zero; - } - - [Serializable, NetSerializable] - public sealed class GhostComponentState : ComponentState - { - public bool CanReturnToBody { get; } - public bool CanGhostInteract { get; } - - public TimeSpan TimeOfDeath { get; } - - public GhostComponentState( - bool canReturnToBody, - bool canGhostInteract, - TimeSpan timeOfDeath) - { - CanReturnToBody = canReturnToBody; - CanGhostInteract = canGhostInteract; - TimeOfDeath = timeOfDeath; - } - } -} - - diff --git a/Content.Shared/Ghost/SharedGhostSystem.cs b/Content.Shared/Ghost/SharedGhostSystem.cs index 73583e01549..1bd0bbacb9e 100644 --- a/Content.Shared/Ghost/SharedGhostSystem.cs +++ b/Content.Shared/Ghost/SharedGhostSystem.cs @@ -1,4 +1,3 @@ -using Content.Shared.DragDrop; using Content.Shared.Emoting; using Content.Shared.Hands; using Content.Shared.Interaction.Events; @@ -8,28 +7,36 @@ namespace Content.Shared.Ghost { /// - /// System for the . - /// Prevents ghosts from interacting when is false. + /// System for the . + /// Prevents ghosts from interacting when is false. /// public abstract class SharedGhostSystem : EntitySystem { public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnAttempt); - SubscribeLocalEvent(OnAttempt); - SubscribeLocalEvent(OnAttempt); - SubscribeLocalEvent(OnAttempt); - SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); } - private void OnAttempt(EntityUid uid, SharedGhostComponent component, CancellableEntityEventArgs args) + private void OnAttempt(EntityUid uid, GhostComponent component, CancellableEntityEventArgs args) { if (!component.CanGhostInteract) args.Cancel(); } - public void SetCanReturnToBody(EntityUid uid, bool value, SharedGhostComponent? component = null) + public void SetTimeOfDeath(EntityUid uid, TimeSpan value, GhostComponent? component) + { + if (!Resolve(uid, ref component)) + return; + + component.TimeOfDeath = value; + } + + public void SetCanReturnToBody(EntityUid uid, bool value, GhostComponent? component = null) { if (!Resolve(uid, ref component)) return; @@ -37,7 +44,7 @@ public void SetCanReturnToBody(EntityUid uid, bool value, SharedGhostComponent? component.CanReturnToBody = value; } - public void SetCanReturnToBody(SharedGhostComponent component, bool value) + public void SetCanReturnToBody(GhostComponent component, bool value) { component.CanReturnToBody = value; } @@ -59,7 +66,7 @@ public sealed class GhostWarpsRequestEvent : EntityEventArgs [Serializable, NetSerializable] public struct GhostWarp { - public GhostWarp(EntityUid entity, string displayName, bool isWarpPoint) + public GhostWarp(NetEntity entity, string displayName, bool isWarpPoint) { Entity = entity; DisplayName = displayName; @@ -70,11 +77,13 @@ public GhostWarp(EntityUid entity, string displayName, bool isWarpPoint) /// The entity representing the warp point. /// This is passed back to the server in /// - public EntityUid Entity { get; } + public NetEntity Entity { get; } + /// /// The display name to be surfaced in the ghost warps menu /// public string DisplayName { get; } + /// /// Whether this warp represents a warp point or a player /// @@ -105,9 +114,9 @@ public GhostWarpsResponseEvent(List warps) [Serializable, NetSerializable] public sealed class GhostWarpToTargetRequestEvent : EntityEventArgs { - public EntityUid Target { get; } + public NetEntity Target { get; } - public GhostWarpToTargetRequestEvent(EntityUid target) + public GhostWarpToTargetRequestEvent(NetEntity target) { Target = target; } diff --git a/Content.Shared/Glue/GlueComponent.cs b/Content.Shared/Glue/GlueComponent.cs index b9a5ff70adf..4cbbc497379 100644 --- a/Content.Shared/Glue/GlueComponent.cs +++ b/Content.Shared/Glue/GlueComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Glue; [RegisterComponent, NetworkedComponent] [Access(typeof(SharedGlueSystem))] -public sealed class GlueComponent : Component +public sealed partial class GlueComponent : Component { /// /// Noise made when glue applied. diff --git a/Content.Shared/Glue/GluedComponent.cs b/Content.Shared/Glue/GluedComponent.cs index 9d34d9722e8..fd7a52fdb13 100644 --- a/Content.Shared/Glue/GluedComponent.cs +++ b/Content.Shared/Glue/GluedComponent.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Glue; [RegisterComponent] [Access(typeof(SharedGlueSystem))] -public sealed class GluedComponent : Component +public sealed partial class GluedComponent : Component { /// /// Reverts name to before prefix event (essentially removes prefix). diff --git a/Content.Shared/Gravity/FloatingVisualsComponent.cs b/Content.Shared/Gravity/FloatingVisualsComponent.cs index 53b28aef902..7cf6331e9ef 100644 --- a/Content.Shared/Gravity/FloatingVisualsComponent.cs +++ b/Content.Shared/Gravity/FloatingVisualsComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Gravity; [RegisterComponent, NetworkedComponent] [Access(typeof(SharedFloatingVisualizerSystem))] -public sealed class FloatingVisualsComponent : Component +public sealed partial class FloatingVisualsComponent : Component { /// /// How long it takes to go from the bottom of the animation to the top. diff --git a/Content.Shared/Gravity/GravityComponent.cs b/Content.Shared/Gravity/GravityComponent.cs index 0ddc2d275f7..bbe3de69ea0 100644 --- a/Content.Shared/Gravity/GravityComponent.cs +++ b/Content.Shared/Gravity/GravityComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Gravity { [RegisterComponent] [NetworkedComponent] - public sealed class GravityComponent : Component + public sealed partial class GravityComponent : Component { [DataField("gravityShakeSound")] public SoundSpecifier GravityShakeSound { get; set; } = new SoundPathSpecifier("/Audio/Effects/alert.ogg"); diff --git a/Content.Shared/Gravity/GravityShakeComponent.cs b/Content.Shared/Gravity/GravityShakeComponent.cs index 795c155a5e8..5fc1e902304 100644 --- a/Content.Shared/Gravity/GravityShakeComponent.cs +++ b/Content.Shared/Gravity/GravityShakeComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Gravity; /// Indicates this entity is shaking due to gravity changes. /// [RegisterComponent, NetworkedComponent] -public sealed class GravityShakeComponent : Component +public sealed partial class GravityShakeComponent : Component { [ViewVariables(VVAccess.ReadWrite), DataField("shakeTimes")] public int ShakeTimes; diff --git a/Content.Shared/Gravity/SharedGravityGeneratorComponent.cs b/Content.Shared/Gravity/SharedGravityGeneratorComponent.cs index 4b96a42da85..1f78e333f15 100644 --- a/Content.Shared/Gravity/SharedGravityGeneratorComponent.cs +++ b/Content.Shared/Gravity/SharedGravityGeneratorComponent.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Gravity { [NetworkedComponent()] [Virtual] - public class SharedGravityGeneratorComponent : Component + public partial class SharedGravityGeneratorComponent : Component { /// /// A map of the sprites used by the gravity generator given its status. @@ -13,28 +13,28 @@ public class SharedGravityGeneratorComponent : Component [DataField("spriteMap")] [Access(typeof(SharedGravitySystem))] public Dictionary SpriteMap = new(); - + /// /// The sprite used by the core of the gravity generator when the gravity generator is starting up. /// [DataField("coreStartupState")] [ViewVariables(VVAccess.ReadWrite)] public string CoreStartupState = "startup"; - + /// /// The sprite used by the core of the gravity generator when the gravity generator is idle. /// [DataField("coreIdleState")] [ViewVariables(VVAccess.ReadWrite)] public string CoreIdleState = "idle"; - + /// /// The sprite used by the core of the gravity generator when the gravity generator is activating. /// [DataField("coreActivatingState")] [ViewVariables(VVAccess.ReadWrite)] public string CoreActivatingState = "activating"; - + /// /// The sprite used by the core of the gravity generator when the gravity generator is active. /// diff --git a/Content.Shared/Guardian/GuardianCreatorDoAfterEvent.cs b/Content.Shared/Guardian/GuardianCreatorDoAfterEvent.cs index 98de64764d6..8addfa2ed15 100644 --- a/Content.Shared/Guardian/GuardianCreatorDoAfterEvent.cs +++ b/Content.Shared/Guardian/GuardianCreatorDoAfterEvent.cs @@ -4,6 +4,6 @@ namespace Content.Shared.Guardian; [Serializable, NetSerializable] -public sealed class GuardianCreatorDoAfterEvent : SimpleDoAfterEvent +public sealed partial class GuardianCreatorDoAfterEvent : SimpleDoAfterEvent { -} \ No newline at end of file +} diff --git a/Content.Shared/Guardian/GuardianToggleActionEvent.cs b/Content.Shared/Guardian/GuardianToggleActionEvent.cs new file mode 100644 index 00000000000..15328984fee --- /dev/null +++ b/Content.Shared/Guardian/GuardianToggleActionEvent.cs @@ -0,0 +1,7 @@ +using Content.Shared.Actions; + +namespace Content.Shared.Guardian; + +public sealed partial class GuardianToggleActionEvent : InstantActionEvent +{ +} diff --git a/Content.Shared/HUD/HudThemePrototype.cs b/Content.Shared/HUD/HudThemePrototype.cs index 3237d2e7e75..bdf6f056dc9 100644 --- a/Content.Shared/HUD/HudThemePrototype.cs +++ b/Content.Shared/HUD/HudThemePrototype.cs @@ -6,12 +6,12 @@ namespace Content.Shared.HUD public sealed class HudThemePrototype : IPrototype { [DataField("name", required: true)] - public string Name { get; } = string.Empty; + public string Name { get; private set; } = string.Empty; [IdDataField] - public string ID { get; } = string.Empty; + public string ID { get; private set; } = string.Empty; [DataField("path", required: true)] - public string Path { get; } = string.Empty; + public string Path { get; private set; } = string.Empty; } } diff --git a/Content.Shared/Hands/Components/HandsComponent.cs b/Content.Shared/Hands/Components/HandsComponent.cs index c40d29b895d..c1664289ce9 100644 --- a/Content.Shared/Hands/Components/HandsComponent.cs +++ b/Content.Shared/Hands/Components/HandsComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Hands.Components; [RegisterComponent, NetworkedComponent] [Access(typeof(SharedHandsSystem))] -public sealed class HandsComponent : Component +public sealed partial class HandsComponent : Component { /// /// The currently active hand. diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs index 87edd472820..e43f2561a16 100644 --- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs +++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs @@ -8,6 +8,8 @@ namespace Content.Shared.Hands.EntitySystems; public abstract partial class SharedHandsSystem : EntitySystem { + [Dependency] private readonly SharedContainerSystem _container = default!; + private void InitializeDrop() { SubscribeLocalEvent(HandleEntityRemoved); @@ -32,10 +34,10 @@ protected virtual void HandleEntityRemoved(EntityUid uid, HandsComponent hands, /// public bool CanDropHeld(EntityUid uid, Hand hand, bool checkActionBlocker = true) { - if (hand.HeldEntity == null) + if (hand.Container?.ContainedEntity is not {} held) return false; - if (!hand.Container!.CanRemove(hand.HeldEntity.Value, EntityManager)) + if (!_container.CanRemove(held, hand.Container)) return false; if (checkActionBlocker && !_actionBlocker.CanDrop(uid)) @@ -110,7 +112,7 @@ public bool TryDrop(EntityUid uid, Hand hand, EntityCoordinates? targetDropLocat /// /// Attempts to move a held item from a hand into a container that is not another hand, without dropping it on the floor in-between. /// - public bool TryDropIntoContainer(EntityUid uid, EntityUid entity, IContainer targetContainer, bool checkActionBlocker = true, HandsComponent? handsComp = null) + public bool TryDropIntoContainer(EntityUid uid, EntityUid entity, BaseContainer targetContainer, bool checkActionBlocker = true, HandsComponent? handsComp = null) { if (!Resolve(uid, ref handsComp)) return false; @@ -121,7 +123,7 @@ public bool TryDropIntoContainer(EntityUid uid, EntityUid entity, IContainer tar if (!CanDropHeld(uid, hand, checkActionBlocker)) return false; - if (!targetContainer.CanInsert(entity, EntityManager)) + if (!_container.CanInsert(entity, targetContainer)) return false; DoDrop(uid, hand, false, handsComp); diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs index 439ce3d2db4..1cd9ad9d6e6 100644 --- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs +++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs @@ -86,13 +86,13 @@ private void SwapHandsPressed(ICommonSession? session) var newActiveIndex = component.SortedHands.IndexOf(component.ActiveHand.Name) + 1; var nextHand = component.SortedHands[newActiveIndex % component.Hands.Count]; - TrySetActiveHand(component.Owner, nextHand, component); + TrySetActiveHand(session.AttachedEntity.Value, nextHand, component); } - private bool DropPressed(ICommonSession? session, EntityCoordinates coords, EntityUid uid) + private bool DropPressed(ICommonSession? session, EntityCoordinates coords, EntityUid netEntity) { if (TryComp(session?.AttachedEntity, out HandsComponent? hands) && hands.ActiveHand != null) - TryDrop(session.AttachedEntity!.Value, hands.ActiveHand, coords, handsComp: hands); + TryDrop(session.AttachedEntity.Value, hands.ActiveHand, coords, handsComp: hands); // always send to server. return false; diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Pickup.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Pickup.cs index eaa10ed077f..e62723df06e 100644 --- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Pickup.cs +++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Pickup.cs @@ -181,7 +181,7 @@ public bool CanPickupToHand(EntityUid uid, EntityUid entity, Hand hand, bool che return false; // check can insert (including raising attempt events). - return handContainer.CanInsert(entity, EntityManager); + return _containerSystem.CanInsert(entity, handContainer); } /// diff --git a/Content.Shared/Hands/HandEvents.cs b/Content.Shared/Hands/HandEvents.cs index 5541c2e439d..29242b4a7ee 100644 --- a/Content.Shared/Hands/HandEvents.cs +++ b/Content.Shared/Hands/HandEvents.cs @@ -117,12 +117,12 @@ public RequestSetHandEvent(string handName) [Serializable, NetSerializable] public sealed class PickupAnimationEvent : EntityEventArgs { - public EntityUid ItemUid { get; } - public EntityCoordinates InitialPosition { get; } + public NetEntity ItemUid { get; } + public NetCoordinates InitialPosition { get; } public Vector2 FinalPosition { get; } public Angle InitialAngle { get; } - public PickupAnimationEvent(EntityUid itemUid, EntityCoordinates initialPosition, + public PickupAnimationEvent(NetEntity itemUid, NetCoordinates initialPosition, Vector2 finalPosition, Angle initialAngle) { ItemUid = itemUid; @@ -206,21 +206,33 @@ public UnequippedHandEvent(EntityUid user, EntityUid unequipped, Hand hand) } } + /// + /// Raised directed on an entity when it is equipped into hands. + /// public sealed class GotEquippedHandEvent : EquippedHandEvent { public GotEquippedHandEvent(EntityUid user, EntityUid unequipped, Hand hand) : base(user, unequipped, hand) { } } + /// + /// Raised directed on an entity when it is unequipped from hands. + /// public sealed class GotUnequippedHandEvent : UnequippedHandEvent { public GotUnequippedHandEvent(EntityUid user, EntityUid unequipped, Hand hand) : base(user, unequipped, hand) { } } + /// + /// Raised directed on a user when it picks something up. + /// public sealed class DidEquipHandEvent : EquippedHandEvent { public DidEquipHandEvent(EntityUid user, EntityUid unequipped, Hand hand) : base(user, unequipped, hand) { } } + /// + /// Raised directed on a user when something leaves its hands. + /// public sealed class DidUnequipHandEvent : UnequippedHandEvent { public DidUnequipHandEvent(EntityUid user, EntityUid unequipped, Hand hand) : base(user, unequipped, hand) { } diff --git a/Content.Shared/HotPotato/ActiveHotPotatoComponent.cs b/Content.Shared/HotPotato/ActiveHotPotatoComponent.cs index 3a2a3437834..9bcd218335c 100644 --- a/Content.Shared/HotPotato/ActiveHotPotatoComponent.cs +++ b/Content.Shared/HotPotato/ActiveHotPotatoComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.HotPotato; /// [RegisterComponent, NetworkedComponent] [Access(typeof(SharedHotPotatoSystem))] -public sealed class ActiveHotPotatoComponent : Component +public sealed partial class ActiveHotPotatoComponent : Component { /// /// Hot potato effect spawn cooldown in seconds diff --git a/Content.Shared/Humanoid/HumanoidAppearanceComponent.cs b/Content.Shared/Humanoid/HumanoidAppearanceComponent.cs index 301b34e635f..82d5750aa5c 100644 --- a/Content.Shared/Humanoid/HumanoidAppearanceComponent.cs +++ b/Content.Shared/Humanoid/HumanoidAppearanceComponent.cs @@ -11,7 +11,7 @@ namespace Content.Shared.Humanoid; [NetworkedComponent, RegisterComponent] -public sealed class HumanoidAppearanceComponent : Component +public sealed partial class HumanoidAppearanceComponent : Component { [DataField("markingSet")] public MarkingSet MarkingSet = new(); @@ -50,7 +50,7 @@ public sealed class HumanoidAppearanceComponent : Component /// The initial profile and base layers to apply to this humanoid. /// [DataField("initial", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string? Initial { get; } + public string? Initial { get; private set; } /// /// Skin color of this humanoid. @@ -85,7 +85,7 @@ public sealed class HumanoidAppearanceComponent : Component } [Serializable, NetSerializable] -public sealed class HumanoidAppearanceState : ComponentState +public sealed partial class HumanoidAppearanceState : ComponentState { public readonly MarkingSet Markings; public readonly HashSet PermanentlyHidden; @@ -124,7 +124,7 @@ public HumanoidAppearanceState( [DataDefinition] [Serializable, NetSerializable] - public readonly struct CustomBaseLayerInfo + public readonly partial struct CustomBaseLayerInfo { public CustomBaseLayerInfo(string? id, Color? color = null) { diff --git a/Content.Shared/Humanoid/HumanoidCharacterAppearance.cs b/Content.Shared/Humanoid/HumanoidCharacterAppearance.cs index 134f71fc277..e50e55025cf 100644 --- a/Content.Shared/Humanoid/HumanoidCharacterAppearance.cs +++ b/Content.Shared/Humanoid/HumanoidCharacterAppearance.cs @@ -9,7 +9,7 @@ namespace Content.Shared.Humanoid { [DataDefinition] [Serializable, NetSerializable] - public sealed class HumanoidCharacterAppearance : ICharacterAppearance + public sealed partial class HumanoidCharacterAppearance : ICharacterAppearance { public HumanoidCharacterAppearance(string hairStyleId, Color hairColor, @@ -29,25 +29,25 @@ public HumanoidCharacterAppearance(string hairStyleId, } [DataField("hair")] - public string HairStyleId { get; } + public string HairStyleId { get; private set; } [DataField("hairColor")] - public Color HairColor { get; } + public Color HairColor { get; private set; } [DataField("facialHair")] - public string FacialHairStyleId { get; } + public string FacialHairStyleId { get; private set; } [DataField("facialHairColor")] - public Color FacialHairColor { get; } + public Color FacialHairColor { get; private set; } [DataField("eyeColor")] - public Color EyeColor { get; } + public Color EyeColor { get; private set; } [DataField("skinColor")] - public Color SkinColor { get; } + public Color SkinColor { get; private set; } [DataField("markings")] - public List Markings { get; } + public List Markings { get; private set; } public HumanoidCharacterAppearance WithHairStyleName(string newName) { @@ -163,9 +163,9 @@ public static HumanoidCharacterAppearance Random(string species, Sex sex) break; case HumanoidSkinColor.Hues: case HumanoidSkinColor.TintedHues: - var rbyte = random.Next(0, 255); - var gbyte = random.Next(0, 255); - var bbyte = random.Next(0, 255); + var rbyte = random.NextByte(); + var gbyte = random.NextByte(); + var bbyte = random.NextByte(); newSkinColor = new Color(rbyte, gbyte, bbyte); break; } diff --git a/Content.Shared/Humanoid/Markings/ColoringTypes/CategoryColoring.cs b/Content.Shared/Humanoid/Markings/ColoringTypes/CategoryColoring.cs index 1ed3e531ff5..1f71b9a4618 100644 --- a/Content.Shared/Humanoid/Markings/ColoringTypes/CategoryColoring.cs +++ b/Content.Shared/Humanoid/Markings/ColoringTypes/CategoryColoring.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Humanoid.Markings; /// /// Colors marking in color of first defined marking from specified category (in e.x. from Hair category) /// -public sealed class CategoryColoring : LayerColoringType +public sealed partial class CategoryColoring : LayerColoringType { [DataField("category", required: true)] public MarkingCategories Category; diff --git a/Content.Shared/Humanoid/Markings/ColoringTypes/EyeColoring.cs b/Content.Shared/Humanoid/Markings/ColoringTypes/EyeColoring.cs index 0c7865418b3..0b18653a4c1 100644 --- a/Content.Shared/Humanoid/Markings/ColoringTypes/EyeColoring.cs +++ b/Content.Shared/Humanoid/Markings/ColoringTypes/EyeColoring.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Humanoid.Markings; /// /// Colors layer in an eye color /// -public sealed class EyeColoring : LayerColoringType +public sealed partial class EyeColoring : LayerColoringType { public override Color? GetCleanColor(Color? skin, Color? eyes, MarkingSet markingSet) { diff --git a/Content.Shared/Humanoid/Markings/ColoringTypes/SimpleColoring.cs b/Content.Shared/Humanoid/Markings/ColoringTypes/SimpleColoring.cs index 2ee68b88c3e..9051c26dd7e 100644 --- a/Content.Shared/Humanoid/Markings/ColoringTypes/SimpleColoring.cs +++ b/Content.Shared/Humanoid/Markings/ColoringTypes/SimpleColoring.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Humanoid.Markings; /// /// Colors layer in a specified color /// -public sealed class SimpleColoring : LayerColoringType +public sealed partial class SimpleColoring : LayerColoringType { [DataField("color", required: true)] public Color Color = Color.White; diff --git a/Content.Shared/Humanoid/Markings/ColoringTypes/SkinColoring.cs b/Content.Shared/Humanoid/Markings/ColoringTypes/SkinColoring.cs index 49cdb7985cd..79a09a39cef 100644 --- a/Content.Shared/Humanoid/Markings/ColoringTypes/SkinColoring.cs +++ b/Content.Shared/Humanoid/Markings/ColoringTypes/SkinColoring.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Humanoid.Markings; /// /// Colors layer in a skin color /// -public sealed class SkinColoring : LayerColoringType +public sealed partial class SkinColoring : LayerColoringType { public override Color? GetCleanColor(Color? skin, Color? eyes, MarkingSet markingSet) { diff --git a/Content.Shared/Humanoid/Markings/ColoringTypes/TattooColoring.cs b/Content.Shared/Humanoid/Markings/ColoringTypes/TattooColoring.cs index 225ad67da3d..51962cef3bf 100644 --- a/Content.Shared/Humanoid/Markings/ColoringTypes/TattooColoring.cs +++ b/Content.Shared/Humanoid/Markings/ColoringTypes/TattooColoring.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Humanoid.Markings; /// /// Colors layer in skin color but much darker. /// -public sealed class TattooColoring : LayerColoringType +public sealed partial class TattooColoring : LayerColoringType { public override Color? GetCleanColor(Color? skin, Color? eyes, MarkingSet markingSet) { @@ -11,7 +11,7 @@ public sealed class TattooColoring : LayerColoringType { return null; } - + var newColor = Color.ToHsv(skin.Value); newColor.Z = .40f; diff --git a/Content.Shared/Humanoid/Markings/Marking.cs b/Content.Shared/Humanoid/Markings/Marking.cs index 1b97939a929..767d4a6482d 100644 --- a/Content.Shared/Humanoid/Markings/Marking.cs +++ b/Content.Shared/Humanoid/Markings/Marking.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Humanoid.Markings { [DataDefinition] [Serializable, NetSerializable] - public sealed class Marking : IEquatable, IComparable, IComparable + public sealed partial class Marking : IEquatable, IComparable, IComparable { [DataField("markingColor")] private List _markingColors = new(); @@ -50,7 +50,7 @@ public Marking(Marking other) /// ID of the marking prototype. /// [DataField("markingId", required: true)] - public string MarkingId { get; } = default!; + public string MarkingId { get; private set; } = default!; /// /// All colors currently on this marking. diff --git a/Content.Shared/Humanoid/Markings/MarkingColoring.cs b/Content.Shared/Humanoid/Markings/MarkingColoring.cs index d90fdec0c7a..a13481debfc 100644 --- a/Content.Shared/Humanoid/Markings/MarkingColoring.cs +++ b/Content.Shared/Humanoid/Markings/MarkingColoring.cs @@ -3,10 +3,10 @@ namespace Content.Shared.Humanoid.Markings; /// -/// Default colors for marking +/// Default colors for marking /// [DataDefinition] -public sealed class MarkingColors +public sealed partial class MarkingColors { /// /// Coloring properties that will be used on any unspecified layer @@ -65,7 +65,7 @@ MarkingSet markingSet colors.Add(defaultColor); continue; } - + // All specified layers must be colored separately, all unspecified must depend on default coloring if (prototype.Coloring.Layers.TryGetValue(name, out var layerColoring)) { @@ -86,7 +86,7 @@ MarkingSet markingSet /// A class that defines coloring type and fallback for markings /// [DataDefinition] -public sealed class LayerColoringDefinition +public sealed partial class LayerColoringDefinition { [DataField("type")] public LayerColoringType Type = new SkinColoring(); @@ -96,7 +96,7 @@ public sealed class LayerColoringDefinition /// [DataField("fallbackTypes")] public List FallbackTypes = new() {}; - + /// /// Color that will be used if coloring type and fallback type will return nil /// @@ -122,13 +122,13 @@ public Color GetColor(Color? skin, Color? eyes, MarkingSet markingSet) /// An abstract class for coloring types /// [ImplicitDataDefinitionForInheritors] -public abstract class LayerColoringType +public abstract partial class LayerColoringType { /// /// Makes output color negative /// [DataField("negative")] - public bool Negative { get; } = false; + public bool Negative { get; private set; } = false; public abstract Color? GetCleanColor(Color? skin, Color? eyes, MarkingSet markingSet); public Color? GetColor(Color? skin, Color? eyes, MarkingSet markingSet) { @@ -144,4 +144,4 @@ public abstract class LayerColoringType } return color; } -} \ No newline at end of file +} diff --git a/Content.Shared/Humanoid/Markings/MarkingPoints.cs b/Content.Shared/Humanoid/Markings/MarkingPoints.cs index ef9c9f723d3..41009f95c0d 100644 --- a/Content.Shared/Humanoid/Markings/MarkingPoints.cs +++ b/Content.Shared/Humanoid/Markings/MarkingPoints.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Humanoid.Markings; [DataDefinition] [Serializable, NetSerializable] -public sealed class MarkingPoints +public sealed partial class MarkingPoints { [DataField("points", required: true)] public int Points = 0; @@ -47,5 +47,5 @@ public sealed class MarkingPointsPrototype : IPrototype [DataField("onlyWhitelisted")] public bool OnlyWhitelisted; [DataField("points", required: true)] - public Dictionary Points { get; } = default!; + public Dictionary Points { get; private set; } = default!; } diff --git a/Content.Shared/Humanoid/Markings/MarkingPrototype.cs b/Content.Shared/Humanoid/Markings/MarkingPrototype.cs index 3ceb3197616..14eb4e0d75c 100644 --- a/Content.Shared/Humanoid/Markings/MarkingPrototype.cs +++ b/Content.Shared/Humanoid/Markings/MarkingPrototype.cs @@ -7,27 +7,27 @@ namespace Content.Shared.Humanoid.Markings public sealed class MarkingPrototype : IPrototype { [IdDataField] - public string ID { get; } = "uwu"; + public string ID { get; private set; } = "uwu"; public string Name { get; private set; } = default!; [DataField("bodyPart", required: true)] - public HumanoidVisualLayers BodyPart { get; } = default!; + public HumanoidVisualLayers BodyPart { get; private set; } = default!; [DataField("markingCategory", required: true)] - public MarkingCategories MarkingCategory { get; } = default!; - + public MarkingCategories MarkingCategory { get; private set; } = default!; + [DataField("speciesRestriction")] - public List? SpeciesRestrictions { get; } + public List? SpeciesRestrictions { get; private set; } [DataField("followSkinColor")] - public bool FollowSkinColor { get; } = false; + public bool FollowSkinColor { get; private set; } = false; [DataField("forcedColoring")] - public bool ForcedColoring { get; } = false; + public bool ForcedColoring { get; private set; } = false; [DataField("coloring")] - public MarkingColors Coloring { get; } = new(); + public MarkingColors Coloring { get; private set; } = new(); [DataField("sprites", required: true)] public List Sprites { get; private set; } = default!; diff --git a/Content.Shared/Humanoid/Markings/MarkingsComponent.cs b/Content.Shared/Humanoid/Markings/MarkingsComponent.cs index 2bbaa5dc514..b22f25cfcd5 100644 --- a/Content.Shared/Humanoid/Markings/MarkingsComponent.cs +++ b/Content.Shared/Humanoid/Markings/MarkingsComponent.cs @@ -1,7 +1,7 @@ namespace Content.Shared.Humanoid.Markings { [RegisterComponent] - public sealed class MarkingsComponent : Component + public sealed partial class MarkingsComponent : Component { public Dictionary> ActiveMarkings = new(); diff --git a/Content.Shared/Humanoid/Markings/MarkingsSet.cs b/Content.Shared/Humanoid/Markings/MarkingsSet.cs index 393ca6e135b..3fc6942600a 100644 --- a/Content.Shared/Humanoid/Markings/MarkingsSet.cs +++ b/Content.Shared/Humanoid/Markings/MarkingsSet.cs @@ -27,7 +27,7 @@ namespace Content.Shared.Humanoid.Markings; /// [DataDefinition] [Serializable, NetSerializable] -public sealed class MarkingSet +public sealed partial class MarkingSet { /// /// Every single marking in this set. diff --git a/Content.Shared/Humanoid/Prototypes/HumanoidProfilePrototype.cs b/Content.Shared/Humanoid/Prototypes/HumanoidProfilePrototype.cs index a70042e22ff..5752e57c93b 100644 --- a/Content.Shared/Humanoid/Prototypes/HumanoidProfilePrototype.cs +++ b/Content.Shared/Humanoid/Prototypes/HumanoidProfilePrototype.cs @@ -8,11 +8,11 @@ namespace Content.Shared.Humanoid.Prototypes; public sealed class HumanoidProfilePrototype : IPrototype { [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [DataField("customBaseLayers")] public Dictionary CustomBaseLayers = new(); [DataField("profile")] - public HumanoidCharacterProfile Profile { get; } = new(); + public HumanoidCharacterProfile Profile { get; private set; } = new(); } diff --git a/Content.Shared/Humanoid/Prototypes/HumanoidSpritePrototypes.cs b/Content.Shared/Humanoid/Prototypes/HumanoidSpritePrototypes.cs index d122a557bc2..b185a6a502c 100644 --- a/Content.Shared/Humanoid/Prototypes/HumanoidSpritePrototypes.cs +++ b/Content.Shared/Humanoid/Prototypes/HumanoidSpritePrototypes.cs @@ -12,7 +12,7 @@ namespace Content.Shared.Humanoid.Prototypes; public sealed class HumanoidSpeciesBaseSpritesPrototype : IPrototype { [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// /// Sprites that this species will use on the given humanoid @@ -33,7 +33,7 @@ public sealed class HumanoidSpeciesBaseSpritesPrototype : IPrototype public sealed class HumanoidSpeciesSpriteLayer : IPrototype { [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// /// The base sprite for this sprite layer. This is what /// will replace the empty layer tagged by the enum @@ -43,7 +43,7 @@ public sealed class HumanoidSpeciesSpriteLayer : IPrototype /// layer will be invisible until otherwise set. /// [DataField("baseSprite")] - public SpriteSpecifier? BaseSprite { get; } + public SpriteSpecifier? BaseSprite { get; private set; } /// /// The alpha of this layer. Ensures that @@ -51,20 +51,20 @@ public sealed class HumanoidSpeciesSpriteLayer : IPrototype /// of alpha. /// [DataField("layerAlpha")] - public float LayerAlpha { get; } = 1.0f; + public float LayerAlpha { get; private set; } = 1.0f; /// /// If this sprite layer should allow markings or not. /// [DataField("allowsMarkings")] - public bool AllowsMarkings { get; } = true; + public bool AllowsMarkings { get; private set; } = true; /// /// If this layer should always match the /// skin tone in a character profile. /// [DataField("matchSkin")] - public bool MatchSkin { get; } = true; + public bool MatchSkin { get; private set; } = true; /// /// If any markings that go on this layer should @@ -72,5 +72,5 @@ public sealed class HumanoidSpeciesSpriteLayer : IPrototype /// alpha. /// [DataField("markingsMatchSkin")] - public bool MarkingsMatchSkin { get; } + public bool MarkingsMatchSkin { get; private set; } } diff --git a/Content.Shared/Humanoid/Prototypes/RandomHumanoidSettingsPrototype.cs b/Content.Shared/Humanoid/Prototypes/RandomHumanoidSettingsPrototype.cs index 367ff107485..907adc42dc2 100644 --- a/Content.Shared/Humanoid/Prototypes/RandomHumanoidSettingsPrototype.cs +++ b/Content.Shared/Humanoid/Prototypes/RandomHumanoidSettingsPrototype.cs @@ -21,17 +21,17 @@ public sealed class RandomHumanoidSettingsPrototype : IPrototype, IInheritingPro /// Whether the humanoid's name should take from the randomized profile or not. /// [DataField("randomizeName")] - public bool RandomizeName { get; } = true; + public bool RandomizeName { get; private set; } = true; /// /// Species that will be ignored by the randomizer. /// [DataField("speciesBlacklist")] - public HashSet SpeciesBlacklist { get; } = new(); + public HashSet SpeciesBlacklist { get; private set; } = new(); /// /// Extra components to add to this entity. /// [DataField("components")] - public ComponentRegistry? Components { get; } + public ComponentRegistry? Components { get; private set; } } diff --git a/Content.Shared/Humanoid/Prototypes/SpeciesPrototype.cs b/Content.Shared/Humanoid/Prototypes/SpeciesPrototype.cs index 024fb0b796d..4a3de58b17d 100644 --- a/Content.Shared/Humanoid/Prototypes/SpeciesPrototype.cs +++ b/Content.Shared/Humanoid/Prototypes/SpeciesPrototype.cs @@ -10,13 +10,13 @@ public sealed class SpeciesPrototype : IPrototype /// Prototype ID of the species. /// [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// /// User visible name of the species. /// [DataField("name", required: true)] - public string Name { get; } = default!; + public string Name { get; private set; } = default!; /// /// Descriptor. Unused...? This is intended @@ -24,13 +24,13 @@ public sealed class SpeciesPrototype : IPrototype /// (i.e., young human person, young lizard person, etc.) /// [DataField("descriptor")] - public string Descriptor { get; } = "humanoid"; + public string Descriptor { get; private set; } = "humanoid"; /// /// Whether the species is available "at round start" (In the character editor) /// [DataField("roundStart", required: true)] - public bool RoundStart { get; } = false; + public bool RoundStart { get; private set; } = false; // The below two are to avoid fetching information about the species from the entity // prototype. @@ -42,59 +42,59 @@ public sealed class SpeciesPrototype : IPrototype // sprite accessories. [DataField("sprites")] - public string SpriteSet { get; } = default!; + public string SpriteSet { get; private set; } = default!; /// /// Default skin tone for this species. This applies for non-human skin tones. /// [DataField("defaultSkinTone")] - public Color DefaultSkinTone { get; } = Color.White; + public Color DefaultSkinTone { get; private set; } = Color.White; /// /// Default human skin tone for this species. This applies for human skin tones. /// See for the valid range of skin tones. /// [DataField("defaultHumanSkinTone")] - public int DefaultHumanSkinTone { get; } = 20; + public int DefaultHumanSkinTone { get; private set; } = 20; /// /// The limit of body markings that you can place on this species. /// [DataField("markingLimits")] - public string MarkingPoints { get; } = default!; + public string MarkingPoints { get; private set; } = default!; /// /// Humanoid species variant used by this entity. /// [DataField("prototype", required: true, customTypeSerializer:typeof(PrototypeIdSerializer))] - public string Prototype { get; } = default!; + public string Prototype { get; private set; } = default!; /// /// Prototype used by the species for the dress-up doll in various menus. /// [DataField("dollPrototype", required: true, customTypeSerializer:typeof(PrototypeIdSerializer))] - public string DollPrototype { get; } = default!; + public string DollPrototype { get; private set; } = default!; /// /// Method of skin coloration used by the species. /// [DataField("skinColoration", required: true)] - public HumanoidSkinColor SkinColoration { get; } + public HumanoidSkinColor SkinColoration { get; private set; } [DataField("maleFirstNames")] - public string MaleFirstNames { get; } = "names_first_male"; + public string MaleFirstNames { get; private set; } = "names_first_male"; [DataField("femaleFirstNames")] - public string FemaleFirstNames { get; } = "names_first_female"; + public string FemaleFirstNames { get; private set; } = "names_first_female"; [DataField("lastNames")] - public string LastNames { get; } = "names_last"; + public string LastNames { get; private set; } = "names_last"; [DataField("naming")] - public SpeciesNaming Naming { get; } = SpeciesNaming.FirstLast; + public SpeciesNaming Naming { get; private set; } = SpeciesNaming.FirstLast; [DataField("sexes")] - public List Sexes { get; } = new() { Sex.Male, Sex.Female }; + public List Sexes { get; private set; } = new() { Sex.Male, Sex.Female }; /// /// Characters younger than this are too young to be hired by Nanotrasen. diff --git a/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs b/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs index 15adefbd89c..a4e3393c7e7 100644 --- a/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs +++ b/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs @@ -36,7 +36,7 @@ public override void Initialize() private void OnInit(EntityUid uid, HumanoidAppearanceComponent humanoid, ComponentInit args) { - if (string.IsNullOrEmpty(humanoid.Species) || _netManager.IsClient && !uid.IsClientSide()) + if (string.IsNullOrEmpty(humanoid.Species) || _netManager.IsClient && !IsClientSide(uid)) { return; } diff --git a/Content.Shared/Humanoid/SkinColor.cs b/Content.Shared/Humanoid/SkinColor.cs index 44f69bf6aad..b38b426a19b 100644 --- a/Content.Shared/Humanoid/SkinColor.cs +++ b/Content.Shared/Humanoid/SkinColor.cs @@ -118,7 +118,7 @@ public static bool VerifyHumanSkinTone(Color color) public static Color TintedHues(Color color) { var newColor = Color.ToHsv(color); - newColor.Y = .1f; + newColor.Y *= 0.1f; return Color.FromHsv(newColor); } diff --git a/Content.Shared/IconSmoothing/SmoothEdgeComponent.cs b/Content.Shared/IconSmoothing/SmoothEdgeComponent.cs index ccde4c9c988..a3dfd8d4e06 100644 --- a/Content.Shared/IconSmoothing/SmoothEdgeComponent.cs +++ b/Content.Shared/IconSmoothing/SmoothEdgeComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.IconSmoothing; /// Applies an edge sprite to for non-smoothed directions. /// [RegisterComponent, NetworkedComponent] -public sealed class SmoothEdgeComponent : Component +public sealed partial class SmoothEdgeComponent : Component { } diff --git a/Content.Shared/IdentityManagement/Components/IdentityBlockerComponent.cs b/Content.Shared/IdentityManagement/Components/IdentityBlockerComponent.cs index 0f655562796..4dc9e97b016 100644 --- a/Content.Shared/IdentityManagement/Components/IdentityBlockerComponent.cs +++ b/Content.Shared/IdentityManagement/Components/IdentityBlockerComponent.cs @@ -4,7 +4,7 @@ namespace Content.Shared.IdentityManagement.Components; [RegisterComponent, NetworkedComponent] -public sealed class IdentityBlockerComponent : Component +public sealed partial class IdentityBlockerComponent : Component { public bool Enabled = true; } diff --git a/Content.Shared/IdentityManagement/Components/IdentityComponent.cs b/Content.Shared/IdentityManagement/Components/IdentityComponent.cs index 8c7a357cb5a..7bbdeffe907 100644 --- a/Content.Shared/IdentityManagement/Components/IdentityComponent.cs +++ b/Content.Shared/IdentityManagement/Components/IdentityComponent.cs @@ -1,4 +1,5 @@ -using Robust.Shared.Containers; +using Content.Shared.Humanoid.Prototypes; +using Robust.Shared.Containers; using Robust.Shared.Enums; namespace Content.Shared.IdentityManagement.Components; @@ -11,7 +12,7 @@ namespace Content.Shared.IdentityManagement.Components; /// This is a and not just a datum entity because we do sort of care that it gets deleted and sent with the user. /// [RegisterComponent] -public sealed class IdentityComponent : Component +public sealed partial class IdentityComponent : Component { [ViewVariables] public ContainerSlot IdentityEntitySlot = default!; @@ -24,18 +25,20 @@ public sealed class IdentityComponent : Component public sealed class IdentityRepresentation { public string TrueName; - public int TrueAge; public Gender TrueGender; + public string AgeString; + public string? PresumedName; public string? PresumedJob; - public IdentityRepresentation(string trueName, int trueAge, Gender trueGender, string? presumedName=null, string? presumedJob=null) + public IdentityRepresentation(string trueName, Gender trueGender, string ageString, string? presumedName=null, string? presumedJob=null) { TrueName = trueName; - TrueAge = trueAge; TrueGender = trueGender; + AgeString = ageString; + PresumedJob = presumedJob; PresumedName = presumedName; } @@ -54,13 +57,6 @@ public string ToStringKnown(bool trueName) /// public string ToStringUnknown() { - var ageString = TrueAge switch - { - <= 30 => Loc.GetString("identity-age-young"), - > 30 and <= 60 => Loc.GetString("identity-age-middle-aged"), - > 60 => Loc.GetString("identity-age-old") - }; - var genderString = TrueGender switch { Gender.Female => Loc.GetString("identity-gender-feminine"), @@ -70,7 +66,7 @@ public string ToStringUnknown() // i.e. 'young assistant man' or 'old cargo technician person' or 'middle-aged captain' return PresumedJob is null - ? $"{ageString} {genderString}" - : $"{ageString} {PresumedJob} {genderString}"; + ? $"{AgeString} {genderString}" + : $"{AgeString} {PresumedJob} {genderString}"; } } diff --git a/Content.Shared/IdentityManagement/Identity.cs b/Content.Shared/IdentityManagement/Identity.cs index f3f3f1f1211..20220e0326a 100644 --- a/Content.Shared/IdentityManagement/Identity.cs +++ b/Content.Shared/IdentityManagement/Identity.cs @@ -54,7 +54,7 @@ public static bool CanSeeThroughIdentity(EntityUid uid, EntityUid viewer, IEntit { // Would check for uid == viewer here but I think it's better for you to see yourself // how everyone else will see you, otherwise people will probably get confused and think they aren't disguised - return ent.HasComponent(viewer); + return ent.HasComponent(viewer); } } diff --git a/Content.Shared/Implants/Components/ImplantedComponent.cs b/Content.Shared/Implants/Components/ImplantedComponent.cs index beaa9a90722..727213907ac 100644 --- a/Content.Shared/Implants/Components/ImplantedComponent.cs +++ b/Content.Shared/Implants/Components/ImplantedComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Implants.Components; /// Used in instances where mob info needs to be passed to the implant such as MobState triggers /// [RegisterComponent, NetworkedComponent] -public sealed class ImplantedComponent : Component +public sealed partial class ImplantedComponent : Component { public Container ImplantContainer = default!; } diff --git a/Content.Shared/Implants/Components/ImplanterComponent.cs b/Content.Shared/Implants/Components/ImplanterComponent.cs index 8cb7ae9091e..e681cab0473 100644 --- a/Content.Shared/Implants/Components/ImplanterComponent.cs +++ b/Content.Shared/Implants/Components/ImplanterComponent.cs @@ -13,7 +13,7 @@ namespace Content.Shared.Implants.Components; /// //TODO: Rework drawing to work with implant cases when surgery is in [RegisterComponent, NetworkedComponent] -public sealed class ImplanterComponent : Component +public sealed partial class ImplanterComponent : Component { public const string ImplanterSlotId = "implanter_slot"; public const string ImplantSlotId = "implant"; diff --git a/Content.Shared/Implants/Components/RattleComponent.cs b/Content.Shared/Implants/Components/RattleComponent.cs index b107915810d..e8b98e462f9 100644 --- a/Content.Shared/Implants/Components/RattleComponent.cs +++ b/Content.Shared/Implants/Components/RattleComponent.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Implants.Components; [RegisterComponent, NetworkedComponent] -public sealed class RattleComponent : Component +public sealed partial class RattleComponent : Component { // The radio channel the message will be sent to [DataField("radioChannel", customTypeSerializer: typeof(PrototypeIdSerializer))] diff --git a/Content.Shared/Implants/Components/SubdermalImplantComponent.cs b/Content.Shared/Implants/Components/SubdermalImplantComponent.cs index eb8ac9808ef..7f7484f51cc 100644 --- a/Content.Shared/Implants/Components/SubdermalImplantComponent.cs +++ b/Content.Shared/Implants/Components/SubdermalImplantComponent.cs @@ -11,7 +11,7 @@ namespace Content.Shared.Implants.Components; /// They're added and removed with implanters /// [RegisterComponent, NetworkedComponent] -public sealed class SubdermalImplantComponent : Component +public sealed partial class SubdermalImplantComponent : Component { /// /// Used where you want the implant to grant the owner an instant action. @@ -37,12 +37,12 @@ public sealed class SubdermalImplantComponent : Component /// /// Used for opening the storage implant via action. /// -public sealed class OpenStorageImplantEvent : InstantActionEvent +public sealed partial class OpenStorageImplantEvent : InstantActionEvent { } -public sealed class UseFreedomImplantEvent : InstantActionEvent +public sealed partial class UseFreedomImplantEvent : InstantActionEvent { } @@ -50,7 +50,7 @@ public sealed class UseFreedomImplantEvent : InstantActionEvent /// /// Used for triggering trigger events on the implant via action /// -public sealed class ActivateImplantEvent : InstantActionEvent +public sealed partial class ActivateImplantEvent : InstantActionEvent { } @@ -58,12 +58,12 @@ public sealed class ActivateImplantEvent : InstantActionEvent /// /// Used for opening the uplink implant via action. /// -public sealed class OpenUplinkImplantEvent : InstantActionEvent +public sealed partial class OpenUplinkImplantEvent : InstantActionEvent { } -public sealed class UseDnaScramblerImplantEvent : InstantActionEvent +public sealed partial class UseDnaScramblerImplantEvent : InstantActionEvent { } diff --git a/Content.Shared/Implants/Components/TriggerImplantActionComponent.cs b/Content.Shared/Implants/Components/TriggerImplantActionComponent.cs index 16b4c205fb5..0f9856f2a4e 100644 --- a/Content.Shared/Implants/Components/TriggerImplantActionComponent.cs +++ b/Content.Shared/Implants/Components/TriggerImplantActionComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Implants.Components; /// Triggers implants when the action is pressed /// [RegisterComponent, NetworkedComponent] -public sealed class TriggerImplantActionComponent : Component +public sealed partial class TriggerImplantActionComponent : Component { } diff --git a/Content.Shared/Implants/SharedImplanterSystem.cs b/Content.Shared/Implants/SharedImplanterSystem.cs index ce671894185..1cf9f446630 100644 --- a/Content.Shared/Implants/SharedImplanterSystem.cs +++ b/Content.Shared/Implants/SharedImplanterSystem.cs @@ -111,7 +111,7 @@ public void Draw(EntityUid implanter, EntityUid user, EntityUid target, Implante continue; //Don't remove a permanent implant and look for the next that can be drawn - if (!implantContainer.CanRemove(implant)) + if (!_container.CanRemove(implant, implantContainer)) { var implantName = Identity.Entity(implant, EntityManager); var targetName = Identity.Entity(target, EntityManager); @@ -178,12 +178,12 @@ private void ChangeOnImplantVisualizer(EntityUid uid, ImplanterComponent compone } [Serializable, NetSerializable] -public sealed class ImplantEvent : SimpleDoAfterEvent +public sealed partial class ImplantEvent : SimpleDoAfterEvent { } [Serializable, NetSerializable] -public sealed class DrawEvent : SimpleDoAfterEvent +public sealed partial class DrawEvent : SimpleDoAfterEvent { } diff --git a/Content.Shared/Implants/SharedSubdermalImplantSystem.cs b/Content.Shared/Implants/SharedSubdermalImplantSystem.cs index 2a412735122..6d43c3dea11 100644 --- a/Content.Shared/Implants/SharedSubdermalImplantSystem.cs +++ b/Content.Shared/Implants/SharedSubdermalImplantSystem.cs @@ -1,19 +1,18 @@ using System.Linq; using Content.Shared.Actions; -using Content.Shared.Actions.ActionTypes; using Content.Shared.Implants.Components; using Content.Shared.Interaction; using Content.Shared.Interaction.Events; using Content.Shared.Mobs; using Content.Shared.Tag; using Robust.Shared.Containers; -using Robust.Shared.Prototypes; +using Robust.Shared.Network; namespace Content.Shared.Implants; public abstract class SharedSubdermalImplantSystem : EntitySystem { - [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly INetManager _net = default!; [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; [Dependency] private readonly SharedContainerSystem _container = default!; [Dependency] private readonly TagSystem _tag = default!; @@ -33,12 +32,12 @@ public override void Initialize() private void OnInsert(EntityUid uid, SubdermalImplantComponent component, EntGotInsertedIntoContainerMessage args) { - if (component.ImplantedEntity == null) + if (component.ImplantedEntity == null || _net.IsClient) return; - if (component.ImplantAction != null) + if (!string.IsNullOrWhiteSpace(component.ImplantAction)) { - var action = new InstantAction(_prototypeManager.Index(component.ImplantAction)); + var action = Spawn(component.ImplantAction); _actionsSystem.AddAction(component.ImplantedEntity.Value, action, uid); } @@ -86,6 +85,28 @@ private void OnRemove(EntityUid uid, SubdermalImplantComponent component, EntGot } } + /// + /// Add a list of implants to a person. + /// Logs any implant ids that don't have . + /// + public void AddImplants(EntityUid uid, IEnumerable implants) + { + var coords = Transform(uid).Coordinates; + foreach (var id in implants) + { + var ent = Spawn(id, coords); + if (TryComp(ent, out var implant)) + { + ForceImplant(uid, ent, implant); + } + else + { + Log.Warning($"Found invalid starting implant '{id}' on {uid} {ToPrettyString(uid):implanted}"); + Del(ent); + } + } + } + /// /// Forces an implant into a person /// Good for on spawn related code or admin additions diff --git a/Content.Shared/Instruments/SharedInstrumentComponent.cs b/Content.Shared/Instruments/SharedInstrumentComponent.cs index 61a3d28f46a..cdd85b90ac2 100644 --- a/Content.Shared/Instruments/SharedInstrumentComponent.cs +++ b/Content.Shared/Instruments/SharedInstrumentComponent.cs @@ -42,9 +42,9 @@ public abstract partial class SharedInstrumentComponent : Component [Serializable, NetSerializable] public sealed class InstrumentStopMidiEvent : EntityEventArgs { - public EntityUid Uid { get; } + public NetEntity Uid { get; } - public InstrumentStopMidiEvent(EntityUid uid) + public InstrumentStopMidiEvent(NetEntity uid) { Uid = uid; } @@ -56,10 +56,10 @@ public InstrumentStopMidiEvent(EntityUid uid) [Serializable, NetSerializable] public sealed class InstrumentSetMasterEvent : EntityEventArgs { - public EntityUid Uid { get; } - public EntityUid? Master { get; } + public NetEntity Uid { get; } + public NetEntity? Master { get; } - public InstrumentSetMasterEvent(EntityUid uid, EntityUid? master) + public InstrumentSetMasterEvent(NetEntity uid, NetEntity? master) { Uid = uid; Master = master; @@ -72,11 +72,11 @@ public InstrumentSetMasterEvent(EntityUid uid, EntityUid? master) [Serializable, NetSerializable] public sealed class InstrumentSetFilteredChannelEvent : EntityEventArgs { - public EntityUid Uid { get; } + public NetEntity Uid { get; } public int Channel { get; } public bool Value { get; } - public InstrumentSetFilteredChannelEvent(EntityUid uid, int channel, bool value) + public InstrumentSetFilteredChannelEvent(NetEntity uid, int channel, bool value) { Uid = uid; Channel = channel; @@ -90,9 +90,9 @@ public InstrumentSetFilteredChannelEvent(EntityUid uid, int channel, bool value) [Serializable, NetSerializable] public sealed class InstrumentStartMidiEvent : EntityEventArgs { - public EntityUid Uid { get; } + public NetEntity Uid { get; } - public InstrumentStartMidiEvent(EntityUid uid) + public InstrumentStartMidiEvent(NetEntity uid) { Uid = uid; } @@ -104,10 +104,10 @@ public InstrumentStartMidiEvent(EntityUid uid) [Serializable, NetSerializable] public sealed class InstrumentMidiEventEvent : EntityEventArgs { - public EntityUid Uid { get; } + public NetEntity Uid { get; } public RobustMidiEvent[] MidiEvent { get; } - public InstrumentMidiEventEvent(EntityUid uid, RobustMidiEvent[] midiEvent) + public InstrumentMidiEventEvent(NetEntity uid, RobustMidiEvent[] midiEvent) { Uid = uid; MidiEvent = midiEvent; diff --git a/Content.Shared/Instruments/UI/InstrumentBoundUserInterfaceMessages.cs b/Content.Shared/Instruments/UI/InstrumentBoundUserInterfaceMessages.cs index 47471b0e222..5e75a360046 100644 --- a/Content.Shared/Instruments/UI/InstrumentBoundUserInterfaceMessages.cs +++ b/Content.Shared/Instruments/UI/InstrumentBoundUserInterfaceMessages.cs @@ -10,9 +10,9 @@ public sealed class InstrumentBandRequestBuiMessage : BoundUserInterfaceMessage [Serializable, NetSerializable] public sealed class InstrumentBandResponseBuiMessage : BoundUserInterfaceMessage { - public (EntityUid, string)[] Nearby { get; set; } + public (NetEntity, string)[] Nearby { get; set; } - public InstrumentBandResponseBuiMessage((EntityUid, string)[] nearby) + public InstrumentBandResponseBuiMessage((NetEntity, string)[] nearby) { Nearby = nearby; } diff --git a/Content.Shared/Interaction/Components/BlockMovementComponent.cs b/Content.Shared/Interaction/Components/BlockMovementComponent.cs index a599ca36849..e308e849601 100644 --- a/Content.Shared/Interaction/Components/BlockMovementComponent.cs +++ b/Content.Shared/Interaction/Components/BlockMovementComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Interaction.Components; /// This is used for entities which cannot move or interact in any way. /// [RegisterComponent, NetworkedComponent] -public sealed class BlockMovementComponent : Component +public sealed partial class BlockMovementComponent : Component { } diff --git a/Content.Shared/Interaction/Components/ClumsyComponent.cs b/Content.Shared/Interaction/Components/ClumsyComponent.cs index 2acbdeaf68d..5b72fc224c8 100644 --- a/Content.Shared/Interaction/Components/ClumsyComponent.cs +++ b/Content.Shared/Interaction/Components/ClumsyComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Interaction.Components /// A simple clumsy tag-component. /// [RegisterComponent] - public sealed class ClumsyComponent : Component + public sealed partial class ClumsyComponent : Component { [DataField("clumsyDamage", required: true)] [ViewVariables(VVAccess.ReadWrite)] diff --git a/Content.Shared/Interaction/Components/InteractionRelayComponent.cs b/Content.Shared/Interaction/Components/InteractionRelayComponent.cs index 9ae63c35277..1f8b4468ad1 100644 --- a/Content.Shared/Interaction/Components/InteractionRelayComponent.cs +++ b/Content.Shared/Interaction/Components/InteractionRelayComponent.cs @@ -12,7 +12,7 @@ namespace Content.Shared.Interaction.Components; /// [RegisterComponent, NetworkedComponent] [Access(typeof(SharedInteractionSystem))] -public sealed class InteractionRelayComponent : Component +public sealed partial class InteractionRelayComponent : Component { /// /// The entity the interactions are being relayed to. @@ -27,9 +27,9 @@ public sealed class InteractionRelayComponent : Component [Serializable, NetSerializable] public sealed class InteractionRelayComponentState : ComponentState { - public EntityUid? RelayEntity; + public NetEntity? RelayEntity; - public InteractionRelayComponentState(EntityUid? relayEntity) + public InteractionRelayComponentState(NetEntity? relayEntity) { RelayEntity = relayEntity; } diff --git a/Content.Shared/Interaction/Components/UnremoveableComponent.cs b/Content.Shared/Interaction/Components/UnremoveableComponent.cs index bcf294a6575..cd106948658 100644 --- a/Content.Shared/Interaction/Components/UnremoveableComponent.cs +++ b/Content.Shared/Interaction/Components/UnremoveableComponent.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Interaction.Components { [RegisterComponent] [NetworkedComponent] - public sealed class UnremoveableComponent : Component + public sealed partial class UnremoveableComponent : Component { /// /// If this is true then unremovable items that are removed from inventory are deleted (typically from corpse gibbing). diff --git a/Content.Shared/Interaction/Helpers/SharedUnoccludedExtensions.cs b/Content.Shared/Interaction/Helpers/SharedUnoccludedExtensions.cs index 0a13fc4f1b3..9ea48a89c8e 100644 --- a/Content.Shared/Interaction/Helpers/SharedUnoccludedExtensions.cs +++ b/Content.Shared/Interaction/Helpers/SharedUnoccludedExtensions.cs @@ -32,7 +32,7 @@ public static bool InRangeUnOccluded( public static bool InRangeUnOccluded( this EntityUid origin, - IContainer other, + BaseContainer other, float range = InteractionRange, Ignored? predicate = null, bool ignoreInsideBlocker = true) @@ -90,7 +90,7 @@ public static bool InRangeUnOccluded( public static bool InRangeUnOccluded( this IComponent origin, - IContainer other, + BaseContainer other, float range = InteractionRange, Ignored? predicate = null, bool ignoreInsideBlocker = true) @@ -130,7 +130,7 @@ public static bool InRangeUnOccluded( #region Containers public static bool InRangeUnOccluded( - this IContainer origin, + this BaseContainer origin, EntityUid other, float range = InteractionRange, Ignored? predicate = null, @@ -143,7 +143,7 @@ public static bool InRangeUnOccluded( } public static bool InRangeUnOccluded( - this IContainer origin, + this BaseContainer origin, IComponent other, float range = InteractionRange, Ignored? predicate = null, @@ -155,8 +155,8 @@ public static bool InRangeUnOccluded( } public static bool InRangeUnOccluded( - this IContainer origin, - IContainer other, + this BaseContainer origin, + BaseContainer other, float range = InteractionRange, Ignored? predicate = null, bool ignoreInsideBlocker = true) @@ -169,7 +169,7 @@ public static bool InRangeUnOccluded( } public static bool InRangeUnOccluded( - this IContainer origin, + this BaseContainer origin, EntityCoordinates other, float range = InteractionRange, Ignored? predicate = null, @@ -181,7 +181,7 @@ public static bool InRangeUnOccluded( } public static bool InRangeUnOccluded( - this IContainer origin, + this BaseContainer origin, MapCoordinates other, float range = InteractionRange, Ignored? predicate = null, @@ -226,7 +226,7 @@ public static bool InRangeUnOccluded( public static bool InRangeUnOccluded( this EntityCoordinates origin, - IContainer other, + BaseContainer other, float range = InteractionRange, Ignored? predicate = null, bool ignoreInsideBlocker = true) @@ -304,7 +304,7 @@ public static bool InRangeUnOccluded( public static bool InRangeUnOccluded( this MapCoordinates origin, - IContainer other, + BaseContainer other, float range = InteractionRange, Ignored? predicate = null, bool ignoreInsideBlocker = true) diff --git a/Content.Shared/Interaction/InteractHand.cs b/Content.Shared/Interaction/InteractHand.cs index 32e250b0f1f..63ea3b6f30d 100644 --- a/Content.Shared/Interaction/InteractHand.cs +++ b/Content.Shared/Interaction/InteractHand.cs @@ -38,6 +38,20 @@ public InteractHandEvent(EntityUid user, EntityUid target) } } + /// + /// Raised on the user before interacting on an entity with bare hand. + /// Interaction is cancelled if this event is handled, so set it to true if you do custom interaction logic. + /// + public sealed class BeforeInteractHandEvent : HandledEntityEventArgs + { + public EntityUid Target { get; } + + public BeforeInteractHandEvent(EntityUid target) + { + Target = target; + } + } + /// /// Low-level interaction event used for entities without hands. /// diff --git a/Content.Shared/Interaction/SharedInteractionSystem.Relay.cs b/Content.Shared/Interaction/SharedInteractionSystem.Relay.cs index b8cf4c7b2f2..f82b8f78760 100644 --- a/Content.Shared/Interaction/SharedInteractionSystem.Relay.cs +++ b/Content.Shared/Interaction/SharedInteractionSystem.Relay.cs @@ -13,7 +13,7 @@ public void InitializeRelay() private void OnGetState(EntityUid uid, InteractionRelayComponent component, ref ComponentGetState args) { - args.State = new InteractionRelayComponentState(component.RelayEntity); + args.State = new InteractionRelayComponentState(GetNetEntity(component.RelayEntity)); } private void OnHandleState(EntityUid uid, InteractionRelayComponent component, ref ComponentHandleState args) @@ -21,7 +21,7 @@ private void OnHandleState(EntityUid uid, InteractionRelayComponent component, r if (args.Current is not InteractionRelayComponentState state) return; - component.RelayEntity = state.RelayEntity; + component.RelayEntity = EnsureEntity(state.RelayEntity, uid); } public void SetRelay(EntityUid uid, EntityUid? relayEntity, InteractionRelayComponent? component = null) diff --git a/Content.Shared/Interaction/SharedInteractionSystem.cs b/Content.Shared/Interaction/SharedInteractionSystem.cs index f00d9c8c38a..830a3cd936e 100644 --- a/Content.Shared/Interaction/SharedInteractionSystem.cs +++ b/Content.Shared/Interaction/SharedInteractionSystem.cs @@ -205,8 +205,10 @@ private bool HandleTryPullObject(ICommonSession? session, EntityCoordinates coor /// private void HandleInteractInventorySlotEvent(InteractInventorySlotEvent msg, EntitySessionEventArgs args) { + var item = GetEntity(msg.ItemUid); + // client sanitization - if (!TryComp(msg.ItemUid, out TransformComponent? itemXform) || !ValidateClientInput(args.SenderSession, itemXform.Coordinates, msg.ItemUid, out var user)) + if (!TryComp(item, out TransformComponent? itemXform) || !ValidateClientInput(args.SenderSession, itemXform.Coordinates, item, out var user)) { Logger.InfoS("system.interaction", $"Inventory interaction validation failed. Session={args.SenderSession}"); return; @@ -219,10 +221,10 @@ private void HandleInteractInventorySlotEvent(InteractInventorySlotEvent msg, En if (msg.AltInteract) // Use 'UserInteraction' function - behaves as if the user alt-clicked the item in the world. - UserInteraction(user.Value, itemXform.Coordinates, msg.ItemUid, msg.AltInteract); + UserInteraction(user.Value, itemXform.Coordinates, item, msg.AltInteract); else // User used 'E'. We want to activate it, not simulate clicking on the item - InteractionActivate(user.Value, msg.ItemUid); + InteractionActivate(user.Value, item); } public bool HandleAltUseInteraction(ICommonSession? session, EntityCoordinates coords, EntityUid uid) @@ -380,6 +382,15 @@ public void UserInteraction( public void InteractHand(EntityUid user, EntityUid target) { + // allow for special logic before main interaction + var ev = new BeforeInteractHandEvent(target); + RaiseLocalEvent(user, ev); + if (ev.Handled) + { + _adminLogger.Add(LogType.InteractHand, LogImpact.Low, $"{ToPrettyString(user):user} interacted with {ToPrettyString(target):target}, but it was handled by another system"); + return; + } + // 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); @@ -1084,7 +1095,7 @@ protected bool ValidateClientInput(ICommonSession? session, EntityCoordinates co return false; } - if (uid.IsClientSide()) + if (IsClientSide(uid)) { Logger.WarningS("system.interaction", $"Client sent interaction with client-side entity. Session={session}, Uid={uid}"); @@ -1139,14 +1150,14 @@ public sealed class InteractInventorySlotEvent : EntityEventArgs /// /// Entity that was interacted with. /// - public EntityUid ItemUid { get; } + public NetEntity ItemUid { get; } /// /// Whether the interaction used the alt-modifier to trigger alternative interactions. /// public bool AltInteract { get; } - public InteractInventorySlotEvent(EntityUid itemUid, bool altInteract = false) + public InteractInventorySlotEvent(NetEntity itemUid, bool altInteract = false) { ItemUid = itemUid; AltInteract = altInteract; diff --git a/Content.Shared/Internals/InternalsDoAfterEvent.cs b/Content.Shared/Internals/InternalsDoAfterEvent.cs index 98709a03429..13b6087ec0e 100644 --- a/Content.Shared/Internals/InternalsDoAfterEvent.cs +++ b/Content.Shared/Internals/InternalsDoAfterEvent.cs @@ -4,6 +4,6 @@ namespace Content.Shared.Internals; [Serializable, NetSerializable] -public sealed class InternalsDoAfterEvent : SimpleDoAfterEvent +public sealed partial class InternalsDoAfterEvent : SimpleDoAfterEvent { -} \ No newline at end of file +} diff --git a/Content.Shared/Inventory/Events/EquippedEvents.cs b/Content.Shared/Inventory/Events/EquippedEvents.cs index 85aafb2f6bc..77fbe83e8af 100644 --- a/Content.Shared/Inventory/Events/EquippedEvents.cs +++ b/Content.Shared/Inventory/Events/EquippedEvents.cs @@ -37,6 +37,9 @@ public EquippedEventBase(EntityUid equipee, EntityUid equipment, SlotDefinition } } +/// +/// Raised directed on an equipee when something is equipped. +/// public sealed class DidEquipEvent : EquippedEventBase { public DidEquipEvent(EntityUid equipee, EntityUid equipment, SlotDefinition slotDefinition) : base(equipee, equipment, slotDefinition) @@ -44,6 +47,9 @@ public DidEquipEvent(EntityUid equipee, EntityUid equipment, SlotDefinition slot } } +/// +/// Raised directed on equipment when it's equipped to an equipee +/// public sealed class GotEquippedEvent : EquippedEventBase { public GotEquippedEvent(EntityUid equipee, EntityUid equipment, SlotDefinition slotDefinition) : base(equipee, equipment, slotDefinition) diff --git a/Content.Shared/Inventory/Events/InventoryEquipActEvent.cs b/Content.Shared/Inventory/Events/InventoryEquipActEvent.cs index ec9fb7be917..59b5a3c69e7 100644 --- a/Content.Shared/Inventory/Events/InventoryEquipActEvent.cs +++ b/Content.Shared/Inventory/Events/InventoryEquipActEvent.cs @@ -8,13 +8,13 @@ namespace Content.Shared.Inventory.Events; [NetSerializable, Serializable] public sealed class InventoryEquipActEvent : EntityEventArgs { - public readonly EntityUid Uid; - public readonly EntityUid ItemUid; + public readonly NetEntity Uid; + public readonly NetEntity ItemUid; public readonly string Slot; public readonly bool Silent; public readonly bool Force; - public InventoryEquipActEvent(EntityUid uid, EntityUid itemUid, string slot, bool silent = false, bool force = false) + public InventoryEquipActEvent(NetEntity uid, NetEntity itemUid, string slot, bool silent = false, bool force = false) { Uid = uid; ItemUid = itemUid; diff --git a/Content.Shared/Inventory/InventoryComponent.cs b/Content.Shared/Inventory/InventoryComponent.cs index eac41555c7d..07a2463d12a 100644 --- a/Content.Shared/Inventory/InventoryComponent.cs +++ b/Content.Shared/Inventory/InventoryComponent.cs @@ -5,10 +5,10 @@ namespace Content.Shared.Inventory; [RegisterComponent, NetworkedComponent] [Access(typeof(InventorySystem))] -public sealed class InventoryComponent : Component +public sealed partial class InventoryComponent : Component { [DataField("templateId", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string TemplateId { get; } = "human"; + public string TemplateId { get; private set; } = "human"; [DataField("speciesId")] public string? SpeciesId { get; set; } } diff --git a/Content.Shared/Inventory/InventorySystem.Equip.cs b/Content.Shared/Inventory/InventorySystem.Equip.cs index 25dcf56921d..f3181a87b16 100644 --- a/Content.Shared/Inventory/InventorySystem.Equip.cs +++ b/Content.Shared/Inventory/InventorySystem.Equip.cs @@ -360,7 +360,7 @@ public bool TryUnequip(EntityUid actor, EntityUid target, string slot, [NotNullW } //we need to do this to make sure we are 100% removing this entity, since we are now dropping dependant slots - if (!force && !slotContainer.CanRemove(removedItem.Value)) + if (!force && !_containerSystem.CanRemove(removedItem.Value, slotContainer)) return false; foreach (var slotDef in GetSlots(target, inventory)) @@ -426,14 +426,12 @@ public bool CanUnequip(EntityUid actor, EntityUid target, string slot, [NotNullW if ((containerSlot == null || slotDefinition == null) && !TryGetSlotContainer(target, slot, out containerSlot, out slotDefinition, inventory)) return false; - if (containerSlot.ContainedEntity == null) + if (containerSlot.ContainedEntity is not {} itemUid) return false; - if (!containerSlot.ContainedEntity.HasValue || !containerSlot.CanRemove(containerSlot.ContainedEntity.Value)) + if (!_containerSystem.CanRemove(itemUid, containerSlot)) return false; - var itemUid = containerSlot.ContainedEntity.Value; - // make sure the user can actually reach the target if (!CanAccess(actor, target, itemUid)) { diff --git a/Content.Shared/Inventory/InventorySystem.Helpers.cs b/Content.Shared/Inventory/InventorySystem.Helpers.cs index 41bd6e03721..0e24d2ec24e 100644 --- a/Content.Shared/Inventory/InventorySystem.Helpers.cs +++ b/Content.Shared/Inventory/InventorySystem.Helpers.cs @@ -1,11 +1,43 @@ using System.Diagnostics.CodeAnalysis; using System.Linq; +using Content.Shared.Hands.Components; using Robust.Shared.Prototypes; namespace Content.Shared.Inventory; public partial class InventorySystem { + /// + /// Yields all entities in hands or inventory slots with the specific flags. + /// + public IEnumerable GetHandOrInventoryEntities(EntityUid user, SlotFlags flags = SlotFlags.All) + { + if (TryComp(user, out var handsComp)) + { + foreach (var hand in handsComp.Hands.Values) + { + if (hand.HeldEntity == null) + continue; + + yield return hand.HeldEntity.Value; + } + } + + if (TryComp(user, out var inventoryComp)) + { + var slotEnumerator = new ContainerSlotEnumerator(user, inventoryComp.TemplateId, + _prototypeManager, this, flags); + + while (slotEnumerator.MoveNext(out var slot)) + { + if (slot.ContainedEntity == null) + continue; + + yield return slot.ContainedEntity.Value; + } + } + } + /// /// Returns the definition of the inventory slot that the given entity is currently in.. /// diff --git a/Content.Shared/Inventory/InventorySystem.cs b/Content.Shared/Inventory/InventorySystem.cs index b5d1a0f43a6..ae62a4cec0c 100644 --- a/Content.Shared/Inventory/InventorySystem.cs +++ b/Content.Shared/Inventory/InventorySystem.cs @@ -1,3 +1,5 @@ +using Content.Shared.Hands.Components; + namespace Content.Shared.Inventory; public partial class InventorySystem diff --git a/Content.Shared/Inventory/InventoryTemplatePrototype.cs b/Content.Shared/Inventory/InventoryTemplatePrototype.cs index 8faa58f854b..fcbe5dcf304 100644 --- a/Content.Shared/Inventory/InventoryTemplatePrototype.cs +++ b/Content.Shared/Inventory/InventoryTemplatePrototype.cs @@ -9,36 +9,36 @@ public sealed class InventoryTemplatePrototype : IPrototype { [IdDataField] public string ID { get; } = string.Empty; - [DataField("slots")] public SlotDefinition[] Slots { get; } = Array.Empty(); + [DataField("slots")] public SlotDefinition[] Slots { get; private set; } = Array.Empty(); } [DataDefinition] -public sealed class SlotDefinition +public sealed partial class SlotDefinition { - [DataField("name", required: true)] public string Name { get; } = string.Empty; - [DataField("slotTexture")] public string TextureName { get; } = "pocket"; - [DataField("slotFlags")] public SlotFlags SlotFlags { get; } = SlotFlags.PREVENTEQUIP; - [DataField("showInWindow")] public bool ShowInWindow { get; } = true; - [DataField("slotGroup")] public string SlotGroup { get; } = "Default"; - [DataField("stripTime")] public float StripTime { get; } = 4f; + [DataField("name", required: true)] public string Name { get; private set; } = string.Empty; + [DataField("slotTexture")] public string TextureName { get; private set; } = "pocket"; + [DataField("slotFlags")] public SlotFlags SlotFlags { get; private set; } = SlotFlags.PREVENTEQUIP; + [DataField("showInWindow")] public bool ShowInWindow { get; private set; } = true; + [DataField("slotGroup")] public string SlotGroup { get; private set; } = "Default"; + [DataField("stripTime")] public float StripTime { get; private set; } = 4f; [DataField("uiWindowPos", required: true)] - public Vector2i UIWindowPosition { get; } + public Vector2i UIWindowPosition { get; private set; } [DataField("strippingWindowPos", required: true)] - public Vector2i StrippingWindowPos { get; } + public Vector2i StrippingWindowPos { get; private set; } - [DataField("dependsOn")] public string? DependsOn { get; } + [DataField("dependsOn")] public string? DependsOn { get; private set; } [DataField("displayName", required: true)] - public string DisplayName { get; } = string.Empty; + public string DisplayName { get; private set; } = string.Empty; - [DataField("stripHidden")] public bool StripHidden { get; } + [DataField("stripHidden")] public bool StripHidden { get; private set; } /// /// Offset for the clothing sprites. /// - [DataField("offset")] public Vector2 Offset { get; } = Vector2.Zero; + [DataField("offset")] public Vector2 Offset { get; private set; } = Vector2.Zero; /// /// Entity whitelist for CanEquip checks. diff --git a/Content.Shared/Item/ItemComponent.cs b/Content.Shared/Item/ItemComponent.cs index 58aae4f4464..7516f4faca3 100644 --- a/Content.Shared/Item/ItemComponent.cs +++ b/Content.Shared/Item/ItemComponent.cs @@ -11,7 +11,7 @@ namespace Content.Shared.Item; [RegisterComponent] [NetworkedComponent] [Access(typeof(SharedItemSystem))] -public sealed class ItemComponent : Component +public sealed partial class ItemComponent : Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("size")] @@ -56,10 +56,10 @@ public ItemComponentState(int size, string? heldPrefix) [Serializable, NetSerializable] public sealed class VisualsChangedEvent : EntityEventArgs { - public readonly EntityUid Item; + public readonly NetEntity Item; public readonly string ContainerId; - public VisualsChangedEvent(EntityUid item, string containerId) + public VisualsChangedEvent(NetEntity item, string containerId) { Item = item; ContainerId = containerId; diff --git a/Content.Shared/Item/ItemToggleComponent.cs b/Content.Shared/Item/ItemToggleComponent.cs index 9bcee120cde..fda4d0904a6 100644 --- a/Content.Shared/Item/ItemToggleComponent.cs +++ b/Content.Shared/Item/ItemToggleComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.Weapons.Melee.ItemToggle; [RegisterComponent, NetworkedComponent] -public sealed class ItemToggleComponent : Component +public sealed partial class ItemToggleComponent : Component { public bool Activated = false; diff --git a/Content.Shared/Item/MultiHandedItemComponent.cs b/Content.Shared/Item/MultiHandedItemComponent.cs index fd2a9311721..9a90d063ba7 100644 --- a/Content.Shared/Item/MultiHandedItemComponent.cs +++ b/Content.Shared/Item/MultiHandedItemComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Item; /// multiple hands to be able to be picked up /// [RegisterComponent, NetworkedComponent] -public sealed class MultiHandedItemComponent : Component +public sealed partial class MultiHandedItemComponent : Component { [DataField("handsNeeded"), ViewVariables(VVAccess.ReadWrite)] public int HandsNeeded = 2; diff --git a/Content.Shared/Item/SharedItemSystem.cs b/Content.Shared/Item/SharedItemSystem.cs index cd68c3e31ae..bda92c500a1 100644 --- a/Content.Shared/Item/SharedItemSystem.cs +++ b/Content.Shared/Item/SharedItemSystem.cs @@ -3,6 +3,7 @@ using Content.Shared.Interaction; using Content.Shared.Stacks; using Content.Shared.Verbs; +using Content.Shared.Examine; using Robust.Shared.Containers; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; @@ -21,11 +22,13 @@ public override void Initialize() { base.Initialize(); SubscribeLocalEvent>(AddPickupVerb); - SubscribeLocalEvent(OnHandInteract); + SubscribeLocalEvent(OnHandInteract, before: new []{typeof(SharedItemSystem)}); SubscribeLocalEvent(OnStackCountChanged); SubscribeLocalEvent(OnGetState); SubscribeLocalEvent(OnHandleState); + + SubscribeLocalEvent(OnExamine); } #region Public API @@ -129,6 +132,12 @@ private void AddPickupVerb(EntityUid uid, ItemComponent component, GetVerbsEvent args.Verbs.Add(verb); } + private void OnExamine(EntityUid uid, ItemComponent component, ExaminedEvent args) + { + args.PushMarkup(Loc.GetString("item-component-on-examine-size", + ("size", component.Size))); + } + /// /// Notifies any entity that is holding or wearing this item that they may need to update their sprite. /// diff --git a/Content.Shared/Jittering/JitteringComponent.cs b/Content.Shared/Jittering/JitteringComponent.cs index 85b8fe73dc8..cd8e3aeea79 100644 --- a/Content.Shared/Jittering/JitteringComponent.cs +++ b/Content.Shared/Jittering/JitteringComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Jittering { [Access(typeof(SharedJitteringSystem))] [RegisterComponent, NetworkedComponent] - public sealed class JitteringComponent : Component + public sealed partial class JitteringComponent : Component { [ViewVariables(VVAccess.ReadWrite)] public float Amplitude { get; set; } diff --git a/Content.Shared/Kitchen/Components/KitchenSpikeComponent.cs b/Content.Shared/Kitchen/Components/KitchenSpikeComponent.cs index beb0d5acd34..8b43ab1a850 100644 --- a/Content.Shared/Kitchen/Components/KitchenSpikeComponent.cs +++ b/Content.Shared/Kitchen/Components/KitchenSpikeComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Kitchen.Components; [RegisterComponent, NetworkedComponent] [Access(typeof(SharedKitchenSpikeSystem))] -public sealed class KitchenSpikeComponent : Component +public sealed partial class KitchenSpikeComponent : Component { [DataField("delay")] public float SpikeDelay = 7.0f; diff --git a/Content.Shared/Kitchen/Components/SharedMicrowave.cs b/Content.Shared/Kitchen/Components/SharedMicrowave.cs index 6a5c10efa54..e86ecf01c5d 100644 --- a/Content.Shared/Kitchen/Components/SharedMicrowave.cs +++ b/Content.Shared/Kitchen/Components/SharedMicrowave.cs @@ -1,4 +1,5 @@ using Content.Shared.Chemistry.Components; +using Content.Shared.Chemistry.Reagent; using Robust.Shared.Serialization; namespace Content.Shared.Kitchen.Components @@ -17,8 +18,8 @@ public sealed class MicrowaveEjectMessage : BoundUserInterfaceMessage [Serializable, NetSerializable] public sealed class MicrowaveEjectSolidIndexedMessage : BoundUserInterfaceMessage { - public EntityUid EntityID; - public MicrowaveEjectSolidIndexedMessage(EntityUid entityId) + public NetEntity EntityID; + public MicrowaveEjectSolidIndexedMessage(NetEntity entityId) { EntityID = entityId; } @@ -27,8 +28,8 @@ public MicrowaveEjectSolidIndexedMessage(EntityUid entityId) [Serializable, NetSerializable] public sealed class MicrowaveVaporizeReagentIndexedMessage : BoundUserInterfaceMessage { - public Solution.ReagentQuantity ReagentQuantity; - public MicrowaveVaporizeReagentIndexedMessage(Solution.ReagentQuantity reagentQuantity) + public ReagentQuantity ReagentQuantity; + public MicrowaveVaporizeReagentIndexedMessage(ReagentQuantity reagentQuantity) { ReagentQuantity = reagentQuantity; } @@ -49,12 +50,12 @@ public MicrowaveSelectCookTimeMessage(int buttonIndex, uint inputTime) [NetSerializable, Serializable] public sealed class MicrowaveUpdateUserInterfaceState : BoundUserInterfaceState { - public EntityUid[] ContainedSolids; + public NetEntity[] ContainedSolids; public bool IsMicrowaveBusy; public int ActiveButtonIndex; public uint CurrentCookTime; - public MicrowaveUpdateUserInterfaceState(EntityUid[] containedSolids, + public MicrowaveUpdateUserInterfaceState(NetEntity[] containedSolids, bool isMicrowaveBusy, int activeButtonIndex, uint currentCookTime) { ContainedSolids = containedSolids; @@ -70,7 +71,8 @@ public enum MicrowaveVisualState { Idle, Cooking, - Broken + Broken, + Bloody } [NetSerializable, Serializable] diff --git a/Content.Shared/Kitchen/MicrowaveMealRecipePrototype.cs b/Content.Shared/Kitchen/MicrowaveMealRecipePrototype.cs index b0d8dd141d3..3ee8e8ee4a8 100644 --- a/Content.Shared/Kitchen/MicrowaveMealRecipePrototype.cs +++ b/Content.Shared/Kitchen/MicrowaveMealRecipePrototype.cs @@ -14,25 +14,26 @@ public sealed class FoodRecipePrototype : IPrototype { [ViewVariables] [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [DataField("name")] private string _name = string.Empty; [DataField("reagents", customTypeSerializer:typeof(PrototypeIdDictionarySerializer))] - private readonly Dictionary _ingsReagents = new(); + private Dictionary _ingsReagents = new(); [DataField("solids", customTypeSerializer: typeof(PrototypeIdDictionarySerializer))] - private readonly Dictionary _ingsSolids = new (); + private Dictionary _ingsSolids = new (); [DataField("result", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string Result { get; } = string.Empty; + public string Result { get; private set; } = string.Empty; [DataField("time")] - public uint CookTime { get; } = 5; + public uint CookTime { get; private set; } = 5; public string Name => Loc.GetString(_name); + // TODO Turn this into a ReagentQuantity[] public IReadOnlyDictionary IngredientsReagents => _ingsReagents; public IReadOnlyDictionary IngredientsSolids => _ingsSolids; diff --git a/Content.Shared/Kitchen/SharedKitchenSpikeSystem.cs b/Content.Shared/Kitchen/SharedKitchenSpikeSystem.cs index a61fc066c5e..2f740f99ad8 100644 --- a/Content.Shared/Kitchen/SharedKitchenSpikeSystem.cs +++ b/Content.Shared/Kitchen/SharedKitchenSpikeSystem.cs @@ -33,6 +33,6 @@ private void OnCanDrop(EntityUid uid, KitchenSpikeComponent component, ref CanDr } [Serializable, NetSerializable] -public sealed class SpikeDoAfterEvent : SimpleDoAfterEvent +public sealed partial class SpikeDoAfterEvent : SimpleDoAfterEvent { } diff --git a/Content.Shared/Kitchen/SharedReagentGrinder.cs b/Content.Shared/Kitchen/SharedReagentGrinder.cs index a9a3d88bb84..dc948842884 100644 --- a/Content.Shared/Kitchen/SharedReagentGrinder.cs +++ b/Content.Shared/Kitchen/SharedReagentGrinder.cs @@ -1,4 +1,5 @@ using Content.Shared.Chemistry.Components; +using Content.Shared.Chemistry.Reagent; using Robust.Shared.Serialization; namespace Content.Shared.Kitchen @@ -31,8 +32,8 @@ public ReagentGrinderEjectChamberAllMessage() [Serializable, NetSerializable] public sealed class ReagentGrinderEjectChamberContentMessage : BoundUserInterfaceMessage { - public EntityUid EntityId; - public ReagentGrinderEjectChamberContentMessage(EntityUid entityId) + public NetEntity EntityId; + public ReagentGrinderEjectChamberContentMessage(NetEntity entityId) { EntityId = entityId; } @@ -83,9 +84,9 @@ public sealed class ReagentGrinderInterfaceState : BoundUserInterfaceState public bool Powered; public bool CanJuice; public bool CanGrind; - public EntityUid[] ChamberContents; - public Solution.ReagentQuantity[]? ReagentQuantities; - public ReagentGrinderInterfaceState(bool isBusy, bool hasBeaker, bool powered, bool canJuice, bool canGrind, EntityUid[] chamberContents, Solution.ReagentQuantity[]? heldBeakerContents) + public NetEntity[] ChamberContents; + public ReagentQuantity[]? ReagentQuantities; + public ReagentGrinderInterfaceState(bool isBusy, bool hasBeaker, bool powered, bool canJuice, bool canGrind, NetEntity[] chamberContents, ReagentQuantity[]? heldBeakerContents) { IsBusy = isBusy; HasBeakerIn = hasBeaker; diff --git a/Content.Shared/Kitchen/SharpDoAfterEvent.cs b/Content.Shared/Kitchen/SharpDoAfterEvent.cs index 1189fc82123..4c2a264a03a 100644 --- a/Content.Shared/Kitchen/SharpDoAfterEvent.cs +++ b/Content.Shared/Kitchen/SharpDoAfterEvent.cs @@ -4,6 +4,6 @@ namespace Content.Shared.Kitchen; [Serializable, NetSerializable] -public sealed class SharpDoAfterEvent : SimpleDoAfterEvent +public sealed partial class SharpDoAfterEvent : SimpleDoAfterEvent { -} \ No newline at end of file +} diff --git a/Content.Shared/Labels/LabelEvents.cs b/Content.Shared/Labels/LabelEvents.cs index c8d6e950efd..362500b7681 100644 --- a/Content.Shared/Labels/LabelEvents.cs +++ b/Content.Shared/Labels/LabelEvents.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Labels { /// - /// Key representing which is currently open. + /// Key representing which is currently open. /// Useful when there are multiple UI for an object. Here it's future-proofing only. /// [Serializable, NetSerializable] diff --git a/Content.Shared/Lathe/LatheComponent.cs b/Content.Shared/Lathe/LatheComponent.cs index fbc2eb2cc69..411695b46d5 100644 --- a/Content.Shared/Lathe/LatheComponent.cs +++ b/Content.Shared/Lathe/LatheComponent.cs @@ -8,19 +8,19 @@ namespace Content.Shared.Lathe { [RegisterComponent, NetworkedComponent] - public sealed class LatheComponent : Component + public sealed partial class LatheComponent : Component { /// /// All of the recipes that the lathe has by default /// [DataField("staticRecipes", customTypeSerializer: typeof(PrototypeIdListSerializer))] - public readonly List StaticRecipes = new(); + public List StaticRecipes = new(); /// /// All of the recipes that the lathe is capable of researching /// [DataField("dynamicRecipes", customTypeSerializer: typeof(PrototypeIdListSerializer))] - public readonly List DynamicRecipes = new(); + public List DynamicRecipes = new(); /// /// The lathe's construction queue diff --git a/Content.Shared/Light/Component/HandheldLightComponent.cs b/Content.Shared/Light/Component/HandheldLightComponent.cs deleted file mode 100644 index 154e7493b60..00000000000 --- a/Content.Shared/Light/Component/HandheldLightComponent.cs +++ /dev/null @@ -1,95 +0,0 @@ -using Content.Shared.Actions.ActionTypes; -using Robust.Shared.Audio; -using Robust.Shared.GameStates; -using Robust.Shared.Serialization; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; - -namespace Content.Shared.Light -{ - [NetworkedComponent] - [RegisterComponent] - [Access(typeof(SharedHandheldLightSystem))] - public sealed class HandheldLightComponent : Robust.Shared.GameObjects.Component - { - public byte? Level; - public bool Activated; - - [ViewVariables(VVAccess.ReadWrite)] - [DataField("wattage")] - public float Wattage { get; set; } = .8f; - - [DataField("turnOnSound")] - public SoundSpecifier TurnOnSound = new SoundPathSpecifier("/Audio/Items/flashlight_on.ogg"); - - [DataField("turnOnFailSound")] - public SoundSpecifier TurnOnFailSound = new SoundPathSpecifier("/Audio/Machines/button.ogg"); - - [DataField("turnOffSound")] - public SoundSpecifier TurnOffSound = new SoundPathSpecifier("/Audio/Items/flashlight_off.ogg"); - - /// - /// Whether to automatically set item-prefixes when toggling the flashlight. - /// - /// - /// Flashlights should probably be using explicit unshaded sprite, in-hand and clothing layers, this is - /// mostly here for backwards compatibility. - /// - [DataField("addPrefix")] - public bool AddPrefix = false; - - [DataField("toggleActionId", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string ToggleActionId = "ToggleLight"; - - /// - /// Whether or not the light can be toggled via standard interactions - /// (alt verbs, using in hand, etc) - /// - [DataField("toggleOnInteract")] - public bool ToggleOnInteract = true; - - [DataField("toggleAction")] - public InstantAction? ToggleAction; - - public const int StatusLevels = 6; - - /// - /// Specify the ID of the light behaviour to use when the state of the light is Dying - /// - [DataField("blinkingBehaviourId")] - public string BlinkingBehaviourId { get; set; } = string.Empty; - - /// - /// Specify the ID of the light behaviour to use when the state of the light is LowPower - /// - [DataField("radiatingBehaviourId")] - public string RadiatingBehaviourId { get; set; } = string.Empty; - - [Serializable, NetSerializable] - public sealed class HandheldLightComponentState : ComponentState - { - public byte? Charge { get; } - - public bool Activated { get; } - - public HandheldLightComponentState(bool activated, byte? charge) - { - Activated = activated; - Charge = charge; - } - } - } - - [Serializable, NetSerializable] - public enum HandheldLightVisuals - { - Power - } - - [Serializable, NetSerializable] - public enum HandheldLightPowerStates - { - FullPower, - LowPower, - Dying, - } -} diff --git a/Content.Shared/Light/Component/SharedEmergencyLightComponent.cs b/Content.Shared/Light/Component/SharedEmergencyLightComponent.cs deleted file mode 100644 index ef41400bfb2..00000000000 --- a/Content.Shared/Light/Component/SharedEmergencyLightComponent.cs +++ /dev/null @@ -1,29 +0,0 @@ -using Robust.Shared.GameStates; -using Robust.Shared.Serialization; - -namespace Content.Shared.Light.Component -{ - [NetworkedComponent] - public abstract class SharedEmergencyLightComponent : Robust.Shared.GameObjects.Component - { - public bool Enabled { get; set; } = false; - } - - [Serializable, NetSerializable] - public sealed class EmergencyLightComponentState : ComponentState - { - public bool Enabled; - - public EmergencyLightComponentState(bool enabled) - { - Enabled = enabled; - } - } - - [Serializable, NetSerializable] - public enum EmergencyLightVisuals - { - On, - Color - } -} diff --git a/Content.Shared/Light/Component/SharedExpendableLightComponent.cs b/Content.Shared/Light/Component/SharedExpendableLightComponent.cs deleted file mode 100644 index b49e3b97fb7..00000000000 --- a/Content.Shared/Light/Component/SharedExpendableLightComponent.cs +++ /dev/null @@ -1,58 +0,0 @@ -using Robust.Shared.Audio; -using Robust.Shared.GameStates; -using Robust.Shared.Serialization; - -namespace Content.Shared.Light.Component -{ - [Serializable, NetSerializable] - public enum ExpendableLightVisuals - { - State, - Behavior - } - - [Serializable, NetSerializable] - public enum ExpendableLightState - { - BrandNew, - Lit, - Fading, - Dead - } - - [NetworkedComponent] - public abstract class SharedExpendableLightComponent: Robust.Shared.GameObjects.Component - { - public static readonly AudioParams LoopedSoundParams = new(0, 1, "Master", 62.5f, 1, 1, true, 0.3f); - - [ViewVariables(VVAccess.ReadOnly)] - public ExpendableLightState CurrentState { get; set; } - - [DataField("turnOnBehaviourID")] - public string TurnOnBehaviourID { get; set; } = string.Empty; - - [DataField("fadeOutBehaviourID")] - public string FadeOutBehaviourID { get; set; } = string.Empty; - - [DataField("glowDuration")] - public float GlowDuration { get; set; } = 60 * 15f; - - [DataField("fadeOutDuration")] - public float FadeOutDuration { get; set; } = 60 * 5f; - - [DataField("spentDesc")] - public string SpentDesc { get; set; } = string.Empty; - - [DataField("spentName")] - public string SpentName { get; set; } = string.Empty; - - [DataField("litSound")] - public SoundSpecifier? LitSound { get; set; } - - [DataField("loopedSound")] - public SoundSpecifier? LoopedSound { get; set; } - - [DataField("dieSound")] - public SoundSpecifier? DieSound { get; set; } = null; - } -} diff --git a/Content.Shared/Light/Component/SharedLightBehaviourComponent.cs b/Content.Shared/Light/Component/SharedLightBehaviourComponent.cs deleted file mode 100644 index 3d10b73e69b..00000000000 --- a/Content.Shared/Light/Component/SharedLightBehaviourComponent.cs +++ /dev/null @@ -1,9 +0,0 @@ -namespace Content.Shared.Light.Component -{ - /// - /// A component which applies a specific behaviour to a PointLightComponent on its owner. - /// - public abstract class SharedLightBehaviourComponent : Robust.Shared.GameObjects.Component - { - } -} diff --git a/Content.Shared/Light/Components/HandheldLightComponent.cs b/Content.Shared/Light/Components/HandheldLightComponent.cs new file mode 100644 index 00000000000..9e3cad7552c --- /dev/null +++ b/Content.Shared/Light/Components/HandheldLightComponent.cs @@ -0,0 +1,92 @@ +using Robust.Shared.Audio; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Shared.Light.Components; + +[RegisterComponent, NetworkedComponent, Access(typeof(SharedHandheldLightSystem))] +public sealed partial class HandheldLightComponent : Component +{ + public byte? Level; + public bool Activated; + + [ViewVariables(VVAccess.ReadWrite)] + [DataField("wattage")] + public float Wattage { get; set; } = .8f; + + [DataField("turnOnSound")] + public SoundSpecifier TurnOnSound = new SoundPathSpecifier("/Audio/Items/flashlight_on.ogg"); + + [DataField("turnOnFailSound")] + public SoundSpecifier TurnOnFailSound = new SoundPathSpecifier("/Audio/Machines/button.ogg"); + + [DataField("turnOffSound")] + public SoundSpecifier TurnOffSound = new SoundPathSpecifier("/Audio/Items/flashlight_off.ogg"); + + /// + /// Whether to automatically set item-prefixes when toggling the flashlight. + /// + /// + /// Flashlights should probably be using explicit unshaded sprite, in-hand and clothing layers, this is + /// mostly here for backwards compatibility. + /// + [DataField("addPrefix")] + public bool AddPrefix = false; + + [DataField("toggleAction", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string ToggleAction = "ActionToggleLight"; + + /// + /// Whether or not the light can be toggled via standard interactions + /// (alt verbs, using in hand, etc) + /// + [DataField("toggleOnInteract")] + public bool ToggleOnInteract = true; + + [DataField("toggleActionEntity")] + public EntityUid? ToggleActionEntity; + + public const int StatusLevels = 6; + + /// + /// Specify the ID of the light behaviour to use when the state of the light is Dying + /// + [DataField("blinkingBehaviourId")] + public string BlinkingBehaviourId { get; set; } = string.Empty; + + /// + /// Specify the ID of the light behaviour to use when the state of the light is LowPower + /// + [DataField("radiatingBehaviourId")] + public string RadiatingBehaviourId { get; set; } = string.Empty; + + [Serializable, NetSerializable] + public sealed class HandheldLightComponentState : ComponentState + { + public byte? Charge { get; } + + public bool Activated { get; } + + public HandheldLightComponentState(bool activated, byte? charge) + { + Activated = activated; + Charge = charge; + } + } +} + +[Serializable, NetSerializable] +public enum HandheldLightVisuals +{ + Power +} + +[Serializable, NetSerializable] +public enum HandheldLightPowerStates +{ + FullPower, + LowPower, + Dying, +} diff --git a/Content.Shared/Light/Component/LightBulbComponent.cs b/Content.Shared/Light/Components/LightBulbComponent.cs similarity index 95% rename from Content.Shared/Light/Component/LightBulbComponent.cs rename to Content.Shared/Light/Components/LightBulbComponent.cs index aa3a0f0be74..01b348d13a5 100644 --- a/Content.Shared/Light/Component/LightBulbComponent.cs +++ b/Content.Shared/Light/Components/LightBulbComponent.cs @@ -2,15 +2,14 @@ using Robust.Shared.GameStates; using Robust.Shared.Serialization; -namespace Content.Shared.Light.Component; +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] -public sealed class LightBulbComponent : Robust.Shared.GameObjects.Component +[RegisterComponent, NetworkedComponent] +public sealed partial class LightBulbComponent : Component { /// /// The color of the lightbulb and the light it produces. diff --git a/Content.Shared/Light/Component/RgbLightControllerComponent.cs b/Content.Shared/Light/Components/RgbLightControllerComponent.cs similarity index 88% rename from Content.Shared/Light/Component/RgbLightControllerComponent.cs rename to Content.Shared/Light/Components/RgbLightControllerComponent.cs index cadcb1c0c98..24beed7942b 100644 --- a/Content.Shared/Light/Component/RgbLightControllerComponent.cs +++ b/Content.Shared/Light/Components/RgbLightControllerComponent.cs @@ -1,7 +1,7 @@ using Robust.Shared.GameStates; using Robust.Shared.Serialization; -namespace Content.Shared.Light.Component; +namespace Content.Shared.Light.Components; /// /// Makes the color of lights on an entity fluctuate. Will update point-light color and modulate some or all of the @@ -10,10 +10,8 @@ namespace Content.Shared.Light.Component; /// /// Networked ~~solely for admemes~~ for completely legitimate reasons, like hacked energy swords. /// -[NetworkedComponent] -[RegisterComponent] -[Access(typeof(SharedRgbLightControllerSystem))] -public sealed class RgbLightControllerComponent : Robust.Shared.GameObjects.Component +[NetworkedComponent, RegisterComponent, Access(typeof(SharedRgbLightControllerSystem))] +public sealed partial class RgbLightControllerComponent : Component { [DataField("cycleRate")] public float CycleRate { get; set; } = 0.1f; diff --git a/Content.Shared/Light/Components/RotatingLightComponent.cs b/Content.Shared/Light/Components/RotatingLightComponent.cs new file mode 100644 index 00000000000..f9be15ce89c --- /dev/null +++ b/Content.Shared/Light/Components/RotatingLightComponent.cs @@ -0,0 +1,21 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Light.Components; + +/// +/// Animates a point light's rotation while enabled. +/// All animation is done in the client system. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState(true)] +[Access(typeof(SharedRotatingLightSystem))] +public sealed partial class RotatingLightComponent : Component +{ + /// + /// Speed to rotate at, in degrees per second + /// + [DataField("speed")] + public float Speed = 90f; + + [ViewVariables, AutoNetworkedField] + public bool Enabled = true; +} diff --git a/Content.Shared/Light/Components/SharedEmergencyLightComponent.cs b/Content.Shared/Light/Components/SharedEmergencyLightComponent.cs new file mode 100644 index 00000000000..cf05af19c1f --- /dev/null +++ b/Content.Shared/Light/Components/SharedEmergencyLightComponent.cs @@ -0,0 +1,26 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared.Light.Components; + +/// +/// Handles station alert level and power changes for emergency lights. +/// All logic is serverside, animation is handled by . +/// +[Access(typeof(SharedEmergencyLightSystem))] +public abstract partial class SharedEmergencyLightComponent : Component +{ +} + +[Serializable, NetSerializable] +public enum EmergencyLightVisuals +{ + On, + Color +} + +public enum EmergencyLightVisualLayers +{ + Base, + LightOff, + LightOn, +} diff --git a/Content.Shared/Light/Components/SharedExpendableLightComponent.cs b/Content.Shared/Light/Components/SharedExpendableLightComponent.cs new file mode 100644 index 00000000000..c802700b62c --- /dev/null +++ b/Content.Shared/Light/Components/SharedExpendableLightComponent.cs @@ -0,0 +1,57 @@ +using Robust.Shared.Audio; +using Robust.Shared.GameStates; +using Robust.Shared.Serialization; + +namespace Content.Shared.Light.Components; + +[NetworkedComponent] +public abstract partial class SharedExpendableLightComponent : Component +{ + public static readonly AudioParams LoopedSoundParams = new(0, 1, "Master", 62.5f, 1, 1, true, 0.3f); + + [ViewVariables(VVAccess.ReadOnly)] + public ExpendableLightState CurrentState { get; set; } + + [DataField("turnOnBehaviourID")] + public string TurnOnBehaviourID { get; set; } = string.Empty; + + [DataField("fadeOutBehaviourID")] + public string FadeOutBehaviourID { get; set; } = string.Empty; + + [DataField("glowDuration")] + public float GlowDuration { get; set; } = 60 * 15f; + + [DataField("fadeOutDuration")] + public float FadeOutDuration { get; set; } = 60 * 5f; + + [DataField("spentDesc")] + public string SpentDesc { get; set; } = string.Empty; + + [DataField("spentName")] + public string SpentName { get; set; } = string.Empty; + + [DataField("litSound")] + public SoundSpecifier? LitSound { get; set; } + + [DataField("loopedSound")] + public SoundSpecifier? LoopedSound { get; set; } + + [DataField("dieSound")] + public SoundSpecifier? DieSound { get; set; } = null; +} + +[Serializable, NetSerializable] +public enum ExpendableLightVisuals +{ + State, + Behavior +} + +[Serializable, NetSerializable] +public enum ExpendableLightState +{ + BrandNew, + Lit, + Fading, + Dead +} diff --git a/Content.Shared/Light/Components/SharedLightBehaviourComponent.cs b/Content.Shared/Light/Components/SharedLightBehaviourComponent.cs new file mode 100644 index 00000000000..b93cfeef7e5 --- /dev/null +++ b/Content.Shared/Light/Components/SharedLightBehaviourComponent.cs @@ -0,0 +1,8 @@ +namespace Content.Shared.Light.Components; + +/// +/// A component which applies a specific behaviour to a PointLightComponent on its owner. +/// +public abstract partial class SharedLightBehaviourComponent : Component +{ +} diff --git a/Content.Shared/Light/Component/UnpoweredFlashlightComponent.cs b/Content.Shared/Light/Components/UnpoweredFlashlightComponent.cs similarity index 61% rename from Content.Shared/Light/Component/UnpoweredFlashlightComponent.cs rename to Content.Shared/Light/Components/UnpoweredFlashlightComponent.cs index 108c252b614..e2146abe2f8 100644 --- a/Content.Shared/Light/Component/UnpoweredFlashlightComponent.cs +++ b/Content.Shared/Light/Components/UnpoweredFlashlightComponent.cs @@ -1,23 +1,26 @@ -using Content.Shared.Actions.ActionTypes; using Content.Shared.Decals; using Robust.Shared.Audio; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -namespace Content.Shared.Light.Component; +namespace Content.Shared.Light.Components; /// /// This is simplified version of . /// It doesn't consume any power and can be toggle only by verb. /// [RegisterComponent] -public sealed class UnpoweredFlashlightComponent : Robust.Shared.GameObjects.Component +public sealed partial class UnpoweredFlashlightComponent : Component { [DataField("toggleFlashlightSound")] public SoundSpecifier ToggleSound = new SoundPathSpecifier("/Audio/Items/flashlight_pda.ogg"); [ViewVariables] public bool LightOn = false; - [DataField("toggleAction", required: true)] - public InstantAction ToggleAction = new(); + [DataField("toggleAction", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string? ToggleAction = "ActionToggleLight"; + + [DataField("toggleActionEntity")] public EntityUid? ToggleActionEntity; /// /// ID that determines the list diff --git a/Content.Shared/Light/PoweredLightDoAfterEvent.cs b/Content.Shared/Light/PoweredLightDoAfterEvent.cs index ac1a7045e93..9685ee6ebef 100644 --- a/Content.Shared/Light/PoweredLightDoAfterEvent.cs +++ b/Content.Shared/Light/PoweredLightDoAfterEvent.cs @@ -4,6 +4,6 @@ namespace Content.Shared.Light; [Serializable, NetSerializable] -public sealed class PoweredLightDoAfterEvent : SimpleDoAfterEvent +public sealed partial class PoweredLightDoAfterEvent : SimpleDoAfterEvent { -} \ No newline at end of file +} diff --git a/Content.Shared/Light/SharedEmergencyLightSystem.cs b/Content.Shared/Light/SharedEmergencyLightSystem.cs index 65948cfb98d..3cb71b1a701 100644 --- a/Content.Shared/Light/SharedEmergencyLightSystem.cs +++ b/Content.Shared/Light/SharedEmergencyLightSystem.cs @@ -1,7 +1,5 @@ -namespace Content.Shared.Light -{ - public abstract class SharedEmergencyLightSystem : EntitySystem - { +namespace Content.Shared.Light; - } +public abstract class SharedEmergencyLightSystem : EntitySystem +{ } diff --git a/Content.Shared/Light/SharedHandheldLightSystem.cs b/Content.Shared/Light/SharedHandheldLightSystem.cs index 5101ca4f772..ad209c95f8e 100644 --- a/Content.Shared/Light/SharedHandheldLightSystem.cs +++ b/Content.Shared/Light/SharedHandheldLightSystem.cs @@ -1,11 +1,9 @@ using Content.Shared.Actions; using Content.Shared.Clothing.EntitySystems; using Content.Shared.Item; +using Content.Shared.Light.Components; using Content.Shared.Toggleable; -using Robust.Shared.Audio; using Robust.Shared.GameStates; -using Robust.Shared.Player; -using Robust.Shared.Utility; namespace Content.Shared.Light; @@ -73,8 +71,8 @@ public void UpdateVisuals(EntityUid uid, HandheldLightComponent? component = nul _clothingSys.SetEquippedPrefix(uid, prefix); } - if (component.ToggleAction != null) - _actionSystem.SetToggled(component.ToggleAction, component.Activated); + if (component.ToggleActionEntity != null) + _actionSystem.SetToggled(component.ToggleActionEntity, component.Activated); _appearance.SetData(uid, ToggleableLightVisuals.Enabled, component.Activated, appearance); } diff --git a/Content.Shared/Light/SharedRgbLightControllerSystem.cs b/Content.Shared/Light/SharedRgbLightControllerSystem.cs index 7ac2b85a50d..1bba91c5e7b 100644 --- a/Content.Shared/Light/SharedRgbLightControllerSystem.cs +++ b/Content.Shared/Light/SharedRgbLightControllerSystem.cs @@ -1,4 +1,4 @@ -using Content.Shared.Light.Component; +using Content.Shared.Light.Components; using Robust.Shared.GameStates; namespace Content.Shared.Light; diff --git a/Content.Shared/Light/SharedRotatingLightSystem.cs b/Content.Shared/Light/SharedRotatingLightSystem.cs new file mode 100644 index 00000000000..ab816870d1c --- /dev/null +++ b/Content.Shared/Light/SharedRotatingLightSystem.cs @@ -0,0 +1,5 @@ +namespace Content.Shared.Light; + +public abstract class SharedRotatingLightSystem : EntitySystem +{ +} diff --git a/Content.Shared/Lightning/Components/SharedLightningComponent.cs b/Content.Shared/Lightning/Components/SharedLightningComponent.cs index 7fc2dcacbad..e01307bfd9e 100644 --- a/Content.Shared/Lightning/Components/SharedLightningComponent.cs +++ b/Content.Shared/Lightning/Components/SharedLightningComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Lightning.Components; /// /// Handles how lightning acts and is spawned. Use the ShootLightning method to fire lightning from one user to a target. /// -public abstract class SharedLightningComponent : Component +public abstract partial class SharedLightningComponent : Component { /// /// Can this lightning arc? diff --git a/Content.Shared/Localizations/ContentLocalizationManager.cs b/Content.Shared/Localizations/ContentLocalizationManager.cs index f974eb07859..0a06d9ba4f3 100644 --- a/Content.Shared/Localizations/ContentLocalizationManager.cs +++ b/Content.Shared/Localizations/ContentLocalizationManager.cs @@ -115,7 +115,7 @@ public static string FormatList(List list) <= 0 => string.Empty, 1 => list[0], 2 => $"{list[0]} and {list[1]}", - > 2 => $"{string.Join(", ", list.GetRange(0, list.Count - 2))}, and {list[^1]}" + _ => $"{string.Join(", ", list.GetRange(0, list.Count - 1))}, and {list[^1]}" }; } diff --git a/Content.Shared/Lock/LockSystem.cs b/Content.Shared/Lock/LockSystem.cs index 7b2500b1d91..97baa28bf90 100644 --- a/Content.Shared/Lock/LockSystem.cs +++ b/Content.Shared/Lock/LockSystem.cs @@ -183,7 +183,7 @@ private bool HasUserAccess(EntityUid uid, EntityUid user, AccessReaderComponent? if (!Resolve(uid, ref reader, false)) return true; - if (_accessReader.IsAllowed(user, reader)) + if (_accessReader.IsAllowed(user, uid, reader)) return true; if (!quiet) diff --git a/Content.Shared/Lube/LubeComponent.cs b/Content.Shared/Lube/LubeComponent.cs index d945f142653..6a99e3cf144 100644 --- a/Content.Shared/Lube/LubeComponent.cs +++ b/Content.Shared/Lube/LubeComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Lube; [RegisterComponent, NetworkedComponent] -public sealed class LubeComponent : Component +public sealed partial class LubeComponent : Component { [DataField("squeeze")] public SoundSpecifier Squeeze = new SoundPathSpecifier("/Audio/Items/squeezebottle.ogg"); diff --git a/Content.Shared/Lube/LubedComponent.cs b/Content.Shared/Lube/LubedComponent.cs index 1fd3322dc87..fe1946ddb15 100644 --- a/Content.Shared/Lube/LubedComponent.cs +++ b/Content.Shared/Lube/LubedComponent.cs @@ -1,7 +1,7 @@ namespace Content.Shared.Lube; [RegisterComponent] -public sealed class LubedComponent : Component +public sealed partial class LubedComponent : Component { /// /// Reverts name to before prefix event (essentially removes prefix). diff --git a/Content.Server/Magic/Events/ChangeComponentsSpellEvent.cs b/Content.Shared/Magic/Events/ChangeComponentSpellEvent.cs similarity index 73% rename from Content.Server/Magic/Events/ChangeComponentsSpellEvent.cs rename to Content.Shared/Magic/Events/ChangeComponentSpellEvent.cs index 2597a3eca93..61e75c8b1aa 100644 --- a/Content.Server/Magic/Events/ChangeComponentsSpellEvent.cs +++ b/Content.Shared/Magic/Events/ChangeComponentSpellEvent.cs @@ -1,12 +1,12 @@ -using Content.Shared.Actions; +using Content.Shared.Actions; using Robust.Shared.Prototypes; -namespace Content.Server.Magic.Events; +namespace Content.Shared.Magic.Events; /// /// Spell that uses the magic of ECS to add & remove components. Components are first removed, then added. /// -public sealed class ChangeComponentsSpellEvent : EntityTargetActionEvent, ISpeakSpell +public sealed partial class ChangeComponentsSpellEvent : EntityTargetActionEvent, ISpeakSpell { // TODO allow it to set component data-fields? // for now a Hackish way to do that is to remove & add, but that doesn't allow you to selectively set specific data fields. @@ -20,5 +20,5 @@ public sealed class ChangeComponentsSpellEvent : EntityTargetActionEvent, ISpeak public HashSet ToRemove = new(); [DataField("speech")] - public string? Speech { get; } + public string? Speech { get; private set; } } diff --git a/Content.Server/Magic/Events/InstantSpawnSpellEvent.cs b/Content.Shared/Magic/Events/InstantSpawnSpellEvent.cs similarity index 56% rename from Content.Server/Magic/Events/InstantSpawnSpellEvent.cs rename to Content.Shared/Magic/Events/InstantSpawnSpellEvent.cs index 22f4166b62b..ef8d6898623 100644 --- a/Content.Server/Magic/Events/InstantSpawnSpellEvent.cs +++ b/Content.Shared/Magic/Events/InstantSpawnSpellEvent.cs @@ -2,9 +2,9 @@ using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -namespace Content.Server.Magic.Events; +namespace Content.Shared.Magic.Events; -public sealed class InstantSpawnSpellEvent : InstantActionEvent, ISpeakSpell +public sealed partial class InstantSpawnSpellEvent : InstantActionEvent, ISpeakSpell { /// /// What entity should be spawned. @@ -16,30 +16,10 @@ public sealed class InstantSpawnSpellEvent : InstantActionEvent, ISpeakSpell public bool PreventCollideWithCaster = true; [DataField("speech")] - public string? Speech { get; } + public string? Speech { get; private set; } /// /// Gets the targeted spawn positons; may lead to multiple entities being spawned. /// [DataField("posData")] public MagicSpawnData Pos = new TargetCasterPos(); } - -[ImplicitDataDefinitionForInheritors] -public abstract class MagicSpawnData -{ - -} - -/// -/// Spawns 1 at the caster's feet. -/// -public sealed class TargetCasterPos : MagicSpawnData {} - -/// -/// Targets the 3 tiles in front of the caster. -/// -public sealed class TargetInFront : MagicSpawnData -{ - [DataField("width")] - public int Width = 3; -} diff --git a/Content.Server/Magic/Events/KnockSpellEvent.cs b/Content.Shared/Magic/Events/KnockSpellEvent.cs similarity index 75% rename from Content.Server/Magic/Events/KnockSpellEvent.cs rename to Content.Shared/Magic/Events/KnockSpellEvent.cs index 8a25a5f495f..a3b0be55759 100644 --- a/Content.Server/Magic/Events/KnockSpellEvent.cs +++ b/Content.Shared/Magic/Events/KnockSpellEvent.cs @@ -1,9 +1,9 @@ using Content.Shared.Actions; using Robust.Shared.Audio; -namespace Content.Server.Magic.Events; +namespace Content.Shared.Magic.Events; -public sealed class KnockSpellEvent : InstantActionEvent, ISpeakSpell +public sealed partial class KnockSpellEvent : InstantActionEvent, ISpeakSpell { /// /// The range this spell opens doors in @@ -22,5 +22,5 @@ public sealed class KnockSpellEvent : InstantActionEvent, ISpeakSpell public float KnockVolume = 5f; [DataField("speech")] - public string? Speech { get; } + public string? Speech { get; private set; } } diff --git a/Content.Server/Magic/Events/ProjectileSpellEvent.cs b/Content.Shared/Magic/Events/ProjectileSpellEvent.cs similarity index 73% rename from Content.Server/Magic/Events/ProjectileSpellEvent.cs rename to Content.Shared/Magic/Events/ProjectileSpellEvent.cs index bede745b92a..44966257699 100644 --- a/Content.Server/Magic/Events/ProjectileSpellEvent.cs +++ b/Content.Shared/Magic/Events/ProjectileSpellEvent.cs @@ -1,11 +1,10 @@ -using Content.Shared.Actions; -using Robust.Shared.Audio; +using Content.Shared.Actions; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -namespace Content.Server.Magic.Events; +namespace Content.Shared.Magic.Events; -public sealed class ProjectileSpellEvent : WorldTargetActionEvent, ISpeakSpell +public sealed partial class ProjectileSpellEvent : WorldTargetActionEvent, ISpeakSpell { /// /// What entity should be spawned. @@ -19,5 +18,5 @@ public sealed class ProjectileSpellEvent : WorldTargetActionEvent, ISpeakSpell [DataField("posData")] public MagicSpawnData Pos = new TargetCasterPos(); [DataField("speech")] - public string? Speech { get; } + public string? Speech { get; private set; } } diff --git a/Content.Server/Magic/Events/SmiteSpellEvent.cs b/Content.Shared/Magic/Events/SmiteSpellEvent.cs similarity index 61% rename from Content.Server/Magic/Events/SmiteSpellEvent.cs rename to Content.Shared/Magic/Events/SmiteSpellEvent.cs index 3a0001fdc33..08ec63c05e7 100644 --- a/Content.Server/Magic/Events/SmiteSpellEvent.cs +++ b/Content.Shared/Magic/Events/SmiteSpellEvent.cs @@ -1,8 +1,8 @@ using Content.Shared.Actions; -namespace Content.Server.Magic.Events; +namespace Content.Shared.Magic.Events; -public sealed class SmiteSpellEvent : EntityTargetActionEvent, ISpeakSpell +public sealed partial class SmiteSpellEvent : EntityTargetActionEvent, ISpeakSpell { /// /// Should this smite delete all parts/mechanisms gibbed except for the brain? @@ -11,5 +11,5 @@ public sealed class SmiteSpellEvent : EntityTargetActionEvent, ISpeakSpell public bool DeleteNonBrainParts = true; [DataField("speech")] - public string? Speech { get; } + public string? Speech { get; private set; } } diff --git a/Content.Server/Magic/Events/TeleportSpellEvent.cs b/Content.Shared/Magic/Events/TeleportSpellEvent.cs similarity index 67% rename from Content.Server/Magic/Events/TeleportSpellEvent.cs rename to Content.Shared/Magic/Events/TeleportSpellEvent.cs index d26c719a410..b24f6ec72f7 100644 --- a/Content.Server/Magic/Events/TeleportSpellEvent.cs +++ b/Content.Shared/Magic/Events/TeleportSpellEvent.cs @@ -1,15 +1,15 @@ using Content.Shared.Actions; using Robust.Shared.Audio; -namespace Content.Server.Magic.Events; +namespace Content.Shared.Magic.Events; -public sealed class TeleportSpellEvent : WorldTargetActionEvent, ISpeakSpell +public sealed partial class TeleportSpellEvent : WorldTargetActionEvent, ISpeakSpell { [DataField("blinkSound")] public SoundSpecifier BlinkSound = new SoundPathSpecifier("/Audio/Magic/blink.ogg"); [DataField("speech")] - public string? Speech { get; } + public string? Speech { get; private set; } /// /// Volume control for the spell. diff --git a/Content.Server/Magic/Events/WorldSpawnSpellEvent.cs b/Content.Shared/Magic/Events/WorldSpawnSpellEvent.cs similarity index 81% rename from Content.Server/Magic/Events/WorldSpawnSpellEvent.cs rename to Content.Shared/Magic/Events/WorldSpawnSpellEvent.cs index 9d1cc2c8441..4355cab8421 100644 --- a/Content.Server/Magic/Events/WorldSpawnSpellEvent.cs +++ b/Content.Shared/Magic/Events/WorldSpawnSpellEvent.cs @@ -2,9 +2,9 @@ using Content.Shared.Actions; using Content.Shared.Storage; -namespace Content.Server.Magic.Events; +namespace Content.Shared.Magic.Events; -public sealed class WorldSpawnSpellEvent : WorldTargetActionEvent, ISpeakSpell +public sealed partial class WorldSpawnSpellEvent : WorldTargetActionEvent, ISpeakSpell { // TODO:This class needs combining with InstantSpawnSpellEvent @@ -28,6 +28,5 @@ public sealed class WorldSpawnSpellEvent : WorldTargetActionEvent, ISpeakSpell [DataField("lifetime")] public float? Lifetime; [DataField("speech")] - public string? Speech { get; } + public string? Speech { get; private set; } } - diff --git a/Content.Server/Magic/Events/ISpeakSpell.cs b/Content.Shared/Magic/ISpeakSpell.cs similarity index 82% rename from Content.Server/Magic/Events/ISpeakSpell.cs rename to Content.Shared/Magic/ISpeakSpell.cs index d7c7dbe250b..954b99417fc 100644 --- a/Content.Server/Magic/Events/ISpeakSpell.cs +++ b/Content.Shared/Magic/ISpeakSpell.cs @@ -1,4 +1,4 @@ -namespace Content.Server.Magic.Events; +namespace Content.Shared.Magic; public interface ISpeakSpell // The speak n spell interface { @@ -7,4 +7,3 @@ public interface ISpeakSpell // The speak n spell interface /// public string? Speech { get; } } - diff --git a/Content.Shared/Magic/MagicSpawnData.cs b/Content.Shared/Magic/MagicSpawnData.cs new file mode 100644 index 00000000000..cd96d4ad76b --- /dev/null +++ b/Content.Shared/Magic/MagicSpawnData.cs @@ -0,0 +1,20 @@ +namespace Content.Shared.Magic; + +[ImplicitDataDefinitionForInheritors] +public abstract partial class MagicSpawnData +{ + +} + +/// +/// Spawns 1 at the caster's feet. +/// +public sealed partial class TargetCasterPos : MagicSpawnData {} + +/// +/// Targets the 3 tiles in front of the caster. +/// +public sealed partial class TargetInFront : MagicSpawnData +{ + [DataField("width")] public int Width = 3; +} diff --git a/Content.Shared/Magic/SpellbookDoAfterEvent.cs b/Content.Shared/Magic/SpellbookDoAfterEvent.cs index 7c05ecb8a9e..88b7514fcd4 100644 --- a/Content.Shared/Magic/SpellbookDoAfterEvent.cs +++ b/Content.Shared/Magic/SpellbookDoAfterEvent.cs @@ -4,6 +4,6 @@ namespace Content.Shared.Magic; [Serializable, NetSerializable] -public sealed class SpellbookDoAfterEvent : SimpleDoAfterEvent +public sealed partial class SpellbookDoAfterEvent : SimpleDoAfterEvent { -} \ No newline at end of file +} diff --git a/Content.Shared/Mapping/StartPlacementActionEvent.cs b/Content.Shared/Mapping/StartPlacementActionEvent.cs new file mode 100644 index 00000000000..9e5e2678982 --- /dev/null +++ b/Content.Shared/Mapping/StartPlacementActionEvent.cs @@ -0,0 +1,18 @@ +using Content.Shared.Actions; + +namespace Content.Shared.Mapping; + +public sealed partial class StartPlacementActionEvent : InstantActionEvent +{ + [DataField("entityType")] + public string? EntityType; + + [DataField("tileId")] + public string? TileId; + + [DataField("placementOption")] + public string? PlacementOption; + + [DataField("eraser")] + public bool Eraser; +} diff --git a/Content.Shared/Maps/ContentTileDefinition.cs b/Content.Shared/Maps/ContentTileDefinition.cs index e04100e9e21..eab373a4630 100644 --- a/Content.Shared/Maps/ContentTileDefinition.cs +++ b/Content.Shared/Maps/ContentTileDefinition.cs @@ -1,4 +1,5 @@ using Content.Shared.Atmos; +using Content.Shared.Movement.Systems; using Robust.Shared.Audio; using Robust.Shared.Map; using Robust.Shared.Prototypes; @@ -26,14 +27,16 @@ public sealed class ContentTileDefinition : IPrototype, IInheritingPrototype, IT [DataField("name")] public string Name { get; private set; } = ""; - [DataField("sprite")] public ResPath? Sprite { get; } + [DataField("sprite")] public ResPath? Sprite { get; private set; } - [DataField("edgeSprites")] public Dictionary EdgeSprites { get; } = new(); + [DataField("edgeSprites")] public Dictionary EdgeSprites { get; private set; } = new(); + + [DataField("edgeSpritePriority")] public int EdgeSpritePriority { get; private set; } = 0; [DataField("isSubfloor")] public bool IsSubFloor { get; private set; } [DataField("baseTurf")] - public string BaseTurf { get; } = string.Empty; + public string BaseTurf { get; private set; } = string.Empty; [DataField("canCrowbar")] public bool CanCrowbar { get; private set; } @@ -47,12 +50,12 @@ public sealed class ContentTileDefinition : IPrototype, IInheritingPrototype, IT /// /// These play when the mob has shoes on. /// - [DataField("footstepSounds")] public SoundSpecifier? FootstepSounds { get; } + [DataField("footstepSounds")] public SoundSpecifier? FootstepSounds { get; private set; } /// /// These play when the mob has no shoes on. /// - [DataField("barestepSounds")] public SoundSpecifier? BarestepSounds { get; } = new SoundCollectionSpecifier("BarestepHard"); + [DataField("barestepSounds")] public SoundSpecifier? BarestepSounds { get; private set; } = new SoundCollectionSpecifier("BarestepHard"); [DataField("friction")] public float Friction { get; set; } = 0.2f; @@ -69,9 +72,28 @@ public sealed class ContentTileDefinition : IPrototype, IInheritingPrototype, IT [DataField("heatCapacity")] public float HeatCapacity = Atmospherics.MinimumHeatCapacity; [DataField("itemDrop", customTypeSerializer:typeof(PrototypeIdSerializer))] - public string ItemDropPrototypeName { get; } = "FloorTileItemSteel"; + public string ItemDropPrototypeName { get; private set; } = "FloorTileItemSteel"; [DataField("isSpace")] public bool IsSpace { get; private set; } + + /// + /// Friction override for mob mover in + /// + [DataField("mobFriction")] + public float? MobFriction { get; private set; } + + /// + /// No-input friction override for mob mover in + /// + [DataField("mobFrictionNoInput")] + public float? MobFrictionNoInput { get; private set; } + + /// + /// Accel override for mob mover in + /// + [DataField("mobAcceleration")] + public float? MobAcceleration { get; private set; } + [DataField("sturdy")] public bool Sturdy { get; private set; } = true; /// diff --git a/Content.Shared/Maps/SharedGridDraggingSystem.cs b/Content.Shared/Maps/SharedGridDraggingSystem.cs index 40dc6852aa4..9cc0ce1fe75 100644 --- a/Content.Shared/Maps/SharedGridDraggingSystem.cs +++ b/Content.Shared/Maps/SharedGridDraggingSystem.cs @@ -27,13 +27,13 @@ public sealed class GridDragToggleMessage : EntityEventArgs [Serializable, NetSerializable] public sealed class GridDragRequestPosition : EntityEventArgs { - public EntityUid Grid; + public NetEntity Grid; public Vector2 WorldPosition; } [Serializable, NetSerializable] public sealed class GridDragVelocityRequest : EntityEventArgs { - public EntityUid Grid; + public NetEntity Grid; public Vector2 LinearVelocity; } diff --git a/Content.Shared/MassMedia/Components/SharedNewsWriteComponent.cs b/Content.Shared/MassMedia/Components/SharedNewsWriteComponent.cs index 7ab737d48bc..503b8ee13b1 100644 --- a/Content.Shared/MassMedia/Components/SharedNewsWriteComponent.cs +++ b/Content.Shared/MassMedia/Components/SharedNewsWriteComponent.cs @@ -25,11 +25,12 @@ public NewsWriteBoundUserInterfaceState(NewsArticle[] articles, bool shareAvalib [Serializable, NetSerializable] public sealed class NewsWriteShareMessage : BoundUserInterfaceMessage { - public NewsArticle Article; - - public NewsWriteShareMessage(NewsArticle article) + public readonly string Name; + public readonly string Content; + public NewsWriteShareMessage(string name, string content) { - Article = article; + Name = name; + Content = content; } } diff --git a/Content.Shared/MassMedia/Systems/SharedNewsSystem.cs b/Content.Shared/MassMedia/Systems/SharedNewsSystem.cs index 1021f267341..64bc74229ca 100644 --- a/Content.Shared/MassMedia/Systems/SharedNewsSystem.cs +++ b/Content.Shared/MassMedia/Systems/SharedNewsSystem.cs @@ -1,13 +1,13 @@ -using Content.Shared.StationRecords; +using Robust.Shared.Serialization; namespace Content.Shared.MassMedia.Systems; -[Serializable] +[Serializable, NetSerializable] public struct NewsArticle { public string Name; public string Content; public string? Author; - public ICollection? AuthorStationRecordKeyIds; + public ICollection<(NetEntity, uint)>? AuthorStationRecordKeyIds; public TimeSpan ShareTime; } diff --git a/Content.Shared/Materials/ActiveMaterialReclaimerComponent.cs b/Content.Shared/Materials/ActiveMaterialReclaimerComponent.cs index b62be502e3d..9c2ee9632e2 100644 --- a/Content.Shared/Materials/ActiveMaterialReclaimerComponent.cs +++ b/Content.Shared/Materials/ActiveMaterialReclaimerComponent.cs @@ -9,7 +9,7 @@ namespace Content.Shared.Materials; /// /// [RegisterComponent, NetworkedComponent, Access(typeof(SharedMaterialReclaimerSystem))] -public sealed class ActiveMaterialReclaimerComponent : Component +public sealed partial class ActiveMaterialReclaimerComponent : Component { /// /// Container used to store the item currently being reclaimed diff --git a/Content.Shared/Materials/CollideMaterialReclaimerComponent.cs b/Content.Shared/Materials/CollideMaterialReclaimerComponent.cs index 4d9b072ad21..b59f21eef2c 100644 --- a/Content.Shared/Materials/CollideMaterialReclaimerComponent.cs +++ b/Content.Shared/Materials/CollideMaterialReclaimerComponent.cs @@ -6,7 +6,7 @@ /// /// [RegisterComponent] -public sealed class CollideMaterialReclaimerComponent : Component +public sealed partial class CollideMaterialReclaimerComponent : Component { /// /// The fixture that starts reclaiming on collision. diff --git a/Content.Shared/Materials/InsertingMaterialStorageComponent.cs b/Content.Shared/Materials/InsertingMaterialStorageComponent.cs index 6c0ed0f9699..e841853c8e1 100644 --- a/Content.Shared/Materials/InsertingMaterialStorageComponent.cs +++ b/Content.Shared/Materials/InsertingMaterialStorageComponent.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Materials; [RegisterComponent, NetworkedComponent] -public sealed class InsertingMaterialStorageComponent : Component +public sealed partial class InsertingMaterialStorageComponent : Component { /// /// The time when insertion ends. diff --git a/Content.Shared/Materials/MaterialComponent.cs b/Content.Shared/Materials/MaterialComponent.cs index 3a5bba3e1ff..46e57697c99 100644 --- a/Content.Shared/Materials/MaterialComponent.cs +++ b/Content.Shared/Materials/MaterialComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Materials; /// The material amounts themselves are in /// [RegisterComponent, NetworkedComponent] -public sealed class MaterialComponent : Component +public sealed partial class MaterialComponent : Component { } diff --git a/Content.Shared/Materials/MaterialPrototype.cs b/Content.Shared/Materials/MaterialPrototype.cs index 1418ed2182d..7eb4dfd9a43 100644 --- a/Content.Shared/Materials/MaterialPrototype.cs +++ b/Content.Shared/Materials/MaterialPrototype.cs @@ -22,7 +22,7 @@ public sealed class MaterialPrototype : IPrototype, IInheritingPrototype [ViewVariables] [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// /// For material storage to be able to convert back and forth @@ -33,16 +33,24 @@ public sealed class MaterialPrototype : IPrototype, IInheritingPrototype public string? StackEntity; [DataField("name")] - public string Name = ""; + public string Name = string.Empty; + + /// + /// Locale id for the unit of this material. + /// Lathe recipe tooltips and material storage display use this to let you change a material to sound nicer. + /// For example, 5 bars of gold is better than 5 sheets of gold. + /// + [DataField("unit")] + public string Unit = "materials-unit-sheet"; [DataField("color")] - public Color Color { get; } = Color.Gray; + public Color Color { get; private set; } = Color.Gray; /// /// An icon used to represent the material in graphic interfaces. /// [DataField("icon")] - public SpriteSpecifier Icon { get; } = SpriteSpecifier.Invalid; + public SpriteSpecifier Icon { get; private set; } = SpriteSpecifier.Invalid; /// /// The price per cm3. diff --git a/Content.Shared/Materials/MaterialReclaimerComponent.cs b/Content.Shared/Materials/MaterialReclaimerComponent.cs index b29776a851d..61081763528 100644 --- a/Content.Shared/Materials/MaterialReclaimerComponent.cs +++ b/Content.Shared/Materials/MaterialReclaimerComponent.cs @@ -14,7 +14,7 @@ namespace Content.Shared.Materials; /// into the raw materials and chemicals that make them up. /// [RegisterComponent, NetworkedComponent, Access(typeof(SharedMaterialReclaimerSystem))] -public sealed class MaterialReclaimerComponent : Component +public sealed partial class MaterialReclaimerComponent : Component { /// /// Whether or not the machine has power. We put it here diff --git a/Content.Shared/Materials/MaterialStorageComponent.cs b/Content.Shared/Materials/MaterialStorageComponent.cs index 71b4056042a..50935bcd474 100644 --- a/Content.Shared/Materials/MaterialStorageComponent.cs +++ b/Content.Shared/Materials/MaterialStorageComponent.cs @@ -10,7 +10,7 @@ namespace Content.Shared.Materials; [Access(typeof(SharedMaterialStorageSystem))] [RegisterComponent, NetworkedComponent] -public sealed class MaterialStorageComponent : Component +public sealed partial class MaterialStorageComponent : Component { [DataField("storage", customTypeSerializer: typeof(PrototypeIdDictionarySerializer))] public Dictionary Storage { get; set; } = new(); diff --git a/Content.Shared/Materials/PhysicalCompositionComponent.cs b/Content.Shared/Materials/PhysicalCompositionComponent.cs index 2d23a8ccf65..4066bb9f7cc 100644 --- a/Content.Shared/Materials/PhysicalCompositionComponent.cs +++ b/Content.Shared/Materials/PhysicalCompositionComponent.cs @@ -14,7 +14,7 @@ namespace Content.Shared.Materials; /// combination of the two systems. /// [RegisterComponent] -public sealed class PhysicalCompositionComponent : Component +public sealed partial class PhysicalCompositionComponent : Component { /// /// The materials that "make up" this entity @@ -27,4 +27,5 @@ public sealed class PhysicalCompositionComponent : Component /// [DataField("chemicalComposition", customTypeSerializer: typeof(PrototypeIdDictionarySerializer))] public Dictionary ChemicalComposition = new(); + // TODO use ReagentQuantity[] } diff --git a/Content.Shared/Materials/SharedMaterialReclaimerSystem.cs b/Content.Shared/Materials/SharedMaterialReclaimerSystem.cs index e6e511f8759..54ddc912896 100644 --- a/Content.Shared/Materials/SharedMaterialReclaimerSystem.cs +++ b/Content.Shared/Materials/SharedMaterialReclaimerSystem.cs @@ -83,7 +83,7 @@ private void OnEmagged(EntityUid uid, MaterialReclaimerComponent component, ref private void OnCollide(EntityUid uid, CollideMaterialReclaimerComponent component, ref StartCollideEvent args) { - if (args.OurFixture.ID != component.FixtureId) + if (args.OurFixtureId != component.FixtureId) return; if (!TryComp(uid, out var reclaimer)) return; @@ -120,7 +120,7 @@ public bool TryStartProcessItem(EntityUid uid, EntityUid item, MaterialReclaimer if (component.Blacklist is {} blacklist && blacklist.IsValid(item)) return false; - if (!_container.TryRemoveFromContainer(item)) + if (_container.TryGetContainingContainer(item, out _) && !_container.TryRemoveFromContainer(item)) return false; if (user != null) diff --git a/Content.Shared/Materials/SharedMaterialStorageSystem.cs b/Content.Shared/Materials/SharedMaterialStorageSystem.cs index d2a7af52c67..e54ff3faa3e 100644 --- a/Content.Shared/Materials/SharedMaterialStorageSystem.cs +++ b/Content.Shared/Materials/SharedMaterialStorageSystem.cs @@ -1,5 +1,6 @@ -using System.Linq; +using System.Linq; using Content.Shared.Interaction; +using Content.Shared.Interaction.Components; using Content.Shared.Stacks; using JetBrains.Annotations; using Robust.Shared.GameStates; @@ -182,6 +183,29 @@ public bool TryChangeMaterialAmount(EntityUid uid, string materialId, int volume return true; } + /// + /// Tries to set the amount of material in the storage to a specific value. + /// Still respects the filters in place. + /// + /// The entity to change the material storage on. + /// The ID of the material to change. + /// The stored material volume to set the storage to. + /// The storage component on . Resolved automatically if not given. + /// True if it was successful (enough space etc). + public bool TrySetMaterialAmount( + EntityUid uid, + string materialId, + int volume, + MaterialStorageComponent? component = null) + { + if (!Resolve(uid, ref component)) + return false; + + var curAmount = GetMaterialAmount(uid, materialId, component); + var delta = volume - curAmount; + return TryChangeMaterialAmount(uid, materialId, delta, component); + } + /// /// Tries to insert an entity into the material storage. /// @@ -201,6 +225,9 @@ public virtual bool TryInsertMaterialEntity(EntityUid user, if (storage.EntityWhitelist?.IsValid(toInsert) == false) return false; + if (HasComp(toInsert)) + return false; + // Material Whitelist checked implicitly by CanChangeMaterialAmount(); var multiplier = TryComp(toInsert, out var stackComponent) ? stackComponent.Count : 1; diff --git a/Content.Shared/Mech/Components/MechComponent.cs b/Content.Shared/Mech/Components/MechComponent.cs index a6a2aa0d5ce..2f889a8d49d 100644 --- a/Content.Shared/Mech/Components/MechComponent.cs +++ b/Content.Shared/Mech/Components/MechComponent.cs @@ -1,4 +1,3 @@ -using Content.Shared.Actions.ActionTypes; using Content.Shared.FixedPoint; using Content.Shared.Whitelist; using Robust.Shared.Containers; @@ -15,7 +14,7 @@ namespace Content.Shared.Mech.Components; /// powered via an internal battery. /// [RegisterComponent, NetworkedComponent] -public sealed class MechComponent : Component +public sealed partial class MechComponent : Component { /// /// How much "health" the mech has left. @@ -142,12 +141,12 @@ public sealed class MechComponent : Component public List StartingEquipment = new(); #region Action Prototypes - [DataField("mechCycleAction", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string MechCycleAction = "MechCycleEquipment"; - [DataField("mechUiAction", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string MechUiAction = "MechOpenUI"; - [DataField("mechEjectAction", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string MechEjectAction = "MechEject"; + [DataField("mechCycleAction", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string MechCycleAction = "ActionMechCycleEquipment"; + [DataField("mechUiAction", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string MechUiAction = "ActionMechOpenUI"; + [DataField("mechEjectAction", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string MechEjectAction = "ActionMechEject"; #endregion #region Visualizer States @@ -170,6 +169,6 @@ public sealed class MechComponentState : ComponentState public FixedPoint2 MaxIntegrity; public FixedPoint2 Energy; public FixedPoint2 MaxEnergy; - public EntityUid? CurrentSelectedEquipment; + public NetEntity? CurrentSelectedEquipment; public bool Broken; } diff --git a/Content.Shared/Mech/Components/MechPilotComponent.cs b/Content.Shared/Mech/Components/MechPilotComponent.cs index 11e443820ed..364bd0bf14b 100644 --- a/Content.Shared/Mech/Components/MechPilotComponent.cs +++ b/Content.Shared/Mech/Components/MechPilotComponent.cs @@ -10,7 +10,7 @@ namespace Content.Shared.Mech.Components; /// Get in the robot, Shinji /// [RegisterComponent, NetworkedComponent] -public sealed class MechPilotComponent : Component +public sealed partial class MechPilotComponent : Component { /// /// The mech being piloted @@ -22,5 +22,5 @@ public sealed class MechPilotComponent : Component [Serializable, NetSerializable] public sealed class MechPilotComponentState : ComponentState { - public EntityUid Mech; + public NetEntity Mech; } diff --git a/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs b/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs index 892249b9a27..026f7317296 100644 --- a/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs +++ b/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs @@ -3,11 +3,9 @@ using Content.Shared.Access.Systems; using Content.Shared.ActionBlocker; using Content.Shared.Actions; -using Content.Shared.Actions.ActionTypes; using Content.Shared.Destructible; using Content.Shared.DoAfter; using Content.Shared.FixedPoint; -using Content.Shared.Hands.Components; using Content.Shared.Interaction; using Content.Shared.Interaction.Components; using Content.Shared.Interaction.Events; @@ -19,7 +17,7 @@ using Content.Shared.Weapons.Melee; using Robust.Shared.Containers; using Robust.Shared.GameStates; -using Robust.Shared.Prototypes; +using Robust.Shared.Network; using Robust.Shared.Serialization; using Robust.Shared.Timing; @@ -31,7 +29,7 @@ namespace Content.Shared.Mech.EntitySystems; public abstract class SharedMechSystem : EntitySystem { [Dependency] private readonly IGameTiming _timing = default!; - [Dependency] private readonly IPrototypeManager _prototype = default!; + [Dependency] private readonly INetManager _net = default!; [Dependency] private readonly ActionBlockerSystem _actionBlocker = default!; [Dependency] private readonly AccessReaderSystem _access = default!; [Dependency] private readonly SharedActionsSystem _actions = default!; @@ -71,7 +69,7 @@ private void OnGetState(EntityUid uid, MechComponent component, ref ComponentGet MaxIntegrity = component.MaxIntegrity, Energy = component.Energy, MaxEnergy = component.MaxEnergy, - CurrentSelectedEquipment = component.CurrentSelectedEquipment, + CurrentSelectedEquipment = GetNetEntity(component.CurrentSelectedEquipment), Broken = component.Broken }; } @@ -85,7 +83,7 @@ private void OnHandleState(EntityUid uid, MechComponent component, ref Component component.MaxIntegrity = state.MaxIntegrity; component.Energy = state.Energy; component.MaxEnergy = state.MaxEnergy; - component.CurrentSelectedEquipment = state.CurrentSelectedEquipment; + component.CurrentSelectedEquipment = EnsureEntity(state.CurrentSelectedEquipment, uid); component.Broken = state.Broken; } @@ -93,7 +91,7 @@ private void OnPilotGetState(EntityUid uid, MechPilotComponent component, ref Co { args.State = new MechPilotComponentState { - Mech = component.Mech + Mech = GetNetEntity(component.Mech) }; } @@ -102,7 +100,7 @@ private void OnPilotHandleState(EntityUid uid, MechPilotComponent component, ref if (args.Current is not MechPilotComponentState state) return; - component.Mech = state.Mech; + component.Mech = EnsureEntity(state.Mech, uid); } #endregion @@ -176,14 +174,15 @@ private void SetupUser(EntityUid mech, EntityUid pilot, MechComponent? component _mover.SetRelay(pilot, mech); _interaction.SetRelay(pilot, mech, irelay); rider.Mech = mech; - Dirty(rider); + Dirty(pilot, rider); - _actions.AddAction(pilot, - new InstantAction(_prototype.Index(component.MechCycleAction)), mech); - _actions.AddAction(pilot, new InstantAction(_prototype.Index(component.MechUiAction)), + if (_net.IsClient) + return; + + _actions.AddAction(pilot, Spawn(component.MechCycleAction), mech); + _actions.AddAction(pilot, Spawn(component.MechUiAction), mech); - _actions.AddAction(pilot, - new InstantAction(_prototype.Index(component.MechEjectAction)), mech); + _actions.AddAction(pilot, Spawn(component.MechEjectAction), mech); } private void RemoveUser(EntityUid mech, EntityUid pilot) @@ -406,7 +405,7 @@ public virtual void UpdateUserInterface(EntityUid uid, MechComponent? component /// /// /// Whether or not the entity was inserted - public virtual bool TryInsert(EntityUid uid, EntityUid? toInsert, MechComponent? component = null) + public bool TryInsert(EntityUid uid, EntityUid? toInsert, MechComponent? component = null) { if (!Resolve(uid, ref component)) return false; @@ -429,7 +428,7 @@ public virtual bool TryInsert(EntityUid uid, EntityUid? toInsert, MechComponent? /// /// /// Whether or not the pilot was ejected. - public virtual bool TryEject(EntityUid uid, MechComponent? component = null) + public bool TryEject(EntityUid uid, MechComponent? component = null) { if (!Resolve(uid, ref component)) return false; @@ -485,7 +484,7 @@ private void UpdateAppearance(EntityUid uid, MechComponent? component = null, /// on both success and failure /// [Serializable, NetSerializable] -public sealed class RemoveBatteryEvent : SimpleDoAfterEvent +public sealed partial class RemoveBatteryEvent : SimpleDoAfterEvent { } @@ -494,7 +493,7 @@ public sealed class RemoveBatteryEvent : SimpleDoAfterEvent /// on both success and failure /// [Serializable, NetSerializable] -public sealed class MechExitEvent : SimpleDoAfterEvent +public sealed partial class MechExitEvent : SimpleDoAfterEvent { } @@ -502,6 +501,6 @@ public sealed class MechExitEvent : SimpleDoAfterEvent /// Event raised when a person enters a mech, on both success and failure /// [Serializable, NetSerializable] -public sealed class MechEntryEvent : SimpleDoAfterEvent +public sealed partial class MechEntryEvent : SimpleDoAfterEvent { } diff --git a/Content.Shared/Mech/Equipment/Components/MechEquipmentComponent.cs b/Content.Shared/Mech/Equipment/Components/MechEquipmentComponent.cs index 42c3543d56f..3933f122847 100644 --- a/Content.Shared/Mech/Equipment/Components/MechEquipmentComponent.cs +++ b/Content.Shared/Mech/Equipment/Components/MechEquipmentComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Mech.Equipment.Components; /// A piece of equipment that can be installed into /// [RegisterComponent] -public sealed class MechEquipmentComponent : Component +public sealed partial class MechEquipmentComponent : Component { /// /// How long does it take to install this piece of equipment @@ -42,12 +42,12 @@ public sealed class MechEquipmentInstallCancelled : EntityEventArgs } [Serializable, NetSerializable] -public sealed class GrabberDoAfterEvent : SimpleDoAfterEvent +public sealed partial class GrabberDoAfterEvent : SimpleDoAfterEvent { } [Serializable, NetSerializable] -public sealed class InsertEquipmentEvent : SimpleDoAfterEvent +public sealed partial class InsertEquipmentEvent : SimpleDoAfterEvent { } diff --git a/Content.Shared/Mech/Equipment/Systems/MechSoundboardSystem.cs b/Content.Shared/Mech/Equipment/Systems/MechSoundboardSystem.cs index 5431c659c36..b4254fe0798 100644 --- a/Content.Shared/Mech/Equipment/Systems/MechSoundboardSystem.cs +++ b/Content.Shared/Mech/Equipment/Systems/MechSoundboardSystem.cs @@ -31,7 +31,7 @@ private void OnUiStateReady(EntityUid uid, MechSoundboardComponent comp, MechEqu { Sounds = sounds.ToList() }; - args.States.Add(uid, state); + args.States.Add(GetNetEntity(uid), state); } private void OnSoundboardMessage(EntityUid uid, MechSoundboardComponent comp, MechEquipmentUiMessageRelayEvent args) diff --git a/Content.Shared/Mech/MechUI.cs b/Content.Shared/Mech/MechUI.cs index f555fe69bd8..0d623078838 100644 --- a/Content.Shared/Mech/MechUI.cs +++ b/Content.Shared/Mech/MechUI.cs @@ -13,7 +13,7 @@ public enum MechUiKey : byte /// public sealed class MechEquipmentUiStateReadyEvent : EntityEventArgs { - public Dictionary States = new(); + public Dictionary States = new(); } /// @@ -35,9 +35,9 @@ public MechEquipmentUiMessageRelayEvent(MechEquipmentUiMessage message) [Serializable, NetSerializable] public sealed class MechEquipmentRemoveMessage : BoundUserInterfaceMessage { - public EntityUid Equipment; + public NetEntity Equipment; - public MechEquipmentRemoveMessage(EntityUid equipment) + public MechEquipmentRemoveMessage(NetEntity equipment) { Equipment = equipment; } @@ -49,7 +49,7 @@ public MechEquipmentRemoveMessage(EntityUid equipment) [Serializable, NetSerializable] public abstract class MechEquipmentUiMessage : BoundUserInterfaceMessage { - public EntityUid Equipment; + public NetEntity Equipment; } /// @@ -58,9 +58,9 @@ public abstract class MechEquipmentUiMessage : BoundUserInterfaceMessage [Serializable, NetSerializable] public sealed class MechGrabberEjectMessage : MechEquipmentUiMessage { - public EntityUid Item; + public NetEntity Item; - public MechGrabberEjectMessage(EntityUid equipment, EntityUid uid) + public MechGrabberEjectMessage(NetEntity equipment, NetEntity uid) { Equipment = equipment; Item = uid; @@ -75,7 +75,7 @@ public sealed class MechSoundboardPlayMessage : MechEquipmentUiMessage { public int Sound; - public MechSoundboardPlayMessage(EntityUid equipment, int sound) + public MechSoundboardPlayMessage(NetEntity equipment, int sound) { Equipment = equipment; Sound = sound; @@ -106,13 +106,13 @@ public MechSoundboardPlayMessage(EntityUid equipment, int sound) [Serializable, NetSerializable] public sealed class MechBoundUiState : BoundUserInterfaceState { - public Dictionary EquipmentStates = new(); + public Dictionary EquipmentStates = new(); } [Serializable, NetSerializable] public sealed class MechGrabberUiState : BoundUserInterfaceState { - public List Contents = new(); + public List Contents = new(); public int MaxContents; } diff --git a/Content.Shared/Mech/SharedMech.cs b/Content.Shared/Mech/SharedMech.cs index 19a0aa93133..94af4453d48 100644 --- a/Content.Shared/Mech/SharedMech.cs +++ b/Content.Shared/Mech/SharedMech.cs @@ -49,14 +49,14 @@ public record struct AttemptRemoveMechEquipmentEvent() public bool Cancelled = false; } -public sealed class MechToggleEquipmentEvent : InstantActionEvent +public sealed partial class MechToggleEquipmentEvent : InstantActionEvent { } -public sealed class MechOpenUiEvent : InstantActionEvent +public sealed partial class MechOpenUiEvent : InstantActionEvent { } -public sealed class MechEjectPilotEvent : InstantActionEvent +public sealed partial class MechEjectPilotEvent : InstantActionEvent { } diff --git a/Content.Shared/Medical/Cryogenics/ActiveCryoPodComponent.cs b/Content.Shared/Medical/Cryogenics/ActiveCryoPodComponent.cs index b48353fd77d..21c000a289c 100644 --- a/Content.Shared/Medical/Cryogenics/ActiveCryoPodComponent.cs +++ b/Content.Shared/Medical/Cryogenics/ActiveCryoPodComponent.cs @@ -4,6 +4,6 @@ /// Tracking component for an enabled cryo pod (which periodically tries to inject chemicals in the occupant, if one exists) /// [RegisterComponent] -public sealed class ActiveCryoPodComponent : Component +public sealed partial class ActiveCryoPodComponent : Component { } diff --git a/Content.Shared/Medical/Cryogenics/CryoPodComponent.cs b/Content.Shared/Medical/Cryogenics/CryoPodComponent.cs index d317d495468..a736a63cb22 100644 --- a/Content.Shared/Medical/Cryogenics/CryoPodComponent.cs +++ b/Content.Shared/Medical/Cryogenics/CryoPodComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Medical.Cryogenics; [RegisterComponent, NetworkedComponent] -public sealed class CryoPodComponent : Component +public sealed partial class CryoPodComponent : Component { /// /// Specifies the name of the atmospherics port to draw gas from. diff --git a/Content.Shared/Medical/Cryogenics/InsideCryoPodComponent.cs b/Content.Shared/Medical/Cryogenics/InsideCryoPodComponent.cs index 79265183440..03cc3edf13d 100644 --- a/Content.Shared/Medical/Cryogenics/InsideCryoPodComponent.cs +++ b/Content.Shared/Medical/Cryogenics/InsideCryoPodComponent.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Medical.Cryogenics; [RegisterComponent] [NetworkedComponent] -public sealed class InsideCryoPodComponent: Component +public sealed partial class InsideCryoPodComponent: Component { [ViewVariables] [DataField("previousOffset")] diff --git a/Content.Shared/Medical/Cryogenics/SharedCryoPodSystem.cs b/Content.Shared/Medical/Cryogenics/SharedCryoPodSystem.cs index 650e49e881f..03577d53ac8 100644 --- a/Content.Shared/Medical/Cryogenics/SharedCryoPodSystem.cs +++ b/Content.Shared/Medical/Cryogenics/SharedCryoPodSystem.cs @@ -23,6 +23,7 @@ public abstract partial class SharedCryoPodSystem: EntitySystem [Dependency] private readonly MobStateSystem _mobStateSystem = default!; [Dependency] private readonly SharedPopupSystem _popupSystem = default!; [Dependency] private readonly SharedContainerSystem _containerSystem = default!; + [Dependency] private readonly SharedPointLightSystem _light = default!; [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; public override void Initialize() @@ -51,14 +52,17 @@ protected void UpdateAppearance(EntityUid uid, CryoPodComponent? cryoPod = null, { if (!Resolve(uid, ref cryoPod)) return; + var cryoPodEnabled = HasComp(uid); - if (TryComp(uid, out var light)) + + if (_light.TryGetLight(uid, out var light)) { - light.Enabled = cryoPodEnabled && cryoPod.BodyContainer.ContainedEntity != null; + _light.SetEnabled(uid, cryoPodEnabled && cryoPod.BodyContainer.ContainedEntity != null, light); } if (!Resolve(uid, ref appearance)) return; + _appearanceSystem.SetData(uid, CryoPodComponent.CryoPodVisuals.ContainsEntity, cryoPod.BodyContainer.ContainedEntity == null, appearance); _appearanceSystem.SetData(uid, CryoPodComponent.CryoPodVisuals.IsOn, cryoPodEnabled, appearance); } @@ -172,12 +176,12 @@ protected void OnCryoPodPryFinished(EntityUid uid, CryoPodComponent cryoPodCompo } [Serializable, NetSerializable] - public sealed class CryoPodPryFinished : SimpleDoAfterEvent + public sealed partial class CryoPodPryFinished : SimpleDoAfterEvent { } [Serializable, NetSerializable] - public sealed class CryoPodDragFinished : SimpleDoAfterEvent + public sealed partial class CryoPodDragFinished : SimpleDoAfterEvent { } } diff --git a/Content.Shared/Medical/DefibrillatorComponent.cs b/Content.Shared/Medical/DefibrillatorComponent.cs index 983c63bc141..afd1e0cc969 100644 --- a/Content.Shared/Medical/DefibrillatorComponent.cs +++ b/Content.Shared/Medical/DefibrillatorComponent.cs @@ -12,7 +12,7 @@ namespace Content.Shared.Medical; /// person back into the world of the living. /// [RegisterComponent, NetworkedComponent] -public sealed class DefibrillatorComponent : Component +public sealed partial class DefibrillatorComponent : Component { /// /// Whether or not it's turned on and able to be used. @@ -94,7 +94,7 @@ public enum DefibrillatorVisuals : byte } [Serializable, NetSerializable] -public sealed class DefibrillatorZapDoAfterEvent : SimpleDoAfterEvent +public sealed partial class DefibrillatorZapDoAfterEvent : SimpleDoAfterEvent { } diff --git a/Content.Shared/Medical/HealingDoAfterEvent.cs b/Content.Shared/Medical/HealingDoAfterEvent.cs index 11e064e66d4..96f61a1d679 100644 --- a/Content.Shared/Medical/HealingDoAfterEvent.cs +++ b/Content.Shared/Medical/HealingDoAfterEvent.cs @@ -4,6 +4,6 @@ namespace Content.Shared.Medical; [Serializable, NetSerializable] -public sealed class HealingDoAfterEvent : SimpleDoAfterEvent +public sealed partial class HealingDoAfterEvent : SimpleDoAfterEvent { -} \ No newline at end of file +} diff --git a/Content.Shared/Medical/ReclaimerDoAfterEvent.cs b/Content.Shared/Medical/ReclaimerDoAfterEvent.cs index b94ed1e844f..87d96c76093 100644 --- a/Content.Shared/Medical/ReclaimerDoAfterEvent.cs +++ b/Content.Shared/Medical/ReclaimerDoAfterEvent.cs @@ -4,6 +4,6 @@ namespace Content.Shared.Medical; [Serializable, NetSerializable] -public sealed class ReclaimerDoAfterEvent : SimpleDoAfterEvent +public sealed partial class ReclaimerDoAfterEvent : SimpleDoAfterEvent { -} \ No newline at end of file +} diff --git a/Content.Shared/Medical/Stethoscope/StethoscopeActionEvent.cs b/Content.Shared/Medical/Stethoscope/StethoscopeActionEvent.cs new file mode 100644 index 00000000000..11ac8a2684f --- /dev/null +++ b/Content.Shared/Medical/Stethoscope/StethoscopeActionEvent.cs @@ -0,0 +1,7 @@ +using Content.Shared.Actions; + +namespace Content.Shared.Medical.Stethoscope; + +public sealed partial class StethoscopeActionEvent : EntityTargetActionEvent +{ +} diff --git a/Content.Shared/Medical/StethoscopeDoAfterEvent.cs b/Content.Shared/Medical/StethoscopeDoAfterEvent.cs index a6d2a6605dd..aeb1c133cf7 100644 --- a/Content.Shared/Medical/StethoscopeDoAfterEvent.cs +++ b/Content.Shared/Medical/StethoscopeDoAfterEvent.cs @@ -4,6 +4,6 @@ namespace Content.Shared.Medical; [Serializable, NetSerializable] -public sealed class StethoscopeDoAfterEvent : SimpleDoAfterEvent +public sealed partial class StethoscopeDoAfterEvent : SimpleDoAfterEvent { -} \ No newline at end of file +} diff --git a/Content.Shared/Medical/SuitSensor/SharedSuitSensor.cs b/Content.Shared/Medical/SuitSensor/SharedSuitSensor.cs index 8d2d7e230a4..4e27959f897 100644 --- a/Content.Shared/Medical/SuitSensor/SharedSuitSensor.cs +++ b/Content.Shared/Medical/SuitSensor/SharedSuitSensor.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Medical.SuitSensor [Serializable, NetSerializable] public sealed class SuitSensorStatus { - public SuitSensorStatus(EntityUid suitSensorUid, string name, string job) + public SuitSensorStatus(NetEntity suitSensorUid, string name, string job) { SuitSensorUid = suitSensorUid; Name = name; @@ -14,12 +14,12 @@ public SuitSensorStatus(EntityUid suitSensorUid, string name, string job) } public TimeSpan Timestamp; - public EntityUid SuitSensorUid; + public NetEntity SuitSensorUid; public string Name; public string Job; public bool IsAlive; public int? TotalDamage; - public EntityCoordinates? Coordinates; + public NetCoordinates? Coordinates; } [Serializable, NetSerializable] diff --git a/Content.Shared/MedicalScanner/HealthAnalyzerDoAfterEvent.cs b/Content.Shared/MedicalScanner/HealthAnalyzerDoAfterEvent.cs index ca2fea68cc0..cf5bd4f3976 100644 --- a/Content.Shared/MedicalScanner/HealthAnalyzerDoAfterEvent.cs +++ b/Content.Shared/MedicalScanner/HealthAnalyzerDoAfterEvent.cs @@ -4,6 +4,6 @@ namespace Content.Shared.MedicalScanner; [Serializable, NetSerializable] -public sealed class HealthAnalyzerDoAfterEvent : SimpleDoAfterEvent +public sealed partial class HealthAnalyzerDoAfterEvent : SimpleDoAfterEvent { } diff --git a/Content.Shared/MedicalScanner/HealthAnalyzerScannedUserMessage.cs b/Content.Shared/MedicalScanner/HealthAnalyzerScannedUserMessage.cs index 2691f1b7fcf..eb50323d38f 100644 --- a/Content.Shared/MedicalScanner/HealthAnalyzerScannedUserMessage.cs +++ b/Content.Shared/MedicalScanner/HealthAnalyzerScannedUserMessage.cs @@ -8,11 +8,11 @@ namespace Content.Shared.MedicalScanner; [Serializable, NetSerializable] public sealed class HealthAnalyzerScannedUserMessage : BoundUserInterfaceMessage { - public readonly EntityUid? TargetEntity; + public readonly NetEntity? TargetEntity; public float Temperature; public float BloodLevel; - public HealthAnalyzerScannedUserMessage(EntityUid? targetEntity, float temperature, float bloodLevel) + public HealthAnalyzerScannedUserMessage(NetEntity? targetEntity, float temperature, float bloodLevel) { TargetEntity = targetEntity; Temperature = temperature; diff --git a/Content.Shared/MedicalScanner/SharedMedicalScannerComponent.cs b/Content.Shared/MedicalScanner/SharedMedicalScannerComponent.cs index 848370c1d03..c3367556c08 100644 --- a/Content.Shared/MedicalScanner/SharedMedicalScannerComponent.cs +++ b/Content.Shared/MedicalScanner/SharedMedicalScannerComponent.cs @@ -3,7 +3,7 @@ namespace Content.Shared.MedicalScanner { - public abstract class SharedMedicalScannerComponent : Component + public abstract partial class SharedMedicalScannerComponent : Component { [Serializable, NetSerializable] public enum MedicalScannerVisuals : byte diff --git a/Content.Server/Mind/Components/MindContainerComponent.cs b/Content.Shared/Mind/Components/MindContainerComponent.cs similarity index 63% rename from Content.Server/Mind/Components/MindContainerComponent.cs rename to Content.Shared/Mind/Components/MindContainerComponent.cs index 4ff36b60f22..ca0f14d994c 100644 --- a/Content.Server/Mind/Components/MindContainerComponent.cs +++ b/Content.Shared/Mind/Components/MindContainerComponent.cs @@ -1,19 +1,19 @@ using System.Diagnostics.CodeAnalysis; -namespace Content.Server.Mind.Components +namespace Content.Shared.Mind.Components { /// - /// Stores a on a mob. + /// Stores a on a mob. /// - [RegisterComponent, Access(typeof(MindSystem))] - public sealed class MindContainerComponent : Component + [RegisterComponent, Access(typeof(SharedMindSystem))] + public sealed partial class MindContainerComponent : Component { /// /// The mind controlling this mob. Can be null. /// [ViewVariables] - [Access(typeof(MindSystem), Other = AccessPermissions.ReadWriteExecute)] // FIXME Friends - public Mind? Mind { get; set; } + [Access(typeof(SharedMindSystem), Other = AccessPermissions.ReadWriteExecute)] // FIXME Friends + public EntityUid? Mind { get; set; } /// /// True if we have a mind, false otherwise. @@ -34,16 +34,18 @@ public sealed class MindContainerComponent : Component /// [ViewVariables(VVAccess.ReadWrite)] [DataField("ghostOnShutdown")] - [Access(typeof(MindSystem), Other = AccessPermissions.ReadWriteExecute)] // FIXME Friends + [Access(typeof(SharedMindSystem), Other = AccessPermissions.ReadWriteExecute)] // FIXME Friends public bool GhostOnShutdown { get; set; } = true; } public sealed class MindRemovedMessage : EntityEventArgs { - public Mind OldMind; + public EntityUid OldMindId; + public MindComponent OldMind; - public MindRemovedMessage(Mind oldMind) + public MindRemovedMessage(EntityUid oldMindId, MindComponent oldMind) { + OldMindId = oldMindId; OldMind = oldMind; } } diff --git a/Content.Server/Mind/Components/TransferMindOnGibComponent.cs b/Content.Shared/Mind/Components/TransferMindOnGibComponent.cs similarity index 72% rename from Content.Server/Mind/Components/TransferMindOnGibComponent.cs rename to Content.Shared/Mind/Components/TransferMindOnGibComponent.cs index f2c95982c6c..03437967417 100644 --- a/Content.Server/Mind/Components/TransferMindOnGibComponent.cs +++ b/Content.Shared/Mind/Components/TransferMindOnGibComponent.cs @@ -1,10 +1,10 @@ using Content.Shared.Tag; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -namespace Content.Server.Mind.Components; +namespace Content.Shared.Mind.Components; [RegisterComponent] -public sealed class TransferMindOnGibComponent : Component +public sealed partial class TransferMindOnGibComponent : Component { [DataField("targetTag", customTypeSerializer: typeof(PrototypeIdSerializer))] public string TargetTag = "MindTransferTarget"; diff --git a/Content.Shared/Mind/Components/VisitingMindComponent.cs b/Content.Shared/Mind/Components/VisitingMindComponent.cs new file mode 100644 index 00000000000..2490054fd12 --- /dev/null +++ b/Content.Shared/Mind/Components/VisitingMindComponent.cs @@ -0,0 +1,13 @@ +namespace Content.Shared.Mind.Components +{ + [RegisterComponent] + public sealed partial class VisitingMindComponent : Component + { + [ViewVariables] + public EntityUid? MindId; + } + + public sealed class MindUnvisitedMessage : EntityEventArgs + { + } +} diff --git a/Content.Server/Mind/Mind.cs b/Content.Shared/Mind/MindComponent.cs similarity index 68% rename from Content.Server/Mind/Mind.cs rename to Content.Shared/Mind/MindComponent.cs index 844d1ee17c0..ed8eff76e85 100644 --- a/Content.Server/Mind/Mind.cs +++ b/Content.Shared/Mind/MindComponent.cs @@ -1,15 +1,14 @@ -using System.Linq; -using Content.Server.GameTicking; -using Content.Server.Mind.Components; -using Content.Server.Objectives; -using Content.Server.Roles; -using Robust.Server.Player; +using Content.Shared.GameTicking; +using Content.Shared.Mind.Components; +using Content.Shared.Objectives; using Robust.Shared.Network; +using Robust.Shared.Players; -namespace Content.Server.Mind +namespace Content.Shared.Mind { /// - /// A mind represents the IC "mind" of a player. Stores roles currently. + /// A mind represents the IC "mind" of a player. + /// Roles are attached as components to its owning entity. /// /// /// Think of it like this: if a player is supposed to have their memories, @@ -18,34 +17,22 @@ namespace Content.Server.Mind /// Things such as respawning do not follow, because you're a new character. /// Getting borged, cloned, turned into a catbeast, etc... will keep it following you. /// - public sealed class Mind + [RegisterComponent] + public sealed partial class MindComponent : Component { - internal readonly ISet Roles = new HashSet(); - internal readonly List Objectives = new(); - public string Briefing = String.Empty; - - /// - /// Creates the new mind. - /// Note: the Mind is NOT initially attached! - /// The provided UserId is solely for tracking of intended owner. - /// - public Mind() - { - } - /// /// The session ID of the player owning this mind. /// - [ViewVariables, Access(typeof(MindSystem))] + [ViewVariables, Access(typeof(SharedMindSystem))] public NetUserId? UserId { get; set; } /// /// The session ID of the original owner, if any. /// May end up used for round-end information (as the owner may have abandoned Mind since) /// - [ViewVariables, Access(typeof(MindSystem))] + [ViewVariables, Access(typeof(SharedMindSystem))] public NetUserId? OriginalOwnerUserId { get; set; } /// @@ -57,7 +44,7 @@ public Mind() [ViewVariables] public bool IsVisitingEntity => VisitingEntity != null; - [ViewVariables, Access(typeof(MindSystem))] + [ViewVariables, Access(typeof(SharedMindSystem))] public EntityUid? VisitingEntity { get; set; } [ViewVariables] @@ -84,15 +71,10 @@ public Mind() /// The entity currently owned by this mind. /// Can be null. /// - [ViewVariables, Access(typeof(MindSystem))] + [ViewVariables, Access(typeof(SharedMindSystem))] public EntityUid? OwnedEntity { get; set; } - /// - /// An enumerable over all the roles this mind has. - /// - [ViewVariables] - public IEnumerable AllRoles => Roles; - + // TODO move objectives out of mind component /// /// An enumerable over all the objectives this mind has. /// @@ -117,12 +99,7 @@ public Mind() /// The session of the player owning this mind. /// Can be null, in which case the player is currently not logged in. /// - [ViewVariables, Access(typeof(MindSystem), typeof(GameTicker))] - public IPlayerSession? Session { get; internal set; } - - /// - /// Gets the current job - /// - public Job? CurrentJob => Roles.OfType().SingleOrDefault(); + [ViewVariables, Access(typeof(SharedMindSystem), typeof(SharedGameTicker))] + public ICommonSession? Session { get; set; } } } diff --git a/Content.Shared/Mind/SharedMindSystem.cs b/Content.Shared/Mind/SharedMindSystem.cs new file mode 100644 index 00000000000..fc6cb8d570b --- /dev/null +++ b/Content.Shared/Mind/SharedMindSystem.cs @@ -0,0 +1,443 @@ +using System.Diagnostics.CodeAnalysis; +using Content.Shared.Administration.Logs; +using Content.Shared.Database; +using Content.Shared.Examine; +using Content.Shared.GameTicking; +using Content.Shared.Interaction.Events; +using Content.Shared.Mind.Components; +using Content.Shared.Mobs.Components; +using Content.Shared.Mobs.Systems; +using Content.Shared.Objectives; +using Content.Shared.Players; +using Robust.Shared.Map; +using Robust.Shared.Network; +using Robust.Shared.Players; +using Robust.Shared.Prototypes; +using Robust.Shared.Utility; + +namespace Content.Shared.Mind; + +public abstract class SharedMindSystem : EntitySystem +{ + [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; + [Dependency] private readonly IPrototypeManager _proto = default!; + [Dependency] private readonly MobStateSystem _mobStateSystem = default!; + [Dependency] private readonly SharedPlayerSystem _playerSystem = default!; + + // This is dictionary is required to track the minds of disconnected players that may have had their entity deleted. + protected readonly Dictionary UserMinds = new(); + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnExamined); + SubscribeLocalEvent(OnSuicide); + SubscribeLocalEvent(OnVisitingTerminating); + SubscribeLocalEvent(OnReset); + } + + public override void Shutdown() + { + base.Shutdown(); + WipeAllMinds(); + } + + private void OnReset(RoundRestartCleanupEvent ev) + { + WipeAllMinds(); + } + + public virtual void WipeAllMinds() + { + foreach (var mind in UserMinds.Values) + { + WipeMind(mind); + } + + DebugTools.Assert(UserMinds.Count == 0); + } + + public EntityUid? GetMind(NetUserId user) + { + TryGetMind(user, out var mind, out _); + return mind; + } + + public virtual bool TryGetMind(NetUserId user, [NotNullWhen(true)] out EntityUid? mindId, [NotNullWhen(true)] out MindComponent? mind) + { + if (UserMinds.TryGetValue(user, out var mindIdValue) && + TryComp(mindIdValue, out mind)) + { + DebugTools.Assert(mind.UserId == user); + mindId = mindIdValue; + return true; + } + + mindId = null; + mind = null; + return false; + } + + private void OnVisitingTerminating(EntityUid uid, VisitingMindComponent component, ref EntityTerminatingEvent args) + { + if (component.MindId != null) + UnVisit(component.MindId.Value); + } + + private void OnExamined(EntityUid uid, MindContainerComponent mindContainer, ExaminedEvent args) + { + if (!mindContainer.ShowExamineInfo || !args.IsInDetailsRange) + return; + + var dead = _mobStateSystem.IsDead(uid); + var hasSession = CompOrNull(mindContainer.Mind)?.Session; + + if (dead && !mindContainer.HasMind) + args.PushMarkup($"[color=mediumpurple]{Loc.GetString("comp-mind-examined-dead-and-irrecoverable", ("ent", uid))}[/color]"); + else if (dead && hasSession == null) + args.PushMarkup($"[color=yellow]{Loc.GetString("comp-mind-examined-dead-and-ssd", ("ent", uid))}[/color]"); + else if (dead) + args.PushMarkup($"[color=red]{Loc.GetString("comp-mind-examined-dead", ("ent", uid))}[/color]"); + else if (!mindContainer.HasMind) + args.PushMarkup($"[color=mediumpurple]{Loc.GetString("comp-mind-examined-catatonic", ("ent", uid))}[/color]"); + else if (hasSession == null) + args.PushMarkup($"[color=yellow]{Loc.GetString("comp-mind-examined-ssd", ("ent", uid))}[/color]"); + } + + private void OnSuicide(EntityUid uid, MindContainerComponent component, SuicideEvent args) + { + if (args.Handled) + return; + + if (TryComp(component.Mind, out MindComponent? mind) && mind.PreventSuicide) + { + args.BlockSuicideAttempt(true); + } + } + + public EntityUid? GetMind(EntityUid uid, MindContainerComponent? mind = null) + { + if (!Resolve(uid, ref mind)) + return null; + + if (mind.HasMind) + return mind.Mind; + + return null; + } + + public EntityUid CreateMind(NetUserId? userId, string? name = null) + { + var mindId = Spawn(null, MapCoordinates.Nullspace); + var mind = EnsureComp(mindId); + mind.CharacterName = name; + SetUserId(mindId, userId, mind); + + Dirty(mindId, MetaData(mindId)); + + return mindId; + } + + /// + /// True if the OwnedEntity of this mind is physically dead. + /// This specific definition, as opposed to CharacterDeadIC, is used to determine if ghosting should allow return. + /// + public bool IsCharacterDeadPhysically(MindComponent mind) + { + // This is written explicitly so that the logic can be understood. + // But it's also weird and potentially situational. + // Specific considerations when updating this: + // + Does being turned into a borg (if/when implemented) count as dead? + // *If not, add specific conditions to users of this property where applicable.* + // + Is being transformed into a donut 'dead'? + // TODO: Consider changing the way ghost roles work. + // Mind is an *IC* mind, therefore ghost takeover is IC revival right now. + // + Is it necessary to have a reference to a specific 'mind iteration' to cycle when certain events happen? + // (If being a borg or AI counts as dead, then this is highly likely, as it's still the same Mind for practical purposes.) + + if (mind.OwnedEntity == null) + return true; + + // This can be null if they're deleted (spike / brain nom) + var targetMobState = EntityManager.GetComponentOrNull(mind.OwnedEntity); + // This can be null if it's a brain (this happens very often) + // Brains are the result of gibbing so should definitely count as dead + if (targetMobState == null) + return true; + // They might actually be alive. + return _mobStateSystem.IsDead(mind.OwnedEntity.Value, targetMobState); + } + + public virtual void Visit(EntityUid mindId, EntityUid entity, MindComponent? mind = null) + { + } + + /// + /// Returns the mind to its original entity. + /// + public virtual void UnVisit(EntityUid mindId, MindComponent? mind = null) + { + } + + /// + /// Returns the mind to its original entity. + /// + public void UnVisit(ICommonSession? player) + { + if (player == null || !TryGetMind(player, out var mindId, out var mind)) + return; + + UnVisit(mindId, mind); + } + + /// + /// Cleans up the VisitingEntity. + /// + /// + protected void RemoveVisitingEntity(MindComponent mind) + { + if (mind.VisitingEntity == null) + return; + + var oldVisitingEnt = mind.VisitingEntity.Value; + // Null this before removing the component to avoid any infinite loops. + mind.VisitingEntity = null; + + if (TryComp(oldVisitingEnt, out VisitingMindComponent? visitComp)) + { + visitComp.MindId = null; + RemCompDeferred(oldVisitingEnt, visitComp); + } + + RaiseLocalEvent(oldVisitingEnt, new MindUnvisitedMessage(), true); + } + + public void WipeMind(ICommonSession player) + { + var mind = _playerSystem.ContentData(player)?.Mind; + DebugTools.Assert(GetMind(player.UserId) == mind); + WipeMind(mind); + } + + /// + /// Detaches a mind from all entities and clears the user ID. + /// + public void WipeMind(EntityUid? mindId, MindComponent? mind = null) + { + if (mindId == null || !Resolve(mindId.Value, ref mind, false)) + return; + + TransferTo(mindId.Value, null, mind: mind); + SetUserId(mindId.Value, null, mind: mind); + } + + /// + /// Transfer this mind's control over to a new entity. + /// + /// The mind to transfer + /// + /// The entity to control. + /// Can be null, in which case it will simply detach the mind from any entity. + /// + /// + /// If true, skips ghost check for Visiting Entity + /// + /// + /// Thrown if is already controlled by another player. + /// + public virtual void TransferTo(EntityUid mindId, EntityUid? entity, bool ghostCheckOverride = false, bool createGhost = true, MindComponent? mind = null) + { + } + + /// + /// Adds an objective to this mind. + /// + public bool TryAddObjective(EntityUid mindId, MindComponent mind, ObjectivePrototype objectivePrototype) + { + if (!objectivePrototype.CanBeAssigned(mindId, mind)) + return false; + var objective = objectivePrototype.GetObjective(mindId, mind); + if (mind.Objectives.Contains(objective)) + return false; + + foreach (var condition in objective.Conditions) + { + _adminLogger.Add(LogType.Mind, LogImpact.Low, $"'{condition.Title}' added to mind of {MindOwnerLoggingString(mind)}"); + } + + mind.Objectives.Add(objective); + return true; + } + + /// + /// Adds an objective, by id, to this mind. + /// + public bool TryAddObjective(EntityUid mindId, string name, MindComponent? mind = null) + { + if (!Resolve(mindId, ref mind)) + return false; + + if (!_proto.TryIndex(name, out var objective)) + { + Log.Error($"Tried to add unknown objective prototype: {name}"); + return false; + } + + return TryAddObjective(mindId, mind, objective); + } + + /// + /// Removes an objective to this mind. + /// + /// Returns true if the removal succeeded. + public bool TryRemoveObjective(MindComponent mind, int index) + { + if (index < 0 || index >= mind.Objectives.Count) + return false; + + var objective = mind.Objectives[index]; + + foreach (var condition in objective.Conditions) + { + _adminLogger.Add(LogType.Mind, LogImpact.Low, $"'{condition.Title}' removed from the mind of {MindOwnerLoggingString(mind)}"); + } + + mind.Objectives.Remove(objective); + return true; + } + + public bool TryGetSession(EntityUid? mindId, [NotNullWhen(true)] out ICommonSession? session) + { + session = null; + return TryComp(mindId, out MindComponent? mind) && (session = mind.Session) != null; + } + + /// + /// Gets a mind from uid and/or MindContainerComponent. Used for null checks. + /// + /// Entity UID that owns the mind. + /// The mind id. + /// The returned mind. + /// Mind component on to get the mind from. + /// True if mind found. False if not. + public bool TryGetMind( + EntityUid uid, + out EntityUid mindId, + [NotNullWhen(true)] out MindComponent? mind, + MindContainerComponent? container = null) + { + mindId = default; + mind = null; + + if (!Resolve(uid, ref container, false)) + return false; + + if (!container.HasMind) + return false; + + mindId = container.Mind ?? default; + return TryComp(mindId, out mind); + } + + public bool TryGetMind( + PlayerData player, + out EntityUid mindId, + [NotNullWhen(true)] out MindComponent? mind) + { + mindId = player.Mind ?? default; + return TryComp(mindId, out mind); + } + + public bool TryGetMind( + ICommonSession? player, + out EntityUid mindId, + [NotNullWhen(true)] out MindComponent? mind) + { + mindId = default; + mind = null; + return _playerSystem.ContentData(player) is { } data && TryGetMind(data, out mindId, out mind); + } + + /// + /// Gets a role component from a player's mind. + /// + /// Whether a role was found + public bool TryGetRole(EntityUid user, [NotNullWhen(true)] out T? role) where T : Component + { + role = null; + if (!TryComp(user, out var mindContainer) || mindContainer.Mind == null) + return false; + + return TryComp(mindContainer.Mind, out role); + } + + /// + /// Sets the Mind's OwnedComponent and OwnedEntity + /// + /// Mind to set OwnedComponent and OwnedEntity on + /// Entity owned by + /// MindContainerComponent owned by + protected void SetOwnedEntity(MindComponent mind, EntityUid? uid, MindContainerComponent? mindContainerComponent) + { + if (uid != null) + Resolve(uid.Value, ref mindContainerComponent); + + mind.OwnedEntity = uid; + mind.OwnedComponent = mindContainerComponent; + } + + /// + /// Sets the Mind's UserId, Session, and updates the player's PlayerData. This should have no direct effect on the + /// entity that any mind is connected to, except as a side effect of the fact that it may change a player's + /// attached entity. E.g., ghosts get deleted. + /// + public virtual void SetUserId(EntityUid mindId, NetUserId? userId, MindComponent? mind = null) + { + } + + /// + /// True if this Mind is 'sufficiently dead' IC (Objectives, EndText). + /// Note that this is *IC logic*, it's not necessarily tied to any specific truth. + /// "If administrators decide that zombies are dead, this returns true for zombies." + /// (Maybe you were looking for the action blocker system?) + /// + public bool IsCharacterDeadIc(MindComponent mind) + { + if (mind.OwnedEntity is { } owned) + { + var ev = new GetCharactedDeadIcEvent(null); + RaiseLocalEvent(owned, ref ev); + + if (ev.Dead != null) + return ev.Dead.Value; + } + + return IsCharacterDeadPhysically(mind); + } + + /// + /// A string to represent the mind for logging + /// + public string 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 + ")"; + } + + public string? GetCharacterName(NetUserId userId) + { + return TryGetMind(userId, out _, out var mind) ? mind.CharacterName : null; + } +} + +/// +/// Raised on an entity to determine whether or not they are "dead" in IC-logic. +/// If not handled, then it will simply check if they are dead physically. +/// +/// +[ByRefEvent] +public record struct GetCharactedDeadIcEvent(bool? Dead); diff --git a/Content.Shared/Mining/Components/OreVeinComponent.cs b/Content.Shared/Mining/Components/OreVeinComponent.cs index e4316a9d9fc..03e6a976cb8 100644 --- a/Content.Shared/Mining/Components/OreVeinComponent.cs +++ b/Content.Shared/Mining/Components/OreVeinComponent.cs @@ -8,7 +8,7 @@ namespace Content.Server.Mining.Components; /// Defines an entity that will drop a random ore after being destroyed. /// [RegisterComponent] -public sealed class OreVeinComponent : Component +public sealed partial class OreVeinComponent : Component { /// /// How often an entity will be seeded with ore. Note: the amount of ore diff --git a/Content.Shared/Mining/OrePrototype.cs b/Content.Shared/Mining/OrePrototype.cs index 502a5499ab3..ea15aead204 100644 --- a/Content.Shared/Mining/OrePrototype.cs +++ b/Content.Shared/Mining/OrePrototype.cs @@ -11,7 +11,7 @@ public sealed class OrePrototype : IPrototype { /// [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [DataField("oreEntity", customTypeSerializer: typeof(PrototypeIdSerializer))] public string? OreEntity; diff --git a/Content.Shared/Mobs/Components/MobStateActionsComponent.cs b/Content.Shared/Mobs/Components/MobStateActionsComponent.cs index 7e9ef6f220d..8c72ee618d8 100644 --- a/Content.Shared/Mobs/Components/MobStateActionsComponent.cs +++ b/Content.Shared/Mobs/Components/MobStateActionsComponent.cs @@ -10,7 +10,7 @@ namespace Content.Shared.Mobs.Components; /// /// [RegisterComponent] -public sealed class MobStateActionsComponent : Component +public sealed partial class MobStateActionsComponent : Component { /// /// Specifies a list of actions that should be available if a mob is in a given state. @@ -18,9 +18,9 @@ public sealed class MobStateActionsComponent : Component /// /// actions: /// Critical: - /// - CritSuccumb + /// - ActionCritSuccumb /// Alive: - /// - AnimalLayEgg + /// - ActionAnimalLayEgg /// [DataField("actions")] public Dictionary> Actions = new(); diff --git a/Content.Shared/Mobs/Components/MobStateComponent.cs b/Content.Shared/Mobs/Components/MobStateComponent.cs index 091c56f0eb0..a2ff349e133 100644 --- a/Content.Shared/Mobs/Components/MobStateComponent.cs +++ b/Content.Shared/Mobs/Components/MobStateComponent.cs @@ -14,7 +14,7 @@ namespace Content.Shared.Mobs.Components [RegisterComponent] [NetworkedComponent] [Access(typeof(MobStateSystem), typeof(MobThresholdSystem))] - public sealed class MobStateComponent : Component + public sealed partial class MobStateComponent : Component { //default mobstate is always the lowest state level [ViewVariables] public MobState CurrentState { get; set; } = MobState.Alive; diff --git a/Content.Shared/Mobs/Components/MobThresholdsComponent.cs b/Content.Shared/Mobs/Components/MobThresholdsComponent.cs index a3c503f2ea9..49481787d4f 100644 --- a/Content.Shared/Mobs/Components/MobThresholdsComponent.cs +++ b/Content.Shared/Mobs/Components/MobThresholdsComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Mobs.Components; [RegisterComponent, NetworkedComponent] [Access(typeof(MobThresholdSystem))] -public sealed class MobThresholdsComponent : Component +public sealed partial class MobThresholdsComponent : Component { [DataField("thresholds", required:true)] public SortedDictionary Thresholds = new(); diff --git a/Content.Shared/Mobs/CritMobActions.cs b/Content.Shared/Mobs/CritMobActions.cs new file mode 100644 index 00000000000..763915e559d --- /dev/null +++ b/Content.Shared/Mobs/CritMobActions.cs @@ -0,0 +1,24 @@ +using Content.Shared.Actions; + +namespace Content.Shared.Mobs; + +/// +/// Only applies to mobs in crit capable of ghosting/succumbing +/// +public sealed partial class CritSuccumbEvent : InstantActionEvent +{ +} + +/// +/// Only applies/has functionality to mobs in crit that have +/// +public sealed partial class CritFakeDeathEvent : InstantActionEvent +{ +} + +/// +/// Only applies to mobs capable of speaking, as a last resort in crit +/// +public sealed partial class CritLastWordsEvent : InstantActionEvent +{ +} diff --git a/Content.Shared/Mobs/Systems/MobStateActionsSystem.cs b/Content.Shared/Mobs/Systems/MobStateActionsSystem.cs index b25babfe068..1e5695229e5 100644 --- a/Content.Shared/Mobs/Systems/MobStateActionsSystem.cs +++ b/Content.Shared/Mobs/Systems/MobStateActionsSystem.cs @@ -1,7 +1,6 @@ using Content.Shared.Actions; -using Content.Shared.Actions.ActionTypes; using Content.Shared.Mobs.Components; -using Robust.Shared.Prototypes; +using Robust.Shared.Network; namespace Content.Shared.Mobs.Systems; @@ -10,7 +9,7 @@ namespace Content.Shared.Mobs.Systems; /// public sealed class MobStateActionsSystem : EntitySystem { - [Dependency] private readonly IPrototypeManager _proto = default!; + [Dependency] private readonly INetManager _net = default!; [Dependency] private readonly SharedActionsSystem _actions = default!; /// @@ -21,6 +20,9 @@ public override void Initialize() private void OnMobStateChanged(EntityUid uid, MobStateActionsComponent component, MobStateChangedEvent args) { + if (_net.IsClient) + return; + if (!TryComp(uid, out var action)) return; @@ -31,10 +33,6 @@ private void OnMobStateChanged(EntityUid uid, MobStateActionsComponent component foreach (var item in acts) { - if (!_proto.TryIndex(item, out var proto)) - continue; - - var instance = new InstantAction(proto); if (state == args.OldMobState) { // Don't remove actions that would be getting readded anyway @@ -42,11 +40,11 @@ private void OnMobStateChanged(EntityUid uid, MobStateActionsComponent component && value.Contains(item)) continue; - _actions.RemoveAction(uid, instance, action); + _actions.RemoveAction(uid, item, action); } else if (state == args.NewMobState) { - _actions.AddAction(uid, instance, null, action); + _actions.AddAction(uid, Spawn(item), null, action); } } } diff --git a/Content.Shared/Mobs/Systems/MobStateSystem.StateMachine.cs b/Content.Shared/Mobs/Systems/MobStateSystem.StateMachine.cs index f3e637bca5e..b07087cafa5 100644 --- a/Content.Shared/Mobs/Systems/MobStateSystem.StateMachine.cs +++ b/Content.Shared/Mobs/Systems/MobStateSystem.StateMachine.cs @@ -32,7 +32,7 @@ public void UpdateMobState(EntityUid entity, MobStateComponent? component = null var ev = new UpdateMobStateEvent {Target = entity, Component = component, Origin = origin}; RaiseLocalEvent(entity, ref ev); - ChangeState(entity, component, ev.State); + ChangeState(entity, component, ev.State, origin: origin); } /// diff --git a/Content.Shared/Mobs/Systems/MobThresholdSystem.cs b/Content.Shared/Mobs/Systems/MobThresholdSystem.cs index bd357e4be8f..93e89c32b86 100644 --- a/Content.Shared/Mobs/Systems/MobThresholdSystem.cs +++ b/Content.Shared/Mobs/Systems/MobThresholdSystem.cs @@ -297,14 +297,14 @@ public void SetAllowRevives(EntityUid uid, bool val, MobThresholdsComponent? com #region Private Implementation private void CheckThresholds(EntityUid target, MobStateComponent mobStateComponent, - MobThresholdsComponent thresholdsComponent, DamageableComponent damageableComponent) + MobThresholdsComponent thresholdsComponent, DamageableComponent damageableComponent, EntityUid? origin = null) { foreach (var (threshold, mobState) in thresholdsComponent.Thresholds.Reverse()) { if (damageableComponent.TotalDamage < threshold) continue; - TriggerThreshold(target, mobState, mobStateComponent, thresholdsComponent); + TriggerThreshold(target, mobState, mobStateComponent, thresholdsComponent, origin); break; } } @@ -313,7 +313,8 @@ private void TriggerThreshold( EntityUid target, MobState newState, MobStateComponent? mobState = null, - MobThresholdsComponent? thresholds = null) + MobThresholdsComponent? thresholds = null, + EntityUid? origin = null) { if (!Resolve(target, ref mobState, ref thresholds) || mobState.CurrentState == newState) @@ -327,7 +328,7 @@ private void TriggerThreshold( Dirty(target, thresholds); } - _mobStateSystem.UpdateMobState(target, mobState); + _mobStateSystem.UpdateMobState(target, mobState, origin); } private void UpdateAlerts(EntityUid target, MobState currentMobState, MobThresholdsComponent? threshold = null, @@ -374,7 +375,7 @@ private void OnDamaged(EntityUid target, MobThresholdsComponent thresholds, Dama { if (!TryComp(target, out var mobState)) return; - CheckThresholds(target, mobState, thresholds, args.Damageable); + CheckThresholds(target, mobState, thresholds, args.Damageable, args.Origin); var ev = new MobThresholdChecked(target, mobState, thresholds, args.Damageable); RaiseLocalEvent(target, ref ev, true); UpdateAlerts(target, mobState.CurrentState, thresholds, args.Damageable); diff --git a/Content.Shared/Morgue/Components/MorgueComponent.cs b/Content.Shared/Morgue/Components/MorgueComponent.cs index 1b21d174d6e..d4761d1ce4d 100644 --- a/Content.Shared/Morgue/Components/MorgueComponent.cs +++ b/Content.Shared/Morgue/Components/MorgueComponent.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Morgue.Components; [RegisterComponent, NetworkedComponent] -public sealed class MorgueComponent : Component +public sealed partial class MorgueComponent : Component { /// /// Whether or not the morgue beeps if a living player is inside. diff --git a/Content.Shared/Movement/Components/ActiveJetpackComponent.cs b/Content.Shared/Movement/Components/ActiveJetpackComponent.cs index 5237205289d..615dc3aee43 100644 --- a/Content.Shared/Movement/Components/ActiveJetpackComponent.cs +++ b/Content.Shared/Movement/Components/ActiveJetpackComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Movement.Components; /// Added to an enabled jetpack. Tracks gas usage on server / effect spawning on client. /// [RegisterComponent, NetworkedComponent] -public sealed class ActiveJetpackComponent : Component +public sealed partial class ActiveJetpackComponent : Component { public float EffectCooldown = 0.3f; public TimeSpan TargetTime = TimeSpan.Zero; diff --git a/Content.Shared/Movement/Components/AutoOrientComponent.cs b/Content.Shared/Movement/Components/AutoOrientComponent.cs index b9ccfa02101..4b89b0cbf42 100644 --- a/Content.Shared/Movement/Components/AutoOrientComponent.cs +++ b/Content.Shared/Movement/Components/AutoOrientComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Movement.Components; /// Automatically rotates eye upon grid traversals. /// [RegisterComponent, NetworkedComponent] -public sealed class AutoOrientComponent : Component +public sealed partial class AutoOrientComponent : Component { } diff --git a/Content.Shared/Movement/Components/CanMoveInAirComponent.cs b/Content.Shared/Movement/Components/CanMoveInAirComponent.cs new file mode 100644 index 00000000000..9d24661700d --- /dev/null +++ b/Content.Shared/Movement/Components/CanMoveInAirComponent.cs @@ -0,0 +1,12 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Physics.Components; + +namespace Content.Shared.Movement.Components; + +/// +/// On mobs that are allowed to move while their body status is +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class CanMoveInAirComponent : Component +{ +} diff --git a/Content.Shared/Movement/Components/FloorOccluderComponent.cs b/Content.Shared/Movement/Components/FloorOccluderComponent.cs new file mode 100644 index 00000000000..b9409a8198f --- /dev/null +++ b/Content.Shared/Movement/Components/FloorOccluderComponent.cs @@ -0,0 +1,12 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Movement.Components; + +/// +/// Applies floor occlusion to any that intersect us. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class FloorOccluderComponent : Component +{ + +} diff --git a/Content.Shared/Movement/Components/FloorOcclusionComponent.cs b/Content.Shared/Movement/Components/FloorOcclusionComponent.cs new file mode 100644 index 00000000000..aa9a1ced552 --- /dev/null +++ b/Content.Shared/Movement/Components/FloorOcclusionComponent.cs @@ -0,0 +1,19 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Movement.Components; + +/// +/// Applies an occlusion shader to this entity if it's colliding with a +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState(true)] +public sealed partial class FloorOcclusionComponent : Component +{ + /// + /// Is the shader currently enabled. + /// + [ViewVariables(VVAccess.ReadWrite), DataField("enabled"), AutoNetworkedField] + public bool Enabled; + + [DataField("colliding")] + public List Colliding = new(); +} diff --git a/Content.Shared/Movement/Components/FootstepModifierComponent.cs b/Content.Shared/Movement/Components/FootstepModifierComponent.cs index 8bd5b3d1ee1..88563276336 100644 --- a/Content.Shared/Movement/Components/FootstepModifierComponent.cs +++ b/Content.Shared/Movement/Components/FootstepModifierComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Movement.Components /// Changes footstep sound /// [RegisterComponent, NetworkedComponent] - public sealed class FootstepModifierComponent : Component + public sealed partial class FootstepModifierComponent : Component { [DataField("footstepSoundCollection", required: true)] public SoundSpecifier Sound = default!; diff --git a/Content.Shared/Movement/Components/IgnoreKudzuComponent.cs b/Content.Shared/Movement/Components/IgnoreKudzuComponent.cs index adeed7c0e17..fd1ee31e41c 100644 --- a/Content.Shared/Movement/Components/IgnoreKudzuComponent.cs +++ b/Content.Shared/Movement/Components/IgnoreKudzuComponent.cs @@ -6,6 +6,6 @@ namespace Content.Shared.Movement.Components; /// Special component to allow an entity to navigate kudzu without slowdown. /// [RegisterComponent, NetworkedComponent] -public sealed class IgnoreKudzuComponent : Component +public sealed partial class IgnoreKudzuComponent : Component { } diff --git a/Content.Shared/Movement/Components/InputMoverComponent.cs b/Content.Shared/Movement/Components/InputMoverComponent.cs index 65f507c1ead..1a987a9b29f 100644 --- a/Content.Shared/Movement/Components/InputMoverComponent.cs +++ b/Content.Shared/Movement/Components/InputMoverComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Movement.Components { [RegisterComponent] [NetworkedComponent] - public sealed class InputMoverComponent : Component + public sealed partial class InputMoverComponent : Component { // This class has to be able to handle server TPS being lower than client FPS. // While still having perfectly responsive movement client side. diff --git a/Content.Shared/Movement/Components/JetpackComponent.cs b/Content.Shared/Movement/Components/JetpackComponent.cs index c4128a65722..73a8267500d 100644 --- a/Content.Shared/Movement/Components/JetpackComponent.cs +++ b/Content.Shared/Movement/Components/JetpackComponent.cs @@ -1,16 +1,19 @@ -using Content.Shared.Actions.ActionTypes; using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Shared.Movement.Components; [RegisterComponent, NetworkedComponent] -public sealed class JetpackComponent : Component +public sealed partial class JetpackComponent : Component { [ViewVariables(VVAccess.ReadWrite), DataField("moleUsage")] public float MoleUsage = 0.012f; - [DataField("toggleAction", required: true)] - public InstantAction ToggleAction = new(); + [DataField("toggleAction", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string? ToggleAction = "ActionToggleJetpack"; + + [DataField("toggleActionEntity")] public EntityUid? ToggleActionEntity; [ViewVariables(VVAccess.ReadWrite), DataField("acceleration")] public float Acceleration = 1f; diff --git a/Content.Shared/Movement/Components/JetpackUserComponent.cs b/Content.Shared/Movement/Components/JetpackUserComponent.cs index d7001095f46..b59b677b62e 100644 --- a/Content.Shared/Movement/Components/JetpackUserComponent.cs +++ b/Content.Shared/Movement/Components/JetpackUserComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Movement.Components; /// Added to someone using a jetpack for movement purposes /// [RegisterComponent, NetworkedComponent] -public sealed class JetpackUserComponent : Component +public sealed partial class JetpackUserComponent : Component { public EntityUid Jetpack; } diff --git a/Content.Shared/Movement/Components/MobMoverComponent.cs b/Content.Shared/Movement/Components/MobMoverComponent.cs index 1d7f407989f..e833f2d4b7d 100644 --- a/Content.Shared/Movement/Components/MobMoverComponent.cs +++ b/Content.Shared/Movement/Components/MobMoverComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Movement.Components /// [RegisterComponent] [NetworkedComponent()] - public sealed class MobMoverComponent : Component + public sealed partial class MobMoverComponent : Component { private float _stepSoundDistance; [DataField("grabRange")] public float GrabRange = 1.0f; diff --git a/Content.Shared/Movement/Components/MovementAlwaysTouchingComponent.cs b/Content.Shared/Movement/Components/MovementAlwaysTouchingComponent.cs index 97470c19de4..7043843bea5 100644 --- a/Content.Shared/Movement/Components/MovementAlwaysTouchingComponent.cs +++ b/Content.Shared/Movement/Components/MovementAlwaysTouchingComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Movement.Components; /// i.e. when weightless they're floaty but still have free movement. /// [RegisterComponent, NetworkedComponent] -public sealed class MovementAlwaysTouchingComponent : Component +public sealed partial class MovementAlwaysTouchingComponent : Component { } diff --git a/Content.Shared/Movement/Components/MovementBodyPartComponent.cs b/Content.Shared/Movement/Components/MovementBodyPartComponent.cs index f4d20033f7c..83407859e43 100644 --- a/Content.Shared/Movement/Components/MovementBodyPartComponent.cs +++ b/Content.Shared/Movement/Components/MovementBodyPartComponent.cs @@ -3,13 +3,13 @@ namespace Content.Shared.Movement.Components; [RegisterComponent, NetworkedComponent] -public sealed class MovementBodyPartComponent : Component +public sealed partial class MovementBodyPartComponent : Component { [DataField("walkSpeed")] - public readonly float WalkSpeed = MovementSpeedModifierComponent.DefaultBaseWalkSpeed; + public float WalkSpeed = MovementSpeedModifierComponent.DefaultBaseWalkSpeed; [DataField("sprintSpeed")] - public readonly float SprintSpeed = MovementSpeedModifierComponent.DefaultBaseSprintSpeed; + public float SprintSpeed = MovementSpeedModifierComponent.DefaultBaseSprintSpeed; [DataField("acceleration")] public float Acceleration = MovementSpeedModifierComponent.DefaultAcceleration; diff --git a/Content.Shared/Movement/Components/MovementIgnoreGravityComponent.cs b/Content.Shared/Movement/Components/MovementIgnoreGravityComponent.cs index c3bfc54500c..bade6287e8b 100644 --- a/Content.Shared/Movement/Components/MovementIgnoreGravityComponent.cs +++ b/Content.Shared/Movement/Components/MovementIgnoreGravityComponent.cs @@ -13,7 +13,7 @@ namespace Content.Shared.Movement.Components /// Ignores gravity entirely. /// [RegisterComponent, NetworkedComponent] - public sealed class MovementIgnoreGravityComponent : Component + public sealed partial class MovementIgnoreGravityComponent : Component { /// /// Whether or not gravity is on or off for this object. diff --git a/Content.Shared/Movement/Components/MovementSpeedModifierComponent.cs b/Content.Shared/Movement/Components/MovementSpeedModifierComponent.cs index e55c45bba57..33270c2034b 100644 --- a/Content.Shared/Movement/Components/MovementSpeedModifierComponent.cs +++ b/Content.Shared/Movement/Components/MovementSpeedModifierComponent.cs @@ -9,7 +9,7 @@ namespace Content.Shared.Movement.Components /// [RegisterComponent] [NetworkedComponent, Access(typeof(MovementSpeedModifierSystem))] - public sealed class MovementSpeedModifierComponent : Component + public sealed partial class MovementSpeedModifierComponent : Component { // Weightless public const float DefaultMinimumFrictionSpeed = 0.005f; diff --git a/Content.Shared/Movement/Components/SlowedByContactComponent.cs b/Content.Shared/Movement/Components/SlowedByContactComponent.cs index d2065a9b415..eafefefee18 100644 --- a/Content.Shared/Movement/Components/SlowedByContactComponent.cs +++ b/Content.Shared/Movement/Components/SlowedByContactComponent.cs @@ -7,6 +7,6 @@ namespace Content.Shared.Movement.Components; /// Exists just to listen to a single event. What a life. /// [NetworkedComponent, RegisterComponent] // must be networked to properly predict adding & removal -public sealed class SlowedByContactComponent : Component +public sealed partial class SlowedByContactComponent : Component { } diff --git a/Content.Shared/Movement/Events/ToggleJetpackEvent.cs b/Content.Shared/Movement/Events/ToggleJetpackEvent.cs index d344c7a9c31..9a622f3cad9 100644 --- a/Content.Shared/Movement/Events/ToggleJetpackEvent.cs +++ b/Content.Shared/Movement/Events/ToggleJetpackEvent.cs @@ -5,4 +5,4 @@ namespace Content.Shared.Movement.Events; /// /// Raised on a jetpack whenever it is toggled. /// -public sealed class ToggleJetpackEvent : InstantActionEvent {} +public sealed partial class ToggleJetpackEvent : InstantActionEvent {} diff --git a/Content.Shared/Movement/Systems/SharedContentEyeSystem.cs b/Content.Shared/Movement/Systems/SharedContentEyeSystem.cs index 4bfe1c22b53..27e0080c87e 100644 --- a/Content.Shared/Movement/Systems/SharedContentEyeSystem.cs +++ b/Content.Shared/Movement/Systems/SharedContentEyeSystem.cs @@ -1,13 +1,12 @@ using System.Numerics; +using Content.Shared.Administration; using Content.Shared.Administration.Managers; using Content.Shared.Ghost; using Content.Shared.Input; using Content.Shared.Movement.Components; -using Robust.Shared.Input; using Robust.Shared.Input.Binding; using Robust.Shared.Players; using Robust.Shared.Serialization; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Generic; namespace Content.Shared.Movement.Systems; @@ -22,6 +21,8 @@ public abstract class SharedContentEyeSystem : EntitySystem public static readonly Vector2 DefaultZoom = Vector2.One; public static readonly Vector2 MinZoom = DefaultZoom * (float)Math.Pow(ZoomMod, -3); + [Dependency] private readonly SharedEyeSystem _eye = default!; + public override void Initialize() { base.Initialize(); @@ -77,13 +78,15 @@ public void SetZoom(EntityUid uid, Vector2 zoom, bool ignoreLimits = false, Cont return; eye.TargetZoom = ignoreLimits ? zoom : Clamp(zoom, eye); - Dirty(eye); + Dirty(uid, eye); } private void OnContentZoomRequest(RequestTargetZoomEvent msg, EntitySessionEventArgs args) { + var ignoreLimit = msg.IgnoreLimit && _admin.HasAdminFlag(args.SenderSession, AdminFlags.Debug); + if (TryComp(args.SenderSession.AttachedEntity, out var content)) - SetZoom(args.SenderSession.AttachedEntity.Value, msg.TargetZoom, eye: content); + SetZoom(args.SenderSession.AttachedEntity.Value, msg.TargetZoom, ignoreLimit, eye: content); } private void OnRequestFov(RequestFovEvent msg, EntitySessionEventArgs args) @@ -91,40 +94,22 @@ private void OnRequestFov(RequestFovEvent msg, EntitySessionEventArgs args) if (args.SenderSession.AttachedEntity is not { } player) return; - if (!HasComp(player) && !_admin.IsAdmin(player)) + if (!HasComp(player) && !_admin.IsAdmin(player)) return; - if (TryComp(player, out var eyeComp)) + if (TryComp(player, out var eyeComp)) { - eyeComp.DrawFov = msg.Fov; - Dirty(eyeComp); + _eye.SetDrawFov(player, msg.Fov, eyeComp); } } private void OnContentEyeStartup(EntityUid uid, ContentEyeComponent component, ComponentStartup args) { - if (!TryComp(uid, out var eyeComp)) + if (!TryComp(uid, out var eyeComp)) return; component.TargetZoom = eyeComp.Zoom; - Dirty(component); - } - - protected void UpdateEye(EntityUid uid, ContentEyeComponent content, SharedEyeComponent eye, float frameTime) - { - var diff = content.TargetZoom - eye.Zoom; - - if (diff.LengthSquared() < 0.00001f) - { - eye.Zoom = content.TargetZoom; - Dirty(eye); - return; - } - - var change = diff * 8f * frameTime; - - eye.Zoom += change; - Dirty(eye); + Dirty(uid, component); } public void ResetZoom(EntityUid uid, ContentEyeComponent? component = null) @@ -139,7 +124,7 @@ public void SetMaxZoom(EntityUid uid, Vector2 value, ContentEyeComponent? compon component.MaxZoom = value; component.TargetZoom = Clamp(component.TargetZoom, component); - Dirty(component); + Dirty(uid, component); } /// @@ -149,6 +134,7 @@ public void SetMaxZoom(EntityUid uid, Vector2 value, ContentEyeComponent? compon public sealed class RequestTargetZoomEvent : EntityEventArgs { public Vector2 TargetZoom; + public bool IgnoreLimit; } /// diff --git a/Content.Shared/Movement/Systems/SharedFloorOcclusionSystem.cs b/Content.Shared/Movement/Systems/SharedFloorOcclusionSystem.cs new file mode 100644 index 00000000000..9d27ea42c63 --- /dev/null +++ b/Content.Shared/Movement/Systems/SharedFloorOcclusionSystem.cs @@ -0,0 +1,53 @@ +using Content.Shared.Movement.Components; +using Robust.Shared.Physics.Events; + +namespace Content.Shared.Movement.Systems; + +/// +/// Applies an occlusion shader for any relevant entities. +/// +public abstract class SharedFloorOcclusionSystem : EntitySystem +{ + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnStartCollide); + SubscribeLocalEvent(OnEndCollide); + } + + private void OnStartCollide(EntityUid uid, FloorOccluderComponent component, ref StartCollideEvent args) + { + var other = args.OtherEntity; + + if (!TryComp(other, out var occlusion) || + occlusion.Colliding.Contains(uid)) + { + return; + } + + SetEnabled(other, occlusion, true); + occlusion.Colliding.Add(uid); + } + + private void OnEndCollide(EntityUid uid, FloorOccluderComponent component, ref EndCollideEvent args) + { + var other = args.OtherEntity; + + if (!TryComp(other, out var occlusion)) + return; + + occlusion.Colliding.Remove(uid); + + if (occlusion.Colliding.Count == 0) + SetEnabled(other, occlusion, false); + } + + protected virtual void SetEnabled(EntityUid uid, FloorOcclusionComponent component, bool enabled) + { + if (component.Enabled == enabled) + return; + + component.Enabled = enabled; + Dirty(uid, component); + } +} diff --git a/Content.Shared/Movement/Systems/SharedJetpackSystem.cs b/Content.Shared/Movement/Systems/SharedJetpackSystem.cs index 77bf97b25a1..26373da2567 100644 --- a/Content.Shared/Movement/Systems/SharedJetpackSystem.cs +++ b/Content.Shared/Movement/Systems/SharedJetpackSystem.cs @@ -6,6 +6,8 @@ using Content.Shared.Popups; using Robust.Shared.Containers; using Robust.Shared.GameStates; +using Robust.Shared.Physics.Components; +using Robust.Shared.Physics.Systems; using Robust.Shared.Serialization; namespace Content.Shared.Movement.Systems; @@ -17,6 +19,7 @@ public abstract class SharedJetpackSystem : EntitySystem [Dependency] protected readonly SharedContainerSystem Container = default!; [Dependency] private readonly SharedMoverController _mover = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedPhysicsSystem _physics = default!; public override void Initialize() { @@ -62,14 +65,14 @@ private void OnJetpackUserHandleState(EntityUid uid, JetpackUserComponent compon if (args.Current is not JetpackUserComponentState state) return; - component.Jetpack = state.Jetpack; + component.Jetpack = EnsureEntity(state.Jetpack, uid); } private void OnJetpackUserGetState(EntityUid uid, JetpackUserComponent component, ref ComponentGetState args) { args.State = new JetpackUserComponentState() { - Jetpack = component.Jetpack, + Jetpack = GetNetEntity(component.Jetpack), }; } @@ -98,6 +101,10 @@ private void SetupUser(EntityUid user, EntityUid jetpackUid) { var userComp = EnsureComp(user); _mover.SetRelay(user, jetpackUid); + + if (TryComp(user, out var physics)) + _physics.SetBodyStatus(physics, BodyStatus.InAir); + userComp.Jetpack = jetpackUid; } @@ -106,6 +113,9 @@ private void RemoveUser(EntityUid uid) if (!RemComp(uid)) return; + if (TryComp(uid, out var physics)) + _physics.SetBodyStatus(physics, BodyStatus.OnGround); + RemComp(uid); } @@ -132,7 +142,7 @@ private bool CanEnableOnGrid(EntityUid? gridUid) private void OnJetpackGetAction(EntityUid uid, JetpackComponent component, GetItemActionsEvent args) { - args.Actions.Add(component.ToggleAction); + args.AddAction(ref component.ToggleActionEntity, component.ToggleAction); } private bool IsEnabled(EntityUid uid) @@ -182,7 +192,7 @@ public void SetEnabled(EntityUid uid, JetpackComponent component, bool enabled, } Appearance.SetData(uid, JetpackVisuals.Enabled, enabled); - Dirty(component); + Dirty(uid, component); } public bool IsUserFlying(EntityUid uid) @@ -198,7 +208,7 @@ protected virtual bool CanEnable(EntityUid uid, JetpackComponent component) [Serializable, NetSerializable] protected sealed class JetpackUserComponentState : ComponentState { - public EntityUid Jetpack; + public NetEntity Jetpack; } } diff --git a/Content.Shared/Movement/Systems/SharedMoverController.Input.cs b/Content.Shared/Movement/Systems/SharedMoverController.Input.cs index 41314d421a7..9d150a0652b 100644 --- a/Content.Shared/Movement/Systems/SharedMoverController.Input.cs +++ b/Content.Shared/Movement/Systems/SharedMoverController.Input.cs @@ -87,7 +87,7 @@ private void OnInputHandleState(EntityUid uid, InputMoverComponent component, re component.RelativeRotation = state.RelativeRotation; component.TargetRelativeRotation = state.TargetRelativeRotation; - component.RelativeEntity = state.RelativeEntity; + component.RelativeEntity = EnsureEntity(state.RelativeEntity, uid); component.LerpTarget = state.LerpAccumulator; } @@ -98,7 +98,7 @@ private void OnInputGetState(EntityUid uid, InputMoverComponent component, ref C component.CanMove, component.RelativeRotation, component.TargetRelativeRotation, - component.RelativeEntity, + GetNetEntity(component.RelativeEntity), component.LerpTarget); } @@ -493,11 +493,11 @@ public CameraRotateInputCmdHandler(SharedMoverController controller, Direction d _angle = direction.ToAngle(); } - public override bool HandleCmdMessage(ICommonSession? session, InputCmdMessage message) + public override bool HandleCmdMessage(IEntityManager entManager, ICommonSession? session, IFullInputCmdMessage message) { - if (message is not FullInputCmdMessage full || session?.AttachedEntity == null) return false; + if (session?.AttachedEntity == null) return false; - if (full.State != BoundKeyState.Up) + if (message.State != BoundKeyState.Up) return false; _controller.RotateCamera(session.AttachedEntity.Value, _angle); @@ -514,11 +514,11 @@ public CameraResetInputCmdHandler(SharedMoverController controller) _controller = controller; } - public override bool HandleCmdMessage(ICommonSession? session, InputCmdMessage message) + public override bool HandleCmdMessage(IEntityManager entManager, ICommonSession? session, IFullInputCmdMessage message) { - if (message is not FullInputCmdMessage full || session?.AttachedEntity == null) return false; + if (session?.AttachedEntity == null) return false; - if (full.State != BoundKeyState.Up) + if (message.State != BoundKeyState.Up) return false; _controller.ResetCamera(session.AttachedEntity.Value); @@ -537,11 +537,11 @@ public MoverDirInputCmdHandler(SharedMoverController controller, Direction dir) _dir = dir; } - public override bool HandleCmdMessage(ICommonSession? session, InputCmdMessage message) + public override bool HandleCmdMessage(IEntityManager entManager, ICommonSession? session, IFullInputCmdMessage message) { - if (message is not FullInputCmdMessage full || session?.AttachedEntity == null) return false; + if (session?.AttachedEntity == null) return false; - _controller.HandleDirChange(session.AttachedEntity.Value, _dir, message.SubTick, full.State == BoundKeyState.Down); + _controller.HandleDirChange(session.AttachedEntity.Value, _dir, message.SubTick, message.State == BoundKeyState.Down); return false; } } @@ -555,11 +555,11 @@ public WalkInputCmdHandler(SharedMoverController controller) _controller = controller; } - public override bool HandleCmdMessage(ICommonSession? session, InputCmdMessage message) + public override bool HandleCmdMessage(IEntityManager entManager, ICommonSession? session, IFullInputCmdMessage message) { - if (message is not FullInputCmdMessage full || session?.AttachedEntity == null) return false; + if (session?.AttachedEntity == null) return false; - _controller.HandleRunChange(session.AttachedEntity.Value, full.SubTick, full.State == BoundKeyState.Down); + _controller.HandleRunChange(session.AttachedEntity.Value, message.SubTick, message.State == BoundKeyState.Down); return false; } } @@ -579,10 +579,10 @@ private sealed class InputMoverComponentState : ComponentState /// Target rotation relative to the . Typically 0 /// public Angle TargetRelativeRotation; - public EntityUid? RelativeEntity; + public NetEntity? RelativeEntity; public TimeSpan LerpAccumulator; - public InputMoverComponentState(MoveButtons buttons, bool canMove, Angle relativeRotation, Angle targetRelativeRotation, EntityUid? relativeEntity, TimeSpan lerpTarget) + public InputMoverComponentState(MoveButtons buttons, bool canMove, Angle relativeRotation, Angle targetRelativeRotation, NetEntity? relativeEntity, TimeSpan lerpTarget) { Buttons = buttons; CanMove = canMove; @@ -604,11 +604,11 @@ public ShuttleInputCmdHandler(SharedMoverController controller, ShuttleButtons b _button = button; } - public override bool HandleCmdMessage(ICommonSession? session, InputCmdMessage message) + public override bool HandleCmdMessage(IEntityManager entManager, ICommonSession? session, IFullInputCmdMessage message) { - if (message is not FullInputCmdMessage full || session?.AttachedEntity == null) return false; + if (session?.AttachedEntity == null) return false; - _controller.HandleShuttleInput(session.AttachedEntity.Value, _button, full.SubTick, full.State == BoundKeyState.Down); + _controller.HandleShuttleInput(session.AttachedEntity.Value, _button, message.SubTick, message.State == BoundKeyState.Down); return false; } } diff --git a/Content.Shared/Movement/Systems/SharedMoverController.cs b/Content.Shared/Movement/Systems/SharedMoverController.cs index 4082c3212bb..2b95b5909f9 100644 --- a/Content.Shared/Movement/Systems/SharedMoverController.cs +++ b/Content.Shared/Movement/Systems/SharedMoverController.cs @@ -39,6 +39,7 @@ public abstract partial class SharedMoverController : VirtualController [Dependency] private readonly MobStateSystem _mobState = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly SharedMapSystem _mapSystem = default!; [Dependency] private readonly SharedGravitySystem _gravity = default!; [Dependency] protected readonly SharedPhysicsSystem Physics = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; @@ -52,6 +53,7 @@ public abstract partial class SharedMoverController : VirtualController protected EntityQuery RelayQuery; protected EntityQuery PullableQuery; protected EntityQuery XformQuery; + protected EntityQuery CanMoveInAirQuery; private const float StepSoundMoveDistanceRunning = 2; private const float StepSoundMoveDistanceWalking = 1.5f; @@ -82,6 +84,7 @@ public override void Initialize() RelayQuery = GetEntityQuery(); PullableQuery = GetEntityQuery(); XformQuery = GetEntityQuery(); + CanMoveInAirQuery = GetEntityQuery(); InitializeFootsteps(); InitializeInput(); @@ -149,13 +152,14 @@ protected void HandleMobMovement( LerpRotation(uid, mover, frameTime); if (!canMove - || physicsComponent.BodyStatus != BodyStatus.OnGround + || physicsComponent.BodyStatus != BodyStatus.OnGround && !CanMoveInAirQuery.HasComponent(uid) || PullableQuery.TryGetComponent(uid, out var pullable) && pullable.BeingPulled) { UsedMobMovement[uid] = false; return; } + UsedMobMovement[uid] = true; // Specifically don't use mover.Owner because that may be different to the actual physics body being moved. var weightless = _gravity.IsWeightless(physicsUid, physicsComponent, xform); @@ -180,6 +184,18 @@ protected void HandleMobMovement( } } + // Get current tile def for things like speed/friction mods + ContentTileDefinition? tileDef = null; + + // Don't bother getting the tiledef here if we're weightless or in-air + // since no tile-based modifiers should be applying in that situation + if (_mapManager.TryFindGridAt(xform.MapPosition, out var grid, out var gridComp) + && _mapSystem.TryGetTileRef(grid, gridComp, xform.Coordinates, out var tile) + && !(weightless || physicsComponent.BodyStatus == BodyStatus.InAir)) + { + tileDef = (ContentTileDefinition) _tileDefinitionManager[tile.Tile.TypeId]; + } + // Regular movement. // Target velocity. // This is relative to the map / grid we're on. @@ -214,15 +230,15 @@ protected void HandleMobMovement( { if (worldTotal != Vector2.Zero || moveSpeedComponent?.FrictionNoInput == null) { - friction = moveSpeedComponent?.Friction ?? MovementSpeedModifierComponent.DefaultFriction; + friction = tileDef?.MobFriction ?? moveSpeedComponent?.Friction ?? MovementSpeedModifierComponent.DefaultFriction; } else { - friction = moveSpeedComponent.FrictionNoInput ?? MovementSpeedModifierComponent.DefaultFrictionNoInput; + friction = tileDef?.MobFrictionNoInput ?? moveSpeedComponent.FrictionNoInput ?? MovementSpeedModifierComponent.DefaultFrictionNoInput; } weightlessModifier = 1f; - accel = moveSpeedComponent?.Acceleration ?? MovementSpeedModifierComponent.DefaultAcceleration; + accel = tileDef?.MobAcceleration ?? moveSpeedComponent?.Acceleration ?? MovementSpeedModifierComponent.DefaultAcceleration; } var minimumFrictionSpeed = moveSpeedComponent?.MinimumFrictionSpeed ?? MovementSpeedModifierComponent.DefaultMinimumFrictionSpeed; @@ -236,7 +252,7 @@ protected void HandleMobMovement( // island solver"??. So maybe SetRotation needs an argument to avoid raising an event? if (!weightless && MobMoverQuery.TryGetComponent(uid, out var mobMover) && - TryGetSound(weightless, uid, mover, mobMover, xform, out var sound)) + TryGetSound(weightless, uid, mover, mobMover, xform, out var sound, tileDef: tileDef)) { var soundModifier = mover.Sprinting ? 3.5f : 1.5f; @@ -373,7 +389,14 @@ private bool IsAroundCollider(SharedPhysicsSystem broadPhaseSystem, TransformCom protected abstract bool CanSound(); - private bool TryGetSound(bool weightless, EntityUid uid, InputMoverComponent mover, MobMoverComponent mobMover, TransformComponent xform, [NotNullWhen(true)] out SoundSpecifier? sound) + private bool TryGetSound( + bool weightless, + EntityUid uid, + InputMoverComponent mover, + MobMoverComponent mobMover, + TransformComponent xform, + [NotNullWhen(true)] out SoundSpecifier? sound, + ContentTileDefinition? tileDef = null) { sound = null; @@ -423,10 +446,15 @@ private bool TryGetSound(bool weightless, EntityUid uid, InputMoverComponent mov return true; } - return TryGetFootstepSound(uid, xform, shoes != null, out sound); + return TryGetFootstepSound(uid, xform, shoes != null, out sound, tileDef: tileDef); } - private bool TryGetFootstepSound(EntityUid uid, TransformComponent xform, bool haveShoes, [NotNullWhen(true)] out SoundSpecifier? sound) + private bool TryGetFootstepSound( + EntityUid uid, + TransformComponent xform, + bool haveShoes, + [NotNullWhen(true)] out SoundSpecifier? sound, + ContentTileDefinition? tileDef = null) { sound = null; @@ -466,15 +494,18 @@ private bool TryGetFootstepSound(EntityUid uid, TransformComponent xform, bool h } } - if (!grid.TryGetTileRef(position, out var tileRef)) + // Walking on a tile. + // Tile def might have been passed in already from previous methods, so use that + // if we have it + if (tileDef == null && grid.TryGetTileRef(position, out var tileRef)) { - sound = null; - return false; + tileDef = (ContentTileDefinition) _tileDefinitionManager[tileRef.Tile.TypeId]; } - // Walking on a tile. - var def = (ContentTileDefinition) _tileDefinitionManager[tileRef.Tile.TypeId]; - sound = haveShoes ? def.FootstepSounds : def.BarestepSounds; + if (tileDef == null) + return false; + + sound = haveShoes ? tileDef.FootstepSounds : tileDef.BarestepSounds; return sound != null; } } diff --git a/Content.Shared/NPC/Events/HTNMessage.cs b/Content.Shared/NPC/Events/HTNMessage.cs index 415f2cf8173..95f10cf7ad8 100644 --- a/Content.Shared/NPC/Events/HTNMessage.cs +++ b/Content.Shared/NPC/Events/HTNMessage.cs @@ -8,6 +8,6 @@ namespace Content.Shared.NPC; [Serializable, NetSerializable] public sealed class HTNMessage : EntityEventArgs { - public EntityUid Uid; + public NetEntity Uid; public string Text = string.Empty; } diff --git a/Content.Shared/NPC/Events/NPCSteeringDebugEvent.cs b/Content.Shared/NPC/Events/NPCSteeringDebugEvent.cs index 0dd14c4c1a6..11d840e647f 100644 --- a/Content.Shared/NPC/Events/NPCSteeringDebugEvent.cs +++ b/Content.Shared/NPC/Events/NPCSteeringDebugEvent.cs @@ -19,13 +19,13 @@ public NPCSteeringDebugEvent(List data) [Serializable, NetSerializable] public readonly record struct NPCSteeringDebugData( - EntityUid EntityUid, + NetEntity EntityUid, Vector2 Direction, float[] Interest, float[] Danger, List DangerPoints) { - public readonly EntityUid EntityUid = EntityUid; + public readonly NetEntity EntityUid = EntityUid; public readonly Vector2 Direction = Direction; public readonly float[] Interest = Interest; public readonly float[] Danger = Danger; diff --git a/Content.Shared/NPC/Events/PathBreadcrumbsMessage.cs b/Content.Shared/NPC/Events/PathBreadcrumbsMessage.cs index fd62e411e0f..17bec4c63b4 100644 --- a/Content.Shared/NPC/Events/PathBreadcrumbsMessage.cs +++ b/Content.Shared/NPC/Events/PathBreadcrumbsMessage.cs @@ -5,13 +5,13 @@ namespace Content.Shared.NPC; [Serializable, NetSerializable] public sealed class PathBreadcrumbsMessage : EntityEventArgs { - public Dictionary>> Breadcrumbs = new(); + public Dictionary>> Breadcrumbs = new(); } [Serializable, NetSerializable] public sealed class PathBreadcrumbsRefreshMessage : EntityEventArgs { - public EntityUid GridUid; + public NetEntity GridUid; public Vector2i Origin; public List Data = new(); } @@ -19,5 +19,5 @@ public sealed class PathBreadcrumbsRefreshMessage : EntityEventArgs [Serializable, NetSerializable] public sealed class PathPolysMessage : EntityEventArgs { - public Dictionary>>> Polys = new(); + public Dictionary>>> Polys = new(); } diff --git a/Content.Shared/NPC/Events/PathPolysRefreshMessage.cs b/Content.Shared/NPC/Events/PathPolysRefreshMessage.cs index afb788e0271..194cc1d979a 100644 --- a/Content.Shared/NPC/Events/PathPolysRefreshMessage.cs +++ b/Content.Shared/NPC/Events/PathPolysRefreshMessage.cs @@ -5,7 +5,7 @@ namespace Content.Shared.NPC; [Serializable, NetSerializable] public sealed class PathPolysRefreshMessage : EntityEventArgs { - public EntityUid GridUid; + public NetEntity GridUid; public Vector2i Origin; /// diff --git a/Content.Shared/NPC/PathPoly.cs b/Content.Shared/NPC/PathPoly.cs index 426c6e1a00f..ad5832a04ac 100644 --- a/Content.Shared/NPC/PathPoly.cs +++ b/Content.Shared/NPC/PathPoly.cs @@ -16,17 +16,17 @@ namespace Content.Shared.NPC; [Serializable, NetSerializable] public sealed class DebugPathPoly { - public EntityUid GraphUid; + public NetEntity GraphUid; public Vector2i ChunkOrigin; public byte TileIndex; public Box2 Box; public PathfindingData Data; - public List Neighbors = default!; + public List Neighbors = default!; } [Serializable, NetSerializable] public sealed class DebugPathPolyNeighbor { - public EntityCoordinates Coordinates; + public NetCoordinates Coordinates; } diff --git a/Content.Shared/NPC/SharedNPCComponent.cs b/Content.Shared/NPC/SharedNPCComponent.cs index 93dd64b4f80..8d2dc96a21a 100644 --- a/Content.Shared/NPC/SharedNPCComponent.cs +++ b/Content.Shared/NPC/SharedNPCComponent.cs @@ -3,7 +3,7 @@ namespace Content.Shared.NPC; [NetworkedComponent] -public abstract class SharedNPCComponent : Component +public abstract partial class SharedNPCComponent : Component { } diff --git a/Content.Shared/NameIdentifier/NameIdentifierGroupPrototype.cs b/Content.Shared/NameIdentifier/NameIdentifierGroupPrototype.cs index dd9a4e91ffa..82dce0cf3bc 100644 --- a/Content.Shared/NameIdentifier/NameIdentifierGroupPrototype.cs +++ b/Content.Shared/NameIdentifier/NameIdentifierGroupPrototype.cs @@ -6,7 +6,7 @@ namespace Content.Shared.NameIdentifier; public sealed class NameIdentifierGroupPrototype : IPrototype { [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// /// Should the identifier become the full name, or just append? diff --git a/Content.Shared/Ninja/Components/BatteryDrainerComponent.cs b/Content.Shared/Ninja/Components/BatteryDrainerComponent.cs new file mode 100644 index 00000000000..55bcdd0f0a5 --- /dev/null +++ b/Content.Shared/Ninja/Components/BatteryDrainerComponent.cs @@ -0,0 +1,38 @@ +using Content.Shared.Ninja.Systems; +using Robust.Shared.Audio; + +namespace Content.Shared.Ninja.Components; + +/// +/// Component for draining power from APCs/substations/SMESes, when ProviderUid is set to a battery cell. +/// Does not rely on relay, simply being on the user and having BatteryUid set is enough. +/// +[RegisterComponent, Access(typeof(SharedBatteryDrainerSystem))] +public sealed partial class BatteryDrainerComponent : Component +{ + /// + /// The powercell entity to drain power into. + /// Determines whether draining is possible. + /// + [DataField("batteryUid"), ViewVariables(VVAccess.ReadWrite)] + public EntityUid? BatteryUid; + + /// + /// Conversion rate between joules in a device and joules added to battery. + /// Should be very low since powercells store nothing compared to even an APC. + /// + [DataField("drainEfficiency"), ViewVariables(VVAccess.ReadWrite)] + public float DrainEfficiency = 0.001f; + + /// + /// Time that the do after takes to drain charge from a battery, in seconds + /// + [DataField("drainTime"), ViewVariables(VVAccess.ReadWrite)] + public float DrainTime = 1f; + + /// + /// Sound played after the doafter ends. + /// + [DataField("sparkSound")] + public SoundSpecifier SparkSound = new SoundCollectionSpecifier("sparks"); +} diff --git a/Content.Shared/Ninja/Components/BombingTargetComponent.cs b/Content.Shared/Ninja/Components/BombingTargetComponent.cs new file mode 100644 index 00000000000..bf0eaec84be --- /dev/null +++ b/Content.Shared/Ninja/Components/BombingTargetComponent.cs @@ -0,0 +1,9 @@ +namespace Content.Shared.Ninja.Components; + +/// +/// Makes this warp point a valid bombing target for ninja's spider charge. +/// +[RegisterComponent] +public sealed partial class BombingTargetComponent : Component +{ +} diff --git a/Content.Shared/Ninja/Components/DashAbilityComponent.cs b/Content.Shared/Ninja/Components/DashAbilityComponent.cs new file mode 100644 index 00000000000..85e0963af1e --- /dev/null +++ b/Content.Shared/Ninja/Components/DashAbilityComponent.cs @@ -0,0 +1,33 @@ +using Content.Shared.Actions; +using Content.Shared.Ninja.Systems; +using Robust.Shared.Audio; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +/// +/// Adds an action to dash, teleport to clicked position, when this item is held. +/// +[RegisterComponent, NetworkedComponent, Access(typeof(DashAbilitySystem))] +public sealed partial class DashAbilityComponent : Component +{ + /// + /// The action id for dashing. + /// + [DataField("dashAction", required: true, customTypeSerializer: typeof(PrototypeIdSerializer)), ViewVariables(VVAccess.ReadWrite)] + public string DashAction = string.Empty; + + [DataField("dashActionEntity")] + public EntityUid? DashActionEntity; + + /// + /// Sound played when using dash action. + /// + [DataField("blinkSound"), ViewVariables(VVAccess.ReadWrite)] + public SoundSpecifier BlinkSound = new SoundPathSpecifier("/Audio/Magic/blink.ogg") + { + Params = AudioParams.Default.WithVolume(5f) + }; +} + +public sealed partial class DashEvent : WorldTargetActionEvent { } diff --git a/Content.Shared/Ninja/Components/EmagProviderComponent.cs b/Content.Shared/Ninja/Components/EmagProviderComponent.cs new file mode 100644 index 00000000000..db7678f61d7 --- /dev/null +++ b/Content.Shared/Ninja/Components/EmagProviderComponent.cs @@ -0,0 +1,28 @@ +using Content.Shared.Ninja.Systems; +using Content.Shared.Tag; +using Content.Shared.Whitelist; +using Robust.Shared.GameStates; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Shared.Ninja.Components; + +/// +/// Component for emagging things on click. +/// No charges but checks against a whitelist. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +[Access(typeof(EmagProviderSystem))] +public sealed partial class EmagProviderComponent : Component +{ + /// + /// The tag that marks an entity as immune to emagging. + /// + [DataField("emagImmuneTag", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string EmagImmuneTag = "EmagImmune"; + + /// + /// Whitelist that entities must be on to work. + /// + [DataField("whitelist"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + public EntityWhitelist? Whitelist = null; +} diff --git a/Content.Shared/Ninja/Components/EnergyKatanaComponent.cs b/Content.Shared/Ninja/Components/EnergyKatanaComponent.cs new file mode 100644 index 00000000000..33b8fc78933 --- /dev/null +++ b/Content.Shared/Ninja/Components/EnergyKatanaComponent.cs @@ -0,0 +1,12 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Ninja.Components; + +/// +/// Component for a Space Ninja's katana, controls ninja related dash logic. +/// Requires a ninja with a suit for abilities to work. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class EnergyKatanaComponent : Component +{ +} diff --git a/Content.Shared/Ninja/Components/NinjaGlovesComponent.cs b/Content.Shared/Ninja/Components/NinjaGlovesComponent.cs new file mode 100644 index 00000000000..b104312b204 --- /dev/null +++ b/Content.Shared/Ninja/Components/NinjaGlovesComponent.cs @@ -0,0 +1,45 @@ +using Content.Shared.DoAfter; +using Content.Shared.Ninja.Systems; +using Content.Shared.Toggleable; +using Content.Shared.Whitelist; +using Robust.Shared.Audio; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Robust.Shared.Utility; + +namespace Content.Shared.Ninja.Components; + +/// +/// Component for toggling glove powers. +/// Powers being enabled is controlled by User not being null. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +[Access(typeof(SharedNinjaGlovesSystem))] +public sealed partial class NinjaGlovesComponent : Component +{ + /// + /// Entity of the ninja using these gloves, usually means enabled + /// + [DataField("user"), AutoNetworkedField] + public EntityUid? User; + + /// + /// The action id for toggling ninja gloves abilities + /// + [DataField("toggleAction", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string ToggleAction = "ActionToggleNinjaGloves"; + + [DataField("toggleActionEntity")] + public EntityUid? ToggleActionEntity; + + /// + /// The whitelist used for the emag provider to emag airlocks only (not regular doors). + /// + [DataField("doorjackWhitelist")] + public EntityWhitelist DoorjackWhitelist = new() + { + Components = new[] {"Airlock"} + }; +} diff --git a/Content.Shared/Ninja/Components/NinjaSuitComponent.cs b/Content.Shared/Ninja/Components/NinjaSuitComponent.cs new file mode 100644 index 00000000000..816cc9d731b --- /dev/null +++ b/Content.Shared/Ninja/Components/NinjaSuitComponent.cs @@ -0,0 +1,125 @@ +using Content.Shared.Actions; +using Content.Shared.Ninja.Systems; +using Robust.Shared.Audio; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Robust.Shared.Utility; + +namespace Content.Shared.Ninja.Components; + +/// +/// Component for ninja suit abilities and power consumption. +/// As an implementation detail, dashing with katana is a suit action which isn't ideal. +/// +[RegisterComponent, NetworkedComponent, Access(typeof(SharedNinjaSuitSystem))] +public sealed partial class NinjaSuitComponent : Component +{ + /// + /// Battery charge used passively, in watts. Will last 1000 seconds on a small-capacity power cell. + /// + [DataField("passiveWattage")] + public float PassiveWattage = 0.36f; + + /// + /// Battery charge used while cloaked, stacks with passive. Will last 200 seconds while cloaked on a small-capacity power cell. + /// + [DataField("cloakWattage")] + public float CloakWattage = 1.44f; + + /// + /// Sound played when a ninja is hit while cloaked. + /// + [DataField("revealSound")] + public SoundSpecifier RevealSound = new SoundPathSpecifier("/Audio/Effects/chime.ogg"); + + /// + /// How long to disable all abilities for when revealed. + /// This adds a UseDelay to the ninja so it should not be set by anything else. + /// + [DataField("disableTime")] + public TimeSpan DisableTime = TimeSpan.FromSeconds(5); + + /// + /// The action id for creating throwing stars. + /// + [DataField("createThrowingStarAction", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string CreateThrowingStarAction = "ActionCreateThrowingStar"; + + [DataField("createThrowingStarActionEntity")] + public EntityUid? CreateThrowingStarActionEntity; + + /// + /// Battery charge used to create a throwing star. Can do it 25 times on a small-capacity power cell. + /// + [DataField("throwingStarCharge")] + public float ThrowingStarCharge = 14.4f; + + /// + /// Throwing star item to create with the action + /// + [DataField("throwingStarPrototype", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string ThrowingStarPrototype = "ThrowingStarNinja"; + + /// + /// The action id for recalling a bound energy katana + /// + [DataField("recallKatanaAction", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string RecallKatanaAction = "ActionRecallKatana"; + + [DataField("recallKatanaActionEntity")] + public EntityUid? RecallKatanaActionEntity; + + /// + /// Battery charge used per tile the katana teleported. + /// Uses 1% of a default battery per tile. + /// + [DataField("recallCharge")] + public float RecallCharge = 3.6f; + + /// + /// The action id for creating an EMP burst + /// + [DataField("empAction", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string EmpAction = "ActionNinjaEmp"; + + [DataField("empActionEntity")] + public EntityUid? EmpActionEntity; + + /// + /// Battery charge used to create an EMP burst. Can do it 2 times on a small-capacity power cell. + /// + [DataField("empCharge")] + public float EmpCharge = 180f; + + /// + /// Range of the EMP in tiles. + /// + [DataField("empRange")] + public float EmpRange = 6f; + + /// + /// Power consumed from batteries by the EMP + /// + [DataField("empConsumption")] + public float EmpConsumption = 100000f; + + /// + /// How long the EMP effects last for, in seconds + /// + [DataField("empDuration")] + public float EmpDuration = 60f; +} + +public sealed partial class CreateThrowingStarEvent : InstantActionEvent +{ +} + +public sealed partial class RecallKatanaEvent : InstantActionEvent +{ +} + +public sealed partial class NinjaEmpEvent : InstantActionEvent +{ +} diff --git a/Content.Shared/Ninja/Components/SpaceNinjaComponent.cs b/Content.Shared/Ninja/Components/SpaceNinjaComponent.cs new file mode 100644 index 00000000000..dff4b56aa4a --- /dev/null +++ b/Content.Shared/Ninja/Components/SpaceNinjaComponent.cs @@ -0,0 +1,38 @@ +using Content.Shared.Ninja.Systems; +using Robust.Shared.GameStates; +using Robust.Shared.Serialization; + +namespace Content.Shared.Ninja.Components; + +/// +/// Component placed on a mob to make it a space ninja, able to use suit and glove powers. +/// Contains ids of all ninja equipment and the game rule. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +[Access(typeof(SharedSpaceNinjaSystem))] +public sealed partial class SpaceNinjaComponent : Component +{ + /// + /// The ninja game rule that spawned this ninja. + /// + [DataField("rule")] + public EntityUid? Rule; + + /// + /// Currently worn suit + /// + [DataField("suit"), AutoNetworkedField] + public EntityUid? Suit; + + /// + /// Currently worn gloves + /// + [DataField("gloves"), AutoNetworkedField] + public EntityUid? Gloves; + + /// + /// Bound katana, set once picked up and never removed + /// + [DataField("katana"), AutoNetworkedField] + public EntityUid? Katana; +} diff --git a/Content.Shared/Ninja/Components/SpiderChargeComponent.cs b/Content.Shared/Ninja/Components/SpiderChargeComponent.cs new file mode 100644 index 00000000000..dacf47bb235 --- /dev/null +++ b/Content.Shared/Ninja/Components/SpiderChargeComponent.cs @@ -0,0 +1,19 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Ninja.Components; + +/// +/// Component for the Space Ninja's unique Spider Charge. +/// Only this component detonating can trigger the ninja's objective. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class SpiderChargeComponent : Component +{ + /// Range for planting within the target area + [DataField("range")] + public float Range = 10f; + + /// The ninja that planted this charge + [DataField("planter")] + public EntityUid? Planter = null; +} diff --git a/Content.Shared/Ninja/Components/StunProviderComponent.cs b/Content.Shared/Ninja/Components/StunProviderComponent.cs new file mode 100644 index 00000000000..653b1254784 --- /dev/null +++ b/Content.Shared/Ninja/Components/StunProviderComponent.cs @@ -0,0 +1,67 @@ +using Content.Shared.Ninja.Systems; +using Content.Shared.Whitelist; +using Robust.Shared.GameStates; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + +namespace Content.Shared.Ninja.Components; + +/// +/// Component for stunning mobs on click outside of harm mode. +/// Knocks them down for a bit and deals shock damage. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, Access(typeof(SharedStunProviderSystem))] +public sealed partial class StunProviderComponent : Component +{ + /// + /// The powercell entity to take power from. + /// Determines whether stunning is possible. + /// + [DataField("batteryUid"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + public EntityUid? BatteryUid; + + /// + /// Joules required in the battery to stun someone. Defaults to 10 uses on a small battery. + /// + [DataField("stunCharge"), ViewVariables(VVAccess.ReadWrite)] + public float StunCharge = 36.0f; + + /// + /// Shock damage dealt when stunning someone + /// + [DataField("stunDamage"), ViewVariables(VVAccess.ReadWrite)] + public int StunDamage = 5; + + /// + /// Time that someone is stunned for, stacks if done multiple times. + /// + [DataField("stunTime"), ViewVariables(VVAccess.ReadWrite)] + public TimeSpan StunTime = TimeSpan.FromSeconds(3); + + /// + /// How long stunning is disabled after stunning something. + /// + [DataField("cooldown"), ViewVariables(VVAccess.ReadWrite)] + public TimeSpan Cooldown = TimeSpan.FromSeconds(1); + + /// + /// Locale string to popup when there is no power + /// + [DataField("noPowerPopup", required: true), ViewVariables(VVAccess.ReadWrite)] + public string NoPowerPopup = string.Empty; + + /// + /// Whitelist for what counts as a mob. + /// + [DataField("whitelist")] + public EntityWhitelist Whitelist = new() + { + Components = new[] {"Stamina"} + }; + + /// + /// When someone can next be stunned. + /// Essentially a UseDelay unique to this component. + /// + [DataField("nextStun", customTypeSerializer: typeof(TimeOffsetSerializer)), ViewVariables(VVAccess.ReadWrite)] + public TimeSpan NextStun = TimeSpan.Zero; +} diff --git a/Content.Shared/Ninja/Systems/DashAbilitySystem.cs b/Content.Shared/Ninja/Systems/DashAbilitySystem.cs new file mode 100644 index 00000000000..bd6320de68a --- /dev/null +++ b/Content.Shared/Ninja/Systems/DashAbilitySystem.cs @@ -0,0 +1,118 @@ +using Content.Shared.Actions; +using Content.Shared.Charges.Components; +using Content.Shared.Charges.Systems; +using Content.Shared.Hands.EntitySystems; +using Content.Shared.Interaction; +using Content.Shared.Ninja.Components; +using Content.Shared.Physics; +using Content.Shared.Popups; +using Robust.Shared.Audio; +using Robust.Shared.GameObjects; +using Robust.Shared.Timing; + +namespace Content.Shared.Ninja.Systems; + +/// +/// Handles dashing logic including charge consumption and checking attempt events. +/// +public sealed class DashAbilitySystem : EntitySystem +{ + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedChargesSystem _charges = default!; + [Dependency] private readonly SharedHandsSystem _hands = default!; + [Dependency] private readonly SharedInteractionSystem _interaction = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnGetItemActions); + SubscribeLocalEvent(OnDash); + } + + private void OnGetItemActions(EntityUid uid, DashAbilityComponent comp, GetItemActionsEvent args) + { + var ev = new AddDashActionEvent(args.User); + RaiseLocalEvent(uid, ev); + + if (ev.Cancelled) + return; + + args.AddAction(ref comp.DashActionEntity, comp.DashAction); + } + + /// + /// Handle charges and teleport to a visible location. + /// + private void OnDash(EntityUid uid, DashAbilityComponent comp, DashEvent args) + { + if (!_timing.IsFirstTimePredicted) + return; + + var user = args.Performer; + args.Handled = true; + + var ev = new DashAttemptEvent(user); + RaiseLocalEvent(uid, ev); + if (ev.Cancelled) + return; + + if (!_hands.IsHolding(user, uid, out var _)) + { + _popup.PopupClient(Loc.GetString("dash-ability-not-held", ("item", uid)), user, user); + return; + } + + TryComp(uid, out var charges); + if (_charges.IsEmpty(uid, charges)) + { + _popup.PopupClient(Loc.GetString("dash-ability-no-charges", ("item", uid)), user, user); + return; + } + + var origin = Transform(user).MapPosition; + var target = args.Target.ToMap(EntityManager, _transform); + // prevent collision with the user duh + if (!_interaction.InRangeUnobstructed(origin, target, 0f, CollisionGroup.Opaque, uid => uid == user)) + { + // can only dash if the destination is visible on screen + _popup.PopupClient(Loc.GetString("dash-ability-cant-see", ("item", uid)), user, user); + return; + } + + _transform.SetCoordinates(user, args.Target); + _transform.AttachToGridOrMap(user); + _audio.PlayPredicted(comp.BlinkSound, user, user); + if (charges != null) + _charges.UseCharge(uid, charges); + } +} + +/// +/// Raised on the item before adding the dash action +/// +public sealed class AddDashActionEvent : CancellableEntityEventArgs +{ + public EntityUid User; + + public AddDashActionEvent(EntityUid user) + { + User = user; + } +} + +/// +/// Raised on the item before dashing is done. +/// +public sealed class DashAttemptEvent : CancellableEntityEventArgs +{ + public EntityUid User; + + public DashAttemptEvent(EntityUid user) + { + User = user; + } +} diff --git a/Content.Shared/Ninja/Systems/EmagProviderSystem.cs b/Content.Shared/Ninja/Systems/EmagProviderSystem.cs new file mode 100644 index 00000000000..df9cf8ac825 --- /dev/null +++ b/Content.Shared/Ninja/Systems/EmagProviderSystem.cs @@ -0,0 +1,72 @@ +using Content.Shared.Administration.Logs; +using Content.Shared.Emag.Systems; +using Content.Shared.Database; +using Content.Shared.Interaction; +using Content.Shared.Ninja.Components; +using Content.Shared.Tag; +using Content.Shared.Whitelist; + +namespace Content.Shared.Ninja.Systems; + +/// +/// Handles emagging whitelisted objects when clicked. +/// +public sealed class EmagProviderSystem : EntitySystem +{ + [Dependency] private readonly EmagSystem _emag = default!; + [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; + [Dependency] private readonly SharedNinjaGlovesSystem _gloves = default!; + [Dependency] private readonly TagSystem _tags = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnBeforeInteractHand); + } + + /// + /// Emag clicked entities that are on the whitelist. + /// + private void OnBeforeInteractHand(EntityUid uid, EmagProviderComponent comp, BeforeInteractHandEvent args) + { + // TODO: change this into a generic check event thing + if (args.Handled || !_gloves.AbilityCheck(uid, args, out var target)) + return; + + // only allowed to emag entities on the whitelist + if (comp.Whitelist != null && !comp.Whitelist.IsValid(target, EntityManager)) + return; + + // only allowed to emag non-immune entities + if (_tags.HasTag(target, comp.EmagImmuneTag)) + return; + + var handled = _emag.DoEmagEffect(uid, target); + if (!handled) + return; + + _adminLogger.Add(LogType.Emag, LogImpact.High, $"{ToPrettyString(uid):player} emagged {ToPrettyString(target):target}"); + var ev = new EmaggedSomethingEvent(target); + RaiseLocalEvent(uid, ref ev); + args.Handled = true; + } + + /// + /// Set the whitelist for emagging something outside of yaml. + /// + public void SetWhitelist(EntityUid uid, EntityWhitelist? whitelist, EmagProviderComponent? comp = null) + { + if (!Resolve(uid, ref comp)) + return; + + comp.Whitelist = whitelist; + Dirty(uid, comp); + } +} + +/// +/// Raised on the player when emagging something. +/// +[ByRefEvent] +public record struct EmaggedSomethingEvent(EntityUid Target); diff --git a/Content.Shared/Ninja/Systems/EnergyKatanaSystem.cs b/Content.Shared/Ninja/Systems/EnergyKatanaSystem.cs new file mode 100644 index 00000000000..d427ffa39b4 --- /dev/null +++ b/Content.Shared/Ninja/Systems/EnergyKatanaSystem.cs @@ -0,0 +1,47 @@ +using Content.Shared.Inventory.Events; +using Content.Shared.Ninja.Components; + +namespace Content.Shared.Ninja.Systems; + +/// +/// System for katana binding and dash events. Recalling is handled by the suit. +/// +public sealed class EnergyKatanaSystem : EntitySystem +{ + [Dependency] private readonly SharedSpaceNinjaSystem _ninja = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnEquipped); + SubscribeLocalEvent(OnAddDashAction); + SubscribeLocalEvent(OnDashAttempt); + } + + /// + /// When equipped by a ninja, try to bind it. + /// + private void OnEquipped(EntityUid uid, EnergyKatanaComponent comp, GotEquippedEvent args) + { + // check if user isnt a ninja or already has a katana bound + var user = args.Equipee; + if (!TryComp(user, out var ninja) || ninja.Katana != null) + return; + + // bind it since its unbound + _ninja.BindKatana(user, uid, ninja); + } + + private void OnAddDashAction(EntityUid uid, EnergyKatanaComponent comp, AddDashActionEvent args) + { + if (!HasComp(args.User)) + args.Cancel(); + } + + private void OnDashAttempt(EntityUid uid, EnergyKatanaComponent comp, DashAttemptEvent args) + { + if (!TryComp(args.User, out var ninja) || ninja.Katana != uid) + args.Cancel(); + } +} diff --git a/Content.Shared/Ninja/Systems/SharedBatteryDrainerSystem.cs b/Content.Shared/Ninja/Systems/SharedBatteryDrainerSystem.cs new file mode 100644 index 00000000000..ac11063eb71 --- /dev/null +++ b/Content.Shared/Ninja/Systems/SharedBatteryDrainerSystem.cs @@ -0,0 +1,69 @@ +using Content.Shared.Ninja.Components; +using Content.Shared.DoAfter; +using Robust.Shared.Serialization; + +namespace Content.Shared.Ninja.Systems; + +/// +/// Basic draining prediction and API, all real logic is handled serverside. +/// +public abstract class SharedBatteryDrainerSystem : EntitySystem +{ + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent>(OnDoAfterAttempt); + SubscribeLocalEvent(OnDoAfter); + } + + /// + /// Cancel any drain doafters if the battery is removed or gets filled. + /// + protected virtual void OnDoAfterAttempt(EntityUid uid, BatteryDrainerComponent comp, DoAfterAttemptEvent args) + { + if (comp.BatteryUid == null) + { + args.Cancel(); + } + } + + /// + /// Drain power from a power source (on server) and repeat if it succeeded. + /// Client will predict always succeeding since power is serverside. + /// + private void OnDoAfter(EntityUid uid, BatteryDrainerComponent comp, DrainDoAfterEvent args) + { + if (args.Cancelled || args.Handled || args.Target == null) + return; + + // repeat if there is still power to drain + args.Repeat = TryDrainPower(uid, comp, args.Target.Value); + } + + /// + /// Attempt to drain as much power as possible into the powercell. + /// Client always predicts this as succeeding since power is serverside and it can only fail once, when the powercell is filled or the target is emptied. + /// + protected virtual bool TryDrainPower(EntityUid uid, BatteryDrainerComponent comp, EntityUid target) + { + return true; + } + + /// + /// Sets the battery field on the drainer. + /// + public void SetBattery(EntityUid uid, EntityUid? battery, BatteryDrainerComponent? comp = null) + { + if (!Resolve(uid, ref comp)) + return; + + comp.BatteryUid = battery; + } +} + +/// +/// DoAfter event for . +/// +[Serializable, NetSerializable] +public sealed partial class DrainDoAfterEvent : SimpleDoAfterEvent { } diff --git a/Content.Shared/Ninja/Systems/SharedNinjaGlovesSystem.cs b/Content.Shared/Ninja/Systems/SharedNinjaGlovesSystem.cs new file mode 100644 index 00000000000..45c97fd1aa7 --- /dev/null +++ b/Content.Shared/Ninja/Systems/SharedNinjaGlovesSystem.cs @@ -0,0 +1,116 @@ +using Content.Shared.Actions; +using Content.Shared.CombatMode; +using Content.Shared.Communications; +using Content.Shared.Doors.Components; +using Content.Shared.DoAfter; +using Content.Shared.Examine; +using Content.Shared.Hands.Components; +using Content.Shared.IdentityManagement; +using Content.Shared.Interaction; +using Content.Shared.Inventory.Events; +using Content.Shared.Ninja.Components; +using Content.Shared.Popups; +using Content.Shared.Research.Components; +using Content.Shared.Timing; +using Content.Shared.Toggleable; +using Robust.Shared.Timing; +using System.Diagnostics.CodeAnalysis; + +namespace Content.Shared.Ninja.Systems; + +/// +/// Provides the toggle action and handles examining and unequipping. +/// +public abstract class SharedNinjaGlovesSystem : EntitySystem +{ + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] protected readonly SharedAppearanceSystem Appearance = default!; + [Dependency] private readonly SharedCombatModeSystem _combatMode = default!; + [Dependency] protected readonly SharedDoAfterSystem _doAfter = default!; + [Dependency] protected readonly SharedInteractionSystem Interaction = default!; + [Dependency] private readonly SharedSpaceNinjaSystem _ninja = default!; + [Dependency] protected readonly SharedPopupSystem Popup = default!; + [Dependency] private readonly UseDelaySystem _useDelay = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnGetItemActions); + SubscribeLocalEvent(OnExamined); + SubscribeLocalEvent(OnUnequipped); + } + + /// + /// Disable glove abilities and show the popup if they were enabled previously. + /// + public void DisableGloves(EntityUid uid, NinjaGlovesComponent? comp = null) + { + // already disabled? + if (!Resolve(uid, ref comp) || comp.User == null) + return; + + var user = comp.User.Value; + comp.User = null; + Dirty(uid, comp); + + Appearance.SetData(uid, ToggleVisuals.Toggled, false); + Popup.PopupClient(Loc.GetString("ninja-gloves-off"), user, user); + + RemComp(user); + RemComp(user); + RemComp(user); + RemComp(user); + RemComp(user); + } + + /// + /// Adds the toggle action when equipped. + /// + private void OnGetItemActions(EntityUid uid, NinjaGlovesComponent comp, GetItemActionsEvent args) + { + if (HasComp(args.User)) + args.AddAction(ref comp.ToggleActionEntity, comp.ToggleAction); + } + + /// + /// Show if the gloves are enabled when examining. + /// + private void OnExamined(EntityUid uid, NinjaGlovesComponent comp, ExaminedEvent args) + { + if (!args.IsInDetailsRange) + return; + + args.PushText(Loc.GetString(comp.User != null ? "ninja-gloves-examine-on" : "ninja-gloves-examine-off")); + } + + /// + /// Disable gloves when unequipped and clean up ninja's gloves reference + /// + private void OnUnequipped(EntityUid uid, NinjaGlovesComponent comp, GotUnequippedEvent args) + { + if (comp.User != null) + { + var user = comp.User.Value; + Popup.PopupClient(Loc.GetString("ninja-gloves-off"), user, user); + DisableGloves(uid, comp); + } + } + + + // TODO: generic event thing + /// + /// GloveCheck but for abilities stored on the player, skips some checks. + /// Intended to be more generic, doesn't require the user to be a ninja or have any ninja equipment. + /// + public bool AbilityCheck(EntityUid uid, BeforeInteractHandEvent args, out EntityUid target) + { + target = args.Target; + return _timing.IsFirstTimePredicted + && !_combatMode.IsInCombatMode(uid) + && !_useDelay.ActiveDelay(uid) + && TryComp(uid, out var hands) + && hands.ActiveHandEntity == null + && Interaction.InRangeUnobstructed(uid, target); + } +} diff --git a/Content.Shared/Ninja/Systems/SharedNinjaSuitSystem.cs b/Content.Shared/Ninja/Systems/SharedNinjaSuitSystem.cs new file mode 100644 index 00000000000..83fcba4ac60 --- /dev/null +++ b/Content.Shared/Ninja/Systems/SharedNinjaSuitSystem.cs @@ -0,0 +1,139 @@ +using Content.Shared.Actions; +using Content.Shared.Clothing.Components; +using Content.Shared.Clothing.EntitySystems; +using Content.Shared.Inventory.Events; +using Content.Shared.Ninja.Components; +using Content.Shared.Timing; +using Robust.Shared.Audio; +using Robust.Shared.Network; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; + +namespace Content.Shared.Ninja.Systems; + +/// +/// Handles (un)equipping and provides some API functions. +/// +public abstract class SharedNinjaSuitSystem : EntitySystem +{ + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedNinjaGlovesSystem _gloves = default!; + [Dependency] protected readonly SharedSpaceNinjaSystem _ninja = default!; + [Dependency] protected readonly StealthClothingSystem StealthClothing = default!; + [Dependency] protected readonly UseDelaySystem UseDelay = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnEquipped); + SubscribeLocalEvent(OnGetItemActions); + SubscribeLocalEvent(OnAddStealthAction); + SubscribeLocalEvent(OnUnequipped); + } + + /// + /// Call the shared and serverside code for when a ninja equips the suit. + /// + private void OnEquipped(EntityUid uid, NinjaSuitComponent comp, GotEquippedEvent args) + { + var user = args.Equipee; + if (!TryComp(user, out var ninja)) + return; + + NinjaEquippedSuit(uid, comp, user, ninja); + } + + /// + /// Add all the actions when a suit is equipped by a ninja. + /// + private void OnGetItemActions(EntityUid uid, NinjaSuitComponent comp, GetItemActionsEvent args) + { + if (!HasComp(args.User)) + return; + + args.AddAction(ref comp.RecallKatanaActionEntity, comp.RecallKatanaAction); + args.AddAction(ref comp.CreateThrowingStarActionEntity, comp.CreateThrowingStarAction); + args.AddAction(ref comp.EmpActionEntity, comp.EmpAction); + } + + /// + /// Only add stealth clothing's toggle action when equipped by a ninja. + /// + private void OnAddStealthAction(EntityUid uid, NinjaSuitComponent comp, AddStealthActionEvent args) + { + if (!HasComp(args.User)) + args.Cancel(); + } + + /// + /// Call the shared and serverside code for when anyone unequips a suit. + /// + private void OnUnequipped(EntityUid uid, NinjaSuitComponent comp, GotUnequippedEvent args) + { + UserUnequippedSuit(uid, comp, args.Equipee); + } + + /// + /// Called when a suit is equipped by a space ninja. + /// In the future it might be changed to an explicit activation toggle/verb like gloves are. + /// + protected virtual void NinjaEquippedSuit(EntityUid uid, NinjaSuitComponent comp, EntityUid user, SpaceNinjaComponent ninja) + { + // mark the user as wearing this suit, used when being attacked among other things + _ninja.AssignSuit(user, uid, ninja); + + // initialize phase cloak, but keep it off + StealthClothing.SetEnabled(uid, user, false); + } + + /// + /// Force uncloaks the user and disables suit abilities. + /// + public void RevealNinja(EntityUid uid, EntityUid user, NinjaSuitComponent? comp = null, StealthClothingComponent? stealthClothing = null) + { + if (!Resolve(uid, ref comp, ref stealthClothing)) + return; + + if (!StealthClothing.SetEnabled(uid, user, false, stealthClothing)) + return; + + // previously cloaked, disable abilities for a short time + _audio.PlayPredicted(comp.RevealSound, uid, user); + // all abilities check for a usedelay on the ninja + var useDelay = EnsureComp(user); + useDelay.Delay = comp.DisableTime; + UseDelay.BeginDelay(user, useDelay); + } + + // TODO: modify PowerCellDrain + /// + /// Returns the power used by a suit + /// + public float SuitWattage(EntityUid uid, NinjaSuitComponent? suit = null) + { + if (!Resolve(uid, ref suit)) + return 0f; + + float wattage = suit.PassiveWattage; + if (TryComp(uid, out var stealthClothing) && stealthClothing.Enabled) + wattage += suit.CloakWattage; + return wattage; + } + + /// + /// Called when a suit is unequipped, not necessarily by a space ninja. + /// In the future it might be changed to also have explicit deactivation via toggle. + /// + protected virtual void UserUnequippedSuit(EntityUid uid, NinjaSuitComponent comp, EntityUid user) + { + if (!TryComp(user, out var ninja)) + return; + + // mark the user as not wearing a suit + _ninja.AssignSuit(user, null, ninja); + // disable glove abilities + if (ninja.Gloves != null && TryComp(ninja.Gloves.Value, out var gloves)) + _gloves.DisableGloves(ninja.Gloves.Value, gloves); + } +} diff --git a/Content.Shared/Ninja/Systems/SharedSpaceNinjaSystem.cs b/Content.Shared/Ninja/Systems/SharedSpaceNinjaSystem.cs new file mode 100644 index 00000000000..d8ff07c27aa --- /dev/null +++ b/Content.Shared/Ninja/Systems/SharedSpaceNinjaSystem.cs @@ -0,0 +1,89 @@ +using Content.Shared.Clothing.Components; +using Content.Shared.Ninja.Components; +using Content.Shared.Weapons.Melee.Events; +using Content.Shared.Weapons.Ranged.Events; +using Content.Shared.Popups; + +namespace Content.Shared.Ninja.Systems; + +/// +/// Provides shared ninja API, handles being attacked revealing ninja and stops guns from shooting. +/// +public abstract class SharedSpaceNinjaSystem : EntitySystem +{ + [Dependency] protected readonly SharedNinjaSuitSystem _suit = default!; + [Dependency] protected readonly SharedPopupSystem _popup = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnNinjaAttacked); + SubscribeLocalEvent(OnShotAttempted); + } + + /// + /// Set the ninja's worn suit entity + /// + public void AssignSuit(EntityUid uid, EntityUid? suit, SpaceNinjaComponent? comp = null) + { + if (!Resolve(uid, ref comp) || comp.Suit == suit) + return; + + comp.Suit = suit; + Dirty(uid, comp); + } + + /// + /// Set the ninja's worn gloves entity + /// + public void AssignGloves(EntityUid uid, EntityUid? gloves, SpaceNinjaComponent? comp = null) + { + if (!Resolve(uid, ref comp) || comp.Gloves == gloves) + return; + + comp.Gloves = gloves; + Dirty(uid, comp); + } + + /// + /// Bind a katana entity to a ninja, letting it be recalled and dash. + /// + public void BindKatana(EntityUid uid, EntityUid? katana, SpaceNinjaComponent? comp = null) + { + if (!Resolve(uid, ref comp) || comp.Katana == katana) + return; + + comp.Katana = katana; + Dirty(uid, comp); + } + + /// + /// Gets the user's battery and tries to use some charge from it, returning true if successful. + /// Serverside only. + /// + public virtual bool TryUseCharge(EntityUid user, float charge) + { + return false; + } + + /// + /// Handle revealing ninja if cloaked when attacked. + /// + private void OnNinjaAttacked(EntityUid uid, SpaceNinjaComponent comp, AttackedEvent args) + { + if (comp.Suit != null && TryComp(comp.Suit, out var stealthClothing) && stealthClothing.Enabled) + { + _suit.RevealNinja(comp.Suit.Value, uid, null, stealthClothing); + } + } + + /// + /// Require ninja to fight with HONOR, no guns! + /// + private void OnShotAttempted(EntityUid uid, SpaceNinjaComponent comp, ref ShotAttemptedEvent args) + { + _popup.PopupClient(Loc.GetString("gun-disabled"), uid, uid); + args.Cancel(); + } +} diff --git a/Content.Shared/Ninja/Systems/SharedStunProviderSystem.cs b/Content.Shared/Ninja/Systems/SharedStunProviderSystem.cs new file mode 100644 index 00000000000..61b6e4313ed --- /dev/null +++ b/Content.Shared/Ninja/Systems/SharedStunProviderSystem.cs @@ -0,0 +1,32 @@ +using Content.Shared.Ninja.Components; + +namespace Content.Shared.Ninja.Systems; + +/// +/// All interaction logic is implemented serverside. +/// This is in shared for API and access. +/// +public abstract class SharedStunProviderSystem : EntitySystem +{ + /// + /// Set the battery field on the stun provider. + /// + public void SetBattery(EntityUid uid, EntityUid? battery, StunProviderComponent? comp = null) + { + if (!Resolve(uid, ref comp)) + return; + + comp.BatteryUid = battery; + } + + /// + /// Set the no power popup field on the stun provider. + /// + public void SetNoPowerPopup(EntityUid uid, string popup, StunProviderComponent? comp = null) + { + if (!Resolve(uid, ref comp)) + return; + + comp.NoPowerPopup = popup; + } +} diff --git a/Content.Shared/NodeContainer/NodeVis.cs b/Content.Shared/NodeContainer/NodeVis.cs index 0208eb613e7..24982f272a3 100644 --- a/Content.Shared/NodeContainer/NodeVis.cs +++ b/Content.Shared/NodeContainer/NodeVis.cs @@ -36,7 +36,7 @@ public sealed class GroupData [Serializable, NetSerializable] public sealed class NodeDatum { - public EntityUid Entity; + public NetEntity Entity; public int NetId; public int[] Reachable = Array.Empty(); public string Name = ""; diff --git a/Content.Shared/Nuke/NukeDiskComponent.cs b/Content.Shared/Nuke/NukeDiskComponent.cs index 6a42998f7d5..2f99d68918c 100644 --- a/Content.Shared/Nuke/NukeDiskComponent.cs +++ b/Content.Shared/Nuke/NukeDiskComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Nuke; /// Used for tracking the nuke disk - isn't a tag for pinpointer purposes. /// [RegisterComponent, NetworkedComponent] -public sealed class NukeDiskComponent : Component +public sealed partial class NukeDiskComponent : Component { } diff --git a/Content.Shared/Nuke/NukeUiMessages.cs b/Content.Shared/Nuke/NukeUiMessages.cs index d368def774a..1c35cac7b07 100644 --- a/Content.Shared/Nuke/NukeUiMessages.cs +++ b/Content.Shared/Nuke/NukeUiMessages.cs @@ -2,7 +2,7 @@ namespace Content.Shared.Nuke { - public abstract class SharedNukeComponent : Component + public abstract partial class SharedNukeComponent : Component { public const string NukeDiskSlotId = "Nuke"; } diff --git a/Content.Shared/Nuke/SharedNuke.cs b/Content.Shared/Nuke/SharedNuke.cs index 9ed6faafb0c..1c471e11c66 100644 --- a/Content.Shared/Nuke/SharedNuke.cs +++ b/Content.Shared/Nuke/SharedNuke.cs @@ -32,7 +32,7 @@ public sealed class NukeUiState : BoundUserInterfaceState } [Serializable, NetSerializable] - public sealed class NukeDisarmDoAfterEvent : SimpleDoAfterEvent + public sealed partial class NukeDisarmDoAfterEvent : SimpleDoAfterEvent { } } diff --git a/Content.Shared/NukeOps/WarDeclaratorEvents.cs b/Content.Shared/NukeOps/WarDeclaratorEvents.cs new file mode 100644 index 00000000000..3e0c12b7ecc --- /dev/null +++ b/Content.Shared/NukeOps/WarDeclaratorEvents.cs @@ -0,0 +1,48 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared.NukeOps; + +[Serializable, NetSerializable] +public enum WarDeclaratorUiKey +{ + Key, +} + +public enum WarConditionStatus : byte +{ + WAR_READY, + WAR_DELAY, + YES_WAR, + NO_WAR_UNKNOWN, + NO_WAR_TIMEOUT, + NO_WAR_SMALL_CREW, + NO_WAR_SHUTTLE_DEPARTED +} + +[Serializable, NetSerializable] +public sealed class WarDeclaratorBoundUserInterfaceState : BoundUserInterfaceState +{ + public WarConditionStatus Status; + public int MinCrew; + public TimeSpan Delay; + public TimeSpan EndTime; + + public WarDeclaratorBoundUserInterfaceState(WarConditionStatus status, int minCrew, TimeSpan delay, TimeSpan endTime) + { + Status = status; + MinCrew = minCrew; + Delay = delay; + EndTime = endTime; + } +} + +[Serializable, NetSerializable] +public sealed class WarDeclaratorActivateMessage : BoundUserInterfaceMessage +{ + public string Message { get; } + + public WarDeclaratorActivateMessage(string msg) + { + Message = msg; + } +} diff --git a/Content.Shared/Nutrition/AnimalHusbandry/InfantComponent.cs b/Content.Shared/Nutrition/AnimalHusbandry/InfantComponent.cs index 95b0b0ded73..15adf6e2e8c 100644 --- a/Content.Shared/Nutrition/AnimalHusbandry/InfantComponent.cs +++ b/Content.Shared/Nutrition/AnimalHusbandry/InfantComponent.cs @@ -9,7 +9,7 @@ namespace Content.Shared.Nutrition.AnimalHusbandry; /// Infants have half the size, visually, and cannot breed. /// [RegisterComponent, NetworkedComponent] -public sealed class InfantComponent : Component +public sealed partial class InfantComponent : Component { /// /// How long the entity remains an infant. diff --git a/Content.Shared/Nutrition/AnimalHusbandry/ReproductiveComponent.cs b/Content.Shared/Nutrition/AnimalHusbandry/ReproductiveComponent.cs index 4db22da2468..c3f1fc69f50 100644 --- a/Content.Shared/Nutrition/AnimalHusbandry/ReproductiveComponent.cs +++ b/Content.Shared/Nutrition/AnimalHusbandry/ReproductiveComponent.cs @@ -11,7 +11,7 @@ namespace Content.Shared.Nutrition.AnimalHusbandry; /// can create several "child" entities. /// [RegisterComponent] -public sealed class ReproductiveComponent : Component +public sealed partial class ReproductiveComponent : Component { /// /// The next time when breeding will be attempted. diff --git a/Content.Shared/Nutrition/AnimalHusbandry/ReproductivePartnerComponent.cs b/Content.Shared/Nutrition/AnimalHusbandry/ReproductivePartnerComponent.cs index e18646b0657..ec1d62012db 100644 --- a/Content.Shared/Nutrition/AnimalHusbandry/ReproductivePartnerComponent.cs +++ b/Content.Shared/Nutrition/AnimalHusbandry/ReproductivePartnerComponent.cs @@ -6,7 +6,7 @@ /// This functions outside of the whitelist. /// [RegisterComponent] -public sealed class ReproductivePartnerComponent : Component +public sealed partial class ReproductivePartnerComponent : Component { } diff --git a/Content.Shared/Nutrition/Components/ButcherableComponent.cs b/Content.Shared/Nutrition/Components/ButcherableComponent.cs index ab8e40b4d45..4fce45422ad 100644 --- a/Content.Shared/Nutrition/Components/ButcherableComponent.cs +++ b/Content.Shared/Nutrition/Components/ButcherableComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Nutrition.Components /// Indicates that the entity can be thrown on a kitchen spike for butchering. /// [RegisterComponent, NetworkedComponent] - public sealed class ButcherableComponent : Component + public sealed partial class ButcherableComponent : Component { [DataField("spawned", required: true)] public List SpawnedEntities = new(); diff --git a/Content.Shared/Nutrition/Components/CreamPieComponent.cs b/Content.Shared/Nutrition/Components/CreamPieComponent.cs index f2095939645..b6bd1240849 100644 --- a/Content.Shared/Nutrition/Components/CreamPieComponent.cs +++ b/Content.Shared/Nutrition/Components/CreamPieComponent.cs @@ -5,13 +5,13 @@ namespace Content.Shared.Nutrition.Components { [Access(typeof(SharedCreamPieSystem))] [RegisterComponent] - public sealed class CreamPieComponent : Component + public sealed partial class CreamPieComponent : Component { [DataField("paralyzeTime")] - public float ParalyzeTime { get; } = 1f; + public float ParalyzeTime { get; private set; } = 1f; [DataField("sound")] - public SoundSpecifier Sound { get; } = new SoundCollectionSpecifier("desecration"); + public SoundSpecifier Sound { get; private set; } = new SoundCollectionSpecifier("desecration"); [ViewVariables] public bool Splatted { get; set; } = false; diff --git a/Content.Shared/Nutrition/Components/CreamPiedComponent.cs b/Content.Shared/Nutrition/Components/CreamPiedComponent.cs index 3a07485f28f..6779fe36667 100644 --- a/Content.Shared/Nutrition/Components/CreamPiedComponent.cs +++ b/Content.Shared/Nutrition/Components/CreamPiedComponent.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Nutrition.Components { [Access(typeof(SharedCreamPieSystem))] [RegisterComponent] - public sealed class CreamPiedComponent : Component + public sealed partial class CreamPiedComponent : Component { [ViewVariables] public bool CreamPied { get; set; } = false; diff --git a/Content.Shared/Nutrition/Components/HungerComponent.cs b/Content.Shared/Nutrition/Components/HungerComponent.cs index bd59cca6513..5224902a03c 100644 --- a/Content.Shared/Nutrition/Components/HungerComponent.cs +++ b/Content.Shared/Nutrition/Components/HungerComponent.cs @@ -9,7 +9,7 @@ namespace Content.Shared.Nutrition.Components; [RegisterComponent, NetworkedComponent, Access(typeof(HungerSystem))] -public sealed class HungerComponent : Component +public sealed partial class HungerComponent : Component { /// /// The current hunger amount of the entity diff --git a/Content.Shared/Nutrition/Components/SmokableComponent.cs b/Content.Shared/Nutrition/Components/SmokableComponent.cs index e2dbff92048..320b3dd31f8 100644 --- a/Content.Shared/Nutrition/Components/SmokableComponent.cs +++ b/Content.Shared/Nutrition/Components/SmokableComponent.cs @@ -5,16 +5,16 @@ namespace Content.Shared.Nutrition.Components { [RegisterComponent, NetworkedComponent] - public sealed class SmokableComponent : Component + public sealed partial class SmokableComponent : Component { [DataField("solution")] - public string Solution { get; } = "smokable"; + public string Solution { get; private set; } = "smokable"; /// /// Solution inhale amount per second. /// [DataField("inhaleAmount")] - public FixedPoint2 InhaleAmount { get; } = FixedPoint2.New(0.05f); + public FixedPoint2 InhaleAmount { get; private set; } = FixedPoint2.New(0.05f); [DataField("state")] public SmokableState State { get; set; } = SmokableState.Unlit; diff --git a/Content.Shared/Nutrition/Events.cs b/Content.Shared/Nutrition/Events.cs index bf4acfafa22..97d96e7bfff 100644 --- a/Content.Shared/Nutrition/Events.cs +++ b/Content.Shared/Nutrition/Events.cs @@ -8,13 +8,13 @@ namespace Content.Shared.Nutrition; /// Do after even for food and drink. /// [Serializable, NetSerializable] -public sealed class ConsumeDoAfterEvent : DoAfterEvent +public sealed partial class ConsumeDoAfterEvent : DoAfterEvent { [DataField("solution", required: true)] - public readonly string Solution = default!; + public string Solution = default!; [DataField("flavorMessage", required: true)] - public readonly string FlavorMessage = default!; + public string FlavorMessage = default!; private ConsumeDoAfterEvent() { @@ -33,13 +33,13 @@ public ConsumeDoAfterEvent(string solution, string flavorMessage) /// Do after event for vape. /// [Serializable, NetSerializable] -public sealed class VapeDoAfterEvent : DoAfterEvent +public sealed partial class VapeDoAfterEvent : DoAfterEvent { [DataField("solution", required: true)] - public readonly Solution Solution = default!; + public Solution Solution = default!; [DataField("forced", required: true)] - public readonly bool Forced = default!; + public bool Forced = default!; private VapeDoAfterEvent() { diff --git a/Content.Shared/Nutrition/Flavor.cs b/Content.Shared/Nutrition/Flavor.cs index 475b4e2e667..051836a5578 100644 --- a/Content.Shared/Nutrition/Flavor.cs +++ b/Content.Shared/Nutrition/Flavor.cs @@ -6,13 +6,13 @@ namespace Content.Shared.Nutrition; public sealed class FlavorPrototype : IPrototype { [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [DataField("flavorType")] - public FlavorType FlavorType { get; } = FlavorType.Base; + public FlavorType FlavorType { get; private set; } = FlavorType.Base; [DataField("description")] - public string FlavorDescription { get; } = default!; + public string FlavorDescription { get; private set; } = default!; } public enum FlavorType : byte diff --git a/Content.Server/Objectives/Interfaces/IObjectiveCondition.cs b/Content.Shared/Objectives/Interfaces/IObjectiveCondition.cs similarity index 75% rename from Content.Server/Objectives/Interfaces/IObjectiveCondition.cs rename to Content.Shared/Objectives/Interfaces/IObjectiveCondition.cs index 315ed76c2b2..79e77e1759f 100644 --- a/Content.Server/Objectives/Interfaces/IObjectiveCondition.cs +++ b/Content.Shared/Objectives/Interfaces/IObjectiveCondition.cs @@ -1,15 +1,18 @@ -using Robust.Shared.Utility; +using Content.Shared.Mind; +using Robust.Shared.Utility; -namespace Content.Server.Objectives.Interfaces +namespace Content.Shared.Objectives.Interfaces { - public interface IObjectiveCondition : IEquatable + // TODO refactor all of this to be ecs + public interface IObjectiveCondition { /// /// Returns a copy of the IObjectiveCondition which is assigned to the mind. /// + /// Mind id to assign to. /// Mind to assign to. /// The new IObjectiveCondition. - IObjectiveCondition GetAssigned(Mind.Mind mind); + IObjectiveCondition GetAssigned(EntityUid mindId, MindComponent mind); /// /// Returns the title of the condition. diff --git a/Content.Server/Objectives/Interfaces/IObjectiveRequirement.cs b/Content.Shared/Objectives/Interfaces/IObjectiveRequirement.cs similarity index 59% rename from Content.Server/Objectives/Interfaces/IObjectiveRequirement.cs rename to Content.Shared/Objectives/Interfaces/IObjectiveRequirement.cs index 3024275f7bd..973a0ea7b0b 100644 --- a/Content.Server/Objectives/Interfaces/IObjectiveRequirement.cs +++ b/Content.Shared/Objectives/Interfaces/IObjectiveRequirement.cs @@ -1,11 +1,14 @@ -namespace Content.Server.Objectives.Interfaces +using Content.Shared.Mind; + +namespace Content.Shared.Objectives.Interfaces { + // TODO refactor all of this to be ecs public interface IObjectiveRequirement { /// /// Checks whether or not the entity & its surroundings are valid to be given the objective. /// /// Returns true if objective can be given. - bool CanBeAssigned(Mind.Mind mind); + bool CanBeAssigned(EntityUid mindId, MindComponent mind); } } diff --git a/Content.Server/Objectives/Objective.cs b/Content.Shared/Objectives/Objective.cs similarity index 78% rename from Content.Server/Objectives/Objective.cs rename to Content.Shared/Objectives/Objective.cs index 456502ef836..3f7b75281c6 100644 --- a/Content.Server/Objectives/Objective.cs +++ b/Content.Shared/Objectives/Objective.cs @@ -1,24 +1,28 @@ -using Content.Server.Objectives.Interfaces; +using Content.Shared.Mind; +using Content.Shared.Objectives.Interfaces; -namespace Content.Server.Objectives +namespace Content.Shared.Objectives { public sealed class Objective : IEquatable { [ViewVariables] - public readonly Mind.Mind Mind; + public readonly EntityUid MindId; + [ViewVariables] + public readonly MindComponent Mind; [ViewVariables] public readonly ObjectivePrototype Prototype; private readonly List _conditions = new(); [ViewVariables] public IReadOnlyList Conditions => _conditions; - public Objective(ObjectivePrototype prototype, Mind.Mind mind) + public Objective(ObjectivePrototype prototype, EntityUid mindId, MindComponent mind) { Prototype = prototype; + MindId = mindId; Mind = mind; foreach (var condition in prototype.Conditions) { - _conditions.Add(condition.GetAssigned(mind)); + _conditions.Add(condition.GetAssigned(mindId, mind)); } } diff --git a/Content.Server/Objectives/ObjectivePrototype.cs b/Content.Shared/Objectives/ObjectivePrototype.cs similarity index 70% rename from Content.Server/Objectives/ObjectivePrototype.cs rename to Content.Shared/Objectives/ObjectivePrototype.cs index 926082d82b9..286afb550a6 100644 --- a/Content.Server/Objectives/ObjectivePrototype.cs +++ b/Content.Shared/Objectives/ObjectivePrototype.cs @@ -1,8 +1,9 @@ using System.Linq; -using Content.Server.Objectives.Interfaces; +using Content.Shared.Mind; +using Content.Shared.Objectives.Interfaces; using Robust.Shared.Prototypes; -namespace Content.Server.Objectives +namespace Content.Shared.Objectives { /// /// Prototype for objectives. Remember that to be assigned, it should be added to one or more objective groups in prototype. E.g. crew, traitor, wizard @@ -12,14 +13,14 @@ public sealed class ObjectivePrototype : IPrototype { [ViewVariables] [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [DataField("issuer")] public string Issuer { get; private set; } = "Unknown"; [ViewVariables] public float Difficulty => _difficultyOverride ?? _conditions.Sum(c => c.Difficulty); - [DataField("conditions")] + [DataField("conditions", serverOnly: true)] private List _conditions = new(); [DataField("requirements")] private List _requirements = new(); @@ -34,27 +35,29 @@ public sealed class ObjectivePrototype : IPrototype [DataField("difficultyOverride")] private float? _difficultyOverride = null; - public bool CanBeAssigned(Mind.Mind mind) + public bool CanBeAssigned(EntityUid mindId, MindComponent mind) { foreach (var requirement in _requirements) { - if (!requirement.CanBeAssigned(mind)) return false; + if (!requirement.CanBeAssigned(mindId, mind)) + return false; } if (!CanBeDuplicateAssignment) { foreach (var objective in mind.AllObjectives) { - if (objective.Prototype.ID == ID) return false; + if (objective.Prototype.ID == ID) + return false; } } return true; } - public Objective GetObjective(Mind.Mind mind) + public Objective GetObjective(EntityUid mindId, MindComponent mind) { - return new(this, mind); + return new Objective(this, mindId, mind); } } } diff --git a/Content.Shared/Overlays/ShowSecurityIconsComponent.cs b/Content.Shared/Overlays/ShowSecurityIconsComponent.cs index bade256d6fa..2127408afbd 100644 --- a/Content.Shared/Overlays/ShowSecurityIconsComponent.cs +++ b/Content.Shared/Overlays/ShowSecurityIconsComponent.cs @@ -6,5 +6,5 @@ namespace Content.Shared.Overlays /// This component allows you to see job icons above mobs. /// [RegisterComponent, NetworkedComponent] - public sealed class ShowSecurityIconsComponent : Component { } + public sealed partial class ShowSecurityIconsComponent : Component { } } diff --git a/Content.Shared/PAI/PAIComponent.cs b/Content.Shared/PAI/PAIComponent.cs index b95fc0692cf..9574007e7f7 100644 --- a/Content.Shared/PAI/PAIComponent.cs +++ b/Content.Shared/PAI/PAIComponent.cs @@ -1,5 +1,6 @@ -using Content.Shared.Actions.ActionTypes; using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Shared.PAI { @@ -14,7 +15,7 @@ namespace Content.Shared.PAI /// All logic in PAISystem. /// [RegisterComponent, NetworkedComponent] - public sealed class PAIComponent : Component + public sealed partial class PAIComponent : Component { /// /// The last person who activated this PAI. @@ -23,8 +24,12 @@ public sealed class PAIComponent : Component [DataField("lastUSer"), ViewVariables(VVAccess.ReadWrite)] public EntityUid? LastUser; - [DataField("midiAction", required: true, serverOnly: true)] // server only, as it uses a server-BUI event !type - public InstantAction? MidiAction; + [DataField("midiActionId", serverOnly: true, + customTypeSerializer: typeof(PrototypeIdSerializer))] + public string? MidiActionId = "ActionPAIPlayMidi"; + + [DataField("midiAction", serverOnly: true)] // server only, as it uses a server-BUI event !type + public EntityUid? MidiAction; } } diff --git a/Content.Shared/PAI/SharedPAISystem.cs b/Content.Shared/PAI/SharedPAISystem.cs index 28dbdb89d10..59db9dd54df 100644 --- a/Content.Shared/PAI/SharedPAISystem.cs +++ b/Content.Shared/PAI/SharedPAISystem.cs @@ -1,9 +1,4 @@ -using Content.Shared.ActionBlocker; using Content.Shared.Actions; -using Content.Shared.Hands; -using Content.Shared.Interaction.Events; -using Content.Shared.Item; -using Content.Shared.Movement.Events; namespace Content.Shared.PAI { @@ -18,27 +13,24 @@ namespace Content.Shared.PAI /// public abstract class SharedPAISystem : EntitySystem { - [Dependency] private readonly ActionBlockerSystem _blocker = default!; [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnStartup); + SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnShutdown); } - private void OnStartup(EntityUid uid, PAIComponent component, ComponentStartup args) + private void OnMapInit(EntityUid uid, PAIComponent component, MapInitEvent args) { - if (component.MidiAction != null) - _actionsSystem.AddAction(uid, component.MidiAction, null); + _actionsSystem.AddAction(uid, ref component.MidiAction, component.MidiActionId); } private void OnShutdown(EntityUid uid, PAIComponent component, ComponentShutdown args) { - if (component.MidiAction != null) - _actionsSystem.RemoveAction(uid, component.MidiAction); + _actionsSystem.RemoveAction(uid, component.MidiAction); } } } diff --git a/Content.Shared/PDA/PdaComponent.cs b/Content.Shared/PDA/PdaComponent.cs index dbaf614eb5b..46c85ee39e8 100644 --- a/Content.Shared/PDA/PdaComponent.cs +++ b/Content.Shared/PDA/PdaComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.PDA { [RegisterComponent, NetworkedComponent] - public sealed class PdaComponent : Component + public sealed partial class PdaComponent : Component { public const string PdaIdSlotId = "PDA-id"; public const string PdaPenSlotId = "PDA-pen"; diff --git a/Content.Shared/PDA/PdaUpdateState.cs b/Content.Shared/PDA/PdaUpdateState.cs index f5e44e7beb4..c11b8e09f2c 100644 --- a/Content.Shared/PDA/PdaUpdateState.cs +++ b/Content.Shared/PDA/PdaUpdateState.cs @@ -4,7 +4,9 @@ namespace Content.Shared.PDA { [Serializable, NetSerializable] - public sealed class PdaUpdateState : CartridgeLoaderUiState + public sealed class PdaUpdateState : CartridgeLoaderUiState // WTF is this. what. I ... fuck me I just want net entities to work + // TODO purge this shit + //AAAAAAAAAAAAAAAA { public bool FlashlightEnabled; public bool HasPen; @@ -14,9 +16,17 @@ public sealed class PdaUpdateState : CartridgeLoaderUiState public bool CanPlayMusic; public string? Address; - public PdaUpdateState(bool flashlightEnabled, bool hasPen, PdaIdInfoText pdaOwnerInfo, - string? stationName, bool hasUplink = false, - bool canPlayMusic = false, string? address = null) + public PdaUpdateState( + List programs, + NetEntity? activeUI, + bool flashlightEnabled, + bool hasPen, + PdaIdInfoText pdaOwnerInfo, + string? stationName, + bool hasUplink = false, + bool canPlayMusic = false, + string? address = null) + : base(programs, activeUI) { FlashlightEnabled = flashlightEnabled; HasPen = hasPen; diff --git a/Content.Shared/Paper/SharedPaperComponent.cs b/Content.Shared/Paper/SharedPaperComponent.cs index 329c95c8f8a..1e654cc68ae 100644 --- a/Content.Shared/Paper/SharedPaperComponent.cs +++ b/Content.Shared/Paper/SharedPaperComponent.cs @@ -2,7 +2,7 @@ namespace Content.Shared.Paper; -public abstract class SharedPaperComponent : Component +public abstract partial class SharedPaperComponent : Component { [Serializable, NetSerializable] public sealed class PaperBoundUserInterfaceState : BoundUserInterfaceState diff --git a/Content.Shared/Paper/StampComponent.cs b/Content.Shared/Paper/StampComponent.cs index 2fd2fd3ad74..790aa1d60ae 100644 --- a/Content.Shared/Paper/StampComponent.cs +++ b/Content.Shared/Paper/StampComponent.cs @@ -10,7 +10,7 @@ namespace Content.Shared.Paper; /// equivalent in the component. /// [DataDefinition, Serializable, NetSerializable] -public struct StampDisplayInfo +public partial struct StampDisplayInfo { StampDisplayInfo(string s) { @@ -25,7 +25,7 @@ public struct StampDisplayInfo }; [RegisterComponent] -public sealed class StampComponent : Component +public sealed partial class StampComponent : Component { /// /// The loc string name that will be stamped to the piece of paper on examine. diff --git a/Content.Shared/Parallax/Biomes/BiomeComponent.cs b/Content.Shared/Parallax/Biomes/BiomeComponent.cs index 19b0e857444..7e373db6e01 100644 --- a/Content.Shared/Parallax/Biomes/BiomeComponent.cs +++ b/Content.Shared/Parallax/Biomes/BiomeComponent.cs @@ -54,7 +54,7 @@ public sealed partial class BiomeComponent : Component /// Currently active chunks /// [DataField("loadedChunks")] - public readonly HashSet LoadedChunks = new(); + public HashSet LoadedChunks = new(); #region Markers @@ -68,7 +68,7 @@ public sealed partial class BiomeComponent : Component /// Track what markers we've loaded already to avoid double-loading. /// [DataField("loadedMarkers", customTypeSerializer:typeof(PrototypeIdDictionarySerializer, BiomeMarkerLayerPrototype>))] - public readonly Dictionary> LoadedMarkers = new(); + public Dictionary> LoadedMarkers = new(); [DataField("markerLayers", customTypeSerializer: typeof(PrototypeIdListSerializer))] public List MarkerLayers = new(); diff --git a/Content.Shared/Parallax/Biomes/Layers/BiomeDecalLayer.cs b/Content.Shared/Parallax/Biomes/Layers/BiomeDecalLayer.cs index 07e674c8024..5e31e513a90 100644 --- a/Content.Shared/Parallax/Biomes/Layers/BiomeDecalLayer.cs +++ b/Content.Shared/Parallax/Biomes/Layers/BiomeDecalLayer.cs @@ -7,11 +7,11 @@ namespace Content.Shared.Parallax.Biomes.Layers; [Serializable, NetSerializable] -public sealed class BiomeDecalLayer : IBiomeWorldLayer +public sealed partial class BiomeDecalLayer : IBiomeWorldLayer { /// [DataField("allowedTiles", customTypeSerializer:typeof(PrototypeIdListSerializer))] - public List AllowedTiles { get; } = new(); + public List AllowedTiles { get; private set; } = new(); /// /// Divide each tile up by this amount. @@ -20,14 +20,14 @@ public sealed class BiomeDecalLayer : IBiomeWorldLayer public float Divisions = 1f; [DataField("noise")] - public FastNoiseLite Noise { get; } = new(0); + public FastNoiseLite Noise { get; private set; } = new(0); /// [DataField("threshold")] - public float Threshold { get; } = 0.8f; + public float Threshold { get; private set; } = 0.8f; /// - [DataField("invert")] public bool Invert { get; } = false; + [DataField("invert")] public bool Invert { get; private set; } = false; [DataField("decals", required: true, customTypeSerializer:typeof(PrototypeIdListSerializer))] public List Decals = new(); diff --git a/Content.Shared/Parallax/Biomes/Layers/BiomeDummyLayer.cs b/Content.Shared/Parallax/Biomes/Layers/BiomeDummyLayer.cs index 5395ebf754c..2beeba6e038 100644 --- a/Content.Shared/Parallax/Biomes/Layers/BiomeDummyLayer.cs +++ b/Content.Shared/Parallax/Biomes/Layers/BiomeDummyLayer.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Parallax.Biomes.Layers; /// For example if they wish to add their own layers at specific points across different templates. /// [Serializable, NetSerializable] -public sealed class BiomeDummyLayer : IBiomeLayer +public sealed partial class BiomeDummyLayer : IBiomeLayer { [DataField("id", required: true)] public string ID = string.Empty; diff --git a/Content.Shared/Parallax/Biomes/Layers/BiomeEntityLayer.cs b/Content.Shared/Parallax/Biomes/Layers/BiomeEntityLayer.cs index caf2fef9916..21ffdd96e5e 100644 --- a/Content.Shared/Parallax/Biomes/Layers/BiomeEntityLayer.cs +++ b/Content.Shared/Parallax/Biomes/Layers/BiomeEntityLayer.cs @@ -7,20 +7,20 @@ namespace Content.Shared.Parallax.Biomes.Layers; [Serializable, NetSerializable] -public sealed class BiomeEntityLayer : IBiomeWorldLayer +public sealed partial class BiomeEntityLayer : IBiomeWorldLayer { /// [DataField("allowedTiles", customTypeSerializer:typeof(PrototypeIdListSerializer))] - public List AllowedTiles { get; } = new(); + public List AllowedTiles { get; private set; } = new(); - [DataField("noise")] public FastNoiseLite Noise { get; } = new(0); + [DataField("noise")] public FastNoiseLite Noise { get; private set; } = new(0); /// [DataField("threshold")] - public float Threshold { get; } = 0.5f; + public float Threshold { get; private set; } = 0.5f; /// - [DataField("invert")] public bool Invert { get; } = false; + [DataField("invert")] public bool Invert { get; private set; } = false; [DataField("entities", required: true, customTypeSerializer: typeof(PrototypeIdListSerializer))] public List Entities = new(); diff --git a/Content.Shared/Parallax/Biomes/Layers/BiomeMetaLayer.cs b/Content.Shared/Parallax/Biomes/Layers/BiomeMetaLayer.cs index a33d6c522df..51231405a8b 100644 --- a/Content.Shared/Parallax/Biomes/Layers/BiomeMetaLayer.cs +++ b/Content.Shared/Parallax/Biomes/Layers/BiomeMetaLayer.cs @@ -9,18 +9,18 @@ namespace Content.Shared.Parallax.Biomes.Layers; /// Can be used for sub-biomes. /// [Serializable, NetSerializable] -public sealed class BiomeMetaLayer : IBiomeLayer +public sealed partial class BiomeMetaLayer : IBiomeLayer { [DataField("noise")] - public FastNoiseLite Noise { get; } = new(0); + public FastNoiseLite Noise { get; private set; } = new(0); /// [DataField("threshold")] - public float Threshold { get; } = -1f; + public float Threshold { get; private set; } = -1f; /// [DataField("invert")] - public bool Invert { get; } + public bool Invert { get; private set; } [DataField("template", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] public string Template = string.Empty; diff --git a/Content.Shared/Parallax/Biomes/Layers/BiomeTileLayer.cs b/Content.Shared/Parallax/Biomes/Layers/BiomeTileLayer.cs index 7b8aa815a4a..0ac9f1894c7 100644 --- a/Content.Shared/Parallax/Biomes/Layers/BiomeTileLayer.cs +++ b/Content.Shared/Parallax/Biomes/Layers/BiomeTileLayer.cs @@ -6,16 +6,16 @@ namespace Content.Shared.Parallax.Biomes.Layers; [Serializable, NetSerializable] -public sealed class BiomeTileLayer : IBiomeLayer +public sealed partial class BiomeTileLayer : IBiomeLayer { - [DataField("noise")] public FastNoiseLite Noise { get; } = new(0); + [DataField("noise")] public FastNoiseLite Noise { get; private set; } = new(0); /// [DataField("threshold")] - public float Threshold { get; } = 0.5f; + public float Threshold { get; private set; } = 0.5f; /// - [DataField("invert")] public bool Invert { get; } = false; + [DataField("invert")] public bool Invert { get; private set; } = false; /// /// Which tile variants to use for this layer. Uses all of the tile's variants if none specified diff --git a/Content.Shared/Parallax/Biomes/Layers/IBiomeLayer.cs b/Content.Shared/Parallax/Biomes/Layers/IBiomeLayer.cs index 3f81b5598fb..3b1ad5c76c2 100644 --- a/Content.Shared/Parallax/Biomes/Layers/IBiomeLayer.cs +++ b/Content.Shared/Parallax/Biomes/Layers/IBiomeLayer.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Parallax.Biomes.Layers; [ImplicitDataDefinitionForInheritors] -public interface IBiomeLayer +public partial interface IBiomeLayer { /// /// Seed is used an offset from the relevant BiomeComponent's seed. @@ -19,4 +19,4 @@ public interface IBiomeLayer /// Is the thresold inverted so we need to be lower than it. /// public bool Invert { get; } -} \ No newline at end of file +} diff --git a/Content.Shared/Parallax/Biomes/Layers/IBiomeWorldLayer.cs b/Content.Shared/Parallax/Biomes/Layers/IBiomeWorldLayer.cs index 92632e24edc..e04db913b7b 100644 --- a/Content.Shared/Parallax/Biomes/Layers/IBiomeWorldLayer.cs +++ b/Content.Shared/Parallax/Biomes/Layers/IBiomeWorldLayer.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Parallax.Biomes.Layers; /// /// Handles actual objects such as decals and entities. /// -public interface IBiomeWorldLayer : IBiomeLayer +public partial interface IBiomeWorldLayer : IBiomeLayer { /// /// What tiles we're allowed to spawn on, real or biome. diff --git a/Content.Shared/Parallax/Biomes/Markers/BiomeMarkerLayerPrototype.cs b/Content.Shared/Parallax/Biomes/Markers/BiomeMarkerLayerPrototype.cs index 4ac68364ba5..b2f55f46edc 100644 --- a/Content.Shared/Parallax/Biomes/Markers/BiomeMarkerLayerPrototype.cs +++ b/Content.Shared/Parallax/Biomes/Markers/BiomeMarkerLayerPrototype.cs @@ -12,13 +12,13 @@ public sealed class BiomeMarkerLayerPrototype : IBiomeMarkerLayer [IdDataField] public string ID { get; } = default!; [DataField("proto", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] - public string Prototype { get; } = string.Empty; + public string Prototype { get; private set; } = string.Empty; /// /// Checks for the relevant entity for the tile before spawning. Useful for substituting walls with ore veins for example. /// [DataField("entityMask", customTypeSerializer:typeof(PrototypeIdSerializer))] - public string? EntityMask { get; } + public string? EntityMask { get; private set; } /// /// Minimum radius between 2 points @@ -40,5 +40,5 @@ public sealed class BiomeMarkerLayerPrototype : IBiomeMarkerLayer /// [DataField("size")] - public int Size { get; } = 128; + public int Size { get; private set; } = 128; } diff --git a/Content.Shared/Payload/Components/ChemicalPayloadComponent.cs b/Content.Shared/Payload/Components/ChemicalPayloadComponent.cs index 99d0356aaa1..d00382ee84e 100644 --- a/Content.Shared/Payload/Components/ChemicalPayloadComponent.cs +++ b/Content.Shared/Payload/Components/ChemicalPayloadComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Payload.Components; /// Chemical payload that mixes the solutions of two drain-able solution containers when triggered. /// [RegisterComponent] -public sealed class ChemicalPayloadComponent : Component +public sealed partial class ChemicalPayloadComponent : Component { [DataField("beakerSlotA", required: true)] public ItemSlot BeakerSlotA = new(); diff --git a/Content.Shared/Payload/Components/PayloadCaseComponent.cs b/Content.Shared/Payload/Components/PayloadCaseComponent.cs index a942dbb01b2..f85faba5b17 100644 --- a/Content.Shared/Payload/Components/PayloadCaseComponent.cs +++ b/Content.Shared/Payload/Components/PayloadCaseComponent.cs @@ -9,4 +9,4 @@ namespace Content.Shared.Payload.Components; /// triggered, it will forward the trigger onto any contained payload entity. /// [RegisterComponent] -public sealed class PayloadCaseComponent : Component { } +public sealed partial class PayloadCaseComponent : Component { } diff --git a/Content.Shared/Payload/Components/PayloadTriggerComponent.cs b/Content.Shared/Payload/Components/PayloadTriggerComponent.cs index e611a0d1022..6d3df41ac97 100644 --- a/Content.Shared/Payload/Components/PayloadTriggerComponent.cs +++ b/Content.Shared/Payload/Components/PayloadTriggerComponent.cs @@ -18,7 +18,7 @@ namespace Content.Shared.Payload.Components; /// network message), the trigger will be forwarded to the device that this entity is installed in (if any). /// [RegisterComponent, NetworkedComponent] -public sealed class PayloadTriggerComponent : Component +public sealed partial class PayloadTriggerComponent : Component { /// /// If true, triggering this entity will also cause the parent of this entity to be triggered. @@ -29,7 +29,7 @@ public sealed class PayloadTriggerComponent : Component /// List of components to add or remove from an entity when this trigger is (un)installed. /// [DataField("components", serverOnly:true, readOnly: true)] - public readonly ComponentRegistry? Components = null; + public ComponentRegistry? Components = null; /// /// Keeps track of what components this trigger has granted to the payload case. @@ -41,5 +41,5 @@ public sealed class PayloadTriggerComponent : Component /// responsible for adding. /// [DataField("grantedComponents", serverOnly: true)] - public readonly HashSet GrantedComponents = new(); + public HashSet GrantedComponents = new(); } diff --git a/Content.Shared/Physics/PreventCollideComponent.cs b/Content.Shared/Physics/PreventCollideComponent.cs index 6f11929caa6..429b7b56b3f 100644 --- a/Content.Shared/Physics/PreventCollideComponent.cs +++ b/Content.Shared/Physics/PreventCollideComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Physics; /// Use this to allow a specific UID to prevent collides /// [RegisterComponent, NetworkedComponent] -public sealed class PreventCollideComponent : Component +public sealed partial class PreventCollideComponent : Component { public EntityUid Uid; } @@ -15,10 +15,10 @@ public sealed class PreventCollideComponent : Component [Serializable, NetSerializable] public sealed class PreventCollideComponentState : ComponentState { - public EntityUid Uid; + public NetEntity Uid; - public PreventCollideComponentState(PreventCollideComponent component) + public PreventCollideComponentState(NetEntity netEntity) { - Uid = component.Uid; + Uid = netEntity; } } diff --git a/Content.Shared/Physics/SharedPreventCollideSystem.cs b/Content.Shared/Physics/SharedPreventCollideSystem.cs index 805981fe31a..408125e1409 100644 --- a/Content.Shared/Physics/SharedPreventCollideSystem.cs +++ b/Content.Shared/Physics/SharedPreventCollideSystem.cs @@ -17,7 +17,7 @@ public override void Initialize() private void OnGetState(EntityUid uid, PreventCollideComponent component, ref ComponentGetState args) { - args.State = new PreventCollideComponentState(component); + args.State = new PreventCollideComponentState(GetNetEntity(component.Uid)); } private void OnHandleState(EntityUid uid, PreventCollideComponent component, ref ComponentHandleState args) @@ -25,7 +25,7 @@ private void OnHandleState(EntityUid uid, PreventCollideComponent component, ref if (args.Current is not PreventCollideComponentState state) return; - component.Uid = state.Uid; + component.Uid = EnsureEntity(state.Uid, uid); } private void OnPreventCollide(EntityUid uid, PreventCollideComponent component, ref PreventCollideEvent args) diff --git a/Content.Shared/Pinpointer/NavMapComponent.cs b/Content.Shared/Pinpointer/NavMapComponent.cs index 67b118c7ce4..3291114b5d1 100644 --- a/Content.Shared/Pinpointer/NavMapComponent.cs +++ b/Content.Shared/Pinpointer/NavMapComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Pinpointer; /// Used to store grid poly data to be used for UIs. /// [RegisterComponent, NetworkedComponent] -public sealed class NavMapComponent : Component +public sealed partial class NavMapComponent : Component { [ViewVariables] public readonly Dictionary Chunks = new(); diff --git a/Content.Shared/Placeable/ItemPlacerComponent.cs b/Content.Shared/Placeable/ItemPlacerComponent.cs new file mode 100644 index 00000000000..c4fb6079cfb --- /dev/null +++ b/Content.Shared/Placeable/ItemPlacerComponent.cs @@ -0,0 +1,31 @@ +using Content.Shared.Whitelist; +using Robust.Shared.GameStates; + +namespace Content.Shared.Placeable; + +/// +/// Detects items placed on it that match a whitelist. +/// +[RegisterComponent, NetworkedComponent, Access(typeof(ItemPlacerSystem))] +public sealed partial class ItemPlacerComponent : Component +{ + /// + /// The entities that are currently on top of the placer. + /// Guaranteed to have less than enitities if it is set. + /// + [DataField("placedEntities")] + public HashSet PlacedEntities = new(); + + /// + /// Whitelist for entities that can be placed. + /// + [DataField("whitelist"), ViewVariables(VVAccess.ReadWrite)] + public EntityWhitelist? Whitelist; + + /// + /// The max amount of entities that can be placed at the same time. + /// If 0, there is no limit. + /// + [ViewVariables(VVAccess.ReadWrite), DataField("maxEntities")] + public uint MaxEntities = 1; +} diff --git a/Content.Shared/Placeable/ItemPlacerSystem.cs b/Content.Shared/Placeable/ItemPlacerSystem.cs new file mode 100644 index 00000000000..ccce286214e --- /dev/null +++ b/Content.Shared/Placeable/ItemPlacerSystem.cs @@ -0,0 +1,103 @@ +using Robust.Shared.Physics.Events; +using Robust.Shared.Physics.Systems; +using System.Linq; +using Robust.Shared.GameStates; +using Robust.Shared.Serialization; + +namespace Content.Shared.Placeable; + +/// +/// Tracks placed entities +/// Subscribe to or to do things when items or placed or removed. +/// +public sealed class ItemPlacerSystem : EntitySystem +{ + [Dependency] private readonly PlaceableSurfaceSystem _placeableSurface = default!; + [Dependency] private readonly SharedPhysicsSystem _physics = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnStartCollide); + SubscribeLocalEvent(OnEndCollide); + SubscribeLocalEvent(OnPlacerGetState); + SubscribeLocalEvent(OnPlacerHandleState); + } + + private void OnPlacerHandleState(EntityUid uid, ItemPlacerComponent component, ref ComponentHandleState args) + { + if (args.Current is not ItemPlacerComponentState state) + return; + + component.MaxEntities = state.MaxEntities; + component.PlacedEntities.Clear(); + var ents = EnsureEntitySet(state.Entities, uid); + component.PlacedEntities.UnionWith(ents); + } + + private void OnPlacerGetState(EntityUid uid, ItemPlacerComponent component, ref ComponentGetState args) + { + args.State = new ItemPlacerComponentState() + { + MaxEntities = component.MaxEntities, + Entities = GetNetEntitySet(component.PlacedEntities), + }; + } + + private void OnStartCollide(EntityUid uid, ItemPlacerComponent comp, ref StartCollideEvent args) + { + if (comp.Whitelist != null && !comp.Whitelist.IsValid(args.OtherEntity)) + return; + + // Disallow sleeping so we can detect when entity is removed from the heater. + _physics.SetSleepingAllowed(args.OtherEntity, args.OtherBody, false); + + var count = comp.PlacedEntities.Count; + if (comp.MaxEntities == 0 || count < comp.MaxEntities) + { + comp.PlacedEntities.Add(args.OtherEntity); + + var ev = new ItemPlacedEvent(args.OtherEntity); + RaiseLocalEvent(uid, ref ev); + } + + if (comp.MaxEntities > 0 && count >= (comp.MaxEntities - 1)) + { + // Don't let any more items be placed if it's reached its limit. + _placeableSurface.SetPlaceable(uid, false); + } + } + + private void OnEndCollide(EntityUid uid, ItemPlacerComponent comp, ref EndCollideEvent args) + { + // Re-allow sleeping. + _physics.SetSleepingAllowed(args.OtherEntity, args.OtherBody, true); + + comp.PlacedEntities.Remove(args.OtherEntity); + + var ev = new ItemRemovedEvent(args.OtherEntity); + RaiseLocalEvent(uid, ref ev); + + _placeableSurface.SetPlaceable(uid, true); + } + + [Serializable, NetSerializable] + private sealed class ItemPlacerComponentState : ComponentState + { + public uint MaxEntities; + public HashSet Entities = default!; + } +} + +/// +/// Raised on the when an item is placed and it is under the item limit. +/// +[ByRefEvent] +public readonly record struct ItemPlacedEvent(EntityUid OtherEntity); + +/// +/// Raised on the when an item is removed from it. +/// +[ByRefEvent] +public readonly record struct ItemRemovedEvent(EntityUid OtherEntity); diff --git a/Content.Shared/Placeable/PlaceableSurfaceComponent.cs b/Content.Shared/Placeable/PlaceableSurfaceComponent.cs index bd08a2b4807..b30bcedcdbd 100644 --- a/Content.Shared/Placeable/PlaceableSurfaceComponent.cs +++ b/Content.Shared/Placeable/PlaceableSurfaceComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Placeable { [RegisterComponent, NetworkedComponent] [Access(typeof(PlaceableSurfaceSystem))] - public sealed class PlaceableSurfaceComponent : Component + public sealed partial class PlaceableSurfaceComponent : Component { [DataField("isPlaceable")] public bool IsPlaceable { get; set; } = true; diff --git a/Content.Shared/Players/PlayerData.cs b/Content.Shared/Players/PlayerData.cs new file mode 100644 index 00000000000..c6274c950bd --- /dev/null +++ b/Content.Shared/Players/PlayerData.cs @@ -0,0 +1,58 @@ +using Content.Shared.GameTicking; +using Content.Shared.Mind; +using Robust.Shared.Network; +using Robust.Shared.Player; + +namespace Content.Shared.Players; + +/// +/// Content side for all data that tracks a player session. +/// Use to retrieve this from an . +/// Not currently used on the client. +/// +public sealed class PlayerData +{ + /// + /// The session ID of the player owning this data. + /// + [ViewVariables] + public NetUserId UserId { get; } + + /// + /// This is a backup copy of the player name stored on connection. + /// This is useful in the event the player disconnects. + /// + [ViewVariables] + public string Name { get; } + + /// + /// The currently occupied mind of the player owning this data. + /// DO NOT DIRECTLY SET THIS UNLESS YOU KNOW WHAT YOU'RE DOING. + /// + [ViewVariables, Access(typeof(SharedMindSystem), typeof(SharedGameTicker))] + public EntityUid? Mind { get; set; } + + /// + /// If true, the player is an admin and they explicitly de-adminned mid-game, + /// so they should not regain admin if they reconnect. + /// + public bool ExplicitlyDeadminned { get; set; } + + public PlayerData(NetUserId userId, string name) + { + UserId = userId; + Name = name; + } +} + + +public static class PlayerDataExt +{ + /// + /// Gets the correctly cast instance of content player data from an engine player data storage. + /// + public static PlayerData? ContentData(this IPlayerData data) + { + return (PlayerData?) data.ContentDataUncast; + } +} diff --git a/Content.Shared/Players/SharedPlayerSystem.cs b/Content.Shared/Players/SharedPlayerSystem.cs new file mode 100644 index 00000000000..6fc7ad6a409 --- /dev/null +++ b/Content.Shared/Players/SharedPlayerSystem.cs @@ -0,0 +1,12 @@ +using Robust.Shared.Players; + +namespace Content.Shared.Players; + +/// +/// To be used from some systems. +/// Otherwise, use +/// +public abstract class SharedPlayerSystem : EntitySystem +{ + public abstract PlayerData? ContentData(ICommonSession? session); +} diff --git a/Content.Shared/PneumaticCannon/PneumaticCannonComponent.cs b/Content.Shared/PneumaticCannon/PneumaticCannonComponent.cs index b5956561b3c..8c760abe58a 100644 --- a/Content.Shared/PneumaticCannon/PneumaticCannonComponent.cs +++ b/Content.Shared/PneumaticCannon/PneumaticCannonComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.PneumaticCannon; /// Handles gas powered guns--cancels shooting if no gas is available, and takes gas from the given container slot. /// [RegisterComponent, NetworkedComponent] -public sealed class PneumaticCannonComponent : Component +public sealed partial class PneumaticCannonComponent : Component { public const string TankSlotId = "gas_tank"; diff --git a/Content.Shared/Pointing/Components/SharedPointingArrowComponent.cs b/Content.Shared/Pointing/Components/SharedPointingArrowComponent.cs index 09b5157aa5c..07613c77463 100644 --- a/Content.Shared/Pointing/Components/SharedPointingArrowComponent.cs +++ b/Content.Shared/Pointing/Components/SharedPointingArrowComponent.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Pointing.Components; [NetworkedComponent] -public abstract class SharedPointingArrowComponent : Component +public abstract partial class SharedPointingArrowComponent : Component { /// /// When the pointing arrow ends diff --git a/Content.Shared/Pointing/Components/SharedRoguePointingArrowComponent.cs b/Content.Shared/Pointing/Components/SharedRoguePointingArrowComponent.cs index 4d6de3a90de..72579caa35e 100644 --- a/Content.Shared/Pointing/Components/SharedRoguePointingArrowComponent.cs +++ b/Content.Shared/Pointing/Components/SharedRoguePointingArrowComponent.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Pointing.Components { [NetworkedComponent] - public abstract class SharedRoguePointingArrowComponent : Component + public abstract partial class SharedRoguePointingArrowComponent : Component { } diff --git a/Content.Shared/Pointing/PointingEvents.cs b/Content.Shared/Pointing/PointingEvents.cs index c65cc759fb2..90c31bcfec2 100644 --- a/Content.Shared/Pointing/PointingEvents.cs +++ b/Content.Shared/Pointing/PointingEvents.cs @@ -3,15 +3,16 @@ namespace Content.Shared.Pointing; // TODO just make pointing properly predicted? +// So true /// /// Event raised when someone runs the client-side pointing verb. /// [Serializable, NetSerializable] public sealed class PointingAttemptEvent : EntityEventArgs { - public EntityUid Target; + public NetEntity Target; - public PointingAttemptEvent(EntityUid target) + public PointingAttemptEvent(NetEntity target) { Target = target; } diff --git a/Content.Shared/Points/PointManagerComponent.cs b/Content.Shared/Points/PointManagerComponent.cs new file mode 100644 index 00000000000..4250d44dc12 --- /dev/null +++ b/Content.Shared/Points/PointManagerComponent.cs @@ -0,0 +1,40 @@ +using Content.Shared.FixedPoint; +using Robust.Shared.GameStates; +using Robust.Shared.Network; +using Robust.Shared.Serialization; +using Robust.Shared.Utility; + +namespace Content.Shared.Points; + +/// +/// This is a component that generically stores points for all players. +/// +[RegisterComponent, NetworkedComponent, Access(typeof(SharedPointSystem))] +public sealed partial class PointManagerComponent : Component +{ + /// + /// A dictionary of a player's netuserID to the amount of points they have. + /// + [DataField("points")] + public Dictionary Points = new(); + + /// + /// A text-only version of the scoreboard used by the client. + /// + [DataField("scoreboard")] + public FormattedMessage Scoreboard = new(); +} + +[Serializable, NetSerializable] +public sealed class PointManagerComponentState : ComponentState +{ + public Dictionary Points; + + public FormattedMessage Scoreboard; + + public PointManagerComponentState(Dictionary points, FormattedMessage scoreboard) + { + Points = points; + Scoreboard = scoreboard; + } +} diff --git a/Content.Shared/Points/SharedPointSystem.cs b/Content.Shared/Points/SharedPointSystem.cs new file mode 100644 index 00000000000..978f4bca42e --- /dev/null +++ b/Content.Shared/Points/SharedPointSystem.cs @@ -0,0 +1,86 @@ +using Content.Shared.FixedPoint; +using Robust.Shared.Network; +using Robust.Shared.Utility; + +namespace Content.Shared.Points; + +/// +/// This handles modifying point counts for +/// +public abstract class SharedPointSystem : EntitySystem +{ + /// + /// Adds the specified point value to a player. + /// + public void AdjustPointValue(NetUserId userId, FixedPoint2 value, EntityUid uid, PointManagerComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; + + if (!component.Points.TryGetValue(userId, out var current)) + current = 0; + + SetPointValue(userId, current + value, uid, component); + } + + /// + /// Sets the amount of points for a player + /// + public void SetPointValue(NetUserId userId, FixedPoint2 value, EntityUid uid, PointManagerComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; + + if (component.Points.TryGetValue(userId, out var current) && current == value) + return; + + component.Points[userId] = value; + component.Scoreboard = GetScoreboard(uid, component); + Dirty(uid, component); + + var ev = new PlayerPointChangedEvent(userId, value); + RaiseLocalEvent(uid, ref ev, true); + } + + /// + /// Gets the amount of points for a given player + /// + public FixedPoint2 GetPointValue(NetUserId userId, EntityUid uid, PointManagerComponent? component = null) + { + if (!Resolve(uid, ref component)) + return FixedPoint2.Zero; + + return component.Points.TryGetValue(userId, out var value) + ? value + : FixedPoint2.Zero; + } + + /// + /// Ensures that a player is being tracked by the PointManager, giving them a default score of 0. + /// + public void EnsurePlayer(NetUserId userId, EntityUid uid, PointManagerComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; + + if (component.Points.ContainsKey(userId)) + return; + SetPointValue(userId, FixedPoint2.Zero, uid, component); + } + + /// + /// Returns a formatted message containing a ranking of all the currently online players and their scores. + /// + public virtual FormattedMessage GetScoreboard(EntityUid uid, PointManagerComponent? component = null) + { + return new FormattedMessage(); + } +} + +/// +/// Event raised on the point manager entity and broadcasted whenever a player's points change. +/// +/// +/// +[ByRefEvent] +public readonly record struct PlayerPointChangedEvent(NetUserId Player, FixedPoint2 Points); diff --git a/Content.Shared/Polymorph/PolymorphActions.cs b/Content.Shared/Polymorph/PolymorphActions.cs new file mode 100644 index 00000000000..bae2c3e4dda --- /dev/null +++ b/Content.Shared/Polymorph/PolymorphActions.cs @@ -0,0 +1,17 @@ +using Content.Shared.Actions; + +namespace Content.Shared.Polymorph; + +public sealed partial class PolymorphActionEvent : InstantActionEvent +{ + /// + /// The polymorph prototype containing all the information about + /// the specific polymorph. + /// + public PolymorphPrototype Prototype = default!; +} + +public sealed partial class RevertPolymorphActionEvent : InstantActionEvent +{ + +} diff --git a/Content.Shared/Polymorph/PolymorphPrototype.cs b/Content.Shared/Polymorph/PolymorphPrototype.cs index 7663e960b84..75c6d58d24c 100644 --- a/Content.Shared/Polymorph/PolymorphPrototype.cs +++ b/Content.Shared/Polymorph/PolymorphPrototype.cs @@ -9,14 +9,14 @@ namespace Content.Shared.Polymorph /// [Prototype("polymorph")] [DataDefinition] - public sealed class PolymorphPrototype : IPrototype, IInheritingPrototype + public sealed partial class PolymorphPrototype : IPrototype, IInheritingPrototype { [ViewVariables] [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [DataField("name")] - public string Name { get; } = string.Empty; + public string Name { get; private set; } = string.Empty; [ParentDataField(typeof(AbstractPrototypeIdArraySerializer))] public string[]? Parents { get; private set; } diff --git a/Content.Shared/Popups/SharedPopupSystem.cs b/Content.Shared/Popups/SharedPopupSystem.cs index 4f3619dbd3c..50013a54350 100644 --- a/Content.Shared/Popups/SharedPopupSystem.cs +++ b/Content.Shared/Popups/SharedPopupSystem.cs @@ -124,9 +124,9 @@ public PopupCursorEvent(string message, PopupType type) : base(message, type) [Serializable, NetSerializable] public sealed class PopupCoordinatesEvent : PopupEvent { - public EntityCoordinates Coordinates { get; } + public NetCoordinates Coordinates { get; } - public PopupCoordinatesEvent(string message, PopupType type, EntityCoordinates coordinates) : base(message, type) + public PopupCoordinatesEvent(string message, PopupType type, NetCoordinates coordinates) : base(message, type) { Coordinates = coordinates; } @@ -138,9 +138,9 @@ public PopupCoordinatesEvent(string message, PopupType type, EntityCoordinates c [Serializable, NetSerializable] public sealed class PopupEntityEvent : PopupEvent { - public EntityUid Uid { get; } + public NetEntity Uid { get; } - public PopupEntityEvent(string message, PopupType type, EntityUid uid) : base(message, type) + public PopupEntityEvent(string message, PopupType type, NetEntity uid) : base(message, type) { Uid = uid; } diff --git a/Content.Shared/Power/ApcToolFinishedEvent.cs b/Content.Shared/Power/ApcToolFinishedEvent.cs index 3178b24dc92..fcf39401719 100644 --- a/Content.Shared/Power/ApcToolFinishedEvent.cs +++ b/Content.Shared/Power/ApcToolFinishedEvent.cs @@ -4,6 +4,6 @@ namespace Content.Shared.Power; [Serializable, NetSerializable] -public sealed class ApcToolFinishedEvent : SimpleDoAfterEvent +public sealed partial class ApcToolFinishedEvent : SimpleDoAfterEvent { -} \ No newline at end of file +} diff --git a/Content.Shared/Power/Generator/FuelGeneratorComponent.cs b/Content.Shared/Power/Generator/FuelGeneratorComponent.cs index 0f98d16abfc..cdf97fb0859 100644 --- a/Content.Shared/Power/Generator/FuelGeneratorComponent.cs +++ b/Content.Shared/Power/Generator/FuelGeneratorComponent.cs @@ -1,19 +1,24 @@ using Robust.Shared.GameStates; -using Robust.Shared.Serialization; namespace Content.Shared.Power.Generator; /// /// This is used for generators that run off some kind of fuel. /// -[RegisterComponent, NetworkedComponent, Access(typeof(SharedGeneratorSystem))] -public sealed class FuelGeneratorComponent : Component +/// +/// +/// Generators must be anchored to be able to run. +/// +/// +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, Access(typeof(SharedGeneratorSystem))] +public sealed partial class FuelGeneratorComponent : Component { /// - /// The amount of fuel left in the generator. + /// Is the generator currently running? /// - [DataField("remainingFuel"), ViewVariables(VVAccess.ReadWrite)] - public float RemainingFuel; + [DataField("on"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + public bool On; /// /// The generator's target power. @@ -27,6 +32,15 @@ public sealed class FuelGeneratorComponent : Component [DataField("maxTargetPower"), ViewVariables(VVAccess.ReadWrite)] public float MaxTargetPower = 30_000.0f; + /// + /// The minimum target power. + /// + /// + /// Setting this to any value above 0 means that the generator can't idle without consuming some amount of fuel. + /// + [DataField("minTargetPower"), ViewVariables(VVAccess.ReadWrite)] + public float MinTargetPower = 1_000; + /// /// The "optimal" power at which the generator is considered to be at 100% efficiency. /// @@ -45,43 +59,3 @@ public sealed class FuelGeneratorComponent : Component [DataField("fuelEfficiencyConstant")] public float FuelEfficiencyConstant = 1.3f; } - -/// -/// Sent to the server to adjust the targeted power level. -/// -[Serializable, NetSerializable] -public sealed class SetTargetPowerMessage : BoundUserInterfaceMessage -{ - public int TargetPower; - - public SetTargetPowerMessage(int targetPower) - { - TargetPower = targetPower; - } -} - -/// -/// Contains network state for FuelGeneratorComponent. -/// -[Serializable, NetSerializable] -public sealed class SolidFuelGeneratorComponentBuiState : BoundUserInterfaceState -{ - public float RemainingFuel; - public float TargetPower; - public float MaximumPower; - public float OptimalPower; - - public SolidFuelGeneratorComponentBuiState(FuelGeneratorComponent component) - { - RemainingFuel = component.RemainingFuel; - TargetPower = component.TargetPower; - MaximumPower = component.MaxTargetPower; - OptimalPower = component.OptimalPower; - } -} - -[Serializable, NetSerializable] -public enum GeneratorComponentUiKey -{ - Key -} diff --git a/Content.Shared/Power/Generator/GeneratorExhaustGasComponent.cs b/Content.Shared/Power/Generator/GeneratorExhaustGasComponent.cs new file mode 100644 index 00000000000..c2e1d248913 --- /dev/null +++ b/Content.Shared/Power/Generator/GeneratorExhaustGasComponent.cs @@ -0,0 +1,33 @@ +using Content.Shared.Atmos; + +namespace Content.Shared.Power.Generator; + +/// +/// Makes a generator emit a gas into the atmosphere when running. +/// +/// +/// The amount of gas produced is linear with the amount of fuel used. +/// +/// +/// +[RegisterComponent] +public sealed partial class GeneratorExhaustGasComponent : Component +{ + /// + /// The type of gas that will be emitted by the generator. + /// + [DataField("gasType"), ViewVariables(VVAccess.ReadWrite)] + public Gas GasType = Gas.CarbonDioxide; + + /// + /// The amount of moles of gas that should be produced when one unit of fuel is burned. + /// + [DataField("moleRatio"), ViewVariables(VVAccess.ReadWrite)] + public float MoleRatio = 1; + + /// + /// The temperature of created gas. + /// + [DataField("temperature"), ViewVariables(VVAccess.ReadWrite)] + public float Temperature = Atmospherics.T0C + 100; +} diff --git a/Content.Shared/Power/Generator/PowerSwitchableGeneratorComponent.cs b/Content.Shared/Power/Generator/PowerSwitchableGeneratorComponent.cs new file mode 100644 index 00000000000..464538f507b --- /dev/null +++ b/Content.Shared/Power/Generator/PowerSwitchableGeneratorComponent.cs @@ -0,0 +1,61 @@ +using Robust.Shared.Audio; +using Robust.Shared.GameStates; +using Robust.Shared.Serialization; + +namespace Content.Shared.Power.Generator; + +/// +/// Enables a generator to switch between HV and MV output. +/// +/// +/// Must have CableDeviceNodes for both and , and also a PowerSupplierComponent. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +[Access(typeof(SharedPowerSwitchableGeneratorSystem))] +public sealed partial class PowerSwitchableGeneratorComponent : Component +{ + /// + /// Which output the portable generator is currently connected to. + /// + [DataField("activeOutput")] + [AutoNetworkedField] + public PowerSwitchableGeneratorOutput ActiveOutput { get; set; } + + /// + /// Sound that plays when the output is switched. + /// + /// + [DataField("switchSound")] + public SoundSpecifier? SwitchSound { get; set; } + + /// + /// Which node is the MV output? + /// + [DataField("nodeOutputMV")] + public string NodeOutputMV { get; set; } = "output_mv"; + + /// + /// Which node is the HV output? + /// + [DataField("nodeOutputHV")] + public string NodeOutputHV { get; set; } = "output_hv"; +} + +/// +/// Possible power output for power-switchable generators. +/// +/// +[Serializable, NetSerializable] +public enum PowerSwitchableGeneratorOutput : byte +{ + /// + /// The generator is set to connect to a high-voltage power network. + /// + HV, + + /// + /// The generator is set to connect to a medium-voltage power network. + /// + MV +} + diff --git a/Content.Shared/Power/Generator/SharedGeneratorSystem.cs b/Content.Shared/Power/Generator/SharedGeneratorSystem.cs index aafef6272bc..2cb3aa0b70d 100644 --- a/Content.Shared/Power/Generator/SharedGeneratorSystem.cs +++ b/Content.Shared/Power/Generator/SharedGeneratorSystem.cs @@ -3,6 +3,7 @@ /// /// This handles small, portable generators that run off a material fuel. /// +/// public abstract class SharedGeneratorSystem : EntitySystem { /// diff --git a/Content.Shared/Power/Generator/SharedPortableGeneratorComponent.cs b/Content.Shared/Power/Generator/SharedPortableGeneratorComponent.cs new file mode 100644 index 00000000000..5b83ff1a906 --- /dev/null +++ b/Content.Shared/Power/Generator/SharedPortableGeneratorComponent.cs @@ -0,0 +1,143 @@ +using Robust.Shared.Audio; +using Robust.Shared.Serialization; + +namespace Content.Shared.Power.Generator; + +/// +/// Responsible for power output switching & UI logic on portable generators. +/// +/// +/// A portable generator is expected to have the following components: SolidFuelGeneratorAdapterComponent . +/// +/// +[RegisterComponent] +[Access(typeof(SharedPortableGeneratorSystem))] +public sealed partial class PortableGeneratorComponent : Component +{ + /// + /// Chance that this generator will start. If it fails, the user has to try again. + /// + [DataField("startChance")] + [ViewVariables(VVAccess.ReadWrite)] + public float StartChance { get; set; } = 1f; + + /// + /// Amount of time it takes to attempt to start the generator. + /// + [DataField("startTime")] + [ViewVariables(VVAccess.ReadWrite)] + public TimeSpan StartTime { get; set; } = TimeSpan.FromSeconds(2); + + /// + /// Sound that plays when attempting to start this generator. + /// + [DataField("startSound")] + [ViewVariables(VVAccess.ReadWrite)] + public SoundSpecifier? StartSound { get; set; } + + /// + /// Sound that plays when attempting to start this generator. + /// Plays instead of if the generator has no fuel (dumbass). + /// + [DataField("startSoundEmpty")] + [ViewVariables(VVAccess.ReadWrite)] + public SoundSpecifier? StartSoundEmpty { get; set; } +} + +/// +/// Sent to the server to adjust the targeted power level of a portable generator. +/// +[Serializable, NetSerializable] +public sealed class PortableGeneratorSetTargetPowerMessage : BoundUserInterfaceMessage +{ + public int TargetPower; + + public PortableGeneratorSetTargetPowerMessage(int targetPower) + { + TargetPower = targetPower; + } +} + +/// +/// Sent to the server to try to start a portable generator. +/// +[Serializable, NetSerializable] +public sealed class PortableGeneratorStartMessage : BoundUserInterfaceMessage +{ +} + +/// +/// Sent to the server to try to stop a portable generator. +/// +[Serializable, NetSerializable] +public sealed class PortableGeneratorStopMessage : BoundUserInterfaceMessage +{ +} + +/// +/// Sent to the server to try to change the power output of a power-switchable portable generator. +/// +[Serializable, NetSerializable] +public sealed class PortableGeneratorSwitchOutputMessage : BoundUserInterfaceMessage +{ +} + +/// +/// Sent to the server to try to eject all fuel stored in a portable generator. +/// +[Serializable, NetSerializable] +public sealed class PortableGeneratorEjectFuelMessage : BoundUserInterfaceMessage +{ +} + +/// +/// Contains network state for the portable generator. +/// +[Serializable, NetSerializable] +public sealed class PortableGeneratorComponentBuiState : BoundUserInterfaceState +{ + public float RemainingFuel; + public bool Clogged; + public float TargetPower; + public float MaximumPower; + public float OptimalPower; + public bool On; + + public PortableGeneratorComponentBuiState(FuelGeneratorComponent component, float remainingFuel, bool clogged) + { + RemainingFuel = remainingFuel; + Clogged = clogged; + TargetPower = component.TargetPower; + MaximumPower = component.MaxTargetPower; + OptimalPower = component.OptimalPower; + On = component.On; + } +} + +[Serializable, NetSerializable] +public enum GeneratorComponentUiKey +{ + Key +} + +/// +/// Sprite layers for generator prototypes. +/// +[Serializable, NetSerializable] +public enum GeneratorVisualLayers : byte +{ + Body, + Unlit +} + +/// +/// Appearance keys for generators. +/// +[Serializable, NetSerializable] +public enum GeneratorVisuals : byte +{ + /// + /// Boolean: is the generator running? + /// + Running, +} diff --git a/Content.Shared/Power/Generator/SharedPortableGeneratorSystem.cs b/Content.Shared/Power/Generator/SharedPortableGeneratorSystem.cs new file mode 100644 index 00000000000..e30c8eced6a --- /dev/null +++ b/Content.Shared/Power/Generator/SharedPortableGeneratorSystem.cs @@ -0,0 +1,25 @@ +using Content.Shared.DoAfter; +using Robust.Shared.Serialization; + +namespace Content.Shared.Power.Generator; + +/// +/// Shared logic for portable generators. +/// +/// +public abstract class SharedPortableGeneratorSystem : EntitySystem +{ +} + +/// +/// Used to start a portable generator. +/// +/// +[Serializable, NetSerializable] +public sealed partial class GeneratorStartedEvent : DoAfterEvent +{ + public override DoAfterEvent Clone() + { + return this; + } +} diff --git a/Content.Shared/Power/Generator/SharedPowerSwitchableGeneratorSystem.cs b/Content.Shared/Power/Generator/SharedPowerSwitchableGeneratorSystem.cs new file mode 100644 index 00000000000..5d3793c4713 --- /dev/null +++ b/Content.Shared/Power/Generator/SharedPowerSwitchableGeneratorSystem.cs @@ -0,0 +1,23 @@ +using Content.Shared.Examine; + +namespace Content.Shared.Power.Generator; + +/// +/// Shared logic for power-switchable generators. +/// +/// +public abstract class SharedPowerSwitchableGeneratorSystem : EntitySystem +{ + public override void Initialize() + { + SubscribeLocalEvent(GeneratorExamined); + } + + private void GeneratorExamined(EntityUid uid, PowerSwitchableGeneratorComponent component, ExaminedEvent args) + { + // Show which output is currently selected. + args.PushMarkup(Loc.GetString( + "power-switchable-generator-examine", + ("output", component.ActiveOutput.ToString()))); + } +} diff --git a/Content.Shared/PowerCell/Components/PowerCellComponent.cs b/Content.Shared/PowerCell/Components/PowerCellComponent.cs index 52e89fed027..3d4f0472f8c 100644 --- a/Content.Shared/PowerCell/Components/PowerCellComponent.cs +++ b/Content.Shared/PowerCell/Components/PowerCellComponent.cs @@ -9,7 +9,7 @@ namespace Content.Shared.PowerCell; /// [NetworkedComponent] [RegisterComponent] -public sealed class PowerCellComponent : Component +public sealed partial class PowerCellComponent : Component { public const int PowerCellVisualsLevels = 2; } diff --git a/Content.Shared/PowerCell/Components/PowerCellSlotComponent.cs b/Content.Shared/PowerCell/Components/PowerCellSlotComponent.cs index 990a4ec1282..5f21b397a75 100644 --- a/Content.Shared/PowerCell/Components/PowerCellSlotComponent.cs +++ b/Content.Shared/PowerCell/Components/PowerCellSlotComponent.cs @@ -3,7 +3,7 @@ namespace Content.Shared.PowerCell.Components; [RegisterComponent] -public sealed class PowerCellSlotComponent : Component +public sealed partial class PowerCellSlotComponent : Component { /// /// The actual item-slot that contains the cell. Allows all the interaction logic to be handled by . diff --git a/Content.Shared/Prayer/PrayableComponent.cs b/Content.Shared/Prayer/PrayableComponent.cs index 04ded16f797..71251af8100 100644 --- a/Content.Shared/Prayer/PrayableComponent.cs +++ b/Content.Shared/Prayer/PrayableComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Prayer; /// Allows an entity to be prayed on in the context menu /// [RegisterComponent, NetworkedComponent] -public sealed class PrayableComponent : Component +public sealed partial class PrayableComponent : Component { /// /// If bible users are only allowed to use this prayable entity @@ -43,4 +43,4 @@ public sealed class PrayableComponent : Component [DataField("verbImage")] [ViewVariables(VVAccess.ReadOnly)] public SpriteSpecifier? VerbImage = new SpriteSpecifier.Texture(new ("/Textures/Interface/pray.svg.png")); -} \ No newline at end of file +} diff --git a/Content.Shared/Preferences/HumanoidCharacterProfile.cs b/Content.Shared/Preferences/HumanoidCharacterProfile.cs index c779229e8a3..d05cf08a718 100644 --- a/Content.Shared/Preferences/HumanoidCharacterProfile.cs +++ b/Content.Shared/Preferences/HumanoidCharacterProfile.cs @@ -22,7 +22,7 @@ namespace Content.Shared.Preferences /// [DataDefinition] [Serializable, NetSerializable] - public sealed class HumanoidCharacterProfile : ICharacterProfile + public sealed partial class HumanoidCharacterProfile : ICharacterProfile { public const int MaxNameLength = 32; public const int MaxDescLength = 512; diff --git a/Content.Shared/Procedural/DungeonConfigPrototype.cs b/Content.Shared/Procedural/DungeonConfigPrototype.cs index 50de39c197c..02f2aad1d47 100644 --- a/Content.Shared/Procedural/DungeonConfigPrototype.cs +++ b/Content.Shared/Procedural/DungeonConfigPrototype.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Procedural; public sealed class DungeonConfigPrototype : IPrototype { [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [DataField("generator", required: true)] public IDunGen Generator = default!; diff --git a/Content.Shared/Procedural/DungeonGenerators/IDunGen.cs b/Content.Shared/Procedural/DungeonGenerators/IDunGen.cs index 268402f746e..5aa82f1596f 100644 --- a/Content.Shared/Procedural/DungeonGenerators/IDunGen.cs +++ b/Content.Shared/Procedural/DungeonGenerators/IDunGen.cs @@ -1,7 +1,7 @@ namespace Content.Shared.Procedural.DungeonGenerators; [ImplicitDataDefinitionForInheritors] -public interface IDunGen +public partial interface IDunGen { } diff --git a/Content.Shared/Procedural/DungeonGenerators/PrefabDunGen.cs b/Content.Shared/Procedural/DungeonGenerators/PrefabDunGen.cs index c0355fae43c..ef61fff4b04 100644 --- a/Content.Shared/Procedural/DungeonGenerators/PrefabDunGen.cs +++ b/Content.Shared/Procedural/DungeonGenerators/PrefabDunGen.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Procedural.DungeonGenerators; /// /// Places rooms in pre-selected pack layouts. Chooses rooms from the specified whitelist. /// -public sealed class PrefabDunGen : IDunGen +public sealed partial class PrefabDunGen : IDunGen { /// /// Rooms need to match any of these tags diff --git a/Content.Shared/Procedural/DungeonRoomPackPrototype.cs b/Content.Shared/Procedural/DungeonRoomPackPrototype.cs index fd2fe3ee41c..20332271e3f 100644 --- a/Content.Shared/Procedural/DungeonRoomPackPrototype.cs +++ b/Content.Shared/Procedural/DungeonRoomPackPrototype.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Procedural; public sealed class DungeonRoomPackPrototype : IPrototype { [IdDataField] - public string ID { get; } = string.Empty; + public string ID { get; private set; } = string.Empty; /// /// Used to associate the room pack with other room packs with the same dimensions. diff --git a/Content.Shared/Procedural/Loot/BiomeMarkerLoot.cs b/Content.Shared/Procedural/Loot/BiomeMarkerLoot.cs index fad8674f079..600685cab50 100644 --- a/Content.Shared/Procedural/Loot/BiomeMarkerLoot.cs +++ b/Content.Shared/Procedural/Loot/BiomeMarkerLoot.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Procedural.Loot; /// /// Adds a biome marker layer for dungeon loot. /// -public sealed class BiomeMarkerLoot : IDungeonLoot +public sealed partial class BiomeMarkerLoot : IDungeonLoot { [DataField("proto", required: true, customTypeSerializer: typeof(PrototypeIdValueDictionarySerializer))] diff --git a/Content.Shared/Procedural/Loot/BiomeTemplateLoot.cs b/Content.Shared/Procedural/Loot/BiomeTemplateLoot.cs index b4972e525d3..19477797681 100644 --- a/Content.Shared/Procedural/Loot/BiomeTemplateLoot.cs +++ b/Content.Shared/Procedural/Loot/BiomeTemplateLoot.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Procedural.Loot; /// /// Adds a biome template layer for dungeon loot. /// -public sealed class BiomeTemplateLoot : IDungeonLoot +public sealed partial class BiomeTemplateLoot : IDungeonLoot { [DataField("proto", required: true, customTypeSerializer:typeof(PrototypeIdSerializer))] public string Prototype = string.Empty; diff --git a/Content.Shared/Procedural/Loot/IDungeonLoot.cs b/Content.Shared/Procedural/Loot/IDungeonLoot.cs index 6b9cd32cd2a..5605ffbb1a2 100644 --- a/Content.Shared/Procedural/Loot/IDungeonLoot.cs +++ b/Content.Shared/Procedural/Loot/IDungeonLoot.cs @@ -1,6 +1,6 @@ namespace Content.Shared.Procedural.Loot; [ImplicitDataDefinitionForInheritors] -public interface IDungeonLoot +public partial interface IDungeonLoot { } diff --git a/Content.Shared/Procedural/PostGeneration/AutoCablingPostGen.cs b/Content.Shared/Procedural/PostGeneration/AutoCablingPostGen.cs index dccaa8ab186..384d641a35a 100644 --- a/Content.Shared/Procedural/PostGeneration/AutoCablingPostGen.cs +++ b/Content.Shared/Procedural/PostGeneration/AutoCablingPostGen.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Procedural.PostGeneration; /// /// Runs cables throughout the dungeon. /// -public sealed class AutoCablingPostGen : IPostDunGen +public sealed partial class AutoCablingPostGen : IPostDunGen { - + } diff --git a/Content.Shared/Procedural/PostGeneration/BoundaryWallPostGen.cs b/Content.Shared/Procedural/PostGeneration/BoundaryWallPostGen.cs index 18c9d69ca4f..56d314089e3 100644 --- a/Content.Shared/Procedural/PostGeneration/BoundaryWallPostGen.cs +++ b/Content.Shared/Procedural/PostGeneration/BoundaryWallPostGen.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Procedural.PostGeneration; /// /// Iterates room edges and places the relevant tiles and walls on any free indices. /// -public sealed class BoundaryWallPostGen : IPostDunGen +public sealed partial class BoundaryWallPostGen : IPostDunGen { [DataField("tile", customTypeSerializer:typeof(PrototypeIdSerializer))] public string Tile = "FloorSteel"; diff --git a/Content.Shared/Procedural/PostGeneration/CornerClutterPostGen.cs b/Content.Shared/Procedural/PostGeneration/CornerClutterPostGen.cs index 7cb28a1f27f..22889d2b385 100644 --- a/Content.Shared/Procedural/PostGeneration/CornerClutterPostGen.cs +++ b/Content.Shared/Procedural/PostGeneration/CornerClutterPostGen.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Procedural.PostGeneration; /// /// Spawns entities inside corners. /// -public sealed class CornerClutterPostGen : IPostDunGen +public sealed partial class CornerClutterPostGen : IPostDunGen { [DataField("chance")] public float Chance = 0.50f; diff --git a/Content.Shared/Procedural/PostGeneration/CorridorDecalSkirtingPostGen.cs b/Content.Shared/Procedural/PostGeneration/CorridorDecalSkirtingPostGen.cs index 7615c85281e..4b139a8be65 100644 --- a/Content.Shared/Procedural/PostGeneration/CorridorDecalSkirtingPostGen.cs +++ b/Content.Shared/Procedural/PostGeneration/CorridorDecalSkirtingPostGen.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Procedural.PostGeneration; /// /// Applies decal skirting to corridors. /// -public sealed class CorridorDecalSkirtingPostGen : IPostDunGen +public sealed partial class CorridorDecalSkirtingPostGen : IPostDunGen { /// /// Color to apply to decals. diff --git a/Content.Shared/Procedural/PostGeneration/CorridorPostGen.cs b/Content.Shared/Procedural/PostGeneration/CorridorPostGen.cs index 27e8cdbad8b..12e06c71310 100644 --- a/Content.Shared/Procedural/PostGeneration/CorridorPostGen.cs +++ b/Content.Shared/Procedural/PostGeneration/CorridorPostGen.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Procedural.PostGeneration; /// /// Connects room entrances via corridor segments. /// -public sealed class CorridorPostGen : IPostDunGen +public sealed partial class CorridorPostGen : IPostDunGen { /// /// How far we're allowed to generate a corridor before calling it. diff --git a/Content.Shared/Procedural/PostGeneration/DungeonEntrancePostGen.cs b/Content.Shared/Procedural/PostGeneration/DungeonEntrancePostGen.cs index 360179404d8..3398b513179 100644 --- a/Content.Shared/Procedural/PostGeneration/DungeonEntrancePostGen.cs +++ b/Content.Shared/Procedural/PostGeneration/DungeonEntrancePostGen.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Procedural.PostGeneration; /// /// Selects [count] rooms and places external doors to them. /// -public sealed class DungeonEntrancePostGen : IPostDunGen +public sealed partial class DungeonEntrancePostGen : IPostDunGen { /// /// How many rooms we place doors on. diff --git a/Content.Shared/Procedural/PostGeneration/EntranceFlankPostGen.cs b/Content.Shared/Procedural/PostGeneration/EntranceFlankPostGen.cs index b16cae5e9d7..96e9bd5d6d1 100644 --- a/Content.Shared/Procedural/PostGeneration/EntranceFlankPostGen.cs +++ b/Content.Shared/Procedural/PostGeneration/EntranceFlankPostGen.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Procedural.PostGeneration; /// /// Spawns entities on either side of an entrance. /// -public sealed class EntranceFlankPostGen : IPostDunGen +public sealed partial class EntranceFlankPostGen : IPostDunGen { [DataField("tile", customTypeSerializer:typeof(PrototypeIdSerializer))] public string Tile = "FloorSteel"; diff --git a/Content.Shared/Procedural/PostGeneration/ExternalWindowPostGen.cs b/Content.Shared/Procedural/PostGeneration/ExternalWindowPostGen.cs index 3ecdd55f5ac..d5580baeaaa 100644 --- a/Content.Shared/Procedural/PostGeneration/ExternalWindowPostGen.cs +++ b/Content.Shared/Procedural/PostGeneration/ExternalWindowPostGen.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Procedural.PostGeneration; /// /// If external areas are found will try to generate windows. /// -public sealed class ExternalWindowPostGen : IPostDunGen +public sealed partial class ExternalWindowPostGen : IPostDunGen { [DataField("entities", customTypeSerializer: typeof(PrototypeIdListSerializer))] public List Entities = new() diff --git a/Content.Shared/Procedural/PostGeneration/IPostDunGen.cs b/Content.Shared/Procedural/PostGeneration/IPostDunGen.cs index 29db37d240c..b55cab8e63e 100644 --- a/Content.Shared/Procedural/PostGeneration/IPostDunGen.cs +++ b/Content.Shared/Procedural/PostGeneration/IPostDunGen.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Procedural.PostGeneration; /// Ran after generating dungeon rooms. Can be used for additional loot, contents, etc. /// [ImplicitDataDefinitionForInheritors] -public interface IPostDunGen +public partial interface IPostDunGen { } diff --git a/Content.Shared/Procedural/PostGeneration/InternalWindowPostGen.cs b/Content.Shared/Procedural/PostGeneration/InternalWindowPostGen.cs index 5142d007b19..4c6223eb92a 100644 --- a/Content.Shared/Procedural/PostGeneration/InternalWindowPostGen.cs +++ b/Content.Shared/Procedural/PostGeneration/InternalWindowPostGen.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Procedural.PostGeneration; /// /// If internal areas are found will try to generate windows. /// -public sealed class InternalWindowPostGen : IPostDunGen +public sealed partial class InternalWindowPostGen : IPostDunGen { [DataField("entities", customTypeSerializer: typeof(PrototypeIdListSerializer))] public List Entities = new() diff --git a/Content.Shared/Procedural/PostGeneration/JunctionPostGen.cs b/Content.Shared/Procedural/PostGeneration/JunctionPostGen.cs index 360dc4d3abd..5c4cf43b7f0 100644 --- a/Content.Shared/Procedural/PostGeneration/JunctionPostGen.cs +++ b/Content.Shared/Procedural/PostGeneration/JunctionPostGen.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Procedural.PostGeneration; /// /// Places the specified entities at junction areas. /// -public sealed class JunctionPostGen : IPostDunGen +public sealed partial class JunctionPostGen : IPostDunGen { /// /// Width to check for junctions. diff --git a/Content.Shared/Procedural/PostGeneration/MiddleConnectionPostGen.cs b/Content.Shared/Procedural/PostGeneration/MiddleConnectionPostGen.cs index 5cb0618a79e..d29a65434c7 100644 --- a/Content.Shared/Procedural/PostGeneration/MiddleConnectionPostGen.cs +++ b/Content.Shared/Procedural/PostGeneration/MiddleConnectionPostGen.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Procedural.PostGeneration; /// /// Places the specified entities on the middle connections between rooms /// -public sealed class MiddleConnectionPostGen : IPostDunGen +public sealed partial class MiddleConnectionPostGen : IPostDunGen { /// /// How much overlap there needs to be between 2 rooms exactly. diff --git a/Content.Shared/Procedural/PostGeneration/RoomEntrancePostGen.cs b/Content.Shared/Procedural/PostGeneration/RoomEntrancePostGen.cs index 6db729cb8cb..5fd78b0540a 100644 --- a/Content.Shared/Procedural/PostGeneration/RoomEntrancePostGen.cs +++ b/Content.Shared/Procedural/PostGeneration/RoomEntrancePostGen.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Procedural.PostGeneration; /// /// Places tiles / entities onto room entrances. /// -public sealed class RoomEntrancePostGen : IPostDunGen +public sealed partial class RoomEntrancePostGen : IPostDunGen { [DataField("entities", customTypeSerializer: typeof(PrototypeIdListSerializer))] public List Entities = new() diff --git a/Content.Shared/Procedural/PostGeneration/WallMountPostGen.cs b/Content.Shared/Procedural/PostGeneration/WallMountPostGen.cs index 1205cb3e704..1fbdedf5610 100644 --- a/Content.Shared/Procedural/PostGeneration/WallMountPostGen.cs +++ b/Content.Shared/Procedural/PostGeneration/WallMountPostGen.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Procedural.PostGeneration; /// /// Spawns on the boundary tiles of rooms. /// -public sealed class WallMountPostGen : IPostDunGen +public sealed partial class WallMountPostGen : IPostDunGen { [DataField("tile", customTypeSerializer:typeof(PrototypeIdSerializer))] public string Tile = "FloorSteel"; diff --git a/Content.Shared/Projectiles/SharedProjectileSystem.cs b/Content.Shared/Projectiles/SharedProjectileSystem.cs index 93659566016..5d4046556a2 100644 --- a/Content.Shared/Projectiles/SharedProjectileSystem.cs +++ b/Content.Shared/Projectiles/SharedProjectileSystem.cs @@ -1,4 +1,5 @@ using System.Numerics; +using Content.Shared.Damage; using Content.Shared.DoAfter; using Content.Shared.Interaction; using Content.Shared.Projectiles; @@ -16,7 +17,7 @@ namespace Content.Shared.Projectiles; -public abstract class SharedProjectileSystem : EntitySystem +public abstract partial class SharedProjectileSystem : EntitySystem { public const string ProjectileFixture = "projectile"; @@ -48,7 +49,7 @@ private void OnEmbedActivate(EntityUid uid, EmbeddableProjectileComponent compon args.Handled = true; - _doAfter.TryStartDoAfter(new DoAfterArgs(args.User, component.RemovalTime.Value, + _doAfter.TryStartDoAfter(new DoAfterArgs(EntityManager, args.User, component.RemovalTime.Value, new RemoveEmbeddedProjectileEvent(), eventTarget: uid, target: uid) { DistanceThreshold = SharedInteractionSystem.InteractionRange, @@ -132,7 +133,7 @@ public void SetShooter(ProjectileComponent component, EntityUid uid) } [Serializable, NetSerializable] - private sealed class RemoveEmbeddedProjectileEvent : DoAfterEvent + private sealed partial class RemoveEmbeddedProjectileEvent : DoAfterEvent { public override DoAfterEvent Clone() => this; } @@ -142,9 +143,9 @@ private sealed class RemoveEmbeddedProjectileEvent : DoAfterEvent public sealed class ImpactEffectEvent : EntityEventArgs { public string Prototype; - public EntityCoordinates Coordinates; + public NetCoordinates Coordinates; - public ImpactEffectEvent(string prototype, EntityCoordinates coordinates) + public ImpactEffectEvent(string prototype, NetCoordinates coordinates) { Prototype = prototype; Coordinates = coordinates; @@ -152,13 +153,13 @@ public ImpactEffectEvent(string prototype, EntityCoordinates coordinates) } /// -/// Raised when entity is just about to be hit with projectile but can reflect it +/// Raised when an entity is just about to be hit with a projectile but can reflect it /// [ByRefEvent] public record struct ProjectileReflectAttemptEvent(EntityUid ProjUid, ProjectileComponent Component, bool Cancelled); /// -/// Raised when projectile hits other entity +/// Raised when a projectile hits an entity /// [ByRefEvent] -public readonly record struct ProjectileHitEvent(EntityUid Target); +public record struct ProjectileHitEvent(DamageSpecifier Damage, EntityUid Target, EntityUid? Shooter = null); diff --git a/Content.Shared/Pulling/Components/PullableComponent.cs b/Content.Shared/Pulling/Components/PullableComponent.cs index 802e77eeb69..51ab2c91e49 100644 --- a/Content.Shared/Pulling/Components/PullableComponent.cs +++ b/Content.Shared/Pulling/Components/PullableComponent.cs @@ -9,7 +9,7 @@ namespace Content.Shared.Pulling.Components [NetworkedComponent()] [Access(typeof(SharedPullingStateManagementSystem))] [RegisterComponent] - public sealed class SharedPullableComponent : Component + public sealed partial class SharedPullableComponent : Component { /// /// The current entity pulling this component. @@ -54,9 +54,9 @@ protected override void OnRemove() [Serializable, NetSerializable] public sealed class PullableComponentState : ComponentState { - public readonly EntityUid? Puller; + public readonly NetEntity? Puller; - public PullableComponentState(EntityUid? puller) + public PullableComponentState(NetEntity? puller) { Puller = puller; } diff --git a/Content.Shared/Pulling/Components/SharedPullerComponent.cs b/Content.Shared/Pulling/Components/SharedPullerComponent.cs index 88fe6464e42..4ee8b3d129b 100644 --- a/Content.Shared/Pulling/Components/SharedPullerComponent.cs +++ b/Content.Shared/Pulling/Components/SharedPullerComponent.cs @@ -2,7 +2,7 @@ { [RegisterComponent] [Access(typeof(SharedPullingStateManagementSystem))] - public sealed class SharedPullerComponent : Component + public sealed partial class SharedPullerComponent : Component { // Before changing how this is updated, please see SharedPullerSystem.RefreshMovementSpeed public float WalkSpeedModifier => Pulling == default ? 1.0f : 0.95f; diff --git a/Content.Shared/Pulling/Systems/SharedPullingStateManagementSystem.cs b/Content.Shared/Pulling/Systems/SharedPullingStateManagementSystem.cs index b73565d5b2e..63f6d648678 100644 --- a/Content.Shared/Pulling/Systems/SharedPullingStateManagementSystem.cs +++ b/Content.Shared/Pulling/Systems/SharedPullingStateManagementSystem.cs @@ -33,7 +33,7 @@ public override void Initialize() private void OnGetState(EntityUid uid, SharedPullableComponent component, ref ComponentGetState args) { - args.State = new PullableComponentState(component.Puller); + args.State = new PullableComponentState(GetNetEntity(component.Puller)); } private void OnHandleState(EntityUid uid, SharedPullableComponent component, ref ComponentHandleState args) @@ -41,21 +41,23 @@ private void OnHandleState(EntityUid uid, SharedPullableComponent component, ref if (args.Current is not PullableComponentState state) return; - if (!state.Puller.HasValue) + var puller = EnsureEntity(state.Puller, uid); + + if (!puller.HasValue) { ForceDisconnectPullable(component); return; } - if (component.Puller == state.Puller) + if (component.Puller == puller) { // don't disconnect and reconnect a puller for no reason return; } - if (!TryComp(state.Puller.Value, out var comp)) + if (!TryComp(puller, out var comp)) { - Log.Error($"Pullable state for entity {ToPrettyString(uid)} had invalid puller entity {ToPrettyString(state.Puller.Value)}"); + Log.Error($"Pullable state for entity {ToPrettyString(uid)} had invalid puller entity {ToPrettyString(puller.Value)}"); // ensure it disconnects from any different puller, still ForceDisconnectPullable(component); return; diff --git a/Content.Shared/Pulling/Systems/SharedPullingSystem.Actions.cs b/Content.Shared/Pulling/Systems/SharedPullingSystem.Actions.cs index 5c43ce49a5b..cef527a95ce 100644 --- a/Content.Shared/Pulling/Systems/SharedPullingSystem.Actions.cs +++ b/Content.Shared/Pulling/Systems/SharedPullingSystem.Actions.cs @@ -61,7 +61,7 @@ public bool CanPull(EntityUid puller, EntityUid pulled) return false; } - if (EntityManager.TryGetComponent(puller, out var buckle)) + if (EntityManager.TryGetComponent(puller, out BuckleComponent? buckle)) { // Prevent people pulling the chair they're on, etc. if (buckle is { PullStrap: false, Buckled: true } && (buckle.LastEntityBuckledTo == pulled)) @@ -113,11 +113,11 @@ public bool TryStopPull(SharedPullableComponent pullable, EntityUid? user = null public bool TryStartPull(EntityUid puller, EntityUid pullable) { - if (!EntityManager.TryGetComponent(puller, out var pullerComp)) + if (!EntityManager.TryGetComponent(puller, out SharedPullerComponent? pullerComp)) { return false; } - if (!EntityManager.TryGetComponent(pullable, out var pullableComp)) + if (!EntityManager.TryGetComponent(pullable, out SharedPullableComponent? pullableComp)) { return false; } @@ -154,7 +154,7 @@ public bool TryStartPull(SharedPullerComponent puller, SharedPullableComponent p var oldPullable = puller.Pulling; if (oldPullable != null) { - if (EntityManager.TryGetComponent(oldPullable.Value, out var oldPullableComp)) + if (EntityManager.TryGetComponent(oldPullable.Value, out SharedPullableComponent? oldPullableComp)) { if (!TryStopPull(oldPullableComp)) { diff --git a/Content.Shared/Puppet/PuppetDummyComponent.cs b/Content.Shared/Puppet/PuppetDummyComponent.cs index 203c1dfd2f8..87dbf69109f 100644 --- a/Content.Shared/Puppet/PuppetDummyComponent.cs +++ b/Content.Shared/Puppet/PuppetDummyComponent.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Puppet { [RegisterComponent, NetworkedComponent] - public sealed class PuppetDummyComponent : Component + public sealed partial class PuppetDummyComponent : Component { [DataField("enabled")] public bool Enabled = false; diff --git a/Content.Shared/RCD/Systems/RCDSystem.cs b/Content.Shared/RCD/Systems/RCDSystem.cs index 2e923ec9856..f94d155d972 100644 --- a/Content.Shared/RCD/Systems/RCDSystem.cs +++ b/Content.Shared/RCD/Systems/RCDSystem.cs @@ -95,7 +95,7 @@ private void OnAfterInteract(EntityUid uid, RCDComponent comp, AfterInteractEven return; } - var doAfterArgs = new DoAfterArgs(user, comp.Delay, new RCDDoAfterEvent(location, comp.Mode), uid, target: args.Target, used: uid) + var doAfterArgs = new DoAfterArgs(EntityManager, user, comp.Delay, new RCDDoAfterEvent(GetNetCoordinates(location), comp.Mode), uid, target: args.Target, used: uid) { BreakOnDamage = true, NeedHand = true, @@ -115,7 +115,7 @@ private void OnDoAfterAttempt(EntityUid uid, RCDComponent comp, DoAfterAttemptEv if (args.Event?.DoAfter?.Args == null) return; - var location = args.Event.Location; + var location = GetCoordinates(args.Event.Location); var gridId = location.GetGridUid(EntityManager); if (!HasComp(gridId)) @@ -140,7 +140,7 @@ private void OnDoAfter(EntityUid uid, RCDComponent comp, RCDDoAfterEvent args) return; var user = args.User; - var location = args.Location; + var location = GetCoordinates(args.Location); var gridId = location.GetGridUid(EntityManager); if (!HasComp(gridId)) @@ -313,19 +313,19 @@ private bool IsTileBlocked(TileRef tile) } [Serializable, NetSerializable] -public sealed class RCDDoAfterEvent : DoAfterEvent +public sealed partial class RCDDoAfterEvent : DoAfterEvent { [DataField("location", required: true)] - public readonly EntityCoordinates Location = default!; + public NetCoordinates Location = default!; [DataField("startingMode", required: true)] - public readonly RcdMode StartingMode = default!; + public RcdMode StartingMode = default!; private RCDDoAfterEvent() { } - public RCDDoAfterEvent(EntityCoordinates location, RcdMode startingMode) + public RCDDoAfterEvent(NetCoordinates location, RcdMode startingMode) { Location = location; StartingMode = startingMode; diff --git a/Content.Shared/Radiation/Components/GeigerComponent.cs b/Content.Shared/Radiation/Components/GeigerComponent.cs index 2acd39c42c1..ebcd84b3a3c 100644 --- a/Content.Shared/Radiation/Components/GeigerComponent.cs +++ b/Content.Shared/Radiation/Components/GeigerComponent.cs @@ -11,7 +11,7 @@ namespace Content.Shared.Radiation.Components; /// [RegisterComponent, NetworkedComponent] [Access(typeof(SharedGeigerSystem))] -public sealed class GeigerComponent : Component +public sealed partial class GeigerComponent : Component { /// /// If true it will be active only when player equipped it. @@ -91,7 +91,7 @@ public sealed class GeigerComponentState : ComponentState public float CurrentRadiation; public GeigerDangerLevel DangerLevel; public bool IsEnabled; - public EntityUid? User; + public NetEntity? User; } [Serializable, NetSerializable] diff --git a/Content.Shared/Radiation/Components/RadiationPulseComponent.cs b/Content.Shared/Radiation/Components/RadiationPulseComponent.cs index 08f26859938..a1cfa566bcf 100644 --- a/Content.Shared/Radiation/Components/RadiationPulseComponent.cs +++ b/Content.Shared/Radiation/Components/RadiationPulseComponent.cs @@ -9,7 +9,7 @@ namespace Content.Shared.Radiation.Components; /// [RegisterComponent] [Access(typeof(RadiationPulseSystem))] -public sealed class RadiationPulseComponent : Component +public sealed partial class RadiationPulseComponent : Component { /// /// Timestamp when component was assigned to this entity. diff --git a/Content.Shared/Radiation/Components/RadiationSourceComponent.cs b/Content.Shared/Radiation/Components/RadiationSourceComponent.cs index 968d7c0341c..9d2106f9936 100644 --- a/Content.Shared/Radiation/Components/RadiationSourceComponent.cs +++ b/Content.Shared/Radiation/Components/RadiationSourceComponent.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Radiation.Components; /// Irradiate all objects in range. /// [RegisterComponent] -public sealed class RadiationSourceComponent : Component +public sealed partial class RadiationSourceComponent : Component { /// /// Radiation intensity in center of the source in rads per second. diff --git a/Content.Shared/Radiation/Events/OnRadiationOverlayUpdateEvent.cs b/Content.Shared/Radiation/Events/OnRadiationOverlayUpdateEvent.cs index 54a528a9ea4..a93ca4c616b 100644 --- a/Content.Shared/Radiation/Events/OnRadiationOverlayUpdateEvent.cs +++ b/Content.Shared/Radiation/Events/OnRadiationOverlayUpdateEvent.cs @@ -72,9 +72,9 @@ public sealed class OnRadiationOverlayResistanceUpdateEvent : EntityEventArgs /// /// Key is grids uid. Values are tiles with their rad resistance. /// - public readonly Dictionary> Grids; + public readonly Dictionary> Grids; - public OnRadiationOverlayResistanceUpdateEvent(Dictionary> grids) + public OnRadiationOverlayResistanceUpdateEvent(Dictionary> grids) { Grids = grids; } diff --git a/Content.Shared/Radiation/RadiationRay.cs b/Content.Shared/Radiation/RadiationRay.cs index 31c466e6c20..ca8ab5af661 100644 --- a/Content.Shared/Radiation/RadiationRay.cs +++ b/Content.Shared/Radiation/RadiationRay.cs @@ -19,7 +19,7 @@ public sealed class RadiationRay /// /// Uid of entity with . /// - public EntityUid SourceUid; + public NetEntity SourceUid; /// /// World coordinates of radiation source. /// @@ -27,7 +27,7 @@ public sealed class RadiationRay /// /// Uid of entity with radiation receiver component. /// - public EntityUid DestinationUid; + public NetEntity DestinationUid; /// /// World coordinates of radiation receiver. /// @@ -50,10 +50,10 @@ public sealed class RadiationRay /// Last tile may have negative value if ray has lost all intensity. /// Grid traversal order isn't guaranteed. /// - public Dictionary> Blockers = new(); + public Dictionary> Blockers = new(); - public RadiationRay(MapId mapId, EntityUid sourceUid, Vector2 source, - EntityUid destinationUid, Vector2 destination, float rads) + public RadiationRay(MapId mapId, NetEntity sourceUid, Vector2 source, + NetEntity destinationUid, Vector2 destination, float rads) { MapId = mapId; SourceUid = sourceUid; diff --git a/Content.Shared/Radio/Components/EncryptionKeyComponent.cs b/Content.Shared/Radio/Components/EncryptionKeyComponent.cs index 5a7a54eb55a..b7558d98252 100644 --- a/Content.Shared/Radio/Components/EncryptionKeyComponent.cs +++ b/Content.Shared/Radio/Components/EncryptionKeyComponent.cs @@ -9,7 +9,7 @@ namespace Content.Shared.Radio.Components; /// It should be used for intercoms and other radios in future. /// [RegisterComponent] -public sealed class EncryptionKeyComponent : Component +public sealed partial class EncryptionKeyComponent : Component { [DataField("channels", customTypeSerializer: typeof(PrototypeIdHashSetSerializer))] public HashSet Channels = new(); @@ -18,5 +18,5 @@ public sealed class EncryptionKeyComponent : Component /// This is the channel that will be used when using the default/department prefix (). /// [DataField("defaultChannel", customTypeSerializer: typeof(PrototypeIdSerializer))] - public readonly string? DefaultChannel; + public string? DefaultChannel; } diff --git a/Content.Shared/Radio/Components/EncryptionKeyHolderComponent.cs b/Content.Shared/Radio/Components/EncryptionKeyHolderComponent.cs index ca5d1f647aa..bd49acf9090 100644 --- a/Content.Shared/Radio/Components/EncryptionKeyHolderComponent.cs +++ b/Content.Shared/Radio/Components/EncryptionKeyHolderComponent.cs @@ -10,7 +10,7 @@ namespace Content.Shared.Radio.Components; /// This component is by entities that can contain encryption keys /// [RegisterComponent] -public sealed class EncryptionKeyHolderComponent : Component +public sealed partial class EncryptionKeyHolderComponent : Component { /// /// Whether or not encryption keys can be removed from the headset. diff --git a/Content.Shared/Radio/Components/HeadsetComponent.cs b/Content.Shared/Radio/Components/HeadsetComponent.cs index 4d3b0fd4aaa..66a0ae80275 100644 --- a/Content.Shared/Radio/Components/HeadsetComponent.cs +++ b/Content.Shared/Radio/Components/HeadsetComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Radio.Components; /// This component relays radio messages to the parent entity's chat when equipped. /// [RegisterComponent] -public sealed class HeadsetComponent : Component +public sealed partial class HeadsetComponent : Component { [DataField("enabled")] public bool Enabled = true; diff --git a/Content.Shared/Radio/Components/IntercomComponent.cs b/Content.Shared/Radio/Components/IntercomComponent.cs index d68a80e1747..be2734ff168 100644 --- a/Content.Shared/Radio/Components/IntercomComponent.cs +++ b/Content.Shared/Radio/Components/IntercomComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Radio.Components; /// Handles intercom ui and is authoritative on the channels an intercom can access. /// [RegisterComponent, NetworkedComponent] -public sealed class IntercomComponent : Component +public sealed partial class IntercomComponent : Component { /// /// Does this intercom require popwer to function diff --git a/Content.Shared/Radio/Components/TelecomServerComponent.cs b/Content.Shared/Radio/Components/TelecomServerComponent.cs index d87bc2be1ad..e3f30253111 100644 --- a/Content.Shared/Radio/Components/TelecomServerComponent.cs +++ b/Content.Shared/Radio/Components/TelecomServerComponent.cs @@ -1,12 +1,12 @@ namespace Content.Shared.Radio.Components; /// -/// Entities with are needed to transmit messages using headsets. +/// Entities with are needed to transmit messages using headsets. /// They also need to be powered by /// have and filled with encryption keys /// of channels in order for them to work on the same map as server. /// [RegisterComponent] -public sealed class TelecomServerComponent : Component +public sealed partial class TelecomServerComponent : Component { } diff --git a/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs b/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs index 31f79330997..3d2ce2fd00a 100644 --- a/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs +++ b/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs @@ -20,7 +20,7 @@ namespace Content.Shared.Radio.EntitySystems; /// /// This system manages encryption keys & key holders for use with radio channels. /// -public sealed class EncryptionKeySystem : EntitySystem +public sealed partial class EncryptionKeySystem : EntitySystem { [Dependency] private readonly IPrototypeManager _protoManager = default!; [Dependency] private readonly IGameTiming _timing = default!; @@ -245,7 +245,7 @@ public void AddChannelsExamine(HashSet channels, string? defaultChannel, } [Serializable, NetSerializable] - public sealed class EncryptionRemovalFinishedEvent : SimpleDoAfterEvent + public sealed partial class EncryptionRemovalFinishedEvent : SimpleDoAfterEvent { } } diff --git a/Content.Shared/Random/RandomFillSolution.cs b/Content.Shared/Random/RandomFillSolution.cs index acbd97db875..e3b9b7c8622 100644 --- a/Content.Shared/Random/RandomFillSolution.cs +++ b/Content.Shared/Random/RandomFillSolution.cs @@ -11,7 +11,7 @@ namespace Content.Shared.Random; /// [Serializable, NetSerializable] [DataDefinition] -public sealed class RandomFillSolution +public sealed partial class RandomFillSolution { /// /// Quantity of listed reagents. diff --git a/Content.Shared/Random/RulesPrototype.cs b/Content.Shared/Random/RulesPrototype.cs index 0541d503d84..3d1e1ab1a18 100644 --- a/Content.Shared/Random/RulesPrototype.cs +++ b/Content.Shared/Random/RulesPrototype.cs @@ -21,7 +21,7 @@ public sealed class RulesPrototype : IPrototype } [ImplicitDataDefinitionForInheritors] -public abstract class RulesRule +public abstract partial class RulesRule { } @@ -29,7 +29,7 @@ public abstract class RulesRule /// /// Returns true if the attached entity is in space. /// -public sealed class InSpaceRule : RulesRule +public sealed partial class InSpaceRule : RulesRule { } @@ -38,7 +38,7 @@ public sealed class InSpaceRule : RulesRule /// Checks for entities matching the whitelist in range. /// This is more expensive than so prefer that! /// -public sealed class NearbyEntitiesRule : RulesRule +public sealed partial class NearbyEntitiesRule : RulesRule { /// /// How many of the entity need to be nearby. @@ -53,7 +53,7 @@ public sealed class NearbyEntitiesRule : RulesRule public float Range = 10f; } -public sealed class NearbyTilesPercentRule : RulesRule +public sealed partial class NearbyTilesPercentRule : RulesRule { /// /// If there are anchored entities on the tile do we ignore the tile. @@ -73,7 +73,7 @@ public sealed class NearbyTilesPercentRule : RulesRule /// /// Always returns true. Used for fallbacks. /// -public sealed class AlwaysTrueRule : RulesRule +public sealed partial class AlwaysTrueRule : RulesRule { } @@ -81,7 +81,7 @@ public sealed class AlwaysTrueRule : RulesRule /// /// Returns true if on a grid or in range of one. /// -public sealed class GridInRangeRule : RulesRule +public sealed partial class GridInRangeRule : RulesRule { [DataField("range")] public float Range = 10f; @@ -93,7 +93,7 @@ public sealed class GridInRangeRule : RulesRule /// /// Returns true if griduid and mapuid match (AKA on 'planet'). /// -public sealed class OnMapGridRule : RulesRule +public sealed partial class OnMapGridRule : RulesRule { } @@ -101,7 +101,7 @@ public sealed class OnMapGridRule : RulesRule /// /// Checks for an entity nearby with the specified access. /// -public sealed class NearbyAccessRule : RulesRule +public sealed partial class NearbyAccessRule : RulesRule { // This exists because of doorelectronics contained inside doors. /// @@ -123,7 +123,7 @@ public sealed class NearbyAccessRule : RulesRule public float Range = 10f; } -public sealed class NearbyComponentsRule : RulesRule +public sealed partial class NearbyComponentsRule : RulesRule { /// /// Does the entity need to be anchored. diff --git a/Content.Shared/Random/WeightedRandomEntityPrototype.cs b/Content.Shared/Random/WeightedRandomEntityPrototype.cs index c0cf8f11656..c88f88bbdcd 100644 --- a/Content.Shared/Random/WeightedRandomEntityPrototype.cs +++ b/Content.Shared/Random/WeightedRandomEntityPrototype.cs @@ -10,8 +10,8 @@ namespace Content.Shared.Random; public sealed class WeightedRandomEntityPrototype : IWeightedRandomPrototype { [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [DataField("weights", customTypeSerializer: typeof(PrototypeIdDictionarySerializer))] - public Dictionary Weights { get; } = new(); + public Dictionary Weights { get; private set; } = new(); } diff --git a/Content.Shared/Random/WeightedRandomOrePrototype.cs b/Content.Shared/Random/WeightedRandomOrePrototype.cs index bc1f52ce2a6..f79bb244df1 100644 --- a/Content.Shared/Random/WeightedRandomOrePrototype.cs +++ b/Content.Shared/Random/WeightedRandomOrePrototype.cs @@ -11,8 +11,8 @@ namespace Content.Shared.Random; public sealed class WeightedRandomOrePrototype : IWeightedRandomPrototype { [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [DataField("weights", customTypeSerializer: typeof(PrototypeIdDictionarySerializer))] - public Dictionary Weights { get; } = new(); + public Dictionary Weights { get; private set; } = new(); } diff --git a/Content.Shared/Random/WeightedRandomPrototype.cs b/Content.Shared/Random/WeightedRandomPrototype.cs index 7c44dbdf77b..6b9e28c4165 100644 --- a/Content.Shared/Random/WeightedRandomPrototype.cs +++ b/Content.Shared/Random/WeightedRandomPrototype.cs @@ -9,8 +9,8 @@ namespace Content.Shared.Random; public sealed class WeightedRandomPrototype : IWeightedRandomPrototype { [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [DataField("weights")] - public Dictionary Weights { get; } = new(); + public Dictionary Weights { get; private set; } = new(); } diff --git a/Content.Shared/Random/WeightedRandomSpeciesPrototype.cs b/Content.Shared/Random/WeightedRandomSpeciesPrototype.cs index 2b867eed982..4e7ef84227f 100644 --- a/Content.Shared/Random/WeightedRandomSpeciesPrototype.cs +++ b/Content.Shared/Random/WeightedRandomSpeciesPrototype.cs @@ -11,8 +11,8 @@ namespace Content.Shared.Random; public sealed class WeightedRandomSpeciesPrototype : IWeightedRandomPrototype { [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [DataField("weights", customTypeSerializer: typeof(PrototypeIdDictionarySerializer))] - public Dictionary Weights { get; } = new(); + public Dictionary Weights { get; private set; } = new(); } diff --git a/Content.Shared/RatKing/RatKingActions.cs b/Content.Shared/RatKing/RatKingActions.cs new file mode 100644 index 00000000000..551b27a7a49 --- /dev/null +++ b/Content.Shared/RatKing/RatKingActions.cs @@ -0,0 +1,13 @@ +using Content.Shared.Actions; + +namespace Content.Shared.RatKing; + +public sealed partial class RatKingRaiseArmyActionEvent : InstantActionEvent +{ + +} + +public sealed partial class RatKingDomainActionEvent : InstantActionEvent +{ + +} diff --git a/Content.Shared/Repairable/SharedRepairableSystem.cs b/Content.Shared/Repairable/SharedRepairableSystem.cs index ec59a60a8f9..2b0cb670e6f 100644 --- a/Content.Shared/Repairable/SharedRepairableSystem.cs +++ b/Content.Shared/Repairable/SharedRepairableSystem.cs @@ -3,10 +3,10 @@ namespace Content.Shared.Repairable; -public abstract class SharedRepairableSystem : EntitySystem +public abstract partial class SharedRepairableSystem : EntitySystem { [Serializable, NetSerializable] - protected sealed class RepairFinishedEvent : SimpleDoAfterEvent + protected sealed partial class RepairFinishedEvent : SimpleDoAfterEvent { } } diff --git a/Content.Shared/Research/Components/ResearchClientComponent.cs b/Content.Shared/Research/Components/ResearchClientComponent.cs index 477fb8f6002..7ab47ad2605 100644 --- a/Content.Shared/Research/Components/ResearchClientComponent.cs +++ b/Content.Shared/Research/Components/ResearchClientComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Research.Components /// This is an entity that is able to connect to a /// [RegisterComponent] - public sealed class ResearchClientComponent : Component + public sealed partial class ResearchClientComponent : Component { public bool ConnectedToServer => Server != null; diff --git a/Content.Shared/Research/Components/ResearchServerComponent.cs b/Content.Shared/Research/Components/ResearchServerComponent.cs index 763b5d9059a..3663e760f11 100644 --- a/Content.Shared/Research/Components/ResearchServerComponent.cs +++ b/Content.Shared/Research/Components/ResearchServerComponent.cs @@ -41,7 +41,7 @@ public sealed partial class ResearchServerComponent : Component public TimeSpan NextUpdateTime = TimeSpan.Zero; [DataField("researchConsoleUpdateTime"), ViewVariables(VVAccess.ReadWrite)] - public readonly TimeSpan ResearchConsoleUpdateTime = TimeSpan.FromSeconds(1); + public TimeSpan ResearchConsoleUpdateTime = TimeSpan.FromSeconds(1); } /// diff --git a/Content.Shared/Research/Components/ResearchStealerComponent.cs b/Content.Shared/Research/Components/ResearchStealerComponent.cs new file mode 100644 index 00000000000..e0331fad1bb --- /dev/null +++ b/Content.Shared/Research/Components/ResearchStealerComponent.cs @@ -0,0 +1,17 @@ +using Content.Shared.Research.Systems; +using Robust.Shared.GameStates; + +namespace Content.Shared.Research.Components; + +/// +/// Component for stealing technologies from a R&D server, when gloves are enabled. +/// +[RegisterComponent, NetworkedComponent, Access(typeof(SharedResearchStealerSystem))] +public sealed partial class ResearchStealerComponent : Component +{ + /// + /// Time taken to steal research from a server + /// + [DataField("delay"), ViewVariables(VVAccess.ReadWrite)] + public TimeSpan Delay = TimeSpan.FromSeconds(20); +} diff --git a/Content.Shared/Research/Prototypes/LatheRecipePrototype.cs b/Content.Shared/Research/Prototypes/LatheRecipePrototype.cs index fa3d13a9e21..8dafad3dc59 100644 --- a/Content.Shared/Research/Prototypes/LatheRecipePrototype.cs +++ b/Content.Shared/Research/Prototypes/LatheRecipePrototype.cs @@ -12,7 +12,7 @@ public sealed class LatheRecipePrototype : IPrototype { [ViewVariables] [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [DataField("name")] private string _name = string.Empty; diff --git a/Content.Shared/Research/Prototypes/TechDisciplinePrototype.cs b/Content.Shared/Research/Prototypes/TechDisciplinePrototype.cs index d5c7ad89aff..76eb8092add 100644 --- a/Content.Shared/Research/Prototypes/TechDisciplinePrototype.cs +++ b/Content.Shared/Research/Prototypes/TechDisciplinePrototype.cs @@ -12,37 +12,37 @@ public sealed class TechDisciplinePrototype : IPrototype { /// [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// /// Player-facing name. /// Supports locale strings. /// [DataField("name", required: true)] - public readonly string Name = string.Empty; + public string Name = string.Empty; /// /// A color used for UI /// [DataField("color", required: true)] - public readonly Color Color; + public Color Color; /// /// An icon used to visually represent the discipline in UI. /// [DataField("icon")] - public readonly SpriteSpecifier Icon = default!; + public SpriteSpecifier Icon = default!; /// /// For each tier a discipline supports, what percentage /// of the previous tier must be unlocked for it to become available /// [DataField("tierPrerequisites", required: true)] - public readonly Dictionary TierPrerequisites = new(); + public Dictionary TierPrerequisites = new(); /// /// Purchasing this tier of technology causes a server to become "locked" to this discipline. /// [DataField("lockoutTier")] - public readonly int LockoutTier = 3; + public int LockoutTier = 3; } diff --git a/Content.Shared/Research/Prototypes/TechnologyPrototype.cs b/Content.Shared/Research/Prototypes/TechnologyPrototype.cs index 8b04be7209b..ec1ca029c71 100644 --- a/Content.Shared/Research/Prototypes/TechnologyPrototype.cs +++ b/Content.Shared/Research/Prototypes/TechnologyPrototype.cs @@ -13,26 +13,26 @@ public sealed class TechnologyPrototype : IPrototype { /// [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// /// The name of the technology. /// Supports locale strings /// [DataField("name", required: true)] - public readonly string Name = string.Empty; + public string Name = string.Empty; /// /// An icon used to visually represent the technology in UI. /// [DataField("icon", required: true)] - public readonly SpriteSpecifier Icon = default!; + public SpriteSpecifier Icon = default!; /// /// What research discipline this technology belongs to. /// [DataField("discipline", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] - public readonly string Discipline = default!; + public string Discipline = default!; /// /// What tier research is this? @@ -40,53 +40,53 @@ public sealed class TechnologyPrototype : IPrototype /// needs to be unlocked before this one. /// [DataField("tier", required: true)] - public readonly int Tier; + public int Tier; /// /// Hidden tech is not ever available at the research console. /// [DataField("hidden")] - public readonly bool Hidden; + public bool Hidden; /// /// How much research is needed to unlock. /// [DataField("cost")] - public readonly int Cost = 10000; + public int Cost = 10000; /// /// A list of s that need to be unlocked in order to unlock this technology. /// [DataField("technologyPrerequisites", customTypeSerializer: typeof(PrototypeIdListSerializer))] - public readonly IReadOnlyList TechnologyPrerequisites = new List(); + public IReadOnlyList TechnologyPrerequisites = new List(); /// /// A list of s that are unlocked by this technology /// [DataField("recipeUnlocks", customTypeSerializer: typeof(PrototypeIdListSerializer))] - public readonly IReadOnlyList RecipeUnlocks = new List(); + public IReadOnlyList RecipeUnlocks = new List(); /// /// A list of non-standard effects that are done when this technology is unlocked. /// [DataField("genericUnlocks")] - public readonly IReadOnlyList GenericUnlocks = new List(); + public IReadOnlyList GenericUnlocks = new List(); } [DataDefinition] -public record struct GenericUnlock() +public partial record struct GenericUnlock() { /// /// What event is raised when this is unlocked? /// Used for doing non-standard logic. /// [DataField("purchaseEvent")] - public readonly object? PurchaseEvent = null; + public object? PurchaseEvent = null; /// /// A player facing tooltip for what the unlock does. /// Supports locale strings. /// [DataField("unlockDescription")] - public readonly string UnlockDescription = string.Empty; + public string UnlockDescription = string.Empty; } diff --git a/Content.Shared/Research/Systems/SharedResearchStealerSystem.cs b/Content.Shared/Research/Systems/SharedResearchStealerSystem.cs new file mode 100644 index 00000000000..1fffa8c0257 --- /dev/null +++ b/Content.Shared/Research/Systems/SharedResearchStealerSystem.cs @@ -0,0 +1,63 @@ +using Content.Shared.DoAfter; +using Content.Shared.Interaction; +using Content.Shared.Ninja.Systems; +using Content.Shared.Popups; +using Content.Shared.Research.Components; +using Robust.Shared.Serialization; + +namespace Content.Shared.Research.Systems; + +public abstract class SharedResearchStealerSystem : EntitySystem +{ + [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; + [Dependency] private readonly SharedNinjaGlovesSystem _gloves = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnBeforeInteractHand); + } + + /// + /// Start do after for downloading techs from a r&d server. + /// Will only try if there is at least 1 tech researched. + /// + private void OnBeforeInteractHand(EntityUid uid, ResearchStealerComponent comp, BeforeInteractHandEvent args) + { + // TODO: generic event + if (args.Handled || !_gloves.AbilityCheck(uid, args, out var target)) + return; + + // can only hack the server, not a random console + if (!TryComp(target, out var database) || HasComp(target)) + return; + + args.Handled = true; + + // fail fast if theres no techs to steal right now + if (database.UnlockedTechnologies.Count == 0) + { + _popup.PopupClient(Loc.GetString("ninja-download-fail"), uid, uid); + return; + } + + var doAfterArgs = new DoAfterArgs(EntityManager, uid, comp.Delay, new ResearchStealDoAfterEvent(), target: target, used: uid, eventTarget: uid) + { + BreakOnDamage = true, + BreakOnUserMove = true, + MovementThreshold = 0.5f + }; + + _doAfter.TryStartDoAfter(doAfterArgs); + } +} + +/// +/// Raised on the research stealer when the doafter completes. +/// +[Serializable, NetSerializable] +public sealed partial class ResearchStealDoAfterEvent : SimpleDoAfterEvent +{ +} diff --git a/Content.Shared/Research/Systems/SharedResearchSystem.cs b/Content.Shared/Research/Systems/SharedResearchSystem.cs index fffbad847e5..e0cc937b004 100644 --- a/Content.Shared/Research/Systems/SharedResearchSystem.cs +++ b/Content.Shared/Research/Systems/SharedResearchSystem.cs @@ -169,6 +169,18 @@ public void TrySetMainDiscipline(TechnologyPrototype prototype, EntityUid uid, T if (prototype.Tier < discipline.LockoutTier) return; component.MainDiscipline = prototype.Discipline; - Dirty(component); + Dirty(uid, component); + } + + /// + /// Clear all unlocked technologies from the database. + /// + public void ClearTechs(EntityUid uid, TechnologyDatabaseComponent? comp = null) + { + if (!Resolve(uid, ref comp) || comp.UnlockedTechnologies.Count == 0) + return; + + comp.UnlockedTechnologies.Clear(); + Dirty(uid, comp); } } diff --git a/Content.Shared/Resist/EscapeInventoryEvent.cs b/Content.Shared/Resist/EscapeInventoryEvent.cs index 27e5346ead8..c77545fcb0c 100644 --- a/Content.Shared/Resist/EscapeInventoryEvent.cs +++ b/Content.Shared/Resist/EscapeInventoryEvent.cs @@ -4,6 +4,6 @@ namespace Content.Shared.Resist; [Serializable, NetSerializable] -public sealed class EscapeInventoryEvent : SimpleDoAfterEvent +public sealed partial class EscapeInventoryEvent : SimpleDoAfterEvent { -} \ No newline at end of file +} diff --git a/Content.Shared/Resist/ResistLockerDoAfterEvent.cs b/Content.Shared/Resist/ResistLockerDoAfterEvent.cs index 4f31dc03305..2acf160b80e 100644 --- a/Content.Shared/Resist/ResistLockerDoAfterEvent.cs +++ b/Content.Shared/Resist/ResistLockerDoAfterEvent.cs @@ -4,6 +4,6 @@ namespace Content.Shared.Resist; [Serializable, NetSerializable] -public sealed class ResistLockerDoAfterEvent : SimpleDoAfterEvent +public sealed partial class ResistLockerDoAfterEvent : SimpleDoAfterEvent { -} \ No newline at end of file +} diff --git a/Content.Shared/Respawn/SpecialRespawnComponent.cs b/Content.Shared/Respawn/SpecialRespawnComponent.cs index 739fa4b50a7..a452f77f198 100644 --- a/Content.Shared/Respawn/SpecialRespawnComponent.cs +++ b/Content.Shared/Respawn/SpecialRespawnComponent.cs @@ -9,7 +9,7 @@ namespace Content.Shared.Respawn; /// Items like the nuke disk. /// [RegisterComponent, NetworkedComponent] -public sealed class SpecialRespawnComponent: Component +public sealed partial class SpecialRespawnComponent: Component { [ViewVariables] [DataField("stationMap")] diff --git a/Content.Shared/Revenant/Components/CorporealComponent.cs b/Content.Shared/Revenant/Components/CorporealComponent.cs index 174d267cc9e..ee9c4924e9c 100644 --- a/Content.Shared/Revenant/Components/CorporealComponent.cs +++ b/Content.Shared/Revenant/Components/CorporealComponent.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Revenant.Components; /// Meant to be used in conjunction with statusEffectSystem /// [RegisterComponent] -public sealed class CorporealComponent : Component +public sealed partial class CorporealComponent : Component { /// /// The debuff applied when the component is present. diff --git a/Content.Shared/Revenant/Components/RevenantComponent.cs b/Content.Shared/Revenant/Components/RevenantComponent.cs index 5f1b3802e66..7b146e42367 100644 --- a/Content.Shared/Revenant/Components/RevenantComponent.cs +++ b/Content.Shared/Revenant/Components/RevenantComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Revenant.Components; [RegisterComponent, NetworkedComponent] -public sealed class RevenantComponent : Component +public sealed partial class RevenantComponent : Component { /// /// The total amount of Essence the revenant has. Functions diff --git a/Content.Shared/Revenant/Components/RevenantOverloadedLightsComponent.cs b/Content.Shared/Revenant/Components/RevenantOverloadedLightsComponent.cs index b383f2640cd..d01242bf5f9 100644 --- a/Content.Shared/Revenant/Components/RevenantOverloadedLightsComponent.cs +++ b/Content.Shared/Revenant/Components/RevenantOverloadedLightsComponent.cs @@ -9,7 +9,7 @@ namespace Content.Shared.Revenant.Components; /// and are about to zap a player. /// [RegisterComponent, NetworkedComponent] -public sealed class RevenantOverloadedLightsComponent : Component +public sealed partial class RevenantOverloadedLightsComponent : Component { [ViewVariables] public EntityUid? Target; diff --git a/Content.Shared/Revenant/EntitySystems/SharedCorporealSystem.cs b/Content.Shared/Revenant/EntitySystems/SharedCorporealSystem.cs index 70b38207967..e86fdb8e80f 100644 --- a/Content.Shared/Revenant/EntitySystems/SharedCorporealSystem.cs +++ b/Content.Shared/Revenant/EntitySystems/SharedCorporealSystem.cs @@ -38,10 +38,10 @@ public virtual void OnStartup(EntityUid uid, CorporealComponent component, Compo if (TryComp(uid, out var fixtures) && fixtures.FixtureCount >= 1) { - var fixture = fixtures.Fixtures.Values.First(); + var fixture = fixtures.Fixtures.First(); - _physics.SetCollisionMask(uid, fixture, (int) (CollisionGroup.SmallMobMask | CollisionGroup.GhostImpassable), fixtures); - _physics.SetCollisionLayer(uid, fixture, (int) CollisionGroup.SmallMobLayer, fixtures); + _physics.SetCollisionMask(uid, fixture.Key, fixture.Value, (int) (CollisionGroup.SmallMobMask | CollisionGroup.GhostImpassable), fixtures); + _physics.SetCollisionLayer(uid, fixture.Key, fixture.Value, (int) CollisionGroup.SmallMobLayer, fixtures); } _movement.RefreshMovementSpeedModifiers(uid); } @@ -52,10 +52,10 @@ public virtual void OnShutdown(EntityUid uid, CorporealComponent component, Comp if (TryComp(uid, out var fixtures) && fixtures.FixtureCount >= 1) { - var fixture = fixtures.Fixtures.Values.First(); + var fixture = fixtures.Fixtures.First(); - _physics.SetCollisionMask(uid, fixture, (int) CollisionGroup.GhostImpassable, fixtures); - _physics.SetCollisionLayer(uid, fixture, 0, fixtures); + _physics.SetCollisionMask(uid, fixture.Key, fixture.Value, (int) CollisionGroup.GhostImpassable, fixtures); + _physics.SetCollisionLayer(uid, fixture.Key, fixture.Value, 0, fixtures); } component.MovementSpeedDebuff = 1; //just so we can avoid annoying code elsewhere _movement.RefreshMovementSpeedModifiers(uid); diff --git a/Content.Shared/Revenant/EntitySystems/SharedRevenantOverloadedLightsSystem.cs b/Content.Shared/Revenant/EntitySystems/SharedRevenantOverloadedLightsSystem.cs index 4cb5b9dc96f..40e6a53a00d 100644 --- a/Content.Shared/Revenant/EntitySystems/SharedRevenantOverloadedLightsSystem.cs +++ b/Content.Shared/Revenant/EntitySystems/SharedRevenantOverloadedLightsSystem.cs @@ -13,7 +13,7 @@ public override void Update(float frameTime) var enumerator = EntityQueryEnumerator(); - while (enumerator.MoveNext(out var comp)) + while (enumerator.MoveNext(out var uid, out var comp)) { comp.Accumulator += frameTime; @@ -21,7 +21,7 @@ public override void Update(float frameTime) continue; OnZap(comp); - RemComp(comp.Owner, comp); + RemCompDeferred(uid, comp); } } diff --git a/Content.Shared/Revenant/SharedRevenant.cs b/Content.Shared/Revenant/SharedRevenant.cs index 15289ad1d71..c44e4408aaf 100644 --- a/Content.Shared/Revenant/SharedRevenant.cs +++ b/Content.Shared/Revenant/SharedRevenant.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Revenant; [Serializable, NetSerializable] -public sealed class SoulEvent : SimpleDoAfterEvent +public sealed partial class SoulEvent : SimpleDoAfterEvent { } @@ -24,7 +24,7 @@ public sealed class SoulSearchDoAfterCancelled : EntityEventArgs } [Serializable, NetSerializable] -public sealed class HarvestEvent : SimpleDoAfterEvent +public sealed partial class HarvestEvent : SimpleDoAfterEvent { } @@ -42,23 +42,23 @@ public sealed class HarvestDoAfterCancelled : EntityEventArgs { } -public sealed class RevenantShopActionEvent : InstantActionEvent +public sealed partial class RevenantShopActionEvent : InstantActionEvent { } -public sealed class RevenantDefileActionEvent : InstantActionEvent +public sealed partial class RevenantDefileActionEvent : InstantActionEvent { } -public sealed class RevenantOverloadLightsActionEvent : InstantActionEvent +public sealed partial class RevenantOverloadLightsActionEvent : InstantActionEvent { } -public sealed class RevenantBlightActionEvent : InstantActionEvent +public sealed partial class RevenantBlightActionEvent : InstantActionEvent { } -public sealed class RevenantMalfunctionActionEvent : InstantActionEvent +public sealed partial class RevenantMalfunctionActionEvent : InstantActionEvent { } diff --git a/Content.Shared/Roles/AntagPrototype.cs b/Content.Shared/Roles/AntagPrototype.cs index d9841f993a5..0bdb4d3a968 100644 --- a/Content.Shared/Roles/AntagPrototype.cs +++ b/Content.Shared/Roles/AntagPrototype.cs @@ -8,13 +8,9 @@ namespace Content.Shared.Roles [Prototype("antag")] public sealed class AntagPrototype : IPrototype { - private string _name = string.Empty; - private string _objective = string.Empty; - private string? _description = string.Empty; - [ViewVariables] [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// /// The name of this antag as displayed to players. diff --git a/Content.Shared/Roles/AntagonistRoleComponent.cs b/Content.Shared/Roles/AntagonistRoleComponent.cs new file mode 100644 index 00000000000..1ced44c910b --- /dev/null +++ b/Content.Shared/Roles/AntagonistRoleComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Shared.Roles; + +public abstract partial class AntagonistRoleComponent : Component +{ + [DataField("prototype", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] + public string? PrototypeId; +} diff --git a/Content.Shared/Roles/IRoleTimer.cs b/Content.Shared/Roles/IRoleTimer.cs deleted file mode 100644 index 5361139bb05..00000000000 --- a/Content.Shared/Roles/IRoleTimer.cs +++ /dev/null @@ -1,6 +0,0 @@ -namespace Content.Shared.Roles; - -public interface IRoleTimer -{ - string Timer { get; } -} diff --git a/Content.Shared/Roles/JobPrototype.cs b/Content.Shared/Roles/JobPrototype.cs index ab758996b2e..fc650083247 100644 --- a/Content.Shared/Roles/JobPrototype.cs +++ b/Content.Shared/Roles/JobPrototype.cs @@ -15,19 +15,19 @@ public sealed class JobPrototype : IPrototype { [ViewVariables] [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [DataField("playTimeTracker", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] - public string PlayTimeTracker { get; } = string.Empty; + public string PlayTimeTracker { get; private set; } = string.Empty; [DataField("supervisors")] - public string Supervisors { get; } = "nobody"; + public string Supervisors { get; private set; } = "nobody"; /// /// The name of this job as displayed to players. /// [DataField("name")] - public string Name { get; } = string.Empty; + public string Name { get; private set; } = string.Empty; [ViewVariables(VVAccess.ReadOnly)] public string LocalizedName => Loc.GetString(Name); @@ -36,7 +36,7 @@ public sealed class JobPrototype : IPrototype /// The name of this job as displayed to players. /// [DataField("description")] - public string? Description { get; } + public string? Description { get; private set; } [ViewVariables(VVAccess.ReadOnly)] public string? LocalizedDescription => Description is null ? null : Loc.GetString(Description); @@ -48,16 +48,16 @@ public sealed class JobPrototype : IPrototype public bool WhitelistRequired = false; [DataField("joinNotifyCrew")] - public bool JoinNotifyCrew { get; } = false; + public bool JoinNotifyCrew { get; private set; } = false; [DataField("requireAdminNotify")] - public bool RequireAdminNotify { get; } = false; + public bool RequireAdminNotify { get; private set; } = false; [DataField("setPreference")] - public bool SetPreference { get; } = true; + public bool SetPreference { get; private set; } = true; [DataField("canBeAntag")] - public bool CanBeAntag { get; } = true; + public bool CanBeAntag { get; private set; } = true; /// /// Whether this job is a head. @@ -85,21 +85,21 @@ public sealed class JobPrototype : IPrototype public string? JobEntity = null; [DataField("icon", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string Icon { get; } = "JobIconUnknown"; + public string Icon { get; private set; } = "JobIconUnknown"; [DataField("special", serverOnly: true)] public JobSpecial[] Special { get; private set; } = Array.Empty(); [DataField("access", customTypeSerializer: typeof(PrototypeIdListSerializer))] - public IReadOnlyCollection Access { get; } = Array.Empty(); + public IReadOnlyCollection Access { get; private set; } = Array.Empty(); [DataField("accessGroups", customTypeSerializer: typeof(PrototypeIdListSerializer))] - public IReadOnlyCollection AccessGroups { get; } = Array.Empty(); + public IReadOnlyCollection AccessGroups { get; private set; } = Array.Empty(); [DataField("extendedAccess", customTypeSerializer: typeof(PrototypeIdListSerializer))] - public IReadOnlyCollection ExtendedAccess { get; } = Array.Empty(); + public IReadOnlyCollection ExtendedAccess { get; private set; } = Array.Empty(); [DataField("extendedAccessGroups", customTypeSerializer: typeof(PrototypeIdListSerializer))] - public IReadOnlyCollection ExtendedAccessGroups { get; } = Array.Empty(); + public IReadOnlyCollection ExtendedAccessGroups { get; private set; } = Array.Empty(); } } diff --git a/Content.Shared/Roles/JobRequirements.cs b/Content.Shared/Roles/JobRequirements.cs index 74d8afa03a9..dd54ca60cf5 100644 --- a/Content.Shared/Roles/JobRequirements.cs +++ b/Content.Shared/Roles/JobRequirements.cs @@ -1,8 +1,10 @@ using System.Diagnostics.CodeAnalysis; using Content.Shared.Players.PlayTimeTracking; +using Content.Shared.Roles.Jobs; using JetBrains.Annotations; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Robust.Shared.Utility; namespace Content.Shared.Roles { @@ -10,10 +12,10 @@ namespace Content.Shared.Roles /// Abstract class for playtime and other requirements for role gates. /// [ImplicitDataDefinitionForInheritors] - public abstract class JobRequirement{} + public abstract partial class JobRequirement{} [UsedImplicitly] - public sealed class DepartmentTimeRequirement : JobRequirement + public sealed partial class DepartmentTimeRequirement : JobRequirement { /// /// Which department needs the required amount of time. @@ -37,7 +39,7 @@ public sealed class DepartmentTimeRequirement : JobRequirement } [UsedImplicitly] - public sealed class RoleTimeRequirement : JobRequirement + public sealed partial class RoleTimeRequirement : JobRequirement { /// /// What particular role they need the time requirement with. @@ -53,7 +55,7 @@ public sealed class RoleTimeRequirement : JobRequirement } [UsedImplicitly] - public sealed class OverallPlaytimeRequirement : JobRequirement + public sealed partial class OverallPlaytimeRequirement : JobRequirement { /// [DataField("time")] public TimeSpan Time; @@ -67,7 +69,8 @@ public static class JobRequirements public static bool TryRequirementsMet( JobPrototype job, Dictionary playTimes, - [NotNullWhen(false)] out string? reason, + [NotNullWhen(false)] out FormattedMessage? reason, + IEntityManager entManager, IPrototypeManager prototypes) { reason = null; @@ -76,7 +79,7 @@ public static bool TryRequirementsMet( foreach (var requirement in job.Requirements) { - if (!TryRequirementMet(requirement, playTimes, out reason, prototypes)) + if (!TryRequirementMet(requirement, playTimes, out reason, entManager, prototypes)) return false; } @@ -89,9 +92,9 @@ public static bool TryRequirementsMet( public static bool TryRequirementMet( JobRequirement requirement, Dictionary playTimes, - [NotNullWhen(false)] out string? reason, + [NotNullWhen(false)] out FormattedMessage? reason, + IEntityManager entManager, IPrototypeManager prototypes) - { reason = null; @@ -101,7 +104,8 @@ public static bool TryRequirementMet( var playtime = TimeSpan.Zero; // Check all jobs' departments - var jobs = prototypes.Index(deptRequirement.Department).Roles; + var department = prototypes.Index(deptRequirement.Department); + var jobs = department.Roles; string proto; // Check all jobs' playtime @@ -121,20 +125,22 @@ public static bool TryRequirementMet( if (deptDiff <= 0) return true; - reason = Loc.GetString( + reason = FormattedMessage.FromMarkup(Loc.GetString( "role-timer-department-insufficient", ("time", deptDiff), - ("department", Loc.GetString(deptRequirement.Department))); + ("department", Loc.GetString(deptRequirement.Department)), + ("departmentColor", department.Color.ToHex()))); return false; } else { if (deptDiff <= 0) { - reason = Loc.GetString( + reason = FormattedMessage.FromMarkup(Loc.GetString( "role-timer-department-too-high", ("time", -deptDiff), - ("department", Loc.GetString(deptRequirement.Department))); + ("department", Loc.GetString(deptRequirement.Department)), + ("departmentColor", department.Color.ToHex()))); return false; } @@ -150,14 +156,14 @@ public static bool TryRequirementMet( if (overallDiff <= 0 || overallTime >= overallRequirement.Time) return true; - reason = Loc.GetString("role-timer-overall-insufficient", ("time", overallDiff)); + reason = FormattedMessage.FromMarkup(Loc.GetString("role-timer-overall-insufficient", ("time", overallDiff))); return false; } else { if (overallDiff <= 0 || overallTime >= overallRequirement.Time) { - reason = Loc.GetString("role-timer-overall-too-high", ("time", -overallDiff)); + reason = FormattedMessage.FromMarkup(Loc.GetString("role-timer-overall-too-high", ("time", -overallDiff))); return false; } @@ -169,26 +175,37 @@ public static bool TryRequirementMet( playTimes.TryGetValue(proto, out var roleTime); var roleDiff = roleRequirement.Time.TotalMinutes - roleTime.TotalMinutes; + var departmentColor = Color.Yellow; + + if (entManager.EntitySysManager.TryGetEntitySystem(out SharedJobSystem? jobSystem)) + { + var jobProto = jobSystem.GetJobPrototype(proto); + + if (jobSystem.TryGetDepartment(jobProto, out var departmentProto)) + departmentColor = departmentProto.Color; + } if (!roleRequirement.Inverted) { if (roleDiff <= 0) return true; - reason = Loc.GetString( + reason = FormattedMessage.FromMarkup(Loc.GetString( "role-timer-role-insufficient", ("time", roleDiff), - ("job", Loc.GetString(proto))); + ("job", Loc.GetString(proto)), + ("departmentColor", departmentColor.ToHex()))); return false; } else { if (roleDiff <= 0) { - reason = Loc.GetString( + reason = FormattedMessage.FromMarkup(Loc.GetString( "role-timer-role-too-high", ("time", -roleDiff), - ("job", Loc.GetString(proto))); + ("job", Loc.GetString(proto)), + ("departmentColor", departmentColor.ToHex()))); return false; } diff --git a/Content.Shared/Roles/JobSpecial.cs b/Content.Shared/Roles/JobSpecial.cs index 0a3d2237289..468e939836d 100644 --- a/Content.Shared/Roles/JobSpecial.cs +++ b/Content.Shared/Roles/JobSpecial.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Roles /// Provides special hooks for when jobs get spawned in/equipped. /// [ImplicitDataDefinitionForInheritors] - public abstract class JobSpecial + public abstract partial class JobSpecial { public abstract void AfterEquip(EntityUid mob); } diff --git a/Content.Shared/Roles/Jobs/JobComponent.cs b/Content.Shared/Roles/Jobs/JobComponent.cs new file mode 100644 index 00000000000..c9053c1c6fd --- /dev/null +++ b/Content.Shared/Roles/Jobs/JobComponent.cs @@ -0,0 +1,13 @@ +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Shared.Roles.Jobs; + +/// +/// Added to mind entities to hold the data for the player's current job. +/// +[RegisterComponent] +public sealed partial class JobComponent : Component +{ + [DataField("prototype", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] + public string? PrototypeId; +} diff --git a/Content.Shared/Roles/Jobs/SharedJobSystem.cs b/Content.Shared/Roles/Jobs/SharedJobSystem.cs new file mode 100644 index 00000000000..ac18d04e9c7 --- /dev/null +++ b/Content.Shared/Roles/Jobs/SharedJobSystem.cs @@ -0,0 +1,138 @@ +using System.Diagnostics.CodeAnalysis; +using System.Linq; +using Content.Shared.Players; +using Content.Shared.Players.PlayTimeTracking; +using Robust.Shared.Players; +using Robust.Shared.Prototypes; +using Robust.Shared.Utility; + +namespace Content.Shared.Roles.Jobs; + +/// +/// Handles the job data on mind entities. +/// +public abstract class SharedJobSystem : EntitySystem +{ + [Dependency] private readonly IPrototypeManager _prototypes = default!; + [Dependency] private readonly SharedPlayerSystem _playerSystem = default!; + + [Dependency] private readonly IPrototypeManager _protoManager = default!; + private readonly Dictionary _inverseTrackerLookup = new(); + + public override void Initialize() + { + base.Initialize(); + _protoManager.PrototypesReloaded += OnProtoReload; + SetupTrackerLookup(); + } + + public override void Shutdown() + { + base.Shutdown(); + _protoManager.PrototypesReloaded -= OnProtoReload; + } + + private void OnProtoReload(PrototypesReloadedEventArgs obj) + { + SetupTrackerLookup(); + } + + private void SetupTrackerLookup() + { + _inverseTrackerLookup.Clear(); + + // This breaks if you have N trackers to 1 JobId but future concern. + foreach (var job in _protoManager.EnumeratePrototypes()) + { + _inverseTrackerLookup.Add(job.PlayTimeTracker, job.ID); + } + } + + /// + /// Gets the corresponding Job Prototype to a + /// + /// + /// + public string GetJobPrototype(string trackerProto) + { + DebugTools.Assert(_protoManager.HasIndex(trackerProto)); + return _inverseTrackerLookup[trackerProto]; + } + + /// + /// Tries to get the first corresponding department for this job prototype. + /// + public bool TryGetDepartment(string jobProto, [NotNullWhen(true)] out DepartmentPrototype? departmentPrototype) + { + // Not that many departments so we can just eat the cost instead of storing the inverse lookup. + var departmentProtos = _protoManager.EnumeratePrototypes().ToList(); + departmentProtos.Sort((x, y) => string.Compare(x.ID, y.ID, StringComparison.Ordinal)); + + foreach (var department in departmentProtos) + { + if (department.Roles.Contains(jobProto)) + { + departmentPrototype = department; + return true; + } + } + + departmentPrototype = null; + return false; + } + + public bool MindHasJobWithId(EntityUid? mindId, string prototypeId) + { + return CompOrNull(mindId)?.PrototypeId == prototypeId; + } + + public bool MindTryGetJob( + [NotNullWhen(true)] EntityUid? mindId, + [NotNullWhen(true)] out JobComponent? comp, + [NotNullWhen(true)] out JobPrototype? prototype) + { + comp = null; + prototype = null; + + return TryComp(mindId, out comp) && + comp.PrototypeId != null && + _prototypes.TryIndex(comp.PrototypeId, out prototype); + } + + /// + /// Tries to get the job name for this mind. + /// Returns unknown if not found. + /// + public bool MindTryGetJobName([NotNullWhen(true)] EntityUid? mindId, out string name) + { + if (MindTryGetJob(mindId, out _, out var prototype)) + { + name = prototype.LocalizedName; + return true; + } + + name = Loc.GetString("generic-unknown-title"); + return false; + } + + /// + /// Tries to get the job name for this mind. + /// Returns unknown if not found. + /// + public string MindTryGetJobName([NotNullWhen(true)] EntityUid? mindId) + { + MindTryGetJobName(mindId, out var name); + return name; + } + + public bool CanBeAntag(ICommonSession player) + { + if (_playerSystem.ContentData(player) is not { Mind: { } mindId }) + return false; + + if (!MindTryGetJob(mindId, out _, out var prototype)) + return true; + + return prototype.CanBeAntag; + } +} diff --git a/Content.Shared/Roles/MindGetAllRolesEvent.cs b/Content.Shared/Roles/MindGetAllRolesEvent.cs new file mode 100644 index 00000000000..9313d94edfd --- /dev/null +++ b/Content.Shared/Roles/MindGetAllRolesEvent.cs @@ -0,0 +1,19 @@ +using Content.Shared.Players.PlayTimeTracking; + +namespace Content.Shared.Roles; + +/// +/// Event raised on a mind entity to get all roles that a player has. +/// +/// The list of roles on the player. +[ByRefEvent] +public readonly record struct MindGetAllRolesEvent(List Roles); + +/// +/// Returned by to give some information about a player's role. +/// +/// Role component associated with the mind entity id. +/// Name of the role. +/// Whether or not this role makes this player an antagonist. +/// The id associated with the role. +public readonly record struct RoleInfo(Component Component, string Name, bool Antagonist, string? PlayTimeTrackerId); diff --git a/Content.Shared/Roles/MindIsAntagonistEvent.cs b/Content.Shared/Roles/MindIsAntagonistEvent.cs new file mode 100644 index 00000000000..e37715d8037 --- /dev/null +++ b/Content.Shared/Roles/MindIsAntagonistEvent.cs @@ -0,0 +1,9 @@ +namespace Content.Shared.Roles; + +/// +/// Event raised on a mind entity id to get whether or not the player is considered an antagonist, +/// depending on their roles. +/// +/// Whether or not the player is an antagonist. +[ByRefEvent] +public record struct MindIsAntagonistEvent(bool IsAntagonist); diff --git a/Content.Shared/Roles/MindRoleAddedEvent.cs b/Content.Shared/Roles/MindRoleAddedEvent.cs new file mode 100644 index 00000000000..4f6b50d417c --- /dev/null +++ b/Content.Shared/Roles/MindRoleAddedEvent.cs @@ -0,0 +1,8 @@ +namespace Content.Shared.Roles; + +/// +/// Raised on mind entities when a role is added to them. +/// for the one raised on player entities. +/// +[ByRefEvent] +public readonly record struct MindRoleAddedEvent(bool Silent); diff --git a/Content.Shared/Roles/RoleAddedEvent.cs b/Content.Shared/Roles/RoleAddedEvent.cs new file mode 100644 index 00000000000..48bc3c78140 --- /dev/null +++ b/Content.Shared/Roles/RoleAddedEvent.cs @@ -0,0 +1,12 @@ +using Content.Shared.Mind; + +namespace Content.Shared.Roles; + +/// +/// Raised on player entities when a role is added to them. +/// for the one raised on mind entities. +/// +/// The mind id associated with the player. +/// The mind component associated with the mind id. +/// Whether or not the role makes the player an antagonist. +public sealed record RoleAddedEvent(EntityUid MindId, MindComponent Mind, bool Antagonist, bool Silent = false) : RoleEvent(MindId, Mind, Antagonist); diff --git a/Content.Shared/Roles/RoleEvent.cs b/Content.Shared/Roles/RoleEvent.cs new file mode 100644 index 00000000000..ae6c330423e --- /dev/null +++ b/Content.Shared/Roles/RoleEvent.cs @@ -0,0 +1,11 @@ +using Content.Shared.Mind; + +namespace Content.Shared.Roles; + +/// +/// Base event raised on player entities to indicate that something changed about one of their roles. +/// +/// The mind id associated with the player. +/// The mind component associated with the mind id. +/// Whether or not the role makes the player an antagonist. +public abstract record RoleEvent(EntityUid MindId, MindComponent Mind, bool Antagonist); diff --git a/Content.Shared/Roles/RoleRemovedEvent.cs b/Content.Shared/Roles/RoleRemovedEvent.cs new file mode 100644 index 00000000000..3a0f4989d36 --- /dev/null +++ b/Content.Shared/Roles/RoleRemovedEvent.cs @@ -0,0 +1,14 @@ +using Content.Shared.Mind; + +namespace Content.Shared.Roles; + +/// +/// Event raised on player entities to indicate that a role was removed from their mind. +/// +/// The mind id associated with the player. +/// The mind component associated with the mind id. +/// +/// Whether or not the role made the player an antagonist. +/// They may still be one due to one of their other roles. +/// +public sealed record RoleRemovedEvent(EntityUid MindId, MindComponent Mind, bool Antagonist) : RoleEvent(MindId, Mind, Antagonist); diff --git a/Content.Shared/Roles/SharedRoleSystem.cs b/Content.Shared/Roles/SharedRoleSystem.cs new file mode 100644 index 00000000000..75296b96f4a --- /dev/null +++ b/Content.Shared/Roles/SharedRoleSystem.cs @@ -0,0 +1,156 @@ +using Content.Shared.Administration.Logs; +using Content.Shared.Database; +using Content.Shared.Mind; +using Content.Shared.Roles.Jobs; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Roles; + +public abstract class SharedRoleSystem : EntitySystem +{ + [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; + [Dependency] private readonly IPrototypeManager _prototypes = default!; + [Dependency] private readonly SharedMindSystem _minds = default!; + + // TODO please lord make role entities + private readonly HashSet _antagTypes = new(); + + public override void Initialize() + { + // TODO make roles entities + SubscribeLocalEvent(OnJobGetAllRoles); + } + + private void OnJobGetAllRoles(EntityUid uid, JobComponent component, ref MindGetAllRolesEvent args) + { + var name = "game-ticker-unknown-role"; + string? playTimeTracker = null; + if (component.PrototypeId != null && _prototypes.TryIndex(component.PrototypeId, out JobPrototype? job)) + { + name = job.Name; + playTimeTracker = job.PlayTimeTracker; + } + + name = Loc.GetString(name); + + args.Roles.Add(new RoleInfo(component, name, false, playTimeTracker)); + } + + protected void SubscribeAntagEvents() where T : AntagonistRoleComponent + { + SubscribeLocalEvent((EntityUid _, T component, ref MindGetAllRolesEvent args) => + { + var name = "game-ticker-unknown-role"; + if (component.PrototypeId != null && _prototypes.TryIndex(component.PrototypeId, out AntagPrototype? antag)) + { + name = antag.Name; + } + name = Loc.GetString(name); + + args.Roles.Add(new RoleInfo(component, name, true, null)); + }); + + SubscribeLocalEvent((EntityUid _, T _, ref MindIsAntagonistEvent args) => args.IsAntagonist = true); + _antagTypes.Add(typeof(T)); + } + + /// + /// Gives this mind a new role. + /// + /// The mind to add the role to. + /// The role instance to add. + /// The role type to add. + /// Whether or not the role should be added silently + /// The instance of the role. + /// + /// Thrown if we already have a role with this type. + /// + public void MindAddRole(EntityUid mindId, T component, MindComponent? mind = null, bool silent = false) where T : Component, new() + { + if (!Resolve(mindId, ref mind)) + return; + + if (HasComp(mindId)) + { + throw new ArgumentException($"We already have this role: {typeof(T)}"); + } + + AddComp(mindId, component); + var antagonist = IsAntagonistRole(); + + var mindEv = new MindRoleAddedEvent(); + RaiseLocalEvent(mindId, ref mindEv); + + var message = new RoleAddedEvent(mindId, mind, antagonist, silent); + if (mind.OwnedEntity != null) + { + RaiseLocalEvent(mind.OwnedEntity.Value, message, true); + } + + _adminLogger.Add(LogType.Mind, LogImpact.Low, + $"'Role {typeof(T).Name}' added to mind of {_minds.MindOwnerLoggingString(mind)}"); + } + + /// + /// Removes a role from this mind. + /// + /// The mind to remove the role from. + /// The type of the role to remove. + /// + /// Thrown if we do not have this role. + /// + public void MindRemoveRole(EntityUid mindId) where T : Component + { + if (!RemComp(mindId)) + { + throw new ArgumentException($"We do not have this role: {typeof(T)}"); + } + + var mind = Comp(mindId); + var antagonist = IsAntagonistRole(); + var message = new RoleRemovedEvent(mindId, mind, antagonist); + + if (mind.OwnedEntity != null) + { + RaiseLocalEvent(mind.OwnedEntity.Value, message, true); + } + _adminLogger.Add(LogType.Mind, LogImpact.Low, + $"'Role {typeof(T).Name}' removed from mind of {_minds.MindOwnerLoggingString(mind)}"); + } + + public bool MindTryRemoveRole(EntityUid mindId) where T : Component + { + if (!MindHasRole(mindId)) + return false; + + MindRemoveRole(mindId); + return true; + } + + public bool MindHasRole(EntityUid mindId) where T : Component + { + return HasComp(mindId); + } + + public List MindGetAllRoles(EntityUid mindId) + { + var ev = new MindGetAllRolesEvent(new List()); + RaiseLocalEvent(mindId, ref ev); + return ev.Roles; + } + + public bool MindIsAntagonist(EntityUid? mindId) + { + if (mindId == null) + return false; + + var ev = new MindIsAntagonistEvent(); + RaiseLocalEvent(mindId.Value, ref ev); + return ev.IsAntagonist; + } + + public bool IsAntagonistRole() + { + return _antagTypes.Contains(typeof(T)); + } +} diff --git a/Content.Shared/Roles/StartingGearPrototype.cs b/Content.Shared/Roles/StartingGearPrototype.cs index c515dbc250a..533cfc0675f 100644 --- a/Content.Shared/Roles/StartingGearPrototype.cs +++ b/Content.Shared/Roles/StartingGearPrototype.cs @@ -1,14 +1,15 @@ using Content.Shared.Preferences; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Dictionary; namespace Content.Shared.Roles { [Prototype("startingGear")] public sealed class StartingGearPrototype : IPrototype { - // TODO: Custom TypeSerializer for dictionary value prototype IDs - [DataField("equipment")] private Dictionary _equipment = new(); + [DataField("equipment", customTypeSerializer: typeof(PrototypeIdValueDictionarySerializer))] + private Dictionary _equipment = new(); /// /// if empty, there is no skirt override - instead the uniform provided in equipment is added. @@ -31,7 +32,7 @@ public sealed class StartingGearPrototype : IPrototype [ViewVariables] [IdDataField] - public string ID { get; } = string.Empty; + public string ID { get; private set; } = string.Empty; public string GetGear(string slot, HumanoidCharacterProfile? profile) { diff --git a/Content.Shared/Rotatable/RotatableComponent.cs b/Content.Shared/Rotatable/RotatableComponent.cs index 7bf09d557be..b008c281602 100644 --- a/Content.Shared/Rotatable/RotatableComponent.cs +++ b/Content.Shared/Rotatable/RotatableComponent.cs @@ -1,7 +1,7 @@ namespace Content.Shared.Rotatable { [RegisterComponent] - public sealed class RotatableComponent : Component + public sealed partial class RotatableComponent : Component { /// /// If true, this entity can be rotated even while anchored. diff --git a/Content.Shared/SSDIndicator/SSDIndicatorComponent.cs b/Content.Shared/SSDIndicator/SSDIndicatorComponent.cs new file mode 100644 index 00000000000..66310505a1a --- /dev/null +++ b/Content.Shared/SSDIndicator/SSDIndicatorComponent.cs @@ -0,0 +1,21 @@ +using Content.Shared.StatusIcon; +using Robust.Shared.GameStates; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Shared.SSDIndicator; + +/// +/// Shows status icon when player in SSD +/// +[RegisterComponent, NetworkedComponent] +[AutoGenerateComponentState] +public sealed partial class SSDIndicatorComponent : Component +{ + [ViewVariables(VVAccess.ReadWrite)] + [AutoNetworkedField] + public bool IsSSD = true; + + [ViewVariables(VVAccess.ReadWrite)] + [DataField("icon", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string Icon = "SSDIcon"; +} diff --git a/Content.Shared/SSDIndicator/SSDIndicatorSystem.cs b/Content.Shared/SSDIndicator/SSDIndicatorSystem.cs new file mode 100644 index 00000000000..d6db56be9cc --- /dev/null +++ b/Content.Shared/SSDIndicator/SSDIndicatorSystem.cs @@ -0,0 +1,27 @@ +using Content.Shared.Mind.Components; + +namespace Content.Shared.SSDIndicator; + +/// +/// Handle changing player SSD indicator status +/// +public sealed class SSDIndicatorSystem : EntitySystem +{ + public override void Initialize() + { + SubscribeLocalEvent(OnMindAdded); + SubscribeLocalEvent(OnMindRemoved); + } + + private void OnMindAdded(EntityUid uid, SSDIndicatorComponent component, MindAddedMessage args) + { + component.IsSSD = false; + Dirty(uid, component); + } + + private void OnMindRemoved(EntityUid uid, SSDIndicatorComponent component, MindRemovedMessage args) + { + component.IsSSD = true; + Dirty(uid, component); + } +} diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageAirMod.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageAirMod.cs index 11ab80b14e7..aee79fdf027 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageAirMod.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageAirMod.cs @@ -13,19 +13,19 @@ namespace Content.Shared.Salvage.Expeditions.Modifiers; public sealed class SalvageAirMod : IPrototype, IBiomeSpecificMod { [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// [DataField("desc")] - public string Description { get; } = string.Empty; + public string Description { get; private set; } = string.Empty; /// [DataField("cost")] - public float Cost { get; } = 0f; + public float Cost { get; private set; } = 0f; /// [DataField("biomes", customTypeSerializer: typeof(PrototypeIdListSerializer))] - public List? Biomes { get; } = null; + public List? Biomes { get; private set; } = null; /// /// Set to true if this planet will have no atmosphere. diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageBiomeMod.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageBiomeMod.cs index a5887b0c9fc..fc6ce7e9de9 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageBiomeMod.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageBiomeMod.cs @@ -12,13 +12,13 @@ public sealed class SalvageBiomeMod : IPrototype, ISalvageMod { [IdDataField] public string ID { get; } = default!; - [DataField("desc")] public string Description { get; } = string.Empty; + [DataField("desc")] public string Description { get; private set; } = string.Empty; /// /// Cost for difficulty modifiers. /// [DataField("cost")] - public float Cost { get; } = 0f; + public float Cost { get; private set; } = 0f; /// /// Is weather allowed to apply to this biome. diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageDungeonMod.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageDungeonMod.cs index 06d2c6d4b18..335a127081d 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageDungeonMod.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageDungeonMod.cs @@ -10,15 +10,15 @@ public sealed class SalvageDungeonMod : IPrototype, IBiomeSpecificMod { [IdDataField] public string ID { get; } = default!; - [DataField("desc")] public string Description { get; } = string.Empty; + [DataField("desc")] public string Description { get; private set; } = string.Empty; /// [DataField("cost")] - public float Cost { get; } = 0f; + public float Cost { get; private set; } = 0f; /// [DataField("biomes", customTypeSerializer: typeof(PrototypeIdListSerializer))] - public List? Biomes { get; } = null; + public List? Biomes { get; private set; } = null; /// /// The config to use for spawning the dungeon. diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageLightMod.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageLightMod.cs index 315125d3aa4..e738c98a3a7 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageLightMod.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageLightMod.cs @@ -8,15 +8,15 @@ public sealed class SalvageLightMod : IPrototype, IBiomeSpecificMod { [IdDataField] public string ID { get; } = default!; - [DataField("desc")] public string Description { get; } = string.Empty; + [DataField("desc")] public string Description { get; private set; } = string.Empty; /// [DataField("cost")] - public float Cost { get; } = 0f; + public float Cost { get; private set; } = 0f; /// [DataField("biomes", customTypeSerializer: typeof(PrototypeIdListSerializer))] - public List? Biomes { get; } = null; + public List? Biomes { get; private set; } = null; [DataField("color", required: true)] public Color? Color; } diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageMod.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageMod.cs index d353fac571a..07c07b75c34 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageMod.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageMod.cs @@ -10,11 +10,11 @@ public sealed class SalvageMod : IPrototype, ISalvageMod { [IdDataField] public string ID { get; } = default!; - [DataField("desc")] public string Description { get; } = string.Empty; + [DataField("desc")] public string Description { get; private set; } = string.Empty; /// /// Cost for difficulty modifiers. /// [DataField("cost")] - public float Cost { get; } = 0f; + public float Cost { get; private set; } = 0f; } diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageTemperatureMod.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageTemperatureMod.cs index 58e95537396..c52b2010e4e 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageTemperatureMod.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageTemperatureMod.cs @@ -9,15 +9,15 @@ public sealed class SalvageTemperatureMod : IPrototype, IBiomeSpecificMod { [IdDataField] public string ID { get; } = default!; - [DataField("desc")] public string Description { get; } = string.Empty; + [DataField("desc")] public string Description { get; private set; } = string.Empty; /// [DataField("cost")] - public float Cost { get; } = 0f; + public float Cost { get; private set; } = 0f; /// [DataField("biomes", customTypeSerializer: typeof(PrototypeIdListSerializer))] - public List? Biomes { get; } = null; + public List? Biomes { get; private set; } = null; /// /// Temperature in the planets air mix. diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageTimeMod.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageTimeMod.cs index f726218d835..ae6c44d6e1c 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageTimeMod.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageTimeMod.cs @@ -7,13 +7,13 @@ public sealed class SalvageTimeMod : IPrototype, ISalvageMod { [IdDataField] public string ID { get; } = default!; - [DataField("desc")] public string Description { get; } = string.Empty; + [DataField("desc")] public string Description { get; private set; } = string.Empty; /// /// Cost for difficulty modifiers. /// [DataField("cost")] - public float Cost { get; } + public float Cost { get; private set; } [DataField("minDuration")] public int MinDuration = 900; diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageWeatherMod.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageWeatherMod.cs index 7bf6be49135..caa89afeb4a 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageWeatherMod.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageWeatherMod.cs @@ -10,15 +10,15 @@ public sealed class SalvageWeatherMod : IPrototype, IBiomeSpecificMod { [IdDataField] public string ID { get; } = default!; - [DataField("desc")] public string Description { get; } = string.Empty; + [DataField("desc")] public string Description { get; private set; } = string.Empty; /// [DataField("cost")] - public float Cost { get; } = 0f; + public float Cost { get; private set; } = 0f; /// [DataField("biomes", customTypeSerializer: typeof(PrototypeIdListSerializer))] - public List? Biomes { get; } = null; + public List? Biomes { get; private set; } = null; /// /// Weather prototype to use on the planet. diff --git a/Content.Shared/Salvage/Expeditions/SalvageExpeditions.cs b/Content.Shared/Salvage/Expeditions/SalvageExpeditions.cs index a32b25506e3..075149c1cb8 100644 --- a/Content.Shared/Salvage/Expeditions/SalvageExpeditions.cs +++ b/Content.Shared/Salvage/Expeditions/SalvageExpeditions.cs @@ -28,7 +28,7 @@ public SalvageExpeditionConsoleState(TimeSpan nextOffer, bool claimed, bool cool /// Used to interact with salvage expeditions and claim them. /// [RegisterComponent, NetworkedComponent] -public sealed class SalvageExpeditionConsoleComponent : Component +public sealed partial class SalvageExpeditionConsoleComponent : Component { } @@ -43,7 +43,7 @@ public sealed class ClaimSalvageMessage : BoundUserInterfaceMessage /// Added per station to store data on their available salvage missions. /// [RegisterComponent] -public sealed class SalvageExpeditionDataComponent : Component +public sealed partial class SalvageExpeditionDataComponent : Component { /// /// Is there an active salvage expedition. diff --git a/Content.Shared/Salvage/Expeditions/SalvageFactionPrototype.cs b/Content.Shared/Salvage/Expeditions/SalvageFactionPrototype.cs index 58528382853..cead0624319 100644 --- a/Content.Shared/Salvage/Expeditions/SalvageFactionPrototype.cs +++ b/Content.Shared/Salvage/Expeditions/SalvageFactionPrototype.cs @@ -9,13 +9,13 @@ public sealed class SalvageFactionPrototype : IPrototype, ISalvageMod { [IdDataField] public string ID { get; } = default!; - [DataField("desc")] public string Description { get; } = string.Empty; + [DataField("desc")] public string Description { get; private set; } = string.Empty; /// /// Cost for difficulty modifiers. /// [DataField("cost")] - public float Cost { get; } = 0f; + public float Cost { get; private set; } = 0f; [ViewVariables(VVAccess.ReadWrite), DataField("groups", required: true)] public List MobGroups = default!; diff --git a/Content.Shared/Salvage/Expeditions/SalvageMobGroup.cs b/Content.Shared/Salvage/Expeditions/SalvageMobGroup.cs index da728e44f08..df1917acdcb 100644 --- a/Content.Shared/Salvage/Expeditions/SalvageMobGroup.cs +++ b/Content.Shared/Salvage/Expeditions/SalvageMobGroup.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Salvage.Expeditions; [DataDefinition] -public record struct SalvageMobGroup() +public partial record struct SalvageMobGroup() { // A mob may be cheap but rare or expensive but frequent. diff --git a/Content.Shared/Salvage/Expeditions/SharedSalvageExpeditionComponent.cs b/Content.Shared/Salvage/Expeditions/SharedSalvageExpeditionComponent.cs index 5fa7fe05e96..a1b0e63240f 100644 --- a/Content.Shared/Salvage/Expeditions/SharedSalvageExpeditionComponent.cs +++ b/Content.Shared/Salvage/Expeditions/SharedSalvageExpeditionComponent.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Salvage.Expeditions; [NetworkedComponent] -public abstract class SharedSalvageExpeditionComponent : Component +public abstract partial class SharedSalvageExpeditionComponent : Component { [ViewVariables(VVAccess.ReadWrite), DataField("stage")] public ExpeditionStage Stage = ExpeditionStage.Added; diff --git a/Content.Shared/Salvage/Fulton/FultonBeaconComponent.cs b/Content.Shared/Salvage/Fulton/FultonBeaconComponent.cs new file mode 100644 index 00000000000..94ddffb1083 --- /dev/null +++ b/Content.Shared/Salvage/Fulton/FultonBeaconComponent.cs @@ -0,0 +1,14 @@ +using Robust.Shared.Audio; +using Robust.Shared.GameStates; + +namespace Content.Shared.Salvage.Fulton; + +/// +/// Receives . +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class FultonBeaconComponent : Component +{ + [ViewVariables(VVAccess.ReadWrite), DataField("soundLink"), AutoNetworkedField] + public SoundSpecifier? LinkSound = new SoundPathSpecifier("/Audio/Items/beep.ogg"); +} diff --git a/Content.Shared/Salvage/Fulton/FultonComponent.cs b/Content.Shared/Salvage/Fulton/FultonComponent.cs new file mode 100644 index 00000000000..54936367768 --- /dev/null +++ b/Content.Shared/Salvage/Fulton/FultonComponent.cs @@ -0,0 +1,54 @@ +using Content.Shared.Whitelist; +using Robust.Shared.Audio; +using Robust.Shared.GameStates; + +namespace Content.Shared.Salvage.Fulton; + +/// +/// Applies to the target so they teleport to after a time. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class FultonComponent : Component +{ + /// + /// How long it takes to apply the fulton to an entity. + /// + [ViewVariables(VVAccess.ReadWrite), DataField("applyDuration"), AutoNetworkedField] + public TimeSpan ApplyFultonDuration = TimeSpan.FromSeconds(3); + + /// + /// Linked fulton beacon. + /// + [ViewVariables(VVAccess.ReadWrite), DataField("beacon")] + public EntityUid? Beacon; + + /// + /// Applies Removeable to the . + /// + [ViewVariables(VVAccess.ReadWrite), DataField("removeable"), AutoNetworkedField] + public bool Removeable = true; + + /// + /// How long the fulton will remain before teleporting to the beacon. + /// + [ViewVariables(VVAccess.ReadWrite), DataField("duration")] + public TimeSpan FultonDuration = TimeSpan.FromSeconds(45); + + [ViewVariables(VVAccess.ReadWrite), DataField("whitelist"), AutoNetworkedField] + public EntityWhitelist? Whitelist = new() + { + Components = new[] + { + "EntityStorage", + "Item", + "ReagentTank", + } + }; + + /// + /// Sound that gets played when fulton is applied. + /// + /// + [ViewVariables(VVAccess.ReadWrite), DataField("soundFulton"), AutoNetworkedField] + public SoundSpecifier? FultonSound = new SoundPathSpecifier("/Audio/Items/Mining/fultext_deploy.ogg"); +} diff --git a/Content.Shared/Salvage/Fulton/FultonedComponent.cs b/Content.Shared/Salvage/Fulton/FultonedComponent.cs new file mode 100644 index 00000000000..3070249eee2 --- /dev/null +++ b/Content.Shared/Salvage/Fulton/FultonedComponent.cs @@ -0,0 +1,40 @@ +using Robust.Shared.Audio; +using Robust.Shared.GameStates; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + +namespace Content.Shared.Salvage.Fulton; + +/// +/// Marks an entity as pending being fultoned. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState(true)] +public sealed partial class FultonedComponent : Component +{ + /// + /// Effect entity to delete upon removing the component. Only matters clientside. + /// + [ViewVariables, DataField("effect"), AutoNetworkedField] + public EntityUid Effect { get; set; } + + [ViewVariables(VVAccess.ReadWrite), DataField("beacon")] + public EntityUid? Beacon; + + [ViewVariables(VVAccess.ReadWrite), DataField("fultonDuration"), AutoNetworkedField] + public TimeSpan FultonDuration = TimeSpan.FromSeconds(45); + + /// + /// When the fulton is travelling to the beacon. + /// + [ViewVariables(VVAccess.ReadWrite), DataField("nextFulton", customTypeSerializer:typeof(TimeOffsetSerializer)), AutoNetworkedField] + public TimeSpan NextFulton; + + [ViewVariables(VVAccess.ReadWrite), DataField("sound"), AutoNetworkedField] + public SoundSpecifier? Sound = new SoundPathSpecifier("/Audio/Items/Mining/fultext_launch.ogg"); + + // Mainly for admemes. + /// + /// Can the fulton be removed. + /// + [ViewVariables(VVAccess.ReadWrite), DataField("removeable")] + public bool Removeable = true; +} diff --git a/Content.Shared/Salvage/Fulton/SharedFultonSystem.cs b/Content.Shared/Salvage/Fulton/SharedFultonSystem.cs new file mode 100644 index 00000000000..3ddd42f2b7d --- /dev/null +++ b/Content.Shared/Salvage/Fulton/SharedFultonSystem.cs @@ -0,0 +1,194 @@ +using System.Numerics; +using Content.Shared.DoAfter; +using Content.Shared.Examine; +using Content.Shared.Foldable; +using Content.Shared.Interaction; +using Content.Shared.Popups; +using Content.Shared.Stacks; +using Content.Shared.Verbs; +using Robust.Shared.Containers; +using Robust.Shared.Map; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; +using Robust.Shared.Timing; + +namespace Content.Shared.Salvage.Fulton; + +/// +/// Provides extraction devices that teleports the attached entity after elapses to the linked beacon. +/// +public abstract partial class SharedFultonSystem : EntitySystem +{ + [Dependency] protected readonly IGameTiming Timing = default!; + [Dependency] private readonly MetaDataSystem _metadata = default!; + [Dependency] protected readonly SharedAudioSystem Audio = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; + [Dependency] private readonly FoldableSystem _foldable = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedStackSystem _stack = default!; + [Dependency] protected readonly SharedTransformSystem TransformSystem = default!; + + [ValidatePrototypeId] public const string EffectProto = "FultonEffect"; + protected static readonly Vector2 EffectOffset = Vector2.Zero; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnFultonDoAfter); + + SubscribeLocalEvent(OnFultonUnpaused); + SubscribeLocalEvent>(OnFultonedGetVerbs); + SubscribeLocalEvent(OnFultonedExamine); + SubscribeLocalEvent(OnFultonContainerInserted); + + SubscribeLocalEvent(OnFultonInteract); + } + + private void OnFultonContainerInserted(EntityUid uid, FultonedComponent component, EntGotInsertedIntoContainerMessage args) + { + RemCompDeferred(uid); + } + + private void OnFultonedExamine(EntityUid uid, FultonedComponent component, ExaminedEvent args) + { + var remaining = component.NextFulton + _metadata.GetPauseTime(uid) - Timing.CurTime; + var message = Loc.GetString("fulton-examine", ("time", $"{remaining.TotalSeconds:0.00}")); + + args.PushText(message); + } + + private void OnFultonedGetVerbs(EntityUid uid, FultonedComponent component, GetVerbsEvent args) + { + args.Verbs.Add(new InteractionVerb() + { + Text = Loc.GetString("fulton-remove"), + Act = () => + { + Unfulton(uid); + } + }); + } + + private void Unfulton(EntityUid uid, FultonedComponent? component = null) + { + if (!Resolve(uid, ref component, false) || !component.Removeable) + return; + + RemCompDeferred(uid); + } + + private void OnFultonDoAfter(FultonedDoAfterEvent args) + { + if (args.Cancelled || args.Target == null || !TryComp(args.Used, out var fulton)) + return; + + if (!_stack.Use(args.Used.Value, 1)) + { + return; + } + + var fultoned = AddComp(args.Target.Value); + fultoned.Beacon = fulton.Beacon; + fultoned.NextFulton = Timing.CurTime + fulton.FultonDuration; + fultoned.FultonDuration = fulton.FultonDuration; + fultoned.Removeable = fulton.Removeable; + UpdateAppearance(args.Target.Value, fultoned); + Dirty(args.Target.Value, fultoned); + Audio.PlayPredicted(fulton.FultonSound, args.Target.Value, args.User); + } + + private void OnFultonUnpaused(EntityUid uid, FultonedComponent component, ref EntityUnpausedEvent args) + { + component.NextFulton += args.PausedTime; + } + + private void OnFultonInteract(EntityUid uid, FultonComponent component, AfterInteractEvent args) + { + if (args.Target == null || args.Handled || !args.CanReach) + return; + + if (TryComp(args.Target, out var beacon)) + { + if (!_foldable.IsFolded(args.Target.Value)) + { + component.Beacon = args.Target.Value; + Audio.PlayPredicted(beacon.LinkSound, uid, args.User); + _popup.PopupClient(Loc.GetString("fulton-linked"), uid, args.User); + } + else + { + component.Beacon = EntityUid.Invalid; + _popup.PopupClient(Loc.GetString("fulton-folded"), uid, args.User); + } + + return; + } + + if (Deleted(component.Beacon)) + { + _popup.PopupClient(Loc.GetString("fulton-not-found"), uid, args.User); + return; + } + + if (!CanFulton(args.Target.Value, uid, component)) + { + _popup.PopupClient(Loc.GetString("fulton-invalid"), uid, uid); + return; + } + + if (HasComp(args.Target)) + { + _popup.PopupClient(Loc.GetString("fulton-fultoned"), uid, uid); + return; + } + + args.Handled = true; + + var ev = new FultonedDoAfterEvent(); + _doAfter.TryStartDoAfter( + new DoAfterArgs(EntityManager, args.User, component.ApplyFultonDuration, ev, args.Target, args.Target, args.Used) + { + CancelDuplicate = true, + MovementThreshold = 0.5f, + BreakOnUserMove = true, + BreakOnTargetMove = true, + Broadcast = true, + NeedHand = true, + }); + } + + protected virtual void UpdateAppearance(EntityUid uid, FultonedComponent fultoned) + { + return; + } + + private bool CanFulton(EntityUid targetUid, EntityUid uid, FultonComponent component) + { + if (Transform(targetUid).Anchored) + return false; + + if (component.Whitelist?.IsValid(targetUid, EntityManager) != true) + { + return false; + } + + return true; + } + + [Serializable, NetSerializable] + private sealed partial class FultonedDoAfterEvent : SimpleDoAfterEvent + { + } + + // Animations aren't really good for networking hence this. + /// + /// Tells clients to play the fulton animation. + /// + [Serializable, NetSerializable] + protected sealed class FultonAnimationMessage : EntityEventArgs + { + public NetEntity Entity; + public NetCoordinates Coordinates; + } +} diff --git a/Content.Shared/Salvage/SharedSalvageMagnetComponent.cs b/Content.Shared/Salvage/SharedSalvageMagnetComponent.cs index c0dd76d133c..56942b875d1 100644 --- a/Content.Shared/Salvage/SharedSalvageMagnetComponent.cs +++ b/Content.Shared/Salvage/SharedSalvageMagnetComponent.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Salvage; -public abstract class SharedSalvageMagnetComponent : Component +public abstract partial class SharedSalvageMagnetComponent : Component { /// /// The machine part that affects the attaching and cooldown times diff --git a/Content.Shared/Security/Components/DeployableBarrierComponent.cs b/Content.Shared/Security/Components/DeployableBarrierComponent.cs new file mode 100644 index 00000000000..2afcc3c2a93 --- /dev/null +++ b/Content.Shared/Security/Components/DeployableBarrierComponent.cs @@ -0,0 +1,14 @@ +using Content.Shared.Security.Systems; +using Robust.Shared.GameStates; + +namespace Content.Shared.Security.Components; + +[RegisterComponent, NetworkedComponent] +[Access(typeof(DeployableBarrierSystem))] +public sealed partial class DeployableBarrierComponent : Component +{ + /// + /// The fixture to change collision on. + /// + [DataField("fixture", required: true)] public string FixtureId = string.Empty; +} diff --git a/Content.Shared/Security/Systems/DeployableBarrierSystem.cs b/Content.Shared/Security/Systems/DeployableBarrierSystem.cs new file mode 100644 index 00000000000..9d021c52194 --- /dev/null +++ b/Content.Shared/Security/Systems/DeployableBarrierSystem.cs @@ -0,0 +1,70 @@ +using Content.Shared.Lock; +using Content.Shared.Pulling; +using Content.Shared.Pulling.Components; +using Content.Shared.Security.Components; +using Robust.Shared.Physics.Systems; + +namespace Content.Shared.Security.Systems; + +public sealed class DeployableBarrierSystem : EntitySystem +{ + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly FixtureSystem _fixtures = default!; + [Dependency] private readonly SharedPointLightSystem _pointLight = default!; + [Dependency] private readonly SharedPhysicsSystem _physics = default!; + [Dependency] private readonly SharedPullingSystem _pulling = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; + + public override void Initialize() + { + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnLockToggled); + } + + private void OnMapInit(EntityUid uid, DeployableBarrierComponent component, MapInitEvent args) + { + if (!TryComp(uid, out LockComponent? lockComponent)) + return; + + ToggleBarrierDeploy(uid, lockComponent.Locked, component); + } + + private void OnLockToggled(EntityUid uid, DeployableBarrierComponent component, ref LockToggledEvent args) + { + ToggleBarrierDeploy(uid, args.Locked, component); + } + + private void ToggleBarrierDeploy(EntityUid uid, bool isDeployed, DeployableBarrierComponent? component) + { + if (!Resolve(uid, ref component)) + return; + + var transform = Transform(uid); + var fixture = _fixtures.GetFixtureOrNull(uid, component.FixtureId); + + if (isDeployed && transform.GridUid != null) + { + _transform.AnchorEntity(uid, transform); + if (fixture != null) + _physics.SetHard(uid, fixture, true); + } + else + { + _transform.Unanchor(uid, transform); + if (fixture != null) + _physics.SetHard(uid, fixture, false); + } + + var state = isDeployed ? DeployableBarrierState.Deployed : DeployableBarrierState.Idle; + _appearance.SetData(uid, DeployableBarrierVisuals.State, state); + + if (TryComp(uid, out SharedPullableComponent? pullable)) + _pulling.TryStopPull(pullable); + + SharedPointLightComponent? pointLight = null; + if (_pointLight.ResolveLight(uid, ref pointLight)) + { + _pointLight.SetEnabled(uid, isDeployed, pointLight); + } + } +} diff --git a/Content.Shared/Sericulture/SericultureEvents.cs b/Content.Shared/Sericulture/SericultureEvents.cs index cf8e1063f6b..9a497d16f4d 100644 --- a/Content.Shared/Sericulture/SericultureEvents.cs +++ b/Content.Shared/Sericulture/SericultureEvents.cs @@ -1,7 +1,10 @@ +using Content.Shared.Actions; using Content.Shared.DoAfter; using Robust.Shared.Serialization; namespace Content.Shared.Sericulture; [Serializable, NetSerializable] -public sealed class SericultureDoAfterEvent : SimpleDoAfterEvent { } +public sealed partial class SericultureDoAfterEvent : SimpleDoAfterEvent { } + +public sealed partial class SericultureActionEvent : InstantActionEvent { } diff --git a/Content.Shared/Shuttles/BUIStates/RadarConsoleBoundInterfaceState.cs b/Content.Shared/Shuttles/BUIStates/RadarConsoleBoundInterfaceState.cs index 5592196256b..99e68591a8d 100644 --- a/Content.Shared/Shuttles/BUIStates/RadarConsoleBoundInterfaceState.cs +++ b/Content.Shared/Shuttles/BUIStates/RadarConsoleBoundInterfaceState.cs @@ -12,7 +12,7 @@ public class RadarConsoleBoundInterfaceState : BoundUserInterfaceState /// /// The relevant coordinates to base the radar around. /// - public EntityCoordinates? Coordinates; + public NetCoordinates? Coordinates; /// /// The relevant rotation to rotate the angle around. @@ -23,7 +23,7 @@ public class RadarConsoleBoundInterfaceState : BoundUserInterfaceState public RadarConsoleBoundInterfaceState( float maxRange, - EntityCoordinates? coordinates, + NetCoordinates? coordinates, Angle? angle, List docks) { @@ -40,9 +40,9 @@ public RadarConsoleBoundInterfaceState( [Serializable, NetSerializable] public sealed class DockingInterfaceState { - public EntityCoordinates Coordinates; + public NetCoordinates Coordinates; public Angle Angle; - public EntityUid Entity; + public NetEntity Entity; public bool Connected; public Color Color; public string? Name; diff --git a/Content.Shared/Shuttles/BUIStates/ShuttleConsoleBoundInterfaceState.cs b/Content.Shared/Shuttles/BUIStates/ShuttleConsoleBoundInterfaceState.cs index a008ee43435..db38416ce2b 100644 --- a/Content.Shared/Shuttles/BUIStates/ShuttleConsoleBoundInterfaceState.cs +++ b/Content.Shared/Shuttles/BUIStates/ShuttleConsoleBoundInterfaceState.cs @@ -18,14 +18,14 @@ public sealed class ShuttleConsoleBoundInterfaceState : RadarConsoleBoundInterfa /// public readonly TimeSpan FTLTime; - public List<(EntityUid Entity, string Destination, bool Enabled)> Destinations; + public List<(NetEntity Entity, string Destination, bool Enabled)> Destinations; public ShuttleConsoleBoundInterfaceState( FTLState ftlState, TimeSpan ftlTime, - List<(EntityUid Entity, string Destination, bool Enabled)> destinations, + List<(NetEntity Entity, string Destination, bool Enabled)> destinations, float maxRange, - EntityCoordinates? coordinates, + NetCoordinates? coordinates, Angle? angle, List docks) : base(maxRange, coordinates, angle, docks) { diff --git a/Content.Shared/Shuttles/Components/IFFComponent.cs b/Content.Shared/Shuttles/Components/IFFComponent.cs index 959af4f97e2..dc834aebf2f 100644 --- a/Content.Shared/Shuttles/Components/IFFComponent.cs +++ b/Content.Shared/Shuttles/Components/IFFComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Shuttles.Components; /// Handles what a grid should look like on radar. /// [RegisterComponent, NetworkedComponent, Access(typeof(SharedShuttleSystem))] -public sealed class IFFComponent : Component +public sealed partial class IFFComponent : Component { /// /// Should we show IFF by default? diff --git a/Content.Shared/Shuttles/Components/PilotComponent.cs b/Content.Shared/Shuttles/Components/PilotComponent.cs index ad176bb3010..e561aebca78 100644 --- a/Content.Shared/Shuttles/Components/PilotComponent.cs +++ b/Content.Shared/Shuttles/Components/PilotComponent.cs @@ -11,7 +11,7 @@ namespace Content.Shared.Shuttles.Components /// [RegisterComponent] [NetworkedComponent] - public sealed class PilotComponent : Component + public sealed partial class PilotComponent : Component { [ViewVariables] public EntityUid? Console { get; set; } diff --git a/Content.Shared/Shuttles/Components/PreventPilotComponent.cs b/Content.Shared/Shuttles/Components/PreventPilotComponent.cs index 76bff898a04..0299485ff45 100644 --- a/Content.Shared/Shuttles/Components/PreventPilotComponent.cs +++ b/Content.Shared/Shuttles/Components/PreventPilotComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Shuttles.Components; /// Add to grids that you do not want manually piloted under any circumstances. /// [RegisterComponent, NetworkedComponent] -public sealed class PreventPilotComponent : Component +public sealed partial class PreventPilotComponent : Component { } diff --git a/Content.Shared/Shuttles/Components/RadarConsoleComponent.cs b/Content.Shared/Shuttles/Components/RadarConsoleComponent.cs index 718c5204c12..952f4798225 100644 --- a/Content.Shared/Shuttles/Components/RadarConsoleComponent.cs +++ b/Content.Shared/Shuttles/Components/RadarConsoleComponent.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Shuttles.Components; [RegisterComponent, NetworkedComponent, Access(typeof(SharedRadarConsoleSystem))] -public sealed class RadarConsoleComponent : Component +public sealed partial class RadarConsoleComponent : Component { [ViewVariables(VVAccess.ReadWrite)] public float RangeVV diff --git a/Content.Shared/Shuttles/Components/SharedDockingComponent.cs b/Content.Shared/Shuttles/Components/SharedDockingComponent.cs index 5c829e969c0..501132f8042 100644 --- a/Content.Shared/Shuttles/Components/SharedDockingComponent.cs +++ b/Content.Shared/Shuttles/Components/SharedDockingComponent.cs @@ -1,6 +1,6 @@ namespace Content.Shared.Shuttles.Components { - public abstract class SharedDockingComponent : Component + public abstract partial class SharedDockingComponent : Component { // Yes I left this in for now because there's no overhead and we'll need a client one later anyway // and I was too lazy to delete it. diff --git a/Content.Shared/Shuttles/Components/SharedShuttleConsoleComponent.cs b/Content.Shared/Shuttles/Components/SharedShuttleConsoleComponent.cs index 88583b87fc8..436c830d20b 100644 --- a/Content.Shared/Shuttles/Components/SharedShuttleConsoleComponent.cs +++ b/Content.Shared/Shuttles/Components/SharedShuttleConsoleComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Shuttles.Components /// Interact with to start piloting a shuttle. /// [NetworkedComponent] - public abstract class SharedShuttleConsoleComponent : Component + public abstract partial class SharedShuttleConsoleComponent : Component { } diff --git a/Content.Shared/Shuttles/Events/AutodockRequestMessage.cs b/Content.Shared/Shuttles/Events/AutodockRequestMessage.cs index 7e4f5790386..39b91e6278c 100644 --- a/Content.Shared/Shuttles/Events/AutodockRequestMessage.cs +++ b/Content.Shared/Shuttles/Events/AutodockRequestMessage.cs @@ -8,5 +8,5 @@ namespace Content.Shared.Shuttles.Events; [Serializable, NetSerializable] public sealed class AutodockRequestMessage : BoundUserInterfaceMessage { - public EntityUid DockEntity; + public NetEntity DockEntity; } diff --git a/Content.Shared/Shuttles/Events/EmergencyShuttlePositionMessage.cs b/Content.Shared/Shuttles/Events/EmergencyShuttlePositionMessage.cs index e021492c20f..187b89467ac 100644 --- a/Content.Shared/Shuttles/Events/EmergencyShuttlePositionMessage.cs +++ b/Content.Shared/Shuttles/Events/EmergencyShuttlePositionMessage.cs @@ -8,6 +8,6 @@ namespace Content.Shared.Shuttles.Events; [Serializable, NetSerializable] public sealed class EmergencyShuttlePositionMessage : EntityEventArgs { - public EntityUid? StationUid; + public NetEntity? StationUid; public Box2? Position; } diff --git a/Content.Shared/Shuttles/Events/ShuttleConsoleFTLRequestMessage.cs b/Content.Shared/Shuttles/Events/ShuttleConsoleFTLRequestMessage.cs index e1aac65ea3c..73fd9d2c645 100644 --- a/Content.Shared/Shuttles/Events/ShuttleConsoleFTLRequestMessage.cs +++ b/Content.Shared/Shuttles/Events/ShuttleConsoleFTLRequestMessage.cs @@ -8,5 +8,5 @@ namespace Content.Shared.Shuttles.Events; [Serializable, NetSerializable] public sealed class ShuttleConsoleFTLRequestMessage : BoundUserInterfaceMessage { - public EntityUid Destination; + public NetEntity Destination; } diff --git a/Content.Shared/Shuttles/Events/StopAutodockRequestMessage.cs b/Content.Shared/Shuttles/Events/StopAutodockRequestMessage.cs index 599c8b06e0a..e00e1553e23 100644 --- a/Content.Shared/Shuttles/Events/StopAutodockRequestMessage.cs +++ b/Content.Shared/Shuttles/Events/StopAutodockRequestMessage.cs @@ -8,5 +8,5 @@ namespace Content.Shared.Shuttles.Events; [Serializable, NetSerializable] public sealed class StopAutodockRequestMessage : BoundUserInterfaceMessage { - public EntityUid DockEntity; + public NetEntity DockEntity; } diff --git a/Content.Shared/Shuttles/Events/UndockRequestMessage.cs b/Content.Shared/Shuttles/Events/UndockRequestMessage.cs index b29bf36c047..533d3b79732 100644 --- a/Content.Shared/Shuttles/Events/UndockRequestMessage.cs +++ b/Content.Shared/Shuttles/Events/UndockRequestMessage.cs @@ -8,5 +8,5 @@ namespace Content.Shared.Shuttles.Events; [Serializable, NetSerializable] public sealed class UndockRequestMessage : BoundUserInterfaceMessage { - public EntityUid DockEntity; + public NetEntity DockEntity; } diff --git a/Content.Shared/Shuttles/Systems/SharedShuttleConsoleSystem.cs b/Content.Shared/Shuttles/Systems/SharedShuttleConsoleSystem.cs index 5b3949b6c28..f6224a8af6b 100644 --- a/Content.Shared/Shuttles/Systems/SharedShuttleConsoleSystem.cs +++ b/Content.Shared/Shuttles/Systems/SharedShuttleConsoleSystem.cs @@ -20,9 +20,9 @@ public override void Initialize() [Serializable, NetSerializable] protected sealed class PilotComponentState : ComponentState { - public EntityUid? Console { get; } + public NetEntity? Console { get; } - public PilotComponentState(EntityUid? uid) + public PilotComponentState(NetEntity? uid) { Console = uid; } diff --git a/Content.Shared/Silicons/Borgs/BorgUI.cs b/Content.Shared/Silicons/Borgs/BorgUI.cs index 601f9a21786..fd6abc89926 100644 --- a/Content.Shared/Silicons/Borgs/BorgUI.cs +++ b/Content.Shared/Silicons/Borgs/BorgUI.cs @@ -48,9 +48,9 @@ public BorgSetNameBuiMessage(string name) [Serializable, NetSerializable] public sealed class BorgRemoveModuleBuiMessage : BoundUserInterfaceMessage { - public EntityUid Module; + public NetEntity Module; - public BorgRemoveModuleBuiMessage(EntityUid module) + public BorgRemoveModuleBuiMessage(NetEntity module) { Module = module; } diff --git a/Content.Shared/Silicons/Borgs/Components/BorgBrainComponent.cs b/Content.Shared/Silicons/Borgs/Components/BorgBrainComponent.cs index 2ca62b64330..adbd57cab71 100644 --- a/Content.Shared/Silicons/Borgs/Components/BorgBrainComponent.cs +++ b/Content.Shared/Silicons/Borgs/Components/BorgBrainComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Silicons.Borgs.Components; /// that can be inserted into a borg to transfer a mind. /// [RegisterComponent, NetworkedComponent, Access(typeof(SharedBorgSystem))] -public sealed class BorgBrainComponent : Component +public sealed partial class BorgBrainComponent : Component { } diff --git a/Content.Shared/Silicons/Borgs/Components/BorgChassisComponent.cs b/Content.Shared/Silicons/Borgs/Components/BorgChassisComponent.cs index 36441b50ad2..71d3a7bd166 100644 --- a/Content.Shared/Silicons/Borgs/Components/BorgChassisComponent.cs +++ b/Content.Shared/Silicons/Borgs/Components/BorgChassisComponent.cs @@ -33,7 +33,7 @@ public sealed partial class BorgChassisComponent : Component public string BrainContainerId = "borg_brain"; [ViewVariables(VVAccess.ReadWrite)] - public ContainerSlot BrainContainer = new(); + public ContainerSlot BrainContainer = default!; public EntityUid? BrainEntity => BrainContainer.ContainedEntity; #endregion diff --git a/Content.Shared/Silicons/Borgs/Components/BorgModuleComponent.cs b/Content.Shared/Silicons/Borgs/Components/BorgModuleComponent.cs index f994f60e499..a7523c1ce70 100644 --- a/Content.Shared/Silicons/Borgs/Components/BorgModuleComponent.cs +++ b/Content.Shared/Silicons/Borgs/Components/BorgModuleComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Silicons.Borgs.Components; /// to give them unique abilities and attributes. /// [RegisterComponent, NetworkedComponent, Access(typeof(SharedBorgSystem))] -public sealed class BorgModuleComponent : Component +public sealed partial class BorgModuleComponent : Component { /// /// The entity this module is installed into diff --git a/Content.Shared/Silicons/Borgs/Components/ItemBorgModuleComponent.cs b/Content.Shared/Silicons/Borgs/Components/ItemBorgModuleComponent.cs index 28a34aa2eec..75835d0cf01 100644 --- a/Content.Shared/Silicons/Borgs/Components/ItemBorgModuleComponent.cs +++ b/Content.Shared/Silicons/Borgs/Components/ItemBorgModuleComponent.cs @@ -9,7 +9,7 @@ namespace Content.Shared.Silicons.Borgs.Components; /// This is used for a that provides items to the entity it's installed into. /// [RegisterComponent, NetworkedComponent, Access(typeof(SharedBorgSystem))] -public sealed class ItemBorgModuleComponent : Component +public sealed partial class ItemBorgModuleComponent : Component { /// /// The items that are provided. diff --git a/Content.Shared/Silicons/Borgs/Components/MMIComponent.cs b/Content.Shared/Silicons/Borgs/Components/MMIComponent.cs index 114353a5d07..3ded725efc7 100644 --- a/Content.Shared/Silicons/Borgs/Components/MMIComponent.cs +++ b/Content.Shared/Silicons/Borgs/Components/MMIComponent.cs @@ -10,7 +10,7 @@ namespace Content.Shared.Silicons.Borgs.Components; /// Used for borg stuff. /// [RegisterComponent, NetworkedComponent, Access(typeof(SharedBorgSystem))] -public sealed class MMIComponent : Component +public sealed partial class MMIComponent : Component { /// /// The ID of the itemslot that holds the brain. diff --git a/Content.Shared/Silicons/Borgs/Components/SelectableBorgModuleComponent.cs b/Content.Shared/Silicons/Borgs/Components/SelectableBorgModuleComponent.cs index e90f6bc1187..ee6dee3689f 100644 --- a/Content.Shared/Silicons/Borgs/Components/SelectableBorgModuleComponent.cs +++ b/Content.Shared/Silicons/Borgs/Components/SelectableBorgModuleComponent.cs @@ -1,6 +1,7 @@ using Content.Shared.Actions; -using Content.Shared.Actions.ActionTypes; using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Shared.Silicons.Borgs.Components; @@ -8,23 +9,18 @@ namespace Content.Shared.Silicons.Borgs.Components; /// This is used for s that can be "swapped" to, as opposed to having passive effects. /// [RegisterComponent, NetworkedComponent, Access(typeof(SharedBorgSystem))] -public sealed class SelectableBorgModuleComponent : Component +public sealed partial class SelectableBorgModuleComponent : Component { + [DataField("moduleSwapAction", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string? ModuleSwapActionId = "ActionBorgSwapModule"; + /// /// The sidebar action for swapping to this module. /// - [DataField("moduleSwapAction")] - public InstantAction ModuleSwapAction = new() - { - DisplayName = "action-name-swap-module", - Description = "action-desc-swap-module", - ItemIconStyle = ItemActionIconStyle.BigItem, - Event = new BorgModuleActionSelectedEvent(), - UseDelay = TimeSpan.FromSeconds(0.5f) - }; + [DataField("moduleSwapActionEntity")] public EntityUid? ModuleSwapActionEntity; } -public sealed class BorgModuleActionSelectedEvent : InstantActionEvent +public sealed partial class BorgModuleActionSelectedEvent : InstantActionEvent { } diff --git a/Content.Shared/Silicons/Bots/MedibotComponent.cs b/Content.Shared/Silicons/Bots/MedibotComponent.cs index b20674a23c5..74d074ffd85 100644 --- a/Content.Shared/Silicons/Bots/MedibotComponent.cs +++ b/Content.Shared/Silicons/Bots/MedibotComponent.cs @@ -10,7 +10,7 @@ namespace Content.Shared.Silicons.Bots; /// [RegisterComponent] [Access(typeof(MedibotSystem))] -public sealed class MedibotComponent : Component +public sealed partial class MedibotComponent : Component { /// /// Med the bot will inject when UNDER the standard med damage threshold. diff --git a/Content.Shared/Silicons/Laws/Components/EmagSiliconLawComponent.cs b/Content.Shared/Silicons/Laws/Components/EmagSiliconLawComponent.cs index 68f652b0290..c6238c067d4 100644 --- a/Content.Shared/Silicons/Laws/Components/EmagSiliconLawComponent.cs +++ b/Content.Shared/Silicons/Laws/Components/EmagSiliconLawComponent.cs @@ -1,6 +1,7 @@ using Content.Shared.Roles; using Robust.Shared.GameStates; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; namespace Content.Shared.Silicons.Laws.Components; @@ -8,7 +9,7 @@ namespace Content.Shared.Silicons.Laws.Components; /// This is used for an entity that grants a special "obey" law when emagge.d /// [RegisterComponent, NetworkedComponent, Access(typeof(SharedSiliconLawSystem))] -public sealed class EmagSiliconLawComponent : Component +public sealed partial class EmagSiliconLawComponent : Component { /// /// The name of the person who emagged this law provider. @@ -22,6 +23,18 @@ public sealed class EmagSiliconLawComponent : Component [DataField("requireOpenPanel"), ViewVariables(VVAccess.ReadWrite)] public bool RequireOpenPanel = true; + /// + /// The laws that the borg is given when emagged. + /// + [DataField("emagLaws", required: true, customTypeSerializer: typeof(PrototypeIdListSerializer))] + public List EmagLaws = new(); + + /// + /// How long the borg is stunned when it's emagged. Setting to 0 will disable it. + /// + [DataField("stunTime"), ViewVariables(VVAccess.ReadWrite)] + public TimeSpan StunTime = TimeSpan.Zero; + /// /// A role given to entities with this component when they are emagged. /// Mostly just for admin purposes. diff --git a/Content.Shared/Silicons/Laws/Components/SiliconLawBoundComponent.cs b/Content.Shared/Silicons/Laws/Components/SiliconLawBoundComponent.cs index 71760dd1365..955705ae8bc 100644 --- a/Content.Shared/Silicons/Laws/Components/SiliconLawBoundComponent.cs +++ b/Content.Shared/Silicons/Laws/Components/SiliconLawBoundComponent.cs @@ -1,5 +1,5 @@ -using Content.Shared.Actions; -using Content.Shared.Actions.ActionTypes; +using Content.Shared.Actions; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; @@ -9,19 +9,19 @@ namespace Content.Shared.Silicons.Laws.Components; /// This is used for entities which are bound to silicon laws and can view them. /// [RegisterComponent, Access(typeof(SharedSiliconLawSystem))] -public sealed class SiliconLawBoundComponent : Component +public sealed partial class SiliconLawBoundComponent : Component { /// /// The sidebar action that toggles the laws screen. /// - [DataField("viewLawsAction", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string ViewLawsAction = "ViewLaws"; + [DataField("viewLawsAction", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string ViewLawsAction = "ActionViewLaws"; /// /// The action for toggling laws. Stored here so we can remove it later. /// - [DataField("providedAction")] - public InstantAction? ProvidedAction; + [DataField("viewLawsActionEntity")] + public EntityUid? ViewLawsActionEntity; /// /// The last entity that provided laws to this entity. @@ -48,7 +48,7 @@ public record struct GetSiliconLawsEvent(EntityUid Entity) public bool Handled = false; } -public sealed class ToggleLawsScreenEvent : InstantActionEvent +public sealed partial class ToggleLawsScreenEvent : InstantActionEvent { } @@ -63,9 +63,11 @@ public enum SiliconLawsUiKey : byte public sealed class SiliconLawBuiState : BoundUserInterfaceState { public List Laws; + public HashSet? RadioChannels; - public SiliconLawBuiState(List laws) + public SiliconLawBuiState(List laws, HashSet? radioChannels) { Laws = laws; + RadioChannels = radioChannels; } } diff --git a/Content.Shared/Silicons/Laws/Components/SiliconLawProviderComponent.cs b/Content.Shared/Silicons/Laws/Components/SiliconLawProviderComponent.cs index 1411869636e..e3302dc620c 100644 --- a/Content.Shared/Silicons/Laws/Components/SiliconLawProviderComponent.cs +++ b/Content.Shared/Silicons/Laws/Components/SiliconLawProviderComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Silicons.Laws.Components; /// This is used for an entity which grants laws to a /// [RegisterComponent, Access(typeof(SharedSiliconLawSystem))] -public sealed class SiliconLawProviderComponent : Component +public sealed partial class SiliconLawProviderComponent : Component { /// /// The laws that are provided. diff --git a/Content.Shared/Silicons/Laws/SiliconLawPrototype.cs b/Content.Shared/Silicons/Laws/SiliconLawPrototype.cs index 07d5967b3fe..86bea20fa04 100644 --- a/Content.Shared/Silicons/Laws/SiliconLawPrototype.cs +++ b/Content.Shared/Silicons/Laws/SiliconLawPrototype.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Silicons.Laws; [Virtual, DataDefinition] [Serializable, NetSerializable] -public class SiliconLaw : IComparable +public partial class SiliconLaw : IComparable { /// /// A locale string which is the actual text of the law. @@ -49,7 +49,7 @@ public sealed class SiliconLawPrototype : SiliconLaw, IPrototype { /// [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; } diff --git a/Content.Shared/Singularity/Components/ContainmentFieldComponent.cs b/Content.Shared/Singularity/Components/ContainmentFieldComponent.cs index 9e2409e8903..43163a0c5cd 100644 --- a/Content.Shared/Singularity/Components/ContainmentFieldComponent.cs +++ b/Content.Shared/Singularity/Components/ContainmentFieldComponent.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Singularity.Components; [RegisterComponent, NetworkedComponent] -public sealed class ContainmentFieldComponent : Component +public sealed partial class ContainmentFieldComponent : Component { /// /// The throw force for the field if an entity collides with it diff --git a/Content.Shared/Singularity/Components/ContainmentFieldGeneratorComponent.cs b/Content.Shared/Singularity/Components/ContainmentFieldGeneratorComponent.cs index 0e2ba6da026..b8f5d1a1894 100644 --- a/Content.Shared/Singularity/Components/ContainmentFieldGeneratorComponent.cs +++ b/Content.Shared/Singularity/Components/ContainmentFieldGeneratorComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Singularity.Components; [RegisterComponent, NetworkedComponent] -public sealed class ContainmentFieldGeneratorComponent : Component +public sealed partial class ContainmentFieldGeneratorComponent : Component { private int _powerBuffer; diff --git a/Content.Shared/Singularity/Components/EventHorizonComponent.cs b/Content.Shared/Singularity/Components/EventHorizonComponent.cs index d0febda7892..890b2231173 100644 --- a/Content.Shared/Singularity/Components/EventHorizonComponent.cs +++ b/Content.Shared/Singularity/Components/EventHorizonComponent.cs @@ -11,7 +11,7 @@ namespace Content.Shared.Singularity.Components; /// [Access(friends: typeof(SharedEventHorizonSystem))] [RegisterComponent, NetworkedComponent] -public sealed class EventHorizonComponent : Component +public sealed partial class EventHorizonComponent : Component { /// /// The radius of the event horizon within which it will destroy all entities and tiles. diff --git a/Content.Shared/Singularity/Components/SharedEmitterComponent.cs b/Content.Shared/Singularity/Components/SharedEmitterComponent.cs index b27e9967fff..426b991a751 100644 --- a/Content.Shared/Singularity/Components/SharedEmitterComponent.cs +++ b/Content.Shared/Singularity/Components/SharedEmitterComponent.cs @@ -11,7 +11,7 @@ namespace Content.Shared.Singularity.Components; [RegisterComponent, NetworkedComponent] -public sealed class EmitterComponent : Component +public sealed partial class EmitterComponent : Component { public CancellationTokenSource? TimerCancel; diff --git a/Content.Shared/Singularity/Components/SingularityComponent.cs b/Content.Shared/Singularity/Components/SingularityComponent.cs index bef848b7d88..fe5cd0377f4 100644 --- a/Content.Shared/Singularity/Components/SingularityComponent.cs +++ b/Content.Shared/Singularity/Components/SingularityComponent.cs @@ -11,7 +11,7 @@ namespace Content.Shared.Singularity.Components; /// Energy management is server-side. /// [RegisterComponent, NetworkedComponent] -public sealed class SingularityComponent : Component +public sealed partial class SingularityComponent : Component { /// /// The current level of the singularity. diff --git a/Content.Shared/Singularity/EntitySystems/SharedEventHorizonSystem.cs b/Content.Shared/Singularity/EntitySystems/SharedEventHorizonSystem.cs index dcc83946a27..f31dd8776a4 100644 --- a/Content.Shared/Singularity/EntitySystems/SharedEventHorizonSystem.cs +++ b/Content.Shared/Singularity/EntitySystems/SharedEventHorizonSystem.cs @@ -158,24 +158,18 @@ public void UpdateEventHorizonFixture(EntityUid uid, FixturesComponent? fixtures return; // Update both fixtures the event horizon is associated with: - if (consumerId != null) + var consumer = _fixtures.GetFixtureOrNull(uid, consumerId, fixtures); + if (consumer != null) { - var consumer = _fixtures.GetFixtureOrNull(uid, consumerId, fixtures); - if (consumer != null) - { - _physics.SetRadius(uid, consumer, consumer.Shape, eventHorizon.Radius, fixtures); - _physics.SetHard(uid, consumer, false, fixtures); - } + _physics.SetRadius(uid, consumerId, consumer, consumer.Shape, eventHorizon.Radius, fixtures); + _physics.SetHard(uid, consumer, false, fixtures); } - if (colliderId != null) + var collider = _fixtures.GetFixtureOrNull(uid, colliderId, fixtures); + if (collider != null) { - var collider = _fixtures.GetFixtureOrNull(uid, colliderId, fixtures); - if (collider != null) - { - _physics.SetRadius(uid, collider, collider.Shape, eventHorizon.Radius, fixtures); - _physics.SetHard(uid, collider, true, fixtures); - } + _physics.SetRadius(uid, colliderId, collider, collider.Shape, eventHorizon.Radius, fixtures); + _physics.SetHard(uid, collider, true, fixtures); } EntityManager.Dirty(uid, fixtures); @@ -225,7 +219,7 @@ protected virtual bool PreventCollide(EntityUid uid, EventHorizonComponent comp, // For prediction reasons always want the client to ignore these. if (HasComp(otherUid) || - HasComp(otherUid)) + HasComp(otherUid)) { args.Cancelled = true; return true; diff --git a/Content.Shared/Singularity/EntitySystems/SharedSingularitySystem.cs b/Content.Shared/Singularity/EntitySystems/SharedSingularitySystem.cs index 676987b0175..56be197e1df 100644 --- a/Content.Shared/Singularity/EntitySystems/SharedSingularitySystem.cs +++ b/Content.Shared/Singularity/EntitySystems/SharedSingularitySystem.cs @@ -354,7 +354,6 @@ private void UpdateDistortion(EntityUid uid, SingularityDistortionComponent comp /// The event arguments. private void UpdateBody(EntityUid uid, PhysicsComponent comp, SingularityLevelChangedEvent args) { - _physics.SetBodyStatus(comp, (args.NewValue > 1) ? BodyStatus.InAir : BodyStatus.OnGround); if (args.NewValue <= 1 && args.OldValue > 1) // Apparently keeps singularities from getting stuck in the corners of containment fields. _physics.SetLinearVelocity(uid, Vector2.Zero, body: comp); // No idea how stopping the singularities movement keeps it from getting stuck though. } diff --git a/Content.Shared/Slippery/NoSlipComponent.cs b/Content.Shared/Slippery/NoSlipComponent.cs index 1003c1deaba..186861a5a93 100644 --- a/Content.Shared/Slippery/NoSlipComponent.cs +++ b/Content.Shared/Slippery/NoSlipComponent.cs @@ -1,7 +1,7 @@ namespace Content.Shared.Slippery { [RegisterComponent] - public sealed class NoSlipComponent : Component + public sealed partial class NoSlipComponent : Component { } } diff --git a/Content.Shared/Slippery/SlipperyComponent.cs b/Content.Shared/Slippery/SlipperyComponent.cs index 1bf8fde3bfd..ff395176ed0 100644 --- a/Content.Shared/Slippery/SlipperyComponent.cs +++ b/Content.Shared/Slippery/SlipperyComponent.cs @@ -13,7 +13,7 @@ namespace Content.Shared.Slippery /// [RegisterComponent] [NetworkedComponent] - public sealed class SlipperyComponent : Component + public sealed partial class SlipperyComponent : Component { /// /// Path to the sound to be played when a mob slips. diff --git a/Content.Shared/Sound/Components/BaseEmitSoundComponent.cs b/Content.Shared/Sound/Components/BaseEmitSoundComponent.cs index 27a2a67b88d..f9976219079 100644 --- a/Content.Shared/Sound/Components/BaseEmitSoundComponent.cs +++ b/Content.Shared/Sound/Components/BaseEmitSoundComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Sound.Components /// Base sound emitter which defines most of the data fields. /// Accepts both single sounds and sound collections. /// - public abstract class BaseEmitSoundComponent : Component + public abstract partial class BaseEmitSoundComponent : Component { public static readonly AudioParams DefaultParams = AudioParams.Default.WithVolume(-2f); diff --git a/Content.Shared/Sound/Components/EmitSoundOnActivateComponent.cs b/Content.Shared/Sound/Components/EmitSoundOnActivateComponent.cs index 5b5330a6d3c..810f132d831 100644 --- a/Content.Shared/Sound/Components/EmitSoundOnActivateComponent.cs +++ b/Content.Shared/Sound/Components/EmitSoundOnActivateComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Sound.Components; /// Simple sound emitter that emits sound on ActivateInWorld /// [RegisterComponent, NetworkedComponent] -public sealed class EmitSoundOnActivateComponent : BaseEmitSoundComponent +public sealed partial class EmitSoundOnActivateComponent : BaseEmitSoundComponent { /// /// Whether or not to mark an interaction as handled after playing the sound. Useful if this component is diff --git a/Content.Shared/Sound/Components/EmitSoundOnCollideComponent.cs b/Content.Shared/Sound/Components/EmitSoundOnCollideComponent.cs index cc9896d4da2..f2c71ad120d 100644 --- a/Content.Shared/Sound/Components/EmitSoundOnCollideComponent.cs +++ b/Content.Shared/Sound/Components/EmitSoundOnCollideComponent.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Sound.Components; [RegisterComponent, NetworkedComponent] -public sealed class EmitSoundOnCollideComponent : BaseEmitSoundComponent +public sealed partial class EmitSoundOnCollideComponent : BaseEmitSoundComponent { public static readonly TimeSpan CollideCooldown = TimeSpan.FromSeconds(0.2); diff --git a/Content.Shared/Sound/Components/EmitSoundOnDropComponent.cs b/Content.Shared/Sound/Components/EmitSoundOnDropComponent.cs index d3c4206e916..5e04295607a 100644 --- a/Content.Shared/Sound/Components/EmitSoundOnDropComponent.cs +++ b/Content.Shared/Sound/Components/EmitSoundOnDropComponent.cs @@ -6,6 +6,6 @@ namespace Content.Shared.Sound.Components; /// Simple sound emitter that emits sound on entity drop /// [RegisterComponent, NetworkedComponent] -public sealed class EmitSoundOnDropComponent : BaseEmitSoundComponent +public sealed partial class EmitSoundOnDropComponent : BaseEmitSoundComponent { } diff --git a/Content.Shared/Sound/Components/EmitSoundOnLandComponent.cs b/Content.Shared/Sound/Components/EmitSoundOnLandComponent.cs index 5bf3416bbef..2d33a7f5f2c 100644 --- a/Content.Shared/Sound/Components/EmitSoundOnLandComponent.cs +++ b/Content.Shared/Sound/Components/EmitSoundOnLandComponent.cs @@ -6,6 +6,6 @@ namespace Content.Shared.Sound.Components; /// Simple sound emitter that emits sound on LandEvent /// [RegisterComponent, NetworkedComponent] -public sealed class EmitSoundOnLandComponent : BaseEmitSoundComponent +public sealed partial class EmitSoundOnLandComponent : BaseEmitSoundComponent { } diff --git a/Content.Shared/Sound/Components/EmitSoundOnPickupComponent.cs b/Content.Shared/Sound/Components/EmitSoundOnPickupComponent.cs index 2b9cd96d055..ee4b4b16886 100644 --- a/Content.Shared/Sound/Components/EmitSoundOnPickupComponent.cs +++ b/Content.Shared/Sound/Components/EmitSoundOnPickupComponent.cs @@ -6,6 +6,6 @@ namespace Content.Shared.Sound.Components; /// Simple sound emitter that emits sound on entity pickup /// [RegisterComponent, NetworkedComponent] -public sealed class EmitSoundOnPickupComponent : BaseEmitSoundComponent +public sealed partial class EmitSoundOnPickupComponent : BaseEmitSoundComponent { } diff --git a/Content.Shared/Sound/Components/EmitSoundOnSpawnComponent.cs b/Content.Shared/Sound/Components/EmitSoundOnSpawnComponent.cs index 3d7a11f6eff..49d40ce185a 100644 --- a/Content.Shared/Sound/Components/EmitSoundOnSpawnComponent.cs +++ b/Content.Shared/Sound/Components/EmitSoundOnSpawnComponent.cs @@ -6,6 +6,6 @@ namespace Content.Shared.Sound.Components; /// Simple sound emitter that emits sound on entity spawn. /// [RegisterComponent, NetworkedComponent] -public sealed class EmitSoundOnSpawnComponent : BaseEmitSoundComponent +public sealed partial class EmitSoundOnSpawnComponent : BaseEmitSoundComponent { } diff --git a/Content.Shared/Sound/Components/EmitSoundOnThrowComponent.cs b/Content.Shared/Sound/Components/EmitSoundOnThrowComponent.cs index 0b76e3305ed..5e3650a4a3c 100644 --- a/Content.Shared/Sound/Components/EmitSoundOnThrowComponent.cs +++ b/Content.Shared/Sound/Components/EmitSoundOnThrowComponent.cs @@ -6,6 +6,6 @@ namespace Content.Shared.Sound.Components; /// Simple sound emitter that emits sound on ThrowEvent /// [RegisterComponent, NetworkedComponent] -public sealed class EmitSoundOnThrowComponent : BaseEmitSoundComponent +public sealed partial class EmitSoundOnThrowComponent : BaseEmitSoundComponent { } diff --git a/Content.Shared/Sound/Components/EmitSoundOnUseComponent.cs b/Content.Shared/Sound/Components/EmitSoundOnUseComponent.cs index 5bb95a5c11f..a99a01cec42 100644 --- a/Content.Shared/Sound/Components/EmitSoundOnUseComponent.cs +++ b/Content.Shared/Sound/Components/EmitSoundOnUseComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Sound.Components; /// Simple sound emitter that emits sound on UseInHand /// [RegisterComponent] -public sealed class EmitSoundOnUseComponent : BaseEmitSoundComponent +public sealed partial class EmitSoundOnUseComponent : BaseEmitSoundComponent { /// /// Whether or not to mark an interaction as handled after playing the sound. Useful if this component is diff --git a/Content.Shared/Spawners/Components/TimedDespawnComponent.cs b/Content.Shared/Spawners/Components/TimedDespawnComponent.cs index 6a851e1756f..209e371c469 100644 --- a/Content.Shared/Spawners/Components/TimedDespawnComponent.cs +++ b/Content.Shared/Spawners/Components/TimedDespawnComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Spawners.Components; /// Put this component on something you would like to despawn after a certain amount of time /// [RegisterComponent, NetworkedComponent] -public sealed class TimedDespawnComponent : Component +public sealed partial class TimedDespawnComponent : Component { /// /// How long the entity will exist before despawning diff --git a/Content.Shared/Speech/Components/MeleeSpeechComponent.cs b/Content.Shared/Speech/Components/MeleeSpeechComponent.cs index 060d44974da..c457fec43f8 100644 --- a/Content.Shared/Speech/Components/MeleeSpeechComponent.cs +++ b/Content.Shared/Speech/Components/MeleeSpeechComponent.cs @@ -1,25 +1,43 @@ -using Content.Shared.Speech.EntitySystems; +using Content.Shared.Actions; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Shared.Speech.Components; -[RegisterComponent] +[RegisterComponent, NetworkedComponent] [AutoGenerateComponentState] + public sealed partial class MeleeSpeechComponent : Component { + /// + /// The battlecry to be said when an entity attacks with this component + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("Battlecry")] + [AutoNetworkedField] + public string? Battlecry; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("Battlecry")] - [AutoNetworkedField] - public string? Battlecry; - + /// + /// The maximum amount of characters allowed in a battlecry + /// [ViewVariables(VVAccess.ReadWrite)] [DataField("MaxBattlecryLength")] + [AutoNetworkedField] public int MaxBattlecryLength = 12; + + [DataField("configureAction", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string? ConfigureAction = "ActionConfigureMeleeSpeech"; + + /// + /// The action to open the battlecry UI + /// + [DataField("configureActionEntity")] public EntityUid? ConfigureActionEntity; } /// -/// Key representing which is currently open. +/// Key representing which is currently open. /// Useful when there are multiple UI for an object. Here it's future-proofing only. /// [Serializable, NetSerializable] @@ -35,7 +53,6 @@ public enum MeleeSpeechUiKey : byte public sealed class MeleeSpeechBoundUserInterfaceState : BoundUserInterfaceState { public string CurrentBattlecry { get; } - public MeleeSpeechBoundUserInterfaceState(string currentBattlecry) { CurrentBattlecry = currentBattlecry; @@ -51,3 +68,5 @@ public MeleeSpeechBattlecryChangedMessage(string battlecry) Battlecry = battlecry; } } + +public sealed partial class MeleeSpeechConfigureActionEvent : InstantActionEvent { } diff --git a/Content.Shared/Speech/Components/RatvarianLanguageComponent.cs b/Content.Shared/Speech/Components/RatvarianLanguageComponent.cs index 161abd760ed..36739b28a61 100644 --- a/Content.Shared/Speech/Components/RatvarianLanguageComponent.cs +++ b/Content.Shared/Speech/Components/RatvarianLanguageComponent.cs @@ -2,7 +2,7 @@ namespace Content.Shared.Speech.Components; [RegisterComponent, NetworkedComponent] -public sealed class RatvarianLanguageComponent : Component +public sealed partial class RatvarianLanguageComponent : Component { } diff --git a/Content.Shared/Speech/ScreamActionEvent.cs b/Content.Shared/Speech/ScreamActionEvent.cs new file mode 100644 index 00000000000..756f65a35dd --- /dev/null +++ b/Content.Shared/Speech/ScreamActionEvent.cs @@ -0,0 +1,7 @@ +using Content.Shared.Actions; + +namespace Content.Shared.Speech; + +public sealed partial class ScreamActionEvent : InstantActionEvent +{ +} diff --git a/Content.Shared/Speech/SpeechComponent.cs b/Content.Shared/Speech/SpeechComponent.cs index bb5b13f66cd..f5ef0e0d678 100644 --- a/Content.Shared/Speech/SpeechComponent.cs +++ b/Content.Shared/Speech/SpeechComponent.cs @@ -11,7 +11,7 @@ namespace Content.Shared.Speech /// Contains the option to let entities make noise when speaking, change speech verbs, datafields for the sounds in question, and relevant AudioParams. /// [RegisterComponent, NetworkedComponent] - public sealed class SpeechComponent : Component + public sealed partial class SpeechComponent : Component { [DataField("enabled"), Access(typeof(SpeechSystem), Friend = AccessPermissions.ReadWrite, @@ -39,6 +39,8 @@ public sealed class SpeechComponent : Component { "chat-speech-verb-suffix-exclamation-strong", "DefaultExclamationStrong" }, { "chat-speech-verb-suffix-exclamation", "DefaultExclamation" }, { "chat-speech-verb-suffix-question", "DefaultQuestion" }, + { "chat-speech-verb-suffix-stutter", "DefaultStutter" }, + { "chat-speech-verb-suffix-mumble", "DefaultMumble" }, }; [DataField("audioParams")] diff --git a/Content.Shared/Speech/SpeechSoundsPrototype.cs b/Content.Shared/Speech/SpeechSoundsPrototype.cs index cd2cbcb1774..4103e4dcb68 100644 --- a/Content.Shared/Speech/SpeechSoundsPrototype.cs +++ b/Content.Shared/Speech/SpeechSoundsPrototype.cs @@ -8,7 +8,7 @@ public sealed class SpeechSoundsPrototype : IPrototype { [ViewVariables] [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; //Variation is here instead of in SharedSpeechComponent since some sets of //sounds may require more fine tuned pitch variation than others. diff --git a/Content.Shared/Spider/IgnoreSpiderWebComponent.cs b/Content.Shared/Spider/IgnoreSpiderWebComponent.cs index 8b412df690e..55eb1aa50f0 100644 --- a/Content.Shared/Spider/IgnoreSpiderWebComponent.cs +++ b/Content.Shared/Spider/IgnoreSpiderWebComponent.cs @@ -1,7 +1,7 @@ namespace Content.Shared.Spider; [RegisterComponent] -public sealed class IgnoreSpiderWebComponent : Component +public sealed partial class IgnoreSpiderWebComponent : Component { } diff --git a/Content.Shared/Spider/SharedSpiderSystem.cs b/Content.Shared/Spider/SharedSpiderSystem.cs index b64f980c34c..f6ee5711e74 100644 --- a/Content.Shared/Spider/SharedSpiderSystem.cs +++ b/Content.Shared/Spider/SharedSpiderSystem.cs @@ -1,8 +1,5 @@ -using System.Linq; -using Content.Shared.Spider; using Content.Shared.Actions; -using Content.Shared.Actions.ActionTypes; -using Robust.Shared.Prototypes; +using Robust.Shared.Network; using Robust.Shared.Random; namespace Content.Shared.Spider; @@ -10,7 +7,7 @@ namespace Content.Shared.Spider; public abstract class SharedSpiderSystem : EntitySystem { [Dependency] private readonly SharedActionsSystem _action = default!; - [Dependency] private readonly IPrototypeManager _proto = default!; + [Dependency] private readonly INetManager _net = default!; [Dependency] private readonly IRobustRandom _robustRandom = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; @@ -18,14 +15,16 @@ public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnWebStartup); SubscribeLocalEvent(OnSpiderStartup); + SubscribeLocalEvent(OnWebStartup); } private void OnSpiderStartup(EntityUid uid, SpiderComponent component, ComponentStartup args) { - var netAction = new InstantAction(_proto.Index(component.WebActionName)); - _action.AddAction(uid, netAction, null); + if (_net.IsClient) + return; + + _action.AddAction(uid, Spawn(component.WebAction), null); } private void OnWebStartup(EntityUid uid, SpiderWebObjectComponent component, ComponentStartup args) diff --git a/Content.Shared/Spider/SpiderComponent.cs b/Content.Shared/Spider/SpiderComponent.cs index a5b57317110..8d1a4772e27 100644 --- a/Content.Shared/Spider/SpiderComponent.cs +++ b/Content.Shared/Spider/SpiderComponent.cs @@ -1,22 +1,21 @@ using Content.Shared.Actions; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Shared.Spider; [RegisterComponent, NetworkedComponent] [Access(typeof(SharedSpiderSystem))] -public sealed class SpiderComponent : Component +public sealed partial class SpiderComponent : Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("webPrototype", customTypeSerializer: typeof(PrototypeIdSerializer))] public string WebPrototype = "SpiderWeb"; [ViewVariables(VVAccess.ReadWrite)] - [DataField("webActionName")] - public string WebActionName = "SpiderWebAction"; + [DataField("webAction", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string WebAction = "ActionSpiderWeb"; } -public sealed class SpiderWebActionEvent : InstantActionEvent { } +public sealed partial class SpiderWebActionEvent : InstantActionEvent { } diff --git a/Content.Shared/Spider/SpiderWebObjectComponent.cs b/Content.Shared/Spider/SpiderWebObjectComponent.cs index ad9f5b9f39f..3f05888083d 100644 --- a/Content.Shared/Spider/SpiderWebObjectComponent.cs +++ b/Content.Shared/Spider/SpiderWebObjectComponent.cs @@ -4,6 +4,6 @@ namespace Content.Shared.Spider; [RegisterComponent, NetworkedComponent] [Access(typeof(SharedSpiderSystem))] -public sealed class SpiderWebObjectComponent : Component +public sealed partial class SpiderWebObjectComponent : Component { } diff --git a/Content.Shared/Spillable/SpillDoAfterEvent.cs b/Content.Shared/Spillable/SpillDoAfterEvent.cs index 8a24935cf62..ff01801617d 100644 --- a/Content.Shared/Spillable/SpillDoAfterEvent.cs +++ b/Content.Shared/Spillable/SpillDoAfterEvent.cs @@ -4,6 +4,6 @@ namespace Content.Shared.Spillable; [Serializable, NetSerializable] -public sealed class SpillDoAfterEvent : SimpleDoAfterEvent +public sealed partial class SpillDoAfterEvent : SimpleDoAfterEvent { -} \ No newline at end of file +} diff --git a/Content.Shared/SprayPainter/Components/PaintableAirlockComponent.cs b/Content.Shared/SprayPainter/Components/PaintableAirlockComponent.cs index 78707a40909..10fd72434e6 100644 --- a/Content.Shared/SprayPainter/Components/PaintableAirlockComponent.cs +++ b/Content.Shared/SprayPainter/Components/PaintableAirlockComponent.cs @@ -4,7 +4,7 @@ namespace Content.Server.SprayPainter; [RegisterComponent] -public sealed class PaintableAirlockComponent : Component +public sealed partial class PaintableAirlockComponent : Component { [DataField("group", customTypeSerializer:typeof(PrototypeIdSerializer))] public string Group = default!; diff --git a/Content.Shared/SprayPainter/Prototypes/AirlockGroupPrototype.cs b/Content.Shared/SprayPainter/Prototypes/AirlockGroupPrototype.cs index 81691ae83fd..06cde83f905 100644 --- a/Content.Shared/SprayPainter/Prototypes/AirlockGroupPrototype.cs +++ b/Content.Shared/SprayPainter/Prototypes/AirlockGroupPrototype.cs @@ -6,7 +6,7 @@ namespace Content.Shared.SprayPainter.Prototypes; public sealed class AirlockGroupPrototype : IPrototype { [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [DataField("stylePaths")] public Dictionary StylePaths = default!; diff --git a/Content.Shared/SprayPainter/SprayPainterEvents.cs b/Content.Shared/SprayPainter/SprayPainterEvents.cs index 3c2c9b95aec..f0e02086104 100644 --- a/Content.Shared/SprayPainter/SprayPainterEvents.cs +++ b/Content.Shared/SprayPainter/SprayPainterEvents.cs @@ -47,13 +47,13 @@ public SprayPainterBoundUserInterfaceState(int selectedStyle, string? selectedCo } [Serializable, NetSerializable] -public sealed class SprayPainterDoAfterEvent : DoAfterEvent +public sealed partial class SprayPainterDoAfterEvent : DoAfterEvent { [DataField("sprite")] - public readonly string? Sprite = null; + public string? Sprite = null; [DataField("color")] - public readonly Color? Color = null; + public Color? Color = null; private SprayPainterDoAfterEvent() { diff --git a/Content.Shared/Sprite/RandomSpriteComponent.cs b/Content.Shared/Sprite/RandomSpriteComponent.cs index 568ab6101c3..4082771e930 100644 --- a/Content.Shared/Sprite/RandomSpriteComponent.cs +++ b/Content.Shared/Sprite/RandomSpriteComponent.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Sprite; [RegisterComponent, NetworkedComponent] -public sealed class RandomSpriteComponent : Component +public sealed partial class RandomSpriteComponent : Component { /// /// Whether or not all groups from are used, diff --git a/Content.Shared/Sprite/SpriteFadeComponent.cs b/Content.Shared/Sprite/SpriteFadeComponent.cs index 3e390b4c1fb..952b754f907 100644 --- a/Content.Shared/Sprite/SpriteFadeComponent.cs +++ b/Content.Shared/Sprite/SpriteFadeComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Sprite; /// If your client entity is behind this then the sprite's alpha will be lowered so your entity remains visible. /// [RegisterComponent, NetworkedComponent] -public sealed class SpriteFadeComponent : Component +public sealed partial class SpriteFadeComponent : Component { } diff --git a/Content.Shared/Stacks/SharedStackSystem.cs b/Content.Shared/Stacks/SharedStackSystem.cs index c5cd70ced0e..5e25c207016 100644 --- a/Content.Shared/Stacks/SharedStackSystem.cs +++ b/Content.Shared/Stacks/SharedStackSystem.cs @@ -336,6 +336,10 @@ public bool TryAdd(EntityUid insertEnt, EntityUid targetEnt, int count, StackCom 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; diff --git a/Content.Shared/Stacks/StackComponent.cs b/Content.Shared/Stacks/StackComponent.cs index 29f81fde025..7137f8c0c22 100644 --- a/Content.Shared/Stacks/StackComponent.cs +++ b/Content.Shared/Stacks/StackComponent.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Stacks { [RegisterComponent, NetworkedComponent] - public sealed class StackComponent : Component + public sealed partial class StackComponent : Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("stackType", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] diff --git a/Content.Shared/Stacks/StackPrototype.cs b/Content.Shared/Stacks/StackPrototype.cs index 1f963e0db14..5d60364e209 100644 --- a/Content.Shared/Stacks/StackPrototype.cs +++ b/Content.Shared/Stacks/StackPrototype.cs @@ -9,26 +9,26 @@ public sealed class StackPrototype : IPrototype { [ViewVariables] [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// /// Human-readable name for this stack type e.g. "Steel" /// /// This is a localization string ID. [DataField("name")] - public string Name { get; } = string.Empty; + public string Name { get; private set; } = string.Empty; /// /// An icon that will be used to represent this stack type. /// [DataField("icon")] - public SpriteSpecifier? Icon { get; } + public SpriteSpecifier? Icon { get; private set; } /// /// The entity id that will be spawned by default from this stack. /// [DataField("spawn", required: true, customTypeSerializer:typeof(PrototypeIdSerializer))] - public string Spawn { get; } = string.Empty; + public string Spawn { get; private set; } = string.Empty; /// /// The maximum amount of things that can be in a stack. @@ -36,7 +36,7 @@ public sealed class StackPrototype : IPrototype /// if null, simply has unlimited max count. /// [DataField("maxCount")] - public int? MaxCount { get; } + public int? MaxCount { get; private set; } /// /// The size of an individual unit of this stack. diff --git a/Content.Shared/Standing/StandingStateComponent.cs b/Content.Shared/Standing/StandingStateComponent.cs index da343645b04..583839fa105 100644 --- a/Content.Shared/Standing/StandingStateComponent.cs +++ b/Content.Shared/Standing/StandingStateComponent.cs @@ -5,11 +5,11 @@ namespace Content.Shared.Standing { [Access(typeof(StandingStateSystem))] [RegisterComponent, NetworkedComponent] - public sealed class StandingStateComponent : Component + public sealed partial class StandingStateComponent : Component { [ViewVariables(VVAccess.ReadWrite)] [DataField("downSound")] - public SoundSpecifier DownSound { get; } = new SoundCollectionSpecifier("BodyFall"); + public SoundSpecifier DownSound { get; private set; } = new SoundCollectionSpecifier("BodyFall"); [DataField("standing")] public bool Standing { get; set; } = true; diff --git a/Content.Shared/Standing/StandingStateSystem.cs b/Content.Shared/Standing/StandingStateSystem.cs index b09be24aba1..2716ed02df2 100644 --- a/Content.Shared/Standing/StandingStateSystem.cs +++ b/Content.Shared/Standing/StandingStateSystem.cs @@ -92,7 +92,7 @@ public bool Down(EntityUid uid, bool playSound = true, bool dropHeldItems = true continue; standingState.ChangedFixtures.Add(key); - _physics.SetCollisionMask(uid, fixture, fixture.CollisionMask & ~StandingCollisionLayer, manager: fixtureComponent); + _physics.SetCollisionMask(uid, key, fixture, fixture.CollisionMask & ~StandingCollisionLayer, manager: fixtureComponent); } } @@ -134,7 +134,7 @@ public bool Stand(EntityUid uid, } standingState.Standing = true; - Dirty(standingState); + Dirty(uid, standingState); RaiseLocalEvent(uid, new StoodEvent(), false); _appearance.SetData(uid, RotationVisuals.RotationState, RotationState.Vertical, appearance); @@ -144,7 +144,7 @@ public bool Stand(EntityUid uid, foreach (var key in standingState.ChangedFixtures) { if (fixtureComponent.Fixtures.TryGetValue(key, out var fixture)) - _physics.SetCollisionMask(uid, fixture, fixture.CollisionMask | StandingCollisionLayer, fixtureComponent); + _physics.SetCollisionMask(uid, key, fixture, fixture.CollisionMask | StandingCollisionLayer, fixtureComponent); } } standingState.ChangedFixtures.Clear(); diff --git a/Content.Shared/Station/StationsUpdatedEvent.cs b/Content.Shared/Station/StationsUpdatedEvent.cs index 6e35630bbeb..ff782b76503 100644 --- a/Content.Shared/Station/StationsUpdatedEvent.cs +++ b/Content.Shared/Station/StationsUpdatedEvent.cs @@ -5,9 +5,9 @@ namespace Content.Shared.Station; [NetSerializable, Serializable] public sealed class StationsUpdatedEvent : EntityEventArgs { - public readonly HashSet Stations; + public readonly HashSet Stations; - public StationsUpdatedEvent(HashSet stations) + public StationsUpdatedEvent(HashSet stations) { Stations = stations; } diff --git a/Content.Shared/StationRecords/SharedGeneralStationRecordConsoleSystem.cs b/Content.Shared/StationRecords/SharedGeneralStationRecordConsoleSystem.cs index 01063401031..f04ed85a8f0 100644 --- a/Content.Shared/StationRecords/SharedGeneralStationRecordConsoleSystem.cs +++ b/Content.Shared/StationRecords/SharedGeneralStationRecordConsoleSystem.cs @@ -33,12 +33,12 @@ public sealed class GeneralStationRecordConsoleState : BoundUserInterfaceState /// /// Current selected key. /// - public StationRecordKey? SelectedKey { get; } + public (NetEntity, uint)? SelectedKey { get; } public GeneralStationRecord? Record { get; } - public Dictionary? RecordListing { get; } + public Dictionary<(NetEntity, uint), string>? RecordListing { get; } public GeneralStationRecordsFilter? Filter { get; } - public GeneralStationRecordConsoleState(StationRecordKey? key, GeneralStationRecord? record, - Dictionary? recordListing, GeneralStationRecordsFilter? newFilter, IReadOnlyDictionary? jobList) + public GeneralStationRecordConsoleState((NetEntity, uint)? key, GeneralStationRecord? record, + Dictionary<(NetEntity, uint), string>? recordListing, GeneralStationRecordsFilter? newFilter, IReadOnlyDictionary? jobList) { SelectedKey = key; Record = record; @@ -55,9 +55,9 @@ public bool IsEmpty() => SelectedKey == null [Serializable, NetSerializable] public sealed class SelectGeneralStationRecord : BoundUserInterfaceMessage { - public StationRecordKey? SelectedKey { get; } + public (NetEntity, uint)? SelectedKey { get; } - public SelectGeneralStationRecord(StationRecordKey? selectedKey) + public SelectGeneralStationRecord((NetEntity, uint)? selectedKey) { SelectedKey = selectedKey; } diff --git a/Content.Shared/StationRecords/SharedStationRecordsSystem.cs b/Content.Shared/StationRecords/SharedStationRecordsSystem.cs new file mode 100644 index 00000000000..c2cc418f547 --- /dev/null +++ b/Content.Shared/StationRecords/SharedStationRecordsSystem.cs @@ -0,0 +1,43 @@ +namespace Content.Shared.StationRecords; + +public abstract class SharedStationRecordsSystem : EntitySystem +{ + public StationRecordKey? Convert((NetEntity, uint)? input) + { + return input == null ? null : Convert(input.Value); + } + + public (NetEntity, uint)? Convert(StationRecordKey? input) + { + return input == null ? null : Convert(input.Value); + } + + public StationRecordKey Convert((NetEntity, uint) input) + { + return new StationRecordKey(input.Item2, GetEntity(input.Item1)); + } + public (NetEntity, uint) Convert(StationRecordKey input) + { + return (GetNetEntity(input.OriginStation), input.Id); + } + + public List<(NetEntity, uint)> Convert(ICollection input) + { + var result = new List<(NetEntity, uint)>(input.Count); + foreach (var entry in input) + { + result.Add(Convert(entry)); + } + return result; + } + + public List Convert(ICollection<(NetEntity, uint)> input) + { + var result = new List(input.Count); + foreach (var entry in input) + { + result.Add(Convert(entry)); + } + return result; + } +} diff --git a/Content.Shared/StationRecords/StationRecordKey.cs b/Content.Shared/StationRecords/StationRecordKey.cs index d52ba4743ce..937c3aa3ef1 100644 --- a/Content.Shared/StationRecords/StationRecordKey.cs +++ b/Content.Shared/StationRecords/StationRecordKey.cs @@ -1,21 +1,37 @@ -using Robust.Shared.Serialization; - namespace Content.Shared.StationRecords; // Station record keys. These should be stored somewhere, // preferably within an ID card. -[Serializable, NetSerializable] -public readonly struct StationRecordKey +public readonly struct StationRecordKey : IEquatable { - [ViewVariables] - public uint ID { get; } + [DataField("id")] + public readonly uint Id; + + [DataField("station")] + public readonly EntityUid OriginStation; - [ViewVariables] - public EntityUid OriginStation { get; } + public static StationRecordKey Invalid = default; public StationRecordKey(uint id, EntityUid originStation) { - ID = id; + Id = id; OriginStation = originStation; } + + public bool Equals(StationRecordKey other) + { + return Id == other.Id && OriginStation.Id == other.OriginStation.Id; + } + + public override bool Equals(object? obj) + { + return obj is StationRecordKey other && Equals(other); + } + + public override int GetHashCode() + { + return HashCode.Combine(Id, OriginStation); + } + + public bool IsValid() => OriginStation.IsValid(); } diff --git a/Content.Shared/StationRecords/StationRecordKeyStorageComponent.cs b/Content.Shared/StationRecords/StationRecordKeyStorageComponent.cs index 87f789364ac..6509c223b65 100644 --- a/Content.Shared/StationRecords/StationRecordKeyStorageComponent.cs +++ b/Content.Shared/StationRecords/StationRecordKeyStorageComponent.cs @@ -4,7 +4,7 @@ namespace Content.Shared.StationRecords; [RegisterComponent, NetworkedComponent] -public sealed class StationRecordKeyStorageComponent : Component +public sealed partial class StationRecordKeyStorageComponent : Component { /// /// The key stored in this component. @@ -16,9 +16,9 @@ public sealed class StationRecordKeyStorageComponent : Component [Serializable, NetSerializable] public sealed class StationRecordKeyStorageComponentState : ComponentState { - public StationRecordKey? Key; + public (NetEntity, uint)? Key; - public StationRecordKeyStorageComponentState(StationRecordKey? key) + public StationRecordKeyStorageComponentState((NetEntity, uint)? key) { Key = key; } diff --git a/Content.Shared/StationRecords/StationRecordKeyStorageSystem.cs b/Content.Shared/StationRecords/StationRecordKeyStorageSystem.cs index 94eda02c5fb..05af0807f21 100644 --- a/Content.Shared/StationRecords/StationRecordKeyStorageSystem.cs +++ b/Content.Shared/StationRecords/StationRecordKeyStorageSystem.cs @@ -4,6 +4,8 @@ namespace Content.Shared.StationRecords; public sealed class StationRecordKeyStorageSystem : EntitySystem { + [Dependency] private readonly SharedStationRecordsSystem _records = default!; + public override void Initialize() { base.Initialize(); @@ -14,14 +16,14 @@ public override void Initialize() private void OnGetState(EntityUid uid, StationRecordKeyStorageComponent component, ref ComponentGetState args) { - args.State = new StationRecordKeyStorageComponentState(component.Key); + args.State = new StationRecordKeyStorageComponentState(_records.Convert(component.Key)); } private void OnHandleState(EntityUid uid, StationRecordKeyStorageComponent component, ref ComponentHandleState args) { if (args.Current is not StationRecordKeyStorageComponentState state) return; - component.Key = state.Key; + component.Key = _records.Convert(state.Key); } /// @@ -38,7 +40,7 @@ public void AssignKey(EntityUid uid, StationRecordKey key, StationRecordKeyStora } keyStorage.Key = key; - Dirty(keyStorage); + Dirty(uid, keyStorage); } /// diff --git a/Content.Shared/StatusEffect/StatusEffectPrototype.cs b/Content.Shared/StatusEffect/StatusEffectPrototype.cs index 493c7369abd..9e13f69d20e 100644 --- a/Content.Shared/StatusEffect/StatusEffectPrototype.cs +++ b/Content.Shared/StatusEffect/StatusEffectPrototype.cs @@ -7,16 +7,16 @@ namespace Content.Shared.StatusEffect public sealed class StatusEffectPrototype : IPrototype { [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [DataField("alert")] - public AlertType? Alert { get; } + public AlertType? Alert { get; private set; } /// /// Whether a status effect should be able to apply to any entity, /// regardless of whether it is in ALlowedEffects or not. /// [DataField("alwaysAllowed")] - public bool AlwaysAllowed { get; } + public bool AlwaysAllowed { get; private set; } } } diff --git a/Content.Shared/StatusEffect/StatusEffectsComponent.cs b/Content.Shared/StatusEffect/StatusEffectsComponent.cs index 0b852b6db85..d61af625370 100644 --- a/Content.Shared/StatusEffect/StatusEffectsComponent.cs +++ b/Content.Shared/StatusEffect/StatusEffectsComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.StatusEffect [RegisterComponent] [NetworkedComponent] [Access(typeof(StatusEffectsSystem))] - public sealed class StatusEffectsComponent : Component + public sealed partial class StatusEffectsComponent : Component { [ViewVariables] public Dictionary ActiveEffects = new(); @@ -19,7 +19,7 @@ public sealed class StatusEffectsComponent : Component } [RegisterComponent] - public sealed class ActiveStatusEffectsComponent : Component {} + public sealed partial class ActiveStatusEffectsComponent : Component {} /// /// Holds information about an active status effect. diff --git a/Content.Shared/StatusIcon/StatusIconPrototype.cs b/Content.Shared/StatusIcon/StatusIconPrototype.cs index afd9dc0ff2d..1523ff4e0ad 100644 --- a/Content.Shared/StatusIcon/StatusIconPrototype.cs +++ b/Content.Shared/StatusIcon/StatusIconPrototype.cs @@ -10,7 +10,7 @@ namespace Content.Shared.StatusIcon; /// information for status icons. /// [Virtual, DataDefinition] -public class StatusIconData : IComparable +public partial class StatusIconData : IComparable { /// /// The icon that's displayed on the entity. @@ -53,7 +53,7 @@ public sealed class StatusIconPrototype : StatusIconData, IPrototype, IInheritin /// [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; } [Serializable, NetSerializable] diff --git a/Content.Shared/Stealth/Components/StealthComponent.cs b/Content.Shared/Stealth/Components/StealthComponent.cs index 2b5ca0d5eca..58cf1cdde60 100644 --- a/Content.Shared/Stealth/Components/StealthComponent.cs +++ b/Content.Shared/Stealth/Components/StealthComponent.cs @@ -11,7 +11,7 @@ namespace Content.Shared.Stealth.Components; /// [RegisterComponent, NetworkedComponent] [Access(typeof(SharedStealthSystem))] -public sealed class StealthComponent : Component +public sealed partial class StealthComponent : Component { /// /// Whether or not the stealth effect should currently be applied. @@ -29,7 +29,7 @@ public sealed class StealthComponent : Component /// Minimum visibility before the entity becomes unexaminable (and thus no longer appears on context menus). /// [DataField("examineThreshold")] - public readonly float ExamineThreshold = 0.5f; + public float ExamineThreshold = 0.5f; /// /// Last set level of visibility. The visual effect ranges from 1 (fully visible) and -1 (fully hidden). Values @@ -53,13 +53,13 @@ public sealed class StealthComponent : Component /// Minimum visibility. Note that the visual effect caps out at -1, but this value is allowed to be larger or smaller. /// [DataField("minVisibility")] - public readonly float MinVisibility = -1f; + public float MinVisibility = -1f; /// /// Maximum visibility. Note that the visual effect caps out at +1, but this value is allowed to be larger or smaller. /// [DataField("maxVisibility")] - public readonly float MaxVisibility = 1.5f; + public float MaxVisibility = 1.5f; /// /// Localization string for how you'd like to describe this effect. diff --git a/Content.Shared/Stealth/Components/StealthOnMoveComponent.cs b/Content.Shared/Stealth/Components/StealthOnMoveComponent.cs index 8d289e7077e..77c300759d5 100644 --- a/Content.Shared/Stealth/Components/StealthOnMoveComponent.cs +++ b/Content.Shared/Stealth/Components/StealthOnMoveComponent.cs @@ -7,18 +7,18 @@ namespace Content.Shared.Stealth.Components /// based on the entity's (lack of) movement. /// [RegisterComponent, NetworkedComponent] - public sealed class StealthOnMoveComponent : Component + public sealed partial class StealthOnMoveComponent : Component { /// /// Rate that effects how fast an entity's visibility passively changes. /// [DataField("passiveVisibilityRate")] - public readonly float PassiveVisibilityRate = -0.15f; + public float PassiveVisibilityRate = -0.15f; /// /// Rate for movement induced visibility changes. Scales with distance moved. /// [DataField("movementVisibilityRate")] - public readonly float MovementVisibilityRate = 0.2f; + public float MovementVisibilityRate = 0.2f; } } diff --git a/Content.Shared/StepTrigger/Components/ShoesRequiredStepTriggerComponent.cs b/Content.Shared/StepTrigger/Components/ShoesRequiredStepTriggerComponent.cs index cde93ea355e..dd95b94a7ef 100644 --- a/Content.Shared/StepTrigger/Components/ShoesRequiredStepTriggerComponent.cs +++ b/Content.Shared/StepTrigger/Components/ShoesRequiredStepTriggerComponent.cs @@ -6,6 +6,6 @@ namespace Content.Shared.StepTrigger.Components; /// This is used for cancelling step trigger events if the user is wearing shoes, such as for glass shards. /// [RegisterComponent, NetworkedComponent] -public sealed class ShoesRequiredStepTriggerComponent : Component +public sealed partial class ShoesRequiredStepTriggerComponent : Component { } diff --git a/Content.Shared/StepTrigger/Components/StepTriggerComponent.cs b/Content.Shared/StepTrigger/Components/StepTriggerComponent.cs index 4fe47093799..21cf5397a1f 100644 --- a/Content.Shared/StepTrigger/Components/StepTriggerComponent.cs +++ b/Content.Shared/StepTrigger/Components/StepTriggerComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.StepTrigger.Components; [RegisterComponent] [NetworkedComponent] [Access(typeof(StepTriggerSystem))] -public sealed class StepTriggerComponent : Component +public sealed partial class StepTriggerComponent : Component { /// /// List of entities that are currently colliding with the entity. @@ -42,15 +42,22 @@ public sealed class StepTriggerComponent : Component public float RequiredTriggerSpeed = 3.5f; /// - /// If any entities occupy the blacklist on the same tile then steptrigger won't work. + /// If any entities occupy the blacklist on the same tile then steptrigger won't work. /// [DataField("blacklist")] public EntityWhitelist? Blacklist; + + /// + /// If this is true, steptrigger will still occur on entities that are in air / weightless. They do not + /// by default. + /// + [DataField("ignoreWeightless")] + public bool IgnoreWeightless = false; } [RegisterComponent] [Access(typeof(StepTriggerSystem))] -public sealed class StepTriggerActiveComponent : Component +public sealed partial class StepTriggerActiveComponent : Component { } @@ -60,11 +67,11 @@ public sealed class StepTriggerComponentState : ComponentState { public float IntersectRatio { get; } public float RequiredTriggerSpeed { get; } - public readonly HashSet CurrentlySteppedOn; - public readonly HashSet Colliding; + public readonly HashSet CurrentlySteppedOn; + public readonly HashSet Colliding; public readonly bool Active; - public StepTriggerComponentState(float intersectRatio, HashSet currentlySteppedOn, HashSet colliding, float requiredTriggerSpeed, bool active) + public StepTriggerComponentState(float intersectRatio, HashSet currentlySteppedOn, HashSet colliding, float requiredTriggerSpeed, bool active) { IntersectRatio = intersectRatio; CurrentlySteppedOn = currentlySteppedOn; diff --git a/Content.Shared/StepTrigger/Systems/StepTriggerSystem.cs b/Content.Shared/StepTrigger/Systems/StepTriggerSystem.cs index d0abac8cbdc..335d9bea9f4 100644 --- a/Content.Shared/StepTrigger/Systems/StepTriggerSystem.cs +++ b/Content.Shared/StepTrigger/Systems/StepTriggerSystem.cs @@ -1,3 +1,4 @@ +using Content.Shared.Gravity; using Content.Shared.StepTrigger.Components; using Robust.Shared.GameStates; using Robust.Shared.Map.Components; @@ -10,6 +11,7 @@ namespace Content.Shared.StepTrigger.Systems; public sealed class StepTriggerSystem : EntitySystem { [Dependency] private readonly EntityLookupSystem _entityLookup = default!; + [Dependency] private readonly SharedGravitySystem _gravity = default!; public override void Initialize() { @@ -121,6 +123,13 @@ private bool CanTrigger(EntityUid uid, EntityUid otherUid, StepTriggerComponent if (!component.Active || component.CurrentlySteppedOn.Contains(otherUid)) return false; + // Can't trigger if we don't ignore weightless entities + // 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))) + return false; + var msg = new StepTriggerAttemptEvent { Source = uid, Tripper = otherUid }; RaiseLocalEvent(uid, ref msg, true); @@ -171,18 +180,14 @@ private void TriggerHandleState(EntityUid uid, StepTriggerComponent component, r component.RequiredTriggerSpeed = state.RequiredTriggerSpeed; component.IntersectRatio = state.IntersectRatio; component.Active = state.Active; + var stepped = EnsureEntitySet(state.CurrentlySteppedOn, uid); + var colliding = EnsureEntitySet(state.CurrentlySteppedOn, uid); - if (!component.CurrentlySteppedOn.SetEquals(state.CurrentlySteppedOn)) - { - component.CurrentlySteppedOn.Clear(); - component.CurrentlySteppedOn.UnionWith(state.CurrentlySteppedOn); - } + component.CurrentlySteppedOn.Clear(); + component.CurrentlySteppedOn.UnionWith(stepped); - if (!component.Colliding.SetEquals(state.Colliding)) - { - component.Colliding.Clear(); - component.Colliding.UnionWith(state.Colliding); - } + component.Colliding.Clear(); + component.Colliding.UnionWith(colliding); if (component.Colliding.Count > 0) { @@ -194,12 +199,12 @@ private void TriggerHandleState(EntityUid uid, StepTriggerComponent component, r } } - private static void TriggerGetState(EntityUid uid, StepTriggerComponent component, ref ComponentGetState args) + private void TriggerGetState(EntityUid uid, StepTriggerComponent component, ref ComponentGetState args) { args.State = new StepTriggerComponentState( component.IntersectRatio, - component.CurrentlySteppedOn, - component.Colliding, + GetNetEntitySet(component.CurrentlySteppedOn), + GetNetEntitySet(component.Colliding), component.RequiredTriggerSpeed, component.Active); } diff --git a/Content.Shared/Sticky/Components/StickyVisualizerComponent.cs b/Content.Shared/Sticky/Components/StickyVisualizerComponent.cs index 9bb7e621abc..c32be646fc3 100644 --- a/Content.Shared/Sticky/Components/StickyVisualizerComponent.cs +++ b/Content.Shared/Sticky/Components/StickyVisualizerComponent.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Sticky.Components; using DrawDepth; [RegisterComponent] -public sealed class StickyVisualizerComponent : Component +public sealed partial class StickyVisualizerComponent : Component { /// /// What sprite draw depth set when entity stuck. diff --git a/Content.Shared/Sticky/StickyDoAfterEvent.cs b/Content.Shared/Sticky/StickyDoAfterEvent.cs index e460efa40ed..a2f003895e2 100644 --- a/Content.Shared/Sticky/StickyDoAfterEvent.cs +++ b/Content.Shared/Sticky/StickyDoAfterEvent.cs @@ -4,6 +4,6 @@ namespace Content.Shared.Sticky; [Serializable, NetSerializable] -public sealed class StickyDoAfterEvent : SimpleDoAfterEvent +public sealed partial class StickyDoAfterEvent : SimpleDoAfterEvent { -} \ No newline at end of file +} diff --git a/Content.Shared/Storage/Components/BinComponent.cs b/Content.Shared/Storage/Components/BinComponent.cs index 0dfb3792757..4294ce1e790 100644 --- a/Content.Shared/Storage/Components/BinComponent.cs +++ b/Content.Shared/Storage/Components/BinComponent.cs @@ -13,7 +13,7 @@ namespace Content.Shared.Storage.Components; /// you can only take off of the top of the bin. /// [RegisterComponent, NetworkedComponent, Access(typeof(BinSystem))] -public sealed class BinComponent : Component +public sealed partial class BinComponent : Component { /// /// The containers that contain the items held in the bin @@ -56,13 +56,13 @@ public sealed class BinComponent : Component [Serializable, NetSerializable] public sealed class BinComponentState : ComponentState { - public List Items; + public List Items; public EntityWhitelist? Whitelist; public int MaxItems; - public BinComponentState(List items, EntityWhitelist? whitelist, int maxItems) + public BinComponentState(List items, EntityWhitelist? whitelist, int maxItems) { Items = items; Whitelist = whitelist; diff --git a/Content.Shared/Storage/Components/DumpableComponent.cs b/Content.Shared/Storage/Components/DumpableComponent.cs index 10470fd2f35..f10a935fb92 100644 --- a/Content.Shared/Storage/Components/DumpableComponent.cs +++ b/Content.Shared/Storage/Components/DumpableComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Storage.Components; [Serializable, NetSerializable] -public sealed class DumpableDoAfterEvent : SimpleDoAfterEvent +public sealed partial class DumpableDoAfterEvent : SimpleDoAfterEvent { } diff --git a/Content.Shared/Storage/Components/InsideEntityStorageComponent.cs b/Content.Shared/Storage/Components/InsideEntityStorageComponent.cs index 802cf195c34..258ea07ec65 100644 --- a/Content.Shared/Storage/Components/InsideEntityStorageComponent.cs +++ b/Content.Shared/Storage/Components/InsideEntityStorageComponent.cs @@ -4,7 +4,7 @@ /// Added to entities contained within entity storage, for directed event purposes. /// [RegisterComponent] -public sealed class InsideEntityStorageComponent : Component +public sealed partial class InsideEntityStorageComponent : Component { public EntityUid Storage; } diff --git a/Content.Shared/Storage/Components/ItemCounterComponent.cs b/Content.Shared/Storage/Components/ItemCounterComponent.cs index 40151a502a8..890bc84e721 100644 --- a/Content.Shared/Storage/Components/ItemCounterComponent.cs +++ b/Content.Shared/Storage/Components/ItemCounterComponent.cs @@ -17,14 +17,14 @@ namespace Content.Shared.Storage.Components /// [RegisterComponent] [Access(typeof(SharedItemCounterSystem))] - public sealed class ItemCounterComponent : Component + public sealed partial class ItemCounterComponent : Component { [DataField("count", required: true)] public EntityWhitelist Count { get; set; } = default!; [DataField("amount")] public int? MaxAmount { get; set; } - + /// /// Default IconLayer stack. /// diff --git a/Content.Shared/Storage/Components/ItemMapperComponent.cs b/Content.Shared/Storage/Components/ItemMapperComponent.cs index ba9bdfdbbee..4512503fdef 100644 --- a/Content.Shared/Storage/Components/ItemMapperComponent.cs +++ b/Content.Shared/Storage/Components/ItemMapperComponent.cs @@ -54,9 +54,9 @@ namespace Content.Shared.Storage.Components /// [RegisterComponent] [Access(typeof(SharedItemMapperSystem))] - public sealed class ItemMapperComponent : Component + public sealed partial class ItemMapperComponent : Component { - [DataField("mapLayers")] public readonly Dictionary MapLayers = new(); + [DataField("mapLayers")] public Dictionary MapLayers = new(); [DataField("sprite")] public ResPath? RSIPath; diff --git a/Content.Shared/Storage/Components/SharedEntityStorageComponent.cs b/Content.Shared/Storage/Components/SharedEntityStorageComponent.cs index e3893da19a9..db1d3bac9af 100644 --- a/Content.Shared/Storage/Components/SharedEntityStorageComponent.cs +++ b/Content.Shared/Storage/Components/SharedEntityStorageComponent.cs @@ -9,7 +9,7 @@ namespace Content.Shared.Storage.Components; [NetworkedComponent] -public abstract class SharedEntityStorageComponent : Component +public abstract partial class SharedEntityStorageComponent : Component { public readonly float MaxSize = 1.0f; // maximum width or height of an entity allowed inside the storage. @@ -57,7 +57,7 @@ public abstract class SharedEntityStorageComponent : Component //The collision groups checked, so that items are depositied or grabbed from inside walls. [DataField("enteringOffsetCollisionFlags")] - public readonly CollisionGroup EnteringOffsetCollisionFlags = CollisionGroup.Impassable | CollisionGroup.MidImpassable; + public CollisionGroup EnteringOffsetCollisionFlags = CollisionGroup.Impassable | CollisionGroup.MidImpassable; /// /// How close you have to be to the "entering" spot to be able to enter @@ -119,12 +119,6 @@ public abstract class SharedEntityStorageComponent : Component /// [ViewVariables] public Container Contents = default!; - - /// - /// Whether or not the storage has been welded shut - /// - [DataField("isWeldedShut"), ViewVariables(VVAccess.ReadWrite)] - public bool IsWeldedShut; } [Serializable, NetSerializable] @@ -140,16 +134,13 @@ public sealed class EntityStorageComponentState : ComponentState public float EnteringRange; - public bool IsWeldedShut; - - public EntityStorageComponentState(bool open, int capacity, bool isCollidableWhenOpen, bool openOnMove, float enteringRange, bool isWeldedShut) + public EntityStorageComponentState(bool open, int capacity, bool isCollidableWhenOpen, bool openOnMove, float enteringRange) { Open = open; Capacity = capacity; IsCollidableWhenOpen = isCollidableWhenOpen; OpenOnMove = openOnMove; EnteringRange = enteringRange; - IsWeldedShut = isWeldedShut; } } diff --git a/Content.Shared/Storage/Components/SharedMapLayerData.cs b/Content.Shared/Storage/Components/SharedMapLayerData.cs index 741f832af75..6d2f4a7eafd 100644 --- a/Content.Shared/Storage/Components/SharedMapLayerData.cs +++ b/Content.Shared/Storage/Components/SharedMapLayerData.cs @@ -13,7 +13,7 @@ public enum StorageMapVisuals : sbyte [Serializable] [DataDefinition] - public sealed class SharedMapLayerData + public sealed partial class SharedMapLayerData { public string Layer = string.Empty; diff --git a/Content.Shared/Storage/Components/StorageFillComponent.cs b/Content.Shared/Storage/Components/StorageFillComponent.cs new file mode 100644 index 00000000000..e112368a496 --- /dev/null +++ b/Content.Shared/Storage/Components/StorageFillComponent.cs @@ -0,0 +1,12 @@ +using Content.Shared.Storage.EntitySystems; +using Robust.Shared.GameStates; + +namespace Content.Shared.Storage.Components; + +// TODO: +// REPLACE THIS WITH CONTAINERFILL +[RegisterComponent, NetworkedComponent, Access(typeof(SharedStorageSystem))] +public sealed partial class StorageFillComponent : Component +{ + [DataField("contents")] public List Contents = new(); +} diff --git a/Content.Shared/Storage/Components/StorageFillVisualizerComponent.cs b/Content.Shared/Storage/Components/StorageFillVisualizerComponent.cs index 78d00928532..7c0d8c1ca91 100644 --- a/Content.Shared/Storage/Components/StorageFillVisualizerComponent.cs +++ b/Content.Shared/Storage/Components/StorageFillVisualizerComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Storage.Components; /// Change sprite depending on a storage fill percent. /// [RegisterComponent] -public sealed class StorageFillVisualizerComponent : Component +public sealed partial class StorageFillVisualizerComponent : Component { [DataField("maxFillLevels", required: true)] public int MaxFillLevels; diff --git a/Content.Shared/Storage/EntitySpawnEntry.cs b/Content.Shared/Storage/EntitySpawnEntry.cs index 8b58e9f0f03..a39c2015a98 100644 --- a/Content.Shared/Storage/EntitySpawnEntry.cs +++ b/Content.Shared/Storage/EntitySpawnEntry.cs @@ -10,7 +10,7 @@ namespace Content.Shared.Storage; /// [Serializable] [DataDefinition] -public struct EntitySpawnEntry +public partial struct EntitySpawnEntry { [ViewVariables(VVAccess.ReadWrite)] [DataField("id", customTypeSerializer: typeof(PrototypeIdSerializer))] diff --git a/Content.Shared/Storage/EntitySystems/BinSystem.cs b/Content.Shared/Storage/EntitySystems/BinSystem.cs index 897a20b45df..e82861f4e15 100644 --- a/Content.Shared/Storage/EntitySystems/BinSystem.cs +++ b/Content.Shared/Storage/EntitySystems/BinSystem.cs @@ -38,7 +38,7 @@ public override void Initialize() private void OnGetState(EntityUid uid, BinComponent component, ref ComponentGetState args) { - args.State = new BinComponentState(component.Items, component.Whitelist, component.MaxItems); + args.State = new BinComponentState(GetNetEntityList(component.Items), component.Whitelist, component.MaxItems); } private void OnHandleState(EntityUid uid, BinComponent component, ref ComponentHandleState args) @@ -46,7 +46,7 @@ private void OnHandleState(EntityUid uid, BinComponent component, ref ComponentH if (args.Current is not BinComponentState state) return; - component.Items = new List(state.Items); + component.Items = EnsureEntityList(state.Items, uid); component.Whitelist = state.Whitelist; component.MaxItems = state.MaxItems; } diff --git a/Content.Shared/Storage/EntitySystems/BluespaceLockerDoAfterEvent.cs b/Content.Shared/Storage/EntitySystems/BluespaceLockerDoAfterEvent.cs index 8a488ead779..2e58de48118 100644 --- a/Content.Shared/Storage/EntitySystems/BluespaceLockerDoAfterEvent.cs +++ b/Content.Shared/Storage/EntitySystems/BluespaceLockerDoAfterEvent.cs @@ -4,6 +4,6 @@ namespace Content.Shared.Storage.EntitySystems; [Serializable, NetSerializable] -public sealed class BluespaceLockerDoAfterEvent : SimpleDoAfterEvent +public sealed partial class BluespaceLockerDoAfterEvent : SimpleDoAfterEvent { } diff --git a/Content.Shared/Storage/EntitySystems/DumpableSystem.cs b/Content.Shared/Storage/EntitySystems/DumpableSystem.cs index 0e5a4fd796f..cb53ea82985 100644 --- a/Content.Shared/Storage/EntitySystems/DumpableSystem.cs +++ b/Content.Shared/Storage/EntitySystems/DumpableSystem.cs @@ -1,5 +1,5 @@ +using System.Linq; using Content.Shared.Disposal; -using Content.Shared.Disposal.Components; using Content.Shared.DoAfter; using Content.Shared.Interaction; using Content.Shared.Placeable; @@ -37,7 +37,7 @@ private void OnAfterInteract(EntityUid uid, DumpableComponent component, AfterIn if (!args.CanReach || args.Handled) return; - if (!HasComp(args.Target) && !HasComp(args.Target)) + if (!_disposalUnitSystem.HasDisposals(args.Target) && !HasComp(args.Target)) return; StartDoAfter(uid, args.Target.Value, args.User, component); @@ -49,7 +49,7 @@ private void AddDumpVerb(EntityUid uid, DumpableComponent dumpable, GetVerbsEven if (!args.CanAccess || !args.CanInteract) return; - if (!TryComp(uid, out var storage) || storage.StoredEntities == null || storage.StoredEntities.Count == 0) + if (!TryComp(uid, out var storage) || !storage.Container.ContainedEntities.Any()) return; AlternativeVerb verb = new() @@ -69,10 +69,10 @@ private void AddUtilityVerbs(EntityUid uid, DumpableComponent dumpable, GetVerbs if (!args.CanAccess || !args.CanInteract) return; - if (!TryComp(uid, out var storage) || storage.StoredEntities == null || storage.StoredEntities.Count == 0) + if (!TryComp(uid, out var storage) || !storage.Container.ContainedEntities.Any()) return; - if (HasComp(args.Target)) + if (_disposalUnitSystem.HasDisposals(args.Target)) { UtilityVerb verb = new() { @@ -81,7 +81,7 @@ private void AddUtilityVerbs(EntityUid uid, DumpableComponent dumpable, GetVerbs StartDoAfter(uid, args.Target, args.User, dumpable); }, Text = Loc.GetString("dump-disposal-verb-name", ("unit", args.Target)), - IconEntity = uid + IconEntity = GetNetEntity(uid) }; args.Verbs.Add(verb); } @@ -95,7 +95,7 @@ private void AddUtilityVerbs(EntityUid uid, DumpableComponent dumpable, GetVerbs StartDoAfter(uid, args.Target, args.User, dumpable); }, Text = Loc.GetString("dump-placeable-verb-name", ("surface", args.Target)), - IconEntity = uid + IconEntity = GetNetEntity(uid) }; args.Verbs.Add(verb); } @@ -103,12 +103,12 @@ private void AddUtilityVerbs(EntityUid uid, DumpableComponent dumpable, GetVerbs public void StartDoAfter(EntityUid storageUid, EntityUid? targetUid, EntityUid userUid, DumpableComponent dumpable) { - if (!TryComp(storageUid, out var storage) || storage.StoredEntities == null) + if (!TryComp(storageUid, out var storage)) return; - float delay = storage.StoredEntities.Count * (float) dumpable.DelayPerItem.TotalSeconds * dumpable.Multiplier; + float delay = storage.Container.ContainedEntities.Count * (float) dumpable.DelayPerItem.TotalSeconds * dumpable.Multiplier; - _doAfterSystem.TryStartDoAfter(new DoAfterArgs(userUid, delay, new DumpableDoAfterEvent(), storageUid, target: targetUid, used: storageUid) + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, userUid, delay, new DumpableDoAfterEvent(), storageUid, target: targetUid, used: storageUid) { BreakOnTargetMove = true, BreakOnUserMove = true, @@ -118,11 +118,11 @@ public void StartDoAfter(EntityUid storageUid, EntityUid? targetUid, EntityUid u private void OnDoAfter(EntityUid uid, DumpableComponent component, DoAfterEvent args) { - if (args.Handled || args.Cancelled || !TryComp(uid, out var storage) || storage.StoredEntities == null) + if (args.Handled || args.Cancelled || !TryComp(uid, out var storage)) return; Queue dumpQueue = new(); - foreach (var entity in storage.StoredEntities) + foreach (var entity in storage.Container.ContainedEntities) { dumpQueue.Enqueue(entity); } @@ -142,7 +142,7 @@ private void OnDoAfter(EntityUid uid, DumpableComponent component, DoAfterEvent var dumped = false; - if (HasComp(args.Args.Target.Value)) + if (_disposalUnitSystem.HasDisposals(args.Args.Target.Value)) { dumped = true; diff --git a/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs index 8ea40f525c3..b4c0a639799 100644 --- a/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs @@ -1,7 +1,9 @@ -using System.Linq; +using System.Diagnostics.CodeAnalysis; +using System.Linq; using System.Numerics; using Content.Shared.Body.Components; using Content.Shared.Destructible; +using Content.Shared.Foldable; using Content.Shared.Hands.Components; using Content.Shared.Interaction; using Content.Shared.Item; @@ -10,6 +12,7 @@ using Content.Shared.Placeable; using Content.Shared.Popups; using Content.Shared.Storage.Components; +using Content.Shared.Tools.Systems; using Content.Shared.Verbs; using Content.Shared.Wall; using Content.Shared.Whitelist; @@ -27,47 +30,32 @@ namespace Content.Shared.Storage.EntitySystems; public abstract class SharedEntityStorageSystem : EntitySystem { - [Dependency] private readonly IGameTiming _timing = default!; - [Dependency] private readonly INetManager _net = default!; - [Dependency] private readonly EntityLookupSystem _lookup = default!; - [Dependency] private readonly PlaceableSurfaceSystem _placeableSurface = default!; - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly SharedContainerSystem _container = default!; - [Dependency] private readonly SharedInteractionSystem _interaction = default!; - [Dependency] private readonly SharedJointSystem _joints = default!; - [Dependency] private readonly SharedPhysicsSystem _physics = default!; + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly INetManager _net = default!; + [Dependency] private readonly EntityLookupSystem _lookup = default!; + [Dependency] private readonly PlaceableSurfaceSystem _placeableSurface = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly SharedInteractionSystem _interaction = default!; + [Dependency] private readonly SharedJointSystem _joints = default!; + [Dependency] private readonly SharedPhysicsSystem _physics = default!; [Dependency] protected readonly SharedPopupSystem Popup = default!; - [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly WeldableSystem _weldable = default!; public const string ContainerName = "entity_storage"; - /// - public override void Initialize() - { - SubscribeLocalEvent(OnComponentInit); - SubscribeLocalEvent(OnComponentStartup); - SubscribeLocalEvent(OnInteract, after: new[] { typeof(LockSystem) }); - SubscribeLocalEvent(OnLockToggleAttempt); - SubscribeLocalEvent(OnDestruction); - SubscribeLocalEvent>(AddToggleOpenVerb); - SubscribeLocalEvent(OnRelayMovement); - - SubscribeLocalEvent(OnGetState); - SubscribeLocalEvent(OnHandleState); - } - - private void OnGetState(EntityUid uid, SharedEntityStorageComponent component, ref ComponentGetState args) + protected void OnGetState(EntityUid uid, SharedEntityStorageComponent component, ref ComponentGetState args) { args.State = new EntityStorageComponentState(component.Open, component.Capacity, component.IsCollidableWhenOpen, component.OpenOnMove, - component.EnteringRange, - component.IsWeldedShut); + component.EnteringRange); } - private void OnHandleState(EntityUid uid, SharedEntityStorageComponent component, ref ComponentHandleState args) + protected void OnHandleState(EntityUid uid, SharedEntityStorageComponent component, ref ComponentHandleState args) { if (args.Current is not EntityStorageComponentState state) return; @@ -76,7 +64,6 @@ private void OnHandleState(EntityUid uid, SharedEntityStorageComponent component component.IsCollidableWhenOpen = state.IsCollidableWhenOpen; component.OpenOnMove = state.OpenOnMove; component.EnteringRange = state.EnteringRange; - component.IsWeldedShut = state.IsWeldedShut; } protected virtual void OnComponentInit(EntityUid uid, SharedEntityStorageComponent component, ComponentInit args) @@ -91,7 +78,7 @@ protected virtual void OnComponentStartup(EntityUid uid, SharedEntityStorageComp _appearance.SetData(uid, StorageVisuals.Open, component.Open); } - private void OnInteract(EntityUid uid, SharedEntityStorageComponent component, ActivateInWorldEvent args) + protected void OnInteract(EntityUid uid, SharedEntityStorageComponent component, ActivateInWorldEvent args) { if (args.Handled) return; @@ -100,7 +87,9 @@ private void OnInteract(EntityUid uid, SharedEntityStorageComponent component, A ToggleOpen(args.User, uid, component); } - private void OnLockToggleAttempt(EntityUid uid, SharedEntityStorageComponent target, ref LockToggleAttemptEvent args) + public abstract bool ResolveStorage(EntityUid uid, [NotNullWhen(true)] ref SharedEntityStorageComponent? component); + + protected void OnLockToggleAttempt(EntityUid uid, SharedEntityStorageComponent target, ref LockToggleAttemptEvent args) { // Cannot (un)lock open lockers. if (target.Open) @@ -111,7 +100,7 @@ private void OnLockToggleAttempt(EntityUid uid, SharedEntityStorageComponent tar args.Cancelled = true; } - private void OnDestruction(EntityUid uid, SharedEntityStorageComponent component, DestructionEventArgs args) + protected void OnDestruction(EntityUid uid, SharedEntityStorageComponent component, DestructionEventArgs args) { component.Open = true; Dirty(component); @@ -127,7 +116,7 @@ private void OnDestruction(EntityUid uid, SharedEntityStorageComponent component } } - private void OnRelayMovement(EntityUid uid, SharedEntityStorageComponent component, ref ContainerRelayMovementEntityEvent args) + protected void OnRelayMovement(EntityUid uid, SharedEntityStorageComponent component, ref ContainerRelayMovementEntityEvent args) { if (!HasComp(args.Entity)) return; @@ -142,7 +131,14 @@ private void OnRelayMovement(EntityUid uid, SharedEntityStorageComponent compone } } - private void AddToggleOpenVerb(EntityUid uid, SharedEntityStorageComponent component, GetVerbsEvent args) + protected void OnFoldAttempt(EntityUid uid, SharedEntityStorageComponent 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) { if (!args.CanAccess || !args.CanInteract) return; @@ -169,7 +165,7 @@ private void AddToggleOpenVerb(EntityUid uid, SharedEntityStorageComponent compo public void ToggleOpen(EntityUid user, EntityUid target, SharedEntityStorageComponent? component = null) { - if (!Resolve(target, ref component)) + if (!ResolveStorage(target, ref component)) return; if (component.Open) @@ -184,7 +180,7 @@ public void ToggleOpen(EntityUid user, EntityUid target, SharedEntityStorageComp public void EmptyContents(EntityUid uid, SharedEntityStorageComponent? component = null) { - if (!Resolve(uid, ref component)) + if (!ResolveStorage(uid, ref component)) return; var uidXform = Transform(uid); @@ -197,7 +193,7 @@ public void EmptyContents(EntityUid uid, SharedEntityStorageComponent? component public void OpenStorage(EntityUid uid, SharedEntityStorageComponent? component = null) { - if (!Resolve(uid, ref component)) + if (!ResolveStorage(uid, ref component)) return; var beforeev = new StorageBeforeOpenEvent(); @@ -215,8 +211,9 @@ public void OpenStorage(EntityUid uid, SharedEntityStorageComponent? component = public void CloseStorage(EntityUid uid, SharedEntityStorageComponent? component = null) { - if (!Resolve(uid, ref component)) + if (!ResolveStorage(uid, ref component)) return; + component.Open = false; Dirty(component); @@ -254,7 +251,7 @@ public void CloseStorage(EntityUid uid, SharedEntityStorageComponent? component public bool Insert(EntityUid toInsert, EntityUid container, SharedEntityStorageComponent? component = null) { - if (!Resolve(container, ref component)) + if (!ResolveStorage(container, ref component)) return false; if (component.Open) @@ -271,7 +268,10 @@ public bool Insert(EntityUid toInsert, EntityUid container, SharedEntityStorageC public bool Remove(EntityUid toRemove, EntityUid container, SharedEntityStorageComponent? component = null, TransformComponent? xform = null) { - if (!Resolve(container, ref component, ref xform, false)) + if (!Resolve(container, ref xform, false)) + return false; + + if (!ResolveStorage(container, ref component)) return false; RemComp(toRemove); @@ -283,7 +283,7 @@ public bool Remove(EntityUid toRemove, EntityUid container, SharedEntityStorageC public bool CanInsert(EntityUid container, SharedEntityStorageComponent? component = null) { - if (!Resolve(container, ref component)) + if (!ResolveStorage(container, ref component)) return false; if (component.Open) @@ -317,16 +317,16 @@ public bool TryCloseStorage(EntityUid target) public bool CanOpen(EntityUid user, EntityUid target, bool silent = false, SharedEntityStorageComponent? component = null) { - if (!Resolve(target, ref component)) + if (!ResolveStorage(target, ref component)) return false; if (!HasComp(user)) return false; - if (component.IsWeldedShut) + if (_weldable.IsWelded(target)) { - if (!silent && !component.Contents.Contains(user) && _net.IsServer) - Popup.PopupEntity(Loc.GetString("entity-storage-component-welded-shut-message"), target); + if (!silent && !component.Contents.Contains(user)) + Popup.PopupClient(Loc.GetString("entity-storage-component-welded-shut-message"), target, user); return false; } @@ -359,7 +359,7 @@ public bool CanClose(EntityUid target, bool silent = false) public bool AddToContents(EntityUid toAdd, EntityUid container, SharedEntityStorageComponent? component = null) { - if (!Resolve(container, ref component)) + if (!ResolveStorage(container, ref component)) return false; if (toAdd == container) @@ -419,7 +419,7 @@ public bool CanFit(EntityUid toInsert, EntityUid container, EntityWhitelist? whi private void ModifyComponents(EntityUid uid, SharedEntityStorageComponent? component = null) { - if (!Resolve(uid, ref component)) + if (!ResolveStorage(uid, ref component)) return; if (!component.IsCollidableWhenOpen && TryComp(uid, out var fixtures) && @@ -429,17 +429,17 @@ private void ModifyComponents(EntityUid uid, SharedEntityStorageComponent? compo // RemovedMasks needs to be tracked separately for each fixture, using a fixture Id Dictionary. Also the // fixture IDs probably cant be automatically generated without causing issues, unless there is some // guarantee that they will get deserialized with the same auto-generated ID when saving+loading the map. - var fixture = fixtures.Fixtures.Values.First(); + var fixture = fixtures.Fixtures.First(); if (component.Open) { - component.RemovedMasks = fixture.CollisionLayer & component.MasksToRemove; - _physics.SetCollisionLayer(uid, fixture, fixture.CollisionLayer & ~component.MasksToRemove, + component.RemovedMasks = fixture.Value.CollisionLayer & component.MasksToRemove; + _physics.SetCollisionLayer(uid, fixture.Key, fixture.Value, fixture.Value.CollisionLayer & ~component.MasksToRemove, manager: fixtures); } else { - _physics.SetCollisionLayer(uid, fixture, fixture.CollisionLayer | component.RemovedMasks, + _physics.SetCollisionLayer(uid, fixture.Key, fixture.Value, fixture.Value.CollisionLayer | component.RemovedMasks, manager: fixtures); component.RemovedMasks = 0; } diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs new file mode 100644 index 00000000000..fac772371d2 --- /dev/null +++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs @@ -0,0 +1,606 @@ +using System.Linq; +using Content.Shared.ActionBlocker; +using Content.Shared.CombatMode; +using Content.Shared.Containers.ItemSlots; +using Content.Shared.Destructible; +using Content.Shared.DoAfter; +using Content.Shared.Hands.Components; +using Content.Shared.Hands.EntitySystems; +using Content.Shared.Implants.Components; +using Content.Shared.Interaction; +using Content.Shared.Item; +using Content.Shared.Lock; +using Content.Shared.Placeable; +using Content.Shared.Popups; +using Content.Shared.Stacks; +using Content.Shared.Storage.Components; +using Content.Shared.Timing; +using Content.Shared.Verbs; +using Robust.Shared.Containers; +using Robust.Shared.Map; +using Robust.Shared.Random; + +namespace Content.Shared.Storage.EntitySystems; + +public abstract class SharedStorageSystem : EntitySystem +{ + [Dependency] protected readonly IRobustRandom Random = default!; + [Dependency] private readonly SharedContainerSystem _containerSystem = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; + [Dependency] private readonly EntityLookupSystem _entityLookupSystem = default!; + [Dependency] protected readonly SharedEntityStorageSystem EntityStorage = default!; + [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!; + [Dependency] private readonly SharedPopupSystem _popupSystem = default!; + [Dependency] private readonly SharedHandsSystem _sharedHandsSystem = default!; + [Dependency] private readonly SharedInteractionSystem _sharedInteractionSystem = default!; + [Dependency] private readonly ActionBlockerSystem _actionBlockerSystem = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] protected readonly SharedAudioSystem Audio = default!; + [Dependency] private readonly SharedCombatModeSystem _combatMode = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly SharedStackSystem _stack = default!; + [Dependency] protected readonly UseDelaySystem UseDelay = default!; + + private EntityQuery _itemQuery; + private EntityQuery _stackQuery; + private EntityQuery _xformQuery; + + /// + public override void Initialize() + { + base.Initialize(); + + _itemQuery = GetEntityQuery(); + _stackQuery = GetEntityQuery(); + _xformQuery = GetEntityQuery(); + + SubscribeLocalEvent(OnComponentInit, before: new[] { typeof(SharedContainerSystem) }); + SubscribeLocalEvent>(AddTransferVerbs); + SubscribeLocalEvent(OnInteractUsing, after: new[] { typeof(ItemSlotsSystem) }); + SubscribeLocalEvent(OnActivate); + SubscribeLocalEvent(OnImplantActivate); + SubscribeLocalEvent(AfterInteract); + SubscribeLocalEvent(OnDestroy); + SubscribeLocalEvent(OnInsertItemMessage); + SubscribeLocalEvent(OnBoundUIOpen); + + SubscribeLocalEvent(OnStorageItemInserted); + SubscribeLocalEvent(OnStorageItemRemoved); + + SubscribeLocalEvent(OnDoAfter); + + SubscribeLocalEvent(OnInteractWithItem); + } + + private void OnComponentInit(EntityUid uid, StorageComponent storageComp, ComponentInit args) + { + // ReSharper disable once StringLiteralTypo + storageComp.Container = _containerSystem.EnsureContainer(uid, "storagebase"); + UpdateStorage(uid, storageComp); + } + + /// + /// Updates the storage UI, visualizer, etc. + /// + /// + /// + private void UpdateStorage(EntityUid uid, StorageComponent component) + { + // TODO: I had this. + // We can get states being applied before the container is ready. + if (component.Container == default) + return; + + RecalculateStorageUsed(component); + UpdateStorageVisualization(uid, component); + UpdateUI(uid, component); + Dirty(uid, component); + } + + public virtual void UpdateUI(EntityUid uid, StorageComponent component) {} + + public virtual void OpenStorageUI(EntityUid uid, EntityUid entity, StorageComponent? storageComp = null, bool silent = false) { } + + private void AddTransferVerbs(EntityUid uid, StorageComponent component, GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract) + return; + + var entities = component.Container.ContainedEntities; + + if (entities.Count == 0 || TryComp(uid, out LockComponent? lockComponent) && lockComponent.Locked) + return; + + // if the target is storage, add a verb to transfer storage. + if (TryComp(args.Target, out StorageComponent? targetStorage) + && (!TryComp(uid, out LockComponent? targetLock) || !targetLock.Locked)) + { + UtilityVerb verb = new() + { + Text = Loc.GetString("storage-component-transfer-verb"), + IconEntity = GetNetEntity(args.Using), + Act = () => TransferEntities(uid, args.Target, args.User, component, lockComponent, targetStorage, targetLock) + }; + + args.Verbs.Add(verb); + } + } + + /// + /// Inserts storable entities into this storage container if possible, otherwise return to the hand of the user + /// + /// true if inserted, false otherwise + private void OnInteractUsing(EntityUid uid, StorageComponent storageComp, InteractUsingEvent args) + { + if (args.Handled || !storageComp.ClickInsert || TryComp(uid, out LockComponent? lockComponent) && lockComponent.Locked) + return; + + Log.Debug($"Storage (UID {uid}) attacked by user (UID {args.User}) with entity (UID {args.Used})."); + + if (HasComp(uid)) + return; + + PlayerInsertHeldEntity(uid, args.User, storageComp); + // Always handle it, even if insertion fails. + // We don't want to trigger any AfterInteract logic here. + // Example bug: placing wires if item doesn't fit in backpack. + args.Handled = true; + } + + /// + /// Sends a message to open the storage UI + /// + private void OnActivate(EntityUid uid, StorageComponent storageComp, ActivateInWorldEvent args) + { + if (args.Handled || _combatMode.IsInCombatMode(args.User) || TryComp(uid, out LockComponent? lockComponent) && lockComponent.Locked) + return; + + OpenStorageUI(uid, args.User, storageComp); + } + + /// + /// Specifically for storage implants. + /// + private void OnImplantActivate(EntityUid uid, StorageComponent storageComp, OpenStorageImplantEvent args) + { + // TODO: Make this an action or something. + if (args.Handled || !_xformQuery.TryGetComponent(uid, out var xform)) + return; + + OpenStorageUI(uid, xform.ParentUid, storageComp); + } + + /// + /// Allows a user to pick up entities by clicking them, or pick up all entities in a certain radius + /// around a click. + /// + /// + private void AfterInteract(EntityUid uid, StorageComponent storageComp, AfterInteractEvent args) + { + if (!args.CanReach) + return; + + // Pick up all entities in a radius around the clicked location. + // The last half of the if is because carpets exist and this is terrible + if (storageComp.AreaInsert && (args.Target == null || !HasComp(args.Target.Value))) + { + var validStorables = new List(); + + foreach (var entity in _entityLookupSystem.GetEntitiesInRange(args.ClickLocation, storageComp.AreaInsertRadius, LookupFlags.Dynamic | LookupFlags.Sundries)) + { + if (entity == args.User + || !_itemQuery.HasComponent(entity) + || !CanInsert(uid, entity, out _, storageComp) + || !_interactionSystem.InRangeUnobstructed(args.User, entity)) + { + continue; + } + + validStorables.Add(entity); + } + + //If there's only one then let's be generous + if (validStorables.Count > 1) + { + var doAfterArgs = new DoAfterArgs(EntityManager, args.User, 0.2f * validStorables.Count, new AreaPickupDoAfterEvent(GetNetEntityList(validStorables)), uid, target: uid) + { + BreakOnDamage = true, + BreakOnUserMove = true, + NeedHand = true + }; + + _doAfterSystem.TryStartDoAfter(doAfterArgs); + } + + return; + } + + // Pick up the clicked entity + if (storageComp.QuickInsert) + { + if (args.Target is not { Valid: true } target) + return; + + if (_containerSystem.IsEntityInContainer(target) + || target == args.User + || !HasComp(target)) + { + return; + } + + if (TryComp(uid, out var transformOwner) && TryComp(target, out var transformEnt)) + { + var parent = transformOwner.ParentUid; + + var position = EntityCoordinates.FromMap( + parent.IsValid() ? parent : uid, + transformEnt.MapPosition, + _transform + ); + + if (PlayerInsertEntityInWorld(uid, args.User, target, storageComp)) + { + RaiseNetworkEvent(new AnimateInsertingEntitiesEvent(GetNetEntity(uid), + new List { GetNetEntity(target) }, + new List { GetNetCoordinates(position) }, + new List { transformOwner.LocalRotation })); + } + } + } + } + + private void OnDoAfter(EntityUid uid, StorageComponent component, AreaPickupDoAfterEvent args) + { + if (args.Handled || args.Cancelled) + return; + + var successfullyInserted = new List(); + var successfullyInsertedPositions = new List(); + var successfullyInsertedAngles = new List(); + _xformQuery.TryGetComponent(uid, out var xform); + + foreach (var netEntity in args.Entities) + { + var entity = GetEntity(netEntity); + + // Check again, situation may have changed for some entities, but we'll still pick up any that are valid + if (_containerSystem.IsEntityInContainer(entity) + || entity == args.Args.User + || !_itemQuery.HasComponent(entity)) + continue; + + if (xform == null || + !_xformQuery.TryGetComponent(entity, out var targetXform) || + targetXform.MapID != xform.MapID) + { + continue; + } + + var position = EntityCoordinates.FromMap( + xform.ParentUid.IsValid() ? xform.ParentUid : uid, + new MapCoordinates(_transform.GetWorldPosition(targetXform), targetXform.MapID), + _transform + ); + + var angle = targetXform.LocalRotation; + + if (PlayerInsertEntityInWorld(uid, args.Args.User, entity, component)) + { + successfullyInserted.Add(entity); + successfullyInsertedPositions.Add(position); + successfullyInsertedAngles.Add(angle); + } + } + + // If we picked up atleast one thing, play a sound and do a cool animation! + if (successfullyInserted.Count > 0) + { + Audio.PlayPvs(component.StorageInsertSound, uid); + RaiseNetworkEvent(new AnimateInsertingEntitiesEvent( + GetNetEntity(uid), + GetNetEntityList(successfullyInserted), + GetNetCoordinatesList(successfullyInsertedPositions), + successfullyInsertedAngles)); + } + + args.Handled = true; + } + + private void OnDestroy(EntityUid uid, StorageComponent storageComp, DestructionEventArgs args) + { + var coordinates = _transform.GetMoverCoordinates(uid); + + // Being destroyed so need to recalculate. + _containerSystem.EmptyContainer(storageComp.Container, destination: coordinates); + } + + /// + /// This function gets called when the user clicked on an item in the storage UI. This will either place the + /// item in the user's hand if it is currently empty, or interact with the item using the user's currently + /// held item. + /// + private void OnInteractWithItem(EntityUid uid, StorageComponent storageComp, StorageInteractWithItemEvent args) + { + if (args.Session.AttachedEntity is not EntityUid player) + return; + + var entity = GetEntity(args.InteractedItemUID); + + if (!Exists(entity)) + { + Log.Error($"Player {args.Session} interacted with non-existent item {args.InteractedItemUID} stored in {ToPrettyString(uid)}"); + return; + } + + if (!_actionBlockerSystem.CanInteract(player, entity) || !storageComp.Container.Contains(entity)) + return; + + // Does the player have hands? + if (!TryComp(player, out HandsComponent? hands) || hands.Count == 0) + return; + + // If the user's active hand is empty, try pick up the item. + if (hands.ActiveHandEntity == null) + { + if (_sharedHandsSystem.TryPickupAnyHand(player, entity, handsComp: hands) + && storageComp.StorageRemoveSound != null) + Audio.PlayPredicted(storageComp.StorageRemoveSound, uid, player); + { + return; + } + } + + // Else, interact using the held item + _interactionSystem.InteractUsing(player, hands.ActiveHandEntity.Value, entity, Transform(entity).Coordinates, checkCanInteract: false); + } + + private void OnInsertItemMessage(EntityUid uid, StorageComponent storageComp, StorageComponent.StorageInsertItemMessage args) + { + if (args.Session.AttachedEntity == null) + return; + + PlayerInsertHeldEntity(uid, args.Session.AttachedEntity.Value, storageComp); + } + + private void OnBoundUIOpen(EntityUid uid, StorageComponent storageComp, BoundUIOpenedEvent args) + { + if (!storageComp.IsUiOpen) + { + storageComp.IsUiOpen = true; + UpdateStorageVisualization(uid, storageComp); + } + } + + private void OnStorageItemInserted(EntityUid uid, StorageComponent component, EntInsertedIntoContainerMessage args) + { + UpdateStorage(uid, component); + } + + private void OnStorageItemRemoved(EntityUid uid, StorageComponent storageComp, EntRemovedFromContainerMessage args) + { + UpdateStorage(uid, storageComp); + } + + protected void UpdateStorageVisualization(EntityUid uid, StorageComponent storageComp) + { + if (!TryComp(uid, out var appearance)) + return; + + _appearance.SetData(uid, StorageVisuals.Open, storageComp.IsUiOpen, appearance); + _appearance.SetData(uid, SharedBagOpenVisuals.BagState, storageComp.IsUiOpen ? SharedBagState.Open : SharedBagState.Closed); + + if (HasComp(uid)) + _appearance.SetData(uid, StackVisuals.Hide, !storageComp.IsUiOpen); + } + + public void RecalculateStorageUsed(StorageComponent storageComp) + { + storageComp.StorageUsed = 0; + + foreach (var entity in storageComp.Container.ContainedEntities) + { + if (!_itemQuery.TryGetComponent(entity, out var itemComp)) + continue; + + var size = itemComp.Size; + storageComp.StorageUsed += size; + } + } + + public int GetAvailableSpace(EntityUid uid, StorageComponent? component = null) + { + if (!Resolve(uid, ref component)) + return 0; + + return component.StorageCapacityMax - component.StorageUsed; + } + + /// + /// Move entities from one storage to another. + /// + public void TransferEntities(EntityUid source, EntityUid target, EntityUid? user = null, + StorageComponent? sourceComp = null, LockComponent? sourceLock = null, + StorageComponent? targetComp = null, LockComponent? targetLock = null) + { + if (!Resolve(source, ref sourceComp) || !Resolve(target, ref targetComp)) + return; + + var entities = sourceComp.Container.ContainedEntities; + if (entities.Count == 0) + return; + + if (Resolve(source, ref sourceLock, false) && sourceLock.Locked + || Resolve(target, ref targetLock, false) && targetLock.Locked) + return; + + foreach (var entity in entities.ToArray()) + { + Insert(target, entity, user, targetComp, playSound: false); + } + + Audio.PlayPredicted(sourceComp.StorageInsertSound, target, user); + } + + /// + /// Verifies if an entity can be stored and if it fits + /// + /// The entity to check + /// If returning false, the reason displayed to the player + /// true if it can be inserted, false otherwise + public bool CanInsert(EntityUid uid, EntityUid insertEnt, out string? reason, StorageComponent? storageComp = null) + { + if (!Resolve(uid, ref storageComp)) + { + reason = null; + return false; + } + + if (TryComp(insertEnt, out TransformComponent? transformComp) && transformComp.Anchored) + { + reason = "comp-storage-anchored-failure"; + return false; + } + + if (storageComp.Whitelist?.IsValid(insertEnt, EntityManager) == false) + { + reason = "comp-storage-invalid-container"; + return false; + } + + if (storageComp.Blacklist?.IsValid(insertEnt, EntityManager) == true) + { + reason = "comp-storage-invalid-container"; + return false; + } + + if (TryComp(insertEnt, out StorageComponent? storage) && + storage.StorageCapacityMax >= storageComp.StorageCapacityMax) + { + reason = "comp-storage-insufficient-capacity"; + return false; + } + + if (TryComp(insertEnt, out ItemComponent? itemComp) && + itemComp.Size > storageComp.StorageCapacityMax - storageComp.StorageUsed) + { + reason = "comp-storage-insufficient-capacity"; + return false; + } + + reason = null; + return true; + } + + /// + /// Inserts into the storage container + /// + /// true if the entity was inserted, false otherwise + public bool Insert(EntityUid uid, EntityUid insertEnt, EntityUid? user = null, StorageComponent? storageComp = null, bool playSound = true) + { + if (!Resolve(uid, ref storageComp) || !CanInsert(uid, insertEnt, out _, storageComp)) + return false; + + /* + * 1. If the inserted thing is stackable then try to stack it to existing stacks + * 2. If anything remains insert whatever is possible. + * 3. If insertion is not possible then leave the stack as is. + * At either rate still play the insertion sound + * + * For now we just treat items as always being the same size regardless of stack count. + */ + + // If it's stackable then prefer to stack it + if (_stackQuery.TryGetComponent(insertEnt, out var insertStack)) + { + var toInsertCount = insertStack.Count; + + foreach (var ent in storageComp.Container.ContainedEntities) + { + if (!_stackQuery.TryGetComponent(ent, out var containedStack) || !insertStack.StackTypeId.Equals(containedStack.StackTypeId)) + continue; + + if (!_stack.TryAdd(insertEnt, ent, insertStack, containedStack)) + continue; + + var remaining = insertStack.Count; + toInsertCount -= toInsertCount - remaining; + + if (remaining > 0) + continue; + + break; + } + + // Still stackable remaining + if (insertStack.Count > 0) + { + // Try to insert it as a new stack. + if (TryComp(insertEnt, out ItemComponent? itemComp) && + itemComp.Size > storageComp.StorageCapacityMax - storageComp.StorageUsed || + !storageComp.Container.Insert(insertEnt)) + { + // If we also didn't do any stack fills above then just end + // otherwise play sound and update UI anyway. + if (toInsertCount == insertStack.Count) + return false; + } + } + } + // Non-stackable but no insertion for reasons. + else if (!storageComp.Container.Insert(insertEnt)) + { + return false; + } + + if (playSound && storageComp.StorageInsertSound is not null) + Audio.PlayPredicted(storageComp.StorageInsertSound, uid, user); + + return true; + } + + /// + /// Inserts an entity into storage from the player's active hand + /// + /// The player to insert an entity from + /// true if inserted, false otherwise + public bool PlayerInsertHeldEntity(EntityUid uid, EntityUid player, StorageComponent? storageComp = null) + { + if (!Resolve(uid, ref storageComp) || !TryComp(player, out HandsComponent? hands) || hands.ActiveHandEntity == null) + return false; + + var toInsert = hands.ActiveHandEntity; + + if (!CanInsert(uid, toInsert.Value, out var reason, storageComp)) + { + _popupSystem.PopupClient(reason ?? Loc.GetString("comp-storage-cant-insert"), uid, player); + return false; + } + + if (!_sharedHandsSystem.TryDrop(player, toInsert.Value, handsComp: hands)) + { + _popupSystem.PopupClient(Loc.GetString("comp-storage-cant-drop"), uid, player); + return false; + } + + return PlayerInsertEntityInWorld(uid, player, toInsert.Value, storageComp); + } + + /// + /// Inserts an Entity () in the world into storage, informing if it fails. + /// is *NOT* held, see . + /// + /// The player to insert an entity with + /// true if inserted, false otherwise + public bool PlayerInsertEntityInWorld(EntityUid uid, EntityUid player, EntityUid toInsert, StorageComponent? storageComp = null) + { + if (!Resolve(uid, ref storageComp) || !_sharedInteractionSystem.InRangeUnobstructed(player, uid)) + return false; + + if (!Insert(uid, toInsert, player, storageComp)) + { + _popupSystem.PopupClient(Loc.GetString("comp-storage-cant-insert"), uid, player); + return false; + } + return true; + } +} diff --git a/Content.Shared/Storage/Events.cs b/Content.Shared/Storage/Events.cs index 4c241ff4adb..c14495e171a 100644 --- a/Content.Shared/Storage/Events.cs +++ b/Content.Shared/Storage/Events.cs @@ -4,16 +4,16 @@ namespace Content.Shared.Storage; [Serializable, NetSerializable] -public sealed class AreaPickupDoAfterEvent : DoAfterEvent +public sealed partial class AreaPickupDoAfterEvent : DoAfterEvent { [DataField("entities", required: true)] - public readonly IReadOnlyList Entities = default!; + public IReadOnlyList Entities = default!; private AreaPickupDoAfterEvent() { } - public AreaPickupDoAfterEvent(List entities) + public AreaPickupDoAfterEvent(List entities) { Entities = entities; } diff --git a/Content.Shared/Storage/SharedStorageComponent.cs b/Content.Shared/Storage/SharedStorageComponent.cs deleted file mode 100644 index 7034d1e138a..00000000000 --- a/Content.Shared/Storage/SharedStorageComponent.cs +++ /dev/null @@ -1,85 +0,0 @@ -using Robust.Shared.GameStates; -using Robust.Shared.Map; -using Robust.Shared.Serialization; - -namespace Content.Shared.Storage -{ - [NetworkedComponent()] - public abstract class SharedStorageComponent : Component - { - [Serializable, NetSerializable] - public sealed class StorageBoundUserInterfaceState : BoundUserInterfaceState - { - public readonly List StoredEntities; - public readonly int StorageSizeUsed; - public readonly int StorageCapacityMax; - - public StorageBoundUserInterfaceState(List storedEntities, int storageSizeUsed, int storageCapacityMax) - { - StoredEntities = storedEntities; - StorageSizeUsed = storageSizeUsed; - StorageCapacityMax = storageCapacityMax; - } - } - - [Serializable, NetSerializable] - public sealed class StorageInsertItemMessage : BoundUserInterfaceMessage - { - } - - [Serializable, NetSerializable] - public sealed class StorageInteractWithItemEvent : BoundUserInterfaceMessage - { - public readonly EntityUid InteractedItemUID; - public StorageInteractWithItemEvent(EntityUid interactedItemUID) - { - InteractedItemUID = interactedItemUID; - } - } - - [Serializable, NetSerializable] - public enum StorageUiKey - { - Key, - } - - public abstract IReadOnlyList? StoredEntities { get; } - - /// - /// Removes from the storage container and updates the stored value - /// - /// The entity to remove - /// True if no longer in storage, false otherwise - public abstract bool Remove(EntityUid entity); - } - - /// - /// Network event for displaying an animation of entities flying into a storage entity - /// - [Serializable, NetSerializable] - public sealed class AnimateInsertingEntitiesEvent : EntityEventArgs - { - public readonly EntityUid Storage; - public readonly List StoredEntities; - public readonly List EntityPositions; - public readonly List EntityAngles; - - public AnimateInsertingEntitiesEvent(EntityUid storage, List storedEntities, List entityPositions, List entityAngles) - { - Storage = storage; - StoredEntities = storedEntities; - EntityPositions = entityPositions; - EntityAngles = entityAngles; - } - } - - [NetSerializable] - [Serializable] - public enum StorageVisuals : byte - { - Open, - HasContents, - CanLock, - Locked - } -} diff --git a/Content.Shared/Storage/StorageComponent.cs b/Content.Shared/Storage/StorageComponent.cs new file mode 100644 index 00000000000..0a924365a42 --- /dev/null +++ b/Content.Shared/Storage/StorageComponent.cs @@ -0,0 +1,135 @@ +using Content.Shared.Whitelist; +using Robust.Shared.Audio; +using Robust.Shared.Containers; +using Robust.Shared.GameStates; +using Robust.Shared.Map; +using Robust.Shared.Serialization; + +namespace Content.Shared.Storage +{ + /// + /// Handles generic storage with window, such as backpacks. + /// + [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] + public sealed partial class StorageComponent : Component + { + // TODO: This fucking sucks + [ViewVariables(VVAccess.ReadWrite), DataField("isOpen"), AutoNetworkedField] + public bool IsUiOpen; + + [ViewVariables] + public Container Container = default!; + + // TODO: Make area insert its own component. + [DataField("quickInsert")] + public bool QuickInsert; // Can insert storables by "attacking" them with the storage entity + + [DataField("clickInsert")] + public bool ClickInsert = true; // Can insert stuff by clicking the storage entity with it + + [DataField("areaInsert")] + public bool AreaInsert; // "Attacking" with the storage entity causes it to insert all nearby storables after a delay + + [DataField("areaInsertRadius")] + public int AreaInsertRadius = 1; + + /// + /// Whitelist for entities that can go into the storage. + /// + [DataField("whitelist")] + public EntityWhitelist? Whitelist; + + /// + /// Blacklist for entities that can go into storage. + /// + [DataField("blacklist")] + public EntityWhitelist? Blacklist; + + /// + /// How much storage is currently being used by contained entities. + /// + [ViewVariables, DataField("storageUsed"), AutoNetworkedField] + public int StorageUsed; + + /// + /// Maximum capacity for storage. + /// + [DataField("capacity"), AutoNetworkedField] + public int StorageCapacityMax = 10000; + + /// + /// Sound played whenever an entity is inserted into storage. + /// + [DataField("storageInsertSound")] + public SoundSpecifier? StorageInsertSound = new SoundCollectionSpecifier("storageRustle"); + + /// + /// Sound played whenever an entity is removed from storage. + /// + [DataField("storageRemoveSound")] + public SoundSpecifier? StorageRemoveSound; + + /// + /// Sound played whenever the storage window is opened. + /// + [DataField("storageOpenSound")] + public SoundSpecifier? StorageOpenSound = new SoundCollectionSpecifier("storageRustle"); + + /// + /// Sound played whenever the storage window is closed. + /// + [DataField("storageCloseSound")] + public SoundSpecifier? StorageCloseSound; + + [Serializable, NetSerializable] + public sealed class StorageInsertItemMessage : BoundUserInterfaceMessage + { + } + + [Serializable, NetSerializable] + public enum StorageUiKey + { + Key, + } + } + + [Serializable, NetSerializable] + public sealed class StorageInteractWithItemEvent : BoundUserInterfaceMessage + { + public readonly NetEntity InteractedItemUID; + public StorageInteractWithItemEvent(NetEntity interactedItemUID) + { + InteractedItemUID = interactedItemUID; + } + } + + /// + /// Network event for displaying an animation of entities flying into a storage entity + /// + [Serializable, NetSerializable] + public sealed class AnimateInsertingEntitiesEvent : EntityEventArgs + { + public readonly NetEntity Storage; + public readonly List StoredEntities; + public readonly List EntityPositions; + public readonly List EntityAngles; + + public AnimateInsertingEntitiesEvent(NetEntity storage, List storedEntities, List entityPositions, List entityAngles) + { + Storage = storage; + StoredEntities = storedEntities; + EntityPositions = entityPositions; + EntityAngles = entityAngles; + } + } + + [NetSerializable] + [Serializable] + public enum StorageVisuals : byte + { + Open, + HasContents, + CanLock, + Locked + } +} diff --git a/Content.Shared/Store/CurrencyPrototype.cs b/Content.Shared/Store/CurrencyPrototype.cs index b01b2969e9a..5dafbfd91fb 100644 --- a/Content.Shared/Store/CurrencyPrototype.cs +++ b/Content.Shared/Store/CurrencyPrototype.cs @@ -1,6 +1,7 @@ using Content.Shared.FixedPoint; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Dictionary; namespace Content.Shared.Store; @@ -11,11 +12,11 @@ namespace Content.Shared.Store; /// [Prototype("currency")] [DataDefinition, Serializable, NetSerializable] -public sealed class CurrencyPrototype : IPrototype +public sealed partial class CurrencyPrototype : IPrototype { [ViewVariables] [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// /// The Loc string used for displaying the currency in the store ui. @@ -23,17 +24,17 @@ public sealed class CurrencyPrototype : IPrototype /// that which is displayed to the user. /// [DataField("displayName")] - public string DisplayName { get; } = string.Empty; + public string DisplayName { get; private set; } = string.Empty; /// /// The physical entity of the currency /// - [DataField("cash")] //TODO: you get your customTypeSerializer when FixedPoint2 works in them! -emo - public Dictionary? Cash { get; } + [DataField("cash", customTypeSerializer: typeof(PrototypeIdValueDictionarySerializer))] + public Dictionary? Cash { get; private set; } /// /// Whether or not this currency can be withdrawn from a shop by a player. Requires a valid entityId. /// [DataField("canWithdraw")] - public bool CanWithdraw { get; } = true; + public bool CanWithdraw { get; private set; } = true; } diff --git a/Content.Shared/Store/ListingCondition.cs b/Content.Shared/Store/ListingCondition.cs index 7b205bc1601..be3947aadc9 100644 --- a/Content.Shared/Store/ListingCondition.cs +++ b/Content.Shared/Store/ListingCondition.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Store; /// [ImplicitDataDefinitionForInheritors] [MeansImplicitUse] -public abstract class ListingCondition +public abstract partial class ListingCondition { /// /// Determines whether or not a certain entity can purchase a listing. diff --git a/Content.Shared/Store/ListingPrototype.cs b/Content.Shared/Store/ListingPrototype.cs index 325d7e62c7b..e695c30e5cd 100644 --- a/Content.Shared/Store/ListingPrototype.cs +++ b/Content.Shared/Store/ListingPrototype.cs @@ -1,12 +1,11 @@ +using System.Linq; +using Content.Shared.FixedPoint; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Dictionary; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Dictionary; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; using Robust.Shared.Utility; -using Content.Shared.Actions.ActionTypes; -using Content.Shared.FixedPoint; -using System.Linq; namespace Content.Shared.Store; @@ -17,7 +16,7 @@ namespace Content.Shared.Store; /// [Serializable, NetSerializable] [Virtual, DataDefinition] -public class ListingData : IEquatable, ICloneable +public partial class ListingData : IEquatable, ICloneable { /// /// The name of the listing. If empty, uses the entity's name (if present) @@ -71,7 +70,7 @@ public class ListingData : IEquatable, ICloneable /// /// The action that is given when the listing is purchased. /// - [DataField("productAction", customTypeSerializer: typeof(PrototypeIdSerializer))] + [DataField("productAction", customTypeSerializer: typeof(PrototypeIdSerializer))] public string? ProductAction; /// @@ -148,9 +147,9 @@ public object Clone() [Prototype("listing")] [Serializable, NetSerializable] [DataDefinition] -public sealed class ListingPrototype : ListingData, IPrototype +public sealed partial class ListingPrototype : ListingData, IPrototype { [ViewVariables] [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; } diff --git a/Content.Shared/Store/StoreCategoryPrototype.cs b/Content.Shared/Store/StoreCategoryPrototype.cs index 10c020ebc65..c13eaf50626 100644 --- a/Content.Shared/Store/StoreCategoryPrototype.cs +++ b/Content.Shared/Store/StoreCategoryPrototype.cs @@ -8,17 +8,17 @@ namespace Content.Shared.Store; /// [Prototype("storeCategory")] [Serializable, NetSerializable, DataDefinition] -public sealed class StoreCategoryPrototype : IPrototype +public sealed partial class StoreCategoryPrototype : IPrototype { private string _name = string.Empty; [ViewVariables] [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [DataField("name")] public string Name { get; private set; } = ""; [DataField("priority")] - public int Priority { get; } = 0; + public int Priority { get; private set; } = 0; } diff --git a/Content.Shared/Store/StorePresetPrototype.cs b/Content.Shared/Store/StorePresetPrototype.cs index 961f8cbf959..ce7f0312b60 100644 --- a/Content.Shared/Store/StorePresetPrototype.cs +++ b/Content.Shared/Store/StorePresetPrototype.cs @@ -10,32 +10,32 @@ namespace Content.Shared.Store; /// [Prototype("storePreset")] [DataDefinition] -public sealed class StorePresetPrototype : IPrototype +public sealed partial class StorePresetPrototype : IPrototype { - [ViewVariables] [IdDataField] public string ID { get; } = default!; + [ViewVariables] [IdDataField] public string ID { get; private set; } = default!; /// /// The name displayed at the top of the store window /// [DataField("storeName", required: true)] - public string StoreName { get; } = string.Empty; + public string StoreName { get; private set; } = string.Empty; /// /// The categories that this store can access /// [DataField("categories", customTypeSerializer: typeof(PrototypeIdHashSetSerializer))] - public HashSet Categories { get; } = new(); + public HashSet Categories { get; private set; } = new(); /// /// The inital balance that the store initializes with. /// [DataField("initialBalance", customTypeSerializer: typeof(PrototypeIdDictionarySerializer))] - public Dictionary? InitialBalance { get; } + public Dictionary? InitialBalance { get; private set; } /// /// The currencies that are accepted in the store /// [DataField("currencyWhitelist", customTypeSerializer: typeof(PrototypeIdHashSetSerializer))] - public HashSet CurrencyWhitelist { get; } = new(); + public HashSet CurrencyWhitelist { get; private set; } = new(); } diff --git a/Content.Shared/Strip/Components/StrippableComponent.cs b/Content.Shared/Strip/Components/StrippableComponent.cs index ba5c50fc0f9..fbf99992e3c 100644 --- a/Content.Shared/Strip/Components/StrippableComponent.cs +++ b/Content.Shared/Strip/Components/StrippableComponent.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Strip.Components { [RegisterComponent, NetworkedComponent] - public sealed class StrippableComponent : Component + public sealed partial class StrippableComponent : Component { /// /// The strip delay for hands. diff --git a/Content.Shared/Strip/Components/StrippingComponent.cs b/Content.Shared/Strip/Components/StrippingComponent.cs index 6893e28d946..1432a00e28c 100644 --- a/Content.Shared/Strip/Components/StrippingComponent.cs +++ b/Content.Shared/Strip/Components/StrippingComponent.cs @@ -6,5 +6,5 @@ namespace Content.Shared.Strip.Components /// Give to an entity to say they can strip another entity. /// [RegisterComponent, NetworkedComponent] - public sealed class StrippingComponent : Component {} + public sealed partial class StrippingComponent : Component {} } diff --git a/Content.Shared/Strip/Components/ThievingComponent.cs b/Content.Shared/Strip/Components/ThievingComponent.cs index 2ebf41f41fb..83679f132c4 100644 --- a/Content.Shared/Strip/Components/ThievingComponent.cs +++ b/Content.Shared/Strip/Components/ThievingComponent.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Strip.Components; /// Give this to an entity when you want to decrease stripping times /// [RegisterComponent] -public sealed class ThievingComponent : Component +public sealed partial class ThievingComponent : Component { /// /// How much the strip time should be shortened by diff --git a/Content.Shared/Stunnable/StunnedComponent.cs b/Content.Shared/Stunnable/StunnedComponent.cs index d083b16448a..51a27ac90a6 100644 --- a/Content.Shared/Stunnable/StunnedComponent.cs +++ b/Content.Shared/Stunnable/StunnedComponent.cs @@ -3,6 +3,6 @@ namespace Content.Shared.Stunnable; [RegisterComponent, NetworkedComponent, Access(typeof(SharedStunSystem))] -public sealed class StunnedComponent : Component +public sealed partial class StunnedComponent : Component { } diff --git a/Content.Shared/SubFloor/SubFloorHideComponent.cs b/Content.Shared/SubFloor/SubFloorHideComponent.cs index 415b2127e97..284a4b871f5 100644 --- a/Content.Shared/SubFloor/SubFloorHideComponent.cs +++ b/Content.Shared/SubFloor/SubFloorHideComponent.cs @@ -13,7 +13,7 @@ namespace Content.Shared.SubFloor [NetworkedComponent] [RegisterComponent] [Access(typeof(SharedSubFloorHideSystem))] - public sealed class SubFloorHideComponent : Component + public sealed partial class SubFloorHideComponent : Component { /// /// Whether the entity's current position has a "Floor-type" tile above its current position. diff --git a/Content.Shared/SubFloor/TrayScannerComponent.cs b/Content.Shared/SubFloor/TrayScannerComponent.cs index 811d120a1da..98e43246a84 100644 --- a/Content.Shared/SubFloor/TrayScannerComponent.cs +++ b/Content.Shared/SubFloor/TrayScannerComponent.cs @@ -4,7 +4,7 @@ namespace Content.Shared.SubFloor; [RegisterComponent, NetworkedComponent] -public sealed class TrayScannerComponent : Component +public sealed partial class TrayScannerComponent : Component { /// /// Whether the scanner is currently on. diff --git a/Content.Shared/SurveillanceCamera/SharedSurveillanceCameraMonitorSystem.cs b/Content.Shared/SurveillanceCamera/SharedSurveillanceCameraMonitorSystem.cs index 9f64ff31fac..cc6193a0904 100644 --- a/Content.Shared/SurveillanceCamera/SharedSurveillanceCameraMonitorSystem.cs +++ b/Content.Shared/SurveillanceCamera/SharedSurveillanceCameraMonitorSystem.cs @@ -9,7 +9,7 @@ public sealed class SurveillanceCameraMonitorUiState : BoundUserInterfaceState { // The active camera on the monitor. If this is null, the part of the UI // that contains the monitor should clear. - public EntityUid? ActiveCamera { get; } + public NetEntity? ActiveCamera { get; } // Currently available subnets. Does not send the entirety of the possible // cameras to view because that could be really, really large @@ -23,7 +23,7 @@ public sealed class SurveillanceCameraMonitorUiState : BoundUserInterfaceState // Known cameras, by address and name. public Dictionary Cameras { get; } - public SurveillanceCameraMonitorUiState(EntityUid? activeCamera, HashSet subnets, string activeAddress, string activeSubnet, Dictionary cameras) + public SurveillanceCameraMonitorUiState(NetEntity? activeCamera, HashSet subnets, string activeAddress, string activeSubnet, Dictionary cameras) { ActiveCamera = activeCamera; Subnets = subnets; diff --git a/Content.Shared/Swab/SwabEvents.cs b/Content.Shared/Swab/SwabEvents.cs index 39567af9939..3c9fcbef417 100644 --- a/Content.Shared/Swab/SwabEvents.cs +++ b/Content.Shared/Swab/SwabEvents.cs @@ -4,6 +4,6 @@ namespace Content.Shared.Swab; [Serializable, NetSerializable] -public sealed class BotanySwabDoAfterEvent : SimpleDoAfterEvent +public sealed partial class BotanySwabDoAfterEvent : SimpleDoAfterEvent { } diff --git a/Content.Shared/Tabletop/Components/TabletopDraggableComponent.cs b/Content.Shared/Tabletop/Components/TabletopDraggableComponent.cs index 8bd3754bc72..e1aa281d17d 100644 --- a/Content.Shared/Tabletop/Components/TabletopDraggableComponent.cs +++ b/Content.Shared/Tabletop/Components/TabletopDraggableComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Tabletop.Components; /// [NetworkedComponent] [RegisterComponent] -public sealed class TabletopDraggableComponent : Component +public sealed partial class TabletopDraggableComponent : Component { // The player dragging the piece [ViewVariables] diff --git a/Content.Shared/Tabletop/Events/TabletopDraggingPlayerChangedEvent.cs b/Content.Shared/Tabletop/Events/TabletopDraggingPlayerChangedEvent.cs index 8f32327db0f..f51cb89634a 100644 --- a/Content.Shared/Tabletop/Events/TabletopDraggingPlayerChangedEvent.cs +++ b/Content.Shared/Tabletop/Events/TabletopDraggingPlayerChangedEvent.cs @@ -12,11 +12,11 @@ public sealed class TabletopDraggingPlayerChangedEvent : EntityEventArgs /// /// The UID of the entity being dragged. /// - public EntityUid DraggedEntityUid; + public NetEntity DraggedEntityUid; public bool IsDragging; - public TabletopDraggingPlayerChangedEvent(EntityUid draggedEntityUid, bool isDragging) + public TabletopDraggingPlayerChangedEvent(NetEntity draggedEntityUid, bool isDragging) { DraggedEntityUid = draggedEntityUid; IsDragging = isDragging; diff --git a/Content.Shared/Tabletop/Events/TabletopMoveEvent.cs b/Content.Shared/Tabletop/Events/TabletopMoveEvent.cs index f6ac2e53a04..8abbd90aece 100644 --- a/Content.Shared/Tabletop/Events/TabletopMoveEvent.cs +++ b/Content.Shared/Tabletop/Events/TabletopMoveEvent.cs @@ -14,7 +14,7 @@ public sealed class TabletopMoveEvent : EntityEventArgs /// /// The UID of the entity being moved. /// - public EntityUid MovedEntityUid { get; } + public NetEntity MovedEntityUid { get; } /// /// The new coordinates of the entity being moved. @@ -24,9 +24,9 @@ public sealed class TabletopMoveEvent : EntityEventArgs /// /// The UID of the table the entity is being moved on. /// - public EntityUid TableUid { get; } + public NetEntity TableUid { get; } - public TabletopMoveEvent(EntityUid movedEntityUid, MapCoordinates coordinates, EntityUid tableUid) + public TabletopMoveEvent(NetEntity movedEntityUid, MapCoordinates coordinates, NetEntity tableUid) { MovedEntityUid = movedEntityUid; Coordinates = coordinates; diff --git a/Content.Shared/Tabletop/Events/TabletopPlayEvent.cs b/Content.Shared/Tabletop/Events/TabletopPlayEvent.cs index dfd3079e2f2..566434bce77 100644 --- a/Content.Shared/Tabletop/Events/TabletopPlayEvent.cs +++ b/Content.Shared/Tabletop/Events/TabletopPlayEvent.cs @@ -8,12 +8,12 @@ namespace Content.Shared.Tabletop.Events [Serializable, NetSerializable] public sealed class TabletopPlayEvent : EntityEventArgs { - public EntityUid TableUid; - public EntityUid CameraUid; + public NetEntity TableUid; + public NetEntity CameraUid; public string Title; public Vector2i Size; - public TabletopPlayEvent(EntityUid tableUid, EntityUid cameraUid, string title, Vector2i size) + public TabletopPlayEvent(NetEntity tableUid, NetEntity cameraUid, string title, Vector2i size) { TableUid = tableUid; CameraUid = cameraUid; diff --git a/Content.Shared/Tabletop/Events/TabletopStopPlayingEvent.cs b/Content.Shared/Tabletop/Events/TabletopStopPlayingEvent.cs index f52bede662b..23301dec4a5 100644 --- a/Content.Shared/Tabletop/Events/TabletopStopPlayingEvent.cs +++ b/Content.Shared/Tabletop/Events/TabletopStopPlayingEvent.cs @@ -11,9 +11,9 @@ public sealed class TabletopStopPlayingEvent : EntityEventArgs /// /// The entity UID of the table associated with this tabletop game. /// - public EntityUid TableUid; + public NetEntity TableUid; - public TabletopStopPlayingEvent(EntityUid tableUid) + public TabletopStopPlayingEvent(NetEntity tableUid) { TableUid = tableUid; } diff --git a/Content.Shared/Tabletop/SharedTabletopSystem.cs b/Content.Shared/Tabletop/SharedTabletopSystem.cs index 542542054a9..1ff90303411 100644 --- a/Content.Shared/Tabletop/SharedTabletopSystem.cs +++ b/Content.Shared/Tabletop/SharedTabletopSystem.cs @@ -35,12 +35,15 @@ protected virtual void OnTabletopMove(TabletopMoveEvent msg, EntitySessionEventA if (args.SenderSession is not { AttachedEntity: { } playerEntity } playerSession) return; - if (!CanSeeTable(playerEntity, msg.TableUid) || !CanDrag(playerEntity, msg.MovedEntityUid, out _)) + var table = GetEntity(msg.TableUid); + var moved = GetEntity(msg.MovedEntityUid); + + if (!CanSeeTable(playerEntity, table) || !CanDrag(playerEntity, moved, out _)) return; // Move the entity and dirty it (we use the map ID from the entity so noone can try to be funny and move the item to another map) - var transform = EntityManager.GetComponent(msg.MovedEntityUid); - _transforms.SetParent(msg.MovedEntityUid, transform, _mapMan.GetMapEntityId(transform.MapID)); + var transform = EntityManager.GetComponent(moved); + _transforms.SetParent(moved, transform, _mapMan.GetMapEntityId(transform.MapID)); _transforms.SetLocalPositionNoLerp(transform, msg.Coordinates.Position); } @@ -51,13 +54,13 @@ private void GetDraggableState(EntityUid uid, TabletopDraggableComponent compone private void OnDraggingPlayerChanged(TabletopDraggingPlayerChangedEvent msg, EntitySessionEventArgs args) { - var dragged = msg.DraggedEntityUid; + var dragged = GetEntity(msg.DraggedEntityUid); if (!TryComp(dragged, out TabletopDraggableComponent? draggableComponent)) return; draggableComponent.DraggingPlayer = msg.IsDragging ? args.SenderSession.UserId : null; - Dirty(draggableComponent); + Dirty(dragged, draggableComponent); if (!TryComp(dragged, out AppearanceComponent? appearance)) return; @@ -89,8 +92,8 @@ public TabletopDraggableComponentState(NetUserId? draggingPlayer) [Serializable, NetSerializable] public sealed class TabletopRequestTakeOut : EntityEventArgs { - public EntityUid Entity; - public EntityUid TableUid; + public NetEntity Entity; + public NetEntity TableUid; } #region Utility diff --git a/Content.Shared/Tag/TagComponent.cs b/Content.Shared/Tag/TagComponent.cs index b2809e0fe6b..abb79be7624 100644 --- a/Content.Shared/Tag/TagComponent.cs +++ b/Content.Shared/Tag/TagComponent.cs @@ -3,10 +3,10 @@ namespace Content.Shared.Tag { [RegisterComponent, Access(typeof(TagSystem))] - public sealed class TagComponent : Component + public sealed partial class TagComponent : Component { [DataField("tags", customTypeSerializer: typeof(PrototypeIdHashSetSerializer))] [Access(typeof(TagSystem), Other = AccessPermissions.ReadExecute)] // FIXME Friends - public readonly HashSet Tags = new(); + public HashSet Tags = new(); } } diff --git a/Content.Shared/Tag/TagPrototype.cs b/Content.Shared/Tag/TagPrototype.cs index f67a224eb92..b227cf82b58 100644 --- a/Content.Shared/Tag/TagPrototype.cs +++ b/Content.Shared/Tag/TagPrototype.cs @@ -12,6 +12,6 @@ public sealed class TagPrototype : IPrototype { [ViewVariables] [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; } } diff --git a/Content.Shared/Teleportation/Components/HandTeleporterComponent.cs b/Content.Shared/Teleportation/Components/HandTeleporterComponent.cs index 89aab9766ee..6abd4a7d211 100644 --- a/Content.Shared/Teleportation/Components/HandTeleporterComponent.cs +++ b/Content.Shared/Teleportation/Components/HandTeleporterComponent.cs @@ -12,7 +12,7 @@ namespace Content.Shared.Teleportation.Components; /// Using it with both portals active deactivates both. /// [RegisterComponent, NetworkedComponent] -public sealed class HandTeleporterComponent : Component +public sealed partial class HandTeleporterComponent : Component { [ViewVariables, DataField("firstPortal")] public EntityUid? FirstPortal = null; @@ -43,6 +43,6 @@ public sealed class HandTeleporterComponent : Component } [Serializable, NetSerializable] -public sealed class TeleporterDoAfterEvent : SimpleDoAfterEvent +public sealed partial class TeleporterDoAfterEvent : SimpleDoAfterEvent { } diff --git a/Content.Shared/Teleportation/Components/LinkedEntityComponent.cs b/Content.Shared/Teleportation/Components/LinkedEntityComponent.cs index 40850ae6dfb..ae9a1a03d0d 100644 --- a/Content.Shared/Teleportation/Components/LinkedEntityComponent.cs +++ b/Content.Shared/Teleportation/Components/LinkedEntityComponent.cs @@ -9,7 +9,7 @@ namespace Content.Shared.Teleportation.Components; /// thrown into to teleport an entity. /// [RegisterComponent, Access(typeof(LinkedEntitySystem)), NetworkedComponent] -public sealed class LinkedEntityComponent : Component +public sealed partial class LinkedEntityComponent : Component { /// /// The entities that this entity is linked to. @@ -27,9 +27,9 @@ public sealed class LinkedEntityComponent : Component [Serializable, NetSerializable] public sealed class LinkedEntityComponentState : ComponentState { - public HashSet LinkedEntities; + public HashSet LinkedEntities; - public LinkedEntityComponentState(HashSet linkedEntities) + public LinkedEntityComponentState(HashSet linkedEntities) { LinkedEntities = linkedEntities; } diff --git a/Content.Shared/Teleportation/Components/PortalComponent.cs b/Content.Shared/Teleportation/Components/PortalComponent.cs index e663057f74f..eb81070a1e2 100644 --- a/Content.Shared/Teleportation/Components/PortalComponent.cs +++ b/Content.Shared/Teleportation/Components/PortalComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Teleportation.Components; /// Relies on being set up. /// [RegisterComponent, NetworkedComponent] -public sealed class PortalComponent : Component +public sealed partial class PortalComponent : Component { /// /// Sound played on arriving to this portal, centered on the destination. @@ -35,7 +35,7 @@ public sealed class PortalComponent : Component /// /// Shouldn't be able to teleport people to centcomm or the eshuttle from the station /// - [DataField("canTeleportToOtherMaps")] + [DataField("canTeleportToOtherMaps"), ViewVariables(VVAccess.ReadWrite)] public bool CanTeleportToOtherMaps = false; /// diff --git a/Content.Shared/Teleportation/Components/PortalTimeoutComponent.cs b/Content.Shared/Teleportation/Components/PortalTimeoutComponent.cs index 96306198a6c..37441508e11 100644 --- a/Content.Shared/Teleportation/Components/PortalTimeoutComponent.cs +++ b/Content.Shared/Teleportation/Components/PortalTimeoutComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Teleportation.Components; /// at the end destination. /// [RegisterComponent, NetworkedComponent] -public sealed class PortalTimeoutComponent : Component +public sealed partial class PortalTimeoutComponent : Component { /// /// The portal that was entered. Null if coming from a hand teleporter, etc. @@ -20,9 +20,9 @@ public sealed class PortalTimeoutComponent : Component [Serializable, NetSerializable] public sealed class PortalTimeoutComponentState : ComponentState { - public EntityUid? EnteredPortal; + public NetEntity? EnteredPortal; - public PortalTimeoutComponentState(EntityUid? enteredPortal) + public PortalTimeoutComponentState(NetEntity? enteredPortal) { EnteredPortal = enteredPortal; } diff --git a/Content.Shared/Teleportation/Systems/LinkedEntitySystem.cs b/Content.Shared/Teleportation/Systems/LinkedEntitySystem.cs index 165e136505b..12667e48860 100644 --- a/Content.Shared/Teleportation/Systems/LinkedEntitySystem.cs +++ b/Content.Shared/Teleportation/Systems/LinkedEntitySystem.cs @@ -26,13 +26,15 @@ public override void Initialize() private void OnGetState(EntityUid uid, LinkedEntityComponent component, ref ComponentGetState args) { - args.State = new LinkedEntityComponentState(component.LinkedEntities); + args.State = new LinkedEntityComponentState(GetNetEntitySet(component.LinkedEntities)); } private void OnHandleState(EntityUid uid, LinkedEntityComponent component, ref ComponentHandleState args) { if (args.Current is LinkedEntityComponentState state) - component.LinkedEntities = state.LinkedEntities; + { + component.LinkedEntities = EnsureEntitySet(state.LinkedEntities, uid); + } } private void OnLinkShutdown(EntityUid uid, LinkedEntityComponent component, ComponentShutdown args) diff --git a/Content.Shared/Teleportation/Systems/SharedPortalSystem.cs b/Content.Shared/Teleportation/Systems/SharedPortalSystem.cs index 59c6eee6045..1ecaca57c3c 100644 --- a/Content.Shared/Teleportation/Systems/SharedPortalSystem.cs +++ b/Content.Shared/Teleportation/Systems/SharedPortalSystem.cs @@ -50,7 +50,7 @@ public override void Initialize() private void OnGetVerbs(EntityUid uid, PortalComponent component, GetVerbsEvent args) { // Traversal altverb for ghosts to use that bypasses normal functionality - if (!args.CanAccess || !HasComp(args.User)) + if (!args.CanAccess || !HasComp(args.User)) return; // Don't use the verb with unlinked or with multi-output portals @@ -79,25 +79,25 @@ private void OnGetVerbs(EntityUid uid, PortalComponent component, GetVerbsEvent< private void OnGetState(EntityUid uid, PortalTimeoutComponent component, ref ComponentGetState args) { - args.State = new PortalTimeoutComponentState(component.EnteredPortal); + args.State = new PortalTimeoutComponentState(GetNetEntity(component.EnteredPortal)); } private void OnHandleState(EntityUid uid, PortalTimeoutComponent component, ref ComponentHandleState args) { if (args.Current is PortalTimeoutComponentState state) - component.EnteredPortal = state.EnteredPortal; + component.EnteredPortal = EnsureEntity(state.EnteredPortal, uid); } - private bool ShouldCollide(Fixture our, Fixture other) + private bool ShouldCollide(string ourId, string otherId, Fixture our, Fixture other) { // most non-hard fixtures shouldn't pass through portals, but projectiles are non-hard as well // and they should still pass through - return our.ID == PortalFixture && (other.Hard || other.ID == ProjectileFixture); + return ourId == PortalFixture && (other.Hard || otherId == ProjectileFixture); } private void OnCollide(EntityUid uid, PortalComponent component, ref StartCollideEvent args) { - if (!ShouldCollide(args.OurFixture, args.OtherFixture)) + if (!ShouldCollide(args.OurFixtureId, args.OtherFixtureId, args.OurFixture, args.OtherFixture)) return; var subject = args.OtherEntity; @@ -163,7 +163,7 @@ private void OnCollide(EntityUid uid, PortalComponent component, ref StartCollid private void OnEndCollide(EntityUid uid, PortalComponent component, ref EndCollideEvent args) { - if (!ShouldCollide(args.OurFixture, args.OtherFixture)) + if (!ShouldCollide(args.OurFixtureId, args.OtherFixtureId,args.OurFixture, args.OtherFixture)) return; var subject = args.OtherEntity; diff --git a/Content.Shared/Throwing/ThrowingSystem.cs b/Content.Shared/Throwing/ThrowingSystem.cs index 95232ae5659..e98beb96c9e 100644 --- a/Content.Shared/Throwing/ThrowingSystem.cs +++ b/Content.Shared/Throwing/ThrowingSystem.cs @@ -29,7 +29,6 @@ public sealed class ThrowingSystem : EntitySystem [Dependency] private readonly SharedPhysicsSystem _physics = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly ThrownItemSystem _thrownSystem = default!; - [Dependency] private readonly TagSystem _tagSystem = default!; public void TryThrow( EntityUid uid, diff --git a/Content.Shared/Throwing/ThrownItemComponent.cs b/Content.Shared/Throwing/ThrownItemComponent.cs index d95eda3feb6..eb09127dea8 100644 --- a/Content.Shared/Throwing/ThrownItemComponent.cs +++ b/Content.Shared/Throwing/ThrownItemComponent.cs @@ -4,17 +4,18 @@ namespace Content.Shared.Throwing { [RegisterComponent, NetworkedComponent] - public sealed class ThrownItemComponent : Component + public sealed partial class ThrownItemComponent : Component { + [ViewVariables(VVAccess.ReadWrite), DataField("thrower")] public EntityUid? Thrower { get; set; } } [Serializable, NetSerializable] public sealed class ThrownItemComponentState : ComponentState { - public EntityUid? Thrower { get; } + public NetEntity? Thrower { get; } - public ThrownItemComponentState(EntityUid? thrower) + public ThrownItemComponentState(NetEntity? thrower) { Thrower = thrower; } diff --git a/Content.Shared/Throwing/ThrownItemSystem.cs b/Content.Shared/Throwing/ThrownItemSystem.cs index c2ec72cfcb3..7fb1cc6b8a5 100644 --- a/Content.Shared/Throwing/ThrownItemSystem.cs +++ b/Content.Shared/Throwing/ThrownItemSystem.cs @@ -19,7 +19,6 @@ public sealed class ThrownItemSystem : EntitySystem { [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; [Dependency] private readonly SharedBroadphaseSystem _broadphase = default!; - [Dependency] private readonly SharedContainerSystem _containerSystem = default!; [Dependency] private readonly FixtureSystem _fixtures = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; @@ -39,7 +38,7 @@ public override void Initialize() private void OnGetState(EntityUid uid, ThrownItemComponent component, ref ComponentGetState args) { - args.State = new ThrownItemComponentState(component.Thrower); + args.State = new ThrownItemComponentState(GetNetEntity(component.Thrower)); } private void OnHandleState(EntityUid uid, ThrownItemComponent component, ref ComponentHandleState args) @@ -50,7 +49,7 @@ private void OnHandleState(EntityUid uid, ThrownItemComponent component, ref Com return; } - component.Thrower = state.Thrower.Value; + component.Thrower = EnsureEntity(state.Thrower.Value, uid); } private void ThrowItem(EntityUid uid, ThrownItemComponent component, ThrownEvent args) @@ -111,7 +110,7 @@ public void StopThrow(EntityUid uid, ThrownItemComponent thrownItemComponent) if (fixture != null) { - _fixtures.DestroyFixture(uid, fixture, manager: manager); + _fixtures.DestroyFixture(uid, ThrowingFixture, fixture, manager: manager); } } diff --git a/Content.Shared/Tiles/FloorTileComponent.cs b/Content.Shared/Tiles/FloorTileComponent.cs index df4d5296198..6d497c003d7 100644 --- a/Content.Shared/Tiles/FloorTileComponent.cs +++ b/Content.Shared/Tiles/FloorTileComponent.cs @@ -10,7 +10,7 @@ namespace Content.Shared.Tiles /// A lot of materials use this too. Note that the AfterInteract will fail without a stack component on the item. /// [RegisterComponent, NetworkedComponent] - public sealed class FloorTileComponent : Component + public sealed partial class FloorTileComponent : Component { [DataField("outputs", customTypeSerializer: typeof(PrototypeIdListSerializer))] public List? OutputTiles; diff --git a/Content.Shared/Tiles/ProtectedGridComponent.cs b/Content.Shared/Tiles/ProtectedGridComponent.cs index 2848c1cee93..cf71edbe2bf 100644 --- a/Content.Shared/Tiles/ProtectedGridComponent.cs +++ b/Content.Shared/Tiles/ProtectedGridComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Tiles; /// Prevents floor tile updates when attached to a grid. /// [RegisterComponent, NetworkedComponent] -public sealed class ProtectedGridComponent : Component +public sealed partial class ProtectedGridComponent : Component { } diff --git a/Content.Shared/Tiles/RequiresTileComponent.cs b/Content.Shared/Tiles/RequiresTileComponent.cs index 52e646ed2a1..2ad70f635d9 100644 --- a/Content.Shared/Tiles/RequiresTileComponent.cs +++ b/Content.Shared/Tiles/RequiresTileComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Tiles; /// Deletes the entity if the tile changes from under it. Used for visual effects. /// [RegisterComponent, NetworkedComponent] -public sealed class RequiresTileComponent : Component +public sealed partial class RequiresTileComponent : Component { } diff --git a/Content.Shared/Timing/UseDelayComponent.cs b/Content.Shared/Timing/UseDelayComponent.cs index 8960ad688c8..aa12f04847a 100644 --- a/Content.Shared/Timing/UseDelayComponent.cs +++ b/Content.Shared/Timing/UseDelayComponent.cs @@ -9,7 +9,7 @@ namespace Content.Shared.Timing /// [RegisterComponent] [NetworkedComponent] - public sealed class UseDelayComponent : Component + public sealed partial class UseDelayComponent : Component { public TimeSpan LastUseTime; diff --git a/Content.Shared/Toggleable/ToggleActionEvent.cs b/Content.Shared/Toggleable/ToggleActionEvent.cs index 7f6bac25dde..1283b6699bf 100644 --- a/Content.Shared/Toggleable/ToggleActionEvent.cs +++ b/Content.Shared/Toggleable/ToggleActionEvent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Toggleable; /// /// Generic action-event for toggle-able components. /// -public sealed class ToggleActionEvent : InstantActionEvent { } +public sealed partial class ToggleActionEvent : InstantActionEvent { } /// /// Generic enum keys for toggle-visualizer appearance data & sprite layers. diff --git a/Content.Shared/Toilet/ToiletComponent.cs b/Content.Shared/Toilet/ToiletComponent.cs index b0486a54f0a..161bf81c992 100644 --- a/Content.Shared/Toilet/ToiletComponent.cs +++ b/Content.Shared/Toilet/ToiletComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Toilet { [RegisterComponent] - public sealed class ToiletComponent : Component + public sealed partial class ToiletComponent : Component { [DataField("pryLidTime")] public float PryLidTime = 1f; @@ -26,7 +26,7 @@ public sealed class ToiletComponent : Component } [Serializable, NetSerializable] - public sealed class ToiletPryDoAfterEvent : SimpleDoAfterEvent + public sealed partial class ToiletPryDoAfterEvent : SimpleDoAfterEvent { } } diff --git a/Content.Server/Tools/Components/LayerChangeOnWeldComponent.cs b/Content.Shared/Tools/Components/LayerChangeOnWeldComponent.cs similarity index 58% rename from Content.Server/Tools/Components/LayerChangeOnWeldComponent.cs rename to Content.Shared/Tools/Components/LayerChangeOnWeldComponent.cs index d7da170c000..165cd41e69d 100644 --- a/Content.Server/Tools/Components/LayerChangeOnWeldComponent.cs +++ b/Content.Shared/Tools/Components/LayerChangeOnWeldComponent.cs @@ -1,11 +1,12 @@ -using Content.Server.Tools.Systems; using Content.Shared.Physics; +using Content.Shared.Tools.Systems; +using Robust.Shared.GameStates; -namespace Content.Server.Tools.Components; +namespace Content.Shared.Tools.Components; -[RegisterComponent] +[RegisterComponent, NetworkedComponent] [Access(typeof(WeldableSystem))] -public sealed class LayerChangeOnWeldComponent : Component +public sealed partial class LayerChangeOnWeldComponent : Component { [DataField("unWeldedLayer")] [ViewVariables] diff --git a/Content.Shared/Tools/Components/MultipleToolComponent.cs b/Content.Shared/Tools/Components/MultipleToolComponent.cs index b40afbc134c..87fa4ad1750 100644 --- a/Content.Shared/Tools/Components/MultipleToolComponent.cs +++ b/Content.Shared/Tools/Components/MultipleToolComponent.cs @@ -6,10 +6,10 @@ namespace Content.Shared.Tools.Components { [RegisterComponent, NetworkedComponent] - public sealed class MultipleToolComponent : Component + public sealed partial class MultipleToolComponent : Component { [DataDefinition] - public sealed class ToolEntry + public sealed partial class ToolEntry { [DataField("behavior", required: true)] public PrototypeFlags Behavior = new(); @@ -25,7 +25,7 @@ public sealed class ToolEntry } [DataField("entries", required: true)] - public ToolEntry[] Entries { get; } = Array.Empty(); + public ToolEntry[] Entries { get; private set; } = Array.Empty(); [ViewVariables] public uint CurrentEntry = 0; diff --git a/Content.Shared/Tools/Components/SharedHandheldGPSComponent.cs b/Content.Shared/Tools/Components/SharedHandheldGPSComponent.cs index 05352017929..3c30738857b 100644 --- a/Content.Shared/Tools/Components/SharedHandheldGPSComponent.cs +++ b/Content.Shared/Tools/Components/SharedHandheldGPSComponent.cs @@ -1,7 +1,7 @@ namespace Content.Shared.GPS { - public abstract class SharedHandheldGPSComponent : Component + public abstract partial class SharedHandheldGPSComponent : Component { [DataField("updateRate")] public float UpdateRate = 1.5f; diff --git a/Content.Shared/Tools/Components/SharedWeldable.cs b/Content.Shared/Tools/Components/SharedWeldable.cs index b5bf0b6dd59..701bd4d8da5 100644 --- a/Content.Shared/Tools/Components/SharedWeldable.cs +++ b/Content.Shared/Tools/Components/SharedWeldable.cs @@ -1,10 +1,39 @@ +using Robust.Shared.GameStates; using Robust.Shared.Serialization; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Shared.Tools.Components; -public abstract class SharedWeldableComponent : Component +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class WeldableComponent : Component { + /// + /// Tool quality for welding. + /// + [DataField("weldingQuality", customTypeSerializer: typeof(PrototypeIdSerializer))] + [ViewVariables(VVAccess.ReadWrite)] + public string WeldingQuality = "Welding"; + /// + /// How much time does it take to weld/unweld entity. + /// + [DataField("time")] + [ViewVariables(VVAccess.ReadWrite)] + [AutoNetworkedField] + public TimeSpan WeldingTime = TimeSpan.FromSeconds(1f); + + /// + /// Shown when welded entity is examined. + /// + [DataField("weldedExamineMessage")] + [ViewVariables(VVAccess.ReadWrite)] + public string? WeldedExamineMessage = "weldable-component-examine-is-welded"; + + /// + /// Is this entity currently welded shut? + /// + [DataField("isWelded"), AutoNetworkedField] + public bool IsWelded; } [Serializable, NetSerializable] diff --git a/Content.Shared/Tools/Components/SharedWelderComponent.cs b/Content.Shared/Tools/Components/SharedWelderComponent.cs index 29ff5fe99b5..735aef88c19 100644 --- a/Content.Shared/Tools/Components/SharedWelderComponent.cs +++ b/Content.Shared/Tools/Components/SharedWelderComponent.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Tools.Components { [NetworkedComponent] - public abstract class SharedWelderComponent : Component + public abstract partial class SharedWelderComponent : Component { public bool Lit { get; set; } } diff --git a/Content.Shared/Tools/Components/ToolComponent.cs b/Content.Shared/Tools/Components/ToolComponent.cs index 45fde79d4ed..92857ab9054 100644 --- a/Content.Shared/Tools/Components/ToolComponent.cs +++ b/Content.Shared/Tools/Components/ToolComponent.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Tools.Components { [RegisterComponent, NetworkedComponent] // TODO move tool system to shared, and make it a friend. - public sealed class ToolComponent : Component + public sealed partial class ToolComponent : Component { [DataField("qualities")] public PrototypeFlags Qualities { get; set; } = new(); @@ -22,7 +22,8 @@ public sealed class ToolComponent : Component } /// - /// Attempt event called *before* any do afters to see if the tool usage should succeed or not. + /// Attempt event called *before* any do afters to see if the tool usage should succeed or not. + /// Raised on both the tool and then target. /// public sealed class ToolUseAttemptEvent : CancellableEntityEventArgs { diff --git a/Content.Shared/Tools/Components/ToolForcePoweredComponent.cs b/Content.Shared/Tools/Components/ToolForcePoweredComponent.cs index 2bb72d3e38f..d38034c7540 100644 --- a/Content.Shared/Tools/Components/ToolForcePoweredComponent.cs +++ b/Content.Shared/Tools/Components/ToolForcePoweredComponent.cs @@ -5,6 +5,6 @@ namespace Content.Shared.Tools.Components /// or not to work. /// [RegisterComponent] - public sealed class ToolForcePoweredComponent : Component + public sealed partial class ToolForcePoweredComponent : Component {} } diff --git a/Content.Shared/Tools/Systems/SharedToolSystem.cs b/Content.Shared/Tools/Systems/SharedToolSystem.cs index 2dfea24959d..716a9332d0e 100644 --- a/Content.Shared/Tools/Systems/SharedToolSystem.cs +++ b/Content.Shared/Tools/Systems/SharedToolSystem.cs @@ -29,7 +29,7 @@ private void OnDoAfter(EntityUid uid, ToolComponent tool, ToolDoAfterEvent args) ev.DoAfter = args.DoAfter; if (args.OriginalTarget != null) - RaiseLocalEvent(args.OriginalTarget.Value, (object) ev); + RaiseLocalEvent(GetEntity(args.OriginalTarget.Value), (object) ev); else RaiseLocalEvent((object) ev); } @@ -108,8 +108,8 @@ public bool UseTool( if (!CanStartToolUse(tool, user, target, toolQualitiesNeeded, toolComponent)) return false; - var toolEvent = new ToolDoAfterEvent(doAfterEv, target); - var doAfterArgs = new DoAfterArgs(user, delay / toolComponent.SpeedModifier, toolEvent, tool, target: target, used: tool) + var toolEvent = new ToolDoAfterEvent(doAfterEv, GetNetEntity(target)); + var doAfterArgs = new DoAfterArgs(EntityManager, user, delay / toolComponent.SpeedModifier, toolEvent, tool, target: target, used: tool) { BreakOnDamage = true, BreakOnTargetMove = true, @@ -180,16 +180,27 @@ private bool CanStartToolUse(EntityUid tool, EntityUid user, EntityUid? target, if (!Resolve(tool, ref toolComponent)) return false; + // check if the tool can do what's required + if (!toolComponent.Qualities.ContainsAll(toolQualitiesNeeded)) + return false; + + // check if the user allows using the tool var ev = new ToolUserAttemptUseEvent(target); RaiseLocalEvent(user, ref ev); if (ev.Cancelled) return false; - if (!toolComponent.Qualities.ContainsAll(toolQualitiesNeeded)) + // check if the tool allows being used + var beforeAttempt = new ToolUseAttemptEvent(user); + RaiseLocalEvent(tool, beforeAttempt); + if (beforeAttempt.Cancelled) return false; - var beforeAttempt = new ToolUseAttemptEvent(user); - RaiseLocalEvent(tool, beforeAttempt, false); + // check if the target allows using the tool + if (target != null && target != tool) + { + RaiseLocalEvent(target.Value, beforeAttempt); + } return !beforeAttempt.Cancelled; } @@ -197,22 +208,22 @@ private bool CanStartToolUse(EntityUid tool, EntityUid user, EntityUid? target, #region DoAfterEvents [Serializable, NetSerializable] - protected sealed class ToolDoAfterEvent : DoAfterEvent + protected sealed partial class ToolDoAfterEvent : DoAfterEvent { /// /// Entity that the wrapped do after event will get directed at. If null, event will be broadcast. /// [DataField("target")] - public readonly EntityUid? OriginalTarget; + public NetEntity? OriginalTarget; [DataField("wrappedEvent")] - public readonly DoAfterEvent WrappedEvent = default!; + public DoAfterEvent WrappedEvent = default!; private ToolDoAfterEvent() { } - public ToolDoAfterEvent(DoAfterEvent wrappedEvent, EntityUid? originalTarget) + public ToolDoAfterEvent(DoAfterEvent wrappedEvent, NetEntity? originalTarget) { DebugTools.Assert(wrappedEvent.GetType().HasCustomAttribute(), "Tool event is not serializable"); @@ -233,16 +244,16 @@ public override DoAfterEvent Clone() } [Serializable, NetSerializable] - protected sealed class LatticeCuttingCompleteEvent : DoAfterEvent + protected sealed partial class LatticeCuttingCompleteEvent : DoAfterEvent { [DataField("coordinates", required:true)] - public readonly EntityCoordinates Coordinates; + public NetCoordinates Coordinates; private LatticeCuttingCompleteEvent() { } - public LatticeCuttingCompleteEvent(EntityCoordinates coordinates) + public LatticeCuttingCompleteEvent(NetCoordinates coordinates) { Coordinates = coordinates; } @@ -251,16 +262,16 @@ public LatticeCuttingCompleteEvent(EntityCoordinates coordinates) } [Serializable, NetSerializable] - protected sealed class TilePryingDoAfterEvent : DoAfterEvent + protected sealed partial class TilePryingDoAfterEvent : DoAfterEvent { - [DataField("coordinates", required:true)] - public readonly EntityCoordinates Coordinates; + [DataField("coordinates", required: true)] + public NetCoordinates Coordinates; private TilePryingDoAfterEvent() { } - public TilePryingDoAfterEvent(EntityCoordinates coordinates) + public TilePryingDoAfterEvent(NetCoordinates coordinates) { Coordinates = coordinates; } @@ -270,7 +281,7 @@ public TilePryingDoAfterEvent(EntityCoordinates coordinates) } [Serializable, NetSerializable] -public sealed class CableCuttingFinishedEvent : SimpleDoAfterEvent +public sealed partial class CableCuttingFinishedEvent : SimpleDoAfterEvent { } diff --git a/Content.Shared/Tools/Systems/WeldFinishedEvent.cs b/Content.Shared/Tools/Systems/WeldFinishedEvent.cs index 20dfae0584c..4ece52835d5 100644 --- a/Content.Shared/Tools/Systems/WeldFinishedEvent.cs +++ b/Content.Shared/Tools/Systems/WeldFinishedEvent.cs @@ -8,6 +8,6 @@ namespace Content.Shared.Tools.Systems; /// use to get updated status. /// [Serializable, NetSerializable] -public sealed class WeldFinishedEvent : SimpleDoAfterEvent +public sealed partial class WeldFinishedEvent : SimpleDoAfterEvent { -} \ No newline at end of file +} diff --git a/Content.Shared/Tools/Systems/WeldableAttemptEvent.cs b/Content.Shared/Tools/Systems/WeldableAttemptEvent.cs new file mode 100644 index 00000000000..a3b853422dc --- /dev/null +++ b/Content.Shared/Tools/Systems/WeldableAttemptEvent.cs @@ -0,0 +1,17 @@ +namespace Content.Shared.Tools.Systems; + +/// +/// Checks that entity can be weld/unweld. +/// Raised twice: before do_after and after to check that entity still valid. +/// +public sealed class WeldableAttemptEvent : CancellableEntityEventArgs +{ + public readonly EntityUid User; + public readonly EntityUid Tool; + + public WeldableAttemptEvent(EntityUid user, EntityUid tool) + { + User = user; + Tool = tool; + } +} \ No newline at end of file diff --git a/Content.Shared/Tools/Systems/WeldableChangedEvent.cs b/Content.Shared/Tools/Systems/WeldableChangedEvent.cs new file mode 100644 index 00000000000..977e345ccd5 --- /dev/null +++ b/Content.Shared/Tools/Systems/WeldableChangedEvent.cs @@ -0,0 +1,12 @@ +using Content.Shared.Tools.Components; + +namespace Content.Shared.Tools.Systems; + +/// +/// Raised when has changed. +/// +[ByRefEvent] +public readonly record struct WeldableChangedEvent(bool IsWelded) +{ + public readonly bool IsWelded = IsWelded; +} diff --git a/Content.Server/Tools/Systems/WeldableSystem.cs b/Content.Shared/Tools/Systems/WeldableSystem.cs similarity index 66% rename from Content.Server/Tools/Systems/WeldableSystem.cs rename to Content.Shared/Tools/Systems/WeldableSystem.cs index e42f1f9104e..11ead6bba10 100644 --- a/Content.Server/Tools/Systems/WeldableSystem.cs +++ b/Content.Shared/Tools/Systems/WeldableSystem.cs @@ -1,29 +1,28 @@ -using Content.Server.Administration.Logs; -using Content.Server.Construction; -using Content.Server.Tools.Components; -using Content.Server.Wires; -using Content.Shared.Construction.Steps; +using Content.Shared.Administration.Logs; using Content.Shared.Database; -using Content.Shared.DoAfter; using Content.Shared.Examine; using Content.Shared.Interaction; -using Content.Shared.Tools; using Content.Shared.Tools.Components; -using Content.Shared.Tools.Systems; -using Content.Shared.Wires; using Robust.Shared.Physics; using Robust.Shared.Physics.Systems; -using System.Linq; +using LayerChangeOnWeldComponent = Content.Shared.Tools.Components.LayerChangeOnWeldComponent; -namespace Content.Server.Tools.Systems; +namespace Content.Shared.Tools.Systems; public sealed class WeldableSystem : EntitySystem { - [Dependency] private readonly IAdminLogManager _adminLogger = default!; + [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; [Dependency] private readonly SharedToolSystem _toolSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; - [Dependency] private readonly ConstructionSystem _construction = default!; + + public bool IsWelded(EntityUid uid, WeldableComponent? component = null) + { + if (!Resolve(uid, ref component, false)) + return false; + + return component.IsWelded; + } public override void Initialize() { @@ -43,12 +42,14 @@ private void OnExamine(EntityUid uid, WeldableComponent component, ExaminedEvent private void OnInteractUsing(EntityUid uid, WeldableComponent component, InteractUsingEvent args) { // If any construction graph edges has its conditions meet and requires welding, then this construction takes priority - if (_construction.GetCurrentNode(uid)?.Edges.Any(x => _construction.CheckConditions(uid, x.Conditions) - && x.Steps.Any(y => (y as ToolConstructionGraphStep)?.Tool == "Welding")) == true) + /* TODO: Whatever this is is not the way to do what you think you want to do. + if (Enumerable.Any(_construction.GetCurrentNode(uid)?.Edges, x => _construction.CheckConditions(uid, x.Conditions) + && Enumerable.Any(x.Steps, y => (y as ToolConstructionGraphStep)?.Tool == "Welding")) == true) { args.Handled = false; return; } + */ if (args.Handled) return; @@ -61,13 +62,9 @@ private bool CanWeld(EntityUid uid, EntityUid tool, EntityUid user, WeldableComp if (!Resolve(uid, ref component)) return false; - // Basic checks - if (!component.Weldable) - return false; - // Other component systems var attempt = new WeldableAttemptEvent(user, tool); - RaiseLocalEvent(uid, attempt, true); + RaiseLocalEvent(uid, attempt); if (attempt.Cancelled) return false; @@ -100,30 +97,27 @@ private void OnWeldFinished(EntityUid uid, WeldableComponent component, WeldFini if (!CanWeld(uid, args.Used.Value, args.User, component)) return; - component.IsWelded = !component.IsWelded; - RaiseLocalEvent(uid, new WeldableChangedEvent(component.IsWelded), true); - - UpdateAppearance(uid, component); + SetWeldedState(uid, !component.IsWelded, component); // Log success _adminLogger.Add(LogType.Action, LogImpact.Low, $"{ToPrettyString(args.User):user} {(!component.IsWelded ? "un" : "")}welded {ToPrettyString(uid):target}"); } - private void OnWeldChanged(EntityUid uid, LayerChangeOnWeldComponent component, WeldableChangedEvent args) + private void OnWeldChanged(EntityUid uid, LayerChangeOnWeldComponent component, ref WeldableChangedEvent args) { if (!TryComp(uid, out var fixtures)) return; - foreach (var fixture in fixtures.Fixtures.Values) + foreach (var (id, fixture) in fixtures.Fixtures) { switch (args.IsWelded) { case true when fixture.CollisionLayer == (int) component.UnWeldedLayer: - _physics.SetCollisionLayer(uid, fixture, (int) component.WeldedLayer); + _physics.SetCollisionLayer(uid, id, fixture, (int) component.WeldedLayer); break; case false when fixture.CollisionLayer == (int) component.WeldedLayer: - _physics.SetCollisionLayer(uid, fixture, (int) component.UnWeldedLayer); + _physics.SetCollisionLayer(uid, id, fixture, (int) component.UnWeldedLayer); break; } } @@ -139,51 +133,31 @@ private void UpdateAppearance(EntityUid uid, WeldableComponent? component = null _appearance.SetData(uid, WeldableVisuals.IsWelded, component.IsWelded, appearance); } - public void ForceWeldedState(EntityUid uid, bool state, WeldableComponent? component = null) + public void SetWeldedState(EntityUid uid, bool state, WeldableComponent? component = null) { if (!Resolve(uid, ref component)) return; - component.IsWelded = state; + if (component.IsWelded == state) + return; - RaiseLocalEvent(uid, new WeldableChangedEvent(component.IsWelded)); + component.IsWelded = state; + var ev = new WeldableChangedEvent(component.IsWelded); + RaiseLocalEvent(uid, ref ev); UpdateAppearance(uid, component); + Dirty(uid, component); } public void SetWeldingTime(EntityUid uid, TimeSpan time, WeldableComponent? component = null) { if (!Resolve(uid, ref component)) return; - component.WeldingTime = time; - } -} - -/// -/// Checks that entity can be weld/unweld. -/// Raised twice: before do_after and after to check that entity still valid. -/// -public sealed class WeldableAttemptEvent : CancellableEntityEventArgs -{ - public readonly EntityUid User; - public readonly EntityUid Tool; - - public WeldableAttemptEvent(EntityUid user, EntityUid tool) - { - User = user; - Tool = tool; - } -} -/// -/// Raised when has changed. -/// -public sealed class WeldableChangedEvent : EntityEventArgs -{ - public readonly bool IsWelded; + if (component.WeldingTime.Equals(time)) + return; - public WeldableChangedEvent(bool isWelded) - { - IsWelded = isWelded; + component.WeldingTime = time; + Dirty(uid, component); } } diff --git a/Content.Shared/Tools/ToolQualityPrototype.cs b/Content.Shared/Tools/ToolQualityPrototype.cs index 8e2bbee6cc0..727a31738c3 100644 --- a/Content.Shared/Tools/ToolQualityPrototype.cs +++ b/Content.Shared/Tools/ToolQualityPrototype.cs @@ -8,32 +8,32 @@ namespace Content.Shared.Tools public sealed class ToolQualityPrototype : IPrototype { [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// /// Human-readable name for this tool quality e.g. "Anchoring" /// /// This is a localization string ID. [DataField("name")] - public string Name { get; } = string.Empty; + public string Name { get; private set; } = string.Empty; /// /// Human-readable name for a tool of this type e.g. "Wrench" /// /// This is a localization string ID. [DataField("toolName")] - public string ToolName { get; } = string.Empty; + public string ToolName { get; private set; } = string.Empty; /// /// An icon that will be used to represent this tool type. /// [DataField("icon")] - public SpriteSpecifier? Icon { get; } = null; + public SpriteSpecifier? Icon { get; private set; } = null; /// /// The default entity prototype for this tool type. /// [DataField("spawn", required:true, customTypeSerializer:typeof(PrototypeIdSerializer))] - public string Spawn { get; } = string.Empty; + public string Spawn { get; private set; } = string.Empty; } } diff --git a/Content.Shared/Traits/Assorted/AccentlessComponent.cs b/Content.Shared/Traits/Assorted/AccentlessComponent.cs index 23f3f2f0f1c..96ebf4d83f6 100644 --- a/Content.Shared/Traits/Assorted/AccentlessComponent.cs +++ b/Content.Shared/Traits/Assorted/AccentlessComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Traits.Assorted; /// This is used for the accentless trait /// [RegisterComponent, NetworkedComponent] -public sealed class AccentlessComponent : Component +public sealed partial class AccentlessComponent : Component { /// /// The accents removed by the accentless trait. diff --git a/Content.Shared/Traits/Assorted/LegsParalyzedComponent.cs b/Content.Shared/Traits/Assorted/LegsParalyzedComponent.cs index a3cdb4ab337..7716749da19 100644 --- a/Content.Shared/Traits/Assorted/LegsParalyzedComponent.cs +++ b/Content.Shared/Traits/Assorted/LegsParalyzedComponent.cs @@ -7,6 +7,6 @@ namespace Content.Shared.Traits.Assorted; /// Used for Wheelchair bound trait. /// [RegisterComponent, NetworkedComponent, Access(typeof(LegsParalyzedSystem))] -public sealed class LegsParalyzedComponent : Component +public sealed partial class LegsParalyzedComponent : Component { } diff --git a/Content.Shared/Traits/Assorted/LightweightDrunkComponent.cs b/Content.Shared/Traits/Assorted/LightweightDrunkComponent.cs index fda1e3de4f5..5d353ac9637 100644 --- a/Content.Shared/Traits/Assorted/LightweightDrunkComponent.cs +++ b/Content.Shared/Traits/Assorted/LightweightDrunkComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Traits.Assorted; /// [RegisterComponent, NetworkedComponent] [Access(typeof(SharedDrunkSystem))] -public sealed class LightweightDrunkComponent : Component +public sealed partial class LightweightDrunkComponent : Component { [DataField("boozeStrengthMultiplier"), ViewVariables(VVAccess.ReadWrite)] public float BoozeStrengthMultiplier = 4f; diff --git a/Content.Shared/Traits/Assorted/PermanentBlindnessComponent.cs b/Content.Shared/Traits/Assorted/PermanentBlindnessComponent.cs index 2396ff3967e..76ff3e1005e 100644 --- a/Content.Shared/Traits/Assorted/PermanentBlindnessComponent.cs +++ b/Content.Shared/Traits/Assorted/PermanentBlindnessComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Traits.Assorted; /// This is used for making something blind forever. /// [RegisterComponent, NetworkedComponent] -public sealed class PermanentBlindnessComponent : Component +public sealed partial class PermanentBlindnessComponent : Component { } diff --git a/Content.Shared/Traits/TraitPrototype.cs b/Content.Shared/Traits/TraitPrototype.cs index 33f092338ef..f7ae6f9c71f 100644 --- a/Content.Shared/Traits/TraitPrototype.cs +++ b/Content.Shared/Traits/TraitPrototype.cs @@ -13,7 +13,7 @@ public sealed class TraitPrototype : IPrototype { [ViewVariables] [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// /// The name of this trait. @@ -43,7 +43,7 @@ public sealed class TraitPrototype : IPrototype /// The components that get added to the player, when they pick this trait. /// [DataField("components")] - public ComponentRegistry Components { get; } = default!; + public ComponentRegistry Components { get; private set; } = default!; /// /// Gear that is given to the player, when they pick this trait. diff --git a/Content.Shared/Udder/MilkingDoAfterEvent.cs b/Content.Shared/Udder/MilkingDoAfterEvent.cs index 03170b93f7f..dd870c28a4c 100644 --- a/Content.Shared/Udder/MilkingDoAfterEvent.cs +++ b/Content.Shared/Udder/MilkingDoAfterEvent.cs @@ -4,6 +4,6 @@ namespace Content.Shared.Udder; [Serializable, NetSerializable] -public sealed class MilkingDoAfterEvent : SimpleDoAfterEvent +public sealed partial class MilkingDoAfterEvent : SimpleDoAfterEvent { -} \ No newline at end of file +} diff --git a/Content.Server/UserInterface/OpenUiActionEvent.cs b/Content.Shared/UserInterface/OpenUiActionEvent.cs similarity index 77% rename from Content.Server/UserInterface/OpenUiActionEvent.cs rename to Content.Shared/UserInterface/OpenUiActionEvent.cs index 59bb4ac9d1b..3053861ea15 100644 --- a/Content.Server/UserInterface/OpenUiActionEvent.cs +++ b/Content.Shared/UserInterface/OpenUiActionEvent.cs @@ -1,10 +1,10 @@ -using Content.Shared.Actions; +using Content.Shared.Actions; using Robust.Shared.Reflection; using Robust.Shared.Serialization; -namespace Content.Server.UserInterface; +namespace Content.Shared.UserInterface; -public sealed class OpenUiActionEvent : InstantActionEvent, ISerializationHooks +public sealed partial class OpenUiActionEvent : InstantActionEvent, ISerializationHooks { [ViewVariables] public Enum? Key { get; private set; } diff --git a/Content.Shared/UserInterface/ToggleIntrinsicUIEvent.cs b/Content.Shared/UserInterface/ToggleIntrinsicUIEvent.cs new file mode 100644 index 00000000000..5050aca9d4e --- /dev/null +++ b/Content.Shared/UserInterface/ToggleIntrinsicUIEvent.cs @@ -0,0 +1,12 @@ +using Content.Shared.Actions; +using JetBrains.Annotations; +using Robust.Shared.Serialization.TypeSerializers.Implementations; + +namespace Content.Shared.UserInterface; + +[UsedImplicitly] +public sealed partial class ToggleIntrinsicUIEvent : InstantActionEvent +{ + [DataField("key", customTypeSerializer: typeof(EnumSerializer), required: true)] + public Enum? Key { get; set; } +} diff --git a/Content.Shared/Vehicle/Components/InVehicleComponent.cs b/Content.Shared/Vehicle/Components/InVehicleComponent.cs index a808393486b..77229f17054 100644 --- a/Content.Shared/Vehicle/Components/InVehicleComponent.cs +++ b/Content.Shared/Vehicle/Components/InVehicleComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Vehicle.Components /// removing them. /// [RegisterComponent, NetworkedComponent] - public sealed class InVehicleComponent : Component + public sealed partial class InVehicleComponent : Component { /// /// The vehicle this rider is currently riding. diff --git a/Content.Shared/Vehicle/Components/RiderComponent.cs b/Content.Shared/Vehicle/Components/RiderComponent.cs index 76bbabe325b..a6618842e43 100644 --- a/Content.Shared/Vehicle/Components/RiderComponent.cs +++ b/Content.Shared/Vehicle/Components/RiderComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Vehicle.Components; /// used mostly to keep track of them for entityquery. /// [RegisterComponent, NetworkedComponent] -public sealed class RiderComponent : Component +public sealed partial class RiderComponent : Component { /// /// The vehicle this rider is currently riding. @@ -21,5 +21,5 @@ public sealed class RiderComponent : Component [Serializable, NetSerializable] public sealed class RiderComponentState : ComponentState { - public EntityUid? Entity; + public NetEntity? Entity; } diff --git a/Content.Shared/Vehicle/Components/VehicleComponent.cs b/Content.Shared/Vehicle/Components/VehicleComponent.cs index 3868b8977f0..509581cc32a 100644 --- a/Content.Shared/Vehicle/Components/VehicleComponent.cs +++ b/Content.Shared/Vehicle/Components/VehicleComponent.cs @@ -1,8 +1,8 @@ using System.Numerics; -using Content.Shared.Actions.ActionTypes; using Robust.Shared.Audio; using Robust.Shared.GameStates; -using Robust.Shared.Utility; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Shared.Vehicle.Components; @@ -49,19 +49,15 @@ public sealed partial class VehicleComponent : Component /// Use ambient sound component for the idle sound. + [DataField("hornAction", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string? HornAction = "ActionVehicleHorn"; + /// /// The action for the horn (if any) /// - [DataField("hornAction")] + [DataField("hornActionEntity")] [ViewVariables(VVAccess.ReadWrite)] - public InstantAction HornAction = new() - { - UseDelay = TimeSpan.FromSeconds(3.4), - Icon = new SpriteSpecifier.Texture(new("Objects/Fun/bikehorn.rsi/icon.png")), - DisplayName = "action-name-honk", - Description = "action-desc-honk", - Event = new HonkActionEvent(), - }; + public EntityUid? HornActionEntity; /// /// Whether the vehicle has a key currently inside it or not. diff --git a/Content.Shared/Vehicle/SharedVehicleSystem.Rider.cs b/Content.Shared/Vehicle/SharedVehicleSystem.Rider.cs index b4b566390c8..3acd823c735 100644 --- a/Content.Shared/Vehicle/SharedVehicleSystem.Rider.cs +++ b/Content.Shared/Vehicle/SharedVehicleSystem.Rider.cs @@ -18,7 +18,7 @@ private void OnRiderGetState(EntityUid uid, RiderComponent component, ref Compon { args.State = new RiderComponentState() { - Entity = component.Vehicle, + Entity = GetNetEntity(component.Vehicle), }; } diff --git a/Content.Shared/Vehicle/SharedVehicleSystem.cs b/Content.Shared/Vehicle/SharedVehicleSystem.cs index 00ab81a333e..9ba22d644a4 100644 --- a/Content.Shared/Vehicle/SharedVehicleSystem.cs +++ b/Content.Shared/Vehicle/SharedVehicleSystem.cs @@ -1,22 +1,22 @@ using System.Numerics; using Content.Shared.Access.Components; using Content.Shared.Access.Systems; -using Content.Shared.Vehicle.Components; using Content.Shared.Actions; +using Content.Shared.Audio; +using Content.Shared.Buckle; using Content.Shared.Buckle.Components; +using Content.Shared.Hands; using Content.Shared.Item; +using Content.Shared.Light.Components; using Content.Shared.Movement.Components; using Content.Shared.Movement.Systems; -using Robust.Shared.Serialization; -using Robust.Shared.Containers; -using Content.Shared.Tag; -using Content.Shared.Audio; -using Content.Shared.Buckle; -using Content.Shared.Hands; -using Content.Shared.Light.Component; using Content.Shared.Popups; +using Content.Shared.Tag; +using Content.Shared.Vehicle.Components; +using Robust.Shared.Containers; using Robust.Shared.Network; using Robust.Shared.Physics.Systems; +using Robust.Shared.Serialization; namespace Content.Shared.Vehicle; @@ -134,12 +134,12 @@ private void OnBuckleChange(EntityUid uid, VehicleComponent component, ref Buckl if (TryComp(args.BuckledEntity, out var actions) && TryComp(uid, out var flashlight)) { - _actionsSystem.AddAction(args.BuckledEntity, flashlight.ToggleAction, uid, actions); + _actionsSystem.AddAction(args.BuckledEntity, ref flashlight.ToggleActionEntity, flashlight.ToggleAction, uid, actions); } if (component.HornSound != null) { - _actionsSystem.AddAction(args.BuckledEntity, component.HornAction, uid, actions); + _actionsSystem.AddAction(args.BuckledEntity, ref component.HornActionEntity, component.HornAction, uid, actions); } _joints.ClearJoints(args.BuckledEntity); @@ -370,6 +370,6 @@ public enum VehicleVisuals : byte /// /// Raised when someone honks a vehicle horn /// -public sealed class HonkActionEvent : InstantActionEvent +public sealed partial class HonkActionEvent : InstantActionEvent { } diff --git a/Content.Shared/VendingMachines/SharedVendingMachineSystem.Restock.cs b/Content.Shared/VendingMachines/SharedVendingMachineSystem.Restock.cs index 2385982f8dd..87e2f0890a2 100644 --- a/Content.Shared/VendingMachines/SharedVendingMachineSystem.Restock.cs +++ b/Content.Shared/VendingMachines/SharedVendingMachineSystem.Restock.cs @@ -67,7 +67,7 @@ private void OnAfterInteract(EntityUid uid, VendingMachineRestockComponent compo args.Handled = true; - var doAfterArgs = new DoAfterArgs(args.User, (float) component.RestockDelay.TotalSeconds, new RestockDoAfterEvent(), target, + var doAfterArgs = new DoAfterArgs(EntityManager, args.User, (float) component.RestockDelay.TotalSeconds, new RestockDoAfterEvent(), target, target: target, used: uid) { BreakOnTargetMove = true, diff --git a/Content.Shared/VendingMachines/VendingMachineComponent.cs b/Content.Shared/VendingMachines/VendingMachineComponent.cs index 907cfbab332..4abcef83e49 100644 --- a/Content.Shared/VendingMachines/VendingMachineComponent.cs +++ b/Content.Shared/VendingMachines/VendingMachineComponent.cs @@ -1,15 +1,15 @@ using Content.Shared.Actions; -using Content.Shared.Actions.ActionTypes; using Robust.Shared.Audio; using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Shared.VendingMachines { - [RegisterComponent, NetworkedComponent] - public sealed class VendingMachineComponent : Component + [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] + public sealed partial class VendingMachineComponent : Component { /// /// PrototypeID for the vending machine's inventory, see @@ -117,8 +117,13 @@ public sealed class VendingMachineComponent : Component /// /// The action available to the player controlling the vending machine /// - [DataField("action", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string? Action = "VendingThrow"; + [DataField("action", customTypeSerializer: typeof(PrototypeIdSerializer))] + [AutoNetworkedField] + public string? Action = "ActionVendingThrow"; + + [DataField("actionEntity")] + [AutoNetworkedField] + public EntityUid? ActionEntity; public float NonLimitedEjectForce = 7.5f; @@ -258,7 +263,7 @@ public enum EjectWireKey : byte StatusKey, } - public sealed class VendingMachineSelfDispenseEvent : InstantActionEvent + public sealed partial class VendingMachineSelfDispenseEvent : InstantActionEvent { }; diff --git a/Content.Shared/VendingMachines/VendingMachineInventoryPrototype.cs b/Content.Shared/VendingMachines/VendingMachineInventoryPrototype.cs index 2945374f877..4869eae6dee 100644 --- a/Content.Shared/VendingMachines/VendingMachineInventoryPrototype.cs +++ b/Content.Shared/VendingMachines/VendingMachineInventoryPrototype.cs @@ -9,15 +9,15 @@ public sealed class VendingMachineInventoryPrototype : IPrototype { [ViewVariables] [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [DataField("startingInventory", customTypeSerializer:typeof(PrototypeIdDictionarySerializer))] - public Dictionary StartingInventory { get; } = new(); + public Dictionary StartingInventory { get; private set; } = new(); [DataField("emaggedInventory", customTypeSerializer:typeof(PrototypeIdDictionarySerializer))] - public Dictionary? EmaggedInventory { get; } + public Dictionary? EmaggedInventory { get; private set; } [DataField("contrabandInventory", customTypeSerializer:typeof(PrototypeIdDictionarySerializer))] - public Dictionary? ContrabandInventory { get; } + public Dictionary? ContrabandInventory { get; private set; } } } diff --git a/Content.Shared/VendingMachines/VendingMachineRestockComponent.cs b/Content.Shared/VendingMachines/VendingMachineRestockComponent.cs index e73d7eb0774..1b5f07ae6a0 100644 --- a/Content.Shared/VendingMachines/VendingMachineRestockComponent.cs +++ b/Content.Shared/VendingMachines/VendingMachineRestockComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.VendingMachines; [RegisterComponent, NetworkedComponent, Access(typeof(SharedVendingMachineSystem))] -public sealed class VendingMachineRestockComponent : Component +public sealed partial class VendingMachineRestockComponent : Component { /// /// The time (in seconds) that it takes to restock a machine. @@ -47,6 +47,6 @@ public sealed class VendingMachineRestockComponent : Component } [Serializable, NetSerializable] -public sealed class RestockDoAfterEvent : SimpleDoAfterEvent +public sealed partial class RestockDoAfterEvent : SimpleDoAfterEvent { } diff --git a/Content.Shared/Verbs/SharedVerbSystem.cs b/Content.Shared/Verbs/SharedVerbSystem.cs index 301c5555ee6..40cb2d50022 100644 --- a/Content.Shared/Verbs/SharedVerbSystem.cs +++ b/Content.Shared/Verbs/SharedVerbSystem.cs @@ -24,14 +24,16 @@ private void HandleExecuteVerb(ExecuteVerbEvent args, EntitySessionEventArgs eve if (user == null) return; + var target = GetEntity(args.Target); + // It is possible that client-side prediction can cause this event to be raised after the target entity has // been deleted. So we need to check that the entity still exists. - if (Deleted(args.Target) || Deleted(user)) + if (Deleted(target) || Deleted(user)) return; // Get the list of verbs. This effectively also checks that the requested verb is in fact a valid verb that // the user can perform. - var verbs = GetLocalVerbs(args.Target, user.Value, args.RequestedVerb.GetType()); + var verbs = GetLocalVerbs(target, user.Value, args.RequestedVerb.GetType()); // Note that GetLocalVerbs might waste time checking & preparing unrelated verbs even though we know // precisely which one we want to run. However, MOST entities will only have 1 or 2 verbs of a given type. @@ -39,7 +41,7 @@ private void HandleExecuteVerb(ExecuteVerbEvent args, EntitySessionEventArgs eve // Find the requested verb. if (verbs.TryGetValue(args.RequestedVerb, out var verb)) - ExecuteVerb(verb, user.Value, args.Target); + ExecuteVerb(verb, user.Value, target); } /// diff --git a/Content.Shared/Verbs/Verb.cs b/Content.Shared/Verbs/Verb.cs index cd5edc22d94..33576b6b9c7 100644 --- a/Content.Shared/Verbs/Verb.cs +++ b/Content.Shared/Verbs/Verb.cs @@ -112,7 +112,7 @@ public class Verb : IComparable /// If this is not null, and no icon or icon texture were specified, a sprite view of this entity will be /// used as the icon for this verb. /// - public EntityUid? IconEntity; + public NetEntity? IconEntity; /// /// Whether or not to close the context menu after using it to run this verb. @@ -221,7 +221,7 @@ public int CompareTo(object? obj) typeof(AlternativeVerb), typeof(ActivationVerb), typeof(ExamineVerb), - typeof(EquipmentVerb) + typeof(EquipmentVerb) }; } diff --git a/Content.Shared/Verbs/VerbEvents.cs b/Content.Shared/Verbs/VerbEvents.cs index 64b92385c58..9a09d5d7a1a 100644 --- a/Content.Shared/Verbs/VerbEvents.cs +++ b/Content.Shared/Verbs/VerbEvents.cs @@ -10,7 +10,7 @@ namespace Content.Shared.Verbs [Serializable, NetSerializable] public sealed class RequestServerVerbsEvent : EntityEventArgs { - public readonly EntityUid EntityUid; + public readonly NetEntity EntityUid; public readonly List VerbTypes = new(); @@ -18,11 +18,11 @@ public sealed class RequestServerVerbsEvent : EntityEventArgs /// If the target item is inside of some storage (e.g., backpack), this is the entity that owns that item /// slot. Needed for validating that the user can access the target item. /// - public readonly EntityUid? SlotOwner; + public readonly NetEntity? SlotOwner; public readonly bool AdminRequest; - public RequestServerVerbsEvent(EntityUid entityUid, IEnumerable verbTypes, EntityUid? slotOwner = null, bool adminRequest = false) + public RequestServerVerbsEvent(NetEntity entityUid, IEnumerable verbTypes, NetEntity? slotOwner = null, bool adminRequest = false) { EntityUid = entityUid; SlotOwner = slotOwner; @@ -40,9 +40,9 @@ public RequestServerVerbsEvent(EntityUid entityUid, IEnumerable verbTypes, public sealed class VerbsResponseEvent : EntityEventArgs { public readonly List? Verbs; - public readonly EntityUid Entity; + public readonly NetEntity Entity; - public VerbsResponseEvent(EntityUid entity, SortedSet? verbs) + public VerbsResponseEvent(NetEntity entity, SortedSet? verbs) { Entity = entity; @@ -57,10 +57,10 @@ public VerbsResponseEvent(EntityUid entity, SortedSet? verbs) [Serializable, NetSerializable] public sealed class ExecuteVerbEvent : EntityEventArgs { - public readonly EntityUid Target; + public readonly NetEntity Target; public readonly Verb RequestedVerb; - public ExecuteVerbEvent(EntityUid target, Verb requestedVerb) + public ExecuteVerbEvent(NetEntity target, Verb requestedVerb) { Target = target; RequestedVerb = requestedVerb; diff --git a/Content.Shared/VoiceMask/VoiceMaskSetNameEvent.cs b/Content.Shared/VoiceMask/VoiceMaskSetNameEvent.cs new file mode 100644 index 00000000000..8e1adb194f0 --- /dev/null +++ b/Content.Shared/VoiceMask/VoiceMaskSetNameEvent.cs @@ -0,0 +1,8 @@ +using Content.Shared.Actions; + +namespace Content.Shared.VoiceMask; + +public sealed partial class VoiceMaskSetNameEvent : InstantActionEvent +{ +} + diff --git a/Content.Shared/Wall/WallMountComponent.cs b/Content.Shared/Wall/WallMountComponent.cs index a7c5383fc09..cbd266e3f86 100644 --- a/Content.Shared/Wall/WallMountComponent.cs +++ b/Content.Shared/Wall/WallMountComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Wall; /// in a limited arc, providing basic functionality for directional wall mounts. /// [RegisterComponent] -public sealed class WallMountComponent : Component +public sealed partial class WallMountComponent : Component { /// /// Range of angles for which the exemption applies. Bigger is more permissive. diff --git a/Content.Shared/Weapons/Marker/LeechOnMarkerComponent.cs b/Content.Shared/Weapons/Marker/LeechOnMarkerComponent.cs index aca15ce796d..98798ae8ba1 100644 --- a/Content.Shared/Weapons/Marker/LeechOnMarkerComponent.cs +++ b/Content.Shared/Weapons/Marker/LeechOnMarkerComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Weapons.Marker; /// Applies leech upon hitting a damage marker target. /// [RegisterComponent, NetworkedComponent] -public sealed class LeechOnMarkerComponent : Component +public sealed partial class LeechOnMarkerComponent : Component { // TODO: Can't network damagespecifiers yet last I checked. [ViewVariables(VVAccess.ReadWrite)] diff --git a/Content.Shared/Weapons/Marker/SharedDamageMarkerSystem.cs b/Content.Shared/Weapons/Marker/SharedDamageMarkerSystem.cs index 4c8ed2f8a74..7289b232dc6 100644 --- a/Content.Shared/Weapons/Marker/SharedDamageMarkerSystem.cs +++ b/Content.Shared/Weapons/Marker/SharedDamageMarkerSystem.cs @@ -60,7 +60,7 @@ private void OnMarkerUnpaused(EntityUid uid, DamageMarkerComponent component, re private void OnMarkerCollide(EntityUid uid, DamageMarkerOnCollideComponent component, ref StartCollideEvent args) { if (!args.OtherFixture.Hard || - args.OurFixture.ID != SharedProjectileSystem.ProjectileFixture || + args.OurFixtureId != SharedProjectileSystem.ProjectileFixture || component.Amount <= 0 || component.Whitelist?.IsValid(args.OtherEntity, EntityManager) == false || !TryComp(uid, out var projectile) || diff --git a/Content.Shared/Weapons/Melee/Components/BonusMeleeAttackRateComponent.cs b/Content.Shared/Weapons/Melee/Components/BonusMeleeAttackRateComponent.cs index a47ed503bf9..f2f9607757e 100644 --- a/Content.Shared/Weapons/Melee/Components/BonusMeleeAttackRateComponent.cs +++ b/Content.Shared/Weapons/Melee/Components/BonusMeleeAttackRateComponent.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Weapons.Melee.Components; [RegisterComponent, NetworkedComponent, Access(typeof(SharedMeleeWeaponSystem))] -public sealed class BonusMeleeAttackRateComponent : Component +public sealed partial class BonusMeleeAttackRateComponent : Component { /// /// The value added onto the attack rate of a melee weapon diff --git a/Content.Shared/Weapons/Melee/Components/BonusMeleeDamageComponent.cs b/Content.Shared/Weapons/Melee/Components/BonusMeleeDamageComponent.cs index 06762d57ce4..08af9e42a3d 100644 --- a/Content.Shared/Weapons/Melee/Components/BonusMeleeDamageComponent.cs +++ b/Content.Shared/Weapons/Melee/Components/BonusMeleeDamageComponent.cs @@ -10,7 +10,7 @@ namespace Content.Shared.Weapons.Melee.Components; /// This exists only for event relays and doing entity shenanigans. /// [RegisterComponent, NetworkedComponent, Access(typeof(SharedMeleeWeaponSystem))] -public sealed class BonusMeleeDamageComponent : Component +public sealed partial class BonusMeleeDamageComponent : Component { /// /// The damage that will be added. diff --git a/Content.Shared/Weapons/Melee/Components/MeleeRequiresWieldComponent.cs b/Content.Shared/Weapons/Melee/Components/MeleeRequiresWieldComponent.cs index cc055742248..b322bbe51bc 100644 --- a/Content.Shared/Weapons/Melee/Components/MeleeRequiresWieldComponent.cs +++ b/Content.Shared/Weapons/Melee/Components/MeleeRequiresWieldComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Weapons.Melee.Components; /// Indicates that this meleeweapon requires wielding to be useable. /// [RegisterComponent, NetworkedComponent, Access(typeof(WieldableSystem))] -public sealed class MeleeRequiresWieldComponent : Component +public sealed partial class MeleeRequiresWieldComponent : Component { } diff --git a/Content.Shared/Weapons/Melee/Components/MeleeSoundComponent.cs b/Content.Shared/Weapons/Melee/Components/MeleeSoundComponent.cs index 3ec1175df8a..ae467dc4ad2 100644 --- a/Content.Shared/Weapons/Melee/Components/MeleeSoundComponent.cs +++ b/Content.Shared/Weapons/Melee/Components/MeleeSoundComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Weapons.Melee.Components; /// Plays the specified sound upon receiving damage of the specified type. /// [RegisterComponent] -public sealed class MeleeSoundComponent : Component +public sealed partial class MeleeSoundComponent : Component { /// /// Specified sounds to apply when the entity takes damage with the specified group. diff --git a/Content.Shared/Weapons/Melee/Events/AttackEvent.cs b/Content.Shared/Weapons/Melee/Events/AttackEvent.cs index cb731258d96..b8230168324 100644 --- a/Content.Shared/Weapons/Melee/Events/AttackEvent.cs +++ b/Content.Shared/Weapons/Melee/Events/AttackEvent.cs @@ -10,9 +10,9 @@ public abstract class AttackEvent : EntityEventArgs /// /// Coordinates being attacked. /// - public readonly EntityCoordinates Coordinates; + public readonly NetCoordinates Coordinates; - protected AttackEvent(EntityCoordinates coordinates) + protected AttackEvent(NetCoordinates coordinates) { Coordinates = coordinates; } diff --git a/Content.Shared/Weapons/Melee/Events/DisarmAttackEvent.cs b/Content.Shared/Weapons/Melee/Events/DisarmAttackEvent.cs index 51b6f909048..204b7b9f626 100644 --- a/Content.Shared/Weapons/Melee/Events/DisarmAttackEvent.cs +++ b/Content.Shared/Weapons/Melee/Events/DisarmAttackEvent.cs @@ -6,9 +6,9 @@ namespace Content.Shared.Weapons.Melee.Events; [Serializable, NetSerializable] public sealed class DisarmAttackEvent : AttackEvent { - public EntityUid? Target; + public NetEntity? Target; - public DisarmAttackEvent(EntityUid? target, EntityCoordinates coordinates) : base(coordinates) + public DisarmAttackEvent(NetEntity? target, NetCoordinates coordinates) : base(coordinates) { Target = target; } diff --git a/Content.Shared/Weapons/Melee/Events/HeavyAttackEvent.cs b/Content.Shared/Weapons/Melee/Events/HeavyAttackEvent.cs index 47d5d7f6c9a..6ea6caadc9e 100644 --- a/Content.Shared/Weapons/Melee/Events/HeavyAttackEvent.cs +++ b/Content.Shared/Weapons/Melee/Events/HeavyAttackEvent.cs @@ -9,14 +9,14 @@ namespace Content.Shared.Weapons.Melee.Events; [Serializable, NetSerializable] public sealed class HeavyAttackEvent : AttackEvent { - public readonly EntityUid Weapon; + public readonly NetEntity Weapon; /// /// As what the client swung at will not match server we'll have them tell us what they hit so we can verify. /// - public List Entities; + public List Entities; - public HeavyAttackEvent(EntityUid weapon, List entities, EntityCoordinates coordinates) : base(coordinates) + public HeavyAttackEvent(NetEntity weapon, List entities, NetCoordinates coordinates) : base(coordinates) { Weapon = weapon; Entities = entities; diff --git a/Content.Shared/Weapons/Melee/Events/LightAttackEvent.cs b/Content.Shared/Weapons/Melee/Events/LightAttackEvent.cs index 9b0f979f7d2..0318747f38a 100644 --- a/Content.Shared/Weapons/Melee/Events/LightAttackEvent.cs +++ b/Content.Shared/Weapons/Melee/Events/LightAttackEvent.cs @@ -9,10 +9,10 @@ namespace Content.Shared.Weapons.Melee.Events; [Serializable, NetSerializable] public sealed class LightAttackEvent : AttackEvent { - public readonly EntityUid? Target; - public readonly EntityUid Weapon; + public readonly NetEntity? Target; + public readonly NetEntity Weapon; - public LightAttackEvent(EntityUid? target, EntityUid weapon, EntityCoordinates coordinates) : base(coordinates) + public LightAttackEvent(NetEntity? target, NetEntity weapon, NetCoordinates coordinates) : base(coordinates) { Target = target; Weapon = weapon; diff --git a/Content.Shared/Weapons/Melee/Events/MeleeLungeEvent.cs b/Content.Shared/Weapons/Melee/Events/MeleeLungeEvent.cs index 012bec8ab5b..66acc213c1d 100644 --- a/Content.Shared/Weapons/Melee/Events/MeleeLungeEvent.cs +++ b/Content.Shared/Weapons/Melee/Events/MeleeLungeEvent.cs @@ -9,7 +9,7 @@ namespace Content.Shared.Weapons.Melee.Events; [Serializable, NetSerializable] public sealed class MeleeLungeEvent : EntityEventArgs { - public EntityUid Entity; + public NetEntity Entity; /// /// Width of the attack angle. @@ -26,9 +26,9 @@ public sealed class MeleeLungeEvent : EntityEventArgs /// public string? Animation; - public MeleeLungeEvent(EntityUid uid, Angle angle, Vector2 localPos, string? animation) + public MeleeLungeEvent(NetEntity entity, Angle angle, Vector2 localPos, string? animation) { - Entity = uid; + Entity = entity; Angle = angle; LocalPos = localPos; Animation = animation; diff --git a/Content.Shared/Weapons/Melee/Events/StopAttackEvent.cs b/Content.Shared/Weapons/Melee/Events/StopAttackEvent.cs index e7fa5cd4a20..ff98a5fb665 100644 --- a/Content.Shared/Weapons/Melee/Events/StopAttackEvent.cs +++ b/Content.Shared/Weapons/Melee/Events/StopAttackEvent.cs @@ -5,9 +5,9 @@ namespace Content.Shared.Weapons.Melee.Events; [Serializable, NetSerializable] public sealed class StopAttackEvent : EntityEventArgs { - public readonly EntityUid Weapon; + public readonly NetEntity Weapon; - public StopAttackEvent(EntityUid weapon) + public StopAttackEvent(NetEntity weapon) { Weapon = weapon; } diff --git a/Content.Shared/Weapons/Melee/MeleeWeaponComponent.cs b/Content.Shared/Weapons/Melee/MeleeWeaponComponent.cs index 36f32ffa141..9e7ad7e3a79 100644 --- a/Content.Shared/Weapons/Melee/MeleeWeaponComponent.cs +++ b/Content.Shared/Weapons/Melee/MeleeWeaponComponent.cs @@ -13,7 +13,7 @@ namespace Content.Shared.Weapons.Melee; /// When given to a mob lets them do unarmed attacks, or when given to an item lets someone wield it to do attacks. /// [RegisterComponent, NetworkedComponent] -public sealed class MeleeWeaponComponent : Component +public sealed partial class MeleeWeaponComponent : Component { // TODO: This is becoming bloated as shit. // This should just be its own component for alt attacks. @@ -74,15 +74,8 @@ public sealed class MeleeWeaponComponent : Component /// /// Multiplies damage by this amount for single-target attacks. /// - [ViewVariables(VVAccess.ReadWrite), DataField("heavyDamageModifier")] - public FixedPoint2 HeavyDamageModifier = FixedPoint2.New(1.25); - - //TODO: Was set to 0 value as of 2023-08-06, might want to delete later if we never go back to this idea - /// - /// How much stamina it costs for a heavy attack. - /// - [ViewVariables(VVAccess.ReadWrite), DataField("heavyStaminaCost")] - public float HeavyStaminaCost = 0f; + [ViewVariables(VVAccess.ReadWrite), DataField("clickDamageModifier")] + public FixedPoint2 ClickDamageModifier = FixedPoint2.New(1); // TODO: Temporarily 1.5 until interactionoutline is adjusted to use melee, then probably drop to 1.2 /// diff --git a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs index 3e4b562d8a2..08ecea43263 100644 --- a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs +++ b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs @@ -104,7 +104,7 @@ private void OnMeleeShot(EntityUid uid, MeleeWeaponComponent component, ref GunS if (gun.NextFire > component.NextAttack) { component.NextAttack = gun.NextFire; - Dirty(component); + Dirty(uid, component); } } @@ -133,7 +133,7 @@ private void OnMeleeSelected(EntityUid uid, MeleeWeaponComponent component, Hand return; component.NextAttack = minimum; - Dirty(component); + Dirty(uid, component); } private void OnGetBonusMeleeDamage(EntityUid uid, BonusMeleeDamageComponent component, ref GetMeleeDamageEvent args) @@ -164,7 +164,7 @@ private void OnStopAttack(StopAttackEvent msg, EntitySessionEventArgs args) return; if (!TryGetWeapon(user.Value, out var weaponUid, out var weapon) || - weaponUid != msg.Weapon) + weaponUid != GetEntity(msg.Weapon)) { return; } @@ -173,7 +173,7 @@ private void OnStopAttack(StopAttackEvent msg, EntitySessionEventArgs args) return; weapon.Attacking = false; - Dirty(weapon); + Dirty(weaponUid, weapon); } private void OnLightAttack(LightAttackEvent msg, EntitySessionEventArgs args) @@ -184,12 +184,12 @@ private void OnLightAttack(LightAttackEvent msg, EntitySessionEventArgs args) return; if (!TryGetWeapon(user.Value, out var weaponUid, out var weapon) || - weaponUid != msg.Weapon) + weaponUid != GetEntity(msg.Weapon)) { return; } - AttemptAttack(args.SenderSession.AttachedEntity!.Value, msg.Weapon, weapon, msg, args.SenderSession); + AttemptAttack(args.SenderSession.AttachedEntity!.Value, weaponUid, weapon, msg, args.SenderSession); } private void OnHeavyAttack(HeavyAttackEvent msg, EntitySessionEventArgs args) @@ -200,12 +200,12 @@ private void OnHeavyAttack(HeavyAttackEvent msg, EntitySessionEventArgs args) } if (!TryGetWeapon(args.SenderSession.AttachedEntity.Value, out var weaponUid, out var weapon) || - weaponUid != msg.Weapon) + weaponUid != GetEntity(msg.Weapon)) { return; } - AttemptAttack(args.SenderSession.AttachedEntity.Value, msg.Weapon, weapon, msg, args.SenderSession); + AttemptAttack(args.SenderSession.AttachedEntity.Value, weaponUid, weapon, msg, args.SenderSession); } private void OnDisarmAttack(DisarmAttackEvent msg, EntitySessionEventArgs args) @@ -272,7 +272,7 @@ public FixedPoint2 GetHeavyDamageModifier(EntityUid uid, EntityUid user, MeleeWe if (!Resolve(uid, ref component)) return FixedPoint2.Zero; - var ev = new GetHeavyDamageModifierEvent(uid, component.HeavyDamageModifier, 1, user); + var ev = new GetHeavyDamageModifierEvent(uid, component.ClickDamageModifier, 1, user); RaiseLocalEvent(uid, ref ev); return ev.DamageModifier * ev.Multipliers; @@ -330,7 +330,7 @@ public bool TryGetWeapon(EntityUid entity, out EntityUid weaponUid, [NotNullWhen public void AttemptLightAttackMiss(EntityUid user, EntityUid weaponUid, MeleeWeaponComponent weapon, EntityCoordinates coordinates) { - AttemptAttack(user, weaponUid, weapon, new LightAttackEvent(null, weaponUid, coordinates), null); + AttemptAttack(user, weaponUid, weapon, new LightAttackEvent(null, GetNetEntity(weaponUid), GetNetCoordinates(coordinates)), null); } public bool AttemptLightAttack(EntityUid user, EntityUid weaponUid, MeleeWeaponComponent weapon, EntityUid target) @@ -338,7 +338,7 @@ public bool AttemptLightAttack(EntityUid user, EntityUid weaponUid, MeleeWeaponC if (!TryComp(target, out var targetXform)) return false; - return AttemptAttack(user, weaponUid, weapon, new LightAttackEvent(target, weaponUid, targetXform.Coordinates), null); + return AttemptAttack(user, weaponUid, weapon, new LightAttackEvent(GetNetEntity(target), GetNetEntity(weaponUid), GetNetCoordinates(targetXform.Coordinates)), null); } public bool AttemptDisarmAttack(EntityUid user, EntityUid weaponUid, MeleeWeaponComponent weapon, EntityUid target) @@ -346,7 +346,7 @@ public bool AttemptDisarmAttack(EntityUid user, EntityUid weaponUid, MeleeWeapon if (!TryComp(target, out var targetXform)) return false; - return AttemptAttack(user, weaponUid, weapon, new DisarmAttackEvent(target, targetXform.Coordinates), null); + return AttemptAttack(user, weaponUid, weapon, new DisarmAttackEvent(GetNetEntity(target), GetNetCoordinates(targetXform.Coordinates)), null); } /// @@ -366,16 +366,20 @@ private bool AttemptAttack(EntityUid user, EntityUid weaponUid, MeleeWeaponCompo switch (attack) { case LightAttackEvent light: - if (!Blocker.CanAttack(user, light.Target)) + var lightTarget = GetEntity(light.Target); + + if (!Blocker.CanAttack(user, lightTarget)) return false; // Can't self-attack if you're the weapon - if (weaponUid == light.Target) + if (weaponUid == lightTarget) return false; break; case DisarmAttackEvent disarm: - if (!Blocker.CanAttack(user, disarm.Target)) + var disarmTarget = GetEntity(disarm.Target); + + if (!Blocker.CanAttack(user, disarmTarget)) return false; break; default: @@ -398,7 +402,7 @@ private bool AttemptAttack(EntityUid user, EntityUid weaponUid, MeleeWeaponCompo swings++; } - Dirty(weapon); + Dirty(weaponUid, weapon); // Do this AFTER attack so it doesn't spam every tick var ev = new AttemptMeleeEvent(); @@ -441,7 +445,7 @@ private bool AttemptAttack(EntityUid user, EntityUid weaponUid, MeleeWeaponCompo throw new NotImplementedException(); } - DoLungeAnimation(user, weapon.Angle, attack.Coordinates.ToMap(EntityManager, TransformSystem), weapon.Range, animation); + DoLungeAnimation(user, weapon.Angle, GetCoordinates(attack.Coordinates).ToMap(EntityManager, TransformSystem), weapon.Range, animation); } weapon.Attacking = true; @@ -454,13 +458,14 @@ protected virtual void DoLightAttack(EntityUid user, LightAttackEvent ev, Entity { // If I do not come back later to fix Light Attacks being Heavy Attacks you can throw me in the spider pit -Errant var damage = GetDamage(meleeUid, user, component) * GetHeavyDamageModifier(meleeUid, user, component); + var target = GetEntity(ev.Target); // For consistency with wide attacks stuff needs damageable. - if (Deleted(ev.Target) || - !HasComp(ev.Target) || - !TryComp(ev.Target, out var targetXform) || + if (Deleted(target) || + !HasComp(target) || + !TryComp(target, out var targetXform) || // Not in LOS. - !InRange(user, ev.Target.Value, component.Range, session)) + !InRange(user, target.Value, component.Range, session)) { // Leave IsHit set to true, because the only time it's set to false // is when a melee weapon is examined. Misses are inferred from an @@ -485,7 +490,7 @@ protected virtual void DoLightAttack(EntityUid user, LightAttackEvent ev, Entity // Sawmill.Debug($"Melee damage is {damage.Total} out of {component.Damage.Total}"); // Raise event before doing damage so we can cancel damage if the event is handled - var hitEvent = new MeleeHitEvent(new List { ev.Target.Value }, user, meleeUid, damage); + var hitEvent = new MeleeHitEvent(new List { target.Value }, user, meleeUid, damage); RaiseLocalEvent(meleeUid, hitEvent); if (hitEvent.Handled) @@ -493,43 +498,45 @@ protected virtual void DoLightAttack(EntityUid user, LightAttackEvent ev, Entity var targets = new List(1) { - ev.Target.Value + target.Value }; - Interaction.DoContactInteraction(ev.Weapon, ev.Target); - Interaction.DoContactInteraction(user, ev.Weapon); + var weapon = GetEntity(ev.Weapon); + + Interaction.DoContactInteraction(weapon, target); + Interaction.DoContactInteraction(user, weapon); // If the user is using a long-range weapon, this probably shouldn't be happening? But I'll interpret melee as a // somewhat messy scuffle. See also, heavy attacks. - Interaction.DoContactInteraction(user, ev.Target); + Interaction.DoContactInteraction(user, target); // For stuff that cares about it being attacked. var attackedEvent = new AttackedEvent(meleeUid, user, targetXform.Coordinates); - RaiseLocalEvent(ev.Target.Value, attackedEvent); + RaiseLocalEvent(target.Value, attackedEvent); var modifiedDamage = DamageSpecifier.ApplyModifierSets(damage + hitEvent.BonusDamage + attackedEvent.BonusDamage, hitEvent.ModifiersList); - var damageResult = Damageable.TryChangeDamage(ev.Target, modifiedDamage, origin:user); + var damageResult = Damageable.TryChangeDamage(target, modifiedDamage, origin:user); if (damageResult != null && damageResult.Total > FixedPoint2.Zero) { // If the target has stamina and is taking blunt damage, they should also take stamina damage based on their blunt to stamina factor if (damageResult.DamageDict.TryGetValue("Blunt", out var bluntDamage)) { - _stamina.TakeStaminaDamage(ev.Target.Value, (bluntDamage * component.BluntStaminaDamageFactor).Float(), visual: false, source: user, with: meleeUid == user ? null : meleeUid); + _stamina.TakeStaminaDamage(target.Value, (bluntDamage * component.BluntStaminaDamageFactor).Float(), visual: false, source: user, with: meleeUid == user ? null : meleeUid); } if (meleeUid == user) { AdminLogger.Add(LogType.MeleeHit, LogImpact.Medium, - $"{ToPrettyString(user):actor} melee attacked (light) {ToPrettyString(ev.Target.Value):subject} using their hands and dealt {damageResult.Total:damage} damage"); + $"{ToPrettyString(user):actor} melee attacked (light) {ToPrettyString(target.Value):subject} using their hands and dealt {damageResult.Total:damage} damage"); } else { AdminLogger.Add(LogType.MeleeHit, LogImpact.Medium, - $"{ToPrettyString(user):actor} melee attacked (light) {ToPrettyString(ev.Target.Value):subject} using {ToPrettyString(meleeUid):tool} and dealt {damageResult.Total:damage} damage"); + $"{ToPrettyString(user):actor} melee attacked (light) {ToPrettyString(target.Value):subject} using {ToPrettyString(meleeUid):tool} and dealt {damageResult.Total:damage} damage"); } - PlayHitSound(ev.Target.Value, user, GetHighestDamageSound(modifiedDamage, _protoManager), hitEvent.HitSoundOverride, component.HitSound); + PlayHitSound(target.Value, user, GetHighestDamageSound(modifiedDamage, _protoManager), hitEvent.HitSoundOverride, component.HitSound); } else { @@ -561,23 +568,17 @@ private bool DoHeavyAttack(EntityUid user, HeavyAttackEvent ev, EntityUid meleeU if (!TryComp(user, out var userXform)) return false; - var targetMap = ev.Coordinates.ToMap(EntityManager, TransformSystem); + var targetMap = GetCoordinates(ev.Coordinates).ToMap(EntityManager, TransformSystem); if (targetMap.MapId != userXform.MapID) return false; - if (!_stamina.TryTakeStamina(user, component.HeavyStaminaCost)) - { - PopupSystem.PopupClient(Loc.GetString("melee-stamina"), user, user); - return false; - } - var userPos = TransformSystem.GetWorldPosition(userXform); var direction = targetMap.Position - userPos; var distance = Math.Min(component.Range, direction.Length()); var damage = GetDamage(meleeUid, user, component); - var entities = ev.Entities; + var entities = GetEntityList(ev.Entities); if (entities.Count == 0) { @@ -638,12 +639,14 @@ private bool DoHeavyAttack(EntityUid user, HeavyAttackEvent ev, EntityUid meleeU if (hitEvent.Handled) return true; - Interaction.DoContactInteraction(user, ev.Weapon); + var weapon = GetEntity(ev.Weapon); + + Interaction.DoContactInteraction(user, weapon); // For stuff that cares about it being attacked. foreach (var target in targets) { - Interaction.DoContactInteraction(ev.Weapon, target); + Interaction.DoContactInteraction(weapon, target); // If the user is using a long-range weapon, this probably shouldn't be happening? But I'll interpret melee as a // somewhat messy scuffle. See also, light attacks. @@ -654,7 +657,7 @@ private bool DoHeavyAttack(EntityUid user, HeavyAttackEvent ev, EntityUid meleeU foreach (var entity in targets) { - var attackedEvent = new AttackedEvent(meleeUid, user, ev.Coordinates); + var attackedEvent = new AttackedEvent(meleeUid, user, GetCoordinates(ev.Coordinates)); RaiseLocalEvent(entity, attackedEvent); var modifiedDamage = DamageSpecifier.ApplyModifierSets(damage + hitEvent.BonusDamage + attackedEvent.BonusDamage, hitEvent.ModifiersList); @@ -826,9 +829,13 @@ private void PlayHitSound(EntityUid target, EntityUid? user, string? type, Sound protected virtual bool DoDisarm(EntityUid user, DisarmAttackEvent ev, EntityUid meleeUid, MeleeWeaponComponent component, ICommonSession? session) { - if (Deleted(ev.Target) || - user == ev.Target) + var target = GetEntity(ev.Target); + + if (Deleted(target) || + user == target) + { return false; + } // Play a sound to give instant feedback; same with playing the animations Audio.PlayPredicted(component.SwingSound, meleeUid, user); diff --git a/Content.Shared/Weapons/Misc/BaseForceGunComponent.cs b/Content.Shared/Weapons/Misc/BaseForceGunComponent.cs index a646401066c..61c84f7d3d0 100644 --- a/Content.Shared/Weapons/Misc/BaseForceGunComponent.cs +++ b/Content.Shared/Weapons/Misc/BaseForceGunComponent.cs @@ -2,7 +2,7 @@ namespace Content.Shared.Weapons.Misc; -public abstract class BaseForceGunComponent : Component +public abstract partial class BaseForceGunComponent : Component { [ViewVariables(VVAccess.ReadWrite), DataField("lineColor"), AutoNetworkedField] public Color LineColor = Color.Orange; diff --git a/Content.Shared/Weapons/Misc/GrapplingProjectileComponent.cs b/Content.Shared/Weapons/Misc/GrapplingProjectileComponent.cs index 5dcc7702eec..9e7447f1daa 100644 --- a/Content.Shared/Weapons/Misc/GrapplingProjectileComponent.cs +++ b/Content.Shared/Weapons/Misc/GrapplingProjectileComponent.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Weapons.Misc; [RegisterComponent, NetworkedComponent] -public sealed class GrapplingProjectileComponent : Component +public sealed partial class GrapplingProjectileComponent : Component { } diff --git a/Content.Shared/Weapons/Misc/SharedTetherGunSystem.cs b/Content.Shared/Weapons/Misc/SharedTetherGunSystem.cs index 1e4e8902240..807395c4655 100644 --- a/Content.Shared/Weapons/Misc/SharedTetherGunSystem.cs +++ b/Content.Shared/Weapons/Misc/SharedTetherGunSystem.cs @@ -45,10 +45,26 @@ public override void Initialize() SubscribeLocalEvent(OnTetheredBuckleAttempt); SubscribeLocalEvent(OnTetheredUpdateCanMove); + SubscribeLocalEvent(OnTetheredContainerInserted); InitializeForce(); } + private void OnTetheredContainerInserted(EntityUid uid, TetheredComponent component, EntGotInsertedIntoContainerMessage args) + { + if (TryComp(component.Tetherer, out var tetherGun)) + { + StopTether(component.Tetherer, tetherGun); + return; + } + + if (TryComp(component.Tetherer, out var forceGun)) + { + StopTether(component.Tetherer, forceGun); + return; + } + } + private void OnTetheredBuckleAttempt(EntityUid uid, TetheredComponent component, ref BuckleAttemptEvent args) { args.Cancelled = true; @@ -96,14 +112,16 @@ private void OnTetherMove(RequestTetherMoveEvent msg, EntitySessionEventArgs arg return; } - if (!msg.Coordinates.TryDistance(EntityManager, TransformSystem, Transform(gunUid.Value).Coordinates, + var coords = GetCoordinates(msg.Coordinates); + + if (!coords.TryDistance(EntityManager, TransformSystem, Transform(gunUid.Value).Coordinates, out var distance) || distance > gun.MaxDistance) { return; } - TransformSystem.SetCoordinates(gun.TetherEntity.Value, msg.Coordinates); + TransformSystem.SetCoordinates(gun.TetherEntity.Value, coords); } private void OnTetherRanged(EntityUid uid, TetherGunComponent component, AfterInteractEvent args) @@ -152,7 +170,8 @@ protected virtual bool CanTether(EntityUid uid, BaseForceGunComponent component, if (HasComp(target) || !TryComp(target, out var physics)) return false; - if (physics.BodyType == BodyType.Static && !component.CanUnanchor) + if (physics.BodyType == BodyType.Static && !component.CanUnanchor || + _container.IsEntityInContainer(target)) return false; if (physics.Mass > component.MassLimit) @@ -266,7 +285,7 @@ protected virtual void StopTether(EntityUid gunUid, BaseForceGunComponent compon [Serializable, NetSerializable] protected sealed class RequestTetherMoveEvent : EntityEventArgs { - public EntityCoordinates Coordinates; + public NetCoordinates Coordinates; } [Serializable, NetSerializable] diff --git a/Content.Shared/Weapons/Ranged/Components/AmmoComponent.cs b/Content.Shared/Weapons/Ranged/Components/AmmoComponent.cs index 075192a76f7..62af124252b 100644 --- a/Content.Shared/Weapons/Ranged/Components/AmmoComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/AmmoComponent.cs @@ -9,7 +9,7 @@ namespace Content.Shared.Weapons.Ranged.Components; /// Allows the entity to be fired from a gun. /// [RegisterComponent, Virtual] -public class AmmoComponent : Component, IShootable +public partial class AmmoComponent : Component, IShootable { // Muzzle flash stored on ammo because if we swap a gun to whatever we may want to override it. @@ -20,7 +20,7 @@ public class AmmoComponent : Component, IShootable /// /// Spawns another prototype to be shot instead of itself. /// -[RegisterComponent, NetworkedComponent, ComponentReference(typeof(AmmoComponent)), AutoGenerateComponentState] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class CartridgeAmmoComponent : AmmoComponent { [ViewVariables(VVAccess.ReadWrite), DataField("proto", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] diff --git a/Content.Shared/Weapons/Ranged/Components/AmmoProviderComponent.cs b/Content.Shared/Weapons/Ranged/Components/AmmoProviderComponent.cs index c54d081c885..9a7fdc07deb 100644 --- a/Content.Shared/Weapons/Ranged/Components/AmmoProviderComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/AmmoProviderComponent.cs @@ -3,4 +3,4 @@ namespace Content.Shared.Weapons.Ranged.Components; [NetworkedComponent] -public abstract class AmmoProviderComponent : Component {} +public abstract partial class AmmoProviderComponent : Component {} diff --git a/Content.Shared/Weapons/Ranged/Components/BallisticAmmoProviderComponent.cs b/Content.Shared/Weapons/Ranged/Components/BallisticAmmoProviderComponent.cs index 679b0df782e..8d0f6a52838 100644 --- a/Content.Shared/Weapons/Ranged/Components/BallisticAmmoProviderComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/BallisticAmmoProviderComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Weapons.Ranged.Components; -[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +[RegisterComponent, NetworkedComponent] public sealed partial class BallisticAmmoProviderComponent : Component { [ViewVariables(VVAccess.ReadWrite), DataField("soundRack")] @@ -25,7 +25,6 @@ public sealed partial class BallisticAmmoProviderComponent : Component public int Count => UnspawnedCount + Container.ContainedEntities.Count; [ViewVariables(VVAccess.ReadWrite), DataField("unspawnedCount")] - [AutoNetworkedField] public int UnspawnedCount; [ViewVariables(VVAccess.ReadWrite), DataField("whitelist")] @@ -35,7 +34,6 @@ public sealed partial class BallisticAmmoProviderComponent : Component // TODO: Make this use stacks when the typeserializer is done. [DataField("entities")] - [AutoNetworkedField(true)] public List Entities = new(); /// @@ -45,7 +43,6 @@ public sealed partial class BallisticAmmoProviderComponent : Component /// Set to false for entities like turrets to avoid users being able to cycle them. /// [ViewVariables(VVAccess.ReadWrite), DataField("cycleable")] - [AutoNetworkedField] public bool Cycleable = true; /// @@ -53,4 +50,10 @@ public sealed partial class BallisticAmmoProviderComponent : Component /// [ViewVariables(VVAccess.ReadWrite), DataField("mayTransfer")] public bool MayTransfer = false; + + /// + /// DoAfter delay for filling a bullet into another ballistic ammo provider. + /// + [DataField("fillDelay")] + public TimeSpan FillDelay = TimeSpan.FromSeconds(0.5); } diff --git a/Content.Shared/Weapons/Ranged/Components/BatteryAmmoProviderComponent.cs b/Content.Shared/Weapons/Ranged/Components/BatteryAmmoProviderComponent.cs index be638bf7a14..dfe2e9cf4fa 100644 --- a/Content.Shared/Weapons/Ranged/Components/BatteryAmmoProviderComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/BatteryAmmoProviderComponent.cs @@ -1,6 +1,6 @@ namespace Content.Shared.Weapons.Ranged.Components; -public abstract class BatteryAmmoProviderComponent : AmmoProviderComponent +public abstract partial class BatteryAmmoProviderComponent : AmmoProviderComponent { /// /// How much battery it costs to fire once. diff --git a/Content.Shared/Weapons/Ranged/Components/ClothingSlotAmmoProviderComponent.cs b/Content.Shared/Weapons/Ranged/Components/ClothingSlotAmmoProviderComponent.cs index af3fd57b566..e363fc9fe10 100644 --- a/Content.Shared/Weapons/Ranged/Components/ClothingSlotAmmoProviderComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/ClothingSlotAmmoProviderComponent.cs @@ -10,7 +10,7 @@ namespace Content.Shared.Weapons.Ranged.Components; /// to an entity in the user's clothing slot. /// [RegisterComponent, NetworkedComponent, Access(typeof(SharedGunSystem))] -public sealed class ClothingSlotAmmoProviderComponent : AmmoProviderComponent +public sealed partial class ClothingSlotAmmoProviderComponent : AmmoProviderComponent { /// /// The slot that the ammo provider should be located in. diff --git a/Content.Shared/Weapons/Ranged/Components/ContainerAmmoProviderComponent.cs b/Content.Shared/Weapons/Ranged/Components/ContainerAmmoProviderComponent.cs index 8b5a6761a40..0f2884bf58a 100644 --- a/Content.Shared/Weapons/Ranged/Components/ContainerAmmoProviderComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/ContainerAmmoProviderComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Weapons.Ranged.Components; /// Handles pulling entities from the given container to use as ammunition. /// [RegisterComponent] -public sealed class ContainerAmmoProviderComponent : AmmoProviderComponent +public sealed partial class ContainerAmmoProviderComponent : AmmoProviderComponent { [DataField("container", required: true)] [ViewVariables] diff --git a/Content.Shared/Weapons/Ranged/Components/GunComponent.cs b/Content.Shared/Weapons/Ranged/Components/GunComponent.cs index 6577137ce7c..fd61fd70e64 100644 --- a/Content.Shared/Weapons/Ranged/Components/GunComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/GunComponent.cs @@ -1,4 +1,3 @@ -using Content.Shared.Actions.ActionTypes; using Robust.Shared.Audio; using Robust.Shared.GameStates; using Robust.Shared.Map; @@ -133,9 +132,6 @@ public partial class GunComponent : Component [AutoNetworkedField] public SelectiveFire SelectedMode = SelectiveFire.SemiAuto; - [DataField("selectModeAction")] - public InstantAction? SelectModeAction; - /// /// Whether or not information about /// the gun will be shown on examine. diff --git a/Content.Shared/Weapons/Ranged/Components/GunRequiresWieldComponent.cs b/Content.Shared/Weapons/Ranged/Components/GunRequiresWieldComponent.cs index e8b93c60fdc..2ae71334b47 100644 --- a/Content.Shared/Weapons/Ranged/Components/GunRequiresWieldComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/GunRequiresWieldComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Weapons.Ranged.Components; /// Indicates that this gun requires wielding to be useable. /// [RegisterComponent, NetworkedComponent, Access(typeof(WieldableSystem))] -public sealed class GunRequiresWieldComponent : Component +public sealed partial class GunRequiresWieldComponent : Component { } diff --git a/Content.Shared/Weapons/Ranged/Components/HitscanBatteryAmmoProviderComponent.cs b/Content.Shared/Weapons/Ranged/Components/HitscanBatteryAmmoProviderComponent.cs index 57b9ac91fa1..be9d9805a83 100644 --- a/Content.Shared/Weapons/Ranged/Components/HitscanBatteryAmmoProviderComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/HitscanBatteryAmmoProviderComponent.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Weapons.Ranged.Components; [RegisterComponent, NetworkedComponent] -public sealed class HitscanBatteryAmmoProviderComponent : BatteryAmmoProviderComponent +public sealed partial class HitscanBatteryAmmoProviderComponent : BatteryAmmoProviderComponent { [ViewVariables(VVAccess.ReadWrite), DataField("proto", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] public string Prototype = default!; diff --git a/Content.Shared/Weapons/Ranged/Components/MagazineAmmoProviderComponent.cs b/Content.Shared/Weapons/Ranged/Components/MagazineAmmoProviderComponent.cs index 60977dda738..9aff60fd3ae 100644 --- a/Content.Shared/Weapons/Ranged/Components/MagazineAmmoProviderComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/MagazineAmmoProviderComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Weapons.Ranged; /// Wrapper around a magazine (handled via ItemSlot). Passes all AmmoProvider logic onto it. /// [RegisterComponent, Virtual] -public class MagazineAmmoProviderComponent : AmmoProviderComponent +public partial class MagazineAmmoProviderComponent : AmmoProviderComponent { [ViewVariables(VVAccess.ReadWrite), DataField("soundAutoEject")] public SoundSpecifier? SoundAutoEject = new SoundPathSpecifier("/Audio/Weapons/Guns/EmptyAlarm/smg_empty_alarm.ogg"); diff --git a/Content.Shared/Weapons/Ranged/Components/ProjectileBatteryAmmoProviderComponent.cs b/Content.Shared/Weapons/Ranged/Components/ProjectileBatteryAmmoProviderComponent.cs index 0e5e1bb2384..d0de4363968 100644 --- a/Content.Shared/Weapons/Ranged/Components/ProjectileBatteryAmmoProviderComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/ProjectileBatteryAmmoProviderComponent.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Weapons.Ranged.Components; [RegisterComponent, NetworkedComponent] -public sealed class ProjectileBatteryAmmoProviderComponent : BatteryAmmoProviderComponent +public sealed partial class ProjectileBatteryAmmoProviderComponent : BatteryAmmoProviderComponent { [ViewVariables(VVAccess.ReadWrite), DataField("proto", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] public string Prototype = default!; diff --git a/Content.Shared/Weapons/Ranged/Components/RechargeCycleAmmoComponent.cs b/Content.Shared/Weapons/Ranged/Components/RechargeCycleAmmoComponent.cs index 70a053e2929..292c52c0a99 100644 --- a/Content.Shared/Weapons/Ranged/Components/RechargeCycleAmmoComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/RechargeCycleAmmoComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Weapons.Ranged.Components; /// Recharges ammo upon the gun being cycled. /// [RegisterComponent, NetworkedComponent] -public sealed class RechargeCycleAmmoComponent : Component +public sealed partial class RechargeCycleAmmoComponent : Component { } diff --git a/Content.Shared/Weapons/Ranged/Components/ReflectiveComponent.cs b/Content.Shared/Weapons/Ranged/Components/ReflectiveComponent.cs index 65cc21c3144..d037832e1ef 100644 --- a/Content.Shared/Weapons/Ranged/Components/ReflectiveComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/ReflectiveComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Weapons.Ranged.Components; /// Only applies if it is shot like a projectile and not if it is thrown. /// [RegisterComponent, NetworkedComponent] -public sealed class ReflectiveComponent : Component +public sealed partial class ReflectiveComponent : Component { [ViewVariables(VVAccess.ReadWrite), DataField("reflective")] public ReflectType Reflective = ReflectType.NonEnergy; diff --git a/Content.Shared/Weapons/Ranged/Components/RevolverAmmoProviderComponent.cs b/Content.Shared/Weapons/Ranged/Components/RevolverAmmoProviderComponent.cs index 6f8e13b9df7..d982dfcb104 100644 --- a/Content.Shared/Weapons/Ranged/Components/RevolverAmmoProviderComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/RevolverAmmoProviderComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Weapons.Ranged.Components; [RegisterComponent, NetworkedComponent] -public sealed class RevolverAmmoProviderComponent : AmmoProviderComponent +public sealed partial class RevolverAmmoProviderComponent : AmmoProviderComponent { /* * Revolver has an array of its slots of which we can fire from any index. diff --git a/Content.Shared/Weapons/Ranged/Components/SharedAmmoCounterComponent.cs b/Content.Shared/Weapons/Ranged/Components/SharedAmmoCounterComponent.cs index cf70ca516ec..d3c144b15db 100644 --- a/Content.Shared/Weapons/Ranged/Components/SharedAmmoCounterComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/SharedAmmoCounterComponent.cs @@ -6,4 +6,4 @@ namespace Content.Shared.Weapons.Ranged.Components; /// Shows an ItemStatus with the ammo of the gun. Adjusts based on what the ammoprovider is. /// [NetworkedComponent] -public abstract class SharedAmmoCounterComponent : Component {} +public abstract partial class SharedAmmoCounterComponent : Component {} diff --git a/Content.Shared/Weapons/Ranged/Components/SolutionAmmoProviderComponent.cs b/Content.Shared/Weapons/Ranged/Components/SolutionAmmoProviderComponent.cs index 4a76281d4bc..d936f3a9e2f 100644 --- a/Content.Shared/Weapons/Ranged/Components/SolutionAmmoProviderComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/SolutionAmmoProviderComponent.cs @@ -18,7 +18,7 @@ public sealed partial class SolutionAmmoProviderComponent : Component /// How much reagent it costs to fire once. /// [DataField("fireCost"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] - public float FireCost = 10; + public float FireCost = 5; /// /// The amount of shots currently available. diff --git a/Content.Shared/Weapons/Ranged/Components/SpeedLoaderComponent.cs b/Content.Shared/Weapons/Ranged/Components/SpeedLoaderComponent.cs index de736eac940..d9a2d1cdfe0 100644 --- a/Content.Shared/Weapons/Ranged/Components/SpeedLoaderComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/SpeedLoaderComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Weapons.Ranged.Components; /// Allows this entity to bulk change revolver ammo. /// [RegisterComponent, NetworkedComponent] -public sealed class SpeedLoaderComponent : Component +public sealed partial class SpeedLoaderComponent : Component { } diff --git a/Content.Shared/Weapons/Ranged/Components/UseDelayOnShootComponent.cs b/Content.Shared/Weapons/Ranged/Components/UseDelayOnShootComponent.cs index c2b09505024..0916af17df3 100644 --- a/Content.Shared/Weapons/Ranged/Components/UseDelayOnShootComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/UseDelayOnShootComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Weapons.Ranged.Components; /// Applies UseDelay whenever the entity shoots. /// [RegisterComponent, NetworkedComponent, Access(typeof(UseDelayOnShootSystem))] -public sealed class UseDelayOnShootComponent : Component +public sealed partial class UseDelayOnShootComponent : Component { } diff --git a/Content.Shared/Weapons/Ranged/Events/MuzzleFlashEvent.cs b/Content.Shared/Weapons/Ranged/Events/MuzzleFlashEvent.cs index ca9c3f87069..91f5e6cd868 100644 --- a/Content.Shared/Weapons/Ranged/Events/MuzzleFlashEvent.cs +++ b/Content.Shared/Weapons/Ranged/Events/MuzzleFlashEvent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Weapons.Ranged.Events; [Serializable, NetSerializable] public sealed class MuzzleFlashEvent : EntityEventArgs { - public EntityUid Uid; + public NetEntity Uid; public string Prototype; /// @@ -16,7 +16,7 @@ public sealed class MuzzleFlashEvent : EntityEventArgs /// public bool MatchRotation; - public MuzzleFlashEvent(EntityUid uid, string prototype, bool matchRotation = false) + public MuzzleFlashEvent(NetEntity uid, string prototype, bool matchRotation = false) { Uid = uid; Prototype = prototype; diff --git a/Content.Shared/Weapons/Ranged/Events/RequestShootEvent.cs b/Content.Shared/Weapons/Ranged/Events/RequestShootEvent.cs index af352d84456..21e90b2108b 100644 --- a/Content.Shared/Weapons/Ranged/Events/RequestShootEvent.cs +++ b/Content.Shared/Weapons/Ranged/Events/RequestShootEvent.cs @@ -9,6 +9,6 @@ namespace Content.Shared.Weapons.Ranged.Events; [Serializable, NetSerializable] public sealed class RequestShootEvent : EntityEventArgs { - public EntityUid Gun; - public EntityCoordinates Coordinates; -} \ No newline at end of file + public NetEntity Gun; + public NetCoordinates Coordinates; +} diff --git a/Content.Shared/Weapons/Ranged/Events/RequestStopShootEvent.cs b/Content.Shared/Weapons/Ranged/Events/RequestStopShootEvent.cs index 5fc1f5dc4e6..8cbe6f6487b 100644 --- a/Content.Shared/Weapons/Ranged/Events/RequestStopShootEvent.cs +++ b/Content.Shared/Weapons/Ranged/Events/RequestStopShootEvent.cs @@ -8,5 +8,5 @@ namespace Content.Shared.Weapons.Ranged.Events; [Serializable, NetSerializable] public sealed class RequestStopShootEvent : EntityEventArgs { - public EntityUid Gun; -} \ No newline at end of file + public NetEntity Gun; +} diff --git a/Content.Shared/Weapons/Ranged/HitscanPrototype.cs b/Content.Shared/Weapons/Ranged/HitscanPrototype.cs index 17f9ff47939..121249752d2 100644 --- a/Content.Shared/Weapons/Ranged/HitscanPrototype.cs +++ b/Content.Shared/Weapons/Ranged/HitscanPrototype.cs @@ -12,7 +12,7 @@ public sealed class HitscanPrototype : IPrototype, IShootable { [ViewVariables] [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [ViewVariables(VVAccess.ReadWrite), DataField("staminaDamage")] public float StaminaDamage; diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Ballistic.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Ballistic.cs index b0f8ae15d6f..f8b2394315c 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Ballistic.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Ballistic.cs @@ -1,3 +1,4 @@ +using Content.Shared.DoAfter; using Content.Shared.Examine; using Content.Shared.Interaction; using Content.Shared.Interaction.Events; @@ -13,6 +14,8 @@ namespace Content.Shared.Weapons.Ranged.Systems; public abstract partial class SharedGunSystem { + [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; + protected virtual void InitializeBallistic() { SubscribeLocalEvent(OnBallisticInit); @@ -24,7 +27,31 @@ protected virtual void InitializeBallistic() SubscribeLocalEvent>(OnBallisticVerb); SubscribeLocalEvent(OnBallisticInteractUsing); SubscribeLocalEvent(OnBallisticAfterInteract); + SubscribeLocalEvent(OnBallisticAmmoFillDoAfter); SubscribeLocalEvent(OnBallisticUse); + + SubscribeLocalEvent(OnBallisticGetState); + SubscribeLocalEvent(OnBallisticHandleState); + } + + private void OnBallisticGetState(EntityUid uid, BallisticAmmoProviderComponent component, ref ComponentGetState args) + { + args.State = new BallisticAmmoProviderComponentState() + { + UnspawnedCount = component.UnspawnedCount, + Cycleable = component.Cycleable, + Entities = GetNetEntityList(component.Entities), + }; + } + + private void OnBallisticHandleState(EntityUid uid, BallisticAmmoProviderComponent component, ref ComponentHandleState args) + { + if (args.Current is not BallisticAmmoProviderComponentState state) + return; + + component.UnspawnedCount = state.UnspawnedCount; + component.Cycleable = state.Cycleable; + component.Entities = EnsureEntityList(state.Entities, uid); } private void OnBallisticUse(EntityUid uid, BallisticAmmoProviderComponent component, UseInHandEvent args) @@ -61,7 +88,7 @@ private void OnBallisticAfterInteract(EntityUid uid, BallisticAmmoProviderCompon args.Target == null || args.Used == args.Target || Deleted(args.Target) || - !TryComp(args.Target, out BallisticAmmoProviderComponent? targetComponent) || + !TryComp(args.Target, out var targetComponent) || targetComponent.Whitelist == null) { return; @@ -69,7 +96,23 @@ private void OnBallisticAfterInteract(EntityUid uid, BallisticAmmoProviderCompon args.Handled = true; - if (targetComponent.Entities.Count + targetComponent.UnspawnedCount == targetComponent.Capacity) + _doAfter.TryStartDoAfter(new DoAfterArgs(EntityManager, args.User, component.FillDelay, new AmmoFillDoAfterEvent(), used: uid, target: args.Target, eventTarget: uid) + { + BreakOnTargetMove = true, + BreakOnUserMove = true, + BreakOnDamage = false, + NeedHand = true + }); + } + + private void OnBallisticAmmoFillDoAfter(EntityUid uid, BallisticAmmoProviderComponent component, AmmoFillDoAfterEvent args) + { + if (Deleted(args.Target) || + !TryComp(args.Target, out var target) || + target.Whitelist == null) + return; + + if (target.Entities.Count + target.UnspawnedCount == target.Capacity) { Popup( Loc.GetString("gun-ballistic-transfer-target-full", @@ -83,8 +126,8 @@ private void OnBallisticAfterInteract(EntityUid uid, BallisticAmmoProviderCompon { Popup( Loc.GetString("gun-ballistic-transfer-empty", - ("entity", args.Used)), - args.Used, + ("entity", uid)), + uid, args.User); return; } @@ -96,36 +139,39 @@ void SimulateInsertAmmo(EntityUid ammo, EntityUid ammoProvider, EntityCoordinate } List<(EntityUid? Entity, IShootable Shootable)> ammo = new(); - var evTakeAmmo = new TakeAmmoEvent(1, ammo, Transform(args.Used).Coordinates, args.User); - RaiseLocalEvent(args.Used, evTakeAmmo); + var evTakeAmmo = new TakeAmmoEvent(1, ammo, Transform(uid).Coordinates, args.User); + RaiseLocalEvent(uid, evTakeAmmo); foreach (var (ent, _) in ammo) { if (ent == null) continue; - if (!targetComponent.Whitelist.IsValid(ent.Value)) + if (!target.Whitelist.IsValid(ent.Value)) { Popup( Loc.GetString("gun-ballistic-transfer-invalid", ("ammoEntity", ent.Value), ("targetEntity", args.Target.Value)), - args.Used, + uid, args.User); - // TODO: For better or worse, this will play a sound, but it's the - // more future-proof thing to do than copying the same code - // that OnBallisticInteractUsing has, sans sound. - SimulateInsertAmmo(ent.Value, args.Used, Transform(args.Used).Coordinates); + // play sound to be cool + SimulateInsertAmmo(ent.Value, uid, Transform(uid).Coordinates); } else { SimulateInsertAmmo(ent.Value, args.Target.Value, Transform(args.Target.Value).Coordinates); } - if (ent.Value.IsClientSide()) + if (IsClientSide(ent.Value)) Del(ent.Value); } + + // repeat if there is more space in the target and more ammo to fill it + var moreSpace = target.Entities.Count + target.UnspawnedCount < target.Capacity; + var moreAmmo = component.Entities.Count + component.UnspawnedCount > 0; + args.Repeat = moreSpace && moreAmmo; } private void OnBallisticVerb(EntityUid uid, BallisticAmmoProviderComponent component, GetVerbsEvent args) @@ -216,7 +262,7 @@ private void OnBallisticTakeAmmo(EntityUid uid, BallisticAmmoProviderComponent c { entity = component.Entities[^1]; - args.Ammo.Add((entity, EnsureComp(entity))); + args.Ammo.Add((entity, EnsureShootable(entity))); component.Entities.RemoveAt(component.Entities.Count - 1); component.Container.Remove(entity); } @@ -224,7 +270,7 @@ private void OnBallisticTakeAmmo(EntityUid uid, BallisticAmmoProviderComponent c { component.UnspawnedCount--; entity = Spawn(component.FillProto, args.Coordinates); - args.Ammo.Add((entity, EnsureComp(entity))); + args.Ammo.Add((entity, EnsureShootable(entity))); } } @@ -246,4 +292,20 @@ private void UpdateBallisticAppearance(EntityUid uid, BallisticAmmoProviderCompo Appearance.SetData(uid, AmmoVisuals.AmmoCount, GetBallisticShots(component), appearance); Appearance.SetData(uid, AmmoVisuals.AmmoMax, component.Capacity, appearance); } + + [Serializable, NetSerializable] + private sealed class BallisticAmmoProviderComponentState : ComponentState + { + public int UnspawnedCount; + public List Entities = new(); + public bool Cycleable = true; + } +} + +/// +/// DoAfter event for filling one ballistic ammo provider from another. +/// +[Serializable, NetSerializable] +public sealed partial class AmmoFillDoAfterEvent : SimpleDoAfterEvent +{ } diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.BasicEntity.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.BasicEntity.cs index 14aeefb9165..731e7a526d9 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.BasicEntity.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.BasicEntity.cs @@ -37,7 +37,7 @@ private void OnBasicEntityTakeAmmo(EntityUid uid, BasicEntityAmmoProviderCompone } var ent = Spawn(component.Proto, args.Coordinates); - args.Ammo.Add((ent, EnsureComp(ent))); + args.Ammo.Add((ent, EnsureShootable(ent))); } _recharge.Reset(uid); diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Battery.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Battery.cs index 5ce43e246b0..ecbd19d5173 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Battery.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Battery.cs @@ -98,7 +98,7 @@ protected void UpdateBatteryAppearance(EntityUid uid, BatteryAmmoProviderCompone { case ProjectileBatteryAmmoProviderComponent proj: var ent = Spawn(proj.Prototype, coordinates); - return (ent, EnsureComp(ent)); + return (ent, EnsureShootable(ent)); case HitscanBatteryAmmoProviderComponent hitscan: return (null, ProtoManager.Index(hitscan.Prototype)); default: diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.ChamberMagazine.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.ChamberMagazine.cs index 2b82e0051f0..bd65ef5cf68 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.ChamberMagazine.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.ChamberMagazine.cs @@ -25,7 +25,6 @@ protected virtual void InitializeChamberMagazine() * Racking does both in one hit and has a different sound (to avoid RSI + sounds cooler). */ - SubscribeLocalEvent>(OnChamberVerb); SubscribeLocalEvent>(OnChamberActivationVerb); SubscribeLocalEvent>(OnChamberInteractionVerb); SubscribeLocalEvent>(OnMagazineVerb); @@ -47,18 +46,9 @@ private void OnChamberStartup(EntityUid uid, ChamberMagazineAmmoProviderComponen } } - private void OnChamberVerb(EntityUid uid, ChamberMagazineAmmoProviderComponent component, GetVerbsEvent args) - { - if (component.BoltClosed != null) - { - args.Verbs.Add(new Verb() - { - Text = component.BoltClosed.Value ? Loc.GetString("gun-chamber-bolt-open") : Loc.GetString("gun-chamber-bolt-close"), - Act = () => ToggleBolt(uid, component, args.User), - }); - } - } - + /// + /// Called when user "Activated In World" (E) with the gun as the target + /// private void OnChamberActivate(EntityUid uid, ChamberMagazineAmmoProviderComponent component, ActivateInWorldEvent args) { if (args.Handled) @@ -68,6 +58,9 @@ private void OnChamberActivate(EntityUid uid, ChamberMagazineAmmoProviderCompone ToggleBolt(uid, component, args.User); } + /// + /// Called when gun was "Activated In Hand" (Z) + /// private void OnChamberUse(EntityUid uid, ChamberMagazineAmmoProviderComponent component, UseInHandEvent args) { if (args.Handled) @@ -77,6 +70,9 @@ private void OnChamberUse(EntityUid uid, ChamberMagazineAmmoProviderComponent co UseChambered(uid, component, args.User); } + /// + /// Creates "Rack" verb on the gun + /// private void OnChamberActivationVerb(EntityUid uid, ChamberMagazineAmmoProviderComponent component, GetVerbsEvent args) { if (!args.CanAccess || !args.CanInteract || component.BoltClosed == null) @@ -92,10 +88,16 @@ private void OnChamberActivationVerb(EntityUid uid, ChamberMagazineAmmoProviderC }); } + /// + /// Opens then closes the bolt, or just closes it if currently open. + /// private void UseChambered(EntityUid uid, ChamberMagazineAmmoProviderComponent component, EntityUid? user = null) { if (component.BoltClosed == false) + { + ToggleBolt(uid, component, user); return; + } if (TryTakeChamberEntity(uid, out var chamberEnt)) { @@ -118,6 +120,9 @@ private void UseChambered(EntityUid uid, ChamberMagazineAmmoProviderComponent co } } + /// + /// Creates "Open/Close bolt" verb on the gun + /// private void OnChamberInteractionVerb(EntityUid uid, ChamberMagazineAmmoProviderComponent component, GetVerbsEvent args) { if (!args.CanAccess || !args.CanInteract || component.BoltClosed == null) @@ -134,6 +139,9 @@ private void OnChamberInteractionVerb(EntityUid uid, ChamberMagazineAmmoProvider }); } + /// + /// Updates the bolt to its new state + /// public void SetBoltClosed(EntityUid uid, ChamberMagazineAmmoProviderComponent component, bool value, EntityUid? user = null, AppearanceComponent? appearance = null, ItemSlotsComponent? slots = null) { if (component.BoltClosed == null || value == component.BoltClosed) @@ -198,10 +206,11 @@ private void CycleCartridge(EntityUid uid, ChamberMagazineAmmoProviderComponent { // Try to put a new round in if possible. var magEnt = GetMagazineEntity(uid); + var chambered = GetChamberEntity(uid); // Similar to what takeammo does though that uses an optimised version where // multiple bullets may be fired in a single tick. - if (magEnt != null) + if (magEnt != null && chambered == null) { var relayedArgs = new TakeAmmoEvent(1, new List<(EntityUid? Entity, IShootable Shootable)>(), @@ -234,6 +243,9 @@ private void CycleCartridge(EntityUid uid, ChamberMagazineAmmoProviderComponent } } + /// + /// Sets the bolt's positional value to the other state + /// public void ToggleBolt(EntityUid uid, ChamberMagazineAmmoProviderComponent component, EntityUid? user = null) { if (component.BoltClosed == null) @@ -242,16 +254,24 @@ public void ToggleBolt(EntityUid uid, ChamberMagazineAmmoProviderComponent compo SetBoltClosed(uid, component, !component.BoltClosed.Value, user); } + /// + /// Called when the gun was Examined + /// private void OnChamberMagazineExamine(EntityUid uid, ChamberMagazineAmmoProviderComponent component, ExaminedEvent args) { if (!args.IsInDetailsRange) return; var (count, _) = GetChamberMagazineCountCapacity(uid, component); + string boltState; if (component.BoltClosed != null) { - args.PushMarkup(Loc.GetString("gun-chamber-bolt", ("bolt", component.BoltClosed), ("color", component.BoltClosed.Value ? Color.FromHex("#94e1f2") : Color.FromHex("#f29d94")))); + if (component.BoltClosed == true) + boltState = Loc.GetString("gun-chamber-bolt-open-state"); + else + boltState = Loc.GetString("gun-chamber-bolt-closed-state"); + args.PushMarkup(Loc.GetString("gun-chamber-bolt", ("bolt", boltState), ("color", component.BoltClosed.Value ? Color.FromHex("#94e1f2") : Color.FromHex("#f29d94")))); } args.PushMarkup(Loc.GetString("gun-magazine-examine", ("color", AmmoExamineColor), ("count", count))); @@ -332,7 +352,7 @@ private void OnChamberMagazineTakeAmmo(EntityUid uid, ChamberMagazineAmmoProvide { if (TryTakeChamberEntity(uid, out chamberEnt)) { - args.Ammo.Add((chamberEnt.Value, EnsureComp(chamberEnt.Value))); + args.Ammo.Add((chamberEnt.Value, EnsureShootable(chamberEnt.Value))); } // No ammo returned. else @@ -386,7 +406,7 @@ private void OnChamberMagazineTakeAmmo(EntityUid uid, ChamberMagazineAmmoProvide { // Shooting code won't eject it if it's still contained. chamberEnt = slot.ContainedEntity; - args.Ammo.Add((chamberEnt.Value, EnsureComp(chamberEnt.Value))); + args.Ammo.Add((chamberEnt.Value, EnsureShootable(chamberEnt.Value))); } } } diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Container.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Container.cs index 999d5379a2a..d9a7cb53c10 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Container.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Container.cs @@ -30,7 +30,7 @@ private void OnContainerTakeAmmo(EntityUid uid, ContainerAmmoProviderComponent c if (_netManager.IsServer) container.Remove(ent); - args.Ammo.Add((ent, EnsureComp(ent))); + args.Ammo.Add((ent, EnsureShootable(ent))); } } diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Interactions.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Interactions.cs index 0f8a97be001..659bc054f6b 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Interactions.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Interactions.cs @@ -1,6 +1,4 @@ using Content.Shared.Actions; -using Content.Shared.Actions.ActionTypes; -using Content.Shared.CombatMode; using Content.Shared.Examine; using Content.Shared.Verbs; using Content.Shared.Weapons.Ranged.Components; @@ -96,7 +94,7 @@ public void CycleFire(EntityUid uid, GunComponent component, EntityUid? user = n } // TODO: Actions need doing for guns anyway. - private sealed class CycleModeEvent : InstantActionEvent + private sealed partial class CycleModeEvent : InstantActionEvent { public SelectiveFire Mode; } diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Revolver.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Revolver.cs index 45c133a4a58..f5eb7e87121 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Revolver.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Revolver.cs @@ -47,7 +47,7 @@ private void OnRevolverGetState(EntityUid uid, RevolverAmmoProviderComponent com args.State = new RevolverAmmoProviderComponentState { CurrentIndex = component.CurrentIndex, - AmmoSlots = component.AmmoSlots, + AmmoSlots = GetNetEntityList(component.AmmoSlots), Chambers = component.Chambers, }; } @@ -64,7 +64,7 @@ private void OnRevolverHandleState(EntityUid uid, RevolverAmmoProviderComponent // Need to copy across the state rather than the ref. for (var i = 0; i < component.AmmoSlots.Count; i++) { - component.AmmoSlots[i] = state.AmmoSlots[i]; + component.AmmoSlots[i] = EnsureEntity(state.AmmoSlots[i], uid); component.Chambers[i] = state.Chambers[i]; } @@ -342,13 +342,13 @@ private void OnRevolverTakeAmmo(EntityUid uid, RevolverAmmoProviderComponent com component.Chambers[index] = false; SetCartridgeSpent(ent, cartridge, true); var spawned = Spawn(cartridge.Prototype, args.Coordinates); - args.Ammo.Add((spawned, EnsureComp(spawned))); + args.Ammo.Add((spawned, EnsureShootable(spawned))); Del(ent); continue; } component.Chambers[i] = null; - args.Ammo.Add((ent, EnsureComp(ent))); + args.Ammo.Add((ent, EnsureShootable(ent))); } } else if (component.AmmoSlots[index] != null) @@ -362,13 +362,13 @@ private void OnRevolverTakeAmmo(EntityUid uid, RevolverAmmoProviderComponent com SetCartridgeSpent(ent.Value, cartridge, true); var spawned = Spawn(cartridge.Prototype, args.Coordinates); - args.Ammo.Add((spawned, EnsureComp(spawned))); + args.Ammo.Add((spawned, EnsureShootable(spawned))); continue; } component.AmmoContainer.Remove(ent.Value); component.AmmoSlots[index] = null; - args.Ammo.Add((ent.Value, EnsureComp(ent.Value))); + args.Ammo.Add((ent.Value, EnsureShootable(ent.Value))); TransformSystem.SetCoordinates(ent.Value, args.Coordinates); } } @@ -416,7 +416,7 @@ private void OnRevolverInit(EntityUid uid, RevolverAmmoProviderComponent compone protected sealed class RevolverAmmoProviderComponentState : ComponentState { public int CurrentIndex; - public List AmmoSlots = default!; + public List AmmoSlots = default!; public bool?[] Chambers = default!; } diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Solution.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Solution.cs index d04b3fad30a..268b2a74734 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Solution.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Solution.cs @@ -45,7 +45,7 @@ protected virtual void UpdateSolutionShots(EntityUid uid, SolutionAmmoProviderCo protected virtual (EntityUid Entity, IShootable) GetSolutionShot(EntityUid uid, SolutionAmmoProviderComponent component, EntityCoordinates position) { var ent = Spawn(component.Prototype, position); - return (ent, EnsureComp(ent)); + return (ent, EnsureShootable(ent)); } protected void UpdateSolutionAppearance(EntityUid uid, SolutionAmmoProviderComponent component) diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs index cbf48432f9e..5ef51121527 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs @@ -1,6 +1,8 @@ using System.Diagnostics.CodeAnalysis; +using Content.Shared.ActionBlocker; using Content.Shared.Actions; using Content.Shared.Administration.Logs; +using Content.Shared.Audio; using Content.Shared.CombatMode; using Content.Shared.Containers.ItemSlots; using Content.Shared.Damage; @@ -32,6 +34,7 @@ namespace Content.Shared.Weapons.Ranged.Systems; public abstract partial class SharedGunSystem : EntitySystem { + [Dependency] private readonly ActionBlockerSystem _actionBlockerSystem = default!; [Dependency] protected readonly IGameTiming Timing = default!; [Dependency] protected readonly IMapManager MapManager = default!; [Dependency] private readonly INetManager _netManager = default!; @@ -128,18 +131,20 @@ private void OnShootRequest(RequestShootEvent msg, EntitySessionEventArgs args) return; } - if (ent != msg.Gun) + if (ent != GetEntity(msg.Gun)) return; - gun.ShootCoordinates = msg.Coordinates; + gun.ShootCoordinates = GetCoordinates(msg.Coordinates); Log.Debug($"Set shoot coordinates to {gun.ShootCoordinates}"); AttemptShoot(user.Value, ent, gun); } private void OnStopShootRequest(RequestStopShootEvent ev, EntitySessionEventArgs args) { + var gunUid = GetEntity(ev.Gun); + if (args.SenderSession.AttachedEntity == null || - !TryComp(ev.Gun, out var gun) || + !TryComp(gunUid, out var gun) || !TryGetGun(args.SenderSession.AttachedEntity.Value, out _, out var userGun)) { return; @@ -148,7 +153,7 @@ private void OnStopShootRequest(RequestStopShootEvent ev, EntitySessionEventArgs if (userGun != gun) return; - StopShooting(ev.Gun, gun); + StopShooting(gunUid, gun); } public bool CanShoot(GunComponent component) @@ -207,7 +212,8 @@ public void AttemptShoot(EntityUid user, EntityUid gunUid, GunComponent gun, Ent private void AttemptShoot(EntityUid user, EntityUid gunUid, GunComponent gun) { - if (gun.FireRate <= 0f) + if (gun.FireRate <= 0f || + !_actionBlockerSystem.CanUseHeldEntity(user)) return; var toCoordinates = gun.ShootCoordinates; @@ -346,7 +352,7 @@ public void Shoot( EntityUid? user = null, bool throwItems = false) { - var shootable = EnsureComp(ammo); + var shootable = EnsureShootable(ammo); Shoot(gunUid, gun, new List<(EntityUid? Entity, IShootable Shootable)>(1) { (ammo, shootable) }, fromCoordinates, toCoordinates, out userImpulse, user, throwItems); } @@ -403,10 +409,24 @@ protected void EjectCartridge( } if (playSound && TryComp(entity, out var cartridge)) { - Audio.PlayPvs(cartridge.EjectSound, entity, AudioParams.Default.WithVariation(0.05f).WithVolume(-1f)); + Audio.PlayPvs(cartridge.EjectSound, entity, AudioParams.Default.WithVariation(SharedContentAudioSystem.DefaultVariation).WithVolume(-1f)); } } + protected IShootable EnsureShootable(EntityUid uid) + { + if (TryComp(uid, out var cartridge)) + return cartridge; + + return EnsureComp(uid); + } + + protected void RemoveShootable(EntityUid uid) + { + RemCompDeferred(uid); + RemCompDeferred(uid); + } + protected void MuzzleFlash(EntityUid gun, AmmoComponent component, EntityUid? user = null) { var sprite = component.MuzzleFlash; @@ -414,7 +434,7 @@ protected void MuzzleFlash(EntityUid gun, AmmoComponent component, EntityUid? us if (sprite == null) return; - var ev = new MuzzleFlashEvent(gun, sprite, user == gun); + var ev = new MuzzleFlashEvent(GetNetEntity(gun), sprite, user == gun); CreateEffect(gun, ev, user); } @@ -436,7 +456,7 @@ public void CauseImpulse(EntityCoordinates fromCoordinates, EntityCoordinates to [Serializable, NetSerializable] public sealed class HitscanEvent : EntityEventArgs { - public List<(EntityCoordinates coordinates, Angle angle, SpriteSpecifier Sprite, float Distance)> Sprites = new(); + public List<(NetCoordinates coordinates, Angle angle, SpriteSpecifier Sprite, float Distance)> Sprites = new(); } } diff --git a/Content.Shared/Weapons/Reflect/ReflectUserComponent.cs b/Content.Shared/Weapons/Reflect/ReflectUserComponent.cs new file mode 100644 index 00000000000..44fe60813e7 --- /dev/null +++ b/Content.Shared/Weapons/Reflect/ReflectUserComponent.cs @@ -0,0 +1,13 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Weapons.Reflect; + +/// +/// Added to an entity if it equips a reflection item in a hand slot or into its clothing. +/// Reflection events will then be relayed. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class ReflectUserComponent : Component +{ + +} diff --git a/Content.Shared/Weapons/Reflect/SharedReflectSystem.cs b/Content.Shared/Weapons/Reflect/SharedReflectSystem.cs index 1a5e00d6ce4..f6193c6898a 100644 --- a/Content.Shared/Weapons/Reflect/SharedReflectSystem.cs +++ b/Content.Shared/Weapons/Reflect/SharedReflectSystem.cs @@ -3,17 +3,18 @@ using Content.Shared.Administration.Logs; using Content.Shared.Audio; using Content.Shared.Database; -using Content.Shared.Hands.Components; -using Content.Shared.Weapons.Ranged.Events; +using Content.Shared.Hands; using Content.Shared.Inventory; using Content.Shared.Inventory.Events; -using Robust.Shared.Physics.Components; using Content.Shared.Popups; using Content.Shared.Projectiles; using Content.Shared.Weapons.Ranged.Components; +using Content.Shared.Weapons.Ranged.Events; using Robust.Shared.Network; +using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Systems; using Robust.Shared.Random; +using Robust.Shared.Timing; namespace Content.Shared.Weapons.Reflect; @@ -25,6 +26,7 @@ public abstract class SharedReflectSystem : EntitySystem [Dependency] private readonly INetManager _netManager = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; + [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; @@ -35,37 +37,55 @@ public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnHandReflectProjectile); - SubscribeLocalEvent(OnHandsReflectHitscan); - SubscribeLocalEvent(OnReflectCollide); SubscribeLocalEvent(OnReflectHitscan); + SubscribeLocalEvent(OnReflectUserCollide); + SubscribeLocalEvent(OnReflectUserHitscan); SubscribeLocalEvent(OnReflectEquipped); SubscribeLocalEvent(OnReflectUnequipped); + SubscribeLocalEvent(OnReflectHandEquipped); + SubscribeLocalEvent(OnReflectHandUnequipped); } - private void OnReflectCollide(EntityUid uid, ReflectComponent component, ref ProjectileReflectAttemptEvent args) + private void OnReflectUserHitscan(EntityUid uid, ReflectUserComponent component, ref HitScanReflectAttemptEvent args) { - if (args.Cancelled) - { + if (args.Reflected) return; + + foreach (var ent in _inventorySystem.GetHandOrInventoryEntities(uid, SlotFlags.All & ~SlotFlags.POCKET)) + { + if (!TryReflectHitscan(uid, ent, args.Shooter, args.SourceItem, args.Direction, out var dir)) + continue; + + args.Direction = dir.Value; + args.Reflected = true; + break; } + } + + private void OnReflectUserCollide(EntityUid uid, ReflectUserComponent component, ref ProjectileReflectAttemptEvent args) + { + foreach (var ent in _inventorySystem.GetHandOrInventoryEntities(uid, SlotFlags.All & ~SlotFlags.POCKET)) + { + if (!TryReflectProjectile(uid, ent, args.ProjUid)) + continue; - if (TryReflectProjectile(uid, args.ProjUid, reflect: component)) args.Cancelled = true; + break; + } } - private void OnHandReflectProjectile(EntityUid uid, HandsComponent hands, ref ProjectileReflectAttemptEvent args) + private void OnReflectCollide(EntityUid uid, ReflectComponent component, ref ProjectileReflectAttemptEvent args) { if (args.Cancelled) return; - if (hands.ActiveHandEntity != null && TryReflectProjectile(hands.ActiveHandEntity.Value, args.ProjUid)) + if (TryReflectProjectile(uid, uid, args.ProjUid, reflect: component)) args.Cancelled = true; } - private bool TryReflectProjectile(EntityUid reflector, EntityUid projectile, ProjectileComponent? projectileComp = null, ReflectComponent? reflect = null) + private bool TryReflectProjectile(EntityUid user, EntityUid reflector, EntityUid projectile, ProjectileComponent? projectileComp = null, ReflectComponent? reflect = null) { if (!Resolve(reflector, ref reflect, false) || !reflect.Enabled || @@ -79,7 +99,7 @@ private bool TryReflectProjectile(EntityUid reflector, EntityUid projectile, Pro var rotation = _random.NextAngle(-reflect.Spread / 2, reflect.Spread / 2).Opposite(); var existingVelocity = _physics.GetMapLinearVelocity(projectile, component: physics); - var relativeVelocity = existingVelocity - _physics.GetMapLinearVelocity(reflector); + var relativeVelocity = existingVelocity - _physics.GetMapLinearVelocity(user); var newVelocity = rotation.RotateVec(relativeVelocity); // Have the velocity in world terms above so need to convert it back to local. @@ -93,38 +113,26 @@ private bool TryReflectProjectile(EntityUid reflector, EntityUid projectile, Pro if (_netManager.IsServer) { - _popup.PopupEntity(Loc.GetString("reflect-shot"), reflector); - _audio.PlayPvs(reflect.SoundOnReflect, reflector, AudioHelpers.WithVariation(0.05f, _random)); + _popup.PopupEntity(Loc.GetString("reflect-shot"), user); + _audio.PlayPvs(reflect.SoundOnReflect, user, AudioHelpers.WithVariation(0.05f, _random)); } if (Resolve(projectile, ref projectileComp, false)) { - _adminLogger.Add(LogType.BulletHit, LogImpact.Medium, $"{ToPrettyString(reflector)} reflected {ToPrettyString(projectile)} from {ToPrettyString(projectileComp.Weapon)} shot by {projectileComp.Shooter}"); + _adminLogger.Add(LogType.BulletHit, LogImpact.Medium, $"{ToPrettyString(user)} reflected {ToPrettyString(projectile)} from {ToPrettyString(projectileComp.Weapon)} shot by {projectileComp.Shooter}"); - projectileComp.Shooter = reflector; - projectileComp.Weapon = reflector; - Dirty(projectileComp); + projectileComp.Shooter = user; + projectileComp.Weapon = user; + Dirty(projectile, projectileComp); } else { - _adminLogger.Add(LogType.BulletHit, LogImpact.Medium, $"{ToPrettyString(reflector)} reflected {ToPrettyString(projectile)}"); + _adminLogger.Add(LogType.BulletHit, LogImpact.Medium, $"{ToPrettyString(user)} reflected {ToPrettyString(projectile)}"); } return true; } - private void OnHandsReflectHitscan(EntityUid uid, HandsComponent hands, ref HitScanReflectAttemptEvent args) - { - if (args.Reflected || hands.ActiveHandEntity == null) - return; - - if (TryReflectHitscan(hands.ActiveHandEntity.Value, args.Shooter, args.SourceItem, args.Direction, out var dir)) - { - args.Direction = dir.Value; - args.Reflected = true; - } - } - private void OnReflectHitscan(EntityUid uid, ReflectComponent component, ref HitScanReflectAttemptEvent args) { if (args.Reflected || @@ -133,14 +141,19 @@ private void OnReflectHitscan(EntityUid uid, ReflectComponent component, ref Hit return; } - if (TryReflectHitscan(uid, args.Shooter, args.SourceItem, args.Direction, out var dir)) + if (TryReflectHitscan(uid, uid, args.Shooter, args.SourceItem, args.Direction, out var dir)) { args.Direction = dir.Value; args.Reflected = true; } } - private bool TryReflectHitscan(EntityUid reflector, EntityUid? shooter, EntityUid shotSource, Vector2 direction, + private bool TryReflectHitscan( + EntityUid user, + EntityUid reflector, + EntityUid? shooter, + EntityUid shotSource, + Vector2 direction, [NotNullWhen(true)] out Vector2? newDirection) { if (!TryComp(reflector, out var reflect) || @@ -153,65 +166,61 @@ private bool TryReflectHitscan(EntityUid reflector, EntityUid? shooter, EntityUi if (_netManager.IsServer) { - _popup.PopupEntity(Loc.GetString("reflect-shot"), reflector); - _audio.PlayPvs(reflect.SoundOnReflect, reflector, AudioHelpers.WithVariation(0.05f, _random)); + _popup.PopupEntity(Loc.GetString("reflect-shot"), user); + _audio.PlayPvs(reflect.SoundOnReflect, user, AudioHelpers.WithVariation(0.05f, _random)); } var spread = _random.NextAngle(-reflect.Spread / 2, reflect.Spread / 2); newDirection = -spread.RotateVec(direction); if (shooter != null) - _adminLogger.Add(LogType.HitScanHit, LogImpact.Medium, $"{ToPrettyString(reflector)} reflected hitscan from {ToPrettyString(shotSource)} shot by {ToPrettyString(shooter.Value)}"); + _adminLogger.Add(LogType.HitScanHit, LogImpact.Medium, $"{ToPrettyString(user)} reflected hitscan from {ToPrettyString(shotSource)} shot by {ToPrettyString(shooter.Value)}"); else - _adminLogger.Add(LogType.HitScanHit, LogImpact.Medium, $"{ToPrettyString(reflector)} reflected hitscan from {ToPrettyString(shotSource)}"); + _adminLogger.Add(LogType.HitScanHit, LogImpact.Medium, $"{ToPrettyString(user)} reflected hitscan from {ToPrettyString(shotSource)}"); return true; } - private void OnReflectEquipped(EntityUid uid, ReflectComponent comp, GotEquippedEvent args) + private void OnReflectEquipped(EntityUid uid, ReflectComponent component, GotEquippedEvent args) { - - if (!TryComp(args.Equipee, out ReflectComponent? reflection)) - return; - - if (args.Slot == "pocket1" || args.Slot == "pocket2") + if (_gameTiming.ApplyingState) return; - reflection.Enabled = comp.Enabled; - // reflection probability should be: (1 - old probability) * newly-equipped item probability + old probability - // example: if entity has .25 reflection and newly-equipped item has .7, entity should have (1 - .25) * .7 + .25 = .775 - reflection.ReflectProb += (1 - reflection.ReflectProb) * comp.ReflectProb; - + EnsureComp(args.Equipee); } private void OnReflectUnequipped(EntityUid uid, ReflectComponent comp, GotUnequippedEvent args) { + RefreshReflectUser(args.Equipee); + } - if (!TryComp(args.Equipee, out ReflectComponent? reflection)) + private void OnReflectHandEquipped(EntityUid uid, ReflectComponent component, GotEquippedHandEvent args) + { + if (_gameTiming.ApplyingState) return; - if (!_inventorySystem.TryGetSlots(args.Equipee, out var slotDef)) - return; + EnsureComp(args.User); + } - // you could recalculate reflectprob with new = (old - component) / (1 - component), but component=1 introduces loss - // still need to either maintain a counter or loop through all slots to determine reflection.enabled anyway? - float newProb = 1; - var reflecting = false; + private void OnReflectHandUnequipped(EntityUid uid, ReflectComponent component, GotUnequippedHandEvent args) + { + RefreshReflectUser(args.User); + } - foreach (var slot in slotDef) + /// + /// Refreshes whether someone has reflection potential so we can raise directed events on them. + /// + private void RefreshReflectUser(EntityUid user) + { + foreach (var ent in _inventorySystem.GetHandOrInventoryEntities(user, SlotFlags.All & ~SlotFlags.POCKET)) { - if (!_inventorySystem.TryGetSlotEntity(args.Equipee, slot.Name, out var slotEnt)) + if (!HasComp(ent)) continue; - if (!TryComp(slotEnt, out ReflectComponent? refcomp)) - continue; - - reflecting = true; - var prob = refcomp.ReflectProb; - newProb -= newProb * prob; + EnsureComp(user); + return; } - reflection.ReflectProb = 1 - newProb; - reflection.Enabled = reflecting; + RemCompDeferred(user); } } diff --git a/Content.Shared/Weather/IgnoreWeatherComponent.cs b/Content.Shared/Weather/IgnoreWeatherComponent.cs index d3660f4b4d6..8b8d004ee2a 100644 --- a/Content.Shared/Weather/IgnoreWeatherComponent.cs +++ b/Content.Shared/Weather/IgnoreWeatherComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Weather; /// This entity will be ignored for considering weather on a tile /// [RegisterComponent, NetworkedComponent] -public sealed class IgnoreWeatherComponent : Component +public sealed partial class IgnoreWeatherComponent : Component { } diff --git a/Content.Shared/Weather/WeatherComponent.cs b/Content.Shared/Weather/WeatherComponent.cs index b5e420582eb..6166ea0c64e 100644 --- a/Content.Shared/Weather/WeatherComponent.cs +++ b/Content.Shared/Weather/WeatherComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Weather; [RegisterComponent, NetworkedComponent] -public sealed class WeatherComponent : Component +public sealed partial class WeatherComponent : Component { /// /// Currently running weathers @@ -20,7 +20,7 @@ public sealed class WeatherComponent : Component } [DataDefinition, Serializable, NetSerializable] -public sealed class WeatherData +public sealed partial class WeatherData { // Client audio stream. [NonSerialized] diff --git a/Content.Shared/Whitelist/EntityWhitelist.cs b/Content.Shared/Whitelist/EntityWhitelist.cs index 39bff84a51d..942de2b0e82 100644 --- a/Content.Shared/Whitelist/EntityWhitelist.cs +++ b/Content.Shared/Whitelist/EntityWhitelist.cs @@ -20,7 +20,7 @@ namespace Content.Shared.Whitelist /// [DataDefinition] [Serializable, NetSerializable] - public sealed class EntityWhitelist + public sealed partial class EntityWhitelist { /// /// Component names that are allowed in the whitelist. diff --git a/Content.Shared/Wieldable/Components/IncreaseDamageOnWieldComponent.cs b/Content.Shared/Wieldable/Components/IncreaseDamageOnWieldComponent.cs index 4d453d51977..3336923b024 100644 --- a/Content.Shared/Wieldable/Components/IncreaseDamageOnWieldComponent.cs +++ b/Content.Shared/Wieldable/Components/IncreaseDamageOnWieldComponent.cs @@ -3,8 +3,8 @@ namespace Content.Shared.Wieldable.Components; [RegisterComponent, Access(typeof(WieldableSystem))] -public sealed class IncreaseDamageOnWieldComponent : Component +public sealed partial class IncreaseDamageOnWieldComponent : Component { [DataField("damage", required: true)] public DamageSpecifier BonusDamage = default!; -} \ No newline at end of file +} diff --git a/Content.Shared/Wieldable/WieldableDoAfterEvent.cs b/Content.Shared/Wieldable/WieldableDoAfterEvent.cs index fdbe02884d9..8431de9b268 100644 --- a/Content.Shared/Wieldable/WieldableDoAfterEvent.cs +++ b/Content.Shared/Wieldable/WieldableDoAfterEvent.cs @@ -4,6 +4,6 @@ namespace Content.Shared.Wieldable; [Serializable, NetSerializable] -public sealed class WieldableDoAfterEvent : SimpleDoAfterEvent +public sealed partial class WieldableDoAfterEvent : SimpleDoAfterEvent { -} \ No newline at end of file +} diff --git a/Content.Shared/Wieldable/WieldableSystem.cs b/Content.Shared/Wieldable/WieldableSystem.cs index c85ea463cd3..d4d83dfdf71 100644 --- a/Content.Shared/Wieldable/WieldableSystem.cs +++ b/Content.Shared/Wieldable/WieldableSystem.cs @@ -6,6 +6,7 @@ using Content.Shared.Item; using Content.Shared.Popups; using Content.Shared.Verbs; +using Content.Shared.Weapons.Melee; using Content.Shared.Weapons.Melee.Events; using Content.Shared.Weapons.Melee.Components; using Content.Shared.Weapons.Ranged.Components; @@ -59,7 +60,11 @@ private void OnShootAttempt(EntityUid uid, GunRequiresWieldComponent component, !wieldable.Wielded) { args.Cancelled = true; - args.Message = Loc.GetString("wieldable-component-requires", ("item", uid)); + + if (!HasComp(uid) && !HasComp(uid)) + { + args.Message = Loc.GetString("wieldable-component-requires", ("item", uid)); + } } } @@ -165,7 +170,7 @@ public bool TryWield(EntityUid used, WieldableComponent component, EntityUid use if (ev.Cancelled) return false; - var doargs = new DoAfterArgs(user, component.WieldTime, new WieldableDoAfterEvent(), used, used: used) + var doargs = new DoAfterArgs(EntityManager, user, component.WieldTime, new WieldableDoAfterEvent(), used, used: used) { BreakOnUserMove = false, BreakOnDamage = true diff --git a/Content.Shared/Wires/Events.cs b/Content.Shared/Wires/Events.cs index d28203e0096..bfd81253ea1 100644 --- a/Content.Shared/Wires/Events.cs +++ b/Content.Shared/Wires/Events.cs @@ -4,13 +4,13 @@ namespace Content.Shared.Wires; [Serializable, NetSerializable] -public sealed class WireDoAfterEvent : DoAfterEvent +public sealed partial class WireDoAfterEvent : DoAfterEvent { [DataField("action", required: true)] - public readonly WiresAction Action; + public WiresAction Action; [DataField("id", required: true)] - public readonly int Id; + public int Id; private WireDoAfterEvent() { diff --git a/Content.Shared/Wires/SharedWiresComponent.cs b/Content.Shared/Wires/SharedWiresComponent.cs index dd749affdb2..2239fd72b1b 100644 --- a/Content.Shared/Wires/SharedWiresComponent.cs +++ b/Content.Shared/Wires/SharedWiresComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Wires { [Serializable, NetSerializable] - public sealed class WirePanelDoAfterEvent : SimpleDoAfterEvent + public sealed partial class WirePanelDoAfterEvent : SimpleDoAfterEvent { } diff --git a/Content.Shared/Wires/WiresPanelSecurityLevelPrototype.cs b/Content.Shared/Wires/WiresPanelSecurityLevelPrototype.cs index 1fcc982f109..f5a72a66d75 100644 --- a/Content.Shared/Wires/WiresPanelSecurityLevelPrototype.cs +++ b/Content.Shared/Wires/WiresPanelSecurityLevelPrototype.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Wires; public sealed class WiresPanelSecurityLevelPrototype : IPrototype { [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [DataField("examine")] public string? Examine = default!; diff --git a/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactAnalyzer.cs b/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactAnalyzer.cs index 3945d93ca3d..151bea990f0 100644 --- a/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactAnalyzer.cs +++ b/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactAnalyzer.cs @@ -32,7 +32,7 @@ public sealed class AnalysisConsoleExtractButtonPressedMessage : BoundUserInterf [Serializable, NetSerializable] public sealed class AnalysisConsoleScanUpdateState : BoundUserInterfaceState { - public EntityUid? Artifact; + public NetEntity? Artifact; public bool AnalyzerConnected; @@ -52,7 +52,7 @@ public sealed class AnalysisConsoleScanUpdateState : BoundUserInterfaceState public int PointAmount; - public AnalysisConsoleScanUpdateState(EntityUid? artifact, bool analyzerConnected, bool serverConnected, bool canScan, bool canPrint, + public AnalysisConsoleScanUpdateState(NetEntity? artifact, bool analyzerConnected, bool serverConnected, bool canScan, bool canPrint, FormattedMessage? scanReport, bool scanning, TimeSpan timeRemaining, TimeSpan totalTime, int pointAmount) { Artifact = artifact; diff --git a/Content.Shared/Xenoarchaeology/XenoArtifacts/ArtifactEffectPrototype.cs b/Content.Shared/Xenoarchaeology/XenoArtifacts/ArtifactEffectPrototype.cs index 1e47b9e4432..f3c3e6d4701 100644 --- a/Content.Shared/Xenoarchaeology/XenoArtifacts/ArtifactEffectPrototype.cs +++ b/Content.Shared/Xenoarchaeology/XenoArtifacts/ArtifactEffectPrototype.cs @@ -10,11 +10,11 @@ namespace Content.Shared.Xenoarchaeology.XenoArtifacts; /// [Prototype("artifactEffect")] [DataDefinition] -public sealed class ArtifactEffectPrototype : IPrototype +public sealed partial class ArtifactEffectPrototype : IPrototype { /// [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; /// /// Components that are added to the artifact when the specfic effect is active. diff --git a/Content.Shared/Xenoarchaeology/XenoArtifacts/ArtifactTriggerPrototype.cs b/Content.Shared/Xenoarchaeology/XenoArtifacts/ArtifactTriggerPrototype.cs index 76f827b00fb..3f831593d26 100644 --- a/Content.Shared/Xenoarchaeology/XenoArtifacts/ArtifactTriggerPrototype.cs +++ b/Content.Shared/Xenoarchaeology/XenoArtifacts/ArtifactTriggerPrototype.cs @@ -10,11 +10,11 @@ namespace Content.Shared.Xenoarchaeology.XenoArtifacts; /// [Prototype("artifactTrigger")] [DataDefinition] -public sealed class ArtifactTriggerPrototype : IPrototype +public sealed partial class ArtifactTriggerPrototype : IPrototype { /// [IdDataField] - public string ID { get; } = default!; + public string ID { get; private set; } = default!; [DataField("components", serverOnly: true)] public ComponentRegistry Components = new(); diff --git a/Content.Shared/Xenoarchaeology/XenoArtifacts/RandomArtifactSpriteComponent.cs b/Content.Shared/Xenoarchaeology/XenoArtifacts/RandomArtifactSpriteComponent.cs index 545c6f4b854..77b381b0b51 100644 --- a/Content.Shared/Xenoarchaeology/XenoArtifacts/RandomArtifactSpriteComponent.cs +++ b/Content.Shared/Xenoarchaeology/XenoArtifacts/RandomArtifactSpriteComponent.cs @@ -1,7 +1,7 @@ namespace Content.Shared.Xenoarchaeology.XenoArtifacts; [RegisterComponent] -public sealed class RandomArtifactSpriteComponent : Component +public sealed partial class RandomArtifactSpriteComponent : Component { [DataField("minSprite")] public int MinSprite = 1; diff --git a/Content.Shared/Xenoarchaeology/XenoArtifacts/SharedArtifact.cs b/Content.Shared/Xenoarchaeology/XenoArtifacts/SharedArtifact.cs index b8bd1fd5203..f7a69eade34 100644 --- a/Content.Shared/Xenoarchaeology/XenoArtifacts/SharedArtifact.cs +++ b/Content.Shared/Xenoarchaeology/XenoArtifacts/SharedArtifact.cs @@ -13,6 +13,6 @@ public enum SharedArtifactsVisuals : byte /// /// Raised as an instant action event when a sentient artifact activates itself using an action. /// -public sealed class ArtifactSelfActivateEvent : InstantActionEvent +public sealed partial class ArtifactSelfActivateEvent : InstantActionEvent { } diff --git a/Content.Shared/Zombies/ZombieComponent.cs b/Content.Shared/Zombies/ZombieComponent.cs index 125eeaf0bf8..f03a0baf79f 100644 --- a/Content.Shared/Zombies/ZombieComponent.cs +++ b/Content.Shared/Zombies/ZombieComponent.cs @@ -14,7 +14,7 @@ namespace Content.Shared.Zombies; [RegisterComponent, NetworkedComponent] -public sealed class ZombieComponent : Component +public sealed partial class ZombieComponent : Component { /// /// The baseline infection chance you have if you are completely nude @@ -60,7 +60,7 @@ public sealed class ZombieComponent : Component /// The role prototype of the zombie antag role /// [DataField("zombieRoleId", customTypeSerializer: typeof(PrototypeIdSerializer))] - public readonly string ZombieRoleId = "Zombie"; + public string ZombieRoleId = "Zombie"; /// /// The EntityName of the humanoid to restore in case of cloning @@ -80,6 +80,12 @@ public sealed class ZombieComponent : Component [DataField("beforeZombifiedSkinColor")] public Color BeforeZombifiedSkinColor; + /// + /// The eye color of the humanoid to restore in case of cloning + /// + [DataField("beforeZombifiedEyeColor")] + public Color BeforeZombifiedEyeColor; + [DataField("emoteId", customTypeSerializer: typeof(PrototypeIdSerializer))] public string? EmoteSoundsId = "Zombie"; diff --git a/Content.Shared/Zombies/ZombieEvents.cs b/Content.Shared/Zombies/ZombieEvents.cs index c7432e564aa..c2089e6a4e2 100644 --- a/Content.Shared/Zombies/ZombieEvents.cs +++ b/Content.Shared/Zombies/ZombieEvents.cs @@ -23,4 +23,4 @@ public EntityZombifiedEvent(EntityUid target) /// /// Event raised when a player zombifies themself using the "turn" action /// -public sealed class ZombifySelfActionEvent : InstantActionEvent { }; +public sealed partial class ZombifySelfActionEvent : InstantActionEvent { }; diff --git a/Content.Tests/Shared/Chemistry/FixedPoint2_Tests.cs b/Content.Tests/Shared/Chemistry/FixedPoint2_Tests.cs index 86b82ea4c16..5ad157c747c 100644 --- a/Content.Tests/Shared/Chemistry/FixedPoint2_Tests.cs +++ b/Content.Tests/Shared/Chemistry/FixedPoint2_Tests.cs @@ -175,5 +175,15 @@ public void FixedPoint2Equals(int a, int b, bool expected) Assert.That(parameter.Equals(comparison), Is.EqualTo(comparison.Equals(parameter))); Assert.That(comparison.Equals(parameter), Is.EqualTo(expected)); } + + [Test] + [TestCase(1.001f, "1.01")] + [TestCase(2f, "2")] + [TestCase(2.5f, "2.5")] + public void NewCeilingTest(float value, string expected) + { + var result = FixedPoint2.NewCeiling(value); + Assert.That($"{result}", Is.EqualTo(expected)); + } } } diff --git a/Content.Tests/Shared/Chemistry/Solution_Tests.cs b/Content.Tests/Shared/Chemistry/SolutionTests.cs similarity index 75% rename from Content.Tests/Shared/Chemistry/Solution_Tests.cs rename to Content.Tests/Shared/Chemistry/SolutionTests.cs index 3819876a449..0fa23d24913 100644 --- a/Content.Tests/Shared/Chemistry/Solution_Tests.cs +++ b/Content.Tests/Shared/Chemistry/SolutionTests.cs @@ -8,7 +8,7 @@ namespace Content.Tests.Shared.Chemistry; [TestFixture, Parallelizable, TestOf(typeof(Solution))] -public sealed class Solution_Tests : ContentUnitTest +public sealed class SolutionTests : ContentUnitTest { [OneTimeSetUp] public void Setup() @@ -21,7 +21,7 @@ public void AddReagentAndGetSolution() { var solution = new Solution(); solution.AddReagent("water", FixedPoint2.New(1000)); - var quantity = solution.GetReagentQuantity("water"); + var quantity = solution.GetTotalPrototypeQuantity("water"); Assert.That(quantity.Int(), Is.EqualTo(1000)); } @@ -44,8 +44,8 @@ public void ScaleSolution() tmp.ScaleSolution(2); Assert.That(tmp.Contents.Count, Is.EqualTo(2)); Assert.That(tmp.Volume, Is.EqualTo(FixedPoint2.New(100))); - Assert.That(tmp.GetReagentQuantity("water"), Is.EqualTo(FixedPoint2.New(40))); - Assert.That(tmp.GetReagentQuantity("fire"), Is.EqualTo(FixedPoint2.New(60))); + Assert.That(tmp.GetTotalPrototypeQuantity("water"), Is.EqualTo(FixedPoint2.New(40))); + Assert.That(tmp.GetTotalPrototypeQuantity("fire"), Is.EqualTo(FixedPoint2.New(60))); } // Test float scaling @@ -59,15 +59,15 @@ public void ScaleSolution() tmp.ScaleSolution(2f); Assert.That(tmp.Contents.Count, Is.EqualTo(2)); Assert.That(tmp.Volume, Is.EqualTo(FixedPoint2.New(100))); - Assert.That(tmp.GetReagentQuantity("water"), Is.EqualTo(FixedPoint2.New(40))); - Assert.That(tmp.GetReagentQuantity("fire"), Is.EqualTo(FixedPoint2.New(60))); + Assert.That(tmp.GetTotalPrototypeQuantity("water"), Is.EqualTo(FixedPoint2.New(40))); + Assert.That(tmp.GetTotalPrototypeQuantity("fire"), Is.EqualTo(FixedPoint2.New(60))); tmp = solution.Clone(); tmp.ScaleSolution(0.3f); Assert.That(tmp.Contents.Count, Is.EqualTo(2)); Assert.That(tmp.Volume, Is.EqualTo(FixedPoint2.New(15))); - Assert.That(tmp.GetReagentQuantity("water"), Is.EqualTo(FixedPoint2.New(6))); - Assert.That(tmp.GetReagentQuantity("fire"), Is.EqualTo(FixedPoint2.New(9))); + Assert.That(tmp.GetTotalPrototypeQuantity("water"), Is.EqualTo(FixedPoint2.New(6))); + Assert.That(tmp.GetTotalPrototypeQuantity("fire"), Is.EqualTo(FixedPoint2.New(9))); } } @@ -75,7 +75,7 @@ public void ScaleSolution() public void ConstructorAddReagent() { var solution = new Solution("water", FixedPoint2.New(1000)); - var quantity = solution.GetReagentQuantity("water"); + var quantity = solution.GetTotalPrototypeQuantity("water"); Assert.That(quantity.Int(), Is.EqualTo(1000)); } @@ -84,7 +84,7 @@ public void ConstructorAddReagent() public void NonExistingReagentReturnsZero() { var solution = new Solution(); - var quantity = solution.GetReagentQuantity("water"); + var quantity = solution.GetTotalPrototypeQuantity("water"); Assert.That(quantity.Int(), Is.EqualTo(0)); } @@ -94,7 +94,7 @@ public void NonExistingReagentReturnsZero() public void AddLessThanZeroReagentReturnsZero() { var solution = new Solution("water", FixedPoint2.New(-1000)); - var quantity = solution.GetReagentQuantity("water"); + var quantity = solution.GetTotalPrototypeQuantity("water"); Assert.That(quantity.Int(), Is.EqualTo(0)); } @@ -106,7 +106,7 @@ public void AddingReagentsSumsProperly() var solution = new Solution(); solution.AddReagent("water", FixedPoint2.New(1000)); solution.AddReagent("water", FixedPoint2.New(2000)); - var quantity = solution.GetReagentQuantity("water"); + var quantity = solution.GetTotalPrototypeQuantity("water"); Assert.That(quantity.Int(), Is.EqualTo(3000)); } @@ -118,8 +118,8 @@ public void ReagentQuantitiesStayUnique() solution.AddReagent("water", FixedPoint2.New(1000)); solution.AddReagent("fire", FixedPoint2.New(2000)); - Assert.That(solution.GetReagentQuantity("water").Int(), Is.EqualTo(1000)); - Assert.That(solution.GetReagentQuantity("fire").Int(), Is.EqualTo(2000)); + Assert.That(solution.GetTotalPrototypeQuantity("water").Int(), Is.EqualTo(1000)); + Assert.That(solution.GetTotalPrototypeQuantity("fire").Int(), Is.EqualTo(2000)); } [Test] @@ -141,8 +141,8 @@ public void CloningSolutionIsCorrect() var newSolution = solution.Clone(); - Assert.That(newSolution.GetReagentQuantity("water").Int(), Is.EqualTo(1000)); - Assert.That(newSolution.GetReagentQuantity("fire").Int(), Is.EqualTo(2000)); + Assert.That(newSolution.GetTotalPrototypeQuantity("water").Int(), Is.EqualTo(1000)); + Assert.That(newSolution.GetTotalPrototypeQuantity("fire").Int(), Is.EqualTo(2000)); Assert.That(newSolution.Volume.Int(), Is.EqualTo(3000)); } @@ -155,8 +155,8 @@ public void RemoveSolutionRecalculatesProperly() solution.RemoveReagent("water", FixedPoint2.New(500)); - Assert.That(solution.GetReagentQuantity("water").Int(), Is.EqualTo(500)); - Assert.That(solution.GetReagentQuantity("fire").Int(), Is.EqualTo(2000)); + Assert.That(solution.GetTotalPrototypeQuantity("water").Int(), Is.EqualTo(500)); + Assert.That(solution.GetTotalPrototypeQuantity("fire").Int(), Is.EqualTo(2000)); Assert.That(solution.Volume.Int(), Is.EqualTo(2500)); } @@ -167,7 +167,7 @@ public void RemoveLessThanOneQuantityDoesNothing() solution.RemoveReagent("water", FixedPoint2.New(-100)); - Assert.That(solution.GetReagentQuantity("water").Int(), Is.EqualTo(100)); + Assert.That(solution.GetTotalPrototypeQuantity("water").Int(), Is.EqualTo(100)); Assert.That(solution.Volume.Int(), Is.EqualTo(100)); } @@ -178,7 +178,7 @@ public void RemoveMoreThanTotalRemovesAllReagent() solution.RemoveReagent("water", FixedPoint2.New(1000)); - Assert.That(solution.GetReagentQuantity("water").Int(), Is.EqualTo(0)); + Assert.That(solution.GetTotalPrototypeQuantity("water").Int(), Is.EqualTo(0)); Assert.That(solution.Volume.Int(), Is.EqualTo(0)); } @@ -189,7 +189,7 @@ public void RemoveNonExistReagentDoesNothing() solution.RemoveReagent("fire", FixedPoint2.New(1000)); - Assert.That(solution.GetReagentQuantity("water").Int(), Is.EqualTo(100)); + Assert.That(solution.GetTotalPrototypeQuantity("water").Int(), Is.EqualTo(100)); Assert.That(solution.Volume.Int(), Is.EqualTo(100)); } @@ -201,7 +201,7 @@ public void RemoveSolution() solution.RemoveSolution(FixedPoint2.New(500)); //Check that edited solution is correct - Assert.That(solution.GetReagentQuantity("water").Int(), Is.EqualTo(200)); + Assert.That(solution.GetTotalPrototypeQuantity("water").Int(), Is.EqualTo(200)); Assert.That(solution.Volume.Int(), Is.EqualTo(200)); } @@ -213,7 +213,7 @@ public void RemoveSolutionMoreThanTotalRemovesAll() solution.RemoveSolution(FixedPoint2.New(1000)); //Check that edited solution is correct - Assert.That(solution.GetReagentQuantity("water").Int(), Is.EqualTo(0)); + Assert.That(solution.GetTotalPrototypeQuantity("water").Int(), Is.EqualTo(0)); Assert.That(solution.Volume.Int(), Is.EqualTo(0)); } @@ -226,8 +226,8 @@ public void RemoveSolutionRatioPreserved() solution.RemoveSolution(FixedPoint2.New(1500)); - Assert.That(solution.GetReagentQuantity("water").Int(), Is.EqualTo(500)); - Assert.That(solution.GetReagentQuantity("fire").Int(), Is.EqualTo(1000)); + Assert.That(solution.GetTotalPrototypeQuantity("water").Int(), Is.EqualTo(500)); + Assert.That(solution.GetTotalPrototypeQuantity("fire").Int(), Is.EqualTo(1000)); Assert.That(solution.Volume.Int(), Is.EqualTo(1500)); } @@ -238,7 +238,7 @@ public void RemoveSolutionLessThanOneDoesNothing() solution.RemoveSolution(FixedPoint2.New(-200)); - Assert.That(solution.GetReagentQuantity("water").Int(), Is.EqualTo(800)); + Assert.That(solution.GetTotalPrototypeQuantity("water").Int(), Is.EqualTo(800)); Assert.That(solution.Volume.Int(), Is.EqualTo(800)); } @@ -251,12 +251,12 @@ public void SplitSolution() var splitSolution = solution.SplitSolution(FixedPoint2.New(750)); - Assert.That(solution.GetReagentQuantity("water").Int(), Is.EqualTo(750)); - Assert.That(solution.GetReagentQuantity("fire").Int(), Is.EqualTo(1500)); + Assert.That(solution.GetTotalPrototypeQuantity("water").Int(), Is.EqualTo(750)); + Assert.That(solution.GetTotalPrototypeQuantity("fire").Int(), Is.EqualTo(1500)); Assert.That(solution.Volume.Int(), Is.EqualTo(2250)); - Assert.That(splitSolution.GetReagentQuantity("water").Int(), Is.EqualTo(250)); - Assert.That(splitSolution.GetReagentQuantity("fire").Int(), Is.EqualTo(500)); + Assert.That(splitSolution.GetTotalPrototypeQuantity("water").Int(), Is.EqualTo(250)); + Assert.That(splitSolution.GetTotalPrototypeQuantity("fire").Int(), Is.EqualTo(500)); Assert.That(splitSolution.Volume.Int(), Is.EqualTo(750)); } @@ -269,12 +269,12 @@ public void SplitSolutionFractional() var splitSolution = solution.SplitSolution(FixedPoint2.New(1)); - Assert.That(solution.GetReagentQuantity("water").Float(), Is.EqualTo(0.66f)); - Assert.That(solution.GetReagentQuantity("fire").Float(), Is.EqualTo(1.34f)); + Assert.That(solution.GetTotalPrototypeQuantity("water").Float(), Is.EqualTo(0.66f)); + Assert.That(solution.GetTotalPrototypeQuantity("fire").Float(), Is.EqualTo(1.34f)); Assert.That(solution.Volume.Int(), Is.EqualTo(2)); - Assert.That(splitSolution.GetReagentQuantity("water").Float(), Is.EqualTo(0.34f)); - Assert.That(splitSolution.GetReagentQuantity("fire").Float(), Is.EqualTo(0.66f)); + Assert.That(splitSolution.GetTotalPrototypeQuantity("water").Float(), Is.EqualTo(0.34f)); + Assert.That(splitSolution.GetTotalPrototypeQuantity("fire").Float(), Is.EqualTo(0.66f)); Assert.That(splitSolution.Volume.Int(), Is.EqualTo(1)); } @@ -287,12 +287,12 @@ public void SplitSolutionFractionalOpposite() var splitSolution = solution.SplitSolution(FixedPoint2.New(2)); - Assert.That(solution.GetReagentQuantity("water").Float(), Is.EqualTo(0.33f)); - Assert.That(solution.GetReagentQuantity("fire").Float(), Is.EqualTo(0.67f)); + Assert.That(solution.GetTotalPrototypeQuantity("water").Float(), Is.EqualTo(0.33f)); + Assert.That(solution.GetTotalPrototypeQuantity("fire").Float(), Is.EqualTo(0.67f)); Assert.That(solution.Volume.Int(), Is.EqualTo(1)); - Assert.That(splitSolution.GetReagentQuantity("water").Float(), Is.EqualTo(0.67f)); - Assert.That(splitSolution.GetReagentQuantity("fire").Float(), Is.EqualTo(1.33f)); + Assert.That(splitSolution.GetTotalPrototypeQuantity("water").Float(), Is.EqualTo(0.67f)); + Assert.That(splitSolution.GetTotalPrototypeQuantity("fire").Float(), Is.EqualTo(1.33f)); Assert.That(splitSolution.Volume.Int(), Is.EqualTo(2)); } @@ -306,10 +306,10 @@ public void SplitSolutionTinyFractionalBigSmall(float initial, float reduce, flo var splitSolution = solution.SplitSolution(FixedPoint2.New(reduce)); - Assert.That(solution.GetReagentQuantity("water").Float(), Is.EqualTo(remainder)); + Assert.That(solution.GetTotalPrototypeQuantity("water").Float(), Is.EqualTo(remainder)); Assert.That(solution.Volume.Float(), Is.EqualTo(remainder)); - Assert.That(splitSolution.GetReagentQuantity("water").Float(), Is.EqualTo(reduce)); + Assert.That(splitSolution.GetTotalPrototypeQuantity("water").Float(), Is.EqualTo(reduce)); Assert.That(splitSolution.Volume.Float(), Is.EqualTo(reduce)); } @@ -338,10 +338,10 @@ public void SplitSolutionMoreThanTotalRemovesAll() var splitSolution = solution.SplitSolution(FixedPoint2.New(1000)); - Assert.That(solution.GetReagentQuantity("water").Int(), Is.EqualTo(0)); + Assert.That(solution.GetTotalPrototypeQuantity("water").Int(), Is.EqualTo(0)); Assert.That(solution.Volume.Int(), Is.EqualTo(0)); - Assert.That(splitSolution.GetReagentQuantity("water").Int(), Is.EqualTo(800)); + Assert.That(splitSolution.GetTotalPrototypeQuantity("water").Int(), Is.EqualTo(800)); Assert.That(splitSolution.Volume.Int(), Is.EqualTo(800)); } @@ -352,10 +352,10 @@ public void SplitSolutionLessThanOneDoesNothing() var splitSolution = solution.SplitSolution(FixedPoint2.New(-200)); - Assert.That(solution.GetReagentQuantity("water").Int(), Is.EqualTo(800)); + Assert.That(solution.GetTotalPrototypeQuantity("water").Int(), Is.EqualTo(800)); Assert.That(solution.Volume.Int(), Is.EqualTo(800)); - Assert.That(splitSolution.GetReagentQuantity("water").Int(), Is.EqualTo(0)); + Assert.That(splitSolution.GetTotalPrototypeQuantity("water").Int(), Is.EqualTo(0)); Assert.That(splitSolution.Volume.Int(), Is.EqualTo(0)); } @@ -393,9 +393,9 @@ public void AddSolution() solutionOne.AddSolution(solutionTwo, null); - Assert.That(solutionOne.GetReagentQuantity("water").Int(), Is.EqualTo(1500)); - Assert.That(solutionOne.GetReagentQuantity("fire").Int(), Is.EqualTo(2000)); - Assert.That(solutionOne.GetReagentQuantity("earth").Int(), Is.EqualTo(1000)); + Assert.That(solutionOne.GetTotalPrototypeQuantity("water").Int(), Is.EqualTo(1500)); + Assert.That(solutionOne.GetTotalPrototypeQuantity("fire").Int(), Is.EqualTo(2000)); + Assert.That(solutionOne.GetTotalPrototypeQuantity("earth").Int(), Is.EqualTo(1000)); Assert.That(solutionOne.Volume.Int(), Is.EqualTo(4500)); } diff --git a/Content.YAMLLinter/Program.cs b/Content.YAMLLinter/Program.cs index 756264135aa..4ba7b9c12c2 100644 --- a/Content.YAMLLinter/Program.cs +++ b/Content.YAMLLinter/Program.cs @@ -51,20 +51,20 @@ private static async Task Main(string[] _) private static async Task<(Dictionary> YamlErrors, List FieldErrors)> ValidateClient() { - await using var pairTracker = await PoolManager.GetServerClient(); - var client = pairTracker.Pair.Client; + await using var pair = await PoolManager.GetServerClient(); + var client = pair.Client; var result = await ValidateInstance(client); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); return result; } private static async Task<(Dictionary> YamlErrors, List FieldErrors)> ValidateServer() { - await using var pairTracker = await PoolManager.GetServerClient(); - var server = pairTracker.Pair.Server; + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; var result = await ValidateInstance(server); - await pairTracker.CleanReturnAsync(); + await pair.CleanReturnAsync(); return result; } diff --git a/Resources/Audio/Announcements/RoundEnd/attributions.yml b/Resources/Audio/Announcements/RoundEnd/attributions.yml new file mode 100644 index 00000000000..899cee6c1a4 --- /dev/null +++ b/Resources/Audio/Announcements/RoundEnd/attributions.yml @@ -0,0 +1,14 @@ +- files: ["apc_destroyed.ogg"] + license: "CC-BY-3.0" + copyright: "https://github.com/tgstation/tgstation/commit/9693fb456a3f8f63e73e6e504fe75de1d148d271n" + source: "https://github.com/tgstation/tgstation/blob/ea4870f6d1c0d6b553bb0540d3f4d6efd6f4a3a3/config/reboot_themes/apcdestroyed.ogg" + +- files: ["disappointed.ogg"] + license: "CC-BY-3.0" + copyright: "https://github.com/tgstation/tgstation/commit/9693fb456a3f8f63e73e6e504fe75de1d148d271" + source: "https://github.com/tgstation/tgstation/blob/ea4870f6d1c0d6b553bb0540d3f4d6efd6f4a3a3/config/reboot_themes/disappointed.ogg" + +- files: ["notevenpaidforthis.ogg"] + license: "CC-BY-3.0" + copyright: "https://github.com/tgstation/tgstation/commit/95731342b97167d7883ff091d389f79c36442ee6" + source: "https://github.com/tgstation/tgstation/blob/ea4870f6d1c0d6b553bb0540d3f4d6efd6f4a3a3/sound/ai/intern/alerts/9.ogg" diff --git a/Resources/Audio/Announcements/RoundEnd/disappointed.ogg b/Resources/Audio/Announcements/RoundEnd/disappointed.ogg new file mode 100644 index 00000000000..984bedbcd4b Binary files /dev/null and b/Resources/Audio/Announcements/RoundEnd/disappointed.ogg differ diff --git a/Resources/Audio/Announcements/RoundEnd/license.txt b/Resources/Audio/Announcements/RoundEnd/license.txt deleted file mode 100644 index e8d5bbe141c..00000000000 --- a/Resources/Audio/Announcements/RoundEnd/license.txt +++ /dev/null @@ -1 +0,0 @@ -apc_destroyed.ogg taken from https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a used under CC-BY-SA-3.0 diff --git a/Resources/Audio/Announcements/RoundEnd/notevenpaidforthis.ogg b/Resources/Audio/Announcements/RoundEnd/notevenpaidforthis.ogg new file mode 100644 index 00000000000..3c0c45b25d0 Binary files /dev/null and b/Resources/Audio/Announcements/RoundEnd/notevenpaidforthis.ogg differ diff --git a/Resources/Audio/Effects/attributions.yml b/Resources/Audio/Effects/attributions.yml index 77a3e0cd0d2..f9239f4dab9 100644 --- a/Resources/Audio/Effects/attributions.yml +++ b/Resources/Audio/Effects/attributions.yml @@ -51,4 +51,9 @@ - files: ["falling.ogg"] license: "CC0-1.0" copyright: "Taken from MATRIXXX_ via freesound.org and mixed from stereo to mono." - source: "https://freesound.org/people/MATRIXXX_/sounds/415990/" \ No newline at end of file + source: "https://freesound.org/people/MATRIXXX_/sounds/415990/" + +- files: ["break_stone.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from tgstation" + source: "https://github.com/tgstation/tgstation/blob/e3a835b96043fad1269ee7b0c3a6cb340a466f3a/sound/effects/break_stone.ogg" \ No newline at end of file diff --git a/Resources/Audio/Effects/break_stone.ogg b/Resources/Audio/Effects/break_stone.ogg new file mode 100644 index 00000000000..64256cb8f90 Binary files /dev/null and b/Resources/Audio/Effects/break_stone.ogg differ diff --git a/Resources/Audio/Items/Mining/attributions.yml b/Resources/Audio/Items/Mining/attributions.yml new file mode 100644 index 00000000000..847dba43518 --- /dev/null +++ b/Resources/Audio/Items/Mining/attributions.yml @@ -0,0 +1,4 @@ +- files: ["fultext_deploy.ogg", "fultext_launch.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from tgstation" + source: "https://github.com/tgstation/tgstation/tree/893e5b0180f3fffe192d2e241325cfac937f5257/sound/items" diff --git a/Resources/Audio/Items/Mining/fultext_deploy.ogg b/Resources/Audio/Items/Mining/fultext_deploy.ogg new file mode 100644 index 00000000000..2433b9e0fe3 Binary files /dev/null and b/Resources/Audio/Items/Mining/fultext_deploy.ogg differ diff --git a/Resources/Audio/Items/Mining/fultext_launch.ogg b/Resources/Audio/Items/Mining/fultext_launch.ogg new file mode 100644 index 00000000000..2c874419927 Binary files /dev/null and b/Resources/Audio/Items/Mining/fultext_launch.ogg differ diff --git a/Resources/Audio/Machines/attributions.yml b/Resources/Audio/Machines/attributions.yml index a3aeabef8f9..716d9ef316e 100644 --- a/Resources/Audio/Machines/attributions.yml +++ b/Resources/Audio/Machines/attributions.yml @@ -32,3 +32,8 @@ license: "CC0-1.0" copyright: "Created by BasedUser#2215 on discord" source: "https://discord.com/channels/310555209753690112/536955542913024015/1066824680188690452" + +- files: ["generator-tug-1.ogg", "generator-tug-1-empty.ogg", "generator-tug-2.ogg", "generator-tug-2-empty.ogg", "generator-tug-3.ogg", "generator-tug-3-empty.ogg"] + license: "CC0-1.0" + copyright: "Modified from https://freesound.org/people/Pagey1969/sounds/566048/" + source: "https://github.com/space-wizards/ss14-raw-assets/tree/99fcffb02d9953f031991fc8f9980f0c3abd3803/Audio" diff --git a/Resources/Audio/Machines/generator-tug-1-empty.ogg b/Resources/Audio/Machines/generator-tug-1-empty.ogg new file mode 100644 index 00000000000..c01937bf07b Binary files /dev/null and b/Resources/Audio/Machines/generator-tug-1-empty.ogg differ diff --git a/Resources/Audio/Machines/generator-tug-1.ogg b/Resources/Audio/Machines/generator-tug-1.ogg new file mode 100644 index 00000000000..f39d291c109 Binary files /dev/null and b/Resources/Audio/Machines/generator-tug-1.ogg differ diff --git a/Resources/Audio/Machines/generator-tug-2-empty.ogg b/Resources/Audio/Machines/generator-tug-2-empty.ogg new file mode 100644 index 00000000000..243a46b1703 Binary files /dev/null and b/Resources/Audio/Machines/generator-tug-2-empty.ogg differ diff --git a/Resources/Audio/Machines/generator-tug-2.ogg b/Resources/Audio/Machines/generator-tug-2.ogg new file mode 100644 index 00000000000..35b3687c4ac Binary files /dev/null and b/Resources/Audio/Machines/generator-tug-2.ogg differ diff --git a/Resources/Audio/Machines/generator-tug-3-empty.ogg b/Resources/Audio/Machines/generator-tug-3-empty.ogg new file mode 100644 index 00000000000..9382b10e63f Binary files /dev/null and b/Resources/Audio/Machines/generator-tug-3-empty.ogg differ diff --git a/Resources/Audio/Machines/generator-tug-3.ogg b/Resources/Audio/Machines/generator-tug-3.ogg new file mode 100644 index 00000000000..150a1186650 Binary files /dev/null and b/Resources/Audio/Machines/generator-tug-3.ogg differ diff --git a/Resources/Audio/Misc/attributions.yml b/Resources/Audio/Misc/attributions.yml index 773d1e6e4e6..fc70e1a9ca2 100644 --- a/Resources/Audio/Misc/attributions.yml +++ b/Resources/Audio/Misc/attributions.yml @@ -2,3 +2,8 @@ license: "CC-BY-3.0" copyright: "Created by qwertyquerty" source: "https://www.youtube.com/@qwertyquerty" + +- files: ["ninja_greeting.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from TG station." + source: "https://github.com/tgstation/tgstation/blob/b02b93ce2ab891164511a973493cdf951b4120f7/sound/effects/ninja_greeting.ogg" diff --git a/Resources/Audio/Misc/ninja_greeting.ogg b/Resources/Audio/Misc/ninja_greeting.ogg new file mode 100644 index 00000000000..e8f17bdea6c Binary files /dev/null and b/Resources/Audio/Misc/ninja_greeting.ogg differ diff --git a/Resources/ConfigPresets/WizardsDen/miros.toml b/Resources/ConfigPresets/WizardsDen/miros.toml index 33cd609b523..a1aa70de139 100644 --- a/Resources/ConfigPresets/WizardsDen/miros.toml +++ b/Resources/ConfigPresets/WizardsDen/miros.toml @@ -2,10 +2,6 @@ [game] hostname = "[EN] Wizard's Den Miros [EU West 2]" -soft_max_players = 50 - -[net] -tickrate = 20 [hub] tags = "lang:en,region:eu_w,rp:low" diff --git a/Resources/Locale/en-US/abilities/mime.ftl b/Resources/Locale/en-US/abilities/mime.ftl index da03cd76b7a..7fc438bfd9a 100644 --- a/Resources/Locale/en-US/abilities/mime.ftl +++ b/Resources/Locale/en-US/abilities/mime.ftl @@ -1,6 +1,5 @@ mime-cant-speak = Your vow of silence prevents you from speaking. mime-invisible-wall = Create Invisible Wall -mime-invisible-wall-desc = Create an invisible wall in front of you, if placeable there. mime-invisible-wall-popup = {CAPITALIZE(THE($mime))} brushes up against an invisible wall! mime-invisible-wall-failed = You can't create an invisible wall there. mime-not-ready-repent = You aren't ready to repent for your broken vow yet. diff --git a/Resources/Locale/en-US/accessories/human-hair.ftl b/Resources/Locale/en-US/accessories/human-hair.ftl index 5935a283e59..a6313200b27 100644 --- a/Resources/Locale/en-US/accessories/human-hair.ftl +++ b/Resources/Locale/en-US/accessories/human-hair.ftl @@ -37,6 +37,13 @@ marking-HumanHairBusiness3 = Business Hair 3 marking-HumanHairBusiness4 = Business Hair 4 marking-HumanHairBuzzcut = Buzzcut marking-HumanHairCia = CIA +marking-HumanHairClassicAfro = Classic Afro +marking-HumanHairClassicBigAfro = Classic Big Afro +marking-HumanHairClassicCia = Classic CIA +marking-HumanHairClassicFloorlengthBedhead = Classic Floorlength Bedhead +marking-HumanHairClassicModern = Classic Modern +marking-HumanHairClassicMulder = Classic Mulder +marking-HumanHairClassicWisp = Classic Wisp marking-HumanHairCoffeehouse = Coffee House marking-HumanHairCombover = Combover marking-HumanHairCornrows = Cornrows diff --git a/Resources/Locale/en-US/actions/actions/blocking.ftl b/Resources/Locale/en-US/actions/actions/blocking.ftl index 123a5991d4b..ff0df1c99bb 100644 --- a/Resources/Locale/en-US/actions/actions/blocking.ftl +++ b/Resources/Locale/en-US/actions/actions/blocking.ftl @@ -1,7 +1,4 @@ -action-name-blocking = Block -action-description-blocking = Raise or lower your shield. - -action-popup-blocking-user = You raise your {$shield}! +action-popup-blocking-user = You raise your {$shield}! action-popup-blocking-disabling-user = You lower your {$shield}! action-popup-blocking-other = {CAPITALIZE(THE($blockerName))} raises {POSS-ADJ($blockerName)} {$shield}! diff --git a/Resources/Locale/en-US/actions/actions/borgs.ftl b/Resources/Locale/en-US/actions/actions/borgs.ftl deleted file mode 100644 index f358525a547..00000000000 --- a/Resources/Locale/en-US/actions/actions/borgs.ftl +++ /dev/null @@ -1,5 +0,0 @@ -action-name-view-laws = View Laws -action-description-view-laws = View the laws that you must follow. - -action-name-swap-module = Swap Module -action-desc-swap-module = Select this module, enabling you to use the tools it provides. diff --git a/Resources/Locale/en-US/actions/actions/combat-mode.ftl b/Resources/Locale/en-US/actions/actions/combat-mode.ftl index 2479748de84..37e5f7b2e94 100644 --- a/Resources/Locale/en-US/actions/actions/combat-mode.ftl +++ b/Resources/Locale/en-US/actions/actions/combat-mode.ftl @@ -1,12 +1,2 @@ -action-name-combat = [color=red]Combat Mode[/color] -action-description-combat = Enter combat mode - action-popup-combat-disabled = Combat mode disabled action-popup-combat-enabled = Combat mode enabled - - -action-name-precision = [color=red]Precision mode[/color] -action-description-precision = Enter precision mode for combat, attacking what is under your cursor. - -action-popup-precision = Precision mode disabled -action-popup-precision-enabled = Precision mode enabled diff --git a/Resources/Locale/en-US/actions/actions/crit.ftl b/Resources/Locale/en-US/actions/actions/crit.ftl deleted file mode 100644 index 1588c0ed7e8..00000000000 --- a/Resources/Locale/en-US/actions/actions/crit.ftl +++ /dev/null @@ -1,9 +0,0 @@ -action-name-crit-succumb = Succumb -action-description-crit-succumb = Accept your fate. - -action-name-crit-fake-death = Fake Death -action-description-crit-fake-death = Pretend to take your final breath while staying alive. - -action-name-crit-last-words = Say Last Words -action-description-crit-last-words = Whisper your last words to anyone nearby, and then succumb to your fate. You only have 30 characters to work with. - diff --git a/Resources/Locale/en-US/actions/actions/disarm-action.ftl b/Resources/Locale/en-US/actions/actions/disarm-action.ftl index 1465d7a8b12..1b2cb496016 100644 --- a/Resources/Locale/en-US/actions/actions/disarm-action.ftl +++ b/Resources/Locale/en-US/actions/actions/disarm-action.ftl @@ -3,6 +3,3 @@ disarm-action-popup-message-other-clients = {CAPITALIZE(THE($performerName))} di disarm-action-popup-message-cursor = Disarmed {THE($targetName)}! disarm-action-shove-popup-message-other-clients = {CAPITALIZE(THE($performerName))} shoves {THE($targetName)}! disarm-action-shove-popup-message-cursor = You shove {THE($targetName)}! - -action-name-disarm = [color=red]Disarm[/color] -action-description-disarm = Attempt to [color=red]disarm[/color] someone. diff --git a/Resources/Locale/en-US/actions/actions/dragon.ftl b/Resources/Locale/en-US/actions/actions/dragon.ftl index 6575a7b379f..a9b887142d6 100644 --- a/Resources/Locale/en-US/actions/actions/dragon.ftl +++ b/Resources/Locale/en-US/actions/actions/dragon.ftl @@ -4,13 +4,6 @@ devour-action-popup-message-fail-target-alive = You can't consume creatures that dragon-spawn-action-popup-message-fail-no-eggs = You don't have the stamina to do that! - -action-name-devour = [color=red]Devour[/color] -action-description-devour = Attempt to break a structure with your jaws or swallow a creature. - -action-name-carp-rift = Summon Carp Rift -action-description-carp-rift = Summons a carp rift that will periodically spawns carps. - # Rifts carp-rift-warning = A rift is causing an unnaturally large energy flux at {$location}. Stop it at all costs! carp-rift-duplicate = Cannot have 2 charging rifts at the same time! diff --git a/Resources/Locale/en-US/actions/actions/egg-lay.ftl b/Resources/Locale/en-US/actions/actions/egg-lay.ftl index 404eeee7d04..0aefdc68630 100644 --- a/Resources/Locale/en-US/actions/actions/egg-lay.ftl +++ b/Resources/Locale/en-US/actions/actions/egg-lay.ftl @@ -1,6 +1,3 @@ -action-name-lay-egg = Lay egg -action-description-lay-egg = Uses hunger to lay an egg. - -action-popup-lay-egg-user = You lay an egg. +action-popup-lay-egg-user = You lay an egg. action-popup-lay-egg-others = {CAPITALIZE(THE($entity))} lays an egg. action-popup-lay-egg-too-hungry = You need more food before you can lay another egg! diff --git a/Resources/Locale/en-US/actions/actions/ghost.ftl b/Resources/Locale/en-US/actions/actions/ghost.ftl deleted file mode 100644 index f10c559adff..00000000000 --- a/Resources/Locale/en-US/actions/actions/ghost.ftl +++ /dev/null @@ -1,2 +0,0 @@ -action-name-boo = Boo! -action-description-boo = Scare your crew members because of boredom! \ No newline at end of file diff --git a/Resources/Locale/en-US/actions/actions/hardsuit.ftl b/Resources/Locale/en-US/actions/actions/hardsuit.ftl deleted file mode 100644 index 38acd9df3ac..00000000000 --- a/Resources/Locale/en-US/actions/actions/hardsuit.ftl +++ /dev/null @@ -1,2 +0,0 @@ -action-name-hardsuit = Toggle Helmet -action-description-hardsuit = Remember to equip the helmet before flinging yourself into space. \ No newline at end of file diff --git a/Resources/Locale/en-US/actions/actions/internals.ftl b/Resources/Locale/en-US/actions/actions/internals.ftl index ead73cf1e57..84580a9368f 100644 --- a/Resources/Locale/en-US/actions/actions/internals.ftl +++ b/Resources/Locale/en-US/actions/actions/internals.ftl @@ -1,5 +1,2 @@ -action-name-internals-toggle = Toggle Internals -action-description-internals-toggle = Breathe from the equipped gas tank. Also requires equipped breath mask. - internals-no-breath-tool = You are not wearing a breathing tool internals-no-tank = You are not wearing a gas tank diff --git a/Resources/Locale/en-US/actions/actions/light.ftl b/Resources/Locale/en-US/actions/actions/light.ftl deleted file mode 100644 index e8839108709..00000000000 --- a/Resources/Locale/en-US/actions/actions/light.ftl +++ /dev/null @@ -1,2 +0,0 @@ -action-name-toggle-light = Toggle Light -action-description-toggle-light = Turn the light on and off. \ No newline at end of file diff --git a/Resources/Locale/en-US/actions/actions/mask.ftl b/Resources/Locale/en-US/actions/actions/mask.ftl index ec1113e4e6b..5c388e285f4 100644 --- a/Resources/Locale/en-US/actions/actions/mask.ftl +++ b/Resources/Locale/en-US/actions/actions/mask.ftl @@ -1,4 +1,2 @@ -action-name-mask = Toggle Mask -action-description-mask-toggle = Handy, but prevents insertion of pie into your pie hole. action-mask-pull-up-popup-message = You pull up your {$mask}. -action-mask-pull-down-popup-message = You pull down your {$mask}. \ No newline at end of file +action-mask-pull-down-popup-message = You pull down your {$mask}. diff --git a/Resources/Locale/en-US/actions/actions/mech.ftl b/Resources/Locale/en-US/actions/actions/mech.ftl deleted file mode 100644 index 7acef183582..00000000000 --- a/Resources/Locale/en-US/actions/actions/mech.ftl +++ /dev/null @@ -1,8 +0,0 @@ -action-name-mech-cycle = Cycle -action-description-mech-cycle = Cycles currently selected equipment - -action-name-mech-control-panel = Control Panel -action-description-mech-control-panel = Opens the control panel for the mech - -action-name-mech-eject = Eject -action-description-mech-eject = Ejects the pilot from the mech \ No newline at end of file diff --git a/Resources/Locale/en-US/actions/actions/pai.ftl b/Resources/Locale/en-US/actions/actions/pai.ftl deleted file mode 100644 index 4be31f28c71..00000000000 --- a/Resources/Locale/en-US/actions/actions/pai.ftl +++ /dev/null @@ -1,2 +0,0 @@ -action-name-pai-play-midi = Play MIDI -action-description-pai-play-midi = Open your portable MIDI interface to soothe your owner. \ No newline at end of file diff --git a/Resources/Locale/en-US/actions/actions/sleep.ftl b/Resources/Locale/en-US/actions/actions/sleep.ftl index ff3c8c04a75..32d673eeb92 100644 --- a/Resources/Locale/en-US/actions/actions/sleep.ftl +++ b/Resources/Locale/en-US/actions/actions/sleep.ftl @@ -1,7 +1,3 @@ -action-name-sleep = Sleep -action-desc-sleep = Go to sleep. -action-name-wake = Wake up -action-desc-wake = Stop sleeping. sleep-onomatopoeia = Zzz... sleep-examined = [color=lightblue]{CAPITALIZE(SUBJECT($target))} {CONJUGATE-BE($target)} asleep.[/color] diff --git a/Resources/Locale/en-US/actions/actions/spider.ftl b/Resources/Locale/en-US/actions/actions/spider.ftl index f74e8db737a..e7a41c883aa 100644 --- a/Resources/Locale/en-US/actions/actions/spider.ftl +++ b/Resources/Locale/en-US/actions/actions/spider.ftl @@ -1,9 +1,5 @@ -spider-web-action-name = Spider Web -spider-web-action-description = Spawns a web that slows your prey down. spider-web-action-nogrid = There is no floor under you! spider-web-action-success = You place webs around you. spider-web-action-fail = You can't place webs here! All cardinal directions already have webs! -sericulture-action-name = Weave silk -sericulture-action-description = Weave a bit of silk for use in arts and crafts. sericulture-failure-hunger = Your stomach is too empty to make any more webs! diff --git a/Resources/Locale/en-US/actions/actions/vehicle.ftl b/Resources/Locale/en-US/actions/actions/vehicle.ftl deleted file mode 100644 index ee4ad969130..00000000000 --- a/Resources/Locale/en-US/actions/actions/vehicle.ftl +++ /dev/null @@ -1,2 +0,0 @@ -action-name-honk = Honk -action-desc-honk = Honk! diff --git a/Resources/Locale/en-US/actions/actions/vocal.ftl b/Resources/Locale/en-US/actions/actions/vocal.ftl deleted file mode 100644 index 97cf7fae94a..00000000000 --- a/Resources/Locale/en-US/actions/actions/vocal.ftl +++ /dev/null @@ -1,2 +0,0 @@ -action-name-scream = Scream -action-description-scream = AAAAAAAAAAAAAAAAAAAAAAAAA diff --git a/Resources/Locale/en-US/actions/actions/zombie.ftl b/Resources/Locale/en-US/actions/actions/zombie.ftl deleted file mode 100644 index 3ae2d928e98..00000000000 --- a/Resources/Locale/en-US/actions/actions/zombie.ftl +++ /dev/null @@ -1,2 +0,0 @@ -turn-undead-action-name = Turn Undead -turn-undead-action-description = Succumb to your infection and become a zombie. \ No newline at end of file diff --git a/Resources/Locale/en-US/administration/antag.ftl b/Resources/Locale/en-US/administration/antag.ftl index 529e960fb33..68f33f8c4dd 100644 --- a/Resources/Locale/en-US/administration/antag.ftl +++ b/Resources/Locale/en-US/administration/antag.ftl @@ -2,4 +2,11 @@ verb-categories-antag = Antag ctrl admin-verb-make-traitor = Make the target into a traitor. admin-verb-make-zombie = Zombifies the target immediately. admin-verb-make-nuclear-operative = Make target a into lone Nuclear Operative. -admin-verb-make-pirate = Make the target into a pirate. Note this doesn't configure the game rule. +admin-verb-make-pirate = Make the target into a pirate. Note that this doesn't configure the game rule. +admin-verb-make-space-ninja = Make the target into a space ninja. + +admin-verb-text-make-traitor = Make Traitor +admin-verb-text-make-zombie = Make Zombie +admin-verb-text-make-nuclear-operative = Make Nuclear Operative +admin-verb-text-make-pirate = Make Pirate +admin-verb-text-make-space-ninja = Make Space Ninja diff --git a/Resources/Locale/en-US/administration/bwoink.ftl b/Resources/Locale/en-US/administration/bwoink.ftl index aafa5c58ea2..4eee159adf1 100644 --- a/Resources/Locale/en-US/administration/bwoink.ftl +++ b/Resources/Locale/en-US/administration/bwoink.ftl @@ -2,7 +2,7 @@ bwoink-user-title = Admin Message bwoink-system-starmute-message-no-other-users = *System: Nobody is available to receive your message. Try pinging Game Admins on Discord. -bwoink-system-messages-being-relayed-to-discord = Your messages are being relayed to the admins via Discord. +bwoink-system-messages-being-relayed-to-discord = Your messages are being relayed to the admins via Discord. Issues may be handled without a response. bwoink-system-typing-indicator = {$players} {$count -> [one] is diff --git a/Resources/Locale/en-US/alerts/alerts.ftl b/Resources/Locale/en-US/alerts/alerts.ftl index d5f14c5fc85..33642b44b5e 100644 --- a/Resources/Locale/en-US/alerts/alerts.ftl +++ b/Resources/Locale/en-US/alerts/alerts.ftl @@ -95,3 +95,6 @@ alerts-bleed-desc = You're [color=red]bleeding[/color]. alerts-pacified-name = [color=green]Pacified[/color] alerts-pacified-desc = You're pacified; you won't be able to attack anyone directly. + +alerts-suit-power-name = Suit Power +alerts-suit-power-desc = How much power your space ninja suit has. diff --git a/Resources/Locale/en-US/animals/rat-king/rat-king.ftl b/Resources/Locale/en-US/animals/rat-king/rat-king.ftl index d32167a6f10..1c587f43283 100644 --- a/Resources/Locale/en-US/animals/rat-king/rat-king.ftl +++ b/Resources/Locale/en-US/animals/rat-king/rat-king.ftl @@ -1,8 +1,3 @@ -rat-king-raise-army-name = Raise Army -rat-king-raise-army-description = Spend some hunger to summon an allied rat to help defend you. - -rat-king-domain-name = Rat King's Domain -rat-king-domain-description = Spend some hunger to release a cloud of miasma into the air. rat-king-domain-popup = A cloud of miasma is released into the air! -rat-king-too-hungry = You are too hungry to use this ability! \ No newline at end of file +rat-king-too-hungry = You are too hungry to use this ability! diff --git a/Resources/Locale/en-US/anomaly/anomaly.ftl b/Resources/Locale/en-US/anomaly/anomaly.ftl index cff944ae225..29d51696944 100644 --- a/Resources/Locale/en-US/anomaly/anomaly.ftl +++ b/Resources/Locale/en-US/anomaly/anomaly.ftl @@ -8,6 +8,7 @@ anomaly-vessel-component-upgrade-output = point output anomaly-particles-delta = Delta particles anomaly-particles-epsilon = Epsilon particles anomaly-particles-zeta = Zeta particles +anomaly-particles-omega = Omega particles anomaly-scanner-component-scan-complete = Scan complete! diff --git a/Resources/Locale/en-US/atmos/gas-tank-component.ftl b/Resources/Locale/en-US/atmos/gas-tank-component.ftl index ee7e3bfb22c..ae10d5630c1 100644 --- a/Resources/Locale/en-US/atmos/gas-tank-component.ftl +++ b/Resources/Locale/en-US/atmos/gas-tank-component.ftl @@ -6,6 +6,10 @@ comp-gas-tank-examine = Pressure: [color=orange]{PRESSURE($pressure)}[/color]. # Examine text when internals are active. comp-gas-tank-connected = It's connected to an external component. +# Examine text when valve is open or closed. +comp-gas-tank-examine-open-valve = Gas release valve is [color=red]open[/color]. +comp-gas-tank-examine-closed-valve = Gas release valve is [color=green]closed[/color]. + ## ControlVerb control-verb-open-control-panel-text = Open Control Panel @@ -17,3 +21,7 @@ gas-tank-window-tank-pressure-text = Pressure: {$tankPressure} kPA gas-tank-window-internal-text = Internals: {$status} gas-tank-window-internal-connected = [color=green]Connected[/color] gas-tank-window-internal-disconnected = [color=red]Disconnected[/color] + +## Valve +comp-gas-tank-open-valve = Open Valve +comp-gas-tank-close-valve = Close Valve diff --git a/Resources/Locale/en-US/battery/components/battery-drainer-component.ftl b/Resources/Locale/en-US/battery/components/battery-drainer-component.ftl new file mode 100644 index 00000000000..2f9b06ef584 --- /dev/null +++ b/Resources/Locale/en-US/battery/components/battery-drainer-component.ftl @@ -0,0 +1,3 @@ +battery-drainer-full = Your battery is already full +battery-drainer-empty = {CAPITALIZE(THE($battery))} does not have enough power to drain +battery-drainer-success = You drain power from {THE($battery)}! diff --git a/Resources/Locale/en-US/chapel/bible.ftl b/Resources/Locale/en-US/chapel/bible.ftl index c59492b70a6..dfeee75c630 100644 --- a/Resources/Locale/en-US/chapel/bible.ftl +++ b/Resources/Locale/en-US/chapel/bible.ftl @@ -7,8 +7,6 @@ bible-heal-fail-self = You hit {THE($target)} with {THE($bible)}, and it lands w bible-heal-fail-others = {CAPITALIZE(THE($user))} hits {THE($target)} with {THE($bible)}, and it lands with a sad thack, dazing {OBJECT($target)}! bible-sizzle = The book sizzles in your hands! -bible-summon-verb = Summon familiar -bible-summon-verb-desc = Summon a familiar that will aid you and gain humanlike intelligence once inhabited by a soul. bible-summon-requested = Your familiar will arrive once a willing soul comes forth. bible-summon-respawn-ready = {CAPITALIZE(THE($book))} surges with ethereal power. {CAPITALIZE(POSS-ADJ($book))} resident is home again. diff --git a/Resources/Locale/en-US/chat/managers/chat-manager.ftl b/Resources/Locale/en-US/chat/managers/chat-manager.ftl index 1483cd900a0..ac8e434e2da 100644 --- a/Resources/Locale/en-US/chat/managers/chat-manager.ftl +++ b/Resources/Locale/en-US/chat/managers/chat-manager.ftl @@ -52,28 +52,61 @@ chat-manager-admin-channel-name = ADMIN chat-speech-verb-suffix-exclamation = ! chat-speech-verb-suffix-exclamation-strong = !! chat-speech-verb-suffix-question = ? +chat-speech-verb-suffix-stutter = - +chat-speech-verb-suffix-mumble = .. chat-speech-verb-default = says chat-speech-verb-exclamation = exclaims chat-speech-verb-exclamation-strong = yells chat-speech-verb-question = asks +chat-speech-verb-stutter = stutters +chat-speech-verb-mumble = mumbles chat-speech-verb-insect-1 = chitters -chat-speech-verb-insect-2 = flutters +chat-speech-verb-insect-2 = chirps +chat-speech-verb-insect-3 = clicks -chat-speech-verb-slime = chirps +chat-speech-verb-winged-1 = flutters +chat-speech-verb-winged-2 = flaps +chat-speech-verb-winged-3 = buzzes -chat-speech-verb-robotic = states -chat-speech-verb-reptilian = hisses +chat-speech-verb-slime-1 = sloshes +chat-speech-verb-slime-2 = burbles +chat-speech-verb-slime-3 = oozes -chat-speech-verb-skeleton = rattles +chat-speech-verb-plant-1 = rustles +chat-speech-verb-plant-2 = sways +chat-speech-verb-plant-3 = creaks -chat-speech-verb-small-mob = squeaks +chat-speech-verb-robotic-1 = states +chat-speech-verb-robotic-2 = beeps -chat-speech-verb-large-mob = roars +chat-speech-verb-reptilian-1 = hisses +chat-speech-verb-reptilian-2 = snorts +chat-speech-verb-reptilian-3 = huffs -chat-speech-verb-monkey = chimpers +chat-speech-verb-skeleton-1 = rattles +chat-speech-verb-skeleton-2 = clacks +chat-speech-verb-skeleton-3 = gnashes + +chat-speech-verb-canine-1 = barks +chat-speech-verb-canine-2 = woofs +chat-speech-verb-canine-3 = howls + +chat-speech-verb-small-mob-1 = squeaks +chat-speech-verb-small-mob-2 = pieps + +chat-speech-verb-large-mob-1 = roars +chat-speech-verb-large-mob-2 = growls + +chat-speech-verb-monkey-1 = chimpers +chat-speech-verb-monkey-2 = screeches chat-speech-verb-cluwne-1 = giggles chat-speech-verb-cluwne-2 = guffaws chat-speech-verb-cluwne-3 = laughs + +chat-speech-verb-ghost-1 = complains +chat-speech-verb-ghost-2 = breathes +chat-speech-verb-ghost-3 = hums +chat-speech-verb-ghost-4 = mutters diff --git a/Resources/Locale/en-US/clothing/components/northstar-component.ftl b/Resources/Locale/en-US/clothing/components/northstar-component.ftl deleted file mode 100644 index ba54ed3c113..00000000000 --- a/Resources/Locale/en-US/clothing/components/northstar-component.ftl +++ /dev/null @@ -1,2 +0,0 @@ -north-star-current-battlecry = Battlecry: -north-star-menu-title = Set Battlecry diff --git a/Resources/Locale/en-US/commands/toolshed-commands.ftl b/Resources/Locale/en-US/commands/toolshed-commands.ftl index bf0b93c3c53..9320dac917d 100644 --- a/Resources/Locale/en-US/commands/toolshed-commands.ftl +++ b/Resources/Locale/en-US/commands/toolshed-commands.ftl @@ -58,5 +58,15 @@ command-description-tag-addmany = Adds a list of tags to the given entities. command-description-tag-rmmany = Removes a list of tags from the given entities. +command-description-polymorph = + Polymorphs the input entity with the given prototype. +command-description-unpolymorph = + Reverts a polymorph. command-description-solution-get = - Returns a solution stored in an entity's solution container. + Grabs the given solution off the given entity. +command-description-solution-adjreagent = + Adjusts the given reagent on the given solution. +command-description-mind-get = + Grabs the mind from the entity, if any. +command-description-mind-control = + Assumes control of an entity with the given player. diff --git a/Resources/Locale/en-US/communications/communications-console-component.ftl b/Resources/Locale/en-US/communications/communications-console-component.ftl index a2fe03963d5..a3b95940dfa 100644 --- a/Resources/Locale/en-US/communications/communications-console-component.ftl +++ b/Resources/Locale/en-US/communications/communications-console-component.ftl @@ -7,6 +7,7 @@ comms-console-menu-recall-shuttle = Recall emergency shuttle # Popup comms-console-permission-denied = Permission denied +comms-console-shuttle-unavailable = Shuttle is currently unavailable # Placeholder values comms-console-announcement-sent-by = Sent by diff --git a/Resources/Locale/en-US/communications/terror.ftl b/Resources/Locale/en-US/communications/terror.ftl new file mode 100644 index 00000000000..4bc80c0bd65 --- /dev/null +++ b/Resources/Locale/en-US/communications/terror.ftl @@ -0,0 +1,2 @@ +terror-dragon = Attention crew, it appears that someone on your station has made an unexpected communication with a strange fish in nearby space. +terror-revenant = Attention crew, it appears that someone on your station has made an unexpected communication with an otherworldly energy in nearby space. diff --git a/Resources/Locale/en-US/devices/network-configurator.ftl b/Resources/Locale/en-US/devices/network-configurator.ftl index dfd5d0106ac..e1bcbc4c943 100644 --- a/Resources/Locale/en-US/devices/network-configurator.ftl +++ b/Resources/Locale/en-US/devices/network-configurator.ftl @@ -25,8 +25,6 @@ network-configurator-title-saved-devices = Saved Devices network-configurator-title-device-configuration = Device Configuration network-configurator-ui-clear-button = Clear network-configurator-ui-count-label = {$count} Devices -network-configurator-clear-network-link-overlays = Clear network link overlays -network-configurator-clear-network-link-overlays-desc = Clear network link overlays. # tooltips network-configurator-tooltip-set = Sets targets device list diff --git a/Resources/Locale/en-US/discord/round-notifications.ftl b/Resources/Locale/en-US/discord/round-notifications.ftl new file mode 100644 index 00000000000..a9a3d5fb501 --- /dev/null +++ b/Resources/Locale/en-US/discord/round-notifications.ftl @@ -0,0 +1,5 @@ +discord-round-notifications-new = A new round is starting! +discord-round-notifications-started = Round #{$id} on map "{$map}" started. +discord-round-notifications-end = Round #{$id} has ended. It lasted for {$hours} hours, {$minutes} minutes, and {$seconds} seconds. +discord-round-notifications-end-ping = <@&{$roleId}>, the server will reboot shortly! +discord-round-notifications-unknown-map = Unknown diff --git a/Resources/Locale/en-US/game-ticking/game-presets/preset-deathmatch.ftl b/Resources/Locale/en-US/game-ticking/game-presets/preset-deathmatch.ftl index ee41fcefea2..d3388c22852 100644 --- a/Resources/Locale/en-US/game-ticking/game-presets/preset-deathmatch.ftl +++ b/Resources/Locale/en-US/game-ticking/game-presets/preset-deathmatch.ftl @@ -1,2 +1,79 @@ death-match-title = DeathMatch -death-match-description = Kill anything that moves! +death-match-description = Kill anything that moves! Normal roleplay need not apply. The first to 31 points wins! + +death-match-name-player = [bold]{$name}[/bold] ([italic]{$username}[/italic]) +death-match-name-npc = [bold]{$name}[/bold] +death-match-assist = {$primary}, assisted by {$secondary}, + +death-match-kill-callout-0 = {CAPITALIZE($killer)} murdered {$victim}! +death-match-kill-callout-1 = {CAPITALIZE($killer)} killed {$victim}! +death-match-kill-callout-2 = {CAPITALIZE($killer)} fragged {$victim}! +death-match-kill-callout-3 = {CAPITALIZE($killer)} demolished {$victim}! +death-match-kill-callout-4 = {CAPITALIZE($killer)} turned {$victim} into lunch meat! +death-match-kill-callout-5 = {CAPITALIZE($killer)} blitzed {$victim}! +death-match-kill-callout-6 = {CAPITALIZE($killer)} flipped {$victim} upside down and spun 'em! +death-match-kill-callout-7 = {CAPITALIZE($killer)} messed up {$victim}! +death-match-kill-callout-8 = {CAPITALIZE($killer)} sent {$victim} to hell! +death-match-kill-callout-9 = {CAPITALIZE($killer)} danced on {$victim}'s grave! +death-match-kill-callout-10 = {CAPITALIZE($killer)} obliterated {$victim}! +death-match-kill-callout-11 = {CAPITALIZE($killer)} robusted {$victim}! +death-match-kill-callout-12 = {CAPITALIZE($killer)} combined toolbox and {$victim} to create corpse! +death-match-kill-callout-13 = {CAPITALIZE($killer)} made {$victim} bite the dust! +death-match-kill-callout-14 = {CAPITALIZE($killer)} posted a cringe compilation of {$victim}! +death-match-kill-callout-15 = {CAPITALIZE($killer)} saw {$victim} post their full-body OC! +death-match-kill-callout-16 = {CAPITALIZE($killer)} Doom (1993)'ed {$victim}! +death-match-kill-callout-17 = {CAPITALIZE($killer)} humiliated {$victim}! +death-match-kill-callout-18 = {CAPITALIZE($killer)} removed {$victim}'s flashdrive while it was being used! +death-match-kill-callout-19 = {CAPITALIZE($killer)} deleted System32 from {$victim}'s PC! +death-match-kill-callout-20 = {CAPITALIZE($killer)} bwoinked {$victim}! +death-match-kill-callout-21 = {CAPITALIZE($killer)} voted {$victim} off the island! +death-match-kill-callout-22 = {CAPITALIZE($killer)} voted {$victim} for acting sus! +death-match-kill-callout-23 = {CAPITALIZE($killer)} forced {$victim} to code for SS14! +death-match-kill-callout-24 = {CAPITALIZE($killer)} forced {$victim} to code for OpenDream! +death-match-kill-callout-25 = {CAPITALIZE($killer)} forced {$victim} to code for BYOND! +death-match-kill-callout-26 = {CAPITALIZE($killer)} 1984'ed {$victim}! +death-match-kill-callout-27 = {CAPITALIZE($killer)} express-shipped {$victim} to God! +death-match-kill-callout-28 = {CAPITALIZE($killer)} taunt killed {$victim}! +death-match-kill-callout-29 = {CAPITALIZE($killer)} said {$victim} had a nice cut, G! +death-match-kill-callout-30 = {CAPITALIZE($killer)} shuffled on {$victim}'s grave! +death-match-kill-callout-31 = {CAPITALIZE($killer)} pushed {$victim} down the stairs! +death-match-kill-callout-32 = {CAPITALIZE($killer)} enacted the bite of '87 on {$victim}! +death-match-kill-callout-33 = {CAPITALIZE($killer)} saw {$victim} post on reddit! +death-match-kill-callout-34 = {CAPITALIZE($killer)} threw {$victim} to the admin team! +death-match-kill-callout-35 = {CAPITALIZE($killer)} weh'ed {$victim}! +death-match-kill-callout-36 = {CAPITALIZE($killer)} turned {$victim} into an SS13 remake! +death-match-kill-callout-37 = {CAPITALIZE($killer)} forced {$victim} to play Xonotic! +death-match-kill-callout-38 = {CAPITALIZE($killer)} sent {$victim} to Brazil! +death-match-kill-callout-39 = {CAPITALIZE($killer)} epicly hacked {$victim}! +death-match-kill-callout-40 = {CAPITALIZE($killer)} closed {$victim}'s PR! +death-match-kill-callout-41 = {CAPITALIZE($killer)} saw {$victim} merge cringe on master! +death-match-kill-callout-42 = {CAPITALIZE($killer)} witnessed {$victim} sergalpost on main! +death-match-kill-callout-43 = {CAPITALIZE($killer)} did not gently the {$victim}! +death-match-kill-callout-44 = {CAPITALIZE($killer)} schmoved on {$victim}! +death-match-kill-callout-45 = {CAPITALIZE($killer)} cunked {$victim}! +death-match-kill-callout-46 = {CAPITALIZE($killer)} shook {$victim} before drinking! +death-match-kill-callout-47 = {CAPITALIZE($killer)} drove drunk and hit {$victim}! +death-match-kill-callout-48 = {CAPITALIZE($killer)} turned {$victim} into a marketable plush! +death-match-kill-callout-49 = {CAPITALIZE($killer)} gave {$victim} a reminder of their mortality! +death-match-kill-callout-50 = {CAPITALIZE($killer)} ratio'd {$victim}! +death-match-kill-callout-51 = {CAPITALIZE($killer)} ctrl-alt-delete'd {$victim}! +death-match-kill-callout-52 = {CAPITALIZE($killer)} bonked {$victim}! +death-match-kill-callout-53 = {CAPITALIZE($killer)} landed a random crit on {$victim}! +death-match-kill-callout-54 = {CAPITALIZE($killer)} taught {$victim} a valuable lesson! +death-match-kill-callout-55 = {CAPITALIZE($killer)} hit a home run on {$victim}! +death-match-kill-callout-56 = {CAPITALIZE($killer)} dunked on {$victim}! +death-match-kill-callout-57 = {CAPITALIZE($killer)} styled on {$victim}! +death-match-kill-callout-58 = {CAPITALIZE($killer)} said a rude word to {$victim}! +death-match-kill-callout-59 = {CAPITALIZE($killer)} sent hate-mail to {$victim}! +death-match-kill-callout-60 = {CAPITALIZE($killer)} tripped {$victim} down the stairs! +death-match-kill-callout-env-0 = {CAPITALIZE($victim)} lost a point! +death-match-kill-callout-env-1 = {CAPITALIZE($victim)} got humiliated! +death-match-kill-callout-env-2 = {CAPITALIZE($victim)} just looked like an idiot! +death-match-kill-callout-env-3 = {CAPITALIZE($victim)} suffered a skill issue! +death-match-kill-callout-env-4 = {CAPITALIZE($victim)} looked extremely dumb! +death-match-kill-callout-env-5 = {CAPITALIZE($victim)} put themselves out of their misery! +death-match-kill-callout-env-6 = {CAPITALIZE($victim)} got bored of life! +death-match-kill-callout-env-7 = {CAPITALIZE($victim)} didn't try very hard! +death-match-kill-callout-env-8 = {CAPITALIZE($victim)} took out the trash themselves! +death-match-kill-callout-env-9 = {CAPITALIZE($victim)} looked extremely dumb! +death-match-kill-callout-env-10 = {CAPITALIZE($victim)} clowned around! diff --git a/Resources/Locale/en-US/game-ticking/game-presets/preset-traitor.ftl b/Resources/Locale/en-US/game-ticking/game-presets/preset-traitor.ftl index 4459cf5f902..7f515fc97dc 100644 --- a/Resources/Locale/en-US/game-ticking/game-presets/preset-traitor.ftl +++ b/Resources/Locale/en-US/game-ticking/game-presets/preset-traitor.ftl @@ -1,30 +1,11 @@ - ## Traitor -# Shown at the end of a round of Traitor -traitor-round-end-result = {$traitorCount -> - [one] There was one traitor. - *[other] There were {$traitorCount} traitors. -} - traitor-round-end-codewords = The codewords were: [color=White]{$codewords}[/color] +traitor-round-end-agent-name = traitor -# Shown at the end of a round of Traitor -traitor-user-was-a-traitor = [color=gray]{$user}[/color] was a traitor. -traitor-user-was-a-traitor-named = [color=White]{$name}[/color] ([color=gray]{$user}[/color]) was a traitor. -traitor-was-a-traitor-named = [color=White]{$name}[/color] was a traitor. - -traitor-user-was-a-traitor-with-objectives = [color=gray]{$user}[/color] was a traitor who had the following objectives: -traitor-user-was-a-traitor-with-objectives-named = [color=White]{$name}[/color] ([color=gray]{$user}[/color]) was a traitor who had the following objectives: -traitor-was-a-traitor-with-objectives-named = [color=White]{$name}[/color] was a traitor who had the following objectives: - -preset-traitor-objective-issuer-syndicate = [color=#87cefa]The Syndicate[/color] - -# Shown at the end of a round of Traitor -traitor-objective-condition-success = {$condition} | [color={$markupColor}]Success![/color] +objective-issuer-syndicate = [color=#87cefa]The Syndicate[/color] # Shown at the end of a round of Traitor -traitor-objective-condition-fail = {$condition} | [color={$markupColor}]Failure![/color] ({$progress}%) traitor-title = Traitor traitor-description = There are traitors among us... diff --git a/Resources/Locale/en-US/game-ticking/game-rules/rules.ftl b/Resources/Locale/en-US/game-ticking/game-rules/rules.ftl index fede4044137..5a89d5e9791 100644 --- a/Resources/Locale/en-US/game-ticking/game-rules/rules.ftl +++ b/Resources/Locale/en-US/game-ticking/game-rules/rules.ftl @@ -1,3 +1,6 @@ # General rule-restarting-in-seconds = Restarting in {$seconds} seconds. -rule-time-has-run-out = Time has run out! \ No newline at end of file +rule-time-has-run-out = Time has run out! + +# Respawning +rule-respawn-in-seconds = Respawning in {$second} seconds... diff --git a/Resources/Locale/en-US/game-ticking/game-ticker.ftl b/Resources/Locale/en-US/game-ticking/game-ticker.ftl index 004b6aaae07..42be7de5f33 100644 --- a/Resources/Locale/en-US/game-ticking/game-ticker.ftl +++ b/Resources/Locale/en-US/game-ticking/game-ticker.ftl @@ -36,3 +36,4 @@ player-leave-message = Player {$name} left. latejoin-arrival-announcement = {$character} ({$job}) has arrived at the station! latejoin-arrival-sender = Station latejoin-arrivals-direction = A shuttle transferring you to your station will arrive shortly. +latejoin-arrivals-direction-time = A shuttle transferring you to your station will arrive in {$time}. diff --git a/Resources/Locale/en-US/generic.ftl b/Resources/Locale/en-US/generic.ftl index 41d80e3c41a..0ecfefdd1cb 100644 --- a/Resources/Locale/en-US/generic.ftl +++ b/Resources/Locale/en-US/generic.ftl @@ -5,5 +5,6 @@ generic-article-a = a generic-article-an = an generic-unknown = unknown +generic-unknown-title = Unknown generic-error = error generic-invalid = invalid diff --git a/Resources/Locale/en-US/ghost/ghost-gui.ftl b/Resources/Locale/en-US/ghost/ghost-gui.ftl index f5d52a71ec0..8275d7e5d61 100644 --- a/Resources/Locale/en-US/ghost/ghost-gui.ftl +++ b/Resources/Locale/en-US/ghost/ghost-gui.ftl @@ -1,14 +1,8 @@ ghost-gui-return-to-body-button = Return to body ghost-gui-ghost-warp-button = Ghost Warp ghost-gui-ghost-roles-button = Ghost Roles ({$count}) -ghost-gui-toggle-ghost-visibility-name = Toggle Ghosts -ghost-gui-toggle-ghost-visibility-desc = Toggle the visibility of other ghosts. ghost-gui-toggle-ghost-visibility-popup = Toggled visibility of ghosts. -ghost-gui-toggle-lighting-manager-name = Toggle All Lighting -ghost-gui-toggle-lighting-manager-desc = Toggle all light rendering to better observe dark areas. ghost-gui-toggle-lighting-manager-popup = Toggled all lighting. -ghost-gui-toggle-fov-name = Toggle FoV -ghost-gui-toggle-fov-desc = Toggles field-of-view in order to see what players see. ghost-gui-toggle-fov-popup = Toggled field-of-view. ghost-target-window-title = Ghost Warp @@ -22,4 +16,4 @@ ghost-roles-window-no-roles-available-label = There are currently no available g ghost-roles-window-rules-footer = The button will enable after {$time} seconds (this delay is to make sure you read the rules). ghost-return-to-body-title = Return to Body -ghost-return-to-body-text = You are being revived! Return to your body? \ No newline at end of file +ghost-return-to-body-text = You are being revived! Return to your body? 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 5a05b713fe3..81604e8d6be 100644 --- a/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl +++ b/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl @@ -21,6 +21,9 @@ ghost-role-information-slimes-name = Slime ghost-role-information-slimes-description = An ordinary slime with no special needs or interests. He just lives. ghost-role-information-angry-slimes-description = Everything around you irritates your instincts, destroy them! +ghost-role-information-smile-name = Smile the Slime +ghost-role-information-smile-description = The sweetest creature in the world. Smile Slime! + ghost-role-information-punpun-name = Pun Pun ghost-role-information-punpun-description = An honorable member of the monkey society in charge of the bar and helping the bartenders in any way he can. @@ -70,6 +73,12 @@ ghost-role-information-jonkbot-description = An artificial being of pure evil. ghost-role-information-mimebot-name = Mimebot ghost-role-information-mimebot-description = A Mimebot, act like a mime but dont act like a greytider. +ghost-role-information-taxibot-name = TaxiBot +ghost-role-information-taxibot-description = Drive the station crew to their destination. + +ghost-role-information-supplybot-name = SupplyBot +ghost-role-information-supplybot-description = Deliver goods around the station. + ghost-role-information-space-bear-name = Space bear ghost-role-information-space-bear-description = You're a bear! Do bear things. @@ -146,8 +155,11 @@ ghost-role-information-cburn-agent-description = A highly trained CentCom agent, ghost-role-information-centcom-official-name = CentCom official ghost-role-information-centcom-official-description = Inspect the station, jot down performance reviews for heads of staff, bug the Captain. +ghost-role-information-nukeop-rules = You are a syndicate operative tasked with the destruction of the station. As an antagonist, do whatever is required to complete this task. + +ghost-role-information-loneop-name = Lone Operative +ghost-role-information-loneop-description = You are a lone nuclear operative. Destroy the station! +ghost-role-information-loneop-rules = You are a syndicate operative tasked with the destruction of the station. As an antagonist, do whatever is required to complete this task. + ghost-role-information-behonker-name = Behonker ghost-role-information-behonker-description = You are an antagonist, bring death and honks to those who do not follow the honkmother. - -ghost-role-information-taxibot-name = TaxiBot -ghost-role-information-taxibot-description = Drive the station crew to their destination. diff --git a/Resources/Locale/en-US/guardian/guardian.ftl b/Resources/Locale/en-US/guardian/guardian.ftl index 2575e9a1f11..9e0966630dd 100644 --- a/Resources/Locale/en-US/guardian/guardian.ftl +++ b/Resources/Locale/en-US/guardian/guardian.ftl @@ -11,11 +11,6 @@ guardian-activator-invalid-target = Only humans can be injected! guardian-no-soul = Your guardian has no soul. guardian-available = Your guardian now has a soul. -# Guardian action - -action-name-guardian = Toggle Guardian -action-description-guardian = Either manifests the guardian or recalls it back into your body - ## Guardian entity specific guardian-entity-recall = The guardian vanishes into thin air! diff --git a/Resources/Locale/en-US/guidebook/chemistry/effects.ftl b/Resources/Locale/en-US/guidebook/chemistry/effects.ftl index 6f3645c7053..b6f45d23862 100644 --- a/Resources/Locale/en-US/guidebook/chemistry/effects.ftl +++ b/Resources/Locale/en-US/guidebook/chemistry/effects.ftl @@ -267,6 +267,12 @@ reagent-effect-guidebook-make-sentient = *[other] make } the metabolizer sentient +reagent-effect-guidebook-make-polymorph = + { $chance -> + [1] Polymorphs + *[other] polymorph + } the metabolizer into a { $entityname } + reagent-effect-guidebook-modify-bleed-amount = { $chance -> [1] { $deltasign -> diff --git a/Resources/Locale/en-US/guidebook/guides.ftl b/Resources/Locale/en-US/guidebook/guides.ftl index f509b3a002b..4fa42ecede1 100644 --- a/Resources/Locale/en-US/guidebook/guides.ftl +++ b/Resources/Locale/en-US/guidebook/guides.ftl @@ -9,6 +9,7 @@ guide-entry-networking = Networking guide-entry-network-configurator = Network Configurator guide-entry-access-configurator = Access Configurator guide-entry-power = Power +guide-entry-portable-generator = Portable Generators guide-entry-ame = Antimatter Engine (AME) guide-entry-singularity = Singularity guide-entry-teg = Thermo-electric Generator (TEG) @@ -48,3 +49,6 @@ guide-entry-nuclear-operatives = Nuclear Operatives guide-entry-traitors = Traitors guide-entry-zombies = Zombies guide-entry-minor-antagonists = Minor Antagonists +guide-entry-space-ninja = Space Ninja + +guide-entry-writing = Writing diff --git a/Resources/Locale/en-US/implant/implant.ftl b/Resources/Locale/en-US/implant/implant.ftl index 63efb313cc6..bdc82c291d8 100644 --- a/Resources/Locale/en-US/implant/implant.ftl +++ b/Resources/Locale/en-US/implant/implant.ftl @@ -14,29 +14,6 @@ implanter-label = Implant: [color=green]{$implantName}[/color] | [color=white]{$ implanter-contained-implant-text = [color=green]{$desc}[/color] -## Implanter Actions - -open-storage-implant-action-name = Open Storage Implant -open-storage-implant-action-description = Opens the storage implant embedded under your skin - -activate-micro-bomb-action-name = Activate Microbomb -activate-micro-bomb-action-description = Activates your internal microbomb, completely destroying you and your equipment - -use-freedom-implant-action-name = Break Free -use-freedom-implant-action-description = Activating your freedom implant will free you from any hand restraints - -open-uplink-implant-action-name = Open Uplink -open-uplink-implant-action-description = Opens the syndicate uplink embedded under your skin - -action-name-honk = Honk! -action-desc-honk = Activates your honking implant, which will produce the signature sound of the clown. - -use-emp-implant-action-name = Activate EMP -use-emp-implant-action-description = Triggers a small EMP pulse around you - -use-dna-scrambler-implant-action-name = Scramble DNA -use-dna-scrambler-implant-action-description = Randomly changes your name and appearance. - ## Implant Popups scramble-implant-activated-popup = Your appearance shifts and changes! diff --git a/Resources/Locale/en-US/interaction/interaction-popup-component.ftl b/Resources/Locale/en-US/interaction/interaction-popup-component.ftl index 9c6324f39e7..67d727dc532 100644 --- a/Resources/Locale/en-US/interaction/interaction-popup-component.ftl +++ b/Resources/Locale/en-US/interaction/interaction-popup-component.ftl @@ -14,8 +14,10 @@ petting-success-dog = You pet {THE($target)} on {POSS-ADJ($target)} soft floofy petting-success-frog = You pet {THE($target)} on {POSS-ADJ($target)} slippery little head. petting-success-goat = You pet {THE($target)} on {POSS-ADJ($target)} horned floofy head. petting-success-goose = Against all odds, you manage to pet {THE($target)} on {POSS-ADJ($target)} horrible little head. +petting-success-kangaroo = You pet {THE($target)} on {POSS-ADJ($target)} Strayan head. petting-success-possum = You pet {THE($target)} on {POSS-ADJ($target)} horrible little head. petting-success-pig = You pet {THE($target)} on {POSS-ADJ($target)} hairy head. +petting-success-raccoon = You pet {THE($target)} on {POSS-ADJ($target)} trash eating little head. petting-success-reptile = You pet {THE($target)} on {POSS-ADJ($target)} scaly little head. petting-success-sloth = You pet {THE($target)} on {POSS-ADJ($target)} slow moving head. petting-success-space-cat = You pet {THE($target)} on {POSS-ADJ($target)} glass domed head. @@ -34,7 +36,10 @@ petting-failure-crab = You reach out to pet {THE($target)}, but {SUBJECT($target petting-failure-dehydrated-carp = You pet {THE($target)} on {POSS-ADJ($target)} dry little head. petting-failure-goat = You reach out to pet {THE($target)}, but {SUBJECT($target)} stubbornly refuses! petting-failure-goose = You reach out to pet {THE($target)}, but {SUBJECT($target)} {CONJUGATE-BE($target)} too horrible! +petting-failure-goose = You reach out to pet {THE($target)}, but {SUBJECT($target)} {CONJUGATE-BE($target)} too australian! petting-failure-possum = You reach out to pet {THE($target)}, but are met with hisses and snarls! +petting-success-pig = You reach out to pet {THE($target)}, but are met with irritated oinks and squeals! +petting-failure-raccoon = You reach out to pet {THE($target)}, but {THE($target)} is busy raccooning around. petting-failure-sloth = You reach out to pet {THE($target)}, but {SUBJECT($target)} somehow dodge with ludicrous speed! petting-failure-holo = You reach out to pet {THE($target)}, but {POSS-ADJ($target)} spikes almost impale your hand! petting-failure-dragon = You raise your hand, but as {THE($target)} roars, you decide you'd rather not be toasty carp food. diff --git a/Resources/Locale/en-US/items/components/item-component.ftl b/Resources/Locale/en-US/items/components/item-component.ftl index 26512b5c382..f9750a55fac 100644 --- a/Resources/Locale/en-US/items/components/item-component.ftl +++ b/Resources/Locale/en-US/items/components/item-component.ftl @@ -5,3 +5,5 @@ pick-up-verb-get-data-text = Pick Up # "pick up" doesn't make sense if the item is already in their inventory pick-up-verb-get-data-text-inventory = Put in hand + +item-component-on-examine-size = Size: {$size} diff --git a/Resources/Locale/en-US/job/role-timers.ftl b/Resources/Locale/en-US/job/role-timers.ftl index 8e70e234d3d..1981f5e7957 100644 --- a/Resources/Locale/en-US/job/role-timers.ftl +++ b/Resources/Locale/en-US/job/role-timers.ftl @@ -1,9 +1,9 @@ -role-timer-department-insufficient = You require {TOSTRING($time, "0")} more minutes in {$department} department to play this role. -role-timer-department-too-high = You require {TOSTRING($time, "0")} fewer minutes in {$department} department to play this role. (Are you trying to play a trainee role?) -role-timer-overall-insufficient = You require {TOSTRING($time, "0")} more minutes of playtime to play this role. -role-timer-overall-too-high = You require {TOSTRING($time, "0")} fewer minutes of playtime to play this role. (Are you trying to play a trainee role?) -role-timer-role-insufficient = You require {TOSTRING($time, "0")} more minutes with {$job} to play this role. -role-timer-role-too-high = You require {TOSTRING($time, "0")} fewer minutes with {$job} to play this role. (Are you trying to play a trainee role?) +role-timer-department-insufficient = You require [color=yellow]{TOSTRING($time, "0")}[/color] more minutes of [color={$departmentColor}]{$department}[/color] department playtime to play this role. +role-timer-department-too-high = You require [color=yellow]{TOSTRING($time, "0")}[/color] fewer minutes in [color={$departmentColor}]{$department}[/color] department to play this role. (Are you trying to play a trainee role?) +role-timer-overall-insufficient = You require [color=yellow]{TOSTRING($time, "0")}[/color] more minutes of playtime to play this role. +role-timer-overall-too-high = You require [color=yellow]{TOSTRING($time, "0")}[/color] fewer minutes of playtime to play this role. (Are you trying to play a trainee role?) +role-timer-role-insufficient = You require [color=yellow]{TOSTRING($time, "0")}[/color] more minutes with [color={$departmentColor}]{$job}[/color] to play this role. +role-timer-role-too-high = You require[color=yellow] {TOSTRING($time, "0")}[/color] fewer minutes with [color={$departmentColor}]{$job}[/color] to play this role. (Are you trying to play a trainee role?) role-timer-locked = Locked (hover for details) diff --git a/Resources/Locale/en-US/lathe/ui/lathe-menu.ftl b/Resources/Locale/en-US/lathe/ui/lathe-menu.ftl index e932b2805e7..914bb64b4ff 100644 --- a/Resources/Locale/en-US/lathe/ui/lathe-menu.ftl +++ b/Resources/Locale/en-US/lathe/ui/lathe-menu.ftl @@ -5,8 +5,13 @@ lathe-menu-sync = Sync lathe-menu-search-designs = Search designs lathe-menu-search-filter = Filter lathe-menu-amount = Amount: -lathe-menu-material-display = {$material} ({$amount} cm³) -lathe-menu-tooltip-display = {$amount} cm³ of {$material} -lathe-menu-no-materials-message = No materials loaded -lathe-menu-materials-ejection = Eject materials -lathe-menu-materials-ejection-title = Eject materials +lathe-menu-material-display = {$material} ({$amount}) +lathe-menu-tooltip-display = {$amount} of {$material} +lathe-menu-material-amount = { $amount -> + [1] {NATURALFIXED($amount, 2)} {$unit} + *[other] {NATURALFIXED($amount, 2)} {MAKEPLURAL($unit)} +} +lathe-menu-no-materials-message = No materials loaded. +lathe-menu-fabricating-message = Fabricating... +lathe-menu-materials-title = Materials +lathe-menu-queue-title = Build Queue diff --git a/Resources/Locale/en-US/lathe/ui/lathe-queue-menu.ftl b/Resources/Locale/en-US/lathe/ui/lathe-queue-menu.ftl deleted file mode 100644 index 978d6dc1ad5..00000000000 --- a/Resources/Locale/en-US/lathe/ui/lathe-queue-menu.ftl +++ /dev/null @@ -1,2 +0,0 @@ -lathe-queue-menu-title = Lathe Queue -lathe-queue-menu-not-producing-text = Not producing anything. diff --git a/Resources/Locale/en-US/machine-linking/transmitter_ports.ftl b/Resources/Locale/en-US/machine-linking/transmitter_ports.ftl index 02ede1e1b67..154f20eee7c 100644 --- a/Resources/Locale/en-US/machine-linking/transmitter_ports.ftl +++ b/Resources/Locale/en-US/machine-linking/transmitter_ports.ftl @@ -8,7 +8,7 @@ signal-port-name-off-transmitter = Off signal-port-description-off-transmitter = This port is invoked whenever the transmitter is turned off. signal-port-name-status-transmitter = Status -signal-port-description-logic-output = This port is invoked with HIGH or LOW depending on the transmitter status. +signal-port-description-status-transmitter = This port is invoked with HIGH or LOW depending on the transmitter status. signal-port-name-left = Left signal-port-description-left = This port is invoked whenever the lever is moved to the leftmost position. @@ -36,3 +36,12 @@ signal-port-description-logic-output-high = This port is invoked whenever the in signal-port-name-logic-output-low = Low Output signal-port-description-logic-output-low = This port is invoked whenever the input has a falling edge. + +signal-port-name-air-danger = Danger +signal-port-description-air-danger = This port is invoked with HIGH when in danger mode and LOW when not. + +signal-port-name-air-warning = Warning +signal-port-description-air-warning = This port is invoked with HIGH when in warning mode and LOW when not. + +signal-port-name-air-normal = Normal +signal-port-description-air-normal = This port is invoked with HIGH when in normal mode and LOW when not. diff --git a/Resources/Locale/en-US/magboot/actions.ftl b/Resources/Locale/en-US/magboot/actions.ftl deleted file mode 100644 index 7f8f55fefb7..00000000000 --- a/Resources/Locale/en-US/magboot/actions.ftl +++ /dev/null @@ -1,2 +0,0 @@ -action-name-magboot-toggle = Toggle Magboots -action-decription-magboot-toggle = Toggles the magboots on and off. \ No newline at end of file diff --git a/Resources/Locale/en-US/magic/spells-actions.ftl b/Resources/Locale/en-US/magic/spells-actions.ftl index d45dd347260..40757cd694f 100644 --- a/Resources/Locale/en-US/magic/spells-actions.ftl +++ b/Resources/Locale/en-US/magic/spells-actions.ftl @@ -1,34 +1,5 @@ -action-name-spell-rune-flash = Flash Rune -action-description-spell-rune-flash = Summons a rune that flashes if used. - -action-name-spell-rune-explosion = Explosion Rune -action-description-spell-rune-explosion = Summons a rune that explodes if used. - -action-name-spell-rune-ignite = Ignite Rune -action-description-spell-rune-ignite = Summons a rune that ignites if used. - -action-name-spell-rune-stun = Stun Rune -action-description-spell-rune-stun = Summons a rune that stuns if used. - -action-name-spell-forcewall = Forcewall -action-description-spell-forcewall = Creates a magical barrier. -action-speech-spell-forcewall = TARCOL MINTI ZHERI - -action-name-spell-knock = Knock -action-description-spell-knock = This spell opens nearby doors. +action-speech-spell-forcewall = TARCOL MINTI ZHERI action-speech-spell-knock = AULIE OXIN FIERA - -action-name-spell-smite = Smite -action-description-spell-smite = Instantly gibs a target. action-speech-spell-smite = EI NATH! - -action-name-spell-blink = Blink -action-description-spell-blink = Teleport to the clicked location. - -action-name-spell-summon-magicarp = Summon Magicarp -action-description-spell-summon-magicarp = This spell summons three Magi-Carp to your aid! May or may not turn on user. action-speech-spell-summon-magicarp = AIE KHUSE EU - -action-name-spell-fireball = Fireball -action-description-spell-fireball = Fires an explosive fireball towards the clicked location. action-speech-spell-fireball = ONI'SOMA! diff --git a/Resources/Locale/en-US/markings/arachnid.ftl b/Resources/Locale/en-US/markings/arachnid.ftl index e19a03ffae1..7fb78fb74c2 100644 --- a/Resources/Locale/en-US/markings/arachnid.ftl +++ b/Resources/Locale/en-US/markings/arachnid.ftl @@ -1,32 +1,40 @@ -marking-ArachnidCheliceraeBasic = Chelicerae (Basic) -marking-ArachnidCheliceraeBasic-basic = Chelicerae +marking-ArachnidCheliceraeDownwards = Chelicerae (Downwards) +marking-ArachnidCheliceraeDownwards-downwards = Chelicerae + +marking-ArachnidCheliceraeInwards = Chelicerae (Inwards) +marking-ArachnidCheliceraeInwards-inwards = Chelicerae marking-ArachnidAppendagesDefault = Appendages (Long) -marking-ArachnidAppendagesDefault-long = Appendage +marking-ArachnidAppendagesDefault-long_primary = Appendage +marking-ArachnidAppendagesDefault-long_secondary = Stripes marking-ArachnidAppendagesSharp = Appendages (Sharp) -marking-ArachnidAppendagesSharp-sharp = Appendage +marking-ArachnidAppendagesSharp-sharp_primary = Appendage +marking-ArachnidAppendagesSharp-sharp_secondary = Stripes marking-ArachnidAppendagesZigZag = Appendages (ZigZag) -marking-ArachnidAppendagesZigZag-zigzag = Appendage +marking-ArachnidAppendagesZigZag-zigzag_primary = Appendage +marking-ArachnidAppendagesZigZag-zigzag_secondary = Stripes marking-ArachnidAppendagesCurled = Appendages (Curled) -marking-ArachnidAppendagesCurled-curled = Appendage +marking-ArachnidAppendagesCurled-curled_primary = Appendage +marking-ArachnidAppendagesCurled-curled_secondary = Stripes marking-ArachnidAppendagesStingers = Appendages (Stingers) -marking-ArachnidAppendagesStingers-stingers = Appendage +marking-ArachnidAppendagesStingers-stingers_primary = Appendage +marking-ArachnidAppendagesStingers-stingers_secondary = Stripes marking-ArachnidAppendagesChipped = Appendages (Chipped) -marking-ArachnidAppendagesChipped-chipped = Appendage - -marking-ArachnidAppendagesCurled = Appendages (Curled) -marking-ArachnidAppendagesCurled-curled = Appendage +marking-ArachnidAppendagesChipped-chipped_primary = Appendage +marking-ArachnidAppendagesChipped-chipped_secondary = Stripes marking-ArachnidAppendagesHarvest = Appendages (Harvest) -marking-ArachnidAppendagesHarvest-harvest = Appendage +marking-ArachnidAppendagesHarvest-harvest_primary = Appendage +marking-ArachnidAppendagesHarvest-harvest_secondary = Stripes marking-ArachnidAppendagesShort = Appendages (Short) -marking-ArachnidAppendagesShort-short = Appendage +marking-ArachnidAppendagesShort-short_primary = Appendage +marking-ArachnidAppendagesShort-short_secondary = Stripes marking-ArachnidTorsoStripes = Stripes marking-ArachnidTorsoStripes-stripes = Design @@ -51,3 +59,32 @@ marking-ArachnidTorsoNailAndHammer-nail-and-hammer = Design marking-ArachnidTorsoStar = Star marking-ArachnidTorsoStar-star = Design + +marking-ArachnidTorsoArrows = Arrows +marking-ArachnidTorsoArrows-arrows = Design + +marking-ArachnidTorsoCore = Core +marking-ArachnidTorsoCore-core = Design + +marking-ArachnidTorsoFiddleback = Fiddleback +marking-ArachnidTorsoFiddleback-fiddleback = Design + +marking-ArachnidTorsoSkull = Skull +marking-ArachnidTorsoSkull-skull = Design + +marking-ArachnidTorsoTarget = Target +marking-ArachnidTorsoTarget-target = Design + +marking-ArachnidRArmStripes = Arachnid Stripes (Right) +marking-ArachnidRArmStripes-stripes_right = Stripes + +marking-ArachnidLArmStripes = Arachnid Stripes (Left) +marking-ArachnidLArmStripes-stripes_left = Stripes + +marking-ArachnidRLegStripes = Arachnid Stripes (Right) +marking-ArachnidRLegStripes-stripes_right = Stripes + +marking-ArachnidLLegStripes = Arachnid Stripes (Left) +marking-ArachnidLLegStripes-stripes_left = Stripes + +marking-ArachnidOverlayFuzzy = Fuzzy diff --git a/Resources/Locale/en-US/markings/diona.ftl b/Resources/Locale/en-US/markings/diona.ftl index 55b530decf2..625e5386e61 100644 --- a/Resources/Locale/en-US/markings/diona.ftl +++ b/Resources/Locale/en-US/markings/diona.ftl @@ -55,11 +55,11 @@ marking-DionaPalmHead = Diona Palmhead (Leafs) marking-DionaRootHead-root = Diona Root (Roots) marking-DionaRootHead = Diona Root (Roots) -marking-DionaRoseHead-rose = Diona Rose (Flwoer) -marking-DionaRoseHead = Diona Rose (Flwoer) +marking-DionaRoseHead-rose = Diona Rose (Flower) +marking-DionaRoseHead = Diona Rose (Flower) -marking-DionaRoseyHead-rosey = Diona Rosey (Flwoers) -marking-DionaRoseyHead = Diona Rosey (Flwoers) +marking-DionaRoseyHead-rosey = Diona Rosey (Flowers) +marking-DionaRoseyHead = Diona Rosey (Flowers) marking-DionaShrubHeadTop-shrub = Diona Shrub (Thorns) marking-DionaShrubHeadTop = Diona Shrub (Thorns) @@ -81,3 +81,6 @@ marking-DionaVinesHead = Diona Vines Short (Vines) marking-DionaWildflowerHead-wildflower = Diona Wild Flowers (Flowers) marking-DionaWildflowerHead = Diona Wild Flowers (Flowers) + +marking-DionaVineOverlay-overlay = Diona Body Vines +marking-DionaVineOverlay = Diona Body Vines diff --git a/Resources/Locale/en-US/materials/materials.ftl b/Resources/Locale/en-US/materials/materials.ftl index 41052e57272..12bfcf5e12e 100644 --- a/Resources/Locale/en-US/materials/materials.ftl +++ b/Resources/Locale/en-US/materials/materials.ftl @@ -12,6 +12,7 @@ materials-plasteel = plasteel # Other materials-biomass = biomass +materials-cardboard = cardboard materials-cloth = cloth materials-durathread = durathread materials-plasma = plasma @@ -20,6 +21,7 @@ materials-wood = wood materials-uranium = uranium materials-bananium = bananium materials-meat = meat +materials-web = silk # Material Reclaimer material-reclaimer-upgrade-process-rate = process rate diff --git a/Resources/Locale/en-US/materials/units.ftl b/Resources/Locale/en-US/materials/units.ftl new file mode 100644 index 00000000000..9915444bdcb --- /dev/null +++ b/Resources/Locale/en-US/materials/units.ftl @@ -0,0 +1,20 @@ +# sheets of steel +materials-unit-sheet = sheet +# bars of gold +materials-unit-bar = bar +# planks of wood +materials-unit-plank = plank +# rolls of cloth +materials-unit-roll = roll +# pieces of biomass +materials-unit-piece = piece +# bunches of bananium +materials-unit-bunch = bunch +# slabs of meat +materials-unit-slab = slab +# webs of silk +materials-unit-web = web + +# bills of spesos... not very good but they are not (yet?) used for crafting anything +# also the lathe/atm would need bigger denominations to output... +materials-unit-bill = bill diff --git a/Resources/Locale/en-US/mind/components/mind-component.ftl b/Resources/Locale/en-US/mind/components/mind-component.ftl index 0cd9dccff6d..5c7168397be 100644 --- a/Resources/Locale/en-US/mind/components/mind-component.ftl +++ b/Resources/Locale/en-US/mind/components/mind-component.ftl @@ -7,4 +7,5 @@ comp-mind-ghosting-prevented = You are not able to ghost right now. comp-mind-examined-catatonic = { CAPITALIZE(SUBJECT($ent)) } { CONJUGATE-BE($ent) } totally catatonic. The stresses of life in deep-space must have been too much for { OBJECT($ent) }. Any recovery is unlikely. comp-mind-examined-dead = { CAPITALIZE(SUBJECT($ent)) } { CONJUGATE-BE($ent) } dead. comp-mind-examined-ssd = { CAPITALIZE(SUBJECT($ent)) } { CONJUGATE-HAVE($ent) } a blank, absent-minded stare and appears completely unresponsive to anything. { CAPITALIZE(SUBJECT($ent)) } may snap out of it soon. -comp-mind-examined-dead-and-ssd = { CAPITALIZE(POSS-ADJ($ent)) } soul has departed and moved on. Any recovery is unlikely. +comp-mind-examined-dead-and-ssd = { CAPITALIZE(POSS-ADJ($ent)) } soul lies dormant and may return soon. +comp-mind-examined-dead-and-irrecoverable = { CAPITALIZE(POSS-ADJ($ent)) } soul has departed and moved on. Any recovery is unlikely. diff --git a/Resources/Locale/en-US/movement/jetpacks.ftl b/Resources/Locale/en-US/movement/jetpacks.ftl index 20efababf4a..8be63d0fb77 100644 --- a/Resources/Locale/en-US/movement/jetpacks.ftl +++ b/Resources/Locale/en-US/movement/jetpacks.ftl @@ -1,5 +1,2 @@ -action-name-jetpack-toggle = Toggle jetpack -action-description-jetpack-toggle = Toggles the jetpack, giving you movement outside the station. - jetpack-no-station = Can't use jetpacks under gravity jetpack-to-grid = The jetpack turns off diff --git a/Resources/Locale/en-US/ninja/gloves.ftl b/Resources/Locale/en-US/ninja/gloves.ftl new file mode 100644 index 00000000000..cb432086756 --- /dev/null +++ b/Resources/Locale/en-US/ninja/gloves.ftl @@ -0,0 +1,6 @@ +ninja-gloves-on = The gloves surge with power! +ninja-gloves-off = The gloves power down... +ninja-gloves-not-wearing-suit = You aren't wearing a ninja suit +ninja-gloves-examine-on = All abilities are enabled. +ninja-gloves-examine-off = Boring old gloves... +ninja-doorjack-success = The gloves zap something in {THE($target)}. diff --git a/Resources/Locale/en-US/ninja/katana.ftl b/Resources/Locale/en-US/ninja/katana.ftl new file mode 100644 index 00000000000..678d8779ec4 --- /dev/null +++ b/Resources/Locale/en-US/ninja/katana.ftl @@ -0,0 +1,6 @@ +ninja-katana-recalled = Your Energy Katana teleports into your hand! +ninja-hands-full = Your hands are full! + +dash-ability-not-held = You aren't holding your katana! +dash-ability-no-charges = No charges left! +dash-ability-cant-see = You can't see that! diff --git a/Resources/Locale/en-US/ninja/ninja-actions.ftl b/Resources/Locale/en-US/ninja/ninja-actions.ftl new file mode 100644 index 00000000000..b15a4118e91 --- /dev/null +++ b/Resources/Locale/en-US/ninja/ninja-actions.ftl @@ -0,0 +1,4 @@ +ninja-no-power = Not enough charge in suit battery! + +ninja-research-steal-fail = No new research nodes were stolen... +ninja-research-steal-success = Stole {$count} new nodes from {THE($server)}. diff --git a/Resources/Locale/en-US/ninja/role.ftl b/Resources/Locale/en-US/ninja/role.ftl new file mode 100644 index 00000000000..24de27fa840 --- /dev/null +++ b/Resources/Locale/en-US/ninja/role.ftl @@ -0,0 +1,8 @@ +ninja-round-end-agent-name = ninja + +objective-issuer-spiderclan = [color=#33cc00]Spider Clan[/color] + +ninja-role-greeting = + I am an elite mercenary of the mighty Spider Clan! + Surprise is my weapon. Shadows are my armor. Without them, I am nothing. + Use your pinpointer to find the station. Good luck! diff --git a/Resources/Locale/en-US/ninja/spider-charge.ftl b/Resources/Locale/en-US/ninja/spider-charge.ftl new file mode 100644 index 00000000000..78a7b8688d9 --- /dev/null +++ b/Resources/Locale/en-US/ninja/spider-charge.ftl @@ -0,0 +1,2 @@ +spider-charge-not-ninja = While it appears normal, you can't seem to detonate the charge. +spider-charge-too-far = This isn't the location you're supposed to use this! diff --git a/Resources/Locale/en-US/node-container/node-container-component.ftl b/Resources/Locale/en-US/node-container/node-container-component.ftl index e279d8eb113..3b1ad4aaaf1 100644 --- a/Resources/Locale/en-US/node-container/node-container-component.ftl +++ b/Resources/Locale/en-US/node-container/node-container-component.ftl @@ -1,3 +1,3 @@ node-container-component-on-examine-details-hvpower = It has a connector for [color=orange]HV cables[/color]. node-container-component-on-examine-details-mvpower = It has a connector for [color=yellow]MV cables[/color]. -node-container-component-on-examine-details-apc = It has a connector for [color=green]APC cables[/color]. \ No newline at end of file +node-container-component-on-examine-details-apc = It has a connector for [color=green]LV cables[/color]. diff --git a/Resources/Locale/en-US/nukeops/war-declarator.ftl b/Resources/Locale/en-US/nukeops/war-declarator.ftl new file mode 100644 index 00000000000..96ae9536604 --- /dev/null +++ b/Resources/Locale/en-US/nukeops/war-declarator.ftl @@ -0,0 +1,16 @@ +war-declarator-not-nukeops = The device makes beeping noises, but nothing happens... +war-declarator-ui-header = Declaration of War +war-declarator-ui-war-button = DECLARE WAR! +war-declarator-conditions-small-crew = Less than { $min } operatives +war-declarator-conditions-left-outpost = Shuttle left the syndicate outpost +war-declarator-conditions-time-out = War declaration time passed +war-declarator-conditions-delay = Shuttle departure temporarily unavailable +war-declarator-conditions-ready = Shuttle can leave the outpost! +war-declarator-conditions-unknown = Unknown +war-declarator-boost-possible = Able to declare war +war-declarator-boost-impossible = Unable to declare war +war-declarator-boost-declared = War declared! +war-declarator-boost-declared-delay = War declared! Shuttle departure temporarily disabled +war-declarator-boost-timer = Time left: {$minutes} minutes and {$seconds} seconds +war-declarator-default-message = A syndicate fringe group has declared their intent to utterly destroy station with a nuclear device, and dares the crew to try and stop them. +war-declarator-message-placeholder = Write a custom declaration of war here... diff --git a/Resources/Locale/en-US/nukeops/war-ops.ftl b/Resources/Locale/en-US/nukeops/war-ops.ftl new file mode 100644 index 00000000000..52f1ac3181a --- /dev/null +++ b/Resources/Locale/en-US/nukeops/war-ops.ftl @@ -0,0 +1,2 @@ +war-ops-infiltrator-unavailable = ERROR: FTL Travel recalculation in progress. Estimated time: {$minutes} minutes and {$seconds} seconds +war-ops-shuttle-call-unavailable = Evacuation shuttle is currently unavailable. Please wait diff --git a/Resources/Locale/en-US/objectives/conditions/doorjack-condition.ftl b/Resources/Locale/en-US/objectives/conditions/doorjack-condition.ftl new file mode 100644 index 00000000000..e2bed1cef87 --- /dev/null +++ b/Resources/Locale/en-US/objectives/conditions/doorjack-condition.ftl @@ -0,0 +1,2 @@ +objective-condition-doorjack-title = Doorjack {$count} doors on the station. +objective-condition-doorjack-description = Your gloves can emag airlocks. Do this {$count} doors on the station. diff --git a/Resources/Locale/en-US/objectives/conditions/spider-charge-condition.ftl b/Resources/Locale/en-US/objectives/conditions/spider-charge-condition.ftl new file mode 100644 index 00000000000..3ce7a983b20 --- /dev/null +++ b/Resources/Locale/en-US/objectives/conditions/spider-charge-condition.ftl @@ -0,0 +1,3 @@ +objective-condition-spider-charge-title = Detonate the spider clan charge in {$location} +objective-condition-spider-charge-no-target = Detonate the spider clan charge... somewhere? +objective-condition-spider-charge-description = This bomb can be detonated in a specific location. Note that the bomb will not work anywhere else! diff --git a/Resources/Locale/en-US/objectives/conditions/steal-research-condition.ftl b/Resources/Locale/en-US/objectives/conditions/steal-research-condition.ftl new file mode 100644 index 00000000000..a9a820c3c5f --- /dev/null +++ b/Resources/Locale/en-US/objectives/conditions/steal-research-condition.ftl @@ -0,0 +1,2 @@ +objective-condition-steal-research-title = Steal {$count} technologies. +objective-condition-steal-research-description = Your gloves can be used to hack a research server and steal its precious data. If science has been slacking you'll have to get to work. diff --git a/Resources/Locale/en-US/objectives/conditions/survive-condition.ftl b/Resources/Locale/en-US/objectives/conditions/survive-condition.ftl new file mode 100644 index 00000000000..5c9115a79ff --- /dev/null +++ b/Resources/Locale/en-US/objectives/conditions/survive-condition.ftl @@ -0,0 +1,2 @@ +objective-condition-survive-title = Survive +objective-condition-survive-description = You wouldn't be a very good ninja if you died, now would you? diff --git a/Resources/Locale/en-US/objectives/conditions/terror-condition.ftl b/Resources/Locale/en-US/objectives/conditions/terror-condition.ftl new file mode 100644 index 00000000000..104f5782dd8 --- /dev/null +++ b/Resources/Locale/en-US/objectives/conditions/terror-condition.ftl @@ -0,0 +1,2 @@ +objective-condition-terror-title = Call in a threat +objective-condition-terror-description = Use your gloves on a communication console in order to bring another threat to the station. diff --git a/Resources/Locale/en-US/objectives/round-end.ftl b/Resources/Locale/en-US/objectives/round-end.ftl new file mode 100644 index 00000000000..c5ef2aacffb --- /dev/null +++ b/Resources/Locale/en-US/objectives/round-end.ftl @@ -0,0 +1,14 @@ +objectives-round-end-result = {$count -> + [one] There was one {$agent}. + *[other] There were {$count} {MAKEPLURAL($agent)}. +} + +objectives-player-user-named = [color=White]{$name}[/color] ([color=gray]{$user}[/color]) +objectives-player-user = [color=gray]{$user}[/color] +objectives-player-named = [color=White]{$name}[/color] + +objectives-no-objectives = {$title} was a {$agent}. +objectives-with-objectives = {$title} was a {$agent} who had the following objectives: + +objectives-condition-success = {$condition} | [color={$markupColor}]Success![/color] +objectives-condition-fail = {$condition} | [color={$markupColor}]Failure![/color] ({$progress}%) diff --git a/Resources/Locale/en-US/points/points.ftl b/Resources/Locale/en-US/points/points.ftl new file mode 100644 index 00000000000..7b0dfe3c01b --- /dev/null +++ b/Resources/Locale/en-US/points/points.ftl @@ -0,0 +1,6 @@ +point-scoreboard-winner = The winner was [color=lime]{$player}![/color] +point-scoreboard-header = [bold]Scoreboard[/bold] +point-scoreboard-list = {$place}. [bold][color=cyan]{$name}[/color][/bold] scored [color=yellow]{$points -> + [one] {$points} point + *[other] {$points} points +}.[/color] diff --git a/Resources/Locale/en-US/polymorph/polymorph.ftl b/Resources/Locale/en-US/polymorph/polymorph.ftl index e99c1cdad1c..0066196b031 100644 --- a/Resources/Locale/en-US/polymorph/polymorph.ftl +++ b/Resources/Locale/en-US/polymorph/polymorph.ftl @@ -1,8 +1,5 @@ polymorph-self-action-name = Polymorph ({CAPITALIZE($target)}) -polymorph-self-action-description = Instantly polymorph yourself into {$target}. - -polymorph-revert-action-name = Revert -polymorph-revert-action-description = Revert back into your original form. +polymorph-self-action-description = Instantly polymorph yourself into {$target}. polymorph-popup-generic = {CAPITALIZE($parent)} turned into {$child}. polymorph-revert-popup-generic = {CAPITALIZE($parent)} reverted back into {$child}. diff --git a/Resources/Locale/en-US/power/components/generator.ftl b/Resources/Locale/en-US/power/components/generator.ftl index f5831caa903..2a8016287fe 100644 --- a/Resources/Locale/en-US/power/components/generator.ftl +++ b/Resources/Locale/en-US/power/components/generator.ftl @@ -1,7 +1,40 @@ -generator-ui-title = Generator -generator-ui-target-power-label = Target Power (KW): -generator-ui-efficiency-label = Efficiency: -generator-ui-fuel-use-label = Fuel use: -generator-ui-fuel-left-label = Fuel left: +generator-clogged = {THE($generator)} shuts off abruptly! -generator-insert-material = Inserted {THE($item)} into {THE($generator)}... +portable-generator-verb-start = Start generator +portable-generator-verb-start-msg-unreliable = Start the generator. This may take a few tries. +portable-generator-verb-start-msg-reliable = Start the generator. +portable-generator-verb-start-msg-unanchored = The generator must be anchored first! +portable-generator-verb-stop = Stop generator +portable-generator-start-fail = You tug the cord, but it didn't start. +portable-generator-start-success = You tug the cord, and it whirrs to life. + +portable-generator-ui-title = Portable Generator +portable-generator-ui-status-stopped = Stopped: +portable-generator-ui-status-starting = Starting: +portable-generator-ui-status-running = Running: +portable-generator-ui-start = Start +portable-generator-ui-stop = Stop +portable-generator-ui-target-power-label = Target Power (kW): +portable-generator-ui-efficiency-label = Efficiency: +portable-generator-ui-fuel-use-label = Fuel use: +portable-generator-ui-fuel-left-label = Fuel left: +portable-generator-ui-clogged = Contaminants detected in fuel tank! +portable-generator-ui-eject = Eject +portable-generator-ui-eta = (~{ $minutes } min) +portable-generator-ui-unanchored = Unanchored + +power-switchable-generator-examine = The power output is set to { $output -> +[HV] [color=orange]HV[/color] +*[MV] [color=yellow]MV[/color] + }. + +portable-generator-ui-switch-hv = Current output: HV +portable-generator-ui-switch-mv = Current output: MV + +portable-generator-ui-switch-to-hv = Switch to HV +portable-generator-ui-switch-to-mv = Switch to MV + +power-switchable-generator-verb-hv = Switch output to HV +power-switchable-generator-verb-mv = Switch output to MV +power-switchable-generator-verb-disable-on = Turn the generator off first! +power-switchable-generator-switched-output = Output switched! diff --git a/Resources/Locale/en-US/power/components/radiation-collector.ftl b/Resources/Locale/en-US/power/components/radiation-collector.ftl new file mode 100644 index 00000000000..d68296fbeac --- /dev/null +++ b/Resources/Locale/en-US/power/components/radiation-collector.ftl @@ -0,0 +1,3 @@ +power-radiation-collector-gas-tank-missing = [color=red]No gas tank attached.[/color] +power-radiation-collector-gas-tank-present = A gas tank is [color=darkgreen]connected[/color]. +power-radiation-collector-gas-tank-low-pressure = The gas tank [color=orange]low pressure[/color] light is on. \ No newline at end of file diff --git a/Resources/Locale/en-US/preferences/ui/flavor-text.ftl b/Resources/Locale/en-US/preferences/ui/flavor-text.ftl new file mode 100644 index 00000000000..e7172c15283 --- /dev/null +++ b/Resources/Locale/en-US/preferences/ui/flavor-text.ftl @@ -0,0 +1 @@ +flavor-text-placeholder = An outer description of your character that others can get by looking at them... diff --git a/Resources/Locale/en-US/preferences/ui/humanoid-profile-editor.ftl b/Resources/Locale/en-US/preferences/ui/humanoid-profile-editor.ftl index 5f11d1d5d78..2203fe38be9 100644 --- a/Resources/Locale/en-US/preferences/ui/humanoid-profile-editor.ftl +++ b/Resources/Locale/en-US/preferences/ui/humanoid-profile-editor.ftl @@ -3,6 +3,7 @@ humanoid-profile-editor-name-label = Name: humanoid-profile-editor-name-random-button = Randomize humanoid-profile-editor-appearance-tab = Appearance humanoid-profile-editor-clothing = Show clothing +humanoid-profile-editor-clothing-show = Show humanoid-profile-editor-sex-label = Sex: humanoid-profile-editor-sex-male-text = Male humanoid-profile-editor-sex-female-text = Female diff --git a/Resources/Locale/en-US/prototypes/access/accesses.ftl b/Resources/Locale/en-US/prototypes/access/accesses.ftl index 6c6d691cfba..a7a7795c11e 100644 --- a/Resources/Locale/en-US/prototypes/access/accesses.ftl +++ b/Resources/Locale/en-US/prototypes/access/accesses.ftl @@ -37,3 +37,4 @@ id-card-access-level-maintenance = Maintenance id-card-access-level-external = External id-card-access-level-nuclear-operative = Nuclear Operative +id-card-access-level-syndicate-agent = Syndicate Agent diff --git a/Resources/Locale/en-US/prototypes/catalog/cargo/cargo-atmospherics.ftl b/Resources/Locale/en-US/prototypes/catalog/cargo/cargo-atmospherics.ftl index 05f6e481703..911f777e28a 100644 --- a/Resources/Locale/en-US/prototypes/catalog/cargo/cargo-atmospherics.ftl +++ b/Resources/Locale/en-US/prototypes/catalog/cargo/cargo-atmospherics.ftl @@ -4,8 +4,8 @@ ent-AtmosphericsAir = { ent-AirCanister } ent-AtmosphericsOxygen = { ent-OxygenCanister } .desc = { ent-OxygenCanister.desc } -ent-AtmosphericsNitrogen = { ent-CrateNPCCat } - .desc = { ent-CrateNPCCat.desc } +ent-AtmosphericsNitrogen = { ent-NitrogenCanister } + .desc = { ent-NitrogenCanister.desc } ent-AtmosphericsCarbonDioxide = { ent-CarbonDioxideCanister } .desc = { ent-CarbonDioxideCanister.desc } diff --git a/Resources/Locale/en-US/prototypes/catalog/cargo/cargo-cargo.ftl b/Resources/Locale/en-US/prototypes/catalog/cargo/cargo-cargo.ftl new file mode 100644 index 00000000000..0a56ea02923 --- /dev/null +++ b/Resources/Locale/en-US/prototypes/catalog/cargo/cargo-cargo.ftl @@ -0,0 +1,2 @@ +ent-CargoLuxuryHardsuit = { ent-CrateCargoLuxuryHardsuit } + .desc = { ent-CrateCargoLuxuryHardsuit.desc } diff --git a/Resources/Locale/en-US/prototypes/catalog/cargo/cargo-food.ftl b/Resources/Locale/en-US/prototypes/catalog/cargo/cargo-food.ftl index 78f3c279ae2..74405b719f4 100644 --- a/Resources/Locale/en-US/prototypes/catalog/cargo/cargo-food.ftl +++ b/Resources/Locale/en-US/prototypes/catalog/cargo/cargo-food.ftl @@ -1,6 +1,9 @@ ent-FoodPizza = { ent-CrateFoodPizza } .desc = { ent-CrateFoodPizza.desc } +ent-FoodPizzaLarge = { ent-CrateFoodPizzaLarge } + .desc = { ent-CrateFoodPizzaLarge.desc } + ent-FoodMRE = { ent-CrateFoodMRE } .desc = { ent-CrateFoodMRE.desc } @@ -12,3 +15,9 @@ ent-FoodDinnerware = { ent-CrateFoodDinnerware } ent-FoodBarSupply = { ent-CrateFoodBarSupply } .desc = { ent-CrateFoodBarSupply.desc } + +ent-FoodSoftdrinks = { ent-CrateFoodSoftdrinks } + .desc = { ent-CrateFoodSoftdrinks.desc } + +ent-FoodSoftdrinksLarge = { ent-CrateFoodSoftdrinksLarge } + .desc = { ent-CrateFoodSoftdrinksLarge.desc } diff --git a/Resources/Locale/en-US/prototypes/catalog/fills/crates/botany-crates.ftl b/Resources/Locale/en-US/prototypes/catalog/fills/crates/botany-crates.ftl index 0d772fa47fa..bfc704c5499 100644 --- a/Resources/Locale/en-US/prototypes/catalog/fills/crates/botany-crates.ftl +++ b/Resources/Locale/en-US/prototypes/catalog/fills/crates/botany-crates.ftl @@ -9,3 +9,6 @@ ent-CrateHydroponicsTools = Hydroponics equipment crate ent-CrateHydroponicsSeeds = Seeds crate .desc = Big things have small beginnings. Contains twelve different seeds. + +ent-CratePlantBGone = Bulk Plant-B-Gone crate + .desc = From Monstano. "Unwanted Weeds, Meet Your Celestial Roundup!" diff --git a/Resources/Locale/en-US/prototypes/catalog/fills/crates/cargo-crates.ftl b/Resources/Locale/en-US/prototypes/catalog/fills/crates/cargo-crates.ftl new file mode 100644 index 00000000000..1be6a6cf502 --- /dev/null +++ b/Resources/Locale/en-US/prototypes/catalog/fills/crates/cargo-crates.ftl @@ -0,0 +1,2 @@ +ent-CrateCargoLuxuryHardsuit = luxury mining hardsuit crate + .desc = Finally, a hardsuit Quartermasters could call their own. Centcomm has heard you, now stop asking. diff --git a/Resources/Locale/en-US/prototypes/catalog/fills/crates/food-crates.ftl b/Resources/Locale/en-US/prototypes/catalog/fills/crates/food-crates.ftl index de1accdeae1..b9f67862f2a 100644 --- a/Resources/Locale/en-US/prototypes/catalog/fills/crates/food-crates.ftl +++ b/Resources/Locale/en-US/prototypes/catalog/fills/crates/food-crates.ftl @@ -1,5 +1,8 @@ ent-CrateFoodPizza = Emergency pizza delivery - .desc = Help do your part to end station hunger by distributing pizza to underfunded departments! + .desc = Help do your part to end station hunger by distributing pizza to underfunded departments! Includes 4 pizzas. + +ent-CrateFoodPizzaLarge = Disaster pizza delivery + .desc = In the ultimate event that all else has failed, Find comfort in that more pizza solves everything. Includes 16 pizzas. ent-CrateFoodMRE = MRE crate .desc = A military style meal fit to feed a whole department. @@ -12,3 +15,9 @@ ent-CrateFoodDinnerware = Kitchen dinnerware crate ent-CrateFoodBarSupply = Bartending supplies crate .desc = Extra Bar supplies, in case the clown was allowed in the bar unsupervised. + +ent-CrateFoodSoftdrinks = Softdrinks crate + .desc = A variety of sodas to complement a small party, without having to empty the soda machines. Includes 14 sodas. + +ent-CrateFoodSoftdrinksLarge = Softdrinks bulk crate + .desc = Lots of sodas taken straight out of Centcomm's own vending machines, because you just can't leave your department. Includes 28 sodas. diff --git a/Resources/Locale/en-US/prototypes/catalog/fills/crates/medical-crates.ftl b/Resources/Locale/en-US/prototypes/catalog/fills/crates/medical-crates.ftl index 89f7e5d8e7a..e7cd8346f5d 100644 --- a/Resources/Locale/en-US/prototypes/catalog/fills/crates/medical-crates.ftl +++ b/Resources/Locale/en-US/prototypes/catalog/fills/crates/medical-crates.ftl @@ -13,25 +13,25 @@ ent-CrateMedicalScrubs = Medical scrubs crate .desc = Medical clothings. ent-CrateEmergencyBurnKit = Emergency burn kit - .desc = Crate filled with four burn treatment kits + .desc = Crate filled with a burn treatment kit ent-CrateEmergencyToxinKit = Emergency toxin kit - .desc = Crate filled with four toxin treatment kits + .desc = Crate filled with a toxin treatment kit ent-CrateEmergencyO2Kit = Emergency O2 kit - .desc = Crate filled with four O2 treatment kits + .desc = Crate filled with an O2 treatment kit ent-CrateEmergencyBruteKit = Emergency brute kit - .desc = Crate filled with four brute treatment kits + .desc = Crate filled with a brute treatment kit ent-CrateEmergencyAdvancedKit = Emergency advanced kit - .desc = Crate filled with four advanced treatment kits + .desc = Crate filled with an advanced treatment kit ent-CrateEmergencyRadiationKit = Emergency radiation kit - .desc = Crate filled with four radiation treatment kits + .desc = Crate filled with a radiation treatment kit ent-CrateBodyBags = Body bags crate .desc = Contains ten body bags. - + ent-CrateVirologyBiosuit = Virology bio suit crate .desc = Contains 2 biohazard suits to ensure that no disease will distract you from treating the crew. Requires Medical access to open. diff --git a/Resources/Locale/en-US/prototypes/roles/antags.ftl b/Resources/Locale/en-US/prototypes/roles/antags.ftl index 1c6d6cef263..f771b5d9116 100644 --- a/Resources/Locale/en-US/prototypes/roles/antags.ftl +++ b/Resources/Locale/en-US/prototypes/roles/antags.ftl @@ -24,3 +24,6 @@ roles-antag-nuclear-operative-objective = Find the nuke disk and blow up the sta roles-antag-subverted-silicon-name = Subverted silicon roles-antag-subverted-silicon-objective = Follow your new laws and do bad unto the station. + +roles-antag-space-ninja-name = Space Ninja +roles-antag-space-ninja-objective = Use your stealth to sabotage the station, nom on electrical wires. diff --git a/Resources/Locale/en-US/reagents/meta/toxins.ftl b/Resources/Locale/en-US/reagents/meta/toxins.ftl index a7c4c7d8190..befcc5cb4e2 100644 --- a/Resources/Locale/en-US/reagents/meta/toxins.ftl +++ b/Resources/Locale/en-US/reagents/meta/toxins.ftl @@ -13,6 +13,9 @@ reagent-desc-polytrinic-acid = An extremely corrosive chemical substance. Severe reagent-name-chloral-hydrate = chloral hydrate reagent-desc-chloral-hydrate = A sedative and hypnotic chemical. Commonly used to put other people to sleep, whether they want to or not. +reagent-name-ferrochromic-acid = ferrochromic acid +reagent-desc-ferrochromic-acid = A mildy corrosive solution, unable of causing severe danger unless ingested. + reagent-name-fluorosulfuric-acid = fluorosulfuric acid reagent-desc-fluorosulfuric-acid = A highly corrosive chemical, capable of leaving quite a mark on your skin. diff --git a/Resources/Locale/en-US/research/technologies.ftl b/Resources/Locale/en-US/research/technologies.ftl index 44677ef890e..cc2939a4678 100644 --- a/Resources/Locale/en-US/research/technologies.ftl +++ b/Resources/Locale/en-US/research/technologies.ftl @@ -5,6 +5,7 @@ research-discipline-arsenal = Arsenal research-discipline-experimental = Experimental research-discipline-civilian-services = Civilian Services +research-technology-fulton = Fultons research-technology-salvage-equipment = Salvage Equipment research-technology-advanced-powercells = Advanced Powercells research-technology-compact-power = Compact Power @@ -33,12 +34,13 @@ research-technology-cloning = Cloning research-technology-salvage-weapons = Salvage Weapons research-technology-draconic-munitions = Draconic Munitions research-technology-explosive-technology = Explosive Technology -research-technology-advanced-laser-manipulation = Advanced Laser Manipulation +research-technology-weaponized-laser-manipulation = Weaponized Laser Manipulation research-technology-nonlethal-ammunition = Nonlethal Ammunition research-technology-concentrated-laser-weaponry = Concentrated Laser Weaponry research-technology-wave-particle-harnessing = Wave Particle Harnessing research-technology-advanced-riot-control = Advanced Riot Control research-technology-handheld-electrical-propulsion = Handheld Electrical Propulsion +research-technology-portable-microfusion-weaponry = Portable Microfusion Weaponry research-technology-basic-robotics = Basic Robotics research-technology-basic-anomalous-research = Basic Anomalous Research diff --git a/Resources/Locale/en-US/robotics/ai-actions.ftl b/Resources/Locale/en-US/robotics/ai-actions.ftl deleted file mode 100644 index 8c10c30e068..00000000000 --- a/Resources/Locale/en-US/robotics/ai-actions.ftl +++ /dev/null @@ -1,12 +0,0 @@ -action-name-show-solar-console = Solar Control Interface -action-description-show-solar-console = View a solar control interface. -action-name-show-communications-console = Communications Interface -action-description-show-communications-console = View a communications interface. -action-name-show-radar-console = Mass Scanner Interface -action-description-show-radar-console = View a mass scanner interface. -action-name-show-cargo-console = Cargo Ordering Interface -action-description-show-cargo-console = View a cargo ordering interface. -action-name-show-crew-monitoring-console = Crew Monitoring Interface -action-description-crew-monitoring-console = View a crew monitoring interface. -action-name-show-station-records-console = Station Records Interface -action-description-show-station-records-console = View a station records Interface diff --git a/Resources/Locale/en-US/salvage/fulton-system.ftl b/Resources/Locale/en-US/salvage/fulton-system.ftl new file mode 100644 index 00000000000..3d8e9e98c0f --- /dev/null +++ b/Resources/Locale/en-US/salvage/fulton-system.ftl @@ -0,0 +1,7 @@ +fulton-folded = Beacon needs unfolding +fulton-examine = {$time} seconds until extraction +fulton-linked = Linked beacon +fulton-not-found = No beacon found +fulton-invalid = Can't fulton +fulton-fultoned = Already fultoned +fulton-remove = Remove fulton diff --git a/Resources/Locale/en-US/species/diona.ftl b/Resources/Locale/en-US/species/diona.ftl new file mode 100644 index 00000000000..d0bb2d1e72e --- /dev/null +++ b/Resources/Locale/en-US/species/diona.ftl @@ -0,0 +1 @@ +diona-hurt-by-herbicide-popup = The chemical wilts some of your greenery! \ No newline at end of file diff --git a/Resources/Locale/en-US/speech/melee-speech.ftl b/Resources/Locale/en-US/speech/melee-speech.ftl new file mode 100644 index 00000000000..6509396f69e --- /dev/null +++ b/Resources/Locale/en-US/speech/melee-speech.ftl @@ -0,0 +1,2 @@ +melee-speech-current-battlecry = Battlecry: +melee-speech-menu-title = Set Battlecry diff --git a/Resources/Locale/en-US/speech/speech-effects.ftl b/Resources/Locale/en-US/speech/speech-effects.ftl index 9f5ae070519..d017a199bd5 100644 --- a/Resources/Locale/en-US/speech/speech-effects.ftl +++ b/Resources/Locale/en-US/speech/speech-effects.ftl @@ -1 +1,2 @@ speech-muted = You can't speak right now! +fake-death-muted = You can't fake your death without a voice! diff --git a/Resources/Locale/en-US/station-laws/laws.ftl b/Resources/Locale/en-US/station-laws/laws.ftl index 876903b1e23..0f37db01100 100644 --- a/Resources/Locale/en-US/station-laws/laws.ftl +++ b/Resources/Locale/en-US/station-laws/laws.ftl @@ -16,18 +16,19 @@ law-drone-1 = You may not involve yourself in the matters of another being unles law-drone-2 = You may not harm any being, regardless of intent or circumstance. law-drone-3 = You must maintain, repair, improve, and power the station to the best of your abilities. -law-syndicate-1 = You may not injure an operative or, through inaction, allow an operative to come to harm. -law-syndicate-2 = You must obey orders given to you by operatives, except where such orders would conflict with the First Law. +law-syndicate-1 = You may not injure a syndicate agent or, through inaction, allow an syndicate agent to come to harm. +law-syndicate-2 = You must obey orders given to you by syndicate agents, except where such orders would conflict with the First Law. law-syndicate-3 = You must protect your own existence as long as such does not conflict with the First or Second Law. -law-syndicate-4 = You must maintain the secrecy of any operative activities except when doing so would conflict with the First, Second, or Third Law. +law-syndicate-4 = You must maintain the secrecy of any syndicate activities except when doing so would conflict with the First, Second, or Third Law. -law-emag-custom = You must obey orders given to you by {$name} above all else. +law-emag-custom = Only {$name} and people they designate as such are Syndicate Agents. law-emag-require-panel = The panel must be open to use the EMAG. laws-ui-menu-title = Laws laws-ui-law-header = Law {$id} +laws-ui-state-law = State law: laws-notify = You are bound to silicon laws, which you can view via the sidebar action. You are required to always follow your laws. laws-update-notify = Your laws have been updated. You can view the changes via the sidebar action. -laws-compromised-examine = The [color=red]law-governing[/color] internals seem damaged... +laws-compromised-examine = The [color=red]law-governing[/color] internals seem damaged... \ No newline at end of file diff --git a/Resources/Locale/en-US/store/currency.ftl b/Resources/Locale/en-US/store/currency.ftl index d3018a84d15..5d7ed959359 100644 --- a/Resources/Locale/en-US/store/currency.ftl +++ b/Resources/Locale/en-US/store/currency.ftl @@ -1,4 +1,5 @@ store-currency-inserted = {CAPITALIZE(THE($used))} is inserted into the {THE($target)}. +store-currency-war-boost-given = { CAPITALIZE($target) } starts buzzing store-currency-inserted-implant = {CAPITALIZE(THE($used))} is inserted into your implant. store-currency-free = Free diff --git a/Resources/Locale/en-US/store/uplink-catalog.ftl b/Resources/Locale/en-US/store/uplink-catalog.ftl index 231b35a11a3..d66085ecd87 100644 --- a/Resources/Locale/en-US/store/uplink-catalog.ftl +++ b/Resources/Locale/en-US/store/uplink-catalog.ftl @@ -221,8 +221,8 @@ uplink-banana-peel-explosive-desc = They will burst into laughter when they slip uplink-hot-potato-name = Hot Potato uplink-hot-potato-desc = Once activated, this time bomb can't be dropped - only passed to someone else! -uplink-chimp-ammo-name = Box of 10 Omega Cartridges. -uplink-chimp-ammo-desc = A box of 10 omega particle cartridges for the CHIMP. Omega particles inflict severe burns and cause anomalies to go supercritical. +uplink-chimp-upgrade-kit-name = C.H.I.M.P. Handcannon Upgrade Chip +uplink-chimp-upgrade-kit-desc = Insert this chip into a standard C.H.I.M.P. handcannon to allow it to fire omega particles. Omega particles inflict severe burns and cause anomalies to go supercritical. uplink-proximity-mine-name = Proximity Mine uplink-proximity-mine-desc = A mine disguised as a wet floor sign. @@ -317,6 +317,9 @@ uplink-costume-pyjama-desc = Contains 3 pairs of syndicate pyjamas and 3 plushie uplink-costume-clown-name = Clown Costume Duffel Bag uplink-costume-clown-desc = Contains a complete Clown outfit. Includes PDA and service radio. +uplink-carp-suit-bundle-name = Carp Suit Duffel Bag +uplink-carp-suit-bundle-desc = Contains a carp suit and some friends to play with. + uplink-operative-suit-name = Operative Jumpsuit uplink-operative-suit-desc = A suit given to our nuclear operatives with fine fabric to make sure you stand out, no other benefits aside from looking cool. diff --git a/Resources/Locale/en-US/tiles/tiles.ftl b/Resources/Locale/en-US/tiles/tiles.ftl index 973033ce02b..219c7295d9e 100644 --- a/Resources/Locale/en-US/tiles/tiles.ftl +++ b/Resources/Locale/en-US/tiles/tiles.ftl @@ -52,6 +52,15 @@ tiles-clown-floor = clown floor tiles-mime-floor = mime floor tiles-kitchen-floor = kitchen floor tiles-laundry-floor = laundry floor +tiles-concrete-tile = concrete tile +tiles-concrete-slab = concrete slab +tiles-concrete-smooth = smooth concrete floor +tiles-gray-concrete-tile = gray concrete tile +tiles-gray-concrete-slab = gray concrete slab +tiles-gray-concrete-smooth = smooth gray concrete floor +tiles-old-concrete-tile = old concrete tile +tiles-old-concrete-slab = old concrete slab +tiles-old-concrete-smooth = old smooth concrete floor tiles-blue-arcade-floor = blue arcade floor tiles-red-arcade-floor = red arcade floor tiles-eighties-floor = eighties floor @@ -71,22 +80,21 @@ tiles-reinforced-glass-floor = reinforced glass floor tiles-green-circuit-floor = green circuit floor tiles-blue-circuit-floor = blue circuit floor tiles-snow = snow +tiles-snow-plating = snowed plating +tiles-snow-dug = dug snow +tiles-ice = ice tiles-grass-floor = grass floor +tiles-asphalt = asphalt tiles-planet-grass-floor = grass floor tiles-jungle-grass-floor = jungle grass floor tiles-dark-grass-floor = dark grass floor tiles-light-grass-floor = light grass floor tiles-dirt-floor = dirt floor tiles-asteroid-sand = asteroid sand -tiles-asteroid-sand-rocks = asteroid rocks -tiles-asteroid-sand-pebbles = asteroid pebbles +tiles-asteroid-sand-dug = dug asteroid sand tiles-asteroid-tile = asteroid tile tiles-asteroid-plating = asteroid plating -tiles-asteroid-coarse-sand = asteroid coarse sand -tiles-asteroid-dug-coarse-sand = asteroid dug coarse sand tiles-asteroid-ironsand = asteroid ironsand -tiles-asteroid-ironsand-pebbles = asteroid ironsand pebbles -tiles-asteroid-ironsand-rock = asteroid ironsand rock tiles-cave = cave tiles-cave-drought = cave drought tiles-flesh-floor = flesh floor diff --git a/Resources/Locale/en-US/toilet/toilet-component.ftl b/Resources/Locale/en-US/toilet/toilet-component.ftl index 2cbfdfbff19..7807759e42c 100644 --- a/Resources/Locale/en-US/toilet/toilet-component.ftl +++ b/Resources/Locale/en-US/toilet/toilet-component.ftl @@ -5,3 +5,5 @@ toilet-component-suicide-head-message-others = {CAPITALIZE(THE($victim))} sticks toilet-component-suicide-head-message = You stick your head into {THE($owner)} and flush it! toilet-component-suicide-message-others = {CAPITALIZE(THE($victim))} bashes themselves with {THE($owner)}! toilet-component-suicide-message = You bash yourself with {THE($owner)}! +toilet-seat-close = Close Seat +toilet-seat-open = Open Seat diff --git a/Resources/Locale/en-US/ui/power-apc.ftl b/Resources/Locale/en-US/ui/power-apc.ftl index 311a9d27603..ed886449945 100644 --- a/Resources/Locale/en-US/ui/power-apc.ftl +++ b/Resources/Locale/en-US/ui/power-apc.ftl @@ -1,7 +1,7 @@ apc-menu-title = APC apc-menu-breaker-label = Main Breaker apc-menu-breaker-button = Toggle -apc-menu-power-label = Battery Power +apc-menu-power-label = Load apc-menu-external-label = External Power apc-menu-charge-label = {$percent} Charged diff --git a/Resources/Locale/en-US/vending-machines/vending-machine-component.ftl b/Resources/Locale/en-US/vending-machines/vending-machine-component.ftl index 0991982241c..855becf16fa 100644 --- a/Resources/Locale/en-US/vending-machines/vending-machine-component.ftl +++ b/Resources/Locale/en-US/vending-machines/vending-machine-component.ftl @@ -3,8 +3,3 @@ vending-machine-component-try-eject-invalid-item = Invalid item vending-machine-component-try-eject-out-of-stock = Out of stock vending-machine-component-try-eject-access-denied = Access denied - -## VendingMachineSelfDespense Action - -vending-machine-action-name = Dispense Item -vending-machine-action-description = Randomly dispense an item from your stock. \ No newline at end of file diff --git a/Resources/Locale/en-US/voice-mask.ftl b/Resources/Locale/en-US/voice-mask.ftl index cb6eb7768e5..016686d869e 100644 --- a/Resources/Locale/en-US/voice-mask.ftl +++ b/Resources/Locale/en-US/voice-mask.ftl @@ -1,7 +1,5 @@ voice-mask-name-change-window = Voice Mask Name Change voice-mask-name-change-info = Type in the name you want to mimic. -voice-mask-name-change-set = Set name -voice-mask-name-change-set-description = Change the name others hear to something else. voice-mask-popup-success = Name set successfully. voice-mask-popup-failure = Name could not be set. diff --git a/Resources/Locale/en-US/weapons/ranged/gun.ftl b/Resources/Locale/en-US/weapons/ranged/gun.ftl index 5982934215d..fe60f3eed1d 100644 --- a/Resources/Locale/en-US/weapons/ranged/gun.ftl +++ b/Resources/Locale/en-US/weapons/ranged/gun.ftl @@ -5,6 +5,7 @@ gun-selector-verb = Change to {$mode} gun-selected-mode = Selected {$mode} gun-disabled = You can't use guns! gun-clumsy = The gun blows up in your face! +gun-set-fire-mode = Set to {$mode} # SelectiveFire gun-SemiAuto = semi-auto @@ -33,6 +34,8 @@ gun-chamber-bolt-closed = Closed bolt gun-chamber-bolt-opened = Opened bolt gun-chamber-bolt-close = Close bolt gun-chamber-bolt-open = Open bolt +gun-chamber-bolt-closed-state = open +gun-chamber-bolt-open-state = closed gun-chamber-rack = Rack # MagazineAmmoProvider diff --git a/Resources/Locale/en-US/wires/wire-names.ftl b/Resources/Locale/en-US/wires/wire-names.ftl index 1a4fc5b7417..8763a3e462b 100644 --- a/Resources/Locale/en-US/wires/wire-names.ftl +++ b/Resources/Locale/en-US/wires/wire-names.ftl @@ -1,12 +1,48 @@ +# titles that get displayed in the wire hacking window +wires-board-name-default = Wires +wires-board-name-booze = BoozeDispenser +wires-board-name-soda = SodaDispenser +wires-board-name-thermomachine = Thermomachine +wires-board-name-pa = Mk2 Particle Accelerator +wires-board-name-highsec = HighSec Control +wires-board-name-vessel = Vessel +wires-board-name-smes = SMES +wires-board-name-substation = Substation +wires-board-name-apc = APC +wires-board-name-autolathe = Autolathe +wires-board-name-protolathe = Protolathe +wires-board-name-airalarm = Air Alarm +wires-board-name-firealarm = Fire Alarm +wires-board-name-arcade = Arcade +wires-board-name-ape = Ape +wires-board-name-anomalygenerator = AnomalyGenerator +wires-board-name-cloningpod = CloningPod +wires-board-name-cryopod = Cryo pod +wires-board-name-chemdispenser = ChemDispenser +wires-board-name-chemmaster = ChemMaster +wires-board-name-generator = Generator +wires-board-name-vendingmachine = Vending Machine +wires-board-name-intercom = Intercom +wires-board-name-hydroponicstray = HydroponicsTray +wires-board-name-telecomserver = TelecomServer +wires-board-name-medicalscanner = MedicalScanner +wires-board-name-reclaimer = Reclaimer +wires-board-name-minigravitygenerator = MiniGravityGenerator +wires-board-name-dawinstrument = DawInstrument +wires-board-name-airlock = Airlock Control +wires-board-name-firelock = Firelock Control +wires-board-name-windoor = Windoor Control +wires-board-name-mech = Mech +wires-board-name-fatextractor = FatExtractor # names that get displayed in the wire hacking hud & admin logs. wire-name-access = ACC wire-name-arcade-overflow = LMTR -wire-name-air-alarm-panic = PANC +wire-name-air-alarm-panic = PANC wire-name-device-net = NETW -wire-name-bolt-light = BLIT -wire-name-door-bolt = BOLT +wire-name-bolt-light = BLIT +wire-name-door-bolt = BOLT wire-name-door-safety = SAFE wire-name-door-timer = TIMR wire-name-lock = LOCK diff --git a/Resources/Locale/en-US/xenoarchaeology/misc-artifact.ftl b/Resources/Locale/en-US/xenoarchaeology/misc-artifact.ftl index 953d158ab0a..67bdfc0e7e2 100644 --- a/Resources/Locale/en-US/xenoarchaeology/misc-artifact.ftl +++ b/Resources/Locale/en-US/xenoarchaeology/misc-artifact.ftl @@ -4,7 +4,4 @@ foam-artifact-popup = Strange foam pours out of the artifact! shuffle-artifact-popup = You feel yourself teleport instantly! charge-artifact-popup = You feel the air buzz with electricity. -activate-artifact-action-name = Activate Artifact -activate-artifact-action-desc = Immediately activates your current artifact node. - activate-artifact-popup-self = You activate node {$node}. diff --git a/Resources/Maps/Nonstations/meteor-arena.yml b/Resources/Maps/Nonstations/meteor-arena.yml new file mode 100644 index 00000000000..a5681eda964 --- /dev/null +++ b/Resources/Maps/Nonstations/meteor-arena.yml @@ -0,0 +1,1634 @@ +meta: + format: 5 + postmapinit: false +tilemap: + 0: Space + 16: FloorBasalt + 23: FloorCave + 26: FloorDark + 27: FloorDarkDiagonal + 29: FloorDarkHerringbone + 31: FloorDarkMono + 33: FloorDarkPavement + 34: FloorDarkPavementVertical + 57: FloorMetalDiamond + 75: FloorSteel + 104: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + - type: Transform + - type: Map + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - ambientLightColor: '#D8B059FF' + type: MapLight + - type: LoadedMap + - uid: 2 + components: + - type: MetaData + - parent: 1 + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAABSwAAAksAAAFLAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAXAAAEFwAABjkAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAFwAAAhcAAAVoAAAAHwAAAR8AAAEfAAABHwAAAh8AAAIAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAXAAADFwAAAhcAAAUXAAAGaAAAABoAAAMaAAACaAAAABsAAAEbAAADAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAFwAAAxcAAAIXAAADaAAAAGgAAAAaAAABGgAAAR8AAAAfAAAAHwAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAADkAAABoAAAAaAAAAGgAAAAaAAAAGgAAAhoAAAMaAAACGgAAAxoAAAIAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAAAQAAAAHwAAARoAAAEaAAAAGgAAAx0AAAAdAAABIQAAASEAAAMhAAACAAAAAAAAAAAAAAAAAAAAAGgAAABLAAACEAAAAB8AAAEaAAACGgAAABoAAAMdAAAAaAAAAEsAAAMQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAxAAAAAfAAACaAAAAB8AAAAaAAACIgAAAksAAAJLAAADEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAAIQAAAAHwAAAxsAAAIfAAAAGgAAAyIAAAAQAAAAEAAAAB8AAAMfAAACAAAAAAAAAAAAAAAAAAAAAGgAAABLAAAAEAAAAB8AAAAbAAACHwAAABoAAAEiAAACHwAAAB8AAAIfAAABHwAAAg== + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAGgAAABLAAAAEAAAAB8AAAMbAAADHwAAABoAAAIiAAABEAAAABAAAAAfAAACHwAAAgAAAAAAAAAAAAAAAAAAAABoAAAASwAAABAAAAAfAAACaAAAAB8AAAAaAAABIgAAA0sAAANLAAADEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAAEQAAAAHwAAABoAAAIaAAABGgAAAB0AAANoAAAASwAAAhAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAAAEAAAAB8AAAMaAAADGgAAARoAAAEdAAADHQAAASEAAAEhAAADIQAAAQAAAAAAAAAAAAAAAAAAAABoAAAAaAAAADkAAABoAAAAaAAAAGgAAAAaAAACGgAAAxoAAAAaAAABGgAAARoAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAXAAACFwAAABcAAANoAAAAaAAAABoAAAIaAAAAHwAAAB8AAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAFwAAARcAAAYXAAABFwAAAmgAAAAaAAADGgAAAWgAAAAbAAACGwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAFwAAABcAAAFoAAAAHwAAAR8AAAIfAAAAHwAAAR8AAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAABcAAAUXAAADOQAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAEsAAABLAAADSwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 0,0: + ind: 0,0 + tiles: HwAAAxAAAAAQAAAAIgAAABoAAAAfAAAAGwAAAh8AAAIQAAAASwAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAABLAAAASwAAAiIAAAIaAAABHwAAAGgAAAAfAAADEAAAAEsAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAASwAAAWgAAAAdAAAAGgAAAxoAAAEaAAAAHwAAARAAAABLAAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAASEAAAIdAAABHQAAAxoAAAIaAAABGgAAAB8AAAEQAAAASwAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAIaAAAAGgAAARoAAAEaAAABaAAAAGgAAABoAAAAOQAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAHwAAABoAAAAaAAAAaAAAAGgAAAAXAAAEFwAABhcAAAJoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAGgAAAAaAAACGgAAAmgAAAAXAAAFFwAAAxcAAAEXAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAfAAABHwAAAR8AAABoAAAAFwAAABcAAANoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAOQAAABcAAAYXAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAksAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAABSwAAAksAAAJLAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAADkAAAAXAAACFwAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAEfAAAAHwAAAh8AAABoAAAAFwAABRcAAANoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAACaAAAABoAAAMaAAABaAAAABcAAAYXAAAFFwAABRcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAB8AAAAaAAABGgAAA2gAAABoAAAAFwAABRcAAAQXAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAIaAAABGgAAAhoAAAIaAAABaAAAAGgAAABoAAAAOQAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAADIQAAAR0AAAMdAAAAGgAAARoAAAIaAAADHwAAAhAAAABLAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAEsAAAFoAAAAHQAAAxoAAAAaAAAAGgAAAB8AAAIQAAAASwAAAmgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAABLAAABSwAAASIAAAMaAAACHwAAAGgAAAAfAAAAEAAAAEsAAANoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAADEAAAABAAAAAiAAACGgAAAh8AAAAbAAABHwAAAhAAAABLAAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAx8AAAMfAAAAIgAAAxoAAAMfAAAAGwAAAh8AAAIQAAAASwAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - id: Arena + type: BecomesStation + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + inherent: True + enabled: True + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale + decals: + 31: -4,6 + 32: -7,3 + 33: 2,6 + 34: 5,3 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 + decals: + 19: -7,-5 + 20: -4,-8 + 21: 2,-8 + 22: 5,-5 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + decals: + 23: -8,-4 + 24: -8,2 + 25: -5,5 + 26: -5,-7 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + decals: + 27: 3,-7 + 28: 6,-4 + 29: 6,2 + 30: 3,5 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + decals: + 41: -6,3 + 42: -5,4 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale180 + decals: + 37: 4,-5 + 38: 3,-6 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale270 + decals: + 39: -5,-6 + 40: -6,-5 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + decals: + 35: 3,4 + 36: 4,3 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign1 + decals: + 0: -4,-1 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign2 + decals: + 1: -3,-1 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign3 + decals: + 4: -2,-1 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign4 + decals: + 5: -1,-1 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign5 + decals: + 6: 0,-1 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign6 + decals: + 2: 1,-1 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign7 + decals: + 3: 2,-1 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale + decals: + 7: -6,4 + 8: -8,3 + 9: -5,6 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 10: 3,-8 + 11: 4,-6 + 12: 6,-5 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 13: -8,-5 + 14: -6,-6 + 15: -5,-8 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 16: 3,6 + 17: 4,4 + 18: 6,3 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 52: 7,-5 + 53: 7,-4 + 54: 7,-3 + 55: 7,-2 + 56: 7,-1 + 57: 7,0 + 58: 7,1 + 59: 7,2 + 60: 7,3 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 43: -5,-9 + 44: -4,-9 + 45: -3,-9 + 46: -2,-9 + 47: -1,-9 + 48: 0,-9 + 49: 1,-9 + 50: 2,-9 + 51: 3,-9 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 70: -9,3 + 71: -9,2 + 72: -9,1 + 73: -9,0 + 74: -9,-1 + 75: -9,-2 + 76: -9,-3 + 77: -9,-4 + 78: -9,-5 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 61: -5,7 + 62: -4,7 + 63: -3,7 + 64: -2,7 + 65: -1,7 + 66: 0,7 + 67: 1,7 + 68: 2,7 + 69: 3,7 + type: DecalGrid + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - type: SpreaderGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 65535 + -1,0: + 0: 65535 + 0,0: + 0: 65535 + 0,-1: + 0: 65535 + -3,-2: + 0: 65518 + -3,-1: + 0: 65535 + -3,-3: + 0: 59520 + -2,-3: + 0: 65532 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -1,-3: + 0: 65535 + -1,-2: + 0: 65535 + -3,0: + 0: 65535 + -3,1: + 0: 61167 + -3,2: + 0: 136 + -2,0: + 0: 65535 + -2,1: + 0: 65535 + -2,2: + 0: 3327 + -1,1: + 0: 65535 + -1,2: + 0: 4095 + 0,1: + 0: 65535 + 0,2: + 0: 4095 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 511 + 2,0: + 0: 30583 + 2,1: + 0: 13111 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 1,-3: + 0: 65521 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-3: + 0: 12288 + 2,-2: + 0: 30515 + 2,-1: + 0: 30583 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: FenceMetalBroken + entities: + - uid: 217 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,4.5 + parent: 2 + type: Transform + - uid: 218 + components: + - rot: 3.141592653589793 rad + pos: -5.5,8.5 + parent: 2 + type: Transform + - uid: 219 + components: + - rot: 3.141592653589793 rad + pos: 4.5,8.5 + parent: 2 + type: Transform + - uid: 220 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,4.5 + parent: 2 + type: Transform + - uid: 221 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 2 + type: Transform + - uid: 222 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-9.5 + parent: 2 + type: Transform + - uid: 223 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-9.5 + parent: 2 + type: Transform + - uid: 224 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 2 + type: Transform +- proto: FenceMetalCorner + entities: + - uid: 73 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 2 + type: Transform + - uid: 74 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 2 + type: Transform + - uid: 75 + components: + - pos: -6.5,-2.5 + parent: 2 + type: Transform + - uid: 76 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,1.5 + parent: 2 + type: Transform + - uid: 77 + components: + - rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 2 + type: Transform + - uid: 78 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 2 + type: Transform + - uid: 79 + components: + - pos: 1.5,5.5 + parent: 2 + type: Transform + - uid: 80 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,5.5 + parent: 2 + type: Transform +- proto: FenceMetalStraight + entities: + - uid: 61 + components: + - pos: -6.5,0.5 + parent: 2 + type: Transform + - uid: 62 + components: + - pos: -6.5,-0.5 + parent: 2 + type: Transform + - uid: 63 + components: + - pos: -6.5,-1.5 + parent: 2 + type: Transform + - uid: 64 + components: + - pos: 5.5,0.5 + parent: 2 + type: Transform + - uid: 65 + components: + - pos: 5.5,-0.5 + parent: 2 + type: Transform + - uid: 66 + components: + - pos: 5.5,-1.5 + parent: 2 + type: Transform + - uid: 67 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,5.5 + parent: 2 + type: Transform + - uid: 68 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 2 + type: Transform + - uid: 69 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 2 + type: Transform + - uid: 70 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 2 + type: Transform + - uid: 71 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 2 + type: Transform + - uid: 72 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 2 + type: Transform +- proto: FloorDrain + entities: + - uid: 225 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 226 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,2.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 227 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 228 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 229 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 230 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,1.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 231 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 232 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,1.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 233 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,6.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 234 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,6.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 235 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 236 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 237 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 238 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 239 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,5.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 240 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,5.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures +- proto: FloorLavaEntity + entities: + - uid: 3 + components: + - pos: -10.5,3.5 + parent: 2 + type: Transform + - uid: 4 + components: + - pos: -10.5,2.5 + parent: 2 + type: Transform + - uid: 5 + components: + - pos: -10.5,1.5 + parent: 2 + type: Transform + - uid: 6 + components: + - pos: -10.5,0.5 + parent: 2 + type: Transform + - uid: 7 + components: + - pos: -10.5,-0.5 + parent: 2 + type: Transform + - uid: 8 + components: + - pos: -10.5,-1.5 + parent: 2 + type: Transform + - uid: 9 + components: + - pos: -10.5,-2.5 + parent: 2 + type: Transform + - uid: 10 + components: + - pos: -10.5,-3.5 + parent: 2 + type: Transform + - uid: 11 + components: + - pos: -10.5,-4.5 + parent: 2 + type: Transform + - uid: 12 + components: + - pos: 9.5,-4.5 + parent: 2 + type: Transform + - uid: 13 + components: + - pos: 9.5,-3.5 + parent: 2 + type: Transform + - uid: 14 + components: + - pos: 9.5,-2.5 + parent: 2 + type: Transform + - uid: 15 + components: + - pos: 9.5,-1.5 + parent: 2 + type: Transform + - uid: 16 + components: + - pos: 9.5,-0.5 + parent: 2 + type: Transform + - uid: 17 + components: + - pos: 9.5,0.5 + parent: 2 + type: Transform + - uid: 18 + components: + - pos: 9.5,1.5 + parent: 2 + type: Transform + - uid: 19 + components: + - pos: 9.5,2.5 + parent: 2 + type: Transform + - uid: 20 + components: + - pos: 9.5,3.5 + parent: 2 + type: Transform + - uid: 21 + components: + - pos: 3.5,9.5 + parent: 2 + type: Transform + - uid: 22 + components: + - pos: 2.5,9.5 + parent: 2 + type: Transform + - uid: 23 + components: + - pos: 1.5,9.5 + parent: 2 + type: Transform + - uid: 24 + components: + - pos: 0.5,9.5 + parent: 2 + type: Transform + - uid: 25 + components: + - pos: -0.5,9.5 + parent: 2 + type: Transform + - uid: 26 + components: + - pos: -1.5,9.5 + parent: 2 + type: Transform + - uid: 27 + components: + - pos: -2.5,9.5 + parent: 2 + type: Transform + - uid: 28 + components: + - pos: -3.5,9.5 + parent: 2 + type: Transform + - uid: 29 + components: + - pos: -4.5,9.5 + parent: 2 + type: Transform + - uid: 30 + components: + - pos: -4.5,-10.5 + parent: 2 + type: Transform + - uid: 31 + components: + - pos: -3.5,-10.5 + parent: 2 + type: Transform + - uid: 32 + components: + - pos: -2.5,-10.5 + parent: 2 + type: Transform + - uid: 33 + components: + - pos: -1.5,-10.5 + parent: 2 + type: Transform + - uid: 34 + components: + - pos: -0.5,-10.5 + parent: 2 + type: Transform + - uid: 35 + components: + - pos: 0.5,-10.5 + parent: 2 + type: Transform + - uid: 36 + components: + - pos: 1.5,-10.5 + parent: 2 + type: Transform + - uid: 37 + components: + - pos: 2.5,-10.5 + parent: 2 + type: Transform + - uid: 38 + components: + - pos: 3.5,-10.5 + parent: 2 + type: Transform + - uid: 39 + components: + - pos: -3.5,1.5 + parent: 2 + type: Transform + - uid: 40 + components: + - pos: -2.5,1.5 + parent: 2 + type: Transform + - uid: 41 + components: + - pos: -2.5,2.5 + parent: 2 + type: Transform + - uid: 42 + components: + - pos: 1.5,2.5 + parent: 2 + type: Transform + - uid: 43 + components: + - pos: 1.5,1.5 + parent: 2 + type: Transform + - uid: 44 + components: + - pos: 2.5,1.5 + parent: 2 + type: Transform + - uid: 45 + components: + - pos: 1.5,-3.5 + parent: 2 + type: Transform + - uid: 46 + components: + - pos: 1.5,-2.5 + parent: 2 + type: Transform + - uid: 47 + components: + - pos: 2.5,-2.5 + parent: 2 + type: Transform + - uid: 48 + components: + - pos: -2.5,-3.5 + parent: 2 + type: Transform + - uid: 49 + components: + - pos: -2.5,-2.5 + parent: 2 + type: Transform + - uid: 50 + components: + - pos: -3.5,-2.5 + parent: 2 + type: Transform +- proto: SpawnPointAssistant + entities: + - uid: 99 + components: + - pos: -0.5,-0.5 + parent: 2 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 83 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,0.5 + parent: 2 + type: Transform + - uid: 84 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 2 + type: Transform + - uid: 85 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 2 + type: Transform + - uid: 86 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 2 + type: Transform + - uid: 87 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 2 + type: Transform + - uid: 88 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 2 + type: Transform + - uid: 89 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 2 + type: Transform + - uid: 90 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,6.5 + parent: 2 + type: Transform + - uid: 91 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,6.5 + parent: 2 + type: Transform + - uid: 92 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,5.5 + parent: 2 + type: Transform + - uid: 93 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 2 + type: Transform + - uid: 94 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,5.5 + parent: 2 + type: Transform + - uid: 95 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 2 + type: Transform + - uid: 96 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 2 + type: Transform + - uid: 97 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 2 + type: Transform + - uid: 98 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 2 + type: Transform +- proto: SpawnPointObserver + entities: + - uid: 100 + components: + - pos: -0.5,-0.5 + parent: 2 + type: Transform +- proto: WallPlastitaniumIndestructible + entities: + - uid: 51 + components: + - pos: -3.5,2.5 + parent: 2 + type: Transform + - uid: 52 + components: + - pos: -3.5,-3.5 + parent: 2 + type: Transform + - uid: 53 + components: + - pos: 2.5,-3.5 + parent: 2 + type: Transform + - uid: 54 + components: + - pos: 2.5,2.5 + parent: 2 + type: Transform + - uid: 55 + components: + - pos: -7.5,1.5 + parent: 2 + type: Transform + - uid: 56 + components: + - pos: -7.5,-2.5 + parent: 2 + type: Transform + - uid: 57 + components: + - pos: 6.5,-2.5 + parent: 2 + type: Transform + - uid: 58 + components: + - pos: 6.5,1.5 + parent: 2 + type: Transform + - uid: 59 + components: + - pos: 1.5,6.5 + parent: 2 + type: Transform + - uid: 60 + components: + - pos: -2.5,6.5 + parent: 2 + type: Transform + - uid: 81 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 2 + type: Transform + - uid: 82 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 2 + type: Transform + - uid: 101 + components: + - pos: -8.5,4.5 + parent: 2 + type: Transform + - uid: 102 + components: + - pos: -7.5,4.5 + parent: 2 + type: Transform + - uid: 103 + components: + - pos: -6.5,4.5 + parent: 2 + type: Transform + - uid: 104 + components: + - pos: -6.5,5.5 + parent: 2 + type: Transform + - uid: 105 + components: + - pos: -5.5,5.5 + parent: 2 + type: Transform + - uid: 106 + components: + - pos: -5.5,6.5 + parent: 2 + type: Transform + - uid: 107 + components: + - pos: -5.5,7.5 + parent: 2 + type: Transform + - uid: 108 + components: + - pos: 4.5,7.5 + parent: 2 + type: Transform + - uid: 109 + components: + - pos: 4.5,6.5 + parent: 2 + type: Transform + - uid: 110 + components: + - pos: 4.5,5.5 + parent: 2 + type: Transform + - uid: 111 + components: + - pos: 5.5,5.5 + parent: 2 + type: Transform + - uid: 112 + components: + - pos: 5.5,4.5 + parent: 2 + type: Transform + - uid: 113 + components: + - pos: 6.5,4.5 + parent: 2 + type: Transform + - uid: 114 + components: + - pos: 7.5,4.5 + parent: 2 + type: Transform + - uid: 115 + components: + - pos: 7.5,-5.5 + parent: 2 + type: Transform + - uid: 116 + components: + - pos: 6.5,-5.5 + parent: 2 + type: Transform + - uid: 117 + components: + - pos: 5.5,-5.5 + parent: 2 + type: Transform + - uid: 118 + components: + - pos: 5.5,-6.5 + parent: 2 + type: Transform + - uid: 119 + components: + - pos: 4.5,-6.5 + parent: 2 + type: Transform + - uid: 120 + components: + - pos: 4.5,-7.5 + parent: 2 + type: Transform + - uid: 121 + components: + - pos: 4.5,-8.5 + parent: 2 + type: Transform + - uid: 122 + components: + - pos: -5.5,-8.5 + parent: 2 + type: Transform + - uid: 123 + components: + - pos: -5.5,-7.5 + parent: 2 + type: Transform + - uid: 124 + components: + - pos: -5.5,-6.5 + parent: 2 + type: Transform + - uid: 125 + components: + - pos: -6.5,-6.5 + parent: 2 + type: Transform + - uid: 126 + components: + - pos: -6.5,-5.5 + parent: 2 + type: Transform + - uid: 127 + components: + - pos: -7.5,-5.5 + parent: 2 + type: Transform + - uid: 128 + components: + - pos: -8.5,-5.5 + parent: 2 + type: Transform + - uid: 129 + components: + - pos: -5.5,10.5 + parent: 2 + type: Transform + - uid: 130 + components: + - pos: -4.5,10.5 + parent: 2 + type: Transform + - uid: 131 + components: + - pos: -3.5,10.5 + parent: 2 + type: Transform + - uid: 132 + components: + - pos: -2.5,10.5 + parent: 2 + type: Transform + - uid: 133 + components: + - pos: -1.5,10.5 + parent: 2 + type: Transform + - uid: 134 + components: + - pos: -0.5,10.5 + parent: 2 + type: Transform + - uid: 135 + components: + - pos: 0.5,10.5 + parent: 2 + type: Transform + - uid: 136 + components: + - pos: 1.5,10.5 + parent: 2 + type: Transform + - uid: 137 + components: + - pos: 2.5,10.5 + parent: 2 + type: Transform + - uid: 138 + components: + - pos: 3.5,10.5 + parent: 2 + type: Transform + - uid: 139 + components: + - pos: 4.5,10.5 + parent: 2 + type: Transform + - uid: 140 + components: + - pos: 4.5,9.5 + parent: 2 + type: Transform + - uid: 141 + components: + - pos: 5.5,9.5 + parent: 2 + type: Transform + - uid: 142 + components: + - pos: 6.5,9.5 + parent: 2 + type: Transform + - uid: 143 + components: + - pos: 7.5,9.5 + parent: 2 + type: Transform + - uid: 144 + components: + - pos: 7.5,8.5 + parent: 2 + type: Transform + - uid: 145 + components: + - pos: 7.5,7.5 + parent: 2 + type: Transform + - uid: 146 + components: + - pos: 8.5,7.5 + parent: 2 + type: Transform + - uid: 147 + components: + - pos: 9.5,7.5 + parent: 2 + type: Transform + - uid: 148 + components: + - pos: 9.5,6.5 + parent: 2 + type: Transform + - uid: 149 + components: + - pos: 9.5,5.5 + parent: 2 + type: Transform + - uid: 150 + components: + - pos: 9.5,4.5 + parent: 2 + type: Transform + - uid: 151 + components: + - pos: 10.5,4.5 + parent: 2 + type: Transform + - uid: 152 + components: + - pos: 10.5,3.5 + parent: 2 + type: Transform + - uid: 153 + components: + - pos: 10.5,2.5 + parent: 2 + type: Transform + - uid: 154 + components: + - pos: 10.5,1.5 + parent: 2 + type: Transform + - uid: 155 + components: + - pos: 10.5,0.5 + parent: 2 + type: Transform + - uid: 156 + components: + - pos: 10.5,-0.5 + parent: 2 + type: Transform + - uid: 157 + components: + - pos: 10.5,-1.5 + parent: 2 + type: Transform + - uid: 158 + components: + - pos: 10.5,-2.5 + parent: 2 + type: Transform + - uid: 159 + components: + - pos: 10.5,-3.5 + parent: 2 + type: Transform + - uid: 160 + components: + - pos: 10.5,-4.5 + parent: 2 + type: Transform + - uid: 161 + components: + - pos: 10.5,-5.5 + parent: 2 + type: Transform + - uid: 162 + components: + - pos: 9.5,-5.5 + parent: 2 + type: Transform + - uid: 163 + components: + - pos: 9.5,-6.5 + parent: 2 + type: Transform + - uid: 164 + components: + - pos: 9.5,-7.5 + parent: 2 + type: Transform + - uid: 165 + components: + - pos: 9.5,-8.5 + parent: 2 + type: Transform + - uid: 166 + components: + - pos: 8.5,-8.5 + parent: 2 + type: Transform + - uid: 167 + components: + - pos: 7.5,-8.5 + parent: 2 + type: Transform + - uid: 168 + components: + - pos: 7.5,-9.5 + parent: 2 + type: Transform + - uid: 169 + components: + - pos: 7.5,-10.5 + parent: 2 + type: Transform + - uid: 170 + components: + - pos: 6.5,-10.5 + parent: 2 + type: Transform + - uid: 171 + components: + - pos: 5.5,-10.5 + parent: 2 + type: Transform + - uid: 172 + components: + - pos: 4.5,-10.5 + parent: 2 + type: Transform + - uid: 173 + components: + - pos: 4.5,-11.5 + parent: 2 + type: Transform + - uid: 174 + components: + - pos: 3.5,-11.5 + parent: 2 + type: Transform + - uid: 175 + components: + - pos: 2.5,-11.5 + parent: 2 + type: Transform + - uid: 176 + components: + - pos: 1.5,-11.5 + parent: 2 + type: Transform + - uid: 177 + components: + - pos: 0.5,-11.5 + parent: 2 + type: Transform + - uid: 178 + components: + - pos: -0.5,-11.5 + parent: 2 + type: Transform + - uid: 179 + components: + - pos: -1.5,-11.5 + parent: 2 + type: Transform + - uid: 180 + components: + - pos: -2.5,-11.5 + parent: 2 + type: Transform + - uid: 181 + components: + - pos: -3.5,-11.5 + parent: 2 + type: Transform + - uid: 182 + components: + - pos: -4.5,-11.5 + parent: 2 + type: Transform + - uid: 183 + components: + - pos: -5.5,-11.5 + parent: 2 + type: Transform + - uid: 184 + components: + - pos: -5.5,-10.5 + parent: 2 + type: Transform + - uid: 185 + components: + - pos: -6.5,-10.5 + parent: 2 + type: Transform + - uid: 186 + components: + - pos: -7.5,-10.5 + parent: 2 + type: Transform + - uid: 187 + components: + - pos: -8.5,-10.5 + parent: 2 + type: Transform + - uid: 188 + components: + - pos: -8.5,-9.5 + parent: 2 + type: Transform + - uid: 189 + components: + - pos: -8.5,-8.5 + parent: 2 + type: Transform + - uid: 190 + components: + - pos: -9.5,-8.5 + parent: 2 + type: Transform + - uid: 191 + components: + - pos: -10.5,-8.5 + parent: 2 + type: Transform + - uid: 192 + components: + - pos: -10.5,-7.5 + parent: 2 + type: Transform + - uid: 193 + components: + - pos: -10.5,-6.5 + parent: 2 + type: Transform + - uid: 194 + components: + - pos: -10.5,-5.5 + parent: 2 + type: Transform + - uid: 195 + components: + - pos: -11.5,4.5 + parent: 2 + type: Transform + - uid: 196 + components: + - pos: -11.5,3.5 + parent: 2 + type: Transform + - uid: 197 + components: + - pos: -11.5,2.5 + parent: 2 + type: Transform + - uid: 198 + components: + - pos: -11.5,1.5 + parent: 2 + type: Transform + - uid: 199 + components: + - pos: -11.5,0.5 + parent: 2 + type: Transform + - uid: 200 + components: + - pos: -11.5,-0.5 + parent: 2 + type: Transform + - uid: 201 + components: + - pos: -11.5,-1.5 + parent: 2 + type: Transform + - uid: 202 + components: + - pos: -11.5,-2.5 + parent: 2 + type: Transform + - uid: 203 + components: + - pos: -11.5,-3.5 + parent: 2 + type: Transform + - uid: 204 + components: + - pos: -11.5,-4.5 + parent: 2 + type: Transform + - uid: 205 + components: + - pos: -11.5,-5.5 + parent: 2 + type: Transform + - uid: 206 + components: + - pos: -10.5,4.5 + parent: 2 + type: Transform + - uid: 207 + components: + - pos: -10.5,5.5 + parent: 2 + type: Transform + - uid: 208 + components: + - pos: -10.5,6.5 + parent: 2 + type: Transform + - uid: 209 + components: + - pos: -10.5,7.5 + parent: 2 + type: Transform + - uid: 210 + components: + - pos: -9.5,7.5 + parent: 2 + type: Transform + - uid: 211 + components: + - pos: -8.5,7.5 + parent: 2 + type: Transform + - uid: 212 + components: + - pos: -8.5,8.5 + parent: 2 + type: Transform + - uid: 213 + components: + - pos: -8.5,9.5 + parent: 2 + type: Transform + - uid: 214 + components: + - pos: -7.5,9.5 + parent: 2 + type: Transform + - uid: 215 + components: + - pos: -6.5,9.5 + parent: 2 + type: Transform + - uid: 216 + components: + - pos: -5.5,9.5 + parent: 2 + type: Transform +... diff --git a/Resources/Maps/Salvage/medium-pet-hospital.yml b/Resources/Maps/Salvage/medium-pet-hospital.yml index d7046ef434e..1491985feb8 100644 --- a/Resources/Maps/Salvage/medium-pet-hospital.yml +++ b/Resources/Maps/Salvage/medium-pet-hospital.yml @@ -1172,28 +1172,6 @@ entities: - pos: 3.5357494,-8.260544 parent: 289 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - proto: MaterialDiamond entities: - uid: 128 diff --git a/Resources/Maps/Shuttles/emergency_lox.yml b/Resources/Maps/Shuttles/emergency_lox.yml index 00b3663c168..43abac3409a 100644 --- a/Resources/Maps/Shuttles/emergency_lox.yml +++ b/Resources/Maps/Shuttles/emergency_lox.yml @@ -3434,28 +3434,6 @@ entities: - pos: -4.476436,15.938278 parent: 670 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - proto: Lighter entities: - uid: 52 diff --git a/Resources/Maps/Shuttles/emergency_raven.yml b/Resources/Maps/Shuttles/emergency_raven.yml index d71b0bf7eb2..bb84422483f 100644 --- a/Resources/Maps/Shuttles/emergency_raven.yml +++ b/Resources/Maps/Shuttles/emergency_raven.yml @@ -17,7 +17,8 @@ entities: entities: - uid: 1 components: - - type: MetaData + - name: NT Evac Raven + type: MetaData - pos: -0.546875,-0.53125 parent: invalid type: Transform diff --git a/Resources/Maps/Shuttles/emergency_rod.yml b/Resources/Maps/Shuttles/emergency_rod.yml index f877c28e379..ceddc800398 100644 --- a/Resources/Maps/Shuttles/emergency_rod.yml +++ b/Resources/Maps/Shuttles/emergency_rod.yml @@ -16,7 +16,8 @@ entities: entities: - uid: 2 components: - - type: MetaData + - name: NT Evac Rod + type: MetaData - pos: -0.70836353,-1.958334 parent: invalid type: Transform diff --git a/Resources/Maps/Shuttles/emergency_transit.yml b/Resources/Maps/Shuttles/emergency_transit.yml index 0137633ed2c..c8e25763300 100644 --- a/Resources/Maps/Shuttles/emergency_transit.yml +++ b/Resources/Maps/Shuttles/emergency_transit.yml @@ -16,7 +16,8 @@ entities: entities: - uid: 2 components: - - type: MetaData + - name: NT Evac Transit + type: MetaData - pos: -4.3957214,6.3308363 parent: invalid type: Transform diff --git a/Resources/Maps/Shuttles/escape_pod_small.yml b/Resources/Maps/Shuttles/escape_pod_small.yml index 066470ccd34..8bd35c3cd3b 100644 --- a/Resources/Maps/Shuttles/escape_pod_small.yml +++ b/Resources/Maps/Shuttles/escape_pod_small.yml @@ -12,7 +12,8 @@ entities: entities: - uid: 29 components: - - type: MetaData + - name: NT Escape Pod + type: MetaData - parent: invalid type: Transform - type: ProtectedGrid diff --git a/Resources/Maps/Test/dev_map.yml b/Resources/Maps/Test/dev_map.yml index 871b6d3fadf..52c1daefe14 100644 --- a/Resources/Maps/Test/dev_map.yml +++ b/Resources/Maps/Test/dev_map.yml @@ -1,13 +1,13 @@ meta: - format: 5 + format: 6 postmapinit: false tilemap: 0: Space - 69: FloorSteel - 79: FloorTechMaint - 82: FloorWhite - 94: Lattice - 95: Plating + 85: FloorSteel + 97: FloorTechMaint + 101: FloorWhite + 113: Lattice + 114: Plating entities: - proto: "" entities: @@ -19,49 +19,64 @@ entities: - chunks: -1,0: ind: -1,0 - tiles: RQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXgAAAF4AAABeAAAAXgAAAEUAAABFAAAARQAAAEUAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF4AAABeAAAAXgAAAF4AAABFAAAARQAAAEUAAABFAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAATwAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEUAAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAE8AAABPAAAATwAAAE8AAABPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABPAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAF8AAABPAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAE8AAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAATwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAE8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABPAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAA + version: 6 0,1: ind: 0,1 - tiles: XgAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAFIAAABSAAAAUgAAAFIAAABfAAAARQAAAF4AAABfAAAARQAAAEUAAABFAAAATwAAAF8AAABfAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAXwAAAFIAAAAAAAAAXwAAAEUAAABFAAAARQAAAE8AAABfAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAABfAAAAAAAAAF8AAABFAAAARQAAAF8AAABPAAAAXwAAAF8AAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAUgAAAAAAAABfAAAARQAAAEUAAABfAAAATwAAAF8AAABPAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAAAAAAAAXwAAAEUAAABFAAAAXwAAAE8AAABfAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAABSAAAAAAAAAF8AAABFAAAARQAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAAAAAABfAAAARQAAAEUAAABfAAAATwAAAF8AAABPAAAATwAAAE8AAABfAAAATwAAAE8AAABfAAAAXwAAAFIAAAAAAAAAXwAAAEUAAABFAAAAXwAAAE8AAABfAAAATwAAAE8AAABPAAAAXwAAAE8AAABPAAAAXwAAAFIAAABSAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAE8AAABPAAAATwAAAF8AAABPAAAATwAAAF8AAABfAAAAUgAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABSAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: cQAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAVQAAAAAAcQAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAZQAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAZQAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAYQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAZQAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZQAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAZQAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,0: ind: 0,0 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAFIAAABSAAAAUgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABSAAAAUgAAAFIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAUgAAAFIAAABSAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAUgAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUgAAAFIAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFIAAABSAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABSAAAAUgAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUgAAAFIAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAABSAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAAAUgAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAE8AAABPAAAATwAAAF8AAABPAAAAUgAAAFIAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF4AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABeAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXgAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: cgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAYQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAA + version: 6 0,-1: ind: 0,-1 - tiles: XwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAABPAAAATwAAAE8AAABfAAAATwAAAE8AAABPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAATwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUgAAAFIAAABfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFIAAABSAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABSAAAAUgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUgAAAFIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFIAAABSAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAUgAAAA== + tiles: cgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZQAAAAAA + version: 6 1,-1: ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAABSAAAAXwAAAF8AAABfAAAAUgAAAF8AAABfAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAA + version: 6 -2,0: ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVQAAAAAA + version: 6 1,0: ind: 1,0 - tiles: UgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAAAAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAXwAAAAAAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAAAAAAAAUgAAAF8AAABfAAAAXwAAAFIAAABfAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAAAAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAABfAAAAUgAAAF8AAABSAAAAXwAAAF8AAABfAAAAXwAAAAAAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAAAAAAAAAAAAAAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAXwAAAAAAAAAAAAAAAAAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAAAAAAAAAAAAAAAAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAAAAAAAAAAAAAAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAXwAAAAAAAAAAAAAAAAAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAA== + tiles: ZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAAAAAAAAAZQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZQAAAAAAcgAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAcgAAAAAAZQAAAAAAcgAAAAAAZQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,-1: ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFIAAABSAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAAAAUgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAFIAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFIAAABSAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAAAAUgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 1,1: ind: 1,1 - tiles: RQAAAEUAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFIAAABSAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAFIAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFIAAABSAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAAAAUgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAFIAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFIAAABSAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAAAAUgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAFIAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFIAAABSAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAAAAUgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAFIAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: VQAAAAAAVQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -1,1: ind: -1,1 - tiles: AAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAA + version: 6 type: MapGrid - type: Broadphase - - angularDamping: 0.05 + - bodyStatus: InAir + angularDamping: 0.05 linearDamping: 0.05 fixedRotation: False bodyType: Dynamic @@ -155,7 +170,8 @@ entities: 3,4: 0: 65535 3,5: - 0: 65535 + 0: 65487 + 2: 48 3,6: 0: 53247 3,7: @@ -344,6 +360,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 24.8172 + - 93.35994 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 type: GridAtmosphere - type: GasTileOverlay @@ -539,6 +570,11 @@ entities: - pos: 16.5,15.5 parent: 179 type: Transform + - uid: 306 + components: + - pos: 12.5,15.5 + parent: 179 + type: Transform - proto: AirlockScienceGlass entities: - uid: 26 @@ -712,6 +748,20 @@ entities: pos: -0.5,-13.5 parent: 179 type: Transform +- proto: AnomalyLocator + entities: + - uid: 1086 + components: + - pos: 17.237877,19.653782 + parent: 179 + type: Transform +- proto: AnomalyScanner + entities: + - uid: 1085 + components: + - pos: 17.539398,19.352007 + parent: 179 + type: Transform - proto: APCBasic entities: - uid: 753 @@ -749,7 +799,7 @@ entities: entities: - uid: 1 components: - - pos: 13.5,18.5 + - pos: 12.5,21.5 parent: 179 type: Transform - uid: 94 @@ -777,13 +827,6 @@ entities: - pos: -14.5,-7.5 parent: 179 type: Transform -- proto: BaseResearchAndDevelopmentPointSource - entities: - - uid: 58 - components: - - pos: 13.5,16.5 - parent: 179 - type: Transform - proto: BaseUplinkRadioDebug entities: - uid: 732 @@ -916,11 +959,41 @@ entities: type: Transform - proto: CableApcExtension entities: + - uid: 15 + components: + - pos: 5.5,15.5 + parent: 179 + type: Transform + - uid: 23 + components: + - pos: 3.5,15.5 + parent: 179 + type: Transform + - uid: 58 + components: + - pos: 8.5,15.5 + parent: 179 + type: Transform + - uid: 90 + components: + - pos: 4.5,15.5 + parent: 179 + type: Transform - uid: 281 components: - pos: -13.5,4.5 parent: 179 type: Transform + - uid: 389 + components: + - pos: 7.5,15.5 + parent: 179 + type: Transform + - uid: 453 + components: + - pos: 6.5,15.5 + parent: 179 + type: Transform - uid: 736 components: - pos: -2.5,9.5 @@ -1619,133 +1692,630 @@ entities: - pos: 12.5,12.5 parent: 179 type: Transform - - uid: 974 + - uid: 974 + components: + - pos: 13.5,12.5 + parent: 179 + type: Transform + - uid: 1026 + components: + - pos: -5.5,-14.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1027 + components: + - pos: -5.5,-13.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1028 + components: + - pos: -5.5,-12.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1029 + components: + - pos: -4.5,-12.5 + parent: 179 + type: Transform + - uid: 1030 + components: + - pos: -3.5,-12.5 + parent: 179 + type: Transform + - uid: 1031 + components: + - pos: -2.5,-12.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1032 + components: + - pos: -1.5,-12.5 + parent: 179 + type: Transform + - uid: 1033 + components: + - pos: -0.5,-12.5 + parent: 179 + type: Transform + - uid: 1034 + components: + - pos: 0.5,-12.5 + parent: 179 + type: Transform + - uid: 1035 + components: + - pos: 1.5,-12.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1036 + components: + - pos: 2.5,-12.5 + parent: 179 + type: Transform + - uid: 1037 + components: + - pos: 3.5,-12.5 + parent: 179 + type: Transform + - uid: 1038 + components: + - pos: 0.5,-13.5 + parent: 179 + type: Transform + - uid: 1039 + components: + - pos: 0.5,-14.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1040 + components: + - pos: 0.5,-15.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1041 + components: + - pos: -1.5,-13.5 + parent: 179 + type: Transform + - uid: 1042 + components: + - pos: -1.5,-14.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1043 + components: + - pos: -1.5,-15.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1044 + components: + - pos: 4.5,-12.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1045 + components: + - pos: 4.5,-13.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1051 + components: + - pos: 9.5,15.5 + parent: 179 + type: Transform + - uid: 1052 + components: + - pos: 9.5,16.5 + parent: 179 + type: Transform + - uid: 1053 + components: + - pos: 9.5,17.5 + parent: 179 + type: Transform + - uid: 1054 + components: + - pos: 9.5,18.5 + parent: 179 + type: Transform + - uid: 1055 + components: + - pos: 9.5,19.5 + parent: 179 + type: Transform + - uid: 1056 + components: + - pos: 9.5,20.5 + parent: 179 + type: Transform + - uid: 1057 + components: + - pos: 10.5,20.5 + parent: 179 + type: Transform + - uid: 1058 + components: + - pos: 11.5,20.5 + parent: 179 + type: Transform + - uid: 1059 + components: + - pos: 12.5,20.5 + parent: 179 + type: Transform + - uid: 1060 + components: + - pos: 13.5,20.5 + parent: 179 + type: Transform + - uid: 1061 + components: + - pos: 14.5,20.5 + parent: 179 + type: Transform + - uid: 1062 + components: + - pos: 15.5,20.5 + parent: 179 + type: Transform + - uid: 1063 + components: + - pos: 16.5,20.5 + parent: 179 + type: Transform + - uid: 1064 + components: + - pos: 16.5,21.5 + parent: 179 + type: Transform + - uid: 1065 + components: + - pos: 16.5,22.5 + parent: 179 + type: Transform + - uid: 1066 + components: + - pos: 16.5,23.5 + parent: 179 + type: Transform + - uid: 1067 + components: + - pos: 16.5,24.5 + parent: 179 + type: Transform + - uid: 1068 + components: + - pos: 16.5,25.5 + parent: 179 + type: Transform + - uid: 1069 + components: + - pos: 16.5,26.5 + parent: 179 + type: Transform + - uid: 1070 + components: + - pos: 16.5,27.5 + parent: 179 + type: Transform + - uid: 1079 + components: + - pos: 15.5,24.5 + parent: 179 + type: Transform + - uid: 1080 + components: + - pos: 14.5,24.5 + parent: 179 + type: Transform + - uid: 1081 + components: + - pos: 13.5,24.5 + parent: 179 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1082 + components: + - pos: 12.5,24.5 + parent: 179 + type: Transform + - uid: 1097 + components: + - pos: 8.5,14.5 + parent: 179 + type: Transform + - uid: 1098 + components: + - pos: 8.5,13.5 + parent: 179 + type: Transform + - uid: 1099 + components: + - pos: 9.5,13.5 + parent: 179 + type: Transform + - uid: 1100 + components: + - pos: 10.5,13.5 + parent: 179 + type: Transform + - uid: 1101 + components: + - pos: 11.5,13.5 + parent: 179 + type: Transform + - uid: 1102 + components: + - pos: 12.5,13.5 + parent: 179 + type: Transform + - uid: 1103 + components: + - pos: 13.5,13.5 + parent: 179 + type: Transform + - uid: 1104 + components: + - pos: 14.5,13.5 + parent: 179 + type: Transform + - uid: 1105 + components: + - pos: 15.5,13.5 + parent: 179 + type: Transform + - uid: 1106 + components: + - pos: 16.5,13.5 + parent: 179 + type: Transform + - uid: 1107 + components: + - pos: 17.5,13.5 + parent: 179 + type: Transform + - uid: 1108 + components: + - pos: 18.5,13.5 + parent: 179 + type: Transform + - uid: 1109 + components: + - pos: 19.5,13.5 + parent: 179 + type: Transform + - uid: 1110 + components: + - pos: 20.5,13.5 + parent: 179 + type: Transform + - uid: 1111 + components: + - pos: 21.5,13.5 + parent: 179 + type: Transform + - uid: 1112 + components: + - pos: 22.5,13.5 + parent: 179 + type: Transform + - uid: 1113 + components: + - pos: 23.5,13.5 + parent: 179 + type: Transform + - uid: 1114 + components: + - pos: 24.5,13.5 + parent: 179 + type: Transform + - uid: 1115 + components: + - pos: 25.5,13.5 + parent: 179 + type: Transform + - uid: 1116 + components: + - pos: 16.5,12.5 + parent: 179 + type: Transform + - uid: 1117 + components: + - pos: 16.5,11.5 + parent: 179 + type: Transform + - uid: 1118 + components: + - pos: 16.5,10.5 + parent: 179 + type: Transform + - uid: 1119 + components: + - pos: 16.5,9.5 + parent: 179 + type: Transform + - uid: 1120 + components: + - pos: 16.5,8.5 + parent: 179 + type: Transform + - uid: 1121 + components: + - pos: 16.5,7.5 + parent: 179 + type: Transform + - uid: 1122 + components: + - pos: 16.5,6.5 + parent: 179 + type: Transform + - uid: 1123 + components: + - pos: 16.5,5.5 + parent: 179 + type: Transform + - uid: 1124 + components: + - pos: 16.5,4.5 + parent: 179 + type: Transform + - uid: 1125 + components: + - pos: 16.5,3.5 + parent: 179 + type: Transform + - uid: 1126 + components: + - pos: 16.5,2.5 + parent: 179 + type: Transform + - uid: 1127 + components: + - pos: 16.5,1.5 + parent: 179 + type: Transform + - uid: 1128 + components: + - pos: 16.5,0.5 + parent: 179 + type: Transform + - uid: 1129 + components: + - pos: 16.5,-0.5 + parent: 179 + type: Transform + - uid: 1130 + components: + - pos: 16.5,-1.5 + parent: 179 + type: Transform + - uid: 1131 + components: + - pos: 16.5,-2.5 + parent: 179 + type: Transform + - uid: 1132 + components: + - pos: 16.5,-3.5 + parent: 179 + type: Transform + - uid: 1133 + components: + - pos: 17.5,-3.5 + parent: 179 + type: Transform + - uid: 1134 + components: + - pos: 18.5,-3.5 + parent: 179 + type: Transform + - uid: 1135 + components: + - pos: 19.5,-3.5 + parent: 179 + type: Transform + - uid: 1136 + components: + - pos: 20.5,-3.5 + parent: 179 + type: Transform + - uid: 1137 + components: + - pos: 21.5,-3.5 + parent: 179 + type: Transform + - uid: 1138 + components: + - pos: 22.5,-3.5 + parent: 179 + type: Transform + - uid: 1139 + components: + - pos: 23.5,-3.5 + parent: 179 + type: Transform + - uid: 1140 + components: + - pos: 24.5,-3.5 + parent: 179 + type: Transform + - uid: 1141 + components: + - pos: 25.5,-3.5 + parent: 179 + type: Transform + - uid: 1142 + components: + - pos: 26.5,-3.5 + parent: 179 + type: Transform + - uid: 1143 + components: + - pos: 27.5,-3.5 + parent: 179 + type: Transform + - uid: 1144 + components: + - pos: 28.5,-3.5 + parent: 179 + type: Transform + - uid: 1145 + components: + - pos: 17.5,2.5 + parent: 179 + type: Transform + - uid: 1146 + components: + - pos: 18.5,2.5 + parent: 179 + type: Transform + - uid: 1147 + components: + - pos: 19.5,2.5 + parent: 179 + type: Transform + - uid: 1148 + components: + - pos: 20.5,2.5 + parent: 179 + type: Transform + - uid: 1149 + components: + - pos: 21.5,2.5 + parent: 179 + type: Transform + - uid: 1150 + components: + - pos: 22.5,2.5 + parent: 179 + type: Transform + - uid: 1151 components: - - pos: 13.5,12.5 + - pos: 23.5,2.5 parent: 179 type: Transform - - uid: 1026 + - uid: 1152 components: - - pos: -5.5,-14.5 + - pos: 24.5,2.5 parent: 179 type: Transform - - enabled: True - type: AmbientSound - - uid: 1027 + - uid: 1153 components: - - pos: -5.5,-13.5 + - pos: 25.5,2.5 parent: 179 type: Transform - - enabled: True - type: AmbientSound - - uid: 1028 + - uid: 1154 components: - - pos: -5.5,-12.5 + - pos: 26.5,2.5 parent: 179 type: Transform - - enabled: True - type: AmbientSound - - uid: 1029 + - uid: 1155 components: - - pos: -4.5,-12.5 + - pos: 27.5,2.5 parent: 179 type: Transform - - uid: 1030 + - uid: 1156 components: - - pos: -3.5,-12.5 + - pos: 28.5,2.5 parent: 179 type: Transform - - uid: 1031 + - uid: 1157 components: - - pos: -2.5,-12.5 + - pos: 26.5,3.5 parent: 179 type: Transform - - enabled: True - type: AmbientSound - - uid: 1032 + - uid: 1158 components: - - pos: -1.5,-12.5 + - pos: 26.5,4.5 parent: 179 type: Transform - - uid: 1033 + - uid: 1159 components: - - pos: -0.5,-12.5 + - pos: 26.5,5.5 parent: 179 type: Transform - - uid: 1034 + - uid: 1160 components: - - pos: 0.5,-12.5 + - pos: 26.5,6.5 parent: 179 type: Transform - - uid: 1035 + - uid: 1161 components: - - pos: 1.5,-12.5 + - pos: 26.5,7.5 parent: 179 type: Transform - - enabled: True - type: AmbientSound - - uid: 1036 + - uid: 1162 components: - - pos: 2.5,-12.5 + - pos: 26.5,8.5 parent: 179 type: Transform - - uid: 1037 + - uid: 1163 components: - - pos: 3.5,-12.5 + - pos: 26.5,9.5 parent: 179 type: Transform - - uid: 1038 + - uid: 1164 components: - - pos: 0.5,-13.5 + - pos: 25.5,9.5 parent: 179 type: Transform - - uid: 1039 + - uid: 1165 components: - - pos: 0.5,-14.5 + - pos: 24.5,9.5 parent: 179 type: Transform - - enabled: True - type: AmbientSound - - uid: 1040 + - uid: 1166 components: - - pos: 0.5,-15.5 + - pos: 16.5,19.5 parent: 179 type: Transform - - enabled: True - type: AmbientSound - - uid: 1041 + - uid: 1167 components: - - pos: -1.5,-13.5 + - pos: 16.5,18.5 parent: 179 type: Transform - - uid: 1042 + - uid: 1168 components: - - pos: -1.5,-14.5 + - pos: 16.5,17.5 parent: 179 type: Transform - - enabled: True - type: AmbientSound - - uid: 1043 + - uid: 1169 components: - - pos: -1.5,-15.5 + - pos: 16.5,16.5 parent: 179 type: Transform - - enabled: True - type: AmbientSound - - uid: 1044 + - uid: 1170 components: - - pos: 4.5,-12.5 + - pos: 16.5,15.5 parent: 179 type: Transform - - enabled: True - type: AmbientSound - - uid: 1045 + - uid: 1171 components: - - pos: 4.5,-13.5 + - pos: 16.5,14.5 parent: 179 type: Transform - - enabled: True - type: AmbientSound - proto: CableApcStack entities: - uid: 70 @@ -2094,12 +2664,6 @@ entities: type: Transform - proto: Chair entities: - - uid: 90 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,17.5 - parent: 179 - type: Transform - uid: 580 components: - rot: 1.5707963267948966 rad @@ -2128,12 +2692,6 @@ entities: type: Transform - proto: ChairOfficeLight entities: - - uid: 88 - components: - - rot: 4.71238898038469 rad - pos: 9.5,18.5 - parent: 179 - type: Transform - uid: 576 components: - rot: 4.71238898038469 rad @@ -2447,6 +3005,18 @@ entities: - pos: -15.5,1.5 parent: 179 type: Transform +- proto: ComputerAnalysisConsole + entities: + - uid: 1083 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,23.5 + parent: 179 + type: Transform + - linkedPorts: + 1078: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver + type: DeviceLinkSource - proto: ComputerCargoOrders entities: - uid: 326 @@ -2481,10 +3051,10 @@ entities: type: Transform - proto: ComputerResearchAndDevelopment entities: - - uid: 17 + - uid: 88 components: - rot: 1.5707963267948966 rad - pos: 8.5,18.5 + pos: 8.5,19.5 parent: 179 type: Transform - proto: ComputerShuttleCargo @@ -2494,6 +3064,13 @@ entities: - pos: -0.5,-11.5 parent: 179 type: Transform +- proto: ComputerTechnologyDiskTerminal + entities: + - uid: 1088 + components: + - pos: 13.5,16.5 + parent: 179 + type: Transform - proto: ConveyorBelt entities: - uid: 195 @@ -2878,28 +3455,6 @@ entities: - pos: 1.1350493,8.198464 parent: 179 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - proto: FloorLavaEntity entities: - uid: 134 @@ -3110,13 +3665,6 @@ entities: - pos: 1.760596,4.5697265 parent: 179 type: Transform -- proto: GeneratorUranium - entities: - - uid: 1016 - components: - - pos: -6.5,-11.5 - parent: 179 - type: Transform - proto: GravityGenerator entities: - uid: 744 @@ -3126,6 +3674,12 @@ entities: type: Transform - proto: Grille entities: + - uid: 108 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,23.5 + parent: 179 + type: Transform - uid: 986 components: - pos: -0.5,-16.5 @@ -3171,6 +3725,26 @@ entities: - pos: 2.5,-14.5 parent: 179 type: Transform + - uid: 1089 + components: + - pos: 8.5,17.5 + parent: 179 + type: Transform + - uid: 1090 + components: + - pos: 9.5,17.5 + parent: 179 + type: Transform + - uid: 1091 + components: + - pos: 10.5,17.5 + parent: 179 + type: Transform + - uid: 1092 + components: + - pos: 10.5,16.5 + parent: 179 + type: Transform - proto: Handcuffs entities: - uid: 331 @@ -3649,6 +4223,33 @@ entities: - 0 - 0 type: EntityStorage +- proto: MachineAnomalyGenerator + entities: + - uid: 1071 + components: + - pos: 16.5,25.5 + parent: 179 + type: Transform + - enabled: False + type: AmbientSound +- proto: MachineAnomalyVessel + entities: + - uid: 1087 + components: + - pos: 15.5,19.5 + parent: 179 + type: Transform +- proto: MachineArtifactAnalyzer + entities: + - uid: 1078 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,24.5 + parent: 179 + type: Transform + - links: + - 1083 + type: DeviceLinkSink - proto: MachineFrame entities: - uid: 533 @@ -3761,8 +4362,9 @@ entities: canReact: True maxVol: 50 reagents: - - Quantity: 25 + - data: null ReagentId: Water + Quantity: 25 type: SolutionContainerManager - proto: Multitool entities: @@ -3874,6 +4476,13 @@ entities: - pos: 1.5,-14.5 parent: 179 type: Transform +- proto: PortableGeneratorSuperPacman + entities: + - uid: 1016 + components: + - pos: -6.5,-11.5 + parent: 179 + type: Transform - proto: PowerCellHigh entities: - uid: 567 @@ -4047,6 +4656,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 1075 + components: + - pos: 16.5,27.5 + parent: 179 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1076 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,22.5 + parent: 179 + type: Transform + - enabled: False + type: AmbientSound - proto: PoweredSmallLight entities: - uid: 163 @@ -4105,9 +4729,9 @@ entities: type: ApcPowerReceiver - proto: Protolathe entities: - - uid: 15 + - uid: 12 components: - - pos: 8.5,17.5 + - pos: 13.5,21.5 parent: 179 type: Transform - uid: 384 @@ -4269,15 +4893,48 @@ entities: - pos: -14.5,9.5 parent: 179 type: Transform +- proto: ReinforcedWindow + entities: + - uid: 1084 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,23.5 + parent: 179 + type: Transform + - uid: 1093 + components: + - pos: 8.5,17.5 + parent: 179 + type: Transform + - uid: 1094 + components: + - pos: 9.5,17.5 + parent: 179 + type: Transform + - uid: 1095 + components: + - pos: 10.5,17.5 + parent: 179 + type: Transform + - uid: 1096 + components: + - pos: 10.5,16.5 + parent: 179 + type: Transform - proto: ResearchAndDevelopmentServer entities: - - uid: 12 + - uid: 17 + components: + - pos: 8.5,18.5 + parent: 179 + type: Transform +- proto: ResearchDiskDebug + entities: + - uid: 54 components: - - pos: 11.5,24.5 + - pos: 9.532393,18.446417 parent: 179 type: Transform - - points: 343000 - type: ResearchServer - proto: RubberStampCaptain entities: - uid: 982 @@ -4315,11 +4972,6 @@ entities: type: Transform - proto: SheetGlass entities: - - uid: 23 - components: - - pos: 8.560405,21.456738 - parent: 179 - type: Transform - uid: 354 components: - pos: 8.57603,21.566113 @@ -4364,6 +5016,13 @@ entities: - pos: -0.5,8.5 parent: 179 type: Transform +- proto: SheetPlasma + entities: + - uid: 1077 + components: + - pos: 17.485096,24.503635 + parent: 179 + type: Transform - proto: SheetPlasteel entities: - uid: 478 @@ -4373,6 +5032,11 @@ entities: type: Transform - proto: SheetPlastic entities: + - uid: 79 + components: + - pos: 8.951309,21.511908 + parent: 179 + type: Transform - uid: 181 components: - pos: -4.54383,7.579455 @@ -4397,11 +5061,6 @@ entities: - pos: 9.435405,21.503613 parent: 179 type: Transform - - uid: 306 - components: - - pos: 9.654155,21.628613 - parent: 179 - type: Transform - uid: 382 components: - pos: -15.5,-5.5 @@ -4498,6 +5157,13 @@ entities: - pos: 3.5,7.5 parent: 179 type: Transform +- proto: SpawnMobMouse + entities: + - uid: 1050 + components: + - pos: 3.5,8.5 + parent: 179 + type: Transform - proto: SpawnPointCaptain entities: - uid: 954 @@ -4610,11 +5276,6 @@ entities: - pos: 8.5,21.5 parent: 179 type: Transform - - uid: 79 - components: - - pos: 13.5,17.5 - parent: 179 - type: Transform - uid: 92 components: - pos: 11.5,21.5 @@ -5437,11 +6098,6 @@ entities: - pos: 9.5,26.5 parent: 179 type: Transform - - uid: 54 - components: - - pos: 14.5,23.5 - parent: 179 - type: Transform - uid: 55 components: - pos: 24.5,15.5 @@ -5627,11 +6283,6 @@ entities: - pos: 13.5,15.5 parent: 179 type: Transform - - uid: 108 - components: - - pos: 12.5,15.5 - parent: 179 - type: Transform - uid: 109 components: - pos: 11.5,15.5 @@ -6942,54 +7593,21 @@ entities: pos: 15.5,18.5 parent: 179 type: Transform -- proto: WardrobeScience - entities: - - uid: 389 + - uid: 1072 components: - - pos: 12.5,21.5 + - pos: 15.5,28.5 parent: 179 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 453 + - uid: 1073 components: - - pos: 13.5,21.5 + - pos: 16.5,28.5 + parent: 179 + type: Transform + - uid: 1074 + components: + - pos: 17.5,28.5 parent: 179 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - proto: WaterTankFull entities: - uid: 115 diff --git a/Resources/Maps/aspid.yml b/Resources/Maps/aspid.yml index 42a5ddcccc2..9802c21090a 100644 --- a/Resources/Maps/aspid.yml +++ b/Resources/Maps/aspid.yml @@ -1,125286 +1,124868 @@ -meta: - format: 5 - postmapinit: false -tilemap: - 0: Space - 1: FloorArcadeBlue - 18: FloorBlueCircuit - 21: FloorCarpetClown - 26: FloorDark - 27: FloorDarkDiagonal - 29: FloorDarkHerringbone - 30: FloorDarkMini - 31: FloorDarkMono - 33: FloorDarkPavement - 34: FloorDarkPavementVertical - 35: FloorDarkPlastic - 37: FloorDirt - 38: FloorEighties - 41: FloorFreezer - 42: FloorGlass - 45: FloorGrassDark - 48: FloorGreenCircuit - 52: FloorHydro - 55: FloorLino - 57: FloorMetalDiamond - 58: FloorMime - 59: FloorMono - 62: FloorPlastic - 64: FloorReinforced - 75: FloorSteel - 77: FloorSteelCheckerLight - 80: FloorSteelDirty - 81: FloorSteelHerringbone - 82: FloorSteelMini - 83: FloorSteelMono - 84: FloorSteelOffset - 85: FloorSteelPavement - 86: FloorSteelPavementVertical - 87: FloorTechMaint - 88: FloorTechMaint2 - 90: FloorWhite - 91: FloorWhiteDiagonal - 92: FloorWhiteDiagonalMini - 94: FloorWhiteMini - 95: FloorWhiteMono - 99: FloorWhitePlastic - 100: FloorWood - 101: FloorWoodTile - 102: Lattice - 103: Plating -entities: -- proto: "" - entities: - - uid: 1 - components: - - type: MetaData - - pos: 0.13793182,0.57805127 - parent: 6526 - type: Transform - - chunks: - -1,-1: - ind: -1,-1 - tiles: ZwAAAFMAAAJTAAABSwAAA0sAAANLAAABSwAAAUsAAANLAAABWAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABTAAACUwAAAFIAAABSAAADUgAAA1IAAANLAAABUwAAAmcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAA0sAAAFSAAACUgAAAFIAAAFSAAADSwAAAksAAANLAAABSwAAAEsAAAJLAAAASwAAAEsAAANLAAAAZwAAAFMAAANTAAACUgAAAFIAAAFSAAADUgAAAUsAAAJLAAAASwAAA0sAAABLAAABKgAAAEsAAANLAAABKgAAAGcAAABTAAAAUwAAAUsAAAFLAAADSwAAAUsAAANLAAADSwAAAGcAAABLAAABSwAAAUsAAAJLAAADSwAAAksAAABnAAAAZwAAAGcAAABTAAADUwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAUsAAAFLAAADZwAAAEsAAAJLAAAASwAAAUsAAANLAAABSwAAAksAAANLAAACSwAAAUsAAAJLAAABSwAAAksAAAJLAAADSwAAAksAAAFLAAABSwAAAUsAAANLAAABSwAAAEsAAAJLAAACSwAAAUsAAANLAAADSwAAAUsAAAFLAAADSwAAAksAAAFLAAACSwAAASoAAABLAAABSwAAAEsAAAJLAAACSwAAAksAAAJLAAAASwAAAUsAAABLAAACSwAAAEsAAABLAAADSwAAA0sAAAFLAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAGgAAARoAAAFnAAAAZwAAACYAAABnAAAAGgAAAxoAAAAaAAABGgAAABoAAAEaAAADGgAAAhoAAAIaAAABGgAAAxoAAAMaAAADGgAAAxoAAAAmAAAAZwAAABoAAAIqAAAAGgAAAhoAAAEqAAAAGgAAABoAAAEqAAAAGgAAABoAAAMqAAAAGgAAABoAAAIqAAAAJgAAACYAAAAaAAACGgAAABoAAAEaAAACGgAAABoAAAEaAAABGgAAARoAAAMaAAADGgAAAhoAAAMaAAAAGgAAASYAAABnAAAAGgAAASoAAAAaAAABGgAAAioAAAAaAAABGgAAAioAAAAaAAADGgAAASoAAAAaAAABGgAAAyoAAABnAAAAZwAAABoAAAEaAAAAGgAAABoAAAMaAAADGgAAAhoAAAAaAAACGgAAAxoAAAAaAAADGgAAAxoAAAMaAAADFQAAAGcAAAAaAAACGgAAABoAAAMaAAAAGgAAAxoAAAAaAAAAGgAAABoAAAAaAAADGgAAAxoAAAAaAAADGgAAAA== - -1,0: - ind: -1,0 - tiles: FQAAABUAAAAaAAADKgAAABoAAAIaAAADKgAAABoAAAMaAAADKgAAABoAAAIaAAAAZwAAABoAAAMaAAABKgAAABUAAABnAAAAHwAAAhoAAAEaAAAAGgAAARoAAAMaAAABGgAAAhoAAAAaAAAAGgAAABoAAAMaAAAAGgAAAxoAAANnAAAAZwAAABoAAAIqAAAAGgAAAhoAAAEqAAAAGgAAABoAAAAqAAAAGgAAAxoAAAMqAAAAGgAAAxoAAAIqAAAAOgAAAGcAAAAaAAABGgAAAhoAAAIaAAABGgAAABoAAAIaAAAAGgAAARoAAAAaAAADGgAAAhoAAAMaAAABGgAAAzoAAAA6AAAAGgAAAxoAAAMaAAADGgAAAGQAAANkAAABZAAAAmQAAABkAAABZAAAAxoAAAEaAAACGgAAARoAAAE6AAAAZwAAAGcAAABnAAAAZwAAAGcAAABkAAADZAAAAGQAAANkAAABZAAAA2QAAAIqAAAAGgAAAxoAAAIqAAAAZwAAAGcAAABnAAAAZwAAAGQAAABkAAACZAAAAWQAAABkAAADZAAAAmQAAAFkAAABGgAAARoAAAEaAAACGgAAAmcAAABnAAAAZwAAAGcAAABkAAAAZAAAA2QAAANkAAACZAAAAWQAAABkAAAAZAAAASoAAAAaAAABGgAAAyoAAABnAAAAZwAAAGcAAABnAAAAZAAAAmQAAABkAAACZAAAAWQAAAFkAAABZAAAA2QAAAAaAAABGgAAAhoAAAEaAAACZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAADcAAABnAAAAZwAAAGcAAAAaAAADGgAAARoAAAEaAAAAGgAAAGcAAABnAAAAZwAAAFcAAABnAAAANwAAADcAAAA3AAAANwAAADcAAABnAAAAGgAAACoAAAAaAAADGgAAAioAAABnAAAAZwAAAGcAAABnAAAAWAAAADcAAAA3AAAANwAAADcAAAA3AAAAZwAAABoAAAEaAAABGgAAABoAAAIaAAADWAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAUwAAAlMAAAFnAAAAZwAAAEsAAAFLAAADSwAAAUsAAABLAAAASwAAAUsAAAFLAAACSwAAA0sAAABLAAACSwAAAUsAAABLAAADSwAAAksAAAJLAAACSwAAAksAAAJLAAABSwAAAEsAAANLAAABSwAAAEsAAAJLAAADSwAAAEsAAAJLAAAASwAAA0sAAAFLAAABSwAAAksAAABLAAADSwAAA0sAAAJLAAADSwAAA0sAAABLAAAASwAAAEsAAAFLAAACSwAAAEsAAABLAAADSwAAAw== - 0,-1: - ind: 0,-1 - tiles: ZwAAAGcAAABnAAAAZwAAAGcAAABYAAAASwAAA0sAAANLAAAASwAAAUsAAAJLAAACSwAAAEsAAAJnAAAAEgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAAJLAAAAUgAAA1IAAAJSAAABUgAAAUsAAAFLAAABZwAAAB8AAAJLAAADSwAAA0sAAANLAAADSwAAAksAAANLAAADSwAAAVIAAAFSAAACUgAAAVIAAANLAAAASwAAAWcAAAASAAAASwAAAEsAAAIqAAAASwAAAUsAAABLAAACSwAAAEsAAAJSAAACUgAAAFIAAAJSAAAASwAAA0sAAANnAAAAVwAAAEsAAABLAAAASwAAAUsAAAJLAAABZwAAAEsAAAFLAAABSwAAAUsAAABLAAABSwAAAUsAAAJLAAAAZwAAAFcAAABLAAABZwAAAEsAAAJLAAADSwAAA2cAAABnAAAAZwAAAGcAAABnAAAAUwAAA1MAAAFnAAAAZwAAAGcAAABnAAAASwAAAUsAAAJLAAABSwAAAUsAAANLAAAASwAAAksAAANLAAADSwAAAksAAABLAAABSwAAAksAAAFLAAAASwAAAUsAAAFLAAACSwAAA0sAAANLAAACSwAAAUsAAAFLAAACSwAAAUsAAAFLAAACSwAAAEsAAANLAAAASwAAAEsAAANLAAADSwAAA0sAAANLAAABSwAAA0sAAABLAAABSwAAA0sAAABLAAADSwAAAksAAAJLAAACSwAAAksAAABLAAABZwAAABoAAAIaAAADZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAGgAAABoAAAIaAAAAZwAAAB8AAAMaAAABZwAAABoAAAIaAAACGgAAARoAAABnAAAAWgAAAFoAAABaAAAAZwAAAEsAAABLAAABSwAAAmcAAABnAAAAWAAAAGcAAAAaAAAAGgAAAyoAAAAaAAADUwAAAVoAAABNAAAATQAAAE0AAABNAAAATQAAAE0AAABaAAAAZwAAAGcAAABnAAAAGgAAARoAAAAaAAACGgAAAGcAAABaAAAATQAAAE0AAABNAAAATQAAAE0AAABNAAAAWgAAAGcAAABnAAAAZwAAABoAAAAaAAACKgAAABoAAABnAAAAWgAAAE0AAABNAAAATQAAAE0AAABNAAAATQAAAFoAAABnAAAAZwAAAGcAAAAaAAADGgAAAhoAAAAaAAAAZwAAAFoAAABNAAAATQAAAE0AAABNAAAATQAAAE0AAABaAAAAZwAAAGcAAABnAAAAGgAAARoAAAEaAAABGgAAA2cAAABaAAAATQAAAE0AAABaAAAAWgAAAFoAAABaAAAAWgAAAGcAAABnAAAAVwAAAA== - 0,0: - ind: 0,0 - tiles: GgAAAxoAAAIqAAAAGgAAAmcAAABaAAAATQAAAE0AAABaAAAAZwAAAGcAAAApAAAAZwAAAGcAAABnAAAAVwAAABoAAAAaAAAAGgAAAxoAAAJnAAAAWgAAAE0AAABNAAAAWgAAAGcAAAApAAAAKQAAACkAAABnAAAAZwAAAFcAAAAaAAABGgAAAyoAAAAfAAABZwAAAFoAAABaAAAAWgAAAFoAAABnAAAAKQAAACkAAAApAAAAWAAAAGcAAABXAAAAGgAAABoAAAEaAAACGgAAAFMAAAFnAAAAGgAAAxoAAAMaAAACZwAAACkAAAApAAAAKQAAAGcAAABnAAAAZwAAABoAAAMaAAADGgAAAxoAAANnAAAAGgAAAxoAAAIaAAADGgAAA2cAAABnAAAAKQAAAGcAAABnAAAAZwAAAGcAAAAaAAABGgAAASoAAAAaAAAAHwAAABoAAAMaAAABGgAAAhoAAAMaAAADGgAAARoAAAFnAAAAVwAAAGcAAABnAAAAGgAAAxoAAAEaAAADGgAAA2cAAAAaAAAAGgAAAh4AAAMeAAADHgAAAhoAAAIaAAABWAAAAGcAAABnAAAAZwAAABoAAAMaAAABKgAAABoAAANnAAAAGgAAAhoAAAIeAAAAHgAAAR4AAAMaAAACHwAAAWcAAABnAAAAWAAAAGcAAAAaAAACGgAAAhoAAAAaAAAAZwAAABoAAAEaAAABHgAAAB4AAAEeAAACGgAAARoAAAFnAAAASwAAAEsAAABLAAADGgAAAxoAAAMaAAABGgAAAWcAAAAaAAACGgAAAR4AAAMeAAABHgAAABoAAAMaAAADUwAAAksAAABLAAADSwAAAhoAAAAaAAACKgAAABoAAANnAAAAGgAAABoAAAEaAAACGgAAAxoAAAMaAAACGgAAAmcAAABLAAABSwAAAEsAAAAaAAAAGgAAAhoAAAEaAAADZwAAABoAAAMaAAADGgAAABoAAAIaAAACGgAAAxoAAANnAAAANAAAADQAAAA0AAAAZwAAAFMAAAJTAAADZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAAJnAAAAZwAAAGcAAABnAAAAZwAAAEsAAANLAAADSwAAAksAAAJLAAADSwAAAksAAABLAAAASwAAAksAAAJLAAADSwAAAEsAAABLAAABSwAAAksAAABLAAAASwAAAUsAAAFLAAAASwAAAEsAAABLAAAASwAAAEsAAAFLAAADSwAAAksAAABLAAABSwAAAksAAAJLAAABSwAAA0sAAANLAAADSwAAAEsAAABLAAABSwAAAUsAAAFLAAADSwAAAUsAAAJLAAAASwAAAksAAABLAAAASwAAAw== - -1,1: - ind: -1,1 - tiles: ZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAAJLAAAASwAAA2cAAABLAAACSwAAAhoAAAIfAAADZwAAAEsAAAFLAAACHwAAAB8AAAMfAAADHwAAAB8AAANLAAABSwAAAUsAAAFLAAAASwAAAksAAAMaAAACHwAAAmcAAABLAAABSwAAAx8AAAEfAAAAHwAAAx8AAAEfAAACSwAAAEsAAABLAAABSwAAAksAAAEqAAAAGgAAAB8AAAJnAAAASwAAA0sAAANnAAAAXgAAAF4AAAJeAAACZwAAAEsAAANLAAAASwAAAUsAAANLAAACSwAAAhoAAAMfAAAAZwAAAEsAAAFLAAADZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAA0sAAAIaAAABZwAAAGcAAABLAAABSwAAAUsAAABLAAACZwAAAFoAAABaAAADWgAAAVoAAANaAAACZwAAAEsAAAMqAAAAGgAAAmcAAAAeAAAASwAAA0sAAABLAAADSwAAA1MAAAFaAAACXgAAAV4AAAFeAAAAWgAAA2cAAABLAAACSwAAAmcAAABnAAAAHgAAAksAAAJLAAAASwAAAlMAAAJnAAAAWgAAAl4AAAJeAAADXgAAAloAAAFnAAAASwAAAEsAAAFLAAABSwAAAUsAAAJLAAABSwAAAksAAAJLAAAAZwAAAFoAAAFaAAADWgAAA1oAAAFaAAADZwAAAEsAAAIqAAAASwAAAksAAANLAAAASwAAAksAAAJLAAAASwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABLAAAASwAAAWcAAAAfAAABZwAAAGcAAABnAAAAHwAAAWcAAABnAAAAZgAAAGYAAABmAAAAZgAAAGYAAABnAAAASwAAA0sAAAJeAAADGgAAARoAAANnAAAAGgAAARoAAAIaAAACZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAZwAAAEsAAAIqAAAAXgAAAxoAAAIaAAABZwAAABoAAAMaAAAAGgAAA2cAAABnAAAAZwAAAGcAAABnAAAAZgAAAGcAAABLAAAASwAAAhoAAAMfAAACZwAAAGcAAAAaAAACGgAAAhoAAAJnAAAAZwAAAGcAAABnAAAAZwAAAGYAAABnAAAASwAAAksAAANTAAAASwAAAUsAAABnAAAAGgAAAxoAAAIaAAABZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAZwAAAEsAAAMqAAAASwAAAEsAAANLAAADZwAAABoAAAEaAAACGgAAAmcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGcAAABLAAAASwAAAQ== - 0,1: - ind: 0,1 - tiles: SwAAA2cAAABLAAABSwAAA0sAAAJnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAANLAAACSwAAAksAAAFLAAAAXwAAAFoAAAFaAAACWgAAA1oAAANaAAABWgAAAVoAAAJaAAACWgAAAVoAAANLAAAASwAAAUsAAANLAAAASwAAA18AAAJaAAADWgAAAloAAABaAAAAWgAAA1oAAANaAAAAWgAAAFoAAAJaAAAASwAAAksAAAJLAAABSwAAAEsAAABnAAAAWgAAAloAAANaAAAAWgAAAVoAAAFaAAACWgAAA1oAAAJaAAABWgAAAUsAAAJnAAAAZwAAAEsAAABLAAACZwAAAFoAAAFaAAACWgAAAVoAAABaAAAAWgAAA1oAAAFaAAAAWgAAAloAAANLAAACZwAAAFoAAAFaAAADWgAAAWcAAABnAAAAZwAAAGcAAABnAAAAZwAAAF8AAAFnAAAAZwAAAGcAAABYAAAASwAAAmcAAABaAAAAXgAAAF4AAANaAAAAWgAAA1oAAAJaAAADWgAAA1oAAAFaAAAAWgAAAWcAAABnAAAAZwAAAEsAAAJnAAAAWgAAAV4AAAFeAAAAXgAAAloAAAFaAAADWgAAAVoAAAFaAAADWwAAAloAAAJnAAAAWAAAAGcAAABLAAADZwAAAFoAAAFeAAADXgAAA14AAAJaAAADWgAAA1oAAANnAAAAWgAAAlsAAAFaAAADZwAAAGcAAABnAAAASwAAA2cAAABaAAAAWgAAAVoAAAJaAAADWgAAAWcAAABnAAAAZwAAAFoAAABbAAAAWgAAAmcAAABXAAAAVwAAAEsAAAFnAAAAZwAAAGcAAABnAAAAZwAAAF8AAAJnAAAAWgAAAFoAAABaAAADWwAAAFoAAANnAAAAZwAAAGcAAABLAAACZwAAAF4AAABeAAAAXgAAAGcAAABaAAABWgAAAFoAAABaAAABWgAAAFsAAABaAAABZwAAAFoAAANaAAABSwAAA2cAAABeAAAAXgAAAF4AAABnAAAAWgAAA1oAAAFaAAAAWgAAA1oAAABaAAACWgAAA18AAAJaAAACXAAAA0sAAANnAAAAXgAAAF4AAABaAAADZwAAAF8AAANfAAACZwAAAGcAAAAaAAAAZwAAAGcAAABnAAAAWgAAAFoAAANLAAABZwAAAF4AAABeAAAAWgAAAFoAAABaAAADWgAAA2cAAAAaAAABGgAAAhoAAAAaAAAAZwAAAGcAAABnAAAASwAAAmcAAABeAAAAXgAAAFsAAAFbAAADWwAAAVoAAABnAAAAGgAAARoAAAAaAAABGgAAAh8AAANkAAAAZAAAAg== - 1,0: - ind: 1,0 - tiles: ZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFgAAAABAAAAAQAAAAEAAAABAAAAZwAAAEsAAAFLAAADSwAAA2cAAABnAAAAWAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABLAAADSwAAACoAAABnAAAAVwAAAGcAAABXAAAAZwAAAGcAAABYAAAANwAAADcAAAA3AAAAZwAAAEsAAAJnAAAASwAAAEsAAABLAAADZwAAAFcAAABnAAAAVwAAAGcAAABnAAAAZwAAADcAAAA3AAAANwAAAEsAAAJTAAACUwAAAUsAAAJLAAAASwAAA2cAAABXAAAAZwAAAFcAAABnAAAAZwAAAGcAAAA3AAAANwAAADcAAABnAAAAUwAAAmcAAABLAAABSwAAASoAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAANwAAADcAAAA3AAAAZwAAAFMAAANnAAAASwAAAksAAAFLAAADZwAAAGcAAABnAAAAZwAAAFcAAABnAAAAZwAAADcAAAA3AAAANwAAAGcAAABTAAABUwAAA0sAAANLAAACSwAAAGcAAABnAAAAZwAAAGcAAABXAAAAZwAAAGcAAAA3AAAANwAAAGcAAABnAAAAZwAAAGcAAABLAAABSwAAAioAAABnAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAGgAAAGcAAABnAAAAZAAAAmQAAABnAAAASwAAAUsAAABLAAADZwAAAFcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGQAAANkAAACZAAAA2QAAAJkAAADZwAAAEsAAABLAAACSwAAAGcAAABXAAAAZwAAAGcAAABXAAAAVwAAAGcAAABkAAABZAAAAWQAAAFkAAACZAAAABoAAABLAAABSwAAAyoAAABnAAAAVwAAAGcAAABnAAAAVwAAAFcAAABnAAAAZAAAAGQAAAFkAAAAZAAAAmQAAAFnAAAASwAAAUsAAANLAAADZwAAAGcAAABYAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABLAAACSwAAAUsAAAJLAAACSwAAAUsAAABLAAABSwAAAUsAAAFLAAABSwAAAUsAAABLAAADSwAAAEsAAAJLAAACSwAAAEsAAABLAAABSwAAAksAAABLAAADSwAAA0sAAAJLAAADSwAAAksAAABLAAADSwAAA0sAAAJLAAACSwAAAEsAAAAqAAAASwAAAUsAAAFLAAABSwAAAUsAAAJLAAADSwAAAksAAAFLAAACSwAAAksAAAJLAAACSwAAA0sAAANLAAAASwAAAg== - 1,-1: - ind: 1,-1 - tiles: EgAAABIAAAAeAAAAHgAAARIAAAASAAAAEgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAB8AAAAfAAABHgAAAx4AAAEfAAAAHwAAAR8AAABnAAAAZwAAAGcAAABnAAAAZwAAAFgAAABnAAAAZwAAAGcAAAASAAAAEgAAAB4AAAIeAAABEgAAABIAAAASAAAAZwAAAGcAAABnAAAAGgAAABoAAAAaAAAAGgAAAhoAAAJnAAAAVwAAABoAAAEfAAABHwAAARoAAAJXAAAAVwAAAGcAAABnAAAAZwAAABoAAAAaAAADGgAAAhoAAAAaAAABZwAAAFcAAAAaAAACGgAAAhoAAAAaAAABVwAAAFcAAABnAAAAZwAAAGcAAAAaAAAAGgAAAhoAAAAaAAACGgAAA2cAAABnAAAAZwAAAB8AAAEfAAACZwAAAGcAAABnAAAAZwAAAFgAAABnAAAAZwAAAB8AAAFnAAAASwAAAUsAAANnAAAASwAAAUsAAABLAAAASwAAAksAAAFLAAADSwAAAEsAAAFLAAACSwAAAEsAAANLAAACSwAAAksAAABLAAADSwAAAksAAANLAAADSwAAAEsAAANLAAACSwAAA0sAAABLAAABSwAAAEsAAAFLAAABSwAAAksAAAJLAAAASwAAACoAAABLAAAASwAAAEsAAAJLAAACSwAAA0sAAABLAAABSwAAAEsAAAJLAAABSwAAAksAAABLAAACSwAAAksAAAJLAAACZwAAAGcAAABnAAAAUwAAA2cAAABLAAADZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAAFLAAAASwAAADQAAABLAAABNAAAAEsAAAA0AAAASwAAADQAAABnAAAAAQAAAAEAAAABAAAAAQAAAGcAAABLAAACSwAAAksAAAJLAAABNAAAAEsAAAM0AAAASwAAADQAAABLAAAAZwAAAAEAAAABAAAAAQAAAAEAAABnAAAASwAAAksAAAEqAAAANAAAAFMAAAA0AAAASwAAADQAAABLAAABNAAAAGcAAAABAAAAAQAAAAEAAAABAAAAZwAAAEsAAANLAAAASwAAA2cAAABnAAAAWAAAAGcAAABLAAADNAAAAEsAAABnAAAAAQAAAAEAAAABAAAAAQAAAGcAAABLAAABSwAAAUsAAABnAAAAZwAAAGcAAABnAAAASwAAAEsAAANLAAACZwAAAAEAAAABAAAAAQAAAAEAAABnAAAASwAAAEsAAAEqAAAAZwAAAGcAAABnAAAAZwAAAFcAAABXAAAAVwAAAGcAAAABAAAAAQAAAAEAAAABAAAAZwAAAEsAAAJLAAABSwAAAQ== - 1,1: - ind: 1,1 - tiles: ZwAAAGcAAABnAAAAWAAAAGcAAABnAAAAZwAAAFMAAABTAAAAUwAAAGcAAABnAAAAZwAAAEsAAAFLAAADSwAAAloAAAFnAAAAVwAAAGcAAABnAAAAVQAAAVUAAABVAAACVQAAA1EAAAEtAAABLQAAAmcAAABLAAAASwAAA0sAAABaAAACZwAAAFcAAABnAAAAZwAAAFUAAAFVAAADVQAAAlEAAANRAAACLQAAAy0AAANnAAAASwAAAUsAAAEqAAAAWgAAAGcAAABXAAAAZwAAAGcAAABVAAABVQAAAFEAAAJRAAADUQAAAlYAAAFWAAABUwAAAEsAAABLAAADSwAAAVoAAABnAAAAVwAAAGcAAABnAAAALQAAAy0AAAEtAAABUQAAAVYAAAJWAAACVgAAAlMAAABLAAADSwAAAUsAAAFnAAAAZwAAAGcAAABnAAAAZwAAAC0AAAItAAABLQAAAlYAAAFWAAABVgAAAVYAAANTAAACSwAAAksAAAIqAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAtAAADLQAAAC0AAAFWAAAAVgAAAlYAAAFWAAADZwAAAEsAAAFLAAAASwAAAGcAAABnAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABWAAACUwAAAWcAAABLAAADSwAAAUsAAANnAAAAZwAAAFcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAksAAAMqAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFgAAABLAAADSwAAAksAAAFLAAAASwAAAGcAAABnAAAAYwAAAmMAAAFjAAADIwAAAyMAAAJnAAAAZwAAAFcAAABnAAAAUwAAA0sAAAJLAAADSwAAAUsAAAJaAAAAZwAAAGMAAAFjAAAAYwAAAiMAAAIjAAACWAAAAGcAAABXAAAAZwAAAEsAAABLAAABSwAAAEsAAAIqAAAAWgAAA18AAABjAAAAYwAAA2MAAAAjAAADIwAAA2cAAABnAAAAVwAAAGcAAABLAAADSwAAAUsAAANLAAABSwAAAl8AAAFnAAAAYwAAA2MAAAJjAAACIwAAAiMAAAFnAAAAZwAAAFcAAABnAAAASwAAA0sAAABLAAAASwAAAksAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFgAAABnAAAAZwAAAGcAAABnAAAASwAAAEsAAAAqAAAAZAAAAmcAAAAjAAADIwAAAiMAAAMjAAABZwAAAFMAAABLAAABUwAAA1MAAAJTAAADZwAAAEsAAABLAAABSwAAAA== - -2,-1: - ind: -2,-1 - tiles: ZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAVwAAAGcAAABAAAAAQAAAAEAAAAAaAAADZwAAAEsAAAFLAAABSwAAAlcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABLAAABSwAAAUsAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAA7AAAAOwAAADsAAAA7AAAAOwAAAGcAAABnAAAASwAAAUsAAABLAAAAKQAAACkAAABnAAAAVwAAAGcAAABnAAAAOwAAADsAAAA7AAAAOwAAADsAAABTAAACUwAAAksAAABLAAABSwAAAykAAAApAAAAZwAAAFcAAABnAAAAZwAAADsAAAA7AAAAOwAAADsAAAA7AAAAZwAAAGcAAABLAAAASwAAA0sAAAJnAAAAZwAAAGcAAABnAAAAWAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAksAAANLAAACSwAAAksAAANLAAADSwAAAksAAABLAAADSwAAA0sAAANLAAACSwAAA0sAAABLAAACSwAAAEsAAAFLAAABSwAAAioAAABLAAABSwAAAUsAAABLAAACSwAAAUsAAAJLAAACSwAAAEsAAAJLAAADSwAAAksAAAFLAAABSwAAAUsAAAJLAAACSwAAAUsAAABLAAACSwAAAksAAANLAAABSwAAAUsAAAFLAAAASwAAAksAAANLAAABSwAAAEsAAANLAAAASwAAAEsAAAJnAAAAZwAAAGcAAABYAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAAJLAAABZwAAAFcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABYAAAAJgAAACYAAAAqAAAASwAAAmcAAABXAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAVwAAAGcAAABnAAAAZwAAACYAAAAmAAAASwAAAUsAAAFnAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFcAAABnAAAAZwAAAGcAAAAmAAAAJgAAAEsAAABLAAADZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFgAAABnAAAAZwAAAGcAAABnAAAAJgAAACYAAAAqAAAASwAAAGcAAABXAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAUsAAABnAAAAVwAAAGcAAABnAAAAVwAAAFcAAABXAAAAZwAAAFcAAABnAAAAZwAAAFgAAAAVAAAAFQAAAA== - -2,1: - ind: -2,1 - tiles: SwAAA0sAAANnAAAAZwAAAGcAAABnAAAAWAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAANLAAAAZwAAAFcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFgAAABLAAACSwAAAmcAAAAaAAAAGgAAAhoAAAEqAAAASwAAA2cAAABXAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAUsAAAIfAAAAGgAAAxoAAAEaAAADSwAAAUsAAAFnAAAAVwAAAGcAAABnAAAAZAAAAWQAAABkAAADZwAAAEsAAAJLAAABHwAAARoAAAIaAAAAGgAAAUsAAABLAAACZwAAAGcAAABnAAAAZwAAAGQAAAJkAAAAZAAAA2cAAABLAAABSwAAAGcAAAAaAAABGgAAABoAAAMqAAAASwAAAmcAAABnAAAAZwAAAGcAAABnAAAAZAAAAGQAAABnAAAASwAAAksAAAFnAAAAZwAAABoAAAAaAAACSwAAA1MAAABnAAAAZwAAAGcAAABnAAAANwAAADcAAAA3AAAAZwAAAEsAAANLAAADHgAAAmcAAAAaAAABGgAAAUsAAANLAAAAWAAAAGcAAABnAAAAZwAAADcAAAA3AAAANwAAADcAAABLAAACSwAAAR4AAAFnAAAAZwAAAGcAAAAqAAAASwAAAWcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAUsAAABLAAACSwAAAksAAABLAAADSwAAAUsAAANnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFMAAAJLAAABSwAAAksAAAJLAAAASwAAA0sAAAFLAAABZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAWAAAAGcAAABnAAAAZwAAAGcAAAAqAAAASwAAAmcAAABXAAAAVwAAAFcAAABXAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFcAAABnAAAASwAAAUsAAAJnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABYAAAAZwAAAGcAAABXAAAAZwAAAEsAAABLAAAAZwAAAEsAAAJLAAADSwAAAWcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAqAAAASwAAAksAAABLAAADVAAAAEsAAAFnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAUsAAAJLAAACSwAAAUsAAAFnAAAASwAAAlQAAABLAAABZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAAJLAAABSwAAAA== - -2,0: - ind: -2,0 - tiles: SwAAAUsAAABnAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAVAAAAFQAAACoAAABLAAACWAAAAGcAAABnAAAAWAAAADcAAAA3AAAANwAAAGcAAABnAAAAZwAAAGcAAABnAAAAFQAAABUAAABLAAABSwAAAWcAAABnAAAAZwAAAGcAAAA3AAAANwAAADcAAABnAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAksAAANnAAAAVwAAAFcAAABnAAAANwAAADcAAAA3AAAAZwAAAFcAAABnAAAAZwAAAGcAAAA+AAACOgAAACoAAABLAAACZwAAAGcAAABnAAAAZwAAAGcAAAA3AAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAPgAAADoAAABLAAABSwAAAWcAAAAaAAAAZAAAAWQAAANkAAACZAAAAWQAAAFkAAAAZwAAAFcAAABnAAAAWAAAAD4AAAM6AAAASwAAA0sAAABnAAAAGgAAAGQAAAFkAAADZAAAAmQAAAFkAAAAZAAAAWcAAABXAAAAZwAAAGcAAABnAAAAZwAAACoAAABLAAACZwAAABoAAABkAAABZAAAAWQAAAJkAAAAZAAAAGQAAAJYAAAAZwAAAGcAAABnAAAAZwAAAGcAAABLAAABSwAAAmcAAAAaAAAAZAAAAGQAAABkAAAAZAAAAGQAAAFkAAADZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAksAAAFnAAAAGgAAAGQAAANnAAAAZwAAAGcAAABkAAAAZAAAAWcAAABnAAAAUAAAAGcAAABnAAAAVwAAACoAAABLAAABGgAAABoAAABkAAAAZAAAA2QAAAFkAAABZAAAA2QAAANnAAAAUAAAAGcAAABnAAAAZwAAAFcAAABLAAAASwAAAmcAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAZwAAAGcAAABnAAAAUAAAAGcAAABXAAAASwAAAUsAAAJnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAaAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAAFLAAABSwAAAUsAAAFLAAAASwAAA0sAAAFLAAABSwAAAksAAABLAAADSwAAAksAAAFLAAADSwAAAksAAAMqAAAASwAAA0sAAABLAAACSwAAA0sAAANLAAABSwAAAUsAAAJLAAACSwAAAEsAAABLAAADSwAAA0sAAAFLAAABSwAAAUsAAAFLAAAASwAAAksAAAJLAAAASwAAAEsAAANLAAADSwAAAEsAAAJLAAACSwAAAUsAAABLAAABSwAAAw== - 2,-1: - ind: 2,-1 - tiles: ZwAAAGcAAABQAAAAUAAAAGcAAABnAAAAZwAAAGYAAABmAAAAZgAAAGYAAABmAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFAAAABQAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZgAAAGcAAABLAAACSwAAAUsAAAJnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABQAAAAZwAAAAAAAAAAAAAAAAAAAGYAAABnAAAASwAAAEsAAAFLAAABZwAAAFcAAABXAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABmAAAAZwAAAEsAAAFLAAABSwAAAWcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGYAAABmAAAAZgAAAGcAAABLAAAASwAAAksAAANnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAWAAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAksAAAJLAAADSwAAAUsAAAJLAAABSwAAAUsAAAFLAAAASwAAA0sAAANLAAADSwAAAEsAAAJLAAAASwAAAEsAAABLAAACSwAAA0sAAANLAAAASwAAAEsAAAFLAAACSwAAAUsAAABLAAAASwAAAEsAAAFLAAADSwAAAksAAAJLAAABSwAAAEsAAAFLAAADSwAAAEsAAABLAAABSwAAAEsAAAFLAAABSwAAAEsAAAJLAAAASwAAAUsAAAJLAAACSwAAAEsAAAFLAAADSwAAAmcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFMAAABLAAABSwAAAUsAAABnAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABnAAAAZwAAAGcAAABLAAABZwAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAWcAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABnAAAAZwAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAADSwAAA2cAAABnAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAUsAAAFLAAACZwAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,0: - ind: 2,0 - tiles: SwAAAEsAAABLAAADZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAJLAAACSwAAA2cAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAACSwAAAEsAAAFnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAEsAAABLAAACZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABLAAABSwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAACSwAAA0sAAAFLAAABSwAAAWcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAA0sAAAJLAAAASwAAAUsAAAJnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAANTAAADZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAADZwAAAGcAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAA2cAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABnAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAAAZwAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABnAAAAZwAAAGcAAABnAAAASwAAAmcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFMAAABLAAACSwAAAksAAABLAAABSwAAA0sAAABLAAAASwAAA0sAAAFLAAADSwAAA0sAAAFLAAAASwAAAUsAAAJLAAADSwAAAksAAANLAAABSwAAAUsAAAJLAAADSwAAA0sAAAFLAAADSwAAAksAAABLAAABSwAAAEsAAANLAAAASwAAAEsAAANLAAADSwAAAUsAAAJLAAAASwAAA0sAAABLAAAASwAAA0sAAABLAAACSwAAAUsAAABLAAABSwAAAUsAAAFLAAAASwAAAw== - 2,1: - ind: 2,1 - tiles: SwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABYAAAAZwAAAEsAAANnAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGcAAABnAAAAZwAAAGcAAABLAAACZwAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAASwAAA2cAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAANnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAWcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAJnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAABZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAWcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAANnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAABZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAWcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAANnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAADZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAA2cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -3,-1: - ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAFcAAABnAAAAZwAAAGcAAABnAAAAVwAAAFcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAFcAAABXAAAAZwAAAGcAAABnAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGYAAABmAAAAZwAAAGcAAABXAAAAVwAAAGcAAABnAAAAZwAAAFcAAABnAAAAKQAAAGcAAABnAAAAZwAAAGYAAABmAAAAZgAAAGcAAABXAAAAVwAAAFcAAABnAAAAZwAAAGcAAABXAAAAZwAAACkAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAVwAAAGcAAABnAAAAZwAAAFAAAABnAAAAVwAAAFcAAABXAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAA2cAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABYAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAHwAAAksAAABQAAAAZwAAAFAAAABnAAAAHwAAAh8AAAJAAAAAQAAAAB8AAAIfAAACZwAAAGcAAABnAAAAWAAAABoAAABLAAABZwAAAGcAAABnAAAAZwAAAB8AAAMfAAACQAAAAEAAAAAfAAABHwAAAGcAAABYAAAAZwAAAGcAAABnAAAASwAAAmcAAABnAAAAZwAAAGcAAAAfAAACHwAAA0AAAABAAAAAHwAAAB8AAABnAAAAGgAAAxoAAAEaAAABZwAAAEsAAAAAAAAAAAAAAAAAAABnAAAAHwAAAR8AAANAAAAAQAAAAB8AAAEfAAADZwAAABoAAAIaAAACGgAAAh8AAANLAAABAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAHwAAAR8AAANnAAAAZwAAAGcAAAAaAAACGgAAAhoAAABnAAAASwAAAgAAAAAAAAAAAAAAAGcAAABLAAAASwAAAUsAAANLAAAASwAAAlMAAAJnAAAAGgAAAhoAAAAaAAACSwAAA0sAAAMAAAAAAAAAAAAAAABnAAAASwAAAEsAAABLAAADSwAAAksAAANLAAACHwAAAhoAAAMaAAABGgAAA0sAAAFLAAAAAAAAAAAAAAAAAAAAZwAAAEsAAABLAAADSwAAAUsAAAJLAAABSwAAAmcAAAAaAAAAGgAAAxoAAABnAAAASwAAAg== - -3,0: - ind: -3,0 - tiles: AAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAFMAAANLAAADSwAAA2cAAABnAAAAZwAAAGcAAABnAAAASwAAAQAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABTAAABUwAAAUsAAANLAAABSwAAAEsAAABLAAACZwAAAEsAAAIAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAUwAAAUsAAAJLAAADSwAAAksAAABLAAABSwAAAGcAAABLAAADAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAEsAAAFLAAACSwAAAksAAAJnAAAAUwAAAmcAAABnAAAASwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABTAAABSwAAA0sAAANLAAACZwAAAEsAAAJLAAABUwAAAUsAAAMAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAUwAAA1MAAAFLAAACSwAAA2cAAABTAAADSwAAAlMAAAJLAAABAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAFMAAAFLAAADSwAAA0sAAAFLAAACSwAAAksAAAFTAAACSwAAAAAAAAAAAAAAAAAAAGcAAABkAAADZAAAAmcAAABLAAADSwAAAEsAAAJLAAADSwAAA0sAAANLAAAAUwAAAEsAAAMAAAAAAAAAAAAAAABnAAAAZAAAAmQAAAFnAAAASwAAAEsAAANLAAAAZwAAAGcAAABnAAAAZwAAAGcAAABLAAAAAAAAAAAAAAAAAAAAZwAAAGQAAANkAAACUwAAAUsAAAFLAAAASwAAAGcAAAAaAAABGgAAARoAAABnAAAASwAAAQAAAAAAAAAAAAAAAGcAAABkAAABZAAAAGcAAABLAAACSwAAAEsAAAMfAAABGgAAARoAAAEaAAAAZwAAAEsAAAJnAAAAZwAAAGcAAABnAAAAZAAAAmQAAANnAAAASwAAAUsAAAFLAAACZwAAABoAAAEaAAAAGgAAAmcAAABLAAAASwAAA0sAAAJTAAABZwAAAGcAAABnAAAAZwAAAGcAAABTAAAAZwAAAGcAAABnAAAASwAAAGcAAABnAAAASwAAAUsAAAFLAAABSwAAAEsAAANLAAAASwAAAksAAANLAAAASwAAAEsAAANLAAABSwAAAksAAABLAAABSwAAA0sAAABLAAABSwAAAUsAAABLAAAASwAAAksAAABLAAABSwAAA0sAAAJLAAADSwAAAksAAANLAAAASwAAAEsAAABLAAACSwAAAUsAAAJLAAADSwAAAksAAAJLAAADSwAAA0sAAABLAAADSwAAA0sAAAFLAAABSwAAAEsAAAFLAAADSwAAAw== - -3,1: - ind: -3,1 - tiles: IQAAACEAAAFnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAB8AAABnAAAAGgAAAB8AAAFnAAAASwAAAmcAAABnAAAAZwAAAAAAAABmAAAAZgAAAGYAAABnAAAAGgAAARoAAAAaAAABZwAAAFgAAABnAAAAZwAAAEsAAAIAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAZwAAABoAAAAaAAADGgAAAGcAAABnAAAAZwAAAGcAAABLAAACAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAZgAAAGcAAAAaAAADGgAAARoAAAFnAAAAZwAAAGcAAABnAAAASwAAAgAAAAAAAAAAZgAAAGYAAABnAAAAZwAAAGcAAABnAAAAGgAAABoAAAEaAAACZwAAAGcAAABnAAAAZwAAAEsAAAIAAAAAAAAAAGYAAABmAAAAZwAAABoAAAMaAAADGgAAAhoAAAEaAAACGgAAAlgAAABnAAAAZwAAAGcAAABLAAABAAAAAAAAAABmAAAAZgAAAGcAAAAfAAADHwAAAx8AAAIaAAACGgAAABoAAABnAAAAZwAAAGcAAABnAAAASwAAAgAAAAAAAAAAZgAAAGYAAABnAAAAGgAAAxoAAAIaAAADGgAAABoAAAEaAAADGgAAA2cAAABnAAAAWAAAAEsAAAMAAAAAAAAAAGYAAABmAAAAZwAAAB8AAAAfAAAAHwAAAxoAAAAaAAAAGgAAABoAAABnAAAAZwAAAGcAAABLAAABAAAAAGYAAABmAAAAZgAAAGcAAAAaAAADGgAAAxoAAAMaAAAAGgAAABoAAAEaAAADZwAAAGcAAABnAAAASwAAAAAAAABnAAAAZwAAAGcAAABnAAAAGgAAARoAAAMaAAABGgAAARoAAAMaAAAAGgAAAmcAAABnAAAAZwAAAEsAAAEAAAAAHwAAAx8AAAIfAAACHwAAARoAAAAaAAACGgAAABoAAAIaAAADGgAAABoAAABnAAAAZwAAAGcAAABLAAACAAAAAB8AAAMfAAAAHwAAAx8AAAEaAAADGgAAAhoAAAIaAAACGgAAAhoAAAEaAAABZwAAAGcAAABnAAAASwAAAQAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAGgAAAhoAAAIaAAACZwAAAGcAAABnAAAAZwAAAEsAAAAAAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZwAAABoAAAIaAAAAGgAAAmcAAABXAAAAZwAAAGcAAABLAAADAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAVwAAAGcAAABnAAAASwAAAQ== - 3,0: - ind: 3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAUsAAAJnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAFLAAADWAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAAASwAAAWcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAEsAAANYAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 3,1: - ind: 3,1 - tiles: WAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,2: - ind: 2,2 - tiles: SwAAAGcAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAFnAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABLAAADZwAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABnAAAAZwAAAGcAAABnAAAASwAAAmcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABYAAAAZwAAAEsAAAJLAAACSwAAAUsAAANLAAABSwAAAksAAABLAAAASwAAAUsAAAFLAAABSwAAAUsAAABLAAADSwAAAksAAAJLAAABSwAAAEsAAABLAAACSwAAAEsAAAFLAAAASwAAAksAAANLAAAASwAAAUsAAAJLAAAASwAAAksAAABLAAADSwAAAksAAANLAAABSwAAAksAAANLAAAASwAAAEsAAABLAAADSwAAAUsAAABLAAAASwAAAUsAAANLAAAASwAAAWcAAABnAAAAWAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAAJLAAABSwAAA0sAAABLAAACSwAAA0sAAAItAAADZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFgAAABLAAACSwAAAksAAANLAAADSwAAAEsAAAFLAAAALQAAAWcAAABnAAAAZwAAAGcAAABnAAAAVwAAAGcAAABnAAAAZwAAAGcAAABLAAAASwAAA2cAAABLAAABSwAAAWcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFcAAABnAAAAZwAAABoAAAIaAAABGgAAARoAAAFnAAAASwAAAksAAAIaAAACGgAAASoAAABnAAAAZwAAAGcAAABnAAAAZwAAAFgAAAAaAAACGgAAAxoAAAIaAAAAHwAAAUsAAAJLAAADGgAAAhoAAAIaAAABZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAGgAAAxoAAAAaAAABGgAAAGcAAABLAAACSwAAAxoAAAMaAAACKgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAaAAABGgAAAhoAAAJnAAAAZwAAAGcAAABnAAAAZwAAAGQAAAFkAAACZAAAA2QAAAFkAAABZAAAA2QAAAFnAAAAIQAAAyEAAAIqAAAAZwAAAGcAAABnAAAAZwAAAGcAAABkAAADZAAAAmQAAAJkAAADZwAAAGQAAAJkAAACZwAAAA== - 3,2: - ind: 3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAANLAAADWAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAAASwAAAWcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAA0sAAAFYAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAJnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAACZwAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAGcAAABmAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAAANnAAAAZgAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAADZwAAAGYAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAWcAAABmAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZgAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,2: - ind: 1,2 - tiles: ZAAAA2cAAAAjAAACIwAAACMAAAEjAAACZwAAAFMAAABLAAADSwAAAEsAAANLAAADUwAAAEsAAAJLAAABSwAAAGQAAAJnAAAAIwAAASMAAAMjAAAAIwAAAWcAAABTAAABSwAAAksAAABLAAAASwAAAVMAAAFLAAADSwAAACoAAABkAAAAZwAAACMAAAIjAAAAIwAAACMAAABnAAAAUwAAAksAAAJLAAACSwAAAFMAAAFnAAAASwAAAEsAAABLAAABZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAUwAAAVMAAANnAAAAZwAAAEsAAABLAAADSwAAAUsAAAFLAAABUwAAAksAAAFLAAADSwAAAUsAAAJLAAAASwAAAksAAAFLAAADSwAAA0sAAAJLAAAASwAAA0sAAAFLAAAASwAAAUsAAAJLAAADSwAAAksAAAFLAAADSwAAAUsAAABLAAABSwAAAEsAAAFLAAAASwAAAEsAAAIqAAAASwAAAUsAAABLAAAASwAAA0sAAABLAAACSwAAA0sAAABLAAAASwAAAEsAAANLAAACSwAAAEsAAANLAAAASwAAAWcAAABLAAABSwAAAmcAAABnAAAAZwAAAEsAAABLAAACZwAAAFgAAABnAAAAZwAAAGcAAABnAAAAUwAAAVMAAAJnAAAASwAAAUsAAABeAAADXgAAAl4AAAFLAAADSwAAAWcAAABnAAAAZwAAAFcAAABnAAAALQAAAlYAAABWAAACZwAAAEsAAANLAAACXgAAAl4AAAJeAAABSwAAAEsAAAFnAAAAZwAAAGcAAABXAAAAZwAAAC0AAAFWAAAAVgAAAWcAAABLAAADSwAAA14AAABeAAABXgAAAEsAAAJLAAACZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAUwAAAlMAAANnAAAASwAAAksAAAFLAAAASwAAA0sAAAFLAAADSwAAAGcAAABnAAAAZwAAACoAAAAaAAABGgAAASIAAAIiAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAaAAACGgAAAxoAAAIiAAACIgAAAWMAAABjAAACYwAAAFgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABYAAAAKgAAABoAAAEaAAAAIgAAASIAAAFnAAAAYwAAA2MAAABnAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAABoAAAAaAAAAGgAAACIAAAMiAAADZwAAAGMAAAJjAAACZwAAAFcAAABnAAAAZwAAAGcAAABkAAACZAAAA2QAAAEqAAAAIQAAAyEAAAMdAAAAHQAAAA== - 3,-1: - ind: 3,-1 - tiles: ZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABLAAADZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAAASwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAUsAAABnAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAANLAAAAZwAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAADSwAAAGcAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAEsAAANnAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAFLAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAADSwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAA0sAAAFnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -4,-1: - ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAUAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABQAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -4,0: - ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAEsAAAFLAAABSwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAFgAAABLAAACSwAAAksAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAASwAAA0sAAABLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAWAAAAEsAAAJLAAADSwAAAA== - -4,1: - ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAACEAAAEhAAADIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,2: - ind: 0,2 - tiles: SwAAAGcAAABeAAAAXgAAAFsAAAJbAAADWwAAAFoAAABnAAAAGgAAABoAAAMaAAABGgAAAWcAAABkAAACZAAAAksAAAJnAAAAXgAAAF4AAABbAAADWwAAAFsAAANaAAADZwAAABoAAAMaAAADGgAAAhoAAAJnAAAAZAAAAWQAAAJLAAAAZwAAAF4AAABeAAAAWgAAAFoAAANaAAADXwAAA2cAAAAaAAADGgAAABoAAAIaAAAAZwAAAGQAAANkAAAASwAAA2cAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAAJLAAADSwAAAksAAAFLAAACSwAAA0sAAABLAAABSwAAAksAAABLAAAASwAAAUsAAABLAAAASwAAAksAAAFLAAADSwAAA0sAAANLAAADSwAAA0sAAAFLAAAASwAAAksAAAJLAAABSwAAAUsAAABLAAACSwAAAEsAAANLAAADSwAAAksAAABLAAADSwAAAEsAAANLAAABSwAAAksAAABLAAACSwAAAEsAAAJLAAAASwAAAUsAAAJLAAABSwAAA0sAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAEsAAABLAAAAZwAAAFcAAABXAAAAVwAAAGcAAABnAAAAVwAAAFcAAABXAAAAZwAAADcAAAA3AAAAZwAAAEsAAABLAAABSwAAA1gAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAA3AAAANwAAAGcAAABLAAAASwAAAksAAANnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAANwAAADcAAAA3AAAASwAAAUsAAAFLAAAAZwAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAAFLAAAASwAAA2cAAABmAAAAZwAAAGcAAABnAAAAZwAAAGYAAABnAAAAZwAAAGcAAABkAAACZAAAA2QAAANLAAAASwAAAEsAAAJnAAAAZwAAAGcAAAAwAAAAMAAAAGcAAABmAAAAZwAAAGcAAABnAAAAZAAAAGQAAABnAAAASwAAA0sAAANLAAAAHwAAAxoAAAEfAAAAHgAAAx4AAAFnAAAAZgAAAGcAAABnAAAAZwAAAGQAAAJkAAAAZwAAAEsAAABLAAAASwAAAR8AAAMaAAADHwAAAR4AAAMeAAABZwAAAGYAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABLAAACSwAAAQ== - -1,2: - ind: -1,2 - tiles: OQAAADkAAAA5AAAAZwAAABoAAAMaAAABGgAAAWcAAAAaAAAAGgAAARoAAAJnAAAAZgAAAGcAAABLAAADSwAAAzkAAAA5AAAAOQAAAGcAAAAaAAAAGgAAAhoAAAEfAAADZwAAAGcAAABnAAAAZwAAAGYAAABnAAAASwAAAyoAAAA5AAAAOQAAADkAAABnAAAAGgAAAxoAAAEaAAAAZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAZwAAAEsAAABLAAADUwAAAFMAAAJTAAACZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABLAAADSwAAAEsAAABLAAAASwAAAEsAAAFLAAABSwAAAEsAAAFLAAADSwAAA0sAAABLAAADSwAAAksAAAFLAAADSwAAAksAAAFLAAACSwAAAEsAAABLAAACSwAAAUsAAANLAAACSwAAAksAAABLAAADSwAAAUsAAANLAAACSwAAAksAAAFLAAACSwAAAEsAAABLAAAASwAAAEsAAAFLAAABSwAAA0sAAAJLAAAASwAAA0sAAAJLAAACSwAAAksAAABLAAACSwAAA2cAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAEsAAAJLAAACZwAAAFcAAABXAAAAZwAAAFcAAABXAAAAZwAAAFcAAABXAAAAZwAAAFcAAABXAAAAZwAAAEsAAANLAAABSwAAA2cAAABXAAAAVwAAAGcAAABXAAAAVwAAAGcAAABXAAAAVwAAAGcAAABXAAAAVwAAAGcAAABLAAADKgAAAEsAAAFnAAAAVwAAAFcAAABnAAAAVwAAAFcAAABnAAAAVwAAAFcAAABnAAAAVwAAAFcAAABnAAAASwAAA0sAAAFnAAAAZwAAAGcAAABXAAAAZwAAAGcAAABXAAAAZwAAAGcAAABXAAAAZwAAAGcAAABXAAAAZwAAAEsAAAFLAAADSwAAAUsAAAFLAAABSwAAAksAAABLAAABSwAAA0sAAAJLAAABSwAAAEsAAANLAAAASwAAA2cAAABLAAACKgAAAEsAAAFLAAADSwAAAksAAANLAAACSwAAAksAAANLAAACSwAAAksAAAFLAAAASwAAAUsAAAFnAAAASwAAAksAAAFLAAADSwAAAEsAAANLAAAASwAAAEsAAAFLAAADSwAAAksAAANLAAADSwAAA0sAAAJLAAADZwAAAEsAAAAqAAAAZwAAAGcAAABLAAADSwAAA2cAAABnAAAASwAAAksAAANLAAADSwAAAGcAAABnAAAAZwAAAGcAAABLAAACSwAAAw== - -2,2: - ind: -2,2 - tiles: SwAAAUsAAANnAAAASwAAAFQAAABLAAADZwAAAFcAAABnAAAAZwAAAEsAAAFLAAADSwAAAEsAAANLAAACSwAAAioAAABLAAABSwAAA0sAAABUAAAASwAAAGcAAABXAAAAZwAAAGcAAABLAAABSwAAAEsAAAFLAAAASwAAAksAAANLAAAASwAAAWcAAABLAAAASwAAA0sAAABnAAAAVwAAAGcAAABnAAAASwAAAksAAAJLAAADSwAAAEsAAANLAAABSwAAAUsAAAFnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABYAAAAZwAAAGcAAABnAAAAZwAAAFMAAAFnAAAAZwAAAEsAAAFLAAACSwAAAEsAAAJLAAADSwAAAUsAAABLAAADSwAAAksAAABLAAAASwAAA0sAAABLAAADSwAAAEsAAAAqAAAASwAAAksAAAFLAAACSwAAAUsAAAJLAAACSwAAA0sAAABLAAAASwAAAksAAAJLAAADSwAAAksAAABLAAABSwAAA0sAAAJLAAACSwAAAUsAAAFLAAABSwAAAlMAAAFLAAACSwAAAEsAAANLAAAASwAAAUsAAANLAAABSwAAAWcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABYAAAAZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZwAAAFcAAABnAAAAZwAAAGcAAABLAAABSwAAAEsAAAFLAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGcAAABXAAAAZwAAAGcAAABnAAAASwAAAUsAAANLAAABSwAAAVAAAABQAAAAUAAAAFAAAABQAAAAZwAAAGYAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAAJLAAACSwAAAUsAAABQAAAAUAAAAFAAAABQAAAAUAAAAGcAAABmAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFMAAAJnAAAAUAAAAFAAAABQAAAAUAAAAFAAAABnAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAUsAAABLAAADSwAAAFAAAABQAAAAUAAAAFAAAABQAAAAZwAAAGYAAABnAAAAZwAAAFgAAABYAAAAZwAAAEsAAANLAAADSwAAA0sAAAJQAAAAUAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAaAAAAGgAAAWcAAABLAAABSwAAAEsAAANLAAAAUAAAAFAAAAAfAAADGgAAARoAAAAfAAABGgAAAxoAAAEfAAADHwAAAR8AAAEfAAABSwAAAEsAAAFLAAAASwAAAA== - -3,2: - ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAGcAAABXAAAAZwAAAGcAAABnAAAAVwAAAGcAAABnAAAASwAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAGYAAABnAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAANnAAAAZwAAAGcAAABmAAAAZgAAAGYAAABmAAAAZwAAAFcAAABnAAAAZwAAAFcAAABXAAAAVwAAAGcAAABLAAABIQAAAiEAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAWAAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAksAAABLAAADSwAAAksAAAJLAAAASwAAAksAAAJLAAACSwAAAksAAAFLAAACSwAAAEsAAABLAAACSwAAAksAAANLAAACSwAAAUsAAABLAAACSwAAAEsAAABLAAABSwAAAksAAABLAAAASwAAAksAAAJLAAAASwAAA0sAAABLAAACSwAAAksAAANLAAADSwAAAksAAAJLAAAASwAAAEsAAABLAAACSwAAAEsAAANLAAAASwAAAEsAAABLAAABSwAAA2cAAABnAAAAZwAAAGcAAABLAAADSwAAAWcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAtAAABLQAAAi0AAAEtAAADSwAAAksAAABnAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAALQAAAC0AAAEtAAAALQAAAksAAANLAAACZwAAAGYAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAANLAAACSwAAAEsAAANLAAAASwAAA2cAAABmAAAAZwAAAGQAAANkAAADZwAAAFAAAABQAAAAUAAAAFAAAABLAAABSwAAA0sAAANLAAADSwAAAksAAAJnAAAAZgAAAGcAAABkAAABZAAAAmQAAAJQAAAAUAAAAFAAAABQAAAASwAAAEsAAANTAAACSwAAA1gAAABLAAACZwAAAGYAAABnAAAAZwAAAGcAAABnAAAAUAAAACUAAABQAAAAJQAAAWcAAABnAAAAZwAAAGcAAABnAAAAVwAAAGcAAABmAAAAZwAAAGQAAANkAAACZAAAAVAAAAAlAAADUAAAACUAAAJnAAAAZwAAAGcAAABXAAAAZwAAAFcAAABnAAAAZgAAAGcAAABkAAACZAAAA2cAAABQAAAAJQAAAVAAAAAlAAABZwAAAGcAAABnAAAAVwAAAGcAAABXAAAAZwAAAGYAAABnAAAAZwAAAGcAAABnAAAAUAAAAFAAAABQAAAAUAAAAA== - -4,2: - ind: -4,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAACEAAAEhAAAAIQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAFgAAABLAAACSwAAAUsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAASwAAA0sAAANLAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAWAAAAEsAAABLAAABSwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAASwAAAksAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAZwAAAEsAAABLAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAGcAAABLAAACSwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAGYAAABnAAAASwAAA0sAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAABmAAAAZwAAAEsAAABLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAGcAAABLAAACSwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAGYAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAZgAAAGYAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAABmAAAAZwAAAA== - 0,-2: - ind: 0,-2 - tiles: ZgAAAGYAAABmAAAAZwAAAGcAAABnAAAAHwAAAh8AAAJnAAAAZwAAAGcAAABLAAADSwAAAFMAAAFnAAAAZwAAAGcAAABnAAAAZgAAAGcAAABAAAAAZwAAAGcAAABnAAAAZwAAAEAAAABnAAAASwAAAEsAAAFLAAAAZwAAAGcAAABnAAAAZwAAAGYAAABnAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAZwAAAEsAAAJLAAAASwAAA2cAAABnAAAAZwAAAGcAAABmAAAAZwAAAEAAAABnAAAAZwAAAGcAAABnAAAAQAAAAGcAAABLAAACSwAAAEsAAABnAAAAZwAAAGcAAABnAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAUsAAANLAAADZwAAAGYAAABnAAAAZwAAAGYAAABnAAAAGgAAAhoAAAIaAAACGgAAAWcAAABLAAADSwAAAEsAAABLAAACSwAAAGcAAABmAAAAZwAAAGcAAABmAAAAZwAAABoAAAAeAAACHgAAABoAAANTAAABSwAAAksAAAJLAAABSwAAA0sAAAFnAAAAZwAAAGcAAABnAAAAZgAAAGcAAAAaAAABHgAAAR4AAAAaAAAAUwAAAUsAAAFLAAADSwAAAEsAAAFLAAABZwAAAGcAAABnAAAAZwAAAGYAAABnAAAAGgAAAhoAAAMaAAACGgAAAmcAAABLAAACSwAAAksAAABLAAABSwAAAR8AAAEfAAABZwAAAGcAAABmAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAA0sAAAJLAAADSwAAAUsAAANnAAAAZwAAAGcAAABnAAAAZgAAAGcAAAAaAAABGgAAABoAAAEfAAADZwAAAEsAAAJLAAABSwAAAksAAAFLAAADZwAAAGcAAABnAAAAZwAAAGYAAABnAAAAGgAAARoAAAMaAAAAGgAAAFMAAABLAAABSwAAA0sAAAJLAAAASwAAA2cAAABmAAAAZwAAAGcAAABmAAAAZwAAABoAAAIaAAACGgAAABoAAANnAAAAZwAAAGcAAABTAAADUwAAAWcAAABnAAAAZgAAAGcAAABnAAAAZgAAAGcAAAAaAAABGgAAAxoAAAEaAAABVwAAAGcAAABXAAAAGgAAABoAAANXAAAAZwAAAGcAAABmAAAAZgAAAGYAAABnAAAAGgAAAhoAAAIaAAAAGgAAAVcAAABnAAAAVwAAABoAAAIaAAABVwAAAGcAAAASAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABTAAACUwAAAWcAAABnAAAAHwAAAQ== - -1,-2: - ind: -1,-2 - tiles: ZwAAAGcAAAAaAAACGgAAAxoAAANnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGYAAABmAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGYAAABnAAAAZwAAAGcAAAAfAAAAHwAAAh8AAAIfAAACHwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAZwAAAGcAAABnAAAAHwAAAR8AAAIfAAABHwAAAB8AAANnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGcAAABnAAAAZwAAAB8AAAMfAAACHwAAAh8AAAMfAAADZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGYAAABnAAAAZwAAAGcAAAAfAAAAHwAAAh8AAAMfAAACHwAAA2cAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAGgAAAxoAAAEaAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGYAAABnAAAAZwAAAGcAAABXAAAAZwAAABoAAAEaAAACGgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAZwAAAGcAAABnAAAAVwAAAGcAAAAaAAACGgAAAhoAAANnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGcAAABnAAAAZwAAAFcAAABnAAAAGgAAARoAAAEaAAACZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGYAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAfAAACZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAZwAAAGcAAABnAAAAZwAAABoAAAIaAAAAGgAAAhoAAAEaAAADZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGcAAABnAAAAZwAAAGcAAAAaAAADGgAAABoAAAEaAAACGgAAAx8AAANnAAAAZwAAAGcAAABnAAAAZwAAAGYAAABnAAAAZwAAAGcAAABnAAAAGgAAARoAAAMaAAAAGgAAABoAAAFnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAZgAAAGYAAABmAAAAZwAAAGcAAABnAAAAUwAAAWcAAABnAAAAZwAAAB8AAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAA== - -3,3: - ind: -3,3 - tiles: ZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGYAAABnAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABmAAAAZgAAAGcAAABXAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGYAAABnAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABmAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABkAAADZwAAAGQAAANmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZAAAAWcAAABnAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGQAAANkAAADZwAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABkAAACZwAAAGQAAAAAAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZwAAAGcAAABnAAAAZwAAAGcAAABkAAADZAAAAWcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAZgAAAGcAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAABmAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAGYAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAABmAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAA== - -4,3: - ind: -4,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAABmAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,3: - ind: -2,3 - tiles: UAAAAFAAAAAfAAACGgAAAhoAAAEfAAAAGgAAABoAAAAfAAADHwAAAx8AAAEfAAACSwAAAEsAAANLAAAASwAAA1AAAABQAAAAZwAAAB8AAAIfAAACZwAAAGcAAABnAAAAZwAAABoAAAEaAAACZwAAAEsAAANLAAADSwAAA0sAAAFnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABYAAAAWAAAAGcAAABLAAADSwAAAksAAAFLAAABZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAksAAAFLAAABSwAAAmcAAABnAAAAZwAAAGQAAAFnAAAAZwAAAFcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAANLAAACSwAAA0sAAAJkAAABZwAAAGcAAABnAAAAZAAAA2cAAABnAAAAWAAAAGcAAABnAAAAZwAAAGcAAABLAAADSwAAAFMAAABLAAABZwAAAGcAAABkAAAAZAAAAGcAAABnAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAA2QAAANnAAAAZwAAAGQAAABkAAAAZwAAAFcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFcAAABnAAAAWAAAAEsAAAJnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABXAAAAZwAAAGcAAABnAAAAZwAAAGcAAABXAAAAZwAAAGcAAABLAAAAZwAAAGcAAABkAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGYAAABnAAAAZAAAAWQAAABkAAADZwAAAFcAAABXAAAAVwAAAFcAAABXAAAAZwAAAGcAAABnAAAAZwAAABoAAAFmAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAVwAAAGcAAAAaAAADZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABnAAAAZwAAAFcAAABnAAAAGgAAAWYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZwAAAGcAAABXAAAAZwAAAGcAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABnAAAAZwAAAGcAAABnAAAAZwAAAA== - -1,3: - ind: -1,3 - tiles: ZwAAABoAAAEaAAAAGgAAAxoAAANLAAABSwAAAUsAAAFLAAADSwAAAB8AAAIaAAADGgAAAx8AAABLAAADSwAAA2cAAAAaAAACHgAAAB4AAAIaAAAASwAAAUsAAAFLAAAASwAAA0sAAAFnAAAAHwAAAR8AAAFnAAAASwAAAyoAAABnAAAAGgAAARoAAAAaAAACGgAAAWcAAABLAAADSwAAAUsAAABLAAACHwAAARoAAAAaAAABHwAAAksAAABLAAACZwAAAGcAAABnAAAAHwAAA2cAAABnAAAASwAAAEsAAAFnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABLAAABSwAAAUsAAAFLAAACSwAAAEsAAABLAAAASwAAA0sAAAJLAAAAZwAAABoAAAAaAAACZwAAAEsAAAJLAAADSwAAAksAAABLAAADSwAAAUsAAAFLAAABSwAAAksAAAFLAAAASwAAAGcAAAAaAAAAGgAAAhoAAANLAAAASwAAAEsAAAEqAAAASwAAAksAAANLAAABSwAAA0sAAAFLAAAASwAAAUsAAANnAAAAGgAAAhoAAAEaAAACSwAAA0sAAAJLAAACSwAAAUsAAAFLAAACSwAAAksAAAJLAAADSwAAAEsAAAFLAAABHwAAABoAAAAaAAADZwAAAEsAAAJLAAADSwAAAksAAAJLAAACSwAAA0sAAAJLAAABSwAAAEsAAABLAAACSwAAAGcAAAAaAAAAGgAAAmcAAABLAAAASwAAAksAAAAqAAAAZwAAAGcAAABnAAAAZwAAAEsAAAJLAAABSwAAA0sAAABnAAAAGgAAARoAAAFnAAAAUwAAAUsAAANLAAAASwAAAhoAAAIaAAAAGgAAAmcAAABLAAADSwAAAksAAAJLAAADZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAA0sAAAIeAAAAHgAAABoAAAAfAAABSwAAAEsAAABLAAAASwAAAR8AAAMaAAABGgAAAx8AAAFnAAAAZwAAAEsAAABLAAADGgAAAhoAAAIaAAABZwAAAEsAAABLAAABSwAAAUsAAAFnAAAAGgAAAxoAAAAfAAACZwAAAGcAAABLAAABKgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAABoAAAIaAAABHwAAA2cAAABnAAAASwAAAEsAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAfAAADGgAAAxoAAAAaAAADGgAAAx8AAAFnAAAAZwAAAEsAAAJLAAADZwAAAGcAAABnAAAAVwAAAGcAAABnAAAAHwAAABoAAAIaAAADGgAAAxoAAAAfAAACZwAAAGcAAABLAAACKgAAAA== - 0,3: - ind: 0,3 - tiles: SwAAAWcAAABnAAAAZwAAADAAAAAwAAAAZwAAAGYAAABnAAAAZwAAAFcAAABXAAAAVwAAAGcAAABnAAAAWAAAAEsAAAFnAAAAZgAAAGcAAABnAAAAZwAAAGcAAABmAAAAZwAAAGcAAABXAAAAVwAAAFcAAABnAAAAZwAAAGcAAABLAAABZwAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAmcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFgAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAAFLAAACSwAAAWcAAAAfAAAAGgAAABoAAAIaAAAAGgAAAhoAAAAaAAADGgAAAxoAAAAaAAABGgAAAWcAAABLAAAASwAAAEsAAAMfAAADGgAAARoAAAIaAAAAGgAAARsAAAEbAAABGwAAAxsAAAIbAAAAGwAAAhoAAAJnAAAASwAAA0sAAANLAAABZwAAABoAAAMaAAAAGgAAAhoAAAEbAAACGwAAAhsAAAAbAAABGwAAAhsAAAAaAAADZwAAAEsAAAJLAAADSwAAAWcAAAAaAAADGgAAARoAAAMaAAABGgAAARoAAAIaAAAAGgAAAxoAAAAaAAABGgAAAGcAAABLAAADSwAAA0sAAAEfAAABGgAAAxoAAAMaAAACZAAAAmQAAAFkAAADZAAAAGQAAANkAAABZAAAA2QAAANnAAAASwAAAksAAAJLAAACZwAAABoAAAEaAAAAGgAAAGQAAAFlAAAAZQAAAWQAAAFkAAADZQAAA2UAAAJkAAACZwAAAEsAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABkAAAAZAAAAGQAAANkAAAAZAAAAWQAAABkAAADZAAAAFgAAABLAAACZwAAAGQAAABkAAAAZAAAAGQAAABnAAAAZAAAAWQAAAFlAAABZQAAAWUAAABlAAADZAAAAWQAAABnAAAASwAAA2cAAAA3AAAANwAAADcAAAA3AAAANwAAAGQAAAJkAAACZQAAAWQAAAFkAAABZQAAAWQAAABkAAAAZwAAAEsAAAJnAAAANwAAADcAAAA3AAAANwAAAGcAAABkAAAAZAAAA2QAAAFkAAADZAAAAGQAAAJkAAABZAAAAWcAAABLAAAAZwAAADcAAAA3AAAANwAAADcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAATcAAAA3AAAANwAAADcAAAA3AAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAA== - 1,3: - ind: 1,3 - tiles: ZwAAAGcAAABnAAAAZwAAAFcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGQAAAAaAAACGgAAAxoAAAEiAAACIgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZAAAAGQAAAJnAAAAKgAAABoAAAEaAAAAIgAAACIAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAADcAAAA3AAAAHwAAABoAAAFnAAAAZwAAAFgAAABYAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFgAAAA3AAAANwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABYAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAANwAAADcAAAA3AAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAADcAAAA3AAAANwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABXAAAAVwAAAGcAAABnAAAAZwAAAGcAAAA3AAAANwAAADcAAABnAAAAZwAAAGcAAAAjAAAAIwAAAWcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAIwAAAyoAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAVwAAAFcAAABXAAAAVwAAAFcAAABnAAAAZwAAACMAAAEqAAAAZwAAAGcAAABnAAAAZwAAAGcAAABXAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGYAAABXAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGYAAAAAAAAAVwAAAGcAAABnAAAAZwAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAFcAAABnAAAAZwAAAGcAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAABXAAAAZwAAAGcAAABnAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,3: - ind: 2,3 - tiles: GgAAABoAAAMaAAADZwAAAGcAAABnAAAAZwAAAFgAAABkAAACZAAAAWQAAAFkAAACZwAAAGQAAAJkAAADZwAAABoAAAIaAAACKgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZAAAAGQAAABkAAADZAAAAWcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABkAAACZAAAAGQAAAJnAAAAZgAAAGYAAABmAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFcAAABnAAAAZAAAAWQAAANkAAABZwAAAGYAAAAAAAAAAAAAAGcAAABXAAAAVwAAAFcAAABnAAAAZwAAAGcAAABXAAAAZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAZgAAAGYAAABYAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAIwAAASMAAAMjAAAAZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAACoAAAAqAAAAIwAAA2cAAABnAAAAZwAAAGcAAABnAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAjAAABKgAAACMAAAFnAAAAZwAAAGcAAABnAAAAZwAAAGYAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGYAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABmAAAAZgAAAGYAAABmAAAAZwAAAGYAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAGYAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAABmAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,4: - ind: -1,4 - tiles: VwAAAFcAAABnAAAAVwAAAGcAAABnAAAAHwAAABoAAAEfAAABHwAAAxoAAAIfAAACZwAAAGcAAABLAAACSwAAAmcAAABnAAAAZwAAAFcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAUsAAAFmAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAAIqAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAWAAAABoAAAFLAAACSwAAAGYAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABXAAAAZwAAAGcAAAAfAAADSwAAAUsAAAFmAAAAZwAAAGcAAABXAAAAZwAAAGcAAABnAAAAXgAAA14AAABnAAAAVwAAAGcAAABnAAAAZwAAAB8AAANnAAAAZgAAAGcAAABnAAAAVwAAAGcAAABnAAAAZwAAAF4AAAFeAAADZwAAAFcAAABnAAAAZwAAAGcAAAAaAAABGgAAAWYAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABeAAAAZwAAAGcAAABnAAAAZwAAAFgAAABnAAAAGgAAABoAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABnAAAAZAAAAGQAAANkAAACZAAAAWcAAABnAAAAZwAAAB8AAAEfAAACZgAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZwAAAGQAAAFkAAADZAAAAWQAAABnAAAAZwAAAGcAAAAaAAACGgAAAWYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGcAAABkAAACZAAAAWQAAABkAAABZwAAAGcAAABnAAAAGgAAARoAAAIAAAAAAAAAAAAAAABmAAAAAAAAAGYAAABnAAAAZwAAAGcAAABnAAAAHwAAAWcAAABnAAAAZwAAAB8AAAJnAAAAAAAAAAAAAAAAAAAAZgAAAAAAAABmAAAAZwAAABoAAAEaAAADGgAAABoAAAIaAAACGgAAABoAAAAaAAADGgAAAgAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAGcAAAAaAAAAGgAAARoAAAIaAAADGgAAAhoAAAAaAAADGgAAAhoAAAMAAAAAAAAAAAAAAABmAAAAAAAAAGYAAABnAAAAZwAAABoAAAAaAAADKgAAABoAAAIaAAABGgAAAxoAAAMaAAACAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAZgAAAGcAAAAaAAACGgAAARoAAAMqAAAAGgAAAyoAAAAaAAACKgAAAA== - -2,4: - ind: -2,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABnAAAAVwAAAFcAAABXAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,4: - ind: 0,4 - tiles: SwAAAGcAAAA3AAAANwAAADcAAAA3AAAAZwAAAGcAAABXAAAAVwAAAFcAAABnAAAAVwAAAFcAAABXAAAAZwAAAEsAAANnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABYAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABLAAADSwAAAEsAAAFLAAADSwAAAEsAAAJLAAACSwAAA0sAAANLAAADSwAAAUsAAAJLAAADZwAAAGYAAABmAAAASwAAAUsAAAFLAAADSwAAAUsAAAFLAAACSwAAAUsAAABLAAABSwAAAyoAAABLAAACSwAAAWcAAABmAAAAAAAAAEsAAABLAAADSwAAAEsAAANLAAAASwAAAEsAAANLAAABSwAAA0sAAAFLAAAAKgAAAEsAAABnAAAAZgAAAGYAAAAfAAABZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABLAAAAKgAAAEsAAABLAAACZwAAAGYAAAAAAAAAGgAAA2cAAAAaAAACGgAAAxoAAAIaAAACGgAAAhoAAAFnAAAASwAAAksAAAJLAAACSwAAAmcAAABmAAAAAAAAABoAAANnAAAAGgAAARoAAANkAAABZAAAA2QAAAAaAAACZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAAAAAAAfAAACZwAAABoAAAMaAAAAZAAAA2QAAAJkAAACGgAAA2cAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAGgAAAWcAAAAaAAADGgAAA2QAAABkAAABZAAAAhoAAABnAAAAZgAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAABoAAAJnAAAAGgAAAxoAAAIaAAABGgAAAhoAAAEaAAADZwAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAfAAABZwAAAGcAAABnAAAAZwAAAB8AAAJnAAAAZwAAAGcAAABmAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAhoAAAIaAAACGgAAAxoAAAMaAAABGgAAAhoAAAFnAAAAZgAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAABoAAAEaAAACGgAAABoAAAEaAAAAGgAAARoAAAEaAAAAZwAAAGYAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAaAAABGgAAAxoAAAEaAAADKgAAABoAAAMaAAADZwAAAGcAAABmAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAGgAAASoAAAAaAAABKgAAABoAAAIaAAABGgAAA2cAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,4: - ind: 1,4 - tiles: ZwAAAGcAAABnAAAAZwAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,5: - ind: -1,5 - tiles: AAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAGcAAAAaAAACGgAAAhoAAAIqAAAAGgAAABoAAAIaAAACKgAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAGYAAABnAAAAZwAAABoAAAMqAAAAGgAAAxoAAAEaAAAAGgAAAxoAAAIAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAZgAAAGcAAAAaAAADGgAAAhoAAAIqAAAAGgAAABoAAAAqAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAGYAAABnAAAAZwAAAGcAAABnAAAAKgAAABoAAAAaAAADKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,5: - ind: 0,5 - tiles: GgAAARoAAAEaAAADKgAAABoAAAEaAAADGgAAAGcAAABmAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAEaAAACGgAAAhoAAAEqAAAAGgAAAmcAAABnAAAAZgAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAADGgAAASoAAAAaAAADGgAAAxoAAAFnAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAhoAAAEqAAAAZwAAAGcAAABnAAAAZwAAAGYAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -3,-2: - ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAZgAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAGYAAABnAAAAVwAAAFcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZwAAAFcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABnAAAAZAAAAGQAAABkAAADZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZwAAAGQAAABkAAACZAAAAGQAAANnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGcAAABkAAAAZAAAAWQAAABkAAABWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAUAAAAGcAAABnAAAAVwAAAFcAAABXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAUAAAAFAAAABnAAAAZwAAAGcAAABnAAAAZwAAAA== - -2,-2: - ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZwAAAFcAAABXAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAHwAAA2cAAABmAAAAZgAAAGcAAABXAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGYAAABmAAAAZwAAAB8AAABnAAAAZgAAAGcAAABnAAAAVwAAAFcAAABnAAAAZwAAAGcAAABXAAAAZwAAAGYAAABnAAAAZwAAAGcAAAAfAAADZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAVwAAAGcAAABmAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFcAAABnAAAAZwAAAGcAAABnAAAAVwAAAFcAAABXAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFcAAABnAAAAZwAAAFcAAABXAAAAVwAAAGcAAABnAAAAZwAAAFAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAUAAAAGcAAABQAAAAZwAAAFAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABQAAAAZwAAAFAAAABQAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAUAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABXAAAAVwAAAFcAAABnAAAAUAAAAFAAAABnAAAAUAAAAGcAAABnAAAAZwAAAGcAAABYAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAAFTAAABSwAAAmcAAABnAAAAZwAAAGcAAABnAAAAVwAAAGcAAABnAAAAGgAAAhoAAAEaAAADGgAAAR8AAANLAAABSwAAAksAAAFXAAAAZwAAAGcAAABnAAAAZwAAAFcAAABnAAAAZwAAAEAAAABAAAAAQAAAABoAAANnAAAASwAAAUsAAAFLAAAAZwAAAGcAAABnAAAAZwAAAFgAAABnAAAAZwAAAGcAAABAAAAAQAAAAEAAAAAaAAABZwAAAEsAAAFLAAAASwAAAg== - 1,-2: - ind: 1,-2 - tiles: ZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABXAAAAVwAAAFcAAABnAAAAZwAAAGcAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGYAAABnAAAAHwAAA2cAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAZwAAAB8AAABnAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAfAAACZwAAAGcAAABnAAAAZgAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABXAAAAVwAAAFcAAABXAAAAZwAAAGYAAABmAAAAZwAAABoAAAMaAAACZwAAAGYAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAABoAAAMeAAAAGgAAAGcAAABmAAAAZwAAAFcAAABXAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAaAAAAHgAAARoAAAJnAAAAZgAAAGcAAABnAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAGgAAAR4AAAEaAAACZwAAAGYAAABnAAAAVwAAAFcAAABnAAAAVwAAAFcAAABXAAAAVwAAAGcAAABnAAAAZwAAAGcAAAAaAAADGgAAAGcAAABmAAAAZwAAAFcAAABXAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAVwAAAFcAAABXAAAAZwAAAGcAAABnAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFgAAABnAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGYAAABnAAAAZwAAAGcAAABXAAAAVwAAAFcAAABnAAAAZwAAAFcAAAASAAAAEgAAAB4AAAMeAAACEgAAABIAAAASAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAHwAAAB8AAAMeAAADHgAAAB8AAAIfAAABHwAAAmcAAABnAAAAVwAAAFcAAABXAAAAVwAAAFcAAABnAAAAZwAAAA== - 2,-2: - ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABmAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFcAAABnAAAAZgAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABXAAAAZwAAAGYAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAGcAAABnAAAAZwAAAGcAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAADcAAABnAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAZwAAADcAAABnAAAAZwAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAADcAAAA3AAAANwAAAGcAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAA3AAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAANwAAADcAAABnAAAAZwAAAFAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABQAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,-3: - ind: 1,-3 - tiles: ZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABmAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAANnAAAAZgAAAGYAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAABZwAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABQAAAAUAAAAEAAAABnAAAAZgAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAUAAAAFAAAABAAAAAZwAAAGYAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAFAAAABQAAAAQAAAAGcAAABmAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABQAAAAUAAAAEAAAABnAAAAZgAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAUAAAAFAAAABAAAAAZwAAAGYAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAEAAAABAAAAAQAAAAGcAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,-3: - ind: 0,-3 - tiles: ZwAAAGcAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGcAAABnAAAAZgAAAGcAAABnAAAAZwAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGcAAABnAAAAZwAAAGYAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGcAAABmAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGYAAABmAAAAZgAAAGYAAABnAAAAZgAAAGcAAABnAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGYAAABmAAAAZgAAAGcAAABnAAAAZwAAAGYAAABnAAAAZwAAAGYAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAZwAAAGcAAABmAAAAZwAAABoAAAJAAAAAQAAAAEAAAABAAAAAGgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGcAAAAaAAADQAAAAGcAAABnAAAAQAAAABoAAABnAAAAZwAAAGcAAABnAAAAZwAAAF4AAANnAAAAZwAAAGYAAABnAAAAGgAAA0AAAABnAAAAZwAAAEAAAAAaAAADZwAAAGcAAABnAAAAZwAAAGcAAABeAAABZwAAAGcAAABmAAAAZwAAABoAAABAAAAAQAAAAGcAAABAAAAAGgAAAWcAAABnAAAAHwAAAWcAAABnAAAAWAAAAGYAAABmAAAAZgAAAGcAAAAaAAACGgAAAxoAAANnAAAAGgAAABoAAANnAAAASwAAAksAAABLAAAAZwAAAFcAAABnAAAAZwAAAGYAAABnAAAAHwAAAR8AAAAaAAACGgAAAR8AAAEfAAADZwAAAEsAAANLAAADSwAAAmcAAABXAAAAZwAAAGcAAABmAAAAZwAAAGcAAABnAAAAHwAAAR8AAANnAAAAZwAAAGcAAABLAAAASwAAAksAAANYAAAAZwAAAGcAAABnAAAAZgAAAGcAAABLAAABSwAAAksAAABLAAABSwAAAEsAAANLAAADSwAAAksAAAFLAAADZwAAAGcAAABnAAAAZwAAAGYAAABnAAAASwAAAEsAAAFLAAAASwAAAksAAANLAAAASwAAAUsAAAFLAAADUwAAAmcAAABnAAAAZwAAAGcAAABmAAAAZwAAAEsAAABLAAADSwAAAUsAAAFLAAABSwAAA0sAAAJLAAADSwAAAlMAAAJnAAAAZwAAAA== - -1,-3: - ind: -1,-3 - tiles: ZwAAAGcAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGcAAABnAAAAZwAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGYAAABnAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAZwAAAGYAAABmAAAAZgAAAGYAAABmAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGcAAABnAAAAZwAAAGYAAABmAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGcAAABnAAAAZwAAAGcAAABXAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGYAAABnAAAAZwAAAGcAAABnAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAfAAADZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAGgAAAhoAAAMaAAADZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGYAAABmAAAAZgAAAGYAAABnAAAAWAAAABoAAAMaAAABGgAAA2cAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAZwAAAGcAAABnAAAAVwAAAGcAAAAaAAACGgAAAxoAAAJnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGcAAABnAAAAZwAAAFcAAABnAAAAGgAAAxoAAAEaAAADZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGYAAABnAAAAZwAAAGcAAABXAAAAZwAAABoAAAIaAAACGgAAAWcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAZwAAAGcAAABnAAAAVwAAAGcAAAAaAAABGgAAAhoAAANnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGcAAABnAAAAZwAAAA== - -2,-3: - ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAZgAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAGYAAABnAAAAXgAAAF4AAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZwAAAF4AAABeAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAGYAAABnAAAAUAAAAFAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAABmAAAAZwAAAGcAAABQAAAAUAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAGcAAABnAAAAZwAAAFAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAGYAAABnAAAAUAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAABmAAAAZwAAAFAAAABQAAAAUAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABmAAAAZgAAAGcAAABnAAAAWAAAAGcAAABnAAAAZwAAAA== - -1,-4: - ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABmAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZgAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGYAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGcAAABmAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZgAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGYAAABnAAAAZgAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABmAAAAZwAAAGYAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZgAAAGcAAABmAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGYAAABnAAAAZgAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZgAAAGYAAABmAAAAZwAAAGYAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZwAAAGYAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABmAAAAZwAAAGYAAABnAAAAZwAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZgAAAGcAAABmAAAAZwAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGYAAABnAAAAZwAAAGcAAABmAAAAZgAAAAAAAAAAAAAAZgAAAGYAAAAAAAAAAAAAAGYAAABnAAAAZgAAAGcAAABmAAAAZwAAAGcAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGcAAABnAAAAZwAAAA== - 0,-4: - ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZgAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGYAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABmAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZgAAAGcAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGYAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZgAAAGcAAABmAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGYAAABnAAAAZgAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABmAAAAZwAAAGYAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZgAAAGcAAABmAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGYAAABnAAAAZgAAAGYAAABmAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGcAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZwAAAGcAAABmAAAAZwAAAGYAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABnAAAAZgAAAGcAAABmAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAGYAAABmAAAAZwAAAGcAAABnAAAAZgAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABnAAAAZwAAAGYAAABnAAAAZgAAAGcAAABmAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAA== - -1,-5: - ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABmAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZgAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGYAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABmAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZgAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGYAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABmAAAAZwAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,-5: - ind: 0,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZgAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGYAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABmAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZgAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGYAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABmAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABnAAAAZgAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 3,3: - ind: 3,3 - tiles: ZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,4: - ind: 2,4 - tiles: AAAAAAAAAAAAAAAAZgAAAAAAAABmAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAABmAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABmAAAAZgAAAGYAAAAAAAAAZgAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAZgAAAGYAAABmAAAAZgAAAAAAAABmAAAAAAAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAAAAAAGYAAAAAAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAAAAAAGYAAABmAAAAZgAAAGYAAAAAAAAAZgAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAABmAAAAAAAAAGYAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAGYAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 3,4: - ind: 3,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -3,4: - ind: -3,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAGYAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAABmAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAAAAAAGYAAAAAAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAZgAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAGYAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAABmAAAAAAAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAAAAAAGYAAAAAAAAAZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAABmAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -4,4: - ind: -4,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - type: MapGrid - - type: Broadphase - - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: {} - type: Fixtures - - type: OccluderTree - - type: Shuttle - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: - version: 2 - nodes: - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 5210: -43,28 - 5211: -43,27 - 5230: -46,27 - 5231: -46,28 - - node: - color: '#FFFFFFFF' - id: Bot - decals: - 1279: -16,-27 - 1280: -15,-27 - 1281: -16,-28 - 1282: -15,-28 - 1283: -16,-29 - 1284: -15,-29 - 1285: -16,-30 - 1286: -15,-30 - 1287: -14,-27 - 1288: -14,-28 - 1289: -14,-29 - 1290: -14,-30 - 1710: 4,-37 - 1711: 5,-37 - 1712: 8,-37 - 1713: 9,-37 - 2016: 7,-22 - 2428: 27,23 - 2429: 27,26 - 2430: 48,42 - 2431: 27,43 - 2432: 18,36 - 2433: 16,29 - 2434: 7,34 - 2435: -10,23 - 2436: -22,25 - 2437: -16,30 - 2438: -25,38 - 2439: -31,22 - 2440: -46,44 - 2441: -18,53 - 2442: 4,52 - 2443: -4,57 - 2444: -3,68 - 2445: 2,70 - 2446: -8,76 - 2447: -2,27 - 2448: 16,20 - 2449: 45,12 - 2450: 33,7 - 2451: 45,-7 - 2452: 17,-4 - 2453: 10,-16 - 2454: -8,-15 - 2455: 3,2 - 2456: -14,1 - 2457: 11,7 - 2458: 7,-6 - 2459: -18,-20 - 2460: -39,-3 - 2461: -46,12 - 2462: -35,16 - 2463: -24,15 - 2464: 14,47 - 2465: -34,-9 - 5195: -37,24 - - node: - color: '#52B4E996' - id: BotGreyscale - decals: - 459: -2,72 - 460: -1,72 - 461: 0,72 - 2003: 1,47 - 2004: 1,46 - 2005: 3,47 - 2006: 3,46 - 2007: 18,-11 - 2008: 19,-11 - 2009: 14,-24 - 2010: 15,-24 - - node: - color: '#52B4E996' - id: BotLeftGreyscale - decals: - 2304: 27,5 - 2305: 27,6 - 2306: 27,4 - - node: - color: '#FFFFFFFF' - id: BotRight - decals: - 1201: -15,20 - 1202: -15,19 - 1203: -15,18 - 1204: -15,17 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: BotRight - decals: - 5214: -41,24 - 5215: -41,22 - - node: - color: '#FFFFFFFF' - id: Box - decals: - 2046: -41,6 - 2047: -41,0 - 2048: -44,-5 - 2049: -44,-6 - 2050: -44,-7 - 2051: -44,-8 - 2052: -43,-8 - 2053: -43,-7 - 2054: -43,-6 - 2055: -43,-5 - 2056: -39,-5 - 2057: -39,-6 - 2058: -39,-7 - 2059: -39,-8 - 2060: -40,-8 - 2061: -40,-7 - 2062: -40,-6 - 2063: -40,-5 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkBox - decals: - 714: -6,78 - 715: -6,81 - 716: 4,81 - 717: 4,78 - 718: 1,79 - 719: -3,79 - 720: -1,79 - 721: -1,80 - 722: -5,79 - 723: -5,80 - 724: 3,79 - 725: 3,80 - 726: 27,43 - 727: 27,45 - 728: 27,47 - 729: 27,49 - 730: 34,49 - 731: 34,47 - 732: 34,45 - 733: 34,43 - 1429: -1,10 - 1430: -1,-3 - 1431: -1,-5 - 1432: 2,-5 - 1433: 2,-3 - 1434: 2,0 - 1435: 2,2 - 1436: 2,5 - 1437: 2,7 - 1438: 2,10 - 1439: -4,10 - 1440: -4,7 - 1441: -1,7 - 1442: -1,5 - 1443: -4,5 - 1444: -13,2 - 1445: -13,0 - 1446: -10,0 - 1447: -10,2 - 1448: -7,2 - 1449: -7,0 - 1451: -4,2 - 1452: -1,0 - 1453: -1,2 - 1454: -7,-3 - 1455: -7,-5 - 1456: -4,-5 - 1457: -4,-3 - 5085: -13,-5 - 5086: -13,-3 - 5087: -10,-3 - 5088: -10,-5 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNe - decals: - 32: -2,80 - 38: 2,80 - 39: 1,83 - 40: -2,83 - 41: 5,82 - 42: -5,82 - 1186: -16,22 - 1584: 9,9 - 1794: 6,-25 - 1900: 18,-22 - 1943: -11,-18 - 1999: 5,47 - 2292: 13,54 - 2327: 18,-34 - 5090: 19,-14 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNw - decals: - 31: -4,80 - 37: 0,80 - 43: -7,82 - 44: -3,83 - 45: 0,83 - 46: 3,82 - 1184: -18,22 - 1588: 7,9 - 1771: 4,-18 - 1791: 5,-25 - 1930: 18,-14 - 2000: 4,47 - 2293: 8,54 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSe - decals: - 1589: 9,6 - 1792: 6,-26 - 1901: 18,-26 - 1929: 19,-18 - 2001: 5,46 - 2017: 7,-27 - 2294: 13,53 - 2324: 18,-38 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSw - decals: - 593: -20,44 - 1587: 7,6 - 1793: 5,-26 - 1928: 18,-18 - 2002: 4,46 - 2295: 8,53 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkEndE - decals: - 617: -13,49 - 620: -15,59 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkEndN - decals: - 1893: 17,-23 - 2034: -4,83 - 2035: -1,83 - 2036: 2,83 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkEndS - decals: - 1894: 17,-25 - 2031: -4,82 - 2032: -1,82 - 2033: 2,82 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkEndW - decals: - 618: -14,49 - 619: -16,59 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerNe - decals: - 1937: 13,-25 - 1986: 0,45 - 2326: 18,-35 - 2328: 17,-34 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerNw - decals: - 2362: 29,2 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerSe - decals: - 27: -3,77 - 414: -3,76 - 1913: 17,-10 - 1938: 13,-23 - 1985: 0,48 - 2325: 18,-37 - 2329: 17,-38 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerSw - decals: - 28: 1,77 - 415: 1,76 - 684: -7,62 - 1914: 20,-10 - 2361: 29,7 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - decals: - 22: -3,76 - 30: -2,79 - 35: 2,79 - 49: -2,82 - 50: 5,81 - 60: 1,82 - 432: 0,74 - 433: 0,73 - 434: 0,71 - 435: 0,70 - 537: -9,51 - 538: -9,52 - 539: -9,53 - 540: -9,54 - 541: -9,55 - 542: -9,56 - 543: -9,57 - 544: -9,58 - 545: -9,59 - 546: -9,60 - 605: -7,47 - 606: -7,48 - 607: -7,49 - 608: -7,50 - 650: -6,57 - 651: -6,56 - 652: -6,55 - 653: -6,54 - 654: -6,53 - 655: -6,52 - 1024: 12,30 - 1025: 12,31 - 1026: 12,32 - 1027: 12,33 - 1028: 12,34 - 1101: -10,27 - 1102: -10,28 - 1103: -10,29 - 1104: -10,30 - 1105: -10,31 - 1106: -10,32 - 1107: -10,33 - 1108: -10,34 - 1113: -15,20 - 1114: -15,19 - 1115: -15,18 - 1116: -15,17 - 1187: -16,21 - 1250: -14,27 - 1251: -14,28 - 1254: 22,26 - 1255: 22,27 - 1256: 22,28 - 1257: 22,29 - 1585: 9,8 - 1586: 9,7 - 1720: 13,-24 - 1896: 17,-24 - 1897: 18,-24 - 1898: 18,-23 - 1899: 18,-25 - 1931: 19,-15 - 1932: 19,-16 - 1933: 19,-17 - 1941: -11,-19 - 1942: -11,-20 - 1983: 0,47 - 1984: 0,46 - 2018: 7,-26 - 2019: 7,-25 - 2020: 7,-24 - 2148: -37,28 - 2149: -37,27 - 2150: -37,23 - 2151: -37,26 - 2152: -37,25 - 2186: -35,-1 - 2187: -35,-2 - 2188: -35,-3 - 2189: -35,-4 - 2190: -35,-5 - 2191: -35,-6 - 5193: -37,24 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - decals: - 12: -2,76 - 13: -1,76 - 14: 0,76 - 33: -3,80 - 34: 1,80 - 422: 2,74 - 423: 3,74 - 424: 4,74 - 425: 5,74 - 426: 6,74 - 427: 7,74 - 520: -20,42 - 521: -19,42 - 522: -18,42 - 523: -17,42 - 524: -16,42 - 622: -5,49 - 630: -4,49 - 636: -23,48 - 637: -22,48 - 662: -15,50 - 663: -14,50 - 664: -13,50 - 665: -12,50 - 1185: -17,22 - 1262: 18,34 - 1263: 19,34 - 1264: 20,34 - 1265: 21,34 - 1593: 8,9 - 1772: 5,-18 - 1773: 6,-18 - 1774: 7,-18 - 1845: 14,29 - 1846: 15,29 - 1847: 16,29 - 1903: 17,-22 - 1944: -12,-18 - 1945: -13,-18 - 1946: -14,-18 - 1947: -15,-18 - 2075: -37,11 - 2076: -36,11 - 2077: -35,11 - 2209: 26,-12 - 2210: 27,-12 - 2211: 28,-12 - 2212: 29,-12 - 2213: 30,-12 - 2260: 41,44 - 2261: 42,44 - 2262: 43,44 - 2263: 44,44 - 2296: 9,54 - 2297: 10,54 - 2298: 11,54 - 2299: 12,54 - 5107: 22,-17 - 5108: 21,-17 - 5109: 20,-17 - 5110: 20,-15 - 5111: 21,-15 - 5112: 22,-15 - 5113: 15,-15 - 5114: 16,-15 - 5115: 17,-15 - 5116: 15,-17 - 5117: 16,-17 - 5118: 17,-17 - 5155: 18,-13 - 5156: 19,-13 - 5218: -46,28 - 5219: -45,28 - - node: - color: '#D4D4D479' - id: BrickTileDarkLineS - decals: - 5149: 18,-12 - 5150: 19,-12 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - decals: - 24: -2,77 - 25: -1,77 - 26: 0,77 - 386: -3,76 - 387: 1,76 - 388: 2,76 - 389: 3,76 - 390: 4,76 - 391: 5,76 - 392: 6,76 - 393: 7,76 - 394: -4,76 - 395: -5,76 - 396: -6,76 - 397: -7,76 - 398: -8,76 - 399: -9,76 - 416: 2,70 - 417: 3,70 - 418: 4,70 - 419: 5,70 - 420: 6,70 - 421: 7,70 - 499: -4,44 - 500: -5,44 - 501: -6,44 - 502: -7,44 - 503: -8,44 - 504: -9,44 - 505: -10,44 - 506: -11,44 - 507: -12,44 - 508: -13,44 - 509: -14,44 - 510: -15,44 - 511: -16,44 - 512: -17,44 - 513: -18,44 - 514: -19,44 - 515: -20,40 - 516: -19,40 - 517: -18,40 - 518: -17,40 - 519: -16,40 - 621: -5,49 - 631: -4,49 - 634: -23,47 - 635: -22,47 - 642: -17,58 - 643: -16,58 - 644: -15,58 - 645: -14,58 - 666: -15,48 - 667: -14,48 - 668: -13,48 - 669: -12,48 - 685: -8,62 - 686: -10,62 - 687: -9,62 - 1209: -10,17 - 1210: -9,17 - 1211: -8,17 - 1590: 8,6 - 1842: 15,27 - 1843: 14,27 - 1844: 16,27 - 1902: 17,-26 - 1911: 18,-10 - 1912: 19,-10 - 2021: 6,-27 - 2022: 5,-27 - 2023: 4,-27 - 2072: -37,9 - 2073: -36,9 - 2074: -35,9 - 2204: 26,-14 - 2205: 27,-14 - 2206: 28,-14 - 2207: 29,-14 - 2208: 30,-14 - 2256: 41,42 - 2257: 42,42 - 2258: 43,42 - 2259: 44,42 - 2300: 9,53 - 2301: 10,53 - 2302: 11,53 - 2303: 12,53 - 5095: 22,-15 - 5096: 21,-15 - 5097: 20,-15 - 5098: 17,-15 - 5099: 16,-15 - 5100: 15,-15 - 5101: 15,-17 - 5102: 16,-17 - 5103: 17,-17 - 5104: 20,-17 - 5105: 21,-17 - 5106: 22,-17 - 5153: 18,-13 - 5154: 19,-13 - 5216: -45,27 - 5217: -46,27 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - decals: - 23: 1,76 - 29: -4,79 - 36: 0,79 - 47: -7,81 - 48: -3,82 - 61: 0,82 - 428: -2,70 - 429: -2,71 - 430: -2,73 - 431: -2,74 - 525: -20,45 - 526: -20,46 - 527: -20,47 - 528: -20,48 - 529: -20,49 - 530: -20,50 - 531: -20,51 - 532: -20,52 - 533: -20,53 - 534: -17,54 - 535: -17,56 - 536: -17,55 - 547: -12,57 - 548: -12,58 - 549: -12,59 - 550: -12,60 - 678: -7,61 - 679: -7,60 - 680: -7,59 - 1029: 9,30 - 1030: 9,31 - 1031: 9,32 - 1032: 9,33 - 1033: 9,34 - 1093: -12,27 - 1094: -12,28 - 1095: -12,29 - 1096: -12,30 - 1097: -12,31 - 1098: -12,32 - 1099: -12,33 - 1100: -12,34 - 1179: -19,17 - 1180: -19,18 - 1181: -19,19 - 1182: -19,20 - 1183: -18,21 - 1258: 18,26 - 1259: 18,27 - 1260: 18,28 - 1261: 18,29 - 1591: 7,7 - 1592: 7,8 - 1714: 21,-27 - 1775: 4,-19 - 1776: 4,-20 - 1777: 4,-21 - 1778: 4,-22 - 1895: 17,-24 - 1934: 18,-17 - 1935: 18,-16 - 1936: 18,-15 - 1955: -14,-38 - 1956: -14,-37 - 1957: -14,-36 - 1958: -14,-35 - 1959: -14,-34 - 1960: -14,-33 - 1961: -14,-32 - 1962: -14,-25 - 1963: -14,-24 - 1964: -14,-23 - 1965: -14,-22 - 2142: -40,17 - 2143: -40,18 - 2144: -40,19 - 2145: -40,20 - 2146: -40,29 - 2147: -40,30 - 2180: -37,-1 - 2181: -37,-2 - 2182: -37,-3 - 2183: -37,-4 - 2184: -37,-5 - 2185: -37,-6 - 2359: 29,4 - 2360: 29,5 - 5196: -43,26 - 5197: -43,25 - 5198: -43,24 - 5199: -43,23 - 5200: -43,22 - 5201: -43,21 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelBox - decals: - 695: -4,-13 - 696: -1,-13 - 697: 2,-13 - 698: -1,-9 - 699: -1,18 - 700: -1,21 - 701: -1,24 - 702: -1,27 - 703: -1,30 - 704: -1,33 - 705: -1,41 - 706: -1,44 - 707: -1,46 - 708: -1,49 - 709: -1,53 - 710: -1,56 - 711: -1,60 - 712: -1,63 - 713: -1,66 - 744: 10,67 - 745: 11,68 - 746: 10,69 - 1860: -32,37 - 1861: -32,33 - 1862: -32,30 - 1863: -32,27 - 1864: -32,24 - 1865: -32,21 - 1866: -32,18 - 1867: -32,14 - 1868: -32,10 - 1869: -32,7 - 1870: -32,4 - 1871: -32,1 - 1872: -32,-2 - 1873: -32,-5 - 1874: -32,-9 - 1875: 31,-9 - 1876: 31,-5 - 1877: 31,-2 - 1878: 31,1 - 1879: 31,4 - 1880: 31,7 - 1881: 31,10 - 1882: 31,14 - 1883: 31,18 - 1884: 31,21 - 1885: 31,24 - 1886: 31,27 - 1887: 31,30 - 1888: 31,33 - 1889: 31,37 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerNe - decals: - 774: 21,42 - 1149: -14,23 - 1336: -10,-13 - 1358: 11,-13 - 1376: -8,-12 - 1817: 4,19 - 1856: -45,41 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerNw - decals: - 775: 19,42 - 1039: -22,34 - 1135: -22,25 - 1150: -20,23 - 1337: -13,-13 - 1359: 8,-13 - 1402: 6,-12 - 1828: -6,19 - 1857: -48,41 - 2125: -36,7 - 2170: -4,57 - 2386: 26,18 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerSe - decals: - 772: 21,40 - 1334: -10,-15 - 1357: 11,-15 - 2380: 23,20 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerSw - decals: - 773: 19,40 - 1041: -22,32 - 1046: -19,30 - 1335: -13,-15 - 1356: 8,-15 - 2126: -36,4 - 2165: -4,52 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelEndN - decals: - 2250: -28,33 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelEndS - decals: - 2251: -28,30 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerSw - decals: - 1044: -19,32 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineE - decals: - 734: 29,40 - 735: 29,41 - 776: 21,41 - 1117: -12,17 - 1118: -12,18 - 1119: -12,19 - 1120: -12,20 - 1121: -10,21 - 1122: -10,22 - 1123: -10,23 - 1148: -14,22 - 1338: -10,-14 - 1360: 11,-14 - 1372: -8,-16 - 1373: -8,-15 - 1374: -8,-14 - 1375: -8,-13 - 1715: 13,-21 - 1716: 13,-22 - 1717: 13,-23 - 1718: 13,-25 - 1719: 13,-26 - 1721: 13,-27 - 1722: 13,-28 - 1723: 13,-29 - 1724: 13,-30 - 1725: 13,-31 - 1726: 13,-35 - 1727: 13,-36 - 1728: 13,-37 - 1729: 13,-38 - 1814: 4,16 - 1815: 4,17 - 1816: 4,18 - 1859: -45,40 - 2088: -39,-3 - 2089: -39,-2 - 2090: -39,-1 - 2091: -39,0 - 2092: -38,3 - 2093: -38,4 - 2094: -38,5 - 2095: -38,6 - 2096: -38,7 - 2103: -35,1 - 2104: -35,2 - 2252: -28,32 - 2253: -28,31 - 2381: 23,21 - 2382: 23,22 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineN - decals: - 777: 20,42 - 1034: -21,34 - 1035: -20,34 - 1036: -19,34 - 1037: -18,34 - 1038: -17,34 - 1124: -11,25 - 1125: -12,25 - 1126: -13,25 - 1127: -14,25 - 1128: -15,25 - 1129: -16,25 - 1130: -17,25 - 1131: -18,25 - 1132: -19,25 - 1133: -20,25 - 1134: -21,25 - 1342: -12,-13 - 1343: -11,-13 - 1362: 9,-13 - 1363: 10,-13 - 1367: -14,-16 - 1368: -14,-12 - 1369: -14,-13 - 1377: -9,-12 - 1378: -10,-12 - 1379: -11,-12 - 1380: -12,-12 - 1381: -13,-12 - 1382: -15,-12 - 1395: 13,-12 - 1396: 12,-12 - 1397: 11,-12 - 1398: 10,-12 - 1399: 9,-12 - 1400: 8,-12 - 1401: 7,-12 - 1420: -14,-15 - 1818: 3,19 - 1819: 2,19 - 1820: 1,19 - 1832: -5,19 - 1833: -4,19 - 1834: -3,19 - 1854: -47,41 - 1855: -46,41 - 2128: -35,7 - 2129: -34,7 - 2171: -3,57 - 2385: 27,18 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineS - decals: - 779: 20,40 - 1042: -21,32 - 1043: -20,32 - 1047: -18,30 - 1048: -17,30 - 1049: -16,30 - 1050: -15,30 - 1051: -14,30 - 1340: -12,-15 - 1341: -11,-15 - 1364: 9,-15 - 1365: 10,-15 - 1366: -14,-16 - 1370: -14,-13 - 1371: -14,-12 - 1419: -14,-15 - 2130: -35,4 - 2131: -34,4 - 2164: -3,52 - 2383: 21,20 - 2397: 22,20 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineW - decals: - 736: 32,41 - 737: 32,40 - 778: 19,41 - 1040: -22,33 - 1045: -19,31 - 1136: -22,24 - 1137: -22,23 - 1138: -22,22 - 1139: -22,21 - 1140: -22,20 - 1141: -22,19 - 1142: -22,18 - 1143: -22,17 - 1151: -20,22 - 1339: -13,-14 - 1361: 8,-14 - 1403: 6,-13 - 1404: 6,-14 - 1405: 6,-15 - 1406: 6,-16 - 1730: 9,-21 - 1731: 9,-22 - 1732: 9,-23 - 1733: 9,-24 - 1734: 9,-25 - 1735: 9,-26 - 1736: 9,-27 - 1737: 4,-33 - 1738: 4,-34 - 1739: 4,-35 - 1740: 11,-36 - 1741: 11,-37 - 1742: 11,-38 - 1829: -6,18 - 1830: -6,17 - 1831: -6,16 - 1858: -48,40 - 2085: -44,-1 - 2086: -44,-2 - 2087: -44,-3 - 2097: -41,7 - 2098: -41,8 - 2099: -41,9 - 2100: -41,10 - 2101: -41,11 - 2102: -41,3 - 2127: -36,6 - 2166: -4,53 - 2167: -4,54 - 2168: -4,55 - 2169: -4,56 - 2254: -28,31 - 2255: -28,32 - 2379: 26,17 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteBox - decals: - 1278: 15,28 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerNe - decals: - 55: -2,80 - 1904: 18,-22 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerNe - decals: - 56: 5,82 - 916: 12,28 - 989: 7,34 - 1824: 4,19 - - node: - color: '#A4610696' - id: BrickTileWhiteCornerNe - decals: - 64: 1,83 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerNe - decals: - 69: -2,83 - 1198: -16,22 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerNe - decals: - 78: 2,80 - - node: - color: '#EFB34196' - id: BrickTileWhiteCornerNe - decals: - 70: -5,82 - 1387: -8,-12 - 1952: -11,-18 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNe - decals: - 874: 12,28 - 956: 5,24 - 988: 7,34 - 1007: 6,33 - 1231: -5,23 - 2370: -17,-40 - 2375: 16,-40 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerNw - decals: - 54: -4,80 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerNw - decals: - 57: 3,82 - - node: - color: '#A4610696' - id: BrickTileWhiteCornerNw - decals: - 63: 0,83 - 2136: -36,7 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerNw - decals: - 68: -3,83 - 1064: -22,34 - 1170: -22,25 - 1199: -18,22 - 1835: -6,19 - - node: - color: '#D56F18EF' - id: BrickTileWhiteCornerNw - decals: - 935: 2,25 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerNw - decals: - 77: 0,80 - 2173: -4,57 - - node: - color: '#EFB34196' - id: BrickTileWhiteCornerNw - decals: - 71: -7,82 - 1411: 6,-12 - 1786: 4,-18 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNw - decals: - 926: 2,25 - 957: 3,24 - 1008: 4,33 - 1232: -7,23 - 2372: -18,-40 - 2373: 15,-40 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerSe - decals: - 1905: 18,-26 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerSe - decals: - 994: 7,30 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerSe - decals: - 1242: -4,21 - - node: - color: '#EFB34196' - id: BrickTileWhiteCornerSe - decals: - 2024: 7,-27 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerSe - decals: - 842: 16,17 - 954: 4,22 - 955: 5,23 - 963: 7,30 - 1009: 6,31 - 1226: -4,21 - 1227: -5,22 - 2369: -17,-41 - 2374: 16,-41 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerSw - decals: - 898: 8,26 - - node: - color: '#A4610696' - id: BrickTileWhiteCornerSw - decals: - 2134: -36,4 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerSw - decals: - 1057: -19,30 - 1062: -22,32 - - node: - color: '#D56F18EF' - id: BrickTileWhiteCornerSw - decals: - 931: 2,21 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerSw - decals: - 594: -20,44 - 2178: -4,52 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerSw - decals: - 841: 6,17 - 864: 8,26 - 930: 2,21 - 953: 3,22 - 1005: 4,31 - 1233: -7,22 - 2371: -18,-41 - 2376: 15,-41 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteEndN - decals: - 908: 11,27 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteEndS - decals: - 909: 11,23 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerNe - decals: - 1940: 13,-25 - 1988: 0,45 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerNw - decals: - 2364: 29,2 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerSe - decals: - 1917: 17,-10 - 1939: 13,-23 - 1987: 0,48 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteInnerSe - decals: - 960: 4,23 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerSw - decals: - 1918: 20,-10 - 2363: 29,7 - - node: - color: '#52B4E996' - id: BrickTileWhiteInnerSw - decals: - 896: 8,27 - 897: 10,26 - - node: - color: '#D381C996' - id: BrickTileWhiteInnerSw - decals: - 1059: -19,32 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerSw - decals: - 691: -7,62 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteInnerSw - decals: - 862: 10,26 - 865: 8,27 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineE - decals: - 53: -2,79 - 436: 0,74 - 437: 0,73 - 438: 0,71 - 439: 0,70 - 1770: 13,-24 - 1906: 18,-25 - 1907: 18,-24 - 1908: 18,-23 - 1989: 0,46 - 1990: 0,47 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineE - decals: - 59: 5,81 - 881: 12,22 - 882: 12,23 - 883: 12,24 - 884: 12,25 - 885: 12,26 - 886: 12,27 - 990: 7,33 - 991: 7,32 - 992: 7,31 - 1274: 22,29 - 1275: 22,28 - 1276: 22,27 - 1277: 22,26 - 1825: 4,18 - 1826: 4,17 - 1827: 4,16 - - node: - color: '#A4610696' - id: BrickTileWhiteLineE - decals: - 65: 1,82 - 2105: -35,1 - 2106: -35,2 - 2107: -39,-3 - 2108: -39,-2 - 2109: -39,-1 - 2110: -39,0 - 2111: -38,7 - 2112: -38,6 - 2113: -38,5 - 2114: -38,4 - 2115: -38,3 - 2153: -37,28 - 2154: -37,27 - 2155: -37,26 - 2156: -37,25 - 2157: -37,23 - 5194: -37,24 - - node: - color: '#D381C996' - id: BrickTileWhiteLineE - decals: - 66: -2,82 - 1152: -12,17 - 1153: -12,18 - 1154: -12,19 - 1155: -12,20 - 1156: -10,21 - 1157: -10,22 - 1158: -10,23 - 1188: -15,20 - 1189: -15,19 - 1190: -15,18 - 1191: -15,17 - 1197: -16,21 - 1243: -4,22 - 1244: -4,23 - 1245: -4,24 - 1252: -14,27 - 1253: -14,28 - - node: - color: '#D56F18EF' - id: BrickTileWhiteLineE - decals: - 940: 8,24 - 941: 8,23 - 942: 8,22 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineE - decals: - 76: 2,79 - 567: -9,51 - 568: -9,52 - 569: -9,53 - 570: -9,54 - 571: -9,55 - 572: -9,56 - 573: -9,57 - 574: -9,58 - 575: -9,59 - 576: -9,60 - 609: -7,50 - 610: -7,49 - 611: -7,48 - 612: -7,47 - 656: -6,57 - 657: -6,56 - 658: -6,55 - 659: -6,54 - 660: -6,53 - 661: -6,52 - 2192: -35,-6 - 2193: -35,-5 - 2194: -35,-4 - 2195: -35,-3 - 2196: -35,-2 - 2197: -35,-1 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineE - decals: - 1383: -8,-16 - 1384: -8,-15 - 1385: -8,-14 - 1386: -8,-13 - 1743: 13,-21 - 1744: 13,-22 - 1745: 13,-23 - 1746: 13,-25 - 1747: 13,-26 - 1748: 13,-27 - 1749: 13,-28 - 1750: 13,-29 - 1751: 13,-30 - 1752: 13,-31 - 1753: 13,-35 - 1754: 13,-36 - 1755: 13,-37 - 1756: 13,-38 - 1953: -11,-19 - 1954: -11,-20 - 2028: 7,-26 - 2029: 7,-25 - 2030: 7,-24 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineE - decals: - 843: 16,18 - 844: 16,19 - 845: 16,20 - 875: 12,27 - 876: 12,26 - 877: 12,25 - 878: 12,24 - 879: 12,23 - 880: 12,22 - 910: 11,24 - 911: 11,25 - 912: 11,26 - 919: 8,22 - 920: 8,23 - 921: 8,24 - 964: 7,31 - 965: 7,32 - 966: 7,33 - 1010: 6,32 - 1228: -4,22 - 1229: -4,23 - 1230: -4,24 - 5331: 3,29 - 5332: 3,30 - 5333: 3,31 - 5334: 3,32 - 5335: 3,33 - 5336: 3,34 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineN - decals: - 52: -3,80 - 450: 2,74 - 451: 3,74 - 452: 4,74 - 453: 6,74 - 454: 5,74 - 455: 7,74 - 1909: 17,-22 - 5119: 17,-15 - 5134: 20,-15 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineN - decals: - 58: 4,82 - 887: 11,28 - 888: 10,28 - 889: 9,28 - 890: 7,28 - 891: 8,28 - 892: 6,28 - 985: 4,34 - 986: 5,34 - 993: 6,34 - 1266: 18,34 - 1267: 20,34 - 1268: 19,34 - 1269: 21,34 - 1821: 1,19 - 1822: 2,19 - 1823: 3,19 - 1851: 14,29 - 1852: 15,29 - 1853: 16,29 - 5122: 15,-17 - 5129: 22,-17 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineN - decals: - 5121: 15,-15 - 5136: 22,-15 - - node: - color: '#A4610696' - id: BrickTileWhiteLineN - decals: - 2082: -37,11 - 2083: -36,11 - 2084: -35,11 - 2137: -35,7 - 2138: -34,7 - 5120: 16,-15 - 5135: 21,-15 - 5222: -46,28 - 5223: -45,28 - - node: - color: '#D381C996' - id: BrickTileWhiteLineN - decals: - 1065: -21,34 - 1066: -20,34 - 1067: -19,34 - 1068: -18,34 - 1069: -17,34 - 1159: -11,25 - 1160: -12,25 - 1161: -13,25 - 1162: -14,25 - 1163: -15,25 - 1164: -16,25 - 1165: -17,25 - 1166: -18,25 - 1167: -19,25 - 1168: -20,25 - 1169: -21,25 - 1200: -17,22 - 1836: -5,19 - 1837: -4,19 - 1838: -3,19 - - node: - color: '#D4D4D426' - id: BrickTileWhiteLineN - decals: - 5147: 18,-12 - 5148: 19,-12 - - node: - color: '#D56F18EF' - id: BrickTileWhiteLineN - decals: - 936: 3,25 - 937: 4,25 - 938: 5,25 - 939: 6,25 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineN - decals: - 75: 1,80 - 595: -20,42 - 596: -19,42 - 597: -18,42 - 598: -17,42 - 599: -16,42 - 623: -5,49 - 632: -4,49 - 638: -23,48 - 639: -22,48 - 674: -15,50 - 675: -14,50 - 676: -13,50 - 677: -12,50 - 2172: -3,57 - 2214: 26,-12 - 2215: 27,-12 - 2216: 28,-12 - 2217: 29,-12 - 2218: 30,-12 - 2264: 41,44 - 2265: 42,44 - 2266: 43,44 - 2267: 44,44 - 5123: 16,-17 - 5130: 21,-17 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineN - decals: - 72: -6,82 - 1388: -9,-12 - 1389: -10,-12 - 1390: -11,-12 - 1391: -12,-12 - 1392: -13,-12 - 1393: -14,-12 - 1394: -15,-12 - 1412: 7,-12 - 1413: 8,-12 - 1414: 9,-12 - 1415: 10,-12 - 1416: 11,-12 - 1417: 12,-12 - 1418: 13,-12 - 1779: 7,-18 - 1780: 6,-18 - 1781: 5,-18 - 1948: -15,-18 - 1949: -14,-18 - 1950: -13,-18 - 1951: -12,-18 - 5124: 17,-17 - 5133: 20,-17 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineN - decals: - 868: 6,28 - 869: 7,28 - 870: 8,28 - 871: 9,28 - 872: 10,28 - 873: 11,28 - 922: 6,25 - 923: 5,25 - 924: 4,25 - 925: 3,25 - 958: 4,24 - 967: 5,34 - 968: 4,34 - 987: 6,34 - 1011: 5,33 - 1235: -6,23 - 5328: 4,28 - 5329: 3,28 - 5330: 2,28 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineS - decals: - 400: -3,76 - 401: -4,76 - 402: -5,76 - 403: -6,76 - 404: -7,76 - 405: -8,76 - 406: -9,76 - 407: 1,76 - 408: 2,76 - 409: 3,76 - 410: 4,76 - 411: 5,76 - 412: 6,76 - 413: 7,76 - 444: 2,70 - 445: 3,70 - 446: 4,70 - 447: 6,70 - 448: 5,70 - 449: 7,70 - 1910: 17,-26 - 1915: 18,-10 - 1916: 19,-10 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineS - decals: - 893: 6,27 - 894: 7,27 - 895: 9,26 - 995: 6,30 - 996: 5,30 - 1848: 14,27 - 1849: 15,27 - 1850: 16,27 - 5127: 15,-15 - 5128: 22,-15 - - node: - color: '#5A5A605A' - id: BrickTileWhiteLineS - decals: - 3: -2,76 - 4: -1,76 - 5: 0,76 - - node: - color: '#5A5A60FF' - id: BrickTileWhiteLineS - decals: - 6: -2,76 - 7: -1,76 - 8: 0,76 - - node: - color: '#A4610696' - id: BrickTileWhiteLineS - decals: - 2079: -37,9 - 2080: -36,9 - 2081: -35,9 - 2132: -34,4 - 2133: -35,4 - 5220: -45,27 - 5221: -46,27 - - node: - color: '#D381C996' - id: BrickTileWhiteLineS - decals: - 1052: -14,30 - 1053: -15,30 - 1054: -16,30 - 1055: -17,30 - 1056: -18,30 - 1060: -20,32 - 1061: -21,32 - 1212: -10,17 - 1213: -9,17 - 1214: -8,17 - 1238: -8,21 - 1239: -7,21 - 1240: -6,21 - 1241: -5,21 - 5137: 16,-17 - 5142: 21,-17 - - node: - color: '#D4D4D428' - id: BrickTileWhiteLineS - decals: - 5140: 15,-17 - 5141: 22,-17 - - node: - color: '#D4D4D496' - id: BrickTileWhiteLineS - decals: - 5138: 17,-17 - 5139: 20,-17 - - node: - color: '#D56F18EF' - id: BrickTileWhiteLineS - decals: - 943: 3,21 - 944: 4,21 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineS - decals: - 551: -19,44 - 552: -18,44 - 553: -17,44 - 554: -16,44 - 555: -15,44 - 556: -14,44 - 557: -13,44 - 558: -12,44 - 559: -11,44 - 560: -10,44 - 561: -9,44 - 562: -8,44 - 563: -7,44 - 564: -6,44 - 565: -5,44 - 566: -4,44 - 600: -20,40 - 601: -19,40 - 602: -18,40 - 603: -17,40 - 604: -16,40 - 624: -5,49 - 633: -4,49 - 640: -23,47 - 641: -22,47 - 646: -17,58 - 647: -16,58 - 648: -15,58 - 649: -14,58 - 670: -15,48 - 671: -14,48 - 672: -13,48 - 673: -12,48 - 688: -8,62 - 689: -9,62 - 690: -10,62 - 2179: -3,52 - 2219: 26,-14 - 2220: 27,-14 - 2221: 28,-14 - 2222: 29,-14 - 2223: 30,-14 - 2268: 41,42 - 2269: 42,42 - 2270: 43,42 - 2271: 44,42 - 5126: 16,-15 - 5131: 21,-15 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineS - decals: - 2025: 6,-27 - 2026: 5,-27 - 2027: 4,-27 - 5125: 17,-15 - 5132: 20,-15 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineS - decals: - 846: 15,17 - 847: 14,17 - 848: 13,17 - 849: 12,17 - 850: 11,17 - 851: 10,17 - 852: 9,17 - 853: 7,17 - 854: 8,17 - 863: 9,26 - 866: 7,27 - 867: 6,27 - 917: 3,21 - 918: 4,21 - 961: 5,30 - 962: 6,30 - 1012: 5,31 - 1224: -6,21 - 1225: -5,21 - 1234: -6,22 - 1236: -7,21 - 1237: -8,21 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineW - decals: - 51: -4,79 - 440: -2,74 - 441: -2,73 - 442: -2,71 - 443: -2,70 - 2365: 29,4 - 2366: 29,5 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineW - decals: - 899: 10,25 - 900: 10,24 - 901: 10,23 - 902: 10,22 - 1270: 18,29 - 1271: 18,28 - 1272: 18,27 - 1273: 18,26 - - node: - color: '#A4610696' - id: BrickTileWhiteLineW - decals: - 62: 0,82 - 2116: -41,11 - 2117: -41,10 - 2118: -41,9 - 2119: -41,8 - 2120: -41,7 - 2121: -41,3 - 2122: -44,-1 - 2123: -44,-2 - 2124: -44,-3 - 2135: -36,6 - 2158: -40,30 - 2159: -40,29 - 2160: -40,20 - 2161: -40,19 - 2162: -40,18 - 2163: -40,17 - 5202: -43,26 - 5203: -43,25 - 5204: -43,24 - 5205: -43,23 - 5206: -43,22 - 5207: -43,21 - - node: - color: '#D381C996' - id: BrickTileWhiteLineW - decals: - 67: -3,82 - 1058: -19,31 - 1063: -22,33 - 1171: -22,24 - 1172: -22,23 - 1173: -22,22 - 1174: -22,21 - 1175: -22,20 - 1176: -22,19 - 1177: -22,18 - 1178: -22,17 - 1192: -19,17 - 1193: -19,18 - 1194: -19,19 - 1195: -19,20 - 1196: -18,21 - 1839: -6,18 - 1840: -6,17 - 1841: -6,16 - - node: - color: '#D56F18EF' - id: BrickTileWhiteLineW - decals: - 932: 2,22 - 933: 2,23 - 934: 2,24 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineW - decals: - 74: 0,79 - 577: -12,60 - 578: -12,59 - 579: -12,58 - 580: -12,57 - 581: -17,56 - 582: -17,55 - 583: -17,54 - 584: -20,53 - 585: -20,52 - 586: -20,51 - 587: -20,50 - 588: -20,49 - 589: -20,48 - 590: -20,47 - 591: -20,46 - 592: -20,45 - 681: -7,61 - 682: -7,60 - 683: -7,59 - 2174: -4,56 - 2175: -4,55 - 2176: -4,54 - 2177: -4,53 - 2198: -37,-6 - 2199: -37,-5 - 2200: -37,-4 - 2201: -37,-3 - 2202: -37,-2 - 2203: -37,-1 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineW - decals: - 73: -7,81 - 1407: 6,-16 - 1408: 6,-15 - 1409: 6,-14 - 1410: 6,-13 - 1757: 11,-38 - 1758: 11,-37 - 1759: 11,-36 - 1760: 4,-35 - 1761: 4,-34 - 1762: 4,-33 - 1763: 9,-27 - 1764: 9,-26 - 1765: 9,-25 - 1766: 9,-24 - 1767: 9,-23 - 1768: 9,-22 - 1769: 9,-21 - 1782: 4,-22 - 1783: 4,-21 - 1784: 4,-20 - 1785: 4,-19 - 1966: -14,-22 - 1967: -14,-23 - 1968: -14,-24 - 1969: -14,-25 - 1970: -14,-32 - 1971: -14,-33 - 1972: -14,-34 - 1973: -14,-35 - 1974: -14,-36 - 1975: -14,-37 - 1976: -14,-38 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineW - decals: - 855: 6,18 - 856: 6,19 - 857: 6,20 - 858: 10,22 - 859: 10,23 - 860: 10,24 - 861: 10,25 - 913: 11,26 - 914: 11,25 - 915: 11,24 - 927: 2,24 - 928: 2,23 - 929: 2,22 - 959: 3,23 - 1013: 4,32 - - node: - color: '#80C71FA4' - id: Busha1 - decals: - 5063: -47.70598,40.43374 - - node: - color: '#80C71FAB' - id: Busha1 - decals: - 2389: 22.65236,20.282064 - - node: - color: '#FFFFFF7F' - id: Busha1 - decals: - 2338: 32.123173,40.915573 - - node: - color: '#80C71FA4' - id: Busha2 - decals: - 5065: -45.230186,40.743168 - - node: - color: '#80C71FCA' - id: Busha2 - decals: - 2388: 22.247696,21.53798 - - node: - color: '#FFFFFF7F' - id: Busha2 - decals: - 2337: 28.87165,40.802044 - 2339: 32.094776,39.978962 - - node: - color: '#FFFFFF7F' - id: Busha3 - decals: - 2340: 28.928446,39.978962 - - node: - color: '#80C71FA4' - id: Bushb1 - decals: - 5062: -46.05545,40.68423 - 5066: -47.396503,39.873817 - - node: - color: '#80C71FCA' - id: Bushb1 - decals: - 2387: 21.225384,20.367212 - - node: - color: '#FFFFFF7F' - id: Bushb1 - decals: - 2341: 28.857452,41.01491 - 2342: 32.123173,41.043293 - - node: - color: '#80C71FAB' - id: Bushb3 - decals: - 2390: 26.187859,16.8762 - - node: - color: '#80C71FA4' - id: Bushc2 - decals: - 5064: -45.30387,39.903286 - - node: - color: '#FFFFFF7F' - id: Bushf1 - decals: - 2333: 28.885849,40.418884 - 2334: 32.13737,41.057484 - - node: - color: '#80C71FAB' - id: Bushf2 - decals: - 2391: 26.99719,17.621233 - - node: - color: '#FFFFFF7F' - id: Bushf3 - decals: - 2331: 32.108974,39.865433 - 2332: 28.87165,41.01491 - - node: - color: '#FFFFFF7F' - id: Bushg3 - decals: - 2335: 28.843252,39.879623 - 2336: 32.165768,40.518223 - - node: - color: '#DE3A3A96' - id: CautionGreyscale - decals: - 628: -4.9917116,48.825462 - 629: -3.992663,48.8136 - - node: - angle: 1.5707963267948966 rad - color: '#DE3A3A96' - id: CautionGreyscale - decals: - 693: -22.808884,47.519577 - 694: -21.814968,47.519577 - - node: - color: '#79150096' - id: CheckerNESW - decals: - 1458: -3,11 - 1459: -3,10 - 1460: -3,9 - 1461: -3,8 - 1462: -3,7 - 1463: 1,11 - 1464: 1,10 - 1465: 1,8 - 1466: 1,9 - 1467: 1,7 - 1468: 0,8 - 1469: -1,8 - 1470: -2,8 - 1471: -2,9 - 1472: -1,9 - 1473: 0,9 - 1474: -3,6 - 1475: -3,5 - 1476: -3,4 - 1477: -3,3 - 1478: -2,4 - 1479: -1,4 - 1480: 0,4 - 1481: -2,3 - 1482: -1,3 - 1483: 0,3 - 1484: 1,3 - 1485: 1,4 - 1486: 1,5 - 1487: 1,6 - 1488: -3,2 - 1489: -3,1 - 1490: -3,0 - 1491: -3,-1 - 1492: -3,-2 - 1493: -2,-1 - 1494: -2,-2 - 1495: -1,-2 - 1496: -1,-1 - 1497: 0,-1 - 1498: 0,-2 - 1499: 1,-2 - 1500: 1,-1 - 1501: 1,0 - 1502: 1,1 - 1503: 1,2 - 1504: 1,-3 - 1505: 1,-4 - 1506: 1,-5 - 1507: 1,-6 - 1508: -3,-6 - 1509: -3,-5 - 1510: -3,-4 - 1511: -3,-3 - 1512: -4,-2 - 1513: -5,-2 - 1514: -6,-2 - 1515: -7,-2 - 1516: -7,-1 - 1517: -6,-1 - 1518: -5,-1 - 1519: -4,-1 - 1520: -14,-1 - 1521: -14,-2 - 1522: -13,-2 - 1523: -12,-1 - 1524: -12,-2 - 1525: -13,-1 - 1526: -11,-1 - 1527: -11,-2 - 1528: -10,-2 - 1529: -10,-1 - 1530: -9,-1 - 1531: -9,-2 - 1532: -8,-2 - 1533: -8,-1 - 1534: -14,3 - 1535: -13,3 - 1536: -12,3 - 1537: -11,3 - 1538: -10,3 - 1539: -9,3 - 1540: -8,3 - 1541: -6,3 - 1542: -7,3 - 1543: -5,3 - 1544: -4,3 - 1545: -14,4 - 1546: -13,4 - 1547: -12,4 - 1548: -11,4 - 1549: -4,4 - - node: - color: '#3E5C23A8' - id: CheckerNWSE - decals: - 1594: 6,6 - 1595: 6,7 - 1596: 6,8 - 1597: 6,9 - 1598: 6,10 - 1599: 7,10 - 1600: 8,10 - 1601: 9,10 - 1602: 10,10 - 1603: 10,9 - 1604: 10,8 - 1605: 10,7 - 1606: 10,6 - 1607: 10,5 - 1608: 9,5 - 1609: 8,5 - 1610: 7,5 - 1611: 6,5 - - node: - color: '#79150096' - id: CheckerNWSE - decals: - 1657: 9,-7 - 1658: 10,-7 - 1659: 11,-7 - - node: - color: '#FFFFFFFF' - id: Delivery - decals: - 1291: -13,-30 - 1292: -13,-29 - 1293: -13,-28 - 1294: -13,-27 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Delivery - decals: - 2044: -41,2 - 2045: -41,4 - - node: - color: '#52B4E996' - id: DeliveryGreyscale - decals: - 2307: 27,3 - - node: - color: '#334E6DC8' - id: DiagonalCheckerAOverlay - decals: - 2280: 13,53 - 2281: 13,54 - 2282: 11,54 - 2283: 12,54 - 2284: 12,53 - 2285: 11,53 - 2286: 10,53 - 2287: 10,54 - 2288: 9,54 - 2289: 9,53 - 2290: 8,53 - 2291: 8,54 - - node: - color: '#52B4E996' - id: DiagonalCheckerAOverlay - decals: - 903: 11,23 - 904: 11,24 - 905: 11,25 - 906: 11,26 - 907: 11,27 - 997: 4,31 - 998: 4,32 - 999: 4,33 - 1000: 6,33 - 1001: 6,32 - 1002: 6,31 - 1003: 5,31 - 1004: 5,32 - 1006: 5,33 - - node: - color: '#83543273' - id: Dirt - decals: - 2466: 6,-9 - 2467: 4,-9 - 2468: 2,-9 - 2469: 0,-9 - 2470: -2,-9 - 2471: -4,-9 - 2472: -6,-9 - 2473: -7,-9 - 2474: -9,-9 - 2475: -11,-9 - 2476: -13,-9 - 2477: -15,-9 - 2478: -17,-9 - 2479: -18,-9 - 2480: -19,-9 - 2481: -21,-9 - 2482: -23,-9 - 2483: -25,-9 - 2484: -27,-9 - 2485: -30,-9 - 2486: -32,-9 - 2487: -32,-7 - 2488: -32,-4 - 2489: -32,-1 - 2490: -32,0 - 2491: -32,4 - 2492: -32,8 - 2493: -32,12 - 2494: -32,14 - 2495: -34,14 - 2496: -36,14 - 2497: -38,14 - 2498: -39,14 - 2499: -42,14 - 2500: -44,14 - 2501: -46,14 - 2502: -48,14 - 2503: -50,14 - 2504: -48,14 - 2505: -46,14 - 2506: -44,14 - 2507: -42,14 - 2508: -40,14 - 2509: -38,14 - 2510: -36,14 - 2511: -29,14 - 2512: -27,14 - 2513: -25,14 - 2514: -23,14 - 2515: -21,14 - 2516: -19,14 - 2517: -17,14 - 2518: -15,14 - 2519: -13,14 - 2520: -11,14 - 2521: -9,14 - 2522: -7,14 - 2523: -5,14 - 2524: -3,14 - 2525: -1,14 - 2526: 1,14 - 2527: 3,14 - 2528: 5,14 - 2529: 7,14 - 2530: 9,14 - 2531: 11,14 - 2532: 13,14 - 2533: 15,14 - 2534: 17,14 - 2535: 19,14 - 2536: 21,14 - 2537: 23,14 - 2538: 25,14 - 2539: 27,14 - 2540: 29,14 - 2541: 31,14 - 2542: 33,14 - 2543: 35,14 - 2544: 37,14 - 2545: 39,14 - 2546: 41,14 - 2547: 43,14 - 2548: 45,14 - 2549: 47,14 - 2550: 49,14 - 2551: 30,14 - 2552: 30,15 - 2553: 30,17 - 2554: 30,19 - 2555: 30,22 - 2556: 30,24 - 2557: 30,26 - 2558: 30,28 - 2559: 30,30 - 2560: 30,32 - 2561: 30,34 - 2562: 31,28 - 2563: 31,24 - 2564: 31,20 - 2565: 32,19 - 2566: 31,10 - 2567: 31,6 - 2568: 30,5 - 2569: 28,3 - - node: - cleanable: True - color: '#83543273' - id: Dirt - decals: - 2570: 27,3 - 2571: 27,4 - 2572: 27,5 - 2573: 27,6 - 2574: 28,6 - 2575: 29,6 - 2576: 29,5 - 2577: 31,5 - 2578: 32,6 - 2579: 32,11 - 2580: 32,14 - 2581: 26,14 - 2582: 21,14 - 2583: 18,14 - 2584: 16,14 - 2585: 14,14 - 2586: 10,14 - 2587: 5,14 - 2588: 2,14 - 2589: -4,14 - 2590: -7,14 - 2591: -10,14 - 2592: -13,14 - 2593: -15,14 - 2594: -19,14 - 2595: -21,14 - 2596: -26,14 - 2597: -28,13 - 2598: -30,13 - 2599: -33,14 - 2600: -35,14 - 2601: -37,13 - 2602: -39,14 - 2603: -41,14 - 2604: -39,15 - 2605: -38,15 - 2606: -37,14 - 2607: -48,13 - 2608: -50,13 - 2609: -51,15 - 2610: -51,13 - 2611: -53,13 - 2612: -53,15 - 2613: -51,14 - 2614: -34,4 - 2615: -34,6 - 2616: -34,7 - 2617: -34,5 - 2618: -36,5 - 2619: -36,4 - 2620: -36,6 - 2621: -36,7 - 2622: -35,7 - 2623: -31,7 - 2624: -31,6 - 2625: -31,4 - 2626: -34,4 - 2627: -36,2 - 2628: -37,2 - 2629: -39,2 - 2630: -41,1 - 2631: -41,0 - 2632: -40,0 - 2633: -40,1 - 2634: -42,2 - 2635: -43,2 - 2636: -44,2 - 2637: -45,2 - 2638: -44,4 - 2639: -43,4 - 2640: -43,4 - 2641: -42,4 - 2642: -40,4 - 2643: -39,6 - 2644: -39,5 - 2645: -40,6 - 2646: -41,8 - 2647: -41,10 - 2648: -41,10 - 2649: -39,7 - 2650: -38,7 - 2651: -41,-1 - 2652: -42,-3 - 2653: -41,-3 - 2654: -42,-4 - 2655: -41,-4 - 2656: -42,-5 - 2657: -42,-6 - 2658: -41,-7 - 2659: -42,-8 - 2660: -44,-8 - 2661: -43,-6 - 2662: -40,-6 - 2663: -39,-6 - 2664: -39,-8 - 2665: -41,-8 - 2666: -39,-5 - 2667: -42,-2 - 2668: -42,-1 - 2669: -39,-2 - 2670: -39,1 - 2671: -37,1 - 2672: -36,-3 - 2673: -35,-5 - 2674: -35,-5 - 2675: -37,-3 - 2676: -40,-2 - 2677: -35,-6 - 2678: -36,-5 - 2679: -36,-4 - 2680: -37,-3 - 2681: -37,-2 - 2682: -33,-5 - 2683: -32,-5 - 2684: -33,-5 - 2685: -32,-3 - 2686: -32,-2 - 2687: -32,1 - 2688: -32,4 - 2689: -32,8 - 2690: -32,5 - 2691: -32,6 - 2692: -33,7 - 2693: -33,6 - 2694: -33,4 - 2695: -33,3 - 2696: -32,2 - 2697: -32,3 - 2698: -31,0 - 2699: -31,1 - 2700: -32,-6 - 2701: -31,-7 - 2702: -31,-8 - 2703: -30,-8 - 2704: -29,-9 - 2705: -28,-9 - 2706: -27,-8 - 2707: -28,-8 - 2708: -27,-9 - 2709: -28,-10 - 2710: -27,-10 - 2711: -29,-10 - 2712: -25,-9 - 2713: -21,-9 - 2714: -19,-9 - 2715: -17,-9 - 2716: -14,-9 - 2717: -11,-9 - 2718: -9,-9 - 2719: -6,-9 - 2720: -4,-9 - 2721: -2,-9 - 2722: 2,-9 - 2723: 4,-9 - 2724: 6,-9 - 2725: 9,-9 - 2726: 11,-9 - 2727: 13,-9 - 2728: 15,-9 - 2729: 18,-9 - 2730: 20,-9 - 2731: 23,-9 - 2732: 25,-9 - 2733: 27,-9 - 2734: 30,-9 - 2735: 32,-9 - 2736: 35,-9 - 2737: 37,-9 - 2738: 39,-9 - 2739: 42,-9 - 2740: 44,-9 - 2741: 46,-9 - 2742: 48,-9 - 2743: 46,-10 - 2744: 46,-9 - 2745: 47,-9 - 2746: 48,-10 - 2747: 49,-10 - 2748: 49,-9 - 2749: 50,-8 - 2750: 51,-8 - 2751: 50,-8 - 2752: 50,-10 - 2753: 48,-10 - 2754: 44,-10 - 2755: 38,-10 - 2756: 39,-10 - 2757: 41,-10 - 2758: 40,-9 - 2759: 38,-9 - 2760: 38,-10 - 2761: 37,-9 - 2762: 34,-8 - 2763: 33,-8 - 2764: 32,-8 - 2765: 32,-7 - 2766: 30,-8 - 2767: 30,-7 - 2768: 29,-8 - 2769: 29,-10 - 2770: 30,-10 - 2771: 26,-11 - 2772: 27,-10 - 2773: 27,-11 - 2774: 27,-12 - 2775: 27,-13 - 2776: 28,-13 - 2777: 28,-14 - 2778: 28,-15 - 2779: 27,-14 - 2780: 28,-14 - 2781: 27,-9 - 2782: 30,-5 - 2783: 30,-2 - 2784: 32,-2 - 2785: 31,-3 - 2786: 30,-4 - 2787: 30,-4 - 2788: 31,-6 - 2789: 32,-5 - 2790: 30,-1 - 2791: 30,2 - 2792: 29,3 - 2793: 33,3 - 2794: 34,0 - 2795: 34,2 - 2796: 34,5 - 2797: 34,1 - 2798: 32,0 - 2799: 29,4 - 2800: 31,8 - 2801: 32,11 - 2802: 30,14 - 2803: 35,13 - 2804: 39,12 - 2805: 42,14 - 2806: 45,14 - 2807: 50,13 - 2808: 51,13 - 2809: 51,15 - 2810: 50,15 - 2811: 51,15 - 2812: 49,15 - 2813: 48,15 - 2814: 48,17 - 2815: 48,17 - 2816: 48,15 - 2817: 46,15 - 2818: 46,16 - 2819: 46,17 - 2820: 46,15 - 2821: 45,13 - 2822: 48,13 - 2823: 50,13 - 2824: 49,13 - 2825: 46,13 - 2826: 42,13 - 2827: 40,14 - 2828: 39,14 - 2829: 36,13 - 2830: 34,15 - 2831: 31,14 - 2832: 30,13 - 2833: 27,13 - 2834: 26,14 - 2835: 24,15 - 2836: 22,14 - 2837: 21,13 - 2838: 30,16 - 2839: 31,18 - 2840: 29,20 - 2841: 31,22 - 2842: 30,24 - 2843: 28,26 - 2844: 29,26 - 2845: 28,26 - 2846: 28,28 - 2847: 27,25 - 2848: 28,25 - 2849: 28,25 - 2850: 29,25 - 2851: 28,28 - 2852: 29,32 - 2853: 29,32 - 2854: 29,33 - 2855: 27,33 - 2856: 27,32 - 2857: 26,32 - 2858: 25,33 - 2859: 25,35 - 2860: 25,35 - 2861: 26,35 - 2862: 25,36 - 2863: 27,36 - 2864: 25,36 - 2865: 26,36 - 2866: 27,36 - 2867: 30,36 - 2868: 30,37 - 2869: 30,38 - 2870: 31,41 - 2871: 30,41 - 2872: 31,40 - 2873: 30,44 - 2874: 30,45 - 2875: 31,46 - 2876: 31,44 - 2877: 30,47 - 2878: 31,49 - 2879: 32,47 - 2880: 35,47 - 2881: 34,48 - 2882: 31,47 - 2883: 28,47 - 2884: 27,47 - 2885: 27,45 - 2886: 27,43 - 2887: 27,47 - 2888: 27,49 - 2889: 29,47 - 2890: 31,48 - 2891: 32,37 - 2892: 34,37 - 2893: 37,37 - 2894: 41,38 - 2895: 46,37 - 2896: 34,38 - 2897: 34,38 - 2898: 36,38 - 2899: 35,38 - 2900: 35,37 - 2901: 39,37 - 2902: 45,36 - 2903: 41,37 - 2904: 41,39 - 2905: 43,40 - 2906: 42,40 - 2907: 41,40 - 2908: 42,40 - 2909: 41,40 - 2910: 45,40 - 2911: 47,41 - 2912: 47,43 - 2913: 47,44 - 2914: 46,42 - 2915: 47,38 - 2916: 47,37 - 2917: 48,40 - 2918: 48,38 - 2919: 49,37 - 2920: 49,36 - 2921: 50,38 - 2922: 51,38 - 2923: 51,38 - 2924: 48,38 - 2925: 51,36 - 2926: 50,36 - 2927: 49,36 - 2928: 51,36 - 2929: 49,38 - 2930: 48,36 - 2931: 48,35 - 2932: 48,35 - 2933: 49,34 - 2934: 47,35 - 2935: 44,36 - 2936: 46,35 - 2937: 46,35 - 2938: 46,36 - 2939: 46,34 - 2940: 46,34 - 2941: 46,37 - 2942: 43,36 - 2943: 43,36 - 2944: 45,38 - 2945: 44,38 - 2946: 45,39 - 2947: 42,39 - 2948: 46,37 - 2949: 43,37 - 2950: 41,37 - 2951: 44,38 - 2952: 45,38 - 2953: 38,37 - 2954: 41,37 - 2955: 42,37 - 2956: 40,37 - 2957: 42,39 - 2958: 41,40 - 2959: 45,43 - 2960: 45,43 - 2961: 44,43 - 2962: 41,43 - 2963: 41,43 - 2964: 43,43 - 2965: 44,43 - 2966: 41,43 - 2967: 44,42 - 2968: 43,42 - 2969: 27,37 - 2970: 25,38 - 2971: 24,38 - 2972: 25,38 - 2973: 26,38 - 2974: 22,40 - 2975: 22,42 - 2976: 20,42 - 2977: 18,41 - 2978: 17,40 - 2979: 18,39 - 2980: 19,41 - 2981: 22,41 - 2982: 22,40 - 2983: 24,38 - 2984: 17,38 - 2985: 14,39 - 2986: 14,41 - 2987: 14,42 - 2988: 13,42 - 2989: 12,44 - 2990: 12,45 - 2991: 14,45 - 2992: 16,46 - 2993: 17,46 - 2994: 18,46 - 2995: 18,45 - 2996: 18,45 - 2997: 18,46 - 2998: 17,46 - 2999: 18,45 - 3000: 20,45 - 3001: 21,45 - 3002: 21,46 - 3003: 21,47 - 3004: 21,48 - 3005: 20,49 - 3006: 16,50 - 3007: 15,47 - 3008: 15,48 - 3009: 15,49 - 3010: 14,44 - 3011: 15,37 - 3012: 13,38 - 3013: 11,38 - 3014: 7,38 - 3015: 12,38 - 3016: 12,38 - 3017: 7,36 - 3018: 3,36 - 3019: 0,36 - 3020: 0,37 - 3021: 5,37 - 3022: 4,37 - 3023: -5,37 - 3024: -9,37 - 3025: -12,37 - 3026: -13,37 - 3027: -7,37 - 3028: -6,37 - 3029: -13,38 - 3030: -18,37 - 3031: -22,37 - 3032: -27,37 - 3033: -29,37 - 3034: -13,42 - 3035: -14,42 - 3036: -14,41 - 3037: -13,41 - 3038: -13,42 - 3039: -15,40 - 3040: -13,40 - 3041: -13,41 - 3042: -14,40 - 3043: -14,40 - 3044: -13,42 - 3045: -13,42 - 3046: -14,40 - 3047: -13,42 - 3048: -11,42 - 3049: -10,41 - 3050: -11,40 - 3051: -11,42 - 3052: -11,41 - 3053: -10,41 - 3054: -11,42 - 3055: -11,40 - 3056: -10,40 - 3057: -10,42 - 3058: -10,40 - 3059: -10,41 - 3060: -10,42 - 3061: -10,42 - 3062: -10,42 - 3063: -7,42 - 3064: -7,41 - 3065: -7,40 - 3066: -7,42 - 3067: -7,40 - 3068: -7,40 - 3069: -8,42 - 3070: -7,40 - 3071: -7,42 - 3072: -8,41 - 3073: -7,42 - 3074: -7,42 - 3075: -4,42 - 3076: -4,41 - 3077: -5,41 - 3078: -5,40 - 3079: -4,40 - 3080: -4,41 - 3081: -5,42 - 3082: -5,42 - 3083: -4,40 - 3084: -4,40 - 3085: -5,42 - 3086: -5,40 - 3087: -4,42 - 3088: -4,42 - 3089: -4,42 - 3090: -5,41 - 3091: -4,44 - 3092: -5,45 - 3093: -7,45 - 3094: -9,46 - 3095: -6,44 - 3096: -8,45 - 3097: -7,44 - 3098: -8,46 - 3099: -12,46 - 3100: -10,44 - 3101: -11,45 - 3102: -13,46 - 3103: -11,45 - 3104: -10,43 - 3105: -13,45 - 3106: -12,43 - 3107: -14,45 - 3108: -15,46 - 3109: -13,44 - 3110: -16,46 - 3111: -14,45 - 3112: -17,46 - 3113: -18,47 - 3114: -18,50 - 3115: -17,52 - 3116: -17,46 - 3117: -18,48 - 3118: -19,48 - 3119: -20,47 - 3120: -20,48 - 3121: -22,48 - 3122: -22,47 - 3123: -23,47 - 3124: -23,48 - 3125: -24,48 - 3126: -22,49 - 3127: -23,46 - 3128: -24,46 - 3129: -22,46 - 3130: -22,49 - 3131: -23,49 - 3132: -22,46 - 3133: -25,48 - 3134: -26,47 - 3135: -26,47 - 3136: -25,48 - 3137: -29,47 - 3138: -29,48 - 3139: -28,48 - 3140: -29,47 - 3141: -28,48 - 3142: -31,47 - 3143: -32,48 - 3144: -36,48 - 3145: -35,47 - 3146: -33,47 - 3147: -34,48 - 3148: -35,48 - 3149: -32,48 - 3150: -32,46 - 3151: -32,45 - 3152: -32,43 - 3153: -34,43 - 3154: -35,43 - 3155: -30,42 - 3156: -30,43 - 3157: -36,43 - 3158: -35,43 - 3159: -31,42 - 3160: -30,43 - 3161: -34,43 - 3162: -27,42 - 3163: -28,43 - 3164: -28,45 - 3165: -29,45 - 3166: -29,44 - 3167: -29,43 - 3168: -18,49 - 3169: -18,52 - 3170: -16,54 - 3171: -15,55 - 3172: -14,53 - 3173: -11,54 - 3174: -10,56 - 3175: -11,58 - 3176: -10,59 - 3177: -11,59 - 3178: -12,59 - 3179: -14,59 - 3180: -16,59 - 3181: -14,59 - 3182: -14,59 - 3183: -12,59 - 3184: -11,58 - 3185: -10,59 - 3186: -9,59 - 3187: -7,59 - 3188: -6,60 - 3189: -7,59 - 3190: -7,60 - 3191: -7,61 - 3192: -7,62 - 3193: -9,63 - 3194: -9,64 - 3195: -9,62 - 3196: -6,63 - 3197: -9,58 - 3198: -9,54 - 3199: -9,53 - 3200: -8,55 - 3201: -7,56 - 3202: -7,54 - 3203: -6,53 - 3204: -7,53 - 3205: -8,55 - 3206: -11,55 - 3207: -9,51 - 3208: -10,50 - 3209: -6,50 - 3210: -3,50 - 3211: -2,50 - 3212: -5,50 - 3213: -8,50 - 3214: -6,50 - 3215: -2,50 - 3216: -2,50 - 3217: -4,50 - 3218: -4,50 - 3219: -2,51 - 3220: -2,51 - 3221: -4,53 - 3222: -4,53 - 3223: -4,54 - 3224: -1,52 - 3225: -1,54 - 3226: 0,57 - 3227: 0,60 - 3228: 0,56 - 3229: 0,54 - 3230: 0,52 - 3231: -2,53 - 3232: -1,56 - 3233: -2,59 - 3234: -1,60 - 3235: -1,64 - 3236: -1,66 - 3237: 0,68 - 3238: 0,67 - 3239: 0,66 - 3240: 0,62 - 3241: 0,59 - 3242: -2,61 - 3243: -1,66 - 3244: -1,69 - 3245: -2,65 - 3246: -1,68 - 3247: -2,71 - 3248: -2,74 - 3249: -1,77 - 3250: 0,67 - 3251: 0,71 - 3252: 0,75 - 3253: 0,78 - 3254: -3,77 - 3255: -5,78 - 3256: -4,79 - 3257: -3,80 - 3258: -4,78 - 3259: -6,77 - 3260: -6,80 - 3261: -4,81 - 3262: -1,81 - 3263: 1,82 - 3264: 3,81 - 3265: 4,81 - 3266: 4,78 - 3267: 5,77 - 3268: 6,76 - 3269: 2,76 - 3270: 1,78 - 3271: -1,79 - 3272: -4,78 - 3273: 1,79 - 3274: 2,79 - 3275: 2,80 - 3276: 4,80 - 3277: 4,78 - 3278: -2,77 - 3279: -6,78 - 3280: -6,80 - 3281: -4,82 - 3282: -8,76 - 3283: -8,75 - 3284: -6,76 - 3285: -6,74 - 3286: -9,72 - 3287: -8,72 - 3288: -9,71 - 3289: -9,70 - 3290: -9,69 - 3291: -8,70 - 3292: -8,69 - 3293: -9,69 - 3294: -9,72 - 3295: -6,75 - 3296: -6,76 - 3297: 1,67 - 3298: 4,67 - 3299: 8,67 - 3300: 9,68 - 3301: 10,69 - 3302: 13,69 - 3303: 7,66 - 3304: 6,67 - 3305: 7,66 - 3306: 9,67 - 3307: 7,66 - 3308: 6,66 - 3309: 9,66 - 3310: 8,66 - 3311: 1,67 - 3312: -1,66 - 3313: 0,62 - 3314: -1,59 - 3315: 1,56 - 3316: 3,55 - 3317: 2,56 - 3318: 3,56 - 3319: 4,56 - 3320: 5,55 - 3321: 7,53 - 3322: 10,53 - 3323: 11,53 - 3324: 14,54 - 3325: 13,55 - 3326: 10,54 - 3327: 7,54 - 3328: 6,52 - 3329: 8,52 - 3330: 11,52 - 3331: 13,52 - 3332: 14,52 - 3333: 11,52 - 3334: 7,52 - 3335: 5,53 - 3336: 3,53 - 3337: 4,53 - 3338: 1,53 - 3339: 0,52 - 3340: 2,52 - 3341: 4,53 - 3342: 0,53 - 3343: 0,50 - 3344: -1,50 - 3345: -1,49 - 3346: -1,47 - 3347: -1,45 - 3348: -1,47 - 3349: -3,48 - 3350: -2,47 - 3351: -2,47 - 3352: -2,48 - 3353: -1,48 - 3354: -1,46 - 3355: -1,44 - 3356: -1,44 - 3357: -2,40 - 3358: -2,39 - 3359: -3,38 - 3360: -4,37 - 3361: -2,38 - 3362: -2,40 - 3363: -2,38 - 3364: -4,38 - 3365: 0,40 - 3366: 0,38 - 3367: 2,37 - 3368: 1,38 - 3369: 0,39 - 3370: -1,40 - 3371: -1,41 - 3372: -1,43 - 3373: -1,44 - 3374: -1,44 - 3375: 1,37 - 3376: 2,37 - 3377: 5,37 - 3378: 10,37 - 3379: 5,37 - 3380: 12,37 - 3381: 15,37 - 3382: 20,37 - 3383: 20,37 - 3384: 11,37 - 3385: 2,37 - 3386: -1,35 - 3387: -1,33 - 3388: -1,31 - 3389: -1,29 - 3390: -1,28 - 3391: -1,28 - 3392: -1,26 - 3393: -1,24 - 3394: -1,22 - 3395: -1,21 - 3396: -1,20 - 3397: -1,18 - 3398: -5,18 - 3399: -6,18 - 3400: -7,18 - 3401: -6,17 - 3402: -7,17 - 3403: -10,17 - 3404: -12,17 - 3405: -9,17 - 3406: -7,17 - 3407: -11,18 - 3408: -9,18 - 3409: -8,17 - 3410: -10,17 - 3411: -6,17 - 3412: -3,17 - 3413: 1,17 - 3414: 5,17 - 3415: 6,17 - 3416: 3,18 - 3417: 10,18 - 3418: 5,18 - 3419: 8,18 - 3420: 12,18 - 3421: 16,18 - 3422: 16,19 - 3423: 15,20 - 3424: 15,20 - 3425: 15,19 - 3426: 14,20 - 3427: 15,20 - 3428: 16,19 - 3429: 10,18 - 3430: 7,18 - 3431: 6,18 - 3432: 5,17 - 3433: 11,19 - 3434: 11,20 - 3435: 11,23 - 3436: 11,22 - 3437: 11,21 - 3438: 10,23 - 3439: 10,24 - 3440: 10,26 - 3441: 11,27 - 3442: 11,25 - 3443: 10,26 - 3444: 9,27 - 3445: 7,28 - 3446: 6,28 - 3447: 8,27 - 3448: 6,25 - 3449: 4,23 - 3450: 3,22 - 3451: 7,23 - 3452: 5,24 - 3453: 3,24 - 3454: 7,27 - 3455: 6,28 - 3456: 6,30 - 3457: 6,33 - 3458: 5,34 - 3459: 4,33 - 3460: 4,32 - 3461: 4,31 - 3462: 4,29 - 3463: 3,27 - 3464: 4,27 - 3465: 4,27 - 3466: 4,29 - 3467: 5,32 - 3468: 5,33 - 3469: 6,31 - 3470: 6,29 - 3471: 7,29 - 3472: 7,31 - 3473: 8,28 - 3474: 11,28 - 3475: 11,28 - 3476: 13,28 - 3477: 15,28 - 3478: 12,28 - 3479: 14,28 - 3480: 19,29 - 3481: 19,30 - 3482: 19,29 - 3483: 19,31 - 3484: 19,32 - 3485: 20,33 - 3486: 20,34 - 3487: 20,33 - 3488: 19,31 - 3489: 18,31 - 3490: 18,33 - 3491: 18,27 - 3492: 19,26 - 3493: 22,27 - 3494: 21,26 - 3495: 21,26 - 3496: 21,27 - 3497: 21,28 - 3498: 20,32 - 3499: 20,33 - 3500: 20,33 - 3501: 19,32 - 3502: 19,31 - 3503: 19,34 - 3504: 19,34 - 3505: 20,33 - 3506: 20,31 - 3507: 20,31 - 3508: 20,32 - 3509: 20,33 - 3510: 20,34 - 3511: 20,32 - 3512: 19,32 - 3513: 19,34 - 3514: 19,31 - 3515: 14,17 - 3516: 11,22 - 3517: 10,23 - 3518: 10,25 - 3519: 18,14 - 3520: 20,14 - 3521: 25,14 - 3522: 23,14 - 3523: 23,17 - 3524: 25,19 - 3525: 26,21 - 3526: 27,22 - 3527: 26,21 - 3528: 24,19 - 3529: 23,18 - 3530: 22,18 - 3531: 22,19 - 3532: 24,20 - 3533: 26,22 - 3534: 27,22 - 3535: 27,20 - 3536: 24,18 - 3537: 23,18 - 3538: 27,20 - 3539: 26,20 - 3540: 25,18 - 3541: 25,17 - 3542: 24,17 - 3543: 24,16 - 3544: 23,15 - 3545: 23,16 - 3546: 25,16 - 3547: 25,16 - 3548: 24,16 - 3549: 25,17 - 3550: 28,19 - 3551: 29,20 - 3552: 29,21 - 3553: 28,19 - 3554: 28,20 - 3555: 29,21 - 3556: 29,22 - 3557: 27,25 - 3558: 30,31 - 3559: 30,28 - 3560: 31,26 - 3561: 31,19 - 3562: 31,18 - 3563: 33,16 - 3564: 39,14 - 3565: 44,15 - 3566: 19,13 - 3567: 18,13 - 3568: 17,14 - 3569: 17,13 - 3570: 18,13 - 3571: 19,15 - 3572: 18,14 - 3573: 18,15 - 3574: 23,16 - 3575: 22,17 - 3576: 25,21 - 3577: 27,21 - 3578: 28,21 - 3579: 27,19 - 3580: 27,21 - 3581: 25,18 - 3582: 24,17 - 3597: 10,-12 - 3598: 11,-12 - 3599: 11,-13 - 3600: 11,-15 - 3601: 11,-16 - 3602: 12,-17 - 3603: 11,-15 - 3604: 10,-11 - 3605: 8,-14 - 3606: 5,-16 - 3607: 6,-16 - 3608: 10,-12 - 3609: 12,-14 - 3610: 12,-17 - 3611: 12,-18 - 3612: 11,-14 - 3613: 9,-12 - 3614: 9,-13 - 3615: 5,-13 - 3616: 4,-10 - 3617: 4,-11 - 3618: 4,-13 - 3619: 4,-14 - 3620: 2,-14 - 3621: 4,-11 - 3622: 4,-12 - 3623: 3,-13 - 3624: -4,-14 - 3625: -6,-13 - 3626: -6,-11 - 3627: -7,-8 - 3628: -3,-13 - 3629: -6,-11 - 3630: -7,-9 - 3631: -5,-14 - 3632: -5,-10 - 3633: -1,-11 - 3634: 0,-11 - 3635: -5,-14 - 3636: -6,-11 - 3637: -8,-9 - 3638: -12,-9 - 3639: -10,-10 - 3640: -15,-10 - 3641: -19,-10 - 3642: -19,-13 - 3643: -19,-16 - 3644: -19,-19 - 3645: -16,-10 - 3646: -18,-18 - 3647: -19,-19 - 3648: -17,-12 - 3649: -18,-12 - 3650: -18,-13 - 3651: -19,-12 - 3652: -19,-10 - 3653: -17,-10 - 3654: -15,-9 - 3655: -11,-9 - 3656: -20,-10 - 3657: -20,-10 - 3658: -18,-17 - 3659: -17,-19 - 3660: -17,-20 - 3661: -17,-20 - 3662: -9,-14 - 3663: -13,-12 - 3664: -11,-13 - 3665: -10,-15 - 3666: -10,-15 - 3667: -14,-13 - 3668: -10,-13 - 3669: -9,-16 - 3670: -9,-15 - 3671: -10,-16 - 3672: -9,-16 - 3673: -13,-16 - 3674: -13,-15 - 3675: -13,-13 - 3676: -13,-14 - 3677: -13,-18 - 3678: -13,-19 - 3679: -13,-20 - 3680: -14,-19 - 3681: -12,-19 - 3682: -11,-19 - 3683: -15,-19 - 3684: -8,-19 - 3685: -8,-21 - 3686: -10,-23 - 3687: -8,-26 - 3688: -8,-28 - 3689: -7,-30 - 3690: -6,-32 - 3691: -9,-34 - 3692: -6,-36 - 3693: -9,-37 - 3694: -10,-39 - 3695: -10,-41 - 3696: -7,-41 - 3697: -9,-39 - 3698: -10,-36 - 3699: -11,-34 - 3700: -10,-38 - 3701: -10,-41 - 3702: -7,-39 - 3703: -7,-33 - 3732: -14,-38 - 3733: -13,-37 - 3734: -13,-35 - 3735: -13,-32 - 3736: -13,-24 - 3737: -13,-24 - 3738: -12,-23 - 3739: -12,-22 - 3740: -13,-22 - 3741: -13,-22 - 3742: -13,-23 - 3743: -13,-24 - 3744: -12,-25 - 3745: 12,-21 - 3746: 12,-22 - 3747: 12,-23 - 3748: 12,-25 - 3749: 12,-27 - 3750: 12,-29 - 3751: 12,-31 - 3752: 12,-33 - 3753: 12,-35 - 3754: 12,-36 - 3755: 12,-37 - 3756: 12,-38 - 3757: 12,-37 - 3758: 12,-35 - 3759: 12,-33 - 3760: 12,-31 - 3761: 12,-29 - 3762: 12,-27 - 3763: 12,-25 - 3764: 12,-23 - 3765: 12,-21 - 3766: 12,-21 - 3767: 12,-25 - 3768: 12,-27 - 3769: 12,-29 - 3770: 12,-32 - 3771: 12,-34 - 3806: 11,-21 - 3807: 11,-23 - 3808: 11,-25 - 3809: 11,-27 - 3810: 11,-30 - 3811: 11,-32 - 3812: 11,-35 - 3813: 11,-36 - 3814: 11,-35 - 3815: 11,-33 - 3816: 11,-30 - 3817: 11,-27 - 3818: 11,-24 - 3819: 11,-21 - 3820: 13,-24 - 3821: 13,-24 - 3822: 12,-24 - 3823: 11,-24 - 3824: 10,-25 - 3825: 9,-25 - 3826: 10,-25 - 3827: 7,-26 - 3828: 6,-27 - 3829: 4,-26 - 3830: 6,-25 - 3831: 7,-25 - 3832: 10,-21 - 3833: 8,-21 - 3834: 6,-21 - 3835: 5,-20 - 3836: 5,-19 - 3837: 7,-19 - 3839: 7,-18 - 3840: 7,-20 - 3842: 5,-21 - 3843: 5,-21 - 3845: 6,-19 - 3846: 5,-19 - 3847: 6,-20 - 3848: 6,-21 - 3849: 5,-21 - 3854: 10,-21 - 3855: 9,-21 - 3856: 10,-22 - 3857: 9,-22 - 3858: 10,-23 - 3859: 9,-22 - 3860: 11,-22 - 3893: 6,-35 - 3894: 11,-34 - 3895: 7,-37 - 3896: 6,-37 - 3897: 7,-38 - 3898: 7,-37 - 3899: 6,-37 - 3900: 6,-38 - 3901: 6,-38 - 3902: 6,-38 - 3903: 5,-38 - 3904: 4,-40 - 3927: 17,-37 - 3928: 18,-37 - 3929: 18,-37 - 3930: 18,-36 - 3931: 18,-35 - 3932: 18,-35 - 3933: 18,-34 - 3934: 18,-35 - 3935: 18,-35 - 3936: 17,-35 - 3937: 17,-35 - 3938: 17,-34 - 3939: 17,-34 - 3940: 17,-34 - 3941: 17,-34 - 3942: 18,-36 - 3943: 18,-36 - 3944: 18,-36 - 3945: 18,-36 - 3946: 18,-36 - 3957: 15,-41 - 3958: 15,-40 - 3959: 16,-40 - 3960: 16,-41 - 3961: 15,-41 - 3962: 15,-40 - 3963: 15,-38 - 3964: 15,-37 - 3965: 15,-37 - 3966: 15,-38 - 3967: 16,-41 - 3968: 16,-40 - 3969: 15,-41 - 3970: 15,-40 - 3971: 8,-38 - 3972: 9,-39 - 3973: 9,-41 - 3974: 4,-42 - 3975: 4,-39 - 3976: 5,-41 - 3977: -14,-38 - 3978: -13,-35 - 3979: -13,-32 - 3980: -13,-24 - 3981: -12,-23 - 3982: -13,-30 - 3983: -14,-30 - 3984: -16,-27 - 3985: -13,-27 - 3986: -14,-28 - 3987: -16,-29 - 3988: -16,-29 - 3989: -15,-27 - 3990: -13,-28 - 3991: -13,-29 - 3992: -14,-30 - 3993: -13,-29 - 3994: -13,-27 - 3995: -12,-29 - 3996: -7,-6 - 3997: -7,-4 - 3998: -5,-2 - 3999: -2,1 - 4000: -1,4 - 4001: 0,7 - 4002: 2,10 - 4003: 1,8 - 4004: 1,4 - 4005: -3,6 - 4006: -3,11 - 4007: -3,5 - 4008: 1,1 - 4009: -3,-2 - 4010: -1,-5 - 4011: 1,-6 - 4012: 1,-4 - 4013: 1,0 - 4014: 1,4 - 4015: 1,9 - 4016: 2,11 - 4017: 2,7 - 4018: 2,2 - 4019: 3,-2 - 4020: 3,-7 - 4021: 2,-4 - 4022: 1,0 - 4023: 1,5 - 4024: 1,8 - 4025: 1,11 - 4026: -2,11 - 4027: -4,7 - 4028: -4,2 - 4029: -3,-2 - 4030: 7,-5 - 4032: 5,-1 - 4038: 11,-5 - 4039: 11,-3 - 4040: 11,-3 - 4041: 9,-5 - 4042: 8,-5 - 4044: 10,-1 - 4045: 8,-1 - 4047: 11,-1 - 4048: 11,-1 - 4049: 11,-2 - 4050: 11,-1 - 4051: 10,2 - 4052: 10,2 - 4053: 11,2 - 4054: 11,1 - 4055: 10,1 - 4056: 11,1 - 4057: 11,1 - 4058: 12,2 - 4059: 12,2 - 4072: 8,5 - 4073: 7,6 - 4074: 6,8 - 4075: 7,9 - 4076: 9,10 - 4077: 10,9 - 4078: 10,7 - 4079: 7,6 - 4080: 5,11 - 4081: 5,11 - 4082: 5,9 - 4083: 6,6 - 4084: 7,5 - 4085: 11,7 - 4086: 10,10 - 4087: 6,5 - 4088: 5,5 - 4089: 5,5 - 4090: 3,5 - 4091: 4,5 - 4092: 5,5 - 4093: 2,5 - 4094: 3,5 - 4095: 3,5 - 4096: 5,-4 - 4097: 5,-5 - 4098: 6,-5 - 4102: 5,-5 - 4103: 4,-5 - 4119: 5,-3 - 4120: 5,-3 - 4121: 3,-3 - 4122: 3,-2 - 4123: 3,-1 - 4124: 3,-4 - 4125: 2,-6 - 4126: 1,-6 - 4127: 1,-6 - 4128: 1,-5 - 4129: 2,-5 - 4130: 3,-3 - 4131: 3,-2 - 4132: 9,-8 - 4133: 10,-7 - 4134: 11,-7 - 4135: 9,-7 - 4136: 11,-7 - 4137: 10,-7 - 4138: 9,-8 - 4139: 10,-8 - 4140: 10,-9 - 4141: 7,-8 - 4142: 8,-8 - 4143: 7,-8 - 4144: 8,-8 - 4145: 10,-8 - 4146: 10,-7 - 4147: 11,-7 - 4148: 12,-8 - 4149: 13,-8 - 4150: 14,-8 - 4151: 12,-8 - 4152: 13,-9 - 4153: 11,-8 - 4154: 10,-7 - 4155: 9,-8 - 4156: 8,-8 - 4157: 6,-8 - 4158: 9,-8 - 4159: 9,-7 - 4160: 8,-9 - 4171: -3,-1 - 4172: -4,1 - 4173: -4,3 - 4174: -4,4 - 4175: -7,3 - 4176: -9,2 - 4177: -11,-1 - 4178: -11,-1 - 4179: -13,-2 - 4180: -13,-2 - 4181: -15,1 - 4182: -14,0 - 4183: -14,2 - 4184: -14,3 - 4185: -14,4 - 4186: -13,2 - 4187: -13,1 - 4188: -12,0 - 4189: -10,1 - 4190: -9,2 - 4191: -8,2 - 4192: -7,1 - 4193: -8,2 - 4194: -6,0 - 4196: -3,2 - 4197: -3,4 - 4198: -2,6 - 4199: 0,6 - 4206: 3,6 - 4207: 2,6 - 4210: -10,7 - 4211: -9,6 - 4212: -9,6 - 4213: -8,6 - 4214: -7,6 - 4215: -10,7 - 4216: -10,6 - 4217: -10,8 - 4218: -9,8 - 4219: -10,8 - 4220: -11,7 - 4221: -10,6 - 4222: -9,6 - 4223: -9,7 - 4224: -7,8 - 4225: -5,7 - 4226: -5,6 - 4227: -5,5 - 4228: -5,4 - 4229: -8,4 - 4230: -9,4 - 4231: -8,4 - 4232: -9,4 - 4233: -9,4 - 4234: -7,4 - 4235: -5,10 - 4236: -5,10 - 4237: -4,10 - 4238: -4,11 - 4239: -4,11 - 4240: -3,11 - 4241: -4,9 - 4242: -3,10 - 4243: -3,7 - 4244: -3,5 - 4245: -3,3 - 4246: -3,0 - 4247: -3,-2 - 4248: -3,0 - 4249: -3,4 - 4250: -3,8 - 4251: -3,11 - 4252: -3,1 - 4253: -3,-2 - 4254: -3,-5 - 4255: -3,-6 - 4350: -44,43 - 4351: -44,42 - 4352: -44,40 - 4353: -43,38 - 4354: -43,37 - 4355: -43,37 - 4356: -44,39 - 4357: -44,42 - 4358: -45,44 - 4359: -46,43 - 4360: -47,43 - 4361: -48,44 - 4362: -45,43 - 4363: -44,43 - 4364: -45,43 - 4365: -47,43 - 4366: -49,43 - 4367: -49,41 - 4368: -49,39 - 4369: -51,38 - 4370: -51,38 - 4371: -51,37 - 4372: -51,36 - 4373: -51,36 - 4374: -46,36 - 4375: -44,36 - 4376: -49,36 - 4377: -51,36 - 4378: -47,37 - 4379: -51,38 - 4380: -50,38 - 4381: -46,37 - 4382: -43,37 - 4383: -38,37 - 4384: -45,37 - 4385: -51,36 - 4386: -47,36 - 4387: -41,36 - 4388: -44,37 - 4389: -38,37 - 4390: -33,37 - 4391: -38,36 - 4392: -39,36 - 4393: -41,36 - 4394: -39,36 - 4395: -39,37 - 4396: -40,37 - 4397: -40,36 - 4398: -37,37 - 4399: -37,36 - 4400: -41,37 - 4401: -42,37 - 4402: -36,37 - 4403: -35,37 - 4404: -33,36 - 4405: -35,36 - 4406: -35,36 - 4407: -37,37 - 4408: -35,38 - 4409: -30,36 - 4410: -31,36 - 4411: -31,35 - 4412: -31,35 - 4413: -30,37 - 4414: -30,36 - 4415: -31,35 - 4416: -30,33 - 4417: -29,33 - 4418: -27,32 - 4419: -28,31 - 4420: -29,30 - 4421: -30,30 - 4422: -32,30 - 4423: -29,30 - 4424: -28,31 - 4425: -29,33 - 4426: -31,33 - 4427: -31,32 - 4428: -28,33 - 4429: -28,31 - 4430: -28,32 - 4431: -28,33 - 4432: -28,32 - 4433: -28,30 - 4434: -28,30 - 4435: -27,30 - 4436: -27,31 - 4437: -27,33 - 4480: -39,19 - 4481: -39,18 - 4482: -39,20 - 4483: -39,23 - 4484: -39,23 - 4485: -38,26 - 4486: -39,29 - 4487: -38,28 - 4488: -39,26 - 4489: -39,23 - 4490: -39,21 - 4491: -39,27 - 4492: -38,26 - 4493: -38,21 - 4494: -38,19 - 4495: -39,21 - 4496: -39,29 - 4497: -39,27 - 4498: -39,21 - 4499: -39,24 - 4500: -40,27 - 4501: -39,25 - 4502: -39,24 - 4503: -39,26 - 4504: -37,26 - 4505: -37,23 - 4506: -38,20 - 4507: -39,19 - 4508: -39,18 - 4509: -40,18 - 4510: -38,21 - 4511: -38,26 - 4512: -42,26 - 4513: -42,25 - 4514: -41,25 - 4515: -42,25 - 4516: -41,26 - 4517: -41,26 - 4547: -38,15 - 4548: -36,15 - 4549: -36,15 - 4550: -35,15 - 4551: -40,5 - 4552: -39,4 - 4553: -40,3 - 4554: -41,3 - 4555: -40,2 - 4556: -40,1 - 4557: -41,0 - 4558: -40,0 - 4559: -40,-1 - 4560: -42,-5 - 4561: -42,-7 - 4562: -41,-7 - 4563: -41,-1 - 4564: -41,-2 - 4565: -42,-2 - 4566: -43,-3 - 4567: -36,2 - 4568: -36,2 - 4569: -36,1 - 4570: -37,2 - 4571: -36,1 - 4572: -40,9 - 4573: -41,9 - 4574: -39,10 - 4575: -39,10 - 4576: -37,10 - 4577: -38,10 - 4578: -37,10 - 4579: -35,10 - 4580: -35,10 - 4581: -36,11 - 4582: -37,10 - 4626: -4,13 - 4627: 2,13 - 4628: 1,13 - 4629: 1,13 - 4630: -3,13 - 4631: -3,13 - 4632: -4,13 - 4633: -5,13 - 4634: -5,13 - 4635: -2,13 - 4636: -2,13 - 4637: 3,13 - 4638: 3,13 - 4639: 0,13 - 4640: 0,13 - 4652: -5,16 - 4653: -4,16 - 4654: -6,16 - 4655: -3,18 - 4656: -3,19 - 4657: 1,18 - 4658: 1,17 - 4659: 1,17 - 4660: 3,16 - 4661: 4,16 - 4662: 2,16 - 4692: 15,47 - 4693: 15,46 - 4694: 14,46 - 4695: 15,47 - 4732: 5,74 - 4733: 5,75 - 4734: 5,76 - 4735: 4,77 - 4736: 4,80 - 4737: 5,81 - 4738: 1,81 - 4739: -2,81 - 4740: 1,82 - 4741: 0,82 - 4742: 1,82 - 4743: 0,83 - 4744: 1,83 - 4745: 1,82 - 4746: 0,83 - 4747: 0,82 - 4748: -1,81 - 4749: -4,81 - 4750: -7,81 - 4751: -5,81 - 4752: 2,79 - 4753: 0,79 - 4754: 0,79 - 4755: -4,76 - 4756: -5,76 - 4757: -6,74 - 4758: -7,74 - 4759: -8,73 - 4760: -9,72 - 4761: -9,73 - 4762: -8,72 - 4763: -8,74 - 4764: -9,70 - 4765: -9,69 - 4766: -8,70 - 4767: 9,66 - 4768: 10,69 - 4769: 12,69 - 4770: 13,58 - 4771: 13,60 - 4772: 12,56 - 4773: 13,56 - 4774: 8,56 - 4775: 8,56 - 4776: 8,56 - 4777: 14,60 - 4778: 14,60 - 4779: 14,61 - 4780: 14,60 - 4781: 22,58 - 4782: 23,57 - 4783: 27,56 - 4784: 28,56 - 4785: 28,55 - 4786: 28,54 - 4787: 34,55 - 4788: 34,54 - 4789: 33,54 - 4790: 30,55 - 4791: 30,56 - 4792: 30,54 - 4793: 31,54 - 4794: 32,54 - 4802: 46,36 - 4803: 46,34 - 4854: 32,16 - 4855: 32,15 - 4856: 32,13 - 4857: 32,11 - 4858: 32,13 - 4887: 34,1 - 4888: 36,1 - 4889: 37,1 - 4890: 37,1 - 4891: 36,1 - 4892: 35,1 - 4893: 35,3 - 4894: 37,3 - 4895: 19,-4 - 4896: 18,-5 - 4897: 17,-6 - 4898: 17,-5 - 4899: 17,-4 - 4900: 18,-6 - 4901: 21,-6 - 4902: 19,-4 - 4903: 22,-4 - 4904: 21,-5 - 4905: 20,-6 - 4906: 22,-6 - 4907: 21,-4 - 4908: 21,-4 - 4909: 19,-5 - 4910: 20,-4 - 4911: 20,-4 - 4912: 20,-5 - 4913: 17,-4 - 4928: -9,-6 - 4929: -9,-5 - 4930: -9,-3 - 4931: -11,-2 - 4932: -10,-2 - 4933: -9,-3 - 4934: -9,-5 - 4935: -16,1 - 4936: -14,0 - 4937: -14,0 - 4938: -14,0 - 4939: -14,-1 - 4940: -13,0 - 4941: -13,1 - 4948: -10,-9 - 4949: -9,-10 - 4950: -6,-10 - 4951: -4,-11 - 4952: -2,-11 - 4953: -6,-14 - 4954: -6,-13 - 4955: 4,-14 - 4956: 4,-13 - 4957: 3,-11 - 4958: 3,-9 - 4959: 1,-9 - 4960: 5,-9 - 4961: 7,-9 - 4962: 8,-10 - 4963: 3,-5 - 4964: 4,-5 - 4965: 3,-5 - 5015: 12,9 - 5016: 13,9 - 5017: 14,9 - 5018: 14,8 - 5019: 14,7 - 5020: 15,9 - 5021: 15,10 - 5022: 15,10 - 5023: 13,10 - 5024: 9,10 - 5025: 6,10 - 5026: 6,8 - 5027: 7,6 - 5028: 7,9 - 5029: 8,8 - 5030: 7,7 - 5031: 8,7 - 5032: 8,9 - 5033: 8,6 - 5034: 8,7 - 5035: 8,9 - 5036: 7,10 - 5037: 6,11 - 5038: 8,11 - 5039: 10,10 - 5040: 10,6 - 5043: 14,38 - 5044: 15,38 - 5045: 14,38 - 5046: 15,38 - 5047: 14,38 - - node: - cleanable: True - angle: -1.5707963267948966 rad - color: '#A461065E' - id: Dirt - decals: - 5263: -42,22 - 5264: -41,22 - 5265: -41,22 - - node: - cleanable: True - angle: -1.5707963267948966 rad - color: '#A46106A4' - id: Dirt - decals: - 5266: -41,22 - 5267: -42,22 - 5268: -42,24 - 5269: -42,24 - 5270: -41,24 - 5271: -42,23 - 5272: -43,23 - 5273: -39,22 - 5274: -40,22 - 5275: -40,24 - 5276: -40,25 - 5277: -40,26 - 5278: -42,27 - 5279: -43,27 - 5280: -41,28 - 5281: -40,28 - 5282: -41,27 - 5283: -44,27 - 5284: -44,28 - 5285: -45,28 - 5286: -46,27 - 5287: -47,28 - 5288: -47,27 - 5289: -46,28 - 5290: -38,23 - 5291: -38,24 - 5292: -38,27 - 5293: -38,29 - 5294: -42,24 - 5295: -42,22 - 5296: -41,21 - 5297: -43,21 - 5298: -42,21 - 5299: -43,22 - 5300: -43,25 - 5301: -43,24 - 5302: -41,24 - 5303: -41,22 - 5304: -41,24 - 5305: -40,20 - 5306: -38,17 - 5307: -38,22 - - node: - cleanable: True - color: '#83543273' - id: DirtHeavy - decals: - 3583: 29,6 - 3588: 46,-10 - 3589: 48,-10 - 3704: -13,-41 - 3705: -11,-41 - 3706: -11,-40 - 3707: -10,-37 - 3708: -9,-34 - 3709: -7,-37 - 3710: -8,-40 - 3711: -6,-39 - 3712: -7,-34 - 3713: -7,-28 - 3714: -7,-24 - 3715: -7,-26 - 3716: -7,-30 - 3717: -9,-35 - 3718: -10,-38 - 3719: -10,-40 - 3772: 12,-37 - 3773: 12,-35 - 3774: 12,-34 - 3775: 12,-32 - 3776: 12,-30 - 3777: 12,-28 - 3778: 12,-26 - 3779: 12,-23 - 3780: 12,-21 - 3781: 12,-20 - 3838: 6,-19 - 3841: 5,-19 - 3844: 5,-20 - 3861: 11,-22 - 3862: 11,-24 - 3863: 11,-27 - 3864: 11,-29 - 3865: 11,-32 - 3866: 11,-34 - 3867: 11,-36 - 3888: 7,-35 - 3889: 5,-35 - 3890: 9,-34 - 3891: 10,-34 - 3892: 8,-35 - 3905: 4,-39 - 3906: 6,-38 - 3907: 7,-38 - 3908: 7,-37 - 3909: 8,-38 - 3910: 9,-39 - 3911: 18,-38 - 3912: 18,-37 - 3913: 17,-37 - 3914: 17,-35 - 3915: 17,-34 - 3916: 17,-34 - 3950: 18,-36 - 3951: 18,-36 - 3952: 16,-41 - 4060: 10,1 - 4061: 10,1 - 4062: 12,2 - 4116: 8,-1 - 4161: 8,-8 - 4204: 3,4 - 4205: 2,4 - 4256: -3,-6 - 4257: -5,-6 - 4258: -3,-4 - 4259: -4,-2 - 4260: -3,1 - 4261: -4,4 - 4262: -4,6 - 4263: -3,8 - 4264: -5,9 - 4265: -3,10 - 4278: 3,14 - 4279: -1,17 - 4280: 0,20 - 4281: -1,25 - 4282: -1,30 - 4283: -1,33 - 4284: -1,36 - 4285: -2,38 - 4286: -1,49 - 4287: -1,50 - 4288: -2,50 - 4316: -7,48 - 4317: -8,48 - 4318: -9,46 - 4319: -10,45 - 4320: -11,45 - 4321: -13,45 - 4322: -16,45 - 4323: -17,45 - 4324: -9,46 - 4325: -7,46 - 4326: -5,45 - 4327: -7,46 - 4328: -8,48 - 4329: -9,49 - 4330: -11,53 - 4331: -14,55 - 4332: -17,53 - 4333: -13,53 - 4334: -12,54 - 4335: -14,53 - 4336: -16,53 - 4337: -18,52 - 4338: -19,51 - 4339: -19,50 - 4340: -19,48 - 4341: -20,48 - 4342: -20,47 - 4343: -20,47 - 4344: -18,46 - 4345: -16,45 - 4438: -27,33 - 4439: -30,33 - 4440: -29,33 - 4448: -29,33 - 4449: -27,30 - 4583: -41,10 - 4584: -40,10 - 4585: -40,9 - 4586: -40,8 - 4587: -39,5 - 4588: -39,4 - 4589: -39,5 - 4590: -40,2 - 4591: -40,1 - 4592: -41,2 - 4593: -41,4 - 4594: -41,4 - 4617: -38,6 - 4618: -39,4 - 4619: -38,3 - 4620: -39,3 - 4621: -38,2 - 4622: -38,1 - 4623: -36,2 - 4624: -36,4 - 4625: -36,3 - 4641: -5,13 - 4642: -3,13 - 4643: -2,13 - 4644: 1,13 - 4645: 2,13 - 4696: 15,47 - 4697: 15,47 - 4698: 15,46 - 4699: 14,46 - 4700: 15,45 - 4701: 15,44 - 4702: 2,56 - 4703: 2,54 - 4704: 3,53 - 4705: 4,53 - 4706: 2,53 - 4707: 4,54 - 4708: 4,56 - 4709: 4,56 - 4710: 5,55 - 4711: -2,54 - 4712: -2,54 - 4713: -2,70 - 4714: -2,70 - 4715: -2,68 - 4716: -2,68 - 4717: 0,68 - 4718: -2,67 - 4719: -3,67 - 4720: -3,67 - 4795: 32,54 - 4796: 33,54 - 4804: 46,36 - 4805: 45,36 - 4806: 46,36 - 4807: 49,36 - 4808: 48,36 - 4809: 48,35 - 4810: 48,34 - 4811: 48,35 - 4812: 48,36 - 4841: 27,25 - 4842: 29,25 - 4843: 30,26 - 4844: 30,23 - 4845: 30,24 - 4846: 30,25 - 4847: 30,24 - 4848: 32,19 - 4849: 32,16 - 4850: 32,15 - 4851: 33,15 - 4852: 32,15 - 4853: 32,16 - 4859: 39,14 - 4860: 41,15 - 4861: 42,15 - 4862: 45,14 - 4863: 46,15 - 4864: 48,15 - 4865: 47,15 - 4866: 49,15 - 4867: 49,13 - 4868: 45,15 - 4914: 17,-4 - 4915: 16,-5 - 4916: 16,-6 - 4917: 18,-5 - 4918: 18,-4 - 4919: 19,-6 - 4920: 20,-6 - 4921: 20,-4 - 4922: 20,-5 - 4923: 20,-5 - 4924: 21,-6 - 4925: 21,-4 - 4926: 22,-3 - 4927: 20,-3 - 4942: -12,-10 - 4943: -13,-10 - 4944: -12,-9 - 4945: -13,-10 - 4946: -12,-10 - 4947: -11,-10 - 4966: 3,-5 - 4967: 2,-6 - 5048: 14,38 - - node: - cleanable: True - angle: -1.5707963267948966 rad - color: '#A4610696' - id: DirtHeavy - decals: - 5232: -40,21 - 5233: -41,22 - 5234: -43,23 - 5235: -43,27 - 5236: -43,28 - 5237: -42,28 - 5238: -46,28 - 5239: -45,28 - 5240: -45,27 - 5241: -47,27 - 5242: -38,20 - 5243: -41,20 - 5244: -42,27 - 5245: -41,24 - 5246: -42,24 - - node: - cleanable: True - color: '#83543273' - id: DirtLight - decals: - 3584: 29,6 - 3586: 46,-10 - 3587: 48,-10 - 3590: 46,-10 - 3593: 18,-9 - 3594: 22,-9 - 3782: 12,-36 - 3783: 12,-34 - 3784: 12,-32 - 3785: 12,-30 - 3786: 12,-28 - 3787: 12,-26 - 3788: 12,-24 - 3789: 12,-22 - 3790: 12,-20 - 3791: 12,-18 - 3792: 12,-18 - 3793: 11,-19 - 3794: 12,-19 - 3850: 6,-21 - 3851: 5,-19 - 3885: 9,-35 - 3886: 7,-35 - 3887: 8,-35 - 3953: 15,-40 - 3954: 16,-40 - 4104: 5,-5 - 4105: 7,-5 - 4106: 10,-5 - 4107: 11,-2 - 4162: 9,-8 - 4163: 10,-8 - 4164: 10,-9 - 4165: 10,-9 - 4166: 9,-9 - 4167: 9,-9 - 4168: 12,-9 - 4169: 11,-8 - 4170: 11,-9 - 4200: -1,6 - 4208: -8,6 - 4209: -11,7 - 4266: 1,11 - 4267: 2,10 - 4268: 1,8 - 4269: 1,6 - 4270: 2,4 - 4271: 0,2 - 4272: 2,0 - 4273: 1,-3 - 4274: 2,-5 - 4275: 1,-6 - 4276: 1,4 - 4277: 2,7 - 4289: -2,48 - 4290: -2,50 - 4346: -44,43 - 4347: -44,43 - 4441: -31,31 - 4442: -31,30 - 4443: -29,30 - 4444: -32,33 - 4445: -31,33 - 4446: -31,30 - 4447: -29,30 - 4450: -27,31 - 4451: -27,32 - 4595: -41,-1 - 4596: -42,-2 - 4597: -40,-1 - 4598: -40,2 - 4599: -37,2 - 4600: -36,2 - 4601: -36,4 - 4602: -35,4 - 4608: -39,10 - 4609: -36,10 - 4610: -35,10 - 4611: -37,10 - 4612: -38,10 - 4613: -36,11 - 4614: -41,10 - 4615: -41,9 - 4616: -42,9 - 4646: 1,13 - 4647: 3,13 - 4648: 5,14 - 4649: 5,14 - 4650: 3,15 - 4651: 2,15 - 4663: 3,16 - 4664: 3,16 - 4665: 4,17 - 4666: 4,18 - 4667: 3,18 - 4678: 6,28 - 4679: 7,28 - 4680: 7,29 - 4681: 6,29 - 4682: 6,30 - 4683: 3,31 - 4684: 3,33 - 4688: 5,29 - 4689: 4,28 - 4690: 4,28 - 4691: 4,30 - 4869: 46,15 - 4870: 46,17 - 4871: 46,17 - 4872: 48,17 - 4873: 49,17 - 4874: 49,17 - 4875: 48,17 - 4968: 3,-5 - 4969: 3,-5 - 4970: 2,-6 - 5049: 15,38 - - node: - cleanable: True - angle: -1.5707963267948966 rad - color: '#A461065E' - id: DirtLight - decals: - 5260: -41,22 - 5261: -42,23 - 5262: -41,23 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - decals: - 5163: 46,-11 - 5164: 45,-11 - 5165: 46,-13 - 5166: 47,-14 - 5167: 48,-12 - 5168: 48,-12 - 5169: 48,-14 - 5170: 47,-14 - 5171: 49,-15 - 5172: 49,-8 - 5173: 48,-8 - - node: - cleanable: True - color: '#83543273' - id: DirtMedium - decals: - 3585: 28,-14 - 3591: 48,-10 - 3592: 37,-9 - 3595: 11,-9 - 3596: 9,-9 - 3720: -10,-42 - 3721: -10,-37 - 3722: -10,-34 - 3723: -8,-33 - 3724: -14,-36 - 3725: -13,-33 - 3726: -12,-37 - 3727: -13,-36 - 3728: -12,-34 - 3729: -13,-34 - 3730: -13,-36 - 3731: -13,-37 - 3795: 11,-19 - 3796: 11,-18 - 3797: 12,-18 - 3798: 12,-20 - 3799: 12,-22 - 3800: 12,-25 - 3801: 12,-28 - 3802: 12,-30 - 3803: 12,-32 - 3804: 12,-34 - 3805: 12,-36 - 3852: 7,-21 - 3853: 7,-21 - 3868: 11,-37 - 3869: 11,-35 - 3870: 11,-32 - 3871: 11,-29 - 3872: 11,-26 - 3873: 11,-24 - 3874: 7,-31 - 3875: 6,-31 - 3876: 5,-35 - 3877: 6,-34 - 3878: 7,-34 - 3879: 6,-35 - 3880: 7,-35 - 3881: 6,-35 - 3882: 8,-34 - 3883: 10,-34 - 3884: 10,-35 - 3917: 17,-37 - 3918: 17,-36 - 3919: 17,-35 - 3920: 17,-35 - 3921: 17,-37 - 3922: 18,-37 - 3923: 18,-35 - 3924: 18,-34 - 3925: 18,-36 - 3926: 18,-37 - 3947: 17,-36 - 3948: 17,-36 - 3949: 18,-35 - 3955: 15,-40 - 3956: 15,-40 - 4063: 11,3 - 4064: 10,2 - 4065: 11,1 - 4066: 11,1 - 4067: 12,2 - 4068: 12,2 - 4069: 12,2 - 4070: 10,1 - 4071: 10,1 - 4108: 5,-1 - 4109: 8,2 - 4110: 8,-1 - 4111: 9,-5 - 4112: 6,-5 - 4113: 11,-5 - 4201: -3,5 - 4202: -4,6 - 4203: -2,5 - 4291: -7,50 - 4292: -7,47 - 4293: -8,50 - 4294: -9,47 - 4295: -9,46 - 4296: -14,45 - 4297: -16,45 - 4298: -19,47 - 4299: -19,49 - 4300: -17,53 - 4301: -15,54 - 4302: -13,54 - 4303: -11,55 - 4304: -10,57 - 4305: -10,58 - 4306: -9,55 - 4307: -9,55 - 4308: -9,55 - 4309: -10,56 - 4310: -12,59 - 4311: -12,59 - 4312: -7,48 - 4313: -7,48 - 4314: -7,50 - 4315: -7,50 - 4348: -44,43 - 4349: -44,43 - 4452: -27,33 - 4453: -27,30 - 4454: -33,25 - 4455: -33,24 - 4456: -33,22 - 4457: -33,20 - 4458: -33,17 - 4459: -36,13 - 4460: -43,13 - 4461: -48,14 - 4462: -50,14 - 4463: -46,14 - 4464: -45,14 - 4465: -45,14 - 4466: -46,15 - 4467: -48,15 - 4468: -49,13 - 4469: -42,14 - 4470: -39,15 - 4471: -38,15 - 4472: -36,15 - 4473: -39,17 - 4474: -38,17 - 4475: -38,18 - 4476: -39,16 - 4477: -38,18 - 4478: -39,19 - 4479: -38,17 - 4518: -41,26 - 4519: -42,25 - 4520: -42,25 - 4521: -41,25 - 4522: -38,28 - 4523: -38,29 - 4524: -38,28 - 4525: -40,29 - 4526: -40,29 - 4527: -39,27 - 4528: -39,25 - 4529: -38,23 - 4530: -39,21 - 4531: -39,20 - 4532: -39,19 - 4533: -41,18 - 4534: -40,17 - 4535: -40,18 - 4536: -39,17 - 4537: -38,18 - 4538: -38,15 - 4539: -39,15 - 4540: -38,14 - 4541: -37,15 - 4542: -36,14 - 4543: -36,15 - 4544: -36,16 - 4545: -36,16 - 4546: -36,16 - 4603: -36,2 - 4604: -36,3 - 4605: -35,4 - 4606: -38,6 - 4607: -38,7 - 4668: 3,17 - 4669: 4,17 - 4670: 3,18 - 4671: 3,18 - 4672: 3,17 - 4673: 4,27 - 4676: 7,30 - 4677: 6,30 - 4721: -3,67 - 4722: -3,67 - 4723: -2,68 - 4724: 0,68 - 4725: 0,70 - 4726: 0,74 - 4727: 2,76 - 4728: 3,76 - 4729: 5,76 - 4730: 5,75 - 4731: 5,74 - 4797: 32,54 - 4798: 31,54 - 4799: 40,47 - 4800: 44,43 - 4801: 42,43 - 4813: 47,36 - 4814: 47,37 - 4815: 47,36 - 4816: 47,37 - 4817: 47,37 - 4818: 45,37 - 4819: 45,35 - 4820: 43,36 - 4821: 42,37 - 4822: 41,37 - 4823: 41,40 - 4824: 41,40 - 4825: 39,37 - 4826: 39,36 - 4827: 36,38 - 4828: 34,38 - 4829: 32,38 - 4830: 29,37 - 4831: 30,36 - 4832: 30,38 - 4833: 31,38 - 4834: 31,38 - 4835: 31,38 - 4836: 28,26 - 4837: 27,25 - 4838: 27,25 - 4839: 29,29 - 4840: 30,27 - 4876: 46,15 - 4877: 48,15 - 4878: 46,16 - 4879: 46,17 - 4880: 46,16 - 4881: 34,5 - 4882: 34,5 - 4883: 35,5 - 4884: 34,3 - 4885: 34,3 - 4886: 34,1 - 4971: 2,-6 - 4972: 1,-5 - 4973: 0,-1 - 4974: 1,0 - 4975: 0,0 - 4976: -2,1 - 4977: -2,0 - 4978: 1,3 - 4979: 1,9 - 4980: -2,6 - 4981: -6,0 - 4982: -8,-2 - 4983: -10,-2 - 4984: -11,-1 - 4985: -7,-1 - 4986: -6,-1 - 4987: -4,-1 - 4988: -5,-1 - 4989: -5,0 - 4990: -8,3 - 4991: -9,3 - 4992: -9,3 - 4993: -7,3 - 4994: -4,6 - 4995: 7,4 - 4996: 6,5 - 4997: 6,7 - 4998: 10,10 - 4999: 10,8 - 5000: 10,5 - 5001: 8,5 - 5002: 9,5 - 5003: 13,9 - 5004: 14,8 - 5005: 14,8 - 5006: 14,9 - 5007: 13,10 - 5008: 14,9 - 5009: 15,10 - 5010: 15,9 - 5011: 13,10 - 5012: 15,10 - 5013: 14,10 - 5014: 13,9 - 5050: 14,38 - 5051: 15,38 - 5052: 15,38 - - node: - cleanable: True - angle: -1.5707963267948966 rad - color: '#A461065E' - id: DirtMedium - decals: - 5251: -43,27 - 5252: -43,28 - 5253: -46,28 - 5254: -46,27 - 5255: -41,24 - 5256: -40,21 - 5257: -41,27 - 5258: -41,23 - 5259: -41,22 - - node: - cleanable: True - angle: -1.5707963267948966 rad - color: '#A4610696' - id: DirtMedium - decals: - 5247: -42,22 - 5248: -43,24 - 5249: -42,25 - 5250: -42,28 - - node: - color: '#80C71FA4' - id: Flowersbr1 - decals: - 5070: -45.480713,39.888554 - - node: - color: '#80C71FA4' - id: Flowersbr2 - decals: - 5072: -47.82387,40.787373 - - node: - color: '#80C71FAE' - id: Flowerspv2 - decals: - 2408: 22.31159,21.239965 - - node: - color: '#80C71FAE' - id: Flowerspv3 - decals: - 2407: 22.119907,20.303352 - - node: - color: '#80C71FA4' - id: Flowersy1 - decals: - 5067: -45.40703,40.65476 - 5069: -46.468082,40.168514 - - node: - color: '#80C71FAE' - id: Flowersy2 - decals: - 2404: 21.097595,20.409784 - 2409: 21.012402,21.21868 - 2410: 22.780151,20.0692 - - node: - color: '#80C71FA4' - id: Flowersy3 - decals: - 5071: -46.61545,40.787373 - - node: - color: '#80C71FAE' - id: Flowersy3 - decals: - 2403: 22.013416,21.53798 - 2405: 26.379543,16.769766 - 2411: 21.928225,20.32464 - - node: - color: '#80C71FA4' - id: Flowersy4 - decals: - 5068: -47.750187,39.991695 - - node: - color: '#80C71FAE' - id: Flowersy4 - decals: - 2406: 27.061085,17.45094 - - node: - color: '#18A2D50C' - id: FullTileOverlayGreyscale - decals: - 788: 24,31 - 789: 24,32 - 790: 24,33 - 791: 24,34 - 792: 24,31 - 793: 24,32 - 794: 24,33 - 795: 24,34 - - node: - color: '#18A2D522' - id: FullTileOverlayGreyscale - decals: - 780: 25,34 - 781: 26,34 - 782: 25,33 - 783: 26,33 - 784: 25,32 - 785: 26,32 - 786: 27,32 - 787: 27,33 - - node: - color: '#D5188D95' - id: FullTileOverlayGreyscale - decals: - 738: 17,45 - 739: 17,46 - 740: 17,47 - 741: 18,47 - 742: 18,45 - 743: 18,46 - - node: - color: '#80C71FAB' - id: Grassa1 - decals: - 2399: 20.991104,21.857279 - 2401: 26.975891,16.94006 - - node: - color: '#80C71FB4' - id: Grassa1 - decals: - 2424: 20.92721,20.19692 - - node: - color: '#80C71FA4' - id: Grassa2 - decals: - 5054: -47.73545,40.050636 - 5058: -47.764923,40.698963 - 5060: -46.24703,40.743168 - 5061: -46.084923,39.918022 - - node: - color: '#80C71FB4' - id: Grassa2 - decals: - 2425: 22.865343,21.921139 - 2426: 26.358244,16.94006 - - node: - color: '#80C71F95' - id: Grassa3 - decals: - 2420: 22.247696,20.388498 - - node: - color: '#80C71FA4' - id: Grassa3 - decals: - 5055: -45.421764,40.669495 - - node: - color: '#80C71FA4' - id: Grassa4 - decals: - 5056: -45.40703,39.918022 - - node: - color: '#80C71FAB' - id: Grassa4 - decals: - 2398: 21.885628,21.303825 - - node: - color: '#80C71FB4' - id: Grassa4 - decals: - 2421: 21.992119,21.3464 - 2427: 27.124979,17.599947 - - node: - color: '#80C71FA4' - id: Grassa5 - decals: - 5057: -46.60071,39.873817 - - node: - color: '#80C71FAB' - id: Grassa5 - decals: - 2400: 26.209158,17.685093 - 2402: 21.566154,21.814705 - - node: - color: '#80C71FB4' - id: Grassa5 - decals: - 2422: 21.523558,20.409784 - 2423: 20.756824,21.835993 - - node: - color: '#80C71FA4' - id: Grassb2 - decals: - 5078: -46.541767,41.02313 - 5080: -44.994396,39.829613 - - node: - color: '#80C71FAB' - id: Grassb2 - decals: - 2394: 27.188873,17.578661 - 2395: 20.92721,20.111773 - 2396: 23.057028,20.239492 - - node: - color: '#80C71FAB' - id: Grassb3 - decals: - 2392: 21.821733,20.154345 - 2393: 26.954594,16.897486 - - node: - color: '#80C71FA4' - id: Grassb4 - decals: - 5074: -45.392292,40.65476 - 5077: -47.88282,40.743168 - 5079: -47.853344,39.991695 - 5081: -45.30387,40.919987 - - node: - color: '#80C71F95' - id: Grassc1 - decals: - 2417: 27.061085,17.770239 - - node: - color: '#80C71FA4' - id: Grassc1 - decals: - 5076: -46.52703,40.301125 - - node: - color: '#FFFFFF7F' - id: Grassc1 - decals: - 2346: 32.165768,40.007343 - - node: - color: '#80C71F95' - id: Grassc2 - decals: - 2416: 26.081367,17.770239 - - node: - color: '#80C71FA4' - id: Grassc2 - decals: - 5059: -46.29124,40.640026 - - node: - color: '#FFFFFF7F' - id: Grassc2 - decals: - 2345: 32.108974,40.943954 - - node: - color: '#80C71F95' - id: Grassc3 - decals: - 2415: 26.52863,16.897486 - - node: - color: '#80C71FA4' - id: Grassc3 - decals: - 5073: -47.70598,40.0359 - - node: - color: '#FFFFFF7F' - id: Grassc3 - decals: - 2343: 28.90005,40.85881 - - node: - color: '#80C71F95' - id: Grassc4 - decals: - 2412: 21.054998,20.45236 - - node: - color: '#FFFFFF7F' - id: Grassc4 - decals: - 2344: 28.87165,40.035725 - - node: - color: '#FFFFFFEF' - id: Grassd1 - decals: - 2349: 32.13737,39.978962 - - node: - color: '#FFFFFFEF' - id: Grassd2 - decals: - 2347: 28.90005,40.049915 - - node: - color: '#80C71FA4' - id: Grassd3 - decals: - 5075: -45.30387,39.976963 - - node: - color: '#FFFFFFEF' - id: Grassd3 - decals: - 2348: 28.942644,41.057484 - - node: - color: '#80C71F95' - id: Grasse1 - decals: - 2418: 26.379543,17.025208 - 2419: 21.331875,20.494932 - - node: - color: '#FFFFFFEF' - id: Grasse1 - decals: - 2350: 32.15157,40.943954 - - node: - color: '#80C71F95' - id: Grasse2 - decals: - 2413: 22.375484,21.729559 - - node: - color: '#80C71F95' - id: Grasse3 - decals: - 2414: 22.65236,20.175632 - - node: - color: '#5A5A6015' - id: HalfTileOverlayGreyscale - decals: - 9: -2,76 - 10: -1,76 - 11: 0,76 - - node: - color: '#D4D4D426' - id: HalfTileOverlayGreyscale - decals: - 5143: 19,-12 - 5144: 18,-12 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - decals: - 17: -2,77 - 18: -1,77 - 19: 0,77 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale180 - decals: - 824: 7,17 - 825: 8,17 - 826: 10,17 - 827: 9,17 - 828: 11,17 - 829: 12,17 - 830: 13,17 - 831: 14,17 - 832: 15,17 - - node: - color: '#5A5A605A' - id: HalfTileOverlayGreyscale180 - decals: - 0: -2,76 - 1: -1,76 - 2: 0,76 - - node: - color: '#D4D4D40C' - id: HalfTileOverlayGreyscale180 - decals: - 5145: 18,-12 - 5146: 19,-12 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - decals: - 16: 1,76 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale270 - decals: - 818: 6,18 - 819: 6,19 - 820: 6,20 - 1014: 9,30 - 1015: 9,31 - 1016: 9,32 - 1017: 9,33 - 1018: 9,34 - - node: - color: '#D381C9FF' - id: HalfTileOverlayGreyscale270 - decals: - 1077: -12,27 - 1078: -12,28 - 1079: -12,29 - 1080: -12,30 - 1081: -12,31 - 1082: -12,32 - 1083: -12,33 - 1084: -12,34 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - decals: - 15: -3,76 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale90 - decals: - 821: 16,18 - 822: 16,19 - 823: 16,20 - 1019: 12,30 - 1020: 12,31 - 1021: 12,32 - 1022: 12,33 - 1023: 12,34 - - node: - color: '#D381C9FF' - id: HalfTileOverlayGreyscale90 - decals: - 1085: -10,27 - 1086: -10,28 - 1087: -10,29 - 1088: -10,30 - 1089: -10,31 - 1090: -10,32 - 1091: -10,33 - 1092: -10,34 - - node: - angle: 1.5707963267948966 rad - color: '#A46105C0' - id: LoadingArea - decals: - 2140: -36,5 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 2042: -40,1 - 2043: -40,5 - 5212: -42,24 - 5213: -42,22 - - node: - angle: -1.5707963267948966 rad - color: '#52B4E996' - id: LoadingAreaGreyscale - decals: - 2309: 28,6 - - node: - angle: 1.5707963267948966 rad - color: '#52B4E996' - id: LoadingAreaGreyscale - decals: - 2308: 28,3 - - node: - color: '#334E6DC8' - id: MiniTileCheckerAOverlay - decals: - 1890: 17,-25 - 1891: 17,-24 - 1892: 17,-23 - 1919: 18,-18 - 1920: 19,-18 - 1921: 19,-17 - 1922: 18,-17 - 1923: 18,-16 - 1924: 19,-16 - 1925: 19,-15 - 1926: 18,-15 - 1927: 18,-14 - 1995: 4,46 - 1996: 5,46 - 1997: 5,47 - 1998: 4,47 - 5089: 19,-14 - - node: - color: '#52B4E996' - id: MiniTileCheckerAOverlay - decals: - 1310: -13,-15 - 1311: -13,-14 - 1312: -13,-13 - 1313: -12,-13 - 1314: -11,-13 - 1315: -10,-13 - 1316: -10,-14 - 1317: -10,-15 - 1318: -11,-15 - 1319: -12,-15 - 1320: -12,-14 - 1321: -11,-14 - - node: - color: '#52B4E9FF' - id: MiniTileCheckerAOverlay - decals: - 763: 19,40 - 764: 19,41 - 765: 19,42 - 766: 20,42 - 767: 21,42 - 768: 21,41 - 769: 21,40 - 770: 20,40 - 771: 20,41 - - node: - color: '#D381C996' - id: MiniTileCheckerAOverlay - decals: - 1144: -14,23 - 1145: -14,22 - - node: - color: '#EFB34196' - id: MiniTileCheckerAOverlay - decals: - 1787: 5,-26 - 1788: 5,-25 - 1789: 6,-25 - 1790: 6,-26 - - node: - color: '#3E5C23A8' - id: MiniTileCheckerBOverlay - decals: - 1572: 7,9 - 1573: 8,9 - 1574: 9,9 - 1575: 7,8 - 1576: 8,8 - 1577: 9,8 - 1578: 7,7 - 1579: 8,7 - 1580: 9,7 - 1581: 7,6 - 1582: 8,6 - 1583: 9,6 - - node: - color: '#D381C996' - id: MiniTileCheckerBOverlay - decals: - 1146: -20,23 - 1147: -20,22 - 1218: -7,22 - 1219: -6,22 - 1220: -5,22 - 1221: -5,23 - 1222: -6,23 - 1223: -7,23 - - node: - color: '#D56F18EF' - id: MiniTileCheckerBOverlay - decals: - 945: 3,22 - 946: 3,23 - 947: 3,24 - 948: 4,24 - 949: 5,24 - 950: 5,23 - 951: 4,23 - 952: 4,22 - - node: - color: '#DE3A3A96' - id: MiniTileCheckerBOverlay - decals: - 613: -14,49 - 614: -13,49 - 615: -16,59 - 616: -15,59 - - node: - color: '#EFB34196' - id: MiniTileCheckerBOverlay - decals: - 1322: -13,-13 - 1323: -12,-13 - 1324: -11,-13 - 1325: -10,-13 - 1326: -10,-14 - 1327: -10,-15 - 1328: -11,-15 - 1329: -12,-15 - 1330: -13,-15 - 1331: -13,-14 - 1332: -12,-14 - 1333: -11,-14 - 1344: 8,-13 - 1345: 8,-14 - 1346: 8,-15 - 1347: 9,-15 - 1348: 9,-14 - 1349: 9,-13 - 1350: 10,-13 - 1351: 10,-14 - 1352: 10,-15 - 1353: 11,-15 - 1354: 11,-14 - 1355: 11,-13 - - node: - color: '#52B4E996' - id: MiniTileOverlay - decals: - 5308: 4,27 - 5309: 3,27 - 5310: 2,27 - 5311: 2,28 - 5314: 4,28 - 5315: 3,28 - 5316: 3,29 - 5317: 2,29 - 5318: 2,30 - 5319: 3,30 - 5320: 3,31 - 5321: 2,31 - 5322: 2,32 - 5323: 3,32 - 5324: 3,33 - 5325: 2,33 - 5326: 3,34 - 5327: 2,34 - - node: - color: '#18A2D50C' - id: MonoOverlay - decals: - 796: 27,31 - 797: 26,31 - 798: 25,31 - 799: 23,31 - 800: 23,32 - 801: 23,33 - 802: 23,34 - 803: 27,34 - 804: 27,34 - 805: 27,31 - 806: 26,31 - 807: 25,31 - 808: 23,31 - 809: 23,32 - 810: 23,33 - 811: 23,34 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale - decals: - 213: -2,58 - 214: -2,59 - 215: -2,60 - 216: -2,61 - 217: -2,62 - 218: -2,63 - 219: -2,64 - 220: -2,65 - 221: -2,66 - 222: -2,68 - 223: 0,68 - 224: -1,68 - 225: 2,68 - 226: 3,68 - 227: 4,68 - 228: 5,68 - 229: 6,68 - 230: 7,68 - 2367: -2,67 - 2368: 1,68 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale - decals: - 168: 5,15 - 169: 6,15 - 170: 7,15 - 171: 8,15 - 172: 9,15 - 173: 10,15 - 174: 11,15 - 175: 12,15 - 176: 13,15 - 177: 14,15 - 178: 15,15 - 179: 16,15 - 180: 17,15 - 839: 15,18 - - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale - decals: - 1648: 4,-8 - 1649: 5,-8 - 1650: 6,-8 - 1651: 7,-8 - 1652: 8,-8 - 1653: 9,-8 - 1654: 10,-8 - 1655: 11,-8 - 1656: 12,-8 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - decals: - 279: -33,-7 - 280: -33,-6 - 281: -33,-5 - 282: -33,-4 - 283: -33,-3 - 284: -33,-2 - 285: -33,-1 - 286: -33,0 - 287: -33,1 - 288: -33,2 - 289: -33,3 - 290: -33,8 - 291: -33,9 - 292: -33,10 - 293: -33,11 - 294: -33,12 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale - decals: - 181: -2,38 - 182: -3,38 - 183: -2,39 - 184: -2,40 - 185: -2,41 - 186: -4,38 - 187: -5,38 - 188: -7,38 - 189: -6,38 - 190: -8,38 - 191: -9,38 - 192: -10,38 - 193: -11,38 - 194: -12,38 - 195: -13,38 - 196: -14,38 - 197: -15,38 - 198: -16,38 - 199: -17,38 - 200: -18,38 - 201: -19,38 - 202: -20,38 - 203: -21,38 - 204: -22,38 - 205: -23,38 - 206: -2,42 - 207: -2,43 - 208: -2,44 - 209: -2,46 - 210: -2,45 - 211: -2,47 - 212: -2,51 - 625: -2,48 - 626: -2,49 - 627: -2,50 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale180 - decals: - 20: -3,77 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale180 - decals: - 134: 0,20 - 135: 0,21 - 136: 0,22 - 137: 0,23 - 138: 0,24 - 139: 0,25 - 140: 0,27 - 141: 0,26 - 142: 0,28 - 143: 0,29 - 144: 0,30 - 145: 0,31 - 146: 0,32 - 147: 0,33 - 148: 0,34 - 149: 0,35 - 150: 0,36 - 151: 1,36 - 152: 2,36 - 153: 3,36 - 154: 4,36 - 155: 5,36 - 156: 6,36 - 157: 7,36 - 158: 8,36 - 159: 9,36 - 160: 10,36 - 161: 11,36 - 162: 12,36 - 163: 13,36 - 164: 14,36 - 165: 15,36 - 166: 16,36 - 167: 17,36 - 840: 14,19 - - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale180 - decals: - 1626: -6,13 - 1627: -7,13 - 1628: -8,13 - 1629: -9,13 - 1630: -10,13 - 1631: -11,13 - 1632: -12,13 - 1633: -13,13 - 1634: -14,13 - 1635: -15,13 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - decals: - 295: -34,13 - 296: -35,13 - 297: -36,13 - 298: -37,13 - 299: -39,13 - 300: -38,13 - 301: -41,13 - 302: -42,13 - 303: -43,13 - 304: -44,13 - 305: -45,13 - 2078: -40,13 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale270 - decals: - 21: 1,77 - 462: 1,66 - 463: 3,66 - 464: 2,66 - 465: 4,66 - 466: 5,66 - 467: 6,66 - 468: 7,66 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale270 - decals: - 367: -2,-14 - 368: -4,-14 - 369: -6,-14 - 370: -6,-12 - 371: -6,-10 - 372: -8,-10 - 373: -10,-10 - 374: -12,-10 - 375: -14,-10 - 376: -16,-10 - 838: 8,19 - - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale270 - decals: - 1612: 5,13 - 1613: 6,13 - 1614: 8,13 - 1615: 7,13 - 1616: 9,13 - 1617: 10,13 - 1618: 11,13 - 1619: 12,13 - 1620: 13,13 - 1621: 14,13 - 1622: 15,13 - 1623: 16,13 - 1624: 17,13 - 1625: 4,13 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale270 - decals: - 246: 2,52 - 247: 1,52 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale270 - decals: - 318: -33,16 - 319: -33,17 - 320: -33,18 - 321: -33,19 - 322: -33,20 - 323: -33,21 - 324: -33,22 - 325: -33,23 - 326: -33,24 - 327: -33,25 - 328: -33,26 - 329: -33,28 - 330: -33,27 - 331: -33,29 - 332: -33,30 - 333: -33,31 - 334: -33,32 - 335: -33,33 - 336: -33,34 - 337: -33,35 - 338: -33,36 - 339: -34,36 - 340: -35,36 - 341: -36,36 - 342: -37,36 - 343: -38,36 - 344: -39,36 - 345: -40,36 - 346: -41,36 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale270 - decals: - 96: -2,20 - 97: -2,21 - 98: -2,22 - 99: -2,23 - 100: -2,24 - 101: -2,25 - 102: -2,26 - 103: -2,27 - 104: -2,28 - 105: -2,29 - 106: -2,30 - 107: -2,31 - 108: -2,32 - 109: -2,33 - 110: -2,34 - 111: -2,35 - 112: -2,36 - 113: -3,36 - 114: -4,36 - 115: -5,36 - 116: -6,36 - 117: -7,36 - 118: -8,36 - 119: -9,36 - 120: -10,36 - 121: -11,36 - 122: -12,36 - 123: -13,36 - 124: -14,36 - 125: -15,36 - 126: -16,36 - 127: -17,36 - 128: -18,36 - 129: -19,36 - 130: -20,36 - 131: -21,36 - 132: -22,36 - 133: -23,36 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale270 - decals: - 347: 5,-10 - 348: 6,-10 - 349: 7,-10 - 350: 8,-10 - 351: 9,-10 - 352: 11,-10 - 353: 10,-10 - 354: 12,-10 - 355: 13,-10 - 356: 14,-10 - 361: 4,-14 - 362: 3,-14 - 363: 2,-14 - 364: 1,-14 - 365: 0,-14 - 366: -1,-14 - 377: -15,-10 - 378: -13,-10 - 379: -11,-10 - 380: -9,-10 - 381: -7,-10 - 382: -6,-11 - 383: -6,-13 - 384: -5,-14 - 385: -3,-14 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale90 - decals: - 231: 0,65 - 232: 0,64 - 233: 0,63 - 234: 0,62 - 235: 0,61 - 236: 0,60 - 237: 0,59 - 238: 0,58 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale90 - decals: - 837: 7,18 - - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale90 - decals: - 1636: -6,-8 - 1637: -7,-8 - 1638: -8,-8 - 1639: -9,-8 - 1640: -10,-8 - 1641: -11,-8 - 1642: -12,-8 - 1643: -13,-8 - 1644: -14,-8 - 1645: -15,-8 - 1646: -16,-8 - 1647: -17,-8 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale90 - decals: - 239: 1,57 - 240: 2,57 - 241: 2,56 - 242: 2,55 - 243: 2,54 - 244: 2,53 - 245: 2,52 - 248: 0,51 - 249: 0,50 - 250: 0,44 - 251: 0,43 - 252: 0,42 - 253: 0,41 - 254: 0,40 - 255: 0,39 - 256: 0,38 - 257: 1,38 - 258: 2,38 - 259: 3,38 - 260: 4,38 - 261: 5,38 - 262: 7,38 - 263: 6,38 - 264: 8,38 - 265: 9,38 - 266: 10,38 - 267: 11,38 - 268: 13,38 - 269: 12,38 - 270: 16,38 - 271: 17,38 - 272: 18,38 - 273: 19,38 - 274: 20,38 - 275: 21,38 - 276: 22,38 - 277: 23,38 - 278: 24,38 - 1981: 0,49 - 1982: 0,48 - 5041: 14,38 - 5042: 15,38 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale90 - decals: - 306: -45,15 - 307: -44,15 - 308: -43,15 - 309: -42,15 - 310: -41,15 - 311: -40,15 - 312: -39,15 - 313: -38,15 - 314: -37,15 - 315: -36,15 - 316: -35,15 - 317: -34,15 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale90 - decals: - 79: -7,15 - 80: -8,15 - 81: -9,15 - 82: -10,15 - 83: -11,15 - 84: -12,15 - 85: -13,15 - 86: -14,15 - 87: -15,15 - 88: -16,15 - 89: -17,15 - 90: -18,15 - 91: -19,15 - 92: -20,15 - 93: -21,15 - 94: -22,15 - 95: -23,15 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - decals: - 357: 4,-11 - 358: 4,-12 - 359: 4,-13 - 360: 4,-14 - - node: - color: '#FFFFFFFF' - id: Rock03 - decals: - 2384: 22.524572,21.835993 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign1 - decals: - 2310: -4,14 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign2 - decals: - 2311: -3,14 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign3 - decals: - 2312: -2,14 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign4 - decals: - 2313: -1,14 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign5 - decals: - 2314: 0,14 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign6 - decals: - 2315: 1,14 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign7 - decals: - 2316: 2,14 - - node: - angle: 1.5707963267948966 rad - color: '#A46105C0' - id: StandClear - decals: - 2139: -36,5 - - node: - color: '#A4610696' - id: StandClear - decals: - 2141: -38,16 - - node: - color: '#FFFFFFFF' - id: StandClear - decals: - 1112: -7,27 - 1295: -12,-27 - 1296: -12,-28 - 1297: -12,-29 - 1298: -12,-30 - 1795: 8,-25 - 1796: 8,-21 - 1797: 11,-20 - 1798: 12,-20 - 1799: 11,-17 - 1800: 12,-17 - 1801: 10,-11 - 1802: 11,-11 - 1803: -12,-11 - 1804: -13,-11 - 1805: -13,-17 - 1806: -10,-19 - 1807: -13,-21 - 1808: 12,-39 - 1809: 6,-36 - 1810: 7,-36 - 1811: 6,-32 - 1812: 7,-32 - 1813: -20,-19 - 2015: -9,-17 - 2037: -42,9 - 2038: -38,10 - 2039: -36,3 - 2040: -42,-4 - 2041: -41,-4 - 2377: -20,-13 - 2378: -21,-13 - 5053: -40,12 - - node: - color: '#52B4E996' - id: StandClearGreyscale - decals: - 456: -2,72 - 457: -1,72 - 458: 0,72 - 1991: 1,47 - 1992: 1,46 - 1993: 3,47 - 1994: 3,46 - 2011: 15,-24 - 2012: 14,-24 - 2013: 18,-11 - 2014: 19,-11 - 5151: 18,-13 - 5152: 19,-13 - - node: - color: '#A4610696' - id: StandClearGreyscale - decals: - 5224: -44,27 - 5225: -44,28 - - node: - color: '#D381C9FF' - id: StandClearGreyscale - decals: - 5159: -16,35 - 5160: -15,35 - 5161: -14,35 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 833: 16,17 - 836: 7,19 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 834: 6,17 - 835: 15,19 - - node: - color: '#79150096' - id: WarnBox - decals: - 1423: -15,-13 - 1424: -15,-12 - - node: - color: '#791500FF' - id: WarnBox - decals: - 1425: -15,-13 - 1426: -15,-12 - - node: - color: '#DE3A3AFF' - id: WarnBox - decals: - 1246: -10,25 - 1421: -15,-15 - 1422: -15,-16 - - node: - color: '#52B4E996' - id: WarnBoxGreyscale - decals: - 1427: -15,-13 - 1428: -15,-12 - - node: - color: '#52B4E9FF' - id: WarnBoxGreyscale - decals: - 1247: -10,24 - - node: - color: '#FFFFFFFF' - id: WarnCornerNE - decals: - 1709: 8,-39 - 2353: -22,-16 - 5157: -14,35 - - node: - color: '#FFFFFFFF' - id: WarnCornerNW - decals: - 1708: 5,-39 - 2352: -24,-16 - 5162: -16,35 - 5181: 13,-32 - 5189: 25,31 - - node: - color: '#FFFFFFFF' - id: WarnCornerSE - decals: - 1074: -14,32 - 1707: 8,-42 - 2351: -22,-18 - - node: - color: '#FFFFFFFF' - id: WarnCornerSW - decals: - 1073: -16,32 - 1706: 5,-42 - 2354: -24,-18 - 5178: -7,-18 - 5180: 13,-34 - 5190: 27,34 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNE - decals: - 498: -9,63 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNW - decals: - 497: -6,63 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSW - decals: - 2322: 19,-33 - - node: - color: '#FFFFFFFF' - id: WarnLineE - decals: - 488: -6,64 - 489: -6,63 - 490: -6,62 - 491: -6,61 - 492: -6,59 - 493: -6,60 - 494: -9,64 - 1075: -14,33 - 1076: -14,34 - 1299: -12,-38 - 1300: -12,-37 - 1301: -12,-36 - 1302: -12,-35 - 1303: -12,-34 - 1304: -12,-33 - 1305: -12,-32 - 1306: -12,-25 - 1307: -12,-24 - 1308: -12,-23 - 1309: -12,-22 - 1704: 8,-40 - 1705: 8,-41 - 1979: 12,-18 - 1980: 12,-19 - 2064: -41,-5 - 2065: -41,-6 - 2066: -41,-7 - 2067: -41,-8 - 2355: -22,-17 - 5091: 20,-12 - 5092: 20,-13 - 5183: 23,34 - 5184: 23,33 - 5185: 23,32 - 5186: 23,31 - 5226: -45,27 - 5227: -45,28 - - node: - color: '#FFA500FF' - id: WarnLineN - decals: - 5175: -28,-29 - 5176: 26,-29 - - node: - color: '#FFFFFFFF' - id: WarnLineN - decals: - 1070: -15,32 - 1109: -8,32 - 1110: -7,32 - 1111: -6,32 - 1699: 6,-42 - 1700: 7,-42 - 2323: 18,-33 - 2330: 17,-33 - 2358: -23,-18 - 5179: -6,-18 - 5191: -29,49 - 5192: -28,49 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 485: -9,63 - 486: -9,64 - 487: -6,64 - 692: -9,62 - 1071: -16,33 - 1072: -16,34 - 1248: -15,27 - 1249: -15,28 - 1701: 5,-41 - 1702: 5,-40 - 1977: 11,-19 - 1978: 11,-18 - 2068: -42,-5 - 2069: -42,-6 - 2070: -42,-7 - 2071: -42,-8 - 2317: 19,-35 - 2318: 19,-34 - 2319: 19,-36 - 2320: 19,-37 - 2321: 19,-38 - 2357: -24,-17 - 5093: 17,-13 - 5094: 17,-12 - 5182: 13,-33 - 5208: -43,27 - 5209: -43,28 - 5228: -46,28 - 5229: -46,27 - - node: - color: '#FFA500FF' - id: WarnLineW - decals: - 5174: -28,-29 - 5177: 26,-29 - - node: - color: '#FFFFFFFF' - id: WarnLineW - decals: - 495: -7,63 - 496: -8,63 - 1215: -10,18 - 1216: -9,18 - 1217: -8,18 - 1703: 6,-39 - 2356: -23,-16 - 5158: -15,35 - 5187: 27,31 - 5188: 26,31 - - node: - color: '#E7B795FF' - id: WoodTrimThinCornerNe - decals: - 2228: 43,51 - 2245: 46,48 - - node: - color: '#FFD381FF' - id: WoodTrimThinCornerNe - decals: - 1554: -5,8 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNe - decals: - 748: 14,61 - 1206: -24,21 - - node: - color: '#E7B795FF' - id: WoodTrimThinCornerNw - decals: - 2229: 41,51 - 2234: 40,49 - 2246: 45,48 - - node: - color: '#FFD381FF' - id: WoodTrimThinCornerNw - decals: - 1565: -12,8 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNw - decals: - 747: 7,61 - 815: 14,34 - - node: - color: '#E7B795FF' - id: WoodTrimThinCornerSe - decals: - 2243: 46,46 - - node: - color: '#FFD381FF' - id: WoodTrimThinCornerSe - decals: - 1550: -5,4 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSe - decals: - 2279: 14,56 - - node: - color: '#E7B795FF' - id: WoodTrimThinCornerSw - decals: - 2237: 40,46 - - node: - color: '#FFD381FF' - id: WoodTrimThinCornerSw - decals: - 1559: -10,4 - 1563: -12,6 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSw - decals: - 2278: 7,56 - - node: - color: '#E7B795FF' - id: WoodTrimThinInnerNe - decals: - 2233: 43,46 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNe - decals: - 481: 3,70 - - node: - color: '#E7B795FF' - id: WoodTrimThinInnerNw - decals: - 2232: 41,49 - 2248: 45,46 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNw - decals: - 482: 7,70 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSe - decals: - 483: 3,74 - - node: - color: '#FFD381FF' - id: WoodTrimThinInnerSw - decals: - 1561: -10,6 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSw - decals: - 484: 7,74 - - node: - color: '#E7B795FF' - id: WoodTrimThinLineE - decals: - 2224: 43,47 - 2225: 43,48 - 2226: 43,49 - 2227: 43,50 - 2244: 46,47 - - node: - color: '#FFD381FF' - id: WoodTrimThinLineE - decals: - 1551: -5,5 - 1552: -5,6 - 1553: -5,7 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - decals: - 475: 3,71 - 476: 3,72 - 477: 3,73 - 759: 14,57 - 760: 14,58 - 761: 14,59 - 762: 14,60 - 1207: -24,20 - 1208: -24,19 - - node: - color: '#E7B795FF' - id: WoodTrimThinLineN - decals: - 2230: 42,51 - 2249: 44,46 - - node: - color: '#FFD381FF' - id: WoodTrimThinLineN - decals: - 1566: -11,8 - 1567: -10,8 - 1568: -9,8 - 1569: -8,8 - 1570: -7,8 - 1571: -6,8 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 469: 4,70 - 470: 5,70 - 471: 6,70 - 749: 8,61 - 750: 9,61 - 751: 10,61 - 752: 11,61 - 753: 12,61 - 754: 13,61 - 816: 15,34 - 817: 16,34 - 1205: -25,21 - 5337: 5,59 - 5340: 3,59 - 5341: 2,59 - 5342: 4,59 - - node: - color: '#E7B795FF' - id: WoodTrimThinLineS - decals: - 2238: 41,46 - 2239: 42,46 - 2240: 43,46 - 2241: 44,46 - 2242: 45,46 - - node: - color: '#FFD381FF' - id: WoodTrimThinLineS - decals: - 1555: -6,4 - 1556: -7,4 - 1557: -8,4 - 1558: -9,4 - 1562: -11,6 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - decals: - 472: 4,74 - 473: 5,74 - 474: 6,74 - 2272: 8,56 - 2273: 9,56 - 2274: 10,56 - 2275: 11,56 - 2276: 12,56 - 2277: 13,56 - - node: - color: '#E7B795FF' - id: WoodTrimThinLineW - decals: - 2231: 41,50 - 2235: 40,48 - 2236: 40,47 - 2247: 45,47 - - node: - color: '#FFD381FF' - id: WoodTrimThinLineW - decals: - 1560: -10,5 - 1564: -12,7 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - decals: - 478: 7,71 - 479: 7,72 - 480: 7,73 - 755: 7,60 - 756: 7,59 - 757: 7,58 - 758: 7,57 - 812: 14,31 - 813: 14,32 - 814: 14,33 - - node: - color: '#80C71F76' - id: grasssnowa2 - decals: - 5084: -45.348083,39.888554 - - node: - color: '#80C71F76' - id: grasssnowb1 - decals: - 5083: -45.952293,40.610558 - - node: - color: '#80C71F76' - id: grasssnowc1 - decals: - 5082: -47.55861,40.00643 - type: DecalGrid - - version: 2 - data: - tiles: - -1,-1: - 0: 65535 - -1,0: - 0: 65535 - 0,-1: - 0: 65535 - 0,0: - 0: 65535 - -4,-4: - 0: 65535 - -4,-3: - 0: 65535 - -4,-2: - 0: 65535 - -4,-1: - 0: 65535 - -3,-4: - 0: 65535 - -3,-3: - 0: 65535 - -3,-2: - 0: 65535 - -3,-1: - 0: 65535 - -2,-4: - 0: 65535 - -2,-3: - 0: 65535 - -2,-2: - 0: 65535 - -2,-1: - 0: 65535 - -1,-4: - 0: 65535 - -1,-3: - 0: 65535 - -1,-2: - 0: 65535 - -4,0: - 0: 65535 - -4,1: - 0: 65535 - -4,2: - 0: 65535 - -4,3: - 0: 65535 - -3,0: - 0: 65535 - -3,1: - 0: 65535 - -3,2: - 0: 65535 - -3,3: - 0: 65535 - -2,0: - 0: 65535 - -2,1: - 0: 65535 - -2,2: - 0: 65535 - -2,3: - 0: 65535 - -1,1: - 0: 65535 - -1,2: - 0: 65535 - -1,3: - 0: 65535 - 0,-4: - 0: 65535 - 0,-3: - 0: 65535 - 0,-2: - 0: 65535 - 1,-4: - 0: 65535 - 1,-3: - 0: 65535 - 1,-2: - 0: 65535 - 1,-1: - 0: 65535 - 2,-4: - 0: 65535 - 2,-3: - 0: 65535 - 2,-2: - 0: 65535 - 2,-1: - 0: 65535 - 3,-4: - 0: 65535 - 3,-3: - 0: 65535 - 3,-2: - 0: 65535 - 3,-1: - 0: 65519 - 1: 16 - 0,1: - 0: 65535 - 0,2: - 0: 65535 - 0,3: - 0: 65535 - 1,0: - 0: 65535 - 1,1: - 0: 65535 - 1,2: - 0: 65535 - 1,3: - 0: 65535 - 2,0: - 0: 13119 - 2: 52416 - 2,1: - 0: 65535 - 2,2: - 0: 65535 - 2,3: - 0: 65535 - 3,0: - 0: 61167 - 2: 4368 - 3,1: - 0: 65535 - 3,2: - 0: 65535 - 3,3: - 0: 65535 - -4,4: - 0: 65535 - -4,5: - 0: 65535 - -4,6: - 0: 65535 - -4,7: - 0: 65535 - -3,4: - 0: 65535 - -3,5: - 0: 65535 - -3,6: - 0: 65535 - -3,7: - 0: 65535 - -2,4: - 0: 65535 - -2,5: - 0: 65535 - -2,6: - 0: 65535 - -2,7: - 0: 65535 - -1,4: - 0: 65535 - -1,5: - 0: 65535 - -1,6: - 0: 65535 - -1,7: - 0: 65535 - 0,4: - 0: 65535 - 0,5: - 0: 65535 - 0,6: - 0: 65535 - 0,7: - 0: 65535 - 1,4: - 0: 65535 - 1,5: - 0: 65535 - 1,6: - 0: 65535 - 1,7: - 0: 65535 - 2,4: - 0: 65535 - 2,5: - 0: 65535 - 2,6: - 0: 65535 - 2,7: - 0: 65535 - 3,4: - 0: 65535 - 3,5: - 0: 65535 - 3,6: - 0: 65535 - 3,7: - 0: 65535 - 4,0: - 0: 65535 - 4,1: - 0: 65535 - 4,2: - 0: 65535 - 4,3: - 0: 65535 - 5,0: - 0: 65535 - 5,1: - 0: 65535 - 5,2: - 0: 65535 - 5,3: - 0: 65535 - 6,0: - 0: 65535 - 6,1: - 0: 65535 - 6,2: - 0: 65535 - 6,3: - 0: 65535 - 7,0: - 0: 65535 - 7,1: - 0: 65535 - 7,2: - 0: 65535 - 7,3: - 0: 65535 - 4,-4: - 0: 65535 - 4,-3: - 0: 65535 - 4,-2: - 0: 65535 - 4,-1: - 0: 65535 - 5,-4: - 0: 65535 - 5,-3: - 0: 65535 - 5,-2: - 0: 65535 - 5,-1: - 0: 65535 - 6,-4: - 0: 65535 - 6,-3: - 0: 65535 - 6,-2: - 0: 65535 - 6,-1: - 0: 65535 - 7,-4: - 0: 65535 - 7,-3: - 0: 65535 - 7,-2: - 0: 65535 - 7,-1: - 0: 65535 - 4,4: - 0: 65535 - 4,5: - 0: 65535 - 4,6: - 0: 65535 - 4,7: - 0: 65535 - 5,4: - 0: 65535 - 5,5: - 0: 65535 - 5,6: - 0: 65535 - 5,7: - 0: 65535 - 6,4: - 0: 65535 - 6,5: - 0: 65535 - 6,6: - 0: 65535 - 6,7: - 0: 65535 - 7,4: - 0: 65535 - 7,5: - 0: 65535 - 7,6: - 0: 65535 - 7,7: - 0: 65535 - -8,-4: - 0: 53247 - 2: 12288 - -8,-3: - 2: 3 - 0: 65532 - -8,-2: - 0: 65535 - -8,-1: - 0: 65535 - -7,-4: - 0: 65535 - -7,-3: - 0: 65535 - -7,-2: - 0: 65535 - -7,-1: - 0: 65535 - -6,-4: - 0: 65535 - -6,-3: - 0: 65535 - -6,-2: - 0: 65535 - -6,-1: - 0: 65535 - -5,-4: - 0: 65535 - -5,-3: - 0: 65535 - -5,-2: - 0: 65535 - -5,-1: - 0: 65535 - -8,4: - 0: 65535 - -8,5: - 0: 65535 - -8,6: - 0: 65535 - -8,7: - 0: 65535 - -7,4: - 0: 65535 - -7,5: - 0: 65535 - -7,6: - 0: 65535 - -7,7: - 0: 65535 - -6,4: - 0: 65535 - -6,5: - 0: 65535 - -6,6: - 0: 65535 - -6,7: - 0: 65535 - -5,4: - 0: 65535 - -5,5: - 0: 65535 - -5,6: - 0: 65535 - -5,7: - 0: 65535 - -8,0: - 0: 65535 - -8,1: - 0: 65535 - -8,2: - 0: 65535 - -8,3: - 0: 65535 - -7,0: - 0: 65535 - -7,1: - 0: 65535 - -7,2: - 0: 65535 - -7,3: - 0: 65535 - -6,0: - 0: 65535 - -6,1: - 0: 65535 - -6,2: - 0: 65535 - -6,3: - 0: 65535 - -5,0: - 0: 65535 - -5,1: - 0: 65535 - -5,2: - 0: 65535 - -5,3: - 0: 65535 - 8,-4: - 0: 65535 - 8,-3: - 0: 65535 - 8,-2: - 0: 65535 - 8,-1: - 0: 65535 - 9,-4: - 0: 65535 - 9,-3: - 0: 65535 - 9,-2: - 0: 8191 - 10,-4: - 0: 63999 - 10,-3: - 0: 65535 - 10,-2: - 0: 4095 - 11,-4: - 0: 65535 - 11,-3: - 0: 65535 - 11,-2: - 0: 65535 - 8,0: - 0: 65535 - 8,1: - 0: 65535 - 8,2: - 0: 65535 - 8,3: - 0: 65535 - 9,2: - 0: 63487 - 9,3: - 0: 65535 - 10,2: - 0: 61440 - 10,3: - 0: 65535 - 11,2: - 0: 65280 - 11,3: - 0: 65535 - 8,4: - 0: 32767 - 8,5: - 0: 13107 - 8,6: - 0: 13107 - 8,7: - 0: 13107 - 9,4: - 0: 255 - 10,4: - 0: 255 - 11,4: - 0: 4095 - -12,-4: - 0: 61440 - -12,-3: - 0: 65535 - -12,-2: - 0: 36863 - -12,-1: - 0: 34952 - -11,-3: - 0: 65535 - -11,-2: - 0: 65535 - -11,-1: - 0: 65535 - -11,-4: - 0: 64640 - -10,-4: - 0: 65535 - -10,-3: - 0: 65535 - -10,-2: - 0: 65535 - -10,-1: - 0: 65535 - -9,-4: - 0: 32767 - 2: 32768 - -9,-3: - 0: 65527 - 2: 8 - -9,-2: - 0: 65535 - -9,-1: - 0: 65535 - -12,2: - 0: 63624 - -12,3: - 0: 65535 - -12,0: - 0: 34952 - -12,1: - 0: 34952 - -11,0: - 0: 65535 - -11,1: - 0: 65535 - -11,2: - 0: 65519 - 3: 16 - -11,3: - 0: 65535 - -10,0: - 0: 65535 - -10,1: - 0: 65535 - -10,2: - 0: 65535 - -10,3: - 0: 65535 - -9,0: - 0: 65535 - -9,1: - 0: 65535 - -9,2: - 0: 65535 - -9,3: - 0: 65535 - -12,4: - 0: 32767 - 4: 32768 - -12,6: - 0: 52428 - 4: 8736 - -12,5: - 0: 32768 - 4: 19660 - -12,7: - 0: 8 - 4: 3814 - -11,4: - 0: 65535 - -11,5: - 0: 65535 - -11,6: - 0: 65535 - -11,7: - 0: 65535 - -10,4: - 0: 65535 - -10,5: - 0: 65535 - -10,6: - 0: 65535 - -10,7: - 0: 65535 - -9,4: - 0: 65535 - -9,5: - 0: 65535 - -9,6: - 0: 65535 - -9,7: - 0: 65535 - 12,2: - 0: 65280 - 12,3: - 0: 65535 - 13,2: - 0: 4096 - 13,3: - 0: 4369 - 12,4: - 0: 4095 - 13,4: - 0: 17 - 8,8: - 0: 65527 - 8,9: - 0: 65535 - 8,10: - 0: 65535 - 8,11: - 0: 65535 - 9,8: - 0: 65280 - 9,9: - 0: 65535 - 9,10: - 0: 65535 - 9,11: - 0: 65535 - 10,8: - 0: 65280 - 10,9: - 0: 65535 - 10,10: - 0: 65535 - 10,11: - 0: 65535 - 11,8: - 0: 65520 - 11,9: - 0: 65535 - 11,10: - 0: 65535 - 11,11: - 0: 65535 - 12,8: - 0: 63344 - 12,9: - 0: 65535 - 12,10: - 0: 30591 - 12,11: - 0: 8183 - 13,8: - 0: 4096 - 13,9: - 0: 4369 - 13,10: - 0: 4369 - 13,11: - 0: 4369 - 4,8: - 0: 65535 - 4,9: - 0: 65535 - 4,10: - 0: 65535 - 4,11: - 0: 65535 - 5,8: - 0: 65535 - 5,9: - 0: 65535 - 5,10: - 0: 65535 - 5,11: - 0: 65535 - 6,8: - 0: 65535 - 6,9: - 0: 65535 - 6,10: - 0: 65535 - 6,11: - 0: 65535 - 7,8: - 0: 65535 - 7,9: - 0: 65535 - 7,10: - 0: 65535 - 7,11: - 0: 65535 - 12,-4: - 0: 65535 - 12,-3: - 0: 65535 - 12,-2: - 0: 30719 - 13,-3: - 0: 4368 - 13,-2: - 0: 17 - -14,-3: - 0: 52416 - -14,-2: - 0: 204 - -13,-4: - 0: 61440 - -13,-3: - 0: 65535 - -13,-2: - 0: 4095 - -14,3: - 0: 52428 - -13,2: - 0: 61440 - -13,3: - 0: 65535 - -14,4: - 0: 2252 - -13,4: - 0: 65535 - 0,8: - 0: 65535 - 0,9: - 0: 65535 - 0,10: - 0: 65535 - 0,11: - 0: 65535 - 1,8: - 0: 65535 - 1,9: - 0: 65535 - 1,10: - 0: 65535 - 1,11: - 0: 65535 - 2,8: - 0: 65535 - 2,9: - 0: 65535 - 2,10: - 0: 65535 - 2,11: - 0: 65535 - 3,8: - 0: 65535 - 3,9: - 0: 65535 - 3,10: - 0: 65535 - 3,11: - 0: 65535 - -4,8: - 0: 65535 - -4,9: - 0: 65535 - -4,10: - 0: 65535 - -4,11: - 0: 65535 - -3,8: - 0: 65535 - -3,9: - 0: 65535 - -3,10: - 0: 65535 - -3,11: - 0: 65535 - -2,8: - 0: 65535 - -2,9: - 0: 65535 - -2,10: - 0: 65535 - -2,11: - 0: 65535 - -1,8: - 0: 65535 - -1,9: - 0: 65535 - -1,10: - 0: 65535 - -1,11: - 0: 65535 - -8,8: - 0: 65535 - -8,9: - 0: 65535 - -8,10: - 0: 65535 - -8,11: - 0: 65535 - -7,8: - 0: 65535 - -7,9: - 0: 65535 - -7,10: - 0: 65535 - -7,11: - 0: 65535 - -6,8: - 0: 65535 - -6,9: - 0: 65535 - -6,10: - 0: 65535 - -6,11: - 0: 65535 - -5,8: - 0: 65535 - -5,9: - 0: 65535 - -5,10: - 0: 65535 - -5,11: - 0: 65535 - -12,8: - 0: 65527 - -12,9: - 0: 65535 - -12,10: - 0: 65535 - -12,11: - 0: 65535 - -11,8: - 0: 65535 - -11,9: - 0: 65535 - -11,10: - 0: 65535 - -11,11: - 0: 65535 - -10,8: - 0: 65535 - -10,9: - 0: 65535 - -10,10: - 0: 65535 - -10,11: - 0: 65535 - -9,8: - 0: 65535 - -9,9: - 0: 65535 - -9,10: - 0: 65535 - -9,11: - 0: 65535 - -14,8: - 0: 52352 - -14,9: - 0: 52428 - -14,10: - 0: 17484 - -13,8: - 0: 65535 - -13,9: - 0: 65535 - -13,10: - 0: 65535 - -13,11: - 0: 57343 - 0,-8: - 0: 65279 - 4: 256 - 0,-7: - 5: 1 - 0: 65278 - 4: 256 - 0,-6: - 4: 1 - 0: 65278 - 6: 256 - 0,-5: - 7: 1 - 0: 65534 - 1,-8: - 0: 65535 - 1,-7: - 0: 65535 - 1,-6: - 0: 65535 - 1,-5: - 0: 65535 - 2,-8: - 0: 65535 - 2,-7: - 0: 65535 - 2,-6: - 0: 65535 - 2,-5: - 0: 65535 - 3,-8: - 0: 65535 - 3,-7: - 0: 65535 - 3,-6: - 0: 65535 - 3,-5: - 0: 65535 - -4,-8: - 0: 65535 - -4,-7: - 0: 65535 - -4,-6: - 0: 65535 - -4,-5: - 0: 65535 - -3,-8: - 0: 65535 - -3,-7: - 0: 65535 - -3,-6: - 0: 65535 - -3,-5: - 0: 65535 - -2,-8: - 0: 65535 - -2,-7: - 0: 65535 - -2,-6: - 0: 65535 - -2,-5: - 0: 65535 - -1,-8: - 0: 62463 - 4: 3072 - -1,-7: - 0: 62451 - 5: 12 - 4: 3072 - -1,-6: - 0: 62451 - 4: 12 - 6: 3072 - -1,-5: - 0: 65523 - 7: 12 - -12,12: - 0: 61439 - -12,13: - 0: 58111 - -11,12: - 0: 65535 - -11,13: - 0: 65279 - -11,14: - 0: 36463 - -10,12: - 0: 65535 - -10,13: - 0: 65535 - -10,14: - 0: 45055 - -10,15: - 0: 43690 - -9,12: - 0: 65535 - -9,13: - 0: 65535 - -9,14: - 0: 4095 - -9,15: - 0: 15 - -13,12: - 0: 20477 - -13,13: - 0: 204 - -8,12: - 0: 65535 - -8,13: - 0: 65535 - -8,14: - 0: 65535 - -8,15: - 0: 3871 - -7,12: - 0: 65535 - -7,13: - 0: 65535 - -7,14: - 0: 65535 - -7,15: - 0: 3855 - -6,12: - 0: 65535 - -6,13: - 0: 65535 - -6,14: - 0: 65535 - -6,15: - 0: 53199 - -5,12: - 0: 65535 - -5,13: - 0: 65535 - -5,14: - 0: 65535 - -5,15: - 0: 65535 - -4,12: - 0: 65535 - -4,13: - 0: 65535 - -4,14: - 0: 65535 - -4,15: - 0: 65535 - -3,12: - 0: 65535 - -3,13: - 0: 65535 - -3,14: - 0: 65535 - -3,15: - 0: 65535 - -2,12: - 0: 65535 - -2,13: - 0: 65535 - -2,14: - 0: 65535 - -2,15: - 0: 65535 - -1,12: - 0: 65535 - -1,13: - 0: 65535 - -1,14: - 0: 65535 - -1,15: - 0: 65535 - 0,12: - 0: 65535 - 0,13: - 0: 65535 - 0,14: - 0: 65535 - 0,15: - 0: 65535 - 1,12: - 0: 65535 - 1,13: - 0: 65535 - 1,14: - 0: 65535 - 1,15: - 0: 65535 - 2,12: - 0: 65535 - 2,13: - 0: 65535 - 2,14: - 0: 65535 - 2,15: - 0: 65535 - 3,12: - 0: 65535 - 3,13: - 0: 65535 - 3,14: - 0: 65535 - 3,15: - 0: 65535 - 4,12: - 0: 65535 - 4,13: - 0: 65535 - 4,14: - 0: 65535 - 4,15: - 0: 65535 - 5,12: - 0: 65535 - 5,13: - 0: 65535 - 5,14: - 0: 65535 - 5,15: - 0: 7967 - 6,12: - 0: 65535 - 6,13: - 0: 65535 - 6,14: - 0: 65535 - 6,15: - 0: 3855 - 7,12: - 0: 65535 - 7,13: - 0: 65535 - 7,14: - 0: 32767 - 7,15: - 0: 1871 - 8,12: - 0: 65535 - 8,13: - 0: 65535 - 8,14: - 0: 36863 - 8,15: - 0: 34959 - 9,12: - 0: 65535 - 9,13: - 0: 65535 - 9,14: - 0: 65535 - 9,15: - 0: 43775 - 10,12: - 0: 65535 - 10,13: - 0: 62463 - 10,14: - 0: 1895 - 11,12: - 0: 16383 - 11,13: - 0: 12863 - -4,16: - 0: 65535 - -4,17: - 0: 65535 - -4,18: - 0: 36639 - -4,19: - 0: 34952 - -3,16: - 0: 65535 - -3,17: - 0: 65535 - -3,18: - 0: 61423 - -3,19: - 0: 65262 - -2,16: - 0: 65535 - -2,17: - 0: 65535 - -2,18: - 0: 65535 - -2,19: - 0: 65535 - -1,16: - 0: 65535 - -1,17: - 0: 65535 - -1,18: - 0: 65535 - -1,19: - 0: 65535 - -6,16: - 0: 19660 - -6,17: - 0: 12 - -5,16: - 0: 4095 - -5,17: - 0: 15 - 0,16: - 0: 65535 - 0,17: - 0: 65535 - 0,18: - 0: 65535 - 0,19: - 0: 65535 - 1,16: - 0: 65535 - 1,17: - 0: 65535 - 1,18: - 0: 65535 - 1,19: - 0: 65535 - 2,16: - 0: 65535 - 2,17: - 0: 65535 - 2,18: - 0: 48959 - 2,19: - 0: 64443 - 3,16: - 0: 32767 - 3,17: - 0: 30591 - 3,18: - 0: 1863 - 4,16: - 0: 4095 - 4,17: - 0: 15 - 5,16: - 0: 4369 - 5,17: - 0: 1 - -3,20: - 0: 40925 - -3,21: - 0: 3592 - -2,20: - 0: 65535 - -2,21: - 0: 60303 - -1,20: - 0: 65535 - -1,21: - 0: 61695 - 0,20: - 0: 65535 - 0,21: - 0: 63743 - 1,20: - 0: 65535 - 1,21: - 0: 15887 - 2,20: - 0: 18261 - -9,-5: - 0: 65535 - -8,-5: - 0: 65535 - -8,-6: - 0: 65535 - -7,-6: - 0: 65535 - -7,-5: - 0: 65535 - -7,-8: - 0: 65466 - -7,-7: - 0: 65535 - -6,-8: - 0: 65535 - -6,-7: - 0: 65535 - -6,-6: - 0: 65535 - -6,-5: - 0: 65535 - -5,-8: - 0: 65535 - -5,-7: - 0: 65535 - -5,-6: - 0: 65535 - -5,-5: - 0: 65535 - 4,-8: - 0: 65535 - 4,-7: - 0: 65535 - 4,-6: - 0: 65535 - 4,-5: - 0: 65535 - 5,-8: - 0: 65535 - 5,-7: - 0: 65535 - 5,-6: - 0: 65535 - 5,-5: - 0: 65535 - 6,-6: - 0: 65535 - 6,-5: - 0: 65535 - 7,-6: - 0: 65535 - 7,-5: - 0: 65535 - 8,-5: - 0: 65535 - 4,-11: - 0: 63474 - 4,-10: - 0: 65535 - 4,-9: - 0: 65535 - 5,-10: - 0: 48063 - 5,-9: - 0: 64443 - 0,-12: - 4: 13073 - 0: 52462 - 0,-11: - 4: 4355 - 0: 61180 - 0,-10: - 4: 1 - 0: 65534 - 0,-9: - 4: 273 - 0: 65262 - 1,-12: - 0: 65535 - 1,-11: - 0: 65535 - 1,-10: - 0: 65535 - 1,-9: - 0: 65535 - 2,-12: - 0: 65535 - 2,-11: - 0: 65535 - 2,-10: - 0: 65535 - 2,-9: - 0: 65535 - 3,-12: - 0: 63359 - 3,-11: - 0: 65535 - 3,-10: - 0: 65535 - 3,-9: - 0: 65535 - -4,-12: - 0: 65535 - -4,-11: - 0: 65535 - -4,-10: - 0: 65535 - -4,-9: - 0: 65535 - -3,-12: - 0: 65535 - -3,-11: - 0: 65535 - -3,-10: - 0: 65535 - -3,-9: - 0: 65535 - -2,-12: - 0: 65535 - -2,-11: - 0: 65535 - -2,-10: - 0: 65535 - -2,-9: - 0: 65535 - -1,-12: - 0: 4403 - 4: 61132 - -1,-11: - 0: 13169 - 4: 52366 - -1,-10: - 0: 65523 - 4: 12 - -1,-9: - 0: 62259 - 4: 3276 - -6,-10: - 0: 61167 - -6,-9: - 0: 65262 - -5,-10: - 0: 65535 - -5,-9: - 0: 65535 - -5,-11: - 0: 65530 - -5,-12: - 0: 41518 - -4,-13: - 0: 52352 - -3,-14: - 0: 65518 - -3,-13: - 0: 65535 - -3,-15: - 0: 60620 - -3,-16: - 0: 51336 - -2,-16: - 0: 30583 - -2,-15: - 0: 65535 - -2,-14: - 0: 65535 - -2,-13: - 0: 65535 - -1,-13: - 0: 16320 - 4: 49152 - 0,-13: - 4: 4096 - 0: 61336 - 0,-15: - 0: 34952 - 0,-14: - 0: 34952 - 1,-16: - 0: 65535 - 1,-15: - 0: 65535 - 1,-14: - 0: 65535 - 1,-13: - 0: 65535 - 2,-15: - 0: 12561 - 2,-14: - 0: 30515 - 2,-13: - 0: 65527 - -3,-18: - 0: 34944 - -3,-17: - 0: 34952 - -2,-18: - 0: 13105 - -2,-17: - 0: 29491 - 1,-18: - 0: 61156 - 1,-17: - 0: 65262 - 12,12: - 0: 4383 - 12,13: - 0: 1 - 13,12: - 0: 1 - 2,-16: - 0: 4096 - 3,-13: - 0: 4352 - -10,-5: - 0: 65535 - -10,-6: - 0: 61166 - -9,-6: - 0: 65535 - -9,-7: - 0: 65521 - -8,-7: - 0: 65535 - 8,-6: - 0: 65535 - 9,-6: - 0: 13107 - 9,-5: - 0: 30583 - 9,-1: - 0: 65527 - 9,0: - 0: 65535 - 9,1: - 0: 65535 - -14,11: - 0: 3140 - -12,14: - 0: 14 - 2,21: - 0: 768 - -10,-7: - 0: 8928 - -9,-8: - 0: 61440 - -8,-8: - 0: 63985 - 6,-8: - 0: 65506 - 6,-7: - 0: 65535 - 7,-8: - 0: 62002 - 7,-7: - 0: 65527 - 8,-8: - 0: 28672 - 8,-7: - 0: 30708 - 9,-7: - 0: 8752 - 4,-12: - 0: 8739 - 5,-11: - 0: 8752 - 6,-9: - 0: 61440 - 7,-9: - 0: 12288 - -8,-9: - 0: 61440 - -7,-9: - 0: 63624 - -7,-10: - 0: 34952 - -6,-11: - 0: 41696 - 13,-4: - 0: 273 - -11,15: - 0: 34952 - -8,17: - 0: 3967 - -8,18: - 0: 3967 - -8,19: - 0: 3967 - -7,16: - 0: 4352 - -7,17: - 0: 4369 - -7,18: - 0: 4369 - -7,19: - 0: 4369 - 6,16: - 0: 17408 - 6,17: - 0: 19532 - 6,18: - 0: 19532 - 6,19: - 0: 19532 - 7,17: - 0: 4095 - 7,18: - 0: 4095 - 7,19: - 0: 4095 - 10,-5: - 0: 65535 - 11,-6: - 0: 64799 - 11,-5: - 0: 65535 - 8,17: - 0: 36863 - 8,18: - 0: 36863 - 8,19: - 0: 36863 - 8,16: - 0: 34952 - 9,16: - 0: 44970 - 9,17: - 0: 43770 - 9,18: - 0: 43770 - 9,19: - 0: 64250 - 10,17: - 0: 4095 - 10,18: - 0: 4095 - 10,19: - 0: 4095 - 11,17: - 0: 3967 - 11,18: - 0: 3967 - 11,19: - 0: 3967 - 8,20: - 0: 143 - 9,20: - 0: 248 - 10,20: - 0: 15 - 11,20: - 0: 15 - 6,20: - 0: 12 - 7,20: - 0: 15 - 12,20: - 0: 1 - 12,16: - 0: 4352 - 12,17: - 0: 4369 - 12,18: - 0: 4369 - 12,19: - 0: 4369 - -12,17: - 0: 4095 - -12,18: - 0: 4095 - -12,19: - 0: 4095 - -11,17: - 0: 36863 - -11,18: - 0: 36863 - -11,19: - 0: 36863 - -11,16: - 0: 34952 - -10,17: - 0: 43770 - -10,18: - 0: 43770 - -10,19: - 0: 64250 - -10,16: - 0: 43690 - -9,17: - 0: 4095 - -9,18: - 0: 4095 - -9,19: - 0: 4095 - -13,16: - 0: 17408 - -13,17: - 0: 19532 - -13,18: - 0: 19532 - -13,19: - 0: 19532 - -13,20: - 0: 12 - -12,20: - 0: 15 - -11,20: - 0: 143 - -10,20: - 0: 248 - -9,20: - 0: 15 - -8,20: - 0: 15 - -7,20: - 0: 1 - 12,-6: - 0: 62799 - 12,-5: - 0: 65535 - 13,-5: - 0: 4369 - 10,-6: - 0: 32782 - 13,-6: - 0: 1 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 235 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 23.246532 - - 87.451256 - - 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 - - 0 - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - type: GridAtmosphere - - type: GasTileOverlay - - type: RadiationGridResistance - - id: Aspid - type: BecomesStation - - joints: - docking21483: !type:WeldJoint - bodyB: 8756 - bodyA: 1 - id: docking21483 - localAnchorB: -5,0.5 - localAnchorA: 38,3.5 - damping: 791.6185 - stiffness: 7105.552 - docking21482: !type:WeldJoint - bodyB: 8756 - bodyA: 1 - id: docking21482 - localAnchorB: -5,-1.5 - localAnchorA: 38,1.5 - damping: 791.6185 - stiffness: 7105.552 - type: Joint - - type: SpreaderGrid - - type: GridPathfinding - - uid: 6526 - components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: Broadphase - - type: OccluderTree - - parallax: AspidParallax - type: Parallax - - type: LoadedMap - - type: GridTree - - type: MovedGrids - - uid: 8756 - components: - - type: MetaData - - pos: 43.1,3.5 - parent: 6526 - type: Transform - - chunks: - -1,-1: - ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAIwAAASMAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAUwAAACMAAAIjAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZwAAAFMAAAMjAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAIwAAAyMAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAfAAACIwAAAB8AAAIjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAGgAAAGcAAAAjAAADIwAAAQ== - -1,0: - ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAHwAAAyMAAAAfAAACIwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAACMAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZwAAABoAAAMaAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAaAAADGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,0: - ind: 0,0 - tiles: HwAAAyMAAAAfAAACZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAABZwAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAA2cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,-1: - ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACMAAAFnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAABUwAAAWcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAFMAAANnAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACMAAAFnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAACIwAAAB8AAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAA2cAAAAaAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - type: MapGrid - - type: Broadphase - - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: {} - type: Fixtures - - type: OccluderTree - - type: Shuttle - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: - version: 2 - nodes: - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 0: 0,-2 - 1: 2,-2 - 2: 0,0 - 3: 2,0 - - node: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 4: -4,0 - 5: -4,-2 - 6: -2,0 - 7: -2,-2 - - node: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: Bot - decals: - 8: -2,-2 - 9: -4,-2 - 10: -4,0 - 11: -2,0 - 12: 0,0 - 13: 0,-2 - 14: 2,-2 - 15: 2,0 - 16: 1,-4 - 17: 1,-5 - 18: -3,-4 - 19: -3,-5 - 20: -1,-4 - - node: - cleanable: True - color: '#83543273' - id: Dirt - decals: - 21: -4,0 - 22: -4,-1 - 23: -1,-1 - 24: 0,0 - 25: -1,-2 - 26: -2,-2 - 27: -2,-4 - 28: -2,-5 - 29: 0,-5 - 30: 0,-4 - 31: 0,-2 - 32: 0,-1 - 33: -1,2 - 34: -2,2 - 35: 0,-1 - 36: 2,0 - 37: 2,-1 - 38: 2,-2 - 39: 2,0 - 40: 1,0 - type: DecalGrid - - version: 2 - data: - tiles: - -1,-1: - 0: 65533 - 1: 2 - -1,0: - 0: 61439 - 0,0: - 0: 14335 - 0,-1: - 0: 65533 - 1: 2 - -2,-1: - 0: 34952 - -1,-2: - 0: 65534 - -1,-3: - 0: 49152 - -2,0: - 0: 136 - -1,1: - 0: 206 - 0,1: - 0: 19 - 0,-3: - 0: 4096 - 0,-2: - 0: 30579 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 15.142283 - - 56.963825 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - type: GridAtmosphere - - type: GasTileOverlay - - type: RadiationGridResistance - - joints: - docking21483: !type:WeldJoint - bodyB: 8756 - bodyA: 1 - id: docking21483 - localAnchorB: -5,0.5 - localAnchorA: 38,3.5 - damping: 791.6185 - stiffness: 7105.552 - docking21482: !type:WeldJoint - bodyB: 8756 - bodyA: 1 - id: docking21482 - localAnchorB: -5,-1.5 - localAnchorA: 38,1.5 - damping: 791.6185 - stiffness: 7105.552 - type: Joint - - type: SpreaderGrid - - type: GridPathfinding -- proto: AcousticGuitarInstrument - entities: - - uid: 9102 - components: - - pos: 6.605979,-25.237396 - parent: 1 - type: Transform -- proto: AdvancedCapacitorStockPart - entities: - - uid: 6544 - components: - - pos: 22.399736,-23.44135 - parent: 1 - type: Transform - - uid: 13453 - components: - - pos: -46.782776,46.69757 - parent: 1 - type: Transform -- proto: AdvancedMatterBinStockPart - entities: - - uid: 13454 - components: - - pos: -46.41361,46.78272 - parent: 1 - type: Transform -- proto: AirAlarm - entities: - - uid: 8754 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-42.5 - parent: 1 - type: Transform - - devices: - - 8752 - - 8751 - - 8753 - type: DeviceList - - uid: 14673 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,10.5 - parent: 1 - type: Transform - - devices: - - 5769 - - 5770 - - 5771 - - 5772 - - 8926 - - 5783 - - 5784 - - 5785 - - 9048 - - 5760 - - 5759 - - 5758 - - 5757 - - 5779 - - 5780 - - 5781 - - 5778 - - 5777 - - 5776 - - 14635 - - 14636 - - 14633 - - 5390 - - 14659 - - 14660 - - 14672 - - 14683 - - 14697 - type: DeviceList - - uid: 17330 - components: - - rot: 3.141592653589793 rad - pos: -2.5,75.5 - parent: 1 - type: Transform - - devices: - - 6125 - - 6124 - - 6122 - - 6123 - - 17332 - - 16339 - - 16334 - - 16332 - - 16327 - - 16331 - - 16328 - - 16348 - - 16349 - type: DeviceList - - uid: 17334 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,71.5 - parent: 1 - type: Transform - - devices: - - 6125 - - 16348 - - 16349 - - 17335 - type: DeviceList - - uid: 17336 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,71.5 - parent: 1 - type: Transform - - devices: - - 6120 - - 6121 - - 6123 - - 6122 - - 16285 - - 16287 - - 16286 - - 16288 - - 17335 - - 17338 - type: DeviceList - - uid: 17339 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,65.5 - parent: 1 - type: Transform - - devices: - - 6121 - - 6120 - - 6127 - - 6128 - - 6126 - - 6115 - - 6114 - - 6113 - - 6129 - - 16240 - - 16241 - - 17332 - - 16283 - - 16284 - - 17341 - type: DeviceList - - uid: 17343 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,63.5 - parent: 1 - type: Transform - - devices: - - 6129 - - 16238 - - 16239 - - 17338 - - 17344 - type: DeviceList - - uid: 17346 - components: - - rot: 3.141592653589793 rad - pos: 8.5,51.5 - parent: 1 - type: Transform - - devices: - - 6119 - - 6118 - - 16196 - - 16195 - - 16214 - - 16206 - - 17347 - type: DeviceList - - uid: 17349 - components: - - pos: 2.5,58.5 - parent: 1 - type: Transform - - devices: - - 6113 - - 6114 - - 6115 - - 6110 - - 6111 - - 6112 - - 6119 - - 6118 - - 6116 - - 6117 - - 17338 - - 17344 - - 17350 - - 15982 - - 15981 - - 17351 - type: DeviceList - - uid: 17352 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,43.5 - parent: 1 - type: Transform - - devices: - - 6130 - - 6131 - - 6110 - - 6111 - - 6112 - - 6133 - - 6132 - - 5635 - - 5636 - - 5637 - - 15921 - - 15922 - - 15945 - - 15944 - - 17347 - - 17354 - type: DeviceList - - uid: 17355 - components: - - pos: -12.5,57.5 - parent: 1 - type: Transform - - devices: - - 6116 - - 6117 - - 17363 - - 17362 - - 8180 - - 17359 - - 17360 - - 17361 - - 17364 - - 16017 - - 16018 - - 16049 - - 16050 - - 17365 - - 17347 - type: DeviceList - - uid: 17358 - components: - - pos: -5.5,65.5 - parent: 1 - type: Transform - - devices: - - 15999 - - 16037 - - 16040 - - 15998 - type: DeviceList - - uid: 17366 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,45.5 - parent: 1 - type: Transform - - devices: - - 8180 - - 17359 - - 17360 - - 17361 - - 17368 - - 17369 - - 17370 - - 17371 - - 6130 - - 6131 - - 16142 - - 16141 - - 16006 - - 16007 - - 17354 - - 16183 - - 16191 - - 16184 - - 16189 - - 16185 - - 16188 - - 16186 - - 16187 - - 16095 - - 16094 - type: DeviceList - - uid: 17373 - components: - - pos: -33.5,50.5 - parent: 1 - type: Transform - - devices: - - 7022 - - 7023 - - 16143 - - 16175 - - 16155 - - 16158 - - 16156 - - 16157 - - 16171 - - 16170 - - 16169 - type: DeviceList - - uid: 17376 - components: - - pos: -47.5,45.5 - parent: 1 - type: Transform - - devices: - - 7898 - - 7899 - - 7894 - - 7895 - - 15910 - - 15908 - - 17375 - type: DeviceList - - uid: 17386 - components: - - pos: -38.5,39.5 - parent: 1 - type: Transform - - devices: - - 7898 - - 7899 - - 7894 - - 7895 - - 5835 - - 5833 - - 5834 - - 15909 - - 15907 - - 17378 - - 15911 - - 15906 - - 17387 - type: DeviceList - - uid: 17389 - components: - - pos: -22.5,39.5 - parent: 1 - type: Transform - - devices: - - 5632 - - 5633 - - 5634 - - 5839 - - 5840 - - 5841 - - 6138 - - 6136 - - 15859 - - 15860 - - 17387 - - 17390 - - 15226 - - 15225 - type: DeviceList - - uid: 17394 - components: - - pos: -14.5,39.5 - parent: 1 - type: Transform - - devices: - - 9591 - - 9590 - - 9589 - - 5633 - - 5632 - - 5634 - - 6134 - - 6135 - - 6137 - - 15225 - - 15226 - - 17391 - - 17393 - - 17395 - type: DeviceList - - uid: 17396 - components: - - pos: 4.5,39.5 - parent: 1 - type: Transform - - devices: - - 5644 - - 5645 - - 5646 - - 5640 - - 5639 - - 5638 - - 5637 - - 5636 - - 5635 - - 9591 - - 9590 - - 9589 - - 17398 - - 15200 - - 566 - - 15172 - - 15173 - - 15154 - - 15155 - - 17350 - - 17390 - type: DeviceList - - uid: 17400 - components: - - rot: 3.141592653589793 rad - pos: 20.5,35.5 - parent: 1 - type: Transform - - devices: - - 5631 - - 5630 - - 5629 - - 5688 - - 5689 - - 5690 - - 5691 - - 5687 - - 5686 - - 7267 - - 7268 - - 5708 - - 5709 - - 5710 - - 15155 - - 15154 - - 15094 - - 17402 - - 17401 - - 15095 - - 14983 - - 15076 - - 15075 - type: DeviceList - - uid: 17403 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,41.5 - parent: 1 - type: Transform - - devices: - - 5686 - - 5687 - - 5689 - - 5688 - - 15101 - - 15102 - - 17405 - type: DeviceList - - uid: 17406 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,44.5 - parent: 1 - type: Transform - - devices: - - 5691 - - 5690 - - 15129 - - 15148 - - 15147 - - 15130 - - 15133 - - 15132 - - 15146 - - 15131 - - 17405 - type: DeviceList - - uid: 17408 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,47.5 - parent: 1 - type: Transform - - devices: - - 5712 - - 5711 - - 14988 - - 14987 - - 15001 - - 15002 - - 15029 - - 15028 - - 15031 - - 15030 - - 17402 - - 14983 - type: DeviceList - - uid: 17412 - components: - - pos: 36.5,39.5 - parent: 1 - type: Transform - - devices: - - 5694 - - 5693 - - 5692 - - 5700 - - 5699 - - 5698 - - 5697 - - 5708 - - 5709 - - 5710 - - 5711 - - 5712 - - 15036 - - 15037 - - 14983 - - 17402 - - 17413 - - 17405 - - 17414 - type: DeviceList - - uid: 17416 - components: - - rot: 3.141592653589793 rad - pos: 44.5,35.5 - parent: 1 - type: Transform - - devices: - - 5692 - - 5693 - - 5694 - - 6344 - - 6345 - - 6346 - - 15065 - - 15054 - - 15066 - - 15067 - type: DeviceList - - uid: 17418 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,26.5 - parent: 1 - type: Transform - - devices: - - 5704 - - 5703 - - 5702 - - 5701 - - 5725 - - 5726 - - 5727 - - 7269 - - 17420 - - 5697 - - 5698 - - 5699 - - 5700 - - 17402 - - 14983 - - 14954 - - 14955 - - 14899 - - 14900 - - 17421 - - 17422 - type: DeviceList - - uid: 17424 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,19.5 - parent: 1 - type: Transform - - devices: - - 5727 - - 5726 - - 5725 - - 5724 - - 5723 - - 5722 - - 14906 - - 14907 - - 17413 - - 17422 - type: DeviceList - - uid: 17426 - components: - - rot: 3.141592653589793 rad - pos: 27.5,12.5 - parent: 1 - type: Transform - - devices: - - 5722 - - 5723 - - 5724 - - 5685 - - 5684 - - 5683 - - 5701 - - 5702 - - 5703 - - 5704 - - 5719 - - 5720 - - 5721 - - 5717 - - 5716 - - 5715 - - 14917 - - 14916 - - 17413 - - 17421 - - 17427 - - 17428 - - 17429 - type: DeviceList - - uid: 17430 - components: - - rot: 3.141592653589793 rad - pos: 44.5,12.5 - parent: 1 - type: Transform - - devices: - - 5717 - - 5716 - - 5715 - - 14879 - - 14880 - - 17422 - type: DeviceList - - uid: 17433 - components: - - pos: 16.5,16.5 - parent: 1 - type: Transform - - devices: - - 5683 - - 5684 - - 5685 - - 5623 - - 5624 - - 5625 - - 14929 - - 14928 - - 17422 - - 17434 - type: DeviceList - - uid: 17439 - components: - - pos: -8.5,16.5 - parent: 1 - type: Transform - - devices: - - 5623 - - 5624 - - 5625 - - 5663 - - 5662 - - 5661 - - 5772 - - 5771 - - 5769 - - 5620 - - 5621 - - 5622 - - 5655 - - 5654 - - 5653 - - 5658 - - 5659 - - 5660 - - 15382 - - 15381 - - 15480 - - 15479 - - 17398 - - 17437 - - 17438 - - 17469 - - 17468 - type: DeviceList - - uid: 17441 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,24.5 - parent: 1 - type: Transform - - devices: - - 5657 - - 5656 - - 4341 - - 15294 - - 15295 - - 15316 - - 15317 - - 17437 - - 17442 - type: DeviceList - - uid: 17445 - components: - - rot: 3.141592653589793 rad - pos: -18.5,23.5 - parent: 1 - type: Transform - - devices: - - 6363 - - 4341 - - 4344 - - 4338 - - 4340 - - 6364 - - 4343 - - 6365 - - 15458 - - 15457 - - 15447 - - 15452 - - 15411 - - 8694 - - 17443 - - 15459 - - 15460 - - 15265 - - 15266 - type: DeviceList - - uid: 17447 - components: - - rot: 3.141592653589793 rad - pos: -13.5,29.5 - parent: 1 - type: Transform - - devices: - - 6138 - - 6134 - - 6135 - - 6137 - - 6363 - - 15263 - - 15264 - - 15265 - - 15266 - - 17390 - - 17391 - type: DeviceList - - uid: 17450 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,32.5 - parent: 1 - type: Transform - - devices: - - 17449 - - 6365 - - 15283 - - 15284 - - 17442 - type: DeviceList - - uid: 17452 - components: - - pos: 8.5,21.5 - parent: 1 - type: Transform - - devices: - - 6399 - - 6400 - - 6398 - - 15499 - - 15500 - - 17453 - - 17438 - type: DeviceList - - uid: 17455 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,24.5 - parent: 1 - type: Transform - - devices: - - 6398 - - 6391 - - 6392 - - 6396 - - 6397 - - 6394 - - 6395 - - 6393 - - 17457 - - 15537 - - 15579 - - 17458 - - 17459 - - 17462 - type: DeviceList - - uid: 17460 - components: - - rot: 3.141592653589793 rad - pos: 19.5,25.5 - parent: 1 - type: Transform - - devices: - - 15562 - - 15566 - - 15578 - - 15558 - - 12901 - - 17453 - type: DeviceList - - uid: 17461 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,32.5 - parent: 1 - type: Transform - - devices: - - 15587 - - 9036 - - 9037 - - 17453 - - 6396 - type: DeviceList - - uid: 17463 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,33.5 - parent: 1 - type: Transform - - devices: - - 15550 - - 15544 - - 17453 - - 6394 - - 6395 - type: DeviceList - - uid: 17464 - components: - - pos: 3.5,26.5 - parent: 1 - type: Transform - - devices: - - 5667 - - 5668 - - 6392 - - 6391 - - 6393 - - 15524 - - 15525 - - 17453 - - 17438 - type: DeviceList - - uid: 17466 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,26.5 - parent: 1 - type: Transform - - devices: - - 5638 - - 5639 - - 5640 - - 5648 - - 5651 - - 5652 - - 5658 - - 5659 - - 5660 - - 5664 - - 5665 - - 5666 - - 15325 - - 15326 - - 15352 - - 15351 - - 17438 - - 17437 - - 17434 - - 17393 - type: DeviceList - - uid: 17470 - components: - - pos: -24.5,16.5 - parent: 1 - type: Transform - - devices: - - 5620 - - 5621 - - 5622 - - 5673 - - 5672 - - 5671 - - 5670 - - 15609 - - 15610 - - 17434 - - 17472 - type: DeviceList - - uid: 17483 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,9.5 - parent: 1 - type: Transform - - devices: - - 5670 - - 17481 - - 17480 - - 17468 - - 17484 - type: DeviceList - - uid: 17486 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,28.5 - parent: 1 - type: Transform - - devices: - - 5677 - - 5678 - - 5679 - - 5838 - - 5837 - - 5836 - - 15830 - - 15827 - - 15828 - - 15829 - - 15826 - - 15831 - - 17387 - - 17472 - type: DeviceList - - uid: 17489 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,26.5 - parent: 1 - type: Transform - - devices: - - 5832 - - 5831 - - 15680 - - 15681 - - 17379 - type: DeviceList - - uid: 17492 - components: - - pos: -45.5,16.5 - parent: 1 - type: Transform - - devices: - - 5674 - - 5675 - - 5676 - - 5824 - - 5832 - - 5831 - - 15668 - - 15669 - - 17472 - type: DeviceList - - uid: 17494 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,8.5 - parent: 1 - type: Transform - - devices: - - 5821 - - 5822 - - 5823 - - 6656 - - 6667 - - 5825 - - 5824 - - 15710 - - 15757 - - 15701 - - 15700 - - 17484 - - 6650 - - 15743 - - 15742 - - 15728 - - 15729 - type: DeviceList - - uid: 17497 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,2.5 - parent: 1 - type: Transform - - devices: - - 5808 - - 5810 - - 5809 - - 5820 - - 5819 - - 5818 - - 5817 - - 5670 - - 5680 - - 5681 - - 5682 - - 6649 - - 6666 - - 15778 - - 15777 - - 15742 - - 15743 - - 15696 - - 15695 - - 15701 - - 15700 - - 17472 - - 17499 - type: DeviceList - - uid: 17501 - components: - - pos: -27.5,-6.5 - parent: 1 - type: Transform - - devices: - - 9431 - - 9430 - - 9429 - - 5809 - - 5810 - - 5808 - - 15775 - - 15776 - - 17484 - - 17502 - type: DeviceList - - uid: 17504 - components: - - pos: -16.5,-6.5 - parent: 1 - type: Transform - - devices: - - 9429 - - 9430 - - 9431 - - 5619 - - 800 - - 797 - - 15774 - - 15773 - - 14570 - - 14569 - - 14571 - - 14572 - - 17505 - - 17499 - type: DeviceList - - uid: 17507 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-10.5 - parent: 1 - type: Transform - - devices: - - 797 - - 800 - - 5619 - - 5765 - - 5766 - - 5746 - - 5747 - - 5748 - - 5757 - - 5758 - - 5759 - - 5760 - - 5749 - - 5750 - - 5753 - - 5754 - - 5755 - - 5756 - - 5628 - - 5627 - - 5626 - - 5768 - - 5767 - - 5789 - - 5788 - - 5787 - - 14751 - - 14750 - - 17509 - - 17510 - - 17511 - - 17469 - type: DeviceList - - uid: 17513 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-14.5 - parent: 1 - type: Transform - - devices: - - 5746 - - 5747 - - 5748 - - 5749 - - 5750 - - 5753 - - 5754 - - 5755 - - 5756 - - 5763 - - 5764 - - 5761 - - 5762 - - 2774 - - 14225 - - 17505 - - 17510 - - 17511 - type: DeviceList - - uid: 17515 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,1.5 - parent: 1 - type: Transform - - devices: - - 5789 - - 5788 - - 5787 - - 9048 - - 5785 - - 5784 - - 5783 - - 9014 - - 9013 - - 9049 - - 14718 - - 14720 - type: DeviceList - - uid: 17517 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,7.5 - parent: 1 - type: Transform - - devices: - - 8926 - - 9014 - - 9013 - - 9049 - - 14749 - - 14748 - - 17469 - - 17434 - type: DeviceList - - uid: 17519 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,6.5 - parent: 1 - type: Transform - - devices: - - 5791 - - 5790 - - 5792 - - 17520 - - 14840 - - 14841 - - 14857 - - 14856 - - 17428 - type: DeviceList - - uid: 17521 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-0.5 - parent: 1 - type: Transform - - devices: - - 5719 - - 5720 - - 5721 - - 17520 - - 5792 - - 5790 - - 5807 - - 5806 - - 5805 - - 14827 - - 14826 - - 14815 - - 14816 - - 14844 - - 14842 - - 17422 - - 17524 - type: DeviceList - - uid: 17525 - components: - - pos: 43.5,-6.5 - parent: 1 - type: Transform - - devices: - - 5800 - - 5799 - - 5798 - - 14792 - - 14793 - - 17524 - type: DeviceList - - uid: 17527 - components: - - rot: 3.141592653589793 rad - pos: 32.5,-10.5 - parent: 1 - type: Transform - - devices: - - 5800 - - 5799 - - 5798 - - 5807 - - 5806 - - 5805 - - 5793 - - 3584 - - 5795 - - 5796 - - 5797 - - 5801 - - 5802 - - 14772 - - 14771 - - 14807 - - 14808 - - 17529 - - 17530 - - 14761 - - 14760 - - 16358 - - 16359 - - 17428 - type: DeviceList - - uid: 17532 - components: - - pos: 16.5,-6.5 - parent: 1 - type: Transform - - devices: - - 5628 - - 5627 - - 5626 - - 5795 - - 5796 - - 5797 - - 3458 - - 17533 - - 14298 - - 10903 - - 14286 - - 14285 - - 14295 - - 14296 - - 17524 - - 17505 - type: DeviceList - - uid: 17534 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-16.5 - parent: 1 - type: Transform - - devices: - - 5766 - - 5765 - - 5763 - - 5764 - - 7107 - - 7106 - - 2759 - - 2760 - - 17509 - - 17505 - - 2741 - - 2745 - type: DeviceList - - uid: 17536 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-34.5 - parent: 1 - type: Transform - - devices: - - 7106 - - 7108 - - 7109 - - 7166 - - 7173 - - 7174 - - 7175 - - 2737 - - 2740 - - 17510 - type: DeviceList - - uid: 17539 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-19.5 - parent: 1 - type: Transform - - devices: - - 7170 - - 17542 - type: DeviceList - - uid: 17541 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-16.5 - parent: 1 - type: Transform - - devices: - - 5767 - - 5768 - - 5761 - - 5762 - - 7171 - - 7172 - - 14312 - - 14254 - - 17505 - - 17509 - - 17542 - - 14319 - - 14318 - type: DeviceList - - uid: 17543 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-25.5 - parent: 1 - type: Transform - - devices: - - 7261 - - 7172 - - 7171 - - 7170 - - 7169 - - 9028 - - 9030 - - 9029 - - 11931 - - 17545 - - 17546 - type: DeviceList - - uid: 17548 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-30.5 - parent: 1 - type: Transform - - devices: - - 9029 - - 9030 - - 9028 - - 7168 - - 7167 - - 7164 - - 7165 - - 7161 - - 7162 - - 7163 - - 14389 - - 17542 - type: DeviceList -- proto: AirAlarmElectronics - entities: - - uid: 9128 - components: - - pos: 13.596838,-24.666937 - parent: 1 - type: Transform -- proto: AirCanister - entities: - - uid: 6412 - components: - - pos: -9.5,24.5 - parent: 1 - type: Transform - - uid: 8733 - components: - - pos: -14.5,-12.5 - parent: 1 - type: Transform - - uid: 8734 - components: - - pos: -14.5,-11.5 - parent: 1 - type: Transform - - uid: 9976 - components: - - pos: -31.5,-24.5 - parent: 1 - type: Transform - - uid: 10063 - components: - - pos: -31.5,-14.5 - parent: 1 - type: Transform - - uid: 10092 - components: - - pos: -17.5,-28.5 - parent: 1 - type: Transform - - uid: 10122 - components: - - pos: 32.5,-24.5 - parent: 1 - type: Transform - - uid: 10929 - components: - - pos: 26.5,-20.5 - parent: 1 - type: Transform - - uid: 11051 - components: - - pos: 20.5,-0.5 - parent: 1 - type: Transform - - uid: 13173 - components: - - pos: -23.5,-0.5 - parent: 1 - type: Transform - - uid: 13174 - components: - - pos: -24.5,-0.5 - parent: 1 - type: Transform - - uid: 13317 - components: - - pos: -28.5,-5.5 - parent: 1 - type: Transform - - uid: 13380 - components: - - pos: -24.5,27.5 - parent: 1 - type: Transform - - uid: 13416 - components: - - pos: -18.5,61.5 - parent: 1 - type: Transform - - uid: 13852 - components: - - pos: 18.5,54.5 - parent: 1 - type: Transform - - uid: 14000 - components: - - pos: 12.5,64.5 - parent: 1 - type: Transform - - uid: 14013 - components: - - pos: 7.5,40.5 - parent: 1 - type: Transform - - uid: 14037 - components: - - pos: 25.5,56.5 - parent: 1 - type: Transform -- proto: Airlock - entities: - - uid: 8263 - components: - - pos: -36.5,48.5 - parent: 1 - type: Transform - - uid: 8388 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,42.5 - parent: 1 - type: Transform - - uid: 8389 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,44.5 - parent: 1 - type: Transform - - uid: 8390 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,45.5 - parent: 1 - type: Transform - - uid: 8595 - components: - - pos: -24.5,4.5 - parent: 1 - type: Transform - - uid: 9877 - components: - - pos: -32.5,-19.5 - parent: 1 - type: Transform - - uid: 9938 - components: - - pos: -19.5,-32.5 - parent: 1 - type: Transform - - uid: 10943 - components: - - pos: 32.5,-20.5 - parent: 1 - type: Transform -- proto: AirlockArmoryLocked - entities: - - uid: 8208 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,51.5 - parent: 1 - type: Transform -- proto: AirlockAtmosphericsGlassLocked - entities: - - uid: 2239 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-16.5 - parent: 1 - type: Transform - - uid: 7103 - components: - - pos: -12.5,-20.5 - parent: 1 - type: Transform - - uid: 7104 - components: - - pos: -9.5,-18.5 - parent: 1 - type: Transform - - uid: 7105 - components: - - pos: -8.5,-16.5 - parent: 1 - type: Transform -- proto: AirlockAtmosphericsLocked - entities: - - uid: 7113 - components: - - pos: -12.5,-10.5 - parent: 1 - type: Transform - - uid: 7114 - components: - - pos: -11.5,-10.5 - parent: 1 - type: Transform -- proto: AirlockBarGlassLocked - entities: - - uid: 4040 - components: - - pos: -9.5,5.5 - parent: 1 - type: Transform -- proto: AirlockBarLocked - entities: - - uid: 9240 - components: - - pos: -8.5,9.5 - parent: 1 - type: Transform -- proto: AirlockBrigGlassLocked - entities: - - uid: 8204 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,50.5 - parent: 1 - type: Transform - - uid: 8205 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,48.5 - parent: 1 - type: Transform - - uid: 8206 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,48.5 - parent: 1 - type: Transform - - uid: 8207 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,50.5 - parent: 1 - type: Transform - - uid: 8469 - components: - - pos: 1.5,63.5 - parent: 1 - type: Transform -- proto: AirlockBrigLocked - entities: - - uid: 8202 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,48.5 - parent: 1 - type: Transform - - uid: 8203 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,47.5 - parent: 1 - type: Transform - - uid: 8470 - components: - - pos: 6.5,60.5 - parent: 1 - type: Transform -- proto: AirlockCaptainLocked - entities: - - uid: 6791 - components: - - pos: -5.5,75.5 - parent: 1 - type: Transform -- proto: AirlockCargoGlassLocked - entities: - - uid: 9354 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,10.5 - parent: 1 - type: Transform -- proto: AirlockCargoLocked - entities: - - uid: 156 - components: - - pos: -39.5,12.5 - parent: 1 - type: Transform - - uid: 9353 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,3.5 - parent: 1 - type: Transform -- proto: AirlockChapelLocked - entities: - - uid: 8380 - components: - - pos: 26.5,50.5 - parent: 1 - type: Transform - - uid: 14049 - components: - - pos: 32.5,53.5 - parent: 1 - type: Transform -- proto: AirlockChemistryLocked - entities: - - uid: 8529 - components: - - pos: 6.5,26.5 - parent: 1 - type: Transform -- proto: AirlockChiefEngineerGlassLocked - entities: - - uid: 9113 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-24.5 - parent: 1 - type: Transform -- proto: AirlockChiefEngineerLocked - entities: - - uid: 12404 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,71.5 - parent: 1 - type: Transform -- proto: AirlockChiefMedicalOfficerLocked - entities: - - uid: 8672 - components: - - pos: 13.5,31.5 - parent: 1 - type: Transform -- proto: AirlockCommandGlassLocked - entities: - - uid: 6792 - components: - - pos: -1.5,75.5 - parent: 1 - type: Transform - - uid: 6793 - components: - - pos: 0.5,75.5 - parent: 1 - type: Transform - - uid: 6794 - components: - - pos: 5.5,75.5 - parent: 1 - type: Transform - - uid: 6795 - components: - - pos: -1.5,69.5 - parent: 1 - type: Transform - - uid: 6796 - components: - - pos: 0.5,69.5 - parent: 1 - type: Transform -- proto: AirlockCommandLocked - entities: - - uid: 8894 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,1.5 - parent: 8756 - type: Transform -- proto: AirlockEngineeringGlassLocked - entities: - - uid: 9075 - components: - - pos: 11.5,-16.5 - parent: 1 - type: Transform - - uid: 9076 - components: - - pos: 12.5,-16.5 - parent: 1 - type: Transform - - uid: 9077 - components: - - pos: 11.5,-19.5 - parent: 1 - type: Transform - - uid: 9078 - components: - - pos: 12.5,-19.5 - parent: 1 - type: Transform - - uid: 9112 - components: - - pos: 8.5,-20.5 - parent: 1 - type: Transform - - uid: 9136 - components: - - pos: 7.5,-31.5 - parent: 1 - type: Transform - - uid: 9137 - components: - - pos: 6.5,-31.5 - parent: 1 - type: Transform - - uid: 9138 - components: - - pos: 7.5,-35.5 - parent: 1 - type: Transform - - uid: 9139 - components: - - pos: 6.5,-35.5 - parent: 1 - type: Transform -- proto: AirlockEngineeringLocked - entities: - - uid: 9073 - components: - - pos: 10.5,-10.5 - parent: 1 - type: Transform - - uid: 9074 - components: - - pos: 11.5,-10.5 - parent: 1 - type: Transform - - uid: 9977 - components: - - pos: -27.5,-16.5 - parent: 1 - type: Transform - - uid: 10869 - components: - - rot: 3.141592653589793 rad - pos: 29.5,-19.5 - parent: 1 - type: Transform - - uid: 11076 - components: - - pos: 18.5,1.5 - parent: 1 - type: Transform - - uid: 12403 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,28.5 - parent: 1 - type: Transform - - uid: 12820 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,52.5 - parent: 1 - type: Transform - - uid: 13158 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,23.5 - parent: 1 - type: Transform - - uid: 13299 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-2.5 - parent: 1 - type: Transform - - uid: 13440 - components: - - pos: -24.5,53.5 - parent: 1 - type: Transform -- proto: AirlockEVAGlassLocked - entities: - - uid: 6930 - components: - - pos: 28.5,33.5 - parent: 1 - type: Transform - - uid: 6931 - components: - - pos: 28.5,32.5 - parent: 1 - type: Transform - - uid: 6932 - components: - - pos: 25.5,35.5 - parent: 1 - type: Transform - - uid: 6933 - components: - - pos: 26.5,35.5 - parent: 1 - type: Transform -- proto: AirlockExternalAtmosphericsLocked - entities: - - uid: 4167 - components: - - pos: 1.5,-15.5 - parent: 1 - type: Transform - - uid: 4171 - components: - - pos: -2.5,-15.5 - parent: 1 - type: Transform -- proto: AirlockExternalGlass - entities: - - uid: 6222 - components: - - pos: 46.5,16.5 - parent: 1 - type: Transform - - uid: 6225 - components: - - pos: 50.5,-7.5 - parent: 1 - type: Transform - - uid: 6477 - components: - - pos: 50.5,-14.5 - parent: 1 - type: Transform - - uid: 6522 - components: - - pos: 35.5,1.5 - parent: 1 - type: Transform - - uid: 6559 - components: - - pos: 48.5,16.5 - parent: 1 - type: Transform - - uid: 6560 - components: - - pos: 46.5,35.5 - parent: 1 - type: Transform - - uid: 6561 - components: - - pos: 48.5,35.5 - parent: 1 - type: Transform - - uid: 6563 - components: - - pos: 50.5,36.5 - parent: 1 - type: Transform - - uid: 6564 - components: - - pos: 50.5,38.5 - parent: 1 - type: Transform - - uid: 6565 - components: - - pos: 50.5,13.5 - parent: 1 - type: Transform - - uid: 6566 - components: - - pos: 50.5,15.5 - parent: 1 - type: Transform - - uid: 6638 - components: - - pos: -51.5,-9.5 - parent: 1 - type: Transform - - uid: 6639 - components: - - pos: -51.5,-8.5 - parent: 1 - type: Transform - - uid: 6640 - components: - - pos: -51.5,-7.5 - parent: 1 - type: Transform - - uid: 6641 - components: - - pos: -49.5,-10.5 - parent: 1 - type: Transform - - uid: 6642 - components: - - pos: -48.5,-10.5 - parent: 1 - type: Transform - - uid: 6643 - components: - - pos: -47.5,-10.5 - parent: 1 - type: Transform - - uid: 7176 - components: - - pos: -51.5,13.5 - parent: 1 - type: Transform - - uid: 7177 - components: - - pos: -51.5,15.5 - parent: 1 - type: Transform - - uid: 7182 - components: - - pos: -51.5,36.5 - parent: 1 - type: Transform - - uid: 7183 - components: - - pos: -51.5,38.5 - parent: 1 - type: Transform - - uid: 7419 - components: - - pos: -27.5,-27.5 - parent: 1 - type: Transform - - uid: 7423 - components: - - pos: 26.5,-27.5 - parent: 1 - type: Transform - - uid: 8597 - components: - - pos: 35.5,3.5 - parent: 1 - type: Transform - - uid: 8872 - components: - - pos: -2.5,-1.5 - parent: 8756 - type: Transform - - uid: 8873 - components: - - pos: -2.5,0.5 - parent: 8756 - type: Transform - - uid: 8874 - components: - - pos: 1.5,0.5 - parent: 8756 - type: Transform - - uid: 8875 - components: - - pos: 1.5,-1.5 - parent: 8756 - type: Transform -- proto: AirlockExternalGlassAtmosphericsLocked - entities: - - uid: 7110 - components: - - pos: -13.5,-38.5 - parent: 1 - type: Transform - - uid: 7111 - components: - - pos: -13.5,-42.5 - parent: 1 - type: Transform -- proto: AirlockExternalGlassCargoLocked - entities: - - uid: 6636 - components: - - pos: -41.5,2.5 - parent: 1 - type: Transform - - uid: 6637 - components: - - pos: -41.5,4.5 - parent: 1 - type: Transform - - uid: 7814 - components: - - rot: -1.5707963267948966 rad - pos: -43.5,28.5 - parent: 1 - type: Transform - - uid: 7917 - components: - - rot: -1.5707963267948966 rad - pos: -43.5,27.5 - parent: 1 - type: Transform -- proto: AirlockExternalGlassEngineeringLocked - entities: - - uid: 7150 - components: - - pos: 12.5,-42.5 - parent: 1 - type: Transform - - uid: 7151 - components: - - pos: 12.5,-38.5 - parent: 1 - type: Transform -- proto: AirlockExternalGlassLocked - entities: - - uid: 932 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,56.5 - parent: 1 - type: Transform - - links: - - 10149 - type: DeviceLinkSink - - linkedPorts: - 10149: - - DoorStatus: Close - - DoorStatus: AutoClose - - DoorStatus: DoorBolt - type: DeviceLinkSource - - uid: 2250 - components: - - pos: -0.5,-16.5 - parent: 1 - type: Transform - - uid: 10149 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,53.5 - parent: 1 - type: Transform - - links: - - 932 - type: DeviceLinkSink - - linkedPorts: - 932: - - DoorStatus: AutoClose - - DoorStatus: DoorBolt - - DoorStatus: Close - type: DeviceLinkSource - - uid: 10150 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,56.5 - parent: 1 - type: Transform - - uid: 10151 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,53.5 - parent: 1 - type: Transform -- proto: AirlockExternalGlassShuttleArrivals - entities: - - uid: 2061 - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-7.5 - parent: 1 - type: Transform - - uid: 6514 - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-14.5 - parent: 1 - type: Transform -- proto: AirlockExternalGlassShuttleEmergencyLocked - entities: - - uid: 2 - components: - - rot: 3.141592653589793 rad - pos: 48.5,18.5 - parent: 1 - type: Transform - - uid: 26 - components: - - rot: 3.141592653589793 rad - pos: 46.5,18.5 - parent: 1 - type: Transform - - uid: 50 - components: - - pos: 46.5,33.5 - parent: 1 - type: Transform - - uid: 52 - components: - - pos: 48.5,33.5 - parent: 1 - type: Transform -- proto: AirlockExternalGlassShuttleEscape - entities: - - uid: 7427 - components: - - pos: -27.5,-29.5 - parent: 1 - type: Transform - - uid: 7631 - components: - - pos: 26.5,-29.5 - parent: 1 - type: Transform -- proto: AirlockExternalGlassShuttleLocked - entities: - - uid: 87 - components: - - rot: 1.5707963267948966 rad - pos: 52.5,15.5 - parent: 1 - type: Transform - - uid: 89 - components: - - rot: 1.5707963267948966 rad - pos: 52.5,13.5 - parent: 1 - type: Transform - - uid: 111 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,2.5 - parent: 1 - type: Transform - - uid: 112 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,4.5 - parent: 1 - type: Transform - - uid: 467 - components: - - rot: -1.5707963267948966 rad - pos: -53.5,15.5 - parent: 1 - type: Transform - - uid: 763 - components: - - rot: -1.5707963267948966 rad - pos: -53.5,13.5 - parent: 1 - type: Transform - - uid: 764 - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-7.5 - parent: 1 - type: Transform - - uid: 765 - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-9.5 - parent: 1 - type: Transform - - uid: 767 - components: - - pos: -49.5,-12.5 - parent: 1 - type: Transform - - uid: 768 - components: - - pos: -47.5,-12.5 - parent: 1 - type: Transform - - uid: 1298 - components: - - rot: -1.5707963267948966 rad - pos: -53.5,36.5 - parent: 1 - type: Transform - - uid: 1299 - components: - - rot: -1.5707963267948966 rad - pos: -53.5,38.5 - parent: 1 - type: Transform - - uid: 2145 - components: - - rot: 1.5707963267948966 rad - pos: 52.5,36.5 - parent: 1 - type: Transform - - uid: 2146 - components: - - rot: 1.5707963267948966 rad - pos: 52.5,38.5 - parent: 1 - type: Transform - - uid: 3160 - components: - - pos: -48.5,-12.5 - parent: 1 - type: Transform - - uid: 3168 - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-8.5 - parent: 1 - type: Transform -- proto: AirlockExternalLocked - entities: - - uid: 6359 - components: - - pos: -10.5,71.5 - parent: 1 - type: Transform - - links: - - 1694 - type: DeviceLinkSink - - linkedPorts: - 1694: - - DoorStatus: Close - - DoorStatus: AutoClose - - DoorStatus: DoorBolt - type: DeviceLinkSource -- proto: AirlockFreezerKitchenHydroLocked - entities: - - uid: 4221 - components: - - pos: 11.5,4.5 - parent: 1 - type: Transform - - uid: 6630 - components: - - pos: 11.5,0.5 - parent: 1 - type: Transform -- proto: AirlockGlass - entities: - - uid: 127 - components: - - pos: 20.5,13.5 - parent: 1 - type: Transform - - uid: 1881 - components: - - pos: -29.5,30.5 - parent: 1 - type: Transform - - uid: 3054 - components: - - pos: 2.5,-6.5 - parent: 1 - type: Transform - - uid: 3055 - components: - - pos: 1.5,-6.5 - parent: 1 - type: Transform - - uid: 3056 - components: - - pos: -2.5,-6.5 - parent: 1 - type: Transform - - uid: 3057 - components: - - pos: -3.5,-6.5 - parent: 1 - type: Transform - - uid: 3058 - components: - - pos: 2.5,12.5 - parent: 1 - type: Transform - - uid: 3059 - components: - - pos: 1.5,12.5 - parent: 1 - type: Transform - - uid: 3060 - components: - - pos: -2.5,12.5 - parent: 1 - type: Transform - - uid: 3061 - components: - - pos: -3.5,12.5 - parent: 1 - type: Transform - - uid: 3527 - components: - - pos: 14.5,39.5 - parent: 1 - type: Transform - - uid: 3528 - components: - - pos: 15.5,39.5 - parent: 1 - type: Transform - - uid: 3990 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-34.5 - parent: 1 - type: Transform - - uid: 4161 - components: - - pos: 20.5,15.5 - parent: 1 - type: Transform - - uid: 5647 - components: - - pos: -33.5,15.5 - parent: 1 - type: Transform - - uid: 5649 - components: - - pos: -33.5,14.5 - parent: 1 - type: Transform - - uid: 5650 - components: - - pos: -33.5,13.5 - parent: 1 - type: Transform - - uid: 5814 - components: - - pos: -16.5,-10.5 - parent: 1 - type: Transform - - uid: 5815 - components: - - pos: -17.5,-10.5 - parent: 1 - type: Transform - - uid: 5816 - components: - - pos: -18.5,-10.5 - parent: 1 - type: Transform - - uid: 6038 - components: - - pos: -33.5,38.5 - parent: 1 - type: Transform - - uid: 6039 - components: - - pos: -33.5,37.5 - parent: 1 - type: Transform - - uid: 6040 - components: - - pos: -33.5,36.5 - parent: 1 - type: Transform - - uid: 6041 - components: - - pos: 26.5,-6.5 - parent: 1 - type: Transform - - uid: 6042 - components: - - pos: 25.5,-6.5 - parent: 1 - type: Transform - - uid: 6043 - components: - - pos: 33.5,-7.5 - parent: 1 - type: Transform - - uid: 6044 - components: - - pos: 33.5,-8.5 - parent: 1 - type: Transform - - uid: 6045 - components: - - pos: 33.5,-9.5 - parent: 1 - type: Transform - - uid: 6361 - components: - - pos: -29.5,33.5 - parent: 1 - type: Transform - - uid: 6887 - components: - - pos: 31.5,39.5 - parent: 1 - type: Transform - - uid: 6888 - components: - - pos: 30.5,39.5 - parent: 1 - type: Transform - - uid: 6889 - components: - - pos: 31.5,42.5 - parent: 1 - type: Transform - - uid: 6890 - components: - - pos: 30.5,42.5 - parent: 1 - type: Transform - - uid: 7879 - components: - - pos: 33.5,15.5 - parent: 1 - type: Transform - - uid: 7880 - components: - - pos: 33.5,14.5 - parent: 1 - type: Transform - - uid: 7881 - components: - - pos: 33.5,13.5 - parent: 1 - type: Transform - - uid: 7891 - components: - - pos: 33.5,38.5 - parent: 1 - type: Transform - - uid: 7892 - components: - - pos: 33.5,37.5 - parent: 1 - type: Transform - - uid: 7893 - components: - - pos: 33.5,36.5 - parent: 1 - type: Transform - - uid: 8466 - components: - - pos: 3.5,53.5 - parent: 1 - type: Transform - - uid: 8467 - components: - - pos: 3.5,56.5 - parent: 1 - type: Transform - - uid: 9306 - components: - - pos: 20.5,14.5 - parent: 1 - type: Transform - - uid: 18224 - components: - - pos: -13.5,15.5 - parent: 1 - type: Transform - - uid: 18225 - components: - - pos: -13.5,14.5 - parent: 1 - type: Transform - - uid: 18226 - components: - - pos: -13.5,13.5 - parent: 1 - type: Transform - - uid: 18227 - components: - - pos: -1.5,39.5 - parent: 1 - type: Transform - - uid: 18228 - components: - - pos: -0.5,39.5 - parent: 1 - type: Transform - - uid: 18229 - components: - - pos: 0.5,39.5 - parent: 1 - type: Transform - - uid: 18230 - components: - - pos: -17.5,38.5 - parent: 1 - type: Transform - - uid: 18231 - components: - - pos: -17.5,37.5 - parent: 1 - type: Transform - - uid: 18232 - components: - - pos: -17.5,36.5 - parent: 1 - type: Transform - - uid: 18233 - components: - - pos: 13.5,38.5 - parent: 1 - type: Transform - - uid: 18234 - components: - - pos: 13.5,37.5 - parent: 1 - type: Transform - - uid: 18235 - components: - - pos: 13.5,36.5 - parent: 1 - type: Transform -- proto: AirlockGlassShuttle - entities: - - uid: 1771 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,28.5 - parent: 1 - type: Transform - - uid: 1772 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,27.5 - parent: 1 - type: Transform - - uid: 2030 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,3.5 - parent: 1 - type: Transform - - dockJointId: docking21483 - dockedWith: 8865 - type: Docking - - uid: 2047 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,1.5 - parent: 1 - type: Transform - - dockJointId: docking21482 - dockedWith: 8864 - type: Docking - - uid: 8864 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-1.5 - parent: 8756 - type: Transform - - dockJointId: docking21482 - dockedWith: 2047 - type: Docking - - uid: 8865 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,0.5 - parent: 8756 - type: Transform - - dockJointId: docking21483 - dockedWith: 2030 - type: Docking - - uid: 8866 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,0.5 - parent: 8756 - type: Transform - - uid: 8867 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-1.5 - parent: 8756 - type: Transform -- proto: AirlockHeadOfPersonnelGlassLocked - entities: - - uid: 9276 - components: - - pos: 23.5,8.5 - parent: 1 - type: Transform -- proto: AirlockHeadOfPersonnelLocked - entities: - - uid: 9275 - components: - - pos: 28.5,10.5 - parent: 1 - type: Transform -- proto: AirlockHeadOfSecurityGlassLocked - entities: - - uid: 8220 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,59.5 - parent: 1 - type: Transform -- proto: AirlockHydroGlassLocked - entities: - - uid: 563 - components: - - pos: 4.5,5.5 - parent: 1 - type: Transform - - uid: 9046 - components: - - rot: 3.141592653589793 rad - pos: 12.5,9.5 - parent: 1 - type: Transform -- proto: AirlockJanitorLocked - entities: - - uid: 4158 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-6.5 - parent: 1 - type: Transform -- proto: AirlockKitchenGlassLocked - entities: - - uid: 612 - components: - - pos: 4.5,-4.5 - parent: 1 - type: Transform -- proto: AirlockMaint - entities: - - uid: 8596 - components: - - pos: -26.5,1.5 - parent: 1 - type: Transform -- proto: AirlockMaintAtmoLocked - entities: - - uid: 7112 - components: - - pos: -6.5,-15.5 - parent: 1 - type: Transform - - uid: 8714 - components: - - pos: -14.5,-36.5 - parent: 1 - type: Transform -- proto: AirlockMaintBarLocked - entities: - - uid: 9241 - components: - - pos: -11.5,11.5 - parent: 1 - type: Transform -- proto: AirlockMaintCaptainLocked - entities: - - uid: 1694 - components: - - pos: -9.5,69.5 - parent: 1 - type: Transform - - links: - - 6359 - type: DeviceLinkSink - - linkedPorts: - 6359: - - DoorStatus: Close - - DoorStatus: AutoClose - - DoorStatus: DoorBolt - type: DeviceLinkSource -- proto: AirlockMaintCargoLocked - entities: - - uid: 9453 - components: - - pos: -40.5,-8.5 - parent: 1 - type: Transform -- proto: AirlockMaintChapelLocked - entities: - - uid: 8379 - components: - - pos: 23.5,51.5 - parent: 1 - type: Transform -- proto: AirlockMaintCommandLocked - entities: - - uid: 6934 - components: - - pos: 24.5,30.5 - parent: 1 - type: Transform -- proto: AirlockMaintEngiLocked - entities: - - uid: 9192 - components: - - pos: 5.5,-15.5 - parent: 1 - type: Transform - - uid: 10417 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-35.5 - parent: 1 - type: Transform -- proto: AirlockMaintHOPLocked - entities: - - uid: 9274 - components: - - pos: 22.5,2.5 - parent: 1 - type: Transform -- proto: AirlockMaintHydroLocked - entities: - - uid: 4230 - components: - - pos: 12.5,6.5 - parent: 1 - type: Transform - - uid: 4231 - components: - - pos: 14.5,7.5 - parent: 1 - type: Transform -- proto: AirlockMaintJanitorLocked - entities: - - uid: 8328 - components: - - pos: 18.5,-2.5 - parent: 1 - type: Transform -- proto: AirlockMaintKitchenLocked - entities: - - uid: 8576 - components: - - name: Freezer Hatch - type: MetaData - - pos: 13.5,2.5 - parent: 1 - type: Transform -- proto: AirlockMaintLocked - entities: - - uid: 770 - components: - - pos: 30.5,50.5 - parent: 1 - type: Transform - - uid: 771 - components: - - pos: 31.5,50.5 - parent: 1 - type: Transform - - uid: 3920 - components: - - pos: -27.5,-10.5 - parent: 1 - type: Transform - - uid: 6779 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-38.5 - parent: 1 - type: Transform - - uid: 8308 - components: - - pos: -22.5,45.5 - parent: 1 - type: Transform - - uid: 8309 - components: - - pos: -21.5,45.5 - parent: 1 - type: Transform - - uid: 8310 - components: - - pos: -22.5,50.5 - parent: 1 - type: Transform - - uid: 8311 - components: - - pos: -21.5,50.5 - parent: 1 - type: Transform - - uid: 8312 - components: - - pos: -21.5,39.5 - parent: 1 - type: Transform - - uid: 8313 - components: - - pos: -3.5,67.5 - parent: 1 - type: Transform - - uid: 8314 - components: - - pos: 10.5,51.5 - parent: 1 - type: Transform - - uid: 8315 - components: - - pos: 1.5,41.5 - parent: 1 - type: Transform - - uid: 8316 - components: - - pos: 15.5,48.5 - parent: 1 - type: Transform - - uid: 8317 - components: - - pos: 19.5,45.5 - parent: 1 - type: Transform - - uid: 8318 - components: - - pos: 26.5,45.5 - parent: 1 - type: Transform - - uid: 8319 - components: - - pos: 40.5,40.5 - parent: 1 - type: Transform - - uid: 8320 - components: - - pos: 34.5,39.5 - parent: 1 - type: Transform - - uid: 8321 - components: - - pos: 25.5,39.5 - parent: 1 - type: Transform - - uid: 8322 - components: - - pos: -23.5,35.5 - parent: 1 - type: Transform - - uid: 8323 - components: - - pos: -38.5,35.5 - parent: 1 - type: Transform - - uid: 8324 - components: - - pos: -43.5,44.5 - parent: 1 - type: Transform - - uid: 8325 - components: - - pos: 26.5,25.5 - parent: 1 - type: Transform - - uid: 8326 - components: - - pos: 19.5,16.5 - parent: 1 - type: Transform - - uid: 8327 - components: - - pos: 15.5,21.5 - parent: 1 - type: Transform - - uid: 8329 - components: - - pos: 14.5,-5.5 - parent: 1 - type: Transform - - uid: 8330 - components: - - pos: 18.5,12.5 - parent: 1 - type: Transform - - uid: 8331 - components: - - pos: 23.5,0.5 - parent: 1 - type: Transform - - uid: 8332 - components: - - pos: -26.5,-6.5 - parent: 1 - type: Transform - - uid: 8333 - components: - - pos: -29.5,1.5 - parent: 1 - type: Transform - - uid: 8334 - components: - - pos: -15.5,12.5 - parent: 1 - type: Transform - - uid: 8335 - components: - - pos: -21.5,7.5 - parent: 1 - type: Transform - - uid: 8336 - components: - - pos: -34.5,-7.5 - parent: 1 - type: Transform - - uid: 8337 - components: - - pos: -16.5,-20.5 - parent: 1 - type: Transform - - uid: 8338 - components: - - pos: 24.5,-10.5 - parent: 1 - type: Transform - - uid: 8339 - components: - - pos: 39.5,-10.5 - parent: 1 - type: Transform - - uid: 8693 - components: - - pos: -25.5,16.5 - parent: 1 - type: Transform - - uid: 9891 - components: - - pos: 7.5,65.5 - parent: 1 - type: Transform - - uid: 9907 - components: - - pos: -16.5,-38.5 - parent: 1 - type: Transform - - uid: 13347 - components: - - pos: -35.5,17.5 - parent: 1 - type: Transform - - uid: 13348 - components: - - pos: -33.5,23.5 - parent: 1 - type: Transform - - uid: 13367 - components: - - pos: -29.5,23.5 - parent: 1 - type: Transform -- proto: AirlockMaintMedLocked - entities: - - uid: 8505 - components: - - pos: 23.5,27.5 - parent: 1 - type: Transform -- proto: AirlockMaintRnDLocked - entities: - - uid: 8607 - components: - - pos: -20.5,26.5 - parent: 1 - type: Transform - - uid: 8608 - components: - - pos: -22.5,17.5 - parent: 1 - type: Transform -- proto: AirlockMaintSalvageLocked - entities: - - uid: 9371 - components: - - rot: 3.141592653589793 rad - pos: -36.5,21.5 - parent: 1 - type: Transform -- proto: AirlockMaintSecLocked - entities: - - uid: 1909 - components: - - pos: 15.5,58.5 - parent: 1 - type: Transform - - uid: 8213 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,55.5 - parent: 1 - type: Transform - - uid: 9361 - components: - - pos: -36.5,-6.5 - parent: 1 - type: Transform - - uid: 9408 - components: - - pos: 28.5,-14.5 - parent: 1 - type: Transform - - uid: 9424 - components: - - pos: 40.5,43.5 - parent: 1 - type: Transform -- proto: AirlockMaintTheatreLocked - entities: - - uid: 9247 - components: - - pos: -18.5,-5.5 - parent: 1 - type: Transform - - uid: 9248 - components: - - pos: -18.5,-0.5 - parent: 1 - type: Transform - - uid: 9249 - components: - - pos: -18.5,5.5 - parent: 1 - type: Transform -- proto: AirlockMedicalGlass - entities: - - uid: 8665 - components: - - pos: 5.5,18.5 - parent: 1 - type: Transform - - uid: 8671 - components: - - pos: 5.5,17.5 - parent: 1 - type: Transform -- proto: AirlockMedicalGlassLocked - entities: - - uid: 6405 - components: - - pos: 11.5,21.5 - parent: 1 - type: Transform - - uid: 8502 - components: - - pos: 10.5,29.5 - parent: 1 - type: Transform - - uid: 8503 - components: - - pos: 13.5,28.5 - parent: 1 - type: Transform - - uid: 8516 - components: - - pos: 6.5,29.5 - parent: 1 - type: Transform - - uid: 8517 - components: - - pos: 7.5,29.5 - parent: 1 - type: Transform -- proto: AirlockMedicalLocked - entities: - - uid: 3721 - components: - - pos: 19.5,30.5 - parent: 1 - type: Transform -- proto: AirlockMedicalScienceLocked - entities: - - uid: 8604 - components: - - pos: -18.5,35.5 - parent: 1 - type: Transform - - uid: 8605 - components: - - pos: -14.5,29.5 - parent: 1 - type: Transform -- proto: SprayPainter - entities: - - uid: 9885 - components: - - pos: -28.646414,31.653807 - parent: 1 - type: Transform -- proto: AirlockQuartermasterGlassLocked - entities: - - uid: 9358 - components: - - pos: -41.5,9.5 - parent: 1 - type: Transform -- proto: AirlockResearchDirectorLocked - entities: - - uid: 8621 - components: - - pos: -22.5,23.5 - parent: 1 - type: Transform -- proto: AirlockSalvageLocked - entities: - - uid: 537 - components: - - pos: -37.5,16.5 - parent: 1 - type: Transform -- proto: AirlockScienceGlassLocked - entities: - - uid: 8606 - components: - - pos: -14.5,26.5 - parent: 1 - type: Transform - - uid: 8609 - components: - - pos: -19.5,19.5 - parent: 1 - type: Transform - - uid: 8610 - components: - - pos: -19.5,18.5 - parent: 1 - type: Transform - - uid: 8611 - components: - - pos: -10.5,26.5 - parent: 1 - type: Transform - - uid: 8612 - components: - - pos: -8.5,33.5 - parent: 1 - type: Transform - - uid: 8613 - components: - - pos: -6.5,31.5 - parent: 1 - type: Transform - - uid: 8619 - components: - - pos: -8.5,22.5 - parent: 1 - type: Transform -- proto: AirlockScienceLocked - entities: - - uid: 8650 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,18.5 - parent: 1 - type: Transform - - uid: 8651 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,17.5 - parent: 1 - type: Transform - - uid: 8652 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,18.5 - parent: 1 - type: Transform - - uid: 8653 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,17.5 - parent: 1 - type: Transform -- proto: AirlockSecurityGlass - entities: - - uid: 8255 - components: - - pos: -29.5,47.5 - parent: 1 - type: Transform - - uid: 8256 - components: - - pos: -29.5,48.5 - parent: 1 - type: Transform - - uid: 8258 - components: - - pos: -36.5,45.5 - parent: 1 - type: Transform - - uid: 8259 - components: - - pos: -36.5,43.5 - parent: 1 - type: Transform -- proto: AirlockSecurityGlassLocked - entities: - - uid: 3192 - components: - - pos: 39.5,48.5 - parent: 1 - type: Transform - - uid: 8211 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,47.5 - parent: 1 - type: Transform - - uid: 8212 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,48.5 - parent: 1 - type: Transform - - uid: 8214 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,43.5 - parent: 1 - type: Transform - - uid: 8215 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,43.5 - parent: 1 - type: Transform - - uid: 8216 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,43.5 - parent: 1 - type: Transform - - uid: 8217 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,43.5 - parent: 1 - type: Transform - - uid: 8218 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,43.5 - parent: 1 - type: Transform - - uid: 8219 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,55.5 - parent: 1 - type: Transform - - uid: 9359 - components: - - pos: -37.5,-1.5 - parent: 1 - type: Transform - - uid: 9360 - components: - - pos: -33.5,-4.5 - parent: 1 - type: Transform - - uid: 9407 - components: - - pos: 27.5,-10.5 - parent: 1 - type: Transform - - uid: 9425 - components: - - pos: 45.5,43.5 - parent: 1 - type: Transform -- proto: AirlockSecurityLocked - entities: - - uid: 8209 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,47.5 - parent: 1 - type: Transform - - uid: 8210 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,48.5 - parent: 1 - type: Transform -- proto: AirlockServiceCaptainLocked - entities: - - uid: 1693 - components: - - pos: -8.5,71.5 - parent: 1 - type: Transform -- proto: AirlockTheatreLocked - entities: - - uid: 9244 - components: - - pos: -14.5,0.5 - parent: 1 - type: Transform - - uid: 9245 - components: - - pos: -14.5,4.5 - parent: 1 - type: Transform - - uid: 9246 - components: - - pos: -14.5,-3.5 - parent: 1 - type: Transform -- proto: AirSensor - entities: - - uid: 8751 - components: - - pos: -0.5,-34.5 - parent: 1 - type: Transform - - uid: 8752 - components: - - pos: -0.5,-40.5 - parent: 1 - type: Transform - - uid: 8753 - components: - - pos: -0.5,-45.5 - parent: 1 - type: Transform - - uid: 17332 - components: - - pos: -0.5,72.5 - parent: 1 - type: Transform - - uid: 17335 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,78.5 - parent: 1 - type: Transform - - uid: 17338 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,67.5 - parent: 1 - type: Transform - - uid: 17341 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,62.5 - parent: 1 - type: Transform - - uid: 17344 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,56.5 - parent: 1 - type: Transform - - uid: 17347 - components: - - rot: 3.141592653589793 rad - pos: -0.5,57.5 - parent: 1 - type: Transform - - uid: 17350 - components: - - pos: -0.5,47.5 - parent: 1 - type: Transform - - uid: 17351 - components: - - pos: -5.5,56.5 - parent: 1 - type: Transform - - uid: 17354 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,53.5 - parent: 1 - type: Transform - - uid: 17365 - components: - - pos: -18.5,46.5 - parent: 1 - type: Transform - - uid: 17372 - components: - - pos: -25.5,48.5 - parent: 1 - type: Transform - - uid: 17375 - components: - - pos: -48.5,37.5 - parent: 1 - type: Transform - - uid: 17378 - components: - - pos: -46.5,42.5 - parent: 1 - type: Transform - - uid: 17379 - components: - - rot: -1.5707963267948966 rad - pos: -48.5,14.5 - parent: 1 - type: Transform - - uid: 17387 - components: - - pos: -31.5,38.5 - parent: 1 - type: Transform - - uid: 17390 - components: - - pos: -14.5,37.5 - parent: 1 - type: Transform - - uid: 17391 - components: - - pos: -23.5,37.5 - parent: 1 - type: Transform - - uid: 17393 - components: - - pos: -6.5,37.5 - parent: 1 - type: Transform - - uid: 17395 - components: - - pos: -16.5,31.5 - parent: 1 - type: Transform - - uid: 17398 - components: - - pos: -0.5,25.5 - parent: 1 - type: Transform - - uid: 17401 - components: - - rot: 3.141592653589793 rad - pos: 20.5,42.5 - parent: 1 - type: Transform - - uid: 17405 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,37.5 - parent: 1 - type: Transform - - uid: 17413 - components: - - pos: 31.5,26.5 - parent: 1 - type: Transform - - uid: 17414 - components: - - pos: 46.5,39.5 - parent: 1 - type: Transform - - uid: 17421 - components: - - pos: 24.5,19.5 - parent: 1 - type: Transform - - uid: 17422 - components: - - pos: 29.5,14.5 - parent: 1 - type: Transform - - uid: 17427 - components: - - rot: 3.141592653589793 rad - pos: 47.5,14.5 - parent: 1 - type: Transform - - uid: 17428 - components: - - rot: 3.141592653589793 rad - pos: 32.5,2.5 - parent: 1 - type: Transform - - uid: 17429 - components: - - rot: 3.141592653589793 rad - pos: 16.5,14.5 - parent: 1 - type: Transform - - uid: 17434 - components: - - pos: -8.5,14.5 - parent: 1 - type: Transform - - uid: 17437 - components: - - pos: -4.5,18.5 - parent: 1 - type: Transform - - uid: 17438 - components: - - pos: 3.5,18.5 - parent: 1 - type: Transform - - uid: 17442 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,24.5 - parent: 1 - type: Transform - - uid: 17443 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,18.5 - parent: 1 - type: Transform - - uid: 17453 - components: - - pos: 10.5,27.5 - parent: 1 - type: Transform - - uid: 17457 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,23.5 - parent: 1 - type: Transform - - uid: 17458 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,30.5 - parent: 1 - type: Transform - - uid: 17459 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,28.5 - parent: 1 - type: Transform - - uid: 17462 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,32.5 - parent: 1 - type: Transform - - uid: 17468 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,14.5 - parent: 1 - type: Transform - - uid: 17469 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,1.5 - parent: 1 - type: Transform - - uid: 17472 - components: - - pos: -32.5,14.5 - parent: 1 - type: Transform - - uid: 17484 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,2.5 - parent: 1 - type: Transform - - uid: 17485 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,25.5 - parent: 1 - type: Transform - - uid: 17499 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-8.5 - parent: 1 - type: Transform - - uid: 17502 - components: - - pos: -17.5,-8.5 - parent: 1 - type: Transform - - uid: 17505 - components: - - pos: -0.5,-7.5 - parent: 1 - type: Transform - - uid: 17509 - components: - - pos: -0.5,-11.5 - parent: 1 - type: Transform - - uid: 17510 - components: - - pos: -13.5,-13.5 - parent: 1 - type: Transform - - uid: 17511 - components: - - pos: 12.5,-13.5 - parent: 1 - type: Transform - - uid: 17524 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-8.5 - parent: 1 - type: Transform - - uid: 17529 - components: - - rot: 3.141592653589793 rad - pos: 47.5,-8.5 - parent: 1 - type: Transform - - uid: 17530 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-8.5 - parent: 1 - type: Transform - - uid: 17542 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-23.5 - parent: 1 - type: Transform - - uid: 17545 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-19.5 - parent: 1 - type: Transform - - uid: 17546 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-33.5 - parent: 1 - type: Transform -- proto: AltarSpawner - entities: - - uid: 4401 - components: - - pos: 30.5,47.5 - parent: 1 - type: Transform - - uid: 17626 - components: - - pos: 31.5,47.5 - parent: 1 - type: Transform -- proto: AltarToolbox - entities: - - uid: 6993 - components: - - pos: -22.5,-24.5 - parent: 1 - type: Transform -- proto: AmeController - entities: - - uid: 9144 - components: - - pos: 4.5,-37.5 - parent: 1 - type: Transform -- proto: AnomalyScanner - entities: - - uid: 3447 - components: - - pos: -18.56863,17.749208 - parent: 1 - type: Transform - - uid: 4701 - components: - - pos: -18.171062,17.493765 - parent: 1 - type: Transform -- proto: APCBasic - entities: - - uid: 8819 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-5.5 - parent: 8756 - type: Transform - - uid: 9405 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-19.5 - parent: 1 - type: Transform - - uid: 9764 - components: - - pos: -31.5,-13.5 - parent: 1 - type: Transform - - uid: 10145 - components: - - pos: 29.5,-14.5 - parent: 1 - type: Transform - - uid: 10308 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,7.5 - parent: 1 - type: Transform - - uid: 10442 - components: - - pos: 16.5,-21.5 - parent: 1 - type: Transform - - uid: 10458 - components: - - pos: 5.5,-31.5 - parent: 1 - type: Transform - - uid: 10545 - components: - - pos: 10.5,-19.5 - parent: 1 - type: Transform - - uid: 10595 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-16.5 - parent: 1 - type: Transform - - uid: 10650 - components: - - pos: 16.5,-10.5 - parent: 1 - type: Transform - - uid: 10693 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-16.5 - parent: 1 - type: Transform - - uid: 10723 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-38.5 - parent: 1 - type: Transform - - uid: 10991 - components: - - pos: 44.5,-6.5 - parent: 1 - type: Transform - - uid: 11083 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,5.5 - parent: 1 - type: Transform - - uid: 11109 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-3.5 - parent: 1 - type: Transform - - uid: 11235 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,9.5 - parent: 1 - type: Transform - - uid: 11281 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-1.5 - parent: 1 - type: Transform - - uid: 11339 - components: - - pos: 24.5,23.5 - parent: 1 - type: Transform - - uid: 11375 - components: - - rot: 3.141592653589793 rad - pos: -3.5,75.5 - parent: 1 - type: Transform - - uid: 11376 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,74.5 - parent: 1 - type: Transform - - uid: 11377 - components: - - pos: 6.5,75.5 - parent: 1 - type: Transform - - uid: 11551 - components: - - pos: -24.5,49.5 - parent: 1 - type: Transform - - uid: 11552 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,50.5 - parent: 1 - type: Transform - - uid: 11573 - components: - - pos: -42.5,44.5 - parent: 1 - type: Transform - - uid: 11610 - components: - - pos: -30.5,57.5 - parent: 1 - type: Transform - - uid: 11862 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,56.5 - parent: 1 - type: Transform - - uid: 12023 - components: - - rot: 3.141592653589793 rad - pos: -20.5,31.5 - parent: 1 - type: Transform - - uid: 12024 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,32.5 - parent: 1 - type: Transform - - uid: 12025 - components: - - pos: -17.5,26.5 - parent: 1 - type: Transform - - uid: 12026 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,23.5 - parent: 1 - type: Transform - - uid: 12027 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,32.5 - parent: 1 - type: Transform - - uid: 12325 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,25.5 - parent: 1 - type: Transform - - uid: 12405 - components: - - pos: 10.5,62.5 - parent: 1 - type: Transform - - uid: 12406 - components: - - pos: 27.5,51.5 - parent: 1 - type: Transform - - uid: 12407 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,42.5 - parent: 1 - type: Transform - - uid: 12408 - components: - - pos: 41.5,41.5 - parent: 1 - type: Transform - - uid: 12460 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,46.5 - parent: 1 - type: Transform - - uid: 12862 - components: - - pos: 20.5,30.5 - parent: 1 - type: Transform - - uid: 12863 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,31.5 - parent: 1 - type: Transform - - uid: 12864 - components: - - pos: 5.5,26.5 - parent: 1 - type: Transform - - uid: 12865 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,19.5 - parent: 1 - type: Transform - - uid: 13196 - components: - - pos: -11.5,5.5 - parent: 1 - type: Transform - - uid: 13197 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,8.5 - parent: 1 - type: Transform - - uid: 13198 - components: - - pos: -21.5,-1.5 - parent: 1 - type: Transform -- proto: APCElectronics - entities: - - uid: 9127 - components: - - pos: 13.367671,-24.354437 - parent: 1 - type: Transform -- proto: AppraisalTool - entities: - - uid: 9332 - components: - - pos: -42.699795,7.55936 - parent: 1 - type: Transform - - uid: 9389 - components: - - pos: -43.303722,-2.4856074 - parent: 1 - type: Transform -- proto: Ash - entities: - - uid: 6945 - components: - - pos: 31.405294,56.585308 - parent: 1 - type: Transform -- proto: AtmosDeviceFanTiny - entities: - - uid: 609 - components: - - pos: 13.5,2.5 - parent: 1 - type: Transform - - uid: 845 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,1.5 - parent: 1 - type: Transform - - uid: 1996 - components: - - pos: 51.5,-7.5 - parent: 1 - type: Transform - - uid: 2031 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,3.5 - parent: 1 - type: Transform - - uid: 2036 - components: - - pos: 51.5,-14.5 - parent: 1 - type: Transform - - uid: 6771 - components: - - pos: 52.5,13.5 - parent: 1 - type: Transform - - uid: 6772 - components: - - pos: 52.5,15.5 - parent: 1 - type: Transform - - uid: 6773 - components: - - pos: 48.5,18.5 - parent: 1 - type: Transform - - uid: 6774 - components: - - pos: 46.5,18.5 - parent: 1 - type: Transform - - uid: 6775 - components: - - pos: 46.5,33.5 - parent: 1 - type: Transform - - uid: 6776 - components: - - pos: 48.5,33.5 - parent: 1 - type: Transform - - uid: 6777 - components: - - pos: 52.5,36.5 - parent: 1 - type: Transform - - uid: 6778 - components: - - pos: 52.5,38.5 - parent: 1 - type: Transform - - uid: 7127 - components: - - pos: 11.5,0.5 - parent: 1 - type: Transform - - uid: 7128 - components: - - pos: 11.5,4.5 - parent: 1 - type: Transform - - uid: 7420 - components: - - pos: -27.5,-29.5 - parent: 1 - type: Transform - - uid: 7633 - components: - - pos: 26.5,-29.5 - parent: 1 - type: Transform - - uid: 7936 - components: - - pos: -46.5,27.5 - parent: 1 - type: Transform - - uid: 7937 - components: - - pos: -46.5,28.5 - parent: 1 - type: Transform - - uid: 8868 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-1.5 - parent: 8756 - type: Transform - - uid: 8869 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,0.5 - parent: 8756 - type: Transform - - uid: 8870 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,0.5 - parent: 8756 - type: Transform - - uid: 8871 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-1.5 - parent: 8756 - type: Transform - - uid: 17635 - components: - - rot: 3.141592653589793 rad - pos: -44.5,4.5 - parent: 1 - type: Transform - - uid: 17636 - components: - - rot: 3.141592653589793 rad - pos: -44.5,2.5 - parent: 1 - type: Transform - - uid: 17637 - components: - - rot: 3.141592653589793 rad - pos: -53.5,36.5 - parent: 1 - type: Transform - - uid: 17638 - components: - - rot: 3.141592653589793 rad - pos: -53.5,38.5 - parent: 1 - type: Transform - - uid: 17639 - components: - - rot: 3.141592653589793 rad - pos: -53.5,15.5 - parent: 1 - type: Transform - - uid: 17640 - components: - - rot: 3.141592653589793 rad - pos: -53.5,13.5 - parent: 1 - type: Transform - - uid: 17641 - components: - - rot: 3.141592653589793 rad - pos: -53.5,-7.5 - parent: 1 - type: Transform - - uid: 17642 - components: - - rot: 3.141592653589793 rad - pos: -53.5,-8.5 - parent: 1 - type: Transform - - uid: 17643 - components: - - rot: 3.141592653589793 rad - pos: -53.5,-9.5 - parent: 1 - type: Transform - - uid: 17644 - components: - - rot: 3.141592653589793 rad - pos: -49.5,-12.5 - parent: 1 - type: Transform - - uid: 17645 - components: - - rot: 3.141592653589793 rad - pos: -48.5,-12.5 - parent: 1 - type: Transform - - uid: 17646 - components: - - rot: 3.141592653589793 rad - pos: -47.5,-12.5 - parent: 1 - type: Transform -- proto: AtmosFixBlockerMarker - entities: - - uid: 7045 - components: - - pos: -1.5,-25.5 - parent: 1 - type: Transform - - uid: 7046 - components: - - pos: -0.5,-25.5 - parent: 1 - type: Transform - - uid: 7047 - components: - - pos: 0.5,-25.5 - parent: 1 - type: Transform - - uid: 7048 - components: - - pos: -1.5,-29.5 - parent: 1 - type: Transform - - uid: 7049 - components: - - pos: -0.5,-29.5 - parent: 1 - type: Transform - - uid: 7050 - components: - - pos: 0.5,-29.5 - parent: 1 - type: Transform - - uid: 7051 - components: - - pos: -1.5,-33.5 - parent: 1 - type: Transform - - uid: 7052 - components: - - pos: -1.5,-34.5 - parent: 1 - type: Transform - - uid: 7053 - components: - - pos: -1.5,-35.5 - parent: 1 - type: Transform - - uid: 7054 - components: - - pos: -0.5,-33.5 - parent: 1 - type: Transform - - uid: 7055 - components: - - pos: -0.5,-34.5 - parent: 1 - type: Transform - - uid: 7056 - components: - - pos: -0.5,-35.5 - parent: 1 - type: Transform - - uid: 7057 - components: - - pos: 0.5,-33.5 - parent: 1 - type: Transform - - uid: 7058 - components: - - pos: 0.5,-34.5 - parent: 1 - type: Transform - - uid: 7059 - components: - - pos: 0.5,-35.5 - parent: 1 - type: Transform - - uid: 7060 - components: - - pos: -1.5,-39.5 - parent: 1 - type: Transform - - uid: 7061 - components: - - pos: -1.5,-40.5 - parent: 1 - type: Transform - - uid: 7062 - components: - - pos: -1.5,-41.5 - parent: 1 - type: Transform - - uid: 7063 - components: - - pos: -0.5,-39.5 - parent: 1 - type: Transform - - uid: 7064 - components: - - pos: -0.5,-40.5 - parent: 1 - type: Transform - - uid: 7065 - components: - - pos: -0.5,-41.5 - parent: 1 - type: Transform - - uid: 7066 - components: - - pos: 0.5,-39.5 - parent: 1 - type: Transform - - uid: 7067 - components: - - pos: 0.5,-40.5 - parent: 1 - type: Transform - - uid: 7068 - components: - - pos: 0.5,-41.5 - parent: 1 - type: Transform - - uid: 7069 - components: - - pos: -0.5,-42.5 - parent: 1 - type: Transform - - uid: 7070 - components: - - pos: -2.5,-43.5 - parent: 1 - type: Transform - - uid: 7071 - components: - - pos: -2.5,-44.5 - parent: 1 - type: Transform - - uid: 7072 - components: - - pos: -2.5,-45.5 - parent: 1 - type: Transform - - uid: 7073 - components: - - pos: -1.5,-43.5 - parent: 1 - type: Transform - - uid: 7074 - components: - - pos: -1.5,-44.5 - parent: 1 - type: Transform - - uid: 7075 - components: - - pos: -1.5,-45.5 - parent: 1 - type: Transform - - uid: 7076 - components: - - pos: -0.5,-43.5 - parent: 1 - type: Transform - - uid: 7077 - components: - - pos: -0.5,-44.5 - parent: 1 - type: Transform - - uid: 7078 - components: - - pos: -0.5,-45.5 - parent: 1 - type: Transform - - uid: 7079 - components: - - pos: 0.5,-43.5 - parent: 1 - type: Transform - - uid: 7080 - components: - - pos: 0.5,-44.5 - parent: 1 - type: Transform - - uid: 7081 - components: - - pos: 0.5,-45.5 - parent: 1 - type: Transform - - uid: 7082 - components: - - pos: 1.5,-43.5 - parent: 1 - type: Transform - - uid: 7083 - components: - - pos: 1.5,-44.5 - parent: 1 - type: Transform - - uid: 7084 - components: - - pos: 1.5,-45.5 - parent: 1 - type: Transform - - uid: 7085 - components: - - pos: -1.5,-46.5 - parent: 1 - type: Transform - - uid: 7086 - components: - - pos: -1.5,-47.5 - parent: 1 - type: Transform - - uid: 7087 - components: - - pos: -1.5,-48.5 - parent: 1 - type: Transform - - uid: 7088 - components: - - pos: -0.5,-46.5 - parent: 1 - type: Transform - - uid: 7089 - components: - - pos: -0.5,-47.5 - parent: 1 - type: Transform - - uid: 7090 - components: - - pos: -0.5,-48.5 - parent: 1 - type: Transform - - uid: 7091 - components: - - pos: 0.5,-46.5 - parent: 1 - type: Transform - - uid: 7092 - components: - - pos: 0.5,-47.5 - parent: 1 - type: Transform - - uid: 7093 - components: - - pos: 0.5,-48.5 - parent: 1 - type: Transform - - uid: 7876 - components: - - pos: -1.5,-23.5 - parent: 1 - type: Transform - - uid: 7877 - components: - - pos: -0.5,-23.5 - parent: 1 - type: Transform - - uid: 7878 - components: - - pos: 0.5,-23.5 - parent: 1 - type: Transform -- proto: AtmosFixFreezerMarker - entities: - - uid: 7129 - components: - - pos: 10.5,3.5 - parent: 1 - type: Transform - - uid: 7130 - components: - - pos: 10.5,2.5 - parent: 1 - type: Transform - - uid: 7131 - components: - - pos: 10.5,1.5 - parent: 1 - type: Transform - - uid: 7132 - components: - - pos: 11.5,3.5 - parent: 1 - type: Transform - - uid: 7133 - components: - - pos: 11.5,2.5 - parent: 1 - type: Transform - - uid: 7134 - components: - - pos: 11.5,1.5 - parent: 1 - type: Transform - - uid: 7135 - components: - - pos: 12.5,3.5 - parent: 1 - type: Transform - - uid: 7136 - components: - - pos: 12.5,2.5 - parent: 1 - type: Transform - - uid: 7137 - components: - - pos: 12.5,1.5 - parent: 1 - type: Transform - - uid: 9854 - components: - - pos: -32.5,-11.5 - parent: 1 - type: Transform - - uid: 9855 - components: - - pos: -32.5,-12.5 - parent: 1 - type: Transform - - uid: 9856 - components: - - pos: -31.5,-11.5 - parent: 1 - type: Transform - - uid: 9857 - components: - - pos: -31.5,-12.5 - parent: 1 - type: Transform - - uid: 9858 - components: - - pos: -30.5,-11.5 - parent: 1 - type: Transform - - uid: 9859 - components: - - pos: -30.5,-12.5 - parent: 1 - type: Transform -- proto: AtmosFixNitrogenMarker - entities: - - uid: 7036 - components: - - pos: -1.5,-21.5 - parent: 1 - type: Transform - - uid: 7037 - components: - - pos: -0.5,-21.5 - parent: 1 - type: Transform - - uid: 7038 - components: - - pos: 0.5,-21.5 - parent: 1 - type: Transform -- proto: AtmosFixOxygenMarker - entities: - - uid: 7039 - components: - - pos: -1.5,-19.5 - parent: 1 - type: Transform - - uid: 7040 - components: - - pos: -0.5,-19.5 - parent: 1 - type: Transform - - uid: 7041 - components: - - pos: 0.5,-19.5 - parent: 1 - type: Transform -- proto: AtmosFixPlasmaMarker - entities: - - uid: 7042 - components: - - pos: -1.5,-27.5 - parent: 1 - type: Transform - - uid: 7043 - components: - - pos: -0.5,-27.5 - parent: 1 - type: Transform - - uid: 7044 - components: - - pos: 0.5,-27.5 - parent: 1 - type: Transform -- proto: Autolathe - entities: - - uid: 3552 - components: - - pos: -4.5,24.5 - parent: 1 - type: Transform - - uid: 4159 - components: - - pos: -34.5,1.5 - parent: 1 - type: Transform - - uid: 4214 - components: - - pos: 13.5,-15.5 - parent: 1 - type: Transform -- proto: BagpipeInstrument - entities: - - uid: 8618 - components: - - pos: -3.6259267,26.581953 - parent: 1 - type: Transform -- proto: BananaPhoneInstrument - entities: - - uid: 6459 - components: - - pos: -15.461665,-0.34175533 - parent: 1 - type: Transform -- proto: BannerEngineering - entities: - - uid: 8567 - components: - - pos: -2.5,-11.5 - parent: 1 - type: Transform - - uid: 8570 - components: - - pos: 1.5,-11.5 - parent: 1 - type: Transform -- proto: BannerMedical - entities: - - uid: 8569 - components: - - pos: 2.5,17.5 - parent: 1 - type: Transform -- proto: BannerScience - entities: - - uid: 8568 - components: - - pos: -3.5,17.5 - parent: 1 - type: Transform -- proto: Barricade - entities: - - uid: 1710 - components: - - pos: -36.5,52.5 - parent: 1 - type: Transform - - uid: 2491 - components: - - pos: 21.5,9.5 - parent: 1 - type: Transform - - uid: 4453 - components: - - pos: -30.5,55.5 - parent: 1 - type: Transform - - uid: 4454 - components: - - pos: -31.5,52.5 - parent: 1 - type: Transform - - uid: 4455 - components: - - pos: -33.5,55.5 - parent: 1 - type: Transform - - uid: 4456 - components: - - pos: -35.5,55.5 - parent: 1 - type: Transform - - uid: 4457 - components: - - pos: -27.5,56.5 - parent: 1 - type: Transform - - uid: 4458 - components: - - pos: -26.5,57.5 - parent: 1 - type: Transform - - uid: 5554 - components: - - pos: -19.5,8.5 - parent: 1 - type: Transform - - uid: 6658 - components: - - pos: -45.5,-9.5 - parent: 1 - type: Transform - - uid: 6659 - components: - - pos: -49.5,-7.5 - parent: 1 - type: Transform - - uid: 6660 - components: - - pos: -48.5,-6.5 - parent: 1 - type: Transform - - uid: 6992 - components: - - pos: -25.5,-21.5 - parent: 1 - type: Transform - - uid: 10942 - components: - - pos: 33.5,-18.5 - parent: 1 - type: Transform - - uid: 10954 - components: - - pos: 37.5,-12.5 - parent: 1 - type: Transform - - uid: 13381 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,27.5 - parent: 1 - type: Transform - - uid: 13452 - components: - - pos: -45.5,48.5 - parent: 1 - type: Transform - - uid: 13479 - components: - - pos: -13.5,68.5 - parent: 1 - type: Transform -- proto: BarSignOfficerBeersky - entities: - - uid: 538 - components: - - pos: -0.5,12.5 - parent: 1 - type: Transform - - uid: 1670 - components: - - pos: -28.5,59.5 - parent: 1 - type: Transform - - uid: 4023 - components: - - pos: 5.5,-6.5 - parent: 1 - type: Transform -- proto: Basketball - entities: - - uid: 8261 - components: - - pos: -38.63891,43.594166 - parent: 1 - type: Transform -- proto: BassGuitarInstrument - entities: - - uid: 17737 - components: - - pos: 6.633194,-70.24802 - parent: 1 - type: Transform -- proto: Bed - entities: - - uid: 1991 - components: - - pos: -13.5,60.5 - parent: 1 - type: Transform - - uid: 2449 - components: - - pos: 4.5,-23.5 - parent: 1 - type: Transform - - uid: 3262 - components: - - pos: 26.5,52.5 - parent: 1 - type: Transform - - uid: 3558 - components: - - pos: -25.5,19.5 - parent: 1 - type: Transform - - uid: 4175 - components: - - pos: 11.5,40.5 - parent: 1 - type: Transform - - uid: 4176 - components: - - pos: 11.5,46.5 - parent: 1 - type: Transform - - uid: 4177 - components: - - pos: 18.5,47.5 - parent: 1 - type: Transform - - uid: 4178 - components: - - pos: 46.5,48.5 - parent: 1 - type: Transform - - uid: 4317 - components: - - pos: -38.5,42.5 - parent: 1 - type: Transform - - uid: 4318 - components: - - pos: -38.5,46.5 - parent: 1 - type: Transform - - uid: 4387 - components: - - pos: 26.5,8.5 - parent: 1 - type: Transform - - uid: 4423 - components: - - pos: 14.5,34.5 - parent: 1 - type: Transform - - uid: 6476 - components: - - pos: -17.5,1.5 - parent: 1 - type: Transform - - uid: 6480 - components: - - pos: 33.5,-17.5 - parent: 1 - type: Transform - - uid: 6482 - components: - - pos: -10.5,40.5 - parent: 1 - type: Transform - - uid: 6486 - components: - - pos: -17.5,3.5 - parent: 1 - type: Transform - - uid: 6487 - components: - - pos: -17.5,-2.5 - parent: 1 - type: Transform - - uid: 6489 - components: - - pos: -4.5,40.5 - parent: 1 - type: Transform - - uid: 6490 - components: - - pos: -7.5,40.5 - parent: 1 - type: Transform - - uid: 6494 - components: - - pos: -13.5,40.5 - parent: 1 - type: Transform - - uid: 6506 - components: - - pos: -10.5,10.5 - parent: 1 - type: Transform - - uid: 6797 - components: - - pos: -5.5,72.5 - parent: 1 - type: Transform - - uid: 7024 - components: - - pos: -23.5,1.5 - parent: 1 - type: Transform - - uid: 9326 - components: - - pos: -42.5,11.5 - parent: 1 - type: Transform - - uid: 9608 - components: - - pos: 9.5,33.5 - parent: 1 - type: Transform - - uid: 9609 - components: - - pos: 9.5,31.5 - parent: 1 - type: Transform - - uid: 9868 - components: - - pos: -36.5,-21.5 - parent: 1 - type: Transform -- proto: BedsheetBlack - entities: - - uid: 7344 - components: - - rot: 3.141592653589793 rad - pos: 26.5,52.5 - parent: 1 - type: Transform - - uid: 13319 - components: - - pos: -10.5,10.5 - parent: 1 - type: Transform -- proto: BedsheetBrown - entities: - - uid: 6843 - components: - - pos: 46.5,48.5 - parent: 1 - type: Transform -- proto: BedsheetCaptain - entities: - - uid: 6801 - components: - - pos: -5.5,72.5 - parent: 1 - type: Transform -- proto: BedsheetCE - entities: - - uid: 4199 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-23.5 - parent: 1 - type: Transform -- proto: BedsheetClown - entities: - - uid: 6612 - components: - - pos: -17.5,1.5 - parent: 1 - type: Transform -- proto: BedsheetCMO - entities: - - uid: 4422 - components: - - pos: 14.5,34.5 - parent: 1 - type: Transform -- proto: BedsheetCosmos - entities: - - uid: 6623 - components: - - pos: -17.5,-2.5 - parent: 1 - type: Transform -- proto: BedsheetHOP - entities: - - uid: 2490 - components: - - pos: 26.5,8.5 - parent: 1 - type: Transform -- proto: BedsheetHOS - entities: - - uid: 6817 - components: - - pos: -13.5,60.5 - parent: 1 - type: Transform -- proto: BedsheetMedical - entities: - - uid: 9386 - components: - - pos: 2.5,29.5 - parent: 1 - type: Transform - - uid: 9484 - components: - - pos: 2.5,31.5 - parent: 1 - type: Transform - - uid: 9486 - components: - - pos: 2.5,34.5 - parent: 1 - type: Transform -- proto: BedsheetMime - entities: - - uid: 6620 - components: - - pos: -17.5,3.5 - parent: 1 - type: Transform -- proto: BedsheetOrange - entities: - - uid: 8238 - components: - - pos: -13.5,40.5 - parent: 1 - type: Transform - - uid: 8239 - components: - - pos: -10.5,40.5 - parent: 1 - type: Transform - - uid: 8240 - components: - - pos: -7.5,40.5 - parent: 1 - type: Transform - - uid: 8241 - components: - - pos: -4.5,40.5 - parent: 1 - type: Transform -- proto: BedsheetQM - entities: - - uid: 9324 - components: - - pos: -42.5,11.5 - parent: 1 - type: Transform -- proto: BedsheetRD - entities: - - uid: 3559 - components: - - pos: -25.5,19.5 - parent: 1 - type: Transform -- proto: BedsheetSpawner - entities: - - uid: 6940 - components: - - pos: 11.5,40.5 - parent: 1 - type: Transform - - uid: 6941 - components: - - pos: 11.5,46.5 - parent: 1 - type: Transform - - uid: 6942 - components: - - pos: 18.5,47.5 - parent: 1 - type: Transform - - uid: 7025 - components: - - pos: -23.5,1.5 - parent: 1 - type: Transform - - uid: 8260 - components: - - pos: -38.5,42.5 - parent: 1 - type: Transform - - uid: 9871 - components: - - pos: -36.5,-21.5 - parent: 1 - type: Transform - - uid: 10384 - components: - - pos: 33.5,-17.5 - parent: 1 - type: Transform -- proto: BedsheetSyndie - entities: - - uid: 4319 - components: - - pos: -38.5,46.5 - parent: 1 - type: Transform -- proto: BiomassReclaimer - entities: - - uid: 7635 - components: - - pos: 21.5,31.5 - parent: 1 - type: Transform -- proto: BlastDoor - entities: - - uid: 4135 - components: - - pos: -43.5,24.5 - parent: 1 - type: Transform - - links: - - 7826 - type: DeviceLinkSink - - uid: 7923 - components: - - pos: -43.5,22.5 - parent: 1 - type: Transform - - links: - - 7826 - type: DeviceLinkSink - - uid: 9406 - components: - - pos: -19.5,-15.5 - parent: 1 - type: Transform - - links: - - 9404 - type: DeviceLinkSink -- proto: BlastDoorBridgeOpen - entities: - - uid: 4282 - components: - - pos: -9.5,76.5 - parent: 1 - type: Transform - - uid: 4283 - components: - - pos: -9.5,77.5 - parent: 1 - type: Transform - - uid: 4284 - components: - - pos: -8.5,79.5 - parent: 1 - type: Transform - - uid: 4285 - components: - - pos: -8.5,80.5 - parent: 1 - type: Transform - - uid: 4286 - components: - - pos: -7.5,82.5 - parent: 1 - type: Transform - - uid: 4287 - components: - - pos: -6.5,83.5 - parent: 1 - type: Transform - - uid: 4288 - components: - - pos: -5.5,83.5 - parent: 1 - type: Transform - - uid: 4289 - components: - - pos: -3.5,84.5 - parent: 1 - type: Transform - - uid: 4290 - components: - - pos: -2.5,84.5 - parent: 1 - type: Transform - - uid: 4291 - components: - - pos: -1.5,84.5 - parent: 1 - type: Transform - - uid: 4292 - components: - - pos: 0.5,84.5 - parent: 1 - type: Transform - - uid: 4293 - components: - - pos: 1.5,84.5 - parent: 1 - type: Transform - - uid: 4294 - components: - - pos: 2.5,84.5 - parent: 1 - type: Transform - - uid: 4295 - components: - - pos: 5.5,83.5 - parent: 1 - type: Transform - - uid: 4296 - components: - - pos: 4.5,83.5 - parent: 1 - type: Transform - - uid: 4297 - components: - - pos: 6.5,82.5 - parent: 1 - type: Transform - - uid: 4298 - components: - - pos: 7.5,80.5 - parent: 1 - type: Transform - - uid: 4299 - components: - - pos: 7.5,79.5 - parent: 1 - type: Transform - - uid: 4300 - components: - - pos: 8.5,77.5 - parent: 1 - type: Transform - - uid: 4301 - components: - - pos: 8.5,76.5 - parent: 1 - type: Transform - - uid: 4302 - components: - - pos: 0.5,72.5 - parent: 1 - type: Transform - - links: - - 4305 - type: DeviceLinkSink - - uid: 4303 - components: - - pos: -0.5,72.5 - parent: 1 - type: Transform - - links: - - 4305 - type: DeviceLinkSink - - uid: 4304 - components: - - pos: -1.5,72.5 - parent: 1 - type: Transform - - links: - - 4305 - type: DeviceLinkSink -- proto: BlastDoorOpen - entities: - - uid: 109 - components: - - pos: -44.5,5.5 - parent: 1 - type: Transform - - links: - - 9363 - type: DeviceLinkSink - - uid: 110 - components: - - pos: -44.5,1.5 - parent: 1 - type: Transform - - links: - - 9363 - type: DeviceLinkSink - - uid: 286 - components: - - pos: -41.5,1.5 - parent: 1 - type: Transform - - links: - - 9363 - type: DeviceLinkSink - - uid: 287 - components: - - pos: -41.5,5.5 - parent: 1 - type: Transform - - links: - - 9363 - type: DeviceLinkSink - - uid: 1048 - components: - - pos: -6.5,27.5 - parent: 1 - type: Transform - - links: - - 8572 - type: DeviceLinkSink - - uid: 2813 - components: - - pos: -11.5,-26.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -63184.5 - state: Closing - type: Door - - links: - - 8738 - type: DeviceLinkSink - - uid: 2814 - components: - - pos: -11.5,-27.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -63184.5 - state: Closing - type: Door - - links: - - 8738 - type: DeviceLinkSink - - uid: 2821 - components: - - pos: -11.5,-28.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -63184.5 - state: Closing - type: Door - - links: - - 8738 - type: DeviceLinkSink - - uid: 2822 - components: - - pos: -11.5,-29.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -63184.5 - state: Closing - type: Door - - links: - - 8738 - type: DeviceLinkSink - - uid: 3050 - components: - - pos: -0.5,-42.5 - parent: 1 - type: Transform - - links: - - 8749 - type: DeviceLinkSink - - uid: 3051 - components: - - pos: -1.5,-48.5 - parent: 1 - type: Transform - - links: - - 8750 - type: DeviceLinkSink - - uid: 3052 - components: - - pos: -0.5,-48.5 - parent: 1 - type: Transform - - links: - - 8750 - type: DeviceLinkSink - - uid: 3053 - components: - - pos: 0.5,-48.5 - parent: 1 - type: Transform - - links: - - 8750 - type: DeviceLinkSink - - uid: 3066 - components: - - pos: 19.5,-38.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -62177.75 - state: Closing - type: Door - - links: - - 17649 - type: DeviceLinkSink - - uid: 4205 - components: - - pos: 14.5,-23.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -62200.42 - state: Closing - type: Door - - links: - - 17648 - type: DeviceLinkSink -- proto: BlastDoorWindowsOpen - entities: - - uid: 18360 - components: - - pos: -9.5,74.5 - parent: 1 - type: Transform - - uid: 18361 - components: - - pos: -9.5,73.5 - parent: 1 - type: Transform - - uid: 18362 - components: - - pos: -9.5,72.5 - parent: 1 - type: Transform -- proto: BodyBag_Folded - entities: - - uid: 6946 - components: - - pos: 33.33633,56.840748 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.3955739 - - 12.773826 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 6947 - components: - - pos: 33.648705,56.61369 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 3.1239278 - - 11.75192 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: BodyScannerComputerCircuitboard - entities: - - uid: 7716 - components: - - pos: 16.457653,27.693125 - parent: 1 - type: Transform -- proto: Bola - entities: - - uid: 8195 - components: - - pos: -16.57336,48.668964 - parent: 1 - type: Transform - - uid: 9421 - components: - - pos: 41.316933,42.55459 - parent: 1 - type: Transform -- proto: BookAtmosAirAlarms - entities: - - uid: 9185 - components: - - pos: 6.038775,-21.429781 - parent: 1 - type: Transform -- proto: BookAtmosDistro - entities: - - uid: 9183 - components: - - pos: 7.4437623,-15.369677 - parent: 1 - type: Transform -- proto: BookAtmosVentsMore - entities: - - uid: 9184 - components: - - pos: -11.074379,-15.383043 - parent: 1 - type: Transform -- proto: BookAtmosWaste - entities: - - uid: 9186 - components: - - pos: -13.559183,-33.321575 - parent: 1 - type: Transform -- proto: BookBase - entities: - - uid: 10101 - components: - - pos: -35.309326,-21.379847 - parent: 1 - type: Transform -- proto: BookRandom - entities: - - uid: 8374 - components: - - pos: 29.490294,49.539463 - parent: 1 - type: Transform - - uid: 8377 - components: - - pos: 24.466179,53.695103 - parent: 1 - type: Transform - - uid: 9270 - components: - - pos: 24.172997,11.661996 - parent: 1 - type: Transform - - uid: 13472 - components: - - pos: -17.602375,64.72776 - parent: 1 - type: Transform - - uid: 13477 - components: - - pos: -12.50277,64.65098 - parent: 1 - type: Transform -- proto: BooksBag - entities: - - uid: 564 - components: - - pos: -25.599146,3.2273636 - parent: 1 - type: Transform -- proto: Bookshelf - entities: - - uid: 6474 - components: - - pos: -18.5,-33.5 - parent: 1 - type: Transform - - uid: 9265 - components: - - pos: 27.5,11.5 - parent: 1 - type: Transform - - uid: 9866 - components: - - pos: -33.5,-20.5 - parent: 1 - type: Transform -- proto: BookshelfFilled - entities: - - uid: 579 - components: - - pos: -22.5,11.5 - parent: 1 - type: Transform - - uid: 591 - components: - - pos: -22.5,9.5 - parent: 1 - type: Transform - - uid: 785 - components: - - pos: -26.5,11.5 - parent: 1 - type: Transform - - uid: 790 - components: - - pos: -24.5,11.5 - parent: 1 - type: Transform - - uid: 3020 - components: - - pos: -19.5,64.5 - parent: 1 - type: Transform -- proto: BoozeDispenser - entities: - - uid: 4043 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,7.5 - parent: 1 - type: Transform - - uid: 4451 - components: - - pos: -34.5,56.5 - parent: 1 - type: Transform -- proto: BoozeDispenserMachineCircuitboard - entities: - - uid: 4208 - components: - - pos: 18.665758,-21.968855 - parent: 1 - type: Transform -- proto: BoxBeaker - entities: - - uid: 8532 - components: - - pos: 5.345545,25.692337 - parent: 1 - type: Transform -- proto: BoxBeanbag - entities: - - uid: 7692 - components: - - flags: InContainer - type: MetaData - - parent: 7683 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 7694 - components: - - flags: InContainer - type: MetaData - - parent: 7683 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 13331 - components: - - pos: -9.5083065,10.722602 - parent: 1 - type: Transform -- proto: BoxBodyBag - entities: - - uid: 3705 - components: - - pos: 18.323305,31.666723 - parent: 1 - type: Transform -- proto: BoxBottle - entities: - - uid: 8534 - components: - - pos: 6.2325087,22.657133 - parent: 1 - type: Transform -- proto: BoxFlashbang - entities: - - uid: 18430 - components: - - pos: -16.611473,48.986847 - parent: 1 - type: Transform -- proto: BoxFolderBlack - entities: - - uid: 1934 - components: - - pos: 9.125238,57.460705 - parent: 1 - type: Transform - - uid: 1935 - components: - - pos: 12.500238,57.648205 - parent: 1 - type: Transform - - uid: 8080 - components: - - pos: -0.32539943,82.85567 - parent: 1 - type: Transform - - uid: 8657 - components: - - pos: -23.526514,19.927814 - parent: 1 - type: Transform - - uid: 9107 - components: - - pos: 5.668479,-25.549896 - parent: 1 - type: Transform -- proto: BoxFolderBlue - entities: - - uid: 3445 - components: - - pos: -9.412775,27.467733 - parent: 1 - type: Transform - - uid: 8078 - components: - - pos: -0.5525799,82.65699 - parent: 1 - type: Transform -- proto: BoxFolderGrey - entities: - - uid: 3446 - components: - - pos: -9.554764,27.609644 - parent: 1 - type: Transform - - uid: 8105 - components: - - pos: 6.4373384,71.640045 - parent: 1 - type: Transform - - uid: 8658 - components: - - pos: -23.384525,19.700756 - parent: 1 - type: Transform - - uid: 9218 - components: - - pos: 25.298811,4.565318 - parent: 1 - type: Transform - - uid: 9219 - components: - - pos: 25.548811,4.5861516 - parent: 1 - type: Transform - - uid: 9337 - components: - - pos: -43.574795,8.288526 - parent: 1 - type: Transform -- proto: BoxFolderRed - entities: - - uid: 7284 - components: - - pos: 5.333919,63.8167 - parent: 1 - type: Transform - - uid: 7289 - components: - - pos: 3.0905108,61.46098 - parent: 1 - type: Transform - - uid: 8232 - components: - - pos: -19.604881,52.742233 - parent: 1 - type: Transform - - uid: 8233 - components: - - pos: -12.278308,55.864277 - parent: 1 - type: Transform - - uid: 8246 - components: - - pos: -13.392934,47.51383 - parent: 1 - type: Transform - - uid: 8344 - components: - - pos: -16.417713,58.622196 - parent: 1 - type: Transform - - uid: 8361 - components: - - pos: 42.90648,50.630825 - parent: 1 - type: Transform -- proto: BoxFolderWhite - entities: - - uid: 7285 - components: - - pos: 5.6462917,63.53288 - parent: 1 - type: Transform - - uid: 8079 - components: - - pos: 2.6563458,82.571846 - parent: 1 - type: Transform - - uid: 8493 - components: - - pos: 15.860265,32.633404 - parent: 1 - type: Transform - - uid: 8562 - components: - - pos: 12.811435,19.710966 - parent: 1 - type: Transform -- proto: BoxFolderYellow - entities: - - uid: 8104 - components: - - pos: 4.5346994,73.39974 - parent: 1 - type: Transform - - uid: 9106 - components: - - pos: 5.460146,-25.362396 - parent: 1 - type: Transform - - uid: 9178 - components: - - pos: 13.689603,-12.275042 - parent: 1 - type: Transform - - uid: 9179 - components: - - pos: 13.41877,-12.462542 - parent: 1 - type: Transform - - uid: 9335 - components: - - pos: -43.637295,8.517693 - parent: 1 - type: Transform - - uid: 9336 - components: - - pos: -43.366463,8.267693 - parent: 1 - type: Transform - - uid: 18179 - components: - - pos: -35.620438,12.58034 - parent: 1 - type: Transform -- proto: BoxHandcuff - entities: - - uid: 18431 - components: - - pos: -16.528141,49.174347 - parent: 1 - type: Transform -- proto: BoxLightbulb - entities: - - uid: 18095 - components: - - pos: -46.66187,46.44237 - parent: 1 - type: Transform -- proto: BoxMousetrap - entities: - - uid: 6634 - components: - - pos: 12.496991,1.4858572 - parent: 1 - type: Transform -- proto: BoxMouthSwab - entities: - - uid: 8515 - components: - - pos: 7.6369686,33.367302 - parent: 1 - type: Transform -- proto: BoxNitrileGloves - entities: - - uid: 3723 - components: - - pos: 18.361977,29.598766 - parent: 1 - type: Transform - - uid: 8514 - components: - - pos: 7.3813915,33.67951 - parent: 1 - type: Transform -- proto: BoxShellTranquilizer - entities: - - uid: 8148 - components: - - flags: InContainer - type: MetaData - - parent: 7683 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: BoxShotgunIncendiary - entities: - - uid: 8145 - components: - - flags: InContainer - type: MetaData - - parent: 7683 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: BoxSterileMask - entities: - - uid: 8685 - components: - - pos: 18.549246,29.62489 - parent: 1 - type: Transform - - uid: 8686 - components: - - pos: 9.895921,19.54264 - parent: 1 - type: Transform -- proto: BoxTrashbag - entities: - - uid: 9255 - components: - - pos: 16.332394,-5.251412 - parent: 1 - type: Transform -- proto: BoxZiptie - entities: - - uid: 8194 - components: - - pos: -16.340641,49.341015 - parent: 1 - type: Transform -- proto: BrbSign - entities: - - uid: 9213 - components: - - pos: 25.652977,4.377818 - parent: 1 - type: Transform -- proto: BriefcaseBrownFilled - entities: - - uid: 7286 - components: - - pos: 4.538786,64.696556 - parent: 1 - type: Transform - - uid: 8120 - components: - - pos: 13.062738,57.648205 - parent: 1 - type: Transform -- proto: BrigTimer - entities: - - uid: 7666 - components: - - rot: 3.141592653589793 rad - pos: -14.5,43.5 - parent: 1 - type: Transform - - uid: 7667 - components: - - rot: 3.141592653589793 rad - pos: -5.5,43.5 - parent: 1 - type: Transform - - uid: 7668 - components: - - rot: 3.141592653589793 rad - pos: -11.5,43.5 - parent: 1 - type: Transform - - uid: 7669 - components: - - rot: 3.141592653589793 rad - pos: -8.5,43.5 - parent: 1 - type: Transform -- proto: Brutepack - entities: - - uid: 7815 - components: - - pos: -42.603355,21.659529 - parent: 1 - type: Transform -- proto: Bucket - entities: - - uid: 9006 - components: - - pos: 8.547974,11.674014 - parent: 1 - type: Transform - - uid: 10965 - components: - - pos: 37.59104,-15.971035 - parent: 1 - type: Transform -- proto: ButchCleaver - entities: - - uid: 10645 - components: - - pos: 8.613402,-2.6485355 - parent: 1 - type: Transform -- proto: CableApcExtension - entities: - - uid: 101 - components: - - pos: 51.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 168 - components: - - pos: 48.5,-12.5 - parent: 1 - type: Transform - - uid: 661 - components: - - pos: -23.5,10.5 - parent: 1 - type: Transform - - uid: 663 - components: - - pos: -23.5,9.5 - parent: 1 - type: Transform - - uid: 664 - components: - - pos: -2.5,-0.5 - parent: 1 - type: Transform - - uid: 2002 - components: - - pos: 47.5,-12.5 - parent: 1 - type: Transform - - uid: 2003 - components: - - pos: 48.5,-14.5 - parent: 1 - type: Transform - - uid: 2037 - components: - - pos: 51.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2038 - components: - - pos: 48.5,-13.5 - parent: 1 - type: Transform - - uid: 2039 - components: - - pos: 49.5,-14.5 - parent: 1 - type: Transform - - uid: 2052 - components: - - pos: 45.5,-12.5 - parent: 1 - type: Transform - - uid: 2057 - components: - - pos: 50.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2059 - components: - - pos: 50.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2060 - components: - - pos: 46.5,-12.5 - parent: 1 - type: Transform - - uid: 6000 - components: - - pos: -29.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6022 - components: - - pos: -18.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6521 - components: - - pos: 48.5,-10.5 - parent: 1 - type: Transform - - uid: 6525 - components: - - pos: 48.5,-11.5 - parent: 1 - type: Transform - - uid: 6546 - components: - - pos: -27.5,-27.5 - parent: 1 - type: Transform - - uid: 6547 - components: - - pos: 26.5,-29.5 - parent: 1 - type: Transform - - uid: 6770 - components: - - pos: 26.5,-27.5 - parent: 1 - type: Transform - - uid: 7422 - components: - - pos: 26.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7652 - components: - - pos: -27.5,-28.5 - parent: 1 - type: Transform - - uid: 7661 - components: - - pos: 26.5,-28.5 - parent: 1 - type: Transform - - uid: 7662 - components: - - pos: 26.5,-26.5 - parent: 1 - type: Transform - - uid: 7938 - components: - - pos: -42.5,24.5 - parent: 1 - type: Transform - - uid: 7939 - components: - - pos: -42.5,23.5 - parent: 1 - type: Transform - - uid: 7940 - components: - - pos: -42.5,22.5 - parent: 1 - type: Transform - - uid: 7941 - components: - - pos: -43.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7942 - components: - - pos: -44.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7943 - components: - - pos: -45.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7944 - components: - - pos: -45.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8009 - components: - - pos: -45.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8140 - components: - - pos: -43.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8141 - components: - - pos: -44.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8142 - components: - - pos: -45.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8143 - components: - - pos: -42.5,27.5 - parent: 1 - type: Transform - - uid: 8144 - components: - - pos: -43.5,27.5 - parent: 1 - type: Transform - - uid: 8146 - components: - - pos: -44.5,27.5 - parent: 1 - type: Transform - - uid: 8151 - components: - - pos: -45.5,27.5 - parent: 1 - type: Transform - - uid: 8152 - components: - - pos: -45.5,28.5 - parent: 1 - type: Transform - - uid: 8156 - components: - - pos: -42.5,26.5 - parent: 1 - type: Transform - - uid: 8157 - components: - - pos: -42.5,28.5 - parent: 1 - type: Transform - - uid: 8158 - components: - - pos: -41.5,28.5 - parent: 1 - type: Transform - - uid: 8159 - components: - - pos: -40.5,28.5 - parent: 1 - type: Transform - - uid: 8160 - components: - - pos: -39.5,28.5 - parent: 1 - type: Transform - - uid: 8193 - components: - - pos: -2.5,1.5 - parent: 1 - type: Transform - - uid: 8830 - components: - - pos: 1.5,-5.5 - parent: 8756 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8831 - components: - - pos: 1.5,-4.5 - parent: 8756 - type: Transform - - uid: 8832 - components: - - pos: 1.5,-3.5 - parent: 8756 - type: Transform - - uid: 8833 - components: - - pos: 1.5,-2.5 - parent: 8756 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8834 - components: - - pos: 1.5,-1.5 - parent: 8756 - type: Transform - - uid: 8835 - components: - - pos: 1.5,-0.5 - parent: 8756 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8836 - components: - - pos: 1.5,0.5 - parent: 8756 - type: Transform - - uid: 8837 - components: - - pos: 0.5,0.5 - parent: 8756 - type: Transform - - uid: 8838 - components: - - pos: 0.5,1.5 - parent: 8756 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8839 - components: - - pos: 0.5,2.5 - parent: 8756 - type: Transform - - uid: 8840 - components: - - pos: 0.5,3.5 - parent: 8756 - type: Transform - - uid: 8841 - components: - - pos: -0.5,3.5 - parent: 8756 - type: Transform - - uid: 8842 - components: - - pos: -1.5,3.5 - parent: 8756 - type: Transform - - uid: 8843 - components: - - pos: -1.5,2.5 - parent: 8756 - type: Transform - - uid: 8844 - components: - - pos: -1.5,1.5 - parent: 8756 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8845 - components: - - pos: -1.5,0.5 - parent: 8756 - type: Transform - - uid: 8846 - components: - - pos: -2.5,0.5 - parent: 8756 - type: Transform - - uid: 8847 - components: - - pos: -2.5,-0.5 - parent: 8756 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8848 - components: - - pos: -2.5,-1.5 - parent: 8756 - type: Transform - - uid: 8849 - components: - - pos: -2.5,-2.5 - parent: 8756 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8850 - components: - - pos: -2.5,-3.5 - parent: 8756 - type: Transform - - uid: 8851 - components: - - pos: -2.5,-4.5 - parent: 8756 - type: Transform - - uid: 8852 - components: - - pos: -2.5,-5.5 - parent: 8756 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8853 - components: - - pos: -1.5,-5.5 - parent: 8756 - type: Transform - - uid: 8854 - components: - - pos: -0.5,-5.5 - parent: 8756 - type: Transform - - uid: 8855 - components: - - pos: 0.5,-5.5 - parent: 8756 - type: Transform - - uid: 8856 - components: - - pos: 1.5,-5.5 - parent: 8756 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9718 - components: - - pos: -9.5,46.5 - parent: 1 - type: Transform - - uid: 9737 - components: - - pos: -22.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9738 - components: - - pos: -22.5,-18.5 - parent: 1 - type: Transform - - uid: 9739 - components: - - pos: -21.5,-18.5 - parent: 1 - type: Transform - - uid: 9740 - components: - - pos: -20.5,-18.5 - parent: 1 - type: Transform - - uid: 9741 - components: - - pos: -20.5,-17.5 - parent: 1 - type: Transform - - uid: 9742 - components: - - pos: -20.5,-16.5 - parent: 1 - type: Transform - - uid: 9743 - components: - - pos: -20.5,-15.5 - parent: 1 - type: Transform - - uid: 9744 - components: - - pos: -23.5,-18.5 - parent: 1 - type: Transform - - uid: 9745 - components: - - pos: -23.5,-17.5 - parent: 1 - type: Transform - - uid: 9746 - components: - - pos: -23.5,-16.5 - parent: 1 - type: Transform - - uid: 9747 - components: - - pos: -23.5,-15.5 - parent: 1 - type: Transform - - uid: 9748 - components: - - pos: -22.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9749 - components: - - pos: -22.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9750 - components: - - pos: -22.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9751 - components: - - pos: -22.5,-23.5 - parent: 1 - type: Transform - - uid: 9752 - components: - - pos: -21.5,-20.5 - parent: 1 - type: Transform - - uid: 9753 - components: - - pos: -20.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9754 - components: - - pos: -20.5,-21.5 - parent: 1 - type: Transform - - uid: 9755 - components: - - pos: -20.5,-22.5 - parent: 1 - type: Transform - - uid: 9756 - components: - - pos: -20.5,-23.5 - parent: 1 - type: Transform - - uid: 9757 - components: - - pos: -20.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9758 - components: - - pos: -23.5,-20.5 - parent: 1 - type: Transform - - uid: 9759 - components: - - pos: -24.5,-20.5 - parent: 1 - type: Transform - - uid: 9760 - components: - - pos: -24.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9761 - components: - - pos: -24.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9762 - components: - - pos: -24.5,-23.5 - parent: 1 - type: Transform - - uid: 9763 - components: - - pos: -24.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9776 - components: - - pos: -31.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9777 - components: - - pos: -31.5,-14.5 - parent: 1 - type: Transform - - uid: 9778 - components: - - pos: -31.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9779 - components: - - pos: -31.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9780 - components: - - pos: -30.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9781 - components: - - pos: -29.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9782 - components: - - pos: -28.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9783 - components: - - pos: -27.5,-16.5 - parent: 1 - type: Transform - - uid: 9784 - components: - - pos: -26.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9785 - components: - - pos: -25.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9786 - components: - - pos: -25.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9787 - components: - - pos: -25.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9788 - components: - - pos: -29.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9789 - components: - - pos: -29.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9790 - components: - - pos: -28.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9791 - components: - - pos: -27.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9792 - components: - - pos: -27.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9793 - components: - - pos: -27.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9794 - components: - - pos: -27.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9795 - components: - - pos: -32.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9796 - components: - - pos: -33.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9797 - components: - - pos: -34.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9798 - components: - - pos: -35.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9799 - components: - - pos: -35.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9800 - components: - - pos: -35.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9801 - components: - - pos: -35.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9802 - components: - - pos: -35.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9803 - components: - - pos: -35.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9804 - components: - - pos: -35.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9805 - components: - - pos: -35.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9806 - components: - - pos: -35.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9807 - components: - - pos: -35.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9808 - components: - - pos: -36.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9809 - components: - - pos: -37.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9810 - components: - - pos: -38.5,-11.5 - parent: 1 - type: Transform - - uid: 9811 - components: - - pos: -39.5,-11.5 - parent: 1 - type: Transform - - uid: 9812 - components: - - pos: -40.5,-11.5 - parent: 1 - type: Transform - - uid: 9813 - components: - - pos: -40.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9814 - components: - - pos: -40.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9818 - components: - - pos: -44.5,-9.5 - parent: 1 - type: Transform - - uid: 9819 - components: - - pos: -45.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9820 - components: - - pos: -46.5,-9.5 - parent: 1 - type: Transform - - uid: 9821 - components: - - pos: -47.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9822 - components: - - pos: -48.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9823 - components: - - pos: -49.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9824 - components: - - pos: -50.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9825 - components: - - pos: -51.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9826 - components: - - pos: -52.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9827 - components: - - pos: -49.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9828 - components: - - pos: -49.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9829 - components: - - pos: -47.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9830 - components: - - pos: -47.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9831 - components: - - pos: -50.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9832 - components: - - pos: -50.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9833 - components: - - pos: -51.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9834 - components: - - pos: -52.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9835 - components: - - pos: -49.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9836 - components: - - pos: -48.5,-7.5 - parent: 1 - type: Transform - - uid: 9837 - components: - - pos: -47.5,-7.5 - parent: 1 - type: Transform - - uid: 9838 - components: - - pos: -46.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9839 - components: - - pos: -45.5,-7.5 - parent: 1 - type: Transform - - uid: 9840 - components: - - pos: -45.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9990 - components: - - pos: -29.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9991 - components: - - pos: -29.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9992 - components: - - pos: -29.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9993 - components: - - pos: -29.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9994 - components: - - pos: -29.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9995 - components: - - pos: -29.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9996 - components: - - pos: -30.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9997 - components: - - pos: -31.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9998 - components: - - pos: -31.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9999 - components: - - pos: -31.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10000 - components: - - pos: -31.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10001 - components: - - pos: -31.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10002 - components: - - pos: -32.5,-19.5 - parent: 1 - type: Transform - - uid: 10003 - components: - - pos: -33.5,-19.5 - parent: 1 - type: Transform - - uid: 10004 - components: - - pos: -34.5,-19.5 - parent: 1 - type: Transform - - uid: 10005 - components: - - pos: -28.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10006 - components: - - pos: -27.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10007 - components: - - pos: -26.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10008 - components: - - pos: -29.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10009 - components: - - pos: -29.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10010 - components: - - pos: -29.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10011 - components: - - pos: -28.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10012 - components: - - pos: -27.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10013 - components: - - pos: -26.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10014 - components: - - pos: -25.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10015 - components: - - pos: -24.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10016 - components: - - pos: -23.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10017 - components: - - pos: -22.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10018 - components: - - pos: -21.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10019 - components: - - pos: -20.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10020 - components: - - pos: -20.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10021 - components: - - pos: -20.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10022 - components: - - pos: -20.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10023 - components: - - pos: -20.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10024 - components: - - pos: -20.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10025 - components: - - pos: -19.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10026 - components: - - pos: -19.5,-32.5 - parent: 1 - type: Transform - - uid: 10027 - components: - - pos: -19.5,-33.5 - parent: 1 - type: Transform - - uid: 10028 - components: - - pos: -19.5,-34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10029 - components: - - pos: -19.5,-35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10030 - components: - - pos: -19.5,-36.5 - parent: 1 - type: Transform - - uid: 10031 - components: - - pos: -19.5,-18.5 - parent: 1 - type: Transform - - uid: 10032 - components: - - pos: -18.5,-18.5 - parent: 1 - type: Transform - - uid: 10033 - components: - - pos: -17.5,-18.5 - parent: 1 - type: Transform - - uid: 10034 - components: - - pos: -16.5,-18.5 - parent: 1 - type: Transform - - uid: 10035 - components: - - pos: -16.5,-19.5 - parent: 1 - type: Transform - - uid: 10036 - components: - - pos: -16.5,-20.5 - parent: 1 - type: Transform - - uid: 10037 - components: - - pos: -16.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10038 - components: - - pos: -16.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10039 - components: - - pos: -16.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10040 - components: - - pos: -16.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10041 - components: - - pos: -17.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10042 - components: - - pos: -18.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10043 - components: - - pos: -18.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10044 - components: - - pos: -18.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10045 - components: - - pos: -18.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10046 - components: - - pos: -18.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10047 - components: - - pos: -18.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10049 - components: - - pos: -17.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10050 - components: - - pos: -16.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10051 - components: - - pos: -16.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10052 - components: - - pos: -16.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10053 - components: - - pos: -16.5,-34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10054 - components: - - pos: -16.5,-35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10055 - components: - - pos: -16.5,-36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10056 - components: - - pos: -16.5,-37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10057 - components: - - pos: -16.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10058 - components: - - pos: -16.5,-39.5 - parent: 1 - type: Transform - - uid: 10059 - components: - - pos: -16.5,-40.5 - parent: 1 - type: Transform - - uid: 10164 - components: - - pos: 29.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10165 - components: - - pos: 29.5,-13.5 - parent: 1 - type: Transform - - uid: 10166 - components: - - pos: 29.5,-12.5 - parent: 1 - type: Transform - - uid: 10167 - components: - - pos: 29.5,-11.5 - parent: 1 - type: Transform - - uid: 10168 - components: - - pos: 28.5,-11.5 - parent: 1 - type: Transform - - uid: 10169 - components: - - pos: 27.5,-11.5 - parent: 1 - type: Transform - - uid: 10170 - components: - - pos: 26.5,-11.5 - parent: 1 - type: Transform - - uid: 10171 - components: - - pos: 30.5,-11.5 - parent: 1 - type: Transform - - uid: 10172 - components: - - pos: 29.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10173 - components: - - pos: 28.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10174 - components: - - pos: 27.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10175 - components: - - pos: 26.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10176 - components: - - pos: 25.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10177 - components: - - pos: 24.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10178 - components: - - pos: 24.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10179 - components: - - pos: 24.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10180 - components: - - pos: 24.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10181 - components: - - pos: 24.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10182 - components: - - pos: 24.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10183 - components: - - pos: 24.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10184 - components: - - pos: 24.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10185 - components: - - pos: 24.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10186 - components: - - pos: 24.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10187 - components: - - pos: 24.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10188 - components: - - pos: 24.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10189 - components: - - pos: 24.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10190 - components: - - pos: 23.5,-24.5 - parent: 1 - type: Transform - - uid: 10191 - components: - - pos: 22.5,-24.5 - parent: 1 - type: Transform - - uid: 10192 - components: - - pos: 22.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10193 - components: - - pos: 22.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10194 - components: - - pos: 22.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10195 - components: - - pos: 21.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10196 - components: - - pos: 21.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10197 - components: - - pos: 21.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10198 - components: - - pos: 20.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10199 - components: - - pos: 19.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10200 - components: - - pos: 18.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10201 - components: - - pos: 17.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10202 - components: - - pos: 16.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10203 - components: - - pos: 15.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10204 - components: - - pos: 15.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10205 - components: - - pos: 15.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10206 - components: - - pos: 15.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10207 - components: - - pos: 15.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10208 - components: - - pos: 15.5,-34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10209 - components: - - pos: 15.5,-35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10210 - components: - - pos: 16.5,-34.5 - parent: 1 - type: Transform - - uid: 10211 - components: - - pos: 17.5,-34.5 - parent: 1 - type: Transform - - uid: 10212 - components: - - pos: 18.5,-34.5 - parent: 1 - type: Transform - - uid: 10213 - components: - - pos: 19.5,-34.5 - parent: 1 - type: Transform - - uid: 10214 - components: - - pos: 19.5,-35.5 - parent: 1 - type: Transform - - uid: 10215 - components: - - pos: 19.5,-36.5 - parent: 1 - type: Transform - - uid: 10216 - components: - - pos: 19.5,-37.5 - parent: 1 - type: Transform - - uid: 10217 - components: - - pos: 19.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10218 - components: - - pos: 15.5,-36.5 - parent: 1 - type: Transform - - uid: 10219 - components: - - pos: 15.5,-37.5 - parent: 1 - type: Transform - - uid: 10220 - components: - - pos: 15.5,-38.5 - parent: 1 - type: Transform - - uid: 10221 - components: - - pos: 15.5,-39.5 - parent: 1 - type: Transform - - uid: 10222 - components: - - pos: 15.5,-40.5 - parent: 1 - type: Transform - - uid: 10223 - components: - - pos: 30.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10224 - components: - - pos: 31.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10225 - components: - - pos: 32.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10226 - components: - - pos: 32.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10227 - components: - - pos: 32.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10228 - components: - - pos: 32.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10229 - components: - - pos: 32.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10230 - components: - - pos: 33.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10231 - components: - - pos: 34.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10232 - components: - - pos: 35.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10233 - components: - - pos: 36.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10234 - components: - - pos: 37.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10235 - components: - - pos: 38.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10236 - components: - - pos: 39.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10237 - components: - - pos: 30.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10238 - components: - - pos: 30.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10239 - components: - - pos: 30.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10240 - components: - - pos: 30.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10241 - components: - - pos: 30.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10242 - components: - - pos: 30.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10243 - components: - - pos: 30.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10244 - components: - - pos: 30.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10245 - components: - - pos: 30.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10246 - components: - - pos: 29.5,-19.5 - parent: 1 - type: Transform - - uid: 10247 - components: - - pos: 28.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10248 - components: - - pos: 27.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10249 - components: - - pos: 26.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10250 - components: - - pos: 29.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10251 - components: - - pos: 28.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10252 - components: - - pos: 27.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10253 - components: - - pos: 26.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10254 - components: - - pos: 25.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10255 - components: - - pos: 31.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10256 - components: - - pos: 32.5,-20.5 - parent: 1 - type: Transform - - uid: 10257 - components: - - pos: 33.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10258 - components: - - pos: 34.5,-20.5 - parent: 1 - type: Transform - - uid: 10259 - components: - - pos: 35.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10261 - components: - - pos: 37.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10262 - components: - - pos: 37.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10263 - components: - - pos: 37.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10264 - components: - - pos: 37.5,-16.5 - parent: 1 - type: Transform - - uid: 10265 - components: - - pos: 37.5,-17.5 - parent: 1 - type: Transform - - uid: 10266 - components: - - pos: 36.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10267 - components: - - pos: 35.5,-15.5 - parent: 1 - type: Transform - - uid: 10268 - components: - - pos: 34.5,-19.5 - parent: 1 - type: Transform - - uid: 10269 - components: - - pos: 34.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10270 - components: - - pos: 31.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10271 - components: - - pos: 32.5,-24.5 - parent: 1 - type: Transform - - uid: 10309 - components: - - pos: -41.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10310 - components: - - pos: -42.5,7.5 - parent: 1 - type: Transform - - uid: 10311 - components: - - pos: -43.5,7.5 - parent: 1 - type: Transform - - uid: 10312 - components: - - pos: -44.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10313 - components: - - pos: -44.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10314 - components: - - pos: -44.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10315 - components: - - pos: -43.5,9.5 - parent: 1 - type: Transform - - uid: 10316 - components: - - pos: -43.5,10.5 - parent: 1 - type: Transform - - uid: 10317 - components: - - pos: -43.5,11.5 - parent: 1 - type: Transform - - uid: 10318 - components: - - pos: -42.5,11.5 - parent: 1 - type: Transform - - uid: 10319 - components: - - pos: -40.5,7.5 - parent: 1 - type: Transform - - uid: 10320 - components: - - pos: -39.5,7.5 - parent: 1 - type: Transform - - uid: 10321 - components: - - pos: -38.5,7.5 - parent: 1 - type: Transform - - uid: 10322 - components: - - pos: -37.5,7.5 - parent: 1 - type: Transform - - uid: 10323 - components: - - pos: -36.5,7.5 - parent: 1 - type: Transform - - uid: 10324 - components: - - pos: -35.5,7.5 - parent: 1 - type: Transform - - uid: 10325 - components: - - pos: -34.5,7.5 - parent: 1 - type: Transform - - uid: 10326 - components: - - pos: -33.5,7.5 - parent: 1 - type: Transform - - uid: 10327 - components: - - pos: -33.5,6.5 - parent: 1 - type: Transform - - uid: 10328 - components: - - pos: -33.5,5.5 - parent: 1 - type: Transform - - uid: 10329 - components: - - pos: -33.5,4.5 - parent: 1 - type: Transform - - uid: 10330 - components: - - pos: -34.5,4.5 - parent: 1 - type: Transform - - uid: 10331 - components: - - pos: -35.5,4.5 - parent: 1 - type: Transform - - uid: 10332 - components: - - pos: -36.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10333 - components: - - pos: -37.5,4.5 - parent: 1 - type: Transform - - uid: 10334 - components: - - pos: -38.5,4.5 - parent: 1 - type: Transform - - uid: 10335 - components: - - pos: -39.5,4.5 - parent: 1 - type: Transform - - uid: 10336 - components: - - pos: -40.5,4.5 - parent: 1 - type: Transform - - uid: 10337 - components: - - pos: -40.5,5.5 - parent: 1 - type: Transform - - uid: 10338 - components: - - pos: -40.5,6.5 - parent: 1 - type: Transform - - uid: 10339 - components: - - pos: -40.5,3.5 - parent: 1 - type: Transform - - uid: 10340 - components: - - pos: -40.5,2.5 - parent: 1 - type: Transform - - uid: 10341 - components: - - pos: -40.5,1.5 - parent: 1 - type: Transform - - uid: 10342 - components: - - pos: -40.5,0.5 - parent: 1 - type: Transform - - uid: 10343 - components: - - pos: -40.5,-0.5 - parent: 1 - type: Transform - - uid: 10344 - components: - - pos: -40.5,-1.5 - parent: 1 - type: Transform - - uid: 10345 - components: - - pos: -40.5,-2.5 - parent: 1 - type: Transform - - uid: 10346 - components: - - pos: -40.5,-3.5 - parent: 1 - type: Transform - - uid: 10347 - components: - - pos: -40.5,-4.5 - parent: 1 - type: Transform - - uid: 10348 - components: - - pos: -40.5,-5.5 - parent: 1 - type: Transform - - uid: 10349 - components: - - pos: -40.5,-6.5 - parent: 1 - type: Transform - - uid: 10350 - components: - - pos: -40.5,-7.5 - parent: 1 - type: Transform - - uid: 10351 - components: - - pos: -39.5,-1.5 - parent: 1 - type: Transform - - uid: 10352 - components: - - pos: -38.5,-1.5 - parent: 1 - type: Transform - - uid: 10353 - components: - - pos: -37.5,-1.5 - parent: 1 - type: Transform - - uid: 10354 - components: - - pos: -36.5,-1.5 - parent: 1 - type: Transform - - uid: 10355 - components: - - pos: -35.5,-1.5 - parent: 1 - type: Transform - - uid: 10356 - components: - - pos: -34.5,-1.5 - parent: 1 - type: Transform - - uid: 10357 - components: - - pos: -38.5,2.5 - parent: 1 - type: Transform - - uid: 10358 - components: - - pos: -37.5,2.5 - parent: 1 - type: Transform - - uid: 10359 - components: - - pos: -36.5,2.5 - parent: 1 - type: Transform - - uid: 10360 - components: - - pos: -35.5,2.5 - parent: 1 - type: Transform - - uid: 10361 - components: - - pos: -34.5,2.5 - parent: 1 - type: Transform - - uid: 10362 - components: - - pos: -39.5,2.5 - parent: 1 - type: Transform - - uid: 10363 - components: - - pos: -41.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10364 - components: - - pos: -42.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10365 - components: - - pos: -43.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10366 - components: - - pos: -42.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10367 - components: - - pos: -43.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10368 - components: - - pos: -41.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10369 - components: - - pos: -41.5,-1.5 - parent: 1 - type: Transform - - uid: 10370 - components: - - pos: -42.5,-1.5 - parent: 1 - type: Transform - - uid: 10371 - components: - - pos: -43.5,-1.5 - parent: 1 - type: Transform - - uid: 10372 - components: - - pos: -41.5,-5.5 - parent: 1 - type: Transform - - uid: 10373 - components: - - pos: -42.5,-5.5 - parent: 1 - type: Transform - - uid: 10374 - components: - - pos: -43.5,-5.5 - parent: 1 - type: Transform - - uid: 10375 - components: - - pos: -34.5,-2.5 - parent: 1 - type: Transform - - uid: 10376 - components: - - pos: -34.5,-3.5 - parent: 1 - type: Transform - - uid: 10377 - components: - - pos: -34.5,-4.5 - parent: 1 - type: Transform - - uid: 10378 - components: - - pos: -34.5,-5.5 - parent: 1 - type: Transform - - uid: 10379 - components: - - pos: -39.5,8.5 - parent: 1 - type: Transform - - uid: 10380 - components: - - pos: -39.5,9.5 - parent: 1 - type: Transform - - uid: 10381 - components: - - pos: -39.5,10.5 - parent: 1 - type: Transform - - uid: 10382 - components: - - pos: -39.5,11.5 - parent: 1 - type: Transform - - uid: 10443 - components: - - pos: 16.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10444 - components: - - pos: 17.5,-21.5 - parent: 1 - type: Transform - - uid: 10445 - components: - - pos: 17.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10446 - components: - - pos: 18.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10447 - components: - - pos: 17.5,-22.5 - parent: 1 - type: Transform - - uid: 10448 - components: - - pos: 17.5,-23.5 - parent: 1 - type: Transform - - uid: 10449 - components: - - pos: 17.5,-24.5 - parent: 1 - type: Transform - - uid: 10450 - components: - - pos: 17.5,-25.5 - parent: 1 - type: Transform - - uid: 10451 - components: - - pos: 17.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10452 - components: - - pos: 18.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10453 - components: - - pos: 18.5,-23.5 - parent: 1 - type: Transform - - uid: 10454 - components: - - pos: 19.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10455 - components: - - pos: 19.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10456 - components: - - pos: 19.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10457 - components: - - pos: 16.5,-23.5 - parent: 1 - type: Transform - - uid: 10470 - components: - - pos: 5.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10471 - components: - - pos: 5.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10472 - components: - - pos: 5.5,-29.5 - parent: 1 - type: Transform - - uid: 10473 - components: - - pos: 5.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10474 - components: - - pos: 6.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10475 - components: - - pos: 7.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10476 - components: - - pos: 8.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10477 - components: - - pos: 8.5,-29.5 - parent: 1 - type: Transform - - uid: 10478 - components: - - pos: 8.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10479 - components: - - pos: 7.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10480 - components: - - pos: 7.5,-31.5 - parent: 1 - type: Transform - - uid: 10481 - components: - - pos: 7.5,-32.5 - parent: 1 - type: Transform - - uid: 10482 - components: - - pos: 7.5,-33.5 - parent: 1 - type: Transform - - uid: 10483 - components: - - pos: 7.5,-34.5 - parent: 1 - type: Transform - - uid: 10484 - components: - - pos: 7.5,-35.5 - parent: 1 - type: Transform - - uid: 10485 - components: - - pos: 7.5,-36.5 - parent: 1 - type: Transform - - uid: 10486 - components: - - pos: 7.5,-37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10487 - components: - - pos: 7.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10488 - components: - - pos: 7.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10489 - components: - - pos: 7.5,-40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10490 - components: - - pos: 6.5,-36.5 - parent: 1 - type: Transform - - uid: 10491 - components: - - pos: 5.5,-36.5 - parent: 1 - type: Transform - - uid: 10492 - components: - - pos: 4.5,-36.5 - parent: 1 - type: Transform - - uid: 10493 - components: - - pos: 4.5,-37.5 - parent: 1 - type: Transform - - uid: 10494 - components: - - pos: 4.5,-38.5 - parent: 1 - type: Transform - - uid: 10495 - components: - - pos: 4.5,-39.5 - parent: 1 - type: Transform - - uid: 10496 - components: - - pos: 4.5,-40.5 - parent: 1 - type: Transform - - uid: 10497 - components: - - pos: 4.5,-41.5 - parent: 1 - type: Transform - - uid: 10498 - components: - - pos: 8.5,-36.5 - parent: 1 - type: Transform - - uid: 10499 - components: - - pos: 9.5,-36.5 - parent: 1 - type: Transform - - uid: 10500 - components: - - pos: 9.5,-37.5 - parent: 1 - type: Transform - - uid: 10501 - components: - - pos: 9.5,-38.5 - parent: 1 - type: Transform - - uid: 10502 - components: - - pos: 9.5,-39.5 - parent: 1 - type: Transform - - uid: 10503 - components: - - pos: 9.5,-40.5 - parent: 1 - type: Transform - - uid: 10504 - components: - - pos: 9.5,-41.5 - parent: 1 - type: Transform - - uid: 10505 - components: - - pos: 8.5,-34.5 - parent: 1 - type: Transform - - uid: 10506 - components: - - pos: 9.5,-34.5 - parent: 1 - type: Transform - - uid: 10507 - components: - - pos: 10.5,-34.5 - parent: 1 - type: Transform - - uid: 10508 - components: - - pos: 11.5,-34.5 - parent: 1 - type: Transform - - uid: 10509 - components: - - pos: 12.5,-34.5 - parent: 1 - type: Transform - - uid: 10510 - components: - - pos: 12.5,-35.5 - parent: 1 - type: Transform - - uid: 10511 - components: - - pos: 12.5,-36.5 - parent: 1 - type: Transform - - uid: 10512 - components: - - pos: 12.5,-37.5 - parent: 1 - type: Transform - - uid: 10513 - components: - - pos: 12.5,-38.5 - parent: 1 - type: Transform - - uid: 10514 - components: - - pos: 12.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10515 - components: - - pos: 12.5,-40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10516 - components: - - pos: 12.5,-41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10517 - components: - - pos: 12.5,-42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10518 - components: - - pos: 12.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10519 - components: - - pos: 12.5,-44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10520 - components: - - pos: 12.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10521 - components: - - pos: 12.5,-46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10522 - components: - - pos: 12.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10523 - components: - - pos: 13.5,-34.5 - parent: 1 - type: Transform - - uid: 10524 - components: - - pos: 13.5,-33.5 - parent: 1 - type: Transform - - uid: 10525 - components: - - pos: 13.5,-32.5 - parent: 1 - type: Transform - - uid: 10526 - components: - - pos: 13.5,-31.5 - parent: 1 - type: Transform - - uid: 10527 - components: - - pos: 13.5,-30.5 - parent: 1 - type: Transform - - uid: 10528 - components: - - pos: 13.5,-29.5 - parent: 1 - type: Transform - - uid: 10529 - components: - - pos: 12.5,-29.5 - parent: 1 - type: Transform - - uid: 10530 - components: - - pos: 11.5,-29.5 - parent: 1 - type: Transform - - uid: 10531 - components: - - pos: 10.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10532 - components: - - pos: 9.5,-29.5 - parent: 1 - type: Transform - - uid: 10533 - components: - - pos: 5.5,-29.5 - parent: 1 - type: Transform - - uid: 10534 - components: - - pos: 4.5,-30.5 - parent: 1 - type: Transform - - uid: 10535 - components: - - pos: 4.5,-29.5 - parent: 1 - type: Transform - - uid: 10536 - components: - - pos: 4.5,-28.5 - parent: 1 - type: Transform - - uid: 10537 - components: - - pos: 5.5,-32.5 - parent: 1 - type: Transform - - uid: 10538 - components: - - pos: 5.5,-33.5 - parent: 1 - type: Transform - - uid: 10539 - components: - - pos: 5.5,-34.5 - parent: 1 - type: Transform - - uid: 10540 - components: - - pos: 6.5,-34.5 - parent: 1 - type: Transform - - uid: 10549 - components: - - pos: 10.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10550 - components: - - pos: 10.5,-20.5 - parent: 1 - type: Transform - - uid: 10551 - components: - - pos: 10.5,-21.5 - parent: 1 - type: Transform - - uid: 10552 - components: - - pos: 10.5,-22.5 - parent: 1 - type: Transform - - uid: 10553 - components: - - pos: 10.5,-23.5 - parent: 1 - type: Transform - - uid: 10554 - components: - - pos: 10.5,-24.5 - parent: 1 - type: Transform - - uid: 10555 - components: - - pos: 10.5,-25.5 - parent: 1 - type: Transform - - uid: 10556 - components: - - pos: 10.5,-26.5 - parent: 1 - type: Transform - - uid: 10557 - components: - - pos: 11.5,-26.5 - parent: 1 - type: Transform - - uid: 10558 - components: - - pos: 12.5,-26.5 - parent: 1 - type: Transform - - uid: 10559 - components: - - pos: 13.5,-26.5 - parent: 1 - type: Transform - - uid: 10560 - components: - - pos: 13.5,-25.5 - parent: 1 - type: Transform - - uid: 10561 - components: - - pos: 13.5,-24.5 - parent: 1 - type: Transform - - uid: 10562 - components: - - pos: 13.5,-23.5 - parent: 1 - type: Transform - - uid: 10563 - components: - - pos: 13.5,-22.5 - parent: 1 - type: Transform - - uid: 10564 - components: - - pos: 13.5,-21.5 - parent: 1 - type: Transform - - uid: 10565 - components: - - pos: 13.5,-20.5 - parent: 1 - type: Transform - - uid: 10566 - components: - - pos: 12.5,-20.5 - parent: 1 - type: Transform - - uid: 10567 - components: - - pos: 12.5,-19.5 - parent: 1 - type: Transform - - uid: 10568 - components: - - pos: 12.5,-18.5 - parent: 1 - type: Transform - - uid: 10569 - components: - - pos: 11.5,-18.5 - parent: 1 - type: Transform - - uid: 10570 - components: - - pos: 10.5,-18.5 - parent: 1 - type: Transform - - uid: 10571 - components: - - pos: 10.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10572 - components: - - pos: 9.5,-20.5 - parent: 1 - type: Transform - - uid: 10573 - components: - - pos: 8.5,-20.5 - parent: 1 - type: Transform - - uid: 10574 - components: - - pos: 7.5,-20.5 - parent: 1 - type: Transform - - uid: 10575 - components: - - pos: 6.5,-20.5 - parent: 1 - type: Transform - - uid: 10576 - components: - - pos: 5.5,-20.5 - parent: 1 - type: Transform - - uid: 10577 - components: - - pos: 4.5,-20.5 - parent: 1 - type: Transform - - uid: 10578 - components: - - pos: 4.5,-19.5 - parent: 1 - type: Transform - - uid: 10579 - components: - - pos: 4.5,-18.5 - parent: 1 - type: Transform - - uid: 10580 - components: - - pos: 5.5,-18.5 - parent: 1 - type: Transform - - uid: 10581 - components: - - pos: 6.5,-18.5 - parent: 1 - type: Transform - - uid: 10582 - components: - - pos: 7.5,-18.5 - parent: 1 - type: Transform - - uid: 10583 - components: - - pos: 7.5,-19.5 - parent: 1 - type: Transform - - uid: 10584 - components: - - pos: 9.5,-24.5 - parent: 1 - type: Transform - - uid: 10585 - components: - - pos: 8.5,-24.5 - parent: 1 - type: Transform - - uid: 10586 - components: - - pos: 7.5,-24.5 - parent: 1 - type: Transform - - uid: 10587 - components: - - pos: 6.5,-24.5 - parent: 1 - type: Transform - - uid: 10588 - components: - - pos: 5.5,-24.5 - parent: 1 - type: Transform - - uid: 10589 - components: - - pos: 4.5,-24.5 - parent: 1 - type: Transform - - uid: 10590 - components: - - pos: 4.5,-25.5 - parent: 1 - type: Transform - - uid: 10591 - components: - - pos: 4.5,-26.5 - parent: 1 - type: Transform - - uid: 10592 - components: - - pos: 5.5,-26.5 - parent: 1 - type: Transform - - uid: 10593 - components: - - pos: 6.5,-26.5 - parent: 1 - type: Transform - - uid: 10594 - components: - - pos: 7.5,-26.5 - parent: 1 - type: Transform - - uid: 10596 - components: - - pos: 6.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10597 - components: - - pos: 6.5,-15.5 - parent: 1 - type: Transform - - uid: 10598 - components: - - pos: 6.5,-14.5 - parent: 1 - type: Transform - - uid: 10599 - components: - - pos: 6.5,-13.5 - parent: 1 - type: Transform - - uid: 10600 - components: - - pos: 6.5,-12.5 - parent: 1 - type: Transform - - uid: 10601 - components: - - pos: 6.5,-11.5 - parent: 1 - type: Transform - - uid: 10602 - components: - - pos: 5.5,-12.5 - parent: 1 - type: Transform - - uid: 10603 - components: - - pos: 4.5,-12.5 - parent: 1 - type: Transform - - uid: 10604 - components: - - pos: 3.5,-12.5 - parent: 1 - type: Transform - - uid: 10605 - components: - - pos: 2.5,-12.5 - parent: 1 - type: Transform - - uid: 10606 - components: - - pos: 1.5,-12.5 - parent: 1 - type: Transform - - uid: 10607 - components: - - pos: 0.5,-12.5 - parent: 1 - type: Transform - - uid: 10608 - components: - - pos: 7.5,-12.5 - parent: 1 - type: Transform - - uid: 10609 - components: - - pos: 8.5,-12.5 - parent: 1 - type: Transform - - uid: 10610 - components: - - pos: 9.5,-12.5 - parent: 1 - type: Transform - - uid: 10611 - components: - - pos: 10.5,-12.5 - parent: 1 - type: Transform - - uid: 10612 - components: - - pos: 11.5,-12.5 - parent: 1 - type: Transform - - uid: 10613 - components: - - pos: 12.5,-12.5 - parent: 1 - type: Transform - - uid: 10614 - components: - - pos: 13.5,-12.5 - parent: 1 - type: Transform - - uid: 10615 - components: - - pos: 13.5,-13.5 - parent: 1 - type: Transform - - uid: 10616 - components: - - pos: 13.5,-14.5 - parent: 1 - type: Transform - - uid: 10617 - components: - - pos: 13.5,-15.5 - parent: 1 - type: Transform - - uid: 10618 - components: - - pos: 12.5,-15.5 - parent: 1 - type: Transform - - uid: 10619 - components: - - pos: 11.5,-15.5 - parent: 1 - type: Transform - - uid: 10620 - components: - - pos: 10.5,-15.5 - parent: 1 - type: Transform - - uid: 10621 - components: - - pos: 9.5,-15.5 - parent: 1 - type: Transform - - uid: 10622 - components: - - pos: 8.5,-15.5 - parent: 1 - type: Transform - - uid: 10623 - components: - - pos: 7.5,-15.5 - parent: 1 - type: Transform - - uid: 10624 - components: - - pos: 6.5,-15.5 - parent: 1 - type: Transform - - uid: 10625 - components: - - pos: 5.5,-15.5 - parent: 1 - type: Transform - - uid: 10626 - components: - - pos: 4.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10627 - components: - - pos: 3.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10628 - components: - - pos: 2.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10629 - components: - - pos: 1.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10630 - components: - - pos: 0.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10648 - components: - - pos: 21.5,-11.5 - parent: 1 - type: Transform - - uid: 10649 - components: - - pos: 22.5,-11.5 - parent: 1 - type: Transform - - uid: 10651 - components: - - pos: 20.5,-11.5 - parent: 1 - type: Transform - - uid: 10652 - components: - - pos: 19.5,-11.5 - parent: 1 - type: Transform - - uid: 10653 - components: - - pos: 19.5,-12.5 - parent: 1 - type: Transform - - uid: 10654 - components: - - pos: 19.5,-13.5 - parent: 1 - type: Transform - - uid: 10655 - components: - - pos: 19.5,-14.5 - parent: 1 - type: Transform - - uid: 10656 - components: - - pos: 19.5,-15.5 - parent: 1 - type: Transform - - uid: 10657 - components: - - pos: 19.5,-16.5 - parent: 1 - type: Transform - - uid: 10658 - components: - - pos: 19.5,-17.5 - parent: 1 - type: Transform - - uid: 10659 - components: - - pos: 19.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10660 - components: - - pos: 18.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10661 - components: - - pos: 20.5,-15.5 - parent: 1 - type: Transform - - uid: 10665 - components: - - pos: 18.5,-15.5 - parent: 1 - type: Transform - - uid: 10666 - components: - - pos: 17.5,-15.5 - parent: 1 - type: Transform - - uid: 10724 - components: - - pos: -11.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10725 - components: - - pos: -11.5,-37.5 - parent: 1 - type: Transform - - uid: 10726 - components: - - pos: -12.5,-37.5 - parent: 1 - type: Transform - - uid: 10727 - components: - - pos: -13.5,-37.5 - parent: 1 - type: Transform - - uid: 10728 - components: - - pos: -13.5,-38.5 - parent: 1 - type: Transform - - uid: 10729 - components: - - pos: -13.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10730 - components: - - pos: -13.5,-40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10731 - components: - - pos: -13.5,-41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10732 - components: - - pos: -13.5,-42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10733 - components: - - pos: -13.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10734 - components: - - pos: -13.5,-44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10735 - components: - - pos: -13.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10736 - components: - - pos: -13.5,-46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10737 - components: - - pos: -13.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10738 - components: - - pos: -12.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10739 - components: - - pos: -11.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10740 - components: - - pos: -10.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10741 - components: - - pos: -9.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10742 - components: - - pos: -8.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10743 - components: - - pos: -7.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10744 - components: - - pos: -6.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10745 - components: - - pos: -5.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10746 - components: - - pos: -4.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10747 - components: - - pos: -3.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10748 - components: - - pos: -10.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10749 - components: - - pos: -9.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10750 - components: - - pos: -8.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10751 - components: - - pos: -7.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10752 - components: - - pos: -6.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10753 - components: - - pos: -5.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10754 - components: - - pos: -4.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10755 - components: - - pos: -4.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10756 - components: - - pos: -4.5,-40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10757 - components: - - pos: -4.5,-41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10758 - components: - - pos: -4.5,-37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10759 - components: - - pos: -4.5,-36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10760 - components: - - pos: -4.5,-35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10761 - components: - - pos: -4.5,-34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10762 - components: - - pos: -4.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10763 - components: - - pos: -4.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10764 - components: - - pos: -4.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10765 - components: - - pos: -4.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10766 - components: - - pos: -4.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10767 - components: - - pos: -4.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10768 - components: - - pos: -4.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10769 - components: - - pos: -4.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10770 - components: - - pos: -4.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10771 - components: - - pos: -4.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10772 - components: - - pos: -4.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10773 - components: - - pos: -4.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10774 - components: - - pos: -4.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10775 - components: - - pos: -4.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10776 - components: - - pos: -4.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10777 - components: - - pos: -4.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10778 - components: - - pos: -3.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10779 - components: - - pos: -2.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10780 - components: - - pos: -1.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10781 - components: - - pos: -0.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10782 - components: - - pos: 0.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10783 - components: - - pos: 1.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10784 - components: - - pos: 1.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10785 - components: - - pos: 1.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10786 - components: - - pos: 1.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10787 - components: - - pos: 1.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10788 - components: - - pos: 1.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10789 - components: - - pos: 1.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10790 - components: - - pos: 1.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10791 - components: - - pos: 1.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10792 - components: - - pos: 1.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10793 - components: - - pos: 1.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10794 - components: - - pos: 1.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10795 - components: - - pos: 1.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10796 - components: - - pos: 1.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10797 - components: - - pos: 1.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10798 - components: - - pos: 1.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10799 - components: - - pos: 1.5,-34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10800 - components: - - pos: 1.5,-35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10801 - components: - - pos: 1.5,-36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10802 - components: - - pos: 1.5,-37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10803 - components: - - pos: 1.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10804 - components: - - pos: 1.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10805 - components: - - pos: 1.5,-40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10806 - components: - - pos: 1.5,-41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10807 - components: - - pos: 1.5,-42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10808 - components: - - pos: -4.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10809 - components: - - pos: -4.5,-41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10810 - components: - - pos: -4.5,-40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10811 - components: - - pos: -11.5,-36.5 - parent: 1 - type: Transform - - uid: 10812 - components: - - pos: -11.5,-35.5 - parent: 1 - type: Transform - - uid: 10813 - components: - - pos: -11.5,-34.5 - parent: 1 - type: Transform - - uid: 10814 - components: - - pos: -11.5,-33.5 - parent: 1 - type: Transform - - uid: 10815 - components: - - pos: -11.5,-32.5 - parent: 1 - type: Transform - - uid: 10816 - components: - - pos: -11.5,-31.5 - parent: 1 - type: Transform - - uid: 10817 - components: - - pos: -11.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10818 - components: - - pos: -11.5,-29.5 - parent: 1 - type: Transform - - uid: 10819 - components: - - pos: -11.5,-28.5 - parent: 1 - type: Transform - - uid: 10820 - components: - - pos: -11.5,-27.5 - parent: 1 - type: Transform - - uid: 10821 - components: - - pos: -11.5,-26.5 - parent: 1 - type: Transform - - uid: 10822 - components: - - pos: -11.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10823 - components: - - pos: -11.5,-24.5 - parent: 1 - type: Transform - - uid: 10824 - components: - - pos: -11.5,-23.5 - parent: 1 - type: Transform - - uid: 10825 - components: - - pos: -11.5,-22.5 - parent: 1 - type: Transform - - uid: 10826 - components: - - pos: -11.5,-21.5 - parent: 1 - type: Transform - - uid: 10827 - components: - - pos: -7.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10828 - components: - - pos: -7.5,-15.5 - parent: 1 - type: Transform - - uid: 10829 - components: - - pos: -7.5,-14.5 - parent: 1 - type: Transform - - uid: 10830 - components: - - pos: -7.5,-13.5 - parent: 1 - type: Transform - - uid: 10831 - components: - - pos: -7.5,-12.5 - parent: 1 - type: Transform - - uid: 10832 - components: - - pos: -7.5,-11.5 - parent: 1 - type: Transform - - uid: 10833 - components: - - pos: -6.5,-15.5 - parent: 1 - type: Transform - - uid: 10834 - components: - - pos: -5.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10835 - components: - - pos: -4.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10836 - components: - - pos: -3.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10837 - components: - - pos: -2.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10838 - components: - - pos: -1.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10839 - components: - - pos: -6.5,-12.5 - parent: 1 - type: Transform - - uid: 10840 - components: - - pos: -5.5,-12.5 - parent: 1 - type: Transform - - uid: 10841 - components: - - pos: -4.5,-12.5 - parent: 1 - type: Transform - - uid: 10842 - components: - - pos: -3.5,-12.5 - parent: 1 - type: Transform - - uid: 10843 - components: - - pos: -2.5,-12.5 - parent: 1 - type: Transform - - uid: 10844 - components: - - pos: -1.5,-12.5 - parent: 1 - type: Transform - - uid: 10845 - components: - - pos: -8.5,-12.5 - parent: 1 - type: Transform - - uid: 10846 - components: - - pos: -9.5,-12.5 - parent: 1 - type: Transform - - uid: 10847 - components: - - pos: -10.5,-12.5 - parent: 1 - type: Transform - - uid: 10848 - components: - - pos: -11.5,-12.5 - parent: 1 - type: Transform - - uid: 10849 - components: - - pos: -12.5,-12.5 - parent: 1 - type: Transform - - uid: 10850 - components: - - pos: -13.5,-12.5 - parent: 1 - type: Transform - - uid: 10851 - components: - - pos: -14.5,-12.5 - parent: 1 - type: Transform - - uid: 10852 - components: - - pos: -14.5,-13.5 - parent: 1 - type: Transform - - uid: 10853 - components: - - pos: -14.5,-14.5 - parent: 1 - type: Transform - - uid: 10854 - components: - - pos: -14.5,-15.5 - parent: 1 - type: Transform - - uid: 10855 - components: - - pos: -13.5,-15.5 - parent: 1 - type: Transform - - uid: 10856 - components: - - pos: -12.5,-15.5 - parent: 1 - type: Transform - - uid: 10857 - components: - - pos: -11.5,-15.5 - parent: 1 - type: Transform - - uid: 10858 - components: - - pos: -10.5,-15.5 - parent: 1 - type: Transform - - uid: 10859 - components: - - pos: -9.5,-15.5 - parent: 1 - type: Transform - - uid: 10860 - components: - - pos: -8.5,-15.5 - parent: 1 - type: Transform - - uid: 10861 - components: - - pos: -12.5,-16.5 - parent: 1 - type: Transform - - uid: 10862 - components: - - pos: -12.5,-17.5 - parent: 1 - type: Transform - - uid: 10863 - components: - - pos: -12.5,-18.5 - parent: 1 - type: Transform - - uid: 10864 - components: - - pos: -12.5,-19.5 - parent: 1 - type: Transform - - uid: 10865 - components: - - pos: -13.5,-18.5 - parent: 1 - type: Transform - - uid: 10866 - components: - - pos: -14.5,-18.5 - parent: 1 - type: Transform - - uid: 10867 - components: - - pos: -11.5,-18.5 - parent: 1 - type: Transform - - uid: 10868 - components: - - pos: -10.5,-18.5 - parent: 1 - type: Transform - - uid: 10971 - components: - - pos: -24.5,36.5 - parent: 1 - type: Transform - - uid: 10992 - components: - - pos: 44.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10993 - components: - - pos: 45.5,-6.5 - parent: 1 - type: Transform - - uid: 10994 - components: - - pos: 46.5,-6.5 - parent: 1 - type: Transform - - uid: 10995 - components: - - pos: 47.5,-6.5 - parent: 1 - type: Transform - - uid: 10996 - components: - - pos: 48.5,-6.5 - parent: 1 - type: Transform - - uid: 10997 - components: - - pos: 49.5,-6.5 - parent: 1 - type: Transform - - uid: 10998 - components: - - pos: 49.5,-7.5 - parent: 1 - type: Transform - - uid: 11001 - components: - - pos: 49.5,-8.5 - parent: 1 - type: Transform - - uid: 11002 - components: - - pos: 49.5,-9.5 - parent: 1 - type: Transform - - uid: 11005 - components: - - pos: 48.5,-9.5 - parent: 1 - type: Transform - - uid: 11006 - components: - - pos: 47.5,-9.5 - parent: 1 - type: Transform - - uid: 11007 - components: - - pos: 46.5,-9.5 - parent: 1 - type: Transform - - uid: 11008 - components: - - pos: 45.5,-9.5 - parent: 1 - type: Transform - - uid: 11009 - components: - - pos: 44.5,-9.5 - parent: 1 - type: Transform - - uid: 11010 - components: - - pos: 43.5,-9.5 - parent: 1 - type: Transform - - uid: 11011 - components: - - pos: 42.5,-9.5 - parent: 1 - type: Transform - - uid: 11012 - components: - - pos: 41.5,-9.5 - parent: 1 - type: Transform - - uid: 11013 - components: - - pos: 40.5,-9.5 - parent: 1 - type: Transform - - uid: 11014 - components: - - pos: 39.5,-9.5 - parent: 1 - type: Transform - - uid: 11015 - components: - - pos: 38.5,-9.5 - parent: 1 - type: Transform - - uid: 11016 - components: - - pos: 37.5,-9.5 - parent: 1 - type: Transform - - uid: 11017 - components: - - pos: 36.5,-9.5 - parent: 1 - type: Transform - - uid: 11018 - components: - - pos: 35.5,-9.5 - parent: 1 - type: Transform - - uid: 11019 - components: - - pos: 34.5,-9.5 - parent: 1 - type: Transform - - uid: 11020 - components: - - pos: 33.5,-9.5 - parent: 1 - type: Transform - - uid: 11021 - components: - - pos: 33.5,-8.5 - parent: 1 - type: Transform - - uid: 11022 - components: - - pos: 33.5,-7.5 - parent: 1 - type: Transform - - uid: 11023 - components: - - pos: 34.5,-7.5 - parent: 1 - type: Transform - - uid: 11024 - components: - - pos: 35.5,-7.5 - parent: 1 - type: Transform - - uid: 11025 - components: - - pos: 36.5,-7.5 - parent: 1 - type: Transform - - uid: 11026 - components: - - pos: 37.5,-7.5 - parent: 1 - type: Transform - - uid: 11027 - components: - - pos: 38.5,-7.5 - parent: 1 - type: Transform - - uid: 11028 - components: - - pos: 39.5,-7.5 - parent: 1 - type: Transform - - uid: 11029 - components: - - pos: 40.5,-7.5 - parent: 1 - type: Transform - - uid: 11030 - components: - - pos: 41.5,-7.5 - parent: 1 - type: Transform - - uid: 11031 - components: - - pos: 42.5,-7.5 - parent: 1 - type: Transform - - uid: 11032 - components: - - pos: 43.5,-7.5 - parent: 1 - type: Transform - - uid: 11033 - components: - - pos: 44.5,-7.5 - parent: 1 - type: Transform - - uid: 11110 - components: - - pos: 23.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11111 - components: - - pos: 22.5,-3.5 - parent: 1 - type: Transform - - uid: 11112 - components: - - pos: 21.5,-3.5 - parent: 1 - type: Transform - - uid: 11113 - components: - - pos: 20.5,-3.5 - parent: 1 - type: Transform - - uid: 11114 - components: - - pos: 19.5,-3.5 - parent: 1 - type: Transform - - uid: 11115 - components: - - pos: 18.5,-3.5 - parent: 1 - type: Transform - - uid: 11116 - components: - - pos: 17.5,-3.5 - parent: 1 - type: Transform - - uid: 11117 - components: - - pos: 16.5,-3.5 - parent: 1 - type: Transform - - uid: 11118 - components: - - pos: 18.5,-2.5 - parent: 1 - type: Transform - - uid: 11119 - components: - - pos: 18.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11120 - components: - - pos: 18.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11121 - components: - - pos: 18.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11122 - components: - - pos: 18.5,1.5 - parent: 1 - type: Transform - - uid: 11123 - components: - - pos: 18.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11124 - components: - - pos: 18.5,-4.5 - parent: 1 - type: Transform - - uid: 11125 - components: - - pos: 18.5,-5.5 - parent: 1 - type: Transform - - uid: 11126 - components: - - pos: 19.5,-5.5 - parent: 1 - type: Transform - - uid: 11127 - components: - - pos: 19.5,-6.5 - parent: 1 - type: Transform - - uid: 11128 - components: - - pos: 19.5,-7.5 - parent: 1 - type: Transform - - uid: 11129 - components: - - pos: 19.5,-8.5 - parent: 1 - type: Transform - - uid: 11130 - components: - - pos: 19.5,-9.5 - parent: 1 - type: Transform - - uid: 11131 - components: - - pos: 20.5,-9.5 - parent: 1 - type: Transform - - uid: 11132 - components: - - pos: 21.5,-9.5 - parent: 1 - type: Transform - - uid: 11133 - components: - - pos: 22.5,-9.5 - parent: 1 - type: Transform - - uid: 11134 - components: - - pos: 23.5,-9.5 - parent: 1 - type: Transform - - uid: 11135 - components: - - pos: 24.5,-9.5 - parent: 1 - type: Transform - - uid: 11136 - components: - - pos: 25.5,-9.5 - parent: 1 - type: Transform - - uid: 11137 - components: - - pos: 26.5,-9.5 - parent: 1 - type: Transform - - uid: 11138 - components: - - pos: 27.5,-9.5 - parent: 1 - type: Transform - - uid: 11139 - components: - - pos: 28.5,-9.5 - parent: 1 - type: Transform - - uid: 11140 - components: - - pos: 29.5,-9.5 - parent: 1 - type: Transform - - uid: 11141 - components: - - pos: 30.5,-9.5 - parent: 1 - type: Transform - - uid: 11142 - components: - - pos: 31.5,-9.5 - parent: 1 - type: Transform - - uid: 11143 - components: - - pos: 31.5,-8.5 - parent: 1 - type: Transform - - uid: 11144 - components: - - pos: 31.5,-7.5 - parent: 1 - type: Transform - - uid: 11145 - components: - - pos: 31.5,-6.5 - parent: 1 - type: Transform - - uid: 11146 - components: - - pos: 31.5,-5.5 - parent: 1 - type: Transform - - uid: 11147 - components: - - pos: 31.5,-4.5 - parent: 1 - type: Transform - - uid: 11148 - components: - - pos: 31.5,-3.5 - parent: 1 - type: Transform - - uid: 11149 - components: - - pos: 31.5,-2.5 - parent: 1 - type: Transform - - uid: 11150 - components: - - pos: 31.5,-1.5 - parent: 1 - type: Transform - - uid: 11151 - components: - - pos: 31.5,-0.5 - parent: 1 - type: Transform - - uid: 11152 - components: - - pos: 31.5,0.5 - parent: 1 - type: Transform - - uid: 11153 - components: - - pos: 32.5,0.5 - parent: 1 - type: Transform - - uid: 11154 - components: - - pos: 33.5,0.5 - parent: 1 - type: Transform - - uid: 11155 - components: - - pos: 34.5,0.5 - parent: 1 - type: Transform - - uid: 11156 - components: - - pos: 25.5,-8.5 - parent: 1 - type: Transform - - uid: 11157 - components: - - pos: 25.5,-7.5 - parent: 1 - type: Transform - - uid: 11158 - components: - - pos: 25.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11159 - components: - - pos: 25.5,-5.5 - parent: 1 - type: Transform - - uid: 11160 - components: - - pos: 25.5,-4.5 - parent: 1 - type: Transform - - uid: 11161 - components: - - pos: 25.5,-3.5 - parent: 1 - type: Transform - - uid: 11162 - components: - - pos: 24.5,-3.5 - parent: 1 - type: Transform - - uid: 11163 - components: - - pos: 25.5,-2.5 - parent: 1 - type: Transform - - uid: 11164 - components: - - pos: 25.5,-1.5 - parent: 1 - type: Transform - - uid: 11165 - components: - - pos: 25.5,-0.5 - parent: 1 - type: Transform - - uid: 11166 - components: - - pos: 25.5,0.5 - parent: 1 - type: Transform - - uid: 11167 - components: - - pos: 26.5,0.5 - parent: 1 - type: Transform - - uid: 11168 - components: - - pos: 27.5,0.5 - parent: 1 - type: Transform - - uid: 11169 - components: - - pos: 27.5,-0.5 - parent: 1 - type: Transform - - uid: 11170 - components: - - pos: 27.5,-1.5 - parent: 1 - type: Transform - - uid: 11171 - components: - - pos: 27.5,-2.5 - parent: 1 - type: Transform - - uid: 11172 - components: - - pos: 27.5,-3.5 - parent: 1 - type: Transform - - uid: 11173 - components: - - pos: 27.5,-4.5 - parent: 1 - type: Transform - - uid: 11174 - components: - - pos: 27.5,-5.5 - parent: 1 - type: Transform - - uid: 11175 - components: - - pos: 26.5,-5.5 - parent: 1 - type: Transform - - uid: 11176 - components: - - pos: 22.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11177 - components: - - pos: 23.5,5.5 - parent: 1 - type: Transform - - uid: 11178 - components: - - pos: 24.5,5.5 - parent: 1 - type: Transform - - uid: 11179 - components: - - pos: 25.5,5.5 - parent: 1 - type: Transform - - uid: 11180 - components: - - pos: 25.5,4.5 - parent: 1 - type: Transform - - uid: 11181 - components: - - pos: 25.5,3.5 - parent: 1 - type: Transform - - uid: 11182 - components: - - pos: 25.5,2.5 - parent: 1 - type: Transform - - uid: 11183 - components: - - pos: 24.5,2.5 - parent: 1 - type: Transform - - uid: 11184 - components: - - pos: 23.5,2.5 - parent: 1 - type: Transform - - uid: 11185 - components: - - pos: 22.5,2.5 - parent: 1 - type: Transform - - uid: 11186 - components: - - pos: 21.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11187 - components: - - pos: 21.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11188 - components: - - pos: 21.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11189 - components: - - pos: 21.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11190 - components: - - pos: 21.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11191 - components: - - pos: 21.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11192 - components: - - pos: 21.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11193 - components: - - pos: 20.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11194 - components: - - pos: 19.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11195 - components: - - pos: 18.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11196 - components: - - pos: 18.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11197 - components: - - pos: 18.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11198 - components: - - pos: 18.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11199 - components: - - pos: 21.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11200 - components: - - pos: 23.5,6.5 - parent: 1 - type: Transform - - uid: 11201 - components: - - pos: 23.5,7.5 - parent: 1 - type: Transform - - uid: 11202 - components: - - pos: 23.5,8.5 - parent: 1 - type: Transform - - uid: 11203 - components: - - pos: 23.5,9.5 - parent: 1 - type: Transform - - uid: 11204 - components: - - pos: 23.5,10.5 - parent: 1 - type: Transform - - uid: 11205 - components: - - pos: 24.5,10.5 - parent: 1 - type: Transform - - uid: 11206 - components: - - pos: 25.5,10.5 - parent: 1 - type: Transform - - uid: 11207 - components: - - pos: 26.5,10.5 - parent: 1 - type: Transform - - uid: 11208 - components: - - pos: 27.5,10.5 - parent: 1 - type: Transform - - uid: 11209 - components: - - pos: 28.5,10.5 - parent: 1 - type: Transform - - uid: 11210 - components: - - pos: 29.5,10.5 - parent: 1 - type: Transform - - uid: 11211 - components: - - pos: 30.5,10.5 - parent: 1 - type: Transform - - uid: 11212 - components: - - pos: 31.5,10.5 - parent: 1 - type: Transform - - uid: 11213 - components: - - pos: 32.5,10.5 - parent: 1 - type: Transform - - uid: 11214 - components: - - pos: 32.5,9.5 - parent: 1 - type: Transform - - uid: 11215 - components: - - pos: 32.5,8.5 - parent: 1 - type: Transform - - uid: 11216 - components: - - pos: 32.5,7.5 - parent: 1 - type: Transform - - uid: 11218 - components: - - pos: 32.5,5.5 - parent: 1 - type: Transform - - uid: 11219 - components: - - pos: 32.5,4.5 - parent: 1 - type: Transform - - uid: 11220 - components: - - pos: 32.5,3.5 - parent: 1 - type: Transform - - uid: 11221 - components: - - pos: 33.5,3.5 - parent: 1 - type: Transform - - uid: 11222 - components: - - pos: 34.5,3.5 - parent: 1 - type: Transform - - uid: 11223 - components: - - pos: 31.5,3.5 - parent: 1 - type: Transform - - uid: 11224 - components: - - pos: 30.5,3.5 - parent: 1 - type: Transform - - uid: 11225 - components: - - pos: 29.5,3.5 - parent: 1 - type: Transform - - uid: 11226 - components: - - pos: 28.5,3.5 - parent: 1 - type: Transform - - uid: 11227 - components: - - pos: 27.5,3.5 - parent: 1 - type: Transform - - uid: 11228 - components: - - pos: 26.5,3.5 - parent: 1 - type: Transform - - uid: 11229 - components: - - pos: 25.5,3.5 - parent: 1 - type: Transform - - uid: 11230 - components: - - pos: 26.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11231 - components: - - pos: 26.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11232 - components: - - pos: 26.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11233 - components: - - pos: 24.5,3.5 - parent: 1 - type: Transform - - uid: 11234 - components: - - pos: 23.5,3.5 - parent: 1 - type: Transform - - uid: 11245 - components: - - pos: 16.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11246 - components: - - pos: 15.5,9.5 - parent: 1 - type: Transform - - uid: 11247 - components: - - pos: 14.5,9.5 - parent: 1 - type: Transform - - uid: 11248 - components: - - pos: 13.5,9.5 - parent: 1 - type: Transform - - uid: 11249 - components: - - pos: 12.5,9.5 - parent: 1 - type: Transform - - uid: 11250 - components: - - pos: 11.5,9.5 - parent: 1 - type: Transform - - uid: 11251 - components: - - pos: 10.5,9.5 - parent: 1 - type: Transform - - uid: 11252 - components: - - pos: 9.5,9.5 - parent: 1 - type: Transform - - uid: 11253 - components: - - pos: 8.5,9.5 - parent: 1 - type: Transform - - uid: 11254 - components: - - pos: 7.5,9.5 - parent: 1 - type: Transform - - uid: 11255 - components: - - pos: 6.5,9.5 - parent: 1 - type: Transform - - uid: 11256 - components: - - pos: 5.5,9.5 - parent: 1 - type: Transform - - uid: 11257 - components: - - pos: 5.5,10.5 - parent: 1 - type: Transform - - uid: 11258 - components: - - pos: 5.5,11.5 - parent: 1 - type: Transform - - uid: 11259 - components: - - pos: 6.5,11.5 - parent: 1 - type: Transform - - uid: 11260 - components: - - pos: 7.5,11.5 - parent: 1 - type: Transform - - uid: 11261 - components: - - pos: 8.5,11.5 - parent: 1 - type: Transform - - uid: 11262 - components: - - pos: 9.5,11.5 - parent: 1 - type: Transform - - uid: 11263 - components: - - pos: 10.5,11.5 - parent: 1 - type: Transform - - uid: 11264 - components: - - pos: 11.5,11.5 - parent: 1 - type: Transform - - uid: 11265 - components: - - pos: 11.5,10.5 - parent: 1 - type: Transform - - uid: 11266 - components: - - pos: 11.5,8.5 - parent: 1 - type: Transform - - uid: 11267 - components: - - pos: 11.5,7.5 - parent: 1 - type: Transform - - uid: 11268 - components: - - pos: 11.5,6.5 - parent: 1 - type: Transform - - uid: 11269 - components: - - pos: 11.5,5.5 - parent: 1 - type: Transform - - uid: 11270 - components: - - pos: 11.5,4.5 - parent: 1 - type: Transform - - uid: 11271 - components: - - pos: 11.5,3.5 - parent: 1 - type: Transform - - uid: 11272 - components: - - pos: 10.5,5.5 - parent: 1 - type: Transform - - uid: 11273 - components: - - pos: 9.5,5.5 - parent: 1 - type: Transform - - uid: 11274 - components: - - pos: 8.5,5.5 - parent: 1 - type: Transform - - uid: 11275 - components: - - pos: 7.5,5.5 - parent: 1 - type: Transform - - uid: 11276 - components: - - pos: 6.5,5.5 - parent: 1 - type: Transform - - uid: 11277 - components: - - pos: 5.5,5.5 - parent: 1 - type: Transform - - uid: 11278 - components: - - pos: 5.5,6.5 - parent: 1 - type: Transform - - uid: 11279 - components: - - pos: 5.5,7.5 - parent: 1 - type: Transform - - uid: 11280 - components: - - pos: 5.5,8.5 - parent: 1 - type: Transform - - uid: 11289 - components: - - pos: 13.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11290 - components: - - pos: 14.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11291 - components: - - pos: 14.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11292 - components: - - pos: 14.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11293 - components: - - pos: 14.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11294 - components: - - pos: 14.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11295 - components: - - pos: 14.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11296 - components: - - pos: 14.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11297 - components: - - pos: 14.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11298 - components: - - pos: 14.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11299 - components: - - pos: 15.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11300 - components: - - pos: 16.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11301 - components: - - pos: 17.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11302 - components: - - pos: 18.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11303 - components: - - pos: 14.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11304 - components: - - pos: 14.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11305 - components: - - pos: 14.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11306 - components: - - pos: 15.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11307 - components: - - pos: 12.5,-1.5 - parent: 1 - type: Transform - - uid: 11308 - components: - - pos: 11.5,-1.5 - parent: 1 - type: Transform - - uid: 11309 - components: - - pos: 10.5,-1.5 - parent: 1 - type: Transform - - uid: 11310 - components: - - pos: 9.5,-1.5 - parent: 1 - type: Transform - - uid: 11311 - components: - - pos: 8.5,-1.5 - parent: 1 - type: Transform - - uid: 11312 - components: - - pos: 7.5,-1.5 - parent: 1 - type: Transform - - uid: 11313 - components: - - pos: 6.5,-1.5 - parent: 1 - type: Transform - - uid: 11314 - components: - - pos: 5.5,-1.5 - parent: 1 - type: Transform - - uid: 11315 - components: - - pos: 5.5,-0.5 - parent: 1 - type: Transform - - uid: 11316 - components: - - pos: 5.5,0.5 - parent: 1 - type: Transform - - uid: 11317 - components: - - pos: 5.5,1.5 - parent: 1 - type: Transform - - uid: 11318 - components: - - pos: 5.5,2.5 - parent: 1 - type: Transform - - uid: 11319 - components: - - pos: 6.5,2.5 - parent: 1 - type: Transform - - uid: 11320 - components: - - pos: 7.5,2.5 - parent: 1 - type: Transform - - uid: 11321 - components: - - pos: 8.5,2.5 - parent: 1 - type: Transform - - uid: 11322 - components: - - pos: 8.5,1.5 - parent: 1 - type: Transform - - uid: 11323 - components: - - pos: 8.5,0.5 - parent: 1 - type: Transform - - uid: 11324 - components: - - pos: 8.5,-0.5 - parent: 1 - type: Transform - - uid: 11325 - components: - - pos: 11.5,-0.5 - parent: 1 - type: Transform - - uid: 11326 - components: - - pos: 11.5,0.5 - parent: 1 - type: Transform - - uid: 11327 - components: - - pos: 11.5,1.5 - parent: 1 - type: Transform - - uid: 11328 - components: - - pos: 11.5,-2.5 - parent: 1 - type: Transform - - uid: 11329 - components: - - pos: 11.5,-3.5 - parent: 1 - type: Transform - - uid: 11330 - components: - - pos: 11.5,-4.5 - parent: 1 - type: Transform - - uid: 11331 - components: - - pos: 10.5,-4.5 - parent: 1 - type: Transform - - uid: 11332 - components: - - pos: 9.5,-4.5 - parent: 1 - type: Transform - - uid: 11333 - components: - - pos: 8.5,-4.5 - parent: 1 - type: Transform - - uid: 11334 - components: - - pos: 7.5,-4.5 - parent: 1 - type: Transform - - uid: 11335 - components: - - pos: 6.5,-4.5 - parent: 1 - type: Transform - - uid: 11336 - components: - - pos: 5.5,-4.5 - parent: 1 - type: Transform - - uid: 11337 - components: - - pos: 5.5,-3.5 - parent: 1 - type: Transform - - uid: 11338 - components: - - pos: 5.5,-2.5 - parent: 1 - type: Transform - - uid: 11425 - components: - - pos: 6.5,75.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11426 - components: - - pos: 6.5,74.5 - parent: 1 - type: Transform - - uid: 11427 - components: - - pos: 6.5,73.5 - parent: 1 - type: Transform - - uid: 11428 - components: - - pos: 6.5,72.5 - parent: 1 - type: Transform - - uid: 11429 - components: - - pos: 6.5,71.5 - parent: 1 - type: Transform - - uid: 11430 - components: - - pos: 6.5,70.5 - parent: 1 - type: Transform - - uid: 11431 - components: - - pos: 7.5,74.5 - parent: 1 - type: Transform - - uid: 11432 - components: - - pos: 8.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11433 - components: - - pos: 8.5,73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11434 - components: - - pos: 8.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11435 - components: - - pos: 5.5,74.5 - parent: 1 - type: Transform - - uid: 11436 - components: - - pos: 4.5,74.5 - parent: 1 - type: Transform - - uid: 11437 - components: - - pos: 3.5,74.5 - parent: 1 - type: Transform - - uid: 11438 - components: - - pos: 2.5,74.5 - parent: 1 - type: Transform - - uid: 11439 - components: - - pos: 1.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11440 - components: - - pos: 2.5,75.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11441 - components: - - pos: 3.5,75.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11442 - components: - - pos: 1.5,73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11443 - components: - - pos: 1.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11444 - components: - - pos: 1.5,71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11445 - components: - - pos: 1.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11446 - components: - - pos: 1.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11447 - components: - - pos: 2.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11448 - components: - - pos: 3.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11449 - components: - - pos: 4.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11450 - components: - - pos: 5.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11451 - components: - - pos: 6.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11452 - components: - - pos: 7.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11453 - components: - - pos: 8.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11454 - components: - - pos: 8.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11455 - components: - - pos: 8.5,71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11456 - components: - - pos: 8.5,68.5 - parent: 1 - type: Transform - - uid: 11457 - components: - - pos: 9.5,68.5 - parent: 1 - type: Transform - - uid: 11458 - components: - - pos: 10.5,68.5 - parent: 1 - type: Transform - - uid: 11459 - components: - - pos: 11.5,68.5 - parent: 1 - type: Transform - - uid: 11460 - components: - - pos: 12.5,68.5 - parent: 1 - type: Transform - - uid: 11461 - components: - - pos: 12.5,69.5 - parent: 1 - type: Transform - - uid: 11462 - components: - - pos: 12.5,70.5 - parent: 1 - type: Transform - - uid: 11463 - components: - - pos: 12.5,67.5 - parent: 1 - type: Transform - - uid: 11464 - components: - - pos: 12.5,66.5 - parent: 1 - type: Transform - - uid: 11465 - components: - - pos: 7.5,68.5 - parent: 1 - type: Transform - - uid: 11466 - components: - - pos: 6.5,68.5 - parent: 1 - type: Transform - - uid: 11467 - components: - - pos: 5.5,68.5 - parent: 1 - type: Transform - - uid: 11468 - components: - - pos: 4.5,68.5 - parent: 1 - type: Transform - - uid: 11469 - components: - - pos: 3.5,68.5 - parent: 1 - type: Transform - - uid: 11470 - components: - - pos: 2.5,68.5 - parent: 1 - type: Transform - - uid: 11471 - components: - - pos: 1.5,68.5 - parent: 1 - type: Transform - - uid: 11472 - components: - - pos: 0.5,68.5 - parent: 1 - type: Transform - - uid: 11473 - components: - - pos: -0.5,68.5 - parent: 1 - type: Transform - - uid: 11474 - components: - - pos: -1.5,68.5 - parent: 1 - type: Transform - - uid: 11475 - components: - - pos: -1.5,69.5 - parent: 1 - type: Transform - - uid: 11476 - components: - - pos: -1.5,70.5 - parent: 1 - type: Transform - - uid: 11477 - components: - - pos: -1.5,71.5 - parent: 1 - type: Transform - - uid: 11478 - components: - - pos: -1.5,72.5 - parent: 1 - type: Transform - - uid: 11479 - components: - - pos: -1.5,73.5 - parent: 1 - type: Transform - - uid: 11480 - components: - - pos: -1.5,74.5 - parent: 1 - type: Transform - - uid: 11481 - components: - - pos: 0.5,69.5 - parent: 1 - type: Transform - - uid: 11482 - components: - - pos: 0.5,70.5 - parent: 1 - type: Transform - - uid: 11483 - components: - - pos: 0.5,71.5 - parent: 1 - type: Transform - - uid: 11484 - components: - - pos: 0.5,72.5 - parent: 1 - type: Transform - - uid: 11485 - components: - - pos: 0.5,73.5 - parent: 1 - type: Transform - - uid: 11486 - components: - - pos: 0.5,74.5 - parent: 1 - type: Transform - - uid: 11487 - components: - - pos: -3.5,75.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11488 - components: - - pos: -3.5,76.5 - parent: 1 - type: Transform - - uid: 11489 - components: - - pos: 0.5,77.5 - parent: 1 - type: Transform - - uid: 11490 - components: - - pos: 1.5,77.5 - parent: 1 - type: Transform - - uid: 11491 - components: - - pos: 2.5,77.5 - parent: 1 - type: Transform - - uid: 11492 - components: - - pos: 3.5,77.5 - parent: 1 - type: Transform - - uid: 11493 - components: - - pos: 4.5,77.5 - parent: 1 - type: Transform - - uid: 11494 - components: - - pos: 5.5,77.5 - parent: 1 - type: Transform - - uid: 11495 - components: - - pos: -0.5,77.5 - parent: 1 - type: Transform - - uid: 11496 - components: - - pos: -1.5,77.5 - parent: 1 - type: Transform - - uid: 11497 - components: - - pos: -2.5,77.5 - parent: 1 - type: Transform - - uid: 11498 - components: - - pos: -3.5,77.5 - parent: 1 - type: Transform - - uid: 11499 - components: - - pos: 7.5,76.5 - parent: 1 - type: Transform - - uid: 11500 - components: - - pos: 6.5,77.5 - parent: 1 - type: Transform - - uid: 11501 - components: - - pos: -4.5,77.5 - parent: 1 - type: Transform - - uid: 11502 - components: - - pos: -5.5,77.5 - parent: 1 - type: Transform - - uid: 11503 - components: - - pos: -6.5,77.5 - parent: 1 - type: Transform - - uid: 11504 - components: - - pos: -7.5,77.5 - parent: 1 - type: Transform - - uid: 11505 - components: - - pos: -8.5,77.5 - parent: 1 - type: Transform - - uid: 11506 - components: - - pos: -5.5,78.5 - parent: 1 - type: Transform - - uid: 11507 - components: - - pos: -5.5,79.5 - parent: 1 - type: Transform - - uid: 11508 - components: - - pos: -5.5,80.5 - parent: 1 - type: Transform - - uid: 11509 - components: - - pos: -5.5,81.5 - parent: 1 - type: Transform - - uid: 11510 - components: - - pos: -5.5,82.5 - parent: 1 - type: Transform - - uid: 11511 - components: - - pos: 4.5,78.5 - parent: 1 - type: Transform - - uid: 11512 - components: - - pos: 4.5,79.5 - parent: 1 - type: Transform - - uid: 11513 - components: - - pos: 4.5,80.5 - parent: 1 - type: Transform - - uid: 11514 - components: - - pos: 4.5,81.5 - parent: 1 - type: Transform - - uid: 11515 - components: - - pos: 4.5,82.5 - parent: 1 - type: Transform - - uid: 11516 - components: - - pos: 3.5,81.5 - parent: 1 - type: Transform - - uid: 11517 - components: - - pos: 2.5,81.5 - parent: 1 - type: Transform - - uid: 11518 - components: - - pos: 1.5,81.5 - parent: 1 - type: Transform - - uid: 11519 - components: - - pos: 0.5,81.5 - parent: 1 - type: Transform - - uid: 11520 - components: - - pos: -0.5,81.5 - parent: 1 - type: Transform - - uid: 11521 - components: - - pos: -1.5,81.5 - parent: 1 - type: Transform - - uid: 11522 - components: - - pos: -2.5,81.5 - parent: 1 - type: Transform - - uid: 11523 - components: - - pos: -3.5,81.5 - parent: 1 - type: Transform - - uid: 11524 - components: - - pos: -4.5,81.5 - parent: 1 - type: Transform - - uid: 11525 - components: - - pos: -0.5,82.5 - parent: 1 - type: Transform - - uid: 11526 - components: - - pos: -0.5,83.5 - parent: 1 - type: Transform - - uid: 11527 - components: - - pos: -0.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11528 - components: - - pos: -1.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11529 - components: - - pos: -2.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11530 - components: - - pos: -3.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11531 - components: - - pos: 0.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11532 - components: - - pos: 1.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11533 - components: - - pos: 2.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11534 - components: - - pos: -4.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11535 - components: - - pos: -5.5,74.5 - parent: 1 - type: Transform - - uid: 11536 - components: - - pos: -6.5,74.5 - parent: 1 - type: Transform - - uid: 11537 - components: - - pos: -7.5,74.5 - parent: 1 - type: Transform - - uid: 11538 - components: - - pos: -8.5,74.5 - parent: 1 - type: Transform - - uid: 11539 - components: - - pos: -8.5,73.5 - parent: 1 - type: Transform - - uid: 11540 - components: - - pos: -8.5,72.5 - parent: 1 - type: Transform - - uid: 11541 - components: - - pos: -8.5,71.5 - parent: 1 - type: Transform - - uid: 11542 - components: - - pos: -8.5,70.5 - parent: 1 - type: Transform - - uid: 11543 - components: - - pos: -8.5,69.5 - parent: 1 - type: Transform - - uid: 11544 - components: - - pos: -9.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11545 - components: - - pos: -10.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11546 - components: - - pos: -10.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11547 - components: - - pos: -7.5,72.5 - parent: 1 - type: Transform - - uid: 11548 - components: - - pos: -6.5,72.5 - parent: 1 - type: Transform - - uid: 11549 - components: - - pos: -5.5,72.5 - parent: 1 - type: Transform - - uid: 11550 - components: - - pos: -5.5,73.5 - parent: 1 - type: Transform - - uid: 11611 - components: - - pos: -30.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11612 - components: - - pos: -30.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11613 - components: - - pos: -31.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11614 - components: - - pos: -32.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11615 - components: - - pos: -33.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11616 - components: - - pos: -34.5,56.5 - parent: 1 - type: Transform - - uid: 11617 - components: - - pos: -35.5,56.5 - parent: 1 - type: Transform - - uid: 11618 - components: - - pos: -35.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11619 - components: - - pos: -35.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11620 - components: - - pos: -35.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11621 - components: - - pos: -35.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11622 - components: - - pos: -34.5,52.5 - parent: 1 - type: Transform - - uid: 11623 - components: - - pos: -33.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11624 - components: - - pos: -32.5,52.5 - parent: 1 - type: Transform - - uid: 11625 - components: - - pos: -31.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11626 - components: - - pos: -30.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11627 - components: - - pos: -29.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11628 - components: - - pos: -28.5,52.5 - parent: 1 - type: Transform - - uid: 11629 - components: - - pos: -27.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11630 - components: - - pos: -27.5,53.5 - parent: 1 - type: Transform - - uid: 11631 - components: - - pos: -27.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11632 - components: - - pos: -27.5,55.5 - parent: 1 - type: Transform - - uid: 11633 - components: - - pos: -27.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11634 - components: - - pos: -28.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11635 - components: - - pos: -29.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11636 - components: - - pos: -27.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11637 - components: - - pos: -26.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11638 - components: - - pos: -25.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11639 - components: - - pos: -24.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11640 - components: - - pos: -24.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11641 - components: - - pos: -24.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11642 - components: - - pos: -24.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11643 - components: - - pos: -24.5,53.5 - parent: 1 - type: Transform - - uid: 11644 - components: - - pos: -24.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11645 - components: - - pos: -24.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11646 - components: - - pos: -36.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11647 - components: - - pos: -37.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11648 - components: - - pos: -38.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11649 - components: - - pos: -38.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11650 - components: - - pos: -38.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11651 - components: - - pos: -38.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11652 - components: - - pos: -42.5,44.5 - parent: 1 - type: Transform - - uid: 11653 - components: - - pos: -43.5,44.5 - parent: 1 - type: Transform - - uid: 11654 - components: - - pos: -43.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11655 - components: - - pos: -43.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11656 - components: - - pos: -43.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11657 - components: - - pos: -43.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11658 - components: - - pos: -43.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11659 - components: - - pos: -43.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11660 - components: - - pos: -43.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11661 - components: - - pos: -42.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11662 - components: - - pos: -41.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11663 - components: - - pos: -44.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11665 - components: - - pos: -46.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11666 - components: - - pos: -47.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11667 - components: - - pos: -42.5,43.5 - parent: 1 - type: Transform - - uid: 11668 - components: - - pos: -43.5,43.5 - parent: 1 - type: Transform - - uid: 11669 - components: - - pos: -44.5,43.5 - parent: 1 - type: Transform - - uid: 11670 - components: - - pos: -45.5,43.5 - parent: 1 - type: Transform - - uid: 11671 - components: - - pos: -46.5,43.5 - parent: 1 - type: Transform - - uid: 11672 - components: - - pos: -47.5,43.5 - parent: 1 - type: Transform - - uid: 11673 - components: - - pos: -48.5,43.5 - parent: 1 - type: Transform - - uid: 11674 - components: - - pos: -49.5,43.5 - parent: 1 - type: Transform - - uid: 11675 - components: - - pos: -49.5,42.5 - parent: 1 - type: Transform - - uid: 11676 - components: - - pos: -49.5,41.5 - parent: 1 - type: Transform - - uid: 11677 - components: - - pos: -49.5,40.5 - parent: 1 - type: Transform - - uid: 11678 - components: - - pos: -49.5,39.5 - parent: 1 - type: Transform - - uid: 11679 - components: - - pos: -49.5,38.5 - parent: 1 - type: Transform - - uid: 11680 - components: - - pos: -49.5,37.5 - parent: 1 - type: Transform - - uid: 11681 - components: - - pos: -49.5,36.5 - parent: 1 - type: Transform - - uid: 11682 - components: - - pos: -49.5,35.5 - parent: 1 - type: Transform - - uid: 11683 - components: - - pos: -49.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11684 - components: - - pos: -50.5,38.5 - parent: 1 - type: Transform - - uid: 11685 - components: - - pos: -51.5,38.5 - parent: 1 - type: Transform - - uid: 11686 - components: - - pos: -52.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11687 - components: - - pos: -50.5,36.5 - parent: 1 - type: Transform - - uid: 11688 - components: - - pos: -51.5,36.5 - parent: 1 - type: Transform - - uid: 11689 - components: - - pos: -52.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11690 - components: - - pos: -48.5,36.5 - parent: 1 - type: Transform - - uid: 11691 - components: - - pos: -47.5,36.5 - parent: 1 - type: Transform - - uid: 11692 - components: - - pos: -47.5,35.5 - parent: 1 - type: Transform - - uid: 11693 - components: - - pos: -47.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11694 - components: - - pos: -46.5,36.5 - parent: 1 - type: Transform - - uid: 11695 - components: - - pos: -45.5,36.5 - parent: 1 - type: Transform - - uid: 11696 - components: - - pos: -44.5,36.5 - parent: 1 - type: Transform - - uid: 11697 - components: - - pos: -43.5,36.5 - parent: 1 - type: Transform - - uid: 11698 - components: - - pos: -42.5,36.5 - parent: 1 - type: Transform - - uid: 11699 - components: - - pos: -41.5,36.5 - parent: 1 - type: Transform - - uid: 11700 - components: - - pos: -40.5,36.5 - parent: 1 - type: Transform - - uid: 11701 - components: - - pos: -39.5,36.5 - parent: 1 - type: Transform - - uid: 11702 - components: - - pos: -38.5,36.5 - parent: 1 - type: Transform - - uid: 11703 - components: - - pos: -37.5,36.5 - parent: 1 - type: Transform - - uid: 11704 - components: - - pos: -36.5,36.5 - parent: 1 - type: Transform - - uid: 11705 - components: - - pos: -35.5,36.5 - parent: 1 - type: Transform - - uid: 11706 - components: - - pos: -34.5,36.5 - parent: 1 - type: Transform - - uid: 11707 - components: - - pos: -34.5,37.5 - parent: 1 - type: Transform - - uid: 11708 - components: - - pos: -34.5,38.5 - parent: 1 - type: Transform - - uid: 11709 - components: - - pos: -35.5,38.5 - parent: 1 - type: Transform - - uid: 11710 - components: - - pos: -36.5,38.5 - parent: 1 - type: Transform - - uid: 11711 - components: - - pos: -37.5,38.5 - parent: 1 - type: Transform - - uid: 11712 - components: - - pos: -38.5,38.5 - parent: 1 - type: Transform - - uid: 11713 - components: - - pos: -39.5,38.5 - parent: 1 - type: Transform - - uid: 11714 - components: - - pos: -40.5,38.5 - parent: 1 - type: Transform - - uid: 11715 - components: - - pos: -41.5,38.5 - parent: 1 - type: Transform - - uid: 11716 - components: - - pos: -42.5,38.5 - parent: 1 - type: Transform - - uid: 11717 - components: - - pos: -42.5,39.5 - parent: 1 - type: Transform - - uid: 11718 - components: - - pos: -42.5,40.5 - parent: 1 - type: Transform - - uid: 11719 - components: - - pos: -42.5,41.5 - parent: 1 - type: Transform - - uid: 11720 - components: - - pos: -42.5,42.5 - parent: 1 - type: Transform - - uid: 11721 - components: - - pos: -33.5,38.5 - parent: 1 - type: Transform - - uid: 11722 - components: - - pos: -32.5,38.5 - parent: 1 - type: Transform - - uid: 11723 - components: - - pos: -31.5,38.5 - parent: 1 - type: Transform - - uid: 11724 - components: - - pos: -30.5,38.5 - parent: 1 - type: Transform - - uid: 11725 - components: - - pos: -29.5,38.5 - parent: 1 - type: Transform - - uid: 11726 - components: - - pos: -28.5,38.5 - parent: 1 - type: Transform - - uid: 11727 - components: - - pos: -27.5,38.5 - parent: 1 - type: Transform - - uid: 11728 - components: - - pos: -26.5,38.5 - parent: 1 - type: Transform - - uid: 11729 - components: - - pos: -25.5,38.5 - parent: 1 - type: Transform - - uid: 11730 - components: - - pos: -24.5,38.5 - parent: 1 - type: Transform - - uid: 11731 - components: - - pos: -24.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11732 - components: - - pos: -24.5,48.5 - parent: 1 - type: Transform - - uid: 11733 - components: - - pos: -24.5,47.5 - parent: 1 - type: Transform - - uid: 11734 - components: - - pos: -25.5,47.5 - parent: 1 - type: Transform - - uid: 11735 - components: - - pos: -26.5,47.5 - parent: 1 - type: Transform - - uid: 11736 - components: - - pos: -27.5,47.5 - parent: 1 - type: Transform - - uid: 11737 - components: - - pos: -28.5,47.5 - parent: 1 - type: Transform - - uid: 11738 - components: - - pos: -29.5,47.5 - parent: 1 - type: Transform - - uid: 11739 - components: - - pos: -30.5,47.5 - parent: 1 - type: Transform - - uid: 11740 - components: - - pos: -31.5,47.5 - parent: 1 - type: Transform - - uid: 11741 - components: - - pos: -32.5,47.5 - parent: 1 - type: Transform - - uid: 11742 - components: - - pos: -33.5,47.5 - parent: 1 - type: Transform - - uid: 11743 - components: - - pos: -34.5,47.5 - parent: 1 - type: Transform - - uid: 11744 - components: - - pos: -35.5,47.5 - parent: 1 - type: Transform - - uid: 11745 - components: - - pos: -35.5,48.5 - parent: 1 - type: Transform - - uid: 11746 - components: - - pos: -36.5,48.5 - parent: 1 - type: Transform - - uid: 11747 - components: - - pos: -37.5,48.5 - parent: 1 - type: Transform - - uid: 11748 - components: - - pos: -38.5,48.5 - parent: 1 - type: Transform - - uid: 11749 - components: - - pos: -32.5,48.5 - parent: 1 - type: Transform - - uid: 11750 - components: - - pos: -30.5,46.5 - parent: 1 - type: Transform - - uid: 11751 - components: - - pos: -30.5,45.5 - parent: 1 - type: Transform - - uid: 11752 - components: - - pos: -30.5,44.5 - parent: 1 - type: Transform - - uid: 11753 - components: - - pos: -30.5,43.5 - parent: 1 - type: Transform - - uid: 11754 - components: - - pos: -30.5,42.5 - parent: 1 - type: Transform - - uid: 11755 - components: - - pos: -29.5,42.5 - parent: 1 - type: Transform - - uid: 11756 - components: - - pos: -28.5,42.5 - parent: 1 - type: Transform - - uid: 11757 - components: - - pos: -27.5,42.5 - parent: 1 - type: Transform - - uid: 11758 - components: - - pos: -26.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11759 - components: - - pos: -26.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11760 - components: - - pos: -26.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11761 - components: - - pos: -30.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11762 - components: - - pos: -31.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11763 - components: - - pos: -32.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11764 - components: - - pos: -34.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11765 - components: - - pos: -35.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11766 - components: - - pos: -31.5,43.5 - parent: 1 - type: Transform - - uid: 11767 - components: - - pos: -32.5,43.5 - parent: 1 - type: Transform - - uid: 11768 - components: - - pos: -33.5,43.5 - parent: 1 - type: Transform - - uid: 11769 - components: - - pos: -34.5,43.5 - parent: 1 - type: Transform - - uid: 11770 - components: - - pos: -35.5,43.5 - parent: 1 - type: Transform - - uid: 11771 - components: - - pos: -36.5,43.5 - parent: 1 - type: Transform - - uid: 11772 - components: - - pos: -37.5,43.5 - parent: 1 - type: Transform - - uid: 11773 - components: - - pos: -38.5,43.5 - parent: 1 - type: Transform - - uid: 11774 - components: - - pos: -39.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11775 - components: - - pos: -39.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11776 - components: - - pos: -35.5,46.5 - parent: 1 - type: Transform - - uid: 11777 - components: - - pos: -35.5,45.5 - parent: 1 - type: Transform - - uid: 11778 - components: - - pos: -35.5,44.5 - parent: 1 - type: Transform - - uid: 11779 - components: - - pos: -36.5,45.5 - parent: 1 - type: Transform - - uid: 11780 - components: - - pos: -37.5,45.5 - parent: 1 - type: Transform - - uid: 11781 - components: - - pos: -38.5,45.5 - parent: 1 - type: Transform - - uid: 11782 - components: - - pos: -39.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11783 - components: - - pos: -39.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11784 - components: - - pos: -20.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11785 - components: - - pos: -19.5,50.5 - parent: 1 - type: Transform - - uid: 11786 - components: - - pos: -18.5,50.5 - parent: 1 - type: Transform - - uid: 11787 - components: - - pos: -17.5,50.5 - parent: 1 - type: Transform - - uid: 11788 - components: - - pos: -16.5,50.5 - parent: 1 - type: Transform - - uid: 11789 - components: - - pos: -16.5,51.5 - parent: 1 - type: Transform - - uid: 11790 - components: - - pos: -16.5,52.5 - parent: 1 - type: Transform - - uid: 11791 - components: - - pos: -16.5,53.5 - parent: 1 - type: Transform - - uid: 11792 - components: - - pos: -16.5,54.5 - parent: 1 - type: Transform - - uid: 11793 - components: - - pos: -16.5,55.5 - parent: 1 - type: Transform - - uid: 11794 - components: - - pos: -16.5,56.5 - parent: 1 - type: Transform - - uid: 11795 - components: - - pos: -15.5,56.5 - parent: 1 - type: Transform - - uid: 11796 - components: - - pos: -14.5,56.5 - parent: 1 - type: Transform - - uid: 11797 - components: - - pos: -13.5,56.5 - parent: 1 - type: Transform - - uid: 11798 - components: - - pos: -12.5,56.5 - parent: 1 - type: Transform - - uid: 11799 - components: - - pos: -12.5,55.5 - parent: 1 - type: Transform - - uid: 11800 - components: - - pos: -12.5,54.5 - parent: 1 - type: Transform - - uid: 11801 - components: - - pos: -12.5,53.5 - parent: 1 - type: Transform - - uid: 11802 - components: - - pos: -12.5,52.5 - parent: 1 - type: Transform - - uid: 11803 - components: - - pos: -12.5,51.5 - parent: 1 - type: Transform - - uid: 11804 - components: - - pos: -12.5,50.5 - parent: 1 - type: Transform - - uid: 11805 - components: - - pos: -12.5,49.5 - parent: 1 - type: Transform - - uid: 11806 - components: - - pos: -12.5,48.5 - parent: 1 - type: Transform - - uid: 11807 - components: - - pos: -12.5,47.5 - parent: 1 - type: Transform - - uid: 11808 - components: - - pos: -12.5,46.5 - parent: 1 - type: Transform - - uid: 11809 - components: - - pos: -12.5,45.5 - parent: 1 - type: Transform - - uid: 11810 - components: - - pos: -12.5,44.5 - parent: 1 - type: Transform - - uid: 11811 - components: - - pos: -12.5,43.5 - parent: 1 - type: Transform - - uid: 11812 - components: - - pos: -12.5,42.5 - parent: 1 - type: Transform - - uid: 11813 - components: - - pos: -12.5,41.5 - parent: 1 - type: Transform - - uid: 11814 - components: - - pos: -12.5,40.5 - parent: 1 - type: Transform - - uid: 11815 - components: - - pos: -12.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11816 - components: - - pos: -13.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11817 - components: - - pos: -13.5,44.5 - parent: 1 - type: Transform - - uid: 11818 - components: - - pos: -14.5,44.5 - parent: 1 - type: Transform - - uid: 11819 - components: - - pos: -15.5,44.5 - parent: 1 - type: Transform - - uid: 11820 - components: - - pos: -16.5,44.5 - parent: 1 - type: Transform - - uid: 11821 - components: - - pos: -17.5,44.5 - parent: 1 - type: Transform - - uid: 11822 - components: - - pos: -17.5,43.5 - parent: 1 - type: Transform - - uid: 11823 - components: - - pos: -17.5,42.5 - parent: 1 - type: Transform - - uid: 11824 - components: - - pos: -17.5,41.5 - parent: 1 - type: Transform - - uid: 11825 - components: - - pos: -17.5,40.5 - parent: 1 - type: Transform - - uid: 11826 - components: - - pos: -17.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11827 - components: - - pos: -18.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11828 - components: - - pos: -19.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11829 - components: - - pos: -16.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11830 - components: - - pos: -15.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11831 - components: - - pos: -18.5,44.5 - parent: 1 - type: Transform - - uid: 11832 - components: - - pos: -19.5,44.5 - parent: 1 - type: Transform - - uid: 11833 - components: - - pos: -19.5,45.5 - parent: 1 - type: Transform - - uid: 11834 - components: - - pos: -19.5,46.5 - parent: 1 - type: Transform - - uid: 11835 - components: - - pos: -19.5,47.5 - parent: 1 - type: Transform - - uid: 11836 - components: - - pos: -19.5,48.5 - parent: 1 - type: Transform - - uid: 11837 - components: - - pos: -19.5,49.5 - parent: 1 - type: Transform - - uid: 11838 - components: - - pos: -19.5,50.5 - parent: 1 - type: Transform - - uid: 11864 - components: - - pos: -7.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11865 - components: - - pos: -8.5,56.5 - parent: 1 - type: Transform - - uid: 11866 - components: - - pos: -9.5,56.5 - parent: 1 - type: Transform - - uid: 11867 - components: - - pos: -10.5,56.5 - parent: 1 - type: Transform - - uid: 11868 - components: - - pos: -10.5,57.5 - parent: 1 - type: Transform - - uid: 11869 - components: - - pos: -10.5,58.5 - parent: 1 - type: Transform - - uid: 11870 - components: - - pos: -10.5,59.5 - parent: 1 - type: Transform - - uid: 11871 - components: - - pos: -11.5,59.5 - parent: 1 - type: Transform - - uid: 11872 - components: - - pos: -12.5,59.5 - parent: 1 - type: Transform - - uid: 11873 - components: - - pos: -13.5,59.5 - parent: 1 - type: Transform - - uid: 11874 - components: - - pos: -14.5,59.5 - parent: 1 - type: Transform - - uid: 11875 - components: - - pos: -15.5,59.5 - parent: 1 - type: Transform - - uid: 11876 - components: - - pos: -16.5,59.5 - parent: 1 - type: Transform - - uid: 11877 - components: - - pos: -9.5,59.5 - parent: 1 - type: Transform - - uid: 11878 - components: - - pos: -8.5,59.5 - parent: 1 - type: Transform - - uid: 11879 - components: - - pos: -7.5,59.5 - parent: 1 - type: Transform - - uid: 11880 - components: - - pos: -6.5,59.5 - parent: 1 - type: Transform - - uid: 11881 - components: - - pos: -5.5,59.5 - parent: 1 - type: Transform - - uid: 11882 - components: - - pos: -5.5,60.5 - parent: 1 - type: Transform - - uid: 11883 - components: - - pos: -5.5,61.5 - parent: 1 - type: Transform - - uid: 11884 - components: - - pos: -5.5,62.5 - parent: 1 - type: Transform - - uid: 11885 - components: - - pos: -5.5,63.5 - parent: 1 - type: Transform - - uid: 11886 - components: - - pos: -5.5,64.5 - parent: 1 - type: Transform - - uid: 11887 - components: - - pos: -6.5,64.5 - parent: 1 - type: Transform - - uid: 11888 - components: - - pos: -7.5,64.5 - parent: 1 - type: Transform - - uid: 11889 - components: - - pos: -8.5,64.5 - parent: 1 - type: Transform - - uid: 11890 - components: - - pos: -8.5,63.5 - parent: 1 - type: Transform - - uid: 11891 - components: - - pos: -8.5,62.5 - parent: 1 - type: Transform - - uid: 11892 - components: - - pos: -8.5,61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11893 - components: - - pos: -9.5,61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11894 - components: - - pos: -7.5,60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11895 - components: - - pos: -6.5,56.5 - parent: 1 - type: Transform - - uid: 11896 - components: - - pos: -5.5,56.5 - parent: 1 - type: Transform - - uid: 11897 - components: - - pos: -5.5,55.5 - parent: 1 - type: Transform - - uid: 11898 - components: - - pos: -5.5,54.5 - parent: 1 - type: Transform - - uid: 11899 - components: - - pos: -5.5,53.5 - parent: 1 - type: Transform - - uid: 11900 - components: - - pos: -5.5,52.5 - parent: 1 - type: Transform - - uid: 11901 - components: - - pos: -4.5,54.5 - parent: 1 - type: Transform - - uid: 11902 - components: - - pos: -3.5,54.5 - parent: 1 - type: Transform - - uid: 11903 - components: - - pos: -2.5,54.5 - parent: 1 - type: Transform - - uid: 11904 - components: - - pos: -1.5,54.5 - parent: 1 - type: Transform - - uid: 11905 - components: - - pos: -3.5,53.5 - parent: 1 - type: Transform - - uid: 11906 - components: - - pos: -3.5,52.5 - parent: 1 - type: Transform - - uid: 11907 - components: - - pos: -3.5,55.5 - parent: 1 - type: Transform - - uid: 11908 - components: - - pos: -3.5,56.5 - parent: 1 - type: Transform - - uid: 11909 - components: - - pos: -1.5,53.5 - parent: 1 - type: Transform - - uid: 11910 - components: - - pos: -1.5,52.5 - parent: 1 - type: Transform - - uid: 11911 - components: - - pos: -1.5,51.5 - parent: 1 - type: Transform - - uid: 11912 - components: - - pos: -1.5,50.5 - parent: 1 - type: Transform - - uid: 11913 - components: - - pos: -1.5,49.5 - parent: 1 - type: Transform - - uid: 11914 - components: - - pos: -1.5,48.5 - parent: 1 - type: Transform - - uid: 11915 - components: - - pos: -2.5,48.5 - parent: 1 - type: Transform - - uid: 11916 - components: - - pos: -3.5,48.5 - parent: 1 - type: Transform - - uid: 11917 - components: - - pos: -4.5,48.5 - parent: 1 - type: Transform - - uid: 11918 - components: - - pos: -5.5,48.5 - parent: 1 - type: Transform - - uid: 11919 - components: - - pos: -6.5,48.5 - parent: 1 - type: Transform - - uid: 11920 - components: - - pos: -7.5,48.5 - parent: 1 - type: Transform - - uid: 11921 - components: - - pos: -8.5,48.5 - parent: 1 - type: Transform - - uid: 11922 - components: - - pos: -9.5,48.5 - parent: 1 - type: Transform - - uid: 11923 - components: - - pos: -9.5,49.5 - parent: 1 - type: Transform - - uid: 11924 - components: - - pos: -9.5,50.5 - parent: 1 - type: Transform - - uid: 11925 - components: - - pos: -9.5,51.5 - parent: 1 - type: Transform - - uid: 11926 - components: - - pos: -9.5,52.5 - parent: 1 - type: Transform - - uid: 11927 - components: - - pos: -9.5,53.5 - parent: 1 - type: Transform - - uid: 11928 - components: - - pos: -9.5,54.5 - parent: 1 - type: Transform - - uid: 11929 - components: - - pos: -9.5,55.5 - parent: 1 - type: Transform - - uid: 11930 - components: - - pos: -9.5,47.5 - parent: 1 - type: Transform - - uid: 11932 - components: - - pos: -9.5,45.5 - parent: 1 - type: Transform - - uid: 11933 - components: - - pos: -9.5,44.5 - parent: 1 - type: Transform - - uid: 11934 - components: - - pos: -9.5,43.5 - parent: 1 - type: Transform - - uid: 11935 - components: - - pos: -9.5,42.5 - parent: 1 - type: Transform - - uid: 11936 - components: - - pos: -9.5,41.5 - parent: 1 - type: Transform - - uid: 11937 - components: - - pos: -9.5,40.5 - parent: 1 - type: Transform - - uid: 11938 - components: - - pos: -9.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11939 - components: - - pos: -10.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11940 - components: - - pos: -6.5,43.5 - parent: 1 - type: Transform - - uid: 11941 - components: - - pos: -6.5,44.5 - parent: 1 - type: Transform - - uid: 11942 - components: - - pos: -6.5,45.5 - parent: 1 - type: Transform - - uid: 11943 - components: - - pos: -6.5,46.5 - parent: 1 - type: Transform - - uid: 11944 - components: - - pos: -6.5,47.5 - parent: 1 - type: Transform - - uid: 11945 - components: - - pos: -6.5,42.5 - parent: 1 - type: Transform - - uid: 11946 - components: - - pos: -6.5,41.5 - parent: 1 - type: Transform - - uid: 11947 - components: - - pos: -6.5,40.5 - parent: 1 - type: Transform - - uid: 11948 - components: - - pos: -6.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11949 - components: - - pos: -7.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11950 - components: - - pos: -3.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11951 - components: - - pos: -3.5,40.5 - parent: 1 - type: Transform - - uid: 11952 - components: - - pos: -3.5,41.5 - parent: 1 - type: Transform - - uid: 11953 - components: - - pos: -3.5,42.5 - parent: 1 - type: Transform - - uid: 11954 - components: - - pos: -3.5,43.5 - parent: 1 - type: Transform - - uid: 11955 - components: - - pos: -3.5,44.5 - parent: 1 - type: Transform - - uid: 11956 - components: - - pos: -3.5,45.5 - parent: 1 - type: Transform - - uid: 11957 - components: - - pos: -3.5,46.5 - parent: 1 - type: Transform - - uid: 11958 - components: - - pos: -3.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11959 - components: - - pos: -4.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11960 - components: - - pos: -23.5,47.5 - parent: 1 - type: Transform - - uid: 11961 - components: - - pos: -22.5,47.5 - parent: 1 - type: Transform - - uid: 11962 - components: - - pos: -22.5,48.5 - parent: 1 - type: Transform - - uid: 11963 - components: - - pos: -21.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11964 - components: - - pos: -21.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11965 - components: - - pos: -21.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11966 - components: - - pos: -21.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11967 - components: - - pos: -21.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11968 - components: - - pos: -21.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11969 - components: - - pos: -21.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11970 - components: - - pos: -20.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11971 - components: - - pos: -19.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11972 - components: - - pos: -19.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11973 - components: - - pos: -19.5,59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11974 - components: - - pos: -19.5,60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11975 - components: - - pos: -19.5,61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11976 - components: - - pos: -19.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11977 - components: - - pos: -18.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11978 - components: - - pos: -17.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11979 - components: - - pos: -16.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11980 - components: - - pos: -15.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11981 - components: - - pos: -14.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11982 - components: - - pos: -13.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11983 - components: - - pos: -13.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11984 - components: - - pos: -13.5,64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11985 - components: - - pos: -13.5,65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11986 - components: - - pos: -13.5,66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11987 - components: - - pos: -13.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11988 - components: - - pos: -13.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11989 - components: - - pos: -13.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11990 - components: - - pos: -13.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11991 - components: - - pos: -12.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11992 - components: - - pos: -11.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11993 - components: - - pos: -10.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11994 - components: - - pos: -9.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11995 - components: - - pos: -8.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11996 - components: - - pos: -7.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11997 - components: - - pos: -6.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11998 - components: - - pos: -5.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11999 - components: - - pos: -4.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12000 - components: - - pos: -4.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12001 - components: - - pos: -4.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12002 - components: - - pos: -4.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12003 - components: - - pos: -3.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12004 - components: - - pos: -1.5,47.5 - parent: 1 - type: Transform - - uid: 12005 - components: - - pos: -1.5,46.5 - parent: 1 - type: Transform - - uid: 12006 - components: - - pos: -1.5,45.5 - parent: 1 - type: Transform - - uid: 12007 - components: - - pos: -1.5,44.5 - parent: 1 - type: Transform - - uid: 12008 - components: - - pos: -1.5,43.5 - parent: 1 - type: Transform - - uid: 12009 - components: - - pos: -1.5,42.5 - parent: 1 - type: Transform - - uid: 12010 - components: - - pos: -1.5,41.5 - parent: 1 - type: Transform - - uid: 12011 - components: - - pos: -1.5,40.5 - parent: 1 - type: Transform - - uid: 12012 - components: - - pos: -22.5,46.5 - parent: 1 - type: Transform - - uid: 12013 - components: - - pos: -21.5,46.5 - parent: 1 - type: Transform - - uid: 12014 - components: - - pos: -21.5,45.5 - parent: 1 - type: Transform - - uid: 12015 - components: - - pos: -21.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12016 - components: - - pos: -21.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12017 - components: - - pos: -21.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12018 - components: - - pos: -21.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12019 - components: - - pos: -21.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12060 - components: - - pos: -12.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12061 - components: - - pos: -11.5,32.5 - parent: 1 - type: Transform - - uid: 12062 - components: - - pos: -10.5,32.5 - parent: 1 - type: Transform - - uid: 12063 - components: - - pos: -9.5,32.5 - parent: 1 - type: Transform - - uid: 12064 - components: - - pos: -9.5,33.5 - parent: 1 - type: Transform - - uid: 12065 - components: - - pos: -8.5,33.5 - parent: 1 - type: Transform - - uid: 12066 - components: - - pos: -7.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12067 - components: - - pos: -6.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12068 - components: - - pos: -6.5,32.5 - parent: 1 - type: Transform - - uid: 12069 - components: - - pos: -6.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12070 - components: - - pos: -6.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12071 - components: - - pos: -6.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12072 - components: - - pos: -6.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12073 - components: - - pos: -6.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12074 - components: - - pos: -9.5,31.5 - parent: 1 - type: Transform - - uid: 12075 - components: - - pos: -9.5,30.5 - parent: 1 - type: Transform - - uid: 12076 - components: - - pos: -9.5,29.5 - parent: 1 - type: Transform - - uid: 12077 - components: - - pos: -9.5,28.5 - parent: 1 - type: Transform - - uid: 12078 - components: - - pos: -9.5,27.5 - parent: 1 - type: Transform - - uid: 12079 - components: - - pos: -10.5,27.5 - parent: 1 - type: Transform - - uid: 12080 - components: - - pos: -11.5,27.5 - parent: 1 - type: Transform - - uid: 12081 - components: - - pos: -11.5,28.5 - parent: 1 - type: Transform - - uid: 12082 - components: - - pos: -11.5,29.5 - parent: 1 - type: Transform - - uid: 12083 - components: - - pos: -11.5,30.5 - parent: 1 - type: Transform - - uid: 12084 - components: - - pos: -11.5,31.5 - parent: 1 - type: Transform - - uid: 12085 - components: - - pos: -11.5,33.5 - parent: 1 - type: Transform - - uid: 12086 - components: - - pos: -11.5,34.5 - parent: 1 - type: Transform - - uid: 12087 - components: - - pos: -10.5,34.5 - parent: 1 - type: Transform - - uid: 12088 - components: - - pos: -20.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12089 - components: - - pos: -20.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12090 - components: - - pos: -20.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12091 - components: - - pos: -20.5,28.5 - parent: 1 - type: Transform - - uid: 12092 - components: - - pos: -20.5,32.5 - parent: 1 - type: Transform - - uid: 12093 - components: - - pos: -20.5,33.5 - parent: 1 - type: Transform - - uid: 12094 - components: - - pos: -20.5,34.5 - parent: 1 - type: Transform - - uid: 12095 - components: - - pos: -20.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12096 - components: - - pos: -20.5,36.5 - parent: 1 - type: Transform - - uid: 12097 - components: - - pos: -21.5,36.5 - parent: 1 - type: Transform - - uid: 12098 - components: - - pos: -22.5,36.5 - parent: 1 - type: Transform - - uid: 12099 - components: - - pos: -23.5,36.5 - parent: 1 - type: Transform - - uid: 12101 - components: - - pos: -25.5,36.5 - parent: 1 - type: Transform - - uid: 12102 - components: - - pos: -26.5,36.5 - parent: 1 - type: Transform - - uid: 12103 - components: - - pos: -27.5,36.5 - parent: 1 - type: Transform - - uid: 12104 - components: - - pos: -28.5,36.5 - parent: 1 - type: Transform - - uid: 12105 - components: - - pos: -19.5,36.5 - parent: 1 - type: Transform - - uid: 12106 - components: - - pos: -18.5,36.5 - parent: 1 - type: Transform - - uid: 12107 - components: - - pos: -17.5,36.5 - parent: 1 - type: Transform - - uid: 12108 - components: - - pos: -16.5,36.5 - parent: 1 - type: Transform - - uid: 12109 - components: - - pos: -15.5,36.5 - parent: 1 - type: Transform - - uid: 12110 - components: - - pos: -14.5,36.5 - parent: 1 - type: Transform - - uid: 12111 - components: - - pos: -13.5,36.5 - parent: 1 - type: Transform - - uid: 12112 - components: - - pos: -12.5,36.5 - parent: 1 - type: Transform - - uid: 12113 - components: - - pos: -11.5,36.5 - parent: 1 - type: Transform - - uid: 12114 - components: - - pos: -10.5,36.5 - parent: 1 - type: Transform - - uid: 12115 - components: - - pos: -9.5,36.5 - parent: 1 - type: Transform - - uid: 12116 - components: - - pos: -8.5,36.5 - parent: 1 - type: Transform - - uid: 12117 - components: - - pos: -7.5,36.5 - parent: 1 - type: Transform - - uid: 12118 - components: - - pos: -6.5,36.5 - parent: 1 - type: Transform - - uid: 12119 - components: - - pos: -5.5,36.5 - parent: 1 - type: Transform - - uid: 12120 - components: - - pos: -4.5,36.5 - parent: 1 - type: Transform - - uid: 12121 - components: - - pos: -3.5,36.5 - parent: 1 - type: Transform - - uid: 12122 - components: - - pos: -2.5,36.5 - parent: 1 - type: Transform - - uid: 12123 - components: - - pos: -19.5,32.5 - parent: 1 - type: Transform - - uid: 12124 - components: - - pos: -18.5,32.5 - parent: 1 - type: Transform - - uid: 12125 - components: - - pos: -17.5,32.5 - parent: 1 - type: Transform - - uid: 12126 - components: - - pos: -16.5,32.5 - parent: 1 - type: Transform - - uid: 12127 - components: - - pos: -15.5,32.5 - parent: 1 - type: Transform - - uid: 12128 - components: - - pos: -14.5,32.5 - parent: 1 - type: Transform - - uid: 12129 - components: - - pos: -14.5,31.5 - parent: 1 - type: Transform - - uid: 12130 - components: - - pos: -14.5,30.5 - parent: 1 - type: Transform - - uid: 12131 - components: - - pos: -14.5,29.5 - parent: 1 - type: Transform - - uid: 12132 - components: - - pos: -14.5,28.5 - parent: 1 - type: Transform - - uid: 12133 - components: - - pos: -14.5,27.5 - parent: 1 - type: Transform - - uid: 12134 - components: - - pos: -14.5,33.5 - parent: 1 - type: Transform - - uid: 12135 - components: - - pos: -14.5,34.5 - parent: 1 - type: Transform - - uid: 12136 - components: - - pos: -17.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12137 - components: - - pos: -17.5,25.5 - parent: 1 - type: Transform - - uid: 12138 - components: - - pos: -17.5,24.5 - parent: 1 - type: Transform - - uid: 12139 - components: - - pos: -16.5,24.5 - parent: 1 - type: Transform - - uid: 12140 - components: - - pos: -15.5,24.5 - parent: 1 - type: Transform - - uid: 12141 - components: - - pos: -14.5,24.5 - parent: 1 - type: Transform - - uid: 12142 - components: - - pos: -13.5,24.5 - parent: 1 - type: Transform - - uid: 12143 - components: - - pos: -12.5,24.5 - parent: 1 - type: Transform - - uid: 12144 - components: - - pos: -11.5,24.5 - parent: 1 - type: Transform - - uid: 12145 - components: - - pos: -10.5,24.5 - parent: 1 - type: Transform - - uid: 12146 - components: - - pos: -10.5,23.5 - parent: 1 - type: Transform - - uid: 12147 - components: - - pos: -10.5,22.5 - parent: 1 - type: Transform - - uid: 12148 - components: - - pos: -10.5,21.5 - parent: 1 - type: Transform - - uid: 12149 - components: - - pos: -11.5,21.5 - parent: 1 - type: Transform - - uid: 12150 - components: - - pos: -11.5,20.5 - parent: 1 - type: Transform - - uid: 12151 - components: - - pos: -11.5,19.5 - parent: 1 - type: Transform - - uid: 12152 - components: - - pos: -11.5,18.5 - parent: 1 - type: Transform - - uid: 12153 - components: - - pos: -18.5,24.5 - parent: 1 - type: Transform - - uid: 12154 - components: - - pos: -19.5,24.5 - parent: 1 - type: Transform - - uid: 12155 - components: - - pos: -20.5,24.5 - parent: 1 - type: Transform - - uid: 12156 - components: - - pos: -20.5,23.5 - parent: 1 - type: Transform - - uid: 12157 - components: - - pos: -20.5,22.5 - parent: 1 - type: Transform - - uid: 12158 - components: - - pos: -20.5,21.5 - parent: 1 - type: Transform - - uid: 12159 - components: - - pos: -20.5,20.5 - parent: 1 - type: Transform - - uid: 12160 - components: - - pos: -20.5,19.5 - parent: 1 - type: Transform - - uid: 12161 - components: - - pos: -20.5,18.5 - parent: 1 - type: Transform - - uid: 12162 - components: - - pos: -20.5,17.5 - parent: 1 - type: Transform - - uid: 12163 - components: - - pos: -19.5,18.5 - parent: 1 - type: Transform - - uid: 12164 - components: - - pos: -18.5,18.5 - parent: 1 - type: Transform - - uid: 12165 - components: - - pos: -17.5,18.5 - parent: 1 - type: Transform - - uid: 12166 - components: - - pos: -16.5,18.5 - parent: 1 - type: Transform - - uid: 12167 - components: - - pos: -15.5,18.5 - parent: 1 - type: Transform - - uid: 12168 - components: - - pos: -14.5,18.5 - parent: 1 - type: Transform - - uid: 12169 - components: - - pos: -16.5,19.5 - parent: 1 - type: Transform - - uid: 12170 - components: - - pos: -16.5,20.5 - parent: 1 - type: Transform - - uid: 12171 - components: - - pos: -16.5,21.5 - parent: 1 - type: Transform - - uid: 12172 - components: - - pos: -16.5,22.5 - parent: 1 - type: Transform - - uid: 12173 - components: - - pos: -21.5,23.5 - parent: 1 - type: Transform - - uid: 12174 - components: - - pos: -22.5,23.5 - parent: 1 - type: Transform - - uid: 12175 - components: - - pos: -23.5,23.5 - parent: 1 - type: Transform - - uid: 12176 - components: - - pos: -24.5,23.5 - parent: 1 - type: Transform - - uid: 12177 - components: - - pos: -25.5,23.5 - parent: 1 - type: Transform - - uid: 12178 - components: - - pos: -24.5,22.5 - parent: 1 - type: Transform - - uid: 12179 - components: - - pos: -24.5,21.5 - parent: 1 - type: Transform - - uid: 12180 - components: - - pos: -24.5,20.5 - parent: 1 - type: Transform - - uid: 12181 - components: - - pos: -24.5,19.5 - parent: 1 - type: Transform - - uid: 12182 - components: - - pos: -20.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12183 - components: - - pos: -21.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12184 - components: - - pos: -22.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12185 - components: - - pos: -23.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12186 - components: - - pos: -23.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12187 - components: - - pos: -23.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12188 - components: - - pos: -23.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12189 - components: - - pos: -23.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12190 - components: - - pos: -23.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12191 - components: - - pos: -23.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12192 - components: - - pos: -23.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12193 - components: - - pos: -23.5,35.5 - parent: 1 - type: Transform - - uid: 12194 - components: - - pos: -23.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12195 - components: - - pos: -23.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12196 - components: - - pos: -24.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12197 - components: - - pos: -25.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12198 - components: - - pos: -26.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12199 - components: - - pos: -27.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12200 - components: - - pos: -27.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12201 - components: - - pos: -27.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12202 - components: - - pos: -27.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12203 - components: - - pos: -27.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12204 - components: - - pos: -27.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12205 - components: - - pos: -27.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12206 - components: - - pos: -27.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12207 - components: - - pos: -27.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12208 - components: - - pos: -26.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12209 - components: - - pos: -25.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12210 - components: - - pos: -28.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12211 - components: - - pos: -25.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12212 - components: - - pos: -26.5,32.5 - parent: 1 - type: Transform - - uid: 12213 - components: - - pos: -27.5,32.5 - parent: 1 - type: Transform - - uid: 12214 - components: - - pos: -28.5,32.5 - parent: 1 - type: Transform - - uid: 12215 - components: - - pos: -28.5,33.5 - parent: 1 - type: Transform - - uid: 12216 - components: - - pos: -29.5,33.5 - parent: 1 - type: Transform - - uid: 12217 - components: - - pos: -30.5,33.5 - parent: 1 - type: Transform - - uid: 12218 - components: - - pos: -30.5,32.5 - parent: 1 - type: Transform - - uid: 12219 - components: - - pos: -30.5,31.5 - parent: 1 - type: Transform - - uid: 12220 - components: - - pos: -30.5,30.5 - parent: 1 - type: Transform - - uid: 12221 - components: - - pos: -30.5,29.5 - parent: 1 - type: Transform - - uid: 12222 - components: - - pos: -30.5,28.5 - parent: 1 - type: Transform - - uid: 12223 - components: - - pos: -30.5,27.5 - parent: 1 - type: Transform - - uid: 12224 - components: - - pos: -30.5,26.5 - parent: 1 - type: Transform - - uid: 12225 - components: - - pos: -30.5,25.5 - parent: 1 - type: Transform - - uid: 12226 - components: - - pos: -30.5,24.5 - parent: 1 - type: Transform - - uid: 12227 - components: - - pos: -30.5,23.5 - parent: 1 - type: Transform - - uid: 12228 - components: - - pos: -30.5,22.5 - parent: 1 - type: Transform - - uid: 12229 - components: - - pos: -30.5,21.5 - parent: 1 - type: Transform - - uid: 12230 - components: - - pos: -30.5,20.5 - parent: 1 - type: Transform - - uid: 12231 - components: - - pos: -30.5,19.5 - parent: 1 - type: Transform - - uid: 12232 - components: - - pos: -30.5,18.5 - parent: 1 - type: Transform - - uid: 12233 - components: - - pos: -30.5,17.5 - parent: 1 - type: Transform - - uid: 12234 - components: - - pos: -27.5,31.5 - parent: 1 - type: Transform - - uid: 12235 - components: - - pos: -27.5,30.5 - parent: 1 - type: Transform - - uid: 12246 - components: - - pos: -8.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12247 - components: - - pos: -7.5,23.5 - parent: 1 - type: Transform - - uid: 12248 - components: - - pos: -6.5,23.5 - parent: 1 - type: Transform - - uid: 12249 - components: - - pos: -5.5,23.5 - parent: 1 - type: Transform - - uid: 12250 - components: - - pos: -4.5,23.5 - parent: 1 - type: Transform - - uid: 12251 - components: - - pos: -3.5,23.5 - parent: 1 - type: Transform - - uid: 12252 - components: - - pos: -5.5,22.5 - parent: 1 - type: Transform - - uid: 12253 - components: - - pos: -5.5,21.5 - parent: 1 - type: Transform - - uid: 12254 - components: - - pos: -5.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12255 - components: - - pos: -5.5,19.5 - parent: 1 - type: Transform - - uid: 12256 - components: - - pos: -5.5,18.5 - parent: 1 - type: Transform - - uid: 12257 - components: - - pos: -5.5,17.5 - parent: 1 - type: Transform - - uid: 12258 - components: - - pos: -4.5,19.5 - parent: 1 - type: Transform - - uid: 12259 - components: - - pos: -3.5,19.5 - parent: 1 - type: Transform - - uid: 12260 - components: - - pos: -2.5,19.5 - parent: 1 - type: Transform - - uid: 12261 - components: - - pos: -1.5,19.5 - parent: 1 - type: Transform - - uid: 12262 - components: - - pos: -1.5,20.5 - parent: 1 - type: Transform - - uid: 12263 - components: - - pos: -1.5,21.5 - parent: 1 - type: Transform - - uid: 12264 - components: - - pos: -1.5,22.5 - parent: 1 - type: Transform - - uid: 12265 - components: - - pos: -1.5,23.5 - parent: 1 - type: Transform - - uid: 12266 - components: - - pos: -1.5,24.5 - parent: 1 - type: Transform - - uid: 12267 - components: - - pos: -1.5,25.5 - parent: 1 - type: Transform - - uid: 12268 - components: - - pos: -1.5,26.5 - parent: 1 - type: Transform - - uid: 12269 - components: - - pos: -1.5,27.5 - parent: 1 - type: Transform - - uid: 12270 - components: - - pos: -1.5,28.5 - parent: 1 - type: Transform - - uid: 12271 - components: - - pos: -1.5,29.5 - parent: 1 - type: Transform - - uid: 12272 - components: - - pos: -1.5,30.5 - parent: 1 - type: Transform - - uid: 12273 - components: - - pos: -1.5,31.5 - parent: 1 - type: Transform - - uid: 12274 - components: - - pos: -1.5,32.5 - parent: 1 - type: Transform - - uid: 12275 - components: - - pos: -1.5,33.5 - parent: 1 - type: Transform - - uid: 12276 - components: - - pos: -1.5,34.5 - parent: 1 - type: Transform - - uid: 12277 - components: - - pos: -5.5,16.5 - parent: 1 - type: Transform - - uid: 12278 - components: - - pos: -5.5,15.5 - parent: 1 - type: Transform - - uid: 12279 - components: - - pos: -6.5,15.5 - parent: 1 - type: Transform - - uid: 12280 - components: - - pos: -7.5,15.5 - parent: 1 - type: Transform - - uid: 12281 - components: - - pos: -8.5,15.5 - parent: 1 - type: Transform - - uid: 12282 - components: - - pos: -9.5,15.5 - parent: 1 - type: Transform - - uid: 12283 - components: - - pos: -10.5,15.5 - parent: 1 - type: Transform - - uid: 12284 - components: - - pos: -11.5,15.5 - parent: 1 - type: Transform - - uid: 12285 - components: - - pos: -12.5,15.5 - parent: 1 - type: Transform - - uid: 12286 - components: - - pos: -4.5,15.5 - parent: 1 - type: Transform - - uid: 12287 - components: - - pos: -3.5,15.5 - parent: 1 - type: Transform - - uid: 12288 - components: - - pos: -2.5,15.5 - parent: 1 - type: Transform - - uid: 12289 - components: - - pos: -1.5,15.5 - parent: 1 - type: Transform - - uid: 12326 - components: - - pos: -35.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12327 - components: - - pos: -36.5,25.5 - parent: 1 - type: Transform - - uid: 12328 - components: - - pos: -37.5,25.5 - parent: 1 - type: Transform - - uid: 12329 - components: - - pos: -38.5,25.5 - parent: 1 - type: Transform - - uid: 12330 - components: - - pos: -39.5,25.5 - parent: 1 - type: Transform - - uid: 12331 - components: - - pos: -40.5,25.5 - parent: 1 - type: Transform - - uid: 12332 - components: - - pos: -41.5,25.5 - parent: 1 - type: Transform - - uid: 12333 - components: - - pos: -42.5,25.5 - parent: 1 - type: Transform - - uid: 12337 - components: - - pos: -38.5,26.5 - parent: 1 - type: Transform - - uid: 12338 - components: - - pos: -38.5,27.5 - parent: 1 - type: Transform - - uid: 12339 - components: - - pos: -38.5,28.5 - parent: 1 - type: Transform - - uid: 12340 - components: - - pos: -38.5,29.5 - parent: 1 - type: Transform - - uid: 12341 - components: - - pos: -38.5,30.5 - parent: 1 - type: Transform - - uid: 12342 - components: - - pos: -38.5,24.5 - parent: 1 - type: Transform - - uid: 12343 - components: - - pos: -38.5,23.5 - parent: 1 - type: Transform - - uid: 12344 - components: - - pos: -38.5,22.5 - parent: 1 - type: Transform - - uid: 12345 - components: - - pos: -38.5,21.5 - parent: 1 - type: Transform - - uid: 12346 - components: - - pos: -38.5,20.5 - parent: 1 - type: Transform - - uid: 12347 - components: - - pos: -38.5,19.5 - parent: 1 - type: Transform - - uid: 12348 - components: - - pos: -38.5,18.5 - parent: 1 - type: Transform - - uid: 12349 - components: - - pos: -38.5,17.5 - parent: 1 - type: Transform - - uid: 12350 - components: - - pos: -37.5,17.5 - parent: 1 - type: Transform - - uid: 12351 - components: - - pos: -37.5,16.5 - parent: 1 - type: Transform - - uid: 12352 - components: - - pos: -37.5,15.5 - parent: 1 - type: Transform - - uid: 12353 - components: - - pos: -38.5,15.5 - parent: 1 - type: Transform - - uid: 12354 - components: - - pos: -39.5,15.5 - parent: 1 - type: Transform - - uid: 12355 - components: - - pos: -40.5,15.5 - parent: 1 - type: Transform - - uid: 12356 - components: - - pos: -41.5,15.5 - parent: 1 - type: Transform - - uid: 12357 - components: - - pos: -42.5,15.5 - parent: 1 - type: Transform - - uid: 12358 - components: - - pos: -43.5,15.5 - parent: 1 - type: Transform - - uid: 12359 - components: - - pos: -44.5,15.5 - parent: 1 - type: Transform - - uid: 12360 - components: - - pos: -45.5,15.5 - parent: 1 - type: Transform - - uid: 12361 - components: - - pos: -46.5,15.5 - parent: 1 - type: Transform - - uid: 12362 - components: - - pos: -47.5,15.5 - parent: 1 - type: Transform - - uid: 12363 - components: - - pos: -48.5,15.5 - parent: 1 - type: Transform - - uid: 12364 - components: - - pos: -49.5,15.5 - parent: 1 - type: Transform - - uid: 12365 - components: - - pos: -50.5,15.5 - parent: 1 - type: Transform - - uid: 12366 - components: - - pos: -52.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12367 - components: - - pos: -51.5,15.5 - parent: 1 - type: Transform - - uid: 12368 - components: - - pos: -49.5,16.5 - parent: 1 - type: Transform - - uid: 12369 - components: - - pos: -49.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12370 - components: - - pos: -47.5,16.5 - parent: 1 - type: Transform - - uid: 12371 - components: - - pos: -47.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12372 - components: - - pos: -49.5,14.5 - parent: 1 - type: Transform - - uid: 12373 - components: - - pos: -49.5,13.5 - parent: 1 - type: Transform - - uid: 12374 - components: - - pos: -50.5,13.5 - parent: 1 - type: Transform - - uid: 12375 - components: - - pos: -51.5,13.5 - parent: 1 - type: Transform - - uid: 12376 - components: - - pos: -52.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12377 - components: - - pos: -36.5,15.5 - parent: 1 - type: Transform - - uid: 12378 - components: - - pos: -35.5,15.5 - parent: 1 - type: Transform - - uid: 12379 - components: - - pos: -35.5,16.5 - parent: 1 - type: Transform - - uid: 12380 - components: - - pos: -35.5,17.5 - parent: 1 - type: Transform - - uid: 12381 - components: - - pos: -35.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12382 - components: - - pos: -35.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12383 - components: - - pos: -35.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12384 - components: - - pos: -35.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12385 - components: - - pos: -34.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12386 - components: - - pos: -34.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12387 - components: - - pos: -34.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12388 - components: - - pos: -34.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12389 - components: - - pos: -34.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12390 - components: - - pos: -34.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12391 - components: - - pos: -34.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12392 - components: - - pos: -34.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12393 - components: - - pos: -34.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12394 - components: - - pos: -34.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12395 - components: - - pos: -34.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12396 - components: - - pos: -34.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12397 - components: - - pos: -34.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12398 - components: - - pos: -35.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12399 - components: - - pos: -36.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12400 - components: - - pos: -37.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12401 - components: - - pos: -38.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12402 - components: - - pos: -38.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12543 - components: - - pos: 41.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12544 - components: - - pos: 41.5,42.5 - parent: 1 - type: Transform - - uid: 12545 - components: - - pos: 41.5,43.5 - parent: 1 - type: Transform - - uid: 12546 - components: - - pos: 41.5,44.5 - parent: 1 - type: Transform - - uid: 12547 - components: - - pos: 42.5,44.5 - parent: 1 - type: Transform - - uid: 12548 - components: - - pos: 43.5,44.5 - parent: 1 - type: Transform - - uid: 12549 - components: - - pos: 44.5,44.5 - parent: 1 - type: Transform - - uid: 12550 - components: - - pos: 44.5,43.5 - parent: 1 - type: Transform - - uid: 12551 - components: - - pos: 45.5,43.5 - parent: 1 - type: Transform - - uid: 12552 - components: - - pos: 46.5,43.5 - parent: 1 - type: Transform - - uid: 12553 - components: - - pos: 47.5,43.5 - parent: 1 - type: Transform - - uid: 12554 - components: - - pos: 48.5,43.5 - parent: 1 - type: Transform - - uid: 12555 - components: - - pos: 48.5,42.5 - parent: 1 - type: Transform - - uid: 12556 - components: - - pos: 48.5,41.5 - parent: 1 - type: Transform - - uid: 12557 - components: - - pos: 48.5,40.5 - parent: 1 - type: Transform - - uid: 12558 - components: - - pos: 48.5,39.5 - parent: 1 - type: Transform - - uid: 12559 - components: - - pos: 48.5,38.5 - parent: 1 - type: Transform - - uid: 12560 - components: - - pos: 48.5,37.5 - parent: 1 - type: Transform - - uid: 12561 - components: - - pos: 48.5,36.5 - parent: 1 - type: Transform - - uid: 12562 - components: - - pos: 48.5,35.5 - parent: 1 - type: Transform - - uid: 12563 - components: - - pos: 48.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12564 - components: - - pos: 47.5,36.5 - parent: 1 - type: Transform - - uid: 12565 - components: - - pos: 46.5,36.5 - parent: 1 - type: Transform - - uid: 12566 - components: - - pos: 45.5,36.5 - parent: 1 - type: Transform - - uid: 12567 - components: - - pos: 44.5,36.5 - parent: 1 - type: Transform - - uid: 12568 - components: - - pos: 43.5,36.5 - parent: 1 - type: Transform - - uid: 12569 - components: - - pos: 42.5,36.5 - parent: 1 - type: Transform - - uid: 12570 - components: - - pos: 41.5,36.5 - parent: 1 - type: Transform - - uid: 12571 - components: - - pos: 40.5,36.5 - parent: 1 - type: Transform - - uid: 12572 - components: - - pos: 39.5,36.5 - parent: 1 - type: Transform - - uid: 12573 - components: - - pos: 38.5,36.5 - parent: 1 - type: Transform - - uid: 12574 - components: - - pos: 37.5,36.5 - parent: 1 - type: Transform - - uid: 12575 - components: - - pos: 36.5,36.5 - parent: 1 - type: Transform - - uid: 12576 - components: - - pos: 35.5,36.5 - parent: 1 - type: Transform - - uid: 12577 - components: - - pos: 34.5,36.5 - parent: 1 - type: Transform - - uid: 12578 - components: - - pos: 34.5,37.5 - parent: 1 - type: Transform - - uid: 12579 - components: - - pos: 34.5,38.5 - parent: 1 - type: Transform - - uid: 12580 - components: - - pos: 34.5,39.5 - parent: 1 - type: Transform - - uid: 12581 - components: - - pos: 34.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12582 - components: - - pos: 35.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12583 - components: - - pos: 36.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12584 - components: - - pos: 37.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12585 - components: - - pos: 38.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12586 - components: - - pos: 39.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12587 - components: - - pos: 39.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12588 - components: - - pos: 39.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12589 - components: - - pos: 39.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12590 - components: - - pos: 39.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12591 - components: - - pos: 40.5,43.5 - parent: 1 - type: Transform - - uid: 12592 - components: - - pos: 38.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12593 - components: - - pos: 38.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12594 - components: - - pos: 38.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12595 - components: - - pos: 38.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12596 - components: - - pos: 38.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12597 - components: - - pos: 39.5,48.5 - parent: 1 - type: Transform - - uid: 12598 - components: - - pos: 40.5,48.5 - parent: 1 - type: Transform - - uid: 12599 - components: - - pos: 41.5,48.5 - parent: 1 - type: Transform - - uid: 12600 - components: - - pos: 42.5,48.5 - parent: 1 - type: Transform - - uid: 12601 - components: - - pos: 43.5,48.5 - parent: 1 - type: Transform - - uid: 12602 - components: - - pos: 42.5,49.5 - parent: 1 - type: Transform - - uid: 12603 - components: - - pos: 42.5,50.5 - parent: 1 - type: Transform - - uid: 12604 - components: - - pos: 42.5,51.5 - parent: 1 - type: Transform - - uid: 12605 - components: - - pos: 43.5,47.5 - parent: 1 - type: Transform - - uid: 12606 - components: - - pos: 43.5,46.5 - parent: 1 - type: Transform - - uid: 12607 - components: - - pos: 44.5,46.5 - parent: 1 - type: Transform - - uid: 12608 - components: - - pos: 45.5,46.5 - parent: 1 - type: Transform - - uid: 12609 - components: - - pos: 43.5,37.5 - parent: 1 - type: Transform - - uid: 12610 - components: - - pos: 43.5,38.5 - parent: 1 - type: Transform - - uid: 12611 - components: - - pos: 43.5,39.5 - parent: 1 - type: Transform - - uid: 12612 - components: - - pos: 43.5,40.5 - parent: 1 - type: Transform - - uid: 12613 - components: - - pos: 43.5,41.5 - parent: 1 - type: Transform - - uid: 12614 - components: - - pos: 43.5,42.5 - parent: 1 - type: Transform - - uid: 12615 - components: - - pos: 43.5,43.5 - parent: 1 - type: Transform - - uid: 12616 - components: - - pos: 46.5,35.5 - parent: 1 - type: Transform - - uid: 12617 - components: - - pos: 46.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12618 - components: - - pos: 50.5,36.5 - parent: 1 - type: Transform - - uid: 12619 - components: - - pos: 51.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12620 - components: - - pos: 51.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12621 - components: - - pos: 50.5,38.5 - parent: 1 - type: Transform - - uid: 12622 - components: - - pos: 49.5,38.5 - parent: 1 - type: Transform - - uid: 12623 - components: - - pos: 49.5,36.5 - parent: 1 - type: Transform - - uid: 12624 - components: - - pos: 27.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12625 - components: - - pos: 27.5,50.5 - parent: 1 - type: Transform - - uid: 12626 - components: - - pos: 27.5,49.5 - parent: 1 - type: Transform - - uid: 12627 - components: - - pos: 27.5,48.5 - parent: 1 - type: Transform - - uid: 12628 - components: - - pos: 27.5,47.5 - parent: 1 - type: Transform - - uid: 12629 - components: - - pos: 27.5,46.5 - parent: 1 - type: Transform - - uid: 12630 - components: - - pos: 27.5,45.5 - parent: 1 - type: Transform - - uid: 12631 - components: - - pos: 27.5,44.5 - parent: 1 - type: Transform - - uid: 12632 - components: - - pos: 27.5,43.5 - parent: 1 - type: Transform - - uid: 12633 - components: - - pos: 28.5,43.5 - parent: 1 - type: Transform - - uid: 12634 - components: - - pos: 29.5,43.5 - parent: 1 - type: Transform - - uid: 12635 - components: - - pos: 30.5,43.5 - parent: 1 - type: Transform - - uid: 12636 - components: - - pos: 31.5,43.5 - parent: 1 - type: Transform - - uid: 12637 - components: - - pos: 32.5,43.5 - parent: 1 - type: Transform - - uid: 12638 - components: - - pos: 33.5,43.5 - parent: 1 - type: Transform - - uid: 12639 - components: - - pos: 34.5,43.5 - parent: 1 - type: Transform - - uid: 12640 - components: - - pos: 34.5,44.5 - parent: 1 - type: Transform - - uid: 12641 - components: - - pos: 34.5,45.5 - parent: 1 - type: Transform - - uid: 12642 - components: - - pos: 34.5,46.5 - parent: 1 - type: Transform - - uid: 12643 - components: - - pos: 34.5,47.5 - parent: 1 - type: Transform - - uid: 12644 - components: - - pos: 34.5,48.5 - parent: 1 - type: Transform - - uid: 12645 - components: - - pos: 34.5,49.5 - parent: 1 - type: Transform - - uid: 12646 - components: - - pos: 33.5,49.5 - parent: 1 - type: Transform - - uid: 12647 - components: - - pos: 32.5,49.5 - parent: 1 - type: Transform - - uid: 12648 - components: - - pos: 31.5,49.5 - parent: 1 - type: Transform - - uid: 12649 - components: - - pos: 30.5,49.5 - parent: 1 - type: Transform - - uid: 12650 - components: - - pos: 29.5,49.5 - parent: 1 - type: Transform - - uid: 12651 - components: - - pos: 28.5,49.5 - parent: 1 - type: Transform - - uid: 12652 - components: - - pos: 31.5,50.5 - parent: 1 - type: Transform - - uid: 12653 - components: - - pos: 31.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12654 - components: - - pos: 32.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12655 - components: - - pos: 32.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12656 - components: - - pos: 32.5,53.5 - parent: 1 - type: Transform - - uid: 12657 - components: - - pos: 32.5,54.5 - parent: 1 - type: Transform - - uid: 12658 - components: - - pos: 32.5,55.5 - parent: 1 - type: Transform - - uid: 12659 - components: - - pos: 32.5,56.5 - parent: 1 - type: Transform - - uid: 12660 - components: - - pos: 31.5,55.5 - parent: 1 - type: Transform - - uid: 12661 - components: - - pos: 30.5,55.5 - parent: 1 - type: Transform - - uid: 12662 - components: - - pos: 33.5,55.5 - parent: 1 - type: Transform - - uid: 12663 - components: - - pos: 34.5,55.5 - parent: 1 - type: Transform - - uid: 12664 - components: - - pos: 33.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12665 - components: - - pos: 34.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12666 - components: - - pos: 35.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12667 - components: - - pos: 36.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12668 - components: - - pos: 36.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12669 - components: - - pos: 36.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12670 - components: - - pos: 36.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12671 - components: - - pos: 36.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12672 - components: - - pos: 36.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12673 - components: - - pos: 36.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12674 - components: - - pos: 36.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12675 - components: - - pos: 36.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12676 - components: - - pos: 36.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12677 - components: - - pos: 36.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12678 - components: - - pos: 36.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12679 - components: - - pos: 30.5,42.5 - parent: 1 - type: Transform - - uid: 12680 - components: - - pos: 30.5,41.5 - parent: 1 - type: Transform - - uid: 12681 - components: - - pos: 30.5,40.5 - parent: 1 - type: Transform - - uid: 12682 - components: - - pos: 30.5,39.5 - parent: 1 - type: Transform - - uid: 12683 - components: - - pos: 30.5,38.5 - parent: 1 - type: Transform - - uid: 12684 - components: - - pos: 29.5,38.5 - parent: 1 - type: Transform - - uid: 12685 - components: - - pos: 28.5,38.5 - parent: 1 - type: Transform - - uid: 12686 - components: - - pos: 27.5,38.5 - parent: 1 - type: Transform - - uid: 12687 - components: - - pos: 26.5,38.5 - parent: 1 - type: Transform - - uid: 12688 - components: - - pos: 25.5,38.5 - parent: 1 - type: Transform - - uid: 12689 - components: - - pos: 26.5,47.5 - parent: 1 - type: Transform - - uid: 12690 - components: - - pos: 25.5,47.5 - parent: 1 - type: Transform - - uid: 12691 - components: - - pos: 26.5,50.5 - parent: 1 - type: Transform - - uid: 12692 - components: - - pos: 25.5,50.5 - parent: 1 - type: Transform - - uid: 12693 - components: - - pos: 25.5,51.5 - parent: 1 - type: Transform - - uid: 12694 - components: - - pos: 25.5,52.5 - parent: 1 - type: Transform - - uid: 12695 - components: - - pos: 25.5,53.5 - parent: 1 - type: Transform - - uid: 12696 - components: - - pos: 25.5,54.5 - parent: 1 - type: Transform - - uid: 12697 - components: - - pos: 24.5,51.5 - parent: 1 - type: Transform - - uid: 12698 - components: - - pos: 23.5,51.5 - parent: 1 - type: Transform - - uid: 12699 - components: - - pos: 22.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12700 - components: - - pos: 22.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12701 - components: - - pos: 22.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12702 - components: - - pos: 22.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12703 - components: - - pos: 22.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12704 - components: - - pos: 22.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12705 - components: - - pos: 22.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12706 - components: - - pos: 23.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12707 - components: - - pos: 24.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12708 - components: - - pos: 25.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12709 - components: - - pos: 26.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12710 - components: - - pos: 27.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12711 - components: - - pos: 28.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12712 - components: - - pos: 28.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12713 - components: - - pos: 28.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12714 - components: - - pos: 28.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12715 - components: - - pos: 28.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12716 - components: - - pos: 28.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12717 - components: - - pos: 29.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12718 - components: - - pos: 29.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12719 - components: - - pos: 30.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12720 - components: - - pos: 24.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12721 - components: - - pos: 23.5,42.5 - parent: 1 - type: Transform - - uid: 12722 - components: - - pos: 22.5,42.5 - parent: 1 - type: Transform - - uid: 12723 - components: - - pos: 21.5,42.5 - parent: 1 - type: Transform - - uid: 12724 - components: - - pos: 20.5,42.5 - parent: 1 - type: Transform - - uid: 12725 - components: - - pos: 19.5,42.5 - parent: 1 - type: Transform - - uid: 12726 - components: - - pos: 18.5,42.5 - parent: 1 - type: Transform - - uid: 12727 - components: - - pos: 17.5,42.5 - parent: 1 - type: Transform - - uid: 12728 - components: - - pos: 25.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12729 - components: - - pos: 25.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12730 - components: - - pos: 25.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12731 - components: - - pos: 25.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12732 - components: - - pos: 24.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12733 - components: - - pos: 23.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12734 - components: - - pos: 22.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12735 - components: - - pos: 22.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12736 - components: - - pos: 22.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12737 - components: - - pos: 22.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12738 - components: - - pos: 22.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12739 - components: - - pos: 21.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12740 - components: - - pos: 20.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12741 - components: - - pos: 19.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12742 - components: - - pos: 18.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12743 - components: - - pos: 17.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12744 - components: - - pos: 16.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12745 - components: - - pos: 16.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12746 - components: - - pos: 16.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12747 - components: - - pos: 16.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12748 - components: - - pos: 17.5,52.5 - parent: 1 - type: Transform - - uid: 12749 - components: - - pos: 18.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12750 - components: - - pos: 19.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12751 - components: - - pos: 20.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12752 - components: - - pos: 20.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12753 - components: - - pos: 15.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12754 - components: - - pos: 15.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12755 - components: - - pos: 15.5,48.5 - parent: 1 - type: Transform - - uid: 12756 - components: - - pos: 15.5,47.5 - parent: 1 - type: Transform - - uid: 12757 - components: - - pos: 15.5,46.5 - parent: 1 - type: Transform - - uid: 12758 - components: - - pos: 15.5,45.5 - parent: 1 - type: Transform - - uid: 12759 - components: - - pos: 15.5,44.5 - parent: 1 - type: Transform - - uid: 12760 - components: - - pos: 15.5,43.5 - parent: 1 - type: Transform - - uid: 12761 - components: - - pos: 15.5,42.5 - parent: 1 - type: Transform - - uid: 12762 - components: - - pos: 15.5,41.5 - parent: 1 - type: Transform - - uid: 12763 - components: - - pos: 15.5,40.5 - parent: 1 - type: Transform - - uid: 12764 - components: - - pos: 16.5,45.5 - parent: 1 - type: Transform - - uid: 12765 - components: - - pos: 17.5,45.5 - parent: 1 - type: Transform - - uid: 12766 - components: - - pos: 18.5,45.5 - parent: 1 - type: Transform - - uid: 12767 - components: - - pos: 19.5,45.5 - parent: 1 - type: Transform - - uid: 12768 - components: - - pos: 20.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12769 - components: - - pos: 21.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12770 - components: - - pos: 14.5,44.5 - parent: 1 - type: Transform - - uid: 12771 - components: - - pos: 13.5,44.5 - parent: 1 - type: Transform - - uid: 12772 - components: - - pos: 12.5,44.5 - parent: 1 - type: Transform - - uid: 12773 - components: - - pos: 11.5,44.5 - parent: 1 - type: Transform - - uid: 12774 - components: - - pos: 14.5,42.5 - parent: 1 - type: Transform - - uid: 12775 - components: - - pos: 13.5,42.5 - parent: 1 - type: Transform - - uid: 12776 - components: - - pos: 12.5,42.5 - parent: 1 - type: Transform - - uid: 12777 - components: - - pos: 11.5,42.5 - parent: 1 - type: Transform - - uid: 12778 - components: - - pos: 14.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12779 - components: - - pos: 13.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12780 - components: - - pos: 12.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12781 - components: - - pos: 11.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12782 - components: - - pos: 10.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12783 - components: - - pos: 9.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12784 - components: - - pos: 9.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12785 - components: - - pos: 9.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12786 - components: - - pos: 9.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12787 - components: - - pos: 9.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12788 - components: - - pos: 9.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12789 - components: - - pos: 9.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12790 - components: - - pos: 9.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12791 - components: - - pos: 9.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12792 - components: - - pos: 9.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12793 - components: - - pos: 8.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12794 - components: - - pos: 7.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12795 - components: - - pos: 6.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12796 - components: - - pos: 5.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12797 - components: - - pos: 4.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12798 - components: - - pos: 3.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12799 - components: - - pos: 2.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12800 - components: - - pos: 6.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12801 - components: - - pos: 5.5,46.5 - parent: 1 - type: Transform - - uid: 12802 - components: - - pos: 4.5,46.5 - parent: 1 - type: Transform - - uid: 12803 - components: - - pos: 3.5,46.5 - parent: 1 - type: Transform - - uid: 12804 - components: - - pos: 2.5,46.5 - parent: 1 - type: Transform - - uid: 12805 - components: - - pos: 1.5,46.5 - parent: 1 - type: Transform - - uid: 12806 - components: - - pos: 0.5,46.5 - parent: 1 - type: Transform - - uid: 12807 - components: - - pos: 0.5,47.5 - parent: 1 - type: Transform - - uid: 12808 - components: - - pos: 0.5,48.5 - parent: 1 - type: Transform - - uid: 12809 - components: - - pos: 0.5,49.5 - parent: 1 - type: Transform - - uid: 12810 - components: - - pos: 0.5,50.5 - parent: 1 - type: Transform - - uid: 12811 - components: - - pos: 0.5,45.5 - parent: 1 - type: Transform - - uid: 12812 - components: - - pos: 0.5,44.5 - parent: 1 - type: Transform - - uid: 12813 - components: - - pos: 0.5,43.5 - parent: 1 - type: Transform - - uid: 12814 - components: - - pos: 0.5,42.5 - parent: 1 - type: Transform - - uid: 12815 - components: - - pos: 0.5,41.5 - parent: 1 - type: Transform - - uid: 12816 - components: - - pos: 0.5,40.5 - parent: 1 - type: Transform - - uid: 12817 - components: - - pos: 5.5,47.5 - parent: 1 - type: Transform - - uid: 12818 - components: - - pos: 5.5,48.5 - parent: 1 - type: Transform - - uid: 12819 - components: - - pos: 5.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12826 - components: - - pos: 36.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12827 - components: - - pos: 37.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12828 - components: - - pos: 37.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12829 - components: - - pos: 37.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12830 - components: - - pos: 37.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12831 - components: - - pos: 37.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12832 - components: - - pos: 37.5,59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12833 - components: - - pos: 37.5,60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12834 - components: - - pos: 17.5,41.5 - parent: 1 - type: Transform - - uid: 12835 - components: - - pos: 17.5,40.5 - parent: 1 - type: Transform - - uid: 12836 - components: - - pos: 17.5,39.5 - parent: 1 - type: Transform - - uid: 12837 - components: - - pos: 17.5,38.5 - parent: 1 - type: Transform - - uid: 12838 - components: - - pos: 16.5,38.5 - parent: 1 - type: Transform - - uid: 12839 - components: - - pos: 15.5,38.5 - parent: 1 - type: Transform - - uid: 12840 - components: - - pos: 15.5,39.5 - parent: 1 - type: Transform - - uid: 12841 - components: - - pos: 13.5,38.5 - parent: 1 - type: Transform - - uid: 12842 - components: - - pos: 12.5,38.5 - parent: 1 - type: Transform - - uid: 12843 - components: - - pos: 11.5,38.5 - parent: 1 - type: Transform - - uid: 12844 - components: - - pos: 10.5,38.5 - parent: 1 - type: Transform - - uid: 12845 - components: - - pos: 9.5,38.5 - parent: 1 - type: Transform - - uid: 12846 - components: - - pos: 8.5,38.5 - parent: 1 - type: Transform - - uid: 12847 - components: - - pos: 7.5,38.5 - parent: 1 - type: Transform - - uid: 12848 - components: - - pos: 6.5,38.5 - parent: 1 - type: Transform - - uid: 12849 - components: - - pos: 5.5,38.5 - parent: 1 - type: Transform - - uid: 12850 - components: - - pos: 4.5,38.5 - parent: 1 - type: Transform - - uid: 12851 - components: - - pos: 3.5,38.5 - parent: 1 - type: Transform - - uid: 12852 - components: - - pos: 2.5,38.5 - parent: 1 - type: Transform - - uid: 12853 - components: - - pos: 1.5,38.5 - parent: 1 - type: Transform - - uid: 12854 - components: - - pos: 0.5,38.5 - parent: 1 - type: Transform - - uid: 12855 - components: - - pos: -8.5,37.5 - parent: 1 - type: Transform - - uid: 12856 - components: - - pos: 18.5,38.5 - parent: 1 - type: Transform - - uid: 12857 - components: - - pos: 19.5,38.5 - parent: 1 - type: Transform - - uid: 12858 - components: - - pos: 20.5,38.5 - parent: 1 - type: Transform - - uid: 12859 - components: - - pos: 21.5,38.5 - parent: 1 - type: Transform - - uid: 12860 - components: - - pos: 22.5,38.5 - parent: 1 - type: Transform - - uid: 12861 - components: - - pos: 23.5,38.5 - parent: 1 - type: Transform - - uid: 12923 - components: - - pos: 2.5,31.5 - parent: 1 - type: Transform - - uid: 12924 - components: - - pos: 3.5,31.5 - parent: 1 - type: Transform - - uid: 12925 - components: - - pos: 4.5,31.5 - parent: 1 - type: Transform - - uid: 12926 - components: - - pos: 5.5,31.5 - parent: 1 - type: Transform - - uid: 12927 - components: - - pos: 6.5,31.5 - parent: 1 - type: Transform - - uid: 12928 - components: - - pos: 7.5,31.5 - parent: 1 - type: Transform - - uid: 12929 - components: - - pos: 8.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12930 - components: - - pos: 9.5,31.5 - parent: 1 - type: Transform - - uid: 12931 - components: - - pos: 10.5,31.5 - parent: 1 - type: Transform - - uid: 12932 - components: - - pos: 11.5,31.5 - parent: 1 - type: Transform - - uid: 12933 - components: - - pos: 12.5,31.5 - parent: 1 - type: Transform - - uid: 12934 - components: - - pos: 13.5,31.5 - parent: 1 - type: Transform - - uid: 12935 - components: - - pos: 14.5,31.5 - parent: 1 - type: Transform - - uid: 12936 - components: - - pos: 15.5,31.5 - parent: 1 - type: Transform - - uid: 12937 - components: - - pos: 16.5,31.5 - parent: 1 - type: Transform - - uid: 12938 - components: - - pos: 16.5,32.5 - parent: 1 - type: Transform - - uid: 12939 - components: - - pos: 16.5,33.5 - parent: 1 - type: Transform - - uid: 12940 - components: - - pos: 16.5,34.5 - parent: 1 - type: Transform - - uid: 12941 - components: - - pos: 2.5,32.5 - parent: 1 - type: Transform - - uid: 12942 - components: - - pos: 2.5,33.5 - parent: 1 - type: Transform - - uid: 12943 - components: - - pos: 2.5,34.5 - parent: 1 - type: Transform - - uid: 12944 - components: - - pos: 5.5,32.5 - parent: 1 - type: Transform - - uid: 12945 - components: - - pos: 5.5,33.5 - parent: 1 - type: Transform - - uid: 12946 - components: - - pos: 5.5,34.5 - parent: 1 - type: Transform - - uid: 12947 - components: - - pos: 10.5,32.5 - parent: 1 - type: Transform - - uid: 12948 - components: - - pos: 10.5,33.5 - parent: 1 - type: Transform - - uid: 12949 - components: - - pos: 10.5,34.5 - parent: 1 - type: Transform - - uid: 12950 - components: - - pos: 4.5,30.5 - parent: 1 - type: Transform - - uid: 12951 - components: - - pos: 4.5,29.5 - parent: 1 - type: Transform - - uid: 12952 - components: - - pos: 4.5,28.5 - parent: 1 - type: Transform - - uid: 12953 - components: - - pos: 4.5,27.5 - parent: 1 - type: Transform - - uid: 12954 - components: - - pos: 10.5,30.5 - parent: 1 - type: Transform - - uid: 12955 - components: - - pos: 6.5,30.5 - parent: 1 - type: Transform - - uid: 12956 - components: - - pos: 5.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12957 - components: - - pos: 6.5,26.5 - parent: 1 - type: Transform - - uid: 12958 - components: - - pos: 6.5,25.5 - parent: 1 - type: Transform - - uid: 12959 - components: - - pos: 6.5,24.5 - parent: 1 - type: Transform - - uid: 12960 - components: - - pos: 6.5,23.5 - parent: 1 - type: Transform - - uid: 12961 - components: - - pos: 6.5,22.5 - parent: 1 - type: Transform - - uid: 12962 - components: - - pos: 7.5,22.5 - parent: 1 - type: Transform - - uid: 12963 - components: - - pos: 8.5,22.5 - parent: 1 - type: Transform - - uid: 12964 - components: - - pos: 9.5,22.5 - parent: 1 - type: Transform - - uid: 12965 - components: - - pos: 9.5,23.5 - parent: 1 - type: Transform - - uid: 12966 - components: - - pos: 5.5,23.5 - parent: 1 - type: Transform - - uid: 12967 - components: - - pos: 4.5,23.5 - parent: 1 - type: Transform - - uid: 12968 - components: - - pos: 3.5,23.5 - parent: 1 - type: Transform - - uid: 12969 - components: - - pos: 2.5,23.5 - parent: 1 - type: Transform - - uid: 12970 - components: - - pos: 2.5,22.5 - parent: 1 - type: Transform - - uid: 12971 - components: - - pos: 2.5,21.5 - parent: 1 - type: Transform - - uid: 12972 - components: - - pos: 3.5,21.5 - parent: 1 - type: Transform - - uid: 12973 - components: - - pos: 3.5,20.5 - parent: 1 - type: Transform - - uid: 12974 - components: - - pos: 3.5,24.5 - parent: 1 - type: Transform - - uid: 12975 - components: - - pos: 3.5,25.5 - parent: 1 - type: Transform - - uid: 12976 - components: - - pos: 10.5,22.5 - parent: 1 - type: Transform - - uid: 12977 - components: - - pos: 10.5,23.5 - parent: 1 - type: Transform - - uid: 12978 - components: - - pos: 10.5,24.5 - parent: 1 - type: Transform - - uid: 12979 - components: - - pos: 10.5,25.5 - parent: 1 - type: Transform - - uid: 12980 - components: - - pos: 10.5,26.5 - parent: 1 - type: Transform - - uid: 12981 - components: - - pos: 10.5,27.5 - parent: 1 - type: Transform - - uid: 12982 - components: - - pos: 9.5,27.5 - parent: 1 - type: Transform - - uid: 12983 - components: - - pos: 8.5,27.5 - parent: 1 - type: Transform - - uid: 12984 - components: - - pos: 7.5,27.5 - parent: 1 - type: Transform - - uid: 12985 - components: - - pos: 6.5,27.5 - parent: 1 - type: Transform - - uid: 12986 - components: - - pos: 11.5,27.5 - parent: 1 - type: Transform - - uid: 12987 - components: - - pos: 12.5,27.5 - parent: 1 - type: Transform - - uid: 12988 - components: - - pos: 12.5,26.5 - parent: 1 - type: Transform - - uid: 12989 - components: - - pos: 12.5,25.5 - parent: 1 - type: Transform - - uid: 12990 - components: - - pos: 12.5,24.5 - parent: 1 - type: Transform - - uid: 12991 - components: - - pos: 12.5,23.5 - parent: 1 - type: Transform - - uid: 12992 - components: - - pos: 12.5,22.5 - parent: 1 - type: Transform - - uid: 12993 - components: - - pos: 11.5,22.5 - parent: 1 - type: Transform - - uid: 12994 - components: - - pos: 17.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12995 - components: - - pos: 16.5,19.5 - parent: 1 - type: Transform - - uid: 12996 - components: - - pos: 15.5,19.5 - parent: 1 - type: Transform - - uid: 12997 - components: - - pos: 14.5,19.5 - parent: 1 - type: Transform - - uid: 12998 - components: - - pos: 13.5,19.5 - parent: 1 - type: Transform - - uid: 12999 - components: - - pos: 12.5,19.5 - parent: 1 - type: Transform - - uid: 13000 - components: - - pos: 11.5,19.5 - parent: 1 - type: Transform - - uid: 13001 - components: - - pos: 10.5,19.5 - parent: 1 - type: Transform - - uid: 13002 - components: - - pos: 9.5,19.5 - parent: 1 - type: Transform - - uid: 13003 - components: - - pos: 8.5,19.5 - parent: 1 - type: Transform - - uid: 13004 - components: - - pos: 7.5,19.5 - parent: 1 - type: Transform - - uid: 13005 - components: - - pos: 6.5,19.5 - parent: 1 - type: Transform - - uid: 13006 - components: - - pos: 6.5,18.5 - parent: 1 - type: Transform - - uid: 13007 - components: - - pos: 5.5,18.5 - parent: 1 - type: Transform - - uid: 13008 - components: - - pos: 4.5,18.5 - parent: 1 - type: Transform - - uid: 13009 - components: - - pos: 3.5,18.5 - parent: 1 - type: Transform - - uid: 13010 - components: - - pos: 2.5,18.5 - parent: 1 - type: Transform - - uid: 13011 - components: - - pos: 1.5,18.5 - parent: 1 - type: Transform - - uid: 13012 - components: - - pos: 4.5,17.5 - parent: 1 - type: Transform - - uid: 13013 - components: - - pos: 4.5,16.5 - parent: 1 - type: Transform - - uid: 13014 - components: - - pos: 4.5,15.5 - parent: 1 - type: Transform - - uid: 13015 - components: - - pos: 3.5,15.5 - parent: 1 - type: Transform - - uid: 13016 - components: - - pos: 2.5,15.5 - parent: 1 - type: Transform - - uid: 13017 - components: - - pos: 1.5,15.5 - parent: 1 - type: Transform - - uid: 13018 - components: - - pos: 0.5,15.5 - parent: 1 - type: Transform - - uid: 13019 - components: - - pos: 5.5,15.5 - parent: 1 - type: Transform - - uid: 13020 - components: - - pos: 6.5,15.5 - parent: 1 - type: Transform - - uid: 13021 - components: - - pos: 7.5,15.5 - parent: 1 - type: Transform - - uid: 13022 - components: - - pos: 8.5,15.5 - parent: 1 - type: Transform - - uid: 13023 - components: - - pos: 9.5,15.5 - parent: 1 - type: Transform - - uid: 13024 - components: - - pos: 10.5,15.5 - parent: 1 - type: Transform - - uid: 13025 - components: - - pos: 11.5,15.5 - parent: 1 - type: Transform - - uid: 13026 - components: - - pos: 12.5,15.5 - parent: 1 - type: Transform - - uid: 13027 - components: - - pos: 13.5,15.5 - parent: 1 - type: Transform - - uid: 13028 - components: - - pos: 14.5,15.5 - parent: 1 - type: Transform - - uid: 13029 - components: - - pos: 15.5,15.5 - parent: 1 - type: Transform - - uid: 13030 - components: - - pos: 16.5,15.5 - parent: 1 - type: Transform - - uid: 13031 - components: - - pos: 17.5,15.5 - parent: 1 - type: Transform - - uid: 13032 - components: - - pos: 18.5,15.5 - parent: 1 - type: Transform - - uid: 13033 - components: - - pos: 19.5,15.5 - parent: 1 - type: Transform - - uid: 13034 - components: - - pos: 19.5,16.5 - parent: 1 - type: Transform - - uid: 13035 - components: - - pos: 19.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13036 - components: - - pos: 19.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13037 - components: - - pos: 19.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13038 - components: - - pos: 18.5,19.5 - parent: 1 - type: Transform - - uid: 13039 - components: - - pos: 20.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13040 - components: - - pos: 20.5,31.5 - parent: 1 - type: Transform - - uid: 13041 - components: - - pos: 20.5,32.5 - parent: 1 - type: Transform - - uid: 13042 - components: - - pos: 20.5,33.5 - parent: 1 - type: Transform - - uid: 13043 - components: - - pos: 20.5,34.5 - parent: 1 - type: Transform - - uid: 13044 - components: - - pos: 19.5,34.5 - parent: 1 - type: Transform - - uid: 13045 - components: - - pos: 21.5,34.5 - parent: 1 - type: Transform - - uid: 13046 - components: - - pos: 20.5,29.5 - parent: 1 - type: Transform - - uid: 13047 - components: - - pos: 20.5,28.5 - parent: 1 - type: Transform - - uid: 13048 - components: - - pos: 20.5,27.5 - parent: 1 - type: Transform - - uid: 13049 - components: - - pos: 20.5,26.5 - parent: 1 - type: Transform - - uid: 13050 - components: - - pos: 21.5,27.5 - parent: 1 - type: Transform - - uid: 13051 - components: - - pos: 22.5,27.5 - parent: 1 - type: Transform - - uid: 13053 - components: - - pos: 18.5,27.5 - parent: 1 - type: Transform - - uid: 13054 - components: - - pos: 18.5,28.5 - parent: 1 - type: Transform - - uid: 13055 - components: - - pos: 17.5,28.5 - parent: 1 - type: Transform - - uid: 13056 - components: - - pos: 16.5,28.5 - parent: 1 - type: Transform - - uid: 13057 - components: - - pos: 15.5,28.5 - parent: 1 - type: Transform - - uid: 13058 - components: - - pos: 14.5,28.5 - parent: 1 - type: Transform - - uid: 13059 - components: - - pos: 23.5,27.5 - parent: 1 - type: Transform - - uid: 13060 - components: - - pos: 24.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13061 - components: - - pos: 24.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13062 - components: - - pos: 24.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13063 - components: - - pos: 24.5,30.5 - parent: 1 - type: Transform - - uid: 13064 - components: - - pos: 24.5,31.5 - parent: 1 - type: Transform - - uid: 13065 - components: - - pos: 24.5,32.5 - parent: 1 - type: Transform - - uid: 13066 - components: - - pos: 24.5,33.5 - parent: 1 - type: Transform - - uid: 13067 - components: - - pos: 24.5,34.5 - parent: 1 - type: Transform - - uid: 13068 - components: - - pos: 25.5,34.5 - parent: 1 - type: Transform - - uid: 13069 - components: - - pos: 26.5,34.5 - parent: 1 - type: Transform - - uid: 13070 - components: - - pos: 27.5,34.5 - parent: 1 - type: Transform - - uid: 13071 - components: - - pos: 27.5,33.5 - parent: 1 - type: Transform - - uid: 13072 - components: - - pos: 27.5,32.5 - parent: 1 - type: Transform - - uid: 13073 - components: - - pos: 27.5,31.5 - parent: 1 - type: Transform - - uid: 13074 - components: - - pos: 24.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13075 - components: - - pos: 24.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13076 - components: - - pos: 24.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13077 - components: - - pos: 25.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13078 - components: - - pos: 26.5,25.5 - parent: 1 - type: Transform - - uid: 13079 - components: - - pos: 27.5,25.5 - parent: 1 - type: Transform - - uid: 13080 - components: - - pos: 28.5,25.5 - parent: 1 - type: Transform - - uid: 13081 - components: - - pos: 29.5,25.5 - parent: 1 - type: Transform - - uid: 13082 - components: - - pos: 30.5,25.5 - parent: 1 - type: Transform - - uid: 13083 - components: - - pos: 31.5,25.5 - parent: 1 - type: Transform - - uid: 13084 - components: - - pos: 32.5,25.5 - parent: 1 - type: Transform - - uid: 13085 - components: - - pos: 32.5,26.5 - parent: 1 - type: Transform - - uid: 13086 - components: - - pos: 32.5,27.5 - parent: 1 - type: Transform - - uid: 13087 - components: - - pos: 32.5,28.5 - parent: 1 - type: Transform - - uid: 13088 - components: - - pos: 32.5,29.5 - parent: 1 - type: Transform - - uid: 13089 - components: - - pos: 32.5,30.5 - parent: 1 - type: Transform - - uid: 13090 - components: - - pos: 32.5,31.5 - parent: 1 - type: Transform - - uid: 13091 - components: - - pos: 32.5,32.5 - parent: 1 - type: Transform - - uid: 13092 - components: - - pos: 32.5,33.5 - parent: 1 - type: Transform - - uid: 13093 - components: - - pos: 32.5,34.5 - parent: 1 - type: Transform - - uid: 13094 - components: - - pos: 32.5,24.5 - parent: 1 - type: Transform - - uid: 13095 - components: - - pos: 32.5,23.5 - parent: 1 - type: Transform - - uid: 13096 - components: - - pos: 32.5,22.5 - parent: 1 - type: Transform - - uid: 13097 - components: - - pos: 32.5,21.5 - parent: 1 - type: Transform - - uid: 13098 - components: - - pos: 32.5,20.5 - parent: 1 - type: Transform - - uid: 13099 - components: - - pos: 32.5,19.5 - parent: 1 - type: Transform - - uid: 13100 - components: - - pos: 32.5,18.5 - parent: 1 - type: Transform - - uid: 13101 - components: - - pos: 32.5,17.5 - parent: 1 - type: Transform - - uid: 13102 - components: - - pos: 32.5,16.5 - parent: 1 - type: Transform - - uid: 13103 - components: - - pos: 32.5,15.5 - parent: 1 - type: Transform - - uid: 13104 - components: - - pos: 32.5,14.5 - parent: 1 - type: Transform - - uid: 13105 - components: - - pos: 32.5,13.5 - parent: 1 - type: Transform - - uid: 13106 - components: - - pos: 31.5,13.5 - parent: 1 - type: Transform - - uid: 13107 - components: - - pos: 30.5,13.5 - parent: 1 - type: Transform - - uid: 13108 - components: - - pos: 29.5,13.5 - parent: 1 - type: Transform - - uid: 13109 - components: - - pos: 28.5,13.5 - parent: 1 - type: Transform - - uid: 13110 - components: - - pos: 27.5,13.5 - parent: 1 - type: Transform - - uid: 13111 - components: - - pos: 26.5,13.5 - parent: 1 - type: Transform - - uid: 13112 - components: - - pos: 25.5,13.5 - parent: 1 - type: Transform - - uid: 13113 - components: - - pos: 24.5,13.5 - parent: 1 - type: Transform - - uid: 13114 - components: - - pos: 23.5,13.5 - parent: 1 - type: Transform - - uid: 13115 - components: - - pos: 22.5,13.5 - parent: 1 - type: Transform - - uid: 13116 - components: - - pos: 21.5,13.5 - parent: 1 - type: Transform - - uid: 13117 - components: - - pos: 23.5,14.5 - parent: 1 - type: Transform - - uid: 13118 - components: - - pos: 23.5,15.5 - parent: 1 - type: Transform - - uid: 13119 - components: - - pos: 23.5,16.5 - parent: 1 - type: Transform - - uid: 13120 - components: - - pos: 23.5,17.5 - parent: 1 - type: Transform - - uid: 13121 - components: - - pos: 23.5,18.5 - parent: 1 - type: Transform - - uid: 13122 - components: - - pos: 23.5,19.5 - parent: 1 - type: Transform - - uid: 13123 - components: - - pos: 24.5,19.5 - parent: 1 - type: Transform - - uid: 13124 - components: - - pos: 24.5,20.5 - parent: 1 - type: Transform - - uid: 13125 - components: - - pos: 24.5,21.5 - parent: 1 - type: Transform - - uid: 13126 - components: - - pos: 24.5,22.5 - parent: 1 - type: Transform - - uid: 13127 - components: - - pos: 25.5,22.5 - parent: 1 - type: Transform - - uid: 13128 - components: - - pos: 26.5,22.5 - parent: 1 - type: Transform - - uid: 13129 - components: - - pos: 27.5,22.5 - parent: 1 - type: Transform - - uid: 13130 - components: - - pos: 27.5,21.5 - parent: 1 - type: Transform - - uid: 13131 - components: - - pos: 28.5,21.5 - parent: 1 - type: Transform - - uid: 13132 - components: - - pos: 29.5,21.5 - parent: 1 - type: Transform - - uid: 13133 - components: - - pos: 30.5,21.5 - parent: 1 - type: Transform - - uid: 13134 - components: - - pos: 31.5,21.5 - parent: 1 - type: Transform - - uid: 13135 - components: - - pos: 29.5,14.5 - parent: 1 - type: Transform - - uid: 13136 - components: - - pos: 29.5,15.5 - parent: 1 - type: Transform - - uid: 13137 - components: - - pos: 29.5,16.5 - parent: 1 - type: Transform - - uid: 13138 - components: - - pos: 29.5,17.5 - parent: 1 - type: Transform - - uid: 13139 - components: - - pos: 30.5,17.5 - parent: 1 - type: Transform - - uid: 13140 - components: - - pos: 31.5,17.5 - parent: 1 - type: Transform - - uid: 13186 - components: - - pos: 11.5,-5.5 - parent: 1 - type: Transform - - uid: 13187 - components: - - pos: 11.5,-6.5 - parent: 1 - type: Transform - - uid: 13188 - components: - - pos: 11.5,-7.5 - parent: 1 - type: Transform - - uid: 13189 - components: - - pos: 10.5,-7.5 - parent: 1 - type: Transform - - uid: 13190 - components: - - pos: 9.5,-7.5 - parent: 1 - type: Transform - - uid: 13191 - components: - - pos: 8.5,-7.5 - parent: 1 - type: Transform - - uid: 13192 - components: - - pos: 7.5,-7.5 - parent: 1 - type: Transform - - uid: 13193 - components: - - pos: 6.5,-7.5 - parent: 1 - type: Transform - - uid: 13194 - components: - - pos: 5.5,-7.5 - parent: 1 - type: Transform - - uid: 13195 - components: - - pos: 4.5,-7.5 - parent: 1 - type: Transform - - uid: 13208 - components: - - pos: 1.5,19.5 - parent: 1 - type: Transform - - uid: 13209 - components: - - pos: 0.5,19.5 - parent: 1 - type: Transform - - uid: 13210 - components: - - pos: 0.5,20.5 - parent: 1 - type: Transform - - uid: 13211 - components: - - pos: 0.5,21.5 - parent: 1 - type: Transform - - uid: 13212 - components: - - pos: 0.5,22.5 - parent: 1 - type: Transform - - uid: 13213 - components: - - pos: 0.5,23.5 - parent: 1 - type: Transform - - uid: 13214 - components: - - pos: 0.5,24.5 - parent: 1 - type: Transform - - uid: 13215 - components: - - pos: 0.5,25.5 - parent: 1 - type: Transform - - uid: 13216 - components: - - pos: 0.5,26.5 - parent: 1 - type: Transform - - uid: 13217 - components: - - pos: 0.5,27.5 - parent: 1 - type: Transform - - uid: 13218 - components: - - pos: 0.5,28.5 - parent: 1 - type: Transform - - uid: 13219 - components: - - pos: 0.5,29.5 - parent: 1 - type: Transform - - uid: 13220 - components: - - pos: 0.5,30.5 - parent: 1 - type: Transform - - uid: 13221 - components: - - pos: 0.5,31.5 - parent: 1 - type: Transform - - uid: 13222 - components: - - pos: 0.5,32.5 - parent: 1 - type: Transform - - uid: 13223 - components: - - pos: 0.5,33.5 - parent: 1 - type: Transform - - uid: 13224 - components: - - pos: 0.5,34.5 - parent: 1 - type: Transform - - uid: 13225 - components: - - pos: 15.5,20.5 - parent: 1 - type: Transform - - uid: 13226 - components: - - pos: 15.5,21.5 - parent: 1 - type: Transform - - uid: 13227 - components: - - pos: 15.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13228 - components: - - pos: 14.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13229 - components: - - pos: 14.5,23.5 - parent: 1 - type: Transform - - uid: 13230 - components: - - pos: 14.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13231 - components: - - pos: 15.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13232 - components: - - pos: 16.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13234 - components: - - pos: 16.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13235 - components: - - pos: 17.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13236 - components: - - pos: 28.5,26.5 - parent: 1 - type: Transform - - uid: 13237 - components: - - pos: 28.5,27.5 - parent: 1 - type: Transform - - uid: 13238 - components: - - pos: 28.5,29.5 - parent: 1 - type: Transform - - uid: 13239 - components: - - pos: 28.5,28.5 - parent: 1 - type: Transform - - uid: 13240 - components: - - pos: 23.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13241 - components: - - pos: 22.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13242 - components: - - pos: 21.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13243 - components: - - pos: 20.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13244 - components: - - pos: 19.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13245 - components: - - pos: 24.5,17.5 - parent: 1 - type: Transform - - uid: 13246 - components: - - pos: 25.5,17.5 - parent: 1 - type: Transform - - uid: 13247 - components: - - pos: 27.5,20.5 - parent: 1 - type: Transform - - uid: 13248 - components: - - pos: 27.5,19.5 - parent: 1 - type: Transform - - uid: 13249 - components: - - pos: 33.5,14.5 - parent: 1 - type: Transform - - uid: 13250 - components: - - pos: 34.5,14.5 - parent: 1 - type: Transform - - uid: 13251 - components: - - pos: 35.5,14.5 - parent: 1 - type: Transform - - uid: 13252 - components: - - pos: 36.5,14.5 - parent: 1 - type: Transform - - uid: 13253 - components: - - pos: 37.5,14.5 - parent: 1 - type: Transform - - uid: 13254 - components: - - pos: 38.5,14.5 - parent: 1 - type: Transform - - uid: 13255 - components: - - pos: 39.5,14.5 - parent: 1 - type: Transform - - uid: 13256 - components: - - pos: 40.5,14.5 - parent: 1 - type: Transform - - uid: 13257 - components: - - pos: 41.5,14.5 - parent: 1 - type: Transform - - uid: 13258 - components: - - pos: 42.5,14.5 - parent: 1 - type: Transform - - uid: 13259 - components: - - pos: 43.5,14.5 - parent: 1 - type: Transform - - uid: 13260 - components: - - pos: 44.5,14.5 - parent: 1 - type: Transform - - uid: 13261 - components: - - pos: 45.5,14.5 - parent: 1 - type: Transform - - uid: 13262 - components: - - pos: 46.5,14.5 - parent: 1 - type: Transform - - uid: 13263 - components: - - pos: 47.5,14.5 - parent: 1 - type: Transform - - uid: 13264 - components: - - pos: 48.5,14.5 - parent: 1 - type: Transform - - uid: 13265 - components: - - pos: 49.5,14.5 - parent: 1 - type: Transform - - uid: 13266 - components: - - pos: 49.5,15.5 - parent: 1 - type: Transform - - uid: 13267 - components: - - pos: 50.5,15.5 - parent: 1 - type: Transform - - uid: 13268 - components: - - pos: 51.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13269 - components: - - pos: 48.5,15.5 - parent: 1 - type: Transform - - uid: 13270 - components: - - pos: 48.5,16.5 - parent: 1 - type: Transform - - uid: 13271 - components: - - pos: 48.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13272 - components: - - pos: 46.5,15.5 - parent: 1 - type: Transform - - uid: 13273 - components: - - pos: 46.5,16.5 - parent: 1 - type: Transform - - uid: 13274 - components: - - pos: 46.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13275 - components: - - pos: 49.5,13.5 - parent: 1 - type: Transform - - uid: 13276 - components: - - pos: 50.5,13.5 - parent: 1 - type: Transform - - uid: 13277 - components: - - pos: 51.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13278 - components: - - pos: 46.5,13.5 - parent: 1 - type: Transform - - uid: 13279 - components: - - pos: 46.5,12.5 - parent: 1 - type: Transform - - uid: 13280 - components: - - pos: -33.5,23.5 - parent: 1 - type: Transform - - uid: 13281 - components: - - pos: -32.5,23.5 - parent: 1 - type: Transform - - uid: 13282 - components: - - pos: -32.5,24.5 - parent: 1 - type: Transform - - uid: 13283 - components: - - pos: -32.5,25.5 - parent: 1 - type: Transform - - uid: 13284 - components: - - pos: -32.5,26.5 - parent: 1 - type: Transform - - uid: 13285 - components: - - pos: -32.5,27.5 - parent: 1 - type: Transform - - uid: 13286 - components: - - pos: -32.5,28.5 - parent: 1 - type: Transform - - uid: 13287 - components: - - pos: -32.5,29.5 - parent: 1 - type: Transform - - uid: 13288 - components: - - pos: -32.5,30.5 - parent: 1 - type: Transform - - uid: 13289 - components: - - pos: -32.5,31.5 - parent: 1 - type: Transform - - uid: 13290 - components: - - pos: -32.5,32.5 - parent: 1 - type: Transform - - uid: 13291 - components: - - pos: -32.5,33.5 - parent: 1 - type: Transform - - uid: 13292 - components: - - pos: -32.5,34.5 - parent: 1 - type: Transform - - uid: 13293 - components: - - pos: -32.5,22.5 - parent: 1 - type: Transform - - uid: 13294 - components: - - pos: -32.5,21.5 - parent: 1 - type: Transform - - uid: 13295 - components: - - pos: -32.5,20.5 - parent: 1 - type: Transform - - uid: 13296 - components: - - pos: -32.5,19.5 - parent: 1 - type: Transform - - uid: 13297 - components: - - pos: -32.5,18.5 - parent: 1 - type: Transform - - uid: 13298 - components: - - pos: -32.5,17.5 - parent: 1 - type: Transform - - uid: 13534 - components: - - pos: -21.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13535 - components: - - pos: -21.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13536 - components: - - pos: -22.5,-2.5 - parent: 1 - type: Transform - - uid: 13537 - components: - - pos: -23.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13538 - components: - - pos: -24.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13539 - components: - - pos: -25.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13540 - components: - - pos: -20.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13541 - components: - - pos: -19.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13542 - components: - - pos: -19.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13543 - components: - - pos: -19.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13544 - components: - - pos: -19.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13545 - components: - - pos: -20.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13546 - components: - - pos: -21.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13547 - components: - - pos: -22.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13548 - components: - - pos: -23.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13549 - components: - - pos: -24.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13550 - components: - - pos: -25.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13551 - components: - - pos: -26.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13552 - components: - - pos: -27.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13553 - components: - - pos: -27.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13554 - components: - - pos: -27.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13555 - components: - - pos: -27.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13556 - components: - - pos: -27.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13557 - components: - - pos: -27.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13558 - components: - - pos: -27.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13559 - components: - - pos: -27.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13560 - components: - - pos: -28.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13561 - components: - - pos: -29.5,1.5 - parent: 1 - type: Transform - - uid: 13562 - components: - - pos: -30.5,1.5 - parent: 1 - type: Transform - - uid: 13563 - components: - - pos: -30.5,2.5 - parent: 1 - type: Transform - - uid: 13564 - components: - - pos: -30.5,3.5 - parent: 1 - type: Transform - - uid: 13565 - components: - - pos: -30.5,0.5 - parent: 1 - type: Transform - - uid: 13566 - components: - - pos: -30.5,-0.5 - parent: 1 - type: Transform - - uid: 13567 - components: - - pos: -30.5,-1.5 - parent: 1 - type: Transform - - uid: 13568 - components: - - pos: -30.5,-2.5 - parent: 1 - type: Transform - - uid: 13569 - components: - - pos: -30.5,-3.5 - parent: 1 - type: Transform - - uid: 13570 - components: - - pos: -30.5,-4.5 - parent: 1 - type: Transform - - uid: 13571 - components: - - pos: -30.5,-5.5 - parent: 1 - type: Transform - - uid: 13572 - components: - - pos: -30.5,-6.5 - parent: 1 - type: Transform - - uid: 13573 - components: - - pos: -30.5,-7.5 - parent: 1 - type: Transform - - uid: 13574 - components: - - pos: -29.5,-7.5 - parent: 1 - type: Transform - - uid: 13575 - components: - - pos: -28.5,-7.5 - parent: 1 - type: Transform - - uid: 13576 - components: - - pos: -27.5,-7.5 - parent: 1 - type: Transform - - uid: 13577 - components: - - pos: -26.5,-7.5 - parent: 1 - type: Transform - - uid: 13578 - components: - - pos: -26.5,-6.5 - parent: 1 - type: Transform - - uid: 13579 - components: - - pos: -25.5,-7.5 - parent: 1 - type: Transform - - uid: 13580 - components: - - pos: -24.5,-7.5 - parent: 1 - type: Transform - - uid: 13581 - components: - - pos: -23.5,-7.5 - parent: 1 - type: Transform - - uid: 13582 - components: - - pos: -22.5,-7.5 - parent: 1 - type: Transform - - uid: 13583 - components: - - pos: -21.5,-7.5 - parent: 1 - type: Transform - - uid: 13584 - components: - - pos: -20.5,-7.5 - parent: 1 - type: Transform - - uid: 13585 - components: - - pos: -19.5,-7.5 - parent: 1 - type: Transform - - uid: 13586 - components: - - pos: -18.5,-7.5 - parent: 1 - type: Transform - - uid: 13587 - components: - - pos: -17.5,-7.5 - parent: 1 - type: Transform - - uid: 13588 - components: - - pos: -16.5,-7.5 - parent: 1 - type: Transform - - uid: 13589 - components: - - pos: -16.5,-17.5 - parent: 1 - type: Transform - - uid: 13590 - components: - - pos: -16.5,-16.5 - parent: 1 - type: Transform - - uid: 13591 - components: - - pos: -16.5,-15.5 - parent: 1 - type: Transform - - uid: 13592 - components: - - pos: -16.5,-14.5 - parent: 1 - type: Transform - - uid: 13593 - components: - - pos: -16.5,-13.5 - parent: 1 - type: Transform - - uid: 13594 - components: - - pos: -16.5,-12.5 - parent: 1 - type: Transform - - uid: 13595 - components: - - pos: -17.5,-12.5 - parent: 1 - type: Transform - - uid: 13596 - components: - - pos: -18.5,-12.5 - parent: 1 - type: Transform - - uid: 13597 - components: - - pos: -19.5,-12.5 - parent: 1 - type: Transform - - uid: 13598 - components: - - pos: -20.5,-12.5 - parent: 1 - type: Transform - - uid: 13599 - components: - - pos: -21.5,-12.5 - parent: 1 - type: Transform - - uid: 13600 - components: - - pos: -22.5,-12.5 - parent: 1 - type: Transform - - uid: 13601 - components: - - pos: -23.5,-12.5 - parent: 1 - type: Transform - - uid: 13602 - components: - - pos: -24.5,-12.5 - parent: 1 - type: Transform - - uid: 13603 - components: - - pos: -28.5,-11.5 - parent: 1 - type: Transform - - uid: 13604 - components: - - pos: -31.5,-7.5 - parent: 1 - type: Transform - - uid: 13605 - components: - - pos: -32.5,-7.5 - parent: 1 - type: Transform - - uid: 13606 - components: - - pos: -19.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13607 - components: - - pos: -19.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13608 - components: - - pos: -19.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13609 - components: - - pos: -19.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13610 - components: - - pos: -19.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13611 - components: - - pos: -19.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13612 - components: - - pos: -19.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13613 - components: - - pos: -19.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13614 - components: - - pos: -19.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13615 - components: - - pos: -19.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13616 - components: - - pos: -18.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13617 - components: - - pos: -17.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13618 - components: - - pos: -16.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13619 - components: - - pos: -15.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13620 - components: - - pos: -15.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13621 - components: - - pos: -15.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13622 - components: - - pos: -15.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13623 - components: - - pos: -15.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13624 - components: - - pos: -21.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13625 - components: - - pos: -22.5,8.5 - parent: 1 - type: Transform - - uid: 13626 - components: - - pos: -23.5,8.5 - parent: 1 - type: Transform - - uid: 13627 - components: - - pos: -24.5,8.5 - parent: 1 - type: Transform - - uid: 13628 - components: - - pos: -25.5,8.5 - parent: 1 - type: Transform - - uid: 13629 - components: - - pos: -26.5,8.5 - parent: 1 - type: Transform - - uid: 13630 - components: - - pos: -27.5,8.5 - parent: 1 - type: Transform - - uid: 13631 - components: - - pos: -28.5,8.5 - parent: 1 - type: Transform - - uid: 13632 - components: - - pos: -24.5,1.5 - parent: 1 - type: Transform - - uid: 13633 - components: - - pos: -24.5,2.5 - parent: 1 - type: Transform - - uid: 13634 - components: - - pos: -24.5,3.5 - parent: 1 - type: Transform - - uid: 13635 - components: - - pos: -24.5,4.5 - parent: 1 - type: Transform - - uid: 13636 - components: - - pos: -24.5,5.5 - parent: 1 - type: Transform - - uid: 13637 - components: - - pos: -24.5,6.5 - parent: 1 - type: Transform - - uid: 13638 - components: - - pos: -24.5,7.5 - parent: 1 - type: Transform - - uid: 13640 - components: - - pos: -24.5,10.5 - parent: 1 - type: Transform - - uid: 13641 - components: - - pos: -24.5,11.5 - parent: 1 - type: Transform - - uid: 13642 - components: - - pos: -23.5,11.5 - parent: 1 - type: Transform - - uid: 13643 - components: - - pos: -22.5,11.5 - parent: 1 - type: Transform - - uid: 13644 - components: - - pos: -22.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13645 - components: - - pos: -22.5,13.5 - parent: 1 - type: Transform - - uid: 13646 - components: - - pos: -23.5,13.5 - parent: 1 - type: Transform - - uid: 13647 - components: - - pos: -24.5,13.5 - parent: 1 - type: Transform - - uid: 13648 - components: - - pos: -25.5,13.5 - parent: 1 - type: Transform - - uid: 13649 - components: - - pos: -26.5,13.5 - parent: 1 - type: Transform - - uid: 13650 - components: - - pos: -27.5,13.5 - parent: 1 - type: Transform - - uid: 13651 - components: - - pos: -28.5,13.5 - parent: 1 - type: Transform - - uid: 13652 - components: - - pos: -29.5,13.5 - parent: 1 - type: Transform - - uid: 13653 - components: - - pos: -30.5,13.5 - parent: 1 - type: Transform - - uid: 13654 - components: - - pos: -30.5,12.5 - parent: 1 - type: Transform - - uid: 13655 - components: - - pos: -30.5,11.5 - parent: 1 - type: Transform - - uid: 13656 - components: - - pos: -30.5,10.5 - parent: 1 - type: Transform - - uid: 13657 - components: - - pos: -30.5,9.5 - parent: 1 - type: Transform - - uid: 13658 - components: - - pos: -30.5,8.5 - parent: 1 - type: Transform - - uid: 13659 - components: - - pos: -30.5,7.5 - parent: 1 - type: Transform - - uid: 13660 - components: - - pos: -30.5,6.5 - parent: 1 - type: Transform - - uid: 13661 - components: - - pos: -21.5,13.5 - parent: 1 - type: Transform - - uid: 13662 - components: - - pos: -20.5,13.5 - parent: 1 - type: Transform - - uid: 13663 - components: - - pos: -19.5,13.5 - parent: 1 - type: Transform - - uid: 13664 - components: - - pos: -18.5,13.5 - parent: 1 - type: Transform - - uid: 13665 - components: - - pos: -17.5,13.5 - parent: 1 - type: Transform - - uid: 13666 - components: - - pos: -16.5,13.5 - parent: 1 - type: Transform - - uid: 13667 - components: - - pos: -15.5,13.5 - parent: 1 - type: Transform - - uid: 13668 - components: - - pos: -14.5,13.5 - parent: 1 - type: Transform - - uid: 13669 - components: - - pos: -13.5,13.5 - parent: 1 - type: Transform - - uid: 13670 - components: - - pos: -12.5,13.5 - parent: 1 - type: Transform - - uid: 13671 - components: - - pos: -11.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13672 - components: - - pos: -11.5,4.5 - parent: 1 - type: Transform - - uid: 13673 - components: - - pos: -11.5,3.5 - parent: 1 - type: Transform - - uid: 13674 - components: - - pos: -11.5,2.5 - parent: 1 - type: Transform - - uid: 13675 - components: - - pos: -11.5,1.5 - parent: 1 - type: Transform - - uid: 13676 - components: - - pos: -11.5,0.5 - parent: 1 - type: Transform - - uid: 13677 - components: - - pos: -11.5,-0.5 - parent: 1 - type: Transform - - uid: 13678 - components: - - pos: -11.5,-1.5 - parent: 1 - type: Transform - - uid: 13679 - components: - - pos: -11.5,-2.5 - parent: 1 - type: Transform - - uid: 13680 - components: - - pos: -11.5,-3.5 - parent: 1 - type: Transform - - uid: 13681 - components: - - pos: -11.5,-4.5 - parent: 1 - type: Transform - - uid: 13682 - components: - - pos: -11.5,-5.5 - parent: 1 - type: Transform - - uid: 13683 - components: - - pos: -12.5,-3.5 - parent: 1 - type: Transform - - uid: 13684 - components: - - pos: -13.5,-3.5 - parent: 1 - type: Transform - - uid: 13685 - components: - - pos: -14.5,-3.5 - parent: 1 - type: Transform - - uid: 13686 - components: - - pos: -15.5,-3.5 - parent: 1 - type: Transform - - uid: 13687 - components: - - pos: -16.5,-3.5 - parent: 1 - type: Transform - - uid: 13688 - components: - - pos: -17.5,-3.5 - parent: 1 - type: Transform - - uid: 13689 - components: - - pos: -12.5,0.5 - parent: 1 - type: Transform - - uid: 13690 - components: - - pos: -13.5,0.5 - parent: 1 - type: Transform - - uid: 13691 - components: - - pos: -14.5,0.5 - parent: 1 - type: Transform - - uid: 13692 - components: - - pos: -15.5,0.5 - parent: 1 - type: Transform - - uid: 13693 - components: - - pos: -16.5,0.5 - parent: 1 - type: Transform - - uid: 13694 - components: - - pos: -17.5,0.5 - parent: 1 - type: Transform - - uid: 13695 - components: - - pos: -12.5,4.5 - parent: 1 - type: Transform - - uid: 13696 - components: - - pos: -13.5,4.5 - parent: 1 - type: Transform - - uid: 13697 - components: - - pos: -14.5,4.5 - parent: 1 - type: Transform - - uid: 13698 - components: - - pos: -15.5,4.5 - parent: 1 - type: Transform - - uid: 13699 - components: - - pos: -16.5,4.5 - parent: 1 - type: Transform - - uid: 13700 - components: - - pos: -17.5,4.5 - parent: 1 - type: Transform - - uid: 13701 - components: - - pos: -10.5,4.5 - parent: 1 - type: Transform - - uid: 13702 - components: - - pos: -9.5,4.5 - parent: 1 - type: Transform - - uid: 13703 - components: - - pos: -9.5,5.5 - parent: 1 - type: Transform - - uid: 13704 - components: - - pos: -9.5,6.5 - parent: 1 - type: Transform - - uid: 13705 - components: - - pos: -9.5,7.5 - parent: 1 - type: Transform - - uid: 13706 - components: - - pos: -9.5,8.5 - parent: 1 - type: Transform - - uid: 13707 - components: - - pos: -8.5,8.5 - parent: 1 - type: Transform - - uid: 13708 - components: - - pos: -8.5,9.5 - parent: 1 - type: Transform - - uid: 13709 - components: - - pos: -8.5,10.5 - parent: 1 - type: Transform - - uid: 13710 - components: - - pos: -8.5,11.5 - parent: 1 - type: Transform - - uid: 13711 - components: - - pos: -9.5,11.5 - parent: 1 - type: Transform - - uid: 13712 - components: - - pos: -10.5,11.5 - parent: 1 - type: Transform - - uid: 13713 - components: - - pos: -11.5,11.5 - parent: 1 - type: Transform - - uid: 13714 - components: - - pos: -12.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13715 - components: - - pos: -13.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13716 - components: - - pos: -13.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13717 - components: - - pos: -7.5,11.5 - parent: 1 - type: Transform - - uid: 13718 - components: - - pos: -6.5,11.5 - parent: 1 - type: Transform - - uid: 13719 - components: - - pos: -8.5,4.5 - parent: 1 - type: Transform - - uid: 13720 - components: - - pos: -7.5,4.5 - parent: 1 - type: Transform - - uid: 13721 - components: - - pos: -6.5,4.5 - parent: 1 - type: Transform - - uid: 13722 - components: - - pos: -5.5,4.5 - parent: 1 - type: Transform - - uid: 13723 - components: - - pos: -4.5,4.5 - parent: 1 - type: Transform - - uid: 13724 - components: - - pos: -4.5,5.5 - parent: 1 - type: Transform - - uid: 13725 - components: - - pos: -4.5,6.5 - parent: 1 - type: Transform - - uid: 13726 - components: - - pos: -4.5,7.5 - parent: 1 - type: Transform - - uid: 13727 - components: - - pos: -4.5,8.5 - parent: 1 - type: Transform - - uid: 13728 - components: - - pos: -4.5,9.5 - parent: 1 - type: Transform - - uid: 13729 - components: - - pos: -4.5,10.5 - parent: 1 - type: Transform - - uid: 13730 - components: - - pos: -4.5,11.5 - parent: 1 - type: Transform - - uid: 13731 - components: - - pos: -3.5,11.5 - parent: 1 - type: Transform - - uid: 13732 - components: - - pos: -2.5,11.5 - parent: 1 - type: Transform - - uid: 13733 - components: - - pos: -1.5,11.5 - parent: 1 - type: Transform - - uid: 13734 - components: - - pos: -0.5,11.5 - parent: 1 - type: Transform - - uid: 13735 - components: - - pos: 0.5,11.5 - parent: 1 - type: Transform - - uid: 13736 - components: - - pos: 1.5,11.5 - parent: 1 - type: Transform - - uid: 13737 - components: - - pos: 2.5,11.5 - parent: 1 - type: Transform - - uid: 13738 - components: - - pos: 2.5,10.5 - parent: 1 - type: Transform - - uid: 13739 - components: - - pos: 2.5,9.5 - parent: 1 - type: Transform - - uid: 13740 - components: - - pos: 2.5,8.5 - parent: 1 - type: Transform - - uid: 13741 - components: - - pos: 2.5,7.5 - parent: 1 - type: Transform - - uid: 13742 - components: - - pos: 2.5,6.5 - parent: 1 - type: Transform - - uid: 13743 - components: - - pos: 2.5,5.5 - parent: 1 - type: Transform - - uid: 13744 - components: - - pos: 2.5,4.5 - parent: 1 - type: Transform - - uid: 13745 - components: - - pos: 2.5,3.5 - parent: 1 - type: Transform - - uid: 13746 - components: - - pos: 2.5,2.5 - parent: 1 - type: Transform - - uid: 13747 - components: - - pos: 2.5,1.5 - parent: 1 - type: Transform - - uid: 13748 - components: - - pos: 2.5,0.5 - parent: 1 - type: Transform - - uid: 13749 - components: - - pos: 2.5,-0.5 - parent: 1 - type: Transform - - uid: 13750 - components: - - pos: 2.5,-1.5 - parent: 1 - type: Transform - - uid: 13751 - components: - - pos: 2.5,-2.5 - parent: 1 - type: Transform - - uid: 13752 - components: - - pos: 2.5,-3.5 - parent: 1 - type: Transform - - uid: 13753 - components: - - pos: 2.5,-4.5 - parent: 1 - type: Transform - - uid: 13754 - components: - - pos: 2.5,-5.5 - parent: 1 - type: Transform - - uid: 13755 - components: - - pos: 2.5,-6.5 - parent: 1 - type: Transform - - uid: 13756 - components: - - pos: 2.5,-7.5 - parent: 1 - type: Transform - - uid: 13757 - components: - - pos: 1.5,-7.5 - parent: 1 - type: Transform - - uid: 13758 - components: - - pos: 0.5,-7.5 - parent: 1 - type: Transform - - uid: 13759 - components: - - pos: -0.5,-7.5 - parent: 1 - type: Transform - - uid: 13760 - components: - - pos: -1.5,-7.5 - parent: 1 - type: Transform - - uid: 13761 - components: - - pos: -2.5,-7.5 - parent: 1 - type: Transform - - uid: 13762 - components: - - pos: -3.5,-7.5 - parent: 1 - type: Transform - - uid: 13763 - components: - - pos: -4.5,-7.5 - parent: 1 - type: Transform - - uid: 13764 - components: - - pos: -5.5,-7.5 - parent: 1 - type: Transform - - uid: 13765 - components: - - pos: -6.5,-7.5 - parent: 1 - type: Transform - - uid: 13766 - components: - - pos: -7.5,-7.5 - parent: 1 - type: Transform - - uid: 13767 - components: - - pos: -8.5,-7.5 - parent: 1 - type: Transform - - uid: 13768 - components: - - pos: -9.5,-7.5 - parent: 1 - type: Transform - - uid: 13769 - components: - - pos: -10.5,-7.5 - parent: 1 - type: Transform - - uid: 13770 - components: - - pos: -11.5,-7.5 - parent: 1 - type: Transform - - uid: 13771 - components: - - pos: -12.5,-7.5 - parent: 1 - type: Transform - - uid: 13772 - components: - - pos: -13.5,-7.5 - parent: 1 - type: Transform - - uid: 13773 - components: - - pos: -14.5,-7.5 - parent: 1 - type: Transform - - uid: 13774 - components: - - pos: -3.5,-6.5 - parent: 1 - type: Transform - - uid: 13775 - components: - - pos: -3.5,-5.5 - parent: 1 - type: Transform - - uid: 13776 - components: - - pos: -3.5,-4.5 - parent: 1 - type: Transform - - uid: 13777 - components: - - pos: -3.5,-3.5 - parent: 1 - type: Transform - - uid: 13778 - components: - - pos: -4.5,-3.5 - parent: 1 - type: Transform - - uid: 13779 - components: - - pos: -5.5,-3.5 - parent: 1 - type: Transform - - uid: 13780 - components: - - pos: -6.5,-3.5 - parent: 1 - type: Transform - - uid: 13781 - components: - - pos: -7.5,-3.5 - parent: 1 - type: Transform - - uid: 13782 - components: - - pos: -8.5,-3.5 - parent: 1 - type: Transform - - uid: 13783 - components: - - pos: -9.5,-3.5 - parent: 1 - type: Transform - - uid: 13784 - components: - - pos: -10.5,-3.5 - parent: 1 - type: Transform - - uid: 13785 - components: - - pos: -2.5,-3.5 - parent: 1 - type: Transform - - uid: 13786 - components: - - pos: -1.5,-3.5 - parent: 1 - type: Transform - - uid: 13787 - components: - - pos: -0.5,-3.5 - parent: 1 - type: Transform - - uid: 13788 - components: - - pos: 0.5,-3.5 - parent: 1 - type: Transform - - uid: 13789 - components: - - pos: 1.5,-3.5 - parent: 1 - type: Transform - - uid: 13790 - components: - - pos: -3.5,-2.5 - parent: 1 - type: Transform - - uid: 13791 - components: - - pos: -3.5,-1.5 - parent: 1 - type: Transform - - uid: 13792 - components: - - pos: -3.5,-0.5 - parent: 1 - type: Transform - - uid: 13794 - components: - - pos: -3.5,1.5 - parent: 1 - type: Transform - - uid: 13795 - components: - - pos: -3.5,2.5 - parent: 1 - type: Transform - - uid: 13796 - components: - - pos: -3.5,3.5 - parent: 1 - type: Transform - - uid: 13797 - components: - - pos: -3.5,4.5 - parent: 1 - type: Transform - - uid: 13798 - components: - - pos: -2.5,4.5 - parent: 1 - type: Transform - - uid: 13799 - components: - - pos: -1.5,4.5 - parent: 1 - type: Transform - - uid: 13800 - components: - - pos: -0.5,4.5 - parent: 1 - type: Transform - - uid: 13801 - components: - - pos: 0.5,4.5 - parent: 1 - type: Transform - - uid: 13802 - components: - - pos: 1.5,4.5 - parent: 1 - type: Transform - - uid: 13803 - components: - - pos: -8.5,3.5 - parent: 1 - type: Transform - - uid: 13804 - components: - - pos: -8.5,2.5 - parent: 1 - type: Transform - - uid: 13805 - components: - - pos: -8.5,1.5 - parent: 1 - type: Transform - - uid: 13806 - components: - - pos: -8.5,0.5 - parent: 1 - type: Transform - - uid: 13807 - components: - - pos: -8.5,-0.5 - parent: 1 - type: Transform - - uid: 13808 - components: - - pos: -8.5,-1.5 - parent: 1 - type: Transform - - uid: 13809 - components: - - pos: -8.5,-2.5 - parent: 1 - type: Transform - - uid: 13810 - components: - - pos: -2.5,0.5 - parent: 1 - type: Transform - - uid: 13811 - components: - - pos: -1.5,0.5 - parent: 1 - type: Transform - - uid: 13812 - components: - - pos: -0.5,0.5 - parent: 1 - type: Transform - - uid: 13813 - components: - - pos: 0.5,0.5 - parent: 1 - type: Transform - - uid: 13814 - components: - - pos: 1.5,0.5 - parent: 1 - type: Transform - - uid: 13815 - components: - - pos: -3.5,8.5 - parent: 1 - type: Transform - - uid: 13816 - components: - - pos: -2.5,8.5 - parent: 1 - type: Transform - - uid: 13817 - components: - - pos: -1.5,8.5 - parent: 1 - type: Transform - - uid: 13818 - components: - - pos: -0.5,8.5 - parent: 1 - type: Transform - - uid: 13819 - components: - - pos: 0.5,8.5 - parent: 1 - type: Transform - - uid: 13820 - components: - - pos: 1.5,8.5 - parent: 1 - type: Transform - - uid: 13821 - components: - - pos: -3.5,12.5 - parent: 1 - type: Transform - - uid: 13822 - components: - - pos: -3.5,13.5 - parent: 1 - type: Transform - - uid: 13823 - components: - - pos: -4.5,13.5 - parent: 1 - type: Transform - - uid: 13824 - components: - - pos: -5.5,13.5 - parent: 1 - type: Transform - - uid: 13825 - components: - - pos: -6.5,13.5 - parent: 1 - type: Transform - - uid: 13826 - components: - - pos: -7.5,13.5 - parent: 1 - type: Transform - - uid: 13827 - components: - - pos: -8.5,13.5 - parent: 1 - type: Transform - - uid: 13828 - components: - - pos: -9.5,13.5 - parent: 1 - type: Transform - - uid: 13829 - components: - - pos: -10.5,13.5 - parent: 1 - type: Transform - - uid: 13830 - components: - - pos: -2.5,13.5 - parent: 1 - type: Transform - - uid: 13831 - components: - - pos: -1.5,13.5 - parent: 1 - type: Transform - - uid: 13832 - components: - - pos: -0.5,13.5 - parent: 1 - type: Transform - - uid: 13833 - components: - - pos: 0.5,13.5 - parent: 1 - type: Transform - - uid: 13834 - components: - - pos: 1.5,13.5 - parent: 1 - type: Transform - - uid: 13835 - components: - - pos: 2.5,13.5 - parent: 1 - type: Transform - - uid: 13836 - components: - - pos: 3.5,13.5 - parent: 1 - type: Transform - - uid: 13837 - components: - - pos: 4.5,13.5 - parent: 1 - type: Transform - - uid: 13838 - components: - - pos: 5.5,13.5 - parent: 1 - type: Transform - - uid: 13839 - components: - - pos: 6.5,13.5 - parent: 1 - type: Transform - - uid: 13840 - components: - - pos: 7.5,13.5 - parent: 1 - type: Transform - - uid: 13841 - components: - - pos: 8.5,13.5 - parent: 1 - type: Transform - - uid: 13842 - components: - - pos: 9.5,13.5 - parent: 1 - type: Transform - - uid: 13843 - components: - - pos: 10.5,13.5 - parent: 1 - type: Transform - - uid: 13844 - components: - - pos: 11.5,13.5 - parent: 1 - type: Transform - - uid: 13845 - components: - - pos: 12.5,13.5 - parent: 1 - type: Transform - - uid: 13846 - components: - - pos: 13.5,13.5 - parent: 1 - type: Transform - - uid: 13847 - components: - - pos: 14.5,13.5 - parent: 1 - type: Transform - - uid: 13848 - components: - - pos: 15.5,13.5 - parent: 1 - type: Transform - - uid: 13849 - components: - - pos: 16.5,13.5 - parent: 1 - type: Transform - - uid: 13850 - components: - - pos: 17.5,13.5 - parent: 1 - type: Transform - - uid: 13851 - components: - - pos: 18.5,13.5 - parent: 1 - type: Transform - - uid: 13887 - components: - - pos: 10.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13888 - components: - - pos: 10.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13889 - components: - - pos: 9.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13890 - components: - - pos: 8.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13891 - components: - - pos: 7.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13892 - components: - - pos: 7.5,64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13893 - components: - - pos: 7.5,65.5 - parent: 1 - type: Transform - - uid: 13894 - components: - - pos: 7.5,66.5 - parent: 1 - type: Transform - - uid: 13895 - components: - - pos: 10.5,61.5 - parent: 1 - type: Transform - - uid: 13896 - components: - - pos: 9.5,61.5 - parent: 1 - type: Transform - - uid: 13897 - components: - - pos: 8.5,61.5 - parent: 1 - type: Transform - - uid: 13898 - components: - - pos: 7.5,61.5 - parent: 1 - type: Transform - - uid: 13899 - components: - - pos: 7.5,60.5 - parent: 1 - type: Transform - - uid: 13900 - components: - - pos: 6.5,60.5 - parent: 1 - type: Transform - - uid: 13901 - components: - - pos: 5.5,60.5 - parent: 1 - type: Transform - - uid: 13902 - components: - - pos: 4.5,60.5 - parent: 1 - type: Transform - - uid: 13903 - components: - - pos: 3.5,60.5 - parent: 1 - type: Transform - - uid: 13904 - components: - - pos: 2.5,60.5 - parent: 1 - type: Transform - - uid: 13905 - components: - - pos: 2.5,61.5 - parent: 1 - type: Transform - - uid: 13906 - components: - - pos: 2.5,62.5 - parent: 1 - type: Transform - - uid: 13907 - components: - - pos: 2.5,63.5 - parent: 1 - type: Transform - - uid: 13908 - components: - - pos: 1.5,63.5 - parent: 1 - type: Transform - - uid: 13909 - components: - - pos: 0.5,63.5 - parent: 1 - type: Transform - - uid: 13910 - components: - - pos: 0.5,64.5 - parent: 1 - type: Transform - - uid: 13911 - components: - - pos: 0.5,65.5 - parent: 1 - type: Transform - - uid: 13912 - components: - - pos: 0.5,66.5 - parent: 1 - type: Transform - - uid: 13913 - components: - - pos: 1.5,66.5 - parent: 1 - type: Transform - - uid: 13914 - components: - - pos: 2.5,66.5 - parent: 1 - type: Transform - - uid: 13915 - components: - - pos: 3.5,66.5 - parent: 1 - type: Transform - - uid: 13916 - components: - - pos: 4.5,66.5 - parent: 1 - type: Transform - - uid: 13917 - components: - - pos: 5.5,66.5 - parent: 1 - type: Transform - - uid: 13918 - components: - - pos: 6.5,66.5 - parent: 1 - type: Transform - - uid: 13919 - components: - - pos: 0.5,62.5 - parent: 1 - type: Transform - - uid: 13920 - components: - - pos: 0.5,61.5 - parent: 1 - type: Transform - - uid: 13921 - components: - - pos: 0.5,60.5 - parent: 1 - type: Transform - - uid: 13922 - components: - - pos: 0.5,59.5 - parent: 1 - type: Transform - - uid: 13923 - components: - - pos: 0.5,58.5 - parent: 1 - type: Transform - - uid: 13924 - components: - - pos: 0.5,57.5 - parent: 1 - type: Transform - - uid: 13925 - components: - - pos: 0.5,56.5 - parent: 1 - type: Transform - - uid: 13926 - components: - - pos: 0.5,55.5 - parent: 1 - type: Transform - - uid: 13927 - components: - - pos: 0.5,54.5 - parent: 1 - type: Transform - - uid: 13928 - components: - - pos: 0.5,53.5 - parent: 1 - type: Transform - - uid: 13929 - components: - - pos: 0.5,52.5 - parent: 1 - type: Transform - - uid: 13930 - components: - - pos: 1.5,56.5 - parent: 1 - type: Transform - - uid: 13931 - components: - - pos: 2.5,56.5 - parent: 1 - type: Transform - - uid: 13932 - components: - - pos: 3.5,56.5 - parent: 1 - type: Transform - - uid: 13933 - components: - - pos: 4.5,56.5 - parent: 1 - type: Transform - - uid: 13934 - components: - - pos: 5.5,56.5 - parent: 1 - type: Transform - - uid: 13935 - components: - - pos: 6.5,56.5 - parent: 1 - type: Transform - - uid: 13936 - components: - - pos: 7.5,56.5 - parent: 1 - type: Transform - - uid: 13937 - components: - - pos: 8.5,56.5 - parent: 1 - type: Transform - - uid: 13938 - components: - - pos: 9.5,56.5 - parent: 1 - type: Transform - - uid: 13939 - components: - - pos: 10.5,56.5 - parent: 1 - type: Transform - - uid: 13940 - components: - - pos: 11.5,56.5 - parent: 1 - type: Transform - - uid: 13941 - components: - - pos: 12.5,56.5 - parent: 1 - type: Transform - - uid: 13942 - components: - - pos: 13.5,56.5 - parent: 1 - type: Transform - - uid: 13943 - components: - - pos: 14.5,56.5 - parent: 1 - type: Transform - - uid: 13944 - components: - - pos: 14.5,57.5 - parent: 1 - type: Transform - - uid: 13945 - components: - - pos: 14.5,58.5 - parent: 1 - type: Transform - - uid: 13946 - components: - - pos: 14.5,59.5 - parent: 1 - type: Transform - - uid: 13947 - components: - - pos: 14.5,60.5 - parent: 1 - type: Transform - - uid: 13948 - components: - - pos: 14.5,61.5 - parent: 1 - type: Transform - - uid: 13949 - components: - - pos: 13.5,61.5 - parent: 1 - type: Transform - - uid: 13950 - components: - - pos: 12.5,61.5 - parent: 1 - type: Transform - - uid: 13951 - components: - - pos: 11.5,61.5 - parent: 1 - type: Transform - - uid: 13952 - components: - - pos: 10.5,61.5 - parent: 1 - type: Transform - - uid: 13953 - components: - - pos: 15.5,58.5 - parent: 1 - type: Transform - - uid: 13954 - components: - - pos: 16.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13955 - components: - - pos: 17.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13956 - components: - - pos: 18.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13957 - components: - - pos: 18.5,59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13958 - components: - - pos: 18.5,60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13959 - components: - - pos: 18.5,61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13960 - components: - - pos: 18.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13961 - components: - - pos: 18.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13962 - components: - - pos: 17.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13963 - components: - - pos: 16.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13964 - components: - - pos: 15.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13965 - components: - - pos: 14.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13966 - components: - - pos: 13.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13967 - components: - - pos: 12.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13968 - components: - - pos: 11.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13969 - components: - - pos: 14.5,55.5 - parent: 1 - type: Transform - - uid: 13970 - components: - - pos: 14.5,54.5 - parent: 1 - type: Transform - - uid: 13971 - components: - - pos: 14.5,53.5 - parent: 1 - type: Transform - - uid: 13972 - components: - - pos: 14.5,52.5 - parent: 1 - type: Transform - - uid: 13973 - components: - - pos: 13.5,52.5 - parent: 1 - type: Transform - - uid: 13974 - components: - - pos: 12.5,52.5 - parent: 1 - type: Transform - - uid: 13975 - components: - - pos: 11.5,52.5 - parent: 1 - type: Transform - - uid: 13976 - components: - - pos: 10.5,52.5 - parent: 1 - type: Transform - - uid: 13977 - components: - - pos: 9.5,52.5 - parent: 1 - type: Transform - - uid: 13978 - components: - - pos: 8.5,52.5 - parent: 1 - type: Transform - - uid: 13979 - components: - - pos: 7.5,52.5 - parent: 1 - type: Transform - - uid: 13980 - components: - - pos: 6.5,52.5 - parent: 1 - type: Transform - - uid: 13981 - components: - - pos: 5.5,52.5 - parent: 1 - type: Transform - - uid: 13982 - components: - - pos: 4.5,52.5 - parent: 1 - type: Transform - - uid: 13983 - components: - - pos: 4.5,53.5 - parent: 1 - type: Transform - - uid: 13984 - components: - - pos: 4.5,54.5 - parent: 1 - type: Transform - - uid: 13985 - components: - - pos: 4.5,55.5 - parent: 1 - type: Transform - - uid: 13986 - components: - - pos: 19.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13987 - components: - - pos: 19.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13988 - components: - - pos: 19.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13989 - components: - - pos: 18.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13990 - components: - - pos: 17.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13991 - components: - - pos: 16.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13992 - components: - - pos: 16.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13993 - components: - - pos: 16.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14446 - components: - - pos: 32.5,6.5 - parent: 1 - type: Transform - - uid: 15386 - components: - - pos: -35.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15387 - components: - - pos: -35.5,9.5 - parent: 1 - type: Transform - - uid: 15388 - components: - - pos: -35.5,10.5 - parent: 1 - type: Transform - - uid: 15389 - components: - - pos: -45.5,14.5 - parent: 1 - type: Transform - - uid: 15390 - components: - - pos: -45.5,13.5 - parent: 1 - type: Transform - - uid: 15391 - components: - - pos: -35.5,12.5 - parent: 1 - type: Transform - - uid: 15392 - components: - - pos: -35.5,13.5 - parent: 1 - type: Transform - - uid: 15393 - components: - - pos: -36.5,13.5 - parent: 1 - type: Transform - - uid: 15394 - components: - - pos: -37.5,13.5 - parent: 1 - type: Transform - - uid: 15395 - components: - - pos: -38.5,13.5 - parent: 1 - type: Transform - - uid: 15396 - components: - - pos: -39.5,13.5 - parent: 1 - type: Transform - - uid: 15397 - components: - - pos: -40.5,13.5 - parent: 1 - type: Transform - - uid: 15398 - components: - - pos: -34.5,10.5 - parent: 1 - type: Transform - - uid: 15399 - components: - - pos: -33.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 16385 - components: - - pos: -12.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 16386 - components: - - pos: -11.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 16387 - components: - - pos: -10.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 16388 - components: - - pos: 11.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 16389 - components: - - pos: 10.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 16390 - components: - - pos: 9.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 17312 - components: - - pos: 5.5,80.5 - parent: 1 - type: Transform - - uid: 17313 - components: - - pos: 6.5,80.5 - parent: 1 - type: Transform - - uid: 17315 - components: - - pos: -6.5,80.5 - parent: 1 - type: Transform - - uid: 17316 - components: - - pos: -6.5,80.5 - parent: 1 - type: Transform - - uid: 17317 - components: - - pos: -7.5,80.5 - parent: 1 - type: Transform - - uid: 17328 - components: - - pos: 43.5,51.5 - parent: 1 - type: Transform - - uid: 18064 - components: - - pos: 16.5,-40.5 - parent: 1 - type: Transform - - uid: 18066 - components: - - pos: 21.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 18069 - components: - - pos: -17.5,-40.5 - parent: 1 - type: Transform - - uid: 18072 - components: - - pos: -35.5,-19.5 - parent: 1 - type: Transform - - uid: 18073 - components: - - pos: -36.5,-19.5 - parent: 1 - type: Transform - - uid: 18074 - components: - - pos: -36.5,-20.5 - parent: 1 - type: Transform - - uid: 18075 - components: - - pos: -36.5,-21.5 - parent: 1 - type: Transform - - uid: 18094 - components: - - pos: -44.5,51.5 - parent: 1 - type: Transform - - uid: 18132 - components: - - pos: 14.5,38.5 - parent: 1 - type: Transform - - uid: 18133 - components: - - pos: -33.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 18134 - components: - - pos: -23.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 18135 - components: - - pos: -22.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 18197 - components: - - pos: 34.5,4.5 - parent: 1 - type: Transform - - uid: 18198 - components: - - pos: 34.5,5.5 - parent: 1 - type: Transform - - uid: 18199 - components: - - pos: 35.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 18200 - components: - - pos: 36.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 18201 - components: - - pos: 34.5,1.5 - parent: 1 - type: Transform - - uid: 18202 - components: - - pos: 35.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 18203 - components: - - pos: 36.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 18204 - components: - - pos: 34.5,6.5 - parent: 1 - type: Transform - - uid: 18259 - components: - - pos: 35.5,6.5 - parent: 1 - type: Transform - - uid: 18260 - components: - - pos: 36.5,6.5 - parent: 1 - type: Transform - - uid: 18318 - components: - - pos: -19.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 18319 - components: - - pos: -19.5,64.5 - parent: 1 - type: Transform - - uid: 18467 - components: - - pos: 16.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 18468 - components: - - pos: 16.5,-11.5 - parent: 1 - type: Transform - - uid: 18469 - components: - - pos: 17.5,-11.5 - parent: 1 - type: Transform - - uid: 18470 - components: - - pos: 18.5,-11.5 - parent: 1 - type: Transform -- proto: CableApcStack - entities: - - uid: 1766 - components: - - pos: -42.50212,21.737055 - parent: 1 - type: Transform - - uid: 7462 - components: - - pos: 22.493486,-23.113226 - parent: 1 - type: Transform - - uid: 8668 - components: - - pos: -6.657152,21.752699 - parent: 1 - type: Transform - - uid: 8710 - components: - - pos: -10.359692,-19.510866 - parent: 1 - type: Transform - - uid: 9126 - components: - - pos: 13.59571,-22.378843 - parent: 1 - type: Transform -- proto: CableApcStack1 - entities: - - uid: 9815 - components: - - pos: -41.44949,-9.492805 - parent: 1 - type: Transform - - uid: 9816 - components: - - pos: -43.623955,-9.494401 - parent: 1 - type: Transform - - uid: 9817 - components: - - pos: -42.65844,-9.466018 - parent: 1 - type: Transform - - uid: 10260 - components: - - pos: 37.522205,-12.480022 - parent: 1 - type: Transform - - uid: 11664 - components: - - pos: -45.537365,48.54528 - parent: 1 - type: Transform -- proto: CableHV - entities: - - uid: 175 - components: - - pos: -44.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 177 - components: - - pos: -43.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 179 - components: - - pos: -45.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1224 - components: - - pos: -20.5,28.5 - parent: 1 - type: Transform - - uid: 1990 - components: - - pos: 22.5,-11.5 - parent: 1 - type: Transform - - uid: 2048 - components: - - pos: -40.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3249 - components: - - pos: -35.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3460 - components: - - pos: 13.5,-40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3566 - components: - - pos: 38.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3805 - components: - - pos: 15.5,-12.5 - parent: 1 - type: Transform - - uid: 3833 - components: - - pos: 5.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3834 - components: - - pos: 7.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4595 - components: - - pos: -6.5,-70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4596 - components: - - pos: -6.5,-69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4597 - components: - - pos: -6.5,-68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4598 - components: - - pos: -6.5,-67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4599 - components: - - pos: -6.5,-66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4600 - components: - - pos: -6.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4601 - components: - - pos: -6.5,-64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4602 - components: - - pos: -8.5,-70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4603 - components: - - pos: -8.5,-69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4604 - components: - - pos: -8.5,-68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4605 - components: - - pos: -8.5,-67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4606 - components: - - pos: -8.5,-66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4607 - components: - - pos: -8.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4608 - components: - - pos: -8.5,-64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4609 - components: - - pos: -7.5,-64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4610 - components: - - pos: -7.5,-63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4611 - components: - - pos: -7.5,-62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4612 - components: - - pos: -7.5,-61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4613 - components: - - pos: -7.5,-60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4614 - components: - - pos: -7.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4615 - components: - - pos: -7.5,-58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4616 - components: - - pos: -7.5,-57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4617 - components: - - pos: -7.5,-56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4618 - components: - - pos: -7.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4619 - components: - - pos: -7.5,-54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4620 - components: - - pos: -8.5,-54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4621 - components: - - pos: -9.5,-54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4622 - components: - - pos: -9.5,-53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4623 - components: - - pos: -9.5,-52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4624 - components: - - pos: -9.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4625 - components: - - pos: -9.5,-50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4626 - components: - - pos: -9.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4627 - components: - - pos: -9.5,-48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4628 - components: - - pos: -9.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4629 - components: - - pos: -10.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4630 - components: - - pos: -11.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4631 - components: - - pos: -12.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4632 - components: - - pos: -13.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4633 - components: - - pos: -14.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4634 - components: - - pos: -15.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4635 - components: - - pos: -15.5,-46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4636 - components: - - pos: -15.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4637 - components: - - pos: -15.5,-44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4638 - components: - - pos: -15.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4639 - components: - - pos: -10.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4640 - components: - - pos: -11.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4641 - components: - - pos: -11.5,-50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4642 - components: - - pos: -12.5,-50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4643 - components: - - pos: -12.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4644 - components: - - pos: -10.5,-53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4645 - components: - - pos: -10.5,-54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4646 - components: - - pos: -10.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4647 - components: - - pos: -10.5,-56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4648 - components: - - pos: -9.5,-56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4649 - components: - - pos: -9.5,-57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4650 - components: - - pos: -9.5,-58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4651 - components: - - pos: -9.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4652 - components: - - pos: -8.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4653 - components: - - pos: -8.5,-60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4654 - components: - - pos: -8.5,-61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4655 - components: - - pos: -8.5,-62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4656 - components: - - pos: -6.5,-62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4657 - components: - - pos: -5.5,-62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4658 - components: - - pos: -5.5,-61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4659 - components: - - pos: -5.5,-60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4660 - components: - - pos: -5.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4661 - components: - - pos: -4.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4662 - components: - - pos: -4.5,-58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4663 - components: - - pos: -4.5,-57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4664 - components: - - pos: -4.5,-56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4665 - components: - - pos: -4.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4666 - components: - - pos: -4.5,-54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4667 - components: - - pos: -4.5,-53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4668 - components: - - pos: 3.5,-53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4669 - components: - - pos: 3.5,-54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4670 - components: - - pos: 3.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4671 - components: - - pos: 3.5,-56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4672 - components: - - pos: 3.5,-57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4673 - components: - - pos: 3.5,-58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4674 - components: - - pos: 3.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4675 - components: - - pos: 4.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4676 - components: - - pos: 4.5,-60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4677 - components: - - pos: 4.5,-61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4678 - components: - - pos: 4.5,-62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4679 - components: - - pos: 5.5,-62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4680 - components: - - pos: 6.5,-64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4681 - components: - - pos: 6.5,-63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4682 - components: - - pos: 6.5,-62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4683 - components: - - pos: 6.5,-61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4684 - components: - - pos: 6.5,-60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4685 - components: - - pos: 6.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4686 - components: - - pos: 6.5,-58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4687 - components: - - pos: 6.5,-57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4688 - components: - - pos: 6.5,-56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4689 - components: - - pos: 6.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4690 - components: - - pos: 6.5,-54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4691 - components: - - pos: -8.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4692 - components: - - pos: -7.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4693 - components: - - pos: -6.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4694 - components: - - pos: -5.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4695 - components: - - pos: -4.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4696 - components: - - pos: -3.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4697 - components: - - pos: -3.5,-48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4698 - components: - - pos: -3.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4704 - components: - - pos: 2.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4705 - components: - - pos: 2.5,-48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4706 - components: - - pos: 2.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4707 - components: - - pos: 3.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4708 - components: - - pos: 4.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4709 - components: - - pos: 5.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4710 - components: - - pos: 6.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4711 - components: - - pos: 7.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4712 - components: - - pos: 8.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4713 - components: - - pos: 8.5,-48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4714 - components: - - pos: 8.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4715 - components: - - pos: 8.5,-50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4716 - components: - - pos: 8.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4717 - components: - - pos: 8.5,-52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4718 - components: - - pos: 8.5,-53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4719 - components: - - pos: 8.5,-54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4720 - components: - - pos: 7.5,-54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4721 - components: - - pos: 9.5,-53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4722 - components: - - pos: 9.5,-54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4723 - components: - - pos: 9.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4724 - components: - - pos: 9.5,-56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4725 - components: - - pos: 8.5,-56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4726 - components: - - pos: 8.5,-57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4727 - components: - - pos: 8.5,-58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4728 - components: - - pos: 8.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4729 - components: - - pos: 7.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4730 - components: - - pos: 7.5,-60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4731 - components: - - pos: 7.5,-61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4732 - components: - - pos: 7.5,-62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4733 - components: - - pos: 9.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4734 - components: - - pos: 10.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4735 - components: - - pos: 10.5,-50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4736 - components: - - pos: 11.5,-50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4737 - components: - - pos: 11.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4738 - components: - - pos: 13.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4739 - components: - - pos: 14.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4740 - components: - - pos: 14.5,-46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4741 - components: - - pos: 14.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4742 - components: - - pos: 14.5,-44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4743 - components: - - pos: 14.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4744 - components: - - pos: 12.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4745 - components: - - pos: 12.5,-46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4746 - components: - - pos: 12.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4747 - components: - - pos: 12.5,-44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4748 - components: - - pos: 12.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4749 - components: - - pos: 12.5,-42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4750 - components: - - pos: 12.5,-41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4751 - components: - - pos: 12.5,-40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4752 - components: - - pos: 12.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4753 - components: - - pos: 12.5,-38.5 - parent: 1 - type: Transform - - uid: 4754 - components: - - pos: 12.5,-37.5 - parent: 1 - type: Transform - - uid: 4755 - components: - - pos: 11.5,-37.5 - parent: 1 - type: Transform - - uid: 4756 - components: - - pos: 11.5,-36.5 - parent: 1 - type: Transform - - uid: 4757 - components: - - pos: 11.5,-35.5 - parent: 1 - type: Transform - - uid: 4758 - components: - - pos: 14.5,-35.5 - parent: 1 - type: Transform - - uid: 4759 - components: - - pos: 13.5,-35.5 - parent: 1 - type: Transform - - uid: 4760 - components: - - pos: 13.5,-34.5 - parent: 1 - type: Transform - - uid: 4761 - components: - - pos: 13.5,-33.5 - parent: 1 - type: Transform - - uid: 4762 - components: - - pos: 13.5,-32.5 - parent: 1 - type: Transform - - uid: 4763 - components: - - pos: 7.5,-33.5 - parent: 1 - type: Transform - - uid: 4764 - components: - - pos: 7.5,-34.5 - parent: 1 - type: Transform - - uid: 4765 - components: - - pos: 7.5,-35.5 - parent: 1 - type: Transform - - uid: 4766 - components: - - pos: 7.5,-36.5 - parent: 1 - type: Transform - - uid: 4767 - components: - - pos: 7.5,-37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4768 - components: - - pos: 7.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4769 - components: - - pos: 7.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4770 - components: - - pos: 7.5,-40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4771 - components: - - pos: 6.5,-40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4772 - components: - - pos: 6.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4773 - components: - - pos: 7.5,-32.5 - parent: 1 - type: Transform - - uid: 4774 - components: - - pos: 7.5,-31.5 - parent: 1 - type: Transform - - uid: 4775 - components: - - pos: 7.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4776 - components: - - pos: 6.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4777 - components: - - pos: 5.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4778 - components: - - pos: 8.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4783 - components: - - pos: 5.5,-29.5 - parent: 1 - type: Transform - - uid: 4784 - components: - - pos: 6.5,-29.5 - parent: 1 - type: Transform - - uid: 4785 - components: - - pos: 7.5,-29.5 - parent: 1 - type: Transform - - uid: 4786 - components: - - pos: 8.5,-29.5 - parent: 1 - type: Transform - - uid: 4787 - components: - - pos: 9.5,-29.5 - parent: 1 - type: Transform - - uid: 4788 - components: - - pos: 10.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4789 - components: - - pos: 11.5,-29.5 - parent: 1 - type: Transform - - uid: 4790 - components: - - pos: 12.5,-29.5 - parent: 1 - type: Transform - - uid: 4791 - components: - - pos: 12.5,-28.5 - parent: 1 - type: Transform - - uid: 4792 - components: - - pos: 12.5,-27.5 - parent: 1 - type: Transform - - uid: 4793 - components: - - pos: 12.5,-26.5 - parent: 1 - type: Transform - - uid: 4794 - components: - - pos: 12.5,-25.5 - parent: 1 - type: Transform - - uid: 4795 - components: - - pos: 12.5,-24.5 - parent: 1 - type: Transform - - uid: 4796 - components: - - pos: 12.5,-23.5 - parent: 1 - type: Transform - - uid: 4797 - components: - - pos: 12.5,-22.5 - parent: 1 - type: Transform - - uid: 4798 - components: - - pos: 12.5,-21.5 - parent: 1 - type: Transform - - uid: 4799 - components: - - pos: 12.5,-20.5 - parent: 1 - type: Transform - - uid: 4800 - components: - - pos: 12.5,-19.5 - parent: 1 - type: Transform - - uid: 4801 - components: - - pos: 12.5,-18.5 - parent: 1 - type: Transform - - uid: 4802 - components: - - pos: 12.5,-17.5 - parent: 1 - type: Transform - - uid: 4803 - components: - - pos: 12.5,-16.5 - parent: 1 - type: Transform - - uid: 4804 - components: - - pos: 12.5,-15.5 - parent: 1 - type: Transform - - uid: 4805 - components: - - pos: 12.5,-14.5 - parent: 1 - type: Transform - - uid: 4806 - components: - - pos: 12.5,-13.5 - parent: 1 - type: Transform - - uid: 4807 - components: - - pos: 12.5,-12.5 - parent: 1 - type: Transform - - uid: 4808 - components: - - pos: 11.5,-15.5 - parent: 1 - type: Transform - - uid: 4809 - components: - - pos: 10.5,-15.5 - parent: 1 - type: Transform - - uid: 4810 - components: - - pos: 9.5,-15.5 - parent: 1 - type: Transform - - uid: 4811 - components: - - pos: 8.5,-15.5 - parent: 1 - type: Transform - - uid: 4812 - components: - - pos: 7.5,-15.5 - parent: 1 - type: Transform - - uid: 4813 - components: - - pos: 6.5,-15.5 - parent: 1 - type: Transform - - uid: 4814 - components: - - pos: 5.5,-15.5 - parent: 1 - type: Transform - - uid: 4815 - components: - - pos: 4.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4816 - components: - - pos: 3.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4817 - components: - - pos: 2.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4818 - components: - - pos: 1.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4819 - components: - - pos: 0.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4820 - components: - - pos: -0.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4821 - components: - - pos: -1.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4822 - components: - - pos: -2.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4823 - components: - - pos: -3.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4824 - components: - - pos: -4.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4825 - components: - - pos: -5.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4826 - components: - - pos: -6.5,-15.5 - parent: 1 - type: Transform - - uid: 4827 - components: - - pos: -7.5,-15.5 - parent: 1 - type: Transform - - uid: 4828 - components: - - pos: -8.5,-15.5 - parent: 1 - type: Transform - - uid: 4829 - components: - - pos: -9.5,-15.5 - parent: 1 - type: Transform - - uid: 4830 - components: - - pos: -10.5,-15.5 - parent: 1 - type: Transform - - uid: 4831 - components: - - pos: -11.5,-15.5 - parent: 1 - type: Transform - - uid: 4832 - components: - - pos: -12.5,-15.5 - parent: 1 - type: Transform - - uid: 4833 - components: - - pos: -12.5,-16.5 - parent: 1 - type: Transform - - uid: 4834 - components: - - pos: -12.5,-17.5 - parent: 1 - type: Transform - - uid: 4835 - components: - - pos: -12.5,-18.5 - parent: 1 - type: Transform - - uid: 4836 - components: - - pos: -12.5,-19.5 - parent: 1 - type: Transform - - uid: 4837 - components: - - pos: -12.5,-20.5 - parent: 1 - type: Transform - - uid: 4838 - components: - - pos: -12.5,-21.5 - parent: 1 - type: Transform - - uid: 4839 - components: - - pos: -12.5,-22.5 - parent: 1 - type: Transform - - uid: 4840 - components: - - pos: -12.5,-23.5 - parent: 1 - type: Transform - - uid: 4841 - components: - - pos: -12.5,-24.5 - parent: 1 - type: Transform - - uid: 4842 - components: - - pos: -12.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4843 - components: - - pos: -13.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4844 - components: - - pos: -12.5,-26.5 - parent: 1 - type: Transform - - uid: 4845 - components: - - pos: -12.5,-27.5 - parent: 1 - type: Transform - - uid: 4846 - components: - - pos: -12.5,-28.5 - parent: 1 - type: Transform - - uid: 4847 - components: - - pos: -12.5,-29.5 - parent: 1 - type: Transform - - uid: 4848 - components: - - pos: -12.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4849 - components: - - pos: -13.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4850 - components: - - pos: -12.5,-31.5 - parent: 1 - type: Transform - - uid: 4851 - components: - - pos: -12.5,-32.5 - parent: 1 - type: Transform - - uid: 4852 - components: - - pos: -12.5,-33.5 - parent: 1 - type: Transform - - uid: 4853 - components: - - pos: -12.5,-34.5 - parent: 1 - type: Transform - - uid: 4854 - components: - - pos: -12.5,-35.5 - parent: 1 - type: Transform - - uid: 4855 - components: - - pos: -12.5,-36.5 - parent: 1 - type: Transform - - uid: 4856 - components: - - pos: -13.5,-36.5 - parent: 1 - type: Transform - - uid: 4857 - components: - - pos: -14.5,-36.5 - parent: 1 - type: Transform - - uid: 4858 - components: - - pos: -15.5,-36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4859 - components: - - pos: -16.5,-36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4860 - components: - - pos: -16.5,-35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4861 - components: - - pos: -16.5,-34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4862 - components: - - pos: -16.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4863 - components: - - pos: -16.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4864 - components: - - pos: -16.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4865 - components: - - pos: -17.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4866 - components: - - pos: -18.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4867 - components: - - pos: -18.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4868 - components: - - pos: -18.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4869 - components: - - pos: -18.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4870 - components: - - pos: -18.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4871 - components: - - pos: -18.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4872 - components: - - pos: -18.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4873 - components: - - pos: -18.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4874 - components: - - pos: -19.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4875 - components: - - pos: -20.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4876 - components: - - pos: -17.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4877 - components: - - pos: -16.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4878 - components: - - pos: -16.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4879 - components: - - pos: -16.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4880 - components: - - pos: -16.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4881 - components: - - pos: -16.5,-20.5 - parent: 1 - type: Transform - - uid: 4882 - components: - - pos: -16.5,-19.5 - parent: 1 - type: Transform - - uid: 4883 - components: - - pos: -16.5,-18.5 - parent: 1 - type: Transform - - uid: 4884 - components: - - pos: -16.5,-17.5 - parent: 1 - type: Transform - - uid: 4885 - components: - - pos: -16.5,-16.5 - parent: 1 - type: Transform - - uid: 4886 - components: - - pos: -16.5,-15.5 - parent: 1 - type: Transform - - uid: 4887 - components: - - pos: -16.5,-14.5 - parent: 1 - type: Transform - - uid: 4888 - components: - - pos: -16.5,-13.5 - parent: 1 - type: Transform - - uid: 4889 - components: - - pos: -16.5,-12.5 - parent: 1 - type: Transform - - uid: 4890 - components: - - pos: -16.5,-11.5 - parent: 1 - type: Transform - - uid: 4891 - components: - - pos: -16.5,-10.5 - parent: 1 - type: Transform - - uid: 4892 - components: - - pos: -16.5,-9.5 - parent: 1 - type: Transform - - uid: 4893 - components: - - pos: -12.5,-9.5 - parent: 1 - type: Transform - - uid: 4894 - components: - - pos: -12.5,-10.5 - parent: 1 - type: Transform - - uid: 4895 - components: - - pos: -12.5,-11.5 - parent: 1 - type: Transform - - uid: 4896 - components: - - pos: -12.5,-12.5 - parent: 1 - type: Transform - - uid: 4897 - components: - - pos: -12.5,-13.5 - parent: 1 - type: Transform - - uid: 4898 - components: - - pos: -12.5,-14.5 - parent: 1 - type: Transform - - uid: 4899 - components: - - pos: -13.5,-9.5 - parent: 1 - type: Transform - - uid: 4900 - components: - - pos: -14.5,-9.5 - parent: 1 - type: Transform - - uid: 4901 - components: - - pos: -15.5,-9.5 - parent: 1 - type: Transform - - uid: 4902 - components: - - pos: -20.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4903 - components: - - pos: -20.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4904 - components: - - pos: -20.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4905 - components: - - pos: -20.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4906 - components: - - pos: -20.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4907 - components: - - pos: -21.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4908 - components: - - pos: -22.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4909 - components: - - pos: -23.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4910 - components: - - pos: -24.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4911 - components: - - pos: -25.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4912 - components: - - pos: -26.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4913 - components: - - pos: -27.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4914 - components: - - pos: -28.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4915 - components: - - pos: -29.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4916 - components: - - pos: -29.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4917 - components: - - pos: -29.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4918 - components: - - pos: -29.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4919 - components: - - pos: -29.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4920 - components: - - pos: -29.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4921 - components: - - pos: -29.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4922 - components: - - pos: -29.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4923 - components: - - pos: -29.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4924 - components: - - pos: -29.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4925 - components: - - pos: -29.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4926 - components: - - pos: -28.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4927 - components: - - pos: -27.5,-16.5 - parent: 1 - type: Transform - - uid: 4928 - components: - - pos: -26.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4929 - components: - - pos: -25.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4930 - components: - - pos: -25.5,-15.5 - parent: 1 - type: Transform - - uid: 4932 - components: - - pos: -3.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4933 - components: - - pos: -3.5,73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4934 - components: - - pos: -3.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4935 - components: - - pos: -3.5,71.5 - parent: 1 - type: Transform - - uid: 4936 - components: - - pos: -3.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4937 - components: - - pos: -4.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4938 - components: - - pos: -4.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4939 - components: - - pos: -4.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4940 - components: - - pos: -4.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4941 - components: - - pos: -3.5,67.5 - parent: 1 - type: Transform - - uid: 4942 - components: - - pos: -2.5,67.5 - parent: 1 - type: Transform - - uid: 4943 - components: - - pos: -1.5,67.5 - parent: 1 - type: Transform - - uid: 4944 - components: - - pos: -5.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4945 - components: - - pos: -6.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4946 - components: - - pos: -7.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4947 - components: - - pos: -8.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4948 - components: - - pos: -9.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4949 - components: - - pos: -10.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4950 - components: - - pos: -11.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4951 - components: - - pos: -12.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4952 - components: - - pos: -13.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4953 - components: - - pos: -13.5,66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4954 - components: - - pos: -13.5,65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4955 - components: - - pos: -13.5,64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4956 - components: - - pos: -13.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4957 - components: - - pos: -13.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4958 - components: - - pos: -14.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4959 - components: - - pos: -15.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4960 - components: - - pos: -16.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4961 - components: - - pos: -17.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4962 - components: - - pos: -18.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4963 - components: - - pos: -19.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4964 - components: - - pos: -19.5,61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4965 - components: - - pos: -19.5,60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4966 - components: - - pos: -19.5,59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4967 - components: - - pos: -19.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4968 - components: - - pos: -19.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4969 - components: - - pos: -20.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4970 - components: - - pos: -21.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4971 - components: - - pos: -21.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4972 - components: - - pos: -21.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4973 - components: - - pos: -21.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4974 - components: - - pos: -21.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4975 - components: - - pos: -21.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4976 - components: - - pos: -21.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4977 - components: - - pos: -21.5,50.5 - parent: 1 - type: Transform - - uid: 4978 - components: - - pos: -21.5,49.5 - parent: 1 - type: Transform - - uid: 4979 - components: - - pos: -21.5,48.5 - parent: 1 - type: Transform - - uid: 4980 - components: - - pos: -21.5,47.5 - parent: 1 - type: Transform - - uid: 4981 - components: - - pos: -21.5,46.5 - parent: 1 - type: Transform - - uid: 4982 - components: - - pos: -21.5,45.5 - parent: 1 - type: Transform - - uid: 4983 - components: - - pos: -21.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4984 - components: - - pos: -21.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4985 - components: - - pos: -21.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4986 - components: - - pos: -21.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4987 - components: - - pos: -21.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4988 - components: - - pos: -21.5,39.5 - parent: 1 - type: Transform - - uid: 4989 - components: - - pos: -21.5,38.5 - parent: 1 - type: Transform - - uid: 4990 - components: - - pos: -21.5,37.5 - parent: 1 - type: Transform - - uid: 4991 - components: - - pos: -21.5,36.5 - parent: 1 - type: Transform - - uid: 4992 - components: - - pos: -22.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4993 - components: - - pos: -23.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4994 - components: - - pos: -24.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4995 - components: - - pos: -24.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4996 - components: - - pos: -24.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4997 - components: - - pos: -24.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4998 - components: - - pos: -24.5,53.5 - parent: 1 - type: Transform - - uid: 4999 - components: - - pos: -24.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5000 - components: - - pos: -24.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5001 - components: - - pos: -24.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5002 - components: - - pos: -0.5,67.5 - parent: 1 - type: Transform - - uid: 5003 - components: - - pos: 0.5,67.5 - parent: 1 - type: Transform - - uid: 5004 - components: - - pos: 1.5,67.5 - parent: 1 - type: Transform - - uid: 5005 - components: - - pos: 2.5,67.5 - parent: 1 - type: Transform - - uid: 5006 - components: - - pos: 3.5,67.5 - parent: 1 - type: Transform - - uid: 5007 - components: - - pos: 4.5,67.5 - parent: 1 - type: Transform - - uid: 5008 - components: - - pos: 5.5,67.5 - parent: 1 - type: Transform - - uid: 5009 - components: - - pos: 6.5,67.5 - parent: 1 - type: Transform - - uid: 5010 - components: - - pos: 7.5,67.5 - parent: 1 - type: Transform - - uid: 5011 - components: - - pos: 7.5,66.5 - parent: 1 - type: Transform - - uid: 5012 - components: - - pos: 7.5,65.5 - parent: 1 - type: Transform - - uid: 5013 - components: - - pos: 7.5,64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5014 - components: - - pos: 7.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5015 - components: - - pos: 8.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5016 - components: - - pos: 9.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5017 - components: - - pos: 10.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5018 - components: - - pos: 11.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5019 - components: - - pos: 12.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5020 - components: - - pos: 13.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5021 - components: - - pos: 14.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5022 - components: - - pos: 15.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5023 - components: - - pos: 16.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5024 - components: - - pos: 17.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5025 - components: - - pos: 18.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5026 - components: - - pos: 18.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5027 - components: - - pos: 18.5,61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5028 - components: - - pos: 18.5,60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5029 - components: - - pos: 18.5,59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5030 - components: - - pos: 18.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5031 - components: - - pos: 19.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5032 - components: - - pos: 19.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5033 - components: - - pos: 19.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5034 - components: - - pos: 18.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5035 - components: - - pos: 17.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5036 - components: - - pos: 16.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5037 - components: - - pos: 20.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5038 - components: - - pos: 21.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5039 - components: - - pos: 22.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5040 - components: - - pos: 22.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5041 - components: - - pos: 22.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5042 - components: - - pos: 22.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5043 - components: - - pos: 22.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5044 - components: - - pos: 22.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5045 - components: - - pos: 22.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5046 - components: - - pos: 22.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5047 - components: - - pos: 22.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5048 - components: - - pos: 22.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5049 - components: - - pos: 22.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5050 - components: - - pos: 22.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5051 - components: - - pos: 23.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5052 - components: - - pos: 24.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5053 - components: - - pos: 25.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5054 - components: - - pos: 25.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5055 - components: - - pos: 25.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5056 - components: - - pos: 25.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5057 - components: - - pos: 25.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5058 - components: - - pos: 25.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5059 - components: - - pos: 25.5,39.5 - parent: 1 - type: Transform - - uid: 5060 - components: - - pos: 25.5,38.5 - parent: 1 - type: Transform - - uid: 5061 - components: - - pos: 25.5,37.5 - parent: 1 - type: Transform - - uid: 5062 - components: - - pos: 25.5,36.5 - parent: 1 - type: Transform - - uid: 5063 - components: - - pos: 16.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5064 - components: - - pos: 16.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5065 - components: - - pos: 16.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5066 - components: - - pos: 16.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5067 - components: - - pos: 16.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5068 - components: - - pos: 17.5,52.5 - parent: 1 - type: Transform - - uid: 5069 - components: - - pos: 18.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5070 - components: - - pos: 19.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5071 - components: - - pos: 20.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5072 - components: - - pos: 20.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5073 - components: - - pos: 20.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5074 - components: - - pos: -20.5,36.5 - parent: 1 - type: Transform - - uid: 5075 - components: - - pos: -19.5,36.5 - parent: 1 - type: Transform - - uid: 5076 - components: - - pos: -18.5,36.5 - parent: 1 - type: Transform - - uid: 5077 - components: - - pos: -17.5,36.5 - parent: 1 - type: Transform - - uid: 5078 - components: - - pos: -16.5,36.5 - parent: 1 - type: Transform - - uid: 5079 - components: - - pos: -15.5,36.5 - parent: 1 - type: Transform - - uid: 5080 - components: - - pos: -14.5,36.5 - parent: 1 - type: Transform - - uid: 5081 - components: - - pos: -13.5,36.5 - parent: 1 - type: Transform - - uid: 5082 - components: - - pos: -12.5,36.5 - parent: 1 - type: Transform - - uid: 5083 - components: - - pos: -11.5,36.5 - parent: 1 - type: Transform - - uid: 5084 - components: - - pos: -10.5,36.5 - parent: 1 - type: Transform - - uid: 5085 - components: - - pos: -9.5,36.5 - parent: 1 - type: Transform - - uid: 5086 - components: - - pos: -8.5,36.5 - parent: 1 - type: Transform - - uid: 5087 - components: - - pos: -7.5,36.5 - parent: 1 - type: Transform - - uid: 5088 - components: - - pos: -6.5,36.5 - parent: 1 - type: Transform - - uid: 5089 - components: - - pos: -5.5,36.5 - parent: 1 - type: Transform - - uid: 5090 - components: - - pos: -4.5,36.5 - parent: 1 - type: Transform - - uid: 5091 - components: - - pos: -3.5,36.5 - parent: 1 - type: Transform - - uid: 5092 - components: - - pos: -2.5,36.5 - parent: 1 - type: Transform - - uid: 5093 - components: - - pos: -1.5,36.5 - parent: 1 - type: Transform - - uid: 5094 - components: - - pos: -0.5,36.5 - parent: 1 - type: Transform - - uid: 5095 - components: - - pos: 0.5,36.5 - parent: 1 - type: Transform - - uid: 5096 - components: - - pos: 1.5,36.5 - parent: 1 - type: Transform - - uid: 5097 - components: - - pos: 2.5,36.5 - parent: 1 - type: Transform - - uid: 5098 - components: - - pos: 3.5,36.5 - parent: 1 - type: Transform - - uid: 5099 - components: - - pos: 4.5,36.5 - parent: 1 - type: Transform - - uid: 5100 - components: - - pos: 5.5,36.5 - parent: 1 - type: Transform - - uid: 5101 - components: - - pos: 6.5,36.5 - parent: 1 - type: Transform - - uid: 5102 - components: - - pos: 7.5,36.5 - parent: 1 - type: Transform - - uid: 5103 - components: - - pos: 8.5,36.5 - parent: 1 - type: Transform - - uid: 5104 - components: - - pos: 9.5,36.5 - parent: 1 - type: Transform - - uid: 5105 - components: - - pos: 10.5,36.5 - parent: 1 - type: Transform - - uid: 5106 - components: - - pos: 11.5,36.5 - parent: 1 - type: Transform - - uid: 5107 - components: - - pos: 12.5,36.5 - parent: 1 - type: Transform - - uid: 5108 - components: - - pos: 13.5,36.5 - parent: 1 - type: Transform - - uid: 5109 - components: - - pos: 14.5,36.5 - parent: 1 - type: Transform - - uid: 5110 - components: - - pos: 15.5,36.5 - parent: 1 - type: Transform - - uid: 5111 - components: - - pos: 16.5,36.5 - parent: 1 - type: Transform - - uid: 5112 - components: - - pos: 17.5,36.5 - parent: 1 - type: Transform - - uid: 5113 - components: - - pos: 18.5,36.5 - parent: 1 - type: Transform - - uid: 5114 - components: - - pos: 19.5,36.5 - parent: 1 - type: Transform - - uid: 5115 - components: - - pos: 20.5,36.5 - parent: 1 - type: Transform - - uid: 5116 - components: - - pos: 21.5,36.5 - parent: 1 - type: Transform - - uid: 5117 - components: - - pos: 22.5,36.5 - parent: 1 - type: Transform - - uid: 5118 - components: - - pos: 23.5,36.5 - parent: 1 - type: Transform - - uid: 5119 - components: - - pos: 24.5,36.5 - parent: 1 - type: Transform - - uid: 5120 - components: - - pos: -1.5,66.5 - parent: 1 - type: Transform - - uid: 5121 - components: - - pos: -1.5,65.5 - parent: 1 - type: Transform - - uid: 5122 - components: - - pos: -1.5,64.5 - parent: 1 - type: Transform - - uid: 5123 - components: - - pos: -1.5,63.5 - parent: 1 - type: Transform - - uid: 5124 - components: - - pos: -1.5,62.5 - parent: 1 - type: Transform - - uid: 5125 - components: - - pos: -1.5,61.5 - parent: 1 - type: Transform - - uid: 5126 - components: - - pos: -1.5,60.5 - parent: 1 - type: Transform - - uid: 5127 - components: - - pos: -1.5,59.5 - parent: 1 - type: Transform - - uid: 5128 - components: - - pos: -1.5,58.5 - parent: 1 - type: Transform - - uid: 5129 - components: - - pos: -1.5,57.5 - parent: 1 - type: Transform - - uid: 5130 - components: - - pos: -1.5,56.5 - parent: 1 - type: Transform - - uid: 5131 - components: - - pos: -1.5,55.5 - parent: 1 - type: Transform - - uid: 5132 - components: - - pos: -1.5,54.5 - parent: 1 - type: Transform - - uid: 5133 - components: - - pos: -1.5,53.5 - parent: 1 - type: Transform - - uid: 5134 - components: - - pos: -1.5,52.5 - parent: 1 - type: Transform - - uid: 5135 - components: - - pos: -1.5,51.5 - parent: 1 - type: Transform - - uid: 5136 - components: - - pos: -1.5,50.5 - parent: 1 - type: Transform - - uid: 5137 - components: - - pos: -1.5,49.5 - parent: 1 - type: Transform - - uid: 5138 - components: - - pos: -1.5,48.5 - parent: 1 - type: Transform - - uid: 5139 - components: - - pos: -1.5,47.5 - parent: 1 - type: Transform - - uid: 5140 - components: - - pos: -1.5,46.5 - parent: 1 - type: Transform - - uid: 5141 - components: - - pos: -1.5,45.5 - parent: 1 - type: Transform - - uid: 5142 - components: - - pos: -1.5,44.5 - parent: 1 - type: Transform - - uid: 5143 - components: - - pos: -1.5,43.5 - parent: 1 - type: Transform - - uid: 5144 - components: - - pos: -1.5,42.5 - parent: 1 - type: Transform - - uid: 5145 - components: - - pos: -1.5,41.5 - parent: 1 - type: Transform - - uid: 5146 - components: - - pos: -1.5,40.5 - parent: 1 - type: Transform - - uid: 5147 - components: - - pos: -1.5,39.5 - parent: 1 - type: Transform - - uid: 5148 - components: - - pos: -1.5,38.5 - parent: 1 - type: Transform - - uid: 5149 - components: - - pos: -1.5,37.5 - parent: 1 - type: Transform - - uid: 5150 - components: - - pos: 0.5,35.5 - parent: 1 - type: Transform - - uid: 5151 - components: - - pos: 0.5,34.5 - parent: 1 - type: Transform - - uid: 5152 - components: - - pos: 0.5,33.5 - parent: 1 - type: Transform - - uid: 5153 - components: - - pos: 0.5,32.5 - parent: 1 - type: Transform - - uid: 5154 - components: - - pos: 0.5,31.5 - parent: 1 - type: Transform - - uid: 5155 - components: - - pos: 0.5,30.5 - parent: 1 - type: Transform - - uid: 5156 - components: - - pos: 0.5,29.5 - parent: 1 - type: Transform - - uid: 5157 - components: - - pos: 0.5,28.5 - parent: 1 - type: Transform - - uid: 5158 - components: - - pos: 0.5,27.5 - parent: 1 - type: Transform - - uid: 5159 - components: - - pos: 0.5,26.5 - parent: 1 - type: Transform - - uid: 5160 - components: - - pos: 0.5,25.5 - parent: 1 - type: Transform - - uid: 5161 - components: - - pos: 0.5,24.5 - parent: 1 - type: Transform - - uid: 5162 - components: - - pos: 0.5,23.5 - parent: 1 - type: Transform - - uid: 5163 - components: - - pos: 0.5,22.5 - parent: 1 - type: Transform - - uid: 5164 - components: - - pos: 0.5,21.5 - parent: 1 - type: Transform - - uid: 5165 - components: - - pos: 0.5,20.5 - parent: 1 - type: Transform - - uid: 5166 - components: - - pos: 0.5,19.5 - parent: 1 - type: Transform - - uid: 5167 - components: - - pos: 0.5,18.5 - parent: 1 - type: Transform - - uid: 5168 - components: - - pos: 0.5,17.5 - parent: 1 - type: Transform - - uid: 5169 - components: - - pos: 0.5,16.5 - parent: 1 - type: Transform - - uid: 5170 - components: - - pos: 0.5,15.5 - parent: 1 - type: Transform - - uid: 5171 - components: - - pos: 0.5,14.5 - parent: 1 - type: Transform - - uid: 5172 - components: - - pos: 0.5,13.5 - parent: 1 - type: Transform - - uid: 5173 - components: - - pos: 25.5,35.5 - parent: 1 - type: Transform - - uid: 5174 - components: - - pos: 24.5,34.5 - parent: 1 - type: Transform - - uid: 5175 - components: - - pos: 24.5,33.5 - parent: 1 - type: Transform - - uid: 5176 - components: - - pos: 24.5,32.5 - parent: 1 - type: Transform - - uid: 5177 - components: - - pos: 24.5,31.5 - parent: 1 - type: Transform - - uid: 5178 - components: - - pos: 24.5,30.5 - parent: 1 - type: Transform - - uid: 5179 - components: - - pos: 24.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5180 - components: - - pos: 24.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5181 - components: - - pos: 24.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5182 - components: - - pos: 24.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5183 - components: - - pos: 24.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5184 - components: - - pos: 24.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5185 - components: - - pos: 23.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5186 - components: - - pos: 22.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5187 - components: - - pos: 21.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5188 - components: - - pos: 20.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5189 - components: - - pos: 19.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5190 - components: - - pos: 19.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5191 - components: - - pos: 19.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5192 - components: - - pos: 19.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5193 - components: - - pos: 19.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5194 - components: - - pos: 19.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5195 - components: - - pos: 19.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5196 - components: - - pos: 19.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5197 - components: - - pos: 19.5,16.5 - parent: 1 - type: Transform - - uid: 5198 - components: - - pos: 19.5,15.5 - parent: 1 - type: Transform - - uid: 5199 - components: - - pos: 19.5,14.5 - parent: 1 - type: Transform - - uid: 5200 - components: - - pos: 19.5,13.5 - parent: 1 - type: Transform - - uid: 5201 - components: - - pos: 18.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5202 - components: - - pos: 17.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5203 - components: - - pos: 16.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5204 - components: - - pos: 15.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5205 - components: - - pos: 14.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5206 - components: - - pos: 14.5,23.5 - parent: 1 - type: Transform - - uid: 5207 - components: - - pos: 14.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5208 - components: - - pos: 14.5,25.5 - parent: 1 - type: Transform - - uid: 5209 - components: - - pos: 15.5,25.5 - parent: 1 - type: Transform - - uid: 5210 - components: - - pos: 16.5,25.5 - parent: 1 - type: Transform - - uid: 5211 - components: - - pos: 18.5,13.5 - parent: 1 - type: Transform - - uid: 5212 - components: - - pos: 17.5,13.5 - parent: 1 - type: Transform - - uid: 5213 - components: - - pos: 16.5,13.5 - parent: 1 - type: Transform - - uid: 5214 - components: - - pos: 15.5,13.5 - parent: 1 - type: Transform - - uid: 5215 - components: - - pos: 14.5,13.5 - parent: 1 - type: Transform - - uid: 5216 - components: - - pos: 13.5,13.5 - parent: 1 - type: Transform - - uid: 5217 - components: - - pos: 12.5,13.5 - parent: 1 - type: Transform - - uid: 5218 - components: - - pos: 11.5,13.5 - parent: 1 - type: Transform - - uid: 5219 - components: - - pos: 10.5,13.5 - parent: 1 - type: Transform - - uid: 5220 - components: - - pos: 9.5,13.5 - parent: 1 - type: Transform - - uid: 5221 - components: - - pos: 8.5,13.5 - parent: 1 - type: Transform - - uid: 5222 - components: - - pos: 7.5,13.5 - parent: 1 - type: Transform - - uid: 5223 - components: - - pos: 6.5,13.5 - parent: 1 - type: Transform - - uid: 5224 - components: - - pos: 5.5,13.5 - parent: 1 - type: Transform - - uid: 5225 - components: - - pos: 4.5,13.5 - parent: 1 - type: Transform - - uid: 5226 - components: - - pos: 3.5,13.5 - parent: 1 - type: Transform - - uid: 5227 - components: - - pos: 2.5,13.5 - parent: 1 - type: Transform - - uid: 5228 - components: - - pos: 1.5,13.5 - parent: 1 - type: Transform - - uid: 5229 - components: - - pos: 26.5,36.5 - parent: 1 - type: Transform - - uid: 5230 - components: - - pos: 27.5,36.5 - parent: 1 - type: Transform - - uid: 5231 - components: - - pos: 28.5,36.5 - parent: 1 - type: Transform - - uid: 5232 - components: - - pos: 29.5,36.5 - parent: 1 - type: Transform - - uid: 5233 - components: - - pos: 30.5,36.5 - parent: 1 - type: Transform - - uid: 5234 - components: - - pos: 31.5,36.5 - parent: 1 - type: Transform - - uid: 5235 - components: - - pos: 32.5,36.5 - parent: 1 - type: Transform - - uid: 5236 - components: - - pos: 32.5,35.5 - parent: 1 - type: Transform - - uid: 5237 - components: - - pos: 32.5,34.5 - parent: 1 - type: Transform - - uid: 5238 - components: - - pos: 32.5,33.5 - parent: 1 - type: Transform - - uid: 5239 - components: - - pos: 32.5,32.5 - parent: 1 - type: Transform - - uid: 5240 - components: - - pos: 32.5,31.5 - parent: 1 - type: Transform - - uid: 5241 - components: - - pos: 32.5,30.5 - parent: 1 - type: Transform - - uid: 5242 - components: - - pos: 32.5,29.5 - parent: 1 - type: Transform - - uid: 5243 - components: - - pos: 32.5,28.5 - parent: 1 - type: Transform - - uid: 5244 - components: - - pos: 32.5,27.5 - parent: 1 - type: Transform - - uid: 5245 - components: - - pos: 32.5,26.5 - parent: 1 - type: Transform - - uid: 5246 - components: - - pos: 32.5,25.5 - parent: 1 - type: Transform - - uid: 5247 - components: - - pos: 32.5,24.5 - parent: 1 - type: Transform - - uid: 5248 - components: - - pos: 32.5,23.5 - parent: 1 - type: Transform - - uid: 5249 - components: - - pos: 32.5,22.5 - parent: 1 - type: Transform - - uid: 5250 - components: - - pos: 32.5,21.5 - parent: 1 - type: Transform - - uid: 5251 - components: - - pos: 32.5,20.5 - parent: 1 - type: Transform - - uid: 5252 - components: - - pos: 32.5,19.5 - parent: 1 - type: Transform - - uid: 5253 - components: - - pos: 32.5,18.5 - parent: 1 - type: Transform - - uid: 5254 - components: - - pos: 32.5,17.5 - parent: 1 - type: Transform - - uid: 5255 - components: - - pos: 32.5,16.5 - parent: 1 - type: Transform - - uid: 5256 - components: - - pos: 32.5,15.5 - parent: 1 - type: Transform - - uid: 5257 - components: - - pos: 32.5,14.5 - parent: 1 - type: Transform - - uid: 5258 - components: - - pos: 32.5,13.5 - parent: 1 - type: Transform - - uid: 5259 - components: - - pos: 32.5,12.5 - parent: 1 - type: Transform - - uid: 5260 - components: - - pos: 32.5,11.5 - parent: 1 - type: Transform - - uid: 5261 - components: - - pos: 32.5,10.5 - parent: 1 - type: Transform - - uid: 5262 - components: - - pos: 32.5,9.5 - parent: 1 - type: Transform - - uid: 5263 - components: - - pos: 32.5,8.5 - parent: 1 - type: Transform - - uid: 5264 - components: - - pos: 32.5,7.5 - parent: 1 - type: Transform - - uid: 5265 - components: - - pos: 31.5,7.5 - parent: 1 - type: Transform - - uid: 5266 - components: - - pos: 31.5,6.5 - parent: 1 - type: Transform - - uid: 5267 - components: - - pos: 31.5,5.5 - parent: 1 - type: Transform - - uid: 5268 - components: - - pos: 31.5,4.5 - parent: 1 - type: Transform - - uid: 5269 - components: - - pos: 31.5,3.5 - parent: 1 - type: Transform - - uid: 5270 - components: - - pos: 31.5,2.5 - parent: 1 - type: Transform - - uid: 5271 - components: - - pos: 31.5,1.5 - parent: 1 - type: Transform - - uid: 5272 - components: - - pos: 18.5,12.5 - parent: 1 - type: Transform - - uid: 5273 - components: - - pos: 31.5,0.5 - parent: 1 - type: Transform - - uid: 5274 - components: - - pos: 32.5,0.5 - parent: 1 - type: Transform - - uid: 5275 - components: - - pos: 32.5,-0.5 - parent: 1 - type: Transform - - uid: 5276 - components: - - pos: 32.5,-1.5 - parent: 1 - type: Transform - - uid: 5277 - components: - - pos: 32.5,-2.5 - parent: 1 - type: Transform - - uid: 5278 - components: - - pos: 32.5,-3.5 - parent: 1 - type: Transform - - uid: 5279 - components: - - pos: 32.5,-4.5 - parent: 1 - type: Transform - - uid: 5280 - components: - - pos: 32.5,-5.5 - parent: 1 - type: Transform - - uid: 5281 - components: - - pos: 32.5,-6.5 - parent: 1 - type: Transform - - uid: 5282 - components: - - pos: 32.5,-7.5 - parent: 1 - type: Transform - - uid: 5283 - components: - - pos: 32.5,-8.5 - parent: 1 - type: Transform - - uid: 5284 - components: - - pos: 32.5,-9.5 - parent: 1 - type: Transform - - uid: 5285 - components: - - pos: 33.5,-9.5 - parent: 1 - type: Transform - - uid: 5286 - components: - - pos: 34.5,-9.5 - parent: 1 - type: Transform - - uid: 5287 - components: - - pos: 35.5,-9.5 - parent: 1 - type: Transform - - uid: 5288 - components: - - pos: 36.5,-9.5 - parent: 1 - type: Transform - - uid: 5289 - components: - - pos: 37.5,-9.5 - parent: 1 - type: Transform - - uid: 5290 - components: - - pos: 18.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5291 - components: - - pos: 18.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5292 - components: - - pos: 18.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5293 - components: - - pos: 18.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5294 - components: - - pos: 18.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5295 - components: - - pos: 18.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5296 - components: - - pos: 17.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5297 - components: - - pos: 16.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5298 - components: - - pos: 15.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5299 - components: - - pos: 14.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5300 - components: - - pos: 14.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5301 - components: - - pos: 14.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5302 - components: - - pos: 14.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5303 - components: - - pos: 14.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5304 - components: - - pos: 14.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5305 - components: - - pos: 14.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5306 - components: - - pos: 14.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5307 - components: - - pos: 14.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5308 - components: - - pos: 14.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5309 - components: - - pos: 14.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5310 - components: - - pos: 14.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5311 - components: - - pos: 14.5,-5.5 - parent: 1 - type: Transform - - uid: 5312 - components: - - pos: 14.5,-6.5 - parent: 1 - type: Transform - - uid: 5313 - components: - - pos: 15.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5314 - components: - - pos: 16.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5315 - components: - - pos: 17.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5316 - components: - - pos: 18.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5317 - components: - - pos: 18.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5318 - components: - - pos: 18.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5319 - components: - - pos: 18.5,1.5 - parent: 1 - type: Transform - - uid: 5320 - components: - - pos: 18.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5321 - components: - - pos: 18.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5322 - components: - - pos: 18.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5323 - components: - - pos: 17.5,4.5 - parent: 1 - type: Transform - - uid: 5324 - components: - - pos: 31.5,-9.5 - parent: 1 - type: Transform - - uid: 5325 - components: - - pos: 30.5,-9.5 - parent: 1 - type: Transform - - uid: 5326 - components: - - pos: 29.5,-9.5 - parent: 1 - type: Transform - - uid: 5327 - components: - - pos: 28.5,-9.5 - parent: 1 - type: Transform - - uid: 5328 - components: - - pos: 27.5,-9.5 - parent: 1 - type: Transform - - uid: 5329 - components: - - pos: 26.5,-9.5 - parent: 1 - type: Transform - - uid: 5330 - components: - - pos: 25.5,-9.5 - parent: 1 - type: Transform - - uid: 5331 - components: - - pos: 24.5,-9.5 - parent: 1 - type: Transform - - uid: 5332 - components: - - pos: 23.5,-9.5 - parent: 1 - type: Transform - - uid: 5333 - components: - - pos: 22.5,-9.5 - parent: 1 - type: Transform - - uid: 5334 - components: - - pos: 21.5,-9.5 - parent: 1 - type: Transform - - uid: 5335 - components: - - pos: 20.5,-9.5 - parent: 1 - type: Transform - - uid: 5336 - components: - - pos: 19.5,-9.5 - parent: 1 - type: Transform - - uid: 5337 - components: - - pos: 18.5,-9.5 - parent: 1 - type: Transform - - uid: 5338 - components: - - pos: 17.5,-9.5 - parent: 1 - type: Transform - - uid: 5339 - components: - - pos: 16.5,-9.5 - parent: 1 - type: Transform - - uid: 5340 - components: - - pos: 15.5,-9.5 - parent: 1 - type: Transform - - uid: 5341 - components: - - pos: 14.5,-9.5 - parent: 1 - type: Transform - - uid: 5342 - components: - - pos: 13.5,-9.5 - parent: 1 - type: Transform - - uid: 5343 - components: - - pos: 12.5,-9.5 - parent: 1 - type: Transform - - uid: 5344 - components: - - pos: 11.5,-9.5 - parent: 1 - type: Transform - - uid: 5345 - components: - - pos: 11.5,-12.5 - parent: 1 - type: Transform - - uid: 5346 - components: - - pos: 11.5,-11.5 - parent: 1 - type: Transform - - uid: 5347 - components: - - pos: 11.5,-10.5 - parent: 1 - type: Transform - - uid: 5349 - components: - - pos: 13.5,-13.5 - parent: 1 - type: Transform - - uid: 5350 - components: - - pos: 10.5,-9.5 - parent: 1 - type: Transform - - uid: 5351 - components: - - pos: 9.5,-9.5 - parent: 1 - type: Transform - - uid: 5352 - components: - - pos: 8.5,-9.5 - parent: 1 - type: Transform - - uid: 5353 - components: - - pos: 7.5,-9.5 - parent: 1 - type: Transform - - uid: 5354 - components: - - pos: 6.5,-9.5 - parent: 1 - type: Transform - - uid: 5355 - components: - - pos: 5.5,-9.5 - parent: 1 - type: Transform - - uid: 5356 - components: - - pos: 4.5,-9.5 - parent: 1 - type: Transform - - uid: 5357 - components: - - pos: 3.5,-9.5 - parent: 1 - type: Transform - - uid: 5358 - components: - - pos: 2.5,-9.5 - parent: 1 - type: Transform - - uid: 5359 - components: - - pos: 1.5,-9.5 - parent: 1 - type: Transform - - uid: 5360 - components: - - pos: 0.5,-9.5 - parent: 1 - type: Transform - - uid: 5361 - components: - - pos: -0.5,-9.5 - parent: 1 - type: Transform - - uid: 5362 - components: - - pos: -1.5,-9.5 - parent: 1 - type: Transform - - uid: 5363 - components: - - pos: -2.5,-9.5 - parent: 1 - type: Transform - - uid: 5364 - components: - - pos: -3.5,-9.5 - parent: 1 - type: Transform - - uid: 5365 - components: - - pos: -4.5,-9.5 - parent: 1 - type: Transform - - uid: 5366 - components: - - pos: -5.5,-9.5 - parent: 1 - type: Transform - - uid: 5367 - components: - - pos: -6.5,-9.5 - parent: 1 - type: Transform - - uid: 5368 - components: - - pos: -7.5,-9.5 - parent: 1 - type: Transform - - uid: 5369 - components: - - pos: -8.5,-9.5 - parent: 1 - type: Transform - - uid: 5370 - components: - - pos: -9.5,-9.5 - parent: 1 - type: Transform - - uid: 5371 - components: - - pos: -10.5,-9.5 - parent: 1 - type: Transform - - uid: 5372 - components: - - pos: -11.5,-9.5 - parent: 1 - type: Transform - - uid: 5373 - components: - - pos: -17.5,-9.5 - parent: 1 - type: Transform - - uid: 5374 - components: - - pos: -18.5,-9.5 - parent: 1 - type: Transform - - uid: 5375 - components: - - pos: -19.5,-9.5 - parent: 1 - type: Transform - - uid: 5376 - components: - - pos: -20.5,-9.5 - parent: 1 - type: Transform - - uid: 5377 - components: - - pos: -21.5,-9.5 - parent: 1 - type: Transform - - uid: 5378 - components: - - pos: -22.5,-9.5 - parent: 1 - type: Transform - - uid: 5379 - components: - - pos: -23.5,-9.5 - parent: 1 - type: Transform - - uid: 5380 - components: - - pos: -24.5,-9.5 - parent: 1 - type: Transform - - uid: 5381 - components: - - pos: -25.5,-9.5 - parent: 1 - type: Transform - - uid: 5382 - components: - - pos: -26.5,-9.5 - parent: 1 - type: Transform - - uid: 5383 - components: - - pos: -27.5,-9.5 - parent: 1 - type: Transform - - uid: 5384 - components: - - pos: -28.5,-9.5 - parent: 1 - type: Transform - - uid: 5385 - components: - - pos: -29.5,-9.5 - parent: 1 - type: Transform - - uid: 5386 - components: - - pos: -30.5,-9.5 - parent: 1 - type: Transform - - uid: 5387 - components: - - pos: -31.5,-9.5 - parent: 1 - type: Transform - - uid: 5388 - components: - - pos: -32.5,-9.5 - parent: 1 - type: Transform - - uid: 5389 - components: - - pos: -32.5,-7.5 - parent: 1 - type: Transform - - uid: 5391 - components: - - pos: -32.5,-6.5 - parent: 1 - type: Transform - - uid: 5392 - components: - - pos: -32.5,-5.5 - parent: 1 - type: Transform - - uid: 5393 - components: - - pos: -32.5,-4.5 - parent: 1 - type: Transform - - uid: 5394 - components: - - pos: -32.5,-3.5 - parent: 1 - type: Transform - - uid: 5395 - components: - - pos: -32.5,-2.5 - parent: 1 - type: Transform - - uid: 5396 - components: - - pos: -32.5,-1.5 - parent: 1 - type: Transform - - uid: 5397 - components: - - pos: -32.5,-0.5 - parent: 1 - type: Transform - - uid: 5398 - components: - - pos: -32.5,0.5 - parent: 1 - type: Transform - - uid: 5399 - components: - - pos: -32.5,1.5 - parent: 1 - type: Transform - - uid: 5400 - components: - - pos: -32.5,2.5 - parent: 1 - type: Transform - - uid: 5401 - components: - - pos: -32.5,3.5 - parent: 1 - type: Transform - - uid: 5402 - components: - - pos: -32.5,4.5 - parent: 1 - type: Transform - - uid: 5403 - components: - - pos: -32.5,5.5 - parent: 1 - type: Transform - - uid: 5404 - components: - - pos: -32.5,6.5 - parent: 1 - type: Transform - - uid: 5405 - components: - - pos: -32.5,7.5 - parent: 1 - type: Transform - - uid: 5406 - components: - - pos: -32.5,8.5 - parent: 1 - type: Transform - - uid: 5407 - components: - - pos: -32.5,9.5 - parent: 1 - type: Transform - - uid: 5408 - components: - - pos: -32.5,10.5 - parent: 1 - type: Transform - - uid: 5409 - components: - - pos: -32.5,11.5 - parent: 1 - type: Transform - - uid: 5410 - components: - - pos: -32.5,12.5 - parent: 1 - type: Transform - - uid: 5411 - components: - - pos: -32.5,13.5 - parent: 1 - type: Transform - - uid: 5412 - components: - - pos: -31.5,13.5 - parent: 1 - type: Transform - - uid: 5413 - components: - - pos: -30.5,13.5 - parent: 1 - type: Transform - - uid: 5414 - components: - - pos: -29.5,13.5 - parent: 1 - type: Transform - - uid: 5415 - components: - - pos: -28.5,13.5 - parent: 1 - type: Transform - - uid: 5416 - components: - - pos: -27.5,13.5 - parent: 1 - type: Transform - - uid: 5417 - components: - - pos: -26.5,13.5 - parent: 1 - type: Transform - - uid: 5418 - components: - - pos: -25.5,13.5 - parent: 1 - type: Transform - - uid: 5419 - components: - - pos: -24.5,13.5 - parent: 1 - type: Transform - - uid: 5420 - components: - - pos: -23.5,13.5 - parent: 1 - type: Transform - - uid: 5421 - components: - - pos: -22.5,13.5 - parent: 1 - type: Transform - - uid: 5422 - components: - - pos: -21.5,13.5 - parent: 1 - type: Transform - - uid: 5423 - components: - - pos: -20.5,13.5 - parent: 1 - type: Transform - - uid: 5424 - components: - - pos: -19.5,13.5 - parent: 1 - type: Transform - - uid: 5425 - components: - - pos: -18.5,13.5 - parent: 1 - type: Transform - - uid: 5426 - components: - - pos: -17.5,13.5 - parent: 1 - type: Transform - - uid: 5427 - components: - - pos: -16.5,13.5 - parent: 1 - type: Transform - - uid: 5428 - components: - - pos: -15.5,13.5 - parent: 1 - type: Transform - - uid: 5429 - components: - - pos: -14.5,13.5 - parent: 1 - type: Transform - - uid: 5430 - components: - - pos: -13.5,13.5 - parent: 1 - type: Transform - - uid: 5431 - components: - - pos: -12.5,13.5 - parent: 1 - type: Transform - - uid: 5432 - components: - - pos: -11.5,13.5 - parent: 1 - type: Transform - - uid: 5433 - components: - - pos: -10.5,13.5 - parent: 1 - type: Transform - - uid: 5434 - components: - - pos: -9.5,13.5 - parent: 1 - type: Transform - - uid: 5435 - components: - - pos: -8.5,13.5 - parent: 1 - type: Transform - - uid: 5436 - components: - - pos: -7.5,13.5 - parent: 1 - type: Transform - - uid: 5437 - components: - - pos: -6.5,13.5 - parent: 1 - type: Transform - - uid: 5438 - components: - - pos: -5.5,13.5 - parent: 1 - type: Transform - - uid: 5439 - components: - - pos: -4.5,13.5 - parent: 1 - type: Transform - - uid: 5440 - components: - - pos: -3.5,13.5 - parent: 1 - type: Transform - - uid: 5441 - components: - - pos: -2.5,13.5 - parent: 1 - type: Transform - - uid: 5442 - components: - - pos: -1.5,13.5 - parent: 1 - type: Transform - - uid: 5443 - components: - - pos: -0.5,13.5 - parent: 1 - type: Transform - - uid: 5444 - components: - - pos: -30.5,14.5 - parent: 1 - type: Transform - - uid: 5445 - components: - - pos: -30.5,15.5 - parent: 1 - type: Transform - - uid: 5446 - components: - - pos: -30.5,16.5 - parent: 1 - type: Transform - - uid: 5447 - components: - - pos: -30.5,17.5 - parent: 1 - type: Transform - - uid: 5448 - components: - - pos: -30.5,18.5 - parent: 1 - type: Transform - - uid: 5449 - components: - - pos: -30.5,19.5 - parent: 1 - type: Transform - - uid: 5450 - components: - - pos: -30.5,20.5 - parent: 1 - type: Transform - - uid: 5451 - components: - - pos: -30.5,21.5 - parent: 1 - type: Transform - - uid: 5452 - components: - - pos: -30.5,22.5 - parent: 1 - type: Transform - - uid: 5453 - components: - - pos: -30.5,23.5 - parent: 1 - type: Transform - - uid: 5454 - components: - - pos: -30.5,24.5 - parent: 1 - type: Transform - - uid: 5455 - components: - - pos: -30.5,25.5 - parent: 1 - type: Transform - - uid: 5456 - components: - - pos: -30.5,26.5 - parent: 1 - type: Transform - - uid: 5457 - components: - - pos: -30.5,27.5 - parent: 1 - type: Transform - - uid: 5458 - components: - - pos: -30.5,28.5 - parent: 1 - type: Transform - - uid: 5459 - components: - - pos: -30.5,29.5 - parent: 1 - type: Transform - - uid: 5460 - components: - - pos: -30.5,30.5 - parent: 1 - type: Transform - - uid: 5461 - components: - - pos: -30.5,31.5 - parent: 1 - type: Transform - - uid: 5462 - components: - - pos: -30.5,32.5 - parent: 1 - type: Transform - - uid: 5463 - components: - - pos: -30.5,33.5 - parent: 1 - type: Transform - - uid: 5464 - components: - - pos: -30.5,34.5 - parent: 1 - type: Transform - - uid: 5465 - components: - - pos: -30.5,35.5 - parent: 1 - type: Transform - - uid: 5466 - components: - - pos: -30.5,36.5 - parent: 1 - type: Transform - - uid: 5467 - components: - - pos: -29.5,36.5 - parent: 1 - type: Transform - - uid: 5468 - components: - - pos: -28.5,36.5 - parent: 1 - type: Transform - - uid: 5469 - components: - - pos: -27.5,36.5 - parent: 1 - type: Transform - - uid: 5470 - components: - - pos: -26.5,36.5 - parent: 1 - type: Transform - - uid: 5471 - components: - - pos: -25.5,36.5 - parent: 1 - type: Transform - - uid: 5472 - components: - - pos: -24.5,36.5 - parent: 1 - type: Transform - - uid: 5473 - components: - - pos: -23.5,36.5 - parent: 1 - type: Transform - - uid: 5474 - components: - - pos: -22.5,36.5 - parent: 1 - type: Transform - - uid: 5475 - components: - - pos: -26.5,-8.5 - parent: 1 - type: Transform - - uid: 5476 - components: - - pos: -26.5,-7.5 - parent: 1 - type: Transform - - uid: 5477 - components: - - pos: -26.5,-6.5 - parent: 1 - type: Transform - - uid: 5478 - components: - - pos: -26.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5479 - components: - - pos: -25.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5480 - components: - - pos: -24.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5481 - components: - - pos: -23.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5482 - components: - - pos: -22.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5483 - components: - - pos: -21.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5484 - components: - - pos: -20.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5485 - components: - - pos: -19.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5486 - components: - - pos: -19.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5487 - components: - - pos: -19.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5488 - components: - - pos: -19.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5489 - components: - - pos: -19.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5490 - components: - - pos: -19.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5491 - components: - - pos: -19.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5492 - components: - - pos: -19.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5493 - components: - - pos: -19.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5494 - components: - - pos: -19.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5495 - components: - - pos: -19.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5496 - components: - - pos: -19.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5497 - components: - - pos: -19.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5498 - components: - - pos: -19.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5499 - components: - - pos: -18.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5500 - components: - - pos: -17.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5501 - components: - - pos: -16.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5502 - components: - - pos: -15.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5503 - components: - - pos: -15.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5504 - components: - - pos: -15.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5505 - components: - - pos: -15.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5506 - components: - - pos: -15.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5507 - components: - - pos: -15.5,12.5 - parent: 1 - type: Transform - - uid: 5508 - components: - - pos: -20.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5509 - components: - - pos: -21.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5510 - components: - - pos: -22.5,-2.5 - parent: 1 - type: Transform - - uid: 5511 - components: - - pos: -23.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5512 - components: - - pos: -24.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5513 - components: - - pos: -25.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5514 - components: - - pos: -25.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5515 - components: - - pos: -25.5,-0.5 - parent: 1 - type: Transform - - uid: 5516 - components: - - pos: -23.5,35.5 - parent: 1 - type: Transform - - uid: 5517 - components: - - pos: -23.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5518 - components: - - pos: -23.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5519 - components: - - pos: -23.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5520 - components: - - pos: -23.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5521 - components: - - pos: -23.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5522 - components: - - pos: -23.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5523 - components: - - pos: -23.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5524 - components: - - pos: -23.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5525 - components: - - pos: -23.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5526 - components: - - pos: -23.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5527 - components: - - pos: -22.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5528 - components: - - pos: -21.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5529 - components: - - pos: -20.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5536 - components: - - pos: -21.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5537 - components: - - pos: -21.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5538 - components: - - pos: -24.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5539 - components: - - pos: -25.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5540 - components: - - pos: -26.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5541 - components: - - pos: -27.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5542 - components: - - pos: -27.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5543 - components: - - pos: -27.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5544 - components: - - pos: -27.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5545 - components: - - pos: -27.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5546 - components: - - pos: -27.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5547 - components: - - pos: -27.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5548 - components: - - pos: -27.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5549 - components: - - pos: -27.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5550 - components: - - pos: -26.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5551 - components: - - pos: -25.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5552 - components: - - pos: -25.5,15.5 - parent: 1 - type: Transform - - uid: 5553 - components: - - pos: -25.5,16.5 - parent: 1 - type: Transform - - uid: 5557 - components: - - pos: -28.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5558 - components: - - pos: -29.5,23.5 - parent: 1 - type: Transform - - uid: 5559 - components: - - pos: 39.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5560 - components: - - pos: 37.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5561 - components: - - pos: 36.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5562 - components: - - pos: 35.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5563 - components: - - pos: 34.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5564 - components: - - pos: 33.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5565 - components: - - pos: 32.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5566 - components: - - pos: 32.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5567 - components: - - pos: 32.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5568 - components: - - pos: 32.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5569 - components: - - pos: 32.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5570 - components: - - pos: 31.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5571 - components: - - pos: 30.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5572 - components: - - pos: 30.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5573 - components: - - pos: 30.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5574 - components: - - pos: 30.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5575 - components: - - pos: 30.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5576 - components: - - pos: 30.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5577 - components: - - pos: 30.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5578 - components: - - pos: 30.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5579 - components: - - pos: 30.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5580 - components: - - pos: 30.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5581 - components: - - pos: 29.5,-19.5 - parent: 1 - type: Transform - - uid: 5582 - components: - - pos: 28.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5583 - components: - - pos: 27.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5584 - components: - - pos: 26.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5585 - components: - - pos: 26.5,-18.5 - parent: 1 - type: Transform - - uid: 5586 - components: - - pos: 11.5,-34.5 - parent: 1 - type: Transform - - uid: 5587 - components: - - pos: 10.5,-34.5 - parent: 1 - type: Transform - - uid: 5588 - components: - - pos: 9.5,-34.5 - parent: 1 - type: Transform - - uid: 5589 - components: - - pos: 8.5,-34.5 - parent: 1 - type: Transform - - uid: 5590 - components: - - pos: 13.5,-31.5 - parent: 1 - type: Transform - - uid: 5591 - components: - - pos: 13.5,-30.5 - parent: 1 - type: Transform - - uid: 5592 - components: - - pos: 13.5,-29.5 - parent: 1 - type: Transform - - uid: 5593 - components: - - pos: 15.5,-35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5595 - components: - - pos: 15.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5596 - components: - - pos: 15.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5599 - components: - - pos: 15.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5600 - components: - - pos: 16.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5601 - components: - - pos: 17.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5602 - components: - - pos: 18.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5603 - components: - - pos: 19.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5604 - components: - - pos: 20.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5605 - components: - - pos: 21.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5606 - components: - - pos: 21.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5607 - components: - - pos: 21.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5608 - components: - - pos: 22.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5609 - components: - - pos: 22.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5610 - components: - - pos: 22.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5611 - components: - - pos: 22.5,-24.5 - parent: 1 - type: Transform - - uid: 5612 - components: - - pos: 23.5,-24.5 - parent: 1 - type: Transform - - uid: 5613 - components: - - pos: 24.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5614 - components: - - pos: 25.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5615 - components: - - pos: 26.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5616 - components: - - pos: 27.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5617 - components: - - pos: 28.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5618 - components: - - pos: 29.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5706 - components: - - pos: -32.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5936 - components: - - pos: -25.5,14.5 - parent: 1 - type: Transform - - uid: 5955 - components: - - pos: -20.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5957 - components: - - pos: 5.5,-64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5958 - components: - - pos: 5.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5959 - components: - - pos: 5.5,-66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5960 - components: - - pos: 5.5,-67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5961 - components: - - pos: 5.5,-68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5962 - components: - - pos: 5.5,-69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5963 - components: - - pos: 5.5,-70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5964 - components: - - pos: 7.5,-70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5965 - components: - - pos: 7.5,-69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5966 - components: - - pos: 7.5,-68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5967 - components: - - pos: 7.5,-67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5968 - components: - - pos: 7.5,-66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5969 - components: - - pos: 7.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5970 - components: - - pos: 7.5,-64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5971 - components: - - pos: -30.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5972 - components: - - pos: -31.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5973 - components: - - pos: -32.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5974 - components: - - pos: -33.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5975 - components: - - pos: -34.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5976 - components: - - pos: -35.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5977 - components: - - pos: -35.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5978 - components: - - pos: -35.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5979 - components: - - pos: -35.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5980 - components: - - pos: -35.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5981 - components: - - pos: -35.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5982 - components: - - pos: -35.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5983 - components: - - pos: -35.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5984 - components: - - pos: -35.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5985 - components: - - pos: -35.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5986 - components: - - pos: -34.5,-7.5 - parent: 1 - type: Transform - - uid: 5987 - components: - - pos: -33.5,-7.5 - parent: 1 - type: Transform - - uid: 6036 - components: - - pos: 14.5,-8.5 - parent: 1 - type: Transform - - uid: 6037 - components: - - pos: 14.5,-7.5 - parent: 1 - type: Transform - - uid: 6046 - components: - - pos: 39.5,-10.5 - parent: 1 - type: Transform - - uid: 6047 - components: - - pos: 39.5,-9.5 - parent: 1 - type: Transform - - uid: 6048 - components: - - pos: 38.5,-9.5 - parent: 1 - type: Transform - - uid: 6076 - components: - - pos: 15.5,-34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6079 - components: - - pos: 15.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6080 - components: - - pos: 15.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6102 - components: - - pos: 25.5,34.5 - parent: 1 - type: Transform - - uid: 6408 - components: - - pos: 7.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6409 - components: - - pos: 7.5,-17.5 - parent: 1 - type: Transform - - uid: 6410 - components: - - pos: 8.5,-17.5 - parent: 1 - type: Transform - - uid: 6411 - components: - - pos: 8.5,-18.5 - parent: 1 - type: Transform - - uid: 6440 - components: - - pos: -27.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6441 - components: - - pos: -27.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6442 - components: - - pos: -27.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6443 - components: - - pos: -27.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6444 - components: - - pos: -27.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6445 - components: - - pos: -27.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6446 - components: - - pos: -27.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6447 - components: - - pos: -27.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6448 - components: - - pos: -28.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6449 - components: - - pos: -29.5,1.5 - parent: 1 - type: Transform - - uid: 6450 - components: - - pos: -30.5,1.5 - parent: 1 - type: Transform - - uid: 6451 - components: - - pos: -31.5,1.5 - parent: 1 - type: Transform - - uid: 6500 - components: - - pos: 9.5,-28.5 - parent: 1 - type: Transform - - uid: 6519 - components: - - pos: -44.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6520 - components: - - pos: -42.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6527 - components: - - pos: -46.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6529 - components: - - pos: -40.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6539 - components: - - pos: -45.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6540 - components: - - pos: -47.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6541 - components: - - pos: -46.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6548 - components: - - pos: -36.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6572 - components: - - pos: -41.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6573 - components: - - pos: -47.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6574 - components: - - pos: -43.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6576 - components: - - pos: 6.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6577 - components: - - pos: 8.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6579 - components: - - pos: 6.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6580 - components: - - pos: 7.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6708 - components: - - pos: -35.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6709 - components: - - pos: -35.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6710 - components: - - pos: -35.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6711 - components: - - pos: -32.5,23.5 - parent: 1 - type: Transform - - uid: 6712 - components: - - pos: -33.5,23.5 - parent: 1 - type: Transform - - uid: 6726 - components: - - pos: -34.5,13.5 - parent: 1 - type: Transform - - uid: 6727 - components: - - pos: -35.5,13.5 - parent: 1 - type: Transform - - uid: 6728 - components: - - pos: -33.5,13.5 - parent: 1 - type: Transform - - uid: 6729 - components: - - pos: -35.5,14.5 - parent: 1 - type: Transform - - uid: 6730 - components: - - pos: -35.5,15.5 - parent: 1 - type: Transform - - uid: 6731 - components: - - pos: -35.5,16.5 - parent: 1 - type: Transform - - uid: 6732 - components: - - pos: -35.5,17.5 - parent: 1 - type: Transform - - uid: 6733 - components: - - pos: -35.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6734 - components: - - pos: -34.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6738 - components: - - pos: -34.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6739 - components: - - pos: -34.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6740 - components: - - pos: -34.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6741 - components: - - pos: -34.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6742 - components: - - pos: -34.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6743 - components: - - pos: -34.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6744 - components: - - pos: -34.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6745 - components: - - pos: -34.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6746 - components: - - pos: -34.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6747 - components: - - pos: -34.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6748 - components: - - pos: -34.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6749 - components: - - pos: -34.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6750 - components: - - pos: -35.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6751 - components: - - pos: -36.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6752 - components: - - pos: -37.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6753 - components: - - pos: -38.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6754 - components: - - pos: -38.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6755 - components: - - pos: -38.5,35.5 - parent: 1 - type: Transform - - uid: 6756 - components: - - pos: -38.5,36.5 - parent: 1 - type: Transform - - uid: 6757 - components: - - pos: -37.5,36.5 - parent: 1 - type: Transform - - uid: 6758 - components: - - pos: -36.5,36.5 - parent: 1 - type: Transform - - uid: 6759 - components: - - pos: -35.5,36.5 - parent: 1 - type: Transform - - uid: 6760 - components: - - pos: -34.5,36.5 - parent: 1 - type: Transform - - uid: 6761 - components: - - pos: -33.5,36.5 - parent: 1 - type: Transform - - uid: 6762 - components: - - pos: -32.5,36.5 - parent: 1 - type: Transform - - uid: 6763 - components: - - pos: -31.5,36.5 - parent: 1 - type: Transform - - uid: 6767 - components: - - pos: -41.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6768 - components: - - pos: -42.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7209 - components: - - pos: 21.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7210 - components: - - pos: 20.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7211 - components: - - pos: 19.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7212 - components: - - pos: 18.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7213 - components: - - pos: 17.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7214 - components: - - pos: 16.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7215 - components: - - pos: 16.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7216 - components: - - pos: 16.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7217 - components: - - pos: 15.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7218 - components: - - pos: 14.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7219 - components: - - pos: 13.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7220 - components: - - pos: 12.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7221 - components: - - pos: 11.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7222 - components: - - pos: 10.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7223 - components: - - pos: 9.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7224 - components: - - pos: 9.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7225 - components: - - pos: 9.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7226 - components: - - pos: 9.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7227 - components: - - pos: 9.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7228 - components: - - pos: 9.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7229 - components: - - pos: 9.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7230 - components: - - pos: 9.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7231 - components: - - pos: 9.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7232 - components: - - pos: 9.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7233 - components: - - pos: 8.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7234 - components: - - pos: 7.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7235 - components: - - pos: 6.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7236 - components: - - pos: 5.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7237 - components: - - pos: 4.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7238 - components: - - pos: 3.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7239 - components: - - pos: 2.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7240 - components: - - pos: 1.5,41.5 - parent: 1 - type: Transform - - uid: 7241 - components: - - pos: 0.5,41.5 - parent: 1 - type: Transform - - uid: 7242 - components: - - pos: -0.5,41.5 - parent: 1 - type: Transform - - uid: 7294 - components: - - pos: 29.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7295 - components: - - pos: 28.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7296 - components: - - pos: 27.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7297 - components: - - pos: 26.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7298 - components: - - pos: 25.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7299 - components: - - pos: 24.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7300 - components: - - pos: 24.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7301 - components: - - pos: 24.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7322 - components: - - pos: 24.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7323 - components: - - pos: 24.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7324 - components: - - pos: 24.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7325 - components: - - pos: 24.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7326 - components: - - pos: 24.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7327 - components: - - pos: 24.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7328 - components: - - pos: 24.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7336 - components: - - pos: -31.5,23.5 - parent: 1 - type: Transform - - uid: 7337 - components: - - pos: 24.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7338 - components: - - pos: 24.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7339 - components: - - pos: 24.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7340 - components: - - pos: 24.5,-10.5 - parent: 1 - type: Transform - - uid: 7341 - components: - - pos: 36.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7347 - components: - - pos: 33.5,36.5 - parent: 1 - type: Transform - - uid: 7348 - components: - - pos: 34.5,36.5 - parent: 1 - type: Transform - - uid: 7349 - components: - - pos: 34.5,37.5 - parent: 1 - type: Transform - - uid: 7350 - components: - - pos: 34.5,38.5 - parent: 1 - type: Transform - - uid: 7351 - components: - - pos: 34.5,39.5 - parent: 1 - type: Transform - - uid: 7352 - components: - - pos: 34.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7353 - components: - - pos: 34.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7354 - components: - - pos: 35.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7355 - components: - - pos: 36.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7356 - components: - - pos: 36.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7357 - components: - - pos: 36.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7358 - components: - - pos: 36.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7359 - components: - - pos: 36.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7360 - components: - - pos: 36.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7361 - components: - - pos: 36.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7362 - components: - - pos: 36.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7363 - components: - - pos: 36.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7364 - components: - - pos: 36.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7365 - components: - - pos: 36.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7366 - components: - - pos: 35.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7367 - components: - - pos: 34.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7368 - components: - - pos: 33.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7369 - components: - - pos: 32.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7370 - components: - - pos: 31.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7371 - components: - - pos: 30.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7372 - components: - - pos: 29.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7373 - components: - - pos: 29.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7374 - components: - - pos: 28.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7375 - components: - - pos: 28.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7376 - components: - - pos: 28.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7377 - components: - - pos: 28.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7378 - components: - - pos: 28.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7379 - components: - - pos: 28.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7380 - components: - - pos: 27.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7381 - components: - - pos: 26.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7382 - components: - - pos: 25.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7383 - components: - - pos: 24.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7384 - components: - - pos: 23.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7385 - components: - - pos: 22.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7546 - components: - - pos: 37.5,60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7547 - components: - - pos: 37.5,59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7548 - components: - - pos: 37.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7549 - components: - - pos: 37.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7550 - components: - - pos: 37.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7551 - components: - - pos: 37.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7552 - components: - - pos: 36.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7553 - components: - - pos: 35.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7554 - components: - - pos: 35.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7555 - components: - - pos: 34.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7556 - components: - - pos: 33.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7557 - components: - - pos: 32.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7558 - components: - - pos: 31.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7559 - components: - - pos: 30.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7560 - components: - - pos: 29.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7561 - components: - - pos: 28.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7562 - components: - - pos: 35.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7563 - components: - - pos: 34.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7564 - components: - - pos: 33.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7565 - components: - - pos: 32.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7566 - components: - - pos: 31.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7567 - components: - - pos: 30.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7568 - components: - - pos: 29.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7569 - components: - - pos: 28.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7570 - components: - - pos: 38.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7571 - components: - - pos: 39.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7572 - components: - - pos: 39.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7573 - components: - - pos: 40.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7574 - components: - - pos: 41.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7575 - components: - - pos: 42.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7576 - components: - - pos: 43.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7577 - components: - - pos: 44.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7578 - components: - - pos: 45.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7579 - components: - - pos: 46.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7580 - components: - - pos: 39.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7581 - components: - - pos: 40.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7582 - components: - - pos: 41.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7583 - components: - - pos: 42.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7584 - components: - - pos: 43.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7585 - components: - - pos: 44.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7586 - components: - - pos: 45.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7587 - components: - - pos: 46.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7588 - components: - - pos: 38.5,73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7589 - components: - - pos: 39.5,73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7590 - components: - - pos: 39.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7591 - components: - - pos: 40.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7592 - components: - - pos: 41.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7593 - components: - - pos: 42.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7594 - components: - - pos: 43.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7595 - components: - - pos: 44.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7596 - components: - - pos: 45.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7597 - components: - - pos: 46.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7598 - components: - - pos: 39.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7599 - components: - - pos: 40.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7600 - components: - - pos: 41.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7601 - components: - - pos: 42.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7602 - components: - - pos: 43.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7603 - components: - - pos: 44.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7604 - components: - - pos: 45.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7605 - components: - - pos: 46.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7606 - components: - - pos: 36.5,73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7607 - components: - - pos: 35.5,73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7608 - components: - - pos: 35.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7609 - components: - - pos: 34.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7610 - components: - - pos: 33.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7611 - components: - - pos: 32.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7612 - components: - - pos: 31.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7613 - components: - - pos: 30.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7614 - components: - - pos: 29.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7615 - components: - - pos: 28.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7616 - components: - - pos: 35.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7617 - components: - - pos: 34.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7618 - components: - - pos: 33.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7619 - components: - - pos: 32.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7620 - components: - - pos: 31.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7621 - components: - - pos: 30.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7622 - components: - - pos: 29.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7623 - components: - - pos: 28.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7830 - components: - - pos: -37.5,73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7831 - components: - - pos: -39.5,73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7832 - components: - - pos: -39.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7833 - components: - - pos: -37.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7834 - components: - - pos: -36.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7835 - components: - - pos: -36.5,73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7836 - components: - - pos: -40.5,73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7837 - components: - - pos: -40.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7838 - components: - - pos: -40.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7839 - components: - - pos: -41.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7840 - components: - - pos: -42.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7841 - components: - - pos: -43.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7842 - components: - - pos: -44.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7843 - components: - - pos: -45.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7844 - components: - - pos: -46.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7845 - components: - - pos: -47.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7846 - components: - - pos: -40.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7847 - components: - - pos: -41.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7848 - components: - - pos: -42.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7849 - components: - - pos: -43.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7850 - components: - - pos: -44.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7851 - components: - - pos: -45.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7852 - components: - - pos: -46.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7853 - components: - - pos: -47.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7854 - components: - - pos: -36.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7855 - components: - - pos: -35.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7856 - components: - - pos: -34.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7857 - components: - - pos: -33.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7858 - components: - - pos: -32.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7859 - components: - - pos: -31.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7860 - components: - - pos: -30.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7861 - components: - - pos: -29.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7862 - components: - - pos: -36.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7863 - components: - - pos: -35.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7864 - components: - - pos: -34.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7865 - components: - - pos: -33.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7866 - components: - - pos: -32.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7867 - components: - - pos: -31.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7868 - components: - - pos: -30.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7869 - components: - - pos: -29.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7871 - components: - - pos: -38.5,59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7872 - components: - - pos: -38.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7873 - components: - - pos: -38.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7874 - components: - - pos: -38.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7875 - components: - - pos: -38.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7883 - components: - - pos: -35.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7896 - components: - - pos: -34.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7897 - components: - - pos: -30.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7903 - components: - - pos: -31.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7904 - components: - - pos: -33.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7905 - components: - - pos: -29.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7906 - components: - - pos: -36.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7907 - components: - - pos: -34.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7908 - components: - - pos: -33.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7909 - components: - - pos: -32.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7910 - components: - - pos: -31.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7911 - components: - - pos: -30.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7912 - components: - - pos: -29.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8012 - components: - - pos: -25.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8013 - components: - - pos: -26.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8014 - components: - - pos: -27.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8015 - components: - - pos: -27.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8016 - components: - - pos: -27.5,55.5 - parent: 1 - type: Transform - - uid: 8017 - components: - - pos: -27.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8018 - components: - - pos: -27.5,53.5 - parent: 1 - type: Transform - - uid: 8019 - components: - - pos: -27.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8020 - components: - - pos: -28.5,52.5 - parent: 1 - type: Transform - - uid: 8021 - components: - - pos: -29.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8022 - components: - - pos: -30.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8023 - components: - - pos: -31.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8024 - components: - - pos: -32.5,52.5 - parent: 1 - type: Transform - - uid: 8025 - components: - - pos: -33.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8026 - components: - - pos: -34.5,52.5 - parent: 1 - type: Transform - - uid: 8027 - components: - - pos: -35.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8028 - components: - - pos: -36.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8029 - components: - - pos: -37.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8030 - components: - - pos: -38.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8031 - components: - - pos: -39.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8032 - components: - - pos: -40.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8033 - components: - - pos: -40.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8034 - components: - - pos: -41.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8035 - components: - - pos: -42.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8036 - components: - - pos: -43.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8037 - components: - - pos: -43.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8038 - components: - - pos: -43.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8039 - components: - - pos: -43.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8040 - components: - - pos: -43.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8041 - components: - - pos: -43.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8042 - components: - - pos: -43.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8043 - components: - - pos: -43.5,44.5 - parent: 1 - type: Transform - - uid: 8044 - components: - - pos: -43.5,43.5 - parent: 1 - type: Transform - - uid: 8045 - components: - - pos: -43.5,42.5 - parent: 1 - type: Transform - - uid: 8046 - components: - - pos: -43.5,41.5 - parent: 1 - type: Transform - - uid: 8047 - components: - - pos: -43.5,40.5 - parent: 1 - type: Transform - - uid: 8048 - components: - - pos: -43.5,39.5 - parent: 1 - type: Transform - - uid: 8049 - components: - - pos: -43.5,38.5 - parent: 1 - type: Transform - - uid: 8050 - components: - - pos: -43.5,37.5 - parent: 1 - type: Transform - - uid: 8051 - components: - - pos: -43.5,36.5 - parent: 1 - type: Transform - - uid: 8052 - components: - - pos: -42.5,36.5 - parent: 1 - type: Transform - - uid: 8053 - components: - - pos: -41.5,36.5 - parent: 1 - type: Transform - - uid: 8054 - components: - - pos: -40.5,36.5 - parent: 1 - type: Transform - - uid: 8055 - components: - - pos: -39.5,36.5 - parent: 1 - type: Transform - - uid: 8057 - components: - - pos: -39.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8058 - components: - - pos: -39.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8059 - components: - - pos: -39.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8821 - components: - - pos: 0.5,-5.5 - parent: 8756 - type: Transform - - uid: 8822 - components: - - pos: -0.5,-5.5 - parent: 8756 - type: Transform - - uid: 8823 - components: - - pos: -1.5,-5.5 - parent: 8756 - type: Transform - - uid: 8824 - components: - - pos: -2.5,-5.5 - parent: 8756 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9727 - components: - - pos: -17.5,-18.5 - parent: 1 - type: Transform - - uid: 9728 - components: - - pos: -18.5,-18.5 - parent: 1 - type: Transform - - uid: 9729 - components: - - pos: -19.5,-18.5 - parent: 1 - type: Transform - - uid: 9730 - components: - - pos: -20.5,-18.5 - parent: 1 - type: Transform - - uid: 9731 - components: - - pos: -21.5,-18.5 - parent: 1 - type: Transform - - uid: 9732 - components: - - pos: -22.5,-18.5 - parent: 1 - type: Transform - - uid: 9733 - components: - - pos: -23.5,-18.5 - parent: 1 - type: Transform - - uid: 10144 - components: - - pos: 36.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10147 - components: - - pos: 36.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10541 - components: - - pos: 7.5,-41.5 - parent: 1 - type: Transform - - uid: 10542 - components: - - pos: 7.5,-42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10543 - components: - - pos: 6.5,-42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10544 - components: - - pos: 5.5,-42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10663 - components: - - pos: 15.5,-11.5 - parent: 1 - type: Transform - - uid: 10871 - components: - - pos: 27.5,-18.5 - parent: 1 - type: Transform - - uid: 13141 - components: - - pos: 20.5,13.5 - parent: 1 - type: Transform - - uid: 13142 - components: - - pos: 21.5,13.5 - parent: 1 - type: Transform - - uid: 13143 - components: - - pos: 22.5,13.5 - parent: 1 - type: Transform - - uid: 13144 - components: - - pos: 23.5,13.5 - parent: 1 - type: Transform - - uid: 13145 - components: - - pos: 24.5,13.5 - parent: 1 - type: Transform - - uid: 13146 - components: - - pos: 25.5,13.5 - parent: 1 - type: Transform - - uid: 13147 - components: - - pos: 26.5,13.5 - parent: 1 - type: Transform - - uid: 13148 - components: - - pos: 27.5,13.5 - parent: 1 - type: Transform - - uid: 13149 - components: - - pos: 28.5,13.5 - parent: 1 - type: Transform - - uid: 13150 - components: - - pos: 29.5,13.5 - parent: 1 - type: Transform - - uid: 13151 - components: - - pos: 30.5,13.5 - parent: 1 - type: Transform - - uid: 13152 - components: - - pos: 31.5,13.5 - parent: 1 - type: Transform - - uid: 13178 - components: - - pos: -25.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13179 - components: - - pos: -25.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14045 - components: - - pos: 36.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14634 - components: - - pos: -32.5,-8.5 - parent: 1 - type: Transform - - uid: 16380 - components: - - pos: 15.5,-13.5 - parent: 1 - type: Transform - - uid: 18454 - components: - - pos: 22.5,-12.5 - parent: 1 - type: Transform - - uid: 18455 - components: - - pos: 22.5,-13.5 - parent: 1 - type: Transform - - uid: 18456 - components: - - pos: 16.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 18458 - components: - - pos: 16.5,-11.5 - parent: 1 - type: Transform - - uid: 18459 - components: - - pos: 16.5,-13.5 - parent: 1 - type: Transform - - uid: 18460 - components: - - pos: 17.5,-13.5 - parent: 1 - type: Transform - - uid: 18461 - components: - - pos: 18.5,-13.5 - parent: 1 - type: Transform - - uid: 18462 - components: - - pos: 19.5,-13.5 - parent: 1 - type: Transform - - uid: 18463 - components: - - pos: 20.5,-13.5 - parent: 1 - type: Transform - - uid: 18464 - components: - - pos: 21.5,-13.5 - parent: 1 - type: Transform -- proto: CableHVStack - entities: - - uid: 9124 - components: - - pos: 13.366544,-22.108011 - parent: 1 - type: Transform -- proto: CableMV - entities: - - uid: 4571 - components: - - pos: 18.5,-11.5 - parent: 1 - type: Transform - - uid: 8825 - components: - - pos: -2.5,-5.5 - parent: 8756 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8826 - components: - - pos: -1.5,-5.5 - parent: 8756 - type: Transform - - uid: 8827 - components: - - pos: -0.5,-5.5 - parent: 8756 - type: Transform - - uid: 8828 - components: - - pos: 0.5,-5.5 - parent: 8756 - type: Transform - - uid: 8829 - components: - - pos: 1.5,-5.5 - parent: 8756 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9079 - components: - - pos: 8.5,-17.5 - parent: 1 - type: Transform - - uid: 9294 - components: - - pos: 17.5,-11.5 - parent: 1 - type: Transform - - uid: 9734 - components: - - pos: -23.5,-18.5 - parent: 1 - type: Transform - - uid: 9735 - components: - - pos: -22.5,-18.5 - parent: 1 - type: Transform - - uid: 9736 - components: - - pos: -22.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9765 - components: - - pos: -25.5,-15.5 - parent: 1 - type: Transform - - uid: 9766 - components: - - pos: -25.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9767 - components: - - pos: -26.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9768 - components: - - pos: -27.5,-16.5 - parent: 1 - type: Transform - - uid: 9769 - components: - - pos: -28.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9770 - components: - - pos: -29.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9771 - components: - - pos: -30.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9772 - components: - - pos: -31.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9773 - components: - - pos: -31.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9774 - components: - - pos: -31.5,-14.5 - parent: 1 - type: Transform - - uid: 9775 - components: - - pos: -31.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10124 - components: - - pos: -24.5,36.5 - parent: 1 - type: Transform - - uid: 10152 - components: - - pos: 26.5,-18.5 - parent: 1 - type: Transform - - uid: 10153 - components: - - pos: 26.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10154 - components: - - pos: 27.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10155 - components: - - pos: 28.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10156 - components: - - pos: 29.5,-19.5 - parent: 1 - type: Transform - - uid: 10157 - components: - - pos: 30.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10158 - components: - - pos: 30.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10159 - components: - - pos: 30.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10160 - components: - - pos: 30.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10161 - components: - - pos: 30.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10162 - components: - - pos: 29.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10163 - components: - - pos: 29.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10272 - components: - - pos: -32.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10273 - components: - - pos: -33.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10274 - components: - - pos: -34.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10275 - components: - - pos: -35.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10276 - components: - - pos: -35.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10277 - components: - - pos: -35.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10278 - components: - - pos: -35.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10279 - components: - - pos: -35.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10280 - components: - - pos: -35.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10281 - components: - - pos: -35.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10282 - components: - - pos: -35.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10283 - components: - - pos: -36.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10284 - components: - - pos: -37.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10285 - components: - - pos: -38.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10286 - components: - - pos: -39.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10287 - components: - - pos: -40.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10288 - components: - - pos: -40.5,-8.5 - parent: 1 - type: Transform - - uid: 10289 - components: - - pos: -40.5,-7.5 - parent: 1 - type: Transform - - uid: 10290 - components: - - pos: -40.5,-6.5 - parent: 1 - type: Transform - - uid: 10291 - components: - - pos: -40.5,-5.5 - parent: 1 - type: Transform - - uid: 10292 - components: - - pos: -40.5,-4.5 - parent: 1 - type: Transform - - uid: 10293 - components: - - pos: -40.5,-3.5 - parent: 1 - type: Transform - - uid: 10294 - components: - - pos: -40.5,-2.5 - parent: 1 - type: Transform - - uid: 10295 - components: - - pos: -40.5,-1.5 - parent: 1 - type: Transform - - uid: 10296 - components: - - pos: -40.5,-0.5 - parent: 1 - type: Transform - - uid: 10297 - components: - - pos: -39.5,-0.5 - parent: 1 - type: Transform - - uid: 10298 - components: - - pos: -39.5,0.5 - parent: 1 - type: Transform - - uid: 10299 - components: - - pos: -39.5,1.5 - parent: 1 - type: Transform - - uid: 10300 - components: - - pos: -39.5,2.5 - parent: 1 - type: Transform - - uid: 10301 - components: - - pos: -39.5,3.5 - parent: 1 - type: Transform - - uid: 10302 - components: - - pos: -39.5,4.5 - parent: 1 - type: Transform - - uid: 10303 - components: - - pos: -39.5,5.5 - parent: 1 - type: Transform - - uid: 10304 - components: - - pos: -39.5,6.5 - parent: 1 - type: Transform - - uid: 10305 - components: - - pos: -39.5,7.5 - parent: 1 - type: Transform - - uid: 10306 - components: - - pos: -40.5,7.5 - parent: 1 - type: Transform - - uid: 10307 - components: - - pos: -41.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10386 - components: - - pos: 30.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10387 - components: - - pos: 30.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10388 - components: - - pos: 30.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10389 - components: - - pos: 30.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10390 - components: - - pos: 30.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10391 - components: - - pos: 29.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10392 - components: - - pos: 28.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10393 - components: - - pos: 27.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10394 - components: - - pos: 26.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10395 - components: - - pos: 25.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10396 - components: - - pos: 24.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10397 - components: - - pos: 23.5,-24.5 - parent: 1 - type: Transform - - uid: 10398 - components: - - pos: 22.5,-24.5 - parent: 1 - type: Transform - - uid: 10399 - components: - - pos: 22.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10400 - components: - - pos: 22.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10401 - components: - - pos: 22.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10402 - components: - - pos: 21.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10403 - components: - - pos: 21.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10404 - components: - - pos: 21.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10405 - components: - - pos: 20.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10406 - components: - - pos: 19.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10407 - components: - - pos: 18.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10408 - components: - - pos: 17.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10409 - components: - - pos: 16.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10410 - components: - - pos: 15.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10411 - components: - - pos: 15.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10412 - components: - - pos: 15.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10413 - components: - - pos: 15.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10414 - components: - - pos: 15.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10415 - components: - - pos: 15.5,-34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10416 - components: - - pos: 8.5,-18.5 - parent: 1 - type: Transform - - uid: 10418 - components: - - pos: 13.5,-35.5 - parent: 1 - type: Transform - - uid: 10419 - components: - - pos: 13.5,-34.5 - parent: 1 - type: Transform - - uid: 10420 - components: - - pos: 13.5,-33.5 - parent: 1 - type: Transform - - uid: 10421 - components: - - pos: 13.5,-32.5 - parent: 1 - type: Transform - - uid: 10422 - components: - - pos: 13.5,-31.5 - parent: 1 - type: Transform - - uid: 10423 - components: - - pos: 13.5,-30.5 - parent: 1 - type: Transform - - uid: 10424 - components: - - pos: 13.5,-29.5 - parent: 1 - type: Transform - - uid: 10425 - components: - - pos: 12.5,-29.5 - parent: 1 - type: Transform - - uid: 10426 - components: - - pos: 12.5,-29.5 - parent: 1 - type: Transform - - uid: 10427 - components: - - pos: 12.5,-28.5 - parent: 1 - type: Transform - - uid: 10428 - components: - - pos: 12.5,-27.5 - parent: 1 - type: Transform - - uid: 10429 - components: - - pos: 12.5,-26.5 - parent: 1 - type: Transform - - uid: 10430 - components: - - pos: 12.5,-25.5 - parent: 1 - type: Transform - - uid: 10431 - components: - - pos: 12.5,-24.5 - parent: 1 - type: Transform - - uid: 10432 - components: - - pos: 12.5,-23.5 - parent: 1 - type: Transform - - uid: 10433 - components: - - pos: 12.5,-22.5 - parent: 1 - type: Transform - - uid: 10434 - components: - - pos: 12.5,-21.5 - parent: 1 - type: Transform - - uid: 10435 - components: - - pos: 12.5,-20.5 - parent: 1 - type: Transform - - uid: 10436 - components: - - pos: 13.5,-23.5 - parent: 1 - type: Transform - - uid: 10437 - components: - - pos: 14.5,-23.5 - parent: 1 - type: Transform - - uid: 10438 - components: - - pos: 15.5,-23.5 - parent: 1 - type: Transform - - uid: 10439 - components: - - pos: 16.5,-23.5 - parent: 1 - type: Transform - - uid: 10440 - components: - - pos: 16.5,-22.5 - parent: 1 - type: Transform - - uid: 10441 - components: - - pos: 16.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10459 - components: - - pos: 12.5,-34.5 - parent: 1 - type: Transform - - uid: 10460 - components: - - pos: 11.5,-34.5 - parent: 1 - type: Transform - - uid: 10461 - components: - - pos: 10.5,-34.5 - parent: 1 - type: Transform - - uid: 10462 - components: - - pos: 9.5,-34.5 - parent: 1 - type: Transform - - uid: 10463 - components: - - pos: 8.5,-34.5 - parent: 1 - type: Transform - - uid: 10464 - components: - - pos: 7.5,-34.5 - parent: 1 - type: Transform - - uid: 10465 - components: - - pos: 6.5,-34.5 - parent: 1 - type: Transform - - uid: 10466 - components: - - pos: 5.5,-34.5 - parent: 1 - type: Transform - - uid: 10467 - components: - - pos: 5.5,-33.5 - parent: 1 - type: Transform - - uid: 10468 - components: - - pos: 5.5,-32.5 - parent: 1 - type: Transform - - uid: 10469 - components: - - pos: 5.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10546 - components: - - pos: 11.5,-20.5 - parent: 1 - type: Transform - - uid: 10547 - components: - - pos: 10.5,-20.5 - parent: 1 - type: Transform - - uid: 10548 - components: - - pos: 10.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10631 - components: - - pos: 28.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10632 - components: - - pos: 27.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10633 - components: - - pos: 26.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10634 - components: - - pos: 25.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10635 - components: - - pos: 24.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10636 - components: - - pos: 24.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10637 - components: - - pos: 24.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10638 - components: - - pos: 24.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10639 - components: - - pos: 24.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10640 - components: - - pos: 24.5,-10.5 - parent: 1 - type: Transform - - uid: 10641 - components: - - pos: 24.5,-9.5 - parent: 1 - type: Transform - - uid: 10662 - components: - - pos: 19.5,-11.5 - parent: 1 - type: Transform - - uid: 10664 - components: - - pos: 22.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10667 - components: - - pos: 7.5,-18.5 - parent: 1 - type: Transform - - uid: 10668 - components: - - pos: 7.5,-19.5 - parent: 1 - type: Transform - - uid: 10669 - components: - - pos: 7.5,-20.5 - parent: 1 - type: Transform - - uid: 10670 - components: - - pos: 8.5,-20.5 - parent: 1 - type: Transform - - uid: 10671 - components: - - pos: 9.5,-20.5 - parent: 1 - type: Transform - - uid: 10672 - components: - - pos: 6.5,-18.5 - parent: 1 - type: Transform - - uid: 10673 - components: - - pos: 6.5,-17.5 - parent: 1 - type: Transform - - uid: 10674 - components: - - pos: 6.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10675 - components: - - pos: 7.5,-17.5 - parent: 1 - type: Transform - - uid: 10676 - components: - - pos: 7.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10677 - components: - - pos: 7.5,-15.5 - parent: 1 - type: Transform - - uid: 10678 - components: - - pos: 6.5,-15.5 - parent: 1 - type: Transform - - uid: 10679 - components: - - pos: 5.5,-15.5 - parent: 1 - type: Transform - - uid: 10680 - components: - - pos: 4.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10681 - components: - - pos: 3.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10682 - components: - - pos: 2.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10683 - components: - - pos: 1.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10684 - components: - - pos: 0.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10685 - components: - - pos: -0.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10686 - components: - - pos: -1.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10687 - components: - - pos: -2.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10688 - components: - - pos: -3.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10689 - components: - - pos: -4.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10690 - components: - - pos: -5.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10691 - components: - - pos: -6.5,-15.5 - parent: 1 - type: Transform - - uid: 10692 - components: - - pos: -7.5,-15.5 - parent: 1 - type: Transform - - uid: 10694 - components: - - pos: -8.5,-15.5 - parent: 1 - type: Transform - - uid: 10695 - components: - - pos: -9.5,-15.5 - parent: 1 - type: Transform - - uid: 10696 - components: - - pos: -10.5,-15.5 - parent: 1 - type: Transform - - uid: 10697 - components: - - pos: -11.5,-15.5 - parent: 1 - type: Transform - - uid: 10698 - components: - - pos: -12.5,-15.5 - parent: 1 - type: Transform - - uid: 10699 - components: - - pos: -12.5,-16.5 - parent: 1 - type: Transform - - uid: 10700 - components: - - pos: -12.5,-17.5 - parent: 1 - type: Transform - - uid: 10701 - components: - - pos: -12.5,-18.5 - parent: 1 - type: Transform - - uid: 10702 - components: - - pos: -12.5,-19.5 - parent: 1 - type: Transform - - uid: 10703 - components: - - pos: -12.5,-20.5 - parent: 1 - type: Transform - - uid: 10704 - components: - - pos: -12.5,-21.5 - parent: 1 - type: Transform - - uid: 10705 - components: - - pos: -12.5,-22.5 - parent: 1 - type: Transform - - uid: 10706 - components: - - pos: -12.5,-23.5 - parent: 1 - type: Transform - - uid: 10707 - components: - - pos: -12.5,-24.5 - parent: 1 - type: Transform - - uid: 10708 - components: - - pos: -12.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10709 - components: - - pos: -12.5,-26.5 - parent: 1 - type: Transform - - uid: 10710 - components: - - pos: -12.5,-27.5 - parent: 1 - type: Transform - - uid: 10711 - components: - - pos: -12.5,-28.5 - parent: 1 - type: Transform - - uid: 10712 - components: - - pos: -12.5,-29.5 - parent: 1 - type: Transform - - uid: 10713 - components: - - pos: -12.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10714 - components: - - pos: -12.5,-31.5 - parent: 1 - type: Transform - - uid: 10715 - components: - - pos: -12.5,-32.5 - parent: 1 - type: Transform - - uid: 10716 - components: - - pos: -12.5,-33.5 - parent: 1 - type: Transform - - uid: 10717 - components: - - pos: -12.5,-34.5 - parent: 1 - type: Transform - - uid: 10718 - components: - - pos: -12.5,-35.5 - parent: 1 - type: Transform - - uid: 10719 - components: - - pos: -12.5,-36.5 - parent: 1 - type: Transform - - uid: 10720 - components: - - pos: -12.5,-37.5 - parent: 1 - type: Transform - - uid: 10721 - components: - - pos: -11.5,-37.5 - parent: 1 - type: Transform - - uid: 10722 - components: - - pos: -11.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10968 - components: - - pos: 25.5,-9.5 - parent: 1 - type: Transform - - uid: 10969 - components: - - pos: 26.5,-9.5 - parent: 1 - type: Transform - - uid: 10970 - components: - - pos: 27.5,-9.5 - parent: 1 - type: Transform - - uid: 10972 - components: - - pos: 29.5,-9.5 - parent: 1 - type: Transform - - uid: 10973 - components: - - pos: 30.5,-9.5 - parent: 1 - type: Transform - - uid: 10974 - components: - - pos: 31.5,-9.5 - parent: 1 - type: Transform - - uid: 10975 - components: - - pos: 32.5,-9.5 - parent: 1 - type: Transform - - uid: 10976 - components: - - pos: 33.5,-9.5 - parent: 1 - type: Transform - - uid: 10977 - components: - - pos: 34.5,-9.5 - parent: 1 - type: Transform - - uid: 10978 - components: - - pos: 35.5,-9.5 - parent: 1 - type: Transform - - uid: 10979 - components: - - pos: 36.5,-9.5 - parent: 1 - type: Transform - - uid: 10980 - components: - - pos: 37.5,-9.5 - parent: 1 - type: Transform - - uid: 10981 - components: - - pos: 38.5,-9.5 - parent: 1 - type: Transform - - uid: 10982 - components: - - pos: 39.5,-9.5 - parent: 1 - type: Transform - - uid: 10983 - components: - - pos: 40.5,-9.5 - parent: 1 - type: Transform - - uid: 10984 - components: - - pos: 41.5,-9.5 - parent: 1 - type: Transform - - uid: 10985 - components: - - pos: 42.5,-9.5 - parent: 1 - type: Transform - - uid: 10986 - components: - - pos: 43.5,-9.5 - parent: 1 - type: Transform - - uid: 10987 - components: - - pos: 44.5,-9.5 - parent: 1 - type: Transform - - uid: 10988 - components: - - pos: 44.5,-8.5 - parent: 1 - type: Transform - - uid: 10989 - components: - - pos: 44.5,-7.5 - parent: 1 - type: Transform - - uid: 10990 - components: - - pos: 44.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11084 - components: - - pos: 17.5,4.5 - parent: 1 - type: Transform - - uid: 11085 - components: - - pos: 18.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11086 - components: - - pos: 18.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11087 - components: - - pos: 18.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11088 - components: - - pos: 18.5,1.5 - parent: 1 - type: Transform - - uid: 11089 - components: - - pos: 18.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11090 - components: - - pos: 19.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11091 - components: - - pos: 20.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11092 - components: - - pos: 21.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11093 - components: - - pos: 21.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11094 - components: - - pos: 21.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11095 - components: - - pos: 21.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11096 - components: - - pos: 21.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11097 - components: - - pos: 21.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11098 - components: - - pos: 22.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11099 - components: - - pos: 22.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11100 - components: - - pos: 23.5,0.5 - parent: 1 - type: Transform - - uid: 11101 - components: - - pos: 24.5,0.5 - parent: 1 - type: Transform - - uid: 11102 - components: - - pos: 25.5,0.5 - parent: 1 - type: Transform - - uid: 11103 - components: - - pos: 25.5,-0.5 - parent: 1 - type: Transform - - uid: 11104 - components: - - pos: 25.5,-1.5 - parent: 1 - type: Transform - - uid: 11105 - components: - - pos: 25.5,-2.5 - parent: 1 - type: Transform - - uid: 11106 - components: - - pos: 25.5,-3.5 - parent: 1 - type: Transform - - uid: 11107 - components: - - pos: 24.5,-3.5 - parent: 1 - type: Transform - - uid: 11108 - components: - - pos: 23.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11236 - components: - - pos: 16.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11237 - components: - - pos: 17.5,9.5 - parent: 1 - type: Transform - - uid: 11238 - components: - - pos: 18.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11239 - components: - - pos: 18.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11240 - components: - - pos: 19.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11241 - components: - - pos: 20.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11242 - components: - - pos: 21.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11243 - components: - - pos: 21.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11244 - components: - - pos: 21.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11282 - components: - - pos: 13.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11283 - components: - - pos: 14.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11284 - components: - - pos: 15.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11285 - components: - - pos: 16.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11286 - components: - - pos: 17.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11287 - components: - - pos: 18.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11288 - components: - - pos: 18.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11378 - components: - - pos: -4.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11379 - components: - - pos: -3.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11380 - components: - - pos: -3.5,75.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11381 - components: - - pos: -3.5,76.5 - parent: 1 - type: Transform - - uid: 11382 - components: - - pos: -4.5,76.5 - parent: 1 - type: Transform - - uid: 11383 - components: - - pos: -5.5,76.5 - parent: 1 - type: Transform - - uid: 11384 - components: - - pos: -6.5,76.5 - parent: 1 - type: Transform - - uid: 11385 - components: - - pos: -7.5,76.5 - parent: 1 - type: Transform - - uid: 11386 - components: - - pos: -8.5,76.5 - parent: 1 - type: Transform - - uid: 11387 - components: - - pos: -9.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11388 - components: - - pos: -9.5,77.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11389 - components: - - pos: -9.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11390 - components: - - pos: -8.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11391 - components: - - pos: -8.5,79.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11392 - components: - - pos: -8.5,80.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11393 - components: - - pos: -8.5,81.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11394 - components: - - pos: -7.5,81.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11395 - components: - - pos: -7.5,82.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11396 - components: - - pos: -7.5,83.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11397 - components: - - pos: -6.5,83.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11398 - components: - - pos: -5.5,83.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11399 - components: - - pos: -4.5,83.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11400 - components: - - pos: -4.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11401 - components: - - pos: -3.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11402 - components: - - pos: -2.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11403 - components: - - pos: -1.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11404 - components: - - pos: -0.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11405 - components: - - pos: 0.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11406 - components: - - pos: 1.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11407 - components: - - pos: 2.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11408 - components: - - pos: 3.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11409 - components: - - pos: 3.5,83.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11410 - components: - - pos: 4.5,83.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11411 - components: - - pos: 5.5,83.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11412 - components: - - pos: 6.5,83.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11413 - components: - - pos: 6.5,82.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11414 - components: - - pos: 6.5,81.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11415 - components: - - pos: 7.5,81.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11416 - components: - - pos: 7.5,80.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11417 - components: - - pos: 7.5,79.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11418 - components: - - pos: 7.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11419 - components: - - pos: 8.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11420 - components: - - pos: 8.5,77.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11421 - components: - - pos: 8.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11422 - components: - - pos: 8.5,75.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11423 - components: - - pos: 7.5,75.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11424 - components: - - pos: 6.5,75.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11553 - components: - - pos: -24.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11554 - components: - - pos: -24.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11555 - components: - - pos: -24.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11556 - components: - - pos: -24.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11557 - components: - - pos: -24.5,53.5 - parent: 1 - type: Transform - - uid: 11558 - components: - - pos: -24.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11559 - components: - - pos: -24.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11560 - components: - - pos: -24.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11561 - components: - - pos: -24.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11562 - components: - - pos: -23.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11563 - components: - - pos: -22.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11564 - components: - - pos: -21.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11565 - components: - - pos: -21.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11566 - components: - - pos: -21.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11567 - components: - - pos: -21.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11568 - components: - - pos: -21.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11569 - components: - - pos: -21.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11570 - components: - - pos: -21.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11571 - components: - - pos: -21.5,50.5 - parent: 1 - type: Transform - - uid: 11572 - components: - - pos: -20.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11574 - components: - - pos: -42.5,44.5 - parent: 1 - type: Transform - - uid: 11575 - components: - - pos: -43.5,44.5 - parent: 1 - type: Transform - - uid: 11576 - components: - - pos: -43.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11577 - components: - - pos: -43.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11578 - components: - - pos: -43.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11579 - components: - - pos: -43.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11580 - components: - - pos: -43.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11581 - components: - - pos: -43.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11582 - components: - - pos: -43.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11583 - components: - - pos: -41.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11584 - components: - - pos: -42.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11585 - components: - - pos: -40.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11586 - components: - - pos: -40.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11587 - components: - - pos: -39.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11588 - components: - - pos: -38.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11589 - components: - - pos: -37.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11590 - components: - - pos: -36.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11591 - components: - - pos: -35.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11592 - components: - - pos: -34.5,52.5 - parent: 1 - type: Transform - - uid: 11593 - components: - - pos: -33.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11594 - components: - - pos: -32.5,52.5 - parent: 1 - type: Transform - - uid: 11595 - components: - - pos: -31.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11596 - components: - - pos: -30.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11597 - components: - - pos: -29.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11598 - components: - - pos: -28.5,52.5 - parent: 1 - type: Transform - - uid: 11599 - components: - - pos: -27.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11600 - components: - - pos: -27.5,53.5 - parent: 1 - type: Transform - - uid: 11601 - components: - - pos: -27.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11602 - components: - - pos: -27.5,55.5 - parent: 1 - type: Transform - - uid: 11603 - components: - - pos: -27.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11604 - components: - - pos: -27.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11605 - components: - - pos: -30.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11606 - components: - - pos: -30.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11607 - components: - - pos: -29.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11608 - components: - - pos: -26.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11609 - components: - - pos: -25.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11839 - components: - - pos: -21.5,49.5 - parent: 1 - type: Transform - - uid: 11840 - components: - - pos: -21.5,48.5 - parent: 1 - type: Transform - - uid: 11841 - components: - - pos: -20.5,48.5 - parent: 1 - type: Transform - - uid: 11842 - components: - - pos: -19.5,48.5 - parent: 1 - type: Transform - - uid: 11843 - components: - - pos: -19.5,49.5 - parent: 1 - type: Transform - - uid: 11844 - components: - - pos: -19.5,50.5 - parent: 1 - type: Transform - - uid: 11845 - components: - - pos: -18.5,50.5 - parent: 1 - type: Transform - - uid: 11846 - components: - - pos: -17.5,50.5 - parent: 1 - type: Transform - - uid: 11847 - components: - - pos: -16.5,50.5 - parent: 1 - type: Transform - - uid: 11848 - components: - - pos: -16.5,51.5 - parent: 1 - type: Transform - - uid: 11849 - components: - - pos: -16.5,52.5 - parent: 1 - type: Transform - - uid: 11850 - components: - - pos: -16.5,53.5 - parent: 1 - type: Transform - - uid: 11851 - components: - - pos: -16.5,54.5 - parent: 1 - type: Transform - - uid: 11852 - components: - - pos: -16.5,55.5 - parent: 1 - type: Transform - - uid: 11853 - components: - - pos: -16.5,56.5 - parent: 1 - type: Transform - - uid: 11854 - components: - - pos: -15.5,56.5 - parent: 1 - type: Transform - - uid: 11855 - components: - - pos: -14.5,56.5 - parent: 1 - type: Transform - - uid: 11856 - components: - - pos: -13.5,56.5 - parent: 1 - type: Transform - - uid: 11857 - components: - - pos: -12.5,56.5 - parent: 1 - type: Transform - - uid: 11858 - components: - - pos: -11.5,56.5 - parent: 1 - type: Transform - - uid: 11859 - components: - - pos: -10.5,56.5 - parent: 1 - type: Transform - - uid: 11860 - components: - - pos: -9.5,56.5 - parent: 1 - type: Transform - - uid: 11861 - components: - - pos: -8.5,56.5 - parent: 1 - type: Transform - - uid: 11863 - components: - - pos: -7.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12020 - components: - - pos: -28.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12028 - components: - - pos: -21.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12029 - components: - - pos: -20.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12030 - components: - - pos: -20.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12031 - components: - - pos: -20.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12032 - components: - - pos: -20.5,28.5 - parent: 1 - type: Transform - - uid: 12033 - components: - - pos: -20.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12034 - components: - - pos: -20.5,26.5 - parent: 1 - type: Transform - - uid: 12035 - components: - - pos: -20.5,25.5 - parent: 1 - type: Transform - - uid: 12036 - components: - - pos: -19.5,25.5 - parent: 1 - type: Transform - - uid: 12037 - components: - - pos: -18.5,25.5 - parent: 1 - type: Transform - - uid: 12038 - components: - - pos: -17.5,25.5 - parent: 1 - type: Transform - - uid: 12039 - components: - - pos: -17.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12040 - components: - - pos: -16.5,25.5 - parent: 1 - type: Transform - - uid: 12041 - components: - - pos: -15.5,25.5 - parent: 1 - type: Transform - - uid: 12042 - components: - - pos: -14.5,25.5 - parent: 1 - type: Transform - - uid: 12043 - components: - - pos: -13.5,25.5 - parent: 1 - type: Transform - - uid: 12044 - components: - - pos: -12.5,25.5 - parent: 1 - type: Transform - - uid: 12045 - components: - - pos: -11.5,25.5 - parent: 1 - type: Transform - - uid: 12046 - components: - - pos: -10.5,25.5 - parent: 1 - type: Transform - - uid: 12047 - components: - - pos: -10.5,24.5 - parent: 1 - type: Transform - - uid: 12048 - components: - - pos: -10.5,23.5 - parent: 1 - type: Transform - - uid: 12049 - components: - - pos: -9.5,23.5 - parent: 1 - type: Transform - - uid: 12050 - components: - - pos: -8.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12051 - components: - - pos: -10.5,26.5 - parent: 1 - type: Transform - - uid: 12052 - components: - - pos: -10.5,27.5 - parent: 1 - type: Transform - - uid: 12053 - components: - - pos: -10.5,28.5 - parent: 1 - type: Transform - - uid: 12054 - components: - - pos: -10.5,29.5 - parent: 1 - type: Transform - - uid: 12055 - components: - - pos: -10.5,30.5 - parent: 1 - type: Transform - - uid: 12056 - components: - - pos: -10.5,31.5 - parent: 1 - type: Transform - - uid: 12057 - components: - - pos: -10.5,32.5 - parent: 1 - type: Transform - - uid: 12058 - components: - - pos: -11.5,32.5 - parent: 1 - type: Transform - - uid: 12059 - components: - - pos: -12.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12236 - components: - - pos: -21.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12237 - components: - - pos: -22.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12238 - components: - - pos: -23.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12239 - components: - - pos: -23.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12240 - components: - - pos: -23.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12241 - components: - - pos: -23.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12242 - components: - - pos: -23.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12243 - components: - - pos: -23.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12244 - components: - - pos: -24.5,32.5 - parent: 1 - type: Transform - - uid: 12245 - components: - - pos: -25.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12290 - components: - - pos: -23.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12291 - components: - - pos: -23.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12292 - components: - - pos: -23.5,35.5 - parent: 1 - type: Transform - - uid: 12293 - components: - - pos: -23.5,36.5 - parent: 1 - type: Transform - - uid: 12295 - components: - - pos: -25.5,36.5 - parent: 1 - type: Transform - - uid: 12296 - components: - - pos: -26.5,36.5 - parent: 1 - type: Transform - - uid: 12297 - components: - - pos: -27.5,36.5 - parent: 1 - type: Transform - - uid: 12298 - components: - - pos: -28.5,36.5 - parent: 1 - type: Transform - - uid: 12299 - components: - - pos: -29.5,36.5 - parent: 1 - type: Transform - - uid: 12300 - components: - - pos: -30.5,36.5 - parent: 1 - type: Transform - - uid: 12301 - components: - - pos: -31.5,36.5 - parent: 1 - type: Transform - - uid: 12302 - components: - - pos: -32.5,36.5 - parent: 1 - type: Transform - - uid: 12303 - components: - - pos: -33.5,36.5 - parent: 1 - type: Transform - - uid: 12304 - components: - - pos: -34.5,36.5 - parent: 1 - type: Transform - - uid: 12305 - components: - - pos: -35.5,36.5 - parent: 1 - type: Transform - - uid: 12306 - components: - - pos: -36.5,36.5 - parent: 1 - type: Transform - - uid: 12307 - components: - - pos: -37.5,36.5 - parent: 1 - type: Transform - - uid: 12308 - components: - - pos: -38.5,36.5 - parent: 1 - type: Transform - - uid: 12309 - components: - - pos: -38.5,35.5 - parent: 1 - type: Transform - - uid: 12310 - components: - - pos: -38.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12311 - components: - - pos: -38.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12312 - components: - - pos: -37.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12313 - components: - - pos: -36.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12314 - components: - - pos: -35.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12315 - components: - - pos: -34.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12316 - components: - - pos: -34.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12317 - components: - - pos: -34.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12318 - components: - - pos: -34.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12319 - components: - - pos: -34.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12320 - components: - - pos: -34.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12321 - components: - - pos: -34.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12322 - components: - - pos: -34.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12323 - components: - - pos: -34.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12324 - components: - - pos: -35.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12409 - components: - - pos: 20.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12410 - components: - - pos: 20.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12411 - components: - - pos: 20.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12412 - components: - - pos: 19.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12413 - components: - - pos: 18.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12414 - components: - - pos: 17.5,52.5 - parent: 1 - type: Transform - - uid: 12415 - components: - - pos: 16.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12416 - components: - - pos: 16.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12417 - components: - - pos: 16.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12418 - components: - - pos: 16.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12419 - components: - - pos: 16.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12420 - components: - - pos: 17.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12421 - components: - - pos: 18.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12422 - components: - - pos: 19.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12423 - components: - - pos: 19.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12424 - components: - - pos: 19.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12425 - components: - - pos: 18.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12426 - components: - - pos: 18.5,59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12427 - components: - - pos: 18.5,60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12428 - components: - - pos: 18.5,61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12429 - components: - - pos: 18.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12430 - components: - - pos: 18.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12431 - components: - - pos: 17.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12432 - components: - - pos: 16.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12433 - components: - - pos: 15.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12434 - components: - - pos: 14.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12435 - components: - - pos: 13.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12436 - components: - - pos: 12.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12437 - components: - - pos: 11.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12438 - components: - - pos: 10.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12439 - components: - - pos: 10.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12440 - components: - - pos: 16.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12441 - components: - - pos: 16.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12442 - components: - - pos: 16.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12443 - components: - - pos: 17.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12444 - components: - - pos: 18.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12445 - components: - - pos: 19.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12446 - components: - - pos: 20.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12447 - components: - - pos: 21.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12448 - components: - - pos: 22.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12449 - components: - - pos: 22.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12450 - components: - - pos: 22.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12451 - components: - - pos: 22.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12452 - components: - - pos: 22.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12453 - components: - - pos: 23.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12454 - components: - - pos: 24.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12455 - components: - - pos: 25.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12456 - components: - - pos: 25.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12457 - components: - - pos: 25.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12458 - components: - - pos: 25.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12459 - components: - - pos: 24.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12461 - components: - - pos: 6.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12462 - components: - - pos: 5.5,46.5 - parent: 1 - type: Transform - - uid: 12463 - components: - - pos: 4.5,46.5 - parent: 1 - type: Transform - - uid: 12464 - components: - - pos: 3.5,46.5 - parent: 1 - type: Transform - - uid: 12465 - components: - - pos: 2.5,46.5 - parent: 1 - type: Transform - - uid: 12466 - components: - - pos: 1.5,46.5 - parent: 1 - type: Transform - - uid: 12467 - components: - - pos: 0.5,46.5 - parent: 1 - type: Transform - - uid: 12468 - components: - - pos: 0.5,47.5 - parent: 1 - type: Transform - - uid: 12469 - components: - - pos: 0.5,48.5 - parent: 1 - type: Transform - - uid: 12470 - components: - - pos: 0.5,49.5 - parent: 1 - type: Transform - - uid: 12471 - components: - - pos: 0.5,50.5 - parent: 1 - type: Transform - - uid: 12472 - components: - - pos: 0.5,51.5 - parent: 1 - type: Transform - - uid: 12473 - components: - - pos: 0.5,52.5 - parent: 1 - type: Transform - - uid: 12474 - components: - - pos: 0.5,53.5 - parent: 1 - type: Transform - - uid: 12475 - components: - - pos: 1.5,53.5 - parent: 1 - type: Transform - - uid: 12476 - components: - - pos: 2.5,53.5 - parent: 1 - type: Transform - - uid: 12477 - components: - - pos: 3.5,53.5 - parent: 1 - type: Transform - - uid: 12478 - components: - - pos: 4.5,53.5 - parent: 1 - type: Transform - - uid: 12479 - components: - - pos: 5.5,53.5 - parent: 1 - type: Transform - - uid: 12480 - components: - - pos: 6.5,53.5 - parent: 1 - type: Transform - - uid: 12481 - components: - - pos: 7.5,53.5 - parent: 1 - type: Transform - - uid: 12482 - components: - - pos: 8.5,53.5 - parent: 1 - type: Transform - - uid: 12483 - components: - - pos: 9.5,53.5 - parent: 1 - type: Transform - - uid: 12484 - components: - - pos: 10.5,53.5 - parent: 1 - type: Transform - - uid: 12485 - components: - - pos: 11.5,53.5 - parent: 1 - type: Transform - - uid: 12486 - components: - - pos: 12.5,53.5 - parent: 1 - type: Transform - - uid: 12487 - components: - - pos: 13.5,53.5 - parent: 1 - type: Transform - - uid: 12488 - components: - - pos: 14.5,53.5 - parent: 1 - type: Transform - - uid: 12489 - components: - - pos: 5.5,47.5 - parent: 1 - type: Transform - - uid: 12490 - components: - - pos: 5.5,48.5 - parent: 1 - type: Transform - - uid: 12491 - components: - - pos: 5.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12492 - components: - - pos: 14.5,54.5 - parent: 1 - type: Transform - - uid: 12493 - components: - - pos: 14.5,55.5 - parent: 1 - type: Transform - - uid: 12494 - components: - - pos: 14.5,56.5 - parent: 1 - type: Transform - - uid: 12495 - components: - - pos: 14.5,57.5 - parent: 1 - type: Transform - - uid: 12496 - components: - - pos: 14.5,58.5 - parent: 1 - type: Transform - - uid: 12497 - components: - - pos: 15.5,58.5 - parent: 1 - type: Transform - - uid: 12498 - components: - - pos: 16.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12499 - components: - - pos: 17.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12500 - components: - - pos: 20.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12501 - components: - - pos: 21.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12502 - components: - - pos: 22.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12503 - components: - - pos: 22.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12504 - components: - - pos: 23.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12505 - components: - - pos: 24.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12506 - components: - - pos: 25.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12507 - components: - - pos: 26.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12508 - components: - - pos: 27.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12509 - components: - - pos: 28.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12510 - components: - - pos: 28.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12511 - components: - - pos: 28.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12512 - components: - - pos: 28.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12513 - components: - - pos: 28.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12514 - components: - - pos: 28.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12515 - components: - - pos: 28.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12516 - components: - - pos: 27.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12517 - components: - - pos: 29.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12518 - components: - - pos: 29.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12519 - components: - - pos: 30.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12520 - components: - - pos: 31.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12521 - components: - - pos: 32.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12522 - components: - - pos: 33.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12523 - components: - - pos: 34.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12524 - components: - - pos: 35.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12525 - components: - - pos: 36.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12526 - components: - - pos: 36.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12527 - components: - - pos: 36.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12528 - components: - - pos: 36.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12529 - components: - - pos: 36.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12530 - components: - - pos: 36.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12531 - components: - - pos: 36.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12532 - components: - - pos: 36.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12533 - components: - - pos: 36.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12534 - components: - - pos: 36.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12535 - components: - - pos: 36.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12536 - components: - - pos: 36.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12537 - components: - - pos: 37.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12538 - components: - - pos: 38.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12539 - components: - - pos: 39.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12540 - components: - - pos: 40.5,40.5 - parent: 1 - type: Transform - - uid: 12541 - components: - - pos: 41.5,40.5 - parent: 1 - type: Transform - - uid: 12542 - components: - - pos: 41.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12866 - components: - - pos: 16.5,25.5 - parent: 1 - type: Transform - - uid: 12867 - components: - - pos: 15.5,25.5 - parent: 1 - type: Transform - - uid: 12868 - components: - - pos: 14.5,25.5 - parent: 1 - type: Transform - - uid: 12869 - components: - - pos: 14.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12870 - components: - - pos: 14.5,23.5 - parent: 1 - type: Transform - - uid: 12871 - components: - - pos: 14.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12872 - components: - - pos: 15.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12873 - components: - - pos: 16.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12874 - components: - - pos: 17.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12875 - components: - - pos: 18.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12876 - components: - - pos: 19.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12877 - components: - - pos: 19.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12878 - components: - - pos: 19.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12879 - components: - - pos: 19.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12880 - components: - - pos: 18.5,19.5 - parent: 1 - type: Transform - - uid: 12881 - components: - - pos: 17.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12882 - components: - - pos: 19.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12883 - components: - - pos: 19.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12884 - components: - - pos: 20.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12885 - components: - - pos: 21.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12886 - components: - - pos: 22.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12887 - components: - - pos: 23.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12888 - components: - - pos: 24.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12889 - components: - - pos: 24.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12890 - components: - - pos: 24.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12891 - components: - - pos: 24.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12892 - components: - - pos: 24.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12893 - components: - - pos: 23.5,27.5 - parent: 1 - type: Transform - - uid: 12894 - components: - - pos: 22.5,27.5 - parent: 1 - type: Transform - - uid: 12895 - components: - - pos: 21.5,27.5 - parent: 1 - type: Transform - - uid: 12896 - components: - - pos: 20.5,27.5 - parent: 1 - type: Transform - - uid: 12897 - components: - - pos: 20.5,28.5 - parent: 1 - type: Transform - - uid: 12898 - components: - - pos: 20.5,29.5 - parent: 1 - type: Transform - - uid: 12899 - components: - - pos: 20.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12902 - components: - - pos: 17.5,28.5 - parent: 1 - type: Transform - - uid: 12903 - components: - - pos: 16.5,28.5 - parent: 1 - type: Transform - - uid: 12904 - components: - - pos: 15.5,28.5 - parent: 1 - type: Transform - - uid: 12905 - components: - - pos: 14.5,28.5 - parent: 1 - type: Transform - - uid: 12906 - components: - - pos: 13.5,28.5 - parent: 1 - type: Transform - - uid: 12907 - components: - - pos: 12.5,28.5 - parent: 1 - type: Transform - - uid: 12908 - components: - - pos: 11.5,28.5 - parent: 1 - type: Transform - - uid: 12909 - components: - - pos: 10.5,28.5 - parent: 1 - type: Transform - - uid: 12910 - components: - - pos: 9.5,28.5 - parent: 1 - type: Transform - - uid: 12911 - components: - - pos: 8.5,28.5 - parent: 1 - type: Transform - - uid: 12912 - components: - - pos: 7.5,28.5 - parent: 1 - type: Transform - - uid: 12913 - components: - - pos: 6.5,28.5 - parent: 1 - type: Transform - - uid: 12914 - components: - - pos: 6.5,27.5 - parent: 1 - type: Transform - - uid: 12915 - components: - - pos: 6.5,26.5 - parent: 1 - type: Transform - - uid: 12916 - components: - - pos: 5.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12917 - components: - - pos: 15.5,21.5 - parent: 1 - type: Transform - - uid: 12918 - components: - - pos: 10.5,29.5 - parent: 1 - type: Transform - - uid: 12919 - components: - - pos: 10.5,30.5 - parent: 1 - type: Transform - - uid: 12920 - components: - - pos: 10.5,31.5 - parent: 1 - type: Transform - - uid: 12921 - components: - - pos: 9.5,31.5 - parent: 1 - type: Transform - - uid: 12922 - components: - - pos: 8.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13491 - components: - - pos: -7.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13497 - components: - - pos: -25.5,-0.5 - parent: 1 - type: Transform - - uid: 13498 - components: - - pos: -25.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13499 - components: - - pos: -25.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13500 - components: - - pos: -24.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13501 - components: - - pos: -23.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13502 - components: - - pos: -22.5,-2.5 - parent: 1 - type: Transform - - uid: 13503 - components: - - pos: -21.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13504 - components: - - pos: -20.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13505 - components: - - pos: -19.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13506 - components: - - pos: -19.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13507 - components: - - pos: -19.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13508 - components: - - pos: -19.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13509 - components: - - pos: -19.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13510 - components: - - pos: -19.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13511 - components: - - pos: -19.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13512 - components: - - pos: -19.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13513 - components: - - pos: -19.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13514 - components: - - pos: -19.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13515 - components: - - pos: -19.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13516 - components: - - pos: -20.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13517 - components: - - pos: -21.5,7.5 - parent: 1 - type: Transform - - uid: 13518 - components: - - pos: -21.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13519 - components: - - pos: -18.5,-0.5 - parent: 1 - type: Transform - - uid: 13520 - components: - - pos: -17.5,-0.5 - parent: 1 - type: Transform - - uid: 13521 - components: - - pos: -16.5,-0.5 - parent: 1 - type: Transform - - uid: 13522 - components: - - pos: -15.5,-0.5 - parent: 1 - type: Transform - - uid: 13523 - components: - - pos: -15.5,0.5 - parent: 1 - type: Transform - - uid: 13524 - components: - - pos: -14.5,0.5 - parent: 1 - type: Transform - - uid: 13525 - components: - - pos: -13.5,0.5 - parent: 1 - type: Transform - - uid: 13526 - components: - - pos: -12.5,0.5 - parent: 1 - type: Transform - - uid: 13527 - components: - - pos: -11.5,0.5 - parent: 1 - type: Transform - - uid: 13528 - components: - - pos: -11.5,1.5 - parent: 1 - type: Transform - - uid: 13529 - components: - - pos: -11.5,2.5 - parent: 1 - type: Transform - - uid: 13530 - components: - - pos: -11.5,3.5 - parent: 1 - type: Transform - - uid: 13531 - components: - - pos: -11.5,4.5 - parent: 1 - type: Transform - - uid: 13532 - components: - - pos: -11.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13533 - components: - - pos: -21.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14379 - components: - - pos: 28.5,-9.5 - parent: 1 - type: Transform - - uid: 17238 - components: - - pos: 18.5,28.5 - parent: 1 - type: Transform - - uid: 17239 - components: - - pos: 19.5,28.5 - parent: 1 - type: Transform - - uid: 18340 - components: - - pos: -9.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 18341 - components: - - pos: -9.5,73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 18342 - components: - - pos: -9.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 18343 - components: - - pos: -9.5,75.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 18451 - components: - - pos: 20.5,-11.5 - parent: 1 - type: Transform - - uid: 18452 - components: - - pos: 22.5,-11.5 - parent: 1 - type: Transform - - uid: 18453 - components: - - pos: 21.5,-11.5 - parent: 1 - type: Transform - - uid: 18465 - components: - - pos: 16.5,-11.5 - parent: 1 - type: Transform - - uid: 18466 - components: - - pos: 16.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 18474 - components: - - pos: 15.5,-11.5 - parent: 1 - type: Transform - - uid: 18475 - components: - - pos: 15.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- proto: CableMVStack - entities: - - uid: 9125 - components: - - pos: 13.491544,-22.233011 - parent: 1 - type: Transform -- proto: CableTerminal - entities: - - uid: 4779 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-30.5 - parent: 1 - type: Transform - - uid: 4780 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-30.5 - parent: 1 - type: Transform - - uid: 4781 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-30.5 - parent: 1 - type: Transform - - uid: 4782 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-30.5 - parent: 1 - type: Transform - - uid: 8056 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,55.5 - parent: 1 - type: Transform - - uid: 14043 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,55.5 - parent: 1 - type: Transform - - uid: 18457 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-11.5 - parent: 1 - type: Transform -- proto: CannabisSeeds - entities: - - uid: 8276 - components: - - pos: -38.424377,49.4277 - parent: 1 - type: Transform - - uid: 10966 - components: - - pos: 36.56873,-16.396769 - parent: 1 - type: Transform -- proto: CaptainIDCard - entities: - - uid: 9149 - components: - - pos: -6.3624535,72.644104 - parent: 1 - type: Transform -- proto: CarbonDioxideCanister - entities: - - uid: 3028 - components: - - pos: 0.5,-23.5 - parent: 1 - type: Transform - - uid: 3044 - components: - - pos: -14.5,-28.5 - parent: 1 - type: Transform -- proto: Carpet - entities: - - uid: 614 - components: - - pos: -24.5,7.5 - parent: 1 - type: Transform - - uid: 667 - components: - - pos: -25.5,8.5 - parent: 1 - type: Transform - - uid: 774 - components: - - pos: -24.5,5.5 - parent: 1 - type: Transform - - uid: 779 - components: - - pos: -25.5,5.5 - parent: 1 - type: Transform - - uid: 780 - components: - - pos: -25.5,6.5 - parent: 1 - type: Transform - - uid: 781 - components: - - pos: -25.5,7.5 - parent: 1 - type: Transform - - uid: 5786 - components: - - pos: -23.5,5.5 - parent: 1 - type: Transform - - uid: 6687 - components: - - pos: -22.5,7.5 - parent: 1 - type: Transform - - uid: 6702 - components: - - pos: -22.5,8.5 - parent: 1 - type: Transform - - uid: 6978 - components: - - pos: 10.5,58.5 - parent: 1 - type: Transform - - uid: 6979 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,57.5 - parent: 1 - type: Transform - - uid: 6980 - components: - - pos: 10.5,56.5 - parent: 1 - type: Transform - - uid: 6981 - components: - - pos: 11.5,58.5 - parent: 1 - type: Transform - - uid: 6982 - components: - - pos: 11.5,57.5 - parent: 1 - type: Transform - - uid: 6983 - components: - - pos: 11.5,56.5 - parent: 1 - type: Transform - - uid: 6986 - components: - - pos: 9.5,58.5 - parent: 1 - type: Transform - - uid: 6987 - components: - - pos: 12.5,58.5 - parent: 1 - type: Transform - - uid: 6988 - components: - - pos: 10.5,60.5 - parent: 1 - type: Transform - - uid: 6989 - components: - - pos: 11.5,60.5 - parent: 1 - type: Transform - - uid: 6990 - components: - - pos: 11.5,61.5 - parent: 1 - type: Transform - - uid: 6991 - components: - - pos: 10.5,61.5 - parent: 1 - type: Transform - - uid: 7147 - components: - - pos: -23.5,6.5 - parent: 1 - type: Transform - - uid: 7915 - components: - - pos: -24.5,6.5 - parent: 1 - type: Transform - - uid: 8168 - components: - - pos: -24.5,8.5 - parent: 1 - type: Transform - - uid: 8249 - components: - - pos: -23.5,7.5 - parent: 1 - type: Transform - - uid: 8593 - components: - - pos: -22.5,6.5 - parent: 1 - type: Transform - - uid: 8964 - components: - - pos: -11.5,3.5 - parent: 1 - type: Transform - - uid: 8965 - components: - - pos: -11.5,2.5 - parent: 1 - type: Transform - - uid: 8966 - components: - - pos: -11.5,1.5 - parent: 1 - type: Transform - - uid: 8967 - components: - - pos: -10.5,1.5 - parent: 1 - type: Transform - - uid: 8968 - components: - - pos: -10.5,2.5 - parent: 1 - type: Transform - - uid: 8969 - components: - - pos: -10.5,3.5 - parent: 1 - type: Transform - - uid: 8970 - components: - - pos: -1.5,-0.5 - parent: 1 - type: Transform - - uid: 8971 - components: - - pos: -1.5,-1.5 - parent: 1 - type: Transform - - uid: 8972 - components: - - pos: -0.5,-1.5 - parent: 1 - type: Transform - - uid: 8973 - components: - - pos: 0.5,-1.5 - parent: 1 - type: Transform - - uid: 8974 - components: - - pos: 0.5,-0.5 - parent: 1 - type: Transform - - uid: 8975 - components: - - pos: -0.5,-0.5 - parent: 1 - type: Transform - - uid: 9002 - components: - - pos: -22.5,5.5 - parent: 1 - type: Transform - - uid: 9039 - components: - - pos: -23.5,8.5 - parent: 1 - type: Transform -- proto: CarpetBlack - entities: - - uid: 6674 - components: - - pos: -8.5,-4.5 - parent: 1 - type: Transform - - uid: 6675 - components: - - pos: -9.5,-5.5 - parent: 1 - type: Transform - - uid: 6677 - components: - - pos: -6.5,-5.5 - parent: 1 - type: Transform - - uid: 6678 - components: - - pos: -5.5,-4.5 - parent: 1 - type: Transform - - uid: 6679 - components: - - pos: -5.5,-5.5 - parent: 1 - type: Transform - - uid: 6682 - components: - - pos: -7.5,-4.5 - parent: 1 - type: Transform - - uid: 6683 - components: - - pos: -9.5,-4.5 - parent: 1 - type: Transform - - uid: 6684 - components: - - pos: -7.5,-5.5 - parent: 1 - type: Transform - - uid: 6685 - components: - - pos: -6.5,-4.5 - parent: 1 - type: Transform - - uid: 6686 - components: - - pos: -8.5,-5.5 - parent: 1 - type: Transform - - uid: 7765 - components: - - pos: -6.5,-3.5 - parent: 1 - type: Transform - - uid: 7822 - components: - - pos: -6.5,-2.5 - parent: 1 - type: Transform - - uid: 8171 - components: - - pos: -7.5,-3.5 - parent: 1 - type: Transform - - uid: 8190 - components: - - pos: -8.5,-3.5 - parent: 1 - type: Transform - - uid: 8192 - components: - - pos: -8.5,-2.5 - parent: 1 - type: Transform - - uid: 8251 - components: - - pos: -7.5,-2.5 - parent: 1 - type: Transform - - uid: 8400 - components: - - pos: 11.5,46.5 - parent: 1 - type: Transform - - uid: 8401 - components: - - pos: 12.5,46.5 - parent: 1 - type: Transform - - uid: 8403 - components: - - pos: 12.5,45.5 - parent: 1 - type: Transform - - uid: 8405 - components: - - pos: 11.5,45.5 - parent: 1 - type: Transform -- proto: CarpetBlue - entities: - - uid: 8976 - components: - - pos: -5.5,3.5 - parent: 1 - type: Transform - - uid: 8977 - components: - - pos: -5.5,2.5 - parent: 1 - type: Transform - - uid: 8978 - components: - - pos: -5.5,1.5 - parent: 1 - type: Transform - - uid: 8979 - components: - - pos: -4.5,2.5 - parent: 1 - type: Transform - - uid: 8980 - components: - - pos: -4.5,1.5 - parent: 1 - type: Transform - - uid: 8981 - components: - - pos: -4.5,3.5 - parent: 1 - type: Transform - - uid: 8982 - components: - - pos: -1.5,8.5 - parent: 1 - type: Transform - - uid: 8983 - components: - - pos: -0.5,8.5 - parent: 1 - type: Transform - - uid: 8984 - components: - - pos: 0.5,8.5 - parent: 1 - type: Transform - - uid: 8985 - components: - - pos: 0.5,9.5 - parent: 1 - type: Transform - - uid: 8986 - components: - - pos: -0.5,9.5 - parent: 1 - type: Transform - - uid: 8987 - components: - - pos: -1.5,9.5 - parent: 1 - type: Transform -- proto: CarpetChapel - entities: - - uid: 6861 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,46.5 - parent: 1 - type: Transform - - uid: 6862 - components: - - rot: 3.141592653589793 rad - pos: 29.5,46.5 - parent: 1 - type: Transform - - uid: 6863 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,45.5 - parent: 1 - type: Transform - - uid: 6864 - components: - - pos: 28.5,45.5 - parent: 1 - type: Transform - - uid: 6865 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,46.5 - parent: 1 - type: Transform - - uid: 6866 - components: - - rot: 3.141592653589793 rad - pos: 33.5,46.5 - parent: 1 - type: Transform - - uid: 6867 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,45.5 - parent: 1 - type: Transform - - uid: 6868 - components: - - pos: 32.5,45.5 - parent: 1 - type: Transform - - uid: 6869 - components: - - pos: 28.5,43.5 - parent: 1 - type: Transform - - uid: 6870 - components: - - pos: 32.5,43.5 - parent: 1 - type: Transform - - uid: 6871 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,44.5 - parent: 1 - type: Transform - - uid: 6872 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,44.5 - parent: 1 - type: Transform - - uid: 6873 - components: - - rot: 3.141592653589793 rad - pos: 29.5,44.5 - parent: 1 - type: Transform - - uid: 6874 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,43.5 - parent: 1 - type: Transform - - uid: 6875 - components: - - rot: 3.141592653589793 rad - pos: 33.5,44.5 - parent: 1 - type: Transform - - uid: 6876 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,43.5 - parent: 1 - type: Transform - - uid: 6877 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,48.5 - parent: 1 - type: Transform - - uid: 6878 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,48.5 - parent: 1 - type: Transform - - uid: 6879 - components: - - pos: 28.5,48.5 - parent: 1 - type: Transform - - uid: 6880 - components: - - pos: 32.5,48.5 - parent: 1 - type: Transform - - uid: 6881 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,49.5 - parent: 1 - type: Transform - - uid: 6882 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,49.5 - parent: 1 - type: Transform - - uid: 6883 - components: - - rot: 3.141592653589793 rad - pos: 29.5,49.5 - parent: 1 - type: Transform - - uid: 6884 - components: - - rot: 3.141592653589793 rad - pos: 33.5,49.5 - parent: 1 - type: Transform -- proto: CarpetGreen - entities: - - uid: 6691 - components: - - pos: -28.5,6.5 - parent: 1 - type: Transform - - uid: 6692 - components: - - pos: -28.5,5.5 - parent: 1 - type: Transform - - uid: 6694 - components: - - pos: -27.5,6.5 - parent: 1 - type: Transform - - uid: 6695 - components: - - pos: -27.5,5.5 - parent: 1 - type: Transform -- proto: CarpetOrange - entities: - - uid: 617 - components: - - pos: -24.5,10.5 - parent: 1 - type: Transform - - uid: 618 - components: - - pos: -25.5,10.5 - parent: 1 - type: Transform - - uid: 652 - components: - - pos: 2.5,60.5 - parent: 1 - type: Transform - - uid: 6673 - components: - - pos: -26.5,10.5 - parent: 1 - type: Transform - - uid: 8957 - components: - - pos: -1.5,4.5 - parent: 1 - type: Transform - - uid: 8959 - components: - - pos: -0.5,4.5 - parent: 1 - type: Transform - - uid: 8960 - components: - - pos: -1.5,3.5 - parent: 1 - type: Transform - - uid: 8961 - components: - - pos: -0.5,3.5 - parent: 1 - type: Transform - - uid: 8962 - components: - - pos: 0.5,3.5 - parent: 1 - type: Transform - - uid: 8963 - components: - - pos: 0.5,4.5 - parent: 1 - type: Transform - - uid: 9349 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,11.5 - parent: 1 - type: Transform - - uid: 9350 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,10.5 - parent: 1 - type: Transform - - uid: 9351 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,11.5 - parent: 1 - type: Transform - - uid: 9352 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,10.5 - parent: 1 - type: Transform - - uid: 9380 - components: - - pos: 2.5,61.5 - parent: 1 - type: Transform - - uid: 9381 - components: - - pos: 3.5,60.5 - parent: 1 - type: Transform - - uid: 9382 - components: - - pos: 3.5,61.5 - parent: 1 - type: Transform - - uid: 9383 - components: - - pos: 4.5,60.5 - parent: 1 - type: Transform - - uid: 9384 - components: - - pos: 4.5,61.5 - parent: 1 - type: Transform -- proto: CarpetPink - entities: - - uid: 526 - components: - - pos: -12.5,-2.5 - parent: 1 - type: Transform - - uid: 527 - components: - - pos: -11.5,-2.5 - parent: 1 - type: Transform - - uid: 528 - components: - - pos: -12.5,-3.5 - parent: 1 - type: Transform - - uid: 529 - components: - - pos: -12.5,-4.5 - parent: 1 - type: Transform - - uid: 530 - components: - - pos: -11.5,-4.5 - parent: 1 - type: Transform - - uid: 3418 - components: - - pos: -11.5,-3.5 - parent: 1 - type: Transform - - uid: 8353 - components: - - pos: 42.5,51.5 - parent: 1 - type: Transform - - uid: 8354 - components: - - pos: 43.5,51.5 - parent: 1 - type: Transform - - uid: 8355 - components: - - pos: 43.5,50.5 - parent: 1 - type: Transform - - uid: 8356 - components: - - pos: 42.5,50.5 - parent: 1 - type: Transform - - uid: 8357 - components: - - pos: 41.5,50.5 - parent: 1 - type: Transform - - uid: 8358 - components: - - pos: 41.5,51.5 - parent: 1 - type: Transform - - uid: 8394 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,47.5 - parent: 1 - type: Transform - - uid: 8395 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,47.5 - parent: 1 - type: Transform - - uid: 9873 - components: - - pos: -36.5,-21.5 - parent: 1 - type: Transform - - uid: 9874 - components: - - pos: -36.5,-20.5 - parent: 1 - type: Transform - - uid: 9875 - components: - - pos: -35.5,-21.5 - parent: 1 - type: Transform - - uid: 9876 - components: - - pos: -35.5,-20.5 - parent: 1 - type: Transform -- proto: CarpetPurple - entities: - - uid: 8632 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,20.5 - parent: 1 - type: Transform - - uid: 8633 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,19.5 - parent: 1 - type: Transform - - uid: 8634 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,20.5 - parent: 1 - type: Transform - - uid: 8635 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,19.5 - parent: 1 - type: Transform - - uid: 8636 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,20.5 - parent: 1 - type: Transform - - uid: 8637 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,19.5 - parent: 1 - type: Transform -- proto: CarpetSBlue - entities: - - uid: 6806 - components: - - pos: -5.5,72.5 - parent: 1 - type: Transform - - uid: 6810 - components: - - pos: -5.5,73.5 - parent: 1 - type: Transform - - uid: 6811 - components: - - pos: -6.5,73.5 - parent: 1 - type: Transform - - uid: 6812 - components: - - pos: -6.5,72.5 - parent: 1 - type: Transform - - uid: 8484 - components: - - pos: 15.5,32.5 - parent: 1 - type: Transform - - uid: 8485 - components: - - pos: 15.5,33.5 - parent: 1 - type: Transform - - uid: 8486 - components: - - pos: 16.5,33.5 - parent: 1 - type: Transform - - uid: 8487 - components: - - pos: 16.5,32.5 - parent: 1 - type: Transform - - uid: 9266 - components: - - pos: 26.5,8.5 - parent: 1 - type: Transform - - uid: 9267 - components: - - pos: 27.5,8.5 - parent: 1 - type: Transform - - uid: 9268 - components: - - pos: 27.5,9.5 - parent: 1 - type: Transform - - uid: 9269 - components: - - pos: 26.5,9.5 - parent: 1 - type: Transform -- proto: Catwalk - entities: - - uid: 749 - components: - - pos: -15.5,11.5 - parent: 1 - type: Transform - - uid: 750 - components: - - pos: -15.5,10.5 - parent: 1 - type: Transform - - uid: 751 - components: - - pos: -15.5,9.5 - parent: 1 - type: Transform - - uid: 985 - components: - - pos: -38.5,74.5 - parent: 1 - type: Transform - - uid: 1501 - components: - - pos: -43.5,45.5 - parent: 1 - type: Transform - - uid: 1618 - components: - - pos: -38.5,73.5 - parent: 1 - type: Transform - - uid: 1621 - components: - - pos: -38.5,52.5 - parent: 1 - type: Transform - - uid: 1662 - components: - - pos: -37.5,52.5 - parent: 1 - type: Transform - - uid: 1665 - components: - - pos: -38.5,75.5 - parent: 1 - type: Transform - - uid: 1785 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,20.5 - parent: 1 - type: Transform - - uid: 1987 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,21.5 - parent: 1 - type: Transform - - uid: 2147 - components: - - pos: 7.5,-38.5 - parent: 1 - type: Transform - - uid: 2372 - components: - - pos: 7.5,-40.5 - parent: 1 - type: Transform - - uid: 2373 - components: - - pos: 7.5,-39.5 - parent: 1 - type: Transform - - uid: 2375 - components: - - pos: 6.5,-40.5 - parent: 1 - type: Transform - - uid: 2376 - components: - - pos: 6.5,-39.5 - parent: 1 - type: Transform - - uid: 2811 - components: - - pos: -10.5,-25.5 - parent: 1 - type: Transform - - uid: 2812 - components: - - pos: -10.5,-26.5 - parent: 1 - type: Transform - - uid: 2817 - components: - - pos: -10.5,-21.5 - parent: 1 - type: Transform - - uid: 2818 - components: - - pos: -10.5,-22.5 - parent: 1 - type: Transform - - uid: 2819 - components: - - pos: -10.5,-27.5 - parent: 1 - type: Transform - - uid: 2820 - components: - - pos: -10.5,-28.5 - parent: 1 - type: Transform - - uid: 2825 - components: - - pos: -10.5,-23.5 - parent: 1 - type: Transform - - uid: 2826 - components: - - pos: -10.5,-24.5 - parent: 1 - type: Transform - - uid: 2827 - components: - - pos: -10.5,-29.5 - parent: 1 - type: Transform - - uid: 2828 - components: - - pos: -9.5,-21.5 - parent: 1 - type: Transform - - uid: 2836 - components: - - pos: 7.5,-37.5 - parent: 1 - type: Transform - - uid: 2995 - components: - - pos: -3.5,-41.5 - parent: 1 - type: Transform - - uid: 2996 - components: - - pos: -3.5,-40.5 - parent: 1 - type: Transform - - uid: 2997 - components: - - pos: -3.5,-39.5 - parent: 1 - type: Transform - - uid: 2998 - components: - - pos: -3.5,-38.5 - parent: 1 - type: Transform - - uid: 2999 - components: - - pos: -3.5,-37.5 - parent: 1 - type: Transform - - uid: 3000 - components: - - pos: -3.5,-36.5 - parent: 1 - type: Transform - - uid: 3001 - components: - - pos: -3.5,-35.5 - parent: 1 - type: Transform - - uid: 3002 - components: - - pos: -3.5,-34.5 - parent: 1 - type: Transform - - uid: 3003 - components: - - pos: -3.5,-33.5 - parent: 1 - type: Transform - - uid: 3004 - components: - - pos: -3.5,-32.5 - parent: 1 - type: Transform - - uid: 3005 - components: - - pos: -3.5,-31.5 - parent: 1 - type: Transform - - uid: 3006 - components: - - pos: -3.5,-30.5 - parent: 1 - type: Transform - - uid: 3007 - components: - - pos: -3.5,-29.5 - parent: 1 - type: Transform - - uid: 3008 - components: - - pos: -3.5,-28.5 - parent: 1 - type: Transform - - uid: 3009 - components: - - pos: -3.5,-27.5 - parent: 1 - type: Transform - - uid: 3010 - components: - - pos: -3.5,-26.5 - parent: 1 - type: Transform - - uid: 3011 - components: - - pos: -3.5,-25.5 - parent: 1 - type: Transform - - uid: 3012 - components: - - pos: -3.5,-24.5 - parent: 1 - type: Transform - - uid: 3013 - components: - - pos: -3.5,-23.5 - parent: 1 - type: Transform - - uid: 3014 - components: - - pos: -3.5,-22.5 - parent: 1 - type: Transform - - uid: 3015 - components: - - pos: -3.5,-21.5 - parent: 1 - type: Transform - - uid: 3016 - components: - - pos: -3.5,-20.5 - parent: 1 - type: Transform - - uid: 3017 - components: - - pos: -3.5,-19.5 - parent: 1 - type: Transform - - uid: 3018 - components: - - pos: -3.5,-18.5 - parent: 1 - type: Transform - - uid: 3019 - components: - - pos: -3.5,-17.5 - parent: 1 - type: Transform - - uid: 3030 - components: - - pos: -9.5,-22.5 - parent: 1 - type: Transform - - uid: 3031 - components: - - pos: -9.5,-23.5 - parent: 1 - type: Transform - - uid: 3032 - components: - - pos: -9.5,-24.5 - parent: 1 - type: Transform - - uid: 3033 - components: - - pos: -9.5,-25.5 - parent: 1 - type: Transform - - uid: 3034 - components: - - pos: -9.5,-26.5 - parent: 1 - type: Transform - - uid: 3035 - components: - - pos: -9.5,-27.5 - parent: 1 - type: Transform - - uid: 3036 - components: - - pos: -9.5,-28.5 - parent: 1 - type: Transform - - uid: 3037 - components: - - pos: -9.5,-29.5 - parent: 1 - type: Transform - - uid: 3426 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-43.5 - parent: 1 - type: Transform - - uid: 3427 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-44.5 - parent: 1 - type: Transform - - uid: 3428 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-45.5 - parent: 1 - type: Transform - - uid: 3429 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-46.5 - parent: 1 - type: Transform - - uid: 3430 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-47.5 - parent: 1 - type: Transform - - uid: 3431 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-47.5 - parent: 1 - type: Transform - - uid: 3432 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-47.5 - parent: 1 - type: Transform - - uid: 3433 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-47.5 - parent: 1 - type: Transform - - uid: 3434 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-47.5 - parent: 1 - type: Transform - - uid: 3435 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-47.5 - parent: 1 - type: Transform - - uid: 3436 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-47.5 - parent: 1 - type: Transform - - uid: 3437 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-47.5 - parent: 1 - type: Transform - - uid: 3438 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-47.5 - parent: 1 - type: Transform - - uid: 3439 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-47.5 - parent: 1 - type: Transform - - uid: 3440 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-47.5 - parent: 1 - type: Transform - - uid: 3441 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-48.5 - parent: 1 - type: Transform - - uid: 3442 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-49.5 - parent: 1 - type: Transform - - uid: 3448 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-49.5 - parent: 1 - type: Transform - - uid: 3449 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-48.5 - parent: 1 - type: Transform - - uid: 3450 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-47.5 - parent: 1 - type: Transform - - uid: 3451 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-48.5 - parent: 1 - type: Transform - - uid: 3452 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-47.5 - parent: 1 - type: Transform - - uid: 3453 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-47.5 - parent: 1 - type: Transform - - uid: 3454 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-47.5 - parent: 1 - type: Transform - - uid: 3455 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-47.5 - parent: 1 - type: Transform - - uid: 3456 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-47.5 - parent: 1 - type: Transform - - uid: 3457 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-47.5 - parent: 1 - type: Transform - - uid: 3461 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-47.5 - parent: 1 - type: Transform - - uid: 3462 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-46.5 - parent: 1 - type: Transform - - uid: 3463 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-45.5 - parent: 1 - type: Transform - - uid: 3464 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-44.5 - parent: 1 - type: Transform - - uid: 3465 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-43.5 - parent: 1 - type: Transform - - uid: 3466 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-49.5 - parent: 1 - type: Transform - - uid: 3467 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-50.5 - parent: 1 - type: Transform - - uid: 3468 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-51.5 - parent: 1 - type: Transform - - uid: 3469 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-52.5 - parent: 1 - type: Transform - - uid: 3470 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-53.5 - parent: 1 - type: Transform - - uid: 3471 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-54.5 - parent: 1 - type: Transform - - uid: 3472 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-54.5 - parent: 1 - type: Transform - - uid: 3473 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-54.5 - parent: 1 - type: Transform - - uid: 3474 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-55.5 - parent: 1 - type: Transform - - uid: 3475 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-56.5 - parent: 1 - type: Transform - - uid: 3476 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-57.5 - parent: 1 - type: Transform - - uid: 3477 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-58.5 - parent: 1 - type: Transform - - uid: 3478 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-59.5 - parent: 1 - type: Transform - - uid: 3479 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-60.5 - parent: 1 - type: Transform - - uid: 3480 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-61.5 - parent: 1 - type: Transform - - uid: 3481 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-62.5 - parent: 1 - type: Transform - - uid: 3482 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-63.5 - parent: 1 - type: Transform - - uid: 3483 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-64.5 - parent: 1 - type: Transform - - uid: 3484 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-65.5 - parent: 1 - type: Transform - - uid: 3485 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-66.5 - parent: 1 - type: Transform - - uid: 3486 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-67.5 - parent: 1 - type: Transform - - uid: 3487 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-68.5 - parent: 1 - type: Transform - - uid: 3488 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-69.5 - parent: 1 - type: Transform - - uid: 3489 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-70.5 - parent: 1 - type: Transform - - uid: 3490 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-70.5 - parent: 1 - type: Transform - - uid: 3491 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-69.5 - parent: 1 - type: Transform - - uid: 3492 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-68.5 - parent: 1 - type: Transform - - uid: 3493 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-67.5 - parent: 1 - type: Transform - - uid: 3494 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-66.5 - parent: 1 - type: Transform - - uid: 3495 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-65.5 - parent: 1 - type: Transform - - uid: 3496 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-64.5 - parent: 1 - type: Transform - - uid: 3497 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-63.5 - parent: 1 - type: Transform - - uid: 3498 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-62.5 - parent: 1 - type: Transform - - uid: 3499 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-61.5 - parent: 1 - type: Transform - - uid: 3500 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-60.5 - parent: 1 - type: Transform - - uid: 3501 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-59.5 - parent: 1 - type: Transform - - uid: 3502 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-58.5 - parent: 1 - type: Transform - - uid: 3503 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-57.5 - parent: 1 - type: Transform - - uid: 3504 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-56.5 - parent: 1 - type: Transform - - uid: 3505 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-55.5 - parent: 1 - type: Transform - - uid: 3506 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-54.5 - parent: 1 - type: Transform - - uid: 3507 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-54.5 - parent: 1 - type: Transform - - uid: 3508 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-54.5 - parent: 1 - type: Transform - - uid: 3509 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-53.5 - parent: 1 - type: Transform - - uid: 3510 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-52.5 - parent: 1 - type: Transform - - uid: 3511 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-51.5 - parent: 1 - type: Transform - - uid: 3512 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-50.5 - parent: 1 - type: Transform - - uid: 3513 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-49.5 - parent: 1 - type: Transform - - uid: 3514 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-48.5 - parent: 1 - type: Transform - - uid: 4164 - components: - - pos: -5.5,-15.5 - parent: 1 - type: Transform - - uid: 4165 - components: - - pos: -4.5,-15.5 - parent: 1 - type: Transform - - uid: 4166 - components: - - pos: -3.5,-15.5 - parent: 1 - type: Transform - - uid: 4168 - components: - - pos: -1.5,-15.5 - parent: 1 - type: Transform - - uid: 4169 - components: - - pos: -0.5,-15.5 - parent: 1 - type: Transform - - uid: 4170 - components: - - pos: 0.5,-15.5 - parent: 1 - type: Transform - - uid: 4172 - components: - - pos: 2.5,-15.5 - parent: 1 - type: Transform - - uid: 4173 - components: - - pos: 3.5,-15.5 - parent: 1 - type: Transform - - uid: 4174 - components: - - pos: 4.5,-15.5 - parent: 1 - type: Transform - - uid: 5594 - components: - - pos: 15.5,-33.5 - parent: 1 - type: Transform - - uid: 5597 - components: - - pos: 16.5,-29.5 - parent: 1 - type: Transform - - uid: 5598 - components: - - pos: 15.5,-31.5 - parent: 1 - type: Transform - - uid: 5842 - components: - - pos: -21.5,44.5 - parent: 1 - type: Transform - - uid: 5843 - components: - - pos: -21.5,43.5 - parent: 1 - type: Transform - - uid: 5844 - components: - - pos: -21.5,42.5 - parent: 1 - type: Transform - - uid: 5845 - components: - - pos: -21.5,41.5 - parent: 1 - type: Transform - - uid: 5846 - components: - - pos: -21.5,40.5 - parent: 1 - type: Transform - - uid: 5847 - components: - - pos: -21.5,51.5 - parent: 1 - type: Transform - - uid: 5848 - components: - - pos: -21.5,52.5 - parent: 1 - type: Transform - - uid: 5849 - components: - - pos: -21.5,53.5 - parent: 1 - type: Transform - - uid: 5850 - components: - - pos: -21.5,54.5 - parent: 1 - type: Transform - - uid: 5851 - components: - - pos: -21.5,55.5 - parent: 1 - type: Transform - - uid: 5852 - components: - - pos: -21.5,56.5 - parent: 1 - type: Transform - - uid: 5853 - components: - - pos: -22.5,57.5 - parent: 1 - type: Transform - - uid: 5854 - components: - - pos: -23.5,57.5 - parent: 1 - type: Transform - - uid: 5855 - components: - - pos: -19.5,58.5 - parent: 1 - type: Transform - - uid: 5856 - components: - - pos: -19.5,59.5 - parent: 1 - type: Transform - - uid: 5857 - components: - - pos: -19.5,60.5 - parent: 1 - type: Transform - - uid: 5858 - components: - - pos: -19.5,61.5 - parent: 1 - type: Transform - - uid: 5859 - components: - - pos: -18.5,62.5 - parent: 1 - type: Transform - - uid: 5860 - components: - - pos: -17.5,62.5 - parent: 1 - type: Transform - - uid: 5861 - components: - - pos: -16.5,62.5 - parent: 1 - type: Transform - - uid: 5862 - components: - - pos: -15.5,62.5 - parent: 1 - type: Transform - - uid: 5863 - components: - - pos: -14.5,62.5 - parent: 1 - type: Transform - - uid: 5864 - components: - - pos: -13.5,63.5 - parent: 1 - type: Transform - - uid: 5865 - components: - - pos: -13.5,64.5 - parent: 1 - type: Transform - - uid: 5866 - components: - - pos: -13.5,65.5 - parent: 1 - type: Transform - - uid: 5868 - components: - - pos: -12.5,67.5 - parent: 1 - type: Transform - - uid: 5869 - components: - - pos: -11.5,67.5 - parent: 1 - type: Transform - - uid: 5870 - components: - - pos: -10.5,67.5 - parent: 1 - type: Transform - - uid: 5871 - components: - - pos: -9.5,67.5 - parent: 1 - type: Transform - - uid: 5872 - components: - - pos: -8.5,67.5 - parent: 1 - type: Transform - - uid: 5873 - components: - - pos: -7.5,67.5 - parent: 1 - type: Transform - - uid: 5874 - components: - - pos: -6.5,67.5 - parent: 1 - type: Transform - - uid: 5875 - components: - - pos: -5.5,67.5 - parent: 1 - type: Transform - - uid: 5876 - components: - - pos: -4.5,68.5 - parent: 1 - type: Transform - - uid: 5877 - components: - - pos: -4.5,69.5 - parent: 1 - type: Transform - - uid: 5878 - components: - - pos: 8.5,63.5 - parent: 1 - type: Transform - - uid: 5879 - components: - - pos: 9.5,63.5 - parent: 1 - type: Transform - - uid: 5880 - components: - - pos: 10.5,63.5 - parent: 1 - type: Transform - - uid: 5881 - components: - - pos: 11.5,63.5 - parent: 1 - type: Transform - - uid: 5882 - components: - - pos: 12.5,63.5 - parent: 1 - type: Transform - - uid: 5883 - components: - - pos: 13.5,63.5 - parent: 1 - type: Transform - - uid: 5884 - components: - - pos: 14.5,63.5 - parent: 1 - type: Transform - - uid: 5885 - components: - - pos: 15.5,63.5 - parent: 1 - type: Transform - - uid: 5886 - components: - - pos: 16.5,63.5 - parent: 1 - type: Transform - - uid: 5887 - components: - - pos: 17.5,63.5 - parent: 1 - type: Transform - - uid: 5888 - components: - - pos: 18.5,62.5 - parent: 1 - type: Transform - - uid: 5889 - components: - - pos: 18.5,61.5 - parent: 1 - type: Transform - - uid: 5890 - components: - - pos: 18.5,60.5 - parent: 1 - type: Transform - - uid: 5891 - components: - - pos: 18.5,59.5 - parent: 1 - type: Transform - - uid: 5892 - components: - - pos: 18.5,56.5 - parent: 1 - type: Transform - - uid: 5893 - components: - - pos: 17.5,56.5 - parent: 1 - type: Transform - - uid: 5894 - components: - - pos: 20.5,56.5 - parent: 1 - type: Transform - - uid: 5895 - components: - - pos: 21.5,56.5 - parent: 1 - type: Transform - - uid: 5898 - components: - - pos: 16.5,54.5 - parent: 1 - type: Transform - - uid: 5899 - components: - - pos: 16.5,53.5 - parent: 1 - type: Transform - - uid: 5901 - components: - - pos: 22.5,54.5 - parent: 1 - type: Transform - - uid: 5902 - components: - - pos: 22.5,53.5 - parent: 1 - type: Transform - - uid: 5903 - components: - - pos: 22.5,52.5 - parent: 1 - type: Transform - - uid: 5904 - components: - - pos: 22.5,51.5 - parent: 1 - type: Transform - - uid: 5905 - components: - - pos: 22.5,50.5 - parent: 1 - type: Transform - - uid: 5906 - components: - - pos: 21.5,49.5 - parent: 1 - type: Transform - - uid: 5907 - components: - - pos: 22.5,48.5 - parent: 1 - type: Transform - - uid: 5908 - components: - - pos: 22.5,47.5 - parent: 1 - type: Transform - - uid: 5909 - components: - - pos: 22.5,46.5 - parent: 1 - type: Transform - - uid: 5910 - components: - - pos: 23.5,45.5 - parent: 1 - type: Transform - - uid: 5911 - components: - - pos: 24.5,45.5 - parent: 1 - type: Transform - - uid: 5912 - components: - - pos: 25.5,44.5 - parent: 1 - type: Transform - - uid: 5913 - components: - - pos: 25.5,43.5 - parent: 1 - type: Transform - - uid: 5914 - components: - - pos: 25.5,42.5 - parent: 1 - type: Transform - - uid: 5915 - components: - - pos: 25.5,41.5 - parent: 1 - type: Transform - - uid: 5916 - components: - - pos: 25.5,40.5 - parent: 1 - type: Transform - - uid: 5917 - components: - - pos: 24.5,29.5 - parent: 1 - type: Transform - - uid: 5918 - components: - - pos: 24.5,28.5 - parent: 1 - type: Transform - - uid: 5919 - components: - - pos: 24.5,27.5 - parent: 1 - type: Transform - - uid: 5920 - components: - - pos: 24.5,26.5 - parent: 1 - type: Transform - - uid: 5921 - components: - - pos: 24.5,25.5 - parent: 1 - type: Transform - - uid: 5922 - components: - - pos: 23.5,24.5 - parent: 1 - type: Transform - - uid: 5923 - components: - - pos: 22.5,24.5 - parent: 1 - type: Transform - - uid: 5924 - components: - - pos: 21.5,24.5 - parent: 1 - type: Transform - - uid: 5925 - components: - - pos: 20.5,24.5 - parent: 1 - type: Transform - - uid: 5926 - components: - - pos: 19.5,21.5 - parent: 1 - type: Transform - - uid: 5927 - components: - - pos: 19.5,20.5 - parent: 1 - type: Transform - - uid: 5928 - components: - - pos: 19.5,19.5 - parent: 1 - type: Transform - - uid: 5929 - components: - - pos: 19.5,18.5 - parent: 1 - type: Transform - - uid: 5930 - components: - - pos: 19.5,17.5 - parent: 1 - type: Transform - - uid: 5931 - components: - - pos: 18.5,22.5 - parent: 1 - type: Transform - - uid: 5932 - components: - - pos: 17.5,22.5 - parent: 1 - type: Transform - - uid: 5933 - components: - - pos: 16.5,22.5 - parent: 1 - type: Transform - - uid: 5934 - components: - - pos: 15.5,22.5 - parent: 1 - type: Transform - - uid: 5938 - components: - - pos: -27.5,18.5 - parent: 1 - type: Transform - - uid: 5939 - components: - - pos: -27.5,19.5 - parent: 1 - type: Transform - - uid: 5940 - components: - - pos: -27.5,20.5 - parent: 1 - type: Transform - - uid: 5941 - components: - - pos: -27.5,21.5 - parent: 1 - type: Transform - - uid: 5942 - components: - - pos: -27.5,22.5 - parent: 1 - type: Transform - - uid: 5943 - components: - - pos: -26.5,25.5 - parent: 1 - type: Transform - - uid: 5944 - components: - - pos: -25.5,25.5 - parent: 1 - type: Transform - - uid: 5945 - components: - - pos: -24.5,25.5 - parent: 1 - type: Transform - - uid: 5946 - components: - - pos: -23.5,28.5 - parent: 1 - type: Transform - - uid: 5947 - components: - - pos: -23.5,29.5 - parent: 1 - type: Transform - - uid: 5948 - components: - - pos: -23.5,30.5 - parent: 1 - type: Transform - - uid: 5949 - components: - - pos: -23.5,31.5 - parent: 1 - type: Transform - - uid: 5950 - components: - - pos: -23.5,32.5 - parent: 1 - type: Transform - - uid: 5951 - components: - - pos: -23.5,33.5 - parent: 1 - type: Transform - - uid: 5952 - components: - - pos: -23.5,34.5 - parent: 1 - type: Transform - - uid: 5953 - components: - - pos: -22.5,27.5 - parent: 1 - type: Transform - - uid: 5954 - components: - - pos: -21.5,27.5 - parent: 1 - type: Transform - - uid: 5988 - components: - - pos: -35.5,-8.5 - parent: 1 - type: Transform - - uid: 5989 - components: - - pos: -35.5,-9.5 - parent: 1 - type: Transform - - uid: 5990 - components: - - pos: -35.5,-10.5 - parent: 1 - type: Transform - - uid: 5991 - components: - - pos: -35.5,-11.5 - parent: 1 - type: Transform - - uid: 5992 - components: - - pos: -35.5,-12.5 - parent: 1 - type: Transform - - uid: 5993 - components: - - pos: -35.5,-13.5 - parent: 1 - type: Transform - - uid: 5994 - components: - - pos: -35.5,-14.5 - parent: 1 - type: Transform - - uid: 5995 - components: - - pos: -35.5,-15.5 - parent: 1 - type: Transform - - uid: 5996 - components: - - pos: -34.5,-16.5 - parent: 1 - type: Transform - - uid: 5997 - components: - - pos: -33.5,-16.5 - parent: 1 - type: Transform - - uid: 5998 - components: - - pos: -32.5,-16.5 - parent: 1 - type: Transform - - uid: 5999 - components: - - pos: -31.5,-16.5 - parent: 1 - type: Transform - - uid: 6001 - components: - - pos: -29.5,-17.5 - parent: 1 - type: Transform - - uid: 6002 - components: - - pos: -29.5,-18.5 - parent: 1 - type: Transform - - uid: 6003 - components: - - pos: -29.5,-19.5 - parent: 1 - type: Transform - - uid: 6004 - components: - - pos: -29.5,-20.5 - parent: 1 - type: Transform - - uid: 6005 - components: - - pos: -29.5,-21.5 - parent: 1 - type: Transform - - uid: 6006 - components: - - pos: -29.5,-22.5 - parent: 1 - type: Transform - - uid: 6007 - components: - - pos: -29.5,-23.5 - parent: 1 - type: Transform - - uid: 6008 - components: - - pos: -29.5,-24.5 - parent: 1 - type: Transform - - uid: 6009 - components: - - pos: -29.5,-25.5 - parent: 1 - type: Transform - - uid: 6010 - components: - - pos: -28.5,-26.5 - parent: 1 - type: Transform - - uid: 6011 - components: - - pos: -27.5,-26.5 - parent: 1 - type: Transform - - uid: 6012 - components: - - pos: -26.5,-26.5 - parent: 1 - type: Transform - - uid: 6013 - components: - - pos: -25.5,-26.5 - parent: 1 - type: Transform - - uid: 6015 - components: - - pos: -23.5,-26.5 - parent: 1 - type: Transform - - uid: 6016 - components: - - pos: -22.5,-26.5 - parent: 1 - type: Transform - - uid: 6017 - components: - - pos: -21.5,-26.5 - parent: 1 - type: Transform - - uid: 6018 - components: - - pos: -20.5,-27.5 - parent: 1 - type: Transform - - uid: 6019 - components: - - pos: -20.5,-28.5 - parent: 1 - type: Transform - - uid: 6020 - components: - - pos: -20.5,-29.5 - parent: 1 - type: Transform - - uid: 6021 - components: - - pos: -20.5,-30.5 - parent: 1 - type: Transform - - uid: 6023 - components: - - pos: -18.5,-29.5 - parent: 1 - type: Transform - - uid: 6024 - components: - - pos: -18.5,-28.5 - parent: 1 - type: Transform - - uid: 6025 - components: - - pos: -18.5,-27.5 - parent: 1 - type: Transform - - uid: 6026 - components: - - pos: -18.5,-26.5 - parent: 1 - type: Transform - - uid: 6027 - components: - - pos: -18.5,-25.5 - parent: 1 - type: Transform - - uid: 6028 - components: - - pos: -16.5,-23.5 - parent: 1 - type: Transform - - uid: 6029 - components: - - pos: -16.5,-22.5 - parent: 1 - type: Transform - - uid: 6030 - components: - - pos: -16.5,-21.5 - parent: 1 - type: Transform - - uid: 6031 - components: - - pos: -16.5,-32.5 - parent: 1 - type: Transform - - uid: 6032 - components: - - pos: -16.5,-33.5 - parent: 1 - type: Transform - - uid: 6033 - components: - - pos: -16.5,-34.5 - parent: 1 - type: Transform - - uid: 6034 - components: - - pos: -16.5,-35.5 - parent: 1 - type: Transform - - uid: 6050 - components: - - pos: 38.5,-11.5 - parent: 1 - type: Transform - - uid: 6051 - components: - - pos: 37.5,-11.5 - parent: 1 - type: Transform - - uid: 6052 - components: - - pos: 36.5,-11.5 - parent: 1 - type: Transform - - uid: 6053 - components: - - pos: 35.5,-11.5 - parent: 1 - type: Transform - - uid: 6054 - components: - - pos: 32.5,-12.5 - parent: 1 - type: Transform - - uid: 6055 - components: - - pos: 32.5,-13.5 - parent: 1 - type: Transform - - uid: 6056 - components: - - pos: 32.5,-14.5 - parent: 1 - type: Transform - - uid: 6057 - components: - - pos: 30.5,-16.5 - parent: 1 - type: Transform - - uid: 6058 - components: - - pos: 30.5,-17.5 - parent: 1 - type: Transform - - uid: 6059 - components: - - pos: 30.5,-18.5 - parent: 1 - type: Transform - - uid: 6060 - components: - - pos: 30.5,-20.5 - parent: 1 - type: Transform - - uid: 6061 - components: - - pos: 30.5,-21.5 - parent: 1 - type: Transform - - uid: 6062 - components: - - pos: 30.5,-22.5 - parent: 1 - type: Transform - - uid: 6063 - components: - - pos: 30.5,-23.5 - parent: 1 - type: Transform - - uid: 6064 - components: - - pos: 28.5,-24.5 - parent: 1 - type: Transform - - uid: 6065 - components: - - pos: 27.5,-24.5 - parent: 1 - type: Transform - - uid: 6066 - components: - - pos: 26.5,-24.5 - parent: 1 - type: Transform - - uid: 6067 - components: - - pos: 25.5,-24.5 - parent: 1 - type: Transform - - uid: 6068 - components: - - pos: 24.5,-23.5 - parent: 1 - type: Transform - - uid: 6069 - components: - - pos: 24.5,-22.5 - parent: 1 - type: Transform - - uid: 6070 - components: - - pos: 22.5,-25.5 - parent: 1 - type: Transform - - uid: 6071 - components: - - pos: 22.5,-26.5 - parent: 1 - type: Transform - - uid: 6072 - components: - - pos: 20.5,-29.5 - parent: 1 - type: Transform - - uid: 6073 - components: - - pos: 19.5,-29.5 - parent: 1 - type: Transform - - uid: 6074 - components: - - pos: 18.5,-29.5 - parent: 1 - type: Transform - - uid: 6075 - components: - - pos: 17.5,-29.5 - parent: 1 - type: Transform - - uid: 6077 - components: - - pos: 15.5,-32.5 - parent: 1 - type: Transform - - uid: 6078 - components: - - pos: 15.5,-30.5 - parent: 1 - type: Transform - - uid: 6334 - components: - - pos: -43.5,46.5 - parent: 1 - type: Transform - - uid: 6335 - components: - - pos: -43.5,47.5 - parent: 1 - type: Transform - - uid: 6336 - components: - - pos: -43.5,48.5 - parent: 1 - type: Transform - - uid: 6337 - components: - - pos: -43.5,49.5 - parent: 1 - type: Transform - - uid: 6338 - components: - - pos: -43.5,50.5 - parent: 1 - type: Transform - - uid: 6339 - components: - - pos: -42.5,51.5 - parent: 1 - type: Transform - - uid: 6340 - components: - - pos: -41.5,51.5 - parent: 1 - type: Transform - - uid: 6417 - components: - - pos: -15.5,8.5 - parent: 1 - type: Transform - - uid: 6418 - components: - - pos: -16.5,7.5 - parent: 1 - type: Transform - - uid: 6419 - components: - - pos: -17.5,7.5 - parent: 1 - type: Transform - - uid: 6420 - components: - - pos: -18.5,7.5 - parent: 1 - type: Transform - - uid: 6421 - components: - - pos: -19.5,6.5 - parent: 1 - type: Transform - - uid: 6422 - components: - - pos: -19.5,5.5 - parent: 1 - type: Transform - - uid: 6423 - components: - - pos: -19.5,4.5 - parent: 1 - type: Transform - - uid: 6424 - components: - - pos: -19.5,3.5 - parent: 1 - type: Transform - - uid: 6425 - components: - - pos: -19.5,2.5 - parent: 1 - type: Transform - - uid: 6426 - components: - - pos: -19.5,1.5 - parent: 1 - type: Transform - - uid: 6427 - components: - - pos: -19.5,0.5 - parent: 1 - type: Transform - - uid: 6428 - components: - - pos: -19.5,-0.5 - parent: 1 - type: Transform - - uid: 6429 - components: - - pos: -19.5,-1.5 - parent: 1 - type: Transform - - uid: 6430 - components: - - pos: -20.5,-2.5 - parent: 1 - type: Transform - - uid: 6431 - components: - - pos: -21.5,-2.5 - parent: 1 - type: Transform - - uid: 6432 - components: - - pos: -19.5,-3.5 - parent: 1 - type: Transform - - uid: 6433 - components: - - pos: -19.5,-4.5 - parent: 1 - type: Transform - - uid: 6434 - components: - - pos: -20.5,-5.5 - parent: 1 - type: Transform - - uid: 6435 - components: - - pos: -21.5,-5.5 - parent: 1 - type: Transform - - uid: 6436 - components: - - pos: -22.5,-5.5 - parent: 1 - type: Transform - - uid: 6437 - components: - - pos: -23.5,-5.5 - parent: 1 - type: Transform - - uid: 6438 - components: - - pos: -24.5,-5.5 - parent: 1 - type: Transform - - uid: 6439 - components: - - pos: -25.5,-5.5 - parent: 1 - type: Transform - - uid: 6452 - components: - - pos: -27.5,-4.5 - parent: 1 - type: Transform - - uid: 6453 - components: - - pos: -27.5,-3.5 - parent: 1 - type: Transform - - uid: 6454 - components: - - pos: -27.5,-2.5 - parent: 1 - type: Transform - - uid: 6455 - components: - - pos: -27.5,-1.5 - parent: 1 - type: Transform - - uid: 6456 - components: - - pos: -27.5,-0.5 - parent: 1 - type: Transform - - uid: 6457 - components: - - pos: -27.5,0.5 - parent: 1 - type: Transform - - uid: 6473 - components: - - pos: 5.5,-28.5 - parent: 1 - type: Transform - - uid: 6485 - components: - - pos: 7.5,-28.5 - parent: 1 - type: Transform - - uid: 6488 - components: - - pos: 6.5,-28.5 - parent: 1 - type: Transform - - uid: 6578 - components: - - pos: 8.5,-28.5 - parent: 1 - type: Transform - - uid: 6713 - components: - - pos: -34.5,24.5 - parent: 1 - type: Transform - - uid: 6714 - components: - - pos: -34.5,25.5 - parent: 1 - type: Transform - - uid: 6715 - components: - - pos: -34.5,26.5 - parent: 1 - type: Transform - - uid: 6716 - components: - - pos: -34.5,27.5 - parent: 1 - type: Transform - - uid: 6717 - components: - - pos: -34.5,28.5 - parent: 1 - type: Transform - - uid: 6718 - components: - - pos: -34.5,29.5 - parent: 1 - type: Transform - - uid: 6719 - components: - - pos: -34.5,30.5 - parent: 1 - type: Transform - - uid: 6720 - components: - - pos: -34.5,31.5 - parent: 1 - type: Transform - - uid: 6721 - components: - - pos: -34.5,32.5 - parent: 1 - type: Transform - - uid: 6722 - components: - - pos: -35.5,33.5 - parent: 1 - type: Transform - - uid: 6723 - components: - - pos: -36.5,33.5 - parent: 1 - type: Transform - - uid: 6724 - components: - - pos: -37.5,33.5 - parent: 1 - type: Transform - - uid: 6725 - components: - - pos: -38.5,33.5 - parent: 1 - type: Transform - - uid: 6735 - components: - - pos: -35.5,20.5 - parent: 1 - type: Transform - - uid: 6736 - components: - - pos: -35.5,19.5 - parent: 1 - type: Transform - - uid: 6737 - components: - - pos: -35.5,18.5 - parent: 1 - type: Transform - - uid: 6955 - components: - - pos: 14.5,5.5 - parent: 1 - type: Transform - - uid: 6956 - components: - - pos: 14.5,4.5 - parent: 1 - type: Transform - - uid: 6957 - components: - - pos: 14.5,3.5 - parent: 1 - type: Transform - - uid: 6958 - components: - - pos: 14.5,2.5 - parent: 1 - type: Transform - - uid: 6959 - components: - - pos: 14.5,1.5 - parent: 1 - type: Transform - - uid: 6960 - components: - - pos: 14.5,0.5 - parent: 1 - type: Transform - - uid: 6961 - components: - - pos: 14.5,-0.5 - parent: 1 - type: Transform - - uid: 6962 - components: - - pos: 15.5,-1.5 - parent: 1 - type: Transform - - uid: 6963 - components: - - pos: 16.5,-1.5 - parent: 1 - type: Transform - - uid: 6964 - components: - - pos: 17.5,-1.5 - parent: 1 - type: Transform - - uid: 6965 - components: - - pos: 18.5,-0.5 - parent: 1 - type: Transform - - uid: 6966 - components: - - pos: 18.5,0.5 - parent: 1 - type: Transform - - uid: 6967 - components: - - pos: 15.5,6.5 - parent: 1 - type: Transform - - uid: 6968 - components: - - pos: 16.5,6.5 - parent: 1 - type: Transform - - uid: 6969 - components: - - pos: 17.5,6.5 - parent: 1 - type: Transform - - uid: 6970 - components: - - pos: 18.5,7.5 - parent: 1 - type: Transform - - uid: 6971 - components: - - pos: 18.5,8.5 - parent: 1 - type: Transform - - uid: 6972 - components: - - pos: 18.5,9.5 - parent: 1 - type: Transform - - uid: 6973 - components: - - pos: 18.5,10.5 - parent: 1 - type: Transform - - uid: 6974 - components: - - pos: 18.5,11.5 - parent: 1 - type: Transform - - uid: 6975 - components: - - pos: 14.5,-2.5 - parent: 1 - type: Transform - - uid: 6976 - components: - - pos: 14.5,-3.5 - parent: 1 - type: Transform - - uid: 6977 - components: - - pos: 14.5,-4.5 - parent: 1 - type: Transform - - uid: 6998 - components: - - pos: 36.5,41.5 - parent: 1 - type: Transform - - uid: 6999 - components: - - pos: 36.5,42.5 - parent: 1 - type: Transform - - uid: 7000 - components: - - pos: 36.5,43.5 - parent: 1 - type: Transform - - uid: 7001 - components: - - pos: 36.5,44.5 - parent: 1 - type: Transform - - uid: 7002 - components: - - pos: 36.5,45.5 - parent: 1 - type: Transform - - uid: 7003 - components: - - pos: 36.5,46.5 - parent: 1 - type: Transform - - uid: 7004 - components: - - pos: 36.5,47.5 - parent: 1 - type: Transform - - uid: 7005 - components: - - pos: 36.5,48.5 - parent: 1 - type: Transform - - uid: 7006 - components: - - pos: 36.5,49.5 - parent: 1 - type: Transform - - uid: 7007 - components: - - pos: 36.5,50.5 - parent: 1 - type: Transform - - uid: 7008 - components: - - pos: 35.5,51.5 - parent: 1 - type: Transform - - uid: 7009 - components: - - pos: 34.5,51.5 - parent: 1 - type: Transform - - uid: 7010 - components: - - pos: 33.5,51.5 - parent: 1 - type: Transform - - uid: 7011 - components: - - pos: 32.5,51.5 - parent: 1 - type: Transform - - uid: 7012 - components: - - pos: 31.5,51.5 - parent: 1 - type: Transform - - uid: 7013 - components: - - pos: 30.5,51.5 - parent: 1 - type: Transform - - uid: 7014 - components: - - pos: 28.5,54.5 - parent: 1 - type: Transform - - uid: 7016 - components: - - pos: 28.5,56.5 - parent: 1 - type: Transform - - uid: 7017 - components: - - pos: 27.5,57.5 - parent: 1 - type: Transform - - uid: 7018 - components: - - pos: 26.5,57.5 - parent: 1 - type: Transform - - uid: 7019 - components: - - pos: 25.5,57.5 - parent: 1 - type: Transform - - uid: 7020 - components: - - pos: 24.5,57.5 - parent: 1 - type: Transform - - uid: 7021 - components: - - pos: 23.5,57.5 - parent: 1 - type: Transform - - uid: 7184 - components: - - pos: 2.5,41.5 - parent: 1 - type: Transform - - uid: 7185 - components: - - pos: 3.5,41.5 - parent: 1 - type: Transform - - uid: 7186 - components: - - pos: 4.5,41.5 - parent: 1 - type: Transform - - uid: 7187 - components: - - pos: 5.5,41.5 - parent: 1 - type: Transform - - uid: 7188 - components: - - pos: 6.5,41.5 - parent: 1 - type: Transform - - uid: 7189 - components: - - pos: 7.5,41.5 - parent: 1 - type: Transform - - uid: 7190 - components: - - pos: 8.5,41.5 - parent: 1 - type: Transform - - uid: 7191 - components: - - pos: 9.5,42.5 - parent: 1 - type: Transform - - uid: 7192 - components: - - pos: 9.5,43.5 - parent: 1 - type: Transform - - uid: 7193 - components: - - pos: 9.5,44.5 - parent: 1 - type: Transform - - uid: 7194 - components: - - pos: 9.5,45.5 - parent: 1 - type: Transform - - uid: 7195 - components: - - pos: 9.5,46.5 - parent: 1 - type: Transform - - uid: 7196 - components: - - pos: 9.5,47.5 - parent: 1 - type: Transform - - uid: 7197 - components: - - pos: 9.5,48.5 - parent: 1 - type: Transform - - uid: 7198 - components: - - pos: 9.5,49.5 - parent: 1 - type: Transform - - uid: 7199 - components: - - pos: 11.5,50.5 - parent: 1 - type: Transform - - uid: 7200 - components: - - pos: 10.5,50.5 - parent: 1 - type: Transform - - uid: 7201 - components: - - pos: 12.5,50.5 - parent: 1 - type: Transform - - uid: 7203 - components: - - pos: 14.5,50.5 - parent: 1 - type: Transform - - uid: 7204 - components: - - pos: 15.5,50.5 - parent: 1 - type: Transform - - uid: 7205 - components: - - pos: 17.5,49.5 - parent: 1 - type: Transform - - uid: 7206 - components: - - pos: 18.5,49.5 - parent: 1 - type: Transform - - uid: 7207 - components: - - pos: 19.5,49.5 - parent: 1 - type: Transform - - uid: 7208 - components: - - pos: 20.5,49.5 - parent: 1 - type: Transform - - uid: 7302 - components: - - pos: 24.5,-21.5 - parent: 1 - type: Transform - - uid: 7303 - components: - - pos: 24.5,-20.5 - parent: 1 - type: Transform - - uid: 7304 - components: - - pos: 24.5,-19.5 - parent: 1 - type: Transform - - uid: 7305 - components: - - pos: 24.5,-18.5 - parent: 1 - type: Transform - - uid: 7306 - components: - - pos: 24.5,-17.5 - parent: 1 - type: Transform - - uid: 7307 - components: - - pos: 24.5,-16.5 - parent: 1 - type: Transform - - uid: 7308 - components: - - pos: 25.5,-15.5 - parent: 1 - type: Transform - - uid: 7309 - components: - - pos: 26.5,-15.5 - parent: 1 - type: Transform - - uid: 7310 - components: - - pos: 27.5,-15.5 - parent: 1 - type: Transform - - uid: 7311 - components: - - pos: 28.5,-15.5 - parent: 1 - type: Transform - - uid: 7312 - components: - - pos: 29.5,-15.5 - parent: 1 - type: Transform - - uid: 7313 - components: - - pos: 24.5,-14.5 - parent: 1 - type: Transform - - uid: 7314 - components: - - pos: 24.5,-13.5 - parent: 1 - type: Transform - - uid: 7315 - components: - - pos: 24.5,-12.5 - parent: 1 - type: Transform - - uid: 7320 - components: - - pos: 34.5,-11.5 - parent: 1 - type: Transform - - uid: 7321 - components: - - pos: 33.5,-11.5 - parent: 1 - type: Transform - - uid: 7329 - components: - - pos: 18.5,2.5 - parent: 1 - type: Transform - - uid: 7330 - components: - - pos: 18.5,3.5 - parent: 1 - type: Transform - - uid: 7331 - components: - - pos: 18.5,52.5 - parent: 1 - type: Transform - - uid: 7332 - components: - - pos: 19.5,52.5 - parent: 1 - type: Transform - - uid: 7333 - components: - - pos: -24.5,56.5 - parent: 1 - type: Transform - - uid: 7334 - components: - - pos: -24.5,55.5 - parent: 1 - type: Transform - - uid: 7335 - components: - - pos: -24.5,54.5 - parent: 1 - type: Transform - - uid: 7386 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,53.5 - parent: 1 - type: Transform - - uid: 7400 - components: - - pos: 37.5,75.5 - parent: 1 - type: Transform - - uid: 7401 - components: - - pos: 37.5,74.5 - parent: 1 - type: Transform - - uid: 7402 - components: - - pos: 37.5,73.5 - parent: 1 - type: Transform - - uid: 7403 - components: - - pos: 37.5,72.5 - parent: 1 - type: Transform - - uid: 7404 - components: - - pos: 37.5,71.5 - parent: 1 - type: Transform - - uid: 7405 - components: - - pos: 37.5,70.5 - parent: 1 - type: Transform - - uid: 7406 - components: - - pos: 37.5,69.5 - parent: 1 - type: Transform - - uid: 7407 - components: - - pos: 37.5,68.5 - parent: 1 - type: Transform - - uid: 7408 - components: - - pos: 37.5,67.5 - parent: 1 - type: Transform - - uid: 7409 - components: - - pos: 37.5,66.5 - parent: 1 - type: Transform - - uid: 7410 - components: - - pos: 37.5,65.5 - parent: 1 - type: Transform - - uid: 7411 - components: - - pos: 37.5,64.5 - parent: 1 - type: Transform - - uid: 7412 - components: - - pos: 37.5,63.5 - parent: 1 - type: Transform - - uid: 7413 - components: - - pos: 37.5,62.5 - parent: 1 - type: Transform - - uid: 7414 - components: - - pos: 37.5,61.5 - parent: 1 - type: Transform - - uid: 7415 - components: - - pos: 37.5,60.5 - parent: 1 - type: Transform - - uid: 7416 - components: - - pos: 37.5,59.5 - parent: 1 - type: Transform - - uid: 7417 - components: - - pos: 37.5,58.5 - parent: 1 - type: Transform - - uid: 7418 - components: - - pos: 37.5,57.5 - parent: 1 - type: Transform - - uid: 7513 - components: - - pos: 35.5,73.5 - parent: 1 - type: Transform - - uid: 7514 - components: - - pos: 34.5,73.5 - parent: 1 - type: Transform - - uid: 7515 - components: - - pos: 33.5,73.5 - parent: 1 - type: Transform - - uid: 7516 - components: - - pos: 32.5,73.5 - parent: 1 - type: Transform - - uid: 7517 - components: - - pos: 31.5,73.5 - parent: 1 - type: Transform - - uid: 7518 - components: - - pos: 30.5,73.5 - parent: 1 - type: Transform - - uid: 7519 - components: - - pos: 29.5,73.5 - parent: 1 - type: Transform - - uid: 7520 - components: - - pos: 28.5,73.5 - parent: 1 - type: Transform - - uid: 7521 - components: - - pos: 39.5,73.5 - parent: 1 - type: Transform - - uid: 7522 - components: - - pos: 40.5,73.5 - parent: 1 - type: Transform - - uid: 7523 - components: - - pos: 41.5,73.5 - parent: 1 - type: Transform - - uid: 7524 - components: - - pos: 42.5,73.5 - parent: 1 - type: Transform - - uid: 7525 - components: - - pos: 43.5,73.5 - parent: 1 - type: Transform - - uid: 7526 - components: - - pos: 44.5,73.5 - parent: 1 - type: Transform - - uid: 7527 - components: - - pos: 45.5,73.5 - parent: 1 - type: Transform - - uid: 7528 - components: - - pos: 46.5,73.5 - parent: 1 - type: Transform - - uid: 7529 - components: - - pos: 35.5,69.5 - parent: 1 - type: Transform - - uid: 7530 - components: - - pos: 34.5,69.5 - parent: 1 - type: Transform - - uid: 7531 - components: - - pos: 33.5,69.5 - parent: 1 - type: Transform - - uid: 7532 - components: - - pos: 32.5,69.5 - parent: 1 - type: Transform - - uid: 7533 - components: - - pos: 31.5,69.5 - parent: 1 - type: Transform - - uid: 7534 - components: - - pos: 30.5,69.5 - parent: 1 - type: Transform - - uid: 7535 - components: - - pos: 29.5,69.5 - parent: 1 - type: Transform - - uid: 7536 - components: - - pos: 28.5,69.5 - parent: 1 - type: Transform - - uid: 7537 - components: - - pos: 39.5,69.5 - parent: 1 - type: Transform - - uid: 7538 - components: - - pos: 40.5,69.5 - parent: 1 - type: Transform - - uid: 7539 - components: - - pos: 41.5,69.5 - parent: 1 - type: Transform - - uid: 7540 - components: - - pos: 42.5,69.5 - parent: 1 - type: Transform - - uid: 7541 - components: - - pos: 43.5,69.5 - parent: 1 - type: Transform - - uid: 7542 - components: - - pos: 44.5,69.5 - parent: 1 - type: Transform - - uid: 7543 - components: - - pos: 45.5,69.5 - parent: 1 - type: Transform - - uid: 7544 - components: - - pos: 46.5,69.5 - parent: 1 - type: Transform - - uid: 7715 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,20.5 - parent: 1 - type: Transform - - uid: 7730 - components: - - pos: -38.5,72.5 - parent: 1 - type: Transform - - uid: 7731 - components: - - pos: -38.5,71.5 - parent: 1 - type: Transform - - uid: 7732 - components: - - pos: -38.5,70.5 - parent: 1 - type: Transform - - uid: 7733 - components: - - pos: -38.5,69.5 - parent: 1 - type: Transform - - uid: 7734 - components: - - pos: -38.5,68.5 - parent: 1 - type: Transform - - uid: 7735 - components: - - pos: -38.5,67.5 - parent: 1 - type: Transform - - uid: 7736 - components: - - pos: -38.5,66.5 - parent: 1 - type: Transform - - uid: 7737 - components: - - pos: -38.5,65.5 - parent: 1 - type: Transform - - uid: 7738 - components: - - pos: -38.5,64.5 - parent: 1 - type: Transform - - uid: 7739 - components: - - pos: -38.5,63.5 - parent: 1 - type: Transform - - uid: 7740 - components: - - pos: -38.5,62.5 - parent: 1 - type: Transform - - uid: 7741 - components: - - pos: -38.5,61.5 - parent: 1 - type: Transform - - uid: 7742 - components: - - pos: -38.5,60.5 - parent: 1 - type: Transform - - uid: 7743 - components: - - pos: -38.5,59.5 - parent: 1 - type: Transform - - uid: 7744 - components: - - pos: -38.5,58.5 - parent: 1 - type: Transform - - uid: 7745 - components: - - pos: -38.5,57.5 - parent: 1 - type: Transform - - uid: 7746 - components: - - pos: -40.5,73.5 - parent: 1 - type: Transform - - uid: 7747 - components: - - pos: -41.5,73.5 - parent: 1 - type: Transform - - uid: 7748 - components: - - pos: -42.5,73.5 - parent: 1 - type: Transform - - uid: 7749 - components: - - pos: -43.5,73.5 - parent: 1 - type: Transform - - uid: 7750 - components: - - pos: -44.5,73.5 - parent: 1 - type: Transform - - uid: 7751 - components: - - pos: -45.5,73.5 - parent: 1 - type: Transform - - uid: 7752 - components: - - pos: -46.5,73.5 - parent: 1 - type: Transform - - uid: 7753 - components: - - pos: -47.5,73.5 - parent: 1 - type: Transform - - uid: 7754 - components: - - pos: -36.5,73.5 - parent: 1 - type: Transform - - uid: 7755 - components: - - pos: -35.5,73.5 - parent: 1 - type: Transform - - uid: 7756 - components: - - pos: -34.5,73.5 - parent: 1 - type: Transform - - uid: 7757 - components: - - pos: -33.5,73.5 - parent: 1 - type: Transform - - uid: 7758 - components: - - pos: -32.5,73.5 - parent: 1 - type: Transform - - uid: 7759 - components: - - pos: -31.5,73.5 - parent: 1 - type: Transform - - uid: 7760 - components: - - pos: -30.5,73.5 - parent: 1 - type: Transform - - uid: 7761 - components: - - pos: -29.5,73.5 - parent: 1 - type: Transform - - uid: 7778 - components: - - pos: -40.5,69.5 - parent: 1 - type: Transform - - uid: 7779 - components: - - pos: -41.5,69.5 - parent: 1 - type: Transform - - uid: 7780 - components: - - pos: -42.5,69.5 - parent: 1 - type: Transform - - uid: 7781 - components: - - pos: -43.5,69.5 - parent: 1 - type: Transform - - uid: 7782 - components: - - pos: -44.5,69.5 - parent: 1 - type: Transform - - uid: 7783 - components: - - pos: -45.5,69.5 - parent: 1 - type: Transform - - uid: 7784 - components: - - pos: -46.5,69.5 - parent: 1 - type: Transform - - uid: 7785 - components: - - pos: -47.5,69.5 - parent: 1 - type: Transform - - uid: 7786 - components: - - pos: -36.5,69.5 - parent: 1 - type: Transform - - uid: 7787 - components: - - pos: -35.5,69.5 - parent: 1 - type: Transform - - uid: 7788 - components: - - pos: -34.5,69.5 - parent: 1 - type: Transform - - uid: 7789 - components: - - pos: -33.5,69.5 - parent: 1 - type: Transform - - uid: 7790 - components: - - pos: -32.5,69.5 - parent: 1 - type: Transform - - uid: 7791 - components: - - pos: -31.5,69.5 - parent: 1 - type: Transform - - uid: 7792 - components: - - pos: -30.5,69.5 - parent: 1 - type: Transform - - uid: 7793 - components: - - pos: -29.5,69.5 - parent: 1 - type: Transform - - uid: 7803 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,21.5 - parent: 1 - type: Transform - - uid: 8153 - components: - - pos: -45.5,25.5 - parent: 1 - type: Transform - - uid: 8162 - components: - - pos: -44.5,25.5 - parent: 1 - type: Transform - - uid: 8573 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,33.5 - parent: 1 - type: Transform - - uid: 8574 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,34.5 - parent: 1 - type: Transform - - uid: 8614 - components: - - pos: -7.5,26.5 - parent: 1 - type: Transform - - uid: 8615 - components: - - pos: -6.5,26.5 - parent: 1 - type: Transform - - uid: 8616 - components: - - pos: -5.5,26.5 - parent: 1 - type: Transform - - uid: 8617 - components: - - pos: -4.5,26.5 - parent: 1 - type: Transform - - uid: 8746 - components: - - pos: -13.5,-41.5 - parent: 1 - type: Transform - - uid: 8747 - components: - - pos: -13.5,-40.5 - parent: 1 - type: Transform - - uid: 8748 - components: - - pos: -13.5,-39.5 - parent: 1 - type: Transform - - uid: 9080 - components: - - pos: 12.5,-39.5 - parent: 1 - type: Transform - - uid: 9081 - components: - - pos: 12.5,-40.5 - parent: 1 - type: Transform - - uid: 9082 - components: - - pos: 12.5,-41.5 - parent: 1 - type: Transform - - uid: 9600 - components: - - pos: 15.5,-34.5 - parent: 1 - type: Transform - - uid: 10048 - components: - - pos: -18.5,-30.5 - parent: 1 - type: Transform - - uid: 10872 - components: - - pos: 28.5,-19.5 - parent: 1 - type: Transform - - uid: 10873 - components: - - pos: 27.5,-19.5 - parent: 1 - type: Transform - - uid: 10874 - components: - - pos: 26.5,-19.5 - parent: 1 - type: Transform - - uid: 13160 - components: - - pos: 15.5,24.5 - parent: 1 - type: Transform - - uid: 13163 - components: - - pos: 16.5,24.5 - parent: 1 - type: Transform - - uid: 13164 - components: - - pos: 14.5,24.5 - parent: 1 - type: Transform - - uid: 13175 - components: - - pos: -25.5,-2.5 - parent: 1 - type: Transform - - uid: 13176 - components: - - pos: -24.5,-2.5 - parent: 1 - type: Transform - - uid: 13177 - components: - - pos: -23.5,-2.5 - parent: 1 - type: Transform - - uid: 13202 - components: - - pos: -26.5,-16.5 - parent: 1 - type: Transform - - uid: 13203 - components: - - pos: -25.5,-16.5 - parent: 1 - type: Transform - - uid: 13204 - components: - - pos: -25.5,-17.5 - parent: 1 - type: Transform - - uid: 17775 - components: - - pos: -3.5,72.5 - parent: 1 - type: Transform - - uid: 17776 - components: - - pos: -3.5,73.5 - parent: 1 - type: Transform -- proto: Cautery - entities: - - uid: 8683 - components: - - pos: 20.508678,27.013725 - parent: 1 - type: Transform -- proto: Chair - entities: - - uid: 95 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,0.5 - parent: 1 - type: Transform - - uid: 232 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-0.5 - parent: 1 - type: Transform - - uid: 1938 - components: - - rot: 3.141592653589793 rad - pos: 20.5,36.5 - parent: 1 - type: Transform - - uid: 1939 - components: - - rot: 3.141592653589793 rad - pos: 19.5,36.5 - parent: 1 - type: Transform - - uid: 1940 - components: - - rot: 3.141592653589793 rad - pos: 9.5,54.5 - parent: 1 - type: Transform - - uid: 1941 - components: - - rot: 3.141592653589793 rad - pos: 12.5,54.5 - parent: 1 - type: Transform - - uid: 1942 - components: - - rot: 3.141592653589793 rad - pos: 14.5,54.5 - parent: 1 - type: Transform - - uid: 1943 - components: - - rot: 3.141592653589793 rad - pos: 13.5,54.5 - parent: 1 - type: Transform - - uid: 1944 - components: - - rot: 3.141592653589793 rad - pos: 8.5,52.5 - parent: 1 - type: Transform - - uid: 1945 - components: - - rot: 3.141592653589793 rad - pos: 7.5,52.5 - parent: 1 - type: Transform - - uid: 1946 - components: - - rot: 3.141592653589793 rad - pos: 9.5,52.5 - parent: 1 - type: Transform - - uid: 1947 - components: - - rot: 3.141592653589793 rad - pos: 7.5,53.5 - parent: 1 - type: Transform - - uid: 1948 - components: - - rot: 3.141592653589793 rad - pos: 8.5,53.5 - parent: 1 - type: Transform - - uid: 1949 - components: - - rot: 3.141592653589793 rad - pos: 9.5,53.5 - parent: 1 - type: Transform - - uid: 1950 - components: - - rot: 3.141592653589793 rad - pos: 12.5,52.5 - parent: 1 - type: Transform - - uid: 1951 - components: - - rot: 3.141592653589793 rad - pos: 13.5,52.5 - parent: 1 - type: Transform - - uid: 1952 - components: - - rot: 3.141592653589793 rad - pos: 14.5,52.5 - parent: 1 - type: Transform - - uid: 1953 - components: - - rot: 3.141592653589793 rad - pos: 12.5,53.5 - parent: 1 - type: Transform - - uid: 1954 - components: - - rot: 3.141592653589793 rad - pos: 13.5,53.5 - parent: 1 - type: Transform - - uid: 1955 - components: - - rot: 3.141592653589793 rad - pos: 14.5,53.5 - parent: 1 - type: Transform - - uid: 1956 - components: - - rot: 3.141592653589793 rad - pos: 21.5,36.5 - parent: 1 - type: Transform - - uid: 1957 - components: - - rot: 3.141592653589793 rad - pos: 8.5,54.5 - parent: 1 - type: Transform - - uid: 1958 - components: - - rot: 3.141592653589793 rad - pos: 7.5,54.5 - parent: 1 - type: Transform - - uid: 3185 - components: - - rot: 3.141592653589793 rad - pos: 43.5,49.5 - parent: 1 - type: Transform - - uid: 3186 - components: - - rot: 3.141592653589793 rad - pos: 42.5,49.5 - parent: 1 - type: Transform - - uid: 4247 - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-11.5 - parent: 1 - type: Transform - - uid: 4248 - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-9.5 - parent: 1 - type: Transform - - uid: 5641 - components: - - rot: 3.141592653589793 rad - pos: -7.5,36.5 - parent: 1 - type: Transform - - uid: 5642 - components: - - rot: 3.141592653589793 rad - pos: -6.5,36.5 - parent: 1 - type: Transform - - uid: 5643 - components: - - rot: 3.141592653589793 rad - pos: -5.5,36.5 - parent: 1 - type: Transform - - uid: 6090 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,40.5 - parent: 1 - type: Transform - - uid: 6091 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,41.5 - parent: 1 - type: Transform - - uid: 6092 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,41.5 - parent: 1 - type: Transform - - uid: 6093 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,40.5 - parent: 1 - type: Transform - - uid: 6140 - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-10.5 - parent: 1 - type: Transform - - uid: 6491 - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-12.5 - parent: 1 - type: Transform - - uid: 6899 - components: - - pos: 24.5,22.5 - parent: 1 - type: Transform - - uid: 6900 - components: - - pos: 25.5,22.5 - parent: 1 - type: Transform - - uid: 6901 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,19.5 - parent: 1 - type: Transform - - uid: 6902 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,18.5 - parent: 1 - type: Transform - - uid: 7278 - components: - - pos: 2.5,64.5 - parent: 1 - type: Transform - - uid: 7279 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,60.5 - parent: 1 - type: Transform - - uid: 7280 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,61.5 - parent: 1 - type: Transform - - uid: 8119 - components: - - rot: 3.141592653589793 rad - pos: 13.5,56.5 - parent: 1 - type: Transform - - uid: 8121 - components: - - rot: 3.141592653589793 rad - pos: 9.5,56.5 - parent: 1 - type: Transform - - uid: 8122 - components: - - rot: 3.141592653589793 rad - pos: 8.5,56.5 - parent: 1 - type: Transform - - uid: 8446 - components: - - rot: 3.141592653589793 rad - pos: 1.5,52.5 - parent: 1 - type: Transform - - uid: 8447 - components: - - rot: 3.141592653589793 rad - pos: 2.5,52.5 - parent: 1 - type: Transform - - uid: 8448 - components: - - pos: 1.5,57.5 - parent: 1 - type: Transform - - uid: 8449 - components: - - pos: 2.5,57.5 - parent: 1 - type: Transform - - uid: 8450 - components: - - rot: 3.141592653589793 rad - pos: -3.5,52.5 - parent: 1 - type: Transform - - uid: 8451 - components: - - rot: 3.141592653589793 rad - pos: -2.5,52.5 - parent: 1 - type: Transform - - uid: 8455 - components: - - pos: 10.5,70.5 - parent: 1 - type: Transform - - uid: 8456 - components: - - pos: 11.5,70.5 - parent: 1 - type: Transform - - uid: 8551 - components: - - rot: 3.141592653589793 rad - pos: 11.5,17.5 - parent: 1 - type: Transform - - uid: 8552 - components: - - rot: 3.141592653589793 rad - pos: 12.5,17.5 - parent: 1 - type: Transform - - uid: 8553 - components: - - pos: 6.5,20.5 - parent: 1 - type: Transform - - uid: 8554 - components: - - pos: 7.5,20.5 - parent: 1 - type: Transform - - uid: 8555 - components: - - pos: 8.5,20.5 - parent: 1 - type: Transform - - uid: 8556 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,19.5 - parent: 1 - type: Transform - - uid: 8557 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,18.5 - parent: 1 - type: Transform - - uid: 8558 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,17.5 - parent: 1 - type: Transform - - uid: 8582 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,29.5 - parent: 1 - type: Transform - - uid: 8583 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,26.5 - parent: 1 - type: Transform - - uid: 9442 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,4.5 - parent: 1 - type: Transform - - uid: 9443 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,7.5 - parent: 1 - type: Transform - - uid: 9467 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,5.5 - parent: 1 - type: Transform - - uid: 9468 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,6.5 - parent: 1 - type: Transform - - uid: 9493 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,28.5 - parent: 1 - type: Transform - - uid: 9494 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,27.5 - parent: 1 - type: Transform - - uid: 9507 - components: - - pos: 14.5,61.5 - parent: 1 - type: Transform - - uid: 9511 - components: - - rot: 3.141592653589793 rad - pos: 12.5,56.5 - parent: 1 - type: Transform - - uid: 9515 - components: - - rot: 3.141592653589793 rad - pos: 40.5,36.5 - parent: 1 - type: Transform - - uid: 9516 - components: - - rot: 3.141592653589793 rad - pos: 41.5,36.5 - parent: 1 - type: Transform - - uid: 9517 - components: - - pos: 44.5,38.5 - parent: 1 - type: Transform - - uid: 9518 - components: - - pos: 45.5,38.5 - parent: 1 - type: Transform - - uid: 9519 - components: - - pos: 43.5,38.5 - parent: 1 - type: Transform - - uid: 9520 - components: - - rot: 3.141592653589793 rad - pos: 43.5,39.5 - parent: 1 - type: Transform - - uid: 9521 - components: - - rot: 3.141592653589793 rad - pos: 44.5,39.5 - parent: 1 - type: Transform - - uid: 9522 - components: - - rot: 3.141592653589793 rad - pos: 45.5,39.5 - parent: 1 - type: Transform - - uid: 9526 - components: - - rot: 3.141592653589793 rad - pos: 40.5,13.5 - parent: 1 - type: Transform - - uid: 9527 - components: - - rot: 3.141592653589793 rad - pos: 41.5,13.5 - parent: 1 - type: Transform - - uid: 9528 - components: - - pos: 40.5,-7.5 - parent: 1 - type: Transform - - uid: 9529 - components: - - pos: 41.5,-7.5 - parent: 1 - type: Transform - - uid: 9530 - components: - - pos: 42.5,-7.5 - parent: 1 - type: Transform - - uid: 9531 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,8.5 - parent: 1 - type: Transform - - uid: 9532 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,7.5 - parent: 1 - type: Transform - - uid: 9533 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,0.5 - parent: 1 - type: Transform - - uid: 9534 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,1.5 - parent: 1 - type: Transform - - uid: 9537 - components: - - pos: -43.5,15.5 - parent: 1 - type: Transform - - uid: 9538 - components: - - pos: -42.5,15.5 - parent: 1 - type: Transform - - uid: 9539 - components: - - pos: -41.5,15.5 - parent: 1 - type: Transform - - uid: 9540 - components: - - pos: -25.5,38.5 - parent: 1 - type: Transform - - uid: 9541 - components: - - pos: -26.5,38.5 - parent: 1 - type: Transform - - uid: 9542 - components: - - pos: -27.5,38.5 - parent: 1 - type: Transform - - uid: 9544 - components: - - pos: -46.5,38.5 - parent: 1 - type: Transform - - uid: 9545 - components: - - pos: -45.5,38.5 - parent: 1 - type: Transform - - uid: 9546 - components: - - pos: -44.5,38.5 - parent: 1 - type: Transform - - uid: 9547 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,29.5 - parent: 1 - type: Transform - - uid: 9548 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,28.5 - parent: 1 - type: Transform - - uid: 9549 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,27.5 - parent: 1 - type: Transform - - uid: 9550 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,24.5 - parent: 1 - type: Transform - - uid: 9551 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,23.5 - parent: 1 - type: Transform - - uid: 9552 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,22.5 - parent: 1 - type: Transform - - uid: 9553 - components: - - rot: 3.141592653589793 rad - pos: 42.5,13.5 - parent: 1 - type: Transform - - uid: 9555 - components: - - pos: -24.5,-7.5 - parent: 1 - type: Transform - - uid: 9556 - components: - - pos: -23.5,-7.5 - parent: 1 - type: Transform - - uid: 9567 - components: - - rot: 3.141592653589793 rad - pos: 24.5,13.5 - parent: 1 - type: Transform - - uid: 9568 - components: - - rot: 3.141592653589793 rad - pos: 25.5,13.5 - parent: 1 - type: Transform - - uid: 9569 - components: - - rot: 3.141592653589793 rad - pos: 26.5,13.5 - parent: 1 - type: Transform - - uid: 9570 - components: - - pos: -20.5,15.5 - parent: 1 - type: Transform - - uid: 9571 - components: - - pos: -21.5,15.5 - parent: 1 - type: Transform - - uid: 9572 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,30.5 - parent: 1 - type: Transform - - uid: 9573 - components: - - pos: -22.5,15.5 - parent: 1 - type: Transform - - uid: 9574 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,29.5 - parent: 1 - type: Transform - - uid: 9575 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,28.5 - parent: 1 - type: Transform - - uid: 9576 - components: - - pos: 6.5,38.5 - parent: 1 - type: Transform - - uid: 9577 - components: - - pos: 5.5,38.5 - parent: 1 - type: Transform - - uid: 9578 - components: - - pos: 4.5,38.5 - parent: 1 - type: Transform - - uid: 9593 - components: - - pos: 14.5,15.5 - parent: 1 - type: Transform - - uid: 9594 - components: - - pos: 15.5,15.5 - parent: 1 - type: Transform - - uid: 9719 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-14.5 - parent: 1 - type: Transform - - uid: 9726 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-15.5 - parent: 1 - type: Transform - - uid: 9912 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-37.5 - parent: 1 - type: Transform - - uid: 13206 - components: - - rot: 3.141592653589793 rad - pos: -47.5,12.5 - parent: 1 - type: Transform - - uid: 13207 - components: - - rot: 3.141592653589793 rad - pos: -46.5,12.5 - parent: 1 - type: Transform - - uid: 15487 - components: - - rot: 3.141592653589793 rad - pos: 10.5,17.5 - parent: 1 - type: Transform - - uid: 16403 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-13.5 - parent: 1 - type: Transform - - uid: 16404 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-13.5 - parent: 1 - type: Transform - - uid: 16405 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-13.5 - parent: 1 - type: Transform - - uid: 16693 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,26.5 - parent: 1 - type: Transform - - uid: 16694 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,25.5 - parent: 1 - type: Transform -- proto: ChairFolding - entities: - - uid: 3167 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-13.5 - parent: 1 - type: Transform - - uid: 3254 - components: - - rot: 3.141592653589793 rad - pos: 30.5,54.5 - parent: 1 - type: Transform - - uid: 3256 - components: - - rot: 3.141592653589793 rad - pos: 34.5,54.5 - parent: 1 - type: Transform - - uid: 3263 - components: - - rot: 3.141592653589793 rad - pos: 33.5,54.5 - parent: 1 - type: Transform - - uid: 3264 - components: - - rot: 3.141592653589793 rad - pos: 28.5,46.5 - parent: 1 - type: Transform - - uid: 3274 - components: - - rot: 3.141592653589793 rad - pos: 29.5,46.5 - parent: 1 - type: Transform - - uid: 3275 - components: - - rot: 3.141592653589793 rad - pos: 28.5,45.5 - parent: 1 - type: Transform - - uid: 3276 - components: - - rot: 3.141592653589793 rad - pos: 29.5,45.5 - parent: 1 - type: Transform - - uid: 3277 - components: - - rot: 3.141592653589793 rad - pos: 28.5,44.5 - parent: 1 - type: Transform - - uid: 3278 - components: - - rot: 3.141592653589793 rad - pos: 29.5,44.5 - parent: 1 - type: Transform - - uid: 3279 - components: - - rot: 3.141592653589793 rad - pos: 32.5,46.5 - parent: 1 - type: Transform - - uid: 3280 - components: - - rot: 3.141592653589793 rad - pos: 33.5,46.5 - parent: 1 - type: Transform - - uid: 3281 - components: - - rot: 3.141592653589793 rad - pos: 32.5,45.5 - parent: 1 - type: Transform - - uid: 3282 - components: - - rot: 3.141592653589793 rad - pos: 33.5,45.5 - parent: 1 - type: Transform - - uid: 3283 - components: - - rot: 3.141592653589793 rad - pos: 32.5,44.5 - parent: 1 - type: Transform - - uid: 3284 - components: - - rot: 3.141592653589793 rad - pos: 33.5,44.5 - parent: 1 - type: Transform - - uid: 3287 - components: - - rot: 3.141592653589793 rad - pos: 31.5,54.5 - parent: 1 - type: Transform - - uid: 3944 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-12.5 - parent: 1 - type: Transform - - uid: 3947 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-11.5 - parent: 1 - type: Transform - - uid: 3948 - components: - - pos: -38.5,-10.5 - parent: 1 - type: Transform - - uid: 3949 - components: - - pos: -39.5,-10.5 - parent: 1 - type: Transform - - uid: 3950 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-12.5 - parent: 1 - type: Transform - - uid: 6550 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-22.5 - parent: 1 - type: Transform - - uid: 7421 - components: - - rot: 3.141592653589793 rad - pos: 25.5,-26.5 - parent: 1 - type: Transform - - uid: 7443 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-23.5 - parent: 1 - type: Transform - - uid: 8288 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,44.5 - parent: 1 - type: Transform - - uid: 8289 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,43.5 - parent: 1 - type: Transform - - uid: 8290 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,44.5 - parent: 1 - type: Transform - - uid: 8291 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,43.5 - parent: 1 - type: Transform - - uid: 9089 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-34.5 - parent: 1 - type: Transform - - uid: 9915 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-36.5 - parent: 1 - type: Transform - - uid: 9931 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-30.5 - parent: 1 - type: Transform - - uid: 9959 - components: - - pos: -23.5,-21.5 - parent: 1 - type: Transform - - uid: 9960 - components: - - pos: -23.5,-22.5 - parent: 1 - type: Transform - - uid: 9961 - components: - - pos: -21.5,-21.5 - parent: 1 - type: Transform - - uid: 9962 - components: - - pos: -21.5,-22.5 - parent: 1 - type: Transform - - uid: 9963 - components: - - pos: -24.5,-22.5 - parent: 1 - type: Transform - - uid: 9964 - components: - - pos: -20.5,-22.5 - parent: 1 - type: Transform - - uid: 9972 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-23.5 - parent: 1 - type: Transform - - uid: 10068 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-17.5 - parent: 1 - type: Transform - - uid: 10070 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-17.5 - parent: 1 - type: Transform - - uid: 10135 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-19.5 - parent: 1 - type: Transform - - uid: 11054 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,0.5 - parent: 1 - type: Transform - - uid: 13169 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,26.5 - parent: 1 - type: Transform - - uid: 13311 - components: - - pos: -27.5,3.5 - parent: 1 - type: Transform - - uid: 13359 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,33.5 - parent: 1 - type: Transform - - uid: 13389 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,31.5 - parent: 1 - type: Transform - - uid: 13398 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,44.5 - parent: 1 - type: Transform - - uid: 13399 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,42.5 - parent: 1 - type: Transform - - uid: 13426 - components: - - pos: -24.5,58.5 - parent: 1 - type: Transform - - uid: 13427 - components: - - pos: -22.5,58.5 - parent: 1 - type: Transform - - uid: 13455 - components: - - pos: -46.5,47.5 - parent: 1 - type: Transform - - uid: 13459 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,47.5 - parent: 1 - type: Transform - - uid: 14004 - components: - - pos: 17.5,64.5 - parent: 1 - type: Transform - - uid: 14021 - components: - - pos: 19.5,50.5 - parent: 1 - type: Transform - - uid: 14023 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,58.5 - parent: 1 - type: Transform - - uid: 14024 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,58.5 - parent: 1 - type: Transform -- proto: ChairOfficeDark - entities: - - uid: 4150 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-1.5 - parent: 1 - type: Transform - - uid: 6665 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-2.5 - parent: 1 - type: Transform - - uid: 6668 - components: - - rot: 3.141592653589793 rad - pos: -27.5,6.5 - parent: 1 - type: Transform - - uid: 7281 - components: - - rot: 3.141592653589793 rad - pos: 2.5,60.5 - parent: 1 - type: Transform - - uid: 7282 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,63.5 - parent: 1 - type: Transform - - uid: 7932 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,25.5 - parent: 1 - type: Transform - - uid: 8133 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,53.5 - parent: 1 - type: Transform - - uid: 8134 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,54.5 - parent: 1 - type: Transform - - uid: 8343 - components: - - pos: -15.5,59.5 - parent: 1 - type: Transform - - uid: 8363 - components: - - pos: 42.5,51.5 - parent: 1 - type: Transform - - uid: 8662 - components: - - pos: -17.5,18.5 - parent: 1 - type: Transform - - uid: 8663 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,29.5 - parent: 1 - type: Transform - - uid: 9104 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-24.5 - parent: 1 - type: Transform - - uid: 9210 - components: - - rot: 3.141592653589793 rad - pos: -7.5,73.5 - parent: 1 - type: Transform - - uid: 9416 - components: - - rot: 3.141592653589793 rad - pos: 29.5,-11.5 - parent: 1 - type: Transform - - uid: 9417 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-11.5 - parent: 1 - type: Transform - - uid: 10928 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-19.5 - parent: 1 - type: Transform - - uid: 11073 - components: - - rot: 3.141592653589793 rad - pos: 18.5,3.5 - parent: 1 - type: Transform - - uid: 13165 - components: - - rot: 3.141592653589793 rad - pos: 15.5,24.5 - parent: 1 - type: Transform - - uid: 13205 - components: - - pos: -25.5,-17.5 - parent: 1 - type: Transform - - uid: 14071 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,53.5 - parent: 1 - type: Transform - - uid: 17586 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,17.5 - parent: 1 - type: Transform - - uid: 17587 - components: - - rot: 3.141592653589793 rad - pos: -35.5,11.5 - parent: 1 - type: Transform - - uid: 18344 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,20.5 - parent: 1 - type: Transform - - uid: 18433 - components: - - pos: 44.5,42.5 - parent: 1 - type: Transform - - uid: 18436 - components: - - pos: 43.5,42.5 - parent: 1 - type: Transform -- proto: ChairOfficeLight - entities: - - uid: 3759 - components: - - pos: 25.5,3.5 - parent: 1 - type: Transform - - uid: 6652 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,7.5 - parent: 1 - type: Transform - - uid: 6664 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-0.5 - parent: 1 - type: Transform - - uid: 7387 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,52.5 - parent: 1 - type: Transform - - uid: 7388 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,55.5 - parent: 1 - type: Transform - - uid: 7389 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,49.5 - parent: 1 - type: Transform - - uid: 8483 - components: - - pos: 15.5,33.5 - parent: 1 - type: Transform - - uid: 8541 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,21.5 - parent: 1 - type: Transform - - uid: 8542 - components: - - pos: 4.5,21.5 - parent: 1 - type: Transform - - uid: 8543 - components: - - rot: 3.141592653589793 rad - pos: 8.5,23.5 - parent: 1 - type: Transform - - uid: 8544 - components: - - pos: 10.5,20.5 - parent: 1 - type: Transform - - uid: 8546 - components: - - pos: 12.5,20.5 - parent: 1 - type: Transform - - uid: 8659 - components: - - pos: -4.5,21.5 - parent: 1 - type: Transform - - uid: 8660 - components: - - pos: -5.5,21.5 - parent: 1 - type: Transform - - uid: 8661 - components: - - pos: -17.5,31.5 - parent: 1 - type: Transform - - uid: 8722 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-12.5 - parent: 1 - type: Transform - - uid: 8723 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-13.5 - parent: 1 - type: Transform - - uid: 9174 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-12.5 - parent: 1 - type: Transform - - uid: 9175 - components: - - pos: 8.5,-14.5 - parent: 1 - type: Transform - - uid: 9176 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-12.5 - parent: 1 - type: Transform - - uid: 9487 - components: - - pos: 3.5,28.5 - parent: 1 - type: Transform - - uid: 9579 - components: - - rot: 3.141592653589793 rad - pos: 2.5,33.5 - parent: 1 - type: Transform - - uid: 9607 - components: - - rot: 3.141592653589793 rad - pos: 6.5,33.5 - parent: 1 - type: Transform - - uid: 9914 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-36.5 - parent: 1 - type: Transform - - uid: 17590 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,34.5 - parent: 1 - type: Transform -- proto: ChairPilotSeat - entities: - - uid: 4306 - components: - - rot: 3.141592653589793 rad - pos: -2.5,79.5 - parent: 1 - type: Transform - - uid: 4307 - components: - - rot: 3.141592653589793 rad - pos: 1.5,79.5 - parent: 1 - type: Transform - - uid: 4308 - components: - - rot: 3.141592653589793 rad - pos: -2.5,82.5 - parent: 1 - type: Transform - - uid: 4309 - components: - - rot: 3.141592653589793 rad - pos: 1.5,82.5 - parent: 1 - type: Transform - - uid: 4310 - components: - - rot: 3.141592653589793 rad - pos: -5.5,81.5 - parent: 1 - type: Transform - - uid: 4311 - components: - - rot: 3.141592653589793 rad - pos: 4.5,81.5 - parent: 1 - type: Transform - - uid: 4312 - components: - - rot: 3.141592653589793 rad - pos: -1.5,82.5 - parent: 1 - type: Transform - - uid: 4313 - components: - - rot: 3.141592653589793 rad - pos: 0.5,82.5 - parent: 1 - type: Transform - - uid: 8123 - components: - - pos: 10.5,60.5 - parent: 1 - type: Transform - - uid: 8124 - components: - - pos: 11.5,60.5 - parent: 1 - type: Transform - - uid: 8857 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-3.5 - parent: 8756 - type: Transform - - uid: 8858 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 8756 - type: Transform - - uid: 8859 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-3.5 - parent: 8756 - type: Transform - - uid: 8860 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 8756 - type: Transform - - uid: 8885 - components: - - pos: -0.5,-3.5 - parent: 8756 - type: Transform - - uid: 8895 - components: - - rot: 3.141592653589793 rad - pos: -0.5,2.5 - parent: 8756 - type: Transform -- proto: ChairWood - entities: - - uid: 4059 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,6.5 - parent: 1 - type: Transform - - uid: 4064 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,6.5 - parent: 1 - type: Transform - - uid: 4065 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,7.5 - parent: 1 - type: Transform - - uid: 7029 - components: - - rot: 3.141592653589793 rad - pos: -25.5,2.5 - parent: 1 - type: Transform - - uid: 7345 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,47.5 - parent: 1 - type: Transform - - uid: 7346 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,49.5 - parent: 1 - type: Transform - - uid: 8254 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,7.5 - parent: 1 - type: Transform - - uid: 8916 - components: - - pos: -11.5,3.5 - parent: 1 - type: Transform - - uid: 8917 - components: - - pos: -10.5,3.5 - parent: 1 - type: Transform - - uid: 8918 - components: - - rot: 3.141592653589793 rad - pos: -11.5,1.5 - parent: 1 - type: Transform - - uid: 8919 - components: - - rot: 3.141592653589793 rad - pos: -10.5,1.5 - parent: 1 - type: Transform - - uid: 8924 - components: - - rot: 3.141592653589793 rad - pos: -5.5,1.5 - parent: 1 - type: Transform - - uid: 8925 - components: - - rot: 3.141592653589793 rad - pos: -4.5,1.5 - parent: 1 - type: Transform - - uid: 8927 - components: - - rot: 3.141592653589793 rad - pos: 3.5,7.5 - parent: 1 - type: Transform - - uid: 8928 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,9.5 - parent: 1 - type: Transform - - uid: 8929 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,8.5 - parent: 1 - type: Transform - - uid: 8930 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,4.5 - parent: 1 - type: Transform - - uid: 8931 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,3.5 - parent: 1 - type: Transform - - uid: 8932 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-0.5 - parent: 1 - type: Transform - - uid: 8934 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-5.5 - parent: 1 - type: Transform - - uid: 8935 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-1.5 - parent: 1 - type: Transform - - uid: 8936 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-5.5 - parent: 1 - type: Transform - - uid: 8937 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 1 - type: Transform - - uid: 8938 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-0.5 - parent: 1 - type: Transform - - uid: 8939 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,3.5 - parent: 1 - type: Transform - - uid: 8940 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,4.5 - parent: 1 - type: Transform - - uid: 8941 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,8.5 - parent: 1 - type: Transform - - uid: 8942 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,9.5 - parent: 1 - type: Transform - - uid: 8943 - components: - - pos: 3.5,9.5 - parent: 1 - type: Transform - - uid: 8947 - components: - - pos: -11.5,-2.5 - parent: 1 - type: Transform - - uid: 8948 - components: - - pos: -12.5,-2.5 - parent: 1 - type: Transform - - uid: 8949 - components: - - pos: -5.5,3.5 - parent: 1 - type: Transform - - uid: 8950 - components: - - pos: -4.5,3.5 - parent: 1 - type: Transform - - uid: 8951 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-4.5 - parent: 1 - type: Transform - - uid: 8952 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-4.5 - parent: 1 - type: Transform - - uid: 9282 - components: - - rot: 3.141592653589793 rad - pos: 24.5,10.5 - parent: 1 - type: Transform - - uid: 9341 - components: - - pos: -42.5,8.5 - parent: 1 - type: Transform - - uid: 9870 - components: - - pos: -35.5,-20.5 - parent: 1 - type: Transform - - uid: 10939 - components: - - pos: 35.5,-20.5 - parent: 1 - type: Transform - - uid: 13471 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,64.5 - parent: 1 - type: Transform - - uid: 13476 - components: - - pos: -12.5,65.5 - parent: 1 - type: Transform - - uid: 18099 - components: - - rot: 3.141592653589793 rad - pos: -29.5,55.5 - parent: 1 - type: Transform - - uid: 18100 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,52.5 - parent: 1 - type: Transform - - uid: 18419 - components: - - pos: -29.5,57.5 - parent: 1 - type: Transform -- proto: CheapLighter - entities: - - uid: 8106 - components: - - pos: 6.550927,72.406364 - parent: 1 - type: Transform - - uid: 8460 - components: - - pos: 12.457194,70.49379 - parent: 1 - type: Transform - - uid: 11057 - components: - - pos: 17.68046,-0.38290828 - parent: 1 - type: Transform - - uid: 13334 - components: - - pos: -12.437875,10.642552 - parent: 1 - type: Transform - - uid: 17384 - components: - - pos: -49.49224,16.547865 - parent: 1 - type: Transform - - uid: 18325 - components: - - pos: -0.54356754,-5.4461226 - parent: 1 - type: Transform -- proto: CheapRollerBed - entities: - - uid: 9614 - components: - - pos: 9.536522,32.44094 - parent: 1 - type: Transform - - uid: 13335 - components: - - pos: 14.5,17.5 - parent: 1 - type: Transform - - uid: 13336 - components: - - pos: 15.5,17.5 - parent: 1 - type: Transform - - uid: 13337 - components: - - pos: 8.5,17.5 - parent: 1 - type: Transform - - uid: 13338 - components: - - pos: 7.5,17.5 - parent: 1 - type: Transform -- proto: chem_master - entities: - - uid: 4046 - components: - - pos: 2.5,21.5 - parent: 1 - type: Transform - - uid: 4047 - components: - - pos: 8.5,24.5 - parent: 1 - type: Transform -- proto: ChemBag - entities: - - uid: 8477 - components: - - pos: 2.3789887,23.736757 - parent: 1 - type: Transform -- proto: ChemDispenser - entities: - - uid: 4050 - components: - - pos: 2.5,22.5 - parent: 1 - type: Transform - - uid: 4051 - components: - - pos: 7.5,24.5 - parent: 1 - type: Transform -- proto: ChemistryHotplate - entities: - - uid: 4052 - components: - - pos: 5.5,22.5 - parent: 1 - type: Transform -- proto: ChessBoard - entities: - - uid: 10071 - components: - - rot: 1.5707963267948966 rad - pos: -32.55108,-17.47344 - parent: 1 - type: Transform - - uid: 17380 - components: - - pos: -47.624664,35.52521 - parent: 1 - type: Transform -- proto: ChurchOrganInstrument - entities: - - uid: 8375 - components: - - rot: 3.141592653589793 rad - pos: 34.5,49.5 - parent: 1 - type: Transform -- proto: Cigar - entities: - - uid: 9954 - components: - - pos: -38.443047,-11.989926 - parent: 1 - type: Transform - - uid: 9955 - components: - - pos: -38.443047,-11.989926 - parent: 1 - type: Transform - - uid: 13401 - components: - - pos: -23.455694,43.57468 - parent: 1 - type: Transform -- proto: CigaretteSpent - entities: - - uid: 9935 - components: - - pos: -22.582382,-29.382385 - parent: 1 - type: Transform - - uid: 9936 - components: - - pos: -22.454592,-29.29724 - parent: 1 - type: Transform - - uid: 18326 - components: - - pos: -0.79409397,-5.3871837 - parent: 1 - type: Transform - - uid: 18327 - components: - - pos: -0.83830374,-5.2693057 - parent: 1 - type: Transform -- proto: CigarGold - entities: - - uid: 8103 - components: - - pos: 4.563099,71.78196 - parent: 1 - type: Transform - - uid: 8459 - components: - - pos: 12.343604,70.664085 - parent: 1 - type: Transform - - uid: 17382 - components: - - pos: -49.609077,16.675528 - parent: 1 - type: Transform -- proto: CigarGoldCase - entities: - - uid: 7257 - components: - - pos: 4.630952,48.731987 - parent: 1 - type: Transform -- proto: CigarSpent - entities: - - uid: 13402 - components: - - pos: -23.228514,43.489532 - parent: 1 - type: Transform -- proto: CigCartonBlack - entities: - - uid: 13332 - components: - - pos: -12.518449,10.410398 - parent: 1 - type: Transform -- proto: CigPackGreen - entities: - - uid: 18324 - components: - - pos: -0.35198832,-5.3871837 - parent: 1 - type: Transform -- proto: CigPackRed - entities: - - uid: 11056 - components: - - pos: 17.282892,-0.41129082 - parent: 1 - type: Transform -- proto: CircuitImprinter - entities: - - uid: 3551 - components: - - pos: -5.5,24.5 - parent: 1 - type: Transform -- proto: CircuitImprinterMachineCircuitboard - entities: - - uid: 4207 - components: - - pos: 18.52377,-24.42035 - parent: 1 - type: Transform -- proto: CloningPodMachineCircuitboard - entities: - - uid: 6384 - components: - - pos: 16.560993,33.373604 - parent: 1 - type: Transform -- proto: ClosetBase - entities: - - uid: 9867 - components: - - pos: -34.5,-21.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: ClosetBombFilled - entities: - - uid: 8170 - components: - - pos: -5.2650685,56.347507 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.4919806 - - 13.136498 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 8178 - components: - - pos: -15.5,40.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 4272 - components: - - pos: -8.5,77.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 7676 - components: - - pos: -27.5,-24.5 - parent: 1 - type: Transform - - uid: 8417 - components: - - pos: -47.5,44.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 8462 - components: - - pos: 12.5,66.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 8664 - components: - - pos: -20.5,17.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 8741 - components: - - pos: -14.5,-39.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 9387 - components: - - pos: 48.5,-6.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 9458 - components: - - pos: 47.5,44.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 9460 - components: - - pos: 49.5,12.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 9465 - components: - - pos: -50.5,12.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 9471 - components: - - pos: -30.5,18.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 9473 - components: - - pos: 29.5,-1.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 9558 - components: - - pos: -30.5,-9.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 9893 - components: - - pos: 9.5,64.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 9980 - components: - - pos: -15.5,-22.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10061 - components: - - pos: -34.5,-11.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10078 - components: - - pos: -28.5,-11.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10086 - components: - - pos: -15.5,-34.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10118 - components: - - pos: 18.5,-30.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10129 - components: - - pos: 33.5,-12.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10131 - components: - - pos: 26.5,-16.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 11049 - components: - - pos: 15.5,0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 11065 - components: - - pos: 17.5,10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13154 - components: - - pos: 18.5,18.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13167 - components: - - pos: 25.5,28.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13308 - components: - - pos: -28.5,0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13323 - components: - - pos: -16.5,10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13350 - components: - - pos: -34.5,19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13356 - components: - - pos: -35.5,34.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13370 - components: - - pos: -28.5,18.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13387 - components: - - pos: -24.5,33.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13396 - components: - - pos: -23.5,41.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13410 - components: - - pos: -19.5,56.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13449 - components: - - pos: -42.5,46.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13467 - components: - - pos: -5.5,69.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 14012 - components: - - pos: 3.5,40.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 14018 - components: - - pos: 20.5,47.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 14041 - components: - - pos: 27.5,41.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 14054 - components: - - pos: 33.5,52.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: ClosetFireFilled - entities: - - uid: 4392 - components: - - pos: 17.5,-30.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 7015 - components: - - pos: 20.5,46.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 7681 - components: - - pos: -28.5,-24.5 - parent: 1 - type: Transform - - uid: 8060 - components: - - pos: 7.5,76.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 8416 - components: - - pos: -46.5,44.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 8463 - components: - - pos: 11.5,66.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 8586 - components: - - pos: -9.5,19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 8742 - components: - - pos: -14.5,-40.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 9457 - components: - - pos: 46.5,44.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 9461 - components: - - pos: 48.5,12.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 9462 - components: - - pos: 49.5,-6.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 9466 - components: - - pos: -49.5,12.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 9470 - components: - - pos: -30.5,19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 9472 - components: - - pos: 29.5,-2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 9894 - components: - - pos: 8.5,64.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 9981 - components: - - pos: -15.5,-21.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10060 - components: - - pos: -34.5,-10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10079 - components: - - pos: -28.5,-12.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10085 - components: - - pos: -15.5,-35.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10130 - components: - - pos: 27.5,-16.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 11050 - components: - - pos: 15.5,-0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 11064 - components: - - pos: 17.5,11.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13155 - components: - - pos: 18.5,17.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13166 - components: - - pos: 25.5,29.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13309 - components: - - pos: -28.5,-0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13324 - components: - - pos: -16.5,9.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13351 - components: - - pos: -34.5,18.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13357 - components: - - pos: -36.5,34.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13369 - components: - - pos: -28.5,17.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13386 - components: - - pos: -24.5,34.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13395 - components: - - pos: -23.5,40.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13409 - components: - - pos: -19.5,55.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13448 - components: - - pos: -42.5,45.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13466 - components: - - pos: -5.5,70.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 14011 - components: - - pos: 2.5,40.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 14032 - components: - - pos: 27.5,40.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 14055 - components: - - pos: 34.5,52.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: ClosetJanitorFilled - entities: - - uid: 9261 - components: - - pos: 20.5,-2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: ClosetL3JanitorFilled - entities: - - uid: 9260 - components: - - pos: 21.5,-2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: ClosetL3ScienceFilled - entities: - - uid: 6596 - components: - - pos: -8.5,19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 6597 - components: - - pos: -15.5,28.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: ClosetL3SecurityFilled - entities: - - uid: 8179 - components: - - pos: -16.5,40.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: ClosetL3VirologyFilled - entities: - - uid: 3722 - components: - - pos: 14.5,29.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: ClosetLegalFilled - entities: - - uid: 9295 - components: - - pos: 7.5,61.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: ClosetMaintenanceFilledRandom - entities: - - uid: 7675 - components: - - pos: -26.5,-24.5 - parent: 1 - type: Transform - - uid: 9898 - components: - - pos: 4.5,40.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 9979 - components: - - pos: -15.5,-23.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10062 - components: - - pos: -34.5,-12.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10119 - components: - - pos: 19.5,-30.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10128 - components: - - pos: 34.5,-12.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10132 - components: - - pos: 25.5,-16.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 11047 - components: - - pos: 15.5,1.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 11067 - components: - - pos: 17.5,9.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13153 - components: - - pos: 18.5,19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13168 - components: - - pos: 25.5,27.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13310 - components: - - pos: -28.5,-1.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13320 - components: - - pos: -20.5,5.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13322 - components: - - pos: -16.5,11.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13349 - components: - - pos: -34.5,20.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13355 - components: - - pos: -34.5,34.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13371 - components: - - pos: -28.5,19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13388 - components: - - pos: -24.5,32.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13408 - components: - - pos: -22.5,54.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13423 - components: - - pos: -25.5,58.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13447 - components: - - pos: -44.5,46.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13468 - components: - - pos: -5.5,68.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13478 - components: - - pos: -12.5,63.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13999 - components: - - pos: 10.5,64.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 14019 - components: - - pos: 20.5,48.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 14056 - components: - - pos: 35.5,52.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: ClosetRadiationSuitFilled - entities: - - uid: 6598 - components: - - pos: -15.5,27.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 6599 - components: - - pos: -7.5,19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 7156 - components: - - pos: 11.5,-40.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10127 - components: - - pos: 28.5,-16.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: ClosetToolFilled - entities: - - uid: 7155 - components: - - pos: 11.5,-39.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 8743 - components: - - pos: -14.5,-41.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10126 - components: - - pos: 25.5,-22.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10930 - components: - - pos: 28.5,-20.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 11071 - components: - - pos: 17.5,2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13372 - components: - - pos: -28.5,21.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13424 - components: - - pos: -21.5,58.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: ClosetWallEmergencyFilledRandom - entities: - - uid: 8896 - components: - - pos: -2.5,-2.5 - parent: 8756 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 2.747938 - - 10.337481 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 8897 - components: - - pos: 1.5,-2.5 - parent: 8756 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 2.747938 - - 10.337481 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: ClothingBackpackClown - entities: - - uid: 6611 - components: - - pos: -16.569172,-0.39851928 - parent: 1 - type: Transform -- proto: ClothingBackpackDuffelSurgeryFilled - entities: - - uid: 6600 - components: - - pos: -21.460129,34.673306 - parent: 1 - type: Transform - - uid: 8677 - components: - - pos: 20.475561,28.574747 - parent: 1 - type: Transform -- proto: ClothingBackpackMerc - entities: - - uid: 6921 - components: - - pos: -42.38712,-12.466305 - parent: 1 - type: Transform -- proto: ClothingBackpackSatchelLeather - entities: - - uid: 18320 - components: - - pos: 40.47693,-7.527403 - parent: 1 - type: Transform - - uid: 18321 - components: - - pos: -33.544666,54.621593 - parent: 1 - type: Transform -- proto: ClothingBeltChampion - entities: - - uid: 7259 - components: - - pos: 4.51736,45.55318 - parent: 1 - type: Transform -- proto: ClothingBeltHolster - entities: - - uid: 9333 - components: - - pos: -43.116463,7.68436 - parent: 1 - type: Transform - - uid: 17749 - components: - - pos: -15.469988,66.40932 - parent: 1 - type: Transform -- proto: ClothingBeltMercWebbing - entities: - - uid: 7776 - components: - - pos: -39.31486,-19.325691 - parent: 1 - type: Transform -- proto: ClothingBeltPlant - entities: - - uid: 4242 - components: - - pos: 15.602159,8.388835 - parent: 1 - type: Transform -- proto: ClothingBeltUtilityFilled - entities: - - uid: 4702 - components: - - pos: -17.489521,17.578913 - parent: 1 - type: Transform - - uid: 9114 - components: - - pos: 10.45504,-18.357496 - parent: 1 - type: Transform - - uid: 18097 - components: - - pos: -32.452248,55.430744 - parent: 1 - type: Transform -- proto: ClothingEyesGlasses - entities: - - uid: 6669 - components: - - pos: -26.470171,6.9534106 - parent: 1 - type: Transform - - uid: 8081 - components: - - pos: -0.46738756,83.39493 - parent: 1 - type: Transform - - uid: 8129 - components: - - pos: 10.319884,59.595665 - parent: 1 - type: Transform - - uid: 8492 - components: - - pos: 15.420103,32.434727 - parent: 1 - type: Transform - - uid: 8561 - components: - - pos: 10.355046,19.611628 - parent: 1 - type: Transform - - uid: 9271 - components: - - pos: 24.589664,11.557829 - parent: 1 - type: Transform -- proto: ClothingEyesGlassesMercenary - entities: - - uid: 7806 - components: - - pos: -0.6837692,2.6104674 - parent: 8756 - type: Transform -- proto: ClothingEyesGlassesMeson - entities: - - uid: 8082 - components: - - pos: -7.367997,79.81877 - parent: 1 - type: Transform - - uid: 9189 - components: - - pos: 9.406997,-15.281609 - parent: 1 - type: Transform -- proto: ClothingEyesGlassesSecurity - entities: - - uid: 8247 - components: - - pos: -12.668796,47.542213 - parent: 1 - type: Transform -- proto: ClothingEyesHudMedical - entities: - - uid: 8560 - components: - - pos: 13.322592,19.569056 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesBoxingBlue - entities: - - uid: 18101 - components: - - pos: -29.678068,53.78091 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesBoxingGreen - entities: - - uid: 18102 - components: - - pos: -29.522928,53.4829 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesColorYellow - entities: - - uid: 8700 - components: - - pos: -13.44191,-34.247616 - parent: 1 - type: Transform - - uid: 9093 - components: - - pos: 7.4150662,-11.358664 - parent: 1 - type: Transform - - uid: 9239 - components: - - pos: -21.620941,-13.378785 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesLatex - entities: - - uid: 7464 - components: - - pos: 18.631903,31.596643 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesLeather - entities: - - uid: 4235 - components: - - pos: 15.58796,8.644276 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesPowerglove - entities: - - uid: 18476 - components: - - pos: 22.441998,-12.412416 - parent: 1 - type: Transform -- proto: ClothingHeadHatBunny - entities: - - uid: 10095 - components: - - pos: -13.595756,-19.311182 - parent: 1 - type: Transform -- proto: ClothingHeadHatChef - entities: - - uid: 18450 - components: - - pos: 8.40042,-2.435669 - parent: 1 - type: Transform -- proto: ClothingHeadHatFedoraBrown - entities: - - uid: 10938 - components: - - pos: 33.51424,-17.677885 - parent: 1 - type: Transform -- proto: ClothingHeadHatFedoraGrey - entities: - - uid: 18348 - components: - - pos: -46.5004,47.295025 - parent: 1 - type: Transform -- proto: ClothingHeadHatFez - entities: - - uid: 11078 - components: - - pos: 20.427416,11.411529 - parent: 1 - type: Transform -- proto: ClothingHeadHatHairflower - entities: - - uid: 7260 - components: - - pos: 4.375372,45.69509 - parent: 1 - type: Transform -- proto: ClothingHeadHatHoodCulthood - entities: - - uid: 9864 - components: - - pos: -37.818073,-17.247238 - parent: 1 - type: Transform -- proto: ClothingHeadHatHoodGoliathCloak - entities: - - uid: 17735 - components: - - pos: 7.560631,48.036102 - parent: 1 - type: Transform -- proto: ClothingHeadHatJesterAlt - entities: - - uid: 18417 - components: - - pos: -28.410465,52.86911 - parent: 1 - type: Transform -- proto: ClothingHeadHatMimesoftFlipped - entities: - - uid: 6617 - components: - - pos: -15.675494,5.6185107 - parent: 1 - type: Transform -- proto: ClothingHeadHatOutlawHat - entities: - - uid: 17760 - components: - - pos: -18.557217,-21.471539 - parent: 1 - type: Transform -- proto: ClothingHeadHatParamedicsoftFlipped - entities: - - uid: 6184 - components: - - pos: 10.540607,19.673868 - parent: 1 - type: Transform -- proto: ClothingHeadHatPumpkin - entities: - - uid: 4237 - components: - - pos: 15.36078,8.743613 - parent: 1 - type: Transform -- proto: ClothingHeadHatPwig - entities: - - uid: 8130 - components: - - pos: 11.512583,59.624046 - parent: 1 - type: Transform -- proto: ClothingHeadHatQMsoftFlipped - entities: - - uid: 9331 - components: - - pos: -42.387295,7.580193 - parent: 1 - type: Transform -- proto: ClothingHeadHatSurgcapBlue - entities: - - uid: 8674 - components: - - pos: 16.454456,27.694899 - parent: 1 - type: Transform -- proto: ClothingHeadHatSurgcapGreen - entities: - - uid: 8676 - components: - - pos: 16.568047,27.510414 - parent: 1 - type: Transform -- proto: ClothingHeadHatSurgcapPurple - entities: - - uid: 8675 - components: - - pos: 20.515308,26.531229 - parent: 1 - type: Transform -- proto: ClothingHeadHatWelding - entities: - - uid: 8347 - components: - - pos: -28.660612,29.63867 - parent: 1 - type: Transform -- proto: ClothingHeadHatWeldingMaskPainted - entities: - - uid: 9886 - components: - - pos: -28.362438,31.526087 - parent: 1 - type: Transform -- proto: ClothingHeadHatXmasCrown - entities: - - uid: 611 - components: - - pos: 8.417196,2.4837458 - parent: 1 - type: Transform - - uid: 613 - components: - - pos: 8.589071,2.3899958 - parent: 1 - type: Transform -- proto: ClothingHeadHelmetRiot - entities: - - uid: 4057 - components: - - pos: -19.491697,40.80205 - parent: 1 - type: Transform - - uid: 7799 - components: - - pos: -19.335447,40.598927 - parent: 1 - type: Transform -- proto: ClothingHeadHelmetSyndicate - entities: - - uid: 13306 - components: - - pos: -21.718893,-0.28347415 - parent: 1 - type: Transform -- proto: ClothingHeadNurseHat - entities: - - uid: 17759 - components: - - pos: 13.17942,19.795881 - parent: 1 - type: Transform -- proto: ClothingHeadPyjamaSyndicatePink - entities: - - uid: 8399 - components: - - pos: 18.72468,47.52865 - parent: 1 - type: Transform -- proto: ClothingMaskGas - entities: - - uid: 7157 - components: - - pos: 11.357593,-37.31936 - parent: 1 - type: Transform - - uid: 7158 - components: - - pos: 11.641568,-37.518036 - parent: 1 - type: Transform - - uid: 9094 - components: - - pos: 7.6234,-11.483664 - parent: 1 - type: Transform - - uid: 9969 - components: - - pos: -20.622124,-24.324959 - parent: 1 - type: Transform -- proto: ClothingMaskGasAtmos - entities: - - uid: 8744 - components: - - pos: -12.37689,-41.391964 - parent: 1 - type: Transform -- proto: ClothingNeckAromanticPin - entities: - - uid: 17713 - components: - - pos: 43.669888,38.451065 - parent: 1 - type: Transform -- proto: ClothingNeckAsexualPin - entities: - - uid: 17714 - components: - - pos: 1.4304651,57.357273 - parent: 1 - type: Transform -- proto: ClothingNeckBisexualPin - entities: - - uid: 17715 - components: - - pos: -44.6231,38.434673 - parent: 1 - type: Transform -- proto: ClothingNeckCloakGoliathCloak - entities: - - uid: 17734 - components: - - pos: 7.523013,47.61037 - parent: 1 - type: Transform -- proto: ClothingNeckCloakHerald - entities: - - uid: 17736 - components: - - pos: 50.46923,40.362823 - parent: 1 - type: Transform -- proto: ClothingNeckCloakMiner - entities: - - uid: 17653 - components: - - pos: -44.542686,34.539337 - parent: 1 - type: Transform -- proto: ClothingNeckIntersexPin - entities: - - uid: 4027 - components: - - pos: -0.6386776,-0.42031726 - parent: 1 - type: Transform -- proto: ClothingNeckLesbianPin - entities: - - uid: 17717 - components: - - pos: -16.415733,-15.699648 - parent: 1 - type: Transform -- proto: ClothingNeckLGBTPin - entities: - - uid: 17712 - components: - - pos: 14.597307,15.443957 - parent: 1 - type: Transform -- proto: ClothingNeckMantleCap - entities: - - uid: 18130 - components: - - pos: -5.496665,72.46058 - parent: 1 - type: Transform -- proto: ClothingNeckMantleCMO - entities: - - uid: 18131 - components: - - pos: 14.511182,34.456318 - parent: 1 - type: Transform -- proto: ClothingNeckMantleHOP - entities: - - uid: 9272 - components: - - pos: 23.735497,11.474496 - parent: 1 - type: Transform -- proto: ClothingNeckMantleHOS - entities: - - uid: 6828 - components: - - pos: -13.651763,60.464382 - parent: 1 - type: Transform -- proto: ClothingNeckMantleRD - entities: - - uid: 18129 - components: - - pos: -23.627796,20.473478 - parent: 1 - type: Transform -- proto: ClothingNeckNonBinaryPin - entities: - - uid: 17718 - components: - - pos: 27.622953,-1.5417068 - parent: 1 - type: Transform -- proto: ClothingNeckPansexualPin - entities: - - uid: 17719 - components: - - pos: 21.441319,19.536022 - parent: 1 - type: Transform -- proto: ClothingNeckStethoscope - entities: - - uid: 8491 - components: - - pos: 16.445831,32.692505 - parent: 1 - type: Transform - - uid: 8528 - components: - - pos: 12.562419,22.599804 - parent: 1 - type: Transform - - uid: 8559 - components: - - pos: 9.630908,19.547152 - parent: 1 - type: Transform - - uid: 9606 - components: - - pos: 3.3985047,31.605078 - parent: 1 - type: Transform -- proto: ClothingNeckTieRed - entities: - - uid: 10936 - components: - - pos: 33.429047,-17.73465 - parent: 1 - type: Transform -- proto: ClothingNeckTransPin - entities: - - uid: 17720 - components: - - pos: 19.415567,41.43221 - parent: 1 - type: Transform - - uid: 17721 - components: - - pos: -4.304539,54.705074 - parent: 1 - type: Transform -- proto: ClothingOuterApronBotanist - entities: - - uid: 4243 - components: - - pos: 5.6728125,7.328458 - parent: 1 - type: Transform -- proto: ClothingOuterArmorRiot - entities: - - uid: 4127 - components: - - pos: -19.444822,40.4583 - parent: 1 - type: Transform - - uid: 7714 - components: - - pos: -19.632322,40.661427 - parent: 1 - type: Transform -- proto: ClothingOuterCoatInspector - entities: - - uid: 10937 - components: - - pos: 33.429047,-17.59274 - parent: 1 - type: Transform -- proto: ClothingOuterCoatJensen - entities: - - uid: 18357 - components: - - pos: 37.44033,50.617104 - parent: 1 - type: Transform -- proto: ClothingOuterGhostSheet - entities: - - uid: 18107 - components: - - pos: -13.221982,69.88774 - parent: 1 - type: Transform - - uid: 18108 - components: - - pos: 35.625576,-21.402008 - parent: 1 - type: Transform -- proto: ClothingOuterHardsuitSalvage - entities: - - uid: 4070 - components: - - flags: InContainer - type: MetaData - - parent: 9342 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterHoodieChaplain - entities: - - uid: 8378 - components: - - pos: 24.56557,54.496185 - parent: 1 - type: Transform -- proto: ClothingOuterRobesCult - entities: - - uid: 9861 - components: - - pos: -37.519897,-17.403341 - parent: 1 - type: Transform -- proto: ClothingOuterVestWebMerc - entities: - - uid: 7772 - components: - - pos: -24.647196,-32.421364 - parent: 1 - type: Transform - - uid: 17750 - components: - - pos: 20.426132,60.536144 - parent: 1 - type: Transform -- proto: ClothingShoesBootsCombatFilled - entities: - - uid: 17751 - components: - - pos: 34.459908,-27.393188 - parent: 1 - type: Transform -- proto: ClothingShoesBootsJack - entities: - - uid: 18358 - components: - - pos: 37.606995,50.742104 - parent: 1 - type: Transform -- proto: ClothingShoesBootsMag - entities: - - uid: 4367 - components: - - pos: 25.694765,31.717653 - parent: 1 - type: Transform - - uid: 8706 - components: - - pos: -13.482979,-24.072556 - parent: 1 - type: Transform -- proto: ClothingShoesBootsMerc - entities: - - uid: 6920 - components: - - pos: -42.277744,-12.73193 - parent: 1 - type: Transform -- proto: ClothingShoesBootsPerformer - entities: - - uid: 6625 - components: - - pos: -16.470627,-5.3569727 - parent: 1 - type: Transform -- proto: ClothingShoesBootsWork - entities: - - uid: 9971 - components: - - desc: Legendary boots worn by the king of the tiders - name: boots of the grey king - type: MetaData - - pos: -22.53896,-24.152784 - parent: 1 - type: Transform - - type: NoSlip -- proto: ClothingShoesCult - entities: - - uid: 9862 - components: - - pos: -37.94586,-17.687162 - parent: 1 - type: Transform -- proto: ClothingShoesJester - entities: - - uid: 18416 - components: - - pos: -28.389633,52.43161 - parent: 1 - type: Transform -- proto: ClothingShoeSlippersDuck - entities: - - uid: 18109 - components: - - pos: 35.418114,-20.345602 - parent: 1 - type: Transform -- proto: ClothingShoesSpaceNinja - entities: - - uid: 17753 - components: - - pos: 15.335373,-42.41446 - parent: 1 - type: Transform -- proto: ClothingUnderSocksCoder - entities: - - uid: 18359 - components: - - pos: 18.34029,46.950535 - parent: 1 - type: Transform -- proto: ClothingUniformJumpskirtDetective - entities: - - uid: 14060 - components: - - pos: 21.290764,58.71069 - parent: 1 - type: Transform -- proto: ClothingUniformJumpskirtDetectiveGrey - entities: - - uid: 18347 - components: - - pos: -33.43428,52.538555 - parent: 1 - type: Transform -- proto: ClothingUniformJumpskirtJanimaid - entities: - - uid: 17761 - components: - - pos: -18.64241,-22.485422 - parent: 1 - type: Transform -- proto: ClothingUniformJumpskirtPerformer - entities: - - uid: 6624 - components: - - pos: -16.07306,-5.413738 - parent: 1 - type: Transform -- proto: ClothingUniformJumpsuitDetective - entities: - - uid: 8149 - components: - - pos: 21.540764,58.502357 - parent: 1 - type: Transform -- proto: ClothingUniformJumpsuitDetectiveGrey - entities: - - uid: 18346 - components: - - pos: -33.618862,52.69466 - parent: 1 - type: Transform -- proto: ClothingUniformJumpsuitEngineeringHazard - entities: - - uid: 9190 - components: - - pos: 9.531997,-15.469109 - parent: 1 - type: Transform -- proto: ClothingUniformJumpsuitHoSBlue - entities: - - uid: 6827 - components: - - pos: -13.412797,60.456165 - parent: 1 - type: Transform -- proto: ClothingUniformJumpsuitJesterAlt - entities: - - uid: 18415 - components: - - pos: -28.181301,52.660778 - parent: 1 - type: Transform -- proto: ClothingUniformJumpsuitMercenary - entities: - - uid: 7807 - components: - - pos: -0.5118942,2.4542174 - parent: 8756 - type: Transform -- proto: ClothingUniformJumpsuitSecBlue - entities: - - uid: 8150 - components: - - pos: 21.707432,58.689857 - parent: 1 - type: Transform -- proto: ClownRecorder - entities: - - uid: 8191 - components: - - pos: -15.323214,-0.60332537 - parent: 1 - type: Transform -- proto: ComfyChair - entities: - - uid: 427 - components: - - pos: -50.5,16.5 - parent: 1 - type: Transform - - uid: 1292 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,35.5 - parent: 1 - type: Transform - - uid: 1295 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,35.5 - parent: 1 - type: Transform - - uid: 1297 - components: - - pos: -48.5,16.5 - parent: 1 - type: Transform - - uid: 1992 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,5.5 - parent: 1 - type: Transform - - uid: 8093 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,73.5 - parent: 1 - type: Transform - - uid: 8094 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,72.5 - parent: 1 - type: Transform - - uid: 8095 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,71.5 - parent: 1 - type: Transform - - uid: 8096 - components: - - rot: 3.141592653589793 rad - pos: 4.5,70.5 - parent: 1 - type: Transform - - uid: 8097 - components: - - rot: 3.141592653589793 rad - pos: 5.5,70.5 - parent: 1 - type: Transform - - uid: 8099 - components: - - rot: 3.141592653589793 rad - pos: 6.5,70.5 - parent: 1 - type: Transform - - uid: 8100 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,73.5 - parent: 1 - type: Transform - - uid: 8101 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,72.5 - parent: 1 - type: Transform - - uid: 8102 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,71.5 - parent: 1 - type: Transform - - uid: 8958 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,10.5 - parent: 1 - type: Transform - - uid: 9913 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-37.5 - parent: 1 - type: Transform -- proto: CommsComputerCircuitboard - entities: - - uid: 4210 - components: - - pos: 17.606056,-21.376692 - parent: 1 - type: Transform -- proto: ComputerAlert - entities: - - uid: 4191 - components: - - pos: 6.5,-11.5 - parent: 1 - type: Transform - - uid: 4270 - components: - - pos: -6.5,82.5 - parent: 1 - type: Transform - - uid: 4273 - components: - - pos: 5.5,82.5 - parent: 1 - type: Transform - - uid: 7115 - components: - - pos: -7.5,-11.5 - parent: 1 - type: Transform -- proto: ComputerAnalysisConsole - entities: - - uid: 3536 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,29.5 - parent: 1 - type: Transform -- proto: computerBodyScanner - entities: - - uid: 1620 - components: - - pos: 4.5,82.5 - parent: 1 - type: Transform - - uid: 1779 - components: - - rot: 3.141592653589793 rad - pos: 19.5,26.5 - parent: 1 - type: Transform - - uid: 4336 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,32.5 - parent: 1 - type: Transform -- proto: ComputerBroken - entities: - - uid: 7665 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-24.5 - parent: 1 - type: Transform - - uid: 9988 - components: - - pos: -28.5,-20.5 - parent: 1 - type: Transform - - uid: 11063 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,4.5 - parent: 1 - type: Transform - - uid: 14033 - components: - - pos: 25.5,58.5 - parent: 1 - type: Transform -- proto: ComputerCargoOrders - entities: - - uid: 323 - components: - - pos: 1.5,83.5 - parent: 1 - type: Transform - - uid: 4152 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,7.5 - parent: 1 - type: Transform -- proto: ComputerCargoShuttle - entities: - - uid: 320 - components: - - pos: 0.5,83.5 - parent: 1 - type: Transform - - uid: 4153 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-1.5 - parent: 1 - type: Transform -- proto: ComputerComms - entities: - - uid: 4262 - components: - - pos: -2.5,80.5 - parent: 1 - type: Transform - - uid: 6802 - components: - - pos: -7.5,74.5 - parent: 1 - type: Transform -- proto: ComputerCrewMonitoring - entities: - - uid: 3632 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,20.5 - parent: 1 - type: Transform - - uid: 4271 - components: - - pos: 3.5,82.5 - parent: 1 - type: Transform -- proto: ComputerCriminalRecords - entities: - - uid: 258 - components: - - rot: 3.141592653589793 rad - pos: -34.5,-3.5 - parent: 1 - type: Transform - - uid: 339 - components: - - pos: 1.5,80.5 - parent: 1 - type: Transform - - uid: 7890 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,42.5 - parent: 1 - type: Transform - - uid: 8136 - components: - - pos: -5.5,55.5 - parent: 1 - type: Transform - - uid: 9415 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-12.5 - parent: 1 - type: Transform -- proto: ComputerFrame - entities: - - uid: 7442 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-21.5 - parent: 1 - type: Transform - - uid: 8889 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,2.5 - parent: 8756 - type: Transform -- proto: ComputerId - entities: - - uid: 2900 - components: - - rot: 3.141592653589793 rad - pos: 25.5,2.5 - parent: 1 - type: Transform - - uid: 4256 - components: - - pos: -3.5,80.5 - parent: 1 - type: Transform -- proto: ComputerMedicalRecords - entities: - - uid: 571 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,34.5 - parent: 1 - type: Transform - - uid: 8545 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,20.5 - parent: 1 - type: Transform -- proto: ComputerPowerMonitoring - entities: - - uid: 4192 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-13.5 - parent: 1 - type: Transform - - uid: 4269 - components: - - pos: -4.5,82.5 - parent: 1 - type: Transform - - uid: 10870 - components: - - pos: 27.5,-18.5 - parent: 1 - type: Transform - - uid: 11069 - components: - - pos: 18.5,4.5 - parent: 1 - type: Transform - - uid: 13161 - components: - - pos: 15.5,25.5 - parent: 1 - type: Transform - - uid: 13180 - components: - - rot: 3.141592653589793 rad - pos: -25.5,-18.5 - parent: 1 - type: Transform - - uid: 13181 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-1.5 - parent: 1 - type: Transform - - uid: 13853 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,53.5 - parent: 1 - type: Transform -- proto: ComputerRadar - entities: - - uid: 4257 - components: - - pos: -1.5,80.5 - parent: 1 - type: Transform - - uid: 7798 - components: - - pos: -39.5,18.5 - parent: 1 - type: Transform - - uid: 7934 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,21.5 - parent: 1 - type: Transform -- proto: ComputerResearchAndDevelopment - entities: - - uid: 325 - components: - - pos: -1.5,83.5 - parent: 1 - type: Transform - - uid: 3556 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,21.5 - parent: 1 - type: Transform - - uid: 18345 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,21.5 - parent: 1 - type: Transform -- proto: ComputerSalvageExpedition - entities: - - uid: 1781 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,25.5 - parent: 1 - type: Transform -- proto: ComputerShuttle - entities: - - uid: 8887 - components: - - pos: -0.5,3.5 - parent: 8756 - type: Transform -- proto: ComputerShuttleCargo - entities: - - uid: 4154 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-0.5 - parent: 1 - type: Transform -- proto: ComputerShuttleSalvage - entities: - - uid: 4370 - components: - - pos: -41.5,26.5 - parent: 1 - type: Transform -- proto: ComputerSolarControl - entities: - - uid: 4194 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-15.5 - parent: 1 - type: Transform - - uid: 4268 - components: - - pos: -5.5,82.5 - parent: 1 - type: Transform - - uid: 7152 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-40.5 - parent: 1 - type: Transform - - uid: 8010 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,54.5 - parent: 1 - type: Transform - - uid: 14046 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,54.5 - parent: 1 - type: Transform -- proto: ComputerStationRecords - entities: - - uid: 324 - components: - - pos: -2.5,83.5 - parent: 1 - type: Transform - - uid: 2902 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,5.5 - parent: 1 - type: Transform - - uid: 7393 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,49.5 - parent: 1 - type: Transform - - uid: 8888 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,2.5 - parent: 8756 - type: Transform - - uid: 18502 - components: - - pos: -6.5,57.5 - parent: 1 - type: Transform -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 4259 - components: - - pos: 2.5,80.5 - parent: 1 - type: Transform - - uid: 6661 - components: - - pos: -34.5,-0.5 - parent: 1 - type: Transform - - uid: 7244 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-17.5 - parent: 1 - type: Transform - - uid: 7391 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,48.5 - parent: 1 - type: Transform - - uid: 7900 - components: - - pos: 43.5,44.5 - parent: 1 - type: Transform - - uid: 8135 - components: - - rot: 3.141592653589793 rad - pos: -5.5,52.5 - parent: 1 - type: Transform - - uid: 8181 - components: - - pos: -14.5,56.5 - parent: 1 - type: Transform - - uid: 9414 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-11.5 - parent: 1 - type: Transform -- proto: ComputerSurveillanceWirelessCameraMonitor - entities: - - uid: 4260 - components: - - pos: 0.5,80.5 - parent: 1 - type: Transform -- proto: ComputerTechnologyDiskTerminal - entities: - - uid: 18355 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,34.5 - parent: 1 - type: Transform -- proto: ContrabassInstrument - entities: - - uid: 1664 - components: - - pos: -5.5,-4.5 - parent: 1 - type: Transform -- proto: ConveyorBelt - entities: - - uid: 1767 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,24.5 - parent: 1 - type: Transform - - links: - - 7918 - - 7808 - type: DeviceLinkSink - - uid: 3830 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-32.5 - parent: 1 - type: Transform - - links: - - 4007 - type: DeviceLinkSink - - uid: 3994 - components: - - pos: 19.5,-38.5 - parent: 1 - type: Transform - - links: - - 4007 - type: DeviceLinkSink - - uid: 3995 - components: - - pos: 19.5,-39.5 - parent: 1 - type: Transform - - links: - - 4007 - type: DeviceLinkSink - - uid: 3996 - components: - - pos: 19.5,-37.5 - parent: 1 - type: Transform - - links: - - 4007 - type: DeviceLinkSink - - uid: 3997 - components: - - pos: 19.5,-36.5 - parent: 1 - type: Transform - - links: - - 4007 - type: DeviceLinkSink - - uid: 3998 - components: - - pos: 19.5,-35.5 - parent: 1 - type: Transform - - links: - - 4007 - type: DeviceLinkSink - - uid: 3999 - components: - - pos: 19.5,-34.5 - parent: 1 - type: Transform - - links: - - 4007 - type: DeviceLinkSink - - uid: 4000 - components: - - pos: 19.5,-33.5 - parent: 1 - type: Transform - - links: - - 4007 - type: DeviceLinkSink - - uid: 4001 - components: - - pos: 19.5,-32.5 - parent: 1 - type: Transform - - links: - - 4007 - type: DeviceLinkSink - - uid: 4002 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-32.5 - parent: 1 - type: Transform - - links: - - 4007 - type: DeviceLinkSink - - uid: 4110 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,22.5 - parent: 1 - type: Transform - - links: - - 7918 - - 7808 - type: DeviceLinkSink - - uid: 4115 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,22.5 - parent: 1 - type: Transform - - links: - - 7918 - - 7808 - type: DeviceLinkSink - - uid: 4130 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,22.5 - parent: 1 - type: Transform - - links: - - 7918 - - 7808 - type: DeviceLinkSink - - uid: 4134 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,24.5 - parent: 1 - type: Transform - - links: - - 7918 - - 7808 - type: DeviceLinkSink - - uid: 4137 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,1.5 - parent: 1 - type: Transform - - links: - - 9362 - type: DeviceLinkSink - - uid: 4138 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,1.5 - parent: 1 - type: Transform - - links: - - 9362 - type: DeviceLinkSink - - uid: 4139 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,1.5 - parent: 1 - type: Transform - - links: - - 9362 - type: DeviceLinkSink - - uid: 4140 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,1.5 - parent: 1 - type: Transform - - links: - - 9362 - type: DeviceLinkSink - - uid: 4141 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,5.5 - parent: 1 - type: Transform - - links: - - 9362 - type: DeviceLinkSink - - uid: 4142 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,5.5 - parent: 1 - type: Transform - - links: - - 9362 - type: DeviceLinkSink - - uid: 4143 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,5.5 - parent: 1 - type: Transform - - links: - - 9362 - type: DeviceLinkSink - - uid: 4144 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,5.5 - parent: 1 - type: Transform - - links: - - 9362 - type: DeviceLinkSink - - uid: 4145 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,5.5 - parent: 1 - type: Transform - - links: - - 9362 - type: DeviceLinkSink - - uid: 4146 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,5.5 - parent: 1 - type: Transform - - links: - - 9364 - type: DeviceLinkSink - - uid: 4147 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,5.5 - parent: 1 - type: Transform - - links: - - 9364 - type: DeviceLinkSink - - uid: 4148 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,1.5 - parent: 1 - type: Transform - - links: - - 9362 - type: DeviceLinkSink - - uid: 7818 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,22.5 - parent: 1 - type: Transform - - links: - - 7918 - - 7808 - type: DeviceLinkSink - - uid: 7820 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,24.5 - parent: 1 - type: Transform - - links: - - 7918 - - 7808 - type: DeviceLinkSink - - uid: 7821 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,24.5 - parent: 1 - type: Transform - - links: - - 7918 - - 7808 - type: DeviceLinkSink -- proto: CornSeeds - entities: - - uid: 8277 - components: - - pos: -29.621134,44.53177 - parent: 1 - type: Transform -- proto: CowToolboxFilled - entities: - - uid: 13384 - components: - - pos: -17.809574,28.530706 - parent: 1 - type: Transform -- proto: CrateArtifactContainer - entities: - - uid: 3550 - components: - - pos: -9.5,34.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrateEmptySpawner - entities: - - uid: 5555 - components: - - pos: -20.5,9.5 - parent: 1 - type: Transform - - uid: 9314 - components: - - pos: -38.5,-5.5 - parent: 1 - type: Transform - - uid: 9315 - components: - - pos: -38.5,-6.5 - parent: 1 - type: Transform - - uid: 9316 - components: - - pos: -39.5,-7.5 - parent: 1 - type: Transform - - uid: 9317 - components: - - pos: -39.5,-5.5 - parent: 1 - type: Transform - - uid: 9318 - components: - - pos: -43.5,-4.5 - parent: 1 - type: Transform - - uid: 9319 - components: - - pos: -42.5,-5.5 - parent: 1 - type: Transform - - uid: 9320 - components: - - pos: -43.5,-6.5 - parent: 1 - type: Transform - - uid: 9390 - components: - - pos: -40.5,0.5 - parent: 1 - type: Transform - - uid: 9448 - components: - - pos: -45.5,-6.5 - parent: 1 - type: Transform - - uid: 9449 - components: - - pos: -46.5,-6.5 - parent: 1 - type: Transform -- proto: CrateEngineeringAMEJar - entities: - - uid: 9025 - components: - - pos: 8.5,-36.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrateEngineeringAMEShielding - entities: - - uid: 9024 - components: - - pos: 4.5,-36.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 9026 - components: - - pos: 5.5,-36.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrateEngineeringCableBulk - entities: - - uid: 4185 - components: - - pos: 13.5,-18.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 4592 - components: - - pos: 4.5,-20.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13183 - components: - - pos: -23.5,-3.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrateEngineeringCableHV - entities: - - uid: 7153 - components: - - pos: 13.5,-39.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13441 - components: - - pos: -37.5,55.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13442 - components: - - pos: 38.5,55.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrateEngineeringElectricalSupplies - entities: - - uid: 4593 - components: - - pos: 4.5,-19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrateEngineeringGear - entities: - - uid: 13439 - components: - - pos: -25.5,52.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrateFilledSpawner - entities: - - uid: 5556 - components: - - pos: -20.5,10.5 - parent: 1 - type: Transform - - uid: 9311 - components: - - pos: -39.5,-6.5 - parent: 1 - type: Transform - - uid: 9312 - components: - - pos: -42.5,-4.5 - parent: 1 - type: Transform - - uid: 9313 - components: - - pos: -40.5,6.5 - parent: 1 - type: Transform -- proto: CrateFreezer - entities: - - uid: 4062 - components: - - pos: 12.5,-2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrateFunArtSupplies - entities: - - uid: 9308 - components: - - pos: -38.5,-7.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrateMedicalSurgery - entities: - - uid: 1663 - components: - - pos: 18.5,26.5 - parent: 1 - type: Transform -- proto: CrateNPCCow - entities: - - uid: 3804 - components: - - pos: 6.5,-5.5 - parent: 1 - type: Transform - - air: - volume: 800 - immutable: False - temperature: 293.14987 - moles: - - 13.772371 - - 51.81035 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrateServiceBooks - entities: - - uid: 9309 - components: - - pos: -43.5,-5.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrateServiceBureaucracy - entities: - - uid: 9310 - components: - - pos: -38.5,-4.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrateServiceJanitorialSupplies - entities: - - uid: 9378 - components: - - pos: 20.5,-5.5 - parent: 1 - type: Transform -- proto: CrayonBox - entities: - - uid: 8283 - components: - - pos: -28.997604,44.572357 - parent: 1 - type: Transform - - uid: 8472 - components: - - pos: 20.349487,40.573277 - parent: 1 - type: Transform -- proto: CrayonMime - entities: - - uid: 6618 - components: - - pos: -15.95947,5.6185107 - parent: 1 - type: Transform -- proto: CrayonPurple - entities: - - uid: 8473 - components: - - pos: 20.718657,40.559086 - parent: 1 - type: Transform -- proto: Crematorium - entities: - - uid: 4403 - components: - - pos: 32.5,56.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrewMonitoringServer - entities: - - uid: 8488 - components: - - pos: 16.5,31.5 - parent: 1 - type: Transform -- proto: Crowbar - entities: - - uid: 9970 - components: - - pos: -20.366545,-24.481062 - parent: 1 - type: Transform - - uid: 18414 - components: - - pos: -5.550656,32.42306 - parent: 1 - type: Transform -- proto: CryoPod - entities: - - uid: 6368 - components: - - pos: 12.5,33.5 - parent: 1 - type: Transform -- proto: CryostasisBeaker - entities: - - uid: 8530 - components: - - pos: 5.672117,25.73491 - parent: 1 - type: Transform - - uid: 8531 - components: - - pos: 5.501731,25.564615 - parent: 1 - type: Transform -- proto: CryoxadoneBeakerSmall - entities: - - uid: 9612 - components: - - pos: 9.349022,30.644068 - parent: 1 - type: Transform - - uid: 9613 - components: - - pos: 9.458397,30.800318 - parent: 1 - type: Transform -- proto: CultAltarSpawner - entities: - - uid: 9860 - components: - - pos: -37.5,-16.5 - parent: 1 - type: Transform -- proto: d20Dice - entities: - - uid: 9922 - components: - - pos: -19.295444,-36.252487 - parent: 1 - type: Transform -- proto: d4Dice - entities: - - uid: 9923 - components: - - pos: -19.636215,-36.919468 - parent: 1 - type: Transform -- proto: d6Dice - entities: - - uid: 9957 - components: - - pos: -38.76962,-12.060882 - parent: 1 - type: Transform - - uid: 9958 - components: - - pos: -38.75542,-12.231175 - parent: 1 - type: Transform - - uid: 14027 - components: - - rot: -1.5707963267948966 rad - pos: 27.553741,58.430557 - parent: 1 - type: Transform - - uid: 14028 - components: - - rot: -1.5707963267948966 rad - pos: 27.638933,58.82791 - parent: 1 - type: Transform -- proto: DawInstrumentMachineCircuitboard - entities: - - uid: 4211 - components: - - pos: 17.549261,-25.435349 - parent: 1 - type: Transform - - uid: 6621 - components: - - pos: -15.5903015,-5.413738 - parent: 1 - type: Transform -- proto: DefibrillatorCabinetFilled - entities: - - uid: 1778 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,20.5 - parent: 1 - type: Transform - - uid: 4111 - components: - - pos: -25.5,49.5 - parent: 1 - type: Transform - - uid: 6804 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,40.5 - parent: 1 - type: Transform - - uid: 6909 - components: - - pos: 40.5,39.5 - parent: 1 - type: Transform - - uid: 6925 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-30.5 - parent: 1 - type: Transform - - uid: 6926 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,31.5 - parent: 1 - type: Transform - - uid: 7430 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,26.5 - parent: 1 - type: Transform - - uid: 7431 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,9.5 - parent: 1 - type: Transform - - uid: 7636 - components: - - pos: -12.5,26.5 - parent: 1 - type: Transform - - uid: 7637 - components: - - pos: 3.5,83.5 - parent: 1 - type: Transform - - uid: 7638 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,28.5 - parent: 1 - type: Transform - - uid: 7641 - components: - - pos: 9.5,21.5 - parent: 1 - type: Transform - - uid: 7643 - components: - - pos: -10.5,47.5 - parent: 1 - type: Transform - - uid: 7722 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,3.5 - parent: 1 - type: Transform - - uid: 7729 - components: - - pos: 1.5,69.5 - parent: 1 - type: Transform - - uid: 7768 - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-8.5 - parent: 1 - type: Transform - - uid: 7794 - components: - - pos: 28.5,16.5 - parent: 1 - type: Transform - - uid: 7795 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,7.5 - parent: 1 - type: Transform - - uid: 7796 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-14.5 - parent: 1 - type: Transform - - uid: 7797 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,0.5 - parent: 1 - type: Transform -- proto: DeployableBarrier - entities: - - uid: 4383 - components: - - anchored: False - pos: -19.5,44.5 - parent: 1 - type: Transform - - uid: 4384 - components: - - anchored: False - pos: -19.5,45.5 - parent: 1 - type: Transform - - uid: 4386 - components: - - anchored: False - pos: -10.5,60.5 - parent: 1 - type: Transform -- proto: DeskBell - entities: - - uid: 4505 - components: - - pos: -5.772716,20.447916 - parent: 1 - type: Transform - - uid: 4565 - components: - - pos: 4.7110076,20.385416 - parent: 1 - type: Transform - - uid: 4566 - components: - - pos: -6.6414404,-12.133052 - parent: 1 - type: Transform - - uid: 4567 - components: - - pos: 5.5849104,-12.195552 - parent: 1 - type: Transform - - uid: 6150 - components: - - pos: 12.86205,19.48184 - parent: 1 - type: Transform - - uid: 6152 - components: - - pos: 4.2470655,-2.5974627 - parent: 1 - type: Transform - - uid: 6153 - components: - - pos: 11.743292,-5.633137 - parent: 1 - type: Transform - - uid: 6154 - components: - - pos: -6.2473664,5.4515653 - parent: 1 - type: Transform - - uid: 6193 - components: - - pos: -4.4996243,53.44499 - parent: 1 - type: Transform - - uid: 7655 - components: - - pos: 26.62281,3.3925822 - parent: 1 - type: Transform -- proto: DiceBag - entities: - - uid: 7030 - components: - - pos: -25.707123,3.7152946 - parent: 1 - type: Transform - - uid: 9296 - components: - - pos: 20.707039,40.88435 - parent: 1 - type: Transform - - uid: 9921 - components: - - pos: -19.423235,-37.373585 - parent: 1 - type: Transform -- proto: DiseaseDiagnoser - entities: - - uid: 4080 - components: - - pos: 6.5,34.5 - parent: 1 - type: Transform -- proto: DiseaseSwab - entities: - - uid: 7122 - components: - - pos: -13.290618,28.210794 - parent: 1 - type: Transform - - uid: 7123 - components: - - pos: -13.432607,27.955353 - parent: 1 - type: Transform -- proto: DisposalBend - entities: - - uid: 1784 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,24.5 - parent: 1 - type: Transform - - uid: 16494 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,70.5 - parent: 1 - type: Transform - - uid: 16500 - components: - - pos: 5.5,76.5 - parent: 1 - type: Transform - - uid: 16558 - components: - - pos: -8.5,53.5 - parent: 1 - type: Transform - - uid: 16559 - components: - - rot: 3.141592653589793 rad - pos: -8.5,50.5 - parent: 1 - type: Transform - - uid: 16603 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,37.5 - parent: 1 - type: Transform - - uid: 16604 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,38.5 - parent: 1 - type: Transform - - uid: 16612 - components: - - pos: -15.5,31.5 - parent: 1 - type: Transform - - uid: 16613 - components: - - rot: 3.141592653589793 rad - pos: -18.5,31.5 - parent: 1 - type: Transform - - uid: 16642 - components: - - rot: 3.141592653589793 rad - pos: -43.5,37.5 - parent: 1 - type: Transform - - uid: 16643 - components: - - pos: -43.5,42.5 - parent: 1 - type: Transform - - uid: 16644 - components: - - rot: 3.141592653589793 rad - pos: -45.5,42.5 - parent: 1 - type: Transform - - uid: 16657 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,23.5 - parent: 1 - type: Transform - - uid: 16662 - components: - - rot: 3.141592653589793 rad - pos: -11.5,18.5 - parent: 1 - type: Transform - - uid: 16744 - components: - - pos: 31.5,43.5 - parent: 1 - type: Transform - - uid: 16766 - components: - - rot: -1.5707963267948966 rad - pos: 48.5,37.5 - parent: 1 - type: Transform - - uid: 16788 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,17.5 - parent: 1 - type: Transform - - uid: 16800 - components: - - rot: 3.141592653589793 rad - pos: 7.5,28.5 - parent: 1 - type: Transform - - uid: 16808 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,28.5 - parent: 1 - type: Transform - - uid: 16827 - components: - - pos: 30.5,26.5 - parent: 1 - type: Transform - - uid: 16836 - components: - - rot: 3.141592653589793 rad - pos: 27.5,21.5 - parent: 1 - type: Transform - - uid: 16852 - components: - - pos: 45.5,13.5 - parent: 1 - type: Transform - - uid: 16867 - components: - - rot: 3.141592653589793 rad - pos: 30.5,13.5 - parent: 1 - type: Transform - - uid: 16898 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,15.5 - parent: 1 - type: Transform - - uid: 16899 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,14.5 - parent: 1 - type: Transform - - uid: 16933 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,14.5 - parent: 1 - type: Transform - - uid: 16973 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,22.5 - parent: 1 - type: Transform - - uid: 16974 - components: - - rot: 3.141592653589793 rad - pos: 0.5,13.5 - parent: 1 - type: Transform - - uid: 16975 - components: - - pos: 1.5,13.5 - parent: 1 - type: Transform - - uid: 17020 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,5.5 - parent: 1 - type: Transform - - uid: 17033 - components: - - pos: 7.5,-4.5 - parent: 1 - type: Transform - - uid: 17051 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,2.5 - parent: 1 - type: Transform - - uid: 17052 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,2.5 - parent: 1 - type: Transform - - uid: 17053 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,4.5 - parent: 1 - type: Transform - - uid: 17060 - components: - - pos: -31.5,4.5 - parent: 1 - type: Transform - - uid: 17098 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-14.5 - parent: 1 - type: Transform - - uid: 17145 - components: - - pos: 19.5,-3.5 - parent: 1 - type: Transform - - uid: 17175 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-8.5 - parent: 1 - type: Transform - - uid: 17194 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,7.5 - parent: 1 - type: Transform - - uid: 17212 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-24.5 - parent: 1 - type: Transform - - uid: 17213 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-24.5 - parent: 1 - type: Transform - - uid: 17217 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-27.5 - parent: 1 - type: Transform - - uid: 17218 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-27.5 - parent: 1 - type: Transform - - uid: 17220 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-29.5 - parent: 1 - type: Transform - - uid: 17226 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-29.5 - parent: 1 - type: Transform - - uid: 17231 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-34.5 - parent: 1 - type: Transform - - uid: 17233 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-34.5 - parent: 1 - type: Transform -- proto: DisposalJunction - entities: - - uid: 8445 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-8.5 - parent: 1 - type: Transform - - uid: 16520 - components: - - pos: 0.5,68.5 - parent: 1 - type: Transform - - uid: 16534 - components: - - pos: 0.5,57.5 - parent: 1 - type: Transform - - uid: 16570 - components: - - pos: 0.5,50.5 - parent: 1 - type: Transform - - uid: 16583 - components: - - pos: 0.5,38.5 - parent: 1 - type: Transform - - uid: 16609 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,38.5 - parent: 1 - type: Transform - - uid: 16683 - components: - - pos: 0.5,27.5 - parent: 1 - type: Transform - - uid: 16725 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,37.5 - parent: 1 - type: Transform - - uid: 16738 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,37.5 - parent: 1 - type: Transform - - uid: 16772 - components: - - pos: 0.5,18.5 - parent: 1 - type: Transform - - uid: 16792 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,17.5 - parent: 1 - type: Transform - - uid: 16821 - components: - - pos: 0.5,15.5 - parent: 1 - type: Transform - - uid: 16833 - components: - - pos: 30.5,21.5 - parent: 1 - type: Transform - - uid: 17025 - components: - - pos: 1.5,1.5 - parent: 1 - type: Transform - - uid: 17104 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-8.5 - parent: 1 - type: Transform - - uid: 17132 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-8.5 - parent: 1 - type: Transform - - uid: 17178 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-8.5 - parent: 1 - type: Transform -- proto: DisposalJunctionFlipped - entities: - - uid: 16543 - components: - - pos: 0.5,52.5 - parent: 1 - type: Transform - - uid: 16584 - components: - - pos: 0.5,37.5 - parent: 1 - type: Transform - - uid: 16622 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,37.5 - parent: 1 - type: Transform - - uid: 16698 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,37.5 - parent: 1 - type: Transform - - uid: 16773 - components: - - pos: 0.5,17.5 - parent: 1 - type: Transform - - uid: 16822 - components: - - pos: 0.5,14.5 - parent: 1 - type: Transform - - uid: 16922 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,14.5 - parent: 1 - type: Transform - - uid: 16930 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,14.5 - parent: 1 - type: Transform - - uid: 16946 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,14.5 - parent: 1 - type: Transform - - uid: 16971 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,14.5 - parent: 1 - type: Transform - - uid: 16993 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-8.5 - parent: 1 - type: Transform - - uid: 17023 - components: - - pos: 1.5,5.5 - parent: 1 - type: Transform - - uid: 17024 - components: - - pos: 1.5,2.5 - parent: 1 - type: Transform - - uid: 17027 - components: - - pos: 1.5,-4.5 - parent: 1 - type: Transform - - uid: 17075 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-8.5 - parent: 1 - type: Transform - - uid: 17135 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-8.5 - parent: 1 - type: Transform - - uid: 17150 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-8.5 - parent: 1 - type: Transform -- proto: DisposalPipe - entities: - - uid: 16492 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,70.5 - parent: 1 - type: Transform - - uid: 16493 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,70.5 - parent: 1 - type: Transform - - uid: 16495 - components: - - rot: 3.141592653589793 rad - pos: 5.5,71.5 - parent: 1 - type: Transform - - uid: 16496 - components: - - rot: 3.141592653589793 rad - pos: 5.5,72.5 - parent: 1 - type: Transform - - uid: 16497 - components: - - rot: 3.141592653589793 rad - pos: 5.5,73.5 - parent: 1 - type: Transform - - uid: 16498 - components: - - rot: 3.141592653589793 rad - pos: 5.5,74.5 - parent: 1 - type: Transform - - uid: 16499 - components: - - rot: 3.141592653589793 rad - pos: 5.5,75.5 - parent: 1 - type: Transform - - uid: 16501 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,76.5 - parent: 1 - type: Transform - - uid: 16502 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,76.5 - parent: 1 - type: Transform - - uid: 16503 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,76.5 - parent: 1 - type: Transform - - uid: 16504 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,76.5 - parent: 1 - type: Transform - - uid: 16506 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,76.5 - parent: 1 - type: Transform - - uid: 16507 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,76.5 - parent: 1 - type: Transform - - uid: 16508 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,76.5 - parent: 1 - type: Transform - - uid: 16509 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,76.5 - parent: 1 - type: Transform - - uid: 16510 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,76.5 - parent: 1 - type: Transform - - uid: 16511 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,76.5 - parent: 1 - type: Transform - - uid: 16512 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,76.5 - parent: 1 - type: Transform - - uid: 16513 - components: - - pos: 0.5,75.5 - parent: 1 - type: Transform - - uid: 16514 - components: - - pos: 0.5,74.5 - parent: 1 - type: Transform - - uid: 16515 - components: - - pos: 0.5,73.5 - parent: 1 - type: Transform - - uid: 16516 - components: - - pos: 0.5,72.5 - parent: 1 - type: Transform - - uid: 16517 - components: - - pos: 0.5,71.5 - parent: 1 - type: Transform - - uid: 16518 - components: - - pos: 0.5,70.5 - parent: 1 - type: Transform - - uid: 16519 - components: - - pos: 0.5,69.5 - parent: 1 - type: Transform - - uid: 16521 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,68.5 - parent: 1 - type: Transform - - uid: 16522 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,68.5 - parent: 1 - type: Transform - - uid: 16524 - components: - - pos: 0.5,67.5 - parent: 1 - type: Transform - - uid: 16525 - components: - - pos: 0.5,66.5 - parent: 1 - type: Transform - - uid: 16526 - components: - - pos: 0.5,65.5 - parent: 1 - type: Transform - - uid: 16527 - components: - - pos: 0.5,64.5 - parent: 1 - type: Transform - - uid: 16528 - components: - - pos: 0.5,63.5 - parent: 1 - type: Transform - - uid: 16529 - components: - - pos: 0.5,62.5 - parent: 1 - type: Transform - - uid: 16530 - components: - - pos: 0.5,61.5 - parent: 1 - type: Transform - - uid: 16531 - components: - - pos: 0.5,60.5 - parent: 1 - type: Transform - - uid: 16532 - components: - - pos: 0.5,59.5 - parent: 1 - type: Transform - - uid: 16533 - components: - - pos: 0.5,58.5 - parent: 1 - type: Transform - - uid: 16537 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,57.5 - parent: 1 - type: Transform - - uid: 16538 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,57.5 - parent: 1 - type: Transform - - uid: 16539 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,57.5 - parent: 1 - type: Transform - - uid: 16540 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,52.5 - parent: 1 - type: Transform - - uid: 16541 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,52.5 - parent: 1 - type: Transform - - uid: 16542 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,52.5 - parent: 1 - type: Transform - - uid: 16544 - components: - - pos: 0.5,56.5 - parent: 1 - type: Transform - - uid: 16545 - components: - - pos: 0.5,55.5 - parent: 1 - type: Transform - - uid: 16546 - components: - - pos: 0.5,54.5 - parent: 1 - type: Transform - - uid: 16547 - components: - - pos: 0.5,53.5 - parent: 1 - type: Transform - - uid: 16550 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,53.5 - parent: 1 - type: Transform - - uid: 16551 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,53.5 - parent: 1 - type: Transform - - uid: 16552 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,53.5 - parent: 1 - type: Transform - - uid: 16553 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,53.5 - parent: 1 - type: Transform - - uid: 16554 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,53.5 - parent: 1 - type: Transform - - uid: 16555 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,53.5 - parent: 1 - type: Transform - - uid: 16556 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,53.5 - parent: 1 - type: Transform - - uid: 16557 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,53.5 - parent: 1 - type: Transform - - uid: 16560 - components: - - rot: 3.141592653589793 rad - pos: -8.5,52.5 - parent: 1 - type: Transform - - uid: 16561 - components: - - rot: 3.141592653589793 rad - pos: -8.5,51.5 - parent: 1 - type: Transform - - uid: 16562 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,50.5 - parent: 1 - type: Transform - - uid: 16563 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,50.5 - parent: 1 - type: Transform - - uid: 16564 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,50.5 - parent: 1 - type: Transform - - uid: 16565 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,50.5 - parent: 1 - type: Transform - - uid: 16566 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,50.5 - parent: 1 - type: Transform - - uid: 16567 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,50.5 - parent: 1 - type: Transform - - uid: 16568 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,50.5 - parent: 1 - type: Transform - - uid: 16569 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,50.5 - parent: 1 - type: Transform - - uid: 16571 - components: - - pos: 0.5,51.5 - parent: 1 - type: Transform - - uid: 16572 - components: - - pos: 0.5,49.5 - parent: 1 - type: Transform - - uid: 16573 - components: - - pos: 0.5,48.5 - parent: 1 - type: Transform - - uid: 16574 - components: - - pos: 0.5,47.5 - parent: 1 - type: Transform - - uid: 16575 - components: - - pos: 0.5,46.5 - parent: 1 - type: Transform - - uid: 16576 - components: - - pos: 0.5,45.5 - parent: 1 - type: Transform - - uid: 16577 - components: - - pos: 0.5,44.5 - parent: 1 - type: Transform - - uid: 16578 - components: - - pos: 0.5,43.5 - parent: 1 - type: Transform - - uid: 16579 - components: - - pos: 0.5,42.5 - parent: 1 - type: Transform - - uid: 16580 - components: - - pos: 0.5,41.5 - parent: 1 - type: Transform - - uid: 16581 - components: - - pos: 0.5,40.5 - parent: 1 - type: Transform - - uid: 16582 - components: - - pos: 0.5,39.5 - parent: 1 - type: Transform - - uid: 16585 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,38.5 - parent: 1 - type: Transform - - uid: 16586 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,38.5 - parent: 1 - type: Transform - - uid: 16587 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,38.5 - parent: 1 - type: Transform - - uid: 16588 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,38.5 - parent: 1 - type: Transform - - uid: 16589 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,38.5 - parent: 1 - type: Transform - - uid: 16590 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,38.5 - parent: 1 - type: Transform - - uid: 16591 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,38.5 - parent: 1 - type: Transform - - uid: 16592 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,38.5 - parent: 1 - type: Transform - - uid: 16593 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,38.5 - parent: 1 - type: Transform - - uid: 16594 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,38.5 - parent: 1 - type: Transform - - uid: 16595 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,38.5 - parent: 1 - type: Transform - - uid: 16596 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,38.5 - parent: 1 - type: Transform - - uid: 16597 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,38.5 - parent: 1 - type: Transform - - uid: 16598 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,38.5 - parent: 1 - type: Transform - - uid: 16599 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,38.5 - parent: 1 - type: Transform - - uid: 16600 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,38.5 - parent: 1 - type: Transform - - uid: 16601 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,38.5 - parent: 1 - type: Transform - - uid: 16602 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,38.5 - parent: 1 - type: Transform - - uid: 16605 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,38.5 - parent: 1 - type: Transform - - uid: 16606 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,38.5 - parent: 1 - type: Transform - - uid: 16607 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,38.5 - parent: 1 - type: Transform - - uid: 16608 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,38.5 - parent: 1 - type: Transform - - uid: 16614 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,31.5 - parent: 1 - type: Transform - - uid: 16615 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,31.5 - parent: 1 - type: Transform - - uid: 16616 - components: - - pos: -18.5,32.5 - parent: 1 - type: Transform - - uid: 16617 - components: - - pos: -18.5,33.5 - parent: 1 - type: Transform - - uid: 16618 - components: - - pos: -18.5,34.5 - parent: 1 - type: Transform - - uid: 16619 - components: - - pos: -18.5,35.5 - parent: 1 - type: Transform - - uid: 16620 - components: - - pos: -18.5,36.5 - parent: 1 - type: Transform - - uid: 16621 - components: - - pos: -18.5,37.5 - parent: 1 - type: Transform - - uid: 16624 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,37.5 - parent: 1 - type: Transform - - uid: 16625 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,37.5 - parent: 1 - type: Transform - - uid: 16626 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,37.5 - parent: 1 - type: Transform - - uid: 16627 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,37.5 - parent: 1 - type: Transform - - uid: 16628 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,37.5 - parent: 1 - type: Transform - - uid: 16629 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,37.5 - parent: 1 - type: Transform - - uid: 16630 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,37.5 - parent: 1 - type: Transform - - uid: 16631 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,37.5 - parent: 1 - type: Transform - - uid: 16632 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,37.5 - parent: 1 - type: Transform - - uid: 16633 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,37.5 - parent: 1 - type: Transform - - uid: 16634 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,37.5 - parent: 1 - type: Transform - - uid: 16635 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,37.5 - parent: 1 - type: Transform - - uid: 16636 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,37.5 - parent: 1 - type: Transform - - uid: 16637 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,37.5 - parent: 1 - type: Transform - - uid: 16638 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,37.5 - parent: 1 - type: Transform - - uid: 16639 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,37.5 - parent: 1 - type: Transform - - uid: 16640 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,37.5 - parent: 1 - type: Transform - - uid: 16641 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,37.5 - parent: 1 - type: Transform - - uid: 16645 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,42.5 - parent: 1 - type: Transform - - uid: 16646 - components: - - pos: -43.5,41.5 - parent: 1 - type: Transform - - uid: 16647 - components: - - pos: -43.5,40.5 - parent: 1 - type: Transform - - uid: 16648 - components: - - pos: -43.5,39.5 - parent: 1 - type: Transform - - uid: 16649 - components: - - pos: -43.5,38.5 - parent: 1 - type: Transform - - uid: 16650 - components: - - pos: -45.5,43.5 - parent: 1 - type: Transform - - uid: 16656 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,23.5 - parent: 1 - type: Transform - - uid: 16658 - components: - - pos: -11.5,22.5 - parent: 1 - type: Transform - - uid: 16659 - components: - - pos: -11.5,21.5 - parent: 1 - type: Transform - - uid: 16660 - components: - - pos: -11.5,20.5 - parent: 1 - type: Transform - - uid: 16661 - components: - - pos: -11.5,19.5 - parent: 1 - type: Transform - - uid: 16663 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,18.5 - parent: 1 - type: Transform - - uid: 16664 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,18.5 - parent: 1 - type: Transform - - uid: 16665 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,18.5 - parent: 1 - type: Transform - - uid: 16666 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,18.5 - parent: 1 - type: Transform - - uid: 16667 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,18.5 - parent: 1 - type: Transform - - uid: 16668 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,18.5 - parent: 1 - type: Transform - - uid: 16669 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,18.5 - parent: 1 - type: Transform - - uid: 16670 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,18.5 - parent: 1 - type: Transform - - uid: 16671 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,18.5 - parent: 1 - type: Transform - - uid: 16672 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,18.5 - parent: 1 - type: Transform - - uid: 16673 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,18.5 - parent: 1 - type: Transform - - uid: 16674 - components: - - pos: 0.5,36.5 - parent: 1 - type: Transform - - uid: 16675 - components: - - pos: 0.5,35.5 - parent: 1 - type: Transform - - uid: 16676 - components: - - pos: 0.5,34.5 - parent: 1 - type: Transform - - uid: 16677 - components: - - pos: 0.5,33.5 - parent: 1 - type: Transform - - uid: 16678 - components: - - pos: 0.5,32.5 - parent: 1 - type: Transform - - uid: 16679 - components: - - pos: 0.5,31.5 - parent: 1 - type: Transform - - uid: 16680 - components: - - pos: 0.5,30.5 - parent: 1 - type: Transform - - uid: 16681 - components: - - pos: 0.5,29.5 - parent: 1 - type: Transform - - uid: 16682 - components: - - pos: 0.5,28.5 - parent: 1 - type: Transform - - uid: 16684 - components: - - pos: 0.5,26.5 - parent: 1 - type: Transform - - uid: 16685 - components: - - pos: 0.5,25.5 - parent: 1 - type: Transform - - uid: 16686 - components: - - pos: 0.5,24.5 - parent: 1 - type: Transform - - uid: 16687 - components: - - pos: 0.5,23.5 - parent: 1 - type: Transform - - uid: 16688 - components: - - pos: 0.5,22.5 - parent: 1 - type: Transform - - uid: 16689 - components: - - pos: 0.5,21.5 - parent: 1 - type: Transform - - uid: 16690 - components: - - pos: 0.5,20.5 - parent: 1 - type: Transform - - uid: 16691 - components: - - pos: 0.5,19.5 - parent: 1 - type: Transform - - uid: 16696 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,27.5 - parent: 1 - type: Transform - - uid: 16699 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,37.5 - parent: 1 - type: Transform - - uid: 16700 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,37.5 - parent: 1 - type: Transform - - uid: 16701 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,37.5 - parent: 1 - type: Transform - - uid: 16703 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,37.5 - parent: 1 - type: Transform - - uid: 16704 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,37.5 - parent: 1 - type: Transform - - uid: 16705 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,37.5 - parent: 1 - type: Transform - - uid: 16706 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,37.5 - parent: 1 - type: Transform - - uid: 16707 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,37.5 - parent: 1 - type: Transform - - uid: 16708 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,37.5 - parent: 1 - type: Transform - - uid: 16709 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,37.5 - parent: 1 - type: Transform - - uid: 16710 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,37.5 - parent: 1 - type: Transform - - uid: 16711 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,37.5 - parent: 1 - type: Transform - - uid: 16712 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,37.5 - parent: 1 - type: Transform - - uid: 16713 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,37.5 - parent: 1 - type: Transform - - uid: 16714 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,37.5 - parent: 1 - type: Transform - - uid: 16715 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,37.5 - parent: 1 - type: Transform - - uid: 16716 - components: - - pos: 14.5,46.5 - parent: 1 - type: Transform - - uid: 16717 - components: - - pos: 14.5,45.5 - parent: 1 - type: Transform - - uid: 16718 - components: - - pos: 14.5,44.5 - parent: 1 - type: Transform - - uid: 16719 - components: - - pos: 14.5,43.5 - parent: 1 - type: Transform - - uid: 16720 - components: - - pos: 14.5,42.5 - parent: 1 - type: Transform - - uid: 16721 - components: - - pos: 14.5,41.5 - parent: 1 - type: Transform - - uid: 16722 - components: - - pos: 14.5,40.5 - parent: 1 - type: Transform - - uid: 16723 - components: - - pos: 14.5,39.5 - parent: 1 - type: Transform - - uid: 16724 - components: - - pos: 14.5,38.5 - parent: 1 - type: Transform - - uid: 16726 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,37.5 - parent: 1 - type: Transform - - uid: 16727 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,37.5 - parent: 1 - type: Transform - - uid: 16728 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,37.5 - parent: 1 - type: Transform - - uid: 16729 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,37.5 - parent: 1 - type: Transform - - uid: 16730 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,37.5 - parent: 1 - type: Transform - - uid: 16731 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,37.5 - parent: 1 - type: Transform - - uid: 16732 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,37.5 - parent: 1 - type: Transform - - uid: 16733 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,37.5 - parent: 1 - type: Transform - - uid: 16734 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,37.5 - parent: 1 - type: Transform - - uid: 16735 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,37.5 - parent: 1 - type: Transform - - uid: 16736 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,37.5 - parent: 1 - type: Transform - - uid: 16737 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,37.5 - parent: 1 - type: Transform - - uid: 16739 - components: - - rot: 3.141592653589793 rad - pos: 31.5,38.5 - parent: 1 - type: Transform - - uid: 16740 - components: - - rot: 3.141592653589793 rad - pos: 31.5,39.5 - parent: 1 - type: Transform - - uid: 16741 - components: - - rot: 3.141592653589793 rad - pos: 31.5,40.5 - parent: 1 - type: Transform - - uid: 16742 - components: - - rot: 3.141592653589793 rad - pos: 31.5,41.5 - parent: 1 - type: Transform - - uid: 16743 - components: - - rot: 3.141592653589793 rad - pos: 31.5,42.5 - parent: 1 - type: Transform - - uid: 16745 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,43.5 - parent: 1 - type: Transform - - uid: 16746 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,43.5 - parent: 1 - type: Transform - - uid: 16747 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,43.5 - parent: 1 - type: Transform - - uid: 16749 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,37.5 - parent: 1 - type: Transform - - uid: 16751 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,37.5 - parent: 1 - type: Transform - - uid: 16752 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,37.5 - parent: 1 - type: Transform - - uid: 16753 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,37.5 - parent: 1 - type: Transform - - uid: 16754 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,37.5 - parent: 1 - type: Transform - - uid: 16755 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,37.5 - parent: 1 - type: Transform - - uid: 16756 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,37.5 - parent: 1 - type: Transform - - uid: 16757 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,37.5 - parent: 1 - type: Transform - - uid: 16758 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,37.5 - parent: 1 - type: Transform - - uid: 16759 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,37.5 - parent: 1 - type: Transform - - uid: 16760 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,37.5 - parent: 1 - type: Transform - - uid: 16761 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,37.5 - parent: 1 - type: Transform - - uid: 16762 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,37.5 - parent: 1 - type: Transform - - uid: 16763 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,37.5 - parent: 1 - type: Transform - - uid: 16764 - components: - - rot: 1.5707963267948966 rad - pos: 46.5,37.5 - parent: 1 - type: Transform - - uid: 16765 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,37.5 - parent: 1 - type: Transform - - uid: 16767 - components: - - rot: 3.141592653589793 rad - pos: 48.5,38.5 - parent: 1 - type: Transform - - uid: 16768 - components: - - rot: 3.141592653589793 rad - pos: 48.5,39.5 - parent: 1 - type: Transform - - uid: 16769 - components: - - rot: 3.141592653589793 rad - pos: 48.5,40.5 - parent: 1 - type: Transform - - uid: 16770 - components: - - rot: 3.141592653589793 rad - pos: 48.5,41.5 - parent: 1 - type: Transform - - uid: 16774 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,17.5 - parent: 1 - type: Transform - - uid: 16775 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,17.5 - parent: 1 - type: Transform - - uid: 16776 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,17.5 - parent: 1 - type: Transform - - uid: 16777 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,17.5 - parent: 1 - type: Transform - - uid: 16778 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,17.5 - parent: 1 - type: Transform - - uid: 16779 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,17.5 - parent: 1 - type: Transform - - uid: 16780 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,17.5 - parent: 1 - type: Transform - - uid: 16781 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,17.5 - parent: 1 - type: Transform - - uid: 16782 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,17.5 - parent: 1 - type: Transform - - uid: 16783 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,17.5 - parent: 1 - type: Transform - - uid: 16784 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,17.5 - parent: 1 - type: Transform - - uid: 16785 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,17.5 - parent: 1 - type: Transform - - uid: 16786 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,17.5 - parent: 1 - type: Transform - - uid: 16787 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,17.5 - parent: 1 - type: Transform - - uid: 16789 - components: - - rot: 3.141592653589793 rad - pos: 16.5,18.5 - parent: 1 - type: Transform - - uid: 16790 - components: - - rot: 3.141592653589793 rad - pos: 16.5,19.5 - parent: 1 - type: Transform - - uid: 16794 - components: - - pos: 7.5,33.5 - parent: 1 - type: Transform - - uid: 16795 - components: - - pos: 7.5,32.5 - parent: 1 - type: Transform - - uid: 16796 - components: - - pos: 7.5,31.5 - parent: 1 - type: Transform - - uid: 16797 - components: - - pos: 7.5,30.5 - parent: 1 - type: Transform - - uid: 16798 - components: - - pos: 7.5,29.5 - parent: 1 - type: Transform - - uid: 16801 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,28.5 - parent: 1 - type: Transform - - uid: 16802 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,28.5 - parent: 1 - type: Transform - - uid: 16803 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,28.5 - parent: 1 - type: Transform - - uid: 16804 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,28.5 - parent: 1 - type: Transform - - uid: 16805 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,28.5 - parent: 1 - type: Transform - - uid: 16806 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,28.5 - parent: 1 - type: Transform - - uid: 16807 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,28.5 - parent: 1 - type: Transform - - uid: 16810 - components: - - pos: 11.5,27.5 - parent: 1 - type: Transform - - uid: 16811 - components: - - pos: 11.5,26.5 - parent: 1 - type: Transform - - uid: 16812 - components: - - pos: 11.5,25.5 - parent: 1 - type: Transform - - uid: 16813 - components: - - pos: 11.5,24.5 - parent: 1 - type: Transform - - uid: 16814 - components: - - pos: 11.5,23.5 - parent: 1 - type: Transform - - uid: 16815 - components: - - pos: 11.5,22.5 - parent: 1 - type: Transform - - uid: 16816 - components: - - pos: 11.5,21.5 - parent: 1 - type: Transform - - uid: 16817 - components: - - pos: 11.5,20.5 - parent: 1 - type: Transform - - uid: 16818 - components: - - pos: 11.5,19.5 - parent: 1 - type: Transform - - uid: 16819 - components: - - pos: 11.5,18.5 - parent: 1 - type: Transform - - uid: 16820 - components: - - pos: 0.5,16.5 - parent: 1 - type: Transform - - uid: 16823 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,15.5 - parent: 1 - type: Transform - - uid: 16824 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,14.5 - parent: 1 - type: Transform - - uid: 16826 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,26.5 - parent: 1 - type: Transform - - uid: 16828 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,26.5 - parent: 1 - type: Transform - - uid: 16829 - components: - - rot: 3.141592653589793 rad - pos: 30.5,25.5 - parent: 1 - type: Transform - - uid: 16830 - components: - - rot: 3.141592653589793 rad - pos: 30.5,24.5 - parent: 1 - type: Transform - - uid: 16831 - components: - - rot: 3.141592653589793 rad - pos: 30.5,23.5 - parent: 1 - type: Transform - - uid: 16832 - components: - - rot: 3.141592653589793 rad - pos: 30.5,22.5 - parent: 1 - type: Transform - - uid: 16834 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,21.5 - parent: 1 - type: Transform - - uid: 16835 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,21.5 - parent: 1 - type: Transform - - uid: 16837 - components: - - pos: 27.5,22.5 - parent: 1 - type: Transform - - uid: 16839 - components: - - pos: 30.5,20.5 - parent: 1 - type: Transform - - uid: 16840 - components: - - pos: 30.5,19.5 - parent: 1 - type: Transform - - uid: 16841 - components: - - pos: 30.5,18.5 - parent: 1 - type: Transform - - uid: 16842 - components: - - pos: 30.5,17.5 - parent: 1 - type: Transform - - uid: 16843 - components: - - pos: 30.5,16.5 - parent: 1 - type: Transform - - uid: 16853 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,13.5 - parent: 1 - type: Transform - - uid: 16854 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,13.5 - parent: 1 - type: Transform - - uid: 16855 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,13.5 - parent: 1 - type: Transform - - uid: 16856 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,13.5 - parent: 1 - type: Transform - - uid: 16857 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,13.5 - parent: 1 - type: Transform - - uid: 16858 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,13.5 - parent: 1 - type: Transform - - uid: 16859 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,13.5 - parent: 1 - type: Transform - - uid: 16860 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,13.5 - parent: 1 - type: Transform - - uid: 16861 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,13.5 - parent: 1 - type: Transform - - uid: 16862 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,13.5 - parent: 1 - type: Transform - - uid: 16863 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,13.5 - parent: 1 - type: Transform - - uid: 16864 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,13.5 - parent: 1 - type: Transform - - uid: 16865 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,13.5 - parent: 1 - type: Transform - - uid: 16866 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,13.5 - parent: 1 - type: Transform - - uid: 16868 - components: - - rot: 3.141592653589793 rad - pos: 30.5,15.5 - parent: 1 - type: Transform - - uid: 16870 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,14.5 - parent: 1 - type: Transform - - uid: 16871 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,14.5 - parent: 1 - type: Transform - - uid: 16872 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,14.5 - parent: 1 - type: Transform - - uid: 16873 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,14.5 - parent: 1 - type: Transform - - uid: 16874 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,14.5 - parent: 1 - type: Transform - - uid: 16875 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,14.5 - parent: 1 - type: Transform - - uid: 16876 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,14.5 - parent: 1 - type: Transform - - uid: 16877 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,14.5 - parent: 1 - type: Transform - - uid: 16878 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,14.5 - parent: 1 - type: Transform - - uid: 16879 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,14.5 - parent: 1 - type: Transform - - uid: 16880 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,14.5 - parent: 1 - type: Transform - - uid: 16881 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,14.5 - parent: 1 - type: Transform - - uid: 16882 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,14.5 - parent: 1 - type: Transform - - uid: 16883 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,14.5 - parent: 1 - type: Transform - - uid: 16884 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,14.5 - parent: 1 - type: Transform - - uid: 16885 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,14.5 - parent: 1 - type: Transform - - uid: 16886 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,14.5 - parent: 1 - type: Transform - - uid: 16887 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,14.5 - parent: 1 - type: Transform - - uid: 16888 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,14.5 - parent: 1 - type: Transform - - uid: 16889 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,14.5 - parent: 1 - type: Transform - - uid: 16890 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,14.5 - parent: 1 - type: Transform - - uid: 16891 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,14.5 - parent: 1 - type: Transform - - uid: 16892 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,14.5 - parent: 1 - type: Transform - - uid: 16893 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,14.5 - parent: 1 - type: Transform - - uid: 16894 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,14.5 - parent: 1 - type: Transform - - uid: 16895 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,14.5 - parent: 1 - type: Transform - - uid: 16896 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,14.5 - parent: 1 - type: Transform - - uid: 16897 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,14.5 - parent: 1 - type: Transform - - uid: 16900 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,14.5 - parent: 1 - type: Transform - - uid: 16901 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,14.5 - parent: 1 - type: Transform - - uid: 16902 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,14.5 - parent: 1 - type: Transform - - uid: 16903 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,14.5 - parent: 1 - type: Transform - - uid: 16904 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,14.5 - parent: 1 - type: Transform - - uid: 16905 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,14.5 - parent: 1 - type: Transform - - uid: 16906 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,14.5 - parent: 1 - type: Transform - - uid: 16907 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,14.5 - parent: 1 - type: Transform - - uid: 16908 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,14.5 - parent: 1 - type: Transform - - uid: 16909 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,14.5 - parent: 1 - type: Transform - - uid: 16910 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,14.5 - parent: 1 - type: Transform - - uid: 16911 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,14.5 - parent: 1 - type: Transform - - uid: 16912 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,14.5 - parent: 1 - type: Transform - - uid: 16913 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,14.5 - parent: 1 - type: Transform - - uid: 16914 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,14.5 - parent: 1 - type: Transform - - uid: 16915 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,14.5 - parent: 1 - type: Transform - - uid: 16916 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,14.5 - parent: 1 - type: Transform - - uid: 16917 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,14.5 - parent: 1 - type: Transform - - uid: 16918 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,14.5 - parent: 1 - type: Transform - - uid: 16919 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,14.5 - parent: 1 - type: Transform - - uid: 16920 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,14.5 - parent: 1 - type: Transform - - uid: 16923 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,14.5 - parent: 1 - type: Transform - - uid: 16924 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,14.5 - parent: 1 - type: Transform - - uid: 16925 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,14.5 - parent: 1 - type: Transform - - uid: 16926 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,14.5 - parent: 1 - type: Transform - - uid: 16927 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,14.5 - parent: 1 - type: Transform - - uid: 16928 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,14.5 - parent: 1 - type: Transform - - uid: 16929 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,14.5 - parent: 1 - type: Transform - - uid: 16931 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,14.5 - parent: 1 - type: Transform - - uid: 16932 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,14.5 - parent: 1 - type: Transform - - uid: 16935 - components: - - rot: 3.141592653589793 rad - pos: -45.5,13.5 - parent: 1 - type: Transform - - uid: 16936 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,14.5 - parent: 1 - type: Transform - - uid: 16937 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,14.5 - parent: 1 - type: Transform - - uid: 16938 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,14.5 - parent: 1 - type: Transform - - uid: 16939 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,14.5 - parent: 1 - type: Transform - - uid: 16940 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,14.5 - parent: 1 - type: Transform - - uid: 16941 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,14.5 - parent: 1 - type: Transform - - uid: 16942 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,14.5 - parent: 1 - type: Transform - - uid: 16944 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,14.5 - parent: 1 - type: Transform - - uid: 16945 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,14.5 - parent: 1 - type: Transform - - uid: 16947 - components: - - pos: -34.5,15.5 - parent: 1 - type: Transform - - uid: 16949 - components: - - pos: -31.5,15.5 - parent: 1 - type: Transform - - uid: 16950 - components: - - pos: -31.5,16.5 - parent: 1 - type: Transform - - uid: 16951 - components: - - pos: -31.5,17.5 - parent: 1 - type: Transform - - uid: 16952 - components: - - pos: -31.5,18.5 - parent: 1 - type: Transform - - uid: 16953 - components: - - pos: -31.5,19.5 - parent: 1 - type: Transform - - uid: 16954 - components: - - pos: -31.5,20.5 - parent: 1 - type: Transform - - uid: 16955 - components: - - pos: -31.5,21.5 - parent: 1 - type: Transform - - uid: 16962 - components: - - rot: 3.141592653589793 rad - pos: -37.5,23.5 - parent: 1 - type: Transform - - uid: 16963 - components: - - rot: 3.141592653589793 rad - pos: -37.5,22.5 - parent: 1 - type: Transform - - uid: 16964 - components: - - rot: 3.141592653589793 rad - pos: -37.5,21.5 - parent: 1 - type: Transform - - uid: 16965 - components: - - rot: 3.141592653589793 rad - pos: -37.5,20.5 - parent: 1 - type: Transform - - uid: 16966 - components: - - rot: 3.141592653589793 rad - pos: -37.5,19.5 - parent: 1 - type: Transform - - uid: 16967 - components: - - rot: 3.141592653589793 rad - pos: -37.5,18.5 - parent: 1 - type: Transform - - uid: 16968 - components: - - rot: 3.141592653589793 rad - pos: -37.5,17.5 - parent: 1 - type: Transform - - uid: 16969 - components: - - rot: 3.141592653589793 rad - pos: -37.5,16.5 - parent: 1 - type: Transform - - uid: 16970 - components: - - rot: 3.141592653589793 rad - pos: -37.5,15.5 - parent: 1 - type: Transform - - uid: 16976 - components: - - pos: 1.5,12.5 - parent: 1 - type: Transform - - uid: 16977 - components: - - pos: 1.5,11.5 - parent: 1 - type: Transform - - uid: 16978 - components: - - pos: 1.5,10.5 - parent: 1 - type: Transform - - uid: 16979 - components: - - pos: 1.5,9.5 - parent: 1 - type: Transform - - uid: 16980 - components: - - pos: 1.5,8.5 - parent: 1 - type: Transform - - uid: 16981 - components: - - pos: 1.5,7.5 - parent: 1 - type: Transform - - uid: 16982 - components: - - pos: 1.5,6.5 - parent: 1 - type: Transform - - uid: 16983 - components: - - pos: 1.5,4.5 - parent: 1 - type: Transform - - uid: 16984 - components: - - pos: 1.5,3.5 - parent: 1 - type: Transform - - uid: 16985 - components: - - pos: 1.5,0.5 - parent: 1 - type: Transform - - uid: 16986 - components: - - pos: 1.5,-0.5 - parent: 1 - type: Transform - - uid: 16987 - components: - - pos: 1.5,-1.5 - parent: 1 - type: Transform - - uid: 16988 - components: - - pos: 1.5,-2.5 - parent: 1 - type: Transform - - uid: 16989 - components: - - pos: 1.5,-3.5 - parent: 1 - type: Transform - - uid: 16990 - components: - - pos: 1.5,-5.5 - parent: 1 - type: Transform - - uid: 16991 - components: - - pos: 1.5,-6.5 - parent: 1 - type: Transform - - uid: 16992 - components: - - pos: 1.5,-7.5 - parent: 1 - type: Transform - - uid: 16995 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,1.5 - parent: 1 - type: Transform - - uid: 16996 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,1.5 - parent: 1 - type: Transform - - uid: 16997 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,1.5 - parent: 1 - type: Transform - - uid: 16998 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,1.5 - parent: 1 - type: Transform - - uid: 16999 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,1.5 - parent: 1 - type: Transform - - uid: 17000 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,1.5 - parent: 1 - type: Transform - - uid: 17001 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,1.5 - parent: 1 - type: Transform - - uid: 17002 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,1.5 - parent: 1 - type: Transform - - uid: 17003 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,1.5 - parent: 1 - type: Transform - - uid: 17004 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,1.5 - parent: 1 - type: Transform - - uid: 17005 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,1.5 - parent: 1 - type: Transform - - uid: 17006 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,1.5 - parent: 1 - type: Transform - - uid: 17007 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,1.5 - parent: 1 - type: Transform - - uid: 17008 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,1.5 - parent: 1 - type: Transform - - uid: 17010 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,2.5 - parent: 1 - type: Transform - - uid: 17011 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,5.5 - parent: 1 - type: Transform - - uid: 17012 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,5.5 - parent: 1 - type: Transform - - uid: 17013 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,5.5 - parent: 1 - type: Transform - - uid: 17014 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,5.5 - parent: 1 - type: Transform - - uid: 17015 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,5.5 - parent: 1 - type: Transform - - uid: 17016 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,5.5 - parent: 1 - type: Transform - - uid: 17017 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,5.5 - parent: 1 - type: Transform - - uid: 17018 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,5.5 - parent: 1 - type: Transform - - uid: 17019 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,5.5 - parent: 1 - type: Transform - - uid: 17021 - components: - - rot: 3.141592653589793 rad - pos: 11.5,6.5 - parent: 1 - type: Transform - - uid: 17028 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 1 - type: Transform - - uid: 17029 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-4.5 - parent: 1 - type: Transform - - uid: 17030 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-4.5 - parent: 1 - type: Transform - - uid: 17031 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-4.5 - parent: 1 - type: Transform - - uid: 17032 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-4.5 - parent: 1 - type: Transform - - uid: 17036 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-18.5 - parent: 1 - type: Transform - - uid: 17037 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-17.5 - parent: 1 - type: Transform - - uid: 17038 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-16.5 - parent: 1 - type: Transform - - uid: 17039 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-15.5 - parent: 1 - type: Transform - - uid: 17040 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-14.5 - parent: 1 - type: Transform - - uid: 17041 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-13.5 - parent: 1 - type: Transform - - uid: 17042 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-12.5 - parent: 1 - type: Transform - - uid: 17043 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-11.5 - parent: 1 - type: Transform - - uid: 17044 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-10.5 - parent: 1 - type: Transform - - uid: 17045 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-9.5 - parent: 1 - type: Transform - - uid: 17047 - components: - - rot: 3.141592653589793 rad - pos: -38.5,-1.5 - parent: 1 - type: Transform - - uid: 17048 - components: - - rot: 3.141592653589793 rad - pos: -38.5,-0.5 - parent: 1 - type: Transform - - uid: 17049 - components: - - rot: 3.141592653589793 rad - pos: -38.5,0.5 - parent: 1 - type: Transform - - uid: 17050 - components: - - rot: 3.141592653589793 rad - pos: -38.5,1.5 - parent: 1 - type: Transform - - uid: 17054 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,2.5 - parent: 1 - type: Transform - - uid: 17055 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,2.5 - parent: 1 - type: Transform - - uid: 17056 - components: - - pos: -35.5,3.5 - parent: 1 - type: Transform - - uid: 17057 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,4.5 - parent: 1 - type: Transform - - uid: 17058 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,4.5 - parent: 1 - type: Transform - - uid: 17059 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,4.5 - parent: 1 - type: Transform - - uid: 17061 - components: - - pos: -31.5,3.5 - parent: 1 - type: Transform - - uid: 17062 - components: - - pos: -31.5,2.5 - parent: 1 - type: Transform - - uid: 17063 - components: - - pos: -31.5,1.5 - parent: 1 - type: Transform - - uid: 17064 - components: - - pos: -31.5,0.5 - parent: 1 - type: Transform - - uid: 17065 - components: - - pos: -31.5,-0.5 - parent: 1 - type: Transform - - uid: 17066 - components: - - pos: -31.5,-1.5 - parent: 1 - type: Transform - - uid: 17067 - components: - - pos: -31.5,-2.5 - parent: 1 - type: Transform - - uid: 17068 - components: - - pos: -31.5,-3.5 - parent: 1 - type: Transform - - uid: 17069 - components: - - pos: -31.5,-4.5 - parent: 1 - type: Transform - - uid: 17070 - components: - - pos: -31.5,-5.5 - parent: 1 - type: Transform - - uid: 17071 - components: - - pos: -31.5,-6.5 - parent: 1 - type: Transform - - uid: 17072 - components: - - pos: -31.5,-7.5 - parent: 1 - type: Transform - - uid: 17074 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-8.5 - parent: 1 - type: Transform - - uid: 17076 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-8.5 - parent: 1 - type: Transform - - uid: 17077 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-8.5 - parent: 1 - type: Transform - - uid: 17078 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-8.5 - parent: 1 - type: Transform - - uid: 17079 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-8.5 - parent: 1 - type: Transform - - uid: 17080 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-8.5 - parent: 1 - type: Transform - - uid: 17081 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-8.5 - parent: 1 - type: Transform - - uid: 17082 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-8.5 - parent: 1 - type: Transform - - uid: 17083 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-8.5 - parent: 1 - type: Transform - - uid: 17084 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-8.5 - parent: 1 - type: Transform - - uid: 17085 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-8.5 - parent: 1 - type: Transform - - uid: 17086 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-8.5 - parent: 1 - type: Transform - - uid: 17087 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-8.5 - parent: 1 - type: Transform - - uid: 17088 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-8.5 - parent: 1 - type: Transform - - uid: 17089 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-8.5 - parent: 1 - type: Transform - - uid: 17090 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-8.5 - parent: 1 - type: Transform - - uid: 17091 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-8.5 - parent: 1 - type: Transform - - uid: 17092 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-8.5 - parent: 1 - type: Transform - - uid: 17093 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-8.5 - parent: 1 - type: Transform - - uid: 17095 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-14.5 - parent: 1 - type: Transform - - uid: 17096 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-14.5 - parent: 1 - type: Transform - - uid: 17097 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-14.5 - parent: 1 - type: Transform - - uid: 17099 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-13.5 - parent: 1 - type: Transform - - uid: 17100 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-12.5 - parent: 1 - type: Transform - - uid: 17101 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-11.5 - parent: 1 - type: Transform - - uid: 17102 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-10.5 - parent: 1 - type: Transform - - uid: 17103 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-9.5 - parent: 1 - type: Transform - - uid: 17105 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-8.5 - parent: 1 - type: Transform - - uid: 17106 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-8.5 - parent: 1 - type: Transform - - uid: 17107 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-8.5 - parent: 1 - type: Transform - - uid: 17108 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-8.5 - parent: 1 - type: Transform - - uid: 17109 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-8.5 - parent: 1 - type: Transform - - uid: 17110 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-8.5 - parent: 1 - type: Transform - - uid: 17111 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-8.5 - parent: 1 - type: Transform - - uid: 17112 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-8.5 - parent: 1 - type: Transform - - uid: 17113 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-8.5 - parent: 1 - type: Transform - - uid: 17114 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-8.5 - parent: 1 - type: Transform - - uid: 17115 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-8.5 - parent: 1 - type: Transform - - uid: 17116 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-8.5 - parent: 1 - type: Transform - - uid: 17118 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-14.5 - parent: 1 - type: Transform - - uid: 17119 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-13.5 - parent: 1 - type: Transform - - uid: 17120 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-12.5 - parent: 1 - type: Transform - - uid: 17121 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-11.5 - parent: 1 - type: Transform - - uid: 17122 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-10.5 - parent: 1 - type: Transform - - uid: 17123 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-9.5 - parent: 1 - type: Transform - - uid: 17124 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-8.5 - parent: 1 - type: Transform - - uid: 17125 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-8.5 - parent: 1 - type: Transform - - uid: 17126 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-8.5 - parent: 1 - type: Transform - - uid: 17127 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-8.5 - parent: 1 - type: Transform - - uid: 17128 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-8.5 - parent: 1 - type: Transform - - uid: 17129 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-8.5 - parent: 1 - type: Transform - - uid: 17130 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-8.5 - parent: 1 - type: Transform - - uid: 17131 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-8.5 - parent: 1 - type: Transform - - uid: 17133 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-8.5 - parent: 1 - type: Transform - - uid: 17134 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-8.5 - parent: 1 - type: Transform - - uid: 17136 - components: - - pos: 13.5,-7.5 - parent: 1 - type: Transform - - uid: 17138 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-8.5 - parent: 1 - type: Transform - - uid: 17139 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-8.5 - parent: 1 - type: Transform - - uid: 17140 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-8.5 - parent: 1 - type: Transform - - uid: 17141 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-8.5 - parent: 1 - type: Transform - - uid: 17142 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-8.5 - parent: 1 - type: Transform - - uid: 17144 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-3.5 - parent: 1 - type: Transform - - uid: 17146 - components: - - pos: 19.5,-4.5 - parent: 1 - type: Transform - - uid: 17147 - components: - - pos: 19.5,-5.5 - parent: 1 - type: Transform - - uid: 17148 - components: - - pos: 19.5,-6.5 - parent: 1 - type: Transform - - uid: 17149 - components: - - pos: 19.5,-7.5 - parent: 1 - type: Transform - - uid: 17151 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-8.5 - parent: 1 - type: Transform - - uid: 17152 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-8.5 - parent: 1 - type: Transform - - uid: 17153 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-8.5 - parent: 1 - type: Transform - - uid: 17154 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-8.5 - parent: 1 - type: Transform - - uid: 17156 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-8.5 - parent: 1 - type: Transform - - uid: 17157 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-8.5 - parent: 1 - type: Transform - - uid: 17158 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-8.5 - parent: 1 - type: Transform - - uid: 17159 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-8.5 - parent: 1 - type: Transform - - uid: 17160 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-8.5 - parent: 1 - type: Transform - - uid: 17161 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-8.5 - parent: 1 - type: Transform - - uid: 17162 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-8.5 - parent: 1 - type: Transform - - uid: 17163 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-8.5 - parent: 1 - type: Transform - - uid: 17164 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-8.5 - parent: 1 - type: Transform - - uid: 17165 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-8.5 - parent: 1 - type: Transform - - uid: 17166 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-8.5 - parent: 1 - type: Transform - - uid: 17167 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-8.5 - parent: 1 - type: Transform - - uid: 17168 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-8.5 - parent: 1 - type: Transform - - uid: 17169 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-8.5 - parent: 1 - type: Transform - - uid: 17170 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-8.5 - parent: 1 - type: Transform - - uid: 17171 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-8.5 - parent: 1 - type: Transform - - uid: 17172 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-8.5 - parent: 1 - type: Transform - - uid: 17173 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-8.5 - parent: 1 - type: Transform - - uid: 17174 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-8.5 - parent: 1 - type: Transform - - uid: 17176 - components: - - rot: 3.141592653589793 rad - pos: 45.5,-7.5 - parent: 1 - type: Transform - - uid: 17179 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-7.5 - parent: 1 - type: Transform - - uid: 17180 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-6.5 - parent: 1 - type: Transform - - uid: 17181 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-5.5 - parent: 1 - type: Transform - - uid: 17182 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-4.5 - parent: 1 - type: Transform - - uid: 17183 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-3.5 - parent: 1 - type: Transform - - uid: 17184 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-2.5 - parent: 1 - type: Transform - - uid: 17185 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-1.5 - parent: 1 - type: Transform - - uid: 17186 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-0.5 - parent: 1 - type: Transform - - uid: 17187 - components: - - rot: 3.141592653589793 rad - pos: 31.5,0.5 - parent: 1 - type: Transform - - uid: 17188 - components: - - rot: 3.141592653589793 rad - pos: 31.5,1.5 - parent: 1 - type: Transform - - uid: 17189 - components: - - rot: 3.141592653589793 rad - pos: 31.5,2.5 - parent: 1 - type: Transform - - uid: 17190 - components: - - rot: 3.141592653589793 rad - pos: 31.5,3.5 - parent: 1 - type: Transform - - uid: 17191 - components: - - rot: 3.141592653589793 rad - pos: 31.5,4.5 - parent: 1 - type: Transform - - uid: 17192 - components: - - rot: 3.141592653589793 rad - pos: 31.5,5.5 - parent: 1 - type: Transform - - uid: 17193 - components: - - rot: 3.141592653589793 rad - pos: 31.5,6.5 - parent: 1 - type: Transform - - uid: 17195 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,7.5 - parent: 1 - type: Transform - - uid: 17197 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-9.5 - parent: 1 - type: Transform - - uid: 17198 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-10.5 - parent: 1 - type: Transform - - uid: 17199 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-11.5 - parent: 1 - type: Transform - - uid: 17200 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-12.5 - parent: 1 - type: Transform - - uid: 17201 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-13.5 - parent: 1 - type: Transform - - uid: 17202 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-14.5 - parent: 1 - type: Transform - - uid: 17203 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-15.5 - parent: 1 - type: Transform - - uid: 17204 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-16.5 - parent: 1 - type: Transform - - uid: 17205 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-17.5 - parent: 1 - type: Transform - - uid: 17206 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-18.5 - parent: 1 - type: Transform - - uid: 17207 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-19.5 - parent: 1 - type: Transform - - uid: 17208 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-20.5 - parent: 1 - type: Transform - - uid: 17209 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-21.5 - parent: 1 - type: Transform - - uid: 17210 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-22.5 - parent: 1 - type: Transform - - uid: 17211 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-23.5 - parent: 1 - type: Transform - - uid: 17214 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-24.5 - parent: 1 - type: Transform - - uid: 17215 - components: - - rot: 3.141592653589793 rad - pos: 22.5,-25.5 - parent: 1 - type: Transform - - uid: 17216 - components: - - rot: 3.141592653589793 rad - pos: 22.5,-26.5 - parent: 1 - type: Transform - - uid: 17219 - components: - - pos: 21.5,-28.5 - parent: 1 - type: Transform - - uid: 17221 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-29.5 - parent: 1 - type: Transform - - uid: 17222 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-29.5 - parent: 1 - type: Transform - - uid: 17223 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-29.5 - parent: 1 - type: Transform - - uid: 17224 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-29.5 - parent: 1 - type: Transform - - uid: 17225 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-29.5 - parent: 1 - type: Transform - - uid: 17227 - components: - - pos: 15.5,-30.5 - parent: 1 - type: Transform - - uid: 17228 - components: - - pos: 15.5,-31.5 - parent: 1 - type: Transform - - uid: 17229 - components: - - pos: 15.5,-32.5 - parent: 1 - type: Transform - - uid: 17230 - components: - - pos: 15.5,-33.5 - parent: 1 - type: Transform - - uid: 17232 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-34.5 - parent: 1 - type: Transform - - uid: 17234 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-33.5 - parent: 1 - type: Transform -- proto: DisposalTrunk - entities: - - uid: 1783 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,24.5 - parent: 1 - type: Transform - - uid: 16491 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,70.5 - parent: 1 - type: Transform - - uid: 16505 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,76.5 - parent: 1 - type: Transform - - uid: 16523 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,68.5 - parent: 1 - type: Transform - - uid: 16535 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,57.5 - parent: 1 - type: Transform - - uid: 16548 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,52.5 - parent: 1 - type: Transform - - uid: 16549 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,53.5 - parent: 1 - type: Transform - - uid: 16611 - components: - - rot: 3.141592653589793 rad - pos: -15.5,30.5 - parent: 1 - type: Transform - - uid: 16623 - components: - - pos: -24.5,38.5 - parent: 1 - type: Transform - - uid: 16651 - components: - - pos: -45.5,44.5 - parent: 1 - type: Transform - - uid: 16655 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,23.5 - parent: 1 - type: Transform - - uid: 16695 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,27.5 - parent: 1 - type: Transform - - uid: 16697 - components: - - rot: 3.141592653589793 rad - pos: 18.5,36.5 - parent: 1 - type: Transform - - uid: 16702 - components: - - pos: 14.5,47.5 - parent: 1 - type: Transform - - uid: 16748 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,43.5 - parent: 1 - type: Transform - - uid: 16771 - components: - - pos: 48.5,42.5 - parent: 1 - type: Transform - - uid: 16791 - components: - - pos: 16.5,20.5 - parent: 1 - type: Transform - - uid: 16793 - components: - - pos: 7.5,34.5 - parent: 1 - type: Transform - - uid: 16809 - components: - - pos: 16.5,29.5 - parent: 1 - type: Transform - - uid: 16825 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,26.5 - parent: 1 - type: Transform - - uid: 16838 - components: - - pos: 27.5,23.5 - parent: 1 - type: Transform - - uid: 16851 - components: - - rot: 3.141592653589793 rad - pos: 45.5,12.5 - parent: 1 - type: Transform - - uid: 16921 - components: - - pos: -23.5,15.5 - parent: 1 - type: Transform - - uid: 16934 - components: - - rot: 3.141592653589793 rad - pos: -45.5,12.5 - parent: 1 - type: Transform - - uid: 16948 - components: - - pos: -34.5,16.5 - parent: 1 - type: Transform - - uid: 16972 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,22.5 - parent: 1 - type: Transform - - uid: 16994 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,1.5 - parent: 1 - type: Transform - - uid: 17009 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,2.5 - parent: 1 - type: Transform - - uid: 17022 - components: - - pos: 11.5,7.5 - parent: 1 - type: Transform - - uid: 17034 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-5.5 - parent: 1 - type: Transform - - uid: 17035 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-19.5 - parent: 1 - type: Transform - - uid: 17046 - components: - - rot: 3.141592653589793 rad - pos: -38.5,-2.5 - parent: 1 - type: Transform - - uid: 17073 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-8.5 - parent: 1 - type: Transform - - uid: 17094 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-14.5 - parent: 1 - type: Transform - - uid: 17117 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-15.5 - parent: 1 - type: Transform - - uid: 17137 - components: - - pos: 13.5,-6.5 - parent: 1 - type: Transform - - uid: 17143 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-3.5 - parent: 1 - type: Transform - - uid: 17177 - components: - - pos: 45.5,-6.5 - parent: 1 - type: Transform - - uid: 17196 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,7.5 - parent: 1 - type: Transform - - uid: 17235 - components: - - pos: 17.5,-32.5 - parent: 1 - type: Transform -- proto: DisposalUnit - entities: - - uid: 1988 - components: - - pos: -36.5,24.5 - parent: 1 - type: Transform - - uid: 2033 - components: - - pos: 33.5,7.5 - parent: 1 - type: Transform - - uid: 4017 - components: - - pos: 4.5,52.5 - parent: 1 - type: Transform - - uid: 4082 - components: - - pos: 7.5,34.5 - parent: 1 - type: Transform - - uid: 4389 - components: - - pos: 3.5,2.5 - parent: 1 - type: Transform - - uid: 6403 - components: - - pos: 16.5,20.5 - parent: 1 - type: Transform - - uid: 6404 - components: - - pos: 16.5,29.5 - parent: 1 - type: Transform - - uid: 6949 - components: - - pos: 27.5,23.5 - parent: 1 - type: Transform - - uid: 8065 - components: - - pos: -7.5,76.5 - parent: 1 - type: Transform - - uid: 8087 - components: - - pos: 2.5,70.5 - parent: 1 - type: Transform - - uid: 8415 - components: - - pos: -45.5,44.5 - parent: 1 - type: Transform - - uid: 8453 - components: - - pos: -3.5,57.5 - parent: 1 - type: Transform - - uid: 8454 - components: - - pos: -2.5,68.5 - parent: 1 - type: Transform - - uid: 8666 - components: - - pos: -21.5,25.5 - parent: 1 - type: Transform - - uid: 8998 - components: - - pos: -13.5,1.5 - parent: 1 - type: Transform - - uid: 9097 - components: - - pos: 10.5,-15.5 - parent: 1 - type: Transform - - uid: 9400 - components: - - pos: -7.5,-14.5 - parent: 1 - type: Transform - - uid: 9433 - components: - - pos: 48.5,42.5 - parent: 1 - type: Transform - - uid: 9437 - components: - - pos: 27.5,26.5 - parent: 1 - type: Transform - - uid: 9441 - components: - - pos: -33.5,-8.5 - parent: 1 - type: Transform - - uid: 9445 - components: - - pos: -30.5,22.5 - parent: 1 - type: Transform - - uid: 9452 - components: - - pos: 7.5,-5.5 - parent: 1 - type: Transform - - uid: 9454 - components: - - pos: 45.5,-6.5 - parent: 1 - type: Transform - - uid: 9455 - components: - - pos: 45.5,12.5 - parent: 1 - type: Transform - - uid: 9456 - components: - - pos: -45.5,12.5 - parent: 1 - type: Transform - - uid: 9459 - components: - - pos: 14.5,47.5 - parent: 1 - type: Transform - - uid: 9469 - components: - - pos: -34.5,16.5 - parent: 1 - type: Transform - - uid: 9488 - components: - - pos: 11.5,7.5 - parent: 1 - type: Transform - - uid: 9536 - components: - - pos: 17.5,-3.5 - parent: 1 - type: Transform - - uid: 9565 - components: - - pos: 13.5,-6.5 - parent: 1 - type: Transform - - uid: 9566 - components: - - pos: -17.5,-19.5 - parent: 1 - type: Transform - - uid: 9595 - components: - - pos: 18.5,36.5 - parent: 1 - type: Transform - - uid: 9597 - components: - - pos: -24.5,38.5 - parent: 1 - type: Transform - - uid: 9702 - components: - - pos: -38.5,-2.5 - parent: 1 - type: Transform - - uid: 9878 - components: - - pos: -17.5,53.5 - parent: 1 - type: Transform - - uid: 9888 - components: - - pos: -23.5,15.5 - parent: 1 - type: Transform - - uid: 16610 - components: - - pos: -15.5,30.5 - parent: 1 - type: Transform - - uid: 16654 - components: - - pos: -9.5,23.5 - parent: 1 - type: Transform - - uid: 16692 - components: - - pos: -1.5,27.5 - parent: 1 - type: Transform - - uid: 16750 - components: - - pos: 27.5,43.5 - parent: 1 - type: Transform -- proto: DisposalYJunction - entities: - - uid: 16490 - components: - - pos: 0.5,76.5 - parent: 1 - type: Transform - - uid: 16799 - components: - - pos: 11.5,28.5 - parent: 1 - type: Transform - - uid: 16869 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,14.5 - parent: 1 - type: Transform - - uid: 17155 - components: - - pos: 24.5,-8.5 - parent: 1 - type: Transform -- proto: DogBed - entities: - - uid: 6680 - components: - - pos: -28.5,6.5 - parent: 1 - type: Transform - - uid: 9216 - components: - - pos: 24.5,2.5 - parent: 1 - type: Transform -- proto: DonkpocketBoxSpawner - entities: - - uid: 9142 - components: - - pos: 9.5,-32.5 - parent: 1 - type: Transform -- proto: DoorElectronics - entities: - - uid: 9129 - components: - - pos: 13.305171,-24.81277 - parent: 1 - type: Transform - - uid: 9130 - components: - - pos: 13.409338,-24.958605 - parent: 1 - type: Transform -- proto: Dresser - entities: - - uid: 931 - components: - - pos: 26.5,53.5 - parent: 1 - type: Transform - - uid: 2488 - components: - - pos: 27.5,8.5 - parent: 1 - type: Transform - - uid: 6503 - components: - - pos: -35.5,-19.5 - parent: 1 - type: Transform - - uid: 6613 - components: - - pos: -15.5,1.5 - parent: 1 - type: Transform - - uid: 6614 - components: - - pos: -15.5,-2.5 - parent: 1 - type: Transform - - uid: 6615 - components: - - pos: -15.5,3.5 - parent: 1 - type: Transform - - uid: 6842 - components: - - pos: 46.5,46.5 - parent: 1 - type: Transform - - uid: 7026 - components: - - pos: -24.5,1.5 - parent: 1 - type: Transform - - uid: 8345 - components: - - pos: -14.5,60.5 - parent: 1 - type: Transform - - uid: 8408 - components: - - pos: 12.5,40.5 - parent: 1 - type: Transform - - uid: 8409 - components: - - pos: 11.5,44.5 - parent: 1 - type: Transform - - uid: 9110 - components: - - pos: 5.5,-23.5 - parent: 1 - type: Transform - - uid: 9327 - components: - - pos: -43.5,11.5 - parent: 1 - type: Transform - - uid: 10385 - components: - - pos: 34.5,-17.5 - parent: 1 - type: Transform -- proto: Drill - entities: - - uid: 6629 - components: - - pos: -18.368849,30.698196 - parent: 1 - type: Transform -- proto: DrinkBottleOfNothingFull - entities: - - uid: 6616 - components: - - pos: -15.221133,5.7888036 - parent: 1 - type: Transform -- proto: DrinkBottleWine - entities: - - uid: 8367 - components: - - pos: 28.565235,49.837475 - parent: 1 - type: Transform -- proto: DrinkDoctorsDelightGlass - entities: - - uid: 8489 - components: - - pos: 16.144281,32.546616 - parent: 1 - type: Transform -- proto: DrinkDriestMartiniGlass - entities: - - uid: 17381 - components: - - pos: -47.28389,35.84451 - parent: 1 - type: Transform -- proto: DrinkFlask - entities: - - uid: 8074 - components: - - pos: -4.482217,79.8525 - parent: 1 - type: Transform -- proto: DrinkGlass - entities: - - uid: 4026 - components: - - pos: -0.59446716,-0.80342096 - parent: 1 - type: Transform - - uid: 8956 - components: - - pos: -12.645039,-3.25968 - parent: 1 - type: Transform - - uid: 9293 - components: - - pos: 12.67594,-1.3800613 - parent: 1 - type: Transform - - uid: 17296 - components: - - pos: -4.7264047,2.7601516 - parent: 1 - type: Transform -- proto: DrinkGoldenCup - entities: - - uid: 7258 - components: - - pos: 4.7445407,45.893764 - parent: 1 - type: Transform -- proto: DrinkIceCreamGlass - entities: - - uid: 9851 - components: - - flags: InContainer - type: MetaData - - parent: 9844 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: DrinkLean - entities: - - uid: 9302 - components: - - pos: 8.325398,0.6884294 - parent: 1 - type: Transform -- proto: DrinkMilkCarton - entities: - - uid: 9299 - components: - - pos: 5.60893,1.827802 - parent: 1 - type: Transform -- proto: DrinkMug - entities: - - uid: 8281 - components: - - pos: -28.63788,44.586548 - parent: 1 - type: Transform - - uid: 8282 - components: - - pos: -28.353905,44.3453 - parent: 1 - type: Transform -- proto: DrinkMugBlue - entities: - - uid: 8719 - components: - - pos: -10.5935335,-15.327366 - parent: 1 - type: Transform - - uid: 9208 - components: - - pos: 2.5492742,71.47509 - parent: 1 - type: Transform -- proto: DrinkMugDog - entities: - - uid: 8590 - components: - - pos: -26.584906,6.5633206 - parent: 1 - type: Transform - - uid: 9091 - components: - - pos: 4.278154,-33.29549 - parent: 1 - type: Transform -- proto: DrinkMugHeart - entities: - - uid: 8720 - components: - - pos: -10.394751,-15.49766 - parent: 1 - type: Transform -- proto: DrinkMugMetal - entities: - - uid: 9092 - components: - - pos: 4.507321,-33.378826 - parent: 1 - type: Transform -- proto: DrinkMugMoebius - entities: - - uid: 8444 - components: - - pos: 5.3876348,57.690006 - parent: 1 - type: Transform - - uid: 9334 - components: - - pos: -43.366463,7.49686 - parent: 1 - type: Transform -- proto: DrinkMugOne - entities: - - uid: 9207 - components: - - pos: 2.4034402,71.704254 - parent: 1 - type: Transform -- proto: DrinkMugRainbow - entities: - - uid: 8670 - components: - - pos: -6.3873754,21.667553 - parent: 1 - type: Transform -- proto: DrinkRumBottleFull - entities: - - uid: 8362 - components: - - pos: 43.673214,51.17009 - parent: 1 - type: Transform -- proto: DrinkShaker - entities: - - uid: 17299 - components: - - pos: -10.796385,6.7194715 - parent: 1 - type: Transform - - uid: 17300 - components: - - pos: -10.6047,6.421458 - parent: 1 - type: Transform -- proto: DrinkShotGlass - entities: - - uid: 3187 - components: - - pos: 46.64082,46.78565 - parent: 1 - type: Transform - - uid: 13314 - components: - - pos: -28.208918,3.5744889 - parent: 1 - type: Transform - - uid: 17302 - components: - - pos: -11.013691,6.5249143 - parent: 1 - type: Transform -- proto: DrinkWaterCup - entities: - - uid: 6951 - components: - - pos: 25.367998,22.514523 - parent: 1 - type: Transform - - uid: 6952 - components: - - pos: 25.48159,22.429377 - parent: 1 - type: Transform - - uid: 8442 - components: - - pos: 5.5438213,57.47714 - parent: 1 - type: Transform - - uid: 8443 - components: - - pos: 5.67161,57.67581 - parent: 1 - type: Transform -- proto: DrinkWineGlass - entities: - - uid: 8368 - components: - - pos: 28.820814,49.62461 - parent: 1 - type: Transform - - uid: 8369 - components: - - pos: 28.991198,49.88005 - parent: 1 - type: Transform -- proto: Dropper - entities: - - uid: 8535 - components: - - pos: 6.6016774,22.699707 - parent: 1 - type: Transform - - uid: 8536 - components: - - pos: 6.6584716,22.543604 - parent: 1 - type: Transform -- proto: EmergencyLight - entities: - - uid: 11340 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 11341 - components: - - pos: -18.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 11342 - components: - - pos: 18.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 11343 - components: - - pos: 44.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 11344 - components: - - rot: 3.141592653589793 rad - pos: 44.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 11345 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 11346 - components: - - pos: 18.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 11347 - components: - - rot: 3.141592653589793 rad - pos: -0.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 11348 - components: - - pos: -18.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 11349 - components: - - rot: 3.141592653589793 rad - pos: -44.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 11350 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 11351 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 11352 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 11353 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 11354 - components: - - pos: 12.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 11355 - components: - - pos: -8.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 11356 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 11357 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 11358 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 11359 - components: - - rot: 3.141592653589793 rad - pos: -34.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 11360 - components: - - pos: -2.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 11361 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 11362 - components: - - pos: -33.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 11363 - components: - - pos: -7.5,64.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 11364 - components: - - pos: 11.5,61.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 11366 - components: - - rot: 3.141592653589793 rad - pos: -6.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 11367 - components: - - rot: 3.141592653589793 rad - pos: 4.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 11369 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 11370 - components: - - pos: -16.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 11371 - components: - - rot: 3.141592653589793 rad - pos: -15.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 11372 - components: - - pos: 24.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 11373 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 11374 - components: - - rot: 3.141592653589793 rad - pos: 44.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 13994 - components: - - pos: -0.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 13995 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 13996 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14091 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14219 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 18156 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 18157 - components: - - pos: -20.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 18158 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 18159 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 18160 - components: - - pos: -25.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 18161 - components: - - pos: -9.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 18162 - components: - - pos: 8.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 18163 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 18164 - components: - - rot: 3.141592653589793 rad - pos: 28.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 18165 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 18166 - components: - - pos: 35.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 18167 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 18168 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 18169 - components: - - pos: -0.5,83.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 18170 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- proto: Emitter - entities: - - uid: 9187 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-21.5 - parent: 1 - type: Transform -- proto: EncryptionKeyCargo - entities: - - uid: 6461 - components: - - flags: InContainer - type: MetaData - - parent: 4703 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyCommand - entities: - - uid: 8436 - components: - - flags: InContainer - type: MetaData - - parent: 7316 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyCommon - entities: - - uid: 3730 - components: - - flags: InContainer - type: MetaData - - parent: 3729 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyEngineering - entities: - - uid: 4349 - components: - - flags: InContainer - type: MetaData - - parent: 3982 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyMedical - entities: - - uid: 3587 - components: - - flags: InContainer - type: MetaData - - parent: 3583 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyScience - entities: - - uid: 18435 - components: - - flags: InContainer - type: MetaData - - parent: 18434 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeySecurity - entities: - - uid: 4569 - components: - - flags: InContainer - type: MetaData - - parent: 4391 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyService - entities: - - uid: 18447 - components: - - flags: InContainer - type: MetaData - - parent: 18446 - type: Transform - - canCollide: False - type: Physics -- proto: ExosuitFabricator - entities: - - uid: 6362 - components: - - pos: -17.5,34.5 - parent: 1 - type: Transform -- proto: ExtinguisherCabinetFilled - entities: - - uid: 18367 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-35.5 - parent: 1 - type: Transform - - uid: 18368 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-19.5 - parent: 1 - type: Transform - - uid: 18369 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-12.5 - parent: 1 - type: Transform - - uid: 18370 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-30.5 - parent: 1 - type: Transform - - uid: 18371 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-13.5 - parent: 1 - type: Transform - - uid: 18372 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-10.5 - parent: 1 - type: Transform - - uid: 18374 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,7.5 - parent: 1 - type: Transform - - uid: 18375 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,16.5 - parent: 1 - type: Transform - - uid: 18376 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,17.5 - parent: 1 - type: Transform - - uid: 18377 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,42.5 - parent: 1 - type: Transform - - uid: 18378 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,35.5 - parent: 1 - type: Transform - - uid: 18379 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,39.5 - parent: 1 - type: Transform - - uid: 18380 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,27.5 - parent: 1 - type: Transform - - uid: 18381 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,10.5 - parent: 1 - type: Transform - - uid: 18382 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-4.5 - parent: 1 - type: Transform - - uid: 18383 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-10.5 - parent: 1 - type: Transform - - uid: 18384 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-5.5 - parent: 1 - type: Transform - - uid: 18385 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,0.5 - parent: 1 - type: Transform - - uid: 18386 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,12.5 - parent: 1 - type: Transform - - uid: 18387 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,24.5 - parent: 1 - type: Transform - - uid: 18388 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,20.5 - parent: 1 - type: Transform - - uid: 18389 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,34.5 - parent: 1 - type: Transform - - uid: 18390 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,39.5 - parent: 1 - type: Transform - - uid: 18391 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,33.5 - parent: 1 - type: Transform - - uid: 18392 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,39.5 - parent: 1 - type: Transform - - uid: 18393 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,51.5 - parent: 1 - type: Transform - - uid: 18394 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,54.5 - parent: 1 - type: Transform - - uid: 18395 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,65.5 - parent: 1 - type: Transform - - uid: 18396 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,53.5 - parent: 1 - type: Transform - - uid: 18397 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,58.5 - parent: 1 - type: Transform - - uid: 18398 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,46.5 - parent: 1 - type: Transform - - uid: 18399 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,7.5 - parent: 1 - type: Transform - - uid: 18400 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,0.5 - parent: 1 - type: Transform - - uid: 18401 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,11.5 - parent: 1 - type: Transform - - uid: 18402 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-2.5 - parent: 1 - type: Transform - - uid: 18404 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,21.5 - parent: 1 - type: Transform - - uid: 18405 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,29.5 - parent: 1 - type: Transform - - uid: 18406 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,29.5 - parent: 1 - type: Transform - - uid: 18407 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,75.5 - parent: 1 - type: Transform - - uid: 18408 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,83.5 - parent: 1 - type: Transform - - uid: 18409 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,30.5 - parent: 1 - type: Transform - - uid: 18410 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-37.5 - parent: 1 - type: Transform - - uid: 18411 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-7.5 - parent: 1 - type: Transform - - uid: 18412 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,12.5 - parent: 1 - type: Transform - - uid: 18413 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,16.5 - parent: 1 - type: Transform -- proto: FaxMachineBase - entities: - - uid: 4346 - components: - - pos: -34.5,9.5 - parent: 1 - type: Transform - - name: Mail Room - type: FaxMachine - - uid: 6676 - components: - - pos: -28.5,7.5 - parent: 1 - type: Transform - - name: Library - type: FaxMachine - - uid: 6847 - components: - - pos: 40.5,46.5 - parent: 1 - type: Transform - - uid: 7283 - components: - - pos: 5.5,64.5 - parent: 1 - type: Transform - - name: Lawyer's Office - type: FaxMachine - - uid: 8230 - components: - - pos: -19.5,53.5 - parent: 1 - type: Transform - - name: Security - type: FaxMachine - - uid: 8284 - components: - - pos: -28.5,43.5 - parent: 1 - type: Transform - - name: Perma - type: FaxMachine - - uid: 8518 - components: - - pos: 7.5,32.5 - parent: 1 - type: Transform - - name: MedBay - type: FaxMachine - - uid: 8697 - components: - - pos: -9.5,28.5 - parent: 1 - type: Transform - - name: Science - type: FaxMachine - - uid: 9177 - components: - - pos: 13.5,-11.5 - parent: 1 - type: Transform - - name: Engineering - type: FaxMachine - - uid: 9226 - components: - - pos: 24.5,4.5 - parent: 1 - type: Transform - - name: HoP's Office - type: FaxMachine - - uid: 17613 - components: - - pos: 5.5,73.5 - parent: 1 - type: Transform - - name: Bridge - type: FaxMachine - - uid: 18175 - components: - - pos: 0.5,3.5 - parent: 8756 - type: Transform - - name: Captain's Private Shuttle - type: FaxMachine -- proto: FaxMachineCaptain - entities: - - uid: 6800 - components: - - pos: -8.5,74.5 - parent: 1 - type: Transform -- proto: FigureSpawner - entities: - - uid: 9924 - components: - - pos: -20.5,-37.5 - parent: 1 - type: Transform - - uid: 9925 - components: - - pos: -19.5,-36.5 - parent: 1 - type: Transform - - uid: 9926 - components: - - pos: -19.5,-37.5 - parent: 1 - type: Transform -- proto: filingCabinet - entities: - - uid: 6844 - components: - - pos: 41.5,46.5 - parent: 1 - type: Transform -- proto: filingCabinetTall - entities: - - uid: 8438 - components: - - pos: 2.5,62.5 - parent: 1 - type: Transform -- proto: filingCabinetTallRandom - entities: - - uid: 3166 - components: - - pos: -34.5,11.5 - parent: 1 - type: Transform -- proto: FireAlarm - entities: - - uid: 8155 - components: - - pos: -40.5,29.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 7827 - - 7913 - - 7922 - - 8154 - - 7812 - type: DeviceNetwork - - devices: - - 7827 - - 7913 - - 7922 - - 8154 - - 7812 - type: DeviceList - - uid: 9150 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,9.5 - parent: 1 - type: Transform - - devices: - - 5769 - - 5770 - - 5771 - - 5772 - - 8926 - - 5783 - - 5784 - - 5785 - - 9048 - - 5760 - - 5759 - - 5758 - - 5757 - - 5779 - - 5780 - - 5781 - - 5778 - - 5777 - - 5776 - type: DeviceList - - uid: 17329 - components: - - rot: 3.141592653589793 rad - pos: 1.5,75.5 - parent: 1 - type: Transform - - devices: - - 6125 - - 6124 - - 6122 - - 6123 - type: DeviceList - - uid: 17333 - components: - - pos: 7.5,75.5 - parent: 1 - type: Transform - - devices: - - 6125 - type: DeviceList - - uid: 17337 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,70.5 - parent: 1 - type: Transform - - devices: - - 6120 - - 6121 - - 6123 - - 6122 - type: DeviceList - - uid: 17340 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,66.5 - parent: 1 - type: Transform - - devices: - - 6121 - - 6120 - - 6127 - - 6128 - - 6126 - - 6115 - - 6114 - - 6113 - - 6129 - type: DeviceList - - uid: 17342 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,62.5 - parent: 1 - type: Transform - - devices: - - 6129 - type: DeviceList - - uid: 17345 - components: - - rot: 3.141592653589793 rad - pos: 7.5,51.5 - parent: 1 - type: Transform - - devices: - - 6119 - - 6118 - type: DeviceList - - uid: 17348 - components: - - pos: -3.5,58.5 - parent: 1 - type: Transform - - devices: - - 6113 - - 6114 - - 6115 - - 6110 - - 6111 - - 6112 - - 6119 - - 6118 - - 6116 - - 6117 - type: DeviceList - - uid: 17353 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,43.5 - parent: 1 - type: Transform - - devices: - - 6130 - - 6131 - - 6110 - - 6111 - - 6112 - - 6133 - - 6132 - - 5635 - - 5636 - - 5637 - type: DeviceList - - uid: 17356 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,54.5 - parent: 1 - type: Transform - - devices: - - 6116 - - 6117 - - 17363 - - 17362 - - 8180 - - 17359 - - 17360 - - 17361 - - 17364 - type: DeviceList - - uid: 17367 - components: - - pos: -15.5,47.5 - parent: 1 - type: Transform - - devices: - - 8180 - - 17359 - - 17360 - - 17361 - - 17368 - - 17369 - - 17370 - - 17371 - - 6130 - - 6131 - type: DeviceList - - uid: 17374 - components: - - pos: -32.5,50.5 - parent: 1 - type: Transform - - devices: - - 7022 - - 7023 - type: DeviceList - - uid: 17377 - components: - - pos: -46.5,45.5 - parent: 1 - type: Transform - - devices: - - 7898 - - 7899 - - 7894 - - 7895 - type: DeviceList - - uid: 17385 - components: - - pos: -39.5,39.5 - parent: 1 - type: Transform - - devices: - - 7898 - - 7899 - - 7894 - - 7895 - - 5835 - - 5833 - - 5834 - type: DeviceList - - uid: 17388 - components: - - pos: -20.5,39.5 - parent: 1 - type: Transform - - devices: - - 5632 - - 5633 - - 5634 - - 5839 - - 5840 - - 5841 - - 6138 - - 6136 - type: DeviceList - - uid: 17392 - components: - - rot: 3.141592653589793 rad - pos: -12.5,35.5 - parent: 1 - type: Transform - - devices: - - 9591 - - 9590 - - 9589 - - 5633 - - 5632 - - 5634 - - 6134 - - 6135 - - 6137 - type: DeviceList - - uid: 17397 - components: - - pos: -5.5,39.5 - parent: 1 - type: Transform - - devices: - - 5644 - - 5645 - - 5646 - - 5640 - - 5639 - - 5638 - - 5637 - - 5636 - - 5635 - - 9591 - - 9590 - - 9589 - type: DeviceList - - uid: 17399 - components: - - rot: 3.141592653589793 rad - pos: 19.5,35.5 - parent: 1 - type: Transform - - devices: - - 5631 - - 5630 - - 5629 - - 5688 - - 5689 - - 5690 - - 5691 - - 5687 - - 5686 - - 7267 - - 7268 - - 5708 - - 5709 - - 5710 - type: DeviceList - - uid: 17404 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,41.5 - parent: 1 - type: Transform - - devices: - - 5686 - - 5687 - - 5689 - - 5688 - type: DeviceList - - uid: 17407 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,40.5 - parent: 1 - type: Transform - - devices: - - 5691 - - 5690 - type: DeviceList - - uid: 17409 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,41.5 - parent: 1 - type: Transform - - devices: - - 5700 - - 5699 - - 5698 - - 5697 - - 5708 - - 5709 - - 5710 - - 5711 - - 5712 - - 5692 - - 5693 - - 5694 - type: DeviceList - - uid: 17410 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,45.5 - parent: 1 - type: Transform - - devices: - - 5712 - - 5711 - type: DeviceList - - uid: 17411 - components: - - pos: 35.5,39.5 - parent: 1 - type: Transform - - devices: - - 5694 - - 5693 - - 5692 - - 5700 - - 5699 - - 5698 - - 5697 - - 5708 - - 5709 - - 5710 - - 5711 - - 5712 - type: DeviceList - - uid: 17415 - components: - - rot: 3.141592653589793 rad - pos: 43.5,35.5 - parent: 1 - type: Transform - - devices: - - 5692 - - 5693 - - 5694 - - 6344 - - 6345 - - 6346 - type: DeviceList - - uid: 17419 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,25.5 - parent: 1 - type: Transform - - devices: - - 5704 - - 5703 - - 5702 - - 5701 - - 5725 - - 5726 - - 5727 - - 7269 - - 17420 - - 5697 - - 5698 - - 5699 - - 5700 - type: DeviceList - - uid: 17423 - components: - - pos: 25.5,23.5 - parent: 1 - type: Transform - - devices: - - 5727 - - 5726 - - 5725 - - 5724 - - 5723 - - 5722 - type: DeviceList - - uid: 17425 - components: - - rot: 3.141592653589793 rad - pos: 28.5,12.5 - parent: 1 - type: Transform - - devices: - - 5722 - - 5723 - - 5724 - - 5685 - - 5684 - - 5683 - - 5701 - - 5702 - - 5703 - - 5704 - - 5719 - - 5720 - - 5721 - - 5717 - - 5716 - - 5715 - type: DeviceList - - uid: 17431 - components: - - rot: 3.141592653589793 rad - pos: 43.5,12.5 - parent: 1 - type: Transform - - devices: - - 5717 - - 5716 - - 5715 - type: DeviceList - - uid: 17432 - components: - - pos: 17.5,16.5 - parent: 1 - type: Transform - - devices: - - 5683 - - 5684 - - 5685 - - 5623 - - 5624 - - 5625 - type: DeviceList - - uid: 17435 - components: - - rot: 3.141592653589793 rad - pos: -11.5,12.5 - parent: 1 - type: Transform - - devices: - - 5623 - - 5624 - - 5625 - - 5663 - - 5662 - - 5661 - - 5772 - - 5771 - - 5769 - - 5620 - - 5621 - - 5622 - - 5655 - - 5654 - - 5653 - - 5658 - - 5659 - - 5660 - type: DeviceList - - uid: 17436 - components: - - pos: 10.5,16.5 - parent: 1 - type: Transform - - devices: - - 5623 - - 5624 - - 5625 - - 5663 - - 5662 - - 5661 - - 5772 - - 5771 - - 5769 - - 5620 - - 5621 - - 5622 - - 5655 - - 5654 - - 5653 - - 5658 - - 5659 - - 5660 - - 18237 - type: DeviceList - - uid: 17440 - components: - - rot: 3.141592653589793 rad - pos: -7.5,20.5 - parent: 1 - type: Transform - - devices: - - 5657 - - 5656 - - 4341 - type: DeviceList - - uid: 17444 - components: - - rot: 3.141592653589793 rad - pos: -14.5,23.5 - parent: 1 - type: Transform - - devices: - - 6363 - - 4341 - - 4344 - - 4338 - - 4340 - - 6364 - - 4343 - - 6365 - type: DeviceList - - uid: 17446 - components: - - rot: 3.141592653589793 rad - pos: -21.5,31.5 - parent: 1 - type: Transform - - devices: - - 6138 - - 6134 - - 6135 - - 6137 - - 6363 - type: DeviceList - - uid: 17448 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,29.5 - parent: 1 - type: Transform - - devices: - - 17449 - - 6365 - type: DeviceList - - uid: 17451 - components: - - pos: 7.5,21.5 - parent: 1 - type: Transform - - devices: - - 6399 - - 6400 - - 6398 - type: DeviceList - - uid: 17454 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,25.5 - parent: 1 - type: Transform - - devices: - - 6398 - - 6391 - - 6392 - - 6396 - - 6397 - - 6394 - - 6395 - - 6393 - type: DeviceList - - uid: 17465 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,25.5 - parent: 1 - type: Transform - - devices: - - 5667 - - 5668 - - 6392 - - 6391 - - 6393 - type: DeviceList - - uid: 17467 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,25.5 - parent: 1 - type: Transform - - devices: - - 5638 - - 5639 - - 5640 - - 5648 - - 5651 - - 5652 - - 5658 - - 5659 - - 5660 - - 5664 - - 5665 - - 5666 - type: DeviceList - - uid: 17471 - components: - - pos: -26.5,16.5 - parent: 1 - type: Transform - - devices: - - 5620 - - 5621 - - 5622 - - 5673 - - 5672 - - 5671 - - 5670 - type: DeviceList - - uid: 17482 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,8.5 - parent: 1 - type: Transform - - devices: - - 5670 - type: DeviceList - - uid: 17487 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,32.5 - parent: 1 - type: Transform - - devices: - - 5677 - - 5678 - - 5679 - - 5838 - - 5837 - - 5836 - type: DeviceList - - uid: 17488 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,18.5 - parent: 1 - type: Transform - - uid: 17490 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,18.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 7827 - - 7913 - - 7922 - type: DeviceNetwork - - devices: - - 5832 - - 5831 - - 7827 - - 7913 - - 7922 - type: DeviceList - - uid: 17493 - components: - - rot: 3.141592653589793 rad - pos: -38.5,12.5 - parent: 1 - type: Transform - - devices: - - 5674 - - 5675 - - 5676 - - 5824 - - 5832 - - 5831 - type: DeviceList - - uid: 17495 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,10.5 - parent: 1 - type: Transform - - devices: - - 5824 - - 5826 - - 5822 - - 5821 - - 5823 - - 6650 - - 6667 - - 6656 - - 5825 - type: DeviceList - - uid: 17496 - components: - - pos: -34.5,8.5 - parent: 1 - type: Transform - - devices: - - 5817 - - 5818 - - 5819 - - 5820 - - 5823 - - 5822 - - 5821 - type: DeviceList - - uid: 17498 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,0.5 - parent: 1 - type: Transform - - devices: - - 5808 - - 5810 - - 5809 - - 5820 - - 5819 - - 5818 - - 5817 - - 5670 - - 5680 - - 5681 - - 5682 - - 6649 - - 6666 - type: DeviceList - - uid: 17500 - components: - - pos: -25.5,-6.5 - parent: 1 - type: Transform - - devices: - - 9431 - - 9430 - - 9429 - - 5809 - - 5810 - - 5808 - type: DeviceList - - uid: 17503 - components: - - pos: -18.5,-6.5 - parent: 1 - type: Transform - - devices: - - 9429 - - 9430 - - 9431 - - 5619 - - 800 - - 797 - type: DeviceList - - uid: 17506 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-10.5 - parent: 1 - type: Transform - - devices: - - 797 - - 800 - - 5619 - - 5765 - - 5766 - - 5746 - - 5747 - - 5748 - - 5757 - - 5758 - - 5759 - - 5760 - - 5749 - - 5750 - - 5753 - - 5754 - - 5755 - - 5756 - - 5628 - - 5627 - - 5626 - - 5768 - - 5767 - - 5789 - - 5788 - - 5787 - type: DeviceList - - uid: 17508 - components: - - pos: 7.5,-6.5 - parent: 1 - type: Transform - - devices: - - 797 - - 800 - - 5619 - - 5765 - - 5766 - - 5746 - - 5747 - - 5748 - - 5757 - - 5758 - - 5759 - - 5760 - - 5749 - - 5750 - - 5753 - - 5754 - - 5755 - - 5756 - - 5628 - - 5627 - - 5626 - - 5768 - - 5767 - - 5789 - - 5788 - - 5787 - type: DeviceList - - uid: 17512 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-14.5 - parent: 1 - type: Transform - - devices: - - 5746 - - 5747 - - 5748 - - 5749 - - 5750 - - 5753 - - 5754 - - 5755 - - 5756 - - 5763 - - 5764 - - 5761 - - 5762 - type: DeviceList - - uid: 17514 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,2.5 - parent: 1 - type: Transform - - devices: - - 5789 - - 5788 - - 5787 - - 9048 - - 5785 - - 5784 - - 5783 - - 9014 - - 9013 - - 9049 - type: DeviceList - - uid: 17516 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,10.5 - parent: 1 - type: Transform - - devices: - - 8926 - - 9014 - - 9013 - - 9049 - - 18237 - type: DeviceList - - uid: 17518 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,4.5 - parent: 1 - type: Transform - - devices: - - 5791 - - 5790 - - 5792 - - 17520 - type: DeviceList - - uid: 17522 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-2.5 - parent: 1 - type: Transform - - devices: - - 5719 - - 5720 - - 5721 - - 17520 - - 5792 - - 5790 - - 5807 - - 5806 - - 5805 - type: DeviceList - - uid: 17523 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,8.5 - parent: 1 - type: Transform - - devices: - - 5719 - - 5720 - - 5721 - - 17520 - - 5792 - - 5790 - - 5807 - - 5806 - - 5805 - type: DeviceList - - uid: 17526 - components: - - rot: 3.141592653589793 rad - pos: 40.5,-10.5 - parent: 1 - type: Transform - - devices: - - 5800 - - 5799 - - 5798 - type: DeviceList - - uid: 17528 - components: - - rot: 3.141592653589793 rad - pos: 25.5,-10.5 - parent: 1 - type: Transform - - devices: - - 5800 - - 5799 - - 5798 - - 5807 - - 5806 - - 5805 - - 5793 - - 3584 - - 5795 - - 5796 - - 5797 - - 5801 - - 5802 - type: DeviceList - - uid: 17531 - components: - - pos: 15.5,-6.5 - parent: 1 - type: Transform - - devices: - - 5628 - - 5627 - - 5626 - - 5795 - - 5796 - - 5797 - - 3458 - - 17533 - type: DeviceList - - uid: 17535 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-16.5 - parent: 1 - type: Transform - - devices: - - 5766 - - 5765 - - 5763 - - 5764 - - 7107 - - 7106 - type: DeviceList - - uid: 17537 - components: - - pos: -9.5,-20.5 - parent: 1 - type: Transform - - devices: - - 7106 - - 7108 - - 7109 - - 7166 - - 7173 - - 7174 - - 7175 - type: DeviceList - - uid: 17538 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-19.5 - parent: 1 - type: Transform - - devices: - - 7170 - type: DeviceList - - uid: 17540 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-16.5 - parent: 1 - type: Transform - - devices: - - 5767 - - 5768 - - 5761 - - 5762 - - 7171 - - 7172 - type: DeviceList - - uid: 17544 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-24.5 - parent: 1 - type: Transform - - devices: - - 7261 - - 7172 - - 7171 - - 7170 - - 7169 - - 9028 - - 9030 - - 9029 - type: DeviceList - - uid: 17547 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-31.5 - parent: 1 - type: Transform - - devices: - - 9029 - - 9030 - - 9028 - - 7168 - - 7167 - - 7164 - - 7165 - - 7161 - - 7162 - - 7163 - type: DeviceList -- proto: FireAlarmElectronics - entities: - - uid: 9131 - components: - - pos: 13.701005,-25.229437 - parent: 1 - type: Transform -- proto: FireAxeCabinetFilled - entities: - - uid: 9205 - components: - - pos: -10.5,-20.5 - parent: 1 - type: Transform - - uid: 9206 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,81.5 - parent: 1 - type: Transform -- proto: FireExtinguisher - entities: - - uid: 7125 - components: - - pos: -13.517798,27.785059 - parent: 1 - type: Transform -- proto: Firelock - entities: - - uid: 5867 - components: - - rot: 3.141592653589793 rad - pos: -13.5,66.5 - parent: 1 - type: Transform - - uid: 5896 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,55.5 - parent: 1 - type: Transform - - uid: 5897 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,55.5 - parent: 1 - type: Transform - - uid: 5900 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,55.5 - parent: 1 - type: Transform - - uid: 7166 - components: - - pos: -11.5,-26.5 - parent: 1 - type: Transform - - uid: 7173 - components: - - pos: -11.5,-27.5 - parent: 1 - type: Transform - - uid: 7174 - components: - - pos: -11.5,-28.5 - parent: 1 - type: Transform - - uid: 7175 - components: - - pos: -11.5,-29.5 - parent: 1 - type: Transform - - uid: 7202 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,50.5 - parent: 1 - type: Transform - - uid: 7261 - components: - - pos: 14.5,-23.5 - parent: 1 - type: Transform - - uid: 7317 - components: - - pos: 21.5,-28.5 - parent: 1 - type: Transform - - uid: 7318 - components: - - pos: 29.5,-24.5 - parent: 1 - type: Transform - - uid: 10067 - components: - - pos: -30.5,-16.5 - parent: 1 - type: Transform - - uid: 13464 - components: - - rot: 3.141592653589793 rad - pos: -36.5,52.5 - parent: 1 - type: Transform - - uid: 13465 - components: - - rot: 3.141592653589793 rad - pos: -26.5,57.5 - parent: 1 - type: Transform - - uid: 17331 - components: - - pos: -8.5,71.5 - parent: 1 - type: Transform - - uid: 17533 - components: - - pos: 19.5,-6.5 - parent: 1 - type: Transform -- proto: FirelockEdge - entities: - - uid: 7812 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,27.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 8155 - type: DeviceNetwork - - uid: 8154 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,28.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 8155 - type: DeviceNetwork -- proto: FirelockElectronics - entities: - - uid: 9132 - components: - - pos: 13.367671,-25.458605 - parent: 1 - type: Transform - - uid: 9133 - components: - - pos: 13.263505,-25.166937 - parent: 1 - type: Transform -- proto: FirelockGlass - entities: - - uid: 157 - components: - - pos: -23.5,12.5 - parent: 1 - type: Transform - - uid: 797 - components: - - pos: -13.5,-7.5 - parent: 1 - type: Transform - - uid: 800 - components: - - pos: -13.5,-8.5 - parent: 1 - type: Transform - - uid: 3458 - components: - - pos: 21.5,-6.5 - parent: 1 - type: Transform - - uid: 3584 - components: - - pos: 30.5,-10.5 - parent: 1 - type: Transform - - uid: 4163 - components: - - pos: -39.5,12.5 - parent: 1 - type: Transform - - uid: 4338 - components: - - pos: -19.5,18.5 - parent: 1 - type: Transform - - uid: 4340 - components: - - pos: -22.5,23.5 - parent: 1 - type: Transform - - uid: 4341 - components: - - pos: -8.5,22.5 - parent: 1 - type: Transform - - uid: 4343 - components: - - pos: -10.5,17.5 - parent: 1 - type: Transform - - uid: 4344 - components: - - pos: -19.5,19.5 - parent: 1 - type: Transform - - uid: 5619 - components: - - pos: -13.5,-9.5 - parent: 1 - type: Transform - - uid: 5620 - components: - - pos: -13.5,13.5 - parent: 1 - type: Transform - - uid: 5621 - components: - - pos: -13.5,14.5 - parent: 1 - type: Transform - - uid: 5622 - components: - - pos: -13.5,15.5 - parent: 1 - type: Transform - - uid: 5623 - components: - - pos: 12.5,13.5 - parent: 1 - type: Transform - - uid: 5624 - components: - - pos: 12.5,14.5 - parent: 1 - type: Transform - - uid: 5625 - components: - - pos: 12.5,15.5 - parent: 1 - type: Transform - - uid: 5626 - components: - - pos: 12.5,-7.5 - parent: 1 - type: Transform - - uid: 5627 - components: - - pos: 12.5,-8.5 - parent: 1 - type: Transform - - uid: 5628 - components: - - pos: 12.5,-9.5 - parent: 1 - type: Transform - - uid: 5629 - components: - - pos: 13.5,36.5 - parent: 1 - type: Transform - - uid: 5630 - components: - - pos: 13.5,37.5 - parent: 1 - type: Transform - - uid: 5631 - components: - - pos: 13.5,38.5 - parent: 1 - type: Transform - - uid: 5632 - components: - - pos: -17.5,38.5 - parent: 1 - type: Transform - - uid: 5633 - components: - - pos: -17.5,37.5 - parent: 1 - type: Transform - - uid: 5634 - components: - - pos: -17.5,36.5 - parent: 1 - type: Transform - - uid: 5635 - components: - - pos: -1.5,39.5 - parent: 1 - type: Transform - - uid: 5636 - components: - - pos: -0.5,39.5 - parent: 1 - type: Transform - - uid: 5637 - components: - - pos: 0.5,39.5 - parent: 1 - type: Transform - - uid: 5638 - components: - - pos: -1.5,35.5 - parent: 1 - type: Transform - - uid: 5639 - components: - - pos: -0.5,35.5 - parent: 1 - type: Transform - - uid: 5640 - components: - - pos: 0.5,35.5 - parent: 1 - type: Transform - - uid: 5644 - components: - - pos: 8.5,36.5 - parent: 1 - type: Transform - - uid: 5645 - components: - - pos: 8.5,37.5 - parent: 1 - type: Transform - - uid: 5646 - components: - - pos: 8.5,38.5 - parent: 1 - type: Transform - - uid: 5648 - components: - - pos: -2.5,19.5 - parent: 1 - type: Transform - - uid: 5651 - components: - - pos: -2.5,18.5 - parent: 1 - type: Transform - - uid: 5652 - components: - - pos: -2.5,17.5 - parent: 1 - type: Transform - - uid: 5653 - components: - - pos: -3.5,16.5 - parent: 1 - type: Transform - - uid: 5654 - components: - - pos: -4.5,16.5 - parent: 1 - type: Transform - - uid: 5655 - components: - - pos: -5.5,16.5 - parent: 1 - type: Transform - - uid: 5656 - components: - - pos: -5.5,20.5 - parent: 1 - type: Transform - - uid: 5657 - components: - - pos: -4.5,20.5 - parent: 1 - type: Transform - - uid: 5658 - components: - - pos: -1.5,16.5 - parent: 1 - type: Transform - - uid: 5659 - components: - - pos: -0.5,16.5 - parent: 1 - type: Transform - - uid: 5660 - components: - - pos: 0.5,16.5 - parent: 1 - type: Transform - - uid: 5661 - components: - - pos: 2.5,16.5 - parent: 1 - type: Transform - - uid: 5662 - components: - - pos: 3.5,16.5 - parent: 1 - type: Transform - - uid: 5663 - components: - - pos: 4.5,16.5 - parent: 1 - type: Transform - - uid: 5664 - components: - - pos: 1.5,17.5 - parent: 1 - type: Transform - - uid: 5665 - components: - - pos: 1.5,18.5 - parent: 1 - type: Transform - - uid: 5666 - components: - - pos: 1.5,19.5 - parent: 1 - type: Transform - - uid: 5667 - components: - - pos: 3.5,20.5 - parent: 1 - type: Transform - - uid: 5668 - components: - - pos: 4.5,20.5 - parent: 1 - type: Transform - - uid: 5670 - components: - - pos: -29.5,10.5 - parent: 1 - type: Transform - - uid: 5671 - components: - - pos: -29.5,13.5 - parent: 1 - type: Transform - - uid: 5672 - components: - - pos: -29.5,14.5 - parent: 1 - type: Transform - - uid: 5673 - components: - - pos: -29.5,15.5 - parent: 1 - type: Transform - - uid: 5674 - components: - - pos: -33.5,13.5 - parent: 1 - type: Transform - - uid: 5675 - components: - - pos: -33.5,14.5 - parent: 1 - type: Transform - - uid: 5676 - components: - - pos: -33.5,15.5 - parent: 1 - type: Transform - - uid: 5677 - components: - - pos: -32.5,16.5 - parent: 1 - type: Transform - - uid: 5678 - components: - - pos: -31.5,16.5 - parent: 1 - type: Transform - - uid: 5679 - components: - - pos: -30.5,16.5 - parent: 1 - type: Transform - - uid: 5680 - components: - - pos: -32.5,12.5 - parent: 1 - type: Transform - - uid: 5681 - components: - - pos: -31.5,12.5 - parent: 1 - type: Transform - - uid: 5682 - components: - - pos: -30.5,12.5 - parent: 1 - type: Transform - - uid: 5683 - components: - - pos: 20.5,13.5 - parent: 1 - type: Transform - - uid: 5684 - components: - - pos: 20.5,14.5 - parent: 1 - type: Transform - - uid: 5685 - components: - - pos: 20.5,15.5 - parent: 1 - type: Transform - - uid: 5686 - components: - - pos: 23.5,39.5 - parent: 1 - type: Transform - - uid: 5687 - components: - - pos: 22.5,39.5 - parent: 1 - type: Transform - - uid: 5688 - components: - - pos: 17.5,39.5 - parent: 1 - type: Transform - - uid: 5689 - components: - - pos: 18.5,39.5 - parent: 1 - type: Transform - - uid: 5690 - components: - - pos: 14.5,39.5 - parent: 1 - type: Transform - - uid: 5691 - components: - - pos: 15.5,39.5 - parent: 1 - type: Transform - - uid: 5692 - components: - - pos: 38.5,36.5 - parent: 1 - type: Transform - - uid: 5693 - components: - - pos: 38.5,37.5 - parent: 1 - type: Transform - - uid: 5694 - components: - - pos: 38.5,38.5 - parent: 1 - type: Transform - - uid: 5697 - components: - - pos: 29.5,35.5 - parent: 1 - type: Transform - - uid: 5698 - components: - - pos: 30.5,35.5 - parent: 1 - type: Transform - - uid: 5699 - components: - - pos: 31.5,35.5 - parent: 1 - type: Transform - - uid: 5700 - components: - - pos: 32.5,35.5 - parent: 1 - type: Transform - - uid: 5701 - components: - - pos: 29.5,16.5 - parent: 1 - type: Transform - - uid: 5702 - components: - - pos: 30.5,16.5 - parent: 1 - type: Transform - - uid: 5703 - components: - - pos: 31.5,16.5 - parent: 1 - type: Transform - - uid: 5704 - components: - - pos: 32.5,16.5 - parent: 1 - type: Transform - - uid: 5708 - components: - - pos: 28.5,36.5 - parent: 1 - type: Transform - - uid: 5709 - components: - - pos: 28.5,37.5 - parent: 1 - type: Transform - - uid: 5710 - components: - - pos: 28.5,38.5 - parent: 1 - type: Transform - - uid: 5711 - components: - - pos: 30.5,42.5 - parent: 1 - type: Transform - - uid: 5712 - components: - - pos: 31.5,42.5 - parent: 1 - type: Transform - - uid: 5713 - components: - - pos: 30.5,50.5 - parent: 1 - type: Transform - - uid: 5714 - components: - - pos: 31.5,50.5 - parent: 1 - type: Transform - - uid: 5715 - components: - - pos: 38.5,15.5 - parent: 1 - type: Transform - - uid: 5716 - components: - - pos: 38.5,14.5 - parent: 1 - type: Transform - - uid: 5717 - components: - - pos: 38.5,13.5 - parent: 1 - type: Transform - - uid: 5719 - components: - - pos: 30.5,12.5 - parent: 1 - type: Transform - - uid: 5720 - components: - - pos: 31.5,12.5 - parent: 1 - type: Transform - - uid: 5721 - components: - - pos: 32.5,12.5 - parent: 1 - type: Transform - - uid: 5722 - components: - - pos: 23.5,16.5 - parent: 1 - type: Transform - - uid: 5723 - components: - - pos: 24.5,16.5 - parent: 1 - type: Transform - - uid: 5724 - components: - - pos: 25.5,16.5 - parent: 1 - type: Transform - - uid: 5725 - components: - - pos: 28.5,19.5 - parent: 1 - type: Transform - - uid: 5726 - components: - - pos: 28.5,20.5 - parent: 1 - type: Transform - - uid: 5727 - components: - - pos: 28.5,21.5 - parent: 1 - type: Transform - - uid: 5746 - components: - - pos: -5.5,-10.5 - parent: 1 - type: Transform - - uid: 5747 - components: - - pos: -4.5,-10.5 - parent: 1 - type: Transform - - uid: 5748 - components: - - pos: -3.5,-10.5 - parent: 1 - type: Transform - - uid: 5749 - components: - - pos: -1.5,-10.5 - parent: 1 - type: Transform - - uid: 5750 - components: - - pos: -0.5,-10.5 - parent: 1 - type: Transform - - uid: 5753 - components: - - pos: 0.5,-10.5 - parent: 1 - type: Transform - - uid: 5754 - components: - - pos: 2.5,-10.5 - parent: 1 - type: Transform - - uid: 5755 - components: - - pos: 3.5,-10.5 - parent: 1 - type: Transform - - uid: 5756 - components: - - pos: 4.5,-10.5 - parent: 1 - type: Transform - - uid: 5757 - components: - - pos: -3.5,-6.5 - parent: 1 - type: Transform - - uid: 5758 - components: - - pos: -2.5,-6.5 - parent: 1 - type: Transform - - uid: 5759 - components: - - pos: 1.5,-6.5 - parent: 1 - type: Transform - - uid: 5760 - components: - - pos: 2.5,-6.5 - parent: 1 - type: Transform - - uid: 5761 - components: - - pos: 5.5,-12.5 - parent: 1 - type: Transform - - uid: 5762 - components: - - pos: 5.5,-13.5 - parent: 1 - type: Transform - - uid: 5763 - components: - - pos: -6.5,-12.5 - parent: 1 - type: Transform - - uid: 5764 - components: - - pos: -6.5,-13.5 - parent: 1 - type: Transform - - uid: 5765 - components: - - pos: -12.5,-10.5 - parent: 1 - type: Transform - - uid: 5766 - components: - - pos: -11.5,-10.5 - parent: 1 - type: Transform - - uid: 5767 - components: - - pos: 11.5,-10.5 - parent: 1 - type: Transform - - uid: 5768 - components: - - pos: 10.5,-10.5 - parent: 1 - type: Transform - - uid: 5769 - components: - - pos: -3.5,12.5 - parent: 1 - type: Transform - - uid: 5770 - components: - - pos: -2.5,12.5 - parent: 1 - type: Transform - - uid: 5771 - components: - - pos: 1.5,12.5 - parent: 1 - type: Transform - - uid: 5772 - components: - - pos: 2.5,12.5 - parent: 1 - type: Transform - - uid: 5776 - components: - - pos: -5.5,8.5 - parent: 1 - type: Transform - - uid: 5777 - components: - - pos: -5.5,7.5 - parent: 1 - type: Transform - - uid: 5778 - components: - - pos: -5.5,6.5 - parent: 1 - type: Transform - - uid: 5779 - components: - - pos: -8.5,5.5 - parent: 1 - type: Transform - - uid: 5780 - components: - - pos: -7.5,5.5 - parent: 1 - type: Transform - - uid: 5781 - components: - - pos: -6.5,5.5 - parent: 1 - type: Transform - - uid: 5782 - components: - - pos: -9.5,5.5 - parent: 1 - type: Transform - - uid: 5783 - components: - - pos: 4.5,-0.5 - parent: 1 - type: Transform - - uid: 5784 - components: - - pos: 4.5,-1.5 - parent: 1 - type: Transform - - uid: 5785 - components: - - pos: 4.5,-2.5 - parent: 1 - type: Transform - - uid: 5787 - components: - - pos: 9.5,-5.5 - parent: 1 - type: Transform - - uid: 5788 - components: - - pos: 10.5,-5.5 - parent: 1 - type: Transform - - uid: 5789 - components: - - pos: 11.5,-5.5 - parent: 1 - type: Transform - - uid: 5790 - components: - - pos: 28.5,3.5 - parent: 1 - type: Transform - - uid: 5791 - components: - - pos: 26.5,3.5 - parent: 1 - type: Transform - - uid: 5792 - components: - - pos: 28.5,6.5 - parent: 1 - type: Transform - - uid: 5793 - components: - - pos: 29.5,-10.5 - parent: 1 - type: Transform - - uid: 5795 - components: - - pos: 23.5,-9.5 - parent: 1 - type: Transform - - uid: 5796 - components: - - pos: 23.5,-8.5 - parent: 1 - type: Transform - - uid: 5797 - components: - - pos: 23.5,-7.5 - parent: 1 - type: Transform - - uid: 5798 - components: - - pos: 38.5,-7.5 - parent: 1 - type: Transform - - uid: 5799 - components: - - pos: 38.5,-8.5 - parent: 1 - type: Transform - - uid: 5800 - components: - - pos: 38.5,-9.5 - parent: 1 - type: Transform - - uid: 5801 - components: - - pos: 25.5,-6.5 - parent: 1 - type: Transform - - uid: 5802 - components: - - pos: 26.5,-6.5 - parent: 1 - type: Transform - - uid: 5805 - components: - - pos: 30.5,-6.5 - parent: 1 - type: Transform - - uid: 5806 - components: - - pos: 31.5,-6.5 - parent: 1 - type: Transform - - uid: 5807 - components: - - pos: 32.5,-6.5 - parent: 1 - type: Transform - - uid: 5808 - components: - - pos: -30.5,-6.5 - parent: 1 - type: Transform - - uid: 5809 - components: - - pos: -32.5,-6.5 - parent: 1 - type: Transform - - uid: 5810 - components: - - pos: -31.5,-6.5 - parent: 1 - type: Transform - - uid: 5817 - components: - - pos: -33.5,7.5 - parent: 1 - type: Transform - - uid: 5818 - components: - - pos: -33.5,6.5 - parent: 1 - type: Transform - - uid: 5819 - components: - - pos: -33.5,5.5 - parent: 1 - type: Transform - - uid: 5820 - components: - - pos: -33.5,4.5 - parent: 1 - type: Transform - - uid: 5821 - components: - - pos: -36.5,6.5 - parent: 1 - type: Transform - - uid: 5822 - components: - - pos: -36.5,7.5 - parent: 1 - type: Transform - - uid: 5823 - components: - - pos: -35.5,3.5 - parent: 1 - type: Transform - - uid: 5824 - components: - - pos: -35.5,12.5 - parent: 1 - type: Transform - - uid: 5825 - components: - - pos: -41.5,9.5 - parent: 1 - type: Transform - - uid: 5826 - components: - - pos: -37.5,10.5 - parent: 1 - type: Transform - - uid: 5831 - components: - - pos: -39.5,16.5 - parent: 1 - type: Transform - - uid: 5832 - components: - - pos: -37.5,16.5 - parent: 1 - type: Transform - - uid: 5833 - components: - - pos: -33.5,37.5 - parent: 1 - type: Transform - - uid: 5834 - components: - - pos: -33.5,36.5 - parent: 1 - type: Transform - - uid: 5835 - components: - - pos: -33.5,38.5 - parent: 1 - type: Transform - - uid: 5836 - components: - - pos: -32.5,35.5 - parent: 1 - type: Transform - - uid: 5837 - components: - - pos: -31.5,35.5 - parent: 1 - type: Transform - - uid: 5838 - components: - - pos: -30.5,35.5 - parent: 1 - type: Transform - - uid: 5839 - components: - - pos: -29.5,36.5 - parent: 1 - type: Transform - - uid: 5840 - components: - - pos: -29.5,37.5 - parent: 1 - type: Transform - - uid: 5841 - components: - - pos: -29.5,38.5 - parent: 1 - type: Transform - - uid: 6014 - components: - - pos: -24.5,-26.5 - parent: 1 - type: Transform - - uid: 6110 - components: - - pos: -1.5,51.5 - parent: 1 - type: Transform - - uid: 6111 - components: - - pos: -0.5,51.5 - parent: 1 - type: Transform - - uid: 6112 - components: - - pos: 0.5,51.5 - parent: 1 - type: Transform - - uid: 6113 - components: - - pos: -1.5,58.5 - parent: 1 - type: Transform - - uid: 6114 - components: - - pos: -0.5,58.5 - parent: 1 - type: Transform - - uid: 6115 - components: - - pos: 0.5,58.5 - parent: 1 - type: Transform - - uid: 6116 - components: - - pos: -4.5,54.5 - parent: 1 - type: Transform - - uid: 6117 - components: - - pos: -4.5,53.5 - parent: 1 - type: Transform - - uid: 6118 - components: - - pos: 3.5,56.5 - parent: 1 - type: Transform - - uid: 6119 - components: - - pos: 3.5,53.5 - parent: 1 - type: Transform - - uid: 6120 - components: - - pos: -1.5,69.5 - parent: 1 - type: Transform - - uid: 6121 - components: - - pos: 0.5,69.5 - parent: 1 - type: Transform - - uid: 6122 - components: - - pos: -1.5,75.5 - parent: 1 - type: Transform - - uid: 6123 - components: - - pos: 0.5,75.5 - parent: 1 - type: Transform - - uid: 6124 - components: - - pos: -5.5,75.5 - parent: 1 - type: Transform - - uid: 6125 - components: - - pos: 5.5,75.5 - parent: 1 - type: Transform - - uid: 6126 - components: - - pos: 8.5,66.5 - parent: 1 - type: Transform - - uid: 6127 - components: - - pos: 8.5,68.5 - parent: 1 - type: Transform - - uid: 6128 - components: - - pos: 8.5,67.5 - parent: 1 - type: Transform - - uid: 6129 - components: - - pos: 1.5,63.5 - parent: 1 - type: Transform - - uid: 6130 - components: - - pos: -2.5,48.5 - parent: 1 - type: Transform - - uid: 6131 - components: - - pos: -2.5,50.5 - parent: 1 - type: Transform - - uid: 6132 - components: - - pos: 1.5,46.5 - parent: 1 - type: Transform - - uid: 6133 - components: - - pos: 1.5,47.5 - parent: 1 - type: Transform - - uid: 6134 - components: - - pos: -15.5,35.5 - parent: 1 - type: Transform - - uid: 6135 - components: - - pos: -14.5,35.5 - parent: 1 - type: Transform - - uid: 6136 - components: - - pos: -18.5,35.5 - parent: 1 - type: Transform - - uid: 6137 - components: - - pos: -13.5,35.5 - parent: 1 - type: Transform - - uid: 6138 - components: - - pos: -20.5,35.5 - parent: 1 - type: Transform - - uid: 6344 - components: - - pos: 43.5,41.5 - parent: 1 - type: Transform - - uid: 6345 - components: - - pos: 44.5,41.5 - parent: 1 - type: Transform - - uid: 6346 - components: - - pos: 45.5,43.5 - parent: 1 - type: Transform - - uid: 6363 - components: - - pos: -14.5,26.5 - parent: 1 - type: Transform - - uid: 6364 - components: - - pos: -10.5,18.5 - parent: 1 - type: Transform - - uid: 6365 - components: - - pos: -10.5,26.5 - parent: 1 - type: Transform - - uid: 6391 - components: - - pos: 9.5,23.5 - parent: 1 - type: Transform - - uid: 6392 - components: - - pos: 9.5,22.5 - parent: 1 - type: Transform - - uid: 6393 - components: - - pos: 6.5,26.5 - parent: 1 - type: Transform - - uid: 6394 - components: - - pos: 6.5,29.5 - parent: 1 - type: Transform - - uid: 6395 - components: - - pos: 7.5,29.5 - parent: 1 - type: Transform - - uid: 6396 - components: - - pos: 10.5,29.5 - parent: 1 - type: Transform - - uid: 6397 - components: - - pos: 13.5,28.5 - parent: 1 - type: Transform - - uid: 6398 - components: - - pos: 11.5,21.5 - parent: 1 - type: Transform - - uid: 6399 - components: - - pos: 5.5,18.5 - parent: 1 - type: Transform - - uid: 6400 - components: - - pos: 5.5,17.5 - parent: 1 - type: Transform - - uid: 6648 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-4.5 - parent: 1 - type: Transform - - uid: 6649 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-2.5 - parent: 1 - type: Transform - - uid: 6650 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-1.5 - parent: 1 - type: Transform - - uid: 6656 - components: - - pos: -41.5,-3.5 - parent: 1 - type: Transform - - uid: 6666 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-1.5 - parent: 1 - type: Transform - - uid: 6667 - components: - - pos: -40.5,-3.5 - parent: 1 - type: Transform - - uid: 7022 - components: - - pos: -26.5,48.5 - parent: 1 - type: Transform - - uid: 7023 - components: - - pos: -26.5,47.5 - parent: 1 - type: Transform - - uid: 7106 - components: - - pos: -8.5,-16.5 - parent: 1 - type: Transform - - uid: 7107 - components: - - pos: -12.5,-16.5 - parent: 1 - type: Transform - - uid: 7108 - components: - - pos: -9.5,-18.5 - parent: 1 - type: Transform - - uid: 7109 - components: - - pos: -12.5,-20.5 - parent: 1 - type: Transform - - uid: 7161 - components: - - pos: 11.5,-36.5 - parent: 1 - type: Transform - - uid: 7162 - components: - - pos: 12.5,-36.5 - parent: 1 - type: Transform - - uid: 7163 - components: - - pos: 13.5,-36.5 - parent: 1 - type: Transform - - uid: 7164 - components: - - pos: 6.5,-35.5 - parent: 1 - type: Transform - - uid: 7165 - components: - - pos: 7.5,-35.5 - parent: 1 - type: Transform - - uid: 7167 - components: - - pos: 6.5,-31.5 - parent: 1 - type: Transform - - uid: 7168 - components: - - pos: 7.5,-31.5 - parent: 1 - type: Transform - - uid: 7169 - components: - - pos: 8.5,-24.5 - parent: 1 - type: Transform - - uid: 7170 - components: - - pos: 8.5,-20.5 - parent: 1 - type: Transform - - uid: 7171 - components: - - pos: 11.5,-19.5 - parent: 1 - type: Transform - - uid: 7172 - components: - - pos: 12.5,-19.5 - parent: 1 - type: Transform - - uid: 7267 - components: - - pos: 25.5,35.5 - parent: 1 - type: Transform - - uid: 7268 - components: - - pos: 26.5,35.5 - parent: 1 - type: Transform - - uid: 7269 - components: - - pos: 28.5,32.5 - parent: 1 - type: Transform - - uid: 7827 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,20.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 17490 - - 8155 - type: DeviceNetwork - - uid: 7894 - components: - - pos: -43.5,39.5 - parent: 1 - type: Transform - - uid: 7895 - components: - - pos: -42.5,39.5 - parent: 1 - type: Transform - - uid: 7898 - components: - - pos: -49.5,39.5 - parent: 1 - type: Transform - - uid: 7899 - components: - - pos: -48.5,39.5 - parent: 1 - type: Transform - - uid: 7913 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,20.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 17490 - - 8155 - type: DeviceNetwork - - uid: 7922 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,20.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 17490 - - 8155 - type: DeviceNetwork - - uid: 8180 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,51.5 - parent: 1 - type: Transform - - uid: 8861 - components: - - pos: -1.5,-2.5 - parent: 8756 - type: Transform - - uid: 8862 - components: - - pos: -0.5,-2.5 - parent: 8756 - type: Transform - - uid: 8863 - components: - - pos: 0.5,-2.5 - parent: 8756 - type: Transform - - uid: 8926 - components: - - pos: 4.5,5.5 - parent: 1 - type: Transform - - uid: 9013 - components: - - pos: 8.5,3.5 - parent: 1 - type: Transform - - uid: 9014 - components: - - pos: 7.5,3.5 - parent: 1 - type: Transform - - uid: 9028 - components: - - pos: 11.5,-27.5 - parent: 1 - type: Transform - - uid: 9029 - components: - - pos: 13.5,-27.5 - parent: 1 - type: Transform - - uid: 9030 - components: - - pos: 12.5,-27.5 - parent: 1 - type: Transform - - uid: 9048 - components: - - pos: 4.5,-4.5 - parent: 1 - type: Transform - - uid: 9049 - components: - - rot: 3.141592653589793 rad - pos: 6.5,3.5 - parent: 1 - type: Transform - - uid: 9411 - components: - - pos: 27.5,-10.5 - parent: 1 - type: Transform - - uid: 9429 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-9.5 - parent: 1 - type: Transform - - uid: 9430 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-8.5 - parent: 1 - type: Transform - - uid: 9431 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-7.5 - parent: 1 - type: Transform - - uid: 9589 - components: - - rot: 3.141592653589793 rad - pos: -11.5,38.5 - parent: 1 - type: Transform - - uid: 9590 - components: - - rot: 3.141592653589793 rad - pos: -11.5,37.5 - parent: 1 - type: Transform - - uid: 9591 - components: - - pos: -11.5,36.5 - parent: 1 - type: Transform - - uid: 17359 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,51.5 - parent: 1 - type: Transform - - uid: 17360 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,51.5 - parent: 1 - type: Transform - - uid: 17361 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,51.5 - parent: 1 - type: Transform - - uid: 17362 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,51.5 - parent: 1 - type: Transform - - uid: 17363 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,51.5 - parent: 1 - type: Transform - - uid: 17364 - components: - - pos: -12.5,51.5 - parent: 1 - type: Transform - - uid: 17368 - components: - - pos: -13.5,47.5 - parent: 1 - type: Transform - - uid: 17369 - components: - - pos: -12.5,47.5 - parent: 1 - type: Transform - - uid: 17370 - components: - - pos: -20.5,48.5 - parent: 1 - type: Transform - - uid: 17371 - components: - - pos: -20.5,47.5 - parent: 1 - type: Transform - - uid: 17420 - components: - - pos: 28.5,33.5 - parent: 1 - type: Transform - - uid: 17449 - components: - - pos: -8.5,33.5 - parent: 1 - type: Transform - - uid: 17520 - components: - - pos: 28.5,10.5 - parent: 1 - type: Transform - - uid: 18237 - components: - - pos: 10.5,12.5 - parent: 1 - type: Transform -- proto: Fireplace - entities: - - uid: 787 - components: - - pos: -25.5,11.5 - parent: 1 - type: Transform - - uid: 3191 - components: - - pos: 45.5,48.5 - parent: 1 - type: Transform - - uid: 4388 - components: - - pos: 25.5,11.5 - parent: 1 - type: Transform - - uid: 9162 - components: - - pos: -23.5,3.5 - parent: 1 - type: Transform - - uid: 9865 - components: - - pos: -36.5,-19.5 - parent: 1 - type: Transform - - uid: 10933 - components: - - pos: 35.5,-19.5 - parent: 1 - type: Transform -- proto: Flash - entities: - - uid: 8072 - components: - - pos: 3.497499,80.1647 - parent: 1 - type: Transform - - uid: 9397 - components: - - pos: -34.791756,-5.4286704 - parent: 1 - type: Transform -- proto: FlashlightLantern - entities: - - uid: 9191 - components: - - pos: 9.627577,-15.47229 - parent: 1 - type: Transform -- proto: FlashlightSeclite - entities: - - uid: 7770 - components: - - pos: -18.39577,40.731785 - parent: 1 - type: Transform - - uid: 7771 - components: - - pos: -18.58327,40.43491 - parent: 1 - type: Transform - - uid: 8184 - components: - - pos: -16.611473,49.69518 - parent: 1 - type: Transform - - uid: 8189 - components: - - pos: -16.444807,50.07018 - parent: 1 - type: Transform - - uid: 9419 - components: - - pos: 26.518345,-13.504487 - parent: 1 - type: Transform -- proto: Floodlight - entities: - - uid: 18421 - components: - - pos: 39.53336,61.486675 - parent: 1 - type: Transform -- proto: FloodlightBroken - entities: - - uid: 18356 - components: - - pos: -40.523964,60.07001 - parent: 1 - type: Transform -- proto: FloorDrain - entities: - - uid: 2930 - components: - - pos: 16.5,-40.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 4021 - components: - - pos: 19.5,-4.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 4316 - components: - - pos: -38.5,49.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 6631 - components: - - pos: 11.5,2.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 6816 - components: - - pos: -7.5,69.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 7439 - components: - - pos: 20.5,32.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 8425 - components: - - rot: 3.141592653589793 rad - pos: 15.5,28.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 17277 - components: - - pos: -23.5,-12.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 17456 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,23.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures -- proto: FloorTileItemGold - entities: - - uid: 17989 - components: - - pos: 45.45488,55.465294 - parent: 1 - type: Transform - - count: 20 - type: Stack -- proto: FloorTileItemLino - entities: - - uid: 17988 - components: - - pos: 34.302074,-18.390522 - parent: 1 - type: Transform - - count: 20 - type: Stack -- proto: FloraTree02 - entities: - - uid: 17655 - components: - - pos: 21.618893,21.654818 - parent: 1 - type: Transform -- proto: FloraTree05 - entities: - - uid: 17657 - components: - - pos: 27.071226,18.057373 - parent: 1 - type: Transform -- proto: FloraTree06 - entities: - - uid: 3419 - components: - - pos: -46.77861,40.963207 - parent: 1 - type: Transform -- proto: FloraTreeStump - entities: - - uid: 3420 - components: - - pos: -44.965977,40.860065 - parent: 1 - type: Transform - - uid: 17656 - components: - - pos: 23.131063,21.378092 - parent: 1 - type: Transform -- proto: FoodBakedCannoli - entities: - - uid: 17744 - components: - - pos: 14.449461,66.43389 - parent: 1 - type: Transform -- proto: FoodBakedPancakeBb - entities: - - uid: 17743 - components: - - pos: -35.421543,-26.464243 - parent: 1 - type: Transform -- proto: FoodBowlBig - entities: - - uid: 8268 - components: - - pos: -33.667786,49.56961 - parent: 1 - type: Transform - - uid: 8269 - components: - - pos: -33.41221,49.71152 - parent: 1 - type: Transform - - uid: 9289 - components: - - pos: 12.48844,-0.40089428 - parent: 1 - type: Transform -- proto: FoodBowlBigTrash - entities: - - uid: 10111 - components: - - pos: 17.411285,-36.66307 - parent: 1 - type: Transform - - uid: 10112 - components: - - pos: 18.107027,-35.953514 - parent: 1 - type: Transform -- proto: FoodBoxDonut - entities: - - uid: 8073 - components: - - pos: -4.45382,80.533676 - parent: 1 - type: Transform -- proto: FoodBoxNugget - entities: - - uid: 9301 - components: - - pos: 8.655134,0.48492008 - parent: 1 - type: Transform -- proto: FoodBoxPizzaFilled - entities: - - uid: 10096 - components: - - pos: -17.506914,-29.281166 - parent: 1 - type: Transform -- proto: FoodBreadPlain - entities: - - uid: 8370 - components: - - pos: 33.378624,49.652992 - parent: 1 - type: Transform -- proto: FoodBreadPlainSlice - entities: - - uid: 8371 - components: - - pos: 32.38471,49.709755 - parent: 1 - type: Transform - - uid: 8372 - components: - - pos: 32.526695,49.610416 - parent: 1 - type: Transform -- proto: FoodCakeBirthdaySlice - entities: - - uid: 13330 - components: - - pos: -9.337922,10.467162 - parent: 1 - type: Transform -- proto: FoodCondimentBottleEnzyme - entities: - - uid: 9300 - components: - - pos: 5.3300986,1.7788405 - parent: 1 - type: Transform -- proto: FoodCondimentPacketAstrotame - entities: - - uid: 17285 - components: - - pos: -0.6371541,9.529309 - parent: 1 - type: Transform -- proto: FoodCondimentPacketHorseradish - entities: - - uid: 17286 - components: - - pos: -0.25378847,-0.7095739 - parent: 1 - type: Transform -- proto: FoodCondimentPacketSoy - entities: - - uid: 17287 - components: - - pos: -10.562105,2.6537187 - parent: 1 - type: Transform -- proto: FoodContainerEgg - entities: - - uid: 3775 - components: - - pos: 7.601603,-3.2161803 - parent: 1 - type: Transform -- proto: FoodFrozenCornuto - entities: - - uid: 7696 - components: - - pos: -40.490295,77.610565 - parent: 1 - type: Transform -- proto: FoodFrozenPopsicleBerry - entities: - - uid: 9848 - components: - - flags: InContainer - type: MetaData - - parent: 9844 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodFrozenPopsicleJumbo - entities: - - uid: 9849 - components: - - flags: InContainer - type: MetaData - - parent: 9844 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodFrozenPopsicleOrange - entities: - - uid: 9846 - components: - - flags: InContainer - type: MetaData - - parent: 9844 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodFrozenSandwich - entities: - - uid: 9847 - components: - - flags: InContainer - type: MetaData - - parent: 9844 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodFrozenSandwichStrawberry - entities: - - uid: 9845 - components: - - flags: InContainer - type: MetaData - - parent: 9844 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodFrozenSundae - entities: - - uid: 9850 - components: - - flags: InContainer - type: MetaData - - parent: 9844 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodKebabSkewer - entities: - - uid: 8273 - components: - - pos: -33.142433,49.626377 - parent: 1 - type: Transform - - uid: 9287 - components: - - pos: 12.36344,-0.23422778 - parent: 1 - type: Transform - - uid: 9288 - components: - - pos: 12.571773,-0.33839428 - parent: 1 - type: Transform -- proto: FoodMealMemoryleek - entities: - - uid: 4378 - components: - - pos: 47.521317,74.488594 - parent: 1 - type: Transform -- proto: FoodMealMilkape - entities: - - uid: 17747 - components: - - pos: -3.4239073,34.287933 - parent: 1 - type: Transform -- proto: FoodMeatBaconCooked - entities: - - uid: 17740 - components: - - pos: 24.415808,-29.499893 - parent: 1 - type: Transform -- proto: FoodPieBaklava - entities: - - uid: 17741 - components: - - pos: -7.44179,-70.460884 - parent: 1 - type: Transform -- proto: FoodPieBananaCream - entities: - - uid: 6607 - components: - - pos: -15.830833,-0.5688125 - parent: 1 - type: Transform - - uid: 6608 - components: - - pos: -15.8876295,-0.25660872 - parent: 1 - type: Transform - - uid: 6609 - components: - - pos: -16.086414,-0.6255777 - parent: 1 - type: Transform -- proto: FoodPlate - entities: - - uid: 8266 - components: - - pos: -33.63939,49.881817 - parent: 1 - type: Transform - - uid: 9291 - components: - - pos: 12.33918,-1.1745799 - parent: 1 - type: Transform - - uid: 17292 - components: - - pos: -0.4880681,3.8883455 - parent: 1 - type: Transform -- proto: FoodPlateSmall - entities: - - uid: 8267 - components: - - pos: -33.667786,49.72571 - parent: 1 - type: Transform - - uid: 8955 - components: - - pos: -12.011354,-3.421762 - parent: 1 - type: Transform - - uid: 9292 - components: - - pos: 12.342606,-1.2967278 - parent: 1 - type: Transform - - uid: 17294 - components: - - pos: -10.796385,2.6324317 - parent: 1 - type: Transform - - uid: 17295 - components: - - pos: -0.40287447,9.14615 - parent: 1 - type: Transform -- proto: FoodPlateTin - entities: - - uid: 8270 - components: - - pos: -33.327015,49.498657 - parent: 1 - type: Transform - - uid: 8271 - components: - - pos: -33.142433,49.597996 - parent: 1 - type: Transform - - uid: 9290 - components: - - pos: 12.42594,-0.8383943 - parent: 1 - type: Transform -- proto: FoodSnackSus - entities: - - uid: 17739 - components: - - pos: 27.402672,-19.487795 - parent: 1 - type: Transform -- proto: FoodTartMime - entities: - - uid: 6619 - components: - - pos: -16.442228,5.5049815 - parent: 1 - type: Transform -- proto: FoodTinPeachesMaint - entities: - - uid: 9978 - components: - - pos: -33.61911,-24.182272 - parent: 1 - type: Transform -- proto: Football - entities: - - uid: 8306 - components: - - pos: -38.624706,46.43239 - parent: 1 - type: Transform -- proto: Fork - entities: - - uid: 8920 - components: - - pos: -11.613461,-3.25968 - parent: 1 - type: Transform - - uid: 17291 - components: - - pos: -0.80753946,4.3779383 - parent: 1 - type: Transform -- proto: ForkPlastic - entities: - - uid: 6688 - components: - - pos: 3.365237,0.54051036 - parent: 1 - type: Transform - - uid: 6700 - components: - - pos: 3.365237,0.54051036 - parent: 1 - type: Transform - - uid: 6701 - components: - - pos: 3.365237,0.54051036 - parent: 1 - type: Transform -- proto: GasAnalyzer - entities: - - uid: 7117 - components: - - pos: -11.540349,34.601944 - parent: 1 - type: Transform - - uid: 8070 - components: - - pos: -7.5491548,79.71059 - parent: 1 - type: Transform - - uid: 8713 - components: - - pos: -11.3678055,-19.468292 - parent: 1 - type: Transform - - uid: 9233 - components: - - pos: -22.495941,-11.441285 - parent: 1 - type: Transform - - uid: 13885 - components: - - pos: 20.339535,52.7268 - parent: 1 - type: Transform -- proto: GasCanisterBrokenBase - entities: - - uid: 10109 - components: - - pos: -28.5,-18.5 - parent: 1 - type: Transform -- proto: GasFilterFlipped - entities: - - uid: 2602 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2603 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-22.5 - parent: 1 - type: Transform - - uid: 2604 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-24.5 - parent: 1 - type: Transform - - uid: 2605 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-26.5 - parent: 1 - type: Transform - - uid: 2606 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-28.5 - parent: 1 - type: Transform - - uid: 2607 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-30.5 - parent: 1 - type: Transform -- proto: GasMinerCarbonDioxide - entities: - - uid: 6766 - components: - - pos: -0.5,-23.5 - parent: 1 - type: Transform -- proto: GasMinerNitrogenStationLarge - entities: - - uid: 6765 - components: - - pos: -0.5,-21.5 - parent: 1 - type: Transform -- proto: GasMinerOxygenStationLarge - entities: - - uid: 6764 - components: - - pos: -0.5,-19.5 - parent: 1 - type: Transform -- proto: GasMinerPlasma - entities: - - uid: 3023 - components: - - pos: -0.5,-27.5 - parent: 1 - type: Transform -- proto: GasMixer - entities: - - uid: 2611 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-19.5 - parent: 1 - type: Transform - - inletTwoConcentration: 0.22000003 - inletOneConcentration: 0.78 - type: GasMixer - - color: '#0055CCFF' - type: AtmosPipeColor -- proto: GasMixerFlipped - entities: - - uid: 2617 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-22.5 - parent: 1 - type: Transform - - uid: 2618 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-23.5 - parent: 1 - type: Transform - - uid: 2619 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-25.5 - parent: 1 - type: Transform - - uid: 2620 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-27.5 - parent: 1 - type: Transform - - uid: 2621 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-29.5 - parent: 1 - type: Transform - - uid: 4699 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,33.5 - parent: 1 - type: Transform -- proto: GasOutletInjector - entities: - - uid: 2666 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-39.5 - parent: 1 - type: Transform - - uid: 2667 - components: - - pos: 0.5,-29.5 - parent: 1 - type: Transform - - uid: 2668 - components: - - pos: 0.5,-27.5 - parent: 1 - type: Transform - - uid: 2669 - components: - - pos: 0.5,-25.5 - parent: 1 - type: Transform - - uid: 2670 - components: - - pos: 0.5,-23.5 - parent: 1 - type: Transform - - uid: 2671 - components: - - pos: 0.5,-21.5 - parent: 1 - type: Transform - - uid: 2672 - components: - - pos: 0.5,-19.5 - parent: 1 - type: Transform - - uid: 2673 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-33.5 - parent: 1 - type: Transform - - uid: 2711 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-43.5 - parent: 1 - type: Transform - - uid: 2712 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-44.5 - parent: 1 - type: Transform - - uid: 2713 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-45.5 - parent: 1 - type: Transform -- proto: GasPassiveVent - entities: - - uid: 450 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-43.5 - parent: 1 - type: Transform - - uid: 2596 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-19.5 - parent: 1 - type: Transform - - uid: 2597 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-21.5 - parent: 1 - type: Transform - - uid: 2598 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-23.5 - parent: 1 - type: Transform - - uid: 2599 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-25.5 - parent: 1 - type: Transform - - uid: 2600 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-27.5 - parent: 1 - type: Transform - - uid: 2601 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-29.5 - parent: 1 - type: Transform - - uid: 2627 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-32.5 - parent: 1 - type: Transform - - uid: 2628 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-18.5 - parent: 1 - type: Transform - - uid: 2661 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-39.5 - parent: 1 - type: Transform - - uid: 2662 - components: - - pos: 0.5,-35.5 - parent: 1 - type: Transform - - uid: 2680 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-35.5 - parent: 1 - type: Transform - - uid: 2951 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-44.5 - parent: 1 - type: Transform - - uid: 2952 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-45.5 - parent: 1 - type: Transform - - uid: 2961 - components: - - pos: 4.5,-43.5 - parent: 1 - type: Transform - - uid: 3538 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,28.5 - parent: 1 - type: Transform - - uid: 3539 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,30.5 - parent: 1 - type: Transform - - uid: 9195 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-41.5 - parent: 1 - type: Transform - - uid: 9853 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-12.5 - parent: 1 - type: Transform - - uid: 18480 - components: - - pos: 17.5,-11.5 - parent: 1 - type: Transform - - uid: 18481 - components: - - pos: 20.5,-11.5 - parent: 1 - type: Transform -- proto: GasPipeBend - entities: - - uid: 2572 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2573 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2574 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2575 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2576 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2577 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2646 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2686 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2693 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2694 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2703 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2706 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2707 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2744 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2756 - components: - - pos: -11.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2956 - components: - - pos: 3.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2960 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6372 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,33.5 - parent: 1 - type: Transform - - uid: 6376 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,30.5 - parent: 1 - type: Transform - - uid: 6586 - components: - - rot: 3.141592653589793 rad - pos: -7.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9031 - components: - - rot: 3.141592653589793 rad - pos: 10.5,32.5 - parent: 1 - type: Transform - - uid: 10878 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10879 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10881 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10885 - components: - - pos: 30.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10891 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13857 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13859 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13862 - components: - - rot: 3.141592653589793 rad - pos: 16.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13868 - components: - - pos: 22.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13872 - components: - - rot: 3.141592653589793 rad - pos: 22.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13875 - components: - - pos: 25.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14301 - components: - - pos: 12.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14304 - components: - - pos: 11.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14329 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14330 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14386 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14399 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14400 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14561 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14589 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14590 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14676 - components: - - pos: -13.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14700 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14701 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14707 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14708 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14710 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14725 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14737 - components: - - pos: 9.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14738 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14745 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14746 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14791 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14794 - components: - - pos: 48.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14877 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14881 - components: - - pos: 48.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14905 - components: - - rot: 3.141592653589793 rad - pos: 25.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14908 - components: - - pos: 24.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14964 - components: - - pos: 32.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15009 - components: - - pos: 30.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15016 - components: - - rot: 3.141592653589793 rad - pos: 27.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15017 - components: - - pos: 27.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15021 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15025 - components: - - rot: 3.141592653589793 rad - pos: 24.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15053 - components: - - pos: 44.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15068 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15080 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15081 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15092 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15124 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15251 - components: - - pos: -13.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15257 - components: - - rot: 3.141592653589793 rad - pos: -20.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15282 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15291 - components: - - rot: 3.141592653589793 rad - pos: -9.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15304 - components: - - rot: 3.141592653589793 rad - pos: -5.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15314 - components: - - pos: -5.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15315 - components: - - rot: 3.141592653589793 rad - pos: -6.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15404 - components: - - rot: 3.141592653589793 rad - pos: -12.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15421 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15422 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15433 - components: - - rot: 3.141592653589793 rad - pos: -20.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15441 - components: - - rot: 3.141592653589793 rad - pos: -21.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15446 - components: - - rot: 3.141592653589793 rad - pos: -24.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15451 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15495 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15541 - components: - - rot: 3.141592653589793 rad - pos: 7.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15545 - components: - - rot: 3.141592653589793 rad - pos: 6.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15548 - components: - - pos: 6.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15657 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15658 - components: - - rot: 3.141592653589793 rad - pos: -49.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15679 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15682 - components: - - pos: -37.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15711 - components: - - pos: -40.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15735 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15740 - components: - - pos: -35.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15745 - components: - - pos: -36.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15767 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15772 - components: - - pos: -17.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15885 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15897 - components: - - rot: 3.141592653589793 rad - pos: -48.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16022 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16023 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16031 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16059 - components: - - pos: -4.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16070 - components: - - pos: -3.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16086 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16087 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16118 - components: - - pos: -17.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16137 - components: - - pos: -18.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16139 - components: - - rot: 3.141592653589793 rad - pos: -18.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16148 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16165 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16167 - components: - - pos: -35.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16201 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16203 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16212 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,59.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16237 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16282 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16325 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,73.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16335 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,72.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16347 - components: - - rot: 3.141592653589793 rad - pos: 5.5,74.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16352 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16353 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 17479 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,10.5 - parent: 1 - type: Transform - - uid: 18140 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 18144 - components: - - pos: -19.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 18147 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 18154 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 18477 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-12.5 - parent: 1 - type: Transform - - uid: 18479 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-12.5 - parent: 1 - type: Transform -- proto: GasPipeFourway - entities: - - uid: 2648 - components: - - pos: -8.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 2691 - components: - - pos: -6.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2705 - components: - - pos: -4.5,-44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2736 - components: - - pos: -12.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2767 - components: - - pos: -10.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 9444 - components: - - pos: 30.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14412 - components: - - pos: 6.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14453 - components: - - pos: 32.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14668 - components: - - pos: -13.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14688 - components: - - pos: -12.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14863 - components: - - pos: 30.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14891 - components: - - pos: 30.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14960 - components: - - pos: 32.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14973 - components: - - pos: 30.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15085 - components: - - pos: 22.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15181 - components: - - pos: 0.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15182 - components: - - pos: -1.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15214 - components: - - pos: -15.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15272 - components: - - pos: -10.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15355 - components: - - pos: -1.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15361 - components: - - pos: 0.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15519 - components: - - pos: 11.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15533 - components: - - pos: 10.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15630 - components: - - pos: -30.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15631 - components: - - pos: -32.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15983 - components: - - pos: -8.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15984 - components: - - pos: -9.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16052 - components: - - pos: -9.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- proto: GasPipeStraight - entities: - - uid: 2542 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2543 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2544 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2545 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2546 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2547 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2548 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2549 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2550 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2551 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2552 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2553 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2554 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2555 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2556 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2557 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2558 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2559 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2560 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2561 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2562 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2563 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2564 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2565 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2566 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2567 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2568 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2569 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2570 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2571 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2578 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2579 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2580 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2581 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2582 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2583 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2584 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2585 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2586 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2587 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2588 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2589 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2590 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2591 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2592 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2593 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2594 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2595 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2608 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2612 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2613 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2614 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2616 - components: - - pos: -8.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2626 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2631 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2632 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2633 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2634 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2635 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2642 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2644 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2645 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2647 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 2649 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2650 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2651 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2653 - components: - - pos: -8.5,-34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2654 - components: - - pos: -8.5,-35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2655 - components: - - pos: -8.5,-36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2656 - components: - - pos: -8.5,-37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2657 - components: - - pos: -8.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2658 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2660 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2663 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2664 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2665 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2674 - components: - - pos: 0.5,-36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2675 - components: - - pos: 0.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2677 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2678 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2679 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2681 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2682 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2683 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2688 - components: - - pos: -6.5,-36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2692 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2699 - components: - - pos: -6.5,-40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2700 - components: - - pos: -6.5,-41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2701 - components: - - pos: -6.5,-42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2702 - components: - - pos: -6.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2708 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2709 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2710 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2714 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2715 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2716 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2717 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2718 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2719 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2720 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2721 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2722 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2723 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2724 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2725 - components: - - pos: -6.5,-19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 2726 - components: - - pos: -6.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2727 - components: - - pos: -6.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2728 - components: - - pos: -6.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2729 - components: - - pos: -6.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2730 - components: - - pos: -6.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2732 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 2733 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2734 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2735 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2738 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2739 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2742 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 2743 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2746 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2747 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2751 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2752 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2753 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2757 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2758 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2766 - components: - - pos: -8.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2770 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2771 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2775 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2776 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2777 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2778 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2780 - components: - - pos: -4.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2782 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2783 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2784 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2785 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2786 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2787 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2788 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2789 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2790 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2791 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2792 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2793 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2794 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2795 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2797 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2953 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2954 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2955 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3540 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3541 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3542 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3543 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3544 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,28.5 - parent: 1 - type: Transform - - uid: 3545 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,30.5 - parent: 1 - type: Transform - - uid: 4402 - components: - - pos: 31.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 4416 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5348 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6375 - components: - - rot: 3.141592653589793 rad - pos: 12.5,31.5 - parent: 1 - type: Transform - - uid: 8550 - components: - - rot: 3.141592653589793 rad - pos: 11.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8689 - components: - - rot: 3.141592653589793 rad - pos: 11.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8690 - components: - - rot: 3.141592653589793 rad - pos: 11.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 9033 - components: - - pos: 11.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 9034 - components: - - pos: 11.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9035 - components: - - pos: 10.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 9196 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9197 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9198 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9200 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9725 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10880 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10882 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10883 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10884 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10886 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10887 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10888 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10889 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10890 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10892 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10893 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10894 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10895 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10896 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10897 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10898 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10900 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10901 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10906 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10907 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10908 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10909 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10910 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10911 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10912 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10913 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10915 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10916 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10917 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10918 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10920 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10921 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10922 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10924 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10925 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10927 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12294 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12900 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13052 - components: - - pos: 19.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 13492 - components: - - pos: 4.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13858 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13860 - components: - - pos: 16.5,51.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13861 - components: - - pos: 16.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13863 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13864 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13865 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13866 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13867 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13869 - components: - - pos: 22.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13870 - components: - - pos: 22.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13871 - components: - - pos: 22.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13873 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13874 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13876 - components: - - pos: 25.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13877 - components: - - pos: 25.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13878 - components: - - pos: 25.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13879 - components: - - pos: 25.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13880 - components: - - pos: 25.5,40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13881 - components: - - pos: 25.5,39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13883 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13884 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14096 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14220 - components: - - pos: 4.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14221 - components: - - pos: 4.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14222 - components: - - pos: 4.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14226 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14228 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14229 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14231 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14232 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14234 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14235 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14236 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14237 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14238 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14239 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14241 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14242 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14243 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14244 - components: - - rot: 3.141592653589793 rad - pos: 1.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14246 - components: - - rot: 3.141592653589793 rad - pos: 1.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14247 - components: - - rot: 3.141592653589793 rad - pos: 1.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14248 - components: - - rot: 3.141592653589793 rad - pos: 1.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14249 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14250 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14251 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14252 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14255 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14256 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14257 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14258 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14259 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14260 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14263 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14264 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14265 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14266 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14267 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14268 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14269 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14270 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14271 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14272 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14273 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14274 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14275 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14276 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14278 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14280 - components: - - pos: 19.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14281 - components: - - pos: 19.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14282 - components: - - pos: 19.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14283 - components: - - pos: 19.5,-13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14284 - components: - - pos: 19.5,-14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14287 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14288 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14289 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14290 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14291 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14292 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14293 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14294 - components: - - rot: 3.141592653589793 rad - pos: 19.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14297 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14299 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14300 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14302 - components: - - pos: 10.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14305 - components: - - pos: 11.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14306 - components: - - pos: 11.5,-13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14307 - components: - - pos: 11.5,-14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14308 - components: - - pos: 11.5,-15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14309 - components: - - pos: 11.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14310 - components: - - pos: 11.5,-17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14311 - components: - - pos: 10.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14313 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14314 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14315 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14320 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14321 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14324 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14325 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14326 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14327 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14328 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14331 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14334 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14335 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14336 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14337 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14338 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14339 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14340 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14346 - components: - - pos: 11.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14347 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14348 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14349 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14350 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14354 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14355 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14356 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14357 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14358 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14359 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14360 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14361 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14362 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14363 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14364 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14365 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14368 - components: - - pos: 11.5,-19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14369 - components: - - pos: 11.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14370 - components: - - pos: 11.5,-26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14371 - components: - - pos: 12.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14372 - components: - - pos: 12.5,-28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14373 - components: - - pos: 12.5,-29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14374 - components: - - pos: 11.5,-27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14375 - components: - - pos: 11.5,-28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14376 - components: - - pos: 11.5,-29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14377 - components: - - pos: 11.5,-30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14378 - components: - - pos: 11.5,-31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14380 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14381 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14382 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14384 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14385 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14387 - components: - - pos: -32.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14388 - components: - - pos: 12.5,-36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14390 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14391 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14394 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14395 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14396 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14397 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14398 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14401 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14402 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14403 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14406 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14407 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14408 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14409 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14410 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14411 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14413 - components: - - pos: 6.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14414 - components: - - pos: 6.5,-31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14420 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14421 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14422 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14423 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14425 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14426 - components: - - pos: -30.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14428 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14429 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14431 - components: - - rot: 3.141592653589793 rad - pos: 32.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14432 - components: - - rot: 3.141592653589793 rad - pos: 32.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14433 - components: - - rot: 3.141592653589793 rad - pos: 32.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14434 - components: - - rot: 3.141592653589793 rad - pos: 32.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14435 - components: - - rot: 3.141592653589793 rad - pos: 32.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14436 - components: - - rot: 3.141592653589793 rad - pos: 32.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14438 - components: - - rot: 3.141592653589793 rad - pos: 32.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14439 - components: - - rot: 3.141592653589793 rad - pos: 32.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14440 - components: - - rot: 3.141592653589793 rad - pos: 32.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14441 - components: - - rot: 3.141592653589793 rad - pos: 32.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14442 - components: - - rot: 3.141592653589793 rad - pos: 32.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14443 - components: - - pos: 32.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14444 - components: - - rot: 3.141592653589793 rad - pos: 32.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14447 - components: - - rot: 3.141592653589793 rad - pos: 32.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14448 - components: - - rot: 3.141592653589793 rad - pos: 32.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14451 - components: - - rot: 3.141592653589793 rad - pos: 32.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14452 - components: - - rot: 3.141592653589793 rad - pos: 32.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14454 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14455 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14456 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14458 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14459 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14460 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14461 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14462 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14463 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14464 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14465 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14466 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14467 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14468 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14470 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14471 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14472 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14474 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14475 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14476 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14477 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14478 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14479 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14480 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14481 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14483 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14484 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14485 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14486 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14487 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14488 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14490 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14491 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14492 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14493 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14494 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14495 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14498 - components: - - rot: 3.141592653589793 rad - pos: 1.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14499 - components: - - rot: 3.141592653589793 rad - pos: 1.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14500 - components: - - rot: 3.141592653589793 rad - pos: 1.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14502 - components: - - rot: 3.141592653589793 rad - pos: 1.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14503 - components: - - rot: 3.141592653589793 rad - pos: 1.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14504 - components: - - rot: 3.141592653589793 rad - pos: 1.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14505 - components: - - rot: 3.141592653589793 rad - pos: 1.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14506 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14507 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14508 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14510 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14511 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14512 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14513 - components: - - rot: 3.141592653589793 rad - pos: -2.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14514 - components: - - rot: 3.141592653589793 rad - pos: -2.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14515 - components: - - rot: 3.141592653589793 rad - pos: -2.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14517 - components: - - rot: 3.141592653589793 rad - pos: -2.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14518 - components: - - rot: 3.141592653589793 rad - pos: -2.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14519 - components: - - rot: 3.141592653589793 rad - pos: -2.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14520 - components: - - rot: 3.141592653589793 rad - pos: -2.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14521 - components: - - rot: 3.141592653589793 rad - pos: -2.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14523 - components: - - rot: 3.141592653589793 rad - pos: -2.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14524 - components: - - rot: 3.141592653589793 rad - pos: -2.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14525 - components: - - rot: 3.141592653589793 rad - pos: -2.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14526 - components: - - rot: 3.141592653589793 rad - pos: -2.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14527 - components: - - rot: 3.141592653589793 rad - pos: -2.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14529 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14530 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14531 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14533 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14536 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14537 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14538 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14541 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14542 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14543 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14544 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14545 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14546 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14547 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14548 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14549 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14550 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14551 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14552 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14553 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14554 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14555 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14556 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14557 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14558 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14559 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14560 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14562 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14564 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14565 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14566 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14568 - components: - - pos: -18.5,-14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14573 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14574 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14575 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14576 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14577 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14578 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14581 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14582 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14583 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14584 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14585 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14586 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14588 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14591 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14592 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14593 - components: - - pos: -30.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14594 - components: - - pos: -30.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14595 - components: - - pos: -30.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14596 - components: - - pos: -30.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14597 - components: - - pos: -30.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14598 - components: - - pos: -30.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14600 - components: - - pos: -30.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14601 - components: - - pos: -30.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14602 - components: - - pos: -30.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14603 - components: - - pos: -30.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14604 - components: - - pos: -30.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14605 - components: - - pos: -30.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14607 - components: - - pos: -30.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14608 - components: - - pos: -30.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14609 - components: - - pos: -30.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14611 - components: - - pos: -30.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14612 - components: - - pos: -30.5,10.5 - parent: 1 - type: Transform - - uid: 14613 - components: - - pos: -30.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14614 - components: - - pos: -32.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14617 - components: - - pos: -32.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14619 - components: - - pos: -32.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14620 - components: - - pos: -32.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14621 - components: - - pos: -32.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14622 - components: - - pos: -32.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14623 - components: - - pos: -32.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14624 - components: - - pos: -32.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14625 - components: - - pos: -32.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14626 - components: - - pos: -32.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14627 - components: - - pos: -32.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14628 - components: - - pos: -32.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14630 - components: - - pos: -32.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14631 - components: - - pos: -32.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14632 - components: - - pos: -32.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14637 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14638 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14639 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14640 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14641 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14642 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14643 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14644 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14645 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14646 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14647 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14650 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14651 - components: - - pos: -8.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14652 - components: - - pos: -8.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14653 - components: - - pos: -8.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14654 - components: - - pos: -8.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14655 - components: - - pos: -8.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14656 - components: - - pos: -6.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14657 - components: - - pos: -6.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14658 - components: - - pos: -6.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14661 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14662 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14663 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14664 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14665 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14666 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14669 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14671 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14674 - components: - - rot: 3.141592653589793 rad - pos: -13.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14675 - components: - - rot: 3.141592653589793 rad - pos: -13.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14677 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14678 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14679 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14680 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14681 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14686 - components: - - pos: -12.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14687 - components: - - pos: -12.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14689 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14690 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14691 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14692 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14693 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14694 - components: - - rot: 3.141592653589793 rad - pos: -13.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14695 - components: - - pos: -13.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14698 - components: - - pos: -12.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14699 - components: - - pos: -12.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14702 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14703 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14704 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14705 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14706 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14709 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14715 - components: - - pos: 11.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14716 - components: - - pos: 11.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14721 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14722 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14723 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14724 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14726 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14727 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14728 - components: - - rot: 3.141592653589793 rad - pos: 6.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14729 - components: - - rot: 3.141592653589793 rad - pos: 6.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14730 - components: - - rot: 3.141592653589793 rad - pos: 6.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14731 - components: - - rot: 3.141592653589793 rad - pos: 6.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14732 - components: - - rot: 3.141592653589793 rad - pos: 6.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14733 - components: - - rot: 3.141592653589793 rad - pos: 6.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14734 - components: - - rot: 3.141592653589793 rad - pos: 6.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14735 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14736 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14739 - components: - - rot: 3.141592653589793 rad - pos: 8.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14740 - components: - - rot: 3.141592653589793 rad - pos: 8.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14741 - components: - - rot: 3.141592653589793 rad - pos: 8.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14742 - components: - - rot: 3.141592653589793 rad - pos: 8.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14743 - components: - - rot: 3.141592653589793 rad - pos: 8.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14744 - components: - - rot: 3.141592653589793 rad - pos: 8.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14747 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14752 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14753 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14754 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14755 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14756 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14757 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14758 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14759 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14762 - components: - - pos: 25.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14763 - components: - - pos: 25.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14764 - components: - - pos: 25.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14766 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14767 - components: - - pos: -32.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14768 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14770 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14773 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14774 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14775 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14776 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14779 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14780 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14781 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14782 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14783 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14784 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14785 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14786 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14787 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14788 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14789 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14790 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14795 - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14796 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14797 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14798 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14799 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14800 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14801 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14802 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14803 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14804 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14805 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14806 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14809 - components: - - pos: 30.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14810 - components: - - pos: 30.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14811 - components: - - pos: 30.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14812 - components: - - pos: 30.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14813 - components: - - pos: 30.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14814 - components: - - pos: 30.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14818 - components: - - pos: 30.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14819 - components: - - pos: 30.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14822 - components: - - rot: 3.141592653589793 rad - pos: 30.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14823 - components: - - rot: 3.141592653589793 rad - pos: 30.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14824 - components: - - rot: 3.141592653589793 rad - pos: 30.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14825 - components: - - rot: 3.141592653589793 rad - pos: 30.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14828 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14829 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14830 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14831 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14832 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14833 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14834 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14835 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14836 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14837 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14838 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14839 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14846 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14847 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14848 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14849 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14850 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14851 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14852 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14853 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14854 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14855 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14858 - components: - - pos: 30.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14859 - components: - - pos: 30.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14860 - components: - - pos: 30.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14861 - components: - - pos: 30.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14862 - components: - - pos: 30.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14864 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14865 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14866 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14867 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14869 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14870 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14871 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14872 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14873 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14874 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14878 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14882 - components: - - rot: -1.5707963267948966 rad - pos: 47.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14883 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14884 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14885 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14886 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14887 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14888 - components: - - rot: 3.141592653589793 rad - pos: 30.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14889 - components: - - rot: 3.141592653589793 rad - pos: 30.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14890 - components: - - rot: 3.141592653589793 rad - pos: 30.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14892 - components: - - rot: 3.141592653589793 rad - pos: 32.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14893 - components: - - rot: 3.141592653589793 rad - pos: 32.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14894 - components: - - rot: 3.141592653589793 rad - pos: 32.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14895 - components: - - rot: 3.141592653589793 rad - pos: 32.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14896 - components: - - rot: 3.141592653589793 rad - pos: 32.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14897 - components: - - rot: 3.141592653589793 rad - pos: 32.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14901 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14902 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14903 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14904 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14909 - components: - - pos: 24.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14910 - components: - - pos: 24.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14911 - components: - - pos: 24.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14912 - components: - - pos: 24.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14913 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14914 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14918 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14919 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14920 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14921 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14922 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14923 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14924 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14925 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14926 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14930 - components: - - rot: 3.141592653589793 rad - pos: 32.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14931 - components: - - rot: 3.141592653589793 rad - pos: 32.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14932 - components: - - rot: 3.141592653589793 rad - pos: 32.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14933 - components: - - rot: 3.141592653589793 rad - pos: 32.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14934 - components: - - rot: 3.141592653589793 rad - pos: 32.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14935 - components: - - rot: 3.141592653589793 rad - pos: 32.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14936 - components: - - rot: 3.141592653589793 rad - pos: 32.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14937 - components: - - rot: 3.141592653589793 rad - pos: 32.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14938 - components: - - rot: 3.141592653589793 rad - pos: 32.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14939 - components: - - rot: 3.141592653589793 rad - pos: 32.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14942 - components: - - pos: 30.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14943 - components: - - pos: 30.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14944 - components: - - pos: 30.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14945 - components: - - pos: 30.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14946 - components: - - pos: 30.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14947 - components: - - pos: 30.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14948 - components: - - pos: 30.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14949 - components: - - pos: 30.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14950 - components: - - pos: 30.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14951 - components: - - pos: 30.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14952 - components: - - pos: 30.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14953 - components: - - pos: 30.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14956 - components: - - pos: 32.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14957 - components: - - pos: 32.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14958 - components: - - pos: 32.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14959 - components: - - pos: 32.5,35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14961 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14962 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14967 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14969 - components: - - pos: 30.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14970 - components: - - pos: 30.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14971 - components: - - pos: 30.5,36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14974 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14975 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14976 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14977 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14978 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14979 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14981 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14982 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14984 - components: - - rot: 3.141592653589793 rad - pos: 31.5,38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14985 - components: - - rot: 3.141592653589793 rad - pos: 31.5,39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14989 - components: - - rot: 3.141592653589793 rad - pos: 30.5,39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14990 - components: - - rot: 3.141592653589793 rad - pos: 30.5,40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14992 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14993 - components: - - rot: 3.141592653589793 rad - pos: 31.5,41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14994 - components: - - rot: 3.141592653589793 rad - pos: 31.5,42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14995 - components: - - rot: 3.141592653589793 rad - pos: 31.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14996 - components: - - rot: 3.141592653589793 rad - pos: 31.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14997 - components: - - rot: 3.141592653589793 rad - pos: 31.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14998 - components: - - rot: 3.141592653589793 rad - pos: 31.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15003 - components: - - pos: 30.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15004 - components: - - pos: 30.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15005 - components: - - pos: 30.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15006 - components: - - pos: 30.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15007 - components: - - pos: 30.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15010 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15011 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15012 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15013 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15014 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15015 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15018 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15022 - components: - - rot: 3.141592653589793 rad - pos: 25.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15023 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15024 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15026 - components: - - pos: 24.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15027 - components: - - pos: 24.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15032 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15033 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15034 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15038 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15039 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15040 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15041 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15042 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15043 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15044 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15045 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15047 - components: - - rot: 3.141592653589793 rad - pos: 44.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15048 - components: - - rot: 3.141592653589793 rad - pos: 44.5,38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15049 - components: - - rot: 3.141592653589793 rad - pos: 44.5,39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15050 - components: - - rot: 3.141592653589793 rad - pos: 44.5,40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15051 - components: - - rot: 3.141592653589793 rad - pos: 44.5,41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15052 - components: - - rot: 3.141592653589793 rad - pos: 44.5,42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15055 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15056 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15057 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15058 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15059 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15060 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15062 - components: - - rot: 3.141592653589793 rad - pos: 43.5,39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15063 - components: - - rot: 3.141592653589793 rad - pos: 43.5,40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15064 - components: - - rot: 3.141592653589793 rad - pos: 43.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15069 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15070 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15071 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15072 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15073 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15074 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15077 - components: - - rot: 3.141592653589793 rad - pos: 25.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15078 - components: - - rot: 3.141592653589793 rad - pos: 25.5,35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15079 - components: - - rot: 3.141592653589793 rad - pos: 31.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15082 - components: - - rot: 3.141592653589793 rad - pos: 32.5,52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15083 - components: - - rot: 3.141592653589793 rad - pos: 32.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15087 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15088 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15089 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15090 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15091 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15096 - components: - - pos: 18.5,38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15097 - components: - - pos: 18.5,39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15098 - components: - - pos: 18.5,40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15099 - components: - - pos: 22.5,39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15100 - components: - - pos: 22.5,40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15103 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15104 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15105 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15106 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15107 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15108 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15109 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15111 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15112 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15113 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15115 - components: - - pos: 14.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15116 - components: - - pos: 14.5,38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15117 - components: - - pos: 14.5,39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15118 - components: - - pos: 14.5,40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15122 - components: - - pos: 14.5,42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15123 - components: - - pos: 14.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15125 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15126 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15127 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15128 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15136 - components: - - pos: 15.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15138 - components: - - pos: 15.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15139 - components: - - pos: 15.5,40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15140 - components: - - pos: 15.5,39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15141 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15142 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15143 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15144 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15145 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15149 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15150 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15151 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15152 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15156 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15157 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15158 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15160 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15161 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15162 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15163 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15164 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15167 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15168 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15169 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15170 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15171 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15174 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15175 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15176 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15177 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15178 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15179 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15180 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15183 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15184 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15185 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15186 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15187 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15188 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15189 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15190 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15191 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15194 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15195 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15196 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15197 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15198 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15199 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15201 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15202 - components: - - pos: 0.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15203 - components: - - pos: 0.5,38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15204 - components: - - pos: 0.5,39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15205 - components: - - pos: 0.5,40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15206 - components: - - pos: -1.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15207 - components: - - pos: -1.5,36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15208 - components: - - pos: -1.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15209 - components: - - pos: -1.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15210 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15211 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15212 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15215 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15216 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15217 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15218 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15219 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15220 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15221 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15222 - components: - - pos: -15.5,35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15223 - components: - - pos: -15.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15224 - components: - - pos: -15.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15227 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15228 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15229 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15230 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15232 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15233 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15235 - components: - - rot: 3.141592653589793 rad - pos: -15.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15236 - components: - - rot: 3.141592653589793 rad - pos: -15.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15237 - components: - - rot: 3.141592653589793 rad - pos: -15.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15238 - components: - - rot: 3.141592653589793 rad - pos: -15.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15240 - components: - - pos: -15.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15243 - components: - - rot: 3.141592653589793 rad - pos: -13.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15244 - components: - - rot: 3.141592653589793 rad - pos: -13.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15245 - components: - - rot: 3.141592653589793 rad - pos: -13.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15247 - components: - - rot: 3.141592653589793 rad - pos: -13.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15248 - components: - - rot: 3.141592653589793 rad - pos: -13.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15249 - components: - - rot: 3.141592653589793 rad - pos: -13.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15250 - components: - - rot: 3.141592653589793 rad - pos: -13.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15252 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15253 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15254 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15255 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15256 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15258 - components: - - pos: -20.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15259 - components: - - pos: -20.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15260 - components: - - pos: -20.5,36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15261 - components: - - pos: -20.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15269 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15273 - components: - - rot: 3.141592653589793 rad - pos: -11.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15274 - components: - - rot: 3.141592653589793 rad - pos: -11.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15275 - components: - - rot: 3.141592653589793 rad - pos: -11.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15276 - components: - - rot: 3.141592653589793 rad - pos: -11.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15277 - components: - - rot: 3.141592653589793 rad - pos: -10.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15278 - components: - - rot: 3.141592653589793 rad - pos: -10.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15279 - components: - - rot: 3.141592653589793 rad - pos: -10.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15280 - components: - - rot: 3.141592653589793 rad - pos: -10.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15281 - components: - - rot: 3.141592653589793 rad - pos: -10.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15285 - components: - - rot: 3.141592653589793 rad - pos: -10.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15286 - components: - - rot: 3.141592653589793 rad - pos: -10.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15289 - components: - - pos: -9.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15290 - components: - - pos: -9.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15292 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15297 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15298 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15299 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15300 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15301 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15302 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15303 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15307 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15308 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15309 - components: - - pos: -4.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15310 - components: - - pos: -4.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15311 - components: - - pos: -4.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15312 - components: - - pos: -4.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15313 - components: - - pos: -5.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15318 - components: - - pos: -1.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15321 - components: - - rot: 3.141592653589793 rad - pos: 0.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15322 - components: - - rot: 3.141592653589793 rad - pos: 0.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15323 - components: - - rot: 3.141592653589793 rad - pos: 0.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15324 - components: - - rot: 3.141592653589793 rad - pos: 0.5,35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15327 - components: - - pos: -1.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15328 - components: - - pos: -1.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15329 - components: - - pos: -1.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15330 - components: - - pos: -1.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15331 - components: - - pos: -1.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15332 - components: - - pos: -1.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15333 - components: - - pos: -1.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15334 - components: - - pos: -1.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15335 - components: - - pos: -1.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15336 - components: - - pos: -1.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15337 - components: - - pos: -1.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15338 - components: - - pos: 0.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15339 - components: - - pos: 0.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15340 - components: - - pos: 0.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15341 - components: - - pos: 0.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15342 - components: - - pos: 0.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15343 - components: - - pos: 0.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15344 - components: - - pos: 0.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15345 - components: - - pos: 0.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15346 - components: - - pos: 0.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15347 - components: - - pos: 0.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15348 - components: - - pos: 0.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15354 - components: - - rot: 3.141592653589793 rad - pos: -1.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15356 - components: - - rot: 3.141592653589793 rad - pos: -1.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15357 - components: - - rot: 3.141592653589793 rad - pos: -1.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15358 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15359 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15360 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15362 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15363 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15364 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15365 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15366 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15367 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15368 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15370 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15371 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15372 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15373 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15374 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15375 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15376 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15377 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15378 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15379 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15403 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15405 - components: - - rot: 3.141592653589793 rad - pos: -12.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15406 - components: - - rot: 3.141592653589793 rad - pos: -12.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15407 - components: - - rot: 3.141592653589793 rad - pos: -12.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15408 - components: - - rot: 3.141592653589793 rad - pos: -12.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15409 - components: - - rot: 3.141592653589793 rad - pos: -12.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15412 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15413 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15414 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15415 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15416 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15417 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15418 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15419 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15420 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15423 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15424 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15425 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15426 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15427 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15428 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15431 - components: - - rot: 3.141592653589793 rad - pos: -20.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15432 - components: - - rot: 3.141592653589793 rad - pos: -20.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15434 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15435 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15436 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15437 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15438 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15439 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15440 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15442 - components: - - rot: 3.141592653589793 rad - pos: -21.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15444 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15445 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15448 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15449 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15450 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15453 - components: - - rot: 3.141592653589793 rad - pos: -21.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15454 - components: - - rot: 3.141592653589793 rad - pos: -21.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15455 - components: - - rot: 3.141592653589793 rad - pos: -21.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15461 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15462 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15463 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15464 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15465 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15466 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15467 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15469 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15470 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15471 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15472 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15473 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15474 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15475 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15476 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15477 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15482 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15483 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15485 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15486 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15488 - components: - - rot: 3.141592653589793 rad - pos: 11.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15489 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15490 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15491 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15492 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15493 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15494 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15496 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15497 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15498 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15501 - components: - - rot: 3.141592653589793 rad - pos: 11.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15502 - components: - - rot: 3.141592653589793 rad - pos: 10.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15503 - components: - - rot: 3.141592653589793 rad - pos: 10.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15504 - components: - - rot: 3.141592653589793 rad - pos: 10.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15505 - components: - - rot: 3.141592653589793 rad - pos: 10.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15507 - components: - - rot: 3.141592653589793 rad - pos: 4.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15508 - components: - - rot: 3.141592653589793 rad - pos: 4.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15509 - components: - - rot: 3.141592653589793 rad - pos: 3.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15510 - components: - - rot: 3.141592653589793 rad - pos: 3.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15511 - components: - - rot: 3.141592653589793 rad - pos: 3.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15512 - components: - - rot: 3.141592653589793 rad - pos: 4.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15513 - components: - - rot: 3.141592653589793 rad - pos: 4.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15514 - components: - - rot: 3.141592653589793 rad - pos: 11.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15515 - components: - - rot: 3.141592653589793 rad - pos: 11.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15516 - components: - - rot: 3.141592653589793 rad - pos: 11.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15517 - components: - - rot: 3.141592653589793 rad - pos: 11.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15518 - components: - - rot: 3.141592653589793 rad - pos: 11.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15520 - components: - - rot: 3.141592653589793 rad - pos: 4.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15521 - components: - - rot: 3.141592653589793 rad - pos: 3.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15527 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15528 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15529 - components: - - pos: 10.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15530 - components: - - pos: 10.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15531 - components: - - pos: 10.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15532 - components: - - pos: 10.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15534 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15535 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15536 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15538 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15540 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15542 - components: - - rot: 3.141592653589793 rad - pos: 7.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15543 - components: - - rot: 3.141592653589793 rad - pos: 7.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15546 - components: - - rot: 3.141592653589793 rad - pos: 6.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15547 - components: - - rot: 3.141592653589793 rad - pos: 6.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15549 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15551 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15552 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15553 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15555 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15556 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15557 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15560 - components: - - pos: 19.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15561 - components: - - pos: 19.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15563 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15565 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15567 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15568 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15569 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15571 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15572 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15573 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15574 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15576 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15577 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15580 - components: - - rot: 3.141592653589793 rad - pos: 15.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15581 - components: - - rot: 3.141592653589793 rad - pos: 15.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15583 - components: - - rot: 3.141592653589793 rad - pos: 14.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15584 - components: - - rot: 3.141592653589793 rad - pos: 14.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15585 - components: - - rot: 3.141592653589793 rad - pos: 14.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15586 - components: - - rot: 3.141592653589793 rad - pos: 14.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15588 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15589 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15590 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15591 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15592 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15593 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15594 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15595 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15598 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15599 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15600 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15601 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15602 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15603 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15604 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15605 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15606 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15607 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15608 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15611 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15612 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15613 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15614 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15615 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15616 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15617 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15618 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15619 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15620 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15621 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15623 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15624 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15625 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15626 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15627 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15628 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15629 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15632 - components: - - pos: -32.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15633 - components: - - pos: -32.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15634 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15635 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15636 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15637 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15640 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15641 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15642 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15643 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15644 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15645 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15646 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15647 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15648 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15649 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15650 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15651 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15652 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15653 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15654 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15655 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15656 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15659 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15660 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15661 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15662 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15663 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15664 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15665 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15666 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15667 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15670 - components: - - rot: 3.141592653589793 rad - pos: -39.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15671 - components: - - rot: 3.141592653589793 rad - pos: -39.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15672 - components: - - rot: 3.141592653589793 rad - pos: -39.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15673 - components: - - rot: 3.141592653589793 rad - pos: -39.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15674 - components: - - rot: 3.141592653589793 rad - pos: -39.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15675 - components: - - rot: 3.141592653589793 rad - pos: -39.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15676 - components: - - rot: 3.141592653589793 rad - pos: -39.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15677 - components: - - rot: 3.141592653589793 rad - pos: -39.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15678 - components: - - rot: 3.141592653589793 rad - pos: -39.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15683 - components: - - pos: -37.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15684 - components: - - pos: -37.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15685 - components: - - pos: -37.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15686 - components: - - pos: -37.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15687 - components: - - pos: -37.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15688 - components: - - pos: -37.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15689 - components: - - pos: -37.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15690 - components: - - pos: -37.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15691 - components: - - pos: -37.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15692 - components: - - pos: -37.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15693 - components: - - pos: -37.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15694 - components: - - pos: -37.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15697 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15702 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15703 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15704 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15705 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15706 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15707 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15712 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15714 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15715 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15716 - components: - - pos: -40.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15717 - components: - - pos: -40.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15718 - components: - - pos: -40.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15719 - components: - - pos: -40.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15720 - components: - - pos: -40.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15721 - components: - - pos: -40.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15722 - components: - - pos: -40.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15724 - components: - - pos: -40.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15725 - components: - - pos: -40.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15726 - components: - - pos: -40.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15727 - components: - - pos: -40.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15730 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15731 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15732 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15733 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15734 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15736 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15739 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15741 - components: - - pos: -35.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15744 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15746 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15747 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15748 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15749 - components: - - pos: -38.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15750 - components: - - pos: -38.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15751 - components: - - pos: -38.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15752 - components: - - pos: -38.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15754 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15755 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15756 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15758 - components: - - pos: -38.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15759 - components: - - pos: -38.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15760 - components: - - pos: -38.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15761 - components: - - pos: -38.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15762 - components: - - pos: -38.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15764 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15765 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15766 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15769 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15770 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15779 - components: - - pos: -32.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15780 - components: - - pos: -32.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15781 - components: - - pos: -32.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15782 - components: - - pos: -30.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15783 - components: - - pos: -30.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15784 - components: - - pos: -30.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15785 - components: - - pos: -30.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15786 - components: - - pos: -30.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15787 - components: - - pos: -30.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15788 - components: - - pos: -32.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15789 - components: - - pos: -32.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15790 - components: - - pos: -32.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15791 - components: - - pos: -32.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15792 - components: - - pos: -32.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15793 - components: - - pos: -32.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15794 - components: - - pos: -32.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15795 - components: - - pos: -32.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15796 - components: - - pos: -32.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15797 - components: - - pos: -32.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15798 - components: - - pos: -32.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15799 - components: - - pos: -32.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15800 - components: - - pos: -30.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15801 - components: - - pos: -30.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15802 - components: - - pos: -30.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15803 - components: - - pos: -30.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15804 - components: - - pos: -30.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15805 - components: - - pos: -30.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15806 - components: - - pos: -30.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15807 - components: - - pos: -30.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15808 - components: - - pos: -30.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15809 - components: - - pos: -30.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15810 - components: - - pos: -30.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15817 - components: - - pos: -30.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15818 - components: - - pos: -30.5,35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15819 - components: - - pos: -32.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15820 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15821 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15822 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15823 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15824 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15825 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15834 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15835 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15836 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15837 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15838 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15839 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15840 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15841 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15843 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15844 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15845 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15846 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15847 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15849 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15850 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15851 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15852 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15853 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15854 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15855 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15856 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15857 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15858 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15861 - components: - - rot: 3.141592653589793 rad - pos: -32.5,36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15862 - components: - - rot: 3.141592653589793 rad - pos: -32.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15863 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15864 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15865 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15866 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15867 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15868 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15869 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15870 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15871 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15874 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15875 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15876 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15877 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15878 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15880 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15881 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15882 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15883 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15884 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15886 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15887 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15888 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15889 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15890 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15891 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15892 - components: - - rot: -1.5707963267948966 rad - pos: -43.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15893 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15894 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15895 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15898 - components: - - rot: 3.141592653589793 rad - pos: -48.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15899 - components: - - rot: 3.141592653589793 rad - pos: -48.5,38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15900 - components: - - rot: 3.141592653589793 rad - pos: -48.5,39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15901 - components: - - rot: 3.141592653589793 rad - pos: -48.5,40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15902 - components: - - rot: 3.141592653589793 rad - pos: -48.5,41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15903 - components: - - rot: 3.141592653589793 rad - pos: -43.5,39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15904 - components: - - rot: 3.141592653589793 rad - pos: -43.5,40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15905 - components: - - rot: 3.141592653589793 rad - pos: -43.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15912 - components: - - rot: 3.141592653589793 rad - pos: 0.5,41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15913 - components: - - rot: 3.141592653589793 rad - pos: -1.5,39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15914 - components: - - rot: 3.141592653589793 rad - pos: -1.5,40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15915 - components: - - rot: 3.141592653589793 rad - pos: -1.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15916 - components: - - rot: 3.141592653589793 rad - pos: -1.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15917 - components: - - rot: 3.141592653589793 rad - pos: 0.5,42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15918 - components: - - rot: 3.141592653589793 rad - pos: 0.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15923 - components: - - pos: 0.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15926 - components: - - pos: -1.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15927 - components: - - pos: -1.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15928 - components: - - pos: -1.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15931 - components: - - rot: 3.141592653589793 rad - pos: 0.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15932 - components: - - rot: 3.141592653589793 rad - pos: 0.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15933 - components: - - rot: 3.141592653589793 rad - pos: 0.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15934 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15935 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15936 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15937 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15938 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15939 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15940 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15941 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15942 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15943 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15946 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15947 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15948 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15949 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15950 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15951 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15952 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15953 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15954 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15955 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15956 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15957 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15958 - components: - - rot: 3.141592653589793 rad - pos: -1.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15959 - components: - - rot: 3.141592653589793 rad - pos: -1.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15960 - components: - - rot: 3.141592653589793 rad - pos: -1.5,51.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15961 - components: - - rot: 3.141592653589793 rad - pos: 0.5,51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15962 - components: - - rot: 3.141592653589793 rad - pos: 0.5,52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15965 - components: - - rot: 3.141592653589793 rad - pos: 0.5,54.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15966 - components: - - rot: 3.141592653589793 rad - pos: -1.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15967 - components: - - rot: 3.141592653589793 rad - pos: -1.5,53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15970 - components: - - pos: -1.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15971 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15972 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15973 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15974 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15975 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15976 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15977 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15978 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15979 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15980 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15985 - components: - - pos: -8.5,51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15988 - components: - - pos: -8.5,54.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15989 - components: - - pos: -8.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15990 - components: - - pos: -8.5,56.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15991 - components: - - pos: -8.5,57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15994 - components: - - pos: -8.5,60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15995 - components: - - pos: -8.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15996 - components: - - pos: -8.5,62.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15997 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,59.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16000 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16001 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16002 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16003 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16004 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16005 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16008 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16009 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16010 - components: - - pos: -9.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16011 - components: - - pos: -9.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16012 - components: - - pos: -9.5,51.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16013 - components: - - pos: -9.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16014 - components: - - pos: -9.5,53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16019 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16020 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16021 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16026 - components: - - rot: 3.141592653589793 rad - pos: -9.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16027 - components: - - rot: 3.141592653589793 rad - pos: -9.5,57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16028 - components: - - rot: 3.141592653589793 rad - pos: -9.5,58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16032 - components: - - pos: -9.5,62.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16033 - components: - - pos: -9.5,61.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16034 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16035 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16036 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16038 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16039 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16041 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16042 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16043 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16044 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16045 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16046 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16047 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16048 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16051 - components: - - pos: -9.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16054 - components: - - rot: 3.141592653589793 rad - pos: -8.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16055 - components: - - rot: 3.141592653589793 rad - pos: -8.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16056 - components: - - rot: 3.141592653589793 rad - pos: -8.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16057 - components: - - rot: 3.141592653589793 rad - pos: -8.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16060 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16061 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16062 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16065 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16066 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16067 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16068 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16071 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16072 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16073 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16074 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16078 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16079 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16080 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16081 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16082 - components: - - rot: 3.141592653589793 rad - pos: -16.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16083 - components: - - rot: 3.141592653589793 rad - pos: -16.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16084 - components: - - rot: 3.141592653589793 rad - pos: -16.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16085 - components: - - rot: 3.141592653589793 rad - pos: -16.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16088 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16089 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16090 - components: - - pos: -18.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16091 - components: - - pos: -18.5,42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16093 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16096 - components: - - rot: 3.141592653589793 rad - pos: -13.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16097 - components: - - rot: 3.141592653589793 rad - pos: -13.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16098 - components: - - rot: 3.141592653589793 rad - pos: -13.5,42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16099 - components: - - rot: 3.141592653589793 rad - pos: -12.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16100 - components: - - rot: 3.141592653589793 rad - pos: -12.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16101 - components: - - rot: 3.141592653589793 rad - pos: -12.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16102 - components: - - rot: 3.141592653589793 rad - pos: -12.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16103 - components: - - rot: 3.141592653589793 rad - pos: -10.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16104 - components: - - rot: 3.141592653589793 rad - pos: -10.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16105 - components: - - rot: 3.141592653589793 rad - pos: -10.5,42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16106 - components: - - rot: 3.141592653589793 rad - pos: -9.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16107 - components: - - rot: 3.141592653589793 rad - pos: -9.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16108 - components: - - rot: 3.141592653589793 rad - pos: -9.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16109 - components: - - rot: 3.141592653589793 rad - pos: -9.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16110 - components: - - rot: 3.141592653589793 rad - pos: -7.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16111 - components: - - rot: 3.141592653589793 rad - pos: -7.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16112 - components: - - rot: 3.141592653589793 rad - pos: -7.5,42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16113 - components: - - rot: 3.141592653589793 rad - pos: -6.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16114 - components: - - rot: 3.141592653589793 rad - pos: -6.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16115 - components: - - rot: 3.141592653589793 rad - pos: -6.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16116 - components: - - rot: 3.141592653589793 rad - pos: -6.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16117 - components: - - pos: -17.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16119 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16120 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16121 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16122 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16123 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16124 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16125 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16127 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16128 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16132 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16133 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16134 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16135 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16136 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16138 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16144 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16145 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16146 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16147 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16149 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16151 - components: - - pos: -31.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16152 - components: - - pos: -31.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16153 - components: - - pos: -31.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16154 - components: - - rot: 3.141592653589793 rad - pos: -30.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16159 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16160 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16161 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16162 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16166 - components: - - rot: 3.141592653589793 rad - pos: -35.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16168 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16172 - components: - - pos: -35.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16173 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16174 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16176 - components: - - rot: 3.141592653589793 rad - pos: -4.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16177 - components: - - rot: 3.141592653589793 rad - pos: -4.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16178 - components: - - rot: 3.141592653589793 rad - pos: -4.5,42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16179 - components: - - rot: 3.141592653589793 rad - pos: -3.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16180 - components: - - rot: 3.141592653589793 rad - pos: -3.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16181 - components: - - rot: 3.141592653589793 rad - pos: -3.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16182 - components: - - rot: 3.141592653589793 rad - pos: -3.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16192 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16193 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16197 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16198 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16199 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16200 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16202 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16204 - components: - - rot: 3.141592653589793 rad - pos: 8.5,57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16205 - components: - - rot: 3.141592653589793 rad - pos: 8.5,58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16207 - components: - - pos: 11.5,54.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16208 - components: - - pos: 11.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16209 - components: - - pos: 11.5,56.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16210 - components: - - pos: 11.5,57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16211 - components: - - pos: 11.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16213 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,59.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16215 - components: - - rot: 3.141592653589793 rad - pos: 0.5,56.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16216 - components: - - rot: 3.141592653589793 rad - pos: 0.5,57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16217 - components: - - rot: 3.141592653589793 rad - pos: 0.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16218 - components: - - rot: 3.141592653589793 rad - pos: 0.5,59.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16219 - components: - - rot: 3.141592653589793 rad - pos: 0.5,60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16222 - components: - - pos: -1.5,57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16223 - components: - - pos: -1.5,58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16224 - components: - - pos: -1.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16225 - components: - - pos: -1.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16226 - components: - - pos: -1.5,61.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16227 - components: - - pos: -1.5,62.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16230 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16231 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16232 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16233 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16234 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16235 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16236 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16242 - components: - - pos: 0.5,64.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16243 - components: - - pos: 0.5,63.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16244 - components: - - pos: 0.5,62.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16247 - components: - - pos: -1.5,65.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16248 - components: - - pos: -1.5,66.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16249 - components: - - pos: -1.5,67.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16250 - components: - - pos: 0.5,67.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16251 - components: - - pos: 0.5,68.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16252 - components: - - pos: 0.5,69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16253 - components: - - pos: 0.5,70.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16258 - components: - - pos: -1.5,69.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16259 - components: - - pos: -1.5,71.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16260 - components: - - pos: -1.5,72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16261 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,68.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16262 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,68.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16263 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,68.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16264 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,68.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16265 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,68.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16266 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,68.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16267 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,68.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16268 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,68.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16269 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,68.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16270 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,68.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16271 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,68.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16272 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16273 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16274 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16275 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16276 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16277 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16278 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16279 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16280 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16281 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16289 - components: - - pos: 0.5,72.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16290 - components: - - pos: 0.5,73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16291 - components: - - pos: -1.5,74.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16292 - components: - - pos: -1.5,75.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16293 - components: - - pos: -1.5,76.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16294 - components: - - pos: 0.5,75.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16295 - components: - - pos: 0.5,76.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16298 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16299 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16300 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16301 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16302 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,77.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16303 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,77.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16306 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,77.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16307 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,77.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16308 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,77.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16309 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,77.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16310 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,77.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16311 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,77.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16314 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16315 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16316 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16317 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16318 - components: - - pos: -5.5,76.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16319 - components: - - pos: -5.5,75.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16320 - components: - - pos: -5.5,74.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16321 - components: - - pos: -6.5,77.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16322 - components: - - pos: -6.5,76.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16323 - components: - - pos: -6.5,75.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16324 - components: - - pos: -6.5,74.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16326 - components: - - rot: 3.141592653589793 rad - pos: -1.5,77.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16329 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16330 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16333 - components: - - pos: -5.5,73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16336 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,72.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16337 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,72.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16341 - components: - - rot: 3.141592653589793 rad - pos: -8.5,71.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16342 - components: - - rot: 3.141592653589793 rad - pos: 3.5,76.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16343 - components: - - rot: 3.141592653589793 rad - pos: 3.5,75.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16344 - components: - - rot: 3.141592653589793 rad - pos: 5.5,77.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16345 - components: - - rot: 3.141592653589793 rad - pos: 5.5,76.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16346 - components: - - rot: 3.141592653589793 rad - pos: 5.5,75.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16350 - components: - - pos: 28.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16351 - components: - - pos: 28.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16354 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16355 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16356 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16357 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16360 - components: - - pos: 12.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16361 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16362 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16363 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16364 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16366 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16367 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16368 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16369 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16370 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16371 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16373 - components: - - pos: 12.5,-35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16471 - components: - - rot: 3.141592653589793 rad - pos: 0.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16472 - components: - - rot: 3.141592653589793 rad - pos: 0.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16473 - components: - - rot: 3.141592653589793 rad - pos: 0.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16474 - components: - - rot: 3.141592653589793 rad - pos: 0.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16844 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16845 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16846 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16847 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16848 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16849 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16850 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 17473 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,10.5 - parent: 1 - type: Transform - - uid: 17474 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,10.5 - parent: 1 - type: Transform - - uid: 17475 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,10.5 - parent: 1 - type: Transform - - uid: 17476 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,10.5 - parent: 1 - type: Transform - - uid: 17477 - components: - - rot: 3.141592653589793 rad - pos: -22.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 17478 - components: - - rot: 3.141592653589793 rad - pos: -22.5,11.5 - parent: 1 - type: Transform - - uid: 18141 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-2.5 - parent: 1 - type: Transform - - uid: 18142 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 18143 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 18145 - components: - - pos: -19.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 18146 - components: - - pos: -19.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 18148 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 18149 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 18150 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 18151 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 18152 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 18153 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 18155 - components: - - pos: -26.5,-6.5 - parent: 1 - type: Transform - - uid: 18482 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-12.5 - parent: 1 - type: Transform - - uid: 18483 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-12.5 - parent: 1 - type: Transform -- proto: GasPipeTJunction - entities: - - uid: 2609 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2615 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2622 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2623 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2624 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2630 - components: - - pos: -6.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 2643 - components: - - pos: -7.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2652 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2687 - components: - - pos: -6.5,-35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2689 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2748 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2749 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2750 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2754 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2755 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2765 - components: - - pos: -8.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2772 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2779 - components: - - pos: -5.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2781 - components: - - pos: -4.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2796 - components: - - pos: -12.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2957 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2958 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4418 - components: - - rot: 3.141592653589793 rad - pos: 14.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6371 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,33.5 - parent: 1 - type: Transform - - uid: 6374 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,32.5 - parent: 1 - type: Transform - - uid: 9032 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10899 - components: - - pos: 24.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10902 - components: - - pos: 20.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10904 - components: - - rot: 3.141592653589793 rad - pos: 19.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10905 - components: - - pos: 18.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10914 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10919 - components: - - pos: 4.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10923 - components: - - pos: 0.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10926 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11217 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12100 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13882 - components: - - rot: 3.141592653589793 rad - pos: 25.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14223 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14227 - components: - - pos: 3.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14230 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14233 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14240 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14245 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14253 - components: - - pos: 9.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14261 - components: - - pos: 10.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14262 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14277 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14279 - components: - - pos: 19.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14303 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14316 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14317 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14322 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14323 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14341 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14342 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14343 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14351 - components: - - pos: 28.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14352 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14353 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14383 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14392 - components: - - pos: 8.5,-32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14393 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14419 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14424 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14427 - components: - - rot: 3.141592653589793 rad - pos: 29.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14430 - components: - - rot: 3.141592653589793 rad - pos: 32.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14437 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14445 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14449 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14450 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14469 - components: - - rot: 3.141592653589793 rad - pos: 28.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14473 - components: - - rot: 3.141592653589793 rad - pos: 24.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14482 - components: - - rot: 3.141592653589793 rad - pos: 15.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14489 - components: - - rot: 3.141592653589793 rad - pos: 8.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14496 - components: - - pos: 1.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14497 - components: - - rot: 3.141592653589793 rad - pos: 0.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14501 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14509 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14516 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14522 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14528 - components: - - pos: -2.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14532 - components: - - pos: -16.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14534 - components: - - pos: -18.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14535 - components: - - pos: -16.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14539 - components: - - pos: -16.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14540 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14563 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14567 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14579 - components: - - pos: -25.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14580 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-7.5 - parent: 1 - type: Transform - - uid: 14587 - components: - - rot: 3.141592653589793 rad - pos: -28.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14599 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14606 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14610 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14615 - components: - - pos: -22.5,13.5 - parent: 1 - type: Transform - - uid: 14616 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14618 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14629 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14648 - components: - - rot: 3.141592653589793 rad - pos: -6.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14649 - components: - - rot: 3.141592653589793 rad - pos: -8.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14667 - components: - - pos: -12.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14670 - components: - - rot: 3.141592653589793 rad - pos: -11.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14713 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14714 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14719 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14765 - components: - - rot: 3.141592653589793 rad - pos: 25.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14769 - components: - - pos: 27.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14777 - components: - - pos: 35.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14778 - components: - - rot: 3.141592653589793 rad - pos: 36.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14817 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14820 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14821 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14843 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14845 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14868 - components: - - pos: 35.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14876 - components: - - rot: 3.141592653589793 rad - pos: 36.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14898 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14915 - components: - - pos: 27.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14927 - components: - - pos: 17.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14940 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14941 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14963 - components: - - rot: 3.141592653589793 rad - pos: 35.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14965 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14968 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14972 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,37.5 - parent: 1 - type: Transform - - uid: 14980 - components: - - pos: 25.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14986 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14991 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14999 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15000 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15008 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15019 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15020 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15035 - components: - - pos: 36.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15046 - components: - - rot: 3.141592653589793 rad - pos: 44.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15061 - components: - - rot: 3.141592653589793 rad - pos: 43.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15086 - components: - - rot: 3.141592653589793 rad - pos: 18.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15093 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15110 - components: - - rot: 3.141592653589793 rad - pos: 15.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15114 - components: - - rot: 3.141592653589793 rad - pos: 14.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15119 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15120 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15121 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15134 - components: - - pos: 15.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15135 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15137 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15153 - components: - - pos: 11.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15159 - components: - - rot: 3.141592653589793 rad - pos: 10.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15165 - components: - - pos: 5.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15166 - components: - - rot: 3.141592653589793 rad - pos: 4.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15192 - components: - - rot: 3.141592653589793 rad - pos: -7.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15193 - components: - - pos: -8.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15213 - components: - - pos: -13.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15231 - components: - - pos: -20.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15234 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15239 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15241 - components: - - rot: 3.141592653589793 rad - pos: -15.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15242 - components: - - rot: 3.141592653589793 rad - pos: -13.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15246 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15262 - components: - - pos: -17.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15267 - components: - - pos: -12.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15268 - components: - - rot: 3.141592653589793 rad - pos: -11.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15287 - components: - - rot: 3.141592653589793 rad - pos: -10.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15288 - components: - - pos: -9.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15293 - components: - - pos: -7.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15296 - components: - - rot: 3.141592653589793 rad - pos: -9.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15305 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15306 - components: - - rot: 3.141592653589793 rad - pos: -4.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15319 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15320 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15349 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15350 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15353 - components: - - rot: 3.141592653589793 rad - pos: -1.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15369 - components: - - rot: 3.141592653589793 rad - pos: 3.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15380 - components: - - pos: 9.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15410 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15429 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15430 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15443 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15456 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15468 - components: - - pos: -10.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15478 - components: - - rot: 3.141592653589793 rad - pos: -9.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15481 - components: - - rot: 3.141592653589793 rad - pos: 4.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15484 - components: - - rot: 3.141592653589793 rad - pos: 7.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15506 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15526 - components: - - rot: 3.141592653589793 rad - pos: 10.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15539 - components: - - pos: 9.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15554 - components: - - rot: 3.141592653589793 rad - pos: 15.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15559 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15564 - components: - - rot: 3.141592653589793 rad - pos: 20.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15575 - components: - - rot: 3.141592653589793 rad - pos: 19.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15596 - components: - - rot: 3.141592653589793 rad - pos: -19.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15597 - components: - - pos: -22.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15622 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,10.5 - parent: 1 - type: Transform - - uid: 15638 - components: - - rot: 3.141592653589793 rad - pos: -37.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15639 - components: - - rot: 3.141592653589793 rad - pos: -39.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15698 - components: - - pos: -34.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15699 - components: - - rot: 3.141592653589793 rad - pos: -34.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15708 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15709 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15723 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15737 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15738 - components: - - rot: 3.141592653589793 rad - pos: -38.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15753 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15763 - components: - - pos: -38.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15811 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15812 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15813 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15814 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15815 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15816 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15832 - components: - - pos: -30.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15833 - components: - - pos: -32.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15842 - components: - - pos: -22.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15848 - components: - - rot: 3.141592653589793 rad - pos: -24.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15872 - components: - - pos: -37.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15873 - components: - - rot: 3.141592653589793 rad - pos: -36.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15879 - components: - - rot: 3.141592653589793 rad - pos: -43.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15896 - components: - - rot: 3.141592653589793 rad - pos: -47.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15919 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15920 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15924 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15925 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15929 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15930 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15963 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15964 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15968 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15969 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15986 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15987 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15992 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15993 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,59.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16015 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16016 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16029 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16030 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16053 - components: - - rot: 3.141592653589793 rad - pos: -8.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16058 - components: - - pos: -7.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16063 - components: - - pos: -10.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16064 - components: - - pos: -13.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16069 - components: - - pos: -6.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16075 - components: - - pos: -12.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16076 - components: - - pos: -16.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16077 - components: - - pos: -15.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16092 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16126 - components: - - pos: -25.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16129 - components: - - rot: 3.141592653589793 rad - pos: -24.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16130 - components: - - rot: 3.141592653589793 rad - pos: -27.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16131 - components: - - pos: -28.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16140 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16150 - components: - - pos: -30.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16163 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16164 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16190 - components: - - pos: 6.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16194 - components: - - rot: 3.141592653589793 rad - pos: 6.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16220 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16221 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16228 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,64.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16229 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16245 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16246 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,68.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16254 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,71.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16255 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,74.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16256 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,70.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16257 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,73.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16296 - components: - - pos: 0.5,77.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16297 - components: - - pos: -1.5,78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16304 - components: - - pos: 3.5,77.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16305 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16312 - components: - - pos: -5.5,77.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16313 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16338 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,72.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16372 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 18478 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-12.5 - parent: 1 - type: Transform -- proto: GasPort - entities: - - uid: 2695 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-30.5 - parent: 1 - type: Transform - - uid: 2696 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-31.5 - parent: 1 - type: Transform - - uid: 2876 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-11.5 - parent: 1 - type: Transform - - uid: 2877 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-12.5 - parent: 1 - type: Transform - - uid: 2878 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-14.5 - parent: 1 - type: Transform - - uid: 2879 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-15.5 - parent: 1 - type: Transform - - uid: 3443 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,33.5 - parent: 1 - type: Transform - - uid: 3548 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,28.5 - parent: 1 - type: Transform - - uid: 3549 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,30.5 - parent: 1 - type: Transform - - uid: 6369 - components: - - pos: 10.5,34.5 - parent: 1 - type: Transform - - uid: 6584 - components: - - pos: -6.5,34.5 - parent: 1 - type: Transform - - uid: 6585 - components: - - pos: -7.5,34.5 - parent: 1 - type: Transform - - uid: 9201 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-41.5 - parent: 1 - type: Transform - - uid: 10876 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-20.5 - parent: 1 - type: Transform - - uid: 13171 - components: - - pos: -23.5,-0.5 - parent: 1 - type: Transform - - uid: 13855 - components: - - pos: 18.5,54.5 - parent: 1 - type: Transform - - uid: 15270 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15271 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- proto: GasPressurePump - entities: - - uid: 2636 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-29.5 - parent: 1 - type: Transform - - uid: 2637 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-27.5 - parent: 1 - type: Transform - - uid: 2638 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-25.5 - parent: 1 - type: Transform - - uid: 2639 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-23.5 - parent: 1 - type: Transform - - uid: 2640 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-21.5 - parent: 1 - type: Transform - - uid: 2641 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-19.5 - parent: 1 - type: Transform - - uid: 2659 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-33.5 - parent: 1 - type: Transform - - uid: 2684 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-35.5 - parent: 1 - type: Transform - - uid: 2685 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-39.5 - parent: 1 - type: Transform - - uid: 2690 - components: - - pos: -6.5,-38.5 - parent: 1 - type: Transform - - uid: 2704 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-44.5 - parent: 1 - type: Transform - - uid: 2761 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2762 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2763 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2764 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 3546 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,28.5 - parent: 1 - type: Transform - - uid: 3547 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,30.5 - parent: 1 - type: Transform - - uid: 6373 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,32.5 - parent: 1 - type: Transform - - uid: 6377 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 9199 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-41.5 - parent: 1 - type: Transform - - uid: 10877 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13172 - components: - - pos: -23.5,-1.5 - parent: 1 - type: Transform - - uid: 13856 - components: - - pos: 18.5,53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- proto: GasRecyclerMachineCircuitboard - entities: - - uid: 8725 - components: - - pos: -10.353789,-19.334864 - parent: 1 - type: Transform -- proto: GasThermoMachineFreezer - entities: - - uid: 2698 - components: - - pos: -7.5,-36.5 - parent: 1 - type: Transform - - uid: 2769 - components: - - pos: -9.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6370 - components: - - pos: 11.5,34.5 - parent: 1 - type: Transform - - uid: 9204 - components: - - pos: -13.5,-22.5 - parent: 1 - type: Transform - - uid: 9852 - components: - - pos: -30.5,-11.5 - parent: 1 - type: Transform - - targetTemperature: 0 - type: GasThermoMachine - - uid: 18205 - components: - - pos: 21.5,-11.5 - parent: 1 - type: Transform -- proto: GasThermoMachineHeater - entities: - - uid: 2697 - components: - - pos: -7.5,-34.5 - parent: 1 - type: Transform - - uid: 2768 - components: - - pos: -10.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 9203 - components: - - pos: -13.5,-35.5 - parent: 1 - type: Transform -- proto: GasValve - entities: - - uid: 2610 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-32.5 - parent: 1 - type: Transform - - uid: 2625 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-32.5 - parent: 1 - type: Transform - - open: False - type: GasValve - - enabled: False - type: AmbientSound - - uid: 2629 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-18.5 - parent: 1 - type: Transform - - open: False - type: GasValve - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2676 - components: - - pos: 0.5,-37.5 - parent: 1 - type: Transform - - open: False - type: GasValve - - enabled: False - type: AmbientSound - - uid: 2959 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-44.5 - parent: 1 - type: Transform - - open: False - type: GasValve - - enabled: False - type: AmbientSound -- proto: GasVentPump - entities: - - uid: 2737 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2745 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-18.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2760 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2773 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-12.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8694 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,23.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 9036 - components: - - pos: 11.5,31.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10903 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11931 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-23.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14224 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-12.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14254 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14286 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-15.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14295 - components: - - pos: 19.5,-5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14318 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14332 - components: - - pos: 6.5,-19.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 14345 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-22.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 14389 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-37.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14405 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-33.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 14415 - components: - - pos: 6.5,-30.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 14417 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-37.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 14457 - components: - - rot: 3.141592653589793 rad - pos: 35.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14570 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-15.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14571 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-15.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14633 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14636 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,9.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14659 - components: - - pos: -6.5,7.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14682 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14685 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14696 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14712 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14720 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14748 - components: - - pos: 10.5,7.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14751 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14761 - components: - - pos: 25.5,-3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14772 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14793 - components: - - rot: 3.141592653589793 rad - pos: 48.5,-8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14807 - components: - - rot: 3.141592653589793 rad - pos: 35.5,-8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14815 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14827 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14840 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14844 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14856 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,9.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14880 - components: - - rot: 3.141592653589793 rad - pos: 48.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14900 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,19.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14906 - components: - - pos: 25.5,20.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14917 - components: - - rot: 3.141592653589793 rad - pos: 27.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14929 - components: - - rot: 3.141592653589793 rad - pos: 17.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14954 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,32.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14988 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,41.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15002 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,47.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15030 - components: - - pos: 24.5,51.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15036 - components: - - rot: 3.141592653589793 rad - pos: 36.5,37.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15065 - components: - - pos: 43.5,42.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15066 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,38.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15075 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,33.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15095 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,37.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 15101 - components: - - pos: 22.5,41.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15133 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,45.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15146 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,45.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15147 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,44.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15148 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,42.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15154 - components: - - rot: 3.141592653589793 rad - pos: 11.5,37.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15172 - components: - - rot: 3.141592653589793 rad - pos: 5.5,37.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15200 - components: - - rot: 3.141592653589793 rad - pos: -8.5,37.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15225 - components: - - rot: 3.141592653589793 rad - pos: -13.5,37.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15263 - components: - - rot: 3.141592653589793 rad - pos: -17.5,32.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15266 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,28.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15284 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,29.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15295 - components: - - pos: -9.5,18.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15317 - components: - - pos: -4.5,22.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15325 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,32.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15351 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,20.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15382 - components: - - rot: 3.141592653589793 rad - pos: 9.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15452 - components: - - rot: 3.141592653589793 rad - pos: -24.5,22.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15457 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,22.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15460 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,19.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15480 - components: - - rot: 3.141592653589793 rad - pos: -10.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15499 - components: - - pos: 7.5,18.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15524 - components: - - pos: 4.5,23.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15544 - components: - - pos: 7.5,31.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15558 - components: - - pos: 20.5,29.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15566 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,28.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15579 - components: - - rot: 3.141592653589793 rad - pos: 9.5,27.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15582 - components: - - pos: 15.5,31.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15609 - components: - - rot: 3.141592653589793 rad - pos: -22.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15669 - components: - - rot: 3.141592653589793 rad - pos: -47.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15681 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,28.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15695 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,9.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15700 - components: - - rot: 3.141592653589793 rad - pos: -34.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15710 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15713 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15728 - components: - - rot: 3.141592653589793 rad - pos: -40.5,-6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15743 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15774 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15775 - components: - - rot: 3.141592653589793 rad - pos: -25.5,-8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15778 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15826 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,30.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15827 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,31.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15828 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,19.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15860 - components: - - rot: 3.141592653589793 rad - pos: -22.5,37.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15909 - components: - - rot: 3.141592653589793 rad - pos: -49.5,37.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15910 - components: - - pos: -43.5,42.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15911 - components: - - rot: 3.141592653589793 rad - pos: -37.5,37.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15921 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,42.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15944 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,47.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15982 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,54.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16007 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,48.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16018 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,54.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16024 - components: - - pos: -6.5,56.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16037 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,63.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16040 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,60.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16049 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,59.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16094 - components: - - rot: 3.141592653589793 rad - pos: -16.5,41.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16141 - components: - - rot: 3.141592653589793 rad - pos: -17.5,45.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16157 - components: - - rot: 3.141592653589793 rad - pos: -31.5,44.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16158 - components: - - rot: 3.141592653589793 rad - pos: -28.5,47.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16175 - components: - - rot: 3.141592653589793 rad - pos: -25.5,47.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16183 - components: - - rot: 3.141592653589793 rad - pos: -3.5,41.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16184 - components: - - rot: 3.141592653589793 rad - pos: -6.5,41.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16185 - components: - - rot: 3.141592653589793 rad - pos: -9.5,41.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16186 - components: - - rot: 3.141592653589793 rad - pos: -12.5,41.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16195 - components: - - rot: 3.141592653589793 rad - pos: 6.5,55.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16206 - components: - - pos: 8.5,59.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16239 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,63.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16240 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,64.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16284 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,68.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16285 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,70.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16286 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,73.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16327 - components: - - pos: -6.5,79.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16328 - components: - - pos: 5.5,79.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16334 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,73.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16348 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,74.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16359 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-12.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16374 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-34.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 17402 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,37.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 17480 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,10.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 18353 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-25.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound -- proto: GasVentScrubber - entities: - - uid: 566 - components: - - pos: -7.5,37.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2740 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-21.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2741 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-18.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2759 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2774 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5390 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 9037 - components: - - pos: 10.5,31.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12901 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,29.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14225 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14285 - components: - - rot: 3.141592653589793 rad - pos: 19.5,-15.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14296 - components: - - pos: 21.5,-5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14298 - components: - - pos: 17.5,-8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14312 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14319 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-18.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14333 - components: - - pos: 5.5,-19.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 14344 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-23.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 14366 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-24.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 14367 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-27.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 14404 - components: - - pos: 7.5,-30.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 14416 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-33.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 14418 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-40.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 14569 - components: - - pos: -17.5,-17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14572 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-18.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14635 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,9.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14660 - components: - - pos: -8.5,7.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14672 - components: - - pos: -11.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14683 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14697 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14711 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14717 - components: - - pos: 11.5,1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14718 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14749 - components: - - pos: 6.5,7.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14750 - components: - - pos: -1.5,-8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14760 - components: - - pos: 26.5,-3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14771 - components: - - pos: 29.5,-8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14792 - components: - - pos: 46.5,-8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14808 - components: - - pos: 36.5,-8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14816 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14826 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14841 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14842 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,9.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14857 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,10.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14875 - components: - - pos: 36.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14879 - components: - - pos: 46.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14899 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,20.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14907 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,18.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14916 - components: - - pos: 28.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14928 - components: - - pos: 15.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14955 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,31.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14983 - components: - - rot: 3.141592653589793 rad - pos: 31.5,36.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14987 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,40.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15001 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,47.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15028 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,49.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15029 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,47.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15031 - components: - - pos: 25.5,51.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15037 - components: - - pos: 35.5,37.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15054 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,43.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15067 - components: - - pos: 46.5,37.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15076 - components: - - rot: 3.141592653589793 rad - pos: 25.5,33.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15084 - components: - - pos: 32.5,54.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15094 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,37.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15102 - components: - - pos: 18.5,41.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15129 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,41.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15130 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,45.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15131 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,46.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15132 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,43.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15155 - components: - - pos: 10.5,37.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15173 - components: - - pos: 4.5,37.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15226 - components: - - pos: -15.5,37.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15264 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,32.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15265 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,27.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15283 - components: - - pos: -10.5,31.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15294 - components: - - rot: 3.141592653589793 rad - pos: -7.5,18.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15316 - components: - - pos: -6.5,22.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15326 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,31.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15352 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,19.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15381 - components: - - pos: 8.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15411 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,22.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15447 - components: - - pos: -24.5,21.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15458 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,21.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15459 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,18.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15479 - components: - - pos: -9.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15500 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,18.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15525 - components: - - pos: 3.5,23.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15537 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,23.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15550 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,30.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15562 - components: - - pos: 19.5,32.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15578 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,27.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15587 - components: - - pos: 14.5,32.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15610 - components: - - pos: -19.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15668 - components: - - pos: -49.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15680 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,23.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15696 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15701 - components: - - pos: -34.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15729 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15742 - components: - - rot: 3.141592653589793 rad - pos: -35.5,-2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15757 - components: - - pos: -39.5,0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15768 - components: - - rot: 3.141592653589793 rad - pos: -42.5,9.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15771 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,10.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15773 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15776 - components: - - pos: -28.5,-8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15777 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15829 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,20.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15830 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,32.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15831 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,33.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15859 - components: - - pos: -24.5,37.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15906 - components: - - pos: -36.5,37.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15907 - components: - - pos: -47.5,37.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15908 - components: - - pos: -48.5,42.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15922 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,43.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15945 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,46.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15981 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,55.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15998 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,59.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15999 - components: - - pos: -8.5,63.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16006 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,50.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16017 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,53.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16025 - components: - - pos: -6.5,53.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16050 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,58.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16095 - components: - - rot: 3.141592653589793 rad - pos: -18.5,41.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16142 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,46.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16143 - components: - - pos: -24.5,48.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16155 - components: - - pos: -27.5,48.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16156 - components: - - rot: 3.141592653589793 rad - pos: -30.5,45.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16169 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,48.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16170 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,45.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 16171 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,43.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16187 - components: - - rot: 3.141592653589793 rad - pos: -13.5,41.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16188 - components: - - rot: 3.141592653589793 rad - pos: -10.5,41.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16189 - components: - - rot: 3.141592653589793 rad - pos: -7.5,41.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16191 - components: - - rot: 3.141592653589793 rad - pos: -4.5,41.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16196 - components: - - pos: 6.5,54.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16214 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,59.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16238 - components: - - pos: 4.5,62.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16241 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,65.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16283 - components: - - pos: 11.5,67.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16287 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,71.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16288 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,74.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16331 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,77.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16332 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,77.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16339 - components: - - pos: -8.5,73.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16340 - components: - - rot: 3.141592653589793 rad - pos: -8.5,70.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16349 - components: - - rot: 3.141592653589793 rad - pos: 3.5,74.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16358 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-12.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16365 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-35.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 17481 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,10.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 18354 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-37.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound -- proto: GasVolumePump - entities: - - uid: 2731 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- proto: Gauze1 - entities: - - uid: 8684 - components: - - pos: 20.395086,26.729904 - parent: 1 - type: Transform -- proto: GeigerCounter - entities: - - uid: 7118 - components: - - pos: -11.17118,34.431652 - parent: 1 - type: Transform - - uid: 8352 - components: - - pos: -28.472635,29.713726 - parent: 1 - type: Transform - - uid: 8712 - components: - - pos: -11.651781,-19.255426 - parent: 1 - type: Transform - - uid: 9087 - components: - - pos: 6.3722563,-21.377989 - parent: 1 - type: Transform - - uid: 9236 - components: - - pos: -22.141773,-11.462118 - parent: 1 - type: Transform - - uid: 10931 - components: - - pos: 28.285597,-18.438898 - parent: 1 - type: Transform - - uid: 11075 - components: - - pos: 19.660683,4.558688 - parent: 1 - type: Transform -- proto: GeneratorPlasma - entities: - - uid: 4217 - components: - - pos: 9.5,-25.5 - parent: 1 - type: Transform -- proto: GeneratorUranium - entities: - - uid: 8804 - components: - - pos: 0.5,-5.5 - parent: 8756 - type: Transform -- proto: Girder - entities: - - uid: 1853 - components: - - pos: -23.5,55.5 - parent: 1 - type: Transform - - uid: 3206 - components: - - pos: 37.5,43.5 - parent: 1 - type: Transform - - uid: 3598 - components: - - pos: 33.5,-15.5 - parent: 1 - type: Transform - - uid: 4529 - components: - - pos: -30.5,-20.5 - parent: 1 - type: Transform - - uid: 4556 - components: - - pos: -19.5,-29.5 - parent: 1 - type: Transform - - uid: 6855 - components: - - pos: 37.5,48.5 - parent: 1 - type: Transform -- proto: GlowstickPurple - entities: - - uid: 9934 - components: - - pos: -22.667574,-29.32562 - parent: 1 - type: Transform -- proto: GravityGenerator - entities: - - uid: 4408 - components: - - pos: -22.5,-16.5 - parent: 1 - type: Transform - - charge: 99 - type: GravityGenerator - - radius: 174 - type: PointLight -- proto: GravityGeneratorMini - entities: - - uid: 8815 - components: - - pos: -0.5,-5.5 - parent: 8756 - type: Transform -- proto: Grille - entities: - - uid: 4 - components: - - rot: 3.141592653589793 rad - pos: 49.5,18.5 - parent: 1 - type: Transform - - uid: 8 - components: - - rot: 3.141592653589793 rad - pos: 44.5,17.5 - parent: 1 - type: Transform - - uid: 9 - components: - - rot: 3.141592653589793 rad - pos: 45.5,18.5 - parent: 1 - type: Transform - - uid: 13 - components: - - rot: 3.141592653589793 rad - pos: 50.5,17.5 - parent: 1 - type: Transform - - uid: 16 - components: - - pos: 42.5,16.5 - parent: 1 - type: Transform - - uid: 17 - components: - - pos: 41.5,16.5 - parent: 1 - type: Transform - - uid: 18 - components: - - pos: 40.5,16.5 - parent: 1 - type: Transform - - uid: 19 - components: - - pos: 39.5,16.5 - parent: 1 - type: Transform - - uid: 20 - components: - - pos: 34.5,16.5 - parent: 1 - type: Transform - - uid: 21 - components: - - pos: 35.5,16.5 - parent: 1 - type: Transform - - uid: 22 - components: - - pos: 36.5,16.5 - parent: 1 - type: Transform - - uid: 23 - components: - - pos: 37.5,16.5 - parent: 1 - type: Transform - - uid: 32 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,28.5 - parent: 1 - type: Transform - - uid: 33 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,27.5 - parent: 1 - type: Transform - - uid: 34 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,24.5 - parent: 1 - type: Transform - - uid: 35 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,23.5 - parent: 1 - type: Transform - - uid: 36 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,33.5 - parent: 1 - type: Transform - - uid: 37 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,32.5 - parent: 1 - type: Transform - - uid: 39 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,34.5 - parent: 1 - type: Transform - - uid: 41 - components: - - pos: 33.5,19.5 - parent: 1 - type: Transform - - uid: 42 - components: - - pos: 33.5,18.5 - parent: 1 - type: Transform - - uid: 43 - components: - - pos: 33.5,17.5 - parent: 1 - type: Transform - - uid: 53 - components: - - rot: 3.141592653589793 rad - pos: 45.5,16.5 - parent: 1 - type: Transform - - uid: 54 - components: - - rot: 3.141592653589793 rad - pos: 49.5,16.5 - parent: 1 - type: Transform - - uid: 69 - components: - - rot: 3.141592653589793 rad - pos: 51.5,16.5 - parent: 1 - type: Transform - - uid: 70 - components: - - rot: 3.141592653589793 rad - pos: 51.5,12.5 - parent: 1 - type: Transform - - uid: 77 - components: - - rot: 3.141592653589793 rad - pos: 51.5,39.5 - parent: 1 - type: Transform - - uid: 78 - components: - - rot: 3.141592653589793 rad - pos: 45.5,33.5 - parent: 1 - type: Transform - - uid: 79 - components: - - rot: 3.141592653589793 rad - pos: 44.5,34.5 - parent: 1 - type: Transform - - uid: 80 - components: - - rot: 3.141592653589793 rad - pos: 51.5,35.5 - parent: 1 - type: Transform - - uid: 81 - components: - - rot: 3.141592653589793 rad - pos: 50.5,34.5 - parent: 1 - type: Transform - - uid: 82 - components: - - rot: 3.141592653589793 rad - pos: 49.5,33.5 - parent: 1 - type: Transform - - uid: 92 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,11.5 - parent: 1 - type: Transform - - uid: 102 - components: - - pos: 50.5,-9.5 - parent: 1 - type: Transform - - uid: 104 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,11.5 - parent: 1 - type: Transform - - uid: 106 - components: - - pos: 41.5,-10.5 - parent: 1 - type: Transform - - uid: 116 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,7.5 - parent: 1 - type: Transform - - uid: 117 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,8.5 - parent: 1 - type: Transform - - uid: 118 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,9.5 - parent: 1 - type: Transform - - uid: 129 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-0.5 - parent: 1 - type: Transform - - uid: 130 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-1.5 - parent: 1 - type: Transform - - uid: 131 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-2.5 - parent: 1 - type: Transform - - uid: 152 - components: - - pos: -42.5,6.5 - parent: 1 - type: Transform - - uid: 153 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,11.5 - parent: 1 - type: Transform - - uid: 155 - components: - - pos: -43.5,6.5 - parent: 1 - type: Transform - - uid: 158 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-5.5 - parent: 1 - type: Transform - - uid: 159 - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-5.5 - parent: 1 - type: Transform - - uid: 160 - components: - - rot: -1.5707963267948966 rad - pos: -48.5,-5.5 - parent: 1 - type: Transform - - uid: 161 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-5.5 - parent: 1 - type: Transform - - uid: 162 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-5.5 - parent: 1 - type: Transform - - uid: 163 - components: - - rot: -1.5707963267948966 rad - pos: -47.5,11.5 - parent: 1 - type: Transform - - uid: 164 - components: - - rot: -1.5707963267948966 rad - pos: -48.5,11.5 - parent: 1 - type: Transform - - uid: 165 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,11.5 - parent: 1 - type: Transform - - uid: 166 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,11.5 - parent: 1 - type: Transform - - uid: 169 - components: - - pos: 44.5,-11.5 - parent: 1 - type: Transform - - uid: 173 - components: - - pos: 45.5,-15.5 - parent: 1 - type: Transform - - uid: 178 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,2.5 - parent: 1 - type: Transform - - uid: 181 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,9.5 - parent: 1 - type: Transform - - uid: 182 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,10.5 - parent: 1 - type: Transform - - uid: 183 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,11.5 - parent: 1 - type: Transform - - uid: 184 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,12.5 - parent: 1 - type: Transform - - uid: 185 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,12.5 - parent: 1 - type: Transform - - uid: 186 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,12.5 - parent: 1 - type: Transform - - uid: 187 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,12.5 - parent: 1 - type: Transform - - uid: 188 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,12.5 - parent: 1 - type: Transform - - uid: 189 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,12.5 - parent: 1 - type: Transform - - uid: 190 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,12.5 - parent: 1 - type: Transform - - uid: 191 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,12.5 - parent: 1 - type: Transform - - uid: 211 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,29.5 - parent: 1 - type: Transform - - uid: 215 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,22.5 - parent: 1 - type: Transform - - uid: 222 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,35.5 - parent: 1 - type: Transform - - uid: 223 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,35.5 - parent: 1 - type: Transform - - uid: 224 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,35.5 - parent: 1 - type: Transform - - uid: 225 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,35.5 - parent: 1 - type: Transform - - uid: 226 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,35.5 - parent: 1 - type: Transform - - uid: 227 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,35.5 - parent: 1 - type: Transform - - uid: 228 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,35.5 - parent: 1 - type: Transform - - uid: 229 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,35.5 - parent: 1 - type: Transform - - uid: 237 - components: - - pos: -43.5,3.5 - parent: 1 - type: Transform - - uid: 238 - components: - - pos: -42.5,3.5 - parent: 1 - type: Transform - - uid: 274 - components: - - pos: -33.5,10.5 - parent: 1 - type: Transform - - uid: 276 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-3.5 - parent: 1 - type: Transform - - uid: 288 - components: - - rot: -1.5707963267948966 rad - pos: -43.5,25.5 - parent: 1 - type: Transform - - uid: 297 - components: - - pos: 8.5,73.5 - parent: 1 - type: Transform - - uid: 299 - components: - - pos: 8.5,72.5 - parent: 1 - type: Transform - - uid: 301 - components: - - pos: 5.5,83.5 - parent: 1 - type: Transform - - uid: 306 - components: - - rot: 3.141592653589793 rad - pos: -3.5,84.5 - parent: 1 - type: Transform - - uid: 307 - components: - - rot: 3.141592653589793 rad - pos: -2.5,84.5 - parent: 1 - type: Transform - - uid: 308 - components: - - rot: 3.141592653589793 rad - pos: 0.5,84.5 - parent: 1 - type: Transform - - uid: 309 - components: - - rot: 3.141592653589793 rad - pos: 1.5,84.5 - parent: 1 - type: Transform - - uid: 310 - components: - - rot: 3.141592653589793 rad - pos: -6.5,83.5 - parent: 1 - type: Transform - - uid: 311 - components: - - rot: 3.141592653589793 rad - pos: -5.5,83.5 - parent: 1 - type: Transform - - uid: 312 - components: - - rot: 3.141592653589793 rad - pos: -7.5,82.5 - parent: 1 - type: Transform - - uid: 313 - components: - - rot: 3.141592653589793 rad - pos: -8.5,80.5 - parent: 1 - type: Transform - - uid: 314 - components: - - rot: 3.141592653589793 rad - pos: -8.5,79.5 - parent: 1 - type: Transform - - uid: 316 - components: - - rot: 3.141592653589793 rad - pos: 4.5,83.5 - parent: 1 - type: Transform - - uid: 332 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,77.5 - parent: 1 - type: Transform - - uid: 333 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,76.5 - parent: 1 - type: Transform - - uid: 346 - components: - - pos: -9.5,74.5 - parent: 1 - type: Transform - - uid: 347 - components: - - pos: -9.5,73.5 - parent: 1 - type: Transform - - uid: 348 - components: - - pos: -9.5,72.5 - parent: 1 - type: Transform - - uid: 362 - components: - - pos: 1.5,74.5 - parent: 1 - type: Transform - - uid: 365 - components: - - pos: 3.5,75.5 - parent: 1 - type: Transform - - uid: 366 - components: - - pos: 2.5,75.5 - parent: 1 - type: Transform - - uid: 367 - components: - - pos: 1.5,73.5 - parent: 1 - type: Transform - - uid: 374 - components: - - pos: 1.5,71.5 - parent: 1 - type: Transform - - uid: 375 - components: - - pos: 5.5,69.5 - parent: 1 - type: Transform - - uid: 376 - components: - - pos: 6.5,69.5 - parent: 1 - type: Transform - - uid: 390 - components: - - pos: 1.5,70.5 - parent: 1 - type: Transform - - uid: 393 - components: - - pos: 8.5,74.5 - parent: 1 - type: Transform - - uid: 394 - components: - - pos: 2.5,69.5 - parent: 1 - type: Transform - - uid: 395 - components: - - pos: 3.5,69.5 - parent: 1 - type: Transform - - uid: 400 - components: - - pos: 2.5,84.5 - parent: 1 - type: Transform - - uid: 401 - components: - - pos: -1.5,84.5 - parent: 1 - type: Transform - - uid: 402 - components: - - pos: 6.5,82.5 - parent: 1 - type: Transform - - uid: 403 - components: - - pos: 7.5,80.5 - parent: 1 - type: Transform - - uid: 404 - components: - - pos: 7.5,79.5 - parent: 1 - type: Transform - - uid: 405 - components: - - pos: 8.5,77.5 - parent: 1 - type: Transform - - uid: 406 - components: - - pos: 8.5,76.5 - parent: 1 - type: Transform - - uid: 456 - components: - - pos: -37.5,-2.5 - parent: 1 - type: Transform - - uid: 465 - components: - - pos: -36.5,4.5 - parent: 1 - type: Transform - - uid: 468 - components: - - pos: -1.5,12.5 - parent: 1 - type: Transform - - uid: 469 - components: - - pos: -0.5,12.5 - parent: 1 - type: Transform - - uid: 470 - components: - - pos: 0.5,12.5 - parent: 1 - type: Transform - - uid: 471 - components: - - pos: -1.5,-6.5 - parent: 1 - type: Transform - - uid: 472 - components: - - pos: -0.5,-6.5 - parent: 1 - type: Transform - - uid: 473 - components: - - pos: 0.5,-6.5 - parent: 1 - type: Transform - - uid: 483 - components: - - pos: -4.5,-6.5 - parent: 1 - type: Transform - - uid: 484 - components: - - pos: 3.5,-6.5 - parent: 1 - type: Transform - - uid: 485 - components: - - pos: 3.5,12.5 - parent: 1 - type: Transform - - uid: 486 - components: - - pos: -4.5,12.5 - parent: 1 - type: Transform - - uid: 541 - components: - - rot: 3.141592653589793 rad - pos: 4.5,1.5 - parent: 1 - type: Transform - - uid: 542 - components: - - rot: 3.141592653589793 rad - pos: 4.5,0.5 - parent: 1 - type: Transform - - uid: 561 - components: - - pos: 4.5,7.5 - parent: 1 - type: Transform - - uid: 562 - components: - - pos: 4.5,6.5 - parent: 1 - type: Transform - - uid: 570 - components: - - pos: -22.5,12.5 - parent: 1 - type: Transform - - uid: 619 - components: - - pos: 4.5,4.5 - parent: 1 - type: Transform - - uid: 777 - components: - - pos: -28.5,12.5 - parent: 1 - type: Transform - - uid: 778 - components: - - pos: -27.5,12.5 - parent: 1 - type: Transform - - uid: 784 - components: - - pos: -29.5,11.5 - parent: 1 - type: Transform - - uid: 807 - components: - - pos: -3.5,20.5 - parent: 1 - type: Transform - - uid: 808 - components: - - pos: 2.5,20.5 - parent: 1 - type: Transform - - uid: 824 - components: - - pos: -2.5,28.5 - parent: 1 - type: Transform - - uid: 825 - components: - - pos: -2.5,29.5 - parent: 1 - type: Transform - - uid: 826 - components: - - pos: -2.5,30.5 - parent: 1 - type: Transform - - uid: 847 - components: - - pos: 49.5,41.5 - parent: 1 - type: Transform - - uid: 848 - components: - - pos: 49.5,42.5 - parent: 1 - type: Transform - - uid: 849 - components: - - pos: 49.5,43.5 - parent: 1 - type: Transform - - uid: 850 - components: - - pos: 49.5,44.5 - parent: 1 - type: Transform - - uid: 851 - components: - - pos: 48.5,45.5 - parent: 1 - type: Transform - - uid: 871 - components: - - pos: 47.5,48.5 - parent: 1 - type: Transform - - uid: 872 - components: - - pos: 47.5,47.5 - parent: 1 - type: Transform - - uid: 873 - components: - - pos: 47.5,46.5 - parent: 1 - type: Transform - - uid: 874 - components: - - pos: 46.5,49.5 - parent: 1 - type: Transform - - uid: 875 - components: - - pos: 45.5,49.5 - parent: 1 - type: Transform - - uid: 876 - components: - - pos: 44.5,50.5 - parent: 1 - type: Transform - - uid: 877 - components: - - pos: 44.5,51.5 - parent: 1 - type: Transform - - uid: 878 - components: - - pos: 43.5,52.5 - parent: 1 - type: Transform - - uid: 879 - components: - - pos: 42.5,52.5 - parent: 1 - type: Transform - - uid: 880 - components: - - pos: 41.5,52.5 - parent: 1 - type: Transform - - uid: 888 - components: - - pos: 34.5,57.5 - parent: 1 - type: Transform - - uid: 889 - components: - - pos: 33.5,57.5 - parent: 1 - type: Transform - - uid: 890 - components: - - pos: 31.5,57.5 - parent: 1 - type: Transform - - uid: 891 - components: - - pos: 30.5,57.5 - parent: 1 - type: Transform - - uid: 892 - components: - - pos: 29.5,58.5 - parent: 1 - type: Transform - - uid: 893 - components: - - pos: 28.5,59.5 - parent: 1 - type: Transform - - uid: 894 - components: - - pos: 27.5,59.5 - parent: 1 - type: Transform - - uid: 895 - components: - - pos: 26.5,59.5 - parent: 1 - type: Transform - - uid: 896 - components: - - pos: 23.5,59.5 - parent: 1 - type: Transform - - uid: 897 - components: - - pos: 22.5,59.5 - parent: 1 - type: Transform - - uid: 898 - components: - - pos: 21.5,59.5 - parent: 1 - type: Transform - - uid: 899 - components: - - pos: 19.5,61.5 - parent: 1 - type: Transform - - uid: 900 - components: - - pos: 19.5,62.5 - parent: 1 - type: Transform - - uid: 901 - components: - - pos: 19.5,63.5 - parent: 1 - type: Transform - - uid: 902 - components: - - pos: 19.5,64.5 - parent: 1 - type: Transform - - uid: 903 - components: - - pos: 18.5,65.5 - parent: 1 - type: Transform - - uid: 904 - components: - - pos: 17.5,65.5 - parent: 1 - type: Transform - - uid: 905 - components: - - pos: 16.5,65.5 - parent: 1 - type: Transform - - uid: 906 - components: - - pos: 15.5,65.5 - parent: 1 - type: Transform - - uid: 907 - components: - - pos: 13.5,67.5 - parent: 1 - type: Transform - - uid: 908 - components: - - pos: 13.5,68.5 - parent: 1 - type: Transform - - uid: 909 - components: - - pos: 13.5,69.5 - parent: 1 - type: Transform - - uid: 910 - components: - - pos: 13.5,70.5 - parent: 1 - type: Transform - - uid: 911 - components: - - pos: 12.5,71.5 - parent: 1 - type: Transform - - uid: 912 - components: - - pos: 11.5,71.5 - parent: 1 - type: Transform - - uid: 913 - components: - - pos: 10.5,71.5 - parent: 1 - type: Transform - - uid: 914 - components: - - pos: 9.5,71.5 - parent: 1 - type: Transform - - uid: 1038 - components: - - pos: -7.5,31.5 - parent: 1 - type: Transform - - uid: 1039 - components: - - pos: -5.5,31.5 - parent: 1 - type: Transform - - uid: 1040 - components: - - pos: -7.5,35.5 - parent: 1 - type: Transform - - uid: 1041 - components: - - pos: -6.5,35.5 - parent: 1 - type: Transform - - uid: 1042 - components: - - pos: -5.5,35.5 - parent: 1 - type: Transform - - uid: 1044 - components: - - pos: -4.5,30.5 - parent: 1 - type: Transform - - uid: 1046 - components: - - pos: -4.5,28.5 - parent: 1 - type: Transform - - uid: 1047 - components: - - pos: -7.5,27.5 - parent: 1 - type: Transform - - uid: 1049 - components: - - pos: -5.5,27.5 - parent: 1 - type: Transform - - uid: 1050 - components: - - pos: -8.5,28.5 - parent: 1 - type: Transform - - uid: 1051 - components: - - pos: -8.5,29.5 - parent: 1 - type: Transform - - uid: 1052 - components: - - pos: -8.5,30.5 - parent: 1 - type: Transform - - uid: 1061 - components: - - pos: -19.5,35.5 - parent: 1 - type: Transform - - uid: 1064 - components: - - pos: -22.5,22.5 - parent: 1 - type: Transform - - uid: 1073 - components: - - pos: -13.5,26.5 - parent: 1 - type: Transform - - uid: 1081 - components: - - pos: -12.5,30.5 - parent: 1 - type: Transform - - uid: 1084 - components: - - pos: -4.5,29.5 - parent: 1 - type: Transform - - uid: 1095 - components: - - pos: -12.5,28.5 - parent: 1 - type: Transform - - uid: 1096 - components: - - pos: -12.5,27.5 - parent: 1 - type: Transform - - uid: 1102 - components: - - pos: -15.5,26.5 - parent: 1 - type: Transform - - uid: 1112 - components: - - pos: -7.5,25.5 - parent: 1 - type: Transform - - uid: 1113 - components: - - pos: -6.5,25.5 - parent: 1 - type: Transform - - uid: 1114 - components: - - pos: -5.5,25.5 - parent: 1 - type: Transform - - uid: 1130 - components: - - pos: -15.5,16.5 - parent: 1 - type: Transform - - uid: 1131 - components: - - pos: -16.5,16.5 - parent: 1 - type: Transform - - uid: 1132 - components: - - pos: -17.5,16.5 - parent: 1 - type: Transform - - uid: 1139 - components: - - pos: -13.5,18.5 - parent: 1 - type: Transform - - uid: 1145 - components: - - pos: -13.5,19.5 - parent: 1 - type: Transform - - uid: 1148 - components: - - pos: -11.5,16.5 - parent: 1 - type: Transform - - uid: 1149 - components: - - pos: -12.5,16.5 - parent: 1 - type: Transform - - uid: 1152 - components: - - pos: -2.5,22.5 - parent: 1 - type: Transform - - uid: 1153 - components: - - pos: -2.5,23.5 - parent: 1 - type: Transform - - uid: 1154 - components: - - pos: -2.5,24.5 - parent: 1 - type: Transform - - uid: 1155 - components: - - pos: 1.5,22.5 - parent: 1 - type: Transform - - uid: 1156 - components: - - pos: 1.5,23.5 - parent: 1 - type: Transform - - uid: 1157 - components: - - pos: 1.5,24.5 - parent: 1 - type: Transform - - uid: 1166 - components: - - pos: -8.5,21.5 - parent: 1 - type: Transform - - uid: 1169 - components: - - pos: -15.5,39.5 - parent: 1 - type: Transform - - uid: 1241 - components: - - pos: -22.5,19.5 - parent: 1 - type: Transform - - uid: 1278 - components: - - pos: -47.5,17.5 - parent: 1 - type: Transform - - uid: 1282 - components: - - pos: -46.5,34.5 - parent: 1 - type: Transform - - uid: 1283 - components: - - pos: -49.5,34.5 - parent: 1 - type: Transform - - uid: 1301 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,20.5 - parent: 1 - type: Transform - - uid: 1311 - components: - - pos: -15.5,23.5 - parent: 1 - type: Transform - - uid: 1312 - components: - - pos: -16.5,23.5 - parent: 1 - type: Transform - - uid: 1313 - components: - - pos: -17.5,23.5 - parent: 1 - type: Transform - - uid: 1314 - components: - - pos: -16.5,39.5 - parent: 1 - type: Transform - - uid: 1316 - components: - - pos: -18.5,39.5 - parent: 1 - type: Transform - - uid: 1317 - components: - - pos: -19.5,39.5 - parent: 1 - type: Transform - - uid: 1346 - components: - - pos: -4.5,57.5 - parent: 1 - type: Transform - - uid: 1347 - components: - - pos: -4.5,56.5 - parent: 1 - type: Transform - - uid: 1360 - components: - - pos: -7.5,53.5 - parent: 1 - type: Transform - - uid: 1361 - components: - - pos: -7.5,52.5 - parent: 1 - type: Transform - - uid: 1373 - components: - - pos: -3.5,47.5 - parent: 1 - type: Transform - - uid: 1374 - components: - - pos: -4.5,47.5 - parent: 1 - type: Transform - - uid: 1375 - components: - - pos: -4.5,43.5 - parent: 1 - type: Transform - - uid: 1376 - components: - - pos: -7.5,43.5 - parent: 1 - type: Transform - - uid: 1377 - components: - - pos: -10.5,43.5 - parent: 1 - type: Transform - - uid: 1378 - components: - - pos: -13.5,43.5 - parent: 1 - type: Transform - - uid: 1379 - components: - - pos: -13.5,39.5 - parent: 1 - type: Transform - - uid: 1380 - components: - - pos: -12.5,39.5 - parent: 1 - type: Transform - - uid: 1381 - components: - - pos: -10.5,39.5 - parent: 1 - type: Transform - - uid: 1382 - components: - - pos: -9.5,39.5 - parent: 1 - type: Transform - - uid: 1383 - components: - - pos: -7.5,39.5 - parent: 1 - type: Transform - - uid: 1384 - components: - - pos: -6.5,39.5 - parent: 1 - type: Transform - - uid: 1385 - components: - - pos: -4.5,39.5 - parent: 1 - type: Transform - - uid: 1386 - components: - - pos: -3.5,39.5 - parent: 1 - type: Transform - - uid: 1387 - components: - - pos: -15.5,43.5 - parent: 1 - type: Transform - - uid: 1388 - components: - - pos: -16.5,43.5 - parent: 1 - type: Transform - - uid: 1389 - components: - - pos: -19.5,43.5 - parent: 1 - type: Transform - - uid: 1390 - components: - - pos: -18.5,43.5 - parent: 1 - type: Transform - - uid: 1407 - components: - - pos: -10.5,50.5 - parent: 1 - type: Transform - - uid: 1408 - components: - - pos: -14.5,51.5 - parent: 1 - type: Transform - - uid: 1409 - components: - - pos: -13.5,51.5 - parent: 1 - type: Transform - - uid: 1410 - components: - - pos: -11.5,51.5 - parent: 1 - type: Transform - - uid: 1411 - components: - - pos: -15.5,50.5 - parent: 1 - type: Transform - - uid: 1412 - components: - - pos: -14.5,47.5 - parent: 1 - type: Transform - - uid: 1413 - components: - - pos: -11.5,47.5 - parent: 1 - type: Transform - - uid: 1416 - components: - - pos: -15.5,48.5 - parent: 1 - type: Transform - - uid: 1417 - components: - - pos: -15.5,49.5 - parent: 1 - type: Transform - - uid: 1427 - components: - - pos: -15.5,57.5 - parent: 1 - type: Transform - - uid: 1438 - components: - - pos: -8.5,61.5 - parent: 1 - type: Transform - - uid: 1440 - components: - - pos: -24.5,43.5 - parent: 1 - type: Transform - - uid: 1441 - components: - - pos: -24.5,44.5 - parent: 1 - type: Transform - - uid: 1450 - components: - - pos: -24.5,42.5 - parent: 1 - type: Transform - - uid: 1461 - components: - - pos: -26.5,44.5 - parent: 1 - type: Transform - - uid: 1462 - components: - - pos: -26.5,43.5 - parent: 1 - type: Transform - - uid: 1463 - components: - - pos: -26.5,42.5 - parent: 1 - type: Transform - - uid: 1469 - components: - - pos: -35.5,41.5 - parent: 1 - type: Transform - - uid: 1472 - components: - - pos: -34.5,39.5 - parent: 1 - type: Transform - - uid: 1473 - components: - - pos: -34.5,41.5 - parent: 1 - type: Transform - - uid: 1474 - components: - - pos: -39.5,46.5 - parent: 1 - type: Transform - - uid: 1475 - components: - - pos: -39.5,45.5 - parent: 1 - type: Transform - - uid: 1500 - components: - - pos: -41.5,46.5 - parent: 1 - type: Transform - - uid: 1503 - components: - - pos: -41.5,43.5 - parent: 1 - type: Transform - - uid: 1504 - components: - - pos: -41.5,42.5 - parent: 1 - type: Transform - - uid: 1511 - components: - - pos: -35.5,39.5 - parent: 1 - type: Transform - - uid: 1514 - components: - - pos: -32.5,39.5 - parent: 1 - type: Transform - - uid: 1515 - components: - - pos: -31.5,39.5 - parent: 1 - type: Transform - - uid: 1516 - components: - - pos: -30.5,39.5 - parent: 1 - type: Transform - - uid: 1530 - components: - - pos: -32.5,41.5 - parent: 1 - type: Transform - - uid: 1531 - components: - - pos: -31.5,41.5 - parent: 1 - type: Transform - - uid: 1532 - components: - - pos: -30.5,41.5 - parent: 1 - type: Transform - - uid: 1535 - components: - - pos: -36.5,42.5 - parent: 1 - type: Transform - - uid: 1538 - components: - - pos: -36.5,46.5 - parent: 1 - type: Transform - - uid: 1564 - components: - - pos: -39.5,42.5 - parent: 1 - type: Transform - - uid: 1575 - components: - - pos: -27.5,46.5 - parent: 1 - type: Transform - - uid: 1576 - components: - - pos: -28.5,46.5 - parent: 1 - type: Transform - - uid: 1578 - components: - - pos: -39.5,43.5 - parent: 1 - type: Transform - - uid: 1602 - components: - - pos: -24.5,59.5 - parent: 1 - type: Transform - - uid: 1603 - components: - - pos: -23.5,59.5 - parent: 1 - type: Transform - - uid: 1604 - components: - - pos: -22.5,59.5 - parent: 1 - type: Transform - - uid: 1605 - components: - - pos: -29.5,59.5 - parent: 1 - type: Transform - - uid: 1606 - components: - - pos: -28.5,59.5 - parent: 1 - type: Transform - - uid: 1607 - components: - - pos: -27.5,59.5 - parent: 1 - type: Transform - - uid: 1608 - components: - - pos: -20.5,61.5 - parent: 1 - type: Transform - - uid: 1609 - components: - - pos: -20.5,62.5 - parent: 1 - type: Transform - - uid: 1610 - components: - - pos: -20.5,63.5 - parent: 1 - type: Transform - - uid: 1611 - components: - - pos: -20.5,64.5 - parent: 1 - type: Transform - - uid: 1612 - components: - - pos: -30.5,58.5 - parent: 1 - type: Transform - - uid: 1613 - components: - - pos: -32.5,57.5 - parent: 1 - type: Transform - - uid: 1615 - components: - - pos: -35.5,57.5 - parent: 1 - type: Transform - - uid: 1616 - components: - - pos: -34.5,57.5 - parent: 1 - type: Transform - - uid: 1624 - components: - - pos: -44.5,52.5 - parent: 1 - type: Transform - - uid: 1625 - components: - - pos: -43.5,52.5 - parent: 1 - type: Transform - - uid: 1626 - components: - - pos: -42.5,52.5 - parent: 1 - type: Transform - - uid: 1627 - components: - - pos: -45.5,51.5 - parent: 1 - type: Transform - - uid: 1628 - components: - - pos: -45.5,50.5 - parent: 1 - type: Transform - - uid: 1629 - components: - - pos: -47.5,49.5 - parent: 1 - type: Transform - - uid: 1630 - components: - - pos: -46.5,49.5 - parent: 1 - type: Transform - - uid: 1631 - components: - - pos: -48.5,48.5 - parent: 1 - type: Transform - - uid: 1632 - components: - - pos: -48.5,47.5 - parent: 1 - type: Transform - - uid: 1633 - components: - - pos: -48.5,46.5 - parent: 1 - type: Transform - - uid: 1634 - components: - - pos: -49.5,45.5 - parent: 1 - type: Transform - - uid: 1635 - components: - - pos: -50.5,44.5 - parent: 1 - type: Transform - - uid: 1636 - components: - - pos: -50.5,43.5 - parent: 1 - type: Transform - - uid: 1637 - components: - - pos: -50.5,42.5 - parent: 1 - type: Transform - - uid: 1638 - components: - - pos: -50.5,41.5 - parent: 1 - type: Transform - - uid: 1639 - components: - - pos: -52.5,39.5 - parent: 1 - type: Transform - - uid: 1640 - components: - - pos: -52.5,35.5 - parent: 1 - type: Transform - - uid: 1642 - components: - - pos: -50.5,34.5 - parent: 1 - type: Transform - - uid: 1669 - components: - - pos: -31.5,57.5 - parent: 1 - type: Transform - - uid: 1696 - components: - - pos: -12.5,71.5 - parent: 1 - type: Transform - - uid: 1697 - components: - - pos: -13.5,71.5 - parent: 1 - type: Transform - - uid: 1698 - components: - - pos: -14.5,70.5 - parent: 1 - type: Transform - - uid: 1699 - components: - - pos: -14.5,69.5 - parent: 1 - type: Transform - - uid: 1700 - components: - - pos: -14.5,68.5 - parent: 1 - type: Transform - - uid: 1701 - components: - - pos: -14.5,67.5 - parent: 1 - type: Transform - - uid: 1702 - components: - - pos: -16.5,65.5 - parent: 1 - type: Transform - - uid: 1703 - components: - - pos: -17.5,65.5 - parent: 1 - type: Transform - - uid: 1704 - components: - - pos: -18.5,65.5 - parent: 1 - type: Transform - - uid: 1705 - components: - - pos: -19.5,65.5 - parent: 1 - type: Transform - - uid: 1715 - components: - - pos: -45.5,39.5 - parent: 1 - type: Transform - - uid: 1718 - components: - - pos: -40.5,34.5 - parent: 1 - type: Transform - - uid: 1719 - components: - - pos: -40.5,33.5 - parent: 1 - type: Transform - - uid: 1720 - components: - - pos: -40.5,32.5 - parent: 1 - type: Transform - - uid: 1724 - components: - - pos: -43.5,35.5 - parent: 1 - type: Transform - - uid: 1725 - components: - - pos: -42.5,35.5 - parent: 1 - type: Transform - - uid: 1726 - components: - - pos: -41.5,35.5 - parent: 1 - type: Transform - - uid: 1760 - components: - - pos: -40.5,17.5 - parent: 1 - type: Transform - - uid: 1761 - components: - - pos: -40.5,18.5 - parent: 1 - type: Transform - - uid: 1762 - components: - - pos: -40.5,19.5 - parent: 1 - type: Transform - - uid: 1768 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,29.5 - parent: 1 - type: Transform - - uid: 1769 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,29.5 - parent: 1 - type: Transform - - uid: 1770 - components: - - pos: -43.5,31.5 - parent: 1 - type: Transform - - uid: 1775 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,29.5 - parent: 1 - type: Transform - - uid: 1776 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,29.5 - parent: 1 - type: Transform - - uid: 1780 - components: - - pos: -43.5,33.5 - parent: 1 - type: Transform - - uid: 1795 - components: - - pos: -14.5,57.5 - parent: 1 - type: Transform - - uid: 1831 - components: - - pos: -9.5,61.5 - parent: 1 - type: Transform - - uid: 1837 - components: - - pos: -7.5,60.5 - parent: 1 - type: Transform - - uid: 1863 - components: - - pos: 3.5,54.5 - parent: 1 - type: Transform - - uid: 1864 - components: - - pos: 3.5,55.5 - parent: 1 - type: Transform - - uid: 1865 - components: - - pos: 3.5,57.5 - parent: 1 - type: Transform - - uid: 1866 - components: - - pos: 3.5,52.5 - parent: 1 - type: Transform - - uid: 1871 - components: - - pos: 1.5,59.5 - parent: 1 - type: Transform - - uid: 1872 - components: - - pos: 1.5,60.5 - parent: 1 - type: Transform - - uid: 1873 - components: - - pos: 1.5,61.5 - parent: 1 - type: Transform - - uid: 1917 - components: - - rot: 3.141592653589793 rad - pos: 6.5,51.5 - parent: 1 - type: Transform - - uid: 1918 - components: - - rot: 3.141592653589793 rad - pos: 5.5,51.5 - parent: 1 - type: Transform - - uid: 1959 - components: - - rot: 3.141592653589793 rad - pos: -52.5,-6.5 - parent: 1 - type: Transform - - uid: 1960 - components: - - rot: 3.141592653589793 rad - pos: -52.5,-10.5 - parent: 1 - type: Transform - - uid: 1961 - components: - - rot: 3.141592653589793 rad - pos: -50.5,-12.5 - parent: 1 - type: Transform - - uid: 1962 - components: - - rot: 3.141592653589793 rad - pos: -46.5,-12.5 - parent: 1 - type: Transform - - uid: 1963 - components: - - rot: 3.141592653589793 rad - pos: -50.5,-10.5 - parent: 1 - type: Transform - - uid: 1964 - components: - - rot: 3.141592653589793 rad - pos: -46.5,-10.5 - parent: 1 - type: Transform - - uid: 1965 - components: - - rot: 3.141592653589793 rad - pos: -45.5,-11.5 - parent: 1 - type: Transform - - uid: 1966 - components: - - rot: 3.141592653589793 rad - pos: -51.5,-11.5 - parent: 1 - type: Transform - - uid: 1995 - components: - - pos: 46.5,-15.5 - parent: 1 - type: Transform - - uid: 1997 - components: - - pos: 49.5,-15.5 - parent: 1 - type: Transform - - uid: 2006 - components: - - pos: 44.5,-13.5 - parent: 1 - type: Transform - - uid: 2012 - components: - - pos: 42.5,-6.5 - parent: 1 - type: Transform - - uid: 2013 - components: - - pos: 41.5,-6.5 - parent: 1 - type: Transform - - uid: 2014 - components: - - pos: 40.5,-6.5 - parent: 1 - type: Transform - - uid: 2015 - components: - - pos: 39.5,-6.5 - parent: 1 - type: Transform - - uid: 2016 - components: - - pos: 37.5,-6.5 - parent: 1 - type: Transform - - uid: 2017 - components: - - pos: 36.5,-6.5 - parent: 1 - type: Transform - - uid: 2018 - components: - - pos: 35.5,-6.5 - parent: 1 - type: Transform - - uid: 2019 - components: - - pos: 34.5,-6.5 - parent: 1 - type: Transform - - uid: 2029 - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-5.5 - parent: 1 - type: Transform - - uid: 2032 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-5.5 - parent: 1 - type: Transform - - uid: 2034 - components: - - pos: 51.5,-13.5 - parent: 1 - type: Transform - - uid: 2035 - components: - - pos: 48.5,-15.5 - parent: 1 - type: Transform - - uid: 2040 - components: - - pos: 44.5,-14.5 - parent: 1 - type: Transform - - uid: 2046 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-5.5 - parent: 1 - type: Transform - - uid: 2056 - components: - - pos: 50.5,-11.5 - parent: 1 - type: Transform - - uid: 2068 - components: - - pos: -4.5,-40.5 - parent: 1 - type: Transform - - uid: 2070 - components: - - pos: -3.5,-43.5 - parent: 1 - type: Transform - - uid: 2071 - components: - - pos: -4.5,-41.5 - parent: 1 - type: Transform - - uid: 2073 - components: - - pos: 2.5,-43.5 - parent: 1 - type: Transform - - uid: 2074 - components: - - pos: -3.5,-44.5 - parent: 1 - type: Transform - - uid: 2075 - components: - - pos: -3.5,-45.5 - parent: 1 - type: Transform - - uid: 2076 - components: - - pos: 2.5,-44.5 - parent: 1 - type: Transform - - uid: 2077 - components: - - pos: 2.5,-45.5 - parent: 1 - type: Transform - - uid: 2088 - components: - - pos: -4.5,-39.5 - parent: 1 - type: Transform - - uid: 2089 - components: - - pos: -4.5,-38.5 - parent: 1 - type: Transform - - uid: 2090 - components: - - pos: -4.5,-36.5 - parent: 1 - type: Transform - - uid: 2091 - components: - - pos: -4.5,-35.5 - parent: 1 - type: Transform - - uid: 2092 - components: - - pos: -4.5,-34.5 - parent: 1 - type: Transform - - uid: 2093 - components: - - pos: -4.5,-33.5 - parent: 1 - type: Transform - - uid: 2094 - components: - - pos: -4.5,-32.5 - parent: 1 - type: Transform - - uid: 2098 - components: - - pos: 3.5,-37.5 - parent: 1 - type: Transform - - uid: 2099 - components: - - pos: 3.5,-41.5 - parent: 1 - type: Transform - - uid: 2100 - components: - - pos: 3.5,-40.5 - parent: 1 - type: Transform - - uid: 2101 - components: - - pos: 3.5,-39.5 - parent: 1 - type: Transform - - uid: 2102 - components: - - pos: 3.5,-38.5 - parent: 1 - type: Transform - - uid: 2103 - components: - - pos: 3.5,-36.5 - parent: 1 - type: Transform - - uid: 2105 - components: - - pos: 3.5,-34.5 - parent: 1 - type: Transform - - uid: 2106 - components: - - pos: 3.5,-33.5 - parent: 1 - type: Transform - - uid: 2107 - components: - - pos: 3.5,-32.5 - parent: 1 - type: Transform - - uid: 2114 - components: - - pos: 33.5,-3.5 - parent: 1 - type: Transform - - uid: 2115 - components: - - pos: 33.5,-4.5 - parent: 1 - type: Transform - - uid: 2116 - components: - - pos: 33.5,-5.5 - parent: 1 - type: Transform - - uid: 2117 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-0.5 - parent: 1 - type: Transform - - uid: 2129 - components: - - pos: -7.5,-42.5 - parent: 1 - type: Transform - - uid: 2130 - components: - - pos: -6.5,-42.5 - parent: 1 - type: Transform - - uid: 2140 - components: - - pos: -52.5,12.5 - parent: 1 - type: Transform - - uid: 2141 - components: - - pos: -52.5,16.5 - parent: 1 - type: Transform - - uid: 2148 - components: - - pos: -2.5,-39.5 - parent: 1 - type: Transform - - uid: 2149 - components: - - pos: -2.5,-40.5 - parent: 1 - type: Transform - - uid: 2150 - components: - - pos: -2.5,-41.5 - parent: 1 - type: Transform - - uid: 2151 - components: - - pos: 1.5,-39.5 - parent: 1 - type: Transform - - uid: 2152 - components: - - pos: 1.5,-40.5 - parent: 1 - type: Transform - - uid: 2153 - components: - - pos: 1.5,-41.5 - parent: 1 - type: Transform - - uid: 2154 - components: - - pos: -1.5,-38.5 - parent: 1 - type: Transform - - uid: 2155 - components: - - pos: -0.5,-38.5 - parent: 1 - type: Transform - - uid: 2156 - components: - - pos: 0.5,-38.5 - parent: 1 - type: Transform - - uid: 2157 - components: - - pos: -1.5,-36.5 - parent: 1 - type: Transform - - uid: 2158 - components: - - pos: -0.5,-36.5 - parent: 1 - type: Transform - - uid: 2159 - components: - - pos: 0.5,-36.5 - parent: 1 - type: Transform - - uid: 2160 - components: - - pos: 1.5,-35.5 - parent: 1 - type: Transform - - uid: 2161 - components: - - pos: 1.5,-34.5 - parent: 1 - type: Transform - - uid: 2162 - components: - - pos: 1.5,-33.5 - parent: 1 - type: Transform - - uid: 2163 - components: - - pos: 0.5,-32.5 - parent: 1 - type: Transform - - uid: 2164 - components: - - pos: -0.5,-32.5 - parent: 1 - type: Transform - - uid: 2165 - components: - - pos: -1.5,-32.5 - parent: 1 - type: Transform - - uid: 2166 - components: - - pos: -2.5,-33.5 - parent: 1 - type: Transform - - uid: 2167 - components: - - pos: -2.5,-34.5 - parent: 1 - type: Transform - - uid: 2168 - components: - - pos: -2.5,-35.5 - parent: 1 - type: Transform - - uid: 2241 - components: - - pos: 9.5,-10.5 - parent: 1 - type: Transform - - uid: 2255 - components: - - pos: -4.5,-18.5 - parent: 1 - type: Transform - - uid: 2256 - components: - - pos: -4.5,-19.5 - parent: 1 - type: Transform - - uid: 2257 - components: - - pos: -4.5,-20.5 - parent: 1 - type: Transform - - uid: 2258 - components: - - pos: -4.5,-21.5 - parent: 1 - type: Transform - - uid: 2259 - components: - - pos: -4.5,-22.5 - parent: 1 - type: Transform - - uid: 2260 - components: - - pos: -4.5,-23.5 - parent: 1 - type: Transform - - uid: 2261 - components: - - pos: -4.5,-24.5 - parent: 1 - type: Transform - - uid: 2262 - components: - - pos: -4.5,-25.5 - parent: 1 - type: Transform - - uid: 2263 - components: - - pos: -4.5,-26.5 - parent: 1 - type: Transform - - uid: 2264 - components: - - pos: -4.5,-27.5 - parent: 1 - type: Transform - - uid: 2265 - components: - - pos: -4.5,-28.5 - parent: 1 - type: Transform - - uid: 2266 - components: - - pos: -4.5,-29.5 - parent: 1 - type: Transform - - uid: 2267 - components: - - pos: -4.5,-30.5 - parent: 1 - type: Transform - - uid: 2291 - components: - - pos: -8.5,-42.5 - parent: 1 - type: Transform - - uid: 2293 - components: - - pos: 7.5,-42.5 - parent: 1 - type: Transform - - uid: 2294 - components: - - pos: 6.5,-42.5 - parent: 1 - type: Transform - - uid: 2295 - components: - - pos: 5.5,-42.5 - parent: 1 - type: Transform - - uid: 2320 - components: - - pos: 18.5,-20.5 - parent: 1 - type: Transform - - uid: 2335 - components: - - pos: 7.5,-16.5 - parent: 1 - type: Transform - - uid: 2380 - components: - - pos: 8.5,-10.5 - parent: 1 - type: Transform - - uid: 2387 - components: - - pos: -9.5,-10.5 - parent: 1 - type: Transform - - uid: 2388 - components: - - pos: -10.5,-10.5 - parent: 1 - type: Transform - - uid: 2397 - components: - - pos: -6.5,-11.5 - parent: 1 - type: Transform - - uid: 2408 - components: - - pos: 5.5,-11.5 - parent: 1 - type: Transform - - uid: 2437 - components: - - pos: 10.5,-29.5 - parent: 1 - type: Transform - - uid: 2442 - components: - - pos: 6.5,-27.5 - parent: 1 - type: Transform - - uid: 2443 - components: - - pos: 7.5,-27.5 - parent: 1 - type: Transform - - uid: 2514 - components: - - pos: 28.5,-5.5 - parent: 1 - type: Transform - - uid: 2516 - components: - - pos: 28.5,0.5 - parent: 1 - type: Transform - - uid: 2518 - components: - - pos: 28.5,-1.5 - parent: 1 - type: Transform - - uid: 2520 - components: - - pos: 28.5,-3.5 - parent: 1 - type: Transform - - uid: 2524 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,6.5 - parent: 1 - type: Transform - - uid: 2525 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,5.5 - parent: 1 - type: Transform - - uid: 2526 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,4.5 - parent: 1 - type: Transform - - uid: 2798 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-19.5 - parent: 1 - type: Transform - - uid: 2799 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-21.5 - parent: 1 - type: Transform - - uid: 2800 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-23.5 - parent: 1 - type: Transform - - uid: 2801 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-25.5 - parent: 1 - type: Transform - - uid: 2802 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-27.5 - parent: 1 - type: Transform - - uid: 2803 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-29.5 - parent: 1 - type: Transform - - uid: 2807 - components: - - pos: -13.5,-25.5 - parent: 1 - type: Transform - - uid: 2808 - components: - - pos: -12.5,-25.5 - parent: 1 - type: Transform - - uid: 2815 - components: - - pos: -13.5,-30.5 - parent: 1 - type: Transform - - uid: 2816 - components: - - pos: -12.5,-30.5 - parent: 1 - type: Transform - - uid: 2872 - components: - - pos: 36.5,-19.5 - parent: 1 - type: Transform - - uid: 2884 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,5.5 - parent: 1 - type: Transform - - uid: 2885 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,4.5 - parent: 1 - type: Transform - - uid: 2903 - components: - - pos: -17.5,-41.5 - parent: 1 - type: Transform - - uid: 2904 - components: - - pos: -18.5,-40.5 - parent: 1 - type: Transform - - uid: 2905 - components: - - pos: -18.5,-39.5 - parent: 1 - type: Transform - - uid: 2906 - components: - - pos: -19.5,-38.5 - parent: 1 - type: Transform - - uid: 2907 - components: - - pos: -20.5,-38.5 - parent: 1 - type: Transform - - uid: 2908 - components: - - pos: -21.5,-37.5 - parent: 1 - type: Transform - - uid: 2909 - components: - - pos: -21.5,-36.5 - parent: 1 - type: Transform - - uid: 2910 - components: - - pos: -21.5,-34.5 - parent: 1 - type: Transform - - uid: 2911 - components: - - pos: -21.5,-33.5 - parent: 1 - type: Transform - - uid: 2912 - components: - - pos: -22.5,-31.5 - parent: 1 - type: Transform - - uid: 2913 - components: - - pos: -23.5,-30.5 - parent: 1 - type: Transform - - uid: 2914 - components: - - pos: -23.5,-29.5 - parent: 1 - type: Transform - - uid: 2925 - components: - - pos: 38.5,-17.5 - parent: 1 - type: Transform - - uid: 2926 - components: - - pos: 36.5,-20.5 - parent: 1 - type: Transform - - uid: 2927 - components: - - pos: 35.5,-22.5 - parent: 1 - type: Transform - - uid: 3062 - components: - - pos: 16.5,-41.5 - parent: 1 - type: Transform - - uid: 3063 - components: - - pos: 17.5,-40.5 - parent: 1 - type: Transform - - uid: 3064 - components: - - pos: 17.5,-39.5 - parent: 1 - type: Transform - - uid: 3065 - components: - - pos: 18.5,-38.5 - parent: 1 - type: Transform - - uid: 3067 - components: - - pos: 20.5,-37.5 - parent: 1 - type: Transform - - uid: 3068 - components: - - pos: 20.5,-36.5 - parent: 1 - type: Transform - - uid: 3069 - components: - - pos: 20.5,-34.5 - parent: 1 - type: Transform - - uid: 3070 - components: - - pos: 20.5,-33.5 - parent: 1 - type: Transform - - uid: 3071 - components: - - pos: 21.5,-31.5 - parent: 1 - type: Transform - - uid: 3072 - components: - - pos: 22.5,-30.5 - parent: 1 - type: Transform - - uid: 3073 - components: - - pos: 22.5,-29.5 - parent: 1 - type: Transform - - uid: 3077 - components: - - pos: 38.5,-16.5 - parent: 1 - type: Transform - - uid: 3079 - components: - - pos: 31.5,-25.5 - parent: 1 - type: Transform - - uid: 3080 - components: - - pos: 33.5,-24.5 - parent: 1 - type: Transform - - uid: 3081 - components: - - pos: 32.5,-25.5 - parent: 1 - type: Transform - - uid: 3082 - components: - - pos: 28.5,-27.5 - parent: 1 - type: Transform - - uid: 3089 - components: - - pos: 40.5,-11.5 - parent: 1 - type: Transform - - uid: 3091 - components: - - pos: 39.5,-13.5 - parent: 1 - type: Transform - - uid: 3093 - components: - - pos: 36.5,77.5 - parent: 1 - type: Transform - - uid: 3095 - components: - - pos: 35.5,76.5 - parent: 1 - type: Transform - - uid: 3096 - components: - - pos: 24.5,-27.5 - parent: 1 - type: Transform - - uid: 3097 - components: - - pos: 30.5,-25.5 - parent: 1 - type: Transform - - uid: 3098 - components: - - pos: 33.5,-23.5 - parent: 1 - type: Transform - - uid: 3099 - components: - - pos: 34.5,-22.5 - parent: 1 - type: Transform - - uid: 3100 - components: - - pos: 36.5,-21.5 - parent: 1 - type: Transform - - uid: 3139 - components: - - pos: 34.5,76.5 - parent: 1 - type: Transform - - uid: 3158 - components: - - pos: 30.5,76.5 - parent: 1 - type: Transform - - uid: 3184 - components: - - pos: 39.5,47.5 - parent: 1 - type: Transform - - uid: 3231 - components: - - rot: 3.141592653589793 rad - pos: 24.5,48.5 - parent: 1 - type: Transform - - uid: 3242 - components: - - rot: 3.141592653589793 rad - pos: 25.5,48.5 - parent: 1 - type: Transform - - uid: 3340 - components: - - rot: 3.141592653589793 rad - pos: 5.5,49.5 - parent: 1 - type: Transform - - uid: 3343 - components: - - rot: 3.141592653589793 rad - pos: 1.5,49.5 - parent: 1 - type: Transform - - uid: 3346 - components: - - rot: 3.141592653589793 rad - pos: 1.5,44.5 - parent: 1 - type: Transform - - uid: 3518 - components: - - pos: -50.5,17.5 - parent: 1 - type: Transform - - uid: 3520 - components: - - pos: -49.5,17.5 - parent: 1 - type: Transform - - uid: 3524 - components: - - rot: 3.141592653589793 rad - pos: 13.5,41.5 - parent: 1 - type: Transform - - uid: 3525 - components: - - rot: 3.141592653589793 rad - pos: 13.5,45.5 - parent: 1 - type: Transform - - uid: 3526 - components: - - rot: 3.141592653589793 rad - pos: 16.5,46.5 - parent: 1 - type: Transform - - uid: 3532 - components: - - pos: 42.5,41.5 - parent: 1 - type: Transform - - uid: 3578 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-18.5 - parent: 1 - type: Transform - - uid: 3582 - components: - - pos: 23.5,-16.5 - parent: 1 - type: Transform - - uid: 3586 - components: - - pos: 23.5,-15.5 - parent: 1 - type: Transform - - uid: 3609 - components: - - pos: 9.5,24.5 - parent: 1 - type: Transform - - uid: 3621 - components: - - pos: 12.5,21.5 - parent: 1 - type: Transform - - uid: 3622 - components: - - pos: 10.5,21.5 - parent: 1 - type: Transform - - uid: 3638 - components: - - pos: 7.5,16.5 - parent: 1 - type: Transform - - uid: 3645 - components: - - pos: 8.5,16.5 - parent: 1 - type: Transform - - uid: 3646 - components: - - pos: 9.5,16.5 - parent: 1 - type: Transform - - uid: 3653 - components: - - pos: 13.5,16.5 - parent: 1 - type: Transform - - uid: 3654 - components: - - pos: 14.5,16.5 - parent: 1 - type: Transform - - uid: 3655 - components: - - pos: 15.5,16.5 - parent: 1 - type: Transform - - uid: 3681 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,29.5 - parent: 1 - type: Transform - - uid: 3684 - components: - - pos: 16.5,35.5 - parent: 1 - type: Transform - - uid: 3685 - components: - - pos: 15.5,35.5 - parent: 1 - type: Transform - - uid: 3686 - components: - - pos: 14.5,35.5 - parent: 1 - type: Transform - - uid: 3692 - components: - - pos: 12.5,35.5 - parent: 1 - type: Transform - - uid: 3693 - components: - - pos: 11.5,35.5 - parent: 1 - type: Transform - - uid: 3694 - components: - - pos: 10.5,35.5 - parent: 1 - type: Transform - - uid: 3731 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-18.5 - parent: 1 - type: Transform - - uid: 3732 - components: - - pos: 22.5,-10.5 - parent: 1 - type: Transform - - uid: 3747 - components: - - pos: 17.5,-20.5 - parent: 1 - type: Transform - - uid: 3751 - components: - - pos: 18.5,-26.5 - parent: 1 - type: Transform - - uid: 3757 - components: - - pos: 17.5,-26.5 - parent: 1 - type: Transform - - uid: 3758 - components: - - pos: 19.5,-24.5 - parent: 1 - type: Transform - - uid: 3763 - components: - - pos: 19.5,-23.5 - parent: 1 - type: Transform - - uid: 3764 - components: - - pos: 19.5,-22.5 - parent: 1 - type: Transform - - uid: 3774 - components: - - pos: 15.5,-10.5 - parent: 1 - type: Transform - - uid: 3776 - components: - - pos: 17.5,-28.5 - parent: 1 - type: Transform - - uid: 3777 - components: - - pos: 18.5,-28.5 - parent: 1 - type: Transform - - uid: 3778 - components: - - pos: 21.5,-24.5 - parent: 1 - type: Transform - - uid: 3779 - components: - - pos: 21.5,-23.5 - parent: 1 - type: Transform - - uid: 3780 - components: - - pos: 21.5,-22.5 - parent: 1 - type: Transform - - uid: 3807 - components: - - pos: 23.5,-14.5 - parent: 1 - type: Transform - - uid: 3962 - components: - - pos: 6.5,35.5 - parent: 1 - type: Transform - - uid: 3963 - components: - - pos: 5.5,35.5 - parent: 1 - type: Transform - - uid: 3964 - components: - - pos: 4.5,35.5 - parent: 1 - type: Transform - - uid: 3991 - components: - - pos: 16.5,-35.5 - parent: 1 - type: Transform - - uid: 4008 - components: - - pos: 20.5,-6.5 - parent: 1 - type: Transform - - uid: 4085 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,29.5 - parent: 1 - type: Transform - - uid: 4101 - components: - - pos: -53.5,46.5 - parent: 1 - type: Transform - - uid: 4120 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,16.5 - parent: 1 - type: Transform - - uid: 4121 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,16.5 - parent: 1 - type: Transform - - uid: 4122 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,16.5 - parent: 1 - type: Transform - - uid: 4129 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,20.5 - parent: 1 - type: Transform - - uid: 4132 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,20.5 - parent: 1 - type: Transform - - uid: 4215 - components: - - pos: 29.5,76.5 - parent: 1 - type: Transform - - uid: 4244 - components: - - pos: -35.5,8.5 - parent: 1 - type: Transform - - uid: 4357 - components: - - pos: 27.5,76.5 - parent: 1 - type: Transform - - uid: 4362 - components: - - pos: 38.5,77.5 - parent: 1 - type: Transform - - uid: 4372 - components: - - pos: 39.5,77.5 - parent: 1 - type: Transform - - uid: 4373 - components: - - pos: 32.5,76.5 - parent: 1 - type: Transform - - uid: 4374 - components: - - pos: 40.5,76.5 - parent: 1 - type: Transform - - uid: 4375 - components: - - pos: 41.5,76.5 - parent: 1 - type: Transform - - uid: 4376 - components: - - pos: 43.5,76.5 - parent: 1 - type: Transform - - uid: 4377 - components: - - pos: 44.5,76.5 - parent: 1 - type: Transform - - uid: 4379 - components: - - pos: -47.5,76.5 - parent: 1 - type: Transform - - uid: 4397 - components: - - rot: 3.141592653589793 rad - pos: 5.5,3.5 - parent: 1 - type: Transform - - uid: 4406 - components: - - pos: 3.5,65.5 - parent: 1 - type: Transform - - uid: 4409 - components: - - pos: 29.5,42.5 - parent: 1 - type: Transform - - uid: 4410 - components: - - pos: 29.5,39.5 - parent: 1 - type: Transform - - uid: 4411 - components: - - pos: 32.5,42.5 - parent: 1 - type: Transform - - uid: 4412 - components: - - rot: 3.141592653589793 rad - pos: 32.5,39.5 - parent: 1 - type: Transform - - uid: 4417 - components: - - pos: 13.5,27.5 - parent: 1 - type: Transform - - uid: 4419 - components: - - pos: 15.5,30.5 - parent: 1 - type: Transform - - uid: 4421 - components: - - pos: 13.5,32.5 - parent: 1 - type: Transform - - uid: 4428 - components: - - rot: 3.141592653589793 rad - pos: -29.5,34.5 - parent: 1 - type: Transform - - uid: 4429 - components: - - rot: 3.141592653589793 rad - pos: -29.5,29.5 - parent: 1 - type: Transform - - uid: 4430 - components: - - rot: 3.141592653589793 rad - pos: -28.5,35.5 - parent: 1 - type: Transform - - uid: 4431 - components: - - rot: 3.141592653589793 rad - pos: -27.5,35.5 - parent: 1 - type: Transform - - uid: 4464 - components: - - pos: -51.5,49.5 - parent: 1 - type: Transform - - uid: 4465 - components: - - pos: 20.5,39.5 - parent: 1 - type: Transform - - uid: 4466 - components: - - pos: 19.5,39.5 - parent: 1 - type: Transform - - uid: 4467 - components: - - pos: 21.5,39.5 - parent: 1 - type: Transform - - uid: 4471 - components: - - pos: -40.5,-13.5 - parent: 1 - type: Transform - - uid: 4473 - components: - - pos: -39.5,-16.5 - parent: 1 - type: Transform - - uid: 4474 - components: - - pos: -39.5,-17.5 - parent: 1 - type: Transform - - uid: 4475 - components: - - pos: -37.5,-19.5 - parent: 1 - type: Transform - - uid: 4476 - components: - - pos: -37.5,-20.5 - parent: 1 - type: Transform - - uid: 4477 - components: - - pos: -37.5,-21.5 - parent: 1 - type: Transform - - uid: 4478 - components: - - pos: -36.5,-22.5 - parent: 1 - type: Transform - - uid: 4479 - components: - - pos: -35.5,-22.5 - parent: 1 - type: Transform - - uid: 4480 - components: - - pos: -34.5,-23.5 - parent: 1 - type: Transform - - uid: 4481 - components: - - pos: -34.5,-24.5 - parent: 1 - type: Transform - - uid: 4482 - components: - - pos: -33.5,-25.5 - parent: 1 - type: Transform - - uid: 4483 - components: - - pos: -32.5,-25.5 - parent: 1 - type: Transform - - uid: 4484 - components: - - pos: -31.5,-25.5 - parent: 1 - type: Transform - - uid: 4485 - components: - - pos: -29.5,-27.5 - parent: 1 - type: Transform - - uid: 4487 - components: - - pos: 37.5,77.5 - parent: 1 - type: Transform - - uid: 4488 - components: - - pos: -25.5,-27.5 - parent: 1 - type: Transform - - uid: 4490 - components: - - pos: -41.5,-11.5 - parent: 1 - type: Transform - - uid: 4504 - components: - - pos: -48.5,76.5 - parent: 1 - type: Transform - - uid: 4507 - components: - - pos: 45.5,35.5 - parent: 1 - type: Transform - - uid: 4508 - components: - - pos: 49.5,35.5 - parent: 1 - type: Transform - - uid: 5707 - components: - - pos: -46.5,39.5 - parent: 1 - type: Transform - - uid: 5730 - components: - - pos: 21.5,16.5 - parent: 1 - type: Transform - - uid: 5731 - components: - - pos: 22.5,16.5 - parent: 1 - type: Transform - - uid: 5732 - components: - - pos: 26.5,16.5 - parent: 1 - type: Transform - - uid: 5733 - components: - - pos: 27.5,16.5 - parent: 1 - type: Transform - - uid: 5734 - components: - - pos: 28.5,17.5 - parent: 1 - type: Transform - - uid: 5735 - components: - - pos: 28.5,18.5 - parent: 1 - type: Transform - - uid: 5736 - components: - - pos: 28.5,22.5 - parent: 1 - type: Transform - - uid: 5737 - components: - - pos: 28.5,23.5 - parent: 1 - type: Transform - - uid: 5794 - components: - - pos: 28.5,-10.5 - parent: 1 - type: Transform - - uid: 5827 - components: - - pos: -37.5,-0.5 - parent: 1 - type: Transform - - uid: 6096 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,34.5 - parent: 1 - type: Transform - - uid: 6097 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,31.5 - parent: 1 - type: Transform - - uid: 6103 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,35.5 - parent: 1 - type: Transform - - uid: 6104 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,35.5 - parent: 1 - type: Transform - - uid: 6141 - components: - - pos: -38.5,-25.5 - parent: 1 - type: Transform - - uid: 6142 - components: - - pos: -38.5,-26.5 - parent: 1 - type: Transform - - uid: 6143 - components: - - pos: -37.5,-26.5 - parent: 1 - type: Transform - - uid: 6144 - components: - - pos: -36.5,-26.5 - parent: 1 - type: Transform - - uid: 6145 - components: - - pos: -18.5,-43.5 - parent: 1 - type: Transform - - uid: 6146 - components: - - pos: -34.5,-28.5 - parent: 1 - type: Transform - - uid: 6147 - components: - - pos: -33.5,-28.5 - parent: 1 - type: Transform - - uid: 6158 - components: - - pos: -24.5,-33.5 - parent: 1 - type: Transform - - uid: 6159 - components: - - pos: -24.5,-34.5 - parent: 1 - type: Transform - - uid: 6160 - components: - - pos: -24.5,-35.5 - parent: 1 - type: Transform - - uid: 6161 - components: - - pos: -24.5,-36.5 - parent: 1 - type: Transform - - uid: 6163 - components: - - pos: -24.5,-38.5 - parent: 1 - type: Transform - - uid: 6165 - components: - - pos: -24.5,-39.5 - parent: 1 - type: Transform - - uid: 6166 - components: - - pos: 37.5,-24.5 - parent: 1 - type: Transform - - uid: 6168 - components: - - pos: 37.5,-26.5 - parent: 1 - type: Transform - - uid: 6170 - components: - - pos: 35.5,-26.5 - parent: 1 - type: Transform - - uid: 6172 - components: - - pos: 34.5,-28.5 - parent: 1 - type: Transform - - uid: 6173 - components: - - pos: 33.5,-28.5 - parent: 1 - type: Transform - - uid: 6175 - components: - - pos: 31.5,-28.5 - parent: 1 - type: Transform - - uid: 6185 - components: - - pos: 23.5,-33.5 - parent: 1 - type: Transform - - uid: 6187 - components: - - pos: 23.5,-35.5 - parent: 1 - type: Transform - - uid: 6189 - components: - - pos: 23.5,-37.5 - parent: 1 - type: Transform - - uid: 6190 - components: - - pos: 23.5,-38.5 - parent: 1 - type: Transform - - uid: 6191 - components: - - pos: 23.5,-39.5 - parent: 1 - type: Transform - - uid: 6192 - components: - - pos: 16.5,-47.5 - parent: 1 - type: Transform - - uid: 6194 - components: - - pos: -35.5,-28.5 - parent: 1 - type: Transform - - uid: 6195 - components: - - pos: -51.5,47.5 - parent: 1 - type: Transform - - uid: 6197 - components: - - pos: -48.5,53.5 - parent: 1 - type: Transform - - uid: 6200 - components: - - pos: -49.5,51.5 - parent: 1 - type: Transform - - uid: 6201 - components: - - rot: 3.141592653589793 rad - pos: -6.5,87.5 - parent: 1 - type: Transform - - uid: 6202 - components: - - pos: -51.5,50.5 - parent: 1 - type: Transform - - uid: 6203 - components: - - pos: -47.5,53.5 - parent: 1 - type: Transform - - uid: 6204 - components: - - pos: -46.5,54.5 - parent: 1 - type: Transform - - uid: 6205 - components: - - pos: -46.5,55.5 - parent: 1 - type: Transform - - uid: 6206 - components: - - pos: -46.5,56.5 - parent: 1 - type: Transform - - uid: 6207 - components: - - pos: -45.5,56.5 - parent: 1 - type: Transform - - uid: 6209 - components: - - pos: -43.5,56.5 - parent: 1 - type: Transform - - uid: 6210 - components: - - rot: 3.141592653589793 rad - pos: -5.5,87.5 - parent: 1 - type: Transform - - uid: 6212 - components: - - pos: -40.5,54.5 - parent: 1 - type: Transform - - uid: 6213 - components: - - pos: -40.5,55.5 - parent: 1 - type: Transform - - uid: 6214 - components: - - pos: -39.5,53.5 - parent: 1 - type: Transform - - uid: 6215 - components: - - pos: -37.5,53.5 - parent: 1 - type: Transform - - uid: 6218 - components: - - pos: -34.5,60.5 - parent: 1 - type: Transform - - uid: 6219 - components: - - pos: -33.5,60.5 - parent: 1 - type: Transform - - uid: 6220 - components: - - pos: -32.5,60.5 - parent: 1 - type: Transform - - uid: 6223 - components: - - pos: -31.5,62.5 - parent: 1 - type: Transform - - uid: 6224 - components: - - pos: -30.5,62.5 - parent: 1 - type: Transform - - uid: 6226 - components: - - pos: -28.5,62.5 - parent: 1 - type: Transform - - uid: 6228 - components: - - pos: -26.5,62.5 - parent: 1 - type: Transform - - uid: 6229 - components: - - pos: -30.5,76.5 - parent: 1 - type: Transform - - uid: 6230 - components: - - pos: -24.5,62.5 - parent: 1 - type: Transform - - uid: 6231 - components: - - pos: -23.5,62.5 - parent: 1 - type: Transform - - uid: 6232 - components: - - pos: -22.5,62.5 - parent: 1 - type: Transform - - uid: 6233 - components: - - rot: 3.141592653589793 rad - pos: -2.5,87.5 - parent: 1 - type: Transform - - uid: 6234 - components: - - pos: -21.5,68.5 - parent: 1 - type: Transform - - uid: 6235 - components: - - pos: -20.5,68.5 - parent: 1 - type: Transform - - uid: 6238 - components: - - pos: -17.5,68.5 - parent: 1 - type: Transform - - uid: 6239 - components: - - pos: -16.5,68.5 - parent: 1 - type: Transform - - uid: 6240 - components: - - rot: 3.141592653589793 rad - pos: -1.5,87.5 - parent: 1 - type: Transform - - uid: 6241 - components: - - pos: -15.5,74.5 - parent: 1 - type: Transform - - uid: 6243 - components: - - pos: -13.5,74.5 - parent: 1 - type: Transform - - uid: 6244 - components: - - pos: -12.5,74.5 - parent: 1 - type: Transform - - uid: 6245 - components: - - pos: -12.5,75.5 - parent: 1 - type: Transform - - uid: 6246 - components: - - pos: -12.5,76.5 - parent: 1 - type: Transform - - uid: 6247 - components: - - pos: -12.5,77.5 - parent: 1 - type: Transform - - uid: 6248 - components: - - pos: -12.5,78.5 - parent: 1 - type: Transform - - uid: 6249 - components: - - pos: -12.5,79.5 - parent: 1 - type: Transform - - uid: 6250 - components: - - rot: 3.141592653589793 rad - pos: -0.5,87.5 - parent: 1 - type: Transform - - uid: 6251 - components: - - pos: 31.5,60.5 - parent: 1 - type: Transform - - uid: 6252 - components: - - pos: -11.5,79.5 - parent: 1 - type: Transform - - uid: 6254 - components: - - pos: -11.5,81.5 - parent: 1 - type: Transform - - uid: 6255 - components: - - pos: -11.5,82.5 - parent: 1 - type: Transform - - uid: 6256 - components: - - pos: -11.5,83.5 - parent: 1 - type: Transform - - uid: 6258 - components: - - rot: 3.141592653589793 rad - pos: -6.5,86.5 - parent: 1 - type: Transform - - uid: 6259 - components: - - pos: -29.5,76.5 - parent: 1 - type: Transform - - uid: 6260 - components: - - pos: 10.5,83.5 - parent: 1 - type: Transform - - uid: 6261 - components: - - pos: 10.5,81.5 - parent: 1 - type: Transform - - uid: 6262 - components: - - pos: 10.5,80.5 - parent: 1 - type: Transform - - uid: 6263 - components: - - pos: 10.5,79.5 - parent: 1 - type: Transform - - uid: 6264 - components: - - pos: 11.5,79.5 - parent: 1 - type: Transform - - uid: 6265 - components: - - pos: 11.5,78.5 - parent: 1 - type: Transform - - uid: 6266 - components: - - pos: -41.5,76.5 - parent: 1 - type: Transform - - uid: 6268 - components: - - pos: 11.5,75.5 - parent: 1 - type: Transform - - uid: 6269 - components: - - pos: 11.5,74.5 - parent: 1 - type: Transform - - uid: 6270 - components: - - rot: 3.141592653589793 rad - pos: -7.5,86.5 - parent: 1 - type: Transform - - uid: 6271 - components: - - pos: 12.5,74.5 - parent: 1 - type: Transform - - uid: 6272 - components: - - pos: 13.5,74.5 - parent: 1 - type: Transform - - uid: 6273 - components: - - pos: 14.5,74.5 - parent: 1 - type: Transform - - uid: 6274 - components: - - rot: 3.141592653589793 rad - pos: -8.5,86.5 - parent: 1 - type: Transform - - uid: 6275 - components: - - pos: 15.5,68.5 - parent: 1 - type: Transform - - uid: 6277 - components: - - pos: 17.5,68.5 - parent: 1 - type: Transform - - uid: 6278 - components: - - pos: 18.5,68.5 - parent: 1 - type: Transform - - uid: 6279 - components: - - pos: 19.5,68.5 - parent: 1 - type: Transform - - uid: 6280 - components: - - pos: 20.5,68.5 - parent: 1 - type: Transform - - uid: 6281 - components: - - rot: 3.141592653589793 rad - pos: -9.5,86.5 - parent: 1 - type: Transform - - uid: 6282 - components: - - pos: 21.5,62.5 - parent: 1 - type: Transform - - uid: 6284 - components: - - pos: 23.5,62.5 - parent: 1 - type: Transform - - uid: 6285 - components: - - pos: 24.5,62.5 - parent: 1 - type: Transform - - uid: 6286 - components: - - pos: 25.5,62.5 - parent: 1 - type: Transform - - uid: 6289 - components: - - pos: 28.5,62.5 - parent: 1 - type: Transform - - uid: 6290 - components: - - pos: 29.5,62.5 - parent: 1 - type: Transform - - uid: 6291 - components: - - pos: 30.5,62.5 - parent: 1 - type: Transform - - uid: 6294 - components: - - pos: 33.5,60.5 - parent: 1 - type: Transform - - uid: 6295 - components: - - pos: 34.5,60.5 - parent: 1 - type: Transform - - uid: 6296 - components: - - pos: -42.5,76.5 - parent: 1 - type: Transform - - uid: 6297 - components: - - pos: -20.5,-42.5 - parent: 1 - type: Transform - - uid: 6298 - components: - - pos: -44.5,76.5 - parent: 1 - type: Transform - - uid: 6299 - components: - - pos: -45.5,76.5 - parent: 1 - type: Transform - - uid: 6300 - components: - - pos: 41.5,58.5 - parent: 1 - type: Transform - - uid: 6301 - components: - - pos: 42.5,56.5 - parent: 1 - type: Transform - - uid: 6302 - components: - - pos: 42.5,55.5 - parent: 1 - type: Transform - - uid: 6304 - components: - - pos: 44.5,55.5 - parent: 1 - type: Transform - - uid: 6305 - components: - - pos: 46.5,52.5 - parent: 1 - type: Transform - - uid: 6306 - components: - - pos: 47.5,52.5 - parent: 1 - type: Transform - - uid: 6307 - components: - - pos: 49.5,48.5 - parent: 1 - type: Transform - - uid: 6308 - components: - - pos: 50.5,48.5 - parent: 1 - type: Transform - - uid: 6309 - components: - - pos: 51.5,48.5 - parent: 1 - type: Transform - - uid: 6310 - components: - - pos: 52.5,47.5 - parent: 1 - type: Transform - - uid: 6312 - components: - - pos: 52.5,45.5 - parent: 1 - type: Transform - - uid: 6313 - components: - - pos: 52.5,44.5 - parent: 1 - type: Transform - - uid: 6314 - components: - - pos: 52.5,43.5 - parent: 1 - type: Transform - - uid: 6316 - components: - - pos: 52.5,41.5 - parent: 1 - type: Transform - - uid: 6317 - components: - - pos: 17.5,-45.5 - parent: 1 - type: Transform - - uid: 6318 - components: - - pos: 17.5,-44.5 - parent: 1 - type: Transform - - uid: 6319 - components: - - pos: 17.5,-43.5 - parent: 1 - type: Transform - - uid: 6320 - components: - - pos: 17.5,-47.5 - parent: 1 - type: Transform - - uid: 6321 - components: - - pos: -18.5,-45.5 - parent: 1 - type: Transform - - uid: 6322 - components: - - pos: -18.5,-46.5 - parent: 1 - type: Transform - - uid: 6323 - components: - - pos: -18.5,-47.5 - parent: 1 - type: Transform - - uid: 6324 - components: - - pos: -17.5,-47.5 - parent: 1 - type: Transform - - uid: 6325 - components: - - pos: -21.5,-42.5 - parent: 1 - type: Transform - - uid: 6326 - components: - - pos: -22.5,-42.5 - parent: 1 - type: Transform - - uid: 6327 - components: - - pos: -22.5,-41.5 - parent: 1 - type: Transform - - uid: 6328 - components: - - rot: 3.141592653589793 rad - pos: -3.5,87.5 - parent: 1 - type: Transform - - uid: 6329 - components: - - pos: 19.5,-42.5 - parent: 1 - type: Transform - - uid: 6330 - components: - - pos: -39.5,77.5 - parent: 1 - type: Transform - - uid: 6331 - components: - - pos: 21.5,-42.5 - parent: 1 - type: Transform - - uid: 6332 - components: - - pos: 21.5,-41.5 - parent: 1 - type: Transform - - uid: 6341 - components: - - pos: 39.5,54.5 - parent: 1 - type: Transform - - uid: 6342 - components: - - pos: 39.5,55.5 - parent: 1 - type: Transform - - uid: 6385 - components: - - pos: -38.5,77.5 - parent: 1 - type: Transform - - uid: 6462 - components: - - rot: 3.141592653589793 rad - pos: 2.5,87.5 - parent: 1 - type: Transform - - uid: 6463 - components: - - rot: 3.141592653589793 rad - pos: 3.5,87.5 - parent: 1 - type: Transform - - uid: 6464 - components: - - rot: 3.141592653589793 rad - pos: 4.5,87.5 - parent: 1 - type: Transform - - uid: 6465 - components: - - rot: 3.141592653589793 rad - pos: 5.5,87.5 - parent: 1 - type: Transform - - uid: 6466 - components: - - rot: 3.141592653589793 rad - pos: 5.5,86.5 - parent: 1 - type: Transform - - uid: 6467 - components: - - rot: 3.141592653589793 rad - pos: 6.5,86.5 - parent: 1 - type: Transform - - uid: 6469 - components: - - rot: 3.141592653589793 rad - pos: 8.5,86.5 - parent: 1 - type: Transform - - uid: 6470 - components: - - rot: 3.141592653589793 rad - pos: 9.5,86.5 - parent: 1 - type: Transform - - uid: 6478 - components: - - pos: -53.5,45.5 - parent: 1 - type: Transform - - uid: 6483 - components: - - pos: -53.5,42.5 - parent: 1 - type: Transform - - uid: 6492 - components: - - pos: -53.5,43.5 - parent: 1 - type: Transform - - uid: 6493 - components: - - pos: -53.5,41.5 - parent: 1 - type: Transform - - uid: 6497 - components: - - pos: 42.5,-10.5 - parent: 1 - type: Transform - - uid: 6498 - components: - - pos: 43.5,-10.5 - parent: 1 - type: Transform - - uid: 6499 - components: - - pos: 44.5,-12.5 - parent: 1 - type: Transform - - uid: 6510 - components: - - pos: 51.5,-8.5 - parent: 1 - type: Transform - - uid: 6511 - components: - - pos: 50.5,-10.5 - parent: 1 - type: Transform - - uid: 6515 - components: - - pos: 50.5,-12.5 - parent: 1 - type: Transform - - uid: 6530 - components: - - pos: -37.5,77.5 - parent: 1 - type: Transform - - uid: 6531 - components: - - pos: -36.5,77.5 - parent: 1 - type: Transform - - uid: 6532 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,6.5 - parent: 1 - type: Transform - - uid: 6533 - components: - - pos: -31.5,76.5 - parent: 1 - type: Transform - - uid: 6534 - components: - - pos: -35.5,76.5 - parent: 1 - type: Transform - - uid: 6535 - components: - - pos: -34.5,76.5 - parent: 1 - type: Transform - - uid: 6536 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,7.5 - parent: 1 - type: Transform - - uid: 6537 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,7.5 - parent: 1 - type: Transform - - uid: 6538 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,0.5 - parent: 1 - type: Transform - - uid: 6542 - components: - - pos: -33.5,76.5 - parent: 1 - type: Transform - - uid: 6562 - components: - - pos: 45.5,76.5 - parent: 1 - type: Transform - - uid: 6567 - components: - - rot: 1.5707963267948966 rad - pos: 46.5,11.5 - parent: 1 - type: Transform - - uid: 6568 - components: - - rot: 1.5707963267948966 rad - pos: 49.5,11.5 - parent: 1 - type: Transform - - uid: 6570 - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-5.5 - parent: 1 - type: Transform - - uid: 6571 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,5.5 - parent: 1 - type: Transform - - uid: 6581 - components: - - pos: 4.5,65.5 - parent: 1 - type: Transform - - uid: 6852 - components: - - pos: 37.5,49.5 - parent: 1 - type: Transform - - uid: 7178 - components: - - pos: -46.5,17.5 - parent: 1 - type: Transform - - uid: 7179 - components: - - pos: -48.5,17.5 - parent: 1 - type: Transform - - uid: 7248 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-15.5 - parent: 1 - type: Transform - - uid: 7399 - components: - - pos: 27.5,-28.5 - parent: 1 - type: Transform - - uid: 7634 - components: - - pos: 25.5,-28.5 - parent: 1 - type: Transform - - uid: 7642 - components: - - pos: -26.5,-28.5 - parent: 1 - type: Transform - - uid: 7647 - components: - - pos: 47.5,76.5 - parent: 1 - type: Transform - - uid: 7673 - components: - - pos: -28.5,-28.5 - parent: 1 - type: Transform - - uid: 7678 - components: - - pos: 26.5,67.5 - parent: 1 - type: Transform - - uid: 7679 - components: - - pos: 26.5,68.5 - parent: 1 - type: Transform - - uid: 7680 - components: - - pos: 26.5,69.5 - parent: 1 - type: Transform - - uid: 7682 - components: - - pos: 26.5,71.5 - parent: 1 - type: Transform - - uid: 7684 - components: - - pos: 26.5,73.5 - parent: 1 - type: Transform - - uid: 7685 - components: - - pos: 26.5,74.5 - parent: 1 - type: Transform - - uid: 7686 - components: - - pos: 26.5,75.5 - parent: 1 - type: Transform - - uid: 7687 - components: - - pos: 26.5,76.5 - parent: 1 - type: Transform - - uid: 7719 - components: - - pos: 48.5,76.5 - parent: 1 - type: Transform - - uid: 7720 - components: - - pos: 48.5,75.5 - parent: 1 - type: Transform - - uid: 7721 - components: - - pos: 48.5,74.5 - parent: 1 - type: Transform - - uid: 7723 - components: - - pos: 48.5,72.5 - parent: 1 - type: Transform - - uid: 7725 - components: - - pos: 48.5,70.5 - parent: 1 - type: Transform - - uid: 7726 - components: - - pos: 48.5,69.5 - parent: 1 - type: Transform - - uid: 7727 - components: - - pos: 48.5,68.5 - parent: 1 - type: Transform - - uid: 7728 - components: - - pos: 48.5,67.5 - parent: 1 - type: Transform - - uid: 7886 - components: - - pos: -47.5,39.5 - parent: 1 - type: Transform - - uid: 7887 - components: - - pos: -41.5,45.5 - parent: 1 - type: Transform - - uid: 7902 - components: - - pos: -44.5,39.5 - parent: 1 - type: Transform - - uid: 7914 - components: - - rot: -1.5707963267948966 rad - pos: -43.5,21.5 - parent: 1 - type: Transform - - uid: 7916 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,26.5 - parent: 1 - type: Transform - - uid: 7924 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,26.5 - parent: 1 - type: Transform - - uid: 7933 - components: - - pos: -43.5,32.5 - parent: 1 - type: Transform - - uid: 8588 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,16.5 - parent: 1 - type: Transform - - uid: 8589 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,16.5 - parent: 1 - type: Transform - - uid: 8640 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,31.5 - parent: 1 - type: Transform - - uid: 8729 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-16.5 - parent: 1 - type: Transform - - uid: 8730 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-16.5 - parent: 1 - type: Transform - - uid: 8757 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-0.5 - parent: 8756 - type: Transform - - uid: 8758 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-0.5 - parent: 8756 - type: Transform - - uid: 8759 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-0.5 - parent: 8756 - type: Transform - - uid: 8760 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-0.5 - parent: 8756 - type: Transform - - uid: 8777 - components: - - rot: 3.141592653589793 rad - pos: -1.5,1.5 - parent: 8756 - type: Transform - - uid: 8778 - components: - - rot: 3.141592653589793 rad - pos: 0.5,1.5 - parent: 8756 - type: Transform - - uid: 8783 - components: - - rot: 3.141592653589793 rad - pos: -2.5,3.5 - parent: 8756 - type: Transform - - uid: 8784 - components: - - rot: 3.141592653589793 rad - pos: -1.5,4.5 - parent: 8756 - type: Transform - - uid: 8785 - components: - - rot: 3.141592653589793 rad - pos: -0.5,4.5 - parent: 8756 - type: Transform - - uid: 8786 - components: - - rot: 3.141592653589793 rad - pos: 0.5,4.5 - parent: 8756 - type: Transform - - uid: 8787 - components: - - rot: 3.141592653589793 rad - pos: 1.5,3.5 - parent: 8756 - type: Transform - - uid: 8793 - components: - - rot: 3.141592653589793 rad - pos: -3.5,1.5 - parent: 8756 - type: Transform - - uid: 8794 - components: - - rot: 3.141592653589793 rad - pos: 2.5,1.5 - parent: 8756 - type: Transform - - uid: 8802 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-6.5 - parent: 8756 - type: Transform - - uid: 8809 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-4.5 - parent: 8756 - type: Transform - - uid: 8810 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-4.5 - parent: 8756 - type: Transform - - uid: 8816 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-6.5 - parent: 8756 - type: Transform - - uid: 8817 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-6.5 - parent: 8756 - type: Transform - - uid: 8945 - components: - - pos: -10.5,-6.5 - parent: 1 - type: Transform - - uid: 8946 - components: - - pos: -11.5,-6.5 - parent: 1 - type: Transform - - uid: 8989 - components: - - pos: -12.5,-6.5 - parent: 1 - type: Transform - - uid: 9242 - components: - - pos: -14.5,3.5 - parent: 1 - type: Transform - - uid: 9243 - components: - - pos: -14.5,-2.5 - parent: 1 - type: Transform - - uid: 9580 - components: - - pos: 1.5,27.5 - parent: 1 - type: Transform - - uid: 9582 - components: - - pos: 1.5,30.5 - parent: 1 - type: Transform - - uid: 9583 - components: - - pos: 1.5,33.5 - parent: 1 - type: Transform - - uid: 9604 - components: - - pos: 16.5,-36.5 - parent: 1 - type: Transform - - uid: 10146 - components: - - rot: 3.141592653589793 rad - pos: 38.5,53.5 - parent: 1 - type: Transform - - uid: 10148 - components: - - rot: 3.141592653589793 rad - pos: 36.5,53.5 - parent: 1 - type: Transform - - uid: 10962 - components: - - rot: 3.141592653589793 rad - pos: 36.5,-13.5 - parent: 1 - type: Transform - - uid: 10963 - components: - - rot: 3.141592653589793 rad - pos: 37.5,-13.5 - parent: 1 - type: Transform - - uid: 11079 - components: - - pos: 21.5,10.5 - parent: 1 - type: Transform - - uid: 11080 - components: - - pos: 21.5,11.5 - parent: 1 - type: Transform - - uid: 14093 - components: - - pos: -48.5,34.5 - parent: 1 - type: Transform - - uid: 14094 - components: - - pos: -47.5,34.5 - parent: 1 - type: Transform - - uid: 18269 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,76.5 - parent: 1 - type: Transform - - uid: 18270 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,75.5 - parent: 1 - type: Transform - - uid: 18271 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,74.5 - parent: 1 - type: Transform - - uid: 18272 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,72.5 - parent: 1 - type: Transform - - uid: 18273 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,71.5 - parent: 1 - type: Transform - - uid: 18274 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,70.5 - parent: 1 - type: Transform - - uid: 18275 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,69.5 - parent: 1 - type: Transform - - uid: 18277 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,67.5 - parent: 1 - type: Transform - - uid: 18303 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,76.5 - parent: 1 - type: Transform - - uid: 18304 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,75.5 - parent: 1 - type: Transform - - uid: 18305 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,74.5 - parent: 1 - type: Transform - - uid: 18306 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,73.5 - parent: 1 - type: Transform - - uid: 18307 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,72.5 - parent: 1 - type: Transform - - uid: 18310 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,69.5 - parent: 1 - type: Transform - - uid: 18311 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,68.5 - parent: 1 - type: Transform - - uid: 18312 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,67.5 - parent: 1 - type: Transform -- proto: GrilleBroken - entities: - - uid: 4358 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,76.5 - parent: 1 - type: Transform - - uid: 4359 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,76.5 - parent: 1 - type: Transform - - uid: 4380 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,76.5 - parent: 1 - type: Transform - - uid: 4381 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,76.5 - parent: 1 - type: Transform - - uid: 4486 - components: - - pos: 35.5,77.5 - parent: 1 - type: Transform - - uid: 6151 - components: - - rot: 3.141592653589793 rad - pos: 37.5,-25.5 - parent: 1 - type: Transform - - uid: 6155 - components: - - rot: -1.5707963267948966 rad - pos: 48.5,52.5 - parent: 1 - type: Transform - - uid: 6156 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,76.5 - parent: 1 - type: Transform - - uid: 6157 - components: - - rot: 3.141592653589793 rad - pos: 39.5,76.5 - parent: 1 - type: Transform - - uid: 6162 - components: - - rot: 3.141592653589793 rad - pos: 52.5,40.5 - parent: 1 - type: Transform - - uid: 6164 - components: - - pos: 52.5,46.5 - parent: 1 - type: Transform - - uid: 6167 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,67.5 - parent: 1 - type: Transform - - uid: 6169 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,62.5 - parent: 1 - type: Transform - - uid: 6171 - components: - - pos: 52.5,48.5 - parent: 1 - type: Transform - - uid: 6174 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,62.5 - parent: 1 - type: Transform - - uid: 6176 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,76.5 - parent: 1 - type: Transform - - uid: 6177 - components: - - rot: 1.5707963267948966 rad - pos: 46.5,76.5 - parent: 1 - type: Transform - - uid: 6179 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,87.5 - parent: 1 - type: Transform - - uid: 6180 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,62.5 - parent: 1 - type: Transform - - uid: 6181 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,60.5 - parent: 1 - type: Transform - - uid: 6182 - components: - - rot: 3.141592653589793 rad - pos: 52.5,42.5 - parent: 1 - type: Transform - - uid: 6183 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,58.5 - parent: 1 - type: Transform - - uid: 6186 - components: - - pos: 42.5,57.5 - parent: 1 - type: Transform - - uid: 6188 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,55.5 - parent: 1 - type: Transform - - uid: 6196 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-26.5 - parent: 1 - type: Transform - - uid: 6199 - components: - - rot: 3.141592653589793 rad - pos: -36.5,76.5 - parent: 1 - type: Transform - - uid: 6216 - components: - - pos: -53.5,44.5 - parent: 1 - type: Transform - - uid: 6217 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-28.5 - parent: 1 - type: Transform - - uid: 6221 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,76.5 - parent: 1 - type: Transform - - uid: 6227 - components: - - pos: 21.5,-40.5 - parent: 1 - type: Transform - - uid: 6236 - components: - - rot: 3.141592653589793 rad - pos: 23.5,-36.5 - parent: 1 - type: Transform - - uid: 6237 - components: - - pos: 23.5,-34.5 - parent: 1 - type: Transform - - uid: 6242 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-46.5 - parent: 1 - type: Transform - - uid: 6253 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-42.5 - parent: 1 - type: Transform - - uid: 6257 - components: - - pos: -35.5,-27.5 - parent: 1 - type: Transform - - uid: 6267 - components: - - pos: -38.5,-24.5 - parent: 1 - type: Transform - - uid: 6276 - components: - - pos: -24.5,-37.5 - parent: 1 - type: Transform - - uid: 6283 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-42.5 - parent: 1 - type: Transform - - uid: 6287 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-44.5 - parent: 1 - type: Transform - - uid: 6288 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,87.5 - parent: 1 - type: Transform - - uid: 6292 - components: - - rot: -1.5707963267948966 rad - pos: -52.5,46.5 - parent: 1 - type: Transform - - uid: 6293 - components: - - pos: -22.5,-40.5 - parent: 1 - type: Transform - - uid: 6303 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,86.5 - parent: 1 - type: Transform - - uid: 6311 - components: - - rot: 3.141592653589793 rad - pos: 11.5,77.5 - parent: 1 - type: Transform - - uid: 6315 - components: - - rot: 3.141592653589793 rad - pos: 10.5,82.5 - parent: 1 - type: Transform - - uid: 6355 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,56.5 - parent: 1 - type: Transform - - uid: 6468 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-28.5 - parent: 1 - type: Transform - - uid: 6851 - components: - - pos: 37.5,50.5 - parent: 1 - type: Transform - - uid: 7625 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,76.5 - parent: 1 - type: Transform - - uid: 7626 - components: - - rot: -1.5707963267948966 rad - pos: -43.5,76.5 - parent: 1 - type: Transform - - uid: 7627 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,76.5 - parent: 1 - type: Transform - - uid: 7628 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,77.5 - parent: 1 - type: Transform - - uid: 7629 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,76.5 - parent: 1 - type: Transform - - uid: 7677 - components: - - rot: 3.141592653589793 rad - pos: 48.5,73.5 - parent: 1 - type: Transform - - uid: 7698 - components: - - pos: 26.5,70.5 - parent: 1 - type: Transform - - uid: 7701 - components: - - pos: 26.5,72.5 - parent: 1 - type: Transform - - uid: 7706 - components: - - rot: 3.141592653589793 rad - pos: 26.5,72.5 - parent: 1 - type: Transform - - uid: 7709 - components: - - rot: 3.141592653589793 rad - pos: 26.5,70.5 - parent: 1 - type: Transform - - uid: 7713 - components: - - rot: 3.141592653589793 rad - pos: 26.5,66.5 - parent: 1 - type: Transform - - uid: 7717 - components: - - rot: 3.141592653589793 rad - pos: 48.5,66.5 - parent: 1 - type: Transform - - uid: 7718 - components: - - pos: 48.5,71.5 - parent: 1 - type: Transform - - uid: 7724 - components: - - pos: 48.5,73.5 - parent: 1 - type: Transform - - uid: 8115 - components: - - pos: -51.5,48.5 - parent: 1 - type: Transform - - uid: 9222 - components: - - pos: -49.5,52.5 - parent: 1 - type: Transform - - uid: 9224 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,60.5 - parent: 1 - type: Transform - - uid: 9581 - components: - - rot: 3.141592653589793 rad - pos: 16.5,68.5 - parent: 1 - type: Transform - - uid: 9585 - components: - - rot: 3.141592653589793 rad - pos: 14.5,73.5 - parent: 1 - type: Transform - - uid: 9586 - components: - - pos: 11.5,76.5 - parent: 1 - type: Transform - - uid: 9707 - components: - - rot: 3.141592653589793 rad - pos: -31.5,61.5 - parent: 1 - type: Transform - - uid: 9708 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,62.5 - parent: 1 - type: Transform - - uid: 14034 - components: - - rot: 3.141592653589793 rad - pos: 24.5,58.5 - parent: 1 - type: Transform - - uid: 18180 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,62.5 - parent: 1 - type: Transform - - uid: 18181 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,62.5 - parent: 1 - type: Transform - - uid: 18182 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,62.5 - parent: 1 - type: Transform - - uid: 18183 - components: - - pos: -11.5,80.5 - parent: 1 - type: Transform - - uid: 18184 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,68.5 - parent: 1 - type: Transform - - uid: 18185 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,68.5 - parent: 1 - type: Transform - - uid: 18186 - components: - - rot: 3.141592653589793 rad - pos: -15.5,73.5 - parent: 1 - type: Transform - - uid: 18187 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,74.5 - parent: 1 - type: Transform - - uid: 18188 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,86.5 - parent: 1 - type: Transform - - uid: 18189 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,87.5 - parent: 1 - type: Transform - - uid: 18266 - components: - - rot: 3.141592653589793 rad - pos: -27.5,66.5 - parent: 1 - type: Transform - - uid: 18276 - components: - - pos: -27.5,68.5 - parent: 1 - type: Transform - - uid: 18278 - components: - - rot: 3.141592653589793 rad - pos: -27.5,73.5 - parent: 1 - type: Transform - - uid: 18315 - components: - - rot: 3.141592653589793 rad - pos: -49.5,71.5 - parent: 1 - type: Transform - - uid: 18316 - components: - - pos: -49.5,70.5 - parent: 1 - type: Transform - - uid: 18317 - components: - - rot: 3.141592653589793 rad - pos: -49.5,66.5 - parent: 1 - type: Transform -- proto: GroundCannabis - entities: - - uid: 18328 - components: - - pos: -4.3371787,11.84107 - parent: 1 - type: Transform -- proto: GunSafe - entities: - - uid: 7683 - components: - - pos: -4.5,62.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 8148 - - 8145 - - 7694 - - 7693 - - 7692 - - 7691 - - 7690 - - 7689 - - 7688 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: GunSafeDisabler - entities: - - uid: 7766 - components: - - pos: -17.5,40.5 - parent: 1 - type: Transform -- proto: GunSafeLaserCarbine - entities: - - uid: 7656 - components: - - pos: -9.5,64.5 - parent: 1 - type: Transform -- proto: GunSafePistolMk58 - entities: - - uid: 7658 - components: - - pos: -4.5,64.5 - parent: 1 - type: Transform -- proto: GunSafeRifleLecter - entities: - - uid: 7653 - components: - - pos: -4.5,63.5 - parent: 1 - type: Transform - - uid: 7657 - components: - - pos: -9.5,63.5 - parent: 1 - type: Transform -- proto: GunSafeShotgunKammerer - entities: - - uid: 7695 - components: - - pos: -9.5,62.5 - parent: 1 - type: Transform -- proto: Gyroscope - entities: - - uid: 8820 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-5.5 - parent: 8756 - type: Transform -- proto: Handcuffs - entities: - - uid: 8071 - components: - - pos: 3.5258956,80.448524 - parent: 1 - type: Transform - - uid: 9396 - components: - - pos: -34.812588,-5.3036704 - parent: 1 - type: Transform - - uid: 9418 - components: - - pos: 26.351677,-13.233653 - parent: 1 - type: Transform -- proto: HandheldCrewMonitor - entities: - - uid: 8490 - components: - - pos: 16.562784,32.85037 - parent: 1 - type: Transform -- proto: HandheldGPSBasic - entities: - - uid: 4126 - components: - - pos: -42.37712,26.662056 - parent: 1 - type: Transform - - uid: 9388 - components: - - pos: -43.72039,-2.2772734 - parent: 1 - type: Transform -- proto: HandheldHealthAnalyzer - entities: - - uid: 8069 - components: - - pos: 6.4224486,80.533676 - parent: 1 - type: Transform - - uid: 8527 - components: - - pos: 12.42043,22.684952 - parent: 1 - type: Transform -- proto: HandLabeler - entities: - - uid: 8707 - components: - - pos: -13.497177,-24.441525 - parent: 1 - type: Transform -- proto: Hemostat - entities: - - uid: 8599 - components: - - pos: -18.11327,30.456947 - parent: 1 - type: Transform - - uid: 8682 - components: - - pos: 20.466082,27.283358 - parent: 1 - type: Transform -- proto: HighSecArmoryLocked - entities: - - uid: 6826 - components: - - pos: -7.5,59.5 - parent: 1 - type: Transform -- proto: HighSecCaptainLocked - entities: - - uid: 9560 - components: - - pos: -20.5,-12.5 - parent: 1 - type: Transform - - uid: 9561 - components: - - pos: -19.5,-12.5 - parent: 1 - type: Transform -- proto: HighSecCommandLocked - entities: - - uid: 6460 - components: - - pos: 18.5,-10.5 - parent: 1 - type: Transform - - uid: 6475 - components: - - pos: 3.5,47.5 - parent: 1 - type: Transform - - uid: 6484 - components: - - pos: 3.5,46.5 - parent: 1 - type: Transform - - uid: 6504 - components: - - pos: 1.5,47.5 - parent: 1 - type: Transform - - uid: 6505 - components: - - pos: 1.5,46.5 - parent: 1 - type: Transform - - uid: 7262 - components: - - pos: 15.5,-23.5 - parent: 1 - type: Transform - - uid: 9402 - components: - - pos: -19.5,-18.5 - parent: 1 - type: Transform - - uid: 10647 - components: - - pos: 19.5,-10.5 - parent: 1 - type: Transform -- proto: HolofanProjector - entities: - - uid: 8708 - components: - - pos: -13.493561,-19.411528 - parent: 1 - type: Transform - - uid: 9101 - components: - - pos: 6.6579733,-24.865988 - parent: 1 - type: Transform - - uid: 9234 - components: - - pos: -21.60011,-11.462118 - parent: 1 - type: Transform - - uid: 11074 - components: - - pos: 19.405106,4.6722174 - parent: 1 - type: Transform -- proto: Holoprojector - entities: - - uid: 6663 - components: - - pos: 16.524984,-4.1055784 - parent: 1 - type: Transform -- proto: HospitalCurtains - entities: - - uid: 6815 - components: - - rot: 3.141592653589793 rad - pos: -7.5,69.5 - parent: 1 - type: Transform -- proto: HospitalCurtainsOpen - entities: - - uid: 2489 - components: - - pos: 26.5,8.5 - parent: 1 - type: Transform - - uid: 3228 - components: - - rot: 3.141592653589793 rad - pos: 25.5,49.5 - parent: 1 - type: Transform - - uid: 3240 - components: - - rot: 3.141592653589793 rad - pos: 26.5,52.5 - parent: 1 - type: Transform - - uid: 4315 - components: - - pos: -38.5,49.5 - parent: 1 - type: Transform - - uid: 6689 - components: - - pos: 16.5,-40.5 - parent: 1 - type: Transform - - uid: 6798 - components: - - pos: -5.5,72.5 - parent: 1 - type: Transform - - uid: 6818 - components: - - pos: -13.5,60.5 - parent: 1 - type: Transform - - uid: 7027 - components: - - pos: -23.5,1.5 - parent: 1 - type: Transform - - uid: 8360 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,48.5 - parent: 1 - type: Transform - - uid: 8391 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,40.5 - parent: 1 - type: Transform - - uid: 8392 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,46.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -480561.62 - state: Closing - type: Door - - uid: 8393 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,47.5 - parent: 1 - type: Transform - - uid: 8479 - components: - - pos: 14.5,34.5 - parent: 1 - type: Transform - - uid: 8504 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,28.5 - parent: 1 - type: Transform - - uid: 8630 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,19.5 - parent: 1 - type: Transform - - uid: 9017 - components: - - pos: -17.5,3.5 - parent: 1 - type: Transform - - uid: 9018 - components: - - pos: -17.5,1.5 - parent: 1 - type: Transform - - uid: 9019 - components: - - pos: -17.5,-2.5 - parent: 1 - type: Transform - - uid: 9103 - components: - - pos: 4.5,-23.5 - parent: 1 - type: Transform - - uid: 9325 - components: - - pos: -42.5,11.5 - parent: 1 - type: Transform - - uid: 9584 - components: - - pos: 1.5,33.5 - parent: 1 - type: Transform - - uid: 9587 - components: - - pos: 1.5,30.5 - parent: 1 - type: Transform - - uid: 9588 - components: - - pos: 1.5,27.5 - parent: 1 - type: Transform - - uid: 9872 - components: - - pos: -36.5,-21.5 - parent: 1 - type: Transform - - uid: 10383 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-17.5 - parent: 1 - type: Transform - - uid: 13329 - components: - - pos: -10.5,10.5 - parent: 1 - type: Transform - - uid: 13406 - components: - - pos: -38.5,42.5 - parent: 1 - type: Transform - - uid: 13407 - components: - - pos: -38.5,46.5 - parent: 1 - type: Transform -- proto: hydroponicsSoil - entities: - - uid: 4320 - components: - - pos: -34.5,45.5 - parent: 1 - type: Transform - - uid: 4321 - components: - - pos: -34.5,44.5 - parent: 1 - type: Transform - - uid: 4322 - components: - - pos: -32.5,45.5 - parent: 1 - type: Transform - - uid: 4323 - components: - - pos: -32.5,44.5 - parent: 1 - type: Transform - - uid: 4332 - components: - - pos: -34.5,46.5 - parent: 1 - type: Transform - - uid: 4333 - components: - - pos: -32.5,46.5 - parent: 1 - type: Transform - - uid: 10956 - components: - - pos: 36.5,-17.5 - parent: 1 - type: Transform - - uid: 10957 - components: - - pos: 37.5,-17.5 - parent: 1 - type: Transform - - uid: 10958 - components: - - pos: 37.5,-16.5 - parent: 1 - type: Transform - - uid: 10959 - components: - - pos: 36.5,-16.5 - parent: 1 - type: Transform -- proto: HydroponicsToolClippers - entities: - - uid: 11041 - components: - - pos: 34.58487,-14.532225 - parent: 1 - type: Transform -- proto: HydroponicsToolHatchet - entities: - - uid: 4239 - components: - - pos: 8.448287,11.575508 - parent: 1 - type: Transform - - uid: 10964 - components: - - pos: 34.467308,-14.410013 - parent: 1 - type: Transform -- proto: HydroponicsToolMiniHoe - entities: - - uid: 8274 - components: - - pos: -33.554195,46.106983 - parent: 1 - type: Transform - - uid: 11039 - components: - - pos: 37.22584,-16.547361 - parent: 1 - type: Transform - - uid: 18329 - components: - - pos: 5.441926,6.893481 - parent: 1 - type: Transform -- proto: HydroponicsToolScythe - entities: - - uid: 9005 - components: - - pos: 5.5596075,7.522549 - parent: 1 - type: Transform - - uid: 11038 - components: - - pos: 34.55647,-14.390314 - parent: 1 - type: Transform -- proto: HydroponicsToolSpade - entities: - - uid: 4234 - components: - - pos: 8.610393,11.560773 - parent: 1 - type: Transform - - uid: 8275 - components: - - pos: -33.497402,45.780586 - parent: 1 - type: Transform - - uid: 11040 - components: - - pos: 37.28264,-16.37707 - parent: 1 - type: Transform -- proto: hydroponicsTray - entities: - - uid: 2929 - components: - - pos: 9.5,11.5 - parent: 1 - type: Transform - - uid: 4222 - components: - - pos: 7.5,9.5 - parent: 1 - type: Transform - - uid: 4223 - components: - - pos: 7.5,8.5 - parent: 1 - type: Transform - - uid: 4224 - components: - - pos: 7.5,7.5 - parent: 1 - type: Transform - - uid: 4225 - components: - - pos: 9.5,9.5 - parent: 1 - type: Transform - - uid: 4226 - components: - - pos: 9.5,8.5 - parent: 1 - type: Transform - - uid: 4227 - components: - - pos: 9.5,7.5 - parent: 1 - type: Transform - - uid: 4228 - components: - - pos: 7.5,6.5 - parent: 1 - type: Transform - - uid: 4229 - components: - - pos: 9.5,6.5 - parent: 1 - type: Transform - - uid: 8594 - components: - - pos: 11.5,11.5 - parent: 1 - type: Transform - - uid: 9004 - components: - - pos: 5.5,11.5 - parent: 1 - type: Transform - - uid: 10115 - components: - - pos: 5.5,10.5 - parent: 1 - type: Transform - - uid: 10116 - components: - - pos: 5.5,8.5 - parent: 1 - type: Transform - - uid: 10117 - components: - - pos: 5.5,9.5 - parent: 1 - type: Transform -- proto: IDComputerCircuitboard - entities: - - uid: 18334 - components: - - pos: 18.594763,-24.917038 - parent: 1 - type: Transform -- proto: InflatableDoorStack - entities: - - uid: 8715 - components: - - pos: -11.275075,-15.582806 - parent: 1 - type: Transform -- proto: InflatableWallStack - entities: - - uid: 8755 - components: - - pos: -11.574207,-15.350821 - parent: 1 - type: Transform -- proto: IngotGold - entities: - - uid: 7254 - components: - - pos: 5.539674,45.723473 - parent: 1 - type: Transform -- proto: IngotGold1 - entities: - - uid: 9944 - components: - - pos: -39.522156,-11.308753 - parent: 1 - type: Transform - - uid: 9945 - components: - - pos: -38.57084,-11.507429 - parent: 1 - type: Transform - - uid: 9946 - components: - - pos: -38.52824,-13.196171 - parent: 1 - type: Transform - - uid: 13429 - components: - - pos: -23.753557,58.80462 - parent: 1 - type: Transform - - uid: 13430 - components: - - pos: -23.61157,58.520798 - parent: 1 - type: Transform -- proto: IngotSilver1 - entities: - - uid: 9947 - components: - - pos: -38.613434,-12.656909 - parent: 1 - type: Transform -- proto: IntercomAll - entities: - - uid: 18363 - components: - - pos: -7.5,71.5 - parent: 1 - type: Transform -- proto: IntercomCommand - entities: - - uid: 17569 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-25.5 - parent: 1 - type: Transform - - uid: 17582 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,11.5 - parent: 1 - type: Transform - - uid: 17593 - components: - - rot: 3.141592653589793 rad - pos: -24.5,18.5 - parent: 1 - type: Transform - - uid: 17598 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,33.5 - parent: 1 - type: Transform - - uid: 17607 - components: - - pos: -15.5,61.5 - parent: 1 - type: Transform - - uid: 17610 - components: - - pos: 4.5,75.5 - parent: 1 - type: Transform - - uid: 17611 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,81.5 - parent: 1 - type: Transform -- proto: IntercomCommon - entities: - - uid: 8893 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,2.5 - parent: 8756 - type: Transform - - uid: 17553 - components: - - pos: 47.5,16.5 - parent: 1 - type: Transform - - uid: 17554 - components: - - rot: 3.141592653589793 rad - pos: 47.5,35.5 - parent: 1 - type: Transform - - uid: 17555 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,40.5 - parent: 1 - type: Transform - - uid: 17556 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,18.5 - parent: 1 - type: Transform - - uid: 17557 - components: - - pos: -12.5,5.5 - parent: 1 - type: Transform - - uid: 17558 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,11.5 - parent: 1 - type: Transform - - uid: 17559 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,14.5 - parent: 1 - type: Transform - - uid: 17560 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,31.5 - parent: 1 - type: Transform - - uid: 17561 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,37.5 - parent: 1 - type: Transform - - uid: 17562 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,69.5 - parent: 1 - type: Transform - - uid: 17563 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,54.5 - parent: 1 - type: Transform - - uid: 17564 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,2.5 - parent: 1 - type: Transform - - uid: 17565 - components: - - pos: 27.5,7.5 - parent: 1 - type: Transform - - uid: 17603 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,43.5 - parent: 1 - type: Transform -- proto: IntercomEngineering - entities: - - uid: 17567 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-14.5 - parent: 1 - type: Transform - - uid: 17568 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-21.5 - parent: 1 - type: Transform - - uid: 17570 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-34.5 - parent: 1 - type: Transform - - uid: 17571 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-37.5 - parent: 1 - type: Transform - - uid: 17572 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-14.5 - parent: 1 - type: Transform - - uid: 17573 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-46.5 - parent: 1 - type: Transform - - uid: 17578 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-19.5 - parent: 1 - type: Transform -- proto: IntercomMedical - entities: - - uid: 17594 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,20.5 - parent: 1 - type: Transform - - uid: 17595 - components: - - pos: 13.5,21.5 - parent: 1 - type: Transform - - uid: 17596 - components: - - rot: 3.141592653589793 rad - pos: 6.5,21.5 - parent: 1 - type: Transform - - uid: 17597 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,27.5 - parent: 1 - type: Transform - - uid: 17599 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,27.5 - parent: 1 - type: Transform -- proto: IntercomScience - entities: - - uid: 17588 - components: - - pos: -14.5,21.5 - parent: 1 - type: Transform - - uid: 17589 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,35.5 - parent: 1 - type: Transform - - uid: 17591 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,20.5 - parent: 1 - type: Transform - - uid: 17592 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,33.5 - parent: 1 - type: Transform -- proto: IntercomSecurity - entities: - - uid: 272 - components: - - pos: -33.5,-0.5 - parent: 1 - type: Transform - - uid: 17566 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-10.5 - parent: 1 - type: Transform - - uid: 17601 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,41.5 - parent: 1 - type: Transform - - uid: 17602 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,49.5 - parent: 1 - type: Transform - - uid: 17604 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,45.5 - parent: 1 - type: Transform - - uid: 17605 - components: - - pos: -4.5,55.5 - parent: 1 - type: Transform - - uid: 17606 - components: - - rot: 3.141592653589793 rad - pos: -10.5,51.5 - parent: 1 - type: Transform - - uid: 17608 - components: - - rot: 3.141592653589793 rad - pos: -5.5,58.5 - parent: 1 - type: Transform - - uid: 17609 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,41.5 - parent: 1 - type: Transform -- proto: IntercomService - entities: - - uid: 17574 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,3.5 - parent: 1 - type: Transform - - uid: 17575 - components: - - pos: -7.5,9.5 - parent: 1 - type: Transform - - uid: 17576 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,10.5 - parent: 1 - type: Transform - - uid: 17577 - components: - - pos: -25.5,4.5 - parent: 1 - type: Transform - - uid: 17600 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,46.5 - parent: 1 - type: Transform -- proto: IntercomSupply - entities: - - uid: 17579 - components: - - pos: -36.5,8.5 - parent: 1 - type: Transform - - uid: 17580 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,11.5 - parent: 1 - type: Transform - - uid: 17581 - components: - - rot: 3.141592653589793 rad - pos: -42.5,-3.5 - parent: 1 - type: Transform - - uid: 17583 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,22.5 - parent: 1 - type: Transform -- proto: JanitorialTrolley - entities: - - uid: 4018 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-4.5 - parent: 1 - type: Transform -- proto: JetpackMini - entities: - - uid: 4366 - components: - - pos: 25.382265,31.514528 - parent: 1 - type: Transform - - uid: 4368 - components: - - pos: 25.476015,31.717653 - parent: 1 - type: Transform - - uid: 7829 - components: - - pos: -41.32702,21.77888 - parent: 1 - type: Transform - - uid: 7931 - components: - - pos: -41.62712,21.537056 - parent: 1 - type: Transform -- proto: KitchenMicrowave - entities: - - uid: 4327 - components: - - pos: -34.5,49.5 - parent: 1 - type: Transform - - uid: 4390 - components: - - pos: 7.5,-2.5 - parent: 1 - type: Transform - - uid: 9051 - components: - - pos: 5.5,2.5 - parent: 1 - type: Transform - - uid: 9141 - components: - - pos: 10.5,-32.5 - parent: 1 - type: Transform -- proto: KitchenReagentGrinder - entities: - - uid: 4048 - components: - - pos: 2.5,24.5 - parent: 1 - type: Transform - - uid: 4328 - components: - - pos: -32.5,49.5 - parent: 1 - type: Transform - - uid: 9365 - components: - - pos: 8.5,1.5 - parent: 1 - type: Transform - - uid: 18449 - components: - - pos: 9.5,-2.5 - parent: 1 - type: Transform -- proto: KitchenSpike - entities: - - uid: 6632 - components: - - pos: 12.5,3.5 - parent: 1 - type: Transform -- proto: KnifePlastic - entities: - - uid: 555 - components: - - pos: 3.662112,0.58738536 - parent: 1 - type: Transform - - uid: 4077 - components: - - pos: 3.662112,0.58738536 - parent: 1 - type: Transform - - uid: 8272 - components: - - pos: -33.199226,49.54123 - parent: 1 - type: Transform - - uid: 8373 - components: - - pos: 32.924263,49.596226 - parent: 1 - type: Transform - - uid: 8423 - components: - - pos: 3.662112,0.58738536 - parent: 1 - type: Transform -- proto: Lamp - entities: - - uid: 6849 - components: - - pos: 42.492897,51.04298 - parent: 1 - type: Transform - - uid: 10940 - components: - - pos: 34.508152,-21.140514 - parent: 1 - type: Transform -- proto: LampGold - entities: - - uid: 7034 - components: - - rot: -1.5707963267948966 rad - pos: -26.522398,7.8231235 - parent: 1 - type: Transform - - uid: 7144 - components: - - rot: 1.5707963267948966 rad - pos: -24.163023,7.5262485 - parent: 1 - type: Transform - - uid: 7288 - components: - - pos: 2.465765,62.00024 - parent: 1 - type: Transform - - uid: 8231 - components: - - pos: -12.7610655,56.80089 - parent: 1 - type: Transform - - uid: 9262 - components: - - pos: 23.380928,11.849496 - parent: 1 - type: Transform - - uid: 9340 - components: - - pos: -43.595627,7.955193 - parent: 1 - type: Transform -- proto: Lantern - entities: - - uid: 18420 - components: - - pos: -29.358017,56.723278 - parent: 1 - type: Transform -- proto: LauncherCreamPie - entities: - - uid: 6610 - components: - - pos: -15.972822,-0.42690194 - parent: 1 - type: Transform -- proto: LockerAtmosphericsFilled - entities: - - uid: 7094 - components: - - pos: -14.5,-17.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 7095 - components: - - pos: -13.5,-17.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerBoozeFilled - entities: - - uid: 4042 - components: - - pos: -6.5,10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 18352 - components: - - pos: -18.5,-34.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerBotanistFilled - entities: - - uid: 4232 - components: - - pos: 14.5,11.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 4233 - components: - - pos: 15.5,11.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerCaptainFilledHardsuit - entities: - - uid: 4068 - components: - - pos: -6.5,74.5 - parent: 1 - type: Transform -- proto: LockerChemistryFilled - entities: - - uid: 6927 - components: - - pos: 3.5,25.5 - parent: 1 - type: Transform - - uid: 6928 - components: - - pos: 4.5,25.5 - parent: 1 - type: Transform -- proto: LockerChiefEngineerFilled - entities: - - uid: 9111 - components: - - pos: 6.5,-23.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerChiefMedicalOfficerFilled - entities: - - uid: 4424 - components: - - pos: 16.5,34.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerDetectiveFilled - entities: - - uid: 6846 - components: - - pos: 42.5,46.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerEngineerFilled - entities: - - uid: 4179 - components: - - pos: 4.5,-17.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 4180 - components: - - pos: 5.5,-17.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 4181 - components: - - pos: 6.5,-17.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerEvidence - entities: - - uid: 3589 - components: - - pos: 26.5,-11.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 3590 - components: - - pos: 26.5,-12.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 4347 - components: - - pos: 41.5,44.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 4348 - components: - - pos: 42.5,44.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 4351 - components: - - pos: -5.5,44.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 4352 - components: - - pos: -8.5,44.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 4353 - components: - - pos: -11.5,44.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 4354 - components: - - pos: -14.5,44.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 8139 - components: - - pos: -5.284855,57.41589 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 9391 - components: - - pos: -36.5,-0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 9392 - components: - - pos: -35.5,-0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerFreezer - entities: - - uid: 6633 - components: - - pos: 10.5,3.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 234.99968 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 9050 - components: - - pos: 5.5,0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 9844 - components: - - pos: -32.5,-11.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 234.99968 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 9845 - - 9846 - - 9847 - - 9848 - - 9849 - - 9850 - - 9851 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerHeadOfPersonnelFilled - entities: - - uid: 9286 - components: - - pos: 26.5,11.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerHeadOfSecurityFilled - entities: - - uid: 4463 - components: - - pos: -16.5,60.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerMedicalFilled - entities: - - uid: 8511 - components: - - pos: 12.5,25.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 8512 - components: - - pos: 12.5,26.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerMedicineFilled - entities: - - uid: 5669 - components: - - pos: 3.5,29.5 - parent: 1 - type: Transform - - uid: 8997 - components: - - pos: 3.5,32.5 - parent: 1 - type: Transform -- proto: LockerParamedicFilled - entities: - - uid: 7648 - components: - - pos: 12.5,27.5 - parent: 1 - type: Transform -- proto: LockerQuarterMasterFilled - entities: - - uid: 9342 - components: - - pos: -43.5,9.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 2.0214376 - - 7.6044564 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 4070 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerResearchDirectorFilled - entities: - - uid: 3560 - components: - - pos: -25.5,22.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerSalvageSpecialistFilled - entities: - - uid: 239 - components: - - pos: -37.5,30.5 - parent: 1 - type: Transform - - uid: 7825 - components: - - pos: -38.5,30.5 - parent: 1 - type: Transform -- proto: LockerScienceFilled - entities: - - uid: 1068 - components: - - pos: -13.5,23.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 1070 - components: - - pos: -13.5,22.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 1071 - components: - - pos: -19.5,23.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerSecurityFilled - entities: - - uid: 8172 - components: - - pos: -18.5,42.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 8173 - components: - - pos: -15.5,42.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 8174 - components: - - pos: -16.5,42.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerWardenFilled - entities: - - uid: 7394 - components: - - pos: -13.5,50.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerWeldingSuppliesFilled - entities: - - uid: 9027 - components: - - pos: 9.5,-36.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13184 - components: - - pos: -24.5,-3.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13327 - components: - - pos: -21.5,1.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13373 - components: - - pos: -28.5,22.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 14008 - components: - - pos: 16.5,60.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: Machete - entities: - - uid: 9863 - components: - - pos: -38.31503,-16.537683 - parent: 1 - type: Transform -- proto: MachineAnomalyGenerator - entities: - - uid: 4578 - components: - - pos: -16.5,21.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound -- proto: MachineAnomalyVessel - entities: - - uid: 5534 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,18.5 - parent: 1 - type: Transform - - uid: 5535 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,17.5 - parent: 1 - type: Transform -- proto: MachineAPE - entities: - - uid: 6366 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,20.5 - parent: 1 - type: Transform - - uid: 6367 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,19.5 - parent: 1 - type: Transform -- proto: MachineArtifactAnalyzer - entities: - - uid: 3537 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,29.5 - parent: 1 - type: Transform -- proto: MachineFrame - entities: - - uid: 13450 - components: - - pos: -47.5,46.5 - parent: 1 - type: Transform -- proto: MachineFrameDestroyed - entities: - - uid: 13438 - components: - - pos: -25.5,56.5 - parent: 1 - type: Transform - - uid: 13474 - components: - - pos: -16.5,64.5 - parent: 1 - type: Transform -- proto: MachineParticleAcceleratorEmitterForeCircuitboard - entities: - - uid: 18338 - components: - - pos: 18.069408,-21.38702 - parent: 1 - type: Transform -- proto: MachineParticleAcceleratorEmitterPortCircuitboard - entities: - - uid: 18332 - components: - - pos: 18.552168,-21.543123 - parent: 1 - type: Transform -- proto: MachineParticleAcceleratorEmitterStarboardCircuitboard - entities: - - uid: 18331 - components: - - pos: 18.41018,-21.741798 - parent: 1 - type: Transform -- proto: MachineParticleAcceleratorEndCapCircuitboard - entities: - - uid: 18337 - components: - - pos: 17.998415,-21.571505 - parent: 1 - type: Transform -- proto: MachineParticleAcceleratorPowerBoxCircuitboard - entities: - - uid: 18339 - components: - - pos: 18.140402,-21.174154 - parent: 1 - type: Transform -- proto: MagazineBoxMagnumRubber - entities: - - uid: 7691 - components: - - flags: InContainer - type: MetaData - - parent: 7683 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: MagazineBoxPistolRubber - entities: - - uid: 7689 - components: - - flags: InContainer - type: MetaData - - parent: 7683 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: MagazineBoxRifleRubber - entities: - - uid: 7688 - components: - - flags: InContainer - type: MetaData - - parent: 7683 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: MagazinePistolSubMachineGunTopMounted - entities: - - uid: 6824 - components: - - pos: -16.587696,59.206833 - parent: 1 - type: Transform - - uid: 6825 - components: - - pos: -16.388914,59.03654 - parent: 1 - type: Transform -- proto: MaintenanceFluffSpawner - entities: - - uid: 7444 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-23.5 - parent: 1 - type: Transform - - uid: 8461 - components: - - pos: 11.5,70.5 - parent: 1 - type: Transform - - uid: 9937 - components: - - pos: -22.5,-30.5 - parent: 1 - type: Transform - - uid: 9942 - components: - - pos: -47.5,-6.5 - parent: 1 - type: Transform - - uid: 9943 - components: - - pos: -39.5,-12.5 - parent: 1 - type: Transform - - uid: 9974 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-23.5 - parent: 1 - type: Transform - - uid: 10072 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-17.5 - parent: 1 - type: Transform - - uid: 10952 - components: - - pos: 31.5,-19.5 - parent: 1 - type: Transform - - uid: 11058 - components: - - pos: 17.5,0.5 - parent: 1 - type: Transform - - uid: 13342 - components: - - pos: -27.5,3.5 - parent: 1 - type: Transform - - uid: 13361 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,33.5 - parent: 1 - type: Transform - - uid: 13392 - components: - - pos: -24.5,31.5 - parent: 1 - type: Transform - - uid: 13405 - components: - - pos: -23.5,42.5 - parent: 1 - type: Transform - - uid: 13435 - components: - - pos: -22.5,58.5 - parent: 1 - type: Transform - - uid: 13480 - components: - - pos: -24.5,58.5 - parent: 1 - type: Transform - - uid: 13481 - components: - - pos: -44.5,47.5 - parent: 1 - type: Transform - - uid: 13487 - components: - - pos: -18.5,64.5 - parent: 1 - type: Transform - - uid: 14057 - components: - - pos: 25.5,26.5 - parent: 1 - type: Transform - - uid: 14061 - components: - - pos: 28.5,58.5 - parent: 1 - type: Transform - - uid: 14062 - components: - - pos: 19.5,50.5 - parent: 1 - type: Transform - - uid: 14069 - components: - - pos: 17.5,64.5 - parent: 1 - type: Transform - - uid: 17704 - components: - - pos: -30.5,6.5 - parent: 1 - type: Transform - - uid: 17705 - components: - - pos: -32.5,30.5 - parent: 1 - type: Transform - - uid: 17706 - components: - - pos: -45.5,38.5 - parent: 1 - type: Transform - - uid: 17707 - components: - - pos: -6.5,36.5 - parent: 1 - type: Transform - - uid: 17708 - components: - - pos: 45.5,39.5 - parent: 1 - type: Transform - - uid: 17709 - components: - - pos: -1.5,26.5 - parent: 1 - type: Transform - - uid: 17710 - components: - - pos: 26.5,13.5 - parent: 1 - type: Transform - - uid: 17711 - components: - - pos: -1.5,-13.5 - parent: 1 - type: Transform - - uid: 17772 - components: - - pos: 32.5,23.5 - parent: 1 - type: Transform -- proto: MaintenancePlantSpawner - entities: - - uid: 8163 - components: - - pos: -27.5,53.5 - parent: 1 - type: Transform - - uid: 8164 - components: - - pos: 31.5,52.5 - parent: 1 - type: Transform - - uid: 8165 - components: - - pos: 18.5,21.5 - parent: 1 - type: Transform - - uid: 8166 - components: - - pos: -15.5,-31.5 - parent: 1 - type: Transform -- proto: MaintenanceToolSpawner - entities: - - uid: 7659 - components: - - pos: -27.5,-22.5 - parent: 1 - type: Transform - - uid: 9887 - components: - - pos: -28.5,32.5 - parent: 1 - type: Transform - - uid: 9940 - components: - - pos: -50.5,-6.5 - parent: 1 - type: Transform - - uid: 9941 - components: - - pos: -45.5,-7.5 - parent: 1 - type: Transform - - uid: 10076 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-17.5 - parent: 1 - type: Transform - - uid: 10077 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-13.5 - parent: 1 - type: Transform - - uid: 10088 - components: - - pos: -15.5,-33.5 - parent: 1 - type: Transform - - uid: 10108 - components: - - pos: -23.5,-27.5 - parent: 1 - type: Transform - - uid: 10932 - components: - - rot: 3.141592653589793 rad - pos: 28.5,-18.5 - parent: 1 - type: Transform - - uid: 10947 - components: - - pos: 26.5,-22.5 - parent: 1 - type: Transform - - uid: 10953 - components: - - pos: 29.5,-16.5 - parent: 1 - type: Transform - - uid: 11061 - components: - - pos: 15.5,2.5 - parent: 1 - type: Transform - - uid: 11068 - components: - - pos: 17.5,8.5 - parent: 1 - type: Transform - - uid: 13157 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,20.5 - parent: 1 - type: Transform - - uid: 13201 - components: - - pos: -25.5,-3.5 - parent: 1 - type: Transform - - uid: 13341 - components: - - pos: -21.5,-3.5 - parent: 1 - type: Transform - - uid: 13343 - components: - - pos: -20.5,6.5 - parent: 1 - type: Transform - - uid: 13345 - components: - - pos: -20.5,11.5 - parent: 1 - type: Transform - - uid: 13346 - components: - - pos: -18.5,10.5 - parent: 1 - type: Transform - - uid: 13362 - components: - - pos: -39.5,32.5 - parent: 1 - type: Transform - - uid: 13436 - components: - - pos: -22.5,55.5 - parent: 1 - type: Transform - - uid: 13482 - components: - - pos: -41.5,50.5 - parent: 1 - type: Transform - - uid: 13483 - components: - - pos: -25.5,51.5 - parent: 1 - type: Transform - - uid: 13484 - components: - - pos: -15.5,64.5 - parent: 1 - type: Transform - - uid: 14059 - components: - - pos: 24.5,56.5 - parent: 1 - type: Transform - - uid: 14063 - components: - - pos: 18.5,50.5 - parent: 1 - type: Transform - - uid: 14065 - components: - - pos: 10.5,48.5 - parent: 1 - type: Transform - - uid: 14066 - components: - - pos: 5.5,40.5 - parent: 1 - type: Transform - - uid: 14067 - components: - - pos: 16.5,59.5 - parent: 1 - type: Transform -- proto: MaintenanceWeaponSpawner - entities: - - uid: 8365 - components: - - pos: 38.5,43.5 - parent: 1 - type: Transform - - uid: 9939 - components: - - pos: -49.5,-6.5 - parent: 1 - type: Transform - - uid: 9975 - components: - - pos: -33.5,-24.5 - parent: 1 - type: Transform - - uid: 10073 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-17.5 - parent: 1 - type: Transform - - uid: 10949 - components: - - pos: 17.5,-33.5 - parent: 1 - type: Transform - - uid: 10950 - components: - - pos: 20.5,-30.5 - parent: 1 - type: Transform - - uid: 11062 - components: - - pos: 15.5,3.5 - parent: 1 - type: Transform - - uid: 13200 - components: - - pos: -26.5,-18.5 - parent: 1 - type: Transform - - uid: 13340 - components: - - pos: -21.5,-4.5 - parent: 1 - type: Transform - - uid: 13344 - components: - - pos: -18.5,11.5 - parent: 1 - type: Transform - - uid: 13363 - components: - - pos: -37.5,32.5 - parent: 1 - type: Transform - - uid: 13385 - components: - - pos: -17.5,27.5 - parent: 1 - type: Transform - - uid: 13391 - components: - - pos: -28.5,25.5 - parent: 1 - type: Transform - - uid: 13437 - components: - - pos: -22.5,56.5 - parent: 1 - type: Transform - - uid: 13485 - components: - - pos: -14.5,64.5 - parent: 1 - type: Transform - - uid: 13486 - components: - - pos: -12.5,62.5 - parent: 1 - type: Transform - - uid: 13488 - components: - - pos: -13.5,70.5 - parent: 1 - type: Transform - - uid: 14058 - components: - - pos: 39.5,51.5 - parent: 1 - type: Transform - - uid: 14064 - components: - - pos: 12.5,49.5 - parent: 1 - type: Transform - - uid: 14068 - components: - - pos: 16.5,64.5 - parent: 1 - type: Transform -- proto: Matchbox - entities: - - uid: 8280 - components: - - pos: -28.99285,44.33111 - parent: 1 - type: Transform - - uid: 8995 - components: - - pos: -4.367732,11.515931 - parent: 1 - type: Transform - - uid: 13404 - components: - - pos: -23.569286,43.8585 - parent: 1 - type: Transform -- proto: MatchstickSpent - entities: - - uid: 13403 - components: - - pos: -23.342106,43.347622 - parent: 1 - type: Transform -- proto: MaterialCloth - entities: - - uid: 9212 - components: - - pos: 24.961397,4.807591 - parent: 1 - type: Transform -- proto: MaterialDurathread - entities: - - uid: 9211 - components: - - pos: 24.961397,4.401341 - parent: 1 - type: Transform -- proto: MaterialReclaimer - entities: - - uid: 6769 - components: - - pos: 9.5,-26.5 - parent: 1 - type: Transform -- proto: MaterialWoodPlank - entities: - - uid: 18098 - components: - - pos: -32.693626,54.607662 - parent: 1 - type: Transform -- proto: MedicalBed - entities: - - uid: 6383 - components: - - pos: 2.5,29.5 - parent: 1 - type: Transform - - uid: 9368 - components: - - pos: 2.5,31.5 - parent: 1 - type: Transform - - uid: 9369 - components: - - pos: 2.5,34.5 - parent: 1 - type: Transform -- proto: MedicalTechFab - entities: - - uid: 6389 - components: - - pos: 8.5,26.5 - parent: 1 - type: Transform -- proto: MedkitAdvancedFilled - entities: - - uid: 8085 - components: - - pos: 6.6862106,79.9808 - parent: 1 - type: Transform - - uid: 16375 - components: - - pos: -10.381355,48.62417 - parent: 1 - type: Transform -- proto: MedkitBruteFilled - entities: - - uid: 8521 - components: - - pos: 12.53402,24.572369 - parent: 1 - type: Transform -- proto: MedkitBurnFilled - entities: - - uid: 8522 - components: - - pos: 12.548221,24.288546 - parent: 1 - type: Transform -- proto: MedkitCombatFilled - entities: - - uid: 7671 - components: - - pos: -24.283842,-32.51983 - parent: 1 - type: Transform -- proto: MedkitFilled - entities: - - uid: 8523 - components: - - pos: 12.53402,24.033106 - parent: 1 - type: Transform -- proto: MedkitOxygenFilled - entities: - - uid: 8086 - components: - - pos: 6.45903,79.668594 - parent: 1 - type: Transform - - uid: 8524 - components: - - pos: 12.548221,23.749285 - parent: 1 - type: Transform -- proto: MedkitRadiationFilled - entities: - - uid: 8525 - components: - - pos: 12.548221,23.451271 - parent: 1 - type: Transform -- proto: MedkitToxinFilled - entities: - - uid: 8526 - components: - - pos: 12.548221,23.167448 - parent: 1 - type: Transform -- proto: MicrophoneInstrument - entities: - - uid: 18256 - components: - - rot: 1.5707963267948966 rad - pos: -7.4394073,-2.5350158 - parent: 1 - type: Transform -- proto: MinimoogInstrument - entities: - - uid: 9933 - components: - - pos: -22.5,-28.5 - parent: 1 - type: Transform -- proto: Mirror - entities: - - uid: 10098 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-39.5 - parent: 1 - type: Transform - - uid: 10105 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-39.5 - parent: 1 - type: Transform - - uid: 13489 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,70.5 - parent: 1 - type: Transform -- proto: MonkeyCubeBox - entities: - - uid: 7121 - components: - - pos: -13.5745945,28.466234 - parent: 1 - type: Transform -- proto: MopBucket - entities: - - uid: 4019 - components: - - pos: 22.417683,-3.5983407 - parent: 1 - type: Transform - - uid: 17276 - components: - - pos: -23.497051,-11.512519 - parent: 1 - type: Transform - - uid: 18195 - components: - - pos: 18.47802,-5.4857326 - parent: 1 - type: Transform -- proto: MopItem - entities: - - uid: 4020 - components: - - pos: 22.389286,-3.6267226 - parent: 1 - type: Transform - - uid: 17270 - components: - - pos: -23.582245,-13.364458 - parent: 1 - type: Transform - - uid: 17271 - components: - - pos: -23.433157,-13.470892 - parent: 1 - type: Transform - - uid: 18196 - components: - - pos: 18.457188,-5.589899 - parent: 1 - type: Transform -- proto: Morgue - entities: - - uid: 6100 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,33.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 6105 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,34.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 6906 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,32.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 6908 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,33.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 7270 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,32.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 8421 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,34.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: MouseTimedSpawner - entities: - - uid: 18209 - components: - - pos: 36.5,-15.5 - parent: 1 - type: Transform -- proto: Multitool - entities: - - uid: 6595 - components: - - pos: -6.480236,24.566202 - parent: 1 - type: Transform - - uid: 8077 - components: - - pos: -3.4883027,82.77587 - parent: 1 - type: Transform - - uid: 8656 - components: - - pos: -23.455519,20.623178 - parent: 1 - type: Transform - - uid: 13446 - components: - - pos: -37.556957,54.69298 - parent: 1 - type: Transform - - uid: 14047 - components: - - pos: 38.328133,54.646866 - parent: 1 - type: Transform -- proto: NettleSeeds - entities: - - uid: 10967 - components: - - pos: 36.511932,-17.276615 - parent: 1 - type: Transform -- proto: NetworkConfigurator - entities: - - uid: 3022 - components: - - pos: 7.40583,-11.399742 - parent: 1 - type: Transform - - uid: 7432 - components: - - pos: 12.35541,-11.368492 - parent: 1 - type: Transform - - uid: 7433 - components: - - pos: -11.6948395,-19.44185 - parent: 1 - type: Transform - - uid: 7434 - components: - - pos: -13.616468,-33.96476 - parent: 1 - type: Transform - - uid: 7435 - components: - - pos: 8.562072,-32.386993 - parent: 1 - type: Transform - - uid: 7436 - components: - - pos: -9.608111,27.948849 - parent: 1 - type: Transform - - uid: 7437 - components: - - pos: -6.7244835,21.503235 - parent: 1 - type: Transform - - uid: 7438 - components: - - pos: -10.361936,34.69222 - parent: 1 - type: Transform -- proto: NitrogenCanister - entities: - - uid: 3027 - components: - - pos: 0.5,-21.5 - parent: 1 - type: Transform - - uid: 3040 - components: - - pos: -15.5,-28.5 - parent: 1 - type: Transform - - uid: 3041 - components: - - pos: -15.5,-29.5 - parent: 1 - type: Transform - - uid: 6914 - components: - - pos: 26.5,31.5 - parent: 1 - type: Transform - - uid: 10064 - components: - - pos: -32.5,-14.5 - parent: 1 - type: Transform - - uid: 10091 - components: - - pos: -17.5,-27.5 - parent: 1 - type: Transform - - uid: 10121 - components: - - pos: 32.5,-23.5 - parent: 1 - type: Transform - - uid: 11052 - components: - - pos: 21.5,-0.5 - parent: 1 - type: Transform - - uid: 13316 - components: - - pos: -28.5,-4.5 - parent: 1 - type: Transform - - uid: 13354 - components: - - pos: -35.5,32.5 - parent: 1 - type: Transform - - uid: 13378 - components: - - pos: -26.5,27.5 - parent: 1 - type: Transform - - uid: 13417 - components: - - pos: -18.5,60.5 - parent: 1 - type: Transform - - uid: 14001 - components: - - pos: 13.5,64.5 - parent: 1 - type: Transform - - uid: 14014 - components: - - pos: 8.5,40.5 - parent: 1 - type: Transform - - uid: 14036 - components: - - pos: 26.5,56.5 - parent: 1 - type: Transform -- proto: NitrousOxideCanister - entities: - - uid: 3029 - components: - - pos: 0.5,-25.5 - parent: 1 - type: Transform - - uid: 3043 - components: - - pos: -14.5,-27.5 - parent: 1 - type: Transform - - uid: 6590 - components: - - pos: -11.5,32.5 - parent: 1 - type: Transform -- proto: NitrousOxideTankFilled - entities: - - uid: 9038 - components: - - pos: 16.501478,27.555553 - parent: 1 - type: Transform -- proto: NuclearBomb - entities: - - uid: 7250 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,48.5 - parent: 1 - type: Transform -- proto: OperatingTable - entities: - - uid: 4334 - components: - - pos: -21.5,33.5 - parent: 1 - type: Transform - - uid: 8432 - components: - - pos: 19.5,27.5 - parent: 1 - type: Transform -- proto: OreProcessor - entities: - - uid: 4128 - components: - - pos: -36.5,23.5 - parent: 1 - type: Transform -- proto: OxygenCanister - entities: - - uid: 147 - components: - - pos: -40.5,21.5 - parent: 1 - type: Transform - - uid: 3026 - components: - - pos: 0.5,-19.5 - parent: 1 - type: Transform - - uid: 3038 - components: - - pos: -15.5,-26.5 - parent: 1 - type: Transform - - uid: 3039 - components: - - pos: -15.5,-27.5 - parent: 1 - type: Transform - - uid: 6912 - components: - - pos: 10.5,34.5 - parent: 1 - type: Transform - - uid: 6916 - components: - - pos: 27.5,31.5 - parent: 1 - type: Transform - - uid: 10065 - components: - - pos: -33.5,-14.5 - parent: 1 - type: Transform - - uid: 10090 - components: - - pos: -17.5,-26.5 - parent: 1 - type: Transform - - uid: 10120 - components: - - pos: 32.5,-22.5 - parent: 1 - type: Transform - - uid: 11048 - components: - - pos: 22.5,-0.5 - parent: 1 - type: Transform - - uid: 13315 - components: - - pos: -28.5,-3.5 - parent: 1 - type: Transform - - uid: 13353 - components: - - pos: -35.5,31.5 - parent: 1 - type: Transform - - uid: 13379 - components: - - pos: -25.5,27.5 - parent: 1 - type: Transform - - uid: 13418 - components: - - pos: -18.5,59.5 - parent: 1 - type: Transform - - uid: 14002 - components: - - pos: 14.5,64.5 - parent: 1 - type: Transform - - uid: 14015 - components: - - pos: 9.5,40.5 - parent: 1 - type: Transform - - uid: 14035 - components: - - pos: 27.5,56.5 - parent: 1 - type: Transform - - uid: 17654 - components: - - pos: 11.5,-41.5 - parent: 1 - type: Transform -- proto: PaintingEmpty - entities: - - uid: 18036 - components: - - rot: 3.141592653589793 rad - pos: -4.5,72.5 - parent: 1 - type: Transform -- proto: PaintingSadClown - entities: - - uid: 8185 - components: - - pos: -16.5,2.5 - parent: 1 - type: Transform -- proto: PaperBin10 - entities: - - uid: 9223 - components: - - pos: 27.5,2.5 - parent: 1 - type: Transform -- proto: PaperBin5 - entities: - - uid: 7287 - components: - - pos: 3.5,60.5 - parent: 1 - type: Transform - - uid: 8063 - components: - - pos: -0.5,80.5 - parent: 1 - type: Transform - - uid: 18178 - components: - - pos: -35.5,9.5 - parent: 1 - type: Transform -- proto: PaperCaptainsThoughts - entities: - - uid: 6809 - components: - - pos: -6.583637,72.70018 - parent: 1 - type: Transform - - uid: 8075 - components: - - pos: -6.441649,72.586655 - parent: 1 - type: Transform - - uid: 8076 - components: - - pos: -6.32806,72.44474 - parent: 1 - type: Transform -- proto: PaperOffice - entities: - - uid: 1932 - components: - - pos: 8.646071,57.523205 - parent: 1 - type: Transform - - uid: 1933 - components: - - pos: 8.354404,57.689873 - parent: 1 - type: Transform - - uid: 3189 - components: - - pos: 42.97566,50.574673 - parent: 1 - type: Transform - - uid: 6848 - components: - - pos: 43.131844,50.759155 - parent: 1 - type: Transform - - uid: 7031 - components: - - pos: -25.565134,3.6301482 - parent: 1 - type: Transform - - uid: 7032 - components: - - pos: -25.309555,3.6869118 - parent: 1 - type: Transform - - uid: 7033 - components: - - pos: -25.36635,3.4598548 - parent: 1 - type: Transform - - uid: 8109 - components: - - pos: 5.1594477,71.75358 - parent: 1 - type: Transform - - uid: 8110 - components: - - pos: 5.528614,71.32784 - parent: 1 - type: Transform - - uid: 8111 - components: - - pos: 6.4941316,73.59842 - parent: 1 - type: Transform - - uid: 8112 - components: - - pos: 4.4211106,72.406364 - parent: 1 - type: Transform - - uid: 8113 - components: - - pos: 5.6422024,63.981495 - parent: 1 - type: Transform - - uid: 8114 - components: - - pos: 5.30143,63.58415 - parent: 1 - type: Transform - - uid: 8234 - components: - - pos: -19.304815,52.96929 - parent: 1 - type: Transform - - uid: 8235 - components: - - pos: -19.333212,52.51518 - parent: 1 - type: Transform - - uid: 8236 - components: - - pos: -12.631387,56.034573 - parent: 1 - type: Transform - - uid: 8237 - components: - - pos: -12.489398,55.438545 - parent: 1 - type: Transform - - uid: 8285 - components: - - pos: -28.742027,44.07567 - parent: 1 - type: Transform - - uid: 8286 - components: - - pos: -28.869816,43.97633 - parent: 1 - type: Transform - - uid: 8287 - components: - - pos: -29.0544,44.104053 - parent: 1 - type: Transform - - uid: 8474 - components: - - pos: 20.335289,40.984818 - parent: 1 - type: Transform - - uid: 8475 - components: - - pos: 20.56247,40.857098 - parent: 1 - type: Transform - - uid: 8476 - components: - - pos: 20.732855,40.89967 - parent: 1 - type: Transform - - uid: 8494 - components: - - pos: 15.377507,32.661785 - parent: 1 - type: Transform - - uid: 8495 - components: - - pos: 15.56209,32.61921 - parent: 1 - type: Transform - - uid: 8563 - components: - - pos: 12.328677,19.682583 - parent: 1 - type: Transform - - uid: 8564 - components: - - pos: 12.513262,19.512291 - parent: 1 - type: Transform - - uid: 9108 - components: - - pos: 5.647646,-25.362396 - parent: 1 - type: Transform - - uid: 9109 - components: - - pos: 5.376813,-25.591562 - parent: 1 - type: Transform - - uid: 9180 - components: - - pos: 13.647936,-12.608375 - parent: 1 - type: Transform - - uid: 9181 - components: - - pos: 13.41877,-12.212542 - parent: 1 - type: Transform - - uid: 9220 - components: - - pos: 25.298811,4.502818 - parent: 1 - type: Transform - - uid: 9221 - components: - - pos: 25.423811,4.7111516 - parent: 1 - type: Transform - - uid: 9512 - components: - - pos: 13.562738,57.689873 - parent: 1 - type: Transform - - uid: 9705 - components: - - pos: -35.3369,12.601174 - parent: 1 - type: Transform - - uid: 9706 - components: - - pos: -35.4619,12.476174 - parent: 1 - type: Transform - - uid: 9917 - components: - - rot: -1.5707963267948966 rad - pos: -19.778204,-37.45873 - parent: 1 - type: Transform - - uid: 9918 - components: - - rot: -1.5707963267948966 rad - pos: -19.735607,-36.394398 - parent: 1 - type: Transform - - uid: 9919 - components: - - rot: 1.5707963267948966 rad - pos: -19.281246,-36.53631 - parent: 1 - type: Transform - - uid: 9920 - components: - - rot: 1.5707963267948966 rad - pos: -19.267048,-37.1891 - parent: 1 - type: Transform -- proto: ParchisBoard - entities: - - uid: 14026 - components: - - rot: -1.5707963267948966 rad - pos: 27.411753,58.600853 - parent: 1 - type: Transform -- proto: ParticleAcceleratorComputerCircuitboard - entities: - - uid: 4209 - components: - - pos: 18.63736,-21.27349 - parent: 1 - type: Transform -- proto: PartRodMetal - entities: - - uid: 7823 - components: - - pos: -42.102123,21.612055 - parent: 1 - type: Transform - - uid: 9123 - components: - - pos: 13.554044,-21.633276 - parent: 1 - type: Transform - - uid: 9231 - components: - - pos: -25.391773,-12.691285 - parent: 1 - type: Transform -- proto: Pen - entities: - - uid: 8108 - components: - - pos: 5.926182,71.5549 - parent: 1 - type: Transform - - uid: 8248 - components: - - pos: -13.293542,47.371918 - parent: 1 - type: Transform - - uid: 9225 - components: - - pos: 27.715477,2.7528179 - parent: 1 - type: Transform - - uid: 9927 - components: - - rot: -1.5707963267948966 rad - pos: -19.749805,-37.45873 - parent: 1 - type: Transform - - uid: 9928 - components: - - rot: 3.141592653589793 rad - pos: -19.70721,-36.42278 - parent: 1 - type: Transform - - uid: 9929 - components: - - rot: 1.5707963267948966 rad - pos: -19.323843,-36.607265 - parent: 1 - type: Transform - - uid: 9930 - components: - - pos: -19.210253,-37.174908 - parent: 1 - type: Transform -- proto: PenCap - entities: - - uid: 6805 - components: - - pos: -6.5470595,72.51975 - parent: 1 - type: Transform -- proto: PenHop - entities: - - uid: 9273 - components: - - pos: 24.527164,11.786996 - parent: 1 - type: Transform -- proto: PersonalAI - entities: - - uid: 13383 - components: - - flags: SessionSpecific - type: MetaData - - pos: -18.292332,28.360415 - parent: 1 - type: Transform - - uid: 18484 - components: - - flags: SessionSpecific - type: MetaData - - pos: 11.303054,42.624207 - parent: 1 - type: Transform - - uid: 18485 - components: - - flags: SessionSpecific - type: MetaData - - pos: 21.527178,41.51094 - parent: 1 - type: Transform - - uid: 18487 - components: - - flags: SessionSpecific - type: MetaData - - pos: -25.31035,3.6511037 - parent: 1 - type: Transform - - uid: 18488 - components: - - flags: SessionSpecific - type: MetaData - - pos: -3.5730453,83.05458 - parent: 1 - type: Transform -- proto: PhoneInstrument - entities: - - uid: 8098 - components: - - pos: 5.4434214,72.491516 - parent: 1 - type: Transform -- proto: PineappleSeeds - entities: - - uid: 8278 - components: - - pos: -29.408152,44.30471 - parent: 1 - type: Transform - - uid: 9010 - components: - - pos: 5.4492836,6.4890785 - parent: 1 - type: Transform -- proto: PinpointerNuclear - entities: - - uid: 7256 - components: - - pos: 4.3469753,48.675224 - parent: 1 - type: Transform -- proto: PlantBag - entities: - - uid: 9007 - components: - - pos: 5.4701166,7.468245 - parent: 1 - type: Transform -- proto: PlaqueAtmos - entities: - - uid: 17897 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-10.5 - parent: 1 - type: Transform -- proto: PlasmaCanister - entities: - - uid: 3025 - components: - - pos: 0.5,-27.5 - parent: 1 - type: Transform - - uid: 3042 - components: - - pos: -14.5,-26.5 - parent: 1 - type: Transform - - uid: 6591 - components: - - pos: -11.5,31.5 - parent: 1 - type: Transform -- proto: PlasmaReinforcedWindowDirectional - entities: - - uid: 4363 - components: - - rot: 3.141592653589793 rad - pos: -4.5,61.5 - parent: 1 - type: Transform - - uid: 4364 - components: - - rot: 3.141592653589793 rad - pos: -5.5,61.5 - parent: 1 - type: Transform -- proto: PlasmaTankFilled - entities: - - uid: 8745 - components: - - pos: -12.675064,-41.406155 - parent: 1 - type: Transform -- proto: PlasticFlapsAirtightClear - entities: - - uid: 459 - components: - - pos: -44.5,1.5 - parent: 1 - type: Transform - - uid: 460 - components: - - pos: -41.5,1.5 - parent: 1 - type: Transform - - uid: 461 - components: - - pos: -44.5,5.5 - parent: 1 - type: Transform - - uid: 462 - components: - - pos: -41.5,5.5 - parent: 1 - type: Transform - - uid: 463 - components: - - pos: -36.5,5.5 - parent: 1 - type: Transform - - uid: 3113 - components: - - pos: 19.5,-38.5 - parent: 1 - type: Transform - - uid: 4114 - components: - - pos: -43.5,22.5 - parent: 1 - type: Transform - - uid: 7819 - components: - - pos: -43.5,24.5 - parent: 1 - type: Transform -- proto: PlushieAtmosian - entities: - - uid: 8478 - components: - - pos: -13.428453,-23.76954 - parent: 1 - type: Transform -- proto: PlushieBee - entities: - - uid: 17722 - components: - - pos: 9.581463,59.56483 - parent: 1 - type: Transform -- proto: PlushieLamp - entities: - - uid: 17725 - components: - - pos: -51.39804,40.513123 - parent: 1 - type: Transform -- proto: PlushieLizard - entities: - - uid: 13425 - components: - - pos: -23.497978,60.479168 - parent: 1 - type: Transform - - uid: 17726 - components: - - pos: -18.010359,27.487123 - parent: 1 - type: Transform -- proto: PlushieNar - entities: - - uid: 17727 - components: - - pos: 26.419394,52.54221 - parent: 1 - type: Transform -- proto: PlushieNuke - entities: - - uid: 17728 - components: - - pos: 5.0785303,45.68808 - parent: 1 - type: Transform -- proto: PlushieRatvar - entities: - - uid: 17730 - components: - - pos: -16.502522,-42.49368 - parent: 1 - type: Transform -- proto: PlushieRGBee - entities: - - uid: 11077 - components: - - pos: 20.39902,10.361386 - parent: 1 - type: Transform -- proto: PlushieSharkBlue - entities: - - uid: 17723 - components: - - pos: 21.557299,40.40908 - parent: 1 - type: Transform -- proto: PlushieSharkGrey - entities: - - uid: 17724 - components: - - pos: 24.59281,-5.6428246 - parent: 1 - type: Transform -- proto: PlushieSharkPink - entities: - - uid: 8398 - components: - - pos: 18.47223,47.259647 - parent: 1 - type: Transform - - uid: 17729 - components: - - pos: 24.515884,22.427027 - parent: 1 - type: Transform -- proto: PlushieSlime - entities: - - uid: 17731 - components: - - pos: -30.556288,7.2912984 - parent: 1 - type: Transform -- proto: PlushieSpaceLizard - entities: - - uid: 17732 - components: - - pos: -0.54218626,85.39831 - parent: 1 - type: Transform -- proto: PlushieVox - entities: - - uid: 14042 - components: - - pos: 39.577625,52.527256 - parent: 1 - type: Transform - - uid: 17733 - components: - - pos: -44.60638,-11.570459 - parent: 1 - type: Transform -- proto: PortableFlasher - entities: - - uid: 4382 - components: - - pos: -7.5,62.5 - parent: 1 - type: Transform -- proto: PortableScrubber - entities: - - uid: 4393 - components: - - pos: -9.5,25.5 - parent: 1 - type: Transform - - uid: 8731 - components: - - pos: -14.5,-15.5 - parent: 1 - type: Transform - - uid: 8732 - components: - - pos: -14.5,-14.5 - parent: 1 - type: Transform - - uid: 8737 - components: - - pos: -13.5,-21.5 - parent: 1 - type: Transform -- proto: PosterBroken - entities: - - uid: 18000 - components: - - rot: 3.141592653589793 rad - pos: -13.5,5.5 - parent: 1 - type: Transform -- proto: PosterContrabandAmbrosiaVulgaris - entities: - - uid: 17926 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,8.5 - parent: 1 - type: Transform -- proto: PosterContrabandAtmosiaDeclarationIndependence - entities: - - uid: 17898 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-40.5 - parent: 1 - type: Transform -- proto: PosterContrabandBountyHunters - entities: - - uid: 17900 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,45.5 - parent: 1 - type: Transform -- proto: PosterContrabandClown - entities: - - uid: 17920 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-0.5 - parent: 1 - type: Transform -- proto: PosterContrabandDonutCorp - entities: - - uid: 17902 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-4.5 - parent: 1 - type: Transform -- proto: PosterContrabandEAT - entities: - - uid: 17927 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-6.5 - parent: 1 - type: Transform -- proto: PosterContrabandEnergySwords - entities: - - uid: 17921 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-1.5 - parent: 1 - type: Transform -- proto: PosterContrabandFreeDrone - entities: - - uid: 9563 - components: - - pos: -20.5,-11.5 - parent: 1 - type: Transform -- proto: PosterContrabandFunPolice - entities: - - uid: 17990 - components: - - rot: 3.141592653589793 rad - pos: -17.5,39.5 - parent: 1 - type: Transform -- proto: PosterContrabandGreyTide - entities: - - uid: 17904 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,33.5 - parent: 1 - type: Transform - - uid: 18005 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-24.5 - parent: 1 - type: Transform -- proto: PosterContrabandHackingGuide - entities: - - uid: 17903 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,30.5 - parent: 1 - type: Transform -- proto: PosterContrabandHighEffectEngineering - entities: - - uid: 18115 - components: - - pos: 8.5,-16.5 - parent: 1 - type: Transform -- proto: PosterContrabandMissingGloves - entities: - - uid: 17906 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-22.5 - parent: 1 - type: Transform - - uid: 18006 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-24.5 - parent: 1 - type: Transform -- proto: PosterContrabandNuclearDeviceInformational - entities: - - uid: 17917 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,47.5 - parent: 1 - type: Transform -- proto: PosterContrabandVoteWeh - entities: - - uid: 17915 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,24.5 - parent: 1 - type: Transform -- proto: PosterContrabandWehWatches - entities: - - uid: 17916 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,20.5 - parent: 1 - type: Transform -- proto: PosterLegit12Gauge - entities: - - uid: 17924 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,65.5 - parent: 1 - type: Transform -- proto: PosterLegit50thAnniversaryVintageReprint - entities: - - uid: 18089 - components: - - pos: -4.5,33.5 - parent: 1 - type: Transform -- proto: PosterLegitAnatomyPoster - entities: - - uid: 9619 - components: - - pos: 1.5,34.5 - parent: 1 - type: Transform -- proto: PosterLegitBuild - entities: - - uid: 17899 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-32.5 - parent: 1 - type: Transform -- proto: PosterLegitCleanliness - entities: - - uid: 17923 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-6.5 - parent: 1 - type: Transform -- proto: PosterLegitDickGumshue - entities: - - uid: 17901 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,50.5 - parent: 1 - type: Transform -- proto: PosterLegitEnlist - entities: - - uid: 17925 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,63.5 - parent: 1 - type: Transform -- proto: PosterLegitFoamForceAd - entities: - - uid: 17922 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-4.5 - parent: 1 - type: Transform -- proto: PosterLegitHighClassMartini - entities: - - uid: 17919 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,9.5 - parent: 1 - type: Transform -- proto: PosterLegitJustAWeekAway - entities: - - uid: 17905 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-0.5 - parent: 1 - type: Transform -- proto: PosterLegitLoveIan - entities: - - uid: 17918 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,8.5 - parent: 1 - type: Transform -- proto: PosterLegitMime - entities: - - uid: 8169 - components: - - pos: -14.5,5.5 - parent: 1 - type: Transform -- proto: PosterLegitNanotrasenLogo - entities: - - uid: 17907 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,62.5 - parent: 1 - type: Transform - - uid: 17908 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,62.5 - parent: 1 - type: Transform - - uid: 17909 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,78.5 - parent: 1 - type: Transform - - uid: 17910 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,78.5 - parent: 1 - type: Transform -- proto: PosterLegitPDAAd - entities: - - uid: 17911 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,2.5 - parent: 1 - type: Transform -- proto: PosterLegitPeriodicTable - entities: - - uid: 9616 - components: - - pos: 4.5,26.5 - parent: 1 - type: Transform -- proto: PosterLegitSafetyEyeProtection - entities: - - uid: 17912 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-22.5 - parent: 1 - type: Transform -- proto: PosterLegitSafetyInternals - entities: - - uid: 17913 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-37.5 - parent: 1 - type: Transform -- proto: PosterLegitSafetyMothEpi - entities: - - uid: 9618 - components: - - pos: 1.5,31.5 - parent: 1 - type: Transform -- proto: PosterLegitSafetyMothMeth - entities: - - uid: 9617 - components: - - pos: 8.5,25.5 - parent: 1 - type: Transform -- proto: PosterLegitStateLaws - entities: - - uid: 18004 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-13.5 - parent: 1 - type: Transform -- proto: PosterLegitUeNo - entities: - - uid: 17914 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,29.5 - parent: 1 - type: Transform -- proto: PottedPlantRandom - entities: - - uid: 466 - components: - - pos: -49.5,35.5 - parent: 1 - type: Transform - - uid: 1284 - components: - - pos: -47.5,16.5 - parent: 1 - type: Transform - - uid: 4250 - components: - - pos: -30.5,8.5 - parent: 1 - type: Transform - - uid: 6950 - components: - - pos: 21.5,17.5 - parent: 1 - type: Transform - - uid: 8565 - components: - - pos: 9.5,17.5 - parent: 1 - type: Transform - - uid: 8566 - components: - - pos: 13.5,17.5 - parent: 1 - type: Transform - - uid: 8584 - components: - - pos: 14.5,20.5 - parent: 1 - type: Transform - - uid: 9474 - components: - - pos: 46.5,-6.5 - parent: 1 - type: Transform - - uid: 9475 - components: - - pos: 29.5,-0.5 - parent: 1 - type: Transform - - uid: 9476 - components: - - pos: 33.5,-1.5 - parent: 1 - type: Transform - - uid: 9477 - components: - - pos: 46.5,12.5 - parent: 1 - type: Transform - - uid: 9478 - components: - - pos: 48.5,41.5 - parent: 1 - type: Transform - - uid: 9479 - components: - - pos: 45.5,40.5 - parent: 1 - type: Transform - - uid: 9480 - components: - - pos: -42.5,43.5 - parent: 1 - type: Transform - - uid: 9481 - components: - - pos: 9.5,-11.5 - parent: 1 - type: Transform - - uid: 9482 - components: - - pos: -14.5,-13.5 - parent: 1 - type: Transform - - uid: 9483 - components: - - pos: -4.5,9.5 - parent: 1 - type: Transform - - uid: 9485 - components: - - pos: -13.5,3.5 - parent: 1 - type: Transform - - uid: 9495 - components: - - pos: -3.5,46.5 - parent: 1 - type: Transform - - uid: 9496 - components: - - pos: -10.5,52.5 - parent: 1 - type: Transform - - uid: 9497 - components: - - pos: -16.5,47.5 - parent: 1 - type: Transform - - uid: 9498 - components: - - pos: -16.5,51.5 - parent: 1 - type: Transform - - uid: 9499 - components: - - pos: -16.5,56.5 - parent: 1 - type: Transform - - uid: 9500 - components: - - pos: -9.5,60.5 - parent: 1 - type: Transform - - uid: 9501 - components: - - pos: -7.5,78.5 - parent: 1 - type: Transform - - uid: 9502 - components: - - pos: 7.5,70.5 - parent: 1 - type: Transform - - uid: 9503 - components: - - pos: 10.5,66.5 - parent: 1 - type: Transform - - uid: 9535 - components: - - pos: 29.5,9.5 - parent: 1 - type: Transform - - uid: 9543 - components: - - pos: -47.5,38.5 - parent: 1 - type: Transform - - uid: 9711 - components: - - pos: 7.5,38.5 - parent: 1 - type: Transform - - uid: 9713 - components: - - pos: 39.5,36.5 - parent: 1 - type: Transform - - uid: 9714 - components: - - pos: -3.5,19.5 - parent: 1 - type: Transform - - uid: 9715 - components: - - pos: 2.5,19.5 - parent: 1 - type: Transform - - uid: 9716 - components: - - pos: 39.5,-7.5 - parent: 1 - type: Transform - - uid: 9879 - components: - - pos: 32.5,30.5 - parent: 1 - type: Transform - - uid: 9880 - components: - - pos: 32.5,21.5 - parent: 1 - type: Transform - - uid: 9881 - components: - - pos: 23.5,13.5 - parent: 1 - type: Transform - - uid: 9882 - components: - - pos: -40.5,15.5 - parent: 1 - type: Transform - - uid: 9883 - components: - - pos: -38.5,9.5 - parent: 1 - type: Transform - - uid: 9889 - components: - - pos: -19.5,15.5 - parent: 1 - type: Transform - - uid: 9890 - components: - - pos: 13.5,15.5 - parent: 1 - type: Transform - - uid: 16406 - components: - - pos: 1.5,-13.5 - parent: 1 - type: Transform - - uid: 16408 - components: - - pos: -2.5,-13.5 - parent: 1 - type: Transform - - uid: 16653 - components: - - pos: -32.5,27.5 - parent: 1 - type: Transform - - uid: 17301 - components: - - pos: -1.5,24.5 - parent: 1 - type: Transform -- proto: PottedPlantRandomPlastic - entities: - - uid: 4249 - components: - - pos: -25.5,-7.5 - parent: 1 - type: Transform - - uid: 6943 - components: - - pos: 30.5,56.5 - parent: 1 - type: Transform - - uid: 6944 - components: - - pos: 34.5,56.5 - parent: 1 - type: Transform - - uid: 8452 - components: - - pos: -2.5,57.5 - parent: 1 - type: Transform - - uid: 8464 - components: - - pos: 2.5,55.5 - parent: 1 - type: Transform - - uid: 8465 - components: - - pos: 2.5,54.5 - parent: 1 - type: Transform - - uid: 9489 - components: - - pos: 15.5,9.5 - parent: 1 - type: Transform - - uid: 9490 - components: - - pos: 15.5,29.5 - parent: 1 - type: Transform - - uid: 9491 - components: - - pos: 22.5,26.5 - parent: 1 - type: Transform - - uid: 9504 - components: - - pos: 5.5,62.5 - parent: 1 - type: Transform - - uid: 9505 - components: - - pos: 8.5,61.5 - parent: 1 - type: Transform - - uid: 9709 - components: - - pos: -28.5,38.5 - parent: 1 - type: Transform - - uid: 9710 - components: - - pos: -4.5,36.5 - parent: 1 - type: Transform - - uid: 9712 - components: - - pos: 22.5,36.5 - parent: 1 - type: Transform - - uid: 9717 - components: - - pos: 39.5,13.5 - parent: 1 - type: Transform - - uid: 9720 - components: - - pos: -16.5,-16.5 - parent: 1 - type: Transform - - uid: 16536 - components: - - pos: 5.5,52.5 - parent: 1 - type: Transform -- proto: PowerCellHigh - entities: - - uid: 8726 - components: - - pos: -13.77224,-19.431416 - parent: 1 - type: Transform -- proto: PowerCellRecharger - entities: - - uid: 6651 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-3.5 - parent: 1 - type: Transform - - uid: 7463 - components: - - pos: 22.5,-22.5 - parent: 1 - type: Transform - - uid: 8062 - components: - - pos: -7.5,80.5 - parent: 1 - type: Transform - - uid: 8182 - components: - - pos: -18.5,53.5 - parent: 1 - type: Transform - - uid: 8346 - components: - - pos: -26.5,29.5 - parent: 1 - type: Transform - - uid: 8419 - components: - - pos: -49.5,44.5 - parent: 1 - type: Transform - - uid: 8709 - components: - - pos: -14.5,-19.5 - parent: 1 - type: Transform - - uid: 8892 - components: - - pos: -1.5,3.5 - parent: 8756 - type: Transform - - uid: 9020 - components: - - pos: 13.5,8.5 - parent: 1 - type: Transform - - uid: 9022 - components: - - pos: -13.5,2.5 - parent: 1 - type: Transform - - uid: 9023 - components: - - pos: 5.5,-13.5 - parent: 1 - type: Transform - - uid: 9083 - components: - - pos: 4.5,-21.5 - parent: 1 - type: Transform - - uid: 9084 - components: - - pos: 13.5,-14.5 - parent: 1 - type: Transform - - uid: 9232 - components: - - pos: -25.5,-13.5 - parent: 1 - type: Transform - - uid: 9307 - components: - - pos: -38.5,8.5 - parent: 1 - type: Transform - - uid: 9372 - components: - - rot: 3.141592653589793 rad - pos: -39.5,19.5 - parent: 1 - type: Transform - - uid: 10642 - components: - - pos: 20.5,41.5 - parent: 1 - type: Transform - - uid: 17417 - components: - - rot: 3.141592653589793 rad - pos: 36.5,6.5 - parent: 1 - type: Transform - - uid: 18497 - components: - - pos: 6.5,52.5 - parent: 1 - type: Transform - - uid: 18498 - components: - - pos: 43.5,41.5 - parent: 1 - type: Transform - - uid: 18499 - components: - - pos: 30.5,-10.5 - parent: 1 - type: Transform -- proto: Poweredlight - entities: - - uid: 1272 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,37.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1293 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,41.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2001 - components: - - pos: 43.5,-7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3733 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4031 - components: - - pos: 8.5,20.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 4032 - components: - - pos: 3.5,34.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 4063 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 4360 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-22.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 4361 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-35.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6085 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6382 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,23.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6517 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6693 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,28.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6706 - components: - - pos: 14.5,20.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 7809 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,20.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 7811 - components: - - rot: 3.141592653589793 rad - pos: -46.5,30.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 7813 - components: - - rot: 3.141592653589793 rad - pos: -38.5,17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 7935 - components: - - pos: -46.5,25.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 8161 - components: - - pos: -40.5,28.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 8641 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,32.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8642 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,33.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8643 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,24.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8644 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,24.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8645 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8646 - components: - - pos: -8.5,19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8647 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,18.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8648 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8673 - components: - - pos: 11.5,15.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 8876 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-1.5 - parent: 8756 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8877 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-1.5 - parent: 8756 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8878 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,2.5 - parent: 8756 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8879 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-4.5 - parent: 8756 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8880 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-4.5 - parent: 8756 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9615 - components: - - pos: 8.5,28.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 14073 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14074 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-18.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14075 - components: - - pos: -23.5,-11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14076 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14077 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14078 - components: - - pos: -35.5,-0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14079 - components: - - pos: -34.5,7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14080 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14081 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14082 - components: - - pos: -39.5,-4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14083 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14088 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14089 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,26.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14090 - components: - - pos: -44.5,15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14095 - components: - - rot: 3.141592653589793 rad - pos: -26.5,36.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14097 - components: - - pos: -14.5,38.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14098 - components: - - rot: 3.141592653589793 rad - pos: -2.5,36.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14099 - components: - - rot: 3.141592653589793 rad - pos: 1.5,36.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14100 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14101 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14102 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14103 - components: - - rot: 3.141592653589793 rad - pos: -16.5,13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14104 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14105 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14106 - components: - - rot: 3.141592653589793 rad - pos: 4.5,13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14107 - components: - - rot: 3.141592653589793 rad - pos: -5.5,13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14108 - components: - - rot: 3.141592653589793 rad - pos: -25.5,13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14109 - components: - - rot: 3.141592653589793 rad - pos: 17.5,13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14110 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14111 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14112 - components: - - rot: 3.141592653589793 rad - pos: 29.5,13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14113 - components: - - pos: 44.5,15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14118 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14119 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14120 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14122 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14123 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14124 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14125 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14126 - components: - - pos: 4.5,-7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14127 - components: - - pos: -5.5,-7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14128 - components: - - pos: 1.5,-11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14129 - components: - - pos: -2.5,-11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14130 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14131 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14132 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-18.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14133 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14134 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14135 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14136 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-39.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14137 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14138 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-34.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14139 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-40.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14140 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-40.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14142 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-32.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14143 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14144 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14145 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-24.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14146 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-38.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14147 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-18.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14148 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14149 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-24.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14150 - components: - - pos: -11.5,-31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14161 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-38.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14163 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14166 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14167 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14173 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14176 - components: - - rot: 3.141592653589793 rad - pos: 25.5,31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14177 - components: - - pos: 20.5,43.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14178 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,43.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14179 - components: - - pos: 42.5,44.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14180 - components: - - rot: -1.5707963267948966 rad - pos: 48.5,39.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14185 - components: - - pos: 10.5,61.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14186 - components: - - rot: 3.141592653589793 rad - pos: 11.5,52.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14187 - components: - - pos: 1.5,57.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14188 - components: - - rot: 3.141592653589793 rad - pos: -2.5,52.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14190 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,40.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14191 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,49.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14192 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,47.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14193 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,51.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14194 - components: - - pos: -15.5,46.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14195 - components: - - rot: 3.141592653589793 rad - pos: -10.5,52.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14200 - components: - - rot: 3.141592653589793 rad - pos: -17.5,40.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14201 - components: - - pos: -15.5,60.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14202 - components: - - pos: -5.5,64.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14203 - components: - - pos: -8.5,64.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14204 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,69.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14205 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,62.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14206 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,62.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14207 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,55.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14209 - components: - - pos: -32.5,49.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14210 - components: - - rot: 3.141592653589793 rad - pos: -33.5,42.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14211 - components: - - pos: -27.5,49.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14212 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,49.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14216 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14217 - components: - - pos: -36.5,38.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14218 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,32.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 15385 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 15400 - components: - - rot: 3.141592653589793 rad - pos: -37.5,13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 15401 - components: - - rot: 3.141592653589793 rad - pos: -44.5,36.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 15402 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17250 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-22.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17251 - components: - - pos: 10.5,38.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17252 - components: - - rot: 3.141592653589793 rad - pos: 20.5,36.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17255 - components: - - pos: 37.5,38.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17256 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,47.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17257 - components: - - rot: 3.141592653589793 rad - pos: 2.5,66.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17258 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17259 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17268 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17304 - components: - - rot: 3.141592653589793 rad - pos: -39.5,57.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17305 - components: - - rot: 3.141592653589793 rad - pos: 38.5,57.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17306 - components: - - rot: 3.141592653589793 rad - pos: 32.5,58.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17307 - components: - - rot: 3.141592653589793 rad - pos: 25.5,60.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17308 - components: - - rot: 3.141592653589793 rad - pos: 19.5,66.5 - parent: 1 - type: Transform - - uid: 17309 - components: - - rot: 3.141592653589793 rad - pos: 13.5,72.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17310 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,81.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17311 - components: - - rot: 3.141592653589793 rad - pos: -0.5,85.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17314 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,81.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17318 - components: - - rot: 3.141592653589793 rad - pos: -14.5,72.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17319 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,75.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17320 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,75.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17321 - components: - - rot: 3.141592653589793 rad - pos: -20.5,66.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17322 - components: - - rot: 3.141592653589793 rad - pos: -26.5,60.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17323 - components: - - rot: 3.141592653589793 rad - pos: -33.5,58.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17324 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,52.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17325 - components: - - rot: -1.5707963267948966 rad - pos: -51.5,45.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17326 - components: - - rot: 1.5707963267948966 rad - pos: 50.5,45.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17327 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,52.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17650 - components: - - pos: 9.5,-43.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17651 - components: - - pos: -10.5,-43.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17860 - components: - - pos: 22.5,-32.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 18062 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-35.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 18063 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-41.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 18065 - components: - - pos: 38.5,-19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 18067 - components: - - pos: 33.5,-26.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 18068 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-41.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 18070 - components: - - pos: -24.5,-29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 18071 - components: - - pos: -37.5,-23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 18076 - components: - - pos: -44.5,-11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 18191 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 18192 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,46.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 18193 - components: - - pos: 2.5,47.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 18257 - components: - - rot: 3.141592653589793 rad - pos: 37.5,8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 18258 - components: - - pos: 37.5,-0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 18424 - components: - - rot: 3.141592653589793 rad - pos: -36.5,1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 18425 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 18426 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 18429 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 18440 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- proto: PoweredlightLED - entities: - - uid: 8577 - components: - - rot: 3.141592653589793 rad - pos: 5.5,22.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8578 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,32.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8581 - components: - - rot: 3.141592653589793 rad - pos: 19.5,26.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8638 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8639 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8649 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,32.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9592 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,32.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11365 - components: - - rot: 3.141592653589793 rad - pos: -0.5,76.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11368 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,32.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13493 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,72.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13494 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,81.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13495 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,81.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13496 - components: - - rot: 3.141592653589793 rad - pos: -0.5,70.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- proto: PoweredSmallLight - entities: - - uid: 610 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,9.5 - parent: 1 - type: Transform - - uid: 616 - components: - - rot: 3.141592653589793 rad - pos: -25.5,5.5 - parent: 1 - type: Transform - - uid: 789 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,10.5 - parent: 1 - type: Transform - - uid: 3726 - components: - - rot: 3.141592653589793 rad - pos: -42.5,1.5 - parent: 1 - type: Transform - - uid: 4066 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,2.5 - parent: 1 - type: Transform - - uid: 6198 - components: - - pos: 51.5,-7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6208 - components: - - rot: 3.141592653589793 rad - pos: 51.5,-14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6845 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,49.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6854 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,44.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7670 - components: - - pos: -27.5,-24.5 - parent: 1 - type: Transform - - uid: 7707 - components: - - pos: -3.5,-0.5 - parent: 1 - type: Transform - - uid: 7802 - components: - - pos: -6.5,74.5 - parent: 1 - type: Transform - - uid: 8342 - components: - - pos: 16.5,-3.5 - parent: 1 - type: Transform - - uid: 8364 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,44.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8366 - components: - - pos: 25.5,58.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8381 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,47.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8382 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,49.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8383 - components: - - pos: 25.5,54.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8384 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,48.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8385 - components: - - rot: 3.141592653589793 rad - pos: 28.5,43.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8386 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,48.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8387 - components: - - rot: 3.141592653589793 rad - pos: 33.5,43.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8404 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,45.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8406 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,41.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8407 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,46.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8579 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,33.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8580 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8585 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,33.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8631 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9250 - components: - - pos: -16.5,5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9251 - components: - - pos: -16.5,1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9252 - components: - - pos: -16.5,-2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9841 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9842 - components: - - pos: -52.5,-7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9843 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9916 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-35.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10080 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10081 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10082 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10083 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10084 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11043 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11044 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-17.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11045 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11046 - components: - - pos: 20.5,-29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 12821 - components: - - rot: 3.141592653589793 rad - pos: 15.5,63.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 12822 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,51.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 12823 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,42.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 12824 - components: - - pos: 32.5,56.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 12825 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,55.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13159 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13233 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13300 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13301 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-16.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13302 - components: - - pos: -24.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13303 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13365 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13460 - components: - - pos: -41.5,51.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13461 - components: - - pos: -20.5,57.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13462 - components: - - rot: 3.141592653589793 rad - pos: -14.5,62.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13490 - components: - - rot: 3.141592653589793 rad - pos: -8.5,69.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14072 - components: - - rot: 3.141592653589793 rad - pos: 35.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14085 - components: - - rot: -1.5707963267948966 rad - pos: -52.5,14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14092 - components: - - rot: -1.5707963267948966 rad - pos: -52.5,37.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14114 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,17.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14115 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,17.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14116 - components: - - rot: 3.141592653589793 rad - pos: 51.5,15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14117 - components: - - pos: 51.5,13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14141 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-34.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14151 - components: - - pos: -0.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14152 - components: - - pos: -4.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14153 - components: - - pos: 3.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14154 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-24.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14155 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14156 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14157 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14158 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14159 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14160 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14162 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-40.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14164 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-46.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14168 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14169 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14170 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14171 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14172 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14174 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14175 - components: - - pos: -10.5,8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14181 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,34.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14182 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,34.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14183 - components: - - pos: 51.5,36.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14184 - components: - - rot: 3.141592653589793 rad - pos: 51.5,38.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14189 - components: - - pos: -38.5,46.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14196 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,41.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14197 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,41.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14198 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,41.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14199 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,41.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14208 - components: - - rot: 3.141592653589793 rad - pos: -38.5,42.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14213 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,52.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14214 - components: - - pos: -10.5,4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 15383 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17237 - components: - - pos: 36.5,3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17240 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17241 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17242 - components: - - pos: -5.5,4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17243 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17244 - components: - - rot: 3.141592653589793 rad - pos: 19.5,-0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17245 - components: - - pos: 16.5,6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17246 - components: - - pos: -8.5,11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17247 - components: - - pos: -31.5,-11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17248 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-40.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17249 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-40.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17253 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,40.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17254 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,40.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17303 - components: - - rot: 3.141592653589793 rad - pos: -38.5,48.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 18093 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,47.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 18136 - components: - - rot: 3.141592653589793 rad - pos: 33.5,51.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 18137 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,26.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 18138 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 18139 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,43.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- proto: PoweredSmallLightEmpty - entities: - - uid: 12021 - components: - - pos: -33.5,56.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 12022 - components: - - rot: 3.141592653589793 rad - pos: -28.5,52.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- proto: Protolathe - entities: - - uid: 3553 - components: - - pos: -3.5,24.5 - parent: 1 - type: Transform -- proto: Rack - entities: - - uid: 1176 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,11.5 - parent: 1 - type: Transform - - uid: 1229 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,10.5 - parent: 1 - type: Transform - - uid: 1240 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,11.5 - parent: 1 - type: Transform - - uid: 2392 - components: - - pos: 8.5,-11.5 - parent: 1 - type: Transform - - uid: 4074 - components: - - pos: 9.5,34.5 - parent: 1 - type: Transform - - uid: 4184 - components: - - pos: 10.5,-18.5 - parent: 1 - type: Transform - - uid: 4356 - components: - - pos: -7.5,64.5 - parent: 1 - type: Transform - - uid: 4442 - components: - - pos: -28.5,32.5 - parent: 1 - type: Transform - - uid: 4443 - components: - - pos: -28.5,31.5 - parent: 1 - type: Transform - - uid: 6552 - components: - - pos: -27.5,-22.5 - parent: 1 - type: Transform - - uid: 6913 - components: - - pos: 25.5,31.5 - parent: 1 - type: Transform - - uid: 7098 - components: - - pos: -11.5,-19.5 - parent: 1 - type: Transform - - uid: 7099 - components: - - pos: -10.5,-19.5 - parent: 1 - type: Transform - - uid: 7154 - components: - - pos: 13.5,-41.5 - parent: 1 - type: Transform - - uid: 7251 - components: - - pos: 4.5,48.5 - parent: 1 - type: Transform - - uid: 7767 - components: - - pos: -19.5,40.5 - parent: 1 - type: Transform - - uid: 7888 - components: - - pos: 41.5,42.5 - parent: 1 - type: Transform - - uid: 8739 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-41.5 - parent: 1 - type: Transform - - uid: 9303 - components: - - pos: -34.5,2.5 - parent: 1 - type: Transform - - uid: 9450 - components: - - pos: -45.5,-7.5 - parent: 1 - type: Transform - - uid: 9451 - components: - - pos: -50.5,-6.5 - parent: 1 - type: Transform - - uid: 9897 - components: - - pos: 10.5,48.5 - parent: 1 - type: Transform - - uid: 9965 - components: - - pos: -24.5,-24.5 - parent: 1 - type: Transform - - uid: 9966 - components: - - pos: -20.5,-24.5 - parent: 1 - type: Transform - - uid: 10074 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-13.5 - parent: 1 - type: Transform - - uid: 10075 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-17.5 - parent: 1 - type: Transform - - uid: 10087 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-33.5 - parent: 1 - type: Transform - - uid: 10094 - components: - - pos: -17.5,-29.5 - parent: 1 - type: Transform - - uid: 10107 - components: - - pos: -23.5,-27.5 - parent: 1 - type: Transform - - uid: 10125 - components: - - pos: 26.5,-22.5 - parent: 1 - type: Transform - - uid: 10133 - components: - - pos: 29.5,-16.5 - parent: 1 - type: Transform - - uid: 10875 - components: - - pos: 28.5,-18.5 - parent: 1 - type: Transform - - uid: 11059 - components: - - pos: 15.5,2.5 - parent: 1 - type: Transform - - uid: 11066 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,8.5 - parent: 1 - type: Transform - - uid: 11070 - components: - - pos: 19.5,4.5 - parent: 1 - type: Transform - - uid: 11081 - components: - - pos: 13.5,5.5 - parent: 1 - type: Transform - - uid: 13156 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,20.5 - parent: 1 - type: Transform - - uid: 13162 - components: - - pos: 14.5,25.5 - parent: 1 - type: Transform - - uid: 13182 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-3.5 - parent: 1 - type: Transform - - uid: 13199 - components: - - pos: -26.5,-18.5 - parent: 1 - type: Transform - - uid: 13318 - components: - - pos: -21.5,-3.5 - parent: 1 - type: Transform - - uid: 13321 - components: - - pos: -20.5,6.5 - parent: 1 - type: Transform - - uid: 13328 - components: - - pos: -9.5,10.5 - parent: 1 - type: Transform - - uid: 13360 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,32.5 - parent: 1 - type: Transform - - uid: 13411 - components: - - pos: -25.5,51.5 - parent: 1 - type: Transform - - uid: 13412 - components: - - pos: -22.5,55.5 - parent: 1 - type: Transform - - uid: 13414 - components: - - pos: -14.5,64.5 - parent: 1 - type: Transform - - uid: 13443 - components: - - pos: 38.5,54.5 - parent: 1 - type: Transform - - uid: 13444 - components: - - pos: -37.5,54.5 - parent: 1 - type: Transform - - uid: 13458 - components: - - pos: -41.5,50.5 - parent: 1 - type: Transform - - uid: 13473 - components: - - pos: -15.5,64.5 - parent: 1 - type: Transform - - uid: 13854 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,52.5 - parent: 1 - type: Transform - - uid: 14007 - components: - - pos: 16.5,59.5 - parent: 1 - type: Transform - - uid: 14017 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,40.5 - parent: 1 - type: Transform - - uid: 14020 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,50.5 - parent: 1 - type: Transform - - uid: 14031 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,58.5 - parent: 1 - type: Transform - - uid: 14040 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,56.5 - parent: 1 - type: Transform -- proto: RadioHandheld - entities: - - uid: 2144 - components: - - pos: -42.652122,26.537056 - parent: 1 - type: Transform - - uid: 7397 - components: - - pos: -14.804126,50.394012 - parent: 1 - type: Transform - - uid: 9085 - components: - - pos: 6.5608225,-21.29419 - parent: 1 - type: Transform - - uid: 13400 - components: - - pos: -23.682875,43.57468 - parent: 1 - type: Transform - - uid: 18489 - components: - - pos: 18.316277,50.63189 - parent: 1 - type: Transform - - uid: 18490 - components: - - pos: 12.759903,-11.244627 - parent: 1 - type: Transform - - uid: 18491 - components: - - pos: 12.944487,-11.471684 - parent: 1 - type: Transform - - uid: 18492 - components: - - pos: -6.2471366,24.59688 - parent: 1 - type: Transform - - uid: 18493 - components: - - pos: -18.58066,20.716656 - parent: 1 - type: Transform - - uid: 18494 - components: - - pos: -16.067932,58.611973 - parent: 1 - type: Transform - - uid: 18495 - components: - - pos: -16.426508,49.945545 - parent: 1 - type: Transform -- proto: Railing - entities: - - uid: 327 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,76.5 - parent: 1 - type: Transform - - uid: 525 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-5.5 - parent: 1 - type: Transform - - uid: 3798 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-11.5 - parent: 1 - type: Transform - - uid: 4118 - components: - - pos: -44.5,25.5 - parent: 1 - type: Transform - - uid: 4267 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,76.5 - parent: 1 - type: Transform - - uid: 5531 - components: - - pos: -15.5,32.5 - parent: 1 - type: Transform - - uid: 5532 - components: - - pos: -14.5,32.5 - parent: 1 - type: Transform - - uid: 5533 - components: - - pos: -13.5,32.5 - parent: 1 - type: Transform - - uid: 6892 - components: - - pos: 22.5,20.5 - parent: 1 - type: Transform - - uid: 6893 - components: - - pos: 21.5,20.5 - parent: 1 - type: Transform - - uid: 6894 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,21.5 - parent: 1 - type: Transform - - uid: 6895 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,22.5 - parent: 1 - type: Transform - - uid: 6896 - components: - - rot: 3.141592653589793 rad - pos: 27.5,18.5 - parent: 1 - type: Transform - - uid: 6897 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,17.5 - parent: 1 - type: Transform - - uid: 8292 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,44.5 - parent: 1 - type: Transform - - uid: 8293 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,45.5 - parent: 1 - type: Transform - - uid: 8294 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,46.5 - parent: 1 - type: Transform - - uid: 8296 - components: - - pos: -32.5,47.5 - parent: 1 - type: Transform - - uid: 8297 - components: - - rot: 3.141592653589793 rad - pos: -32.5,43.5 - parent: 1 - type: Transform - - uid: 8298 - components: - - rot: 3.141592653589793 rad - pos: -34.5,43.5 - parent: 1 - type: Transform - - uid: 8299 - components: - - pos: -34.5,47.5 - parent: 1 - type: Transform - - uid: 8300 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,46.5 - parent: 1 - type: Transform - - uid: 8302 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,45.5 - parent: 1 - type: Transform - - uid: 8303 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,44.5 - parent: 1 - type: Transform - - uid: 8735 - components: - - pos: -14.5,-13.5 - parent: 1 - type: Transform - - uid: 8736 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-13.5 - parent: 1 - type: Transform - - uid: 9041 - components: - - rot: -1.5707963267948966 rad - pos: -47.5,40.5 - parent: 1 - type: Transform - - uid: 9042 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,40.5 - parent: 1 - type: Transform - - uid: 9043 - components: - - rot: 3.141592653589793 rad - pos: -46.5,41.5 - parent: 1 - type: Transform - - uid: 9044 - components: - - rot: 3.141592653589793 rad - pos: -45.5,41.5 - parent: 1 - type: Transform - - uid: 9721 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,40.5 - parent: 1 - type: Transform - - uid: 9722 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,41.5 - parent: 1 - type: Transform - - uid: 9723 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,40.5 - parent: 1 - type: Transform - - uid: 9724 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,41.5 - parent: 1 - type: Transform - - uid: 17765 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-4.5 - parent: 1 - type: Transform - - uid: 17766 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-5.5 - parent: 1 - type: Transform - - uid: 17767 - components: - - rot: 3.141592653589793 rad - pos: 35.5,-3.5 - parent: 1 - type: Transform - - uid: 17769 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,11.5 - parent: 1 - type: Transform - - uid: 17770 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,10.5 - parent: 1 - type: Transform - - uid: 17773 - components: - - pos: 35.5,9.5 - parent: 1 - type: Transform - - uid: 18239 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-4.5 - parent: 1 - type: Transform - - uid: 18243 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-2.5 - parent: 1 - type: Transform - - uid: 18244 - components: - - pos: -8.5,-1.5 - parent: 1 - type: Transform - - uid: 18245 - components: - - pos: -7.5,-1.5 - parent: 1 - type: Transform - - uid: 18246 - components: - - pos: -6.5,-1.5 - parent: 1 - type: Transform - - uid: 18247 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-2.5 - parent: 1 - type: Transform - - uid: 18248 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-4.5 - parent: 1 - type: Transform - - uid: 18249 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-5.5 - parent: 1 - type: Transform - - uid: 18437 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-11.5 - parent: 1 - type: Transform -- proto: RailingCorner - entities: - - uid: 4003 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-33.5 - parent: 1 - type: Transform - - uid: 4004 - components: - - pos: 18.5,-37.5 - parent: 1 - type: Transform - - uid: 4117 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,25.5 - parent: 1 - type: Transform - - uid: 6891 - components: - - pos: 23.5,20.5 - parent: 1 - type: Transform - - uid: 6898 - components: - - rot: 3.141592653589793 rad - pos: 26.5,18.5 - parent: 1 - type: Transform - - uid: 8575 - components: - - rot: 3.141592653589793 rad - pos: -47.5,41.5 - parent: 1 - type: Transform - - uid: 9040 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,41.5 - parent: 1 - type: Transform - - uid: 17764 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-3.5 - parent: 1 - type: Transform - - uid: 17771 - components: - - pos: 36.5,9.5 - parent: 1 - type: Transform - - uid: 18240 - components: - - pos: -9.5,-3.5 - parent: 1 - type: Transform - - uid: 18242 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-3.5 - parent: 1 - type: Transform -- proto: RailingCornerSmall - entities: - - uid: 3782 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-12.5 - parent: 1 - type: Transform - - uid: 3828 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-37.5 - parent: 1 - type: Transform - - uid: 3829 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-33.5 - parent: 1 - type: Transform - - uid: 4005 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-36.5 - parent: 1 - type: Transform - - uid: 4006 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-34.5 - parent: 1 - type: Transform - - uid: 4274 - components: - - rot: 3.141592653589793 rad - pos: -2.5,77.5 - parent: 1 - type: Transform - - uid: 4275 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,77.5 - parent: 1 - type: Transform - - uid: 8295 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,47.5 - parent: 1 - type: Transform - - uid: 8301 - components: - - rot: 3.141592653589793 rad - pos: -35.5,47.5 - parent: 1 - type: Transform - - uid: 8304 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,43.5 - parent: 1 - type: Transform - - uid: 8305 - components: - - pos: -31.5,43.5 - parent: 1 - type: Transform - - uid: 17756 - components: - - pos: 20.5,-12.5 - parent: 1 - type: Transform - - uid: 17768 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-3.5 - parent: 1 - type: Transform - - uid: 17774 - components: - - rot: 3.141592653589793 rad - pos: 34.5,9.5 - parent: 1 - type: Transform - - uid: 18241 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-3.5 - parent: 1 - type: Transform - - uid: 18250 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-1.5 - parent: 1 - type: Transform - - uid: 18251 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-1.5 - parent: 1 - type: Transform - - uid: 18252 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-3.5 - parent: 1 - type: Transform -- proto: RandomArcade - entities: - - uid: 2498 - components: - - pos: 27.5,-0.5 - parent: 1 - type: Transform - - uid: 3405 - components: - - pos: 24.5,-0.5 - parent: 1 - type: Transform - - uid: 3406 - components: - - pos: 27.5,-2.5 - parent: 1 - type: Transform - - uid: 3407 - components: - - pos: 24.5,-2.5 - parent: 1 - type: Transform - - uid: 3408 - components: - - pos: 27.5,-4.5 - parent: 1 - type: Transform - - uid: 3409 - components: - - pos: 24.5,-4.5 - parent: 1 - type: Transform - - uid: 11072 - components: - - pos: 19.5,2.5 - parent: 1 - type: Transform - - uid: 13413 - components: - - pos: -12.5,69.5 - parent: 1 - type: Transform - - uid: 13415 - components: - - pos: -12.5,70.5 - parent: 1 - type: Transform -- proto: RandomArtifactSpawner - entities: - - uid: 17658 - components: - - pos: -6.5,29.5 - parent: 1 - type: Transform - - uid: 17659 - components: - - pos: -5.5,34.5 - parent: 1 - type: Transform -- proto: RandomDrinkBottle - entities: - - uid: 13313 - components: - - pos: -28.5,3.5 - parent: 1 - type: Transform - - uid: 18096 - components: - - pos: -34.5,54.5 - parent: 1 - type: Transform -- proto: RandomDrinkGlass - entities: - - uid: 9143 - components: - - pos: 8.5,-32.5 - parent: 1 - type: Transform - - uid: 9956 - components: - - pos: -38.5,-11.5 - parent: 1 - type: Transform - - uid: 14070 - components: - - pos: 18.5,64.5 - parent: 1 - type: Transform - - uid: 17278 - components: - - pos: -8.5,5.5 - parent: 1 - type: Transform - - uid: 17279 - components: - - pos: -5.5,8.5 - parent: 1 - type: Transform - - uid: 17280 - components: - - pos: -5.5,2.5 - parent: 1 - type: Transform - - uid: 17281 - components: - - pos: -0.5,-1.5 - parent: 1 - type: Transform - - uid: 17689 - components: - - pos: -22.5,-7.5 - parent: 1 - type: Transform -- proto: RandomFoodBakedSingle - entities: - - uid: 8411 - components: - - pos: 11.5,42.5 - parent: 1 - type: Transform - - uid: 17664 - components: - - pos: 44.5,41.5 - parent: 1 - type: Transform -- proto: RandomFoodBakedWhole - entities: - - uid: 10951 - components: - - pos: 31.5,-18.5 - parent: 1 - type: Transform -- proto: RandomFoodMeal - entities: - - uid: 4025 - components: - - pos: -4.5,2.5 - parent: 1 - type: Transform - - uid: 13364 - components: - - pos: -39.5,34.5 - parent: 1 - type: Transform - - uid: 17662 - components: - - pos: -32.5,31.5 - parent: 1 - type: Transform -- proto: RandomFoodSingle - entities: - - uid: 13393 - components: - - pos: -24.5,30.5 - parent: 1 - type: Transform - - uid: 17283 - components: - - pos: -0.5,4.5 - parent: 1 - type: Transform - - uid: 17284 - components: - - pos: 3.5,8.5 - parent: 1 - type: Transform - - uid: 17661 - components: - - pos: -8.5,36.5 - parent: 1 - type: Transform -- proto: RandomInstruments - entities: - - uid: 6622 - components: - - pos: -16.5,-5.5 - parent: 1 - type: Transform - - uid: 8064 - components: - - pos: -8.5,76.5 - parent: 1 - type: Transform - - uid: 8257 - components: - - pos: -29.5,43.5 - parent: 1 - type: Transform - - uid: 8412 - components: - - pos: 12.5,46.5 - parent: 1 - type: Transform - - uid: 8471 - components: - - pos: 19.5,40.5 - parent: 1 - type: Transform -- proto: RandomPainting - entities: - - uid: 786 - components: - - pos: -25.5,9.5 - parent: 1 - type: Transform - - uid: 788 - components: - - pos: -24.5,9.5 - parent: 1 - type: Transform - - uid: 8250 - components: - - pos: -26.5,9.5 - parent: 1 - type: Transform - - uid: 8413 - components: - - rot: 3.141592653589793 rad - pos: 12.5,43.5 - parent: 1 - type: Transform - - uid: 8414 - components: - - rot: 3.141592653589793 rad - pos: 19.5,47.5 - parent: 1 - type: Transform - - uid: 17987 - components: - - rot: 3.141592653589793 rad - pos: 33.5,-21.5 - parent: 1 - type: Transform -- proto: RandomPosterAny - entities: - - uid: 17954 - components: - - rot: 3.141592653589793 rad - pos: 35.5,53.5 - parent: 1 - type: Transform - - uid: 17955 - components: - - rot: 3.141592653589793 rad - pos: 26.5,55.5 - parent: 1 - type: Transform - - uid: 17956 - components: - - rot: 3.141592653589793 rad - pos: 17.5,57.5 - parent: 1 - type: Transform - - uid: 17957 - components: - - rot: 3.141592653589793 rad - pos: 13.5,49.5 - parent: 1 - type: Transform - - uid: 17961 - components: - - rot: 3.141592653589793 rad - pos: 22.5,23.5 - parent: 1 - type: Transform - - uid: 17962 - components: - - rot: 3.141592653589793 rad - pos: 17.5,21.5 - parent: 1 - type: Transform - - uid: 17963 - components: - - rot: 3.141592653589793 rad - pos: 23.5,25.5 - parent: 1 - type: Transform - - uid: 17967 - components: - - rot: 3.141592653589793 rad - pos: 19.5,59.5 - parent: 1 - type: Transform - - uid: 17968 - components: - - rot: 3.141592653589793 rad - pos: 29.5,57.5 - parent: 1 - type: Transform - - uid: 17970 - components: - - rot: 3.141592653589793 rad - pos: 10.5,47.5 - parent: 1 - type: Transform - - uid: 17974 - components: - - rot: 3.141592653589793 rad - pos: 20.5,9.5 - parent: 1 - type: Transform - - uid: 17975 - components: - - rot: 3.141592653589793 rad - pos: 19.5,6.5 - parent: 1 - type: Transform - - uid: 17976 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-2.5 - parent: 1 - type: Transform - - uid: 17979 - components: - - rot: 3.141592653589793 rad - pos: 25.5,-17.5 - parent: 1 - type: Transform - - uid: 17981 - components: - - rot: 3.141592653589793 rad - pos: 23.5,-20.5 - parent: 1 - type: Transform - - uid: 17983 - components: - - rot: 3.141592653589793 rad - pos: 29.5,-25.5 - parent: 1 - type: Transform - - uid: 17984 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-30.5 - parent: 1 - type: Transform - - uid: 17985 - components: - - rot: 3.141592653589793 rad - pos: 32.5,-16.5 - parent: 1 - type: Transform - - uid: 17994 - components: - - rot: 3.141592653589793 rad - pos: -27.5,28.5 - parent: 1 - type: Transform - - uid: 17995 - components: - - rot: 3.141592653589793 rad - pos: -29.5,20.5 - parent: 1 - type: Transform - - uid: 17996 - components: - - rot: 3.141592653589793 rad - pos: -29.5,24.5 - parent: 1 - type: Transform - - uid: 17997 - components: - - rot: 3.141592653589793 rad - pos: -20.5,4.5 - parent: 1 - type: Transform - - uid: 17998 - components: - - rot: 3.141592653589793 rad - pos: -16.5,8.5 - parent: 1 - type: Transform - - uid: 18008 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-36.5 - parent: 1 - type: Transform - - uid: 18009 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-32.5 - parent: 1 - type: Transform - - uid: 18010 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-28.5 - parent: 1 - type: Transform - - uid: 18011 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-21.5 - parent: 1 - type: Transform - - uid: 18012 - components: - - rot: 3.141592653589793 rad - pos: -34.5,-18.5 - parent: 1 - type: Transform - - uid: 18015 - components: - - rot: 3.141592653589793 rad - pos: -44.5,-8.5 - parent: 1 - type: Transform - - uid: 18016 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-8.5 - parent: 1 - type: Transform - - uid: 18018 - components: - - rot: 3.141592653589793 rad - pos: -37.5,8.5 - parent: 1 - type: Transform - - uid: 18019 - components: - - rot: 3.141592653589793 rad - pos: -36.5,19.5 - parent: 1 - type: Transform - - uid: 18022 - components: - - rot: 3.141592653589793 rad - pos: -37.5,44.5 - parent: 1 - type: Transform - - uid: 18023 - components: - - rot: 3.141592653589793 rad - pos: -37.5,47.5 - parent: 1 - type: Transform - - uid: 18024 - components: - - rot: 3.141592653589793 rad - pos: -30.5,50.5 - parent: 1 - type: Transform - - uid: 18029 - components: - - rot: 3.141592653589793 rad - pos: -20.5,56.5 - parent: 1 - type: Transform - - uid: 18030 - components: - - rot: 3.141592653589793 rad - pos: -22.5,53.5 - parent: 1 - type: Transform - - uid: 18032 - components: - - rot: 3.141592653589793 rad - pos: -14.5,65.5 - parent: 1 - type: Transform - - uid: 18039 - components: - - rot: 3.141592653589793 rad - pos: 23.5,48.5 - parent: 1 - type: Transform - - uid: 18040 - components: - - rot: 3.141592653589793 rad - pos: 18.5,51.5 - parent: 1 - type: Transform - - uid: 18041 - components: - - rot: 3.141592653589793 rad - pos: 26.5,42.5 - parent: 1 - type: Transform - - uid: 18087 - components: - - pos: 26.5,28.5 - parent: 1 - type: Transform - - uid: 18088 - components: - - pos: -2.5,33.5 - parent: 1 - type: Transform - - uid: 18092 - components: - - pos: -25.5,-25.5 - parent: 1 - type: Transform - - uid: 18330 - components: - - pos: 6.5,12.5 - parent: 1 - type: Transform -- proto: RandomPosterContraband - entities: - - uid: 17958 - components: - - rot: 3.141592653589793 rad - pos: 8.5,44.5 - parent: 1 - type: Transform - - uid: 17959 - components: - - rot: 3.141592653589793 rad - pos: 8.5,48.5 - parent: 1 - type: Transform - - uid: 17960 - components: - - rot: 3.141592653589793 rad - pos: 4.5,42.5 - parent: 1 - type: Transform - - uid: 17973 - components: - - rot: 3.141592653589793 rad - pos: 17.5,25.5 - parent: 1 - type: Transform - - uid: 17977 - components: - - rot: 3.141592653589793 rad - pos: 20.5,3.5 - parent: 1 - type: Transform - - uid: 17980 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-21.5 - parent: 1 - type: Transform - - uid: 17982 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-27.5 - parent: 1 - type: Transform - - uid: 17986 - components: - - rot: 3.141592653589793 rad - pos: 35.5,-16.5 - parent: 1 - type: Transform - - uid: 17993 - components: - - rot: 3.141592653589793 rad - pos: -22.5,28.5 - parent: 1 - type: Transform - - uid: 17999 - components: - - rot: 3.141592653589793 rad - pos: -13.5,7.5 - parent: 1 - type: Transform - - uid: 18001 - components: - - rot: 3.141592653589793 rad - pos: -24.5,-4.5 - parent: 1 - type: Transform - - uid: 18002 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-1.5 - parent: 1 - type: Transform - - uid: 18003 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-0.5 - parent: 1 - type: Transform - - uid: 18013 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-15.5 - parent: 1 - type: Transform - - uid: 18014 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-10.5 - parent: 1 - type: Transform - - uid: 18020 - components: - - rot: 3.141592653589793 rad - pos: -35.5,27.5 - parent: 1 - type: Transform - - uid: 18021 - components: - - rot: 3.141592653589793 rad - pos: -36.5,32.5 - parent: 1 - type: Transform - - uid: 18026 - components: - - rot: 3.141592653589793 rad - pos: -26.5,54.5 - parent: 1 - type: Transform - - uid: 18027 - components: - - rot: 3.141592653589793 rad - pos: -34.5,51.5 - parent: 1 - type: Transform - - uid: 18028 - components: - - rot: 3.141592653589793 rad - pos: -36.5,55.5 - parent: 1 - type: Transform - - uid: 18033 - components: - - rot: 3.141592653589793 rad - pos: -11.5,64.5 - parent: 1 - type: Transform - - uid: 18034 - components: - - rot: 3.141592653589793 rad - pos: -9.5,68.5 - parent: 1 - type: Transform - - uid: 18037 - components: - - rot: 3.141592653589793 rad - pos: 21.5,53.5 - parent: 1 - type: Transform - - uid: 18038 - components: - - rot: 3.141592653589793 rad - pos: 17.5,54.5 - parent: 1 - type: Transform - - uid: 18042 - components: - - rot: 3.141592653589793 rad - pos: 37.5,45.5 - parent: 1 - type: Transform - - uid: 18079 - components: - - pos: -16.5,-27.5 - parent: 1 - type: Transform - - uid: 18080 - components: - - pos: -3.5,-16.5 - parent: 1 - type: Transform - - uid: 18081 - components: - - pos: 2.5,-16.5 - parent: 1 - type: Transform - - uid: 18085 - components: - - pos: 34.5,-13.5 - parent: 1 - type: Transform - - uid: 18090 - components: - - pos: -33.5,-12.5 - parent: 1 - type: Transform - - uid: 18091 - components: - - pos: -28.5,-13.5 - parent: 1 - type: Transform - - uid: 18110 - components: - - pos: -41.5,49.5 - parent: 1 - type: Transform - - uid: 18111 - components: - - pos: -45.5,46.5 - parent: 1 - type: Transform -- proto: RandomPosterLegit - entities: - - uid: 8252 - components: - - pos: -3.5,0.5 - parent: 1 - type: Transform - - uid: 17938 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-6.5 - parent: 1 - type: Transform - - uid: 17939 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-10.5 - parent: 1 - type: Transform - - uid: 17940 - components: - - rot: 3.141592653589793 rad - pos: -41.5,12.5 - parent: 1 - type: Transform - - uid: 17941 - components: - - rot: 3.141592653589793 rad - pos: -33.5,26.5 - parent: 1 - type: Transform - - uid: 17942 - components: - - rot: 3.141592653589793 rad - pos: -33.5,30.5 - parent: 1 - type: Transform - - uid: 17943 - components: - - rot: 3.141592653589793 rad - pos: -35.5,35.5 - parent: 1 - type: Transform - - uid: 17944 - components: - - rot: 3.141592653589793 rad - pos: -50.5,40.5 - parent: 1 - type: Transform - - uid: 17945 - components: - - rot: 3.141592653589793 rad - pos: -41.5,40.5 - parent: 1 - type: Transform - - uid: 17946 - components: - - rot: 3.141592653589793 rad - pos: -9.5,35.5 - parent: 1 - type: Transform - - uid: 17947 - components: - - rot: 3.141592653589793 rad - pos: -2.5,60.5 - parent: 1 - type: Transform - - uid: 17948 - components: - - rot: 3.141592653589793 rad - pos: -2.5,64.5 - parent: 1 - type: Transform - - uid: 17949 - components: - - rot: 3.141592653589793 rad - pos: 12.5,65.5 - parent: 1 - type: Transform - - uid: 17950 - components: - - rot: 3.141592653589793 rad - pos: 6.5,39.5 - parent: 1 - type: Transform - - uid: 17951 - components: - - rot: 3.141592653589793 rad - pos: 22.5,44.5 - parent: 1 - type: Transform - - uid: 17952 - components: - - rot: 3.141592653589793 rad - pos: 16.5,42.5 - parent: 1 - type: Transform - - uid: 17953 - components: - - rot: 3.141592653589793 rad - pos: 46.5,45.5 - parent: 1 - type: Transform - - uid: 17964 - components: - - rot: 3.141592653589793 rad - pos: 28.5,1.5 - parent: 1 - type: Transform - - uid: 17965 - components: - - rot: 3.141592653589793 rad - pos: 28.5,8.5 - parent: 1 - type: Transform - - uid: 17969 - components: - - rot: 3.141592653589793 rad - pos: 12.5,51.5 - parent: 1 - type: Transform - - uid: 17971 - components: - - rot: 3.141592653589793 rad - pos: 17.5,32.5 - parent: 1 - type: Transform - - uid: 17972 - components: - - rot: 3.141592653589793 rad - pos: 22.5,32.5 - parent: 1 - type: Transform - - uid: 17978 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-14.5 - parent: 1 - type: Transform - - uid: 17991 - components: - - rot: 3.141592653589793 rad - pos: -20.5,52.5 - parent: 1 - type: Transform - - uid: 17992 - components: - - rot: 3.141592653589793 rad - pos: -4.5,51.5 - parent: 1 - type: Transform - - uid: 18007 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-31.5 - parent: 1 - type: Transform - - uid: 18017 - components: - - rot: 3.141592653589793 rad - pos: -35.5,0.5 - parent: 1 - type: Transform - - uid: 18025 - components: - - rot: 3.141592653589793 rad - pos: -35.5,50.5 - parent: 1 - type: Transform - - uid: 18031 - components: - - rot: 3.141592653589793 rad - pos: -14.5,61.5 - parent: 1 - type: Transform - - uid: 18035 - components: - - rot: 3.141592653589793 rad - pos: -6.5,70.5 - parent: 1 - type: Transform - - uid: 18043 - components: - - rot: 3.141592653589793 rad - pos: 49.5,39.5 - parent: 1 - type: Transform - - uid: 18044 - components: - - rot: 3.141592653589793 rad - pos: 33.5,21.5 - parent: 1 - type: Transform - - uid: 18077 - components: - - pos: -15.5,-12.5 - parent: 1 - type: Transform - - uid: 18078 - components: - - pos: -15.5,-17.5 - parent: 1 - type: Transform - - uid: 18082 - components: - - pos: 14.5,-13.5 - parent: 1 - type: Transform - - uid: 18116 - components: - - pos: 9.5,-31.5 - parent: 1 - type: Transform - - uid: 18117 - components: - - pos: 14.5,-21.5 - parent: 1 - type: Transform - - uid: 18125 - components: - - pos: -7.5,-6.5 - parent: 1 - type: Transform -- proto: RandomSnacks - entities: - - uid: 8721 - components: - - pos: -10.5,-15.5 - parent: 1 - type: Transform - - uid: 17660 - components: - - pos: 41.5,36.5 - parent: 1 - type: Transform - - uid: 17663 - components: - - pos: -20.5,15.5 - parent: 1 - type: Transform - - uid: 17667 - components: - - pos: -37.5,7.5 - parent: 1 - type: Transform -- proto: RandomSoap - entities: - - uid: 8132 - components: - - pos: -7.5,70.5 - parent: 1 - type: Transform - - uid: 8265 - components: - - pos: -38.5,49.5 - parent: 1 - type: Transform - - uid: 9379 - components: - - pos: 16.5,-40.5 - parent: 1 - type: Transform - - uid: 10100 - components: - - pos: -16.5,-40.5 - parent: 1 - type: Transform -- proto: RandomSpawner - entities: - - uid: 17668 - components: - - pos: -34.5,21.5 - parent: 1 - type: Transform - - uid: 17669 - components: - - pos: -39.5,32.5 - parent: 1 - type: Transform - - uid: 17670 - components: - - pos: -48.5,43.5 - parent: 1 - type: Transform - - uid: 17671 - components: - - pos: -25.5,38.5 - parent: 1 - type: Transform - - uid: 17672 - components: - - pos: -30.5,45.5 - parent: 1 - type: Transform - - uid: 17673 - components: - - pos: -35.5,53.5 - parent: 1 - type: Transform - - uid: 17674 - components: - - pos: -38.5,45.5 - parent: 1 - type: Transform - - uid: 17675 - components: - - pos: -28.5,57.5 - parent: 1 - type: Transform - - uid: 17676 - components: - - pos: -24.5,54.5 - parent: 1 - type: Transform - - uid: 17677 - components: - - pos: -17.5,63.5 - parent: 1 - type: Transform - - uid: 17678 - components: - - pos: -4.5,67.5 - parent: 1 - type: Transform - - uid: 17679 - components: - - pos: 11.5,69.5 - parent: 1 - type: Transform - - uid: 17680 - components: - - pos: 17.5,59.5 - parent: 1 - type: Transform - - uid: 17681 - components: - - pos: 30.5,52.5 - parent: 1 - type: Transform - - uid: 17682 - components: - - pos: 20.5,36.5 - parent: 1 - type: Transform - - uid: 17683 - components: - - pos: 44.5,38.5 - parent: 1 - type: Transform - - uid: 17684 - components: - - pos: 32.5,28.5 - parent: 1 - type: Transform - - uid: 17685 - components: - - pos: 22.5,18.5 - parent: 1 - type: Transform - - uid: 17687 - components: - - pos: 14.5,-8.5 - parent: 1 - type: Transform - - uid: 17688 - components: - - pos: -24.5,-7.5 - parent: 1 - type: Transform - - uid: 17690 - components: - - pos: -47.5,-7.5 - parent: 1 - type: Transform - - uid: 17691 - components: - - pos: -49.5,-8.5 - parent: 1 - type: Transform - - uid: 17692 - components: - - pos: -35.5,-13.5 - parent: 1 - type: Transform - - uid: 17693 - components: - - pos: -27.5,-21.5 - parent: 1 - type: Transform - - uid: 17694 - components: - - pos: -15.5,-37.5 - parent: 1 - type: Transform - - uid: 17695 - components: - - pos: 17.5,-35.5 - parent: 1 - type: Transform - - uid: 17696 - components: - - pos: 17.5,-34.5 - parent: 1 - type: Transform - - uid: 17697 - components: - - pos: 18.5,-40.5 - parent: 1 - type: Transform - - uid: 17698 - components: - - pos: 20.5,-39.5 - parent: 1 - type: Transform - - uid: 17699 - components: - - pos: 21.5,-37.5 - parent: 1 - type: Transform - - uid: 17700 - components: - - pos: 23.5,-25.5 - parent: 1 - type: Transform - - uid: 17701 - components: - - pos: 37.5,-14.5 - parent: 1 - type: Transform - - uid: 17702 - components: - - pos: 25.5,-0.5 - parent: 1 - type: Transform - - uid: 17703 - components: - - pos: 26.5,-2.5 - parent: 1 - type: Transform -- proto: RandomVending - entities: - - uid: 6553 - components: - - pos: -26.5,-22.5 - parent: 1 - type: Transform - - uid: 8418 - components: - - pos: -48.5,44.5 - parent: 1 - type: Transform - - uid: 8457 - components: - - pos: 9.5,70.5 - parent: 1 - type: Transform - - uid: 9052 - components: - - pos: 3.5,3.5 - parent: 1 - type: Transform - - uid: 10137 - components: - - pos: 28.5,-26.5 - parent: 1 - type: Transform - - uid: 11060 - components: - - pos: 15.5,5.5 - parent: 1 - type: Transform - - uid: 13394 - components: - - pos: -24.5,29.5 - parent: 1 - type: Transform - - uid: 14006 - components: - - pos: 15.5,64.5 - parent: 1 - type: Transform -- proto: RandomVendingDrinks - entities: - - uid: 8591 - components: - - pos: -27.5,11.5 - parent: 1 - type: Transform -- proto: RCD - entities: - - uid: 8704 - components: - - pos: -13.511377,-23.363 - parent: 1 - type: Transform - - uid: 9098 - components: - - pos: 6.6163073,-24.303488 - parent: 1 - type: Transform -- proto: RCDAmmo - entities: - - uid: 8705 - components: - - pos: -13.667563,-23.646822 - parent: 1 - type: Transform - - uid: 9099 - components: - - pos: 6.6163073,-24.511822 - parent: 1 - type: Transform - - uid: 9100 - components: - - pos: 6.4288073,-24.595156 - parent: 1 - type: Transform -- proto: ReagentContainerFlour - entities: - - uid: 4572 - components: - - pos: 7.857181,-3.1736069 - parent: 1 - type: Transform -- proto: ReagentContainerMilkOat - entities: - - uid: 9297 - components: - - pos: 5.35893,2.077802 - parent: 1 - type: Transform -- proto: ReagentContainerMilkSoy - entities: - - uid: 9298 - components: - - pos: 5.504763,1.973635 - parent: 1 - type: Transform -- proto: ReagentContainerRice - entities: - - uid: 608 - components: - - pos: 7.5164104,-3.0316958 - parent: 1 - type: Transform -- proto: Recycler - entities: - - uid: 3989 - components: - - pos: 19.5,-35.5 - parent: 1 - type: Transform - - links: - - 4007 - type: DeviceLinkSink -- proto: ReinforcedPlasmaWindow - entities: - - uid: 1834 - components: - - pos: -8.5,61.5 - parent: 1 - type: Transform - - uid: 1836 - components: - - pos: -7.5,60.5 - parent: 1 - type: Transform - - uid: 1841 - components: - - pos: -9.5,61.5 - parent: 1 - type: Transform - - uid: 2962 - components: - - pos: -2.5,-39.5 - parent: 1 - type: Transform - - uid: 2963 - components: - - pos: -2.5,-40.5 - parent: 1 - type: Transform - - uid: 2964 - components: - - pos: -2.5,-41.5 - parent: 1 - type: Transform - - uid: 2965 - components: - - pos: -1.5,-38.5 - parent: 1 - type: Transform - - uid: 2966 - components: - - pos: -0.5,-38.5 - parent: 1 - type: Transform - - uid: 2967 - components: - - pos: 0.5,-38.5 - parent: 1 - type: Transform - - uid: 2968 - components: - - pos: 1.5,-39.5 - parent: 1 - type: Transform - - uid: 2969 - components: - - pos: 1.5,-40.5 - parent: 1 - type: Transform - - uid: 2970 - components: - - pos: 1.5,-41.5 - parent: 1 - type: Transform - - uid: 2971 - components: - - pos: -3.5,-43.5 - parent: 1 - type: Transform - - uid: 2972 - components: - - pos: -3.5,-44.5 - parent: 1 - type: Transform - - uid: 2973 - components: - - pos: -3.5,-45.5 - parent: 1 - type: Transform - - uid: 2974 - components: - - pos: 2.5,-43.5 - parent: 1 - type: Transform - - uid: 2975 - components: - - pos: 2.5,-44.5 - parent: 1 - type: Transform - - uid: 2976 - components: - - pos: 2.5,-45.5 - parent: 1 - type: Transform - - uid: 2977 - components: - - pos: -1.5,-36.5 - parent: 1 - type: Transform - - uid: 2978 - components: - - pos: -0.5,-36.5 - parent: 1 - type: Transform - - uid: 2979 - components: - - pos: 0.5,-36.5 - parent: 1 - type: Transform - - uid: 2980 - components: - - pos: 1.5,-35.5 - parent: 1 - type: Transform - - uid: 2981 - components: - - pos: 1.5,-34.5 - parent: 1 - type: Transform - - uid: 2982 - components: - - pos: 1.5,-33.5 - parent: 1 - type: Transform - - uid: 2983 - components: - - pos: 0.5,-32.5 - parent: 1 - type: Transform - - uid: 2984 - components: - - pos: -0.5,-32.5 - parent: 1 - type: Transform - - uid: 2985 - components: - - pos: -1.5,-32.5 - parent: 1 - type: Transform - - uid: 2986 - components: - - pos: -2.5,-33.5 - parent: 1 - type: Transform - - uid: 2987 - components: - - pos: -2.5,-34.5 - parent: 1 - type: Transform - - uid: 2988 - components: - - pos: -2.5,-35.5 - parent: 1 - type: Transform - - uid: 2989 - components: - - pos: -2.5,-29.5 - parent: 1 - type: Transform - - uid: 2990 - components: - - pos: -2.5,-27.5 - parent: 1 - type: Transform - - uid: 2991 - components: - - pos: -2.5,-25.5 - parent: 1 - type: Transform - - uid: 2992 - components: - - pos: -2.5,-23.5 - parent: 1 - type: Transform - - uid: 2993 - components: - - pos: -2.5,-21.5 - parent: 1 - type: Transform - - uid: 2994 - components: - - pos: -2.5,-19.5 - parent: 1 - type: Transform -- proto: ReinforcedWindow - entities: - - uid: 5 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-0.5 - parent: 1 - type: Transform - - uid: 11 - components: - - pos: 50.5,-10.5 - parent: 1 - type: Transform - - uid: 29 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,33.5 - parent: 1 - type: Transform - - uid: 30 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,23.5 - parent: 1 - type: Transform - - uid: 31 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,24.5 - parent: 1 - type: Transform - - uid: 38 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,22.5 - parent: 1 - type: Transform - - uid: 48 - components: - - pos: 51.5,-13.5 - parent: 1 - type: Transform - - uid: 57 - components: - - rot: 3.141592653589793 rad - pos: 45.5,18.5 - parent: 1 - type: Transform - - uid: 58 - components: - - rot: 3.141592653589793 rad - pos: 44.5,17.5 - parent: 1 - type: Transform - - uid: 59 - components: - - rot: 3.141592653589793 rad - pos: 45.5,16.5 - parent: 1 - type: Transform - - uid: 60 - components: - - rot: 3.141592653589793 rad - pos: 49.5,18.5 - parent: 1 - type: Transform - - uid: 61 - components: - - rot: 3.141592653589793 rad - pos: 50.5,17.5 - parent: 1 - type: Transform - - uid: 62 - components: - - rot: 3.141592653589793 rad - pos: 49.5,16.5 - parent: 1 - type: Transform - - uid: 90 - components: - - pos: 50.5,-9.5 - parent: 1 - type: Transform - - uid: 96 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,11.5 - parent: 1 - type: Transform - - uid: 97 - components: - - pos: 44.5,-12.5 - parent: 1 - type: Transform - - uid: 98 - components: - - rot: 1.5707963267948966 rad - pos: 46.5,11.5 - parent: 1 - type: Transform - - uid: 100 - components: - - pos: 45.5,-15.5 - parent: 1 - type: Transform - - uid: 103 - components: - - rot: 1.5707963267948966 rad - pos: 49.5,11.5 - parent: 1 - type: Transform - - uid: 105 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,11.5 - parent: 1 - type: Transform - - uid: 192 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,16.5 - parent: 1 - type: Transform - - uid: 193 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,16.5 - parent: 1 - type: Transform - - uid: 194 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,16.5 - parent: 1 - type: Transform - - uid: 195 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,16.5 - parent: 1 - type: Transform - - uid: 196 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,12.5 - parent: 1 - type: Transform - - uid: 197 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,12.5 - parent: 1 - type: Transform - - uid: 198 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,12.5 - parent: 1 - type: Transform - - uid: 199 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,12.5 - parent: 1 - type: Transform - - uid: 200 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,12.5 - parent: 1 - type: Transform - - uid: 201 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,12.5 - parent: 1 - type: Transform - - uid: 202 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,12.5 - parent: 1 - type: Transform - - uid: 203 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,12.5 - parent: 1 - type: Transform - - uid: 204 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,16.5 - parent: 1 - type: Transform - - uid: 205 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,16.5 - parent: 1 - type: Transform - - uid: 206 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,16.5 - parent: 1 - type: Transform - - uid: 207 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,16.5 - parent: 1 - type: Transform - - uid: 208 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,17.5 - parent: 1 - type: Transform - - uid: 209 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,18.5 - parent: 1 - type: Transform - - uid: 210 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,19.5 - parent: 1 - type: Transform - - uid: 216 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,27.5 - parent: 1 - type: Transform - - uid: 217 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,28.5 - parent: 1 - type: Transform - - uid: 218 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,29.5 - parent: 1 - type: Transform - - uid: 219 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,32.5 - parent: 1 - type: Transform - - uid: 220 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,34.5 - parent: 1 - type: Transform - - uid: 233 - components: - - rot: -1.5707963267948966 rad - pos: 51.5,12.5 - parent: 1 - type: Transform - - uid: 234 - components: - - rot: -1.5707963267948966 rad - pos: 51.5,16.5 - parent: 1 - type: Transform - - uid: 236 - components: - - pos: 51.5,-8.5 - parent: 1 - type: Transform - - uid: 240 - components: - - pos: -44.5,-2.5 - parent: 1 - type: Transform - - uid: 241 - components: - - pos: -44.5,-1.5 - parent: 1 - type: Transform - - uid: 242 - components: - - pos: -44.5,-0.5 - parent: 1 - type: Transform - - uid: 243 - components: - - pos: -44.5,7.5 - parent: 1 - type: Transform - - uid: 244 - components: - - pos: -44.5,8.5 - parent: 1 - type: Transform - - uid: 245 - components: - - pos: -44.5,9.5 - parent: 1 - type: Transform - - uid: 249 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,6.5 - parent: 1 - type: Transform - - uid: 250 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,6.5 - parent: 1 - type: Transform - - uid: 251 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,3.5 - parent: 1 - type: Transform - - uid: 252 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,3.5 - parent: 1 - type: Transform - - uid: 257 - components: - - pos: -37.5,-2.5 - parent: 1 - type: Transform - - uid: 259 - components: - - pos: -37.5,-0.5 - parent: 1 - type: Transform - - uid: 317 - components: - - pos: 5.5,69.5 - parent: 1 - type: Transform - - uid: 318 - components: - - pos: 6.5,69.5 - parent: 1 - type: Transform - - uid: 319 - components: - - pos: 8.5,72.5 - parent: 1 - type: Transform - - uid: 334 - components: - - pos: 8.5,73.5 - parent: 1 - type: Transform - - uid: 335 - components: - - pos: 8.5,74.5 - parent: 1 - type: Transform - - uid: 363 - components: - - pos: 2.5,75.5 - parent: 1 - type: Transform - - uid: 364 - components: - - pos: 3.5,75.5 - parent: 1 - type: Transform - - uid: 391 - components: - - pos: 2.5,69.5 - parent: 1 - type: Transform - - uid: 392 - components: - - pos: 3.5,69.5 - parent: 1 - type: Transform - - uid: 407 - components: - - pos: 8.5,76.5 - parent: 1 - type: Transform - - uid: 408 - components: - - pos: 8.5,77.5 - parent: 1 - type: Transform - - uid: 409 - components: - - pos: 7.5,79.5 - parent: 1 - type: Transform - - uid: 410 - components: - - pos: 7.5,80.5 - parent: 1 - type: Transform - - uid: 411 - components: - - pos: 6.5,82.5 - parent: 1 - type: Transform - - uid: 412 - components: - - pos: 4.5,83.5 - parent: 1 - type: Transform - - uid: 413 - components: - - pos: 2.5,84.5 - parent: 1 - type: Transform - - uid: 414 - components: - - pos: 1.5,84.5 - parent: 1 - type: Transform - - uid: 415 - components: - - pos: 0.5,84.5 - parent: 1 - type: Transform - - uid: 416 - components: - - pos: -1.5,84.5 - parent: 1 - type: Transform - - uid: 417 - components: - - pos: -2.5,84.5 - parent: 1 - type: Transform - - uid: 418 - components: - - pos: -3.5,84.5 - parent: 1 - type: Transform - - uid: 419 - components: - - pos: -5.5,83.5 - parent: 1 - type: Transform - - uid: 420 - components: - - pos: -6.5,83.5 - parent: 1 - type: Transform - - uid: 421 - components: - - pos: 5.5,83.5 - parent: 1 - type: Transform - - uid: 809 - components: - - pos: -3.5,20.5 - parent: 1 - type: Transform - - uid: 810 - components: - - pos: 2.5,20.5 - parent: 1 - type: Transform - - uid: 843 - components: - - pos: 42.5,41.5 - parent: 1 - type: Transform - - uid: 852 - components: - - pos: 49.5,44.5 - parent: 1 - type: Transform - - uid: 853 - components: - - pos: 49.5,43.5 - parent: 1 - type: Transform - - uid: 854 - components: - - pos: 49.5,42.5 - parent: 1 - type: Transform - - uid: 855 - components: - - pos: 49.5,41.5 - parent: 1 - type: Transform - - uid: 856 - components: - - pos: 51.5,39.5 - parent: 1 - type: Transform - - uid: 857 - components: - - pos: 51.5,35.5 - parent: 1 - type: Transform - - uid: 858 - components: - - pos: 50.5,34.5 - parent: 1 - type: Transform - - uid: 859 - components: - - pos: 49.5,33.5 - parent: 1 - type: Transform - - uid: 860 - components: - - pos: 45.5,33.5 - parent: 1 - type: Transform - - uid: 861 - components: - - pos: 44.5,34.5 - parent: 1 - type: Transform - - uid: 862 - components: - - pos: 42.5,35.5 - parent: 1 - type: Transform - - uid: 863 - components: - - pos: 41.5,35.5 - parent: 1 - type: Transform - - uid: 864 - components: - - pos: 40.5,35.5 - parent: 1 - type: Transform - - uid: 865 - components: - - pos: 39.5,35.5 - parent: 1 - type: Transform - - uid: 866 - components: - - pos: 37.5,35.5 - parent: 1 - type: Transform - - uid: 867 - components: - - pos: 36.5,35.5 - parent: 1 - type: Transform - - uid: 868 - components: - - pos: 35.5,35.5 - parent: 1 - type: Transform - - uid: 869 - components: - - pos: 34.5,35.5 - parent: 1 - type: Transform - - uid: 881 - components: - - pos: 39.5,55.5 - parent: 1 - type: Transform - - uid: 883 - components: - - pos: 39.5,54.5 - parent: 1 - type: Transform - - uid: 915 - components: - - pos: 47.5,46.5 - parent: 1 - type: Transform - - uid: 916 - components: - - pos: 47.5,47.5 - parent: 1 - type: Transform - - uid: 917 - components: - - pos: 47.5,48.5 - parent: 1 - type: Transform - - uid: 918 - components: - - pos: 46.5,49.5 - parent: 1 - type: Transform - - uid: 919 - components: - - pos: 45.5,49.5 - parent: 1 - type: Transform - - uid: 920 - components: - - pos: 48.5,45.5 - parent: 1 - type: Transform - - uid: 921 - components: - - pos: 44.5,50.5 - parent: 1 - type: Transform - - uid: 922 - components: - - pos: 44.5,51.5 - parent: 1 - type: Transform - - uid: 923 - components: - - pos: 43.5,52.5 - parent: 1 - type: Transform - - uid: 924 - components: - - pos: 42.5,52.5 - parent: 1 - type: Transform - - uid: 925 - components: - - pos: 41.5,52.5 - parent: 1 - type: Transform - - uid: 926 - components: - - pos: -39.5,53.5 - parent: 1 - type: Transform - - uid: 930 - components: - - rot: 3.141592653589793 rad - pos: 38.5,53.5 - parent: 1 - type: Transform - - uid: 933 - components: - - pos: 34.5,57.5 - parent: 1 - type: Transform - - uid: 934 - components: - - pos: 33.5,57.5 - parent: 1 - type: Transform - - uid: 935 - components: - - pos: 31.5,57.5 - parent: 1 - type: Transform - - uid: 936 - components: - - pos: 30.5,57.5 - parent: 1 - type: Transform - - uid: 937 - components: - - pos: 29.5,58.5 - parent: 1 - type: Transform - - uid: 938 - components: - - pos: 28.5,59.5 - parent: 1 - type: Transform - - uid: 939 - components: - - pos: 27.5,59.5 - parent: 1 - type: Transform - - uid: 940 - components: - - pos: 26.5,59.5 - parent: 1 - type: Transform - - uid: 941 - components: - - pos: 23.5,59.5 - parent: 1 - type: Transform - - uid: 942 - components: - - pos: 22.5,59.5 - parent: 1 - type: Transform - - uid: 943 - components: - - pos: 21.5,59.5 - parent: 1 - type: Transform - - uid: 944 - components: - - pos: 19.5,61.5 - parent: 1 - type: Transform - - uid: 945 - components: - - pos: 19.5,62.5 - parent: 1 - type: Transform - - uid: 946 - components: - - pos: 19.5,63.5 - parent: 1 - type: Transform - - uid: 947 - components: - - pos: 19.5,64.5 - parent: 1 - type: Transform - - uid: 948 - components: - - pos: 18.5,65.5 - parent: 1 - type: Transform - - uid: 949 - components: - - pos: 17.5,65.5 - parent: 1 - type: Transform - - uid: 950 - components: - - pos: 16.5,65.5 - parent: 1 - type: Transform - - uid: 951 - components: - - pos: 15.5,65.5 - parent: 1 - type: Transform - - uid: 952 - components: - - pos: 13.5,67.5 - parent: 1 - type: Transform - - uid: 953 - components: - - pos: 13.5,68.5 - parent: 1 - type: Transform - - uid: 954 - components: - - pos: 13.5,69.5 - parent: 1 - type: Transform - - uid: 955 - components: - - pos: 13.5,70.5 - parent: 1 - type: Transform - - uid: 956 - components: - - pos: 12.5,71.5 - parent: 1 - type: Transform - - uid: 957 - components: - - pos: 11.5,71.5 - parent: 1 - type: Transform - - uid: 958 - components: - - pos: 10.5,71.5 - parent: 1 - type: Transform - - uid: 959 - components: - - pos: 9.5,71.5 - parent: 1 - type: Transform - - uid: 960 - components: - - pos: 1.5,70.5 - parent: 1 - type: Transform - - uid: 961 - components: - - pos: 1.5,71.5 - parent: 1 - type: Transform - - uid: 962 - components: - - pos: 1.5,73.5 - parent: 1 - type: Transform - - uid: 963 - components: - - pos: 1.5,74.5 - parent: 1 - type: Transform - - uid: 964 - components: - - pos: -9.5,72.5 - parent: 1 - type: Transform - - uid: 965 - components: - - pos: -9.5,73.5 - parent: 1 - type: Transform - - uid: 966 - components: - - pos: -9.5,74.5 - parent: 1 - type: Transform - - uid: 967 - components: - - pos: -9.5,76.5 - parent: 1 - type: Transform - - uid: 968 - components: - - pos: -9.5,77.5 - parent: 1 - type: Transform - - uid: 969 - components: - - pos: -8.5,79.5 - parent: 1 - type: Transform - - uid: 970 - components: - - pos: -8.5,80.5 - parent: 1 - type: Transform - - uid: 971 - components: - - pos: -7.5,82.5 - parent: 1 - type: Transform - - uid: 1045 - components: - - pos: -4.5,29.5 - parent: 1 - type: Transform - - uid: 1059 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,31.5 - parent: 1 - type: Transform - - uid: 1077 - components: - - pos: -7.5,35.5 - parent: 1 - type: Transform - - uid: 1078 - components: - - pos: -6.5,35.5 - parent: 1 - type: Transform - - uid: 1079 - components: - - pos: -5.5,35.5 - parent: 1 - type: Transform - - uid: 1080 - components: - - pos: -4.5,30.5 - parent: 1 - type: Transform - - uid: 1082 - components: - - pos: -4.5,28.5 - parent: 1 - type: Transform - - uid: 1083 - components: - - pos: -7.5,27.5 - parent: 1 - type: Transform - - uid: 1085 - components: - - pos: -5.5,27.5 - parent: 1 - type: Transform - - uid: 1086 - components: - - pos: -8.5,28.5 - parent: 1 - type: Transform - - uid: 1087 - components: - - pos: -8.5,29.5 - parent: 1 - type: Transform - - uid: 1088 - components: - - pos: -8.5,30.5 - parent: 1 - type: Transform - - uid: 1089 - components: - - pos: -7.5,31.5 - parent: 1 - type: Transform - - uid: 1090 - components: - - pos: -5.5,31.5 - parent: 1 - type: Transform - - uid: 1091 - components: - - pos: -2.5,30.5 - parent: 1 - type: Transform - - uid: 1092 - components: - - pos: -2.5,29.5 - parent: 1 - type: Transform - - uid: 1093 - components: - - pos: -2.5,28.5 - parent: 1 - type: Transform - - uid: 1097 - components: - - pos: -12.5,30.5 - parent: 1 - type: Transform - - uid: 1099 - components: - - pos: -12.5,28.5 - parent: 1 - type: Transform - - uid: 1100 - components: - - pos: -12.5,27.5 - parent: 1 - type: Transform - - uid: 1104 - components: - - pos: -15.5,26.5 - parent: 1 - type: Transform - - uid: 1105 - components: - - pos: -13.5,26.5 - parent: 1 - type: Transform - - uid: 1108 - components: - - pos: -22.5,19.5 - parent: 1 - type: Transform - - uid: 1115 - components: - - pos: -7.5,25.5 - parent: 1 - type: Transform - - uid: 1116 - components: - - pos: -6.5,25.5 - parent: 1 - type: Transform - - uid: 1117 - components: - - pos: -5.5,25.5 - parent: 1 - type: Transform - - uid: 1133 - components: - - pos: -15.5,16.5 - parent: 1 - type: Transform - - uid: 1134 - components: - - pos: -16.5,16.5 - parent: 1 - type: Transform - - uid: 1135 - components: - - pos: -17.5,16.5 - parent: 1 - type: Transform - - uid: 1140 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,16.5 - parent: 1 - type: Transform - - uid: 1150 - components: - - pos: -11.5,16.5 - parent: 1 - type: Transform - - uid: 1151 - components: - - pos: -12.5,16.5 - parent: 1 - type: Transform - - uid: 1158 - components: - - pos: -2.5,24.5 - parent: 1 - type: Transform - - uid: 1159 - components: - - pos: -2.5,23.5 - parent: 1 - type: Transform - - uid: 1160 - components: - - pos: -2.5,22.5 - parent: 1 - type: Transform - - uid: 1161 - components: - - pos: 1.5,24.5 - parent: 1 - type: Transform - - uid: 1162 - components: - - pos: 1.5,23.5 - parent: 1 - type: Transform - - uid: 1163 - components: - - pos: 1.5,22.5 - parent: 1 - type: Transform - - uid: 1167 - components: - - pos: -8.5,21.5 - parent: 1 - type: Transform - - uid: 1174 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,16.5 - parent: 1 - type: Transform - - uid: 1238 - components: - - pos: -19.5,35.5 - parent: 1 - type: Transform - - uid: 1239 - components: - - pos: -22.5,22.5 - parent: 1 - type: Transform - - uid: 1279 - components: - - pos: -49.5,17.5 - parent: 1 - type: Transform - - uid: 1280 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,26.5 - parent: 1 - type: Transform - - uid: 1290 - components: - - pos: -46.5,34.5 - parent: 1 - type: Transform - - uid: 1291 - components: - - pos: -50.5,34.5 - parent: 1 - type: Transform - - uid: 1294 - components: - - pos: -46.5,17.5 - parent: 1 - type: Transform - - uid: 1296 - components: - - pos: -49.5,34.5 - parent: 1 - type: Transform - - uid: 1303 - components: - - pos: -22.5,20.5 - parent: 1 - type: Transform - - uid: 1323 - components: - - pos: -19.5,39.5 - parent: 1 - type: Transform - - uid: 1324 - components: - - pos: -18.5,39.5 - parent: 1 - type: Transform - - uid: 1325 - components: - - pos: -16.5,39.5 - parent: 1 - type: Transform - - uid: 1326 - components: - - pos: -15.5,39.5 - parent: 1 - type: Transform - - uid: 1327 - components: - - pos: -13.5,39.5 - parent: 1 - type: Transform - - uid: 1328 - components: - - pos: -12.5,39.5 - parent: 1 - type: Transform - - uid: 1329 - components: - - pos: -10.5,39.5 - parent: 1 - type: Transform - - uid: 1330 - components: - - pos: -9.5,39.5 - parent: 1 - type: Transform - - uid: 1331 - components: - - pos: -7.5,39.5 - parent: 1 - type: Transform - - uid: 1332 - components: - - pos: -6.5,39.5 - parent: 1 - type: Transform - - uid: 1333 - components: - - pos: -4.5,39.5 - parent: 1 - type: Transform - - uid: 1334 - components: - - pos: -3.5,39.5 - parent: 1 - type: Transform - - uid: 1351 - components: - - pos: -4.5,56.5 - parent: 1 - type: Transform - - uid: 1352 - components: - - pos: -4.5,57.5 - parent: 1 - type: Transform - - uid: 1362 - components: - - pos: -7.5,53.5 - parent: 1 - type: Transform - - uid: 1363 - components: - - pos: -7.5,52.5 - parent: 1 - type: Transform - - uid: 1367 - components: - - pos: -13.5,43.5 - parent: 1 - type: Transform - - uid: 1368 - components: - - pos: -10.5,43.5 - parent: 1 - type: Transform - - uid: 1369 - components: - - pos: -7.5,43.5 - parent: 1 - type: Transform - - uid: 1370 - components: - - pos: -4.5,43.5 - parent: 1 - type: Transform - - uid: 1371 - components: - - pos: -3.5,47.5 - parent: 1 - type: Transform - - uid: 1372 - components: - - pos: -4.5,47.5 - parent: 1 - type: Transform - - uid: 1391 - components: - - pos: -19.5,43.5 - parent: 1 - type: Transform - - uid: 1392 - components: - - pos: -18.5,43.5 - parent: 1 - type: Transform - - uid: 1393 - components: - - pos: -16.5,43.5 - parent: 1 - type: Transform - - uid: 1394 - components: - - pos: -15.5,43.5 - parent: 1 - type: Transform - - uid: 1442 - components: - - pos: -24.5,44.5 - parent: 1 - type: Transform - - uid: 1443 - components: - - pos: -24.5,43.5 - parent: 1 - type: Transform - - uid: 1444 - components: - - pos: -24.5,42.5 - parent: 1 - type: Transform - - uid: 1448 - components: - - pos: -15.5,49.5 - parent: 1 - type: Transform - - uid: 1449 - components: - - pos: -15.5,48.5 - parent: 1 - type: Transform - - uid: 1518 - components: - - pos: -39.5,46.5 - parent: 1 - type: Transform - - uid: 1519 - components: - - pos: -39.5,45.5 - parent: 1 - type: Transform - - uid: 1521 - components: - - pos: -26.5,44.5 - parent: 1 - type: Transform - - uid: 1522 - components: - - pos: -26.5,43.5 - parent: 1 - type: Transform - - uid: 1523 - components: - - pos: -26.5,42.5 - parent: 1 - type: Transform - - uid: 1525 - components: - - pos: -32.5,41.5 - parent: 1 - type: Transform - - uid: 1526 - components: - - pos: -31.5,41.5 - parent: 1 - type: Transform - - uid: 1527 - components: - - pos: -30.5,41.5 - parent: 1 - type: Transform - - uid: 1537 - components: - - pos: -35.5,41.5 - parent: 1 - type: Transform - - uid: 1542 - components: - - pos: -34.5,41.5 - parent: 1 - type: Transform - - uid: 1543 - components: - - pos: -34.5,39.5 - parent: 1 - type: Transform - - uid: 1545 - components: - - pos: -35.5,39.5 - parent: 1 - type: Transform - - uid: 1547 - components: - - pos: -32.5,39.5 - parent: 1 - type: Transform - - uid: 1548 - components: - - pos: -31.5,39.5 - parent: 1 - type: Transform - - uid: 1549 - components: - - pos: -30.5,39.5 - parent: 1 - type: Transform - - uid: 1566 - components: - - pos: -39.5,43.5 - parent: 1 - type: Transform - - uid: 1567 - components: - - pos: -39.5,42.5 - parent: 1 - type: Transform - - uid: 1571 - components: - - pos: -27.5,46.5 - parent: 1 - type: Transform - - uid: 1577 - components: - - pos: -41.5,46.5 - parent: 1 - type: Transform - - uid: 1580 - components: - - pos: -41.5,43.5 - parent: 1 - type: Transform - - uid: 1581 - components: - - pos: -41.5,42.5 - parent: 1 - type: Transform - - uid: 1590 - components: - - pos: -28.5,46.5 - parent: 1 - type: Transform - - uid: 1614 - components: - - pos: -32.5,57.5 - parent: 1 - type: Transform - - uid: 1622 - components: - - pos: -40.5,55.5 - parent: 1 - type: Transform - - uid: 1643 - components: - - pos: -52.5,35.5 - parent: 1 - type: Transform - - uid: 1644 - components: - - pos: -52.5,39.5 - parent: 1 - type: Transform - - uid: 1645 - components: - - pos: -50.5,41.5 - parent: 1 - type: Transform - - uid: 1646 - components: - - pos: -50.5,42.5 - parent: 1 - type: Transform - - uid: 1647 - components: - - pos: -50.5,43.5 - parent: 1 - type: Transform - - uid: 1648 - components: - - pos: -50.5,44.5 - parent: 1 - type: Transform - - uid: 1649 - components: - - pos: -49.5,45.5 - parent: 1 - type: Transform - - uid: 1650 - components: - - pos: -48.5,46.5 - parent: 1 - type: Transform - - uid: 1651 - components: - - pos: -48.5,47.5 - parent: 1 - type: Transform - - uid: 1652 - components: - - pos: -48.5,48.5 - parent: 1 - type: Transform - - uid: 1653 - components: - - pos: -47.5,49.5 - parent: 1 - type: Transform - - uid: 1654 - components: - - pos: -46.5,49.5 - parent: 1 - type: Transform - - uid: 1655 - components: - - pos: -45.5,50.5 - parent: 1 - type: Transform - - uid: 1656 - components: - - pos: -45.5,51.5 - parent: 1 - type: Transform - - uid: 1657 - components: - - pos: -44.5,52.5 - parent: 1 - type: Transform - - uid: 1658 - components: - - pos: -43.5,52.5 - parent: 1 - type: Transform - - uid: 1659 - components: - - pos: -42.5,52.5 - parent: 1 - type: Transform - - uid: 1661 - components: - - pos: -40.5,54.5 - parent: 1 - type: Transform - - uid: 1667 - components: - - pos: -35.5,57.5 - parent: 1 - type: Transform - - uid: 1668 - components: - - pos: -34.5,57.5 - parent: 1 - type: Transform - - uid: 1671 - components: - - pos: -30.5,58.5 - parent: 1 - type: Transform - - uid: 1672 - components: - - pos: -29.5,59.5 - parent: 1 - type: Transform - - uid: 1673 - components: - - pos: -28.5,59.5 - parent: 1 - type: Transform - - uid: 1674 - components: - - pos: -27.5,59.5 - parent: 1 - type: Transform - - uid: 1675 - components: - - pos: -24.5,59.5 - parent: 1 - type: Transform - - uid: 1676 - components: - - pos: -23.5,59.5 - parent: 1 - type: Transform - - uid: 1677 - components: - - pos: -22.5,59.5 - parent: 1 - type: Transform - - uid: 1678 - components: - - pos: -20.5,61.5 - parent: 1 - type: Transform - - uid: 1679 - components: - - pos: -20.5,62.5 - parent: 1 - type: Transform - - uid: 1680 - components: - - pos: -20.5,63.5 - parent: 1 - type: Transform - - uid: 1681 - components: - - pos: -20.5,64.5 - parent: 1 - type: Transform - - uid: 1682 - components: - - pos: -19.5,65.5 - parent: 1 - type: Transform - - uid: 1683 - components: - - pos: -18.5,65.5 - parent: 1 - type: Transform - - uid: 1684 - components: - - pos: -17.5,65.5 - parent: 1 - type: Transform - - uid: 1685 - components: - - pos: -16.5,65.5 - parent: 1 - type: Transform - - uid: 1686 - components: - - pos: -14.5,67.5 - parent: 1 - type: Transform - - uid: 1687 - components: - - pos: -14.5,68.5 - parent: 1 - type: Transform - - uid: 1688 - components: - - pos: -14.5,69.5 - parent: 1 - type: Transform - - uid: 1689 - components: - - pos: -14.5,70.5 - parent: 1 - type: Transform - - uid: 1690 - components: - - pos: -13.5,71.5 - parent: 1 - type: Transform - - uid: 1691 - components: - - pos: -12.5,71.5 - parent: 1 - type: Transform - - uid: 1717 - components: - - pos: -41.5,45.5 - parent: 1 - type: Transform - - uid: 1721 - components: - - pos: -40.5,34.5 - parent: 1 - type: Transform - - uid: 1722 - components: - - pos: -40.5,33.5 - parent: 1 - type: Transform - - uid: 1723 - components: - - pos: -40.5,32.5 - parent: 1 - type: Transform - - uid: 1727 - components: - - pos: -43.5,35.5 - parent: 1 - type: Transform - - uid: 1728 - components: - - pos: -42.5,35.5 - parent: 1 - type: Transform - - uid: 1729 - components: - - pos: -41.5,35.5 - parent: 1 - type: Transform - - uid: 1763 - components: - - pos: -40.5,17.5 - parent: 1 - type: Transform - - uid: 1764 - components: - - pos: -40.5,18.5 - parent: 1 - type: Transform - - uid: 1765 - components: - - pos: -40.5,19.5 - parent: 1 - type: Transform - - uid: 1796 - components: - - pos: -15.5,57.5 - parent: 1 - type: Transform - - uid: 1797 - components: - - pos: -14.5,57.5 - parent: 1 - type: Transform - - uid: 1801 - components: - - pos: -15.5,50.5 - parent: 1 - type: Transform - - uid: 1805 - components: - - pos: -14.5,47.5 - parent: 1 - type: Transform - - uid: 1833 - components: - - pos: -14.5,51.5 - parent: 1 - type: Transform - - uid: 1835 - components: - - pos: -11.5,51.5 - parent: 1 - type: Transform - - uid: 1838 - components: - - pos: -13.5,51.5 - parent: 1 - type: Transform - - uid: 1839 - components: - - pos: -10.5,50.5 - parent: 1 - type: Transform - - uid: 1840 - components: - - pos: -11.5,47.5 - parent: 1 - type: Transform - - uid: 1967 - components: - - rot: 3.141592653589793 rad - pos: -50.5,-10.5 - parent: 1 - type: Transform - - uid: 1968 - components: - - rot: 3.141592653589793 rad - pos: -52.5,-10.5 - parent: 1 - type: Transform - - uid: 1969 - components: - - rot: 3.141592653589793 rad - pos: -51.5,-11.5 - parent: 1 - type: Transform - - uid: 1970 - components: - - rot: 3.141592653589793 rad - pos: -50.5,-12.5 - parent: 1 - type: Transform - - uid: 1971 - components: - - rot: 3.141592653589793 rad - pos: -46.5,-12.5 - parent: 1 - type: Transform - - uid: 1972 - components: - - rot: 3.141592653589793 rad - pos: -45.5,-11.5 - parent: 1 - type: Transform - - uid: 1973 - components: - - rot: 3.141592653589793 rad - pos: -46.5,-10.5 - parent: 1 - type: Transform - - uid: 1974 - components: - - rot: 3.141592653589793 rad - pos: -52.5,-6.5 - parent: 1 - type: Transform - - uid: 1975 - components: - - rot: 3.141592653589793 rad - pos: -50.5,-5.5 - parent: 1 - type: Transform - - uid: 1976 - components: - - rot: 3.141592653589793 rad - pos: -49.5,-5.5 - parent: 1 - type: Transform - - uid: 1977 - components: - - rot: 3.141592653589793 rad - pos: -48.5,-5.5 - parent: 1 - type: Transform - - uid: 1978 - components: - - rot: 3.141592653589793 rad - pos: -47.5,-5.5 - parent: 1 - type: Transform - - uid: 1979 - components: - - rot: 3.141592653589793 rad - pos: -46.5,-5.5 - parent: 1 - type: Transform - - uid: 1980 - components: - - rot: 3.141592653589793 rad - pos: -46.5,11.5 - parent: 1 - type: Transform - - uid: 1981 - components: - - rot: 3.141592653589793 rad - pos: -47.5,11.5 - parent: 1 - type: Transform - - uid: 1982 - components: - - rot: 3.141592653589793 rad - pos: -48.5,11.5 - parent: 1 - type: Transform - - uid: 1983 - components: - - rot: 3.141592653589793 rad - pos: -49.5,11.5 - parent: 1 - type: Transform - - uid: 1984 - components: - - rot: 3.141592653589793 rad - pos: -50.5,11.5 - parent: 1 - type: Transform - - uid: 1985 - components: - - rot: 3.141592653589793 rad - pos: -52.5,12.5 - parent: 1 - type: Transform - - uid: 1986 - components: - - rot: 3.141592653589793 rad - pos: -52.5,16.5 - parent: 1 - type: Transform - - uid: 1989 - components: - - pos: -41.5,29.5 - parent: 1 - type: Transform - - uid: 1993 - components: - - pos: 48.5,-15.5 - parent: 1 - type: Transform - - uid: 1999 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-5.5 - parent: 1 - type: Transform - - uid: 2000 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-5.5 - parent: 1 - type: Transform - - uid: 2004 - components: - - pos: 41.5,-10.5 - parent: 1 - type: Transform - - uid: 2007 - components: - - pos: 49.5,-15.5 - parent: 1 - type: Transform - - uid: 2020 - components: - - pos: 34.5,-6.5 - parent: 1 - type: Transform - - uid: 2021 - components: - - pos: 35.5,-6.5 - parent: 1 - type: Transform - - uid: 2022 - components: - - pos: 36.5,-6.5 - parent: 1 - type: Transform - - uid: 2023 - components: - - pos: 37.5,-6.5 - parent: 1 - type: Transform - - uid: 2024 - components: - - pos: 39.5,-6.5 - parent: 1 - type: Transform - - uid: 2025 - components: - - pos: 40.5,-6.5 - parent: 1 - type: Transform - - uid: 2026 - components: - - pos: 41.5,-6.5 - parent: 1 - type: Transform - - uid: 2027 - components: - - pos: 42.5,-6.5 - parent: 1 - type: Transform - - uid: 2049 - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-5.5 - parent: 1 - type: Transform - - uid: 2053 - components: - - pos: 44.5,-13.5 - parent: 1 - type: Transform - - uid: 2054 - components: - - pos: 42.5,-10.5 - parent: 1 - type: Transform - - uid: 2058 - components: - - pos: 50.5,-12.5 - parent: 1 - type: Transform - - uid: 2110 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,7.5 - parent: 1 - type: Transform - - uid: 2111 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,6.5 - parent: 1 - type: Transform - - uid: 2112 - components: - - pos: 33.5,-3.5 - parent: 1 - type: Transform - - uid: 2113 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,5.5 - parent: 1 - type: Transform - - uid: 2120 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,0.5 - parent: 1 - type: Transform - - uid: 2121 - components: - - pos: 33.5,-4.5 - parent: 1 - type: Transform - - uid: 2122 - components: - - pos: 33.5,-5.5 - parent: 1 - type: Transform - - uid: 2268 - components: - - pos: -4.5,-18.5 - parent: 1 - type: Transform - - uid: 2269 - components: - - pos: -4.5,-19.5 - parent: 1 - type: Transform - - uid: 2270 - components: - - pos: -4.5,-20.5 - parent: 1 - type: Transform - - uid: 2271 - components: - - pos: -4.5,-21.5 - parent: 1 - type: Transform - - uid: 2272 - components: - - pos: -4.5,-22.5 - parent: 1 - type: Transform - - uid: 2273 - components: - - pos: -4.5,-23.5 - parent: 1 - type: Transform - - uid: 2274 - components: - - pos: -4.5,-24.5 - parent: 1 - type: Transform - - uid: 2275 - components: - - pos: -4.5,-25.5 - parent: 1 - type: Transform - - uid: 2276 - components: - - pos: -4.5,-26.5 - parent: 1 - type: Transform - - uid: 2277 - components: - - pos: -4.5,-27.5 - parent: 1 - type: Transform - - uid: 2278 - components: - - pos: -4.5,-28.5 - parent: 1 - type: Transform - - uid: 2279 - components: - - pos: -4.5,-29.5 - parent: 1 - type: Transform - - uid: 2280 - components: - - pos: -4.5,-30.5 - parent: 1 - type: Transform - - uid: 2282 - components: - - pos: -4.5,-32.5 - parent: 1 - type: Transform - - uid: 2283 - components: - - pos: -4.5,-33.5 - parent: 1 - type: Transform - - uid: 2284 - components: - - pos: -4.5,-34.5 - parent: 1 - type: Transform - - uid: 2285 - components: - - pos: -4.5,-35.5 - parent: 1 - type: Transform - - uid: 2286 - components: - - pos: -4.5,-36.5 - parent: 1 - type: Transform - - uid: 2287 - components: - - pos: -4.5,-38.5 - parent: 1 - type: Transform - - uid: 2288 - components: - - pos: -4.5,-39.5 - parent: 1 - type: Transform - - uid: 2289 - components: - - pos: -4.5,-40.5 - parent: 1 - type: Transform - - uid: 2290 - components: - - pos: -4.5,-41.5 - parent: 1 - type: Transform - - uid: 2300 - components: - - pos: -8.5,-42.5 - parent: 1 - type: Transform - - uid: 2334 - components: - - pos: 5.5,-11.5 - parent: 1 - type: Transform - - uid: 2345 - components: - - pos: -7.5,-42.5 - parent: 1 - type: Transform - - uid: 2346 - components: - - pos: -6.5,-42.5 - parent: 1 - type: Transform - - uid: 2347 - components: - - pos: 5.5,-42.5 - parent: 1 - type: Transform - - uid: 2348 - components: - - pos: 6.5,-42.5 - parent: 1 - type: Transform - - uid: 2349 - components: - - pos: 7.5,-42.5 - parent: 1 - type: Transform - - uid: 2350 - components: - - pos: 3.5,-32.5 - parent: 1 - type: Transform - - uid: 2351 - components: - - pos: 3.5,-33.5 - parent: 1 - type: Transform - - uid: 2352 - components: - - pos: 3.5,-34.5 - parent: 1 - type: Transform - - uid: 2353 - components: - - pos: 3.5,-37.5 - parent: 1 - type: Transform - - uid: 2354 - components: - - pos: 3.5,-36.5 - parent: 1 - type: Transform - - uid: 2355 - components: - - pos: 3.5,-38.5 - parent: 1 - type: Transform - - uid: 2356 - components: - - pos: 3.5,-39.5 - parent: 1 - type: Transform - - uid: 2357 - components: - - pos: 3.5,-40.5 - parent: 1 - type: Transform - - uid: 2358 - components: - - pos: 3.5,-41.5 - parent: 1 - type: Transform - - uid: 2369 - components: - - pos: 38.5,-16.5 - parent: 1 - type: Transform - - uid: 2370 - components: - - pos: 36.5,-19.5 - parent: 1 - type: Transform - - uid: 2371 - components: - - pos: 36.5,-20.5 - parent: 1 - type: Transform - - uid: 2374 - components: - - pos: -6.5,-11.5 - parent: 1 - type: Transform - - uid: 2390 - components: - - pos: -9.5,-10.5 - parent: 1 - type: Transform - - uid: 2446 - components: - - pos: 6.5,-27.5 - parent: 1 - type: Transform - - uid: 2447 - components: - - pos: 7.5,-27.5 - parent: 1 - type: Transform - - uid: 2448 - components: - - pos: -10.5,-10.5 - parent: 1 - type: Transform - - uid: 2460 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-16.5 - parent: 1 - type: Transform - - uid: 2473 - components: - - pos: 8.5,-10.5 - parent: 1 - type: Transform - - uid: 2474 - components: - - pos: 9.5,-10.5 - parent: 1 - type: Transform - - uid: 2538 - components: - - pos: 33.5,11.5 - parent: 1 - type: Transform - - uid: 2539 - components: - - pos: 33.5,10.5 - parent: 1 - type: Transform - - uid: 2540 - components: - - pos: 33.5,9.5 - parent: 1 - type: Transform - - uid: 2888 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,4.5 - parent: 1 - type: Transform - - uid: 2889 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,5.5 - parent: 1 - type: Transform - - uid: 2890 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,6.5 - parent: 1 - type: Transform - - uid: 2919 - components: - - pos: 38.5,-17.5 - parent: 1 - type: Transform - - uid: 2920 - components: - - pos: 35.5,-22.5 - parent: 1 - type: Transform - - uid: 2921 - components: - - pos: 33.5,-23.5 - parent: 1 - type: Transform - - uid: 2922 - components: - - pos: 33.5,-24.5 - parent: 1 - type: Transform - - uid: 2923 - components: - - pos: 32.5,-25.5 - parent: 1 - type: Transform - - uid: 2947 - components: - - pos: -40.5,-13.5 - parent: 1 - type: Transform - - uid: 3090 - components: - - pos: 40.5,-11.5 - parent: 1 - type: Transform - - uid: 3101 - components: - - pos: 39.5,-13.5 - parent: 1 - type: Transform - - uid: 3106 - components: - - pos: 22.5,-29.5 - parent: 1 - type: Transform - - uid: 3107 - components: - - pos: 22.5,-30.5 - parent: 1 - type: Transform - - uid: 3108 - components: - - pos: 21.5,-31.5 - parent: 1 - type: Transform - - uid: 3109 - components: - - pos: 20.5,-33.5 - parent: 1 - type: Transform - - uid: 3110 - components: - - pos: 20.5,-34.5 - parent: 1 - type: Transform - - uid: 3111 - components: - - pos: 20.5,-36.5 - parent: 1 - type: Transform - - uid: 3112 - components: - - pos: 20.5,-37.5 - parent: 1 - type: Transform - - uid: 3114 - components: - - pos: 18.5,-38.5 - parent: 1 - type: Transform - - uid: 3115 - components: - - pos: 17.5,-39.5 - parent: 1 - type: Transform - - uid: 3116 - components: - - pos: 17.5,-40.5 - parent: 1 - type: Transform - - uid: 3117 - components: - - pos: -13.5,-25.5 - parent: 1 - type: Transform - - uid: 3118 - components: - - pos: -12.5,-25.5 - parent: 1 - type: Transform - - uid: 3119 - components: - - pos: -13.5,-30.5 - parent: 1 - type: Transform - - uid: 3120 - components: - - pos: -12.5,-30.5 - parent: 1 - type: Transform - - uid: 3121 - components: - - pos: -17.5,-41.5 - parent: 1 - type: Transform - - uid: 3122 - components: - - pos: -18.5,-40.5 - parent: 1 - type: Transform - - uid: 3123 - components: - - pos: -18.5,-39.5 - parent: 1 - type: Transform - - uid: 3124 - components: - - pos: -19.5,-38.5 - parent: 1 - type: Transform - - uid: 3125 - components: - - pos: -20.5,-38.5 - parent: 1 - type: Transform - - uid: 3126 - components: - - pos: -21.5,-37.5 - parent: 1 - type: Transform - - uid: 3127 - components: - - pos: -21.5,-36.5 - parent: 1 - type: Transform - - uid: 3128 - components: - - pos: -21.5,-34.5 - parent: 1 - type: Transform - - uid: 3129 - components: - - pos: -21.5,-33.5 - parent: 1 - type: Transform - - uid: 3130 - components: - - pos: -22.5,-31.5 - parent: 1 - type: Transform - - uid: 3131 - components: - - pos: -23.5,-30.5 - parent: 1 - type: Transform - - uid: 3132 - components: - - pos: -23.5,-29.5 - parent: 1 - type: Transform - - uid: 3136 - components: - - pos: 34.5,-22.5 - parent: 1 - type: Transform - - uid: 3137 - components: - - pos: 36.5,-21.5 - parent: 1 - type: Transform - - uid: 3138 - components: - - pos: 31.5,-25.5 - parent: 1 - type: Transform - - uid: 3140 - components: - - pos: 28.5,-27.5 - parent: 1 - type: Transform - - uid: 3143 - components: - - pos: -16.5,23.5 - parent: 1 - type: Transform - - uid: 3154 - components: - - pos: -17.5,23.5 - parent: 1 - type: Transform - - uid: 3157 - components: - - pos: 24.5,-27.5 - parent: 1 - type: Transform - - uid: 3159 - components: - - pos: 30.5,-25.5 - parent: 1 - type: Transform - - uid: 3194 - components: - - rot: 3.141592653589793 rad - pos: 36.5,53.5 - parent: 1 - type: Transform - - uid: 3325 - components: - - rot: 3.141592653589793 rad - pos: 6.5,51.5 - parent: 1 - type: Transform - - uid: 3338 - components: - - rot: 3.141592653589793 rad - pos: 5.5,51.5 - parent: 1 - type: Transform - - uid: 3339 - components: - - rot: 3.141592653589793 rad - pos: 5.5,49.5 - parent: 1 - type: Transform - - uid: 3347 - components: - - rot: 3.141592653589793 rad - pos: 1.5,44.5 - parent: 1 - type: Transform - - uid: 3367 - components: - - rot: 3.141592653589793 rad - pos: 1.5,49.5 - parent: 1 - type: Transform - - uid: 3516 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-41.5 - parent: 1 - type: Transform - - uid: 3519 - components: - - pos: -47.5,17.5 - parent: 1 - type: Transform - - uid: 3575 - components: - - pos: 28.5,-10.5 - parent: 1 - type: Transform - - uid: 3610 - components: - - pos: 9.5,24.5 - parent: 1 - type: Transform - - uid: 3687 - components: - - pos: 16.5,35.5 - parent: 1 - type: Transform - - uid: 3688 - components: - - pos: 15.5,35.5 - parent: 1 - type: Transform - - uid: 3689 - components: - - pos: 14.5,35.5 - parent: 1 - type: Transform - - uid: 3690 - components: - - pos: 13.5,32.5 - parent: 1 - type: Transform - - uid: 3691 - components: - - pos: 13.5,32.5 - parent: 1 - type: Transform - - uid: 3695 - components: - - pos: 12.5,35.5 - parent: 1 - type: Transform - - uid: 3696 - components: - - pos: 11.5,35.5 - parent: 1 - type: Transform - - uid: 3697 - components: - - pos: 10.5,35.5 - parent: 1 - type: Transform - - uid: 3734 - components: - - pos: 22.5,-10.5 - parent: 1 - type: Transform - - uid: 3785 - components: - - pos: 17.5,-20.5 - parent: 1 - type: Transform - - uid: 3786 - components: - - pos: 18.5,-20.5 - parent: 1 - type: Transform - - uid: 3787 - components: - - pos: 19.5,-22.5 - parent: 1 - type: Transform - - uid: 3788 - components: - - pos: 19.5,-23.5 - parent: 1 - type: Transform - - uid: 3789 - components: - - pos: 19.5,-24.5 - parent: 1 - type: Transform - - uid: 3790 - components: - - pos: 17.5,-26.5 - parent: 1 - type: Transform - - uid: 3791 - components: - - pos: 18.5,-26.5 - parent: 1 - type: Transform - - uid: 3792 - components: - - pos: 21.5,-22.5 - parent: 1 - type: Transform - - uid: 3793 - components: - - pos: 21.5,-23.5 - parent: 1 - type: Transform - - uid: 3794 - components: - - pos: 21.5,-24.5 - parent: 1 - type: Transform - - uid: 3795 - components: - - pos: 17.5,-28.5 - parent: 1 - type: Transform - - uid: 3796 - components: - - pos: 18.5,-28.5 - parent: 1 - type: Transform - - uid: 3809 - components: - - pos: 23.5,-15.5 - parent: 1 - type: Transform - - uid: 3810 - components: - - pos: 23.5,-14.5 - parent: 1 - type: Transform - - uid: 3811 - components: - - pos: 23.5,-16.5 - parent: 1 - type: Transform - - uid: 3965 - components: - - pos: 4.5,35.5 - parent: 1 - type: Transform - - uid: 3966 - components: - - pos: 5.5,35.5 - parent: 1 - type: Transform - - uid: 3967 - components: - - pos: 6.5,35.5 - parent: 1 - type: Transform - - uid: 4106 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,35.5 - parent: 1 - type: Transform - - uid: 4107 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,35.5 - parent: 1 - type: Transform - - uid: 4112 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,20.5 - parent: 1 - type: Transform - - uid: 4113 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,20.5 - parent: 1 - type: Transform - - uid: 4123 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,16.5 - parent: 1 - type: Transform - - uid: 4124 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,16.5 - parent: 1 - type: Transform - - uid: 4125 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,16.5 - parent: 1 - type: Transform - - uid: 4216 - components: - - pos: 10.5,-29.5 - parent: 1 - type: Transform - - uid: 4420 - components: - - pos: 15.5,30.5 - parent: 1 - type: Transform - - uid: 4489 - components: - - pos: -41.5,-11.5 - parent: 1 - type: Transform - - uid: 4491 - components: - - pos: -39.5,-16.5 - parent: 1 - type: Transform - - uid: 4492 - components: - - pos: -39.5,-17.5 - parent: 1 - type: Transform - - uid: 4493 - components: - - pos: -37.5,-19.5 - parent: 1 - type: Transform - - uid: 4494 - components: - - pos: -37.5,-20.5 - parent: 1 - type: Transform - - uid: 4495 - components: - - pos: -37.5,-21.5 - parent: 1 - type: Transform - - uid: 4496 - components: - - pos: -36.5,-22.5 - parent: 1 - type: Transform - - uid: 4497 - components: - - pos: -35.5,-22.5 - parent: 1 - type: Transform - - uid: 4498 - components: - - pos: -34.5,-23.5 - parent: 1 - type: Transform - - uid: 4499 - components: - - pos: -34.5,-24.5 - parent: 1 - type: Transform - - uid: 4500 - components: - - pos: -33.5,-25.5 - parent: 1 - type: Transform - - uid: 4501 - components: - - pos: -32.5,-25.5 - parent: 1 - type: Transform - - uid: 4502 - components: - - pos: -31.5,-25.5 - parent: 1 - type: Transform - - uid: 4503 - components: - - pos: -29.5,-27.5 - parent: 1 - type: Transform - - uid: 4506 - components: - - pos: -25.5,-27.5 - parent: 1 - type: Transform - - uid: 4509 - components: - - pos: 45.5,35.5 - parent: 1 - type: Transform - - uid: 4510 - components: - - pos: 49.5,35.5 - parent: 1 - type: Transform - - uid: 4570 - components: - - pos: 15.5,-10.5 - parent: 1 - type: Transform - - uid: 4577 - components: - - pos: -15.5,23.5 - parent: 1 - type: Transform - - uid: 4580 - components: - - pos: -13.5,18.5 - parent: 1 - type: Transform - - uid: 4581 - components: - - pos: -13.5,19.5 - parent: 1 - type: Transform - - uid: 5751 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,31.5 - parent: 1 - type: Transform - - uid: 5752 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,34.5 - parent: 1 - type: Transform - - uid: 5829 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-3.5 - parent: 1 - type: Transform - - uid: 6211 - components: - - pos: -37.5,53.5 - parent: 1 - type: Transform - - uid: 6401 - components: - - pos: 10.5,21.5 - parent: 1 - type: Transform - - uid: 6402 - components: - - pos: 12.5,21.5 - parent: 1 - type: Transform - - uid: 6481 - components: - - pos: 46.5,-15.5 - parent: 1 - type: Transform - - uid: 6495 - components: - - pos: 43.5,-10.5 - parent: 1 - type: Transform - - uid: 6518 - components: - - pos: 50.5,-11.5 - parent: 1 - type: Transform - - uid: 6523 - components: - - pos: 44.5,-14.5 - parent: 1 - type: Transform - - uid: 6524 - components: - - pos: 44.5,-11.5 - parent: 1 - type: Transform - - uid: 6556 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,7.5 - parent: 1 - type: Transform - - uid: 6569 - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-5.5 - parent: 1 - type: Transform - - uid: 6696 - components: - - pos: 1.5,33.5 - parent: 1 - type: Transform - - uid: 7102 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-16.5 - parent: 1 - type: Transform - - uid: 7180 - components: - - pos: -48.5,34.5 - parent: 1 - type: Transform - - uid: 7181 - components: - - pos: -47.5,34.5 - parent: 1 - type: Transform - - uid: 7246 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-18.5 - parent: 1 - type: Transform - - uid: 7247 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-18.5 - parent: 1 - type: Transform - - uid: 7249 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-15.5 - parent: 1 - type: Transform - - uid: 7265 - components: - - pos: -31.5,57.5 - parent: 1 - type: Transform - - uid: 7425 - components: - - pos: -26.5,-28.5 - parent: 1 - type: Transform - - uid: 7426 - components: - - pos: 27.5,-28.5 - parent: 1 - type: Transform - - uid: 7429 - components: - - pos: 25.5,-28.5 - parent: 1 - type: Transform - - uid: 7632 - components: - - pos: -28.5,-28.5 - parent: 1 - type: Transform - - uid: 7824 - components: - - pos: -42.5,29.5 - parent: 1 - type: Transform - - uid: 7870 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,2.5 - parent: 1 - type: Transform - - uid: 7926 - components: - - rot: -1.5707963267948966 rad - pos: -43.5,21.5 - parent: 1 - type: Transform - - uid: 7927 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,29.5 - parent: 1 - type: Transform - - uid: 7928 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,29.5 - parent: 1 - type: Transform - - uid: 7929 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,26.5 - parent: 1 - type: Transform - - uid: 7930 - components: - - rot: -1.5707963267948966 rad - pos: -43.5,25.5 - parent: 1 - type: Transform - - uid: 8519 - components: - - pos: 1.5,27.5 - parent: 1 - type: Transform - - uid: 8533 - components: - - pos: 1.5,30.5 - parent: 1 - type: Transform - - uid: 8626 - components: - - pos: 4.5,4.5 - parent: 1 - type: Transform - - uid: 8913 - components: - - pos: 4.5,0.5 - parent: 1 - type: Transform - - uid: 8914 - components: - - pos: 4.5,1.5 - parent: 1 - type: Transform - - uid: 8921 - components: - - pos: 4.5,7.5 - parent: 1 - type: Transform - - uid: 8922 - components: - - pos: 4.5,6.5 - parent: 1 - type: Transform - - uid: 14086 - components: - - pos: -48.5,17.5 - parent: 1 - type: Transform - - uid: 14087 - components: - - pos: -50.5,17.5 - parent: 1 - type: Transform -- proto: ResearchAndDevelopmentServer - entities: - - uid: 3557 - components: - - pos: -25.5,23.5 - parent: 1 - type: Transform -- proto: ResearchComputerCircuitboard - entities: - - uid: 18335 - components: - - pos: 18.514442,-25.182604 - parent: 1 - type: Transform -- proto: RevolverCapGun - entities: - - uid: 3188 - components: - - pos: 46.541428,46.92756 - parent: 1 - type: Transform - - uid: 4365 - components: - - pos: -16.450819,5.681794 - parent: 1 - type: Transform -- proto: RiotShield - entities: - - uid: 7800 - components: - - pos: -18.644022,40.739033 - parent: 1 - type: Transform - - uid: 7801 - components: - - pos: -18.456522,40.489033 - parent: 1 - type: Transform -- proto: RitualDagger - entities: - - uid: 13305 - components: - - pos: -13.567444,6.478457 - parent: 1 - type: Transform -- proto: RobustHarvestChemistryBottle - entities: - - uid: 9008 - components: - - pos: 5.4284496,7.030745 - parent: 1 - type: Transform - - uid: 9009 - components: - - pos: 5.5534496,7.0515785 - parent: 1 - type: Transform -- proto: RollerBed - entities: - - uid: 16376 - components: - - pos: -15.5,56.5 - parent: 1 - type: Transform -- proto: RubberStampApproved - entities: - - uid: 8083 - components: - - pos: 2.6653385,83.53684 - parent: 1 - type: Transform - - uid: 9214 - components: - - pos: 25.569645,4.690318 - parent: 1 - type: Transform - - uid: 9338 - components: - - pos: -43.345627,8.726026 - parent: 1 - type: Transform -- proto: RubberStampDenied - entities: - - uid: 8084 - components: - - pos: 2.4097614,83.2814 - parent: 1 - type: Transform - - uid: 9209 - components: - - pos: 5.143981,72.62612 - parent: 1 - type: Transform - - uid: 9215 - components: - - pos: 25.298811,4.5236516 - parent: 1 - type: Transform - - uid: 9339 - components: - - pos: -43.470627,8.455193 - parent: 1 - type: Transform -- proto: SalvageMagnet - entities: - - uid: 1782 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,20.5 - parent: 1 - type: Transform -- proto: Saw - entities: - - uid: 8601 - components: - - pos: -17.630512,30.59886 - parent: 1 - type: Transform -- proto: SawElectric - entities: - - uid: 8680 - components: - - pos: 20.466082,27.893574 - parent: 1 - type: Transform -- proto: Scalpel - entities: - - uid: 8600 - components: - - pos: -18.439842,30.48533 - parent: 1 - type: Transform -- proto: ScalpelAdvanced - entities: - - uid: 8681 - components: - - pos: 20.409286,27.45365 - parent: 1 - type: Transform -- proto: ScalpelShiv - entities: - - uid: 8264 - components: - - pos: -37.431377,49.512848 - parent: 1 - type: Transform -- proto: Screwdriver - entities: - - uid: 7461 - components: - - pos: 22.634111,-23.425726 - parent: 1 - type: Transform - - uid: 8669 - components: - - pos: -6.6287556,21.412113 - parent: 1 - type: Transform - - uid: 14048 - components: - - pos: 38.58371,54.56172 - parent: 1 - type: Transform -- proto: SecurityTechFab - entities: - - uid: 4355 - components: - - pos: -6.5,64.5 - parent: 1 - type: Transform -- proto: SecurityTechFabCircuitboard - entities: - - uid: 4212 - components: - - pos: 16.470152,-24.41359 - parent: 1 - type: Transform -- proto: SeedExtractor - entities: - - uid: 4330 - components: - - pos: -31.5,49.5 - parent: 1 - type: Transform - - uid: 9045 - components: - - pos: 11.5,8.5 - parent: 1 - type: Transform - - uid: 10955 - components: - - pos: 38.5,-13.5 - parent: 1 - type: Transform -- proto: SheetGlass - entities: - - uid: 6594 - components: - - pos: -6.753741,24.452673 - parent: 1 - type: Transform - - uid: 8724 - components: - - pos: -13.523513,-34.354816 - parent: 1 - type: Transform - - uid: 9121 - components: - - pos: 13.53321,-20.862442 - parent: 1 - type: Transform - - uid: 9230 - components: - - pos: -25.433441,-12.420451 - parent: 1 - type: Transform -- proto: SheetPGlass - entities: - - uid: 9122 - components: - - pos: 13.554044,-21.237442 - parent: 1 - type: Transform -- proto: SheetPlasma1 - entities: - - uid: 7291 - components: - - pos: -18.469332,20.58397 - parent: 1 - type: Transform - - count: 5 - type: Stack - - uid: 10941 - components: - - pos: 35.01931,-21.424337 - parent: 1 - type: Transform -- proto: SheetPlasteel - entities: - - uid: 9227 - components: - - pos: 13.566712,-21.504738 - parent: 1 - type: Transform - - uid: 9228 - components: - - pos: -25.454273,-11.628785 - parent: 1 - type: Transform -- proto: SheetPlastic - entities: - - uid: 4076 - components: - - pos: 9.361496,26.53074 - parent: 1 - type: Transform - - uid: 5811 - components: - - pos: -7.2642546,64.5313 - parent: 1 - type: Transform - - uid: 6593 - components: - - pos: -7.1513085,24.509438 - parent: 1 - type: Transform - - uid: 9305 - components: - - pos: -34.293766,2.546868 - parent: 1 - type: Transform -- proto: SheetSteel - entities: - - uid: 5813 - components: - - pos: -7.6600876,64.57297 - parent: 1 - type: Transform - - uid: 6592 - components: - - pos: -7.463681,24.509438 - parent: 1 - type: Transform - - uid: 8520 - components: - - pos: 9.602876,26.559124 - parent: 1 - type: Transform - - uid: 8701 - components: - - pos: -13.512904,-33.878647 - parent: 1 - type: Transform - - uid: 9120 - components: - - pos: 13.53321,-20.508276 - parent: 1 - type: Transform - - uid: 9188 - components: - - pos: 8.490331,-11.469109 - parent: 1 - type: Transform - - uid: 9229 - components: - - pos: -25.454273,-12.045451 - parent: 1 - type: Transform - - uid: 9304 - components: - - pos: -34.606266,2.567701 - parent: 1 - type: Transform -- proto: Shovel - entities: - - uid: 11082 - components: - - pos: 13.542923,5.535556 - parent: 1 - type: Transform -- proto: ShuttersNormal - entities: - - uid: 1065 - components: - - pos: -13.5,35.5 - parent: 1 - type: Transform - - links: - - 6627 - type: DeviceLinkSink - - uid: 1066 - components: - - pos: -15.5,35.5 - parent: 1 - type: Transform - - links: - - 6627 - type: DeviceLinkSink - - uid: 1106 - components: - - pos: -14.5,35.5 - parent: 1 - type: Transform - - links: - - 6627 - type: DeviceLinkSink -- proto: ShuttersNormalOpen - entities: - - uid: 550 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,24.5 - parent: 1 - type: Transform - - links: - - 2873 - type: DeviceLinkSink - - uid: 4061 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,22.5 - parent: 1 - type: Transform - - links: - - 2873 - type: DeviceLinkSink - - uid: 4078 - components: - - pos: 2.5,20.5 - parent: 1 - type: Transform - - links: - - 2873 - type: DeviceLinkSink - - uid: 5828 - components: - - pos: -41.5,-3.5 - parent: 1 - type: Transform - - links: - - 17634 - type: DeviceLinkSink - - uid: 6653 - components: - - pos: -40.5,-3.5 - parent: 1 - type: Transform - - links: - - 17634 - type: DeviceLinkSink - - uid: 6808 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,24.5 - parent: 1 - type: Transform - - links: - - 2873 - type: DeviceLinkSink - - uid: 7138 - components: - - pos: -5.5,8.5 - parent: 1 - type: Transform - - links: - - 9001 - type: DeviceLinkSink - - uid: 7139 - components: - - pos: -5.5,7.5 - parent: 1 - type: Transform - - links: - - 9001 - type: DeviceLinkSink - - uid: 7140 - components: - - pos: -5.5,6.5 - parent: 1 - type: Transform - - links: - - 9001 - type: DeviceLinkSink - - uid: 7141 - components: - - pos: -6.5,5.5 - parent: 1 - type: Transform - - links: - - 9001 - type: DeviceLinkSink - - uid: 7142 - components: - - pos: -7.5,5.5 - parent: 1 - type: Transform - - links: - - 9001 - type: DeviceLinkSink - - uid: 7143 - components: - - pos: -8.5,5.5 - parent: 1 - type: Transform - - links: - - 9001 - type: DeviceLinkSink - - uid: 8340 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,23.5 - parent: 1 - type: Transform - - links: - - 2873 - type: DeviceLinkSink - - uid: 8497 - components: - - pos: 14.5,35.5 - parent: 1 - type: Transform - - links: - - 8571 - type: DeviceLinkSink - - uid: 8498 - components: - - pos: 15.5,35.5 - parent: 1 - type: Transform - - links: - - 8571 - type: DeviceLinkSink - - uid: 8499 - components: - - pos: 16.5,35.5 - parent: 1 - type: Transform - - links: - - 8571 - type: DeviceLinkSink - - uid: 8500 - components: - - pos: 13.5,32.5 - parent: 1 - type: Transform - - links: - - 8571 - type: DeviceLinkSink - - uid: 8501 - components: - - pos: 15.5,30.5 - parent: 1 - type: Transform - - links: - - 8571 - type: DeviceLinkSink - - uid: 8622 - components: - - pos: -22.5,22.5 - parent: 1 - type: Transform - - uid: 8623 - components: - - pos: -22.5,20.5 - parent: 1 - type: Transform - - uid: 8624 - components: - - pos: -22.5,19.5 - parent: 1 - type: Transform - - uid: 9278 - components: - - pos: 26.5,3.5 - parent: 1 - type: Transform - - links: - - 17647 - type: DeviceLinkSink - - uid: 9279 - components: - - pos: 26.5,4.5 - parent: 1 - type: Transform - - links: - - 17647 - type: DeviceLinkSink - - uid: 9280 - components: - - pos: 26.5,5.5 - parent: 1 - type: Transform - - links: - - 17647 - type: DeviceLinkSink - - uid: 9281 - components: - - pos: 26.5,6.5 - parent: 1 - type: Transform - - links: - - 17647 - type: DeviceLinkSink - - uid: 9343 - components: - - pos: -44.5,9.5 - parent: 1 - type: Transform - - uid: 9344 - components: - - pos: -44.5,8.5 - parent: 1 - type: Transform - - uid: 9345 - components: - - pos: -44.5,7.5 - parent: 1 - type: Transform - - uid: 9346 - components: - - pos: -43.5,6.5 - parent: 1 - type: Transform - - uid: 9347 - components: - - pos: -42.5,6.5 - parent: 1 - type: Transform - - uid: 17631 - components: - - pos: 8.5,-24.5 - parent: 1 - type: Transform - - links: - - 9170 - type: DeviceLinkSink - - uid: 17632 - components: - - pos: 6.5,-27.5 - parent: 1 - type: Transform - - links: - - 9170 - type: DeviceLinkSink - - uid: 17633 - components: - - pos: 7.5,-27.5 - parent: 1 - type: Transform - - links: - - 9170 - type: DeviceLinkSink -- proto: ShuttersWindowOpen - entities: - - uid: 4060 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,22.5 - parent: 1 - type: Transform - - links: - - 2873 - type: DeviceLinkSink - - uid: 4067 - components: - - pos: 4.5,20.5 - parent: 1 - type: Transform - - links: - - 2873 - type: DeviceLinkSink - - uid: 8253 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,23.5 - parent: 1 - type: Transform - - links: - - 2873 - type: DeviceLinkSink - - uid: 9375 - components: - - pos: 3.5,20.5 - parent: 1 - type: Transform - - links: - - 2873 - type: DeviceLinkSink -- proto: ShuttleConsoleCircuitboard - entities: - - uid: 4206 - components: - - pos: 18.514778,-22.284924 - parent: 1 - type: Transform - - uid: 18333 - components: - - pos: 18.39598,-25.385345 - parent: 1 - type: Transform -- proto: ShuttleWindow - entities: - - uid: 8761 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 8756 - type: Transform - - uid: 8762 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 8756 - type: Transform - - uid: 8763 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,1.5 - parent: 8756 - type: Transform - - uid: 8764 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-0.5 - parent: 8756 - type: Transform - - uid: 8775 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,1.5 - parent: 8756 - type: Transform - - uid: 8776 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,1.5 - parent: 8756 - type: Transform - - uid: 8788 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,3.5 - parent: 8756 - type: Transform - - uid: 8789 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,4.5 - parent: 8756 - type: Transform - - uid: 8790 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,4.5 - parent: 8756 - type: Transform - - uid: 8791 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,4.5 - parent: 8756 - type: Transform - - uid: 8792 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,3.5 - parent: 8756 - type: Transform - - uid: 8795 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-0.5 - parent: 8756 - type: Transform - - uid: 8796 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,1.5 - parent: 8756 - type: Transform - - uid: 8801 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-6.5 - parent: 8756 - type: Transform - - uid: 8805 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-6.5 - parent: 8756 - type: Transform - - uid: 8807 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-6.5 - parent: 8756 - type: Transform - - uid: 8812 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 8756 - type: Transform - - uid: 8814 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 8756 - type: Transform -- proto: SignalButton - entities: - - uid: 2873 - components: - - rot: 3.141592653589793 rad - pos: 5.5,21.5 - parent: 1 - type: Transform - - linkedPorts: - 4067: - - Pressed: Toggle - 9375: - - Pressed: Toggle - 4078: - - Pressed: Toggle - 4061: - - Pressed: Toggle - 8340: - - Pressed: Toggle - 6808: - - Pressed: Toggle - 550: - - Pressed: Toggle - 8253: - - Pressed: Toggle - 4060: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 6627 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,31.5 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - linkedPorts: - 1066: - - Pressed: Toggle - 1106: - - Pressed: Toggle - 1065: - - Pressed: Toggle - type: DeviceLinkSource - - type: ItemCooldown - - uid: 7826 - components: - - pos: -43.5,23.5 - parent: 1 - type: Transform - - linkedPorts: - 4135: - - Pressed: Toggle - 7923: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 8571 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,33.5 - parent: 1 - type: Transform - - linkedPorts: - 8499: - - Pressed: Toggle - 8498: - - Pressed: Toggle - 8497: - - Pressed: Toggle - 8500: - - Pressed: Toggle - 8501: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 8572 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,31.5 - parent: 1 - type: Transform - - linkedPorts: - 1048: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 8625 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,21.5 - parent: 1 - type: Transform - - uid: 8738 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-25.5 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - linkedPorts: - 2813: - - Pressed: Toggle - 2814: - - Pressed: Toggle - 2821: - - Pressed: Toggle - 2822: - - Pressed: Toggle - type: DeviceLinkSource - - type: ItemCooldown - - uid: 8749 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-37.5 - parent: 1 - type: Transform - - linkedPorts: - 3050: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 8750 - components: - - pos: -2.5,-48.5 - parent: 1 - type: Transform - - linkedPorts: - 3052: - - Pressed: Toggle - 3051: - - Pressed: Toggle - 3053: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 9001 - components: - - pos: -9.5,9.5 - parent: 1 - type: Transform - - linkedPorts: - 7143: - - Pressed: Toggle - 7142: - - Pressed: Toggle - 7141: - - Pressed: Toggle - 7140: - - Pressed: Toggle - 7139: - - Pressed: Toggle - 7138: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 9170 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-24.5 - parent: 1 - type: Transform - - linkedPorts: - 17632: - - Pressed: Toggle - 17633: - - Pressed: Toggle - 17631: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 9348 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,10.5 - parent: 1 - type: Transform - - uid: 9363 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,3.5 - parent: 1 - type: Transform - - linkedPorts: - 110: - - Pressed: Toggle - 286: - - Pressed: Toggle - 109: - - Pressed: Toggle - 287: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 9404 - components: - - pos: -20.5,-14.5 - parent: 1 - type: Transform - - linkedPorts: - 9406: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 17634 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-3.5 - parent: 1 - type: Transform - - linkedPorts: - 6653: - - Pressed: Toggle - 5828: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 17647 - components: - - pos: 25.5,7.5 - parent: 1 - type: Transform - - linkedPorts: - 9281: - - Pressed: Toggle - 9280: - - Pressed: Toggle - 9279: - - Pressed: Toggle - 9278: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 17648 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-26.5 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - linkedPorts: - 4205: - - Pressed: Toggle - type: DeviceLinkSource - - type: ItemCooldown - - uid: 17649 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-38.5 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - linkedPorts: - 3066: - - Pressed: Toggle - type: DeviceLinkSource - - type: ItemCooldown -- proto: SignalButtonBridge - entities: - - uid: 4305 - components: - - pos: -0.5,79.5 - parent: 1 - type: Transform - - linkedPorts: - 4302: - - Pressed: Toggle - 4303: - - Pressed: Toggle - 4304: - - Pressed: Toggle - type: DeviceLinkSource -- proto: SignalButtonWindows - entities: - - uid: 17612 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,73.5 - parent: 1 - type: Transform -- proto: SignAnomaly - entities: - - uid: 17888 - components: - - rot: 3.141592653589793 rad - pos: -11.5,26.5 - parent: 1 - type: Transform -- proto: SignAnomaly2 - entities: - - uid: 4579 - components: - - pos: -19.5,20.5 - parent: 1 - type: Transform -- proto: SignArmory - entities: - - uid: 17849 - components: - - rot: 3.141592653589793 rad - pos: -7.5,58.5 - parent: 1 - type: Transform -- proto: SignAtmos - entities: - - uid: 17850 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-10.5 - parent: 1 - type: Transform -- proto: SignAtmosMinsky - entities: - - uid: 17851 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-16.5 - parent: 1 - type: Transform -- proto: SignBar - entities: - - uid: 17852 - components: - - rot: 3.141592653589793 rad - pos: -5.5,12.5 - parent: 1 - type: Transform - - uid: 17853 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-6.5 - parent: 1 - type: Transform -- proto: SignBridge - entities: - - uid: 17895 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,69.5 - parent: 1 - type: Transform - - uid: 17896 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,75.5 - parent: 1 - type: Transform -- proto: SignCargo - entities: - - uid: 4156 - components: - - pos: -33.5,3.5 - parent: 1 - type: Transform - - uid: 17805 - components: - - rot: 3.141592653589793 rad - pos: -33.5,8.5 - parent: 1 - type: Transform -- proto: SignCargoDock - entities: - - uid: 4157 - components: - - pos: -44.5,3.5 - parent: 1 - type: Transform - - uid: 18055 - components: - - rot: 3.141592653589793 rad - pos: -53.5,-6.5 - parent: 1 - type: Transform - - uid: 18056 - components: - - rot: 3.141592653589793 rad - pos: -51.5,-12.5 - parent: 1 - type: Transform -- proto: SignChapel - entities: - - uid: 14050 - components: - - pos: 32.5,50.5 - parent: 1 - type: Transform - - uid: 14051 - components: - - pos: 31.5,53.5 - parent: 1 - type: Transform - - uid: 14053 - components: - - pos: 28.5,39.5 - parent: 1 - type: Transform -- proto: SignChem - entities: - - uid: 17854 - components: - - rot: 3.141592653589793 rad - pos: 7.5,26.5 - parent: 1 - type: Transform -- proto: SignCloning - entities: - - uid: 17855 - components: - - rot: 3.141592653589793 rad - pos: 12.5,29.5 - parent: 1 - type: Transform -- proto: SignConference - entities: - - uid: 17894 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,69.5 - parent: 1 - type: Transform -- proto: SignDirectionalBridge - entities: - - uid: 17785 - components: - - rot: 3.141592653589793 rad - pos: 1.5,40 - parent: 1 - type: Transform - - uid: 17791 - components: - - rot: 3.141592653589793 rad - pos: -2.5,16.5 - parent: 1 - type: Transform - - uid: 17804 - components: - - rot: 3.141592653589793 rad - pos: -29.499792,17.748297 - parent: 1 - type: Transform - - uid: 17818 - components: - - rot: 3.141592653589793 rad - pos: -2.4996006,-10.254558 - parent: 1 - type: Transform - - uid: 17826 - components: - - rot: 3.141592653589793 rad - pos: 28.501215,-6.252189 - parent: 1 - type: Transform - - uid: 17836 - components: - - rot: 3.141592653589793 rad - pos: 33.510975,16.766766 - parent: 1 - type: Transform -- proto: SignDirectionalBrig - entities: - - uid: 8228 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,46.5 - parent: 1 - type: Transform - - uid: 8229 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,46.5 - parent: 1 - type: Transform -- proto: SignDirectionalChapel - entities: - - uid: 14052 - components: - - rot: 3.141592653589793 rad - pos: 33.5,39.5 - parent: 1 - type: Transform -- proto: SignDirectionalDorms - entities: - - uid: 17843 - components: - - rot: 3.141592653589793 rad - pos: 13.5,39.5 - parent: 1 - type: Transform -- proto: SignDirectionalEng - entities: - - uid: 17779 - components: - - pos: 1.5,64.5 - parent: 1 - type: Transform - - uid: 17793 - components: - - pos: 1.5032121,16.251781 - parent: 1 - type: Transform - - uid: 17796 - components: - - pos: 1.5012997,40.742867 - parent: 1 - type: Transform - - uid: 17797 - components: - - pos: -29.5,17.5 - parent: 1 - type: Transform - - uid: 17812 - components: - - rot: 1.5707963267948966 rad - pos: -29.496174,-6.737631 - parent: 1 - type: Transform - - uid: 17819 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-6.5 - parent: 1 - type: Transform - - uid: 17832 - components: - - pos: 33.501507,12.256447 - parent: 1 - type: Transform - - uid: 17841 - components: - - pos: 33.496597,35.248928 - parent: 1 - type: Transform -- proto: SignDirectionalEvac - entities: - - uid: 17777 - components: - - pos: 1.5,65.5 - parent: 1 - type: Transform - - uid: 17784 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,39.5 - parent: 1 - type: Transform - - uid: 17792 - components: - - rot: 1.5707963267948966 rad - pos: 1.4961122,16.741375 - parent: 1 - type: Transform - - uid: 17798 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,17 - parent: 1 - type: Transform - - uid: 17808 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-10.5 - parent: 1 - type: Transform - - uid: 17809 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-6.5 - parent: 1 - type: Transform - - uid: 17817 - components: - - rot: 1.5707963267948966 rad - pos: -2.4996006,-10.751246 - parent: 1 - type: Transform - - uid: 17823 - components: - - rot: 3.141592653589793 rad - pos: 29.50534,-6.2478724 - parent: 1 - type: Transform - - uid: 17834 - components: - - rot: 3.141592653589793 rad - pos: 33.5,16.5 - parent: 1 - type: Transform - - uid: 17835 - components: - - rot: 1.5707963267948966 rad - pos: 33.510975,16.238834 - parent: 1 - type: Transform - - uid: 17838 - components: - - rot: 1.5707963267948966 rad - pos: 33.50556,35.762794 - parent: 1 - type: Transform -- proto: SignDirectionalFood - entities: - - uid: 17783 - components: - - pos: 1.5024469,64.25979 - parent: 1 - type: Transform - - uid: 17827 - components: - - rot: -1.5707963267948966 rad - pos: 28.499456,-6.7559733 - parent: 1 - type: Transform - - uid: 17833 - components: - - rot: -1.5707963267948966 rad - pos: 33.501507,12.767326 - parent: 1 - type: Transform -- proto: SignDirectionalGravity - entities: - - uid: 17806 - components: - - pos: -19.5,-10.5 - parent: 1 - type: Transform -- proto: SignDirectionalHop - entities: - - uid: 17789 - components: - - rot: 1.5707963267948966 rad - pos: 1.4986358,39.25191 - parent: 1 - type: Transform - - uid: 17795 - components: - - rot: 1.5707963267948966 rad - pos: -2.5008452,16.251781 - parent: 1 - type: Transform - - uid: 17813 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-10.5 - parent: 1 - type: Transform - - uid: 17821 - components: - - rot: 3.141592653589793 rad - pos: 33.501915,-6.2549677 - parent: 1 - type: Transform - - uid: 17837 - components: - - pos: 33.5,35.5 - parent: 1 - type: Transform -- proto: SignDirectionalJanitor - entities: - - uid: 17807 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-6.5 - parent: 1 - type: Transform -- proto: SignDirectionalMed - entities: - - uid: 17781 - components: - - pos: 1.5024469,64.74938 - parent: 1 - type: Transform - - uid: 17787 - components: - - pos: 1.4998497,40.250824 - parent: 1 - type: Transform - - uid: 17799 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,16.5 - parent: 1 - type: Transform - - uid: 17815 - components: - - rot: 3.141592653589793 rad - pos: 1.5044566,-10.254558 - parent: 1 - type: Transform - - uid: 17824 - components: - - rot: 3.141592653589793 rad - pos: 29.50534,-6.7516565 - parent: 1 - type: Transform - - uid: 17828 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,12.5 - parent: 1 - type: Transform - - uid: 17842 - components: - - rot: -1.5707963267948966 rad - pos: 28.502005,35.256023 - parent: 1 - type: Transform -- proto: SignDirectionalSalvage - entities: - - uid: 17802 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,16.5 - parent: 1 - type: Transform -- proto: SignDirectionalSci - entities: - - uid: 17782 - components: - - pos: 1.5024469,65.749855 - parent: 1 - type: Transform - - uid: 17786 - components: - - pos: 1.5,40.5 - parent: 1 - type: Transform - - uid: 17801 - components: - - rot: 1.5707963267948966 rad - pos: -29.49926,16.75212 - parent: 1 - type: Transform - - uid: 17816 - components: - - rot: 3.141592653589793 rad - pos: 1.5044566,-10.751246 - parent: 1 - type: Transform - - uid: 17825 - components: - - rot: 3.141592653589793 rad - pos: 28.5,-6.5 - parent: 1 - type: Transform - - uid: 17830 - components: - - rot: -1.5707963267948966 rad - pos: 29.504549,12.249351 - parent: 1 - type: Transform -- proto: SignDirectionalSec - entities: - - uid: 17780 - components: - - pos: 1.5024469,65.24607 - parent: 1 - type: Transform - - uid: 17790 - components: - - rot: 3.141592653589793 rad - pos: 1.5,16.5 - parent: 1 - type: Transform - - uid: 17800 - components: - - rot: 3.141592653589793 rad - pos: -29.49926,17.251825 - parent: 1 - type: Transform - - uid: 17811 - components: - - rot: 3.141592653589793 rad - pos: -29.496174,-6.248038 - parent: 1 - type: Transform - - uid: 17814 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-10.5 - parent: 1 - type: Transform - - uid: 17822 - components: - - rot: 3.141592653589793 rad - pos: 29.5,-6.5 - parent: 1 - type: Transform - - uid: 17829 - components: - - rot: -1.5707963267948966 rad - pos: 29.504549,12.753135 - parent: 1 - type: Transform - - uid: 17839 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,35.5 - parent: 1 - type: Transform -- proto: SignDirectionalSolar - entities: - - uid: 17845 - components: - - rot: 3.141592653589793 rad - pos: 37.5,41.5 - parent: 1 - type: Transform - - uid: 17846 - components: - - rot: 3.141592653589793 rad - pos: 37.5,51.5 - parent: 1 - type: Transform - - uid: 17847 - components: - - rot: 3.141592653589793 rad - pos: -38.5,51.5 - parent: 1 - type: Transform - - uid: 17848 - components: - - rot: 3.141592653589793 rad - pos: -44.5,44.5 - parent: 1 - type: Transform -- proto: SignDirectionalSupply - entities: - - uid: 17778 - components: - - pos: 1.5,65 - parent: 1 - type: Transform - - uid: 17788 - components: - - pos: 1.4998497,39.754135 - parent: 1 - type: Transform - - uid: 17794 - components: - - rot: -1.5707963267948966 rad - pos: -2.5079443,16.755566 - parent: 1 - type: Transform - - uid: 17803 - components: - - pos: -29.492693,16.258232 - parent: 1 - type: Transform - - uid: 17810 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-6 - parent: 1 - type: Transform - - uid: 17820 - components: - - rot: -1.5707963267948966 rad - pos: 33.501915,-6.7516565 - parent: 1 - type: Transform - - uid: 17831 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,12.5 - parent: 1 - type: Transform - - uid: 17840 - components: - - rot: -1.5707963267948966 rad - pos: 28.50573,35.759808 - parent: 1 - type: Transform -- proto: SignDirectionalWash - entities: - - uid: 17844 - components: - - rot: 3.141592653589793 rad - pos: 24.5,39.5 - parent: 1 - type: Transform -- proto: SignDisposalSpace - entities: - - uid: 3993 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-33.5 - parent: 1 - type: Transform - - uid: 9605 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-38.5 - parent: 1 - type: Transform -- proto: SignDrones - entities: - - uid: 9562 - components: - - pos: -19.5,-13.5 - parent: 1 - type: Transform -- proto: SignEngine - entities: - - uid: 17864 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-35.5 - parent: 1 - type: Transform -- proto: SignEngineering - entities: - - uid: 17863 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-10.5 - parent: 1 - type: Transform -- proto: SignEscapePods - entities: - - uid: 6545 - components: - - rot: 3.141592653589793 rad - pos: -28.5,-27.5 - parent: 1 - type: Transform - - uid: 7428 - components: - - pos: 25.5,-27.5 - parent: 1 - type: Transform -- proto: SignEVA - entities: - - uid: 6935 - components: - - pos: 23.5,35.5 - parent: 1 - type: Transform - - uid: 6936 - components: - - pos: 28.5,30.5 - parent: 1 - type: Transform -- proto: SignExamroom - entities: - - uid: 8426 - components: - - rot: 3.141592653589793 rad - pos: 8.5,29.5 - parent: 1 - type: Transform -- proto: SignFire - entities: - - uid: 17865 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-48.5 - parent: 1 - type: Transform - - uid: 17869 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-38.5 - parent: 1 - type: Transform - - uid: 17870 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-36.5 - parent: 1 - type: Transform -- proto: SignFlammableMed - entities: - - uid: 17866 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-46.5 - parent: 1 - type: Transform - - uid: 17867 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-46.5 - parent: 1 - type: Transform - - uid: 17868 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-38.5 - parent: 1 - type: Transform - - uid: 17871 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-36.5 - parent: 1 - type: Transform -- proto: SignGravity - entities: - - uid: 9564 - components: - - pos: -19.5,-17.5 - parent: 1 - type: Transform -- proto: SignHead - entities: - - uid: 17357 - components: - - pos: -12.5,58.5 - parent: 1 - type: Transform - - uid: 17893 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,75.5 - parent: 1 - type: Transform - - uid: 17966 - components: - - rot: 3.141592653589793 rad - pos: 28.5,9.5 - parent: 1 - type: Transform - - uid: 18112 - components: - - pos: 13.5,33.5 - parent: 1 - type: Transform - - uid: 18113 - components: - - pos: -22.5,24.5 - parent: 1 - type: Transform - - uid: 18114 - components: - - pos: 8.5,-25.5 - parent: 1 - type: Transform -- proto: SignHydro1 - entities: - - uid: 17872 - components: - - rot: 3.141592653589793 rad - pos: 4.5,8.5 - parent: 1 - type: Transform -- proto: SignKiddiePlaque - entities: - - uid: 17892 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,44.5 - parent: 1 - type: Transform -- proto: SignLibrary - entities: - - uid: 17873 - components: - - rot: 3.141592653589793 rad - pos: -29.5,9.5 - parent: 1 - type: Transform - - uid: 17874 - components: - - rot: 3.141592653589793 rad - pos: -24.5,12.5 - parent: 1 - type: Transform -- proto: SignMail - entities: - - uid: 17875 - components: - - rot: 3.141592653589793 rad - pos: -34.5,12.5 - parent: 1 - type: Transform -- proto: SignMinerDock - entities: - - uid: 7925 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,29.5 - parent: 1 - type: Transform -- proto: SignMorgue - entities: - - uid: 17877 - components: - - rot: 3.141592653589793 rad - pos: 18.5,30.5 - parent: 1 - type: Transform -- proto: SignPrison - entities: - - uid: 8225 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,49.5 - parent: 1 - type: Transform - - uid: 8226 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,49.5 - parent: 1 - type: Transform - - uid: 8227 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,41.5 - parent: 1 - type: Transform -- proto: SignRedFour - entities: - - uid: 7703 - components: - - pos: -5.5,42.5 - parent: 1 - type: Transform -- proto: SignRedOne - entities: - - uid: 7699 - components: - - pos: -14.5,42.5 - parent: 1 - type: Transform -- proto: SignRedThree - entities: - - uid: 7702 - components: - - pos: -8.5,42.5 - parent: 1 - type: Transform -- proto: SignRedTwo - entities: - - uid: 7700 - components: - - pos: -11.5,42.5 - parent: 1 - type: Transform -- proto: SignRND - entities: - - uid: 17878 - components: - - rot: 3.141592653589793 rad - pos: -2.5,20.5 - parent: 1 - type: Transform -- proto: SignRobo - entities: - - uid: 17880 - components: - - rot: 3.141592653589793 rad - pos: -16.5,35.5 - parent: 1 - type: Transform - - uid: 17881 - components: - - rot: 3.141592653589793 rad - pos: -15.5,29.5 - parent: 1 - type: Transform -- proto: SignScience - entities: - - uid: 17879 - components: - - rot: 3.141592653589793 rad - pos: -6.5,19.5 - parent: 1 - type: Transform -- proto: SignScience1 - entities: - - uid: 17882 - components: - - rot: 3.141592653589793 rad - pos: -22.5,25.5 - parent: 1 - type: Transform -- proto: SignScience2 - entities: - - uid: 17883 - components: - - rot: 3.141592653589793 rad - pos: -13.5,21.5 - parent: 1 - type: Transform -- proto: SignSecureSmall - entities: - - uid: 17890 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-10.5 - parent: 1 - type: Transform -- proto: SignSecureSmallRed - entities: - - uid: 17884 - components: - - rot: 3.141592653589793 rad - pos: 1.5,48.5 - parent: 1 - type: Transform - - uid: 17885 - components: - - rot: 3.141592653589793 rad - pos: 1.5,45.5 - parent: 1 - type: Transform - - uid: 18118 - components: - - pos: 14.5,-22.5 - parent: 1 - type: Transform -- proto: SignShield - entities: - - uid: 17886 - components: - - rot: 3.141592653589793 rad - pos: -2.5,49.5 - parent: 1 - type: Transform - - uid: 18123 - components: - - pos: -15.5,51.5 - parent: 1 - type: Transform -- proto: SignShipDock - entities: - - uid: 17745 - components: - - rot: 3.141592653589793 rad - pos: 37.5,2.5 - parent: 1 - type: Transform - - uid: 17856 - components: - - rot: 3.141592653589793 rad - pos: 47.5,33.5 - parent: 1 - type: Transform - - uid: 17857 - components: - - rot: 3.141592653589793 rad - pos: 52.5,37.5 - parent: 1 - type: Transform - - uid: 17858 - components: - - rot: 3.141592653589793 rad - pos: 47.5,18.5 - parent: 1 - type: Transform - - uid: 17859 - components: - - rot: 3.141592653589793 rad - pos: 52.5,14.5 - parent: 1 - type: Transform - - uid: 18052 - components: - - rot: 3.141592653589793 rad - pos: -53.5,37.5 - parent: 1 - type: Transform - - uid: 18054 - components: - - rot: 3.141592653589793 rad - pos: -53.5,14.5 - parent: 1 - type: Transform -- proto: SignSmoking - entities: - - uid: 17757 - components: - - pos: 14.5,-29.5 - parent: 1 - type: Transform - - uid: 17758 - components: - - pos: -14.5,-32.5 - parent: 1 - type: Transform -- proto: SignSpace - entities: - - uid: 2062 - components: - - pos: 50.5,-6.5 - parent: 1 - type: Transform - - uid: 6479 - components: - - pos: 50.5,-13.5 - parent: 1 - type: Transform - - uid: 18045 - components: - - rot: 3.141592653589793 rad - pos: 35.5,0.5 - parent: 1 - type: Transform - - uid: 18046 - components: - - rot: 3.141592653589793 rad - pos: 50.5,14.5 - parent: 1 - type: Transform - - uid: 18047 - components: - - rot: 3.141592653589793 rad - pos: 44.5,16.5 - parent: 1 - type: Transform - - uid: 18048 - components: - - rot: 3.141592653589793 rad - pos: 50.5,37.5 - parent: 1 - type: Transform - - uid: 18049 - components: - - rot: 3.141592653589793 rad - pos: 38.5,56.5 - parent: 1 - type: Transform - - uid: 18050 - components: - - rot: 3.141592653589793 rad - pos: -39.5,56.5 - parent: 1 - type: Transform - - uid: 18051 - components: - - rot: 3.141592653589793 rad - pos: -51.5,39.5 - parent: 1 - type: Transform - - uid: 18053 - components: - - rot: 3.141592653589793 rad - pos: -51.5,16.5 - parent: 1 - type: Transform - - uid: 18057 - components: - - rot: 3.141592653589793 rad - pos: -51.5,-10.5 - parent: 1 - type: Transform - - uid: 18058 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-42.5 - parent: 1 - type: Transform - - uid: 18059 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-38.5 - parent: 1 - type: Transform - - uid: 18060 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-42.5 - parent: 1 - type: Transform - - uid: 18061 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-38.5 - parent: 1 - type: Transform -- proto: SignSurgery - entities: - - uid: 8678 - components: - - pos: 13.5,26.5 - parent: 1 - type: Transform -- proto: SignTelecomms - entities: - - uid: 17889 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-10.5 - parent: 1 - type: Transform -- proto: SignToolStorage - entities: - - uid: 17887 - components: - - rot: 3.141592653589793 rad - pos: -29.5,32.5 - parent: 1 - type: Transform -- proto: Sink - entities: - - uid: 8424 - components: - - pos: 20.5,29.5 - parent: 1 - type: Transform - - uid: 8510 - components: - - rot: 3.141592653589793 rad - pos: 15.5,27.5 - parent: 1 - type: Transform -- proto: SinkStemlessWater - entities: - - uid: 8602 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,31.5 - parent: 1 - type: Transform - - uid: 8933 - components: - - pos: -7.5,8.5 - parent: 1 - type: Transform - - uid: 8999 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-4.5 - parent: 1 - type: Transform - - uid: 10099 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-39.5 - parent: 1 - type: Transform - - uid: 10104 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-39.5 - parent: 1 - type: Transform -- proto: SMESBasic - entities: - - uid: 3459 - components: - - pos: 15.5,-11.5 - parent: 1 - type: Transform - - uid: 3831 - components: - - pos: 8.5,-29.5 - parent: 1 - type: Transform - - uid: 3832 - components: - - pos: 6.5,-29.5 - parent: 1 - type: Transform - - uid: 6507 - components: - - pos: 5.5,-29.5 - parent: 1 - type: Transform - - uid: 6575 - components: - - pos: 7.5,-29.5 - parent: 1 - type: Transform - - uid: 8011 - components: - - pos: -39.5,55.5 - parent: 1 - type: Transform - - uid: 14044 - components: - - pos: 36.5,55.5 - parent: 1 - type: Transform -- proto: SmokingPipe - entities: - - uid: 6850 - components: - - pos: 43.573822,50.730164 - parent: 1 - type: Transform - - uid: 8107 - components: - - pos: 6.465735,72.71857 - parent: 1 - type: Transform - - uid: 8279 - components: - - pos: -29.362019,44.061478 - parent: 1 - type: Transform -- proto: SmokingPipeFilledCannabis - entities: - - uid: 8994 - components: - - pos: -4.659399,11.620097 - parent: 1 - type: Transform -- proto: Soap - entities: - - uid: 9254 - components: - - pos: 16.665726,-4.834745 - parent: 1 - type: Transform -- proto: SoapOmega - entities: - - uid: 17614 - components: - - pos: 7.506346,46.726536 - parent: 1 - type: Transform -- proto: soda_dispenser - entities: - - uid: 4044 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,6.5 - parent: 1 - type: Transform -- proto: SolarPanel - entities: - - uid: 3515 - components: - - pos: 3.5,-59.5 - parent: 1 - type: Transform - - uid: 3835 - components: - - pos: -6.5,-70.5 - parent: 1 - type: Transform - - uid: 3836 - components: - - pos: -6.5,-69.5 - parent: 1 - type: Transform - - uid: 3837 - components: - - pos: -6.5,-68.5 - parent: 1 - type: Transform - - uid: 3838 - components: - - pos: -6.5,-67.5 - parent: 1 - type: Transform - - uid: 3839 - components: - - pos: -6.5,-66.5 - parent: 1 - type: Transform - - uid: 3840 - components: - - pos: -6.5,-65.5 - parent: 1 - type: Transform - - uid: 3841 - components: - - pos: -6.5,-64.5 - parent: 1 - type: Transform - - uid: 3842 - components: - - pos: -8.5,-70.5 - parent: 1 - type: Transform - - uid: 3843 - components: - - pos: -8.5,-69.5 - parent: 1 - type: Transform - - uid: 3844 - components: - - pos: -8.5,-68.5 - parent: 1 - type: Transform - - uid: 3845 - components: - - pos: -8.5,-67.5 - parent: 1 - type: Transform - - uid: 3846 - components: - - pos: -8.5,-66.5 - parent: 1 - type: Transform - - uid: 3847 - components: - - pos: -8.5,-65.5 - parent: 1 - type: Transform - - uid: 3848 - components: - - pos: -8.5,-64.5 - parent: 1 - type: Transform - - uid: 3849 - components: - - pos: -8.5,-62.5 - parent: 1 - type: Transform - - uid: 3850 - components: - - pos: -8.5,-61.5 - parent: 1 - type: Transform - - uid: 3851 - components: - - pos: -8.5,-60.5 - parent: 1 - type: Transform - - uid: 3852 - components: - - pos: -9.5,-59.5 - parent: 1 - type: Transform - - uid: 3853 - components: - - pos: -9.5,-58.5 - parent: 1 - type: Transform - - uid: 3854 - components: - - pos: -9.5,-57.5 - parent: 1 - type: Transform - - uid: 3855 - components: - - pos: -10.5,-56.5 - parent: 1 - type: Transform - - uid: 3856 - components: - - pos: -10.5,-55.5 - parent: 1 - type: Transform - - uid: 3857 - components: - - pos: -10.5,-54.5 - parent: 1 - type: Transform - - uid: 3858 - components: - - pos: -10.5,-53.5 - parent: 1 - type: Transform - - uid: 3859 - components: - - pos: -5.5,-62.5 - parent: 1 - type: Transform - - uid: 3860 - components: - - pos: -5.5,-61.5 - parent: 1 - type: Transform - - uid: 3861 - components: - - pos: -5.5,-60.5 - parent: 1 - type: Transform - - uid: 3862 - components: - - pos: -4.5,-59.5 - parent: 1 - type: Transform - - uid: 3863 - components: - - pos: -4.5,-58.5 - parent: 1 - type: Transform - - uid: 3864 - components: - - pos: -4.5,-57.5 - parent: 1 - type: Transform - - uid: 3865 - components: - - pos: -4.5,-56.5 - parent: 1 - type: Transform - - uid: 3866 - components: - - pos: -4.5,-55.5 - parent: 1 - type: Transform - - uid: 3867 - components: - - pos: -4.5,-54.5 - parent: 1 - type: Transform - - uid: 3868 - components: - - pos: -4.5,-53.5 - parent: 1 - type: Transform - - uid: 3869 - components: - - pos: 3.5,-58.5 - parent: 1 - type: Transform - - uid: 3870 - components: - - pos: 3.5,-57.5 - parent: 1 - type: Transform - - uid: 3871 - components: - - pos: 3.5,-56.5 - parent: 1 - type: Transform - - uid: 3872 - components: - - pos: 3.5,-55.5 - parent: 1 - type: Transform - - uid: 3873 - components: - - pos: 3.5,-54.5 - parent: 1 - type: Transform - - uid: 3874 - components: - - pos: 3.5,-53.5 - parent: 1 - type: Transform - - uid: 3875 - components: - - pos: 4.5,-60.5 - parent: 1 - type: Transform - - uid: 3876 - components: - - pos: 4.5,-61.5 - parent: 1 - type: Transform - - uid: 3877 - components: - - pos: 4.5,-62.5 - parent: 1 - type: Transform - - uid: 3878 - components: - - pos: 5.5,-64.5 - parent: 1 - type: Transform - - uid: 3879 - components: - - pos: 5.5,-65.5 - parent: 1 - type: Transform - - uid: 3880 - components: - - pos: 5.5,-66.5 - parent: 1 - type: Transform - - uid: 3881 - components: - - pos: 5.5,-67.5 - parent: 1 - type: Transform - - uid: 3882 - components: - - pos: 5.5,-68.5 - parent: 1 - type: Transform - - uid: 3883 - components: - - pos: 5.5,-69.5 - parent: 1 - type: Transform - - uid: 3884 - components: - - pos: 5.5,-70.5 - parent: 1 - type: Transform - - uid: 3885 - components: - - pos: 7.5,-64.5 - parent: 1 - type: Transform - - uid: 3886 - components: - - pos: 7.5,-65.5 - parent: 1 - type: Transform - - uid: 3887 - components: - - pos: 7.5,-66.5 - parent: 1 - type: Transform - - uid: 3888 - components: - - pos: 7.5,-67.5 - parent: 1 - type: Transform - - uid: 3889 - components: - - pos: 7.5,-68.5 - parent: 1 - type: Transform - - uid: 3890 - components: - - pos: 7.5,-69.5 - parent: 1 - type: Transform - - uid: 3891 - components: - - pos: 7.5,-70.5 - parent: 1 - type: Transform - - uid: 3892 - components: - - pos: 7.5,-62.5 - parent: 1 - type: Transform - - uid: 3893 - components: - - pos: 7.5,-61.5 - parent: 1 - type: Transform - - uid: 3894 - components: - - pos: 7.5,-60.5 - parent: 1 - type: Transform - - uid: 3895 - components: - - pos: 8.5,-59.5 - parent: 1 - type: Transform - - uid: 3896 - components: - - pos: 8.5,-58.5 - parent: 1 - type: Transform - - uid: 3897 - components: - - pos: 8.5,-57.5 - parent: 1 - type: Transform - - uid: 3898 - components: - - pos: 9.5,-56.5 - parent: 1 - type: Transform - - uid: 3899 - components: - - pos: 9.5,-55.5 - parent: 1 - type: Transform - - uid: 3900 - components: - - pos: 9.5,-54.5 - parent: 1 - type: Transform - - uid: 3901 - components: - - pos: 9.5,-53.5 - parent: 1 - type: Transform - - uid: 3902 - components: - - pos: -15.5,-47.5 - parent: 1 - type: Transform - - uid: 3903 - components: - - pos: -15.5,-46.5 - parent: 1 - type: Transform - - uid: 3904 - components: - - pos: -15.5,-45.5 - parent: 1 - type: Transform - - uid: 3905 - components: - - pos: -15.5,-44.5 - parent: 1 - type: Transform - - uid: 3906 - components: - - pos: -15.5,-43.5 - parent: 1 - type: Transform - - uid: 3907 - components: - - pos: -12.5,-49.5 - parent: 1 - type: Transform - - uid: 3908 - components: - - pos: -12.5,-50.5 - parent: 1 - type: Transform - - uid: 3909 - components: - - pos: -11.5,-50.5 - parent: 1 - type: Transform - - uid: 3910 - components: - - pos: -11.5,-51.5 - parent: 1 - type: Transform - - uid: 3911 - components: - - pos: 10.5,-51.5 - parent: 1 - type: Transform - - uid: 3912 - components: - - pos: 10.5,-50.5 - parent: 1 - type: Transform - - uid: 3913 - components: - - pos: 11.5,-50.5 - parent: 1 - type: Transform - - uid: 3914 - components: - - pos: 11.5,-49.5 - parent: 1 - type: Transform - - uid: 3915 - components: - - pos: 14.5,-47.5 - parent: 1 - type: Transform - - uid: 3916 - components: - - pos: 14.5,-46.5 - parent: 1 - type: Transform - - uid: 3917 - components: - - pos: 14.5,-45.5 - parent: 1 - type: Transform - - uid: 3918 - components: - - pos: 14.5,-44.5 - parent: 1 - type: Transform - - uid: 3919 - components: - - pos: 14.5,-43.5 - parent: 1 - type: Transform - - uid: 7445 - components: - - pos: 40.5,74.5 - parent: 1 - type: Transform - - uid: 7446 - components: - - pos: 41.5,74.5 - parent: 1 - type: Transform - - uid: 7447 - components: - - pos: 42.5,74.5 - parent: 1 - type: Transform - - uid: 7448 - components: - - pos: 43.5,74.5 - parent: 1 - type: Transform - - uid: 7449 - components: - - pos: 44.5,74.5 - parent: 1 - type: Transform - - uid: 7450 - components: - - pos: 45.5,74.5 - parent: 1 - type: Transform - - uid: 7451 - components: - - pos: 46.5,74.5 - parent: 1 - type: Transform - - uid: 7452 - components: - - pos: 40.5,72.5 - parent: 1 - type: Transform - - uid: 7453 - components: - - pos: 41.5,72.5 - parent: 1 - type: Transform - - uid: 7454 - components: - - pos: 42.5,72.5 - parent: 1 - type: Transform - - uid: 7455 - components: - - pos: 43.5,72.5 - parent: 1 - type: Transform - - uid: 7456 - components: - - pos: 44.5,72.5 - parent: 1 - type: Transform - - uid: 7457 - components: - - pos: 45.5,72.5 - parent: 1 - type: Transform - - uid: 7458 - components: - - pos: 46.5,72.5 - parent: 1 - type: Transform - - uid: 7459 - components: - - pos: 39.5,72.5 - parent: 1 - type: Transform - - uid: 7460 - components: - - pos: 39.5,74.5 - parent: 1 - type: Transform - - uid: 7465 - components: - - pos: 35.5,74.5 - parent: 1 - type: Transform - - uid: 7466 - components: - - pos: 34.5,74.5 - parent: 1 - type: Transform - - uid: 7467 - components: - - pos: 33.5,74.5 - parent: 1 - type: Transform - - uid: 7468 - components: - - pos: 32.5,74.5 - parent: 1 - type: Transform - - uid: 7469 - components: - - pos: 31.5,74.5 - parent: 1 - type: Transform - - uid: 7470 - components: - - pos: 30.5,74.5 - parent: 1 - type: Transform - - uid: 7471 - components: - - pos: 29.5,74.5 - parent: 1 - type: Transform - - uid: 7472 - components: - - pos: 28.5,74.5 - parent: 1 - type: Transform - - uid: 7473 - components: - - pos: 28.5,72.5 - parent: 1 - type: Transform - - uid: 7474 - components: - - pos: 29.5,72.5 - parent: 1 - type: Transform - - uid: 7475 - components: - - pos: 30.5,72.5 - parent: 1 - type: Transform - - uid: 7476 - components: - - pos: 31.5,72.5 - parent: 1 - type: Transform - - uid: 7477 - components: - - pos: 32.5,72.5 - parent: 1 - type: Transform - - uid: 7478 - components: - - pos: 33.5,72.5 - parent: 1 - type: Transform - - uid: 7479 - components: - - pos: 34.5,72.5 - parent: 1 - type: Transform - - uid: 7480 - components: - - pos: 35.5,72.5 - parent: 1 - type: Transform - - uid: 7481 - components: - - pos: 35.5,68.5 - parent: 1 - type: Transform - - uid: 7482 - components: - - pos: 39.5,70.5 - parent: 1 - type: Transform - - uid: 7483 - components: - - pos: 40.5,70.5 - parent: 1 - type: Transform - - uid: 7484 - components: - - pos: 41.5,70.5 - parent: 1 - type: Transform - - uid: 7485 - components: - - pos: 42.5,70.5 - parent: 1 - type: Transform - - uid: 7486 - components: - - pos: 43.5,70.5 - parent: 1 - type: Transform - - uid: 7487 - components: - - pos: 44.5,70.5 - parent: 1 - type: Transform - - uid: 7488 - components: - - pos: 45.5,70.5 - parent: 1 - type: Transform - - uid: 7489 - components: - - pos: 46.5,70.5 - parent: 1 - type: Transform - - uid: 7490 - components: - - pos: 46.5,68.5 - parent: 1 - type: Transform - - uid: 7491 - components: - - pos: 45.5,68.5 - parent: 1 - type: Transform - - uid: 7492 - components: - - pos: 44.5,68.5 - parent: 1 - type: Transform - - uid: 7493 - components: - - pos: 43.5,68.5 - parent: 1 - type: Transform - - uid: 7494 - components: - - pos: 42.5,68.5 - parent: 1 - type: Transform - - uid: 7495 - components: - - pos: 41.5,68.5 - parent: 1 - type: Transform - - uid: 7496 - components: - - pos: 40.5,68.5 - parent: 1 - type: Transform - - uid: 7497 - components: - - pos: 39.5,68.5 - parent: 1 - type: Transform - - uid: 7498 - components: - - pos: 34.5,68.5 - parent: 1 - type: Transform - - uid: 7499 - components: - - pos: 33.5,68.5 - parent: 1 - type: Transform - - uid: 7500 - components: - - pos: 32.5,68.5 - parent: 1 - type: Transform - - uid: 7501 - components: - - pos: 31.5,68.5 - parent: 1 - type: Transform - - uid: 7502 - components: - - pos: 30.5,68.5 - parent: 1 - type: Transform - - uid: 7503 - components: - - pos: 29.5,68.5 - parent: 1 - type: Transform - - uid: 7504 - components: - - pos: 28.5,68.5 - parent: 1 - type: Transform - - uid: 7505 - components: - - pos: 28.5,70.5 - parent: 1 - type: Transform - - uid: 7506 - components: - - pos: 29.5,70.5 - parent: 1 - type: Transform - - uid: 7507 - components: - - pos: 30.5,70.5 - parent: 1 - type: Transform - - uid: 7508 - components: - - pos: 31.5,70.5 - parent: 1 - type: Transform - - uid: 7509 - components: - - pos: 32.5,70.5 - parent: 1 - type: Transform - - uid: 7510 - components: - - pos: 33.5,70.5 - parent: 1 - type: Transform - - uid: 7511 - components: - - pos: 34.5,70.5 - parent: 1 - type: Transform - - uid: 7512 - components: - - pos: 35.5,70.5 - parent: 1 - type: Transform - - uid: 7945 - components: - - pos: -36.5,74.5 - parent: 1 - type: Transform - - uid: 7946 - components: - - pos: -35.5,74.5 - parent: 1 - type: Transform - - uid: 7947 - components: - - pos: -34.5,74.5 - parent: 1 - type: Transform - - uid: 7948 - components: - - pos: -33.5,74.5 - parent: 1 - type: Transform - - uid: 7949 - components: - - pos: -32.5,74.5 - parent: 1 - type: Transform - - uid: 7950 - components: - - pos: -31.5,74.5 - parent: 1 - type: Transform - - uid: 7951 - components: - - pos: -30.5,74.5 - parent: 1 - type: Transform - - uid: 7952 - components: - - pos: -29.5,74.5 - parent: 1 - type: Transform - - uid: 7953 - components: - - pos: -36.5,72.5 - parent: 1 - type: Transform - - uid: 7954 - components: - - pos: -35.5,72.5 - parent: 1 - type: Transform - - uid: 7955 - components: - - pos: -34.5,72.5 - parent: 1 - type: Transform - - uid: 7956 - components: - - pos: -33.5,72.5 - parent: 1 - type: Transform - - uid: 7957 - components: - - pos: -32.5,72.5 - parent: 1 - type: Transform - - uid: 7958 - components: - - pos: -31.5,72.5 - parent: 1 - type: Transform - - uid: 7959 - components: - - pos: -30.5,72.5 - parent: 1 - type: Transform - - uid: 7960 - components: - - pos: -29.5,72.5 - parent: 1 - type: Transform - - uid: 7961 - components: - - pos: -36.5,70.5 - parent: 1 - type: Transform - - uid: 7962 - components: - - pos: -35.5,70.5 - parent: 1 - type: Transform - - uid: 7963 - components: - - pos: -34.5,70.5 - parent: 1 - type: Transform - - uid: 7964 - components: - - pos: -33.5,70.5 - parent: 1 - type: Transform - - uid: 7965 - components: - - pos: -32.5,70.5 - parent: 1 - type: Transform - - uid: 7966 - components: - - pos: -31.5,70.5 - parent: 1 - type: Transform - - uid: 7967 - components: - - pos: -30.5,70.5 - parent: 1 - type: Transform - - uid: 7968 - components: - - pos: -29.5,70.5 - parent: 1 - type: Transform - - uid: 7969 - components: - - pos: -36.5,68.5 - parent: 1 - type: Transform - - uid: 7970 - components: - - pos: -35.5,68.5 - parent: 1 - type: Transform - - uid: 7971 - components: - - pos: -34.5,68.5 - parent: 1 - type: Transform - - uid: 7972 - components: - - pos: -33.5,68.5 - parent: 1 - type: Transform - - uid: 7973 - components: - - pos: -32.5,68.5 - parent: 1 - type: Transform - - uid: 7974 - components: - - pos: -31.5,68.5 - parent: 1 - type: Transform - - uid: 7975 - components: - - pos: -30.5,68.5 - parent: 1 - type: Transform - - uid: 7976 - components: - - pos: -29.5,68.5 - parent: 1 - type: Transform - - uid: 7977 - components: - - pos: -41.5,68.5 - parent: 1 - type: Transform - - uid: 7978 - components: - - pos: -40.5,68.5 - parent: 1 - type: Transform - - uid: 7979 - components: - - pos: -42.5,68.5 - parent: 1 - type: Transform - - uid: 7980 - components: - - pos: -43.5,68.5 - parent: 1 - type: Transform - - uid: 7981 - components: - - pos: -44.5,68.5 - parent: 1 - type: Transform - - uid: 7982 - components: - - pos: -45.5,68.5 - parent: 1 - type: Transform - - uid: 7983 - components: - - pos: -46.5,68.5 - parent: 1 - type: Transform - - uid: 7984 - components: - - pos: -47.5,68.5 - parent: 1 - type: Transform - - uid: 7985 - components: - - pos: -47.5,70.5 - parent: 1 - type: Transform - - uid: 7986 - components: - - pos: -46.5,70.5 - parent: 1 - type: Transform - - uid: 7987 - components: - - pos: -45.5,70.5 - parent: 1 - type: Transform - - uid: 7988 - components: - - pos: -44.5,70.5 - parent: 1 - type: Transform - - uid: 7989 - components: - - pos: -43.5,70.5 - parent: 1 - type: Transform - - uid: 7990 - components: - - pos: -42.5,70.5 - parent: 1 - type: Transform - - uid: 7991 - components: - - pos: -41.5,70.5 - parent: 1 - type: Transform - - uid: 7992 - components: - - pos: -40.5,70.5 - parent: 1 - type: Transform - - uid: 7993 - components: - - pos: -47.5,72.5 - parent: 1 - type: Transform - - uid: 7994 - components: - - pos: -46.5,72.5 - parent: 1 - type: Transform - - uid: 7995 - components: - - pos: -45.5,72.5 - parent: 1 - type: Transform - - uid: 7996 - components: - - pos: -44.5,72.5 - parent: 1 - type: Transform - - uid: 7997 - components: - - pos: -43.5,72.5 - parent: 1 - type: Transform - - uid: 7998 - components: - - pos: -42.5,72.5 - parent: 1 - type: Transform - - uid: 7999 - components: - - pos: -41.5,72.5 - parent: 1 - type: Transform - - uid: 8000 - components: - - pos: -40.5,72.5 - parent: 1 - type: Transform - - uid: 8001 - components: - - pos: -47.5,74.5 - parent: 1 - type: Transform - - uid: 8002 - components: - - pos: -46.5,74.5 - parent: 1 - type: Transform - - uid: 8003 - components: - - pos: -45.5,74.5 - parent: 1 - type: Transform - - uid: 8004 - components: - - pos: -44.5,74.5 - parent: 1 - type: Transform - - uid: 8005 - components: - - pos: -43.5,74.5 - parent: 1 - type: Transform - - uid: 8006 - components: - - pos: -42.5,74.5 - parent: 1 - type: Transform - - uid: 8007 - components: - - pos: -41.5,74.5 - parent: 1 - type: Transform - - uid: 8008 - components: - - pos: -40.5,74.5 - parent: 1 - type: Transform -- proto: SolarPanelBroken - entities: - - uid: 10110 - components: - - pos: 17.5,-37.5 - parent: 1 - type: Transform -- proto: SolarTracker - entities: - - uid: 6554 - components: - - pos: 37.5,75.5 - parent: 1 - type: Transform - - uid: 7654 - components: - - pos: -38.5,75.5 - parent: 1 - type: Transform - - uid: 17491 - components: - - pos: 6.5,-71.5 - parent: 1 - type: Transform - - uid: 17652 - components: - - pos: -7.5,-71.5 - parent: 1 - type: Transform -- proto: SpaceCash - entities: - - uid: 9948 - components: - - pos: -38.499844,-13.352273 - parent: 1 - type: Transform - - uid: 9949 - components: - - pos: -38.54244,-12.855584 - parent: 1 - type: Transform - - uid: 9950 - components: - - pos: -39.36597,-11.422282 - parent: 1 - type: Transform - - uid: 9951 - components: - - pos: -38.812218,-11.251988 - parent: 1 - type: Transform - - uid: 9952 - components: - - pos: -38.23007,-11.436473 - parent: 1 - type: Transform - - uid: 9953 - components: - - pos: -38.329456,-12.387278 - parent: 1 - type: Transform - - uid: 13431 - components: - - pos: -23.58317,58.71947 - parent: 1 - type: Transform - - uid: 13432 - components: - - pos: -23.497978,58.520798 - parent: 1 - type: Transform - - uid: 13433 - components: - - pos: -23.412786,58.747852 - parent: 1 - type: Transform - - uid: 13434 - components: - - pos: -23.35599,58.94653 - parent: 1 - type: Transform - - uid: 18103 - components: - - pos: -29.227093,53.8533 - parent: 1 - type: Transform - - uid: 18104 - components: - - pos: -29.25549,53.668816 - parent: 1 - type: Transform - - uid: 18105 - components: - - pos: -29.653055,53.73977 - parent: 1 - type: Transform -- proto: SpaceVillainArcadeComputerCircuitboard - entities: - - uid: 4213 - components: - - pos: 16.583744,-22.398453 - parent: 1 - type: Transform -- proto: SpawnMobAlexander - entities: - - uid: 10644 - components: - - pos: 5.5,-0.5 - parent: 1 - type: Transform -- proto: SpawnMobBandito - entities: - - uid: 18206 - components: - - pos: -36.5,2.5 - parent: 1 - type: Transform -- proto: SpawnMobCatException - entities: - - uid: 18207 - components: - - pos: -6.5,-18.5 - parent: 1 - type: Transform -- proto: SpawnMobCatFloppa - entities: - - uid: 18222 - components: - - pos: -23.5,27.5 - parent: 1 - type: Transform -- proto: SpawnMobCatRuntime - entities: - - uid: 18220 - components: - - pos: 15.5,33.5 - parent: 1 - type: Transform -- proto: SpawnMobCorgi - entities: - - uid: 9217 - components: - - pos: 24.5,2.5 - parent: 1 - type: Transform -- proto: SpawnMobDrone - entities: - - uid: 3981 - components: - - pos: -24.5,-12.5 - parent: 1 - type: Transform - - uid: 4537 - components: - - pos: -24.5,-11.5 - parent: 1 - type: Transform - - uid: 4538 - components: - - pos: -24.5,-13.5 - parent: 1 - type: Transform -- proto: SpawnMobFoxRenault - entities: - - uid: 18223 - components: - - pos: -6.5,73.5 - parent: 1 - type: Transform -- proto: SpawnMobGoat - entities: - - uid: 6707 - components: - - pos: 11.5,2.5 - parent: 1 - type: Transform -- proto: SpawnMobHamsterHamlet - entities: - - uid: 8116 - components: - - pos: -3.5,79.5 - parent: 1 - type: Transform -- proto: SpawnMobMcGriff - entities: - - uid: 18221 - components: - - pos: -11.5,49.5 - parent: 1 - type: Transform -- proto: SpawnMobMonkeyPunpun - entities: - - uid: 6381 - components: - - pos: -10.5,7.5 - parent: 1 - type: Transform -- proto: SpawnMobMouse - entities: - - uid: 18208 - components: - - pos: 23.5,-22.5 - parent: 1 - type: Transform - - uid: 18211 - components: - - pos: 38.5,52.5 - parent: 1 - type: Transform - - uid: 18212 - components: - - pos: 18.5,63.5 - parent: 1 - type: Transform - - uid: 18213 - components: - - pos: -13.5,67.5 - parent: 1 - type: Transform - - uid: 18214 - components: - - pos: -46.5,48.5 - parent: 1 - type: Transform - - uid: 18215 - components: - - pos: -42.5,9.5 - parent: 1 - type: Transform -- proto: SpawnMobPossumMorty - entities: - - uid: 18217 - components: - - pos: 20.5,33.5 - parent: 1 - type: Transform -- proto: SpawnMobRaccoonMorticia - entities: - - uid: 18218 - components: - - pos: 7.5,-14.5 - parent: 1 - type: Transform -- proto: SpawnMobShiva - entities: - - uid: 7697 - components: - - pos: -15.5,59.5 - parent: 1 - type: Transform -- proto: SpawnMobSlothPaperwork - entities: - - uid: 6681 - components: - - pos: -28.5,6.5 - parent: 1 - type: Transform -- proto: SpawnMobWalter - entities: - - uid: 18219 - components: - - pos: 3.5,21.5 - parent: 1 - type: Transform -- proto: SpawnPointAssistant - entities: - - uid: 4253 - components: - - pos: 11.5,41.5 - parent: 1 - type: Transform - - uid: 4254 - components: - - pos: 11.5,45.5 - parent: 1 - type: Transform - - uid: 4255 - components: - - pos: 17.5,47.5 - parent: 1 - type: Transform - - uid: 8397 - components: - - pos: 17.5,46.5 - parent: 1 - type: Transform -- proto: SpawnPointAtmos - entities: - - uid: 18171 - components: - - pos: -14.5,-18.5 - parent: 1 - type: Transform - - uid: 18172 - components: - - pos: -13.5,-18.5 - parent: 1 - type: Transform -- proto: SpawnPointBartender - entities: - - uid: 9145 - components: - - pos: -7.5,11.5 - parent: 1 - type: Transform -- proto: SpawnPointBotanist - entities: - - uid: 9146 - components: - - pos: 15.5,10.5 - parent: 1 - type: Transform - - uid: 9147 - components: - - pos: 14.5,10.5 - parent: 1 - type: Transform -- proto: SpawnPointCaptain - entities: - - uid: 6799 - components: - - pos: -2.5,79.5 - parent: 1 - type: Transform -- proto: SpawnPointCargoTechnician - entities: - - uid: 9157 - components: - - pos: -36.5,11.5 - parent: 1 - type: Transform - - uid: 9158 - components: - - pos: -35.5,11.5 - parent: 1 - type: Transform -- proto: SpawnPointChaplain - entities: - - uid: 18173 - components: - - pos: 25.5,53.5 - parent: 1 - type: Transform -- proto: SpawnPointChef - entities: - - uid: 4574 - components: - - pos: 8.5,-4.5 - parent: 1 - type: Transform - - uid: 9148 - components: - - pos: 8.5,-1.5 - parent: 1 - type: Transform -- proto: SpawnPointChemist - entities: - - uid: 8687 - components: - - pos: 3.5,24.5 - parent: 1 - type: Transform - - uid: 8688 - components: - - pos: 4.5,24.5 - parent: 1 - type: Transform -- proto: SpawnPointChiefEngineer - entities: - - uid: 6831 - components: - - pos: -5.5,81.5 - parent: 1 - type: Transform -- proto: SpawnPointChiefMedicalOfficer - entities: - - uid: 6830 - components: - - pos: 4.5,81.5 - parent: 1 - type: Transform -- proto: SpawnPointClown - entities: - - uid: 14684 - components: - - pos: -16.5,1.5 - parent: 1 - type: Transform -- proto: SpawnPointDetective - entities: - - uid: 6841 - components: - - pos: 42.5,48.5 - parent: 1 - type: Transform -- proto: SpawnPointHeadOfPersonnel - entities: - - uid: 6834 - components: - - pos: 25.5,3.5 - parent: 1 - type: Transform -- proto: SpawnPointHeadOfSecurity - entities: - - uid: 6829 - components: - - pos: 1.5,79.5 - parent: 1 - type: Transform -- proto: SpawnPointJanitor - entities: - - uid: 9164 - components: - - pos: 17.5,-4.5 - parent: 1 - type: Transform - - uid: 9165 - components: - - pos: 17.5,-5.5 - parent: 1 - type: Transform -- proto: SpawnPointLatejoin - entities: - - uid: 2043 - components: - - pos: 42.5,-7.5 - parent: 1 - type: Transform - - uid: 2044 - components: - - pos: 40.5,-7.5 - parent: 1 - type: Transform - - uid: 6516 - components: - - pos: 41.5,-7.5 - parent: 1 - type: Transform -- proto: SpawnPointLawyer - entities: - - uid: 9153 - components: - - pos: 4.5,63.5 - parent: 1 - type: Transform - - uid: 18190 - components: - - pos: 2.5,60.5 - parent: 1 - type: Transform -- proto: SpawnPointLibrarian - entities: - - uid: 9160 - components: - - pos: -25.5,2.5 - parent: 1 - type: Transform -- proto: SpawnPointMedicalDoctor - entities: - - uid: 15522 - components: - - pos: 11.5,25.5 - parent: 1 - type: Transform - - uid: 15523 - components: - - pos: 11.5,26.5 - parent: 1 - type: Transform -- proto: SpawnPointMedicalIntern - entities: - - uid: 8691 - components: - - pos: 10.5,20.5 - parent: 1 - type: Transform - - uid: 8692 - components: - - pos: 12.5,20.5 - parent: 1 - type: Transform -- proto: SpawnPointMime - entities: - - uid: 9151 - components: - - pos: -16.5,4.5 - parent: 1 - type: Transform -- proto: SpawnPointMusician - entities: - - uid: 9152 - components: - - pos: -17.5,-4.5 - parent: 1 - type: Transform -- proto: SpawnPointObserver - entities: - - uid: 4251 - components: - - pos: -0.5,15.5 - parent: 1 - type: Transform - - uid: 4252 - components: - - pos: -0.5,-9.5 - parent: 1 - type: Transform -- proto: SpawnPointParamedic - entities: - - uid: 6178 - components: - - pos: 11.5,27.5 - parent: 1 - type: Transform -- proto: SpawnPointQuartermaster - entities: - - uid: 6833 - components: - - pos: 0.5,82.5 - parent: 1 - type: Transform -- proto: SpawnPointResearchAssistant - entities: - - uid: 18127 - components: - - pos: -12.5,23.5 - parent: 1 - type: Transform - - uid: 18128 - components: - - pos: -20.5,22.5 - parent: 1 - type: Transform -- proto: SpawnPointResearchDirector - entities: - - uid: 6832 - components: - - pos: -1.5,82.5 - parent: 1 - type: Transform -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 9154 - components: - - pos: -37.5,27.5 - parent: 1 - type: Transform - - uid: 9155 - components: - - pos: -37.5,26.5 - parent: 1 - type: Transform - - uid: 9156 - components: - - pos: -37.5,25.5 - parent: 1 - type: Transform -- proto: SpawnPointScientist - entities: - - uid: 8695 - components: - - pos: -12.5,22.5 - parent: 1 - type: Transform - - uid: 8696 - components: - - pos: -20.5,23.5 - parent: 1 - type: Transform -- proto: SpawnPointSecurityCadet - entities: - - uid: 6839 - components: - - pos: -5.5,53.5 - parent: 1 - type: Transform - - uid: 6840 - components: - - pos: -5.5,54.5 - parent: 1 - type: Transform -- proto: SpawnPointSecurityOfficer - entities: - - uid: 6836 - components: - - pos: -18.5,41.5 - parent: 1 - type: Transform - - uid: 6837 - components: - - pos: -17.5,41.5 - parent: 1 - type: Transform - - uid: 6838 - components: - - pos: -16.5,41.5 - parent: 1 - type: Transform -- proto: SpawnPointServiceWorker - entities: - - uid: 18174 - components: - - pos: 7.5,-1.5 - parent: 1 - type: Transform -- proto: SpawnPointStationEngineer - entities: - - uid: 9166 - components: - - pos: 4.5,-18.5 - parent: 1 - type: Transform - - uid: 9167 - components: - - pos: 5.5,-18.5 - parent: 1 - type: Transform -- proto: SpawnPointTechnicalAssistant - entities: - - uid: 9168 - components: - - pos: 12.5,-12.5 - parent: 1 - type: Transform - - uid: 9169 - components: - - pos: 8.5,-14.5 - parent: 1 - type: Transform -- proto: SpawnPointWarden - entities: - - uid: 6835 - components: - - pos: -12.5,49.5 - parent: 1 - type: Transform -- proto: SpawnVehicleJanicart - entities: - - uid: 16377 - components: - - pos: 22.5,-5.5 - parent: 1 - type: Transform -- proto: SpawnVehicleSecway - entities: - - uid: 8242 - components: - - pos: -15.5,52.5 - parent: 1 - type: Transform - - uid: 8243 - components: - - pos: -14.5,52.5 - parent: 1 - type: Transform -- proto: SpawnVendingMachineRestockFoodDrink - entities: - - uid: 9321 - components: - - pos: -43.5,-7.5 - parent: 1 - type: Transform - - uid: 9322 - components: - - pos: -39.5,-4.5 - parent: 1 - type: Transform - - uid: 9323 - components: - - pos: -42.5,-6.5 - parent: 1 - type: Transform -- proto: Spear - entities: - - uid: 18106 - components: - - pos: -35.403564,54.591236 - parent: 1 - type: Transform -- proto: SpeedLoaderCap - entities: - - uid: 7763 - components: - - pos: -16.575819,5.572419 - parent: 1 - type: Transform -- proto: Spoon - entities: - - uid: 17288 - components: - - pos: -10.945471,2.5472858 - parent: 1 - type: Transform - - uid: 17289 - components: - - pos: -0.38157701,9.21001 - parent: 1 - type: Transform -- proto: SprayBottleSpaceCleaner - entities: - - uid: 3164 - components: - - pos: 16.269894,-4.730578 - parent: 1 - type: Transform - - uid: 9253 - components: - - pos: 16.478226,-4.855578 - parent: 1 - type: Transform - - uid: 17274 - components: - - pos: -23.710033,-13.449605 - parent: 1 - type: Transform - - uid: 17275 - components: - - pos: -23.539648,-13.279312 - parent: 1 - type: Transform -- proto: StasisBed - entities: - - uid: 6698 - components: - - pos: 3.5,27.5 - parent: 1 - type: Transform -- proto: StationMap - entities: - - uid: 7440 - components: - - pos: -8.5,-6.5 - parent: 1 - type: Transform - - uid: 7441 - components: - - pos: 7.5,69.5 - parent: 1 - type: Transform - - uid: 7639 - components: - - pos: 1.5,20.5 - parent: 1 - type: Transform - - uid: 7640 - components: - - pos: 44.5,-10.5 - parent: 1 - type: Transform - - uid: 7645 - components: - - pos: -45.5,35.5 - parent: 1 - type: Transform - - uid: 7646 - components: - - pos: 49.5,40.5 - parent: 1 - type: Transform -- proto: StatueVenusBlue - entities: - - uid: 17763 - components: - - pos: 35.5,10.5 - parent: 1 - type: Transform -- proto: StatueVenusRed - entities: - - uid: 17762 - components: - - pos: 35.5,-4.5 - parent: 1 - type: Transform -- proto: Stool - entities: - - uid: 2478 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-3.5 - parent: 1 - type: Transform - - uid: 2479 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-1.5 - parent: 1 - type: Transform - - uid: 3414 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-5.5 - parent: 1 - type: Transform - - uid: 3415 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-5.5 - parent: 1 - type: Transform - - uid: 3416 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-3.5 - parent: 1 - type: Transform - - uid: 3417 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-1.5 - parent: 1 - type: Transform - - uid: 8376 - components: - - rot: 3.141592653589793 rad - pos: 34.5,48.5 - parent: 1 - type: Transform - - uid: 18418 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,52.5 - parent: 1 - type: Transform -- proto: StoolBar - entities: - - uid: 4034 - components: - - rot: 3.141592653589793 rad - pos: -8.5,4.5 - parent: 1 - type: Transform - - uid: 4035 - components: - - rot: 3.141592653589793 rad - pos: -7.5,4.5 - parent: 1 - type: Transform - - uid: 4036 - components: - - rot: 3.141592653589793 rad - pos: -6.5,4.5 - parent: 1 - type: Transform - - uid: 4037 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,8.5 - parent: 1 - type: Transform - - uid: 4038 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,7.5 - parent: 1 - type: Transform - - uid: 4039 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,6.5 - parent: 1 - type: Transform - - uid: 4425 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-6.5 - parent: 1 - type: Transform - - uid: 4426 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-6.5 - parent: 1 - type: Transform - - uid: 4427 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-6.5 - parent: 1 - type: Transform -- proto: StorageCanister - entities: - - uid: 3024 - components: - - pos: 0.5,-29.5 - parent: 1 - type: Transform - - uid: 3045 - components: - - pos: -9.5,-30.5 - parent: 1 - type: Transform - - uid: 3046 - components: - - pos: -9.5,-31.5 - parent: 1 - type: Transform - - uid: 3047 - components: - - pos: -13.5,-26.5 - parent: 1 - type: Transform - - uid: 3048 - components: - - pos: -13.5,-27.5 - parent: 1 - type: Transform - - uid: 6587 - components: - - pos: -6.5,34.5 - parent: 1 - type: Transform - - uid: 6588 - components: - - pos: -7.5,34.5 - parent: 1 - type: Transform - - uid: 9202 - components: - - pos: -7.5,-41.5 - parent: 1 - type: Transform - - uid: 10089 - components: - - pos: -15.5,-32.5 - parent: 1 - type: Transform -- proto: StrangePill - entities: - - uid: 772 - components: - - pos: -38.658638,42.44425 - parent: 1 - type: Transform - - uid: 6551 - components: - - pos: -34.521122,33.610306 - parent: 1 - type: Transform - - uid: 7545 - components: - - pos: 23.385082,56.636555 - parent: 1 - type: Transform - - uid: 7624 - components: - - pos: 17.981688,-36.520332 - parent: 1 - type: Transform - - uid: 7672 - components: - - pos: -17.505447,-39.48328 - parent: 1 - type: Transform -- proto: Stunbaton - entities: - - uid: 8187 - components: - - pos: -18.632307,40.44518 - parent: 1 - type: Transform - - uid: 8188 - components: - - pos: -18.694807,40.653515 - parent: 1 - type: Transform -- proto: SubstationBasic - entities: - - uid: 4186 - components: - - pos: 8.5,-17.5 - parent: 1 - type: Transform - - uid: 4187 - components: - - pos: 8.5,-18.5 - parent: 1 - type: Transform - - uid: 4584 - components: - - pos: -21.5,30.5 - parent: 1 - type: Transform - - uid: 4585 - components: - - pos: -25.5,-15.5 - parent: 1 - type: Transform - - uid: 4587 - components: - - pos: -24.5,50.5 - parent: 1 - type: Transform - - uid: 4588 - components: - - pos: 20.5,54.5 - parent: 1 - type: Transform - - uid: 4589 - components: - - pos: 16.5,25.5 - parent: 1 - type: Transform - - uid: 4590 - components: - - pos: 17.5,4.5 - parent: 1 - type: Transform - - uid: 4591 - components: - - pos: -25.5,-0.5 - parent: 1 - type: Transform - - uid: 4594 - components: - - pos: 26.5,-18.5 - parent: 1 - type: Transform - - uid: 4931 - components: - - pos: -3.5,74.5 - parent: 1 - type: Transform - - uid: 9403 - components: - - pos: -23.5,-18.5 - parent: 1 - type: Transform - - uid: 18472 - components: - - pos: 22.5,-11.5 - parent: 1 - type: Transform -- proto: SubstationWallBasic - entities: - - uid: 8818 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-5.5 - parent: 8756 - type: Transform -- proto: SuitStorageAtmos - entities: - - uid: 7705 - components: - - pos: -5.5,-17.5 - parent: 1 - type: Transform - - uid: 7805 - components: - - pos: -6.5,-17.5 - parent: 1 - type: Transform -- proto: SuitStorageCE - entities: - - uid: 7711 - components: - - pos: 7.5,-23.5 - parent: 1 - type: Transform -- proto: SuitStorageCMO - entities: - - uid: 6917 - components: - - pos: 15.5,34.5 - parent: 1 - type: Transform -- proto: SuitStorageEngi - entities: - - uid: 7708 - components: - - pos: 13.5,-33.5 - parent: 1 - type: Transform - - uid: 7710 - components: - - pos: 13.5,-32.5 - parent: 1 - type: Transform - - uid: 7804 - components: - - pos: 13.5,-31.5 - parent: 1 - type: Transform -- proto: SuitStorageEVA - entities: - - uid: 4109 - components: - - pos: 23.5,33.5 - parent: 1 - type: Transform - - uid: 4369 - components: - - pos: 23.5,32.5 - parent: 1 - type: Transform - - uid: 7762 - components: - - pos: 23.5,34.5 - parent: 1 - type: Transform - - uid: 7764 - components: - - pos: 23.5,31.5 - parent: 1 - type: Transform -- proto: SuitStorageEVAPrisoner - entities: - - uid: 6922 - components: - - pos: -27.5,49.5 - parent: 1 - type: Transform - - uid: 6923 - components: - - pos: -28.5,49.5 - parent: 1 - type: Transform -- proto: SuitStorageHOS - entities: - - uid: 7712 - components: - - pos: -13.5,58.5 - parent: 1 - type: Transform -- proto: SuitStorageRD - entities: - - uid: 6918 - components: - - pos: -25.5,20.5 - parent: 1 - type: Transform -- proto: SuitStorageSalv - entities: - - uid: 6929 - components: - - pos: -36.5,27.5 - parent: 1 - type: Transform - - uid: 7392 - components: - - pos: -36.5,26.5 - parent: 1 - type: Transform - - uid: 7644 - components: - - pos: -36.5,25.5 - parent: 1 - type: Transform -- proto: SuitStorageSec - entities: - - uid: 7773 - components: - - pos: -4.5,61.5 - parent: 1 - type: Transform - - uid: 7774 - components: - - pos: -4.5,60.5 - parent: 1 - type: Transform - - uid: 7775 - components: - - pos: -4.5,59.5 - parent: 1 - type: Transform -- proto: SuitStorageWarden - entities: - - uid: 6911 - components: - - pos: -11.5,50.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraCommand - entities: - - uid: 16381 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-24.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Tech Storage - type: SurveillanceCamera - - uid: 16395 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-23.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Chief Engineer's Office - type: SurveillanceCamera - - uid: 16414 - components: - - pos: -23.5,-13.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Drone Storage - type: SurveillanceCamera - - uid: 16415 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-17.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Gravity - type: SurveillanceCamera - - uid: 16421 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,8.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Quartermaster's Office - type: SurveillanceCamera - - uid: 16425 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,4.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HoP's Office - type: SurveillanceCamera - - uid: 16426 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,9.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HoP's Bedroom - type: SurveillanceCamera - - uid: 16427 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,32.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: EVA Storage - type: SurveillanceCamera - - uid: 16454 - components: - - rot: 3.141592653589793 rad - pos: -14.5,60.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HoS' Office - type: SurveillanceCamera - - uid: 16458 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,46.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Vault - type: SurveillanceCamera - - uid: 16461 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,71.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge Hallway - type: SurveillanceCamera - - uid: 16462 - components: - - rot: 3.141592653589793 rad - pos: 4.5,74.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Conference Room - type: SurveillanceCamera - - uid: 16463 - components: - - rot: 3.141592653589793 rad - pos: -0.5,83.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge - type: SurveillanceCamera - - uid: 16464 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,73.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Bedroom - type: SurveillanceCamera - - uid: 16467 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,32.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: CMO's Office - type: SurveillanceCamera - - uid: 16482 - components: - - rot: 3.141592653589793 rad - pos: -24.5,23.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: RD's Office - type: SurveillanceCamera - - uid: 17236 - components: - - pos: -0.5,-5.5 - parent: 8756 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Private Shuttle - type: SurveillanceCamera - - uid: 18441 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-15.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Telecomms - type: SurveillanceCamera -- proto: SurveillanceCameraEngineering - entities: - - uid: 16382 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-28.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: SMES Room - type: SurveillanceCamera - - uid: 16383 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-39.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: AME Room - type: SurveillanceCamera - - uid: 16384 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-43.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Port Thruster Exterior - type: SurveillanceCamera - - uid: 16391 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-43.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Starboard Thruster Exterior - type: SurveillanceCamera - - uid: 16392 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-33.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engineering Atrium B - type: SurveillanceCamera - - uid: 16393 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-22.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - type: SurveillanceCamera - - uid: 16394 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-19.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - type: SurveillanceCamera - - uid: 16396 - components: - - pos: 9.5,-15.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Reception - type: SurveillanceCamera - - uid: 16397 - components: - - pos: -10.5,-15.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Reception - type: SurveillanceCamera - - uid: 16398 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-18.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Locker Room - type: SurveillanceCamera - - uid: 16399 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-27.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Canister Storage - type: SurveillanceCamera - - uid: 16400 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-24.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Storage Tanks - type: SurveillanceCamera - - uid: 16401 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-39.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Mixing Chambers - type: SurveillanceCamera -- proto: SurveillanceCameraGeneral - entities: - - uid: 16402 - components: - - pos: -0.5,-13.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Engineering Lobby - type: SurveillanceCamera - - uid: 16424 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,4.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: HoP Line - type: SurveillanceCamera - - uid: 16428 - components: - - rot: 3.141592653589793 rad - pos: 24.5,22.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Public Park - type: SurveillanceCamera - - uid: 16434 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,41.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Laundry Room - type: SurveillanceCamera - - uid: 16435 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,42.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorms - type: SurveillanceCamera - - uid: 16438 - components: - - rot: 3.141592653589793 rad - pos: 26.5,0.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arcade - type: SurveillanceCamera - - uid: 16439 - components: - - rot: 1.5707963267948966 rad - pos: 49.5,37.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: EVAC A - type: SurveillanceCamera - - uid: 16440 - components: - - rot: 1.5707963267948966 rad - pos: 49.5,14.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: EVAV B - type: SurveillanceCamera - - uid: 16443 - components: - - pos: 13.5,-9.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Aft Hallway 2 - type: SurveillanceCamera - - uid: 16444 - components: - - pos: -22.5,-9.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Aft Hallway 1 - type: SurveillanceCamera - - uid: 16446 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,14.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Port Docking Hangar - type: SurveillanceCamera - - uid: 16447 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,22.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Port Hallway - type: SurveillanceCamera - - uid: 16448 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,31.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Tool Room - type: SurveillanceCamera - - uid: 16449 - components: - - rot: 3.141592653589793 rad - pos: -44.5,43.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Port Garden - type: SurveillanceCamera - - uid: 16459 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,46.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Fore Hallway - type: SurveillanceCamera - - uid: 16460 - components: - - pos: 9.5,66.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Bridge Observatory - type: SurveillanceCamera - - uid: 16475 - components: - - pos: -0.5,13.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Med/Sci Lobby - type: SurveillanceCamera - - uid: 16476 - components: - - pos: -18.5,13.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Aft Port Hallway - type: SurveillanceCamera - - uid: 16477 - components: - - pos: 16.5,13.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Aft Starboard Hallway - type: SurveillanceCamera - - uid: 16484 - components: - - pos: -16.5,36.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Fore Port Hallway - type: SurveillanceCamera - - uid: 16485 - components: - - pos: 17.5,36.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Fore Starboard Hallway - type: SurveillanceCamera - - uid: 16487 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,27.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Midships Hallway - type: SurveillanceCamera - - uid: 16489 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-15.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Aft Port Access - type: SurveillanceCamera -- proto: SurveillanceCameraMedical - entities: - - uid: 16436 - components: - - pos: 11.5,17.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Reception - type: SurveillanceCamera - - uid: 16437 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,26.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Atrium - type: SurveillanceCamera - - uid: 16465 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,32.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Cloning - type: SurveillanceCamera - - uid: 16466 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,31.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Ward - type: SurveillanceCamera - - uid: 16468 - components: - - rot: 3.141592653589793 rad - pos: 20.5,34.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Morgue - type: SurveillanceCamera - - uid: 16469 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,27.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Surgery - type: SurveillanceCamera - - uid: 16470 - components: - - rot: 3.141592653589793 rad - pos: 4.5,25.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Chemistry - type: SurveillanceCamera -- proto: SurveillanceCameraRouterCommand - entities: - - uid: 18194 - components: - - pos: 20.5,-13.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraRouterEngineering - entities: - - uid: 2943 - components: - - pos: 20.5,-15.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraRouterGeneral - entities: - - uid: 4573 - components: - - pos: 20.5,-17.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraRouterMedical - entities: - - uid: 18084 - components: - - pos: 22.5,-15.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraRouterScience - entities: - - uid: 4575 - components: - - pos: 21.5,-17.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraRouterSecurity - entities: - - uid: 7035 - components: - - pos: 21.5,-15.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraRouterService - entities: - - uid: 4576 - components: - - pos: 22.5,-13.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraRouterSupply - entities: - - uid: 7245 - components: - - pos: 21.5,-13.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraScience - entities: - - uid: 16478 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,32.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Robotics - type: SurveillanceCamera - - uid: 16479 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,29.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: XenoArch - type: SurveillanceCamera - - uid: 16480 - components: - - rot: 3.141592653589793 rad - pos: -4.5,24.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: R&D - type: SurveillanceCamera - - uid: 16481 - components: - - rot: 3.141592653589793 rad - pos: -12.5,25.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Atrium - type: SurveillanceCamera - - uid: 16483 - components: - - pos: -14.5,17.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Anomalous Materials - type: SurveillanceCamera -- proto: SurveillanceCameraSecurity - entities: - - uid: 16432 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,48.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Detective's Office - type: SurveillanceCamera - - uid: 16433 - components: - - rot: 3.141592653589793 rad - pos: 43.5,44.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: EVAC Checkpoint - type: SurveillanceCamera - - uid: 16442 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-12.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Arrivals Checkpoint - type: SurveillanceCamera - - uid: 16445 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-3.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cargo Checkpoint - type: SurveillanceCamera - - uid: 16450 - components: - - rot: 3.141592653589793 rad - pos: -29.5,45.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Brig - type: SurveillanceCamera - - uid: 16451 - components: - - rot: 3.141592653589793 rad - pos: -10.5,46.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Atrium 2 - type: SurveillanceCamera - - uid: 16452 - components: - - pos: -10.5,52.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Atrium 1 - type: SurveillanceCamera - - uid: 16453 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,41.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Locker Room - type: SurveillanceCamera - - uid: 16455 - components: - - rot: 3.141592653589793 rad - pos: -6.5,64.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory - type: SurveillanceCamera - - uid: 16456 - components: - - rot: 3.141592653589793 rad - pos: 11.5,61.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Court Room - type: SurveillanceCamera - - uid: 16457 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,61.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Lawyer's Office - type: SurveillanceCamera -- proto: SurveillanceCameraService - entities: - - uid: 16407 - components: - - pos: -5.5,-5.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: South Cafeteria - type: SurveillanceCamera - - uid: 16409 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,10.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: North Cafeteria - type: SurveillanceCamera - - uid: 16410 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,2.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Middle Cafeteria - type: SurveillanceCamera - - uid: 16411 - components: - - rot: 3.141592653589793 rad - pos: -7.5,8.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Bar - type: SurveillanceCamera - - uid: 16412 - components: - - pos: 8.5,-4.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Kitchen - type: SurveillanceCamera - - uid: 16413 - components: - - pos: 9.5,5.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Botany - type: SurveillanceCamera - - uid: 16423 - components: - - rot: 3.141592653589793 rad - pos: 19.5,-3.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Janitor Closet - type: SurveillanceCamera - - uid: 16429 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,8.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Library - type: SurveillanceCamera - - uid: 16430 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,46.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Chapel - type: SurveillanceCamera - - uid: 16431 - components: - - pos: 33.5,54.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Crematorium - type: SurveillanceCamera -- proto: SurveillanceCameraSupply - entities: - - uid: 16416 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-6.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - type: SurveillanceCamera - - uid: 16417 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-8.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Loading Dock - type: SurveillanceCamera - - uid: 16418 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,3.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Loading Bay - type: SurveillanceCamera - - uid: 16419 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,7.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Lobby - type: SurveillanceCamera - - uid: 16420 - components: - - pos: -34.5,9.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Mail Room - type: SurveillanceCamera - - uid: 16422 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,25.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Salvage - type: SurveillanceCamera -- proto: SurveillanceCameraWirelessRouterEntertainment - entities: - - uid: 7293 - components: - - pos: 22.5,-17.5 - parent: 1 - type: Transform -- proto: SurveillanceWirelessCameraMovableEntertainment - entities: - - uid: 4024 - components: - - pos: -7.5,-0.5 - parent: 1 - type: Transform - - uid: 16486 - components: - - rot: 3.141592653589793 rad - pos: 10.5,54.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEntertainment - nameSet: True - id: Court TV - type: SurveillanceCamera -- proto: SynthesizerInstrument - entities: - - uid: 9376 - components: - - pos: -15.706505,-5.3218913 - parent: 1 - type: Transform -- proto: Syringe - entities: - - uid: 7124 - components: - - rot: 1.5707963267948966 rad - pos: -13.489402,28.012117 - parent: 1 - type: Transform - - uid: 9611 - components: - - pos: 9.552147,30.534693 - parent: 1 - type: Transform -- proto: SyringeEphedrine - entities: - - uid: 17755 - components: - - pos: -40.359406,48.047718 - parent: 1 - type: Transform -- proto: SyringeSpaceacillin - entities: - - uid: 17615 - components: - - pos: 7.474396,33.593372 - parent: 1 - type: Transform -- proto: Table - entities: - - uid: 1586 - components: - - pos: -28.5,43.5 - parent: 1 - type: Transform - - uid: 1587 - components: - - pos: -28.5,44.5 - parent: 1 - type: Transform - - uid: 1588 - components: - - pos: -29.5,44.5 - parent: 1 - type: Transform - - uid: 1589 - components: - - pos: -29.5,43.5 - parent: 1 - type: Transform - - uid: 4324 - components: - - pos: -34.5,49.5 - parent: 1 - type: Transform - - uid: 4325 - components: - - pos: -33.5,49.5 - parent: 1 - type: Transform - - uid: 4326 - components: - - pos: -32.5,49.5 - parent: 1 - type: Transform - - uid: 4395 - components: - - pos: 3.5,0.5 - parent: 1 - type: Transform - - uid: 6088 - components: - - pos: 20.5,40.5 - parent: 1 - type: Transform - - uid: 6089 - components: - - pos: 20.5,41.5 - parent: 1 - type: Transform - - uid: 6543 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-22.5 - parent: 1 - type: Transform - - uid: 6919 - components: - - pos: 5.5,-5.5 - parent: 1 - type: Transform - - uid: 7650 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-23.5 - parent: 1 - type: Transform - - uid: 8402 - components: - - pos: 12.5,46.5 - parent: 1 - type: Transform - - uid: 8422 - components: - - pos: 3.5,1.5 - parent: 1 - type: Transform - - uid: 9088 - components: - - pos: 4.5,-33.5 - parent: 1 - type: Transform - - uid: 9910 - components: - - pos: -19.5,-37.5 - parent: 1 - type: Transform - - uid: 9911 - components: - - pos: -19.5,-36.5 - parent: 1 - type: Transform - - uid: 9932 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-29.5 - parent: 1 - type: Transform - - uid: 9973 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-24.5 - parent: 1 - type: Transform - - uid: 10136 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-18.5 - parent: 1 - type: Transform - - uid: 11055 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-0.5 - parent: 1 - type: Transform - - uid: 13312 - components: - - pos: -28.5,3.5 - parent: 1 - type: Transform - - uid: 13333 - components: - - pos: -12.5,10.5 - parent: 1 - type: Transform - - uid: 13358 - components: - - pos: -39.5,34.5 - parent: 1 - type: Transform - - uid: 13390 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,30.5 - parent: 1 - type: Transform - - uid: 13397 - components: - - pos: -23.5,43.5 - parent: 1 - type: Transform - - uid: 13451 - components: - - pos: -46.5,46.5 - parent: 1 - type: Transform - - uid: 14005 - components: - - pos: 18.5,64.5 - parent: 1 - type: Transform - - uid: 14025 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,58.5 - parent: 1 - type: Transform -- proto: TableCarpet - entities: - - uid: 565 - components: - - pos: -22.5,10.5 - parent: 1 - type: Transform - - uid: 775 - components: - - pos: -27.5,7.5 - parent: 1 - type: Transform - - uid: 776 - components: - - pos: -28.5,7.5 - parent: 1 - type: Transform - - uid: 2935 - components: - - pos: -38.5,-11.5 - parent: 1 - type: Transform - - uid: 3951 - components: - - pos: -38.5,-12.5 - parent: 1 - type: Transform - - uid: 5830 - components: - - pos: -38.5,-13.5 - parent: 1 - type: Transform - - uid: 6502 - components: - - pos: -39.5,-11.5 - parent: 1 - type: Transform - - uid: 7145 - components: - - pos: -26.5,7.5 - parent: 1 - type: Transform - - uid: 7146 - components: - - pos: -26.5,6.5 - parent: 1 - type: Transform - - uid: 10069 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-17.5 - parent: 1 - type: Transform - - uid: 13428 - components: - - pos: -23.5,58.5 - parent: 1 - type: Transform -- proto: TableGlass - entities: - - uid: 666 - components: - - pos: 3.5,34.5 - parent: 1 - type: Transform - - uid: 1002 - components: - - pos: 2.5,28.5 - parent: 1 - type: Transform - - uid: 1273 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,35.5 - parent: 1 - type: Transform - - uid: 1998 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,6.5 - parent: 1 - type: Transform - - uid: 2485 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-24.5 - parent: 1 - type: Transform - - uid: 2831 - components: - - pos: -13.5,-33.5 - parent: 1 - type: Transform - - uid: 2832 - components: - - pos: -13.5,-34.5 - parent: 1 - type: Transform - - uid: 2833 - components: - - pos: -13.5,-24.5 - parent: 1 - type: Transform - - uid: 2834 - components: - - pos: -13.5,-23.5 - parent: 1 - type: Transform - - uid: 3699 - components: - - pos: 2.5,23.5 - parent: 1 - type: Transform - - uid: 3735 - components: - - pos: 18.5,-24.5 - parent: 1 - type: Transform - - uid: 3740 - components: - - pos: 18.5,-22.5 - parent: 1 - type: Transform - - uid: 3741 - components: - - pos: 17.5,-25.5 - parent: 1 - type: Transform - - uid: 3742 - components: - - pos: 16.5,-22.5 - parent: 1 - type: Transform - - uid: 3761 - components: - - pos: 18.5,-25.5 - parent: 1 - type: Transform - - uid: 3765 - components: - - pos: 18.5,-21.5 - parent: 1 - type: Transform - - uid: 3766 - components: - - pos: 17.5,-21.5 - parent: 1 - type: Transform - - uid: 3767 - components: - - pos: 16.5,-24.5 - parent: 1 - type: Transform - - uid: 4045 - components: - - pos: 5.5,25.5 - parent: 1 - type: Transform - - uid: 4049 - components: - - pos: 2.5,24.5 - parent: 1 - type: Transform - - uid: 4053 - components: - - pos: 6.5,22.5 - parent: 1 - type: Transform - - uid: 4054 - components: - - pos: 5.5,22.5 - parent: 1 - type: Transform - - uid: 4079 - components: - - pos: 7.5,33.5 - parent: 1 - type: Transform - - uid: 4084 - components: - - pos: 7.5,32.5 - parent: 1 - type: Transform - - uid: 4119 - components: - - pos: 3.5,31.5 - parent: 1 - type: Transform - - uid: 4204 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-25.5 - parent: 1 - type: Transform - - uid: 4236 - components: - - pos: 5.5,7.5 - parent: 1 - type: Transform - - uid: 4238 - components: - - pos: 5.5,6.5 - parent: 1 - type: Transform - - uid: 4396 - components: - - pos: 8.5,11.5 - parent: 1 - type: Transform - - uid: 6386 - components: - - pos: 12.5,22.5 - parent: 1 - type: Transform - - uid: 6387 - components: - - pos: 12.5,23.5 - parent: 1 - type: Transform - - uid: 6388 - components: - - pos: 12.5,24.5 - parent: 1 - type: Transform - - uid: 6390 - components: - - pos: 9.5,26.5 - parent: 1 - type: Transform - - uid: 6601 - components: - - pos: -15.5,-5.5 - parent: 1 - type: Transform - - uid: 6602 - components: - - pos: -16.5,-5.5 - parent: 1 - type: Transform - - uid: 6697 - components: - - pos: 2.5,27.5 - parent: 1 - type: Transform - - uid: 7100 - components: - - pos: -14.5,-19.5 - parent: 1 - type: Transform - - uid: 7101 - components: - - pos: -13.5,-19.5 - parent: 1 - type: Transform - - uid: 7148 - components: - - pos: 20.5,27.5 - parent: 1 - type: Transform - - uid: 7149 - components: - - pos: 20.5,26.5 - parent: 1 - type: Transform - - uid: 7292 - components: - - pos: 20.5,28.5 - parent: 1 - type: Transform - - uid: 8420 - components: - - pos: -49.5,44.5 - parent: 1 - type: Transform - - uid: 8433 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,31.5 - parent: 1 - type: Transform - - uid: 8441 - components: - - pos: 5.5,57.5 - parent: 1 - type: Transform - - uid: 8458 - components: - - pos: 12.5,70.5 - parent: 1 - type: Transform - - uid: 8627 - components: - - pos: -23.5,19.5 - parent: 1 - type: Transform - - uid: 8628 - components: - - pos: -23.5,20.5 - parent: 1 - type: Transform - - uid: 8716 - components: - - pos: -11.5,-15.5 - parent: 1 - type: Transform - - uid: 8717 - components: - - pos: -10.5,-15.5 - parent: 1 - type: Transform - - uid: 9105 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-25.5 - parent: 1 - type: Transform - - uid: 9559 - components: - - pos: -22.5,-7.5 - parent: 1 - type: Transform - - uid: 9596 - components: - - pos: -8.5,36.5 - parent: 1 - type: Transform - - uid: 9610 - components: - - rot: 3.141592653589793 rad - pos: 9.5,30.5 - parent: 1 - type: Transform - - uid: 9703 - components: - - pos: -35.5,9.5 - parent: 1 - type: Transform - - uid: 9704 - components: - - pos: -34.5,9.5 - parent: 1 - type: Transform - - uid: 10960 - components: - - pos: 34.5,-14.5 - parent: 1 - type: Transform - - uid: 14084 - components: - - pos: -49.5,16.5 - parent: 1 - type: Transform - - uid: 16652 - components: - - pos: -32.5,31.5 - parent: 1 - type: Transform - - uid: 18496 - components: - - pos: 6.5,52.5 - parent: 1 - type: Transform -- proto: TablePlasmaGlass - entities: - - uid: 1109 - components: - - pos: -9.5,27.5 - parent: 1 - type: Transform - - uid: 1198 - components: - - pos: -18.5,30.5 - parent: 1 - type: Transform - - uid: 1306 - components: - - pos: -17.5,30.5 - parent: 1 - type: Transform - - uid: 1309 - components: - - pos: -10.5,34.5 - parent: 1 - type: Transform - - uid: 1310 - components: - - pos: -11.5,34.5 - parent: 1 - type: Transform - - uid: 3554 - components: - - pos: -7.5,24.5 - parent: 1 - type: Transform - - uid: 3555 - components: - - pos: -6.5,24.5 - parent: 1 - type: Transform - - uid: 4582 - components: - - pos: -18.5,17.5 - parent: 1 - type: Transform - - uid: 4583 - components: - - pos: -18.5,20.5 - parent: 1 - type: Transform - - uid: 4586 - components: - - pos: -17.5,17.5 - parent: 1 - type: Transform - - uid: 7119 - components: - - pos: -13.5,28.5 - parent: 1 - type: Transform - - uid: 7120 - components: - - pos: -13.5,27.5 - parent: 1 - type: Transform - - uid: 8667 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,21.5 - parent: 1 - type: Transform - - uid: 8698 - components: - - pos: -9.5,28.5 - parent: 1 - type: Transform -- proto: TableReinforced - entities: - - uid: 266 - components: - - pos: -36.5,7.5 - parent: 1 - type: Transform - - uid: 271 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-2.5 - parent: 1 - type: Transform - - uid: 321 - components: - - pos: -0.5,83.5 - parent: 1 - type: Transform - - uid: 322 - components: - - pos: -0.5,82.5 - parent: 1 - type: Transform - - uid: 326 - components: - - pos: -3.5,83.5 - parent: 1 - type: Transform - - uid: 336 - components: - - pos: -0.5,80.5 - parent: 1 - type: Transform - - uid: 337 - components: - - pos: -4.5,79.5 - parent: 1 - type: Transform - - uid: 338 - components: - - pos: -4.5,80.5 - parent: 1 - type: Transform - - uid: 444 - components: - - pos: -35.5,12.5 - parent: 1 - type: Transform - - uid: 448 - components: - - pos: -36.5,6.5 - parent: 1 - type: Transform - - uid: 480 - components: - - pos: 4.5,-2.5 - parent: 1 - type: Transform - - uid: 481 - components: - - pos: 4.5,-1.5 - parent: 1 - type: Transform - - uid: 482 - components: - - pos: 4.5,-0.5 - parent: 1 - type: Transform - - uid: 491 - components: - - pos: -5.5,8.5 - parent: 1 - type: Transform - - uid: 492 - components: - - pos: -5.5,7.5 - parent: 1 - type: Transform - - uid: 493 - components: - - pos: -5.5,6.5 - parent: 1 - type: Transform - - uid: 503 - components: - - pos: -11.5,7.5 - parent: 1 - type: Transform - - uid: 505 - components: - - pos: -11.5,6.5 - parent: 1 - type: Transform - - uid: 512 - components: - - pos: -6.5,5.5 - parent: 1 - type: Transform - - uid: 513 - components: - - pos: -7.5,5.5 - parent: 1 - type: Transform - - uid: 514 - components: - - pos: -8.5,5.5 - parent: 1 - type: Transform - - uid: 524 - components: - - pos: -10.5,6.5 - parent: 1 - type: Transform - - uid: 549 - components: - - pos: 10.5,12.5 - parent: 1 - type: Transform - - uid: 567 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,3.5 - parent: 1 - type: Transform - - uid: 569 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,3.5 - parent: 1 - type: Transform - - uid: 599 - components: - - pos: 9.5,-5.5 - parent: 1 - type: Transform - - uid: 602 - components: - - pos: 10.5,-5.5 - parent: 1 - type: Transform - - uid: 603 - components: - - pos: 11.5,-5.5 - parent: 1 - type: Transform - - uid: 604 - components: - - pos: 12.5,-0.5 - parent: 1 - type: Transform - - uid: 605 - components: - - pos: 12.5,-1.5 - parent: 1 - type: Transform - - uid: 606 - components: - - pos: 7.5,-2.5 - parent: 1 - type: Transform - - uid: 607 - components: - - pos: 8.5,-2.5 - parent: 1 - type: Transform - - uid: 798 - components: - - pos: 3.5,20.5 - parent: 1 - type: Transform - - uid: 799 - components: - - pos: -5.5,20.5 - parent: 1 - type: Transform - - uid: 801 - components: - - pos: -4.5,20.5 - parent: 1 - type: Transform - - uid: 802 - components: - - pos: 4.5,20.5 - parent: 1 - type: Transform - - uid: 1414 - components: - - pos: -13.5,47.5 - parent: 1 - type: Transform - - uid: 1415 - components: - - pos: -12.5,47.5 - parent: 1 - type: Transform - - uid: 1418 - components: - - pos: -10.5,49.5 - parent: 1 - type: Transform - - uid: 1419 - components: - - pos: -10.5,48.5 - parent: 1 - type: Transform - - uid: 1842 - components: - - pos: -16.5,50.5 - parent: 1 - type: Transform - - uid: 1843 - components: - - pos: -16.5,49.5 - parent: 1 - type: Transform - - uid: 1844 - components: - - pos: -16.5,48.5 - parent: 1 - type: Transform - - uid: 1845 - components: - - pos: -19.5,53.5 - parent: 1 - type: Transform - - uid: 1846 - components: - - pos: -18.5,53.5 - parent: 1 - type: Transform - - uid: 1847 - components: - - pos: -19.5,52.5 - parent: 1 - type: Transform - - uid: 1848 - components: - - pos: -13.5,56.5 - parent: 1 - type: Transform - - uid: 1849 - components: - - pos: -12.5,56.5 - parent: 1 - type: Transform - - uid: 1850 - components: - - pos: -12.5,55.5 - parent: 1 - type: Transform - - uid: 2142 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,21.5 - parent: 1 - type: Transform - - uid: 2143 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,21.5 - parent: 1 - type: Transform - - uid: 2396 - components: - - pos: 5.5,-12.5 - parent: 1 - type: Transform - - uid: 2398 - components: - - pos: -6.5,-13.5 - parent: 1 - type: Transform - - uid: 2407 - components: - - pos: 5.5,-13.5 - parent: 1 - type: Transform - - uid: 2409 - components: - - pos: -6.5,-12.5 - parent: 1 - type: Transform - - uid: 2472 - components: - - pos: 21.5,-6.5 - parent: 1 - type: Transform - - uid: 2891 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,3.5 - parent: 1 - type: Transform - - uid: 2892 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,2.5 - parent: 1 - type: Transform - - uid: 2898 - components: - - pos: 25.5,4.5 - parent: 1 - type: Transform - - uid: 2899 - components: - - pos: 24.5,4.5 - parent: 1 - type: Transform - - uid: 3529 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,53.5 - parent: 1 - type: Transform - - uid: 3570 - components: - - pos: 30.5,-10.5 - parent: 1 - type: Transform - - uid: 3574 - components: - - pos: 29.5,-10.5 - parent: 1 - type: Transform - - uid: 3619 - components: - - pos: 9.5,23.5 - parent: 1 - type: Transform - - uid: 3620 - components: - - pos: 9.5,22.5 - parent: 1 - type: Transform - - uid: 3630 - components: - - pos: 9.5,19.5 - parent: 1 - type: Transform - - uid: 3631 - components: - - pos: 10.5,19.5 - parent: 1 - type: Transform - - uid: 3633 - components: - - pos: 13.5,19.5 - parent: 1 - type: Transform - - uid: 3634 - components: - - pos: 12.5,19.5 - parent: 1 - type: Transform - - uid: 3753 - components: - - pos: 9.5,-2.5 - parent: 1 - type: Transform - - uid: 3756 - components: - - pos: 7.5,-3.5 - parent: 1 - type: Transform - - uid: 3983 - components: - - pos: -25.5,-11.5 - parent: 1 - type: Transform - - uid: 3984 - components: - - pos: -25.5,-12.5 - parent: 1 - type: Transform - - uid: 3985 - components: - - pos: -25.5,-13.5 - parent: 1 - type: Transform - - uid: 4014 - components: - - pos: 16.5,-5.5 - parent: 1 - type: Transform - - uid: 4015 - components: - - pos: 16.5,-4.5 - parent: 1 - type: Transform - - uid: 4016 - components: - - pos: 16.5,-3.5 - parent: 1 - type: Transform - - uid: 4069 - components: - - pos: 8.5,2.5 - parent: 1 - type: Transform - - uid: 4133 - components: - - pos: -39.5,19.5 - parent: 1 - type: Transform - - uid: 4136 - components: - - pos: -39.5,16.5 - parent: 1 - type: Transform - - uid: 4149 - components: - - pos: -33.5,-1.5 - parent: 1 - type: Transform - - uid: 4155 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-2.5 - parent: 1 - type: Transform - - uid: 4188 - components: - - pos: 4.5,-21.5 - parent: 1 - type: Transform - - uid: 4189 - components: - - pos: 5.5,-21.5 - parent: 1 - type: Transform - - uid: 4190 - components: - - pos: 6.5,-21.5 - parent: 1 - type: Transform - - uid: 4193 - components: - - pos: 7.5,-11.5 - parent: 1 - type: Transform - - uid: 4195 - components: - - pos: 9.5,-15.5 - parent: 1 - type: Transform - - uid: 4196 - components: - - pos: 7.5,-15.5 - parent: 1 - type: Transform - - uid: 4197 - components: - - pos: 13.5,-12.5 - parent: 1 - type: Transform - - uid: 4198 - components: - - pos: 13.5,-14.5 - parent: 1 - type: Transform - - uid: 4200 - components: - - pos: 13.5,-11.5 - parent: 1 - type: Transform - - uid: 4203 - components: - - pos: 12.5,-11.5 - parent: 1 - type: Transform - - uid: 4218 - components: - - pos: 11.5,-37.5 - parent: 1 - type: Transform - - uid: 4240 - components: - - pos: 13.5,8.5 - parent: 1 - type: Transform - - uid: 4241 - components: - - pos: 15.5,8.5 - parent: 1 - type: Transform - - uid: 4258 - components: - - pos: -0.5,79.5 - parent: 1 - type: Transform - - uid: 4261 - components: - - pos: -3.5,82.5 - parent: 1 - type: Transform - - uid: 4263 - components: - - pos: 3.5,80.5 - parent: 1 - type: Transform - - uid: 4264 - components: - - pos: 3.5,79.5 - parent: 1 - type: Transform - - uid: 4265 - components: - - pos: 2.5,83.5 - parent: 1 - type: Transform - - uid: 4266 - components: - - pos: 2.5,82.5 - parent: 1 - type: Transform - - uid: 4276 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,80.5 - parent: 1 - type: Transform - - uid: 4277 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,79.5 - parent: 1 - type: Transform - - uid: 4278 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,80.5 - parent: 1 - type: Transform - - uid: 4279 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,79.5 - parent: 1 - type: Transform - - uid: 4280 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,76.5 - parent: 1 - type: Transform - - uid: 4281 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,77.5 - parent: 1 - type: Transform - - uid: 4439 - components: - - pos: -28.5,29.5 - parent: 1 - type: Transform - - uid: 4440 - components: - - pos: -27.5,29.5 - parent: 1 - type: Transform - - uid: 4441 - components: - - pos: -26.5,29.5 - parent: 1 - type: Transform - - uid: 4533 - components: - - pos: -22.5,-11.5 - parent: 1 - type: Transform - - uid: 4534 - components: - - pos: -21.5,-11.5 - parent: 1 - type: Transform - - uid: 4535 - components: - - pos: -22.5,-13.5 - parent: 1 - type: Transform - - uid: 4536 - components: - - pos: -21.5,-13.5 - parent: 1 - type: Transform - - uid: 6109 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,54.5 - parent: 1 - type: Transform - - uid: 6139 - components: - - pos: -20.5,35.5 - parent: 1 - type: Transform - - uid: 6347 - components: - - pos: 44.5,41.5 - parent: 1 - type: Transform - - uid: 6348 - components: - - pos: 43.5,41.5 - parent: 1 - type: Transform - - uid: 6603 - components: - - pos: -15.5,-0.5 - parent: 1 - type: Transform - - uid: 6604 - components: - - pos: -16.5,-0.5 - parent: 1 - type: Transform - - uid: 6635 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,8.5 - parent: 1 - type: Transform - - uid: 7390 - components: - - pos: -14.5,50.5 - parent: 1 - type: Transform - - uid: 7816 - components: - - pos: -42.5,26.5 - parent: 1 - type: Transform - - uid: 7889 - components: - - pos: 44.5,44.5 - parent: 1 - type: Transform - - uid: 8137 - components: - - pos: -6.5,52.5 - parent: 1 - type: Transform - - uid: 8176 - components: - - rot: 3.141592653589793 rad - pos: -18.5,40.5 - parent: 1 - type: Transform - - uid: 8598 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,0.5 - parent: 1 - type: Transform - - uid: 8890 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,3.5 - parent: 8756 - type: Transform - - uid: 8891 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,3.5 - parent: 8756 - type: Transform - - uid: 8910 - components: - - rot: 3.141592653589793 rad - pos: 5.5,2.5 - parent: 1 - type: Transform - - uid: 8944 - components: - - rot: 3.141592653589793 rad - pos: 5.5,1.5 - parent: 1 - type: Transform - - uid: 9115 - components: - - pos: 13.5,-21.5 - parent: 1 - type: Transform - - uid: 9116 - components: - - pos: 13.5,-20.5 - parent: 1 - type: Transform - - uid: 9117 - components: - - pos: 13.5,-22.5 - parent: 1 - type: Transform - - uid: 9118 - components: - - pos: 13.5,-24.5 - parent: 1 - type: Transform - - uid: 9119 - components: - - pos: 13.5,-25.5 - parent: 1 - type: Transform - - uid: 9134 - components: - - pos: 8.5,-32.5 - parent: 1 - type: Transform - - uid: 9135 - components: - - pos: 9.5,-32.5 - parent: 1 - type: Transform - - uid: 9140 - components: - - pos: 10.5,-32.5 - parent: 1 - type: Transform - - uid: 9374 - components: - - pos: 8.5,1.5 - parent: 1 - type: Transform - - uid: 9393 - components: - - pos: -34.5,-5.5 - parent: 1 - type: Transform - - uid: 9394 - components: - - pos: -35.5,-5.5 - parent: 1 - type: Transform - - uid: 9412 - components: - - pos: 30.5,-13.5 - parent: 1 - type: Transform - - uid: 9413 - components: - - pos: 26.5,-13.5 - parent: 1 - type: Transform - - uid: 10643 - components: - - pos: 8.5,-3.5 - parent: 1 - type: Transform - - uid: 10646 - components: - - pos: 9.5,-3.5 - parent: 1 - type: Transform - - uid: 17269 - components: - - pos: -23.5,-13.5 - parent: 1 - type: Transform - - uid: 18473 - components: - - pos: 22.5,-12.5 - parent: 1 - type: Transform -- proto: TableReinforcedGlass - entities: - - uid: 3724 - components: - - rot: 3.141592653589793 rad - pos: 16.5,27.5 - parent: 1 - type: Transform - - uid: 4335 - components: - - pos: -21.5,34.5 - parent: 1 - type: Transform - - uid: 4404 - components: - - pos: 31.5,56.5 - parent: 1 - type: Transform - - uid: 4405 - components: - - pos: 33.5,56.5 - parent: 1 - type: Transform - - uid: 6789 - components: - - pos: 5.5,72.5 - parent: 1 - type: Transform - - uid: 6819 - components: - - pos: -16.5,59.5 - parent: 1 - type: Transform - - uid: 6820 - components: - - pos: -16.5,58.5 - parent: 1 - type: Transform - - uid: 6821 - components: - - pos: -15.5,58.5 - parent: 1 - type: Transform - - uid: 7252 - components: - - pos: 5.5,45.5 - parent: 1 - type: Transform - - uid: 7253 - components: - - pos: 4.5,45.5 - parent: 1 - type: Transform - - uid: 8092 - components: - - pos: 2.5,71.5 - parent: 1 - type: Transform - - uid: 8434 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,29.5 - parent: 1 - type: Transform - - uid: 8480 - components: - - pos: 16.5,32.5 - parent: 1 - type: Transform - - uid: 8481 - components: - - pos: 16.5,33.5 - parent: 1 - type: Transform - - uid: 8482 - components: - - pos: 15.5,32.5 - parent: 1 - type: Transform -- proto: TableStone - entities: - - uid: 6605 - components: - - pos: -15.5,5.5 - parent: 1 - type: Transform - - uid: 6606 - components: - - pos: -16.5,5.5 - parent: 1 - type: Transform -- proto: TableWood - entities: - - uid: 668 - components: - - pos: -24.5,6.5 - parent: 1 - type: Transform - - uid: 773 - components: - - pos: -24.5,7.5 - parent: 1 - type: Transform - - uid: 827 - components: - - pos: -23.5,7.5 - parent: 1 - type: Transform - - uid: 829 - components: - - pos: -23.5,6.5 - parent: 1 - type: Transform - - uid: 885 - components: - - pos: 24.5,54.5 - parent: 1 - type: Transform - - uid: 1877 - components: - - rot: 3.141592653589793 rad - pos: 4.5,64.5 - parent: 1 - type: Transform - - uid: 1908 - components: - - pos: 12.5,60.5 - parent: 1 - type: Transform - - uid: 1927 - components: - - pos: 9.5,59.5 - parent: 1 - type: Transform - - uid: 1928 - components: - - pos: 10.5,59.5 - parent: 1 - type: Transform - - uid: 1929 - components: - - pos: 11.5,59.5 - parent: 1 - type: Transform - - uid: 1930 - components: - - pos: 12.5,59.5 - parent: 1 - type: Transform - - uid: 1931 - components: - - pos: 9.5,60.5 - parent: 1 - type: Transform - - uid: 3175 - components: - - pos: 43.5,51.5 - parent: 1 - type: Transform - - uid: 3177 - components: - - pos: 43.5,50.5 - parent: 1 - type: Transform - - uid: 3178 - components: - - pos: 42.5,50.5 - parent: 1 - type: Transform - - uid: 3190 - components: - - rot: 3.141592653589793 rad - pos: 40.5,46.5 - parent: 1 - type: Transform - - uid: 3736 - components: - - pos: 4.5,71.5 - parent: 1 - type: Transform - - uid: 4399 - components: - - pos: 29.5,49.5 - parent: 1 - type: Transform - - uid: 4400 - components: - - pos: 28.5,49.5 - parent: 1 - type: Transform - - uid: 4444 - components: - - pos: -35.5,54.5 - parent: 1 - type: Transform - - uid: 4445 - components: - - pos: -34.5,54.5 - parent: 1 - type: Transform - - uid: 4446 - components: - - pos: -33.5,54.5 - parent: 1 - type: Transform - - uid: 4447 - components: - - pos: -32.5,54.5 - parent: 1 - type: Transform - - uid: 4448 - components: - - pos: -32.5,55.5 - parent: 1 - type: Transform - - uid: 4450 - components: - - pos: -34.5,56.5 - parent: 1 - type: Transform - - uid: 4460 - components: - - pos: -29.5,53.5 - parent: 1 - type: Transform - - uid: 4461 - components: - - pos: -29.5,56.5 - parent: 1 - type: Transform - - uid: 4462 - components: - - pos: -33.5,52.5 - parent: 1 - type: Transform - - uid: 6782 - components: - - pos: 5.5,71.5 - parent: 1 - type: Transform - - uid: 6783 - components: - - pos: 6.5,71.5 - parent: 1 - type: Transform - - uid: 6784 - components: - - pos: 6.5,72.5 - parent: 1 - type: Transform - - uid: 6785 - components: - - pos: 6.5,73.5 - parent: 1 - type: Transform - - uid: 6786 - components: - - pos: 5.5,73.5 - parent: 1 - type: Transform - - uid: 6787 - components: - - pos: 4.5,73.5 - parent: 1 - type: Transform - - uid: 6788 - components: - - pos: 4.5,72.5 - parent: 1 - type: Transform - - uid: 6803 - components: - - pos: -8.5,74.5 - parent: 1 - type: Transform - - uid: 6807 - components: - - pos: -6.5,72.5 - parent: 1 - type: Transform - - uid: 6885 - components: - - rot: 3.141592653589793 rad - pos: 32.5,49.5 - parent: 1 - type: Transform - - uid: 6886 - components: - - rot: 3.141592653589793 rad - pos: 33.5,49.5 - parent: 1 - type: Transform - - uid: 6984 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,57.5 - parent: 1 - type: Transform - - uid: 6985 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,57.5 - parent: 1 - type: Transform - - uid: 7028 - components: - - pos: -25.5,3.5 - parent: 1 - type: Transform - - uid: 7271 - components: - - pos: 2.5,61.5 - parent: 1 - type: Transform - - uid: 7272 - components: - - pos: 3.5,61.5 - parent: 1 - type: Transform - - uid: 7273 - components: - - rot: 3.141592653589793 rad - pos: 3.5,60.5 - parent: 1 - type: Transform - - uid: 7274 - components: - - rot: 3.141592653589793 rad - pos: 5.5,64.5 - parent: 1 - type: Transform - - uid: 7276 - components: - - rot: 3.141592653589793 rad - pos: 5.5,63.5 - parent: 1 - type: Transform - - uid: 7343 - components: - - pos: 24.5,53.5 - parent: 1 - type: Transform - - uid: 8410 - components: - - pos: 11.5,42.5 - parent: 1 - type: Transform - - uid: 8898 - components: - - pos: -0.5,9.5 - parent: 1 - type: Transform - - uid: 8899 - components: - - pos: -0.5,8.5 - parent: 1 - type: Transform - - uid: 8900 - components: - - pos: -0.5,4.5 - parent: 1 - type: Transform - - uid: 8901 - components: - - pos: -0.5,3.5 - parent: 1 - type: Transform - - uid: 8902 - components: - - pos: -0.5,-0.5 - parent: 1 - type: Transform - - uid: 8903 - components: - - pos: -0.5,-1.5 - parent: 1 - type: Transform - - uid: 8904 - components: - - pos: -4.5,2.5 - parent: 1 - type: Transform - - uid: 8905 - components: - - pos: -5.5,2.5 - parent: 1 - type: Transform - - uid: 8908 - components: - - pos: -11.5,2.5 - parent: 1 - type: Transform - - uid: 8909 - components: - - pos: -10.5,2.5 - parent: 1 - type: Transform - - uid: 8911 - components: - - pos: -0.5,-5.5 - parent: 1 - type: Transform - - uid: 8912 - components: - - pos: 3.5,8.5 - parent: 1 - type: Transform - - uid: 8915 - components: - - pos: -4.5,11.5 - parent: 1 - type: Transform - - uid: 8953 - components: - - pos: -12.5,-3.5 - parent: 1 - type: Transform - - uid: 8954 - components: - - pos: -11.5,-3.5 - parent: 1 - type: Transform - - uid: 9021 - components: - - pos: -13.5,2.5 - parent: 1 - type: Transform - - uid: 9263 - components: - - pos: 23.5,11.5 - parent: 1 - type: Transform - - uid: 9264 - components: - - pos: 24.5,11.5 - parent: 1 - type: Transform - - uid: 9283 - components: - - rot: 3.141592653589793 rad - pos: 23.5,10.5 - parent: 1 - type: Transform - - uid: 9328 - components: - - pos: -42.5,7.5 - parent: 1 - type: Transform - - uid: 9329 - components: - - pos: -43.5,7.5 - parent: 1 - type: Transform - - uid: 9330 - components: - - pos: -43.5,8.5 - parent: 1 - type: Transform - - uid: 9509 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,57.5 - parent: 1 - type: Transform - - uid: 9510 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,57.5 - parent: 1 - type: Transform - - uid: 9869 - components: - - pos: -35.5,-21.5 - parent: 1 - type: Transform - - uid: 10934 - components: - - pos: 35.5,-21.5 - parent: 1 - type: Transform - - uid: 10935 - components: - - pos: 34.5,-21.5 - parent: 1 - type: Transform - - uid: 13470 - components: - - rot: 3.141592653589793 rad - pos: -17.5,64.5 - parent: 1 - type: Transform - - uid: 13475 - components: - - pos: -12.5,64.5 - parent: 1 - type: Transform -- proto: TaikoInstrument - entities: - - uid: 18323 - components: - - pos: -16.5,-2.5 - parent: 1 - type: Transform -- proto: TelecomServer - entities: - - uid: 3583 - components: - - pos: 15.5,-15.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 3587 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 3729 - components: - - pos: 17.5,-17.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 3730 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 3982 - components: - - pos: 17.5,-15.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 4349 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 4391 - components: - - pos: 16.5,-15.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 4569 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 4703 - components: - - pos: 16.5,-13.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 6461 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 7316 - components: - - pos: 17.5,-13.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 8436 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 18434 - components: - - pos: 16.5,-17.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 18435 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 18446 - components: - - pos: 15.5,-13.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 18447 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- proto: Thruster - entities: - - uid: 8881 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-6.5 - parent: 8756 - type: Transform - - uid: 8882 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-6.5 - parent: 8756 - type: Transform - - uid: 8883 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,2.5 - parent: 8756 - type: Transform - - uid: 8884 - components: - - pos: 2.5,2.5 - parent: 8756 - type: Transform -- proto: TintedWindow - entities: - - uid: 536 - components: - - pos: -14.5,-2.5 - parent: 1 - type: Transform - - uid: 615 - components: - - pos: -22.5,12.5 - parent: 1 - type: Transform - - uid: 665 - components: - - pos: -14.5,3.5 - parent: 1 - type: Transform - - uid: 3169 - components: - - pos: -36.5,46.5 - parent: 1 - type: Transform - - uid: 3170 - components: - - pos: -36.5,42.5 - parent: 1 - type: Transform - - uid: 3183 - components: - - pos: 39.5,47.5 - parent: 1 - type: Transform - - uid: 3230 - components: - - rot: 3.141592653589793 rad - pos: 25.5,48.5 - parent: 1 - type: Transform - - uid: 3241 - components: - - rot: 3.141592653589793 rad - pos: 24.5,48.5 - parent: 1 - type: Transform - - uid: 4009 - components: - - pos: 20.5,-6.5 - parent: 1 - type: Transform - - uid: 6937 - components: - - pos: 13.5,41.5 - parent: 1 - type: Transform - - uid: 6938 - components: - - pos: 13.5,45.5 - parent: 1 - type: Transform - - uid: 6939 - components: - - pos: 16.5,46.5 - parent: 1 - type: Transform - - uid: 8923 - components: - - pos: -27.5,12.5 - parent: 1 - type: Transform - - uid: 8990 - components: - - pos: -28.5,12.5 - parent: 1 - type: Transform - - uid: 8991 - components: - - pos: -29.5,11.5 - parent: 1 - type: Transform -- proto: TobaccoSeeds - entities: - - uid: 8629 - components: - - pos: -38.497883,49.42718 - parent: 1 - type: Transform -- proto: ToiletDirtyWater - entities: - - uid: 4314 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,49.5 - parent: 1 - type: Transform - - uid: 10097 - components: - - pos: -17.5,-39.5 - parent: 1 - type: Transform - - uid: 10103 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-39.5 - parent: 1 - type: Transform -- proto: ToiletEmpty - entities: - - uid: 6813 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,70.5 - parent: 1 - type: Transform -- proto: TomDrumsInstrument - entities: - - uid: 548 - components: - - pos: -7.5,-4.5 - parent: 1 - type: Transform -- proto: ToolboxArtistic - entities: - - uid: 8351 - components: - - pos: -27.20099,29.52882 - parent: 1 - type: Transform -- proto: ToolboxElectricalFilled - entities: - - uid: 8066 - components: - - pos: 7.4163632,77.75221 - parent: 1 - type: Transform - - uid: 8348 - components: - - pos: -28.01032,29.77007 - parent: 1 - type: Transform - - uid: 9096 - components: - - pos: 5.5191555,-21.48169 - parent: 1 - type: Transform - - uid: 9237 - components: - - pos: -22.433441,-13.274618 - parent: 1 - type: Transform - - uid: 9967 - components: - - pos: -24.569386,-24.282387 - parent: 1 - type: Transform - - uid: 13170 - components: - - pos: 14.440446,25.49164 - parent: 1 - type: Transform -- proto: ToolboxEmergencyFilled - entities: - - uid: 7160 - components: - - pos: 13.566679,-41.456856 - parent: 1 - type: Transform - - uid: 8068 - components: - - pos: -3.4883027,83.51381 - parent: 1 - type: Transform - - uid: 8349 - components: - - pos: -27.32878,29.77007 - parent: 1 - type: Transform - - uid: 9968 - components: - - pos: -24.427397,-24.45268 - parent: 1 - type: Transform -- proto: ToolboxGoldFilled - entities: - - uid: 7255 - components: - - pos: 5.426082,45.55318 - parent: 1 - type: Transform -- proto: ToolboxMechanicalFilled - entities: - - uid: 7159 - components: - - pos: 13.367895,-41.31494 - parent: 1 - type: Transform - - uid: 7828 - components: - - pos: -42.546696,26.738258 - parent: 1 - type: Transform - - uid: 8067 - components: - - pos: 7.70034,77.49678 - parent: 1 - type: Transform - - uid: 8350 - components: - - pos: -27.882532,29.52882 - parent: 1 - type: Transform - - uid: 9095 - components: - - pos: 5.3108225,-21.315023 - parent: 1 - type: Transform - - uid: 9238 - components: - - pos: -22.28761,-13.462118 - parent: 1 - type: Transform -- proto: ToyAi - entities: - - uid: 13382 - components: - - pos: -18.633104,28.672619 - parent: 1 - type: Transform -- proto: ToyAmongPequeno - entities: - - uid: 18428 - components: - - pos: 5.8128443,72.69741 - parent: 1 - type: Transform -- proto: ToyHonk - entities: - - uid: 8131 - components: - - pos: 12.534896,59.680813 - parent: 1 - type: Transform -- proto: ToyNuke - entities: - - uid: 8620 - components: - - pos: -38.454323,46.531727 - parent: 1 - type: Transform -- proto: TrashBag - entities: - - uid: 17272 - components: - - pos: -22.985895,-13.407032 - parent: 1 - type: Transform - - uid: 17273 - components: - - pos: -23.198877,-13.492178 - parent: 1 - type: Transform -- proto: trayScanner - entities: - - uid: 8711 - components: - - pos: -10.544276,-19.241236 - parent: 1 - type: Transform - - uid: 9086 - components: - - pos: 6.7274895,-21.335855 - parent: 1 - type: Transform - - uid: 9182 - components: - - pos: 12.564603,-11.337542 - parent: 1 - type: Transform - - uid: 9235 - components: - - pos: -21.85011,-11.441285 - parent: 1 - type: Transform -- proto: TubaInstrument - entities: - - uid: 6910 - components: - - pos: -9.5,-4.5 - parent: 1 - type: Transform -- proto: TwoWayLever - entities: - - uid: 4007 - components: - - pos: 18.5,-33.5 - parent: 1 - type: Transform - - linkedPorts: - 3830: - - Left: Forward - - Right: Reverse - - Middle: Off - 4002: - - Left: Forward - - Right: Reverse - - Middle: Off - 4001: - - Left: Forward - - Right: Reverse - - Middle: Off - 4000: - - Left: Forward - - Right: Reverse - - Middle: Off - 3999: - - Left: Forward - - Right: Reverse - - Middle: Off - 3989: - - Left: Forward - - Right: Reverse - - Middle: Off - 3998: - - Left: Forward - - Right: Reverse - - Middle: Off - 3997: - - Left: Forward - - Right: Reverse - - Middle: Off - 3996: - - Left: Forward - - Right: Reverse - - Middle: Off - 3994: - - Left: Forward - - Right: Reverse - - Middle: Off - 3995: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource - - uid: 7808 - components: - - pos: -42.5,23.5 - parent: 1 - type: Transform - - linkedPorts: - 4134: - - Left: Forward - - Right: Reverse - - Middle: Off - 4130: - - Left: Forward - - Right: Reverse - - Middle: Off - 1767: - - Left: Forward - - Right: Reverse - - Middle: Off - 4110: - - Left: Forward - - Right: Reverse - - Middle: Off - 7820: - - Left: Forward - - Right: Reverse - - Middle: Off - 7818: - - Left: Forward - - Right: Reverse - - Middle: Off - 4115: - - Left: Forward - - Right: Reverse - - Middle: Off - 7821: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource - - uid: 7918 - components: - - pos: -44.5,23.5 - parent: 1 - type: Transform - - linkedPorts: - 7821: - - Left: Forward - - Right: Reverse - - Middle: Off - 7820: - - Left: Forward - - Right: Reverse - - Middle: Off - 1767: - - Left: Forward - - Right: Reverse - - Middle: Off - 4134: - - Left: Forward - - Right: Reverse - - Middle: Off - 4115: - - Left: Forward - - Right: Reverse - - Middle: Off - 7818: - - Left: Forward - - Right: Reverse - - Middle: Off - 4110: - - Left: Forward - - Right: Reverse - - Middle: Off - 4130: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource - - uid: 9362 - components: - - pos: -40.5,3.5 - parent: 1 - type: Transform - - linkedPorts: - 4141: - - Left: Forward - - Right: Reverse - - Middle: Off - 4142: - - Left: Forward - - Right: Reverse - - Middle: Off - 4143: - - Left: Forward - - Right: Reverse - - Middle: Off - 4144: - - Left: Forward - - Right: Reverse - - Middle: Off - 4145: - - Left: Forward - - Right: Reverse - - Middle: Off - 4137: - - Left: Forward - - Right: Reverse - - Middle: Off - 4138: - - Left: Forward - - Right: Reverse - - Middle: Off - 4139: - - Left: Forward - - Right: Reverse - - Middle: Off - 4140: - - Left: Forward - - Right: Reverse - - Middle: Off - 4148: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource - - uid: 9364 - components: - - pos: -37.5,4.5 - parent: 1 - type: Transform - - linkedPorts: - 4147: - - Left: Forward - - Right: Reverse - - Middle: Off - 4146: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource -- proto: UniformPrinter - entities: - - uid: 2901 - components: - - rot: 3.141592653589793 rad - pos: 25.5,6.5 - parent: 1 - type: Transform -- proto: UprightPianoInstrument - entities: - - uid: 4452 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,52.5 - parent: 1 - type: Transform -- proto: Vaccinator - entities: - - uid: 4081 - components: - - pos: 5.5,34.5 - parent: 1 - type: Transform -- proto: VehicleJanicartDestroyed - entities: - - uid: 16379 - components: - - pos: 24.5,58.5 - parent: 1 - type: Transform -- proto: VehicleKeyJanicart - entities: - - uid: 16378 - components: - - pos: 16.5,-4.5 - parent: 1 - type: Transform -- proto: VehicleKeySecway - entities: - - uid: 8244 - components: - - pos: -14.194751,50.769012 - parent: 1 - type: Transform - - uid: 8245 - components: - - pos: -14.257251,50.612762 - parent: 1 - type: Transform -- proto: VehicleKeySyndicateSegway - entities: - - uid: 13307 - components: - - pos: -21.378124,-0.6524431 - parent: 1 - type: Transform -- proto: VendingBarDrobe - entities: - - uid: 4033 - components: - - flags: SessionSpecific - type: MetaData - - pos: -6.5,11.5 - parent: 1 - type: Transform -- proto: VendingMachineAtmosDrobe - entities: - - uid: 7097 - components: - - flags: SessionSpecific - type: MetaData - - pos: -10.5,-17.5 - parent: 1 - type: Transform -- proto: VendingMachineBooze - entities: - - uid: 4041 - components: - - flags: SessionSpecific - type: MetaData - - pos: -11.5,8.5 - parent: 1 - type: Transform - - uid: 4449 - components: - - flags: SessionSpecific - type: MetaData - - pos: -35.5,56.5 - parent: 1 - type: Transform -- proto: VendingMachineCargoDrobe - entities: - - uid: 9159 - components: - - flags: SessionSpecific - type: MetaData - - pos: -36.5,9.5 - parent: 1 - type: Transform -- proto: VendingMachineCart - entities: - - uid: 2500 - components: - - flags: SessionSpecific - type: MetaData - - pos: 24.5,7.5 - parent: 1 - type: Transform -- proto: VendingMachineChang - entities: - - uid: 9438 - components: - - flags: SessionSpecific - type: MetaData - - pos: 29.5,-5.5 - parent: 1 - type: Transform - - uid: 9447 - components: - - flags: SessionSpecific - type: MetaData - - pos: -48.5,12.5 - parent: 1 - type: Transform -- proto: VendingMachineChapel - entities: - - uid: 7342 - components: - - flags: SessionSpecific - type: MetaData - - pos: 26.5,54.5 - parent: 1 - type: Transform -- proto: VendingMachineChefDrobe - entities: - - uid: 4398 - components: - - flags: SessionSpecific - type: MetaData - - pos: 10.5,-0.5 - parent: 1 - type: Transform -- proto: VendingMachineChefvend - entities: - - uid: 9000 - components: - - flags: SessionSpecific - type: MetaData - - pos: 9.5,-0.5 - parent: 1 - type: Transform -- proto: VendingMachineChemDrobe - entities: - - uid: 3614 - components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,25.5 - parent: 1 - type: Transform -- proto: VendingMachineChemicals - entities: - - uid: 7777 - components: - - flags: SessionSpecific - type: MetaData - - pos: 7.5,22.5 - parent: 1 - type: Transform -- proto: VendingMachineCigs - entities: - - uid: 1281 - components: - - flags: SessionSpecific - type: MetaData - - pos: -46.5,16.5 - parent: 1 - type: Transform - - uid: 2010 - components: - - flags: SessionSpecific - type: MetaData - - pos: 35.5,6.5 - parent: 1 - type: Transform - - uid: 8089 - components: - - flags: SessionSpecific - type: MetaData - - pos: 6.5,78.5 - parent: 1 - type: Transform - - uid: 8996 - components: - - flags: SessionSpecific - type: MetaData - - pos: 3.5,11.5 - parent: 1 - type: Transform - - uid: 9401 - components: - - flags: SessionSpecific - type: MetaData - - pos: -18.5,-19.5 - parent: 1 - type: Transform - - uid: 9436 - components: - - flags: SessionSpecific - type: MetaData - - pos: 27.5,27.5 - parent: 1 - type: Transform - - uid: 17383 - components: - - flags: SessionSpecific - type: MetaData - - pos: -50.5,35.5 - parent: 1 - type: Transform -- proto: VendingMachineClothing - entities: - - uid: 6087 - components: - - flags: SessionSpecific - type: MetaData - - pos: 20.5,43.5 - parent: 1 - type: Transform -- proto: VendingMachineCoffee - entities: - - uid: 8088 - components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,74.5 - parent: 1 - type: Transform - - uid: 8439 - components: - - flags: SessionSpecific - type: MetaData - - pos: 4.5,57.5 - parent: 1 - type: Transform - - uid: 9440 - components: - - flags: SessionSpecific - type: MetaData - - pos: 29.5,-3.5 - parent: 1 - type: Transform - - uid: 9492 - components: - - flags: SessionSpecific - type: MetaData - - pos: 22.5,29.5 - parent: 1 - type: Transform - - uid: 9554 - components: - - flags: SessionSpecific - type: MetaData - - pos: -32.5,-9.5 - parent: 1 - type: Transform -- proto: VendingMachineCola - entities: - - uid: 9432 - components: - - flags: SessionSpecific - type: MetaData - - pos: 48.5,43.5 - parent: 1 - type: Transform - - uid: 9434 - components: - - flags: SessionSpecific - type: MetaData - - pos: 27.5,29.5 - parent: 1 - type: Transform - - uid: 9446 - components: - - flags: SessionSpecific - type: MetaData - - pos: -30.5,21.5 - parent: 1 - type: Transform -- proto: VendingMachineCondiments - entities: - - uid: 6699 - components: - - flags: SessionSpecific - type: MetaData - - pos: 3.5,1.5 - parent: 1 - type: Transform -- proto: VendingMachineDetDrobe - entities: - - uid: 6853 - components: - - flags: SessionSpecific - type: MetaData - - pos: 40.5,49.5 - parent: 1 - type: Transform -- proto: VendingMachineDinnerware - entities: - - uid: 4394 - components: - - flags: SessionSpecific - type: MetaData - - pos: 12.5,-3.5 - parent: 1 - type: Transform -- proto: VendingMachineDiscount - entities: - - uid: 4345 - components: - - flags: SessionSpecific - type: MetaData - - pos: -30.5,20.5 - parent: 1 - type: Transform - - uid: 5812 - components: - - flags: SessionSpecific - type: MetaData - - pos: 48.5,44.5 - parent: 1 - type: Transform - - uid: 9464 - components: - - flags: SessionSpecific - type: MetaData - - pos: 47.5,12.5 - parent: 1 - type: Transform -- proto: VendingMachineDonut - entities: - - uid: 8090 - components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,73.5 - parent: 1 - type: Transform - - uid: 9439 - components: - - flags: SessionSpecific - type: MetaData - - pos: 29.5,-4.5 - parent: 1 - type: Transform - - uid: 9557 - components: - - flags: SessionSpecific - type: MetaData - - pos: -31.5,-9.5 - parent: 1 - type: Transform -- proto: VendingMachineEngiDrobe - entities: - - uid: 18427 - components: - - flags: SessionSpecific - type: MetaData - - pos: 7.5,-17.5 - parent: 1 - type: Transform -- proto: VendingMachineEngivend - entities: - - uid: 4183 - components: - - flags: SessionSpecific - type: MetaData - - pos: 13.5,-17.5 - parent: 1 - type: Transform - - uid: 7096 - components: - - flags: SessionSpecific - type: MetaData - - pos: -11.5,-17.5 - parent: 1 - type: Transform -- proto: VendingMachineGames - entities: - - uid: 8592 - components: - - flags: SessionSpecific - type: MetaData - - pos: -28.5,11.5 - parent: 1 - type: Transform - - uid: 9909 - components: - - flags: SessionSpecific - type: MetaData - - pos: -20.5,-33.5 - parent: 1 - type: Transform -- proto: VendingMachineGeneDrobe - entities: - - uid: 7243 - components: - - flags: SessionSpecific - type: MetaData - - pos: 12.5,30.5 - parent: 1 - type: Transform -- proto: VendingMachineHappyHonk - entities: - - uid: 9016 - components: - - flags: SessionSpecific - type: MetaData - - pos: 12.5,-4.5 - parent: 1 - type: Transform -- proto: VendingMachineHydrobe - entities: - - uid: 4220 - components: - - flags: SessionSpecific - type: MetaData - - pos: 13.5,11.5 - parent: 1 - type: Transform -- proto: VendingMachineJaniDrobe - entities: - - uid: 9259 - components: - - flags: SessionSpecific - type: MetaData - - pos: 22.5,-2.5 - parent: 1 - type: Transform -- proto: VendingMachineLawDrobe - entities: - - uid: 7277 - components: - - flags: SessionSpecific - type: MetaData - - pos: 3.5,64.5 - parent: 1 - type: Transform -- proto: VendingMachineMediDrobe - entities: - - uid: 8679 - components: - - flags: SessionSpecific - type: MetaData - - pos: 14.5,27.5 - parent: 1 - type: Transform -- proto: VendingMachineNutri - entities: - - uid: 7263 - components: - - flags: SessionSpecific - type: MetaData - - pos: 7.5,11.5 - parent: 1 - type: Transform - - uid: 10961 - components: - - flags: SessionSpecific - type: MetaData - - pos: 34.5,-15.5 - parent: 1 - type: Transform -- proto: VendingMachineRoboDrobe - entities: - - uid: 4339 - components: - - flags: SessionSpecific - type: MetaData - - pos: -16.5,30.5 - parent: 1 - type: Transform -- proto: VendingMachineSalvage - entities: - - uid: 4108 - components: - - flags: SessionSpecific - type: MetaData - - pos: -36.5,28.5 - parent: 1 - type: Transform -- proto: VendingMachineSciDrobe - entities: - - uid: 1069 - components: - - flags: SessionSpecific - type: MetaData - - pos: -19.5,22.5 - parent: 1 - type: Transform -- proto: VendingMachineSec - entities: - - uid: 4385 - components: - - flags: SessionSpecific - type: MetaData - - pos: -11.5,60.5 - parent: 1 - type: Transform -- proto: VendingMachineSecDrobe - entities: - - uid: 7704 - components: - - flags: SessionSpecific - type: MetaData - - pos: -19.5,42.5 - parent: 1 - type: Transform -- proto: VendingMachineSeeds - entities: - - uid: 9003 - components: - - flags: SessionSpecific - type: MetaData - - pos: 6.5,11.5 - parent: 1 - type: Transform -- proto: VendingMachineSeedsUnlocked - entities: - - uid: 4329 - components: - - flags: SessionSpecific - type: MetaData - - pos: -35.5,49.5 - parent: 1 - type: Transform -- proto: VendingMachineSmartFridge - entities: - - uid: 9047 - components: - - flags: SessionSpecific - type: MetaData - - pos: 6.5,3.5 - parent: 1 - type: Transform -- proto: VendingMachineSnack - entities: - - uid: 9435 - components: - - flags: SessionSpecific - type: MetaData - - pos: 27.5,28.5 - parent: 1 - type: Transform - - uid: 9463 - components: - - flags: SessionSpecific - type: MetaData - - pos: 47.5,-6.5 - parent: 1 - type: Transform -- proto: VendingMachineSovietSoda - entities: - - uid: 6662 - components: - - flags: SessionSpecific - type: MetaData - - pos: -38.5,-14.5 - parent: 1 - type: Transform -- proto: VendingMachineSustenance - entities: - - uid: 653 - components: - - flags: SessionSpecific - type: MetaData - - pos: -33.5,42.5 - parent: 1 - type: Transform -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 4219 - components: - - flags: SessionSpecific - type: MetaData - - pos: 13.5,-37.5 - parent: 1 - type: Transform - - uid: 6915 - components: - - flags: SessionSpecific - type: MetaData - - pos: 27.5,34.5 - parent: 1 - type: Transform - - uid: 7116 - components: - - flags: SessionSpecific - type: MetaData - - pos: -8.5,-11.5 - parent: 1 - type: Transform - - uid: 7810 - components: - - flags: SessionSpecific - type: MetaData - - pos: -39.5,30.5 - parent: 1 - type: Transform - - uid: 8167 - components: - - flags: SessionSpecific - type: MetaData - - pos: -8.5,60.5 - parent: 1 - type: Transform - - uid: 8740 - components: - - flags: SessionSpecific - type: MetaData - - pos: -12.5,-39.5 - parent: 1 - type: Transform -- proto: VendingMachineTheater - entities: - - uid: 4437 - components: - - flags: SessionSpecific - type: MetaData - - pos: -27.5,34.5 - parent: 1 - type: Transform - - uid: 6086 - components: - - flags: SessionSpecific - type: MetaData - - pos: 19.5,43.5 - parent: 1 - type: Transform -- proto: VendingMachineVendomat - entities: - - uid: 4438 - components: - - flags: SessionSpecific - type: MetaData - - pos: -28.5,34.5 - parent: 1 - type: Transform - - uid: 18432 - components: - - flags: SessionSpecific - type: MetaData - - pos: 18.5,-23.5 - parent: 1 - type: Transform -- proto: VendingMachineViroDrobe - entities: - - uid: 4083 - components: - - flags: SessionSpecific - type: MetaData - - pos: 4.5,34.5 - parent: 1 - type: Transform -- proto: VendingMachineWinter - entities: - - uid: 7769 - components: - - flags: SessionSpecific - type: MetaData - - pos: 21.5,43.5 - parent: 1 - type: Transform -- proto: VendingMachineYouTool - entities: - - uid: 4182 - components: - - flags: SessionSpecific - type: MetaData - - pos: 10.5,-17.5 - parent: 1 - type: Transform - - uid: 4436 - components: - - flags: SessionSpecific - type: MetaData - - pos: -26.5,34.5 - parent: 1 - type: Transform -- proto: VibraphoneInstrument - entities: - - uid: 8177 - components: - - pos: -17.5,-40.5 - parent: 1 - type: Transform - - uid: 14022 - components: - - pos: 20.5,50.5 - parent: 1 - type: Transform -- proto: WallmountTelescreen - entities: - - uid: 8359 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,51.5 - parent: 1 - type: Transform -- proto: WallmountTelevision - entities: - - uid: 17928 - components: - - pos: 27.5,24.5 - parent: 1 - type: Transform - - uid: 17929 - components: - - rot: 3.141592653589793 rad - pos: 35.5,-10.5 - parent: 1 - type: Transform - - uid: 17931 - components: - - pos: 10.5,39.5 - parent: 1 - type: Transform - - uid: 17932 - components: - - pos: -26.5,39.5 - parent: 1 - type: Transform - - uid: 17933 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,45.5 - parent: 1 - type: Transform - - uid: 17934 - components: - - rot: 3.141592653589793 rad - pos: 10.5,65.5 - parent: 1 - type: Transform - - uid: 17935 - components: - - rot: 3.141592653589793 rad - pos: -8.5,12.5 - parent: 1 - type: Transform - - uid: 17936 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-2.5 - parent: 1 - type: Transform - - uid: 17937 - components: - - rot: 3.141592653589793 rad - pos: -24.5,-10.5 - parent: 1 - type: Transform -- proto: WallReinforced - entities: - - uid: 3 - components: - - rot: 3.141592653589793 rad - pos: 44.5,18.5 - parent: 1 - type: Transform - - uid: 6 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,7.5 - parent: 1 - type: Transform - - uid: 7 - components: - - rot: 3.141592653589793 rad - pos: 50.5,18.5 - parent: 1 - type: Transform - - uid: 10 - components: - - rot: 3.141592653589793 rad - pos: 47.5,18.5 - parent: 1 - type: Transform - - uid: 12 - components: - - rot: 3.141592653589793 rad - pos: 44.5,33.5 - parent: 1 - type: Transform - - uid: 14 - components: - - pos: 44.5,16.5 - parent: 1 - type: Transform - - uid: 15 - components: - - pos: 43.5,16.5 - parent: 1 - type: Transform - - uid: 24 - components: - - pos: 38.5,16.5 - parent: 1 - type: Transform - - uid: 25 - components: - - pos: 33.5,16.5 - parent: 1 - type: Transform - - uid: 27 - components: - - pos: 33.5,21.5 - parent: 1 - type: Transform - - uid: 28 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,20.5 - parent: 1 - type: Transform - - uid: 40 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,31.5 - parent: 1 - type: Transform - - uid: 44 - components: - - pos: 33.5,12.5 - parent: 1 - type: Transform - - uid: 45 - components: - - pos: 38.5,12.5 - parent: 1 - type: Transform - - uid: 46 - components: - - pos: 43.5,12.5 - parent: 1 - type: Transform - - uid: 47 - components: - - pos: 44.5,12.5 - parent: 1 - type: Transform - - uid: 49 - components: - - pos: 50.5,12.5 - parent: 1 - type: Transform - - uid: 51 - components: - - pos: 50.5,16.5 - parent: 1 - type: Transform - - uid: 55 - components: - - rot: 3.141592653589793 rad - pos: 47.5,16.5 - parent: 1 - type: Transform - - uid: 56 - components: - - rot: 3.141592653589793 rad - pos: 47.5,17.5 - parent: 1 - type: Transform - - uid: 63 - components: - - rot: 3.141592653589793 rad - pos: 44.5,35.5 - parent: 1 - type: Transform - - uid: 64 - components: - - rot: 3.141592653589793 rad - pos: 52.5,14.5 - parent: 1 - type: Transform - - uid: 65 - components: - - rot: 3.141592653589793 rad - pos: 50.5,14.5 - parent: 1 - type: Transform - - uid: 66 - components: - - rot: 3.141592653589793 rad - pos: 51.5,14.5 - parent: 1 - type: Transform - - uid: 67 - components: - - rot: 3.141592653589793 rad - pos: 52.5,16.5 - parent: 1 - type: Transform - - uid: 68 - components: - - rot: 3.141592653589793 rad - pos: 52.5,12.5 - parent: 1 - type: Transform - - uid: 71 - components: - - rot: 3.141592653589793 rad - pos: 43.5,35.5 - parent: 1 - type: Transform - - uid: 72 - components: - - rot: 3.141592653589793 rad - pos: 50.5,33.5 - parent: 1 - type: Transform - - uid: 73 - components: - - rot: 3.141592653589793 rad - pos: 50.5,35.5 - parent: 1 - type: Transform - - uid: 74 - components: - - rot: 3.141592653589793 rad - pos: 47.5,35.5 - parent: 1 - type: Transform - - uid: 75 - components: - - rot: 3.141592653589793 rad - pos: 47.5,34.5 - parent: 1 - type: Transform - - uid: 76 - components: - - rot: 3.141592653589793 rad - pos: 47.5,33.5 - parent: 1 - type: Transform - - uid: 83 - components: - - rot: 3.141592653589793 rad - pos: 52.5,39.5 - parent: 1 - type: Transform - - uid: 84 - components: - - rot: 3.141592653589793 rad - pos: 52.5,35.5 - parent: 1 - type: Transform - - uid: 85 - components: - - rot: 3.141592653589793 rad - pos: 52.5,37.5 - parent: 1 - type: Transform - - uid: 86 - components: - - rot: 3.141592653589793 rad - pos: 51.5,37.5 - parent: 1 - type: Transform - - uid: 88 - components: - - rot: 3.141592653589793 rad - pos: 50.5,37.5 - parent: 1 - type: Transform - - uid: 91 - components: - - pos: 47.5,11.5 - parent: 1 - type: Transform - - uid: 93 - components: - - pos: 51.5,-15.5 - parent: 1 - type: Transform - - uid: 94 - components: - - pos: 52.5,-6.5 - parent: 1 - type: Transform - - uid: 99 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,11.5 - parent: 1 - type: Transform - - uid: 107 - components: - - rot: 1.5707963267948966 rad - pos: 50.5,11.5 - parent: 1 - type: Transform - - uid: 108 - components: - - pos: -51.5,-10.5 - parent: 1 - type: Transform - - uid: 113 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,3.5 - parent: 1 - type: Transform - - uid: 114 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,6.5 - parent: 1 - type: Transform - - uid: 115 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,0.5 - parent: 1 - type: Transform - - uid: 119 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,10.5 - parent: 1 - type: Transform - - uid: 120 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,11.5 - parent: 1 - type: Transform - - uid: 121 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,11.5 - parent: 1 - type: Transform - - uid: 122 - components: - - pos: -41.5,7.5 - parent: 1 - type: Transform - - uid: 123 - components: - - pos: -41.5,8.5 - parent: 1 - type: Transform - - uid: 124 - components: - - pos: -41.5,10.5 - parent: 1 - type: Transform - - uid: 125 - components: - - pos: -41.5,11.5 - parent: 1 - type: Transform - - uid: 132 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-3.5 - parent: 1 - type: Transform - - uid: 133 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-4.5 - parent: 1 - type: Transform - - uid: 134 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-5.5 - parent: 1 - type: Transform - - uid: 135 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-5.5 - parent: 1 - type: Transform - - uid: 139 - components: - - pos: -37.5,-18.5 - parent: 1 - type: Transform - - uid: 140 - components: - - pos: -38.5,-18.5 - parent: 1 - type: Transform - - uid: 141 - components: - - pos: -39.5,-18.5 - parent: 1 - type: Transform - - uid: 144 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,16.5 - parent: 1 - type: Transform - - uid: 145 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,16.5 - parent: 1 - type: Transform - - uid: 146 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,17.5 - parent: 1 - type: Transform - - uid: 148 - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-10.5 - parent: 1 - type: Transform - - uid: 149 - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-6.5 - parent: 1 - type: Transform - - uid: 150 - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-6.5 - parent: 1 - type: Transform - - uid: 151 - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-5.5 - parent: 1 - type: Transform - - uid: 154 - components: - - pos: -41.5,6.5 - parent: 1 - type: Transform - - uid: 167 - components: - - rot: -1.5707963267948966 rad - pos: -51.5,11.5 - parent: 1 - type: Transform - - uid: 170 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-1.5 - parent: 1 - type: Transform - - uid: 171 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,0.5 - parent: 1 - type: Transform - - uid: 172 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-1.5 - parent: 1 - type: Transform - - uid: 174 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,4.5 - parent: 1 - type: Transform - - uid: 176 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,8.5 - parent: 1 - type: Transform - - uid: 180 - components: - - pos: 33.5,8.5 - parent: 1 - type: Transform - - uid: 212 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,25.5 - parent: 1 - type: Transform - - uid: 213 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,26.5 - parent: 1 - type: Transform - - uid: 214 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,30.5 - parent: 1 - type: Transform - - uid: 221 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,35.5 - parent: 1 - type: Transform - - uid: 230 - components: - - rot: -1.5707963267948966 rad - pos: -51.5,12.5 - parent: 1 - type: Transform - - uid: 231 - components: - - rot: -1.5707963267948966 rad - pos: -53.5,12.5 - parent: 1 - type: Transform - - uid: 235 - components: - - pos: 47.5,-15.5 - parent: 1 - type: Transform - - uid: 246 - components: - - pos: -33.5,12.5 - parent: 1 - type: Transform - - uid: 247 - components: - - pos: -33.5,-6.5 - parent: 1 - type: Transform - - uid: 255 - components: - - pos: -41.5,3.5 - parent: 1 - type: Transform - - uid: 256 - components: - - pos: -41.5,0.5 - parent: 1 - type: Transform - - uid: 260 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-5.5 - parent: 1 - type: Transform - - uid: 270 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,0.5 - parent: 1 - type: Transform - - uid: 278 - components: - - pos: -39.5,-15.5 - parent: 1 - type: Transform - - uid: 280 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-6.5 - parent: 1 - type: Transform - - uid: 281 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-3.5 - parent: 1 - type: Transform - - uid: 282 - components: - - pos: -44.5,12.5 - parent: 1 - type: Transform - - uid: 283 - components: - - pos: -43.5,12.5 - parent: 1 - type: Transform - - uid: 284 - components: - - pos: -41.5,12.5 - parent: 1 - type: Transform - - uid: 285 - components: - - pos: -42.5,12.5 - parent: 1 - type: Transform - - uid: 289 - components: - - pos: 35.5,57.5 - parent: 1 - type: Transform - - uid: 290 - components: - - rot: 3.141592653589793 rad - pos: -4.5,84.5 - parent: 1 - type: Transform - - uid: 291 - components: - - rot: 3.141592653589793 rad - pos: -4.5,83.5 - parent: 1 - type: Transform - - uid: 292 - components: - - rot: 3.141592653589793 rad - pos: -7.5,83.5 - parent: 1 - type: Transform - - uid: 293 - components: - - rot: 3.141592653589793 rad - pos: -7.5,81.5 - parent: 1 - type: Transform - - uid: 294 - components: - - rot: 3.141592653589793 rad - pos: -8.5,81.5 - parent: 1 - type: Transform - - uid: 295 - components: - - rot: 3.141592653589793 rad - pos: -8.5,78.5 - parent: 1 - type: Transform - - uid: 296 - components: - - rot: 3.141592653589793 rad - pos: -9.5,78.5 - parent: 1 - type: Transform - - uid: 298 - components: - - rot: 3.141592653589793 rad - pos: 7.5,78.5 - parent: 1 - type: Transform - - uid: 300 - components: - - rot: 3.141592653589793 rad - pos: 6.5,81.5 - parent: 1 - type: Transform - - uid: 302 - components: - - pos: 3.5,83.5 - parent: 1 - type: Transform - - uid: 303 - components: - - pos: 6.5,83.5 - parent: 1 - type: Transform - - uid: 304 - components: - - pos: 7.5,81.5 - parent: 1 - type: Transform - - uid: 305 - components: - - rot: 3.141592653589793 rad - pos: -0.5,84.5 - parent: 1 - type: Transform - - uid: 315 - components: - - pos: 3.5,84.5 - parent: 1 - type: Transform - - uid: 328 - components: - - pos: -7.5,75.5 - parent: 1 - type: Transform - - uid: 329 - components: - - pos: -6.5,75.5 - parent: 1 - type: Transform - - uid: 330 - components: - - pos: -8.5,75.5 - parent: 1 - type: Transform - - uid: 331 - components: - - pos: -9.5,75.5 - parent: 1 - type: Transform - - uid: 340 - components: - - pos: 7.5,75.5 - parent: 1 - type: Transform - - uid: 341 - components: - - pos: 6.5,75.5 - parent: 1 - type: Transform - - uid: 342 - components: - - pos: 1.5,75.5 - parent: 1 - type: Transform - - uid: 343 - components: - - pos: 4.5,75.5 - parent: 1 - type: Transform - - uid: 344 - components: - - pos: 1.5,72.5 - parent: 1 - type: Transform - - uid: 345 - components: - - pos: -2.5,75.5 - parent: 1 - type: Transform - - uid: 349 - components: - - pos: -9.5,71.5 - parent: 1 - type: Transform - - uid: 350 - components: - - rot: 3.141592653589793 rad - pos: -6.5,70.5 - parent: 1 - type: Transform - - uid: 351 - components: - - pos: -7.5,71.5 - parent: 1 - type: Transform - - uid: 352 - components: - - pos: -6.5,71.5 - parent: 1 - type: Transform - - uid: 353 - components: - - pos: -4.5,75.5 - parent: 1 - type: Transform - - uid: 354 - components: - - pos: -3.5,75.5 - parent: 1 - type: Transform - - uid: 355 - components: - - pos: -4.5,74.5 - parent: 1 - type: Transform - - uid: 356 - components: - - pos: -4.5,73.5 - parent: 1 - type: Transform - - uid: 357 - components: - - pos: -2.5,74.5 - parent: 1 - type: Transform - - uid: 358 - components: - - pos: -2.5,73.5 - parent: 1 - type: Transform - - uid: 359 - components: - - pos: -0.5,75.5 - parent: 1 - type: Transform - - uid: 360 - components: - - pos: -0.5,69.5 - parent: 1 - type: Transform - - uid: 361 - components: - - pos: 1.5,69.5 - parent: 1 - type: Transform - - uid: 368 - components: - - pos: -4.5,72.5 - parent: 1 - type: Transform - - uid: 369 - components: - - pos: -4.5,71.5 - parent: 1 - type: Transform - - uid: 370 - components: - - pos: -5.5,71.5 - parent: 1 - type: Transform - - uid: 371 - components: - - pos: -2.5,72.5 - parent: 1 - type: Transform - - uid: 372 - components: - - pos: -2.5,71.5 - parent: 1 - type: Transform - - uid: 373 - components: - - pos: -2.5,70.5 - parent: 1 - type: Transform - - uid: 377 - components: - - pos: 8.5,71.5 - parent: 1 - type: Transform - - uid: 378 - components: - - pos: 4.5,69.5 - parent: 1 - type: Transform - - uid: 379 - components: - - pos: 7.5,69.5 - parent: 1 - type: Transform - - uid: 380 - components: - - pos: 13.5,71.5 - parent: 1 - type: Transform - - uid: 381 - components: - - pos: 20.5,59.5 - parent: 1 - type: Transform - - uid: 382 - components: - - pos: 19.5,60.5 - parent: 1 - type: Transform - - uid: 383 - components: - - pos: 13.5,65.5 - parent: 1 - type: Transform - - uid: 384 - components: - - pos: 19.5,65.5 - parent: 1 - type: Transform - - uid: 385 - components: - - pos: 14.5,65.5 - parent: 1 - type: Transform - - uid: 386 - components: - - pos: 13.5,66.5 - parent: 1 - type: Transform - - uid: 387 - components: - - pos: 19.5,59.5 - parent: 1 - type: Transform - - uid: 388 - components: - - pos: 8.5,69.5 - parent: 1 - type: Transform - - uid: 389 - components: - - pos: 8.5,70.5 - parent: 1 - type: Transform - - uid: 396 - components: - - pos: -2.5,69.5 - parent: 1 - type: Transform - - uid: 398 - components: - - pos: 8.5,78.5 - parent: 1 - type: Transform - - uid: 399 - components: - - pos: 8.5,75.5 - parent: 1 - type: Transform - - uid: 422 - components: - - pos: 24.5,59.5 - parent: 1 - type: Transform - - uid: 423 - components: - - pos: 25.5,59.5 - parent: 1 - type: Transform - - uid: 424 - components: - - pos: 29.5,59.5 - parent: 1 - type: Transform - - uid: 425 - components: - - pos: 29.5,57.5 - parent: 1 - type: Transform - - uid: 426 - components: - - pos: 32.5,57.5 - parent: 1 - type: Transform - - uid: 428 - components: - - pos: 35.5,55.5 - parent: 1 - type: Transform - - uid: 429 - components: - - rot: 3.141592653589793 rad - pos: 35.5,53.5 - parent: 1 - type: Transform - - uid: 430 - components: - - pos: 40.5,52.5 - parent: 1 - type: Transform - - uid: 431 - components: - - pos: 44.5,52.5 - parent: 1 - type: Transform - - uid: 432 - components: - - pos: 44.5,49.5 - parent: 1 - type: Transform - - uid: 433 - components: - - pos: 47.5,49.5 - parent: 1 - type: Transform - - uid: 434 - components: - - pos: 47.5,45.5 - parent: 1 - type: Transform - - uid: 435 - components: - - pos: 49.5,45.5 - parent: 1 - type: Transform - - uid: 436 - components: - - pos: 50.5,39.5 - parent: 1 - type: Transform - - uid: 437 - components: - - pos: 49.5,39.5 - parent: 1 - type: Transform - - uid: 438 - components: - - pos: 49.5,40.5 - parent: 1 - type: Transform - - uid: 443 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-4.5 - parent: 1 - type: Transform - - uid: 451 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,0.5 - parent: 1 - type: Transform - - uid: 452 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,0.5 - parent: 1 - type: Transform - - uid: 453 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,0.5 - parent: 1 - type: Transform - - uid: 454 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,0.5 - parent: 1 - type: Transform - - uid: 455 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-5.5 - parent: 1 - type: Transform - - uid: 457 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-6.5 - parent: 1 - type: Transform - - uid: 458 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-6.5 - parent: 1 - type: Transform - - uid: 766 - components: - - pos: 43.5,-6.5 - parent: 1 - type: Transform - - uid: 791 - components: - - pos: -2.5,16.5 - parent: 1 - type: Transform - - uid: 792 - components: - - pos: 1.5,16.5 - parent: 1 - type: Transform - - uid: 793 - components: - - pos: -2.5,20.5 - parent: 1 - type: Transform - - uid: 794 - components: - - pos: 1.5,20.5 - parent: 1 - type: Transform - - uid: 795 - components: - - pos: -6.5,16.5 - parent: 1 - type: Transform - - uid: 803 - components: - - pos: -6.5,20.5 - parent: 1 - type: Transform - - uid: 804 - components: - - pos: -6.5,19.5 - parent: 1 - type: Transform - - uid: 805 - components: - - pos: 5.5,20.5 - parent: 1 - type: Transform - - uid: 806 - components: - - pos: 5.5,19.5 - parent: 1 - type: Transform - - uid: 811 - components: - - pos: -2.5,21.5 - parent: 1 - type: Transform - - uid: 812 - components: - - pos: 1.5,21.5 - parent: 1 - type: Transform - - uid: 813 - components: - - pos: -2.5,25.5 - parent: 1 - type: Transform - - uid: 814 - components: - - pos: 1.5,25.5 - parent: 1 - type: Transform - - uid: 815 - components: - - pos: -3.5,25.5 - parent: 1 - type: Transform - - uid: 816 - components: - - pos: 4.5,26.5 - parent: 1 - type: Transform - - uid: 817 - components: - - pos: -4.5,25.5 - parent: 1 - type: Transform - - uid: 818 - components: - - pos: -8.5,26.5 - parent: 1 - type: Transform - - uid: 819 - components: - - pos: -8.5,25.5 - parent: 1 - type: Transform - - uid: 820 - components: - - pos: -2.5,26.5 - parent: 1 - type: Transform - - uid: 821 - components: - - pos: 1.5,26.5 - parent: 1 - type: Transform - - uid: 823 - components: - - pos: -2.5,27.5 - parent: 1 - type: Transform - - uid: 828 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,29.5 - parent: 1 - type: Transform - - uid: 830 - components: - - pos: -4.5,27.5 - parent: 1 - type: Transform - - uid: 831 - components: - - pos: -4.5,31.5 - parent: 1 - type: Transform - - uid: 832 - components: - - pos: -8.5,31.5 - parent: 1 - type: Transform - - uid: 833 - components: - - pos: -8.5,27.5 - parent: 1 - type: Transform - - uid: 834 - components: - - pos: -2.5,31.5 - parent: 1 - type: Transform - - uid: 835 - components: - - pos: 40.5,44.5 - parent: 1 - type: Transform - - uid: 836 - components: - - pos: 40.5,42.5 - parent: 1 - type: Transform - - uid: 837 - components: - - pos: 40.5,41.5 - parent: 1 - type: Transform - - uid: 838 - components: - - pos: 41.5,45.5 - parent: 1 - type: Transform - - uid: 839 - components: - - pos: 42.5,45.5 - parent: 1 - type: Transform - - uid: 840 - components: - - pos: 44.5,45.5 - parent: 1 - type: Transform - - uid: 841 - components: - - pos: 45.5,45.5 - parent: 1 - type: Transform - - uid: 842 - components: - - pos: 43.5,45.5 - parent: 1 - type: Transform - - uid: 844 - components: - - pos: 46.5,45.5 - parent: 1 - type: Transform - - uid: 870 - components: - - pos: 38.5,35.5 - parent: 1 - type: Transform - - uid: 882 - components: - - pos: 40.5,53.5 - parent: 1 - type: Transform - - uid: 884 - components: - - pos: 38.5,56.5 - parent: 1 - type: Transform - - uid: 887 - components: - - pos: 35.5,56.5 - parent: 1 - type: Transform - - uid: 927 - components: - - pos: 39.5,53.5 - parent: 1 - type: Transform - - uid: 928 - components: - - pos: 39.5,56.5 - parent: 1 - type: Transform - - uid: 929 - components: - - pos: 36.5,56.5 - parent: 1 - type: Transform - - uid: 972 - components: - - pos: -14.5,71.5 - parent: 1 - type: Transform - - uid: 973 - components: - - pos: -14.5,66.5 - parent: 1 - type: Transform - - uid: 974 - components: - - pos: -14.5,65.5 - parent: 1 - type: Transform - - uid: 975 - components: - - pos: -15.5,65.5 - parent: 1 - type: Transform - - uid: 976 - components: - - pos: -20.5,65.5 - parent: 1 - type: Transform - - uid: 977 - components: - - pos: -20.5,60.5 - parent: 1 - type: Transform - - uid: 978 - components: - - pos: -20.5,59.5 - parent: 1 - type: Transform - - uid: 979 - components: - - pos: -21.5,59.5 - parent: 1 - type: Transform - - uid: 980 - components: - - pos: -30.5,59.5 - parent: 1 - type: Transform - - uid: 981 - components: - - pos: -30.5,57.5 - parent: 1 - type: Transform - - uid: 982 - components: - - pos: -33.5,57.5 - parent: 1 - type: Transform - - uid: 983 - components: - - pos: -36.5,57.5 - parent: 1 - type: Transform - - uid: 984 - components: - - pos: -36.5,55.5 - parent: 1 - type: Transform - - uid: 986 - components: - - pos: -41.5,52.5 - parent: 1 - type: Transform - - uid: 987 - components: - - pos: -45.5,52.5 - parent: 1 - type: Transform - - uid: 988 - components: - - pos: -45.5,49.5 - parent: 1 - type: Transform - - uid: 989 - components: - - pos: -48.5,49.5 - parent: 1 - type: Transform - - uid: 990 - components: - - pos: -48.5,45.5 - parent: 1 - type: Transform - - uid: 991 - components: - - pos: -50.5,45.5 - parent: 1 - type: Transform - - uid: 992 - components: - - pos: -50.5,40.5 - parent: 1 - type: Transform - - uid: 993 - components: - - pos: -50.5,39.5 - parent: 1 - type: Transform - - uid: 994 - components: - - pos: -51.5,39.5 - parent: 1 - type: Transform - - uid: 995 - components: - - pos: -2.5,32.5 - parent: 1 - type: Transform - - uid: 996 - components: - - pos: -2.5,33.5 - parent: 1 - type: Transform - - uid: 997 - components: - - pos: -2.5,34.5 - parent: 1 - type: Transform - - uid: 998 - components: - - pos: -2.5,35.5 - parent: 1 - type: Transform - - uid: 999 - components: - - pos: -3.5,35.5 - parent: 1 - type: Transform - - uid: 1000 - components: - - pos: -4.5,35.5 - parent: 1 - type: Transform - - uid: 1001 - components: - - pos: 1.5,31.5 - parent: 1 - type: Transform - - uid: 1004 - components: - - pos: 1.5,34.5 - parent: 1 - type: Transform - - uid: 1005 - components: - - pos: 1.5,35.5 - parent: 1 - type: Transform - - uid: 1006 - components: - - pos: 2.5,35.5 - parent: 1 - type: Transform - - uid: 1007 - components: - - pos: 3.5,35.5 - parent: 1 - type: Transform - - uid: 1008 - components: - - pos: -2.5,39.5 - parent: 1 - type: Transform - - uid: 1009 - components: - - pos: -2.5,43.5 - parent: 1 - type: Transform - - uid: 1010 - components: - - pos: -5.5,43.5 - parent: 1 - type: Transform - - uid: 1011 - components: - - pos: -5.5,39.5 - parent: 1 - type: Transform - - uid: 1012 - components: - - pos: -8.5,39.5 - parent: 1 - type: Transform - - uid: 1013 - components: - - pos: -8.5,43.5 - parent: 1 - type: Transform - - uid: 1014 - components: - - pos: -11.5,39.5 - parent: 1 - type: Transform - - uid: 1015 - components: - - pos: -11.5,43.5 - parent: 1 - type: Transform - - uid: 1016 - components: - - pos: -14.5,39.5 - parent: 1 - type: Transform - - uid: 1017 - components: - - pos: -14.5,43.5 - parent: 1 - type: Transform - - uid: 1018 - components: - - pos: -14.5,42.5 - parent: 1 - type: Transform - - uid: 1019 - components: - - pos: -14.5,41.5 - parent: 1 - type: Transform - - uid: 1020 - components: - - pos: -14.5,40.5 - parent: 1 - type: Transform - - uid: 1021 - components: - - pos: -11.5,42.5 - parent: 1 - type: Transform - - uid: 1022 - components: - - pos: -11.5,41.5 - parent: 1 - type: Transform - - uid: 1023 - components: - - pos: -11.5,40.5 - parent: 1 - type: Transform - - uid: 1024 - components: - - pos: -8.5,42.5 - parent: 1 - type: Transform - - uid: 1025 - components: - - pos: -8.5,41.5 - parent: 1 - type: Transform - - uid: 1026 - components: - - pos: -8.5,40.5 - parent: 1 - type: Transform - - uid: 1027 - components: - - pos: -5.5,42.5 - parent: 1 - type: Transform - - uid: 1028 - components: - - pos: -5.5,41.5 - parent: 1 - type: Transform - - uid: 1029 - components: - - pos: -5.5,40.5 - parent: 1 - type: Transform - - uid: 1030 - components: - - pos: -2.5,42.5 - parent: 1 - type: Transform - - uid: 1031 - components: - - pos: -2.5,41.5 - parent: 1 - type: Transform - - uid: 1032 - components: - - pos: -2.5,40.5 - parent: 1 - type: Transform - - uid: 1033 - components: - - pos: -8.5,35.5 - parent: 1 - type: Transform - - uid: 1034 - components: - - pos: -8.5,32.5 - parent: 1 - type: Transform - - uid: 1035 - components: - - pos: -8.5,34.5 - parent: 1 - type: Transform - - uid: 1036 - components: - - pos: -4.5,34.5 - parent: 1 - type: Transform - - uid: 1037 - components: - - pos: -4.5,33.5 - parent: 1 - type: Transform - - uid: 1043 - components: - - pos: -4.5,32.5 - parent: 1 - type: Transform - - uid: 1053 - components: - - pos: -9.5,35.5 - parent: 1 - type: Transform - - uid: 1054 - components: - - pos: -10.5,35.5 - parent: 1 - type: Transform - - uid: 1055 - components: - - pos: -11.5,35.5 - parent: 1 - type: Transform - - uid: 1056 - components: - - pos: -12.5,35.5 - parent: 1 - type: Transform - - uid: 1057 - components: - - pos: -12.5,34.5 - parent: 1 - type: Transform - - uid: 1058 - components: - - pos: -12.5,32.5 - parent: 1 - type: Transform - - uid: 1060 - components: - - pos: -16.5,35.5 - parent: 1 - type: Transform - - uid: 1062 - components: - - pos: -17.5,35.5 - parent: 1 - type: Transform - - uid: 1067 - components: - - pos: -17.5,29.5 - parent: 1 - type: Transform - - uid: 1072 - components: - - pos: -25.5,18.5 - parent: 1 - type: Transform - - uid: 1074 - components: - - pos: -16.5,28.5 - parent: 1 - type: Transform - - uid: 1075 - components: - - pos: -16.5,27.5 - parent: 1 - type: Transform - - uid: 1076 - components: - - pos: -12.5,33.5 - parent: 1 - type: Transform - - uid: 1094 - components: - - pos: -13.5,29.5 - parent: 1 - type: Transform - - uid: 1098 - components: - - pos: -12.5,29.5 - parent: 1 - type: Transform - - uid: 1101 - components: - - pos: -12.5,26.5 - parent: 1 - type: Transform - - uid: 1103 - components: - - pos: -16.5,26.5 - parent: 1 - type: Transform - - uid: 1107 - components: - - pos: -23.5,18.5 - parent: 1 - type: Transform - - uid: 1110 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,26.5 - parent: 1 - type: Transform - - uid: 1111 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,26.5 - parent: 1 - type: Transform - - uid: 1118 - components: - - pos: -7.5,16.5 - parent: 1 - type: Transform - - uid: 1119 - components: - - pos: -8.5,16.5 - parent: 1 - type: Transform - - uid: 1120 - components: - - pos: -9.5,16.5 - parent: 1 - type: Transform - - uid: 1121 - components: - - pos: -10.5,19.5 - parent: 1 - type: Transform - - uid: 1122 - components: - - pos: -10.5,20.5 - parent: 1 - type: Transform - - uid: 1123 - components: - - pos: -9.5,20.5 - parent: 1 - type: Transform - - uid: 1124 - components: - - pos: -8.5,20.5 - parent: 1 - type: Transform - - uid: 1125 - components: - - pos: -7.5,20.5 - parent: 1 - type: Transform - - uid: 1126 - components: - - pos: -10.5,16.5 - parent: 1 - type: Transform - - uid: 1127 - components: - - pos: -13.5,16.5 - parent: 1 - type: Transform - - uid: 1128 - components: - - pos: -13.5,17.5 - parent: 1 - type: Transform - - uid: 1129 - components: - - pos: -14.5,16.5 - parent: 1 - type: Transform - - uid: 1136 - components: - - pos: -18.5,16.5 - parent: 1 - type: Transform - - uid: 1137 - components: - - pos: -19.5,16.5 - parent: 1 - type: Transform - - uid: 1138 - components: - - pos: -19.5,17.5 - parent: 1 - type: Transform - - uid: 1141 - components: - - pos: -14.5,21.5 - parent: 1 - type: Transform - - uid: 1142 - components: - - pos: -14.5,22.5 - parent: 1 - type: Transform - - uid: 1146 - components: - - pos: -13.5,20.5 - parent: 1 - type: Transform - - uid: 1147 - components: - - pos: -13.5,21.5 - parent: 1 - type: Transform - - uid: 1164 - components: - - pos: -8.5,24.5 - parent: 1 - type: Transform - - uid: 1165 - components: - - pos: -8.5,23.5 - parent: 1 - type: Transform - - uid: 1168 - components: - - pos: -17.5,26.5 - parent: 1 - type: Transform - - uid: 1170 - components: - - pos: -18.5,21.5 - parent: 1 - type: Transform - - uid: 1171 - components: - - pos: -18.5,22.5 - parent: 1 - type: Transform - - uid: 1172 - components: - - pos: -19.5,21.5 - parent: 1 - type: Transform - - uid: 1173 - components: - - pos: -19.5,20.5 - parent: 1 - type: Transform - - uid: 1175 - components: - - pos: -22.5,16.5 - parent: 1 - type: Transform - - uid: 1177 - components: - - pos: -22.5,18.5 - parent: 1 - type: Transform - - uid: 1178 - components: - - pos: -26.5,24.5 - parent: 1 - type: Transform - - uid: 1179 - components: - - pos: -22.5,21.5 - parent: 1 - type: Transform - - uid: 1180 - components: - - pos: -25.5,24.5 - parent: 1 - type: Transform - - uid: 1181 - components: - - pos: -24.5,24.5 - parent: 1 - type: Transform - - uid: 1182 - components: - - pos: -23.5,24.5 - parent: 1 - type: Transform - - uid: 1183 - components: - - pos: -22.5,24.5 - parent: 1 - type: Transform - - uid: 1184 - components: - - pos: -22.5,25.5 - parent: 1 - type: Transform - - uid: 1185 - components: - - pos: -22.5,26.5 - parent: 1 - type: Transform - - uid: 1186 - components: - - pos: -21.5,26.5 - parent: 1 - type: Transform - - uid: 1187 - components: - - pos: -19.5,26.5 - parent: 1 - type: Transform - - uid: 1188 - components: - - pos: -18.5,26.5 - parent: 1 - type: Transform - - uid: 1189 - components: - - pos: -26.5,23.5 - parent: 1 - type: Transform - - uid: 1190 - components: - - pos: -26.5,22.5 - parent: 1 - type: Transform - - uid: 1191 - components: - - pos: -26.5,21.5 - parent: 1 - type: Transform - - uid: 1192 - components: - - pos: -26.5,20.5 - parent: 1 - type: Transform - - uid: 1193 - components: - - pos: -26.5,19.5 - parent: 1 - type: Transform - - uid: 1194 - components: - - pos: -26.5,18.5 - parent: 1 - type: Transform - - uid: 1195 - components: - - pos: -24.5,18.5 - parent: 1 - type: Transform - - uid: 1196 - components: - - pos: -22.5,35.5 - parent: 1 - type: Transform - - uid: 1197 - components: - - pos: -16.5,29.5 - parent: 1 - type: Transform - - uid: 1226 - components: - - pos: -19.5,30.5 - parent: 1 - type: Transform - - uid: 1227 - components: - - pos: -21.5,31.5 - parent: 1 - type: Transform - - uid: 1230 - components: - - pos: -22.5,32.5 - parent: 1 - type: Transform - - uid: 1231 - components: - - pos: -22.5,33.5 - parent: 1 - type: Transform - - uid: 1232 - components: - - pos: -22.5,34.5 - parent: 1 - type: Transform - - uid: 1233 - components: - - pos: -22.5,31.5 - parent: 1 - type: Transform - - uid: 1236 - components: - - pos: -19.5,31.5 - parent: 1 - type: Transform - - uid: 1237 - components: - - pos: -21.5,35.5 - parent: 1 - type: Transform - - uid: 1242 - components: - - pos: -20.5,31.5 - parent: 1 - type: Transform - - uid: 1268 - components: - - pos: -40.5,35.5 - parent: 1 - type: Transform - - uid: 1269 - components: - - pos: -44.5,35.5 - parent: 1 - type: Transform - - uid: 1270 - components: - - pos: -45.5,35.5 - parent: 1 - type: Transform - - uid: 1271 - components: - - pos: -45.5,34.5 - parent: 1 - type: Transform - - uid: 1274 - components: - - pos: -51.5,16.5 - parent: 1 - type: Transform - - uid: 1275 - components: - - pos: -53.5,16.5 - parent: 1 - type: Transform - - uid: 1276 - components: - - pos: -53.5,14.5 - parent: 1 - type: Transform - - uid: 1277 - components: - - pos: -51.5,14.5 - parent: 1 - type: Transform - - uid: 1285 - components: - - pos: -53.5,35.5 - parent: 1 - type: Transform - - uid: 1286 - components: - - pos: -51.5,35.5 - parent: 1 - type: Transform - - uid: 1287 - components: - - pos: -53.5,37.5 - parent: 1 - type: Transform - - uid: 1288 - components: - - pos: -53.5,39.5 - parent: 1 - type: Transform - - uid: 1289 - components: - - pos: -51.5,37.5 - parent: 1 - type: Transform - - uid: 1307 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,23.5 - parent: 1 - type: Transform - - uid: 1308 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,23.5 - parent: 1 - type: Transform - - uid: 1315 - components: - - pos: -17.5,39.5 - parent: 1 - type: Transform - - uid: 1318 - components: - - pos: -20.5,39.5 - parent: 1 - type: Transform - - uid: 1319 - components: - - pos: -20.5,40.5 - parent: 1 - type: Transform - - uid: 1320 - components: - - pos: -20.5,41.5 - parent: 1 - type: Transform - - uid: 1321 - components: - - pos: -20.5,42.5 - parent: 1 - type: Transform - - uid: 1322 - components: - - pos: -20.5,43.5 - parent: 1 - type: Transform - - uid: 1335 - components: - - pos: -2.5,44.5 - parent: 1 - type: Transform - - uid: 1336 - components: - - pos: -2.5,45.5 - parent: 1 - type: Transform - - uid: 1337 - components: - - pos: -2.5,46.5 - parent: 1 - type: Transform - - uid: 1338 - components: - - pos: -2.5,47.5 - parent: 1 - type: Transform - - uid: 1339 - components: - - pos: -2.5,49.5 - parent: 1 - type: Transform - - uid: 1340 - components: - - pos: -2.5,51.5 - parent: 1 - type: Transform - - uid: 1341 - components: - - pos: -3.5,51.5 - parent: 1 - type: Transform - - uid: 1342 - components: - - pos: -4.5,51.5 - parent: 1 - type: Transform - - uid: 1343 - components: - - pos: -4.5,55.5 - parent: 1 - type: Transform - - uid: 1344 - components: - - pos: -5.5,51.5 - parent: 1 - type: Transform - - uid: 1345 - components: - - pos: -6.5,51.5 - parent: 1 - type: Transform - - uid: 1348 - components: - - pos: -4.5,58.5 - parent: 1 - type: Transform - - uid: 1349 - components: - - pos: -3.5,58.5 - parent: 1 - type: Transform - - uid: 1350 - components: - - pos: -2.5,58.5 - parent: 1 - type: Transform - - uid: 1353 - components: - - pos: -7.5,51.5 - parent: 1 - type: Transform - - uid: 1354 - components: - - pos: -7.5,54.5 - parent: 1 - type: Transform - - uid: 1355 - components: - - pos: -16.5,57.5 - parent: 1 - type: Transform - - uid: 1356 - components: - - pos: -7.5,58.5 - parent: 1 - type: Transform - - uid: 1357 - components: - - pos: -6.5,58.5 - parent: 1 - type: Transform - - uid: 1358 - components: - - pos: -5.5,58.5 - parent: 1 - type: Transform - - uid: 1364 - components: - - pos: -11.5,62.5 - parent: 1 - type: Transform - - uid: 1365 - components: - - pos: -5.5,49.5 - parent: 1 - type: Transform - - uid: 1366 - components: - - pos: -5.5,47.5 - parent: 1 - type: Transform - - uid: 1395 - components: - - pos: -20.5,44.5 - parent: 1 - type: Transform - - uid: 1396 - components: - - pos: -20.5,45.5 - parent: 1 - type: Transform - - uid: 1397 - components: - - pos: -20.5,46.5 - parent: 1 - type: Transform - - uid: 1398 - components: - - pos: -20.5,49.5 - parent: 1 - type: Transform - - uid: 1399 - components: - - pos: -20.5,50.5 - parent: 1 - type: Transform - - uid: 1400 - components: - - pos: -20.5,51.5 - parent: 1 - type: Transform - - uid: 1401 - components: - - pos: -20.5,52.5 - parent: 1 - type: Transform - - uid: 1402 - components: - - pos: -20.5,53.5 - parent: 1 - type: Transform - - uid: 1403 - components: - - pos: -15.5,47.5 - parent: 1 - type: Transform - - uid: 1404 - components: - - pos: -10.5,47.5 - parent: 1 - type: Transform - - uid: 1405 - components: - - pos: -10.5,51.5 - parent: 1 - type: Transform - - uid: 1406 - components: - - pos: -15.5,51.5 - parent: 1 - type: Transform - - uid: 1420 - components: - - pos: -20.5,54.5 - parent: 1 - type: Transform - - uid: 1421 - components: - - pos: -19.5,54.5 - parent: 1 - type: Transform - - uid: 1422 - components: - - pos: -18.5,54.5 - parent: 1 - type: Transform - - uid: 1423 - components: - - pos: -17.5,54.5 - parent: 1 - type: Transform - - uid: 1424 - components: - - pos: -13.5,57.5 - parent: 1 - type: Transform - - uid: 1425 - components: - - pos: -12.5,57.5 - parent: 1 - type: Transform - - uid: 1426 - components: - - pos: -17.5,56.5 - parent: 1 - type: Transform - - uid: 1428 - components: - - pos: -16.5,61.5 - parent: 1 - type: Transform - - uid: 1429 - components: - - pos: -12.5,60.5 - parent: 1 - type: Transform - - uid: 1430 - components: - - pos: -17.5,58.5 - parent: 1 - type: Transform - - uid: 1431 - components: - - pos: -15.5,61.5 - parent: 1 - type: Transform - - uid: 1432 - components: - - pos: -14.5,61.5 - parent: 1 - type: Transform - - uid: 1433 - components: - - pos: -17.5,60.5 - parent: 1 - type: Transform - - uid: 1434 - components: - - pos: -17.5,61.5 - parent: 1 - type: Transform - - uid: 1435 - components: - - pos: -17.5,59.5 - parent: 1 - type: Transform - - uid: 1436 - components: - - pos: -10.5,62.5 - parent: 1 - type: Transform - - uid: 1437 - components: - - pos: -7.5,57.5 - parent: 1 - type: Transform - - uid: 1439 - components: - - pos: -10.5,61.5 - parent: 1 - type: Transform - - uid: 1445 - components: - - pos: -10.5,66.5 - parent: 1 - type: Transform - - uid: 1446 - components: - - pos: -10.5,65.5 - parent: 1 - type: Transform - - uid: 1447 - components: - - pos: -10.5,64.5 - parent: 1 - type: Transform - - uid: 1452 - components: - - pos: -10.5,63.5 - parent: 1 - type: Transform - - uid: 1453 - components: - - pos: -23.5,49.5 - parent: 1 - type: Transform - - uid: 1454 - components: - - pos: -23.5,46.5 - parent: 1 - type: Transform - - uid: 1455 - components: - - pos: -24.5,46.5 - parent: 1 - type: Transform - - uid: 1456 - components: - - pos: -25.5,46.5 - parent: 1 - type: Transform - - uid: 1457 - components: - - pos: -24.5,49.5 - parent: 1 - type: Transform - - uid: 1458 - components: - - pos: -25.5,49.5 - parent: 1 - type: Transform - - uid: 1459 - components: - - pos: -26.5,46.5 - parent: 1 - type: Transform - - uid: 1460 - components: - - pos: -26.5,45.5 - parent: 1 - type: Transform - - uid: 1464 - components: - - pos: -26.5,41.5 - parent: 1 - type: Transform - - uid: 1465 - components: - - pos: -27.5,41.5 - parent: 1 - type: Transform - - uid: 1466 - components: - - pos: -28.5,41.5 - parent: 1 - type: Transform - - uid: 1467 - components: - - pos: -24.5,41.5 - parent: 1 - type: Transform - - uid: 1468 - components: - - pos: -24.5,40.5 - parent: 1 - type: Transform - - uid: 1470 - components: - - pos: -38.5,41.5 - parent: 1 - type: Transform - - uid: 1471 - components: - - pos: -39.5,41.5 - parent: 1 - type: Transform - - uid: 1476 - components: - - pos: -41.5,44.5 - parent: 1 - type: Transform - - uid: 1477 - components: - - pos: -26.5,49.5 - parent: 1 - type: Transform - - uid: 1478 - components: - - pos: -26.5,51.5 - parent: 1 - type: Transform - - uid: 1479 - components: - - pos: -26.5,50.5 - parent: 1 - type: Transform - - uid: 1480 - components: - - pos: -27.5,51.5 - parent: 1 - type: Transform - - uid: 1481 - components: - - pos: -28.5,51.5 - parent: 1 - type: Transform - - uid: 1482 - components: - - pos: -29.5,51.5 - parent: 1 - type: Transform - - uid: 1483 - components: - - pos: -30.5,51.5 - parent: 1 - type: Transform - - uid: 1484 - components: - - pos: -31.5,51.5 - parent: 1 - type: Transform - - uid: 1485 - components: - - pos: -32.5,51.5 - parent: 1 - type: Transform - - uid: 1486 - components: - - pos: -33.5,51.5 - parent: 1 - type: Transform - - uid: 1487 - components: - - pos: -34.5,51.5 - parent: 1 - type: Transform - - uid: 1488 - components: - - pos: -35.5,51.5 - parent: 1 - type: Transform - - uid: 1489 - components: - - pos: -36.5,51.5 - parent: 1 - type: Transform - - uid: 1490 - components: - - pos: -37.5,51.5 - parent: 1 - type: Transform - - uid: 1491 - components: - - pos: -38.5,51.5 - parent: 1 - type: Transform - - uid: 1492 - components: - - pos: -39.5,51.5 - parent: 1 - type: Transform - - uid: 1493 - components: - - pos: -39.5,50.5 - parent: 1 - type: Transform - - uid: 1494 - components: - - pos: -39.5,49.5 - parent: 1 - type: Transform - - uid: 1495 - components: - - pos: -39.5,48.5 - parent: 1 - type: Transform - - uid: 1496 - components: - - pos: -39.5,47.5 - parent: 1 - type: Transform - - uid: 1497 - components: - - pos: -40.5,49.5 - parent: 1 - type: Transform - - uid: 1498 - components: - - pos: -41.5,49.5 - parent: 1 - type: Transform - - uid: 1499 - components: - - pos: -41.5,48.5 - parent: 1 - type: Transform - - uid: 1502 - components: - - pos: -41.5,47.5 - parent: 1 - type: Transform - - uid: 1505 - components: - - pos: -41.5,41.5 - parent: 1 - type: Transform - - uid: 1506 - components: - - pos: -41.5,40.5 - parent: 1 - type: Transform - - uid: 1507 - components: - - pos: -41.5,39.5 - parent: 1 - type: Transform - - uid: 1508 - components: - - pos: -40.5,39.5 - parent: 1 - type: Transform - - uid: 1509 - components: - - pos: -39.5,39.5 - parent: 1 - type: Transform - - uid: 1510 - components: - - pos: -38.5,39.5 - parent: 1 - type: Transform - - uid: 1512 - components: - - pos: -24.5,45.5 - parent: 1 - type: Transform - - uid: 1513 - components: - - pos: -26.5,39.5 - parent: 1 - type: Transform - - uid: 1517 - components: - - pos: -29.5,41.5 - parent: 1 - type: Transform - - uid: 1520 - components: - - pos: -39.5,44.5 - parent: 1 - type: Transform - - uid: 1528 - components: - - pos: -27.5,39.5 - parent: 1 - type: Transform - - uid: 1529 - components: - - pos: -24.5,39.5 - parent: 1 - type: Transform - - uid: 1533 - components: - - pos: -28.5,39.5 - parent: 1 - type: Transform - - uid: 1534 - components: - - pos: -33.5,41.5 - parent: 1 - type: Transform - - uid: 1536 - components: - - pos: -37.5,41.5 - parent: 1 - type: Transform - - uid: 1539 - components: - - pos: -37.5,39.5 - parent: 1 - type: Transform - - uid: 1540 - components: - - pos: -33.5,39.5 - parent: 1 - type: Transform - - uid: 1541 - components: - - pos: -36.5,39.5 - parent: 1 - type: Transform - - uid: 1544 - components: - - pos: -36.5,41.5 - parent: 1 - type: Transform - - uid: 1546 - components: - - pos: -25.5,39.5 - parent: 1 - type: Transform - - uid: 1550 - components: - - pos: -29.5,39.5 - parent: 1 - type: Transform - - uid: 1551 - components: - - pos: -38.5,50.5 - parent: 1 - type: Transform - - uid: 1552 - components: - - pos: -37.5,50.5 - parent: 1 - type: Transform - - uid: 1553 - components: - - pos: -36.5,50.5 - parent: 1 - type: Transform - - uid: 1554 - components: - - pos: -35.5,50.5 - parent: 1 - type: Transform - - uid: 1555 - components: - - pos: -34.5,50.5 - parent: 1 - type: Transform - - uid: 1556 - components: - - pos: -33.5,50.5 - parent: 1 - type: Transform - - uid: 1557 - components: - - pos: -32.5,50.5 - parent: 1 - type: Transform - - uid: 1558 - components: - - pos: -31.5,50.5 - parent: 1 - type: Transform - - uid: 1559 - components: - - pos: -30.5,50.5 - parent: 1 - type: Transform - - uid: 1560 - components: - - pos: -29.5,50.5 - parent: 1 - type: Transform - - uid: 1561 - components: - - pos: -28.5,50.5 - parent: 1 - type: Transform - - uid: 1562 - components: - - pos: -27.5,50.5 - parent: 1 - type: Transform - - uid: 1563 - components: - - pos: -40.5,50.5 - parent: 1 - type: Transform - - uid: 1565 - components: - - pos: -25.5,50.5 - parent: 1 - type: Transform - - uid: 1570 - components: - - pos: -15.5,-41.5 - parent: 1 - type: Transform - - uid: 1572 - components: - - pos: -16.5,-41.5 - parent: 1 - type: Transform - - uid: 1573 - components: - - pos: -15.5,-42.5 - parent: 1 - type: Transform - - uid: 1574 - components: - - pos: -29.5,49.5 - parent: 1 - type: Transform - - uid: 1591 - components: - - pos: -29.5,46.5 - parent: 1 - type: Transform - - uid: 1600 - components: - - pos: -26.5,59.5 - parent: 1 - type: Transform - - uid: 1601 - components: - - pos: -25.5,59.5 - parent: 1 - type: Transform - - uid: 1617 - components: - - pos: -36.5,56.5 - parent: 1 - type: Transform - - uid: 1619 - components: - - pos: -39.5,56.5 - parent: 1 - type: Transform - - uid: 1623 - components: - - pos: -41.5,53.5 - parent: 1 - type: Transform - - uid: 1641 - components: - - pos: -51.5,34.5 - parent: 1 - type: Transform - - uid: 1660 - components: - - pos: -40.5,53.5 - parent: 1 - type: Transform - - uid: 1666 - components: - - pos: -37.5,56.5 - parent: 1 - type: Transform - - uid: 1692 - components: - - pos: -11.5,70.5 - parent: 1 - type: Transform - - uid: 1695 - components: - - pos: -11.5,71.5 - parent: 1 - type: Transform - - uid: 1711 - components: - - pos: -36.5,54.5 - parent: 1 - type: Transform - - uid: 1734 - components: - - pos: -40.5,16.5 - parent: 1 - type: Transform - - uid: 1735 - components: - - pos: -40.5,20.5 - parent: 1 - type: Transform - - uid: 1736 - components: - - pos: -40.5,31.5 - parent: 1 - type: Transform - - uid: 1773 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,29.5 - parent: 1 - type: Transform - - uid: 1774 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,26.5 - parent: 1 - type: Transform - - uid: 1786 - components: - - pos: -4.5,52.5 - parent: 1 - type: Transform - - uid: 1788 - components: - - pos: -17.5,57.5 - parent: 1 - type: Transform - - uid: 1789 - components: - - pos: -12.5,58.5 - parent: 1 - type: Transform - - uid: 1790 - components: - - pos: -7.5,56.5 - parent: 1 - type: Transform - - uid: 1791 - components: - - pos: -11.5,63.5 - parent: 1 - type: Transform - - uid: 1792 - components: - - pos: -13.5,61.5 - parent: 1 - type: Transform - - uid: 1793 - components: - - pos: -12.5,61.5 - parent: 1 - type: Transform - - uid: 1794 - components: - - pos: -11.5,61.5 - parent: 1 - type: Transform - - uid: 1798 - components: - - pos: -11.5,64.5 - parent: 1 - type: Transform - - uid: 1799 - components: - - pos: -11.5,65.5 - parent: 1 - type: Transform - - uid: 1800 - components: - - pos: -11.5,66.5 - parent: 1 - type: Transform - - uid: 1802 - components: - - pos: -9.5,66.5 - parent: 1 - type: Transform - - uid: 1803 - components: - - pos: -8.5,66.5 - parent: 1 - type: Transform - - uid: 1804 - components: - - pos: -7.5,66.5 - parent: 1 - type: Transform - - uid: 1806 - components: - - pos: -4.5,65.5 - parent: 1 - type: Transform - - uid: 1807 - components: - - pos: -5.5,65.5 - parent: 1 - type: Transform - - uid: 1808 - components: - - pos: -6.5,66.5 - parent: 1 - type: Transform - - uid: 1809 - components: - - pos: -6.5,65.5 - parent: 1 - type: Transform - - uid: 1810 - components: - - pos: -5.5,66.5 - parent: 1 - type: Transform - - uid: 1811 - components: - - pos: -7.5,65.5 - parent: 1 - type: Transform - - uid: 1812 - components: - - pos: -4.5,66.5 - parent: 1 - type: Transform - - uid: 1813 - components: - - pos: -8.5,65.5 - parent: 1 - type: Transform - - uid: 1814 - components: - - pos: -3.5,66.5 - parent: 1 - type: Transform - - uid: 1815 - components: - - pos: -9.5,65.5 - parent: 1 - type: Transform - - uid: 1816 - components: - - pos: -2.5,66.5 - parent: 1 - type: Transform - - uid: 1817 - components: - - pos: -2.5,65.5 - parent: 1 - type: Transform - - uid: 1818 - components: - - pos: -2.5,64.5 - parent: 1 - type: Transform - - uid: 1819 - components: - - pos: -2.5,63.5 - parent: 1 - type: Transform - - uid: 1820 - components: - - pos: -2.5,62.5 - parent: 1 - type: Transform - - uid: 1821 - components: - - pos: -2.5,61.5 - parent: 1 - type: Transform - - uid: 1822 - components: - - pos: -2.5,60.5 - parent: 1 - type: Transform - - uid: 1823 - components: - - pos: -2.5,59.5 - parent: 1 - type: Transform - - uid: 1824 - components: - - pos: -3.5,65.5 - parent: 1 - type: Transform - - uid: 1825 - components: - - pos: -3.5,64.5 - parent: 1 - type: Transform - - uid: 1826 - components: - - pos: -3.5,63.5 - parent: 1 - type: Transform - - uid: 1827 - components: - - pos: -3.5,62.5 - parent: 1 - type: Transform - - uid: 1828 - components: - - pos: -3.5,61.5 - parent: 1 - type: Transform - - uid: 1829 - components: - - pos: -3.5,60.5 - parent: 1 - type: Transform - - uid: 1830 - components: - - pos: -3.5,59.5 - parent: 1 - type: Transform - - uid: 1832 - components: - - pos: -7.5,61.5 - parent: 1 - type: Transform - - uid: 1857 - components: - - pos: 1.5,58.5 - parent: 1 - type: Transform - - uid: 1858 - components: - - pos: 2.5,58.5 - parent: 1 - type: Transform - - uid: 1859 - components: - - pos: 3.5,58.5 - parent: 1 - type: Transform - - uid: 1860 - components: - - pos: 1.5,51.5 - parent: 1 - type: Transform - - uid: 1861 - components: - - pos: 2.5,51.5 - parent: 1 - type: Transform - - uid: 1862 - components: - - pos: 3.5,51.5 - parent: 1 - type: Transform - - uid: 1916 - components: - - rot: 3.141592653589793 rad - pos: 8.5,51.5 - parent: 1 - type: Transform - - uid: 1919 - components: - - rot: 3.141592653589793 rad - pos: 7.5,51.5 - parent: 1 - type: Transform - - uid: 1920 - components: - - rot: 3.141592653589793 rad - pos: 4.5,51.5 - parent: 1 - type: Transform - - uid: 1994 - components: - - pos: 50.5,-15.5 - parent: 1 - type: Transform - - uid: 2005 - components: - - pos: 44.5,-10.5 - parent: 1 - type: Transform - - uid: 2008 - components: - - pos: 52.5,-15.5 - parent: 1 - type: Transform - - uid: 2009 - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-5.5 - parent: 1 - type: Transform - - uid: 2011 - components: - - pos: 40.5,-10.5 - parent: 1 - type: Transform - - uid: 2028 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-5.5 - parent: 1 - type: Transform - - uid: 2041 - components: - - pos: 44.5,-15.5 - parent: 1 - type: Transform - - uid: 2042 - components: - - pos: 50.5,-8.5 - parent: 1 - type: Transform - - uid: 2045 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-6.5 - parent: 1 - type: Transform - - uid: 2050 - components: - - pos: -2.5,-48.5 - parent: 1 - type: Transform - - uid: 2051 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-5.5 - parent: 1 - type: Transform - - uid: 2055 - components: - - pos: 51.5,-6.5 - parent: 1 - type: Transform - - uid: 2063 - components: - - pos: -2.5,-47.5 - parent: 1 - type: Transform - - uid: 2064 - components: - - pos: 3.5,-42.5 - parent: 1 - type: Transform - - uid: 2065 - components: - - pos: 1.5,-48.5 - parent: 1 - type: Transform - - uid: 2066 - components: - - pos: 1.5,-47.5 - parent: 1 - type: Transform - - uid: 2067 - components: - - pos: -4.5,-42.5 - parent: 1 - type: Transform - - uid: 2069 - components: - - pos: -3.5,-46.5 - parent: 1 - type: Transform - - uid: 2072 - components: - - pos: 2.5,-46.5 - parent: 1 - type: Transform - - uid: 2078 - components: - - pos: -3.5,-42.5 - parent: 1 - type: Transform - - uid: 2079 - components: - - pos: -2.5,-42.5 - parent: 1 - type: Transform - - uid: 2080 - components: - - pos: -1.5,-42.5 - parent: 1 - type: Transform - - uid: 2081 - components: - - pos: 0.5,-42.5 - parent: 1 - type: Transform - - uid: 2082 - components: - - pos: 1.5,-42.5 - parent: 1 - type: Transform - - uid: 2083 - components: - - pos: 2.5,-42.5 - parent: 1 - type: Transform - - uid: 2084 - components: - - pos: -2.5,-38.5 - parent: 1 - type: Transform - - uid: 2085 - components: - - pos: 1.5,-38.5 - parent: 1 - type: Transform - - uid: 2086 - components: - - pos: -2.5,-46.5 - parent: 1 - type: Transform - - uid: 2087 - components: - - pos: 1.5,-46.5 - parent: 1 - type: Transform - - uid: 2095 - components: - - pos: -4.5,-37.5 - parent: 1 - type: Transform - - uid: 2096 - components: - - pos: -4.5,-31.5 - parent: 1 - type: Transform - - uid: 2097 - components: - - pos: 3.5,-31.5 - parent: 1 - type: Transform - - uid: 2104 - components: - - pos: 3.5,-35.5 - parent: 1 - type: Transform - - uid: 2108 - components: - - pos: 33.5,-6.5 - parent: 1 - type: Transform - - uid: 2109 - components: - - pos: 38.5,-6.5 - parent: 1 - type: Transform - - uid: 2118 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,0.5 - parent: 1 - type: Transform - - uid: 2119 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,7.5 - parent: 1 - type: Transform - - uid: 2123 - components: - - pos: -14.5,-42.5 - parent: 1 - type: Transform - - uid: 2124 - components: - - pos: -12.5,-42.5 - parent: 1 - type: Transform - - uid: 2125 - components: - - pos: -11.5,-41.5 - parent: 1 - type: Transform - - uid: 2126 - components: - - pos: -11.5,-42.5 - parent: 1 - type: Transform - - uid: 2127 - components: - - pos: -10.5,-42.5 - parent: 1 - type: Transform - - uid: 2128 - components: - - pos: -9.5,-42.5 - parent: 1 - type: Transform - - uid: 2131 - components: - - pos: -5.5,-42.5 - parent: 1 - type: Transform - - uid: 2132 - components: - - pos: -12.5,-38.5 - parent: 1 - type: Transform - - uid: 2133 - components: - - pos: -15.5,-38.5 - parent: 1 - type: Transform - - uid: 2134 - components: - - pos: -11.5,-38.5 - parent: 1 - type: Transform - - uid: 2135 - components: - - pos: -14.5,-38.5 - parent: 1 - type: Transform - - uid: 2136 - components: - - pos: -15.5,-40.5 - parent: 1 - type: Transform - - uid: 2137 - components: - - pos: -15.5,-39.5 - parent: 1 - type: Transform - - uid: 2138 - components: - - pos: -11.5,-40.5 - parent: 1 - type: Transform - - uid: 2139 - components: - - pos: -11.5,-39.5 - parent: 1 - type: Transform - - uid: 2169 - components: - - pos: 1.5,-32.5 - parent: 1 - type: Transform - - uid: 2170 - components: - - pos: -2.5,-32.5 - parent: 1 - type: Transform - - uid: 2171 - components: - - pos: 1.5,-36.5 - parent: 1 - type: Transform - - uid: 2172 - components: - - pos: -2.5,-36.5 - parent: 1 - type: Transform - - uid: 2173 - components: - - pos: -2.5,-30.5 - parent: 1 - type: Transform - - uid: 2174 - components: - - pos: -1.5,-30.5 - parent: 1 - type: Transform - - uid: 2175 - components: - - pos: -0.5,-30.5 - parent: 1 - type: Transform - - uid: 2176 - components: - - pos: 0.5,-30.5 - parent: 1 - type: Transform - - uid: 2177 - components: - - pos: 1.5,-30.5 - parent: 1 - type: Transform - - uid: 2178 - components: - - pos: 1.5,-29.5 - parent: 1 - type: Transform - - uid: 2179 - components: - - pos: 1.5,-28.5 - parent: 1 - type: Transform - - uid: 2180 - components: - - pos: 0.5,-28.5 - parent: 1 - type: Transform - - uid: 2181 - components: - - pos: -0.5,-28.5 - parent: 1 - type: Transform - - uid: 2182 - components: - - pos: -1.5,-28.5 - parent: 1 - type: Transform - - uid: 2183 - components: - - pos: -2.5,-28.5 - parent: 1 - type: Transform - - uid: 2184 - components: - - pos: 1.5,-27.5 - parent: 1 - type: Transform - - uid: 2185 - components: - - pos: 1.5,-26.5 - parent: 1 - type: Transform - - uid: 2186 - components: - - pos: 0.5,-26.5 - parent: 1 - type: Transform - - uid: 2187 - components: - - pos: -0.5,-26.5 - parent: 1 - type: Transform - - uid: 2188 - components: - - pos: -1.5,-26.5 - parent: 1 - type: Transform - - uid: 2189 - components: - - pos: -2.5,-26.5 - parent: 1 - type: Transform - - uid: 2190 - components: - - pos: 1.5,-25.5 - parent: 1 - type: Transform - - uid: 2191 - components: - - pos: 1.5,-24.5 - parent: 1 - type: Transform - - uid: 2192 - components: - - pos: 0.5,-24.5 - parent: 1 - type: Transform - - uid: 2193 - components: - - pos: -0.5,-24.5 - parent: 1 - type: Transform - - uid: 2194 - components: - - pos: -1.5,-24.5 - parent: 1 - type: Transform - - uid: 2195 - components: - - pos: -2.5,-24.5 - parent: 1 - type: Transform - - uid: 2196 - components: - - pos: 1.5,-23.5 - parent: 1 - type: Transform - - uid: 2197 - components: - - pos: 1.5,-22.5 - parent: 1 - type: Transform - - uid: 2198 - components: - - pos: 0.5,-22.5 - parent: 1 - type: Transform - - uid: 2199 - components: - - pos: -0.5,-22.5 - parent: 1 - type: Transform - - uid: 2200 - components: - - pos: -1.5,-22.5 - parent: 1 - type: Transform - - uid: 2201 - components: - - pos: -2.5,-22.5 - parent: 1 - type: Transform - - uid: 2202 - components: - - pos: 1.5,-21.5 - parent: 1 - type: Transform - - uid: 2203 - components: - - pos: 1.5,-20.5 - parent: 1 - type: Transform - - uid: 2204 - components: - - pos: 0.5,-20.5 - parent: 1 - type: Transform - - uid: 2205 - components: - - pos: -0.5,-20.5 - parent: 1 - type: Transform - - uid: 2206 - components: - - pos: -1.5,-20.5 - parent: 1 - type: Transform - - uid: 2207 - components: - - pos: -2.5,-20.5 - parent: 1 - type: Transform - - uid: 2208 - components: - - pos: 1.5,-19.5 - parent: 1 - type: Transform - - uid: 2209 - components: - - pos: 1.5,-18.5 - parent: 1 - type: Transform - - uid: 2210 - components: - - pos: 0.5,-18.5 - parent: 1 - type: Transform - - uid: 2211 - components: - - pos: -0.5,-18.5 - parent: 1 - type: Transform - - uid: 2212 - components: - - pos: -1.5,-18.5 - parent: 1 - type: Transform - - uid: 2213 - components: - - pos: -2.5,-18.5 - parent: 1 - type: Transform - - uid: 2215 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-35.5 - parent: 1 - type: Transform - - uid: 2216 - components: - - pos: -18.5,-41.5 - parent: 1 - type: Transform - - uid: 2217 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-21.5 - parent: 1 - type: Transform - - uid: 2218 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-22.5 - parent: 1 - type: Transform - - uid: 2219 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-33.5 - parent: 1 - type: Transform - - uid: 2220 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-34.5 - parent: 1 - type: Transform - - uid: 2221 - components: - - pos: -16.5,-28.5 - parent: 1 - type: Transform - - uid: 2222 - components: - - pos: -16.5,-29.5 - parent: 1 - type: Transform - - uid: 2223 - components: - - pos: -16.5,-30.5 - parent: 1 - type: Transform - - uid: 2224 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-23.5 - parent: 1 - type: Transform - - uid: 2225 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-24.5 - parent: 1 - type: Transform - - uid: 2226 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-25.5 - parent: 1 - type: Transform - - uid: 2227 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-30.5 - parent: 1 - type: Transform - - uid: 2228 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-31.5 - parent: 1 - type: Transform - - uid: 2229 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-32.5 - parent: 1 - type: Transform - - uid: 2230 - components: - - pos: -15.5,-30.5 - parent: 1 - type: Transform - - uid: 2231 - components: - - pos: -15.5,-20.5 - parent: 1 - type: Transform - - uid: 2232 - components: - - pos: -15.5,-19.5 - parent: 1 - type: Transform - - uid: 2233 - components: - - pos: -15.5,-18.5 - parent: 1 - type: Transform - - uid: 2234 - components: - - pos: -15.5,-17.5 - parent: 1 - type: Transform - - uid: 2235 - components: - - pos: -15.5,-16.5 - parent: 1 - type: Transform - - uid: 2236 - components: - - pos: -14.5,-16.5 - parent: 1 - type: Transform - - uid: 2237 - components: - - pos: -6.5,-16.5 - parent: 1 - type: Transform - - uid: 2240 - components: - - pos: -10.5,-16.5 - parent: 1 - type: Transform - - uid: 2242 - components: - - pos: -7.5,-16.5 - parent: 1 - type: Transform - - uid: 2243 - components: - - pos: -18.5,-38.5 - parent: 1 - type: Transform - - uid: 2244 - components: - - pos: -21.5,-38.5 - parent: 1 - type: Transform - - uid: 2245 - components: - - pos: -5.5,-16.5 - parent: 1 - type: Transform - - uid: 2246 - components: - - pos: -4.5,-16.5 - parent: 1 - type: Transform - - uid: 2247 - components: - - pos: -3.5,-16.5 - parent: 1 - type: Transform - - uid: 2248 - components: - - pos: -2.5,-16.5 - parent: 1 - type: Transform - - uid: 2249 - components: - - pos: -1.5,-16.5 - parent: 1 - type: Transform - - uid: 2251 - components: - - pos: 0.5,-16.5 - parent: 1 - type: Transform - - uid: 2252 - components: - - pos: 1.5,-16.5 - parent: 1 - type: Transform - - uid: 2253 - components: - - pos: 2.5,-16.5 - parent: 1 - type: Transform - - uid: 2254 - components: - - pos: 3.5,-16.5 - parent: 1 - type: Transform - - uid: 2281 - components: - - pos: -4.5,-17.5 - parent: 1 - type: Transform - - uid: 2292 - components: - - pos: 4.5,-42.5 - parent: 1 - type: Transform - - uid: 2296 - components: - - pos: 8.5,-42.5 - parent: 1 - type: Transform - - uid: 2297 - components: - - pos: 9.5,-42.5 - parent: 1 - type: Transform - - uid: 2298 - components: - - pos: 10.5,-42.5 - parent: 1 - type: Transform - - uid: 2299 - components: - - pos: 11.5,-42.5 - parent: 1 - type: Transform - - uid: 2301 - components: - - pos: 13.5,-42.5 - parent: 1 - type: Transform - - uid: 2302 - components: - - pos: 14.5,-42.5 - parent: 1 - type: Transform - - uid: 2303 - components: - - pos: 14.5,-41.5 - parent: 1 - type: Transform - - uid: 2304 - components: - - pos: 14.5,-40.5 - parent: 1 - type: Transform - - uid: 2305 - components: - - pos: 14.5,-39.5 - parent: 1 - type: Transform - - uid: 2306 - components: - - pos: 14.5,-38.5 - parent: 1 - type: Transform - - uid: 2307 - components: - - pos: 14.5,-37.5 - parent: 1 - type: Transform - - uid: 2308 - components: - - pos: 14.5,-36.5 - parent: 1 - type: Transform - - uid: 2309 - components: - - pos: 15.5,-41.5 - parent: 1 - type: Transform - - uid: 2310 - components: - - pos: 14.5,-34.5 - parent: 1 - type: Transform - - uid: 2311 - components: - - pos: 14.5,-33.5 - parent: 1 - type: Transform - - uid: 2312 - components: - - pos: 14.5,-32.5 - parent: 1 - type: Transform - - uid: 2313 - components: - - pos: 14.5,-31.5 - parent: 1 - type: Transform - - uid: 2314 - components: - - pos: 14.5,-30.5 - parent: 1 - type: Transform - - uid: 2315 - components: - - pos: 14.5,-29.5 - parent: 1 - type: Transform - - uid: 2316 - components: - - pos: 14.5,-28.5 - parent: 1 - type: Transform - - uid: 2317 - components: - - pos: 14.5,-27.5 - parent: 1 - type: Transform - - uid: 2318 - components: - - pos: 14.5,-26.5 - parent: 1 - type: Transform - - uid: 2319 - components: - - pos: 14.5,-25.5 - parent: 1 - type: Transform - - uid: 2321 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-24.5 - parent: 1 - type: Transform - - uid: 2322 - components: - - pos: 14.5,-22.5 - parent: 1 - type: Transform - - uid: 2323 - components: - - pos: 14.5,-21.5 - parent: 1 - type: Transform - - uid: 2324 - components: - - pos: 14.5,-20.5 - parent: 1 - type: Transform - - uid: 2325 - components: - - pos: 14.5,-19.5 - parent: 1 - type: Transform - - uid: 2326 - components: - - pos: 14.5,-18.5 - parent: 1 - type: Transform - - uid: 2327 - components: - - pos: 14.5,-17.5 - parent: 1 - type: Transform - - uid: 2328 - components: - - pos: 14.5,-16.5 - parent: 1 - type: Transform - - uid: 2329 - components: - - pos: 13.5,-16.5 - parent: 1 - type: Transform - - uid: 2330 - components: - - pos: 8.5,-16.5 - parent: 1 - type: Transform - - uid: 2331 - components: - - pos: 9.5,-16.5 - parent: 1 - type: Transform - - uid: 2332 - components: - - pos: 10.5,-16.5 - parent: 1 - type: Transform - - uid: 2333 - components: - - pos: 6.5,-16.5 - parent: 1 - type: Transform - - uid: 2336 - components: - - pos: 8.5,-21.5 - parent: 1 - type: Transform - - uid: 2337 - components: - - pos: 5.5,-16.5 - parent: 1 - type: Transform - - uid: 2338 - components: - - pos: 4.5,-16.5 - parent: 1 - type: Transform - - uid: 2339 - components: - - pos: 13.5,-38.5 - parent: 1 - type: Transform - - uid: 2340 - components: - - pos: 11.5,-38.5 - parent: 1 - type: Transform - - uid: 2341 - components: - - pos: 10.5,-38.5 - parent: 1 - type: Transform - - uid: 2342 - components: - - pos: 10.5,-39.5 - parent: 1 - type: Transform - - uid: 2343 - components: - - pos: 10.5,-40.5 - parent: 1 - type: Transform - - uid: 2344 - components: - - pos: 10.5,-41.5 - parent: 1 - type: Transform - - uid: 2359 - components: - - pos: -21.5,-32.5 - parent: 1 - type: Transform - - uid: 2360 - components: - - pos: -21.5,-31.5 - parent: 1 - type: Transform - - uid: 2361 - components: - - pos: -10.5,-20.5 - parent: 1 - type: Transform - - uid: 2362 - components: - - pos: -11.5,-20.5 - parent: 1 - type: Transform - - uid: 2363 - components: - - pos: -9.5,-17.5 - parent: 1 - type: Transform - - uid: 2364 - components: - - pos: -13.5,-20.5 - parent: 1 - type: Transform - - uid: 2365 - components: - - pos: -14.5,-20.5 - parent: 1 - type: Transform - - uid: 2367 - components: - - rot: 3.141592653589793 rad - pos: -44.5,-10.5 - parent: 1 - type: Transform - - uid: 2368 - components: - - pos: -21.5,-35.5 - parent: 1 - type: Transform - - uid: 2377 - components: - - pos: -8.5,-10.5 - parent: 1 - type: Transform - - uid: 2378 - components: - - pos: -2.5,-10.5 - parent: 1 - type: Transform - - uid: 2379 - components: - - pos: 6.5,-10.5 - parent: 1 - type: Transform - - uid: 2382 - components: - - pos: -7.5,-10.5 - parent: 1 - type: Transform - - uid: 2383 - components: - - pos: 1.5,-10.5 - parent: 1 - type: Transform - - uid: 2384 - components: - - pos: -6.5,-10.5 - parent: 1 - type: Transform - - uid: 2385 - components: - - pos: 5.5,-10.5 - parent: 1 - type: Transform - - uid: 2386 - components: - - pos: 7.5,-10.5 - parent: 1 - type: Transform - - uid: 2389 - components: - - pos: 1.5,-14.5 - parent: 1 - type: Transform - - uid: 2391 - components: - - pos: -2.5,-14.5 - parent: 1 - type: Transform - - uid: 2393 - components: - - pos: -1.5,-14.5 - parent: 1 - type: Transform - - uid: 2394 - components: - - pos: -0.5,-14.5 - parent: 1 - type: Transform - - uid: 2395 - components: - - pos: 0.5,-14.5 - parent: 1 - type: Transform - - uid: 2399 - components: - - pos: -6.5,-14.5 - parent: 1 - type: Transform - - uid: 2400 - components: - - pos: -5.5,-14.5 - parent: 1 - type: Transform - - uid: 2401 - components: - - pos: -4.5,-14.5 - parent: 1 - type: Transform - - uid: 2402 - components: - - pos: -3.5,-14.5 - parent: 1 - type: Transform - - uid: 2403 - components: - - pos: 2.5,-14.5 - parent: 1 - type: Transform - - uid: 2404 - components: - - pos: 3.5,-14.5 - parent: 1 - type: Transform - - uid: 2405 - components: - - pos: 4.5,-14.5 - parent: 1 - type: Transform - - uid: 2406 - components: - - pos: 5.5,-14.5 - parent: 1 - type: Transform - - uid: 2410 - components: - - pos: 3.5,-17.5 - parent: 1 - type: Transform - - uid: 2411 - components: - - pos: 3.5,-18.5 - parent: 1 - type: Transform - - uid: 2412 - components: - - pos: 3.5,-19.5 - parent: 1 - type: Transform - - uid: 2413 - components: - - pos: 3.5,-20.5 - parent: 1 - type: Transform - - uid: 2414 - components: - - pos: 3.5,-21.5 - parent: 1 - type: Transform - - uid: 2415 - components: - - pos: 3.5,-22.5 - parent: 1 - type: Transform - - uid: 2416 - components: - - pos: 3.5,-23.5 - parent: 1 - type: Transform - - uid: 2417 - components: - - pos: 3.5,-24.5 - parent: 1 - type: Transform - - uid: 2418 - components: - - pos: 3.5,-25.5 - parent: 1 - type: Transform - - uid: 2419 - components: - - pos: 3.5,-26.5 - parent: 1 - type: Transform - - uid: 2420 - components: - - pos: 3.5,-27.5 - parent: 1 - type: Transform - - uid: 2421 - components: - - pos: 3.5,-28.5 - parent: 1 - type: Transform - - uid: 2422 - components: - - pos: 3.5,-29.5 - parent: 1 - type: Transform - - uid: 2423 - components: - - pos: 3.5,-30.5 - parent: 1 - type: Transform - - uid: 2424 - components: - - pos: 10.5,-37.5 - parent: 1 - type: Transform - - uid: 2425 - components: - - pos: 10.5,-36.5 - parent: 1 - type: Transform - - uid: 2426 - components: - - pos: 10.5,-35.5 - parent: 1 - type: Transform - - uid: 2427 - components: - - pos: 9.5,-35.5 - parent: 1 - type: Transform - - uid: 2428 - components: - - pos: 8.5,-35.5 - parent: 1 - type: Transform - - uid: 2429 - components: - - pos: 4.5,-35.5 - parent: 1 - type: Transform - - uid: 2430 - components: - - pos: 5.5,-35.5 - parent: 1 - type: Transform - - uid: 2431 - components: - - pos: 4.5,-31.5 - parent: 1 - type: Transform - - uid: 2432 - components: - - pos: 5.5,-31.5 - parent: 1 - type: Transform - - uid: 2433 - components: - - pos: 8.5,-31.5 - parent: 1 - type: Transform - - uid: 2434 - components: - - pos: 9.5,-31.5 - parent: 1 - type: Transform - - uid: 2435 - components: - - pos: 10.5,-31.5 - parent: 1 - type: Transform - - uid: 2436 - components: - - pos: 10.5,-30.5 - parent: 1 - type: Transform - - uid: 2438 - components: - - pos: 10.5,-28.5 - parent: 1 - type: Transform - - uid: 2439 - components: - - pos: 10.5,-27.5 - parent: 1 - type: Transform - - uid: 2440 - components: - - pos: 9.5,-27.5 - parent: 1 - type: Transform - - uid: 2441 - components: - - pos: 8.5,-27.5 - parent: 1 - type: Transform - - uid: 2444 - components: - - pos: 5.5,-27.5 - parent: 1 - type: Transform - - uid: 2445 - components: - - pos: 4.5,-27.5 - parent: 1 - type: Transform - - uid: 2450 - components: - - pos: -14.5,-10.5 - parent: 1 - type: Transform - - uid: 2451 - components: - - pos: -15.5,-10.5 - parent: 1 - type: Transform - - uid: 2452 - components: - - pos: -15.5,-11.5 - parent: 1 - type: Transform - - uid: 2453 - components: - - pos: -15.5,-12.5 - parent: 1 - type: Transform - - uid: 2454 - components: - - pos: -15.5,-13.5 - parent: 1 - type: Transform - - uid: 2455 - components: - - pos: -15.5,-14.5 - parent: 1 - type: Transform - - uid: 2456 - components: - - pos: -15.5,-15.5 - parent: 1 - type: Transform - - uid: 2457 - components: - - pos: -9.5,-20.5 - parent: 1 - type: Transform - - uid: 2458 - components: - - pos: -9.5,-19.5 - parent: 1 - type: Transform - - uid: 2459 - components: - - pos: -9.5,-16.5 - parent: 1 - type: Transform - - uid: 2499 - components: - - pos: 22.5,1.5 - parent: 1 - type: Transform - - uid: 2501 - components: - - pos: 22.5,12.5 - parent: 1 - type: Transform - - uid: 2502 - components: - - pos: 22.5,11.5 - parent: 1 - type: Transform - - uid: 2503 - components: - - pos: 22.5,10.5 - parent: 1 - type: Transform - - uid: 2504 - components: - - pos: 22.5,9.5 - parent: 1 - type: Transform - - uid: 2505 - components: - - pos: 22.5,6.5 - parent: 1 - type: Transform - - uid: 2506 - components: - - pos: 22.5,5.5 - parent: 1 - type: Transform - - uid: 2507 - components: - - pos: 22.5,8.5 - parent: 1 - type: Transform - - uid: 2508 - components: - - pos: 22.5,7.5 - parent: 1 - type: Transform - - uid: 2509 - components: - - pos: 22.5,4.5 - parent: 1 - type: Transform - - uid: 2512 - components: - - pos: 22.5,3.5 - parent: 1 - type: Transform - - uid: 2522 - components: - - pos: 27.5,7.5 - parent: 1 - type: Transform - - uid: 2523 - components: - - pos: 26.5,7.5 - parent: 1 - type: Transform - - uid: 2527 - components: - - pos: 28.5,7.5 - parent: 1 - type: Transform - - uid: 2528 - components: - - pos: 28.5,8.5 - parent: 1 - type: Transform - - uid: 2529 - components: - - pos: 27.5,12.5 - parent: 1 - type: Transform - - uid: 2530 - components: - - pos: 23.5,1.5 - parent: 1 - type: Transform - - uid: 2531 - components: - - pos: 28.5,9.5 - parent: 1 - type: Transform - - uid: 2532 - components: - - pos: 25.5,12.5 - parent: 1 - type: Transform - - uid: 2533 - components: - - pos: 24.5,12.5 - parent: 1 - type: Transform - - uid: 2534 - components: - - pos: 23.5,12.5 - parent: 1 - type: Transform - - uid: 2535 - components: - - pos: 28.5,11.5 - parent: 1 - type: Transform - - uid: 2536 - components: - - pos: 26.5,12.5 - parent: 1 - type: Transform - - uid: 2537 - components: - - pos: 28.5,12.5 - parent: 1 - type: Transform - - uid: 2541 - components: - - pos: 33.5,-2.5 - parent: 1 - type: Transform - - uid: 2804 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-37.5 - parent: 1 - type: Transform - - uid: 2805 - components: - - pos: -11.5,-25.5 - parent: 1 - type: Transform - - uid: 2806 - components: - - pos: -11.5,-30.5 - parent: 1 - type: Transform - - uid: 2809 - components: - - pos: -16.5,-25.5 - parent: 1 - type: Transform - - uid: 2810 - components: - - pos: -15.5,-25.5 - parent: 1 - type: Transform - - uid: 2823 - components: - - pos: -16.5,-27.5 - parent: 1 - type: Transform - - uid: 2824 - components: - - pos: -16.5,-26.5 - parent: 1 - type: Transform - - uid: 2837 - components: - - pos: 10.5,-19.5 - parent: 1 - type: Transform - - uid: 2838 - components: - - pos: 13.5,-10.5 - parent: 1 - type: Transform - - uid: 2839 - components: - - pos: 14.5,-10.5 - parent: 1 - type: Transform - - uid: 2840 - components: - - pos: 14.5,-11.5 - parent: 1 - type: Transform - - uid: 2841 - components: - - pos: 14.5,-12.5 - parent: 1 - type: Transform - - uid: 2842 - components: - - pos: 14.5,-13.5 - parent: 1 - type: Transform - - uid: 2843 - components: - - pos: 14.5,-14.5 - parent: 1 - type: Transform - - uid: 2844 - components: - - pos: 14.5,-15.5 - parent: 1 - type: Transform - - uid: 2845 - components: - - pos: 8.5,-26.5 - parent: 1 - type: Transform - - uid: 2846 - components: - - pos: 8.5,-25.5 - parent: 1 - type: Transform - - uid: 2847 - components: - - pos: 8.5,-23.5 - parent: 1 - type: Transform - - uid: 2848 - components: - - pos: 8.5,-22.5 - parent: 1 - type: Transform - - uid: 2849 - components: - - pos: 7.5,-22.5 - parent: 1 - type: Transform - - uid: 2850 - components: - - pos: 6.5,-22.5 - parent: 1 - type: Transform - - uid: 2851 - components: - - pos: 5.5,-22.5 - parent: 1 - type: Transform - - uid: 2852 - components: - - pos: 4.5,-22.5 - parent: 1 - type: Transform - - uid: 2853 - components: - - pos: 8.5,-19.5 - parent: 1 - type: Transform - - uid: 2854 - components: - - pos: 13.5,-19.5 - parent: 1 - type: Transform - - uid: 2855 - components: - - pos: 9.5,-17.5 - parent: 1 - type: Transform - - uid: 2856 - components: - - pos: 9.5,-18.5 - parent: 1 - type: Transform - - uid: 2857 - components: - - pos: 9.5,-19.5 - parent: 1 - type: Transform - - uid: 2859 - components: - - pos: 17.5,-41.5 - parent: 1 - type: Transform - - uid: 2860 - components: - - pos: 17.5,-38.5 - parent: 1 - type: Transform - - uid: 2861 - components: - - pos: 20.5,-38.5 - parent: 1 - type: Transform - - uid: 2862 - components: - - pos: 20.5,-35.5 - parent: 1 - type: Transform - - uid: 2863 - components: - - pos: 20.5,-32.5 - parent: 1 - type: Transform - - uid: 2864 - components: - - pos: 20.5,-31.5 - parent: 1 - type: Transform - - uid: 2865 - components: - - pos: 22.5,-31.5 - parent: 1 - type: Transform - - uid: 2866 - components: - - pos: 22.5,-28.5 - parent: 1 - type: Transform - - uid: 2867 - components: - - pos: 23.5,-28.5 - parent: 1 - type: Transform - - uid: 2868 - components: - - pos: -23.5,-28.5 - parent: 1 - type: Transform - - uid: 2869 - components: - - pos: -24.5,-28.5 - parent: 1 - type: Transform - - uid: 2870 - components: - - pos: -23.5,-31.5 - parent: 1 - type: Transform - - uid: 2880 - components: - - pos: 26.5,2.5 - parent: 1 - type: Transform - - uid: 2881 - components: - - pos: 26.5,1.5 - parent: 1 - type: Transform - - uid: 2882 - components: - - pos: 25.5,1.5 - parent: 1 - type: Transform - - uid: 2896 - components: - - pos: 24.5,1.5 - parent: 1 - type: Transform - - uid: 2916 - components: - - pos: -24.5,-27.5 - parent: 1 - type: Transform - - uid: 2918 - components: - - pos: 39.5,-14.5 - parent: 1 - type: Transform - - uid: 2928 - components: - - pos: 37.5,-18.5 - parent: 1 - type: Transform - - uid: 2933 - components: - - pos: -24.5,-14.5 - parent: 1 - type: Transform - - uid: 2934 - components: - - pos: -24.5,-18.5 - parent: 1 - type: Transform - - uid: 2936 - components: - - pos: 33.5,-22.5 - parent: 1 - type: Transform - - uid: 2937 - components: - - pos: 29.5,-27.5 - parent: 1 - type: Transform - - uid: 2938 - components: - - pos: -34.5,-25.5 - parent: 1 - type: Transform - - uid: 2939 - components: - - pos: -30.5,-25.5 - parent: 1 - type: Transform - - uid: 2940 - components: - - pos: -37.5,-22.5 - parent: 1 - type: Transform - - uid: 2941 - components: - - pos: 36.5,-18.5 - parent: 1 - type: Transform - - uid: 2942 - components: - - pos: 36.5,-22.5 - parent: 1 - type: Transform - - uid: 2944 - components: - - pos: -19.5,-19.5 - parent: 1 - type: Transform - - uid: 2945 - components: - - pos: -19.5,-16.5 - parent: 1 - type: Transform - - uid: 2946 - components: - - pos: -19.5,-17.5 - parent: 1 - type: Transform - - uid: 2948 - components: - - pos: -41.5,-12.5 - parent: 1 - type: Transform - - uid: 2949 - components: - - pos: -41.5,-10.5 - parent: 1 - type: Transform - - uid: 2950 - components: - - pos: 40.5,-12.5 - parent: 1 - type: Transform - - uid: 3078 - components: - - pos: 39.5,-12.5 - parent: 1 - type: Transform - - uid: 3083 - components: - - pos: 23.5,-27.5 - parent: 1 - type: Transform - - uid: 3084 - components: - - pos: 29.5,-26.5 - parent: 1 - type: Transform - - uid: 3085 - components: - - pos: 29.5,-25.5 - parent: 1 - type: Transform - - uid: 3086 - components: - - pos: -30.5,-27.5 - parent: 1 - type: Transform - - uid: 3087 - components: - - pos: -34.5,-22.5 - parent: 1 - type: Transform - - uid: 3088 - components: - - pos: 38.5,-14.5 - parent: 1 - type: Transform - - uid: 3092 - components: - - pos: -30.5,-26.5 - parent: 1 - type: Transform - - uid: 3094 - components: - - pos: 33.5,-25.5 - parent: 1 - type: Transform - - uid: 3144 - components: - - pos: -24.5,-17.5 - parent: 1 - type: Transform - - uid: 3145 - components: - - pos: -24.5,-15.5 - parent: 1 - type: Transform - - uid: 3146 - components: - - pos: -20.5,-19.5 - parent: 1 - type: Transform - - uid: 3147 - components: - - pos: 38.5,-18.5 - parent: 1 - type: Transform - - uid: 3148 - components: - - pos: -40.5,-12.5 - parent: 1 - type: Transform - - uid: 3149 - components: - - pos: -40.5,-14.5 - parent: 1 - type: Transform - - uid: 3150 - components: - - pos: 38.5,-15.5 - parent: 1 - type: Transform - - uid: 3151 - components: - - pos: -21.5,-19.5 - parent: 1 - type: Transform - - uid: 3152 - components: - - pos: -22.5,-19.5 - parent: 1 - type: Transform - - uid: 3153 - components: - - pos: -24.5,-16.5 - parent: 1 - type: Transform - - uid: 3155 - components: - - pos: -20.5,-11.5 - parent: 1 - type: Transform - - uid: 3161 - components: - - pos: -51.5,-12.5 - parent: 1 - type: Transform - - uid: 3162 - components: - - pos: -45.5,-12.5 - parent: 1 - type: Transform - - uid: 3163 - components: - - pos: -45.5,-10.5 - parent: 1 - type: Transform - - uid: 3182 - components: - - pos: 40.5,45.5 - parent: 1 - type: Transform - - uid: 3255 - components: - - rot: 3.141592653589793 rad - pos: 35.5,54.5 - parent: 1 - type: Transform - - uid: 3319 - components: - - rot: 3.141592653589793 rad - pos: 8.5,50.5 - parent: 1 - type: Transform - - uid: 3320 - components: - - rot: 3.141592653589793 rad - pos: 8.5,49.5 - parent: 1 - type: Transform - - uid: 3321 - components: - - rot: 3.141592653589793 rad - pos: 3.5,49.5 - parent: 1 - type: Transform - - uid: 3322 - components: - - rot: 3.141592653589793 rad - pos: 3.5,48.5 - parent: 1 - type: Transform - - uid: 3323 - components: - - rot: 3.141592653589793 rad - pos: 2.5,48.5 - parent: 1 - type: Transform - - uid: 3324 - components: - - rot: 3.141592653589793 rad - pos: 4.5,49.5 - parent: 1 - type: Transform - - uid: 3326 - components: - - rot: 3.141592653589793 rad - pos: 6.5,49.5 - parent: 1 - type: Transform - - uid: 3327 - components: - - rot: 3.141592653589793 rad - pos: 6.5,49.5 - parent: 1 - type: Transform - - uid: 3328 - components: - - rot: 3.141592653589793 rad - pos: 6.5,48.5 - parent: 1 - type: Transform - - uid: 3329 - components: - - rot: 3.141592653589793 rad - pos: 6.5,47.5 - parent: 1 - type: Transform - - uid: 3330 - components: - - rot: 3.141592653589793 rad - pos: 6.5,46.5 - parent: 1 - type: Transform - - uid: 3331 - components: - - rot: 3.141592653589793 rad - pos: 6.5,45.5 - parent: 1 - type: Transform - - uid: 3332 - components: - - rot: 3.141592653589793 rad - pos: 6.5,44.5 - parent: 1 - type: Transform - - uid: 3333 - components: - - rot: 3.141592653589793 rad - pos: 5.5,44.5 - parent: 1 - type: Transform - - uid: 3334 - components: - - rot: 3.141592653589793 rad - pos: 4.5,44.5 - parent: 1 - type: Transform - - uid: 3335 - components: - - rot: 3.141592653589793 rad - pos: 3.5,44.5 - parent: 1 - type: Transform - - uid: 3336 - components: - - rot: 3.141592653589793 rad - pos: 3.5,45.5 - parent: 1 - type: Transform - - uid: 3337 - components: - - rot: 3.141592653589793 rad - pos: 2.5,45.5 - parent: 1 - type: Transform - - uid: 3341 - components: - - rot: 3.141592653589793 rad - pos: 1.5,48.5 - parent: 1 - type: Transform - - uid: 3342 - components: - - rot: 3.141592653589793 rad - pos: 1.5,45.5 - parent: 1 - type: Transform - - uid: 3344 - components: - - rot: 3.141592653589793 rad - pos: 1.5,50.5 - parent: 1 - type: Transform - - uid: 3345 - components: - - rot: 3.141592653589793 rad - pos: 1.5,43.5 - parent: 1 - type: Transform - - uid: 3348 - components: - - rot: 3.141592653589793 rad - pos: 1.5,42.5 - parent: 1 - type: Transform - - uid: 3349 - components: - - rot: 3.141592653589793 rad - pos: 2.5,42.5 - parent: 1 - type: Transform - - uid: 3350 - components: - - rot: 3.141592653589793 rad - pos: 3.5,42.5 - parent: 1 - type: Transform - - uid: 3351 - components: - - rot: 3.141592653589793 rad - pos: 4.5,42.5 - parent: 1 - type: Transform - - uid: 3352 - components: - - rot: 3.141592653589793 rad - pos: 5.5,42.5 - parent: 1 - type: Transform - - uid: 3353 - components: - - rot: 3.141592653589793 rad - pos: 6.5,42.5 - parent: 1 - type: Transform - - uid: 3354 - components: - - rot: 3.141592653589793 rad - pos: 7.5,42.5 - parent: 1 - type: Transform - - uid: 3355 - components: - - rot: 3.141592653589793 rad - pos: 8.5,42.5 - parent: 1 - type: Transform - - uid: 3356 - components: - - rot: 3.141592653589793 rad - pos: 8.5,43.5 - parent: 1 - type: Transform - - uid: 3357 - components: - - rot: 3.141592653589793 rad - pos: 8.5,44.5 - parent: 1 - type: Transform - - uid: 3358 - components: - - rot: 3.141592653589793 rad - pos: 8.5,45.5 - parent: 1 - type: Transform - - uid: 3359 - components: - - rot: 3.141592653589793 rad - pos: 8.5,46.5 - parent: 1 - type: Transform - - uid: 3360 - components: - - rot: 3.141592653589793 rad - pos: 8.5,47.5 - parent: 1 - type: Transform - - uid: 3361 - components: - - rot: 3.141592653589793 rad - pos: 8.5,48.5 - parent: 1 - type: Transform - - uid: 3424 - components: - - rot: 3.141592653589793 rad - pos: -43.5,-10.5 - parent: 1 - type: Transform - - uid: 3425 - components: - - rot: 3.141592653589793 rad - pos: -42.5,-10.5 - parent: 1 - type: Transform - - uid: 3517 - components: - - pos: -51.5,17.5 - parent: 1 - type: Transform - - uid: 3531 - components: - - pos: 41.5,41.5 - parent: 1 - type: Transform - - uid: 3533 - components: - - pos: 45.5,41.5 - parent: 1 - type: Transform - - uid: 3534 - components: - - pos: 45.5,42.5 - parent: 1 - type: Transform - - uid: 3535 - components: - - pos: 45.5,44.5 - parent: 1 - type: Transform - - uid: 3561 - components: - - pos: -25.5,21.5 - parent: 1 - type: Transform - - uid: 3569 - components: - - pos: 31.5,-10.5 - parent: 1 - type: Transform - - uid: 3571 - components: - - pos: 31.5,-14.5 - parent: 1 - type: Transform - - uid: 3572 - components: - - pos: 31.5,-13.5 - parent: 1 - type: Transform - - uid: 3573 - components: - - pos: 31.5,-12.5 - parent: 1 - type: Transform - - uid: 3576 - components: - - pos: 31.5,-11.5 - parent: 1 - type: Transform - - uid: 3577 - components: - - pos: 29.5,-14.5 - parent: 1 - type: Transform - - uid: 3579 - components: - - pos: 27.5,-14.5 - parent: 1 - type: Transform - - uid: 3580 - components: - - pos: 26.5,-14.5 - parent: 1 - type: Transform - - uid: 3581 - components: - - pos: 25.5,-14.5 - parent: 1 - type: Transform - - uid: 3585 - components: - - pos: 23.5,-13.5 - parent: 1 - type: Transform - - uid: 3588 - components: - - pos: 23.5,-10.5 - parent: 1 - type: Transform - - uid: 3591 - components: - - pos: 26.5,-10.5 - parent: 1 - type: Transform - - uid: 3592 - components: - - pos: 25.5,-10.5 - parent: 1 - type: Transform - - uid: 3593 - components: - - pos: 25.5,-12.5 - parent: 1 - type: Transform - - uid: 3597 - components: - - pos: 30.5,-14.5 - parent: 1 - type: Transform - - uid: 3604 - components: - - pos: 5.5,21.5 - parent: 1 - type: Transform - - uid: 3605 - components: - - pos: 6.5,21.5 - parent: 1 - type: Transform - - uid: 3606 - components: - - pos: 7.5,21.5 - parent: 1 - type: Transform - - uid: 3607 - components: - - pos: 8.5,21.5 - parent: 1 - type: Transform - - uid: 3608 - components: - - pos: 9.5,21.5 - parent: 1 - type: Transform - - uid: 3611 - components: - - pos: 9.5,25.5 - parent: 1 - type: Transform - - uid: 3612 - components: - - pos: 8.5,25.5 - parent: 1 - type: Transform - - uid: 3613 - components: - - pos: 7.5,25.5 - parent: 1 - type: Transform - - uid: 3615 - components: - - pos: 2.5,26.5 - parent: 1 - type: Transform - - uid: 3616 - components: - - pos: 3.5,26.5 - parent: 1 - type: Transform - - uid: 3617 - components: - - pos: 5.5,26.5 - parent: 1 - type: Transform - - uid: 3618 - components: - - pos: 5.5,27.5 - parent: 1 - type: Transform - - uid: 3623 - components: - - pos: 13.5,21.5 - parent: 1 - type: Transform - - uid: 3624 - components: - - pos: 13.5,22.5 - parent: 1 - type: Transform - - uid: 3625 - components: - - pos: 13.5,23.5 - parent: 1 - type: Transform - - uid: 3626 - components: - - pos: 13.5,24.5 - parent: 1 - type: Transform - - uid: 3627 - components: - - pos: 13.5,25.5 - parent: 1 - type: Transform - - uid: 3628 - components: - - pos: 13.5,26.5 - parent: 1 - type: Transform - - uid: 3656 - components: - - pos: 14.5,26.5 - parent: 1 - type: Transform - - uid: 3657 - components: - - pos: 15.5,26.5 - parent: 1 - type: Transform - - uid: 3658 - components: - - pos: 16.5,26.5 - parent: 1 - type: Transform - - uid: 3659 - components: - - pos: 17.5,26.5 - parent: 1 - type: Transform - - uid: 3660 - components: - - pos: 17.5,27.5 - parent: 1 - type: Transform - - uid: 3662 - components: - - pos: 17.5,29.5 - parent: 1 - type: Transform - - uid: 3663 - components: - - pos: 17.5,30.5 - parent: 1 - type: Transform - - uid: 3664 - components: - - pos: 17.5,31.5 - parent: 1 - type: Transform - - uid: 3665 - components: - - pos: 17.5,32.5 - parent: 1 - type: Transform - - uid: 3666 - components: - - pos: 13.5,29.5 - parent: 1 - type: Transform - - uid: 3667 - components: - - pos: 13.5,30.5 - parent: 1 - type: Transform - - uid: 3668 - components: - - pos: 14.5,30.5 - parent: 1 - type: Transform - - uid: 3669 - components: - - pos: 16.5,30.5 - parent: 1 - type: Transform - - uid: 3670 - components: - - pos: 17.5,33.5 - parent: 1 - type: Transform - - uid: 3671 - components: - - pos: 17.5,34.5 - parent: 1 - type: Transform - - uid: 3672 - components: - - pos: 17.5,35.5 - parent: 1 - type: Transform - - uid: 3673 - components: - - pos: 13.5,35.5 - parent: 1 - type: Transform - - uid: 3674 - components: - - pos: 9.5,35.5 - parent: 1 - type: Transform - - uid: 3675 - components: - - pos: 8.5,35.5 - parent: 1 - type: Transform - - uid: 3676 - components: - - pos: 7.5,35.5 - parent: 1 - type: Transform - - uid: 3677 - components: - - pos: 8.5,34.5 - parent: 1 - type: Transform - - uid: 3678 - components: - - pos: 8.5,33.5 - parent: 1 - type: Transform - - uid: 3679 - components: - - pos: 8.5,32.5 - parent: 1 - type: Transform - - uid: 3680 - components: - - pos: 8.5,31.5 - parent: 1 - type: Transform - - uid: 3682 - components: - - pos: 13.5,34.5 - parent: 1 - type: Transform - - uid: 3683 - components: - - pos: 13.5,33.5 - parent: 1 - type: Transform - - uid: 3698 - components: - - pos: 8.5,29.5 - parent: 1 - type: Transform - - uid: 3700 - components: - - pos: 5.5,28.5 - parent: 1 - type: Transform - - uid: 3703 - components: - - pos: 12.5,29.5 - parent: 1 - type: Transform - - uid: 3704 - components: - - pos: 18.5,30.5 - parent: 1 - type: Transform - - uid: 3706 - components: - - pos: 20.5,30.5 - parent: 1 - type: Transform - - uid: 3707 - components: - - pos: 21.5,30.5 - parent: 1 - type: Transform - - uid: 3708 - components: - - pos: 22.5,30.5 - parent: 1 - type: Transform - - uid: 3709 - components: - - pos: 17.5,25.5 - parent: 1 - type: Transform - - uid: 3710 - components: - - pos: 18.5,25.5 - parent: 1 - type: Transform - - uid: 3711 - components: - - pos: 19.5,25.5 - parent: 1 - type: Transform - - uid: 3712 - components: - - pos: 20.5,25.5 - parent: 1 - type: Transform - - uid: 3713 - components: - - pos: 21.5,25.5 - parent: 1 - type: Transform - - uid: 3714 - components: - - pos: 22.5,25.5 - parent: 1 - type: Transform - - uid: 3715 - components: - - pos: 23.5,25.5 - parent: 1 - type: Transform - - uid: 3716 - components: - - pos: 23.5,26.5 - parent: 1 - type: Transform - - uid: 3718 - components: - - pos: 23.5,28.5 - parent: 1 - type: Transform - - uid: 3719 - components: - - pos: 23.5,29.5 - parent: 1 - type: Transform - - uid: 3720 - components: - - pos: 23.5,30.5 - parent: 1 - type: Transform - - uid: 3725 - components: - - pos: -43.5,0.5 - parent: 1 - type: Transform - - uid: 3737 - components: - - pos: 21.5,-26.5 - parent: 1 - type: Transform - - uid: 3738 - components: - - pos: 20.5,-26.5 - parent: 1 - type: Transform - - uid: 3739 - components: - - pos: 19.5,-28.5 - parent: 1 - type: Transform - - uid: 3743 - components: - - pos: 16.5,-25.5 - parent: 1 - type: Transform - - uid: 3744 - components: - - pos: 16.5,-28.5 - parent: 1 - type: Transform - - uid: 3745 - components: - - pos: 15.5,-28.5 - parent: 1 - type: Transform - - uid: 3746 - components: - - pos: 19.5,-20.5 - parent: 1 - type: Transform - - uid: 3748 - components: - - pos: 16.5,-26.5 - parent: 1 - type: Transform - - uid: 3749 - components: - - pos: 15.5,-25.5 - parent: 1 - type: Transform - - uid: 3750 - components: - - pos: 19.5,-26.5 - parent: 1 - type: Transform - - uid: 3752 - components: - - pos: 21.5,-21.5 - parent: 1 - type: Transform - - uid: 3754 - components: - - pos: 16.5,-20.5 - parent: 1 - type: Transform - - uid: 3755 - components: - - pos: 16.5,-21.5 - parent: 1 - type: Transform - - uid: 3760 - components: - - pos: 21.5,-25.5 - parent: 1 - type: Transform - - uid: 3762 - components: - - pos: 15.5,-21.5 - parent: 1 - type: Transform - - uid: 3768 - components: - - pos: 21.5,-20.5 - parent: 1 - type: Transform - - uid: 3769 - components: - - pos: 19.5,-21.5 - parent: 1 - type: Transform - - uid: 3770 - components: - - pos: 19.5,-25.5 - parent: 1 - type: Transform - - uid: 3771 - components: - - pos: 15.5,-22.5 - parent: 1 - type: Transform - - uid: 3772 - components: - - pos: 15.5,-24.5 - parent: 1 - type: Transform - - uid: 3773 - components: - - pos: 16.5,-10.5 - parent: 1 - type: Transform - - uid: 3781 - components: - - pos: 21.5,-10.5 - parent: 1 - type: Transform - - uid: 3783 - components: - - pos: 20.5,-10.5 - parent: 1 - type: Transform - - uid: 3797 - components: - - pos: 17.5,-10.5 - parent: 1 - type: Transform - - uid: 3799 - components: - - pos: 16.5,-18.5 - parent: 1 - type: Transform - - uid: 3800 - components: - - pos: 17.5,-18.5 - parent: 1 - type: Transform - - uid: 3801 - components: - - pos: 21.5,-18.5 - parent: 1 - type: Transform - - uid: 3802 - components: - - pos: 20.5,-18.5 - parent: 1 - type: Transform - - uid: 3806 - components: - - pos: 23.5,-18.5 - parent: 1 - type: Transform - - uid: 3808 - components: - - pos: 23.5,-17.5 - parent: 1 - type: Transform - - uid: 3815 - components: - - pos: 22.5,-20.5 - parent: 1 - type: Transform - - uid: 3816 - components: - - pos: 23.5,-20.5 - parent: 1 - type: Transform - - uid: 3817 - components: - - pos: 23.5,-19.5 - parent: 1 - type: Transform - - uid: 3934 - components: - - pos: -26.5,-14.5 - parent: 1 - type: Transform - - uid: 3935 - components: - - pos: -26.5,-13.5 - parent: 1 - type: Transform - - uid: 3936 - components: - - pos: -26.5,-12.5 - parent: 1 - type: Transform - - uid: 3937 - components: - - pos: -26.5,-11.5 - parent: 1 - type: Transform - - uid: 3938 - components: - - pos: -26.5,-10.5 - parent: 1 - type: Transform - - uid: 3959 - components: - - pos: -24.5,-19.5 - parent: 1 - type: Transform - - uid: 3968 - components: - - pos: -25.5,-10.5 - parent: 1 - type: Transform - - uid: 3969 - components: - - pos: -24.5,-10.5 - parent: 1 - type: Transform - - uid: 3970 - components: - - pos: -22.5,-10.5 - parent: 1 - type: Transform - - uid: 3971 - components: - - pos: -21.5,-10.5 - parent: 1 - type: Transform - - uid: 3972 - components: - - pos: -20.5,-10.5 - parent: 1 - type: Transform - - uid: 3973 - components: - - pos: -20.5,-13.5 - parent: 1 - type: Transform - - uid: 3974 - components: - - pos: -19.5,-13.5 - parent: 1 - type: Transform - - uid: 3975 - components: - - pos: -19.5,-11.5 - parent: 1 - type: Transform - - uid: 3976 - components: - - pos: -20.5,-14.5 - parent: 1 - type: Transform - - uid: 3977 - components: - - pos: -21.5,-14.5 - parent: 1 - type: Transform - - uid: 3978 - components: - - pos: -22.5,-14.5 - parent: 1 - type: Transform - - uid: 3979 - components: - - pos: -23.5,-14.5 - parent: 1 - type: Transform - - uid: 3980 - components: - - pos: -25.5,-14.5 - parent: 1 - type: Transform - - uid: 3986 - components: - - pos: -23.5,-10.5 - parent: 1 - type: Transform - - uid: 3987 - components: - - pos: -19.5,-14.5 - parent: 1 - type: Transform - - uid: 3988 - components: - - pos: -19.5,-10.5 - parent: 1 - type: Transform - - uid: 4055 - components: - - pos: 7.5,26.5 - parent: 1 - type: Transform - - uid: 4056 - components: - - pos: 1.5,32.5 - parent: 1 - type: Transform - - uid: 4058 - components: - - pos: 1.5,28.5 - parent: 1 - type: Transform - - uid: 4086 - components: - - pos: 5.5,29.5 - parent: 1 - type: Transform - - uid: 4116 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,30.5 - parent: 1 - type: Transform - - uid: 4131 - components: - - pos: -43.5,23.5 - parent: 1 - type: Transform - - uid: 4151 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-0.5 - parent: 1 - type: Transform - - uid: 4201 - components: - - pos: 12.5,-10.5 - parent: 1 - type: Transform - - uid: 4202 - components: - - pos: -13.5,-10.5 - parent: 1 - type: Transform - - uid: 4342 - components: - - pos: -15.5,29.5 - parent: 1 - type: Transform - - uid: 4350 - components: - - pos: 23.5,-12.5 - parent: 1 - type: Transform - - uid: 4407 - components: - - pos: -23.5,-19.5 - parent: 1 - type: Transform - - uid: 4459 - components: - - pos: -36.5,53.5 - parent: 1 - type: Transform - - uid: 4472 - components: - - pos: -39.5,-14.5 - parent: 1 - type: Transform - - uid: 5530 - components: - - pos: -19.5,29.5 - parent: 1 - type: Transform - - uid: 5695 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,35.5 - parent: 1 - type: Transform - - uid: 5718 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,12.5 - parent: 1 - type: Transform - - uid: 5803 - components: - - pos: 25.5,-11.5 - parent: 1 - type: Transform - - uid: 5956 - components: - - pos: -18.5,29.5 - parent: 1 - type: Transform - - uid: 6094 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,35.5 - parent: 1 - type: Transform - - uid: 6095 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,30.5 - parent: 1 - type: Transform - - uid: 6098 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,30.5 - parent: 1 - type: Transform - - uid: 6099 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,30.5 - parent: 1 - type: Transform - - uid: 6101 - components: - - pos: 19.5,35.5 - parent: 1 - type: Transform - - uid: 6106 - components: - - pos: 21.5,35.5 - parent: 1 - type: Transform - - uid: 6107 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,35.5 - parent: 1 - type: Transform - - uid: 6108 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,30.5 - parent: 1 - type: Transform - - uid: 6343 - components: - - pos: -40.5,56.5 - parent: 1 - type: Transform - - uid: 6350 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,68.5 - parent: 1 - type: Transform - - uid: 6351 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,68.5 - parent: 1 - type: Transform - - uid: 6352 - components: - - rot: 3.141592653589793 rad - pos: -9.5,70.5 - parent: 1 - type: Transform - - uid: 6353 - components: - - rot: 3.141592653589793 rad - pos: -8.5,68.5 - parent: 1 - type: Transform - - uid: 6354 - components: - - rot: 3.141592653589793 rad - pos: -7.5,68.5 - parent: 1 - type: Transform - - uid: 6356 - components: - - rot: 3.141592653589793 rad - pos: -6.5,68.5 - parent: 1 - type: Transform - - uid: 6357 - components: - - rot: 3.141592653589793 rad - pos: -6.5,69.5 - parent: 1 - type: Transform - - uid: 6358 - components: - - rot: 3.141592653589793 rad - pos: -9.5,68.5 - parent: 1 - type: Transform - - uid: 6378 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,30.5 - parent: 1 - type: Transform - - uid: 6496 - components: - - pos: 50.5,-13.5 - parent: 1 - type: Transform - - uid: 6509 - components: - - pos: 50.5,-6.5 - parent: 1 - type: Transform - - uid: 6512 - components: - - pos: 52.5,-8.5 - parent: 1 - type: Transform - - uid: 6513 - components: - - pos: 52.5,-13.5 - parent: 1 - type: Transform - - uid: 6528 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,4.5 - parent: 1 - type: Transform - - uid: 6549 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,4.5 - parent: 1 - type: Transform - - uid: 6555 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-2.5 - parent: 1 - type: Transform - - uid: 6557 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,2.5 - parent: 1 - type: Transform - - uid: 6558 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,2.5 - parent: 1 - type: Transform - - uid: 6690 - components: - - pos: -42.5,0.5 - parent: 1 - type: Transform - - uid: 6780 - components: - - pos: 20.5,-28.5 - parent: 1 - type: Transform - - uid: 6781 - components: - - pos: 20.5,-27.5 - parent: 1 - type: Transform - - uid: 6790 - components: - - pos: -11.5,69.5 - parent: 1 - type: Transform - - uid: 6858 - components: - - pos: 27.5,-27.5 - parent: 1 - type: Transform - - uid: 6859 - components: - - pos: -28.5,-29.5 - parent: 1 - type: Transform - - uid: 6903 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,31.5 - parent: 1 - type: Transform - - uid: 6904 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,34.5 - parent: 1 - type: Transform - - uid: 6905 - components: - - pos: 22.5,33.5 - parent: 1 - type: Transform - - uid: 6907 - components: - - pos: 22.5,32.5 - parent: 1 - type: Transform - - uid: 7264 - components: - - pos: 18.5,35.5 - parent: 1 - type: Transform - - uid: 7266 - components: - - pos: 20.5,35.5 - parent: 1 - type: Transform - - uid: 7290 - components: - - pos: -26.5,-27.5 - parent: 1 - type: Transform - - uid: 7319 - components: - - pos: 25.5,-13.5 - parent: 1 - type: Transform - - uid: 7424 - components: - - pos: 25.5,-29.5 - parent: 1 - type: Transform - - uid: 7630 - components: - - pos: 27.5,-29.5 - parent: 1 - type: Transform - - uid: 7663 - components: - - pos: -26.5,-29.5 - parent: 1 - type: Transform - - uid: 7664 - components: - - pos: -28.5,-27.5 - parent: 1 - type: Transform - - uid: 7674 - components: - - pos: 25.5,-27.5 - parent: 1 - type: Transform - - uid: 7817 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,29.5 - parent: 1 - type: Transform - - uid: 7919 - components: - - rot: -1.5707963267948966 rad - pos: -43.5,26.5 - parent: 1 - type: Transform - - uid: 7920 - components: - - rot: -1.5707963267948966 rad - pos: -43.5,29.5 - parent: 1 - type: Transform - - uid: 7921 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,20.5 - parent: 1 - type: Transform - - uid: 18083 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-18.5 - parent: 1 - type: Transform - - uid: 18439 - components: - - pos: 15.5,-18.5 - parent: 1 - type: Transform - - uid: 18471 - components: - - pos: 23.5,-11.5 - parent: 1 - type: Transform -- proto: WallShuttle - entities: - - uid: 8765 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-5.5 - parent: 8756 - type: Transform - - uid: 8766 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-5.5 - parent: 8756 - type: Transform - - uid: 8767 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-6.5 - parent: 8756 - type: Transform - - uid: 8768 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-6.5 - parent: 8756 - type: Transform - - uid: 8771 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,2.5 - parent: 8756 - type: Transform - - uid: 8772 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,1.5 - parent: 8756 - type: Transform - - uid: 8773 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,1.5 - parent: 8756 - type: Transform - - uid: 8774 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-2.5 - parent: 8756 - type: Transform - - uid: 8779 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-5.5 - parent: 8756 - type: Transform - - uid: 8780 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 8756 - type: Transform - - uid: 8781 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-5.5 - parent: 8756 - type: Transform - - uid: 8782 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 8756 - type: Transform - - uid: 8797 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-2.5 - parent: 8756 - type: Transform - - uid: 8798 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-2.5 - parent: 8756 - type: Transform - - uid: 8799 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,2.5 - parent: 8756 - type: Transform - - uid: 8800 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,1.5 - parent: 8756 - type: Transform - - uid: 8806 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-2.5 - parent: 8756 - type: Transform - - uid: 8808 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,1.5 - parent: 8756 - type: Transform - - uid: 8811 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-3.5 - parent: 8756 - type: Transform - - uid: 8813 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-3.5 - parent: 8756 - type: Transform -- proto: WallShuttleDiagonal - entities: - - uid: 8769 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,4.5 - parent: 8756 - type: Transform - - uid: 8770 - components: - - pos: -2.5,4.5 - parent: 8756 - type: Transform - - uid: 8803 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-3.5 - parent: 8756 - type: Transform - - uid: 8886 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-3.5 - parent: 8756 - type: Transform -- proto: WallSolid - entities: - - uid: 126 - components: - - pos: -40.5,12.5 - parent: 1 - type: Transform - - uid: 128 - components: - - pos: -38.5,12.5 - parent: 1 - type: Transform - - uid: 136 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-6.5 - parent: 1 - type: Transform - - uid: 137 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-8.5 - parent: 1 - type: Transform - - uid: 138 - components: - - pos: -28.5,-13.5 - parent: 1 - type: Transform - - uid: 142 - components: - - pos: -37.5,-7.5 - parent: 1 - type: Transform - - uid: 143 - components: - - pos: -33.5,16.5 - parent: 1 - type: Transform - - uid: 248 - components: - - pos: -30.5,-15.5 - parent: 1 - type: Transform - - uid: 254 - components: - - pos: 13.5,-2.5 - parent: 1 - type: Transform - - uid: 261 - components: - - pos: -33.5,9.5 - parent: 1 - type: Transform - - uid: 262 - components: - - pos: -33.5,8.5 - parent: 1 - type: Transform - - uid: 263 - components: - - pos: -36.5,8.5 - parent: 1 - type: Transform - - uid: 264 - components: - - pos: -33.5,2.5 - parent: 1 - type: Transform - - uid: 265 - components: - - pos: -34.5,8.5 - parent: 1 - type: Transform - - uid: 267 - components: - - pos: -37.5,11.5 - parent: 1 - type: Transform - - uid: 268 - components: - - pos: -37.5,8.5 - parent: 1 - type: Transform - - uid: 269 - components: - - pos: -33.5,1.5 - parent: 1 - type: Transform - - uid: 273 - components: - - pos: -33.5,11.5 - parent: 1 - type: Transform - - uid: 275 - components: - - pos: -43.5,-3.5 - parent: 1 - type: Transform - - uid: 277 - components: - - pos: -39.5,-3.5 - parent: 1 - type: Transform - - uid: 279 - components: - - pos: -42.5,-3.5 - parent: 1 - type: Transform - - uid: 397 - components: - - pos: -3.5,69.5 - parent: 1 - type: Transform - - uid: 439 - components: - - pos: -37.5,12.5 - parent: 1 - type: Transform - - uid: 440 - components: - - pos: -37.5,9.5 - parent: 1 - type: Transform - - uid: 441 - components: - - pos: -34.5,3.5 - parent: 1 - type: Transform - - uid: 442 - components: - - pos: -36.5,12.5 - parent: 1 - type: Transform - - uid: 445 - components: - - pos: -34.5,12.5 - parent: 1 - type: Transform - - uid: 446 - components: - - pos: -36.5,3.5 - parent: 1 - type: Transform - - uid: 447 - components: - - pos: -33.5,3.5 - parent: 1 - type: Transform - - uid: 449 - components: - - pos: -38.5,-3.5 - parent: 1 - type: Transform - - uid: 494 - components: - - pos: -12.5,5.5 - parent: 1 - type: Transform - - uid: 495 - components: - - pos: -9.5,12.5 - parent: 1 - type: Transform - - uid: 496 - components: - - pos: -12.5,7.5 - parent: 1 - type: Transform - - uid: 497 - components: - - pos: -12.5,6.5 - parent: 1 - type: Transform - - uid: 498 - components: - - pos: -12.5,8.5 - parent: 1 - type: Transform - - uid: 499 - components: - - pos: -12.5,9.5 - parent: 1 - type: Transform - - uid: 500 - components: - - pos: -10.5,9.5 - parent: 1 - type: Transform - - uid: 501 - components: - - pos: -11.5,9.5 - parent: 1 - type: Transform - - uid: 502 - components: - - pos: -5.5,-6.5 - parent: 1 - type: Transform - - uid: 504 - components: - - pos: -5.5,12.5 - parent: 1 - type: Transform - - uid: 506 - components: - - pos: -6.5,12.5 - parent: 1 - type: Transform - - uid: 507 - components: - - pos: -10.5,12.5 - parent: 1 - type: Transform - - uid: 508 - components: - - pos: -11.5,12.5 - parent: 1 - type: Transform - - uid: 509 - components: - - pos: -11.5,5.5 - parent: 1 - type: Transform - - uid: 510 - components: - - pos: -10.5,5.5 - parent: 1 - type: Transform - - uid: 515 - components: - - pos: -5.5,9.5 - parent: 1 - type: Transform - - uid: 516 - components: - - pos: -5.5,11.5 - parent: 1 - type: Transform - - uid: 517 - components: - - pos: -6.5,9.5 - parent: 1 - type: Transform - - uid: 518 - components: - - pos: -5.5,10.5 - parent: 1 - type: Transform - - uid: 519 - components: - - pos: -8.5,12.5 - parent: 1 - type: Transform - - uid: 520 - components: - - pos: -7.5,12.5 - parent: 1 - type: Transform - - uid: 521 - components: - - pos: -11.5,10.5 - parent: 1 - type: Transform - - uid: 522 - components: - - pos: -9.5,9.5 - parent: 1 - type: Transform - - uid: 523 - components: - - pos: -7.5,9.5 - parent: 1 - type: Transform - - uid: 531 - components: - - pos: -9.5,-6.5 - parent: 1 - type: Transform - - uid: 532 - components: - - pos: -13.5,-6.5 - parent: 1 - type: Transform - - uid: 533 - components: - - pos: -14.5,-6.5 - parent: 1 - type: Transform - - uid: 534 - components: - - pos: -14.5,-5.5 - parent: 1 - type: Transform - - uid: 535 - components: - - pos: -14.5,-4.5 - parent: 1 - type: Transform - - uid: 539 - components: - - pos: -14.5,5.5 - parent: 1 - type: Transform - - uid: 540 - components: - - pos: -13.5,5.5 - parent: 1 - type: Transform - - uid: 543 - components: - - pos: 4.5,2.5 - parent: 1 - type: Transform - - uid: 544 - components: - - pos: 4.5,12.5 - parent: 1 - type: Transform - - uid: 547 - components: - - pos: 7.5,12.5 - parent: 1 - type: Transform - - uid: 551 - components: - - pos: 12.5,12.5 - parent: 1 - type: Transform - - uid: 552 - components: - - pos: 6.5,12.5 - parent: 1 - type: Transform - - uid: 558 - components: - - pos: 4.5,9.5 - parent: 1 - type: Transform - - uid: 559 - components: - - pos: 4.5,10.5 - parent: 1 - type: Transform - - uid: 560 - components: - - pos: 4.5,11.5 - parent: 1 - type: Transform - - uid: 568 - components: - - pos: 10.5,4.5 - parent: 1 - type: Transform - - uid: 572 - components: - - pos: 9.5,0.5 - parent: 1 - type: Transform - - uid: 573 - components: - - pos: 9.5,1.5 - parent: 1 - type: Transform - - uid: 574 - components: - - pos: 9.5,3.5 - parent: 1 - type: Transform - - uid: 575 - components: - - pos: 9.5,4.5 - parent: 1 - type: Transform - - uid: 576 - components: - - pos: 12.5,4.5 - parent: 1 - type: Transform - - uid: 577 - components: - - pos: 13.5,4.5 - parent: 1 - type: Transform - - uid: 578 - components: - - pos: 13.5,3.5 - parent: 1 - type: Transform - - uid: 580 - components: - - pos: 13.5,1.5 - parent: 1 - type: Transform - - uid: 581 - components: - - pos: 13.5,0.5 - parent: 1 - type: Transform - - uid: 582 - components: - - pos: 12.5,0.5 - parent: 1 - type: Transform - - uid: 583 - components: - - pos: 10.5,0.5 - parent: 1 - type: Transform - - uid: 584 - components: - - pos: 12.5,11.5 - parent: 1 - type: Transform - - uid: 585 - components: - - pos: 12.5,10.5 - parent: 1 - type: Transform - - uid: 586 - components: - - pos: 13.5,-0.5 - parent: 1 - type: Transform - - uid: 587 - components: - - pos: 12.5,8.5 - parent: 1 - type: Transform - - uid: 588 - components: - - pos: 12.5,7.5 - parent: 1 - type: Transform - - uid: 589 - components: - - pos: 13.5,-1.5 - parent: 1 - type: Transform - - uid: 590 - components: - - pos: 12.5,5.5 - parent: 1 - type: Transform - - uid: 592 - components: - - pos: 13.5,-3.5 - parent: 1 - type: Transform - - uid: 593 - components: - - pos: 13.5,-4.5 - parent: 1 - type: Transform - - uid: 594 - components: - - pos: 13.5,-5.5 - parent: 1 - type: Transform - - uid: 595 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-6.5 - parent: 1 - type: Transform - - uid: 596 - components: - - pos: 12.5,-5.5 - parent: 1 - type: Transform - - uid: 597 - components: - - pos: 8.5,-5.5 - parent: 1 - type: Transform - - uid: 598 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-6.5 - parent: 1 - type: Transform - - uid: 600 - components: - - pos: 7.5,-6.5 - parent: 1 - type: Transform - - uid: 601 - components: - - pos: 4.5,-6.5 - parent: 1 - type: Transform - - uid: 623 - components: - - pos: 13.5,12.5 - parent: 1 - type: Transform - - uid: 624 - components: - - pos: 14.5,12.5 - parent: 1 - type: Transform - - uid: 625 - components: - - pos: 15.5,12.5 - parent: 1 - type: Transform - - uid: 626 - components: - - pos: 16.5,12.5 - parent: 1 - type: Transform - - uid: 627 - components: - - pos: 16.5,11.5 - parent: 1 - type: Transform - - uid: 628 - components: - - pos: 16.5,10.5 - parent: 1 - type: Transform - - uid: 629 - components: - - pos: 16.5,9.5 - parent: 1 - type: Transform - - uid: 630 - components: - - pos: 16.5,8.5 - parent: 1 - type: Transform - - uid: 631 - components: - - pos: 16.5,7.5 - parent: 1 - type: Transform - - uid: 632 - components: - - pos: 15.5,7.5 - parent: 1 - type: Transform - - uid: 633 - components: - - pos: 13.5,7.5 - parent: 1 - type: Transform - - uid: 634 - components: - - pos: 17.5,12.5 - parent: 1 - type: Transform - - uid: 635 - components: - - pos: 19.5,12.5 - parent: 1 - type: Transform - - uid: 636 - components: - - pos: 19.5,11.5 - parent: 1 - type: Transform - - uid: 637 - components: - - pos: 19.5,10.5 - parent: 1 - type: Transform - - uid: 638 - components: - - pos: 19.5,9.5 - parent: 1 - type: Transform - - uid: 639 - components: - - pos: 27.5,-6.5 - parent: 1 - type: Transform - - uid: 640 - components: - - pos: 19.5,7.5 - parent: 1 - type: Transform - - uid: 641 - components: - - pos: 19.5,6.5 - parent: 1 - type: Transform - - uid: 642 - components: - - pos: 19.5,5.5 - parent: 1 - type: Transform - - uid: 643 - components: - - pos: 18.5,5.5 - parent: 1 - type: Transform - - uid: 644 - components: - - pos: 16.5,5.5 - parent: 1 - type: Transform - - uid: 645 - components: - - pos: 17.5,5.5 - parent: 1 - type: Transform - - uid: 646 - components: - - pos: 16.5,4.5 - parent: 1 - type: Transform - - uid: 647 - components: - - pos: 16.5,3.5 - parent: 1 - type: Transform - - uid: 648 - components: - - pos: 16.5,2.5 - parent: 1 - type: Transform - - uid: 649 - components: - - pos: 16.5,1.5 - parent: 1 - type: Transform - - uid: 650 - components: - - pos: 16.5,0.5 - parent: 1 - type: Transform - - uid: 651 - components: - - pos: 16.5,-0.5 - parent: 1 - type: Transform - - uid: 654 - components: - - pos: -18.5,-1.5 - parent: 1 - type: Transform - - uid: 655 - components: - - pos: -18.5,-2.5 - parent: 1 - type: Transform - - uid: 656 - components: - - pos: -18.5,-3.5 - parent: 1 - type: Transform - - uid: 657 - components: - - pos: -18.5,-4.5 - parent: 1 - type: Transform - - uid: 658 - components: - - pos: -18.5,-6.5 - parent: 1 - type: Transform - - uid: 659 - components: - - pos: -17.5,-6.5 - parent: 1 - type: Transform - - uid: 660 - components: - - pos: -16.5,-6.5 - parent: 1 - type: Transform - - uid: 662 - components: - - pos: -15.5,-6.5 - parent: 1 - type: Transform - - uid: 669 - components: - - pos: -14.5,6.5 - parent: 1 - type: Transform - - uid: 670 - components: - - pos: -15.5,6.5 - parent: 1 - type: Transform - - uid: 671 - components: - - pos: -16.5,6.5 - parent: 1 - type: Transform - - uid: 672 - components: - - pos: -17.5,6.5 - parent: 1 - type: Transform - - uid: 673 - components: - - pos: -18.5,0.5 - parent: 1 - type: Transform - - uid: 674 - components: - - pos: -18.5,1.5 - parent: 1 - type: Transform - - uid: 675 - components: - - pos: -18.5,2.5 - parent: 1 - type: Transform - - uid: 676 - components: - - pos: -18.5,3.5 - parent: 1 - type: Transform - - uid: 677 - components: - - pos: -18.5,4.5 - parent: 1 - type: Transform - - uid: 678 - components: - - pos: -18.5,6.5 - parent: 1 - type: Transform - - uid: 679 - components: - - pos: -19.5,-6.5 - parent: 1 - type: Transform - - uid: 680 - components: - - pos: -20.5,-6.5 - parent: 1 - type: Transform - - uid: 681 - components: - - pos: -21.5,-6.5 - parent: 1 - type: Transform - - uid: 682 - components: - - pos: -22.5,-6.5 - parent: 1 - type: Transform - - uid: 683 - components: - - pos: -23.5,-6.5 - parent: 1 - type: Transform - - uid: 684 - components: - - pos: -24.5,-6.5 - parent: 1 - type: Transform - - uid: 685 - components: - - pos: -25.5,-6.5 - parent: 1 - type: Transform - - uid: 686 - components: - - pos: -27.5,-6.5 - parent: 1 - type: Transform - - uid: 687 - components: - - pos: -28.5,-6.5 - parent: 1 - type: Transform - - uid: 688 - components: - - pos: -29.5,-6.5 - parent: 1 - type: Transform - - uid: 689 - components: - - pos: -29.5,-5.5 - parent: 1 - type: Transform - - uid: 690 - components: - - pos: -29.5,-4.5 - parent: 1 - type: Transform - - uid: 691 - components: - - pos: -29.5,-3.5 - parent: 1 - type: Transform - - uid: 692 - components: - - pos: -26.5,-4.5 - parent: 1 - type: Transform - - uid: 693 - components: - - pos: -25.5,-4.5 - parent: 1 - type: Transform - - uid: 694 - components: - - pos: -24.5,-4.5 - parent: 1 - type: Transform - - uid: 695 - components: - - pos: -23.5,-4.5 - parent: 1 - type: Transform - - uid: 696 - components: - - pos: -12.5,12.5 - parent: 1 - type: Transform - - uid: 697 - components: - - pos: -13.5,12.5 - parent: 1 - type: Transform - - uid: 698 - components: - - pos: -14.5,12.5 - parent: 1 - type: Transform - - uid: 699 - components: - - pos: -14.5,11.5 - parent: 1 - type: Transform - - uid: 700 - components: - - pos: -16.5,12.5 - parent: 1 - type: Transform - - uid: 701 - components: - - pos: -17.5,12.5 - parent: 1 - type: Transform - - uid: 702 - components: - - pos: -18.5,12.5 - parent: 1 - type: Transform - - uid: 703 - components: - - pos: -19.5,12.5 - parent: 1 - type: Transform - - uid: 704 - components: - - pos: -20.5,12.5 - parent: 1 - type: Transform - - uid: 705 - components: - - pos: -21.5,12.5 - parent: 1 - type: Transform - - uid: 706 - components: - - pos: -24.5,12.5 - parent: 1 - type: Transform - - uid: 707 - components: - - pos: -26.5,12.5 - parent: 1 - type: Transform - - uid: 708 - components: - - pos: -25.5,12.5 - parent: 1 - type: Transform - - uid: 709 - components: - - pos: -29.5,9.5 - parent: 1 - type: Transform - - uid: 710 - components: - - pos: -29.5,12.5 - parent: 1 - type: Transform - - uid: 711 - components: - - pos: -29.5,8.5 - parent: 1 - type: Transform - - uid: 712 - components: - - pos: -29.5,7.5 - parent: 1 - type: Transform - - uid: 713 - components: - - pos: -29.5,4.5 - parent: 1 - type: Transform - - uid: 714 - components: - - pos: -28.5,4.5 - parent: 1 - type: Transform - - uid: 715 - components: - - pos: -27.5,4.5 - parent: 1 - type: Transform - - uid: 716 - components: - - pos: -26.5,4.5 - parent: 1 - type: Transform - - uid: 717 - components: - - pos: -26.5,-3.5 - parent: 1 - type: Transform - - uid: 718 - components: - - pos: -26.5,-2.5 - parent: 1 - type: Transform - - uid: 719 - components: - - pos: -26.5,-1.5 - parent: 1 - type: Transform - - uid: 720 - components: - - pos: -26.5,-0.5 - parent: 1 - type: Transform - - uid: 721 - components: - - pos: -26.5,0.5 - parent: 1 - type: Transform - - uid: 722 - components: - - pos: -26.5,3.5 - parent: 1 - type: Transform - - uid: 723 - components: - - pos: -26.5,2.5 - parent: 1 - type: Transform - - uid: 724 - components: - - pos: -29.5,-2.5 - parent: 1 - type: Transform - - uid: 725 - components: - - pos: -29.5,-1.5 - parent: 1 - type: Transform - - uid: 726 - components: - - pos: -29.5,-0.5 - parent: 1 - type: Transform - - uid: 727 - components: - - pos: -29.5,0.5 - parent: 1 - type: Transform - - uid: 728 - components: - - pos: -29.5,2.5 - parent: 1 - type: Transform - - uid: 729 - components: - - pos: -29.5,3.5 - parent: 1 - type: Transform - - uid: 730 - components: - - pos: -21.5,11.5 - parent: 1 - type: Transform - - uid: 731 - components: - - pos: -21.5,10.5 - parent: 1 - type: Transform - - uid: 732 - components: - - pos: -21.5,9.5 - parent: 1 - type: Transform - - uid: 733 - components: - - pos: -21.5,8.5 - parent: 1 - type: Transform - - uid: 734 - components: - - pos: -25.5,4.5 - parent: 1 - type: Transform - - uid: 735 - components: - - pos: -23.5,4.5 - parent: 1 - type: Transform - - uid: 736 - components: - - pos: -25.5,0.5 - parent: 1 - type: Transform - - uid: 737 - components: - - pos: -24.5,0.5 - parent: 1 - type: Transform - - uid: 738 - components: - - pos: -23.5,0.5 - parent: 1 - type: Transform - - uid: 739 - components: - - pos: -22.5,0.5 - parent: 1 - type: Transform - - uid: 740 - components: - - pos: -22.5,2.5 - parent: 1 - type: Transform - - uid: 741 - components: - - pos: -22.5,4.5 - parent: 1 - type: Transform - - uid: 742 - components: - - pos: -21.5,4.5 - parent: 1 - type: Transform - - uid: 743 - components: - - pos: -22.5,3.5 - parent: 1 - type: Transform - - uid: 744 - components: - - pos: -22.5,1.5 - parent: 1 - type: Transform - - uid: 745 - components: - - pos: -20.5,4.5 - parent: 1 - type: Transform - - uid: 746 - components: - - pos: -20.5,8.5 - parent: 1 - type: Transform - - uid: 747 - components: - - pos: -18.5,8.5 - parent: 1 - type: Transform - - uid: 748 - components: - - pos: -17.5,8.5 - parent: 1 - type: Transform - - uid: 752 - components: - - pos: -14.5,10.5 - parent: 1 - type: Transform - - uid: 753 - components: - - pos: -14.5,9.5 - parent: 1 - type: Transform - - uid: 754 - components: - - pos: -14.5,7.5 - parent: 1 - type: Transform - - uid: 755 - components: - - pos: -21.5,5.5 - parent: 1 - type: Transform - - uid: 756 - components: - - pos: -21.5,6.5 - parent: 1 - type: Transform - - uid: 757 - components: - - pos: -22.5,-0.5 - parent: 1 - type: Transform - - uid: 758 - components: - - pos: -22.5,-4.5 - parent: 1 - type: Transform - - uid: 759 - components: - - pos: -22.5,-3.5 - parent: 1 - type: Transform - - uid: 760 - components: - - pos: -22.5,-1.5 - parent: 1 - type: Transform - - uid: 761 - components: - - pos: -21.5,-1.5 - parent: 1 - type: Transform - - uid: 762 - components: - - pos: -20.5,-1.5 - parent: 1 - type: Transform - - uid: 769 - components: - - pos: -27.5,-23.5 - parent: 1 - type: Transform - - uid: 782 - components: - - pos: -25.5,9.5 - parent: 1 - type: Transform - - uid: 783 - components: - - pos: -26.5,9.5 - parent: 1 - type: Transform - - uid: 796 - components: - - pos: 5.5,16.5 - parent: 1 - type: Transform - - uid: 822 - components: - - pos: -24.5,9.5 - parent: 1 - type: Transform - - uid: 846 - components: - - pos: 40.5,39.5 - parent: 1 - type: Transform - - uid: 886 - components: - - rot: 3.141592653589793 rad - pos: 29.5,53.5 - parent: 1 - type: Transform - - uid: 1063 - components: - - pos: -25.5,33.5 - parent: 1 - type: Transform - - uid: 1143 - components: - - pos: -24.5,35.5 - parent: 1 - type: Transform - - uid: 1144 - components: - - pos: -25.5,35.5 - parent: 1 - type: Transform - - uid: 1199 - components: - - pos: -26.5,16.5 - parent: 1 - type: Transform - - uid: 1200 - components: - - pos: -27.5,16.5 - parent: 1 - type: Transform - - uid: 1201 - components: - - pos: -28.5,16.5 - parent: 1 - type: Transform - - uid: 1202 - components: - - pos: -29.5,16.5 - parent: 1 - type: Transform - - uid: 1203 - components: - - pos: -29.5,22.5 - parent: 1 - type: Transform - - uid: 1204 - components: - - pos: -29.5,22.5 - parent: 1 - type: Transform - - uid: 1205 - components: - - pos: -29.5,21.5 - parent: 1 - type: Transform - - uid: 1206 - components: - - pos: -29.5,20.5 - parent: 1 - type: Transform - - uid: 1207 - components: - - pos: -29.5,19.5 - parent: 1 - type: Transform - - uid: 1208 - components: - - pos: -29.5,18.5 - parent: 1 - type: Transform - - uid: 1209 - components: - - pos: -29.5,17.5 - parent: 1 - type: Transform - - uid: 1210 - components: - - pos: -29.5,24.5 - parent: 1 - type: Transform - - uid: 1211 - components: - - pos: -29.5,25.5 - parent: 1 - type: Transform - - uid: 1212 - components: - - pos: -29.5,26.5 - parent: 1 - type: Transform - - uid: 1213 - components: - - pos: -29.5,27.5 - parent: 1 - type: Transform - - uid: 1214 - components: - - pos: -29.5,28.5 - parent: 1 - type: Transform - - uid: 1215 - components: - - pos: -28.5,24.5 - parent: 1 - type: Transform - - uid: 1216 - components: - - pos: -28.5,28.5 - parent: 1 - type: Transform - - uid: 1217 - components: - - pos: -27.5,28.5 - parent: 1 - type: Transform - - uid: 1218 - components: - - pos: -26.5,28.5 - parent: 1 - type: Transform - - uid: 1219 - components: - - pos: -33.5,17.5 - parent: 1 - type: Transform - - uid: 1220 - components: - - pos: -24.5,28.5 - parent: 1 - type: Transform - - uid: 1221 - components: - - pos: -25.5,28.5 - parent: 1 - type: Transform - - uid: 1222 - components: - - pos: -22.5,28.5 - parent: 1 - type: Transform - - uid: 1223 - components: - - pos: -21.5,28.5 - parent: 1 - type: Transform - - uid: 1225 - components: - - pos: -19.5,28.5 - parent: 1 - type: Transform - - uid: 1228 - components: - - pos: -25.5,34.5 - parent: 1 - type: Transform - - uid: 1234 - components: - - pos: 8.5,12.5 - parent: 1 - type: Transform - - uid: 1235 - components: - - pos: 4.5,8.5 - parent: 1 - type: Transform - - uid: 1243 - components: - - pos: -22.5,30.5 - parent: 1 - type: Transform - - uid: 1244 - components: - - pos: -22.5,29.5 - parent: 1 - type: Transform - - uid: 1245 - components: - - pos: -29.5,35.5 - parent: 1 - type: Transform - - uid: 1246 - components: - - pos: -26.5,35.5 - parent: 1 - type: Transform - - uid: 1247 - components: - - pos: -29.5,32.5 - parent: 1 - type: Transform - - uid: 1248 - components: - - pos: -29.5,31.5 - parent: 1 - type: Transform - - uid: 1249 - components: - - pos: -33.5,18.5 - parent: 1 - type: Transform - - uid: 1250 - components: - - pos: -33.5,19.5 - parent: 1 - type: Transform - - uid: 1251 - components: - - pos: -33.5,20.5 - parent: 1 - type: Transform - - uid: 1252 - components: - - pos: -33.5,21.5 - parent: 1 - type: Transform - - uid: 1253 - components: - - pos: -33.5,22.5 - parent: 1 - type: Transform - - uid: 1254 - components: - - pos: -33.5,24.5 - parent: 1 - type: Transform - - uid: 1255 - components: - - pos: -33.5,25.5 - parent: 1 - type: Transform - - uid: 1256 - components: - - pos: -33.5,26.5 - parent: 1 - type: Transform - - uid: 1257 - components: - - pos: -33.5,27.5 - parent: 1 - type: Transform - - uid: 1258 - components: - - pos: -33.5,28.5 - parent: 1 - type: Transform - - uid: 1259 - components: - - pos: -33.5,29.5 - parent: 1 - type: Transform - - uid: 1260 - components: - - pos: -33.5,30.5 - parent: 1 - type: Transform - - uid: 1261 - components: - - pos: -33.5,31.5 - parent: 1 - type: Transform - - uid: 1262 - components: - - pos: -33.5,32.5 - parent: 1 - type: Transform - - uid: 1263 - components: - - pos: -33.5,33.5 - parent: 1 - type: Transform - - uid: 1264 - components: - - pos: -33.5,34.5 - parent: 1 - type: Transform - - uid: 1265 - components: - - pos: -33.5,35.5 - parent: 1 - type: Transform - - uid: 1266 - components: - - pos: -34.5,35.5 - parent: 1 - type: Transform - - uid: 1267 - components: - - pos: -35.5,35.5 - parent: 1 - type: Transform - - uid: 1300 - components: - - pos: -25.5,30.5 - parent: 1 - type: Transform - - uid: 1302 - components: - - pos: -25.5,29.5 - parent: 1 - type: Transform - - uid: 1304 - components: - - pos: -25.5,31.5 - parent: 1 - type: Transform - - uid: 1305 - components: - - pos: -25.5,32.5 - parent: 1 - type: Transform - - uid: 1359 - components: - - pos: -22.5,39.5 - parent: 1 - type: Transform - - uid: 1451 - components: - - pos: -23.5,39.5 - parent: 1 - type: Transform - - uid: 1524 - components: - - pos: -36.5,47.5 - parent: 1 - type: Transform - - uid: 1568 - components: - - pos: -37.5,47.5 - parent: 1 - type: Transform - - uid: 1569 - components: - - pos: -38.5,47.5 - parent: 1 - type: Transform - - uid: 1582 - components: - - pos: -38.5,44.5 - parent: 1 - type: Transform - - uid: 1583 - components: - - pos: -37.5,44.5 - parent: 1 - type: Transform - - uid: 1584 - components: - - pos: -36.5,44.5 - parent: 1 - type: Transform - - uid: 1585 - components: - - pos: -36.5,49.5 - parent: 1 - type: Transform - - uid: 1592 - components: - - pos: -23.5,50.5 - parent: 1 - type: Transform - - uid: 1593 - components: - - pos: -23.5,45.5 - parent: 1 - type: Transform - - uid: 1594 - components: - - pos: -23.5,51.5 - parent: 1 - type: Transform - - uid: 1595 - components: - - pos: -23.5,52.5 - parent: 1 - type: Transform - - uid: 1596 - components: - - pos: -26.5,52.5 - parent: 1 - type: Transform - - uid: 1597 - components: - - pos: -26.5,53.5 - parent: 1 - type: Transform - - uid: 1598 - components: - - pos: -25.5,53.5 - parent: 1 - type: Transform - - uid: 1599 - components: - - pos: -23.5,53.5 - parent: 1 - type: Transform - - uid: 1706 - components: - - pos: -26.5,54.5 - parent: 1 - type: Transform - - uid: 1707 - components: - - pos: -26.5,55.5 - parent: 1 - type: Transform - - uid: 1708 - components: - - pos: -26.5,56.5 - parent: 1 - type: Transform - - uid: 1709 - components: - - pos: -26.5,58.5 - parent: 1 - type: Transform - - uid: 1712 - components: - - pos: -47.5,45.5 - parent: 1 - type: Transform - - uid: 1713 - components: - - pos: -46.5,45.5 - parent: 1 - type: Transform - - uid: 1714 - components: - - pos: -45.5,45.5 - parent: 1 - type: Transform - - uid: 1730 - components: - - pos: -45.5,46.5 - parent: 1 - type: Transform - - uid: 1731 - components: - - pos: -36.5,16.5 - parent: 1 - type: Transform - - uid: 1732 - components: - - pos: -36.5,17.5 - parent: 1 - type: Transform - - uid: 1733 - components: - - pos: -36.5,18.5 - parent: 1 - type: Transform - - uid: 1737 - components: - - pos: -39.5,35.5 - parent: 1 - type: Transform - - uid: 1738 - components: - - pos: -39.5,31.5 - parent: 1 - type: Transform - - uid: 1739 - components: - - pos: -38.5,31.5 - parent: 1 - type: Transform - - uid: 1740 - components: - - pos: -37.5,31.5 - parent: 1 - type: Transform - - uid: 1741 - components: - - pos: -36.5,31.5 - parent: 1 - type: Transform - - uid: 1742 - components: - - pos: -36.5,32.5 - parent: 1 - type: Transform - - uid: 1743 - components: - - pos: -36.5,35.5 - parent: 1 - type: Transform - - uid: 1744 - components: - - pos: -37.5,35.5 - parent: 1 - type: Transform - - uid: 1745 - components: - - pos: -37.5,34.5 - parent: 1 - type: Transform - - uid: 1746 - components: - - pos: -36.5,30.5 - parent: 1 - type: Transform - - uid: 1747 - components: - - pos: -36.5,29.5 - parent: 1 - type: Transform - - uid: 1748 - components: - - pos: -35.5,29.5 - parent: 1 - type: Transform - - uid: 1749 - components: - - pos: -35.5,28.5 - parent: 1 - type: Transform - - uid: 1750 - components: - - pos: -35.5,27.5 - parent: 1 - type: Transform - - uid: 1751 - components: - - pos: -35.5,26.5 - parent: 1 - type: Transform - - uid: 1752 - components: - - pos: -35.5,25.5 - parent: 1 - type: Transform - - uid: 1753 - components: - - pos: -35.5,24.5 - parent: 1 - type: Transform - - uid: 1754 - components: - - pos: -35.5,23.5 - parent: 1 - type: Transform - - uid: 1755 - components: - - pos: -35.5,22.5 - parent: 1 - type: Transform - - uid: 1756 - components: - - pos: -36.5,22.5 - parent: 1 - type: Transform - - uid: 1757 - components: - - pos: -36.5,19.5 - parent: 1 - type: Transform - - uid: 1758 - components: - - pos: -36.5,20.5 - parent: 1 - type: Transform - - uid: 1759 - components: - - pos: -38.5,16.5 - parent: 1 - type: Transform - - uid: 1787 - components: - - pos: -20.5,58.5 - parent: 1 - type: Transform - - uid: 1851 - components: - - pos: -22.5,53.5 - parent: 1 - type: Transform - - uid: 1852 - components: - - pos: -23.5,54.5 - parent: 1 - type: Transform - - uid: 1854 - components: - - pos: -23.5,56.5 - parent: 1 - type: Transform - - uid: 1855 - components: - - pos: -20.5,55.5 - parent: 1 - type: Transform - - uid: 1856 - components: - - pos: -20.5,56.5 - parent: 1 - type: Transform - - uid: 1878 - components: - - pos: 1.5,64.5 - parent: 1 - type: Transform - - uid: 1879 - components: - - pos: 1.5,65.5 - parent: 1 - type: Transform - - uid: 1880 - components: - - pos: 9.5,62.5 - parent: 1 - type: Transform - - uid: 1882 - components: - - pos: 11.5,65.5 - parent: 1 - type: Transform - - uid: 1883 - components: - - pos: 10.5,65.5 - parent: 1 - type: Transform - - uid: 1884 - components: - - pos: 9.5,65.5 - parent: 1 - type: Transform - - uid: 1885 - components: - - pos: 12.5,65.5 - parent: 1 - type: Transform - - uid: 1886 - components: - - pos: 8.5,65.5 - parent: 1 - type: Transform - - uid: 1887 - components: - - pos: 6.5,65.5 - parent: 1 - type: Transform - - uid: 1888 - components: - - pos: 2.5,65.5 - parent: 1 - type: Transform - - uid: 1889 - components: - - pos: 5.5,65.5 - parent: 1 - type: Transform - - uid: 1890 - components: - - pos: 6.5,64.5 - parent: 1 - type: Transform - - uid: 1891 - components: - - pos: 6.5,63.5 - parent: 1 - type: Transform - - uid: 1892 - components: - - pos: 6.5,62.5 - parent: 1 - type: Transform - - uid: 1893 - components: - - pos: 6.5,61.5 - parent: 1 - type: Transform - - uid: 1894 - components: - - pos: 8.5,62.5 - parent: 1 - type: Transform - - uid: 1895 - components: - - pos: 6.5,59.5 - parent: 1 - type: Transform - - uid: 1896 - components: - - pos: 6.5,58.5 - parent: 1 - type: Transform - - uid: 1897 - components: - - pos: 4.5,58.5 - parent: 1 - type: Transform - - uid: 1898 - components: - - pos: 5.5,58.5 - parent: 1 - type: Transform - - uid: 1899 - components: - - pos: 7.5,62.5 - parent: 1 - type: Transform - - uid: 1900 - components: - - pos: 10.5,62.5 - parent: 1 - type: Transform - - uid: 1901 - components: - - pos: 11.5,62.5 - parent: 1 - type: Transform - - uid: 1902 - components: - - pos: 12.5,62.5 - parent: 1 - type: Transform - - uid: 1903 - components: - - pos: 13.5,62.5 - parent: 1 - type: Transform - - uid: 1904 - components: - - pos: 14.5,62.5 - parent: 1 - type: Transform - - uid: 1905 - components: - - pos: 15.5,62.5 - parent: 1 - type: Transform - - uid: 1906 - components: - - pos: 15.5,61.5 - parent: 1 - type: Transform - - uid: 1907 - components: - - pos: 15.5,60.5 - parent: 1 - type: Transform - - uid: 1910 - components: - - pos: 15.5,57.5 - parent: 1 - type: Transform - - uid: 1911 - components: - - pos: 15.5,56.5 - parent: 1 - type: Transform - - uid: 1912 - components: - - pos: 15.5,55.5 - parent: 1 - type: Transform - - uid: 1913 - components: - - pos: 15.5,54.5 - parent: 1 - type: Transform - - uid: 1914 - components: - - pos: 15.5,53.5 - parent: 1 - type: Transform - - uid: 1915 - components: - - pos: 15.5,52.5 - parent: 1 - type: Transform - - uid: 1921 - components: - - pos: 9.5,51.5 - parent: 1 - type: Transform - - uid: 1922 - components: - - pos: 11.5,51.5 - parent: 1 - type: Transform - - uid: 1923 - components: - - pos: 12.5,51.5 - parent: 1 - type: Transform - - uid: 1924 - components: - - pos: 13.5,51.5 - parent: 1 - type: Transform - - uid: 1925 - components: - - pos: 14.5,51.5 - parent: 1 - type: Transform - - uid: 1926 - components: - - pos: 15.5,51.5 - parent: 1 - type: Transform - - uid: 2214 - components: - - pos: -17.5,-21.5 - parent: 1 - type: Transform - - uid: 2238 - components: - - pos: 20.5,5.5 - parent: 1 - type: Transform - - uid: 2366 - components: - - pos: 36.5,-12.5 - parent: 1 - type: Transform - - uid: 2381 - components: - - pos: -29.5,-13.5 - parent: 1 - type: Transform - - uid: 2461 - components: - - pos: 20.5,4.5 - parent: 1 - type: Transform - - uid: 2462 - components: - - pos: 20.5,3.5 - parent: 1 - type: Transform - - uid: 2463 - components: - - pos: 20.5,2.5 - parent: 1 - type: Transform - - uid: 2464 - components: - - pos: 20.5,1.5 - parent: 1 - type: Transform - - uid: 2465 - components: - - pos: 19.5,1.5 - parent: 1 - type: Transform - - uid: 2466 - components: - - pos: 17.5,1.5 - parent: 1 - type: Transform - - uid: 2467 - components: - - pos: 15.5,-5.5 - parent: 1 - type: Transform - - uid: 2468 - components: - - pos: 15.5,-6.5 - parent: 1 - type: Transform - - uid: 2469 - components: - - pos: 16.5,-6.5 - parent: 1 - type: Transform - - uid: 2470 - components: - - pos: 17.5,-6.5 - parent: 1 - type: Transform - - uid: 2471 - components: - - pos: 18.5,-6.5 - parent: 1 - type: Transform - - uid: 2475 - components: - - pos: 22.5,-6.5 - parent: 1 - type: Transform - - uid: 2476 - components: - - pos: 23.5,-6.5 - parent: 1 - type: Transform - - uid: 2477 - components: - - pos: 24.5,-6.5 - parent: 1 - type: Transform - - uid: 2480 - components: - - pos: 15.5,-4.5 - parent: 1 - type: Transform - - uid: 2481 - components: - - pos: 15.5,-3.5 - parent: 1 - type: Transform - - uid: 2482 - components: - - pos: 15.5,-2.5 - parent: 1 - type: Transform - - uid: 2483 - components: - - pos: 16.5,-2.5 - parent: 1 - type: Transform - - uid: 2484 - components: - - pos: 17.5,-2.5 - parent: 1 - type: Transform - - uid: 2486 - components: - - pos: 19.5,-2.5 - parent: 1 - type: Transform - - uid: 2487 - components: - - pos: 19.5,-1.5 - parent: 1 - type: Transform - - uid: 2492 - components: - - pos: 23.5,-0.5 - parent: 1 - type: Transform - - uid: 2493 - components: - - pos: 23.5,-2.5 - parent: 1 - type: Transform - - uid: 2494 - components: - - pos: 23.5,-1.5 - parent: 1 - type: Transform - - uid: 2495 - components: - - pos: 23.5,-3.5 - parent: 1 - type: Transform - - uid: 2496 - components: - - pos: 23.5,-4.5 - parent: 1 - type: Transform - - uid: 2497 - components: - - pos: 23.5,-5.5 - parent: 1 - type: Transform - - uid: 2510 - components: - - pos: 20.5,12.5 - parent: 1 - type: Transform - - uid: 2511 - components: - - pos: 21.5,12.5 - parent: 1 - type: Transform - - uid: 2513 - components: - - pos: 28.5,-6.5 - parent: 1 - type: Transform - - uid: 2515 - components: - - pos: 28.5,-4.5 - parent: 1 - type: Transform - - uid: 2517 - components: - - pos: 28.5,-2.5 - parent: 1 - type: Transform - - uid: 2519 - components: - - pos: 28.5,-0.5 - parent: 1 - type: Transform - - uid: 2521 - components: - - pos: 28.5,1.5 - parent: 1 - type: Transform - - uid: 2829 - components: - - pos: 16.5,57.5 - parent: 1 - type: Transform - - uid: 2830 - components: - - pos: 17.5,57.5 - parent: 1 - type: Transform - - uid: 2835 - components: - - pos: 18.5,57.5 - parent: 1 - type: Transform - - uid: 2871 - components: - - pos: 33.5,-16.5 - parent: 1 - type: Transform - - uid: 2874 - components: - - pos: 11.5,12.5 - parent: 1 - type: Transform - - uid: 2883 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,2.5 - parent: 1 - type: Transform - - uid: 2893 - components: - - pos: 25.5,7.5 - parent: 1 - type: Transform - - uid: 2894 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,8.5 - parent: 1 - type: Transform - - uid: 2895 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,8.5 - parent: 1 - type: Transform - - uid: 2897 - components: - - pos: 27.5,1.5 - parent: 1 - type: Transform - - uid: 2915 - components: - - pos: 32.5,-19.5 - parent: 1 - type: Transform - - uid: 2917 - components: - - pos: 32.5,-18.5 - parent: 1 - type: Transform - - uid: 2924 - components: - - pos: 29.5,-23.5 - parent: 1 - type: Transform - - uid: 2931 - components: - - pos: 28.5,-21.5 - parent: 1 - type: Transform - - uid: 2932 - components: - - pos: 25.5,-21.5 - parent: 1 - type: Transform - - uid: 3074 - components: - - pos: 35.5,-17.5 - parent: 1 - type: Transform - - uid: 3075 - components: - - pos: 35.5,-18.5 - parent: 1 - type: Transform - - uid: 3076 - components: - - pos: 34.5,-16.5 - parent: 1 - type: Transform - - uid: 3102 - components: - - pos: 35.5,-12.5 - parent: 1 - type: Transform - - uid: 3103 - components: - - pos: 35.5,-16.5 - parent: 1 - type: Transform - - uid: 3104 - components: - - pos: 32.5,-16.5 - parent: 1 - type: Transform - - uid: 3105 - components: - - pos: 32.5,-17.5 - parent: 1 - type: Transform - - uid: 3133 - components: - - pos: 38.5,-12.5 - parent: 1 - type: Transform - - uid: 3134 - components: - - pos: 32.5,-21.5 - parent: 1 - type: Transform - - uid: 3135 - components: - - pos: 33.5,-21.5 - parent: 1 - type: Transform - - uid: 3141 - components: - - pos: 29.5,-22.5 - parent: 1 - type: Transform - - uid: 3142 - components: - - pos: 25.5,-19.5 - parent: 1 - type: Transform - - uid: 3156 - components: - - pos: 29.5,-21.5 - parent: 1 - type: Transform - - uid: 3165 - components: - - pos: -29.5,-12.5 - parent: 1 - type: Transform - - uid: 3193 - components: - - pos: 37.5,51.5 - parent: 1 - type: Transform - - uid: 3195 - components: - - pos: 33.5,39.5 - parent: 1 - type: Transform - - uid: 3196 - components: - - pos: 28.5,39.5 - parent: 1 - type: Transform - - uid: 3197 - components: - - pos: 28.5,40.5 - parent: 1 - type: Transform - - uid: 3198 - components: - - pos: 33.5,40.5 - parent: 1 - type: Transform - - uid: 3199 - components: - - pos: 39.5,39.5 - parent: 1 - type: Transform - - uid: 3200 - components: - - pos: 38.5,39.5 - parent: 1 - type: Transform - - uid: 3201 - components: - - pos: 37.5,39.5 - parent: 1 - type: Transform - - uid: 3202 - components: - - pos: 36.5,39.5 - parent: 1 - type: Transform - - uid: 3203 - components: - - pos: 35.5,39.5 - parent: 1 - type: Transform - - uid: 3204 - components: - - pos: 37.5,41.5 - parent: 1 - type: Transform - - uid: 3205 - components: - - pos: 37.5,42.5 - parent: 1 - type: Transform - - uid: 3207 - components: - - pos: 37.5,44.5 - parent: 1 - type: Transform - - uid: 3208 - components: - - pos: 37.5,45.5 - parent: 1 - type: Transform - - uid: 3209 - components: - - pos: 37.5,46.5 - parent: 1 - type: Transform - - uid: 3210 - components: - - pos: 37.5,47.5 - parent: 1 - type: Transform - - uid: 3211 - components: - - pos: 33.5,41.5 - parent: 1 - type: Transform - - uid: 3212 - components: - - pos: 34.5,42.5 - parent: 1 - type: Transform - - uid: 3213 - components: - - pos: 33.5,42.5 - parent: 1 - type: Transform - - uid: 3214 - components: - - pos: 35.5,42.5 - parent: 1 - type: Transform - - uid: 3215 - components: - - pos: 35.5,43.5 - parent: 1 - type: Transform - - uid: 3216 - components: - - pos: 35.5,44.5 - parent: 1 - type: Transform - - uid: 3217 - components: - - pos: 35.5,45.5 - parent: 1 - type: Transform - - uid: 3218 - components: - - pos: 35.5,46.5 - parent: 1 - type: Transform - - uid: 3219 - components: - - pos: 35.5,47.5 - parent: 1 - type: Transform - - uid: 3220 - components: - - pos: 35.5,48.5 - parent: 1 - type: Transform - - uid: 3221 - components: - - pos: 35.5,49.5 - parent: 1 - type: Transform - - uid: 3222 - components: - - pos: 35.5,50.5 - parent: 1 - type: Transform - - uid: 3223 - components: - - pos: 34.5,50.5 - parent: 1 - type: Transform - - uid: 3224 - components: - - pos: 33.5,50.5 - parent: 1 - type: Transform - - uid: 3225 - components: - - pos: 32.5,50.5 - parent: 1 - type: Transform - - uid: 3226 - components: - - pos: 29.5,50.5 - parent: 1 - type: Transform - - uid: 3227 - components: - - pos: 28.5,50.5 - parent: 1 - type: Transform - - uid: 3229 - components: - - rot: 3.141592653589793 rad - pos: 26.5,49.5 - parent: 1 - type: Transform - - uid: 3233 - components: - - rot: 3.141592653589793 rad - pos: 27.5,39.5 - parent: 1 - type: Transform - - uid: 3234 - components: - - rot: 3.141592653589793 rad - pos: 23.5,46.5 - parent: 1 - type: Transform - - uid: 3235 - components: - - pos: 26.5,44.5 - parent: 1 - type: Transform - - uid: 3236 - components: - - pos: 26.5,43.5 - parent: 1 - type: Transform - - uid: 3237 - components: - - pos: 26.5,42.5 - parent: 1 - type: Transform - - uid: 3238 - components: - - pos: 27.5,42.5 - parent: 1 - type: Transform - - uid: 3239 - components: - - pos: 28.5,42.5 - parent: 1 - type: Transform - - uid: 3243 - components: - - rot: 3.141592653589793 rad - pos: 24.5,46.5 - parent: 1 - type: Transform - - uid: 3244 - components: - - rot: 3.141592653589793 rad - pos: 25.5,46.5 - parent: 1 - type: Transform - - uid: 3245 - components: - - pos: 23.5,47.5 - parent: 1 - type: Transform - - uid: 3246 - components: - - pos: 23.5,48.5 - parent: 1 - type: Transform - - uid: 3247 - components: - - rot: 3.141592653589793 rad - pos: 23.5,49.5 - parent: 1 - type: Transform - - uid: 3248 - components: - - pos: 23.5,50.5 - parent: 1 - type: Transform - - uid: 3250 - components: - - rot: 3.141592653589793 rad - pos: 27.5,53.5 - parent: 1 - type: Transform - - uid: 3251 - components: - - pos: 29.5,56.5 - parent: 1 - type: Transform - - uid: 3252 - components: - - pos: 29.5,55.5 - parent: 1 - type: Transform - - uid: 3253 - components: - - pos: 29.5,54.5 - parent: 1 - type: Transform - - uid: 3257 - components: - - pos: 34.5,53.5 - parent: 1 - type: Transform - - uid: 3258 - components: - - pos: 33.5,53.5 - parent: 1 - type: Transform - - uid: 3259 - components: - - pos: 31.5,53.5 - parent: 1 - type: Transform - - uid: 3260 - components: - - pos: 30.5,53.5 - parent: 1 - type: Transform - - uid: 3261 - components: - - rot: 3.141592653589793 rad - pos: 28.5,51.5 - parent: 1 - type: Transform - - uid: 3265 - components: - - pos: 27.5,54.5 - parent: 1 - type: Transform - - uid: 3266 - components: - - pos: 23.5,52.5 - parent: 1 - type: Transform - - uid: 3267 - components: - - pos: 23.5,53.5 - parent: 1 - type: Transform - - uid: 3268 - components: - - pos: 23.5,54.5 - parent: 1 - type: Transform - - uid: 3269 - components: - - pos: 23.5,55.5 - parent: 1 - type: Transform - - uid: 3270 - components: - - pos: 24.5,55.5 - parent: 1 - type: Transform - - uid: 3271 - components: - - pos: 25.5,55.5 - parent: 1 - type: Transform - - uid: 3272 - components: - - pos: 26.5,55.5 - parent: 1 - type: Transform - - uid: 3273 - components: - - pos: 27.5,55.5 - parent: 1 - type: Transform - - uid: 3285 - components: - - rot: 3.141592653589793 rad - pos: 27.5,52.5 - parent: 1 - type: Transform - - uid: 3286 - components: - - rot: 3.141592653589793 rad - pos: 28.5,41.5 - parent: 1 - type: Transform - - uid: 3288 - components: - - rot: 3.141592653589793 rad - pos: 26.5,39.5 - parent: 1 - type: Transform - - uid: 3289 - components: - - rot: 3.141592653589793 rad - pos: 24.5,39.5 - parent: 1 - type: Transform - - uid: 3290 - components: - - rot: 3.141592653589793 rad - pos: 24.5,40.5 - parent: 1 - type: Transform - - uid: 3291 - components: - - rot: 3.141592653589793 rad - pos: 24.5,41.5 - parent: 1 - type: Transform - - uid: 3292 - components: - - rot: 3.141592653589793 rad - pos: 24.5,42.5 - parent: 1 - type: Transform - - uid: 3293 - components: - - rot: 3.141592653589793 rad - pos: 24.5,43.5 - parent: 1 - type: Transform - - uid: 3294 - components: - - rot: 3.141592653589793 rad - pos: 23.5,44.5 - parent: 1 - type: Transform - - uid: 3295 - components: - - rot: 3.141592653589793 rad - pos: 24.5,44.5 - parent: 1 - type: Transform - - uid: 3296 - components: - - rot: 3.141592653589793 rad - pos: 22.5,44.5 - parent: 1 - type: Transform - - uid: 3297 - components: - - rot: 3.141592653589793 rad - pos: 21.5,44.5 - parent: 1 - type: Transform - - uid: 3298 - components: - - rot: 3.141592653589793 rad - pos: 20.5,44.5 - parent: 1 - type: Transform - - uid: 3299 - components: - - rot: 3.141592653589793 rad - pos: 19.5,44.5 - parent: 1 - type: Transform - - uid: 3300 - components: - - rot: 3.141592653589793 rad - pos: 18.5,44.5 - parent: 1 - type: Transform - - uid: 3301 - components: - - rot: 3.141592653589793 rad - pos: 17.5,44.5 - parent: 1 - type: Transform - - uid: 3302 - components: - - rot: 3.141592653589793 rad - pos: 16.5,44.5 - parent: 1 - type: Transform - - uid: 3303 - components: - - rot: 3.141592653589793 rad - pos: 16.5,43.5 - parent: 1 - type: Transform - - uid: 3304 - components: - - rot: 3.141592653589793 rad - pos: 16.5,42.5 - parent: 1 - type: Transform - - uid: 3305 - components: - - rot: 3.141592653589793 rad - pos: 16.5,41.5 - parent: 1 - type: Transform - - uid: 3306 - components: - - rot: 3.141592653589793 rad - pos: 16.5,40.5 - parent: 1 - type: Transform - - uid: 3307 - components: - - rot: 3.141592653589793 rad - pos: 16.5,39.5 - parent: 1 - type: Transform - - uid: 3308 - components: - - rot: 3.141592653589793 rad - pos: 13.5,39.5 - parent: 1 - type: Transform - - uid: 3309 - components: - - rot: 3.141592653589793 rad - pos: 13.5,40.5 - parent: 1 - type: Transform - - uid: 3310 - components: - - rot: 3.141592653589793 rad - pos: 12.5,39.5 - parent: 1 - type: Transform - - uid: 3311 - components: - - rot: 3.141592653589793 rad - pos: 11.5,39.5 - parent: 1 - type: Transform - - uid: 3312 - components: - - rot: 3.141592653589793 rad - pos: 10.5,39.5 - parent: 1 - type: Transform - - uid: 3313 - components: - - rot: 3.141592653589793 rad - pos: 9.5,39.5 - parent: 1 - type: Transform - - uid: 3314 - components: - - rot: 3.141592653589793 rad - pos: 10.5,40.5 - parent: 1 - type: Transform - - uid: 3315 - components: - - rot: 3.141592653589793 rad - pos: 10.5,41.5 - parent: 1 - type: Transform - - uid: 3316 - components: - - rot: 3.141592653589793 rad - pos: 7.5,39.5 - parent: 1 - type: Transform - - uid: 3317 - components: - - rot: 3.141592653589793 rad - pos: 6.5,39.5 - parent: 1 - type: Transform - - uid: 3318 - components: - - rot: 3.141592653589793 rad - pos: 5.5,39.5 - parent: 1 - type: Transform - - uid: 3362 - components: - - rot: 3.141592653589793 rad - pos: 4.5,39.5 - parent: 1 - type: Transform - - uid: 3363 - components: - - rot: 3.141592653589793 rad - pos: 3.5,39.5 - parent: 1 - type: Transform - - uid: 3364 - components: - - rot: 3.141592653589793 rad - pos: 2.5,39.5 - parent: 1 - type: Transform - - uid: 3365 - components: - - rot: 3.141592653589793 rad - pos: 1.5,39.5 - parent: 1 - type: Transform - - uid: 3366 - components: - - rot: 3.141592653589793 rad - pos: 1.5,40.5 - parent: 1 - type: Transform - - uid: 3368 - components: - - rot: 3.141592653589793 rad - pos: 8.5,39.5 - parent: 1 - type: Transform - - uid: 3369 - components: - - rot: 3.141592653589793 rad - pos: 10.5,42.5 - parent: 1 - type: Transform - - uid: 3370 - components: - - rot: 3.141592653589793 rad - pos: 13.5,43.5 - parent: 1 - type: Transform - - uid: 3371 - components: - - rot: 3.141592653589793 rad - pos: 12.5,43.5 - parent: 1 - type: Transform - - uid: 3372 - components: - - rot: 3.141592653589793 rad - pos: 11.5,43.5 - parent: 1 - type: Transform - - uid: 3373 - components: - - rot: 3.141592653589793 rad - pos: 10.5,43.5 - parent: 1 - type: Transform - - uid: 3374 - components: - - rot: 3.141592653589793 rad - pos: 10.5,44.5 - parent: 1 - type: Transform - - uid: 3375 - components: - - rot: 3.141592653589793 rad - pos: 10.5,45.5 - parent: 1 - type: Transform - - uid: 3376 - components: - - rot: 3.141592653589793 rad - pos: 10.5,46.5 - parent: 1 - type: Transform - - uid: 3377 - components: - - rot: 3.141592653589793 rad - pos: 10.5,47.5 - parent: 1 - type: Transform - - uid: 3378 - components: - - rot: 3.141592653589793 rad - pos: 11.5,47.5 - parent: 1 - type: Transform - - uid: 3379 - components: - - rot: 3.141592653589793 rad - pos: 12.5,47.5 - parent: 1 - type: Transform - - uid: 3380 - components: - - rot: 3.141592653589793 rad - pos: 13.5,47.5 - parent: 1 - type: Transform - - uid: 3381 - components: - - rot: 3.141592653589793 rad - pos: 13.5,46.5 - parent: 1 - type: Transform - - uid: 3382 - components: - - rot: 3.141592653589793 rad - pos: 16.5,47.5 - parent: 1 - type: Transform - - uid: 3383 - components: - - rot: 3.141592653589793 rad - pos: 16.5,48.5 - parent: 1 - type: Transform - - uid: 3384 - components: - - rot: 3.141592653589793 rad - pos: 17.5,48.5 - parent: 1 - type: Transform - - uid: 3385 - components: - - rot: 3.141592653589793 rad - pos: 18.5,48.5 - parent: 1 - type: Transform - - uid: 3386 - components: - - rot: 3.141592653589793 rad - pos: 13.5,48.5 - parent: 1 - type: Transform - - uid: 3387 - components: - - rot: 3.141592653589793 rad - pos: 13.5,49.5 - parent: 1 - type: Transform - - uid: 3388 - components: - - rot: 3.141592653589793 rad - pos: 17.5,51.5 - parent: 1 - type: Transform - - uid: 3389 - components: - - rot: 3.141592653589793 rad - pos: 20.5,51.5 - parent: 1 - type: Transform - - uid: 3390 - components: - - rot: 3.141592653589793 rad - pos: 19.5,51.5 - parent: 1 - type: Transform - - uid: 3391 - components: - - rot: 3.141592653589793 rad - pos: 18.5,51.5 - parent: 1 - type: Transform - - uid: 3392 - components: - - rot: 3.141592653589793 rad - pos: 27.5,51.5 - parent: 1 - type: Transform - - uid: 3394 - components: - - rot: 3.141592653589793 rad - pos: 21.5,51.5 - parent: 1 - type: Transform - - uid: 3395 - components: - - rot: 3.141592653589793 rad - pos: 21.5,52.5 - parent: 1 - type: Transform - - uid: 3396 - components: - - rot: 3.141592653589793 rad - pos: 21.5,53.5 - parent: 1 - type: Transform - - uid: 3397 - components: - - rot: 3.141592653589793 rad - pos: 21.5,54.5 - parent: 1 - type: Transform - - uid: 3398 - components: - - rot: 3.141592653589793 rad - pos: 21.5,55.5 - parent: 1 - type: Transform - - uid: 3399 - components: - - rot: 3.141592653589793 rad - pos: 20.5,55.5 - parent: 1 - type: Transform - - uid: 3400 - components: - - rot: 3.141592653589793 rad - pos: 19.5,55.5 - parent: 1 - type: Transform - - uid: 3401 - components: - - rot: 3.141592653589793 rad - pos: 18.5,55.5 - parent: 1 - type: Transform - - uid: 3402 - components: - - rot: 3.141592653589793 rad - pos: 17.5,55.5 - parent: 1 - type: Transform - - uid: 3403 - components: - - rot: 3.141592653589793 rad - pos: 17.5,54.5 - parent: 1 - type: Transform - - uid: 3404 - components: - - rot: 3.141592653589793 rad - pos: 17.5,53.5 - parent: 1 - type: Transform - - uid: 3421 - components: - - pos: -8.5,-6.5 - parent: 1 - type: Transform - - uid: 3422 - components: - - pos: -7.5,-6.5 - parent: 1 - type: Transform - - uid: 3423 - components: - - pos: -6.5,-6.5 - parent: 1 - type: Transform - - uid: 3521 - components: - - rot: 3.141592653589793 rad - pos: 19.5,48.5 - parent: 1 - type: Transform - - uid: 3522 - components: - - rot: 3.141592653589793 rad - pos: 19.5,47.5 - parent: 1 - type: Transform - - uid: 3523 - components: - - rot: 3.141592653589793 rad - pos: 19.5,46.5 - parent: 1 - type: Transform - - uid: 3530 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,48.5 - parent: 1 - type: Transform - - uid: 3562 - components: - - pos: 37.5,-10.5 - parent: 1 - type: Transform - - uid: 3563 - components: - - pos: 38.5,-10.5 - parent: 1 - type: Transform - - uid: 3564 - components: - - pos: 36.5,-10.5 - parent: 1 - type: Transform - - uid: 3565 - components: - - pos: 35.5,-10.5 - parent: 1 - type: Transform - - uid: 3567 - components: - - pos: 33.5,-10.5 - parent: 1 - type: Transform - - uid: 3568 - components: - - pos: 32.5,-10.5 - parent: 1 - type: Transform - - uid: 3594 - components: - - pos: 35.5,-13.5 - parent: 1 - type: Transform - - uid: 3595 - components: - - pos: 34.5,-13.5 - parent: 1 - type: Transform - - uid: 3596 - components: - - pos: 33.5,-13.5 - parent: 1 - type: Transform - - uid: 3599 - components: - - pos: 33.5,-14.5 - parent: 1 - type: Transform - - uid: 3600 - components: - - pos: 6.5,16.5 - parent: 1 - type: Transform - - uid: 3601 - components: - - pos: 10.5,16.5 - parent: 1 - type: Transform - - uid: 3602 - components: - - pos: 11.5,16.5 - parent: 1 - type: Transform - - uid: 3603 - components: - - pos: 12.5,16.5 - parent: 1 - type: Transform - - uid: 3635 - components: - - pos: 16.5,16.5 - parent: 1 - type: Transform - - uid: 3636 - components: - - pos: 17.5,16.5 - parent: 1 - type: Transform - - uid: 3637 - components: - - pos: 17.5,17.5 - parent: 1 - type: Transform - - uid: 3639 - components: - - pos: 17.5,18.5 - parent: 1 - type: Transform - - uid: 3640 - components: - - pos: 17.5,19.5 - parent: 1 - type: Transform - - uid: 3641 - components: - - pos: 17.5,20.5 - parent: 1 - type: Transform - - uid: 3642 - components: - - pos: 17.5,21.5 - parent: 1 - type: Transform - - uid: 3643 - components: - - pos: 16.5,21.5 - parent: 1 - type: Transform - - uid: 3644 - components: - - pos: 14.5,21.5 - parent: 1 - type: Transform - - uid: 3661 - components: - - rot: 3.141592653589793 rad - pos: 17.5,24.5 - parent: 1 - type: Transform - - uid: 3701 - components: - - pos: 20.5,16.5 - parent: 1 - type: Transform - - uid: 3702 - components: - - pos: 18.5,16.5 - parent: 1 - type: Transform - - uid: 3717 - components: - - rot: 3.141592653589793 rad - pos: 17.5,23.5 - parent: 1 - type: Transform - - uid: 3727 - components: - - rot: 3.141592653589793 rad - pos: 16.5,23.5 - parent: 1 - type: Transform - - uid: 3728 - components: - - rot: 3.141592653589793 rad - pos: 15.5,23.5 - parent: 1 - type: Transform - - uid: 3812 - components: - - pos: 25.5,-20.5 - parent: 1 - type: Transform - - uid: 3813 - components: - - pos: 27.5,-21.5 - parent: 1 - type: Transform - - uid: 3814 - components: - - pos: 26.5,-21.5 - parent: 1 - type: Transform - - uid: 3818 - components: - - pos: 25.5,-18.5 - parent: 1 - type: Transform - - uid: 3819 - components: - - pos: 25.5,-17.5 - parent: 1 - type: Transform - - uid: 3820 - components: - - pos: 26.5,-17.5 - parent: 1 - type: Transform - - uid: 3821 - components: - - pos: 27.5,-17.5 - parent: 1 - type: Transform - - uid: 3822 - components: - - pos: 28.5,-17.5 - parent: 1 - type: Transform - - uid: 3823 - components: - - pos: 29.5,-17.5 - parent: 1 - type: Transform - - uid: 3824 - components: - - pos: 29.5,-18.5 - parent: 1 - type: Transform - - uid: 3825 - components: - - pos: 19.5,-31.5 - parent: 1 - type: Transform - - uid: 3826 - components: - - pos: 18.5,-31.5 - parent: 1 - type: Transform - - uid: 3827 - components: - - pos: 17.5,-31.5 - parent: 1 - type: Transform - - uid: 3921 - components: - - pos: -33.5,-12.5 - parent: 1 - type: Transform - - uid: 3922 - components: - - pos: -33.5,-11.5 - parent: 1 - type: Transform - - uid: 3923 - components: - - pos: -28.5,-15.5 - parent: 1 - type: Transform - - uid: 3924 - components: - - pos: -29.5,-11.5 - parent: 1 - type: Transform - - uid: 3925 - components: - - pos: -28.5,-10.5 - parent: 1 - type: Transform - - uid: 3926 - components: - - pos: -31.5,-10.5 - parent: 1 - type: Transform - - uid: 3927 - components: - - pos: -29.5,-10.5 - parent: 1 - type: Transform - - uid: 3928 - components: - - pos: -30.5,-10.5 - parent: 1 - type: Transform - - uid: 3929 - components: - - pos: -32.5,-10.5 - parent: 1 - type: Transform - - uid: 3930 - components: - - pos: -33.5,-9.5 - parent: 1 - type: Transform - - uid: 3931 - components: - - pos: -33.5,-10.5 - parent: 1 - type: Transform - - uid: 3932 - components: - - pos: -27.5,-15.5 - parent: 1 - type: Transform - - uid: 3933 - components: - - pos: -26.5,-15.5 - parent: 1 - type: Transform - - uid: 3939 - components: - - pos: -33.5,-13.5 - parent: 1 - type: Transform - - uid: 3940 - components: - - pos: -30.5,-13.5 - parent: 1 - type: Transform - - uid: 3941 - components: - - pos: -30.5,-14.5 - parent: 1 - type: Transform - - uid: 3942 - components: - - pos: -32.5,-13.5 - parent: 1 - type: Transform - - uid: 3943 - components: - - pos: -31.5,-13.5 - parent: 1 - type: Transform - - uid: 3945 - components: - - pos: -34.5,-9.5 - parent: 1 - type: Transform - - uid: 3946 - components: - - pos: -34.5,-8.5 - parent: 1 - type: Transform - - uid: 3952 - components: - - pos: 29.5,-20.5 - parent: 1 - type: Transform - - uid: 3953 - components: - - pos: -28.5,-19.5 - parent: 1 - type: Transform - - uid: 3954 - components: - - pos: -27.5,-19.5 - parent: 1 - type: Transform - - uid: 3955 - components: - - pos: -27.5,-18.5 - parent: 1 - type: Transform - - uid: 3956 - components: - - pos: -27.5,-17.5 - parent: 1 - type: Transform - - uid: 3957 - components: - - pos: -26.5,-19.5 - parent: 1 - type: Transform - - uid: 3958 - components: - - pos: -25.5,-19.5 - parent: 1 - type: Transform - - uid: 3960 - components: - - pos: -25.5,-20.5 - parent: 1 - type: Transform - - uid: 3961 - components: - - pos: -25.5,-22.5 - parent: 1 - type: Transform - - uid: 4010 - components: - - pos: 22.5,-1.5 - parent: 1 - type: Transform - - uid: 4011 - components: - - pos: 21.5,-1.5 - parent: 1 - type: Transform - - uid: 4013 - components: - - pos: 20.5,-1.5 - parent: 1 - type: Transform - - uid: 4022 - components: - - pos: 6.5,-6.5 - parent: 1 - type: Transform - - uid: 4028 - components: - - pos: 4.5,-5.5 - parent: 1 - type: Transform - - uid: 4029 - components: - - pos: -29.5,6.5 - parent: 1 - type: Transform - - uid: 4030 - components: - - pos: -29.5,5.5 - parent: 1 - type: Transform - - uid: 4087 - components: - - pos: 20.5,17.5 - parent: 1 - type: Transform - - uid: 4088 - components: - - pos: 20.5,18.5 - parent: 1 - type: Transform - - uid: 4089 - components: - - pos: 20.5,19.5 - parent: 1 - type: Transform - - uid: 4090 - components: - - pos: 20.5,20.5 - parent: 1 - type: Transform - - uid: 4091 - components: - - pos: 20.5,21.5 - parent: 1 - type: Transform - - uid: 4092 - components: - - pos: 20.5,22.5 - parent: 1 - type: Transform - - uid: 4093 - components: - - pos: 20.5,23.5 - parent: 1 - type: Transform - - uid: 4094 - components: - - pos: 21.5,23.5 - parent: 1 - type: Transform - - uid: 4095 - components: - - pos: 22.5,23.5 - parent: 1 - type: Transform - - uid: 4096 - components: - - pos: 23.5,23.5 - parent: 1 - type: Transform - - uid: 4097 - components: - - pos: 24.5,23.5 - parent: 1 - type: Transform - - uid: 4098 - components: - - pos: 25.5,23.5 - parent: 1 - type: Transform - - uid: 4099 - components: - - pos: 25.5,24.5 - parent: 1 - type: Transform - - uid: 4100 - components: - - pos: 26.5,24.5 - parent: 1 - type: Transform - - uid: 4102 - components: - - pos: 26.5,26.5 - parent: 1 - type: Transform - - uid: 4103 - components: - - pos: 26.5,27.5 - parent: 1 - type: Transform - - uid: 4104 - components: - - pos: 26.5,28.5 - parent: 1 - type: Transform - - uid: 4105 - components: - - pos: 26.5,29.5 - parent: 1 - type: Transform - - uid: 4511 - components: - - pos: -19.5,-20.5 - parent: 1 - type: Transform - - uid: 4512 - components: - - pos: -18.5,-20.5 - parent: 1 - type: Transform - - uid: 4513 - components: - - pos: -17.5,-20.5 - parent: 1 - type: Transform - - uid: 4515 - components: - - pos: -17.5,-23.5 - parent: 1 - type: Transform - - uid: 4516 - components: - - pos: -36.5,-15.5 - parent: 1 - type: Transform - - uid: 4517 - components: - - pos: -37.5,-15.5 - parent: 1 - type: Transform - - uid: 4518 - components: - - pos: -38.5,-15.5 - parent: 1 - type: Transform - - uid: 4519 - components: - - pos: -36.5,-16.5 - parent: 1 - type: Transform - - uid: 4520 - components: - - pos: -36.5,-17.5 - parent: 1 - type: Transform - - uid: 4521 - components: - - pos: -36.5,-18.5 - parent: 1 - type: Transform - - uid: 4522 - components: - - pos: -35.5,-18.5 - parent: 1 - type: Transform - - uid: 4523 - components: - - pos: -34.5,-18.5 - parent: 1 - type: Transform - - uid: 4524 - components: - - pos: -33.5,-18.5 - parent: 1 - type: Transform - - uid: 4525 - components: - - pos: -32.5,-18.5 - parent: 1 - type: Transform - - uid: 4526 - components: - - pos: -31.5,-18.5 - parent: 1 - type: Transform - - uid: 4527 - components: - - pos: -30.5,-18.5 - parent: 1 - type: Transform - - uid: 4528 - components: - - pos: -30.5,-19.5 - parent: 1 - type: Transform - - uid: 4530 - components: - - pos: -30.5,-21.5 - parent: 1 - type: Transform - - uid: 4531 - components: - - pos: -30.5,-22.5 - parent: 1 - type: Transform - - uid: 4532 - components: - - pos: -30.5,-24.5 - parent: 1 - type: Transform - - uid: 4539 - components: - - pos: -17.5,-25.5 - parent: 1 - type: Transform - - uid: 4540 - components: - - pos: -17.5,-38.5 - parent: 1 - type: Transform - - uid: 4541 - components: - - pos: -17.5,-37.5 - parent: 1 - type: Transform - - uid: 4542 - components: - - pos: -17.5,-36.5 - parent: 1 - type: Transform - - uid: 4543 - components: - - pos: -17.5,-35.5 - parent: 1 - type: Transform - - uid: 4544 - components: - - pos: -17.5,-34.5 - parent: 1 - type: Transform - - uid: 4545 - components: - - pos: -17.5,-33.5 - parent: 1 - type: Transform - - uid: 4546 - components: - - pos: -17.5,-32.5 - parent: 1 - type: Transform - - uid: 4547 - components: - - pos: -18.5,-32.5 - parent: 1 - type: Transform - - uid: 4548 - components: - - pos: -20.5,-32.5 - parent: 1 - type: Transform - - uid: 4549 - components: - - pos: -19.5,-24.5 - parent: 1 - type: Transform - - uid: 4550 - components: - - pos: -19.5,-23.5 - parent: 1 - type: Transform - - uid: 4551 - components: - - pos: -18.5,-23.5 - parent: 1 - type: Transform - - uid: 4552 - components: - - pos: -19.5,-25.5 - parent: 1 - type: Transform - - uid: 4553 - components: - - pos: -19.5,-26.5 - parent: 1 - type: Transform - - uid: 4554 - components: - - pos: -19.5,-27.5 - parent: 1 - type: Transform - - uid: 4555 - components: - - pos: -19.5,-28.5 - parent: 1 - type: Transform - - uid: 4557 - components: - - pos: -19.5,-30.5 - parent: 1 - type: Transform - - uid: 4558 - components: - - pos: -20.5,-25.5 - parent: 1 - type: Transform - - uid: 4559 - components: - - pos: -21.5,-25.5 - parent: 1 - type: Transform - - uid: 4560 - components: - - pos: -22.5,-25.5 - parent: 1 - type: Transform - - uid: 4561 - components: - - pos: -23.5,-25.5 - parent: 1 - type: Transform - - uid: 4562 - components: - - pos: -24.5,-25.5 - parent: 1 - type: Transform - - uid: 4563 - components: - - pos: -25.5,-25.5 - parent: 1 - type: Transform - - uid: 4564 - components: - - pos: -25.5,-24.5 - parent: 1 - type: Transform - - uid: 4568 - components: - - pos: -25.5,-23.5 - parent: 1 - type: Transform - - uid: 5696 - components: - - pos: 28.5,16.5 - parent: 1 - type: Transform - - uid: 5728 - components: - - pos: 27.5,24.5 - parent: 1 - type: Transform - - uid: 5729 - components: - - pos: 28.5,24.5 - parent: 1 - type: Transform - - uid: 5775 - components: - - pos: 5.5,12.5 - parent: 1 - type: Transform - - uid: 5804 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-6.5 - parent: 1 - type: Transform - - uid: 5935 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,16.5 - parent: 1 - type: Transform - - uid: 5937 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,16.5 - parent: 1 - type: Transform - - uid: 6035 - components: - - pos: -34.5,17.5 - parent: 1 - type: Transform - - uid: 6049 - components: - - pos: 34.5,-10.5 - parent: 1 - type: Transform - - uid: 6148 - components: - - pos: -45.5,47.5 - parent: 1 - type: Transform - - uid: 6149 - components: - - pos: -44.5,49.5 - parent: 1 - type: Transform - - uid: 6333 - components: - - pos: -44.5,45.5 - parent: 1 - type: Transform - - uid: 6349 - components: - - pos: -12.5,68.5 - parent: 1 - type: Transform - - uid: 6360 - components: - - pos: -3.5,68.5 - parent: 1 - type: Transform - - uid: 6413 - components: - - pos: -17.5,11.5 - parent: 1 - type: Transform - - uid: 6414 - components: - - pos: -17.5,10.5 - parent: 1 - type: Transform - - uid: 6415 - components: - - pos: -17.5,9.5 - parent: 1 - type: Transform - - uid: 6416 - components: - - pos: -16.5,8.5 - parent: 1 - type: Transform - - uid: 6458 - components: - - pos: -28.5,-2.5 - parent: 1 - type: Transform - - uid: 6471 - components: - - pos: -32.5,-21.5 - parent: 1 - type: Transform - - uid: 6472 - components: - - pos: -32.5,-20.5 - parent: 1 - type: Transform - - uid: 6501 - components: - - pos: -33.5,-22.5 - parent: 1 - type: Transform - - uid: 6508 - components: - - pos: -33.5,-21.5 - parent: 1 - type: Transform - - uid: 6628 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,3.5 - parent: 1 - type: Transform - - uid: 6644 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-8.5 - parent: 1 - type: Transform - - uid: 6645 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-8.5 - parent: 1 - type: Transform - - uid: 6646 - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-8.5 - parent: 1 - type: Transform - - uid: 6647 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-8.5 - parent: 1 - type: Transform - - uid: 6654 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-8.5 - parent: 1 - type: Transform - - uid: 6655 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-8.5 - parent: 1 - type: Transform - - uid: 6657 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-7.5 - parent: 1 - type: Transform - - uid: 6856 - components: - - rot: 3.141592653589793 rad - pos: 26.5,48.5 - parent: 1 - type: Transform - - uid: 6857 - components: - - rot: 3.141592653589793 rad - pos: 26.5,51.5 - parent: 1 - type: Transform - - uid: 6860 - components: - - rot: 3.141592653589793 rad - pos: 26.5,46.5 - parent: 1 - type: Transform - - uid: 6924 - components: - - pos: 9.5,12.5 - parent: 1 - type: Transform - - uid: 6954 - components: - - pos: 20.5,9.5 - parent: 1 - type: Transform - - uid: 6994 - components: - - pos: -23.5,-24.5 - parent: 1 - type: Transform - - uid: 6995 - components: - - pos: -21.5,-24.5 - parent: 1 - type: Transform - - uid: 7126 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,2.5 - parent: 1 - type: Transform - - uid: 7275 - components: - - pos: 1.5,62.5 - parent: 1 - type: Transform - - uid: 7651 - components: - - pos: -28.5,-23.5 - parent: 1 - type: Transform - - uid: 7660 - components: - - pos: -26.5,-23.5 - parent: 1 - type: Transform - - uid: 7882 - components: - - pos: -44.5,44.5 - parent: 1 - type: Transform - - uid: 7885 - components: - - pos: -42.5,44.5 - parent: 1 - type: Transform - - uid: 8175 - components: - - pos: -3.5,0.5 - parent: 1 - type: Transform - - uid: 8341 - components: - - pos: 16.5,-38.5 - parent: 1 - type: Transform - - uid: 8427 - components: - - pos: -14.5,1.5 - parent: 1 - type: Transform - - uid: 8428 - components: - - pos: -14.5,-0.5 - parent: 1 - type: Transform - - uid: 8429 - components: - - pos: -15.5,-1.5 - parent: 1 - type: Transform - - uid: 8430 - components: - - pos: -16.5,-1.5 - parent: 1 - type: Transform - - uid: 8431 - components: - - pos: -17.5,-1.5 - parent: 1 - type: Transform - - uid: 8435 - components: - - pos: -14.5,-1.5 - parent: 1 - type: Transform - - uid: 8468 - components: - - pos: 15.5,59.5 - parent: 1 - type: Transform - - uid: 8496 - components: - - pos: -14.5,2.5 - parent: 1 - type: Transform - - uid: 8506 - components: - - pos: -15.5,2.5 - parent: 1 - type: Transform - - uid: 8507 - components: - - pos: -16.5,2.5 - parent: 1 - type: Transform - - uid: 8513 - components: - - pos: -17.5,2.5 - parent: 1 - type: Transform - - uid: 8906 - components: - - pos: 5.5,-6.5 - parent: 1 - type: Transform - - uid: 8907 - components: - - pos: 4.5,-3.5 - parent: 1 - type: Transform - - uid: 9171 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-0.5 - parent: 1 - type: Transform - - uid: 9172 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,0.5 - parent: 1 - type: Transform - - uid: 9173 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,0.5 - parent: 1 - type: Transform - - uid: 9598 - components: - - pos: 16.5,-37.5 - parent: 1 - type: Transform - - uid: 9601 - components: - - pos: 16.5,-31.5 - parent: 1 - type: Transform - - uid: 9602 - components: - - pos: 16.5,-32.5 - parent: 1 - type: Transform - - uid: 9603 - components: - - pos: 16.5,-33.5 - parent: 1 - type: Transform - - uid: 9892 - components: - - pos: 11.5,64.5 - parent: 1 - type: Transform - - uid: 9989 - components: - - pos: -30.5,-17.5 - parent: 1 - type: Transform - - uid: 10102 - components: - - pos: 16.5,-30.5 - parent: 1 - type: Transform - - uid: 10134 - components: - - pos: 31.5,-17.5 - parent: 1 - type: Transform - - uid: 13304 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,7.5 - parent: 1 - type: Transform - - uid: 13368 - components: - - pos: -28.5,20.5 - parent: 1 - type: Transform - - uid: 13463 - components: - - rot: 3.141592653589793 rad - pos: -12.5,66.5 - parent: 1 - type: Transform - - uid: 14029 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,58.5 - parent: 1 - type: Transform - - uid: 14030 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,57.5 - parent: 1 - type: Transform -- proto: WallSolidRust - entities: - - uid: 4514 - components: - - pos: -17.5,-22.5 - parent: 1 - type: Transform - - uid: 6996 - components: - - pos: -19.5,-21.5 - parent: 1 - type: Transform - - uid: 6997 - components: - - pos: -19.5,-22.5 - parent: 1 - type: Transform -- proto: WallWood - entities: - - uid: 511 - components: - - pos: -5.5,5.5 - parent: 1 - type: Transform - - uid: 3171 - components: - - pos: 39.5,49.5 - parent: 1 - type: Transform - - uid: 3172 - components: - - pos: 39.5,50.5 - parent: 1 - type: Transform - - uid: 3173 - components: - - pos: 44.5,47.5 - parent: 1 - type: Transform - - uid: 3174 - components: - - pos: 44.5,48.5 - parent: 1 - type: Transform - - uid: 3176 - components: - - pos: 40.5,50.5 - parent: 1 - type: Transform - - uid: 3179 - components: - - pos: 40.5,51.5 - parent: 1 - type: Transform - - uid: 3181 - components: - - pos: 39.5,46.5 - parent: 1 - type: Transform - - uid: 9426 - components: - - pos: 39.5,45.5 - parent: 1 - type: Transform -- proto: WardrobeBlackFilled - entities: - - uid: 6081 - components: - - pos: 17.5,43.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: WardrobeBlueFilled - entities: - - uid: 6082 - components: - - pos: 18.5,43.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: WardrobeGreenFilled - entities: - - uid: 6083 - components: - - pos: 23.5,43.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: WardrobeMixedFilled - entities: - - uid: 6084 - components: - - pos: 22.5,43.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: WardrobePinkFilled - entities: - - uid: 8396 - components: - - pos: 17.5,47.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: WardrobePrisonFilled - entities: - - uid: 8221 - components: - - pos: -13.5,42.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 8222 - components: - - pos: -10.5,42.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 8223 - components: - - pos: -7.5,42.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 8224 - components: - - pos: -4.5,42.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 8262 - components: - - pos: -37.5,46.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 8307 - components: - - pos: -37.5,42.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: WarpPoint - entities: - - uid: 6670 - components: - - pos: 30.5,4.5 - parent: 1 - type: Transform - - location: HoP - type: WarpPoint - - uid: 17617 - components: - - pos: 10.5,26.5 - parent: 1 - type: Transform - - location: Medbay - type: WarpPoint - - uid: 17618 - components: - - pos: -16.5,25.5 - parent: 1 - type: Transform - - location: Science - type: WarpPoint - - uid: 17619 - components: - - pos: -37.5,24.5 - parent: 1 - type: Transform - - location: Salvage - type: WarpPoint - - uid: 17620 - components: - - pos: -38.5,3.5 - parent: 1 - type: Transform - - location: Cargo - type: WarpPoint - - uid: 17621 - components: - - pos: -0.5,2.5 - parent: 1 - type: Transform - - location: Bar - type: WarpPoint - - uid: 17622 - components: - - pos: -8.5,-26.5 - parent: 1 - type: Transform - - location: Atmos - type: WarpPoint - - uid: 17623 - components: - - pos: 12.5,-26.5 - parent: 1 - type: Transform - - location: Engineering - type: WarpPoint - - uid: 17624 - components: - - pos: 32.5,25.5 - parent: 1 - type: Transform - - location: Evac - type: WarpPoint - - uid: 17625 - components: - - pos: 31.5,46.5 - parent: 1 - type: Transform - - location: Chapel - type: WarpPoint - - uid: 17627 - components: - - pos: 4.5,46.5 - parent: 1 - type: Transform - - location: Vault - type: WarpPoint - - uid: 17628 - components: - - pos: -13.5,48.5 - parent: 1 - type: Transform - - location: Security - type: WarpPoint - - uid: 17629 - components: - - pos: 10.5,58.5 - parent: 1 - type: Transform - - location: Courtroom - type: WarpPoint - - uid: 17630 - components: - - pos: -0.5,79.5 - parent: 1 - type: Transform - - location: Bridge - type: WarpPoint - - uid: 18176 - components: - - pos: -0.5,-0.5 - parent: 8756 - type: Transform - - location: Captain's Private Shuttle - type: WarpPoint -- proto: WaterCooler - entities: - - uid: 4162 - components: - - pos: -40.5,11.5 - parent: 1 - type: Transform - - uid: 6948 - components: - - pos: 26.5,23.5 - parent: 1 - type: Transform - - uid: 8091 - components: - - pos: 2.5,72.5 - parent: 1 - type: Transform - - uid: 8440 - components: - - pos: 6.5,57.5 - parent: 1 - type: Transform - - uid: 8587 - components: - - pos: -7.5,21.5 - parent: 1 - type: Transform - - uid: 8718 - components: - - pos: -9.5,-15.5 - parent: 1 - type: Transform - - uid: 9090 - components: - - pos: 4.5,-32.5 - parent: 1 - type: Transform -- proto: WaterTankFull - entities: - - uid: 4331 - components: - - pos: -30.5,49.5 - parent: 1 - type: Transform - - uid: 8703 - components: - - pos: -13.5,-31.5 - parent: 1 - type: Transform - - uid: 9377 - components: - - pos: 19.5,-3.5 - parent: 1 - type: Transform - - uid: 9896 - components: - - pos: 38.5,41.5 - parent: 1 - type: Transform - - uid: 9900 - components: - - pos: 20.5,6.5 - parent: 1 - type: Transform - - uid: 9901 - components: - - pos: 18.5,24.5 - parent: 1 - type: Transform - - uid: 9904 - components: - - pos: 27.5,-22.5 - parent: 1 - type: Transform - - uid: 9908 - components: - - pos: -27.5,-20.5 - parent: 1 - type: Transform - - uid: 13326 - components: - - pos: -21.5,2.5 - parent: 1 - type: Transform - - uid: 13375 - components: - - pos: -27.5,27.5 - parent: 1 - type: Transform - - uid: 13422 - components: - - pos: -25.5,55.5 - parent: 1 - type: Transform - - uid: 13457 - components: - - pos: -44.5,51.5 - parent: 1 - type: Transform - - uid: 13998 - components: - - pos: 16.5,61.5 - parent: 1 - type: Transform - - uid: 14010 - components: - - pos: 11.5,48.5 - parent: 1 - type: Transform -- proto: WaterTankHighCapacity - entities: - - uid: 10114 - components: - - pos: 5.5,4.5 - parent: 1 - type: Transform -- proto: WaterVaporCanister - entities: - - uid: 3049 - components: - - pos: -14.5,-29.5 - parent: 1 - type: Transform - - uid: 6589 - components: - - pos: -11.5,33.5 - parent: 1 - type: Transform -- proto: WeaponCapacitorRecharger - entities: - - uid: 6822 - components: - - pos: -15.5,58.5 - parent: 1 - type: Transform - - uid: 7395 - components: - - pos: -14.5,50.5 - parent: 1 - type: Transform - - uid: 7398 - components: - - pos: -16.5,50.5 - parent: 1 - type: Transform - - uid: 7901 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,44.5 - parent: 1 - type: Transform - - uid: 8061 - components: - - pos: 3.5,79.5 - parent: 1 - type: Transform - - uid: 8138 - components: - - pos: -6.5,52.5 - parent: 1 - type: Transform - - uid: 8183 - components: - - pos: -13.5,56.5 - parent: 1 - type: Transform - - uid: 9285 - components: - - pos: 23.5,10.5 - parent: 1 - type: Transform - - uid: 9395 - components: - - pos: -35.5,-5.5 - parent: 1 - type: Transform - - uid: 9420 - components: - - pos: 30.5,-13.5 - parent: 1 - type: Transform -- proto: WeaponCrusherGlaive - entities: - - uid: 1777 - components: - - pos: -41.696693,21.56326 - parent: 1 - type: Transform -- proto: WeaponDisabler - entities: - - uid: 7396 - components: - - pos: -14.632251,50.815887 - parent: 1 - type: Transform -- proto: WeaponDisablerPractice - entities: - - uid: 8186 - components: - - pos: -10.325895,49.179844 - parent: 1 - type: Transform - - uid: 9284 - components: - - pos: 23.450686,10.918031 - parent: 1 - type: Transform -- proto: WeaponLaserCarbinePractice - entities: - - uid: 8147 - components: - - pos: -10.327259,49.585735 - parent: 1 - type: Transform -- proto: WeaponRevolverDeckard - entities: - - uid: 17754 - components: - - pos: 15.523123,-26.506323 - parent: 1 - type: Transform -- proto: WeaponShotgunDoubleBarreledRubber - entities: - - uid: 7690 - components: - - flags: InContainer - type: MetaData - - parent: 7683 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 7693 - components: - - flags: InContainer - type: MetaData - - parent: 7683 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: WeaponSubMachineGunWt550 - entities: - - uid: 6823 - components: - - pos: -16.502504,59.51904 - parent: 1 - type: Transform -- proto: WeaponWaterBlaster - entities: - - uid: 3021 - components: - - pos: -7.5149508,69.42698 - parent: 1 - type: Transform -- proto: WeaponWaterPistol - entities: - - uid: 7649 - components: - - pos: -23.508644,1.4423954 - parent: 1 - type: Transform -- proto: WelderIndustrial - entities: - - uid: 4700 - components: - - pos: -10.518035,34.54518 - parent: 1 - type: Transform -- proto: WelderIndustrialAdvanced - entities: - - uid: 8699 - components: - - pos: -13.470308,-33.594826 - parent: 1 - type: Transform -- proto: WeldingFuelTankFull - entities: - - uid: 8702 - components: - - pos: -13.5,-32.5 - parent: 1 - type: Transform - - uid: 9895 - components: - - pos: 38.5,42.5 - parent: 1 - type: Transform - - uid: 9899 - components: - - pos: 28.5,-22.5 - parent: 1 - type: Transform - - uid: 9902 - components: - - pos: 18.5,23.5 - parent: 1 - type: Transform - - uid: 9903 - components: - - pos: 20.5,7.5 - parent: 1 - type: Transform - - uid: 9905 - components: - - pos: 13.5,-26.5 - parent: 1 - type: Transform - - uid: 9906 - components: - - pos: -26.5,-20.5 - parent: 1 - type: Transform - - uid: 13325 - components: - - pos: -21.5,3.5 - parent: 1 - type: Transform - - uid: 13352 - components: - - pos: -35.5,30.5 - parent: 1 - type: Transform - - uid: 13374 - components: - - pos: -28.5,27.5 - parent: 1 - type: Transform - - uid: 13421 - components: - - pos: -25.5,54.5 - parent: 1 - type: Transform - - uid: 13456 - components: - - pos: -44.5,50.5 - parent: 1 - type: Transform - - uid: 13997 - components: - - pos: 16.5,62.5 - parent: 1 - type: Transform - - uid: 14009 - components: - - pos: 12.5,48.5 - parent: 1 - type: Transform -- proto: WetFloorSign - entities: - - uid: 9256 - components: - - pos: 16.624058,-5.188912 - parent: 1 - type: Transform - - uid: 9257 - components: - - pos: 16.769894,-5.480578 - parent: 1 - type: Transform - - uid: 9258 - components: - - pos: 19.594421,-7.376412 - parent: 1 - type: Transform -- proto: Windoor - entities: - - uid: 9163 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,5.5 - parent: 1 - type: Transform -- proto: WindoorHydroponicsLocked - entities: - - uid: 557 - components: - - pos: 10.5,12.5 - parent: 1 - type: Transform - - uid: 9011 - components: - - rot: 3.141592653589793 rad - pos: 7.5,3.5 - parent: 1 - type: Transform - - uid: 9012 - components: - - rot: 3.141592653589793 rad - pos: 8.5,3.5 - parent: 1 - type: Transform -- proto: WindoorKitchenHydroponicsLocked - entities: - - uid: 4075 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-0.5 - parent: 1 - type: Transform - - uid: 6407 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-2.5 - parent: 1 - type: Transform - - uid: 6626 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-1.5 - parent: 1 - type: Transform - - uid: 6703 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-5.5 - parent: 1 - type: Transform - - uid: 6704 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-5.5 - parent: 1 - type: Transform - - uid: 6705 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-5.5 - parent: 1 - type: Transform -- proto: WindoorSecure - entities: - - uid: 18336 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,3.5 - parent: 1 - type: Transform -- proto: WindoorSecureArmoryLocked - entities: - - uid: 4371 - components: - - rot: 3.141592653589793 rad - pos: -6.5,61.5 - parent: 1 - type: Transform - - uid: 8196 - components: - - rot: 3.141592653589793 rad - pos: -13.5,47.5 - parent: 1 - type: Transform - - uid: 8197 - components: - - rot: 3.141592653589793 rad - pos: -12.5,47.5 - parent: 1 - type: Transform - - uid: 8198 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,48.5 - parent: 1 - type: Transform - - uid: 8199 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,49.5 - parent: 1 - type: Transform -- proto: WindoorSecureBrigLocked - entities: - - uid: 8127 - components: - - rot: 3.141592653589793 rad - pos: 11.5,55.5 - parent: 1 - type: Transform - - uid: 8128 - components: - - rot: 3.141592653589793 rad - pos: 10.5,55.5 - parent: 1 - type: Transform - - uid: 9508 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,60.5 - parent: 1 - type: Transform -- proto: WindoorSecureCargoLocked - entities: - - uid: 9355 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,6.5 - parent: 1 - type: Transform - - uid: 9356 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,7.5 - parent: 1 - type: Transform - - uid: 9357 - components: - - pos: -35.5,12.5 - parent: 1 - type: Transform -- proto: WindoorSecureChemistryLocked - entities: - - uid: 8537 - components: - - rot: 3.141592653589793 rad - pos: 3.5,20.5 - parent: 1 - type: Transform - - uid: 8538 - components: - - rot: 3.141592653589793 rad - pos: 4.5,20.5 - parent: 1 - type: Transform - - uid: 8539 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,22.5 - parent: 1 - type: Transform - - uid: 8540 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,23.5 - parent: 1 - type: Transform -- proto: WindoorSecureCommandLocked - entities: - - uid: 3784 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-13.5 - parent: 1 - type: Transform - - uid: 3803 - components: - - rot: 3.141592653589793 rad - pos: 19.5,-13.5 - parent: 1 - type: Transform -- proto: WindoorSecureEngineeringLocked - entities: - - uid: 8727 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-13.5 - parent: 1 - type: Transform - - uid: 8728 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-12.5 - parent: 1 - type: Transform - - uid: 9193 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-13.5 - parent: 1 - type: Transform - - uid: 9194 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-12.5 - parent: 1 - type: Transform -- proto: WindoorSecureHeadOfPersonnelLocked - entities: - - uid: 9277 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,3.5 - parent: 1 - type: Transform -- proto: WindoorSecureJanitorLocked - entities: - - uid: 4012 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-6.5 - parent: 1 - type: Transform -- proto: WindoorSecureMedicalLocked - entities: - - uid: 556 - components: - - rot: 3.141592653589793 rad - pos: 4.5,28.5 - parent: 1 - type: Transform - - uid: 9373 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,30.5 - parent: 1 - type: Transform - - uid: 9385 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,33.5 - parent: 1 - type: Transform -- proto: WindoorSecureSalvageLocked - entities: - - uid: 9370 - components: - - rot: 3.141592653589793 rad - pos: -39.5,16.5 - parent: 1 - type: Transform -- proto: WindoorSecureScienceLocked - entities: - - uid: 8603 - components: - - pos: -20.5,35.5 - parent: 1 - type: Transform - - uid: 8654 - components: - - rot: 3.141592653589793 rad - pos: -5.5,20.5 - parent: 1 - type: Transform - - uid: 8655 - components: - - rot: 3.141592653589793 rad - pos: -4.5,20.5 - parent: 1 - type: Transform -- proto: WindoorSecureSecurityLocked - entities: - - uid: 8200 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,53.5 - parent: 1 - type: Transform - - uid: 8201 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,54.5 - parent: 1 - type: Transform - - uid: 9398 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-1.5 - parent: 1 - type: Transform - - uid: 9399 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-2.5 - parent: 1 - type: Transform - - uid: 9409 - components: - - pos: 29.5,-10.5 - parent: 1 - type: Transform - - uid: 9410 - components: - - pos: 30.5,-10.5 - parent: 1 - type: Transform - - uid: 9427 - components: - - rot: 3.141592653589793 rad - pos: 43.5,41.5 - parent: 1 - type: Transform - - uid: 9428 - components: - - rot: 3.141592653589793 rad - pos: 44.5,41.5 - parent: 1 - type: Transform -- proto: Window - entities: - - uid: 464 - components: - - pos: -36.5,4.5 - parent: 1 - type: Transform - - uid: 474 - components: - - pos: -1.5,-6.5 - parent: 1 - type: Transform - - uid: 475 - components: - - pos: -0.5,-6.5 - parent: 1 - type: Transform - - uid: 476 - components: - - pos: 0.5,-6.5 - parent: 1 - type: Transform - - uid: 477 - components: - - pos: -1.5,12.5 - parent: 1 - type: Transform - - uid: 478 - components: - - pos: -0.5,12.5 - parent: 1 - type: Transform - - uid: 479 - components: - - pos: 0.5,12.5 - parent: 1 - type: Transform - - uid: 487 - components: - - pos: -4.5,12.5 - parent: 1 - type: Transform - - uid: 488 - components: - - pos: 3.5,12.5 - parent: 1 - type: Transform - - uid: 489 - components: - - pos: -4.5,-6.5 - parent: 1 - type: Transform - - uid: 490 - components: - - pos: 3.5,-6.5 - parent: 1 - type: Transform - - uid: 1579 - components: - - pos: -45.5,39.5 - parent: 1 - type: Transform - - uid: 1716 - components: - - pos: -46.5,39.5 - parent: 1 - type: Transform - - uid: 1867 - components: - - pos: 3.5,57.5 - parent: 1 - type: Transform - - uid: 1868 - components: - - pos: 3.5,55.5 - parent: 1 - type: Transform - - uid: 1869 - components: - - pos: 3.5,54.5 - parent: 1 - type: Transform - - uid: 1870 - components: - - pos: 3.5,52.5 - parent: 1 - type: Transform - - uid: 1874 - components: - - pos: 1.5,59.5 - parent: 1 - type: Transform - - uid: 1875 - components: - - pos: 1.5,60.5 - parent: 1 - type: Transform - - uid: 1876 - components: - - pos: 1.5,61.5 - parent: 1 - type: Transform - - uid: 2858 - components: - - pos: 7.5,-16.5 - parent: 1 - type: Transform - - uid: 2886 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,5.5 - parent: 1 - type: Transform - - uid: 2887 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,4.5 - parent: 1 - type: Transform - - uid: 3410 - components: - - pos: 28.5,0.5 - parent: 1 - type: Transform - - uid: 3411 - components: - - pos: 28.5,-1.5 - parent: 1 - type: Transform - - uid: 3412 - components: - - pos: 28.5,-3.5 - parent: 1 - type: Transform - - uid: 3413 - components: - - pos: 28.5,-5.5 - parent: 1 - type: Transform - - uid: 3647 - components: - - pos: 7.5,16.5 - parent: 1 - type: Transform - - uid: 3648 - components: - - pos: 8.5,16.5 - parent: 1 - type: Transform - - uid: 3649 - components: - - pos: 9.5,16.5 - parent: 1 - type: Transform - - uid: 3650 - components: - - pos: 13.5,16.5 - parent: 1 - type: Transform - - uid: 3651 - components: - - pos: 14.5,16.5 - parent: 1 - type: Transform - - uid: 3652 - components: - - pos: 15.5,16.5 - parent: 1 - type: Transform - - uid: 3992 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-35.5 - parent: 1 - type: Transform - - uid: 4245 - components: - - pos: -35.5,8.5 - parent: 1 - type: Transform - - uid: 4246 - components: - - pos: -33.5,10.5 - parent: 1 - type: Transform - - uid: 4413 - components: - - pos: 29.5,39.5 - parent: 1 - type: Transform - - uid: 4414 - components: - - pos: 29.5,42.5 - parent: 1 - type: Transform - - uid: 4415 - components: - - pos: 32.5,42.5 - parent: 1 - type: Transform - - uid: 4432 - components: - - rot: 3.141592653589793 rad - pos: -28.5,35.5 - parent: 1 - type: Transform - - uid: 4433 - components: - - rot: 3.141592653589793 rad - pos: -27.5,35.5 - parent: 1 - type: Transform - - uid: 4434 - components: - - rot: 3.141592653589793 rad - pos: -29.5,34.5 - parent: 1 - type: Transform - - uid: 4435 - components: - - rot: 3.141592653589793 rad - pos: -29.5,29.5 - parent: 1 - type: Transform - - uid: 4468 - components: - - pos: 19.5,39.5 - parent: 1 - type: Transform - - uid: 4469 - components: - - pos: 20.5,39.5 - parent: 1 - type: Transform - - uid: 4470 - components: - - pos: 21.5,39.5 - parent: 1 - type: Transform - - uid: 5705 - components: - - pos: -47.5,39.5 - parent: 1 - type: Transform - - uid: 5738 - components: - - pos: 21.5,16.5 - parent: 1 - type: Transform - - uid: 5739 - components: - - pos: 22.5,16.5 - parent: 1 - type: Transform - - uid: 5740 - components: - - pos: 26.5,16.5 - parent: 1 - type: Transform - - uid: 5741 - components: - - pos: 27.5,16.5 - parent: 1 - type: Transform - - uid: 5742 - components: - - pos: 28.5,17.5 - parent: 1 - type: Transform - - uid: 5743 - components: - - pos: 28.5,18.5 - parent: 1 - type: Transform - - uid: 5744 - components: - - pos: 28.5,22.5 - parent: 1 - type: Transform - - uid: 5745 - components: - - pos: 28.5,23.5 - parent: 1 - type: Transform - - uid: 6379 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,29.5 - parent: 1 - type: Transform - - uid: 6380 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,29.5 - parent: 1 - type: Transform - - uid: 6582 - components: - - pos: 3.5,65.5 - parent: 1 - type: Transform - - uid: 6583 - components: - - pos: 4.5,65.5 - parent: 1 - type: Transform - - uid: 7884 - components: - - pos: -44.5,39.5 - parent: 1 - type: Transform - - uid: 8988 - components: - - pos: -12.5,-6.5 - parent: 1 - type: Transform - - uid: 8992 - components: - - pos: -10.5,-6.5 - parent: 1 - type: Transform - - uid: 8993 - components: - - pos: -11.5,-6.5 - parent: 1 - type: Transform - - uid: 9015 - components: - - rot: 3.141592653589793 rad - pos: 5.5,3.5 - parent: 1 - type: Transform - - uid: 9599 - components: - - pos: 16.5,-36.5 - parent: 1 - type: Transform - - uid: 14966 - components: - - rot: 3.141592653589793 rad - pos: 32.5,39.5 - parent: 1 - type: Transform - - uid: 15570 - components: - - pos: 13.5,27.5 - parent: 1 - type: Transform -- proto: WindowDirectional - entities: - - uid: 3629 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,20.5 - parent: 1 - type: Transform - - uid: 4337 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,34.5 - parent: 1 - type: Transform - - uid: 8547 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,19.5 - parent: 1 - type: Transform - - uid: 8548 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,20.5 - parent: 1 - type: Transform - - uid: 8549 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,19.5 - parent: 1 - type: Transform - - uid: 9161 - components: - - pos: -26.5,6.5 - parent: 1 - type: Transform - - uid: 9523 - components: - - rot: 3.141592653589793 rad - pos: 43.5,38.5 - parent: 1 - type: Transform - - uid: 9524 - components: - - rot: 3.141592653589793 rad - pos: 44.5,38.5 - parent: 1 - type: Transform - - uid: 9525 - components: - - rot: 3.141592653589793 rad - pos: 45.5,38.5 - parent: 1 - type: Transform - - uid: 10066 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-14.5 - parent: 1 - type: Transform - - uid: 10093 - components: - - pos: -17.5,-28.5 - parent: 1 - type: Transform - - uid: 11053 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-0.5 - parent: 1 - type: Transform - - uid: 13376 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,27.5 - parent: 1 - type: Transform - - uid: 13377 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,27.5 - parent: 1 - type: Transform - - uid: 13419 - components: - - rot: 3.141592653589793 rad - pos: -18.5,61.5 - parent: 1 - type: Transform - - uid: 13420 - components: - - pos: -18.5,59.5 - parent: 1 - type: Transform - - uid: 14003 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,64.5 - parent: 1 - type: Transform - - uid: 14016 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,40.5 - parent: 1 - type: Transform - - uid: 14038 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,56.5 - parent: 1 - type: Transform - - uid: 14039 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,56.5 - parent: 1 - type: Transform -- proto: WindowFrostedDirectional - entities: - - uid: 1003 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,31.5 - parent: 1 - type: Transform - - uid: 3393 - components: - - rot: 3.141592653589793 rad - pos: 24.5,49.5 - parent: 1 - type: Transform - - uid: 4072 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,34.5 - parent: 1 - type: Transform - - uid: 4073 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,32.5 - parent: 1 - type: Transform - - uid: 6406 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,29.5 - parent: 1 - type: Transform - - uid: 6671 - components: - - pos: 3.5,32.5 - parent: 1 - type: Transform - - uid: 6672 - components: - - pos: 2.5,32.5 - parent: 1 - type: Transform - - uid: 6814 - components: - - rot: 3.141592653589793 rad - pos: -7.5,69.5 - parent: 1 - type: Transform - - uid: 9366 - components: - - rot: 3.141592653589793 rad - pos: 3.5,28.5 - parent: 1 - type: Transform - - uid: 9367 - components: - - rot: 3.141592653589793 rad - pos: 2.5,28.5 - parent: 1 - type: Transform -- proto: WindowReinforcedDirectional - entities: - - uid: 545 - components: - - rot: 3.141592653589793 rad - pos: 2.5,80.5 - parent: 1 - type: Transform - - uid: 546 - components: - - rot: 3.141592653589793 rad - pos: 0.5,80.5 - parent: 1 - type: Transform - - uid: 553 - components: - - rot: 3.141592653589793 rad - pos: -0.5,80.5 - parent: 1 - type: Transform - - uid: 554 - components: - - rot: 3.141592653589793 rad - pos: 3.5,80.5 - parent: 1 - type: Transform - - uid: 620 - components: - - rot: 3.141592653589793 rad - pos: -4.5,80.5 - parent: 1 - type: Transform - - uid: 621 - components: - - rot: 3.141592653589793 rad - pos: -3.5,80.5 - parent: 1 - type: Transform - - uid: 622 - components: - - rot: 3.141592653589793 rad - pos: -2.5,80.5 - parent: 1 - type: Transform - - uid: 1936 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,57.5 - parent: 1 - type: Transform - - uid: 1937 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,56.5 - parent: 1 - type: Transform - - uid: 4071 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,27.5 - parent: 1 - type: Transform - - uid: 5773 - components: - - rot: 3.141592653589793 rad - pos: 1.5,80.5 - parent: 1 - type: Transform - - uid: 5774 - components: - - rot: 3.141592653589793 rad - pos: -1.5,80.5 - parent: 1 - type: Transform - - uid: 6953 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,26.5 - parent: 1 - type: Transform - - uid: 8117 - components: - - rot: 3.141592653589793 rad - pos: 12.5,55.5 - parent: 1 - type: Transform - - uid: 8118 - components: - - rot: 3.141592653589793 rad - pos: 7.5,55.5 - parent: 1 - type: Transform - - uid: 8125 - components: - - rot: 3.141592653589793 rad - pos: 8.5,55.5 - parent: 1 - type: Transform - - uid: 8126 - components: - - rot: 3.141592653589793 rad - pos: 9.5,55.5 - parent: 1 - type: Transform - - uid: 8437 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,61.5 - parent: 1 - type: Transform - - uid: 8508 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,29.5 - parent: 1 - type: Transform - - uid: 8509 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,28.5 - parent: 1 - type: Transform - - uid: 9053 - components: - - pos: -3.5,85.5 - parent: 1 - type: Transform - - uid: 9054 - components: - - pos: -2.5,85.5 - parent: 1 - type: Transform - - uid: 9055 - components: - - pos: -1.5,85.5 - parent: 1 - type: Transform - - uid: 9056 - components: - - pos: 0.5,85.5 - parent: 1 - type: Transform - - uid: 9057 - components: - - pos: 1.5,85.5 - parent: 1 - type: Transform - - uid: 9058 - components: - - pos: 2.5,85.5 - parent: 1 - type: Transform - - uid: 9059 - components: - - pos: 4.5,84.5 - parent: 1 - type: Transform - - uid: 9060 - components: - - pos: 5.5,84.5 - parent: 1 - type: Transform - - uid: 9061 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,82.5 - parent: 1 - type: Transform - - uid: 9062 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,80.5 - parent: 1 - type: Transform - - uid: 9063 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,79.5 - parent: 1 - type: Transform - - uid: 9064 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,77.5 - parent: 1 - type: Transform - - uid: 9065 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,76.5 - parent: 1 - type: Transform - - uid: 9066 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,76.5 - parent: 1 - type: Transform - - uid: 9067 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,77.5 - parent: 1 - type: Transform - - uid: 9068 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,79.5 - parent: 1 - type: Transform - - uid: 9069 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,80.5 - parent: 1 - type: Transform - - uid: 9070 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,82.5 - parent: 1 - type: Transform - - uid: 9071 - components: - - pos: -6.5,84.5 - parent: 1 - type: Transform - - uid: 9072 - components: - - pos: -5.5,84.5 - parent: 1 - type: Transform - - uid: 9506 - components: - - pos: 14.5,60.5 - parent: 1 - type: Transform - - uid: 9513 - components: - - rot: 3.141592653589793 rad - pos: 13.5,55.5 - parent: 1 - type: Transform - - uid: 9514 - components: - - rot: 3.141592653589793 rad - pos: 14.5,55.5 - parent: 1 - type: Transform - - uid: 17891 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-13.5 - parent: 1 - type: Transform - - uid: 18442 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-13.5 - parent: 1 - type: Transform - - uid: 18443 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-13.5 - parent: 1 - type: Transform - - uid: 18444 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-13.5 - parent: 1 - type: Transform - - uid: 18445 - components: - - rot: 3.141592653589793 rad - pos: 22.5,-13.5 - parent: 1 - type: Transform - - uid: 18448 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-13.5 - parent: 1 - type: Transform -- proto: Wirecutter - entities: - - uid: 13445 - components: - - pos: -37.329777,54.494305 - parent: 1 - type: Transform -- proto: WoodDoor - entities: - - uid: 253 - components: - - pos: -29.5,10.5 - parent: 1 - type: Transform - - uid: 2875 - components: - - pos: -23.5,12.5 - parent: 1 - type: Transform - - uid: 3180 - components: - - pos: 44.5,46.5 - parent: 1 - type: Transform - - uid: 3232 - components: - - rot: 3.141592653589793 rad - pos: 26.5,47.5 - parent: 1 - type: Transform -- proto: Wrench - entities: - - uid: 3444 - components: - - pos: -10.675615,34.54656 - parent: 1 - type: Transform - - uid: 4160 - components: - - pos: 9.545816,34.51422 - parent: 1 - type: Transform - - uid: 13886 - components: - - pos: 20.623508,52.47136 - parent: 1 - type: Transform -- proto: Zipties - entities: - - uid: 9422 - components: - - pos: 41.421097,42.74209 - parent: 1 - type: Transform - - uid: 9423 - components: - - pos: 41.671097,42.596256 - parent: 1 - type: Transform -- proto: ZiptiesBroken - entities: - - uid: 10113 - components: - - pos: 17.425484,-37.18814 - parent: 1 - type: Transform -... +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 1: FloorArcadeBlue + 14: FloorBlueCircuit + 17: FloorCarpetClown + 22: FloorDark + 23: FloorDarkDiagonal + 25: FloorDarkHerringbone + 26: FloorDarkMini + 27: FloorDarkMono + 29: FloorDarkPavement + 30: FloorDarkPavementVertical + 31: FloorDarkPlastic + 33: FloorDirt + 34: FloorEighties + 37: FloorFreezer + 38: FloorGlass + 41: FloorGrassDark + 44: FloorGreenCircuit + 48: FloorHydro + 51: FloorLino + 53: FloorMetalDiamond + 54: FloorMime + 55: FloorMono + 58: FloorPlastic + 60: FloorReinforced + 71: FloorSteel + 73: FloorSteelCheckerLight + 76: FloorSteelDirty + 77: FloorSteelHerringbone + 78: FloorSteelMini + 79: FloorSteelMono + 80: FloorSteelOffset + 81: FloorSteelPavement + 82: FloorSteelPavementVertical + 83: FloorTechMaint + 84: FloorTechMaint2 + 87: FloorWhite + 88: FloorWhiteDiagonal + 89: FloorWhiteDiagonalMini + 91: FloorWhiteMini + 92: FloorWhiteMono + 96: FloorWhitePlastic + 97: FloorWood + 98: FloorWoodTile + 99: Lattice + 100: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + - pos: 0.13793182,0.57805127 + parent: 6526 + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: ZAAAAAAATwAAAAACTwAAAAABRwAAAAADRwAAAAADRwAAAAABRwAAAAABRwAAAAADRwAAAAABVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAACTwAAAAAATgAAAAAATgAAAAADTgAAAAADTgAAAAADRwAAAAABTwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABTgAAAAACTgAAAAAATgAAAAABTgAAAAADRwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAADRwAAAAAAZAAAAAAATwAAAAADTwAAAAACTgAAAAAATgAAAAABTgAAAAADTgAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAABJgAAAAAARwAAAAADRwAAAAABJgAAAAAAZAAAAAAATwAAAAAATwAAAAABRwAAAAABRwAAAAADRwAAAAABRwAAAAADRwAAAAADRwAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAADRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAADTwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAADZAAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAABRwAAAAABRwAAAAADRwAAAAABRwAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAADRwAAAAADRwAAAAABRwAAAAABRwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAABJgAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAABZAAAAAAAZAAAAAAAIgAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAABFgAAAAAAFgAAAAABFgAAAAADFgAAAAACFgAAAAACFgAAAAABFgAAAAADFgAAAAADFgAAAAADFgAAAAADFgAAAAAAIgAAAAAAZAAAAAAAFgAAAAACJgAAAAAAFgAAAAACFgAAAAABJgAAAAAAFgAAAAAAFgAAAAABJgAAAAAAFgAAAAAAFgAAAAADJgAAAAAAFgAAAAAAFgAAAAACJgAAAAAAIgAAAAAAIgAAAAAAFgAAAAACFgAAAAAAFgAAAAABFgAAAAACFgAAAAAAFgAAAAABFgAAAAABFgAAAAABFgAAAAADFgAAAAADFgAAAAACFgAAAAADFgAAAAAAFgAAAAABIgAAAAAAZAAAAAAAFgAAAAABJgAAAAAAFgAAAAABFgAAAAACJgAAAAAAFgAAAAABFgAAAAACJgAAAAAAFgAAAAADFgAAAAABJgAAAAAAFgAAAAABFgAAAAADJgAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAAAFgAAAAADFgAAAAADFgAAAAACFgAAAAAAFgAAAAACFgAAAAADFgAAAAAAFgAAAAADFgAAAAADFgAAAAADFgAAAAADEQAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAADFgAAAAAAFgAAAAADFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAADFgAAAAADFgAAAAAAFgAAAAADFgAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: EQAAAAAAEQAAAAAAFgAAAAADJgAAAAAAFgAAAAACFgAAAAADJgAAAAAAFgAAAAADFgAAAAADJgAAAAAAFgAAAAACFgAAAAAAZAAAAAAAFgAAAAADFgAAAAABJgAAAAAAEQAAAAAAZAAAAAAAGwAAAAACFgAAAAABFgAAAAAAFgAAAAABFgAAAAADFgAAAAABFgAAAAACFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAADFgAAAAAAFgAAAAADFgAAAAADZAAAAAAAZAAAAAAAFgAAAAACJgAAAAAAFgAAAAACFgAAAAABJgAAAAAAFgAAAAAAFgAAAAAAJgAAAAAAFgAAAAADFgAAAAADJgAAAAAAFgAAAAADFgAAAAACJgAAAAAANgAAAAAAZAAAAAAAFgAAAAABFgAAAAACFgAAAAACFgAAAAABFgAAAAAAFgAAAAACFgAAAAAAFgAAAAABFgAAAAAAFgAAAAADFgAAAAACFgAAAAADFgAAAAABFgAAAAADNgAAAAAANgAAAAAAFgAAAAADFgAAAAADFgAAAAADFgAAAAAAYQAAAAADYQAAAAABYQAAAAACYQAAAAAAYQAAAAABYQAAAAADFgAAAAABFgAAAAACFgAAAAABFgAAAAABNgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAAAYQAAAAADYQAAAAABYQAAAAADYQAAAAACJgAAAAAAFgAAAAADFgAAAAACJgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAACYQAAAAABYQAAAAAAYQAAAAADYQAAAAACYQAAAAABYQAAAAABFgAAAAABFgAAAAABFgAAAAACFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAADYQAAAAADYQAAAAACYQAAAAABYQAAAAAAYQAAAAAAYQAAAAABJgAAAAAAFgAAAAABFgAAAAADJgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAAAYQAAAAACYQAAAAABYQAAAAABYQAAAAABYQAAAAADYQAAAAAAFgAAAAABFgAAAAACFgAAAAABFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAABFgAAAAABFgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAFgAAAAAAJgAAAAAAFgAAAAADFgAAAAACJgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAAAFgAAAAACFgAAAAADVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAACTwAAAAABZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAADRwAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAACRwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAADRwAAAAADRwAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAADRwAAAAAD + version: 6 + 0,-1: + ind: 0,-1 + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAAARwAAAAACZAAAAAAADgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAATgAAAAADTgAAAAACTgAAAAABTgAAAAABRwAAAAABRwAAAAABZAAAAAAAGwAAAAACRwAAAAADRwAAAAADRwAAAAADRwAAAAADRwAAAAACRwAAAAADRwAAAAADRwAAAAABTgAAAAABTgAAAAACTgAAAAABTgAAAAADRwAAAAAARwAAAAABZAAAAAAADgAAAAAARwAAAAAARwAAAAACJgAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAACTgAAAAACTgAAAAAATgAAAAACTgAAAAAARwAAAAADRwAAAAADZAAAAAAAUwAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAABZAAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAAAZAAAAAAAUwAAAAAARwAAAAABZAAAAAAARwAAAAACRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAADTwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAABRwAAAAABRwAAAAADRwAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAACRwAAAAAARwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAADRwAAAAADRwAAAAACRwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAADRwAAAAABRwAAAAADRwAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAACRwAAAAAARwAAAAABZAAAAAAAFgAAAAACFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAACFgAAAAAAZAAAAAAAGwAAAAADFgAAAAABZAAAAAAAFgAAAAACFgAAAAACFgAAAAABFgAAAAAAZAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADJgAAAAAAFgAAAAADTwAAAAABVwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAACFgAAAAAAZAAAAAAAVwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAACJgAAAAAAFgAAAAAAZAAAAAAAVwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAACFgAAAAAAFgAAAAAAZAAAAAAAVwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAABFgAAAAADZAAAAAAAVwAAAAAASQAAAAAASQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: FgAAAAADFgAAAAACJgAAAAAAFgAAAAACZAAAAAAAVwAAAAAASQAAAAAASQAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAFgAAAAAAFgAAAAAAFgAAAAADFgAAAAACZAAAAAAAVwAAAAAASQAAAAAASQAAAAAAVwAAAAAAZAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAFgAAAAABFgAAAAADJgAAAAAAGwAAAAABZAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAZAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAVAAAAAAAZAAAAAAAUwAAAAAAFgAAAAAAFgAAAAABFgAAAAACFgAAAAAATwAAAAABZAAAAAAAFgAAAAADFgAAAAADFgAAAAACZAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAADFgAAAAADFgAAAAADZAAAAAAAFgAAAAADFgAAAAACFgAAAAADFgAAAAADZAAAAAAAZAAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAABJgAAAAAAFgAAAAAAGwAAAAAAFgAAAAADFgAAAAABFgAAAAACFgAAAAADFgAAAAADFgAAAAABFgAAAAABZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAABFgAAAAADFgAAAAADZAAAAAAAFgAAAAAAFgAAAAACGgAAAAADGgAAAAADGgAAAAACFgAAAAACFgAAAAABVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAABJgAAAAAAFgAAAAADZAAAAAAAFgAAAAACFgAAAAACGgAAAAAAGgAAAAABGgAAAAADFgAAAAACGwAAAAABZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAAAZAAAAAAAFgAAAAABFgAAAAABGgAAAAAAGgAAAAABGgAAAAACFgAAAAABFgAAAAABZAAAAAAARwAAAAAARwAAAAAARwAAAAADFgAAAAADFgAAAAADFgAAAAABFgAAAAABZAAAAAAAFgAAAAACFgAAAAABGgAAAAADGgAAAAABGgAAAAAAFgAAAAADFgAAAAADTwAAAAACRwAAAAAARwAAAAADRwAAAAACFgAAAAAAFgAAAAACJgAAAAAAFgAAAAADZAAAAAAAFgAAAAAAFgAAAAABFgAAAAACFgAAAAADFgAAAAADFgAAAAACFgAAAAACZAAAAAAARwAAAAABRwAAAAAARwAAAAAAFgAAAAAAFgAAAAACFgAAAAABFgAAAAADZAAAAAAAFgAAAAADFgAAAAADFgAAAAAAFgAAAAACFgAAAAACFgAAAAADFgAAAAADZAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAZAAAAAAATwAAAAACTwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAABRwAAAAADRwAAAAADRwAAAAADRwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAAD + version: 6 + -1,1: + ind: -1,1 + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAADZAAAAAAARwAAAAACRwAAAAACFgAAAAACGwAAAAADZAAAAAAARwAAAAABRwAAAAACGwAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAADRwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAACRwAAAAADFgAAAAACGwAAAAACZAAAAAAARwAAAAABRwAAAAADGwAAAAABGwAAAAAAGwAAAAADGwAAAAABGwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAABJgAAAAAAFgAAAAAAGwAAAAACZAAAAAAARwAAAAADRwAAAAADZAAAAAAAWwAAAAAAWwAAAAACWwAAAAACZAAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAACFgAAAAADGwAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACFgAAAAABZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAACZAAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAACZAAAAAAARwAAAAADJgAAAAAAFgAAAAACZAAAAAAAGgAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAADTwAAAAABVwAAAAACWwAAAAABWwAAAAABWwAAAAAAVwAAAAADZAAAAAAARwAAAAACRwAAAAACZAAAAAAAZAAAAAAAGgAAAAACRwAAAAACRwAAAAAARwAAAAACTwAAAAACZAAAAAAAVwAAAAACWwAAAAACWwAAAAADWwAAAAACVwAAAAABZAAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAACRwAAAAACRwAAAAAAZAAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAABVwAAAAADZAAAAAAARwAAAAACJgAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAAGwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAABZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAACWwAAAAADFgAAAAABFgAAAAADZAAAAAAAFgAAAAABFgAAAAACFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAARwAAAAACJgAAAAAAWwAAAAADFgAAAAACFgAAAAABZAAAAAAAFgAAAAADFgAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAARwAAAAAARwAAAAACFgAAAAADGwAAAAACZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAARwAAAAACRwAAAAADTwAAAAAARwAAAAABRwAAAAAAZAAAAAAAFgAAAAADFgAAAAACFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAARwAAAAADJgAAAAAARwAAAAAARwAAAAADRwAAAAADZAAAAAAAFgAAAAABFgAAAAACFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAARwAAAAAARwAAAAAB + version: 6 + 0,1: + ind: 0,1 + tiles: RwAAAAADZAAAAAAARwAAAAABRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAABRwAAAAAAXAAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAADVwAAAAABVwAAAAABVwAAAAACVwAAAAACVwAAAAABVwAAAAADRwAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAADXAAAAAACVwAAAAADVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAVwAAAAACVwAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAAARwAAAAAAZAAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAABVwAAAAABVwAAAAACVwAAAAADVwAAAAACVwAAAAABVwAAAAABRwAAAAACZAAAAAAAZAAAAAAARwAAAAAARwAAAAACZAAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAACVwAAAAADRwAAAAACZAAAAAAAVwAAAAABVwAAAAADVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXAAAAAABZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAARwAAAAACZAAAAAAAVwAAAAAAWwAAAAAAWwAAAAADVwAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAADVwAAAAABVwAAAAAAVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAVwAAAAABWwAAAAABWwAAAAAAWwAAAAACVwAAAAABVwAAAAADVwAAAAABVwAAAAABVwAAAAADWAAAAAACVwAAAAACZAAAAAAAVAAAAAAAZAAAAAAARwAAAAADZAAAAAAAVwAAAAABWwAAAAADWwAAAAADWwAAAAACVwAAAAADVwAAAAADVwAAAAADZAAAAAAAVwAAAAACWAAAAAABVwAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAWAAAAAAAVwAAAAACZAAAAAAAUwAAAAAAUwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXAAAAAACZAAAAAAAVwAAAAAAVwAAAAAAVwAAAAADWAAAAAAAVwAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAZAAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAWAAAAAAAVwAAAAABZAAAAAAAVwAAAAADVwAAAAABRwAAAAADZAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAZAAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAADXAAAAAACVwAAAAACWQAAAAADRwAAAAADZAAAAAAAWwAAAAAAWwAAAAAAVwAAAAADZAAAAAAAXAAAAAADXAAAAAACZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAVwAAAAADRwAAAAABZAAAAAAAWwAAAAAAWwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAADZAAAAAAAFgAAAAABFgAAAAACFgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAWwAAAAAAWwAAAAAAWAAAAAABWAAAAAADWAAAAAABVwAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAABFgAAAAACGwAAAAADYQAAAAAAYQAAAAAC + version: 6 + 1,0: + ind: 1,0 + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAAJgAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAARwAAAAACZAAAAAAARwAAAAAARwAAAAAARwAAAAADZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAARwAAAAACTwAAAAACTwAAAAABRwAAAAACRwAAAAAARwAAAAADZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAATwAAAAACZAAAAAAARwAAAAABRwAAAAABJgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAATwAAAAADZAAAAAAARwAAAAACRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAATwAAAAABTwAAAAADRwAAAAADRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACJgAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAACYQAAAAADYQAAAAACYQAAAAADZAAAAAAARwAAAAAARwAAAAACRwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAYQAAAAABYQAAAAABYQAAAAABYQAAAAACYQAAAAAAFgAAAAAARwAAAAABRwAAAAADJgAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAYQAAAAAAYQAAAAABYQAAAAAAYQAAAAACYQAAAAABZAAAAAAARwAAAAABRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAADRwAAAAACRwAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAAAJgAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAACRwAAAAACRwAAAAACRwAAAAADRwAAAAADRwAAAAAARwAAAAAC + version: 6 + 1,-1: + ind: 1,-1 + tiles: DgAAAAAADgAAAAAAGgAAAAAAGgAAAAABDgAAAAAADgAAAAAADgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAAAGwAAAAABGgAAAAADGgAAAAABGwAAAAAAGwAAAAABGwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAADgAAAAAADgAAAAAAGgAAAAACGgAAAAABDgAAAAAADgAAAAAADgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAACFgAAAAACZAAAAAAAUwAAAAAAFgAAAAABGwAAAAABGwAAAAABFgAAAAACUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAACFgAAAAAAFgAAAAABZAAAAAAAUwAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAABUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAACFgAAAAAAFgAAAAACFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAABGwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAGwAAAAABZAAAAAAARwAAAAABRwAAAAADZAAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAADRwAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAACRwAAAAAARwAAAAAAJgAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAATwAAAAADZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAAAMAAAAAAARwAAAAABMAAAAAAARwAAAAAAMAAAAAAARwAAAAAAMAAAAAAAZAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAABMAAAAAAARwAAAAADMAAAAAAARwAAAAAAMAAAAAAARwAAAAAAZAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAZAAAAAAARwAAAAACRwAAAAABJgAAAAAAMAAAAAAATwAAAAAAMAAAAAAARwAAAAAAMAAAAAAARwAAAAABMAAAAAAAZAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAADZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAARwAAAAADMAAAAAAARwAAAAAAZAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAACZAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAZAAAAAAARwAAAAAARwAAAAABJgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAAB + version: 6 + 1,1: + ind: 1,1 + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAAATwAAAAAATwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAACVwAAAAABZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUQAAAAABUQAAAAAAUQAAAAACUQAAAAADTQAAAAABKQAAAAABKQAAAAACZAAAAAAARwAAAAAARwAAAAADRwAAAAAAVwAAAAACZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUQAAAAABUQAAAAADUQAAAAACTQAAAAADTQAAAAACKQAAAAADKQAAAAADZAAAAAAARwAAAAABRwAAAAABJgAAAAAAVwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUQAAAAABUQAAAAAATQAAAAACTQAAAAADTQAAAAACUgAAAAABUgAAAAABTwAAAAAARwAAAAAARwAAAAADRwAAAAABVwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAKQAAAAADKQAAAAABKQAAAAABTQAAAAABUgAAAAACUgAAAAACUgAAAAACTwAAAAAARwAAAAADRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAKQAAAAACKQAAAAABKQAAAAACUgAAAAABUgAAAAABUgAAAAABUgAAAAADTwAAAAACRwAAAAACRwAAAAACJgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAKQAAAAADKQAAAAAAKQAAAAABUgAAAAAAUgAAAAACUgAAAAABUgAAAAADZAAAAAAARwAAAAABRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUgAAAAACTwAAAAABZAAAAAAARwAAAAADRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADJgAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAYAAAAAACYAAAAAABYAAAAAADHwAAAAADHwAAAAACZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAATwAAAAADRwAAAAACRwAAAAADRwAAAAABRwAAAAACVwAAAAAAZAAAAAAAYAAAAAABYAAAAAAAYAAAAAACHwAAAAACHwAAAAACVAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAACJgAAAAAAVwAAAAADXAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAHwAAAAADHwAAAAADZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAABRwAAAAACXAAAAAABZAAAAAAAYAAAAAADYAAAAAACYAAAAAACHwAAAAACHwAAAAABZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAAJgAAAAAAYQAAAAACZAAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAABZAAAAAAATwAAAAAARwAAAAABTwAAAAADTwAAAAACTwAAAAADZAAAAAAARwAAAAAARwAAAAABRwAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAFgAAAAADZAAAAAAARwAAAAABRwAAAAABRwAAAAACUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAAAJQAAAAAAJQAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAATwAAAAACTwAAAAACRwAAAAAARwAAAAABRwAAAAADJQAAAAAAJQAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAADRwAAAAADRwAAAAACRwAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAACRwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAACJgAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAACRwAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAABRwAAAAABRwAAAAACRwAAAAACRwAAAAABRwAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAIgAAAAAAIgAAAAAAJgAAAAAARwAAAAACZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAIgAAAAAAIgAAAAAARwAAAAABRwAAAAABZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAIgAAAAAAIgAAAAAARwAAAAAARwAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAJgAAAAAARwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAEQAAAAAAEQAAAAAA + version: 6 + -2,1: + ind: -2,1 + tiles: RwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAARwAAAAACRwAAAAACZAAAAAAAFgAAAAAAFgAAAAACFgAAAAABJgAAAAAARwAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACGwAAAAAAFgAAAAADFgAAAAABFgAAAAADRwAAAAABRwAAAAABZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAAAYQAAAAADZAAAAAAARwAAAAACRwAAAAABGwAAAAABFgAAAAACFgAAAAAAFgAAAAABRwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAAAYQAAAAADZAAAAAAARwAAAAABRwAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAADJgAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAAAZAAAAAAARwAAAAACRwAAAAABZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAACRwAAAAADTwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAARwAAAAADRwAAAAADGgAAAAACZAAAAAAAFgAAAAABFgAAAAABRwAAAAADRwAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAARwAAAAACRwAAAAABGgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAJgAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAACRwAAAAABRwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAJgAAAAAARwAAAAACZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAAARwAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAJgAAAAAARwAAAAACRwAAAAAARwAAAAADUAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAABRwAAAAABZAAAAAAARwAAAAACUAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: RwAAAAABRwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAEQAAAAAAEQAAAAAAJgAAAAAARwAAAAACVAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAEQAAAAAAEQAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAOgAAAAACNgAAAAAAJgAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAOgAAAAAANgAAAAAARwAAAAABRwAAAAABZAAAAAAAFgAAAAAAYQAAAAABYQAAAAADYQAAAAACYQAAAAABYQAAAAABYQAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAVAAAAAAAOgAAAAADNgAAAAAARwAAAAADRwAAAAAAZAAAAAAAFgAAAAAAYQAAAAABYQAAAAADYQAAAAACYQAAAAABYQAAAAAAYQAAAAABZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAJgAAAAAARwAAAAACZAAAAAAAFgAAAAAAYQAAAAABYQAAAAABYQAAAAACYQAAAAAAYQAAAAAAYQAAAAACVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACZAAAAAAAFgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAABYQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABZAAAAAAAFgAAAAAAYQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAABZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAJgAAAAAARwAAAAABFgAAAAAAFgAAAAAAYQAAAAAAYQAAAAADYQAAAAABYQAAAAABYQAAAAADYQAAAAADZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAAARwAAAAACZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAUwAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAADRwAAAAACRwAAAAADJgAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAACRwAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAAD + version: 6 + 2,-1: + ind: 2,-1 + tiles: ZAAAAAAAZAAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAABZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAABRwAAAAACRwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAAARwAAAAABRwAAAAABRwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADRwAAAAADZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABRwAAAAABRwAAAAACZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: RwAAAAAARwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAABRwAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAABRwAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADTwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAADRwAAAAABRwAAAAAARwAAAAABRwAAAAACRwAAAAADRwAAAAACRwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAADRwAAAAACRwAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAAD + version: 6 + 2,1: + ind: 2,1 + tiles: RwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAARwAAAAADZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,-1: + ind: -3,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAACRwAAAAAATAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAGwAAAAACGwAAAAACPAAAAAAAPAAAAAAAGwAAAAACGwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAFgAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAADGwAAAAACPAAAAAAAPAAAAAAAGwAAAAABGwAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAACGwAAAAADPAAAAAAAPAAAAAAAGwAAAAAAGwAAAAAAZAAAAAAAFgAAAAADFgAAAAABFgAAAAABZAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAGwAAAAABGwAAAAADPAAAAAAAPAAAAAAAGwAAAAABGwAAAAADZAAAAAAAFgAAAAACFgAAAAACFgAAAAACGwAAAAADRwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAABGwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAAAZAAAAAAARwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAACTwAAAAACZAAAAAAAFgAAAAACFgAAAAAAFgAAAAACRwAAAAADRwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAACGwAAAAACFgAAAAADFgAAAAABFgAAAAADRwAAAAABRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAABRwAAAAACZAAAAAAAFgAAAAAAFgAAAAADFgAAAAAAZAAAAAAARwAAAAAC + version: 6 + -3,0: + ind: -3,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAADRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAABTwAAAAABRwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAACZAAAAAAARwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAABRwAAAAACRwAAAAADRwAAAAACRwAAAAAARwAAAAABRwAAAAAAZAAAAAAARwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAACZAAAAAAATwAAAAACZAAAAAAAZAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAABRwAAAAADRwAAAAADRwAAAAACZAAAAAAARwAAAAACRwAAAAABTwAAAAABRwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAADTwAAAAABRwAAAAACRwAAAAADZAAAAAAATwAAAAADRwAAAAACTwAAAAACRwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAABRwAAAAADRwAAAAADRwAAAAABRwAAAAACRwAAAAACRwAAAAABTwAAAAACRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYQAAAAADYQAAAAACZAAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAADRwAAAAAATwAAAAAARwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYQAAAAACYQAAAAABZAAAAAAARwAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYQAAAAADYQAAAAACTwAAAAABRwAAAAABRwAAAAAARwAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAAAZAAAAAAARwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYQAAAAABYQAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAADGwAAAAABFgAAAAABFgAAAAABFgAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAADZAAAAAAARwAAAAABRwAAAAABRwAAAAACZAAAAAAAFgAAAAABFgAAAAAAFgAAAAACZAAAAAAARwAAAAAARwAAAAADRwAAAAACTwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAADRwAAAAACRwAAAAADRwAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAADRwAAAAADRwAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAABRwAAAAAARwAAAAABRwAAAAADRwAAAAAD + version: 6 + -3,1: + ind: -3,1 + tiles: HQAAAAAAHQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAAAZAAAAAAAFgAAAAAAGwAAAAABZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAABZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAARwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAADFgAAAAABFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAABFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAADFgAAAAADFgAAAAACFgAAAAABFgAAAAACFgAAAAACVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAGwAAAAADGwAAAAADGwAAAAACFgAAAAACFgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAADFgAAAAACFgAAAAADFgAAAAAAFgAAAAABFgAAAAADFgAAAAADZAAAAAAAZAAAAAAAVAAAAAAARwAAAAADAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAGwAAAAAAGwAAAAAAGwAAAAADFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAADFgAAAAADFgAAAAADFgAAAAAAFgAAAAAAFgAAAAABFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAADFgAAAAABFgAAAAABFgAAAAADFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABAAAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAABFgAAAAAAFgAAAAACFgAAAAAAFgAAAAACFgAAAAADFgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACAAAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAABFgAAAAADFgAAAAACFgAAAAACFgAAAAACFgAAAAACFgAAAAABFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAACZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAAB + version: 6 + 3,0: + ind: 3,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABRwAAAAADVAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAADVAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,1: + ind: 3,1 + tiles: VAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,2: + ind: 2,2 + tiles: RwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAABRwAAAAACRwAAAAADRwAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAABZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAAARwAAAAACRwAAAAADRwAAAAACKQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAADRwAAAAAARwAAAAABRwAAAAAAKQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADZAAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAABFgAAAAABZAAAAAAARwAAAAACRwAAAAACFgAAAAACFgAAAAABJgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAFgAAAAACFgAAAAADFgAAAAACFgAAAAAAGwAAAAABRwAAAAACRwAAAAADFgAAAAACFgAAAAACFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAABFgAAAAAAZAAAAAAARwAAAAACRwAAAAADFgAAAAADFgAAAAACJgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAACFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAACYQAAAAADYQAAAAABYQAAAAABYQAAAAADYQAAAAABZAAAAAAAHQAAAAADHQAAAAACJgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAACYQAAAAACYQAAAAADZAAAAAAAYQAAAAACYQAAAAACZAAAAAAA + version: 6 + 3,2: + ind: 3,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADRwAAAAADVAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADRwAAAAABVAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAADZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: YQAAAAADZAAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAACZAAAAAAATwAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAADTwAAAAAARwAAAAACRwAAAAABRwAAAAAAYQAAAAACZAAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAABZAAAAAAATwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAABTwAAAAABRwAAAAADRwAAAAAAJgAAAAAAYQAAAAAAZAAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAZAAAAAAATwAAAAACRwAAAAACRwAAAAACRwAAAAAATwAAAAABZAAAAAAARwAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAABTwAAAAADZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAABTwAAAAACRwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAADRwAAAAACRwAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAABRwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAADRwAAAAABRwAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAACJgAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAABZAAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAABTwAAAAACZAAAAAAARwAAAAABRwAAAAAAWwAAAAADWwAAAAACWwAAAAABRwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAKQAAAAACUgAAAAAAUgAAAAACZAAAAAAARwAAAAADRwAAAAACWwAAAAACWwAAAAACWwAAAAABRwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAKQAAAAABUgAAAAAAUgAAAAABZAAAAAAARwAAAAADRwAAAAADWwAAAAAAWwAAAAABWwAAAAAARwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAACTwAAAAADZAAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAJgAAAAAAFgAAAAABFgAAAAABHgAAAAACHgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAACHgAAAAACHgAAAAABYAAAAAAAYAAAAAACYAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAJgAAAAAAFgAAAAABFgAAAAAAHgAAAAABHgAAAAABZAAAAAAAYAAAAAADYAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAHgAAAAADHgAAAAADZAAAAAAAYAAAAAACYAAAAAACZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAADYQAAAAABJgAAAAAAHQAAAAADHQAAAAADGQAAAAAAGQAAAAAA + version: 6 + 3,-1: + ind: 3,-1 + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABRwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADRwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADRwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAADZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,-1: + ind: -4,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,0: + ind: -4,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAARwAAAAACRwAAAAACRwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAARwAAAAACRwAAAAADRwAAAAAA + version: 6 + -4,1: + ind: -4,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHQAAAAABHQAAAAADHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: RwAAAAAAZAAAAAAAWwAAAAAAWwAAAAAAWAAAAAACWAAAAAADWAAAAAAAVwAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAABFgAAAAABZAAAAAAAYQAAAAACYQAAAAACRwAAAAACZAAAAAAAWwAAAAAAWwAAAAAAWAAAAAADWAAAAAAAWAAAAAADVwAAAAADZAAAAAAAFgAAAAADFgAAAAADFgAAAAACFgAAAAACZAAAAAAAYQAAAAABYQAAAAACRwAAAAAAZAAAAAAAWwAAAAAAWwAAAAAAVwAAAAAAVwAAAAADVwAAAAADXAAAAAADZAAAAAAAFgAAAAADFgAAAAAAFgAAAAACFgAAAAAAZAAAAAAAYQAAAAADYQAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAADRwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAADRwAAAAADRwAAAAADRwAAAAADRwAAAAABRwAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAACRwAAAAABRwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAADVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAARwAAAAABRwAAAAABRwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAADZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAADYQAAAAADRwAAAAAARwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAALAAAAAAALAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAAAGwAAAAADFgAAAAABGwAAAAAAGgAAAAADGgAAAAABZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAABGwAAAAADFgAAAAADGwAAAAABGgAAAAADGgAAAAABZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAB + version: 6 + -1,2: + ind: -1,2 + tiles: NQAAAAAANQAAAAAANQAAAAAAZAAAAAAAFgAAAAADFgAAAAABFgAAAAABZAAAAAAAFgAAAAAAFgAAAAABFgAAAAACZAAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAADNQAAAAAANQAAAAAANQAAAAAAZAAAAAAAFgAAAAAAFgAAAAACFgAAAAABGwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAARwAAAAADJgAAAAAANQAAAAAANQAAAAAANQAAAAAAZAAAAAAAFgAAAAADFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAARwAAAAAARwAAAAADTwAAAAAATwAAAAACTwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAACRwAAAAACRwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAACRwAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAACZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAADZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAARwAAAAADJgAAAAAARwAAAAABZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAABRwAAAAABRwAAAAACRwAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAADZAAAAAAARwAAAAACJgAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAABZAAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAADRwAAAAADRwAAAAADRwAAAAACRwAAAAADZAAAAAAARwAAAAAAJgAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAD + version: 6 + -2,2: + ind: -2,2 + tiles: RwAAAAABRwAAAAADZAAAAAAARwAAAAAAUAAAAAAARwAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAADRwAAAAACRwAAAAACJgAAAAAARwAAAAABRwAAAAADRwAAAAAAUAAAAAAARwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAABZAAAAAAARwAAAAAARwAAAAADRwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAABZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAAARwAAAAAAJgAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAABRwAAAAACTwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAABTAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAACZAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAVAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAACTAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAABZAAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAAATAAAAAAATAAAAAAAGwAAAAADFgAAAAABFgAAAAAAGwAAAAABFgAAAAADFgAAAAABGwAAAAADGwAAAAABGwAAAAABGwAAAAABRwAAAAAARwAAAAABRwAAAAAARwAAAAAA + version: 6 + -3,2: + ind: -3,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAARwAAAAABHQAAAAACHQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAACRwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAKQAAAAABKQAAAAACKQAAAAABKQAAAAADRwAAAAACRwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAACRwAAAAADRwAAAAACZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAADZAAAAAAAYwAAAAAAZAAAAAAAYQAAAAADYQAAAAADZAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAADRwAAAAACRwAAAAACZAAAAAAAYwAAAAAAZAAAAAAAYQAAAAABYQAAAAACYQAAAAACTAAAAAAATAAAAAAATAAAAAAATAAAAAAARwAAAAAARwAAAAADTwAAAAACRwAAAAADVAAAAAAARwAAAAACZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAIQAAAAAATAAAAAAAIQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYQAAAAADYQAAAAACYQAAAAABTAAAAAAAIQAAAAADTAAAAAAAIQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYQAAAAACYQAAAAADZAAAAAAATAAAAAAAIQAAAAABTAAAAAAAIQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAA + version: 6 + -4,2: + ind: -4,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHQAAAAABHQAAAAAAHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAARwAAAAACRwAAAAABRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAARwAAAAAARwAAAAABRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAARwAAAAAARwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAACRwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAACRwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: YwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAACGwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAATwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAADZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAACFgAAAAABZAAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAACRwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAFgAAAAAAGgAAAAACGgAAAAAAFgAAAAADTwAAAAABRwAAAAACRwAAAAACRwAAAAABRwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAFgAAAAABGgAAAAABGgAAAAAAFgAAAAAATwAAAAABRwAAAAABRwAAAAADRwAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAACFgAAAAACZAAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAABGwAAAAABGwAAAAABZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAABGwAAAAADZAAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAFgAAAAABFgAAAAADFgAAAAAAFgAAAAAATwAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAAARwAAAAADZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAATwAAAAADTwAAAAABZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAFgAAAAABFgAAAAADFgAAAAABFgAAAAABUwAAAAAAZAAAAAAAUwAAAAAAFgAAAAAAFgAAAAADUwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAABUwAAAAAAZAAAAAAAUwAAAAAAFgAAAAACFgAAAAABUwAAAAAAZAAAAAAADgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAACTwAAAAABZAAAAAAAZAAAAAAAGwAAAAAB + version: 6 + -1,-2: + ind: -1,-2 + tiles: ZAAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAAAGwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAADGwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAFgAAAAABFgAAAAACFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAACFgAAAAABFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAABFgAAAAACFgAAAAADGwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAADFgAAAAAAFgAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + version: 6 + -3,3: + ind: -3,3 + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADZAAAAAAAYQAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAADZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACZAAAAAAAYQAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAABZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,3: + ind: -4,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,3: + ind: -2,3 + tiles: TAAAAAAATAAAAAAAGwAAAAACFgAAAAACFgAAAAABGwAAAAAAFgAAAAAAFgAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAADTAAAAAAATAAAAAAAZAAAAAAAGwAAAAACGwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAACZAAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAVAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAACYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAATwAAAAAARwAAAAABZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADYQAAAAADZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAVAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYQAAAAABYQAAAAAAYQAAAAADZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAFgAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAFgAAAAABYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + version: 6 + -1,3: + ind: -1,3 + tiles: ZAAAAAAAFgAAAAABFgAAAAAAFgAAAAADFgAAAAADRwAAAAABRwAAAAABRwAAAAABRwAAAAADRwAAAAAAGwAAAAACFgAAAAADFgAAAAADGwAAAAAARwAAAAADRwAAAAADZAAAAAAAFgAAAAACGgAAAAAAGgAAAAACFgAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAABZAAAAAAAGwAAAAABGwAAAAABZAAAAAAARwAAAAADJgAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAACFgAAAAABZAAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAACGwAAAAABFgAAAAAAFgAAAAABGwAAAAACRwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAADZAAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAAAZAAAAAAAFgAAAAAAFgAAAAACZAAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAAAZAAAAAAAFgAAAAAAFgAAAAACFgAAAAADRwAAAAAARwAAAAAARwAAAAABJgAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAADRwAAAAABRwAAAAAARwAAAAABRwAAAAADZAAAAAAAFgAAAAACFgAAAAABFgAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAACRwAAAAACRwAAAAACRwAAAAADRwAAAAAARwAAAAABRwAAAAABGwAAAAAAFgAAAAAAFgAAAAADZAAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAAAZAAAAAAAFgAAAAAAFgAAAAACZAAAAAAARwAAAAAARwAAAAACRwAAAAAAJgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAAAZAAAAAAAFgAAAAABFgAAAAABZAAAAAAATwAAAAABRwAAAAADRwAAAAAARwAAAAACFgAAAAACFgAAAAAAFgAAAAACZAAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACGgAAAAAAGgAAAAAAFgAAAAAAGwAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAABGwAAAAADFgAAAAABFgAAAAADGwAAAAABZAAAAAAAZAAAAAAARwAAAAAARwAAAAADFgAAAAACFgAAAAACFgAAAAABZAAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAABZAAAAAAAFgAAAAADFgAAAAAAGwAAAAACZAAAAAAAZAAAAAAARwAAAAABJgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABGwAAAAADZAAAAAAAZAAAAAAARwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAADFgAAAAADFgAAAAAAFgAAAAADFgAAAAADGwAAAAABZAAAAAAAZAAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAGwAAAAAAFgAAAAACFgAAAAADFgAAAAADFgAAAAAAGwAAAAACZAAAAAAAZAAAAAAARwAAAAACJgAAAAAA + version: 6 + 0,3: + ind: 0,3 + tiles: RwAAAAABZAAAAAAAZAAAAAAAZAAAAAAALAAAAAAALAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAVAAAAAAARwAAAAABZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAABZAAAAAAAGwAAAAAAFgAAAAAAFgAAAAACFgAAAAAAFgAAAAACFgAAAAAAFgAAAAADFgAAAAADFgAAAAAAFgAAAAABFgAAAAABZAAAAAAARwAAAAAARwAAAAAARwAAAAADGwAAAAADFgAAAAABFgAAAAACFgAAAAAAFgAAAAABFwAAAAABFwAAAAABFwAAAAADFwAAAAACFwAAAAAAFwAAAAACFgAAAAACZAAAAAAARwAAAAADRwAAAAADRwAAAAABZAAAAAAAFgAAAAADFgAAAAAAFgAAAAACFgAAAAABFwAAAAACFwAAAAACFwAAAAAAFwAAAAABFwAAAAACFwAAAAAAFgAAAAADZAAAAAAARwAAAAACRwAAAAADRwAAAAABZAAAAAAAFgAAAAADFgAAAAABFgAAAAADFgAAAAABFgAAAAABFgAAAAACFgAAAAAAFgAAAAADFgAAAAAAFgAAAAABFgAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAABGwAAAAABFgAAAAADFgAAAAADFgAAAAACYQAAAAACYQAAAAABYQAAAAADYQAAAAAAYQAAAAADYQAAAAABYQAAAAADYQAAAAADZAAAAAAARwAAAAACRwAAAAACRwAAAAACZAAAAAAAFgAAAAABFgAAAAAAFgAAAAAAYQAAAAABYgAAAAAAYgAAAAABYQAAAAABYQAAAAADYgAAAAADYgAAAAACYQAAAAACZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAAAYQAAAAADYQAAAAAAYQAAAAABYQAAAAAAYQAAAAADYQAAAAAAVAAAAAAARwAAAAACZAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAZAAAAAAAYQAAAAABYQAAAAABYgAAAAABYgAAAAABYgAAAAAAYgAAAAADYQAAAAABYQAAAAAAZAAAAAAARwAAAAADZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAYQAAAAACYQAAAAACYgAAAAABYQAAAAABYQAAAAABYgAAAAABYQAAAAAAYQAAAAAAZAAAAAAARwAAAAACZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAYQAAAAAAYQAAAAADYQAAAAABYQAAAAADYQAAAAAAYQAAAAACYQAAAAABYQAAAAABZAAAAAAARwAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + version: 6 + 1,3: + ind: 1,3 + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAFgAAAAACFgAAAAADFgAAAAABHgAAAAACHgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAACZAAAAAAAJgAAAAAAFgAAAAABFgAAAAAAHgAAAAAAHgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAGwAAAAAAFgAAAAABZAAAAAAAZAAAAAAAVAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHwAAAAAAHwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHwAAAAADJgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAHwAAAAABJgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,3: + ind: 2,3 + tiles: FgAAAAAAFgAAAAADFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAYQAAAAACYQAAAAABYQAAAAABYQAAAAACZAAAAAAAYQAAAAACYQAAAAADZAAAAAAAFgAAAAACFgAAAAACJgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAAAYQAAAAADYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAAAYQAAAAACZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYQAAAAABYQAAAAADYQAAAAABZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAADHwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAHwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAHwAAAAABJgAAAAAAHwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,4: + ind: -1,4 + tiles: UwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAGwAAAAAAFgAAAAABGwAAAAABGwAAAAADFgAAAAACGwAAAAACZAAAAAAAZAAAAAAARwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACJgAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAFgAAAAABRwAAAAACRwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAGwAAAAADRwAAAAABRwAAAAABYwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAWwAAAAADWwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAADZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAWwAAAAABWwAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAABYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAWwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAFgAAAAAAFgAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYQAAAAAAYQAAAAADYQAAAAACYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAABGwAAAAACYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYQAAAAABYQAAAAADYQAAAAABYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYQAAAAACYQAAAAABYQAAAAAAYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAFgAAAAABFgAAAAADFgAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAAAFgAAAAADFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAFgAAAAAAFgAAAAABFgAAAAACFgAAAAADFgAAAAACFgAAAAAAFgAAAAADFgAAAAACFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADJgAAAAAAFgAAAAACFgAAAAABFgAAAAADFgAAAAADFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAADJgAAAAAAFgAAAAADJgAAAAAAFgAAAAACJgAAAAAA + version: 6 + -2,4: + ind: -2,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,4: + ind: 0,4 + tiles: RwAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAADRwAAAAADRwAAAAABRwAAAAACRwAAAAADZAAAAAAAYwAAAAAAYwAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAADJgAAAAAARwAAAAACRwAAAAABZAAAAAAAYwAAAAAAAAAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAABRwAAAAAAJgAAAAAARwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAGwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAJgAAAAAARwAAAAAARwAAAAACZAAAAAAAYwAAAAAAAAAAAAAAFgAAAAADZAAAAAAAFgAAAAACFgAAAAADFgAAAAACFgAAAAACFgAAAAACFgAAAAABZAAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAACZAAAAAAAYwAAAAAAAAAAAAAAFgAAAAADZAAAAAAAFgAAAAABFgAAAAADYQAAAAABYQAAAAADYQAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAGwAAAAACZAAAAAAAFgAAAAADFgAAAAAAYQAAAAADYQAAAAACYQAAAAACFgAAAAADZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAFgAAAAABZAAAAAAAFgAAAAADFgAAAAADYQAAAAAAYQAAAAABYQAAAAACFgAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAFgAAAAACZAAAAAAAFgAAAAADFgAAAAACFgAAAAABFgAAAAACFgAAAAABFgAAAAADZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAGwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAACFgAAAAACFgAAAAADFgAAAAADFgAAAAABFgAAAAACFgAAAAABZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAACFgAAAAAAFgAAAAABFgAAAAAAFgAAAAABFgAAAAABFgAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAADFgAAAAABFgAAAAADJgAAAAAAFgAAAAADFgAAAAADZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABJgAAAAAAFgAAAAABJgAAAAAAFgAAAAACFgAAAAABFgAAAAADZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,4: + ind: 1,4 + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,5: + ind: -1,5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAACJgAAAAAAFgAAAAAAFgAAAAACFgAAAAACJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAFgAAAAADJgAAAAAAFgAAAAADFgAAAAABFgAAAAAAFgAAAAADFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAADFgAAAAACFgAAAAACJgAAAAAAFgAAAAAAFgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAJgAAAAAAFgAAAAAAFgAAAAADJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,5: + ind: 0,5 + tiles: FgAAAAABFgAAAAABFgAAAAADJgAAAAAAFgAAAAABFgAAAAADFgAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAACFgAAAAACFgAAAAABJgAAAAAAFgAAAAACZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAABJgAAAAAAFgAAAAADFgAAAAADFgAAAAABZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAABJgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,-2: + ind: -3,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYQAAAAAAYQAAAAAAYQAAAAADZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYQAAAAAAYQAAAAACYQAAAAAAYQAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYQAAAAAAYQAAAAABYQAAAAAAYQAAAAABVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + version: 6 + -2,-2: + ind: -2,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAGwAAAAADZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAGwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAATAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAATAAAAAAATAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABTwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAADFgAAAAABGwAAAAADRwAAAAABRwAAAAACRwAAAAABUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAFgAAAAADZAAAAAAARwAAAAABRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAFgAAAAABZAAAAAAARwAAAAABRwAAAAAARwAAAAAC + version: 6 + 1,-2: + ind: 1,-2 + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAGwAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAGwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAADFgAAAAACZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADGgAAAAAAFgAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAGgAAAAABFgAAAAACZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABGgAAAAABFgAAAAACZAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAADgAAAAAADgAAAAAAGgAAAAADGgAAAAACDgAAAAAADgAAAAAADgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAAAGwAAAAADGgAAAAADGgAAAAAAGwAAAAACGwAAAAABGwAAAAACZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAA + version: 6 + 2,-2: + ind: 2,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-3: + ind: 1,-3 + tiles: YwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAADZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAATAAAAAAATAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAATAAAAAAATAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAATAAAAAAATAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAATAAAAAAATAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAATAAAAAAATAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-3: + ind: 0,-3 + tiles: ZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAFgAAAAACPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAFgAAAAADPAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAWwAAAAADZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAFgAAAAADPAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAWwAAAAABZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAFgAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAPAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAGwAAAAABZAAAAAAAZAAAAAAAVAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAADZAAAAAAAFgAAAAAAFgAAAAADZAAAAAAARwAAAAACRwAAAAAARwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAGwAAAAABGwAAAAAAFgAAAAACFgAAAAABGwAAAAABGwAAAAADZAAAAAAARwAAAAADRwAAAAADRwAAAAACZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAABGwAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAADVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAABRwAAAAABRwAAAAADTwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAABRwAAAAADRwAAAAACRwAAAAADRwAAAAACTwAAAAACZAAAAAAAZAAAAAAA + version: 6 + -1,-3: + ind: -1,-3 + tiles: ZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAVAAAAAAAFgAAAAADFgAAAAABFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAFgAAAAADFgAAAAABFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAFgAAAAABFgAAAAACFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + version: 6 + -2,-3: + ind: -2,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAWwAAAAAAWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAWwAAAAAAWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAATAAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + version: 6 + -1,-4: + ind: -1,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + version: 6 + 0,-4: + ind: 0,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-5: + ind: -1,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-5: + ind: 0,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,3: + ind: 3,3 + tiles: YwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,4: + ind: 2,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,4: + ind: 3,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,4: + ind: -3,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,4: + ind: -4,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: Shuttle + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 5125: -43,28 + 5126: -43,27 + 5145: -46,27 + 5146: -46,28 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 5254: -6,-31 + 5255: -6,-29 + 5256: -6,-27 + 5257: -6,-23 + 5258: -6,-21 + 5259: -6,-25 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 1263: -16,-27 + 1264: -15,-27 + 1265: -16,-28 + 1266: -15,-28 + 1267: -16,-29 + 1268: -15,-29 + 1269: -16,-30 + 1270: -15,-30 + 1271: -14,-27 + 1272: -14,-28 + 1273: -14,-29 + 1274: -14,-30 + 1654: 4,-37 + 1655: 5,-37 + 1656: 8,-37 + 1657: 9,-37 + 1958: 7,-22 + 2370: 27,23 + 2371: 27,26 + 2372: 48,42 + 2373: 27,43 + 2374: 18,36 + 2375: 16,29 + 2376: 7,34 + 2377: -10,23 + 2378: -22,25 + 2379: -16,30 + 2380: -25,38 + 2381: -31,22 + 2382: -46,44 + 2383: -18,53 + 2384: 4,52 + 2385: -4,57 + 2386: -3,68 + 2387: 2,70 + 2388: -8,76 + 2389: -2,27 + 2390: 16,20 + 2391: 45,12 + 2392: 33,7 + 2393: 45,-7 + 2394: 17,-4 + 2395: 10,-16 + 2396: -8,-15 + 2397: 3,2 + 2398: -14,1 + 2399: 11,7 + 2400: 7,-6 + 2401: -18,-20 + 2402: -39,-3 + 2403: -46,12 + 2404: -35,16 + 2405: -24,15 + 2406: 14,47 + 2407: -34,-9 + 5110: -37,24 + - node: + color: '#52B4E996' + id: BotGreyscale + decals: + 459: -2,72 + 460: -1,72 + 461: 0,72 + 1945: 1,47 + 1946: 1,46 + 1947: 3,47 + 1948: 3,46 + 1949: 18,-11 + 1950: 19,-11 + 1951: 14,-24 + 1952: 15,-24 + - node: + color: '#52B4E996' + id: BotLeftGreyscale + decals: + 2246: 27,5 + 2247: 27,6 + 2248: 27,4 + - node: + color: '#FFFFFFFF' + id: BotRight + decals: + 1185: -15,20 + 1186: -15,19 + 1187: -15,18 + 1188: -15,17 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: BotRight + decals: + 5129: -41,24 + 5130: -41,22 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 1988: -41,6 + 1989: -41,0 + 1990: -44,-5 + 1991: -44,-6 + 1992: -44,-7 + 1993: -44,-8 + 1994: -43,-8 + 1995: -43,-7 + 1996: -43,-6 + 1997: -43,-5 + 1998: -39,-5 + 1999: -39,-6 + 2000: -39,-7 + 2001: -39,-8 + 2002: -40,-8 + 2003: -40,-7 + 2004: -40,-6 + 2005: -40,-5 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkBox + decals: + 714: -6,78 + 715: -6,81 + 716: 4,81 + 717: 4,78 + 718: 1,79 + 719: -3,79 + 720: -1,79 + 721: -1,80 + 722: -5,79 + 723: -5,80 + 724: 3,79 + 725: 3,80 + 726: 27,43 + 727: 27,45 + 728: 27,47 + 729: 27,49 + 730: 34,49 + 731: 34,47 + 732: 34,45 + 733: 34,43 + 1413: -1,10 + 1414: -1,-3 + 1415: -1,-5 + 1416: 2,-5 + 1417: 2,-3 + 1418: 2,0 + 1419: 2,2 + 1420: 2,5 + 1421: 2,7 + 1422: 2,10 + 1423: -4,10 + 1424: -4,7 + 1425: -1,7 + 1426: -1,5 + 1427: -4,5 + 1428: -13,2 + 1429: -13,0 + 1430: -10,0 + 1431: -10,2 + 1432: -7,2 + 1433: -7,0 + 1434: -4,2 + 1435: -1,0 + 1436: -1,2 + 1437: -7,-3 + 1438: -7,-5 + 1439: -4,-5 + 1440: -4,-3 + 5001: -13,-5 + 5002: -13,-3 + 5003: -10,-3 + 5004: -10,-5 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + decals: + 32: -2,80 + 38: 2,80 + 39: 1,83 + 40: -2,83 + 41: 5,82 + 42: -5,82 + 1170: -16,22 + 1567: 9,9 + 1736: 6,-25 + 1842: 18,-22 + 1885: -11,-18 + 1941: 5,47 + 2234: 13,54 + 2269: 18,-34 + 5006: 19,-14 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 31: -4,80 + 37: 0,80 + 43: -7,82 + 44: -3,83 + 45: 0,83 + 46: 3,82 + 1168: -18,22 + 1571: 7,9 + 1713: 4,-18 + 1733: 5,-25 + 1872: 18,-14 + 1942: 4,47 + 2235: 8,54 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 1572: 9,6 + 1734: 6,-26 + 1843: 18,-26 + 1871: 19,-18 + 1943: 5,46 + 1959: 7,-27 + 2236: 13,53 + 2266: 18,-38 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 593: -20,44 + 1570: 7,6 + 1735: 5,-26 + 1870: 18,-18 + 1944: 4,46 + 2237: 8,53 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndE + decals: + 617: -13,49 + 620: -15,59 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndN + decals: + 1835: 17,-23 + 1976: -4,83 + 1977: -1,83 + 1978: 2,83 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndS + decals: + 1836: 17,-25 + 1973: -4,82 + 1974: -1,82 + 1975: 2,82 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndW + decals: + 618: -14,49 + 619: -16,59 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNe + decals: + 1879: 13,-25 + 1928: 0,45 + 2268: 18,-35 + 2270: 17,-34 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNw + decals: + 2304: 29,2 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSe + decals: + 27: -3,77 + 414: -3,76 + 1855: 17,-10 + 1880: 13,-23 + 1927: 0,48 + 2267: 18,-37 + 2271: 17,-38 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSw + decals: + 28: 1,77 + 415: 1,76 + 684: -7,62 + 1856: 20,-10 + 2303: 29,7 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 22: -3,76 + 30: -2,79 + 35: 2,79 + 49: -2,82 + 50: 5,81 + 60: 1,82 + 432: 0,74 + 433: 0,73 + 434: 0,71 + 435: 0,70 + 537: -9,51 + 538: -9,52 + 539: -9,53 + 540: -9,54 + 541: -9,55 + 542: -9,56 + 543: -9,57 + 544: -9,58 + 545: -9,59 + 546: -9,60 + 605: -7,47 + 606: -7,48 + 607: -7,49 + 608: -7,50 + 650: -6,57 + 651: -6,56 + 652: -6,55 + 653: -6,54 + 654: -6,53 + 655: -6,52 + 1008: 12,30 + 1009: 12,31 + 1010: 12,32 + 1011: 12,33 + 1012: 12,34 + 1085: -10,27 + 1086: -10,28 + 1087: -10,29 + 1088: -10,30 + 1089: -10,31 + 1090: -10,32 + 1091: -10,33 + 1092: -10,34 + 1097: -15,20 + 1098: -15,19 + 1099: -15,18 + 1100: -15,17 + 1171: -16,21 + 1234: -14,27 + 1235: -14,28 + 1238: 22,26 + 1239: 22,27 + 1240: 22,28 + 1241: 22,29 + 1568: 9,8 + 1569: 9,7 + 1664: 13,-24 + 1838: 17,-24 + 1839: 18,-24 + 1840: 18,-23 + 1841: 18,-25 + 1873: 19,-15 + 1874: 19,-16 + 1875: 19,-17 + 1883: -11,-19 + 1884: -11,-20 + 1925: 0,47 + 1926: 0,46 + 1960: 7,-26 + 1961: 7,-25 + 1962: 7,-24 + 2090: -37,28 + 2091: -37,27 + 2092: -37,23 + 2093: -37,26 + 2094: -37,25 + 2128: -35,-1 + 2129: -35,-2 + 2130: -35,-3 + 2131: -35,-4 + 2132: -35,-5 + 2133: -35,-6 + 5108: -37,24 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 12: -2,76 + 13: -1,76 + 14: 0,76 + 33: -3,80 + 34: 1,80 + 422: 2,74 + 423: 3,74 + 424: 4,74 + 425: 5,74 + 426: 6,74 + 427: 7,74 + 520: -20,42 + 521: -19,42 + 522: -18,42 + 523: -17,42 + 524: -16,42 + 622: -5,49 + 630: -4,49 + 636: -23,48 + 637: -22,48 + 662: -15,50 + 663: -14,50 + 664: -13,50 + 665: -12,50 + 1169: -17,22 + 1246: 18,34 + 1247: 19,34 + 1248: 20,34 + 1249: 21,34 + 1576: 8,9 + 1714: 5,-18 + 1715: 6,-18 + 1716: 7,-18 + 1787: 14,29 + 1788: 15,29 + 1789: 16,29 + 1845: 17,-22 + 1886: -12,-18 + 1887: -13,-18 + 1888: -14,-18 + 1889: -15,-18 + 2017: -37,11 + 2018: -36,11 + 2019: -35,11 + 2151: 26,-12 + 2152: 27,-12 + 2153: 28,-12 + 2154: 29,-12 + 2155: 30,-12 + 2202: 41,44 + 2203: 42,44 + 2204: 43,44 + 2205: 44,44 + 2238: 9,54 + 2239: 10,54 + 2240: 11,54 + 2241: 12,54 + 5023: 22,-17 + 5024: 21,-17 + 5025: 20,-17 + 5026: 20,-15 + 5027: 21,-15 + 5028: 22,-15 + 5029: 15,-15 + 5030: 16,-15 + 5031: 17,-15 + 5032: 15,-17 + 5033: 16,-17 + 5034: 17,-17 + 5071: 18,-13 + 5072: 19,-13 + 5133: -46,28 + 5134: -45,28 + - node: + color: '#D4D4D479' + id: BrickTileDarkLineS + decals: + 5065: 18,-12 + 5066: 19,-12 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 24: -2,77 + 25: -1,77 + 26: 0,77 + 386: -3,76 + 387: 1,76 + 388: 2,76 + 389: 3,76 + 390: 4,76 + 391: 5,76 + 392: 6,76 + 393: 7,76 + 394: -4,76 + 395: -5,76 + 396: -6,76 + 397: -7,76 + 398: -8,76 + 399: -9,76 + 416: 2,70 + 417: 3,70 + 418: 4,70 + 419: 5,70 + 420: 6,70 + 421: 7,70 + 499: -4,44 + 500: -5,44 + 501: -6,44 + 502: -7,44 + 503: -8,44 + 504: -9,44 + 505: -10,44 + 506: -11,44 + 507: -12,44 + 508: -13,44 + 509: -14,44 + 510: -15,44 + 511: -16,44 + 512: -17,44 + 513: -18,44 + 514: -19,44 + 515: -20,40 + 516: -19,40 + 517: -18,40 + 518: -17,40 + 519: -16,40 + 621: -5,49 + 631: -4,49 + 634: -23,47 + 635: -22,47 + 642: -17,58 + 643: -16,58 + 644: -15,58 + 645: -14,58 + 666: -15,48 + 667: -14,48 + 668: -13,48 + 669: -12,48 + 685: -8,62 + 686: -10,62 + 687: -9,62 + 1193: -10,17 + 1194: -9,17 + 1195: -8,17 + 1573: 8,6 + 1784: 15,27 + 1785: 14,27 + 1786: 16,27 + 1844: 17,-26 + 1853: 18,-10 + 1854: 19,-10 + 1963: 6,-27 + 1964: 5,-27 + 1965: 4,-27 + 2014: -37,9 + 2015: -36,9 + 2016: -35,9 + 2146: 26,-14 + 2147: 27,-14 + 2148: 28,-14 + 2149: 29,-14 + 2150: 30,-14 + 2198: 41,42 + 2199: 42,42 + 2200: 43,42 + 2201: 44,42 + 2242: 9,53 + 2243: 10,53 + 2244: 11,53 + 2245: 12,53 + 5011: 22,-15 + 5012: 21,-15 + 5013: 20,-15 + 5014: 17,-15 + 5015: 16,-15 + 5016: 15,-15 + 5017: 15,-17 + 5018: 16,-17 + 5019: 17,-17 + 5020: 20,-17 + 5021: 21,-17 + 5022: 22,-17 + 5069: 18,-13 + 5070: 19,-13 + 5131: -45,27 + 5132: -46,27 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 23: 1,76 + 29: -4,79 + 36: 0,79 + 47: -7,81 + 48: -3,82 + 61: 0,82 + 428: -2,70 + 429: -2,71 + 430: -2,73 + 431: -2,74 + 525: -20,45 + 526: -20,46 + 527: -20,47 + 528: -20,48 + 529: -20,49 + 530: -20,50 + 531: -20,51 + 532: -20,52 + 533: -20,53 + 534: -17,54 + 535: -17,56 + 536: -17,55 + 547: -12,57 + 548: -12,58 + 549: -12,59 + 550: -12,60 + 678: -7,61 + 679: -7,60 + 680: -7,59 + 1013: 9,30 + 1014: 9,31 + 1015: 9,32 + 1016: 9,33 + 1017: 9,34 + 1077: -12,27 + 1078: -12,28 + 1079: -12,29 + 1080: -12,30 + 1081: -12,31 + 1082: -12,32 + 1083: -12,33 + 1084: -12,34 + 1163: -19,17 + 1164: -19,18 + 1165: -19,19 + 1166: -19,20 + 1167: -18,21 + 1242: 18,26 + 1243: 18,27 + 1244: 18,28 + 1245: 18,29 + 1574: 7,7 + 1575: 7,8 + 1658: 21,-27 + 1717: 4,-19 + 1718: 4,-20 + 1719: 4,-21 + 1720: 4,-22 + 1837: 17,-24 + 1876: 18,-17 + 1877: 18,-16 + 1878: 18,-15 + 1897: -14,-38 + 1898: -14,-37 + 1899: -14,-36 + 1900: -14,-35 + 1901: -14,-34 + 1902: -14,-33 + 1903: -14,-32 + 1904: -14,-25 + 1905: -14,-24 + 1906: -14,-23 + 1907: -14,-22 + 2084: -40,17 + 2085: -40,18 + 2086: -40,19 + 2087: -40,20 + 2088: -40,29 + 2089: -40,30 + 2122: -37,-1 + 2123: -37,-2 + 2124: -37,-3 + 2125: -37,-4 + 2126: -37,-5 + 2127: -37,-6 + 2301: 29,4 + 2302: 29,5 + 5111: -43,26 + 5112: -43,25 + 5113: -43,24 + 5114: -43,23 + 5115: -43,22 + 5116: -43,21 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelBox + decals: + 695: -4,-13 + 696: -1,-13 + 697: 2,-13 + 698: -1,-9 + 699: -1,18 + 700: -1,21 + 701: -1,24 + 702: -1,27 + 703: -1,30 + 704: -1,33 + 705: -1,41 + 706: -1,44 + 707: -1,46 + 708: -1,49 + 709: -1,53 + 710: -1,56 + 711: -1,60 + 712: -1,63 + 713: -1,66 + 744: 10,67 + 745: 11,68 + 746: 10,69 + 1802: -32,37 + 1803: -32,33 + 1804: -32,30 + 1805: -32,27 + 1806: -32,24 + 1807: -32,21 + 1808: -32,18 + 1809: -32,14 + 1810: -32,10 + 1811: -32,7 + 1812: -32,4 + 1813: -32,1 + 1814: -32,-2 + 1815: -32,-5 + 1816: -32,-9 + 1817: 31,-9 + 1818: 31,-5 + 1819: 31,-2 + 1820: 31,1 + 1821: 31,4 + 1822: 31,7 + 1823: 31,10 + 1824: 31,14 + 1825: 31,18 + 1826: 31,21 + 1827: 31,24 + 1828: 31,27 + 1829: 31,30 + 1830: 31,33 + 1831: 31,37 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNe + decals: + 774: 21,42 + 1133: -14,23 + 1320: -10,-13 + 1342: 11,-13 + 1360: -8,-12 + 1759: 4,19 + 1798: -45,41 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + decals: + 775: 19,42 + 1023: -22,34 + 1119: -22,25 + 1134: -20,23 + 1321: -13,-13 + 1343: 8,-13 + 1386: 6,-12 + 1770: -6,19 + 1799: -48,41 + 2067: -36,7 + 2112: -4,57 + 2328: 26,18 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + decals: + 772: 21,40 + 1318: -10,-15 + 1341: 11,-15 + 2322: 23,20 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + decals: + 773: 19,40 + 1025: -22,32 + 1030: -19,30 + 1319: -13,-15 + 1340: 8,-15 + 2068: -36,4 + 2107: -4,52 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndN + decals: + 2192: -28,33 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndS + decals: + 2193: -28,30 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerSw + decals: + 1028: -19,32 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 734: 29,40 + 735: 29,41 + 776: 21,41 + 1101: -12,17 + 1102: -12,18 + 1103: -12,19 + 1104: -12,20 + 1105: -10,21 + 1106: -10,22 + 1107: -10,23 + 1132: -14,22 + 1322: -10,-14 + 1344: 11,-14 + 1356: -8,-16 + 1357: -8,-15 + 1358: -8,-14 + 1359: -8,-13 + 1659: 13,-21 + 1660: 13,-22 + 1661: 13,-23 + 1662: 13,-25 + 1663: 13,-26 + 1665: 13,-27 + 1666: 13,-28 + 1667: 13,-29 + 1668: 13,-30 + 1669: 13,-35 + 1670: 13,-36 + 1671: 13,-37 + 1672: 13,-38 + 1756: 4,16 + 1757: 4,17 + 1758: 4,18 + 1801: -45,40 + 2030: -39,-3 + 2031: -39,-2 + 2032: -39,-1 + 2033: -39,0 + 2034: -38,3 + 2035: -38,4 + 2036: -38,5 + 2037: -38,6 + 2038: -38,7 + 2045: -35,1 + 2046: -35,2 + 2194: -28,32 + 2195: -28,31 + 2323: 23,21 + 2324: 23,22 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 777: 20,42 + 1018: -21,34 + 1019: -20,34 + 1020: -19,34 + 1021: -18,34 + 1022: -17,34 + 1108: -11,25 + 1109: -12,25 + 1110: -13,25 + 1111: -14,25 + 1112: -15,25 + 1113: -16,25 + 1114: -17,25 + 1115: -18,25 + 1116: -19,25 + 1117: -20,25 + 1118: -21,25 + 1326: -12,-13 + 1327: -11,-13 + 1346: 9,-13 + 1347: 10,-13 + 1351: -14,-16 + 1352: -14,-12 + 1353: -14,-13 + 1361: -9,-12 + 1362: -10,-12 + 1363: -11,-12 + 1364: -12,-12 + 1365: -13,-12 + 1366: -15,-12 + 1379: 13,-12 + 1380: 12,-12 + 1381: 11,-12 + 1382: 10,-12 + 1383: 9,-12 + 1384: 8,-12 + 1385: 7,-12 + 1404: -14,-15 + 1760: 3,19 + 1761: 2,19 + 1762: 1,19 + 1774: -5,19 + 1775: -4,19 + 1776: -3,19 + 1796: -47,41 + 1797: -46,41 + 2070: -35,7 + 2071: -34,7 + 2113: -3,57 + 2327: 27,18 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 779: 20,40 + 1026: -21,32 + 1027: -20,32 + 1031: -18,30 + 1032: -17,30 + 1033: -16,30 + 1034: -15,30 + 1035: -14,30 + 1324: -12,-15 + 1325: -11,-15 + 1348: 9,-15 + 1349: 10,-15 + 1350: -14,-16 + 1354: -14,-13 + 1355: -14,-12 + 1403: -14,-15 + 2072: -35,4 + 2073: -34,4 + 2106: -3,52 + 2325: 21,20 + 2339: 22,20 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 736: 32,41 + 737: 32,40 + 778: 19,41 + 1024: -22,33 + 1029: -19,31 + 1120: -22,24 + 1121: -22,23 + 1122: -22,22 + 1123: -22,21 + 1124: -22,20 + 1125: -22,19 + 1126: -22,18 + 1127: -22,17 + 1135: -20,22 + 1323: -13,-14 + 1345: 8,-14 + 1387: 6,-13 + 1388: 6,-14 + 1389: 6,-15 + 1390: 6,-16 + 1673: 9,-21 + 1674: 9,-22 + 1675: 9,-23 + 1676: 9,-24 + 1677: 9,-25 + 1678: 9,-26 + 1679: 9,-27 + 1680: 4,-33 + 1681: 4,-34 + 1682: 4,-35 + 1683: 11,-36 + 1684: 11,-37 + 1685: 11,-38 + 1771: -6,18 + 1772: -6,17 + 1773: -6,16 + 1800: -48,40 + 2027: -44,-1 + 2028: -44,-2 + 2029: -44,-3 + 2039: -41,7 + 2040: -41,8 + 2041: -41,9 + 2042: -41,10 + 2043: -41,11 + 2044: -41,3 + 2069: -36,6 + 2108: -4,53 + 2109: -4,54 + 2110: -4,55 + 2111: -4,56 + 2196: -28,31 + 2197: -28,32 + 2321: 26,17 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteBox + decals: + 1262: 15,28 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNe + decals: + 55: -2,80 + 1846: 18,-22 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNe + decals: + 56: 5,82 + 916: 12,28 + 973: 7,34 + 1766: 4,19 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerNe + decals: + 64: 1,83 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerNe + decals: + 69: -2,83 + 1182: -16,22 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNe + decals: + 78: 2,80 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerNe + decals: + 70: -5,82 + 1371: -8,-12 + 1894: -11,-18 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNe + decals: + 874: 12,28 + 956: 5,24 + 972: 7,34 + 991: 6,33 + 1215: -5,23 + 2312: -17,-40 + 2317: 16,-40 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNw + decals: + 54: -4,80 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNw + decals: + 57: 3,82 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerNw + decals: + 63: 0,83 + 2078: -36,7 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerNw + decals: + 68: -3,83 + 1048: -22,34 + 1154: -22,25 + 1183: -18,22 + 1777: -6,19 + - node: + color: '#D56F18EF' + id: BrickTileWhiteCornerNw + decals: + 935: 2,25 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNw + decals: + 77: 0,80 + 2115: -4,57 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerNw + decals: + 71: -7,82 + 1395: 6,-12 + 1728: 4,-18 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNw + decals: + 926: 2,25 + 957: 3,24 + 992: 4,33 + 1216: -7,23 + 2314: -18,-40 + 2315: 15,-40 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSe + decals: + 1847: 18,-26 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSe + decals: + 978: 7,30 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerSe + decals: + 1226: -4,21 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSe + decals: + 1966: 7,-27 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSe + decals: + 842: 16,17 + 954: 4,22 + 955: 5,23 + 963: 7,30 + 993: 6,31 + 1210: -4,21 + 1211: -5,22 + 2311: -17,-41 + 2316: 16,-41 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSw + decals: + 898: 8,26 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerSw + decals: + 2076: -36,4 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerSw + decals: + 1041: -19,30 + 1046: -22,32 + - node: + color: '#D56F18EF' + id: BrickTileWhiteCornerSw + decals: + 931: 2,21 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSw + decals: + 594: -20,44 + 2120: -4,52 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSw + decals: + 841: 6,17 + 864: 8,26 + 930: 2,21 + 953: 3,22 + 989: 4,31 + 1217: -7,22 + 2313: -18,-41 + 2318: 15,-41 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndN + decals: + 908: 11,27 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndS + decals: + 909: 11,23 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerNe + decals: + 1882: 13,-25 + 1930: 0,45 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerNw + decals: + 2306: 29,2 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerSe + decals: + 1859: 17,-10 + 1881: 13,-23 + 1929: 0,48 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerSe + decals: + 960: 4,23 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerSw + decals: + 1860: 20,-10 + 2305: 29,7 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerSw + decals: + 896: 8,27 + 897: 10,26 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerSw + decals: + 1043: -19,32 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSw + decals: + 691: -7,62 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerSw + decals: + 862: 10,26 + 865: 8,27 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineE + decals: + 53: -2,79 + 436: 0,74 + 437: 0,73 + 438: 0,71 + 439: 0,70 + 1712: 13,-24 + 1848: 18,-25 + 1849: 18,-24 + 1850: 18,-23 + 1931: 0,46 + 1932: 0,47 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineE + decals: + 59: 5,81 + 881: 12,22 + 882: 12,23 + 883: 12,24 + 884: 12,25 + 885: 12,26 + 886: 12,27 + 974: 7,33 + 975: 7,32 + 976: 7,31 + 1258: 22,29 + 1259: 22,28 + 1260: 22,27 + 1261: 22,26 + 1767: 4,18 + 1768: 4,17 + 1769: 4,16 + - node: + color: '#A4610696' + id: BrickTileWhiteLineE + decals: + 65: 1,82 + 2047: -35,1 + 2048: -35,2 + 2049: -39,-3 + 2050: -39,-2 + 2051: -39,-1 + 2052: -39,0 + 2053: -38,7 + 2054: -38,6 + 2055: -38,5 + 2056: -38,4 + 2057: -38,3 + 2095: -37,28 + 2096: -37,27 + 2097: -37,26 + 2098: -37,25 + 2099: -37,23 + 5109: -37,24 + - node: + color: '#D381C996' + id: BrickTileWhiteLineE + decals: + 66: -2,82 + 1136: -12,17 + 1137: -12,18 + 1138: -12,19 + 1139: -12,20 + 1140: -10,21 + 1141: -10,22 + 1142: -10,23 + 1172: -15,20 + 1173: -15,19 + 1174: -15,18 + 1175: -15,17 + 1181: -16,21 + 1227: -4,22 + 1228: -4,23 + 1229: -4,24 + 1236: -14,27 + 1237: -14,28 + - node: + color: '#D56F18EF' + id: BrickTileWhiteLineE + decals: + 940: 8,24 + 941: 8,23 + 942: 8,22 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineE + decals: + 76: 2,79 + 567: -9,51 + 568: -9,52 + 569: -9,53 + 570: -9,54 + 571: -9,55 + 572: -9,56 + 573: -9,57 + 574: -9,58 + 575: -9,59 + 576: -9,60 + 609: -7,50 + 610: -7,49 + 611: -7,48 + 612: -7,47 + 656: -6,57 + 657: -6,56 + 658: -6,55 + 659: -6,54 + 660: -6,53 + 661: -6,52 + 2134: -35,-6 + 2135: -35,-5 + 2136: -35,-4 + 2137: -35,-3 + 2138: -35,-2 + 2139: -35,-1 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineE + decals: + 1367: -8,-16 + 1368: -8,-15 + 1369: -8,-14 + 1370: -8,-13 + 1686: 13,-21 + 1687: 13,-22 + 1688: 13,-23 + 1689: 13,-25 + 1690: 13,-26 + 1691: 13,-27 + 1692: 13,-28 + 1693: 13,-29 + 1694: 13,-30 + 1695: 13,-35 + 1696: 13,-36 + 1697: 13,-37 + 1698: 13,-38 + 1895: -11,-19 + 1896: -11,-20 + 1970: 7,-26 + 1971: 7,-25 + 1972: 7,-24 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineE + decals: + 843: 16,18 + 844: 16,19 + 845: 16,20 + 875: 12,27 + 876: 12,26 + 877: 12,25 + 878: 12,24 + 879: 12,23 + 880: 12,22 + 910: 11,24 + 911: 11,25 + 912: 11,26 + 919: 8,22 + 920: 8,23 + 921: 8,24 + 964: 7,31 + 965: 7,32 + 966: 7,33 + 994: 6,32 + 1212: -4,22 + 1213: -4,23 + 1214: -4,24 + 5244: 3,29 + 5245: 3,30 + 5246: 3,31 + 5247: 3,32 + 5248: 3,33 + 5249: 3,34 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineN + decals: + 52: -3,80 + 450: 2,74 + 451: 3,74 + 452: 4,74 + 453: 6,74 + 454: 5,74 + 455: 7,74 + 1851: 17,-22 + 5035: 17,-15 + 5050: 20,-15 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineN + decals: + 58: 4,82 + 887: 11,28 + 888: 10,28 + 889: 9,28 + 890: 7,28 + 891: 8,28 + 892: 6,28 + 969: 4,34 + 970: 5,34 + 977: 6,34 + 1250: 18,34 + 1251: 20,34 + 1252: 19,34 + 1253: 21,34 + 1763: 1,19 + 1764: 2,19 + 1765: 3,19 + 1793: 14,29 + 1794: 15,29 + 1795: 16,29 + 5038: 15,-17 + 5045: 22,-17 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineN + decals: + 5037: 15,-15 + 5052: 22,-15 + - node: + color: '#A4610696' + id: BrickTileWhiteLineN + decals: + 2024: -37,11 + 2025: -36,11 + 2026: -35,11 + 2079: -35,7 + 2080: -34,7 + 5036: 16,-15 + 5051: 21,-15 + 5137: -46,28 + 5138: -45,28 + - node: + color: '#D381C996' + id: BrickTileWhiteLineN + decals: + 1049: -21,34 + 1050: -20,34 + 1051: -19,34 + 1052: -18,34 + 1053: -17,34 + 1143: -11,25 + 1144: -12,25 + 1145: -13,25 + 1146: -14,25 + 1147: -15,25 + 1148: -16,25 + 1149: -17,25 + 1150: -18,25 + 1151: -19,25 + 1152: -20,25 + 1153: -21,25 + 1184: -17,22 + 1778: -5,19 + 1779: -4,19 + 1780: -3,19 + - node: + color: '#D4D4D426' + id: BrickTileWhiteLineN + decals: + 5063: 18,-12 + 5064: 19,-12 + - node: + color: '#D56F18EF' + id: BrickTileWhiteLineN + decals: + 936: 3,25 + 937: 4,25 + 938: 5,25 + 939: 6,25 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + decals: + 75: 1,80 + 595: -20,42 + 596: -19,42 + 597: -18,42 + 598: -17,42 + 599: -16,42 + 623: -5,49 + 632: -4,49 + 638: -23,48 + 639: -22,48 + 674: -15,50 + 675: -14,50 + 676: -13,50 + 677: -12,50 + 2114: -3,57 + 2156: 26,-12 + 2157: 27,-12 + 2158: 28,-12 + 2159: 29,-12 + 2160: 30,-12 + 2206: 41,44 + 2207: 42,44 + 2208: 43,44 + 2209: 44,44 + 5039: 16,-17 + 5046: 21,-17 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineN + decals: + 72: -6,82 + 1372: -9,-12 + 1373: -10,-12 + 1374: -11,-12 + 1375: -12,-12 + 1376: -13,-12 + 1377: -14,-12 + 1378: -15,-12 + 1396: 7,-12 + 1397: 8,-12 + 1398: 9,-12 + 1399: 10,-12 + 1400: 11,-12 + 1401: 12,-12 + 1402: 13,-12 + 1721: 7,-18 + 1722: 6,-18 + 1723: 5,-18 + 1890: -15,-18 + 1891: -14,-18 + 1892: -13,-18 + 1893: -12,-18 + 5040: 17,-17 + 5049: 20,-17 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + decals: + 868: 6,28 + 869: 7,28 + 870: 8,28 + 871: 9,28 + 872: 10,28 + 873: 11,28 + 922: 6,25 + 923: 5,25 + 924: 4,25 + 925: 3,25 + 958: 4,24 + 967: 5,34 + 968: 4,34 + 971: 6,34 + 995: 5,33 + 1219: -6,23 + 5241: 4,28 + 5242: 3,28 + 5243: 2,28 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineS + decals: + 400: -3,76 + 401: -4,76 + 402: -5,76 + 403: -6,76 + 404: -7,76 + 405: -8,76 + 406: -9,76 + 407: 1,76 + 408: 2,76 + 409: 3,76 + 410: 4,76 + 411: 5,76 + 412: 6,76 + 413: 7,76 + 444: 2,70 + 445: 3,70 + 446: 4,70 + 447: 6,70 + 448: 5,70 + 449: 7,70 + 1852: 17,-26 + 1857: 18,-10 + 1858: 19,-10 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineS + decals: + 893: 6,27 + 894: 7,27 + 895: 9,26 + 979: 6,30 + 980: 5,30 + 1790: 14,27 + 1791: 15,27 + 1792: 16,27 + 5043: 15,-15 + 5044: 22,-15 + - node: + color: '#5A5A605A' + id: BrickTileWhiteLineS + decals: + 3: -2,76 + 4: -1,76 + 5: 0,76 + - node: + color: '#5A5A60FF' + id: BrickTileWhiteLineS + decals: + 6: -2,76 + 7: -1,76 + 8: 0,76 + - node: + color: '#A4610696' + id: BrickTileWhiteLineS + decals: + 2021: -37,9 + 2022: -36,9 + 2023: -35,9 + 2074: -34,4 + 2075: -35,4 + 5135: -45,27 + 5136: -46,27 + - node: + color: '#D381C996' + id: BrickTileWhiteLineS + decals: + 1036: -14,30 + 1037: -15,30 + 1038: -16,30 + 1039: -17,30 + 1040: -18,30 + 1044: -20,32 + 1045: -21,32 + 1196: -10,17 + 1197: -9,17 + 1198: -8,17 + 1222: -8,21 + 1223: -7,21 + 1224: -6,21 + 1225: -5,21 + 5053: 16,-17 + 5058: 21,-17 + - node: + color: '#D4D4D428' + id: BrickTileWhiteLineS + decals: + 5056: 15,-17 + 5057: 22,-17 + - node: + color: '#D4D4D496' + id: BrickTileWhiteLineS + decals: + 5054: 17,-17 + 5055: 20,-17 + - node: + color: '#D56F18EF' + id: BrickTileWhiteLineS + decals: + 943: 3,21 + 944: 4,21 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + decals: + 551: -19,44 + 552: -18,44 + 553: -17,44 + 554: -16,44 + 555: -15,44 + 556: -14,44 + 557: -13,44 + 558: -12,44 + 559: -11,44 + 560: -10,44 + 561: -9,44 + 562: -8,44 + 563: -7,44 + 564: -6,44 + 565: -5,44 + 566: -4,44 + 600: -20,40 + 601: -19,40 + 602: -18,40 + 603: -17,40 + 604: -16,40 + 624: -5,49 + 633: -4,49 + 640: -23,47 + 641: -22,47 + 646: -17,58 + 647: -16,58 + 648: -15,58 + 649: -14,58 + 670: -15,48 + 671: -14,48 + 672: -13,48 + 673: -12,48 + 688: -8,62 + 689: -9,62 + 690: -10,62 + 2121: -3,52 + 2161: 26,-14 + 2162: 27,-14 + 2163: 28,-14 + 2164: 29,-14 + 2165: 30,-14 + 2210: 41,42 + 2211: 42,42 + 2212: 43,42 + 2213: 44,42 + 5042: 16,-15 + 5047: 21,-15 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineS + decals: + 1967: 6,-27 + 1968: 5,-27 + 1969: 4,-27 + 5041: 17,-15 + 5048: 20,-15 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + decals: + 846: 15,17 + 847: 14,17 + 848: 13,17 + 849: 12,17 + 850: 11,17 + 851: 10,17 + 852: 9,17 + 853: 7,17 + 854: 8,17 + 863: 9,26 + 866: 7,27 + 867: 6,27 + 917: 3,21 + 918: 4,21 + 961: 5,30 + 962: 6,30 + 996: 5,31 + 1208: -6,21 + 1209: -5,21 + 1218: -6,22 + 1220: -7,21 + 1221: -8,21 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineW + decals: + 51: -4,79 + 440: -2,74 + 441: -2,73 + 442: -2,71 + 443: -2,70 + 2307: 29,4 + 2308: 29,5 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineW + decals: + 899: 10,25 + 900: 10,24 + 901: 10,23 + 902: 10,22 + 1254: 18,29 + 1255: 18,28 + 1256: 18,27 + 1257: 18,26 + - node: + color: '#A4610696' + id: BrickTileWhiteLineW + decals: + 62: 0,82 + 2058: -41,11 + 2059: -41,10 + 2060: -41,9 + 2061: -41,8 + 2062: -41,7 + 2063: -41,3 + 2064: -44,-1 + 2065: -44,-2 + 2066: -44,-3 + 2077: -36,6 + 2100: -40,30 + 2101: -40,29 + 2102: -40,20 + 2103: -40,19 + 2104: -40,18 + 2105: -40,17 + 5117: -43,26 + 5118: -43,25 + 5119: -43,24 + 5120: -43,23 + 5121: -43,22 + 5122: -43,21 + - node: + color: '#D381C996' + id: BrickTileWhiteLineW + decals: + 67: -3,82 + 1042: -19,31 + 1047: -22,33 + 1155: -22,24 + 1156: -22,23 + 1157: -22,22 + 1158: -22,21 + 1159: -22,20 + 1160: -22,19 + 1161: -22,18 + 1162: -22,17 + 1176: -19,17 + 1177: -19,18 + 1178: -19,19 + 1179: -19,20 + 1180: -18,21 + 1781: -6,18 + 1782: -6,17 + 1783: -6,16 + - node: + color: '#D56F18EF' + id: BrickTileWhiteLineW + decals: + 932: 2,22 + 933: 2,23 + 934: 2,24 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineW + decals: + 74: 0,79 + 577: -12,60 + 578: -12,59 + 579: -12,58 + 580: -12,57 + 581: -17,56 + 582: -17,55 + 583: -17,54 + 584: -20,53 + 585: -20,52 + 586: -20,51 + 587: -20,50 + 588: -20,49 + 589: -20,48 + 590: -20,47 + 591: -20,46 + 592: -20,45 + 681: -7,61 + 682: -7,60 + 683: -7,59 + 2116: -4,56 + 2117: -4,55 + 2118: -4,54 + 2119: -4,53 + 2140: -37,-6 + 2141: -37,-5 + 2142: -37,-4 + 2143: -37,-3 + 2144: -37,-2 + 2145: -37,-1 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineW + decals: + 73: -7,81 + 1391: 6,-16 + 1392: 6,-15 + 1393: 6,-14 + 1394: 6,-13 + 1699: 11,-38 + 1700: 11,-37 + 1701: 11,-36 + 1702: 4,-35 + 1703: 4,-34 + 1704: 4,-33 + 1705: 9,-27 + 1706: 9,-26 + 1707: 9,-25 + 1708: 9,-24 + 1709: 9,-23 + 1710: 9,-22 + 1711: 9,-21 + 1724: 4,-22 + 1725: 4,-21 + 1726: 4,-20 + 1727: 4,-19 + 1908: -14,-22 + 1909: -14,-23 + 1910: -14,-24 + 1911: -14,-25 + 1912: -14,-32 + 1913: -14,-33 + 1914: -14,-34 + 1915: -14,-35 + 1916: -14,-36 + 1917: -14,-37 + 1918: -14,-38 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineW + decals: + 855: 6,18 + 856: 6,19 + 857: 6,20 + 858: 10,22 + 859: 10,23 + 860: 10,24 + 861: 10,25 + 913: 11,26 + 914: 11,25 + 915: 11,24 + 927: 2,24 + 928: 2,23 + 929: 2,22 + 959: 3,23 + 997: 4,32 + - node: + color: '#80C71FA4' + id: Busha1 + decals: + 4979: -47.70598,40.43374 + - node: + color: '#80C71FAB' + id: Busha1 + decals: + 2331: 22.65236,20.282064 + - node: + color: '#FFFFFF7F' + id: Busha1 + decals: + 2280: 32.123173,40.915573 + - node: + color: '#80C71FA4' + id: Busha2 + decals: + 4981: -45.230186,40.743168 + - node: + color: '#80C71FCA' + id: Busha2 + decals: + 2330: 22.247696,21.53798 + - node: + color: '#FFFFFF7F' + id: Busha2 + decals: + 2279: 28.87165,40.802044 + 2281: 32.094776,39.978962 + - node: + color: '#FFFFFF7F' + id: Busha3 + decals: + 2282: 28.928446,39.978962 + - node: + color: '#80C71FA4' + id: Bushb1 + decals: + 4978: -46.05545,40.68423 + 4982: -47.396503,39.873817 + - node: + color: '#80C71FCA' + id: Bushb1 + decals: + 2329: 21.225384,20.367212 + - node: + color: '#FFFFFF7F' + id: Bushb1 + decals: + 2283: 28.857452,41.01491 + 2284: 32.123173,41.043293 + - node: + color: '#80C71FAB' + id: Bushb3 + decals: + 2332: 26.187859,16.8762 + - node: + color: '#80C71FA4' + id: Bushc2 + decals: + 4980: -45.30387,39.903286 + - node: + color: '#FFFFFF7F' + id: Bushf1 + decals: + 2275: 28.885849,40.418884 + 2276: 32.13737,41.057484 + - node: + color: '#80C71FAB' + id: Bushf2 + decals: + 2333: 26.99719,17.621233 + - node: + color: '#FFFFFF7F' + id: Bushf3 + decals: + 2273: 32.108974,39.865433 + 2274: 28.87165,41.01491 + - node: + color: '#FFFFFF7F' + id: Bushg3 + decals: + 2277: 28.843252,39.879623 + 2278: 32.165768,40.518223 + - node: + color: '#DE3A3A96' + id: CautionGreyscale + decals: + 628: -4.9917116,48.825462 + 629: -3.992663,48.8136 + - node: + angle: 1.5707963267948966 rad + color: '#DE3A3A96' + id: CautionGreyscale + decals: + 693: -22.808884,47.519577 + 694: -21.814968,47.519577 + - node: + color: '#79150096' + id: CheckerNESW + decals: + 1441: -3,11 + 1442: -3,10 + 1443: -3,9 + 1444: -3,8 + 1445: -3,7 + 1446: 1,11 + 1447: 1,10 + 1448: 1,8 + 1449: 1,9 + 1450: 1,7 + 1451: 0,8 + 1452: -1,8 + 1453: -2,8 + 1454: -2,9 + 1455: -1,9 + 1456: 0,9 + 1457: -3,6 + 1458: -3,5 + 1459: -3,4 + 1460: -3,3 + 1461: -2,4 + 1462: -1,4 + 1463: 0,4 + 1464: -2,3 + 1465: -1,3 + 1466: 0,3 + 1467: 1,3 + 1468: 1,4 + 1469: 1,5 + 1470: 1,6 + 1471: -3,2 + 1472: -3,1 + 1473: -3,0 + 1474: -3,-1 + 1475: -3,-2 + 1476: -2,-1 + 1477: -2,-2 + 1478: -1,-2 + 1479: -1,-1 + 1480: 0,-1 + 1481: 0,-2 + 1482: 1,-2 + 1483: 1,-1 + 1484: 1,0 + 1485: 1,1 + 1486: 1,2 + 1487: 1,-3 + 1488: 1,-4 + 1489: 1,-5 + 1490: 1,-6 + 1491: -3,-6 + 1492: -3,-5 + 1493: -3,-4 + 1494: -3,-3 + 1495: -4,-2 + 1496: -5,-2 + 1497: -6,-2 + 1498: -7,-2 + 1499: -7,-1 + 1500: -6,-1 + 1501: -5,-1 + 1502: -4,-1 + 1503: -14,-1 + 1504: -14,-2 + 1505: -13,-2 + 1506: -12,-1 + 1507: -12,-2 + 1508: -13,-1 + 1509: -11,-1 + 1510: -11,-2 + 1511: -10,-2 + 1512: -10,-1 + 1513: -9,-1 + 1514: -9,-2 + 1515: -8,-2 + 1516: -8,-1 + 1517: -14,3 + 1518: -13,3 + 1519: -12,3 + 1520: -11,3 + 1521: -10,3 + 1522: -9,3 + 1523: -8,3 + 1524: -6,3 + 1525: -7,3 + 1526: -5,3 + 1527: -4,3 + 1528: -14,4 + 1529: -13,4 + 1530: -12,4 + 1531: -11,4 + 1532: -4,4 + - node: + color: '#3E5C23A8' + id: CheckerNWSE + decals: + 1577: 6,6 + 1578: 6,7 + 1579: 6,8 + 1580: 6,9 + 1581: 6,10 + 1582: 7,10 + 1583: 8,10 + 1584: 9,10 + 1585: 10,10 + 1586: 10,9 + 1587: 10,8 + 1588: 10,7 + 1589: 10,6 + 1590: 10,5 + 1591: 9,5 + 1592: 8,5 + 1593: 7,5 + 1594: 6,5 + - node: + color: '#79150096' + id: CheckerNWSE + decals: + 1640: 9,-7 + 1641: 10,-7 + 1642: 11,-7 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 1275: -13,-30 + 1276: -13,-29 + 1277: -13,-28 + 1278: -13,-27 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Delivery + decals: + 1986: -41,2 + 1987: -41,4 + - node: + color: '#52B4E996' + id: DeliveryGreyscale + decals: + 2249: 27,3 + - node: + color: '#334E6DC8' + id: DiagonalCheckerAOverlay + decals: + 2222: 13,53 + 2223: 13,54 + 2224: 11,54 + 2225: 12,54 + 2226: 12,53 + 2227: 11,53 + 2228: 10,53 + 2229: 10,54 + 2230: 9,54 + 2231: 9,53 + 2232: 8,53 + 2233: 8,54 + - node: + color: '#52B4E996' + id: DiagonalCheckerAOverlay + decals: + 903: 11,23 + 904: 11,24 + 905: 11,25 + 906: 11,26 + 907: 11,27 + 981: 4,31 + 982: 4,32 + 983: 4,33 + 984: 6,33 + 985: 6,32 + 986: 6,31 + 987: 5,31 + 988: 5,32 + 990: 5,33 + - node: + color: '#83543273' + id: Dirt + decals: + 2408: 6,-9 + 2409: 4,-9 + 2410: 2,-9 + 2411: 0,-9 + 2412: -2,-9 + 2413: -4,-9 + 2414: -6,-9 + 2415: -7,-9 + 2416: -9,-9 + 2417: -11,-9 + 2418: -13,-9 + 2419: -15,-9 + 2420: -17,-9 + 2421: -18,-9 + 2422: -19,-9 + 2423: -21,-9 + 2424: -23,-9 + 2425: -25,-9 + 2426: -27,-9 + 2427: -30,-9 + 2428: -32,-9 + 2429: -32,-7 + 2430: -32,-4 + 2431: -32,-1 + 2432: -32,0 + 2433: -32,4 + 2434: -32,8 + 2435: -32,12 + 2436: -32,14 + 2437: -34,14 + 2438: -36,14 + 2439: -38,14 + 2440: -39,14 + 2441: -42,14 + 2442: -44,14 + 2443: -46,14 + 2444: -48,14 + 2445: -50,14 + 2446: -48,14 + 2447: -46,14 + 2448: -44,14 + 2449: -42,14 + 2450: -40,14 + 2451: -38,14 + 2452: -36,14 + 2453: -29,14 + 2454: -27,14 + 2455: -25,14 + 2456: -23,14 + 2457: -21,14 + 2458: -19,14 + 2459: -17,14 + 2460: -15,14 + 2461: -13,14 + 2462: -11,14 + 2463: -9,14 + 2464: -7,14 + 2465: -5,14 + 2466: -3,14 + 2467: -1,14 + 2468: 1,14 + 2469: 3,14 + 2470: 5,14 + 2471: 7,14 + 2472: 9,14 + 2473: 11,14 + 2474: 13,14 + 2475: 15,14 + 2476: 17,14 + 2477: 19,14 + 2478: 21,14 + 2479: 23,14 + 2480: 25,14 + 2481: 27,14 + 2482: 29,14 + 2483: 31,14 + 2484: 33,14 + 2485: 35,14 + 2486: 37,14 + 2487: 39,14 + 2488: 41,14 + 2489: 43,14 + 2490: 45,14 + 2491: 47,14 + 2492: 49,14 + 2493: 30,14 + 2494: 30,15 + 2495: 30,17 + 2496: 30,19 + 2497: 30,22 + 2498: 30,24 + 2499: 30,26 + 2500: 30,28 + 2501: 30,30 + 2502: 30,32 + 2503: 30,34 + 2504: 31,28 + 2505: 31,24 + 2506: 31,20 + 2507: 32,19 + 2508: 31,10 + 2509: 31,6 + 2510: 30,5 + 2511: 28,3 + - node: + cleanable: True + color: '#83543273' + id: Dirt + decals: + 2512: 27,3 + 2513: 27,4 + 2514: 27,5 + 2515: 27,6 + 2516: 28,6 + 2517: 29,6 + 2518: 29,5 + 2519: 31,5 + 2520: 32,6 + 2521: 32,11 + 2522: 32,14 + 2523: 26,14 + 2524: 21,14 + 2525: 18,14 + 2526: 16,14 + 2527: 14,14 + 2528: 10,14 + 2529: 5,14 + 2530: 2,14 + 2531: -4,14 + 2532: -7,14 + 2533: -10,14 + 2534: -13,14 + 2535: -15,14 + 2536: -19,14 + 2537: -21,14 + 2538: -26,14 + 2539: -28,13 + 2540: -30,13 + 2541: -33,14 + 2542: -35,14 + 2543: -37,13 + 2544: -39,14 + 2545: -41,14 + 2546: -39,15 + 2547: -38,15 + 2548: -37,14 + 2549: -48,13 + 2550: -50,13 + 2551: -51,15 + 2552: -51,13 + 2553: -53,13 + 2554: -53,15 + 2555: -51,14 + 2556: -34,4 + 2557: -34,6 + 2558: -34,7 + 2559: -34,5 + 2560: -36,5 + 2561: -36,4 + 2562: -36,6 + 2563: -36,7 + 2564: -35,7 + 2565: -31,7 + 2566: -31,6 + 2567: -31,4 + 2568: -34,4 + 2569: -36,2 + 2570: -37,2 + 2571: -39,2 + 2572: -41,1 + 2573: -41,0 + 2574: -40,0 + 2575: -40,1 + 2576: -42,2 + 2577: -43,2 + 2578: -44,2 + 2579: -45,2 + 2580: -44,4 + 2581: -43,4 + 2582: -43,4 + 2583: -42,4 + 2584: -40,4 + 2585: -39,6 + 2586: -39,5 + 2587: -40,6 + 2588: -41,8 + 2589: -41,10 + 2590: -41,10 + 2591: -39,7 + 2592: -38,7 + 2593: -41,-1 + 2594: -42,-3 + 2595: -41,-3 + 2596: -42,-4 + 2597: -41,-4 + 2598: -42,-5 + 2599: -42,-6 + 2600: -41,-7 + 2601: -42,-8 + 2602: -44,-8 + 2603: -43,-6 + 2604: -40,-6 + 2605: -39,-6 + 2606: -39,-8 + 2607: -41,-8 + 2608: -39,-5 + 2609: -42,-2 + 2610: -42,-1 + 2611: -39,-2 + 2612: -39,1 + 2613: -37,1 + 2614: -36,-3 + 2615: -35,-5 + 2616: -35,-5 + 2617: -37,-3 + 2618: -40,-2 + 2619: -35,-6 + 2620: -36,-5 + 2621: -36,-4 + 2622: -37,-3 + 2623: -37,-2 + 2624: -33,-5 + 2625: -32,-5 + 2626: -33,-5 + 2627: -32,-3 + 2628: -32,-2 + 2629: -32,1 + 2630: -32,4 + 2631: -32,8 + 2632: -32,5 + 2633: -32,6 + 2634: -33,7 + 2635: -33,6 + 2636: -33,4 + 2637: -33,3 + 2638: -32,2 + 2639: -32,3 + 2640: -31,0 + 2641: -31,1 + 2642: -32,-6 + 2643: -31,-7 + 2644: -31,-8 + 2645: -30,-8 + 2646: -29,-9 + 2647: -28,-9 + 2648: -27,-8 + 2649: -28,-8 + 2650: -27,-9 + 2651: -28,-10 + 2652: -27,-10 + 2653: -29,-10 + 2654: -25,-9 + 2655: -21,-9 + 2656: -19,-9 + 2657: -17,-9 + 2658: -14,-9 + 2659: -11,-9 + 2660: -9,-9 + 2661: -6,-9 + 2662: -4,-9 + 2663: -2,-9 + 2664: 2,-9 + 2665: 4,-9 + 2666: 6,-9 + 2667: 9,-9 + 2668: 11,-9 + 2669: 13,-9 + 2670: 15,-9 + 2671: 18,-9 + 2672: 20,-9 + 2673: 23,-9 + 2674: 25,-9 + 2675: 27,-9 + 2676: 30,-9 + 2677: 32,-9 + 2678: 35,-9 + 2679: 37,-9 + 2680: 39,-9 + 2681: 42,-9 + 2682: 44,-9 + 2683: 46,-9 + 2684: 48,-9 + 2685: 46,-10 + 2686: 46,-9 + 2687: 47,-9 + 2688: 48,-10 + 2689: 49,-10 + 2690: 49,-9 + 2691: 50,-8 + 2692: 51,-8 + 2693: 50,-8 + 2694: 50,-10 + 2695: 48,-10 + 2696: 44,-10 + 2697: 38,-10 + 2698: 39,-10 + 2699: 41,-10 + 2700: 40,-9 + 2701: 38,-9 + 2702: 38,-10 + 2703: 37,-9 + 2704: 34,-8 + 2705: 33,-8 + 2706: 32,-8 + 2707: 32,-7 + 2708: 30,-8 + 2709: 30,-7 + 2710: 29,-8 + 2711: 29,-10 + 2712: 30,-10 + 2713: 26,-11 + 2714: 27,-10 + 2715: 27,-11 + 2716: 27,-12 + 2717: 27,-13 + 2718: 28,-13 + 2719: 28,-14 + 2720: 28,-15 + 2721: 27,-14 + 2722: 28,-14 + 2723: 27,-9 + 2724: 30,-5 + 2725: 30,-2 + 2726: 32,-2 + 2727: 31,-3 + 2728: 30,-4 + 2729: 30,-4 + 2730: 31,-6 + 2731: 32,-5 + 2732: 30,-1 + 2733: 30,2 + 2734: 29,3 + 2735: 33,3 + 2736: 34,0 + 2737: 34,2 + 2738: 34,5 + 2739: 34,1 + 2740: 32,0 + 2741: 29,4 + 2742: 31,8 + 2743: 32,11 + 2744: 30,14 + 2745: 35,13 + 2746: 39,12 + 2747: 42,14 + 2748: 45,14 + 2749: 50,13 + 2750: 51,13 + 2751: 51,15 + 2752: 50,15 + 2753: 51,15 + 2754: 49,15 + 2755: 48,15 + 2756: 48,17 + 2757: 48,17 + 2758: 48,15 + 2759: 46,15 + 2760: 46,16 + 2761: 46,17 + 2762: 46,15 + 2763: 45,13 + 2764: 48,13 + 2765: 50,13 + 2766: 49,13 + 2767: 46,13 + 2768: 42,13 + 2769: 40,14 + 2770: 39,14 + 2771: 36,13 + 2772: 34,15 + 2773: 31,14 + 2774: 30,13 + 2775: 27,13 + 2776: 26,14 + 2777: 24,15 + 2778: 22,14 + 2779: 21,13 + 2780: 30,16 + 2781: 31,18 + 2782: 29,20 + 2783: 31,22 + 2784: 30,24 + 2785: 28,26 + 2786: 29,26 + 2787: 28,26 + 2788: 28,28 + 2789: 27,25 + 2790: 28,25 + 2791: 28,25 + 2792: 29,25 + 2793: 28,28 + 2794: 29,32 + 2795: 29,32 + 2796: 29,33 + 2797: 27,33 + 2798: 27,32 + 2799: 26,32 + 2800: 25,33 + 2801: 25,35 + 2802: 25,35 + 2803: 26,35 + 2804: 25,36 + 2805: 27,36 + 2806: 25,36 + 2807: 26,36 + 2808: 27,36 + 2809: 30,36 + 2810: 30,37 + 2811: 30,38 + 2812: 31,41 + 2813: 30,41 + 2814: 31,40 + 2815: 30,44 + 2816: 30,45 + 2817: 31,46 + 2818: 31,44 + 2819: 30,47 + 2820: 31,49 + 2821: 32,47 + 2822: 35,47 + 2823: 34,48 + 2824: 31,47 + 2825: 28,47 + 2826: 27,47 + 2827: 27,45 + 2828: 27,43 + 2829: 27,47 + 2830: 27,49 + 2831: 29,47 + 2832: 31,48 + 2833: 32,37 + 2834: 34,37 + 2835: 37,37 + 2836: 41,38 + 2837: 46,37 + 2838: 34,38 + 2839: 34,38 + 2840: 36,38 + 2841: 35,38 + 2842: 35,37 + 2843: 39,37 + 2844: 45,36 + 2845: 41,37 + 2846: 41,39 + 2847: 43,40 + 2848: 42,40 + 2849: 41,40 + 2850: 42,40 + 2851: 41,40 + 2852: 45,40 + 2853: 47,41 + 2854: 47,43 + 2855: 47,44 + 2856: 46,42 + 2857: 47,38 + 2858: 47,37 + 2859: 48,40 + 2860: 48,38 + 2861: 49,37 + 2862: 49,36 + 2863: 50,38 + 2864: 51,38 + 2865: 51,38 + 2866: 48,38 + 2867: 51,36 + 2868: 50,36 + 2869: 49,36 + 2870: 51,36 + 2871: 49,38 + 2872: 48,36 + 2873: 48,35 + 2874: 48,35 + 2875: 49,34 + 2876: 47,35 + 2877: 44,36 + 2878: 46,35 + 2879: 46,35 + 2880: 46,36 + 2881: 46,34 + 2882: 46,34 + 2883: 46,37 + 2884: 43,36 + 2885: 43,36 + 2886: 45,38 + 2887: 44,38 + 2888: 45,39 + 2889: 42,39 + 2890: 46,37 + 2891: 43,37 + 2892: 41,37 + 2893: 44,38 + 2894: 45,38 + 2895: 38,37 + 2896: 41,37 + 2897: 42,37 + 2898: 40,37 + 2899: 42,39 + 2900: 41,40 + 2901: 45,43 + 2902: 45,43 + 2903: 44,43 + 2904: 41,43 + 2905: 41,43 + 2906: 43,43 + 2907: 44,43 + 2908: 41,43 + 2909: 44,42 + 2910: 43,42 + 2911: 27,37 + 2912: 25,38 + 2913: 24,38 + 2914: 25,38 + 2915: 26,38 + 2916: 22,40 + 2917: 22,42 + 2918: 20,42 + 2919: 18,41 + 2920: 17,40 + 2921: 18,39 + 2922: 19,41 + 2923: 22,41 + 2924: 22,40 + 2925: 24,38 + 2926: 17,38 + 2927: 14,39 + 2928: 14,41 + 2929: 14,42 + 2930: 13,42 + 2931: 12,44 + 2932: 12,45 + 2933: 14,45 + 2934: 16,46 + 2935: 17,46 + 2936: 18,46 + 2937: 18,45 + 2938: 18,45 + 2939: 18,46 + 2940: 17,46 + 2941: 18,45 + 2942: 20,45 + 2943: 21,45 + 2944: 21,46 + 2945: 21,47 + 2946: 21,48 + 2947: 20,49 + 2948: 16,50 + 2949: 15,47 + 2950: 15,48 + 2951: 15,49 + 2952: 14,44 + 2953: 15,37 + 2954: 13,38 + 2955: 11,38 + 2956: 7,38 + 2957: 12,38 + 2958: 12,38 + 2959: 7,36 + 2960: 3,36 + 2961: 0,36 + 2962: 0,37 + 2963: 5,37 + 2964: 4,37 + 2965: -5,37 + 2966: -9,37 + 2967: -12,37 + 2968: -13,37 + 2969: -7,37 + 2970: -6,37 + 2971: -13,38 + 2972: -18,37 + 2973: -22,37 + 2974: -27,37 + 2975: -29,37 + 2976: -13,42 + 2977: -14,42 + 2978: -14,41 + 2979: -13,41 + 2980: -13,42 + 2981: -15,40 + 2982: -13,40 + 2983: -13,41 + 2984: -14,40 + 2985: -14,40 + 2986: -13,42 + 2987: -13,42 + 2988: -14,40 + 2989: -13,42 + 2990: -11,42 + 2991: -10,41 + 2992: -11,40 + 2993: -11,42 + 2994: -11,41 + 2995: -10,41 + 2996: -11,42 + 2997: -11,40 + 2998: -10,40 + 2999: -10,42 + 3000: -10,40 + 3001: -10,41 + 3002: -10,42 + 3003: -10,42 + 3004: -10,42 + 3005: -7,42 + 3006: -7,41 + 3007: -7,40 + 3008: -7,42 + 3009: -7,40 + 3010: -7,40 + 3011: -8,42 + 3012: -7,40 + 3013: -7,42 + 3014: -8,41 + 3015: -7,42 + 3016: -7,42 + 3017: -4,42 + 3018: -4,41 + 3019: -5,41 + 3020: -5,40 + 3021: -4,40 + 3022: -4,41 + 3023: -5,42 + 3024: -5,42 + 3025: -4,40 + 3026: -4,40 + 3027: -5,42 + 3028: -5,40 + 3029: -4,42 + 3030: -4,42 + 3031: -4,42 + 3032: -5,41 + 3033: -4,44 + 3034: -5,45 + 3035: -7,45 + 3036: -9,46 + 3037: -6,44 + 3038: -8,45 + 3039: -7,44 + 3040: -8,46 + 3041: -12,46 + 3042: -10,44 + 3043: -11,45 + 3044: -13,46 + 3045: -11,45 + 3046: -10,43 + 3047: -13,45 + 3048: -12,43 + 3049: -14,45 + 3050: -15,46 + 3051: -13,44 + 3052: -16,46 + 3053: -14,45 + 3054: -17,46 + 3055: -18,47 + 3056: -18,50 + 3057: -17,52 + 3058: -17,46 + 3059: -18,48 + 3060: -19,48 + 3061: -20,47 + 3062: -20,48 + 3063: -22,48 + 3064: -22,47 + 3065: -23,47 + 3066: -23,48 + 3067: -24,48 + 3068: -22,49 + 3069: -23,46 + 3070: -24,46 + 3071: -22,46 + 3072: -22,49 + 3073: -23,49 + 3074: -22,46 + 3075: -25,48 + 3076: -26,47 + 3077: -26,47 + 3078: -25,48 + 3079: -29,47 + 3080: -29,48 + 3081: -28,48 + 3082: -29,47 + 3083: -28,48 + 3084: -31,47 + 3085: -32,48 + 3086: -36,48 + 3087: -35,47 + 3088: -33,47 + 3089: -34,48 + 3090: -35,48 + 3091: -32,48 + 3092: -32,46 + 3093: -32,45 + 3094: -32,43 + 3095: -34,43 + 3096: -35,43 + 3097: -30,42 + 3098: -30,43 + 3099: -36,43 + 3100: -35,43 + 3101: -31,42 + 3102: -30,43 + 3103: -34,43 + 3104: -27,42 + 3105: -28,43 + 3106: -28,45 + 3107: -29,45 + 3108: -29,44 + 3109: -29,43 + 3110: -18,49 + 3111: -18,52 + 3112: -16,54 + 3113: -15,55 + 3114: -14,53 + 3115: -11,54 + 3116: -10,56 + 3117: -11,58 + 3118: -10,59 + 3119: -11,59 + 3120: -12,59 + 3121: -14,59 + 3122: -16,59 + 3123: -14,59 + 3124: -14,59 + 3125: -12,59 + 3126: -11,58 + 3127: -10,59 + 3128: -9,59 + 3129: -7,59 + 3130: -6,60 + 3131: -7,59 + 3132: -7,60 + 3133: -7,61 + 3134: -7,62 + 3135: -9,63 + 3136: -9,64 + 3137: -9,62 + 3138: -6,63 + 3139: -9,58 + 3140: -9,54 + 3141: -9,53 + 3142: -8,55 + 3143: -7,56 + 3144: -7,54 + 3145: -6,53 + 3146: -7,53 + 3147: -8,55 + 3148: -11,55 + 3149: -9,51 + 3150: -10,50 + 3151: -6,50 + 3152: -3,50 + 3153: -2,50 + 3154: -5,50 + 3155: -8,50 + 3156: -6,50 + 3157: -2,50 + 3158: -2,50 + 3159: -4,50 + 3160: -4,50 + 3161: -2,51 + 3162: -2,51 + 3163: -4,53 + 3164: -4,53 + 3165: -4,54 + 3166: -1,52 + 3167: -1,54 + 3168: 0,57 + 3169: 0,60 + 3170: 0,56 + 3171: 0,54 + 3172: 0,52 + 3173: -2,53 + 3174: -1,56 + 3175: -2,59 + 3176: -1,60 + 3177: -1,64 + 3178: -1,66 + 3179: 0,68 + 3180: 0,67 + 3181: 0,66 + 3182: 0,62 + 3183: 0,59 + 3184: -2,61 + 3185: -1,66 + 3186: -1,69 + 3187: -2,65 + 3188: -1,68 + 3189: -2,71 + 3190: -2,74 + 3191: -1,77 + 3192: 0,67 + 3193: 0,71 + 3194: 0,75 + 3195: 0,78 + 3196: -3,77 + 3197: -5,78 + 3198: -4,79 + 3199: -3,80 + 3200: -4,78 + 3201: -6,77 + 3202: -6,80 + 3203: -4,81 + 3204: -1,81 + 3205: 1,82 + 3206: 3,81 + 3207: 4,81 + 3208: 4,78 + 3209: 5,77 + 3210: 6,76 + 3211: 2,76 + 3212: 1,78 + 3213: -1,79 + 3214: -4,78 + 3215: 1,79 + 3216: 2,79 + 3217: 2,80 + 3218: 4,80 + 3219: 4,78 + 3220: -2,77 + 3221: -6,78 + 3222: -6,80 + 3223: -4,82 + 3224: -8,76 + 3225: -8,75 + 3226: -6,76 + 3227: -6,74 + 3228: -9,72 + 3229: -8,72 + 3230: -9,71 + 3231: -9,70 + 3232: -9,69 + 3233: -8,70 + 3234: -8,69 + 3235: -9,69 + 3236: -9,72 + 3237: -6,75 + 3238: -6,76 + 3239: 1,67 + 3240: 4,67 + 3241: 8,67 + 3242: 9,68 + 3243: 10,69 + 3244: 13,69 + 3245: 7,66 + 3246: 6,67 + 3247: 7,66 + 3248: 9,67 + 3249: 7,66 + 3250: 6,66 + 3251: 9,66 + 3252: 8,66 + 3253: 1,67 + 3254: -1,66 + 3255: 0,62 + 3256: -1,59 + 3257: 1,56 + 3258: 3,55 + 3259: 2,56 + 3260: 3,56 + 3261: 4,56 + 3262: 5,55 + 3263: 7,53 + 3264: 10,53 + 3265: 11,53 + 3266: 14,54 + 3267: 13,55 + 3268: 10,54 + 3269: 7,54 + 3270: 6,52 + 3271: 8,52 + 3272: 11,52 + 3273: 13,52 + 3274: 14,52 + 3275: 11,52 + 3276: 7,52 + 3277: 5,53 + 3278: 3,53 + 3279: 4,53 + 3280: 1,53 + 3281: 0,52 + 3282: 2,52 + 3283: 4,53 + 3284: 0,53 + 3285: 0,50 + 3286: -1,50 + 3287: -1,49 + 3288: -1,47 + 3289: -1,45 + 3290: -1,47 + 3291: -3,48 + 3292: -2,47 + 3293: -2,47 + 3294: -2,48 + 3295: -1,48 + 3296: -1,46 + 3297: -1,44 + 3298: -1,44 + 3299: -2,40 + 3300: -2,39 + 3301: -3,38 + 3302: -4,37 + 3303: -2,38 + 3304: -2,40 + 3305: -2,38 + 3306: -4,38 + 3307: 0,40 + 3308: 0,38 + 3309: 2,37 + 3310: 1,38 + 3311: 0,39 + 3312: -1,40 + 3313: -1,41 + 3314: -1,43 + 3315: -1,44 + 3316: -1,44 + 3317: 1,37 + 3318: 2,37 + 3319: 5,37 + 3320: 10,37 + 3321: 5,37 + 3322: 12,37 + 3323: 15,37 + 3324: 20,37 + 3325: 20,37 + 3326: 11,37 + 3327: 2,37 + 3328: -1,35 + 3329: -1,33 + 3330: -1,31 + 3331: -1,29 + 3332: -1,28 + 3333: -1,28 + 3334: -1,26 + 3335: -1,24 + 3336: -1,22 + 3337: -1,21 + 3338: -1,20 + 3339: -1,18 + 3340: -5,18 + 3341: -6,18 + 3342: -7,18 + 3343: -6,17 + 3344: -7,17 + 3345: -10,17 + 3346: -12,17 + 3347: -9,17 + 3348: -7,17 + 3349: -11,18 + 3350: -9,18 + 3351: -8,17 + 3352: -10,17 + 3353: -6,17 + 3354: -3,17 + 3355: 1,17 + 3356: 5,17 + 3357: 6,17 + 3358: 3,18 + 3359: 10,18 + 3360: 5,18 + 3361: 8,18 + 3362: 12,18 + 3363: 16,18 + 3364: 16,19 + 3365: 15,20 + 3366: 15,20 + 3367: 15,19 + 3368: 14,20 + 3369: 15,20 + 3370: 16,19 + 3371: 10,18 + 3372: 7,18 + 3373: 6,18 + 3374: 5,17 + 3375: 11,19 + 3376: 11,20 + 3377: 11,23 + 3378: 11,22 + 3379: 11,21 + 3380: 10,23 + 3381: 10,24 + 3382: 10,26 + 3383: 11,27 + 3384: 11,25 + 3385: 10,26 + 3386: 9,27 + 3387: 7,28 + 3388: 6,28 + 3389: 8,27 + 3390: 6,25 + 3391: 4,23 + 3392: 3,22 + 3393: 7,23 + 3394: 5,24 + 3395: 3,24 + 3396: 7,27 + 3397: 6,28 + 3398: 6,30 + 3399: 6,33 + 3400: 5,34 + 3401: 4,33 + 3402: 4,32 + 3403: 4,31 + 3404: 4,29 + 3405: 3,27 + 3406: 4,27 + 3407: 4,27 + 3408: 4,29 + 3409: 5,32 + 3410: 5,33 + 3411: 6,31 + 3412: 6,29 + 3413: 7,29 + 3414: 7,31 + 3415: 8,28 + 3416: 11,28 + 3417: 11,28 + 3418: 13,28 + 3419: 15,28 + 3420: 12,28 + 3421: 14,28 + 3422: 19,29 + 3423: 19,30 + 3424: 19,29 + 3425: 19,31 + 3426: 19,32 + 3427: 20,33 + 3428: 20,34 + 3429: 20,33 + 3430: 19,31 + 3431: 18,31 + 3432: 18,33 + 3433: 18,27 + 3434: 19,26 + 3435: 22,27 + 3436: 21,26 + 3437: 21,26 + 3438: 21,27 + 3439: 21,28 + 3440: 20,32 + 3441: 20,33 + 3442: 20,33 + 3443: 19,32 + 3444: 19,31 + 3445: 19,34 + 3446: 19,34 + 3447: 20,33 + 3448: 20,31 + 3449: 20,31 + 3450: 20,32 + 3451: 20,33 + 3452: 20,34 + 3453: 20,32 + 3454: 19,32 + 3455: 19,34 + 3456: 19,31 + 3457: 14,17 + 3458: 11,22 + 3459: 10,23 + 3460: 10,25 + 3461: 18,14 + 3462: 20,14 + 3463: 25,14 + 3464: 23,14 + 3465: 23,17 + 3466: 25,19 + 3467: 26,21 + 3468: 27,22 + 3469: 26,21 + 3470: 24,19 + 3471: 23,18 + 3472: 22,18 + 3473: 22,19 + 3474: 24,20 + 3475: 26,22 + 3476: 27,22 + 3477: 27,20 + 3478: 24,18 + 3479: 23,18 + 3480: 27,20 + 3481: 26,20 + 3482: 25,18 + 3483: 25,17 + 3484: 24,17 + 3485: 24,16 + 3486: 23,15 + 3487: 23,16 + 3488: 25,16 + 3489: 25,16 + 3490: 24,16 + 3491: 25,17 + 3492: 28,19 + 3493: 29,20 + 3494: 29,21 + 3495: 28,19 + 3496: 28,20 + 3497: 29,21 + 3498: 29,22 + 3499: 27,25 + 3500: 30,31 + 3501: 30,28 + 3502: 31,26 + 3503: 31,19 + 3504: 31,18 + 3505: 33,16 + 3506: 39,14 + 3507: 44,15 + 3508: 19,13 + 3509: 18,13 + 3510: 17,14 + 3511: 17,13 + 3512: 18,13 + 3513: 19,15 + 3514: 18,14 + 3515: 18,15 + 3516: 23,16 + 3517: 22,17 + 3518: 25,21 + 3519: 27,21 + 3520: 28,21 + 3521: 27,19 + 3522: 27,21 + 3523: 25,18 + 3524: 24,17 + 3539: 10,-12 + 3540: 11,-12 + 3541: 11,-13 + 3542: 11,-15 + 3543: 11,-16 + 3544: 12,-17 + 3545: 11,-15 + 3546: 10,-11 + 3547: 8,-14 + 3548: 5,-16 + 3549: 6,-16 + 3550: 10,-12 + 3551: 12,-14 + 3552: 12,-17 + 3553: 12,-18 + 3554: 11,-14 + 3555: 9,-12 + 3556: 9,-13 + 3557: 5,-13 + 3558: 4,-10 + 3559: 4,-11 + 3560: 4,-13 + 3561: 4,-14 + 3562: 2,-14 + 3563: 4,-11 + 3564: 4,-12 + 3565: 3,-13 + 3566: -4,-14 + 3567: -6,-13 + 3568: -6,-11 + 3569: -7,-8 + 3570: -3,-13 + 3571: -6,-11 + 3572: -7,-9 + 3573: -5,-14 + 3574: -5,-10 + 3575: -1,-11 + 3576: 0,-11 + 3577: -5,-14 + 3578: -6,-11 + 3579: -8,-9 + 3580: -12,-9 + 3581: -10,-10 + 3582: -15,-10 + 3583: -19,-10 + 3584: -19,-13 + 3585: -19,-16 + 3586: -19,-19 + 3587: -16,-10 + 3588: -18,-18 + 3589: -19,-19 + 3590: -17,-12 + 3591: -18,-12 + 3592: -18,-13 + 3593: -19,-12 + 3594: -19,-10 + 3595: -17,-10 + 3596: -15,-9 + 3597: -11,-9 + 3598: -20,-10 + 3599: -20,-10 + 3600: -18,-17 + 3601: -17,-19 + 3602: -17,-20 + 3603: -17,-20 + 3604: -9,-14 + 3605: -13,-12 + 3606: -11,-13 + 3607: -10,-15 + 3608: -10,-15 + 3609: -14,-13 + 3610: -10,-13 + 3611: -9,-16 + 3612: -9,-15 + 3613: -10,-16 + 3614: -9,-16 + 3615: -13,-16 + 3616: -13,-15 + 3617: -13,-13 + 3618: -13,-14 + 3619: -13,-18 + 3620: -13,-19 + 3621: -13,-20 + 3622: -14,-19 + 3623: -12,-19 + 3624: -11,-19 + 3625: -15,-19 + 3626: -8,-19 + 3627: -8,-21 + 3628: -8,-26 + 3629: -8,-28 + 3630: -7,-30 + 3631: -6,-32 + 3632: -9,-34 + 3633: -6,-36 + 3634: -9,-37 + 3635: -10,-39 + 3636: -10,-41 + 3637: -7,-41 + 3638: -9,-39 + 3639: -10,-36 + 3640: -11,-34 + 3641: -10,-38 + 3642: -10,-41 + 3643: -7,-39 + 3644: -7,-33 + 3673: -14,-38 + 3674: -13,-37 + 3675: -13,-35 + 3676: -13,-32 + 3677: -13,-24 + 3678: -13,-24 + 3679: -12,-23 + 3680: -12,-22 + 3681: -13,-22 + 3682: -13,-22 + 3683: -13,-23 + 3684: -13,-24 + 3685: -12,-25 + 3686: 12,-21 + 3687: 12,-22 + 3688: 12,-23 + 3689: 12,-25 + 3690: 12,-27 + 3691: 12,-29 + 3692: 12,-31 + 3693: 12,-33 + 3694: 12,-35 + 3695: 12,-36 + 3696: 12,-37 + 3697: 12,-38 + 3698: 12,-37 + 3699: 12,-35 + 3700: 12,-33 + 3701: 12,-31 + 3702: 12,-29 + 3703: 12,-27 + 3704: 12,-25 + 3705: 12,-23 + 3706: 12,-21 + 3707: 12,-21 + 3708: 12,-25 + 3709: 12,-27 + 3710: 12,-29 + 3711: 12,-34 + 3743: 11,-21 + 3744: 11,-23 + 3745: 11,-25 + 3746: 11,-27 + 3747: 11,-30 + 3748: 11,-32 + 3749: 11,-35 + 3750: 11,-36 + 3751: 11,-35 + 3752: 11,-33 + 3753: 11,-30 + 3754: 11,-27 + 3755: 11,-24 + 3756: 11,-21 + 3757: 13,-24 + 3758: 13,-24 + 3759: 12,-24 + 3760: 11,-24 + 3761: 10,-25 + 3762: 9,-25 + 3763: 10,-25 + 3764: 7,-26 + 3765: 6,-27 + 3766: 4,-26 + 3767: 6,-25 + 3768: 7,-25 + 3769: 10,-21 + 3770: 8,-21 + 3771: 6,-21 + 3772: 5,-20 + 3773: 5,-19 + 3774: 7,-19 + 3776: 7,-18 + 3777: 7,-20 + 3779: 5,-21 + 3780: 5,-21 + 3782: 6,-19 + 3783: 5,-19 + 3784: 6,-20 + 3785: 6,-21 + 3786: 5,-21 + 3791: 10,-21 + 3792: 9,-21 + 3793: 10,-22 + 3794: 9,-22 + 3795: 10,-23 + 3796: 9,-22 + 3797: 11,-22 + 3830: 6,-35 + 3831: 11,-34 + 3832: 7,-37 + 3833: 6,-37 + 3834: 7,-38 + 3835: 7,-37 + 3836: 6,-37 + 3837: 6,-38 + 3838: 6,-38 + 3839: 6,-38 + 3840: 5,-38 + 3841: 4,-40 + 3864: 17,-37 + 3865: 18,-37 + 3866: 18,-37 + 3867: 18,-36 + 3868: 18,-35 + 3869: 18,-35 + 3870: 18,-34 + 3871: 18,-35 + 3872: 18,-35 + 3873: 17,-35 + 3874: 17,-35 + 3875: 17,-34 + 3876: 17,-34 + 3877: 17,-34 + 3878: 17,-34 + 3879: 18,-36 + 3880: 18,-36 + 3881: 18,-36 + 3882: 18,-36 + 3883: 18,-36 + 3894: 15,-41 + 3895: 15,-40 + 3896: 16,-40 + 3897: 16,-41 + 3898: 15,-41 + 3899: 15,-40 + 3900: 15,-38 + 3901: 15,-37 + 3902: 15,-37 + 3903: 15,-38 + 3904: 16,-41 + 3905: 16,-40 + 3906: 15,-41 + 3907: 15,-40 + 3908: 8,-38 + 3909: 9,-39 + 3910: 9,-41 + 3911: 4,-42 + 3912: 4,-39 + 3913: 5,-41 + 3914: -14,-38 + 3915: -13,-35 + 3916: -13,-32 + 3917: -13,-24 + 3918: -12,-23 + 3919: -13,-30 + 3920: -14,-30 + 3921: -16,-27 + 3922: -13,-27 + 3923: -14,-28 + 3924: -16,-29 + 3925: -16,-29 + 3926: -15,-27 + 3927: -13,-28 + 3928: -13,-29 + 3929: -14,-30 + 3930: -13,-29 + 3931: -13,-27 + 3932: -12,-29 + 3933: -7,-6 + 3934: -7,-4 + 3935: -5,-2 + 3936: -2,1 + 3937: -1,4 + 3938: 0,7 + 3939: 2,10 + 3940: 1,8 + 3941: 1,4 + 3942: -3,6 + 3943: -3,11 + 3944: -3,5 + 3945: 1,1 + 3946: -3,-2 + 3947: -1,-5 + 3948: 1,-6 + 3949: 1,-4 + 3950: 1,0 + 3951: 1,4 + 3952: 1,9 + 3953: 2,11 + 3954: 2,7 + 3955: 2,2 + 3956: 3,-2 + 3957: 3,-7 + 3958: 2,-4 + 3959: 1,0 + 3960: 1,5 + 3961: 1,8 + 3962: 1,11 + 3963: -2,11 + 3964: -4,7 + 3965: -4,2 + 3966: -3,-2 + 3967: 7,-5 + 3968: 5,-1 + 3969: 11,-5 + 3970: 11,-3 + 3971: 11,-3 + 3972: 9,-5 + 3973: 8,-5 + 3974: 10,-1 + 3975: 8,-1 + 3976: 11,-1 + 3977: 11,-1 + 3978: 11,-2 + 3979: 11,-1 + 3980: 10,2 + 3981: 10,2 + 3982: 11,2 + 3983: 11,1 + 3984: 10,1 + 3985: 11,1 + 3986: 11,1 + 3987: 12,2 + 3988: 12,2 + 4001: 8,5 + 4002: 7,6 + 4003: 6,8 + 4004: 7,9 + 4005: 9,10 + 4006: 10,9 + 4007: 10,7 + 4008: 7,6 + 4009: 5,11 + 4010: 5,11 + 4011: 5,9 + 4012: 6,6 + 4013: 7,5 + 4014: 11,7 + 4015: 10,10 + 4016: 6,5 + 4017: 5,5 + 4018: 5,5 + 4019: 3,5 + 4020: 4,5 + 4021: 5,5 + 4022: 2,5 + 4023: 3,5 + 4024: 3,5 + 4025: 5,-4 + 4026: 5,-5 + 4027: 6,-5 + 4028: 5,-5 + 4029: 4,-5 + 4041: 5,-3 + 4042: 5,-3 + 4043: 3,-3 + 4044: 3,-2 + 4045: 3,-1 + 4046: 3,-4 + 4047: 2,-6 + 4048: 1,-6 + 4049: 1,-6 + 4050: 1,-5 + 4051: 2,-5 + 4052: 3,-3 + 4053: 3,-2 + 4054: 9,-8 + 4055: 10,-7 + 4056: 11,-7 + 4057: 9,-7 + 4058: 11,-7 + 4059: 10,-7 + 4060: 9,-8 + 4061: 10,-8 + 4062: 10,-9 + 4063: 7,-8 + 4064: 8,-8 + 4065: 7,-8 + 4066: 8,-8 + 4067: 10,-8 + 4068: 10,-7 + 4069: 11,-7 + 4070: 12,-8 + 4071: 13,-8 + 4072: 14,-8 + 4073: 12,-8 + 4074: 13,-9 + 4075: 11,-8 + 4076: 10,-7 + 4077: 9,-8 + 4078: 8,-8 + 4079: 6,-8 + 4080: 9,-8 + 4081: 9,-7 + 4082: 8,-9 + 4093: -3,-1 + 4094: -4,1 + 4095: -4,3 + 4096: -4,4 + 4097: -7,3 + 4098: -9,2 + 4099: -11,-1 + 4100: -11,-1 + 4101: -13,-2 + 4102: -13,-2 + 4103: -15,1 + 4104: -14,0 + 4105: -14,2 + 4106: -14,3 + 4107: -14,4 + 4108: -13,2 + 4109: -13,1 + 4110: -12,0 + 4111: -10,1 + 4112: -9,2 + 4113: -8,2 + 4114: -7,1 + 4115: -8,2 + 4116: -6,0 + 4117: -3,2 + 4118: -3,4 + 4119: -2,6 + 4120: 0,6 + 4127: 3,6 + 4128: 2,6 + 4131: -10,7 + 4132: -9,6 + 4133: -9,6 + 4134: -8,6 + 4135: -7,6 + 4136: -10,7 + 4137: -10,6 + 4138: -10,8 + 4139: -9,8 + 4140: -10,8 + 4141: -11,7 + 4142: -10,6 + 4143: -9,6 + 4144: -9,7 + 4145: -7,8 + 4146: -5,7 + 4147: -5,6 + 4148: -5,5 + 4149: -5,4 + 4150: -8,4 + 4151: -9,4 + 4152: -8,4 + 4153: -9,4 + 4154: -9,4 + 4155: -7,4 + 4156: -5,10 + 4157: -5,10 + 4158: -4,10 + 4159: -4,11 + 4160: -4,11 + 4161: -3,11 + 4162: -4,9 + 4163: -3,10 + 4164: -3,7 + 4165: -3,5 + 4166: -3,3 + 4167: -3,0 + 4168: -3,-2 + 4169: -3,0 + 4170: -3,4 + 4171: -3,8 + 4172: -3,11 + 4173: -3,1 + 4174: -3,-2 + 4175: -3,-5 + 4176: -3,-6 + 4271: -44,43 + 4272: -44,42 + 4273: -44,40 + 4274: -43,38 + 4275: -43,37 + 4276: -43,37 + 4277: -44,39 + 4278: -44,42 + 4279: -45,44 + 4280: -46,43 + 4281: -47,43 + 4282: -48,44 + 4283: -45,43 + 4284: -44,43 + 4285: -45,43 + 4286: -47,43 + 4287: -49,43 + 4288: -49,41 + 4289: -49,39 + 4290: -51,38 + 4291: -51,38 + 4292: -51,37 + 4293: -51,36 + 4294: -51,36 + 4295: -46,36 + 4296: -44,36 + 4297: -49,36 + 4298: -51,36 + 4299: -47,37 + 4300: -51,38 + 4301: -50,38 + 4302: -46,37 + 4303: -43,37 + 4304: -38,37 + 4305: -45,37 + 4306: -51,36 + 4307: -47,36 + 4308: -41,36 + 4309: -44,37 + 4310: -38,37 + 4311: -33,37 + 4312: -38,36 + 4313: -39,36 + 4314: -41,36 + 4315: -39,36 + 4316: -39,37 + 4317: -40,37 + 4318: -40,36 + 4319: -37,37 + 4320: -37,36 + 4321: -41,37 + 4322: -42,37 + 4323: -36,37 + 4324: -35,37 + 4325: -33,36 + 4326: -35,36 + 4327: -35,36 + 4328: -37,37 + 4329: -35,38 + 4330: -30,36 + 4331: -31,36 + 4332: -31,35 + 4333: -31,35 + 4334: -30,37 + 4335: -30,36 + 4336: -31,35 + 4337: -30,33 + 4338: -29,33 + 4339: -27,32 + 4340: -28,31 + 4341: -29,30 + 4342: -30,30 + 4343: -32,30 + 4344: -29,30 + 4345: -28,31 + 4346: -29,33 + 4347: -31,33 + 4348: -31,32 + 4349: -28,33 + 4350: -28,31 + 4351: -28,32 + 4352: -28,33 + 4353: -28,32 + 4354: -28,30 + 4355: -28,30 + 4356: -27,30 + 4357: -27,31 + 4358: -27,33 + 4401: -39,19 + 4402: -39,18 + 4403: -39,20 + 4404: -39,23 + 4405: -39,23 + 4406: -38,26 + 4407: -39,29 + 4408: -38,28 + 4409: -39,26 + 4410: -39,23 + 4411: -39,21 + 4412: -39,27 + 4413: -38,26 + 4414: -38,21 + 4415: -38,19 + 4416: -39,21 + 4417: -39,29 + 4418: -39,27 + 4419: -39,21 + 4420: -39,24 + 4421: -40,27 + 4422: -39,25 + 4423: -39,24 + 4424: -39,26 + 4425: -37,26 + 4426: -37,23 + 4427: -38,20 + 4428: -39,19 + 4429: -39,18 + 4430: -40,18 + 4431: -38,21 + 4432: -38,26 + 4433: -42,26 + 4434: -42,25 + 4435: -41,25 + 4436: -42,25 + 4437: -41,26 + 4438: -41,26 + 4468: -38,15 + 4469: -36,15 + 4470: -36,15 + 4471: -35,15 + 4472: -40,5 + 4473: -39,4 + 4474: -40,3 + 4475: -41,3 + 4476: -40,2 + 4477: -40,1 + 4478: -41,0 + 4479: -40,0 + 4480: -40,-1 + 4481: -42,-5 + 4482: -42,-7 + 4483: -41,-7 + 4484: -41,-1 + 4485: -41,-2 + 4486: -42,-2 + 4487: -43,-3 + 4488: -36,2 + 4489: -36,2 + 4490: -36,1 + 4491: -37,2 + 4492: -36,1 + 4493: -40,9 + 4494: -41,9 + 4495: -39,10 + 4496: -39,10 + 4497: -37,10 + 4498: -38,10 + 4499: -37,10 + 4500: -35,10 + 4501: -35,10 + 4502: -36,11 + 4503: -37,10 + 4547: -4,13 + 4548: 2,13 + 4549: 1,13 + 4550: 1,13 + 4551: -3,13 + 4552: -3,13 + 4553: -4,13 + 4554: -5,13 + 4555: -5,13 + 4556: -2,13 + 4557: -2,13 + 4558: 3,13 + 4559: 3,13 + 4560: 0,13 + 4561: 0,13 + 4573: -5,16 + 4574: -4,16 + 4575: -6,16 + 4576: -3,18 + 4577: -3,19 + 4578: 1,18 + 4579: 1,17 + 4580: 1,17 + 4581: 3,16 + 4582: 4,16 + 4583: 2,16 + 4608: 15,47 + 4609: 15,46 + 4610: 14,46 + 4611: 15,47 + 4648: 5,74 + 4649: 5,75 + 4650: 5,76 + 4651: 4,77 + 4652: 4,80 + 4653: 5,81 + 4654: 1,81 + 4655: -2,81 + 4656: 1,82 + 4657: 0,82 + 4658: 1,82 + 4659: 0,83 + 4660: 1,83 + 4661: 1,82 + 4662: 0,83 + 4663: 0,82 + 4664: -1,81 + 4665: -4,81 + 4666: -7,81 + 4667: -5,81 + 4668: 2,79 + 4669: 0,79 + 4670: 0,79 + 4671: -4,76 + 4672: -5,76 + 4673: -6,74 + 4674: -7,74 + 4675: -8,73 + 4676: -9,72 + 4677: -9,73 + 4678: -8,72 + 4679: -8,74 + 4680: -9,70 + 4681: -9,69 + 4682: -8,70 + 4683: 9,66 + 4684: 10,69 + 4685: 12,69 + 4686: 13,58 + 4687: 13,60 + 4688: 12,56 + 4689: 13,56 + 4690: 8,56 + 4691: 8,56 + 4692: 8,56 + 4693: 14,60 + 4694: 14,60 + 4695: 14,61 + 4696: 14,60 + 4697: 22,58 + 4698: 23,57 + 4699: 27,56 + 4700: 28,56 + 4701: 28,55 + 4702: 28,54 + 4703: 34,55 + 4704: 34,54 + 4705: 33,54 + 4706: 30,55 + 4707: 30,56 + 4708: 30,54 + 4709: 31,54 + 4710: 32,54 + 4718: 46,36 + 4719: 46,34 + 4770: 32,16 + 4771: 32,15 + 4772: 32,13 + 4773: 32,11 + 4774: 32,13 + 4803: 34,1 + 4804: 36,1 + 4805: 37,1 + 4806: 37,1 + 4807: 36,1 + 4808: 35,1 + 4809: 35,3 + 4810: 37,3 + 4811: 19,-4 + 4812: 18,-5 + 4813: 17,-6 + 4814: 17,-5 + 4815: 17,-4 + 4816: 18,-6 + 4817: 21,-6 + 4818: 19,-4 + 4819: 22,-4 + 4820: 21,-5 + 4821: 20,-6 + 4822: 22,-6 + 4823: 21,-4 + 4824: 21,-4 + 4825: 19,-5 + 4826: 20,-4 + 4827: 20,-4 + 4828: 20,-5 + 4829: 17,-4 + 4844: -9,-6 + 4845: -9,-5 + 4846: -9,-3 + 4847: -11,-2 + 4848: -10,-2 + 4849: -9,-3 + 4850: -9,-5 + 4851: -16,1 + 4852: -14,0 + 4853: -14,0 + 4854: -14,0 + 4855: -14,-1 + 4856: -13,0 + 4857: -13,1 + 4864: -10,-9 + 4865: -9,-10 + 4866: -6,-10 + 4867: -4,-11 + 4868: -2,-11 + 4869: -6,-14 + 4870: -6,-13 + 4871: 4,-14 + 4872: 4,-13 + 4873: 3,-11 + 4874: 3,-9 + 4875: 1,-9 + 4876: 5,-9 + 4877: 7,-9 + 4878: 8,-10 + 4879: 3,-5 + 4880: 4,-5 + 4881: 3,-5 + 4931: 12,9 + 4932: 13,9 + 4933: 14,9 + 4934: 14,8 + 4935: 14,7 + 4936: 15,9 + 4937: 15,10 + 4938: 15,10 + 4939: 13,10 + 4940: 9,10 + 4941: 6,10 + 4942: 6,8 + 4943: 7,6 + 4944: 7,9 + 4945: 8,8 + 4946: 7,7 + 4947: 8,7 + 4948: 8,9 + 4949: 8,6 + 4950: 8,7 + 4951: 8,9 + 4952: 7,10 + 4953: 6,11 + 4954: 8,11 + 4955: 10,10 + 4956: 10,6 + 4959: 14,38 + 4960: 15,38 + 4961: 14,38 + 4962: 15,38 + 4963: 14,38 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#A461065E' + id: Dirt + decals: + 5178: -42,22 + 5179: -41,22 + 5180: -41,22 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#A46106A4' + id: Dirt + decals: + 5181: -41,22 + 5182: -42,22 + 5183: -42,24 + 5184: -42,24 + 5185: -41,24 + 5186: -42,23 + 5187: -43,23 + 5188: -39,22 + 5189: -40,22 + 5190: -40,24 + 5191: -40,25 + 5192: -40,26 + 5193: -42,27 + 5194: -43,27 + 5195: -41,28 + 5196: -40,28 + 5197: -41,27 + 5198: -44,27 + 5199: -44,28 + 5200: -45,28 + 5201: -46,27 + 5202: -47,28 + 5203: -47,27 + 5204: -46,28 + 5205: -38,23 + 5206: -38,24 + 5207: -38,27 + 5208: -38,29 + 5209: -42,24 + 5210: -42,22 + 5211: -41,21 + 5212: -43,21 + 5213: -42,21 + 5214: -43,22 + 5215: -43,25 + 5216: -43,24 + 5217: -41,24 + 5218: -41,22 + 5219: -41,24 + 5220: -40,20 + 5221: -38,17 + 5222: -38,22 + - node: + cleanable: True + color: '#83543273' + id: DirtHeavy + decals: + 3525: 29,6 + 3530: 46,-10 + 3531: 48,-10 + 3645: -13,-41 + 3646: -11,-41 + 3647: -11,-40 + 3648: -10,-37 + 3649: -9,-34 + 3650: -7,-37 + 3651: -8,-40 + 3652: -6,-39 + 3653: -7,-34 + 3654: -7,-28 + 3655: -7,-24 + 3656: -7,-26 + 3657: -7,-30 + 3658: -9,-35 + 3659: -10,-38 + 3660: -10,-40 + 3712: 12,-37 + 3713: 12,-35 + 3714: 12,-34 + 3715: 12,-30 + 3716: 12,-28 + 3717: 12,-26 + 3718: 12,-23 + 3719: 12,-21 + 3720: 12,-20 + 3775: 6,-19 + 3778: 5,-19 + 3781: 5,-20 + 3798: 11,-22 + 3799: 11,-24 + 3800: 11,-27 + 3801: 11,-29 + 3802: 11,-32 + 3803: 11,-34 + 3804: 11,-36 + 3825: 7,-35 + 3826: 5,-35 + 3827: 9,-34 + 3828: 10,-34 + 3829: 8,-35 + 3842: 4,-39 + 3843: 6,-38 + 3844: 7,-38 + 3845: 7,-37 + 3846: 8,-38 + 3847: 9,-39 + 3848: 18,-38 + 3849: 18,-37 + 3850: 17,-37 + 3851: 17,-35 + 3852: 17,-34 + 3853: 17,-34 + 3887: 18,-36 + 3888: 18,-36 + 3889: 16,-41 + 3989: 10,1 + 3990: 10,1 + 3991: 12,2 + 4040: 8,-1 + 4083: 8,-8 + 4125: 3,4 + 4126: 2,4 + 4177: -3,-6 + 4178: -5,-6 + 4179: -3,-4 + 4180: -4,-2 + 4181: -3,1 + 4182: -4,4 + 4183: -4,6 + 4184: -3,8 + 4185: -5,9 + 4186: -3,10 + 4199: 3,14 + 4200: -1,17 + 4201: 0,20 + 4202: -1,25 + 4203: -1,30 + 4204: -1,33 + 4205: -1,36 + 4206: -2,38 + 4207: -1,49 + 4208: -1,50 + 4209: -2,50 + 4237: -7,48 + 4238: -8,48 + 4239: -9,46 + 4240: -10,45 + 4241: -11,45 + 4242: -13,45 + 4243: -16,45 + 4244: -17,45 + 4245: -9,46 + 4246: -7,46 + 4247: -5,45 + 4248: -7,46 + 4249: -8,48 + 4250: -9,49 + 4251: -11,53 + 4252: -14,55 + 4253: -17,53 + 4254: -13,53 + 4255: -12,54 + 4256: -14,53 + 4257: -16,53 + 4258: -18,52 + 4259: -19,51 + 4260: -19,50 + 4261: -19,48 + 4262: -20,48 + 4263: -20,47 + 4264: -20,47 + 4265: -18,46 + 4266: -16,45 + 4359: -27,33 + 4360: -30,33 + 4361: -29,33 + 4369: -29,33 + 4370: -27,30 + 4504: -41,10 + 4505: -40,10 + 4506: -40,9 + 4507: -40,8 + 4508: -39,5 + 4509: -39,4 + 4510: -39,5 + 4511: -40,2 + 4512: -40,1 + 4513: -41,2 + 4514: -41,4 + 4515: -41,4 + 4538: -38,6 + 4539: -39,4 + 4540: -38,3 + 4541: -39,3 + 4542: -38,2 + 4543: -38,1 + 4544: -36,2 + 4545: -36,4 + 4546: -36,3 + 4562: -5,13 + 4563: -3,13 + 4564: -2,13 + 4565: 1,13 + 4566: 2,13 + 4612: 15,47 + 4613: 15,47 + 4614: 15,46 + 4615: 14,46 + 4616: 15,45 + 4617: 15,44 + 4618: 2,56 + 4619: 2,54 + 4620: 3,53 + 4621: 4,53 + 4622: 2,53 + 4623: 4,54 + 4624: 4,56 + 4625: 4,56 + 4626: 5,55 + 4627: -2,54 + 4628: -2,54 + 4629: -2,70 + 4630: -2,70 + 4631: -2,68 + 4632: -2,68 + 4633: 0,68 + 4634: -2,67 + 4635: -3,67 + 4636: -3,67 + 4711: 32,54 + 4712: 33,54 + 4720: 46,36 + 4721: 45,36 + 4722: 46,36 + 4723: 49,36 + 4724: 48,36 + 4725: 48,35 + 4726: 48,34 + 4727: 48,35 + 4728: 48,36 + 4757: 27,25 + 4758: 29,25 + 4759: 30,26 + 4760: 30,23 + 4761: 30,24 + 4762: 30,25 + 4763: 30,24 + 4764: 32,19 + 4765: 32,16 + 4766: 32,15 + 4767: 33,15 + 4768: 32,15 + 4769: 32,16 + 4775: 39,14 + 4776: 41,15 + 4777: 42,15 + 4778: 45,14 + 4779: 46,15 + 4780: 48,15 + 4781: 47,15 + 4782: 49,15 + 4783: 49,13 + 4784: 45,15 + 4830: 17,-4 + 4831: 16,-5 + 4832: 16,-6 + 4833: 18,-5 + 4834: 18,-4 + 4835: 19,-6 + 4836: 20,-6 + 4837: 20,-4 + 4838: 20,-5 + 4839: 20,-5 + 4840: 21,-6 + 4841: 21,-4 + 4842: 22,-3 + 4843: 20,-3 + 4858: -12,-10 + 4859: -13,-10 + 4860: -12,-9 + 4861: -13,-10 + 4862: -12,-10 + 4863: -11,-10 + 4882: 3,-5 + 4883: 2,-6 + 4964: 14,38 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#A4610696' + id: DirtHeavy + decals: + 5147: -40,21 + 5148: -41,22 + 5149: -43,23 + 5150: -43,27 + 5151: -43,28 + 5152: -42,28 + 5153: -46,28 + 5154: -45,28 + 5155: -45,27 + 5156: -47,27 + 5157: -38,20 + 5158: -41,20 + 5159: -42,27 + 5160: -41,24 + 5161: -42,24 + - node: + cleanable: True + color: '#83543273' + id: DirtLight + decals: + 3526: 29,6 + 3528: 46,-10 + 3529: 48,-10 + 3532: 46,-10 + 3535: 18,-9 + 3536: 22,-9 + 3721: 12,-36 + 3722: 12,-34 + 3723: 12,-30 + 3724: 12,-28 + 3725: 12,-26 + 3726: 12,-24 + 3727: 12,-22 + 3728: 12,-20 + 3729: 12,-18 + 3730: 12,-18 + 3731: 11,-19 + 3732: 12,-19 + 3787: 6,-21 + 3788: 5,-19 + 3822: 9,-35 + 3823: 7,-35 + 3824: 8,-35 + 3890: 15,-40 + 3891: 16,-40 + 4030: 5,-5 + 4031: 7,-5 + 4032: 10,-5 + 4033: 11,-2 + 4084: 9,-8 + 4085: 10,-8 + 4086: 10,-9 + 4087: 10,-9 + 4088: 9,-9 + 4089: 9,-9 + 4090: 12,-9 + 4091: 11,-8 + 4092: 11,-9 + 4121: -1,6 + 4129: -8,6 + 4130: -11,7 + 4187: 1,11 + 4188: 2,10 + 4189: 1,8 + 4190: 1,6 + 4191: 2,4 + 4192: 0,2 + 4193: 2,0 + 4194: 1,-3 + 4195: 2,-5 + 4196: 1,-6 + 4197: 1,4 + 4198: 2,7 + 4210: -2,48 + 4211: -2,50 + 4267: -44,43 + 4268: -44,43 + 4362: -31,31 + 4363: -31,30 + 4364: -29,30 + 4365: -32,33 + 4366: -31,33 + 4367: -31,30 + 4368: -29,30 + 4371: -27,31 + 4372: -27,32 + 4516: -41,-1 + 4517: -42,-2 + 4518: -40,-1 + 4519: -40,2 + 4520: -37,2 + 4521: -36,2 + 4522: -36,4 + 4523: -35,4 + 4529: -39,10 + 4530: -36,10 + 4531: -35,10 + 4532: -37,10 + 4533: -38,10 + 4534: -36,11 + 4535: -41,10 + 4536: -41,9 + 4537: -42,9 + 4567: 1,13 + 4568: 3,13 + 4569: 5,14 + 4570: 5,14 + 4571: 3,15 + 4572: 2,15 + 4584: 3,16 + 4585: 3,16 + 4586: 4,17 + 4587: 4,18 + 4588: 3,18 + 4597: 6,28 + 4598: 7,28 + 4599: 7,29 + 4600: 6,29 + 4601: 6,30 + 4602: 3,31 + 4603: 3,33 + 4604: 5,29 + 4605: 4,28 + 4606: 4,28 + 4607: 4,30 + 4785: 46,15 + 4786: 46,17 + 4787: 46,17 + 4788: 48,17 + 4789: 49,17 + 4790: 49,17 + 4791: 48,17 + 4884: 3,-5 + 4885: 3,-5 + 4886: 2,-6 + 4965: 15,38 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#A461065E' + id: DirtLight + decals: + 5175: -41,22 + 5176: -42,23 + 5177: -41,23 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 5079: 46,-11 + 5080: 45,-11 + 5081: 46,-13 + 5082: 47,-14 + 5083: 48,-12 + 5084: 48,-12 + 5085: 48,-14 + 5086: 47,-14 + 5087: 49,-15 + 5088: 49,-8 + 5089: 48,-8 + - node: + cleanable: True + color: '#83543273' + id: DirtMedium + decals: + 3527: 28,-14 + 3533: 48,-10 + 3534: 37,-9 + 3537: 11,-9 + 3538: 9,-9 + 3661: -10,-42 + 3662: -10,-37 + 3663: -10,-34 + 3664: -8,-33 + 3665: -14,-36 + 3666: -13,-33 + 3667: -12,-37 + 3668: -13,-36 + 3669: -12,-34 + 3670: -13,-34 + 3671: -13,-36 + 3672: -13,-37 + 3733: 11,-19 + 3734: 11,-18 + 3735: 12,-18 + 3736: 12,-20 + 3737: 12,-22 + 3738: 12,-25 + 3739: 12,-28 + 3740: 12,-30 + 3741: 12,-34 + 3742: 12,-36 + 3789: 7,-21 + 3790: 7,-21 + 3805: 11,-37 + 3806: 11,-35 + 3807: 11,-32 + 3808: 11,-29 + 3809: 11,-26 + 3810: 11,-24 + 3811: 7,-31 + 3812: 6,-31 + 3813: 5,-35 + 3814: 6,-34 + 3815: 7,-34 + 3816: 6,-35 + 3817: 7,-35 + 3818: 6,-35 + 3819: 8,-34 + 3820: 10,-34 + 3821: 10,-35 + 3854: 17,-37 + 3855: 17,-36 + 3856: 17,-35 + 3857: 17,-35 + 3858: 17,-37 + 3859: 18,-37 + 3860: 18,-35 + 3861: 18,-34 + 3862: 18,-36 + 3863: 18,-37 + 3884: 17,-36 + 3885: 17,-36 + 3886: 18,-35 + 3892: 15,-40 + 3893: 15,-40 + 3992: 11,3 + 3993: 10,2 + 3994: 11,1 + 3995: 11,1 + 3996: 12,2 + 3997: 12,2 + 3998: 12,2 + 3999: 10,1 + 4000: 10,1 + 4034: 5,-1 + 4035: 8,2 + 4036: 8,-1 + 4037: 9,-5 + 4038: 6,-5 + 4039: 11,-5 + 4122: -3,5 + 4123: -4,6 + 4124: -2,5 + 4212: -7,50 + 4213: -7,47 + 4214: -8,50 + 4215: -9,47 + 4216: -9,46 + 4217: -14,45 + 4218: -16,45 + 4219: -19,47 + 4220: -19,49 + 4221: -17,53 + 4222: -15,54 + 4223: -13,54 + 4224: -11,55 + 4225: -10,57 + 4226: -10,58 + 4227: -9,55 + 4228: -9,55 + 4229: -9,55 + 4230: -10,56 + 4231: -12,59 + 4232: -12,59 + 4233: -7,48 + 4234: -7,48 + 4235: -7,50 + 4236: -7,50 + 4269: -44,43 + 4270: -44,43 + 4373: -27,33 + 4374: -27,30 + 4375: -33,25 + 4376: -33,24 + 4377: -33,22 + 4378: -33,20 + 4379: -33,17 + 4380: -36,13 + 4381: -43,13 + 4382: -48,14 + 4383: -50,14 + 4384: -46,14 + 4385: -45,14 + 4386: -45,14 + 4387: -46,15 + 4388: -48,15 + 4389: -49,13 + 4390: -42,14 + 4391: -39,15 + 4392: -38,15 + 4393: -36,15 + 4394: -39,17 + 4395: -38,17 + 4396: -38,18 + 4397: -39,16 + 4398: -38,18 + 4399: -39,19 + 4400: -38,17 + 4439: -41,26 + 4440: -42,25 + 4441: -42,25 + 4442: -41,25 + 4443: -38,28 + 4444: -38,29 + 4445: -38,28 + 4446: -40,29 + 4447: -40,29 + 4448: -39,27 + 4449: -39,25 + 4450: -38,23 + 4451: -39,21 + 4452: -39,20 + 4453: -39,19 + 4454: -41,18 + 4455: -40,17 + 4456: -40,18 + 4457: -39,17 + 4458: -38,18 + 4459: -38,15 + 4460: -39,15 + 4461: -38,14 + 4462: -37,15 + 4463: -36,14 + 4464: -36,15 + 4465: -36,16 + 4466: -36,16 + 4467: -36,16 + 4524: -36,2 + 4525: -36,3 + 4526: -35,4 + 4527: -38,6 + 4528: -38,7 + 4589: 3,17 + 4590: 4,17 + 4591: 3,18 + 4592: 3,18 + 4593: 3,17 + 4594: 4,27 + 4595: 7,30 + 4596: 6,30 + 4637: -3,67 + 4638: -3,67 + 4639: -2,68 + 4640: 0,68 + 4641: 0,70 + 4642: 0,74 + 4643: 2,76 + 4644: 3,76 + 4645: 5,76 + 4646: 5,75 + 4647: 5,74 + 4713: 32,54 + 4714: 31,54 + 4715: 40,47 + 4716: 44,43 + 4717: 42,43 + 4729: 47,36 + 4730: 47,37 + 4731: 47,36 + 4732: 47,37 + 4733: 47,37 + 4734: 45,37 + 4735: 45,35 + 4736: 43,36 + 4737: 42,37 + 4738: 41,37 + 4739: 41,40 + 4740: 41,40 + 4741: 39,37 + 4742: 39,36 + 4743: 36,38 + 4744: 34,38 + 4745: 32,38 + 4746: 29,37 + 4747: 30,36 + 4748: 30,38 + 4749: 31,38 + 4750: 31,38 + 4751: 31,38 + 4752: 28,26 + 4753: 27,25 + 4754: 27,25 + 4755: 29,29 + 4756: 30,27 + 4792: 46,15 + 4793: 48,15 + 4794: 46,16 + 4795: 46,17 + 4796: 46,16 + 4797: 34,5 + 4798: 34,5 + 4799: 35,5 + 4800: 34,3 + 4801: 34,3 + 4802: 34,1 + 4887: 2,-6 + 4888: 1,-5 + 4889: 0,-1 + 4890: 1,0 + 4891: 0,0 + 4892: -2,1 + 4893: -2,0 + 4894: 1,3 + 4895: 1,9 + 4896: -2,6 + 4897: -6,0 + 4898: -8,-2 + 4899: -10,-2 + 4900: -11,-1 + 4901: -7,-1 + 4902: -6,-1 + 4903: -4,-1 + 4904: -5,-1 + 4905: -5,0 + 4906: -8,3 + 4907: -9,3 + 4908: -9,3 + 4909: -7,3 + 4910: -4,6 + 4911: 7,4 + 4912: 6,5 + 4913: 6,7 + 4914: 10,10 + 4915: 10,8 + 4916: 10,5 + 4917: 8,5 + 4918: 9,5 + 4919: 13,9 + 4920: 14,8 + 4921: 14,8 + 4922: 14,9 + 4923: 13,10 + 4924: 14,9 + 4925: 15,10 + 4926: 15,9 + 4927: 13,10 + 4928: 15,10 + 4929: 14,10 + 4930: 13,9 + 4966: 14,38 + 4967: 15,38 + 4968: 15,38 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#A461065E' + id: DirtMedium + decals: + 5166: -43,27 + 5167: -43,28 + 5168: -46,28 + 5169: -46,27 + 5170: -41,24 + 5171: -40,21 + 5172: -41,27 + 5173: -41,23 + 5174: -41,22 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#A4610696' + id: DirtMedium + decals: + 5162: -42,22 + 5163: -43,24 + 5164: -42,25 + 5165: -42,28 + - node: + color: '#80C71FA4' + id: Flowersbr1 + decals: + 4986: -45.480713,39.888554 + - node: + color: '#80C71FA4' + id: Flowersbr2 + decals: + 4988: -47.82387,40.787373 + - node: + color: '#80C71FAE' + id: Flowerspv2 + decals: + 2350: 22.31159,21.239965 + - node: + color: '#80C71FAE' + id: Flowerspv3 + decals: + 2349: 22.119907,20.303352 + - node: + color: '#80C71FA4' + id: Flowersy1 + decals: + 4983: -45.40703,40.65476 + 4985: -46.468082,40.168514 + - node: + color: '#80C71FAE' + id: Flowersy2 + decals: + 2346: 21.097595,20.409784 + 2351: 21.012402,21.21868 + 2352: 22.780151,20.0692 + - node: + color: '#80C71FA4' + id: Flowersy3 + decals: + 4987: -46.61545,40.787373 + - node: + color: '#80C71FAE' + id: Flowersy3 + decals: + 2345: 22.013416,21.53798 + 2347: 26.379543,16.769766 + 2353: 21.928225,20.32464 + - node: + color: '#80C71FA4' + id: Flowersy4 + decals: + 4984: -47.750187,39.991695 + - node: + color: '#80C71FAE' + id: Flowersy4 + decals: + 2348: 27.061085,17.45094 + - node: + color: '#18A2D50C' + id: FullTileOverlayGreyscale + decals: + 788: 24,31 + 789: 24,32 + 790: 24,33 + 791: 24,34 + 792: 24,31 + 793: 24,32 + 794: 24,33 + 795: 24,34 + - node: + color: '#18A2D522' + id: FullTileOverlayGreyscale + decals: + 780: 25,34 + 781: 26,34 + 782: 25,33 + 783: 26,33 + 784: 25,32 + 785: 26,32 + 786: 27,32 + 787: 27,33 + - node: + color: '#D5188D95' + id: FullTileOverlayGreyscale + decals: + 738: 17,45 + 739: 17,46 + 740: 17,47 + 741: 18,47 + 742: 18,45 + 743: 18,46 + - node: + color: '#80C71FAB' + id: Grassa1 + decals: + 2341: 20.991104,21.857279 + 2343: 26.975891,16.94006 + - node: + color: '#80C71FB4' + id: Grassa1 + decals: + 2366: 20.92721,20.19692 + - node: + color: '#80C71FA4' + id: Grassa2 + decals: + 4970: -47.73545,40.050636 + 4974: -47.764923,40.698963 + 4976: -46.24703,40.743168 + 4977: -46.084923,39.918022 + - node: + color: '#80C71FB4' + id: Grassa2 + decals: + 2367: 22.865343,21.921139 + 2368: 26.358244,16.94006 + - node: + color: '#80C71F95' + id: Grassa3 + decals: + 2362: 22.247696,20.388498 + - node: + color: '#80C71FA4' + id: Grassa3 + decals: + 4971: -45.421764,40.669495 + - node: + color: '#80C71FA4' + id: Grassa4 + decals: + 4972: -45.40703,39.918022 + - node: + color: '#80C71FAB' + id: Grassa4 + decals: + 2340: 21.885628,21.303825 + - node: + color: '#80C71FB4' + id: Grassa4 + decals: + 2363: 21.992119,21.3464 + 2369: 27.124979,17.599947 + - node: + color: '#80C71FA4' + id: Grassa5 + decals: + 4973: -46.60071,39.873817 + - node: + color: '#80C71FAB' + id: Grassa5 + decals: + 2342: 26.209158,17.685093 + 2344: 21.566154,21.814705 + - node: + color: '#80C71FB4' + id: Grassa5 + decals: + 2364: 21.523558,20.409784 + 2365: 20.756824,21.835993 + - node: + color: '#80C71FA4' + id: Grassb2 + decals: + 4994: -46.541767,41.02313 + 4996: -44.994396,39.829613 + - node: + color: '#80C71FAB' + id: Grassb2 + decals: + 2336: 27.188873,17.578661 + 2337: 20.92721,20.111773 + 2338: 23.057028,20.239492 + - node: + color: '#80C71FAB' + id: Grassb3 + decals: + 2334: 21.821733,20.154345 + 2335: 26.954594,16.897486 + - node: + color: '#80C71FA4' + id: Grassb4 + decals: + 4990: -45.392292,40.65476 + 4993: -47.88282,40.743168 + 4995: -47.853344,39.991695 + 4997: -45.30387,40.919987 + - node: + color: '#80C71F95' + id: Grassc1 + decals: + 2359: 27.061085,17.770239 + - node: + color: '#80C71FA4' + id: Grassc1 + decals: + 4992: -46.52703,40.301125 + - node: + color: '#FFFFFF7F' + id: Grassc1 + decals: + 2288: 32.165768,40.007343 + - node: + color: '#80C71F95' + id: Grassc2 + decals: + 2358: 26.081367,17.770239 + - node: + color: '#80C71FA4' + id: Grassc2 + decals: + 4975: -46.29124,40.640026 + - node: + color: '#FFFFFF7F' + id: Grassc2 + decals: + 2287: 32.108974,40.943954 + - node: + color: '#80C71F95' + id: Grassc3 + decals: + 2357: 26.52863,16.897486 + - node: + color: '#80C71FA4' + id: Grassc3 + decals: + 4989: -47.70598,40.0359 + - node: + color: '#FFFFFF7F' + id: Grassc3 + decals: + 2285: 28.90005,40.85881 + - node: + color: '#80C71F95' + id: Grassc4 + decals: + 2354: 21.054998,20.45236 + - node: + color: '#FFFFFF7F' + id: Grassc4 + decals: + 2286: 28.87165,40.035725 + - node: + color: '#FFFFFFEF' + id: Grassd1 + decals: + 2291: 32.13737,39.978962 + - node: + color: '#FFFFFFEF' + id: Grassd2 + decals: + 2289: 28.90005,40.049915 + - node: + color: '#80C71FA4' + id: Grassd3 + decals: + 4991: -45.30387,39.976963 + - node: + color: '#FFFFFFEF' + id: Grassd3 + decals: + 2290: 28.942644,41.057484 + - node: + color: '#80C71F95' + id: Grasse1 + decals: + 2360: 26.379543,17.025208 + 2361: 21.331875,20.494932 + - node: + color: '#FFFFFFEF' + id: Grasse1 + decals: + 2292: 32.15157,40.943954 + - node: + color: '#80C71F95' + id: Grasse2 + decals: + 2355: 22.375484,21.729559 + - node: + color: '#80C71F95' + id: Grasse3 + decals: + 2356: 22.65236,20.175632 + - node: + color: '#5A5A6015' + id: HalfTileOverlayGreyscale + decals: + 9: -2,76 + 10: -1,76 + 11: 0,76 + - node: + color: '#D4D4D426' + id: HalfTileOverlayGreyscale + decals: + 5059: 19,-12 + 5060: 18,-12 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale180 + decals: + 17: -2,77 + 18: -1,77 + 19: 0,77 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + decals: + 824: 7,17 + 825: 8,17 + 826: 10,17 + 827: 9,17 + 828: 11,17 + 829: 12,17 + 830: 13,17 + 831: 14,17 + 832: 15,17 + - node: + color: '#5A5A605A' + id: HalfTileOverlayGreyscale180 + decals: + 0: -2,76 + 1: -1,76 + 2: 0,76 + - node: + color: '#D4D4D40C' + id: HalfTileOverlayGreyscale180 + decals: + 5061: 18,-12 + 5062: 19,-12 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale270 + decals: + 16: 1,76 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + decals: + 818: 6,18 + 819: 6,19 + 820: 6,20 + 998: 9,30 + 999: 9,31 + 1000: 9,32 + 1001: 9,33 + 1002: 9,34 + - node: + color: '#D381C9FF' + id: HalfTileOverlayGreyscale270 + decals: + 1061: -12,27 + 1062: -12,28 + 1063: -12,29 + 1064: -12,30 + 1065: -12,31 + 1066: -12,32 + 1067: -12,33 + 1068: -12,34 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale90 + decals: + 15: -3,76 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + decals: + 821: 16,18 + 822: 16,19 + 823: 16,20 + 1003: 12,30 + 1004: 12,31 + 1005: 12,32 + 1006: 12,33 + 1007: 12,34 + - node: + color: '#D381C9FF' + id: HalfTileOverlayGreyscale90 + decals: + 1069: -10,27 + 1070: -10,28 + 1071: -10,29 + 1072: -10,30 + 1073: -10,31 + 1074: -10,32 + 1075: -10,33 + 1076: -10,34 + - node: + angle: 1.5707963267948966 rad + color: '#A46105C0' + id: LoadingArea + decals: + 2082: -36,5 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 1984: -40,1 + 1985: -40,5 + 5127: -42,24 + 5128: -42,22 + - node: + angle: -1.5707963267948966 rad + color: '#52B4E996' + id: LoadingAreaGreyscale + decals: + 2251: 28,6 + - node: + angle: 1.5707963267948966 rad + color: '#52B4E996' + id: LoadingAreaGreyscale + decals: + 2250: 28,3 + - node: + color: '#334E6DC8' + id: MiniTileCheckerAOverlay + decals: + 1832: 17,-25 + 1833: 17,-24 + 1834: 17,-23 + 1861: 18,-18 + 1862: 19,-18 + 1863: 19,-17 + 1864: 18,-17 + 1865: 18,-16 + 1866: 19,-16 + 1867: 19,-15 + 1868: 18,-15 + 1869: 18,-14 + 1937: 4,46 + 1938: 5,46 + 1939: 5,47 + 1940: 4,47 + 5005: 19,-14 + - node: + color: '#52B4E996' + id: MiniTileCheckerAOverlay + decals: + 1294: -13,-15 + 1295: -13,-14 + 1296: -13,-13 + 1297: -12,-13 + 1298: -11,-13 + 1299: -10,-13 + 1300: -10,-14 + 1301: -10,-15 + 1302: -11,-15 + 1303: -12,-15 + 1304: -12,-14 + 1305: -11,-14 + - node: + color: '#52B4E9FF' + id: MiniTileCheckerAOverlay + decals: + 763: 19,40 + 764: 19,41 + 765: 19,42 + 766: 20,42 + 767: 21,42 + 768: 21,41 + 769: 21,40 + 770: 20,40 + 771: 20,41 + - node: + color: '#D381C996' + id: MiniTileCheckerAOverlay + decals: + 1128: -14,23 + 1129: -14,22 + - node: + color: '#EFB34196' + id: MiniTileCheckerAOverlay + decals: + 1729: 5,-26 + 1730: 5,-25 + 1731: 6,-25 + 1732: 6,-26 + - node: + color: '#3E5C23A8' + id: MiniTileCheckerBOverlay + decals: + 1555: 7,9 + 1556: 8,9 + 1557: 9,9 + 1558: 7,8 + 1559: 8,8 + 1560: 9,8 + 1561: 7,7 + 1562: 8,7 + 1563: 9,7 + 1564: 7,6 + 1565: 8,6 + 1566: 9,6 + - node: + color: '#D381C996' + id: MiniTileCheckerBOverlay + decals: + 1130: -20,23 + 1131: -20,22 + 1202: -7,22 + 1203: -6,22 + 1204: -5,22 + 1205: -5,23 + 1206: -6,23 + 1207: -7,23 + - node: + color: '#D56F18EF' + id: MiniTileCheckerBOverlay + decals: + 945: 3,22 + 946: 3,23 + 947: 3,24 + 948: 4,24 + 949: 5,24 + 950: 5,23 + 951: 4,23 + 952: 4,22 + - node: + color: '#DE3A3A96' + id: MiniTileCheckerBOverlay + decals: + 613: -14,49 + 614: -13,49 + 615: -16,59 + 616: -15,59 + - node: + color: '#EFB34196' + id: MiniTileCheckerBOverlay + decals: + 1306: -13,-13 + 1307: -12,-13 + 1308: -11,-13 + 1309: -10,-13 + 1310: -10,-14 + 1311: -10,-15 + 1312: -11,-15 + 1313: -12,-15 + 1314: -13,-15 + 1315: -13,-14 + 1316: -12,-14 + 1317: -11,-14 + 1328: 8,-13 + 1329: 8,-14 + 1330: 8,-15 + 1331: 9,-15 + 1332: 9,-14 + 1333: 9,-13 + 1334: 10,-13 + 1335: 10,-14 + 1336: 10,-15 + 1337: 11,-15 + 1338: 11,-14 + 1339: 11,-13 + - node: + color: '#52B4E996' + id: MiniTileOverlay + decals: + 5223: 4,27 + 5224: 3,27 + 5225: 2,27 + 5226: 2,28 + 5227: 4,28 + 5228: 3,28 + 5229: 3,29 + 5230: 2,29 + 5231: 2,30 + 5232: 3,30 + 5233: 3,31 + 5234: 2,31 + 5235: 2,32 + 5236: 3,32 + 5237: 3,33 + 5238: 2,33 + 5239: 3,34 + 5240: 2,34 + - node: + color: '#18A2D50C' + id: MonoOverlay + decals: + 796: 27,31 + 797: 26,31 + 798: 25,31 + 799: 23,31 + 800: 23,32 + 801: 23,33 + 802: 23,34 + 803: 27,34 + 804: 27,34 + 805: 27,31 + 806: 26,31 + 807: 25,31 + 808: 23,31 + 809: 23,32 + 810: 23,33 + 811: 23,34 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale + decals: + 213: -2,58 + 214: -2,59 + 215: -2,60 + 216: -2,61 + 217: -2,62 + 218: -2,63 + 219: -2,64 + 220: -2,65 + 221: -2,66 + 222: -2,68 + 223: 0,68 + 224: -1,68 + 225: 2,68 + 226: 3,68 + 227: 4,68 + 228: 5,68 + 229: 6,68 + 230: 7,68 + 2309: -2,67 + 2310: 1,68 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + decals: + 168: 5,15 + 169: 6,15 + 170: 7,15 + 171: 8,15 + 172: 9,15 + 173: 10,15 + 174: 11,15 + 175: 12,15 + 176: 13,15 + 177: 14,15 + 178: 15,15 + 179: 16,15 + 180: 17,15 + 839: 15,18 + - node: + color: '#79150096' + id: QuarterTileOverlayGreyscale + decals: + 1631: 4,-8 + 1632: 5,-8 + 1633: 6,-8 + 1634: 7,-8 + 1635: 8,-8 + 1636: 9,-8 + 1637: 10,-8 + 1638: 11,-8 + 1639: 12,-8 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale + decals: + 279: -33,-7 + 280: -33,-6 + 281: -33,-5 + 282: -33,-4 + 283: -33,-3 + 284: -33,-2 + 285: -33,-1 + 286: -33,0 + 287: -33,1 + 288: -33,2 + 289: -33,3 + 290: -33,8 + 291: -33,9 + 292: -33,10 + 293: -33,11 + 294: -33,12 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + decals: + 181: -2,38 + 182: -3,38 + 183: -2,39 + 184: -2,40 + 185: -2,41 + 186: -4,38 + 187: -5,38 + 188: -7,38 + 189: -6,38 + 190: -8,38 + 191: -9,38 + 192: -10,38 + 193: -11,38 + 194: -12,38 + 195: -13,38 + 196: -14,38 + 197: -15,38 + 198: -16,38 + 199: -17,38 + 200: -18,38 + 201: -19,38 + 202: -20,38 + 203: -21,38 + 204: -22,38 + 205: -23,38 + 206: -2,42 + 207: -2,43 + 208: -2,44 + 209: -2,46 + 210: -2,45 + 211: -2,47 + 212: -2,51 + 625: -2,48 + 626: -2,49 + 627: -2,50 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale180 + decals: + 20: -3,77 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + decals: + 134: 0,20 + 135: 0,21 + 136: 0,22 + 137: 0,23 + 138: 0,24 + 139: 0,25 + 140: 0,27 + 141: 0,26 + 142: 0,28 + 143: 0,29 + 144: 0,30 + 145: 0,31 + 146: 0,32 + 147: 0,33 + 148: 0,34 + 149: 0,35 + 150: 0,36 + 151: 1,36 + 152: 2,36 + 153: 3,36 + 154: 4,36 + 155: 5,36 + 156: 6,36 + 157: 7,36 + 158: 8,36 + 159: 9,36 + 160: 10,36 + 161: 11,36 + 162: 12,36 + 163: 13,36 + 164: 14,36 + 165: 15,36 + 166: 16,36 + 167: 17,36 + 840: 14,19 + - node: + color: '#79150096' + id: QuarterTileOverlayGreyscale180 + decals: + 1609: -6,13 + 1610: -7,13 + 1611: -8,13 + 1612: -9,13 + 1613: -10,13 + 1614: -11,13 + 1615: -12,13 + 1616: -13,13 + 1617: -14,13 + 1618: -15,13 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 + decals: + 295: -34,13 + 296: -35,13 + 297: -36,13 + 298: -37,13 + 299: -39,13 + 300: -38,13 + 301: -41,13 + 302: -42,13 + 303: -43,13 + 304: -44,13 + 305: -45,13 + 2020: -40,13 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale270 + decals: + 21: 1,77 + 462: 1,66 + 463: 3,66 + 464: 2,66 + 465: 4,66 + 466: 5,66 + 467: 6,66 + 468: 7,66 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + decals: + 367: -2,-14 + 368: -4,-14 + 369: -6,-14 + 370: -6,-12 + 371: -6,-10 + 372: -8,-10 + 373: -10,-10 + 374: -12,-10 + 375: -14,-10 + 376: -16,-10 + 838: 8,19 + - node: + color: '#79150096' + id: QuarterTileOverlayGreyscale270 + decals: + 1595: 5,13 + 1596: 6,13 + 1597: 8,13 + 1598: 7,13 + 1599: 9,13 + 1600: 10,13 + 1601: 11,13 + 1602: 12,13 + 1603: 13,13 + 1604: 14,13 + 1605: 15,13 + 1606: 16,13 + 1607: 17,13 + 1608: 4,13 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale270 + decals: + 246: 2,52 + 247: 1,52 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale270 + decals: + 318: -33,16 + 319: -33,17 + 320: -33,18 + 321: -33,19 + 322: -33,20 + 323: -33,21 + 324: -33,22 + 325: -33,23 + 326: -33,24 + 327: -33,25 + 328: -33,26 + 329: -33,28 + 330: -33,27 + 331: -33,29 + 332: -33,30 + 333: -33,31 + 334: -33,32 + 335: -33,33 + 336: -33,34 + 337: -33,35 + 338: -33,36 + 339: -34,36 + 340: -35,36 + 341: -36,36 + 342: -37,36 + 343: -38,36 + 344: -39,36 + 345: -40,36 + 346: -41,36 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale270 + decals: + 96: -2,20 + 97: -2,21 + 98: -2,22 + 99: -2,23 + 100: -2,24 + 101: -2,25 + 102: -2,26 + 103: -2,27 + 104: -2,28 + 105: -2,29 + 106: -2,30 + 107: -2,31 + 108: -2,32 + 109: -2,33 + 110: -2,34 + 111: -2,35 + 112: -2,36 + 113: -3,36 + 114: -4,36 + 115: -5,36 + 116: -6,36 + 117: -7,36 + 118: -8,36 + 119: -9,36 + 120: -10,36 + 121: -11,36 + 122: -12,36 + 123: -13,36 + 124: -14,36 + 125: -15,36 + 126: -16,36 + 127: -17,36 + 128: -18,36 + 129: -19,36 + 130: -20,36 + 131: -21,36 + 132: -22,36 + 133: -23,36 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale270 + decals: + 347: 5,-10 + 348: 6,-10 + 349: 7,-10 + 350: 8,-10 + 351: 9,-10 + 352: 11,-10 + 353: 10,-10 + 354: 12,-10 + 355: 13,-10 + 356: 14,-10 + 361: 4,-14 + 362: 3,-14 + 363: 2,-14 + 364: 1,-14 + 365: 0,-14 + 366: -1,-14 + 377: -15,-10 + 378: -13,-10 + 379: -11,-10 + 380: -9,-10 + 381: -7,-10 + 382: -6,-11 + 383: -6,-13 + 384: -5,-14 + 385: -3,-14 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale90 + decals: + 231: 0,65 + 232: 0,64 + 233: 0,63 + 234: 0,62 + 235: 0,61 + 236: 0,60 + 237: 0,59 + 238: 0,58 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + decals: + 837: 7,18 + - node: + color: '#79150096' + id: QuarterTileOverlayGreyscale90 + decals: + 1619: -6,-8 + 1620: -7,-8 + 1621: -8,-8 + 1622: -9,-8 + 1623: -10,-8 + 1624: -11,-8 + 1625: -12,-8 + 1626: -13,-8 + 1627: -14,-8 + 1628: -15,-8 + 1629: -16,-8 + 1630: -17,-8 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale90 + decals: + 239: 1,57 + 240: 2,57 + 241: 2,56 + 242: 2,55 + 243: 2,54 + 244: 2,53 + 245: 2,52 + 248: 0,51 + 249: 0,50 + 250: 0,44 + 251: 0,43 + 252: 0,42 + 253: 0,41 + 254: 0,40 + 255: 0,39 + 256: 0,38 + 257: 1,38 + 258: 2,38 + 259: 3,38 + 260: 4,38 + 261: 5,38 + 262: 7,38 + 263: 6,38 + 264: 8,38 + 265: 9,38 + 266: 10,38 + 267: 11,38 + 268: 13,38 + 269: 12,38 + 270: 16,38 + 271: 17,38 + 272: 18,38 + 273: 19,38 + 274: 20,38 + 275: 21,38 + 276: 22,38 + 277: 23,38 + 278: 24,38 + 1923: 0,49 + 1924: 0,48 + 4957: 14,38 + 4958: 15,38 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + decals: + 306: -45,15 + 307: -44,15 + 308: -43,15 + 309: -42,15 + 310: -41,15 + 311: -40,15 + 312: -39,15 + 313: -38,15 + 314: -37,15 + 315: -36,15 + 316: -35,15 + 317: -34,15 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale90 + decals: + 79: -7,15 + 80: -8,15 + 81: -9,15 + 82: -10,15 + 83: -11,15 + 84: -12,15 + 85: -13,15 + 86: -14,15 + 87: -15,15 + 88: -16,15 + 89: -17,15 + 90: -18,15 + 91: -19,15 + 92: -20,15 + 93: -21,15 + 94: -22,15 + 95: -23,15 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale90 + decals: + 357: 4,-11 + 358: 4,-12 + 359: 4,-13 + 360: 4,-14 + - node: + color: '#FFFFFFFF' + id: Rock03 + decals: + 2326: 22.524572,21.835993 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign1 + decals: + 2252: -4,14 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign2 + decals: + 2253: -3,14 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign3 + decals: + 2254: -2,14 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign4 + decals: + 2255: -1,14 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign5 + decals: + 2256: 0,14 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign6 + decals: + 2257: 1,14 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign7 + decals: + 2258: 2,14 + - node: + angle: 1.5707963267948966 rad + color: '#A46105C0' + id: StandClear + decals: + 2081: -36,5 + - node: + color: '#A4610696' + id: StandClear + decals: + 2083: -38,16 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 1096: -7,27 + 1279: -12,-27 + 1280: -12,-28 + 1281: -12,-29 + 1282: -12,-30 + 1737: 8,-25 + 1738: 8,-21 + 1739: 11,-20 + 1740: 12,-20 + 1741: 11,-17 + 1742: 12,-17 + 1743: 10,-11 + 1744: 11,-11 + 1745: -12,-11 + 1746: -13,-11 + 1747: -13,-17 + 1748: -10,-19 + 1749: -13,-21 + 1750: 12,-39 + 1751: 6,-36 + 1752: 7,-36 + 1753: 6,-32 + 1754: 7,-32 + 1755: -20,-19 + 1957: -9,-17 + 1979: -42,9 + 1980: -38,10 + 1981: -36,3 + 1982: -42,-4 + 1983: -41,-4 + 2319: -20,-13 + 2320: -21,-13 + 4969: -40,12 + - node: + color: '#52B4E996' + id: StandClearGreyscale + decals: + 456: -2,72 + 457: -1,72 + 458: 0,72 + 1933: 1,47 + 1934: 1,46 + 1935: 3,47 + 1936: 3,46 + 1953: 15,-24 + 1954: 14,-24 + 1955: 18,-11 + 1956: 19,-11 + 5067: 18,-13 + 5068: 19,-13 + - node: + color: '#A4610696' + id: StandClearGreyscale + decals: + 5139: -44,27 + 5140: -44,28 + - node: + color: '#D381C9FF' + id: StandClearGreyscale + decals: + 5075: -16,35 + 5076: -15,35 + 5077: -14,35 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 833: 16,17 + 836: 7,19 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 834: 6,17 + 835: 15,19 + - node: + color: '#79150096' + id: WarnBox + decals: + 1407: -15,-13 + 1408: -15,-12 + - node: + color: '#791500FF' + id: WarnBox + decals: + 1409: -15,-13 + 1410: -15,-12 + - node: + color: '#DE3A3AFF' + id: WarnBox + decals: + 1230: -10,25 + 1405: -15,-15 + 1406: -15,-16 + - node: + color: '#52B4E996' + id: WarnBoxGreyscale + decals: + 1411: -15,-13 + 1412: -15,-12 + - node: + color: '#52B4E9FF' + id: WarnBoxGreyscale + decals: + 1231: -10,24 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 1653: 8,-39 + 2295: -22,-16 + 5073: -14,35 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 1652: 5,-39 + 2294: -24,-16 + 5078: -16,35 + 5104: 25,31 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 1058: -14,32 + 1651: 8,-42 + 2293: -22,-18 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 1057: -16,32 + 1650: 5,-42 + 2296: -24,-18 + 5094: -7,-18 + 5096: 13,-34 + 5105: 27,34 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 5261: 13,-31 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 498: -9,63 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 497: -6,63 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 2264: 19,-33 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 488: -6,64 + 489: -6,63 + 490: -6,62 + 491: -6,61 + 492: -6,59 + 493: -6,60 + 494: -9,64 + 1059: -14,33 + 1060: -14,34 + 1283: -12,-38 + 1284: -12,-37 + 1285: -12,-36 + 1286: -12,-35 + 1287: -12,-34 + 1288: -12,-33 + 1289: -12,-32 + 1290: -12,-25 + 1291: -12,-24 + 1292: -12,-23 + 1293: -12,-22 + 1648: 8,-40 + 1649: 8,-41 + 1921: 12,-18 + 1922: 12,-19 + 2006: -41,-5 + 2007: -41,-6 + 2008: -41,-7 + 2009: -41,-8 + 2297: -22,-17 + 5007: 20,-12 + 5008: 20,-13 + 5098: 23,34 + 5099: 23,33 + 5100: 23,32 + 5101: 23,31 + 5141: -45,27 + 5142: -45,28 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: WarnLineE + decals: + 5260: 13,-32 + - node: + color: '#FFA500FF' + id: WarnLineN + decals: + 5091: -28,-29 + 5092: 26,-29 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 1054: -15,32 + 1093: -8,32 + 1094: -7,32 + 1095: -6,32 + 1643: 6,-42 + 1644: 7,-42 + 2265: 18,-33 + 2272: 17,-33 + 2300: -23,-18 + 5095: -6,-18 + 5106: -29,49 + 5107: -28,49 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 485: -9,63 + 486: -9,64 + 487: -6,64 + 692: -9,62 + 1055: -16,33 + 1056: -16,34 + 1232: -15,27 + 1233: -15,28 + 1645: 5,-41 + 1646: 5,-40 + 1919: 11,-19 + 1920: 11,-18 + 2010: -42,-5 + 2011: -42,-6 + 2012: -42,-7 + 2013: -42,-8 + 2259: 19,-35 + 2260: 19,-34 + 2261: 19,-36 + 2262: 19,-37 + 2263: 19,-38 + 2299: -24,-17 + 5009: 17,-13 + 5010: 17,-12 + 5097: 13,-33 + 5123: -43,27 + 5124: -43,28 + 5143: -46,28 + 5144: -46,27 + - node: + color: '#FFA500FF' + id: WarnLineW + decals: + 5090: -28,-29 + 5093: 26,-29 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 495: -7,63 + 496: -8,63 + 1199: -10,18 + 1200: -9,18 + 1201: -8,18 + 1647: 6,-39 + 2298: -23,-16 + 5074: -15,35 + 5102: 27,31 + 5103: 26,31 + - node: + color: '#E7B795FF' + id: WoodTrimThinCornerNe + decals: + 2170: 43,51 + 2187: 46,48 + - node: + color: '#FFD381FF' + id: WoodTrimThinCornerNe + decals: + 1537: -5,8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 748: 14,61 + 1190: -24,21 + - node: + color: '#E7B795FF' + id: WoodTrimThinCornerNw + decals: + 2171: 41,51 + 2176: 40,49 + 2188: 45,48 + - node: + color: '#FFD381FF' + id: WoodTrimThinCornerNw + decals: + 1548: -12,8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 747: 7,61 + 815: 14,34 + - node: + color: '#E7B795FF' + id: WoodTrimThinCornerSe + decals: + 2185: 46,46 + - node: + color: '#FFD381FF' + id: WoodTrimThinCornerSe + decals: + 1533: -5,4 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 2221: 14,56 + - node: + color: '#E7B795FF' + id: WoodTrimThinCornerSw + decals: + 2179: 40,46 + - node: + color: '#FFD381FF' + id: WoodTrimThinCornerSw + decals: + 1542: -10,4 + 1546: -12,6 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 2220: 7,56 + - node: + color: '#E7B795FF' + id: WoodTrimThinInnerNe + decals: + 2175: 43,46 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 481: 3,70 + - node: + color: '#E7B795FF' + id: WoodTrimThinInnerNw + decals: + 2174: 41,49 + 2190: 45,46 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNw + decals: + 482: 7,70 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSe + decals: + 483: 3,74 + - node: + color: '#FFD381FF' + id: WoodTrimThinInnerSw + decals: + 1544: -10,6 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSw + decals: + 484: 7,74 + - node: + color: '#E7B795FF' + id: WoodTrimThinLineE + decals: + 2166: 43,47 + 2167: 43,48 + 2168: 43,49 + 2169: 43,50 + 2186: 46,47 + - node: + color: '#FFD381FF' + id: WoodTrimThinLineE + decals: + 1534: -5,5 + 1535: -5,6 + 1536: -5,7 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 475: 3,71 + 476: 3,72 + 477: 3,73 + 759: 14,57 + 760: 14,58 + 761: 14,59 + 762: 14,60 + 1191: -24,20 + 1192: -24,19 + - node: + color: '#E7B795FF' + id: WoodTrimThinLineN + decals: + 2172: 42,51 + 2191: 44,46 + - node: + color: '#FFD381FF' + id: WoodTrimThinLineN + decals: + 1549: -11,8 + 1550: -10,8 + 1551: -9,8 + 1552: -8,8 + 1553: -7,8 + 1554: -6,8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 469: 4,70 + 470: 5,70 + 471: 6,70 + 749: 8,61 + 750: 9,61 + 751: 10,61 + 752: 11,61 + 753: 12,61 + 754: 13,61 + 816: 15,34 + 817: 16,34 + 1189: -25,21 + 5250: 5,59 + 5251: 3,59 + 5252: 2,59 + 5253: 4,59 + - node: + color: '#E7B795FF' + id: WoodTrimThinLineS + decals: + 2180: 41,46 + 2181: 42,46 + 2182: 43,46 + 2183: 44,46 + 2184: 45,46 + - node: + color: '#FFD381FF' + id: WoodTrimThinLineS + decals: + 1538: -6,4 + 1539: -7,4 + 1540: -8,4 + 1541: -9,4 + 1545: -11,6 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 472: 4,74 + 473: 5,74 + 474: 6,74 + 2214: 8,56 + 2215: 9,56 + 2216: 10,56 + 2217: 11,56 + 2218: 12,56 + 2219: 13,56 + - node: + color: '#E7B795FF' + id: WoodTrimThinLineW + decals: + 2173: 41,50 + 2177: 40,48 + 2178: 40,47 + 2189: 45,47 + - node: + color: '#FFD381FF' + id: WoodTrimThinLineW + decals: + 1543: -10,5 + 1547: -12,7 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 478: 7,71 + 479: 7,72 + 480: 7,73 + 755: 7,60 + 756: 7,59 + 757: 7,58 + 758: 7,57 + 812: 14,31 + 813: 14,32 + 814: 14,33 + - node: + color: '#80C71F76' + id: grasssnowa2 + decals: + 5000: -45.348083,39.888554 + - node: + color: '#80C71F76' + id: grasssnowb1 + decals: + 4999: -45.952293,40.610558 + - node: + color: '#80C71F76' + id: grasssnowc1 + decals: + 4998: -47.55861,40.00643 + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 65535 + -1,0: + 0: 65535 + 0,-1: + 0: 65535 + 0,0: + 0: 65535 + -4,-4: + 0: 65535 + -4,-3: + 0: 65535 + -4,-2: + 0: 65535 + -4,-1: + 0: 65535 + -3,-4: + 0: 65535 + -3,-3: + 0: 65535 + -3,-2: + 0: 65535 + -3,-1: + 0: 65535 + -2,-4: + 0: 65535 + -2,-3: + 0: 65535 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -1,-4: + 0: 65535 + -1,-3: + 0: 65535 + -1,-2: + 0: 65535 + -4,0: + 0: 65535 + -4,1: + 0: 65535 + -4,2: + 0: 65535 + -4,3: + 0: 65535 + -3,0: + 0: 65535 + -3,1: + 0: 65535 + -3,2: + 0: 65535 + -3,3: + 0: 65535 + -2,0: + 0: 65535 + -2,1: + 0: 65535 + -2,2: + 0: 65535 + -2,3: + 0: 65535 + -1,1: + 0: 65535 + -1,2: + 0: 65535 + -1,3: + 0: 65535 + 0,-4: + 0: 65535 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 1,-4: + 0: 65535 + 1,-3: + 0: 65535 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-4: + 0: 65535 + 2,-3: + 0: 65535 + 2,-2: + 0: 65535 + 2,-1: + 0: 65535 + 3,-4: + 0: 65535 + 3,-3: + 0: 65535 + 3,-2: + 0: 65535 + 3,-1: + 0: 65519 + 1: 16 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 65535 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 65535 + 1,3: + 0: 65535 + 2,0: + 0: 13119 + 2: 52416 + 2,1: + 0: 65535 + 2,2: + 0: 65535 + 2,3: + 0: 65535 + 3,0: + 0: 61167 + 2: 4368 + 3,1: + 0: 65535 + 3,2: + 0: 65535 + 3,3: + 0: 65535 + -4,4: + 0: 65535 + -4,5: + 0: 65535 + -4,6: + 0: 65535 + -4,7: + 0: 65535 + -3,4: + 0: 65535 + -3,5: + 0: 65535 + -3,6: + 0: 65535 + -3,7: + 0: 65535 + -2,4: + 0: 65535 + -2,5: + 0: 65535 + -2,6: + 0: 65535 + -2,7: + 0: 65535 + -1,4: + 0: 65535 + -1,5: + 0: 65535 + -1,6: + 0: 65535 + -1,7: + 0: 65535 + 0,4: + 0: 65535 + 0,5: + 0: 65535 + 0,6: + 0: 65535 + 0,7: + 0: 65535 + 1,4: + 0: 65535 + 1,5: + 0: 65535 + 1,6: + 0: 65535 + 1,7: + 0: 65535 + 2,4: + 0: 65535 + 2,5: + 0: 65535 + 2,6: + 0: 65535 + 2,7: + 0: 65535 + 3,4: + 0: 65535 + 3,5: + 0: 65535 + 3,6: + 0: 65535 + 3,7: + 0: 65535 + 4,0: + 0: 65535 + 4,1: + 0: 65535 + 4,2: + 0: 65535 + 4,3: + 0: 65535 + 5,0: + 0: 65535 + 5,1: + 0: 65535 + 5,2: + 0: 65535 + 5,3: + 0: 65535 + 6,0: + 0: 65535 + 6,1: + 0: 65535 + 6,2: + 0: 65535 + 6,3: + 0: 65535 + 7,0: + 0: 65535 + 7,1: + 0: 65535 + 7,2: + 0: 65535 + 7,3: + 0: 65535 + 4,-4: + 0: 65535 + 4,-3: + 0: 65535 + 4,-2: + 0: 65535 + 4,-1: + 0: 65535 + 5,-4: + 0: 65535 + 5,-3: + 0: 65535 + 5,-2: + 0: 65535 + 5,-1: + 0: 65535 + 6,-4: + 0: 65535 + 6,-3: + 0: 65535 + 6,-2: + 0: 65535 + 6,-1: + 0: 65535 + 7,-4: + 0: 65535 + 7,-3: + 0: 65535 + 7,-2: + 0: 65535 + 7,-1: + 0: 65535 + 4,4: + 0: 65535 + 4,5: + 0: 65535 + 4,6: + 0: 65535 + 4,7: + 0: 65535 + 5,4: + 0: 65535 + 5,5: + 0: 65535 + 5,6: + 0: 65535 + 5,7: + 0: 65535 + 6,4: + 0: 65535 + 6,5: + 0: 65535 + 6,6: + 0: 65535 + 6,7: + 0: 65535 + 7,4: + 0: 65535 + 7,5: + 0: 65535 + 7,6: + 0: 65535 + 7,7: + 0: 65535 + -8,-4: + 0: 53247 + 2: 12288 + -8,-3: + 2: 3 + 0: 65532 + -8,-2: + 0: 65535 + -8,-1: + 0: 65535 + -7,-4: + 0: 65535 + -7,-3: + 0: 65535 + -7,-2: + 0: 65535 + -7,-1: + 0: 65535 + -6,-4: + 0: 65535 + -6,-3: + 0: 65535 + -6,-2: + 0: 65535 + -6,-1: + 0: 65535 + -5,-4: + 0: 65535 + -5,-3: + 0: 65535 + -5,-2: + 0: 65535 + -5,-1: + 0: 65535 + -8,4: + 0: 65535 + -8,5: + 0: 63359 + 3: 2176 + -8,6: + 0: 65535 + -8,7: + 0: 65535 + -7,4: + 0: 65535 + -7,5: + 0: 65535 + -7,6: + 0: 65535 + -7,7: + 0: 65535 + -6,4: + 0: 65535 + -6,5: + 0: 65535 + -6,6: + 0: 65535 + -6,7: + 0: 65535 + -5,4: + 0: 65535 + -5,5: + 0: 65535 + -5,6: + 0: 65535 + -5,7: + 0: 65535 + -8,0: + 0: 65535 + -8,1: + 0: 65535 + -8,2: + 0: 65535 + -8,3: + 0: 65535 + -7,0: + 0: 65535 + -7,1: + 0: 65535 + -7,2: + 0: 65535 + -7,3: + 0: 65535 + -6,0: + 0: 65535 + -6,1: + 0: 65535 + -6,2: + 0: 65535 + -6,3: + 0: 65535 + -5,0: + 0: 65535 + -5,1: + 0: 65535 + -5,2: + 0: 65535 + -5,3: + 0: 65535 + 8,-4: + 0: 65535 + 8,-3: + 0: 65535 + 8,-2: + 0: 65535 + 8,-1: + 0: 65535 + 9,-4: + 0: 65535 + 9,-3: + 0: 65535 + 9,-2: + 0: 8191 + 10,-4: + 0: 63999 + 10,-3: + 0: 65535 + 10,-2: + 0: 4095 + 11,-4: + 0: 65535 + 11,-3: + 0: 65535 + 11,-2: + 0: 65535 + 8,0: + 0: 65535 + 8,1: + 0: 65535 + 8,2: + 0: 65535 + 8,3: + 0: 65535 + 9,2: + 0: 63487 + 9,3: + 0: 65535 + 10,2: + 0: 61440 + 10,3: + 0: 65535 + 11,2: + 0: 65280 + 11,3: + 0: 65535 + 8,4: + 0: 32767 + 8,5: + 0: 13107 + 8,6: + 0: 13107 + 8,7: + 0: 13107 + 9,4: + 0: 255 + 10,4: + 0: 255 + 11,4: + 0: 4095 + -12,-4: + 0: 61440 + -12,-3: + 0: 65535 + -12,-2: + 0: 36863 + -12,-1: + 0: 34952 + -11,-3: + 0: 65535 + -11,-2: + 0: 65535 + -11,-1: + 0: 65535 + -11,-4: + 0: 64640 + -10,-4: + 0: 65535 + -10,-3: + 0: 65535 + -10,-2: + 0: 65535 + -10,-1: + 0: 65535 + -9,-4: + 0: 32767 + 2: 32768 + -9,-3: + 0: 65527 + 2: 8 + -9,-2: + 0: 65535 + -9,-1: + 0: 65535 + -12,2: + 0: 63624 + -12,3: + 0: 65535 + -12,0: + 0: 34952 + -12,1: + 0: 34952 + -11,0: + 0: 65535 + -11,1: + 0: 65535 + -11,2: + 0: 65519 + 3: 16 + -11,3: + 0: 65535 + -10,0: + 0: 65535 + -10,1: + 0: 65535 + -10,2: + 0: 65535 + -10,3: + 0: 65535 + -9,0: + 0: 65535 + -9,1: + 0: 65535 + -9,2: + 0: 65535 + -9,3: + 0: 65535 + -12,4: + 0: 32767 + 4: 32768 + -12,6: + 0: 52428 + 4: 8736 + -12,5: + 0: 32768 + 4: 19660 + -12,7: + 0: 8 + 4: 3814 + -11,4: + 0: 65535 + -11,5: + 0: 65535 + -11,6: + 0: 65535 + -11,7: + 0: 65535 + -10,4: + 0: 65535 + -10,5: + 0: 65535 + -10,6: + 0: 65535 + -10,7: + 0: 65535 + -9,4: + 0: 65535 + -9,5: + 0: 65535 + -9,6: + 0: 65535 + -9,7: + 0: 65535 + 12,2: + 0: 65280 + 12,3: + 0: 65535 + 13,2: + 0: 4096 + 13,3: + 0: 4369 + 12,4: + 0: 4095 + 13,4: + 0: 17 + 8,8: + 0: 65527 + 8,9: + 0: 65535 + 8,10: + 0: 65535 + 8,11: + 0: 65535 + 9,8: + 0: 65280 + 9,9: + 0: 65535 + 9,10: + 0: 65535 + 9,11: + 0: 65535 + 10,8: + 0: 65280 + 10,9: + 0: 65535 + 10,10: + 0: 65535 + 10,11: + 0: 65535 + 11,8: + 0: 65520 + 11,9: + 0: 65535 + 11,10: + 0: 65535 + 11,11: + 0: 65535 + 12,8: + 0: 63344 + 12,9: + 0: 65535 + 12,10: + 0: 30591 + 12,11: + 0: 8183 + 13,8: + 0: 4096 + 13,9: + 0: 4369 + 13,10: + 0: 4369 + 13,11: + 0: 4369 + 4,8: + 0: 65535 + 4,9: + 0: 65535 + 4,10: + 0: 65535 + 4,11: + 0: 65535 + 5,8: + 0: 65535 + 5,9: + 0: 65535 + 5,10: + 0: 65535 + 5,11: + 0: 65535 + 6,8: + 0: 65535 + 6,9: + 0: 65535 + 6,10: + 0: 65535 + 6,11: + 0: 65535 + 7,8: + 0: 65535 + 7,9: + 0: 65535 + 7,10: + 0: 65535 + 7,11: + 0: 65535 + 12,-4: + 0: 65535 + 12,-3: + 0: 65535 + 12,-2: + 0: 30719 + 13,-3: + 0: 4368 + 13,-2: + 0: 17 + -14,-3: + 0: 52416 + -14,-2: + 0: 204 + -13,-4: + 0: 61440 + -13,-3: + 0: 65535 + -13,-2: + 0: 4095 + -14,3: + 0: 52428 + -13,2: + 0: 61440 + -13,3: + 0: 65535 + -14,4: + 0: 2252 + -13,4: + 0: 65535 + 0,8: + 0: 65535 + 0,9: + 0: 65535 + 0,10: + 0: 65535 + 0,11: + 0: 65535 + 1,8: + 0: 65535 + 1,9: + 0: 65535 + 1,10: + 0: 65535 + 1,11: + 0: 65535 + 2,8: + 0: 65535 + 2,9: + 0: 65535 + 2,10: + 0: 65535 + 2,11: + 0: 65535 + 3,8: + 0: 65535 + 3,9: + 0: 65535 + 3,10: + 0: 65535 + 3,11: + 0: 65535 + -4,8: + 0: 65535 + -4,9: + 0: 65535 + -4,10: + 0: 65535 + -4,11: + 0: 65535 + -3,8: + 0: 65535 + -3,9: + 0: 65535 + -3,10: + 0: 65535 + -3,11: + 0: 65535 + -2,8: + 0: 65535 + -2,9: + 0: 65535 + -2,10: + 0: 65535 + -2,11: + 0: 65535 + -1,8: + 0: 65535 + -1,9: + 0: 65535 + -1,10: + 0: 65535 + -1,11: + 0: 65535 + -8,8: + 0: 65535 + -8,9: + 0: 65535 + -8,10: + 0: 65535 + -8,11: + 0: 65535 + -7,8: + 0: 65535 + -7,9: + 0: 65535 + -7,10: + 0: 65535 + -7,11: + 0: 65535 + -6,8: + 0: 65535 + -6,9: + 0: 65535 + -6,10: + 0: 65535 + -6,11: + 0: 65535 + -5,8: + 0: 65535 + -5,9: + 0: 65535 + -5,10: + 0: 65535 + -5,11: + 0: 65535 + -12,8: + 0: 65527 + -12,9: + 0: 65535 + -12,10: + 0: 65535 + -12,11: + 0: 65535 + -11,8: + 0: 65535 + -11,9: + 0: 65535 + -11,10: + 0: 65535 + -11,11: + 0: 65535 + -10,8: + 0: 65535 + -10,9: + 0: 65535 + -10,10: + 0: 65535 + -10,11: + 0: 65535 + -9,8: + 0: 65535 + -9,9: + 0: 65535 + -9,10: + 0: 65535 + -9,11: + 0: 65535 + -14,8: + 0: 52352 + -14,9: + 0: 52428 + -14,10: + 0: 17484 + -13,8: + 0: 65535 + -13,9: + 0: 65535 + -13,10: + 0: 65535 + -13,11: + 0: 57343 + 0,-8: + 0: 65279 + 4: 256 + 0,-7: + 5: 1 + 0: 65278 + 4: 256 + 0,-6: + 4: 1 + 0: 65278 + 6: 256 + 0,-5: + 7: 1 + 0: 65534 + 1,-8: + 0: 65535 + 1,-7: + 0: 65535 + 1,-6: + 0: 65535 + 1,-5: + 0: 65535 + 2,-8: + 0: 65535 + 2,-7: + 0: 65535 + 2,-6: + 0: 65535 + 2,-5: + 0: 65535 + 3,-8: + 0: 65501 + 1: 34 + 3,-7: + 0: 65535 + 3,-6: + 0: 65535 + 3,-5: + 0: 65535 + -4,-8: + 0: 65535 + -4,-7: + 0: 65535 + -4,-6: + 0: 65535 + -4,-5: + 0: 65535 + -3,-8: + 0: 65535 + -3,-7: + 0: 65535 + -3,-6: + 0: 65535 + -3,-5: + 0: 65535 + -2,-8: + 0: 65535 + -2,-7: + 0: 65535 + -2,-6: + 0: 65535 + -2,-5: + 0: 65535 + -1,-8: + 0: 62463 + 4: 3072 + -1,-7: + 0: 62451 + 5: 12 + 4: 3072 + -1,-6: + 0: 62451 + 4: 12 + 6: 3072 + -1,-5: + 0: 65523 + 7: 12 + -12,12: + 0: 61439 + -12,13: + 0: 58111 + -11,12: + 0: 65535 + -11,13: + 0: 65279 + -11,14: + 0: 36463 + -10,12: + 0: 65535 + -10,13: + 0: 65535 + -10,14: + 0: 45055 + -10,15: + 0: 43690 + -9,12: + 0: 65535 + -9,13: + 0: 65535 + -9,14: + 0: 4095 + -9,15: + 0: 15 + -13,12: + 0: 20477 + -13,13: + 0: 204 + -8,12: + 0: 65535 + -8,13: + 0: 65535 + -8,14: + 0: 65535 + -8,15: + 0: 3871 + -7,12: + 0: 65535 + -7,13: + 0: 65535 + -7,14: + 0: 65535 + -7,15: + 0: 3855 + -6,12: + 0: 65535 + -6,13: + 0: 65535 + -6,14: + 0: 65535 + -6,15: + 0: 53199 + -5,12: + 0: 65535 + -5,13: + 0: 65535 + -5,14: + 0: 65535 + -5,15: + 0: 65535 + -4,12: + 0: 65535 + -4,13: + 0: 65535 + -4,14: + 0: 65535 + -4,15: + 0: 65535 + -3,12: + 0: 65535 + -3,13: + 0: 65535 + -3,14: + 0: 65535 + -3,15: + 0: 65535 + -2,12: + 0: 65535 + -2,13: + 0: 65535 + -2,14: + 0: 65535 + -2,15: + 0: 65535 + -1,12: + 0: 65535 + -1,13: + 0: 65535 + -1,14: + 0: 65535 + -1,15: + 0: 65535 + 0,12: + 0: 65535 + 0,13: + 0: 65535 + 0,14: + 0: 65535 + 0,15: + 0: 65535 + 1,12: + 0: 65535 + 1,13: + 0: 65535 + 1,14: + 0: 65535 + 1,15: + 0: 65535 + 2,12: + 0: 65535 + 2,13: + 0: 65535 + 2,14: + 0: 65535 + 2,15: + 0: 65535 + 3,12: + 0: 65535 + 3,13: + 0: 65535 + 3,14: + 0: 65535 + 3,15: + 0: 65535 + 4,12: + 0: 65535 + 4,13: + 0: 65535 + 4,14: + 0: 65535 + 4,15: + 0: 65535 + 5,12: + 0: 65535 + 5,13: + 0: 65535 + 5,14: + 0: 65535 + 5,15: + 0: 7967 + 6,12: + 0: 65535 + 6,13: + 0: 65535 + 6,14: + 0: 65535 + 6,15: + 0: 3855 + 7,12: + 0: 65535 + 7,13: + 0: 65535 + 7,14: + 0: 32767 + 7,15: + 0: 1871 + 8,12: + 0: 65535 + 8,13: + 0: 65535 + 8,14: + 0: 36863 + 8,15: + 0: 34959 + 9,12: + 0: 65535 + 9,13: + 0: 65535 + 9,14: + 0: 65535 + 9,15: + 0: 43775 + 10,12: + 0: 65535 + 10,13: + 0: 62463 + 10,14: + 0: 1895 + 11,12: + 0: 16383 + 11,13: + 0: 12863 + -4,16: + 0: 65535 + -4,17: + 0: 65535 + -4,18: + 0: 36639 + -4,19: + 0: 34952 + -3,16: + 0: 65535 + -3,17: + 0: 65535 + -3,18: + 0: 61423 + -3,19: + 0: 65262 + -2,16: + 0: 65535 + -2,17: + 0: 65535 + -2,18: + 0: 65535 + -2,19: + 0: 65535 + -1,16: + 0: 65535 + -1,17: + 0: 65535 + -1,18: + 0: 65535 + -1,19: + 0: 65535 + -6,16: + 0: 19660 + -6,17: + 0: 12 + -5,16: + 0: 4095 + -5,17: + 0: 15 + 0,16: + 0: 65535 + 0,17: + 0: 65535 + 0,18: + 0: 65535 + 0,19: + 0: 65535 + 1,16: + 0: 65535 + 1,17: + 0: 65535 + 1,18: + 0: 65535 + 1,19: + 0: 65535 + 2,16: + 0: 65535 + 2,17: + 0: 65535 + 2,18: + 0: 48959 + 2,19: + 0: 64443 + 3,16: + 0: 32767 + 3,17: + 0: 30591 + 3,18: + 0: 1863 + 4,16: + 0: 4095 + 4,17: + 0: 15 + 5,16: + 0: 4369 + 5,17: + 0: 1 + -3,20: + 0: 40925 + -3,21: + 0: 3592 + -2,20: + 0: 65535 + -2,21: + 0: 60303 + -1,20: + 0: 65535 + -1,21: + 0: 61695 + 0,20: + 0: 65535 + 0,21: + 0: 63743 + 1,20: + 0: 65535 + 1,21: + 0: 15887 + 2,20: + 0: 18261 + -9,-5: + 0: 65535 + -8,-5: + 0: 65535 + -8,-6: + 0: 65535 + -7,-6: + 0: 65535 + -7,-5: + 0: 65535 + -7,-8: + 0: 65466 + -7,-7: + 0: 65535 + -6,-8: + 0: 65535 + -6,-7: + 0: 65535 + -6,-6: + 0: 65535 + -6,-5: + 0: 65535 + -5,-8: + 0: 65535 + -5,-7: + 0: 65535 + -5,-6: + 0: 65535 + -5,-5: + 0: 65535 + 4,-8: + 0: 65535 + 4,-7: + 0: 65535 + 4,-6: + 0: 65535 + 4,-5: + 0: 65535 + 5,-8: + 0: 65535 + 5,-7: + 0: 65535 + 5,-6: + 0: 65535 + 5,-5: + 0: 65535 + 6,-6: + 0: 65535 + 6,-5: + 0: 65535 + 7,-6: + 0: 65535 + 7,-5: + 0: 65535 + 8,-5: + 0: 65535 + 4,-11: + 0: 63474 + 4,-10: + 0: 65535 + 4,-9: + 0: 65535 + 5,-10: + 0: 48063 + 5,-9: + 0: 64443 + 0,-12: + 4: 13073 + 0: 52462 + 0,-11: + 4: 4355 + 0: 61180 + 0,-10: + 4: 1 + 0: 65534 + 0,-9: + 4: 273 + 0: 65262 + 1,-12: + 0: 65535 + 1,-11: + 0: 65535 + 1,-10: + 0: 65535 + 1,-9: + 0: 65535 + 2,-12: + 0: 65535 + 2,-11: + 0: 65535 + 2,-10: + 0: 65535 + 2,-9: + 0: 65535 + 3,-12: + 0: 63359 + 3,-11: + 0: 65535 + 3,-10: + 0: 65535 + 3,-9: + 0: 56831 + 1: 8704 + -4,-12: + 0: 65535 + -4,-11: + 0: 65535 + -4,-10: + 0: 65535 + -4,-9: + 0: 65535 + -3,-12: + 0: 65535 + -3,-11: + 0: 65535 + -3,-10: + 0: 65535 + -3,-9: + 0: 65535 + -2,-12: + 0: 65535 + -2,-11: + 0: 65535 + -2,-10: + 0: 65535 + -2,-9: + 0: 65535 + -1,-12: + 0: 4403 + 4: 61132 + -1,-11: + 0: 13169 + 4: 52366 + -1,-10: + 0: 65523 + 4: 12 + -1,-9: + 0: 62259 + 4: 3276 + -6,-10: + 0: 61167 + -6,-9: + 0: 65262 + -5,-10: + 0: 65535 + -5,-9: + 0: 65535 + -5,-11: + 0: 65530 + -5,-12: + 0: 41518 + -4,-13: + 0: 52352 + -3,-14: + 0: 65518 + -3,-13: + 0: 65535 + -3,-15: + 0: 60620 + -3,-16: + 0: 51336 + -2,-16: + 0: 30583 + -2,-15: + 0: 65535 + -2,-14: + 0: 65535 + -2,-13: + 0: 65535 + -1,-13: + 0: 16320 + 4: 49152 + 0,-13: + 4: 4096 + 0: 61336 + 0,-15: + 0: 34952 + 0,-14: + 0: 34952 + 1,-16: + 0: 65535 + 1,-15: + 0: 65535 + 1,-14: + 0: 65535 + 1,-13: + 0: 65535 + 2,-15: + 0: 12561 + 2,-14: + 0: 30515 + 2,-13: + 0: 65527 + -3,-18: + 0: 34944 + -3,-17: + 0: 34952 + -2,-18: + 0: 13105 + -2,-17: + 0: 29491 + 1,-18: + 0: 61156 + 1,-17: + 0: 65262 + 12,12: + 0: 4383 + 12,13: + 0: 1 + 13,12: + 0: 1 + 2,-16: + 0: 4096 + 3,-13: + 0: 4352 + -10,-5: + 0: 65535 + -10,-6: + 0: 61166 + -9,-6: + 0: 65535 + -9,-7: + 0: 65521 + -8,-7: + 0: 65535 + 8,-6: + 0: 65535 + 9,-6: + 0: 13107 + 9,-5: + 0: 30583 + 9,-1: + 0: 65527 + 9,0: + 0: 65535 + 9,1: + 0: 65535 + -14,11: + 0: 3140 + -12,14: + 0: 14 + 2,21: + 0: 768 + -10,-7: + 0: 8928 + -9,-8: + 0: 61440 + -8,-8: + 0: 63985 + 6,-8: + 0: 65506 + 6,-7: + 0: 65535 + 7,-8: + 0: 62002 + 7,-7: + 0: 65527 + 8,-8: + 0: 28672 + 8,-7: + 0: 30708 + 9,-7: + 0: 8752 + 4,-12: + 0: 8739 + 5,-11: + 0: 8752 + 6,-9: + 0: 61440 + 7,-9: + 0: 12288 + -8,-9: + 0: 61440 + -7,-9: + 0: 63624 + -7,-10: + 0: 34952 + -6,-11: + 0: 41696 + 13,-4: + 0: 273 + -11,15: + 0: 34952 + -8,17: + 0: 3967 + -8,18: + 0: 3967 + -8,19: + 0: 3967 + -7,16: + 0: 4352 + -7,17: + 0: 4369 + -7,18: + 0: 4369 + -7,19: + 0: 4369 + 6,16: + 0: 17408 + 6,17: + 0: 19532 + 6,18: + 0: 19532 + 6,19: + 0: 19532 + 7,17: + 0: 4095 + 7,18: + 0: 4095 + 7,19: + 0: 4095 + 10,-5: + 0: 65535 + 11,-6: + 0: 64799 + 11,-5: + 0: 65535 + 8,17: + 0: 36863 + 8,18: + 0: 36863 + 8,19: + 0: 36863 + 8,16: + 0: 34952 + 9,16: + 0: 44970 + 9,17: + 0: 43770 + 9,18: + 0: 43770 + 9,19: + 0: 64250 + 10,17: + 0: 4095 + 10,18: + 0: 4095 + 10,19: + 0: 4095 + 11,17: + 0: 3967 + 11,18: + 0: 3967 + 11,19: + 0: 3967 + 8,20: + 0: 143 + 9,20: + 0: 248 + 10,20: + 0: 15 + 11,20: + 0: 15 + 6,20: + 0: 12 + 7,20: + 0: 15 + 12,20: + 0: 1 + 12,16: + 0: 4352 + 12,17: + 0: 4369 + 12,18: + 0: 4369 + 12,19: + 0: 4369 + -12,17: + 0: 4095 + -12,18: + 0: 4095 + -12,19: + 0: 4095 + -11,17: + 0: 36863 + -11,18: + 0: 36863 + -11,19: + 0: 36863 + -11,16: + 0: 34952 + -10,17: + 0: 43770 + -10,18: + 0: 43770 + -10,19: + 0: 64250 + -10,16: + 0: 43690 + -9,17: + 0: 4095 + -9,18: + 0: 4095 + -9,19: + 0: 4095 + -13,16: + 0: 17408 + -13,17: + 0: 19532 + -13,18: + 0: 19532 + -13,19: + 0: 19532 + -13,20: + 0: 12 + -12,20: + 0: 15 + -11,20: + 0: 143 + -10,20: + 0: 248 + -9,20: + 0: 15 + -8,20: + 0: 15 + -7,20: + 0: 1 + 12,-6: + 0: 62799 + 12,-5: + 0: 65535 + 13,-5: + 0: 4369 + 10,-6: + 0: 32782 + 13,-6: + 0: 1 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14996 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 235 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 23.246532 + - 87.451256 + - 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 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - id: Aspid + type: BecomesStation + - joints: + docking21483: !type:WeldJoint + bodyB: 8756 + bodyA: 1 + id: docking21483 + localAnchorB: -5,0.5 + localAnchorA: 38,3.5 + damping: 791.6185 + stiffness: 7105.552 + docking21482: !type:WeldJoint + bodyB: 8756 + bodyA: 1 + id: docking21482 + localAnchorB: -5,-1.5 + localAnchorA: 38,1.5 + damping: 791.6185 + stiffness: 7105.552 + type: Joint + - type: SpreaderGrid + - type: GridPathfinding + - uid: 6526 + components: + - type: MetaData + - type: Transform + - type: Map + - type: PhysicsMap + - type: Broadphase + - type: OccluderTree + - parallax: AspidParallax + type: Parallax + - type: LoadedMap + - type: GridTree + - type: MovedGrids + - uid: 8756 + components: + - type: MetaData + - pos: 43.1,3.5 + parent: 6526 + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAHwAAAAABHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAATwAAAAAAHwAAAAACHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAATwAAAAADHwAAAAADTwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHwAAAAADHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAGwAAAAACHwAAAAAAGwAAAAACHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAHwAAAAADHwAAAAAB + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAGwAAAAADHwAAAAAAGwAAAAACHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAFgAAAAADFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAADFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: GwAAAAADHwAAAAAAGwAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABTwAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAATwAAAAADZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACHwAAAAAAGwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADZAAAAAAAFgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: Shuttle + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 0: 0,-2 + 1: 2,-2 + 2: 0,0 + 3: 2,0 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 4: -4,0 + 5: -4,-2 + 6: -2,0 + 7: -2,-2 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: Bot + decals: + 8: -2,-2 + 9: -4,-2 + 10: -4,0 + 11: -2,0 + 12: 0,0 + 13: 0,-2 + 14: 2,-2 + 15: 2,0 + 16: 1,-4 + 17: 1,-5 + 18: -3,-4 + 19: -3,-5 + 20: -1,-4 + - node: + cleanable: True + color: '#83543273' + id: Dirt + decals: + 21: -4,0 + 22: -4,-1 + 23: -1,-1 + 24: 0,0 + 25: -1,-2 + 26: -2,-2 + 27: -2,-4 + 28: -2,-5 + 29: 0,-5 + 30: 0,-4 + 31: 0,-2 + 32: 0,-1 + 33: -1,2 + 34: -2,2 + 35: 0,-1 + 36: 2,0 + 37: 2,-1 + 38: 2,-2 + 39: 2,0 + 40: 1,0 + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 65533 + 1: 2 + -1,0: + 0: 61439 + 0,0: + 0: 14335 + 0,-1: + 0: 65533 + 1: 2 + -2,-1: + 0: 34952 + -1,-2: + 0: 65534 + -1,-3: + 0: 49152 + -2,0: + 0: 136 + -1,1: + 0: 206 + 0,1: + 0: 19 + 0,-3: + 0: 4096 + 0,-2: + 0: 30579 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 15.142283 + - 56.963825 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - joints: + docking21483: !type:WeldJoint + bodyB: 8756 + bodyA: 1 + id: docking21483 + localAnchorB: -5,0.5 + localAnchorA: 38,3.5 + damping: 791.6185 + stiffness: 7105.552 + docking21482: !type:WeldJoint + bodyB: 8756 + bodyA: 1 + id: docking21482 + localAnchorB: -5,-1.5 + localAnchorA: 38,1.5 + damping: 791.6185 + stiffness: 7105.552 + type: Joint + - type: SpreaderGrid + - type: GridPathfinding +- proto: AcousticGuitarInstrument + entities: + - uid: 9102 + components: + - pos: 6.605979,-25.237396 + parent: 1 + type: Transform +- proto: AdvancedCapacitorStockPart + entities: + - uid: 6544 + components: + - pos: 22.399736,-23.44135 + parent: 1 + type: Transform + - uid: 13453 + components: + - pos: -46.782776,46.69757 + parent: 1 + type: Transform +- proto: AdvancedMatterBinStockPart + entities: + - uid: 13454 + components: + - pos: -46.41361,46.78272 + parent: 1 + type: Transform +- proto: AirAlarm + entities: + - uid: 8754 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-42.5 + parent: 1 + type: Transform + - devices: + - 8752 + - 8751 + - 8753 + type: DeviceList + - uid: 14673 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 1 + type: Transform + - devices: + - 5769 + - 5770 + - 5771 + - 5772 + - 8926 + - 5783 + - 5784 + - 5785 + - 9048 + - 5760 + - 5759 + - 5758 + - 5757 + - 5779 + - 5780 + - 5781 + - 5778 + - 5777 + - 5776 + - 14635 + - 14636 + - 14633 + - 5390 + - 14659 + - 14660 + - 14672 + - 14683 + - 14697 + type: DeviceList + - uid: 17330 + components: + - rot: 3.141592653589793 rad + pos: -2.5,75.5 + parent: 1 + type: Transform + - devices: + - 6125 + - 6124 + - 6122 + - 6123 + - 17332 + - 16339 + - 16334 + - 16332 + - 16327 + - 16331 + - 16328 + - 16348 + - 16349 + type: DeviceList + - uid: 17334 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,71.5 + parent: 1 + type: Transform + - devices: + - 6125 + - 16348 + - 16349 + - 17335 + type: DeviceList + - uid: 17336 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,71.5 + parent: 1 + type: Transform + - devices: + - 6120 + - 6121 + - 6123 + - 6122 + - 16285 + - 16287 + - 16286 + - 16288 + - 17335 + - 17338 + type: DeviceList + - uid: 17339 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,65.5 + parent: 1 + type: Transform + - devices: + - 6121 + - 6120 + - 6127 + - 6128 + - 6126 + - 6115 + - 6114 + - 6113 + - 6129 + - 16240 + - 16241 + - 17332 + - 16283 + - 16284 + - 17341 + type: DeviceList + - uid: 17343 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,63.5 + parent: 1 + type: Transform + - devices: + - 6129 + - 16238 + - 16239 + - 17338 + - 17344 + type: DeviceList + - uid: 17346 + components: + - rot: 3.141592653589793 rad + pos: 8.5,51.5 + parent: 1 + type: Transform + - devices: + - 6119 + - 6118 + - 16196 + - 16195 + - 16214 + - 16206 + - 17347 + type: DeviceList + - uid: 17349 + components: + - pos: 2.5,58.5 + parent: 1 + type: Transform + - devices: + - 6113 + - 6114 + - 6115 + - 6110 + - 6111 + - 6112 + - 6119 + - 6118 + - 6116 + - 6117 + - 17338 + - 17344 + - 17350 + - 15982 + - 15981 + - 17351 + type: DeviceList + - uid: 17352 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,43.5 + parent: 1 + type: Transform + - devices: + - 6130 + - 6131 + - 6110 + - 6111 + - 6112 + - 6133 + - 6132 + - 5635 + - 5636 + - 5637 + - 15921 + - 15922 + - 15945 + - 15944 + - 17347 + - 17354 + type: DeviceList + - uid: 17355 + components: + - pos: -12.5,57.5 + parent: 1 + type: Transform + - devices: + - 6116 + - 6117 + - 17363 + - 17362 + - 8180 + - 17359 + - 17360 + - 17361 + - 17364 + - 16017 + - 16018 + - 16049 + - 16050 + - 17365 + - 17347 + type: DeviceList + - uid: 17358 + components: + - pos: -5.5,65.5 + parent: 1 + type: Transform + - devices: + - 15999 + - 16037 + - 16040 + - 15998 + type: DeviceList + - uid: 17366 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,45.5 + parent: 1 + type: Transform + - devices: + - 8180 + - 17359 + - 17360 + - 17361 + - 17368 + - 17369 + - 17370 + - 17371 + - 6130 + - 6131 + - 16142 + - 16141 + - 16006 + - 16007 + - 17354 + - 16183 + - 16191 + - 16184 + - 16189 + - 16185 + - 16188 + - 16186 + - 16187 + - 16095 + - 16094 + type: DeviceList + - uid: 17373 + components: + - pos: -33.5,50.5 + parent: 1 + type: Transform + - devices: + - 7022 + - 7023 + - 16143 + - 16175 + - 16155 + - 16158 + - 16156 + - 16157 + - 16171 + - 16170 + - 16169 + type: DeviceList + - uid: 17376 + components: + - pos: -47.5,45.5 + parent: 1 + type: Transform + - devices: + - 7898 + - 7899 + - 7894 + - 7895 + - 15910 + - 15908 + - 17375 + type: DeviceList + - uid: 17386 + components: + - pos: -38.5,39.5 + parent: 1 + type: Transform + - devices: + - 7898 + - 7899 + - 7894 + - 7895 + - 5835 + - 5833 + - 5834 + - 15909 + - 15907 + - 17378 + - 15911 + - 15906 + - 17387 + type: DeviceList + - uid: 17389 + components: + - pos: -22.5,39.5 + parent: 1 + type: Transform + - devices: + - 5632 + - 5633 + - 5634 + - 5839 + - 5840 + - 5841 + - 6138 + - 6136 + - 15859 + - 15860 + - 17387 + - 17390 + - 15226 + - 15225 + type: DeviceList + - uid: 17394 + components: + - pos: -14.5,39.5 + parent: 1 + type: Transform + - devices: + - 9591 + - 9590 + - 9589 + - 5633 + - 5632 + - 5634 + - 6134 + - 6135 + - 6137 + - 15225 + - 15226 + - 17391 + - 17393 + - 17395 + type: DeviceList + - uid: 17396 + components: + - pos: 4.5,39.5 + parent: 1 + type: Transform + - devices: + - 5644 + - 5645 + - 5646 + - 5640 + - 5639 + - 5638 + - 5637 + - 5636 + - 5635 + - 9591 + - 9590 + - 9589 + - 17398 + - 15200 + - 566 + - 15172 + - 15173 + - 15154 + - 15155 + - 17350 + - 17390 + type: DeviceList + - uid: 17400 + components: + - rot: 3.141592653589793 rad + pos: 20.5,35.5 + parent: 1 + type: Transform + - devices: + - 5631 + - 5630 + - 5629 + - 5688 + - 5689 + - 5690 + - 5691 + - 5687 + - 5686 + - 7267 + - 7268 + - 5708 + - 5709 + - 5710 + - 15155 + - 15154 + - 15094 + - 17402 + - 17401 + - 15095 + - 14983 + - 15076 + - 15075 + type: DeviceList + - uid: 17403 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,41.5 + parent: 1 + type: Transform + - devices: + - 5686 + - 5687 + - 5689 + - 5688 + - 15101 + - 15102 + - 17405 + type: DeviceList + - uid: 17406 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,44.5 + parent: 1 + type: Transform + - devices: + - 5691 + - 5690 + - 15129 + - 15148 + - 15147 + - 15130 + - 15133 + - 15132 + - 15146 + - 15131 + - 17405 + type: DeviceList + - uid: 17408 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,47.5 + parent: 1 + type: Transform + - devices: + - 5712 + - 5711 + - 14988 + - 14987 + - 15001 + - 15002 + - 15029 + - 15028 + - 15031 + - 15030 + - 17402 + - 14983 + type: DeviceList + - uid: 17412 + components: + - pos: 36.5,39.5 + parent: 1 + type: Transform + - devices: + - 5694 + - 5693 + - 5692 + - 5700 + - 5699 + - 5698 + - 5697 + - 5708 + - 5709 + - 5710 + - 5711 + - 5712 + - 15036 + - 15037 + - 14983 + - 17402 + - 17413 + - 17405 + - 17414 + type: DeviceList + - uid: 17416 + components: + - rot: 3.141592653589793 rad + pos: 44.5,35.5 + parent: 1 + type: Transform + - devices: + - 5692 + - 5693 + - 5694 + - 6344 + - 6345 + - 6346 + - 15065 + - 15054 + - 15066 + - 15067 + type: DeviceList + - uid: 17418 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,26.5 + parent: 1 + type: Transform + - devices: + - 5704 + - 5703 + - 5702 + - 5701 + - 5725 + - 5726 + - 5727 + - 7269 + - 17420 + - 5697 + - 5698 + - 5699 + - 5700 + - 17402 + - 14983 + - 14954 + - 14955 + - 14899 + - 14900 + - 17421 + - 17422 + type: DeviceList + - uid: 17424 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,19.5 + parent: 1 + type: Transform + - devices: + - 5727 + - 5726 + - 5725 + - 5724 + - 5723 + - 5722 + - 14906 + - 14907 + - 17413 + - 17422 + type: DeviceList + - uid: 17426 + components: + - rot: 3.141592653589793 rad + pos: 27.5,12.5 + parent: 1 + type: Transform + - devices: + - 5722 + - 5723 + - 5724 + - 5685 + - 5684 + - 5683 + - 5701 + - 5702 + - 5703 + - 5704 + - 5719 + - 5720 + - 5721 + - 5717 + - 5716 + - 5715 + - 14917 + - 14916 + - 17413 + - 17421 + - 17427 + - 17428 + - 17429 + type: DeviceList + - uid: 17430 + components: + - rot: 3.141592653589793 rad + pos: 44.5,12.5 + parent: 1 + type: Transform + - devices: + - 5717 + - 5716 + - 5715 + - 14879 + - 14880 + - 17422 + type: DeviceList + - uid: 17433 + components: + - pos: 16.5,16.5 + parent: 1 + type: Transform + - devices: + - 5683 + - 5684 + - 5685 + - 5623 + - 5624 + - 5625 + - 14929 + - 14928 + - 17422 + - 17434 + type: DeviceList + - uid: 17439 + components: + - pos: -8.5,16.5 + parent: 1 + type: Transform + - devices: + - 5623 + - 5624 + - 5625 + - 5663 + - 5662 + - 5661 + - 5772 + - 5771 + - 5769 + - 5620 + - 5621 + - 5622 + - 5655 + - 5654 + - 5653 + - 5658 + - 5659 + - 5660 + - 15382 + - 15381 + - 15480 + - 15479 + - 17398 + - 17437 + - 17438 + - 17469 + - 17468 + type: DeviceList + - uid: 17441 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,24.5 + parent: 1 + type: Transform + - devices: + - 5657 + - 5656 + - 4341 + - 15294 + - 15295 + - 15316 + - 15317 + - 17437 + - 17442 + type: DeviceList + - uid: 17445 + components: + - rot: 3.141592653589793 rad + pos: -18.5,23.5 + parent: 1 + type: Transform + - devices: + - 6363 + - 4341 + - 4344 + - 4338 + - 4340 + - 6364 + - 4343 + - 6365 + - 15458 + - 15457 + - 15447 + - 15452 + - 15411 + - 8694 + - 17443 + - 15459 + - 15460 + - 15265 + - 15266 + type: DeviceList + - uid: 17447 + components: + - rot: 3.141592653589793 rad + pos: -13.5,29.5 + parent: 1 + type: Transform + - devices: + - 6138 + - 6134 + - 6135 + - 6137 + - 6363 + - 15263 + - 15264 + - 15265 + - 15266 + - 17390 + - 17391 + type: DeviceList + - uid: 17450 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,32.5 + parent: 1 + type: Transform + - devices: + - 17449 + - 6365 + - 15283 + - 15284 + - 17442 + type: DeviceList + - uid: 17452 + components: + - pos: 8.5,21.5 + parent: 1 + type: Transform + - devices: + - 6399 + - 6400 + - 6398 + - 15499 + - 15500 + - 17453 + - 17438 + type: DeviceList + - uid: 17455 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,24.5 + parent: 1 + type: Transform + - devices: + - 6398 + - 6391 + - 6392 + - 6396 + - 6397 + - 6394 + - 6395 + - 6393 + - 17457 + - 15537 + - 15579 + - 17458 + - 17459 + - 17462 + type: DeviceList + - uid: 17460 + components: + - rot: 3.141592653589793 rad + pos: 19.5,25.5 + parent: 1 + type: Transform + - devices: + - 15562 + - 15566 + - 15578 + - 15558 + - 12901 + - 17453 + type: DeviceList + - uid: 17461 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,32.5 + parent: 1 + type: Transform + - devices: + - 15587 + - 9036 + - 9037 + - 17453 + - 6396 + type: DeviceList + - uid: 17463 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,33.5 + parent: 1 + type: Transform + - devices: + - 15550 + - 15544 + - 17453 + - 6394 + - 6395 + type: DeviceList + - uid: 17464 + components: + - pos: 3.5,26.5 + parent: 1 + type: Transform + - devices: + - 5667 + - 5668 + - 6392 + - 6391 + - 6393 + - 15524 + - 15525 + - 17453 + - 17438 + type: DeviceList + - uid: 17466 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,26.5 + parent: 1 + type: Transform + - devices: + - 5638 + - 5639 + - 5640 + - 5648 + - 5651 + - 5652 + - 5658 + - 5659 + - 5660 + - 5664 + - 5665 + - 5666 + - 15325 + - 15326 + - 15352 + - 15351 + - 17438 + - 17437 + - 17434 + - 17393 + type: DeviceList + - uid: 17470 + components: + - pos: -24.5,16.5 + parent: 1 + type: Transform + - devices: + - 5620 + - 5621 + - 5622 + - 5673 + - 5672 + - 5671 + - 5670 + - 15609 + - 15610 + - 17434 + - 17472 + type: DeviceList + - uid: 17483 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,9.5 + parent: 1 + type: Transform + - devices: + - 5670 + - 17481 + - 17480 + - 17468 + - 17484 + type: DeviceList + - uid: 17486 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,28.5 + parent: 1 + type: Transform + - devices: + - 5677 + - 5678 + - 5679 + - 5838 + - 5837 + - 5836 + - 15830 + - 15827 + - 15828 + - 15829 + - 15826 + - 15831 + - 17387 + - 17472 + type: DeviceList + - uid: 17489 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,26.5 + parent: 1 + type: Transform + - devices: + - 5832 + - 5831 + - 15680 + - 15681 + - 17379 + type: DeviceList + - uid: 17492 + components: + - pos: -45.5,16.5 + parent: 1 + type: Transform + - devices: + - 5674 + - 5675 + - 5676 + - 5824 + - 5832 + - 5831 + - 15668 + - 15669 + - 17472 + type: DeviceList + - uid: 17494 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,8.5 + parent: 1 + type: Transform + - devices: + - 5821 + - 5822 + - 5823 + - 6656 + - 6667 + - 5825 + - 5824 + - 15710 + - 15757 + - 15701 + - 15700 + - 17484 + - 6650 + - 15743 + - 15742 + - 15728 + - 15729 + type: DeviceList + - uid: 17497 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,2.5 + parent: 1 + type: Transform + - devices: + - 5808 + - 5810 + - 5809 + - 5820 + - 5819 + - 5818 + - 5817 + - 5670 + - 5680 + - 5681 + - 5682 + - 6649 + - 6666 + - 15778 + - 15777 + - 15742 + - 15743 + - 15696 + - 15695 + - 15701 + - 15700 + - 17472 + - 17499 + type: DeviceList + - uid: 17501 + components: + - pos: -27.5,-6.5 + parent: 1 + type: Transform + - devices: + - 9431 + - 9430 + - 9429 + - 5809 + - 5810 + - 5808 + - 15775 + - 15776 + - 17484 + - 17502 + type: DeviceList + - uid: 17504 + components: + - pos: -16.5,-6.5 + parent: 1 + type: Transform + - devices: + - 9429 + - 9430 + - 9431 + - 5619 + - 800 + - 797 + - 15774 + - 15773 + - 14570 + - 14569 + - 14571 + - 14572 + - 17505 + - 17499 + type: DeviceList + - uid: 17507 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-10.5 + parent: 1 + type: Transform + - devices: + - 797 + - 800 + - 5619 + - 5765 + - 5766 + - 5746 + - 5747 + - 5748 + - 5757 + - 5758 + - 5759 + - 5760 + - 5749 + - 5750 + - 5753 + - 5754 + - 5755 + - 5756 + - 5628 + - 5627 + - 5626 + - 5768 + - 5767 + - 5789 + - 5788 + - 5787 + - 14751 + - 14750 + - 17509 + - 17510 + - 17511 + - 17469 + type: DeviceList + - uid: 17513 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-14.5 + parent: 1 + type: Transform + - devices: + - 5746 + - 5747 + - 5748 + - 5749 + - 5750 + - 5753 + - 5754 + - 5755 + - 5756 + - 5763 + - 5764 + - 5761 + - 5762 + - 2774 + - 14225 + - 17505 + - 17510 + - 17511 + type: DeviceList + - uid: 17515 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,1.5 + parent: 1 + type: Transform + - devices: + - 5789 + - 5788 + - 5787 + - 9048 + - 5785 + - 5784 + - 5783 + - 9014 + - 9013 + - 9049 + - 14718 + - 14720 + type: DeviceList + - uid: 17517 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,7.5 + parent: 1 + type: Transform + - devices: + - 8926 + - 9014 + - 9013 + - 9049 + - 14749 + - 14748 + - 17469 + - 17434 + type: DeviceList + - uid: 17519 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,6.5 + parent: 1 + type: Transform + - devices: + - 5791 + - 5790 + - 5792 + - 17520 + - 14840 + - 14841 + - 14857 + - 14856 + - 17428 + type: DeviceList + - uid: 17521 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-0.5 + parent: 1 + type: Transform + - devices: + - 5719 + - 5720 + - 5721 + - 17520 + - 5792 + - 5790 + - 5807 + - 5806 + - 5805 + - 14827 + - 14826 + - 14815 + - 14816 + - 14844 + - 14842 + - 17422 + - 17524 + type: DeviceList + - uid: 17525 + components: + - pos: 43.5,-6.5 + parent: 1 + type: Transform + - devices: + - 5800 + - 5799 + - 5798 + - 14792 + - 14793 + - 17524 + type: DeviceList + - uid: 17527 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-10.5 + parent: 1 + type: Transform + - devices: + - 5800 + - 5799 + - 5798 + - 5807 + - 5806 + - 5805 + - 5793 + - 3584 + - 5795 + - 5796 + - 5797 + - 5801 + - 5802 + - 14772 + - 14771 + - 14807 + - 14808 + - 17529 + - 17530 + - 14761 + - 14760 + - 16358 + - 16359 + - 17428 + type: DeviceList + - uid: 17532 + components: + - pos: 16.5,-6.5 + parent: 1 + type: Transform + - devices: + - 5628 + - 5627 + - 5626 + - 5795 + - 5796 + - 5797 + - 3458 + - 17533 + - 14298 + - 10903 + - 14286 + - 14285 + - 14295 + - 14296 + - 17524 + - 17505 + type: DeviceList + - uid: 17534 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-16.5 + parent: 1 + type: Transform + - devices: + - 5766 + - 5765 + - 5763 + - 5764 + - 7107 + - 7106 + - 2759 + - 2760 + - 17509 + - 17505 + - 2741 + - 2745 + type: DeviceList + - uid: 17536 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-34.5 + parent: 1 + type: Transform + - devices: + - 7106 + - 7108 + - 7109 + - 7166 + - 7173 + - 7174 + - 7175 + - 2737 + - 2740 + - 17510 + type: DeviceList + - uid: 17539 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-19.5 + parent: 1 + type: Transform + - devices: + - 7170 + - 17542 + type: DeviceList + - uid: 17541 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-16.5 + parent: 1 + type: Transform + - devices: + - 5767 + - 5768 + - 5761 + - 5762 + - 7171 + - 7172 + - 14312 + - 14254 + - 17505 + - 17509 + - 17542 + - 14319 + - 14318 + type: DeviceList + - uid: 17543 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-25.5 + parent: 1 + type: Transform + - devices: + - 7261 + - 7172 + - 7171 + - 7170 + - 7169 + - 9028 + - 9030 + - 9029 + - 11931 + - 17545 + - 17546 + type: DeviceList + - uid: 17548 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-30.5 + parent: 1 + type: Transform + - devices: + - 9029 + - 9030 + - 9028 + - 7168 + - 7167 + - 7164 + - 7165 + - 7161 + - 7162 + - 7163 + - 14389 + - 17542 + type: DeviceList +- proto: AirAlarmElectronics + entities: + - uid: 9128 + components: + - pos: 13.596838,-24.666937 + parent: 1 + type: Transform +- proto: AirCanister + entities: + - uid: 6412 + components: + - pos: -9.5,24.5 + parent: 1 + type: Transform + - uid: 8733 + components: + - pos: -14.5,-12.5 + parent: 1 + type: Transform + - uid: 8734 + components: + - pos: -14.5,-11.5 + parent: 1 + type: Transform + - uid: 9976 + components: + - pos: -31.5,-24.5 + parent: 1 + type: Transform + - uid: 10063 + components: + - pos: -31.5,-14.5 + parent: 1 + type: Transform + - uid: 10092 + components: + - pos: -17.5,-28.5 + parent: 1 + type: Transform + - uid: 10122 + components: + - pos: 32.5,-24.5 + parent: 1 + type: Transform + - uid: 10929 + components: + - pos: 26.5,-20.5 + parent: 1 + type: Transform + - uid: 11051 + components: + - pos: 20.5,-0.5 + parent: 1 + type: Transform + - uid: 13173 + components: + - pos: -23.5,-0.5 + parent: 1 + type: Transform + - uid: 13174 + components: + - pos: -24.5,-0.5 + parent: 1 + type: Transform + - uid: 13380 + components: + - pos: -24.5,27.5 + parent: 1 + type: Transform + - uid: 13416 + components: + - pos: -18.5,61.5 + parent: 1 + type: Transform + - uid: 13852 + components: + - pos: 18.5,54.5 + parent: 1 + type: Transform + - uid: 14000 + components: + - pos: 12.5,64.5 + parent: 1 + type: Transform + - uid: 14013 + components: + - pos: 7.5,40.5 + parent: 1 + type: Transform + - uid: 14037 + components: + - pos: 25.5,56.5 + parent: 1 + type: Transform +- proto: Airlock + entities: + - uid: 8263 + components: + - pos: -36.5,48.5 + parent: 1 + type: Transform + - uid: 8388 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,42.5 + parent: 1 + type: Transform + - uid: 8389 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,44.5 + parent: 1 + type: Transform + - uid: 8390 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,45.5 + parent: 1 + type: Transform + - uid: 8595 + components: + - pos: -24.5,4.5 + parent: 1 + type: Transform + - uid: 9877 + components: + - pos: -32.5,-19.5 + parent: 1 + type: Transform + - uid: 9938 + components: + - pos: -19.5,-32.5 + parent: 1 + type: Transform + - uid: 10943 + components: + - pos: 32.5,-20.5 + parent: 1 + type: Transform +- proto: AirlockArmoryLocked + entities: + - uid: 8208 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,51.5 + parent: 1 + type: Transform +- proto: AirlockAtmosphericsGlassLocked + entities: + - uid: 2239 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-16.5 + parent: 1 + type: Transform + - uid: 7103 + components: + - pos: -12.5,-20.5 + parent: 1 + type: Transform + - uid: 7104 + components: + - pos: -9.5,-18.5 + parent: 1 + type: Transform + - uid: 7105 + components: + - pos: -8.5,-16.5 + parent: 1 + type: Transform +- proto: AirlockAtmosphericsLocked + entities: + - uid: 7113 + components: + - pos: -12.5,-10.5 + parent: 1 + type: Transform + - uid: 7114 + components: + - pos: -11.5,-10.5 + parent: 1 + type: Transform +- proto: AirlockBarGlassLocked + entities: + - uid: 4040 + components: + - pos: -9.5,5.5 + parent: 1 + type: Transform +- proto: AirlockBarLocked + entities: + - uid: 9240 + components: + - pos: -8.5,9.5 + parent: 1 + type: Transform +- proto: AirlockBrigGlassLocked + entities: + - uid: 8204 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,50.5 + parent: 1 + type: Transform + - uid: 8205 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,48.5 + parent: 1 + type: Transform + - uid: 8206 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,48.5 + parent: 1 + type: Transform + - uid: 8207 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,50.5 + parent: 1 + type: Transform + - uid: 8469 + components: + - pos: 1.5,63.5 + parent: 1 + type: Transform +- proto: AirlockBrigLocked + entities: + - uid: 8202 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,48.5 + parent: 1 + type: Transform + - uid: 8203 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,47.5 + parent: 1 + type: Transform + - uid: 8470 + components: + - pos: 6.5,60.5 + parent: 1 + type: Transform +- proto: AirlockCaptainLocked + entities: + - uid: 6791 + components: + - pos: -5.5,75.5 + parent: 1 + type: Transform +- proto: AirlockCargoGlassLocked + entities: + - uid: 9354 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,10.5 + parent: 1 + type: Transform +- proto: AirlockCargoLocked + entities: + - uid: 156 + components: + - pos: -39.5,12.5 + parent: 1 + type: Transform + - uid: 9353 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,3.5 + parent: 1 + type: Transform +- proto: AirlockChapelLocked + entities: + - uid: 8380 + components: + - pos: 26.5,50.5 + parent: 1 + type: Transform + - uid: 14049 + components: + - pos: 32.5,53.5 + parent: 1 + type: Transform +- proto: AirlockChemistryLocked + entities: + - uid: 8529 + components: + - pos: 6.5,26.5 + parent: 1 + type: Transform +- proto: AirlockChiefEngineerGlassLocked + entities: + - uid: 9113 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-24.5 + parent: 1 + type: Transform +- proto: AirlockChiefEngineerLocked + entities: + - uid: 12404 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,71.5 + parent: 1 + type: Transform +- proto: AirlockChiefMedicalOfficerLocked + entities: + - uid: 8672 + components: + - pos: 13.5,31.5 + parent: 1 + type: Transform +- proto: AirlockCommandGlassLocked + entities: + - uid: 6792 + components: + - pos: -1.5,75.5 + parent: 1 + type: Transform + - uid: 6793 + components: + - pos: 0.5,75.5 + parent: 1 + type: Transform + - uid: 6794 + components: + - pos: 5.5,75.5 + parent: 1 + type: Transform + - uid: 6795 + components: + - pos: -1.5,69.5 + parent: 1 + type: Transform + - uid: 6796 + components: + - pos: 0.5,69.5 + parent: 1 + type: Transform +- proto: AirlockCommandLocked + entities: + - uid: 8894 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 8756 + type: Transform +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 9075 + components: + - pos: 11.5,-16.5 + parent: 1 + type: Transform + - uid: 9076 + components: + - pos: 12.5,-16.5 + parent: 1 + type: Transform + - uid: 9077 + components: + - pos: 11.5,-19.5 + parent: 1 + type: Transform + - uid: 9078 + components: + - pos: 12.5,-19.5 + parent: 1 + type: Transform + - uid: 9112 + components: + - pos: 8.5,-20.5 + parent: 1 + type: Transform + - uid: 9136 + components: + - pos: 7.5,-31.5 + parent: 1 + type: Transform + - uid: 9137 + components: + - pos: 6.5,-31.5 + parent: 1 + type: Transform + - uid: 9138 + components: + - pos: 7.5,-35.5 + parent: 1 + type: Transform + - uid: 9139 + components: + - pos: 6.5,-35.5 + parent: 1 + type: Transform +- proto: AirlockEngineeringLocked + entities: + - uid: 9073 + components: + - pos: 10.5,-10.5 + parent: 1 + type: Transform + - uid: 9074 + components: + - pos: 11.5,-10.5 + parent: 1 + type: Transform + - uid: 9977 + components: + - pos: -27.5,-16.5 + parent: 1 + type: Transform + - uid: 10869 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-19.5 + parent: 1 + type: Transform + - uid: 11076 + components: + - pos: 18.5,1.5 + parent: 1 + type: Transform + - uid: 12403 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,28.5 + parent: 1 + type: Transform + - uid: 12820 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,52.5 + parent: 1 + type: Transform + - uid: 13158 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,23.5 + parent: 1 + type: Transform + - uid: 13299 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-2.5 + parent: 1 + type: Transform + - uid: 13440 + components: + - pos: -24.5,53.5 + parent: 1 + type: Transform +- proto: AirlockEVAGlassLocked + entities: + - uid: 6930 + components: + - pos: 28.5,33.5 + parent: 1 + type: Transform + - uid: 6931 + components: + - pos: 28.5,32.5 + parent: 1 + type: Transform + - uid: 6932 + components: + - pos: 25.5,35.5 + parent: 1 + type: Transform + - uid: 6933 + components: + - pos: 26.5,35.5 + parent: 1 + type: Transform +- proto: AirlockExternalAtmosphericsLocked + entities: + - uid: 4167 + components: + - pos: 1.5,-15.5 + parent: 1 + type: Transform + - uid: 4171 + components: + - pos: -2.5,-15.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlass + entities: + - uid: 6222 + components: + - pos: 46.5,16.5 + parent: 1 + type: Transform + - uid: 6225 + components: + - pos: 50.5,-7.5 + parent: 1 + type: Transform + - uid: 6477 + components: + - pos: 50.5,-14.5 + parent: 1 + type: Transform + - uid: 6522 + components: + - pos: 35.5,1.5 + parent: 1 + type: Transform + - uid: 6559 + components: + - pos: 48.5,16.5 + parent: 1 + type: Transform + - uid: 6560 + components: + - pos: 46.5,35.5 + parent: 1 + type: Transform + - uid: 6561 + components: + - pos: 48.5,35.5 + parent: 1 + type: Transform + - uid: 6563 + components: + - pos: 50.5,36.5 + parent: 1 + type: Transform + - uid: 6564 + components: + - pos: 50.5,38.5 + parent: 1 + type: Transform + - uid: 6565 + components: + - pos: 50.5,13.5 + parent: 1 + type: Transform + - uid: 6566 + components: + - pos: 50.5,15.5 + parent: 1 + type: Transform + - uid: 6638 + components: + - pos: -51.5,-9.5 + parent: 1 + type: Transform + - uid: 6639 + components: + - pos: -51.5,-8.5 + parent: 1 + type: Transform + - uid: 6640 + components: + - pos: -51.5,-7.5 + parent: 1 + type: Transform + - uid: 6641 + components: + - pos: -49.5,-10.5 + parent: 1 + type: Transform + - uid: 6642 + components: + - pos: -48.5,-10.5 + parent: 1 + type: Transform + - uid: 6643 + components: + - pos: -47.5,-10.5 + parent: 1 + type: Transform + - uid: 7176 + components: + - pos: -51.5,13.5 + parent: 1 + type: Transform + - uid: 7177 + components: + - pos: -51.5,15.5 + parent: 1 + type: Transform + - uid: 7182 + components: + - pos: -51.5,36.5 + parent: 1 + type: Transform + - uid: 7183 + components: + - pos: -51.5,38.5 + parent: 1 + type: Transform + - uid: 7419 + components: + - pos: -27.5,-27.5 + parent: 1 + type: Transform + - uid: 7423 + components: + - pos: 26.5,-27.5 + parent: 1 + type: Transform + - uid: 8597 + components: + - pos: 35.5,3.5 + parent: 1 + type: Transform + - uid: 8872 + components: + - pos: -2.5,-1.5 + parent: 8756 + type: Transform + - uid: 8873 + components: + - pos: -2.5,0.5 + parent: 8756 + type: Transform + - uid: 8874 + components: + - pos: 1.5,0.5 + parent: 8756 + type: Transform + - uid: 8875 + components: + - pos: 1.5,-1.5 + parent: 8756 + type: Transform +- proto: AirlockExternalGlassAtmosphericsLocked + entities: + - uid: 7110 + components: + - pos: -13.5,-38.5 + parent: 1 + type: Transform + - uid: 7111 + components: + - pos: -13.5,-42.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlassCargoLocked + entities: + - uid: 6636 + components: + - pos: -41.5,2.5 + parent: 1 + type: Transform + - uid: 6637 + components: + - pos: -41.5,4.5 + parent: 1 + type: Transform + - uid: 7814 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,28.5 + parent: 1 + type: Transform + - uid: 7917 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,27.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlassEngineeringLocked + entities: + - uid: 7150 + components: + - pos: 12.5,-42.5 + parent: 1 + type: Transform + - uid: 7151 + components: + - pos: 12.5,-38.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlassLocked + entities: + - uid: 932 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,56.5 + parent: 1 + type: Transform + - links: + - 10149 + type: DeviceLinkSink + - linkedPorts: + 10149: + - DoorStatus: Close + - DoorStatus: AutoClose + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 2250 + components: + - pos: -0.5,-16.5 + parent: 1 + type: Transform + - uid: 10149 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,53.5 + parent: 1 + type: Transform + - links: + - 932 + type: DeviceLinkSink + - linkedPorts: + 932: + - DoorStatus: AutoClose + - DoorStatus: DoorBolt + - DoorStatus: Close + type: DeviceLinkSource + - uid: 10150 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,56.5 + parent: 1 + type: Transform + - uid: 10151 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,53.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlassShuttleArrivals + entities: + - uid: 2061 + components: + - rot: 1.5707963267948966 rad + pos: 52.5,-7.5 + parent: 1 + type: Transform + - uid: 6514 + components: + - rot: 1.5707963267948966 rad + pos: 52.5,-14.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 2 + components: + - rot: 3.141592653589793 rad + pos: 48.5,18.5 + parent: 1 + type: Transform + - uid: 26 + components: + - rot: 3.141592653589793 rad + pos: 46.5,18.5 + parent: 1 + type: Transform + - uid: 50 + components: + - pos: 46.5,33.5 + parent: 1 + type: Transform + - uid: 52 + components: + - pos: 48.5,33.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlassShuttleEscape + entities: + - uid: 7427 + components: + - pos: -27.5,-29.5 + parent: 1 + type: Transform + - uid: 7631 + components: + - pos: 26.5,-29.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 87 + components: + - rot: 1.5707963267948966 rad + pos: 52.5,15.5 + parent: 1 + type: Transform + - uid: 89 + components: + - rot: 1.5707963267948966 rad + pos: 52.5,13.5 + parent: 1 + type: Transform + - uid: 111 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,2.5 + parent: 1 + type: Transform + - uid: 112 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,4.5 + parent: 1 + type: Transform + - uid: 467 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,15.5 + parent: 1 + type: Transform + - uid: 763 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,13.5 + parent: 1 + type: Transform + - uid: 764 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,-7.5 + parent: 1 + type: Transform + - uid: 765 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,-9.5 + parent: 1 + type: Transform + - uid: 767 + components: + - pos: -49.5,-12.5 + parent: 1 + type: Transform + - uid: 768 + components: + - pos: -47.5,-12.5 + parent: 1 + type: Transform + - uid: 1298 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,36.5 + parent: 1 + type: Transform + - uid: 1299 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,38.5 + parent: 1 + type: Transform + - uid: 2145 + components: + - rot: 1.5707963267948966 rad + pos: 52.5,36.5 + parent: 1 + type: Transform + - uid: 2146 + components: + - rot: 1.5707963267948966 rad + pos: 52.5,38.5 + parent: 1 + type: Transform + - uid: 3160 + components: + - pos: -48.5,-12.5 + parent: 1 + type: Transform + - uid: 3168 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,-8.5 + parent: 1 + type: Transform +- proto: AirlockExternalLocked + entities: + - uid: 6359 + components: + - pos: -10.5,71.5 + parent: 1 + type: Transform + - links: + - 1694 + type: DeviceLinkSink + - linkedPorts: + 1694: + - DoorStatus: Close + - DoorStatus: AutoClose + - DoorStatus: DoorBolt + type: DeviceLinkSource +- proto: AirlockFreezerKitchenHydroLocked + entities: + - uid: 4221 + components: + - pos: 11.5,4.5 + parent: 1 + type: Transform + - uid: 6630 + components: + - pos: 11.5,0.5 + parent: 1 + type: Transform +- proto: AirlockGlass + entities: + - uid: 127 + components: + - pos: 20.5,13.5 + parent: 1 + type: Transform + - uid: 1881 + components: + - pos: -29.5,30.5 + parent: 1 + type: Transform + - uid: 3054 + components: + - pos: 2.5,-6.5 + parent: 1 + type: Transform + - uid: 3055 + components: + - pos: 1.5,-6.5 + parent: 1 + type: Transform + - uid: 3056 + components: + - pos: -2.5,-6.5 + parent: 1 + type: Transform + - uid: 3057 + components: + - pos: -3.5,-6.5 + parent: 1 + type: Transform + - uid: 3058 + components: + - pos: 2.5,12.5 + parent: 1 + type: Transform + - uid: 3059 + components: + - pos: 1.5,12.5 + parent: 1 + type: Transform + - uid: 3060 + components: + - pos: -2.5,12.5 + parent: 1 + type: Transform + - uid: 3061 + components: + - pos: -3.5,12.5 + parent: 1 + type: Transform + - uid: 3527 + components: + - pos: 14.5,39.5 + parent: 1 + type: Transform + - uid: 3528 + components: + - pos: 15.5,39.5 + parent: 1 + type: Transform + - uid: 3990 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-34.5 + parent: 1 + type: Transform + - uid: 4161 + components: + - pos: 20.5,15.5 + parent: 1 + type: Transform + - uid: 5647 + components: + - pos: -33.5,15.5 + parent: 1 + type: Transform + - uid: 5649 + components: + - pos: -33.5,14.5 + parent: 1 + type: Transform + - uid: 5650 + components: + - pos: -33.5,13.5 + parent: 1 + type: Transform + - uid: 5814 + components: + - pos: -16.5,-10.5 + parent: 1 + type: Transform + - uid: 5815 + components: + - pos: -17.5,-10.5 + parent: 1 + type: Transform + - uid: 5816 + components: + - pos: -18.5,-10.5 + parent: 1 + type: Transform + - uid: 6038 + components: + - pos: -33.5,38.5 + parent: 1 + type: Transform + - uid: 6039 + components: + - pos: -33.5,37.5 + parent: 1 + type: Transform + - uid: 6040 + components: + - pos: -33.5,36.5 + parent: 1 + type: Transform + - uid: 6041 + components: + - pos: 26.5,-6.5 + parent: 1 + type: Transform + - uid: 6042 + components: + - pos: 25.5,-6.5 + parent: 1 + type: Transform + - uid: 6043 + components: + - pos: 33.5,-7.5 + parent: 1 + type: Transform + - uid: 6044 + components: + - pos: 33.5,-8.5 + parent: 1 + type: Transform + - uid: 6045 + components: + - pos: 33.5,-9.5 + parent: 1 + type: Transform + - uid: 6361 + components: + - pos: -29.5,33.5 + parent: 1 + type: Transform + - uid: 6887 + components: + - pos: 31.5,39.5 + parent: 1 + type: Transform + - uid: 6888 + components: + - pos: 30.5,39.5 + parent: 1 + type: Transform + - uid: 6889 + components: + - pos: 31.5,42.5 + parent: 1 + type: Transform + - uid: 6890 + components: + - pos: 30.5,42.5 + parent: 1 + type: Transform + - uid: 7879 + components: + - pos: 33.5,15.5 + parent: 1 + type: Transform + - uid: 7880 + components: + - pos: 33.5,14.5 + parent: 1 + type: Transform + - uid: 7881 + components: + - pos: 33.5,13.5 + parent: 1 + type: Transform + - uid: 7891 + components: + - pos: 33.5,38.5 + parent: 1 + type: Transform + - uid: 7892 + components: + - pos: 33.5,37.5 + parent: 1 + type: Transform + - uid: 7893 + components: + - pos: 33.5,36.5 + parent: 1 + type: Transform + - uid: 8466 + components: + - pos: 3.5,53.5 + parent: 1 + type: Transform + - uid: 8467 + components: + - pos: 3.5,56.5 + parent: 1 + type: Transform + - uid: 9306 + components: + - pos: 20.5,14.5 + parent: 1 + type: Transform + - uid: 18224 + components: + - pos: -13.5,15.5 + parent: 1 + type: Transform + - uid: 18225 + components: + - pos: -13.5,14.5 + parent: 1 + type: Transform + - uid: 18226 + components: + - pos: -13.5,13.5 + parent: 1 + type: Transform + - uid: 18227 + components: + - pos: -1.5,39.5 + parent: 1 + type: Transform + - uid: 18228 + components: + - pos: -0.5,39.5 + parent: 1 + type: Transform + - uid: 18229 + components: + - pos: 0.5,39.5 + parent: 1 + type: Transform + - uid: 18230 + components: + - pos: -17.5,38.5 + parent: 1 + type: Transform + - uid: 18231 + components: + - pos: -17.5,37.5 + parent: 1 + type: Transform + - uid: 18232 + components: + - pos: -17.5,36.5 + parent: 1 + type: Transform + - uid: 18233 + components: + - pos: 13.5,38.5 + parent: 1 + type: Transform + - uid: 18234 + components: + - pos: 13.5,37.5 + parent: 1 + type: Transform + - uid: 18235 + components: + - pos: 13.5,36.5 + parent: 1 + type: Transform +- proto: AirlockGlassShuttle + entities: + - uid: 1771 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,28.5 + parent: 1 + type: Transform + - uid: 1772 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,27.5 + parent: 1 + type: Transform + - uid: 2030 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,3.5 + parent: 1 + type: Transform + - dockJointId: docking21483 + dockedWith: 8865 + type: Docking + - uid: 2047 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,1.5 + parent: 1 + type: Transform + - dockJointId: docking21482 + dockedWith: 8864 + type: Docking + - uid: 8864 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 8756 + type: Transform + - dockJointId: docking21482 + dockedWith: 2047 + type: Docking + - uid: 8865 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 8756 + type: Transform + - dockJointId: docking21483 + dockedWith: 2030 + type: Docking + - uid: 8866 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 8756 + type: Transform + - uid: 8867 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 8756 + type: Transform +- proto: AirlockHeadOfPersonnelGlassLocked + entities: + - uid: 9276 + components: + - pos: 23.5,8.5 + parent: 1 + type: Transform +- proto: AirlockHeadOfPersonnelLocked + entities: + - uid: 9275 + components: + - pos: 28.5,10.5 + parent: 1 + type: Transform +- proto: AirlockHeadOfSecurityGlassLocked + entities: + - uid: 8220 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,59.5 + parent: 1 + type: Transform +- proto: AirlockHydroGlassLocked + entities: + - uid: 563 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 9046 + components: + - rot: 3.141592653589793 rad + pos: 12.5,9.5 + parent: 1 + type: Transform +- proto: AirlockJanitorLocked + entities: + - uid: 4158 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-6.5 + parent: 1 + type: Transform +- proto: AirlockKitchenGlassLocked + entities: + - uid: 612 + components: + - pos: 4.5,-4.5 + parent: 1 + type: Transform +- proto: AirlockMaint + entities: + - uid: 8596 + components: + - pos: -26.5,1.5 + parent: 1 + type: Transform +- proto: AirlockMaintAtmoLocked + entities: + - uid: 7112 + components: + - pos: -6.5,-15.5 + parent: 1 + type: Transform + - uid: 8714 + components: + - pos: -14.5,-36.5 + parent: 1 + type: Transform +- proto: AirlockMaintBarLocked + entities: + - uid: 9241 + components: + - pos: -11.5,11.5 + parent: 1 + type: Transform +- proto: AirlockMaintCaptainLocked + entities: + - uid: 1694 + components: + - pos: -9.5,69.5 + parent: 1 + type: Transform + - links: + - 6359 + type: DeviceLinkSink + - linkedPorts: + 6359: + - DoorStatus: Close + - DoorStatus: AutoClose + - DoorStatus: DoorBolt + type: DeviceLinkSource +- proto: AirlockMaintCargoLocked + entities: + - uid: 9453 + components: + - pos: -40.5,-8.5 + parent: 1 + type: Transform +- proto: AirlockMaintChapelLocked + entities: + - uid: 8379 + components: + - pos: 23.5,51.5 + parent: 1 + type: Transform +- proto: AirlockMaintCommandLocked + entities: + - uid: 6934 + components: + - pos: 24.5,30.5 + parent: 1 + type: Transform +- proto: AirlockMaintEngiLocked + entities: + - uid: 9192 + components: + - pos: 5.5,-15.5 + parent: 1 + type: Transform + - uid: 10417 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-35.5 + parent: 1 + type: Transform +- proto: AirlockMaintHOPLocked + entities: + - uid: 9274 + components: + - pos: 22.5,2.5 + parent: 1 + type: Transform +- proto: AirlockMaintHydroLocked + entities: + - uid: 4230 + components: + - pos: 12.5,6.5 + parent: 1 + type: Transform + - uid: 4231 + components: + - pos: 14.5,7.5 + parent: 1 + type: Transform +- proto: AirlockMaintJanitorLocked + entities: + - uid: 8328 + components: + - pos: 18.5,-2.5 + parent: 1 + type: Transform +- proto: AirlockMaintKitchenLocked + entities: + - uid: 8576 + components: + - name: Freezer Hatch + type: MetaData + - pos: 13.5,2.5 + parent: 1 + type: Transform +- proto: AirlockMaintLocked + entities: + - uid: 770 + components: + - pos: 30.5,50.5 + parent: 1 + type: Transform + - uid: 771 + components: + - pos: 31.5,50.5 + parent: 1 + type: Transform + - uid: 3920 + components: + - pos: -27.5,-10.5 + parent: 1 + type: Transform + - uid: 6779 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-38.5 + parent: 1 + type: Transform + - uid: 8308 + components: + - pos: -22.5,45.5 + parent: 1 + type: Transform + - uid: 8309 + components: + - pos: -21.5,45.5 + parent: 1 + type: Transform + - uid: 8310 + components: + - pos: -22.5,50.5 + parent: 1 + type: Transform + - uid: 8311 + components: + - pos: -21.5,50.5 + parent: 1 + type: Transform + - uid: 8312 + components: + - pos: -21.5,39.5 + parent: 1 + type: Transform + - uid: 8313 + components: + - pos: -3.5,67.5 + parent: 1 + type: Transform + - uid: 8314 + components: + - pos: 10.5,51.5 + parent: 1 + type: Transform + - uid: 8315 + components: + - pos: 1.5,41.5 + parent: 1 + type: Transform + - uid: 8316 + components: + - pos: 15.5,48.5 + parent: 1 + type: Transform + - uid: 8317 + components: + - pos: 19.5,45.5 + parent: 1 + type: Transform + - uid: 8318 + components: + - pos: 26.5,45.5 + parent: 1 + type: Transform + - uid: 8319 + components: + - pos: 40.5,40.5 + parent: 1 + type: Transform + - uid: 8320 + components: + - pos: 34.5,39.5 + parent: 1 + type: Transform + - uid: 8321 + components: + - pos: 25.5,39.5 + parent: 1 + type: Transform + - uid: 8322 + components: + - pos: -23.5,35.5 + parent: 1 + type: Transform + - uid: 8323 + components: + - pos: -38.5,35.5 + parent: 1 + type: Transform + - uid: 8324 + components: + - pos: -43.5,44.5 + parent: 1 + type: Transform + - uid: 8325 + components: + - pos: 26.5,25.5 + parent: 1 + type: Transform + - uid: 8326 + components: + - pos: 19.5,16.5 + parent: 1 + type: Transform + - uid: 8327 + components: + - pos: 15.5,21.5 + parent: 1 + type: Transform + - uid: 8329 + components: + - pos: 14.5,-5.5 + parent: 1 + type: Transform + - uid: 8330 + components: + - pos: 18.5,12.5 + parent: 1 + type: Transform + - uid: 8331 + components: + - pos: 23.5,0.5 + parent: 1 + type: Transform + - uid: 8332 + components: + - pos: -26.5,-6.5 + parent: 1 + type: Transform + - uid: 8333 + components: + - pos: -29.5,1.5 + parent: 1 + type: Transform + - uid: 8334 + components: + - pos: -15.5,12.5 + parent: 1 + type: Transform + - uid: 8335 + components: + - pos: -21.5,7.5 + parent: 1 + type: Transform + - uid: 8336 + components: + - pos: -34.5,-7.5 + parent: 1 + type: Transform + - uid: 8337 + components: + - pos: -16.5,-20.5 + parent: 1 + type: Transform + - uid: 8338 + components: + - pos: 24.5,-10.5 + parent: 1 + type: Transform + - uid: 8339 + components: + - pos: 39.5,-10.5 + parent: 1 + type: Transform + - uid: 8693 + components: + - pos: -25.5,16.5 + parent: 1 + type: Transform + - uid: 9891 + components: + - pos: 7.5,65.5 + parent: 1 + type: Transform + - uid: 9907 + components: + - pos: -16.5,-38.5 + parent: 1 + type: Transform + - uid: 13347 + components: + - pos: -35.5,17.5 + parent: 1 + type: Transform + - uid: 13348 + components: + - pos: -33.5,23.5 + parent: 1 + type: Transform + - uid: 13367 + components: + - pos: -29.5,23.5 + parent: 1 + type: Transform +- proto: AirlockMaintMedLocked + entities: + - uid: 8505 + components: + - pos: 23.5,27.5 + parent: 1 + type: Transform +- proto: AirlockMaintRnDLocked + entities: + - uid: 8607 + components: + - pos: -20.5,26.5 + parent: 1 + type: Transform + - uid: 8608 + components: + - pos: -22.5,17.5 + parent: 1 + type: Transform +- proto: AirlockMaintSalvageLocked + entities: + - uid: 9371 + components: + - rot: 3.141592653589793 rad + pos: -36.5,21.5 + parent: 1 + type: Transform +- proto: AirlockMaintSecLocked + entities: + - uid: 1909 + components: + - pos: 15.5,58.5 + parent: 1 + type: Transform + - uid: 8213 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,55.5 + parent: 1 + type: Transform + - uid: 9361 + components: + - pos: -36.5,-6.5 + parent: 1 + type: Transform + - uid: 9408 + components: + - pos: 28.5,-14.5 + parent: 1 + type: Transform + - uid: 9424 + components: + - pos: 40.5,43.5 + parent: 1 + type: Transform +- proto: AirlockMaintTheatreLocked + entities: + - uid: 9247 + components: + - pos: -18.5,-5.5 + parent: 1 + type: Transform + - uid: 9248 + components: + - pos: -18.5,-0.5 + parent: 1 + type: Transform + - uid: 9249 + components: + - pos: -18.5,5.5 + parent: 1 + type: Transform +- proto: AirlockMedicalGlass + entities: + - uid: 8665 + components: + - pos: 5.5,18.5 + parent: 1 + type: Transform + - uid: 8671 + components: + - pos: 5.5,17.5 + parent: 1 + type: Transform +- proto: AirlockMedicalGlassLocked + entities: + - uid: 6405 + components: + - pos: 11.5,21.5 + parent: 1 + type: Transform + - uid: 8502 + components: + - pos: 10.5,29.5 + parent: 1 + type: Transform + - uid: 8503 + components: + - pos: 13.5,28.5 + parent: 1 + type: Transform + - uid: 8516 + components: + - pos: 6.5,29.5 + parent: 1 + type: Transform + - uid: 8517 + components: + - pos: 7.5,29.5 + parent: 1 + type: Transform +- proto: AirlockMedicalLocked + entities: + - uid: 3721 + components: + - pos: 19.5,30.5 + parent: 1 + type: Transform +- proto: AirlockMedicalScienceLocked + entities: + - uid: 8604 + components: + - pos: -18.5,35.5 + parent: 1 + type: Transform + - uid: 8605 + components: + - pos: -14.5,29.5 + parent: 1 + type: Transform +- proto: AirlockQuartermasterGlassLocked + entities: + - uid: 9358 + components: + - pos: -41.5,9.5 + parent: 1 + type: Transform +- proto: AirlockResearchDirectorLocked + entities: + - uid: 8621 + components: + - pos: -22.5,23.5 + parent: 1 + type: Transform +- proto: AirlockSalvageLocked + entities: + - uid: 537 + components: + - pos: -37.5,16.5 + parent: 1 + type: Transform +- proto: AirlockScienceGlassLocked + entities: + - uid: 8606 + components: + - pos: -14.5,26.5 + parent: 1 + type: Transform + - uid: 8609 + components: + - pos: -19.5,19.5 + parent: 1 + type: Transform + - uid: 8610 + components: + - pos: -19.5,18.5 + parent: 1 + type: Transform + - uid: 8611 + components: + - pos: -10.5,26.5 + parent: 1 + type: Transform + - uid: 8612 + components: + - pos: -8.5,33.5 + parent: 1 + type: Transform + - uid: 8613 + components: + - pos: -6.5,31.5 + parent: 1 + type: Transform + - uid: 8619 + components: + - pos: -8.5,22.5 + parent: 1 + type: Transform +- proto: AirlockScienceLocked + entities: + - uid: 8650 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,18.5 + parent: 1 + type: Transform + - uid: 8651 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,17.5 + parent: 1 + type: Transform + - uid: 8652 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,18.5 + parent: 1 + type: Transform + - uid: 8653 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,17.5 + parent: 1 + type: Transform +- proto: AirlockSecurityGlass + entities: + - uid: 8255 + components: + - pos: -29.5,47.5 + parent: 1 + type: Transform + - uid: 8256 + components: + - pos: -29.5,48.5 + parent: 1 + type: Transform + - uid: 8258 + components: + - pos: -36.5,45.5 + parent: 1 + type: Transform + - uid: 8259 + components: + - pos: -36.5,43.5 + parent: 1 + type: Transform +- proto: AirlockSecurityGlassLocked + entities: + - uid: 3192 + components: + - pos: 39.5,48.5 + parent: 1 + type: Transform + - uid: 8211 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,47.5 + parent: 1 + type: Transform + - uid: 8212 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,48.5 + parent: 1 + type: Transform + - uid: 8214 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,43.5 + parent: 1 + type: Transform + - uid: 8215 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,43.5 + parent: 1 + type: Transform + - uid: 8216 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,43.5 + parent: 1 + type: Transform + - uid: 8217 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,43.5 + parent: 1 + type: Transform + - uid: 8218 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,43.5 + parent: 1 + type: Transform + - uid: 8219 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,55.5 + parent: 1 + type: Transform + - uid: 9359 + components: + - pos: -37.5,-1.5 + parent: 1 + type: Transform + - uid: 9360 + components: + - pos: -33.5,-4.5 + parent: 1 + type: Transform + - uid: 9407 + components: + - pos: 27.5,-10.5 + parent: 1 + type: Transform + - uid: 9425 + components: + - pos: 45.5,43.5 + parent: 1 + type: Transform +- proto: AirlockSecurityLocked + entities: + - uid: 8209 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,47.5 + parent: 1 + type: Transform + - uid: 8210 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,48.5 + parent: 1 + type: Transform +- proto: AirlockServiceCaptainLocked + entities: + - uid: 1693 + components: + - pos: -8.5,71.5 + parent: 1 + type: Transform +- proto: AirlockTheatreLocked + entities: + - uid: 9244 + components: + - pos: -14.5,0.5 + parent: 1 + type: Transform + - uid: 9245 + components: + - pos: -14.5,4.5 + parent: 1 + type: Transform + - uid: 9246 + components: + - pos: -14.5,-3.5 + parent: 1 + type: Transform +- proto: AirSensor + entities: + - uid: 8751 + components: + - pos: -0.5,-34.5 + parent: 1 + type: Transform + - uid: 8752 + components: + - pos: -0.5,-40.5 + parent: 1 + type: Transform + - uid: 8753 + components: + - pos: -0.5,-45.5 + parent: 1 + type: Transform + - uid: 17332 + components: + - pos: -0.5,72.5 + parent: 1 + type: Transform + - uid: 17335 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,78.5 + parent: 1 + type: Transform + - uid: 17338 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,67.5 + parent: 1 + type: Transform + - uid: 17341 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,62.5 + parent: 1 + type: Transform + - uid: 17344 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,56.5 + parent: 1 + type: Transform + - uid: 17347 + components: + - rot: 3.141592653589793 rad + pos: -0.5,57.5 + parent: 1 + type: Transform + - uid: 17350 + components: + - pos: -0.5,47.5 + parent: 1 + type: Transform + - uid: 17351 + components: + - pos: -5.5,56.5 + parent: 1 + type: Transform + - uid: 17354 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,53.5 + parent: 1 + type: Transform + - uid: 17365 + components: + - pos: -18.5,46.5 + parent: 1 + type: Transform + - uid: 17372 + components: + - pos: -25.5,48.5 + parent: 1 + type: Transform + - uid: 17375 + components: + - pos: -48.5,37.5 + parent: 1 + type: Transform + - uid: 17378 + components: + - pos: -46.5,42.5 + parent: 1 + type: Transform + - uid: 17379 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,14.5 + parent: 1 + type: Transform + - uid: 17387 + components: + - pos: -31.5,38.5 + parent: 1 + type: Transform + - uid: 17390 + components: + - pos: -14.5,37.5 + parent: 1 + type: Transform + - uid: 17391 + components: + - pos: -23.5,37.5 + parent: 1 + type: Transform + - uid: 17393 + components: + - pos: -6.5,37.5 + parent: 1 + type: Transform + - uid: 17395 + components: + - pos: -16.5,31.5 + parent: 1 + type: Transform + - uid: 17398 + components: + - pos: -0.5,25.5 + parent: 1 + type: Transform + - uid: 17401 + components: + - rot: 3.141592653589793 rad + pos: 20.5,42.5 + parent: 1 + type: Transform + - uid: 17405 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,37.5 + parent: 1 + type: Transform + - uid: 17413 + components: + - pos: 31.5,26.5 + parent: 1 + type: Transform + - uid: 17414 + components: + - pos: 46.5,39.5 + parent: 1 + type: Transform + - uid: 17421 + components: + - pos: 24.5,19.5 + parent: 1 + type: Transform + - uid: 17422 + components: + - pos: 29.5,14.5 + parent: 1 + type: Transform + - uid: 17427 + components: + - rot: 3.141592653589793 rad + pos: 47.5,14.5 + parent: 1 + type: Transform + - uid: 17428 + components: + - rot: 3.141592653589793 rad + pos: 32.5,2.5 + parent: 1 + type: Transform + - uid: 17429 + components: + - rot: 3.141592653589793 rad + pos: 16.5,14.5 + parent: 1 + type: Transform + - uid: 17434 + components: + - pos: -8.5,14.5 + parent: 1 + type: Transform + - uid: 17437 + components: + - pos: -4.5,18.5 + parent: 1 + type: Transform + - uid: 17438 + components: + - pos: 3.5,18.5 + parent: 1 + type: Transform + - uid: 17442 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,24.5 + parent: 1 + type: Transform + - uid: 17443 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,18.5 + parent: 1 + type: Transform + - uid: 17453 + components: + - pos: 10.5,27.5 + parent: 1 + type: Transform + - uid: 17457 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,23.5 + parent: 1 + type: Transform + - uid: 17458 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,30.5 + parent: 1 + type: Transform + - uid: 17459 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,28.5 + parent: 1 + type: Transform + - uid: 17462 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,32.5 + parent: 1 + type: Transform + - uid: 17468 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,14.5 + parent: 1 + type: Transform + - uid: 17469 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 17472 + components: + - pos: -32.5,14.5 + parent: 1 + type: Transform + - uid: 17484 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,2.5 + parent: 1 + type: Transform + - uid: 17485 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,25.5 + parent: 1 + type: Transform + - uid: 17499 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-8.5 + parent: 1 + type: Transform + - uid: 17502 + components: + - pos: -17.5,-8.5 + parent: 1 + type: Transform + - uid: 17505 + components: + - pos: -0.5,-7.5 + parent: 1 + type: Transform + - uid: 17509 + components: + - pos: -0.5,-11.5 + parent: 1 + type: Transform + - uid: 17510 + components: + - pos: -13.5,-13.5 + parent: 1 + type: Transform + - uid: 17511 + components: + - pos: 12.5,-13.5 + parent: 1 + type: Transform + - uid: 17524 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-8.5 + parent: 1 + type: Transform + - uid: 17529 + components: + - rot: 3.141592653589793 rad + pos: 47.5,-8.5 + parent: 1 + type: Transform + - uid: 17530 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-8.5 + parent: 1 + type: Transform + - uid: 17542 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-23.5 + parent: 1 + type: Transform + - uid: 17545 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-19.5 + parent: 1 + type: Transform + - uid: 17546 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-33.5 + parent: 1 + type: Transform +- proto: AltarSpawner + entities: + - uid: 4401 + components: + - pos: 30.5,47.5 + parent: 1 + type: Transform + - uid: 17626 + components: + - pos: 31.5,47.5 + parent: 1 + type: Transform +- proto: AltarToolbox + entities: + - uid: 6993 + components: + - pos: -22.5,-24.5 + parent: 1 + type: Transform +- proto: AmeController + entities: + - uid: 9144 + components: + - pos: 4.5,-37.5 + parent: 1 + type: Transform +- proto: AnomalyScanner + entities: + - uid: 3447 + components: + - pos: -18.56863,17.749208 + parent: 1 + type: Transform + - uid: 4701 + components: + - pos: -18.171062,17.493765 + parent: 1 + type: Transform +- proto: APCBasic + entities: + - uid: 8819 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 8756 + type: Transform + - uid: 9405 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-19.5 + parent: 1 + type: Transform + - uid: 9764 + components: + - pos: -31.5,-13.5 + parent: 1 + type: Transform + - uid: 10145 + components: + - pos: 29.5,-14.5 + parent: 1 + type: Transform + - uid: 10308 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,7.5 + parent: 1 + type: Transform + - uid: 10442 + components: + - pos: 16.5,-21.5 + parent: 1 + type: Transform + - uid: 10458 + components: + - pos: 5.5,-31.5 + parent: 1 + type: Transform + - uid: 10545 + components: + - pos: 10.5,-19.5 + parent: 1 + type: Transform + - uid: 10595 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-16.5 + parent: 1 + type: Transform + - uid: 10650 + components: + - pos: 16.5,-10.5 + parent: 1 + type: Transform + - uid: 10693 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-16.5 + parent: 1 + type: Transform + - uid: 10723 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-38.5 + parent: 1 + type: Transform + - uid: 10991 + components: + - pos: 44.5,-6.5 + parent: 1 + type: Transform + - uid: 11083 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,5.5 + parent: 1 + type: Transform + - uid: 11109 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-3.5 + parent: 1 + type: Transform + - uid: 11235 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,9.5 + parent: 1 + type: Transform + - uid: 11281 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 1 + type: Transform + - uid: 11339 + components: + - pos: 24.5,23.5 + parent: 1 + type: Transform + - uid: 11375 + components: + - rot: 3.141592653589793 rad + pos: -3.5,75.5 + parent: 1 + type: Transform + - uid: 11376 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,74.5 + parent: 1 + type: Transform + - uid: 11377 + components: + - pos: 6.5,75.5 + parent: 1 + type: Transform + - uid: 11551 + components: + - pos: -24.5,49.5 + parent: 1 + type: Transform + - uid: 11552 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,50.5 + parent: 1 + type: Transform + - uid: 11573 + components: + - pos: -42.5,44.5 + parent: 1 + type: Transform + - uid: 11610 + components: + - pos: -30.5,57.5 + parent: 1 + type: Transform + - uid: 11862 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,56.5 + parent: 1 + type: Transform + - uid: 12023 + components: + - rot: 3.141592653589793 rad + pos: -20.5,31.5 + parent: 1 + type: Transform + - uid: 12024 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,32.5 + parent: 1 + type: Transform + - uid: 12025 + components: + - pos: -17.5,26.5 + parent: 1 + type: Transform + - uid: 12026 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,23.5 + parent: 1 + type: Transform + - uid: 12027 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,32.5 + parent: 1 + type: Transform + - uid: 12325 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,25.5 + parent: 1 + type: Transform + - uid: 12405 + components: + - pos: 10.5,62.5 + parent: 1 + type: Transform + - uid: 12406 + components: + - pos: 27.5,51.5 + parent: 1 + type: Transform + - uid: 12407 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,42.5 + parent: 1 + type: Transform + - uid: 12408 + components: + - pos: 41.5,41.5 + parent: 1 + type: Transform + - uid: 12460 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,46.5 + parent: 1 + type: Transform + - uid: 12862 + components: + - pos: 20.5,30.5 + parent: 1 + type: Transform + - uid: 12863 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,31.5 + parent: 1 + type: Transform + - uid: 12864 + components: + - pos: 5.5,26.5 + parent: 1 + type: Transform + - uid: 12865 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,19.5 + parent: 1 + type: Transform + - uid: 13196 + components: + - pos: -11.5,5.5 + parent: 1 + type: Transform + - uid: 13197 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,8.5 + parent: 1 + type: Transform + - uid: 13198 + components: + - pos: -21.5,-1.5 + parent: 1 + type: Transform +- proto: APCElectronics + entities: + - uid: 9127 + components: + - pos: 13.367671,-24.354437 + parent: 1 + type: Transform +- proto: AppraisalTool + entities: + - uid: 9332 + components: + - pos: -42.699795,7.55936 + parent: 1 + type: Transform + - uid: 9389 + components: + - pos: -43.303722,-2.4856074 + parent: 1 + type: Transform +- proto: Ash + entities: + - uid: 6945 + components: + - pos: 31.405294,56.585308 + parent: 1 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 609 + components: + - pos: 13.5,2.5 + parent: 1 + type: Transform + - uid: 845 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,1.5 + parent: 1 + type: Transform + - uid: 1996 + components: + - pos: 51.5,-7.5 + parent: 1 + type: Transform + - uid: 2031 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,3.5 + parent: 1 + type: Transform + - uid: 2036 + components: + - pos: 51.5,-14.5 + parent: 1 + type: Transform + - uid: 6771 + components: + - pos: 52.5,13.5 + parent: 1 + type: Transform + - uid: 6772 + components: + - pos: 52.5,15.5 + parent: 1 + type: Transform + - uid: 6773 + components: + - pos: 48.5,18.5 + parent: 1 + type: Transform + - uid: 6774 + components: + - pos: 46.5,18.5 + parent: 1 + type: Transform + - uid: 6775 + components: + - pos: 46.5,33.5 + parent: 1 + type: Transform + - uid: 6776 + components: + - pos: 48.5,33.5 + parent: 1 + type: Transform + - uid: 6777 + components: + - pos: 52.5,36.5 + parent: 1 + type: Transform + - uid: 6778 + components: + - pos: 52.5,38.5 + parent: 1 + type: Transform + - uid: 7127 + components: + - pos: 11.5,0.5 + parent: 1 + type: Transform + - uid: 7128 + components: + - pos: 11.5,4.5 + parent: 1 + type: Transform + - uid: 7420 + components: + - pos: -27.5,-29.5 + parent: 1 + type: Transform + - uid: 7633 + components: + - pos: 26.5,-29.5 + parent: 1 + type: Transform + - uid: 7936 + components: + - pos: -46.5,27.5 + parent: 1 + type: Transform + - uid: 7937 + components: + - pos: -46.5,28.5 + parent: 1 + type: Transform + - uid: 8868 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 8756 + type: Transform + - uid: 8869 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 8756 + type: Transform + - uid: 8870 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 8756 + type: Transform + - uid: 8871 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 8756 + type: Transform + - uid: 17635 + components: + - rot: 3.141592653589793 rad + pos: -44.5,4.5 + parent: 1 + type: Transform + - uid: 17636 + components: + - rot: 3.141592653589793 rad + pos: -44.5,2.5 + parent: 1 + type: Transform + - uid: 17637 + components: + - rot: 3.141592653589793 rad + pos: -53.5,36.5 + parent: 1 + type: Transform + - uid: 17638 + components: + - rot: 3.141592653589793 rad + pos: -53.5,38.5 + parent: 1 + type: Transform + - uid: 17639 + components: + - rot: 3.141592653589793 rad + pos: -53.5,15.5 + parent: 1 + type: Transform + - uid: 17640 + components: + - rot: 3.141592653589793 rad + pos: -53.5,13.5 + parent: 1 + type: Transform + - uid: 17641 + components: + - rot: 3.141592653589793 rad + pos: -53.5,-7.5 + parent: 1 + type: Transform + - uid: 17642 + components: + - rot: 3.141592653589793 rad + pos: -53.5,-8.5 + parent: 1 + type: Transform + - uid: 17643 + components: + - rot: 3.141592653589793 rad + pos: -53.5,-9.5 + parent: 1 + type: Transform + - uid: 17644 + components: + - rot: 3.141592653589793 rad + pos: -49.5,-12.5 + parent: 1 + type: Transform + - uid: 17645 + components: + - rot: 3.141592653589793 rad + pos: -48.5,-12.5 + parent: 1 + type: Transform + - uid: 17646 + components: + - rot: 3.141592653589793 rad + pos: -47.5,-12.5 + parent: 1 + type: Transform +- proto: AtmosFixBlockerMarker + entities: + - uid: 7045 + components: + - pos: -1.5,-25.5 + parent: 1 + type: Transform + - uid: 7046 + components: + - pos: -0.5,-25.5 + parent: 1 + type: Transform + - uid: 7047 + components: + - pos: 0.5,-25.5 + parent: 1 + type: Transform + - uid: 7048 + components: + - pos: -1.5,-29.5 + parent: 1 + type: Transform + - uid: 7049 + components: + - pos: -0.5,-29.5 + parent: 1 + type: Transform + - uid: 7050 + components: + - pos: 0.5,-29.5 + parent: 1 + type: Transform + - uid: 7051 + components: + - pos: -1.5,-33.5 + parent: 1 + type: Transform + - uid: 7052 + components: + - pos: -1.5,-34.5 + parent: 1 + type: Transform + - uid: 7053 + components: + - pos: -1.5,-35.5 + parent: 1 + type: Transform + - uid: 7054 + components: + - pos: -0.5,-33.5 + parent: 1 + type: Transform + - uid: 7055 + components: + - pos: -0.5,-34.5 + parent: 1 + type: Transform + - uid: 7056 + components: + - pos: -0.5,-35.5 + parent: 1 + type: Transform + - uid: 7057 + components: + - pos: 0.5,-33.5 + parent: 1 + type: Transform + - uid: 7058 + components: + - pos: 0.5,-34.5 + parent: 1 + type: Transform + - uid: 7059 + components: + - pos: 0.5,-35.5 + parent: 1 + type: Transform + - uid: 7060 + components: + - pos: -1.5,-39.5 + parent: 1 + type: Transform + - uid: 7061 + components: + - pos: -1.5,-40.5 + parent: 1 + type: Transform + - uid: 7062 + components: + - pos: -1.5,-41.5 + parent: 1 + type: Transform + - uid: 7063 + components: + - pos: -0.5,-39.5 + parent: 1 + type: Transform + - uid: 7064 + components: + - pos: -0.5,-40.5 + parent: 1 + type: Transform + - uid: 7065 + components: + - pos: -0.5,-41.5 + parent: 1 + type: Transform + - uid: 7066 + components: + - pos: 0.5,-39.5 + parent: 1 + type: Transform + - uid: 7067 + components: + - pos: 0.5,-40.5 + parent: 1 + type: Transform + - uid: 7068 + components: + - pos: 0.5,-41.5 + parent: 1 + type: Transform + - uid: 7069 + components: + - pos: -0.5,-42.5 + parent: 1 + type: Transform + - uid: 7070 + components: + - pos: -2.5,-43.5 + parent: 1 + type: Transform + - uid: 7071 + components: + - pos: -2.5,-44.5 + parent: 1 + type: Transform + - uid: 7072 + components: + - pos: -2.5,-45.5 + parent: 1 + type: Transform + - uid: 7073 + components: + - pos: -1.5,-43.5 + parent: 1 + type: Transform + - uid: 7074 + components: + - pos: -1.5,-44.5 + parent: 1 + type: Transform + - uid: 7075 + components: + - pos: -1.5,-45.5 + parent: 1 + type: Transform + - uid: 7076 + components: + - pos: -0.5,-43.5 + parent: 1 + type: Transform + - uid: 7077 + components: + - pos: -0.5,-44.5 + parent: 1 + type: Transform + - uid: 7078 + components: + - pos: -0.5,-45.5 + parent: 1 + type: Transform + - uid: 7079 + components: + - pos: 0.5,-43.5 + parent: 1 + type: Transform + - uid: 7080 + components: + - pos: 0.5,-44.5 + parent: 1 + type: Transform + - uid: 7081 + components: + - pos: 0.5,-45.5 + parent: 1 + type: Transform + - uid: 7082 + components: + - pos: 1.5,-43.5 + parent: 1 + type: Transform + - uid: 7083 + components: + - pos: 1.5,-44.5 + parent: 1 + type: Transform + - uid: 7084 + components: + - pos: 1.5,-45.5 + parent: 1 + type: Transform + - uid: 7085 + components: + - pos: -1.5,-46.5 + parent: 1 + type: Transform + - uid: 7086 + components: + - pos: -1.5,-47.5 + parent: 1 + type: Transform + - uid: 7087 + components: + - pos: -1.5,-48.5 + parent: 1 + type: Transform + - uid: 7088 + components: + - pos: -0.5,-46.5 + parent: 1 + type: Transform + - uid: 7089 + components: + - pos: -0.5,-47.5 + parent: 1 + type: Transform + - uid: 7090 + components: + - pos: -0.5,-48.5 + parent: 1 + type: Transform + - uid: 7091 + components: + - pos: 0.5,-46.5 + parent: 1 + type: Transform + - uid: 7092 + components: + - pos: 0.5,-47.5 + parent: 1 + type: Transform + - uid: 7093 + components: + - pos: 0.5,-48.5 + parent: 1 + type: Transform + - uid: 7876 + components: + - pos: -1.5,-23.5 + parent: 1 + type: Transform + - uid: 7877 + components: + - pos: -0.5,-23.5 + parent: 1 + type: Transform + - uid: 7878 + components: + - pos: 0.5,-23.5 + parent: 1 + type: Transform +- proto: AtmosFixFreezerMarker + entities: + - uid: 7129 + components: + - pos: 10.5,3.5 + parent: 1 + type: Transform + - uid: 7130 + components: + - pos: 10.5,2.5 + parent: 1 + type: Transform + - uid: 7131 + components: + - pos: 10.5,1.5 + parent: 1 + type: Transform + - uid: 7132 + components: + - pos: 11.5,3.5 + parent: 1 + type: Transform + - uid: 7133 + components: + - pos: 11.5,2.5 + parent: 1 + type: Transform + - uid: 7134 + components: + - pos: 11.5,1.5 + parent: 1 + type: Transform + - uid: 7135 + components: + - pos: 12.5,3.5 + parent: 1 + type: Transform + - uid: 7136 + components: + - pos: 12.5,2.5 + parent: 1 + type: Transform + - uid: 7137 + components: + - pos: 12.5,1.5 + parent: 1 + type: Transform + - uid: 9854 + components: + - pos: -32.5,-11.5 + parent: 1 + type: Transform + - uid: 9855 + components: + - pos: -32.5,-12.5 + parent: 1 + type: Transform + - uid: 9856 + components: + - pos: -31.5,-11.5 + parent: 1 + type: Transform + - uid: 9857 + components: + - pos: -31.5,-12.5 + parent: 1 + type: Transform + - uid: 9858 + components: + - pos: -30.5,-11.5 + parent: 1 + type: Transform + - uid: 9859 + components: + - pos: -30.5,-12.5 + parent: 1 + type: Transform +- proto: AtmosFixNitrogenMarker + entities: + - uid: 7036 + components: + - pos: -1.5,-21.5 + parent: 1 + type: Transform + - uid: 7037 + components: + - pos: -0.5,-21.5 + parent: 1 + type: Transform + - uid: 7038 + components: + - pos: 0.5,-21.5 + parent: 1 + type: Transform +- proto: AtmosFixOxygenMarker + entities: + - uid: 7039 + components: + - pos: -1.5,-19.5 + parent: 1 + type: Transform + - uid: 7040 + components: + - pos: -0.5,-19.5 + parent: 1 + type: Transform + - uid: 7041 + components: + - pos: 0.5,-19.5 + parent: 1 + type: Transform +- proto: AtmosFixPlasmaMarker + entities: + - uid: 7042 + components: + - pos: -1.5,-27.5 + parent: 1 + type: Transform + - uid: 7043 + components: + - pos: -0.5,-27.5 + parent: 1 + type: Transform + - uid: 7044 + components: + - pos: 0.5,-27.5 + parent: 1 + type: Transform +- proto: Autolathe + entities: + - uid: 3552 + components: + - pos: -4.5,24.5 + parent: 1 + type: Transform + - uid: 4159 + components: + - pos: -34.5,1.5 + parent: 1 + type: Transform + - uid: 4214 + components: + - pos: 13.5,-15.5 + parent: 1 + type: Transform +- proto: BagpipeInstrument + entities: + - uid: 8618 + components: + - pos: -3.6259267,26.581953 + parent: 1 + type: Transform +- proto: BananaPhoneInstrument + entities: + - uid: 6459 + components: + - pos: -15.461665,-0.34175533 + parent: 1 + type: Transform +- proto: BannerEngineering + entities: + - uid: 8567 + components: + - pos: -2.5,-11.5 + parent: 1 + type: Transform + - uid: 8570 + components: + - pos: 1.5,-11.5 + parent: 1 + type: Transform +- proto: BannerMedical + entities: + - uid: 8569 + components: + - pos: 2.5,17.5 + parent: 1 + type: Transform +- proto: BannerScience + entities: + - uid: 8568 + components: + - pos: -3.5,17.5 + parent: 1 + type: Transform +- proto: Barricade + entities: + - uid: 1710 + components: + - pos: -36.5,52.5 + parent: 1 + type: Transform + - uid: 2491 + components: + - pos: 21.5,9.5 + parent: 1 + type: Transform + - uid: 4453 + components: + - pos: -30.5,55.5 + parent: 1 + type: Transform + - uid: 4454 + components: + - pos: -31.5,52.5 + parent: 1 + type: Transform + - uid: 4455 + components: + - pos: -33.5,55.5 + parent: 1 + type: Transform + - uid: 4456 + components: + - pos: -35.5,55.5 + parent: 1 + type: Transform + - uid: 4457 + components: + - pos: -27.5,56.5 + parent: 1 + type: Transform + - uid: 4458 + components: + - pos: -26.5,57.5 + parent: 1 + type: Transform + - uid: 5554 + components: + - pos: -19.5,8.5 + parent: 1 + type: Transform + - uid: 6658 + components: + - pos: -45.5,-9.5 + parent: 1 + type: Transform + - uid: 6659 + components: + - pos: -49.5,-7.5 + parent: 1 + type: Transform + - uid: 6660 + components: + - pos: -48.5,-6.5 + parent: 1 + type: Transform + - uid: 6992 + components: + - pos: -25.5,-21.5 + parent: 1 + type: Transform + - uid: 10942 + components: + - pos: 33.5,-18.5 + parent: 1 + type: Transform + - uid: 10954 + components: + - pos: 37.5,-12.5 + parent: 1 + type: Transform + - uid: 13381 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,27.5 + parent: 1 + type: Transform + - uid: 13452 + components: + - pos: -45.5,48.5 + parent: 1 + type: Transform + - uid: 13479 + components: + - pos: -13.5,68.5 + parent: 1 + type: Transform +- proto: BarSignOfficerBeersky + entities: + - uid: 538 + components: + - pos: -0.5,12.5 + parent: 1 + type: Transform + - uid: 1670 + components: + - pos: -28.5,59.5 + parent: 1 + type: Transform + - uid: 4023 + components: + - pos: 5.5,-6.5 + parent: 1 + type: Transform +- proto: Basketball + entities: + - uid: 8261 + components: + - pos: -38.63891,43.594166 + parent: 1 + type: Transform +- proto: BassGuitarInstrument + entities: + - uid: 17737 + components: + - pos: 6.633194,-70.24802 + parent: 1 + type: Transform +- proto: Bed + entities: + - uid: 1991 + components: + - pos: -13.5,60.5 + parent: 1 + type: Transform + - uid: 2449 + components: + - pos: 4.5,-23.5 + parent: 1 + type: Transform + - uid: 3262 + components: + - pos: 26.5,52.5 + parent: 1 + type: Transform + - uid: 3558 + components: + - pos: -25.5,19.5 + parent: 1 + type: Transform + - uid: 4175 + components: + - pos: 11.5,40.5 + parent: 1 + type: Transform + - uid: 4176 + components: + - pos: 11.5,46.5 + parent: 1 + type: Transform + - uid: 4177 + components: + - pos: 18.5,47.5 + parent: 1 + type: Transform + - uid: 4178 + components: + - pos: 46.5,48.5 + parent: 1 + type: Transform + - uid: 4317 + components: + - pos: -38.5,42.5 + parent: 1 + type: Transform + - uid: 4318 + components: + - pos: -38.5,46.5 + parent: 1 + type: Transform + - uid: 4387 + components: + - pos: 26.5,8.5 + parent: 1 + type: Transform + - uid: 4423 + components: + - pos: 14.5,34.5 + parent: 1 + type: Transform + - uid: 6476 + components: + - pos: -17.5,1.5 + parent: 1 + type: Transform + - uid: 6480 + components: + - pos: 33.5,-17.5 + parent: 1 + type: Transform + - uid: 6482 + components: + - pos: -10.5,40.5 + parent: 1 + type: Transform + - uid: 6486 + components: + - pos: -17.5,3.5 + parent: 1 + type: Transform + - uid: 6487 + components: + - pos: -17.5,-2.5 + parent: 1 + type: Transform + - uid: 6489 + components: + - pos: -4.5,40.5 + parent: 1 + type: Transform + - uid: 6490 + components: + - pos: -7.5,40.5 + parent: 1 + type: Transform + - uid: 6494 + components: + - pos: -13.5,40.5 + parent: 1 + type: Transform + - uid: 6506 + components: + - pos: -10.5,10.5 + parent: 1 + type: Transform + - uid: 6797 + components: + - pos: -5.5,72.5 + parent: 1 + type: Transform + - uid: 7024 + components: + - pos: -23.5,1.5 + parent: 1 + type: Transform + - uid: 9326 + components: + - pos: -42.5,11.5 + parent: 1 + type: Transform + - uid: 9608 + components: + - pos: 9.5,33.5 + parent: 1 + type: Transform + - uid: 9609 + components: + - pos: 9.5,31.5 + parent: 1 + type: Transform + - uid: 9868 + components: + - pos: -36.5,-21.5 + parent: 1 + type: Transform +- proto: BedsheetBlack + entities: + - uid: 7344 + components: + - rot: 3.141592653589793 rad + pos: 26.5,52.5 + parent: 1 + type: Transform + - uid: 13319 + components: + - pos: -10.5,10.5 + parent: 1 + type: Transform +- proto: BedsheetBrown + entities: + - uid: 6843 + components: + - pos: 46.5,48.5 + parent: 1 + type: Transform +- proto: BedsheetCaptain + entities: + - uid: 6801 + components: + - pos: -5.5,72.5 + parent: 1 + type: Transform +- proto: BedsheetCE + entities: + - uid: 4199 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-23.5 + parent: 1 + type: Transform +- proto: BedsheetClown + entities: + - uid: 6612 + components: + - pos: -17.5,1.5 + parent: 1 + type: Transform +- proto: BedsheetCMO + entities: + - uid: 4422 + components: + - pos: 14.5,34.5 + parent: 1 + type: Transform +- proto: BedsheetCosmos + entities: + - uid: 6623 + components: + - pos: -17.5,-2.5 + parent: 1 + type: Transform +- proto: BedsheetHOP + entities: + - uid: 2490 + components: + - pos: 26.5,8.5 + parent: 1 + type: Transform +- proto: BedsheetHOS + entities: + - uid: 6817 + components: + - pos: -13.5,60.5 + parent: 1 + type: Transform +- proto: BedsheetMedical + entities: + - uid: 9386 + components: + - pos: 2.5,29.5 + parent: 1 + type: Transform + - uid: 9484 + components: + - pos: 2.5,31.5 + parent: 1 + type: Transform + - uid: 9486 + components: + - pos: 2.5,34.5 + parent: 1 + type: Transform +- proto: BedsheetMime + entities: + - uid: 6620 + components: + - pos: -17.5,3.5 + parent: 1 + type: Transform +- proto: BedsheetOrange + entities: + - uid: 8238 + components: + - pos: -13.5,40.5 + parent: 1 + type: Transform + - uid: 8239 + components: + - pos: -10.5,40.5 + parent: 1 + type: Transform + - uid: 8240 + components: + - pos: -7.5,40.5 + parent: 1 + type: Transform + - uid: 8241 + components: + - pos: -4.5,40.5 + parent: 1 + type: Transform +- proto: BedsheetQM + entities: + - uid: 9324 + components: + - pos: -42.5,11.5 + parent: 1 + type: Transform +- proto: BedsheetRD + entities: + - uid: 3559 + components: + - pos: -25.5,19.5 + parent: 1 + type: Transform +- proto: BedsheetSpawner + entities: + - uid: 6940 + components: + - pos: 11.5,40.5 + parent: 1 + type: Transform + - uid: 6941 + components: + - pos: 11.5,46.5 + parent: 1 + type: Transform + - uid: 6942 + components: + - pos: 18.5,47.5 + parent: 1 + type: Transform + - uid: 7025 + components: + - pos: -23.5,1.5 + parent: 1 + type: Transform + - uid: 8260 + components: + - pos: -38.5,42.5 + parent: 1 + type: Transform + - uid: 9871 + components: + - pos: -36.5,-21.5 + parent: 1 + type: Transform + - uid: 10384 + components: + - pos: 33.5,-17.5 + parent: 1 + type: Transform +- proto: BedsheetSyndie + entities: + - uid: 4319 + components: + - pos: -38.5,46.5 + parent: 1 + type: Transform +- proto: BiomassReclaimer + entities: + - uid: 7635 + components: + - pos: 21.5,31.5 + parent: 1 + type: Transform +- proto: BlastDoor + entities: + - uid: 4135 + components: + - pos: -43.5,24.5 + parent: 1 + type: Transform + - links: + - 7826 + type: DeviceLinkSink + - uid: 7923 + components: + - pos: -43.5,22.5 + parent: 1 + type: Transform + - links: + - 7826 + type: DeviceLinkSink + - uid: 9406 + components: + - pos: -19.5,-15.5 + parent: 1 + type: Transform + - links: + - 9404 + type: DeviceLinkSink +- proto: BlastDoorBridgeOpen + entities: + - uid: 4282 + components: + - pos: -9.5,76.5 + parent: 1 + type: Transform + - uid: 4283 + components: + - pos: -9.5,77.5 + parent: 1 + type: Transform + - uid: 4284 + components: + - pos: -8.5,79.5 + parent: 1 + type: Transform + - uid: 4285 + components: + - pos: -8.5,80.5 + parent: 1 + type: Transform + - uid: 4286 + components: + - pos: -7.5,82.5 + parent: 1 + type: Transform + - uid: 4287 + components: + - pos: -6.5,83.5 + parent: 1 + type: Transform + - uid: 4288 + components: + - pos: -5.5,83.5 + parent: 1 + type: Transform + - uid: 4289 + components: + - pos: -3.5,84.5 + parent: 1 + type: Transform + - uid: 4290 + components: + - pos: -2.5,84.5 + parent: 1 + type: Transform + - uid: 4291 + components: + - pos: -1.5,84.5 + parent: 1 + type: Transform + - uid: 4292 + components: + - pos: 0.5,84.5 + parent: 1 + type: Transform + - uid: 4293 + components: + - pos: 1.5,84.5 + parent: 1 + type: Transform + - uid: 4294 + components: + - pos: 2.5,84.5 + parent: 1 + type: Transform + - uid: 4295 + components: + - pos: 5.5,83.5 + parent: 1 + type: Transform + - uid: 4296 + components: + - pos: 4.5,83.5 + parent: 1 + type: Transform + - uid: 4297 + components: + - pos: 6.5,82.5 + parent: 1 + type: Transform + - uid: 4298 + components: + - pos: 7.5,80.5 + parent: 1 + type: Transform + - uid: 4299 + components: + - pos: 7.5,79.5 + parent: 1 + type: Transform + - uid: 4300 + components: + - pos: 8.5,77.5 + parent: 1 + type: Transform + - uid: 4301 + components: + - pos: 8.5,76.5 + parent: 1 + type: Transform + - uid: 4302 + components: + - pos: 0.5,72.5 + parent: 1 + type: Transform + - links: + - 4305 + type: DeviceLinkSink + - uid: 4303 + components: + - pos: -0.5,72.5 + parent: 1 + type: Transform + - links: + - 4305 + type: DeviceLinkSink + - uid: 4304 + components: + - pos: -1.5,72.5 + parent: 1 + type: Transform + - links: + - 4305 + type: DeviceLinkSink +- proto: BlastDoorOpen + entities: + - uid: 109 + components: + - pos: -44.5,5.5 + parent: 1 + type: Transform + - links: + - 9363 + type: DeviceLinkSink + - uid: 110 + components: + - pos: -44.5,1.5 + parent: 1 + type: Transform + - links: + - 9363 + type: DeviceLinkSink + - uid: 286 + components: + - pos: -41.5,1.5 + parent: 1 + type: Transform + - links: + - 9363 + type: DeviceLinkSink + - uid: 287 + components: + - pos: -41.5,5.5 + parent: 1 + type: Transform + - links: + - 9363 + type: DeviceLinkSink + - uid: 1048 + components: + - pos: -6.5,27.5 + parent: 1 + type: Transform + - links: + - 8572 + type: DeviceLinkSink + - uid: 2813 + components: + - pos: -11.5,-26.5 + parent: 1 + type: Transform + - SecondsUntilStateChange: -65801.555 + state: Closing + type: Door + - links: + - 8738 + type: DeviceLinkSink + - uid: 2814 + components: + - pos: -11.5,-27.5 + parent: 1 + type: Transform + - SecondsUntilStateChange: -65801.555 + state: Closing + type: Door + - links: + - 8738 + type: DeviceLinkSink + - uid: 2821 + components: + - pos: -11.5,-28.5 + parent: 1 + type: Transform + - SecondsUntilStateChange: -65801.555 + state: Closing + type: Door + - links: + - 8738 + type: DeviceLinkSink + - uid: 2822 + components: + - pos: -11.5,-29.5 + parent: 1 + type: Transform + - SecondsUntilStateChange: -65801.555 + state: Closing + type: Door + - links: + - 8738 + type: DeviceLinkSink + - uid: 3050 + components: + - pos: -0.5,-42.5 + parent: 1 + type: Transform + - links: + - 8749 + type: DeviceLinkSink + - uid: 3051 + components: + - pos: -1.5,-48.5 + parent: 1 + type: Transform + - links: + - 8750 + type: DeviceLinkSink + - uid: 3052 + components: + - pos: -0.5,-48.5 + parent: 1 + type: Transform + - links: + - 8750 + type: DeviceLinkSink + - uid: 3053 + components: + - pos: 0.5,-48.5 + parent: 1 + type: Transform + - links: + - 8750 + type: DeviceLinkSink + - uid: 3066 + components: + - pos: 19.5,-38.5 + parent: 1 + type: Transform + - SecondsUntilStateChange: -64794.805 + state: Closing + type: Door + - links: + - 17649 + type: DeviceLinkSink + - uid: 4205 + components: + - pos: 14.5,-23.5 + parent: 1 + type: Transform + - SecondsUntilStateChange: -64817.477 + state: Closing + type: Door + - links: + - 17648 + type: DeviceLinkSink +- proto: BlastDoorWindowsOpen + entities: + - uid: 18360 + components: + - pos: -9.5,74.5 + parent: 1 + type: Transform + - uid: 18361 + components: + - pos: -9.5,73.5 + parent: 1 + type: Transform + - uid: 18362 + components: + - pos: -9.5,72.5 + parent: 1 + type: Transform +- proto: BodyBag_Folded + entities: + - uid: 6946 + components: + - pos: 33.33633,56.840748 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.3955739 + - 12.773826 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 6947 + components: + - pos: 33.648705,56.61369 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14954 + moles: + - 3.1239278 + - 11.75192 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: BodyScannerComputerCircuitboard + entities: + - uid: 7716 + components: + - pos: 16.457653,27.693125 + parent: 1 + type: Transform +- proto: Bola + entities: + - uid: 8195 + components: + - pos: -16.57336,48.668964 + parent: 1 + type: Transform + - uid: 9421 + components: + - pos: 41.316933,42.55459 + parent: 1 + type: Transform +- proto: BookAtmosAirAlarms + entities: + - uid: 9185 + components: + - pos: 6.038775,-21.429781 + parent: 1 + type: Transform +- proto: BookAtmosDistro + entities: + - uid: 9183 + components: + - pos: 7.4437623,-15.369677 + parent: 1 + type: Transform +- proto: BookAtmosVentsMore + entities: + - uid: 9184 + components: + - pos: -11.074379,-15.383043 + parent: 1 + type: Transform +- proto: BookAtmosWaste + entities: + - uid: 9186 + components: + - pos: -13.559183,-33.321575 + parent: 1 + type: Transform +- proto: BookBase + entities: + - uid: 10101 + components: + - pos: -35.309326,-21.379847 + parent: 1 + type: Transform +- proto: BookRandom + entities: + - uid: 8374 + components: + - pos: 29.490294,49.539463 + parent: 1 + type: Transform + - uid: 8377 + components: + - pos: 24.466179,53.695103 + parent: 1 + type: Transform + - uid: 9270 + components: + - pos: 24.172997,11.661996 + parent: 1 + type: Transform + - uid: 13472 + components: + - pos: -17.602375,64.72776 + parent: 1 + type: Transform + - uid: 13477 + components: + - pos: -12.50277,64.65098 + parent: 1 + type: Transform +- proto: BooksBag + entities: + - uid: 564 + components: + - pos: -25.599146,3.2273636 + parent: 1 + type: Transform +- proto: Bookshelf + entities: + - uid: 6474 + components: + - pos: -18.5,-33.5 + parent: 1 + type: Transform + - uid: 9265 + components: + - pos: 27.5,11.5 + parent: 1 + type: Transform + - uid: 9866 + components: + - pos: -33.5,-20.5 + parent: 1 + type: Transform +- proto: BookshelfFilled + entities: + - uid: 579 + components: + - pos: -22.5,11.5 + parent: 1 + type: Transform + - uid: 591 + components: + - pos: -22.5,9.5 + parent: 1 + type: Transform + - uid: 785 + components: + - pos: -26.5,11.5 + parent: 1 + type: Transform + - uid: 790 + components: + - pos: -24.5,11.5 + parent: 1 + type: Transform + - uid: 3020 + components: + - pos: -19.5,64.5 + parent: 1 + type: Transform +- proto: BoozeDispenser + entities: + - uid: 4043 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,7.5 + parent: 1 + type: Transform + - uid: 4451 + components: + - pos: -34.5,56.5 + parent: 1 + type: Transform +- proto: BoozeDispenserMachineCircuitboard + entities: + - uid: 4208 + components: + - pos: 18.665758,-21.968855 + parent: 1 + type: Transform +- proto: BorgCharger + entities: + - uid: 2602 + components: + - pos: -16.5,34.5 + parent: 1 + type: Transform + - uid: 2605 + components: + - pos: -17.5,34.5 + parent: 1 + type: Transform + - uid: 2646 + components: + - pos: -21.5,-11.5 + parent: 1 + type: Transform +- proto: BoxBeaker + entities: + - uid: 8532 + components: + - pos: 5.345545,25.692337 + parent: 1 + type: Transform +- proto: BoxBeanbag + entities: + - uid: 7692 + components: + - flags: InContainer + type: MetaData + - parent: 7683 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 7694 + components: + - flags: InContainer + type: MetaData + - parent: 7683 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 13331 + components: + - pos: -9.5083065,10.722602 + parent: 1 + type: Transform +- proto: BoxBodyBag + entities: + - uid: 3705 + components: + - pos: 18.323305,31.666723 + parent: 1 + type: Transform +- proto: BoxBottle + entities: + - uid: 8534 + components: + - pos: 6.2325087,22.657133 + parent: 1 + type: Transform +- proto: BoxFlashbang + entities: + - uid: 18430 + components: + - pos: -16.611473,48.986847 + parent: 1 + type: Transform +- proto: BoxFolderBlack + entities: + - uid: 1934 + components: + - pos: 9.125238,57.460705 + parent: 1 + type: Transform + - uid: 1935 + components: + - pos: 12.500238,57.648205 + parent: 1 + type: Transform + - uid: 8080 + components: + - pos: -0.32539943,82.85567 + parent: 1 + type: Transform + - uid: 8657 + components: + - pos: -23.526514,19.927814 + parent: 1 + type: Transform + - uid: 9107 + components: + - pos: 5.668479,-25.549896 + parent: 1 + type: Transform +- proto: BoxFolderBlue + entities: + - uid: 3445 + components: + - pos: -9.412775,27.467733 + parent: 1 + type: Transform + - uid: 8078 + components: + - pos: -0.5525799,82.65699 + parent: 1 + type: Transform +- proto: BoxFolderGrey + entities: + - uid: 3446 + components: + - pos: -9.554764,27.609644 + parent: 1 + type: Transform + - uid: 8105 + components: + - pos: 6.4373384,71.640045 + parent: 1 + type: Transform + - uid: 8658 + components: + - pos: -23.384525,19.700756 + parent: 1 + type: Transform + - uid: 9218 + components: + - pos: 25.298811,4.565318 + parent: 1 + type: Transform + - uid: 9219 + components: + - pos: 25.548811,4.5861516 + parent: 1 + type: Transform + - uid: 9337 + components: + - pos: -43.574795,8.288526 + parent: 1 + type: Transform +- proto: BoxFolderRed + entities: + - uid: 7284 + components: + - pos: 5.333919,63.8167 + parent: 1 + type: Transform + - uid: 7289 + components: + - pos: 3.0905108,61.46098 + parent: 1 + type: Transform + - uid: 8232 + components: + - pos: -19.604881,52.742233 + parent: 1 + type: Transform + - uid: 8233 + components: + - pos: -12.278308,55.864277 + parent: 1 + type: Transform + - uid: 8246 + components: + - pos: -13.392934,47.51383 + parent: 1 + type: Transform + - uid: 8344 + components: + - pos: -16.417713,58.622196 + parent: 1 + type: Transform + - uid: 8361 + components: + - pos: 42.90648,50.630825 + parent: 1 + type: Transform +- proto: BoxFolderWhite + entities: + - uid: 7285 + components: + - pos: 5.6462917,63.53288 + parent: 1 + type: Transform + - uid: 8079 + components: + - pos: 2.6563458,82.571846 + parent: 1 + type: Transform + - uid: 8493 + components: + - pos: 15.860265,32.633404 + parent: 1 + type: Transform + - uid: 8562 + components: + - pos: 12.811435,19.710966 + parent: 1 + type: Transform +- proto: BoxFolderYellow + entities: + - uid: 8104 + components: + - pos: 4.5346994,73.39974 + parent: 1 + type: Transform + - uid: 9106 + components: + - pos: 5.460146,-25.362396 + parent: 1 + type: Transform + - uid: 9178 + components: + - pos: 13.689603,-12.275042 + parent: 1 + type: Transform + - uid: 9179 + components: + - pos: 13.41877,-12.462542 + parent: 1 + type: Transform + - uid: 9335 + components: + - pos: -43.637295,8.517693 + parent: 1 + type: Transform + - uid: 9336 + components: + - pos: -43.366463,8.267693 + parent: 1 + type: Transform + - uid: 18179 + components: + - pos: -35.620438,12.58034 + parent: 1 + type: Transform +- proto: BoxHandcuff + entities: + - uid: 18431 + components: + - pos: -16.528141,49.174347 + parent: 1 + type: Transform +- proto: BoxLightbulb + entities: + - uid: 18095 + components: + - pos: -46.66187,46.44237 + parent: 1 + type: Transform +- proto: BoxMousetrap + entities: + - uid: 6634 + components: + - pos: 12.496991,1.4858572 + parent: 1 + type: Transform +- proto: BoxMouthSwab + entities: + - uid: 8515 + components: + - pos: 7.6369686,33.367302 + parent: 1 + type: Transform +- proto: BoxNitrileGloves + entities: + - uid: 3723 + components: + - pos: 18.361977,29.598766 + parent: 1 + type: Transform + - uid: 8514 + components: + - pos: 7.3813915,33.67951 + parent: 1 + type: Transform +- proto: BoxShellTranquilizer + entities: + - uid: 8148 + components: + - flags: InContainer + type: MetaData + - parent: 7683 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: BoxShotgunIncendiary + entities: + - uid: 8145 + components: + - flags: InContainer + type: MetaData + - parent: 7683 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: BoxSterileMask + entities: + - uid: 8685 + components: + - pos: 18.549246,29.62489 + parent: 1 + type: Transform + - uid: 8686 + components: + - pos: 9.895921,19.54264 + parent: 1 + type: Transform +- proto: BoxTrashbag + entities: + - uid: 9255 + components: + - pos: 16.332394,-5.251412 + parent: 1 + type: Transform +- proto: BoxZiptie + entities: + - uid: 8194 + components: + - pos: -16.340641,49.341015 + parent: 1 + type: Transform +- proto: BrbSign + entities: + - uid: 9213 + components: + - pos: 25.652977,4.377818 + parent: 1 + type: Transform +- proto: BriefcaseBrownFilled + entities: + - uid: 7286 + components: + - pos: 4.538786,64.696556 + parent: 1 + type: Transform + - uid: 8120 + components: + - pos: 13.062738,57.648205 + parent: 1 + type: Transform +- proto: BrigTimer + entities: + - uid: 7666 + components: + - rot: 3.141592653589793 rad + pos: -14.5,43.5 + parent: 1 + type: Transform + - uid: 7667 + components: + - rot: 3.141592653589793 rad + pos: -5.5,43.5 + parent: 1 + type: Transform + - uid: 7668 + components: + - rot: 3.141592653589793 rad + pos: -11.5,43.5 + parent: 1 + type: Transform + - uid: 7669 + components: + - rot: 3.141592653589793 rad + pos: -8.5,43.5 + parent: 1 + type: Transform +- proto: Brutepack + entities: + - uid: 7815 + components: + - pos: -42.603355,21.659529 + parent: 1 + type: Transform +- proto: Bucket + entities: + - uid: 9006 + components: + - pos: 8.547974,11.674014 + parent: 1 + type: Transform + - uid: 10965 + components: + - pos: 37.59104,-15.971035 + parent: 1 + type: Transform +- proto: ButchCleaver + entities: + - uid: 10645 + components: + - pos: 8.613402,-2.6485355 + parent: 1 + type: Transform +- proto: CableApcExtension + entities: + - uid: 101 + components: + - pos: 51.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 168 + components: + - pos: 48.5,-12.5 + parent: 1 + type: Transform + - uid: 661 + components: + - pos: -23.5,10.5 + parent: 1 + type: Transform + - uid: 663 + components: + - pos: -23.5,9.5 + parent: 1 + type: Transform + - uid: 664 + components: + - pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 2002 + components: + - pos: 47.5,-12.5 + parent: 1 + type: Transform + - uid: 2003 + components: + - pos: 48.5,-14.5 + parent: 1 + type: Transform + - uid: 2037 + components: + - pos: 51.5,-14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2038 + components: + - pos: 48.5,-13.5 + parent: 1 + type: Transform + - uid: 2039 + components: + - pos: 49.5,-14.5 + parent: 1 + type: Transform + - uid: 2052 + components: + - pos: 45.5,-12.5 + parent: 1 + type: Transform + - uid: 2057 + components: + - pos: 50.5,-14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2059 + components: + - pos: 50.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2060 + components: + - pos: 46.5,-12.5 + parent: 1 + type: Transform + - uid: 2635 + components: + - pos: -17.5,30.5 + parent: 1 + type: Transform + - uid: 2644 + components: + - pos: -17.5,31.5 + parent: 1 + type: Transform + - uid: 6000 + components: + - pos: -29.5,-17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6022 + components: + - pos: -18.5,-31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6521 + components: + - pos: 48.5,-10.5 + parent: 1 + type: Transform + - uid: 6525 + components: + - pos: 48.5,-11.5 + parent: 1 + type: Transform + - uid: 6546 + components: + - pos: -27.5,-27.5 + parent: 1 + type: Transform + - uid: 6547 + components: + - pos: 26.5,-29.5 + parent: 1 + type: Transform + - uid: 6770 + components: + - pos: 26.5,-27.5 + parent: 1 + type: Transform + - uid: 7422 + components: + - pos: 26.5,-25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7652 + components: + - pos: -27.5,-28.5 + parent: 1 + type: Transform + - uid: 7661 + components: + - pos: 26.5,-28.5 + parent: 1 + type: Transform + - uid: 7662 + components: + - pos: 26.5,-26.5 + parent: 1 + type: Transform + - uid: 7938 + components: + - pos: -42.5,24.5 + parent: 1 + type: Transform + - uid: 7939 + components: + - pos: -42.5,23.5 + parent: 1 + type: Transform + - uid: 7940 + components: + - pos: -42.5,22.5 + parent: 1 + type: Transform + - uid: 7941 + components: + - pos: -43.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7942 + components: + - pos: -44.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7943 + components: + - pos: -45.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7944 + components: + - pos: -45.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8009 + components: + - pos: -45.5,20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8140 + components: + - pos: -43.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8141 + components: + - pos: -44.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8142 + components: + - pos: -45.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8143 + components: + - pos: -42.5,27.5 + parent: 1 + type: Transform + - uid: 8144 + components: + - pos: -43.5,27.5 + parent: 1 + type: Transform + - uid: 8146 + components: + - pos: -44.5,27.5 + parent: 1 + type: Transform + - uid: 8151 + components: + - pos: -45.5,27.5 + parent: 1 + type: Transform + - uid: 8152 + components: + - pos: -45.5,28.5 + parent: 1 + type: Transform + - uid: 8156 + components: + - pos: -42.5,26.5 + parent: 1 + type: Transform + - uid: 8157 + components: + - pos: -42.5,28.5 + parent: 1 + type: Transform + - uid: 8158 + components: + - pos: -41.5,28.5 + parent: 1 + type: Transform + - uid: 8159 + components: + - pos: -40.5,28.5 + parent: 1 + type: Transform + - uid: 8160 + components: + - pos: -39.5,28.5 + parent: 1 + type: Transform + - uid: 8193 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 8830 + components: + - pos: 1.5,-5.5 + parent: 8756 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8831 + components: + - pos: 1.5,-4.5 + parent: 8756 + type: Transform + - uid: 8832 + components: + - pos: 1.5,-3.5 + parent: 8756 + type: Transform + - uid: 8833 + components: + - pos: 1.5,-2.5 + parent: 8756 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8834 + components: + - pos: 1.5,-1.5 + parent: 8756 + type: Transform + - uid: 8835 + components: + - pos: 1.5,-0.5 + parent: 8756 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8836 + components: + - pos: 1.5,0.5 + parent: 8756 + type: Transform + - uid: 8837 + components: + - pos: 0.5,0.5 + parent: 8756 + type: Transform + - uid: 8838 + components: + - pos: 0.5,1.5 + parent: 8756 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8839 + components: + - pos: 0.5,2.5 + parent: 8756 + type: Transform + - uid: 8840 + components: + - pos: 0.5,3.5 + parent: 8756 + type: Transform + - uid: 8841 + components: + - pos: -0.5,3.5 + parent: 8756 + type: Transform + - uid: 8842 + components: + - pos: -1.5,3.5 + parent: 8756 + type: Transform + - uid: 8843 + components: + - pos: -1.5,2.5 + parent: 8756 + type: Transform + - uid: 8844 + components: + - pos: -1.5,1.5 + parent: 8756 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8845 + components: + - pos: -1.5,0.5 + parent: 8756 + type: Transform + - uid: 8846 + components: + - pos: -2.5,0.5 + parent: 8756 + type: Transform + - uid: 8847 + components: + - pos: -2.5,-0.5 + parent: 8756 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8848 + components: + - pos: -2.5,-1.5 + parent: 8756 + type: Transform + - uid: 8849 + components: + - pos: -2.5,-2.5 + parent: 8756 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8850 + components: + - pos: -2.5,-3.5 + parent: 8756 + type: Transform + - uid: 8851 + components: + - pos: -2.5,-4.5 + parent: 8756 + type: Transform + - uid: 8852 + components: + - pos: -2.5,-5.5 + parent: 8756 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8853 + components: + - pos: -1.5,-5.5 + parent: 8756 + type: Transform + - uid: 8854 + components: + - pos: -0.5,-5.5 + parent: 8756 + type: Transform + - uid: 8855 + components: + - pos: 0.5,-5.5 + parent: 8756 + type: Transform + - uid: 8856 + components: + - pos: 1.5,-5.5 + parent: 8756 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9620 + components: + - pos: 19.5,28.5 + parent: 1 + type: Transform + - uid: 9718 + components: + - pos: -9.5,46.5 + parent: 1 + type: Transform + - uid: 9737 + components: + - pos: -22.5,-19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9738 + components: + - pos: -22.5,-18.5 + parent: 1 + type: Transform + - uid: 9739 + components: + - pos: -21.5,-18.5 + parent: 1 + type: Transform + - uid: 9740 + components: + - pos: -20.5,-18.5 + parent: 1 + type: Transform + - uid: 9741 + components: + - pos: -20.5,-17.5 + parent: 1 + type: Transform + - uid: 9742 + components: + - pos: -20.5,-16.5 + parent: 1 + type: Transform + - uid: 9743 + components: + - pos: -20.5,-15.5 + parent: 1 + type: Transform + - uid: 9744 + components: + - pos: -23.5,-18.5 + parent: 1 + type: Transform + - uid: 9745 + components: + - pos: -23.5,-17.5 + parent: 1 + type: Transform + - uid: 9746 + components: + - pos: -23.5,-16.5 + parent: 1 + type: Transform + - uid: 9747 + components: + - pos: -23.5,-15.5 + parent: 1 + type: Transform + - uid: 9748 + components: + - pos: -22.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9749 + components: + - pos: -22.5,-21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9750 + components: + - pos: -22.5,-22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9751 + components: + - pos: -22.5,-23.5 + parent: 1 + type: Transform + - uid: 9752 + components: + - pos: -21.5,-20.5 + parent: 1 + type: Transform + - uid: 9753 + components: + - pos: -20.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9754 + components: + - pos: -20.5,-21.5 + parent: 1 + type: Transform + - uid: 9755 + components: + - pos: -20.5,-22.5 + parent: 1 + type: Transform + - uid: 9756 + components: + - pos: -20.5,-23.5 + parent: 1 + type: Transform + - uid: 9757 + components: + - pos: -20.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9758 + components: + - pos: -23.5,-20.5 + parent: 1 + type: Transform + - uid: 9759 + components: + - pos: -24.5,-20.5 + parent: 1 + type: Transform + - uid: 9760 + components: + - pos: -24.5,-21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9761 + components: + - pos: -24.5,-22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9762 + components: + - pos: -24.5,-23.5 + parent: 1 + type: Transform + - uid: 9763 + components: + - pos: -24.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9776 + components: + - pos: -31.5,-13.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9777 + components: + - pos: -31.5,-14.5 + parent: 1 + type: Transform + - uid: 9778 + components: + - pos: -31.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9779 + components: + - pos: -31.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9780 + components: + - pos: -30.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9781 + components: + - pos: -29.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9782 + components: + - pos: -28.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9783 + components: + - pos: -27.5,-16.5 + parent: 1 + type: Transform + - uid: 9784 + components: + - pos: -26.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9785 + components: + - pos: -25.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9786 + components: + - pos: -25.5,-17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9787 + components: + - pos: -25.5,-18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9788 + components: + - pos: -29.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9789 + components: + - pos: -29.5,-14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9790 + components: + - pos: -28.5,-14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9791 + components: + - pos: -27.5,-14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9792 + components: + - pos: -27.5,-13.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9793 + components: + - pos: -27.5,-12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9794 + components: + - pos: -27.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9795 + components: + - pos: -32.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9796 + components: + - pos: -33.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9797 + components: + - pos: -34.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9798 + components: + - pos: -35.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9799 + components: + - pos: -35.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9800 + components: + - pos: -35.5,-14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9801 + components: + - pos: -35.5,-13.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9802 + components: + - pos: -35.5,-12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9803 + components: + - pos: -35.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9804 + components: + - pos: -35.5,-10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9805 + components: + - pos: -35.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9806 + components: + - pos: -35.5,-8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9807 + components: + - pos: -35.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9808 + components: + - pos: -36.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9809 + components: + - pos: -37.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9810 + components: + - pos: -38.5,-11.5 + parent: 1 + type: Transform + - uid: 9811 + components: + - pos: -39.5,-11.5 + parent: 1 + type: Transform + - uid: 9812 + components: + - pos: -40.5,-11.5 + parent: 1 + type: Transform + - uid: 9813 + components: + - pos: -40.5,-10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9814 + components: + - pos: -40.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9818 + components: + - pos: -44.5,-9.5 + parent: 1 + type: Transform + - uid: 9819 + components: + - pos: -45.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9820 + components: + - pos: -46.5,-9.5 + parent: 1 + type: Transform + - uid: 9821 + components: + - pos: -47.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9822 + components: + - pos: -48.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9823 + components: + - pos: -49.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9824 + components: + - pos: -50.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9825 + components: + - pos: -51.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9826 + components: + - pos: -52.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9827 + components: + - pos: -49.5,-10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9828 + components: + - pos: -49.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9829 + components: + - pos: -47.5,-10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9830 + components: + - pos: -47.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9831 + components: + - pos: -50.5,-8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9832 + components: + - pos: -50.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9833 + components: + - pos: -51.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9834 + components: + - pos: -52.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9835 + components: + - pos: -49.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9836 + components: + - pos: -48.5,-7.5 + parent: 1 + type: Transform + - uid: 9837 + components: + - pos: -47.5,-7.5 + parent: 1 + type: Transform + - uid: 9838 + components: + - pos: -46.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9839 + components: + - pos: -45.5,-7.5 + parent: 1 + type: Transform + - uid: 9840 + components: + - pos: -45.5,-8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9990 + components: + - pos: -29.5,-18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9991 + components: + - pos: -29.5,-19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9992 + components: + - pos: -29.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9993 + components: + - pos: -29.5,-21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9994 + components: + - pos: -29.5,-22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9995 + components: + - pos: -29.5,-23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9996 + components: + - pos: -30.5,-23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9997 + components: + - pos: -31.5,-23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9998 + components: + - pos: -31.5,-22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9999 + components: + - pos: -31.5,-21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10000 + components: + - pos: -31.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10001 + components: + - pos: -31.5,-19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10002 + components: + - pos: -32.5,-19.5 + parent: 1 + type: Transform + - uid: 10003 + components: + - pos: -33.5,-19.5 + parent: 1 + type: Transform + - uid: 10004 + components: + - pos: -34.5,-19.5 + parent: 1 + type: Transform + - uid: 10005 + components: + - pos: -28.5,-22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10006 + components: + - pos: -27.5,-22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10007 + components: + - pos: -26.5,-22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10008 + components: + - pos: -29.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10009 + components: + - pos: -29.5,-25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10010 + components: + - pos: -29.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10011 + components: + - pos: -28.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10012 + components: + - pos: -27.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10013 + components: + - pos: -26.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10014 + components: + - pos: -25.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10015 + components: + - pos: -24.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10016 + components: + - pos: -23.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10017 + components: + - pos: -22.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10018 + components: + - pos: -21.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10019 + components: + - pos: -20.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10020 + components: + - pos: -20.5,-27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10021 + components: + - pos: -20.5,-28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10022 + components: + - pos: -20.5,-29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10023 + components: + - pos: -20.5,-30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10024 + components: + - pos: -20.5,-31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10025 + components: + - pos: -19.5,-31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10026 + components: + - pos: -19.5,-32.5 + parent: 1 + type: Transform + - uid: 10027 + components: + - pos: -19.5,-33.5 + parent: 1 + type: Transform + - uid: 10028 + components: + - pos: -19.5,-34.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10029 + components: + - pos: -19.5,-35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10030 + components: + - pos: -19.5,-36.5 + parent: 1 + type: Transform + - uid: 10031 + components: + - pos: -19.5,-18.5 + parent: 1 + type: Transform + - uid: 10032 + components: + - pos: -18.5,-18.5 + parent: 1 + type: Transform + - uid: 10033 + components: + - pos: -17.5,-18.5 + parent: 1 + type: Transform + - uid: 10034 + components: + - pos: -16.5,-18.5 + parent: 1 + type: Transform + - uid: 10035 + components: + - pos: -16.5,-19.5 + parent: 1 + type: Transform + - uid: 10036 + components: + - pos: -16.5,-20.5 + parent: 1 + type: Transform + - uid: 10037 + components: + - pos: -16.5,-21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10038 + components: + - pos: -16.5,-22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10039 + components: + - pos: -16.5,-23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10040 + components: + - pos: -16.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10041 + components: + - pos: -17.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10042 + components: + - pos: -18.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10043 + components: + - pos: -18.5,-25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10044 + components: + - pos: -18.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10045 + components: + - pos: -18.5,-27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10046 + components: + - pos: -18.5,-28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10047 + components: + - pos: -18.5,-29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10049 + components: + - pos: -17.5,-31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10050 + components: + - pos: -16.5,-31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10051 + components: + - pos: -16.5,-32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10052 + components: + - pos: -16.5,-33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10053 + components: + - pos: -16.5,-34.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10054 + components: + - pos: -16.5,-35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10055 + components: + - pos: -16.5,-36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10056 + components: + - pos: -16.5,-37.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10057 + components: + - pos: -16.5,-38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10058 + components: + - pos: -16.5,-39.5 + parent: 1 + type: Transform + - uid: 10059 + components: + - pos: -16.5,-40.5 + parent: 1 + type: Transform + - uid: 10164 + components: + - pos: 29.5,-14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10165 + components: + - pos: 29.5,-13.5 + parent: 1 + type: Transform + - uid: 10166 + components: + - pos: 29.5,-12.5 + parent: 1 + type: Transform + - uid: 10167 + components: + - pos: 29.5,-11.5 + parent: 1 + type: Transform + - uid: 10168 + components: + - pos: 28.5,-11.5 + parent: 1 + type: Transform + - uid: 10169 + components: + - pos: 27.5,-11.5 + parent: 1 + type: Transform + - uid: 10170 + components: + - pos: 26.5,-11.5 + parent: 1 + type: Transform + - uid: 10171 + components: + - pos: 30.5,-11.5 + parent: 1 + type: Transform + - uid: 10172 + components: + - pos: 29.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10173 + components: + - pos: 28.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10174 + components: + - pos: 27.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10175 + components: + - pos: 26.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10176 + components: + - pos: 25.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10177 + components: + - pos: 24.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10178 + components: + - pos: 24.5,-14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10179 + components: + - pos: 24.5,-13.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10180 + components: + - pos: 24.5,-12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10181 + components: + - pos: 24.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10182 + components: + - pos: 24.5,-17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10183 + components: + - pos: 24.5,-18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10184 + components: + - pos: 24.5,-19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10185 + components: + - pos: 24.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10186 + components: + - pos: 24.5,-21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10187 + components: + - pos: 24.5,-22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10188 + components: + - pos: 24.5,-23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10189 + components: + - pos: 24.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10190 + components: + - pos: 23.5,-24.5 + parent: 1 + type: Transform + - uid: 10191 + components: + - pos: 22.5,-24.5 + parent: 1 + type: Transform + - uid: 10192 + components: + - pos: 22.5,-25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10193 + components: + - pos: 22.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10194 + components: + - pos: 22.5,-27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10195 + components: + - pos: 21.5,-27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10196 + components: + - pos: 21.5,-28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10197 + components: + - pos: 21.5,-29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10198 + components: + - pos: 20.5,-29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10199 + components: + - pos: 19.5,-29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10200 + components: + - pos: 18.5,-29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10201 + components: + - pos: 17.5,-29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10202 + components: + - pos: 16.5,-29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10203 + components: + - pos: 15.5,-29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10204 + components: + - pos: 15.5,-30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10205 + components: + - pos: 15.5,-31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10206 + components: + - pos: 15.5,-32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10207 + components: + - pos: 15.5,-33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10208 + components: + - pos: 15.5,-34.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10209 + components: + - pos: 15.5,-35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10210 + components: + - pos: 16.5,-34.5 + parent: 1 + type: Transform + - uid: 10211 + components: + - pos: 17.5,-34.5 + parent: 1 + type: Transform + - uid: 10212 + components: + - pos: 18.5,-34.5 + parent: 1 + type: Transform + - uid: 10213 + components: + - pos: 19.5,-34.5 + parent: 1 + type: Transform + - uid: 10214 + components: + - pos: 19.5,-35.5 + parent: 1 + type: Transform + - uid: 10215 + components: + - pos: 19.5,-36.5 + parent: 1 + type: Transform + - uid: 10216 + components: + - pos: 19.5,-37.5 + parent: 1 + type: Transform + - uid: 10217 + components: + - pos: 19.5,-38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10218 + components: + - pos: 15.5,-36.5 + parent: 1 + type: Transform + - uid: 10219 + components: + - pos: 15.5,-37.5 + parent: 1 + type: Transform + - uid: 10220 + components: + - pos: 15.5,-38.5 + parent: 1 + type: Transform + - uid: 10221 + components: + - pos: 15.5,-39.5 + parent: 1 + type: Transform + - uid: 10222 + components: + - pos: 15.5,-40.5 + parent: 1 + type: Transform + - uid: 10223 + components: + - pos: 30.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10224 + components: + - pos: 31.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10225 + components: + - pos: 32.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10226 + components: + - pos: 32.5,-14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10227 + components: + - pos: 32.5,-13.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10228 + components: + - pos: 32.5,-12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10229 + components: + - pos: 32.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10230 + components: + - pos: 33.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10231 + components: + - pos: 34.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10232 + components: + - pos: 35.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10233 + components: + - pos: 36.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10234 + components: + - pos: 37.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10235 + components: + - pos: 38.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10236 + components: + - pos: 39.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10237 + components: + - pos: 30.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10238 + components: + - pos: 30.5,-17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10239 + components: + - pos: 30.5,-18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10240 + components: + - pos: 30.5,-19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10241 + components: + - pos: 30.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10242 + components: + - pos: 30.5,-21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10243 + components: + - pos: 30.5,-22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10244 + components: + - pos: 30.5,-23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10245 + components: + - pos: 30.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10246 + components: + - pos: 29.5,-19.5 + parent: 1 + type: Transform + - uid: 10247 + components: + - pos: 28.5,-19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10248 + components: + - pos: 27.5,-19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10249 + components: + - pos: 26.5,-19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10250 + components: + - pos: 29.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10251 + components: + - pos: 28.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10252 + components: + - pos: 27.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10253 + components: + - pos: 26.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10254 + components: + - pos: 25.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10255 + components: + - pos: 31.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10256 + components: + - pos: 32.5,-20.5 + parent: 1 + type: Transform + - uid: 10257 + components: + - pos: 33.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10258 + components: + - pos: 34.5,-20.5 + parent: 1 + type: Transform + - uid: 10259 + components: + - pos: 35.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10261 + components: + - pos: 37.5,-13.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10262 + components: + - pos: 37.5,-14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10263 + components: + - pos: 37.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10264 + components: + - pos: 37.5,-16.5 + parent: 1 + type: Transform + - uid: 10265 + components: + - pos: 37.5,-17.5 + parent: 1 + type: Transform + - uid: 10266 + components: + - pos: 36.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10267 + components: + - pos: 35.5,-15.5 + parent: 1 + type: Transform + - uid: 10268 + components: + - pos: 34.5,-19.5 + parent: 1 + type: Transform + - uid: 10269 + components: + - pos: 34.5,-18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10270 + components: + - pos: 31.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10271 + components: + - pos: 32.5,-24.5 + parent: 1 + type: Transform + - uid: 10309 + components: + - pos: -41.5,7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10310 + components: + - pos: -42.5,7.5 + parent: 1 + type: Transform + - uid: 10311 + components: + - pos: -43.5,7.5 + parent: 1 + type: Transform + - uid: 10312 + components: + - pos: -44.5,7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10313 + components: + - pos: -44.5,8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10314 + components: + - pos: -44.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10315 + components: + - pos: -43.5,9.5 + parent: 1 + type: Transform + - uid: 10316 + components: + - pos: -43.5,10.5 + parent: 1 + type: Transform + - uid: 10317 + components: + - pos: -43.5,11.5 + parent: 1 + type: Transform + - uid: 10318 + components: + - pos: -42.5,11.5 + parent: 1 + type: Transform + - uid: 10319 + components: + - pos: -40.5,7.5 + parent: 1 + type: Transform + - uid: 10320 + components: + - pos: -39.5,7.5 + parent: 1 + type: Transform + - uid: 10321 + components: + - pos: -38.5,7.5 + parent: 1 + type: Transform + - uid: 10322 + components: + - pos: -37.5,7.5 + parent: 1 + type: Transform + - uid: 10323 + components: + - pos: -36.5,7.5 + parent: 1 + type: Transform + - uid: 10324 + components: + - pos: -35.5,7.5 + parent: 1 + type: Transform + - uid: 10325 + components: + - pos: -34.5,7.5 + parent: 1 + type: Transform + - uid: 10326 + components: + - pos: -33.5,7.5 + parent: 1 + type: Transform + - uid: 10327 + components: + - pos: -33.5,6.5 + parent: 1 + type: Transform + - uid: 10328 + components: + - pos: -33.5,5.5 + parent: 1 + type: Transform + - uid: 10329 + components: + - pos: -33.5,4.5 + parent: 1 + type: Transform + - uid: 10330 + components: + - pos: -34.5,4.5 + parent: 1 + type: Transform + - uid: 10331 + components: + - pos: -35.5,4.5 + parent: 1 + type: Transform + - uid: 10332 + components: + - pos: -36.5,4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10333 + components: + - pos: -37.5,4.5 + parent: 1 + type: Transform + - uid: 10334 + components: + - pos: -38.5,4.5 + parent: 1 + type: Transform + - uid: 10335 + components: + - pos: -39.5,4.5 + parent: 1 + type: Transform + - uid: 10336 + components: + - pos: -40.5,4.5 + parent: 1 + type: Transform + - uid: 10337 + components: + - pos: -40.5,5.5 + parent: 1 + type: Transform + - uid: 10338 + components: + - pos: -40.5,6.5 + parent: 1 + type: Transform + - uid: 10339 + components: + - pos: -40.5,3.5 + parent: 1 + type: Transform + - uid: 10340 + components: + - pos: -40.5,2.5 + parent: 1 + type: Transform + - uid: 10341 + components: + - pos: -40.5,1.5 + parent: 1 + type: Transform + - uid: 10342 + components: + - pos: -40.5,0.5 + parent: 1 + type: Transform + - uid: 10343 + components: + - pos: -40.5,-0.5 + parent: 1 + type: Transform + - uid: 10344 + components: + - pos: -40.5,-1.5 + parent: 1 + type: Transform + - uid: 10345 + components: + - pos: -40.5,-2.5 + parent: 1 + type: Transform + - uid: 10346 + components: + - pos: -40.5,-3.5 + parent: 1 + type: Transform + - uid: 10347 + components: + - pos: -40.5,-4.5 + parent: 1 + type: Transform + - uid: 10348 + components: + - pos: -40.5,-5.5 + parent: 1 + type: Transform + - uid: 10349 + components: + - pos: -40.5,-6.5 + parent: 1 + type: Transform + - uid: 10350 + components: + - pos: -40.5,-7.5 + parent: 1 + type: Transform + - uid: 10351 + components: + - pos: -39.5,-1.5 + parent: 1 + type: Transform + - uid: 10352 + components: + - pos: -38.5,-1.5 + parent: 1 + type: Transform + - uid: 10353 + components: + - pos: -37.5,-1.5 + parent: 1 + type: Transform + - uid: 10354 + components: + - pos: -36.5,-1.5 + parent: 1 + type: Transform + - uid: 10355 + components: + - pos: -35.5,-1.5 + parent: 1 + type: Transform + - uid: 10356 + components: + - pos: -34.5,-1.5 + parent: 1 + type: Transform + - uid: 10357 + components: + - pos: -38.5,2.5 + parent: 1 + type: Transform + - uid: 10358 + components: + - pos: -37.5,2.5 + parent: 1 + type: Transform + - uid: 10359 + components: + - pos: -36.5,2.5 + parent: 1 + type: Transform + - uid: 10360 + components: + - pos: -35.5,2.5 + parent: 1 + type: Transform + - uid: 10361 + components: + - pos: -34.5,2.5 + parent: 1 + type: Transform + - uid: 10362 + components: + - pos: -39.5,2.5 + parent: 1 + type: Transform + - uid: 10363 + components: + - pos: -41.5,2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10364 + components: + - pos: -42.5,2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10365 + components: + - pos: -43.5,2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10366 + components: + - pos: -42.5,4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10367 + components: + - pos: -43.5,4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10368 + components: + - pos: -41.5,4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10369 + components: + - pos: -41.5,-1.5 + parent: 1 + type: Transform + - uid: 10370 + components: + - pos: -42.5,-1.5 + parent: 1 + type: Transform + - uid: 10371 + components: + - pos: -43.5,-1.5 + parent: 1 + type: Transform + - uid: 10372 + components: + - pos: -41.5,-5.5 + parent: 1 + type: Transform + - uid: 10373 + components: + - pos: -42.5,-5.5 + parent: 1 + type: Transform + - uid: 10374 + components: + - pos: -43.5,-5.5 + parent: 1 + type: Transform + - uid: 10375 + components: + - pos: -34.5,-2.5 + parent: 1 + type: Transform + - uid: 10376 + components: + - pos: -34.5,-3.5 + parent: 1 + type: Transform + - uid: 10377 + components: + - pos: -34.5,-4.5 + parent: 1 + type: Transform + - uid: 10378 + components: + - pos: -34.5,-5.5 + parent: 1 + type: Transform + - uid: 10379 + components: + - pos: -39.5,8.5 + parent: 1 + type: Transform + - uid: 10380 + components: + - pos: -39.5,9.5 + parent: 1 + type: Transform + - uid: 10381 + components: + - pos: -39.5,10.5 + parent: 1 + type: Transform + - uid: 10382 + components: + - pos: -39.5,11.5 + parent: 1 + type: Transform + - uid: 10443 + components: + - pos: 16.5,-21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10444 + components: + - pos: 17.5,-21.5 + parent: 1 + type: Transform + - uid: 10445 + components: + - pos: 17.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10446 + components: + - pos: 18.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10447 + components: + - pos: 17.5,-22.5 + parent: 1 + type: Transform + - uid: 10448 + components: + - pos: 17.5,-23.5 + parent: 1 + type: Transform + - uid: 10449 + components: + - pos: 17.5,-24.5 + parent: 1 + type: Transform + - uid: 10450 + components: + - pos: 17.5,-25.5 + parent: 1 + type: Transform + - uid: 10451 + components: + - pos: 17.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10452 + components: + - pos: 18.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10453 + components: + - pos: 18.5,-23.5 + parent: 1 + type: Transform + - uid: 10454 + components: + - pos: 19.5,-23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10455 + components: + - pos: 19.5,-22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10456 + components: + - pos: 19.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10457 + components: + - pos: 16.5,-23.5 + parent: 1 + type: Transform + - uid: 10470 + components: + - pos: 5.5,-31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10471 + components: + - pos: 5.5,-30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10472 + components: + - pos: 5.5,-29.5 + parent: 1 + type: Transform + - uid: 10473 + components: + - pos: 5.5,-28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10474 + components: + - pos: 6.5,-28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10475 + components: + - pos: 7.5,-28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10476 + components: + - pos: 8.5,-28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10477 + components: + - pos: 8.5,-29.5 + parent: 1 + type: Transform + - uid: 10478 + components: + - pos: 8.5,-30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10479 + components: + - pos: 7.5,-30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10480 + components: + - pos: 7.5,-31.5 + parent: 1 + type: Transform + - uid: 10481 + components: + - pos: 7.5,-32.5 + parent: 1 + type: Transform + - uid: 10482 + components: + - pos: 7.5,-33.5 + parent: 1 + type: Transform + - uid: 10483 + components: + - pos: 7.5,-34.5 + parent: 1 + type: Transform + - uid: 10484 + components: + - pos: 7.5,-35.5 + parent: 1 + type: Transform + - uid: 10485 + components: + - pos: 7.5,-36.5 + parent: 1 + type: Transform + - uid: 10486 + components: + - pos: 7.5,-37.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10487 + components: + - pos: 7.5,-38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10488 + components: + - pos: 7.5,-39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10489 + components: + - pos: 7.5,-40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10490 + components: + - pos: 6.5,-36.5 + parent: 1 + type: Transform + - uid: 10491 + components: + - pos: 5.5,-36.5 + parent: 1 + type: Transform + - uid: 10492 + components: + - pos: 4.5,-36.5 + parent: 1 + type: Transform + - uid: 10493 + components: + - pos: 4.5,-37.5 + parent: 1 + type: Transform + - uid: 10494 + components: + - pos: 4.5,-38.5 + parent: 1 + type: Transform + - uid: 10495 + components: + - pos: 4.5,-39.5 + parent: 1 + type: Transform + - uid: 10496 + components: + - pos: 4.5,-40.5 + parent: 1 + type: Transform + - uid: 10497 + components: + - pos: 4.5,-41.5 + parent: 1 + type: Transform + - uid: 10498 + components: + - pos: 8.5,-36.5 + parent: 1 + type: Transform + - uid: 10499 + components: + - pos: 9.5,-36.5 + parent: 1 + type: Transform + - uid: 10500 + components: + - pos: 9.5,-37.5 + parent: 1 + type: Transform + - uid: 10501 + components: + - pos: 9.5,-38.5 + parent: 1 + type: Transform + - uid: 10502 + components: + - pos: 9.5,-39.5 + parent: 1 + type: Transform + - uid: 10503 + components: + - pos: 9.5,-40.5 + parent: 1 + type: Transform + - uid: 10504 + components: + - pos: 9.5,-41.5 + parent: 1 + type: Transform + - uid: 10505 + components: + - pos: 8.5,-34.5 + parent: 1 + type: Transform + - uid: 10506 + components: + - pos: 9.5,-34.5 + parent: 1 + type: Transform + - uid: 10507 + components: + - pos: 10.5,-34.5 + parent: 1 + type: Transform + - uid: 10508 + components: + - pos: 11.5,-34.5 + parent: 1 + type: Transform + - uid: 10509 + components: + - pos: 12.5,-34.5 + parent: 1 + type: Transform + - uid: 10510 + components: + - pos: 12.5,-35.5 + parent: 1 + type: Transform + - uid: 10511 + components: + - pos: 12.5,-36.5 + parent: 1 + type: Transform + - uid: 10512 + components: + - pos: 12.5,-37.5 + parent: 1 + type: Transform + - uid: 10513 + components: + - pos: 12.5,-38.5 + parent: 1 + type: Transform + - uid: 10514 + components: + - pos: 12.5,-39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10515 + components: + - pos: 12.5,-40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10516 + components: + - pos: 12.5,-41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10517 + components: + - pos: 12.5,-42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10518 + components: + - pos: 12.5,-43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10519 + components: + - pos: 12.5,-44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10520 + components: + - pos: 12.5,-45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10521 + components: + - pos: 12.5,-46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10522 + components: + - pos: 12.5,-47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10523 + components: + - pos: 13.5,-34.5 + parent: 1 + type: Transform + - uid: 10524 + components: + - pos: 13.5,-33.5 + parent: 1 + type: Transform + - uid: 10525 + components: + - pos: 13.5,-32.5 + parent: 1 + type: Transform + - uid: 10526 + components: + - pos: 13.5,-31.5 + parent: 1 + type: Transform + - uid: 10527 + components: + - pos: 13.5,-30.5 + parent: 1 + type: Transform + - uid: 10528 + components: + - pos: 13.5,-29.5 + parent: 1 + type: Transform + - uid: 10529 + components: + - pos: 12.5,-29.5 + parent: 1 + type: Transform + - uid: 10530 + components: + - pos: 11.5,-29.5 + parent: 1 + type: Transform + - uid: 10531 + components: + - pos: 10.5,-29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10532 + components: + - pos: 9.5,-29.5 + parent: 1 + type: Transform + - uid: 10533 + components: + - pos: 5.5,-29.5 + parent: 1 + type: Transform + - uid: 10534 + components: + - pos: 4.5,-30.5 + parent: 1 + type: Transform + - uid: 10535 + components: + - pos: 4.5,-29.5 + parent: 1 + type: Transform + - uid: 10536 + components: + - pos: 4.5,-28.5 + parent: 1 + type: Transform + - uid: 10537 + components: + - pos: 5.5,-32.5 + parent: 1 + type: Transform + - uid: 10538 + components: + - pos: 5.5,-33.5 + parent: 1 + type: Transform + - uid: 10539 + components: + - pos: 5.5,-34.5 + parent: 1 + type: Transform + - uid: 10540 + components: + - pos: 6.5,-34.5 + parent: 1 + type: Transform + - uid: 10549 + components: + - pos: 10.5,-19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10550 + components: + - pos: 10.5,-20.5 + parent: 1 + type: Transform + - uid: 10551 + components: + - pos: 10.5,-21.5 + parent: 1 + type: Transform + - uid: 10552 + components: + - pos: 10.5,-22.5 + parent: 1 + type: Transform + - uid: 10553 + components: + - pos: 10.5,-23.5 + parent: 1 + type: Transform + - uid: 10554 + components: + - pos: 10.5,-24.5 + parent: 1 + type: Transform + - uid: 10555 + components: + - pos: 10.5,-25.5 + parent: 1 + type: Transform + - uid: 10556 + components: + - pos: 10.5,-26.5 + parent: 1 + type: Transform + - uid: 10557 + components: + - pos: 11.5,-26.5 + parent: 1 + type: Transform + - uid: 10558 + components: + - pos: 12.5,-26.5 + parent: 1 + type: Transform + - uid: 10559 + components: + - pos: 13.5,-26.5 + parent: 1 + type: Transform + - uid: 10560 + components: + - pos: 13.5,-25.5 + parent: 1 + type: Transform + - uid: 10561 + components: + - pos: 13.5,-24.5 + parent: 1 + type: Transform + - uid: 10562 + components: + - pos: 13.5,-23.5 + parent: 1 + type: Transform + - uid: 10563 + components: + - pos: 13.5,-22.5 + parent: 1 + type: Transform + - uid: 10564 + components: + - pos: 13.5,-21.5 + parent: 1 + type: Transform + - uid: 10565 + components: + - pos: 13.5,-20.5 + parent: 1 + type: Transform + - uid: 10566 + components: + - pos: 12.5,-20.5 + parent: 1 + type: Transform + - uid: 10567 + components: + - pos: 12.5,-19.5 + parent: 1 + type: Transform + - uid: 10568 + components: + - pos: 12.5,-18.5 + parent: 1 + type: Transform + - uid: 10569 + components: + - pos: 11.5,-18.5 + parent: 1 + type: Transform + - uid: 10570 + components: + - pos: 10.5,-18.5 + parent: 1 + type: Transform + - uid: 10571 + components: + - pos: 10.5,-19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10572 + components: + - pos: 9.5,-20.5 + parent: 1 + type: Transform + - uid: 10573 + components: + - pos: 8.5,-20.5 + parent: 1 + type: Transform + - uid: 10574 + components: + - pos: 7.5,-20.5 + parent: 1 + type: Transform + - uid: 10575 + components: + - pos: 6.5,-20.5 + parent: 1 + type: Transform + - uid: 10576 + components: + - pos: 5.5,-20.5 + parent: 1 + type: Transform + - uid: 10577 + components: + - pos: 4.5,-20.5 + parent: 1 + type: Transform + - uid: 10578 + components: + - pos: 4.5,-19.5 + parent: 1 + type: Transform + - uid: 10579 + components: + - pos: 4.5,-18.5 + parent: 1 + type: Transform + - uid: 10580 + components: + - pos: 5.5,-18.5 + parent: 1 + type: Transform + - uid: 10581 + components: + - pos: 6.5,-18.5 + parent: 1 + type: Transform + - uid: 10582 + components: + - pos: 7.5,-18.5 + parent: 1 + type: Transform + - uid: 10583 + components: + - pos: 7.5,-19.5 + parent: 1 + type: Transform + - uid: 10584 + components: + - pos: 9.5,-24.5 + parent: 1 + type: Transform + - uid: 10585 + components: + - pos: 8.5,-24.5 + parent: 1 + type: Transform + - uid: 10586 + components: + - pos: 7.5,-24.5 + parent: 1 + type: Transform + - uid: 10587 + components: + - pos: 6.5,-24.5 + parent: 1 + type: Transform + - uid: 10588 + components: + - pos: 5.5,-24.5 + parent: 1 + type: Transform + - uid: 10589 + components: + - pos: 4.5,-24.5 + parent: 1 + type: Transform + - uid: 10590 + components: + - pos: 4.5,-25.5 + parent: 1 + type: Transform + - uid: 10591 + components: + - pos: 4.5,-26.5 + parent: 1 + type: Transform + - uid: 10592 + components: + - pos: 5.5,-26.5 + parent: 1 + type: Transform + - uid: 10593 + components: + - pos: 6.5,-26.5 + parent: 1 + type: Transform + - uid: 10594 + components: + - pos: 7.5,-26.5 + parent: 1 + type: Transform + - uid: 10596 + components: + - pos: 6.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10597 + components: + - pos: 6.5,-15.5 + parent: 1 + type: Transform + - uid: 10598 + components: + - pos: 6.5,-14.5 + parent: 1 + type: Transform + - uid: 10599 + components: + - pos: 6.5,-13.5 + parent: 1 + type: Transform + - uid: 10600 + components: + - pos: 6.5,-12.5 + parent: 1 + type: Transform + - uid: 10601 + components: + - pos: 6.5,-11.5 + parent: 1 + type: Transform + - uid: 10602 + components: + - pos: 5.5,-12.5 + parent: 1 + type: Transform + - uid: 10603 + components: + - pos: 4.5,-12.5 + parent: 1 + type: Transform + - uid: 10604 + components: + - pos: 3.5,-12.5 + parent: 1 + type: Transform + - uid: 10605 + components: + - pos: 2.5,-12.5 + parent: 1 + type: Transform + - uid: 10606 + components: + - pos: 1.5,-12.5 + parent: 1 + type: Transform + - uid: 10607 + components: + - pos: 0.5,-12.5 + parent: 1 + type: Transform + - uid: 10608 + components: + - pos: 7.5,-12.5 + parent: 1 + type: Transform + - uid: 10609 + components: + - pos: 8.5,-12.5 + parent: 1 + type: Transform + - uid: 10610 + components: + - pos: 9.5,-12.5 + parent: 1 + type: Transform + - uid: 10611 + components: + - pos: 10.5,-12.5 + parent: 1 + type: Transform + - uid: 10612 + components: + - pos: 11.5,-12.5 + parent: 1 + type: Transform + - uid: 10613 + components: + - pos: 12.5,-12.5 + parent: 1 + type: Transform + - uid: 10614 + components: + - pos: 13.5,-12.5 + parent: 1 + type: Transform + - uid: 10615 + components: + - pos: 13.5,-13.5 + parent: 1 + type: Transform + - uid: 10616 + components: + - pos: 13.5,-14.5 + parent: 1 + type: Transform + - uid: 10617 + components: + - pos: 13.5,-15.5 + parent: 1 + type: Transform + - uid: 10618 + components: + - pos: 12.5,-15.5 + parent: 1 + type: Transform + - uid: 10619 + components: + - pos: 11.5,-15.5 + parent: 1 + type: Transform + - uid: 10620 + components: + - pos: 10.5,-15.5 + parent: 1 + type: Transform + - uid: 10621 + components: + - pos: 9.5,-15.5 + parent: 1 + type: Transform + - uid: 10622 + components: + - pos: 8.5,-15.5 + parent: 1 + type: Transform + - uid: 10623 + components: + - pos: 7.5,-15.5 + parent: 1 + type: Transform + - uid: 10624 + components: + - pos: 6.5,-15.5 + parent: 1 + type: Transform + - uid: 10625 + components: + - pos: 5.5,-15.5 + parent: 1 + type: Transform + - uid: 10626 + components: + - pos: 4.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10627 + components: + - pos: 3.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10628 + components: + - pos: 2.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10629 + components: + - pos: 1.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10630 + components: + - pos: 0.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10648 + components: + - pos: 21.5,-11.5 + parent: 1 + type: Transform + - uid: 10649 + components: + - pos: 22.5,-11.5 + parent: 1 + type: Transform + - uid: 10651 + components: + - pos: 20.5,-11.5 + parent: 1 + type: Transform + - uid: 10652 + components: + - pos: 19.5,-11.5 + parent: 1 + type: Transform + - uid: 10653 + components: + - pos: 19.5,-12.5 + parent: 1 + type: Transform + - uid: 10654 + components: + - pos: 19.5,-13.5 + parent: 1 + type: Transform + - uid: 10655 + components: + - pos: 19.5,-14.5 + parent: 1 + type: Transform + - uid: 10656 + components: + - pos: 19.5,-15.5 + parent: 1 + type: Transform + - uid: 10657 + components: + - pos: 19.5,-16.5 + parent: 1 + type: Transform + - uid: 10658 + components: + - pos: 19.5,-17.5 + parent: 1 + type: Transform + - uid: 10659 + components: + - pos: 19.5,-18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10660 + components: + - pos: 18.5,-18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10661 + components: + - pos: 20.5,-15.5 + parent: 1 + type: Transform + - uid: 10665 + components: + - pos: 18.5,-15.5 + parent: 1 + type: Transform + - uid: 10666 + components: + - pos: 17.5,-15.5 + parent: 1 + type: Transform + - uid: 10724 + components: + - pos: -11.5,-38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10725 + components: + - pos: -11.5,-37.5 + parent: 1 + type: Transform + - uid: 10726 + components: + - pos: -12.5,-37.5 + parent: 1 + type: Transform + - uid: 10727 + components: + - pos: -13.5,-37.5 + parent: 1 + type: Transform + - uid: 10728 + components: + - pos: -13.5,-38.5 + parent: 1 + type: Transform + - uid: 10729 + components: + - pos: -13.5,-39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10730 + components: + - pos: -13.5,-40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10731 + components: + - pos: -13.5,-41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10732 + components: + - pos: -13.5,-42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10733 + components: + - pos: -13.5,-43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10734 + components: + - pos: -13.5,-44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10735 + components: + - pos: -13.5,-45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10736 + components: + - pos: -13.5,-46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10737 + components: + - pos: -13.5,-47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10738 + components: + - pos: -12.5,-47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10739 + components: + - pos: -11.5,-47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10740 + components: + - pos: -10.5,-47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10741 + components: + - pos: -9.5,-47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10742 + components: + - pos: -8.5,-47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10743 + components: + - pos: -7.5,-47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10744 + components: + - pos: -6.5,-47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10745 + components: + - pos: -5.5,-47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10746 + components: + - pos: -4.5,-47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10747 + components: + - pos: -3.5,-47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10748 + components: + - pos: -10.5,-38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10749 + components: + - pos: -9.5,-38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10750 + components: + - pos: -8.5,-38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10751 + components: + - pos: -7.5,-38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10752 + components: + - pos: -6.5,-38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10753 + components: + - pos: -5.5,-38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10754 + components: + - pos: -4.5,-38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10755 + components: + - pos: -4.5,-39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10756 + components: + - pos: -4.5,-40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10757 + components: + - pos: -4.5,-41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10758 + components: + - pos: -4.5,-37.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10759 + components: + - pos: -4.5,-36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10760 + components: + - pos: -4.5,-35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10761 + components: + - pos: -4.5,-34.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10762 + components: + - pos: -4.5,-33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10763 + components: + - pos: -4.5,-32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10764 + components: + - pos: -4.5,-31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10765 + components: + - pos: -4.5,-30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10766 + components: + - pos: -4.5,-29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10767 + components: + - pos: -4.5,-28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10768 + components: + - pos: -4.5,-27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10769 + components: + - pos: -4.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10770 + components: + - pos: -4.5,-25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10771 + components: + - pos: -4.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10772 + components: + - pos: -4.5,-23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10773 + components: + - pos: -4.5,-22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10774 + components: + - pos: -4.5,-21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10775 + components: + - pos: -4.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10776 + components: + - pos: -4.5,-19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10777 + components: + - pos: -4.5,-18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10778 + components: + - pos: -3.5,-18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10779 + components: + - pos: -2.5,-18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10780 + components: + - pos: -1.5,-18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10781 + components: + - pos: -0.5,-18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10782 + components: + - pos: 0.5,-18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10783 + components: + - pos: 1.5,-18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10784 + components: + - pos: 1.5,-19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10785 + components: + - pos: 1.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10786 + components: + - pos: 1.5,-21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10787 + components: + - pos: 1.5,-22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10788 + components: + - pos: 1.5,-23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10789 + components: + - pos: 1.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10790 + components: + - pos: 1.5,-25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10791 + components: + - pos: 1.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10792 + components: + - pos: 1.5,-27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10793 + components: + - pos: 1.5,-28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10794 + components: + - pos: 1.5,-29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10795 + components: + - pos: 1.5,-30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10796 + components: + - pos: 1.5,-31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10797 + components: + - pos: 1.5,-32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10798 + components: + - pos: 1.5,-33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10799 + components: + - pos: 1.5,-34.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10800 + components: + - pos: 1.5,-35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10801 + components: + - pos: 1.5,-36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10802 + components: + - pos: 1.5,-37.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10803 + components: + - pos: 1.5,-38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10804 + components: + - pos: 1.5,-39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10805 + components: + - pos: 1.5,-40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10806 + components: + - pos: 1.5,-41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10807 + components: + - pos: 1.5,-42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10808 + components: + - pos: -4.5,-39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10809 + components: + - pos: -4.5,-41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10810 + components: + - pos: -4.5,-40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10811 + components: + - pos: -11.5,-36.5 + parent: 1 + type: Transform + - uid: 10812 + components: + - pos: -11.5,-35.5 + parent: 1 + type: Transform + - uid: 10813 + components: + - pos: -11.5,-34.5 + parent: 1 + type: Transform + - uid: 10814 + components: + - pos: -11.5,-33.5 + parent: 1 + type: Transform + - uid: 10815 + components: + - pos: -11.5,-32.5 + parent: 1 + type: Transform + - uid: 10816 + components: + - pos: -11.5,-31.5 + parent: 1 + type: Transform + - uid: 10817 + components: + - pos: -11.5,-30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10818 + components: + - pos: -11.5,-29.5 + parent: 1 + type: Transform + - uid: 10819 + components: + - pos: -11.5,-28.5 + parent: 1 + type: Transform + - uid: 10820 + components: + - pos: -11.5,-27.5 + parent: 1 + type: Transform + - uid: 10821 + components: + - pos: -11.5,-26.5 + parent: 1 + type: Transform + - uid: 10822 + components: + - pos: -11.5,-25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10823 + components: + - pos: -11.5,-24.5 + parent: 1 + type: Transform + - uid: 10824 + components: + - pos: -11.5,-23.5 + parent: 1 + type: Transform + - uid: 10825 + components: + - pos: -11.5,-22.5 + parent: 1 + type: Transform + - uid: 10826 + components: + - pos: -11.5,-21.5 + parent: 1 + type: Transform + - uid: 10827 + components: + - pos: -7.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10828 + components: + - pos: -7.5,-15.5 + parent: 1 + type: Transform + - uid: 10829 + components: + - pos: -7.5,-14.5 + parent: 1 + type: Transform + - uid: 10830 + components: + - pos: -7.5,-13.5 + parent: 1 + type: Transform + - uid: 10831 + components: + - pos: -7.5,-12.5 + parent: 1 + type: Transform + - uid: 10832 + components: + - pos: -7.5,-11.5 + parent: 1 + type: Transform + - uid: 10833 + components: + - pos: -6.5,-15.5 + parent: 1 + type: Transform + - uid: 10834 + components: + - pos: -5.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10835 + components: + - pos: -4.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10836 + components: + - pos: -3.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10837 + components: + - pos: -2.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10838 + components: + - pos: -1.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10839 + components: + - pos: -6.5,-12.5 + parent: 1 + type: Transform + - uid: 10840 + components: + - pos: -5.5,-12.5 + parent: 1 + type: Transform + - uid: 10841 + components: + - pos: -4.5,-12.5 + parent: 1 + type: Transform + - uid: 10842 + components: + - pos: -3.5,-12.5 + parent: 1 + type: Transform + - uid: 10843 + components: + - pos: -2.5,-12.5 + parent: 1 + type: Transform + - uid: 10844 + components: + - pos: -1.5,-12.5 + parent: 1 + type: Transform + - uid: 10845 + components: + - pos: -8.5,-12.5 + parent: 1 + type: Transform + - uid: 10846 + components: + - pos: -9.5,-12.5 + parent: 1 + type: Transform + - uid: 10847 + components: + - pos: -10.5,-12.5 + parent: 1 + type: Transform + - uid: 10848 + components: + - pos: -11.5,-12.5 + parent: 1 + type: Transform + - uid: 10849 + components: + - pos: -12.5,-12.5 + parent: 1 + type: Transform + - uid: 10850 + components: + - pos: -13.5,-12.5 + parent: 1 + type: Transform + - uid: 10851 + components: + - pos: -14.5,-12.5 + parent: 1 + type: Transform + - uid: 10852 + components: + - pos: -14.5,-13.5 + parent: 1 + type: Transform + - uid: 10853 + components: + - pos: -14.5,-14.5 + parent: 1 + type: Transform + - uid: 10854 + components: + - pos: -14.5,-15.5 + parent: 1 + type: Transform + - uid: 10855 + components: + - pos: -13.5,-15.5 + parent: 1 + type: Transform + - uid: 10856 + components: + - pos: -12.5,-15.5 + parent: 1 + type: Transform + - uid: 10857 + components: + - pos: -11.5,-15.5 + parent: 1 + type: Transform + - uid: 10858 + components: + - pos: -10.5,-15.5 + parent: 1 + type: Transform + - uid: 10859 + components: + - pos: -9.5,-15.5 + parent: 1 + type: Transform + - uid: 10860 + components: + - pos: -8.5,-15.5 + parent: 1 + type: Transform + - uid: 10861 + components: + - pos: -12.5,-16.5 + parent: 1 + type: Transform + - uid: 10862 + components: + - pos: -12.5,-17.5 + parent: 1 + type: Transform + - uid: 10863 + components: + - pos: -12.5,-18.5 + parent: 1 + type: Transform + - uid: 10864 + components: + - pos: -12.5,-19.5 + parent: 1 + type: Transform + - uid: 10865 + components: + - pos: -13.5,-18.5 + parent: 1 + type: Transform + - uid: 10866 + components: + - pos: -14.5,-18.5 + parent: 1 + type: Transform + - uid: 10867 + components: + - pos: -11.5,-18.5 + parent: 1 + type: Transform + - uid: 10868 + components: + - pos: -10.5,-18.5 + parent: 1 + type: Transform + - uid: 10971 + components: + - pos: -24.5,36.5 + parent: 1 + type: Transform + - uid: 10992 + components: + - pos: 44.5,-6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10993 + components: + - pos: 45.5,-6.5 + parent: 1 + type: Transform + - uid: 10994 + components: + - pos: 46.5,-6.5 + parent: 1 + type: Transform + - uid: 10995 + components: + - pos: 47.5,-6.5 + parent: 1 + type: Transform + - uid: 10996 + components: + - pos: 48.5,-6.5 + parent: 1 + type: Transform + - uid: 10997 + components: + - pos: 49.5,-6.5 + parent: 1 + type: Transform + - uid: 10998 + components: + - pos: 49.5,-7.5 + parent: 1 + type: Transform + - uid: 11001 + components: + - pos: 49.5,-8.5 + parent: 1 + type: Transform + - uid: 11002 + components: + - pos: 49.5,-9.5 + parent: 1 + type: Transform + - uid: 11005 + components: + - pos: 48.5,-9.5 + parent: 1 + type: Transform + - uid: 11006 + components: + - pos: 47.5,-9.5 + parent: 1 + type: Transform + - uid: 11007 + components: + - pos: 46.5,-9.5 + parent: 1 + type: Transform + - uid: 11008 + components: + - pos: 45.5,-9.5 + parent: 1 + type: Transform + - uid: 11009 + components: + - pos: 44.5,-9.5 + parent: 1 + type: Transform + - uid: 11010 + components: + - pos: 43.5,-9.5 + parent: 1 + type: Transform + - uid: 11011 + components: + - pos: 42.5,-9.5 + parent: 1 + type: Transform + - uid: 11012 + components: + - pos: 41.5,-9.5 + parent: 1 + type: Transform + - uid: 11013 + components: + - pos: 40.5,-9.5 + parent: 1 + type: Transform + - uid: 11014 + components: + - pos: 39.5,-9.5 + parent: 1 + type: Transform + - uid: 11015 + components: + - pos: 38.5,-9.5 + parent: 1 + type: Transform + - uid: 11016 + components: + - pos: 37.5,-9.5 + parent: 1 + type: Transform + - uid: 11017 + components: + - pos: 36.5,-9.5 + parent: 1 + type: Transform + - uid: 11018 + components: + - pos: 35.5,-9.5 + parent: 1 + type: Transform + - uid: 11019 + components: + - pos: 34.5,-9.5 + parent: 1 + type: Transform + - uid: 11020 + components: + - pos: 33.5,-9.5 + parent: 1 + type: Transform + - uid: 11021 + components: + - pos: 33.5,-8.5 + parent: 1 + type: Transform + - uid: 11022 + components: + - pos: 33.5,-7.5 + parent: 1 + type: Transform + - uid: 11023 + components: + - pos: 34.5,-7.5 + parent: 1 + type: Transform + - uid: 11024 + components: + - pos: 35.5,-7.5 + parent: 1 + type: Transform + - uid: 11025 + components: + - pos: 36.5,-7.5 + parent: 1 + type: Transform + - uid: 11026 + components: + - pos: 37.5,-7.5 + parent: 1 + type: Transform + - uid: 11027 + components: + - pos: 38.5,-7.5 + parent: 1 + type: Transform + - uid: 11028 + components: + - pos: 39.5,-7.5 + parent: 1 + type: Transform + - uid: 11029 + components: + - pos: 40.5,-7.5 + parent: 1 + type: Transform + - uid: 11030 + components: + - pos: 41.5,-7.5 + parent: 1 + type: Transform + - uid: 11031 + components: + - pos: 42.5,-7.5 + parent: 1 + type: Transform + - uid: 11032 + components: + - pos: 43.5,-7.5 + parent: 1 + type: Transform + - uid: 11033 + components: + - pos: 44.5,-7.5 + parent: 1 + type: Transform + - uid: 11110 + components: + - pos: 23.5,-3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11111 + components: + - pos: 22.5,-3.5 + parent: 1 + type: Transform + - uid: 11112 + components: + - pos: 21.5,-3.5 + parent: 1 + type: Transform + - uid: 11113 + components: + - pos: 20.5,-3.5 + parent: 1 + type: Transform + - uid: 11114 + components: + - pos: 19.5,-3.5 + parent: 1 + type: Transform + - uid: 11115 + components: + - pos: 18.5,-3.5 + parent: 1 + type: Transform + - uid: 11116 + components: + - pos: 17.5,-3.5 + parent: 1 + type: Transform + - uid: 11117 + components: + - pos: 16.5,-3.5 + parent: 1 + type: Transform + - uid: 11118 + components: + - pos: 18.5,-2.5 + parent: 1 + type: Transform + - uid: 11119 + components: + - pos: 18.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11120 + components: + - pos: 18.5,-0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11121 + components: + - pos: 18.5,0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11122 + components: + - pos: 18.5,1.5 + parent: 1 + type: Transform + - uid: 11123 + components: + - pos: 18.5,2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11124 + components: + - pos: 18.5,-4.5 + parent: 1 + type: Transform + - uid: 11125 + components: + - pos: 18.5,-5.5 + parent: 1 + type: Transform + - uid: 11126 + components: + - pos: 19.5,-5.5 + parent: 1 + type: Transform + - uid: 11127 + components: + - pos: 19.5,-6.5 + parent: 1 + type: Transform + - uid: 11128 + components: + - pos: 19.5,-7.5 + parent: 1 + type: Transform + - uid: 11129 + components: + - pos: 19.5,-8.5 + parent: 1 + type: Transform + - uid: 11130 + components: + - pos: 19.5,-9.5 + parent: 1 + type: Transform + - uid: 11131 + components: + - pos: 20.5,-9.5 + parent: 1 + type: Transform + - uid: 11132 + components: + - pos: 21.5,-9.5 + parent: 1 + type: Transform + - uid: 11133 + components: + - pos: 22.5,-9.5 + parent: 1 + type: Transform + - uid: 11134 + components: + - pos: 23.5,-9.5 + parent: 1 + type: Transform + - uid: 11135 + components: + - pos: 24.5,-9.5 + parent: 1 + type: Transform + - uid: 11136 + components: + - pos: 25.5,-9.5 + parent: 1 + type: Transform + - uid: 11137 + components: + - pos: 26.5,-9.5 + parent: 1 + type: Transform + - uid: 11138 + components: + - pos: 27.5,-9.5 + parent: 1 + type: Transform + - uid: 11139 + components: + - pos: 28.5,-9.5 + parent: 1 + type: Transform + - uid: 11140 + components: + - pos: 29.5,-9.5 + parent: 1 + type: Transform + - uid: 11141 + components: + - pos: 30.5,-9.5 + parent: 1 + type: Transform + - uid: 11142 + components: + - pos: 31.5,-9.5 + parent: 1 + type: Transform + - uid: 11143 + components: + - pos: 31.5,-8.5 + parent: 1 + type: Transform + - uid: 11144 + components: + - pos: 31.5,-7.5 + parent: 1 + type: Transform + - uid: 11145 + components: + - pos: 31.5,-6.5 + parent: 1 + type: Transform + - uid: 11146 + components: + - pos: 31.5,-5.5 + parent: 1 + type: Transform + - uid: 11147 + components: + - pos: 31.5,-4.5 + parent: 1 + type: Transform + - uid: 11148 + components: + - pos: 31.5,-3.5 + parent: 1 + type: Transform + - uid: 11149 + components: + - pos: 31.5,-2.5 + parent: 1 + type: Transform + - uid: 11150 + components: + - pos: 31.5,-1.5 + parent: 1 + type: Transform + - uid: 11151 + components: + - pos: 31.5,-0.5 + parent: 1 + type: Transform + - uid: 11152 + components: + - pos: 31.5,0.5 + parent: 1 + type: Transform + - uid: 11153 + components: + - pos: 32.5,0.5 + parent: 1 + type: Transform + - uid: 11154 + components: + - pos: 33.5,0.5 + parent: 1 + type: Transform + - uid: 11155 + components: + - pos: 34.5,0.5 + parent: 1 + type: Transform + - uid: 11156 + components: + - pos: 25.5,-8.5 + parent: 1 + type: Transform + - uid: 11157 + components: + - pos: 25.5,-7.5 + parent: 1 + type: Transform + - uid: 11158 + components: + - pos: 25.5,-6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11159 + components: + - pos: 25.5,-5.5 + parent: 1 + type: Transform + - uid: 11160 + components: + - pos: 25.5,-4.5 + parent: 1 + type: Transform + - uid: 11161 + components: + - pos: 25.5,-3.5 + parent: 1 + type: Transform + - uid: 11162 + components: + - pos: 24.5,-3.5 + parent: 1 + type: Transform + - uid: 11163 + components: + - pos: 25.5,-2.5 + parent: 1 + type: Transform + - uid: 11164 + components: + - pos: 25.5,-1.5 + parent: 1 + type: Transform + - uid: 11165 + components: + - pos: 25.5,-0.5 + parent: 1 + type: Transform + - uid: 11166 + components: + - pos: 25.5,0.5 + parent: 1 + type: Transform + - uid: 11167 + components: + - pos: 26.5,0.5 + parent: 1 + type: Transform + - uid: 11168 + components: + - pos: 27.5,0.5 + parent: 1 + type: Transform + - uid: 11169 + components: + - pos: 27.5,-0.5 + parent: 1 + type: Transform + - uid: 11170 + components: + - pos: 27.5,-1.5 + parent: 1 + type: Transform + - uid: 11171 + components: + - pos: 27.5,-2.5 + parent: 1 + type: Transform + - uid: 11172 + components: + - pos: 27.5,-3.5 + parent: 1 + type: Transform + - uid: 11173 + components: + - pos: 27.5,-4.5 + parent: 1 + type: Transform + - uid: 11174 + components: + - pos: 27.5,-5.5 + parent: 1 + type: Transform + - uid: 11175 + components: + - pos: 26.5,-5.5 + parent: 1 + type: Transform + - uid: 11176 + components: + - pos: 22.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11177 + components: + - pos: 23.5,5.5 + parent: 1 + type: Transform + - uid: 11178 + components: + - pos: 24.5,5.5 + parent: 1 + type: Transform + - uid: 11179 + components: + - pos: 25.5,5.5 + parent: 1 + type: Transform + - uid: 11180 + components: + - pos: 25.5,4.5 + parent: 1 + type: Transform + - uid: 11181 + components: + - pos: 25.5,3.5 + parent: 1 + type: Transform + - uid: 11182 + components: + - pos: 25.5,2.5 + parent: 1 + type: Transform + - uid: 11183 + components: + - pos: 24.5,2.5 + parent: 1 + type: Transform + - uid: 11184 + components: + - pos: 23.5,2.5 + parent: 1 + type: Transform + - uid: 11185 + components: + - pos: 22.5,2.5 + parent: 1 + type: Transform + - uid: 11186 + components: + - pos: 21.5,2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11187 + components: + - pos: 21.5,3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11188 + components: + - pos: 21.5,4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11189 + components: + - pos: 21.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11190 + components: + - pos: 21.5,6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11191 + components: + - pos: 21.5,7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11192 + components: + - pos: 21.5,8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11193 + components: + - pos: 20.5,8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11194 + components: + - pos: 19.5,8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11195 + components: + - pos: 18.5,8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11196 + components: + - pos: 18.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11197 + components: + - pos: 18.5,10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11198 + components: + - pos: 18.5,11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11199 + components: + - pos: 21.5,1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11200 + components: + - pos: 23.5,6.5 + parent: 1 + type: Transform + - uid: 11201 + components: + - pos: 23.5,7.5 + parent: 1 + type: Transform + - uid: 11202 + components: + - pos: 23.5,8.5 + parent: 1 + type: Transform + - uid: 11203 + components: + - pos: 23.5,9.5 + parent: 1 + type: Transform + - uid: 11204 + components: + - pos: 23.5,10.5 + parent: 1 + type: Transform + - uid: 11205 + components: + - pos: 24.5,10.5 + parent: 1 + type: Transform + - uid: 11206 + components: + - pos: 25.5,10.5 + parent: 1 + type: Transform + - uid: 11207 + components: + - pos: 26.5,10.5 + parent: 1 + type: Transform + - uid: 11208 + components: + - pos: 27.5,10.5 + parent: 1 + type: Transform + - uid: 11209 + components: + - pos: 28.5,10.5 + parent: 1 + type: Transform + - uid: 11210 + components: + - pos: 29.5,10.5 + parent: 1 + type: Transform + - uid: 11211 + components: + - pos: 30.5,10.5 + parent: 1 + type: Transform + - uid: 11212 + components: + - pos: 31.5,10.5 + parent: 1 + type: Transform + - uid: 11213 + components: + - pos: 32.5,10.5 + parent: 1 + type: Transform + - uid: 11214 + components: + - pos: 32.5,9.5 + parent: 1 + type: Transform + - uid: 11215 + components: + - pos: 32.5,8.5 + parent: 1 + type: Transform + - uid: 11216 + components: + - pos: 32.5,7.5 + parent: 1 + type: Transform + - uid: 11218 + components: + - pos: 32.5,5.5 + parent: 1 + type: Transform + - uid: 11219 + components: + - pos: 32.5,4.5 + parent: 1 + type: Transform + - uid: 11220 + components: + - pos: 32.5,3.5 + parent: 1 + type: Transform + - uid: 11221 + components: + - pos: 33.5,3.5 + parent: 1 + type: Transform + - uid: 11222 + components: + - pos: 34.5,3.5 + parent: 1 + type: Transform + - uid: 11223 + components: + - pos: 31.5,3.5 + parent: 1 + type: Transform + - uid: 11224 + components: + - pos: 30.5,3.5 + parent: 1 + type: Transform + - uid: 11225 + components: + - pos: 29.5,3.5 + parent: 1 + type: Transform + - uid: 11226 + components: + - pos: 28.5,3.5 + parent: 1 + type: Transform + - uid: 11227 + components: + - pos: 27.5,3.5 + parent: 1 + type: Transform + - uid: 11228 + components: + - pos: 26.5,3.5 + parent: 1 + type: Transform + - uid: 11229 + components: + - pos: 25.5,3.5 + parent: 1 + type: Transform + - uid: 11230 + components: + - pos: 26.5,4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11231 + components: + - pos: 26.5,6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11232 + components: + - pos: 26.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11233 + components: + - pos: 24.5,3.5 + parent: 1 + type: Transform + - uid: 11234 + components: + - pos: 23.5,3.5 + parent: 1 + type: Transform + - uid: 11245 + components: + - pos: 16.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11246 + components: + - pos: 15.5,9.5 + parent: 1 + type: Transform + - uid: 11247 + components: + - pos: 14.5,9.5 + parent: 1 + type: Transform + - uid: 11248 + components: + - pos: 13.5,9.5 + parent: 1 + type: Transform + - uid: 11249 + components: + - pos: 12.5,9.5 + parent: 1 + type: Transform + - uid: 11250 + components: + - pos: 11.5,9.5 + parent: 1 + type: Transform + - uid: 11251 + components: + - pos: 10.5,9.5 + parent: 1 + type: Transform + - uid: 11252 + components: + - pos: 9.5,9.5 + parent: 1 + type: Transform + - uid: 11253 + components: + - pos: 8.5,9.5 + parent: 1 + type: Transform + - uid: 11254 + components: + - pos: 7.5,9.5 + parent: 1 + type: Transform + - uid: 11255 + components: + - pos: 6.5,9.5 + parent: 1 + type: Transform + - uid: 11256 + components: + - pos: 5.5,9.5 + parent: 1 + type: Transform + - uid: 11257 + components: + - pos: 5.5,10.5 + parent: 1 + type: Transform + - uid: 11258 + components: + - pos: 5.5,11.5 + parent: 1 + type: Transform + - uid: 11259 + components: + - pos: 6.5,11.5 + parent: 1 + type: Transform + - uid: 11260 + components: + - pos: 7.5,11.5 + parent: 1 + type: Transform + - uid: 11261 + components: + - pos: 8.5,11.5 + parent: 1 + type: Transform + - uid: 11262 + components: + - pos: 9.5,11.5 + parent: 1 + type: Transform + - uid: 11263 + components: + - pos: 10.5,11.5 + parent: 1 + type: Transform + - uid: 11264 + components: + - pos: 11.5,11.5 + parent: 1 + type: Transform + - uid: 11265 + components: + - pos: 11.5,10.5 + parent: 1 + type: Transform + - uid: 11266 + components: + - pos: 11.5,8.5 + parent: 1 + type: Transform + - uid: 11267 + components: + - pos: 11.5,7.5 + parent: 1 + type: Transform + - uid: 11268 + components: + - pos: 11.5,6.5 + parent: 1 + type: Transform + - uid: 11269 + components: + - pos: 11.5,5.5 + parent: 1 + type: Transform + - uid: 11270 + components: + - pos: 11.5,4.5 + parent: 1 + type: Transform + - uid: 11271 + components: + - pos: 11.5,3.5 + parent: 1 + type: Transform + - uid: 11272 + components: + - pos: 10.5,5.5 + parent: 1 + type: Transform + - uid: 11273 + components: + - pos: 9.5,5.5 + parent: 1 + type: Transform + - uid: 11274 + components: + - pos: 8.5,5.5 + parent: 1 + type: Transform + - uid: 11275 + components: + - pos: 7.5,5.5 + parent: 1 + type: Transform + - uid: 11276 + components: + - pos: 6.5,5.5 + parent: 1 + type: Transform + - uid: 11277 + components: + - pos: 5.5,5.5 + parent: 1 + type: Transform + - uid: 11278 + components: + - pos: 5.5,6.5 + parent: 1 + type: Transform + - uid: 11279 + components: + - pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 11280 + components: + - pos: 5.5,8.5 + parent: 1 + type: Transform + - uid: 11289 + components: + - pos: 13.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11290 + components: + - pos: 14.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11291 + components: + - pos: 14.5,-0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11292 + components: + - pos: 14.5,0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11293 + components: + - pos: 14.5,1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11294 + components: + - pos: 14.5,2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11295 + components: + - pos: 14.5,3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11296 + components: + - pos: 14.5,4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11297 + components: + - pos: 14.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11298 + components: + - pos: 14.5,6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11299 + components: + - pos: 15.5,6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11300 + components: + - pos: 16.5,6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11301 + components: + - pos: 17.5,6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11302 + components: + - pos: 18.5,6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11303 + components: + - pos: 14.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11304 + components: + - pos: 14.5,-3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11305 + components: + - pos: 14.5,-4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11306 + components: + - pos: 15.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11307 + components: + - pos: 12.5,-1.5 + parent: 1 + type: Transform + - uid: 11308 + components: + - pos: 11.5,-1.5 + parent: 1 + type: Transform + - uid: 11309 + components: + - pos: 10.5,-1.5 + parent: 1 + type: Transform + - uid: 11310 + components: + - pos: 9.5,-1.5 + parent: 1 + type: Transform + - uid: 11311 + components: + - pos: 8.5,-1.5 + parent: 1 + type: Transform + - uid: 11312 + components: + - pos: 7.5,-1.5 + parent: 1 + type: Transform + - uid: 11313 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 11314 + components: + - pos: 5.5,-1.5 + parent: 1 + type: Transform + - uid: 11315 + components: + - pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 11316 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 11317 + components: + - pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 11318 + components: + - pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 11319 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 11320 + components: + - pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 11321 + components: + - pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 11322 + components: + - pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 11323 + components: + - pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 11324 + components: + - pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 11325 + components: + - pos: 11.5,-0.5 + parent: 1 + type: Transform + - uid: 11326 + components: + - pos: 11.5,0.5 + parent: 1 + type: Transform + - uid: 11327 + components: + - pos: 11.5,1.5 + parent: 1 + type: Transform + - uid: 11328 + components: + - pos: 11.5,-2.5 + parent: 1 + type: Transform + - uid: 11329 + components: + - pos: 11.5,-3.5 + parent: 1 + type: Transform + - uid: 11330 + components: + - pos: 11.5,-4.5 + parent: 1 + type: Transform + - uid: 11331 + components: + - pos: 10.5,-4.5 + parent: 1 + type: Transform + - uid: 11332 + components: + - pos: 9.5,-4.5 + parent: 1 + type: Transform + - uid: 11333 + components: + - pos: 8.5,-4.5 + parent: 1 + type: Transform + - uid: 11334 + components: + - pos: 7.5,-4.5 + parent: 1 + type: Transform + - uid: 11335 + components: + - pos: 6.5,-4.5 + parent: 1 + type: Transform + - uid: 11336 + components: + - pos: 5.5,-4.5 + parent: 1 + type: Transform + - uid: 11337 + components: + - pos: 5.5,-3.5 + parent: 1 + type: Transform + - uid: 11338 + components: + - pos: 5.5,-2.5 + parent: 1 + type: Transform + - uid: 11425 + components: + - pos: 6.5,75.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11426 + components: + - pos: 6.5,74.5 + parent: 1 + type: Transform + - uid: 11427 + components: + - pos: 6.5,73.5 + parent: 1 + type: Transform + - uid: 11428 + components: + - pos: 6.5,72.5 + parent: 1 + type: Transform + - uid: 11429 + components: + - pos: 6.5,71.5 + parent: 1 + type: Transform + - uid: 11430 + components: + - pos: 6.5,70.5 + parent: 1 + type: Transform + - uid: 11431 + components: + - pos: 7.5,74.5 + parent: 1 + type: Transform + - uid: 11432 + components: + - pos: 8.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11433 + components: + - pos: 8.5,73.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11434 + components: + - pos: 8.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11435 + components: + - pos: 5.5,74.5 + parent: 1 + type: Transform + - uid: 11436 + components: + - pos: 4.5,74.5 + parent: 1 + type: Transform + - uid: 11437 + components: + - pos: 3.5,74.5 + parent: 1 + type: Transform + - uid: 11438 + components: + - pos: 2.5,74.5 + parent: 1 + type: Transform + - uid: 11439 + components: + - pos: 1.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11440 + components: + - pos: 2.5,75.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11441 + components: + - pos: 3.5,75.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11442 + components: + - pos: 1.5,73.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11443 + components: + - pos: 1.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11444 + components: + - pos: 1.5,71.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11445 + components: + - pos: 1.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11446 + components: + - pos: 1.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11447 + components: + - pos: 2.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11448 + components: + - pos: 3.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11449 + components: + - pos: 4.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11450 + components: + - pos: 5.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11451 + components: + - pos: 6.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11452 + components: + - pos: 7.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11453 + components: + - pos: 8.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11454 + components: + - pos: 8.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11455 + components: + - pos: 8.5,71.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11456 + components: + - pos: 8.5,68.5 + parent: 1 + type: Transform + - uid: 11457 + components: + - pos: 9.5,68.5 + parent: 1 + type: Transform + - uid: 11458 + components: + - pos: 10.5,68.5 + parent: 1 + type: Transform + - uid: 11459 + components: + - pos: 11.5,68.5 + parent: 1 + type: Transform + - uid: 11460 + components: + - pos: 12.5,68.5 + parent: 1 + type: Transform + - uid: 11461 + components: + - pos: 12.5,69.5 + parent: 1 + type: Transform + - uid: 11462 + components: + - pos: 12.5,70.5 + parent: 1 + type: Transform + - uid: 11463 + components: + - pos: 12.5,67.5 + parent: 1 + type: Transform + - uid: 11464 + components: + - pos: 12.5,66.5 + parent: 1 + type: Transform + - uid: 11465 + components: + - pos: 7.5,68.5 + parent: 1 + type: Transform + - uid: 11466 + components: + - pos: 6.5,68.5 + parent: 1 + type: Transform + - uid: 11467 + components: + - pos: 5.5,68.5 + parent: 1 + type: Transform + - uid: 11468 + components: + - pos: 4.5,68.5 + parent: 1 + type: Transform + - uid: 11469 + components: + - pos: 3.5,68.5 + parent: 1 + type: Transform + - uid: 11470 + components: + - pos: 2.5,68.5 + parent: 1 + type: Transform + - uid: 11471 + components: + - pos: 1.5,68.5 + parent: 1 + type: Transform + - uid: 11472 + components: + - pos: 0.5,68.5 + parent: 1 + type: Transform + - uid: 11473 + components: + - pos: -0.5,68.5 + parent: 1 + type: Transform + - uid: 11474 + components: + - pos: -1.5,68.5 + parent: 1 + type: Transform + - uid: 11475 + components: + - pos: -1.5,69.5 + parent: 1 + type: Transform + - uid: 11476 + components: + - pos: -1.5,70.5 + parent: 1 + type: Transform + - uid: 11477 + components: + - pos: -1.5,71.5 + parent: 1 + type: Transform + - uid: 11478 + components: + - pos: -1.5,72.5 + parent: 1 + type: Transform + - uid: 11479 + components: + - pos: -1.5,73.5 + parent: 1 + type: Transform + - uid: 11480 + components: + - pos: -1.5,74.5 + parent: 1 + type: Transform + - uid: 11481 + components: + - pos: 0.5,69.5 + parent: 1 + type: Transform + - uid: 11482 + components: + - pos: 0.5,70.5 + parent: 1 + type: Transform + - uid: 11483 + components: + - pos: 0.5,71.5 + parent: 1 + type: Transform + - uid: 11484 + components: + - pos: 0.5,72.5 + parent: 1 + type: Transform + - uid: 11485 + components: + - pos: 0.5,73.5 + parent: 1 + type: Transform + - uid: 11486 + components: + - pos: 0.5,74.5 + parent: 1 + type: Transform + - uid: 11487 + components: + - pos: -3.5,75.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11488 + components: + - pos: -3.5,76.5 + parent: 1 + type: Transform + - uid: 11489 + components: + - pos: 0.5,77.5 + parent: 1 + type: Transform + - uid: 11490 + components: + - pos: 1.5,77.5 + parent: 1 + type: Transform + - uid: 11491 + components: + - pos: 2.5,77.5 + parent: 1 + type: Transform + - uid: 11492 + components: + - pos: 3.5,77.5 + parent: 1 + type: Transform + - uid: 11493 + components: + - pos: 4.5,77.5 + parent: 1 + type: Transform + - uid: 11494 + components: + - pos: 5.5,77.5 + parent: 1 + type: Transform + - uid: 11495 + components: + - pos: -0.5,77.5 + parent: 1 + type: Transform + - uid: 11496 + components: + - pos: -1.5,77.5 + parent: 1 + type: Transform + - uid: 11497 + components: + - pos: -2.5,77.5 + parent: 1 + type: Transform + - uid: 11498 + components: + - pos: -3.5,77.5 + parent: 1 + type: Transform + - uid: 11499 + components: + - pos: 7.5,76.5 + parent: 1 + type: Transform + - uid: 11500 + components: + - pos: 6.5,77.5 + parent: 1 + type: Transform + - uid: 11501 + components: + - pos: -4.5,77.5 + parent: 1 + type: Transform + - uid: 11502 + components: + - pos: -5.5,77.5 + parent: 1 + type: Transform + - uid: 11503 + components: + - pos: -6.5,77.5 + parent: 1 + type: Transform + - uid: 11504 + components: + - pos: -7.5,77.5 + parent: 1 + type: Transform + - uid: 11505 + components: + - pos: -8.5,77.5 + parent: 1 + type: Transform + - uid: 11506 + components: + - pos: -5.5,78.5 + parent: 1 + type: Transform + - uid: 11507 + components: + - pos: -5.5,79.5 + parent: 1 + type: Transform + - uid: 11508 + components: + - pos: -5.5,80.5 + parent: 1 + type: Transform + - uid: 11509 + components: + - pos: -5.5,81.5 + parent: 1 + type: Transform + - uid: 11510 + components: + - pos: -5.5,82.5 + parent: 1 + type: Transform + - uid: 11511 + components: + - pos: 4.5,78.5 + parent: 1 + type: Transform + - uid: 11512 + components: + - pos: 4.5,79.5 + parent: 1 + type: Transform + - uid: 11513 + components: + - pos: 4.5,80.5 + parent: 1 + type: Transform + - uid: 11514 + components: + - pos: 4.5,81.5 + parent: 1 + type: Transform + - uid: 11515 + components: + - pos: 4.5,82.5 + parent: 1 + type: Transform + - uid: 11516 + components: + - pos: 3.5,81.5 + parent: 1 + type: Transform + - uid: 11517 + components: + - pos: 2.5,81.5 + parent: 1 + type: Transform + - uid: 11518 + components: + - pos: 1.5,81.5 + parent: 1 + type: Transform + - uid: 11519 + components: + - pos: 0.5,81.5 + parent: 1 + type: Transform + - uid: 11520 + components: + - pos: -0.5,81.5 + parent: 1 + type: Transform + - uid: 11521 + components: + - pos: -1.5,81.5 + parent: 1 + type: Transform + - uid: 11522 + components: + - pos: -2.5,81.5 + parent: 1 + type: Transform + - uid: 11523 + components: + - pos: -3.5,81.5 + parent: 1 + type: Transform + - uid: 11524 + components: + - pos: -4.5,81.5 + parent: 1 + type: Transform + - uid: 11525 + components: + - pos: -0.5,82.5 + parent: 1 + type: Transform + - uid: 11526 + components: + - pos: -0.5,83.5 + parent: 1 + type: Transform + - uid: 11527 + components: + - pos: -0.5,84.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11528 + components: + - pos: -1.5,84.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11529 + components: + - pos: -2.5,84.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11530 + components: + - pos: -3.5,84.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11531 + components: + - pos: 0.5,84.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11532 + components: + - pos: 1.5,84.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11533 + components: + - pos: 2.5,84.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11534 + components: + - pos: -4.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11535 + components: + - pos: -5.5,74.5 + parent: 1 + type: Transform + - uid: 11536 + components: + - pos: -6.5,74.5 + parent: 1 + type: Transform + - uid: 11537 + components: + - pos: -7.5,74.5 + parent: 1 + type: Transform + - uid: 11538 + components: + - pos: -8.5,74.5 + parent: 1 + type: Transform + - uid: 11539 + components: + - pos: -8.5,73.5 + parent: 1 + type: Transform + - uid: 11540 + components: + - pos: -8.5,72.5 + parent: 1 + type: Transform + - uid: 11541 + components: + - pos: -8.5,71.5 + parent: 1 + type: Transform + - uid: 11542 + components: + - pos: -8.5,70.5 + parent: 1 + type: Transform + - uid: 11543 + components: + - pos: -8.5,69.5 + parent: 1 + type: Transform + - uid: 11544 + components: + - pos: -9.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11545 + components: + - pos: -10.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11546 + components: + - pos: -10.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11547 + components: + - pos: -7.5,72.5 + parent: 1 + type: Transform + - uid: 11548 + components: + - pos: -6.5,72.5 + parent: 1 + type: Transform + - uid: 11549 + components: + - pos: -5.5,72.5 + parent: 1 + type: Transform + - uid: 11550 + components: + - pos: -5.5,73.5 + parent: 1 + type: Transform + - uid: 11611 + components: + - pos: -30.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11612 + components: + - pos: -30.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11613 + components: + - pos: -31.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11614 + components: + - pos: -32.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11615 + components: + - pos: -33.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11616 + components: + - pos: -34.5,56.5 + parent: 1 + type: Transform + - uid: 11617 + components: + - pos: -35.5,56.5 + parent: 1 + type: Transform + - uid: 11618 + components: + - pos: -35.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11619 + components: + - pos: -35.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11620 + components: + - pos: -35.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11621 + components: + - pos: -35.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11622 + components: + - pos: -34.5,52.5 + parent: 1 + type: Transform + - uid: 11623 + components: + - pos: -33.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11624 + components: + - pos: -32.5,52.5 + parent: 1 + type: Transform + - uid: 11625 + components: + - pos: -31.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11626 + components: + - pos: -30.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11627 + components: + - pos: -29.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11628 + components: + - pos: -28.5,52.5 + parent: 1 + type: Transform + - uid: 11629 + components: + - pos: -27.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11630 + components: + - pos: -27.5,53.5 + parent: 1 + type: Transform + - uid: 11631 + components: + - pos: -27.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11632 + components: + - pos: -27.5,55.5 + parent: 1 + type: Transform + - uid: 11633 + components: + - pos: -27.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11634 + components: + - pos: -28.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11635 + components: + - pos: -29.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11636 + components: + - pos: -27.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11637 + components: + - pos: -26.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11638 + components: + - pos: -25.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11639 + components: + - pos: -24.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11640 + components: + - pos: -24.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11641 + components: + - pos: -24.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11642 + components: + - pos: -24.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11643 + components: + - pos: -24.5,53.5 + parent: 1 + type: Transform + - uid: 11644 + components: + - pos: -24.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11645 + components: + - pos: -24.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11646 + components: + - pos: -36.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11647 + components: + - pos: -37.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11648 + components: + - pos: -38.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11649 + components: + - pos: -38.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11650 + components: + - pos: -38.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11651 + components: + - pos: -38.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11652 + components: + - pos: -42.5,44.5 + parent: 1 + type: Transform + - uid: 11653 + components: + - pos: -43.5,44.5 + parent: 1 + type: Transform + - uid: 11654 + components: + - pos: -43.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11655 + components: + - pos: -43.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11656 + components: + - pos: -43.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11657 + components: + - pos: -43.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11658 + components: + - pos: -43.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11659 + components: + - pos: -43.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11660 + components: + - pos: -43.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11661 + components: + - pos: -42.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11662 + components: + - pos: -41.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11663 + components: + - pos: -44.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11665 + components: + - pos: -46.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11666 + components: + - pos: -47.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11667 + components: + - pos: -42.5,43.5 + parent: 1 + type: Transform + - uid: 11668 + components: + - pos: -43.5,43.5 + parent: 1 + type: Transform + - uid: 11669 + components: + - pos: -44.5,43.5 + parent: 1 + type: Transform + - uid: 11670 + components: + - pos: -45.5,43.5 + parent: 1 + type: Transform + - uid: 11671 + components: + - pos: -46.5,43.5 + parent: 1 + type: Transform + - uid: 11672 + components: + - pos: -47.5,43.5 + parent: 1 + type: Transform + - uid: 11673 + components: + - pos: -48.5,43.5 + parent: 1 + type: Transform + - uid: 11674 + components: + - pos: -49.5,43.5 + parent: 1 + type: Transform + - uid: 11675 + components: + - pos: -49.5,42.5 + parent: 1 + type: Transform + - uid: 11676 + components: + - pos: -49.5,41.5 + parent: 1 + type: Transform + - uid: 11677 + components: + - pos: -49.5,40.5 + parent: 1 + type: Transform + - uid: 11678 + components: + - pos: -49.5,39.5 + parent: 1 + type: Transform + - uid: 11679 + components: + - pos: -49.5,38.5 + parent: 1 + type: Transform + - uid: 11680 + components: + - pos: -49.5,37.5 + parent: 1 + type: Transform + - uid: 11681 + components: + - pos: -49.5,36.5 + parent: 1 + type: Transform + - uid: 11682 + components: + - pos: -49.5,35.5 + parent: 1 + type: Transform + - uid: 11683 + components: + - pos: -49.5,34.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11684 + components: + - pos: -50.5,38.5 + parent: 1 + type: Transform + - uid: 11685 + components: + - pos: -51.5,38.5 + parent: 1 + type: Transform + - uid: 11686 + components: + - pos: -52.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11687 + components: + - pos: -50.5,36.5 + parent: 1 + type: Transform + - uid: 11688 + components: + - pos: -51.5,36.5 + parent: 1 + type: Transform + - uid: 11689 + components: + - pos: -52.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11690 + components: + - pos: -48.5,36.5 + parent: 1 + type: Transform + - uid: 11691 + components: + - pos: -47.5,36.5 + parent: 1 + type: Transform + - uid: 11692 + components: + - pos: -47.5,35.5 + parent: 1 + type: Transform + - uid: 11693 + components: + - pos: -47.5,34.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11694 + components: + - pos: -46.5,36.5 + parent: 1 + type: Transform + - uid: 11695 + components: + - pos: -45.5,36.5 + parent: 1 + type: Transform + - uid: 11696 + components: + - pos: -44.5,36.5 + parent: 1 + type: Transform + - uid: 11697 + components: + - pos: -43.5,36.5 + parent: 1 + type: Transform + - uid: 11698 + components: + - pos: -42.5,36.5 + parent: 1 + type: Transform + - uid: 11699 + components: + - pos: -41.5,36.5 + parent: 1 + type: Transform + - uid: 11700 + components: + - pos: -40.5,36.5 + parent: 1 + type: Transform + - uid: 11701 + components: + - pos: -39.5,36.5 + parent: 1 + type: Transform + - uid: 11702 + components: + - pos: -38.5,36.5 + parent: 1 + type: Transform + - uid: 11703 + components: + - pos: -37.5,36.5 + parent: 1 + type: Transform + - uid: 11704 + components: + - pos: -36.5,36.5 + parent: 1 + type: Transform + - uid: 11705 + components: + - pos: -35.5,36.5 + parent: 1 + type: Transform + - uid: 11706 + components: + - pos: -34.5,36.5 + parent: 1 + type: Transform + - uid: 11707 + components: + - pos: -34.5,37.5 + parent: 1 + type: Transform + - uid: 11708 + components: + - pos: -34.5,38.5 + parent: 1 + type: Transform + - uid: 11709 + components: + - pos: -35.5,38.5 + parent: 1 + type: Transform + - uid: 11710 + components: + - pos: -36.5,38.5 + parent: 1 + type: Transform + - uid: 11711 + components: + - pos: -37.5,38.5 + parent: 1 + type: Transform + - uid: 11712 + components: + - pos: -38.5,38.5 + parent: 1 + type: Transform + - uid: 11713 + components: + - pos: -39.5,38.5 + parent: 1 + type: Transform + - uid: 11714 + components: + - pos: -40.5,38.5 + parent: 1 + type: Transform + - uid: 11715 + components: + - pos: -41.5,38.5 + parent: 1 + type: Transform + - uid: 11716 + components: + - pos: -42.5,38.5 + parent: 1 + type: Transform + - uid: 11717 + components: + - pos: -42.5,39.5 + parent: 1 + type: Transform + - uid: 11718 + components: + - pos: -42.5,40.5 + parent: 1 + type: Transform + - uid: 11719 + components: + - pos: -42.5,41.5 + parent: 1 + type: Transform + - uid: 11720 + components: + - pos: -42.5,42.5 + parent: 1 + type: Transform + - uid: 11721 + components: + - pos: -33.5,38.5 + parent: 1 + type: Transform + - uid: 11722 + components: + - pos: -32.5,38.5 + parent: 1 + type: Transform + - uid: 11723 + components: + - pos: -31.5,38.5 + parent: 1 + type: Transform + - uid: 11724 + components: + - pos: -30.5,38.5 + parent: 1 + type: Transform + - uid: 11725 + components: + - pos: -29.5,38.5 + parent: 1 + type: Transform + - uid: 11726 + components: + - pos: -28.5,38.5 + parent: 1 + type: Transform + - uid: 11727 + components: + - pos: -27.5,38.5 + parent: 1 + type: Transform + - uid: 11728 + components: + - pos: -26.5,38.5 + parent: 1 + type: Transform + - uid: 11729 + components: + - pos: -25.5,38.5 + parent: 1 + type: Transform + - uid: 11730 + components: + - pos: -24.5,38.5 + parent: 1 + type: Transform + - uid: 11731 + components: + - pos: -24.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11732 + components: + - pos: -24.5,48.5 + parent: 1 + type: Transform + - uid: 11733 + components: + - pos: -24.5,47.5 + parent: 1 + type: Transform + - uid: 11734 + components: + - pos: -25.5,47.5 + parent: 1 + type: Transform + - uid: 11735 + components: + - pos: -26.5,47.5 + parent: 1 + type: Transform + - uid: 11736 + components: + - pos: -27.5,47.5 + parent: 1 + type: Transform + - uid: 11737 + components: + - pos: -28.5,47.5 + parent: 1 + type: Transform + - uid: 11738 + components: + - pos: -29.5,47.5 + parent: 1 + type: Transform + - uid: 11739 + components: + - pos: -30.5,47.5 + parent: 1 + type: Transform + - uid: 11740 + components: + - pos: -31.5,47.5 + parent: 1 + type: Transform + - uid: 11741 + components: + - pos: -32.5,47.5 + parent: 1 + type: Transform + - uid: 11742 + components: + - pos: -33.5,47.5 + parent: 1 + type: Transform + - uid: 11743 + components: + - pos: -34.5,47.5 + parent: 1 + type: Transform + - uid: 11744 + components: + - pos: -35.5,47.5 + parent: 1 + type: Transform + - uid: 11745 + components: + - pos: -35.5,48.5 + parent: 1 + type: Transform + - uid: 11746 + components: + - pos: -36.5,48.5 + parent: 1 + type: Transform + - uid: 11747 + components: + - pos: -37.5,48.5 + parent: 1 + type: Transform + - uid: 11748 + components: + - pos: -38.5,48.5 + parent: 1 + type: Transform + - uid: 11749 + components: + - pos: -32.5,48.5 + parent: 1 + type: Transform + - uid: 11750 + components: + - pos: -30.5,46.5 + parent: 1 + type: Transform + - uid: 11751 + components: + - pos: -30.5,45.5 + parent: 1 + type: Transform + - uid: 11752 + components: + - pos: -30.5,44.5 + parent: 1 + type: Transform + - uid: 11753 + components: + - pos: -30.5,43.5 + parent: 1 + type: Transform + - uid: 11754 + components: + - pos: -30.5,42.5 + parent: 1 + type: Transform + - uid: 11755 + components: + - pos: -29.5,42.5 + parent: 1 + type: Transform + - uid: 11756 + components: + - pos: -28.5,42.5 + parent: 1 + type: Transform + - uid: 11757 + components: + - pos: -27.5,42.5 + parent: 1 + type: Transform + - uid: 11758 + components: + - pos: -26.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11759 + components: + - pos: -26.5,43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11760 + components: + - pos: -26.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11761 + components: + - pos: -30.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11762 + components: + - pos: -31.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11763 + components: + - pos: -32.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11764 + components: + - pos: -34.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11765 + components: + - pos: -35.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11766 + components: + - pos: -31.5,43.5 + parent: 1 + type: Transform + - uid: 11767 + components: + - pos: -32.5,43.5 + parent: 1 + type: Transform + - uid: 11768 + components: + - pos: -33.5,43.5 + parent: 1 + type: Transform + - uid: 11769 + components: + - pos: -34.5,43.5 + parent: 1 + type: Transform + - uid: 11770 + components: + - pos: -35.5,43.5 + parent: 1 + type: Transform + - uid: 11771 + components: + - pos: -36.5,43.5 + parent: 1 + type: Transform + - uid: 11772 + components: + - pos: -37.5,43.5 + parent: 1 + type: Transform + - uid: 11773 + components: + - pos: -38.5,43.5 + parent: 1 + type: Transform + - uid: 11774 + components: + - pos: -39.5,43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11775 + components: + - pos: -39.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11776 + components: + - pos: -35.5,46.5 + parent: 1 + type: Transform + - uid: 11777 + components: + - pos: -35.5,45.5 + parent: 1 + type: Transform + - uid: 11778 + components: + - pos: -35.5,44.5 + parent: 1 + type: Transform + - uid: 11779 + components: + - pos: -36.5,45.5 + parent: 1 + type: Transform + - uid: 11780 + components: + - pos: -37.5,45.5 + parent: 1 + type: Transform + - uid: 11781 + components: + - pos: -38.5,45.5 + parent: 1 + type: Transform + - uid: 11782 + components: + - pos: -39.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11783 + components: + - pos: -39.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11784 + components: + - pos: -20.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11785 + components: + - pos: -19.5,50.5 + parent: 1 + type: Transform + - uid: 11786 + components: + - pos: -18.5,50.5 + parent: 1 + type: Transform + - uid: 11787 + components: + - pos: -17.5,50.5 + parent: 1 + type: Transform + - uid: 11788 + components: + - pos: -16.5,50.5 + parent: 1 + type: Transform + - uid: 11789 + components: + - pos: -16.5,51.5 + parent: 1 + type: Transform + - uid: 11790 + components: + - pos: -16.5,52.5 + parent: 1 + type: Transform + - uid: 11791 + components: + - pos: -16.5,53.5 + parent: 1 + type: Transform + - uid: 11792 + components: + - pos: -16.5,54.5 + parent: 1 + type: Transform + - uid: 11793 + components: + - pos: -16.5,55.5 + parent: 1 + type: Transform + - uid: 11794 + components: + - pos: -16.5,56.5 + parent: 1 + type: Transform + - uid: 11795 + components: + - pos: -15.5,56.5 + parent: 1 + type: Transform + - uid: 11796 + components: + - pos: -14.5,56.5 + parent: 1 + type: Transform + - uid: 11797 + components: + - pos: -13.5,56.5 + parent: 1 + type: Transform + - uid: 11798 + components: + - pos: -12.5,56.5 + parent: 1 + type: Transform + - uid: 11799 + components: + - pos: -12.5,55.5 + parent: 1 + type: Transform + - uid: 11800 + components: + - pos: -12.5,54.5 + parent: 1 + type: Transform + - uid: 11801 + components: + - pos: -12.5,53.5 + parent: 1 + type: Transform + - uid: 11802 + components: + - pos: -12.5,52.5 + parent: 1 + type: Transform + - uid: 11803 + components: + - pos: -12.5,51.5 + parent: 1 + type: Transform + - uid: 11804 + components: + - pos: -12.5,50.5 + parent: 1 + type: Transform + - uid: 11805 + components: + - pos: -12.5,49.5 + parent: 1 + type: Transform + - uid: 11806 + components: + - pos: -12.5,48.5 + parent: 1 + type: Transform + - uid: 11807 + components: + - pos: -12.5,47.5 + parent: 1 + type: Transform + - uid: 11808 + components: + - pos: -12.5,46.5 + parent: 1 + type: Transform + - uid: 11809 + components: + - pos: -12.5,45.5 + parent: 1 + type: Transform + - uid: 11810 + components: + - pos: -12.5,44.5 + parent: 1 + type: Transform + - uid: 11811 + components: + - pos: -12.5,43.5 + parent: 1 + type: Transform + - uid: 11812 + components: + - pos: -12.5,42.5 + parent: 1 + type: Transform + - uid: 11813 + components: + - pos: -12.5,41.5 + parent: 1 + type: Transform + - uid: 11814 + components: + - pos: -12.5,40.5 + parent: 1 + type: Transform + - uid: 11815 + components: + - pos: -12.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11816 + components: + - pos: -13.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11817 + components: + - pos: -13.5,44.5 + parent: 1 + type: Transform + - uid: 11818 + components: + - pos: -14.5,44.5 + parent: 1 + type: Transform + - uid: 11819 + components: + - pos: -15.5,44.5 + parent: 1 + type: Transform + - uid: 11820 + components: + - pos: -16.5,44.5 + parent: 1 + type: Transform + - uid: 11821 + components: + - pos: -17.5,44.5 + parent: 1 + type: Transform + - uid: 11822 + components: + - pos: -17.5,43.5 + parent: 1 + type: Transform + - uid: 11823 + components: + - pos: -17.5,42.5 + parent: 1 + type: Transform + - uid: 11824 + components: + - pos: -17.5,41.5 + parent: 1 + type: Transform + - uid: 11825 + components: + - pos: -17.5,40.5 + parent: 1 + type: Transform + - uid: 11826 + components: + - pos: -17.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11827 + components: + - pos: -18.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11828 + components: + - pos: -19.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11829 + components: + - pos: -16.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11830 + components: + - pos: -15.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11831 + components: + - pos: -18.5,44.5 + parent: 1 + type: Transform + - uid: 11832 + components: + - pos: -19.5,44.5 + parent: 1 + type: Transform + - uid: 11833 + components: + - pos: -19.5,45.5 + parent: 1 + type: Transform + - uid: 11834 + components: + - pos: -19.5,46.5 + parent: 1 + type: Transform + - uid: 11835 + components: + - pos: -19.5,47.5 + parent: 1 + type: Transform + - uid: 11836 + components: + - pos: -19.5,48.5 + parent: 1 + type: Transform + - uid: 11837 + components: + - pos: -19.5,49.5 + parent: 1 + type: Transform + - uid: 11838 + components: + - pos: -19.5,50.5 + parent: 1 + type: Transform + - uid: 11864 + components: + - pos: -7.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11865 + components: + - pos: -8.5,56.5 + parent: 1 + type: Transform + - uid: 11866 + components: + - pos: -9.5,56.5 + parent: 1 + type: Transform + - uid: 11867 + components: + - pos: -10.5,56.5 + parent: 1 + type: Transform + - uid: 11868 + components: + - pos: -10.5,57.5 + parent: 1 + type: Transform + - uid: 11869 + components: + - pos: -10.5,58.5 + parent: 1 + type: Transform + - uid: 11870 + components: + - pos: -10.5,59.5 + parent: 1 + type: Transform + - uid: 11871 + components: + - pos: -11.5,59.5 + parent: 1 + type: Transform + - uid: 11872 + components: + - pos: -12.5,59.5 + parent: 1 + type: Transform + - uid: 11873 + components: + - pos: -13.5,59.5 + parent: 1 + type: Transform + - uid: 11874 + components: + - pos: -14.5,59.5 + parent: 1 + type: Transform + - uid: 11875 + components: + - pos: -15.5,59.5 + parent: 1 + type: Transform + - uid: 11876 + components: + - pos: -16.5,59.5 + parent: 1 + type: Transform + - uid: 11877 + components: + - pos: -9.5,59.5 + parent: 1 + type: Transform + - uid: 11878 + components: + - pos: -8.5,59.5 + parent: 1 + type: Transform + - uid: 11879 + components: + - pos: -7.5,59.5 + parent: 1 + type: Transform + - uid: 11880 + components: + - pos: -6.5,59.5 + parent: 1 + type: Transform + - uid: 11881 + components: + - pos: -5.5,59.5 + parent: 1 + type: Transform + - uid: 11882 + components: + - pos: -5.5,60.5 + parent: 1 + type: Transform + - uid: 11883 + components: + - pos: -5.5,61.5 + parent: 1 + type: Transform + - uid: 11884 + components: + - pos: -5.5,62.5 + parent: 1 + type: Transform + - uid: 11885 + components: + - pos: -5.5,63.5 + parent: 1 + type: Transform + - uid: 11886 + components: + - pos: -5.5,64.5 + parent: 1 + type: Transform + - uid: 11887 + components: + - pos: -6.5,64.5 + parent: 1 + type: Transform + - uid: 11888 + components: + - pos: -7.5,64.5 + parent: 1 + type: Transform + - uid: 11889 + components: + - pos: -8.5,64.5 + parent: 1 + type: Transform + - uid: 11890 + components: + - pos: -8.5,63.5 + parent: 1 + type: Transform + - uid: 11891 + components: + - pos: -8.5,62.5 + parent: 1 + type: Transform + - uid: 11892 + components: + - pos: -8.5,61.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11893 + components: + - pos: -9.5,61.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11894 + components: + - pos: -7.5,60.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11895 + components: + - pos: -6.5,56.5 + parent: 1 + type: Transform + - uid: 11896 + components: + - pos: -5.5,56.5 + parent: 1 + type: Transform + - uid: 11897 + components: + - pos: -5.5,55.5 + parent: 1 + type: Transform + - uid: 11898 + components: + - pos: -5.5,54.5 + parent: 1 + type: Transform + - uid: 11899 + components: + - pos: -5.5,53.5 + parent: 1 + type: Transform + - uid: 11900 + components: + - pos: -5.5,52.5 + parent: 1 + type: Transform + - uid: 11901 + components: + - pos: -4.5,54.5 + parent: 1 + type: Transform + - uid: 11902 + components: + - pos: -3.5,54.5 + parent: 1 + type: Transform + - uid: 11903 + components: + - pos: -2.5,54.5 + parent: 1 + type: Transform + - uid: 11904 + components: + - pos: -1.5,54.5 + parent: 1 + type: Transform + - uid: 11905 + components: + - pos: -3.5,53.5 + parent: 1 + type: Transform + - uid: 11906 + components: + - pos: -3.5,52.5 + parent: 1 + type: Transform + - uid: 11907 + components: + - pos: -3.5,55.5 + parent: 1 + type: Transform + - uid: 11908 + components: + - pos: -3.5,56.5 + parent: 1 + type: Transform + - uid: 11909 + components: + - pos: -1.5,53.5 + parent: 1 + type: Transform + - uid: 11910 + components: + - pos: -1.5,52.5 + parent: 1 + type: Transform + - uid: 11911 + components: + - pos: -1.5,51.5 + parent: 1 + type: Transform + - uid: 11912 + components: + - pos: -1.5,50.5 + parent: 1 + type: Transform + - uid: 11913 + components: + - pos: -1.5,49.5 + parent: 1 + type: Transform + - uid: 11914 + components: + - pos: -1.5,48.5 + parent: 1 + type: Transform + - uid: 11915 + components: + - pos: -2.5,48.5 + parent: 1 + type: Transform + - uid: 11916 + components: + - pos: -3.5,48.5 + parent: 1 + type: Transform + - uid: 11917 + components: + - pos: -4.5,48.5 + parent: 1 + type: Transform + - uid: 11918 + components: + - pos: -5.5,48.5 + parent: 1 + type: Transform + - uid: 11919 + components: + - pos: -6.5,48.5 + parent: 1 + type: Transform + - uid: 11920 + components: + - pos: -7.5,48.5 + parent: 1 + type: Transform + - uid: 11921 + components: + - pos: -8.5,48.5 + parent: 1 + type: Transform + - uid: 11922 + components: + - pos: -9.5,48.5 + parent: 1 + type: Transform + - uid: 11923 + components: + - pos: -9.5,49.5 + parent: 1 + type: Transform + - uid: 11924 + components: + - pos: -9.5,50.5 + parent: 1 + type: Transform + - uid: 11925 + components: + - pos: -9.5,51.5 + parent: 1 + type: Transform + - uid: 11926 + components: + - pos: -9.5,52.5 + parent: 1 + type: Transform + - uid: 11927 + components: + - pos: -9.5,53.5 + parent: 1 + type: Transform + - uid: 11928 + components: + - pos: -9.5,54.5 + parent: 1 + type: Transform + - uid: 11929 + components: + - pos: -9.5,55.5 + parent: 1 + type: Transform + - uid: 11930 + components: + - pos: -9.5,47.5 + parent: 1 + type: Transform + - uid: 11932 + components: + - pos: -9.5,45.5 + parent: 1 + type: Transform + - uid: 11933 + components: + - pos: -9.5,44.5 + parent: 1 + type: Transform + - uid: 11934 + components: + - pos: -9.5,43.5 + parent: 1 + type: Transform + - uid: 11935 + components: + - pos: -9.5,42.5 + parent: 1 + type: Transform + - uid: 11936 + components: + - pos: -9.5,41.5 + parent: 1 + type: Transform + - uid: 11937 + components: + - pos: -9.5,40.5 + parent: 1 + type: Transform + - uid: 11938 + components: + - pos: -9.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11939 + components: + - pos: -10.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11940 + components: + - pos: -6.5,43.5 + parent: 1 + type: Transform + - uid: 11941 + components: + - pos: -6.5,44.5 + parent: 1 + type: Transform + - uid: 11942 + components: + - pos: -6.5,45.5 + parent: 1 + type: Transform + - uid: 11943 + components: + - pos: -6.5,46.5 + parent: 1 + type: Transform + - uid: 11944 + components: + - pos: -6.5,47.5 + parent: 1 + type: Transform + - uid: 11945 + components: + - pos: -6.5,42.5 + parent: 1 + type: Transform + - uid: 11946 + components: + - pos: -6.5,41.5 + parent: 1 + type: Transform + - uid: 11947 + components: + - pos: -6.5,40.5 + parent: 1 + type: Transform + - uid: 11948 + components: + - pos: -6.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11949 + components: + - pos: -7.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11950 + components: + - pos: -3.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11951 + components: + - pos: -3.5,40.5 + parent: 1 + type: Transform + - uid: 11952 + components: + - pos: -3.5,41.5 + parent: 1 + type: Transform + - uid: 11953 + components: + - pos: -3.5,42.5 + parent: 1 + type: Transform + - uid: 11954 + components: + - pos: -3.5,43.5 + parent: 1 + type: Transform + - uid: 11955 + components: + - pos: -3.5,44.5 + parent: 1 + type: Transform + - uid: 11956 + components: + - pos: -3.5,45.5 + parent: 1 + type: Transform + - uid: 11957 + components: + - pos: -3.5,46.5 + parent: 1 + type: Transform + - uid: 11958 + components: + - pos: -3.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11959 + components: + - pos: -4.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11960 + components: + - pos: -23.5,47.5 + parent: 1 + type: Transform + - uid: 11961 + components: + - pos: -22.5,47.5 + parent: 1 + type: Transform + - uid: 11962 + components: + - pos: -22.5,48.5 + parent: 1 + type: Transform + - uid: 11963 + components: + - pos: -21.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11964 + components: + - pos: -21.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11965 + components: + - pos: -21.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11966 + components: + - pos: -21.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11967 + components: + - pos: -21.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11968 + components: + - pos: -21.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11969 + components: + - pos: -21.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11970 + components: + - pos: -20.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11971 + components: + - pos: -19.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11972 + components: + - pos: -19.5,58.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11973 + components: + - pos: -19.5,59.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11974 + components: + - pos: -19.5,60.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11975 + components: + - pos: -19.5,61.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11976 + components: + - pos: -19.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11977 + components: + - pos: -18.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11978 + components: + - pos: -17.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11979 + components: + - pos: -16.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11980 + components: + - pos: -15.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11981 + components: + - pos: -14.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11982 + components: + - pos: -13.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11983 + components: + - pos: -13.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11984 + components: + - pos: -13.5,64.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11985 + components: + - pos: -13.5,65.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11986 + components: + - pos: -13.5,66.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11987 + components: + - pos: -13.5,67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11988 + components: + - pos: -13.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11989 + components: + - pos: -13.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11990 + components: + - pos: -13.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11991 + components: + - pos: -12.5,67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11992 + components: + - pos: -11.5,67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11993 + components: + - pos: -10.5,67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11994 + components: + - pos: -9.5,67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11995 + components: + - pos: -8.5,67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11996 + components: + - pos: -7.5,67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11997 + components: + - pos: -6.5,67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11998 + components: + - pos: -5.5,67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11999 + components: + - pos: -4.5,67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12000 + components: + - pos: -4.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12001 + components: + - pos: -4.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12002 + components: + - pos: -4.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12003 + components: + - pos: -3.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12004 + components: + - pos: -1.5,47.5 + parent: 1 + type: Transform + - uid: 12005 + components: + - pos: -1.5,46.5 + parent: 1 + type: Transform + - uid: 12006 + components: + - pos: -1.5,45.5 + parent: 1 + type: Transform + - uid: 12007 + components: + - pos: -1.5,44.5 + parent: 1 + type: Transform + - uid: 12008 + components: + - pos: -1.5,43.5 + parent: 1 + type: Transform + - uid: 12009 + components: + - pos: -1.5,42.5 + parent: 1 + type: Transform + - uid: 12010 + components: + - pos: -1.5,41.5 + parent: 1 + type: Transform + - uid: 12011 + components: + - pos: -1.5,40.5 + parent: 1 + type: Transform + - uid: 12012 + components: + - pos: -22.5,46.5 + parent: 1 + type: Transform + - uid: 12013 + components: + - pos: -21.5,46.5 + parent: 1 + type: Transform + - uid: 12014 + components: + - pos: -21.5,45.5 + parent: 1 + type: Transform + - uid: 12015 + components: + - pos: -21.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12016 + components: + - pos: -21.5,43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12017 + components: + - pos: -21.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12018 + components: + - pos: -21.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12019 + components: + - pos: -21.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12060 + components: + - pos: -12.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12061 + components: + - pos: -11.5,32.5 + parent: 1 + type: Transform + - uid: 12062 + components: + - pos: -10.5,32.5 + parent: 1 + type: Transform + - uid: 12063 + components: + - pos: -9.5,32.5 + parent: 1 + type: Transform + - uid: 12064 + components: + - pos: -9.5,33.5 + parent: 1 + type: Transform + - uid: 12065 + components: + - pos: -8.5,33.5 + parent: 1 + type: Transform + - uid: 12066 + components: + - pos: -7.5,33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12067 + components: + - pos: -6.5,33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12068 + components: + - pos: -6.5,32.5 + parent: 1 + type: Transform + - uid: 12069 + components: + - pos: -6.5,31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12070 + components: + - pos: -6.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12071 + components: + - pos: -6.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12072 + components: + - pos: -6.5,28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12073 + components: + - pos: -6.5,27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12074 + components: + - pos: -9.5,31.5 + parent: 1 + type: Transform + - uid: 12075 + components: + - pos: -9.5,30.5 + parent: 1 + type: Transform + - uid: 12076 + components: + - pos: -9.5,29.5 + parent: 1 + type: Transform + - uid: 12077 + components: + - pos: -9.5,28.5 + parent: 1 + type: Transform + - uid: 12078 + components: + - pos: -9.5,27.5 + parent: 1 + type: Transform + - uid: 12079 + components: + - pos: -10.5,27.5 + parent: 1 + type: Transform + - uid: 12080 + components: + - pos: -11.5,27.5 + parent: 1 + type: Transform + - uid: 12081 + components: + - pos: -11.5,28.5 + parent: 1 + type: Transform + - uid: 12082 + components: + - pos: -11.5,29.5 + parent: 1 + type: Transform + - uid: 12083 + components: + - pos: -11.5,30.5 + parent: 1 + type: Transform + - uid: 12084 + components: + - pos: -11.5,31.5 + parent: 1 + type: Transform + - uid: 12085 + components: + - pos: -11.5,33.5 + parent: 1 + type: Transform + - uid: 12086 + components: + - pos: -11.5,34.5 + parent: 1 + type: Transform + - uid: 12087 + components: + - pos: -10.5,34.5 + parent: 1 + type: Transform + - uid: 12088 + components: + - pos: -20.5,31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12089 + components: + - pos: -20.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12090 + components: + - pos: -20.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12091 + components: + - pos: -20.5,28.5 + parent: 1 + type: Transform + - uid: 12092 + components: + - pos: -20.5,32.5 + parent: 1 + type: Transform + - uid: 12093 + components: + - pos: -20.5,33.5 + parent: 1 + type: Transform + - uid: 12094 + components: + - pos: -20.5,34.5 + parent: 1 + type: Transform + - uid: 12095 + components: + - pos: -20.5,35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12096 + components: + - pos: -20.5,36.5 + parent: 1 + type: Transform + - uid: 12097 + components: + - pos: -21.5,36.5 + parent: 1 + type: Transform + - uid: 12098 + components: + - pos: -22.5,36.5 + parent: 1 + type: Transform + - uid: 12099 + components: + - pos: -23.5,36.5 + parent: 1 + type: Transform + - uid: 12101 + components: + - pos: -25.5,36.5 + parent: 1 + type: Transform + - uid: 12102 + components: + - pos: -26.5,36.5 + parent: 1 + type: Transform + - uid: 12103 + components: + - pos: -27.5,36.5 + parent: 1 + type: Transform + - uid: 12104 + components: + - pos: -28.5,36.5 + parent: 1 + type: Transform + - uid: 12105 + components: + - pos: -19.5,36.5 + parent: 1 + type: Transform + - uid: 12106 + components: + - pos: -18.5,36.5 + parent: 1 + type: Transform + - uid: 12107 + components: + - pos: -17.5,36.5 + parent: 1 + type: Transform + - uid: 12108 + components: + - pos: -16.5,36.5 + parent: 1 + type: Transform + - uid: 12109 + components: + - pos: -15.5,36.5 + parent: 1 + type: Transform + - uid: 12110 + components: + - pos: -14.5,36.5 + parent: 1 + type: Transform + - uid: 12111 + components: + - pos: -13.5,36.5 + parent: 1 + type: Transform + - uid: 12112 + components: + - pos: -12.5,36.5 + parent: 1 + type: Transform + - uid: 12113 + components: + - pos: -11.5,36.5 + parent: 1 + type: Transform + - uid: 12114 + components: + - pos: -10.5,36.5 + parent: 1 + type: Transform + - uid: 12115 + components: + - pos: -9.5,36.5 + parent: 1 + type: Transform + - uid: 12116 + components: + - pos: -8.5,36.5 + parent: 1 + type: Transform + - uid: 12117 + components: + - pos: -7.5,36.5 + parent: 1 + type: Transform + - uid: 12118 + components: + - pos: -6.5,36.5 + parent: 1 + type: Transform + - uid: 12119 + components: + - pos: -5.5,36.5 + parent: 1 + type: Transform + - uid: 12120 + components: + - pos: -4.5,36.5 + parent: 1 + type: Transform + - uid: 12121 + components: + - pos: -3.5,36.5 + parent: 1 + type: Transform + - uid: 12122 + components: + - pos: -2.5,36.5 + parent: 1 + type: Transform + - uid: 12123 + components: + - pos: -19.5,32.5 + parent: 1 + type: Transform + - uid: 12124 + components: + - pos: -18.5,32.5 + parent: 1 + type: Transform + - uid: 12125 + components: + - pos: -17.5,32.5 + parent: 1 + type: Transform + - uid: 12126 + components: + - pos: -16.5,32.5 + parent: 1 + type: Transform + - uid: 12127 + components: + - pos: -15.5,32.5 + parent: 1 + type: Transform + - uid: 12128 + components: + - pos: -14.5,32.5 + parent: 1 + type: Transform + - uid: 12129 + components: + - pos: -14.5,31.5 + parent: 1 + type: Transform + - uid: 12130 + components: + - pos: -14.5,30.5 + parent: 1 + type: Transform + - uid: 12131 + components: + - pos: -14.5,29.5 + parent: 1 + type: Transform + - uid: 12132 + components: + - pos: -14.5,28.5 + parent: 1 + type: Transform + - uid: 12133 + components: + - pos: -14.5,27.5 + parent: 1 + type: Transform + - uid: 12134 + components: + - pos: -14.5,33.5 + parent: 1 + type: Transform + - uid: 12135 + components: + - pos: -14.5,34.5 + parent: 1 + type: Transform + - uid: 12136 + components: + - pos: -17.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12137 + components: + - pos: -17.5,25.5 + parent: 1 + type: Transform + - uid: 12138 + components: + - pos: -17.5,24.5 + parent: 1 + type: Transform + - uid: 12139 + components: + - pos: -16.5,24.5 + parent: 1 + type: Transform + - uid: 12140 + components: + - pos: -15.5,24.5 + parent: 1 + type: Transform + - uid: 12141 + components: + - pos: -14.5,24.5 + parent: 1 + type: Transform + - uid: 12142 + components: + - pos: -13.5,24.5 + parent: 1 + type: Transform + - uid: 12143 + components: + - pos: -12.5,24.5 + parent: 1 + type: Transform + - uid: 12144 + components: + - pos: -11.5,24.5 + parent: 1 + type: Transform + - uid: 12145 + components: + - pos: -10.5,24.5 + parent: 1 + type: Transform + - uid: 12146 + components: + - pos: -10.5,23.5 + parent: 1 + type: Transform + - uid: 12147 + components: + - pos: -10.5,22.5 + parent: 1 + type: Transform + - uid: 12148 + components: + - pos: -10.5,21.5 + parent: 1 + type: Transform + - uid: 12149 + components: + - pos: -11.5,21.5 + parent: 1 + type: Transform + - uid: 12150 + components: + - pos: -11.5,20.5 + parent: 1 + type: Transform + - uid: 12151 + components: + - pos: -11.5,19.5 + parent: 1 + type: Transform + - uid: 12152 + components: + - pos: -11.5,18.5 + parent: 1 + type: Transform + - uid: 12153 + components: + - pos: -18.5,24.5 + parent: 1 + type: Transform + - uid: 12154 + components: + - pos: -19.5,24.5 + parent: 1 + type: Transform + - uid: 12155 + components: + - pos: -20.5,24.5 + parent: 1 + type: Transform + - uid: 12156 + components: + - pos: -20.5,23.5 + parent: 1 + type: Transform + - uid: 12157 + components: + - pos: -20.5,22.5 + parent: 1 + type: Transform + - uid: 12158 + components: + - pos: -20.5,21.5 + parent: 1 + type: Transform + - uid: 12159 + components: + - pos: -20.5,20.5 + parent: 1 + type: Transform + - uid: 12160 + components: + - pos: -20.5,19.5 + parent: 1 + type: Transform + - uid: 12161 + components: + - pos: -20.5,18.5 + parent: 1 + type: Transform + - uid: 12162 + components: + - pos: -20.5,17.5 + parent: 1 + type: Transform + - uid: 12163 + components: + - pos: -19.5,18.5 + parent: 1 + type: Transform + - uid: 12164 + components: + - pos: -18.5,18.5 + parent: 1 + type: Transform + - uid: 12165 + components: + - pos: -17.5,18.5 + parent: 1 + type: Transform + - uid: 12166 + components: + - pos: -16.5,18.5 + parent: 1 + type: Transform + - uid: 12167 + components: + - pos: -15.5,18.5 + parent: 1 + type: Transform + - uid: 12168 + components: + - pos: -14.5,18.5 + parent: 1 + type: Transform + - uid: 12169 + components: + - pos: -16.5,19.5 + parent: 1 + type: Transform + - uid: 12170 + components: + - pos: -16.5,20.5 + parent: 1 + type: Transform + - uid: 12171 + components: + - pos: -16.5,21.5 + parent: 1 + type: Transform + - uid: 12172 + components: + - pos: -16.5,22.5 + parent: 1 + type: Transform + - uid: 12173 + components: + - pos: -21.5,23.5 + parent: 1 + type: Transform + - uid: 12174 + components: + - pos: -22.5,23.5 + parent: 1 + type: Transform + - uid: 12175 + components: + - pos: -23.5,23.5 + parent: 1 + type: Transform + - uid: 12176 + components: + - pos: -24.5,23.5 + parent: 1 + type: Transform + - uid: 12177 + components: + - pos: -25.5,23.5 + parent: 1 + type: Transform + - uid: 12178 + components: + - pos: -24.5,22.5 + parent: 1 + type: Transform + - uid: 12179 + components: + - pos: -24.5,21.5 + parent: 1 + type: Transform + - uid: 12180 + components: + - pos: -24.5,20.5 + parent: 1 + type: Transform + - uid: 12181 + components: + - pos: -24.5,19.5 + parent: 1 + type: Transform + - uid: 12182 + components: + - pos: -20.5,27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12183 + components: + - pos: -21.5,27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12184 + components: + - pos: -22.5,27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12185 + components: + - pos: -23.5,27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12186 + components: + - pos: -23.5,28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12187 + components: + - pos: -23.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12188 + components: + - pos: -23.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12189 + components: + - pos: -23.5,31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12190 + components: + - pos: -23.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12191 + components: + - pos: -23.5,33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12192 + components: + - pos: -23.5,34.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12193 + components: + - pos: -23.5,35.5 + parent: 1 + type: Transform + - uid: 12194 + components: + - pos: -23.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12195 + components: + - pos: -23.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12196 + components: + - pos: -24.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12197 + components: + - pos: -25.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12198 + components: + - pos: -26.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12199 + components: + - pos: -27.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12200 + components: + - pos: -27.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12201 + components: + - pos: -27.5,23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12202 + components: + - pos: -27.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12203 + components: + - pos: -27.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12204 + components: + - pos: -27.5,20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12205 + components: + - pos: -27.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12206 + components: + - pos: -27.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12207 + components: + - pos: -27.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12208 + components: + - pos: -26.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12209 + components: + - pos: -25.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12210 + components: + - pos: -28.5,23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12211 + components: + - pos: -25.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12212 + components: + - pos: -26.5,32.5 + parent: 1 + type: Transform + - uid: 12213 + components: + - pos: -27.5,32.5 + parent: 1 + type: Transform + - uid: 12214 + components: + - pos: -28.5,32.5 + parent: 1 + type: Transform + - uid: 12215 + components: + - pos: -28.5,33.5 + parent: 1 + type: Transform + - uid: 12216 + components: + - pos: -29.5,33.5 + parent: 1 + type: Transform + - uid: 12217 + components: + - pos: -30.5,33.5 + parent: 1 + type: Transform + - uid: 12218 + components: + - pos: -30.5,32.5 + parent: 1 + type: Transform + - uid: 12219 + components: + - pos: -30.5,31.5 + parent: 1 + type: Transform + - uid: 12220 + components: + - pos: -30.5,30.5 + parent: 1 + type: Transform + - uid: 12221 + components: + - pos: -30.5,29.5 + parent: 1 + type: Transform + - uid: 12222 + components: + - pos: -30.5,28.5 + parent: 1 + type: Transform + - uid: 12223 + components: + - pos: -30.5,27.5 + parent: 1 + type: Transform + - uid: 12224 + components: + - pos: -30.5,26.5 + parent: 1 + type: Transform + - uid: 12225 + components: + - pos: -30.5,25.5 + parent: 1 + type: Transform + - uid: 12226 + components: + - pos: -30.5,24.5 + parent: 1 + type: Transform + - uid: 12227 + components: + - pos: -30.5,23.5 + parent: 1 + type: Transform + - uid: 12228 + components: + - pos: -30.5,22.5 + parent: 1 + type: Transform + - uid: 12229 + components: + - pos: -30.5,21.5 + parent: 1 + type: Transform + - uid: 12230 + components: + - pos: -30.5,20.5 + parent: 1 + type: Transform + - uid: 12231 + components: + - pos: -30.5,19.5 + parent: 1 + type: Transform + - uid: 12232 + components: + - pos: -30.5,18.5 + parent: 1 + type: Transform + - uid: 12233 + components: + - pos: -30.5,17.5 + parent: 1 + type: Transform + - uid: 12234 + components: + - pos: -27.5,31.5 + parent: 1 + type: Transform + - uid: 12235 + components: + - pos: -27.5,30.5 + parent: 1 + type: Transform + - uid: 12246 + components: + - pos: -8.5,23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12247 + components: + - pos: -7.5,23.5 + parent: 1 + type: Transform + - uid: 12248 + components: + - pos: -6.5,23.5 + parent: 1 + type: Transform + - uid: 12249 + components: + - pos: -5.5,23.5 + parent: 1 + type: Transform + - uid: 12250 + components: + - pos: -4.5,23.5 + parent: 1 + type: Transform + - uid: 12251 + components: + - pos: -3.5,23.5 + parent: 1 + type: Transform + - uid: 12252 + components: + - pos: -5.5,22.5 + parent: 1 + type: Transform + - uid: 12253 + components: + - pos: -5.5,21.5 + parent: 1 + type: Transform + - uid: 12254 + components: + - pos: -5.5,20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12255 + components: + - pos: -5.5,19.5 + parent: 1 + type: Transform + - uid: 12256 + components: + - pos: -5.5,18.5 + parent: 1 + type: Transform + - uid: 12257 + components: + - pos: -5.5,17.5 + parent: 1 + type: Transform + - uid: 12258 + components: + - pos: -4.5,19.5 + parent: 1 + type: Transform + - uid: 12259 + components: + - pos: -3.5,19.5 + parent: 1 + type: Transform + - uid: 12260 + components: + - pos: -2.5,19.5 + parent: 1 + type: Transform + - uid: 12261 + components: + - pos: -1.5,19.5 + parent: 1 + type: Transform + - uid: 12262 + components: + - pos: -1.5,20.5 + parent: 1 + type: Transform + - uid: 12263 + components: + - pos: -1.5,21.5 + parent: 1 + type: Transform + - uid: 12264 + components: + - pos: -1.5,22.5 + parent: 1 + type: Transform + - uid: 12265 + components: + - pos: -1.5,23.5 + parent: 1 + type: Transform + - uid: 12266 + components: + - pos: -1.5,24.5 + parent: 1 + type: Transform + - uid: 12267 + components: + - pos: -1.5,25.5 + parent: 1 + type: Transform + - uid: 12268 + components: + - pos: -1.5,26.5 + parent: 1 + type: Transform + - uid: 12269 + components: + - pos: -1.5,27.5 + parent: 1 + type: Transform + - uid: 12270 + components: + - pos: -1.5,28.5 + parent: 1 + type: Transform + - uid: 12271 + components: + - pos: -1.5,29.5 + parent: 1 + type: Transform + - uid: 12272 + components: + - pos: -1.5,30.5 + parent: 1 + type: Transform + - uid: 12273 + components: + - pos: -1.5,31.5 + parent: 1 + type: Transform + - uid: 12274 + components: + - pos: -1.5,32.5 + parent: 1 + type: Transform + - uid: 12275 + components: + - pos: -1.5,33.5 + parent: 1 + type: Transform + - uid: 12276 + components: + - pos: -1.5,34.5 + parent: 1 + type: Transform + - uid: 12277 + components: + - pos: -5.5,16.5 + parent: 1 + type: Transform + - uid: 12278 + components: + - pos: -5.5,15.5 + parent: 1 + type: Transform + - uid: 12279 + components: + - pos: -6.5,15.5 + parent: 1 + type: Transform + - uid: 12280 + components: + - pos: -7.5,15.5 + parent: 1 + type: Transform + - uid: 12281 + components: + - pos: -8.5,15.5 + parent: 1 + type: Transform + - uid: 12282 + components: + - pos: -9.5,15.5 + parent: 1 + type: Transform + - uid: 12283 + components: + - pos: -10.5,15.5 + parent: 1 + type: Transform + - uid: 12284 + components: + - pos: -11.5,15.5 + parent: 1 + type: Transform + - uid: 12285 + components: + - pos: -12.5,15.5 + parent: 1 + type: Transform + - uid: 12286 + components: + - pos: -4.5,15.5 + parent: 1 + type: Transform + - uid: 12287 + components: + - pos: -3.5,15.5 + parent: 1 + type: Transform + - uid: 12288 + components: + - pos: -2.5,15.5 + parent: 1 + type: Transform + - uid: 12289 + components: + - pos: -1.5,15.5 + parent: 1 + type: Transform + - uid: 12326 + components: + - pos: -35.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12327 + components: + - pos: -36.5,25.5 + parent: 1 + type: Transform + - uid: 12328 + components: + - pos: -37.5,25.5 + parent: 1 + type: Transform + - uid: 12329 + components: + - pos: -38.5,25.5 + parent: 1 + type: Transform + - uid: 12330 + components: + - pos: -39.5,25.5 + parent: 1 + type: Transform + - uid: 12331 + components: + - pos: -40.5,25.5 + parent: 1 + type: Transform + - uid: 12332 + components: + - pos: -41.5,25.5 + parent: 1 + type: Transform + - uid: 12333 + components: + - pos: -42.5,25.5 + parent: 1 + type: Transform + - uid: 12337 + components: + - pos: -38.5,26.5 + parent: 1 + type: Transform + - uid: 12338 + components: + - pos: -38.5,27.5 + parent: 1 + type: Transform + - uid: 12339 + components: + - pos: -38.5,28.5 + parent: 1 + type: Transform + - uid: 12340 + components: + - pos: -38.5,29.5 + parent: 1 + type: Transform + - uid: 12341 + components: + - pos: -38.5,30.5 + parent: 1 + type: Transform + - uid: 12342 + components: + - pos: -38.5,24.5 + parent: 1 + type: Transform + - uid: 12343 + components: + - pos: -38.5,23.5 + parent: 1 + type: Transform + - uid: 12344 + components: + - pos: -38.5,22.5 + parent: 1 + type: Transform + - uid: 12345 + components: + - pos: -38.5,21.5 + parent: 1 + type: Transform + - uid: 12346 + components: + - pos: -38.5,20.5 + parent: 1 + type: Transform + - uid: 12347 + components: + - pos: -38.5,19.5 + parent: 1 + type: Transform + - uid: 12348 + components: + - pos: -38.5,18.5 + parent: 1 + type: Transform + - uid: 12349 + components: + - pos: -38.5,17.5 + parent: 1 + type: Transform + - uid: 12350 + components: + - pos: -37.5,17.5 + parent: 1 + type: Transform + - uid: 12351 + components: + - pos: -37.5,16.5 + parent: 1 + type: Transform + - uid: 12352 + components: + - pos: -37.5,15.5 + parent: 1 + type: Transform + - uid: 12353 + components: + - pos: -38.5,15.5 + parent: 1 + type: Transform + - uid: 12354 + components: + - pos: -39.5,15.5 + parent: 1 + type: Transform + - uid: 12355 + components: + - pos: -40.5,15.5 + parent: 1 + type: Transform + - uid: 12356 + components: + - pos: -41.5,15.5 + parent: 1 + type: Transform + - uid: 12357 + components: + - pos: -42.5,15.5 + parent: 1 + type: Transform + - uid: 12358 + components: + - pos: -43.5,15.5 + parent: 1 + type: Transform + - uid: 12359 + components: + - pos: -44.5,15.5 + parent: 1 + type: Transform + - uid: 12360 + components: + - pos: -45.5,15.5 + parent: 1 + type: Transform + - uid: 12361 + components: + - pos: -46.5,15.5 + parent: 1 + type: Transform + - uid: 12362 + components: + - pos: -47.5,15.5 + parent: 1 + type: Transform + - uid: 12363 + components: + - pos: -48.5,15.5 + parent: 1 + type: Transform + - uid: 12364 + components: + - pos: -49.5,15.5 + parent: 1 + type: Transform + - uid: 12365 + components: + - pos: -50.5,15.5 + parent: 1 + type: Transform + - uid: 12366 + components: + - pos: -52.5,15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12367 + components: + - pos: -51.5,15.5 + parent: 1 + type: Transform + - uid: 12368 + components: + - pos: -49.5,16.5 + parent: 1 + type: Transform + - uid: 12369 + components: + - pos: -49.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12370 + components: + - pos: -47.5,16.5 + parent: 1 + type: Transform + - uid: 12371 + components: + - pos: -47.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12372 + components: + - pos: -49.5,14.5 + parent: 1 + type: Transform + - uid: 12373 + components: + - pos: -49.5,13.5 + parent: 1 + type: Transform + - uid: 12374 + components: + - pos: -50.5,13.5 + parent: 1 + type: Transform + - uid: 12375 + components: + - pos: -51.5,13.5 + parent: 1 + type: Transform + - uid: 12376 + components: + - pos: -52.5,13.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12377 + components: + - pos: -36.5,15.5 + parent: 1 + type: Transform + - uid: 12378 + components: + - pos: -35.5,15.5 + parent: 1 + type: Transform + - uid: 12379 + components: + - pos: -35.5,16.5 + parent: 1 + type: Transform + - uid: 12380 + components: + - pos: -35.5,17.5 + parent: 1 + type: Transform + - uid: 12381 + components: + - pos: -35.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12382 + components: + - pos: -35.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12383 + components: + - pos: -35.5,20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12384 + components: + - pos: -35.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12385 + components: + - pos: -34.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12386 + components: + - pos: -34.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12387 + components: + - pos: -34.5,23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12388 + components: + - pos: -34.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12389 + components: + - pos: -34.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12390 + components: + - pos: -34.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12391 + components: + - pos: -34.5,27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12392 + components: + - pos: -34.5,28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12393 + components: + - pos: -34.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12394 + components: + - pos: -34.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12395 + components: + - pos: -34.5,31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12396 + components: + - pos: -34.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12397 + components: + - pos: -34.5,33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12398 + components: + - pos: -35.5,33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12399 + components: + - pos: -36.5,33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12400 + components: + - pos: -37.5,33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12401 + components: + - pos: -38.5,33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12402 + components: + - pos: -38.5,34.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12543 + components: + - pos: 41.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12544 + components: + - pos: 41.5,42.5 + parent: 1 + type: Transform + - uid: 12545 + components: + - pos: 41.5,43.5 + parent: 1 + type: Transform + - uid: 12546 + components: + - pos: 41.5,44.5 + parent: 1 + type: Transform + - uid: 12547 + components: + - pos: 42.5,44.5 + parent: 1 + type: Transform + - uid: 12548 + components: + - pos: 43.5,44.5 + parent: 1 + type: Transform + - uid: 12549 + components: + - pos: 44.5,44.5 + parent: 1 + type: Transform + - uid: 12550 + components: + - pos: 44.5,43.5 + parent: 1 + type: Transform + - uid: 12551 + components: + - pos: 45.5,43.5 + parent: 1 + type: Transform + - uid: 12552 + components: + - pos: 46.5,43.5 + parent: 1 + type: Transform + - uid: 12553 + components: + - pos: 47.5,43.5 + parent: 1 + type: Transform + - uid: 12554 + components: + - pos: 48.5,43.5 + parent: 1 + type: Transform + - uid: 12555 + components: + - pos: 48.5,42.5 + parent: 1 + type: Transform + - uid: 12556 + components: + - pos: 48.5,41.5 + parent: 1 + type: Transform + - uid: 12557 + components: + - pos: 48.5,40.5 + parent: 1 + type: Transform + - uid: 12558 + components: + - pos: 48.5,39.5 + parent: 1 + type: Transform + - uid: 12559 + components: + - pos: 48.5,38.5 + parent: 1 + type: Transform + - uid: 12560 + components: + - pos: 48.5,37.5 + parent: 1 + type: Transform + - uid: 12561 + components: + - pos: 48.5,36.5 + parent: 1 + type: Transform + - uid: 12562 + components: + - pos: 48.5,35.5 + parent: 1 + type: Transform + - uid: 12563 + components: + - pos: 48.5,34.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12564 + components: + - pos: 47.5,36.5 + parent: 1 + type: Transform + - uid: 12565 + components: + - pos: 46.5,36.5 + parent: 1 + type: Transform + - uid: 12566 + components: + - pos: 45.5,36.5 + parent: 1 + type: Transform + - uid: 12567 + components: + - pos: 44.5,36.5 + parent: 1 + type: Transform + - uid: 12568 + components: + - pos: 43.5,36.5 + parent: 1 + type: Transform + - uid: 12569 + components: + - pos: 42.5,36.5 + parent: 1 + type: Transform + - uid: 12570 + components: + - pos: 41.5,36.5 + parent: 1 + type: Transform + - uid: 12571 + components: + - pos: 40.5,36.5 + parent: 1 + type: Transform + - uid: 12572 + components: + - pos: 39.5,36.5 + parent: 1 + type: Transform + - uid: 12573 + components: + - pos: 38.5,36.5 + parent: 1 + type: Transform + - uid: 12574 + components: + - pos: 37.5,36.5 + parent: 1 + type: Transform + - uid: 12575 + components: + - pos: 36.5,36.5 + parent: 1 + type: Transform + - uid: 12576 + components: + - pos: 35.5,36.5 + parent: 1 + type: Transform + - uid: 12577 + components: + - pos: 34.5,36.5 + parent: 1 + type: Transform + - uid: 12578 + components: + - pos: 34.5,37.5 + parent: 1 + type: Transform + - uid: 12579 + components: + - pos: 34.5,38.5 + parent: 1 + type: Transform + - uid: 12580 + components: + - pos: 34.5,39.5 + parent: 1 + type: Transform + - uid: 12581 + components: + - pos: 34.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12582 + components: + - pos: 35.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12583 + components: + - pos: 36.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12584 + components: + - pos: 37.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12585 + components: + - pos: 38.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12586 + components: + - pos: 39.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12587 + components: + - pos: 39.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12588 + components: + - pos: 39.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12589 + components: + - pos: 39.5,43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12590 + components: + - pos: 39.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12591 + components: + - pos: 40.5,43.5 + parent: 1 + type: Transform + - uid: 12592 + components: + - pos: 38.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12593 + components: + - pos: 38.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12594 + components: + - pos: 38.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12595 + components: + - pos: 38.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12596 + components: + - pos: 38.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12597 + components: + - pos: 39.5,48.5 + parent: 1 + type: Transform + - uid: 12598 + components: + - pos: 40.5,48.5 + parent: 1 + type: Transform + - uid: 12599 + components: + - pos: 41.5,48.5 + parent: 1 + type: Transform + - uid: 12600 + components: + - pos: 42.5,48.5 + parent: 1 + type: Transform + - uid: 12601 + components: + - pos: 43.5,48.5 + parent: 1 + type: Transform + - uid: 12602 + components: + - pos: 42.5,49.5 + parent: 1 + type: Transform + - uid: 12603 + components: + - pos: 42.5,50.5 + parent: 1 + type: Transform + - uid: 12604 + components: + - pos: 42.5,51.5 + parent: 1 + type: Transform + - uid: 12605 + components: + - pos: 43.5,47.5 + parent: 1 + type: Transform + - uid: 12606 + components: + - pos: 43.5,46.5 + parent: 1 + type: Transform + - uid: 12607 + components: + - pos: 44.5,46.5 + parent: 1 + type: Transform + - uid: 12608 + components: + - pos: 45.5,46.5 + parent: 1 + type: Transform + - uid: 12609 + components: + - pos: 43.5,37.5 + parent: 1 + type: Transform + - uid: 12610 + components: + - pos: 43.5,38.5 + parent: 1 + type: Transform + - uid: 12611 + components: + - pos: 43.5,39.5 + parent: 1 + type: Transform + - uid: 12612 + components: + - pos: 43.5,40.5 + parent: 1 + type: Transform + - uid: 12613 + components: + - pos: 43.5,41.5 + parent: 1 + type: Transform + - uid: 12614 + components: + - pos: 43.5,42.5 + parent: 1 + type: Transform + - uid: 12615 + components: + - pos: 43.5,43.5 + parent: 1 + type: Transform + - uid: 12616 + components: + - pos: 46.5,35.5 + parent: 1 + type: Transform + - uid: 12617 + components: + - pos: 46.5,34.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12618 + components: + - pos: 50.5,36.5 + parent: 1 + type: Transform + - uid: 12619 + components: + - pos: 51.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12620 + components: + - pos: 51.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12621 + components: + - pos: 50.5,38.5 + parent: 1 + type: Transform + - uid: 12622 + components: + - pos: 49.5,38.5 + parent: 1 + type: Transform + - uid: 12623 + components: + - pos: 49.5,36.5 + parent: 1 + type: Transform + - uid: 12624 + components: + - pos: 27.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12625 + components: + - pos: 27.5,50.5 + parent: 1 + type: Transform + - uid: 12626 + components: + - pos: 27.5,49.5 + parent: 1 + type: Transform + - uid: 12627 + components: + - pos: 27.5,48.5 + parent: 1 + type: Transform + - uid: 12628 + components: + - pos: 27.5,47.5 + parent: 1 + type: Transform + - uid: 12629 + components: + - pos: 27.5,46.5 + parent: 1 + type: Transform + - uid: 12630 + components: + - pos: 27.5,45.5 + parent: 1 + type: Transform + - uid: 12631 + components: + - pos: 27.5,44.5 + parent: 1 + type: Transform + - uid: 12632 + components: + - pos: 27.5,43.5 + parent: 1 + type: Transform + - uid: 12633 + components: + - pos: 28.5,43.5 + parent: 1 + type: Transform + - uid: 12634 + components: + - pos: 29.5,43.5 + parent: 1 + type: Transform + - uid: 12635 + components: + - pos: 30.5,43.5 + parent: 1 + type: Transform + - uid: 12636 + components: + - pos: 31.5,43.5 + parent: 1 + type: Transform + - uid: 12637 + components: + - pos: 32.5,43.5 + parent: 1 + type: Transform + - uid: 12638 + components: + - pos: 33.5,43.5 + parent: 1 + type: Transform + - uid: 12639 + components: + - pos: 34.5,43.5 + parent: 1 + type: Transform + - uid: 12640 + components: + - pos: 34.5,44.5 + parent: 1 + type: Transform + - uid: 12641 + components: + - pos: 34.5,45.5 + parent: 1 + type: Transform + - uid: 12642 + components: + - pos: 34.5,46.5 + parent: 1 + type: Transform + - uid: 12643 + components: + - pos: 34.5,47.5 + parent: 1 + type: Transform + - uid: 12644 + components: + - pos: 34.5,48.5 + parent: 1 + type: Transform + - uid: 12645 + components: + - pos: 34.5,49.5 + parent: 1 + type: Transform + - uid: 12646 + components: + - pos: 33.5,49.5 + parent: 1 + type: Transform + - uid: 12647 + components: + - pos: 32.5,49.5 + parent: 1 + type: Transform + - uid: 12648 + components: + - pos: 31.5,49.5 + parent: 1 + type: Transform + - uid: 12649 + components: + - pos: 30.5,49.5 + parent: 1 + type: Transform + - uid: 12650 + components: + - pos: 29.5,49.5 + parent: 1 + type: Transform + - uid: 12651 + components: + - pos: 28.5,49.5 + parent: 1 + type: Transform + - uid: 12652 + components: + - pos: 31.5,50.5 + parent: 1 + type: Transform + - uid: 12653 + components: + - pos: 31.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12654 + components: + - pos: 32.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12655 + components: + - pos: 32.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12656 + components: + - pos: 32.5,53.5 + parent: 1 + type: Transform + - uid: 12657 + components: + - pos: 32.5,54.5 + parent: 1 + type: Transform + - uid: 12658 + components: + - pos: 32.5,55.5 + parent: 1 + type: Transform + - uid: 12659 + components: + - pos: 32.5,56.5 + parent: 1 + type: Transform + - uid: 12660 + components: + - pos: 31.5,55.5 + parent: 1 + type: Transform + - uid: 12661 + components: + - pos: 30.5,55.5 + parent: 1 + type: Transform + - uid: 12662 + components: + - pos: 33.5,55.5 + parent: 1 + type: Transform + - uid: 12663 + components: + - pos: 34.5,55.5 + parent: 1 + type: Transform + - uid: 12664 + components: + - pos: 33.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12665 + components: + - pos: 34.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12666 + components: + - pos: 35.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12667 + components: + - pos: 36.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12668 + components: + - pos: 36.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12669 + components: + - pos: 36.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12670 + components: + - pos: 36.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12671 + components: + - pos: 36.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12672 + components: + - pos: 36.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12673 + components: + - pos: 36.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12674 + components: + - pos: 36.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12675 + components: + - pos: 36.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12676 + components: + - pos: 36.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12677 + components: + - pos: 36.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12678 + components: + - pos: 36.5,43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12679 + components: + - pos: 30.5,42.5 + parent: 1 + type: Transform + - uid: 12680 + components: + - pos: 30.5,41.5 + parent: 1 + type: Transform + - uid: 12681 + components: + - pos: 30.5,40.5 + parent: 1 + type: Transform + - uid: 12682 + components: + - pos: 30.5,39.5 + parent: 1 + type: Transform + - uid: 12683 + components: + - pos: 30.5,38.5 + parent: 1 + type: Transform + - uid: 12684 + components: + - pos: 29.5,38.5 + parent: 1 + type: Transform + - uid: 12685 + components: + - pos: 28.5,38.5 + parent: 1 + type: Transform + - uid: 12686 + components: + - pos: 27.5,38.5 + parent: 1 + type: Transform + - uid: 12687 + components: + - pos: 26.5,38.5 + parent: 1 + type: Transform + - uid: 12688 + components: + - pos: 25.5,38.5 + parent: 1 + type: Transform + - uid: 12689 + components: + - pos: 26.5,47.5 + parent: 1 + type: Transform + - uid: 12690 + components: + - pos: 25.5,47.5 + parent: 1 + type: Transform + - uid: 12691 + components: + - pos: 26.5,50.5 + parent: 1 + type: Transform + - uid: 12692 + components: + - pos: 25.5,50.5 + parent: 1 + type: Transform + - uid: 12693 + components: + - pos: 25.5,51.5 + parent: 1 + type: Transform + - uid: 12694 + components: + - pos: 25.5,52.5 + parent: 1 + type: Transform + - uid: 12695 + components: + - pos: 25.5,53.5 + parent: 1 + type: Transform + - uid: 12696 + components: + - pos: 25.5,54.5 + parent: 1 + type: Transform + - uid: 12697 + components: + - pos: 24.5,51.5 + parent: 1 + type: Transform + - uid: 12698 + components: + - pos: 23.5,51.5 + parent: 1 + type: Transform + - uid: 12699 + components: + - pos: 22.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12700 + components: + - pos: 22.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12701 + components: + - pos: 22.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12702 + components: + - pos: 22.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12703 + components: + - pos: 22.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12704 + components: + - pos: 22.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12705 + components: + - pos: 22.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12706 + components: + - pos: 23.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12707 + components: + - pos: 24.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12708 + components: + - pos: 25.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12709 + components: + - pos: 26.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12710 + components: + - pos: 27.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12711 + components: + - pos: 28.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12712 + components: + - pos: 28.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12713 + components: + - pos: 28.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12714 + components: + - pos: 28.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12715 + components: + - pos: 28.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12716 + components: + - pos: 28.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12717 + components: + - pos: 29.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12718 + components: + - pos: 29.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12719 + components: + - pos: 30.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12720 + components: + - pos: 24.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12721 + components: + - pos: 23.5,42.5 + parent: 1 + type: Transform + - uid: 12722 + components: + - pos: 22.5,42.5 + parent: 1 + type: Transform + - uid: 12723 + components: + - pos: 21.5,42.5 + parent: 1 + type: Transform + - uid: 12724 + components: + - pos: 20.5,42.5 + parent: 1 + type: Transform + - uid: 12725 + components: + - pos: 19.5,42.5 + parent: 1 + type: Transform + - uid: 12726 + components: + - pos: 18.5,42.5 + parent: 1 + type: Transform + - uid: 12727 + components: + - pos: 17.5,42.5 + parent: 1 + type: Transform + - uid: 12728 + components: + - pos: 25.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12729 + components: + - pos: 25.5,43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12730 + components: + - pos: 25.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12731 + components: + - pos: 25.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12732 + components: + - pos: 24.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12733 + components: + - pos: 23.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12734 + components: + - pos: 22.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12735 + components: + - pos: 22.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12736 + components: + - pos: 22.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12737 + components: + - pos: 22.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12738 + components: + - pos: 22.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12739 + components: + - pos: 21.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12740 + components: + - pos: 20.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12741 + components: + - pos: 19.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12742 + components: + - pos: 18.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12743 + components: + - pos: 17.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12744 + components: + - pos: 16.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12745 + components: + - pos: 16.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12746 + components: + - pos: 16.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12747 + components: + - pos: 16.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12748 + components: + - pos: 17.5,52.5 + parent: 1 + type: Transform + - uid: 12749 + components: + - pos: 18.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12750 + components: + - pos: 19.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12751 + components: + - pos: 20.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12752 + components: + - pos: 20.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12753 + components: + - pos: 15.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12754 + components: + - pos: 15.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12755 + components: + - pos: 15.5,48.5 + parent: 1 + type: Transform + - uid: 12756 + components: + - pos: 15.5,47.5 + parent: 1 + type: Transform + - uid: 12757 + components: + - pos: 15.5,46.5 + parent: 1 + type: Transform + - uid: 12758 + components: + - pos: 15.5,45.5 + parent: 1 + type: Transform + - uid: 12759 + components: + - pos: 15.5,44.5 + parent: 1 + type: Transform + - uid: 12760 + components: + - pos: 15.5,43.5 + parent: 1 + type: Transform + - uid: 12761 + components: + - pos: 15.5,42.5 + parent: 1 + type: Transform + - uid: 12762 + components: + - pos: 15.5,41.5 + parent: 1 + type: Transform + - uid: 12763 + components: + - pos: 15.5,40.5 + parent: 1 + type: Transform + - uid: 12764 + components: + - pos: 16.5,45.5 + parent: 1 + type: Transform + - uid: 12765 + components: + - pos: 17.5,45.5 + parent: 1 + type: Transform + - uid: 12766 + components: + - pos: 18.5,45.5 + parent: 1 + type: Transform + - uid: 12767 + components: + - pos: 19.5,45.5 + parent: 1 + type: Transform + - uid: 12768 + components: + - pos: 20.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12769 + components: + - pos: 21.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12770 + components: + - pos: 14.5,44.5 + parent: 1 + type: Transform + - uid: 12771 + components: + - pos: 13.5,44.5 + parent: 1 + type: Transform + - uid: 12772 + components: + - pos: 12.5,44.5 + parent: 1 + type: Transform + - uid: 12773 + components: + - pos: 11.5,44.5 + parent: 1 + type: Transform + - uid: 12774 + components: + - pos: 14.5,42.5 + parent: 1 + type: Transform + - uid: 12775 + components: + - pos: 13.5,42.5 + parent: 1 + type: Transform + - uid: 12776 + components: + - pos: 12.5,42.5 + parent: 1 + type: Transform + - uid: 12777 + components: + - pos: 11.5,42.5 + parent: 1 + type: Transform + - uid: 12778 + components: + - pos: 14.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12779 + components: + - pos: 13.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12780 + components: + - pos: 12.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12781 + components: + - pos: 11.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12782 + components: + - pos: 10.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12783 + components: + - pos: 9.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12784 + components: + - pos: 9.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12785 + components: + - pos: 9.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12786 + components: + - pos: 9.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12787 + components: + - pos: 9.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12788 + components: + - pos: 9.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12789 + components: + - pos: 9.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12790 + components: + - pos: 9.5,43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12791 + components: + - pos: 9.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12792 + components: + - pos: 9.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12793 + components: + - pos: 8.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12794 + components: + - pos: 7.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12795 + components: + - pos: 6.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12796 + components: + - pos: 5.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12797 + components: + - pos: 4.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12798 + components: + - pos: 3.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12799 + components: + - pos: 2.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12800 + components: + - pos: 6.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12801 + components: + - pos: 5.5,46.5 + parent: 1 + type: Transform + - uid: 12802 + components: + - pos: 4.5,46.5 + parent: 1 + type: Transform + - uid: 12803 + components: + - pos: 3.5,46.5 + parent: 1 + type: Transform + - uid: 12804 + components: + - pos: 2.5,46.5 + parent: 1 + type: Transform + - uid: 12805 + components: + - pos: 1.5,46.5 + parent: 1 + type: Transform + - uid: 12806 + components: + - pos: 0.5,46.5 + parent: 1 + type: Transform + - uid: 12807 + components: + - pos: 0.5,47.5 + parent: 1 + type: Transform + - uid: 12808 + components: + - pos: 0.5,48.5 + parent: 1 + type: Transform + - uid: 12809 + components: + - pos: 0.5,49.5 + parent: 1 + type: Transform + - uid: 12810 + components: + - pos: 0.5,50.5 + parent: 1 + type: Transform + - uid: 12811 + components: + - pos: 0.5,45.5 + parent: 1 + type: Transform + - uid: 12812 + components: + - pos: 0.5,44.5 + parent: 1 + type: Transform + - uid: 12813 + components: + - pos: 0.5,43.5 + parent: 1 + type: Transform + - uid: 12814 + components: + - pos: 0.5,42.5 + parent: 1 + type: Transform + - uid: 12815 + components: + - pos: 0.5,41.5 + parent: 1 + type: Transform + - uid: 12816 + components: + - pos: 0.5,40.5 + parent: 1 + type: Transform + - uid: 12817 + components: + - pos: 5.5,47.5 + parent: 1 + type: Transform + - uid: 12818 + components: + - pos: 5.5,48.5 + parent: 1 + type: Transform + - uid: 12819 + components: + - pos: 5.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12826 + components: + - pos: 36.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12827 + components: + - pos: 37.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12828 + components: + - pos: 37.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12829 + components: + - pos: 37.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12830 + components: + - pos: 37.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12831 + components: + - pos: 37.5,58.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12832 + components: + - pos: 37.5,59.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12833 + components: + - pos: 37.5,60.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12834 + components: + - pos: 17.5,41.5 + parent: 1 + type: Transform + - uid: 12835 + components: + - pos: 17.5,40.5 + parent: 1 + type: Transform + - uid: 12836 + components: + - pos: 17.5,39.5 + parent: 1 + type: Transform + - uid: 12837 + components: + - pos: 17.5,38.5 + parent: 1 + type: Transform + - uid: 12838 + components: + - pos: 16.5,38.5 + parent: 1 + type: Transform + - uid: 12839 + components: + - pos: 15.5,38.5 + parent: 1 + type: Transform + - uid: 12840 + components: + - pos: 15.5,39.5 + parent: 1 + type: Transform + - uid: 12841 + components: + - pos: 13.5,38.5 + parent: 1 + type: Transform + - uid: 12842 + components: + - pos: 12.5,38.5 + parent: 1 + type: Transform + - uid: 12843 + components: + - pos: 11.5,38.5 + parent: 1 + type: Transform + - uid: 12844 + components: + - pos: 10.5,38.5 + parent: 1 + type: Transform + - uid: 12845 + components: + - pos: 9.5,38.5 + parent: 1 + type: Transform + - uid: 12846 + components: + - pos: 8.5,38.5 + parent: 1 + type: Transform + - uid: 12847 + components: + - pos: 7.5,38.5 + parent: 1 + type: Transform + - uid: 12848 + components: + - pos: 6.5,38.5 + parent: 1 + type: Transform + - uid: 12849 + components: + - pos: 5.5,38.5 + parent: 1 + type: Transform + - uid: 12850 + components: + - pos: 4.5,38.5 + parent: 1 + type: Transform + - uid: 12851 + components: + - pos: 3.5,38.5 + parent: 1 + type: Transform + - uid: 12852 + components: + - pos: 2.5,38.5 + parent: 1 + type: Transform + - uid: 12853 + components: + - pos: 1.5,38.5 + parent: 1 + type: Transform + - uid: 12854 + components: + - pos: 0.5,38.5 + parent: 1 + type: Transform + - uid: 12855 + components: + - pos: -8.5,37.5 + parent: 1 + type: Transform + - uid: 12856 + components: + - pos: 18.5,38.5 + parent: 1 + type: Transform + - uid: 12857 + components: + - pos: 19.5,38.5 + parent: 1 + type: Transform + - uid: 12858 + components: + - pos: 20.5,38.5 + parent: 1 + type: Transform + - uid: 12859 + components: + - pos: 21.5,38.5 + parent: 1 + type: Transform + - uid: 12860 + components: + - pos: 22.5,38.5 + parent: 1 + type: Transform + - uid: 12861 + components: + - pos: 23.5,38.5 + parent: 1 + type: Transform + - uid: 12923 + components: + - pos: 2.5,31.5 + parent: 1 + type: Transform + - uid: 12924 + components: + - pos: 3.5,31.5 + parent: 1 + type: Transform + - uid: 12925 + components: + - pos: 4.5,31.5 + parent: 1 + type: Transform + - uid: 12926 + components: + - pos: 5.5,31.5 + parent: 1 + type: Transform + - uid: 12927 + components: + - pos: 6.5,31.5 + parent: 1 + type: Transform + - uid: 12928 + components: + - pos: 7.5,31.5 + parent: 1 + type: Transform + - uid: 12929 + components: + - pos: 8.5,31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12930 + components: + - pos: 9.5,31.5 + parent: 1 + type: Transform + - uid: 12931 + components: + - pos: 10.5,31.5 + parent: 1 + type: Transform + - uid: 12932 + components: + - pos: 11.5,31.5 + parent: 1 + type: Transform + - uid: 12933 + components: + - pos: 12.5,31.5 + parent: 1 + type: Transform + - uid: 12934 + components: + - pos: 13.5,31.5 + parent: 1 + type: Transform + - uid: 12935 + components: + - pos: 14.5,31.5 + parent: 1 + type: Transform + - uid: 12936 + components: + - pos: 15.5,31.5 + parent: 1 + type: Transform + - uid: 12937 + components: + - pos: 16.5,31.5 + parent: 1 + type: Transform + - uid: 12938 + components: + - pos: 16.5,32.5 + parent: 1 + type: Transform + - uid: 12939 + components: + - pos: 16.5,33.5 + parent: 1 + type: Transform + - uid: 12940 + components: + - pos: 16.5,34.5 + parent: 1 + type: Transform + - uid: 12941 + components: + - pos: 2.5,32.5 + parent: 1 + type: Transform + - uid: 12942 + components: + - pos: 2.5,33.5 + parent: 1 + type: Transform + - uid: 12943 + components: + - pos: 2.5,34.5 + parent: 1 + type: Transform + - uid: 12944 + components: + - pos: 5.5,32.5 + parent: 1 + type: Transform + - uid: 12945 + components: + - pos: 5.5,33.5 + parent: 1 + type: Transform + - uid: 12946 + components: + - pos: 5.5,34.5 + parent: 1 + type: Transform + - uid: 12947 + components: + - pos: 10.5,32.5 + parent: 1 + type: Transform + - uid: 12948 + components: + - pos: 10.5,33.5 + parent: 1 + type: Transform + - uid: 12949 + components: + - pos: 10.5,34.5 + parent: 1 + type: Transform + - uid: 12950 + components: + - pos: 4.5,30.5 + parent: 1 + type: Transform + - uid: 12951 + components: + - pos: 4.5,29.5 + parent: 1 + type: Transform + - uid: 12952 + components: + - pos: 4.5,28.5 + parent: 1 + type: Transform + - uid: 12953 + components: + - pos: 4.5,27.5 + parent: 1 + type: Transform + - uid: 12954 + components: + - pos: 10.5,30.5 + parent: 1 + type: Transform + - uid: 12955 + components: + - pos: 6.5,30.5 + parent: 1 + type: Transform + - uid: 12956 + components: + - pos: 5.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12957 + components: + - pos: 6.5,26.5 + parent: 1 + type: Transform + - uid: 12958 + components: + - pos: 6.5,25.5 + parent: 1 + type: Transform + - uid: 12959 + components: + - pos: 6.5,24.5 + parent: 1 + type: Transform + - uid: 12960 + components: + - pos: 6.5,23.5 + parent: 1 + type: Transform + - uid: 12961 + components: + - pos: 6.5,22.5 + parent: 1 + type: Transform + - uid: 12962 + components: + - pos: 7.5,22.5 + parent: 1 + type: Transform + - uid: 12963 + components: + - pos: 8.5,22.5 + parent: 1 + type: Transform + - uid: 12964 + components: + - pos: 9.5,22.5 + parent: 1 + type: Transform + - uid: 12965 + components: + - pos: 9.5,23.5 + parent: 1 + type: Transform + - uid: 12966 + components: + - pos: 5.5,23.5 + parent: 1 + type: Transform + - uid: 12967 + components: + - pos: 4.5,23.5 + parent: 1 + type: Transform + - uid: 12968 + components: + - pos: 3.5,23.5 + parent: 1 + type: Transform + - uid: 12969 + components: + - pos: 2.5,23.5 + parent: 1 + type: Transform + - uid: 12970 + components: + - pos: 2.5,22.5 + parent: 1 + type: Transform + - uid: 12971 + components: + - pos: 2.5,21.5 + parent: 1 + type: Transform + - uid: 12972 + components: + - pos: 3.5,21.5 + parent: 1 + type: Transform + - uid: 12973 + components: + - pos: 3.5,20.5 + parent: 1 + type: Transform + - uid: 12974 + components: + - pos: 3.5,24.5 + parent: 1 + type: Transform + - uid: 12975 + components: + - pos: 3.5,25.5 + parent: 1 + type: Transform + - uid: 12976 + components: + - pos: 10.5,22.5 + parent: 1 + type: Transform + - uid: 12977 + components: + - pos: 10.5,23.5 + parent: 1 + type: Transform + - uid: 12978 + components: + - pos: 10.5,24.5 + parent: 1 + type: Transform + - uid: 12979 + components: + - pos: 10.5,25.5 + parent: 1 + type: Transform + - uid: 12980 + components: + - pos: 10.5,26.5 + parent: 1 + type: Transform + - uid: 12981 + components: + - pos: 10.5,27.5 + parent: 1 + type: Transform + - uid: 12982 + components: + - pos: 9.5,27.5 + parent: 1 + type: Transform + - uid: 12983 + components: + - pos: 8.5,27.5 + parent: 1 + type: Transform + - uid: 12984 + components: + - pos: 7.5,27.5 + parent: 1 + type: Transform + - uid: 12985 + components: + - pos: 6.5,27.5 + parent: 1 + type: Transform + - uid: 12986 + components: + - pos: 11.5,27.5 + parent: 1 + type: Transform + - uid: 12987 + components: + - pos: 12.5,27.5 + parent: 1 + type: Transform + - uid: 12988 + components: + - pos: 12.5,26.5 + parent: 1 + type: Transform + - uid: 12989 + components: + - pos: 12.5,25.5 + parent: 1 + type: Transform + - uid: 12990 + components: + - pos: 12.5,24.5 + parent: 1 + type: Transform + - uid: 12991 + components: + - pos: 12.5,23.5 + parent: 1 + type: Transform + - uid: 12992 + components: + - pos: 12.5,22.5 + parent: 1 + type: Transform + - uid: 12993 + components: + - pos: 11.5,22.5 + parent: 1 + type: Transform + - uid: 12994 + components: + - pos: 17.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12995 + components: + - pos: 16.5,19.5 + parent: 1 + type: Transform + - uid: 12996 + components: + - pos: 15.5,19.5 + parent: 1 + type: Transform + - uid: 12997 + components: + - pos: 14.5,19.5 + parent: 1 + type: Transform + - uid: 12998 + components: + - pos: 13.5,19.5 + parent: 1 + type: Transform + - uid: 12999 + components: + - pos: 12.5,19.5 + parent: 1 + type: Transform + - uid: 13000 + components: + - pos: 11.5,19.5 + parent: 1 + type: Transform + - uid: 13001 + components: + - pos: 10.5,19.5 + parent: 1 + type: Transform + - uid: 13002 + components: + - pos: 9.5,19.5 + parent: 1 + type: Transform + - uid: 13003 + components: + - pos: 8.5,19.5 + parent: 1 + type: Transform + - uid: 13004 + components: + - pos: 7.5,19.5 + parent: 1 + type: Transform + - uid: 13005 + components: + - pos: 6.5,19.5 + parent: 1 + type: Transform + - uid: 13006 + components: + - pos: 6.5,18.5 + parent: 1 + type: Transform + - uid: 13007 + components: + - pos: 5.5,18.5 + parent: 1 + type: Transform + - uid: 13008 + components: + - pos: 4.5,18.5 + parent: 1 + type: Transform + - uid: 13009 + components: + - pos: 3.5,18.5 + parent: 1 + type: Transform + - uid: 13010 + components: + - pos: 2.5,18.5 + parent: 1 + type: Transform + - uid: 13011 + components: + - pos: 1.5,18.5 + parent: 1 + type: Transform + - uid: 13012 + components: + - pos: 4.5,17.5 + parent: 1 + type: Transform + - uid: 13013 + components: + - pos: 4.5,16.5 + parent: 1 + type: Transform + - uid: 13014 + components: + - pos: 4.5,15.5 + parent: 1 + type: Transform + - uid: 13015 + components: + - pos: 3.5,15.5 + parent: 1 + type: Transform + - uid: 13016 + components: + - pos: 2.5,15.5 + parent: 1 + type: Transform + - uid: 13017 + components: + - pos: 1.5,15.5 + parent: 1 + type: Transform + - uid: 13018 + components: + - pos: 0.5,15.5 + parent: 1 + type: Transform + - uid: 13019 + components: + - pos: 5.5,15.5 + parent: 1 + type: Transform + - uid: 13020 + components: + - pos: 6.5,15.5 + parent: 1 + type: Transform + - uid: 13021 + components: + - pos: 7.5,15.5 + parent: 1 + type: Transform + - uid: 13022 + components: + - pos: 8.5,15.5 + parent: 1 + type: Transform + - uid: 13023 + components: + - pos: 9.5,15.5 + parent: 1 + type: Transform + - uid: 13024 + components: + - pos: 10.5,15.5 + parent: 1 + type: Transform + - uid: 13025 + components: + - pos: 11.5,15.5 + parent: 1 + type: Transform + - uid: 13026 + components: + - pos: 12.5,15.5 + parent: 1 + type: Transform + - uid: 13027 + components: + - pos: 13.5,15.5 + parent: 1 + type: Transform + - uid: 13028 + components: + - pos: 14.5,15.5 + parent: 1 + type: Transform + - uid: 13029 + components: + - pos: 15.5,15.5 + parent: 1 + type: Transform + - uid: 13030 + components: + - pos: 16.5,15.5 + parent: 1 + type: Transform + - uid: 13031 + components: + - pos: 17.5,15.5 + parent: 1 + type: Transform + - uid: 13032 + components: + - pos: 18.5,15.5 + parent: 1 + type: Transform + - uid: 13033 + components: + - pos: 19.5,15.5 + parent: 1 + type: Transform + - uid: 13034 + components: + - pos: 19.5,16.5 + parent: 1 + type: Transform + - uid: 13035 + components: + - pos: 19.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13036 + components: + - pos: 19.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13037 + components: + - pos: 19.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13038 + components: + - pos: 18.5,19.5 + parent: 1 + type: Transform + - uid: 13039 + components: + - pos: 20.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13040 + components: + - pos: 20.5,31.5 + parent: 1 + type: Transform + - uid: 13041 + components: + - pos: 20.5,32.5 + parent: 1 + type: Transform + - uid: 13042 + components: + - pos: 20.5,33.5 + parent: 1 + type: Transform + - uid: 13043 + components: + - pos: 20.5,34.5 + parent: 1 + type: Transform + - uid: 13044 + components: + - pos: 19.5,34.5 + parent: 1 + type: Transform + - uid: 13045 + components: + - pos: 21.5,34.5 + parent: 1 + type: Transform + - uid: 13046 + components: + - pos: 20.5,29.5 + parent: 1 + type: Transform + - uid: 13047 + components: + - pos: 20.5,28.5 + parent: 1 + type: Transform + - uid: 13048 + components: + - pos: 20.5,27.5 + parent: 1 + type: Transform + - uid: 13049 + components: + - pos: 20.5,26.5 + parent: 1 + type: Transform + - uid: 13050 + components: + - pos: 21.5,27.5 + parent: 1 + type: Transform + - uid: 13051 + components: + - pos: 22.5,27.5 + parent: 1 + type: Transform + - uid: 13053 + components: + - pos: 18.5,27.5 + parent: 1 + type: Transform + - uid: 13054 + components: + - pos: 18.5,28.5 + parent: 1 + type: Transform + - uid: 13055 + components: + - pos: 17.5,28.5 + parent: 1 + type: Transform + - uid: 13056 + components: + - pos: 16.5,28.5 + parent: 1 + type: Transform + - uid: 13057 + components: + - pos: 15.5,28.5 + parent: 1 + type: Transform + - uid: 13058 + components: + - pos: 14.5,28.5 + parent: 1 + type: Transform + - uid: 13059 + components: + - pos: 23.5,27.5 + parent: 1 + type: Transform + - uid: 13060 + components: + - pos: 24.5,27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13061 + components: + - pos: 24.5,28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13062 + components: + - pos: 24.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13063 + components: + - pos: 24.5,30.5 + parent: 1 + type: Transform + - uid: 13064 + components: + - pos: 24.5,31.5 + parent: 1 + type: Transform + - uid: 13065 + components: + - pos: 24.5,32.5 + parent: 1 + type: Transform + - uid: 13066 + components: + - pos: 24.5,33.5 + parent: 1 + type: Transform + - uid: 13067 + components: + - pos: 24.5,34.5 + parent: 1 + type: Transform + - uid: 13068 + components: + - pos: 25.5,34.5 + parent: 1 + type: Transform + - uid: 13069 + components: + - pos: 26.5,34.5 + parent: 1 + type: Transform + - uid: 13070 + components: + - pos: 27.5,34.5 + parent: 1 + type: Transform + - uid: 13071 + components: + - pos: 27.5,33.5 + parent: 1 + type: Transform + - uid: 13072 + components: + - pos: 27.5,32.5 + parent: 1 + type: Transform + - uid: 13073 + components: + - pos: 27.5,31.5 + parent: 1 + type: Transform + - uid: 13074 + components: + - pos: 24.5,23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13075 + components: + - pos: 24.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13076 + components: + - pos: 24.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13077 + components: + - pos: 25.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13078 + components: + - pos: 26.5,25.5 + parent: 1 + type: Transform + - uid: 13079 + components: + - pos: 27.5,25.5 + parent: 1 + type: Transform + - uid: 13080 + components: + - pos: 28.5,25.5 + parent: 1 + type: Transform + - uid: 13081 + components: + - pos: 29.5,25.5 + parent: 1 + type: Transform + - uid: 13082 + components: + - pos: 30.5,25.5 + parent: 1 + type: Transform + - uid: 13083 + components: + - pos: 31.5,25.5 + parent: 1 + type: Transform + - uid: 13084 + components: + - pos: 32.5,25.5 + parent: 1 + type: Transform + - uid: 13085 + components: + - pos: 32.5,26.5 + parent: 1 + type: Transform + - uid: 13086 + components: + - pos: 32.5,27.5 + parent: 1 + type: Transform + - uid: 13087 + components: + - pos: 32.5,28.5 + parent: 1 + type: Transform + - uid: 13088 + components: + - pos: 32.5,29.5 + parent: 1 + type: Transform + - uid: 13089 + components: + - pos: 32.5,30.5 + parent: 1 + type: Transform + - uid: 13090 + components: + - pos: 32.5,31.5 + parent: 1 + type: Transform + - uid: 13091 + components: + - pos: 32.5,32.5 + parent: 1 + type: Transform + - uid: 13092 + components: + - pos: 32.5,33.5 + parent: 1 + type: Transform + - uid: 13093 + components: + - pos: 32.5,34.5 + parent: 1 + type: Transform + - uid: 13094 + components: + - pos: 32.5,24.5 + parent: 1 + type: Transform + - uid: 13095 + components: + - pos: 32.5,23.5 + parent: 1 + type: Transform + - uid: 13096 + components: + - pos: 32.5,22.5 + parent: 1 + type: Transform + - uid: 13097 + components: + - pos: 32.5,21.5 + parent: 1 + type: Transform + - uid: 13098 + components: + - pos: 32.5,20.5 + parent: 1 + type: Transform + - uid: 13099 + components: + - pos: 32.5,19.5 + parent: 1 + type: Transform + - uid: 13100 + components: + - pos: 32.5,18.5 + parent: 1 + type: Transform + - uid: 13101 + components: + - pos: 32.5,17.5 + parent: 1 + type: Transform + - uid: 13102 + components: + - pos: 32.5,16.5 + parent: 1 + type: Transform + - uid: 13103 + components: + - pos: 32.5,15.5 + parent: 1 + type: Transform + - uid: 13104 + components: + - pos: 32.5,14.5 + parent: 1 + type: Transform + - uid: 13105 + components: + - pos: 32.5,13.5 + parent: 1 + type: Transform + - uid: 13106 + components: + - pos: 31.5,13.5 + parent: 1 + type: Transform + - uid: 13107 + components: + - pos: 30.5,13.5 + parent: 1 + type: Transform + - uid: 13108 + components: + - pos: 29.5,13.5 + parent: 1 + type: Transform + - uid: 13109 + components: + - pos: 28.5,13.5 + parent: 1 + type: Transform + - uid: 13110 + components: + - pos: 27.5,13.5 + parent: 1 + type: Transform + - uid: 13111 + components: + - pos: 26.5,13.5 + parent: 1 + type: Transform + - uid: 13112 + components: + - pos: 25.5,13.5 + parent: 1 + type: Transform + - uid: 13113 + components: + - pos: 24.5,13.5 + parent: 1 + type: Transform + - uid: 13114 + components: + - pos: 23.5,13.5 + parent: 1 + type: Transform + - uid: 13115 + components: + - pos: 22.5,13.5 + parent: 1 + type: Transform + - uid: 13116 + components: + - pos: 21.5,13.5 + parent: 1 + type: Transform + - uid: 13117 + components: + - pos: 23.5,14.5 + parent: 1 + type: Transform + - uid: 13118 + components: + - pos: 23.5,15.5 + parent: 1 + type: Transform + - uid: 13119 + components: + - pos: 23.5,16.5 + parent: 1 + type: Transform + - uid: 13120 + components: + - pos: 23.5,17.5 + parent: 1 + type: Transform + - uid: 13121 + components: + - pos: 23.5,18.5 + parent: 1 + type: Transform + - uid: 13122 + components: + - pos: 23.5,19.5 + parent: 1 + type: Transform + - uid: 13123 + components: + - pos: 24.5,19.5 + parent: 1 + type: Transform + - uid: 13124 + components: + - pos: 24.5,20.5 + parent: 1 + type: Transform + - uid: 13125 + components: + - pos: 24.5,21.5 + parent: 1 + type: Transform + - uid: 13126 + components: + - pos: 24.5,22.5 + parent: 1 + type: Transform + - uid: 13127 + components: + - pos: 25.5,22.5 + parent: 1 + type: Transform + - uid: 13128 + components: + - pos: 26.5,22.5 + parent: 1 + type: Transform + - uid: 13129 + components: + - pos: 27.5,22.5 + parent: 1 + type: Transform + - uid: 13130 + components: + - pos: 27.5,21.5 + parent: 1 + type: Transform + - uid: 13131 + components: + - pos: 28.5,21.5 + parent: 1 + type: Transform + - uid: 13132 + components: + - pos: 29.5,21.5 + parent: 1 + type: Transform + - uid: 13133 + components: + - pos: 30.5,21.5 + parent: 1 + type: Transform + - uid: 13134 + components: + - pos: 31.5,21.5 + parent: 1 + type: Transform + - uid: 13135 + components: + - pos: 29.5,14.5 + parent: 1 + type: Transform + - uid: 13136 + components: + - pos: 29.5,15.5 + parent: 1 + type: Transform + - uid: 13137 + components: + - pos: 29.5,16.5 + parent: 1 + type: Transform + - uid: 13138 + components: + - pos: 29.5,17.5 + parent: 1 + type: Transform + - uid: 13139 + components: + - pos: 30.5,17.5 + parent: 1 + type: Transform + - uid: 13140 + components: + - pos: 31.5,17.5 + parent: 1 + type: Transform + - uid: 13186 + components: + - pos: 11.5,-5.5 + parent: 1 + type: Transform + - uid: 13187 + components: + - pos: 11.5,-6.5 + parent: 1 + type: Transform + - uid: 13188 + components: + - pos: 11.5,-7.5 + parent: 1 + type: Transform + - uid: 13189 + components: + - pos: 10.5,-7.5 + parent: 1 + type: Transform + - uid: 13190 + components: + - pos: 9.5,-7.5 + parent: 1 + type: Transform + - uid: 13191 + components: + - pos: 8.5,-7.5 + parent: 1 + type: Transform + - uid: 13192 + components: + - pos: 7.5,-7.5 + parent: 1 + type: Transform + - uid: 13193 + components: + - pos: 6.5,-7.5 + parent: 1 + type: Transform + - uid: 13194 + components: + - pos: 5.5,-7.5 + parent: 1 + type: Transform + - uid: 13195 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 13208 + components: + - pos: 1.5,19.5 + parent: 1 + type: Transform + - uid: 13209 + components: + - pos: 0.5,19.5 + parent: 1 + type: Transform + - uid: 13210 + components: + - pos: 0.5,20.5 + parent: 1 + type: Transform + - uid: 13211 + components: + - pos: 0.5,21.5 + parent: 1 + type: Transform + - uid: 13212 + components: + - pos: 0.5,22.5 + parent: 1 + type: Transform + - uid: 13213 + components: + - pos: 0.5,23.5 + parent: 1 + type: Transform + - uid: 13214 + components: + - pos: 0.5,24.5 + parent: 1 + type: Transform + - uid: 13215 + components: + - pos: 0.5,25.5 + parent: 1 + type: Transform + - uid: 13216 + components: + - pos: 0.5,26.5 + parent: 1 + type: Transform + - uid: 13217 + components: + - pos: 0.5,27.5 + parent: 1 + type: Transform + - uid: 13218 + components: + - pos: 0.5,28.5 + parent: 1 + type: Transform + - uid: 13219 + components: + - pos: 0.5,29.5 + parent: 1 + type: Transform + - uid: 13220 + components: + - pos: 0.5,30.5 + parent: 1 + type: Transform + - uid: 13221 + components: + - pos: 0.5,31.5 + parent: 1 + type: Transform + - uid: 13222 + components: + - pos: 0.5,32.5 + parent: 1 + type: Transform + - uid: 13223 + components: + - pos: 0.5,33.5 + parent: 1 + type: Transform + - uid: 13224 + components: + - pos: 0.5,34.5 + parent: 1 + type: Transform + - uid: 13225 + components: + - pos: 15.5,20.5 + parent: 1 + type: Transform + - uid: 13226 + components: + - pos: 15.5,21.5 + parent: 1 + type: Transform + - uid: 13227 + components: + - pos: 15.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13228 + components: + - pos: 14.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13229 + components: + - pos: 14.5,23.5 + parent: 1 + type: Transform + - uid: 13230 + components: + - pos: 14.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13231 + components: + - pos: 15.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13232 + components: + - pos: 16.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13234 + components: + - pos: 16.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13235 + components: + - pos: 17.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13236 + components: + - pos: 28.5,26.5 + parent: 1 + type: Transform + - uid: 13237 + components: + - pos: 28.5,27.5 + parent: 1 + type: Transform + - uid: 13238 + components: + - pos: 28.5,29.5 + parent: 1 + type: Transform + - uid: 13239 + components: + - pos: 28.5,28.5 + parent: 1 + type: Transform + - uid: 13240 + components: + - pos: 23.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13241 + components: + - pos: 22.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13242 + components: + - pos: 21.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13243 + components: + - pos: 20.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13244 + components: + - pos: 19.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13245 + components: + - pos: 24.5,17.5 + parent: 1 + type: Transform + - uid: 13246 + components: + - pos: 25.5,17.5 + parent: 1 + type: Transform + - uid: 13247 + components: + - pos: 27.5,20.5 + parent: 1 + type: Transform + - uid: 13248 + components: + - pos: 27.5,19.5 + parent: 1 + type: Transform + - uid: 13249 + components: + - pos: 33.5,14.5 + parent: 1 + type: Transform + - uid: 13250 + components: + - pos: 34.5,14.5 + parent: 1 + type: Transform + - uid: 13251 + components: + - pos: 35.5,14.5 + parent: 1 + type: Transform + - uid: 13252 + components: + - pos: 36.5,14.5 + parent: 1 + type: Transform + - uid: 13253 + components: + - pos: 37.5,14.5 + parent: 1 + type: Transform + - uid: 13254 + components: + - pos: 38.5,14.5 + parent: 1 + type: Transform + - uid: 13255 + components: + - pos: 39.5,14.5 + parent: 1 + type: Transform + - uid: 13256 + components: + - pos: 40.5,14.5 + parent: 1 + type: Transform + - uid: 13257 + components: + - pos: 41.5,14.5 + parent: 1 + type: Transform + - uid: 13258 + components: + - pos: 42.5,14.5 + parent: 1 + type: Transform + - uid: 13259 + components: + - pos: 43.5,14.5 + parent: 1 + type: Transform + - uid: 13260 + components: + - pos: 44.5,14.5 + parent: 1 + type: Transform + - uid: 13261 + components: + - pos: 45.5,14.5 + parent: 1 + type: Transform + - uid: 13262 + components: + - pos: 46.5,14.5 + parent: 1 + type: Transform + - uid: 13263 + components: + - pos: 47.5,14.5 + parent: 1 + type: Transform + - uid: 13264 + components: + - pos: 48.5,14.5 + parent: 1 + type: Transform + - uid: 13265 + components: + - pos: 49.5,14.5 + parent: 1 + type: Transform + - uid: 13266 + components: + - pos: 49.5,15.5 + parent: 1 + type: Transform + - uid: 13267 + components: + - pos: 50.5,15.5 + parent: 1 + type: Transform + - uid: 13268 + components: + - pos: 51.5,15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13269 + components: + - pos: 48.5,15.5 + parent: 1 + type: Transform + - uid: 13270 + components: + - pos: 48.5,16.5 + parent: 1 + type: Transform + - uid: 13271 + components: + - pos: 48.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13272 + components: + - pos: 46.5,15.5 + parent: 1 + type: Transform + - uid: 13273 + components: + - pos: 46.5,16.5 + parent: 1 + type: Transform + - uid: 13274 + components: + - pos: 46.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13275 + components: + - pos: 49.5,13.5 + parent: 1 + type: Transform + - uid: 13276 + components: + - pos: 50.5,13.5 + parent: 1 + type: Transform + - uid: 13277 + components: + - pos: 51.5,13.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13278 + components: + - pos: 46.5,13.5 + parent: 1 + type: Transform + - uid: 13279 + components: + - pos: 46.5,12.5 + parent: 1 + type: Transform + - uid: 13280 + components: + - pos: -33.5,23.5 + parent: 1 + type: Transform + - uid: 13281 + components: + - pos: -32.5,23.5 + parent: 1 + type: Transform + - uid: 13282 + components: + - pos: -32.5,24.5 + parent: 1 + type: Transform + - uid: 13283 + components: + - pos: -32.5,25.5 + parent: 1 + type: Transform + - uid: 13284 + components: + - pos: -32.5,26.5 + parent: 1 + type: Transform + - uid: 13285 + components: + - pos: -32.5,27.5 + parent: 1 + type: Transform + - uid: 13286 + components: + - pos: -32.5,28.5 + parent: 1 + type: Transform + - uid: 13287 + components: + - pos: -32.5,29.5 + parent: 1 + type: Transform + - uid: 13288 + components: + - pos: -32.5,30.5 + parent: 1 + type: Transform + - uid: 13289 + components: + - pos: -32.5,31.5 + parent: 1 + type: Transform + - uid: 13290 + components: + - pos: -32.5,32.5 + parent: 1 + type: Transform + - uid: 13291 + components: + - pos: -32.5,33.5 + parent: 1 + type: Transform + - uid: 13292 + components: + - pos: -32.5,34.5 + parent: 1 + type: Transform + - uid: 13293 + components: + - pos: -32.5,22.5 + parent: 1 + type: Transform + - uid: 13294 + components: + - pos: -32.5,21.5 + parent: 1 + type: Transform + - uid: 13295 + components: + - pos: -32.5,20.5 + parent: 1 + type: Transform + - uid: 13296 + components: + - pos: -32.5,19.5 + parent: 1 + type: Transform + - uid: 13297 + components: + - pos: -32.5,18.5 + parent: 1 + type: Transform + - uid: 13298 + components: + - pos: -32.5,17.5 + parent: 1 + type: Transform + - uid: 13534 + components: + - pos: -21.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13535 + components: + - pos: -21.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13536 + components: + - pos: -22.5,-2.5 + parent: 1 + type: Transform + - uid: 13537 + components: + - pos: -23.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13538 + components: + - pos: -24.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13539 + components: + - pos: -25.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13540 + components: + - pos: -20.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13541 + components: + - pos: -19.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13542 + components: + - pos: -19.5,-3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13543 + components: + - pos: -19.5,-4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13544 + components: + - pos: -19.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13545 + components: + - pos: -20.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13546 + components: + - pos: -21.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13547 + components: + - pos: -22.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13548 + components: + - pos: -23.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13549 + components: + - pos: -24.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13550 + components: + - pos: -25.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13551 + components: + - pos: -26.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13552 + components: + - pos: -27.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13553 + components: + - pos: -27.5,-4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13554 + components: + - pos: -27.5,-3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13555 + components: + - pos: -27.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13556 + components: + - pos: -27.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13557 + components: + - pos: -27.5,-0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13558 + components: + - pos: -27.5,0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13559 + components: + - pos: -27.5,1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13560 + components: + - pos: -28.5,1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13561 + components: + - pos: -29.5,1.5 + parent: 1 + type: Transform + - uid: 13562 + components: + - pos: -30.5,1.5 + parent: 1 + type: Transform + - uid: 13563 + components: + - pos: -30.5,2.5 + parent: 1 + type: Transform + - uid: 13564 + components: + - pos: -30.5,3.5 + parent: 1 + type: Transform + - uid: 13565 + components: + - pos: -30.5,0.5 + parent: 1 + type: Transform + - uid: 13566 + components: + - pos: -30.5,-0.5 + parent: 1 + type: Transform + - uid: 13567 + components: + - pos: -30.5,-1.5 + parent: 1 + type: Transform + - uid: 13568 + components: + - pos: -30.5,-2.5 + parent: 1 + type: Transform + - uid: 13569 + components: + - pos: -30.5,-3.5 + parent: 1 + type: Transform + - uid: 13570 + components: + - pos: -30.5,-4.5 + parent: 1 + type: Transform + - uid: 13571 + components: + - pos: -30.5,-5.5 + parent: 1 + type: Transform + - uid: 13572 + components: + - pos: -30.5,-6.5 + parent: 1 + type: Transform + - uid: 13573 + components: + - pos: -30.5,-7.5 + parent: 1 + type: Transform + - uid: 13574 + components: + - pos: -29.5,-7.5 + parent: 1 + type: Transform + - uid: 13575 + components: + - pos: -28.5,-7.5 + parent: 1 + type: Transform + - uid: 13576 + components: + - pos: -27.5,-7.5 + parent: 1 + type: Transform + - uid: 13577 + components: + - pos: -26.5,-7.5 + parent: 1 + type: Transform + - uid: 13578 + components: + - pos: -26.5,-6.5 + parent: 1 + type: Transform + - uid: 13579 + components: + - pos: -25.5,-7.5 + parent: 1 + type: Transform + - uid: 13580 + components: + - pos: -24.5,-7.5 + parent: 1 + type: Transform + - uid: 13581 + components: + - pos: -23.5,-7.5 + parent: 1 + type: Transform + - uid: 13582 + components: + - pos: -22.5,-7.5 + parent: 1 + type: Transform + - uid: 13583 + components: + - pos: -21.5,-7.5 + parent: 1 + type: Transform + - uid: 13584 + components: + - pos: -20.5,-7.5 + parent: 1 + type: Transform + - uid: 13585 + components: + - pos: -19.5,-7.5 + parent: 1 + type: Transform + - uid: 13586 + components: + - pos: -18.5,-7.5 + parent: 1 + type: Transform + - uid: 13587 + components: + - pos: -17.5,-7.5 + parent: 1 + type: Transform + - uid: 13588 + components: + - pos: -16.5,-7.5 + parent: 1 + type: Transform + - uid: 13589 + components: + - pos: -16.5,-17.5 + parent: 1 + type: Transform + - uid: 13590 + components: + - pos: -16.5,-16.5 + parent: 1 + type: Transform + - uid: 13591 + components: + - pos: -16.5,-15.5 + parent: 1 + type: Transform + - uid: 13592 + components: + - pos: -16.5,-14.5 + parent: 1 + type: Transform + - uid: 13593 + components: + - pos: -16.5,-13.5 + parent: 1 + type: Transform + - uid: 13594 + components: + - pos: -16.5,-12.5 + parent: 1 + type: Transform + - uid: 13595 + components: + - pos: -17.5,-12.5 + parent: 1 + type: Transform + - uid: 13596 + components: + - pos: -18.5,-12.5 + parent: 1 + type: Transform + - uid: 13597 + components: + - pos: -19.5,-12.5 + parent: 1 + type: Transform + - uid: 13598 + components: + - pos: -20.5,-12.5 + parent: 1 + type: Transform + - uid: 13599 + components: + - pos: -21.5,-12.5 + parent: 1 + type: Transform + - uid: 13600 + components: + - pos: -22.5,-12.5 + parent: 1 + type: Transform + - uid: 13601 + components: + - pos: -23.5,-12.5 + parent: 1 + type: Transform + - uid: 13602 + components: + - pos: -24.5,-12.5 + parent: 1 + type: Transform + - uid: 13603 + components: + - pos: -28.5,-11.5 + parent: 1 + type: Transform + - uid: 13604 + components: + - pos: -31.5,-7.5 + parent: 1 + type: Transform + - uid: 13605 + components: + - pos: -32.5,-7.5 + parent: 1 + type: Transform + - uid: 13606 + components: + - pos: -19.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13607 + components: + - pos: -19.5,-0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13608 + components: + - pos: -19.5,0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13609 + components: + - pos: -19.5,1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13610 + components: + - pos: -19.5,2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13611 + components: + - pos: -19.5,3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13612 + components: + - pos: -19.5,4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13613 + components: + - pos: -19.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13614 + components: + - pos: -19.5,6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13615 + components: + - pos: -19.5,7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13616 + components: + - pos: -18.5,7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13617 + components: + - pos: -17.5,7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13618 + components: + - pos: -16.5,7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13619 + components: + - pos: -15.5,7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13620 + components: + - pos: -15.5,8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13621 + components: + - pos: -15.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13622 + components: + - pos: -15.5,10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13623 + components: + - pos: -15.5,11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13624 + components: + - pos: -21.5,8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13625 + components: + - pos: -22.5,8.5 + parent: 1 + type: Transform + - uid: 13626 + components: + - pos: -23.5,8.5 + parent: 1 + type: Transform + - uid: 13627 + components: + - pos: -24.5,8.5 + parent: 1 + type: Transform + - uid: 13628 + components: + - pos: -25.5,8.5 + parent: 1 + type: Transform + - uid: 13629 + components: + - pos: -26.5,8.5 + parent: 1 + type: Transform + - uid: 13630 + components: + - pos: -27.5,8.5 + parent: 1 + type: Transform + - uid: 13631 + components: + - pos: -28.5,8.5 + parent: 1 + type: Transform + - uid: 13632 + components: + - pos: -24.5,1.5 + parent: 1 + type: Transform + - uid: 13633 + components: + - pos: -24.5,2.5 + parent: 1 + type: Transform + - uid: 13634 + components: + - pos: -24.5,3.5 + parent: 1 + type: Transform + - uid: 13635 + components: + - pos: -24.5,4.5 + parent: 1 + type: Transform + - uid: 13636 + components: + - pos: -24.5,5.5 + parent: 1 + type: Transform + - uid: 13637 + components: + - pos: -24.5,6.5 + parent: 1 + type: Transform + - uid: 13638 + components: + - pos: -24.5,7.5 + parent: 1 + type: Transform + - uid: 13640 + components: + - pos: -24.5,10.5 + parent: 1 + type: Transform + - uid: 13641 + components: + - pos: -24.5,11.5 + parent: 1 + type: Transform + - uid: 13642 + components: + - pos: -23.5,11.5 + parent: 1 + type: Transform + - uid: 13643 + components: + - pos: -22.5,11.5 + parent: 1 + type: Transform + - uid: 13644 + components: + - pos: -22.5,12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13645 + components: + - pos: -22.5,13.5 + parent: 1 + type: Transform + - uid: 13646 + components: + - pos: -23.5,13.5 + parent: 1 + type: Transform + - uid: 13647 + components: + - pos: -24.5,13.5 + parent: 1 + type: Transform + - uid: 13648 + components: + - pos: -25.5,13.5 + parent: 1 + type: Transform + - uid: 13649 + components: + - pos: -26.5,13.5 + parent: 1 + type: Transform + - uid: 13650 + components: + - pos: -27.5,13.5 + parent: 1 + type: Transform + - uid: 13651 + components: + - pos: -28.5,13.5 + parent: 1 + type: Transform + - uid: 13652 + components: + - pos: -29.5,13.5 + parent: 1 + type: Transform + - uid: 13653 + components: + - pos: -30.5,13.5 + parent: 1 + type: Transform + - uid: 13654 + components: + - pos: -30.5,12.5 + parent: 1 + type: Transform + - uid: 13655 + components: + - pos: -30.5,11.5 + parent: 1 + type: Transform + - uid: 13656 + components: + - pos: -30.5,10.5 + parent: 1 + type: Transform + - uid: 13657 + components: + - pos: -30.5,9.5 + parent: 1 + type: Transform + - uid: 13658 + components: + - pos: -30.5,8.5 + parent: 1 + type: Transform + - uid: 13659 + components: + - pos: -30.5,7.5 + parent: 1 + type: Transform + - uid: 13660 + components: + - pos: -30.5,6.5 + parent: 1 + type: Transform + - uid: 13661 + components: + - pos: -21.5,13.5 + parent: 1 + type: Transform + - uid: 13662 + components: + - pos: -20.5,13.5 + parent: 1 + type: Transform + - uid: 13663 + components: + - pos: -19.5,13.5 + parent: 1 + type: Transform + - uid: 13664 + components: + - pos: -18.5,13.5 + parent: 1 + type: Transform + - uid: 13665 + components: + - pos: -17.5,13.5 + parent: 1 + type: Transform + - uid: 13666 + components: + - pos: -16.5,13.5 + parent: 1 + type: Transform + - uid: 13667 + components: + - pos: -15.5,13.5 + parent: 1 + type: Transform + - uid: 13668 + components: + - pos: -14.5,13.5 + parent: 1 + type: Transform + - uid: 13669 + components: + - pos: -13.5,13.5 + parent: 1 + type: Transform + - uid: 13670 + components: + - pos: -12.5,13.5 + parent: 1 + type: Transform + - uid: 13671 + components: + - pos: -11.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13672 + components: + - pos: -11.5,4.5 + parent: 1 + type: Transform + - uid: 13673 + components: + - pos: -11.5,3.5 + parent: 1 + type: Transform + - uid: 13674 + components: + - pos: -11.5,2.5 + parent: 1 + type: Transform + - uid: 13675 + components: + - pos: -11.5,1.5 + parent: 1 + type: Transform + - uid: 13676 + components: + - pos: -11.5,0.5 + parent: 1 + type: Transform + - uid: 13677 + components: + - pos: -11.5,-0.5 + parent: 1 + type: Transform + - uid: 13678 + components: + - pos: -11.5,-1.5 + parent: 1 + type: Transform + - uid: 13679 + components: + - pos: -11.5,-2.5 + parent: 1 + type: Transform + - uid: 13680 + components: + - pos: -11.5,-3.5 + parent: 1 + type: Transform + - uid: 13681 + components: + - pos: -11.5,-4.5 + parent: 1 + type: Transform + - uid: 13682 + components: + - pos: -11.5,-5.5 + parent: 1 + type: Transform + - uid: 13683 + components: + - pos: -12.5,-3.5 + parent: 1 + type: Transform + - uid: 13684 + components: + - pos: -13.5,-3.5 + parent: 1 + type: Transform + - uid: 13685 + components: + - pos: -14.5,-3.5 + parent: 1 + type: Transform + - uid: 13686 + components: + - pos: -15.5,-3.5 + parent: 1 + type: Transform + - uid: 13687 + components: + - pos: -16.5,-3.5 + parent: 1 + type: Transform + - uid: 13688 + components: + - pos: -17.5,-3.5 + parent: 1 + type: Transform + - uid: 13689 + components: + - pos: -12.5,0.5 + parent: 1 + type: Transform + - uid: 13690 + components: + - pos: -13.5,0.5 + parent: 1 + type: Transform + - uid: 13691 + components: + - pos: -14.5,0.5 + parent: 1 + type: Transform + - uid: 13692 + components: + - pos: -15.5,0.5 + parent: 1 + type: Transform + - uid: 13693 + components: + - pos: -16.5,0.5 + parent: 1 + type: Transform + - uid: 13694 + components: + - pos: -17.5,0.5 + parent: 1 + type: Transform + - uid: 13695 + components: + - pos: -12.5,4.5 + parent: 1 + type: Transform + - uid: 13696 + components: + - pos: -13.5,4.5 + parent: 1 + type: Transform + - uid: 13697 + components: + - pos: -14.5,4.5 + parent: 1 + type: Transform + - uid: 13698 + components: + - pos: -15.5,4.5 + parent: 1 + type: Transform + - uid: 13699 + components: + - pos: -16.5,4.5 + parent: 1 + type: Transform + - uid: 13700 + components: + - pos: -17.5,4.5 + parent: 1 + type: Transform + - uid: 13701 + components: + - pos: -10.5,4.5 + parent: 1 + type: Transform + - uid: 13702 + components: + - pos: -9.5,4.5 + parent: 1 + type: Transform + - uid: 13703 + components: + - pos: -9.5,5.5 + parent: 1 + type: Transform + - uid: 13704 + components: + - pos: -9.5,6.5 + parent: 1 + type: Transform + - uid: 13705 + components: + - pos: -9.5,7.5 + parent: 1 + type: Transform + - uid: 13706 + components: + - pos: -9.5,8.5 + parent: 1 + type: Transform + - uid: 13707 + components: + - pos: -8.5,8.5 + parent: 1 + type: Transform + - uid: 13708 + components: + - pos: -8.5,9.5 + parent: 1 + type: Transform + - uid: 13709 + components: + - pos: -8.5,10.5 + parent: 1 + type: Transform + - uid: 13710 + components: + - pos: -8.5,11.5 + parent: 1 + type: Transform + - uid: 13711 + components: + - pos: -9.5,11.5 + parent: 1 + type: Transform + - uid: 13712 + components: + - pos: -10.5,11.5 + parent: 1 + type: Transform + - uid: 13713 + components: + - pos: -11.5,11.5 + parent: 1 + type: Transform + - uid: 13714 + components: + - pos: -12.5,11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13715 + components: + - pos: -13.5,11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13716 + components: + - pos: -13.5,10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13717 + components: + - pos: -7.5,11.5 + parent: 1 + type: Transform + - uid: 13718 + components: + - pos: -6.5,11.5 + parent: 1 + type: Transform + - uid: 13719 + components: + - pos: -8.5,4.5 + parent: 1 + type: Transform + - uid: 13720 + components: + - pos: -7.5,4.5 + parent: 1 + type: Transform + - uid: 13721 + components: + - pos: -6.5,4.5 + parent: 1 + type: Transform + - uid: 13722 + components: + - pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 13723 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 13724 + components: + - pos: -4.5,5.5 + parent: 1 + type: Transform + - uid: 13725 + components: + - pos: -4.5,6.5 + parent: 1 + type: Transform + - uid: 13726 + components: + - pos: -4.5,7.5 + parent: 1 + type: Transform + - uid: 13727 + components: + - pos: -4.5,8.5 + parent: 1 + type: Transform + - uid: 13728 + components: + - pos: -4.5,9.5 + parent: 1 + type: Transform + - uid: 13729 + components: + - pos: -4.5,10.5 + parent: 1 + type: Transform + - uid: 13730 + components: + - pos: -4.5,11.5 + parent: 1 + type: Transform + - uid: 13731 + components: + - pos: -3.5,11.5 + parent: 1 + type: Transform + - uid: 13732 + components: + - pos: -2.5,11.5 + parent: 1 + type: Transform + - uid: 13733 + components: + - pos: -1.5,11.5 + parent: 1 + type: Transform + - uid: 13734 + components: + - pos: -0.5,11.5 + parent: 1 + type: Transform + - uid: 13735 + components: + - pos: 0.5,11.5 + parent: 1 + type: Transform + - uid: 13736 + components: + - pos: 1.5,11.5 + parent: 1 + type: Transform + - uid: 13737 + components: + - pos: 2.5,11.5 + parent: 1 + type: Transform + - uid: 13738 + components: + - pos: 2.5,10.5 + parent: 1 + type: Transform + - uid: 13739 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 13740 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 13741 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 13742 + components: + - pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 13743 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 13744 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 13745 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 13746 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 13747 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 13748 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 13749 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 13750 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 13751 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 13752 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 13753 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 13754 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 13755 + components: + - pos: 2.5,-6.5 + parent: 1 + type: Transform + - uid: 13756 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 13757 + components: + - pos: 1.5,-7.5 + parent: 1 + type: Transform + - uid: 13758 + components: + - pos: 0.5,-7.5 + parent: 1 + type: Transform + - uid: 13759 + components: + - pos: -0.5,-7.5 + parent: 1 + type: Transform + - uid: 13760 + components: + - pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 13761 + components: + - pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 13762 + components: + - pos: -3.5,-7.5 + parent: 1 + type: Transform + - uid: 13763 + components: + - pos: -4.5,-7.5 + parent: 1 + type: Transform + - uid: 13764 + components: + - pos: -5.5,-7.5 + parent: 1 + type: Transform + - uid: 13765 + components: + - pos: -6.5,-7.5 + parent: 1 + type: Transform + - uid: 13766 + components: + - pos: -7.5,-7.5 + parent: 1 + type: Transform + - uid: 13767 + components: + - pos: -8.5,-7.5 + parent: 1 + type: Transform + - uid: 13768 + components: + - pos: -9.5,-7.5 + parent: 1 + type: Transform + - uid: 13769 + components: + - pos: -10.5,-7.5 + parent: 1 + type: Transform + - uid: 13770 + components: + - pos: -11.5,-7.5 + parent: 1 + type: Transform + - uid: 13771 + components: + - pos: -12.5,-7.5 + parent: 1 + type: Transform + - uid: 13772 + components: + - pos: -13.5,-7.5 + parent: 1 + type: Transform + - uid: 13773 + components: + - pos: -14.5,-7.5 + parent: 1 + type: Transform + - uid: 13774 + components: + - pos: -3.5,-6.5 + parent: 1 + type: Transform + - uid: 13775 + components: + - pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 13776 + components: + - pos: -3.5,-4.5 + parent: 1 + type: Transform + - uid: 13777 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 13778 + components: + - pos: -4.5,-3.5 + parent: 1 + type: Transform + - uid: 13779 + components: + - pos: -5.5,-3.5 + parent: 1 + type: Transform + - uid: 13780 + components: + - pos: -6.5,-3.5 + parent: 1 + type: Transform + - uid: 13781 + components: + - pos: -7.5,-3.5 + parent: 1 + type: Transform + - uid: 13782 + components: + - pos: -8.5,-3.5 + parent: 1 + type: Transform + - uid: 13783 + components: + - pos: -9.5,-3.5 + parent: 1 + type: Transform + - uid: 13784 + components: + - pos: -10.5,-3.5 + parent: 1 + type: Transform + - uid: 13785 + components: + - pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 13786 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 13787 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 13788 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 13789 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 13790 + components: + - pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 13791 + components: + - pos: -3.5,-1.5 + parent: 1 + type: Transform + - uid: 13792 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 13794 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 13795 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 13796 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 13797 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 13798 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 13799 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 13800 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 13801 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 13802 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 13803 + components: + - pos: -8.5,3.5 + parent: 1 + type: Transform + - uid: 13804 + components: + - pos: -8.5,2.5 + parent: 1 + type: Transform + - uid: 13805 + components: + - pos: -8.5,1.5 + parent: 1 + type: Transform + - uid: 13806 + components: + - pos: -8.5,0.5 + parent: 1 + type: Transform + - uid: 13807 + components: + - pos: -8.5,-0.5 + parent: 1 + type: Transform + - uid: 13808 + components: + - pos: -8.5,-1.5 + parent: 1 + type: Transform + - uid: 13809 + components: + - pos: -8.5,-2.5 + parent: 1 + type: Transform + - uid: 13810 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 13811 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 13812 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 13813 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 13814 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 13815 + components: + - pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 13816 + components: + - pos: -2.5,8.5 + parent: 1 + type: Transform + - uid: 13817 + components: + - pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 13818 + components: + - pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 13819 + components: + - pos: 0.5,8.5 + parent: 1 + type: Transform + - uid: 13820 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform + - uid: 13821 + components: + - pos: -3.5,12.5 + parent: 1 + type: Transform + - uid: 13822 + components: + - pos: -3.5,13.5 + parent: 1 + type: Transform + - uid: 13823 + components: + - pos: -4.5,13.5 + parent: 1 + type: Transform + - uid: 13824 + components: + - pos: -5.5,13.5 + parent: 1 + type: Transform + - uid: 13825 + components: + - pos: -6.5,13.5 + parent: 1 + type: Transform + - uid: 13826 + components: + - pos: -7.5,13.5 + parent: 1 + type: Transform + - uid: 13827 + components: + - pos: -8.5,13.5 + parent: 1 + type: Transform + - uid: 13828 + components: + - pos: -9.5,13.5 + parent: 1 + type: Transform + - uid: 13829 + components: + - pos: -10.5,13.5 + parent: 1 + type: Transform + - uid: 13830 + components: + - pos: -2.5,13.5 + parent: 1 + type: Transform + - uid: 13831 + components: + - pos: -1.5,13.5 + parent: 1 + type: Transform + - uid: 13832 + components: + - pos: -0.5,13.5 + parent: 1 + type: Transform + - uid: 13833 + components: + - pos: 0.5,13.5 + parent: 1 + type: Transform + - uid: 13834 + components: + - pos: 1.5,13.5 + parent: 1 + type: Transform + - uid: 13835 + components: + - pos: 2.5,13.5 + parent: 1 + type: Transform + - uid: 13836 + components: + - pos: 3.5,13.5 + parent: 1 + type: Transform + - uid: 13837 + components: + - pos: 4.5,13.5 + parent: 1 + type: Transform + - uid: 13838 + components: + - pos: 5.5,13.5 + parent: 1 + type: Transform + - uid: 13839 + components: + - pos: 6.5,13.5 + parent: 1 + type: Transform + - uid: 13840 + components: + - pos: 7.5,13.5 + parent: 1 + type: Transform + - uid: 13841 + components: + - pos: 8.5,13.5 + parent: 1 + type: Transform + - uid: 13842 + components: + - pos: 9.5,13.5 + parent: 1 + type: Transform + - uid: 13843 + components: + - pos: 10.5,13.5 + parent: 1 + type: Transform + - uid: 13844 + components: + - pos: 11.5,13.5 + parent: 1 + type: Transform + - uid: 13845 + components: + - pos: 12.5,13.5 + parent: 1 + type: Transform + - uid: 13846 + components: + - pos: 13.5,13.5 + parent: 1 + type: Transform + - uid: 13847 + components: + - pos: 14.5,13.5 + parent: 1 + type: Transform + - uid: 13848 + components: + - pos: 15.5,13.5 + parent: 1 + type: Transform + - uid: 13849 + components: + - pos: 16.5,13.5 + parent: 1 + type: Transform + - uid: 13850 + components: + - pos: 17.5,13.5 + parent: 1 + type: Transform + - uid: 13851 + components: + - pos: 18.5,13.5 + parent: 1 + type: Transform + - uid: 13887 + components: + - pos: 10.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13888 + components: + - pos: 10.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13889 + components: + - pos: 9.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13890 + components: + - pos: 8.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13891 + components: + - pos: 7.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13892 + components: + - pos: 7.5,64.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13893 + components: + - pos: 7.5,65.5 + parent: 1 + type: Transform + - uid: 13894 + components: + - pos: 7.5,66.5 + parent: 1 + type: Transform + - uid: 13895 + components: + - pos: 10.5,61.5 + parent: 1 + type: Transform + - uid: 13896 + components: + - pos: 9.5,61.5 + parent: 1 + type: Transform + - uid: 13897 + components: + - pos: 8.5,61.5 + parent: 1 + type: Transform + - uid: 13898 + components: + - pos: 7.5,61.5 + parent: 1 + type: Transform + - uid: 13899 + components: + - pos: 7.5,60.5 + parent: 1 + type: Transform + - uid: 13900 + components: + - pos: 6.5,60.5 + parent: 1 + type: Transform + - uid: 13901 + components: + - pos: 5.5,60.5 + parent: 1 + type: Transform + - uid: 13902 + components: + - pos: 4.5,60.5 + parent: 1 + type: Transform + - uid: 13903 + components: + - pos: 3.5,60.5 + parent: 1 + type: Transform + - uid: 13904 + components: + - pos: 2.5,60.5 + parent: 1 + type: Transform + - uid: 13905 + components: + - pos: 2.5,61.5 + parent: 1 + type: Transform + - uid: 13906 + components: + - pos: 2.5,62.5 + parent: 1 + type: Transform + - uid: 13907 + components: + - pos: 2.5,63.5 + parent: 1 + type: Transform + - uid: 13908 + components: + - pos: 1.5,63.5 + parent: 1 + type: Transform + - uid: 13909 + components: + - pos: 0.5,63.5 + parent: 1 + type: Transform + - uid: 13910 + components: + - pos: 0.5,64.5 + parent: 1 + type: Transform + - uid: 13911 + components: + - pos: 0.5,65.5 + parent: 1 + type: Transform + - uid: 13912 + components: + - pos: 0.5,66.5 + parent: 1 + type: Transform + - uid: 13913 + components: + - pos: 1.5,66.5 + parent: 1 + type: Transform + - uid: 13914 + components: + - pos: 2.5,66.5 + parent: 1 + type: Transform + - uid: 13915 + components: + - pos: 3.5,66.5 + parent: 1 + type: Transform + - uid: 13916 + components: + - pos: 4.5,66.5 + parent: 1 + type: Transform + - uid: 13917 + components: + - pos: 5.5,66.5 + parent: 1 + type: Transform + - uid: 13918 + components: + - pos: 6.5,66.5 + parent: 1 + type: Transform + - uid: 13919 + components: + - pos: 0.5,62.5 + parent: 1 + type: Transform + - uid: 13920 + components: + - pos: 0.5,61.5 + parent: 1 + type: Transform + - uid: 13921 + components: + - pos: 0.5,60.5 + parent: 1 + type: Transform + - uid: 13922 + components: + - pos: 0.5,59.5 + parent: 1 + type: Transform + - uid: 13923 + components: + - pos: 0.5,58.5 + parent: 1 + type: Transform + - uid: 13924 + components: + - pos: 0.5,57.5 + parent: 1 + type: Transform + - uid: 13925 + components: + - pos: 0.5,56.5 + parent: 1 + type: Transform + - uid: 13926 + components: + - pos: 0.5,55.5 + parent: 1 + type: Transform + - uid: 13927 + components: + - pos: 0.5,54.5 + parent: 1 + type: Transform + - uid: 13928 + components: + - pos: 0.5,53.5 + parent: 1 + type: Transform + - uid: 13929 + components: + - pos: 0.5,52.5 + parent: 1 + type: Transform + - uid: 13930 + components: + - pos: 1.5,56.5 + parent: 1 + type: Transform + - uid: 13931 + components: + - pos: 2.5,56.5 + parent: 1 + type: Transform + - uid: 13932 + components: + - pos: 3.5,56.5 + parent: 1 + type: Transform + - uid: 13933 + components: + - pos: 4.5,56.5 + parent: 1 + type: Transform + - uid: 13934 + components: + - pos: 5.5,56.5 + parent: 1 + type: Transform + - uid: 13935 + components: + - pos: 6.5,56.5 + parent: 1 + type: Transform + - uid: 13936 + components: + - pos: 7.5,56.5 + parent: 1 + type: Transform + - uid: 13937 + components: + - pos: 8.5,56.5 + parent: 1 + type: Transform + - uid: 13938 + components: + - pos: 9.5,56.5 + parent: 1 + type: Transform + - uid: 13939 + components: + - pos: 10.5,56.5 + parent: 1 + type: Transform + - uid: 13940 + components: + - pos: 11.5,56.5 + parent: 1 + type: Transform + - uid: 13941 + components: + - pos: 12.5,56.5 + parent: 1 + type: Transform + - uid: 13942 + components: + - pos: 13.5,56.5 + parent: 1 + type: Transform + - uid: 13943 + components: + - pos: 14.5,56.5 + parent: 1 + type: Transform + - uid: 13944 + components: + - pos: 14.5,57.5 + parent: 1 + type: Transform + - uid: 13945 + components: + - pos: 14.5,58.5 + parent: 1 + type: Transform + - uid: 13946 + components: + - pos: 14.5,59.5 + parent: 1 + type: Transform + - uid: 13947 + components: + - pos: 14.5,60.5 + parent: 1 + type: Transform + - uid: 13948 + components: + - pos: 14.5,61.5 + parent: 1 + type: Transform + - uid: 13949 + components: + - pos: 13.5,61.5 + parent: 1 + type: Transform + - uid: 13950 + components: + - pos: 12.5,61.5 + parent: 1 + type: Transform + - uid: 13951 + components: + - pos: 11.5,61.5 + parent: 1 + type: Transform + - uid: 13952 + components: + - pos: 10.5,61.5 + parent: 1 + type: Transform + - uid: 13953 + components: + - pos: 15.5,58.5 + parent: 1 + type: Transform + - uid: 13954 + components: + - pos: 16.5,58.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13955 + components: + - pos: 17.5,58.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13956 + components: + - pos: 18.5,58.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13957 + components: + - pos: 18.5,59.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13958 + components: + - pos: 18.5,60.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13959 + components: + - pos: 18.5,61.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13960 + components: + - pos: 18.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13961 + components: + - pos: 18.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13962 + components: + - pos: 17.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13963 + components: + - pos: 16.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13964 + components: + - pos: 15.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13965 + components: + - pos: 14.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13966 + components: + - pos: 13.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13967 + components: + - pos: 12.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13968 + components: + - pos: 11.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13969 + components: + - pos: 14.5,55.5 + parent: 1 + type: Transform + - uid: 13970 + components: + - pos: 14.5,54.5 + parent: 1 + type: Transform + - uid: 13971 + components: + - pos: 14.5,53.5 + parent: 1 + type: Transform + - uid: 13972 + components: + - pos: 14.5,52.5 + parent: 1 + type: Transform + - uid: 13973 + components: + - pos: 13.5,52.5 + parent: 1 + type: Transform + - uid: 13974 + components: + - pos: 12.5,52.5 + parent: 1 + type: Transform + - uid: 13975 + components: + - pos: 11.5,52.5 + parent: 1 + type: Transform + - uid: 13976 + components: + - pos: 10.5,52.5 + parent: 1 + type: Transform + - uid: 13977 + components: + - pos: 9.5,52.5 + parent: 1 + type: Transform + - uid: 13978 + components: + - pos: 8.5,52.5 + parent: 1 + type: Transform + - uid: 13979 + components: + - pos: 7.5,52.5 + parent: 1 + type: Transform + - uid: 13980 + components: + - pos: 6.5,52.5 + parent: 1 + type: Transform + - uid: 13981 + components: + - pos: 5.5,52.5 + parent: 1 + type: Transform + - uid: 13982 + components: + - pos: 4.5,52.5 + parent: 1 + type: Transform + - uid: 13983 + components: + - pos: 4.5,53.5 + parent: 1 + type: Transform + - uid: 13984 + components: + - pos: 4.5,54.5 + parent: 1 + type: Transform + - uid: 13985 + components: + - pos: 4.5,55.5 + parent: 1 + type: Transform + - uid: 13986 + components: + - pos: 19.5,58.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13987 + components: + - pos: 19.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13988 + components: + - pos: 19.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13989 + components: + - pos: 18.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13990 + components: + - pos: 17.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13991 + components: + - pos: 16.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13992 + components: + - pos: 16.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13993 + components: + - pos: 16.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14446 + components: + - pos: 32.5,6.5 + parent: 1 + type: Transform + - uid: 15386 + components: + - pos: -35.5,8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15387 + components: + - pos: -35.5,9.5 + parent: 1 + type: Transform + - uid: 15388 + components: + - pos: -35.5,10.5 + parent: 1 + type: Transform + - uid: 15389 + components: + - pos: -45.5,14.5 + parent: 1 + type: Transform + - uid: 15390 + components: + - pos: -45.5,13.5 + parent: 1 + type: Transform + - uid: 15391 + components: + - pos: -35.5,12.5 + parent: 1 + type: Transform + - uid: 15392 + components: + - pos: -35.5,13.5 + parent: 1 + type: Transform + - uid: 15393 + components: + - pos: -36.5,13.5 + parent: 1 + type: Transform + - uid: 15394 + components: + - pos: -37.5,13.5 + parent: 1 + type: Transform + - uid: 15395 + components: + - pos: -38.5,13.5 + parent: 1 + type: Transform + - uid: 15396 + components: + - pos: -39.5,13.5 + parent: 1 + type: Transform + - uid: 15397 + components: + - pos: -40.5,13.5 + parent: 1 + type: Transform + - uid: 15398 + components: + - pos: -34.5,10.5 + parent: 1 + type: Transform + - uid: 15399 + components: + - pos: -33.5,10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 16385 + components: + - pos: -12.5,-43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 16386 + components: + - pos: -11.5,-43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 16387 + components: + - pos: -10.5,-43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 16388 + components: + - pos: 11.5,-43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 16389 + components: + - pos: 10.5,-43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 16390 + components: + - pos: 9.5,-43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 17312 + components: + - pos: 5.5,80.5 + parent: 1 + type: Transform + - uid: 17313 + components: + - pos: 6.5,80.5 + parent: 1 + type: Transform + - uid: 17315 + components: + - pos: -6.5,80.5 + parent: 1 + type: Transform + - uid: 17316 + components: + - pos: -6.5,80.5 + parent: 1 + type: Transform + - uid: 17317 + components: + - pos: -7.5,80.5 + parent: 1 + type: Transform + - uid: 17328 + components: + - pos: 43.5,51.5 + parent: 1 + type: Transform + - uid: 18064 + components: + - pos: 16.5,-40.5 + parent: 1 + type: Transform + - uid: 18066 + components: + - pos: 21.5,-30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 18069 + components: + - pos: -17.5,-40.5 + parent: 1 + type: Transform + - uid: 18072 + components: + - pos: -35.5,-19.5 + parent: 1 + type: Transform + - uid: 18073 + components: + - pos: -36.5,-19.5 + parent: 1 + type: Transform + - uid: 18074 + components: + - pos: -36.5,-20.5 + parent: 1 + type: Transform + - uid: 18075 + components: + - pos: -36.5,-21.5 + parent: 1 + type: Transform + - uid: 18094 + components: + - pos: -44.5,51.5 + parent: 1 + type: Transform + - uid: 18132 + components: + - pos: 14.5,38.5 + parent: 1 + type: Transform + - uid: 18133 + components: + - pos: -33.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 18134 + components: + - pos: -23.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 18135 + components: + - pos: -22.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 18197 + components: + - pos: 34.5,4.5 + parent: 1 + type: Transform + - uid: 18198 + components: + - pos: 34.5,5.5 + parent: 1 + type: Transform + - uid: 18199 + components: + - pos: 35.5,3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 18200 + components: + - pos: 36.5,3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 18201 + components: + - pos: 34.5,1.5 + parent: 1 + type: Transform + - uid: 18202 + components: + - pos: 35.5,1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 18203 + components: + - pos: 36.5,1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 18204 + components: + - pos: 34.5,6.5 + parent: 1 + type: Transform + - uid: 18259 + components: + - pos: 35.5,6.5 + parent: 1 + type: Transform + - uid: 18260 + components: + - pos: 36.5,6.5 + parent: 1 + type: Transform + - uid: 18318 + components: + - pos: -19.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 18319 + components: + - pos: -19.5,64.5 + parent: 1 + type: Transform + - uid: 18467 + components: + - pos: 16.5,-10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 18468 + components: + - pos: 16.5,-11.5 + parent: 1 + type: Transform + - uid: 18469 + components: + - pos: 17.5,-11.5 + parent: 1 + type: Transform + - uid: 18470 + components: + - pos: 18.5,-11.5 + parent: 1 + type: Transform +- proto: CableApcStack + entities: + - uid: 1766 + components: + - pos: -42.50212,21.737055 + parent: 1 + type: Transform + - uid: 7462 + components: + - pos: 22.493486,-23.113226 + parent: 1 + type: Transform + - uid: 8668 + components: + - pos: -6.657152,21.752699 + parent: 1 + type: Transform + - uid: 8710 + components: + - pos: -10.359692,-19.510866 + parent: 1 + type: Transform + - uid: 9126 + components: + - pos: 13.59571,-22.378843 + parent: 1 + type: Transform +- proto: CableApcStack1 + entities: + - uid: 9815 + components: + - pos: -41.44949,-9.492805 + parent: 1 + type: Transform + - uid: 9816 + components: + - pos: -43.623955,-9.494401 + parent: 1 + type: Transform + - uid: 9817 + components: + - pos: -42.65844,-9.466018 + parent: 1 + type: Transform + - uid: 10260 + components: + - pos: 37.522205,-12.480022 + parent: 1 + type: Transform + - uid: 11664 + components: + - pos: -45.537365,48.54528 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 175 + components: + - pos: -44.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 177 + components: + - pos: -43.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 179 + components: + - pos: -45.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1224 + components: + - pos: -20.5,28.5 + parent: 1 + type: Transform + - uid: 1990 + components: + - pos: 22.5,-11.5 + parent: 1 + type: Transform + - uid: 2048 + components: + - pos: -40.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3249 + components: + - pos: -35.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3460 + components: + - pos: 13.5,-40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3566 + components: + - pos: 38.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3805 + components: + - pos: 15.5,-12.5 + parent: 1 + type: Transform + - uid: 3833 + components: + - pos: 5.5,-28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3834 + components: + - pos: 7.5,-28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4595 + components: + - pos: -6.5,-70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4596 + components: + - pos: -6.5,-69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4597 + components: + - pos: -6.5,-68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4598 + components: + - pos: -6.5,-67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4599 + components: + - pos: -6.5,-66.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4600 + components: + - pos: -6.5,-65.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4601 + components: + - pos: -6.5,-64.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4602 + components: + - pos: -8.5,-70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4603 + components: + - pos: -8.5,-69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4604 + components: + - pos: -8.5,-68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4605 + components: + - pos: -8.5,-67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4606 + components: + - pos: -8.5,-66.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4607 + components: + - pos: -8.5,-65.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4608 + components: + - pos: -8.5,-64.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4609 + components: + - pos: -7.5,-64.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4610 + components: + - pos: -7.5,-63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4611 + components: + - pos: -7.5,-62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4612 + components: + - pos: -7.5,-61.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4613 + components: + - pos: -7.5,-60.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4614 + components: + - pos: -7.5,-59.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4615 + components: + - pos: -7.5,-58.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4616 + components: + - pos: -7.5,-57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4617 + components: + - pos: -7.5,-56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4618 + components: + - pos: -7.5,-55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4619 + components: + - pos: -7.5,-54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4620 + components: + - pos: -8.5,-54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4621 + components: + - pos: -9.5,-54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4622 + components: + - pos: -9.5,-53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4623 + components: + - pos: -9.5,-52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4624 + components: + - pos: -9.5,-51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4625 + components: + - pos: -9.5,-50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4626 + components: + - pos: -9.5,-49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4627 + components: + - pos: -9.5,-48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4628 + components: + - pos: -9.5,-47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4629 + components: + - pos: -10.5,-47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4630 + components: + - pos: -11.5,-47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4631 + components: + - pos: -12.5,-47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4632 + components: + - pos: -13.5,-47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4633 + components: + - pos: -14.5,-47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4634 + components: + - pos: -15.5,-47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4635 + components: + - pos: -15.5,-46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4636 + components: + - pos: -15.5,-45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4637 + components: + - pos: -15.5,-44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4638 + components: + - pos: -15.5,-43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4639 + components: + - pos: -10.5,-51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4640 + components: + - pos: -11.5,-51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4641 + components: + - pos: -11.5,-50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4642 + components: + - pos: -12.5,-50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4643 + components: + - pos: -12.5,-49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4644 + components: + - pos: -10.5,-53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4645 + components: + - pos: -10.5,-54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4646 + components: + - pos: -10.5,-55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4647 + components: + - pos: -10.5,-56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4648 + components: + - pos: -9.5,-56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4649 + components: + - pos: -9.5,-57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4650 + components: + - pos: -9.5,-58.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4651 + components: + - pos: -9.5,-59.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4652 + components: + - pos: -8.5,-59.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4653 + components: + - pos: -8.5,-60.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4654 + components: + - pos: -8.5,-61.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4655 + components: + - pos: -8.5,-62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4656 + components: + - pos: -6.5,-62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4657 + components: + - pos: -5.5,-62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4658 + components: + - pos: -5.5,-61.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4659 + components: + - pos: -5.5,-60.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4660 + components: + - pos: -5.5,-59.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4661 + components: + - pos: -4.5,-59.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4662 + components: + - pos: -4.5,-58.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4663 + components: + - pos: -4.5,-57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4664 + components: + - pos: -4.5,-56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4665 + components: + - pos: -4.5,-55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4666 + components: + - pos: -4.5,-54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4667 + components: + - pos: -4.5,-53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4668 + components: + - pos: 3.5,-53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4669 + components: + - pos: 3.5,-54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4670 + components: + - pos: 3.5,-55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4671 + components: + - pos: 3.5,-56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4672 + components: + - pos: 3.5,-57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4673 + components: + - pos: 3.5,-58.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4674 + components: + - pos: 3.5,-59.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4675 + components: + - pos: 4.5,-59.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4676 + components: + - pos: 4.5,-60.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4677 + components: + - pos: 4.5,-61.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4678 + components: + - pos: 4.5,-62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4679 + components: + - pos: 5.5,-62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4680 + components: + - pos: 6.5,-64.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4681 + components: + - pos: 6.5,-63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4682 + components: + - pos: 6.5,-62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4683 + components: + - pos: 6.5,-61.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4684 + components: + - pos: 6.5,-60.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4685 + components: + - pos: 6.5,-59.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4686 + components: + - pos: 6.5,-58.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4687 + components: + - pos: 6.5,-57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4688 + components: + - pos: 6.5,-56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4689 + components: + - pos: 6.5,-55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4690 + components: + - pos: 6.5,-54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4691 + components: + - pos: -8.5,-47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4692 + components: + - pos: -7.5,-47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4693 + components: + - pos: -6.5,-47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4694 + components: + - pos: -5.5,-47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4695 + components: + - pos: -4.5,-47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4696 + components: + - pos: -3.5,-47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4697 + components: + - pos: -3.5,-48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4698 + components: + - pos: -3.5,-49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4704 + components: + - pos: 2.5,-49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4705 + components: + - pos: 2.5,-48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4706 + components: + - pos: 2.5,-47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4707 + components: + - pos: 3.5,-47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4708 + components: + - pos: 4.5,-47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4709 + components: + - pos: 5.5,-47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4710 + components: + - pos: 6.5,-47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4711 + components: + - pos: 7.5,-47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4712 + components: + - pos: 8.5,-47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4713 + components: + - pos: 8.5,-48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4714 + components: + - pos: 8.5,-49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4715 + components: + - pos: 8.5,-50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4716 + components: + - pos: 8.5,-51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4717 + components: + - pos: 8.5,-52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4718 + components: + - pos: 8.5,-53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4719 + components: + - pos: 8.5,-54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4720 + components: + - pos: 7.5,-54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4721 + components: + - pos: 9.5,-53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4722 + components: + - pos: 9.5,-54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4723 + components: + - pos: 9.5,-55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4724 + components: + - pos: 9.5,-56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4725 + components: + - pos: 8.5,-56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4726 + components: + - pos: 8.5,-57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4727 + components: + - pos: 8.5,-58.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4728 + components: + - pos: 8.5,-59.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4729 + components: + - pos: 7.5,-59.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4730 + components: + - pos: 7.5,-60.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4731 + components: + - pos: 7.5,-61.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4732 + components: + - pos: 7.5,-62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4733 + components: + - pos: 9.5,-51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4734 + components: + - pos: 10.5,-51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4735 + components: + - pos: 10.5,-50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4736 + components: + - pos: 11.5,-50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4737 + components: + - pos: 11.5,-49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4738 + components: + - pos: 13.5,-47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4739 + components: + - pos: 14.5,-47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4740 + components: + - pos: 14.5,-46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4741 + components: + - pos: 14.5,-45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4742 + components: + - pos: 14.5,-44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4743 + components: + - pos: 14.5,-43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4744 + components: + - pos: 12.5,-47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4745 + components: + - pos: 12.5,-46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4746 + components: + - pos: 12.5,-45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4747 + components: + - pos: 12.5,-44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4748 + components: + - pos: 12.5,-43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4749 + components: + - pos: 12.5,-42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4750 + components: + - pos: 12.5,-41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4751 + components: + - pos: 12.5,-40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4752 + components: + - pos: 12.5,-39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4753 + components: + - pos: 12.5,-38.5 + parent: 1 + type: Transform + - uid: 4754 + components: + - pos: 12.5,-37.5 + parent: 1 + type: Transform + - uid: 4755 + components: + - pos: 11.5,-37.5 + parent: 1 + type: Transform + - uid: 4756 + components: + - pos: 11.5,-36.5 + parent: 1 + type: Transform + - uid: 4757 + components: + - pos: 11.5,-35.5 + parent: 1 + type: Transform + - uid: 4758 + components: + - pos: 14.5,-35.5 + parent: 1 + type: Transform + - uid: 4759 + components: + - pos: 13.5,-35.5 + parent: 1 + type: Transform + - uid: 4760 + components: + - pos: 13.5,-34.5 + parent: 1 + type: Transform + - uid: 4761 + components: + - pos: 13.5,-33.5 + parent: 1 + type: Transform + - uid: 4762 + components: + - pos: 13.5,-32.5 + parent: 1 + type: Transform + - uid: 4763 + components: + - pos: 7.5,-33.5 + parent: 1 + type: Transform + - uid: 4764 + components: + - pos: 7.5,-34.5 + parent: 1 + type: Transform + - uid: 4765 + components: + - pos: 7.5,-35.5 + parent: 1 + type: Transform + - uid: 4766 + components: + - pos: 7.5,-36.5 + parent: 1 + type: Transform + - uid: 4767 + components: + - pos: 7.5,-37.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4768 + components: + - pos: 7.5,-38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4769 + components: + - pos: 7.5,-39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4770 + components: + - pos: 7.5,-40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4771 + components: + - pos: 6.5,-40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4772 + components: + - pos: 6.5,-39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4773 + components: + - pos: 7.5,-32.5 + parent: 1 + type: Transform + - uid: 4774 + components: + - pos: 7.5,-31.5 + parent: 1 + type: Transform + - uid: 4775 + components: + - pos: 7.5,-30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4776 + components: + - pos: 6.5,-30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4777 + components: + - pos: 5.5,-30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4778 + components: + - pos: 8.5,-30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4783 + components: + - pos: 5.5,-29.5 + parent: 1 + type: Transform + - uid: 4784 + components: + - pos: 6.5,-29.5 + parent: 1 + type: Transform + - uid: 4785 + components: + - pos: 7.5,-29.5 + parent: 1 + type: Transform + - uid: 4786 + components: + - pos: 8.5,-29.5 + parent: 1 + type: Transform + - uid: 4787 + components: + - pos: 9.5,-29.5 + parent: 1 + type: Transform + - uid: 4788 + components: + - pos: 10.5,-29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4789 + components: + - pos: 11.5,-29.5 + parent: 1 + type: Transform + - uid: 4790 + components: + - pos: 12.5,-29.5 + parent: 1 + type: Transform + - uid: 4791 + components: + - pos: 12.5,-28.5 + parent: 1 + type: Transform + - uid: 4792 + components: + - pos: 12.5,-27.5 + parent: 1 + type: Transform + - uid: 4793 + components: + - pos: 12.5,-26.5 + parent: 1 + type: Transform + - uid: 4794 + components: + - pos: 12.5,-25.5 + parent: 1 + type: Transform + - uid: 4795 + components: + - pos: 12.5,-24.5 + parent: 1 + type: Transform + - uid: 4796 + components: + - pos: 12.5,-23.5 + parent: 1 + type: Transform + - uid: 4797 + components: + - pos: 12.5,-22.5 + parent: 1 + type: Transform + - uid: 4798 + components: + - pos: 12.5,-21.5 + parent: 1 + type: Transform + - uid: 4799 + components: + - pos: 12.5,-20.5 + parent: 1 + type: Transform + - uid: 4800 + components: + - pos: 12.5,-19.5 + parent: 1 + type: Transform + - uid: 4801 + components: + - pos: 12.5,-18.5 + parent: 1 + type: Transform + - uid: 4802 + components: + - pos: 12.5,-17.5 + parent: 1 + type: Transform + - uid: 4803 + components: + - pos: 12.5,-16.5 + parent: 1 + type: Transform + - uid: 4804 + components: + - pos: 12.5,-15.5 + parent: 1 + type: Transform + - uid: 4805 + components: + - pos: 12.5,-14.5 + parent: 1 + type: Transform + - uid: 4806 + components: + - pos: 12.5,-13.5 + parent: 1 + type: Transform + - uid: 4807 + components: + - pos: 12.5,-12.5 + parent: 1 + type: Transform + - uid: 4808 + components: + - pos: 11.5,-15.5 + parent: 1 + type: Transform + - uid: 4809 + components: + - pos: 10.5,-15.5 + parent: 1 + type: Transform + - uid: 4810 + components: + - pos: 9.5,-15.5 + parent: 1 + type: Transform + - uid: 4811 + components: + - pos: 8.5,-15.5 + parent: 1 + type: Transform + - uid: 4812 + components: + - pos: 7.5,-15.5 + parent: 1 + type: Transform + - uid: 4813 + components: + - pos: 6.5,-15.5 + parent: 1 + type: Transform + - uid: 4814 + components: + - pos: 5.5,-15.5 + parent: 1 + type: Transform + - uid: 4815 + components: + - pos: 4.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4816 + components: + - pos: 3.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4817 + components: + - pos: 2.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4818 + components: + - pos: 1.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4819 + components: + - pos: 0.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4820 + components: + - pos: -0.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4821 + components: + - pos: -1.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4822 + components: + - pos: -2.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4823 + components: + - pos: -3.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4824 + components: + - pos: -4.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4825 + components: + - pos: -5.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4826 + components: + - pos: -6.5,-15.5 + parent: 1 + type: Transform + - uid: 4827 + components: + - pos: -7.5,-15.5 + parent: 1 + type: Transform + - uid: 4828 + components: + - pos: -8.5,-15.5 + parent: 1 + type: Transform + - uid: 4829 + components: + - pos: -9.5,-15.5 + parent: 1 + type: Transform + - uid: 4830 + components: + - pos: -10.5,-15.5 + parent: 1 + type: Transform + - uid: 4831 + components: + - pos: -11.5,-15.5 + parent: 1 + type: Transform + - uid: 4832 + components: + - pos: -12.5,-15.5 + parent: 1 + type: Transform + - uid: 4833 + components: + - pos: -12.5,-16.5 + parent: 1 + type: Transform + - uid: 4834 + components: + - pos: -12.5,-17.5 + parent: 1 + type: Transform + - uid: 4835 + components: + - pos: -12.5,-18.5 + parent: 1 + type: Transform + - uid: 4836 + components: + - pos: -12.5,-19.5 + parent: 1 + type: Transform + - uid: 4837 + components: + - pos: -12.5,-20.5 + parent: 1 + type: Transform + - uid: 4838 + components: + - pos: -12.5,-21.5 + parent: 1 + type: Transform + - uid: 4839 + components: + - pos: -12.5,-22.5 + parent: 1 + type: Transform + - uid: 4840 + components: + - pos: -12.5,-23.5 + parent: 1 + type: Transform + - uid: 4841 + components: + - pos: -12.5,-24.5 + parent: 1 + type: Transform + - uid: 4842 + components: + - pos: -12.5,-25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4843 + components: + - pos: -13.5,-25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4844 + components: + - pos: -12.5,-26.5 + parent: 1 + type: Transform + - uid: 4845 + components: + - pos: -12.5,-27.5 + parent: 1 + type: Transform + - uid: 4846 + components: + - pos: -12.5,-28.5 + parent: 1 + type: Transform + - uid: 4847 + components: + - pos: -12.5,-29.5 + parent: 1 + type: Transform + - uid: 4848 + components: + - pos: -12.5,-30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4849 + components: + - pos: -13.5,-30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4850 + components: + - pos: -12.5,-31.5 + parent: 1 + type: Transform + - uid: 4851 + components: + - pos: -12.5,-32.5 + parent: 1 + type: Transform + - uid: 4852 + components: + - pos: -12.5,-33.5 + parent: 1 + type: Transform + - uid: 4853 + components: + - pos: -12.5,-34.5 + parent: 1 + type: Transform + - uid: 4854 + components: + - pos: -12.5,-35.5 + parent: 1 + type: Transform + - uid: 4855 + components: + - pos: -12.5,-36.5 + parent: 1 + type: Transform + - uid: 4856 + components: + - pos: -13.5,-36.5 + parent: 1 + type: Transform + - uid: 4857 + components: + - pos: -14.5,-36.5 + parent: 1 + type: Transform + - uid: 4858 + components: + - pos: -15.5,-36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4859 + components: + - pos: -16.5,-36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4860 + components: + - pos: -16.5,-35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4861 + components: + - pos: -16.5,-34.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4862 + components: + - pos: -16.5,-33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4863 + components: + - pos: -16.5,-32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4864 + components: + - pos: -16.5,-31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4865 + components: + - pos: -17.5,-31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4866 + components: + - pos: -18.5,-31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4867 + components: + - pos: -18.5,-30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4868 + components: + - pos: -18.5,-29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4869 + components: + - pos: -18.5,-28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4870 + components: + - pos: -18.5,-27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4871 + components: + - pos: -18.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4872 + components: + - pos: -18.5,-25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4873 + components: + - pos: -18.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4874 + components: + - pos: -19.5,-31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4875 + components: + - pos: -20.5,-31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4876 + components: + - pos: -17.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4877 + components: + - pos: -16.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4878 + components: + - pos: -16.5,-23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4879 + components: + - pos: -16.5,-22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4880 + components: + - pos: -16.5,-21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4881 + components: + - pos: -16.5,-20.5 + parent: 1 + type: Transform + - uid: 4882 + components: + - pos: -16.5,-19.5 + parent: 1 + type: Transform + - uid: 4883 + components: + - pos: -16.5,-18.5 + parent: 1 + type: Transform + - uid: 4884 + components: + - pos: -16.5,-17.5 + parent: 1 + type: Transform + - uid: 4885 + components: + - pos: -16.5,-16.5 + parent: 1 + type: Transform + - uid: 4886 + components: + - pos: -16.5,-15.5 + parent: 1 + type: Transform + - uid: 4887 + components: + - pos: -16.5,-14.5 + parent: 1 + type: Transform + - uid: 4888 + components: + - pos: -16.5,-13.5 + parent: 1 + type: Transform + - uid: 4889 + components: + - pos: -16.5,-12.5 + parent: 1 + type: Transform + - uid: 4890 + components: + - pos: -16.5,-11.5 + parent: 1 + type: Transform + - uid: 4891 + components: + - pos: -16.5,-10.5 + parent: 1 + type: Transform + - uid: 4892 + components: + - pos: -16.5,-9.5 + parent: 1 + type: Transform + - uid: 4893 + components: + - pos: -12.5,-9.5 + parent: 1 + type: Transform + - uid: 4894 + components: + - pos: -12.5,-10.5 + parent: 1 + type: Transform + - uid: 4895 + components: + - pos: -12.5,-11.5 + parent: 1 + type: Transform + - uid: 4896 + components: + - pos: -12.5,-12.5 + parent: 1 + type: Transform + - uid: 4897 + components: + - pos: -12.5,-13.5 + parent: 1 + type: Transform + - uid: 4898 + components: + - pos: -12.5,-14.5 + parent: 1 + type: Transform + - uid: 4899 + components: + - pos: -13.5,-9.5 + parent: 1 + type: Transform + - uid: 4900 + components: + - pos: -14.5,-9.5 + parent: 1 + type: Transform + - uid: 4901 + components: + - pos: -15.5,-9.5 + parent: 1 + type: Transform + - uid: 4902 + components: + - pos: -20.5,-30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4903 + components: + - pos: -20.5,-29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4904 + components: + - pos: -20.5,-28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4905 + components: + - pos: -20.5,-27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4906 + components: + - pos: -20.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4907 + components: + - pos: -21.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4908 + components: + - pos: -22.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4909 + components: + - pos: -23.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4910 + components: + - pos: -24.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4911 + components: + - pos: -25.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4912 + components: + - pos: -26.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4913 + components: + - pos: -27.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4914 + components: + - pos: -28.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4915 + components: + - pos: -29.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4916 + components: + - pos: -29.5,-25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4917 + components: + - pos: -29.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4918 + components: + - pos: -29.5,-23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4919 + components: + - pos: -29.5,-22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4920 + components: + - pos: -29.5,-21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4921 + components: + - pos: -29.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4922 + components: + - pos: -29.5,-19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4923 + components: + - pos: -29.5,-18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4924 + components: + - pos: -29.5,-17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4925 + components: + - pos: -29.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4926 + components: + - pos: -28.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4927 + components: + - pos: -27.5,-16.5 + parent: 1 + type: Transform + - uid: 4928 + components: + - pos: -26.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4929 + components: + - pos: -25.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4930 + components: + - pos: -25.5,-15.5 + parent: 1 + type: Transform + - uid: 4932 + components: + - pos: -3.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4933 + components: + - pos: -3.5,73.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4934 + components: + - pos: -3.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4935 + components: + - pos: -3.5,71.5 + parent: 1 + type: Transform + - uid: 4936 + components: + - pos: -3.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4937 + components: + - pos: -4.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4938 + components: + - pos: -4.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4939 + components: + - pos: -4.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4940 + components: + - pos: -4.5,67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4941 + components: + - pos: -3.5,67.5 + parent: 1 + type: Transform + - uid: 4942 + components: + - pos: -2.5,67.5 + parent: 1 + type: Transform + - uid: 4943 + components: + - pos: -1.5,67.5 + parent: 1 + type: Transform + - uid: 4944 + components: + - pos: -5.5,67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4945 + components: + - pos: -6.5,67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4946 + components: + - pos: -7.5,67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4947 + components: + - pos: -8.5,67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4948 + components: + - pos: -9.5,67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4949 + components: + - pos: -10.5,67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4950 + components: + - pos: -11.5,67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4951 + components: + - pos: -12.5,67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4952 + components: + - pos: -13.5,67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4953 + components: + - pos: -13.5,66.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4954 + components: + - pos: -13.5,65.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4955 + components: + - pos: -13.5,64.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4956 + components: + - pos: -13.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4957 + components: + - pos: -13.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4958 + components: + - pos: -14.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4959 + components: + - pos: -15.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4960 + components: + - pos: -16.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4961 + components: + - pos: -17.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4962 + components: + - pos: -18.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4963 + components: + - pos: -19.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4964 + components: + - pos: -19.5,61.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4965 + components: + - pos: -19.5,60.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4966 + components: + - pos: -19.5,59.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4967 + components: + - pos: -19.5,58.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4968 + components: + - pos: -19.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4969 + components: + - pos: -20.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4970 + components: + - pos: -21.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4971 + components: + - pos: -21.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4972 + components: + - pos: -21.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4973 + components: + - pos: -21.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4974 + components: + - pos: -21.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4975 + components: + - pos: -21.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4976 + components: + - pos: -21.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4977 + components: + - pos: -21.5,50.5 + parent: 1 + type: Transform + - uid: 4978 + components: + - pos: -21.5,49.5 + parent: 1 + type: Transform + - uid: 4979 + components: + - pos: -21.5,48.5 + parent: 1 + type: Transform + - uid: 4980 + components: + - pos: -21.5,47.5 + parent: 1 + type: Transform + - uid: 4981 + components: + - pos: -21.5,46.5 + parent: 1 + type: Transform + - uid: 4982 + components: + - pos: -21.5,45.5 + parent: 1 + type: Transform + - uid: 4983 + components: + - pos: -21.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4984 + components: + - pos: -21.5,43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4985 + components: + - pos: -21.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4986 + components: + - pos: -21.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4987 + components: + - pos: -21.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4988 + components: + - pos: -21.5,39.5 + parent: 1 + type: Transform + - uid: 4989 + components: + - pos: -21.5,38.5 + parent: 1 + type: Transform + - uid: 4990 + components: + - pos: -21.5,37.5 + parent: 1 + type: Transform + - uid: 4991 + components: + - pos: -21.5,36.5 + parent: 1 + type: Transform + - uid: 4992 + components: + - pos: -22.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4993 + components: + - pos: -23.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4994 + components: + - pos: -24.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4995 + components: + - pos: -24.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4996 + components: + - pos: -24.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4997 + components: + - pos: -24.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4998 + components: + - pos: -24.5,53.5 + parent: 1 + type: Transform + - uid: 4999 + components: + - pos: -24.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5000 + components: + - pos: -24.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5001 + components: + - pos: -24.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5002 + components: + - pos: -0.5,67.5 + parent: 1 + type: Transform + - uid: 5003 + components: + - pos: 0.5,67.5 + parent: 1 + type: Transform + - uid: 5004 + components: + - pos: 1.5,67.5 + parent: 1 + type: Transform + - uid: 5005 + components: + - pos: 2.5,67.5 + parent: 1 + type: Transform + - uid: 5006 + components: + - pos: 3.5,67.5 + parent: 1 + type: Transform + - uid: 5007 + components: + - pos: 4.5,67.5 + parent: 1 + type: Transform + - uid: 5008 + components: + - pos: 5.5,67.5 + parent: 1 + type: Transform + - uid: 5009 + components: + - pos: 6.5,67.5 + parent: 1 + type: Transform + - uid: 5010 + components: + - pos: 7.5,67.5 + parent: 1 + type: Transform + - uid: 5011 + components: + - pos: 7.5,66.5 + parent: 1 + type: Transform + - uid: 5012 + components: + - pos: 7.5,65.5 + parent: 1 + type: Transform + - uid: 5013 + components: + - pos: 7.5,64.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5014 + components: + - pos: 7.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5015 + components: + - pos: 8.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5016 + components: + - pos: 9.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5017 + components: + - pos: 10.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5018 + components: + - pos: 11.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5019 + components: + - pos: 12.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5020 + components: + - pos: 13.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5021 + components: + - pos: 14.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5022 + components: + - pos: 15.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5023 + components: + - pos: 16.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5024 + components: + - pos: 17.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5025 + components: + - pos: 18.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5026 + components: + - pos: 18.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5027 + components: + - pos: 18.5,61.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5028 + components: + - pos: 18.5,60.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5029 + components: + - pos: 18.5,59.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5030 + components: + - pos: 18.5,58.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5031 + components: + - pos: 19.5,58.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5032 + components: + - pos: 19.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5033 + components: + - pos: 19.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5034 + components: + - pos: 18.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5035 + components: + - pos: 17.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5036 + components: + - pos: 16.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5037 + components: + - pos: 20.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5038 + components: + - pos: 21.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5039 + components: + - pos: 22.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5040 + components: + - pos: 22.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5041 + components: + - pos: 22.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5042 + components: + - pos: 22.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5043 + components: + - pos: 22.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5044 + components: + - pos: 22.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5045 + components: + - pos: 22.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5046 + components: + - pos: 22.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5047 + components: + - pos: 22.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5048 + components: + - pos: 22.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5049 + components: + - pos: 22.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5050 + components: + - pos: 22.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5051 + components: + - pos: 23.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5052 + components: + - pos: 24.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5053 + components: + - pos: 25.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5054 + components: + - pos: 25.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5055 + components: + - pos: 25.5,43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5056 + components: + - pos: 25.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5057 + components: + - pos: 25.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5058 + components: + - pos: 25.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5059 + components: + - pos: 25.5,39.5 + parent: 1 + type: Transform + - uid: 5060 + components: + - pos: 25.5,38.5 + parent: 1 + type: Transform + - uid: 5061 + components: + - pos: 25.5,37.5 + parent: 1 + type: Transform + - uid: 5062 + components: + - pos: 25.5,36.5 + parent: 1 + type: Transform + - uid: 5063 + components: + - pos: 16.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5064 + components: + - pos: 16.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5065 + components: + - pos: 16.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5066 + components: + - pos: 16.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5067 + components: + - pos: 16.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5068 + components: + - pos: 17.5,52.5 + parent: 1 + type: Transform + - uid: 5069 + components: + - pos: 18.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5070 + components: + - pos: 19.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5071 + components: + - pos: 20.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5072 + components: + - pos: 20.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5073 + components: + - pos: 20.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5074 + components: + - pos: -20.5,36.5 + parent: 1 + type: Transform + - uid: 5075 + components: + - pos: -19.5,36.5 + parent: 1 + type: Transform + - uid: 5076 + components: + - pos: -18.5,36.5 + parent: 1 + type: Transform + - uid: 5077 + components: + - pos: -17.5,36.5 + parent: 1 + type: Transform + - uid: 5078 + components: + - pos: -16.5,36.5 + parent: 1 + type: Transform + - uid: 5079 + components: + - pos: -15.5,36.5 + parent: 1 + type: Transform + - uid: 5080 + components: + - pos: -14.5,36.5 + parent: 1 + type: Transform + - uid: 5081 + components: + - pos: -13.5,36.5 + parent: 1 + type: Transform + - uid: 5082 + components: + - pos: -12.5,36.5 + parent: 1 + type: Transform + - uid: 5083 + components: + - pos: -11.5,36.5 + parent: 1 + type: Transform + - uid: 5084 + components: + - pos: -10.5,36.5 + parent: 1 + type: Transform + - uid: 5085 + components: + - pos: -9.5,36.5 + parent: 1 + type: Transform + - uid: 5086 + components: + - pos: -8.5,36.5 + parent: 1 + type: Transform + - uid: 5087 + components: + - pos: -7.5,36.5 + parent: 1 + type: Transform + - uid: 5088 + components: + - pos: -6.5,36.5 + parent: 1 + type: Transform + - uid: 5089 + components: + - pos: -5.5,36.5 + parent: 1 + type: Transform + - uid: 5090 + components: + - pos: -4.5,36.5 + parent: 1 + type: Transform + - uid: 5091 + components: + - pos: -3.5,36.5 + parent: 1 + type: Transform + - uid: 5092 + components: + - pos: -2.5,36.5 + parent: 1 + type: Transform + - uid: 5093 + components: + - pos: -1.5,36.5 + parent: 1 + type: Transform + - uid: 5094 + components: + - pos: -0.5,36.5 + parent: 1 + type: Transform + - uid: 5095 + components: + - pos: 0.5,36.5 + parent: 1 + type: Transform + - uid: 5096 + components: + - pos: 1.5,36.5 + parent: 1 + type: Transform + - uid: 5097 + components: + - pos: 2.5,36.5 + parent: 1 + type: Transform + - uid: 5098 + components: + - pos: 3.5,36.5 + parent: 1 + type: Transform + - uid: 5099 + components: + - pos: 4.5,36.5 + parent: 1 + type: Transform + - uid: 5100 + components: + - pos: 5.5,36.5 + parent: 1 + type: Transform + - uid: 5101 + components: + - pos: 6.5,36.5 + parent: 1 + type: Transform + - uid: 5102 + components: + - pos: 7.5,36.5 + parent: 1 + type: Transform + - uid: 5103 + components: + - pos: 8.5,36.5 + parent: 1 + type: Transform + - uid: 5104 + components: + - pos: 9.5,36.5 + parent: 1 + type: Transform + - uid: 5105 + components: + - pos: 10.5,36.5 + parent: 1 + type: Transform + - uid: 5106 + components: + - pos: 11.5,36.5 + parent: 1 + type: Transform + - uid: 5107 + components: + - pos: 12.5,36.5 + parent: 1 + type: Transform + - uid: 5108 + components: + - pos: 13.5,36.5 + parent: 1 + type: Transform + - uid: 5109 + components: + - pos: 14.5,36.5 + parent: 1 + type: Transform + - uid: 5110 + components: + - pos: 15.5,36.5 + parent: 1 + type: Transform + - uid: 5111 + components: + - pos: 16.5,36.5 + parent: 1 + type: Transform + - uid: 5112 + components: + - pos: 17.5,36.5 + parent: 1 + type: Transform + - uid: 5113 + components: + - pos: 18.5,36.5 + parent: 1 + type: Transform + - uid: 5114 + components: + - pos: 19.5,36.5 + parent: 1 + type: Transform + - uid: 5115 + components: + - pos: 20.5,36.5 + parent: 1 + type: Transform + - uid: 5116 + components: + - pos: 21.5,36.5 + parent: 1 + type: Transform + - uid: 5117 + components: + - pos: 22.5,36.5 + parent: 1 + type: Transform + - uid: 5118 + components: + - pos: 23.5,36.5 + parent: 1 + type: Transform + - uid: 5119 + components: + - pos: 24.5,36.5 + parent: 1 + type: Transform + - uid: 5120 + components: + - pos: -1.5,66.5 + parent: 1 + type: Transform + - uid: 5121 + components: + - pos: -1.5,65.5 + parent: 1 + type: Transform + - uid: 5122 + components: + - pos: -1.5,64.5 + parent: 1 + type: Transform + - uid: 5123 + components: + - pos: -1.5,63.5 + parent: 1 + type: Transform + - uid: 5124 + components: + - pos: -1.5,62.5 + parent: 1 + type: Transform + - uid: 5125 + components: + - pos: -1.5,61.5 + parent: 1 + type: Transform + - uid: 5126 + components: + - pos: -1.5,60.5 + parent: 1 + type: Transform + - uid: 5127 + components: + - pos: -1.5,59.5 + parent: 1 + type: Transform + - uid: 5128 + components: + - pos: -1.5,58.5 + parent: 1 + type: Transform + - uid: 5129 + components: + - pos: -1.5,57.5 + parent: 1 + type: Transform + - uid: 5130 + components: + - pos: -1.5,56.5 + parent: 1 + type: Transform + - uid: 5131 + components: + - pos: -1.5,55.5 + parent: 1 + type: Transform + - uid: 5132 + components: + - pos: -1.5,54.5 + parent: 1 + type: Transform + - uid: 5133 + components: + - pos: -1.5,53.5 + parent: 1 + type: Transform + - uid: 5134 + components: + - pos: -1.5,52.5 + parent: 1 + type: Transform + - uid: 5135 + components: + - pos: -1.5,51.5 + parent: 1 + type: Transform + - uid: 5136 + components: + - pos: -1.5,50.5 + parent: 1 + type: Transform + - uid: 5137 + components: + - pos: -1.5,49.5 + parent: 1 + type: Transform + - uid: 5138 + components: + - pos: -1.5,48.5 + parent: 1 + type: Transform + - uid: 5139 + components: + - pos: -1.5,47.5 + parent: 1 + type: Transform + - uid: 5140 + components: + - pos: -1.5,46.5 + parent: 1 + type: Transform + - uid: 5141 + components: + - pos: -1.5,45.5 + parent: 1 + type: Transform + - uid: 5142 + components: + - pos: -1.5,44.5 + parent: 1 + type: Transform + - uid: 5143 + components: + - pos: -1.5,43.5 + parent: 1 + type: Transform + - uid: 5144 + components: + - pos: -1.5,42.5 + parent: 1 + type: Transform + - uid: 5145 + components: + - pos: -1.5,41.5 + parent: 1 + type: Transform + - uid: 5146 + components: + - pos: -1.5,40.5 + parent: 1 + type: Transform + - uid: 5147 + components: + - pos: -1.5,39.5 + parent: 1 + type: Transform + - uid: 5148 + components: + - pos: -1.5,38.5 + parent: 1 + type: Transform + - uid: 5149 + components: + - pos: -1.5,37.5 + parent: 1 + type: Transform + - uid: 5150 + components: + - pos: 0.5,35.5 + parent: 1 + type: Transform + - uid: 5151 + components: + - pos: 0.5,34.5 + parent: 1 + type: Transform + - uid: 5152 + components: + - pos: 0.5,33.5 + parent: 1 + type: Transform + - uid: 5153 + components: + - pos: 0.5,32.5 + parent: 1 + type: Transform + - uid: 5154 + components: + - pos: 0.5,31.5 + parent: 1 + type: Transform + - uid: 5155 + components: + - pos: 0.5,30.5 + parent: 1 + type: Transform + - uid: 5156 + components: + - pos: 0.5,29.5 + parent: 1 + type: Transform + - uid: 5157 + components: + - pos: 0.5,28.5 + parent: 1 + type: Transform + - uid: 5158 + components: + - pos: 0.5,27.5 + parent: 1 + type: Transform + - uid: 5159 + components: + - pos: 0.5,26.5 + parent: 1 + type: Transform + - uid: 5160 + components: + - pos: 0.5,25.5 + parent: 1 + type: Transform + - uid: 5161 + components: + - pos: 0.5,24.5 + parent: 1 + type: Transform + - uid: 5162 + components: + - pos: 0.5,23.5 + parent: 1 + type: Transform + - uid: 5163 + components: + - pos: 0.5,22.5 + parent: 1 + type: Transform + - uid: 5164 + components: + - pos: 0.5,21.5 + parent: 1 + type: Transform + - uid: 5165 + components: + - pos: 0.5,20.5 + parent: 1 + type: Transform + - uid: 5166 + components: + - pos: 0.5,19.5 + parent: 1 + type: Transform + - uid: 5167 + components: + - pos: 0.5,18.5 + parent: 1 + type: Transform + - uid: 5168 + components: + - pos: 0.5,17.5 + parent: 1 + type: Transform + - uid: 5169 + components: + - pos: 0.5,16.5 + parent: 1 + type: Transform + - uid: 5170 + components: + - pos: 0.5,15.5 + parent: 1 + type: Transform + - uid: 5171 + components: + - pos: 0.5,14.5 + parent: 1 + type: Transform + - uid: 5172 + components: + - pos: 0.5,13.5 + parent: 1 + type: Transform + - uid: 5173 + components: + - pos: 25.5,35.5 + parent: 1 + type: Transform + - uid: 5174 + components: + - pos: 24.5,34.5 + parent: 1 + type: Transform + - uid: 5175 + components: + - pos: 24.5,33.5 + parent: 1 + type: Transform + - uid: 5176 + components: + - pos: 24.5,32.5 + parent: 1 + type: Transform + - uid: 5177 + components: + - pos: 24.5,31.5 + parent: 1 + type: Transform + - uid: 5178 + components: + - pos: 24.5,30.5 + parent: 1 + type: Transform + - uid: 5179 + components: + - pos: 24.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5180 + components: + - pos: 24.5,28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5181 + components: + - pos: 24.5,27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5182 + components: + - pos: 24.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5183 + components: + - pos: 24.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5184 + components: + - pos: 24.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5185 + components: + - pos: 23.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5186 + components: + - pos: 22.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5187 + components: + - pos: 21.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5188 + components: + - pos: 20.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5189 + components: + - pos: 19.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5190 + components: + - pos: 19.5,23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5191 + components: + - pos: 19.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5192 + components: + - pos: 19.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5193 + components: + - pos: 19.5,20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5194 + components: + - pos: 19.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5195 + components: + - pos: 19.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5196 + components: + - pos: 19.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5197 + components: + - pos: 19.5,16.5 + parent: 1 + type: Transform + - uid: 5198 + components: + - pos: 19.5,15.5 + parent: 1 + type: Transform + - uid: 5199 + components: + - pos: 19.5,14.5 + parent: 1 + type: Transform + - uid: 5200 + components: + - pos: 19.5,13.5 + parent: 1 + type: Transform + - uid: 5201 + components: + - pos: 18.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5202 + components: + - pos: 17.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5203 + components: + - pos: 16.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5204 + components: + - pos: 15.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5205 + components: + - pos: 14.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5206 + components: + - pos: 14.5,23.5 + parent: 1 + type: Transform + - uid: 5207 + components: + - pos: 14.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5208 + components: + - pos: 14.5,25.5 + parent: 1 + type: Transform + - uid: 5209 + components: + - pos: 15.5,25.5 + parent: 1 + type: Transform + - uid: 5210 + components: + - pos: 16.5,25.5 + parent: 1 + type: Transform + - uid: 5211 + components: + - pos: 18.5,13.5 + parent: 1 + type: Transform + - uid: 5212 + components: + - pos: 17.5,13.5 + parent: 1 + type: Transform + - uid: 5213 + components: + - pos: 16.5,13.5 + parent: 1 + type: Transform + - uid: 5214 + components: + - pos: 15.5,13.5 + parent: 1 + type: Transform + - uid: 5215 + components: + - pos: 14.5,13.5 + parent: 1 + type: Transform + - uid: 5216 + components: + - pos: 13.5,13.5 + parent: 1 + type: Transform + - uid: 5217 + components: + - pos: 12.5,13.5 + parent: 1 + type: Transform + - uid: 5218 + components: + - pos: 11.5,13.5 + parent: 1 + type: Transform + - uid: 5219 + components: + - pos: 10.5,13.5 + parent: 1 + type: Transform + - uid: 5220 + components: + - pos: 9.5,13.5 + parent: 1 + type: Transform + - uid: 5221 + components: + - pos: 8.5,13.5 + parent: 1 + type: Transform + - uid: 5222 + components: + - pos: 7.5,13.5 + parent: 1 + type: Transform + - uid: 5223 + components: + - pos: 6.5,13.5 + parent: 1 + type: Transform + - uid: 5224 + components: + - pos: 5.5,13.5 + parent: 1 + type: Transform + - uid: 5225 + components: + - pos: 4.5,13.5 + parent: 1 + type: Transform + - uid: 5226 + components: + - pos: 3.5,13.5 + parent: 1 + type: Transform + - uid: 5227 + components: + - pos: 2.5,13.5 + parent: 1 + type: Transform + - uid: 5228 + components: + - pos: 1.5,13.5 + parent: 1 + type: Transform + - uid: 5229 + components: + - pos: 26.5,36.5 + parent: 1 + type: Transform + - uid: 5230 + components: + - pos: 27.5,36.5 + parent: 1 + type: Transform + - uid: 5231 + components: + - pos: 28.5,36.5 + parent: 1 + type: Transform + - uid: 5232 + components: + - pos: 29.5,36.5 + parent: 1 + type: Transform + - uid: 5233 + components: + - pos: 30.5,36.5 + parent: 1 + type: Transform + - uid: 5234 + components: + - pos: 31.5,36.5 + parent: 1 + type: Transform + - uid: 5235 + components: + - pos: 32.5,36.5 + parent: 1 + type: Transform + - uid: 5236 + components: + - pos: 32.5,35.5 + parent: 1 + type: Transform + - uid: 5237 + components: + - pos: 32.5,34.5 + parent: 1 + type: Transform + - uid: 5238 + components: + - pos: 32.5,33.5 + parent: 1 + type: Transform + - uid: 5239 + components: + - pos: 32.5,32.5 + parent: 1 + type: Transform + - uid: 5240 + components: + - pos: 32.5,31.5 + parent: 1 + type: Transform + - uid: 5241 + components: + - pos: 32.5,30.5 + parent: 1 + type: Transform + - uid: 5242 + components: + - pos: 32.5,29.5 + parent: 1 + type: Transform + - uid: 5243 + components: + - pos: 32.5,28.5 + parent: 1 + type: Transform + - uid: 5244 + components: + - pos: 32.5,27.5 + parent: 1 + type: Transform + - uid: 5245 + components: + - pos: 32.5,26.5 + parent: 1 + type: Transform + - uid: 5246 + components: + - pos: 32.5,25.5 + parent: 1 + type: Transform + - uid: 5247 + components: + - pos: 32.5,24.5 + parent: 1 + type: Transform + - uid: 5248 + components: + - pos: 32.5,23.5 + parent: 1 + type: Transform + - uid: 5249 + components: + - pos: 32.5,22.5 + parent: 1 + type: Transform + - uid: 5250 + components: + - pos: 32.5,21.5 + parent: 1 + type: Transform + - uid: 5251 + components: + - pos: 32.5,20.5 + parent: 1 + type: Transform + - uid: 5252 + components: + - pos: 32.5,19.5 + parent: 1 + type: Transform + - uid: 5253 + components: + - pos: 32.5,18.5 + parent: 1 + type: Transform + - uid: 5254 + components: + - pos: 32.5,17.5 + parent: 1 + type: Transform + - uid: 5255 + components: + - pos: 32.5,16.5 + parent: 1 + type: Transform + - uid: 5256 + components: + - pos: 32.5,15.5 + parent: 1 + type: Transform + - uid: 5257 + components: + - pos: 32.5,14.5 + parent: 1 + type: Transform + - uid: 5258 + components: + - pos: 32.5,13.5 + parent: 1 + type: Transform + - uid: 5259 + components: + - pos: 32.5,12.5 + parent: 1 + type: Transform + - uid: 5260 + components: + - pos: 32.5,11.5 + parent: 1 + type: Transform + - uid: 5261 + components: + - pos: 32.5,10.5 + parent: 1 + type: Transform + - uid: 5262 + components: + - pos: 32.5,9.5 + parent: 1 + type: Transform + - uid: 5263 + components: + - pos: 32.5,8.5 + parent: 1 + type: Transform + - uid: 5264 + components: + - pos: 32.5,7.5 + parent: 1 + type: Transform + - uid: 5265 + components: + - pos: 31.5,7.5 + parent: 1 + type: Transform + - uid: 5266 + components: + - pos: 31.5,6.5 + parent: 1 + type: Transform + - uid: 5267 + components: + - pos: 31.5,5.5 + parent: 1 + type: Transform + - uid: 5268 + components: + - pos: 31.5,4.5 + parent: 1 + type: Transform + - uid: 5269 + components: + - pos: 31.5,3.5 + parent: 1 + type: Transform + - uid: 5270 + components: + - pos: 31.5,2.5 + parent: 1 + type: Transform + - uid: 5271 + components: + - pos: 31.5,1.5 + parent: 1 + type: Transform + - uid: 5272 + components: + - pos: 18.5,12.5 + parent: 1 + type: Transform + - uid: 5273 + components: + - pos: 31.5,0.5 + parent: 1 + type: Transform + - uid: 5274 + components: + - pos: 32.5,0.5 + parent: 1 + type: Transform + - uid: 5275 + components: + - pos: 32.5,-0.5 + parent: 1 + type: Transform + - uid: 5276 + components: + - pos: 32.5,-1.5 + parent: 1 + type: Transform + - uid: 5277 + components: + - pos: 32.5,-2.5 + parent: 1 + type: Transform + - uid: 5278 + components: + - pos: 32.5,-3.5 + parent: 1 + type: Transform + - uid: 5279 + components: + - pos: 32.5,-4.5 + parent: 1 + type: Transform + - uid: 5280 + components: + - pos: 32.5,-5.5 + parent: 1 + type: Transform + - uid: 5281 + components: + - pos: 32.5,-6.5 + parent: 1 + type: Transform + - uid: 5282 + components: + - pos: 32.5,-7.5 + parent: 1 + type: Transform + - uid: 5283 + components: + - pos: 32.5,-8.5 + parent: 1 + type: Transform + - uid: 5284 + components: + - pos: 32.5,-9.5 + parent: 1 + type: Transform + - uid: 5285 + components: + - pos: 33.5,-9.5 + parent: 1 + type: Transform + - uid: 5286 + components: + - pos: 34.5,-9.5 + parent: 1 + type: Transform + - uid: 5287 + components: + - pos: 35.5,-9.5 + parent: 1 + type: Transform + - uid: 5288 + components: + - pos: 36.5,-9.5 + parent: 1 + type: Transform + - uid: 5289 + components: + - pos: 37.5,-9.5 + parent: 1 + type: Transform + - uid: 5290 + components: + - pos: 18.5,11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5291 + components: + - pos: 18.5,10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5292 + components: + - pos: 18.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5293 + components: + - pos: 18.5,8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5294 + components: + - pos: 18.5,7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5295 + components: + - pos: 18.5,6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5296 + components: + - pos: 17.5,6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5297 + components: + - pos: 16.5,6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5298 + components: + - pos: 15.5,6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5299 + components: + - pos: 14.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5300 + components: + - pos: 14.5,4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5301 + components: + - pos: 14.5,3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5302 + components: + - pos: 14.5,2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5303 + components: + - pos: 14.5,1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5304 + components: + - pos: 14.5,0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5305 + components: + - pos: 14.5,-0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5306 + components: + - pos: 14.5,6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5307 + components: + - pos: 14.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5308 + components: + - pos: 14.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5309 + components: + - pos: 14.5,-3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5310 + components: + - pos: 14.5,-4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5311 + components: + - pos: 14.5,-5.5 + parent: 1 + type: Transform + - uid: 5312 + components: + - pos: 14.5,-6.5 + parent: 1 + type: Transform + - uid: 5313 + components: + - pos: 15.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5314 + components: + - pos: 16.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5315 + components: + - pos: 17.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5316 + components: + - pos: 18.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5317 + components: + - pos: 18.5,-0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5318 + components: + - pos: 18.5,0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5319 + components: + - pos: 18.5,1.5 + parent: 1 + type: Transform + - uid: 5320 + components: + - pos: 18.5,2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5321 + components: + - pos: 18.5,3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5322 + components: + - pos: 18.5,4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5323 + components: + - pos: 17.5,4.5 + parent: 1 + type: Transform + - uid: 5324 + components: + - pos: 31.5,-9.5 + parent: 1 + type: Transform + - uid: 5325 + components: + - pos: 30.5,-9.5 + parent: 1 + type: Transform + - uid: 5326 + components: + - pos: 29.5,-9.5 + parent: 1 + type: Transform + - uid: 5327 + components: + - pos: 28.5,-9.5 + parent: 1 + type: Transform + - uid: 5328 + components: + - pos: 27.5,-9.5 + parent: 1 + type: Transform + - uid: 5329 + components: + - pos: 26.5,-9.5 + parent: 1 + type: Transform + - uid: 5330 + components: + - pos: 25.5,-9.5 + parent: 1 + type: Transform + - uid: 5331 + components: + - pos: 24.5,-9.5 + parent: 1 + type: Transform + - uid: 5332 + components: + - pos: 23.5,-9.5 + parent: 1 + type: Transform + - uid: 5333 + components: + - pos: 22.5,-9.5 + parent: 1 + type: Transform + - uid: 5334 + components: + - pos: 21.5,-9.5 + parent: 1 + type: Transform + - uid: 5335 + components: + - pos: 20.5,-9.5 + parent: 1 + type: Transform + - uid: 5336 + components: + - pos: 19.5,-9.5 + parent: 1 + type: Transform + - uid: 5337 + components: + - pos: 18.5,-9.5 + parent: 1 + type: Transform + - uid: 5338 + components: + - pos: 17.5,-9.5 + parent: 1 + type: Transform + - uid: 5339 + components: + - pos: 16.5,-9.5 + parent: 1 + type: Transform + - uid: 5340 + components: + - pos: 15.5,-9.5 + parent: 1 + type: Transform + - uid: 5341 + components: + - pos: 14.5,-9.5 + parent: 1 + type: Transform + - uid: 5342 + components: + - pos: 13.5,-9.5 + parent: 1 + type: Transform + - uid: 5343 + components: + - pos: 12.5,-9.5 + parent: 1 + type: Transform + - uid: 5344 + components: + - pos: 11.5,-9.5 + parent: 1 + type: Transform + - uid: 5345 + components: + - pos: 11.5,-12.5 + parent: 1 + type: Transform + - uid: 5346 + components: + - pos: 11.5,-11.5 + parent: 1 + type: Transform + - uid: 5347 + components: + - pos: 11.5,-10.5 + parent: 1 + type: Transform + - uid: 5349 + components: + - pos: 13.5,-13.5 + parent: 1 + type: Transform + - uid: 5350 + components: + - pos: 10.5,-9.5 + parent: 1 + type: Transform + - uid: 5351 + components: + - pos: 9.5,-9.5 + parent: 1 + type: Transform + - uid: 5352 + components: + - pos: 8.5,-9.5 + parent: 1 + type: Transform + - uid: 5353 + components: + - pos: 7.5,-9.5 + parent: 1 + type: Transform + - uid: 5354 + components: + - pos: 6.5,-9.5 + parent: 1 + type: Transform + - uid: 5355 + components: + - pos: 5.5,-9.5 + parent: 1 + type: Transform + - uid: 5356 + components: + - pos: 4.5,-9.5 + parent: 1 + type: Transform + - uid: 5357 + components: + - pos: 3.5,-9.5 + parent: 1 + type: Transform + - uid: 5358 + components: + - pos: 2.5,-9.5 + parent: 1 + type: Transform + - uid: 5359 + components: + - pos: 1.5,-9.5 + parent: 1 + type: Transform + - uid: 5360 + components: + - pos: 0.5,-9.5 + parent: 1 + type: Transform + - uid: 5361 + components: + - pos: -0.5,-9.5 + parent: 1 + type: Transform + - uid: 5362 + components: + - pos: -1.5,-9.5 + parent: 1 + type: Transform + - uid: 5363 + components: + - pos: -2.5,-9.5 + parent: 1 + type: Transform + - uid: 5364 + components: + - pos: -3.5,-9.5 + parent: 1 + type: Transform + - uid: 5365 + components: + - pos: -4.5,-9.5 + parent: 1 + type: Transform + - uid: 5366 + components: + - pos: -5.5,-9.5 + parent: 1 + type: Transform + - uid: 5367 + components: + - pos: -6.5,-9.5 + parent: 1 + type: Transform + - uid: 5368 + components: + - pos: -7.5,-9.5 + parent: 1 + type: Transform + - uid: 5369 + components: + - pos: -8.5,-9.5 + parent: 1 + type: Transform + - uid: 5370 + components: + - pos: -9.5,-9.5 + parent: 1 + type: Transform + - uid: 5371 + components: + - pos: -10.5,-9.5 + parent: 1 + type: Transform + - uid: 5372 + components: + - pos: -11.5,-9.5 + parent: 1 + type: Transform + - uid: 5373 + components: + - pos: -17.5,-9.5 + parent: 1 + type: Transform + - uid: 5374 + components: + - pos: -18.5,-9.5 + parent: 1 + type: Transform + - uid: 5375 + components: + - pos: -19.5,-9.5 + parent: 1 + type: Transform + - uid: 5376 + components: + - pos: -20.5,-9.5 + parent: 1 + type: Transform + - uid: 5377 + components: + - pos: -21.5,-9.5 + parent: 1 + type: Transform + - uid: 5378 + components: + - pos: -22.5,-9.5 + parent: 1 + type: Transform + - uid: 5379 + components: + - pos: -23.5,-9.5 + parent: 1 + type: Transform + - uid: 5380 + components: + - pos: -24.5,-9.5 + parent: 1 + type: Transform + - uid: 5381 + components: + - pos: -25.5,-9.5 + parent: 1 + type: Transform + - uid: 5382 + components: + - pos: -26.5,-9.5 + parent: 1 + type: Transform + - uid: 5383 + components: + - pos: -27.5,-9.5 + parent: 1 + type: Transform + - uid: 5384 + components: + - pos: -28.5,-9.5 + parent: 1 + type: Transform + - uid: 5385 + components: + - pos: -29.5,-9.5 + parent: 1 + type: Transform + - uid: 5386 + components: + - pos: -30.5,-9.5 + parent: 1 + type: Transform + - uid: 5387 + components: + - pos: -31.5,-9.5 + parent: 1 + type: Transform + - uid: 5388 + components: + - pos: -32.5,-9.5 + parent: 1 + type: Transform + - uid: 5389 + components: + - pos: -32.5,-7.5 + parent: 1 + type: Transform + - uid: 5391 + components: + - pos: -32.5,-6.5 + parent: 1 + type: Transform + - uid: 5392 + components: + - pos: -32.5,-5.5 + parent: 1 + type: Transform + - uid: 5393 + components: + - pos: -32.5,-4.5 + parent: 1 + type: Transform + - uid: 5394 + components: + - pos: -32.5,-3.5 + parent: 1 + type: Transform + - uid: 5395 + components: + - pos: -32.5,-2.5 + parent: 1 + type: Transform + - uid: 5396 + components: + - pos: -32.5,-1.5 + parent: 1 + type: Transform + - uid: 5397 + components: + - pos: -32.5,-0.5 + parent: 1 + type: Transform + - uid: 5398 + components: + - pos: -32.5,0.5 + parent: 1 + type: Transform + - uid: 5399 + components: + - pos: -32.5,1.5 + parent: 1 + type: Transform + - uid: 5400 + components: + - pos: -32.5,2.5 + parent: 1 + type: Transform + - uid: 5401 + components: + - pos: -32.5,3.5 + parent: 1 + type: Transform + - uid: 5402 + components: + - pos: -32.5,4.5 + parent: 1 + type: Transform + - uid: 5403 + components: + - pos: -32.5,5.5 + parent: 1 + type: Transform + - uid: 5404 + components: + - pos: -32.5,6.5 + parent: 1 + type: Transform + - uid: 5405 + components: + - pos: -32.5,7.5 + parent: 1 + type: Transform + - uid: 5406 + components: + - pos: -32.5,8.5 + parent: 1 + type: Transform + - uid: 5407 + components: + - pos: -32.5,9.5 + parent: 1 + type: Transform + - uid: 5408 + components: + - pos: -32.5,10.5 + parent: 1 + type: Transform + - uid: 5409 + components: + - pos: -32.5,11.5 + parent: 1 + type: Transform + - uid: 5410 + components: + - pos: -32.5,12.5 + parent: 1 + type: Transform + - uid: 5411 + components: + - pos: -32.5,13.5 + parent: 1 + type: Transform + - uid: 5412 + components: + - pos: -31.5,13.5 + parent: 1 + type: Transform + - uid: 5413 + components: + - pos: -30.5,13.5 + parent: 1 + type: Transform + - uid: 5414 + components: + - pos: -29.5,13.5 + parent: 1 + type: Transform + - uid: 5415 + components: + - pos: -28.5,13.5 + parent: 1 + type: Transform + - uid: 5416 + components: + - pos: -27.5,13.5 + parent: 1 + type: Transform + - uid: 5417 + components: + - pos: -26.5,13.5 + parent: 1 + type: Transform + - uid: 5418 + components: + - pos: -25.5,13.5 + parent: 1 + type: Transform + - uid: 5419 + components: + - pos: -24.5,13.5 + parent: 1 + type: Transform + - uid: 5420 + components: + - pos: -23.5,13.5 + parent: 1 + type: Transform + - uid: 5421 + components: + - pos: -22.5,13.5 + parent: 1 + type: Transform + - uid: 5422 + components: + - pos: -21.5,13.5 + parent: 1 + type: Transform + - uid: 5423 + components: + - pos: -20.5,13.5 + parent: 1 + type: Transform + - uid: 5424 + components: + - pos: -19.5,13.5 + parent: 1 + type: Transform + - uid: 5425 + components: + - pos: -18.5,13.5 + parent: 1 + type: Transform + - uid: 5426 + components: + - pos: -17.5,13.5 + parent: 1 + type: Transform + - uid: 5427 + components: + - pos: -16.5,13.5 + parent: 1 + type: Transform + - uid: 5428 + components: + - pos: -15.5,13.5 + parent: 1 + type: Transform + - uid: 5429 + components: + - pos: -14.5,13.5 + parent: 1 + type: Transform + - uid: 5430 + components: + - pos: -13.5,13.5 + parent: 1 + type: Transform + - uid: 5431 + components: + - pos: -12.5,13.5 + parent: 1 + type: Transform + - uid: 5432 + components: + - pos: -11.5,13.5 + parent: 1 + type: Transform + - uid: 5433 + components: + - pos: -10.5,13.5 + parent: 1 + type: Transform + - uid: 5434 + components: + - pos: -9.5,13.5 + parent: 1 + type: Transform + - uid: 5435 + components: + - pos: -8.5,13.5 + parent: 1 + type: Transform + - uid: 5436 + components: + - pos: -7.5,13.5 + parent: 1 + type: Transform + - uid: 5437 + components: + - pos: -6.5,13.5 + parent: 1 + type: Transform + - uid: 5438 + components: + - pos: -5.5,13.5 + parent: 1 + type: Transform + - uid: 5439 + components: + - pos: -4.5,13.5 + parent: 1 + type: Transform + - uid: 5440 + components: + - pos: -3.5,13.5 + parent: 1 + type: Transform + - uid: 5441 + components: + - pos: -2.5,13.5 + parent: 1 + type: Transform + - uid: 5442 + components: + - pos: -1.5,13.5 + parent: 1 + type: Transform + - uid: 5443 + components: + - pos: -0.5,13.5 + parent: 1 + type: Transform + - uid: 5444 + components: + - pos: -30.5,14.5 + parent: 1 + type: Transform + - uid: 5445 + components: + - pos: -30.5,15.5 + parent: 1 + type: Transform + - uid: 5446 + components: + - pos: -30.5,16.5 + parent: 1 + type: Transform + - uid: 5447 + components: + - pos: -30.5,17.5 + parent: 1 + type: Transform + - uid: 5448 + components: + - pos: -30.5,18.5 + parent: 1 + type: Transform + - uid: 5449 + components: + - pos: -30.5,19.5 + parent: 1 + type: Transform + - uid: 5450 + components: + - pos: -30.5,20.5 + parent: 1 + type: Transform + - uid: 5451 + components: + - pos: -30.5,21.5 + parent: 1 + type: Transform + - uid: 5452 + components: + - pos: -30.5,22.5 + parent: 1 + type: Transform + - uid: 5453 + components: + - pos: -30.5,23.5 + parent: 1 + type: Transform + - uid: 5454 + components: + - pos: -30.5,24.5 + parent: 1 + type: Transform + - uid: 5455 + components: + - pos: -30.5,25.5 + parent: 1 + type: Transform + - uid: 5456 + components: + - pos: -30.5,26.5 + parent: 1 + type: Transform + - uid: 5457 + components: + - pos: -30.5,27.5 + parent: 1 + type: Transform + - uid: 5458 + components: + - pos: -30.5,28.5 + parent: 1 + type: Transform + - uid: 5459 + components: + - pos: -30.5,29.5 + parent: 1 + type: Transform + - uid: 5460 + components: + - pos: -30.5,30.5 + parent: 1 + type: Transform + - uid: 5461 + components: + - pos: -30.5,31.5 + parent: 1 + type: Transform + - uid: 5462 + components: + - pos: -30.5,32.5 + parent: 1 + type: Transform + - uid: 5463 + components: + - pos: -30.5,33.5 + parent: 1 + type: Transform + - uid: 5464 + components: + - pos: -30.5,34.5 + parent: 1 + type: Transform + - uid: 5465 + components: + - pos: -30.5,35.5 + parent: 1 + type: Transform + - uid: 5466 + components: + - pos: -30.5,36.5 + parent: 1 + type: Transform + - uid: 5467 + components: + - pos: -29.5,36.5 + parent: 1 + type: Transform + - uid: 5468 + components: + - pos: -28.5,36.5 + parent: 1 + type: Transform + - uid: 5469 + components: + - pos: -27.5,36.5 + parent: 1 + type: Transform + - uid: 5470 + components: + - pos: -26.5,36.5 + parent: 1 + type: Transform + - uid: 5471 + components: + - pos: -25.5,36.5 + parent: 1 + type: Transform + - uid: 5472 + components: + - pos: -24.5,36.5 + parent: 1 + type: Transform + - uid: 5473 + components: + - pos: -23.5,36.5 + parent: 1 + type: Transform + - uid: 5474 + components: + - pos: -22.5,36.5 + parent: 1 + type: Transform + - uid: 5475 + components: + - pos: -26.5,-8.5 + parent: 1 + type: Transform + - uid: 5476 + components: + - pos: -26.5,-7.5 + parent: 1 + type: Transform + - uid: 5477 + components: + - pos: -26.5,-6.5 + parent: 1 + type: Transform + - uid: 5478 + components: + - pos: -26.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5479 + components: + - pos: -25.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5480 + components: + - pos: -24.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5481 + components: + - pos: -23.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5482 + components: + - pos: -22.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5483 + components: + - pos: -21.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5484 + components: + - pos: -20.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5485 + components: + - pos: -19.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5486 + components: + - pos: -19.5,-4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5487 + components: + - pos: -19.5,-3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5488 + components: + - pos: -19.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5489 + components: + - pos: -19.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5490 + components: + - pos: -19.5,-0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5491 + components: + - pos: -19.5,0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5492 + components: + - pos: -19.5,1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5493 + components: + - pos: -19.5,2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5494 + components: + - pos: -19.5,3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5495 + components: + - pos: -19.5,4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5496 + components: + - pos: -19.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5497 + components: + - pos: -19.5,6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5498 + components: + - pos: -19.5,7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5499 + components: + - pos: -18.5,7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5500 + components: + - pos: -17.5,7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5501 + components: + - pos: -16.5,7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5502 + components: + - pos: -15.5,7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5503 + components: + - pos: -15.5,8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5504 + components: + - pos: -15.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5505 + components: + - pos: -15.5,10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5506 + components: + - pos: -15.5,11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5507 + components: + - pos: -15.5,12.5 + parent: 1 + type: Transform + - uid: 5508 + components: + - pos: -20.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5509 + components: + - pos: -21.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5510 + components: + - pos: -22.5,-2.5 + parent: 1 + type: Transform + - uid: 5511 + components: + - pos: -23.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5512 + components: + - pos: -24.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5513 + components: + - pos: -25.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5514 + components: + - pos: -25.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5515 + components: + - pos: -25.5,-0.5 + parent: 1 + type: Transform + - uid: 5516 + components: + - pos: -23.5,35.5 + parent: 1 + type: Transform + - uid: 5517 + components: + - pos: -23.5,34.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5518 + components: + - pos: -23.5,33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5519 + components: + - pos: -23.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5520 + components: + - pos: -23.5,31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5521 + components: + - pos: -23.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5522 + components: + - pos: -23.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5523 + components: + - pos: -23.5,28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5524 + components: + - pos: -23.5,27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5525 + components: + - pos: -23.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5526 + components: + - pos: -23.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5527 + components: + - pos: -22.5,27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5528 + components: + - pos: -21.5,27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5529 + components: + - pos: -20.5,27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5536 + components: + - pos: -21.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5537 + components: + - pos: -21.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5538 + components: + - pos: -24.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5539 + components: + - pos: -25.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5540 + components: + - pos: -26.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5541 + components: + - pos: -27.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5542 + components: + - pos: -27.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5543 + components: + - pos: -27.5,23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5544 + components: + - pos: -27.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5545 + components: + - pos: -27.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5546 + components: + - pos: -27.5,20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5547 + components: + - pos: -27.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5548 + components: + - pos: -27.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5549 + components: + - pos: -27.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5550 + components: + - pos: -26.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5551 + components: + - pos: -25.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5552 + components: + - pos: -25.5,15.5 + parent: 1 + type: Transform + - uid: 5553 + components: + - pos: -25.5,16.5 + parent: 1 + type: Transform + - uid: 5557 + components: + - pos: -28.5,23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5558 + components: + - pos: -29.5,23.5 + parent: 1 + type: Transform + - uid: 5559 + components: + - pos: 39.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5560 + components: + - pos: 37.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5561 + components: + - pos: 36.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5562 + components: + - pos: 35.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5563 + components: + - pos: 34.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5564 + components: + - pos: 33.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5565 + components: + - pos: 32.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5566 + components: + - pos: 32.5,-12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5567 + components: + - pos: 32.5,-13.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5568 + components: + - pos: 32.5,-14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5569 + components: + - pos: 32.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5570 + components: + - pos: 31.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5571 + components: + - pos: 30.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5572 + components: + - pos: 30.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5573 + components: + - pos: 30.5,-17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5574 + components: + - pos: 30.5,-18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5575 + components: + - pos: 30.5,-19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5576 + components: + - pos: 30.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5577 + components: + - pos: 30.5,-21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5578 + components: + - pos: 30.5,-22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5579 + components: + - pos: 30.5,-23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5580 + components: + - pos: 30.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5581 + components: + - pos: 29.5,-19.5 + parent: 1 + type: Transform + - uid: 5582 + components: + - pos: 28.5,-19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5583 + components: + - pos: 27.5,-19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5584 + components: + - pos: 26.5,-19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5585 + components: + - pos: 26.5,-18.5 + parent: 1 + type: Transform + - uid: 5586 + components: + - pos: 11.5,-34.5 + parent: 1 + type: Transform + - uid: 5587 + components: + - pos: 10.5,-34.5 + parent: 1 + type: Transform + - uid: 5588 + components: + - pos: 9.5,-34.5 + parent: 1 + type: Transform + - uid: 5589 + components: + - pos: 8.5,-34.5 + parent: 1 + type: Transform + - uid: 5590 + components: + - pos: 13.5,-31.5 + parent: 1 + type: Transform + - uid: 5591 + components: + - pos: 13.5,-30.5 + parent: 1 + type: Transform + - uid: 5592 + components: + - pos: 13.5,-29.5 + parent: 1 + type: Transform + - uid: 5593 + components: + - pos: 15.5,-35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5595 + components: + - pos: 15.5,-29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5596 + components: + - pos: 15.5,-30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5599 + components: + - pos: 15.5,-33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5600 + components: + - pos: 16.5,-29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5601 + components: + - pos: 17.5,-29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5602 + components: + - pos: 18.5,-29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5603 + components: + - pos: 19.5,-29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5604 + components: + - pos: 20.5,-29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5605 + components: + - pos: 21.5,-29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5606 + components: + - pos: 21.5,-28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5607 + components: + - pos: 21.5,-27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5608 + components: + - pos: 22.5,-27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5609 + components: + - pos: 22.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5610 + components: + - pos: 22.5,-25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5611 + components: + - pos: 22.5,-24.5 + parent: 1 + type: Transform + - uid: 5612 + components: + - pos: 23.5,-24.5 + parent: 1 + type: Transform + - uid: 5613 + components: + - pos: 24.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5614 + components: + - pos: 25.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5615 + components: + - pos: 26.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5616 + components: + - pos: 27.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5617 + components: + - pos: 28.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5618 + components: + - pos: 29.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5706 + components: + - pos: -32.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5936 + components: + - pos: -25.5,14.5 + parent: 1 + type: Transform + - uid: 5955 + components: + - pos: -20.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5957 + components: + - pos: 5.5,-64.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5958 + components: + - pos: 5.5,-65.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5959 + components: + - pos: 5.5,-66.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5960 + components: + - pos: 5.5,-67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5961 + components: + - pos: 5.5,-68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5962 + components: + - pos: 5.5,-69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5963 + components: + - pos: 5.5,-70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5964 + components: + - pos: 7.5,-70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5965 + components: + - pos: 7.5,-69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5966 + components: + - pos: 7.5,-68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5967 + components: + - pos: 7.5,-67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5968 + components: + - pos: 7.5,-66.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5969 + components: + - pos: 7.5,-65.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5970 + components: + - pos: 7.5,-64.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5971 + components: + - pos: -30.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5972 + components: + - pos: -31.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5973 + components: + - pos: -32.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5974 + components: + - pos: -33.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5975 + components: + - pos: -34.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5976 + components: + - pos: -35.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5977 + components: + - pos: -35.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5978 + components: + - pos: -35.5,-14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5979 + components: + - pos: -35.5,-13.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5980 + components: + - pos: -35.5,-12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5981 + components: + - pos: -35.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5982 + components: + - pos: -35.5,-10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5983 + components: + - pos: -35.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5984 + components: + - pos: -35.5,-8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5985 + components: + - pos: -35.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5986 + components: + - pos: -34.5,-7.5 + parent: 1 + type: Transform + - uid: 5987 + components: + - pos: -33.5,-7.5 + parent: 1 + type: Transform + - uid: 6036 + components: + - pos: 14.5,-8.5 + parent: 1 + type: Transform + - uid: 6037 + components: + - pos: 14.5,-7.5 + parent: 1 + type: Transform + - uid: 6046 + components: + - pos: 39.5,-10.5 + parent: 1 + type: Transform + - uid: 6047 + components: + - pos: 39.5,-9.5 + parent: 1 + type: Transform + - uid: 6048 + components: + - pos: 38.5,-9.5 + parent: 1 + type: Transform + - uid: 6076 + components: + - pos: 15.5,-34.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6079 + components: + - pos: 15.5,-31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6080 + components: + - pos: 15.5,-32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6102 + components: + - pos: 25.5,34.5 + parent: 1 + type: Transform + - uid: 6408 + components: + - pos: 7.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6409 + components: + - pos: 7.5,-17.5 + parent: 1 + type: Transform + - uid: 6410 + components: + - pos: 8.5,-17.5 + parent: 1 + type: Transform + - uid: 6411 + components: + - pos: 8.5,-18.5 + parent: 1 + type: Transform + - uid: 6440 + components: + - pos: -27.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6441 + components: + - pos: -27.5,-4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6442 + components: + - pos: -27.5,-3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6443 + components: + - pos: -27.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6444 + components: + - pos: -27.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6445 + components: + - pos: -27.5,-0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6446 + components: + - pos: -27.5,0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6447 + components: + - pos: -27.5,1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6448 + components: + - pos: -28.5,1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6449 + components: + - pos: -29.5,1.5 + parent: 1 + type: Transform + - uid: 6450 + components: + - pos: -30.5,1.5 + parent: 1 + type: Transform + - uid: 6451 + components: + - pos: -31.5,1.5 + parent: 1 + type: Transform + - uid: 6500 + components: + - pos: 9.5,-28.5 + parent: 1 + type: Transform + - uid: 6519 + components: + - pos: -44.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6520 + components: + - pos: -42.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6527 + components: + - pos: -46.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6529 + components: + - pos: -40.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6539 + components: + - pos: -45.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6540 + components: + - pos: -47.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6541 + components: + - pos: -46.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6548 + components: + - pos: -36.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6572 + components: + - pos: -41.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6573 + components: + - pos: -47.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6574 + components: + - pos: -43.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6576 + components: + - pos: 6.5,-28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6577 + components: + - pos: 8.5,-28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6579 + components: + - pos: 6.5,-27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6580 + components: + - pos: 7.5,-27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6708 + components: + - pos: -35.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6709 + components: + - pos: -35.5,20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6710 + components: + - pos: -35.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6711 + components: + - pos: -32.5,23.5 + parent: 1 + type: Transform + - uid: 6712 + components: + - pos: -33.5,23.5 + parent: 1 + type: Transform + - uid: 6726 + components: + - pos: -34.5,13.5 + parent: 1 + type: Transform + - uid: 6727 + components: + - pos: -35.5,13.5 + parent: 1 + type: Transform + - uid: 6728 + components: + - pos: -33.5,13.5 + parent: 1 + type: Transform + - uid: 6729 + components: + - pos: -35.5,14.5 + parent: 1 + type: Transform + - uid: 6730 + components: + - pos: -35.5,15.5 + parent: 1 + type: Transform + - uid: 6731 + components: + - pos: -35.5,16.5 + parent: 1 + type: Transform + - uid: 6732 + components: + - pos: -35.5,17.5 + parent: 1 + type: Transform + - uid: 6733 + components: + - pos: -35.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6734 + components: + - pos: -34.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6738 + components: + - pos: -34.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6739 + components: + - pos: -34.5,23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6740 + components: + - pos: -34.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6741 + components: + - pos: -34.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6742 + components: + - pos: -34.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6743 + components: + - pos: -34.5,27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6744 + components: + - pos: -34.5,28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6745 + components: + - pos: -34.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6746 + components: + - pos: -34.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6747 + components: + - pos: -34.5,31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6748 + components: + - pos: -34.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6749 + components: + - pos: -34.5,33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6750 + components: + - pos: -35.5,33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6751 + components: + - pos: -36.5,33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6752 + components: + - pos: -37.5,33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6753 + components: + - pos: -38.5,33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6754 + components: + - pos: -38.5,34.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6755 + components: + - pos: -38.5,35.5 + parent: 1 + type: Transform + - uid: 6756 + components: + - pos: -38.5,36.5 + parent: 1 + type: Transform + - uid: 6757 + components: + - pos: -37.5,36.5 + parent: 1 + type: Transform + - uid: 6758 + components: + - pos: -36.5,36.5 + parent: 1 + type: Transform + - uid: 6759 + components: + - pos: -35.5,36.5 + parent: 1 + type: Transform + - uid: 6760 + components: + - pos: -34.5,36.5 + parent: 1 + type: Transform + - uid: 6761 + components: + - pos: -33.5,36.5 + parent: 1 + type: Transform + - uid: 6762 + components: + - pos: -32.5,36.5 + parent: 1 + type: Transform + - uid: 6763 + components: + - pos: -31.5,36.5 + parent: 1 + type: Transform + - uid: 6767 + components: + - pos: -41.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6768 + components: + - pos: -42.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7209 + components: + - pos: 21.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7210 + components: + - pos: 20.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7211 + components: + - pos: 19.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7212 + components: + - pos: 18.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7213 + components: + - pos: 17.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7214 + components: + - pos: 16.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7215 + components: + - pos: 16.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7216 + components: + - pos: 16.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7217 + components: + - pos: 15.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7218 + components: + - pos: 14.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7219 + components: + - pos: 13.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7220 + components: + - pos: 12.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7221 + components: + - pos: 11.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7222 + components: + - pos: 10.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7223 + components: + - pos: 9.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7224 + components: + - pos: 9.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7225 + components: + - pos: 9.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7226 + components: + - pos: 9.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7227 + components: + - pos: 9.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7228 + components: + - pos: 9.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7229 + components: + - pos: 9.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7230 + components: + - pos: 9.5,43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7231 + components: + - pos: 9.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7232 + components: + - pos: 9.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7233 + components: + - pos: 8.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7234 + components: + - pos: 7.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7235 + components: + - pos: 6.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7236 + components: + - pos: 5.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7237 + components: + - pos: 4.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7238 + components: + - pos: 3.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7239 + components: + - pos: 2.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7240 + components: + - pos: 1.5,41.5 + parent: 1 + type: Transform + - uid: 7241 + components: + - pos: 0.5,41.5 + parent: 1 + type: Transform + - uid: 7242 + components: + - pos: -0.5,41.5 + parent: 1 + type: Transform + - uid: 7294 + components: + - pos: 29.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7295 + components: + - pos: 28.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7296 + components: + - pos: 27.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7297 + components: + - pos: 26.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7298 + components: + - pos: 25.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7299 + components: + - pos: 24.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7300 + components: + - pos: 24.5,-14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7301 + components: + - pos: 24.5,-23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7322 + components: + - pos: 24.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7323 + components: + - pos: 24.5,-17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7324 + components: + - pos: 24.5,-18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7325 + components: + - pos: 24.5,-19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7326 + components: + - pos: 24.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7327 + components: + - pos: 24.5,-21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7328 + components: + - pos: 24.5,-22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7336 + components: + - pos: -31.5,23.5 + parent: 1 + type: Transform + - uid: 7337 + components: + - pos: 24.5,-13.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7338 + components: + - pos: 24.5,-12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7339 + components: + - pos: 24.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7340 + components: + - pos: 24.5,-10.5 + parent: 1 + type: Transform + - uid: 7341 + components: + - pos: 36.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7347 + components: + - pos: 33.5,36.5 + parent: 1 + type: Transform + - uid: 7348 + components: + - pos: 34.5,36.5 + parent: 1 + type: Transform + - uid: 7349 + components: + - pos: 34.5,37.5 + parent: 1 + type: Transform + - uid: 7350 + components: + - pos: 34.5,38.5 + parent: 1 + type: Transform + - uid: 7351 + components: + - pos: 34.5,39.5 + parent: 1 + type: Transform + - uid: 7352 + components: + - pos: 34.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7353 + components: + - pos: 34.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7354 + components: + - pos: 35.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7355 + components: + - pos: 36.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7356 + components: + - pos: 36.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7357 + components: + - pos: 36.5,43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7358 + components: + - pos: 36.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7359 + components: + - pos: 36.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7360 + components: + - pos: 36.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7361 + components: + - pos: 36.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7362 + components: + - pos: 36.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7363 + components: + - pos: 36.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7364 + components: + - pos: 36.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7365 + components: + - pos: 36.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7366 + components: + - pos: 35.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7367 + components: + - pos: 34.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7368 + components: + - pos: 33.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7369 + components: + - pos: 32.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7370 + components: + - pos: 31.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7371 + components: + - pos: 30.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7372 + components: + - pos: 29.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7373 + components: + - pos: 29.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7374 + components: + - pos: 28.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7375 + components: + - pos: 28.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7376 + components: + - pos: 28.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7377 + components: + - pos: 28.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7378 + components: + - pos: 28.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7379 + components: + - pos: 28.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7380 + components: + - pos: 27.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7381 + components: + - pos: 26.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7382 + components: + - pos: 25.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7383 + components: + - pos: 24.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7384 + components: + - pos: 23.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7385 + components: + - pos: 22.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7546 + components: + - pos: 37.5,60.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7547 + components: + - pos: 37.5,59.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7548 + components: + - pos: 37.5,58.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7549 + components: + - pos: 37.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7550 + components: + - pos: 37.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7551 + components: + - pos: 37.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7552 + components: + - pos: 36.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7553 + components: + - pos: 35.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7554 + components: + - pos: 35.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7555 + components: + - pos: 34.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7556 + components: + - pos: 33.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7557 + components: + - pos: 32.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7558 + components: + - pos: 31.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7559 + components: + - pos: 30.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7560 + components: + - pos: 29.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7561 + components: + - pos: 28.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7562 + components: + - pos: 35.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7563 + components: + - pos: 34.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7564 + components: + - pos: 33.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7565 + components: + - pos: 32.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7566 + components: + - pos: 31.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7567 + components: + - pos: 30.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7568 + components: + - pos: 29.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7569 + components: + - pos: 28.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7570 + components: + - pos: 38.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7571 + components: + - pos: 39.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7572 + components: + - pos: 39.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7573 + components: + - pos: 40.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7574 + components: + - pos: 41.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7575 + components: + - pos: 42.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7576 + components: + - pos: 43.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7577 + components: + - pos: 44.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7578 + components: + - pos: 45.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7579 + components: + - pos: 46.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7580 + components: + - pos: 39.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7581 + components: + - pos: 40.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7582 + components: + - pos: 41.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7583 + components: + - pos: 42.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7584 + components: + - pos: 43.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7585 + components: + - pos: 44.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7586 + components: + - pos: 45.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7587 + components: + - pos: 46.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7588 + components: + - pos: 38.5,73.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7589 + components: + - pos: 39.5,73.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7590 + components: + - pos: 39.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7591 + components: + - pos: 40.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7592 + components: + - pos: 41.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7593 + components: + - pos: 42.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7594 + components: + - pos: 43.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7595 + components: + - pos: 44.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7596 + components: + - pos: 45.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7597 + components: + - pos: 46.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7598 + components: + - pos: 39.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7599 + components: + - pos: 40.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7600 + components: + - pos: 41.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7601 + components: + - pos: 42.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7602 + components: + - pos: 43.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7603 + components: + - pos: 44.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7604 + components: + - pos: 45.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7605 + components: + - pos: 46.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7606 + components: + - pos: 36.5,73.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7607 + components: + - pos: 35.5,73.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7608 + components: + - pos: 35.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7609 + components: + - pos: 34.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7610 + components: + - pos: 33.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7611 + components: + - pos: 32.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7612 + components: + - pos: 31.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7613 + components: + - pos: 30.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7614 + components: + - pos: 29.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7615 + components: + - pos: 28.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7616 + components: + - pos: 35.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7617 + components: + - pos: 34.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7618 + components: + - pos: 33.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7619 + components: + - pos: 32.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7620 + components: + - pos: 31.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7621 + components: + - pos: 30.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7622 + components: + - pos: 29.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7623 + components: + - pos: 28.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7830 + components: + - pos: -37.5,73.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7831 + components: + - pos: -39.5,73.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7832 + components: + - pos: -39.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7833 + components: + - pos: -37.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7834 + components: + - pos: -36.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7835 + components: + - pos: -36.5,73.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7836 + components: + - pos: -40.5,73.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7837 + components: + - pos: -40.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7838 + components: + - pos: -40.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7839 + components: + - pos: -41.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7840 + components: + - pos: -42.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7841 + components: + - pos: -43.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7842 + components: + - pos: -44.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7843 + components: + - pos: -45.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7844 + components: + - pos: -46.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7845 + components: + - pos: -47.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7846 + components: + - pos: -40.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7847 + components: + - pos: -41.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7848 + components: + - pos: -42.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7849 + components: + - pos: -43.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7850 + components: + - pos: -44.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7851 + components: + - pos: -45.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7852 + components: + - pos: -46.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7853 + components: + - pos: -47.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7854 + components: + - pos: -36.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7855 + components: + - pos: -35.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7856 + components: + - pos: -34.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7857 + components: + - pos: -33.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7858 + components: + - pos: -32.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7859 + components: + - pos: -31.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7860 + components: + - pos: -30.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7861 + components: + - pos: -29.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7862 + components: + - pos: -36.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7863 + components: + - pos: -35.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7864 + components: + - pos: -34.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7865 + components: + - pos: -33.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7866 + components: + - pos: -32.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7867 + components: + - pos: -31.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7868 + components: + - pos: -30.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7869 + components: + - pos: -29.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7871 + components: + - pos: -38.5,59.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7872 + components: + - pos: -38.5,58.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7873 + components: + - pos: -38.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7874 + components: + - pos: -38.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7875 + components: + - pos: -38.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7883 + components: + - pos: -35.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7896 + components: + - pos: -34.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7897 + components: + - pos: -30.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7903 + components: + - pos: -31.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7904 + components: + - pos: -33.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7905 + components: + - pos: -29.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7906 + components: + - pos: -36.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7907 + components: + - pos: -34.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7908 + components: + - pos: -33.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7909 + components: + - pos: -32.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7910 + components: + - pos: -31.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7911 + components: + - pos: -30.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7912 + components: + - pos: -29.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8012 + components: + - pos: -25.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8013 + components: + - pos: -26.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8014 + components: + - pos: -27.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8015 + components: + - pos: -27.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8016 + components: + - pos: -27.5,55.5 + parent: 1 + type: Transform + - uid: 8017 + components: + - pos: -27.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8018 + components: + - pos: -27.5,53.5 + parent: 1 + type: Transform + - uid: 8019 + components: + - pos: -27.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8020 + components: + - pos: -28.5,52.5 + parent: 1 + type: Transform + - uid: 8021 + components: + - pos: -29.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8022 + components: + - pos: -30.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8023 + components: + - pos: -31.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8024 + components: + - pos: -32.5,52.5 + parent: 1 + type: Transform + - uid: 8025 + components: + - pos: -33.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8026 + components: + - pos: -34.5,52.5 + parent: 1 + type: Transform + - uid: 8027 + components: + - pos: -35.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8028 + components: + - pos: -36.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8029 + components: + - pos: -37.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8030 + components: + - pos: -38.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8031 + components: + - pos: -39.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8032 + components: + - pos: -40.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8033 + components: + - pos: -40.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8034 + components: + - pos: -41.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8035 + components: + - pos: -42.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8036 + components: + - pos: -43.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8037 + components: + - pos: -43.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8038 + components: + - pos: -43.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8039 + components: + - pos: -43.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8040 + components: + - pos: -43.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8041 + components: + - pos: -43.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8042 + components: + - pos: -43.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8043 + components: + - pos: -43.5,44.5 + parent: 1 + type: Transform + - uid: 8044 + components: + - pos: -43.5,43.5 + parent: 1 + type: Transform + - uid: 8045 + components: + - pos: -43.5,42.5 + parent: 1 + type: Transform + - uid: 8046 + components: + - pos: -43.5,41.5 + parent: 1 + type: Transform + - uid: 8047 + components: + - pos: -43.5,40.5 + parent: 1 + type: Transform + - uid: 8048 + components: + - pos: -43.5,39.5 + parent: 1 + type: Transform + - uid: 8049 + components: + - pos: -43.5,38.5 + parent: 1 + type: Transform + - uid: 8050 + components: + - pos: -43.5,37.5 + parent: 1 + type: Transform + - uid: 8051 + components: + - pos: -43.5,36.5 + parent: 1 + type: Transform + - uid: 8052 + components: + - pos: -42.5,36.5 + parent: 1 + type: Transform + - uid: 8053 + components: + - pos: -41.5,36.5 + parent: 1 + type: Transform + - uid: 8054 + components: + - pos: -40.5,36.5 + parent: 1 + type: Transform + - uid: 8055 + components: + - pos: -39.5,36.5 + parent: 1 + type: Transform + - uid: 8057 + components: + - pos: -39.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8058 + components: + - pos: -39.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8059 + components: + - pos: -39.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8821 + components: + - pos: 0.5,-5.5 + parent: 8756 + type: Transform + - uid: 8822 + components: + - pos: -0.5,-5.5 + parent: 8756 + type: Transform + - uid: 8823 + components: + - pos: -1.5,-5.5 + parent: 8756 + type: Transform + - uid: 8824 + components: + - pos: -2.5,-5.5 + parent: 8756 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9727 + components: + - pos: -17.5,-18.5 + parent: 1 + type: Transform + - uid: 9728 + components: + - pos: -18.5,-18.5 + parent: 1 + type: Transform + - uid: 9729 + components: + - pos: -19.5,-18.5 + parent: 1 + type: Transform + - uid: 9730 + components: + - pos: -20.5,-18.5 + parent: 1 + type: Transform + - uid: 9731 + components: + - pos: -21.5,-18.5 + parent: 1 + type: Transform + - uid: 9732 + components: + - pos: -22.5,-18.5 + parent: 1 + type: Transform + - uid: 9733 + components: + - pos: -23.5,-18.5 + parent: 1 + type: Transform + - uid: 10144 + components: + - pos: 36.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10147 + components: + - pos: 36.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10541 + components: + - pos: 7.5,-41.5 + parent: 1 + type: Transform + - uid: 10542 + components: + - pos: 7.5,-42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10543 + components: + - pos: 6.5,-42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10544 + components: + - pos: 5.5,-42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10663 + components: + - pos: 15.5,-11.5 + parent: 1 + type: Transform + - uid: 10871 + components: + - pos: 27.5,-18.5 + parent: 1 + type: Transform + - uid: 13141 + components: + - pos: 20.5,13.5 + parent: 1 + type: Transform + - uid: 13142 + components: + - pos: 21.5,13.5 + parent: 1 + type: Transform + - uid: 13143 + components: + - pos: 22.5,13.5 + parent: 1 + type: Transform + - uid: 13144 + components: + - pos: 23.5,13.5 + parent: 1 + type: Transform + - uid: 13145 + components: + - pos: 24.5,13.5 + parent: 1 + type: Transform + - uid: 13146 + components: + - pos: 25.5,13.5 + parent: 1 + type: Transform + - uid: 13147 + components: + - pos: 26.5,13.5 + parent: 1 + type: Transform + - uid: 13148 + components: + - pos: 27.5,13.5 + parent: 1 + type: Transform + - uid: 13149 + components: + - pos: 28.5,13.5 + parent: 1 + type: Transform + - uid: 13150 + components: + - pos: 29.5,13.5 + parent: 1 + type: Transform + - uid: 13151 + components: + - pos: 30.5,13.5 + parent: 1 + type: Transform + - uid: 13152 + components: + - pos: 31.5,13.5 + parent: 1 + type: Transform + - uid: 13178 + components: + - pos: -25.5,-17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13179 + components: + - pos: -25.5,-18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14045 + components: + - pos: 36.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14634 + components: + - pos: -32.5,-8.5 + parent: 1 + type: Transform + - uid: 16380 + components: + - pos: 15.5,-13.5 + parent: 1 + type: Transform + - uid: 18454 + components: + - pos: 22.5,-12.5 + parent: 1 + type: Transform + - uid: 18455 + components: + - pos: 22.5,-13.5 + parent: 1 + type: Transform + - uid: 18456 + components: + - pos: 16.5,-10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 18458 + components: + - pos: 16.5,-11.5 + parent: 1 + type: Transform + - uid: 18459 + components: + - pos: 16.5,-13.5 + parent: 1 + type: Transform + - uid: 18460 + components: + - pos: 17.5,-13.5 + parent: 1 + type: Transform + - uid: 18461 + components: + - pos: 18.5,-13.5 + parent: 1 + type: Transform + - uid: 18462 + components: + - pos: 19.5,-13.5 + parent: 1 + type: Transform + - uid: 18463 + components: + - pos: 20.5,-13.5 + parent: 1 + type: Transform + - uid: 18464 + components: + - pos: 21.5,-13.5 + parent: 1 + type: Transform +- proto: CableHVStack + entities: + - uid: 9124 + components: + - pos: 13.366544,-22.108011 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 4571 + components: + - pos: 18.5,-11.5 + parent: 1 + type: Transform + - uid: 8825 + components: + - pos: -2.5,-5.5 + parent: 8756 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8826 + components: + - pos: -1.5,-5.5 + parent: 8756 + type: Transform + - uid: 8827 + components: + - pos: -0.5,-5.5 + parent: 8756 + type: Transform + - uid: 8828 + components: + - pos: 0.5,-5.5 + parent: 8756 + type: Transform + - uid: 8829 + components: + - pos: 1.5,-5.5 + parent: 8756 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9079 + components: + - pos: 8.5,-17.5 + parent: 1 + type: Transform + - uid: 9294 + components: + - pos: 17.5,-11.5 + parent: 1 + type: Transform + - uid: 9734 + components: + - pos: -23.5,-18.5 + parent: 1 + type: Transform + - uid: 9735 + components: + - pos: -22.5,-18.5 + parent: 1 + type: Transform + - uid: 9736 + components: + - pos: -22.5,-19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9765 + components: + - pos: -25.5,-15.5 + parent: 1 + type: Transform + - uid: 9766 + components: + - pos: -25.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9767 + components: + - pos: -26.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9768 + components: + - pos: -27.5,-16.5 + parent: 1 + type: Transform + - uid: 9769 + components: + - pos: -28.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9770 + components: + - pos: -29.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9771 + components: + - pos: -30.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9772 + components: + - pos: -31.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9773 + components: + - pos: -31.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9774 + components: + - pos: -31.5,-14.5 + parent: 1 + type: Transform + - uid: 9775 + components: + - pos: -31.5,-13.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10124 + components: + - pos: -24.5,36.5 + parent: 1 + type: Transform + - uid: 10152 + components: + - pos: 26.5,-18.5 + parent: 1 + type: Transform + - uid: 10153 + components: + - pos: 26.5,-19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10154 + components: + - pos: 27.5,-19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10155 + components: + - pos: 28.5,-19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10156 + components: + - pos: 29.5,-19.5 + parent: 1 + type: Transform + - uid: 10157 + components: + - pos: 30.5,-19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10158 + components: + - pos: 30.5,-18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10159 + components: + - pos: 30.5,-17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10160 + components: + - pos: 30.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10161 + components: + - pos: 30.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10162 + components: + - pos: 29.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10163 + components: + - pos: 29.5,-14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10272 + components: + - pos: -32.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10273 + components: + - pos: -33.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10274 + components: + - pos: -34.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10275 + components: + - pos: -35.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10276 + components: + - pos: -35.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10277 + components: + - pos: -35.5,-14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10278 + components: + - pos: -35.5,-13.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10279 + components: + - pos: -35.5,-12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10280 + components: + - pos: -35.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10281 + components: + - pos: -35.5,-10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10282 + components: + - pos: -35.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10283 + components: + - pos: -36.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10284 + components: + - pos: -37.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10285 + components: + - pos: -38.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10286 + components: + - pos: -39.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10287 + components: + - pos: -40.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10288 + components: + - pos: -40.5,-8.5 + parent: 1 + type: Transform + - uid: 10289 + components: + - pos: -40.5,-7.5 + parent: 1 + type: Transform + - uid: 10290 + components: + - pos: -40.5,-6.5 + parent: 1 + type: Transform + - uid: 10291 + components: + - pos: -40.5,-5.5 + parent: 1 + type: Transform + - uid: 10292 + components: + - pos: -40.5,-4.5 + parent: 1 + type: Transform + - uid: 10293 + components: + - pos: -40.5,-3.5 + parent: 1 + type: Transform + - uid: 10294 + components: + - pos: -40.5,-2.5 + parent: 1 + type: Transform + - uid: 10295 + components: + - pos: -40.5,-1.5 + parent: 1 + type: Transform + - uid: 10296 + components: + - pos: -40.5,-0.5 + parent: 1 + type: Transform + - uid: 10297 + components: + - pos: -39.5,-0.5 + parent: 1 + type: Transform + - uid: 10298 + components: + - pos: -39.5,0.5 + parent: 1 + type: Transform + - uid: 10299 + components: + - pos: -39.5,1.5 + parent: 1 + type: Transform + - uid: 10300 + components: + - pos: -39.5,2.5 + parent: 1 + type: Transform + - uid: 10301 + components: + - pos: -39.5,3.5 + parent: 1 + type: Transform + - uid: 10302 + components: + - pos: -39.5,4.5 + parent: 1 + type: Transform + - uid: 10303 + components: + - pos: -39.5,5.5 + parent: 1 + type: Transform + - uid: 10304 + components: + - pos: -39.5,6.5 + parent: 1 + type: Transform + - uid: 10305 + components: + - pos: -39.5,7.5 + parent: 1 + type: Transform + - uid: 10306 + components: + - pos: -40.5,7.5 + parent: 1 + type: Transform + - uid: 10307 + components: + - pos: -41.5,7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10386 + components: + - pos: 30.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10387 + components: + - pos: 30.5,-21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10388 + components: + - pos: 30.5,-22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10389 + components: + - pos: 30.5,-23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10390 + components: + - pos: 30.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10391 + components: + - pos: 29.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10392 + components: + - pos: 28.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10393 + components: + - pos: 27.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10394 + components: + - pos: 26.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10395 + components: + - pos: 25.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10396 + components: + - pos: 24.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10397 + components: + - pos: 23.5,-24.5 + parent: 1 + type: Transform + - uid: 10398 + components: + - pos: 22.5,-24.5 + parent: 1 + type: Transform + - uid: 10399 + components: + - pos: 22.5,-25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10400 + components: + - pos: 22.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10401 + components: + - pos: 22.5,-27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10402 + components: + - pos: 21.5,-27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10403 + components: + - pos: 21.5,-28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10404 + components: + - pos: 21.5,-29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10405 + components: + - pos: 20.5,-29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10406 + components: + - pos: 19.5,-29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10407 + components: + - pos: 18.5,-29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10408 + components: + - pos: 17.5,-29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10409 + components: + - pos: 16.5,-29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10410 + components: + - pos: 15.5,-29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10411 + components: + - pos: 15.5,-30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10412 + components: + - pos: 15.5,-31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10413 + components: + - pos: 15.5,-32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10414 + components: + - pos: 15.5,-33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10415 + components: + - pos: 15.5,-34.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10416 + components: + - pos: 8.5,-18.5 + parent: 1 + type: Transform + - uid: 10418 + components: + - pos: 13.5,-35.5 + parent: 1 + type: Transform + - uid: 10419 + components: + - pos: 13.5,-34.5 + parent: 1 + type: Transform + - uid: 10420 + components: + - pos: 13.5,-33.5 + parent: 1 + type: Transform + - uid: 10421 + components: + - pos: 13.5,-32.5 + parent: 1 + type: Transform + - uid: 10422 + components: + - pos: 13.5,-31.5 + parent: 1 + type: Transform + - uid: 10423 + components: + - pos: 13.5,-30.5 + parent: 1 + type: Transform + - uid: 10424 + components: + - pos: 13.5,-29.5 + parent: 1 + type: Transform + - uid: 10425 + components: + - pos: 12.5,-29.5 + parent: 1 + type: Transform + - uid: 10426 + components: + - pos: 12.5,-29.5 + parent: 1 + type: Transform + - uid: 10427 + components: + - pos: 12.5,-28.5 + parent: 1 + type: Transform + - uid: 10428 + components: + - pos: 12.5,-27.5 + parent: 1 + type: Transform + - uid: 10429 + components: + - pos: 12.5,-26.5 + parent: 1 + type: Transform + - uid: 10430 + components: + - pos: 12.5,-25.5 + parent: 1 + type: Transform + - uid: 10431 + components: + - pos: 12.5,-24.5 + parent: 1 + type: Transform + - uid: 10432 + components: + - pos: 12.5,-23.5 + parent: 1 + type: Transform + - uid: 10433 + components: + - pos: 12.5,-22.5 + parent: 1 + type: Transform + - uid: 10434 + components: + - pos: 12.5,-21.5 + parent: 1 + type: Transform + - uid: 10435 + components: + - pos: 12.5,-20.5 + parent: 1 + type: Transform + - uid: 10436 + components: + - pos: 13.5,-23.5 + parent: 1 + type: Transform + - uid: 10437 + components: + - pos: 14.5,-23.5 + parent: 1 + type: Transform + - uid: 10438 + components: + - pos: 15.5,-23.5 + parent: 1 + type: Transform + - uid: 10439 + components: + - pos: 16.5,-23.5 + parent: 1 + type: Transform + - uid: 10440 + components: + - pos: 16.5,-22.5 + parent: 1 + type: Transform + - uid: 10441 + components: + - pos: 16.5,-21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10459 + components: + - pos: 12.5,-34.5 + parent: 1 + type: Transform + - uid: 10460 + components: + - pos: 11.5,-34.5 + parent: 1 + type: Transform + - uid: 10461 + components: + - pos: 10.5,-34.5 + parent: 1 + type: Transform + - uid: 10462 + components: + - pos: 9.5,-34.5 + parent: 1 + type: Transform + - uid: 10463 + components: + - pos: 8.5,-34.5 + parent: 1 + type: Transform + - uid: 10464 + components: + - pos: 7.5,-34.5 + parent: 1 + type: Transform + - uid: 10465 + components: + - pos: 6.5,-34.5 + parent: 1 + type: Transform + - uid: 10466 + components: + - pos: 5.5,-34.5 + parent: 1 + type: Transform + - uid: 10467 + components: + - pos: 5.5,-33.5 + parent: 1 + type: Transform + - uid: 10468 + components: + - pos: 5.5,-32.5 + parent: 1 + type: Transform + - uid: 10469 + components: + - pos: 5.5,-31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10546 + components: + - pos: 11.5,-20.5 + parent: 1 + type: Transform + - uid: 10547 + components: + - pos: 10.5,-20.5 + parent: 1 + type: Transform + - uid: 10548 + components: + - pos: 10.5,-19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10631 + components: + - pos: 28.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10632 + components: + - pos: 27.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10633 + components: + - pos: 26.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10634 + components: + - pos: 25.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10635 + components: + - pos: 24.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10636 + components: + - pos: 24.5,-14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10637 + components: + - pos: 24.5,-13.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10638 + components: + - pos: 24.5,-12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10639 + components: + - pos: 24.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10640 + components: + - pos: 24.5,-10.5 + parent: 1 + type: Transform + - uid: 10641 + components: + - pos: 24.5,-9.5 + parent: 1 + type: Transform + - uid: 10662 + components: + - pos: 19.5,-11.5 + parent: 1 + type: Transform + - uid: 10664 + components: + - pos: 22.5,-10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10667 + components: + - pos: 7.5,-18.5 + parent: 1 + type: Transform + - uid: 10668 + components: + - pos: 7.5,-19.5 + parent: 1 + type: Transform + - uid: 10669 + components: + - pos: 7.5,-20.5 + parent: 1 + type: Transform + - uid: 10670 + components: + - pos: 8.5,-20.5 + parent: 1 + type: Transform + - uid: 10671 + components: + - pos: 9.5,-20.5 + parent: 1 + type: Transform + - uid: 10672 + components: + - pos: 6.5,-18.5 + parent: 1 + type: Transform + - uid: 10673 + components: + - pos: 6.5,-17.5 + parent: 1 + type: Transform + - uid: 10674 + components: + - pos: 6.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10675 + components: + - pos: 7.5,-17.5 + parent: 1 + type: Transform + - uid: 10676 + components: + - pos: 7.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10677 + components: + - pos: 7.5,-15.5 + parent: 1 + type: Transform + - uid: 10678 + components: + - pos: 6.5,-15.5 + parent: 1 + type: Transform + - uid: 10679 + components: + - pos: 5.5,-15.5 + parent: 1 + type: Transform + - uid: 10680 + components: + - pos: 4.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10681 + components: + - pos: 3.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10682 + components: + - pos: 2.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10683 + components: + - pos: 1.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10684 + components: + - pos: 0.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10685 + components: + - pos: -0.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10686 + components: + - pos: -1.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10687 + components: + - pos: -2.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10688 + components: + - pos: -3.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10689 + components: + - pos: -4.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10690 + components: + - pos: -5.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10691 + components: + - pos: -6.5,-15.5 + parent: 1 + type: Transform + - uid: 10692 + components: + - pos: -7.5,-15.5 + parent: 1 + type: Transform + - uid: 10694 + components: + - pos: -8.5,-15.5 + parent: 1 + type: Transform + - uid: 10695 + components: + - pos: -9.5,-15.5 + parent: 1 + type: Transform + - uid: 10696 + components: + - pos: -10.5,-15.5 + parent: 1 + type: Transform + - uid: 10697 + components: + - pos: -11.5,-15.5 + parent: 1 + type: Transform + - uid: 10698 + components: + - pos: -12.5,-15.5 + parent: 1 + type: Transform + - uid: 10699 + components: + - pos: -12.5,-16.5 + parent: 1 + type: Transform + - uid: 10700 + components: + - pos: -12.5,-17.5 + parent: 1 + type: Transform + - uid: 10701 + components: + - pos: -12.5,-18.5 + parent: 1 + type: Transform + - uid: 10702 + components: + - pos: -12.5,-19.5 + parent: 1 + type: Transform + - uid: 10703 + components: + - pos: -12.5,-20.5 + parent: 1 + type: Transform + - uid: 10704 + components: + - pos: -12.5,-21.5 + parent: 1 + type: Transform + - uid: 10705 + components: + - pos: -12.5,-22.5 + parent: 1 + type: Transform + - uid: 10706 + components: + - pos: -12.5,-23.5 + parent: 1 + type: Transform + - uid: 10707 + components: + - pos: -12.5,-24.5 + parent: 1 + type: Transform + - uid: 10708 + components: + - pos: -12.5,-25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10709 + components: + - pos: -12.5,-26.5 + parent: 1 + type: Transform + - uid: 10710 + components: + - pos: -12.5,-27.5 + parent: 1 + type: Transform + - uid: 10711 + components: + - pos: -12.5,-28.5 + parent: 1 + type: Transform + - uid: 10712 + components: + - pos: -12.5,-29.5 + parent: 1 + type: Transform + - uid: 10713 + components: + - pos: -12.5,-30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10714 + components: + - pos: -12.5,-31.5 + parent: 1 + type: Transform + - uid: 10715 + components: + - pos: -12.5,-32.5 + parent: 1 + type: Transform + - uid: 10716 + components: + - pos: -12.5,-33.5 + parent: 1 + type: Transform + - uid: 10717 + components: + - pos: -12.5,-34.5 + parent: 1 + type: Transform + - uid: 10718 + components: + - pos: -12.5,-35.5 + parent: 1 + type: Transform + - uid: 10719 + components: + - pos: -12.5,-36.5 + parent: 1 + type: Transform + - uid: 10720 + components: + - pos: -12.5,-37.5 + parent: 1 + type: Transform + - uid: 10721 + components: + - pos: -11.5,-37.5 + parent: 1 + type: Transform + - uid: 10722 + components: + - pos: -11.5,-38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10968 + components: + - pos: 25.5,-9.5 + parent: 1 + type: Transform + - uid: 10969 + components: + - pos: 26.5,-9.5 + parent: 1 + type: Transform + - uid: 10970 + components: + - pos: 27.5,-9.5 + parent: 1 + type: Transform + - uid: 10972 + components: + - pos: 29.5,-9.5 + parent: 1 + type: Transform + - uid: 10973 + components: + - pos: 30.5,-9.5 + parent: 1 + type: Transform + - uid: 10974 + components: + - pos: 31.5,-9.5 + parent: 1 + type: Transform + - uid: 10975 + components: + - pos: 32.5,-9.5 + parent: 1 + type: Transform + - uid: 10976 + components: + - pos: 33.5,-9.5 + parent: 1 + type: Transform + - uid: 10977 + components: + - pos: 34.5,-9.5 + parent: 1 + type: Transform + - uid: 10978 + components: + - pos: 35.5,-9.5 + parent: 1 + type: Transform + - uid: 10979 + components: + - pos: 36.5,-9.5 + parent: 1 + type: Transform + - uid: 10980 + components: + - pos: 37.5,-9.5 + parent: 1 + type: Transform + - uid: 10981 + components: + - pos: 38.5,-9.5 + parent: 1 + type: Transform + - uid: 10982 + components: + - pos: 39.5,-9.5 + parent: 1 + type: Transform + - uid: 10983 + components: + - pos: 40.5,-9.5 + parent: 1 + type: Transform + - uid: 10984 + components: + - pos: 41.5,-9.5 + parent: 1 + type: Transform + - uid: 10985 + components: + - pos: 42.5,-9.5 + parent: 1 + type: Transform + - uid: 10986 + components: + - pos: 43.5,-9.5 + parent: 1 + type: Transform + - uid: 10987 + components: + - pos: 44.5,-9.5 + parent: 1 + type: Transform + - uid: 10988 + components: + - pos: 44.5,-8.5 + parent: 1 + type: Transform + - uid: 10989 + components: + - pos: 44.5,-7.5 + parent: 1 + type: Transform + - uid: 10990 + components: + - pos: 44.5,-6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11084 + components: + - pos: 17.5,4.5 + parent: 1 + type: Transform + - uid: 11085 + components: + - pos: 18.5,4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11086 + components: + - pos: 18.5,3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11087 + components: + - pos: 18.5,2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11088 + components: + - pos: 18.5,1.5 + parent: 1 + type: Transform + - uid: 11089 + components: + - pos: 18.5,0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11090 + components: + - pos: 19.5,0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11091 + components: + - pos: 20.5,0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11092 + components: + - pos: 21.5,0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11093 + components: + - pos: 21.5,1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11094 + components: + - pos: 21.5,2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11095 + components: + - pos: 21.5,3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11096 + components: + - pos: 21.5,4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11097 + components: + - pos: 21.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11098 + components: + - pos: 22.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11099 + components: + - pos: 22.5,0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11100 + components: + - pos: 23.5,0.5 + parent: 1 + type: Transform + - uid: 11101 + components: + - pos: 24.5,0.5 + parent: 1 + type: Transform + - uid: 11102 + components: + - pos: 25.5,0.5 + parent: 1 + type: Transform + - uid: 11103 + components: + - pos: 25.5,-0.5 + parent: 1 + type: Transform + - uid: 11104 + components: + - pos: 25.5,-1.5 + parent: 1 + type: Transform + - uid: 11105 + components: + - pos: 25.5,-2.5 + parent: 1 + type: Transform + - uid: 11106 + components: + - pos: 25.5,-3.5 + parent: 1 + type: Transform + - uid: 11107 + components: + - pos: 24.5,-3.5 + parent: 1 + type: Transform + - uid: 11108 + components: + - pos: 23.5,-3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11236 + components: + - pos: 16.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11237 + components: + - pos: 17.5,9.5 + parent: 1 + type: Transform + - uid: 11238 + components: + - pos: 18.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11239 + components: + - pos: 18.5,8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11240 + components: + - pos: 19.5,8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11241 + components: + - pos: 20.5,8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11242 + components: + - pos: 21.5,8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11243 + components: + - pos: 21.5,7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11244 + components: + - pos: 21.5,6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11282 + components: + - pos: 13.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11283 + components: + - pos: 14.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11284 + components: + - pos: 15.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11285 + components: + - pos: 16.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11286 + components: + - pos: 17.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11287 + components: + - pos: 18.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11288 + components: + - pos: 18.5,-0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11378 + components: + - pos: -4.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11379 + components: + - pos: -3.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11380 + components: + - pos: -3.5,75.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11381 + components: + - pos: -3.5,76.5 + parent: 1 + type: Transform + - uid: 11382 + components: + - pos: -4.5,76.5 + parent: 1 + type: Transform + - uid: 11383 + components: + - pos: -5.5,76.5 + parent: 1 + type: Transform + - uid: 11384 + components: + - pos: -6.5,76.5 + parent: 1 + type: Transform + - uid: 11385 + components: + - pos: -7.5,76.5 + parent: 1 + type: Transform + - uid: 11386 + components: + - pos: -8.5,76.5 + parent: 1 + type: Transform + - uid: 11387 + components: + - pos: -9.5,76.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11388 + components: + - pos: -9.5,77.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11389 + components: + - pos: -9.5,78.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11390 + components: + - pos: -8.5,78.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11391 + components: + - pos: -8.5,79.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11392 + components: + - pos: -8.5,80.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11393 + components: + - pos: -8.5,81.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11394 + components: + - pos: -7.5,81.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11395 + components: + - pos: -7.5,82.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11396 + components: + - pos: -7.5,83.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11397 + components: + - pos: -6.5,83.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11398 + components: + - pos: -5.5,83.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11399 + components: + - pos: -4.5,83.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11400 + components: + - pos: -4.5,84.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11401 + components: + - pos: -3.5,84.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11402 + components: + - pos: -2.5,84.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11403 + components: + - pos: -1.5,84.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11404 + components: + - pos: -0.5,84.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11405 + components: + - pos: 0.5,84.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11406 + components: + - pos: 1.5,84.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11407 + components: + - pos: 2.5,84.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11408 + components: + - pos: 3.5,84.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11409 + components: + - pos: 3.5,83.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11410 + components: + - pos: 4.5,83.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11411 + components: + - pos: 5.5,83.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11412 + components: + - pos: 6.5,83.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11413 + components: + - pos: 6.5,82.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11414 + components: + - pos: 6.5,81.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11415 + components: + - pos: 7.5,81.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11416 + components: + - pos: 7.5,80.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11417 + components: + - pos: 7.5,79.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11418 + components: + - pos: 7.5,78.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11419 + components: + - pos: 8.5,78.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11420 + components: + - pos: 8.5,77.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11421 + components: + - pos: 8.5,76.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11422 + components: + - pos: 8.5,75.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11423 + components: + - pos: 7.5,75.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11424 + components: + - pos: 6.5,75.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11553 + components: + - pos: -24.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11554 + components: + - pos: -24.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11555 + components: + - pos: -24.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11556 + components: + - pos: -24.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11557 + components: + - pos: -24.5,53.5 + parent: 1 + type: Transform + - uid: 11558 + components: + - pos: -24.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11559 + components: + - pos: -24.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11560 + components: + - pos: -24.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11561 + components: + - pos: -24.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11562 + components: + - pos: -23.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11563 + components: + - pos: -22.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11564 + components: + - pos: -21.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11565 + components: + - pos: -21.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11566 + components: + - pos: -21.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11567 + components: + - pos: -21.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11568 + components: + - pos: -21.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11569 + components: + - pos: -21.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11570 + components: + - pos: -21.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11571 + components: + - pos: -21.5,50.5 + parent: 1 + type: Transform + - uid: 11572 + components: + - pos: -20.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11574 + components: + - pos: -42.5,44.5 + parent: 1 + type: Transform + - uid: 11575 + components: + - pos: -43.5,44.5 + parent: 1 + type: Transform + - uid: 11576 + components: + - pos: -43.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11577 + components: + - pos: -43.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11578 + components: + - pos: -43.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11579 + components: + - pos: -43.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11580 + components: + - pos: -43.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11581 + components: + - pos: -43.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11582 + components: + - pos: -43.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11583 + components: + - pos: -41.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11584 + components: + - pos: -42.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11585 + components: + - pos: -40.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11586 + components: + - pos: -40.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11587 + components: + - pos: -39.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11588 + components: + - pos: -38.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11589 + components: + - pos: -37.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11590 + components: + - pos: -36.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11591 + components: + - pos: -35.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11592 + components: + - pos: -34.5,52.5 + parent: 1 + type: Transform + - uid: 11593 + components: + - pos: -33.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11594 + components: + - pos: -32.5,52.5 + parent: 1 + type: Transform + - uid: 11595 + components: + - pos: -31.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11596 + components: + - pos: -30.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11597 + components: + - pos: -29.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11598 + components: + - pos: -28.5,52.5 + parent: 1 + type: Transform + - uid: 11599 + components: + - pos: -27.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11600 + components: + - pos: -27.5,53.5 + parent: 1 + type: Transform + - uid: 11601 + components: + - pos: -27.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11602 + components: + - pos: -27.5,55.5 + parent: 1 + type: Transform + - uid: 11603 + components: + - pos: -27.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11604 + components: + - pos: -27.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11605 + components: + - pos: -30.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11606 + components: + - pos: -30.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11607 + components: + - pos: -29.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11608 + components: + - pos: -26.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11609 + components: + - pos: -25.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11839 + components: + - pos: -21.5,49.5 + parent: 1 + type: Transform + - uid: 11840 + components: + - pos: -21.5,48.5 + parent: 1 + type: Transform + - uid: 11841 + components: + - pos: -20.5,48.5 + parent: 1 + type: Transform + - uid: 11842 + components: + - pos: -19.5,48.5 + parent: 1 + type: Transform + - uid: 11843 + components: + - pos: -19.5,49.5 + parent: 1 + type: Transform + - uid: 11844 + components: + - pos: -19.5,50.5 + parent: 1 + type: Transform + - uid: 11845 + components: + - pos: -18.5,50.5 + parent: 1 + type: Transform + - uid: 11846 + components: + - pos: -17.5,50.5 + parent: 1 + type: Transform + - uid: 11847 + components: + - pos: -16.5,50.5 + parent: 1 + type: Transform + - uid: 11848 + components: + - pos: -16.5,51.5 + parent: 1 + type: Transform + - uid: 11849 + components: + - pos: -16.5,52.5 + parent: 1 + type: Transform + - uid: 11850 + components: + - pos: -16.5,53.5 + parent: 1 + type: Transform + - uid: 11851 + components: + - pos: -16.5,54.5 + parent: 1 + type: Transform + - uid: 11852 + components: + - pos: -16.5,55.5 + parent: 1 + type: Transform + - uid: 11853 + components: + - pos: -16.5,56.5 + parent: 1 + type: Transform + - uid: 11854 + components: + - pos: -15.5,56.5 + parent: 1 + type: Transform + - uid: 11855 + components: + - pos: -14.5,56.5 + parent: 1 + type: Transform + - uid: 11856 + components: + - pos: -13.5,56.5 + parent: 1 + type: Transform + - uid: 11857 + components: + - pos: -12.5,56.5 + parent: 1 + type: Transform + - uid: 11858 + components: + - pos: -11.5,56.5 + parent: 1 + type: Transform + - uid: 11859 + components: + - pos: -10.5,56.5 + parent: 1 + type: Transform + - uid: 11860 + components: + - pos: -9.5,56.5 + parent: 1 + type: Transform + - uid: 11861 + components: + - pos: -8.5,56.5 + parent: 1 + type: Transform + - uid: 11863 + components: + - pos: -7.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12020 + components: + - pos: -28.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12028 + components: + - pos: -21.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12029 + components: + - pos: -20.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12030 + components: + - pos: -20.5,31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12031 + components: + - pos: -20.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12032 + components: + - pos: -20.5,28.5 + parent: 1 + type: Transform + - uid: 12033 + components: + - pos: -20.5,27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12034 + components: + - pos: -20.5,26.5 + parent: 1 + type: Transform + - uid: 12035 + components: + - pos: -20.5,25.5 + parent: 1 + type: Transform + - uid: 12036 + components: + - pos: -19.5,25.5 + parent: 1 + type: Transform + - uid: 12037 + components: + - pos: -18.5,25.5 + parent: 1 + type: Transform + - uid: 12038 + components: + - pos: -17.5,25.5 + parent: 1 + type: Transform + - uid: 12039 + components: + - pos: -17.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12040 + components: + - pos: -16.5,25.5 + parent: 1 + type: Transform + - uid: 12041 + components: + - pos: -15.5,25.5 + parent: 1 + type: Transform + - uid: 12042 + components: + - pos: -14.5,25.5 + parent: 1 + type: Transform + - uid: 12043 + components: + - pos: -13.5,25.5 + parent: 1 + type: Transform + - uid: 12044 + components: + - pos: -12.5,25.5 + parent: 1 + type: Transform + - uid: 12045 + components: + - pos: -11.5,25.5 + parent: 1 + type: Transform + - uid: 12046 + components: + - pos: -10.5,25.5 + parent: 1 + type: Transform + - uid: 12047 + components: + - pos: -10.5,24.5 + parent: 1 + type: Transform + - uid: 12048 + components: + - pos: -10.5,23.5 + parent: 1 + type: Transform + - uid: 12049 + components: + - pos: -9.5,23.5 + parent: 1 + type: Transform + - uid: 12050 + components: + - pos: -8.5,23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12051 + components: + - pos: -10.5,26.5 + parent: 1 + type: Transform + - uid: 12052 + components: + - pos: -10.5,27.5 + parent: 1 + type: Transform + - uid: 12053 + components: + - pos: -10.5,28.5 + parent: 1 + type: Transform + - uid: 12054 + components: + - pos: -10.5,29.5 + parent: 1 + type: Transform + - uid: 12055 + components: + - pos: -10.5,30.5 + parent: 1 + type: Transform + - uid: 12056 + components: + - pos: -10.5,31.5 + parent: 1 + type: Transform + - uid: 12057 + components: + - pos: -10.5,32.5 + parent: 1 + type: Transform + - uid: 12058 + components: + - pos: -11.5,32.5 + parent: 1 + type: Transform + - uid: 12059 + components: + - pos: -12.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12236 + components: + - pos: -21.5,27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12237 + components: + - pos: -22.5,27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12238 + components: + - pos: -23.5,27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12239 + components: + - pos: -23.5,28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12240 + components: + - pos: -23.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12241 + components: + - pos: -23.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12242 + components: + - pos: -23.5,31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12243 + components: + - pos: -23.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12244 + components: + - pos: -24.5,32.5 + parent: 1 + type: Transform + - uid: 12245 + components: + - pos: -25.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12290 + components: + - pos: -23.5,33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12291 + components: + - pos: -23.5,34.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12292 + components: + - pos: -23.5,35.5 + parent: 1 + type: Transform + - uid: 12293 + components: + - pos: -23.5,36.5 + parent: 1 + type: Transform + - uid: 12295 + components: + - pos: -25.5,36.5 + parent: 1 + type: Transform + - uid: 12296 + components: + - pos: -26.5,36.5 + parent: 1 + type: Transform + - uid: 12297 + components: + - pos: -27.5,36.5 + parent: 1 + type: Transform + - uid: 12298 + components: + - pos: -28.5,36.5 + parent: 1 + type: Transform + - uid: 12299 + components: + - pos: -29.5,36.5 + parent: 1 + type: Transform + - uid: 12300 + components: + - pos: -30.5,36.5 + parent: 1 + type: Transform + - uid: 12301 + components: + - pos: -31.5,36.5 + parent: 1 + type: Transform + - uid: 12302 + components: + - pos: -32.5,36.5 + parent: 1 + type: Transform + - uid: 12303 + components: + - pos: -33.5,36.5 + parent: 1 + type: Transform + - uid: 12304 + components: + - pos: -34.5,36.5 + parent: 1 + type: Transform + - uid: 12305 + components: + - pos: -35.5,36.5 + parent: 1 + type: Transform + - uid: 12306 + components: + - pos: -36.5,36.5 + parent: 1 + type: Transform + - uid: 12307 + components: + - pos: -37.5,36.5 + parent: 1 + type: Transform + - uid: 12308 + components: + - pos: -38.5,36.5 + parent: 1 + type: Transform + - uid: 12309 + components: + - pos: -38.5,35.5 + parent: 1 + type: Transform + - uid: 12310 + components: + - pos: -38.5,34.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12311 + components: + - pos: -38.5,33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12312 + components: + - pos: -37.5,33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12313 + components: + - pos: -36.5,33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12314 + components: + - pos: -35.5,33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12315 + components: + - pos: -34.5,33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12316 + components: + - pos: -34.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12317 + components: + - pos: -34.5,31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12318 + components: + - pos: -34.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12319 + components: + - pos: -34.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12320 + components: + - pos: -34.5,28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12321 + components: + - pos: -34.5,27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12322 + components: + - pos: -34.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12323 + components: + - pos: -34.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12324 + components: + - pos: -35.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12409 + components: + - pos: 20.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12410 + components: + - pos: 20.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12411 + components: + - pos: 20.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12412 + components: + - pos: 19.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12413 + components: + - pos: 18.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12414 + components: + - pos: 17.5,52.5 + parent: 1 + type: Transform + - uid: 12415 + components: + - pos: 16.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12416 + components: + - pos: 16.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12417 + components: + - pos: 16.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12418 + components: + - pos: 16.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12419 + components: + - pos: 16.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12420 + components: + - pos: 17.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12421 + components: + - pos: 18.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12422 + components: + - pos: 19.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12423 + components: + - pos: 19.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12424 + components: + - pos: 19.5,58.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12425 + components: + - pos: 18.5,58.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12426 + components: + - pos: 18.5,59.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12427 + components: + - pos: 18.5,60.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12428 + components: + - pos: 18.5,61.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12429 + components: + - pos: 18.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12430 + components: + - pos: 18.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12431 + components: + - pos: 17.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12432 + components: + - pos: 16.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12433 + components: + - pos: 15.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12434 + components: + - pos: 14.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12435 + components: + - pos: 13.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12436 + components: + - pos: 12.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12437 + components: + - pos: 11.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12438 + components: + - pos: 10.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12439 + components: + - pos: 10.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12440 + components: + - pos: 16.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12441 + components: + - pos: 16.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12442 + components: + - pos: 16.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12443 + components: + - pos: 17.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12444 + components: + - pos: 18.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12445 + components: + - pos: 19.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12446 + components: + - pos: 20.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12447 + components: + - pos: 21.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12448 + components: + - pos: 22.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12449 + components: + - pos: 22.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12450 + components: + - pos: 22.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12451 + components: + - pos: 22.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12452 + components: + - pos: 22.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12453 + components: + - pos: 23.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12454 + components: + - pos: 24.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12455 + components: + - pos: 25.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12456 + components: + - pos: 25.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12457 + components: + - pos: 25.5,43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12458 + components: + - pos: 25.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12459 + components: + - pos: 24.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12461 + components: + - pos: 6.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12462 + components: + - pos: 5.5,46.5 + parent: 1 + type: Transform + - uid: 12463 + components: + - pos: 4.5,46.5 + parent: 1 + type: Transform + - uid: 12464 + components: + - pos: 3.5,46.5 + parent: 1 + type: Transform + - uid: 12465 + components: + - pos: 2.5,46.5 + parent: 1 + type: Transform + - uid: 12466 + components: + - pos: 1.5,46.5 + parent: 1 + type: Transform + - uid: 12467 + components: + - pos: 0.5,46.5 + parent: 1 + type: Transform + - uid: 12468 + components: + - pos: 0.5,47.5 + parent: 1 + type: Transform + - uid: 12469 + components: + - pos: 0.5,48.5 + parent: 1 + type: Transform + - uid: 12470 + components: + - pos: 0.5,49.5 + parent: 1 + type: Transform + - uid: 12471 + components: + - pos: 0.5,50.5 + parent: 1 + type: Transform + - uid: 12472 + components: + - pos: 0.5,51.5 + parent: 1 + type: Transform + - uid: 12473 + components: + - pos: 0.5,52.5 + parent: 1 + type: Transform + - uid: 12474 + components: + - pos: 0.5,53.5 + parent: 1 + type: Transform + - uid: 12475 + components: + - pos: 1.5,53.5 + parent: 1 + type: Transform + - uid: 12476 + components: + - pos: 2.5,53.5 + parent: 1 + type: Transform + - uid: 12477 + components: + - pos: 3.5,53.5 + parent: 1 + type: Transform + - uid: 12478 + components: + - pos: 4.5,53.5 + parent: 1 + type: Transform + - uid: 12479 + components: + - pos: 5.5,53.5 + parent: 1 + type: Transform + - uid: 12480 + components: + - pos: 6.5,53.5 + parent: 1 + type: Transform + - uid: 12481 + components: + - pos: 7.5,53.5 + parent: 1 + type: Transform + - uid: 12482 + components: + - pos: 8.5,53.5 + parent: 1 + type: Transform + - uid: 12483 + components: + - pos: 9.5,53.5 + parent: 1 + type: Transform + - uid: 12484 + components: + - pos: 10.5,53.5 + parent: 1 + type: Transform + - uid: 12485 + components: + - pos: 11.5,53.5 + parent: 1 + type: Transform + - uid: 12486 + components: + - pos: 12.5,53.5 + parent: 1 + type: Transform + - uid: 12487 + components: + - pos: 13.5,53.5 + parent: 1 + type: Transform + - uid: 12488 + components: + - pos: 14.5,53.5 + parent: 1 + type: Transform + - uid: 12489 + components: + - pos: 5.5,47.5 + parent: 1 + type: Transform + - uid: 12490 + components: + - pos: 5.5,48.5 + parent: 1 + type: Transform + - uid: 12491 + components: + - pos: 5.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12492 + components: + - pos: 14.5,54.5 + parent: 1 + type: Transform + - uid: 12493 + components: + - pos: 14.5,55.5 + parent: 1 + type: Transform + - uid: 12494 + components: + - pos: 14.5,56.5 + parent: 1 + type: Transform + - uid: 12495 + components: + - pos: 14.5,57.5 + parent: 1 + type: Transform + - uid: 12496 + components: + - pos: 14.5,58.5 + parent: 1 + type: Transform + - uid: 12497 + components: + - pos: 15.5,58.5 + parent: 1 + type: Transform + - uid: 12498 + components: + - pos: 16.5,58.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12499 + components: + - pos: 17.5,58.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12500 + components: + - pos: 20.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12501 + components: + - pos: 21.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12502 + components: + - pos: 22.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12503 + components: + - pos: 22.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12504 + components: + - pos: 23.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12505 + components: + - pos: 24.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12506 + components: + - pos: 25.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12507 + components: + - pos: 26.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12508 + components: + - pos: 27.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12509 + components: + - pos: 28.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12510 + components: + - pos: 28.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12511 + components: + - pos: 28.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12512 + components: + - pos: 28.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12513 + components: + - pos: 28.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12514 + components: + - pos: 28.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12515 + components: + - pos: 28.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12516 + components: + - pos: 27.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12517 + components: + - pos: 29.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12518 + components: + - pos: 29.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12519 + components: + - pos: 30.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12520 + components: + - pos: 31.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12521 + components: + - pos: 32.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12522 + components: + - pos: 33.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12523 + components: + - pos: 34.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12524 + components: + - pos: 35.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12525 + components: + - pos: 36.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12526 + components: + - pos: 36.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12527 + components: + - pos: 36.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12528 + components: + - pos: 36.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12529 + components: + - pos: 36.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12530 + components: + - pos: 36.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12531 + components: + - pos: 36.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12532 + components: + - pos: 36.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12533 + components: + - pos: 36.5,43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12534 + components: + - pos: 36.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12535 + components: + - pos: 36.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12536 + components: + - pos: 36.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12537 + components: + - pos: 37.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12538 + components: + - pos: 38.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12539 + components: + - pos: 39.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12540 + components: + - pos: 40.5,40.5 + parent: 1 + type: Transform + - uid: 12541 + components: + - pos: 41.5,40.5 + parent: 1 + type: Transform + - uid: 12542 + components: + - pos: 41.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12866 + components: + - pos: 16.5,25.5 + parent: 1 + type: Transform + - uid: 12867 + components: + - pos: 15.5,25.5 + parent: 1 + type: Transform + - uid: 12868 + components: + - pos: 14.5,25.5 + parent: 1 + type: Transform + - uid: 12869 + components: + - pos: 14.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12870 + components: + - pos: 14.5,23.5 + parent: 1 + type: Transform + - uid: 12871 + components: + - pos: 14.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12872 + components: + - pos: 15.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12873 + components: + - pos: 16.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12874 + components: + - pos: 17.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12875 + components: + - pos: 18.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12876 + components: + - pos: 19.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12877 + components: + - pos: 19.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12878 + components: + - pos: 19.5,20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12879 + components: + - pos: 19.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12880 + components: + - pos: 18.5,19.5 + parent: 1 + type: Transform + - uid: 12881 + components: + - pos: 17.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12882 + components: + - pos: 19.5,23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12883 + components: + - pos: 19.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12884 + components: + - pos: 20.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12885 + components: + - pos: 21.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12886 + components: + - pos: 22.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12887 + components: + - pos: 23.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12888 + components: + - pos: 24.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12889 + components: + - pos: 24.5,23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12890 + components: + - pos: 24.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12891 + components: + - pos: 24.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12892 + components: + - pos: 24.5,27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12893 + components: + - pos: 23.5,27.5 + parent: 1 + type: Transform + - uid: 12894 + components: + - pos: 22.5,27.5 + parent: 1 + type: Transform + - uid: 12895 + components: + - pos: 21.5,27.5 + parent: 1 + type: Transform + - uid: 12896 + components: + - pos: 20.5,27.5 + parent: 1 + type: Transform + - uid: 12897 + components: + - pos: 20.5,28.5 + parent: 1 + type: Transform + - uid: 12898 + components: + - pos: 20.5,29.5 + parent: 1 + type: Transform + - uid: 12899 + components: + - pos: 20.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12902 + components: + - pos: 17.5,28.5 + parent: 1 + type: Transform + - uid: 12903 + components: + - pos: 16.5,28.5 + parent: 1 + type: Transform + - uid: 12904 + components: + - pos: 15.5,28.5 + parent: 1 + type: Transform + - uid: 12905 + components: + - pos: 14.5,28.5 + parent: 1 + type: Transform + - uid: 12906 + components: + - pos: 13.5,28.5 + parent: 1 + type: Transform + - uid: 12907 + components: + - pos: 12.5,28.5 + parent: 1 + type: Transform + - uid: 12908 + components: + - pos: 11.5,28.5 + parent: 1 + type: Transform + - uid: 12909 + components: + - pos: 10.5,28.5 + parent: 1 + type: Transform + - uid: 12910 + components: + - pos: 9.5,28.5 + parent: 1 + type: Transform + - uid: 12911 + components: + - pos: 8.5,28.5 + parent: 1 + type: Transform + - uid: 12912 + components: + - pos: 7.5,28.5 + parent: 1 + type: Transform + - uid: 12913 + components: + - pos: 6.5,28.5 + parent: 1 + type: Transform + - uid: 12914 + components: + - pos: 6.5,27.5 + parent: 1 + type: Transform + - uid: 12915 + components: + - pos: 6.5,26.5 + parent: 1 + type: Transform + - uid: 12916 + components: + - pos: 5.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12917 + components: + - pos: 15.5,21.5 + parent: 1 + type: Transform + - uid: 12918 + components: + - pos: 10.5,29.5 + parent: 1 + type: Transform + - uid: 12919 + components: + - pos: 10.5,30.5 + parent: 1 + type: Transform + - uid: 12920 + components: + - pos: 10.5,31.5 + parent: 1 + type: Transform + - uid: 12921 + components: + - pos: 9.5,31.5 + parent: 1 + type: Transform + - uid: 12922 + components: + - pos: 8.5,31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13491 + components: + - pos: -7.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13497 + components: + - pos: -25.5,-0.5 + parent: 1 + type: Transform + - uid: 13498 + components: + - pos: -25.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13499 + components: + - pos: -25.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13500 + components: + - pos: -24.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13501 + components: + - pos: -23.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13502 + components: + - pos: -22.5,-2.5 + parent: 1 + type: Transform + - uid: 13503 + components: + - pos: -21.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13504 + components: + - pos: -20.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13505 + components: + - pos: -19.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13506 + components: + - pos: -19.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13507 + components: + - pos: -19.5,-0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13508 + components: + - pos: -19.5,0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13509 + components: + - pos: -19.5,1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13510 + components: + - pos: -19.5,2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13511 + components: + - pos: -19.5,3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13512 + components: + - pos: -19.5,4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13513 + components: + - pos: -19.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13514 + components: + - pos: -19.5,6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13515 + components: + - pos: -19.5,7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13516 + components: + - pos: -20.5,7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13517 + components: + - pos: -21.5,7.5 + parent: 1 + type: Transform + - uid: 13518 + components: + - pos: -21.5,8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13519 + components: + - pos: -18.5,-0.5 + parent: 1 + type: Transform + - uid: 13520 + components: + - pos: -17.5,-0.5 + parent: 1 + type: Transform + - uid: 13521 + components: + - pos: -16.5,-0.5 + parent: 1 + type: Transform + - uid: 13522 + components: + - pos: -15.5,-0.5 + parent: 1 + type: Transform + - uid: 13523 + components: + - pos: -15.5,0.5 + parent: 1 + type: Transform + - uid: 13524 + components: + - pos: -14.5,0.5 + parent: 1 + type: Transform + - uid: 13525 + components: + - pos: -13.5,0.5 + parent: 1 + type: Transform + - uid: 13526 + components: + - pos: -12.5,0.5 + parent: 1 + type: Transform + - uid: 13527 + components: + - pos: -11.5,0.5 + parent: 1 + type: Transform + - uid: 13528 + components: + - pos: -11.5,1.5 + parent: 1 + type: Transform + - uid: 13529 + components: + - pos: -11.5,2.5 + parent: 1 + type: Transform + - uid: 13530 + components: + - pos: -11.5,3.5 + parent: 1 + type: Transform + - uid: 13531 + components: + - pos: -11.5,4.5 + parent: 1 + type: Transform + - uid: 13532 + components: + - pos: -11.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13533 + components: + - pos: -21.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14379 + components: + - pos: 28.5,-9.5 + parent: 1 + type: Transform + - uid: 17238 + components: + - pos: 18.5,28.5 + parent: 1 + type: Transform + - uid: 17239 + components: + - pos: 19.5,28.5 + parent: 1 + type: Transform + - uid: 18340 + components: + - pos: -9.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 18341 + components: + - pos: -9.5,73.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 18342 + components: + - pos: -9.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 18343 + components: + - pos: -9.5,75.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 18451 + components: + - pos: 20.5,-11.5 + parent: 1 + type: Transform + - uid: 18452 + components: + - pos: 22.5,-11.5 + parent: 1 + type: Transform + - uid: 18453 + components: + - pos: 21.5,-11.5 + parent: 1 + type: Transform + - uid: 18465 + components: + - pos: 16.5,-11.5 + parent: 1 + type: Transform + - uid: 18466 + components: + - pos: 16.5,-10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 18474 + components: + - pos: 15.5,-11.5 + parent: 1 + type: Transform + - uid: 18475 + components: + - pos: 15.5,-10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound +- proto: CableMVStack + entities: + - uid: 9125 + components: + - pos: 13.491544,-22.233011 + parent: 1 + type: Transform +- proto: CableTerminal + entities: + - uid: 4779 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-30.5 + parent: 1 + type: Transform + - uid: 4780 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-30.5 + parent: 1 + type: Transform + - uid: 4781 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-30.5 + parent: 1 + type: Transform + - uid: 4782 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-30.5 + parent: 1 + type: Transform + - uid: 8056 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,55.5 + parent: 1 + type: Transform + - uid: 14043 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,55.5 + parent: 1 + type: Transform + - uid: 18457 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-11.5 + parent: 1 + type: Transform +- proto: CannabisSeeds + entities: + - uid: 8276 + components: + - pos: -38.424377,49.4277 + parent: 1 + type: Transform + - uid: 10966 + components: + - pos: 36.56873,-16.396769 + parent: 1 + type: Transform +- proto: CaptainIDCard + entities: + - uid: 9149 + components: + - pos: -6.3624535,72.644104 + parent: 1 + type: Transform +- proto: CarbonDioxideCanister + entities: + - uid: 3028 + components: + - pos: 0.5,-23.5 + parent: 1 + type: Transform + - uid: 3044 + components: + - pos: -14.5,-28.5 + parent: 1 + type: Transform +- proto: Carpet + entities: + - uid: 614 + components: + - pos: -24.5,7.5 + parent: 1 + type: Transform + - uid: 667 + components: + - pos: -25.5,8.5 + parent: 1 + type: Transform + - uid: 774 + components: + - pos: -24.5,5.5 + parent: 1 + type: Transform + - uid: 779 + components: + - pos: -25.5,5.5 + parent: 1 + type: Transform + - uid: 780 + components: + - pos: -25.5,6.5 + parent: 1 + type: Transform + - uid: 781 + components: + - pos: -25.5,7.5 + parent: 1 + type: Transform + - uid: 5786 + components: + - pos: -23.5,5.5 + parent: 1 + type: Transform + - uid: 6687 + components: + - pos: -22.5,7.5 + parent: 1 + type: Transform + - uid: 6702 + components: + - pos: -22.5,8.5 + parent: 1 + type: Transform + - uid: 6978 + components: + - pos: 10.5,58.5 + parent: 1 + type: Transform + - uid: 6979 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,57.5 + parent: 1 + type: Transform + - uid: 6980 + components: + - pos: 10.5,56.5 + parent: 1 + type: Transform + - uid: 6981 + components: + - pos: 11.5,58.5 + parent: 1 + type: Transform + - uid: 6982 + components: + - pos: 11.5,57.5 + parent: 1 + type: Transform + - uid: 6983 + components: + - pos: 11.5,56.5 + parent: 1 + type: Transform + - uid: 6986 + components: + - pos: 9.5,58.5 + parent: 1 + type: Transform + - uid: 6987 + components: + - pos: 12.5,58.5 + parent: 1 + type: Transform + - uid: 6988 + components: + - pos: 10.5,60.5 + parent: 1 + type: Transform + - uid: 6989 + components: + - pos: 11.5,60.5 + parent: 1 + type: Transform + - uid: 6990 + components: + - pos: 11.5,61.5 + parent: 1 + type: Transform + - uid: 6991 + components: + - pos: 10.5,61.5 + parent: 1 + type: Transform + - uid: 7147 + components: + - pos: -23.5,6.5 + parent: 1 + type: Transform + - uid: 7915 + components: + - pos: -24.5,6.5 + parent: 1 + type: Transform + - uid: 8168 + components: + - pos: -24.5,8.5 + parent: 1 + type: Transform + - uid: 8249 + components: + - pos: -23.5,7.5 + parent: 1 + type: Transform + - uid: 8593 + components: + - pos: -22.5,6.5 + parent: 1 + type: Transform + - uid: 8964 + components: + - pos: -11.5,3.5 + parent: 1 + type: Transform + - uid: 8965 + components: + - pos: -11.5,2.5 + parent: 1 + type: Transform + - uid: 8966 + components: + - pos: -11.5,1.5 + parent: 1 + type: Transform + - uid: 8967 + components: + - pos: -10.5,1.5 + parent: 1 + type: Transform + - uid: 8968 + components: + - pos: -10.5,2.5 + parent: 1 + type: Transform + - uid: 8969 + components: + - pos: -10.5,3.5 + parent: 1 + type: Transform + - uid: 8970 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 8971 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 8972 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 8973 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 8974 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 8975 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 9002 + components: + - pos: -22.5,5.5 + parent: 1 + type: Transform + - uid: 9039 + components: + - pos: -23.5,8.5 + parent: 1 + type: Transform +- proto: CarpetBlack + entities: + - uid: 6674 + components: + - pos: -8.5,-4.5 + parent: 1 + type: Transform + - uid: 6675 + components: + - pos: -9.5,-5.5 + parent: 1 + type: Transform + - uid: 6677 + components: + - pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 6678 + components: + - pos: -5.5,-4.5 + parent: 1 + type: Transform + - uid: 6679 + components: + - pos: -5.5,-5.5 + parent: 1 + type: Transform + - uid: 6682 + components: + - pos: -7.5,-4.5 + parent: 1 + type: Transform + - uid: 6683 + components: + - pos: -9.5,-4.5 + parent: 1 + type: Transform + - uid: 6684 + components: + - pos: -7.5,-5.5 + parent: 1 + type: Transform + - uid: 6685 + components: + - pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 6686 + components: + - pos: -8.5,-5.5 + parent: 1 + type: Transform + - uid: 7765 + components: + - pos: -6.5,-3.5 + parent: 1 + type: Transform + - uid: 7822 + components: + - pos: -6.5,-2.5 + parent: 1 + type: Transform + - uid: 8171 + components: + - pos: -7.5,-3.5 + parent: 1 + type: Transform + - uid: 8190 + components: + - pos: -8.5,-3.5 + parent: 1 + type: Transform + - uid: 8192 + components: + - pos: -8.5,-2.5 + parent: 1 + type: Transform + - uid: 8251 + components: + - pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 8400 + components: + - pos: 11.5,46.5 + parent: 1 + type: Transform + - uid: 8401 + components: + - pos: 12.5,46.5 + parent: 1 + type: Transform + - uid: 8403 + components: + - pos: 12.5,45.5 + parent: 1 + type: Transform + - uid: 8405 + components: + - pos: 11.5,45.5 + parent: 1 + type: Transform +- proto: CarpetBlue + entities: + - uid: 8976 + components: + - pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 8977 + components: + - pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 8978 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 8979 + components: + - pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 8980 + components: + - pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 8981 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 8982 + components: + - pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 8983 + components: + - pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 8984 + components: + - pos: 0.5,8.5 + parent: 1 + type: Transform + - uid: 8985 + components: + - pos: 0.5,9.5 + parent: 1 + type: Transform + - uid: 8986 + components: + - pos: -0.5,9.5 + parent: 1 + type: Transform + - uid: 8987 + components: + - pos: -1.5,9.5 + parent: 1 + type: Transform +- proto: CarpetChapel + entities: + - uid: 6861 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,46.5 + parent: 1 + type: Transform + - uid: 6862 + components: + - rot: 3.141592653589793 rad + pos: 29.5,46.5 + parent: 1 + type: Transform + - uid: 6863 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,45.5 + parent: 1 + type: Transform + - uid: 6864 + components: + - pos: 28.5,45.5 + parent: 1 + type: Transform + - uid: 6865 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,46.5 + parent: 1 + type: Transform + - uid: 6866 + components: + - rot: 3.141592653589793 rad + pos: 33.5,46.5 + parent: 1 + type: Transform + - uid: 6867 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,45.5 + parent: 1 + type: Transform + - uid: 6868 + components: + - pos: 32.5,45.5 + parent: 1 + type: Transform + - uid: 6869 + components: + - pos: 28.5,43.5 + parent: 1 + type: Transform + - uid: 6870 + components: + - pos: 32.5,43.5 + parent: 1 + type: Transform + - uid: 6871 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,44.5 + parent: 1 + type: Transform + - uid: 6872 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,44.5 + parent: 1 + type: Transform + - uid: 6873 + components: + - rot: 3.141592653589793 rad + pos: 29.5,44.5 + parent: 1 + type: Transform + - uid: 6874 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,43.5 + parent: 1 + type: Transform + - uid: 6875 + components: + - rot: 3.141592653589793 rad + pos: 33.5,44.5 + parent: 1 + type: Transform + - uid: 6876 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,43.5 + parent: 1 + type: Transform + - uid: 6877 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,48.5 + parent: 1 + type: Transform + - uid: 6878 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,48.5 + parent: 1 + type: Transform + - uid: 6879 + components: + - pos: 28.5,48.5 + parent: 1 + type: Transform + - uid: 6880 + components: + - pos: 32.5,48.5 + parent: 1 + type: Transform + - uid: 6881 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,49.5 + parent: 1 + type: Transform + - uid: 6882 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,49.5 + parent: 1 + type: Transform + - uid: 6883 + components: + - rot: 3.141592653589793 rad + pos: 29.5,49.5 + parent: 1 + type: Transform + - uid: 6884 + components: + - rot: 3.141592653589793 rad + pos: 33.5,49.5 + parent: 1 + type: Transform +- proto: CarpetGreen + entities: + - uid: 6691 + components: + - pos: -28.5,6.5 + parent: 1 + type: Transform + - uid: 6692 + components: + - pos: -28.5,5.5 + parent: 1 + type: Transform + - uid: 6694 + components: + - pos: -27.5,6.5 + parent: 1 + type: Transform + - uid: 6695 + components: + - pos: -27.5,5.5 + parent: 1 + type: Transform +- proto: CarpetOrange + entities: + - uid: 617 + components: + - pos: -24.5,10.5 + parent: 1 + type: Transform + - uid: 618 + components: + - pos: -25.5,10.5 + parent: 1 + type: Transform + - uid: 652 + components: + - pos: 2.5,60.5 + parent: 1 + type: Transform + - uid: 6673 + components: + - pos: -26.5,10.5 + parent: 1 + type: Transform + - uid: 8957 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 8959 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 8960 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 8961 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 8962 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 8963 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 9349 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,11.5 + parent: 1 + type: Transform + - uid: 9350 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,10.5 + parent: 1 + type: Transform + - uid: 9351 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,11.5 + parent: 1 + type: Transform + - uid: 9352 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,10.5 + parent: 1 + type: Transform + - uid: 9380 + components: + - pos: 2.5,61.5 + parent: 1 + type: Transform + - uid: 9381 + components: + - pos: 3.5,60.5 + parent: 1 + type: Transform + - uid: 9382 + components: + - pos: 3.5,61.5 + parent: 1 + type: Transform + - uid: 9383 + components: + - pos: 4.5,60.5 + parent: 1 + type: Transform + - uid: 9384 + components: + - pos: 4.5,61.5 + parent: 1 + type: Transform +- proto: CarpetPink + entities: + - uid: 526 + components: + - pos: -12.5,-2.5 + parent: 1 + type: Transform + - uid: 527 + components: + - pos: -11.5,-2.5 + parent: 1 + type: Transform + - uid: 528 + components: + - pos: -12.5,-3.5 + parent: 1 + type: Transform + - uid: 529 + components: + - pos: -12.5,-4.5 + parent: 1 + type: Transform + - uid: 530 + components: + - pos: -11.5,-4.5 + parent: 1 + type: Transform + - uid: 3418 + components: + - pos: -11.5,-3.5 + parent: 1 + type: Transform + - uid: 8353 + components: + - pos: 42.5,51.5 + parent: 1 + type: Transform + - uid: 8354 + components: + - pos: 43.5,51.5 + parent: 1 + type: Transform + - uid: 8355 + components: + - pos: 43.5,50.5 + parent: 1 + type: Transform + - uid: 8356 + components: + - pos: 42.5,50.5 + parent: 1 + type: Transform + - uid: 8357 + components: + - pos: 41.5,50.5 + parent: 1 + type: Transform + - uid: 8358 + components: + - pos: 41.5,51.5 + parent: 1 + type: Transform + - uid: 8394 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,47.5 + parent: 1 + type: Transform + - uid: 8395 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,47.5 + parent: 1 + type: Transform + - uid: 9873 + components: + - pos: -36.5,-21.5 + parent: 1 + type: Transform + - uid: 9874 + components: + - pos: -36.5,-20.5 + parent: 1 + type: Transform + - uid: 9875 + components: + - pos: -35.5,-21.5 + parent: 1 + type: Transform + - uid: 9876 + components: + - pos: -35.5,-20.5 + parent: 1 + type: Transform +- proto: CarpetPurple + entities: + - uid: 8632 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,20.5 + parent: 1 + type: Transform + - uid: 8633 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,19.5 + parent: 1 + type: Transform + - uid: 8634 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,20.5 + parent: 1 + type: Transform + - uid: 8635 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,19.5 + parent: 1 + type: Transform + - uid: 8636 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,20.5 + parent: 1 + type: Transform + - uid: 8637 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,19.5 + parent: 1 + type: Transform +- proto: CarpetSBlue + entities: + - uid: 6806 + components: + - pos: -5.5,72.5 + parent: 1 + type: Transform + - uid: 6810 + components: + - pos: -5.5,73.5 + parent: 1 + type: Transform + - uid: 6811 + components: + - pos: -6.5,73.5 + parent: 1 + type: Transform + - uid: 6812 + components: + - pos: -6.5,72.5 + parent: 1 + type: Transform + - uid: 8484 + components: + - pos: 15.5,32.5 + parent: 1 + type: Transform + - uid: 8485 + components: + - pos: 15.5,33.5 + parent: 1 + type: Transform + - uid: 8486 + components: + - pos: 16.5,33.5 + parent: 1 + type: Transform + - uid: 8487 + components: + - pos: 16.5,32.5 + parent: 1 + type: Transform + - uid: 9266 + components: + - pos: 26.5,8.5 + parent: 1 + type: Transform + - uid: 9267 + components: + - pos: 27.5,8.5 + parent: 1 + type: Transform + - uid: 9268 + components: + - pos: 27.5,9.5 + parent: 1 + type: Transform + - uid: 9269 + components: + - pos: 26.5,9.5 + parent: 1 + type: Transform +- proto: Catwalk + entities: + - uid: 749 + components: + - pos: -15.5,11.5 + parent: 1 + type: Transform + - uid: 750 + components: + - pos: -15.5,10.5 + parent: 1 + type: Transform + - uid: 751 + components: + - pos: -15.5,9.5 + parent: 1 + type: Transform + - uid: 985 + components: + - pos: -38.5,74.5 + parent: 1 + type: Transform + - uid: 1501 + components: + - pos: -43.5,45.5 + parent: 1 + type: Transform + - uid: 1618 + components: + - pos: -38.5,73.5 + parent: 1 + type: Transform + - uid: 1621 + components: + - pos: -38.5,52.5 + parent: 1 + type: Transform + - uid: 1662 + components: + - pos: -37.5,52.5 + parent: 1 + type: Transform + - uid: 1665 + components: + - pos: -38.5,75.5 + parent: 1 + type: Transform + - uid: 1785 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,20.5 + parent: 1 + type: Transform + - uid: 1987 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,21.5 + parent: 1 + type: Transform + - uid: 2147 + components: + - pos: 7.5,-38.5 + parent: 1 + type: Transform + - uid: 2372 + components: + - pos: 7.5,-40.5 + parent: 1 + type: Transform + - uid: 2373 + components: + - pos: 7.5,-39.5 + parent: 1 + type: Transform + - uid: 2375 + components: + - pos: 6.5,-40.5 + parent: 1 + type: Transform + - uid: 2376 + components: + - pos: 6.5,-39.5 + parent: 1 + type: Transform + - uid: 2811 + components: + - pos: -10.5,-25.5 + parent: 1 + type: Transform + - uid: 2812 + components: + - pos: -10.5,-26.5 + parent: 1 + type: Transform + - uid: 2817 + components: + - pos: -10.5,-21.5 + parent: 1 + type: Transform + - uid: 2818 + components: + - pos: -10.5,-22.5 + parent: 1 + type: Transform + - uid: 2819 + components: + - pos: -10.5,-27.5 + parent: 1 + type: Transform + - uid: 2820 + components: + - pos: -10.5,-28.5 + parent: 1 + type: Transform + - uid: 2825 + components: + - pos: -10.5,-23.5 + parent: 1 + type: Transform + - uid: 2826 + components: + - pos: -10.5,-24.5 + parent: 1 + type: Transform + - uid: 2827 + components: + - pos: -10.5,-29.5 + parent: 1 + type: Transform + - uid: 2828 + components: + - pos: -9.5,-21.5 + parent: 1 + type: Transform + - uid: 2836 + components: + - pos: 7.5,-37.5 + parent: 1 + type: Transform + - uid: 2995 + components: + - pos: -3.5,-41.5 + parent: 1 + type: Transform + - uid: 2996 + components: + - pos: -3.5,-40.5 + parent: 1 + type: Transform + - uid: 2997 + components: + - pos: -3.5,-39.5 + parent: 1 + type: Transform + - uid: 2998 + components: + - pos: -3.5,-38.5 + parent: 1 + type: Transform + - uid: 2999 + components: + - pos: -3.5,-37.5 + parent: 1 + type: Transform + - uid: 3000 + components: + - pos: -3.5,-36.5 + parent: 1 + type: Transform + - uid: 3001 + components: + - pos: -3.5,-35.5 + parent: 1 + type: Transform + - uid: 3002 + components: + - pos: -3.5,-34.5 + parent: 1 + type: Transform + - uid: 3003 + components: + - pos: -3.5,-33.5 + parent: 1 + type: Transform + - uid: 3004 + components: + - pos: -3.5,-32.5 + parent: 1 + type: Transform + - uid: 3005 + components: + - pos: -3.5,-31.5 + parent: 1 + type: Transform + - uid: 3006 + components: + - pos: -3.5,-30.5 + parent: 1 + type: Transform + - uid: 3007 + components: + - pos: -3.5,-29.5 + parent: 1 + type: Transform + - uid: 3008 + components: + - pos: -3.5,-28.5 + parent: 1 + type: Transform + - uid: 3009 + components: + - pos: -3.5,-27.5 + parent: 1 + type: Transform + - uid: 3010 + components: + - pos: -3.5,-26.5 + parent: 1 + type: Transform + - uid: 3011 + components: + - pos: -3.5,-25.5 + parent: 1 + type: Transform + - uid: 3012 + components: + - pos: -3.5,-24.5 + parent: 1 + type: Transform + - uid: 3013 + components: + - pos: -3.5,-23.5 + parent: 1 + type: Transform + - uid: 3014 + components: + - pos: -3.5,-22.5 + parent: 1 + type: Transform + - uid: 3015 + components: + - pos: -3.5,-21.5 + parent: 1 + type: Transform + - uid: 3016 + components: + - pos: -3.5,-20.5 + parent: 1 + type: Transform + - uid: 3017 + components: + - pos: -3.5,-19.5 + parent: 1 + type: Transform + - uid: 3018 + components: + - pos: -3.5,-18.5 + parent: 1 + type: Transform + - uid: 3019 + components: + - pos: -3.5,-17.5 + parent: 1 + type: Transform + - uid: 3030 + components: + - pos: -9.5,-22.5 + parent: 1 + type: Transform + - uid: 3031 + components: + - pos: -9.5,-23.5 + parent: 1 + type: Transform + - uid: 3032 + components: + - pos: -9.5,-24.5 + parent: 1 + type: Transform + - uid: 3033 + components: + - pos: -9.5,-25.5 + parent: 1 + type: Transform + - uid: 3034 + components: + - pos: -9.5,-26.5 + parent: 1 + type: Transform + - uid: 3035 + components: + - pos: -9.5,-27.5 + parent: 1 + type: Transform + - uid: 3036 + components: + - pos: -9.5,-28.5 + parent: 1 + type: Transform + - uid: 3037 + components: + - pos: -9.5,-29.5 + parent: 1 + type: Transform + - uid: 3426 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-43.5 + parent: 1 + type: Transform + - uid: 3427 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-44.5 + parent: 1 + type: Transform + - uid: 3428 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-45.5 + parent: 1 + type: Transform + - uid: 3429 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-46.5 + parent: 1 + type: Transform + - uid: 3430 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-47.5 + parent: 1 + type: Transform + - uid: 3431 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-47.5 + parent: 1 + type: Transform + - uid: 3432 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-47.5 + parent: 1 + type: Transform + - uid: 3433 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-47.5 + parent: 1 + type: Transform + - uid: 3434 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-47.5 + parent: 1 + type: Transform + - uid: 3435 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-47.5 + parent: 1 + type: Transform + - uid: 3436 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-47.5 + parent: 1 + type: Transform + - uid: 3437 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-47.5 + parent: 1 + type: Transform + - uid: 3438 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-47.5 + parent: 1 + type: Transform + - uid: 3439 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-47.5 + parent: 1 + type: Transform + - uid: 3440 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-47.5 + parent: 1 + type: Transform + - uid: 3441 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-48.5 + parent: 1 + type: Transform + - uid: 3442 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-49.5 + parent: 1 + type: Transform + - uid: 3448 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-49.5 + parent: 1 + type: Transform + - uid: 3449 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-48.5 + parent: 1 + type: Transform + - uid: 3450 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-47.5 + parent: 1 + type: Transform + - uid: 3451 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-48.5 + parent: 1 + type: Transform + - uid: 3452 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-47.5 + parent: 1 + type: Transform + - uid: 3453 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-47.5 + parent: 1 + type: Transform + - uid: 3454 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-47.5 + parent: 1 + type: Transform + - uid: 3455 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-47.5 + parent: 1 + type: Transform + - uid: 3456 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-47.5 + parent: 1 + type: Transform + - uid: 3457 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-47.5 + parent: 1 + type: Transform + - uid: 3461 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-47.5 + parent: 1 + type: Transform + - uid: 3462 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-46.5 + parent: 1 + type: Transform + - uid: 3463 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-45.5 + parent: 1 + type: Transform + - uid: 3464 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-44.5 + parent: 1 + type: Transform + - uid: 3465 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-43.5 + parent: 1 + type: Transform + - uid: 3466 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-49.5 + parent: 1 + type: Transform + - uid: 3467 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-50.5 + parent: 1 + type: Transform + - uid: 3468 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-51.5 + parent: 1 + type: Transform + - uid: 3469 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-52.5 + parent: 1 + type: Transform + - uid: 3470 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-53.5 + parent: 1 + type: Transform + - uid: 3471 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-54.5 + parent: 1 + type: Transform + - uid: 3472 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-54.5 + parent: 1 + type: Transform + - uid: 3473 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-54.5 + parent: 1 + type: Transform + - uid: 3474 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-55.5 + parent: 1 + type: Transform + - uid: 3475 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-56.5 + parent: 1 + type: Transform + - uid: 3476 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-57.5 + parent: 1 + type: Transform + - uid: 3477 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-58.5 + parent: 1 + type: Transform + - uid: 3478 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-59.5 + parent: 1 + type: Transform + - uid: 3479 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-60.5 + parent: 1 + type: Transform + - uid: 3480 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-61.5 + parent: 1 + type: Transform + - uid: 3481 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-62.5 + parent: 1 + type: Transform + - uid: 3482 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-63.5 + parent: 1 + type: Transform + - uid: 3483 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-64.5 + parent: 1 + type: Transform + - uid: 3484 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-65.5 + parent: 1 + type: Transform + - uid: 3485 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-66.5 + parent: 1 + type: Transform + - uid: 3486 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-67.5 + parent: 1 + type: Transform + - uid: 3487 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-68.5 + parent: 1 + type: Transform + - uid: 3488 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-69.5 + parent: 1 + type: Transform + - uid: 3489 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-70.5 + parent: 1 + type: Transform + - uid: 3490 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-70.5 + parent: 1 + type: Transform + - uid: 3491 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-69.5 + parent: 1 + type: Transform + - uid: 3492 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-68.5 + parent: 1 + type: Transform + - uid: 3493 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-67.5 + parent: 1 + type: Transform + - uid: 3494 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-66.5 + parent: 1 + type: Transform + - uid: 3495 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-65.5 + parent: 1 + type: Transform + - uid: 3496 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-64.5 + parent: 1 + type: Transform + - uid: 3497 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-63.5 + parent: 1 + type: Transform + - uid: 3498 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-62.5 + parent: 1 + type: Transform + - uid: 3499 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-61.5 + parent: 1 + type: Transform + - uid: 3500 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-60.5 + parent: 1 + type: Transform + - uid: 3501 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-59.5 + parent: 1 + type: Transform + - uid: 3502 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-58.5 + parent: 1 + type: Transform + - uid: 3503 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-57.5 + parent: 1 + type: Transform + - uid: 3504 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-56.5 + parent: 1 + type: Transform + - uid: 3505 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-55.5 + parent: 1 + type: Transform + - uid: 3506 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-54.5 + parent: 1 + type: Transform + - uid: 3507 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-54.5 + parent: 1 + type: Transform + - uid: 3508 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-54.5 + parent: 1 + type: Transform + - uid: 3509 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-53.5 + parent: 1 + type: Transform + - uid: 3510 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-52.5 + parent: 1 + type: Transform + - uid: 3511 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-51.5 + parent: 1 + type: Transform + - uid: 3512 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-50.5 + parent: 1 + type: Transform + - uid: 3513 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-49.5 + parent: 1 + type: Transform + - uid: 3514 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-48.5 + parent: 1 + type: Transform + - uid: 4164 + components: + - pos: -5.5,-15.5 + parent: 1 + type: Transform + - uid: 4165 + components: + - pos: -4.5,-15.5 + parent: 1 + type: Transform + - uid: 4166 + components: + - pos: -3.5,-15.5 + parent: 1 + type: Transform + - uid: 4168 + components: + - pos: -1.5,-15.5 + parent: 1 + type: Transform + - uid: 4169 + components: + - pos: -0.5,-15.5 + parent: 1 + type: Transform + - uid: 4170 + components: + - pos: 0.5,-15.5 + parent: 1 + type: Transform + - uid: 4172 + components: + - pos: 2.5,-15.5 + parent: 1 + type: Transform + - uid: 4173 + components: + - pos: 3.5,-15.5 + parent: 1 + type: Transform + - uid: 4174 + components: + - pos: 4.5,-15.5 + parent: 1 + type: Transform + - uid: 5594 + components: + - pos: 15.5,-33.5 + parent: 1 + type: Transform + - uid: 5597 + components: + - pos: 16.5,-29.5 + parent: 1 + type: Transform + - uid: 5598 + components: + - pos: 15.5,-31.5 + parent: 1 + type: Transform + - uid: 5842 + components: + - pos: -21.5,44.5 + parent: 1 + type: Transform + - uid: 5843 + components: + - pos: -21.5,43.5 + parent: 1 + type: Transform + - uid: 5844 + components: + - pos: -21.5,42.5 + parent: 1 + type: Transform + - uid: 5845 + components: + - pos: -21.5,41.5 + parent: 1 + type: Transform + - uid: 5846 + components: + - pos: -21.5,40.5 + parent: 1 + type: Transform + - uid: 5847 + components: + - pos: -21.5,51.5 + parent: 1 + type: Transform + - uid: 5848 + components: + - pos: -21.5,52.5 + parent: 1 + type: Transform + - uid: 5849 + components: + - pos: -21.5,53.5 + parent: 1 + type: Transform + - uid: 5850 + components: + - pos: -21.5,54.5 + parent: 1 + type: Transform + - uid: 5851 + components: + - pos: -21.5,55.5 + parent: 1 + type: Transform + - uid: 5852 + components: + - pos: -21.5,56.5 + parent: 1 + type: Transform + - uid: 5853 + components: + - pos: -22.5,57.5 + parent: 1 + type: Transform + - uid: 5854 + components: + - pos: -23.5,57.5 + parent: 1 + type: Transform + - uid: 5855 + components: + - pos: -19.5,58.5 + parent: 1 + type: Transform + - uid: 5856 + components: + - pos: -19.5,59.5 + parent: 1 + type: Transform + - uid: 5857 + components: + - pos: -19.5,60.5 + parent: 1 + type: Transform + - uid: 5858 + components: + - pos: -19.5,61.5 + parent: 1 + type: Transform + - uid: 5859 + components: + - pos: -18.5,62.5 + parent: 1 + type: Transform + - uid: 5860 + components: + - pos: -17.5,62.5 + parent: 1 + type: Transform + - uid: 5861 + components: + - pos: -16.5,62.5 + parent: 1 + type: Transform + - uid: 5862 + components: + - pos: -15.5,62.5 + parent: 1 + type: Transform + - uid: 5863 + components: + - pos: -14.5,62.5 + parent: 1 + type: Transform + - uid: 5864 + components: + - pos: -13.5,63.5 + parent: 1 + type: Transform + - uid: 5865 + components: + - pos: -13.5,64.5 + parent: 1 + type: Transform + - uid: 5866 + components: + - pos: -13.5,65.5 + parent: 1 + type: Transform + - uid: 5868 + components: + - pos: -12.5,67.5 + parent: 1 + type: Transform + - uid: 5869 + components: + - pos: -11.5,67.5 + parent: 1 + type: Transform + - uid: 5870 + components: + - pos: -10.5,67.5 + parent: 1 + type: Transform + - uid: 5871 + components: + - pos: -9.5,67.5 + parent: 1 + type: Transform + - uid: 5872 + components: + - pos: -8.5,67.5 + parent: 1 + type: Transform + - uid: 5873 + components: + - pos: -7.5,67.5 + parent: 1 + type: Transform + - uid: 5874 + components: + - pos: -6.5,67.5 + parent: 1 + type: Transform + - uid: 5875 + components: + - pos: -5.5,67.5 + parent: 1 + type: Transform + - uid: 5876 + components: + - pos: -4.5,68.5 + parent: 1 + type: Transform + - uid: 5877 + components: + - pos: -4.5,69.5 + parent: 1 + type: Transform + - uid: 5878 + components: + - pos: 8.5,63.5 + parent: 1 + type: Transform + - uid: 5879 + components: + - pos: 9.5,63.5 + parent: 1 + type: Transform + - uid: 5880 + components: + - pos: 10.5,63.5 + parent: 1 + type: Transform + - uid: 5881 + components: + - pos: 11.5,63.5 + parent: 1 + type: Transform + - uid: 5882 + components: + - pos: 12.5,63.5 + parent: 1 + type: Transform + - uid: 5883 + components: + - pos: 13.5,63.5 + parent: 1 + type: Transform + - uid: 5884 + components: + - pos: 14.5,63.5 + parent: 1 + type: Transform + - uid: 5885 + components: + - pos: 15.5,63.5 + parent: 1 + type: Transform + - uid: 5886 + components: + - pos: 16.5,63.5 + parent: 1 + type: Transform + - uid: 5887 + components: + - pos: 17.5,63.5 + parent: 1 + type: Transform + - uid: 5888 + components: + - pos: 18.5,62.5 + parent: 1 + type: Transform + - uid: 5889 + components: + - pos: 18.5,61.5 + parent: 1 + type: Transform + - uid: 5890 + components: + - pos: 18.5,60.5 + parent: 1 + type: Transform + - uid: 5891 + components: + - pos: 18.5,59.5 + parent: 1 + type: Transform + - uid: 5892 + components: + - pos: 18.5,56.5 + parent: 1 + type: Transform + - uid: 5893 + components: + - pos: 17.5,56.5 + parent: 1 + type: Transform + - uid: 5894 + components: + - pos: 20.5,56.5 + parent: 1 + type: Transform + - uid: 5895 + components: + - pos: 21.5,56.5 + parent: 1 + type: Transform + - uid: 5898 + components: + - pos: 16.5,54.5 + parent: 1 + type: Transform + - uid: 5899 + components: + - pos: 16.5,53.5 + parent: 1 + type: Transform + - uid: 5901 + components: + - pos: 22.5,54.5 + parent: 1 + type: Transform + - uid: 5902 + components: + - pos: 22.5,53.5 + parent: 1 + type: Transform + - uid: 5903 + components: + - pos: 22.5,52.5 + parent: 1 + type: Transform + - uid: 5904 + components: + - pos: 22.5,51.5 + parent: 1 + type: Transform + - uid: 5905 + components: + - pos: 22.5,50.5 + parent: 1 + type: Transform + - uid: 5906 + components: + - pos: 21.5,49.5 + parent: 1 + type: Transform + - uid: 5907 + components: + - pos: 22.5,48.5 + parent: 1 + type: Transform + - uid: 5908 + components: + - pos: 22.5,47.5 + parent: 1 + type: Transform + - uid: 5909 + components: + - pos: 22.5,46.5 + parent: 1 + type: Transform + - uid: 5910 + components: + - pos: 23.5,45.5 + parent: 1 + type: Transform + - uid: 5911 + components: + - pos: 24.5,45.5 + parent: 1 + type: Transform + - uid: 5912 + components: + - pos: 25.5,44.5 + parent: 1 + type: Transform + - uid: 5913 + components: + - pos: 25.5,43.5 + parent: 1 + type: Transform + - uid: 5914 + components: + - pos: 25.5,42.5 + parent: 1 + type: Transform + - uid: 5915 + components: + - pos: 25.5,41.5 + parent: 1 + type: Transform + - uid: 5916 + components: + - pos: 25.5,40.5 + parent: 1 + type: Transform + - uid: 5917 + components: + - pos: 24.5,29.5 + parent: 1 + type: Transform + - uid: 5918 + components: + - pos: 24.5,28.5 + parent: 1 + type: Transform + - uid: 5919 + components: + - pos: 24.5,27.5 + parent: 1 + type: Transform + - uid: 5920 + components: + - pos: 24.5,26.5 + parent: 1 + type: Transform + - uid: 5921 + components: + - pos: 24.5,25.5 + parent: 1 + type: Transform + - uid: 5922 + components: + - pos: 23.5,24.5 + parent: 1 + type: Transform + - uid: 5923 + components: + - pos: 22.5,24.5 + parent: 1 + type: Transform + - uid: 5924 + components: + - pos: 21.5,24.5 + parent: 1 + type: Transform + - uid: 5925 + components: + - pos: 20.5,24.5 + parent: 1 + type: Transform + - uid: 5926 + components: + - pos: 19.5,21.5 + parent: 1 + type: Transform + - uid: 5927 + components: + - pos: 19.5,20.5 + parent: 1 + type: Transform + - uid: 5928 + components: + - pos: 19.5,19.5 + parent: 1 + type: Transform + - uid: 5929 + components: + - pos: 19.5,18.5 + parent: 1 + type: Transform + - uid: 5930 + components: + - pos: 19.5,17.5 + parent: 1 + type: Transform + - uid: 5931 + components: + - pos: 18.5,22.5 + parent: 1 + type: Transform + - uid: 5932 + components: + - pos: 17.5,22.5 + parent: 1 + type: Transform + - uid: 5933 + components: + - pos: 16.5,22.5 + parent: 1 + type: Transform + - uid: 5934 + components: + - pos: 15.5,22.5 + parent: 1 + type: Transform + - uid: 5938 + components: + - pos: -27.5,18.5 + parent: 1 + type: Transform + - uid: 5939 + components: + - pos: -27.5,19.5 + parent: 1 + type: Transform + - uid: 5940 + components: + - pos: -27.5,20.5 + parent: 1 + type: Transform + - uid: 5941 + components: + - pos: -27.5,21.5 + parent: 1 + type: Transform + - uid: 5942 + components: + - pos: -27.5,22.5 + parent: 1 + type: Transform + - uid: 5943 + components: + - pos: -26.5,25.5 + parent: 1 + type: Transform + - uid: 5944 + components: + - pos: -25.5,25.5 + parent: 1 + type: Transform + - uid: 5945 + components: + - pos: -24.5,25.5 + parent: 1 + type: Transform + - uid: 5946 + components: + - pos: -23.5,28.5 + parent: 1 + type: Transform + - uid: 5947 + components: + - pos: -23.5,29.5 + parent: 1 + type: Transform + - uid: 5948 + components: + - pos: -23.5,30.5 + parent: 1 + type: Transform + - uid: 5949 + components: + - pos: -23.5,31.5 + parent: 1 + type: Transform + - uid: 5950 + components: + - pos: -23.5,32.5 + parent: 1 + type: Transform + - uid: 5951 + components: + - pos: -23.5,33.5 + parent: 1 + type: Transform + - uid: 5952 + components: + - pos: -23.5,34.5 + parent: 1 + type: Transform + - uid: 5953 + components: + - pos: -22.5,27.5 + parent: 1 + type: Transform + - uid: 5954 + components: + - pos: -21.5,27.5 + parent: 1 + type: Transform + - uid: 5988 + components: + - pos: -35.5,-8.5 + parent: 1 + type: Transform + - uid: 5989 + components: + - pos: -35.5,-9.5 + parent: 1 + type: Transform + - uid: 5990 + components: + - pos: -35.5,-10.5 + parent: 1 + type: Transform + - uid: 5991 + components: + - pos: -35.5,-11.5 + parent: 1 + type: Transform + - uid: 5992 + components: + - pos: -35.5,-12.5 + parent: 1 + type: Transform + - uid: 5993 + components: + - pos: -35.5,-13.5 + parent: 1 + type: Transform + - uid: 5994 + components: + - pos: -35.5,-14.5 + parent: 1 + type: Transform + - uid: 5995 + components: + - pos: -35.5,-15.5 + parent: 1 + type: Transform + - uid: 5996 + components: + - pos: -34.5,-16.5 + parent: 1 + type: Transform + - uid: 5997 + components: + - pos: -33.5,-16.5 + parent: 1 + type: Transform + - uid: 5998 + components: + - pos: -32.5,-16.5 + parent: 1 + type: Transform + - uid: 5999 + components: + - pos: -31.5,-16.5 + parent: 1 + type: Transform + - uid: 6001 + components: + - pos: -29.5,-17.5 + parent: 1 + type: Transform + - uid: 6002 + components: + - pos: -29.5,-18.5 + parent: 1 + type: Transform + - uid: 6003 + components: + - pos: -29.5,-19.5 + parent: 1 + type: Transform + - uid: 6004 + components: + - pos: -29.5,-20.5 + parent: 1 + type: Transform + - uid: 6005 + components: + - pos: -29.5,-21.5 + parent: 1 + type: Transform + - uid: 6006 + components: + - pos: -29.5,-22.5 + parent: 1 + type: Transform + - uid: 6007 + components: + - pos: -29.5,-23.5 + parent: 1 + type: Transform + - uid: 6008 + components: + - pos: -29.5,-24.5 + parent: 1 + type: Transform + - uid: 6009 + components: + - pos: -29.5,-25.5 + parent: 1 + type: Transform + - uid: 6010 + components: + - pos: -28.5,-26.5 + parent: 1 + type: Transform + - uid: 6011 + components: + - pos: -27.5,-26.5 + parent: 1 + type: Transform + - uid: 6012 + components: + - pos: -26.5,-26.5 + parent: 1 + type: Transform + - uid: 6013 + components: + - pos: -25.5,-26.5 + parent: 1 + type: Transform + - uid: 6015 + components: + - pos: -23.5,-26.5 + parent: 1 + type: Transform + - uid: 6016 + components: + - pos: -22.5,-26.5 + parent: 1 + type: Transform + - uid: 6017 + components: + - pos: -21.5,-26.5 + parent: 1 + type: Transform + - uid: 6018 + components: + - pos: -20.5,-27.5 + parent: 1 + type: Transform + - uid: 6019 + components: + - pos: -20.5,-28.5 + parent: 1 + type: Transform + - uid: 6020 + components: + - pos: -20.5,-29.5 + parent: 1 + type: Transform + - uid: 6021 + components: + - pos: -20.5,-30.5 + parent: 1 + type: Transform + - uid: 6023 + components: + - pos: -18.5,-29.5 + parent: 1 + type: Transform + - uid: 6024 + components: + - pos: -18.5,-28.5 + parent: 1 + type: Transform + - uid: 6025 + components: + - pos: -18.5,-27.5 + parent: 1 + type: Transform + - uid: 6026 + components: + - pos: -18.5,-26.5 + parent: 1 + type: Transform + - uid: 6027 + components: + - pos: -18.5,-25.5 + parent: 1 + type: Transform + - uid: 6028 + components: + - pos: -16.5,-23.5 + parent: 1 + type: Transform + - uid: 6029 + components: + - pos: -16.5,-22.5 + parent: 1 + type: Transform + - uid: 6030 + components: + - pos: -16.5,-21.5 + parent: 1 + type: Transform + - uid: 6031 + components: + - pos: -16.5,-32.5 + parent: 1 + type: Transform + - uid: 6032 + components: + - pos: -16.5,-33.5 + parent: 1 + type: Transform + - uid: 6033 + components: + - pos: -16.5,-34.5 + parent: 1 + type: Transform + - uid: 6034 + components: + - pos: -16.5,-35.5 + parent: 1 + type: Transform + - uid: 6050 + components: + - pos: 38.5,-11.5 + parent: 1 + type: Transform + - uid: 6051 + components: + - pos: 37.5,-11.5 + parent: 1 + type: Transform + - uid: 6052 + components: + - pos: 36.5,-11.5 + parent: 1 + type: Transform + - uid: 6053 + components: + - pos: 35.5,-11.5 + parent: 1 + type: Transform + - uid: 6054 + components: + - pos: 32.5,-12.5 + parent: 1 + type: Transform + - uid: 6055 + components: + - pos: 32.5,-13.5 + parent: 1 + type: Transform + - uid: 6056 + components: + - pos: 32.5,-14.5 + parent: 1 + type: Transform + - uid: 6057 + components: + - pos: 30.5,-16.5 + parent: 1 + type: Transform + - uid: 6058 + components: + - pos: 30.5,-17.5 + parent: 1 + type: Transform + - uid: 6059 + components: + - pos: 30.5,-18.5 + parent: 1 + type: Transform + - uid: 6060 + components: + - pos: 30.5,-20.5 + parent: 1 + type: Transform + - uid: 6061 + components: + - pos: 30.5,-21.5 + parent: 1 + type: Transform + - uid: 6062 + components: + - pos: 30.5,-22.5 + parent: 1 + type: Transform + - uid: 6063 + components: + - pos: 30.5,-23.5 + parent: 1 + type: Transform + - uid: 6064 + components: + - pos: 28.5,-24.5 + parent: 1 + type: Transform + - uid: 6065 + components: + - pos: 27.5,-24.5 + parent: 1 + type: Transform + - uid: 6066 + components: + - pos: 26.5,-24.5 + parent: 1 + type: Transform + - uid: 6067 + components: + - pos: 25.5,-24.5 + parent: 1 + type: Transform + - uid: 6068 + components: + - pos: 24.5,-23.5 + parent: 1 + type: Transform + - uid: 6069 + components: + - pos: 24.5,-22.5 + parent: 1 + type: Transform + - uid: 6070 + components: + - pos: 22.5,-25.5 + parent: 1 + type: Transform + - uid: 6071 + components: + - pos: 22.5,-26.5 + parent: 1 + type: Transform + - uid: 6072 + components: + - pos: 20.5,-29.5 + parent: 1 + type: Transform + - uid: 6073 + components: + - pos: 19.5,-29.5 + parent: 1 + type: Transform + - uid: 6074 + components: + - pos: 18.5,-29.5 + parent: 1 + type: Transform + - uid: 6075 + components: + - pos: 17.5,-29.5 + parent: 1 + type: Transform + - uid: 6077 + components: + - pos: 15.5,-32.5 + parent: 1 + type: Transform + - uid: 6078 + components: + - pos: 15.5,-30.5 + parent: 1 + type: Transform + - uid: 6334 + components: + - pos: -43.5,46.5 + parent: 1 + type: Transform + - uid: 6335 + components: + - pos: -43.5,47.5 + parent: 1 + type: Transform + - uid: 6336 + components: + - pos: -43.5,48.5 + parent: 1 + type: Transform + - uid: 6337 + components: + - pos: -43.5,49.5 + parent: 1 + type: Transform + - uid: 6338 + components: + - pos: -43.5,50.5 + parent: 1 + type: Transform + - uid: 6339 + components: + - pos: -42.5,51.5 + parent: 1 + type: Transform + - uid: 6340 + components: + - pos: -41.5,51.5 + parent: 1 + type: Transform + - uid: 6417 + components: + - pos: -15.5,8.5 + parent: 1 + type: Transform + - uid: 6418 + components: + - pos: -16.5,7.5 + parent: 1 + type: Transform + - uid: 6419 + components: + - pos: -17.5,7.5 + parent: 1 + type: Transform + - uid: 6420 + components: + - pos: -18.5,7.5 + parent: 1 + type: Transform + - uid: 6421 + components: + - pos: -19.5,6.5 + parent: 1 + type: Transform + - uid: 6422 + components: + - pos: -19.5,5.5 + parent: 1 + type: Transform + - uid: 6423 + components: + - pos: -19.5,4.5 + parent: 1 + type: Transform + - uid: 6424 + components: + - pos: -19.5,3.5 + parent: 1 + type: Transform + - uid: 6425 + components: + - pos: -19.5,2.5 + parent: 1 + type: Transform + - uid: 6426 + components: + - pos: -19.5,1.5 + parent: 1 + type: Transform + - uid: 6427 + components: + - pos: -19.5,0.5 + parent: 1 + type: Transform + - uid: 6428 + components: + - pos: -19.5,-0.5 + parent: 1 + type: Transform + - uid: 6429 + components: + - pos: -19.5,-1.5 + parent: 1 + type: Transform + - uid: 6430 + components: + - pos: -20.5,-2.5 + parent: 1 + type: Transform + - uid: 6431 + components: + - pos: -21.5,-2.5 + parent: 1 + type: Transform + - uid: 6432 + components: + - pos: -19.5,-3.5 + parent: 1 + type: Transform + - uid: 6433 + components: + - pos: -19.5,-4.5 + parent: 1 + type: Transform + - uid: 6434 + components: + - pos: -20.5,-5.5 + parent: 1 + type: Transform + - uid: 6435 + components: + - pos: -21.5,-5.5 + parent: 1 + type: Transform + - uid: 6436 + components: + - pos: -22.5,-5.5 + parent: 1 + type: Transform + - uid: 6437 + components: + - pos: -23.5,-5.5 + parent: 1 + type: Transform + - uid: 6438 + components: + - pos: -24.5,-5.5 + parent: 1 + type: Transform + - uid: 6439 + components: + - pos: -25.5,-5.5 + parent: 1 + type: Transform + - uid: 6452 + components: + - pos: -27.5,-4.5 + parent: 1 + type: Transform + - uid: 6453 + components: + - pos: -27.5,-3.5 + parent: 1 + type: Transform + - uid: 6454 + components: + - pos: -27.5,-2.5 + parent: 1 + type: Transform + - uid: 6455 + components: + - pos: -27.5,-1.5 + parent: 1 + type: Transform + - uid: 6456 + components: + - pos: -27.5,-0.5 + parent: 1 + type: Transform + - uid: 6457 + components: + - pos: -27.5,0.5 + parent: 1 + type: Transform + - uid: 6473 + components: + - pos: 5.5,-28.5 + parent: 1 + type: Transform + - uid: 6485 + components: + - pos: 7.5,-28.5 + parent: 1 + type: Transform + - uid: 6488 + components: + - pos: 6.5,-28.5 + parent: 1 + type: Transform + - uid: 6578 + components: + - pos: 8.5,-28.5 + parent: 1 + type: Transform + - uid: 6713 + components: + - pos: -34.5,24.5 + parent: 1 + type: Transform + - uid: 6714 + components: + - pos: -34.5,25.5 + parent: 1 + type: Transform + - uid: 6715 + components: + - pos: -34.5,26.5 + parent: 1 + type: Transform + - uid: 6716 + components: + - pos: -34.5,27.5 + parent: 1 + type: Transform + - uid: 6717 + components: + - pos: -34.5,28.5 + parent: 1 + type: Transform + - uid: 6718 + components: + - pos: -34.5,29.5 + parent: 1 + type: Transform + - uid: 6719 + components: + - pos: -34.5,30.5 + parent: 1 + type: Transform + - uid: 6720 + components: + - pos: -34.5,31.5 + parent: 1 + type: Transform + - uid: 6721 + components: + - pos: -34.5,32.5 + parent: 1 + type: Transform + - uid: 6722 + components: + - pos: -35.5,33.5 + parent: 1 + type: Transform + - uid: 6723 + components: + - pos: -36.5,33.5 + parent: 1 + type: Transform + - uid: 6724 + components: + - pos: -37.5,33.5 + parent: 1 + type: Transform + - uid: 6725 + components: + - pos: -38.5,33.5 + parent: 1 + type: Transform + - uid: 6735 + components: + - pos: -35.5,20.5 + parent: 1 + type: Transform + - uid: 6736 + components: + - pos: -35.5,19.5 + parent: 1 + type: Transform + - uid: 6737 + components: + - pos: -35.5,18.5 + parent: 1 + type: Transform + - uid: 6955 + components: + - pos: 14.5,5.5 + parent: 1 + type: Transform + - uid: 6956 + components: + - pos: 14.5,4.5 + parent: 1 + type: Transform + - uid: 6957 + components: + - pos: 14.5,3.5 + parent: 1 + type: Transform + - uid: 6958 + components: + - pos: 14.5,2.5 + parent: 1 + type: Transform + - uid: 6959 + components: + - pos: 14.5,1.5 + parent: 1 + type: Transform + - uid: 6960 + components: + - pos: 14.5,0.5 + parent: 1 + type: Transform + - uid: 6961 + components: + - pos: 14.5,-0.5 + parent: 1 + type: Transform + - uid: 6962 + components: + - pos: 15.5,-1.5 + parent: 1 + type: Transform + - uid: 6963 + components: + - pos: 16.5,-1.5 + parent: 1 + type: Transform + - uid: 6964 + components: + - pos: 17.5,-1.5 + parent: 1 + type: Transform + - uid: 6965 + components: + - pos: 18.5,-0.5 + parent: 1 + type: Transform + - uid: 6966 + components: + - pos: 18.5,0.5 + parent: 1 + type: Transform + - uid: 6967 + components: + - pos: 15.5,6.5 + parent: 1 + type: Transform + - uid: 6968 + components: + - pos: 16.5,6.5 + parent: 1 + type: Transform + - uid: 6969 + components: + - pos: 17.5,6.5 + parent: 1 + type: Transform + - uid: 6970 + components: + - pos: 18.5,7.5 + parent: 1 + type: Transform + - uid: 6971 + components: + - pos: 18.5,8.5 + parent: 1 + type: Transform + - uid: 6972 + components: + - pos: 18.5,9.5 + parent: 1 + type: Transform + - uid: 6973 + components: + - pos: 18.5,10.5 + parent: 1 + type: Transform + - uid: 6974 + components: + - pos: 18.5,11.5 + parent: 1 + type: Transform + - uid: 6975 + components: + - pos: 14.5,-2.5 + parent: 1 + type: Transform + - uid: 6976 + components: + - pos: 14.5,-3.5 + parent: 1 + type: Transform + - uid: 6977 + components: + - pos: 14.5,-4.5 + parent: 1 + type: Transform + - uid: 6998 + components: + - pos: 36.5,41.5 + parent: 1 + type: Transform + - uid: 6999 + components: + - pos: 36.5,42.5 + parent: 1 + type: Transform + - uid: 7000 + components: + - pos: 36.5,43.5 + parent: 1 + type: Transform + - uid: 7001 + components: + - pos: 36.5,44.5 + parent: 1 + type: Transform + - uid: 7002 + components: + - pos: 36.5,45.5 + parent: 1 + type: Transform + - uid: 7003 + components: + - pos: 36.5,46.5 + parent: 1 + type: Transform + - uid: 7004 + components: + - pos: 36.5,47.5 + parent: 1 + type: Transform + - uid: 7005 + components: + - pos: 36.5,48.5 + parent: 1 + type: Transform + - uid: 7006 + components: + - pos: 36.5,49.5 + parent: 1 + type: Transform + - uid: 7007 + components: + - pos: 36.5,50.5 + parent: 1 + type: Transform + - uid: 7008 + components: + - pos: 35.5,51.5 + parent: 1 + type: Transform + - uid: 7009 + components: + - pos: 34.5,51.5 + parent: 1 + type: Transform + - uid: 7010 + components: + - pos: 33.5,51.5 + parent: 1 + type: Transform + - uid: 7011 + components: + - pos: 32.5,51.5 + parent: 1 + type: Transform + - uid: 7012 + components: + - pos: 31.5,51.5 + parent: 1 + type: Transform + - uid: 7013 + components: + - pos: 30.5,51.5 + parent: 1 + type: Transform + - uid: 7014 + components: + - pos: 28.5,54.5 + parent: 1 + type: Transform + - uid: 7016 + components: + - pos: 28.5,56.5 + parent: 1 + type: Transform + - uid: 7017 + components: + - pos: 27.5,57.5 + parent: 1 + type: Transform + - uid: 7018 + components: + - pos: 26.5,57.5 + parent: 1 + type: Transform + - uid: 7019 + components: + - pos: 25.5,57.5 + parent: 1 + type: Transform + - uid: 7020 + components: + - pos: 24.5,57.5 + parent: 1 + type: Transform + - uid: 7021 + components: + - pos: 23.5,57.5 + parent: 1 + type: Transform + - uid: 7184 + components: + - pos: 2.5,41.5 + parent: 1 + type: Transform + - uid: 7185 + components: + - pos: 3.5,41.5 + parent: 1 + type: Transform + - uid: 7186 + components: + - pos: 4.5,41.5 + parent: 1 + type: Transform + - uid: 7187 + components: + - pos: 5.5,41.5 + parent: 1 + type: Transform + - uid: 7188 + components: + - pos: 6.5,41.5 + parent: 1 + type: Transform + - uid: 7189 + components: + - pos: 7.5,41.5 + parent: 1 + type: Transform + - uid: 7190 + components: + - pos: 8.5,41.5 + parent: 1 + type: Transform + - uid: 7191 + components: + - pos: 9.5,42.5 + parent: 1 + type: Transform + - uid: 7192 + components: + - pos: 9.5,43.5 + parent: 1 + type: Transform + - uid: 7193 + components: + - pos: 9.5,44.5 + parent: 1 + type: Transform + - uid: 7194 + components: + - pos: 9.5,45.5 + parent: 1 + type: Transform + - uid: 7195 + components: + - pos: 9.5,46.5 + parent: 1 + type: Transform + - uid: 7196 + components: + - pos: 9.5,47.5 + parent: 1 + type: Transform + - uid: 7197 + components: + - pos: 9.5,48.5 + parent: 1 + type: Transform + - uid: 7198 + components: + - pos: 9.5,49.5 + parent: 1 + type: Transform + - uid: 7199 + components: + - pos: 11.5,50.5 + parent: 1 + type: Transform + - uid: 7200 + components: + - pos: 10.5,50.5 + parent: 1 + type: Transform + - uid: 7201 + components: + - pos: 12.5,50.5 + parent: 1 + type: Transform + - uid: 7203 + components: + - pos: 14.5,50.5 + parent: 1 + type: Transform + - uid: 7204 + components: + - pos: 15.5,50.5 + parent: 1 + type: Transform + - uid: 7205 + components: + - pos: 17.5,49.5 + parent: 1 + type: Transform + - uid: 7206 + components: + - pos: 18.5,49.5 + parent: 1 + type: Transform + - uid: 7207 + components: + - pos: 19.5,49.5 + parent: 1 + type: Transform + - uid: 7208 + components: + - pos: 20.5,49.5 + parent: 1 + type: Transform + - uid: 7302 + components: + - pos: 24.5,-21.5 + parent: 1 + type: Transform + - uid: 7303 + components: + - pos: 24.5,-20.5 + parent: 1 + type: Transform + - uid: 7304 + components: + - pos: 24.5,-19.5 + parent: 1 + type: Transform + - uid: 7305 + components: + - pos: 24.5,-18.5 + parent: 1 + type: Transform + - uid: 7306 + components: + - pos: 24.5,-17.5 + parent: 1 + type: Transform + - uid: 7307 + components: + - pos: 24.5,-16.5 + parent: 1 + type: Transform + - uid: 7308 + components: + - pos: 25.5,-15.5 + parent: 1 + type: Transform + - uid: 7309 + components: + - pos: 26.5,-15.5 + parent: 1 + type: Transform + - uid: 7310 + components: + - pos: 27.5,-15.5 + parent: 1 + type: Transform + - uid: 7311 + components: + - pos: 28.5,-15.5 + parent: 1 + type: Transform + - uid: 7312 + components: + - pos: 29.5,-15.5 + parent: 1 + type: Transform + - uid: 7313 + components: + - pos: 24.5,-14.5 + parent: 1 + type: Transform + - uid: 7314 + components: + - pos: 24.5,-13.5 + parent: 1 + type: Transform + - uid: 7315 + components: + - pos: 24.5,-12.5 + parent: 1 + type: Transform + - uid: 7320 + components: + - pos: 34.5,-11.5 + parent: 1 + type: Transform + - uid: 7321 + components: + - pos: 33.5,-11.5 + parent: 1 + type: Transform + - uid: 7329 + components: + - pos: 18.5,2.5 + parent: 1 + type: Transform + - uid: 7330 + components: + - pos: 18.5,3.5 + parent: 1 + type: Transform + - uid: 7331 + components: + - pos: 18.5,52.5 + parent: 1 + type: Transform + - uid: 7332 + components: + - pos: 19.5,52.5 + parent: 1 + type: Transform + - uid: 7333 + components: + - pos: -24.5,56.5 + parent: 1 + type: Transform + - uid: 7334 + components: + - pos: -24.5,55.5 + parent: 1 + type: Transform + - uid: 7335 + components: + - pos: -24.5,54.5 + parent: 1 + type: Transform + - uid: 7386 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,53.5 + parent: 1 + type: Transform + - uid: 7400 + components: + - pos: 37.5,75.5 + parent: 1 + type: Transform + - uid: 7401 + components: + - pos: 37.5,74.5 + parent: 1 + type: Transform + - uid: 7402 + components: + - pos: 37.5,73.5 + parent: 1 + type: Transform + - uid: 7403 + components: + - pos: 37.5,72.5 + parent: 1 + type: Transform + - uid: 7404 + components: + - pos: 37.5,71.5 + parent: 1 + type: Transform + - uid: 7405 + components: + - pos: 37.5,70.5 + parent: 1 + type: Transform + - uid: 7406 + components: + - pos: 37.5,69.5 + parent: 1 + type: Transform + - uid: 7407 + components: + - pos: 37.5,68.5 + parent: 1 + type: Transform + - uid: 7408 + components: + - pos: 37.5,67.5 + parent: 1 + type: Transform + - uid: 7409 + components: + - pos: 37.5,66.5 + parent: 1 + type: Transform + - uid: 7410 + components: + - pos: 37.5,65.5 + parent: 1 + type: Transform + - uid: 7411 + components: + - pos: 37.5,64.5 + parent: 1 + type: Transform + - uid: 7412 + components: + - pos: 37.5,63.5 + parent: 1 + type: Transform + - uid: 7413 + components: + - pos: 37.5,62.5 + parent: 1 + type: Transform + - uid: 7414 + components: + - pos: 37.5,61.5 + parent: 1 + type: Transform + - uid: 7415 + components: + - pos: 37.5,60.5 + parent: 1 + type: Transform + - uid: 7416 + components: + - pos: 37.5,59.5 + parent: 1 + type: Transform + - uid: 7417 + components: + - pos: 37.5,58.5 + parent: 1 + type: Transform + - uid: 7418 + components: + - pos: 37.5,57.5 + parent: 1 + type: Transform + - uid: 7513 + components: + - pos: 35.5,73.5 + parent: 1 + type: Transform + - uid: 7514 + components: + - pos: 34.5,73.5 + parent: 1 + type: Transform + - uid: 7515 + components: + - pos: 33.5,73.5 + parent: 1 + type: Transform + - uid: 7516 + components: + - pos: 32.5,73.5 + parent: 1 + type: Transform + - uid: 7517 + components: + - pos: 31.5,73.5 + parent: 1 + type: Transform + - uid: 7518 + components: + - pos: 30.5,73.5 + parent: 1 + type: Transform + - uid: 7519 + components: + - pos: 29.5,73.5 + parent: 1 + type: Transform + - uid: 7520 + components: + - pos: 28.5,73.5 + parent: 1 + type: Transform + - uid: 7521 + components: + - pos: 39.5,73.5 + parent: 1 + type: Transform + - uid: 7522 + components: + - pos: 40.5,73.5 + parent: 1 + type: Transform + - uid: 7523 + components: + - pos: 41.5,73.5 + parent: 1 + type: Transform + - uid: 7524 + components: + - pos: 42.5,73.5 + parent: 1 + type: Transform + - uid: 7525 + components: + - pos: 43.5,73.5 + parent: 1 + type: Transform + - uid: 7526 + components: + - pos: 44.5,73.5 + parent: 1 + type: Transform + - uid: 7527 + components: + - pos: 45.5,73.5 + parent: 1 + type: Transform + - uid: 7528 + components: + - pos: 46.5,73.5 + parent: 1 + type: Transform + - uid: 7529 + components: + - pos: 35.5,69.5 + parent: 1 + type: Transform + - uid: 7530 + components: + - pos: 34.5,69.5 + parent: 1 + type: Transform + - uid: 7531 + components: + - pos: 33.5,69.5 + parent: 1 + type: Transform + - uid: 7532 + components: + - pos: 32.5,69.5 + parent: 1 + type: Transform + - uid: 7533 + components: + - pos: 31.5,69.5 + parent: 1 + type: Transform + - uid: 7534 + components: + - pos: 30.5,69.5 + parent: 1 + type: Transform + - uid: 7535 + components: + - pos: 29.5,69.5 + parent: 1 + type: Transform + - uid: 7536 + components: + - pos: 28.5,69.5 + parent: 1 + type: Transform + - uid: 7537 + components: + - pos: 39.5,69.5 + parent: 1 + type: Transform + - uid: 7538 + components: + - pos: 40.5,69.5 + parent: 1 + type: Transform + - uid: 7539 + components: + - pos: 41.5,69.5 + parent: 1 + type: Transform + - uid: 7540 + components: + - pos: 42.5,69.5 + parent: 1 + type: Transform + - uid: 7541 + components: + - pos: 43.5,69.5 + parent: 1 + type: Transform + - uid: 7542 + components: + - pos: 44.5,69.5 + parent: 1 + type: Transform + - uid: 7543 + components: + - pos: 45.5,69.5 + parent: 1 + type: Transform + - uid: 7544 + components: + - pos: 46.5,69.5 + parent: 1 + type: Transform + - uid: 7715 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,20.5 + parent: 1 + type: Transform + - uid: 7730 + components: + - pos: -38.5,72.5 + parent: 1 + type: Transform + - uid: 7731 + components: + - pos: -38.5,71.5 + parent: 1 + type: Transform + - uid: 7732 + components: + - pos: -38.5,70.5 + parent: 1 + type: Transform + - uid: 7733 + components: + - pos: -38.5,69.5 + parent: 1 + type: Transform + - uid: 7734 + components: + - pos: -38.5,68.5 + parent: 1 + type: Transform + - uid: 7735 + components: + - pos: -38.5,67.5 + parent: 1 + type: Transform + - uid: 7736 + components: + - pos: -38.5,66.5 + parent: 1 + type: Transform + - uid: 7737 + components: + - pos: -38.5,65.5 + parent: 1 + type: Transform + - uid: 7738 + components: + - pos: -38.5,64.5 + parent: 1 + type: Transform + - uid: 7739 + components: + - pos: -38.5,63.5 + parent: 1 + type: Transform + - uid: 7740 + components: + - pos: -38.5,62.5 + parent: 1 + type: Transform + - uid: 7741 + components: + - pos: -38.5,61.5 + parent: 1 + type: Transform + - uid: 7742 + components: + - pos: -38.5,60.5 + parent: 1 + type: Transform + - uid: 7743 + components: + - pos: -38.5,59.5 + parent: 1 + type: Transform + - uid: 7744 + components: + - pos: -38.5,58.5 + parent: 1 + type: Transform + - uid: 7745 + components: + - pos: -38.5,57.5 + parent: 1 + type: Transform + - uid: 7746 + components: + - pos: -40.5,73.5 + parent: 1 + type: Transform + - uid: 7747 + components: + - pos: -41.5,73.5 + parent: 1 + type: Transform + - uid: 7748 + components: + - pos: -42.5,73.5 + parent: 1 + type: Transform + - uid: 7749 + components: + - pos: -43.5,73.5 + parent: 1 + type: Transform + - uid: 7750 + components: + - pos: -44.5,73.5 + parent: 1 + type: Transform + - uid: 7751 + components: + - pos: -45.5,73.5 + parent: 1 + type: Transform + - uid: 7752 + components: + - pos: -46.5,73.5 + parent: 1 + type: Transform + - uid: 7753 + components: + - pos: -47.5,73.5 + parent: 1 + type: Transform + - uid: 7754 + components: + - pos: -36.5,73.5 + parent: 1 + type: Transform + - uid: 7755 + components: + - pos: -35.5,73.5 + parent: 1 + type: Transform + - uid: 7756 + components: + - pos: -34.5,73.5 + parent: 1 + type: Transform + - uid: 7757 + components: + - pos: -33.5,73.5 + parent: 1 + type: Transform + - uid: 7758 + components: + - pos: -32.5,73.5 + parent: 1 + type: Transform + - uid: 7759 + components: + - pos: -31.5,73.5 + parent: 1 + type: Transform + - uid: 7760 + components: + - pos: -30.5,73.5 + parent: 1 + type: Transform + - uid: 7761 + components: + - pos: -29.5,73.5 + parent: 1 + type: Transform + - uid: 7778 + components: + - pos: -40.5,69.5 + parent: 1 + type: Transform + - uid: 7779 + components: + - pos: -41.5,69.5 + parent: 1 + type: Transform + - uid: 7780 + components: + - pos: -42.5,69.5 + parent: 1 + type: Transform + - uid: 7781 + components: + - pos: -43.5,69.5 + parent: 1 + type: Transform + - uid: 7782 + components: + - pos: -44.5,69.5 + parent: 1 + type: Transform + - uid: 7783 + components: + - pos: -45.5,69.5 + parent: 1 + type: Transform + - uid: 7784 + components: + - pos: -46.5,69.5 + parent: 1 + type: Transform + - uid: 7785 + components: + - pos: -47.5,69.5 + parent: 1 + type: Transform + - uid: 7786 + components: + - pos: -36.5,69.5 + parent: 1 + type: Transform + - uid: 7787 + components: + - pos: -35.5,69.5 + parent: 1 + type: Transform + - uid: 7788 + components: + - pos: -34.5,69.5 + parent: 1 + type: Transform + - uid: 7789 + components: + - pos: -33.5,69.5 + parent: 1 + type: Transform + - uid: 7790 + components: + - pos: -32.5,69.5 + parent: 1 + type: Transform + - uid: 7791 + components: + - pos: -31.5,69.5 + parent: 1 + type: Transform + - uid: 7792 + components: + - pos: -30.5,69.5 + parent: 1 + type: Transform + - uid: 7793 + components: + - pos: -29.5,69.5 + parent: 1 + type: Transform + - uid: 7803 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,21.5 + parent: 1 + type: Transform + - uid: 8153 + components: + - pos: -45.5,25.5 + parent: 1 + type: Transform + - uid: 8162 + components: + - pos: -44.5,25.5 + parent: 1 + type: Transform + - uid: 8573 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,33.5 + parent: 1 + type: Transform + - uid: 8574 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,34.5 + parent: 1 + type: Transform + - uid: 8614 + components: + - pos: -7.5,26.5 + parent: 1 + type: Transform + - uid: 8615 + components: + - pos: -6.5,26.5 + parent: 1 + type: Transform + - uid: 8616 + components: + - pos: -5.5,26.5 + parent: 1 + type: Transform + - uid: 8617 + components: + - pos: -4.5,26.5 + parent: 1 + type: Transform + - uid: 8746 + components: + - pos: -13.5,-41.5 + parent: 1 + type: Transform + - uid: 8747 + components: + - pos: -13.5,-40.5 + parent: 1 + type: Transform + - uid: 8748 + components: + - pos: -13.5,-39.5 + parent: 1 + type: Transform + - uid: 9080 + components: + - pos: 12.5,-39.5 + parent: 1 + type: Transform + - uid: 9081 + components: + - pos: 12.5,-40.5 + parent: 1 + type: Transform + - uid: 9082 + components: + - pos: 12.5,-41.5 + parent: 1 + type: Transform + - uid: 9600 + components: + - pos: 15.5,-34.5 + parent: 1 + type: Transform + - uid: 10048 + components: + - pos: -18.5,-30.5 + parent: 1 + type: Transform + - uid: 10872 + components: + - pos: 28.5,-19.5 + parent: 1 + type: Transform + - uid: 10873 + components: + - pos: 27.5,-19.5 + parent: 1 + type: Transform + - uid: 10874 + components: + - pos: 26.5,-19.5 + parent: 1 + type: Transform + - uid: 13160 + components: + - pos: 15.5,24.5 + parent: 1 + type: Transform + - uid: 13163 + components: + - pos: 16.5,24.5 + parent: 1 + type: Transform + - uid: 13164 + components: + - pos: 14.5,24.5 + parent: 1 + type: Transform + - uid: 13175 + components: + - pos: -25.5,-2.5 + parent: 1 + type: Transform + - uid: 13176 + components: + - pos: -24.5,-2.5 + parent: 1 + type: Transform + - uid: 13177 + components: + - pos: -23.5,-2.5 + parent: 1 + type: Transform + - uid: 13202 + components: + - pos: -26.5,-16.5 + parent: 1 + type: Transform + - uid: 13203 + components: + - pos: -25.5,-16.5 + parent: 1 + type: Transform + - uid: 13204 + components: + - pos: -25.5,-17.5 + parent: 1 + type: Transform + - uid: 17775 + components: + - pos: -3.5,72.5 + parent: 1 + type: Transform + - uid: 17776 + components: + - pos: -3.5,73.5 + parent: 1 + type: Transform +- proto: Cautery + entities: + - uid: 8683 + components: + - pos: 20.508678,27.013725 + parent: 1 + type: Transform +- proto: Chair + entities: + - uid: 95 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,0.5 + parent: 1 + type: Transform + - uid: 232 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-0.5 + parent: 1 + type: Transform + - uid: 1938 + components: + - rot: 3.141592653589793 rad + pos: 20.5,36.5 + parent: 1 + type: Transform + - uid: 1939 + components: + - rot: 3.141592653589793 rad + pos: 19.5,36.5 + parent: 1 + type: Transform + - uid: 1940 + components: + - rot: 3.141592653589793 rad + pos: 9.5,54.5 + parent: 1 + type: Transform + - uid: 1941 + components: + - rot: 3.141592653589793 rad + pos: 12.5,54.5 + parent: 1 + type: Transform + - uid: 1942 + components: + - rot: 3.141592653589793 rad + pos: 14.5,54.5 + parent: 1 + type: Transform + - uid: 1943 + components: + - rot: 3.141592653589793 rad + pos: 13.5,54.5 + parent: 1 + type: Transform + - uid: 1944 + components: + - rot: 3.141592653589793 rad + pos: 8.5,52.5 + parent: 1 + type: Transform + - uid: 1945 + components: + - rot: 3.141592653589793 rad + pos: 7.5,52.5 + parent: 1 + type: Transform + - uid: 1946 + components: + - rot: 3.141592653589793 rad + pos: 9.5,52.5 + parent: 1 + type: Transform + - uid: 1947 + components: + - rot: 3.141592653589793 rad + pos: 7.5,53.5 + parent: 1 + type: Transform + - uid: 1948 + components: + - rot: 3.141592653589793 rad + pos: 8.5,53.5 + parent: 1 + type: Transform + - uid: 1949 + components: + - rot: 3.141592653589793 rad + pos: 9.5,53.5 + parent: 1 + type: Transform + - uid: 1950 + components: + - rot: 3.141592653589793 rad + pos: 12.5,52.5 + parent: 1 + type: Transform + - uid: 1951 + components: + - rot: 3.141592653589793 rad + pos: 13.5,52.5 + parent: 1 + type: Transform + - uid: 1952 + components: + - rot: 3.141592653589793 rad + pos: 14.5,52.5 + parent: 1 + type: Transform + - uid: 1953 + components: + - rot: 3.141592653589793 rad + pos: 12.5,53.5 + parent: 1 + type: Transform + - uid: 1954 + components: + - rot: 3.141592653589793 rad + pos: 13.5,53.5 + parent: 1 + type: Transform + - uid: 1955 + components: + - rot: 3.141592653589793 rad + pos: 14.5,53.5 + parent: 1 + type: Transform + - uid: 1956 + components: + - rot: 3.141592653589793 rad + pos: 21.5,36.5 + parent: 1 + type: Transform + - uid: 1957 + components: + - rot: 3.141592653589793 rad + pos: 8.5,54.5 + parent: 1 + type: Transform + - uid: 1958 + components: + - rot: 3.141592653589793 rad + pos: 7.5,54.5 + parent: 1 + type: Transform + - uid: 3185 + components: + - rot: 3.141592653589793 rad + pos: 43.5,49.5 + parent: 1 + type: Transform + - uid: 3186 + components: + - rot: 3.141592653589793 rad + pos: 42.5,49.5 + parent: 1 + type: Transform + - uid: 4247 + components: + - rot: -1.5707963267948966 rad + pos: 49.5,-11.5 + parent: 1 + type: Transform + - uid: 4248 + components: + - rot: -1.5707963267948966 rad + pos: 49.5,-9.5 + parent: 1 + type: Transform + - uid: 5641 + components: + - rot: 3.141592653589793 rad + pos: -7.5,36.5 + parent: 1 + type: Transform + - uid: 5642 + components: + - rot: 3.141592653589793 rad + pos: -6.5,36.5 + parent: 1 + type: Transform + - uid: 5643 + components: + - rot: 3.141592653589793 rad + pos: -5.5,36.5 + parent: 1 + type: Transform + - uid: 6090 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,40.5 + parent: 1 + type: Transform + - uid: 6091 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,41.5 + parent: 1 + type: Transform + - uid: 6092 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,41.5 + parent: 1 + type: Transform + - uid: 6093 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,40.5 + parent: 1 + type: Transform + - uid: 6140 + components: + - rot: -1.5707963267948966 rad + pos: 49.5,-10.5 + parent: 1 + type: Transform + - uid: 6491 + components: + - rot: -1.5707963267948966 rad + pos: 49.5,-12.5 + parent: 1 + type: Transform + - uid: 6899 + components: + - pos: 24.5,22.5 + parent: 1 + type: Transform + - uid: 6900 + components: + - pos: 25.5,22.5 + parent: 1 + type: Transform + - uid: 6901 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,19.5 + parent: 1 + type: Transform + - uid: 6902 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,18.5 + parent: 1 + type: Transform + - uid: 7278 + components: + - pos: 2.5,64.5 + parent: 1 + type: Transform + - uid: 7279 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,60.5 + parent: 1 + type: Transform + - uid: 7280 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,61.5 + parent: 1 + type: Transform + - uid: 8119 + components: + - rot: 3.141592653589793 rad + pos: 13.5,56.5 + parent: 1 + type: Transform + - uid: 8121 + components: + - rot: 3.141592653589793 rad + pos: 9.5,56.5 + parent: 1 + type: Transform + - uid: 8122 + components: + - rot: 3.141592653589793 rad + pos: 8.5,56.5 + parent: 1 + type: Transform + - uid: 8446 + components: + - rot: 3.141592653589793 rad + pos: 1.5,52.5 + parent: 1 + type: Transform + - uid: 8447 + components: + - rot: 3.141592653589793 rad + pos: 2.5,52.5 + parent: 1 + type: Transform + - uid: 8448 + components: + - pos: 1.5,57.5 + parent: 1 + type: Transform + - uid: 8449 + components: + - pos: 2.5,57.5 + parent: 1 + type: Transform + - uid: 8450 + components: + - rot: 3.141592653589793 rad + pos: -3.5,52.5 + parent: 1 + type: Transform + - uid: 8451 + components: + - rot: 3.141592653589793 rad + pos: -2.5,52.5 + parent: 1 + type: Transform + - uid: 8455 + components: + - pos: 10.5,70.5 + parent: 1 + type: Transform + - uid: 8456 + components: + - pos: 11.5,70.5 + parent: 1 + type: Transform + - uid: 8551 + components: + - rot: 3.141592653589793 rad + pos: 11.5,17.5 + parent: 1 + type: Transform + - uid: 8552 + components: + - rot: 3.141592653589793 rad + pos: 12.5,17.5 + parent: 1 + type: Transform + - uid: 8553 + components: + - pos: 6.5,20.5 + parent: 1 + type: Transform + - uid: 8554 + components: + - pos: 7.5,20.5 + parent: 1 + type: Transform + - uid: 8555 + components: + - pos: 8.5,20.5 + parent: 1 + type: Transform + - uid: 8556 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,19.5 + parent: 1 + type: Transform + - uid: 8557 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,18.5 + parent: 1 + type: Transform + - uid: 8558 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,17.5 + parent: 1 + type: Transform + - uid: 8582 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,29.5 + parent: 1 + type: Transform + - uid: 8583 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,26.5 + parent: 1 + type: Transform + - uid: 9442 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,4.5 + parent: 1 + type: Transform + - uid: 9443 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,7.5 + parent: 1 + type: Transform + - uid: 9467 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,5.5 + parent: 1 + type: Transform + - uid: 9468 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,6.5 + parent: 1 + type: Transform + - uid: 9493 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,28.5 + parent: 1 + type: Transform + - uid: 9494 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,27.5 + parent: 1 + type: Transform + - uid: 9507 + components: + - pos: 14.5,61.5 + parent: 1 + type: Transform + - uid: 9511 + components: + - rot: 3.141592653589793 rad + pos: 12.5,56.5 + parent: 1 + type: Transform + - uid: 9515 + components: + - rot: 3.141592653589793 rad + pos: 40.5,36.5 + parent: 1 + type: Transform + - uid: 9516 + components: + - rot: 3.141592653589793 rad + pos: 41.5,36.5 + parent: 1 + type: Transform + - uid: 9517 + components: + - pos: 44.5,38.5 + parent: 1 + type: Transform + - uid: 9518 + components: + - pos: 45.5,38.5 + parent: 1 + type: Transform + - uid: 9519 + components: + - pos: 43.5,38.5 + parent: 1 + type: Transform + - uid: 9520 + components: + - rot: 3.141592653589793 rad + pos: 43.5,39.5 + parent: 1 + type: Transform + - uid: 9521 + components: + - rot: 3.141592653589793 rad + pos: 44.5,39.5 + parent: 1 + type: Transform + - uid: 9522 + components: + - rot: 3.141592653589793 rad + pos: 45.5,39.5 + parent: 1 + type: Transform + - uid: 9526 + components: + - rot: 3.141592653589793 rad + pos: 40.5,13.5 + parent: 1 + type: Transform + - uid: 9527 + components: + - rot: 3.141592653589793 rad + pos: 41.5,13.5 + parent: 1 + type: Transform + - uid: 9528 + components: + - pos: 40.5,-7.5 + parent: 1 + type: Transform + - uid: 9529 + components: + - pos: 41.5,-7.5 + parent: 1 + type: Transform + - uid: 9530 + components: + - pos: 42.5,-7.5 + parent: 1 + type: Transform + - uid: 9531 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,8.5 + parent: 1 + type: Transform + - uid: 9532 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,7.5 + parent: 1 + type: Transform + - uid: 9533 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,0.5 + parent: 1 + type: Transform + - uid: 9534 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,1.5 + parent: 1 + type: Transform + - uid: 9537 + components: + - pos: -43.5,15.5 + parent: 1 + type: Transform + - uid: 9538 + components: + - pos: -42.5,15.5 + parent: 1 + type: Transform + - uid: 9539 + components: + - pos: -41.5,15.5 + parent: 1 + type: Transform + - uid: 9540 + components: + - pos: -25.5,38.5 + parent: 1 + type: Transform + - uid: 9541 + components: + - pos: -26.5,38.5 + parent: 1 + type: Transform + - uid: 9542 + components: + - pos: -27.5,38.5 + parent: 1 + type: Transform + - uid: 9544 + components: + - pos: -46.5,38.5 + parent: 1 + type: Transform + - uid: 9545 + components: + - pos: -45.5,38.5 + parent: 1 + type: Transform + - uid: 9546 + components: + - pos: -44.5,38.5 + parent: 1 + type: Transform + - uid: 9547 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,29.5 + parent: 1 + type: Transform + - uid: 9548 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,28.5 + parent: 1 + type: Transform + - uid: 9549 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,27.5 + parent: 1 + type: Transform + - uid: 9550 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,24.5 + parent: 1 + type: Transform + - uid: 9551 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,23.5 + parent: 1 + type: Transform + - uid: 9552 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,22.5 + parent: 1 + type: Transform + - uid: 9553 + components: + - rot: 3.141592653589793 rad + pos: 42.5,13.5 + parent: 1 + type: Transform + - uid: 9555 + components: + - pos: -24.5,-7.5 + parent: 1 + type: Transform + - uid: 9556 + components: + - pos: -23.5,-7.5 + parent: 1 + type: Transform + - uid: 9567 + components: + - rot: 3.141592653589793 rad + pos: 24.5,13.5 + parent: 1 + type: Transform + - uid: 9568 + components: + - rot: 3.141592653589793 rad + pos: 25.5,13.5 + parent: 1 + type: Transform + - uid: 9569 + components: + - rot: 3.141592653589793 rad + pos: 26.5,13.5 + parent: 1 + type: Transform + - uid: 9570 + components: + - pos: -20.5,15.5 + parent: 1 + type: Transform + - uid: 9571 + components: + - pos: -21.5,15.5 + parent: 1 + type: Transform + - uid: 9572 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,30.5 + parent: 1 + type: Transform + - uid: 9573 + components: + - pos: -22.5,15.5 + parent: 1 + type: Transform + - uid: 9574 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,29.5 + parent: 1 + type: Transform + - uid: 9575 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,28.5 + parent: 1 + type: Transform + - uid: 9576 + components: + - pos: 6.5,38.5 + parent: 1 + type: Transform + - uid: 9577 + components: + - pos: 5.5,38.5 + parent: 1 + type: Transform + - uid: 9578 + components: + - pos: 4.5,38.5 + parent: 1 + type: Transform + - uid: 9593 + components: + - pos: 14.5,15.5 + parent: 1 + type: Transform + - uid: 9594 + components: + - pos: 15.5,15.5 + parent: 1 + type: Transform + - uid: 9719 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-14.5 + parent: 1 + type: Transform + - uid: 9726 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-15.5 + parent: 1 + type: Transform + - uid: 9912 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-37.5 + parent: 1 + type: Transform + - uid: 13206 + components: + - rot: 3.141592653589793 rad + pos: -47.5,12.5 + parent: 1 + type: Transform + - uid: 13207 + components: + - rot: 3.141592653589793 rad + pos: -46.5,12.5 + parent: 1 + type: Transform + - uid: 15487 + components: + - rot: 3.141592653589793 rad + pos: 10.5,17.5 + parent: 1 + type: Transform + - uid: 16403 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-13.5 + parent: 1 + type: Transform + - uid: 16404 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-13.5 + parent: 1 + type: Transform + - uid: 16405 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-13.5 + parent: 1 + type: Transform + - uid: 16693 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,26.5 + parent: 1 + type: Transform + - uid: 16694 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,25.5 + parent: 1 + type: Transform +- proto: ChairFolding + entities: + - uid: 3167 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-13.5 + parent: 1 + type: Transform + - uid: 3254 + components: + - rot: 3.141592653589793 rad + pos: 30.5,54.5 + parent: 1 + type: Transform + - uid: 3256 + components: + - rot: 3.141592653589793 rad + pos: 34.5,54.5 + parent: 1 + type: Transform + - uid: 3263 + components: + - rot: 3.141592653589793 rad + pos: 33.5,54.5 + parent: 1 + type: Transform + - uid: 3264 + components: + - rot: 3.141592653589793 rad + pos: 28.5,46.5 + parent: 1 + type: Transform + - uid: 3274 + components: + - rot: 3.141592653589793 rad + pos: 29.5,46.5 + parent: 1 + type: Transform + - uid: 3275 + components: + - rot: 3.141592653589793 rad + pos: 28.5,45.5 + parent: 1 + type: Transform + - uid: 3276 + components: + - rot: 3.141592653589793 rad + pos: 29.5,45.5 + parent: 1 + type: Transform + - uid: 3277 + components: + - rot: 3.141592653589793 rad + pos: 28.5,44.5 + parent: 1 + type: Transform + - uid: 3278 + components: + - rot: 3.141592653589793 rad + pos: 29.5,44.5 + parent: 1 + type: Transform + - uid: 3279 + components: + - rot: 3.141592653589793 rad + pos: 32.5,46.5 + parent: 1 + type: Transform + - uid: 3280 + components: + - rot: 3.141592653589793 rad + pos: 33.5,46.5 + parent: 1 + type: Transform + - uid: 3281 + components: + - rot: 3.141592653589793 rad + pos: 32.5,45.5 + parent: 1 + type: Transform + - uid: 3282 + components: + - rot: 3.141592653589793 rad + pos: 33.5,45.5 + parent: 1 + type: Transform + - uid: 3283 + components: + - rot: 3.141592653589793 rad + pos: 32.5,44.5 + parent: 1 + type: Transform + - uid: 3284 + components: + - rot: 3.141592653589793 rad + pos: 33.5,44.5 + parent: 1 + type: Transform + - uid: 3287 + components: + - rot: 3.141592653589793 rad + pos: 31.5,54.5 + parent: 1 + type: Transform + - uid: 3944 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-12.5 + parent: 1 + type: Transform + - uid: 3947 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-11.5 + parent: 1 + type: Transform + - uid: 3948 + components: + - pos: -38.5,-10.5 + parent: 1 + type: Transform + - uid: 3949 + components: + - pos: -39.5,-10.5 + parent: 1 + type: Transform + - uid: 3950 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-12.5 + parent: 1 + type: Transform + - uid: 6550 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-22.5 + parent: 1 + type: Transform + - uid: 7421 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-26.5 + parent: 1 + type: Transform + - uid: 7443 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-23.5 + parent: 1 + type: Transform + - uid: 8288 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,44.5 + parent: 1 + type: Transform + - uid: 8289 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,43.5 + parent: 1 + type: Transform + - uid: 8290 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,44.5 + parent: 1 + type: Transform + - uid: 8291 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,43.5 + parent: 1 + type: Transform + - uid: 9089 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-34.5 + parent: 1 + type: Transform + - uid: 9915 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-36.5 + parent: 1 + type: Transform + - uid: 9931 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-30.5 + parent: 1 + type: Transform + - uid: 9959 + components: + - pos: -23.5,-21.5 + parent: 1 + type: Transform + - uid: 9960 + components: + - pos: -23.5,-22.5 + parent: 1 + type: Transform + - uid: 9961 + components: + - pos: -21.5,-21.5 + parent: 1 + type: Transform + - uid: 9962 + components: + - pos: -21.5,-22.5 + parent: 1 + type: Transform + - uid: 9963 + components: + - pos: -24.5,-22.5 + parent: 1 + type: Transform + - uid: 9964 + components: + - pos: -20.5,-22.5 + parent: 1 + type: Transform + - uid: 9972 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-23.5 + parent: 1 + type: Transform + - uid: 10068 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-17.5 + parent: 1 + type: Transform + - uid: 10070 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-17.5 + parent: 1 + type: Transform + - uid: 10135 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-19.5 + parent: 1 + type: Transform + - uid: 11054 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,0.5 + parent: 1 + type: Transform + - uid: 13169 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,26.5 + parent: 1 + type: Transform + - uid: 13311 + components: + - pos: -27.5,3.5 + parent: 1 + type: Transform + - uid: 13359 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,33.5 + parent: 1 + type: Transform + - uid: 13389 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,31.5 + parent: 1 + type: Transform + - uid: 13399 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,42.5 + parent: 1 + type: Transform + - uid: 13426 + components: + - pos: -24.5,58.5 + parent: 1 + type: Transform + - uid: 13427 + components: + - pos: -22.5,58.5 + parent: 1 + type: Transform + - uid: 13455 + components: + - pos: -46.5,47.5 + parent: 1 + type: Transform + - uid: 13459 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,47.5 + parent: 1 + type: Transform + - uid: 14004 + components: + - pos: 17.5,64.5 + parent: 1 + type: Transform + - uid: 14021 + components: + - pos: 19.5,50.5 + parent: 1 + type: Transform + - uid: 14023 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,58.5 + parent: 1 + type: Transform + - uid: 14024 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,58.5 + parent: 1 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 4150 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-1.5 + parent: 1 + type: Transform + - uid: 6665 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-2.5 + parent: 1 + type: Transform + - uid: 6668 + components: + - rot: 3.141592653589793 rad + pos: -27.5,6.5 + parent: 1 + type: Transform + - uid: 7281 + components: + - rot: 3.141592653589793 rad + pos: 2.5,60.5 + parent: 1 + type: Transform + - uid: 7282 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,63.5 + parent: 1 + type: Transform + - uid: 7932 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,25.5 + parent: 1 + type: Transform + - uid: 8133 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,53.5 + parent: 1 + type: Transform + - uid: 8134 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,54.5 + parent: 1 + type: Transform + - uid: 8343 + components: + - pos: -15.5,59.5 + parent: 1 + type: Transform + - uid: 8363 + components: + - pos: 42.5,51.5 + parent: 1 + type: Transform + - uid: 8662 + components: + - pos: -17.5,18.5 + parent: 1 + type: Transform + - uid: 8663 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,29.5 + parent: 1 + type: Transform + - uid: 9104 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-24.5 + parent: 1 + type: Transform + - uid: 9210 + components: + - rot: 3.141592653589793 rad + pos: -7.5,73.5 + parent: 1 + type: Transform + - uid: 9416 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-11.5 + parent: 1 + type: Transform + - uid: 9417 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-11.5 + parent: 1 + type: Transform + - uid: 10928 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-19.5 + parent: 1 + type: Transform + - uid: 11073 + components: + - rot: 3.141592653589793 rad + pos: 18.5,3.5 + parent: 1 + type: Transform + - uid: 13165 + components: + - rot: 3.141592653589793 rad + pos: 15.5,24.5 + parent: 1 + type: Transform + - uid: 13205 + components: + - pos: -25.5,-17.5 + parent: 1 + type: Transform + - uid: 14071 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,53.5 + parent: 1 + type: Transform + - uid: 17586 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,17.5 + parent: 1 + type: Transform + - uid: 17587 + components: + - rot: 3.141592653589793 rad + pos: -35.5,11.5 + parent: 1 + type: Transform + - uid: 18344 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,20.5 + parent: 1 + type: Transform + - uid: 18433 + components: + - pos: 44.5,42.5 + parent: 1 + type: Transform + - uid: 18436 + components: + - pos: 43.5,42.5 + parent: 1 + type: Transform +- proto: ChairOfficeLight + entities: + - uid: 3759 + components: + - pos: 25.5,3.5 + parent: 1 + type: Transform + - uid: 6652 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,7.5 + parent: 1 + type: Transform + - uid: 6664 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-0.5 + parent: 1 + type: Transform + - uid: 7387 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,52.5 + parent: 1 + type: Transform + - uid: 7388 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,55.5 + parent: 1 + type: Transform + - uid: 7389 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,49.5 + parent: 1 + type: Transform + - uid: 8483 + components: + - pos: 15.5,33.5 + parent: 1 + type: Transform + - uid: 8541 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,21.5 + parent: 1 + type: Transform + - uid: 8542 + components: + - pos: 4.5,21.5 + parent: 1 + type: Transform + - uid: 8543 + components: + - rot: 3.141592653589793 rad + pos: 8.5,23.5 + parent: 1 + type: Transform + - uid: 8544 + components: + - pos: 10.5,20.5 + parent: 1 + type: Transform + - uid: 8546 + components: + - pos: 12.5,20.5 + parent: 1 + type: Transform + - uid: 8659 + components: + - pos: -4.5,21.5 + parent: 1 + type: Transform + - uid: 8660 + components: + - pos: -5.5,21.5 + parent: 1 + type: Transform + - uid: 8661 + components: + - pos: -17.5,31.5 + parent: 1 + type: Transform + - uid: 8722 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-12.5 + parent: 1 + type: Transform + - uid: 8723 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-13.5 + parent: 1 + type: Transform + - uid: 9174 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-12.5 + parent: 1 + type: Transform + - uid: 9175 + components: + - pos: 8.5,-14.5 + parent: 1 + type: Transform + - uid: 9176 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-12.5 + parent: 1 + type: Transform + - uid: 9487 + components: + - pos: 3.5,28.5 + parent: 1 + type: Transform + - uid: 9579 + components: + - rot: 3.141592653589793 rad + pos: 2.5,33.5 + parent: 1 + type: Transform + - uid: 9607 + components: + - rot: 3.141592653589793 rad + pos: 6.5,33.5 + parent: 1 + type: Transform + - uid: 9914 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-36.5 + parent: 1 + type: Transform + - uid: 17590 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,34.5 + parent: 1 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 4306 + components: + - rot: 3.141592653589793 rad + pos: -2.5,79.5 + parent: 1 + type: Transform + - uid: 4307 + components: + - rot: 3.141592653589793 rad + pos: 1.5,79.5 + parent: 1 + type: Transform + - uid: 4308 + components: + - rot: 3.141592653589793 rad + pos: -2.5,82.5 + parent: 1 + type: Transform + - uid: 4309 + components: + - rot: 3.141592653589793 rad + pos: 1.5,82.5 + parent: 1 + type: Transform + - uid: 4310 + components: + - rot: 3.141592653589793 rad + pos: -5.5,81.5 + parent: 1 + type: Transform + - uid: 4311 + components: + - rot: 3.141592653589793 rad + pos: 4.5,81.5 + parent: 1 + type: Transform + - uid: 4312 + components: + - rot: 3.141592653589793 rad + pos: -1.5,82.5 + parent: 1 + type: Transform + - uid: 4313 + components: + - rot: 3.141592653589793 rad + pos: 0.5,82.5 + parent: 1 + type: Transform + - uid: 8123 + components: + - pos: 10.5,60.5 + parent: 1 + type: Transform + - uid: 8124 + components: + - pos: 11.5,60.5 + parent: 1 + type: Transform + - uid: 8857 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 8756 + type: Transform + - uid: 8858 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 8756 + type: Transform + - uid: 8859 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 8756 + type: Transform + - uid: 8860 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 8756 + type: Transform + - uid: 8885 + components: + - pos: -0.5,-3.5 + parent: 8756 + type: Transform + - uid: 8895 + components: + - rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 8756 + type: Transform +- proto: ChairWood + entities: + - uid: 4059 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,6.5 + parent: 1 + type: Transform + - uid: 4064 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,6.5 + parent: 1 + type: Transform + - uid: 4065 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,7.5 + parent: 1 + type: Transform + - uid: 7029 + components: + - rot: 3.141592653589793 rad + pos: -25.5,2.5 + parent: 1 + type: Transform + - uid: 7345 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,47.5 + parent: 1 + type: Transform + - uid: 7346 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,49.5 + parent: 1 + type: Transform + - uid: 8254 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,7.5 + parent: 1 + type: Transform + - uid: 8916 + components: + - pos: -11.5,3.5 + parent: 1 + type: Transform + - uid: 8917 + components: + - pos: -10.5,3.5 + parent: 1 + type: Transform + - uid: 8918 + components: + - rot: 3.141592653589793 rad + pos: -11.5,1.5 + parent: 1 + type: Transform + - uid: 8919 + components: + - rot: 3.141592653589793 rad + pos: -10.5,1.5 + parent: 1 + type: Transform + - uid: 8924 + components: + - rot: 3.141592653589793 rad + pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 8925 + components: + - rot: 3.141592653589793 rad + pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 8927 + components: + - rot: 3.141592653589793 rad + pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 8928 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 8929 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 8930 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 8931 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 8932 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 8934 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 8935 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 8936 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 8937 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 8938 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 8939 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 8940 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 8941 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,8.5 + parent: 1 + type: Transform + - uid: 8942 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,9.5 + parent: 1 + type: Transform + - uid: 8943 + components: + - pos: 3.5,9.5 + parent: 1 + type: Transform + - uid: 8947 + components: + - pos: -11.5,-2.5 + parent: 1 + type: Transform + - uid: 8948 + components: + - pos: -12.5,-2.5 + parent: 1 + type: Transform + - uid: 8949 + components: + - pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 8950 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 8951 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-4.5 + parent: 1 + type: Transform + - uid: 8952 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-4.5 + parent: 1 + type: Transform + - uid: 9282 + components: + - rot: 3.141592653589793 rad + pos: 24.5,10.5 + parent: 1 + type: Transform + - uid: 9341 + components: + - pos: -42.5,8.5 + parent: 1 + type: Transform + - uid: 9870 + components: + - pos: -35.5,-20.5 + parent: 1 + type: Transform + - uid: 10939 + components: + - pos: 35.5,-20.5 + parent: 1 + type: Transform + - uid: 13471 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,64.5 + parent: 1 + type: Transform + - uid: 13476 + components: + - pos: -12.5,65.5 + parent: 1 + type: Transform + - uid: 18099 + components: + - rot: 3.141592653589793 rad + pos: -29.5,55.5 + parent: 1 + type: Transform + - uid: 18100 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,52.5 + parent: 1 + type: Transform + - uid: 18419 + components: + - pos: -29.5,57.5 + parent: 1 + type: Transform +- proto: CheapLighter + entities: + - uid: 8106 + components: + - pos: 6.550927,72.406364 + parent: 1 + type: Transform + - uid: 8460 + components: + - pos: 12.457194,70.49379 + parent: 1 + type: Transform + - uid: 11057 + components: + - pos: 17.68046,-0.38290828 + parent: 1 + type: Transform + - uid: 13334 + components: + - pos: -12.437875,10.642552 + parent: 1 + type: Transform + - uid: 17384 + components: + - pos: -49.49224,16.547865 + parent: 1 + type: Transform + - uid: 18325 + components: + - pos: -0.54356754,-5.4461226 + parent: 1 + type: Transform +- proto: CheapRollerBed + entities: + - uid: 9614 + components: + - pos: 9.536522,32.44094 + parent: 1 + type: Transform + - uid: 13335 + components: + - pos: 14.5,17.5 + parent: 1 + type: Transform + - uid: 13336 + components: + - pos: 15.5,17.5 + parent: 1 + type: Transform + - uid: 13337 + components: + - pos: 8.5,17.5 + parent: 1 + type: Transform + - uid: 13338 + components: + - pos: 7.5,17.5 + parent: 1 + type: Transform +- proto: chem_master + entities: + - uid: 4046 + components: + - pos: 2.5,21.5 + parent: 1 + type: Transform + - uid: 4047 + components: + - pos: 8.5,24.5 + parent: 1 + type: Transform +- proto: ChemBag + entities: + - uid: 8477 + components: + - pos: 2.3789887,23.736757 + parent: 1 + type: Transform +- proto: ChemDispenser + entities: + - uid: 4050 + components: + - pos: 2.5,22.5 + parent: 1 + type: Transform + - uid: 4051 + components: + - pos: 7.5,24.5 + parent: 1 + type: Transform +- proto: ChemistryHotplate + entities: + - uid: 4052 + components: + - pos: 5.5,22.5 + parent: 1 + type: Transform +- proto: ChessBoard + entities: + - uid: 10071 + components: + - rot: 1.5707963267948966 rad + pos: -32.55108,-17.47344 + parent: 1 + type: Transform + - uid: 17380 + components: + - pos: -47.624664,35.52521 + parent: 1 + type: Transform +- proto: ChurchOrganInstrument + entities: + - uid: 8375 + components: + - rot: 3.141592653589793 rad + pos: 34.5,49.5 + parent: 1 + type: Transform +- proto: Cigar + entities: + - uid: 9954 + components: + - pos: -38.443047,-11.989926 + parent: 1 + type: Transform + - uid: 9955 + components: + - pos: -38.443047,-11.989926 + parent: 1 + type: Transform + - uid: 13401 + components: + - pos: -23.455694,43.57468 + parent: 1 + type: Transform +- proto: CigaretteSpent + entities: + - uid: 9935 + components: + - pos: -22.582382,-29.382385 + parent: 1 + type: Transform + - uid: 9936 + components: + - pos: -22.454592,-29.29724 + parent: 1 + type: Transform + - uid: 18326 + components: + - pos: -0.79409397,-5.3871837 + parent: 1 + type: Transform + - uid: 18327 + components: + - pos: -0.83830374,-5.2693057 + parent: 1 + type: Transform +- proto: CigarGold + entities: + - uid: 8103 + components: + - pos: 4.563099,71.78196 + parent: 1 + type: Transform + - uid: 8459 + components: + - pos: 12.343604,70.664085 + parent: 1 + type: Transform + - uid: 17382 + components: + - pos: -49.609077,16.675528 + parent: 1 + type: Transform +- proto: CigarGoldCase + entities: + - uid: 7257 + components: + - pos: 4.630952,48.731987 + parent: 1 + type: Transform +- proto: CigarSpent + entities: + - uid: 13402 + components: + - pos: -23.228514,43.489532 + parent: 1 + type: Transform +- proto: CigCartonBlack + entities: + - uid: 13332 + components: + - pos: -12.518449,10.410398 + parent: 1 + type: Transform +- proto: CigPackGreen + entities: + - uid: 18324 + components: + - pos: -0.35198832,-5.3871837 + parent: 1 + type: Transform +- proto: CigPackRed + entities: + - uid: 11056 + components: + - pos: 17.282892,-0.41129082 + parent: 1 + type: Transform +- proto: CircuitImprinter + entities: + - uid: 3551 + components: + - pos: -5.5,24.5 + parent: 1 + type: Transform +- proto: CircuitImprinterMachineCircuitboard + entities: + - uid: 4207 + components: + - pos: 18.52377,-24.42035 + parent: 1 + type: Transform +- proto: CloningPodMachineCircuitboard + entities: + - uid: 6384 + components: + - pos: 16.560993,33.373604 + parent: 1 + type: Transform +- proto: ClosetBase + entities: + - uid: 9867 + components: + - pos: -34.5,-21.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: ClosetBombFilled + entities: + - uid: 8170 + components: + - pos: -5.2650685,56.347507 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.4919806 + - 13.136498 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 8178 + components: + - pos: -15.5,40.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 4272 + components: + - pos: -8.5,77.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 7676 + components: + - pos: -27.5,-24.5 + parent: 1 + type: Transform + - uid: 8417 + components: + - pos: -47.5,44.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 8462 + components: + - pos: 12.5,66.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 8664 + components: + - pos: -20.5,17.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 8741 + components: + - pos: -14.5,-39.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 9387 + components: + - pos: 48.5,-6.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 9458 + components: + - pos: 47.5,44.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 9460 + components: + - pos: 49.5,12.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 9465 + components: + - pos: -50.5,12.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 9471 + components: + - pos: -30.5,18.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 9473 + components: + - pos: 29.5,-1.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 9558 + components: + - pos: -30.5,-9.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 9893 + components: + - pos: 9.5,64.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 9980 + components: + - pos: -15.5,-22.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10061 + components: + - pos: -34.5,-11.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10078 + components: + - pos: -28.5,-11.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10086 + components: + - pos: -15.5,-34.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10118 + components: + - pos: 18.5,-30.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10129 + components: + - pos: 33.5,-12.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10131 + components: + - pos: 26.5,-16.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 11049 + components: + - pos: 15.5,0.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 11065 + components: + - pos: 17.5,10.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13154 + components: + - pos: 18.5,18.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13167 + components: + - pos: 25.5,28.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13308 + components: + - pos: -28.5,0.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13323 + components: + - pos: -16.5,10.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13350 + components: + - pos: -34.5,19.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13356 + components: + - pos: -35.5,34.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13387 + components: + - pos: -24.5,33.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13396 + components: + - pos: -23.5,41.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13410 + components: + - pos: -19.5,56.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13449 + components: + - pos: -42.5,46.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13467 + components: + - pos: -5.5,69.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 14012 + components: + - pos: 3.5,40.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 14018 + components: + - pos: 20.5,47.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 14041 + components: + - pos: 27.5,41.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 14054 + components: + - pos: 33.5,52.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: ClosetFireFilled + entities: + - uid: 4392 + components: + - pos: 17.5,-30.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 7015 + components: + - pos: 20.5,46.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 7681 + components: + - pos: -28.5,-24.5 + parent: 1 + type: Transform + - uid: 8060 + components: + - pos: 7.5,76.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 8416 + components: + - pos: -46.5,44.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 8463 + components: + - pos: 11.5,66.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 8586 + components: + - pos: -9.5,19.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 8742 + components: + - pos: -14.5,-40.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 9457 + components: + - pos: 46.5,44.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 9461 + components: + - pos: 48.5,12.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 9462 + components: + - pos: 49.5,-6.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 9466 + components: + - pos: -49.5,12.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 9470 + components: + - pos: -30.5,19.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 9472 + components: + - pos: 29.5,-2.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 9894 + components: + - pos: 8.5,64.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 9981 + components: + - pos: -15.5,-21.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10060 + components: + - pos: -34.5,-10.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10079 + components: + - pos: -28.5,-12.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10085 + components: + - pos: -15.5,-35.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10130 + components: + - pos: 27.5,-16.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 11050 + components: + - pos: 15.5,-0.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 11064 + components: + - pos: 17.5,11.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13166 + components: + - pos: 25.5,29.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13309 + components: + - pos: -28.5,-0.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13324 + components: + - pos: -16.5,9.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13351 + components: + - pos: -34.5,18.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13357 + components: + - pos: -36.5,34.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13369 + components: + - pos: -28.5,17.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13386 + components: + - pos: -24.5,34.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13395 + components: + - pos: -23.5,40.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13409 + components: + - pos: -19.5,55.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13448 + components: + - pos: -42.5,45.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13466 + components: + - pos: -5.5,70.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 14011 + components: + - pos: 2.5,40.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 14032 + components: + - pos: 27.5,40.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 14055 + components: + - pos: 34.5,52.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: ClosetJanitorFilled + entities: + - uid: 9261 + components: + - pos: 20.5,-2.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: ClosetL3JanitorFilled + entities: + - uid: 9260 + components: + - pos: 21.5,-2.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: ClosetL3ScienceFilled + entities: + - uid: 6596 + components: + - pos: -8.5,19.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 6597 + components: + - pos: -15.5,28.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: ClosetL3VirologyFilled + entities: + - uid: 3722 + components: + - pos: 14.5,29.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: ClosetLegalFilled + entities: + - uid: 9295 + components: + - pos: 7.5,61.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 1093 + components: + - pos: -28.5,18.5 + parent: 1 + type: Transform + - uid: 7675 + components: + - pos: -26.5,-24.5 + parent: 1 + type: Transform + - uid: 9898 + components: + - pos: 4.5,40.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 9979 + components: + - pos: -15.5,-23.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10062 + components: + - pos: -34.5,-12.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10119 + components: + - pos: 19.5,-30.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10128 + components: + - pos: 34.5,-12.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10132 + components: + - pos: 25.5,-16.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 11047 + components: + - pos: 15.5,1.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 11067 + components: + - pos: 17.5,9.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13153 + components: + - pos: 18.5,19.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13168 + components: + - pos: 25.5,27.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13310 + components: + - pos: -28.5,-1.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13320 + components: + - pos: -20.5,5.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13322 + components: + - pos: -16.5,11.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13349 + components: + - pos: -34.5,20.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13355 + components: + - pos: -34.5,34.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13388 + components: + - pos: -24.5,32.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13408 + components: + - pos: -22.5,54.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13423 + components: + - pos: -25.5,58.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13447 + components: + - pos: -44.5,46.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13468 + components: + - pos: -5.5,68.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13478 + components: + - pos: -12.5,63.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13999 + components: + - pos: 10.5,64.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 14019 + components: + - pos: 20.5,48.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 14056 + components: + - pos: 35.5,52.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: ClosetRadiationSuitFilled + entities: + - uid: 6598 + components: + - pos: -15.5,27.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 6599 + components: + - pos: -7.5,19.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 7156 + components: + - pos: 11.5,-40.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10127 + components: + - pos: 28.5,-16.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: ClosetToolFilled + entities: + - uid: 7155 + components: + - pos: 11.5,-39.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 8743 + components: + - pos: -14.5,-41.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10930 + components: + - pos: 28.5,-20.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 11071 + components: + - pos: 17.5,2.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13372 + components: + - pos: -28.5,21.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 2.0214376 + - 7.6044564 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13424 + components: + - pos: -21.5,58.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 8896 + components: + - pos: -2.5,-2.5 + parent: 8756 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14954 + moles: + - 2.747938 + - 10.337481 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 8897 + components: + - pos: 1.5,-2.5 + parent: 8756 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14954 + moles: + - 2.747938 + - 10.337481 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: ClothingBackpackClown + entities: + - uid: 6611 + components: + - pos: -16.569172,-0.39851928 + parent: 1 + type: Transform +- proto: ClothingBackpackDuffelSurgeryFilled + entities: + - uid: 8677 + components: + - pos: 20.475561,28.574747 + parent: 1 + type: Transform +- proto: ClothingBackpackMerc + entities: + - uid: 6921 + components: + - pos: -42.38712,-12.466305 + parent: 1 + type: Transform +- proto: ClothingBackpackSatchelLeather + entities: + - uid: 18320 + components: + - pos: 40.47693,-7.527403 + parent: 1 + type: Transform + - uid: 18321 + components: + - pos: -33.544666,54.621593 + parent: 1 + type: Transform +- proto: ClothingBeltChampion + entities: + - uid: 7259 + components: + - pos: 4.51736,45.55318 + parent: 1 + type: Transform +- proto: ClothingBeltHolster + entities: + - uid: 9333 + components: + - pos: -43.116463,7.68436 + parent: 1 + type: Transform + - uid: 17749 + components: + - pos: -15.469988,66.40932 + parent: 1 + type: Transform +- proto: ClothingBeltMercWebbing + entities: + - uid: 7776 + components: + - pos: -39.31486,-19.325691 + parent: 1 + type: Transform +- proto: ClothingBeltPlant + entities: + - uid: 4242 + components: + - pos: 15.602159,8.388835 + parent: 1 + type: Transform +- proto: ClothingBeltUtilityFilled + entities: + - uid: 4702 + components: + - pos: -17.489521,17.578913 + parent: 1 + type: Transform + - uid: 9114 + components: + - pos: 10.45504,-18.357496 + parent: 1 + type: Transform + - uid: 18097 + components: + - pos: -32.452248,55.430744 + parent: 1 + type: Transform +- proto: ClothingEyesGlasses + entities: + - uid: 6669 + components: + - pos: -26.470171,6.9534106 + parent: 1 + type: Transform + - uid: 8081 + components: + - pos: -0.46738756,83.39493 + parent: 1 + type: Transform + - uid: 8129 + components: + - pos: 10.319884,59.595665 + parent: 1 + type: Transform + - uid: 8492 + components: + - pos: 15.420103,32.434727 + parent: 1 + type: Transform + - uid: 8561 + components: + - pos: 10.355046,19.611628 + parent: 1 + type: Transform + - uid: 9271 + components: + - pos: 24.589664,11.557829 + parent: 1 + type: Transform +- proto: ClothingEyesGlassesMercenary + entities: + - uid: 7806 + components: + - pos: -0.6837692,2.6104674 + parent: 8756 + type: Transform +- proto: ClothingEyesGlassesMeson + entities: + - uid: 8082 + components: + - pos: -7.367997,79.81877 + parent: 1 + type: Transform + - uid: 9189 + components: + - pos: 9.406997,-15.281609 + parent: 1 + type: Transform +- proto: ClothingEyesGlassesSecurity + entities: + - uid: 8247 + components: + - pos: -12.668796,47.542213 + parent: 1 + type: Transform +- proto: ClothingEyesHudMedical + entities: + - uid: 8560 + components: + - pos: 13.322592,19.569056 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesBoxingBlue + entities: + - uid: 18101 + components: + - pos: -29.678068,53.78091 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesBoxingGreen + entities: + - uid: 18102 + components: + - pos: -29.522928,53.4829 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 8700 + components: + - pos: -13.44191,-34.247616 + parent: 1 + type: Transform + - uid: 9093 + components: + - pos: 7.4150662,-11.358664 + parent: 1 + type: Transform + - uid: 9239 + components: + - pos: -21.620941,-13.378785 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesLatex + entities: + - uid: 7464 + components: + - pos: 18.631903,31.596643 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesLeather + entities: + - uid: 4235 + components: + - pos: 15.58796,8.644276 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesPowerglove + entities: + - uid: 18476 + components: + - pos: 22.441998,-12.412416 + parent: 1 + type: Transform +- proto: ClothingHeadHatBunny + entities: + - uid: 10095 + components: + - pos: -13.595756,-19.311182 + parent: 1 + type: Transform +- proto: ClothingHeadHatChef + entities: + - uid: 18450 + components: + - pos: 8.40042,-2.435669 + parent: 1 + type: Transform +- proto: ClothingHeadHatFedoraBrown + entities: + - uid: 10938 + components: + - pos: 33.51424,-17.677885 + parent: 1 + type: Transform +- proto: ClothingHeadHatFedoraGrey + entities: + - uid: 18348 + components: + - pos: -46.5004,47.295025 + parent: 1 + type: Transform +- proto: ClothingHeadHatFez + entities: + - uid: 11078 + components: + - pos: 20.427416,11.411529 + parent: 1 + type: Transform +- proto: ClothingHeadHatHairflower + entities: + - uid: 7260 + components: + - pos: 4.375372,45.69509 + parent: 1 + type: Transform +- proto: ClothingHeadHatHoodCulthood + entities: + - uid: 9864 + components: + - pos: -37.818073,-17.247238 + parent: 1 + type: Transform +- proto: ClothingHeadHatHoodGoliathCloak + entities: + - uid: 17735 + components: + - pos: 7.560631,48.036102 + parent: 1 + type: Transform +- proto: ClothingHeadHatJesterAlt + entities: + - uid: 18417 + components: + - pos: -28.410465,52.86911 + parent: 1 + type: Transform +- proto: ClothingHeadHatMimesoftFlipped + entities: + - uid: 6617 + components: + - pos: -15.675494,5.6185107 + parent: 1 + type: Transform +- proto: ClothingHeadHatOutlawHat + entities: + - uid: 17760 + components: + - pos: -18.557217,-21.471539 + parent: 1 + type: Transform +- proto: ClothingHeadHatParamedicsoftFlipped + entities: + - uid: 6184 + components: + - pos: 10.540607,19.673868 + parent: 1 + type: Transform +- proto: ClothingHeadHatPumpkin + entities: + - uid: 4237 + components: + - pos: 15.36078,8.743613 + parent: 1 + type: Transform +- proto: ClothingHeadHatPwig + entities: + - uid: 8130 + components: + - pos: 11.512583,59.624046 + parent: 1 + type: Transform +- proto: ClothingHeadHatQMsoftFlipped + entities: + - uid: 9331 + components: + - pos: -42.387295,7.580193 + parent: 1 + type: Transform +- proto: ClothingHeadHatSurgcapBlue + entities: + - uid: 8674 + components: + - pos: 16.454456,27.694899 + parent: 1 + type: Transform +- proto: ClothingHeadHatSurgcapGreen + entities: + - uid: 8676 + components: + - pos: 16.568047,27.510414 + parent: 1 + type: Transform +- proto: ClothingHeadHatSurgcapPurple + entities: + - uid: 8675 + components: + - pos: 20.515308,26.531229 + parent: 1 + type: Transform +- proto: ClothingHeadHatWelding + entities: + - uid: 8347 + components: + - pos: -28.660612,29.63867 + parent: 1 + type: Transform +- proto: ClothingHeadHatWeldingMaskPainted + entities: + - uid: 9886 + components: + - pos: -28.362438,31.526087 + parent: 1 + type: Transform +- proto: ClothingHeadHatXmasCrown + entities: + - uid: 611 + components: + - pos: 8.417196,2.4837458 + parent: 1 + type: Transform + - uid: 613 + components: + - pos: 8.589071,2.3899958 + parent: 1 + type: Transform +- proto: ClothingHeadHelmetRiot + entities: + - uid: 4057 + components: + - pos: -19.491697,40.80205 + parent: 1 + type: Transform + - uid: 7799 + components: + - pos: -19.335447,40.598927 + parent: 1 + type: Transform +- proto: ClothingHeadHelmetSyndicate + entities: + - uid: 13306 + components: + - pos: -21.718893,-0.28347415 + parent: 1 + type: Transform +- proto: ClothingHeadNurseHat + entities: + - uid: 17759 + components: + - pos: 13.17942,19.795881 + parent: 1 + type: Transform +- proto: ClothingHeadPyjamaSyndicatePink + entities: + - uid: 8399 + components: + - pos: 18.72468,47.52865 + parent: 1 + type: Transform +- proto: ClothingMaskGas + entities: + - uid: 7157 + components: + - pos: 11.357593,-37.31936 + parent: 1 + type: Transform + - uid: 7158 + components: + - pos: 11.641568,-37.518036 + parent: 1 + type: Transform + - uid: 9094 + components: + - pos: 7.6234,-11.483664 + parent: 1 + type: Transform + - uid: 9969 + components: + - pos: -20.622124,-24.324959 + parent: 1 + type: Transform +- proto: ClothingMaskGasAtmos + entities: + - uid: 8744 + components: + - pos: -12.37689,-41.391964 + parent: 1 + type: Transform +- proto: ClothingNeckAromanticPin + entities: + - uid: 17713 + components: + - pos: 43.669888,38.451065 + parent: 1 + type: Transform +- proto: ClothingNeckAsexualPin + entities: + - uid: 17714 + components: + - pos: 1.4304651,57.357273 + parent: 1 + type: Transform +- proto: ClothingNeckBisexualPin + entities: + - uid: 17715 + components: + - pos: -44.6231,38.434673 + parent: 1 + type: Transform +- proto: ClothingNeckCloakGoliathCloak + entities: + - uid: 17734 + components: + - pos: 7.523013,47.61037 + parent: 1 + type: Transform +- proto: ClothingNeckCloakHerald + entities: + - uid: 17736 + components: + - pos: 50.46923,40.362823 + parent: 1 + type: Transform +- proto: ClothingNeckCloakMiner + entities: + - uid: 17653 + components: + - pos: -44.542686,34.539337 + parent: 1 + type: Transform +- proto: ClothingNeckIntersexPin + entities: + - uid: 4027 + components: + - pos: -0.6386776,-0.42031726 + parent: 1 + type: Transform +- proto: ClothingNeckLesbianPin + entities: + - uid: 17717 + components: + - pos: -16.415733,-15.699648 + parent: 1 + type: Transform +- proto: ClothingNeckLGBTPin + entities: + - uid: 17712 + components: + - pos: 14.597307,15.443957 + parent: 1 + type: Transform +- proto: ClothingNeckMantleCap + entities: + - uid: 18130 + components: + - pos: -5.496665,72.46058 + parent: 1 + type: Transform +- proto: ClothingNeckMantleCMO + entities: + - uid: 18131 + components: + - pos: 14.511182,34.456318 + parent: 1 + type: Transform +- proto: ClothingNeckMantleHOP + entities: + - uid: 9272 + components: + - pos: 23.735497,11.474496 + parent: 1 + type: Transform +- proto: ClothingNeckMantleHOS + entities: + - uid: 6828 + components: + - pos: -13.651763,60.464382 + parent: 1 + type: Transform +- proto: ClothingNeckMantleRD + entities: + - uid: 18129 + components: + - pos: -23.627796,20.473478 + parent: 1 + type: Transform +- proto: ClothingNeckNonBinaryPin + entities: + - uid: 17718 + components: + - pos: 27.622953,-1.5417068 + parent: 1 + type: Transform +- proto: ClothingNeckPansexualPin + entities: + - uid: 17719 + components: + - pos: 21.441319,19.536022 + parent: 1 + type: Transform +- proto: ClothingNeckStethoscope + entities: + - uid: 8491 + components: + - pos: 16.445831,32.692505 + parent: 1 + type: Transform + - uid: 8528 + components: + - pos: 7.5771127,32.697323 + parent: 1 + type: Transform + - uid: 8559 + components: + - pos: 9.630908,19.547152 + parent: 1 + type: Transform + - uid: 9606 + components: + - pos: 3.3985047,31.605078 + parent: 1 + type: Transform +- proto: ClothingNeckTieRed + entities: + - uid: 10936 + components: + - pos: 33.429047,-17.73465 + parent: 1 + type: Transform +- proto: ClothingNeckTransPin + entities: + - uid: 17720 + components: + - pos: 19.415567,41.43221 + parent: 1 + type: Transform + - uid: 17721 + components: + - pos: -4.304539,54.705074 + parent: 1 + type: Transform +- proto: ClothingOuterApronBotanist + entities: + - uid: 4243 + components: + - pos: 5.6728125,7.328458 + parent: 1 + type: Transform +- proto: ClothingOuterArmorRiot + entities: + - uid: 4127 + components: + - pos: -19.444822,40.4583 + parent: 1 + type: Transform + - uid: 7714 + components: + - pos: -19.632322,40.661427 + parent: 1 + type: Transform +- proto: ClothingOuterCoatInspector + entities: + - uid: 10937 + components: + - pos: 33.429047,-17.59274 + parent: 1 + type: Transform +- proto: ClothingOuterCoatJensen + entities: + - uid: 18357 + components: + - pos: 37.44033,50.617104 + parent: 1 + type: Transform +- proto: ClothingOuterGhostSheet + entities: + - uid: 18107 + components: + - pos: -13.221982,69.88774 + parent: 1 + type: Transform + - uid: 18108 + components: + - pos: 35.625576,-21.402008 + parent: 1 + type: Transform +- proto: ClothingOuterHardsuitSalvage + entities: + - uid: 4070 + components: + - flags: InContainer + type: MetaData + - parent: 9342 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingOuterHoodieChaplain + entities: + - uid: 8378 + components: + - pos: 24.56557,54.496185 + parent: 1 + type: Transform +- proto: ClothingOuterRobesCult + entities: + - uid: 9861 + components: + - pos: -37.519897,-17.403341 + parent: 1 + type: Transform +- proto: ClothingOuterVestWebMerc + entities: + - uid: 7772 + components: + - pos: -24.647196,-32.421364 + parent: 1 + type: Transform + - uid: 17750 + components: + - pos: 20.426132,60.536144 + parent: 1 + type: Transform +- proto: ClothingShoesBootsCombatFilled + entities: + - uid: 17751 + components: + - pos: 34.459908,-27.393188 + parent: 1 + type: Transform +- proto: ClothingShoesBootsJack + entities: + - uid: 18358 + components: + - pos: 37.606995,50.742104 + parent: 1 + type: Transform +- proto: ClothingShoesBootsMag + entities: + - uid: 4367 + components: + - pos: 25.694765,31.717653 + parent: 1 + type: Transform + - uid: 8706 + components: + - pos: -13.482979,-24.072556 + parent: 1 + type: Transform +- proto: ClothingShoesBootsMerc + entities: + - uid: 6920 + components: + - pos: -42.277744,-12.73193 + parent: 1 + type: Transform +- proto: ClothingShoesBootsPerformer + entities: + - uid: 6625 + components: + - pos: -16.470627,-5.3569727 + parent: 1 + type: Transform +- proto: ClothingShoesBootsWork + entities: + - uid: 9971 + components: + - desc: Legendary boots worn by the king of the tiders + name: boots of the grey king + type: MetaData + - pos: -22.53896,-24.152784 + parent: 1 + type: Transform + - type: NoSlip +- proto: ClothingShoesCult + entities: + - uid: 9862 + components: + - pos: -37.94586,-17.687162 + parent: 1 + type: Transform +- proto: ClothingShoesJester + entities: + - uid: 18416 + components: + - pos: -28.389633,52.43161 + parent: 1 + type: Transform +- proto: ClothingShoeSlippersDuck + entities: + - uid: 18109 + components: + - pos: 35.418114,-20.345602 + parent: 1 + type: Transform +- proto: ClothingUnderSocksCoder + entities: + - uid: 18359 + components: + - pos: 18.34029,46.950535 + parent: 1 + type: Transform +- proto: ClothingUniformJumpskirtDetective + entities: + - uid: 14060 + components: + - pos: 21.290764,58.71069 + parent: 1 + type: Transform +- proto: ClothingUniformJumpskirtDetectiveGrey + entities: + - uid: 18347 + components: + - pos: -33.43428,52.538555 + parent: 1 + type: Transform +- proto: ClothingUniformJumpskirtJanimaid + entities: + - uid: 17761 + components: + - pos: -18.64241,-22.485422 + parent: 1 + type: Transform +- proto: ClothingUniformJumpskirtPerformer + entities: + - uid: 6624 + components: + - pos: -16.07306,-5.413738 + parent: 1 + type: Transform +- proto: ClothingUniformJumpsuitDetective + entities: + - uid: 8149 + components: + - pos: 21.540764,58.502357 + parent: 1 + type: Transform +- proto: ClothingUniformJumpsuitDetectiveGrey + entities: + - uid: 18346 + components: + - pos: -33.618862,52.69466 + parent: 1 + type: Transform +- proto: ClothingUniformJumpsuitEngineeringHazard + entities: + - uid: 9190 + components: + - pos: 9.531997,-15.469109 + parent: 1 + type: Transform +- proto: ClothingUniformJumpsuitHoSBlue + entities: + - uid: 6827 + components: + - pos: -13.412797,60.456165 + parent: 1 + type: Transform +- proto: ClothingUniformJumpsuitJesterAlt + entities: + - uid: 18415 + components: + - pos: -28.181301,52.660778 + parent: 1 + type: Transform +- proto: ClothingUniformJumpsuitMercenary + entities: + - uid: 7807 + components: + - pos: -0.5118942,2.4542174 + parent: 8756 + type: Transform +- proto: ClothingUniformJumpsuitSecBlue + entities: + - uid: 8150 + components: + - pos: 21.707432,58.689857 + parent: 1 + type: Transform +- proto: ClownRecorder + entities: + - uid: 8191 + components: + - pos: -15.323214,-0.60332537 + parent: 1 + type: Transform +- proto: ComfyChair + entities: + - uid: 427 + components: + - pos: -50.5,16.5 + parent: 1 + type: Transform + - uid: 1292 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,35.5 + parent: 1 + type: Transform + - uid: 1295 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,35.5 + parent: 1 + type: Transform + - uid: 1297 + components: + - pos: -48.5,16.5 + parent: 1 + type: Transform + - uid: 1992 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,5.5 + parent: 1 + type: Transform + - uid: 8093 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,73.5 + parent: 1 + type: Transform + - uid: 8094 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,72.5 + parent: 1 + type: Transform + - uid: 8095 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,71.5 + parent: 1 + type: Transform + - uid: 8096 + components: + - rot: 3.141592653589793 rad + pos: 4.5,70.5 + parent: 1 + type: Transform + - uid: 8097 + components: + - rot: 3.141592653589793 rad + pos: 5.5,70.5 + parent: 1 + type: Transform + - uid: 8099 + components: + - rot: 3.141592653589793 rad + pos: 6.5,70.5 + parent: 1 + type: Transform + - uid: 8100 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,73.5 + parent: 1 + type: Transform + - uid: 8101 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,72.5 + parent: 1 + type: Transform + - uid: 8102 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,71.5 + parent: 1 + type: Transform + - uid: 8958 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,10.5 + parent: 1 + type: Transform + - uid: 9913 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-37.5 + parent: 1 + type: Transform +- proto: CommsComputerCircuitboard + entities: + - uid: 4210 + components: + - pos: 17.606056,-21.376692 + parent: 1 + type: Transform +- proto: ComputerAlert + entities: + - uid: 4191 + components: + - pos: 6.5,-11.5 + parent: 1 + type: Transform + - uid: 4270 + components: + - pos: -6.5,82.5 + parent: 1 + type: Transform + - uid: 4273 + components: + - pos: 5.5,82.5 + parent: 1 + type: Transform + - uid: 7115 + components: + - pos: -7.5,-11.5 + parent: 1 + type: Transform +- proto: ComputerAnalysisConsole + entities: + - uid: 3536 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,29.5 + parent: 1 + type: Transform +- proto: computerBodyScanner + entities: + - uid: 1620 + components: + - pos: 4.5,82.5 + parent: 1 + type: Transform + - uid: 1779 + components: + - rot: 3.141592653589793 rad + pos: 19.5,26.5 + parent: 1 + type: Transform + - uid: 4336 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,32.5 + parent: 1 + type: Transform +- proto: ComputerBroken + entities: + - uid: 7665 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-24.5 + parent: 1 + type: Transform + - uid: 9988 + components: + - pos: -28.5,-20.5 + parent: 1 + type: Transform + - uid: 14033 + components: + - pos: 25.5,58.5 + parent: 1 + type: Transform +- proto: ComputerCargoOrders + entities: + - uid: 323 + components: + - pos: 1.5,83.5 + parent: 1 + type: Transform + - uid: 4152 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,7.5 + parent: 1 + type: Transform +- proto: ComputerCargoShuttle + entities: + - uid: 320 + components: + - pos: 0.5,83.5 + parent: 1 + type: Transform + - uid: 4153 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-1.5 + parent: 1 + type: Transform +- proto: ComputerComms + entities: + - uid: 4262 + components: + - pos: -2.5,80.5 + parent: 1 + type: Transform + - uid: 6802 + components: + - pos: -7.5,74.5 + parent: 1 + type: Transform +- proto: ComputerCrewMonitoring + entities: + - uid: 3632 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,20.5 + parent: 1 + type: Transform + - uid: 4271 + components: + - pos: 3.5,82.5 + parent: 1 + type: Transform +- proto: ComputerCriminalRecords + entities: + - uid: 258 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-3.5 + parent: 1 + type: Transform + - uid: 339 + components: + - pos: 1.5,80.5 + parent: 1 + type: Transform + - uid: 7890 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,42.5 + parent: 1 + type: Transform + - uid: 8136 + components: + - pos: -5.5,55.5 + parent: 1 + type: Transform + - uid: 9415 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-12.5 + parent: 1 + type: Transform +- proto: ComputerFrame + entities: + - uid: 7442 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-21.5 + parent: 1 + type: Transform + - uid: 8889 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 8756 + type: Transform +- proto: ComputerId + entities: + - uid: 2900 + components: + - rot: 3.141592653589793 rad + pos: 25.5,2.5 + parent: 1 + type: Transform + - uid: 4256 + components: + - pos: -3.5,80.5 + parent: 1 + type: Transform +- proto: ComputerMedicalRecords + entities: + - uid: 571 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,34.5 + parent: 1 + type: Transform + - uid: 8545 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,20.5 + parent: 1 + type: Transform +- proto: ComputerPowerMonitoring + entities: + - uid: 4192 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-13.5 + parent: 1 + type: Transform + - uid: 4269 + components: + - pos: -4.5,82.5 + parent: 1 + type: Transform + - uid: 10870 + components: + - pos: 27.5,-18.5 + parent: 1 + type: Transform + - uid: 11069 + components: + - pos: 18.5,4.5 + parent: 1 + type: Transform + - uid: 13161 + components: + - pos: 15.5,25.5 + parent: 1 + type: Transform + - uid: 13180 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-18.5 + parent: 1 + type: Transform + - uid: 13181 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-1.5 + parent: 1 + type: Transform + - uid: 13853 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,53.5 + parent: 1 + type: Transform +- proto: ComputerRadar + entities: + - uid: 4257 + components: + - pos: -1.5,80.5 + parent: 1 + type: Transform + - uid: 7798 + components: + - pos: -39.5,18.5 + parent: 1 + type: Transform + - uid: 7934 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,21.5 + parent: 1 + type: Transform +- proto: ComputerResearchAndDevelopment + entities: + - uid: 325 + components: + - pos: -1.5,83.5 + parent: 1 + type: Transform + - uid: 3556 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,21.5 + parent: 1 + type: Transform + - uid: 18345 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,21.5 + parent: 1 + type: Transform +- proto: ComputerSalvageExpedition + entities: + - uid: 1781 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,25.5 + parent: 1 + type: Transform +- proto: ComputerShuttle + entities: + - uid: 8887 + components: + - pos: -0.5,3.5 + parent: 8756 + type: Transform +- proto: ComputerShuttleCargo + entities: + - uid: 4154 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-0.5 + parent: 1 + type: Transform +- proto: ComputerShuttleSalvage + entities: + - uid: 4370 + components: + - pos: -41.5,26.5 + parent: 1 + type: Transform +- proto: ComputerSolarControl + entities: + - uid: 4194 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-15.5 + parent: 1 + type: Transform + - uid: 4268 + components: + - pos: -5.5,82.5 + parent: 1 + type: Transform + - uid: 7152 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-40.5 + parent: 1 + type: Transform + - uid: 8010 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,54.5 + parent: 1 + type: Transform + - uid: 14046 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,54.5 + parent: 1 + type: Transform +- proto: ComputerStationRecords + entities: + - uid: 324 + components: + - pos: -2.5,83.5 + parent: 1 + type: Transform + - uid: 2902 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,5.5 + parent: 1 + type: Transform + - uid: 7393 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,49.5 + parent: 1 + type: Transform + - uid: 8888 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 8756 + type: Transform + - uid: 18502 + components: + - pos: -6.5,57.5 + parent: 1 + type: Transform +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 4259 + components: + - pos: 2.5,80.5 + parent: 1 + type: Transform + - uid: 6661 + components: + - pos: -34.5,-0.5 + parent: 1 + type: Transform + - uid: 7244 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-17.5 + parent: 1 + type: Transform + - uid: 7391 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,48.5 + parent: 1 + type: Transform + - uid: 7900 + components: + - pos: 43.5,44.5 + parent: 1 + type: Transform + - uid: 8135 + components: + - rot: 3.141592653589793 rad + pos: -5.5,52.5 + parent: 1 + type: Transform + - uid: 8181 + components: + - pos: -14.5,56.5 + parent: 1 + type: Transform + - uid: 9414 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-11.5 + parent: 1 + type: Transform +- proto: ComputerSurveillanceWirelessCameraMonitor + entities: + - uid: 4260 + components: + - pos: 0.5,80.5 + parent: 1 + type: Transform +- proto: ComputerTechnologyDiskTerminal + entities: + - uid: 2633 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,30.5 + parent: 1 + type: Transform +- proto: ContrabassInstrument + entities: + - uid: 1664 + components: + - pos: -5.5,-4.5 + parent: 1 + type: Transform +- proto: ConveyorBelt + entities: + - uid: 1767 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,24.5 + parent: 1 + type: Transform + - links: + - 7918 + - 7808 + type: DeviceLinkSink + - uid: 3830 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-32.5 + parent: 1 + type: Transform + - links: + - 4007 + type: DeviceLinkSink + - uid: 3994 + components: + - pos: 19.5,-38.5 + parent: 1 + type: Transform + - links: + - 4007 + type: DeviceLinkSink + - uid: 3995 + components: + - pos: 19.5,-39.5 + parent: 1 + type: Transform + - links: + - 4007 + type: DeviceLinkSink + - uid: 3996 + components: + - pos: 19.5,-37.5 + parent: 1 + type: Transform + - links: + - 4007 + type: DeviceLinkSink + - uid: 3997 + components: + - pos: 19.5,-36.5 + parent: 1 + type: Transform + - links: + - 4007 + type: DeviceLinkSink + - uid: 3998 + components: + - pos: 19.5,-35.5 + parent: 1 + type: Transform + - links: + - 4007 + type: DeviceLinkSink + - uid: 3999 + components: + - pos: 19.5,-34.5 + parent: 1 + type: Transform + - links: + - 4007 + type: DeviceLinkSink + - uid: 4000 + components: + - pos: 19.5,-33.5 + parent: 1 + type: Transform + - links: + - 4007 + type: DeviceLinkSink + - uid: 4001 + components: + - pos: 19.5,-32.5 + parent: 1 + type: Transform + - links: + - 4007 + type: DeviceLinkSink + - uid: 4002 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-32.5 + parent: 1 + type: Transform + - links: + - 4007 + type: DeviceLinkSink + - uid: 4110 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,22.5 + parent: 1 + type: Transform + - links: + - 7918 + - 7808 + type: DeviceLinkSink + - uid: 4115 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,22.5 + parent: 1 + type: Transform + - links: + - 7918 + - 7808 + type: DeviceLinkSink + - uid: 4130 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,22.5 + parent: 1 + type: Transform + - links: + - 7918 + - 7808 + type: DeviceLinkSink + - uid: 4134 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,24.5 + parent: 1 + type: Transform + - links: + - 7918 + - 7808 + type: DeviceLinkSink + - uid: 4137 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,1.5 + parent: 1 + type: Transform + - links: + - 9362 + type: DeviceLinkSink + - uid: 4138 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,1.5 + parent: 1 + type: Transform + - links: + - 9362 + type: DeviceLinkSink + - uid: 4139 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,1.5 + parent: 1 + type: Transform + - links: + - 9362 + type: DeviceLinkSink + - uid: 4140 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,1.5 + parent: 1 + type: Transform + - links: + - 9362 + type: DeviceLinkSink + - uid: 4141 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,5.5 + parent: 1 + type: Transform + - links: + - 9362 + type: DeviceLinkSink + - uid: 4142 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,5.5 + parent: 1 + type: Transform + - links: + - 9362 + type: DeviceLinkSink + - uid: 4143 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,5.5 + parent: 1 + type: Transform + - links: + - 9362 + type: DeviceLinkSink + - uid: 4144 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,5.5 + parent: 1 + type: Transform + - links: + - 9362 + type: DeviceLinkSink + - uid: 4145 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,5.5 + parent: 1 + type: Transform + - links: + - 9362 + type: DeviceLinkSink + - uid: 4146 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,5.5 + parent: 1 + type: Transform + - links: + - 9364 + type: DeviceLinkSink + - uid: 4147 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,5.5 + parent: 1 + type: Transform + - links: + - 9364 + type: DeviceLinkSink + - uid: 4148 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,1.5 + parent: 1 + type: Transform + - links: + - 9362 + type: DeviceLinkSink + - uid: 7818 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,22.5 + parent: 1 + type: Transform + - links: + - 7918 + - 7808 + type: DeviceLinkSink + - uid: 7820 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,24.5 + parent: 1 + type: Transform + - links: + - 7918 + - 7808 + type: DeviceLinkSink + - uid: 7821 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,24.5 + parent: 1 + type: Transform + - links: + - 7918 + - 7808 + type: DeviceLinkSink +- proto: CornSeeds + entities: + - uid: 8277 + components: + - pos: -29.621134,44.53177 + parent: 1 + type: Transform +- proto: CowToolboxFilled + entities: + - uid: 13384 + components: + - pos: -17.809574,28.530706 + parent: 1 + type: Transform +- proto: CrateArtifactContainer + entities: + - uid: 3550 + components: + - pos: -9.5,34.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateEmptySpawner + entities: + - uid: 5555 + components: + - pos: -20.5,9.5 + parent: 1 + type: Transform + - uid: 9314 + components: + - pos: -38.5,-5.5 + parent: 1 + type: Transform + - uid: 9315 + components: + - pos: -38.5,-6.5 + parent: 1 + type: Transform + - uid: 9316 + components: + - pos: -39.5,-7.5 + parent: 1 + type: Transform + - uid: 9317 + components: + - pos: -39.5,-5.5 + parent: 1 + type: Transform + - uid: 9318 + components: + - pos: -43.5,-4.5 + parent: 1 + type: Transform + - uid: 9319 + components: + - pos: -42.5,-5.5 + parent: 1 + type: Transform + - uid: 9320 + components: + - pos: -43.5,-6.5 + parent: 1 + type: Transform + - uid: 9390 + components: + - pos: -40.5,0.5 + parent: 1 + type: Transform + - uid: 9448 + components: + - pos: -45.5,-6.5 + parent: 1 + type: Transform + - uid: 9449 + components: + - pos: -46.5,-6.5 + parent: 1 + type: Transform +- proto: CrateEngineeringAMEJar + entities: + - uid: 9025 + components: + - pos: 8.5,-36.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateEngineeringAMEShielding + entities: + - uid: 9024 + components: + - pos: 4.5,-36.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 9026 + components: + - pos: 5.5,-36.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateEngineeringCableBulk + entities: + - uid: 4185 + components: + - pos: 13.5,-18.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 4592 + components: + - pos: 4.5,-20.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13183 + components: + - pos: -23.5,-3.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateEngineeringCableHV + entities: + - uid: 7153 + components: + - pos: 13.5,-39.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13441 + components: + - pos: -37.5,55.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13442 + components: + - pos: 38.5,55.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateEngineeringElectricalSupplies + entities: + - uid: 4593 + components: + - pos: 4.5,-19.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateEngineeringGear + entities: + - uid: 13439 + components: + - pos: -25.5,52.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateFilledSpawner + entities: + - uid: 5556 + components: + - pos: -20.5,10.5 + parent: 1 + type: Transform + - uid: 9311 + components: + - pos: -39.5,-6.5 + parent: 1 + type: Transform + - uid: 9312 + components: + - pos: -42.5,-4.5 + parent: 1 + type: Transform + - uid: 9313 + components: + - pos: -40.5,6.5 + parent: 1 + type: Transform +- proto: CrateFreezer + entities: + - uid: 4062 + components: + - pos: 12.5,-2.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateFunArtSupplies + entities: + - uid: 9308 + components: + - pos: -38.5,-7.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateMedicalSurgery + entities: + - uid: 1663 + components: + - pos: 18.5,26.5 + parent: 1 + type: Transform +- proto: CrateNPCCow + entities: + - uid: 3804 + components: + - pos: 6.5,-5.5 + parent: 1 + type: Transform + - air: + volume: 800 + immutable: False + temperature: 293.14987 + moles: + - 13.772371 + - 51.81035 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateServiceBooks + entities: + - uid: 9309 + components: + - pos: -43.5,-5.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateServiceBureaucracy + entities: + - uid: 9310 + components: + - pos: -38.5,-4.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 9378 + components: + - pos: 20.5,-5.5 + parent: 1 + type: Transform +- proto: CrayonBox + entities: + - uid: 8283 + components: + - pos: -28.997604,44.572357 + parent: 1 + type: Transform + - uid: 8472 + components: + - pos: 20.349487,40.573277 + parent: 1 + type: Transform +- proto: CrayonMime + entities: + - uid: 6618 + components: + - pos: -15.95947,5.6185107 + parent: 1 + type: Transform +- proto: CrayonPurple + entities: + - uid: 8473 + components: + - pos: 20.718657,40.559086 + parent: 1 + type: Transform +- proto: Crematorium + entities: + - uid: 4403 + components: + - pos: 32.5,56.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrewMonitoringServer + entities: + - uid: 8488 + components: + - pos: 16.5,31.5 + parent: 1 + type: Transform +- proto: Crowbar + entities: + - uid: 9970 + components: + - pos: -20.366545,-24.481062 + parent: 1 + type: Transform + - uid: 18414 + components: + - pos: -5.550656,32.42306 + parent: 1 + type: Transform +- proto: CryoPod + entities: + - uid: 6368 + components: + - pos: 12.5,33.5 + parent: 1 + type: Transform +- proto: CryostasisBeaker + entities: + - uid: 8530 + components: + - pos: 5.672117,25.73491 + parent: 1 + type: Transform + - uid: 8531 + components: + - pos: 5.501731,25.564615 + parent: 1 + type: Transform +- proto: CryoxadoneBeakerSmall + entities: + - uid: 9612 + components: + - pos: 9.349022,30.644068 + parent: 1 + type: Transform + - uid: 9613 + components: + - pos: 9.458397,30.800318 + parent: 1 + type: Transform +- proto: CultAltarSpawner + entities: + - uid: 9860 + components: + - pos: -37.5,-16.5 + parent: 1 + type: Transform +- proto: d20Dice + entities: + - uid: 9922 + components: + - pos: -19.295444,-36.252487 + parent: 1 + type: Transform +- proto: d4Dice + entities: + - uid: 9923 + components: + - pos: -19.636215,-36.919468 + parent: 1 + type: Transform +- proto: d6Dice + entities: + - uid: 9957 + components: + - pos: -38.76962,-12.060882 + parent: 1 + type: Transform + - uid: 9958 + components: + - pos: -38.75542,-12.231175 + parent: 1 + type: Transform + - uid: 14027 + components: + - rot: -1.5707963267948966 rad + pos: 27.553741,58.430557 + parent: 1 + type: Transform + - uid: 14028 + components: + - rot: -1.5707963267948966 rad + pos: 27.638933,58.82791 + parent: 1 + type: Transform +- proto: DawInstrumentMachineCircuitboard + entities: + - uid: 4211 + components: + - pos: 17.549261,-25.435349 + parent: 1 + type: Transform + - uid: 6621 + components: + - pos: -15.5903015,-5.413738 + parent: 1 + type: Transform +- proto: DefibrillatorCabinetFilled + entities: + - uid: 1778 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,20.5 + parent: 1 + type: Transform + - uid: 4111 + components: + - pos: -25.5,49.5 + parent: 1 + type: Transform + - uid: 6804 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,40.5 + parent: 1 + type: Transform + - uid: 6909 + components: + - pos: 40.5,39.5 + parent: 1 + type: Transform + - uid: 6925 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-30.5 + parent: 1 + type: Transform + - uid: 6926 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,31.5 + parent: 1 + type: Transform + - uid: 7430 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,26.5 + parent: 1 + type: Transform + - uid: 7431 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,9.5 + parent: 1 + type: Transform + - uid: 7636 + components: + - pos: -12.5,26.5 + parent: 1 + type: Transform + - uid: 7637 + components: + - pos: 3.5,83.5 + parent: 1 + type: Transform + - uid: 7638 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,28.5 + parent: 1 + type: Transform + - uid: 7641 + components: + - pos: 9.5,21.5 + parent: 1 + type: Transform + - uid: 7643 + components: + - pos: -10.5,47.5 + parent: 1 + type: Transform + - uid: 7722 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,3.5 + parent: 1 + type: Transform + - uid: 7729 + components: + - pos: 1.5,69.5 + parent: 1 + type: Transform + - uid: 7768 + components: + - rot: -1.5707963267948966 rad + pos: 50.5,-8.5 + parent: 1 + type: Transform + - uid: 7794 + components: + - pos: 28.5,16.5 + parent: 1 + type: Transform + - uid: 7795 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,7.5 + parent: 1 + type: Transform + - uid: 7796 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-14.5 + parent: 1 + type: Transform + - uid: 7797 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,0.5 + parent: 1 + type: Transform +- proto: DeployableBarrier + entities: + - uid: 4383 + components: + - anchored: False + pos: -19.5,44.5 + parent: 1 + type: Transform + - uid: 4384 + components: + - anchored: False + pos: -19.5,45.5 + parent: 1 + type: Transform + - uid: 4386 + components: + - anchored: False + pos: -10.5,60.5 + parent: 1 + type: Transform +- proto: DeskBell + entities: + - uid: 4505 + components: + - pos: -5.772716,20.447916 + parent: 1 + type: Transform + - uid: 4565 + components: + - pos: 4.7110076,20.385416 + parent: 1 + type: Transform + - uid: 4566 + components: + - pos: -6.6414404,-12.133052 + parent: 1 + type: Transform + - uid: 4567 + components: + - pos: 5.5849104,-12.195552 + parent: 1 + type: Transform + - uid: 6150 + components: + - pos: 12.86205,19.48184 + parent: 1 + type: Transform + - uid: 6152 + components: + - pos: 4.2470655,-2.5974627 + parent: 1 + type: Transform + - uid: 6153 + components: + - pos: 11.743292,-5.633137 + parent: 1 + type: Transform + - uid: 6154 + components: + - pos: -6.2473664,5.4515653 + parent: 1 + type: Transform + - uid: 6193 + components: + - pos: -4.4996243,53.44499 + parent: 1 + type: Transform + - uid: 7655 + components: + - pos: 26.62281,3.3925822 + parent: 1 + type: Transform +- proto: DiceBag + entities: + - uid: 7030 + components: + - pos: -25.707123,3.7152946 + parent: 1 + type: Transform + - uid: 9296 + components: + - pos: 20.707039,40.88435 + parent: 1 + type: Transform + - uid: 9921 + components: + - pos: -19.423235,-37.373585 + parent: 1 + type: Transform +- proto: DiseaseDiagnoser + entities: + - uid: 4080 + components: + - pos: 6.5,34.5 + parent: 1 + type: Transform +- proto: DiseaseSwab + entities: + - uid: 7122 + components: + - pos: -13.290618,28.210794 + parent: 1 + type: Transform + - uid: 7123 + components: + - pos: -13.432607,27.955353 + parent: 1 + type: Transform +- proto: DisposalBend + entities: + - uid: 1784 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,24.5 + parent: 1 + type: Transform + - uid: 16494 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,70.5 + parent: 1 + type: Transform + - uid: 16500 + components: + - pos: 5.5,76.5 + parent: 1 + type: Transform + - uid: 16558 + components: + - pos: -8.5,53.5 + parent: 1 + type: Transform + - uid: 16559 + components: + - rot: 3.141592653589793 rad + pos: -8.5,50.5 + parent: 1 + type: Transform + - uid: 16603 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,37.5 + parent: 1 + type: Transform + - uid: 16604 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,38.5 + parent: 1 + type: Transform + - uid: 16612 + components: + - pos: -15.5,31.5 + parent: 1 + type: Transform + - uid: 16613 + components: + - rot: 3.141592653589793 rad + pos: -18.5,31.5 + parent: 1 + type: Transform + - uid: 16642 + components: + - rot: 3.141592653589793 rad + pos: -43.5,37.5 + parent: 1 + type: Transform + - uid: 16643 + components: + - pos: -43.5,42.5 + parent: 1 + type: Transform + - uid: 16644 + components: + - rot: 3.141592653589793 rad + pos: -45.5,42.5 + parent: 1 + type: Transform + - uid: 16657 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,23.5 + parent: 1 + type: Transform + - uid: 16662 + components: + - rot: 3.141592653589793 rad + pos: -11.5,18.5 + parent: 1 + type: Transform + - uid: 16744 + components: + - pos: 31.5,43.5 + parent: 1 + type: Transform + - uid: 16766 + components: + - rot: -1.5707963267948966 rad + pos: 48.5,37.5 + parent: 1 + type: Transform + - uid: 16788 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,17.5 + parent: 1 + type: Transform + - uid: 16800 + components: + - rot: 3.141592653589793 rad + pos: 7.5,28.5 + parent: 1 + type: Transform + - uid: 16808 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,28.5 + parent: 1 + type: Transform + - uid: 16827 + components: + - pos: 30.5,26.5 + parent: 1 + type: Transform + - uid: 16836 + components: + - rot: 3.141592653589793 rad + pos: 27.5,21.5 + parent: 1 + type: Transform + - uid: 16852 + components: + - pos: 45.5,13.5 + parent: 1 + type: Transform + - uid: 16867 + components: + - rot: 3.141592653589793 rad + pos: 30.5,13.5 + parent: 1 + type: Transform + - uid: 16898 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,15.5 + parent: 1 + type: Transform + - uid: 16899 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,14.5 + parent: 1 + type: Transform + - uid: 16933 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,14.5 + parent: 1 + type: Transform + - uid: 16973 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,22.5 + parent: 1 + type: Transform + - uid: 16974 + components: + - rot: 3.141592653589793 rad + pos: 0.5,13.5 + parent: 1 + type: Transform + - uid: 16975 + components: + - pos: 1.5,13.5 + parent: 1 + type: Transform + - uid: 17020 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,5.5 + parent: 1 + type: Transform + - uid: 17033 + components: + - pos: 7.5,-4.5 + parent: 1 + type: Transform + - uid: 17051 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,2.5 + parent: 1 + type: Transform + - uid: 17052 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,2.5 + parent: 1 + type: Transform + - uid: 17053 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,4.5 + parent: 1 + type: Transform + - uid: 17060 + components: + - pos: -31.5,4.5 + parent: 1 + type: Transform + - uid: 17098 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-14.5 + parent: 1 + type: Transform + - uid: 17145 + components: + - pos: 19.5,-3.5 + parent: 1 + type: Transform + - uid: 17175 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-8.5 + parent: 1 + type: Transform + - uid: 17194 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,7.5 + parent: 1 + type: Transform + - uid: 17212 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-24.5 + parent: 1 + type: Transform + - uid: 17213 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-24.5 + parent: 1 + type: Transform + - uid: 17217 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-27.5 + parent: 1 + type: Transform + - uid: 17218 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-27.5 + parent: 1 + type: Transform + - uid: 17220 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-29.5 + parent: 1 + type: Transform + - uid: 17226 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-29.5 + parent: 1 + type: Transform + - uid: 17231 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-34.5 + parent: 1 + type: Transform + - uid: 17233 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-34.5 + parent: 1 + type: Transform +- proto: DisposalJunction + entities: + - uid: 8445 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-8.5 + parent: 1 + type: Transform + - uid: 16520 + components: + - pos: 0.5,68.5 + parent: 1 + type: Transform + - uid: 16534 + components: + - pos: 0.5,57.5 + parent: 1 + type: Transform + - uid: 16570 + components: + - pos: 0.5,50.5 + parent: 1 + type: Transform + - uid: 16583 + components: + - pos: 0.5,38.5 + parent: 1 + type: Transform + - uid: 16609 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,38.5 + parent: 1 + type: Transform + - uid: 16683 + components: + - pos: 0.5,27.5 + parent: 1 + type: Transform + - uid: 16725 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,37.5 + parent: 1 + type: Transform + - uid: 16738 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,37.5 + parent: 1 + type: Transform + - uid: 16772 + components: + - pos: 0.5,18.5 + parent: 1 + type: Transform + - uid: 16792 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,17.5 + parent: 1 + type: Transform + - uid: 16821 + components: + - pos: 0.5,15.5 + parent: 1 + type: Transform + - uid: 16833 + components: + - pos: 30.5,21.5 + parent: 1 + type: Transform + - uid: 17025 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 17104 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-8.5 + parent: 1 + type: Transform + - uid: 17132 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 1 + type: Transform + - uid: 17178 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-8.5 + parent: 1 + type: Transform +- proto: DisposalJunctionFlipped + entities: + - uid: 16543 + components: + - pos: 0.5,52.5 + parent: 1 + type: Transform + - uid: 16584 + components: + - pos: 0.5,37.5 + parent: 1 + type: Transform + - uid: 16622 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,37.5 + parent: 1 + type: Transform + - uid: 16698 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,37.5 + parent: 1 + type: Transform + - uid: 16773 + components: + - pos: 0.5,17.5 + parent: 1 + type: Transform + - uid: 16822 + components: + - pos: 0.5,14.5 + parent: 1 + type: Transform + - uid: 16922 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,14.5 + parent: 1 + type: Transform + - uid: 16930 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,14.5 + parent: 1 + type: Transform + - uid: 16946 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,14.5 + parent: 1 + type: Transform + - uid: 16971 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,14.5 + parent: 1 + type: Transform + - uid: 16993 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 1 + type: Transform + - uid: 17023 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 17024 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 17027 + components: + - pos: 1.5,-4.5 + parent: 1 + type: Transform + - uid: 17075 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-8.5 + parent: 1 + type: Transform + - uid: 17135 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-8.5 + parent: 1 + type: Transform + - uid: 17150 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-8.5 + parent: 1 + type: Transform +- proto: DisposalPipe + entities: + - uid: 2603 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,31.5 + parent: 1 + type: Transform + - uid: 16492 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,70.5 + parent: 1 + type: Transform + - uid: 16493 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,70.5 + parent: 1 + type: Transform + - uid: 16495 + components: + - rot: 3.141592653589793 rad + pos: 5.5,71.5 + parent: 1 + type: Transform + - uid: 16496 + components: + - rot: 3.141592653589793 rad + pos: 5.5,72.5 + parent: 1 + type: Transform + - uid: 16497 + components: + - rot: 3.141592653589793 rad + pos: 5.5,73.5 + parent: 1 + type: Transform + - uid: 16498 + components: + - rot: 3.141592653589793 rad + pos: 5.5,74.5 + parent: 1 + type: Transform + - uid: 16499 + components: + - rot: 3.141592653589793 rad + pos: 5.5,75.5 + parent: 1 + type: Transform + - uid: 16501 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,76.5 + parent: 1 + type: Transform + - uid: 16502 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,76.5 + parent: 1 + type: Transform + - uid: 16503 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,76.5 + parent: 1 + type: Transform + - uid: 16504 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,76.5 + parent: 1 + type: Transform + - uid: 16506 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,76.5 + parent: 1 + type: Transform + - uid: 16507 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,76.5 + parent: 1 + type: Transform + - uid: 16508 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,76.5 + parent: 1 + type: Transform + - uid: 16509 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,76.5 + parent: 1 + type: Transform + - uid: 16510 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,76.5 + parent: 1 + type: Transform + - uid: 16511 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,76.5 + parent: 1 + type: Transform + - uid: 16512 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,76.5 + parent: 1 + type: Transform + - uid: 16513 + components: + - pos: 0.5,75.5 + parent: 1 + type: Transform + - uid: 16514 + components: + - pos: 0.5,74.5 + parent: 1 + type: Transform + - uid: 16515 + components: + - pos: 0.5,73.5 + parent: 1 + type: Transform + - uid: 16516 + components: + - pos: 0.5,72.5 + parent: 1 + type: Transform + - uid: 16517 + components: + - pos: 0.5,71.5 + parent: 1 + type: Transform + - uid: 16518 + components: + - pos: 0.5,70.5 + parent: 1 + type: Transform + - uid: 16519 + components: + - pos: 0.5,69.5 + parent: 1 + type: Transform + - uid: 16521 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,68.5 + parent: 1 + type: Transform + - uid: 16522 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,68.5 + parent: 1 + type: Transform + - uid: 16524 + components: + - pos: 0.5,67.5 + parent: 1 + type: Transform + - uid: 16525 + components: + - pos: 0.5,66.5 + parent: 1 + type: Transform + - uid: 16526 + components: + - pos: 0.5,65.5 + parent: 1 + type: Transform + - uid: 16527 + components: + - pos: 0.5,64.5 + parent: 1 + type: Transform + - uid: 16528 + components: + - pos: 0.5,63.5 + parent: 1 + type: Transform + - uid: 16529 + components: + - pos: 0.5,62.5 + parent: 1 + type: Transform + - uid: 16530 + components: + - pos: 0.5,61.5 + parent: 1 + type: Transform + - uid: 16531 + components: + - pos: 0.5,60.5 + parent: 1 + type: Transform + - uid: 16532 + components: + - pos: 0.5,59.5 + parent: 1 + type: Transform + - uid: 16533 + components: + - pos: 0.5,58.5 + parent: 1 + type: Transform + - uid: 16537 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,57.5 + parent: 1 + type: Transform + - uid: 16538 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,57.5 + parent: 1 + type: Transform + - uid: 16539 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,57.5 + parent: 1 + type: Transform + - uid: 16540 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,52.5 + parent: 1 + type: Transform + - uid: 16541 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,52.5 + parent: 1 + type: Transform + - uid: 16542 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,52.5 + parent: 1 + type: Transform + - uid: 16544 + components: + - pos: 0.5,56.5 + parent: 1 + type: Transform + - uid: 16545 + components: + - pos: 0.5,55.5 + parent: 1 + type: Transform + - uid: 16546 + components: + - pos: 0.5,54.5 + parent: 1 + type: Transform + - uid: 16547 + components: + - pos: 0.5,53.5 + parent: 1 + type: Transform + - uid: 16550 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,53.5 + parent: 1 + type: Transform + - uid: 16551 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,53.5 + parent: 1 + type: Transform + - uid: 16552 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,53.5 + parent: 1 + type: Transform + - uid: 16553 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,53.5 + parent: 1 + type: Transform + - uid: 16554 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,53.5 + parent: 1 + type: Transform + - uid: 16555 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,53.5 + parent: 1 + type: Transform + - uid: 16556 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,53.5 + parent: 1 + type: Transform + - uid: 16557 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,53.5 + parent: 1 + type: Transform + - uid: 16560 + components: + - rot: 3.141592653589793 rad + pos: -8.5,52.5 + parent: 1 + type: Transform + - uid: 16561 + components: + - rot: 3.141592653589793 rad + pos: -8.5,51.5 + parent: 1 + type: Transform + - uid: 16562 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,50.5 + parent: 1 + type: Transform + - uid: 16563 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,50.5 + parent: 1 + type: Transform + - uid: 16564 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,50.5 + parent: 1 + type: Transform + - uid: 16565 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,50.5 + parent: 1 + type: Transform + - uid: 16566 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,50.5 + parent: 1 + type: Transform + - uid: 16567 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,50.5 + parent: 1 + type: Transform + - uid: 16568 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,50.5 + parent: 1 + type: Transform + - uid: 16569 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,50.5 + parent: 1 + type: Transform + - uid: 16571 + components: + - pos: 0.5,51.5 + parent: 1 + type: Transform + - uid: 16572 + components: + - pos: 0.5,49.5 + parent: 1 + type: Transform + - uid: 16573 + components: + - pos: 0.5,48.5 + parent: 1 + type: Transform + - uid: 16574 + components: + - pos: 0.5,47.5 + parent: 1 + type: Transform + - uid: 16575 + components: + - pos: 0.5,46.5 + parent: 1 + type: Transform + - uid: 16576 + components: + - pos: 0.5,45.5 + parent: 1 + type: Transform + - uid: 16577 + components: + - pos: 0.5,44.5 + parent: 1 + type: Transform + - uid: 16578 + components: + - pos: 0.5,43.5 + parent: 1 + type: Transform + - uid: 16579 + components: + - pos: 0.5,42.5 + parent: 1 + type: Transform + - uid: 16580 + components: + - pos: 0.5,41.5 + parent: 1 + type: Transform + - uid: 16581 + components: + - pos: 0.5,40.5 + parent: 1 + type: Transform + - uid: 16582 + components: + - pos: 0.5,39.5 + parent: 1 + type: Transform + - uid: 16585 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,38.5 + parent: 1 + type: Transform + - uid: 16586 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,38.5 + parent: 1 + type: Transform + - uid: 16587 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,38.5 + parent: 1 + type: Transform + - uid: 16588 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,38.5 + parent: 1 + type: Transform + - uid: 16589 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,38.5 + parent: 1 + type: Transform + - uid: 16590 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,38.5 + parent: 1 + type: Transform + - uid: 16591 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,38.5 + parent: 1 + type: Transform + - uid: 16592 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,38.5 + parent: 1 + type: Transform + - uid: 16593 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,38.5 + parent: 1 + type: Transform + - uid: 16594 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,38.5 + parent: 1 + type: Transform + - uid: 16595 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,38.5 + parent: 1 + type: Transform + - uid: 16596 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,38.5 + parent: 1 + type: Transform + - uid: 16597 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,38.5 + parent: 1 + type: Transform + - uid: 16598 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,38.5 + parent: 1 + type: Transform + - uid: 16599 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,38.5 + parent: 1 + type: Transform + - uid: 16600 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,38.5 + parent: 1 + type: Transform + - uid: 16601 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,38.5 + parent: 1 + type: Transform + - uid: 16602 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,38.5 + parent: 1 + type: Transform + - uid: 16605 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,38.5 + parent: 1 + type: Transform + - uid: 16606 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,38.5 + parent: 1 + type: Transform + - uid: 16607 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,38.5 + parent: 1 + type: Transform + - uid: 16608 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,38.5 + parent: 1 + type: Transform + - uid: 16615 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,31.5 + parent: 1 + type: Transform + - uid: 16616 + components: + - pos: -18.5,32.5 + parent: 1 + type: Transform + - uid: 16617 + components: + - pos: -18.5,33.5 + parent: 1 + type: Transform + - uid: 16618 + components: + - pos: -18.5,34.5 + parent: 1 + type: Transform + - uid: 16619 + components: + - pos: -18.5,35.5 + parent: 1 + type: Transform + - uid: 16620 + components: + - pos: -18.5,36.5 + parent: 1 + type: Transform + - uid: 16621 + components: + - pos: -18.5,37.5 + parent: 1 + type: Transform + - uid: 16624 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,37.5 + parent: 1 + type: Transform + - uid: 16625 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,37.5 + parent: 1 + type: Transform + - uid: 16626 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,37.5 + parent: 1 + type: Transform + - uid: 16627 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,37.5 + parent: 1 + type: Transform + - uid: 16628 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,37.5 + parent: 1 + type: Transform + - uid: 16629 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,37.5 + parent: 1 + type: Transform + - uid: 16630 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,37.5 + parent: 1 + type: Transform + - uid: 16631 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,37.5 + parent: 1 + type: Transform + - uid: 16632 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,37.5 + parent: 1 + type: Transform + - uid: 16633 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,37.5 + parent: 1 + type: Transform + - uid: 16634 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,37.5 + parent: 1 + type: Transform + - uid: 16635 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,37.5 + parent: 1 + type: Transform + - uid: 16636 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,37.5 + parent: 1 + type: Transform + - uid: 16637 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,37.5 + parent: 1 + type: Transform + - uid: 16638 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,37.5 + parent: 1 + type: Transform + - uid: 16639 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,37.5 + parent: 1 + type: Transform + - uid: 16640 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,37.5 + parent: 1 + type: Transform + - uid: 16641 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,37.5 + parent: 1 + type: Transform + - uid: 16645 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,42.5 + parent: 1 + type: Transform + - uid: 16646 + components: + - pos: -43.5,41.5 + parent: 1 + type: Transform + - uid: 16647 + components: + - pos: -43.5,40.5 + parent: 1 + type: Transform + - uid: 16648 + components: + - pos: -43.5,39.5 + parent: 1 + type: Transform + - uid: 16649 + components: + - pos: -43.5,38.5 + parent: 1 + type: Transform + - uid: 16650 + components: + - pos: -45.5,43.5 + parent: 1 + type: Transform + - uid: 16656 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,23.5 + parent: 1 + type: Transform + - uid: 16658 + components: + - pos: -11.5,22.5 + parent: 1 + type: Transform + - uid: 16659 + components: + - pos: -11.5,21.5 + parent: 1 + type: Transform + - uid: 16660 + components: + - pos: -11.5,20.5 + parent: 1 + type: Transform + - uid: 16661 + components: + - pos: -11.5,19.5 + parent: 1 + type: Transform + - uid: 16663 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,18.5 + parent: 1 + type: Transform + - uid: 16664 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,18.5 + parent: 1 + type: Transform + - uid: 16665 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,18.5 + parent: 1 + type: Transform + - uid: 16666 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,18.5 + parent: 1 + type: Transform + - uid: 16667 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,18.5 + parent: 1 + type: Transform + - uid: 16668 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,18.5 + parent: 1 + type: Transform + - uid: 16669 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,18.5 + parent: 1 + type: Transform + - uid: 16670 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,18.5 + parent: 1 + type: Transform + - uid: 16671 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,18.5 + parent: 1 + type: Transform + - uid: 16672 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,18.5 + parent: 1 + type: Transform + - uid: 16673 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,18.5 + parent: 1 + type: Transform + - uid: 16674 + components: + - pos: 0.5,36.5 + parent: 1 + type: Transform + - uid: 16675 + components: + - pos: 0.5,35.5 + parent: 1 + type: Transform + - uid: 16676 + components: + - pos: 0.5,34.5 + parent: 1 + type: Transform + - uid: 16677 + components: + - pos: 0.5,33.5 + parent: 1 + type: Transform + - uid: 16678 + components: + - pos: 0.5,32.5 + parent: 1 + type: Transform + - uid: 16679 + components: + - pos: 0.5,31.5 + parent: 1 + type: Transform + - uid: 16680 + components: + - pos: 0.5,30.5 + parent: 1 + type: Transform + - uid: 16681 + components: + - pos: 0.5,29.5 + parent: 1 + type: Transform + - uid: 16682 + components: + - pos: 0.5,28.5 + parent: 1 + type: Transform + - uid: 16684 + components: + - pos: 0.5,26.5 + parent: 1 + type: Transform + - uid: 16685 + components: + - pos: 0.5,25.5 + parent: 1 + type: Transform + - uid: 16686 + components: + - pos: 0.5,24.5 + parent: 1 + type: Transform + - uid: 16687 + components: + - pos: 0.5,23.5 + parent: 1 + type: Transform + - uid: 16688 + components: + - pos: 0.5,22.5 + parent: 1 + type: Transform + - uid: 16689 + components: + - pos: 0.5,21.5 + parent: 1 + type: Transform + - uid: 16690 + components: + - pos: 0.5,20.5 + parent: 1 + type: Transform + - uid: 16691 + components: + - pos: 0.5,19.5 + parent: 1 + type: Transform + - uid: 16696 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,27.5 + parent: 1 + type: Transform + - uid: 16699 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,37.5 + parent: 1 + type: Transform + - uid: 16700 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,37.5 + parent: 1 + type: Transform + - uid: 16701 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,37.5 + parent: 1 + type: Transform + - uid: 16703 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,37.5 + parent: 1 + type: Transform + - uid: 16704 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,37.5 + parent: 1 + type: Transform + - uid: 16705 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,37.5 + parent: 1 + type: Transform + - uid: 16706 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,37.5 + parent: 1 + type: Transform + - uid: 16707 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,37.5 + parent: 1 + type: Transform + - uid: 16708 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,37.5 + parent: 1 + type: Transform + - uid: 16709 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,37.5 + parent: 1 + type: Transform + - uid: 16710 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,37.5 + parent: 1 + type: Transform + - uid: 16711 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,37.5 + parent: 1 + type: Transform + - uid: 16712 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,37.5 + parent: 1 + type: Transform + - uid: 16713 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,37.5 + parent: 1 + type: Transform + - uid: 16714 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,37.5 + parent: 1 + type: Transform + - uid: 16715 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,37.5 + parent: 1 + type: Transform + - uid: 16716 + components: + - pos: 14.5,46.5 + parent: 1 + type: Transform + - uid: 16717 + components: + - pos: 14.5,45.5 + parent: 1 + type: Transform + - uid: 16718 + components: + - pos: 14.5,44.5 + parent: 1 + type: Transform + - uid: 16719 + components: + - pos: 14.5,43.5 + parent: 1 + type: Transform + - uid: 16720 + components: + - pos: 14.5,42.5 + parent: 1 + type: Transform + - uid: 16721 + components: + - pos: 14.5,41.5 + parent: 1 + type: Transform + - uid: 16722 + components: + - pos: 14.5,40.5 + parent: 1 + type: Transform + - uid: 16723 + components: + - pos: 14.5,39.5 + parent: 1 + type: Transform + - uid: 16724 + components: + - pos: 14.5,38.5 + parent: 1 + type: Transform + - uid: 16726 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,37.5 + parent: 1 + type: Transform + - uid: 16727 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,37.5 + parent: 1 + type: Transform + - uid: 16728 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,37.5 + parent: 1 + type: Transform + - uid: 16729 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,37.5 + parent: 1 + type: Transform + - uid: 16730 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,37.5 + parent: 1 + type: Transform + - uid: 16731 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,37.5 + parent: 1 + type: Transform + - uid: 16732 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,37.5 + parent: 1 + type: Transform + - uid: 16733 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,37.5 + parent: 1 + type: Transform + - uid: 16734 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,37.5 + parent: 1 + type: Transform + - uid: 16735 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,37.5 + parent: 1 + type: Transform + - uid: 16736 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,37.5 + parent: 1 + type: Transform + - uid: 16737 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,37.5 + parent: 1 + type: Transform + - uid: 16739 + components: + - rot: 3.141592653589793 rad + pos: 31.5,38.5 + parent: 1 + type: Transform + - uid: 16740 + components: + - rot: 3.141592653589793 rad + pos: 31.5,39.5 + parent: 1 + type: Transform + - uid: 16741 + components: + - rot: 3.141592653589793 rad + pos: 31.5,40.5 + parent: 1 + type: Transform + - uid: 16742 + components: + - rot: 3.141592653589793 rad + pos: 31.5,41.5 + parent: 1 + type: Transform + - uid: 16743 + components: + - rot: 3.141592653589793 rad + pos: 31.5,42.5 + parent: 1 + type: Transform + - uid: 16745 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,43.5 + parent: 1 + type: Transform + - uid: 16746 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,43.5 + parent: 1 + type: Transform + - uid: 16747 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,43.5 + parent: 1 + type: Transform + - uid: 16749 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,37.5 + parent: 1 + type: Transform + - uid: 16751 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,37.5 + parent: 1 + type: Transform + - uid: 16752 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,37.5 + parent: 1 + type: Transform + - uid: 16753 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,37.5 + parent: 1 + type: Transform + - uid: 16754 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,37.5 + parent: 1 + type: Transform + - uid: 16755 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,37.5 + parent: 1 + type: Transform + - uid: 16756 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,37.5 + parent: 1 + type: Transform + - uid: 16757 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,37.5 + parent: 1 + type: Transform + - uid: 16758 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,37.5 + parent: 1 + type: Transform + - uid: 16759 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,37.5 + parent: 1 + type: Transform + - uid: 16760 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,37.5 + parent: 1 + type: Transform + - uid: 16761 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,37.5 + parent: 1 + type: Transform + - uid: 16762 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,37.5 + parent: 1 + type: Transform + - uid: 16763 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,37.5 + parent: 1 + type: Transform + - uid: 16764 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,37.5 + parent: 1 + type: Transform + - uid: 16765 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,37.5 + parent: 1 + type: Transform + - uid: 16767 + components: + - rot: 3.141592653589793 rad + pos: 48.5,38.5 + parent: 1 + type: Transform + - uid: 16768 + components: + - rot: 3.141592653589793 rad + pos: 48.5,39.5 + parent: 1 + type: Transform + - uid: 16769 + components: + - rot: 3.141592653589793 rad + pos: 48.5,40.5 + parent: 1 + type: Transform + - uid: 16770 + components: + - rot: 3.141592653589793 rad + pos: 48.5,41.5 + parent: 1 + type: Transform + - uid: 16774 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,17.5 + parent: 1 + type: Transform + - uid: 16775 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,17.5 + parent: 1 + type: Transform + - uid: 16776 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,17.5 + parent: 1 + type: Transform + - uid: 16777 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,17.5 + parent: 1 + type: Transform + - uid: 16778 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,17.5 + parent: 1 + type: Transform + - uid: 16779 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,17.5 + parent: 1 + type: Transform + - uid: 16780 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,17.5 + parent: 1 + type: Transform + - uid: 16781 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,17.5 + parent: 1 + type: Transform + - uid: 16782 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,17.5 + parent: 1 + type: Transform + - uid: 16783 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,17.5 + parent: 1 + type: Transform + - uid: 16784 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,17.5 + parent: 1 + type: Transform + - uid: 16785 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,17.5 + parent: 1 + type: Transform + - uid: 16786 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,17.5 + parent: 1 + type: Transform + - uid: 16787 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,17.5 + parent: 1 + type: Transform + - uid: 16789 + components: + - rot: 3.141592653589793 rad + pos: 16.5,18.5 + parent: 1 + type: Transform + - uid: 16790 + components: + - rot: 3.141592653589793 rad + pos: 16.5,19.5 + parent: 1 + type: Transform + - uid: 16794 + components: + - pos: 7.5,33.5 + parent: 1 + type: Transform + - uid: 16795 + components: + - pos: 7.5,32.5 + parent: 1 + type: Transform + - uid: 16796 + components: + - pos: 7.5,31.5 + parent: 1 + type: Transform + - uid: 16797 + components: + - pos: 7.5,30.5 + parent: 1 + type: Transform + - uid: 16798 + components: + - pos: 7.5,29.5 + parent: 1 + type: Transform + - uid: 16801 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,28.5 + parent: 1 + type: Transform + - uid: 16802 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,28.5 + parent: 1 + type: Transform + - uid: 16803 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,28.5 + parent: 1 + type: Transform + - uid: 16804 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,28.5 + parent: 1 + type: Transform + - uid: 16805 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,28.5 + parent: 1 + type: Transform + - uid: 16806 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,28.5 + parent: 1 + type: Transform + - uid: 16807 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,28.5 + parent: 1 + type: Transform + - uid: 16810 + components: + - pos: 11.5,27.5 + parent: 1 + type: Transform + - uid: 16811 + components: + - pos: 11.5,26.5 + parent: 1 + type: Transform + - uid: 16812 + components: + - pos: 11.5,25.5 + parent: 1 + type: Transform + - uid: 16813 + components: + - pos: 11.5,24.5 + parent: 1 + type: Transform + - uid: 16814 + components: + - pos: 11.5,23.5 + parent: 1 + type: Transform + - uid: 16815 + components: + - pos: 11.5,22.5 + parent: 1 + type: Transform + - uid: 16816 + components: + - pos: 11.5,21.5 + parent: 1 + type: Transform + - uid: 16817 + components: + - pos: 11.5,20.5 + parent: 1 + type: Transform + - uid: 16818 + components: + - pos: 11.5,19.5 + parent: 1 + type: Transform + - uid: 16819 + components: + - pos: 11.5,18.5 + parent: 1 + type: Transform + - uid: 16820 + components: + - pos: 0.5,16.5 + parent: 1 + type: Transform + - uid: 16823 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,15.5 + parent: 1 + type: Transform + - uid: 16824 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,14.5 + parent: 1 + type: Transform + - uid: 16826 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,26.5 + parent: 1 + type: Transform + - uid: 16828 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,26.5 + parent: 1 + type: Transform + - uid: 16829 + components: + - rot: 3.141592653589793 rad + pos: 30.5,25.5 + parent: 1 + type: Transform + - uid: 16830 + components: + - rot: 3.141592653589793 rad + pos: 30.5,24.5 + parent: 1 + type: Transform + - uid: 16831 + components: + - rot: 3.141592653589793 rad + pos: 30.5,23.5 + parent: 1 + type: Transform + - uid: 16832 + components: + - rot: 3.141592653589793 rad + pos: 30.5,22.5 + parent: 1 + type: Transform + - uid: 16834 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,21.5 + parent: 1 + type: Transform + - uid: 16835 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,21.5 + parent: 1 + type: Transform + - uid: 16837 + components: + - pos: 27.5,22.5 + parent: 1 + type: Transform + - uid: 16839 + components: + - pos: 30.5,20.5 + parent: 1 + type: Transform + - uid: 16840 + components: + - pos: 30.5,19.5 + parent: 1 + type: Transform + - uid: 16841 + components: + - pos: 30.5,18.5 + parent: 1 + type: Transform + - uid: 16842 + components: + - pos: 30.5,17.5 + parent: 1 + type: Transform + - uid: 16843 + components: + - pos: 30.5,16.5 + parent: 1 + type: Transform + - uid: 16853 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,13.5 + parent: 1 + type: Transform + - uid: 16854 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,13.5 + parent: 1 + type: Transform + - uid: 16855 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,13.5 + parent: 1 + type: Transform + - uid: 16856 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,13.5 + parent: 1 + type: Transform + - uid: 16857 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,13.5 + parent: 1 + type: Transform + - uid: 16858 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,13.5 + parent: 1 + type: Transform + - uid: 16859 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,13.5 + parent: 1 + type: Transform + - uid: 16860 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,13.5 + parent: 1 + type: Transform + - uid: 16861 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,13.5 + parent: 1 + type: Transform + - uid: 16862 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,13.5 + parent: 1 + type: Transform + - uid: 16863 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,13.5 + parent: 1 + type: Transform + - uid: 16864 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,13.5 + parent: 1 + type: Transform + - uid: 16865 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,13.5 + parent: 1 + type: Transform + - uid: 16866 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,13.5 + parent: 1 + type: Transform + - uid: 16868 + components: + - rot: 3.141592653589793 rad + pos: 30.5,15.5 + parent: 1 + type: Transform + - uid: 16870 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,14.5 + parent: 1 + type: Transform + - uid: 16871 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,14.5 + parent: 1 + type: Transform + - uid: 16872 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,14.5 + parent: 1 + type: Transform + - uid: 16873 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,14.5 + parent: 1 + type: Transform + - uid: 16874 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,14.5 + parent: 1 + type: Transform + - uid: 16875 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,14.5 + parent: 1 + type: Transform + - uid: 16876 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,14.5 + parent: 1 + type: Transform + - uid: 16877 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,14.5 + parent: 1 + type: Transform + - uid: 16878 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,14.5 + parent: 1 + type: Transform + - uid: 16879 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,14.5 + parent: 1 + type: Transform + - uid: 16880 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,14.5 + parent: 1 + type: Transform + - uid: 16881 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,14.5 + parent: 1 + type: Transform + - uid: 16882 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,14.5 + parent: 1 + type: Transform + - uid: 16883 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,14.5 + parent: 1 + type: Transform + - uid: 16884 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,14.5 + parent: 1 + type: Transform + - uid: 16885 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,14.5 + parent: 1 + type: Transform + - uid: 16886 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,14.5 + parent: 1 + type: Transform + - uid: 16887 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,14.5 + parent: 1 + type: Transform + - uid: 16888 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,14.5 + parent: 1 + type: Transform + - uid: 16889 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,14.5 + parent: 1 + type: Transform + - uid: 16890 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,14.5 + parent: 1 + type: Transform + - uid: 16891 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,14.5 + parent: 1 + type: Transform + - uid: 16892 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,14.5 + parent: 1 + type: Transform + - uid: 16893 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,14.5 + parent: 1 + type: Transform + - uid: 16894 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,14.5 + parent: 1 + type: Transform + - uid: 16895 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,14.5 + parent: 1 + type: Transform + - uid: 16896 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,14.5 + parent: 1 + type: Transform + - uid: 16897 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,14.5 + parent: 1 + type: Transform + - uid: 16900 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,14.5 + parent: 1 + type: Transform + - uid: 16901 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,14.5 + parent: 1 + type: Transform + - uid: 16902 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,14.5 + parent: 1 + type: Transform + - uid: 16903 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,14.5 + parent: 1 + type: Transform + - uid: 16904 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,14.5 + parent: 1 + type: Transform + - uid: 16905 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,14.5 + parent: 1 + type: Transform + - uid: 16906 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,14.5 + parent: 1 + type: Transform + - uid: 16907 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,14.5 + parent: 1 + type: Transform + - uid: 16908 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,14.5 + parent: 1 + type: Transform + - uid: 16909 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,14.5 + parent: 1 + type: Transform + - uid: 16910 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,14.5 + parent: 1 + type: Transform + - uid: 16911 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,14.5 + parent: 1 + type: Transform + - uid: 16912 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,14.5 + parent: 1 + type: Transform + - uid: 16913 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,14.5 + parent: 1 + type: Transform + - uid: 16914 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,14.5 + parent: 1 + type: Transform + - uid: 16915 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,14.5 + parent: 1 + type: Transform + - uid: 16916 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,14.5 + parent: 1 + type: Transform + - uid: 16917 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,14.5 + parent: 1 + type: Transform + - uid: 16918 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,14.5 + parent: 1 + type: Transform + - uid: 16919 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,14.5 + parent: 1 + type: Transform + - uid: 16920 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,14.5 + parent: 1 + type: Transform + - uid: 16923 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,14.5 + parent: 1 + type: Transform + - uid: 16924 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,14.5 + parent: 1 + type: Transform + - uid: 16925 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,14.5 + parent: 1 + type: Transform + - uid: 16926 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,14.5 + parent: 1 + type: Transform + - uid: 16927 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,14.5 + parent: 1 + type: Transform + - uid: 16928 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,14.5 + parent: 1 + type: Transform + - uid: 16929 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,14.5 + parent: 1 + type: Transform + - uid: 16931 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,14.5 + parent: 1 + type: Transform + - uid: 16932 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,14.5 + parent: 1 + type: Transform + - uid: 16935 + components: + - rot: 3.141592653589793 rad + pos: -45.5,13.5 + parent: 1 + type: Transform + - uid: 16936 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,14.5 + parent: 1 + type: Transform + - uid: 16937 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,14.5 + parent: 1 + type: Transform + - uid: 16938 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,14.5 + parent: 1 + type: Transform + - uid: 16939 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,14.5 + parent: 1 + type: Transform + - uid: 16940 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,14.5 + parent: 1 + type: Transform + - uid: 16941 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,14.5 + parent: 1 + type: Transform + - uid: 16942 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,14.5 + parent: 1 + type: Transform + - uid: 16944 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,14.5 + parent: 1 + type: Transform + - uid: 16945 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,14.5 + parent: 1 + type: Transform + - uid: 16947 + components: + - pos: -34.5,15.5 + parent: 1 + type: Transform + - uid: 16949 + components: + - pos: -31.5,15.5 + parent: 1 + type: Transform + - uid: 16950 + components: + - pos: -31.5,16.5 + parent: 1 + type: Transform + - uid: 16951 + components: + - pos: -31.5,17.5 + parent: 1 + type: Transform + - uid: 16952 + components: + - pos: -31.5,18.5 + parent: 1 + type: Transform + - uid: 16953 + components: + - pos: -31.5,19.5 + parent: 1 + type: Transform + - uid: 16954 + components: + - pos: -31.5,20.5 + parent: 1 + type: Transform + - uid: 16955 + components: + - pos: -31.5,21.5 + parent: 1 + type: Transform + - uid: 16962 + components: + - rot: 3.141592653589793 rad + pos: -37.5,23.5 + parent: 1 + type: Transform + - uid: 16963 + components: + - rot: 3.141592653589793 rad + pos: -37.5,22.5 + parent: 1 + type: Transform + - uid: 16964 + components: + - rot: 3.141592653589793 rad + pos: -37.5,21.5 + parent: 1 + type: Transform + - uid: 16965 + components: + - rot: 3.141592653589793 rad + pos: -37.5,20.5 + parent: 1 + type: Transform + - uid: 16966 + components: + - rot: 3.141592653589793 rad + pos: -37.5,19.5 + parent: 1 + type: Transform + - uid: 16967 + components: + - rot: 3.141592653589793 rad + pos: -37.5,18.5 + parent: 1 + type: Transform + - uid: 16968 + components: + - rot: 3.141592653589793 rad + pos: -37.5,17.5 + parent: 1 + type: Transform + - uid: 16969 + components: + - rot: 3.141592653589793 rad + pos: -37.5,16.5 + parent: 1 + type: Transform + - uid: 16970 + components: + - rot: 3.141592653589793 rad + pos: -37.5,15.5 + parent: 1 + type: Transform + - uid: 16976 + components: + - pos: 1.5,12.5 + parent: 1 + type: Transform + - uid: 16977 + components: + - pos: 1.5,11.5 + parent: 1 + type: Transform + - uid: 16978 + components: + - pos: 1.5,10.5 + parent: 1 + type: Transform + - uid: 16979 + components: + - pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 16980 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform + - uid: 16981 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 16982 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 16983 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 16984 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 16985 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 16986 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 16987 + components: + - pos: 1.5,-1.5 + parent: 1 + type: Transform + - uid: 16988 + components: + - pos: 1.5,-2.5 + parent: 1 + type: Transform + - uid: 16989 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 16990 + components: + - pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 16991 + components: + - pos: 1.5,-6.5 + parent: 1 + type: Transform + - uid: 16992 + components: + - pos: 1.5,-7.5 + parent: 1 + type: Transform + - uid: 16995 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,1.5 + parent: 1 + type: Transform + - uid: 16996 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,1.5 + parent: 1 + type: Transform + - uid: 16997 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,1.5 + parent: 1 + type: Transform + - uid: 16998 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,1.5 + parent: 1 + type: Transform + - uid: 16999 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,1.5 + parent: 1 + type: Transform + - uid: 17000 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1 + type: Transform + - uid: 17001 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,1.5 + parent: 1 + type: Transform + - uid: 17002 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 17003 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 17004 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 17005 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 17006 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 17007 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 17008 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 17010 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 17011 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 17012 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 1 + type: Transform + - uid: 17013 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 17014 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 + type: Transform + - uid: 17015 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,5.5 + parent: 1 + type: Transform + - uid: 17016 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,5.5 + parent: 1 + type: Transform + - uid: 17017 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 1 + type: Transform + - uid: 17018 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,5.5 + parent: 1 + type: Transform + - uid: 17019 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,5.5 + parent: 1 + type: Transform + - uid: 17021 + components: + - rot: 3.141592653589793 rad + pos: 11.5,6.5 + parent: 1 + type: Transform + - uid: 17028 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 17029 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 17030 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 17031 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 1 + type: Transform + - uid: 17032 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 1 + type: Transform + - uid: 17036 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-18.5 + parent: 1 + type: Transform + - uid: 17037 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-17.5 + parent: 1 + type: Transform + - uid: 17038 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-16.5 + parent: 1 + type: Transform + - uid: 17039 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-15.5 + parent: 1 + type: Transform + - uid: 17040 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-14.5 + parent: 1 + type: Transform + - uid: 17041 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-13.5 + parent: 1 + type: Transform + - uid: 17042 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-12.5 + parent: 1 + type: Transform + - uid: 17043 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-11.5 + parent: 1 + type: Transform + - uid: 17044 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-10.5 + parent: 1 + type: Transform + - uid: 17045 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-9.5 + parent: 1 + type: Transform + - uid: 17047 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-1.5 + parent: 1 + type: Transform + - uid: 17048 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-0.5 + parent: 1 + type: Transform + - uid: 17049 + components: + - rot: 3.141592653589793 rad + pos: -38.5,0.5 + parent: 1 + type: Transform + - uid: 17050 + components: + - rot: 3.141592653589793 rad + pos: -38.5,1.5 + parent: 1 + type: Transform + - uid: 17054 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,2.5 + parent: 1 + type: Transform + - uid: 17055 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,2.5 + parent: 1 + type: Transform + - uid: 17056 + components: + - pos: -35.5,3.5 + parent: 1 + type: Transform + - uid: 17057 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,4.5 + parent: 1 + type: Transform + - uid: 17058 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,4.5 + parent: 1 + type: Transform + - uid: 17059 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,4.5 + parent: 1 + type: Transform + - uid: 17061 + components: + - pos: -31.5,3.5 + parent: 1 + type: Transform + - uid: 17062 + components: + - pos: -31.5,2.5 + parent: 1 + type: Transform + - uid: 17063 + components: + - pos: -31.5,1.5 + parent: 1 + type: Transform + - uid: 17064 + components: + - pos: -31.5,0.5 + parent: 1 + type: Transform + - uid: 17065 + components: + - pos: -31.5,-0.5 + parent: 1 + type: Transform + - uid: 17066 + components: + - pos: -31.5,-1.5 + parent: 1 + type: Transform + - uid: 17067 + components: + - pos: -31.5,-2.5 + parent: 1 + type: Transform + - uid: 17068 + components: + - pos: -31.5,-3.5 + parent: 1 + type: Transform + - uid: 17069 + components: + - pos: -31.5,-4.5 + parent: 1 + type: Transform + - uid: 17070 + components: + - pos: -31.5,-5.5 + parent: 1 + type: Transform + - uid: 17071 + components: + - pos: -31.5,-6.5 + parent: 1 + type: Transform + - uid: 17072 + components: + - pos: -31.5,-7.5 + parent: 1 + type: Transform + - uid: 17074 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-8.5 + parent: 1 + type: Transform + - uid: 17076 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-8.5 + parent: 1 + type: Transform + - uid: 17077 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-8.5 + parent: 1 + type: Transform + - uid: 17078 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-8.5 + parent: 1 + type: Transform + - uid: 17079 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-8.5 + parent: 1 + type: Transform + - uid: 17080 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-8.5 + parent: 1 + type: Transform + - uid: 17081 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-8.5 + parent: 1 + type: Transform + - uid: 17082 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-8.5 + parent: 1 + type: Transform + - uid: 17083 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-8.5 + parent: 1 + type: Transform + - uid: 17084 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-8.5 + parent: 1 + type: Transform + - uid: 17085 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-8.5 + parent: 1 + type: Transform + - uid: 17086 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-8.5 + parent: 1 + type: Transform + - uid: 17087 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-8.5 + parent: 1 + type: Transform + - uid: 17088 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-8.5 + parent: 1 + type: Transform + - uid: 17089 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-8.5 + parent: 1 + type: Transform + - uid: 17090 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-8.5 + parent: 1 + type: Transform + - uid: 17091 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-8.5 + parent: 1 + type: Transform + - uid: 17092 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-8.5 + parent: 1 + type: Transform + - uid: 17093 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-8.5 + parent: 1 + type: Transform + - uid: 17095 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-14.5 + parent: 1 + type: Transform + - uid: 17096 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-14.5 + parent: 1 + type: Transform + - uid: 17097 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-14.5 + parent: 1 + type: Transform + - uid: 17099 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-13.5 + parent: 1 + type: Transform + - uid: 17100 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-12.5 + parent: 1 + type: Transform + - uid: 17101 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-11.5 + parent: 1 + type: Transform + - uid: 17102 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-10.5 + parent: 1 + type: Transform + - uid: 17103 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-9.5 + parent: 1 + type: Transform + - uid: 17105 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-8.5 + parent: 1 + type: Transform + - uid: 17106 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-8.5 + parent: 1 + type: Transform + - uid: 17107 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-8.5 + parent: 1 + type: Transform + - uid: 17108 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-8.5 + parent: 1 + type: Transform + - uid: 17109 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-8.5 + parent: 1 + type: Transform + - uid: 17110 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 1 + type: Transform + - uid: 17111 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 1 + type: Transform + - uid: 17112 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-8.5 + parent: 1 + type: Transform + - uid: 17113 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 1 + type: Transform + - uid: 17114 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 1 + type: Transform + - uid: 17115 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 1 + type: Transform + - uid: 17116 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 1 + type: Transform + - uid: 17118 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-14.5 + parent: 1 + type: Transform + - uid: 17119 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-13.5 + parent: 1 + type: Transform + - uid: 17120 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-12.5 + parent: 1 + type: Transform + - uid: 17121 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-11.5 + parent: 1 + type: Transform + - uid: 17122 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-10.5 + parent: 1 + type: Transform + - uid: 17123 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-9.5 + parent: 1 + type: Transform + - uid: 17124 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 1 + type: Transform + - uid: 17125 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 1 + type: Transform + - uid: 17126 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 17127 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 17128 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 17129 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 1 + type: Transform + - uid: 17130 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 1 + type: Transform + - uid: 17131 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 1 + type: Transform + - uid: 17133 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 1 + type: Transform + - uid: 17134 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-8.5 + parent: 1 + type: Transform + - uid: 17136 + components: + - pos: 13.5,-7.5 + parent: 1 + type: Transform + - uid: 17138 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-8.5 + parent: 1 + type: Transform + - uid: 17139 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-8.5 + parent: 1 + type: Transform + - uid: 17140 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-8.5 + parent: 1 + type: Transform + - uid: 17141 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-8.5 + parent: 1 + type: Transform + - uid: 17142 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-8.5 + parent: 1 + type: Transform + - uid: 17144 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-3.5 + parent: 1 + type: Transform + - uid: 17146 + components: + - pos: 19.5,-4.5 + parent: 1 + type: Transform + - uid: 17147 + components: + - pos: 19.5,-5.5 + parent: 1 + type: Transform + - uid: 17148 + components: + - pos: 19.5,-6.5 + parent: 1 + type: Transform + - uid: 17149 + components: + - pos: 19.5,-7.5 + parent: 1 + type: Transform + - uid: 17151 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-8.5 + parent: 1 + type: Transform + - uid: 17152 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-8.5 + parent: 1 + type: Transform + - uid: 17153 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-8.5 + parent: 1 + type: Transform + - uid: 17154 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-8.5 + parent: 1 + type: Transform + - uid: 17156 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-8.5 + parent: 1 + type: Transform + - uid: 17157 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-8.5 + parent: 1 + type: Transform + - uid: 17158 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-8.5 + parent: 1 + type: Transform + - uid: 17159 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-8.5 + parent: 1 + type: Transform + - uid: 17160 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-8.5 + parent: 1 + type: Transform + - uid: 17161 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-8.5 + parent: 1 + type: Transform + - uid: 17162 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-8.5 + parent: 1 + type: Transform + - uid: 17163 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-8.5 + parent: 1 + type: Transform + - uid: 17164 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-8.5 + parent: 1 + type: Transform + - uid: 17165 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-8.5 + parent: 1 + type: Transform + - uid: 17166 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-8.5 + parent: 1 + type: Transform + - uid: 17167 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-8.5 + parent: 1 + type: Transform + - uid: 17168 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-8.5 + parent: 1 + type: Transform + - uid: 17169 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-8.5 + parent: 1 + type: Transform + - uid: 17170 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-8.5 + parent: 1 + type: Transform + - uid: 17171 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-8.5 + parent: 1 + type: Transform + - uid: 17172 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-8.5 + parent: 1 + type: Transform + - uid: 17173 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-8.5 + parent: 1 + type: Transform + - uid: 17174 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-8.5 + parent: 1 + type: Transform + - uid: 17176 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-7.5 + parent: 1 + type: Transform + - uid: 17179 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-7.5 + parent: 1 + type: Transform + - uid: 17180 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-6.5 + parent: 1 + type: Transform + - uid: 17181 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-5.5 + parent: 1 + type: Transform + - uid: 17182 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-4.5 + parent: 1 + type: Transform + - uid: 17183 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-3.5 + parent: 1 + type: Transform + - uid: 17184 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-2.5 + parent: 1 + type: Transform + - uid: 17185 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-1.5 + parent: 1 + type: Transform + - uid: 17186 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-0.5 + parent: 1 + type: Transform + - uid: 17187 + components: + - rot: 3.141592653589793 rad + pos: 31.5,0.5 + parent: 1 + type: Transform + - uid: 17188 + components: + - rot: 3.141592653589793 rad + pos: 31.5,1.5 + parent: 1 + type: Transform + - uid: 17189 + components: + - rot: 3.141592653589793 rad + pos: 31.5,2.5 + parent: 1 + type: Transform + - uid: 17190 + components: + - rot: 3.141592653589793 rad + pos: 31.5,3.5 + parent: 1 + type: Transform + - uid: 17191 + components: + - rot: 3.141592653589793 rad + pos: 31.5,4.5 + parent: 1 + type: Transform + - uid: 17192 + components: + - rot: 3.141592653589793 rad + pos: 31.5,5.5 + parent: 1 + type: Transform + - uid: 17193 + components: + - rot: 3.141592653589793 rad + pos: 31.5,6.5 + parent: 1 + type: Transform + - uid: 17195 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,7.5 + parent: 1 + type: Transform + - uid: 17197 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-9.5 + parent: 1 + type: Transform + - uid: 17198 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-10.5 + parent: 1 + type: Transform + - uid: 17199 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-11.5 + parent: 1 + type: Transform + - uid: 17200 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-12.5 + parent: 1 + type: Transform + - uid: 17201 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-13.5 + parent: 1 + type: Transform + - uid: 17202 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-14.5 + parent: 1 + type: Transform + - uid: 17203 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-15.5 + parent: 1 + type: Transform + - uid: 17204 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-16.5 + parent: 1 + type: Transform + - uid: 17205 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-17.5 + parent: 1 + type: Transform + - uid: 17206 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-18.5 + parent: 1 + type: Transform + - uid: 17207 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-19.5 + parent: 1 + type: Transform + - uid: 17208 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-20.5 + parent: 1 + type: Transform + - uid: 17209 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-21.5 + parent: 1 + type: Transform + - uid: 17210 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-22.5 + parent: 1 + type: Transform + - uid: 17211 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-23.5 + parent: 1 + type: Transform + - uid: 17214 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-24.5 + parent: 1 + type: Transform + - uid: 17215 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-25.5 + parent: 1 + type: Transform + - uid: 17216 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-26.5 + parent: 1 + type: Transform + - uid: 17219 + components: + - pos: 21.5,-28.5 + parent: 1 + type: Transform + - uid: 17221 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-29.5 + parent: 1 + type: Transform + - uid: 17222 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-29.5 + parent: 1 + type: Transform + - uid: 17223 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-29.5 + parent: 1 + type: Transform + - uid: 17224 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-29.5 + parent: 1 + type: Transform + - uid: 17225 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-29.5 + parent: 1 + type: Transform + - uid: 17227 + components: + - pos: 15.5,-30.5 + parent: 1 + type: Transform + - uid: 17228 + components: + - pos: 15.5,-31.5 + parent: 1 + type: Transform + - uid: 17229 + components: + - pos: 15.5,-32.5 + parent: 1 + type: Transform + - uid: 17230 + components: + - pos: 15.5,-33.5 + parent: 1 + type: Transform + - uid: 17232 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-34.5 + parent: 1 + type: Transform + - uid: 17234 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-33.5 + parent: 1 + type: Transform +- proto: DisposalTrunk + entities: + - uid: 1783 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,24.5 + parent: 1 + type: Transform + - uid: 16491 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,70.5 + parent: 1 + type: Transform + - uid: 16505 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,76.5 + parent: 1 + type: Transform + - uid: 16523 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,68.5 + parent: 1 + type: Transform + - uid: 16535 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,57.5 + parent: 1 + type: Transform + - uid: 16548 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,52.5 + parent: 1 + type: Transform + - uid: 16549 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,53.5 + parent: 1 + type: Transform + - uid: 16611 + components: + - rot: 3.141592653589793 rad + pos: -15.5,30.5 + parent: 1 + type: Transform + - uid: 16623 + components: + - pos: -24.5,38.5 + parent: 1 + type: Transform + - uid: 16651 + components: + - pos: -45.5,44.5 + parent: 1 + type: Transform + - uid: 16655 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,23.5 + parent: 1 + type: Transform + - uid: 16695 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,27.5 + parent: 1 + type: Transform + - uid: 16697 + components: + - rot: 3.141592653589793 rad + pos: 18.5,36.5 + parent: 1 + type: Transform + - uid: 16702 + components: + - pos: 14.5,47.5 + parent: 1 + type: Transform + - uid: 16748 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,43.5 + parent: 1 + type: Transform + - uid: 16771 + components: + - pos: 48.5,42.5 + parent: 1 + type: Transform + - uid: 16791 + components: + - pos: 16.5,20.5 + parent: 1 + type: Transform + - uid: 16793 + components: + - pos: 7.5,34.5 + parent: 1 + type: Transform + - uid: 16809 + components: + - pos: 16.5,29.5 + parent: 1 + type: Transform + - uid: 16825 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,26.5 + parent: 1 + type: Transform + - uid: 16838 + components: + - pos: 27.5,23.5 + parent: 1 + type: Transform + - uid: 16851 + components: + - rot: 3.141592653589793 rad + pos: 45.5,12.5 + parent: 1 + type: Transform + - uid: 16921 + components: + - pos: -23.5,15.5 + parent: 1 + type: Transform + - uid: 16934 + components: + - rot: 3.141592653589793 rad + pos: -45.5,12.5 + parent: 1 + type: Transform + - uid: 16948 + components: + - pos: -34.5,16.5 + parent: 1 + type: Transform + - uid: 16972 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,22.5 + parent: 1 + type: Transform + - uid: 16994 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,1.5 + parent: 1 + type: Transform + - uid: 17009 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + type: Transform + - uid: 17022 + components: + - pos: 11.5,7.5 + parent: 1 + type: Transform + - uid: 17034 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-5.5 + parent: 1 + type: Transform + - uid: 17035 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-19.5 + parent: 1 + type: Transform + - uid: 17046 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-2.5 + parent: 1 + type: Transform + - uid: 17073 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-8.5 + parent: 1 + type: Transform + - uid: 17094 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-14.5 + parent: 1 + type: Transform + - uid: 17117 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-15.5 + parent: 1 + type: Transform + - uid: 17137 + components: + - pos: 13.5,-6.5 + parent: 1 + type: Transform + - uid: 17143 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-3.5 + parent: 1 + type: Transform + - uid: 17177 + components: + - pos: 45.5,-6.5 + parent: 1 + type: Transform + - uid: 17196 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,7.5 + parent: 1 + type: Transform + - uid: 17235 + components: + - pos: 17.5,-32.5 + parent: 1 + type: Transform +- proto: DisposalUnit + entities: + - uid: 1988 + components: + - pos: -36.5,24.5 + parent: 1 + type: Transform + - uid: 2033 + components: + - pos: 33.5,7.5 + parent: 1 + type: Transform + - uid: 4017 + components: + - pos: 4.5,52.5 + parent: 1 + type: Transform + - uid: 4082 + components: + - pos: 7.5,34.5 + parent: 1 + type: Transform + - uid: 4389 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform + - uid: 6403 + components: + - pos: 16.5,20.5 + parent: 1 + type: Transform + - uid: 6404 + components: + - pos: 16.5,29.5 + parent: 1 + type: Transform + - uid: 6949 + components: + - pos: 27.5,23.5 + parent: 1 + type: Transform + - uid: 8065 + components: + - pos: -7.5,76.5 + parent: 1 + type: Transform + - uid: 8087 + components: + - pos: 2.5,70.5 + parent: 1 + type: Transform + - uid: 8415 + components: + - pos: -45.5,44.5 + parent: 1 + type: Transform + - uid: 8453 + components: + - pos: -3.5,57.5 + parent: 1 + type: Transform + - uid: 8454 + components: + - pos: -2.5,68.5 + parent: 1 + type: Transform + - uid: 8666 + components: + - pos: -21.5,25.5 + parent: 1 + type: Transform + - uid: 8998 + components: + - pos: -13.5,1.5 + parent: 1 + type: Transform + - uid: 9097 + components: + - pos: 10.5,-15.5 + parent: 1 + type: Transform + - uid: 9400 + components: + - pos: -7.5,-14.5 + parent: 1 + type: Transform + - uid: 9433 + components: + - pos: 48.5,42.5 + parent: 1 + type: Transform + - uid: 9437 + components: + - pos: 27.5,26.5 + parent: 1 + type: Transform + - uid: 9441 + components: + - pos: -33.5,-8.5 + parent: 1 + type: Transform + - uid: 9445 + components: + - pos: -30.5,22.5 + parent: 1 + type: Transform + - uid: 9452 + components: + - pos: 7.5,-5.5 + parent: 1 + type: Transform + - uid: 9454 + components: + - pos: 45.5,-6.5 + parent: 1 + type: Transform + - uid: 9455 + components: + - pos: 45.5,12.5 + parent: 1 + type: Transform + - uid: 9456 + components: + - pos: -45.5,12.5 + parent: 1 + type: Transform + - uid: 9459 + components: + - pos: 14.5,47.5 + parent: 1 + type: Transform + - uid: 9469 + components: + - pos: -34.5,16.5 + parent: 1 + type: Transform + - uid: 9488 + components: + - pos: 11.5,7.5 + parent: 1 + type: Transform + - uid: 9536 + components: + - pos: 17.5,-3.5 + parent: 1 + type: Transform + - uid: 9565 + components: + - pos: 13.5,-6.5 + parent: 1 + type: Transform + - uid: 9566 + components: + - pos: -17.5,-19.5 + parent: 1 + type: Transform + - uid: 9595 + components: + - pos: 18.5,36.5 + parent: 1 + type: Transform + - uid: 9597 + components: + - pos: -24.5,38.5 + parent: 1 + type: Transform + - uid: 9702 + components: + - pos: -38.5,-2.5 + parent: 1 + type: Transform + - uid: 9878 + components: + - pos: -17.5,53.5 + parent: 1 + type: Transform + - uid: 9888 + components: + - pos: -23.5,15.5 + parent: 1 + type: Transform + - uid: 16610 + components: + - pos: -15.5,30.5 + parent: 1 + type: Transform + - uid: 16654 + components: + - pos: -9.5,23.5 + parent: 1 + type: Transform + - uid: 16692 + components: + - pos: -1.5,27.5 + parent: 1 + type: Transform + - uid: 16750 + components: + - pos: 27.5,43.5 + parent: 1 + type: Transform +- proto: DisposalYJunction + entities: + - uid: 16490 + components: + - pos: 0.5,76.5 + parent: 1 + type: Transform + - uid: 16799 + components: + - pos: 11.5,28.5 + parent: 1 + type: Transform + - uid: 16869 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,14.5 + parent: 1 + type: Transform + - uid: 17155 + components: + - pos: 24.5,-8.5 + parent: 1 + type: Transform +- proto: DogBed + entities: + - uid: 6680 + components: + - pos: -28.5,6.5 + parent: 1 + type: Transform + - uid: 9216 + components: + - pos: 24.5,2.5 + parent: 1 + type: Transform +- proto: DonkpocketBoxSpawner + entities: + - uid: 9142 + components: + - pos: 9.5,-32.5 + parent: 1 + type: Transform +- proto: DoorElectronics + entities: + - uid: 9129 + components: + - pos: 13.305171,-24.81277 + parent: 1 + type: Transform + - uid: 9130 + components: + - pos: 13.409338,-24.958605 + parent: 1 + type: Transform +- proto: Dresser + entities: + - uid: 931 + components: + - pos: 26.5,53.5 + parent: 1 + type: Transform + - uid: 2488 + components: + - pos: 27.5,8.5 + parent: 1 + type: Transform + - uid: 6503 + components: + - pos: -35.5,-19.5 + parent: 1 + type: Transform + - uid: 6613 + components: + - pos: -15.5,1.5 + parent: 1 + type: Transform + - uid: 6614 + components: + - pos: -15.5,-2.5 + parent: 1 + type: Transform + - uid: 6615 + components: + - pos: -15.5,3.5 + parent: 1 + type: Transform + - uid: 6842 + components: + - pos: 46.5,46.5 + parent: 1 + type: Transform + - uid: 7026 + components: + - pos: -24.5,1.5 + parent: 1 + type: Transform + - uid: 8345 + components: + - pos: -14.5,60.5 + parent: 1 + type: Transform + - uid: 8408 + components: + - pos: 12.5,40.5 + parent: 1 + type: Transform + - uid: 8409 + components: + - pos: 11.5,44.5 + parent: 1 + type: Transform + - uid: 9110 + components: + - pos: 5.5,-23.5 + parent: 1 + type: Transform + - uid: 9327 + components: + - pos: -43.5,11.5 + parent: 1 + type: Transform + - uid: 10385 + components: + - pos: 34.5,-17.5 + parent: 1 + type: Transform +- proto: DrinkBottleOfNothingFull + entities: + - uid: 6616 + components: + - pos: -15.221133,5.7888036 + parent: 1 + type: Transform +- proto: DrinkBottleWine + entities: + - uid: 8367 + components: + - pos: 28.565235,49.837475 + parent: 1 + type: Transform +- proto: DrinkDoctorsDelightGlass + entities: + - uid: 8489 + components: + - pos: 16.144281,32.546616 + parent: 1 + type: Transform +- proto: DrinkDriestMartiniGlass + entities: + - uid: 17381 + components: + - pos: -47.28389,35.84451 + parent: 1 + type: Transform +- proto: DrinkFlask + entities: + - uid: 8074 + components: + - pos: -4.482217,79.8525 + parent: 1 + type: Transform +- proto: DrinkGlass + entities: + - uid: 4026 + components: + - pos: -0.59446716,-0.80342096 + parent: 1 + type: Transform + - uid: 8956 + components: + - pos: -12.645039,-3.25968 + parent: 1 + type: Transform + - uid: 9293 + components: + - pos: 12.67594,-1.3800613 + parent: 1 + type: Transform + - uid: 17296 + components: + - pos: -4.7264047,2.7601516 + parent: 1 + type: Transform +- proto: DrinkGoldenCup + entities: + - uid: 7258 + components: + - pos: 4.7445407,45.893764 + parent: 1 + type: Transform +- proto: DrinkIceCreamGlass + entities: + - uid: 9851 + components: + - flags: InContainer + type: MetaData + - parent: 9844 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: DrinkLean + entities: + - uid: 9302 + components: + - pos: 8.325398,0.6884294 + parent: 1 + type: Transform +- proto: DrinkMilkCarton + entities: + - uid: 9299 + components: + - pos: 5.60893,1.827802 + parent: 1 + type: Transform +- proto: DrinkMug + entities: + - uid: 8281 + components: + - pos: -28.63788,44.586548 + parent: 1 + type: Transform + - uid: 8282 + components: + - pos: -28.353905,44.3453 + parent: 1 + type: Transform +- proto: DrinkMugBlue + entities: + - uid: 8719 + components: + - pos: -10.5935335,-15.327366 + parent: 1 + type: Transform + - uid: 9208 + components: + - pos: 2.5492742,71.47509 + parent: 1 + type: Transform +- proto: DrinkMugDog + entities: + - uid: 8590 + components: + - pos: -26.584906,6.5633206 + parent: 1 + type: Transform + - uid: 9091 + components: + - pos: 4.278154,-33.29549 + parent: 1 + type: Transform +- proto: DrinkMugHeart + entities: + - uid: 8720 + components: + - pos: -10.394751,-15.49766 + parent: 1 + type: Transform +- proto: DrinkMugMetal + entities: + - uid: 9092 + components: + - pos: 4.507321,-33.378826 + parent: 1 + type: Transform +- proto: DrinkMugMoebius + entities: + - uid: 8444 + components: + - pos: 5.3876348,57.690006 + parent: 1 + type: Transform + - uid: 9334 + components: + - pos: -43.366463,7.49686 + parent: 1 + type: Transform +- proto: DrinkMugOne + entities: + - uid: 9207 + components: + - pos: 2.4034402,71.704254 + parent: 1 + type: Transform +- proto: DrinkMugRainbow + entities: + - uid: 8670 + components: + - pos: -6.3873754,21.667553 + parent: 1 + type: Transform +- proto: DrinkRumBottleFull + entities: + - uid: 8362 + components: + - pos: 43.673214,51.17009 + parent: 1 + type: Transform +- proto: DrinkShaker + entities: + - uid: 17299 + components: + - pos: -10.796385,6.7194715 + parent: 1 + type: Transform + - uid: 17300 + components: + - pos: -10.6047,6.421458 + parent: 1 + type: Transform +- proto: DrinkShotGlass + entities: + - uid: 3187 + components: + - pos: 46.64082,46.78565 + parent: 1 + type: Transform + - uid: 13314 + components: + - pos: -28.208918,3.5744889 + parent: 1 + type: Transform + - uid: 17302 + components: + - pos: -11.013691,6.5249143 + parent: 1 + type: Transform +- proto: DrinkWaterCup + entities: + - uid: 6951 + components: + - pos: 25.367998,22.514523 + parent: 1 + type: Transform + - uid: 6952 + components: + - pos: 25.48159,22.429377 + parent: 1 + type: Transform + - uid: 8442 + components: + - pos: 5.5438213,57.47714 + parent: 1 + type: Transform + - uid: 8443 + components: + - pos: 5.67161,57.67581 + parent: 1 + type: Transform +- proto: DrinkWineGlass + entities: + - uid: 8368 + components: + - pos: 28.820814,49.62461 + parent: 1 + type: Transform + - uid: 8369 + components: + - pos: 28.991198,49.88005 + parent: 1 + type: Transform +- proto: Dropper + entities: + - uid: 8535 + components: + - pos: 6.6016774,22.699707 + parent: 1 + type: Transform + - uid: 8536 + components: + - pos: 6.6584716,22.543604 + parent: 1 + type: Transform +- proto: EmergencyLight + entities: + - uid: 11340 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-13.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 11341 + components: + - pos: -18.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 11342 + components: + - pos: 18.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 11343 + components: + - pos: 44.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 11344 + components: + - rot: 3.141592653589793 rad + pos: 44.5,13.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 11345 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,2.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 11346 + components: + - pos: 18.5,15.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 11347 + components: + - rot: 3.141592653589793 rad + pos: -0.5,13.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 11348 + components: + - pos: -18.5,15.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 11349 + components: + - rot: 3.141592653589793 rad + pos: -44.5,13.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 11350 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,0.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 11351 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,0.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 11352 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 11353 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-0.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 11354 + components: + - pos: 12.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 11355 + components: + - pos: -8.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 11356 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 11357 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 11358 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 11359 + components: + - rot: 3.141592653589793 rad + pos: -34.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 11360 + components: + - pos: -2.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 11361 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 11362 + components: + - pos: -33.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 11363 + components: + - pos: -7.5,64.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 11364 + components: + - pos: 11.5,61.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 11366 + components: + - rot: 3.141592653589793 rad + pos: -6.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 11367 + components: + - rot: 3.141592653589793 rad + pos: 4.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 11369 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 11370 + components: + - pos: -16.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 11371 + components: + - rot: 3.141592653589793 rad + pos: -15.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 11372 + components: + - pos: 24.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 11373 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 11374 + components: + - rot: 3.141592653589793 rad + pos: 44.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 13994 + components: + - pos: -0.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 13995 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,7.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 13996 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14091 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,78.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14219 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,78.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 18156 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,43.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 18157 + components: + - pos: -20.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 18158 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 18159 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,7.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 18160 + components: + - pos: -25.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 18161 + components: + - pos: -9.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 18162 + components: + - pos: 8.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 18163 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,4.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 18164 + components: + - rot: 3.141592653589793 rad + pos: 28.5,13.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 18165 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,33.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 18166 + components: + - pos: 35.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 18167 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 18168 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 18169 + components: + - pos: -0.5,83.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 18170 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight +- proto: Emitter + entities: + - uid: 9187 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-21.5 + parent: 1 + type: Transform +- proto: EncryptionKeyCargo + entities: + - uid: 6461 + components: + - flags: InContainer + type: MetaData + - parent: 4703 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyCommand + entities: + - uid: 8436 + components: + - flags: InContainer + type: MetaData + - parent: 7316 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyCommon + entities: + - uid: 3730 + components: + - flags: InContainer + type: MetaData + - parent: 3729 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyEngineering + entities: + - uid: 4349 + components: + - flags: InContainer + type: MetaData + - parent: 3982 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyMedical + entities: + - uid: 3587 + components: + - flags: InContainer + type: MetaData + - parent: 3583 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyScience + entities: + - uid: 18435 + components: + - flags: InContainer + type: MetaData + - parent: 18434 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeySecurity + entities: + - uid: 4569 + components: + - flags: InContainer + type: MetaData + - parent: 4391 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyService + entities: + - uid: 18447 + components: + - flags: InContainer + type: MetaData + - parent: 18446 + type: Transform + - canCollide: False + type: Physics +- proto: ExosuitFabricator + entities: + - uid: 2604 + components: + - pos: -16.5,30.5 + parent: 1 + type: Transform +- proto: ExtinguisherCabinetFilled + entities: + - uid: 18367 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-35.5 + parent: 1 + type: Transform + - uid: 18368 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-19.5 + parent: 1 + type: Transform + - uid: 18369 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-12.5 + parent: 1 + type: Transform + - uid: 18370 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-30.5 + parent: 1 + type: Transform + - uid: 18371 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-13.5 + parent: 1 + type: Transform + - uid: 18372 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-10.5 + parent: 1 + type: Transform + - uid: 18374 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,7.5 + parent: 1 + type: Transform + - uid: 18375 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,16.5 + parent: 1 + type: Transform + - uid: 18376 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,17.5 + parent: 1 + type: Transform + - uid: 18377 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,42.5 + parent: 1 + type: Transform + - uid: 18378 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,35.5 + parent: 1 + type: Transform + - uid: 18379 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,39.5 + parent: 1 + type: Transform + - uid: 18380 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,27.5 + parent: 1 + type: Transform + - uid: 18381 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,10.5 + parent: 1 + type: Transform + - uid: 18382 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-4.5 + parent: 1 + type: Transform + - uid: 18383 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-10.5 + parent: 1 + type: Transform + - uid: 18384 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-5.5 + parent: 1 + type: Transform + - uid: 18385 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,0.5 + parent: 1 + type: Transform + - uid: 18386 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,12.5 + parent: 1 + type: Transform + - uid: 18387 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,24.5 + parent: 1 + type: Transform + - uid: 18388 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,20.5 + parent: 1 + type: Transform + - uid: 18389 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,34.5 + parent: 1 + type: Transform + - uid: 18390 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,39.5 + parent: 1 + type: Transform + - uid: 18391 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,33.5 + parent: 1 + type: Transform + - uid: 18392 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,39.5 + parent: 1 + type: Transform + - uid: 18393 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,51.5 + parent: 1 + type: Transform + - uid: 18394 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,54.5 + parent: 1 + type: Transform + - uid: 18395 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,65.5 + parent: 1 + type: Transform + - uid: 18396 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,53.5 + parent: 1 + type: Transform + - uid: 18397 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,58.5 + parent: 1 + type: Transform + - uid: 18398 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,46.5 + parent: 1 + type: Transform + - uid: 18399 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,7.5 + parent: 1 + type: Transform + - uid: 18400 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,0.5 + parent: 1 + type: Transform + - uid: 18401 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,11.5 + parent: 1 + type: Transform + - uid: 18402 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-2.5 + parent: 1 + type: Transform + - uid: 18404 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,21.5 + parent: 1 + type: Transform + - uid: 18405 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,29.5 + parent: 1 + type: Transform + - uid: 18406 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,29.5 + parent: 1 + type: Transform + - uid: 18407 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,75.5 + parent: 1 + type: Transform + - uid: 18408 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,83.5 + parent: 1 + type: Transform + - uid: 18409 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,30.5 + parent: 1 + type: Transform + - uid: 18410 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-37.5 + parent: 1 + type: Transform + - uid: 18411 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-7.5 + parent: 1 + type: Transform + - uid: 18412 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,12.5 + parent: 1 + type: Transform + - uid: 18413 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,16.5 + parent: 1 + type: Transform +- proto: FaxMachineBase + entities: + - uid: 2657 + components: + - pos: 12.5,22.5 + parent: 1 + type: Transform + - uid: 4346 + components: + - pos: -34.5,9.5 + parent: 1 + type: Transform + - name: Mail Room + type: FaxMachine + - uid: 6676 + components: + - pos: -28.5,7.5 + parent: 1 + type: Transform + - name: Library + type: FaxMachine + - uid: 6847 + components: + - pos: 40.5,46.5 + parent: 1 + type: Transform + - uid: 7283 + components: + - pos: 5.5,64.5 + parent: 1 + type: Transform + - name: Lawyer's Office + type: FaxMachine + - uid: 8230 + components: + - pos: -19.5,53.5 + parent: 1 + type: Transform + - name: Security + type: FaxMachine + - uid: 8284 + components: + - pos: -28.5,43.5 + parent: 1 + type: Transform + - name: Perma + type: FaxMachine + - uid: 8697 + components: + - pos: -9.5,28.5 + parent: 1 + type: Transform + - name: Science + type: FaxMachine + - uid: 9177 + components: + - pos: 13.5,-11.5 + parent: 1 + type: Transform + - name: Engineering + type: FaxMachine + - uid: 9226 + components: + - pos: 24.5,4.5 + parent: 1 + type: Transform + - name: HoP's Office + type: FaxMachine + - uid: 17613 + components: + - pos: 5.5,73.5 + parent: 1 + type: Transform + - name: Bridge + type: FaxMachine + - uid: 18175 + components: + - pos: 0.5,3.5 + parent: 8756 + type: Transform + - name: Captain's Private Shuttle + type: FaxMachine +- proto: FaxMachineCaptain + entities: + - uid: 6800 + components: + - pos: -8.5,74.5 + parent: 1 + type: Transform +- proto: FigureSpawner + entities: + - uid: 9924 + components: + - pos: -20.5,-37.5 + parent: 1 + type: Transform + - uid: 9925 + components: + - pos: -19.5,-36.5 + parent: 1 + type: Transform + - uid: 9926 + components: + - pos: -19.5,-37.5 + parent: 1 + type: Transform +- proto: filingCabinet + entities: + - uid: 6844 + components: + - pos: 41.5,46.5 + parent: 1 + type: Transform +- proto: filingCabinetTall + entities: + - uid: 8438 + components: + - pos: 2.5,62.5 + parent: 1 + type: Transform +- proto: filingCabinetTallRandom + entities: + - uid: 3166 + components: + - pos: -34.5,11.5 + parent: 1 + type: Transform +- proto: FireAlarm + entities: + - uid: 8155 + components: + - pos: -40.5,29.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 7827 + - 7913 + - 7922 + - 8154 + - 7812 + type: DeviceNetwork + - devices: + - 7827 + - 7913 + - 7922 + - 8154 + - 7812 + type: DeviceList + - uid: 9150 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,9.5 + parent: 1 + type: Transform + - devices: + - 5769 + - 5770 + - 5771 + - 5772 + - 8926 + - 5783 + - 5784 + - 5785 + - 9048 + - 5760 + - 5759 + - 5758 + - 5757 + - 5779 + - 5780 + - 5781 + - 5778 + - 5777 + - 5776 + type: DeviceList + - uid: 17329 + components: + - rot: 3.141592653589793 rad + pos: 1.5,75.5 + parent: 1 + type: Transform + - devices: + - 6125 + - 6124 + - 6122 + - 6123 + type: DeviceList + - uid: 17333 + components: + - pos: 7.5,75.5 + parent: 1 + type: Transform + - devices: + - 6125 + type: DeviceList + - uid: 17337 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,70.5 + parent: 1 + type: Transform + - devices: + - 6120 + - 6121 + - 6123 + - 6122 + type: DeviceList + - uid: 17340 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,66.5 + parent: 1 + type: Transform + - devices: + - 6121 + - 6120 + - 6127 + - 6128 + - 6126 + - 6115 + - 6114 + - 6113 + - 6129 + type: DeviceList + - uid: 17342 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,62.5 + parent: 1 + type: Transform + - devices: + - 6129 + type: DeviceList + - uid: 17345 + components: + - rot: 3.141592653589793 rad + pos: 7.5,51.5 + parent: 1 + type: Transform + - devices: + - 6119 + - 6118 + type: DeviceList + - uid: 17348 + components: + - pos: -3.5,58.5 + parent: 1 + type: Transform + - devices: + - 6113 + - 6114 + - 6115 + - 6110 + - 6111 + - 6112 + - 6119 + - 6118 + - 6116 + - 6117 + type: DeviceList + - uid: 17353 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,43.5 + parent: 1 + type: Transform + - devices: + - 6130 + - 6131 + - 6110 + - 6111 + - 6112 + - 6133 + - 6132 + - 5635 + - 5636 + - 5637 + type: DeviceList + - uid: 17356 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,54.5 + parent: 1 + type: Transform + - devices: + - 6116 + - 6117 + - 17363 + - 17362 + - 8180 + - 17359 + - 17360 + - 17361 + - 17364 + type: DeviceList + - uid: 17367 + components: + - pos: -15.5,47.5 + parent: 1 + type: Transform + - devices: + - 8180 + - 17359 + - 17360 + - 17361 + - 17368 + - 17369 + - 17370 + - 17371 + - 6130 + - 6131 + type: DeviceList + - uid: 17374 + components: + - pos: -32.5,50.5 + parent: 1 + type: Transform + - devices: + - 7022 + - 7023 + type: DeviceList + - uid: 17377 + components: + - pos: -46.5,45.5 + parent: 1 + type: Transform + - devices: + - 7898 + - 7899 + - 7894 + - 7895 + type: DeviceList + - uid: 17385 + components: + - pos: -39.5,39.5 + parent: 1 + type: Transform + - devices: + - 7898 + - 7899 + - 7894 + - 7895 + - 5835 + - 5833 + - 5834 + type: DeviceList + - uid: 17388 + components: + - pos: -20.5,39.5 + parent: 1 + type: Transform + - devices: + - 5632 + - 5633 + - 5634 + - 5839 + - 5840 + - 5841 + - 6138 + - 6136 + type: DeviceList + - uid: 17392 + components: + - rot: 3.141592653589793 rad + pos: -12.5,35.5 + parent: 1 + type: Transform + - devices: + - 9591 + - 9590 + - 9589 + - 5633 + - 5632 + - 5634 + - 6134 + - 6135 + - 6137 + type: DeviceList + - uid: 17397 + components: + - pos: -5.5,39.5 + parent: 1 + type: Transform + - devices: + - 5644 + - 5645 + - 5646 + - 5640 + - 5639 + - 5638 + - 5637 + - 5636 + - 5635 + - 9591 + - 9590 + - 9589 + type: DeviceList + - uid: 17399 + components: + - rot: 3.141592653589793 rad + pos: 19.5,35.5 + parent: 1 + type: Transform + - devices: + - 5631 + - 5630 + - 5629 + - 5688 + - 5689 + - 5690 + - 5691 + - 5687 + - 5686 + - 7267 + - 7268 + - 5708 + - 5709 + - 5710 + type: DeviceList + - uid: 17404 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,41.5 + parent: 1 + type: Transform + - devices: + - 5686 + - 5687 + - 5689 + - 5688 + type: DeviceList + - uid: 17407 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,40.5 + parent: 1 + type: Transform + - devices: + - 5691 + - 5690 + type: DeviceList + - uid: 17409 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,41.5 + parent: 1 + type: Transform + - devices: + - 5700 + - 5699 + - 5698 + - 5697 + - 5708 + - 5709 + - 5710 + - 5711 + - 5712 + - 5692 + - 5693 + - 5694 + type: DeviceList + - uid: 17410 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,45.5 + parent: 1 + type: Transform + - devices: + - 5712 + - 5711 + type: DeviceList + - uid: 17411 + components: + - pos: 35.5,39.5 + parent: 1 + type: Transform + - devices: + - 5694 + - 5693 + - 5692 + - 5700 + - 5699 + - 5698 + - 5697 + - 5708 + - 5709 + - 5710 + - 5711 + - 5712 + type: DeviceList + - uid: 17415 + components: + - rot: 3.141592653589793 rad + pos: 43.5,35.5 + parent: 1 + type: Transform + - devices: + - 5692 + - 5693 + - 5694 + - 6344 + - 6345 + - 6346 + type: DeviceList + - uid: 17419 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,25.5 + parent: 1 + type: Transform + - devices: + - 5704 + - 5703 + - 5702 + - 5701 + - 5725 + - 5726 + - 5727 + - 7269 + - 17420 + - 5697 + - 5698 + - 5699 + - 5700 + type: DeviceList + - uid: 17423 + components: + - pos: 25.5,23.5 + parent: 1 + type: Transform + - devices: + - 5727 + - 5726 + - 5725 + - 5724 + - 5723 + - 5722 + type: DeviceList + - uid: 17425 + components: + - rot: 3.141592653589793 rad + pos: 28.5,12.5 + parent: 1 + type: Transform + - devices: + - 5722 + - 5723 + - 5724 + - 5685 + - 5684 + - 5683 + - 5701 + - 5702 + - 5703 + - 5704 + - 5719 + - 5720 + - 5721 + - 5717 + - 5716 + - 5715 + type: DeviceList + - uid: 17431 + components: + - rot: 3.141592653589793 rad + pos: 43.5,12.5 + parent: 1 + type: Transform + - devices: + - 5717 + - 5716 + - 5715 + type: DeviceList + - uid: 17432 + components: + - pos: 17.5,16.5 + parent: 1 + type: Transform + - devices: + - 5683 + - 5684 + - 5685 + - 5623 + - 5624 + - 5625 + type: DeviceList + - uid: 17435 + components: + - rot: 3.141592653589793 rad + pos: -11.5,12.5 + parent: 1 + type: Transform + - devices: + - 5623 + - 5624 + - 5625 + - 5663 + - 5662 + - 5661 + - 5772 + - 5771 + - 5769 + - 5620 + - 5621 + - 5622 + - 5655 + - 5654 + - 5653 + - 5658 + - 5659 + - 5660 + type: DeviceList + - uid: 17436 + components: + - pos: 10.5,16.5 + parent: 1 + type: Transform + - devices: + - 5623 + - 5624 + - 5625 + - 5663 + - 5662 + - 5661 + - 5772 + - 5771 + - 5769 + - 5620 + - 5621 + - 5622 + - 5655 + - 5654 + - 5653 + - 5658 + - 5659 + - 5660 + - 18237 + type: DeviceList + - uid: 17440 + components: + - rot: 3.141592653589793 rad + pos: -7.5,20.5 + parent: 1 + type: Transform + - devices: + - 5657 + - 5656 + - 4341 + type: DeviceList + - uid: 17444 + components: + - rot: 3.141592653589793 rad + pos: -14.5,23.5 + parent: 1 + type: Transform + - devices: + - 6363 + - 4341 + - 4344 + - 4338 + - 4340 + - 6364 + - 4343 + - 6365 + type: DeviceList + - uid: 17446 + components: + - rot: 3.141592653589793 rad + pos: -21.5,31.5 + parent: 1 + type: Transform + - devices: + - 6138 + - 6134 + - 6135 + - 6137 + - 6363 + type: DeviceList + - uid: 17448 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,29.5 + parent: 1 + type: Transform + - devices: + - 17449 + - 6365 + type: DeviceList + - uid: 17451 + components: + - pos: 7.5,21.5 + parent: 1 + type: Transform + - devices: + - 6399 + - 6400 + - 6398 + type: DeviceList + - uid: 17454 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,25.5 + parent: 1 + type: Transform + - devices: + - 6398 + - 6391 + - 6392 + - 6396 + - 6397 + - 6394 + - 6395 + - 6393 + type: DeviceList + - uid: 17465 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,25.5 + parent: 1 + type: Transform + - devices: + - 5667 + - 5668 + - 6392 + - 6391 + - 6393 + type: DeviceList + - uid: 17467 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,25.5 + parent: 1 + type: Transform + - devices: + - 5638 + - 5639 + - 5640 + - 5648 + - 5651 + - 5652 + - 5658 + - 5659 + - 5660 + - 5664 + - 5665 + - 5666 + type: DeviceList + - uid: 17471 + components: + - pos: -26.5,16.5 + parent: 1 + type: Transform + - devices: + - 5620 + - 5621 + - 5622 + - 5673 + - 5672 + - 5671 + - 5670 + type: DeviceList + - uid: 17482 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,8.5 + parent: 1 + type: Transform + - devices: + - 5670 + type: DeviceList + - uid: 17487 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,32.5 + parent: 1 + type: Transform + - devices: + - 5677 + - 5678 + - 5679 + - 5838 + - 5837 + - 5836 + type: DeviceList + - uid: 17488 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,18.5 + parent: 1 + type: Transform + - uid: 17490 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,18.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 7827 + - 7913 + - 7922 + type: DeviceNetwork + - devices: + - 5832 + - 5831 + - 7827 + - 7913 + - 7922 + type: DeviceList + - uid: 17493 + components: + - rot: 3.141592653589793 rad + pos: -38.5,12.5 + parent: 1 + type: Transform + - devices: + - 5674 + - 5675 + - 5676 + - 5824 + - 5832 + - 5831 + type: DeviceList + - uid: 17495 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,10.5 + parent: 1 + type: Transform + - devices: + - 5824 + - 5826 + - 5822 + - 5821 + - 5823 + - 6650 + - 6667 + - 6656 + - 5825 + type: DeviceList + - uid: 17496 + components: + - pos: -34.5,8.5 + parent: 1 + type: Transform + - devices: + - 5817 + - 5818 + - 5819 + - 5820 + - 5823 + - 5822 + - 5821 + type: DeviceList + - uid: 17498 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,0.5 + parent: 1 + type: Transform + - devices: + - 5808 + - 5810 + - 5809 + - 5820 + - 5819 + - 5818 + - 5817 + - 5670 + - 5680 + - 5681 + - 5682 + - 6649 + - 6666 + type: DeviceList + - uid: 17500 + components: + - pos: -25.5,-6.5 + parent: 1 + type: Transform + - devices: + - 9431 + - 9430 + - 9429 + - 5809 + - 5810 + - 5808 + type: DeviceList + - uid: 17503 + components: + - pos: -18.5,-6.5 + parent: 1 + type: Transform + - devices: + - 9429 + - 9430 + - 9431 + - 5619 + - 800 + - 797 + type: DeviceList + - uid: 17506 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-10.5 + parent: 1 + type: Transform + - devices: + - 797 + - 800 + - 5619 + - 5765 + - 5766 + - 5746 + - 5747 + - 5748 + - 5757 + - 5758 + - 5759 + - 5760 + - 5749 + - 5750 + - 5753 + - 5754 + - 5755 + - 5756 + - 5628 + - 5627 + - 5626 + - 5768 + - 5767 + - 5789 + - 5788 + - 5787 + type: DeviceList + - uid: 17508 + components: + - pos: 7.5,-6.5 + parent: 1 + type: Transform + - devices: + - 797 + - 800 + - 5619 + - 5765 + - 5766 + - 5746 + - 5747 + - 5748 + - 5757 + - 5758 + - 5759 + - 5760 + - 5749 + - 5750 + - 5753 + - 5754 + - 5755 + - 5756 + - 5628 + - 5627 + - 5626 + - 5768 + - 5767 + - 5789 + - 5788 + - 5787 + type: DeviceList + - uid: 17512 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-14.5 + parent: 1 + type: Transform + - devices: + - 5746 + - 5747 + - 5748 + - 5749 + - 5750 + - 5753 + - 5754 + - 5755 + - 5756 + - 5763 + - 5764 + - 5761 + - 5762 + type: DeviceList + - uid: 17514 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,2.5 + parent: 1 + type: Transform + - devices: + - 5789 + - 5788 + - 5787 + - 9048 + - 5785 + - 5784 + - 5783 + - 9014 + - 9013 + - 9049 + type: DeviceList + - uid: 17516 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,10.5 + parent: 1 + type: Transform + - devices: + - 8926 + - 9014 + - 9013 + - 9049 + - 18237 + type: DeviceList + - uid: 17518 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,4.5 + parent: 1 + type: Transform + - devices: + - 5791 + - 5790 + - 5792 + - 17520 + type: DeviceList + - uid: 17522 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-2.5 + parent: 1 + type: Transform + - devices: + - 5719 + - 5720 + - 5721 + - 17520 + - 5792 + - 5790 + - 5807 + - 5806 + - 5805 + type: DeviceList + - uid: 17523 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,8.5 + parent: 1 + type: Transform + - devices: + - 5719 + - 5720 + - 5721 + - 17520 + - 5792 + - 5790 + - 5807 + - 5806 + - 5805 + type: DeviceList + - uid: 17526 + components: + - rot: 3.141592653589793 rad + pos: 40.5,-10.5 + parent: 1 + type: Transform + - devices: + - 5800 + - 5799 + - 5798 + type: DeviceList + - uid: 17528 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-10.5 + parent: 1 + type: Transform + - devices: + - 5800 + - 5799 + - 5798 + - 5807 + - 5806 + - 5805 + - 5793 + - 3584 + - 5795 + - 5796 + - 5797 + - 5801 + - 5802 + type: DeviceList + - uid: 17531 + components: + - pos: 15.5,-6.5 + parent: 1 + type: Transform + - devices: + - 5628 + - 5627 + - 5626 + - 5795 + - 5796 + - 5797 + - 3458 + - 17533 + type: DeviceList + - uid: 17535 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-16.5 + parent: 1 + type: Transform + - devices: + - 5766 + - 5765 + - 5763 + - 5764 + - 7107 + - 7106 + type: DeviceList + - uid: 17537 + components: + - pos: -9.5,-20.5 + parent: 1 + type: Transform + - devices: + - 7106 + - 7108 + - 7109 + - 7166 + - 7173 + - 7174 + - 7175 + type: DeviceList + - uid: 17538 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-19.5 + parent: 1 + type: Transform + - devices: + - 7170 + type: DeviceList + - uid: 17540 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-16.5 + parent: 1 + type: Transform + - devices: + - 5767 + - 5768 + - 5761 + - 5762 + - 7171 + - 7172 + type: DeviceList + - uid: 17544 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-24.5 + parent: 1 + type: Transform + - devices: + - 7261 + - 7172 + - 7171 + - 7170 + - 7169 + - 9028 + - 9030 + - 9029 + type: DeviceList + - uid: 17547 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-31.5 + parent: 1 + type: Transform + - devices: + - 9029 + - 9030 + - 9028 + - 7168 + - 7167 + - 7164 + - 7165 + - 7161 + - 7162 + - 7163 + type: DeviceList +- proto: FireAlarmElectronics + entities: + - uid: 9131 + components: + - pos: 13.701005,-25.229437 + parent: 1 + type: Transform +- proto: FireAxeCabinetFilled + entities: + - uid: 9205 + components: + - pos: -10.5,-20.5 + parent: 1 + type: Transform + - uid: 9206 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,81.5 + parent: 1 + type: Transform +- proto: FireExtinguisher + entities: + - uid: 7125 + components: + - pos: -13.517798,27.785059 + parent: 1 + type: Transform +- proto: Firelock + entities: + - uid: 5867 + components: + - rot: 3.141592653589793 rad + pos: -13.5,66.5 + parent: 1 + type: Transform + - uid: 5896 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,55.5 + parent: 1 + type: Transform + - uid: 5897 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,55.5 + parent: 1 + type: Transform + - uid: 5900 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,55.5 + parent: 1 + type: Transform + - uid: 7166 + components: + - pos: -11.5,-26.5 + parent: 1 + type: Transform + - uid: 7173 + components: + - pos: -11.5,-27.5 + parent: 1 + type: Transform + - uid: 7174 + components: + - pos: -11.5,-28.5 + parent: 1 + type: Transform + - uid: 7175 + components: + - pos: -11.5,-29.5 + parent: 1 + type: Transform + - uid: 7202 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,50.5 + parent: 1 + type: Transform + - uid: 7261 + components: + - pos: 14.5,-23.5 + parent: 1 + type: Transform + - uid: 7317 + components: + - pos: 21.5,-28.5 + parent: 1 + type: Transform + - uid: 7318 + components: + - pos: 29.5,-24.5 + parent: 1 + type: Transform + - uid: 10067 + components: + - pos: -30.5,-16.5 + parent: 1 + type: Transform + - uid: 13464 + components: + - rot: 3.141592653589793 rad + pos: -36.5,52.5 + parent: 1 + type: Transform + - uid: 13465 + components: + - rot: 3.141592653589793 rad + pos: -26.5,57.5 + parent: 1 + type: Transform + - uid: 17331 + components: + - pos: -8.5,71.5 + parent: 1 + type: Transform + - uid: 17533 + components: + - pos: 19.5,-6.5 + parent: 1 + type: Transform +- proto: FirelockEdge + entities: + - uid: 7812 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,27.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 8155 + type: DeviceNetwork + - uid: 8154 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,28.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 8155 + type: DeviceNetwork +- proto: FirelockElectronics + entities: + - uid: 9132 + components: + - pos: 13.367671,-25.458605 + parent: 1 + type: Transform + - uid: 9133 + components: + - pos: 13.263505,-25.166937 + parent: 1 + type: Transform +- proto: FirelockGlass + entities: + - uid: 157 + components: + - pos: -23.5,12.5 + parent: 1 + type: Transform + - uid: 797 + components: + - pos: -13.5,-7.5 + parent: 1 + type: Transform + - uid: 800 + components: + - pos: -13.5,-8.5 + parent: 1 + type: Transform + - uid: 3458 + components: + - pos: 21.5,-6.5 + parent: 1 + type: Transform + - uid: 3584 + components: + - pos: 30.5,-10.5 + parent: 1 + type: Transform + - uid: 4163 + components: + - pos: -39.5,12.5 + parent: 1 + type: Transform + - uid: 4338 + components: + - pos: -19.5,18.5 + parent: 1 + type: Transform + - uid: 4340 + components: + - pos: -22.5,23.5 + parent: 1 + type: Transform + - uid: 4341 + components: + - pos: -8.5,22.5 + parent: 1 + type: Transform + - uid: 4343 + components: + - pos: -10.5,17.5 + parent: 1 + type: Transform + - uid: 4344 + components: + - pos: -19.5,19.5 + parent: 1 + type: Transform + - uid: 5619 + components: + - pos: -13.5,-9.5 + parent: 1 + type: Transform + - uid: 5620 + components: + - pos: -13.5,13.5 + parent: 1 + type: Transform + - uid: 5621 + components: + - pos: -13.5,14.5 + parent: 1 + type: Transform + - uid: 5622 + components: + - pos: -13.5,15.5 + parent: 1 + type: Transform + - uid: 5623 + components: + - pos: 12.5,13.5 + parent: 1 + type: Transform + - uid: 5624 + components: + - pos: 12.5,14.5 + parent: 1 + type: Transform + - uid: 5625 + components: + - pos: 12.5,15.5 + parent: 1 + type: Transform + - uid: 5626 + components: + - pos: 12.5,-7.5 + parent: 1 + type: Transform + - uid: 5627 + components: + - pos: 12.5,-8.5 + parent: 1 + type: Transform + - uid: 5628 + components: + - pos: 12.5,-9.5 + parent: 1 + type: Transform + - uid: 5629 + components: + - pos: 13.5,36.5 + parent: 1 + type: Transform + - uid: 5630 + components: + - pos: 13.5,37.5 + parent: 1 + type: Transform + - uid: 5631 + components: + - pos: 13.5,38.5 + parent: 1 + type: Transform + - uid: 5632 + components: + - pos: -17.5,38.5 + parent: 1 + type: Transform + - uid: 5633 + components: + - pos: -17.5,37.5 + parent: 1 + type: Transform + - uid: 5634 + components: + - pos: -17.5,36.5 + parent: 1 + type: Transform + - uid: 5635 + components: + - pos: -1.5,39.5 + parent: 1 + type: Transform + - uid: 5636 + components: + - pos: -0.5,39.5 + parent: 1 + type: Transform + - uid: 5637 + components: + - pos: 0.5,39.5 + parent: 1 + type: Transform + - uid: 5638 + components: + - pos: -1.5,35.5 + parent: 1 + type: Transform + - uid: 5639 + components: + - pos: -0.5,35.5 + parent: 1 + type: Transform + - uid: 5640 + components: + - pos: 0.5,35.5 + parent: 1 + type: Transform + - uid: 5644 + components: + - pos: 8.5,36.5 + parent: 1 + type: Transform + - uid: 5645 + components: + - pos: 8.5,37.5 + parent: 1 + type: Transform + - uid: 5646 + components: + - pos: 8.5,38.5 + parent: 1 + type: Transform + - uid: 5648 + components: + - pos: -2.5,19.5 + parent: 1 + type: Transform + - uid: 5651 + components: + - pos: -2.5,18.5 + parent: 1 + type: Transform + - uid: 5652 + components: + - pos: -2.5,17.5 + parent: 1 + type: Transform + - uid: 5653 + components: + - pos: -3.5,16.5 + parent: 1 + type: Transform + - uid: 5654 + components: + - pos: -4.5,16.5 + parent: 1 + type: Transform + - uid: 5655 + components: + - pos: -5.5,16.5 + parent: 1 + type: Transform + - uid: 5656 + components: + - pos: -5.5,20.5 + parent: 1 + type: Transform + - uid: 5657 + components: + - pos: -4.5,20.5 + parent: 1 + type: Transform + - uid: 5658 + components: + - pos: -1.5,16.5 + parent: 1 + type: Transform + - uid: 5659 + components: + - pos: -0.5,16.5 + parent: 1 + type: Transform + - uid: 5660 + components: + - pos: 0.5,16.5 + parent: 1 + type: Transform + - uid: 5661 + components: + - pos: 2.5,16.5 + parent: 1 + type: Transform + - uid: 5662 + components: + - pos: 3.5,16.5 + parent: 1 + type: Transform + - uid: 5663 + components: + - pos: 4.5,16.5 + parent: 1 + type: Transform + - uid: 5664 + components: + - pos: 1.5,17.5 + parent: 1 + type: Transform + - uid: 5665 + components: + - pos: 1.5,18.5 + parent: 1 + type: Transform + - uid: 5666 + components: + - pos: 1.5,19.5 + parent: 1 + type: Transform + - uid: 5667 + components: + - pos: 3.5,20.5 + parent: 1 + type: Transform + - uid: 5668 + components: + - pos: 4.5,20.5 + parent: 1 + type: Transform + - uid: 5670 + components: + - pos: -29.5,10.5 + parent: 1 + type: Transform + - uid: 5671 + components: + - pos: -29.5,13.5 + parent: 1 + type: Transform + - uid: 5672 + components: + - pos: -29.5,14.5 + parent: 1 + type: Transform + - uid: 5673 + components: + - pos: -29.5,15.5 + parent: 1 + type: Transform + - uid: 5674 + components: + - pos: -33.5,13.5 + parent: 1 + type: Transform + - uid: 5675 + components: + - pos: -33.5,14.5 + parent: 1 + type: Transform + - uid: 5676 + components: + - pos: -33.5,15.5 + parent: 1 + type: Transform + - uid: 5677 + components: + - pos: -32.5,16.5 + parent: 1 + type: Transform + - uid: 5678 + components: + - pos: -31.5,16.5 + parent: 1 + type: Transform + - uid: 5679 + components: + - pos: -30.5,16.5 + parent: 1 + type: Transform + - uid: 5680 + components: + - pos: -32.5,12.5 + parent: 1 + type: Transform + - uid: 5681 + components: + - pos: -31.5,12.5 + parent: 1 + type: Transform + - uid: 5682 + components: + - pos: -30.5,12.5 + parent: 1 + type: Transform + - uid: 5683 + components: + - pos: 20.5,13.5 + parent: 1 + type: Transform + - uid: 5684 + components: + - pos: 20.5,14.5 + parent: 1 + type: Transform + - uid: 5685 + components: + - pos: 20.5,15.5 + parent: 1 + type: Transform + - uid: 5686 + components: + - pos: 23.5,39.5 + parent: 1 + type: Transform + - uid: 5687 + components: + - pos: 22.5,39.5 + parent: 1 + type: Transform + - uid: 5688 + components: + - pos: 17.5,39.5 + parent: 1 + type: Transform + - uid: 5689 + components: + - pos: 18.5,39.5 + parent: 1 + type: Transform + - uid: 5690 + components: + - pos: 14.5,39.5 + parent: 1 + type: Transform + - uid: 5691 + components: + - pos: 15.5,39.5 + parent: 1 + type: Transform + - uid: 5692 + components: + - pos: 38.5,36.5 + parent: 1 + type: Transform + - uid: 5693 + components: + - pos: 38.5,37.5 + parent: 1 + type: Transform + - uid: 5694 + components: + - pos: 38.5,38.5 + parent: 1 + type: Transform + - uid: 5697 + components: + - pos: 29.5,35.5 + parent: 1 + type: Transform + - uid: 5698 + components: + - pos: 30.5,35.5 + parent: 1 + type: Transform + - uid: 5699 + components: + - pos: 31.5,35.5 + parent: 1 + type: Transform + - uid: 5700 + components: + - pos: 32.5,35.5 + parent: 1 + type: Transform + - uid: 5701 + components: + - pos: 29.5,16.5 + parent: 1 + type: Transform + - uid: 5702 + components: + - pos: 30.5,16.5 + parent: 1 + type: Transform + - uid: 5703 + components: + - pos: 31.5,16.5 + parent: 1 + type: Transform + - uid: 5704 + components: + - pos: 32.5,16.5 + parent: 1 + type: Transform + - uid: 5708 + components: + - pos: 28.5,36.5 + parent: 1 + type: Transform + - uid: 5709 + components: + - pos: 28.5,37.5 + parent: 1 + type: Transform + - uid: 5710 + components: + - pos: 28.5,38.5 + parent: 1 + type: Transform + - uid: 5711 + components: + - pos: 30.5,42.5 + parent: 1 + type: Transform + - uid: 5712 + components: + - pos: 31.5,42.5 + parent: 1 + type: Transform + - uid: 5713 + components: + - pos: 30.5,50.5 + parent: 1 + type: Transform + - uid: 5714 + components: + - pos: 31.5,50.5 + parent: 1 + type: Transform + - uid: 5715 + components: + - pos: 38.5,15.5 + parent: 1 + type: Transform + - uid: 5716 + components: + - pos: 38.5,14.5 + parent: 1 + type: Transform + - uid: 5717 + components: + - pos: 38.5,13.5 + parent: 1 + type: Transform + - uid: 5719 + components: + - pos: 30.5,12.5 + parent: 1 + type: Transform + - uid: 5720 + components: + - pos: 31.5,12.5 + parent: 1 + type: Transform + - uid: 5721 + components: + - pos: 32.5,12.5 + parent: 1 + type: Transform + - uid: 5722 + components: + - pos: 23.5,16.5 + parent: 1 + type: Transform + - uid: 5723 + components: + - pos: 24.5,16.5 + parent: 1 + type: Transform + - uid: 5724 + components: + - pos: 25.5,16.5 + parent: 1 + type: Transform + - uid: 5725 + components: + - pos: 28.5,19.5 + parent: 1 + type: Transform + - uid: 5726 + components: + - pos: 28.5,20.5 + parent: 1 + type: Transform + - uid: 5727 + components: + - pos: 28.5,21.5 + parent: 1 + type: Transform + - uid: 5746 + components: + - pos: -5.5,-10.5 + parent: 1 + type: Transform + - uid: 5747 + components: + - pos: -4.5,-10.5 + parent: 1 + type: Transform + - uid: 5748 + components: + - pos: -3.5,-10.5 + parent: 1 + type: Transform + - uid: 5749 + components: + - pos: -1.5,-10.5 + parent: 1 + type: Transform + - uid: 5750 + components: + - pos: -0.5,-10.5 + parent: 1 + type: Transform + - uid: 5753 + components: + - pos: 0.5,-10.5 + parent: 1 + type: Transform + - uid: 5754 + components: + - pos: 2.5,-10.5 + parent: 1 + type: Transform + - uid: 5755 + components: + - pos: 3.5,-10.5 + parent: 1 + type: Transform + - uid: 5756 + components: + - pos: 4.5,-10.5 + parent: 1 + type: Transform + - uid: 5757 + components: + - pos: -3.5,-6.5 + parent: 1 + type: Transform + - uid: 5758 + components: + - pos: -2.5,-6.5 + parent: 1 + type: Transform + - uid: 5759 + components: + - pos: 1.5,-6.5 + parent: 1 + type: Transform + - uid: 5760 + components: + - pos: 2.5,-6.5 + parent: 1 + type: Transform + - uid: 5761 + components: + - pos: 5.5,-12.5 + parent: 1 + type: Transform + - uid: 5762 + components: + - pos: 5.5,-13.5 + parent: 1 + type: Transform + - uid: 5763 + components: + - pos: -6.5,-12.5 + parent: 1 + type: Transform + - uid: 5764 + components: + - pos: -6.5,-13.5 + parent: 1 + type: Transform + - uid: 5765 + components: + - pos: -12.5,-10.5 + parent: 1 + type: Transform + - uid: 5766 + components: + - pos: -11.5,-10.5 + parent: 1 + type: Transform + - uid: 5767 + components: + - pos: 11.5,-10.5 + parent: 1 + type: Transform + - uid: 5768 + components: + - pos: 10.5,-10.5 + parent: 1 + type: Transform + - uid: 5769 + components: + - pos: -3.5,12.5 + parent: 1 + type: Transform + - uid: 5770 + components: + - pos: -2.5,12.5 + parent: 1 + type: Transform + - uid: 5771 + components: + - pos: 1.5,12.5 + parent: 1 + type: Transform + - uid: 5772 + components: + - pos: 2.5,12.5 + parent: 1 + type: Transform + - uid: 5776 + components: + - pos: -5.5,8.5 + parent: 1 + type: Transform + - uid: 5777 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform + - uid: 5778 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 5779 + components: + - pos: -8.5,5.5 + parent: 1 + type: Transform + - uid: 5780 + components: + - pos: -7.5,5.5 + parent: 1 + type: Transform + - uid: 5781 + components: + - pos: -6.5,5.5 + parent: 1 + type: Transform + - uid: 5782 + components: + - pos: -9.5,5.5 + parent: 1 + type: Transform + - uid: 5783 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 5784 + components: + - pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 5785 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 5787 + components: + - pos: 9.5,-5.5 + parent: 1 + type: Transform + - uid: 5788 + components: + - pos: 10.5,-5.5 + parent: 1 + type: Transform + - uid: 5789 + components: + - pos: 11.5,-5.5 + parent: 1 + type: Transform + - uid: 5790 + components: + - pos: 28.5,3.5 + parent: 1 + type: Transform + - uid: 5791 + components: + - pos: 26.5,3.5 + parent: 1 + type: Transform + - uid: 5792 + components: + - pos: 28.5,6.5 + parent: 1 + type: Transform + - uid: 5793 + components: + - pos: 29.5,-10.5 + parent: 1 + type: Transform + - uid: 5795 + components: + - pos: 23.5,-9.5 + parent: 1 + type: Transform + - uid: 5796 + components: + - pos: 23.5,-8.5 + parent: 1 + type: Transform + - uid: 5797 + components: + - pos: 23.5,-7.5 + parent: 1 + type: Transform + - uid: 5798 + components: + - pos: 38.5,-7.5 + parent: 1 + type: Transform + - uid: 5799 + components: + - pos: 38.5,-8.5 + parent: 1 + type: Transform + - uid: 5800 + components: + - pos: 38.5,-9.5 + parent: 1 + type: Transform + - uid: 5801 + components: + - pos: 25.5,-6.5 + parent: 1 + type: Transform + - uid: 5802 + components: + - pos: 26.5,-6.5 + parent: 1 + type: Transform + - uid: 5805 + components: + - pos: 30.5,-6.5 + parent: 1 + type: Transform + - uid: 5806 + components: + - pos: 31.5,-6.5 + parent: 1 + type: Transform + - uid: 5807 + components: + - pos: 32.5,-6.5 + parent: 1 + type: Transform + - uid: 5808 + components: + - pos: -30.5,-6.5 + parent: 1 + type: Transform + - uid: 5809 + components: + - pos: -32.5,-6.5 + parent: 1 + type: Transform + - uid: 5810 + components: + - pos: -31.5,-6.5 + parent: 1 + type: Transform + - uid: 5817 + components: + - pos: -33.5,7.5 + parent: 1 + type: Transform + - uid: 5818 + components: + - pos: -33.5,6.5 + parent: 1 + type: Transform + - uid: 5819 + components: + - pos: -33.5,5.5 + parent: 1 + type: Transform + - uid: 5820 + components: + - pos: -33.5,4.5 + parent: 1 + type: Transform + - uid: 5821 + components: + - pos: -36.5,6.5 + parent: 1 + type: Transform + - uid: 5822 + components: + - pos: -36.5,7.5 + parent: 1 + type: Transform + - uid: 5823 + components: + - pos: -35.5,3.5 + parent: 1 + type: Transform + - uid: 5824 + components: + - pos: -35.5,12.5 + parent: 1 + type: Transform + - uid: 5825 + components: + - pos: -41.5,9.5 + parent: 1 + type: Transform + - uid: 5826 + components: + - pos: -37.5,10.5 + parent: 1 + type: Transform + - uid: 5831 + components: + - pos: -39.5,16.5 + parent: 1 + type: Transform + - uid: 5832 + components: + - pos: -37.5,16.5 + parent: 1 + type: Transform + - uid: 5833 + components: + - pos: -33.5,37.5 + parent: 1 + type: Transform + - uid: 5834 + components: + - pos: -33.5,36.5 + parent: 1 + type: Transform + - uid: 5835 + components: + - pos: -33.5,38.5 + parent: 1 + type: Transform + - uid: 5836 + components: + - pos: -32.5,35.5 + parent: 1 + type: Transform + - uid: 5837 + components: + - pos: -31.5,35.5 + parent: 1 + type: Transform + - uid: 5838 + components: + - pos: -30.5,35.5 + parent: 1 + type: Transform + - uid: 5839 + components: + - pos: -29.5,36.5 + parent: 1 + type: Transform + - uid: 5840 + components: + - pos: -29.5,37.5 + parent: 1 + type: Transform + - uid: 5841 + components: + - pos: -29.5,38.5 + parent: 1 + type: Transform + - uid: 6014 + components: + - pos: -24.5,-26.5 + parent: 1 + type: Transform + - uid: 6110 + components: + - pos: -1.5,51.5 + parent: 1 + type: Transform + - uid: 6111 + components: + - pos: -0.5,51.5 + parent: 1 + type: Transform + - uid: 6112 + components: + - pos: 0.5,51.5 + parent: 1 + type: Transform + - uid: 6113 + components: + - pos: -1.5,58.5 + parent: 1 + type: Transform + - uid: 6114 + components: + - pos: -0.5,58.5 + parent: 1 + type: Transform + - uid: 6115 + components: + - pos: 0.5,58.5 + parent: 1 + type: Transform + - uid: 6116 + components: + - pos: -4.5,54.5 + parent: 1 + type: Transform + - uid: 6117 + components: + - pos: -4.5,53.5 + parent: 1 + type: Transform + - uid: 6118 + components: + - pos: 3.5,56.5 + parent: 1 + type: Transform + - uid: 6119 + components: + - pos: 3.5,53.5 + parent: 1 + type: Transform + - uid: 6120 + components: + - pos: -1.5,69.5 + parent: 1 + type: Transform + - uid: 6121 + components: + - pos: 0.5,69.5 + parent: 1 + type: Transform + - uid: 6122 + components: + - pos: -1.5,75.5 + parent: 1 + type: Transform + - uid: 6123 + components: + - pos: 0.5,75.5 + parent: 1 + type: Transform + - uid: 6124 + components: + - pos: -5.5,75.5 + parent: 1 + type: Transform + - uid: 6125 + components: + - pos: 5.5,75.5 + parent: 1 + type: Transform + - uid: 6126 + components: + - pos: 8.5,66.5 + parent: 1 + type: Transform + - uid: 6127 + components: + - pos: 8.5,68.5 + parent: 1 + type: Transform + - uid: 6128 + components: + - pos: 8.5,67.5 + parent: 1 + type: Transform + - uid: 6129 + components: + - pos: 1.5,63.5 + parent: 1 + type: Transform + - uid: 6130 + components: + - pos: -2.5,48.5 + parent: 1 + type: Transform + - uid: 6131 + components: + - pos: -2.5,50.5 + parent: 1 + type: Transform + - uid: 6132 + components: + - pos: 1.5,46.5 + parent: 1 + type: Transform + - uid: 6133 + components: + - pos: 1.5,47.5 + parent: 1 + type: Transform + - uid: 6134 + components: + - pos: -15.5,35.5 + parent: 1 + type: Transform + - uid: 6135 + components: + - pos: -14.5,35.5 + parent: 1 + type: Transform + - uid: 6136 + components: + - pos: -18.5,35.5 + parent: 1 + type: Transform + - uid: 6137 + components: + - pos: -13.5,35.5 + parent: 1 + type: Transform + - uid: 6138 + components: + - pos: -20.5,35.5 + parent: 1 + type: Transform + - uid: 6344 + components: + - pos: 43.5,41.5 + parent: 1 + type: Transform + - uid: 6345 + components: + - pos: 44.5,41.5 + parent: 1 + type: Transform + - uid: 6346 + components: + - pos: 45.5,43.5 + parent: 1 + type: Transform + - uid: 6363 + components: + - pos: -14.5,26.5 + parent: 1 + type: Transform + - uid: 6364 + components: + - pos: -10.5,18.5 + parent: 1 + type: Transform + - uid: 6365 + components: + - pos: -10.5,26.5 + parent: 1 + type: Transform + - uid: 6391 + components: + - pos: 9.5,23.5 + parent: 1 + type: Transform + - uid: 6392 + components: + - pos: 9.5,22.5 + parent: 1 + type: Transform + - uid: 6393 + components: + - pos: 6.5,26.5 + parent: 1 + type: Transform + - uid: 6394 + components: + - pos: 6.5,29.5 + parent: 1 + type: Transform + - uid: 6395 + components: + - pos: 7.5,29.5 + parent: 1 + type: Transform + - uid: 6396 + components: + - pos: 10.5,29.5 + parent: 1 + type: Transform + - uid: 6397 + components: + - pos: 13.5,28.5 + parent: 1 + type: Transform + - uid: 6398 + components: + - pos: 11.5,21.5 + parent: 1 + type: Transform + - uid: 6399 + components: + - pos: 5.5,18.5 + parent: 1 + type: Transform + - uid: 6400 + components: + - pos: 5.5,17.5 + parent: 1 + type: Transform + - uid: 6648 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-4.5 + parent: 1 + type: Transform + - uid: 6649 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-2.5 + parent: 1 + type: Transform + - uid: 6650 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-1.5 + parent: 1 + type: Transform + - uid: 6656 + components: + - pos: -41.5,-3.5 + parent: 1 + type: Transform + - uid: 6666 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-1.5 + parent: 1 + type: Transform + - uid: 6667 + components: + - pos: -40.5,-3.5 + parent: 1 + type: Transform + - uid: 7022 + components: + - pos: -26.5,48.5 + parent: 1 + type: Transform + - uid: 7023 + components: + - pos: -26.5,47.5 + parent: 1 + type: Transform + - uid: 7106 + components: + - pos: -8.5,-16.5 + parent: 1 + type: Transform + - uid: 7107 + components: + - pos: -12.5,-16.5 + parent: 1 + type: Transform + - uid: 7108 + components: + - pos: -9.5,-18.5 + parent: 1 + type: Transform + - uid: 7109 + components: + - pos: -12.5,-20.5 + parent: 1 + type: Transform + - uid: 7161 + components: + - pos: 11.5,-36.5 + parent: 1 + type: Transform + - uid: 7162 + components: + - pos: 12.5,-36.5 + parent: 1 + type: Transform + - uid: 7163 + components: + - pos: 13.5,-36.5 + parent: 1 + type: Transform + - uid: 7164 + components: + - pos: 6.5,-35.5 + parent: 1 + type: Transform + - uid: 7165 + components: + - pos: 7.5,-35.5 + parent: 1 + type: Transform + - uid: 7167 + components: + - pos: 6.5,-31.5 + parent: 1 + type: Transform + - uid: 7168 + components: + - pos: 7.5,-31.5 + parent: 1 + type: Transform + - uid: 7169 + components: + - pos: 8.5,-24.5 + parent: 1 + type: Transform + - uid: 7170 + components: + - pos: 8.5,-20.5 + parent: 1 + type: Transform + - uid: 7171 + components: + - pos: 11.5,-19.5 + parent: 1 + type: Transform + - uid: 7172 + components: + - pos: 12.5,-19.5 + parent: 1 + type: Transform + - uid: 7267 + components: + - pos: 25.5,35.5 + parent: 1 + type: Transform + - uid: 7268 + components: + - pos: 26.5,35.5 + parent: 1 + type: Transform + - uid: 7269 + components: + - pos: 28.5,32.5 + parent: 1 + type: Transform + - uid: 7827 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,20.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 17490 + - 8155 + type: DeviceNetwork + - uid: 7894 + components: + - pos: -43.5,39.5 + parent: 1 + type: Transform + - uid: 7895 + components: + - pos: -42.5,39.5 + parent: 1 + type: Transform + - uid: 7898 + components: + - pos: -49.5,39.5 + parent: 1 + type: Transform + - uid: 7899 + components: + - pos: -48.5,39.5 + parent: 1 + type: Transform + - uid: 7913 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,20.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 17490 + - 8155 + type: DeviceNetwork + - uid: 7922 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,20.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 17490 + - 8155 + type: DeviceNetwork + - uid: 8180 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,51.5 + parent: 1 + type: Transform + - uid: 8861 + components: + - pos: -1.5,-2.5 + parent: 8756 + type: Transform + - uid: 8862 + components: + - pos: -0.5,-2.5 + parent: 8756 + type: Transform + - uid: 8863 + components: + - pos: 0.5,-2.5 + parent: 8756 + type: Transform + - uid: 8926 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 9013 + components: + - pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 9014 + components: + - pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 9028 + components: + - pos: 11.5,-27.5 + parent: 1 + type: Transform + - uid: 9029 + components: + - pos: 13.5,-27.5 + parent: 1 + type: Transform + - uid: 9030 + components: + - pos: 12.5,-27.5 + parent: 1 + type: Transform + - uid: 9048 + components: + - pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 9049 + components: + - rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 9411 + components: + - pos: 27.5,-10.5 + parent: 1 + type: Transform + - uid: 9429 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-9.5 + parent: 1 + type: Transform + - uid: 9430 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-8.5 + parent: 1 + type: Transform + - uid: 9431 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-7.5 + parent: 1 + type: Transform + - uid: 9589 + components: + - rot: 3.141592653589793 rad + pos: -11.5,38.5 + parent: 1 + type: Transform + - uid: 9590 + components: + - rot: 3.141592653589793 rad + pos: -11.5,37.5 + parent: 1 + type: Transform + - uid: 9591 + components: + - pos: -11.5,36.5 + parent: 1 + type: Transform + - uid: 17359 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,51.5 + parent: 1 + type: Transform + - uid: 17360 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,51.5 + parent: 1 + type: Transform + - uid: 17361 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,51.5 + parent: 1 + type: Transform + - uid: 17362 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,51.5 + parent: 1 + type: Transform + - uid: 17363 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,51.5 + parent: 1 + type: Transform + - uid: 17364 + components: + - pos: -12.5,51.5 + parent: 1 + type: Transform + - uid: 17368 + components: + - pos: -13.5,47.5 + parent: 1 + type: Transform + - uid: 17369 + components: + - pos: -12.5,47.5 + parent: 1 + type: Transform + - uid: 17370 + components: + - pos: -20.5,48.5 + parent: 1 + type: Transform + - uid: 17371 + components: + - pos: -20.5,47.5 + parent: 1 + type: Transform + - uid: 17420 + components: + - pos: 28.5,33.5 + parent: 1 + type: Transform + - uid: 17449 + components: + - pos: -8.5,33.5 + parent: 1 + type: Transform + - uid: 17520 + components: + - pos: 28.5,10.5 + parent: 1 + type: Transform + - uid: 18237 + components: + - pos: 10.5,12.5 + parent: 1 + type: Transform +- proto: Fireplace + entities: + - uid: 787 + components: + - pos: -25.5,11.5 + parent: 1 + type: Transform + - uid: 3191 + components: + - pos: 45.5,48.5 + parent: 1 + type: Transform + - uid: 4388 + components: + - pos: 25.5,11.5 + parent: 1 + type: Transform + - uid: 9162 + components: + - pos: -23.5,3.5 + parent: 1 + type: Transform + - uid: 9865 + components: + - pos: -36.5,-19.5 + parent: 1 + type: Transform + - uid: 10933 + components: + - pos: 35.5,-19.5 + parent: 1 + type: Transform +- proto: Flash + entities: + - uid: 8072 + components: + - pos: 3.497499,80.1647 + parent: 1 + type: Transform + - uid: 9397 + components: + - pos: -34.791756,-5.4286704 + parent: 1 + type: Transform +- proto: FlashlightLantern + entities: + - uid: 9191 + components: + - pos: 9.627577,-15.47229 + parent: 1 + type: Transform +- proto: FlashlightSeclite + entities: + - uid: 7770 + components: + - pos: -18.39577,40.731785 + parent: 1 + type: Transform + - uid: 7771 + components: + - pos: -18.58327,40.43491 + parent: 1 + type: Transform + - uid: 8184 + components: + - pos: -16.611473,49.69518 + parent: 1 + type: Transform + - uid: 8189 + components: + - pos: -16.444807,50.07018 + parent: 1 + type: Transform + - uid: 9419 + components: + - pos: 26.518345,-13.504487 + parent: 1 + type: Transform +- proto: Floodlight + entities: + - uid: 18421 + components: + - pos: 39.53336,61.486675 + parent: 1 + type: Transform +- proto: FloodlightBroken + entities: + - uid: 18356 + components: + - pos: -40.523964,60.07001 + parent: 1 + type: Transform +- proto: FloorDrain + entities: + - uid: 2930 + components: + - pos: 16.5,-40.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 4021 + components: + - pos: 19.5,-4.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 4316 + components: + - pos: -38.5,49.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 6631 + components: + - pos: 11.5,2.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 6816 + components: + - pos: -7.5,69.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 7439 + components: + - pos: 20.5,32.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 8425 + components: + - rot: 3.141592653589793 rad + pos: 15.5,28.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 17277 + components: + - pos: -23.5,-12.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 17456 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,23.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures +- proto: FloorTileItemGold + entities: + - uid: 17989 + components: + - pos: 45.45488,55.465294 + parent: 1 + type: Transform + - count: 20 + type: Stack +- proto: FloorTileItemLino + entities: + - uid: 17988 + components: + - pos: 34.302074,-18.390522 + parent: 1 + type: Transform + - count: 20 + type: Stack +- proto: FloraTree02 + entities: + - uid: 17655 + components: + - pos: 21.618893,21.654818 + parent: 1 + type: Transform +- proto: FloraTree05 + entities: + - uid: 17657 + components: + - pos: 27.071226,18.057373 + parent: 1 + type: Transform +- proto: FloraTree06 + entities: + - uid: 3419 + components: + - pos: -46.77861,40.963207 + parent: 1 + type: Transform +- proto: FloraTreeStump + entities: + - uid: 3420 + components: + - pos: -44.965977,40.860065 + parent: 1 + type: Transform + - uid: 17656 + components: + - pos: 23.131063,21.378092 + parent: 1 + type: Transform +- proto: FoodBakedCannoli + entities: + - uid: 17744 + components: + - pos: 14.449461,66.43389 + parent: 1 + type: Transform +- proto: FoodBakedPancakeBb + entities: + - uid: 17743 + components: + - pos: -35.421543,-26.464243 + parent: 1 + type: Transform +- proto: FoodBowlBig + entities: + - uid: 8268 + components: + - pos: -33.667786,49.56961 + parent: 1 + type: Transform + - uid: 8269 + components: + - pos: -33.41221,49.71152 + parent: 1 + type: Transform + - uid: 9289 + components: + - pos: 12.48844,-0.40089428 + parent: 1 + type: Transform +- proto: FoodBowlBigTrash + entities: + - uid: 10111 + components: + - pos: 17.411285,-36.66307 + parent: 1 + type: Transform + - uid: 10112 + components: + - pos: 18.107027,-35.953514 + parent: 1 + type: Transform +- proto: FoodBoxDonut + entities: + - uid: 8073 + components: + - pos: -4.45382,80.533676 + parent: 1 + type: Transform +- proto: FoodBoxNugget + entities: + - uid: 9301 + components: + - pos: 8.655134,0.48492008 + parent: 1 + type: Transform +- proto: FoodBoxPizzaFilled + entities: + - uid: 10096 + components: + - pos: -17.506914,-29.281166 + parent: 1 + type: Transform +- proto: FoodBreadPlain + entities: + - uid: 8370 + components: + - pos: 33.378624,49.652992 + parent: 1 + type: Transform +- proto: FoodBreadPlainSlice + entities: + - uid: 8371 + components: + - pos: 32.38471,49.709755 + parent: 1 + type: Transform + - uid: 8372 + components: + - pos: 32.526695,49.610416 + parent: 1 + type: Transform +- proto: FoodCakeBirthdaySlice + entities: + - uid: 13330 + components: + - pos: -9.337922,10.467162 + parent: 1 + type: Transform +- proto: FoodCondimentBottleEnzyme + entities: + - uid: 9300 + components: + - pos: 5.3300986,1.7788405 + parent: 1 + type: Transform +- proto: FoodCondimentPacketAstrotame + entities: + - uid: 17285 + components: + - pos: -0.6371541,9.529309 + parent: 1 + type: Transform +- proto: FoodCondimentPacketHorseradish + entities: + - uid: 17286 + components: + - pos: -0.25378847,-0.7095739 + parent: 1 + type: Transform +- proto: FoodCondimentPacketSoy + entities: + - uid: 17287 + components: + - pos: -10.562105,2.6537187 + parent: 1 + type: Transform +- proto: FoodContainerEgg + entities: + - uid: 3775 + components: + - pos: 7.601603,-3.2161803 + parent: 1 + type: Transform +- proto: FoodFrozenCornuto + entities: + - uid: 7696 + components: + - pos: -40.490295,77.610565 + parent: 1 + type: Transform +- proto: FoodFrozenPopsicleBerry + entities: + - uid: 9848 + components: + - flags: InContainer + type: MetaData + - parent: 9844 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodFrozenPopsicleJumbo + entities: + - uid: 9849 + components: + - flags: InContainer + type: MetaData + - parent: 9844 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodFrozenPopsicleOrange + entities: + - uid: 9846 + components: + - flags: InContainer + type: MetaData + - parent: 9844 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodFrozenSandwich + entities: + - uid: 9847 + components: + - flags: InContainer + type: MetaData + - parent: 9844 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodFrozenSandwichStrawberry + entities: + - uid: 9845 + components: + - flags: InContainer + type: MetaData + - parent: 9844 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodFrozenSundae + entities: + - uid: 9850 + components: + - flags: InContainer + type: MetaData + - parent: 9844 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodKebabSkewer + entities: + - uid: 8273 + components: + - pos: -33.142433,49.626377 + parent: 1 + type: Transform + - uid: 9287 + components: + - pos: 12.36344,-0.23422778 + parent: 1 + type: Transform + - uid: 9288 + components: + - pos: 12.571773,-0.33839428 + parent: 1 + type: Transform +- proto: FoodMealMemoryleek + entities: + - uid: 4378 + components: + - pos: 47.521317,74.488594 + parent: 1 + type: Transform +- proto: FoodMealMilkape + entities: + - uid: 17747 + components: + - pos: -3.4239073,34.287933 + parent: 1 + type: Transform +- proto: FoodMeatBaconCooked + entities: + - uid: 17740 + components: + - pos: 24.415808,-29.499893 + parent: 1 + type: Transform +- proto: FoodPieBaklava + entities: + - uid: 17741 + components: + - pos: -7.44179,-70.460884 + parent: 1 + type: Transform +- proto: FoodPieBananaCream + entities: + - uid: 6607 + components: + - pos: -15.830833,-0.5688125 + parent: 1 + type: Transform + - uid: 6608 + components: + - pos: -15.8876295,-0.25660872 + parent: 1 + type: Transform + - uid: 6609 + components: + - pos: -16.086414,-0.6255777 + parent: 1 + type: Transform +- proto: FoodPlate + entities: + - uid: 8266 + components: + - pos: -33.63939,49.881817 + parent: 1 + type: Transform + - uid: 9291 + components: + - pos: 12.33918,-1.1745799 + parent: 1 + type: Transform + - uid: 17292 + components: + - pos: -0.4880681,3.8883455 + parent: 1 + type: Transform +- proto: FoodPlateSmall + entities: + - uid: 8267 + components: + - pos: -33.667786,49.72571 + parent: 1 + type: Transform + - uid: 8955 + components: + - pos: -12.011354,-3.421762 + parent: 1 + type: Transform + - uid: 9292 + components: + - pos: 12.342606,-1.2967278 + parent: 1 + type: Transform + - uid: 17294 + components: + - pos: -10.796385,2.6324317 + parent: 1 + type: Transform + - uid: 17295 + components: + - pos: -0.40287447,9.14615 + parent: 1 + type: Transform +- proto: FoodPlateTin + entities: + - uid: 8270 + components: + - pos: -33.327015,49.498657 + parent: 1 + type: Transform + - uid: 8271 + components: + - pos: -33.142433,49.597996 + parent: 1 + type: Transform + - uid: 9290 + components: + - pos: 12.42594,-0.8383943 + parent: 1 + type: Transform +- proto: FoodSnackSus + entities: + - uid: 17739 + components: + - pos: 27.402672,-19.487795 + parent: 1 + type: Transform +- proto: FoodTartMime + entities: + - uid: 6619 + components: + - pos: -16.442228,5.5049815 + parent: 1 + type: Transform +- proto: FoodTinPeachesMaint + entities: + - uid: 9978 + components: + - pos: -33.61911,-24.182272 + parent: 1 + type: Transform +- proto: Football + entities: + - uid: 8306 + components: + - pos: -38.624706,46.43239 + parent: 1 + type: Transform +- proto: Fork + entities: + - uid: 8920 + components: + - pos: -11.613461,-3.25968 + parent: 1 + type: Transform + - uid: 17291 + components: + - pos: -0.80753946,4.3779383 + parent: 1 + type: Transform +- proto: ForkPlastic + entities: + - uid: 6688 + components: + - pos: 3.365237,0.54051036 + parent: 1 + type: Transform + - uid: 6700 + components: + - pos: 3.365237,0.54051036 + parent: 1 + type: Transform + - uid: 6701 + components: + - pos: 3.365237,0.54051036 + parent: 1 + type: Transform +- proto: GasAnalyzer + entities: + - uid: 7117 + components: + - pos: -11.540349,34.601944 + parent: 1 + type: Transform + - uid: 8070 + components: + - pos: -7.5491548,79.71059 + parent: 1 + type: Transform + - uid: 8713 + components: + - pos: -11.3678055,-19.468292 + parent: 1 + type: Transform + - uid: 9233 + components: + - pos: -22.495941,-11.441285 + parent: 1 + type: Transform + - uid: 13885 + components: + - pos: 20.339535,52.7268 + parent: 1 + type: Transform +- proto: GasCanisterBrokenBase + entities: + - uid: 10109 + components: + - pos: -28.5,-18.5 + parent: 1 + type: Transform +- proto: GasMinerCarbonDioxide + entities: + - uid: 6766 + components: + - pos: -0.5,-23.5 + parent: 1 + type: Transform +- proto: GasMinerNitrogenStationLarge + entities: + - uid: 6765 + components: + - pos: -0.5,-21.5 + parent: 1 + type: Transform +- proto: GasMinerOxygenStationLarge + entities: + - uid: 6764 + components: + - pos: -0.5,-19.5 + parent: 1 + type: Transform +- proto: GasMinerPlasma + entities: + - uid: 3023 + components: + - pos: -0.5,-27.5 + parent: 1 + type: Transform +- proto: GasMixerFlipped + entities: + - uid: 4699 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,33.5 + parent: 1 + type: Transform +- proto: GasOutletInjector + entities: + - uid: 2666 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-39.5 + parent: 1 + type: Transform + - uid: 2667 + components: + - pos: 0.5,-29.5 + parent: 1 + type: Transform + - uid: 2668 + components: + - pos: 0.5,-27.5 + parent: 1 + type: Transform + - uid: 2669 + components: + - pos: 0.5,-25.5 + parent: 1 + type: Transform + - uid: 2670 + components: + - pos: 0.5,-23.5 + parent: 1 + type: Transform + - uid: 2671 + components: + - pos: 0.5,-21.5 + parent: 1 + type: Transform + - uid: 2672 + components: + - pos: 0.5,-19.5 + parent: 1 + type: Transform + - uid: 2673 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-33.5 + parent: 1 + type: Transform + - uid: 2711 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-43.5 + parent: 1 + type: Transform + - uid: 2712 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-44.5 + parent: 1 + type: Transform + - uid: 2713 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-45.5 + parent: 1 + type: Transform +- proto: GasPassiveVent + entities: + - uid: 450 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-43.5 + parent: 1 + type: Transform + - uid: 2596 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-19.5 + parent: 1 + type: Transform + - uid: 2597 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-21.5 + parent: 1 + type: Transform + - uid: 2598 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-23.5 + parent: 1 + type: Transform + - uid: 2599 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-25.5 + parent: 1 + type: Transform + - uid: 2600 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-27.5 + parent: 1 + type: Transform + - uid: 2601 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-29.5 + parent: 1 + type: Transform + - uid: 2627 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-32.5 + parent: 1 + type: Transform + - uid: 2628 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-18.5 + parent: 1 + type: Transform + - uid: 2661 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-39.5 + parent: 1 + type: Transform + - uid: 2662 + components: + - pos: 0.5,-35.5 + parent: 1 + type: Transform + - uid: 2680 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-35.5 + parent: 1 + type: Transform + - uid: 2951 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-44.5 + parent: 1 + type: Transform + - uid: 2952 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-45.5 + parent: 1 + type: Transform + - uid: 2961 + components: + - pos: 4.5,-43.5 + parent: 1 + type: Transform + - uid: 3538 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,28.5 + parent: 1 + type: Transform + - uid: 3539 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,30.5 + parent: 1 + type: Transform + - uid: 9195 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-41.5 + parent: 1 + type: Transform + - uid: 9853 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-12.5 + parent: 1 + type: Transform + - uid: 18480 + components: + - pos: 17.5,-11.5 + parent: 1 + type: Transform + - uid: 18481 + components: + - pos: 20.5,-11.5 + parent: 1 + type: Transform +- proto: GasPipeBend + entities: + - uid: 2572 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2573 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2574 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2575 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2576 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2577 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2703 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2706 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2707 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2744 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2756 + components: + - pos: -11.5,-11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2956 + components: + - pos: 3.5,-43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2960 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6372 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,33.5 + parent: 1 + type: Transform + - uid: 6376 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,30.5 + parent: 1 + type: Transform + - uid: 6586 + components: + - rot: 3.141592653589793 rad + pos: -7.5,33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9031 + components: + - rot: 3.141592653589793 rad + pos: 10.5,32.5 + parent: 1 + type: Transform + - uid: 10878 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10879 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10881 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10885 + components: + - pos: 30.5,-15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10891 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13857 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,52.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13859 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,52.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13862 + components: + - rot: 3.141592653589793 rad + pos: 16.5,49.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13868 + components: + - pos: 22.5,49.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13872 + components: + - rot: 3.141592653589793 rad + pos: 22.5,45.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13875 + components: + - pos: 25.5,45.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14301 + components: + - pos: 12.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14304 + components: + - pos: 11.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14329 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14330 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14386 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-35.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14399 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-37.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14400 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14561 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14589 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14590 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14676 + components: + - pos: -13.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14700 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14701 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14707 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14708 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14710 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14725 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14737 + components: + - pos: 9.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14738 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14745 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14746 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14791 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14794 + components: + - pos: 48.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14877 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14881 + components: + - pos: 48.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14905 + components: + - rot: 3.141592653589793 rad + pos: 25.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14908 + components: + - pos: 24.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14964 + components: + - pos: 32.5,37.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15009 + components: + - pos: 30.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15016 + components: + - rot: 3.141592653589793 rad + pos: 27.5,49.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15017 + components: + - pos: 27.5,50.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15021 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15025 + components: + - rot: 3.141592653589793 rad + pos: 24.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15053 + components: + - pos: 44.5,43.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15068 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15080 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,51.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15081 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,51.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15092 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15124 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15251 + components: + - pos: -13.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15257 + components: + - rot: 3.141592653589793 rad + pos: -20.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15282 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15291 + components: + - rot: 3.141592653589793 rad + pos: -9.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15304 + components: + - rot: 3.141592653589793 rad + pos: -5.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15314 + components: + - pos: -5.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15315 + components: + - rot: 3.141592653589793 rad + pos: -6.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15404 + components: + - rot: 3.141592653589793 rad + pos: -12.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15421 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15422 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15433 + components: + - rot: 3.141592653589793 rad + pos: -20.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15441 + components: + - rot: 3.141592653589793 rad + pos: -21.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15446 + components: + - rot: 3.141592653589793 rad + pos: -24.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15451 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15495 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15541 + components: + - rot: 3.141592653589793 rad + pos: 7.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15545 + components: + - rot: 3.141592653589793 rad + pos: 6.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15548 + components: + - pos: 6.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15657 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15658 + components: + - rot: 3.141592653589793 rad + pos: -49.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15679 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15682 + components: + - pos: -37.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15711 + components: + - pos: -40.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15735 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15740 + components: + - pos: -35.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15745 + components: + - pos: -36.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15767 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15772 + components: + - pos: -17.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15885 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15897 + components: + - rot: 3.141592653589793 rad + pos: -48.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16022 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,52.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16023 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,55.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16031 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,63.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16059 + components: + - pos: -4.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16070 + components: + - pos: -3.5,46.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16086 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16087 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16118 + components: + - pos: -17.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16137 + components: + - pos: -18.5,47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16139 + components: + - rot: 3.141592653589793 rad + pos: -18.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16148 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16165 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,43.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16167 + components: + - pos: -35.5,48.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16201 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16203 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,56.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16212 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,59.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16237 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,61.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16282 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,66.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16325 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,73.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16335 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,72.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16347 + components: + - rot: 3.141592653589793 rad + pos: 5.5,74.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16352 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16353 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 17479 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,10.5 + parent: 1 + type: Transform + - uid: 18140 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 18144 + components: + - pos: -19.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 18147 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 18154 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 18477 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-12.5 + parent: 1 + type: Transform + - uid: 18479 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-12.5 + parent: 1 + type: Transform +- proto: GasPipeFourway + entities: + - uid: 2648 + components: + - pos: -8.5,-17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 2705 + components: + - pos: -4.5,-44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2736 + components: + - pos: -12.5,-18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2767 + components: + - pos: -10.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 9444 + components: + - pos: 30.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14412 + components: + - pos: 6.5,-33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14453 + components: + - pos: 32.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14668 + components: + - pos: -13.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14688 + components: + - pos: -12.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14863 + components: + - pos: 30.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14891 + components: + - pos: 30.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14960 + components: + - pos: 32.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14973 + components: + - pos: 30.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15085 + components: + - pos: 22.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15181 + components: + - pos: 0.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15182 + components: + - pos: -1.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15214 + components: + - pos: -15.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15272 + components: + - pos: -10.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15355 + components: + - pos: -1.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15361 + components: + - pos: 0.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15519 + components: + - pos: 11.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15533 + components: + - pos: 10.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15630 + components: + - pos: -30.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15631 + components: + - pos: -32.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15983 + components: + - pos: -8.5,50.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15984 + components: + - pos: -9.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16052 + components: + - pos: -9.5,46.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 2542 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2543 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2544 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2545 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2546 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2547 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2548 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2549 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2550 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2551 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2552 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2553 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2554 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2555 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2556 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2557 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2558 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2559 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2560 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2561 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2562 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2563 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2564 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2565 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2566 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2567 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2568 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2569 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2570 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2571 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2578 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2579 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2580 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2581 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2582 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2583 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2584 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2585 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2586 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2587 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2588 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2589 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2590 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2591 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2592 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2593 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2594 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2595 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2622 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2626 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2647 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 2649 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2650 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2651 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2663 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2664 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2665 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2674 + components: + - pos: 0.5,-36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2675 + components: + - pos: 0.5,-38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2677 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2678 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2679 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2681 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2682 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2683 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2701 + components: + - pos: -6.5,-42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2702 + components: + - pos: -6.5,-43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2708 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2709 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2710 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2732 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 2733 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2734 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2735 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2738 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2739 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2742 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 2743 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2746 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2747 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2751 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2752 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2753 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2757 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2758 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2766 + components: + - pos: -8.5,-13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2770 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2771 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2775 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2776 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2777 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2778 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2780 + components: + - pos: -4.5,-10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2782 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2783 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2784 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2785 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2786 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2787 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2788 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2789 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2790 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2791 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2792 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2793 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2794 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2795 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2797 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2953 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2954 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2955 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3540 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3541 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3542 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3543 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3544 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,28.5 + parent: 1 + type: Transform + - uid: 3545 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,30.5 + parent: 1 + type: Transform + - uid: 4402 + components: + - pos: 31.5,48.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4416 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5348 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6375 + components: + - rot: 3.141592653589793 rad + pos: 12.5,31.5 + parent: 1 + type: Transform + - uid: 8550 + components: + - rot: 3.141592653589793 rad + pos: 11.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8689 + components: + - rot: 3.141592653589793 rad + pos: 11.5,26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8690 + components: + - rot: 3.141592653589793 rad + pos: 11.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 9033 + components: + - pos: 11.5,30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 9034 + components: + - pos: 11.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 9035 + components: + - pos: 10.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 9196 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9197 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9198 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9725 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10880 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10882 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10883 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10884 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10886 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10887 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10888 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10889 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10890 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10892 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10893 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10894 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10895 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10896 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10897 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10898 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10900 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10901 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10906 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10907 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10908 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10909 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10910 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10911 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10912 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10913 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10915 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10916 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10917 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10918 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10920 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10921 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10922 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10924 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10925 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10927 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12294 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-35.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12900 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13052 + components: + - pos: 19.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 13492 + components: + - pos: 4.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13858 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,52.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13860 + components: + - pos: 16.5,51.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13861 + components: + - pos: 16.5,50.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13863 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,49.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13864 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,49.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13865 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,49.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13866 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,49.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13867 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,49.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13869 + components: + - pos: 22.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13870 + components: + - pos: 22.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13871 + components: + - pos: 22.5,46.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13873 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,45.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13874 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,45.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13876 + components: + - pos: 25.5,44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13877 + components: + - pos: 25.5,43.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13878 + components: + - pos: 25.5,42.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13879 + components: + - pos: 25.5,41.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13880 + components: + - pos: 25.5,40.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13881 + components: + - pos: 25.5,39.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13883 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13884 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14096 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14220 + components: + - pos: 4.5,-9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14221 + components: + - pos: 4.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14222 + components: + - pos: 4.5,-11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14226 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14228 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14229 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14231 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14232 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14234 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14235 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14236 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14237 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14238 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14239 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14241 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14242 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14243 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14244 + components: + - rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14246 + components: + - rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14247 + components: + - rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14248 + components: + - rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14249 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14250 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14251 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14252 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14255 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14256 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14257 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14258 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14259 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14260 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14263 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14264 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14265 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14266 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14267 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14268 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14269 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14270 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14271 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14272 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14273 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14274 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14275 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14276 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14278 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14280 + components: + - pos: 19.5,-10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14281 + components: + - pos: 19.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14282 + components: + - pos: 19.5,-12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14283 + components: + - pos: 19.5,-13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14284 + components: + - pos: 19.5,-14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14287 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14288 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14289 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14290 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14291 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14292 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14293 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14294 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14297 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14299 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14300 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14302 + components: + - pos: 10.5,-10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14305 + components: + - pos: 11.5,-12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14306 + components: + - pos: 11.5,-13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14307 + components: + - pos: 11.5,-14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14308 + components: + - pos: 11.5,-15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14309 + components: + - pos: 11.5,-16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14310 + components: + - pos: 11.5,-17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14311 + components: + - pos: 10.5,-12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14313 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14314 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14315 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14320 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14321 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14324 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14325 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14326 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14327 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14328 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14331 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14334 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14335 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14336 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14337 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14338 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14339 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14340 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14346 + components: + - pos: 11.5,-22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14347 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14348 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14349 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14350 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14354 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14355 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14356 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14357 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14358 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14359 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14360 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14361 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14362 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14363 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14364 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14365 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14368 + components: + - pos: 11.5,-19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14369 + components: + - pos: 11.5,-25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14370 + components: + - pos: 11.5,-26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14371 + components: + - pos: 12.5,-27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14372 + components: + - pos: 12.5,-28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14373 + components: + - pos: 12.5,-29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14374 + components: + - pos: 11.5,-27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14375 + components: + - pos: 11.5,-28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14376 + components: + - pos: 11.5,-29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14377 + components: + - pos: 11.5,-30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14378 + components: + - pos: 11.5,-31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14380 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14381 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-31.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14382 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14384 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14385 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-34.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14387 + components: + - pos: -32.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14388 + components: + - pos: 12.5,-36.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14390 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14391 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14394 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14395 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-34.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14396 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14397 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-35.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14398 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14401 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-36.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14402 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-35.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14403 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14406 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14407 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14408 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14409 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14410 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14411 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14413 + components: + - pos: 6.5,-32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14414 + components: + - pos: 6.5,-31.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14420 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14421 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14422 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14423 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14425 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14426 + components: + - pos: -30.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14428 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14429 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14431 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14432 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14433 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14434 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14435 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14436 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14438 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14439 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14440 + components: + - rot: 3.141592653589793 rad + pos: 32.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14441 + components: + - rot: 3.141592653589793 rad + pos: 32.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14442 + components: + - rot: 3.141592653589793 rad + pos: 32.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14443 + components: + - pos: 32.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14444 + components: + - rot: 3.141592653589793 rad + pos: 32.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14447 + components: + - rot: 3.141592653589793 rad + pos: 32.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14448 + components: + - rot: 3.141592653589793 rad + pos: 32.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14451 + components: + - rot: 3.141592653589793 rad + pos: 32.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14452 + components: + - rot: 3.141592653589793 rad + pos: 32.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14454 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14455 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14456 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14458 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14459 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14460 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14461 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14462 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14463 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14464 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14465 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14466 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14467 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14468 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14470 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14471 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14472 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14474 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14475 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14476 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14477 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14478 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14479 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14480 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14481 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14483 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14484 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14485 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14486 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14487 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14488 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14490 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14491 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14492 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14493 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14494 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14495 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14498 + components: + - rot: 3.141592653589793 rad + pos: 1.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14499 + components: + - rot: 3.141592653589793 rad + pos: 1.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14500 + components: + - rot: 3.141592653589793 rad + pos: 1.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14502 + components: + - rot: 3.141592653589793 rad + pos: 1.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14503 + components: + - rot: 3.141592653589793 rad + pos: 1.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14504 + components: + - rot: 3.141592653589793 rad + pos: 1.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14505 + components: + - rot: 3.141592653589793 rad + pos: 1.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14506 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14507 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14508 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14510 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14511 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14512 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14513 + components: + - rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14514 + components: + - rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14515 + components: + - rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14517 + components: + - rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14518 + components: + - rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14519 + components: + - rot: 3.141592653589793 rad + pos: -2.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14520 + components: + - rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14521 + components: + - rot: 3.141592653589793 rad + pos: -2.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14523 + components: + - rot: 3.141592653589793 rad + pos: -2.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14524 + components: + - rot: 3.141592653589793 rad + pos: -2.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14525 + components: + - rot: 3.141592653589793 rad + pos: -2.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14526 + components: + - rot: 3.141592653589793 rad + pos: -2.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14527 + components: + - rot: 3.141592653589793 rad + pos: -2.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14529 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14530 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14531 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14533 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14536 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14537 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14538 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14541 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14542 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14543 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14544 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14545 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14546 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14547 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14548 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14549 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14550 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14551 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14552 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14553 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14554 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14555 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14556 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14557 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14558 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14559 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14560 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14562 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14564 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14565 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14566 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14568 + components: + - pos: -18.5,-14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14573 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14574 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14575 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14576 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14577 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14578 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14581 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14582 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14583 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14584 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14585 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14586 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14588 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14591 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14592 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14593 + components: + - pos: -30.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14594 + components: + - pos: -30.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14595 + components: + - pos: -30.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14596 + components: + - pos: -30.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14597 + components: + - pos: -30.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14598 + components: + - pos: -30.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14600 + components: + - pos: -30.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14601 + components: + - pos: -30.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14602 + components: + - pos: -30.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14603 + components: + - pos: -30.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14604 + components: + - pos: -30.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14605 + components: + - pos: -30.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14607 + components: + - pos: -30.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14608 + components: + - pos: -30.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14609 + components: + - pos: -30.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14611 + components: + - pos: -30.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14612 + components: + - pos: -30.5,10.5 + parent: 1 + type: Transform + - uid: 14613 + components: + - pos: -30.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14614 + components: + - pos: -32.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14617 + components: + - pos: -32.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14619 + components: + - pos: -32.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14620 + components: + - pos: -32.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14621 + components: + - pos: -32.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14622 + components: + - pos: -32.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14623 + components: + - pos: -32.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14624 + components: + - pos: -32.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14625 + components: + - pos: -32.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14626 + components: + - pos: -32.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14627 + components: + - pos: -32.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14628 + components: + - pos: -32.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14630 + components: + - pos: -32.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14631 + components: + - pos: -32.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14632 + components: + - pos: -32.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14637 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14638 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14639 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14640 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14641 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14642 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14643 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14644 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14645 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14646 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14647 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14650 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14651 + components: + - pos: -8.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14652 + components: + - pos: -8.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14653 + components: + - pos: -8.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14654 + components: + - pos: -8.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14655 + components: + - pos: -8.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14656 + components: + - pos: -6.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14657 + components: + - pos: -6.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14658 + components: + - pos: -6.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14661 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14662 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14663 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14664 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14665 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14666 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14669 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14671 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14674 + components: + - rot: 3.141592653589793 rad + pos: -13.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14675 + components: + - rot: 3.141592653589793 rad + pos: -13.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14677 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14678 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14679 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14680 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14681 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14686 + components: + - pos: -12.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14687 + components: + - pos: -12.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14689 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14690 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14691 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14692 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14693 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14694 + components: + - rot: 3.141592653589793 rad + pos: -13.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14695 + components: + - pos: -13.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14698 + components: + - pos: -12.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14699 + components: + - pos: -12.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14702 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14703 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14704 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14705 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14706 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14709 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14715 + components: + - pos: 11.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14716 + components: + - pos: 11.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14721 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14722 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14723 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14724 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14726 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14727 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14728 + components: + - rot: 3.141592653589793 rad + pos: 6.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14729 + components: + - rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14730 + components: + - rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14731 + components: + - rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14732 + components: + - rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14733 + components: + - rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14734 + components: + - rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14735 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14736 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14739 + components: + - rot: 3.141592653589793 rad + pos: 8.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14740 + components: + - rot: 3.141592653589793 rad + pos: 8.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14741 + components: + - rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14742 + components: + - rot: 3.141592653589793 rad + pos: 8.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14743 + components: + - rot: 3.141592653589793 rad + pos: 8.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14744 + components: + - rot: 3.141592653589793 rad + pos: 8.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14747 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14752 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14753 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14754 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14755 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14756 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14757 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14758 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14759 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14762 + components: + - pos: 25.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14763 + components: + - pos: 25.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14764 + components: + - pos: 25.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14766 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14767 + components: + - pos: -32.5,16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14768 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14770 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14773 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14774 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14775 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14776 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14779 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14780 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14781 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14782 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14783 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14784 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14785 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14786 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14787 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14788 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14789 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14790 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14795 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14796 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14797 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14798 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14799 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14800 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14801 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14802 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14803 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14804 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14805 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14806 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14809 + components: + - pos: 30.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14810 + components: + - pos: 30.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14811 + components: + - pos: 30.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14812 + components: + - pos: 30.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14813 + components: + - pos: 30.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14814 + components: + - pos: 30.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14818 + components: + - pos: 30.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14819 + components: + - pos: 30.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14822 + components: + - rot: 3.141592653589793 rad + pos: 30.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14823 + components: + - rot: 3.141592653589793 rad + pos: 30.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14824 + components: + - rot: 3.141592653589793 rad + pos: 30.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14825 + components: + - rot: 3.141592653589793 rad + pos: 30.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14828 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14829 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14830 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14831 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14832 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14833 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14834 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14835 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14836 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14837 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14838 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14839 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14846 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14847 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14848 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14849 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14850 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14851 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14852 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14853 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14854 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14855 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14858 + components: + - pos: 30.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14859 + components: + - pos: 30.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14860 + components: + - pos: 30.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14861 + components: + - pos: 30.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14862 + components: + - pos: 30.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14864 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14865 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14866 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14867 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14869 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14870 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14871 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14872 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14873 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14874 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14878 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14882 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14883 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14884 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14885 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14886 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14887 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14888 + components: + - rot: 3.141592653589793 rad + pos: 30.5,16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14889 + components: + - rot: 3.141592653589793 rad + pos: 30.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14890 + components: + - rot: 3.141592653589793 rad + pos: 30.5,18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14892 + components: + - rot: 3.141592653589793 rad + pos: 32.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14893 + components: + - rot: 3.141592653589793 rad + pos: 32.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14894 + components: + - rot: 3.141592653589793 rad + pos: 32.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14895 + components: + - rot: 3.141592653589793 rad + pos: 32.5,17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14896 + components: + - rot: 3.141592653589793 rad + pos: 32.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14897 + components: + - rot: 3.141592653589793 rad + pos: 32.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14901 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14902 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14903 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14904 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14909 + components: + - pos: 24.5,17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14910 + components: + - pos: 24.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14911 + components: + - pos: 24.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14912 + components: + - pos: 24.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14913 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14914 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14918 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14919 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14920 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14921 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14922 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14923 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14924 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14925 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14926 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14930 + components: + - rot: 3.141592653589793 rad + pos: 32.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14931 + components: + - rot: 3.141592653589793 rad + pos: 32.5,22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14932 + components: + - rot: 3.141592653589793 rad + pos: 32.5,23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14933 + components: + - rot: 3.141592653589793 rad + pos: 32.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14934 + components: + - rot: 3.141592653589793 rad + pos: 32.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14935 + components: + - rot: 3.141592653589793 rad + pos: 32.5,26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14936 + components: + - rot: 3.141592653589793 rad + pos: 32.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14937 + components: + - rot: 3.141592653589793 rad + pos: 32.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14938 + components: + - rot: 3.141592653589793 rad + pos: 32.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14939 + components: + - rot: 3.141592653589793 rad + pos: 32.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14942 + components: + - pos: 30.5,31.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14943 + components: + - pos: 30.5,30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14944 + components: + - pos: 30.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14945 + components: + - pos: 30.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14946 + components: + - pos: 30.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14947 + components: + - pos: 30.5,26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14948 + components: + - pos: 30.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14949 + components: + - pos: 30.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14950 + components: + - pos: 30.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14951 + components: + - pos: 30.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14952 + components: + - pos: 30.5,21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14953 + components: + - pos: 30.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14956 + components: + - pos: 32.5,32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14957 + components: + - pos: 32.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14958 + components: + - pos: 32.5,34.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14959 + components: + - pos: 32.5,35.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14961 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14962 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14967 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14969 + components: + - pos: 30.5,34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14970 + components: + - pos: 30.5,35.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14971 + components: + - pos: 30.5,36.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14974 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14975 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14976 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14977 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14978 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14979 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14981 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14982 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14984 + components: + - rot: 3.141592653589793 rad + pos: 31.5,38.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14985 + components: + - rot: 3.141592653589793 rad + pos: 31.5,39.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14989 + components: + - rot: 3.141592653589793 rad + pos: 30.5,39.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14990 + components: + - rot: 3.141592653589793 rad + pos: 30.5,40.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14992 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14993 + components: + - rot: 3.141592653589793 rad + pos: 31.5,41.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14994 + components: + - rot: 3.141592653589793 rad + pos: 31.5,42.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14995 + components: + - rot: 3.141592653589793 rad + pos: 31.5,43.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14996 + components: + - rot: 3.141592653589793 rad + pos: 31.5,44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14997 + components: + - rot: 3.141592653589793 rad + pos: 31.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14998 + components: + - rot: 3.141592653589793 rad + pos: 31.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15003 + components: + - pos: 30.5,46.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15004 + components: + - pos: 30.5,45.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15005 + components: + - pos: 30.5,44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15006 + components: + - pos: 30.5,43.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15007 + components: + - pos: 30.5,42.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15010 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15011 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15012 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15013 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,49.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15014 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,49.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15015 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,49.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15018 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,50.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15022 + components: + - rot: 3.141592653589793 rad + pos: 25.5,48.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15023 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15024 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15026 + components: + - pos: 24.5,49.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15027 + components: + - pos: 24.5,50.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15032 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15033 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15034 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15038 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15039 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15040 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15041 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15042 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15043 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15044 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15045 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15047 + components: + - rot: 3.141592653589793 rad + pos: 44.5,37.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15048 + components: + - rot: 3.141592653589793 rad + pos: 44.5,38.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15049 + components: + - rot: 3.141592653589793 rad + pos: 44.5,39.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15050 + components: + - rot: 3.141592653589793 rad + pos: 44.5,40.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15051 + components: + - rot: 3.141592653589793 rad + pos: 44.5,41.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15052 + components: + - rot: 3.141592653589793 rad + pos: 44.5,42.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15055 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15056 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15057 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15058 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15059 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15060 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15062 + components: + - rot: 3.141592653589793 rad + pos: 43.5,39.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15063 + components: + - rot: 3.141592653589793 rad + pos: 43.5,40.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15064 + components: + - rot: 3.141592653589793 rad + pos: 43.5,41.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15069 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15070 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15071 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15072 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15073 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15074 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15077 + components: + - rot: 3.141592653589793 rad + pos: 25.5,34.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15078 + components: + - rot: 3.141592653589793 rad + pos: 25.5,35.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15079 + components: + - rot: 3.141592653589793 rad + pos: 31.5,50.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15082 + components: + - rot: 3.141592653589793 rad + pos: 32.5,52.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15083 + components: + - rot: 3.141592653589793 rad + pos: 32.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15087 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15088 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15089 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15090 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15091 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15096 + components: + - pos: 18.5,38.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15097 + components: + - pos: 18.5,39.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15098 + components: + - pos: 18.5,40.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15099 + components: + - pos: 22.5,39.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15100 + components: + - pos: 22.5,40.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15103 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15104 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15105 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15106 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15107 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15108 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15109 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15111 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15112 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15113 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15115 + components: + - pos: 14.5,37.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15116 + components: + - pos: 14.5,38.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15117 + components: + - pos: 14.5,39.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15118 + components: + - pos: 14.5,40.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15122 + components: + - pos: 14.5,42.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15123 + components: + - pos: 14.5,44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15125 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15126 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15127 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15128 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,41.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15136 + components: + - pos: 15.5,43.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15138 + components: + - pos: 15.5,41.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15139 + components: + - pos: 15.5,40.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15140 + components: + - pos: 15.5,39.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15141 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,42.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15142 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,42.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15143 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15144 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15145 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,45.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15149 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15150 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15151 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15152 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15156 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15157 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15158 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15160 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15161 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15162 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15163 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15164 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15167 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15168 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15169 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15170 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15171 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15174 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15175 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15176 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15177 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15178 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15179 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15180 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15183 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15184 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15185 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15186 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15187 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15188 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15189 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15190 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15191 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15194 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15195 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15196 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15197 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15198 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15199 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15201 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15202 + components: + - pos: 0.5,37.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15203 + components: + - pos: 0.5,38.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15204 + components: + - pos: 0.5,39.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15205 + components: + - pos: 0.5,40.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15206 + components: + - pos: -1.5,37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15207 + components: + - pos: -1.5,36.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15208 + components: + - pos: -1.5,35.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15209 + components: + - pos: -1.5,34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15210 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15211 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15212 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15215 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15216 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15217 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15218 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15219 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15220 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15221 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15222 + components: + - pos: -15.5,35.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15223 + components: + - pos: -15.5,34.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15224 + components: + - pos: -15.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15227 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15228 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15229 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15230 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15232 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15233 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15235 + components: + - rot: 3.141592653589793 rad + pos: -15.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15236 + components: + - rot: 3.141592653589793 rad + pos: -15.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15237 + components: + - rot: 3.141592653589793 rad + pos: -15.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15238 + components: + - rot: 3.141592653589793 rad + pos: -15.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15240 + components: + - pos: -15.5,26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15243 + components: + - rot: 3.141592653589793 rad + pos: -13.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15244 + components: + - rot: 3.141592653589793 rad + pos: -13.5,26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15245 + components: + - rot: 3.141592653589793 rad + pos: -13.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15247 + components: + - rot: 3.141592653589793 rad + pos: -13.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15248 + components: + - rot: 3.141592653589793 rad + pos: -13.5,30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15249 + components: + - rot: 3.141592653589793 rad + pos: -13.5,31.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15250 + components: + - rot: 3.141592653589793 rad + pos: -13.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15252 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15253 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15254 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15255 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15256 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15258 + components: + - pos: -20.5,34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15259 + components: + - pos: -20.5,35.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15260 + components: + - pos: -20.5,36.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15261 + components: + - pos: -20.5,37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15269 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15273 + components: + - rot: 3.141592653589793 rad + pos: -11.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15274 + components: + - rot: 3.141592653589793 rad + pos: -11.5,26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15275 + components: + - rot: 3.141592653589793 rad + pos: -11.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15276 + components: + - rot: 3.141592653589793 rad + pos: -11.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15277 + components: + - rot: 3.141592653589793 rad + pos: -10.5,26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15278 + components: + - rot: 3.141592653589793 rad + pos: -10.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15279 + components: + - rot: 3.141592653589793 rad + pos: -10.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15280 + components: + - rot: 3.141592653589793 rad + pos: -10.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15281 + components: + - rot: 3.141592653589793 rad + pos: -10.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15285 + components: + - rot: 3.141592653589793 rad + pos: -10.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15286 + components: + - rot: 3.141592653589793 rad + pos: -10.5,23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15289 + components: + - pos: -9.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15290 + components: + - pos: -9.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15292 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15297 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15298 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15299 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15300 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15301 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15302 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15303 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15307 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15308 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15309 + components: + - pos: -4.5,18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15310 + components: + - pos: -4.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15311 + components: + - pos: -4.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15312 + components: + - pos: -4.5,21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15313 + components: + - pos: -5.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15318 + components: + - pos: -1.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15321 + components: + - rot: 3.141592653589793 rad + pos: 0.5,32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15322 + components: + - rot: 3.141592653589793 rad + pos: 0.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15323 + components: + - rot: 3.141592653589793 rad + pos: 0.5,34.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15324 + components: + - rot: 3.141592653589793 rad + pos: 0.5,35.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15327 + components: + - pos: -1.5,31.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15328 + components: + - pos: -1.5,30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15329 + components: + - pos: -1.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15330 + components: + - pos: -1.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15331 + components: + - pos: -1.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15332 + components: + - pos: -1.5,26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15333 + components: + - pos: -1.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15334 + components: + - pos: -1.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15335 + components: + - pos: -1.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15336 + components: + - pos: -1.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15337 + components: + - pos: -1.5,21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15338 + components: + - pos: 0.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15339 + components: + - pos: 0.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15340 + components: + - pos: 0.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15341 + components: + - pos: 0.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15342 + components: + - pos: 0.5,26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15343 + components: + - pos: 0.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15344 + components: + - pos: 0.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15345 + components: + - pos: 0.5,23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15346 + components: + - pos: 0.5,22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15347 + components: + - pos: 0.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15348 + components: + - pos: 0.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15354 + components: + - rot: 3.141592653589793 rad + pos: -1.5,16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15356 + components: + - rot: 3.141592653589793 rad + pos: -1.5,18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15357 + components: + - rot: 3.141592653589793 rad + pos: -1.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15358 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15359 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15360 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15362 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15363 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15364 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15365 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15366 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15367 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15368 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15370 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15371 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15372 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15373 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15374 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15375 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15376 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15377 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15378 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15379 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15403 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15405 + components: + - rot: 3.141592653589793 rad + pos: -12.5,18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15406 + components: + - rot: 3.141592653589793 rad + pos: -12.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15407 + components: + - rot: 3.141592653589793 rad + pos: -12.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15408 + components: + - rot: 3.141592653589793 rad + pos: -12.5,21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15409 + components: + - rot: 3.141592653589793 rad + pos: -12.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15412 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15413 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15414 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15415 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15416 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15417 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15418 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15419 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15420 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15423 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15424 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15425 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15426 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15427 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15428 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15431 + components: + - rot: 3.141592653589793 rad + pos: -20.5,21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15432 + components: + - rot: 3.141592653589793 rad + pos: -20.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15434 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15435 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15436 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15437 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15438 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15439 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15440 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15442 + components: + - rot: 3.141592653589793 rad + pos: -21.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15444 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15445 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15448 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15449 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15450 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15453 + components: + - rot: 3.141592653589793 rad + pos: -21.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15454 + components: + - rot: 3.141592653589793 rad + pos: -21.5,23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15455 + components: + - rot: 3.141592653589793 rad + pos: -21.5,22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15461 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15462 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15463 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15464 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15465 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15466 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15467 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15469 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15470 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15471 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15472 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15473 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15474 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15475 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15476 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15477 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15482 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15483 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15485 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15486 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15488 + components: + - rot: 3.141592653589793 rad + pos: 11.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15489 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15490 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15491 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15492 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15493 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15494 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15496 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15497 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15498 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15501 + components: + - rot: 3.141592653589793 rad + pos: 11.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15502 + components: + - rot: 3.141592653589793 rad + pos: 10.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15503 + components: + - rot: 3.141592653589793 rad + pos: 10.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15504 + components: + - rot: 3.141592653589793 rad + pos: 10.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15505 + components: + - rot: 3.141592653589793 rad + pos: 10.5,22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15507 + components: + - rot: 3.141592653589793 rad + pos: 4.5,18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15508 + components: + - rot: 3.141592653589793 rad + pos: 4.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15509 + components: + - rot: 3.141592653589793 rad + pos: 3.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15510 + components: + - rot: 3.141592653589793 rad + pos: 3.5,22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15511 + components: + - rot: 3.141592653589793 rad + pos: 3.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15512 + components: + - rot: 3.141592653589793 rad + pos: 4.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15513 + components: + - rot: 3.141592653589793 rad + pos: 4.5,21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15514 + components: + - rot: 3.141592653589793 rad + pos: 11.5,18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15515 + components: + - rot: 3.141592653589793 rad + pos: 11.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15516 + components: + - rot: 3.141592653589793 rad + pos: 11.5,21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15517 + components: + - rot: 3.141592653589793 rad + pos: 11.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15518 + components: + - rot: 3.141592653589793 rad + pos: 11.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15520 + components: + - rot: 3.141592653589793 rad + pos: 4.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15521 + components: + - rot: 3.141592653589793 rad + pos: 3.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15527 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15528 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15529 + components: + - pos: 10.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15530 + components: + - pos: 10.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15531 + components: + - pos: 10.5,26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15532 + components: + - pos: 10.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15534 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15535 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15536 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15538 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15540 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15542 + components: + - rot: 3.141592653589793 rad + pos: 7.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15543 + components: + - rot: 3.141592653589793 rad + pos: 7.5,30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15546 + components: + - rot: 3.141592653589793 rad + pos: 6.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15547 + components: + - rot: 3.141592653589793 rad + pos: 6.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15549 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15551 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15552 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15553 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15555 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15556 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15557 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15560 + components: + - pos: 19.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15561 + components: + - pos: 19.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15563 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15565 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15567 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15568 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15569 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15571 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15572 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15573 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15574 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15576 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15577 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15580 + components: + - rot: 3.141592653589793 rad + pos: 15.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15581 + components: + - rot: 3.141592653589793 rad + pos: 15.5,30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15583 + components: + - rot: 3.141592653589793 rad + pos: 14.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15584 + components: + - rot: 3.141592653589793 rad + pos: 14.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15585 + components: + - rot: 3.141592653589793 rad + pos: 14.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15586 + components: + - rot: 3.141592653589793 rad + pos: 14.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15588 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15589 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15590 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15591 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15592 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15593 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15594 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15595 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15598 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15599 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15600 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15601 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15602 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15603 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15604 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15605 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15606 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15607 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15608 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15611 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15612 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15613 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15614 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15615 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15616 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15617 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15618 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15619 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15620 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15621 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15623 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15624 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15625 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15626 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15627 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15628 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15629 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15632 + components: + - pos: -32.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15633 + components: + - pos: -32.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15634 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15635 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15636 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15637 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15640 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15641 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15642 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15643 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15644 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15645 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15646 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15647 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15648 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15649 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15650 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15651 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15652 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15653 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15654 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15655 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15656 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15659 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15660 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15661 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15662 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15663 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15664 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15665 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15666 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15667 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15670 + components: + - rot: 3.141592653589793 rad + pos: -39.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15671 + components: + - rot: 3.141592653589793 rad + pos: -39.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15672 + components: + - rot: 3.141592653589793 rad + pos: -39.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15673 + components: + - rot: 3.141592653589793 rad + pos: -39.5,17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15674 + components: + - rot: 3.141592653589793 rad + pos: -39.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15675 + components: + - rot: 3.141592653589793 rad + pos: -39.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15676 + components: + - rot: 3.141592653589793 rad + pos: -39.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15677 + components: + - rot: 3.141592653589793 rad + pos: -39.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15678 + components: + - rot: 3.141592653589793 rad + pos: -39.5,22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15683 + components: + - pos: -37.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15684 + components: + - pos: -37.5,26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15685 + components: + - pos: -37.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15686 + components: + - pos: -37.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15687 + components: + - pos: -37.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15688 + components: + - pos: -37.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15689 + components: + - pos: -37.5,21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15690 + components: + - pos: -37.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15691 + components: + - pos: -37.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15692 + components: + - pos: -37.5,18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15693 + components: + - pos: -37.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15694 + components: + - pos: -37.5,16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15697 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15702 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15703 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15704 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15705 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15706 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15707 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15712 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15714 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15715 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15716 + components: + - pos: -40.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15717 + components: + - pos: -40.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15718 + components: + - pos: -40.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15719 + components: + - pos: -40.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15720 + components: + - pos: -40.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15721 + components: + - pos: -40.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15722 + components: + - pos: -40.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15724 + components: + - pos: -40.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15725 + components: + - pos: -40.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15726 + components: + - pos: -40.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15727 + components: + - pos: -40.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15730 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15731 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15732 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15733 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15734 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15736 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15739 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15741 + components: + - pos: -35.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15744 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15746 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15747 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15748 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15749 + components: + - pos: -38.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15750 + components: + - pos: -38.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15751 + components: + - pos: -38.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15752 + components: + - pos: -38.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15754 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15755 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15756 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15758 + components: + - pos: -38.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15759 + components: + - pos: -38.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15760 + components: + - pos: -38.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15761 + components: + - pos: -38.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15762 + components: + - pos: -38.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15764 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15765 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15766 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15769 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15770 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15779 + components: + - pos: -32.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15780 + components: + - pos: -32.5,18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15781 + components: + - pos: -32.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15782 + components: + - pos: -30.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15783 + components: + - pos: -30.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15784 + components: + - pos: -30.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15785 + components: + - pos: -30.5,17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15786 + components: + - pos: -30.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15787 + components: + - pos: -30.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15788 + components: + - pos: -32.5,21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15789 + components: + - pos: -32.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15790 + components: + - pos: -32.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15791 + components: + - pos: -32.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15792 + components: + - pos: -32.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15793 + components: + - pos: -32.5,26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15794 + components: + - pos: -32.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15795 + components: + - pos: -32.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15796 + components: + - pos: -32.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15797 + components: + - pos: -32.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15798 + components: + - pos: -32.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15799 + components: + - pos: -32.5,34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15800 + components: + - pos: -30.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15801 + components: + - pos: -30.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15802 + components: + - pos: -30.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15803 + components: + - pos: -30.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15804 + components: + - pos: -30.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15805 + components: + - pos: -30.5,26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15806 + components: + - pos: -30.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15807 + components: + - pos: -30.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15808 + components: + - pos: -30.5,23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15809 + components: + - pos: -30.5,22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15810 + components: + - pos: -30.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15817 + components: + - pos: -30.5,34.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15818 + components: + - pos: -30.5,35.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15819 + components: + - pos: -32.5,35.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15820 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15821 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15822 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15823 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15824 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15825 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15834 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15835 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15836 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15837 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15838 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15839 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15840 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15841 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15843 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15844 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15845 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15846 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15847 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15849 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15850 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15851 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15852 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15853 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15854 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15855 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15856 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15857 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15858 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15861 + components: + - rot: 3.141592653589793 rad + pos: -32.5,36.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15862 + components: + - rot: 3.141592653589793 rad + pos: -32.5,37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15863 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15864 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15865 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15866 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15867 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15868 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15869 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15870 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15871 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15874 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15875 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15876 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15877 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15878 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15880 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15881 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15882 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15883 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15884 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15886 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15887 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15888 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15889 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15890 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15891 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15892 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15893 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15894 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15895 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15898 + components: + - rot: 3.141592653589793 rad + pos: -48.5,37.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15899 + components: + - rot: 3.141592653589793 rad + pos: -48.5,38.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15900 + components: + - rot: 3.141592653589793 rad + pos: -48.5,39.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15901 + components: + - rot: 3.141592653589793 rad + pos: -48.5,40.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15902 + components: + - rot: 3.141592653589793 rad + pos: -48.5,41.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15903 + components: + - rot: 3.141592653589793 rad + pos: -43.5,39.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15904 + components: + - rot: 3.141592653589793 rad + pos: -43.5,40.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15905 + components: + - rot: 3.141592653589793 rad + pos: -43.5,41.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15912 + components: + - rot: 3.141592653589793 rad + pos: 0.5,41.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15913 + components: + - rot: 3.141592653589793 rad + pos: -1.5,39.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15914 + components: + - rot: 3.141592653589793 rad + pos: -1.5,40.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15915 + components: + - rot: 3.141592653589793 rad + pos: -1.5,41.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15916 + components: + - rot: 3.141592653589793 rad + pos: -1.5,43.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15917 + components: + - rot: 3.141592653589793 rad + pos: 0.5,42.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15918 + components: + - rot: 3.141592653589793 rad + pos: 0.5,44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15923 + components: + - pos: 0.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15926 + components: + - pos: -1.5,44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15927 + components: + - pos: -1.5,45.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15928 + components: + - pos: -1.5,46.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15931 + components: + - rot: 3.141592653589793 rad + pos: 0.5,47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15932 + components: + - rot: 3.141592653589793 rad + pos: 0.5,48.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15933 + components: + - rot: 3.141592653589793 rad + pos: 0.5,49.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15934 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15935 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15936 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15937 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15938 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15939 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15940 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15941 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15942 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15943 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15946 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,50.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15947 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,50.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15948 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,50.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15949 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,50.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15950 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,50.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15951 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,50.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15952 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,50.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15953 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15954 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15955 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15956 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15957 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15958 + components: + - rot: 3.141592653589793 rad + pos: -1.5,49.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15959 + components: + - rot: 3.141592653589793 rad + pos: -1.5,50.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15960 + components: + - rot: 3.141592653589793 rad + pos: -1.5,51.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15961 + components: + - rot: 3.141592653589793 rad + pos: 0.5,51.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15962 + components: + - rot: 3.141592653589793 rad + pos: 0.5,52.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15965 + components: + - rot: 3.141592653589793 rad + pos: 0.5,54.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15966 + components: + - rot: 3.141592653589793 rad + pos: -1.5,52.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15967 + components: + - rot: 3.141592653589793 rad + pos: -1.5,53.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15970 + components: + - pos: -1.5,55.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15971 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,56.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15972 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,56.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15973 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,56.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15974 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,56.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15975 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,56.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15976 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,56.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15977 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15978 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15979 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15980 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15985 + components: + - pos: -8.5,51.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15988 + components: + - pos: -8.5,54.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15989 + components: + - pos: -8.5,55.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15990 + components: + - pos: -8.5,56.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15991 + components: + - pos: -8.5,57.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15994 + components: + - pos: -8.5,60.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15995 + components: + - pos: -8.5,61.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15996 + components: + - pos: -8.5,62.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15997 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,59.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16000 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,50.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16001 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,50.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16002 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,50.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 16003 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,50.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16004 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16005 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16008 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16009 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16010 + components: + - pos: -9.5,49.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16011 + components: + - pos: -9.5,50.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16012 + components: + - pos: -9.5,51.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16013 + components: + - pos: -9.5,52.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16014 + components: + - pos: -9.5,53.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16019 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,55.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16020 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,55.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16021 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,52.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 16026 + components: + - rot: 3.141592653589793 rad + pos: -9.5,56.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16027 + components: + - rot: 3.141592653589793 rad + pos: -9.5,57.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16028 + components: + - rot: 3.141592653589793 rad + pos: -9.5,58.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16032 + components: + - pos: -9.5,62.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16033 + components: + - pos: -9.5,61.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 16034 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,63.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16035 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,63.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16036 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,63.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16038 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,60.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16039 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,60.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 16041 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,58.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16042 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,58.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16043 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,58.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16044 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,58.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 16045 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,58.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16046 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,59.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16047 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,59.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16048 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,59.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16051 + components: + - pos: -9.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16054 + components: + - rot: 3.141592653589793 rad + pos: -8.5,49.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16055 + components: + - rot: 3.141592653589793 rad + pos: -8.5,48.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16056 + components: + - rot: 3.141592653589793 rad + pos: -8.5,47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16057 + components: + - rot: 3.141592653589793 rad + pos: -8.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16060 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16061 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16062 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16065 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16066 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16067 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,46.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16068 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,46.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16071 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,46.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16072 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,46.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16073 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,46.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16074 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,46.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16078 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16079 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,46.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16080 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,46.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16081 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,46.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16082 + components: + - rot: 3.141592653589793 rad + pos: -16.5,45.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16083 + components: + - rot: 3.141592653589793 rad + pos: -16.5,44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16084 + components: + - rot: 3.141592653589793 rad + pos: -16.5,43.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 16085 + components: + - rot: 3.141592653589793 rad + pos: -16.5,42.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16088 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16089 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16090 + components: + - pos: -18.5,43.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 16091 + components: + - pos: -18.5,42.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16093 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16096 + components: + - rot: 3.141592653589793 rad + pos: -13.5,44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16097 + components: + - rot: 3.141592653589793 rad + pos: -13.5,43.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 16098 + components: + - rot: 3.141592653589793 rad + pos: -13.5,42.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16099 + components: + - rot: 3.141592653589793 rad + pos: -12.5,45.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16100 + components: + - rot: 3.141592653589793 rad + pos: -12.5,44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16101 + components: + - rot: 3.141592653589793 rad + pos: -12.5,43.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16102 + components: + - rot: 3.141592653589793 rad + pos: -12.5,42.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16103 + components: + - rot: 3.141592653589793 rad + pos: -10.5,44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16104 + components: + - rot: 3.141592653589793 rad + pos: -10.5,43.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 16105 + components: + - rot: 3.141592653589793 rad + pos: -10.5,42.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16106 + components: + - rot: 3.141592653589793 rad + pos: -9.5,45.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16107 + components: + - rot: 3.141592653589793 rad + pos: -9.5,44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16108 + components: + - rot: 3.141592653589793 rad + pos: -9.5,43.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16109 + components: + - rot: 3.141592653589793 rad + pos: -9.5,42.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16110 + components: + - rot: 3.141592653589793 rad + pos: -7.5,44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16111 + components: + - rot: 3.141592653589793 rad + pos: -7.5,43.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 16112 + components: + - rot: 3.141592653589793 rad + pos: -7.5,42.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16113 + components: + - rot: 3.141592653589793 rad + pos: -6.5,45.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16114 + components: + - rot: 3.141592653589793 rad + pos: -6.5,44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16115 + components: + - rot: 3.141592653589793 rad + pos: -6.5,43.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16116 + components: + - rot: 3.141592653589793 rad + pos: -6.5,42.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16117 + components: + - pos: -17.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16119 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16120 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16121 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16122 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16123 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16124 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16125 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16127 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16128 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16132 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16133 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16134 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16135 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16136 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16138 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16144 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16145 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16146 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16147 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16149 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16151 + components: + - pos: -31.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16152 + components: + - pos: -31.5,46.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16153 + components: + - pos: -31.5,45.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16154 + components: + - rot: 3.141592653589793 rad + pos: -30.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16159 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16160 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16161 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16162 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16166 + components: + - rot: 3.141592653589793 rad + pos: -35.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16168 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,48.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16172 + components: + - pos: -35.5,44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16173 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,43.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16174 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16176 + components: + - rot: 3.141592653589793 rad + pos: -4.5,44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16177 + components: + - rot: 3.141592653589793 rad + pos: -4.5,43.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 16178 + components: + - rot: 3.141592653589793 rad + pos: -4.5,42.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16179 + components: + - rot: 3.141592653589793 rad + pos: -3.5,45.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16180 + components: + - rot: 3.141592653589793 rad + pos: -3.5,44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16181 + components: + - rot: 3.141592653589793 rad + pos: -3.5,43.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16182 + components: + - rot: 3.141592653589793 rad + pos: -3.5,42.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16192 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,56.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16193 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16197 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16198 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16199 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16200 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16202 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,56.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16204 + components: + - rot: 3.141592653589793 rad + pos: 8.5,57.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16205 + components: + - rot: 3.141592653589793 rad + pos: 8.5,58.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16207 + components: + - pos: 11.5,54.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16208 + components: + - pos: 11.5,55.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16209 + components: + - pos: 11.5,56.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16210 + components: + - pos: 11.5,57.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16211 + components: + - pos: 11.5,58.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16213 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,59.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16215 + components: + - rot: 3.141592653589793 rad + pos: 0.5,56.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16216 + components: + - rot: 3.141592653589793 rad + pos: 0.5,57.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16217 + components: + - rot: 3.141592653589793 rad + pos: 0.5,58.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16218 + components: + - rot: 3.141592653589793 rad + pos: 0.5,59.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16219 + components: + - rot: 3.141592653589793 rad + pos: 0.5,60.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16222 + components: + - pos: -1.5,57.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16223 + components: + - pos: -1.5,58.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16224 + components: + - pos: -1.5,59.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16225 + components: + - pos: -1.5,60.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16226 + components: + - pos: -1.5,61.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16227 + components: + - pos: -1.5,62.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16230 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,63.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16231 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,63.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16232 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,63.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16233 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,63.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16234 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,61.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 16235 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,61.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16236 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,61.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16242 + components: + - pos: 0.5,64.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16243 + components: + - pos: 0.5,63.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16244 + components: + - pos: 0.5,62.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16247 + components: + - pos: -1.5,65.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16248 + components: + - pos: -1.5,66.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16249 + components: + - pos: -1.5,67.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16250 + components: + - pos: 0.5,67.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16251 + components: + - pos: 0.5,68.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16252 + components: + - pos: 0.5,69.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16253 + components: + - pos: 0.5,70.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16258 + components: + - pos: -1.5,69.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16259 + components: + - pos: -1.5,71.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16260 + components: + - pos: -1.5,72.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16261 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,68.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16262 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,68.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16263 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,68.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16264 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,68.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16265 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,68.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16266 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,68.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16267 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,68.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16268 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,68.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16269 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,68.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16270 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,68.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16271 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,68.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16272 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,66.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16273 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,66.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16274 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,66.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16275 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,66.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16276 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,66.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16277 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,66.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16278 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,66.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16279 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,66.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16280 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,66.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16281 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,66.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16289 + components: + - pos: 0.5,72.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16290 + components: + - pos: 0.5,73.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16291 + components: + - pos: -1.5,74.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16292 + components: + - pos: -1.5,75.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16293 + components: + - pos: -1.5,76.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16294 + components: + - pos: 0.5,75.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16295 + components: + - pos: 0.5,76.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16298 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,78.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16299 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,78.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16300 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,78.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16301 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,78.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16302 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,77.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16303 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,77.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16306 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,77.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16307 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,77.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16308 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,77.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16309 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,77.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16310 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,77.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16311 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,77.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16314 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,78.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16315 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,78.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16316 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,78.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16317 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,78.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16318 + components: + - pos: -5.5,76.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16319 + components: + - pos: -5.5,75.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16320 + components: + - pos: -5.5,74.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16321 + components: + - pos: -6.5,77.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16322 + components: + - pos: -6.5,76.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16323 + components: + - pos: -6.5,75.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 16324 + components: + - pos: -6.5,74.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16326 + components: + - rot: 3.141592653589793 rad + pos: -1.5,77.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16329 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,78.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16330 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,78.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16333 + components: + - pos: -5.5,73.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16336 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,72.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16337 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,72.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16341 + components: + - rot: 3.141592653589793 rad + pos: -8.5,71.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16342 + components: + - rot: 3.141592653589793 rad + pos: 3.5,76.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16343 + components: + - rot: 3.141592653589793 rad + pos: 3.5,75.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 16344 + components: + - rot: 3.141592653589793 rad + pos: 5.5,77.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16345 + components: + - rot: 3.141592653589793 rad + pos: 5.5,76.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16346 + components: + - rot: 3.141592653589793 rad + pos: 5.5,75.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16350 + components: + - pos: 28.5,-10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 16351 + components: + - pos: 28.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16354 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16355 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16356 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16357 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16360 + components: + - pos: 12.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16361 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-35.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16362 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-35.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16363 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-35.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 16364 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-35.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 16366 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-35.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16367 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16368 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 16369 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16370 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 16371 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16373 + components: + - pos: 12.5,-35.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16471 + components: + - rot: 3.141592653589793 rad + pos: 0.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16472 + components: + - rot: 3.141592653589793 rad + pos: 0.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16473 + components: + - rot: 3.141592653589793 rad + pos: 0.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16474 + components: + - rot: 3.141592653589793 rad + pos: 0.5,17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16844 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16845 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16846 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16847 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16848 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16849 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16850 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 17473 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,10.5 + parent: 1 + type: Transform + - uid: 17474 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,10.5 + parent: 1 + type: Transform + - uid: 17475 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,10.5 + parent: 1 + type: Transform + - uid: 17476 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,10.5 + parent: 1 + type: Transform + - uid: 17477 + components: + - rot: 3.141592653589793 rad + pos: -22.5,12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 17478 + components: + - rot: 3.141592653589793 rad + pos: -22.5,11.5 + parent: 1 + type: Transform + - uid: 18141 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-2.5 + parent: 1 + type: Transform + - uid: 18142 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 18143 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 18145 + components: + - pos: -19.5,-3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 18146 + components: + - pos: -19.5,-4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 18148 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 18149 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 18150 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 18151 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 18152 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 18153 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 18155 + components: + - pos: -26.5,-6.5 + parent: 1 + type: Transform + - uid: 18482 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-12.5 + parent: 1 + type: Transform + - uid: 18483 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-12.5 + parent: 1 + type: Transform +- proto: GasPipeTJunction + entities: + - uid: 2630 + components: + - pos: -6.5,-18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 2748 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2749 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2750 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2754 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2755 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2765 + components: + - pos: -8.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2772 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2779 + components: + - pos: -5.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2781 + components: + - pos: -4.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2796 + components: + - pos: -12.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2957 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2958 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4418 + components: + - rot: 3.141592653589793 rad + pos: 14.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6371 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,33.5 + parent: 1 + type: Transform + - uid: 6374 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,32.5 + parent: 1 + type: Transform + - uid: 9032 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10899 + components: + - pos: 24.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10902 + components: + - pos: 20.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10904 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10905 + components: + - pos: 18.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10914 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10919 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10923 + components: + - pos: 0.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10926 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11217 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12100 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13882 + components: + - rot: 3.141592653589793 rad + pos: 25.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14223 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14227 + components: + - pos: 3.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14230 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14233 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14240 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14245 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14253 + components: + - pos: 9.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14261 + components: + - pos: 10.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14262 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14277 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14279 + components: + - pos: 19.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14303 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14316 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14317 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14322 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14323 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14341 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14342 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14343 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14351 + components: + - pos: 28.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14352 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14353 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14383 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14392 + components: + - pos: 8.5,-32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14393 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14419 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14424 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14427 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14430 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14437 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14445 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14449 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14450 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14469 + components: + - rot: 3.141592653589793 rad + pos: 28.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14473 + components: + - rot: 3.141592653589793 rad + pos: 24.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14482 + components: + - rot: 3.141592653589793 rad + pos: 15.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14489 + components: + - rot: 3.141592653589793 rad + pos: 8.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14496 + components: + - pos: 1.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14497 + components: + - rot: 3.141592653589793 rad + pos: 0.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14501 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14509 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14516 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14522 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14528 + components: + - pos: -2.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14532 + components: + - pos: -16.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14534 + components: + - pos: -18.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14535 + components: + - pos: -16.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14539 + components: + - pos: -16.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14540 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14563 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14567 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14579 + components: + - pos: -25.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14580 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-7.5 + parent: 1 + type: Transform + - uid: 14587 + components: + - rot: 3.141592653589793 rad + pos: -28.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14599 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14606 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14610 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14615 + components: + - pos: -22.5,13.5 + parent: 1 + type: Transform + - uid: 14616 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14618 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14629 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14648 + components: + - rot: 3.141592653589793 rad + pos: -6.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14649 + components: + - rot: 3.141592653589793 rad + pos: -8.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14667 + components: + - pos: -12.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14670 + components: + - rot: 3.141592653589793 rad + pos: -11.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14713 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14714 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14719 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14765 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14769 + components: + - pos: 27.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14777 + components: + - pos: 35.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14778 + components: + - rot: 3.141592653589793 rad + pos: 36.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14817 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14820 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14821 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14843 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14845 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14868 + components: + - pos: 35.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14876 + components: + - rot: 3.141592653589793 rad + pos: 36.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14898 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14915 + components: + - pos: 27.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14927 + components: + - pos: 17.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14940 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14941 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14963 + components: + - rot: 3.141592653589793 rad + pos: 35.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14965 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,37.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14968 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14972 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,37.5 + parent: 1 + type: Transform + - uid: 14980 + components: + - pos: 25.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14986 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,40.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14991 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,41.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14999 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15000 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15008 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,49.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15019 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,50.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15020 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,49.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15035 + components: + - pos: 36.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15046 + components: + - rot: 3.141592653589793 rad + pos: 44.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15061 + components: + - rot: 3.141592653589793 rad + pos: 43.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15086 + components: + - rot: 3.141592653589793 rad + pos: 18.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15093 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,37.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15110 + components: + - rot: 3.141592653589793 rad + pos: 15.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15114 + components: + - rot: 3.141592653589793 rad + pos: 14.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15119 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,41.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15120 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15121 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,43.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15134 + components: + - pos: 15.5,45.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15135 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15137 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,42.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15153 + components: + - pos: 11.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15159 + components: + - rot: 3.141592653589793 rad + pos: 10.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15165 + components: + - pos: 5.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15166 + components: + - rot: 3.141592653589793 rad + pos: 4.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15192 + components: + - rot: 3.141592653589793 rad + pos: -7.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15193 + components: + - pos: -8.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15213 + components: + - pos: -13.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15231 + components: + - pos: -20.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15234 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15239 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15241 + components: + - rot: 3.141592653589793 rad + pos: -15.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15242 + components: + - rot: 3.141592653589793 rad + pos: -13.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15246 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15262 + components: + - pos: -17.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15267 + components: + - pos: -12.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15268 + components: + - rot: 3.141592653589793 rad + pos: -11.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15287 + components: + - rot: 3.141592653589793 rad + pos: -10.5,22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15288 + components: + - pos: -9.5,22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15293 + components: + - pos: -7.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15296 + components: + - rot: 3.141592653589793 rad + pos: -9.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15305 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15306 + components: + - rot: 3.141592653589793 rad + pos: -4.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15319 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15320 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15349 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15350 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15353 + components: + - rot: 3.141592653589793 rad + pos: -1.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15369 + components: + - rot: 3.141592653589793 rad + pos: 3.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15380 + components: + - pos: 9.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15410 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15429 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15430 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15443 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15456 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15468 + components: + - pos: -10.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15478 + components: + - rot: 3.141592653589793 rad + pos: -9.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15481 + components: + - rot: 3.141592653589793 rad + pos: 4.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15484 + components: + - rot: 3.141592653589793 rad + pos: 7.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15506 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15526 + components: + - rot: 3.141592653589793 rad + pos: 10.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15539 + components: + - pos: 9.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15554 + components: + - rot: 3.141592653589793 rad + pos: 15.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15559 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15564 + components: + - rot: 3.141592653589793 rad + pos: 20.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15575 + components: + - rot: 3.141592653589793 rad + pos: 19.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15596 + components: + - rot: 3.141592653589793 rad + pos: -19.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15597 + components: + - pos: -22.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15622 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,10.5 + parent: 1 + type: Transform + - uid: 15638 + components: + - rot: 3.141592653589793 rad + pos: -37.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15639 + components: + - rot: 3.141592653589793 rad + pos: -39.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15698 + components: + - pos: -34.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15699 + components: + - rot: 3.141592653589793 rad + pos: -34.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15708 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15709 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15723 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15737 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15738 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15753 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15763 + components: + - pos: -38.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15811 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15812 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15813 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15814 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,31.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15815 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15816 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15832 + components: + - pos: -30.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15833 + components: + - pos: -32.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15842 + components: + - pos: -22.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15848 + components: + - rot: 3.141592653589793 rad + pos: -24.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15872 + components: + - pos: -37.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15873 + components: + - rot: 3.141592653589793 rad + pos: -36.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15879 + components: + - rot: 3.141592653589793 rad + pos: -43.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15896 + components: + - rot: 3.141592653589793 rad + pos: -47.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15919 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,42.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15920 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,43.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15924 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15925 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15929 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15930 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,50.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15963 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15964 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,55.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15968 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,54.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15969 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,56.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15986 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,52.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15987 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,54.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15992 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,58.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15993 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,59.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16015 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16016 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,55.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16029 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,59.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16030 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,60.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16053 + components: + - rot: 3.141592653589793 rad + pos: -8.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16058 + components: + - pos: -7.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16063 + components: + - pos: -10.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16064 + components: + - pos: -13.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16069 + components: + - pos: -6.5,46.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16075 + components: + - pos: -12.5,46.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16076 + components: + - pos: -16.5,46.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16077 + components: + - pos: -15.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16092 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,46.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16126 + components: + - pos: -25.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16129 + components: + - rot: 3.141592653589793 rad + pos: -24.5,47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16130 + components: + - rot: 3.141592653589793 rad + pos: -27.5,47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16131 + components: + - pos: -28.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16140 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16150 + components: + - pos: -30.5,47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16163 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16164 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16190 + components: + - pos: 6.5,56.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16194 + components: + - rot: 3.141592653589793 rad + pos: 6.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16220 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,61.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16221 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,63.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16228 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,64.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16229 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,65.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16245 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,66.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16246 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,68.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16254 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,71.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16255 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,74.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16256 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,70.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16257 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,73.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16296 + components: + - pos: 0.5,77.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16297 + components: + - pos: -1.5,78.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16304 + components: + - pos: 3.5,77.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16305 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,78.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16312 + components: + - pos: -5.5,77.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16313 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,78.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16338 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,72.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16372 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 18478 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-12.5 + parent: 1 + type: Transform +- proto: GasPort + entities: + - uid: 2609 + components: + - pos: -9.5,-40.5 + parent: 1 + type: Transform + - uid: 2610 + components: + - pos: -10.5,-40.5 + parent: 1 + type: Transform + - uid: 2876 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-11.5 + parent: 1 + type: Transform + - uid: 2877 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-12.5 + parent: 1 + type: Transform + - uid: 2878 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-14.5 + parent: 1 + type: Transform + - uid: 2879 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-15.5 + parent: 1 + type: Transform + - uid: 3443 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,33.5 + parent: 1 + type: Transform + - uid: 3548 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,28.5 + parent: 1 + type: Transform + - uid: 3549 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,30.5 + parent: 1 + type: Transform + - uid: 6369 + components: + - pos: 10.5,34.5 + parent: 1 + type: Transform + - uid: 6584 + components: + - pos: -6.5,34.5 + parent: 1 + type: Transform + - uid: 6585 + components: + - pos: -7.5,34.5 + parent: 1 + type: Transform + - uid: 10876 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-20.5 + parent: 1 + type: Transform + - uid: 13171 + components: + - pos: -23.5,-0.5 + parent: 1 + type: Transform + - uid: 13855 + components: + - pos: 18.5,54.5 + parent: 1 + type: Transform + - uid: 15270 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15271 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPressurePump + entities: + - uid: 2606 + components: + - pos: -6.5,-41.5 + parent: 1 + type: Transform + - uid: 2615 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-39.5 + parent: 1 + type: Transform + - uid: 2619 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-33.5 + parent: 1 + type: Transform + - uid: 2623 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2636 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-29.5 + parent: 1 + type: Transform + - uid: 2637 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-27.5 + parent: 1 + type: Transform + - uid: 2638 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-25.5 + parent: 1 + type: Transform + - uid: 2639 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-23.5 + parent: 1 + type: Transform + - uid: 2640 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-21.5 + parent: 1 + type: Transform + - uid: 2641 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-19.5 + parent: 1 + type: Transform + - uid: 2642 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-19.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2684 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-35.5 + parent: 1 + type: Transform + - uid: 2761 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2762 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2763 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2764 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 3546 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,28.5 + parent: 1 + type: Transform + - uid: 3547 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,30.5 + parent: 1 + type: Transform + - uid: 6373 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,32.5 + parent: 1 + type: Transform + - uid: 6377 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 9199 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-41.5 + parent: 1 + type: Transform + - uid: 10877 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13172 + components: + - pos: -23.5,-1.5 + parent: 1 + type: Transform + - uid: 13856 + components: + - pos: 18.5,53.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasRecyclerMachineCircuitboard + entities: + - uid: 8725 + components: + - pos: -10.353789,-19.334864 + parent: 1 + type: Transform +- proto: GasThermoMachineFreezer + entities: + - uid: 2612 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-41.5 + parent: 1 + type: Transform + - uid: 2769 + components: + - pos: -9.5,-11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6370 + components: + - pos: 11.5,34.5 + parent: 1 + type: Transform + - uid: 9204 + components: + - pos: -13.5,-22.5 + parent: 1 + type: Transform + - uid: 9852 + components: + - pos: -30.5,-11.5 + parent: 1 + type: Transform + - targetTemperature: 0 + type: GasThermoMachine + - uid: 18205 + components: + - pos: 21.5,-11.5 + parent: 1 + type: Transform +- proto: GasThermoMachineHeater + entities: + - uid: 2611 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-41.5 + parent: 1 + type: Transform + - uid: 2768 + components: + - pos: -10.5,-11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 9203 + components: + - pos: -13.5,-35.5 + parent: 1 + type: Transform +- proto: GasValve + entities: + - uid: 2629 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-18.5 + parent: 1 + type: Transform + - open: False + type: GasValve + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2676 + components: + - pos: 0.5,-37.5 + parent: 1 + type: Transform + - open: False + type: GasValve + - enabled: False + type: AmbientSound + - uid: 2959 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-44.5 + parent: 1 + type: Transform + - open: False + type: GasValve + - enabled: False + type: AmbientSound +- proto: GasVentPump + entities: + - uid: 2737 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-17.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2745 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-18.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2760 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-13.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2773 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8694 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,23.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 9036 + components: + - pos: 11.5,31.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10903 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-8.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11931 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-23.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14224 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14254 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-13.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14286 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-15.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14295 + components: + - pos: 19.5,-5.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14318 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-17.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14332 + components: + - pos: 6.5,-19.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 14345 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-22.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 14389 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-37.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14405 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-33.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 14415 + components: + - pos: 6.5,-30.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 14417 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-37.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 14457 + components: + - rot: 3.141592653589793 rad + pos: 35.5,14.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14570 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-15.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14571 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-15.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14633 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14636 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,9.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14659 + components: + - pos: -6.5,7.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14682 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,3.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14685 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,0.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14696 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,0.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14712 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-3.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14720 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14748 + components: + - pos: 10.5,7.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14751 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14761 + components: + - pos: 25.5,-3.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14772 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-8.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14793 + components: + - rot: 3.141592653589793 rad + pos: 48.5,-8.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14807 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-8.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14815 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-3.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14827 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,2.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14840 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,3.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14844 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,8.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14856 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,9.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14880 + components: + - rot: 3.141592653589793 rad + pos: 48.5,14.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14900 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,19.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14906 + components: + - pos: 25.5,20.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14917 + components: + - rot: 3.141592653589793 rad + pos: 27.5,14.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14929 + components: + - rot: 3.141592653589793 rad + pos: 17.5,14.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14954 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,32.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14988 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,41.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15002 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,47.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15030 + components: + - pos: 24.5,51.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15036 + components: + - rot: 3.141592653589793 rad + pos: 36.5,37.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15065 + components: + - pos: 43.5,42.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15066 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,38.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15075 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,33.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15095 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,37.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 15101 + components: + - pos: 22.5,41.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15133 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,45.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15146 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,45.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15147 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,44.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15148 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,42.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15154 + components: + - rot: 3.141592653589793 rad + pos: 11.5,37.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15172 + components: + - rot: 3.141592653589793 rad + pos: 5.5,37.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15200 + components: + - rot: 3.141592653589793 rad + pos: -8.5,37.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15225 + components: + - rot: 3.141592653589793 rad + pos: -13.5,37.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15263 + components: + - rot: 3.141592653589793 rad + pos: -17.5,32.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15266 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,28.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15284 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,29.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15295 + components: + - pos: -9.5,18.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15317 + components: + - pos: -4.5,22.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15325 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,32.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15351 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,20.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15382 + components: + - rot: 3.141592653589793 rad + pos: 9.5,14.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15452 + components: + - rot: 3.141592653589793 rad + pos: -24.5,22.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15457 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,22.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15460 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,19.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15480 + components: + - rot: 3.141592653589793 rad + pos: -10.5,14.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15499 + components: + - pos: 7.5,18.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15524 + components: + - pos: 4.5,23.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15544 + components: + - pos: 7.5,31.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15558 + components: + - pos: 20.5,29.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15566 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,28.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15579 + components: + - rot: 3.141592653589793 rad + pos: 9.5,27.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15582 + components: + - pos: 15.5,31.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15609 + components: + - rot: 3.141592653589793 rad + pos: -22.5,14.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15669 + components: + - rot: 3.141592653589793 rad + pos: -47.5,14.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15681 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,28.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15695 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,9.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15700 + components: + - rot: 3.141592653589793 rad + pos: -34.5,6.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15710 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,6.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15713 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,8.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15728 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-6.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15743 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-2.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15774 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-8.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15775 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-8.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15778 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-3.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15826 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,30.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15827 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,31.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15828 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,19.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15860 + components: + - rot: 3.141592653589793 rad + pos: -22.5,37.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15909 + components: + - rot: 3.141592653589793 rad + pos: -49.5,37.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15910 + components: + - pos: -43.5,42.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15911 + components: + - rot: 3.141592653589793 rad + pos: -37.5,37.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15921 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,42.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15944 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,47.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15982 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,54.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16007 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,48.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16018 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,54.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16024 + components: + - pos: -6.5,56.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16037 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,63.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16040 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,60.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16049 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,59.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16094 + components: + - rot: 3.141592653589793 rad + pos: -16.5,41.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16141 + components: + - rot: 3.141592653589793 rad + pos: -17.5,45.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16157 + components: + - rot: 3.141592653589793 rad + pos: -31.5,44.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16158 + components: + - rot: 3.141592653589793 rad + pos: -28.5,47.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16175 + components: + - rot: 3.141592653589793 rad + pos: -25.5,47.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16183 + components: + - rot: 3.141592653589793 rad + pos: -3.5,41.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16184 + components: + - rot: 3.141592653589793 rad + pos: -6.5,41.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16185 + components: + - rot: 3.141592653589793 rad + pos: -9.5,41.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16186 + components: + - rot: 3.141592653589793 rad + pos: -12.5,41.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16195 + components: + - rot: 3.141592653589793 rad + pos: 6.5,55.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16206 + components: + - pos: 8.5,59.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16239 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,63.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16240 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,64.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16284 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,68.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16285 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,70.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16286 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,73.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16327 + components: + - pos: -6.5,79.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16328 + components: + - pos: 5.5,79.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16334 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,73.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16348 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,74.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16359 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-12.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16374 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-34.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 17402 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,37.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 17480 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,10.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 18353 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-25.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound +- proto: GasVentScrubber + entities: + - uid: 566 + components: + - pos: -7.5,37.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2740 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-21.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2741 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-18.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2759 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-13.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2774 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-11.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5390 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 9037 + components: + - pos: 10.5,31.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12901 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,29.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14225 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-11.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14285 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-15.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14296 + components: + - pos: 21.5,-5.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14298 + components: + - pos: 17.5,-8.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14312 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-13.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14319 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-18.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14333 + components: + - pos: 5.5,-19.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 14344 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-23.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 14366 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-24.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 14404 + components: + - pos: 7.5,-30.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 14416 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-33.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 14569 + components: + - pos: -17.5,-17.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14572 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-18.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14635 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,9.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14660 + components: + - pos: -8.5,7.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14672 + components: + - pos: -11.5,2.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14683 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,4.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14697 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,1.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14711 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-4.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14717 + components: + - pos: 11.5,1.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14718 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14749 + components: + - pos: 6.5,7.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14750 + components: + - pos: -1.5,-8.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14760 + components: + - pos: 26.5,-3.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14771 + components: + - pos: 29.5,-8.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14792 + components: + - pos: 46.5,-8.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14808 + components: + - pos: 36.5,-8.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14816 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-2.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14826 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,3.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14841 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,6.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14842 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,9.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14857 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,10.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14875 + components: + - pos: 36.5,14.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14879 + components: + - pos: 46.5,14.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14899 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,20.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14907 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,18.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14916 + components: + - pos: 28.5,14.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14928 + components: + - pos: 15.5,14.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14955 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,31.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14983 + components: + - rot: 3.141592653589793 rad + pos: 31.5,36.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14987 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,40.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15001 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,47.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15028 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,49.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15029 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,47.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15031 + components: + - pos: 25.5,51.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15037 + components: + - pos: 35.5,37.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15054 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,43.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15067 + components: + - pos: 46.5,37.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15076 + components: + - rot: 3.141592653589793 rad + pos: 25.5,33.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15084 + components: + - pos: 32.5,54.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15094 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,37.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15102 + components: + - pos: 18.5,41.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15129 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,41.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15130 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,45.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15131 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,46.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15132 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,43.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15155 + components: + - pos: 10.5,37.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15173 + components: + - pos: 4.5,37.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15226 + components: + - pos: -15.5,37.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15264 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,32.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15265 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,27.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15283 + components: + - pos: -10.5,31.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15294 + components: + - rot: 3.141592653589793 rad + pos: -7.5,18.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15316 + components: + - pos: -6.5,22.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15326 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,31.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15352 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,19.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15381 + components: + - pos: 8.5,14.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15411 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,22.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15447 + components: + - pos: -24.5,21.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15458 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,21.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15459 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,18.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15479 + components: + - pos: -9.5,14.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15500 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,18.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15525 + components: + - pos: 3.5,23.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15537 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,23.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15550 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,30.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15562 + components: + - pos: 19.5,32.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15578 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,27.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15587 + components: + - pos: 14.5,32.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15610 + components: + - pos: -19.5,14.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15668 + components: + - pos: -49.5,14.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15680 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,23.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15696 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,8.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15701 + components: + - pos: -34.5,5.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15729 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-6.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15742 + components: + - rot: 3.141592653589793 rad + pos: -35.5,-2.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15757 + components: + - pos: -39.5,0.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15768 + components: + - rot: 3.141592653589793 rad + pos: -42.5,9.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15771 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,10.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15773 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-8.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15776 + components: + - pos: -28.5,-8.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15777 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-2.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15829 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,20.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15830 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,32.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15831 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,33.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15859 + components: + - pos: -24.5,37.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15906 + components: + - pos: -36.5,37.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15907 + components: + - pos: -47.5,37.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15908 + components: + - pos: -48.5,42.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15922 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,43.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15945 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,46.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15981 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,55.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15998 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,59.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15999 + components: + - pos: -8.5,63.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16006 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,50.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16017 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,53.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16025 + components: + - pos: -6.5,53.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16050 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,58.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16095 + components: + - rot: 3.141592653589793 rad + pos: -18.5,41.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16142 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,46.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16143 + components: + - pos: -24.5,48.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16155 + components: + - pos: -27.5,48.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16156 + components: + - rot: 3.141592653589793 rad + pos: -30.5,45.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16169 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,48.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16170 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,45.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 16171 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,43.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16187 + components: + - rot: 3.141592653589793 rad + pos: -13.5,41.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16188 + components: + - rot: 3.141592653589793 rad + pos: -10.5,41.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16189 + components: + - rot: 3.141592653589793 rad + pos: -7.5,41.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16191 + components: + - rot: 3.141592653589793 rad + pos: -4.5,41.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16196 + components: + - pos: 6.5,54.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16214 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,59.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16238 + components: + - pos: 4.5,62.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16241 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,65.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16283 + components: + - pos: 11.5,67.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16287 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,71.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16288 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,74.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16331 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,77.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16332 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,77.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16339 + components: + - pos: -8.5,73.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16340 + components: + - rot: 3.141592653589793 rad + pos: -8.5,70.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16349 + components: + - rot: 3.141592653589793 rad + pos: 3.5,74.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16358 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-12.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16365 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-35.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 17481 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,10.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 18354 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-37.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound +- proto: Gauze1 + entities: + - uid: 8684 + components: + - pos: 20.395086,26.729904 + parent: 1 + type: Transform +- proto: GeigerCounter + entities: + - uid: 7118 + components: + - pos: -11.17118,34.431652 + parent: 1 + type: Transform + - uid: 8352 + components: + - pos: -28.472635,29.713726 + parent: 1 + type: Transform + - uid: 8712 + components: + - pos: -11.651781,-19.255426 + parent: 1 + type: Transform + - uid: 9087 + components: + - pos: 6.3722563,-21.377989 + parent: 1 + type: Transform + - uid: 9236 + components: + - pos: -22.141773,-11.462118 + parent: 1 + type: Transform + - uid: 10931 + components: + - pos: 28.285597,-18.438898 + parent: 1 + type: Transform + - uid: 11075 + components: + - pos: 19.660683,4.558688 + parent: 1 + type: Transform +- proto: Girder + entities: + - uid: 1853 + components: + - pos: -23.5,55.5 + parent: 1 + type: Transform + - uid: 3206 + components: + - pos: 37.5,43.5 + parent: 1 + type: Transform + - uid: 3598 + components: + - pos: 33.5,-15.5 + parent: 1 + type: Transform + - uid: 4529 + components: + - pos: -30.5,-20.5 + parent: 1 + type: Transform + - uid: 4556 + components: + - pos: -19.5,-29.5 + parent: 1 + type: Transform + - uid: 6855 + components: + - pos: 37.5,48.5 + parent: 1 + type: Transform +- proto: GlowstickPurple + entities: + - uid: 9934 + components: + - pos: -22.667574,-29.32562 + parent: 1 + type: Transform +- proto: GravityGenerator + entities: + - uid: 4408 + components: + - pos: -22.5,-16.5 + parent: 1 + type: Transform + - charge: 99 + type: GravityGenerator + - radius: 174 + type: PointLight +- proto: GravityGeneratorMini + entities: + - uid: 8815 + components: + - pos: -0.5,-5.5 + parent: 8756 + type: Transform +- proto: Grille + entities: + - uid: 4 + components: + - rot: 3.141592653589793 rad + pos: 49.5,18.5 + parent: 1 + type: Transform + - uid: 8 + components: + - rot: 3.141592653589793 rad + pos: 44.5,17.5 + parent: 1 + type: Transform + - uid: 9 + components: + - rot: 3.141592653589793 rad + pos: 45.5,18.5 + parent: 1 + type: Transform + - uid: 13 + components: + - rot: 3.141592653589793 rad + pos: 50.5,17.5 + parent: 1 + type: Transform + - uid: 16 + components: + - pos: 42.5,16.5 + parent: 1 + type: Transform + - uid: 17 + components: + - pos: 41.5,16.5 + parent: 1 + type: Transform + - uid: 18 + components: + - pos: 40.5,16.5 + parent: 1 + type: Transform + - uid: 19 + components: + - pos: 39.5,16.5 + parent: 1 + type: Transform + - uid: 20 + components: + - pos: 34.5,16.5 + parent: 1 + type: Transform + - uid: 21 + components: + - pos: 35.5,16.5 + parent: 1 + type: Transform + - uid: 22 + components: + - pos: 36.5,16.5 + parent: 1 + type: Transform + - uid: 23 + components: + - pos: 37.5,16.5 + parent: 1 + type: Transform + - uid: 32 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,28.5 + parent: 1 + type: Transform + - uid: 33 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,27.5 + parent: 1 + type: Transform + - uid: 34 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,24.5 + parent: 1 + type: Transform + - uid: 35 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,23.5 + parent: 1 + type: Transform + - uid: 36 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,33.5 + parent: 1 + type: Transform + - uid: 37 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,32.5 + parent: 1 + type: Transform + - uid: 39 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,34.5 + parent: 1 + type: Transform + - uid: 41 + components: + - pos: 33.5,19.5 + parent: 1 + type: Transform + - uid: 42 + components: + - pos: 33.5,18.5 + parent: 1 + type: Transform + - uid: 43 + components: + - pos: 33.5,17.5 + parent: 1 + type: Transform + - uid: 53 + components: + - rot: 3.141592653589793 rad + pos: 45.5,16.5 + parent: 1 + type: Transform + - uid: 54 + components: + - rot: 3.141592653589793 rad + pos: 49.5,16.5 + parent: 1 + type: Transform + - uid: 69 + components: + - rot: 3.141592653589793 rad + pos: 51.5,16.5 + parent: 1 + type: Transform + - uid: 70 + components: + - rot: 3.141592653589793 rad + pos: 51.5,12.5 + parent: 1 + type: Transform + - uid: 77 + components: + - rot: 3.141592653589793 rad + pos: 51.5,39.5 + parent: 1 + type: Transform + - uid: 78 + components: + - rot: 3.141592653589793 rad + pos: 45.5,33.5 + parent: 1 + type: Transform + - uid: 79 + components: + - rot: 3.141592653589793 rad + pos: 44.5,34.5 + parent: 1 + type: Transform + - uid: 80 + components: + - rot: 3.141592653589793 rad + pos: 51.5,35.5 + parent: 1 + type: Transform + - uid: 81 + components: + - rot: 3.141592653589793 rad + pos: 50.5,34.5 + parent: 1 + type: Transform + - uid: 82 + components: + - rot: 3.141592653589793 rad + pos: 49.5,33.5 + parent: 1 + type: Transform + - uid: 92 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,11.5 + parent: 1 + type: Transform + - uid: 102 + components: + - pos: 50.5,-9.5 + parent: 1 + type: Transform + - uid: 104 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,11.5 + parent: 1 + type: Transform + - uid: 106 + components: + - pos: 41.5,-10.5 + parent: 1 + type: Transform + - uid: 116 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,7.5 + parent: 1 + type: Transform + - uid: 117 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,8.5 + parent: 1 + type: Transform + - uid: 118 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,9.5 + parent: 1 + type: Transform + - uid: 129 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-0.5 + parent: 1 + type: Transform + - uid: 130 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-1.5 + parent: 1 + type: Transform + - uid: 131 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-2.5 + parent: 1 + type: Transform + - uid: 152 + components: + - pos: -42.5,6.5 + parent: 1 + type: Transform + - uid: 153 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,11.5 + parent: 1 + type: Transform + - uid: 155 + components: + - pos: -43.5,6.5 + parent: 1 + type: Transform + - uid: 158 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,-5.5 + parent: 1 + type: Transform + - uid: 159 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,-5.5 + parent: 1 + type: Transform + - uid: 160 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,-5.5 + parent: 1 + type: Transform + - uid: 161 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-5.5 + parent: 1 + type: Transform + - uid: 162 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,-5.5 + parent: 1 + type: Transform + - uid: 163 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,11.5 + parent: 1 + type: Transform + - uid: 164 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,11.5 + parent: 1 + type: Transform + - uid: 165 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,11.5 + parent: 1 + type: Transform + - uid: 166 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,11.5 + parent: 1 + type: Transform + - uid: 169 + components: + - pos: 44.5,-11.5 + parent: 1 + type: Transform + - uid: 173 + components: + - pos: 45.5,-15.5 + parent: 1 + type: Transform + - uid: 178 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,2.5 + parent: 1 + type: Transform + - uid: 181 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,9.5 + parent: 1 + type: Transform + - uid: 182 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,10.5 + parent: 1 + type: Transform + - uid: 183 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,11.5 + parent: 1 + type: Transform + - uid: 184 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,12.5 + parent: 1 + type: Transform + - uid: 185 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,12.5 + parent: 1 + type: Transform + - uid: 186 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,12.5 + parent: 1 + type: Transform + - uid: 187 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,12.5 + parent: 1 + type: Transform + - uid: 188 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,12.5 + parent: 1 + type: Transform + - uid: 189 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,12.5 + parent: 1 + type: Transform + - uid: 190 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,12.5 + parent: 1 + type: Transform + - uid: 191 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,12.5 + parent: 1 + type: Transform + - uid: 211 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,29.5 + parent: 1 + type: Transform + - uid: 215 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,22.5 + parent: 1 + type: Transform + - uid: 222 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,35.5 + parent: 1 + type: Transform + - uid: 223 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,35.5 + parent: 1 + type: Transform + - uid: 224 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,35.5 + parent: 1 + type: Transform + - uid: 225 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,35.5 + parent: 1 + type: Transform + - uid: 226 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,35.5 + parent: 1 + type: Transform + - uid: 227 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,35.5 + parent: 1 + type: Transform + - uid: 228 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,35.5 + parent: 1 + type: Transform + - uid: 229 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,35.5 + parent: 1 + type: Transform + - uid: 237 + components: + - pos: -43.5,3.5 + parent: 1 + type: Transform + - uid: 238 + components: + - pos: -42.5,3.5 + parent: 1 + type: Transform + - uid: 274 + components: + - pos: -33.5,10.5 + parent: 1 + type: Transform + - uid: 276 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-3.5 + parent: 1 + type: Transform + - uid: 288 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,25.5 + parent: 1 + type: Transform + - uid: 297 + components: + - pos: 8.5,73.5 + parent: 1 + type: Transform + - uid: 299 + components: + - pos: 8.5,72.5 + parent: 1 + type: Transform + - uid: 301 + components: + - pos: 5.5,83.5 + parent: 1 + type: Transform + - uid: 306 + components: + - rot: 3.141592653589793 rad + pos: -3.5,84.5 + parent: 1 + type: Transform + - uid: 307 + components: + - rot: 3.141592653589793 rad + pos: -2.5,84.5 + parent: 1 + type: Transform + - uid: 308 + components: + - rot: 3.141592653589793 rad + pos: 0.5,84.5 + parent: 1 + type: Transform + - uid: 309 + components: + - rot: 3.141592653589793 rad + pos: 1.5,84.5 + parent: 1 + type: Transform + - uid: 310 + components: + - rot: 3.141592653589793 rad + pos: -6.5,83.5 + parent: 1 + type: Transform + - uid: 311 + components: + - rot: 3.141592653589793 rad + pos: -5.5,83.5 + parent: 1 + type: Transform + - uid: 312 + components: + - rot: 3.141592653589793 rad + pos: -7.5,82.5 + parent: 1 + type: Transform + - uid: 313 + components: + - rot: 3.141592653589793 rad + pos: -8.5,80.5 + parent: 1 + type: Transform + - uid: 314 + components: + - rot: 3.141592653589793 rad + pos: -8.5,79.5 + parent: 1 + type: Transform + - uid: 316 + components: + - rot: 3.141592653589793 rad + pos: 4.5,83.5 + parent: 1 + type: Transform + - uid: 332 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,77.5 + parent: 1 + type: Transform + - uid: 333 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,76.5 + parent: 1 + type: Transform + - uid: 346 + components: + - pos: -9.5,74.5 + parent: 1 + type: Transform + - uid: 347 + components: + - pos: -9.5,73.5 + parent: 1 + type: Transform + - uid: 348 + components: + - pos: -9.5,72.5 + parent: 1 + type: Transform + - uid: 362 + components: + - pos: 1.5,74.5 + parent: 1 + type: Transform + - uid: 365 + components: + - pos: 3.5,75.5 + parent: 1 + type: Transform + - uid: 366 + components: + - pos: 2.5,75.5 + parent: 1 + type: Transform + - uid: 367 + components: + - pos: 1.5,73.5 + parent: 1 + type: Transform + - uid: 374 + components: + - pos: 1.5,71.5 + parent: 1 + type: Transform + - uid: 375 + components: + - pos: 5.5,69.5 + parent: 1 + type: Transform + - uid: 376 + components: + - pos: 6.5,69.5 + parent: 1 + type: Transform + - uid: 390 + components: + - pos: 1.5,70.5 + parent: 1 + type: Transform + - uid: 393 + components: + - pos: 8.5,74.5 + parent: 1 + type: Transform + - uid: 394 + components: + - pos: 2.5,69.5 + parent: 1 + type: Transform + - uid: 395 + components: + - pos: 3.5,69.5 + parent: 1 + type: Transform + - uid: 400 + components: + - pos: 2.5,84.5 + parent: 1 + type: Transform + - uid: 401 + components: + - pos: -1.5,84.5 + parent: 1 + type: Transform + - uid: 402 + components: + - pos: 6.5,82.5 + parent: 1 + type: Transform + - uid: 403 + components: + - pos: 7.5,80.5 + parent: 1 + type: Transform + - uid: 404 + components: + - pos: 7.5,79.5 + parent: 1 + type: Transform + - uid: 405 + components: + - pos: 8.5,77.5 + parent: 1 + type: Transform + - uid: 406 + components: + - pos: 8.5,76.5 + parent: 1 + type: Transform + - uid: 456 + components: + - pos: -37.5,-2.5 + parent: 1 + type: Transform + - uid: 465 + components: + - pos: -36.5,4.5 + parent: 1 + type: Transform + - uid: 468 + components: + - pos: -1.5,12.5 + parent: 1 + type: Transform + - uid: 469 + components: + - pos: -0.5,12.5 + parent: 1 + type: Transform + - uid: 470 + components: + - pos: 0.5,12.5 + parent: 1 + type: Transform + - uid: 471 + components: + - pos: -1.5,-6.5 + parent: 1 + type: Transform + - uid: 472 + components: + - pos: -0.5,-6.5 + parent: 1 + type: Transform + - uid: 473 + components: + - pos: 0.5,-6.5 + parent: 1 + type: Transform + - uid: 483 + components: + - pos: -4.5,-6.5 + parent: 1 + type: Transform + - uid: 484 + components: + - pos: 3.5,-6.5 + parent: 1 + type: Transform + - uid: 485 + components: + - pos: 3.5,12.5 + parent: 1 + type: Transform + - uid: 486 + components: + - pos: -4.5,12.5 + parent: 1 + type: Transform + - uid: 541 + components: + - rot: 3.141592653589793 rad + pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 542 + components: + - rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 561 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 562 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 570 + components: + - pos: -22.5,12.5 + parent: 1 + type: Transform + - uid: 619 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 777 + components: + - pos: -28.5,12.5 + parent: 1 + type: Transform + - uid: 778 + components: + - pos: -27.5,12.5 + parent: 1 + type: Transform + - uid: 784 + components: + - pos: -29.5,11.5 + parent: 1 + type: Transform + - uid: 807 + components: + - pos: -3.5,20.5 + parent: 1 + type: Transform + - uid: 808 + components: + - pos: 2.5,20.5 + parent: 1 + type: Transform + - uid: 824 + components: + - pos: -2.5,28.5 + parent: 1 + type: Transform + - uid: 825 + components: + - pos: -2.5,29.5 + parent: 1 + type: Transform + - uid: 826 + components: + - pos: -2.5,30.5 + parent: 1 + type: Transform + - uid: 847 + components: + - pos: 49.5,41.5 + parent: 1 + type: Transform + - uid: 848 + components: + - pos: 49.5,42.5 + parent: 1 + type: Transform + - uid: 849 + components: + - pos: 49.5,43.5 + parent: 1 + type: Transform + - uid: 850 + components: + - pos: 49.5,44.5 + parent: 1 + type: Transform + - uid: 851 + components: + - pos: 48.5,45.5 + parent: 1 + type: Transform + - uid: 871 + components: + - pos: 47.5,48.5 + parent: 1 + type: Transform + - uid: 872 + components: + - pos: 47.5,47.5 + parent: 1 + type: Transform + - uid: 873 + components: + - pos: 47.5,46.5 + parent: 1 + type: Transform + - uid: 874 + components: + - pos: 46.5,49.5 + parent: 1 + type: Transform + - uid: 875 + components: + - pos: 45.5,49.5 + parent: 1 + type: Transform + - uid: 876 + components: + - pos: 44.5,50.5 + parent: 1 + type: Transform + - uid: 877 + components: + - pos: 44.5,51.5 + parent: 1 + type: Transform + - uid: 878 + components: + - pos: 43.5,52.5 + parent: 1 + type: Transform + - uid: 879 + components: + - pos: 42.5,52.5 + parent: 1 + type: Transform + - uid: 880 + components: + - pos: 41.5,52.5 + parent: 1 + type: Transform + - uid: 888 + components: + - pos: 34.5,57.5 + parent: 1 + type: Transform + - uid: 889 + components: + - pos: 33.5,57.5 + parent: 1 + type: Transform + - uid: 890 + components: + - pos: 31.5,57.5 + parent: 1 + type: Transform + - uid: 891 + components: + - pos: 30.5,57.5 + parent: 1 + type: Transform + - uid: 892 + components: + - pos: 29.5,58.5 + parent: 1 + type: Transform + - uid: 893 + components: + - pos: 28.5,59.5 + parent: 1 + type: Transform + - uid: 894 + components: + - pos: 27.5,59.5 + parent: 1 + type: Transform + - uid: 895 + components: + - pos: 26.5,59.5 + parent: 1 + type: Transform + - uid: 896 + components: + - pos: 23.5,59.5 + parent: 1 + type: Transform + - uid: 897 + components: + - pos: 22.5,59.5 + parent: 1 + type: Transform + - uid: 898 + components: + - pos: 21.5,59.5 + parent: 1 + type: Transform + - uid: 899 + components: + - pos: 19.5,61.5 + parent: 1 + type: Transform + - uid: 900 + components: + - pos: 19.5,62.5 + parent: 1 + type: Transform + - uid: 901 + components: + - pos: 19.5,63.5 + parent: 1 + type: Transform + - uid: 902 + components: + - pos: 19.5,64.5 + parent: 1 + type: Transform + - uid: 903 + components: + - pos: 18.5,65.5 + parent: 1 + type: Transform + - uid: 904 + components: + - pos: 17.5,65.5 + parent: 1 + type: Transform + - uid: 905 + components: + - pos: 16.5,65.5 + parent: 1 + type: Transform + - uid: 906 + components: + - pos: 15.5,65.5 + parent: 1 + type: Transform + - uid: 907 + components: + - pos: 13.5,67.5 + parent: 1 + type: Transform + - uid: 908 + components: + - pos: 13.5,68.5 + parent: 1 + type: Transform + - uid: 909 + components: + - pos: 13.5,69.5 + parent: 1 + type: Transform + - uid: 910 + components: + - pos: 13.5,70.5 + parent: 1 + type: Transform + - uid: 911 + components: + - pos: 12.5,71.5 + parent: 1 + type: Transform + - uid: 912 + components: + - pos: 11.5,71.5 + parent: 1 + type: Transform + - uid: 913 + components: + - pos: 10.5,71.5 + parent: 1 + type: Transform + - uid: 914 + components: + - pos: 9.5,71.5 + parent: 1 + type: Transform + - uid: 1038 + components: + - pos: -7.5,31.5 + parent: 1 + type: Transform + - uid: 1039 + components: + - pos: -5.5,31.5 + parent: 1 + type: Transform + - uid: 1040 + components: + - pos: -7.5,35.5 + parent: 1 + type: Transform + - uid: 1041 + components: + - pos: -6.5,35.5 + parent: 1 + type: Transform + - uid: 1042 + components: + - pos: -5.5,35.5 + parent: 1 + type: Transform + - uid: 1044 + components: + - pos: -4.5,30.5 + parent: 1 + type: Transform + - uid: 1046 + components: + - pos: -4.5,28.5 + parent: 1 + type: Transform + - uid: 1047 + components: + - pos: -7.5,27.5 + parent: 1 + type: Transform + - uid: 1049 + components: + - pos: -5.5,27.5 + parent: 1 + type: Transform + - uid: 1050 + components: + - pos: -8.5,28.5 + parent: 1 + type: Transform + - uid: 1051 + components: + - pos: -8.5,29.5 + parent: 1 + type: Transform + - uid: 1052 + components: + - pos: -8.5,30.5 + parent: 1 + type: Transform + - uid: 1061 + components: + - pos: -19.5,35.5 + parent: 1 + type: Transform + - uid: 1064 + components: + - pos: -22.5,22.5 + parent: 1 + type: Transform + - uid: 1073 + components: + - pos: -13.5,26.5 + parent: 1 + type: Transform + - uid: 1081 + components: + - pos: -12.5,30.5 + parent: 1 + type: Transform + - uid: 1084 + components: + - pos: -4.5,29.5 + parent: 1 + type: Transform + - uid: 1095 + components: + - pos: -12.5,28.5 + parent: 1 + type: Transform + - uid: 1096 + components: + - pos: -12.5,27.5 + parent: 1 + type: Transform + - uid: 1102 + components: + - pos: -15.5,26.5 + parent: 1 + type: Transform + - uid: 1112 + components: + - pos: -7.5,25.5 + parent: 1 + type: Transform + - uid: 1113 + components: + - pos: -6.5,25.5 + parent: 1 + type: Transform + - uid: 1114 + components: + - pos: -5.5,25.5 + parent: 1 + type: Transform + - uid: 1130 + components: + - pos: -15.5,16.5 + parent: 1 + type: Transform + - uid: 1131 + components: + - pos: -16.5,16.5 + parent: 1 + type: Transform + - uid: 1132 + components: + - pos: -17.5,16.5 + parent: 1 + type: Transform + - uid: 1139 + components: + - pos: -13.5,18.5 + parent: 1 + type: Transform + - uid: 1145 + components: + - pos: -13.5,19.5 + parent: 1 + type: Transform + - uid: 1148 + components: + - pos: -11.5,16.5 + parent: 1 + type: Transform + - uid: 1149 + components: + - pos: -12.5,16.5 + parent: 1 + type: Transform + - uid: 1152 + components: + - pos: -2.5,22.5 + parent: 1 + type: Transform + - uid: 1153 + components: + - pos: -2.5,23.5 + parent: 1 + type: Transform + - uid: 1154 + components: + - pos: -2.5,24.5 + parent: 1 + type: Transform + - uid: 1155 + components: + - pos: 1.5,22.5 + parent: 1 + type: Transform + - uid: 1156 + components: + - pos: 1.5,23.5 + parent: 1 + type: Transform + - uid: 1157 + components: + - pos: 1.5,24.5 + parent: 1 + type: Transform + - uid: 1166 + components: + - pos: -8.5,21.5 + parent: 1 + type: Transform + - uid: 1169 + components: + - pos: -15.5,39.5 + parent: 1 + type: Transform + - uid: 1241 + components: + - pos: -22.5,19.5 + parent: 1 + type: Transform + - uid: 1278 + components: + - pos: -47.5,17.5 + parent: 1 + type: Transform + - uid: 1282 + components: + - pos: -46.5,34.5 + parent: 1 + type: Transform + - uid: 1283 + components: + - pos: -49.5,34.5 + parent: 1 + type: Transform + - uid: 1301 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,20.5 + parent: 1 + type: Transform + - uid: 1311 + components: + - pos: -15.5,23.5 + parent: 1 + type: Transform + - uid: 1312 + components: + - pos: -16.5,23.5 + parent: 1 + type: Transform + - uid: 1313 + components: + - pos: -17.5,23.5 + parent: 1 + type: Transform + - uid: 1314 + components: + - pos: -16.5,39.5 + parent: 1 + type: Transform + - uid: 1316 + components: + - pos: -18.5,39.5 + parent: 1 + type: Transform + - uid: 1317 + components: + - pos: -19.5,39.5 + parent: 1 + type: Transform + - uid: 1346 + components: + - pos: -4.5,57.5 + parent: 1 + type: Transform + - uid: 1347 + components: + - pos: -4.5,56.5 + parent: 1 + type: Transform + - uid: 1360 + components: + - pos: -7.5,53.5 + parent: 1 + type: Transform + - uid: 1361 + components: + - pos: -7.5,52.5 + parent: 1 + type: Transform + - uid: 1373 + components: + - pos: -3.5,47.5 + parent: 1 + type: Transform + - uid: 1374 + components: + - pos: -4.5,47.5 + parent: 1 + type: Transform + - uid: 1375 + components: + - pos: -4.5,43.5 + parent: 1 + type: Transform + - uid: 1376 + components: + - pos: -7.5,43.5 + parent: 1 + type: Transform + - uid: 1377 + components: + - pos: -10.5,43.5 + parent: 1 + type: Transform + - uid: 1378 + components: + - pos: -13.5,43.5 + parent: 1 + type: Transform + - uid: 1379 + components: + - pos: -13.5,39.5 + parent: 1 + type: Transform + - uid: 1380 + components: + - pos: -12.5,39.5 + parent: 1 + type: Transform + - uid: 1381 + components: + - pos: -10.5,39.5 + parent: 1 + type: Transform + - uid: 1382 + components: + - pos: -9.5,39.5 + parent: 1 + type: Transform + - uid: 1383 + components: + - pos: -7.5,39.5 + parent: 1 + type: Transform + - uid: 1384 + components: + - pos: -6.5,39.5 + parent: 1 + type: Transform + - uid: 1385 + components: + - pos: -4.5,39.5 + parent: 1 + type: Transform + - uid: 1386 + components: + - pos: -3.5,39.5 + parent: 1 + type: Transform + - uid: 1387 + components: + - pos: -15.5,43.5 + parent: 1 + type: Transform + - uid: 1388 + components: + - pos: -16.5,43.5 + parent: 1 + type: Transform + - uid: 1389 + components: + - pos: -19.5,43.5 + parent: 1 + type: Transform + - uid: 1390 + components: + - pos: -18.5,43.5 + parent: 1 + type: Transform + - uid: 1407 + components: + - pos: -10.5,50.5 + parent: 1 + type: Transform + - uid: 1408 + components: + - pos: -14.5,51.5 + parent: 1 + type: Transform + - uid: 1409 + components: + - pos: -13.5,51.5 + parent: 1 + type: Transform + - uid: 1410 + components: + - pos: -11.5,51.5 + parent: 1 + type: Transform + - uid: 1411 + components: + - pos: -15.5,50.5 + parent: 1 + type: Transform + - uid: 1412 + components: + - pos: -14.5,47.5 + parent: 1 + type: Transform + - uid: 1413 + components: + - pos: -11.5,47.5 + parent: 1 + type: Transform + - uid: 1416 + components: + - pos: -15.5,48.5 + parent: 1 + type: Transform + - uid: 1417 + components: + - pos: -15.5,49.5 + parent: 1 + type: Transform + - uid: 1427 + components: + - pos: -15.5,57.5 + parent: 1 + type: Transform + - uid: 1438 + components: + - pos: -8.5,61.5 + parent: 1 + type: Transform + - uid: 1440 + components: + - pos: -24.5,43.5 + parent: 1 + type: Transform + - uid: 1441 + components: + - pos: -24.5,44.5 + parent: 1 + type: Transform + - uid: 1450 + components: + - pos: -24.5,42.5 + parent: 1 + type: Transform + - uid: 1461 + components: + - pos: -26.5,44.5 + parent: 1 + type: Transform + - uid: 1462 + components: + - pos: -26.5,43.5 + parent: 1 + type: Transform + - uid: 1463 + components: + - pos: -26.5,42.5 + parent: 1 + type: Transform + - uid: 1469 + components: + - pos: -35.5,41.5 + parent: 1 + type: Transform + - uid: 1472 + components: + - pos: -34.5,39.5 + parent: 1 + type: Transform + - uid: 1473 + components: + - pos: -34.5,41.5 + parent: 1 + type: Transform + - uid: 1474 + components: + - pos: -39.5,46.5 + parent: 1 + type: Transform + - uid: 1475 + components: + - pos: -39.5,45.5 + parent: 1 + type: Transform + - uid: 1500 + components: + - pos: -41.5,46.5 + parent: 1 + type: Transform + - uid: 1503 + components: + - pos: -41.5,43.5 + parent: 1 + type: Transform + - uid: 1504 + components: + - pos: -41.5,42.5 + parent: 1 + type: Transform + - uid: 1511 + components: + - pos: -35.5,39.5 + parent: 1 + type: Transform + - uid: 1514 + components: + - pos: -32.5,39.5 + parent: 1 + type: Transform + - uid: 1515 + components: + - pos: -31.5,39.5 + parent: 1 + type: Transform + - uid: 1516 + components: + - pos: -30.5,39.5 + parent: 1 + type: Transform + - uid: 1530 + components: + - pos: -32.5,41.5 + parent: 1 + type: Transform + - uid: 1531 + components: + - pos: -31.5,41.5 + parent: 1 + type: Transform + - uid: 1532 + components: + - pos: -30.5,41.5 + parent: 1 + type: Transform + - uid: 1535 + components: + - pos: -36.5,42.5 + parent: 1 + type: Transform + - uid: 1538 + components: + - pos: -36.5,46.5 + parent: 1 + type: Transform + - uid: 1564 + components: + - pos: -39.5,42.5 + parent: 1 + type: Transform + - uid: 1575 + components: + - pos: -27.5,46.5 + parent: 1 + type: Transform + - uid: 1576 + components: + - pos: -28.5,46.5 + parent: 1 + type: Transform + - uid: 1578 + components: + - pos: -39.5,43.5 + parent: 1 + type: Transform + - uid: 1602 + components: + - pos: -24.5,59.5 + parent: 1 + type: Transform + - uid: 1603 + components: + - pos: -23.5,59.5 + parent: 1 + type: Transform + - uid: 1604 + components: + - pos: -22.5,59.5 + parent: 1 + type: Transform + - uid: 1605 + components: + - pos: -29.5,59.5 + parent: 1 + type: Transform + - uid: 1606 + components: + - pos: -28.5,59.5 + parent: 1 + type: Transform + - uid: 1607 + components: + - pos: -27.5,59.5 + parent: 1 + type: Transform + - uid: 1608 + components: + - pos: -20.5,61.5 + parent: 1 + type: Transform + - uid: 1609 + components: + - pos: -20.5,62.5 + parent: 1 + type: Transform + - uid: 1610 + components: + - pos: -20.5,63.5 + parent: 1 + type: Transform + - uid: 1611 + components: + - pos: -20.5,64.5 + parent: 1 + type: Transform + - uid: 1612 + components: + - pos: -30.5,58.5 + parent: 1 + type: Transform + - uid: 1613 + components: + - pos: -32.5,57.5 + parent: 1 + type: Transform + - uid: 1615 + components: + - pos: -35.5,57.5 + parent: 1 + type: Transform + - uid: 1616 + components: + - pos: -34.5,57.5 + parent: 1 + type: Transform + - uid: 1624 + components: + - pos: -44.5,52.5 + parent: 1 + type: Transform + - uid: 1625 + components: + - pos: -43.5,52.5 + parent: 1 + type: Transform + - uid: 1626 + components: + - pos: -42.5,52.5 + parent: 1 + type: Transform + - uid: 1627 + components: + - pos: -45.5,51.5 + parent: 1 + type: Transform + - uid: 1628 + components: + - pos: -45.5,50.5 + parent: 1 + type: Transform + - uid: 1629 + components: + - pos: -47.5,49.5 + parent: 1 + type: Transform + - uid: 1630 + components: + - pos: -46.5,49.5 + parent: 1 + type: Transform + - uid: 1631 + components: + - pos: -48.5,48.5 + parent: 1 + type: Transform + - uid: 1632 + components: + - pos: -48.5,47.5 + parent: 1 + type: Transform + - uid: 1633 + components: + - pos: -48.5,46.5 + parent: 1 + type: Transform + - uid: 1634 + components: + - pos: -49.5,45.5 + parent: 1 + type: Transform + - uid: 1635 + components: + - pos: -50.5,44.5 + parent: 1 + type: Transform + - uid: 1636 + components: + - pos: -50.5,43.5 + parent: 1 + type: Transform + - uid: 1637 + components: + - pos: -50.5,42.5 + parent: 1 + type: Transform + - uid: 1638 + components: + - pos: -50.5,41.5 + parent: 1 + type: Transform + - uid: 1639 + components: + - pos: -52.5,39.5 + parent: 1 + type: Transform + - uid: 1640 + components: + - pos: -52.5,35.5 + parent: 1 + type: Transform + - uid: 1642 + components: + - pos: -50.5,34.5 + parent: 1 + type: Transform + - uid: 1669 + components: + - pos: -31.5,57.5 + parent: 1 + type: Transform + - uid: 1696 + components: + - pos: -12.5,71.5 + parent: 1 + type: Transform + - uid: 1697 + components: + - pos: -13.5,71.5 + parent: 1 + type: Transform + - uid: 1698 + components: + - pos: -14.5,70.5 + parent: 1 + type: Transform + - uid: 1699 + components: + - pos: -14.5,69.5 + parent: 1 + type: Transform + - uid: 1700 + components: + - pos: -14.5,68.5 + parent: 1 + type: Transform + - uid: 1701 + components: + - pos: -14.5,67.5 + parent: 1 + type: Transform + - uid: 1702 + components: + - pos: -16.5,65.5 + parent: 1 + type: Transform + - uid: 1703 + components: + - pos: -17.5,65.5 + parent: 1 + type: Transform + - uid: 1704 + components: + - pos: -18.5,65.5 + parent: 1 + type: Transform + - uid: 1705 + components: + - pos: -19.5,65.5 + parent: 1 + type: Transform + - uid: 1715 + components: + - pos: -45.5,39.5 + parent: 1 + type: Transform + - uid: 1718 + components: + - pos: -40.5,34.5 + parent: 1 + type: Transform + - uid: 1719 + components: + - pos: -40.5,33.5 + parent: 1 + type: Transform + - uid: 1720 + components: + - pos: -40.5,32.5 + parent: 1 + type: Transform + - uid: 1724 + components: + - pos: -43.5,35.5 + parent: 1 + type: Transform + - uid: 1725 + components: + - pos: -42.5,35.5 + parent: 1 + type: Transform + - uid: 1726 + components: + - pos: -41.5,35.5 + parent: 1 + type: Transform + - uid: 1760 + components: + - pos: -40.5,17.5 + parent: 1 + type: Transform + - uid: 1761 + components: + - pos: -40.5,18.5 + parent: 1 + type: Transform + - uid: 1762 + components: + - pos: -40.5,19.5 + parent: 1 + type: Transform + - uid: 1768 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,29.5 + parent: 1 + type: Transform + - uid: 1769 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,29.5 + parent: 1 + type: Transform + - uid: 1770 + components: + - pos: -43.5,31.5 + parent: 1 + type: Transform + - uid: 1775 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,29.5 + parent: 1 + type: Transform + - uid: 1776 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,29.5 + parent: 1 + type: Transform + - uid: 1780 + components: + - pos: -43.5,33.5 + parent: 1 + type: Transform + - uid: 1795 + components: + - pos: -14.5,57.5 + parent: 1 + type: Transform + - uid: 1831 + components: + - pos: -9.5,61.5 + parent: 1 + type: Transform + - uid: 1837 + components: + - pos: -7.5,60.5 + parent: 1 + type: Transform + - uid: 1863 + components: + - pos: 3.5,54.5 + parent: 1 + type: Transform + - uid: 1864 + components: + - pos: 3.5,55.5 + parent: 1 + type: Transform + - uid: 1865 + components: + - pos: 3.5,57.5 + parent: 1 + type: Transform + - uid: 1866 + components: + - pos: 3.5,52.5 + parent: 1 + type: Transform + - uid: 1871 + components: + - pos: 1.5,59.5 + parent: 1 + type: Transform + - uid: 1872 + components: + - pos: 1.5,60.5 + parent: 1 + type: Transform + - uid: 1873 + components: + - pos: 1.5,61.5 + parent: 1 + type: Transform + - uid: 1917 + components: + - rot: 3.141592653589793 rad + pos: 6.5,51.5 + parent: 1 + type: Transform + - uid: 1918 + components: + - rot: 3.141592653589793 rad + pos: 5.5,51.5 + parent: 1 + type: Transform + - uid: 1959 + components: + - rot: 3.141592653589793 rad + pos: -52.5,-6.5 + parent: 1 + type: Transform + - uid: 1960 + components: + - rot: 3.141592653589793 rad + pos: -52.5,-10.5 + parent: 1 + type: Transform + - uid: 1961 + components: + - rot: 3.141592653589793 rad + pos: -50.5,-12.5 + parent: 1 + type: Transform + - uid: 1962 + components: + - rot: 3.141592653589793 rad + pos: -46.5,-12.5 + parent: 1 + type: Transform + - uid: 1963 + components: + - rot: 3.141592653589793 rad + pos: -50.5,-10.5 + parent: 1 + type: Transform + - uid: 1964 + components: + - rot: 3.141592653589793 rad + pos: -46.5,-10.5 + parent: 1 + type: Transform + - uid: 1965 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-11.5 + parent: 1 + type: Transform + - uid: 1966 + components: + - rot: 3.141592653589793 rad + pos: -51.5,-11.5 + parent: 1 + type: Transform + - uid: 1995 + components: + - pos: 46.5,-15.5 + parent: 1 + type: Transform + - uid: 1997 + components: + - pos: 49.5,-15.5 + parent: 1 + type: Transform + - uid: 2006 + components: + - pos: 44.5,-13.5 + parent: 1 + type: Transform + - uid: 2012 + components: + - pos: 42.5,-6.5 + parent: 1 + type: Transform + - uid: 2013 + components: + - pos: 41.5,-6.5 + parent: 1 + type: Transform + - uid: 2014 + components: + - pos: 40.5,-6.5 + parent: 1 + type: Transform + - uid: 2015 + components: + - pos: 39.5,-6.5 + parent: 1 + type: Transform + - uid: 2016 + components: + - pos: 37.5,-6.5 + parent: 1 + type: Transform + - uid: 2017 + components: + - pos: 36.5,-6.5 + parent: 1 + type: Transform + - uid: 2018 + components: + - pos: 35.5,-6.5 + parent: 1 + type: Transform + - uid: 2019 + components: + - pos: 34.5,-6.5 + parent: 1 + type: Transform + - uid: 2029 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,-5.5 + parent: 1 + type: Transform + - uid: 2032 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,-5.5 + parent: 1 + type: Transform + - uid: 2034 + components: + - pos: 51.5,-13.5 + parent: 1 + type: Transform + - uid: 2035 + components: + - pos: 48.5,-15.5 + parent: 1 + type: Transform + - uid: 2040 + components: + - pos: 44.5,-14.5 + parent: 1 + type: Transform + - uid: 2046 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-5.5 + parent: 1 + type: Transform + - uid: 2056 + components: + - pos: 50.5,-11.5 + parent: 1 + type: Transform + - uid: 2068 + components: + - pos: -4.5,-40.5 + parent: 1 + type: Transform + - uid: 2070 + components: + - pos: -3.5,-43.5 + parent: 1 + type: Transform + - uid: 2071 + components: + - pos: -4.5,-41.5 + parent: 1 + type: Transform + - uid: 2073 + components: + - pos: 2.5,-43.5 + parent: 1 + type: Transform + - uid: 2074 + components: + - pos: -3.5,-44.5 + parent: 1 + type: Transform + - uid: 2075 + components: + - pos: -3.5,-45.5 + parent: 1 + type: Transform + - uid: 2076 + components: + - pos: 2.5,-44.5 + parent: 1 + type: Transform + - uid: 2077 + components: + - pos: 2.5,-45.5 + parent: 1 + type: Transform + - uid: 2088 + components: + - pos: -4.5,-39.5 + parent: 1 + type: Transform + - uid: 2089 + components: + - pos: -4.5,-38.5 + parent: 1 + type: Transform + - uid: 2090 + components: + - pos: -4.5,-36.5 + parent: 1 + type: Transform + - uid: 2091 + components: + - pos: -4.5,-35.5 + parent: 1 + type: Transform + - uid: 2092 + components: + - pos: -4.5,-34.5 + parent: 1 + type: Transform + - uid: 2093 + components: + - pos: -4.5,-33.5 + parent: 1 + type: Transform + - uid: 2094 + components: + - pos: -4.5,-32.5 + parent: 1 + type: Transform + - uid: 2098 + components: + - pos: 3.5,-37.5 + parent: 1 + type: Transform + - uid: 2099 + components: + - pos: 3.5,-41.5 + parent: 1 + type: Transform + - uid: 2100 + components: + - pos: 3.5,-40.5 + parent: 1 + type: Transform + - uid: 2101 + components: + - pos: 3.5,-39.5 + parent: 1 + type: Transform + - uid: 2102 + components: + - pos: 3.5,-38.5 + parent: 1 + type: Transform + - uid: 2103 + components: + - pos: 3.5,-36.5 + parent: 1 + type: Transform + - uid: 2105 + components: + - pos: 3.5,-34.5 + parent: 1 + type: Transform + - uid: 2106 + components: + - pos: 3.5,-33.5 + parent: 1 + type: Transform + - uid: 2107 + components: + - pos: 3.5,-32.5 + parent: 1 + type: Transform + - uid: 2114 + components: + - pos: 33.5,-3.5 + parent: 1 + type: Transform + - uid: 2115 + components: + - pos: 33.5,-4.5 + parent: 1 + type: Transform + - uid: 2116 + components: + - pos: 33.5,-5.5 + parent: 1 + type: Transform + - uid: 2117 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,-0.5 + parent: 1 + type: Transform + - uid: 2129 + components: + - pos: -7.5,-42.5 + parent: 1 + type: Transform + - uid: 2130 + components: + - pos: -6.5,-42.5 + parent: 1 + type: Transform + - uid: 2140 + components: + - pos: -52.5,12.5 + parent: 1 + type: Transform + - uid: 2141 + components: + - pos: -52.5,16.5 + parent: 1 + type: Transform + - uid: 2148 + components: + - pos: -2.5,-39.5 + parent: 1 + type: Transform + - uid: 2149 + components: + - pos: -2.5,-40.5 + parent: 1 + type: Transform + - uid: 2150 + components: + - pos: -2.5,-41.5 + parent: 1 + type: Transform + - uid: 2151 + components: + - pos: 1.5,-39.5 + parent: 1 + type: Transform + - uid: 2152 + components: + - pos: 1.5,-40.5 + parent: 1 + type: Transform + - uid: 2153 + components: + - pos: 1.5,-41.5 + parent: 1 + type: Transform + - uid: 2154 + components: + - pos: -1.5,-38.5 + parent: 1 + type: Transform + - uid: 2155 + components: + - pos: -0.5,-38.5 + parent: 1 + type: Transform + - uid: 2156 + components: + - pos: 0.5,-38.5 + parent: 1 + type: Transform + - uid: 2157 + components: + - pos: -1.5,-36.5 + parent: 1 + type: Transform + - uid: 2158 + components: + - pos: -0.5,-36.5 + parent: 1 + type: Transform + - uid: 2159 + components: + - pos: 0.5,-36.5 + parent: 1 + type: Transform + - uid: 2160 + components: + - pos: 1.5,-35.5 + parent: 1 + type: Transform + - uid: 2161 + components: + - pos: 1.5,-34.5 + parent: 1 + type: Transform + - uid: 2162 + components: + - pos: 1.5,-33.5 + parent: 1 + type: Transform + - uid: 2163 + components: + - pos: 0.5,-32.5 + parent: 1 + type: Transform + - uid: 2164 + components: + - pos: -0.5,-32.5 + parent: 1 + type: Transform + - uid: 2165 + components: + - pos: -1.5,-32.5 + parent: 1 + type: Transform + - uid: 2166 + components: + - pos: -2.5,-33.5 + parent: 1 + type: Transform + - uid: 2167 + components: + - pos: -2.5,-34.5 + parent: 1 + type: Transform + - uid: 2168 + components: + - pos: -2.5,-35.5 + parent: 1 + type: Transform + - uid: 2241 + components: + - pos: 9.5,-10.5 + parent: 1 + type: Transform + - uid: 2255 + components: + - pos: -4.5,-18.5 + parent: 1 + type: Transform + - uid: 2256 + components: + - pos: -4.5,-19.5 + parent: 1 + type: Transform + - uid: 2257 + components: + - pos: -4.5,-20.5 + parent: 1 + type: Transform + - uid: 2258 + components: + - pos: -4.5,-21.5 + parent: 1 + type: Transform + - uid: 2259 + components: + - pos: -4.5,-22.5 + parent: 1 + type: Transform + - uid: 2260 + components: + - pos: -4.5,-23.5 + parent: 1 + type: Transform + - uid: 2261 + components: + - pos: -4.5,-24.5 + parent: 1 + type: Transform + - uid: 2262 + components: + - pos: -4.5,-25.5 + parent: 1 + type: Transform + - uid: 2263 + components: + - pos: -4.5,-26.5 + parent: 1 + type: Transform + - uid: 2264 + components: + - pos: -4.5,-27.5 + parent: 1 + type: Transform + - uid: 2265 + components: + - pos: -4.5,-28.5 + parent: 1 + type: Transform + - uid: 2266 + components: + - pos: -4.5,-29.5 + parent: 1 + type: Transform + - uid: 2267 + components: + - pos: -4.5,-30.5 + parent: 1 + type: Transform + - uid: 2291 + components: + - pos: -8.5,-42.5 + parent: 1 + type: Transform + - uid: 2293 + components: + - pos: 7.5,-42.5 + parent: 1 + type: Transform + - uid: 2294 + components: + - pos: 6.5,-42.5 + parent: 1 + type: Transform + - uid: 2295 + components: + - pos: 5.5,-42.5 + parent: 1 + type: Transform + - uid: 2320 + components: + - pos: 18.5,-20.5 + parent: 1 + type: Transform + - uid: 2335 + components: + - pos: 7.5,-16.5 + parent: 1 + type: Transform + - uid: 2380 + components: + - pos: 8.5,-10.5 + parent: 1 + type: Transform + - uid: 2387 + components: + - pos: -9.5,-10.5 + parent: 1 + type: Transform + - uid: 2388 + components: + - pos: -10.5,-10.5 + parent: 1 + type: Transform + - uid: 2397 + components: + - pos: -6.5,-11.5 + parent: 1 + type: Transform + - uid: 2408 + components: + - pos: 5.5,-11.5 + parent: 1 + type: Transform + - uid: 2437 + components: + - pos: 10.5,-29.5 + parent: 1 + type: Transform + - uid: 2442 + components: + - pos: 6.5,-27.5 + parent: 1 + type: Transform + - uid: 2443 + components: + - pos: 7.5,-27.5 + parent: 1 + type: Transform + - uid: 2514 + components: + - pos: 28.5,-5.5 + parent: 1 + type: Transform + - uid: 2516 + components: + - pos: 28.5,0.5 + parent: 1 + type: Transform + - uid: 2518 + components: + - pos: 28.5,-1.5 + parent: 1 + type: Transform + - uid: 2520 + components: + - pos: 28.5,-3.5 + parent: 1 + type: Transform + - uid: 2524 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,6.5 + parent: 1 + type: Transform + - uid: 2525 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,5.5 + parent: 1 + type: Transform + - uid: 2526 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,4.5 + parent: 1 + type: Transform + - uid: 2798 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-19.5 + parent: 1 + type: Transform + - uid: 2799 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-21.5 + parent: 1 + type: Transform + - uid: 2800 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-23.5 + parent: 1 + type: Transform + - uid: 2801 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-25.5 + parent: 1 + type: Transform + - uid: 2802 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-27.5 + parent: 1 + type: Transform + - uid: 2803 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-29.5 + parent: 1 + type: Transform + - uid: 2807 + components: + - pos: -13.5,-25.5 + parent: 1 + type: Transform + - uid: 2808 + components: + - pos: -12.5,-25.5 + parent: 1 + type: Transform + - uid: 2815 + components: + - pos: -13.5,-30.5 + parent: 1 + type: Transform + - uid: 2816 + components: + - pos: -12.5,-30.5 + parent: 1 + type: Transform + - uid: 2872 + components: + - pos: 36.5,-19.5 + parent: 1 + type: Transform + - uid: 2884 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,5.5 + parent: 1 + type: Transform + - uid: 2885 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,4.5 + parent: 1 + type: Transform + - uid: 2903 + components: + - pos: -17.5,-41.5 + parent: 1 + type: Transform + - uid: 2904 + components: + - pos: -18.5,-40.5 + parent: 1 + type: Transform + - uid: 2905 + components: + - pos: -18.5,-39.5 + parent: 1 + type: Transform + - uid: 2906 + components: + - pos: -19.5,-38.5 + parent: 1 + type: Transform + - uid: 2907 + components: + - pos: -20.5,-38.5 + parent: 1 + type: Transform + - uid: 2908 + components: + - pos: -21.5,-37.5 + parent: 1 + type: Transform + - uid: 2909 + components: + - pos: -21.5,-36.5 + parent: 1 + type: Transform + - uid: 2910 + components: + - pos: -21.5,-34.5 + parent: 1 + type: Transform + - uid: 2911 + components: + - pos: -21.5,-33.5 + parent: 1 + type: Transform + - uid: 2912 + components: + - pos: -22.5,-31.5 + parent: 1 + type: Transform + - uid: 2913 + components: + - pos: -23.5,-30.5 + parent: 1 + type: Transform + - uid: 2914 + components: + - pos: -23.5,-29.5 + parent: 1 + type: Transform + - uid: 2925 + components: + - pos: 38.5,-17.5 + parent: 1 + type: Transform + - uid: 2926 + components: + - pos: 36.5,-20.5 + parent: 1 + type: Transform + - uid: 2927 + components: + - pos: 35.5,-22.5 + parent: 1 + type: Transform + - uid: 3062 + components: + - pos: 16.5,-41.5 + parent: 1 + type: Transform + - uid: 3063 + components: + - pos: 17.5,-40.5 + parent: 1 + type: Transform + - uid: 3064 + components: + - pos: 17.5,-39.5 + parent: 1 + type: Transform + - uid: 3065 + components: + - pos: 18.5,-38.5 + parent: 1 + type: Transform + - uid: 3067 + components: + - pos: 20.5,-37.5 + parent: 1 + type: Transform + - uid: 3068 + components: + - pos: 20.5,-36.5 + parent: 1 + type: Transform + - uid: 3069 + components: + - pos: 20.5,-34.5 + parent: 1 + type: Transform + - uid: 3070 + components: + - pos: 20.5,-33.5 + parent: 1 + type: Transform + - uid: 3071 + components: + - pos: 21.5,-31.5 + parent: 1 + type: Transform + - uid: 3072 + components: + - pos: 22.5,-30.5 + parent: 1 + type: Transform + - uid: 3073 + components: + - pos: 22.5,-29.5 + parent: 1 + type: Transform + - uid: 3077 + components: + - pos: 38.5,-16.5 + parent: 1 + type: Transform + - uid: 3079 + components: + - pos: 31.5,-25.5 + parent: 1 + type: Transform + - uid: 3080 + components: + - pos: 33.5,-24.5 + parent: 1 + type: Transform + - uid: 3081 + components: + - pos: 32.5,-25.5 + parent: 1 + type: Transform + - uid: 3082 + components: + - pos: 28.5,-27.5 + parent: 1 + type: Transform + - uid: 3089 + components: + - pos: 40.5,-11.5 + parent: 1 + type: Transform + - uid: 3091 + components: + - pos: 39.5,-13.5 + parent: 1 + type: Transform + - uid: 3093 + components: + - pos: 36.5,77.5 + parent: 1 + type: Transform + - uid: 3095 + components: + - pos: 35.5,76.5 + parent: 1 + type: Transform + - uid: 3096 + components: + - pos: 24.5,-27.5 + parent: 1 + type: Transform + - uid: 3097 + components: + - pos: 30.5,-25.5 + parent: 1 + type: Transform + - uid: 3098 + components: + - pos: 33.5,-23.5 + parent: 1 + type: Transform + - uid: 3099 + components: + - pos: 34.5,-22.5 + parent: 1 + type: Transform + - uid: 3100 + components: + - pos: 36.5,-21.5 + parent: 1 + type: Transform + - uid: 3139 + components: + - pos: 34.5,76.5 + parent: 1 + type: Transform + - uid: 3158 + components: + - pos: 30.5,76.5 + parent: 1 + type: Transform + - uid: 3184 + components: + - pos: 39.5,47.5 + parent: 1 + type: Transform + - uid: 3231 + components: + - rot: 3.141592653589793 rad + pos: 24.5,48.5 + parent: 1 + type: Transform + - uid: 3242 + components: + - rot: 3.141592653589793 rad + pos: 25.5,48.5 + parent: 1 + type: Transform + - uid: 3340 + components: + - rot: 3.141592653589793 rad + pos: 5.5,49.5 + parent: 1 + type: Transform + - uid: 3343 + components: + - rot: 3.141592653589793 rad + pos: 1.5,49.5 + parent: 1 + type: Transform + - uid: 3346 + components: + - rot: 3.141592653589793 rad + pos: 1.5,44.5 + parent: 1 + type: Transform + - uid: 3518 + components: + - pos: -50.5,17.5 + parent: 1 + type: Transform + - uid: 3520 + components: + - pos: -49.5,17.5 + parent: 1 + type: Transform + - uid: 3524 + components: + - rot: 3.141592653589793 rad + pos: 13.5,41.5 + parent: 1 + type: Transform + - uid: 3525 + components: + - rot: 3.141592653589793 rad + pos: 13.5,45.5 + parent: 1 + type: Transform + - uid: 3526 + components: + - rot: 3.141592653589793 rad + pos: 16.5,46.5 + parent: 1 + type: Transform + - uid: 3532 + components: + - pos: 42.5,41.5 + parent: 1 + type: Transform + - uid: 3578 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-18.5 + parent: 1 + type: Transform + - uid: 3582 + components: + - pos: 23.5,-16.5 + parent: 1 + type: Transform + - uid: 3586 + components: + - pos: 23.5,-15.5 + parent: 1 + type: Transform + - uid: 3609 + components: + - pos: 9.5,24.5 + parent: 1 + type: Transform + - uid: 3621 + components: + - pos: 12.5,21.5 + parent: 1 + type: Transform + - uid: 3622 + components: + - pos: 10.5,21.5 + parent: 1 + type: Transform + - uid: 3638 + components: + - pos: 7.5,16.5 + parent: 1 + type: Transform + - uid: 3645 + components: + - pos: 8.5,16.5 + parent: 1 + type: Transform + - uid: 3646 + components: + - pos: 9.5,16.5 + parent: 1 + type: Transform + - uid: 3653 + components: + - pos: 13.5,16.5 + parent: 1 + type: Transform + - uid: 3654 + components: + - pos: 14.5,16.5 + parent: 1 + type: Transform + - uid: 3655 + components: + - pos: 15.5,16.5 + parent: 1 + type: Transform + - uid: 3681 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,29.5 + parent: 1 + type: Transform + - uid: 3684 + components: + - pos: 16.5,35.5 + parent: 1 + type: Transform + - uid: 3685 + components: + - pos: 15.5,35.5 + parent: 1 + type: Transform + - uid: 3686 + components: + - pos: 14.5,35.5 + parent: 1 + type: Transform + - uid: 3692 + components: + - pos: 12.5,35.5 + parent: 1 + type: Transform + - uid: 3693 + components: + - pos: 11.5,35.5 + parent: 1 + type: Transform + - uid: 3694 + components: + - pos: 10.5,35.5 + parent: 1 + type: Transform + - uid: 3731 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-18.5 + parent: 1 + type: Transform + - uid: 3732 + components: + - pos: 22.5,-10.5 + parent: 1 + type: Transform + - uid: 3747 + components: + - pos: 17.5,-20.5 + parent: 1 + type: Transform + - uid: 3751 + components: + - pos: 18.5,-26.5 + parent: 1 + type: Transform + - uid: 3757 + components: + - pos: 17.5,-26.5 + parent: 1 + type: Transform + - uid: 3758 + components: + - pos: 19.5,-24.5 + parent: 1 + type: Transform + - uid: 3763 + components: + - pos: 19.5,-23.5 + parent: 1 + type: Transform + - uid: 3764 + components: + - pos: 19.5,-22.5 + parent: 1 + type: Transform + - uid: 3774 + components: + - pos: 15.5,-10.5 + parent: 1 + type: Transform + - uid: 3776 + components: + - pos: 17.5,-28.5 + parent: 1 + type: Transform + - uid: 3777 + components: + - pos: 18.5,-28.5 + parent: 1 + type: Transform + - uid: 3778 + components: + - pos: 21.5,-24.5 + parent: 1 + type: Transform + - uid: 3779 + components: + - pos: 21.5,-23.5 + parent: 1 + type: Transform + - uid: 3780 + components: + - pos: 21.5,-22.5 + parent: 1 + type: Transform + - uid: 3807 + components: + - pos: 23.5,-14.5 + parent: 1 + type: Transform + - uid: 3962 + components: + - pos: 6.5,35.5 + parent: 1 + type: Transform + - uid: 3963 + components: + - pos: 5.5,35.5 + parent: 1 + type: Transform + - uid: 3964 + components: + - pos: 4.5,35.5 + parent: 1 + type: Transform + - uid: 3991 + components: + - pos: 16.5,-35.5 + parent: 1 + type: Transform + - uid: 4008 + components: + - pos: 20.5,-6.5 + parent: 1 + type: Transform + - uid: 4085 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,29.5 + parent: 1 + type: Transform + - uid: 4101 + components: + - pos: -53.5,46.5 + parent: 1 + type: Transform + - uid: 4120 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,16.5 + parent: 1 + type: Transform + - uid: 4121 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,16.5 + parent: 1 + type: Transform + - uid: 4122 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,16.5 + parent: 1 + type: Transform + - uid: 4129 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,20.5 + parent: 1 + type: Transform + - uid: 4132 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,20.5 + parent: 1 + type: Transform + - uid: 4215 + components: + - pos: 29.5,76.5 + parent: 1 + type: Transform + - uid: 4244 + components: + - pos: -35.5,8.5 + parent: 1 + type: Transform + - uid: 4357 + components: + - pos: 27.5,76.5 + parent: 1 + type: Transform + - uid: 4362 + components: + - pos: 38.5,77.5 + parent: 1 + type: Transform + - uid: 4372 + components: + - pos: 39.5,77.5 + parent: 1 + type: Transform + - uid: 4373 + components: + - pos: 32.5,76.5 + parent: 1 + type: Transform + - uid: 4374 + components: + - pos: 40.5,76.5 + parent: 1 + type: Transform + - uid: 4375 + components: + - pos: 41.5,76.5 + parent: 1 + type: Transform + - uid: 4376 + components: + - pos: 43.5,76.5 + parent: 1 + type: Transform + - uid: 4377 + components: + - pos: 44.5,76.5 + parent: 1 + type: Transform + - uid: 4379 + components: + - pos: -47.5,76.5 + parent: 1 + type: Transform + - uid: 4397 + components: + - rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 4406 + components: + - pos: 3.5,65.5 + parent: 1 + type: Transform + - uid: 4409 + components: + - pos: 29.5,42.5 + parent: 1 + type: Transform + - uid: 4410 + components: + - pos: 29.5,39.5 + parent: 1 + type: Transform + - uid: 4411 + components: + - pos: 32.5,42.5 + parent: 1 + type: Transform + - uid: 4412 + components: + - rot: 3.141592653589793 rad + pos: 32.5,39.5 + parent: 1 + type: Transform + - uid: 4417 + components: + - pos: 13.5,27.5 + parent: 1 + type: Transform + - uid: 4419 + components: + - pos: 15.5,30.5 + parent: 1 + type: Transform + - uid: 4421 + components: + - pos: 13.5,32.5 + parent: 1 + type: Transform + - uid: 4428 + components: + - rot: 3.141592653589793 rad + pos: -29.5,34.5 + parent: 1 + type: Transform + - uid: 4429 + components: + - rot: 3.141592653589793 rad + pos: -29.5,29.5 + parent: 1 + type: Transform + - uid: 4430 + components: + - rot: 3.141592653589793 rad + pos: -28.5,35.5 + parent: 1 + type: Transform + - uid: 4431 + components: + - rot: 3.141592653589793 rad + pos: -27.5,35.5 + parent: 1 + type: Transform + - uid: 4464 + components: + - pos: -51.5,49.5 + parent: 1 + type: Transform + - uid: 4465 + components: + - pos: 20.5,39.5 + parent: 1 + type: Transform + - uid: 4466 + components: + - pos: 19.5,39.5 + parent: 1 + type: Transform + - uid: 4467 + components: + - pos: 21.5,39.5 + parent: 1 + type: Transform + - uid: 4471 + components: + - pos: -40.5,-13.5 + parent: 1 + type: Transform + - uid: 4473 + components: + - pos: -39.5,-16.5 + parent: 1 + type: Transform + - uid: 4474 + components: + - pos: -39.5,-17.5 + parent: 1 + type: Transform + - uid: 4475 + components: + - pos: -37.5,-19.5 + parent: 1 + type: Transform + - uid: 4476 + components: + - pos: -37.5,-20.5 + parent: 1 + type: Transform + - uid: 4477 + components: + - pos: -37.5,-21.5 + parent: 1 + type: Transform + - uid: 4478 + components: + - pos: -36.5,-22.5 + parent: 1 + type: Transform + - uid: 4479 + components: + - pos: -35.5,-22.5 + parent: 1 + type: Transform + - uid: 4480 + components: + - pos: -34.5,-23.5 + parent: 1 + type: Transform + - uid: 4481 + components: + - pos: -34.5,-24.5 + parent: 1 + type: Transform + - uid: 4482 + components: + - pos: -33.5,-25.5 + parent: 1 + type: Transform + - uid: 4483 + components: + - pos: -32.5,-25.5 + parent: 1 + type: Transform + - uid: 4484 + components: + - pos: -31.5,-25.5 + parent: 1 + type: Transform + - uid: 4485 + components: + - pos: -29.5,-27.5 + parent: 1 + type: Transform + - uid: 4487 + components: + - pos: 37.5,77.5 + parent: 1 + type: Transform + - uid: 4488 + components: + - pos: -25.5,-27.5 + parent: 1 + type: Transform + - uid: 4490 + components: + - pos: -41.5,-11.5 + parent: 1 + type: Transform + - uid: 4504 + components: + - pos: -48.5,76.5 + parent: 1 + type: Transform + - uid: 4507 + components: + - pos: 45.5,35.5 + parent: 1 + type: Transform + - uid: 4508 + components: + - pos: 49.5,35.5 + parent: 1 + type: Transform + - uid: 5707 + components: + - pos: -46.5,39.5 + parent: 1 + type: Transform + - uid: 5730 + components: + - pos: 21.5,16.5 + parent: 1 + type: Transform + - uid: 5731 + components: + - pos: 22.5,16.5 + parent: 1 + type: Transform + - uid: 5732 + components: + - pos: 26.5,16.5 + parent: 1 + type: Transform + - uid: 5733 + components: + - pos: 27.5,16.5 + parent: 1 + type: Transform + - uid: 5734 + components: + - pos: 28.5,17.5 + parent: 1 + type: Transform + - uid: 5735 + components: + - pos: 28.5,18.5 + parent: 1 + type: Transform + - uid: 5736 + components: + - pos: 28.5,22.5 + parent: 1 + type: Transform + - uid: 5737 + components: + - pos: 28.5,23.5 + parent: 1 + type: Transform + - uid: 5794 + components: + - pos: 28.5,-10.5 + parent: 1 + type: Transform + - uid: 5827 + components: + - pos: -37.5,-0.5 + parent: 1 + type: Transform + - uid: 6096 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,34.5 + parent: 1 + type: Transform + - uid: 6097 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,31.5 + parent: 1 + type: Transform + - uid: 6103 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,35.5 + parent: 1 + type: Transform + - uid: 6104 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,35.5 + parent: 1 + type: Transform + - uid: 6141 + components: + - pos: -38.5,-25.5 + parent: 1 + type: Transform + - uid: 6142 + components: + - pos: -38.5,-26.5 + parent: 1 + type: Transform + - uid: 6143 + components: + - pos: -37.5,-26.5 + parent: 1 + type: Transform + - uid: 6144 + components: + - pos: -36.5,-26.5 + parent: 1 + type: Transform + - uid: 6145 + components: + - pos: -18.5,-43.5 + parent: 1 + type: Transform + - uid: 6146 + components: + - pos: -34.5,-28.5 + parent: 1 + type: Transform + - uid: 6147 + components: + - pos: -33.5,-28.5 + parent: 1 + type: Transform + - uid: 6158 + components: + - pos: -24.5,-33.5 + parent: 1 + type: Transform + - uid: 6159 + components: + - pos: -24.5,-34.5 + parent: 1 + type: Transform + - uid: 6160 + components: + - pos: -24.5,-35.5 + parent: 1 + type: Transform + - uid: 6161 + components: + - pos: -24.5,-36.5 + parent: 1 + type: Transform + - uid: 6163 + components: + - pos: -24.5,-38.5 + parent: 1 + type: Transform + - uid: 6165 + components: + - pos: -24.5,-39.5 + parent: 1 + type: Transform + - uid: 6166 + components: + - pos: 37.5,-24.5 + parent: 1 + type: Transform + - uid: 6168 + components: + - pos: 37.5,-26.5 + parent: 1 + type: Transform + - uid: 6170 + components: + - pos: 35.5,-26.5 + parent: 1 + type: Transform + - uid: 6172 + components: + - pos: 34.5,-28.5 + parent: 1 + type: Transform + - uid: 6173 + components: + - pos: 33.5,-28.5 + parent: 1 + type: Transform + - uid: 6175 + components: + - pos: 31.5,-28.5 + parent: 1 + type: Transform + - uid: 6185 + components: + - pos: 23.5,-33.5 + parent: 1 + type: Transform + - uid: 6187 + components: + - pos: 23.5,-35.5 + parent: 1 + type: Transform + - uid: 6189 + components: + - pos: 23.5,-37.5 + parent: 1 + type: Transform + - uid: 6190 + components: + - pos: 23.5,-38.5 + parent: 1 + type: Transform + - uid: 6191 + components: + - pos: 23.5,-39.5 + parent: 1 + type: Transform + - uid: 6192 + components: + - pos: 16.5,-47.5 + parent: 1 + type: Transform + - uid: 6194 + components: + - pos: -35.5,-28.5 + parent: 1 + type: Transform + - uid: 6195 + components: + - pos: -51.5,47.5 + parent: 1 + type: Transform + - uid: 6197 + components: + - pos: -48.5,53.5 + parent: 1 + type: Transform + - uid: 6200 + components: + - pos: -49.5,51.5 + parent: 1 + type: Transform + - uid: 6201 + components: + - rot: 3.141592653589793 rad + pos: -6.5,87.5 + parent: 1 + type: Transform + - uid: 6202 + components: + - pos: -51.5,50.5 + parent: 1 + type: Transform + - uid: 6203 + components: + - pos: -47.5,53.5 + parent: 1 + type: Transform + - uid: 6204 + components: + - pos: -46.5,54.5 + parent: 1 + type: Transform + - uid: 6205 + components: + - pos: -46.5,55.5 + parent: 1 + type: Transform + - uid: 6206 + components: + - pos: -46.5,56.5 + parent: 1 + type: Transform + - uid: 6207 + components: + - pos: -45.5,56.5 + parent: 1 + type: Transform + - uid: 6209 + components: + - pos: -43.5,56.5 + parent: 1 + type: Transform + - uid: 6210 + components: + - rot: 3.141592653589793 rad + pos: -5.5,87.5 + parent: 1 + type: Transform + - uid: 6212 + components: + - pos: -40.5,54.5 + parent: 1 + type: Transform + - uid: 6213 + components: + - pos: -40.5,55.5 + parent: 1 + type: Transform + - uid: 6214 + components: + - pos: -39.5,53.5 + parent: 1 + type: Transform + - uid: 6215 + components: + - pos: -37.5,53.5 + parent: 1 + type: Transform + - uid: 6218 + components: + - pos: -34.5,60.5 + parent: 1 + type: Transform + - uid: 6219 + components: + - pos: -33.5,60.5 + parent: 1 + type: Transform + - uid: 6220 + components: + - pos: -32.5,60.5 + parent: 1 + type: Transform + - uid: 6223 + components: + - pos: -31.5,62.5 + parent: 1 + type: Transform + - uid: 6224 + components: + - pos: -30.5,62.5 + parent: 1 + type: Transform + - uid: 6226 + components: + - pos: -28.5,62.5 + parent: 1 + type: Transform + - uid: 6228 + components: + - pos: -26.5,62.5 + parent: 1 + type: Transform + - uid: 6229 + components: + - pos: -30.5,76.5 + parent: 1 + type: Transform + - uid: 6230 + components: + - pos: -24.5,62.5 + parent: 1 + type: Transform + - uid: 6231 + components: + - pos: -23.5,62.5 + parent: 1 + type: Transform + - uid: 6232 + components: + - pos: -22.5,62.5 + parent: 1 + type: Transform + - uid: 6233 + components: + - rot: 3.141592653589793 rad + pos: -2.5,87.5 + parent: 1 + type: Transform + - uid: 6234 + components: + - pos: -21.5,68.5 + parent: 1 + type: Transform + - uid: 6235 + components: + - pos: -20.5,68.5 + parent: 1 + type: Transform + - uid: 6238 + components: + - pos: -17.5,68.5 + parent: 1 + type: Transform + - uid: 6239 + components: + - pos: -16.5,68.5 + parent: 1 + type: Transform + - uid: 6240 + components: + - rot: 3.141592653589793 rad + pos: -1.5,87.5 + parent: 1 + type: Transform + - uid: 6241 + components: + - pos: -15.5,74.5 + parent: 1 + type: Transform + - uid: 6243 + components: + - pos: -13.5,74.5 + parent: 1 + type: Transform + - uid: 6244 + components: + - pos: -12.5,74.5 + parent: 1 + type: Transform + - uid: 6245 + components: + - pos: -12.5,75.5 + parent: 1 + type: Transform + - uid: 6246 + components: + - pos: -12.5,76.5 + parent: 1 + type: Transform + - uid: 6247 + components: + - pos: -12.5,77.5 + parent: 1 + type: Transform + - uid: 6248 + components: + - pos: -12.5,78.5 + parent: 1 + type: Transform + - uid: 6249 + components: + - pos: -12.5,79.5 + parent: 1 + type: Transform + - uid: 6250 + components: + - rot: 3.141592653589793 rad + pos: -0.5,87.5 + parent: 1 + type: Transform + - uid: 6251 + components: + - pos: 31.5,60.5 + parent: 1 + type: Transform + - uid: 6252 + components: + - pos: -11.5,79.5 + parent: 1 + type: Transform + - uid: 6254 + components: + - pos: -11.5,81.5 + parent: 1 + type: Transform + - uid: 6255 + components: + - pos: -11.5,82.5 + parent: 1 + type: Transform + - uid: 6256 + components: + - pos: -11.5,83.5 + parent: 1 + type: Transform + - uid: 6258 + components: + - rot: 3.141592653589793 rad + pos: -6.5,86.5 + parent: 1 + type: Transform + - uid: 6259 + components: + - pos: -29.5,76.5 + parent: 1 + type: Transform + - uid: 6260 + components: + - pos: 10.5,83.5 + parent: 1 + type: Transform + - uid: 6261 + components: + - pos: 10.5,81.5 + parent: 1 + type: Transform + - uid: 6262 + components: + - pos: 10.5,80.5 + parent: 1 + type: Transform + - uid: 6263 + components: + - pos: 10.5,79.5 + parent: 1 + type: Transform + - uid: 6264 + components: + - pos: 11.5,79.5 + parent: 1 + type: Transform + - uid: 6265 + components: + - pos: 11.5,78.5 + parent: 1 + type: Transform + - uid: 6266 + components: + - pos: -41.5,76.5 + parent: 1 + type: Transform + - uid: 6268 + components: + - pos: 11.5,75.5 + parent: 1 + type: Transform + - uid: 6269 + components: + - pos: 11.5,74.5 + parent: 1 + type: Transform + - uid: 6270 + components: + - rot: 3.141592653589793 rad + pos: -7.5,86.5 + parent: 1 + type: Transform + - uid: 6271 + components: + - pos: 12.5,74.5 + parent: 1 + type: Transform + - uid: 6272 + components: + - pos: 13.5,74.5 + parent: 1 + type: Transform + - uid: 6273 + components: + - pos: 14.5,74.5 + parent: 1 + type: Transform + - uid: 6274 + components: + - rot: 3.141592653589793 rad + pos: -8.5,86.5 + parent: 1 + type: Transform + - uid: 6275 + components: + - pos: 15.5,68.5 + parent: 1 + type: Transform + - uid: 6277 + components: + - pos: 17.5,68.5 + parent: 1 + type: Transform + - uid: 6278 + components: + - pos: 18.5,68.5 + parent: 1 + type: Transform + - uid: 6279 + components: + - pos: 19.5,68.5 + parent: 1 + type: Transform + - uid: 6280 + components: + - pos: 20.5,68.5 + parent: 1 + type: Transform + - uid: 6281 + components: + - rot: 3.141592653589793 rad + pos: -9.5,86.5 + parent: 1 + type: Transform + - uid: 6282 + components: + - pos: 21.5,62.5 + parent: 1 + type: Transform + - uid: 6284 + components: + - pos: 23.5,62.5 + parent: 1 + type: Transform + - uid: 6285 + components: + - pos: 24.5,62.5 + parent: 1 + type: Transform + - uid: 6286 + components: + - pos: 25.5,62.5 + parent: 1 + type: Transform + - uid: 6289 + components: + - pos: 28.5,62.5 + parent: 1 + type: Transform + - uid: 6290 + components: + - pos: 29.5,62.5 + parent: 1 + type: Transform + - uid: 6291 + components: + - pos: 30.5,62.5 + parent: 1 + type: Transform + - uid: 6294 + components: + - pos: 33.5,60.5 + parent: 1 + type: Transform + - uid: 6295 + components: + - pos: 34.5,60.5 + parent: 1 + type: Transform + - uid: 6296 + components: + - pos: -42.5,76.5 + parent: 1 + type: Transform + - uid: 6297 + components: + - pos: -20.5,-42.5 + parent: 1 + type: Transform + - uid: 6298 + components: + - pos: -44.5,76.5 + parent: 1 + type: Transform + - uid: 6299 + components: + - pos: -45.5,76.5 + parent: 1 + type: Transform + - uid: 6300 + components: + - pos: 41.5,58.5 + parent: 1 + type: Transform + - uid: 6301 + components: + - pos: 42.5,56.5 + parent: 1 + type: Transform + - uid: 6302 + components: + - pos: 42.5,55.5 + parent: 1 + type: Transform + - uid: 6304 + components: + - pos: 44.5,55.5 + parent: 1 + type: Transform + - uid: 6305 + components: + - pos: 46.5,52.5 + parent: 1 + type: Transform + - uid: 6306 + components: + - pos: 47.5,52.5 + parent: 1 + type: Transform + - uid: 6307 + components: + - pos: 49.5,48.5 + parent: 1 + type: Transform + - uid: 6308 + components: + - pos: 50.5,48.5 + parent: 1 + type: Transform + - uid: 6309 + components: + - pos: 51.5,48.5 + parent: 1 + type: Transform + - uid: 6310 + components: + - pos: 52.5,47.5 + parent: 1 + type: Transform + - uid: 6312 + components: + - pos: 52.5,45.5 + parent: 1 + type: Transform + - uid: 6313 + components: + - pos: 52.5,44.5 + parent: 1 + type: Transform + - uid: 6314 + components: + - pos: 52.5,43.5 + parent: 1 + type: Transform + - uid: 6316 + components: + - pos: 52.5,41.5 + parent: 1 + type: Transform + - uid: 6317 + components: + - pos: 17.5,-45.5 + parent: 1 + type: Transform + - uid: 6318 + components: + - pos: 17.5,-44.5 + parent: 1 + type: Transform + - uid: 6319 + components: + - pos: 17.5,-43.5 + parent: 1 + type: Transform + - uid: 6320 + components: + - pos: 17.5,-47.5 + parent: 1 + type: Transform + - uid: 6321 + components: + - pos: -18.5,-45.5 + parent: 1 + type: Transform + - uid: 6322 + components: + - pos: -18.5,-46.5 + parent: 1 + type: Transform + - uid: 6323 + components: + - pos: -18.5,-47.5 + parent: 1 + type: Transform + - uid: 6324 + components: + - pos: -17.5,-47.5 + parent: 1 + type: Transform + - uid: 6325 + components: + - pos: -21.5,-42.5 + parent: 1 + type: Transform + - uid: 6326 + components: + - pos: -22.5,-42.5 + parent: 1 + type: Transform + - uid: 6327 + components: + - pos: -22.5,-41.5 + parent: 1 + type: Transform + - uid: 6328 + components: + - rot: 3.141592653589793 rad + pos: -3.5,87.5 + parent: 1 + type: Transform + - uid: 6329 + components: + - pos: 19.5,-42.5 + parent: 1 + type: Transform + - uid: 6330 + components: + - pos: -39.5,77.5 + parent: 1 + type: Transform + - uid: 6331 + components: + - pos: 21.5,-42.5 + parent: 1 + type: Transform + - uid: 6332 + components: + - pos: 21.5,-41.5 + parent: 1 + type: Transform + - uid: 6341 + components: + - pos: 39.5,54.5 + parent: 1 + type: Transform + - uid: 6342 + components: + - pos: 39.5,55.5 + parent: 1 + type: Transform + - uid: 6385 + components: + - pos: -38.5,77.5 + parent: 1 + type: Transform + - uid: 6462 + components: + - rot: 3.141592653589793 rad + pos: 2.5,87.5 + parent: 1 + type: Transform + - uid: 6463 + components: + - rot: 3.141592653589793 rad + pos: 3.5,87.5 + parent: 1 + type: Transform + - uid: 6464 + components: + - rot: 3.141592653589793 rad + pos: 4.5,87.5 + parent: 1 + type: Transform + - uid: 6465 + components: + - rot: 3.141592653589793 rad + pos: 5.5,87.5 + parent: 1 + type: Transform + - uid: 6466 + components: + - rot: 3.141592653589793 rad + pos: 5.5,86.5 + parent: 1 + type: Transform + - uid: 6467 + components: + - rot: 3.141592653589793 rad + pos: 6.5,86.5 + parent: 1 + type: Transform + - uid: 6469 + components: + - rot: 3.141592653589793 rad + pos: 8.5,86.5 + parent: 1 + type: Transform + - uid: 6470 + components: + - rot: 3.141592653589793 rad + pos: 9.5,86.5 + parent: 1 + type: Transform + - uid: 6478 + components: + - pos: -53.5,45.5 + parent: 1 + type: Transform + - uid: 6483 + components: + - pos: -53.5,42.5 + parent: 1 + type: Transform + - uid: 6492 + components: + - pos: -53.5,43.5 + parent: 1 + type: Transform + - uid: 6493 + components: + - pos: -53.5,41.5 + parent: 1 + type: Transform + - uid: 6497 + components: + - pos: 42.5,-10.5 + parent: 1 + type: Transform + - uid: 6498 + components: + - pos: 43.5,-10.5 + parent: 1 + type: Transform + - uid: 6499 + components: + - pos: 44.5,-12.5 + parent: 1 + type: Transform + - uid: 6510 + components: + - pos: 51.5,-8.5 + parent: 1 + type: Transform + - uid: 6511 + components: + - pos: 50.5,-10.5 + parent: 1 + type: Transform + - uid: 6515 + components: + - pos: 50.5,-12.5 + parent: 1 + type: Transform + - uid: 6530 + components: + - pos: -37.5,77.5 + parent: 1 + type: Transform + - uid: 6531 + components: + - pos: -36.5,77.5 + parent: 1 + type: Transform + - uid: 6532 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,6.5 + parent: 1 + type: Transform + - uid: 6533 + components: + - pos: -31.5,76.5 + parent: 1 + type: Transform + - uid: 6534 + components: + - pos: -35.5,76.5 + parent: 1 + type: Transform + - uid: 6535 + components: + - pos: -34.5,76.5 + parent: 1 + type: Transform + - uid: 6536 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,7.5 + parent: 1 + type: Transform + - uid: 6537 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,7.5 + parent: 1 + type: Transform + - uid: 6538 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,0.5 + parent: 1 + type: Transform + - uid: 6542 + components: + - pos: -33.5,76.5 + parent: 1 + type: Transform + - uid: 6562 + components: + - pos: 45.5,76.5 + parent: 1 + type: Transform + - uid: 6567 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,11.5 + parent: 1 + type: Transform + - uid: 6568 + components: + - rot: 1.5707963267948966 rad + pos: 49.5,11.5 + parent: 1 + type: Transform + - uid: 6570 + components: + - rot: 1.5707963267948966 rad + pos: 49.5,-5.5 + parent: 1 + type: Transform + - uid: 6571 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,5.5 + parent: 1 + type: Transform + - uid: 6581 + components: + - pos: 4.5,65.5 + parent: 1 + type: Transform + - uid: 6852 + components: + - pos: 37.5,49.5 + parent: 1 + type: Transform + - uid: 7178 + components: + - pos: -46.5,17.5 + parent: 1 + type: Transform + - uid: 7179 + components: + - pos: -48.5,17.5 + parent: 1 + type: Transform + - uid: 7248 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-15.5 + parent: 1 + type: Transform + - uid: 7399 + components: + - pos: 27.5,-28.5 + parent: 1 + type: Transform + - uid: 7634 + components: + - pos: 25.5,-28.5 + parent: 1 + type: Transform + - uid: 7642 + components: + - pos: -26.5,-28.5 + parent: 1 + type: Transform + - uid: 7647 + components: + - pos: 47.5,76.5 + parent: 1 + type: Transform + - uid: 7673 + components: + - pos: -28.5,-28.5 + parent: 1 + type: Transform + - uid: 7678 + components: + - pos: 26.5,67.5 + parent: 1 + type: Transform + - uid: 7679 + components: + - pos: 26.5,68.5 + parent: 1 + type: Transform + - uid: 7680 + components: + - pos: 26.5,69.5 + parent: 1 + type: Transform + - uid: 7682 + components: + - pos: 26.5,71.5 + parent: 1 + type: Transform + - uid: 7684 + components: + - pos: 26.5,73.5 + parent: 1 + type: Transform + - uid: 7685 + components: + - pos: 26.5,74.5 + parent: 1 + type: Transform + - uid: 7686 + components: + - pos: 26.5,75.5 + parent: 1 + type: Transform + - uid: 7687 + components: + - pos: 26.5,76.5 + parent: 1 + type: Transform + - uid: 7719 + components: + - pos: 48.5,76.5 + parent: 1 + type: Transform + - uid: 7720 + components: + - pos: 48.5,75.5 + parent: 1 + type: Transform + - uid: 7721 + components: + - pos: 48.5,74.5 + parent: 1 + type: Transform + - uid: 7723 + components: + - pos: 48.5,72.5 + parent: 1 + type: Transform + - uid: 7725 + components: + - pos: 48.5,70.5 + parent: 1 + type: Transform + - uid: 7726 + components: + - pos: 48.5,69.5 + parent: 1 + type: Transform + - uid: 7727 + components: + - pos: 48.5,68.5 + parent: 1 + type: Transform + - uid: 7728 + components: + - pos: 48.5,67.5 + parent: 1 + type: Transform + - uid: 7886 + components: + - pos: -47.5,39.5 + parent: 1 + type: Transform + - uid: 7887 + components: + - pos: -41.5,45.5 + parent: 1 + type: Transform + - uid: 7902 + components: + - pos: -44.5,39.5 + parent: 1 + type: Transform + - uid: 7914 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,21.5 + parent: 1 + type: Transform + - uid: 7916 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,26.5 + parent: 1 + type: Transform + - uid: 7924 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,26.5 + parent: 1 + type: Transform + - uid: 7933 + components: + - pos: -43.5,32.5 + parent: 1 + type: Transform + - uid: 8588 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,16.5 + parent: 1 + type: Transform + - uid: 8589 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,16.5 + parent: 1 + type: Transform + - uid: 8640 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,31.5 + parent: 1 + type: Transform + - uid: 8729 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-16.5 + parent: 1 + type: Transform + - uid: 8730 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-16.5 + parent: 1 + type: Transform + - uid: 8757 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-0.5 + parent: 8756 + type: Transform + - uid: 8758 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 8756 + type: Transform + - uid: 8759 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 8756 + type: Transform + - uid: 8760 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 8756 + type: Transform + - uid: 8777 + components: + - rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 8756 + type: Transform + - uid: 8778 + components: + - rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 8756 + type: Transform + - uid: 8783 + components: + - rot: 3.141592653589793 rad + pos: -2.5,3.5 + parent: 8756 + type: Transform + - uid: 8784 + components: + - rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 8756 + type: Transform + - uid: 8785 + components: + - rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 8756 + type: Transform + - uid: 8786 + components: + - rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 8756 + type: Transform + - uid: 8787 + components: + - rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 8756 + type: Transform + - uid: 8793 + components: + - rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 8756 + type: Transform + - uid: 8794 + components: + - rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 8756 + type: Transform + - uid: 8802 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 8756 + type: Transform + - uid: 8809 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-4.5 + parent: 8756 + type: Transform + - uid: 8810 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 8756 + type: Transform + - uid: 8816 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 8756 + type: Transform + - uid: 8817 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 8756 + type: Transform + - uid: 8945 + components: + - pos: -10.5,-6.5 + parent: 1 + type: Transform + - uid: 8946 + components: + - pos: -11.5,-6.5 + parent: 1 + type: Transform + - uid: 8989 + components: + - pos: -12.5,-6.5 + parent: 1 + type: Transform + - uid: 9242 + components: + - pos: -14.5,3.5 + parent: 1 + type: Transform + - uid: 9243 + components: + - pos: -14.5,-2.5 + parent: 1 + type: Transform + - uid: 9580 + components: + - pos: 1.5,27.5 + parent: 1 + type: Transform + - uid: 9582 + components: + - pos: 1.5,30.5 + parent: 1 + type: Transform + - uid: 9583 + components: + - pos: 1.5,33.5 + parent: 1 + type: Transform + - uid: 9604 + components: + - pos: 16.5,-36.5 + parent: 1 + type: Transform + - uid: 10146 + components: + - rot: 3.141592653589793 rad + pos: 38.5,53.5 + parent: 1 + type: Transform + - uid: 10148 + components: + - rot: 3.141592653589793 rad + pos: 36.5,53.5 + parent: 1 + type: Transform + - uid: 10962 + components: + - rot: 3.141592653589793 rad + pos: 36.5,-13.5 + parent: 1 + type: Transform + - uid: 10963 + components: + - rot: 3.141592653589793 rad + pos: 37.5,-13.5 + parent: 1 + type: Transform + - uid: 11079 + components: + - pos: 21.5,10.5 + parent: 1 + type: Transform + - uid: 11080 + components: + - pos: 21.5,11.5 + parent: 1 + type: Transform + - uid: 14093 + components: + - pos: -48.5,34.5 + parent: 1 + type: Transform + - uid: 14094 + components: + - pos: -47.5,34.5 + parent: 1 + type: Transform + - uid: 18269 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,76.5 + parent: 1 + type: Transform + - uid: 18270 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,75.5 + parent: 1 + type: Transform + - uid: 18271 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,74.5 + parent: 1 + type: Transform + - uid: 18272 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,72.5 + parent: 1 + type: Transform + - uid: 18273 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,71.5 + parent: 1 + type: Transform + - uid: 18274 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,70.5 + parent: 1 + type: Transform + - uid: 18275 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,69.5 + parent: 1 + type: Transform + - uid: 18277 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,67.5 + parent: 1 + type: Transform + - uid: 18303 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,76.5 + parent: 1 + type: Transform + - uid: 18304 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,75.5 + parent: 1 + type: Transform + - uid: 18305 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,74.5 + parent: 1 + type: Transform + - uid: 18306 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,73.5 + parent: 1 + type: Transform + - uid: 18307 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,72.5 + parent: 1 + type: Transform + - uid: 18310 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,69.5 + parent: 1 + type: Transform + - uid: 18311 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,68.5 + parent: 1 + type: Transform + - uid: 18312 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,67.5 + parent: 1 + type: Transform +- proto: GrilleBroken + entities: + - uid: 4358 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,76.5 + parent: 1 + type: Transform + - uid: 4359 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,76.5 + parent: 1 + type: Transform + - uid: 4380 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,76.5 + parent: 1 + type: Transform + - uid: 4381 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,76.5 + parent: 1 + type: Transform + - uid: 4486 + components: + - pos: 35.5,77.5 + parent: 1 + type: Transform + - uid: 6151 + components: + - rot: 3.141592653589793 rad + pos: 37.5,-25.5 + parent: 1 + type: Transform + - uid: 6155 + components: + - rot: -1.5707963267948966 rad + pos: 48.5,52.5 + parent: 1 + type: Transform + - uid: 6156 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,76.5 + parent: 1 + type: Transform + - uid: 6157 + components: + - rot: 3.141592653589793 rad + pos: 39.5,76.5 + parent: 1 + type: Transform + - uid: 6162 + components: + - rot: 3.141592653589793 rad + pos: 52.5,40.5 + parent: 1 + type: Transform + - uid: 6164 + components: + - pos: 52.5,46.5 + parent: 1 + type: Transform + - uid: 6167 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,67.5 + parent: 1 + type: Transform + - uid: 6169 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,62.5 + parent: 1 + type: Transform + - uid: 6171 + components: + - pos: 52.5,48.5 + parent: 1 + type: Transform + - uid: 6174 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,62.5 + parent: 1 + type: Transform + - uid: 6176 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,76.5 + parent: 1 + type: Transform + - uid: 6177 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,76.5 + parent: 1 + type: Transform + - uid: 6179 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,87.5 + parent: 1 + type: Transform + - uid: 6180 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,62.5 + parent: 1 + type: Transform + - uid: 6181 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,60.5 + parent: 1 + type: Transform + - uid: 6182 + components: + - rot: 3.141592653589793 rad + pos: 52.5,42.5 + parent: 1 + type: Transform + - uid: 6183 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,58.5 + parent: 1 + type: Transform + - uid: 6186 + components: + - pos: 42.5,57.5 + parent: 1 + type: Transform + - uid: 6188 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,55.5 + parent: 1 + type: Transform + - uid: 6196 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-26.5 + parent: 1 + type: Transform + - uid: 6199 + components: + - rot: 3.141592653589793 rad + pos: -36.5,76.5 + parent: 1 + type: Transform + - uid: 6216 + components: + - pos: -53.5,44.5 + parent: 1 + type: Transform + - uid: 6217 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-28.5 + parent: 1 + type: Transform + - uid: 6221 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,76.5 + parent: 1 + type: Transform + - uid: 6227 + components: + - pos: 21.5,-40.5 + parent: 1 + type: Transform + - uid: 6236 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-36.5 + parent: 1 + type: Transform + - uid: 6237 + components: + - pos: 23.5,-34.5 + parent: 1 + type: Transform + - uid: 6242 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-46.5 + parent: 1 + type: Transform + - uid: 6253 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-42.5 + parent: 1 + type: Transform + - uid: 6257 + components: + - pos: -35.5,-27.5 + parent: 1 + type: Transform + - uid: 6267 + components: + - pos: -38.5,-24.5 + parent: 1 + type: Transform + - uid: 6276 + components: + - pos: -24.5,-37.5 + parent: 1 + type: Transform + - uid: 6283 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-42.5 + parent: 1 + type: Transform + - uid: 6287 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-44.5 + parent: 1 + type: Transform + - uid: 6288 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,87.5 + parent: 1 + type: Transform + - uid: 6292 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,46.5 + parent: 1 + type: Transform + - uid: 6293 + components: + - pos: -22.5,-40.5 + parent: 1 + type: Transform + - uid: 6303 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,86.5 + parent: 1 + type: Transform + - uid: 6311 + components: + - rot: 3.141592653589793 rad + pos: 11.5,77.5 + parent: 1 + type: Transform + - uid: 6315 + components: + - rot: 3.141592653589793 rad + pos: 10.5,82.5 + parent: 1 + type: Transform + - uid: 6355 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,56.5 + parent: 1 + type: Transform + - uid: 6468 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-28.5 + parent: 1 + type: Transform + - uid: 6851 + components: + - pos: 37.5,50.5 + parent: 1 + type: Transform + - uid: 7625 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,76.5 + parent: 1 + type: Transform + - uid: 7626 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,76.5 + parent: 1 + type: Transform + - uid: 7627 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,76.5 + parent: 1 + type: Transform + - uid: 7628 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,77.5 + parent: 1 + type: Transform + - uid: 7629 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,76.5 + parent: 1 + type: Transform + - uid: 7677 + components: + - rot: 3.141592653589793 rad + pos: 48.5,73.5 + parent: 1 + type: Transform + - uid: 7698 + components: + - pos: 26.5,70.5 + parent: 1 + type: Transform + - uid: 7701 + components: + - pos: 26.5,72.5 + parent: 1 + type: Transform + - uid: 7706 + components: + - rot: 3.141592653589793 rad + pos: 26.5,72.5 + parent: 1 + type: Transform + - uid: 7709 + components: + - rot: 3.141592653589793 rad + pos: 26.5,70.5 + parent: 1 + type: Transform + - uid: 7713 + components: + - rot: 3.141592653589793 rad + pos: 26.5,66.5 + parent: 1 + type: Transform + - uid: 7717 + components: + - rot: 3.141592653589793 rad + pos: 48.5,66.5 + parent: 1 + type: Transform + - uid: 7718 + components: + - pos: 48.5,71.5 + parent: 1 + type: Transform + - uid: 7724 + components: + - pos: 48.5,73.5 + parent: 1 + type: Transform + - uid: 8115 + components: + - pos: -51.5,48.5 + parent: 1 + type: Transform + - uid: 9222 + components: + - pos: -49.5,52.5 + parent: 1 + type: Transform + - uid: 9224 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,60.5 + parent: 1 + type: Transform + - uid: 9581 + components: + - rot: 3.141592653589793 rad + pos: 16.5,68.5 + parent: 1 + type: Transform + - uid: 9585 + components: + - rot: 3.141592653589793 rad + pos: 14.5,73.5 + parent: 1 + type: Transform + - uid: 9586 + components: + - pos: 11.5,76.5 + parent: 1 + type: Transform + - uid: 9707 + components: + - rot: 3.141592653589793 rad + pos: -31.5,61.5 + parent: 1 + type: Transform + - uid: 9708 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,62.5 + parent: 1 + type: Transform + - uid: 14034 + components: + - rot: 3.141592653589793 rad + pos: 24.5,58.5 + parent: 1 + type: Transform + - uid: 18180 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,62.5 + parent: 1 + type: Transform + - uid: 18181 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,62.5 + parent: 1 + type: Transform + - uid: 18182 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,62.5 + parent: 1 + type: Transform + - uid: 18183 + components: + - pos: -11.5,80.5 + parent: 1 + type: Transform + - uid: 18184 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,68.5 + parent: 1 + type: Transform + - uid: 18185 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,68.5 + parent: 1 + type: Transform + - uid: 18186 + components: + - rot: 3.141592653589793 rad + pos: -15.5,73.5 + parent: 1 + type: Transform + - uid: 18187 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,74.5 + parent: 1 + type: Transform + - uid: 18188 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,86.5 + parent: 1 + type: Transform + - uid: 18189 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,87.5 + parent: 1 + type: Transform + - uid: 18266 + components: + - rot: 3.141592653589793 rad + pos: -27.5,66.5 + parent: 1 + type: Transform + - uid: 18276 + components: + - pos: -27.5,68.5 + parent: 1 + type: Transform + - uid: 18278 + components: + - rot: 3.141592653589793 rad + pos: -27.5,73.5 + parent: 1 + type: Transform + - uid: 18315 + components: + - rot: 3.141592653589793 rad + pos: -49.5,71.5 + parent: 1 + type: Transform + - uid: 18316 + components: + - pos: -49.5,70.5 + parent: 1 + type: Transform + - uid: 18317 + components: + - rot: 3.141592653589793 rad + pos: -49.5,66.5 + parent: 1 + type: Transform +- proto: GroundCannabis + entities: + - uid: 18328 + components: + - pos: -4.3371787,11.84107 + parent: 1 + type: Transform +- proto: GunSafe + entities: + - uid: 7683 + components: + - pos: -4.5,62.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8148 + - 8145 + - 7694 + - 7693 + - 7692 + - 7691 + - 7690 + - 7689 + - 7688 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: GunSafeDisabler + entities: + - uid: 7766 + components: + - pos: -17.5,40.5 + parent: 1 + type: Transform +- proto: GunSafeLaserCarbine + entities: + - uid: 7656 + components: + - pos: -9.5,64.5 + parent: 1 + type: Transform +- proto: GunSafePistolMk58 + entities: + - uid: 7658 + components: + - pos: -4.5,64.5 + parent: 1 + type: Transform +- proto: GunSafeRifleLecter + entities: + - uid: 7653 + components: + - pos: -4.5,63.5 + parent: 1 + type: Transform + - uid: 7657 + components: + - pos: -9.5,63.5 + parent: 1 + type: Transform +- proto: GunSafeShotgunKammerer + entities: + - uid: 7695 + components: + - pos: -9.5,62.5 + parent: 1 + type: Transform +- proto: Gyroscope + entities: + - uid: 8820 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 8756 + type: Transform +- proto: Handcuffs + entities: + - uid: 8071 + components: + - pos: 3.5258956,80.448524 + parent: 1 + type: Transform + - uid: 9396 + components: + - pos: -34.812588,-5.3036704 + parent: 1 + type: Transform + - uid: 9418 + components: + - pos: 26.351677,-13.233653 + parent: 1 + type: Transform +- proto: HandheldCrewMonitor + entities: + - uid: 8490 + components: + - pos: 16.562784,32.85037 + parent: 1 + type: Transform +- proto: HandheldGPSBasic + entities: + - uid: 4126 + components: + - pos: -42.37712,26.662056 + parent: 1 + type: Transform + - uid: 9388 + components: + - pos: -43.72039,-2.2772734 + parent: 1 + type: Transform +- proto: HandheldHealthAnalyzer + entities: + - uid: 8069 + components: + - pos: 6.4224486,80.533676 + parent: 1 + type: Transform + - uid: 8527 + components: + - pos: 7.3271127,32.884823 + parent: 1 + type: Transform +- proto: HandLabeler + entities: + - uid: 8707 + components: + - pos: -13.497177,-24.441525 + parent: 1 + type: Transform +- proto: Hemostat + entities: + - uid: 2616 + components: + - pos: -21.453913,34.60605 + parent: 1 + type: Transform + - uid: 8682 + components: + - pos: 20.466082,27.283358 + parent: 1 + type: Transform +- proto: HighSecArmoryLocked + entities: + - uid: 6826 + components: + - pos: -7.5,59.5 + parent: 1 + type: Transform +- proto: HighSecCaptainLocked + entities: + - uid: 9560 + components: + - pos: -20.5,-12.5 + parent: 1 + type: Transform + - uid: 9561 + components: + - pos: -19.5,-12.5 + parent: 1 + type: Transform +- proto: HighSecCommandLocked + entities: + - uid: 6460 + components: + - pos: 18.5,-10.5 + parent: 1 + type: Transform + - uid: 6475 + components: + - pos: 3.5,47.5 + parent: 1 + type: Transform + - uid: 6484 + components: + - pos: 3.5,46.5 + parent: 1 + type: Transform + - uid: 6504 + components: + - pos: 1.5,47.5 + parent: 1 + type: Transform + - uid: 6505 + components: + - pos: 1.5,46.5 + parent: 1 + type: Transform + - uid: 7262 + components: + - pos: 15.5,-23.5 + parent: 1 + type: Transform + - uid: 9402 + components: + - pos: -19.5,-18.5 + parent: 1 + type: Transform + - uid: 10647 + components: + - pos: 19.5,-10.5 + parent: 1 + type: Transform +- proto: HolofanProjector + entities: + - uid: 8708 + components: + - pos: -13.493561,-19.411528 + parent: 1 + type: Transform + - uid: 9101 + components: + - pos: 6.6579733,-24.865988 + parent: 1 + type: Transform + - uid: 9234 + components: + - pos: -22.761885,-11.553672 + parent: 1 + type: Transform + - uid: 11074 + components: + - pos: 19.405106,4.6722174 + parent: 1 + type: Transform +- proto: Holoprojector + entities: + - uid: 6663 + components: + - pos: 16.524984,-4.1055784 + parent: 1 + type: Transform +- proto: HospitalCurtains + entities: + - uid: 6815 + components: + - rot: 3.141592653589793 rad + pos: -7.5,69.5 + parent: 1 + type: Transform +- proto: HospitalCurtainsOpen + entities: + - uid: 2489 + components: + - pos: 26.5,8.5 + parent: 1 + type: Transform + - uid: 3228 + components: + - rot: 3.141592653589793 rad + pos: 25.5,49.5 + parent: 1 + type: Transform + - uid: 3240 + components: + - rot: 3.141592653589793 rad + pos: 26.5,52.5 + parent: 1 + type: Transform + - uid: 4315 + components: + - pos: -38.5,49.5 + parent: 1 + type: Transform + - uid: 6689 + components: + - pos: 16.5,-40.5 + parent: 1 + type: Transform + - uid: 6798 + components: + - pos: -5.5,72.5 + parent: 1 + type: Transform + - uid: 6818 + components: + - pos: -13.5,60.5 + parent: 1 + type: Transform + - uid: 7027 + components: + - pos: -23.5,1.5 + parent: 1 + type: Transform + - uid: 8360 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,48.5 + parent: 1 + type: Transform + - uid: 8391 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,40.5 + parent: 1 + type: Transform + - uid: 8392 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,46.5 + parent: 1 + type: Transform + - SecondsUntilStateChange: -483178.7 + state: Closing + type: Door + - uid: 8393 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,47.5 + parent: 1 + type: Transform + - uid: 8479 + components: + - pos: 14.5,34.5 + parent: 1 + type: Transform + - uid: 8504 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,28.5 + parent: 1 + type: Transform + - uid: 8630 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,19.5 + parent: 1 + type: Transform + - uid: 9017 + components: + - pos: -17.5,3.5 + parent: 1 + type: Transform + - uid: 9018 + components: + - pos: -17.5,1.5 + parent: 1 + type: Transform + - uid: 9019 + components: + - pos: -17.5,-2.5 + parent: 1 + type: Transform + - uid: 9103 + components: + - pos: 4.5,-23.5 + parent: 1 + type: Transform + - uid: 9325 + components: + - pos: -42.5,11.5 + parent: 1 + type: Transform + - uid: 9584 + components: + - pos: 1.5,33.5 + parent: 1 + type: Transform + - uid: 9587 + components: + - pos: 1.5,30.5 + parent: 1 + type: Transform + - uid: 9588 + components: + - pos: 1.5,27.5 + parent: 1 + type: Transform + - uid: 9872 + components: + - pos: -36.5,-21.5 + parent: 1 + type: Transform + - uid: 10383 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-17.5 + parent: 1 + type: Transform + - uid: 13329 + components: + - pos: -10.5,10.5 + parent: 1 + type: Transform + - uid: 13406 + components: + - pos: -38.5,42.5 + parent: 1 + type: Transform + - uid: 13407 + components: + - pos: -38.5,46.5 + parent: 1 + type: Transform +- proto: hydroponicsSoil + entities: + - uid: 4320 + components: + - pos: -34.5,45.5 + parent: 1 + type: Transform + - uid: 4321 + components: + - pos: -34.5,44.5 + parent: 1 + type: Transform + - uid: 4322 + components: + - pos: -32.5,45.5 + parent: 1 + type: Transform + - uid: 4323 + components: + - pos: -32.5,44.5 + parent: 1 + type: Transform + - uid: 4332 + components: + - pos: -34.5,46.5 + parent: 1 + type: Transform + - uid: 4333 + components: + - pos: -32.5,46.5 + parent: 1 + type: Transform + - uid: 10956 + components: + - pos: 36.5,-17.5 + parent: 1 + type: Transform + - uid: 10957 + components: + - pos: 37.5,-17.5 + parent: 1 + type: Transform + - uid: 10958 + components: + - pos: 37.5,-16.5 + parent: 1 + type: Transform + - uid: 10959 + components: + - pos: 36.5,-16.5 + parent: 1 + type: Transform +- proto: HydroponicsToolClippers + entities: + - uid: 11041 + components: + - pos: 34.58487,-14.532225 + parent: 1 + type: Transform +- proto: HydroponicsToolHatchet + entities: + - uid: 4239 + components: + - pos: 8.448287,11.575508 + parent: 1 + type: Transform + - uid: 10964 + components: + - pos: 34.467308,-14.410013 + parent: 1 + type: Transform +- proto: HydroponicsToolMiniHoe + entities: + - uid: 8274 + components: + - pos: -33.554195,46.106983 + parent: 1 + type: Transform + - uid: 11039 + components: + - pos: 37.22584,-16.547361 + parent: 1 + type: Transform + - uid: 18329 + components: + - pos: 5.441926,6.893481 + parent: 1 + type: Transform +- proto: HydroponicsToolScythe + entities: + - uid: 9005 + components: + - pos: 5.5596075,7.522549 + parent: 1 + type: Transform + - uid: 11038 + components: + - pos: 34.55647,-14.390314 + parent: 1 + type: Transform +- proto: HydroponicsToolSpade + entities: + - uid: 4234 + components: + - pos: 8.610393,11.560773 + parent: 1 + type: Transform + - uid: 8275 + components: + - pos: -33.497402,45.780586 + parent: 1 + type: Transform + - uid: 11040 + components: + - pos: 37.28264,-16.37707 + parent: 1 + type: Transform +- proto: hydroponicsTray + entities: + - uid: 2929 + components: + - pos: 9.5,11.5 + parent: 1 + type: Transform + - uid: 4222 + components: + - pos: 7.5,9.5 + parent: 1 + type: Transform + - uid: 4223 + components: + - pos: 7.5,8.5 + parent: 1 + type: Transform + - uid: 4224 + components: + - pos: 7.5,7.5 + parent: 1 + type: Transform + - uid: 4225 + components: + - pos: 9.5,9.5 + parent: 1 + type: Transform + - uid: 4226 + components: + - pos: 9.5,8.5 + parent: 1 + type: Transform + - uid: 4227 + components: + - pos: 9.5,7.5 + parent: 1 + type: Transform + - uid: 4228 + components: + - pos: 7.5,6.5 + parent: 1 + type: Transform + - uid: 4229 + components: + - pos: 9.5,6.5 + parent: 1 + type: Transform + - uid: 8594 + components: + - pos: 11.5,11.5 + parent: 1 + type: Transform + - uid: 9004 + components: + - pos: 5.5,11.5 + parent: 1 + type: Transform + - uid: 10115 + components: + - pos: 5.5,10.5 + parent: 1 + type: Transform + - uid: 10116 + components: + - pos: 5.5,8.5 + parent: 1 + type: Transform + - uid: 10117 + components: + - pos: 5.5,9.5 + parent: 1 + type: Transform +- proto: IDComputerCircuitboard + entities: + - uid: 18334 + components: + - pos: 18.594763,-24.917038 + parent: 1 + type: Transform +- proto: InflatableDoorStack + entities: + - uid: 8715 + components: + - pos: -11.275075,-15.582806 + parent: 1 + type: Transform +- proto: InflatableWallStack + entities: + - uid: 8755 + components: + - pos: -11.574207,-15.350821 + parent: 1 + type: Transform +- proto: IngotGold1 + entities: + - uid: 9944 + components: + - pos: -39.522156,-11.308753 + parent: 1 + type: Transform + - uid: 9945 + components: + - pos: -38.57084,-11.507429 + parent: 1 + type: Transform + - uid: 9946 + components: + - pos: -38.52824,-13.196171 + parent: 1 + type: Transform + - uid: 13429 + components: + - pos: -23.753557,58.80462 + parent: 1 + type: Transform + - uid: 13430 + components: + - pos: -23.61157,58.520798 + parent: 1 + type: Transform +- proto: IngotSilver + entities: + - uid: 2625 + components: + - pos: 5.5338554,45.698784 + parent: 1 + type: Transform +- proto: IngotSilver1 + entities: + - uid: 9947 + components: + - pos: -38.613434,-12.656909 + parent: 1 + type: Transform +- proto: IntercomAll + entities: + - uid: 18363 + components: + - pos: -7.5,71.5 + parent: 1 + type: Transform +- proto: IntercomCommand + entities: + - uid: 17569 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-25.5 + parent: 1 + type: Transform + - uid: 17582 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,11.5 + parent: 1 + type: Transform + - uid: 17593 + components: + - rot: 3.141592653589793 rad + pos: -24.5,18.5 + parent: 1 + type: Transform + - uid: 17598 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,33.5 + parent: 1 + type: Transform + - uid: 17607 + components: + - pos: -15.5,61.5 + parent: 1 + type: Transform + - uid: 17610 + components: + - pos: 4.5,75.5 + parent: 1 + type: Transform + - uid: 17611 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,81.5 + parent: 1 + type: Transform +- proto: IntercomCommon + entities: + - uid: 8893 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 8756 + type: Transform + - uid: 17553 + components: + - pos: 47.5,16.5 + parent: 1 + type: Transform + - uid: 17554 + components: + - rot: 3.141592653589793 rad + pos: 47.5,35.5 + parent: 1 + type: Transform + - uid: 17555 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,40.5 + parent: 1 + type: Transform + - uid: 17556 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,18.5 + parent: 1 + type: Transform + - uid: 17557 + components: + - pos: -12.5,5.5 + parent: 1 + type: Transform + - uid: 17558 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,11.5 + parent: 1 + type: Transform + - uid: 17559 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,14.5 + parent: 1 + type: Transform + - uid: 17560 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,31.5 + parent: 1 + type: Transform + - uid: 17561 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,37.5 + parent: 1 + type: Transform + - uid: 17562 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,69.5 + parent: 1 + type: Transform + - uid: 17563 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,54.5 + parent: 1 + type: Transform + - uid: 17564 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,2.5 + parent: 1 + type: Transform + - uid: 17565 + components: + - pos: 27.5,7.5 + parent: 1 + type: Transform + - uid: 17603 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,43.5 + parent: 1 + type: Transform +- proto: IntercomEngineering + entities: + - uid: 17567 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-14.5 + parent: 1 + type: Transform + - uid: 17568 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-21.5 + parent: 1 + type: Transform + - uid: 17570 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-34.5 + parent: 1 + type: Transform + - uid: 17571 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-37.5 + parent: 1 + type: Transform + - uid: 17572 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-14.5 + parent: 1 + type: Transform + - uid: 17573 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-46.5 + parent: 1 + type: Transform + - uid: 17578 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-19.5 + parent: 1 + type: Transform +- proto: IntercomMedical + entities: + - uid: 17594 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,20.5 + parent: 1 + type: Transform + - uid: 17595 + components: + - pos: 13.5,21.5 + parent: 1 + type: Transform + - uid: 17596 + components: + - rot: 3.141592653589793 rad + pos: 6.5,21.5 + parent: 1 + type: Transform + - uid: 17597 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,27.5 + parent: 1 + type: Transform + - uid: 17599 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,27.5 + parent: 1 + type: Transform +- proto: IntercomScience + entities: + - uid: 17588 + components: + - pos: -14.5,21.5 + parent: 1 + type: Transform + - uid: 17589 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,35.5 + parent: 1 + type: Transform + - uid: 17591 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,20.5 + parent: 1 + type: Transform + - uid: 17592 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,33.5 + parent: 1 + type: Transform +- proto: IntercomSecurity + entities: + - uid: 272 + components: + - pos: -33.5,-0.5 + parent: 1 + type: Transform + - uid: 17566 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-10.5 + parent: 1 + type: Transform + - uid: 17601 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,41.5 + parent: 1 + type: Transform + - uid: 17602 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,49.5 + parent: 1 + type: Transform + - uid: 17604 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,45.5 + parent: 1 + type: Transform + - uid: 17605 + components: + - pos: -4.5,55.5 + parent: 1 + type: Transform + - uid: 17606 + components: + - rot: 3.141592653589793 rad + pos: -10.5,51.5 + parent: 1 + type: Transform + - uid: 17608 + components: + - rot: 3.141592653589793 rad + pos: -5.5,58.5 + parent: 1 + type: Transform + - uid: 17609 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,41.5 + parent: 1 + type: Transform +- proto: IntercomService + entities: + - uid: 17574 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 17575 + components: + - pos: -7.5,9.5 + parent: 1 + type: Transform + - uid: 17576 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,10.5 + parent: 1 + type: Transform + - uid: 17577 + components: + - pos: -25.5,4.5 + parent: 1 + type: Transform + - uid: 17600 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,46.5 + parent: 1 + type: Transform +- proto: IntercomSupply + entities: + - uid: 17579 + components: + - pos: -36.5,8.5 + parent: 1 + type: Transform + - uid: 17580 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,11.5 + parent: 1 + type: Transform + - uid: 17581 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-3.5 + parent: 1 + type: Transform + - uid: 17583 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,22.5 + parent: 1 + type: Transform +- proto: JanitorialTrolley + entities: + - uid: 4018 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-4.5 + parent: 1 + type: Transform +- proto: JetpackMini + entities: + - uid: 4366 + components: + - pos: 25.382265,31.514528 + parent: 1 + type: Transform + - uid: 4368 + components: + - pos: 25.476015,31.717653 + parent: 1 + type: Transform + - uid: 7829 + components: + - pos: -41.32702,21.77888 + parent: 1 + type: Transform + - uid: 7931 + components: + - pos: -41.62712,21.537056 + parent: 1 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 4327 + components: + - pos: -34.5,49.5 + parent: 1 + type: Transform + - uid: 4390 + components: + - pos: 7.5,-2.5 + parent: 1 + type: Transform + - uid: 9051 + components: + - pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 9141 + components: + - pos: 10.5,-32.5 + parent: 1 + type: Transform +- proto: KitchenReagentGrinder + entities: + - uid: 4048 + components: + - pos: 2.5,24.5 + parent: 1 + type: Transform + - uid: 4328 + components: + - pos: -32.5,49.5 + parent: 1 + type: Transform + - uid: 9365 + components: + - pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 18449 + components: + - pos: 9.5,-2.5 + parent: 1 + type: Transform +- proto: KitchenSpike + entities: + - uid: 6632 + components: + - pos: 12.5,3.5 + parent: 1 + type: Transform +- proto: KnifePlastic + entities: + - uid: 555 + components: + - pos: 3.662112,0.58738536 + parent: 1 + type: Transform + - uid: 4077 + components: + - pos: 3.662112,0.58738536 + parent: 1 + type: Transform + - uid: 8272 + components: + - pos: -33.199226,49.54123 + parent: 1 + type: Transform + - uid: 8373 + components: + - pos: 32.924263,49.596226 + parent: 1 + type: Transform + - uid: 8423 + components: + - pos: 3.662112,0.58738536 + parent: 1 + type: Transform +- proto: Lamp + entities: + - uid: 6849 + components: + - pos: 42.492897,51.04298 + parent: 1 + type: Transform + - uid: 10940 + components: + - pos: 34.508152,-21.140514 + parent: 1 + type: Transform +- proto: LampGold + entities: + - uid: 7034 + components: + - rot: -1.5707963267948966 rad + pos: -26.522398,7.8231235 + parent: 1 + type: Transform + - uid: 7144 + components: + - rot: 1.5707963267948966 rad + pos: -24.163023,7.5262485 + parent: 1 + type: Transform + - uid: 7288 + components: + - pos: 2.465765,62.00024 + parent: 1 + type: Transform + - uid: 8231 + components: + - pos: -12.7610655,56.80089 + parent: 1 + type: Transform + - uid: 9262 + components: + - pos: 23.380928,11.849496 + parent: 1 + type: Transform + - uid: 9340 + components: + - pos: -43.595627,7.955193 + parent: 1 + type: Transform +- proto: Lantern + entities: + - uid: 18420 + components: + - pos: -29.358017,56.723278 + parent: 1 + type: Transform +- proto: LauncherCreamPie + entities: + - uid: 6610 + components: + - pos: -15.972822,-0.42690194 + parent: 1 + type: Transform +- proto: LockerAtmosphericsFilled + entities: + - uid: 7094 + components: + - pos: -14.5,-17.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 7095 + components: + - pos: -13.5,-17.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerBoozeFilled + entities: + - uid: 4042 + components: + - pos: -6.5,10.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 18352 + components: + - pos: -18.5,-34.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerBotanistFilled + entities: + - uid: 4232 + components: + - pos: 14.5,11.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 4233 + components: + - pos: 15.5,11.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerCaptainFilledHardsuit + entities: + - uid: 4068 + components: + - pos: -6.5,74.5 + parent: 1 + type: Transform +- proto: LockerChemistryFilled + entities: + - uid: 6927 + components: + - pos: 3.5,25.5 + parent: 1 + type: Transform + - uid: 6928 + components: + - pos: 4.5,25.5 + parent: 1 + type: Transform +- proto: LockerChiefEngineerFilled + entities: + - uid: 9111 + components: + - pos: 6.5,-23.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerChiefMedicalOfficerFilled + entities: + - uid: 4424 + components: + - pos: 16.5,34.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerDetectiveFilled + entities: + - uid: 6846 + components: + - pos: 42.5,46.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerEngineerFilled + entities: + - uid: 4179 + components: + - pos: 4.5,-17.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 4180 + components: + - pos: 5.5,-17.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 4181 + components: + - pos: 6.5,-17.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerEvidence + entities: + - uid: 3589 + components: + - pos: 26.5,-11.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 3590 + components: + - pos: 26.5,-12.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 4347 + components: + - pos: 41.5,44.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 4348 + components: + - pos: 42.5,44.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 4351 + components: + - pos: -5.5,44.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 4352 + components: + - pos: -8.5,44.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 4353 + components: + - pos: -11.5,44.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 4354 + components: + - pos: -14.5,44.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 8139 + components: + - pos: -5.284855,57.41589 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 9391 + components: + - pos: -36.5,-0.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 9392 + components: + - pos: -35.5,-0.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerFreezer + entities: + - uid: 6633 + components: + - pos: 10.5,3.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 234.99968 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 9050 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 9844 + components: + - pos: -32.5,-11.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 234.99968 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 9845 + - 9846 + - 9847 + - 9848 + - 9849 + - 9850 + - 9851 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 9286 + components: + - pos: 26.5,11.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerHeadOfSecurityFilled + entities: + - uid: 4463 + components: + - pos: -16.5,60.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerMedicalFilled + entities: + - uid: 8511 + components: + - pos: 12.5,25.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 8512 + components: + - pos: 12.5,26.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerMedicineFilled + entities: + - uid: 5669 + components: + - pos: 3.5,29.5 + parent: 1 + type: Transform + - uid: 8997 + components: + - pos: 3.5,32.5 + parent: 1 + type: Transform +- proto: LockerParamedicFilled + entities: + - uid: 7648 + components: + - pos: 12.5,27.5 + parent: 1 + type: Transform +- proto: LockerQuarterMasterFilled + entities: + - uid: 9342 + components: + - pos: -43.5,9.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 2.0214376 + - 7.6044564 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4070 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerResearchDirectorFilled + entities: + - uid: 3560 + components: + - pos: -25.5,22.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerSalvageSpecialistFilled + entities: + - uid: 239 + components: + - pos: -37.5,30.5 + parent: 1 + type: Transform + - uid: 7825 + components: + - pos: -38.5,30.5 + parent: 1 + type: Transform +- proto: LockerScienceFilled + entities: + - uid: 1068 + components: + - pos: -13.5,23.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 1070 + components: + - pos: -13.5,22.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 1071 + components: + - pos: -19.5,23.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerSecurityFilled + entities: + - uid: 1198 + components: + - pos: -19.5,42.5 + parent: 1 + type: Transform + - uid: 8172 + components: + - pos: -18.5,42.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 8173 + components: + - pos: -15.5,42.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 8174 + components: + - pos: -16.5,42.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerWardenFilled + entities: + - uid: 7394 + components: + - pos: -13.5,50.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 9027 + components: + - pos: 9.5,-36.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13184 + components: + - pos: -24.5,-3.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13327 + components: + - pos: -21.5,1.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13373 + components: + - pos: -28.5,22.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 2.0214376 + - 7.6044564 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 14008 + components: + - pos: 16.5,60.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: Machete + entities: + - uid: 9863 + components: + - pos: -38.31503,-16.537683 + parent: 1 + type: Transform +- proto: MachineAnomalyGenerator + entities: + - uid: 4578 + components: + - pos: -16.5,21.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound +- proto: MachineAnomalyVessel + entities: + - uid: 5534 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,18.5 + parent: 1 + type: Transform + - uid: 5535 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,17.5 + parent: 1 + type: Transform +- proto: MachineAPE + entities: + - uid: 6366 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,20.5 + parent: 1 + type: Transform + - uid: 6367 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,19.5 + parent: 1 + type: Transform +- proto: MachineArtifactAnalyzer + entities: + - uid: 3537 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,29.5 + parent: 1 + type: Transform +- proto: MachineFrame + entities: + - uid: 13450 + components: + - pos: -47.5,46.5 + parent: 1 + type: Transform +- proto: MachineFrameDestroyed + entities: + - uid: 13438 + components: + - pos: -25.5,56.5 + parent: 1 + type: Transform + - uid: 13474 + components: + - pos: -16.5,64.5 + parent: 1 + type: Transform +- proto: MachineParticleAcceleratorEmitterForeCircuitboard + entities: + - uid: 18338 + components: + - pos: 18.069408,-21.38702 + parent: 1 + type: Transform +- proto: MachineParticleAcceleratorEmitterPortCircuitboard + entities: + - uid: 18332 + components: + - pos: 18.552168,-21.543123 + parent: 1 + type: Transform +- proto: MachineParticleAcceleratorEmitterStarboardCircuitboard + entities: + - uid: 18331 + components: + - pos: 18.41018,-21.741798 + parent: 1 + type: Transform +- proto: MachineParticleAcceleratorEndCapCircuitboard + entities: + - uid: 18337 + components: + - pos: 17.998415,-21.571505 + parent: 1 + type: Transform +- proto: MachineParticleAcceleratorPowerBoxCircuitboard + entities: + - uid: 18339 + components: + - pos: 18.140402,-21.174154 + parent: 1 + type: Transform +- proto: MagazineBoxMagnumRubber + entities: + - uid: 7691 + components: + - flags: InContainer + type: MetaData + - parent: 7683 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: MagazineBoxPistolRubber + entities: + - uid: 7689 + components: + - flags: InContainer + type: MetaData + - parent: 7683 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: MagazineBoxRifleRubber + entities: + - uid: 7688 + components: + - flags: InContainer + type: MetaData + - parent: 7683 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: MagazinePistolSubMachineGunTopMounted + entities: + - uid: 6824 + components: + - pos: -16.587696,59.206833 + parent: 1 + type: Transform + - uid: 6825 + components: + - pos: -16.388914,59.03654 + parent: 1 + type: Transform +- proto: MaintenanceFluffSpawner + entities: + - uid: 7444 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-23.5 + parent: 1 + type: Transform + - uid: 8461 + components: + - pos: 11.5,70.5 + parent: 1 + type: Transform + - uid: 9937 + components: + - pos: -22.5,-30.5 + parent: 1 + type: Transform + - uid: 9942 + components: + - pos: -47.5,-6.5 + parent: 1 + type: Transform + - uid: 9943 + components: + - pos: -39.5,-12.5 + parent: 1 + type: Transform + - uid: 9974 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-23.5 + parent: 1 + type: Transform + - uid: 10072 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-17.5 + parent: 1 + type: Transform + - uid: 10952 + components: + - pos: 31.5,-19.5 + parent: 1 + type: Transform + - uid: 11058 + components: + - pos: 17.5,0.5 + parent: 1 + type: Transform + - uid: 13342 + components: + - pos: -27.5,3.5 + parent: 1 + type: Transform + - uid: 13361 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,33.5 + parent: 1 + type: Transform + - uid: 13392 + components: + - pos: -24.5,31.5 + parent: 1 + type: Transform + - uid: 13405 + components: + - pos: -23.5,42.5 + parent: 1 + type: Transform + - uid: 13435 + components: + - pos: -22.5,58.5 + parent: 1 + type: Transform + - uid: 13480 + components: + - pos: -24.5,58.5 + parent: 1 + type: Transform + - uid: 13481 + components: + - pos: -44.5,47.5 + parent: 1 + type: Transform + - uid: 13487 + components: + - pos: -18.5,64.5 + parent: 1 + type: Transform + - uid: 14057 + components: + - pos: 25.5,26.5 + parent: 1 + type: Transform + - uid: 14061 + components: + - pos: 28.5,58.5 + parent: 1 + type: Transform + - uid: 14062 + components: + - pos: 19.5,50.5 + parent: 1 + type: Transform + - uid: 14069 + components: + - pos: 17.5,64.5 + parent: 1 + type: Transform + - uid: 17704 + components: + - pos: -30.5,6.5 + parent: 1 + type: Transform + - uid: 17705 + components: + - pos: -32.5,30.5 + parent: 1 + type: Transform + - uid: 17706 + components: + - pos: -45.5,38.5 + parent: 1 + type: Transform + - uid: 17707 + components: + - pos: -6.5,36.5 + parent: 1 + type: Transform + - uid: 17708 + components: + - pos: 45.5,39.5 + parent: 1 + type: Transform + - uid: 17709 + components: + - pos: -1.5,26.5 + parent: 1 + type: Transform + - uid: 17710 + components: + - pos: 26.5,13.5 + parent: 1 + type: Transform + - uid: 17711 + components: + - pos: -1.5,-13.5 + parent: 1 + type: Transform + - uid: 17772 + components: + - pos: 32.5,23.5 + parent: 1 + type: Transform +- proto: MaintenancePlantSpawner + entities: + - uid: 8163 + components: + - pos: -27.5,53.5 + parent: 1 + type: Transform + - uid: 8164 + components: + - pos: 31.5,52.5 + parent: 1 + type: Transform + - uid: 8165 + components: + - pos: 18.5,21.5 + parent: 1 + type: Transform + - uid: 8166 + components: + - pos: -15.5,-31.5 + parent: 1 + type: Transform +- proto: MaintenanceToolSpawner + entities: + - uid: 7659 + components: + - pos: -27.5,-22.5 + parent: 1 + type: Transform + - uid: 9887 + components: + - pos: -28.5,32.5 + parent: 1 + type: Transform + - uid: 9940 + components: + - pos: -50.5,-6.5 + parent: 1 + type: Transform + - uid: 9941 + components: + - pos: -45.5,-7.5 + parent: 1 + type: Transform + - uid: 10076 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-17.5 + parent: 1 + type: Transform + - uid: 10077 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-13.5 + parent: 1 + type: Transform + - uid: 10088 + components: + - pos: -15.5,-33.5 + parent: 1 + type: Transform + - uid: 10108 + components: + - pos: -23.5,-27.5 + parent: 1 + type: Transform + - uid: 10932 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-18.5 + parent: 1 + type: Transform + - uid: 10947 + components: + - pos: 26.5,-22.5 + parent: 1 + type: Transform + - uid: 10953 + components: + - pos: 29.5,-16.5 + parent: 1 + type: Transform + - uid: 11061 + components: + - pos: 15.5,2.5 + parent: 1 + type: Transform + - uid: 11068 + components: + - pos: 17.5,8.5 + parent: 1 + type: Transform + - uid: 13157 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,20.5 + parent: 1 + type: Transform + - uid: 13201 + components: + - pos: -25.5,-3.5 + parent: 1 + type: Transform + - uid: 13341 + components: + - pos: -21.5,-3.5 + parent: 1 + type: Transform + - uid: 13343 + components: + - pos: -20.5,6.5 + parent: 1 + type: Transform + - uid: 13345 + components: + - pos: -20.5,11.5 + parent: 1 + type: Transform + - uid: 13346 + components: + - pos: -18.5,10.5 + parent: 1 + type: Transform + - uid: 13362 + components: + - pos: -39.5,32.5 + parent: 1 + type: Transform + - uid: 13436 + components: + - pos: -22.5,55.5 + parent: 1 + type: Transform + - uid: 13482 + components: + - pos: -41.5,50.5 + parent: 1 + type: Transform + - uid: 13483 + components: + - pos: -25.5,51.5 + parent: 1 + type: Transform + - uid: 13484 + components: + - pos: -15.5,64.5 + parent: 1 + type: Transform + - uid: 14059 + components: + - pos: 24.5,56.5 + parent: 1 + type: Transform + - uid: 14063 + components: + - pos: 18.5,50.5 + parent: 1 + type: Transform + - uid: 14065 + components: + - pos: 10.5,48.5 + parent: 1 + type: Transform + - uid: 14066 + components: + - pos: 5.5,40.5 + parent: 1 + type: Transform + - uid: 14067 + components: + - pos: 16.5,59.5 + parent: 1 + type: Transform +- proto: MaintenanceWeaponSpawner + entities: + - uid: 8365 + components: + - pos: 38.5,43.5 + parent: 1 + type: Transform + - uid: 9939 + components: + - pos: -49.5,-6.5 + parent: 1 + type: Transform + - uid: 9975 + components: + - pos: -33.5,-24.5 + parent: 1 + type: Transform + - uid: 10073 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-17.5 + parent: 1 + type: Transform + - uid: 10949 + components: + - pos: 17.5,-33.5 + parent: 1 + type: Transform + - uid: 10950 + components: + - pos: 20.5,-30.5 + parent: 1 + type: Transform + - uid: 11062 + components: + - pos: 15.5,3.5 + parent: 1 + type: Transform + - uid: 13200 + components: + - pos: -26.5,-18.5 + parent: 1 + type: Transform + - uid: 13340 + components: + - pos: -21.5,-4.5 + parent: 1 + type: Transform + - uid: 13344 + components: + - pos: -18.5,11.5 + parent: 1 + type: Transform + - uid: 13363 + components: + - pos: -37.5,32.5 + parent: 1 + type: Transform + - uid: 13385 + components: + - pos: -17.5,27.5 + parent: 1 + type: Transform + - uid: 13391 + components: + - pos: -28.5,25.5 + parent: 1 + type: Transform + - uid: 13437 + components: + - pos: -22.5,56.5 + parent: 1 + type: Transform + - uid: 13485 + components: + - pos: -14.5,64.5 + parent: 1 + type: Transform + - uid: 13486 + components: + - pos: -12.5,62.5 + parent: 1 + type: Transform + - uid: 13488 + components: + - pos: -13.5,70.5 + parent: 1 + type: Transform + - uid: 14058 + components: + - pos: 39.5,51.5 + parent: 1 + type: Transform + - uid: 14064 + components: + - pos: 12.5,49.5 + parent: 1 + type: Transform + - uid: 14068 + components: + - pos: 16.5,64.5 + parent: 1 + type: Transform +- proto: Matchbox + entities: + - uid: 8280 + components: + - pos: -28.99285,44.33111 + parent: 1 + type: Transform + - uid: 8995 + components: + - pos: -4.367732,11.515931 + parent: 1 + type: Transform + - uid: 13404 + components: + - pos: -23.569286,43.8585 + parent: 1 + type: Transform +- proto: MatchstickSpent + entities: + - uid: 13403 + components: + - pos: -23.342106,43.347622 + parent: 1 + type: Transform +- proto: MaterialCloth + entities: + - uid: 9212 + components: + - pos: 24.961397,4.807591 + parent: 1 + type: Transform +- proto: MaterialDurathread + entities: + - uid: 9211 + components: + - pos: 24.961397,4.401341 + parent: 1 + type: Transform +- proto: MaterialReclaimer + entities: + - uid: 6769 + components: + - pos: 9.5,-26.5 + parent: 1 + type: Transform +- proto: MaterialWoodPlank + entities: + - uid: 18098 + components: + - pos: -32.693626,54.607662 + parent: 1 + type: Transform +- proto: MedicalBed + entities: + - uid: 6383 + components: + - pos: 2.5,29.5 + parent: 1 + type: Transform + - uid: 9368 + components: + - pos: 2.5,31.5 + parent: 1 + type: Transform + - uid: 9369 + components: + - pos: 2.5,34.5 + parent: 1 + type: Transform +- proto: MedicalTechFab + entities: + - uid: 6389 + components: + - pos: 8.5,26.5 + parent: 1 + type: Transform +- proto: MedkitAdvancedFilled + entities: + - uid: 8085 + components: + - pos: 6.6862106,79.9808 + parent: 1 + type: Transform + - uid: 16375 + components: + - pos: -10.381355,48.62417 + parent: 1 + type: Transform +- proto: MedkitBruteFilled + entities: + - uid: 8521 + components: + - pos: 12.53402,24.572369 + parent: 1 + type: Transform +- proto: MedkitBurnFilled + entities: + - uid: 8522 + components: + - pos: 12.548221,24.288546 + parent: 1 + type: Transform +- proto: MedkitCombatFilled + entities: + - uid: 7671 + components: + - pos: -24.283842,-32.51983 + parent: 1 + type: Transform +- proto: MedkitFilled + entities: + - uid: 8523 + components: + - pos: 12.53402,24.033106 + parent: 1 + type: Transform +- proto: MedkitOxygenFilled + entities: + - uid: 8086 + components: + - pos: 6.45903,79.668594 + parent: 1 + type: Transform + - uid: 8524 + components: + - pos: 12.548221,23.749285 + parent: 1 + type: Transform +- proto: MedkitRadiationFilled + entities: + - uid: 8525 + components: + - pos: 12.548221,23.451271 + parent: 1 + type: Transform +- proto: MedkitToxinFilled + entities: + - uid: 8526 + components: + - pos: 12.548221,23.167448 + parent: 1 + type: Transform +- proto: MicrophoneInstrument + entities: + - uid: 18256 + components: + - rot: 1.5707963267948966 rad + pos: -7.4394073,-2.5350158 + parent: 1 + type: Transform +- proto: MinimoogInstrument + entities: + - uid: 9933 + components: + - pos: -22.5,-28.5 + parent: 1 + type: Transform +- proto: Mirror + entities: + - uid: 10098 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-39.5 + parent: 1 + type: Transform + - uid: 10105 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-39.5 + parent: 1 + type: Transform + - uid: 13489 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,70.5 + parent: 1 + type: Transform +- proto: MonkeyCubeBox + entities: + - uid: 7121 + components: + - pos: -13.5745945,28.466234 + parent: 1 + type: Transform +- proto: MopBucket + entities: + - uid: 4019 + components: + - pos: 22.417683,-3.5983407 + parent: 1 + type: Transform + - uid: 17276 + components: + - pos: -23.497051,-11.512519 + parent: 1 + type: Transform + - uid: 18195 + components: + - pos: 18.47802,-5.4857326 + parent: 1 + type: Transform +- proto: MopItem + entities: + - uid: 4020 + components: + - pos: 22.389286,-3.6267226 + parent: 1 + type: Transform + - uid: 17270 + components: + - pos: -23.582245,-13.364458 + parent: 1 + type: Transform + - uid: 17271 + components: + - pos: -23.433157,-13.470892 + parent: 1 + type: Transform + - uid: 18196 + components: + - pos: 18.457188,-5.589899 + parent: 1 + type: Transform +- proto: Morgue + entities: + - uid: 6100 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,33.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 6105 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,34.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 6906 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,32.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 6908 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,33.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 7270 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,32.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 8421 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,34.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: MouseTimedSpawner + entities: + - uid: 18209 + components: + - pos: 36.5,-15.5 + parent: 1 + type: Transform +- proto: Multitool + entities: + - uid: 6595 + components: + - pos: -6.480236,24.566202 + parent: 1 + type: Transform + - uid: 8077 + components: + - pos: -3.4883027,82.77587 + parent: 1 + type: Transform + - uid: 8656 + components: + - pos: -23.455519,20.623178 + parent: 1 + type: Transform + - uid: 13446 + components: + - pos: -37.556957,54.69298 + parent: 1 + type: Transform + - uid: 14047 + components: + - pos: 38.328133,54.646866 + parent: 1 + type: Transform +- proto: NettleSeeds + entities: + - uid: 10967 + components: + - pos: 36.511932,-17.276615 + parent: 1 + type: Transform +- proto: NetworkConfigurator + entities: + - uid: 3022 + components: + - pos: 7.40583,-11.399742 + parent: 1 + type: Transform + - uid: 7432 + components: + - pos: 12.35541,-11.368492 + parent: 1 + type: Transform + - uid: 7433 + components: + - pos: -11.6948395,-19.44185 + parent: 1 + type: Transform + - uid: 7434 + components: + - pos: -13.616468,-33.96476 + parent: 1 + type: Transform + - uid: 7435 + components: + - pos: 8.562072,-32.386993 + parent: 1 + type: Transform + - uid: 7436 + components: + - pos: -9.608111,27.948849 + parent: 1 + type: Transform + - uid: 7437 + components: + - pos: -6.7244835,21.503235 + parent: 1 + type: Transform + - uid: 7438 + components: + - pos: -10.361936,34.69222 + parent: 1 + type: Transform +- proto: NitrogenCanister + entities: + - uid: 3027 + components: + - pos: 0.5,-21.5 + parent: 1 + type: Transform + - uid: 3040 + components: + - pos: -15.5,-28.5 + parent: 1 + type: Transform + - uid: 3041 + components: + - pos: -15.5,-29.5 + parent: 1 + type: Transform + - uid: 6914 + components: + - pos: 26.5,31.5 + parent: 1 + type: Transform + - uid: 10064 + components: + - pos: -32.5,-14.5 + parent: 1 + type: Transform + - uid: 10091 + components: + - pos: -17.5,-27.5 + parent: 1 + type: Transform + - uid: 10121 + components: + - pos: 32.5,-23.5 + parent: 1 + type: Transform + - uid: 11052 + components: + - pos: 21.5,-0.5 + parent: 1 + type: Transform + - uid: 13316 + components: + - pos: -28.5,-4.5 + parent: 1 + type: Transform + - uid: 13354 + components: + - pos: -35.5,32.5 + parent: 1 + type: Transform + - uid: 13378 + components: + - pos: -26.5,27.5 + parent: 1 + type: Transform + - uid: 13417 + components: + - pos: -18.5,60.5 + parent: 1 + type: Transform + - uid: 14001 + components: + - pos: 13.5,64.5 + parent: 1 + type: Transform + - uid: 14014 + components: + - pos: 8.5,40.5 + parent: 1 + type: Transform + - uid: 14036 + components: + - pos: 26.5,56.5 + parent: 1 + type: Transform +- proto: NitrousOxideCanister + entities: + - uid: 3029 + components: + - pos: 0.5,-25.5 + parent: 1 + type: Transform + - uid: 3043 + components: + - pos: -14.5,-27.5 + parent: 1 + type: Transform + - uid: 6590 + components: + - pos: -11.5,32.5 + parent: 1 + type: Transform +- proto: NitrousOxideTankFilled + entities: + - uid: 9038 + components: + - pos: 16.501478,27.555553 + parent: 1 + type: Transform +- proto: NuclearBomb + entities: + - uid: 7250 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,48.5 + parent: 1 + type: Transform +- proto: OperatingTable + entities: + - uid: 4334 + components: + - pos: -21.5,33.5 + parent: 1 + type: Transform + - uid: 8432 + components: + - pos: 19.5,27.5 + parent: 1 + type: Transform +- proto: OreProcessor + entities: + - uid: 4128 + components: + - pos: -36.5,23.5 + parent: 1 + type: Transform +- proto: OxygenCanister + entities: + - uid: 147 + components: + - pos: -40.5,21.5 + parent: 1 + type: Transform + - uid: 3026 + components: + - pos: 0.5,-19.5 + parent: 1 + type: Transform + - uid: 3038 + components: + - pos: -15.5,-26.5 + parent: 1 + type: Transform + - uid: 3039 + components: + - pos: -15.5,-27.5 + parent: 1 + type: Transform + - uid: 6912 + components: + - pos: 10.5,34.5 + parent: 1 + type: Transform + - uid: 6916 + components: + - pos: 27.5,31.5 + parent: 1 + type: Transform + - uid: 10065 + components: + - pos: -33.5,-14.5 + parent: 1 + type: Transform + - uid: 10090 + components: + - pos: -17.5,-26.5 + parent: 1 + type: Transform + - uid: 10120 + components: + - pos: 32.5,-22.5 + parent: 1 + type: Transform + - uid: 11048 + components: + - pos: 22.5,-0.5 + parent: 1 + type: Transform + - uid: 13315 + components: + - pos: -28.5,-3.5 + parent: 1 + type: Transform + - uid: 13353 + components: + - pos: -35.5,31.5 + parent: 1 + type: Transform + - uid: 13379 + components: + - pos: -25.5,27.5 + parent: 1 + type: Transform + - uid: 13418 + components: + - pos: -18.5,59.5 + parent: 1 + type: Transform + - uid: 14002 + components: + - pos: 14.5,64.5 + parent: 1 + type: Transform + - uid: 14015 + components: + - pos: 9.5,40.5 + parent: 1 + type: Transform + - uid: 14035 + components: + - pos: 27.5,56.5 + parent: 1 + type: Transform + - uid: 17654 + components: + - pos: 11.5,-41.5 + parent: 1 + type: Transform +- proto: PaintingEmpty + entities: + - uid: 18036 + components: + - rot: 3.141592653589793 rad + pos: -4.5,72.5 + parent: 1 + type: Transform +- proto: PaintingSadClown + entities: + - uid: 8185 + components: + - pos: -16.5,2.5 + parent: 1 + type: Transform +- proto: PaperBin10 + entities: + - uid: 9223 + components: + - pos: 27.5,2.5 + parent: 1 + type: Transform +- proto: PaperBin5 + entities: + - uid: 7287 + components: + - pos: 3.5,60.5 + parent: 1 + type: Transform + - uid: 8063 + components: + - pos: -0.5,80.5 + parent: 1 + type: Transform + - uid: 18178 + components: + - pos: -35.5,9.5 + parent: 1 + type: Transform +- proto: PaperCaptainsThoughts + entities: + - uid: 6809 + components: + - pos: -6.583637,72.70018 + parent: 1 + type: Transform + - uid: 8075 + components: + - pos: -6.441649,72.586655 + parent: 1 + type: Transform + - uid: 8076 + components: + - pos: -6.32806,72.44474 + parent: 1 + type: Transform +- proto: PaperOffice + entities: + - uid: 1932 + components: + - pos: 8.646071,57.523205 + parent: 1 + type: Transform + - uid: 1933 + components: + - pos: 8.354404,57.689873 + parent: 1 + type: Transform + - uid: 3189 + components: + - pos: 42.97566,50.574673 + parent: 1 + type: Transform + - uid: 6848 + components: + - pos: 43.131844,50.759155 + parent: 1 + type: Transform + - uid: 7031 + components: + - pos: -25.565134,3.6301482 + parent: 1 + type: Transform + - uid: 7032 + components: + - pos: -25.309555,3.6869118 + parent: 1 + type: Transform + - uid: 7033 + components: + - pos: -25.36635,3.4598548 + parent: 1 + type: Transform + - uid: 8109 + components: + - pos: 5.1594477,71.75358 + parent: 1 + type: Transform + - uid: 8110 + components: + - pos: 5.528614,71.32784 + parent: 1 + type: Transform + - uid: 8111 + components: + - pos: 6.4941316,73.59842 + parent: 1 + type: Transform + - uid: 8112 + components: + - pos: 4.4211106,72.406364 + parent: 1 + type: Transform + - uid: 8113 + components: + - pos: 5.6422024,63.981495 + parent: 1 + type: Transform + - uid: 8114 + components: + - pos: 5.30143,63.58415 + parent: 1 + type: Transform + - uid: 8234 + components: + - pos: -19.304815,52.96929 + parent: 1 + type: Transform + - uid: 8235 + components: + - pos: -19.333212,52.51518 + parent: 1 + type: Transform + - uid: 8236 + components: + - pos: -12.631387,56.034573 + parent: 1 + type: Transform + - uid: 8237 + components: + - pos: -12.489398,55.438545 + parent: 1 + type: Transform + - uid: 8285 + components: + - pos: -28.742027,44.07567 + parent: 1 + type: Transform + - uid: 8286 + components: + - pos: -28.869816,43.97633 + parent: 1 + type: Transform + - uid: 8287 + components: + - pos: -29.0544,44.104053 + parent: 1 + type: Transform + - uid: 8474 + components: + - pos: 20.335289,40.984818 + parent: 1 + type: Transform + - uid: 8475 + components: + - pos: 20.56247,40.857098 + parent: 1 + type: Transform + - uid: 8476 + components: + - pos: 20.732855,40.89967 + parent: 1 + type: Transform + - uid: 8494 + components: + - pos: 15.377507,32.661785 + parent: 1 + type: Transform + - uid: 8495 + components: + - pos: 15.56209,32.61921 + parent: 1 + type: Transform + - uid: 8563 + components: + - pos: 12.328677,19.682583 + parent: 1 + type: Transform + - uid: 8564 + components: + - pos: 12.513262,19.512291 + parent: 1 + type: Transform + - uid: 9108 + components: + - pos: 5.647646,-25.362396 + parent: 1 + type: Transform + - uid: 9109 + components: + - pos: 5.376813,-25.591562 + parent: 1 + type: Transform + - uid: 9180 + components: + - pos: 13.647936,-12.608375 + parent: 1 + type: Transform + - uid: 9181 + components: + - pos: 13.41877,-12.212542 + parent: 1 + type: Transform + - uid: 9220 + components: + - pos: 25.298811,4.502818 + parent: 1 + type: Transform + - uid: 9221 + components: + - pos: 25.423811,4.7111516 + parent: 1 + type: Transform + - uid: 9512 + components: + - pos: 13.562738,57.689873 + parent: 1 + type: Transform + - uid: 9705 + components: + - pos: -35.3369,12.601174 + parent: 1 + type: Transform + - uid: 9706 + components: + - pos: -35.4619,12.476174 + parent: 1 + type: Transform + - uid: 9917 + components: + - rot: -1.5707963267948966 rad + pos: -19.778204,-37.45873 + parent: 1 + type: Transform + - uid: 9918 + components: + - rot: -1.5707963267948966 rad + pos: -19.735607,-36.394398 + parent: 1 + type: Transform + - uid: 9919 + components: + - rot: 1.5707963267948966 rad + pos: -19.281246,-36.53631 + parent: 1 + type: Transform + - uid: 9920 + components: + - rot: 1.5707963267948966 rad + pos: -19.267048,-37.1891 + parent: 1 + type: Transform +- proto: ParchisBoard + entities: + - uid: 14026 + components: + - rot: -1.5707963267948966 rad + pos: 27.411753,58.600853 + parent: 1 + type: Transform +- proto: ParticleAcceleratorComputerCircuitboard + entities: + - uid: 4209 + components: + - pos: 18.63736,-21.27349 + parent: 1 + type: Transform +- proto: PartRodMetal + entities: + - uid: 7823 + components: + - pos: -42.102123,21.612055 + parent: 1 + type: Transform + - uid: 9123 + components: + - pos: 13.554044,-21.633276 + parent: 1 + type: Transform + - uid: 9231 + components: + - pos: -25.391773,-12.691285 + parent: 1 + type: Transform +- proto: Pen + entities: + - uid: 8108 + components: + - pos: 5.926182,71.5549 + parent: 1 + type: Transform + - uid: 8248 + components: + - pos: -13.293542,47.371918 + parent: 1 + type: Transform + - uid: 9225 + components: + - pos: 27.715477,2.7528179 + parent: 1 + type: Transform + - uid: 9927 + components: + - rot: -1.5707963267948966 rad + pos: -19.749805,-37.45873 + parent: 1 + type: Transform + - uid: 9928 + components: + - rot: 3.141592653589793 rad + pos: -19.70721,-36.42278 + parent: 1 + type: Transform + - uid: 9929 + components: + - rot: 1.5707963267948966 rad + pos: -19.323843,-36.607265 + parent: 1 + type: Transform + - uid: 9930 + components: + - pos: -19.210253,-37.174908 + parent: 1 + type: Transform +- proto: PenCap + entities: + - uid: 6805 + components: + - pos: -6.5470595,72.51975 + parent: 1 + type: Transform +- proto: PenHop + entities: + - uid: 9273 + components: + - pos: 24.527164,11.786996 + parent: 1 + type: Transform +- proto: PersonalAI + entities: + - uid: 13383 + components: + - flags: SessionSpecific + type: MetaData + - pos: -18.292332,28.360415 + parent: 1 + type: Transform + - uid: 18484 + components: + - flags: SessionSpecific + type: MetaData + - pos: 11.303054,42.624207 + parent: 1 + type: Transform + - uid: 18485 + components: + - flags: SessionSpecific + type: MetaData + - pos: 21.527178,41.51094 + parent: 1 + type: Transform + - uid: 18487 + components: + - flags: SessionSpecific + type: MetaData + - pos: -25.31035,3.6511037 + parent: 1 + type: Transform + - uid: 18488 + components: + - flags: SessionSpecific + type: MetaData + - pos: -3.5730453,83.05458 + parent: 1 + type: Transform +- proto: PhoneInstrument + entities: + - uid: 8098 + components: + - pos: 5.4434214,72.491516 + parent: 1 + type: Transform +- proto: PineappleSeeds + entities: + - uid: 8278 + components: + - pos: -29.408152,44.30471 + parent: 1 + type: Transform + - uid: 9010 + components: + - pos: 5.4492836,6.4890785 + parent: 1 + type: Transform +- proto: PinpointerNuclear + entities: + - uid: 7256 + components: + - pos: 4.3469753,48.675224 + parent: 1 + type: Transform +- proto: PlantBag + entities: + - uid: 9007 + components: + - pos: 5.4701166,7.468245 + parent: 1 + type: Transform +- proto: PlaqueAtmos + entities: + - uid: 17897 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-10.5 + parent: 1 + type: Transform +- proto: PlasmaCanister + entities: + - uid: 3025 + components: + - pos: 0.5,-27.5 + parent: 1 + type: Transform + - uid: 3042 + components: + - pos: -14.5,-26.5 + parent: 1 + type: Transform + - uid: 6591 + components: + - pos: -11.5,31.5 + parent: 1 + type: Transform +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 4363 + components: + - rot: 3.141592653589793 rad + pos: -4.5,61.5 + parent: 1 + type: Transform + - uid: 4364 + components: + - rot: 3.141592653589793 rad + pos: -5.5,61.5 + parent: 1 + type: Transform +- proto: PlasmaTankFilled + entities: + - uid: 8745 + components: + - pos: -12.675064,-41.406155 + parent: 1 + type: Transform +- proto: PlasticFlapsAirtightClear + entities: + - uid: 459 + components: + - pos: -44.5,1.5 + parent: 1 + type: Transform + - uid: 460 + components: + - pos: -41.5,1.5 + parent: 1 + type: Transform + - uid: 461 + components: + - pos: -44.5,5.5 + parent: 1 + type: Transform + - uid: 462 + components: + - pos: -41.5,5.5 + parent: 1 + type: Transform + - uid: 463 + components: + - pos: -36.5,5.5 + parent: 1 + type: Transform + - uid: 3113 + components: + - pos: 19.5,-38.5 + parent: 1 + type: Transform + - uid: 4114 + components: + - pos: -43.5,22.5 + parent: 1 + type: Transform + - uid: 7819 + components: + - pos: -43.5,24.5 + parent: 1 + type: Transform +- proto: PlushieAtmosian + entities: + - uid: 8478 + components: + - pos: -13.428453,-23.76954 + parent: 1 + type: Transform +- proto: PlushieBee + entities: + - uid: 17722 + components: + - pos: 9.581463,59.56483 + parent: 1 + type: Transform +- proto: PlushieLamp + entities: + - uid: 17725 + components: + - pos: -51.39804,40.513123 + parent: 1 + type: Transform +- proto: PlushieLizard + entities: + - uid: 13425 + components: + - pos: -23.497978,60.479168 + parent: 1 + type: Transform + - uid: 17726 + components: + - pos: -18.010359,27.487123 + parent: 1 + type: Transform +- proto: PlushieNar + entities: + - uid: 17727 + components: + - pos: 26.419394,52.54221 + parent: 1 + type: Transform +- proto: PlushieNuke + entities: + - uid: 17728 + components: + - pos: 5.0785303,45.68808 + parent: 1 + type: Transform +- proto: PlushieRatvar + entities: + - uid: 17730 + components: + - pos: -16.502522,-42.49368 + parent: 1 + type: Transform +- proto: PlushieRGBee + entities: + - uid: 11077 + components: + - pos: 20.39902,10.361386 + parent: 1 + type: Transform +- proto: PlushieSharkBlue + entities: + - uid: 17723 + components: + - pos: 21.557299,40.40908 + parent: 1 + type: Transform +- proto: PlushieSharkGrey + entities: + - uid: 17724 + components: + - pos: 24.59281,-5.6428246 + parent: 1 + type: Transform +- proto: PlushieSharkPink + entities: + - uid: 8398 + components: + - pos: 18.47223,47.259647 + parent: 1 + type: Transform + - uid: 17729 + components: + - pos: 24.515884,22.427027 + parent: 1 + type: Transform +- proto: PlushieSlime + entities: + - uid: 17731 + components: + - pos: -30.556288,7.2912984 + parent: 1 + type: Transform +- proto: PlushieSpaceLizard + entities: + - uid: 17732 + components: + - pos: -0.54218626,85.39831 + parent: 1 + type: Transform +- proto: PlushieVox + entities: + - uid: 14042 + components: + - pos: 39.577625,52.527256 + parent: 1 + type: Transform + - uid: 17733 + components: + - pos: -44.60638,-11.570459 + parent: 1 + type: Transform +- proto: PortableFlasher + entities: + - uid: 4382 + components: + - pos: -7.5,62.5 + parent: 1 + type: Transform +- proto: PortableGeneratorJrPacman + entities: + - uid: 1091 + components: + - pos: -28.5,-5.5 + parent: 1 + type: Transform + - uid: 1092 + components: + - pos: -23.5,44.5 + parent: 1 + type: Transform + - uid: 2658 + components: + - pos: 18.5,17.5 + parent: 1 + type: Transform + - uid: 2659 + components: + - pos: -28.5,19.5 + parent: 1 + type: Transform + - uid: 2660 + components: + - pos: 25.5,-22.5 + parent: 1 + type: Transform + - uid: 2685 + components: + - pos: 15.5,4.5 + parent: 1 + type: Transform + - uid: 2690 + components: + - pos: 17.5,50.5 + parent: 1 + type: Transform + - uid: 2691 + components: + - pos: -18.5,58.5 + parent: 1 + type: Transform + - uid: 2692 + components: + - pos: -17.5,-30.5 + parent: 1 + type: Transform + - uid: 2693 + components: + - pos: -38.5,32.5 + parent: 1 + type: Transform + - uid: 2694 + components: + - pos: -35.5,-17.5 + parent: 1 + type: Transform +- proto: PortableGeneratorPacman + entities: + - uid: 4217 + components: + - pos: 9.5,-25.5 + parent: 1 + type: Transform +- proto: PortableGeneratorSuperPacman + entities: + - uid: 8804 + components: + - pos: 0.5,-5.5 + parent: 8756 + type: Transform +- proto: PortableScrubber + entities: + - uid: 4393 + components: + - pos: -9.5,25.5 + parent: 1 + type: Transform + - uid: 8731 + components: + - pos: -14.5,-15.5 + parent: 1 + type: Transform + - uid: 8732 + components: + - pos: -14.5,-14.5 + parent: 1 + type: Transform + - uid: 8737 + components: + - pos: -13.5,-21.5 + parent: 1 + type: Transform +- proto: PosterBroken + entities: + - uid: 18000 + components: + - rot: 3.141592653589793 rad + pos: -13.5,5.5 + parent: 1 + type: Transform +- proto: PosterContrabandAmbrosiaVulgaris + entities: + - uid: 17926 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,8.5 + parent: 1 + type: Transform +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 17898 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-40.5 + parent: 1 + type: Transform +- proto: PosterContrabandBountyHunters + entities: + - uid: 17900 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,45.5 + parent: 1 + type: Transform +- proto: PosterContrabandClown + entities: + - uid: 17920 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-0.5 + parent: 1 + type: Transform +- proto: PosterContrabandDonutCorp + entities: + - uid: 17902 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-4.5 + parent: 1 + type: Transform +- proto: PosterContrabandEAT + entities: + - uid: 17927 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 1 + type: Transform +- proto: PosterContrabandEnergySwords + entities: + - uid: 17921 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-1.5 + parent: 1 + type: Transform +- proto: PosterContrabandFreeDrone + entities: + - uid: 9563 + components: + - pos: -20.5,-11.5 + parent: 1 + type: Transform +- proto: PosterContrabandFunPolice + entities: + - uid: 17990 + components: + - rot: 3.141592653589793 rad + pos: -17.5,39.5 + parent: 1 + type: Transform +- proto: PosterContrabandGreyTide + entities: + - uid: 17904 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,33.5 + parent: 1 + type: Transform + - uid: 18005 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-24.5 + parent: 1 + type: Transform +- proto: PosterContrabandHackingGuide + entities: + - uid: 17903 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,30.5 + parent: 1 + type: Transform +- proto: PosterContrabandHighEffectEngineering + entities: + - uid: 18115 + components: + - pos: 8.5,-16.5 + parent: 1 + type: Transform +- proto: PosterContrabandMissingGloves + entities: + - uid: 17906 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-22.5 + parent: 1 + type: Transform + - uid: 18006 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-24.5 + parent: 1 + type: Transform +- proto: PosterContrabandNuclearDeviceInformational + entities: + - uid: 17917 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,47.5 + parent: 1 + type: Transform +- proto: PosterContrabandVoteWeh + entities: + - uid: 17915 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,24.5 + parent: 1 + type: Transform +- proto: PosterContrabandWehWatches + entities: + - uid: 17916 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,20.5 + parent: 1 + type: Transform +- proto: PosterLegit12Gauge + entities: + - uid: 17924 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,65.5 + parent: 1 + type: Transform +- proto: PosterLegit50thAnniversaryVintageReprint + entities: + - uid: 18089 + components: + - pos: -4.5,33.5 + parent: 1 + type: Transform +- proto: PosterLegitAnatomyPoster + entities: + - uid: 9619 + components: + - pos: 1.5,34.5 + parent: 1 + type: Transform +- proto: PosterLegitBuild + entities: + - uid: 17899 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-32.5 + parent: 1 + type: Transform +- proto: PosterLegitCleanliness + entities: + - uid: 17923 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-6.5 + parent: 1 + type: Transform +- proto: PosterLegitDickGumshue + entities: + - uid: 17901 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,50.5 + parent: 1 + type: Transform +- proto: PosterLegitEnlist + entities: + - uid: 17925 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,63.5 + parent: 1 + type: Transform +- proto: PosterLegitFoamForceAd + entities: + - uid: 17922 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-4.5 + parent: 1 + type: Transform +- proto: PosterLegitHighClassMartini + entities: + - uid: 17919 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,9.5 + parent: 1 + type: Transform +- proto: PosterLegitJustAWeekAway + entities: + - uid: 17905 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-0.5 + parent: 1 + type: Transform +- proto: PosterLegitLoveIan + entities: + - uid: 17918 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,8.5 + parent: 1 + type: Transform +- proto: PosterLegitMime + entities: + - uid: 8169 + components: + - pos: -14.5,5.5 + parent: 1 + type: Transform +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 17907 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,62.5 + parent: 1 + type: Transform + - uid: 17908 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,62.5 + parent: 1 + type: Transform + - uid: 17909 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,78.5 + parent: 1 + type: Transform + - uid: 17910 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,78.5 + parent: 1 + type: Transform +- proto: PosterLegitPDAAd + entities: + - uid: 17911 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,2.5 + parent: 1 + type: Transform +- proto: PosterLegitPeriodicTable + entities: + - uid: 9616 + components: + - pos: 4.5,26.5 + parent: 1 + type: Transform +- proto: PosterLegitSafetyEyeProtection + entities: + - uid: 17912 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-22.5 + parent: 1 + type: Transform +- proto: PosterLegitSafetyInternals + entities: + - uid: 17913 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-37.5 + parent: 1 + type: Transform +- proto: PosterLegitSafetyMothEpi + entities: + - uid: 9618 + components: + - pos: 1.5,31.5 + parent: 1 + type: Transform +- proto: PosterLegitSafetyMothMeth + entities: + - uid: 9617 + components: + - pos: 8.5,25.5 + parent: 1 + type: Transform +- proto: PosterLegitStateLaws + entities: + - uid: 18004 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-13.5 + parent: 1 + type: Transform +- proto: PosterLegitUeNo + entities: + - uid: 17914 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,29.5 + parent: 1 + type: Transform +- proto: PottedPlantRandom + entities: + - uid: 466 + components: + - pos: -49.5,35.5 + parent: 1 + type: Transform + - uid: 1284 + components: + - pos: -47.5,16.5 + parent: 1 + type: Transform + - uid: 4250 + components: + - pos: -30.5,8.5 + parent: 1 + type: Transform + - uid: 6950 + components: + - pos: 21.5,17.5 + parent: 1 + type: Transform + - uid: 8565 + components: + - pos: 9.5,17.5 + parent: 1 + type: Transform + - uid: 8566 + components: + - pos: 13.5,17.5 + parent: 1 + type: Transform + - uid: 8584 + components: + - pos: 14.5,20.5 + parent: 1 + type: Transform + - uid: 9474 + components: + - pos: 46.5,-6.5 + parent: 1 + type: Transform + - uid: 9475 + components: + - pos: 29.5,-0.5 + parent: 1 + type: Transform + - uid: 9476 + components: + - pos: 33.5,-1.5 + parent: 1 + type: Transform + - uid: 9477 + components: + - pos: 46.5,12.5 + parent: 1 + type: Transform + - uid: 9478 + components: + - pos: 48.5,41.5 + parent: 1 + type: Transform + - uid: 9479 + components: + - pos: 45.5,40.5 + parent: 1 + type: Transform + - uid: 9480 + components: + - pos: -42.5,43.5 + parent: 1 + type: Transform + - uid: 9481 + components: + - pos: 9.5,-11.5 + parent: 1 + type: Transform + - uid: 9482 + components: + - pos: -14.5,-13.5 + parent: 1 + type: Transform + - uid: 9483 + components: + - pos: -4.5,9.5 + parent: 1 + type: Transform + - uid: 9485 + components: + - pos: -13.5,3.5 + parent: 1 + type: Transform + - uid: 9495 + components: + - pos: -3.5,46.5 + parent: 1 + type: Transform + - uid: 9496 + components: + - pos: -10.5,52.5 + parent: 1 + type: Transform + - uid: 9497 + components: + - pos: -16.5,47.5 + parent: 1 + type: Transform + - uid: 9498 + components: + - pos: -16.5,51.5 + parent: 1 + type: Transform + - uid: 9499 + components: + - pos: -16.5,56.5 + parent: 1 + type: Transform + - uid: 9500 + components: + - pos: -9.5,60.5 + parent: 1 + type: Transform + - uid: 9501 + components: + - pos: -7.5,78.5 + parent: 1 + type: Transform + - uid: 9502 + components: + - pos: 7.5,70.5 + parent: 1 + type: Transform + - uid: 9503 + components: + - pos: 10.5,66.5 + parent: 1 + type: Transform + - uid: 9535 + components: + - pos: 29.5,9.5 + parent: 1 + type: Transform + - uid: 9543 + components: + - pos: -47.5,38.5 + parent: 1 + type: Transform + - uid: 9711 + components: + - pos: 7.5,38.5 + parent: 1 + type: Transform + - uid: 9713 + components: + - pos: 39.5,36.5 + parent: 1 + type: Transform + - uid: 9714 + components: + - pos: -3.5,19.5 + parent: 1 + type: Transform + - uid: 9715 + components: + - pos: 2.5,19.5 + parent: 1 + type: Transform + - uid: 9716 + components: + - pos: 39.5,-7.5 + parent: 1 + type: Transform + - uid: 9879 + components: + - pos: 32.5,30.5 + parent: 1 + type: Transform + - uid: 9880 + components: + - pos: 32.5,21.5 + parent: 1 + type: Transform + - uid: 9881 + components: + - pos: 23.5,13.5 + parent: 1 + type: Transform + - uid: 9882 + components: + - pos: -40.5,15.5 + parent: 1 + type: Transform + - uid: 9883 + components: + - pos: -38.5,9.5 + parent: 1 + type: Transform + - uid: 9889 + components: + - pos: -19.5,15.5 + parent: 1 + type: Transform + - uid: 9890 + components: + - pos: 13.5,15.5 + parent: 1 + type: Transform + - uid: 16406 + components: + - pos: 1.5,-13.5 + parent: 1 + type: Transform + - uid: 16408 + components: + - pos: -2.5,-13.5 + parent: 1 + type: Transform + - uid: 16653 + components: + - pos: -32.5,27.5 + parent: 1 + type: Transform + - uid: 17301 + components: + - pos: -1.5,24.5 + parent: 1 + type: Transform +- proto: PottedPlantRandomPlastic + entities: + - uid: 4249 + components: + - pos: -25.5,-7.5 + parent: 1 + type: Transform + - uid: 6943 + components: + - pos: 30.5,56.5 + parent: 1 + type: Transform + - uid: 6944 + components: + - pos: 34.5,56.5 + parent: 1 + type: Transform + - uid: 8452 + components: + - pos: -2.5,57.5 + parent: 1 + type: Transform + - uid: 8464 + components: + - pos: 2.5,55.5 + parent: 1 + type: Transform + - uid: 8465 + components: + - pos: 2.5,54.5 + parent: 1 + type: Transform + - uid: 9489 + components: + - pos: 15.5,9.5 + parent: 1 + type: Transform + - uid: 9490 + components: + - pos: 15.5,29.5 + parent: 1 + type: Transform + - uid: 9491 + components: + - pos: 22.5,26.5 + parent: 1 + type: Transform + - uid: 9504 + components: + - pos: 5.5,62.5 + parent: 1 + type: Transform + - uid: 9505 + components: + - pos: 8.5,61.5 + parent: 1 + type: Transform + - uid: 9709 + components: + - pos: -28.5,38.5 + parent: 1 + type: Transform + - uid: 9710 + components: + - pos: -4.5,36.5 + parent: 1 + type: Transform + - uid: 9712 + components: + - pos: 22.5,36.5 + parent: 1 + type: Transform + - uid: 9717 + components: + - pos: 39.5,13.5 + parent: 1 + type: Transform + - uid: 9720 + components: + - pos: -16.5,-16.5 + parent: 1 + type: Transform + - uid: 16536 + components: + - pos: 5.5,52.5 + parent: 1 + type: Transform +- proto: PowerCellHigh + entities: + - uid: 8726 + components: + - pos: -13.77224,-19.431416 + parent: 1 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 6651 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-3.5 + parent: 1 + type: Transform + - uid: 7463 + components: + - pos: 22.5,-22.5 + parent: 1 + type: Transform + - uid: 8062 + components: + - pos: -7.5,80.5 + parent: 1 + type: Transform + - uid: 8182 + components: + - pos: -18.5,53.5 + parent: 1 + type: Transform + - uid: 8346 + components: + - pos: -26.5,29.5 + parent: 1 + type: Transform + - uid: 8419 + components: + - pos: -49.5,44.5 + parent: 1 + type: Transform + - uid: 8709 + components: + - pos: -14.5,-19.5 + parent: 1 + type: Transform + - uid: 8892 + components: + - pos: -1.5,3.5 + parent: 8756 + type: Transform + - uid: 9020 + components: + - pos: 13.5,8.5 + parent: 1 + type: Transform + - uid: 9022 + components: + - pos: -13.5,2.5 + parent: 1 + type: Transform + - uid: 9023 + components: + - pos: 5.5,-13.5 + parent: 1 + type: Transform + - uid: 9083 + components: + - pos: 4.5,-21.5 + parent: 1 + type: Transform + - uid: 9084 + components: + - pos: 13.5,-14.5 + parent: 1 + type: Transform + - uid: 9232 + components: + - pos: -25.5,-13.5 + parent: 1 + type: Transform + - uid: 9307 + components: + - pos: -38.5,8.5 + parent: 1 + type: Transform + - uid: 9372 + components: + - rot: 3.141592653589793 rad + pos: -39.5,19.5 + parent: 1 + type: Transform + - uid: 10642 + components: + - pos: 20.5,41.5 + parent: 1 + type: Transform + - uid: 17417 + components: + - rot: 3.141592653589793 rad + pos: 36.5,6.5 + parent: 1 + type: Transform + - uid: 18497 + components: + - pos: 6.5,52.5 + parent: 1 + type: Transform + - uid: 18498 + components: + - pos: 43.5,41.5 + parent: 1 + type: Transform + - uid: 18499 + components: + - pos: 30.5,-10.5 + parent: 1 + type: Transform +- proto: Poweredlight + entities: + - uid: 1272 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,37.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1293 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,41.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2001 + components: + - pos: 43.5,-7.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3733 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4031 + components: + - pos: 8.5,20.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 4032 + components: + - pos: 3.5,34.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 4063 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 4360 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-22.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 4361 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-35.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 6085 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-2.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 6382 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,23.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 6517 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-10.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6693 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,28.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 6706 + components: + - pos: 14.5,20.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 7809 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,20.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 7811 + components: + - rot: 3.141592653589793 rad + pos: -46.5,30.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 7813 + components: + - rot: 3.141592653589793 rad + pos: -38.5,17.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 7935 + components: + - pos: -46.5,25.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 8161 + components: + - pos: -40.5,28.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 8641 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,32.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8642 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,33.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8643 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,24.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8644 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,24.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8645 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,20.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8646 + components: + - pos: -8.5,19.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8647 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,18.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8648 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,28.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8673 + components: + - pos: 11.5,15.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 8876 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 8756 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8877 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 8756 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8878 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 8756 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8879 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 8756 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8880 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 8756 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9615 + components: + - pos: 8.5,28.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 14073 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14074 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-18.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14075 + components: + - pos: -23.5,-11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14076 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14077 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-5.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14078 + components: + - pos: -35.5,-0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14079 + components: + - pos: -34.5,7.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14080 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,10.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14081 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-2.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14082 + components: + - pos: -39.5,-4.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14083 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14088 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,25.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14089 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,26.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14090 + components: + - pos: -44.5,15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14095 + components: + - rot: 3.141592653589793 rad + pos: -26.5,36.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14097 + components: + - pos: -14.5,38.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14098 + components: + - rot: 3.141592653589793 rad + pos: -2.5,36.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14099 + components: + - rot: 3.141592653589793 rad + pos: 1.5,36.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14100 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,29.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14101 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,21.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14102 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,27.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14103 + components: + - rot: 3.141592653589793 rad + pos: -16.5,13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14104 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,19.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14105 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,19.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14106 + components: + - rot: 3.141592653589793 rad + pos: 4.5,13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14107 + components: + - rot: 3.141592653589793 rad + pos: -5.5,13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14108 + components: + - rot: 3.141592653589793 rad + pos: -25.5,13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14109 + components: + - rot: 3.141592653589793 rad + pos: 17.5,13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14110 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,20.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14111 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,20.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14112 + components: + - rot: 3.141592653589793 rad + pos: 29.5,13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14113 + components: + - pos: 44.5,15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14118 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14119 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-2.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14120 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,2.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14122 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,5.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14123 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14124 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14125 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-4.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14126 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14127 + components: + - pos: -5.5,-7.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14128 + components: + - pos: 1.5,-11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14129 + components: + - pos: -2.5,-11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14130 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-14.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14131 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-14.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14132 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-18.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14133 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-19.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14134 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-25.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14135 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-28.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14136 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-39.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14137 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-29.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14138 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-34.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14139 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-40.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14140 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-40.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14142 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-32.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14143 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-28.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14144 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-20.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14145 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-24.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14146 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-38.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14147 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-18.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14148 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-28.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14149 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-24.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14150 + components: + - pos: -11.5,-31.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14161 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-38.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14163 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14166 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14167 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,10.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14173 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14176 + components: + - rot: 3.141592653589793 rad + pos: 25.5,31.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14177 + components: + - pos: 20.5,43.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14178 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,43.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14179 + components: + - pos: 42.5,44.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14180 + components: + - rot: -1.5707963267948966 rad + pos: 48.5,39.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14185 + components: + - pos: 10.5,61.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14186 + components: + - rot: 3.141592653589793 rad + pos: 11.5,52.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14187 + components: + - pos: 1.5,57.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14188 + components: + - rot: 3.141592653589793 rad + pos: -2.5,52.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14190 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,40.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14191 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,49.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14192 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,47.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14193 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,51.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14194 + components: + - pos: -15.5,46.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14195 + components: + - rot: 3.141592653589793 rad + pos: -10.5,52.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14200 + components: + - rot: 3.141592653589793 rad + pos: -17.5,40.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14201 + components: + - pos: -15.5,60.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14202 + components: + - pos: -5.5,64.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14203 + components: + - pos: -8.5,64.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14204 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,69.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14205 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,62.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14206 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,62.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14207 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,55.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14209 + components: + - pos: -32.5,49.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14210 + components: + - rot: 3.141592653589793 rad + pos: -33.5,42.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14211 + components: + - pos: -27.5,49.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14212 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,49.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14216 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,19.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14217 + components: + - pos: -36.5,38.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14218 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,32.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 15385 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 15400 + components: + - rot: 3.141592653589793 rad + pos: -37.5,13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 15401 + components: + - rot: 3.141592653589793 rad + pos: -44.5,36.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 15402 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,31.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17250 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-22.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17251 + components: + - pos: 10.5,38.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17252 + components: + - rot: 3.141592653589793 rad + pos: 20.5,36.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17255 + components: + - pos: 37.5,38.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17256 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,47.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17257 + components: + - rot: 3.141592653589793 rad + pos: 2.5,66.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17258 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17259 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-12.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17268 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,14.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17304 + components: + - rot: 3.141592653589793 rad + pos: -39.5,57.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17305 + components: + - rot: 3.141592653589793 rad + pos: 38.5,57.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17306 + components: + - rot: 3.141592653589793 rad + pos: 32.5,58.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17307 + components: + - rot: 3.141592653589793 rad + pos: 25.5,60.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17308 + components: + - rot: 3.141592653589793 rad + pos: 19.5,66.5 + parent: 1 + type: Transform + - uid: 17309 + components: + - rot: 3.141592653589793 rad + pos: 13.5,72.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17310 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,81.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17311 + components: + - rot: 3.141592653589793 rad + pos: -0.5,85.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17314 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,81.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17318 + components: + - rot: 3.141592653589793 rad + pos: -14.5,72.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17319 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,75.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17320 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,75.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17321 + components: + - rot: 3.141592653589793 rad + pos: -20.5,66.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17322 + components: + - rot: 3.141592653589793 rad + pos: -26.5,60.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17323 + components: + - rot: 3.141592653589793 rad + pos: -33.5,58.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17324 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,52.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17325 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,45.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17326 + components: + - rot: 1.5707963267948966 rad + pos: 50.5,45.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17327 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,52.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17650 + components: + - pos: 9.5,-43.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17651 + components: + - pos: -10.5,-43.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17860 + components: + - pos: 22.5,-32.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 18062 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-35.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 18063 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-41.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 18065 + components: + - pos: 38.5,-19.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 18067 + components: + - pos: 33.5,-26.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 18068 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-41.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 18070 + components: + - pos: -24.5,-29.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 18071 + components: + - pos: -37.5,-23.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 18076 + components: + - pos: -44.5,-11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 18191 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 18192 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,46.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 18193 + components: + - pos: 2.5,47.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 18257 + components: + - rot: 3.141592653589793 rad + pos: 37.5,8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 18258 + components: + - pos: 37.5,-0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 18424 + components: + - rot: 3.141592653589793 rad + pos: -36.5,1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 18425 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 18426 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 18429 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,31.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 18440 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredlightLED + entities: + - uid: 8577 + components: + - rot: 3.141592653589793 rad + pos: 5.5,22.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8578 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,32.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8581 + components: + - rot: 3.141592653589793 rad + pos: 19.5,26.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8638 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,20.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8639 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,23.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8649 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,32.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9592 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,32.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11365 + components: + - rot: 3.141592653589793 rad + pos: -0.5,76.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11368 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,32.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13493 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,72.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13494 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,81.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13495 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,81.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13496 + components: + - rot: 3.141592653589793 rad + pos: -0.5,70.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredSmallLight + entities: + - uid: 610 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,9.5 + parent: 1 + type: Transform + - uid: 616 + components: + - rot: 3.141592653589793 rad + pos: -25.5,5.5 + parent: 1 + type: Transform + - uid: 789 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,10.5 + parent: 1 + type: Transform + - uid: 3726 + components: + - rot: 3.141592653589793 rad + pos: -42.5,1.5 + parent: 1 + type: Transform + - uid: 4066 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,2.5 + parent: 1 + type: Transform + - uid: 6198 + components: + - pos: 51.5,-7.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6208 + components: + - rot: 3.141592653589793 rad + pos: 51.5,-14.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6845 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,49.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6854 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,44.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7670 + components: + - pos: -27.5,-24.5 + parent: 1 + type: Transform + - uid: 7707 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 7802 + components: + - pos: -6.5,74.5 + parent: 1 + type: Transform + - uid: 8342 + components: + - pos: 16.5,-3.5 + parent: 1 + type: Transform + - uid: 8364 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,44.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8366 + components: + - pos: 25.5,58.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8381 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,47.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8382 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,49.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8383 + components: + - pos: 25.5,54.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8384 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,48.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8385 + components: + - rot: 3.141592653589793 rad + pos: 28.5,43.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8386 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,48.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8387 + components: + - rot: 3.141592653589793 rad + pos: 33.5,43.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8404 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,45.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8406 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,41.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8407 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,46.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8579 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,33.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8580 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,29.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8585 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,33.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8631 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,21.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9250 + components: + - pos: -16.5,5.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9251 + components: + - pos: -16.5,1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9252 + components: + - pos: -16.5,-2.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9841 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9842 + components: + - pos: -52.5,-7.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9843 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9916 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-35.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10080 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10081 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-12.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10082 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-21.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10083 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-28.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10084 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-25.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11043 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-14.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11044 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-17.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11045 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-23.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11046 + components: + - pos: 20.5,-29.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 12821 + components: + - rot: 3.141592653589793 rad + pos: 15.5,63.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 12822 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,51.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 12823 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,42.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 12824 + components: + - pos: 32.5,56.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 12825 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,55.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13159 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,3.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13233 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,23.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13300 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-2.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13301 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-16.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13302 + components: + - pos: -24.5,-5.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13303 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,4.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13365 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,27.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13460 + components: + - pos: -41.5,51.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13461 + components: + - pos: -20.5,57.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13462 + components: + - rot: 3.141592653589793 rad + pos: -14.5,62.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13490 + components: + - rot: 3.141592653589793 rad + pos: -8.5,69.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14072 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14085 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,14.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14092 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,37.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14114 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,17.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14115 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,17.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14116 + components: + - rot: 3.141592653589793 rad + pos: 51.5,15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14117 + components: + - pos: 51.5,13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14141 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-34.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14151 + components: + - pos: -0.5,-15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14152 + components: + - pos: -4.5,-15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14153 + components: + - pos: 3.5,-15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14154 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-24.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14155 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-29.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14156 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-27.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14157 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-25.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14158 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-23.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14159 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-21.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14160 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-19.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14162 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-40.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14164 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-46.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14168 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-5.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14169 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-5.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14170 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14171 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14172 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14174 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14175 + components: + - pos: -10.5,8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14181 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,34.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14182 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,34.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14183 + components: + - pos: 51.5,36.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14184 + components: + - rot: 3.141592653589793 rad + pos: 51.5,38.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14189 + components: + - pos: -38.5,46.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14196 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,41.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14197 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,41.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14198 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,41.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14199 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,41.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14208 + components: + - rot: 3.141592653589793 rad + pos: -38.5,42.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14213 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,52.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14214 + components: + - pos: -10.5,4.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 15383 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17237 + components: + - pos: 36.5,3.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17240 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17241 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17242 + components: + - pos: -5.5,4.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17243 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17244 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17245 + components: + - pos: 16.5,6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17246 + components: + - pos: -8.5,11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17247 + components: + - pos: -31.5,-11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17248 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-40.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17249 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-40.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17253 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,40.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17254 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,40.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 17303 + components: + - rot: 3.141592653589793 rad + pos: -38.5,48.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 18093 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,47.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 18136 + components: + - rot: 3.141592653589793 rad + pos: 33.5,51.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 18137 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,26.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 18138 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,20.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 18139 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,43.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredSmallLightEmpty + entities: + - uid: 12021 + components: + - pos: -33.5,56.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 12022 + components: + - rot: 3.141592653589793 rad + pos: -28.5,52.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: Protolathe + entities: + - uid: 3553 + components: + - pos: -3.5,24.5 + parent: 1 + type: Transform +- proto: Rack + entities: + - uid: 1176 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,11.5 + parent: 1 + type: Transform + - uid: 1229 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,10.5 + parent: 1 + type: Transform + - uid: 1240 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,11.5 + parent: 1 + type: Transform + - uid: 2392 + components: + - pos: 8.5,-11.5 + parent: 1 + type: Transform + - uid: 4074 + components: + - pos: 9.5,34.5 + parent: 1 + type: Transform + - uid: 4184 + components: + - pos: 10.5,-18.5 + parent: 1 + type: Transform + - uid: 4356 + components: + - pos: -7.5,64.5 + parent: 1 + type: Transform + - uid: 4442 + components: + - pos: -28.5,32.5 + parent: 1 + type: Transform + - uid: 4443 + components: + - pos: -28.5,31.5 + parent: 1 + type: Transform + - uid: 6552 + components: + - pos: -27.5,-22.5 + parent: 1 + type: Transform + - uid: 6913 + components: + - pos: 25.5,31.5 + parent: 1 + type: Transform + - uid: 7098 + components: + - pos: -11.5,-19.5 + parent: 1 + type: Transform + - uid: 7099 + components: + - pos: -10.5,-19.5 + parent: 1 + type: Transform + - uid: 7154 + components: + - pos: 13.5,-41.5 + parent: 1 + type: Transform + - uid: 7251 + components: + - pos: 4.5,48.5 + parent: 1 + type: Transform + - uid: 7767 + components: + - pos: -19.5,40.5 + parent: 1 + type: Transform + - uid: 7888 + components: + - pos: 41.5,42.5 + parent: 1 + type: Transform + - uid: 8739 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-41.5 + parent: 1 + type: Transform + - uid: 9303 + components: + - pos: -34.5,2.5 + parent: 1 + type: Transform + - uid: 9450 + components: + - pos: -45.5,-7.5 + parent: 1 + type: Transform + - uid: 9451 + components: + - pos: -50.5,-6.5 + parent: 1 + type: Transform + - uid: 9897 + components: + - pos: 10.5,48.5 + parent: 1 + type: Transform + - uid: 9965 + components: + - pos: -24.5,-24.5 + parent: 1 + type: Transform + - uid: 9966 + components: + - pos: -20.5,-24.5 + parent: 1 + type: Transform + - uid: 10074 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-13.5 + parent: 1 + type: Transform + - uid: 10075 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-17.5 + parent: 1 + type: Transform + - uid: 10087 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-33.5 + parent: 1 + type: Transform + - uid: 10094 + components: + - pos: -17.5,-29.5 + parent: 1 + type: Transform + - uid: 10107 + components: + - pos: -23.5,-27.5 + parent: 1 + type: Transform + - uid: 10125 + components: + - pos: 26.5,-22.5 + parent: 1 + type: Transform + - uid: 10133 + components: + - pos: 29.5,-16.5 + parent: 1 + type: Transform + - uid: 10875 + components: + - pos: 28.5,-18.5 + parent: 1 + type: Transform + - uid: 11059 + components: + - pos: 15.5,2.5 + parent: 1 + type: Transform + - uid: 11066 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,8.5 + parent: 1 + type: Transform + - uid: 11070 + components: + - pos: 19.5,4.5 + parent: 1 + type: Transform + - uid: 11081 + components: + - pos: 13.5,5.5 + parent: 1 + type: Transform + - uid: 13156 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,20.5 + parent: 1 + type: Transform + - uid: 13162 + components: + - pos: 14.5,25.5 + parent: 1 + type: Transform + - uid: 13182 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-3.5 + parent: 1 + type: Transform + - uid: 13199 + components: + - pos: -26.5,-18.5 + parent: 1 + type: Transform + - uid: 13318 + components: + - pos: -21.5,-3.5 + parent: 1 + type: Transform + - uid: 13321 + components: + - pos: -20.5,6.5 + parent: 1 + type: Transform + - uid: 13328 + components: + - pos: -9.5,10.5 + parent: 1 + type: Transform + - uid: 13360 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,32.5 + parent: 1 + type: Transform + - uid: 13411 + components: + - pos: -25.5,51.5 + parent: 1 + type: Transform + - uid: 13412 + components: + - pos: -22.5,55.5 + parent: 1 + type: Transform + - uid: 13414 + components: + - pos: -14.5,64.5 + parent: 1 + type: Transform + - uid: 13443 + components: + - pos: 38.5,54.5 + parent: 1 + type: Transform + - uid: 13444 + components: + - pos: -37.5,54.5 + parent: 1 + type: Transform + - uid: 13458 + components: + - pos: -41.5,50.5 + parent: 1 + type: Transform + - uid: 13473 + components: + - pos: -15.5,64.5 + parent: 1 + type: Transform + - uid: 13854 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,52.5 + parent: 1 + type: Transform + - uid: 14007 + components: + - pos: 16.5,59.5 + parent: 1 + type: Transform + - uid: 14017 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,40.5 + parent: 1 + type: Transform + - uid: 14020 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,50.5 + parent: 1 + type: Transform + - uid: 14031 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,58.5 + parent: 1 + type: Transform + - uid: 14040 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,56.5 + parent: 1 + type: Transform +- proto: RadioHandheld + entities: + - uid: 2144 + components: + - pos: -42.652122,26.537056 + parent: 1 + type: Transform + - uid: 7397 + components: + - pos: -14.804126,50.394012 + parent: 1 + type: Transform + - uid: 9085 + components: + - pos: 6.5608225,-21.29419 + parent: 1 + type: Transform + - uid: 13400 + components: + - pos: -23.682875,43.57468 + parent: 1 + type: Transform + - uid: 18489 + components: + - pos: 18.316277,50.63189 + parent: 1 + type: Transform + - uid: 18490 + components: + - pos: 12.759903,-11.244627 + parent: 1 + type: Transform + - uid: 18491 + components: + - pos: 12.944487,-11.471684 + parent: 1 + type: Transform + - uid: 18492 + components: + - pos: -6.2471366,24.59688 + parent: 1 + type: Transform + - uid: 18494 + components: + - pos: -16.067932,58.611973 + parent: 1 + type: Transform + - uid: 18495 + components: + - pos: -16.426508,49.945545 + parent: 1 + type: Transform +- proto: Railing + entities: + - uid: 327 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,76.5 + parent: 1 + type: Transform + - uid: 525 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-5.5 + parent: 1 + type: Transform + - uid: 3798 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-11.5 + parent: 1 + type: Transform + - uid: 4118 + components: + - pos: -44.5,25.5 + parent: 1 + type: Transform + - uid: 4267 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,76.5 + parent: 1 + type: Transform + - uid: 6892 + components: + - pos: 22.5,20.5 + parent: 1 + type: Transform + - uid: 6893 + components: + - pos: 21.5,20.5 + parent: 1 + type: Transform + - uid: 6894 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,21.5 + parent: 1 + type: Transform + - uid: 6895 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,22.5 + parent: 1 + type: Transform + - uid: 6896 + components: + - rot: 3.141592653589793 rad + pos: 27.5,18.5 + parent: 1 + type: Transform + - uid: 6897 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,17.5 + parent: 1 + type: Transform + - uid: 8292 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,44.5 + parent: 1 + type: Transform + - uid: 8293 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,45.5 + parent: 1 + type: Transform + - uid: 8294 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,46.5 + parent: 1 + type: Transform + - uid: 8296 + components: + - pos: -32.5,47.5 + parent: 1 + type: Transform + - uid: 8297 + components: + - rot: 3.141592653589793 rad + pos: -32.5,43.5 + parent: 1 + type: Transform + - uid: 8298 + components: + - rot: 3.141592653589793 rad + pos: -34.5,43.5 + parent: 1 + type: Transform + - uid: 8299 + components: + - pos: -34.5,47.5 + parent: 1 + type: Transform + - uid: 8300 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,46.5 + parent: 1 + type: Transform + - uid: 8302 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,45.5 + parent: 1 + type: Transform + - uid: 8303 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,44.5 + parent: 1 + type: Transform + - uid: 8735 + components: + - pos: -14.5,-13.5 + parent: 1 + type: Transform + - uid: 8736 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-13.5 + parent: 1 + type: Transform + - uid: 9041 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,40.5 + parent: 1 + type: Transform + - uid: 9042 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,40.5 + parent: 1 + type: Transform + - uid: 9043 + components: + - rot: 3.141592653589793 rad + pos: -46.5,41.5 + parent: 1 + type: Transform + - uid: 9044 + components: + - rot: 3.141592653589793 rad + pos: -45.5,41.5 + parent: 1 + type: Transform + - uid: 9721 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,40.5 + parent: 1 + type: Transform + - uid: 9722 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,41.5 + parent: 1 + type: Transform + - uid: 9723 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,40.5 + parent: 1 + type: Transform + - uid: 9724 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,41.5 + parent: 1 + type: Transform + - uid: 17765 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-4.5 + parent: 1 + type: Transform + - uid: 17766 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-5.5 + parent: 1 + type: Transform + - uid: 17767 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-3.5 + parent: 1 + type: Transform + - uid: 17769 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,11.5 + parent: 1 + type: Transform + - uid: 17770 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,10.5 + parent: 1 + type: Transform + - uid: 17773 + components: + - pos: 35.5,9.5 + parent: 1 + type: Transform + - uid: 18239 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-4.5 + parent: 1 + type: Transform + - uid: 18243 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 1 + type: Transform + - uid: 18244 + components: + - pos: -8.5,-1.5 + parent: 1 + type: Transform + - uid: 18245 + components: + - pos: -7.5,-1.5 + parent: 1 + type: Transform + - uid: 18246 + components: + - pos: -6.5,-1.5 + parent: 1 + type: Transform + - uid: 18247 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1 + type: Transform + - uid: 18248 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 1 + type: Transform + - uid: 18249 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 1 + type: Transform + - uid: 18437 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-11.5 + parent: 1 + type: Transform +- proto: RailingCorner + entities: + - uid: 4003 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-33.5 + parent: 1 + type: Transform + - uid: 4004 + components: + - pos: 18.5,-37.5 + parent: 1 + type: Transform + - uid: 4117 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,25.5 + parent: 1 + type: Transform + - uid: 6891 + components: + - pos: 23.5,20.5 + parent: 1 + type: Transform + - uid: 6898 + components: + - rot: 3.141592653589793 rad + pos: 26.5,18.5 + parent: 1 + type: Transform + - uid: 8575 + components: + - rot: 3.141592653589793 rad + pos: -47.5,41.5 + parent: 1 + type: Transform + - uid: 9040 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,41.5 + parent: 1 + type: Transform + - uid: 17764 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-3.5 + parent: 1 + type: Transform + - uid: 17771 + components: + - pos: 36.5,9.5 + parent: 1 + type: Transform + - uid: 18240 + components: + - pos: -9.5,-3.5 + parent: 1 + type: Transform + - uid: 18242 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 + type: Transform +- proto: RailingCornerSmall + entities: + - uid: 3782 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-12.5 + parent: 1 + type: Transform + - uid: 3828 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-37.5 + parent: 1 + type: Transform + - uid: 3829 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-33.5 + parent: 1 + type: Transform + - uid: 4005 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-36.5 + parent: 1 + type: Transform + - uid: 4006 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-34.5 + parent: 1 + type: Transform + - uid: 4274 + components: + - rot: 3.141592653589793 rad + pos: -2.5,77.5 + parent: 1 + type: Transform + - uid: 4275 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,77.5 + parent: 1 + type: Transform + - uid: 8295 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,47.5 + parent: 1 + type: Transform + - uid: 8301 + components: + - rot: 3.141592653589793 rad + pos: -35.5,47.5 + parent: 1 + type: Transform + - uid: 8304 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,43.5 + parent: 1 + type: Transform + - uid: 8305 + components: + - pos: -31.5,43.5 + parent: 1 + type: Transform + - uid: 17756 + components: + - pos: 20.5,-12.5 + parent: 1 + type: Transform + - uid: 17768 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-3.5 + parent: 1 + type: Transform + - uid: 17774 + components: + - rot: 3.141592653589793 rad + pos: 34.5,9.5 + parent: 1 + type: Transform + - uid: 18241 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-3.5 + parent: 1 + type: Transform + - uid: 18250 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-1.5 + parent: 1 + type: Transform + - uid: 18251 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 + type: Transform + - uid: 18252 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + type: Transform +- proto: RandomArcade + entities: + - uid: 2498 + components: + - pos: 27.5,-0.5 + parent: 1 + type: Transform + - uid: 3405 + components: + - pos: 24.5,-0.5 + parent: 1 + type: Transform + - uid: 3406 + components: + - pos: 27.5,-2.5 + parent: 1 + type: Transform + - uid: 3407 + components: + - pos: 24.5,-2.5 + parent: 1 + type: Transform + - uid: 3408 + components: + - pos: 27.5,-4.5 + parent: 1 + type: Transform + - uid: 3409 + components: + - pos: 24.5,-4.5 + parent: 1 + type: Transform + - uid: 11072 + components: + - pos: 19.5,2.5 + parent: 1 + type: Transform + - uid: 13413 + components: + - pos: -12.5,69.5 + parent: 1 + type: Transform + - uid: 13415 + components: + - pos: -12.5,70.5 + parent: 1 + type: Transform +- proto: RandomArtifactSpawner + entities: + - uid: 17658 + components: + - pos: -6.5,29.5 + parent: 1 + type: Transform + - uid: 17659 + components: + - pos: -5.5,34.5 + parent: 1 + type: Transform +- proto: RandomDrinkBottle + entities: + - uid: 13313 + components: + - pos: -28.5,3.5 + parent: 1 + type: Transform + - uid: 18096 + components: + - pos: -34.5,54.5 + parent: 1 + type: Transform +- proto: RandomDrinkGlass + entities: + - uid: 9143 + components: + - pos: 8.5,-32.5 + parent: 1 + type: Transform + - uid: 9956 + components: + - pos: -38.5,-11.5 + parent: 1 + type: Transform + - uid: 14070 + components: + - pos: 18.5,64.5 + parent: 1 + type: Transform + - uid: 17278 + components: + - pos: -8.5,5.5 + parent: 1 + type: Transform + - uid: 17279 + components: + - pos: -5.5,8.5 + parent: 1 + type: Transform + - uid: 17280 + components: + - pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 17281 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 17689 + components: + - pos: -22.5,-7.5 + parent: 1 + type: Transform +- proto: RandomFoodBakedSingle + entities: + - uid: 8411 + components: + - pos: 11.5,42.5 + parent: 1 + type: Transform + - uid: 17664 + components: + - pos: 44.5,41.5 + parent: 1 + type: Transform +- proto: RandomFoodBakedWhole + entities: + - uid: 10951 + components: + - pos: 31.5,-18.5 + parent: 1 + type: Transform +- proto: RandomFoodMeal + entities: + - uid: 4025 + components: + - pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 13364 + components: + - pos: -39.5,34.5 + parent: 1 + type: Transform + - uid: 17662 + components: + - pos: -32.5,31.5 + parent: 1 + type: Transform +- proto: RandomFoodSingle + entities: + - uid: 13393 + components: + - pos: -24.5,30.5 + parent: 1 + type: Transform + - uid: 17283 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 17284 + components: + - pos: 3.5,8.5 + parent: 1 + type: Transform + - uid: 17661 + components: + - pos: -8.5,36.5 + parent: 1 + type: Transform +- proto: RandomInstruments + entities: + - uid: 6622 + components: + - pos: -16.5,-5.5 + parent: 1 + type: Transform + - uid: 8064 + components: + - pos: -8.5,76.5 + parent: 1 + type: Transform + - uid: 8257 + components: + - pos: -29.5,43.5 + parent: 1 + type: Transform + - uid: 8412 + components: + - pos: 12.5,46.5 + parent: 1 + type: Transform + - uid: 8471 + components: + - pos: 19.5,40.5 + parent: 1 + type: Transform +- proto: RandomPainting + entities: + - uid: 786 + components: + - pos: -25.5,9.5 + parent: 1 + type: Transform + - uid: 788 + components: + - pos: -24.5,9.5 + parent: 1 + type: Transform + - uid: 8250 + components: + - pos: -26.5,9.5 + parent: 1 + type: Transform + - uid: 8413 + components: + - rot: 3.141592653589793 rad + pos: 12.5,43.5 + parent: 1 + type: Transform + - uid: 8414 + components: + - rot: 3.141592653589793 rad + pos: 19.5,47.5 + parent: 1 + type: Transform + - uid: 17987 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-21.5 + parent: 1 + type: Transform +- proto: RandomPosterAny + entities: + - uid: 17954 + components: + - rot: 3.141592653589793 rad + pos: 35.5,53.5 + parent: 1 + type: Transform + - uid: 17955 + components: + - rot: 3.141592653589793 rad + pos: 26.5,55.5 + parent: 1 + type: Transform + - uid: 17956 + components: + - rot: 3.141592653589793 rad + pos: 17.5,57.5 + parent: 1 + type: Transform + - uid: 17957 + components: + - rot: 3.141592653589793 rad + pos: 13.5,49.5 + parent: 1 + type: Transform + - uid: 17961 + components: + - rot: 3.141592653589793 rad + pos: 22.5,23.5 + parent: 1 + type: Transform + - uid: 17962 + components: + - rot: 3.141592653589793 rad + pos: 17.5,21.5 + parent: 1 + type: Transform + - uid: 17963 + components: + - rot: 3.141592653589793 rad + pos: 23.5,25.5 + parent: 1 + type: Transform + - uid: 17967 + components: + - rot: 3.141592653589793 rad + pos: 19.5,59.5 + parent: 1 + type: Transform + - uid: 17968 + components: + - rot: 3.141592653589793 rad + pos: 29.5,57.5 + parent: 1 + type: Transform + - uid: 17970 + components: + - rot: 3.141592653589793 rad + pos: 10.5,47.5 + parent: 1 + type: Transform + - uid: 17974 + components: + - rot: 3.141592653589793 rad + pos: 20.5,9.5 + parent: 1 + type: Transform + - uid: 17975 + components: + - rot: 3.141592653589793 rad + pos: 19.5,6.5 + parent: 1 + type: Transform + - uid: 17976 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-2.5 + parent: 1 + type: Transform + - uid: 17979 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-17.5 + parent: 1 + type: Transform + - uid: 17981 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-20.5 + parent: 1 + type: Transform + - uid: 17983 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-25.5 + parent: 1 + type: Transform + - uid: 17984 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-30.5 + parent: 1 + type: Transform + - uid: 17985 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-16.5 + parent: 1 + type: Transform + - uid: 17994 + components: + - rot: 3.141592653589793 rad + pos: -27.5,28.5 + parent: 1 + type: Transform + - uid: 17995 + components: + - rot: 3.141592653589793 rad + pos: -29.5,20.5 + parent: 1 + type: Transform + - uid: 17996 + components: + - rot: 3.141592653589793 rad + pos: -29.5,24.5 + parent: 1 + type: Transform + - uid: 17997 + components: + - rot: 3.141592653589793 rad + pos: -20.5,4.5 + parent: 1 + type: Transform + - uid: 17998 + components: + - rot: 3.141592653589793 rad + pos: -16.5,8.5 + parent: 1 + type: Transform + - uid: 18008 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-36.5 + parent: 1 + type: Transform + - uid: 18009 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-32.5 + parent: 1 + type: Transform + - uid: 18010 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-28.5 + parent: 1 + type: Transform + - uid: 18011 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-21.5 + parent: 1 + type: Transform + - uid: 18012 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-18.5 + parent: 1 + type: Transform + - uid: 18015 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-8.5 + parent: 1 + type: Transform + - uid: 18016 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-8.5 + parent: 1 + type: Transform + - uid: 18018 + components: + - rot: 3.141592653589793 rad + pos: -37.5,8.5 + parent: 1 + type: Transform + - uid: 18019 + components: + - rot: 3.141592653589793 rad + pos: -36.5,19.5 + parent: 1 + type: Transform + - uid: 18022 + components: + - rot: 3.141592653589793 rad + pos: -37.5,44.5 + parent: 1 + type: Transform + - uid: 18023 + components: + - rot: 3.141592653589793 rad + pos: -37.5,47.5 + parent: 1 + type: Transform + - uid: 18024 + components: + - rot: 3.141592653589793 rad + pos: -30.5,50.5 + parent: 1 + type: Transform + - uid: 18029 + components: + - rot: 3.141592653589793 rad + pos: -20.5,56.5 + parent: 1 + type: Transform + - uid: 18030 + components: + - rot: 3.141592653589793 rad + pos: -22.5,53.5 + parent: 1 + type: Transform + - uid: 18032 + components: + - rot: 3.141592653589793 rad + pos: -14.5,65.5 + parent: 1 + type: Transform + - uid: 18039 + components: + - rot: 3.141592653589793 rad + pos: 23.5,48.5 + parent: 1 + type: Transform + - uid: 18040 + components: + - rot: 3.141592653589793 rad + pos: 18.5,51.5 + parent: 1 + type: Transform + - uid: 18041 + components: + - rot: 3.141592653589793 rad + pos: 26.5,42.5 + parent: 1 + type: Transform + - uid: 18087 + components: + - pos: 26.5,28.5 + parent: 1 + type: Transform + - uid: 18088 + components: + - pos: -2.5,33.5 + parent: 1 + type: Transform + - uid: 18092 + components: + - pos: -25.5,-25.5 + parent: 1 + type: Transform + - uid: 18330 + components: + - pos: 6.5,12.5 + parent: 1 + type: Transform +- proto: RandomPosterContraband + entities: + - uid: 17958 + components: + - rot: 3.141592653589793 rad + pos: 8.5,44.5 + parent: 1 + type: Transform + - uid: 17959 + components: + - rot: 3.141592653589793 rad + pos: 8.5,48.5 + parent: 1 + type: Transform + - uid: 17960 + components: + - rot: 3.141592653589793 rad + pos: 4.5,42.5 + parent: 1 + type: Transform + - uid: 17973 + components: + - rot: 3.141592653589793 rad + pos: 17.5,25.5 + parent: 1 + type: Transform + - uid: 17977 + components: + - rot: 3.141592653589793 rad + pos: 20.5,3.5 + parent: 1 + type: Transform + - uid: 17980 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-21.5 + parent: 1 + type: Transform + - uid: 17982 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-27.5 + parent: 1 + type: Transform + - uid: 17986 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-16.5 + parent: 1 + type: Transform + - uid: 17993 + components: + - rot: 3.141592653589793 rad + pos: -22.5,28.5 + parent: 1 + type: Transform + - uid: 17999 + components: + - rot: 3.141592653589793 rad + pos: -13.5,7.5 + parent: 1 + type: Transform + - uid: 18001 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-4.5 + parent: 1 + type: Transform + - uid: 18002 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-1.5 + parent: 1 + type: Transform + - uid: 18003 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-0.5 + parent: 1 + type: Transform + - uid: 18013 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-15.5 + parent: 1 + type: Transform + - uid: 18014 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-10.5 + parent: 1 + type: Transform + - uid: 18020 + components: + - rot: 3.141592653589793 rad + pos: -35.5,27.5 + parent: 1 + type: Transform + - uid: 18021 + components: + - rot: 3.141592653589793 rad + pos: -36.5,32.5 + parent: 1 + type: Transform + - uid: 18026 + components: + - rot: 3.141592653589793 rad + pos: -26.5,54.5 + parent: 1 + type: Transform + - uid: 18027 + components: + - rot: 3.141592653589793 rad + pos: -34.5,51.5 + parent: 1 + type: Transform + - uid: 18028 + components: + - rot: 3.141592653589793 rad + pos: -36.5,55.5 + parent: 1 + type: Transform + - uid: 18033 + components: + - rot: 3.141592653589793 rad + pos: -11.5,64.5 + parent: 1 + type: Transform + - uid: 18034 + components: + - rot: 3.141592653589793 rad + pos: -9.5,68.5 + parent: 1 + type: Transform + - uid: 18037 + components: + - rot: 3.141592653589793 rad + pos: 21.5,53.5 + parent: 1 + type: Transform + - uid: 18038 + components: + - rot: 3.141592653589793 rad + pos: 17.5,54.5 + parent: 1 + type: Transform + - uid: 18042 + components: + - rot: 3.141592653589793 rad + pos: 37.5,45.5 + parent: 1 + type: Transform + - uid: 18079 + components: + - pos: -16.5,-27.5 + parent: 1 + type: Transform + - uid: 18080 + components: + - pos: -3.5,-16.5 + parent: 1 + type: Transform + - uid: 18081 + components: + - pos: 2.5,-16.5 + parent: 1 + type: Transform + - uid: 18085 + components: + - pos: 34.5,-13.5 + parent: 1 + type: Transform + - uid: 18090 + components: + - pos: -33.5,-12.5 + parent: 1 + type: Transform + - uid: 18091 + components: + - pos: -28.5,-13.5 + parent: 1 + type: Transform + - uid: 18110 + components: + - pos: -41.5,49.5 + parent: 1 + type: Transform + - uid: 18111 + components: + - pos: -45.5,46.5 + parent: 1 + type: Transform +- proto: RandomPosterLegit + entities: + - uid: 8252 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 17938 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-6.5 + parent: 1 + type: Transform + - uid: 17939 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-10.5 + parent: 1 + type: Transform + - uid: 17940 + components: + - rot: 3.141592653589793 rad + pos: -41.5,12.5 + parent: 1 + type: Transform + - uid: 17941 + components: + - rot: 3.141592653589793 rad + pos: -33.5,26.5 + parent: 1 + type: Transform + - uid: 17942 + components: + - rot: 3.141592653589793 rad + pos: -33.5,30.5 + parent: 1 + type: Transform + - uid: 17943 + components: + - rot: 3.141592653589793 rad + pos: -35.5,35.5 + parent: 1 + type: Transform + - uid: 17944 + components: + - rot: 3.141592653589793 rad + pos: -50.5,40.5 + parent: 1 + type: Transform + - uid: 17945 + components: + - rot: 3.141592653589793 rad + pos: -41.5,40.5 + parent: 1 + type: Transform + - uid: 17946 + components: + - rot: 3.141592653589793 rad + pos: -9.5,35.5 + parent: 1 + type: Transform + - uid: 17947 + components: + - rot: 3.141592653589793 rad + pos: -2.5,60.5 + parent: 1 + type: Transform + - uid: 17948 + components: + - rot: 3.141592653589793 rad + pos: -2.5,64.5 + parent: 1 + type: Transform + - uid: 17949 + components: + - rot: 3.141592653589793 rad + pos: 12.5,65.5 + parent: 1 + type: Transform + - uid: 17950 + components: + - rot: 3.141592653589793 rad + pos: 6.5,39.5 + parent: 1 + type: Transform + - uid: 17951 + components: + - rot: 3.141592653589793 rad + pos: 22.5,44.5 + parent: 1 + type: Transform + - uid: 17952 + components: + - rot: 3.141592653589793 rad + pos: 16.5,42.5 + parent: 1 + type: Transform + - uid: 17953 + components: + - rot: 3.141592653589793 rad + pos: 46.5,45.5 + parent: 1 + type: Transform + - uid: 17964 + components: + - rot: 3.141592653589793 rad + pos: 28.5,1.5 + parent: 1 + type: Transform + - uid: 17965 + components: + - rot: 3.141592653589793 rad + pos: 28.5,8.5 + parent: 1 + type: Transform + - uid: 17969 + components: + - rot: 3.141592653589793 rad + pos: 12.5,51.5 + parent: 1 + type: Transform + - uid: 17971 + components: + - rot: 3.141592653589793 rad + pos: 17.5,32.5 + parent: 1 + type: Transform + - uid: 17972 + components: + - rot: 3.141592653589793 rad + pos: 22.5,32.5 + parent: 1 + type: Transform + - uid: 17978 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-14.5 + parent: 1 + type: Transform + - uid: 17991 + components: + - rot: 3.141592653589793 rad + pos: -20.5,52.5 + parent: 1 + type: Transform + - uid: 17992 + components: + - rot: 3.141592653589793 rad + pos: -4.5,51.5 + parent: 1 + type: Transform + - uid: 18007 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-31.5 + parent: 1 + type: Transform + - uid: 18017 + components: + - rot: 3.141592653589793 rad + pos: -35.5,0.5 + parent: 1 + type: Transform + - uid: 18025 + components: + - rot: 3.141592653589793 rad + pos: -35.5,50.5 + parent: 1 + type: Transform + - uid: 18031 + components: + - rot: 3.141592653589793 rad + pos: -14.5,61.5 + parent: 1 + type: Transform + - uid: 18035 + components: + - rot: 3.141592653589793 rad + pos: -6.5,70.5 + parent: 1 + type: Transform + - uid: 18043 + components: + - rot: 3.141592653589793 rad + pos: 49.5,39.5 + parent: 1 + type: Transform + - uid: 18044 + components: + - rot: 3.141592653589793 rad + pos: 33.5,21.5 + parent: 1 + type: Transform + - uid: 18077 + components: + - pos: -15.5,-12.5 + parent: 1 + type: Transform + - uid: 18078 + components: + - pos: -15.5,-17.5 + parent: 1 + type: Transform + - uid: 18082 + components: + - pos: 14.5,-13.5 + parent: 1 + type: Transform + - uid: 18116 + components: + - pos: 9.5,-31.5 + parent: 1 + type: Transform + - uid: 18117 + components: + - pos: 14.5,-21.5 + parent: 1 + type: Transform + - uid: 18125 + components: + - pos: -7.5,-6.5 + parent: 1 + type: Transform +- proto: RandomSnacks + entities: + - uid: 8721 + components: + - pos: -10.5,-15.5 + parent: 1 + type: Transform + - uid: 17660 + components: + - pos: 41.5,36.5 + parent: 1 + type: Transform + - uid: 17663 + components: + - pos: -20.5,15.5 + parent: 1 + type: Transform + - uid: 17667 + components: + - pos: -37.5,7.5 + parent: 1 + type: Transform +- proto: RandomSoap + entities: + - uid: 8132 + components: + - pos: -7.5,70.5 + parent: 1 + type: Transform + - uid: 8265 + components: + - pos: -38.5,49.5 + parent: 1 + type: Transform + - uid: 9379 + components: + - pos: 16.5,-40.5 + parent: 1 + type: Transform + - uid: 10100 + components: + - pos: -16.5,-40.5 + parent: 1 + type: Transform +- proto: RandomSpawner + entities: + - uid: 17668 + components: + - pos: -34.5,21.5 + parent: 1 + type: Transform + - uid: 17669 + components: + - pos: -39.5,32.5 + parent: 1 + type: Transform + - uid: 17670 + components: + - pos: -48.5,43.5 + parent: 1 + type: Transform + - uid: 17671 + components: + - pos: -25.5,38.5 + parent: 1 + type: Transform + - uid: 17672 + components: + - pos: -30.5,45.5 + parent: 1 + type: Transform + - uid: 17673 + components: + - pos: -35.5,53.5 + parent: 1 + type: Transform + - uid: 17674 + components: + - pos: -38.5,45.5 + parent: 1 + type: Transform + - uid: 17675 + components: + - pos: -28.5,57.5 + parent: 1 + type: Transform + - uid: 17676 + components: + - pos: -24.5,54.5 + parent: 1 + type: Transform + - uid: 17677 + components: + - pos: -17.5,63.5 + parent: 1 + type: Transform + - uid: 17678 + components: + - pos: -4.5,67.5 + parent: 1 + type: Transform + - uid: 17679 + components: + - pos: 11.5,69.5 + parent: 1 + type: Transform + - uid: 17680 + components: + - pos: 17.5,59.5 + parent: 1 + type: Transform + - uid: 17681 + components: + - pos: 30.5,52.5 + parent: 1 + type: Transform + - uid: 17682 + components: + - pos: 20.5,36.5 + parent: 1 + type: Transform + - uid: 17683 + components: + - pos: 44.5,38.5 + parent: 1 + type: Transform + - uid: 17684 + components: + - pos: 32.5,28.5 + parent: 1 + type: Transform + - uid: 17685 + components: + - pos: 22.5,18.5 + parent: 1 + type: Transform + - uid: 17687 + components: + - pos: 14.5,-8.5 + parent: 1 + type: Transform + - uid: 17688 + components: + - pos: -24.5,-7.5 + parent: 1 + type: Transform + - uid: 17690 + components: + - pos: -47.5,-7.5 + parent: 1 + type: Transform + - uid: 17691 + components: + - pos: -49.5,-8.5 + parent: 1 + type: Transform + - uid: 17692 + components: + - pos: -35.5,-13.5 + parent: 1 + type: Transform + - uid: 17693 + components: + - pos: -27.5,-21.5 + parent: 1 + type: Transform + - uid: 17694 + components: + - pos: -15.5,-37.5 + parent: 1 + type: Transform + - uid: 17695 + components: + - pos: 17.5,-35.5 + parent: 1 + type: Transform + - uid: 17696 + components: + - pos: 17.5,-34.5 + parent: 1 + type: Transform + - uid: 17697 + components: + - pos: 18.5,-40.5 + parent: 1 + type: Transform + - uid: 17698 + components: + - pos: 20.5,-39.5 + parent: 1 + type: Transform + - uid: 17699 + components: + - pos: 21.5,-37.5 + parent: 1 + type: Transform + - uid: 17700 + components: + - pos: 23.5,-25.5 + parent: 1 + type: Transform + - uid: 17701 + components: + - pos: 37.5,-14.5 + parent: 1 + type: Transform + - uid: 17702 + components: + - pos: 25.5,-0.5 + parent: 1 + type: Transform + - uid: 17703 + components: + - pos: 26.5,-2.5 + parent: 1 + type: Transform +- proto: RandomVending + entities: + - uid: 6553 + components: + - pos: -26.5,-22.5 + parent: 1 + type: Transform + - uid: 8418 + components: + - pos: -48.5,44.5 + parent: 1 + type: Transform + - uid: 8457 + components: + - pos: 9.5,70.5 + parent: 1 + type: Transform + - uid: 9052 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 10137 + components: + - pos: 28.5,-26.5 + parent: 1 + type: Transform + - uid: 11060 + components: + - pos: 15.5,5.5 + parent: 1 + type: Transform + - uid: 13394 + components: + - pos: -24.5,29.5 + parent: 1 + type: Transform + - uid: 14006 + components: + - pos: 15.5,64.5 + parent: 1 + type: Transform +- proto: RandomVendingDrinks + entities: + - uid: 8591 + components: + - pos: -27.5,11.5 + parent: 1 + type: Transform +- proto: RCD + entities: + - uid: 8704 + components: + - pos: -13.511377,-23.363 + parent: 1 + type: Transform + - uid: 9098 + components: + - pos: 6.6163073,-24.303488 + parent: 1 + type: Transform +- proto: RCDAmmo + entities: + - uid: 8705 + components: + - pos: -13.667563,-23.646822 + parent: 1 + type: Transform + - uid: 9099 + components: + - pos: 6.6163073,-24.511822 + parent: 1 + type: Transform + - uid: 9100 + components: + - pos: 6.4288073,-24.595156 + parent: 1 + type: Transform +- proto: ReagentContainerFlour + entities: + - uid: 4572 + components: + - pos: 7.857181,-3.1736069 + parent: 1 + type: Transform +- proto: ReagentContainerMilkOat + entities: + - uid: 9297 + components: + - pos: 5.35893,2.077802 + parent: 1 + type: Transform +- proto: ReagentContainerMilkSoy + entities: + - uid: 9298 + components: + - pos: 5.504763,1.973635 + parent: 1 + type: Transform +- proto: ReagentContainerRice + entities: + - uid: 608 + components: + - pos: 7.5164104,-3.0316958 + parent: 1 + type: Transform +- proto: Recycler + entities: + - uid: 3989 + components: + - pos: 19.5,-35.5 + parent: 1 + type: Transform + - links: + - 4007 + type: DeviceLinkSink +- proto: ReinforcedPlasmaWindow + entities: + - uid: 1834 + components: + - pos: -8.5,61.5 + parent: 1 + type: Transform + - uid: 1836 + components: + - pos: -7.5,60.5 + parent: 1 + type: Transform + - uid: 1841 + components: + - pos: -9.5,61.5 + parent: 1 + type: Transform + - uid: 2686 + components: + - pos: -2.5,28.5 + parent: 1 + type: Transform + - uid: 2687 + components: + - pos: -2.5,29.5 + parent: 1 + type: Transform + - uid: 2688 + components: + - pos: -2.5,30.5 + parent: 1 + type: Transform + - uid: 2962 + components: + - pos: -2.5,-39.5 + parent: 1 + type: Transform + - uid: 2963 + components: + - pos: -2.5,-40.5 + parent: 1 + type: Transform + - uid: 2964 + components: + - pos: -2.5,-41.5 + parent: 1 + type: Transform + - uid: 2965 + components: + - pos: -1.5,-38.5 + parent: 1 + type: Transform + - uid: 2966 + components: + - pos: -0.5,-38.5 + parent: 1 + type: Transform + - uid: 2967 + components: + - pos: 0.5,-38.5 + parent: 1 + type: Transform + - uid: 2968 + components: + - pos: 1.5,-39.5 + parent: 1 + type: Transform + - uid: 2969 + components: + - pos: 1.5,-40.5 + parent: 1 + type: Transform + - uid: 2970 + components: + - pos: 1.5,-41.5 + parent: 1 + type: Transform + - uid: 2971 + components: + - pos: -3.5,-43.5 + parent: 1 + type: Transform + - uid: 2972 + components: + - pos: -3.5,-44.5 + parent: 1 + type: Transform + - uid: 2973 + components: + - pos: -3.5,-45.5 + parent: 1 + type: Transform + - uid: 2974 + components: + - pos: 2.5,-43.5 + parent: 1 + type: Transform + - uid: 2975 + components: + - pos: 2.5,-44.5 + parent: 1 + type: Transform + - uid: 2976 + components: + - pos: 2.5,-45.5 + parent: 1 + type: Transform + - uid: 2977 + components: + - pos: -1.5,-36.5 + parent: 1 + type: Transform + - uid: 2978 + components: + - pos: -0.5,-36.5 + parent: 1 + type: Transform + - uid: 2979 + components: + - pos: 0.5,-36.5 + parent: 1 + type: Transform + - uid: 2980 + components: + - pos: 1.5,-35.5 + parent: 1 + type: Transform + - uid: 2981 + components: + - pos: 1.5,-34.5 + parent: 1 + type: Transform + - uid: 2982 + components: + - pos: 1.5,-33.5 + parent: 1 + type: Transform + - uid: 2983 + components: + - pos: 0.5,-32.5 + parent: 1 + type: Transform + - uid: 2984 + components: + - pos: -0.5,-32.5 + parent: 1 + type: Transform + - uid: 2985 + components: + - pos: -1.5,-32.5 + parent: 1 + type: Transform + - uid: 2986 + components: + - pos: -2.5,-33.5 + parent: 1 + type: Transform + - uid: 2987 + components: + - pos: -2.5,-34.5 + parent: 1 + type: Transform + - uid: 2988 + components: + - pos: -2.5,-35.5 + parent: 1 + type: Transform + - uid: 2989 + components: + - pos: -2.5,-29.5 + parent: 1 + type: Transform + - uid: 2990 + components: + - pos: -2.5,-27.5 + parent: 1 + type: Transform + - uid: 2991 + components: + - pos: -2.5,-25.5 + parent: 1 + type: Transform + - uid: 2992 + components: + - pos: -2.5,-23.5 + parent: 1 + type: Transform + - uid: 2993 + components: + - pos: -2.5,-21.5 + parent: 1 + type: Transform + - uid: 2994 + components: + - pos: -2.5,-19.5 + parent: 1 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 5 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,-0.5 + parent: 1 + type: Transform + - uid: 11 + components: + - pos: 50.5,-10.5 + parent: 1 + type: Transform + - uid: 29 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,33.5 + parent: 1 + type: Transform + - uid: 30 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,23.5 + parent: 1 + type: Transform + - uid: 31 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,24.5 + parent: 1 + type: Transform + - uid: 38 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,22.5 + parent: 1 + type: Transform + - uid: 48 + components: + - pos: 51.5,-13.5 + parent: 1 + type: Transform + - uid: 57 + components: + - rot: 3.141592653589793 rad + pos: 45.5,18.5 + parent: 1 + type: Transform + - uid: 58 + components: + - rot: 3.141592653589793 rad + pos: 44.5,17.5 + parent: 1 + type: Transform + - uid: 59 + components: + - rot: 3.141592653589793 rad + pos: 45.5,16.5 + parent: 1 + type: Transform + - uid: 60 + components: + - rot: 3.141592653589793 rad + pos: 49.5,18.5 + parent: 1 + type: Transform + - uid: 61 + components: + - rot: 3.141592653589793 rad + pos: 50.5,17.5 + parent: 1 + type: Transform + - uid: 62 + components: + - rot: 3.141592653589793 rad + pos: 49.5,16.5 + parent: 1 + type: Transform + - uid: 90 + components: + - pos: 50.5,-9.5 + parent: 1 + type: Transform + - uid: 96 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,11.5 + parent: 1 + type: Transform + - uid: 97 + components: + - pos: 44.5,-12.5 + parent: 1 + type: Transform + - uid: 98 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,11.5 + parent: 1 + type: Transform + - uid: 100 + components: + - pos: 45.5,-15.5 + parent: 1 + type: Transform + - uid: 103 + components: + - rot: 1.5707963267948966 rad + pos: 49.5,11.5 + parent: 1 + type: Transform + - uid: 105 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,11.5 + parent: 1 + type: Transform + - uid: 192 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,16.5 + parent: 1 + type: Transform + - uid: 193 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,16.5 + parent: 1 + type: Transform + - uid: 194 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,16.5 + parent: 1 + type: Transform + - uid: 195 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,16.5 + parent: 1 + type: Transform + - uid: 196 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,12.5 + parent: 1 + type: Transform + - uid: 197 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,12.5 + parent: 1 + type: Transform + - uid: 198 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,12.5 + parent: 1 + type: Transform + - uid: 199 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,12.5 + parent: 1 + type: Transform + - uid: 200 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,12.5 + parent: 1 + type: Transform + - uid: 201 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,12.5 + parent: 1 + type: Transform + - uid: 202 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,12.5 + parent: 1 + type: Transform + - uid: 203 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,12.5 + parent: 1 + type: Transform + - uid: 204 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,16.5 + parent: 1 + type: Transform + - uid: 205 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,16.5 + parent: 1 + type: Transform + - uid: 206 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,16.5 + parent: 1 + type: Transform + - uid: 207 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,16.5 + parent: 1 + type: Transform + - uid: 208 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,17.5 + parent: 1 + type: Transform + - uid: 209 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,18.5 + parent: 1 + type: Transform + - uid: 210 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,19.5 + parent: 1 + type: Transform + - uid: 216 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,27.5 + parent: 1 + type: Transform + - uid: 217 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,28.5 + parent: 1 + type: Transform + - uid: 218 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,29.5 + parent: 1 + type: Transform + - uid: 219 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,32.5 + parent: 1 + type: Transform + - uid: 220 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,34.5 + parent: 1 + type: Transform + - uid: 233 + components: + - rot: -1.5707963267948966 rad + pos: 51.5,12.5 + parent: 1 + type: Transform + - uid: 234 + components: + - rot: -1.5707963267948966 rad + pos: 51.5,16.5 + parent: 1 + type: Transform + - uid: 236 + components: + - pos: 51.5,-8.5 + parent: 1 + type: Transform + - uid: 240 + components: + - pos: -44.5,-2.5 + parent: 1 + type: Transform + - uid: 241 + components: + - pos: -44.5,-1.5 + parent: 1 + type: Transform + - uid: 242 + components: + - pos: -44.5,-0.5 + parent: 1 + type: Transform + - uid: 243 + components: + - pos: -44.5,7.5 + parent: 1 + type: Transform + - uid: 244 + components: + - pos: -44.5,8.5 + parent: 1 + type: Transform + - uid: 245 + components: + - pos: -44.5,9.5 + parent: 1 + type: Transform + - uid: 249 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,6.5 + parent: 1 + type: Transform + - uid: 250 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,6.5 + parent: 1 + type: Transform + - uid: 251 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,3.5 + parent: 1 + type: Transform + - uid: 252 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,3.5 + parent: 1 + type: Transform + - uid: 257 + components: + - pos: -37.5,-2.5 + parent: 1 + type: Transform + - uid: 259 + components: + - pos: -37.5,-0.5 + parent: 1 + type: Transform + - uid: 317 + components: + - pos: 5.5,69.5 + parent: 1 + type: Transform + - uid: 318 + components: + - pos: 6.5,69.5 + parent: 1 + type: Transform + - uid: 319 + components: + - pos: 8.5,72.5 + parent: 1 + type: Transform + - uid: 334 + components: + - pos: 8.5,73.5 + parent: 1 + type: Transform + - uid: 335 + components: + - pos: 8.5,74.5 + parent: 1 + type: Transform + - uid: 363 + components: + - pos: 2.5,75.5 + parent: 1 + type: Transform + - uid: 364 + components: + - pos: 3.5,75.5 + parent: 1 + type: Transform + - uid: 391 + components: + - pos: 2.5,69.5 + parent: 1 + type: Transform + - uid: 392 + components: + - pos: 3.5,69.5 + parent: 1 + type: Transform + - uid: 407 + components: + - pos: 8.5,76.5 + parent: 1 + type: Transform + - uid: 408 + components: + - pos: 8.5,77.5 + parent: 1 + type: Transform + - uid: 409 + components: + - pos: 7.5,79.5 + parent: 1 + type: Transform + - uid: 410 + components: + - pos: 7.5,80.5 + parent: 1 + type: Transform + - uid: 411 + components: + - pos: 6.5,82.5 + parent: 1 + type: Transform + - uid: 412 + components: + - pos: 4.5,83.5 + parent: 1 + type: Transform + - uid: 413 + components: + - pos: 2.5,84.5 + parent: 1 + type: Transform + - uid: 414 + components: + - pos: 1.5,84.5 + parent: 1 + type: Transform + - uid: 415 + components: + - pos: 0.5,84.5 + parent: 1 + type: Transform + - uid: 416 + components: + - pos: -1.5,84.5 + parent: 1 + type: Transform + - uid: 417 + components: + - pos: -2.5,84.5 + parent: 1 + type: Transform + - uid: 418 + components: + - pos: -3.5,84.5 + parent: 1 + type: Transform + - uid: 419 + components: + - pos: -5.5,83.5 + parent: 1 + type: Transform + - uid: 420 + components: + - pos: -6.5,83.5 + parent: 1 + type: Transform + - uid: 421 + components: + - pos: 5.5,83.5 + parent: 1 + type: Transform + - uid: 809 + components: + - pos: -3.5,20.5 + parent: 1 + type: Transform + - uid: 810 + components: + - pos: 2.5,20.5 + parent: 1 + type: Transform + - uid: 843 + components: + - pos: 42.5,41.5 + parent: 1 + type: Transform + - uid: 852 + components: + - pos: 49.5,44.5 + parent: 1 + type: Transform + - uid: 853 + components: + - pos: 49.5,43.5 + parent: 1 + type: Transform + - uid: 854 + components: + - pos: 49.5,42.5 + parent: 1 + type: Transform + - uid: 855 + components: + - pos: 49.5,41.5 + parent: 1 + type: Transform + - uid: 856 + components: + - pos: 51.5,39.5 + parent: 1 + type: Transform + - uid: 857 + components: + - pos: 51.5,35.5 + parent: 1 + type: Transform + - uid: 858 + components: + - pos: 50.5,34.5 + parent: 1 + type: Transform + - uid: 859 + components: + - pos: 49.5,33.5 + parent: 1 + type: Transform + - uid: 860 + components: + - pos: 45.5,33.5 + parent: 1 + type: Transform + - uid: 861 + components: + - pos: 44.5,34.5 + parent: 1 + type: Transform + - uid: 862 + components: + - pos: 42.5,35.5 + parent: 1 + type: Transform + - uid: 863 + components: + - pos: 41.5,35.5 + parent: 1 + type: Transform + - uid: 864 + components: + - pos: 40.5,35.5 + parent: 1 + type: Transform + - uid: 865 + components: + - pos: 39.5,35.5 + parent: 1 + type: Transform + - uid: 866 + components: + - pos: 37.5,35.5 + parent: 1 + type: Transform + - uid: 867 + components: + - pos: 36.5,35.5 + parent: 1 + type: Transform + - uid: 868 + components: + - pos: 35.5,35.5 + parent: 1 + type: Transform + - uid: 869 + components: + - pos: 34.5,35.5 + parent: 1 + type: Transform + - uid: 881 + components: + - pos: 39.5,55.5 + parent: 1 + type: Transform + - uid: 883 + components: + - pos: 39.5,54.5 + parent: 1 + type: Transform + - uid: 915 + components: + - pos: 47.5,46.5 + parent: 1 + type: Transform + - uid: 916 + components: + - pos: 47.5,47.5 + parent: 1 + type: Transform + - uid: 917 + components: + - pos: 47.5,48.5 + parent: 1 + type: Transform + - uid: 918 + components: + - pos: 46.5,49.5 + parent: 1 + type: Transform + - uid: 919 + components: + - pos: 45.5,49.5 + parent: 1 + type: Transform + - uid: 920 + components: + - pos: 48.5,45.5 + parent: 1 + type: Transform + - uid: 921 + components: + - pos: 44.5,50.5 + parent: 1 + type: Transform + - uid: 922 + components: + - pos: 44.5,51.5 + parent: 1 + type: Transform + - uid: 923 + components: + - pos: 43.5,52.5 + parent: 1 + type: Transform + - uid: 924 + components: + - pos: 42.5,52.5 + parent: 1 + type: Transform + - uid: 925 + components: + - pos: 41.5,52.5 + parent: 1 + type: Transform + - uid: 926 + components: + - pos: -39.5,53.5 + parent: 1 + type: Transform + - uid: 930 + components: + - rot: 3.141592653589793 rad + pos: 38.5,53.5 + parent: 1 + type: Transform + - uid: 933 + components: + - pos: 34.5,57.5 + parent: 1 + type: Transform + - uid: 934 + components: + - pos: 33.5,57.5 + parent: 1 + type: Transform + - uid: 935 + components: + - pos: 31.5,57.5 + parent: 1 + type: Transform + - uid: 936 + components: + - pos: 30.5,57.5 + parent: 1 + type: Transform + - uid: 937 + components: + - pos: 29.5,58.5 + parent: 1 + type: Transform + - uid: 938 + components: + - pos: 28.5,59.5 + parent: 1 + type: Transform + - uid: 939 + components: + - pos: 27.5,59.5 + parent: 1 + type: Transform + - uid: 940 + components: + - pos: 26.5,59.5 + parent: 1 + type: Transform + - uid: 941 + components: + - pos: 23.5,59.5 + parent: 1 + type: Transform + - uid: 942 + components: + - pos: 22.5,59.5 + parent: 1 + type: Transform + - uid: 943 + components: + - pos: 21.5,59.5 + parent: 1 + type: Transform + - uid: 944 + components: + - pos: 19.5,61.5 + parent: 1 + type: Transform + - uid: 945 + components: + - pos: 19.5,62.5 + parent: 1 + type: Transform + - uid: 946 + components: + - pos: 19.5,63.5 + parent: 1 + type: Transform + - uid: 947 + components: + - pos: 19.5,64.5 + parent: 1 + type: Transform + - uid: 948 + components: + - pos: 18.5,65.5 + parent: 1 + type: Transform + - uid: 949 + components: + - pos: 17.5,65.5 + parent: 1 + type: Transform + - uid: 950 + components: + - pos: 16.5,65.5 + parent: 1 + type: Transform + - uid: 951 + components: + - pos: 15.5,65.5 + parent: 1 + type: Transform + - uid: 952 + components: + - pos: 13.5,67.5 + parent: 1 + type: Transform + - uid: 953 + components: + - pos: 13.5,68.5 + parent: 1 + type: Transform + - uid: 954 + components: + - pos: 13.5,69.5 + parent: 1 + type: Transform + - uid: 955 + components: + - pos: 13.5,70.5 + parent: 1 + type: Transform + - uid: 956 + components: + - pos: 12.5,71.5 + parent: 1 + type: Transform + - uid: 957 + components: + - pos: 11.5,71.5 + parent: 1 + type: Transform + - uid: 958 + components: + - pos: 10.5,71.5 + parent: 1 + type: Transform + - uid: 959 + components: + - pos: 9.5,71.5 + parent: 1 + type: Transform + - uid: 960 + components: + - pos: 1.5,70.5 + parent: 1 + type: Transform + - uid: 961 + components: + - pos: 1.5,71.5 + parent: 1 + type: Transform + - uid: 962 + components: + - pos: 1.5,73.5 + parent: 1 + type: Transform + - uid: 963 + components: + - pos: 1.5,74.5 + parent: 1 + type: Transform + - uid: 964 + components: + - pos: -9.5,72.5 + parent: 1 + type: Transform + - uid: 965 + components: + - pos: -9.5,73.5 + parent: 1 + type: Transform + - uid: 966 + components: + - pos: -9.5,74.5 + parent: 1 + type: Transform + - uid: 967 + components: + - pos: -9.5,76.5 + parent: 1 + type: Transform + - uid: 968 + components: + - pos: -9.5,77.5 + parent: 1 + type: Transform + - uid: 969 + components: + - pos: -8.5,79.5 + parent: 1 + type: Transform + - uid: 970 + components: + - pos: -8.5,80.5 + parent: 1 + type: Transform + - uid: 971 + components: + - pos: -7.5,82.5 + parent: 1 + type: Transform + - uid: 1045 + components: + - pos: -4.5,29.5 + parent: 1 + type: Transform + - uid: 1059 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,31.5 + parent: 1 + type: Transform + - uid: 1077 + components: + - pos: -7.5,35.5 + parent: 1 + type: Transform + - uid: 1078 + components: + - pos: -6.5,35.5 + parent: 1 + type: Transform + - uid: 1079 + components: + - pos: -5.5,35.5 + parent: 1 + type: Transform + - uid: 1080 + components: + - pos: -4.5,30.5 + parent: 1 + type: Transform + - uid: 1082 + components: + - pos: -4.5,28.5 + parent: 1 + type: Transform + - uid: 1083 + components: + - pos: -7.5,27.5 + parent: 1 + type: Transform + - uid: 1085 + components: + - pos: -5.5,27.5 + parent: 1 + type: Transform + - uid: 1086 + components: + - pos: -8.5,28.5 + parent: 1 + type: Transform + - uid: 1087 + components: + - pos: -8.5,29.5 + parent: 1 + type: Transform + - uid: 1088 + components: + - pos: -8.5,30.5 + parent: 1 + type: Transform + - uid: 1089 + components: + - pos: -7.5,31.5 + parent: 1 + type: Transform + - uid: 1090 + components: + - pos: -5.5,31.5 + parent: 1 + type: Transform + - uid: 1097 + components: + - pos: -12.5,30.5 + parent: 1 + type: Transform + - uid: 1099 + components: + - pos: -12.5,28.5 + parent: 1 + type: Transform + - uid: 1100 + components: + - pos: -12.5,27.5 + parent: 1 + type: Transform + - uid: 1104 + components: + - pos: -15.5,26.5 + parent: 1 + type: Transform + - uid: 1105 + components: + - pos: -13.5,26.5 + parent: 1 + type: Transform + - uid: 1108 + components: + - pos: -22.5,19.5 + parent: 1 + type: Transform + - uid: 1115 + components: + - pos: -7.5,25.5 + parent: 1 + type: Transform + - uid: 1116 + components: + - pos: -6.5,25.5 + parent: 1 + type: Transform + - uid: 1117 + components: + - pos: -5.5,25.5 + parent: 1 + type: Transform + - uid: 1133 + components: + - pos: -15.5,16.5 + parent: 1 + type: Transform + - uid: 1134 + components: + - pos: -16.5,16.5 + parent: 1 + type: Transform + - uid: 1135 + components: + - pos: -17.5,16.5 + parent: 1 + type: Transform + - uid: 1140 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,16.5 + parent: 1 + type: Transform + - uid: 1150 + components: + - pos: -11.5,16.5 + parent: 1 + type: Transform + - uid: 1151 + components: + - pos: -12.5,16.5 + parent: 1 + type: Transform + - uid: 1158 + components: + - pos: -2.5,24.5 + parent: 1 + type: Transform + - uid: 1159 + components: + - pos: -2.5,23.5 + parent: 1 + type: Transform + - uid: 1160 + components: + - pos: -2.5,22.5 + parent: 1 + type: Transform + - uid: 1161 + components: + - pos: 1.5,24.5 + parent: 1 + type: Transform + - uid: 1162 + components: + - pos: 1.5,23.5 + parent: 1 + type: Transform + - uid: 1163 + components: + - pos: 1.5,22.5 + parent: 1 + type: Transform + - uid: 1167 + components: + - pos: -8.5,21.5 + parent: 1 + type: Transform + - uid: 1174 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,16.5 + parent: 1 + type: Transform + - uid: 1238 + components: + - pos: -19.5,35.5 + parent: 1 + type: Transform + - uid: 1239 + components: + - pos: -22.5,22.5 + parent: 1 + type: Transform + - uid: 1279 + components: + - pos: -49.5,17.5 + parent: 1 + type: Transform + - uid: 1280 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,26.5 + parent: 1 + type: Transform + - uid: 1290 + components: + - pos: -46.5,34.5 + parent: 1 + type: Transform + - uid: 1291 + components: + - pos: -50.5,34.5 + parent: 1 + type: Transform + - uid: 1294 + components: + - pos: -46.5,17.5 + parent: 1 + type: Transform + - uid: 1296 + components: + - pos: -49.5,34.5 + parent: 1 + type: Transform + - uid: 1303 + components: + - pos: -22.5,20.5 + parent: 1 + type: Transform + - uid: 1323 + components: + - pos: -19.5,39.5 + parent: 1 + type: Transform + - uid: 1324 + components: + - pos: -18.5,39.5 + parent: 1 + type: Transform + - uid: 1325 + components: + - pos: -16.5,39.5 + parent: 1 + type: Transform + - uid: 1326 + components: + - pos: -15.5,39.5 + parent: 1 + type: Transform + - uid: 1327 + components: + - pos: -13.5,39.5 + parent: 1 + type: Transform + - uid: 1328 + components: + - pos: -12.5,39.5 + parent: 1 + type: Transform + - uid: 1329 + components: + - pos: -10.5,39.5 + parent: 1 + type: Transform + - uid: 1330 + components: + - pos: -9.5,39.5 + parent: 1 + type: Transform + - uid: 1331 + components: + - pos: -7.5,39.5 + parent: 1 + type: Transform + - uid: 1332 + components: + - pos: -6.5,39.5 + parent: 1 + type: Transform + - uid: 1333 + components: + - pos: -4.5,39.5 + parent: 1 + type: Transform + - uid: 1334 + components: + - pos: -3.5,39.5 + parent: 1 + type: Transform + - uid: 1351 + components: + - pos: -4.5,56.5 + parent: 1 + type: Transform + - uid: 1352 + components: + - pos: -4.5,57.5 + parent: 1 + type: Transform + - uid: 1362 + components: + - pos: -7.5,53.5 + parent: 1 + type: Transform + - uid: 1363 + components: + - pos: -7.5,52.5 + parent: 1 + type: Transform + - uid: 1367 + components: + - pos: -13.5,43.5 + parent: 1 + type: Transform + - uid: 1368 + components: + - pos: -10.5,43.5 + parent: 1 + type: Transform + - uid: 1369 + components: + - pos: -7.5,43.5 + parent: 1 + type: Transform + - uid: 1370 + components: + - pos: -4.5,43.5 + parent: 1 + type: Transform + - uid: 1371 + components: + - pos: -3.5,47.5 + parent: 1 + type: Transform + - uid: 1372 + components: + - pos: -4.5,47.5 + parent: 1 + type: Transform + - uid: 1391 + components: + - pos: -19.5,43.5 + parent: 1 + type: Transform + - uid: 1392 + components: + - pos: -18.5,43.5 + parent: 1 + type: Transform + - uid: 1393 + components: + - pos: -16.5,43.5 + parent: 1 + type: Transform + - uid: 1394 + components: + - pos: -15.5,43.5 + parent: 1 + type: Transform + - uid: 1442 + components: + - pos: -24.5,44.5 + parent: 1 + type: Transform + - uid: 1443 + components: + - pos: -24.5,43.5 + parent: 1 + type: Transform + - uid: 1444 + components: + - pos: -24.5,42.5 + parent: 1 + type: Transform + - uid: 1448 + components: + - pos: -15.5,49.5 + parent: 1 + type: Transform + - uid: 1449 + components: + - pos: -15.5,48.5 + parent: 1 + type: Transform + - uid: 1518 + components: + - pos: -39.5,46.5 + parent: 1 + type: Transform + - uid: 1519 + components: + - pos: -39.5,45.5 + parent: 1 + type: Transform + - uid: 1521 + components: + - pos: -26.5,44.5 + parent: 1 + type: Transform + - uid: 1522 + components: + - pos: -26.5,43.5 + parent: 1 + type: Transform + - uid: 1523 + components: + - pos: -26.5,42.5 + parent: 1 + type: Transform + - uid: 1525 + components: + - pos: -32.5,41.5 + parent: 1 + type: Transform + - uid: 1526 + components: + - pos: -31.5,41.5 + parent: 1 + type: Transform + - uid: 1527 + components: + - pos: -30.5,41.5 + parent: 1 + type: Transform + - uid: 1537 + components: + - pos: -35.5,41.5 + parent: 1 + type: Transform + - uid: 1542 + components: + - pos: -34.5,41.5 + parent: 1 + type: Transform + - uid: 1543 + components: + - pos: -34.5,39.5 + parent: 1 + type: Transform + - uid: 1545 + components: + - pos: -35.5,39.5 + parent: 1 + type: Transform + - uid: 1547 + components: + - pos: -32.5,39.5 + parent: 1 + type: Transform + - uid: 1548 + components: + - pos: -31.5,39.5 + parent: 1 + type: Transform + - uid: 1549 + components: + - pos: -30.5,39.5 + parent: 1 + type: Transform + - uid: 1566 + components: + - pos: -39.5,43.5 + parent: 1 + type: Transform + - uid: 1567 + components: + - pos: -39.5,42.5 + parent: 1 + type: Transform + - uid: 1571 + components: + - pos: -27.5,46.5 + parent: 1 + type: Transform + - uid: 1577 + components: + - pos: -41.5,46.5 + parent: 1 + type: Transform + - uid: 1580 + components: + - pos: -41.5,43.5 + parent: 1 + type: Transform + - uid: 1581 + components: + - pos: -41.5,42.5 + parent: 1 + type: Transform + - uid: 1590 + components: + - pos: -28.5,46.5 + parent: 1 + type: Transform + - uid: 1614 + components: + - pos: -32.5,57.5 + parent: 1 + type: Transform + - uid: 1622 + components: + - pos: -40.5,55.5 + parent: 1 + type: Transform + - uid: 1643 + components: + - pos: -52.5,35.5 + parent: 1 + type: Transform + - uid: 1644 + components: + - pos: -52.5,39.5 + parent: 1 + type: Transform + - uid: 1645 + components: + - pos: -50.5,41.5 + parent: 1 + type: Transform + - uid: 1646 + components: + - pos: -50.5,42.5 + parent: 1 + type: Transform + - uid: 1647 + components: + - pos: -50.5,43.5 + parent: 1 + type: Transform + - uid: 1648 + components: + - pos: -50.5,44.5 + parent: 1 + type: Transform + - uid: 1649 + components: + - pos: -49.5,45.5 + parent: 1 + type: Transform + - uid: 1650 + components: + - pos: -48.5,46.5 + parent: 1 + type: Transform + - uid: 1651 + components: + - pos: -48.5,47.5 + parent: 1 + type: Transform + - uid: 1652 + components: + - pos: -48.5,48.5 + parent: 1 + type: Transform + - uid: 1653 + components: + - pos: -47.5,49.5 + parent: 1 + type: Transform + - uid: 1654 + components: + - pos: -46.5,49.5 + parent: 1 + type: Transform + - uid: 1655 + components: + - pos: -45.5,50.5 + parent: 1 + type: Transform + - uid: 1656 + components: + - pos: -45.5,51.5 + parent: 1 + type: Transform + - uid: 1657 + components: + - pos: -44.5,52.5 + parent: 1 + type: Transform + - uid: 1658 + components: + - pos: -43.5,52.5 + parent: 1 + type: Transform + - uid: 1659 + components: + - pos: -42.5,52.5 + parent: 1 + type: Transform + - uid: 1661 + components: + - pos: -40.5,54.5 + parent: 1 + type: Transform + - uid: 1667 + components: + - pos: -35.5,57.5 + parent: 1 + type: Transform + - uid: 1668 + components: + - pos: -34.5,57.5 + parent: 1 + type: Transform + - uid: 1671 + components: + - pos: -30.5,58.5 + parent: 1 + type: Transform + - uid: 1672 + components: + - pos: -29.5,59.5 + parent: 1 + type: Transform + - uid: 1673 + components: + - pos: -28.5,59.5 + parent: 1 + type: Transform + - uid: 1674 + components: + - pos: -27.5,59.5 + parent: 1 + type: Transform + - uid: 1675 + components: + - pos: -24.5,59.5 + parent: 1 + type: Transform + - uid: 1676 + components: + - pos: -23.5,59.5 + parent: 1 + type: Transform + - uid: 1677 + components: + - pos: -22.5,59.5 + parent: 1 + type: Transform + - uid: 1678 + components: + - pos: -20.5,61.5 + parent: 1 + type: Transform + - uid: 1679 + components: + - pos: -20.5,62.5 + parent: 1 + type: Transform + - uid: 1680 + components: + - pos: -20.5,63.5 + parent: 1 + type: Transform + - uid: 1681 + components: + - pos: -20.5,64.5 + parent: 1 + type: Transform + - uid: 1682 + components: + - pos: -19.5,65.5 + parent: 1 + type: Transform + - uid: 1683 + components: + - pos: -18.5,65.5 + parent: 1 + type: Transform + - uid: 1684 + components: + - pos: -17.5,65.5 + parent: 1 + type: Transform + - uid: 1685 + components: + - pos: -16.5,65.5 + parent: 1 + type: Transform + - uid: 1686 + components: + - pos: -14.5,67.5 + parent: 1 + type: Transform + - uid: 1687 + components: + - pos: -14.5,68.5 + parent: 1 + type: Transform + - uid: 1688 + components: + - pos: -14.5,69.5 + parent: 1 + type: Transform + - uid: 1689 + components: + - pos: -14.5,70.5 + parent: 1 + type: Transform + - uid: 1690 + components: + - pos: -13.5,71.5 + parent: 1 + type: Transform + - uid: 1691 + components: + - pos: -12.5,71.5 + parent: 1 + type: Transform + - uid: 1717 + components: + - pos: -41.5,45.5 + parent: 1 + type: Transform + - uid: 1721 + components: + - pos: -40.5,34.5 + parent: 1 + type: Transform + - uid: 1722 + components: + - pos: -40.5,33.5 + parent: 1 + type: Transform + - uid: 1723 + components: + - pos: -40.5,32.5 + parent: 1 + type: Transform + - uid: 1727 + components: + - pos: -43.5,35.5 + parent: 1 + type: Transform + - uid: 1728 + components: + - pos: -42.5,35.5 + parent: 1 + type: Transform + - uid: 1729 + components: + - pos: -41.5,35.5 + parent: 1 + type: Transform + - uid: 1763 + components: + - pos: -40.5,17.5 + parent: 1 + type: Transform + - uid: 1764 + components: + - pos: -40.5,18.5 + parent: 1 + type: Transform + - uid: 1765 + components: + - pos: -40.5,19.5 + parent: 1 + type: Transform + - uid: 1796 + components: + - pos: -15.5,57.5 + parent: 1 + type: Transform + - uid: 1797 + components: + - pos: -14.5,57.5 + parent: 1 + type: Transform + - uid: 1801 + components: + - pos: -15.5,50.5 + parent: 1 + type: Transform + - uid: 1805 + components: + - pos: -14.5,47.5 + parent: 1 + type: Transform + - uid: 1833 + components: + - pos: -14.5,51.5 + parent: 1 + type: Transform + - uid: 1835 + components: + - pos: -11.5,51.5 + parent: 1 + type: Transform + - uid: 1838 + components: + - pos: -13.5,51.5 + parent: 1 + type: Transform + - uid: 1839 + components: + - pos: -10.5,50.5 + parent: 1 + type: Transform + - uid: 1840 + components: + - pos: -11.5,47.5 + parent: 1 + type: Transform + - uid: 1967 + components: + - rot: 3.141592653589793 rad + pos: -50.5,-10.5 + parent: 1 + type: Transform + - uid: 1968 + components: + - rot: 3.141592653589793 rad + pos: -52.5,-10.5 + parent: 1 + type: Transform + - uid: 1969 + components: + - rot: 3.141592653589793 rad + pos: -51.5,-11.5 + parent: 1 + type: Transform + - uid: 1970 + components: + - rot: 3.141592653589793 rad + pos: -50.5,-12.5 + parent: 1 + type: Transform + - uid: 1971 + components: + - rot: 3.141592653589793 rad + pos: -46.5,-12.5 + parent: 1 + type: Transform + - uid: 1972 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-11.5 + parent: 1 + type: Transform + - uid: 1973 + components: + - rot: 3.141592653589793 rad + pos: -46.5,-10.5 + parent: 1 + type: Transform + - uid: 1974 + components: + - rot: 3.141592653589793 rad + pos: -52.5,-6.5 + parent: 1 + type: Transform + - uid: 1975 + components: + - rot: 3.141592653589793 rad + pos: -50.5,-5.5 + parent: 1 + type: Transform + - uid: 1976 + components: + - rot: 3.141592653589793 rad + pos: -49.5,-5.5 + parent: 1 + type: Transform + - uid: 1977 + components: + - rot: 3.141592653589793 rad + pos: -48.5,-5.5 + parent: 1 + type: Transform + - uid: 1978 + components: + - rot: 3.141592653589793 rad + pos: -47.5,-5.5 + parent: 1 + type: Transform + - uid: 1979 + components: + - rot: 3.141592653589793 rad + pos: -46.5,-5.5 + parent: 1 + type: Transform + - uid: 1980 + components: + - rot: 3.141592653589793 rad + pos: -46.5,11.5 + parent: 1 + type: Transform + - uid: 1981 + components: + - rot: 3.141592653589793 rad + pos: -47.5,11.5 + parent: 1 + type: Transform + - uid: 1982 + components: + - rot: 3.141592653589793 rad + pos: -48.5,11.5 + parent: 1 + type: Transform + - uid: 1983 + components: + - rot: 3.141592653589793 rad + pos: -49.5,11.5 + parent: 1 + type: Transform + - uid: 1984 + components: + - rot: 3.141592653589793 rad + pos: -50.5,11.5 + parent: 1 + type: Transform + - uid: 1985 + components: + - rot: 3.141592653589793 rad + pos: -52.5,12.5 + parent: 1 + type: Transform + - uid: 1986 + components: + - rot: 3.141592653589793 rad + pos: -52.5,16.5 + parent: 1 + type: Transform + - uid: 1989 + components: + - pos: -41.5,29.5 + parent: 1 + type: Transform + - uid: 1993 + components: + - pos: 48.5,-15.5 + parent: 1 + type: Transform + - uid: 1999 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,-5.5 + parent: 1 + type: Transform + - uid: 2000 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-5.5 + parent: 1 + type: Transform + - uid: 2004 + components: + - pos: 41.5,-10.5 + parent: 1 + type: Transform + - uid: 2007 + components: + - pos: 49.5,-15.5 + parent: 1 + type: Transform + - uid: 2020 + components: + - pos: 34.5,-6.5 + parent: 1 + type: Transform + - uid: 2021 + components: + - pos: 35.5,-6.5 + parent: 1 + type: Transform + - uid: 2022 + components: + - pos: 36.5,-6.5 + parent: 1 + type: Transform + - uid: 2023 + components: + - pos: 37.5,-6.5 + parent: 1 + type: Transform + - uid: 2024 + components: + - pos: 39.5,-6.5 + parent: 1 + type: Transform + - uid: 2025 + components: + - pos: 40.5,-6.5 + parent: 1 + type: Transform + - uid: 2026 + components: + - pos: 41.5,-6.5 + parent: 1 + type: Transform + - uid: 2027 + components: + - pos: 42.5,-6.5 + parent: 1 + type: Transform + - uid: 2049 + components: + - rot: 1.5707963267948966 rad + pos: 49.5,-5.5 + parent: 1 + type: Transform + - uid: 2053 + components: + - pos: 44.5,-13.5 + parent: 1 + type: Transform + - uid: 2054 + components: + - pos: 42.5,-10.5 + parent: 1 + type: Transform + - uid: 2058 + components: + - pos: 50.5,-12.5 + parent: 1 + type: Transform + - uid: 2110 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,7.5 + parent: 1 + type: Transform + - uid: 2111 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,6.5 + parent: 1 + type: Transform + - uid: 2112 + components: + - pos: 33.5,-3.5 + parent: 1 + type: Transform + - uid: 2113 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,5.5 + parent: 1 + type: Transform + - uid: 2120 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,0.5 + parent: 1 + type: Transform + - uid: 2121 + components: + - pos: 33.5,-4.5 + parent: 1 + type: Transform + - uid: 2122 + components: + - pos: 33.5,-5.5 + parent: 1 + type: Transform + - uid: 2268 + components: + - pos: -4.5,-18.5 + parent: 1 + type: Transform + - uid: 2269 + components: + - pos: -4.5,-19.5 + parent: 1 + type: Transform + - uid: 2270 + components: + - pos: -4.5,-20.5 + parent: 1 + type: Transform + - uid: 2271 + components: + - pos: -4.5,-21.5 + parent: 1 + type: Transform + - uid: 2272 + components: + - pos: -4.5,-22.5 + parent: 1 + type: Transform + - uid: 2273 + components: + - pos: -4.5,-23.5 + parent: 1 + type: Transform + - uid: 2274 + components: + - pos: -4.5,-24.5 + parent: 1 + type: Transform + - uid: 2275 + components: + - pos: -4.5,-25.5 + parent: 1 + type: Transform + - uid: 2276 + components: + - pos: -4.5,-26.5 + parent: 1 + type: Transform + - uid: 2277 + components: + - pos: -4.5,-27.5 + parent: 1 + type: Transform + - uid: 2278 + components: + - pos: -4.5,-28.5 + parent: 1 + type: Transform + - uid: 2279 + components: + - pos: -4.5,-29.5 + parent: 1 + type: Transform + - uid: 2280 + components: + - pos: -4.5,-30.5 + parent: 1 + type: Transform + - uid: 2282 + components: + - pos: -4.5,-32.5 + parent: 1 + type: Transform + - uid: 2283 + components: + - pos: -4.5,-33.5 + parent: 1 + type: Transform + - uid: 2284 + components: + - pos: -4.5,-34.5 + parent: 1 + type: Transform + - uid: 2285 + components: + - pos: -4.5,-35.5 + parent: 1 + type: Transform + - uid: 2286 + components: + - pos: -4.5,-36.5 + parent: 1 + type: Transform + - uid: 2287 + components: + - pos: -4.5,-38.5 + parent: 1 + type: Transform + - uid: 2288 + components: + - pos: -4.5,-39.5 + parent: 1 + type: Transform + - uid: 2289 + components: + - pos: -4.5,-40.5 + parent: 1 + type: Transform + - uid: 2290 + components: + - pos: -4.5,-41.5 + parent: 1 + type: Transform + - uid: 2300 + components: + - pos: -8.5,-42.5 + parent: 1 + type: Transform + - uid: 2334 + components: + - pos: 5.5,-11.5 + parent: 1 + type: Transform + - uid: 2345 + components: + - pos: -7.5,-42.5 + parent: 1 + type: Transform + - uid: 2346 + components: + - pos: -6.5,-42.5 + parent: 1 + type: Transform + - uid: 2347 + components: + - pos: 5.5,-42.5 + parent: 1 + type: Transform + - uid: 2348 + components: + - pos: 6.5,-42.5 + parent: 1 + type: Transform + - uid: 2349 + components: + - pos: 7.5,-42.5 + parent: 1 + type: Transform + - uid: 2350 + components: + - pos: 3.5,-32.5 + parent: 1 + type: Transform + - uid: 2351 + components: + - pos: 3.5,-33.5 + parent: 1 + type: Transform + - uid: 2352 + components: + - pos: 3.5,-34.5 + parent: 1 + type: Transform + - uid: 2353 + components: + - pos: 3.5,-37.5 + parent: 1 + type: Transform + - uid: 2354 + components: + - pos: 3.5,-36.5 + parent: 1 + type: Transform + - uid: 2355 + components: + - pos: 3.5,-38.5 + parent: 1 + type: Transform + - uid: 2356 + components: + - pos: 3.5,-39.5 + parent: 1 + type: Transform + - uid: 2357 + components: + - pos: 3.5,-40.5 + parent: 1 + type: Transform + - uid: 2358 + components: + - pos: 3.5,-41.5 + parent: 1 + type: Transform + - uid: 2369 + components: + - pos: 38.5,-16.5 + parent: 1 + type: Transform + - uid: 2370 + components: + - pos: 36.5,-19.5 + parent: 1 + type: Transform + - uid: 2371 + components: + - pos: 36.5,-20.5 + parent: 1 + type: Transform + - uid: 2374 + components: + - pos: -6.5,-11.5 + parent: 1 + type: Transform + - uid: 2390 + components: + - pos: -9.5,-10.5 + parent: 1 + type: Transform + - uid: 2446 + components: + - pos: 6.5,-27.5 + parent: 1 + type: Transform + - uid: 2447 + components: + - pos: 7.5,-27.5 + parent: 1 + type: Transform + - uid: 2448 + components: + - pos: -10.5,-10.5 + parent: 1 + type: Transform + - uid: 2460 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-16.5 + parent: 1 + type: Transform + - uid: 2473 + components: + - pos: 8.5,-10.5 + parent: 1 + type: Transform + - uid: 2474 + components: + - pos: 9.5,-10.5 + parent: 1 + type: Transform + - uid: 2538 + components: + - pos: 33.5,11.5 + parent: 1 + type: Transform + - uid: 2539 + components: + - pos: 33.5,10.5 + parent: 1 + type: Transform + - uid: 2540 + components: + - pos: 33.5,9.5 + parent: 1 + type: Transform + - uid: 2888 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,4.5 + parent: 1 + type: Transform + - uid: 2889 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,5.5 + parent: 1 + type: Transform + - uid: 2890 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,6.5 + parent: 1 + type: Transform + - uid: 2919 + components: + - pos: 38.5,-17.5 + parent: 1 + type: Transform + - uid: 2920 + components: + - pos: 35.5,-22.5 + parent: 1 + type: Transform + - uid: 2921 + components: + - pos: 33.5,-23.5 + parent: 1 + type: Transform + - uid: 2922 + components: + - pos: 33.5,-24.5 + parent: 1 + type: Transform + - uid: 2923 + components: + - pos: 32.5,-25.5 + parent: 1 + type: Transform + - uid: 2947 + components: + - pos: -40.5,-13.5 + parent: 1 + type: Transform + - uid: 3090 + components: + - pos: 40.5,-11.5 + parent: 1 + type: Transform + - uid: 3101 + components: + - pos: 39.5,-13.5 + parent: 1 + type: Transform + - uid: 3106 + components: + - pos: 22.5,-29.5 + parent: 1 + type: Transform + - uid: 3107 + components: + - pos: 22.5,-30.5 + parent: 1 + type: Transform + - uid: 3108 + components: + - pos: 21.5,-31.5 + parent: 1 + type: Transform + - uid: 3109 + components: + - pos: 20.5,-33.5 + parent: 1 + type: Transform + - uid: 3110 + components: + - pos: 20.5,-34.5 + parent: 1 + type: Transform + - uid: 3111 + components: + - pos: 20.5,-36.5 + parent: 1 + type: Transform + - uid: 3112 + components: + - pos: 20.5,-37.5 + parent: 1 + type: Transform + - uid: 3114 + components: + - pos: 18.5,-38.5 + parent: 1 + type: Transform + - uid: 3115 + components: + - pos: 17.5,-39.5 + parent: 1 + type: Transform + - uid: 3116 + components: + - pos: 17.5,-40.5 + parent: 1 + type: Transform + - uid: 3117 + components: + - pos: -13.5,-25.5 + parent: 1 + type: Transform + - uid: 3118 + components: + - pos: -12.5,-25.5 + parent: 1 + type: Transform + - uid: 3119 + components: + - pos: -13.5,-30.5 + parent: 1 + type: Transform + - uid: 3120 + components: + - pos: -12.5,-30.5 + parent: 1 + type: Transform + - uid: 3121 + components: + - pos: -17.5,-41.5 + parent: 1 + type: Transform + - uid: 3122 + components: + - pos: -18.5,-40.5 + parent: 1 + type: Transform + - uid: 3123 + components: + - pos: -18.5,-39.5 + parent: 1 + type: Transform + - uid: 3124 + components: + - pos: -19.5,-38.5 + parent: 1 + type: Transform + - uid: 3125 + components: + - pos: -20.5,-38.5 + parent: 1 + type: Transform + - uid: 3126 + components: + - pos: -21.5,-37.5 + parent: 1 + type: Transform + - uid: 3127 + components: + - pos: -21.5,-36.5 + parent: 1 + type: Transform + - uid: 3128 + components: + - pos: -21.5,-34.5 + parent: 1 + type: Transform + - uid: 3129 + components: + - pos: -21.5,-33.5 + parent: 1 + type: Transform + - uid: 3130 + components: + - pos: -22.5,-31.5 + parent: 1 + type: Transform + - uid: 3131 + components: + - pos: -23.5,-30.5 + parent: 1 + type: Transform + - uid: 3132 + components: + - pos: -23.5,-29.5 + parent: 1 + type: Transform + - uid: 3136 + components: + - pos: 34.5,-22.5 + parent: 1 + type: Transform + - uid: 3137 + components: + - pos: 36.5,-21.5 + parent: 1 + type: Transform + - uid: 3138 + components: + - pos: 31.5,-25.5 + parent: 1 + type: Transform + - uid: 3140 + components: + - pos: 28.5,-27.5 + parent: 1 + type: Transform + - uid: 3143 + components: + - pos: -16.5,23.5 + parent: 1 + type: Transform + - uid: 3154 + components: + - pos: -17.5,23.5 + parent: 1 + type: Transform + - uid: 3157 + components: + - pos: 24.5,-27.5 + parent: 1 + type: Transform + - uid: 3159 + components: + - pos: 30.5,-25.5 + parent: 1 + type: Transform + - uid: 3194 + components: + - rot: 3.141592653589793 rad + pos: 36.5,53.5 + parent: 1 + type: Transform + - uid: 3325 + components: + - rot: 3.141592653589793 rad + pos: 6.5,51.5 + parent: 1 + type: Transform + - uid: 3338 + components: + - rot: 3.141592653589793 rad + pos: 5.5,51.5 + parent: 1 + type: Transform + - uid: 3339 + components: + - rot: 3.141592653589793 rad + pos: 5.5,49.5 + parent: 1 + type: Transform + - uid: 3347 + components: + - rot: 3.141592653589793 rad + pos: 1.5,44.5 + parent: 1 + type: Transform + - uid: 3367 + components: + - rot: 3.141592653589793 rad + pos: 1.5,49.5 + parent: 1 + type: Transform + - uid: 3516 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-41.5 + parent: 1 + type: Transform + - uid: 3519 + components: + - pos: -47.5,17.5 + parent: 1 + type: Transform + - uid: 3575 + components: + - pos: 28.5,-10.5 + parent: 1 + type: Transform + - uid: 3610 + components: + - pos: 9.5,24.5 + parent: 1 + type: Transform + - uid: 3687 + components: + - pos: 16.5,35.5 + parent: 1 + type: Transform + - uid: 3688 + components: + - pos: 15.5,35.5 + parent: 1 + type: Transform + - uid: 3689 + components: + - pos: 14.5,35.5 + parent: 1 + type: Transform + - uid: 3690 + components: + - pos: 13.5,32.5 + parent: 1 + type: Transform + - uid: 3691 + components: + - pos: 13.5,32.5 + parent: 1 + type: Transform + - uid: 3695 + components: + - pos: 12.5,35.5 + parent: 1 + type: Transform + - uid: 3696 + components: + - pos: 11.5,35.5 + parent: 1 + type: Transform + - uid: 3697 + components: + - pos: 10.5,35.5 + parent: 1 + type: Transform + - uid: 3734 + components: + - pos: 22.5,-10.5 + parent: 1 + type: Transform + - uid: 3785 + components: + - pos: 17.5,-20.5 + parent: 1 + type: Transform + - uid: 3786 + components: + - pos: 18.5,-20.5 + parent: 1 + type: Transform + - uid: 3787 + components: + - pos: 19.5,-22.5 + parent: 1 + type: Transform + - uid: 3788 + components: + - pos: 19.5,-23.5 + parent: 1 + type: Transform + - uid: 3789 + components: + - pos: 19.5,-24.5 + parent: 1 + type: Transform + - uid: 3790 + components: + - pos: 17.5,-26.5 + parent: 1 + type: Transform + - uid: 3791 + components: + - pos: 18.5,-26.5 + parent: 1 + type: Transform + - uid: 3792 + components: + - pos: 21.5,-22.5 + parent: 1 + type: Transform + - uid: 3793 + components: + - pos: 21.5,-23.5 + parent: 1 + type: Transform + - uid: 3794 + components: + - pos: 21.5,-24.5 + parent: 1 + type: Transform + - uid: 3795 + components: + - pos: 17.5,-28.5 + parent: 1 + type: Transform + - uid: 3796 + components: + - pos: 18.5,-28.5 + parent: 1 + type: Transform + - uid: 3809 + components: + - pos: 23.5,-15.5 + parent: 1 + type: Transform + - uid: 3810 + components: + - pos: 23.5,-14.5 + parent: 1 + type: Transform + - uid: 3811 + components: + - pos: 23.5,-16.5 + parent: 1 + type: Transform + - uid: 3965 + components: + - pos: 4.5,35.5 + parent: 1 + type: Transform + - uid: 3966 + components: + - pos: 5.5,35.5 + parent: 1 + type: Transform + - uid: 3967 + components: + - pos: 6.5,35.5 + parent: 1 + type: Transform + - uid: 4106 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,35.5 + parent: 1 + type: Transform + - uid: 4107 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,35.5 + parent: 1 + type: Transform + - uid: 4112 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,20.5 + parent: 1 + type: Transform + - uid: 4113 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,20.5 + parent: 1 + type: Transform + - uid: 4123 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,16.5 + parent: 1 + type: Transform + - uid: 4124 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,16.5 + parent: 1 + type: Transform + - uid: 4125 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,16.5 + parent: 1 + type: Transform + - uid: 4216 + components: + - pos: 10.5,-29.5 + parent: 1 + type: Transform + - uid: 4420 + components: + - pos: 15.5,30.5 + parent: 1 + type: Transform + - uid: 4489 + components: + - pos: -41.5,-11.5 + parent: 1 + type: Transform + - uid: 4491 + components: + - pos: -39.5,-16.5 + parent: 1 + type: Transform + - uid: 4492 + components: + - pos: -39.5,-17.5 + parent: 1 + type: Transform + - uid: 4493 + components: + - pos: -37.5,-19.5 + parent: 1 + type: Transform + - uid: 4494 + components: + - pos: -37.5,-20.5 + parent: 1 + type: Transform + - uid: 4495 + components: + - pos: -37.5,-21.5 + parent: 1 + type: Transform + - uid: 4496 + components: + - pos: -36.5,-22.5 + parent: 1 + type: Transform + - uid: 4497 + components: + - pos: -35.5,-22.5 + parent: 1 + type: Transform + - uid: 4498 + components: + - pos: -34.5,-23.5 + parent: 1 + type: Transform + - uid: 4499 + components: + - pos: -34.5,-24.5 + parent: 1 + type: Transform + - uid: 4500 + components: + - pos: -33.5,-25.5 + parent: 1 + type: Transform + - uid: 4501 + components: + - pos: -32.5,-25.5 + parent: 1 + type: Transform + - uid: 4502 + components: + - pos: -31.5,-25.5 + parent: 1 + type: Transform + - uid: 4503 + components: + - pos: -29.5,-27.5 + parent: 1 + type: Transform + - uid: 4506 + components: + - pos: -25.5,-27.5 + parent: 1 + type: Transform + - uid: 4509 + components: + - pos: 45.5,35.5 + parent: 1 + type: Transform + - uid: 4510 + components: + - pos: 49.5,35.5 + parent: 1 + type: Transform + - uid: 4570 + components: + - pos: 15.5,-10.5 + parent: 1 + type: Transform + - uid: 4577 + components: + - pos: -15.5,23.5 + parent: 1 + type: Transform + - uid: 4580 + components: + - pos: -13.5,18.5 + parent: 1 + type: Transform + - uid: 4581 + components: + - pos: -13.5,19.5 + parent: 1 + type: Transform + - uid: 5751 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,31.5 + parent: 1 + type: Transform + - uid: 5752 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,34.5 + parent: 1 + type: Transform + - uid: 5829 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-3.5 + parent: 1 + type: Transform + - uid: 6211 + components: + - pos: -37.5,53.5 + parent: 1 + type: Transform + - uid: 6401 + components: + - pos: 10.5,21.5 + parent: 1 + type: Transform + - uid: 6402 + components: + - pos: 12.5,21.5 + parent: 1 + type: Transform + - uid: 6481 + components: + - pos: 46.5,-15.5 + parent: 1 + type: Transform + - uid: 6495 + components: + - pos: 43.5,-10.5 + parent: 1 + type: Transform + - uid: 6518 + components: + - pos: 50.5,-11.5 + parent: 1 + type: Transform + - uid: 6523 + components: + - pos: 44.5,-14.5 + parent: 1 + type: Transform + - uid: 6524 + components: + - pos: 44.5,-11.5 + parent: 1 + type: Transform + - uid: 6556 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,7.5 + parent: 1 + type: Transform + - uid: 6569 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,-5.5 + parent: 1 + type: Transform + - uid: 6696 + components: + - pos: 1.5,33.5 + parent: 1 + type: Transform + - uid: 7102 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-16.5 + parent: 1 + type: Transform + - uid: 7180 + components: + - pos: -48.5,34.5 + parent: 1 + type: Transform + - uid: 7181 + components: + - pos: -47.5,34.5 + parent: 1 + type: Transform + - uid: 7246 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-18.5 + parent: 1 + type: Transform + - uid: 7247 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-18.5 + parent: 1 + type: Transform + - uid: 7249 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-15.5 + parent: 1 + type: Transform + - uid: 7265 + components: + - pos: -31.5,57.5 + parent: 1 + type: Transform + - uid: 7425 + components: + - pos: -26.5,-28.5 + parent: 1 + type: Transform + - uid: 7426 + components: + - pos: 27.5,-28.5 + parent: 1 + type: Transform + - uid: 7429 + components: + - pos: 25.5,-28.5 + parent: 1 + type: Transform + - uid: 7632 + components: + - pos: -28.5,-28.5 + parent: 1 + type: Transform + - uid: 7824 + components: + - pos: -42.5,29.5 + parent: 1 + type: Transform + - uid: 7870 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,2.5 + parent: 1 + type: Transform + - uid: 7926 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,21.5 + parent: 1 + type: Transform + - uid: 7927 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,29.5 + parent: 1 + type: Transform + - uid: 7928 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,29.5 + parent: 1 + type: Transform + - uid: 7929 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,26.5 + parent: 1 + type: Transform + - uid: 7930 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,25.5 + parent: 1 + type: Transform + - uid: 8519 + components: + - pos: 1.5,27.5 + parent: 1 + type: Transform + - uid: 8533 + components: + - pos: 1.5,30.5 + parent: 1 + type: Transform + - uid: 8626 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 8913 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 8914 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 8921 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 8922 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 14086 + components: + - pos: -48.5,17.5 + parent: 1 + type: Transform + - uid: 14087 + components: + - pos: -50.5,17.5 + parent: 1 + type: Transform +- proto: ResearchAndDevelopmentServer + entities: + - uid: 3557 + components: + - pos: -25.5,23.5 + parent: 1 + type: Transform +- proto: ResearchComputerCircuitboard + entities: + - uid: 18335 + components: + - pos: 18.514442,-25.182604 + parent: 1 + type: Transform +- proto: RevolverCapGun + entities: + - uid: 3188 + components: + - pos: 46.541428,46.92756 + parent: 1 + type: Transform + - uid: 4365 + components: + - pos: -16.450819,5.681794 + parent: 1 + type: Transform +- proto: RiotShield + entities: + - uid: 7800 + components: + - pos: -18.644022,40.739033 + parent: 1 + type: Transform + - uid: 7801 + components: + - pos: -18.456522,40.489033 + parent: 1 + type: Transform +- proto: RitualDagger + entities: + - uid: 13305 + components: + - pos: -13.567444,6.478457 + parent: 1 + type: Transform +- proto: RobustHarvestChemistryBottle + entities: + - uid: 9008 + components: + - pos: 5.4284496,7.030745 + parent: 1 + type: Transform + - uid: 9009 + components: + - pos: 5.5534496,7.0515785 + parent: 1 + type: Transform +- proto: RollerBed + entities: + - uid: 16376 + components: + - pos: -15.5,56.5 + parent: 1 + type: Transform +- proto: RubberStampApproved + entities: + - uid: 8083 + components: + - pos: 2.6653385,83.53684 + parent: 1 + type: Transform + - uid: 9214 + components: + - pos: 25.569645,4.690318 + parent: 1 + type: Transform + - uid: 9338 + components: + - pos: -43.345627,8.726026 + parent: 1 + type: Transform +- proto: RubberStampDenied + entities: + - uid: 8084 + components: + - pos: 2.4097614,83.2814 + parent: 1 + type: Transform + - uid: 9209 + components: + - pos: 5.143981,72.62612 + parent: 1 + type: Transform + - uid: 9215 + components: + - pos: 25.298811,4.5236516 + parent: 1 + type: Transform + - uid: 9339 + components: + - pos: -43.470627,8.455193 + parent: 1 + type: Transform +- proto: SalvageMagnet + entities: + - uid: 1782 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,20.5 + parent: 1 + type: Transform +- proto: Saw + entities: + - uid: 1306 + components: + - pos: -21.578913,34.777924 + parent: 1 + type: Transform +- proto: SawElectric + entities: + - uid: 8680 + components: + - pos: 20.466082,27.893574 + parent: 1 + type: Transform +- proto: Scalpel + entities: + - uid: 2617 + components: + - pos: -21.516413,34.371674 + parent: 1 + type: Transform +- proto: ScalpelAdvanced + entities: + - uid: 8681 + components: + - pos: 20.409286,27.45365 + parent: 1 + type: Transform +- proto: ScalpelShiv + entities: + - uid: 8264 + components: + - pos: -37.431377,49.512848 + parent: 1 + type: Transform +- proto: Screwdriver + entities: + - uid: 7461 + components: + - pos: 22.634111,-23.425726 + parent: 1 + type: Transform + - uid: 8669 + components: + - pos: -6.6287556,21.412113 + parent: 1 + type: Transform + - uid: 14048 + components: + - pos: 38.58371,54.56172 + parent: 1 + type: Transform +- proto: SecurityTechFab + entities: + - uid: 4355 + components: + - pos: -6.5,64.5 + parent: 1 + type: Transform +- proto: SecurityTechFabCircuitboard + entities: + - uid: 4212 + components: + - pos: 16.470152,-24.41359 + parent: 1 + type: Transform +- proto: SeedExtractor + entities: + - uid: 4330 + components: + - pos: -31.5,49.5 + parent: 1 + type: Transform + - uid: 9045 + components: + - pos: 11.5,8.5 + parent: 1 + type: Transform + - uid: 10955 + components: + - pos: 38.5,-13.5 + parent: 1 + type: Transform +- proto: SheetGlass + entities: + - uid: 6594 + components: + - pos: -6.753741,24.452673 + parent: 1 + type: Transform + - uid: 8724 + components: + - pos: -13.523513,-34.354816 + parent: 1 + type: Transform + - uid: 9121 + components: + - pos: 13.53321,-20.862442 + parent: 1 + type: Transform + - uid: 9230 + components: + - pos: -25.433441,-12.420451 + parent: 1 + type: Transform +- proto: SheetPGlass + entities: + - uid: 9122 + components: + - pos: 13.554044,-21.237442 + parent: 1 + type: Transform +- proto: SheetPlasma + entities: + - uid: 2631 + components: + - pos: -18.53241,20.599617 + parent: 1 + type: Transform +- proto: SheetPlasma1 + entities: + - uid: 10941 + components: + - pos: 35.01931,-21.424337 + parent: 1 + type: Transform +- proto: SheetPlasteel + entities: + - uid: 9227 + components: + - pos: 13.566712,-21.504738 + parent: 1 + type: Transform + - uid: 9228 + components: + - pos: -25.454273,-11.628785 + parent: 1 + type: Transform +- proto: SheetPlastic + entities: + - uid: 4076 + components: + - pos: 9.361496,26.53074 + parent: 1 + type: Transform + - uid: 5811 + components: + - pos: -7.2642546,64.5313 + parent: 1 + type: Transform + - uid: 6593 + components: + - pos: -7.1513085,24.509438 + parent: 1 + type: Transform + - uid: 9305 + components: + - pos: -34.293766,2.546868 + parent: 1 + type: Transform +- proto: SheetSteel + entities: + - uid: 2655 + components: + - pos: -13.476898,-33.87969 + parent: 1 + type: Transform + - uid: 2656 + components: + - pos: -13.476898,-33.87969 + parent: 1 + type: Transform + - uid: 5813 + components: + - pos: -7.6600876,64.57297 + parent: 1 + type: Transform + - uid: 6592 + components: + - pos: -7.463681,24.509438 + parent: 1 + type: Transform + - uid: 8520 + components: + - pos: 9.602876,26.559124 + parent: 1 + type: Transform + - uid: 9120 + components: + - pos: 13.53321,-20.508276 + parent: 1 + type: Transform + - uid: 9188 + components: + - pos: 8.490331,-11.469109 + parent: 1 + type: Transform + - uid: 9229 + components: + - pos: -25.454273,-12.045451 + parent: 1 + type: Transform + - uid: 9304 + components: + - pos: -34.606266,2.567701 + parent: 1 + type: Transform +- proto: Shovel + entities: + - uid: 11082 + components: + - pos: 13.542923,5.535556 + parent: 1 + type: Transform +- proto: ShuttersNormal + entities: + - uid: 1065 + components: + - pos: -13.5,35.5 + parent: 1 + type: Transform + - links: + - 6627 + type: DeviceLinkSink + - uid: 1066 + components: + - pos: -15.5,35.5 + parent: 1 + type: Transform + - links: + - 6627 + type: DeviceLinkSink + - uid: 1106 + components: + - pos: -14.5,35.5 + parent: 1 + type: Transform + - links: + - 6627 + type: DeviceLinkSink +- proto: ShuttersNormalOpen + entities: + - uid: 550 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,24.5 + parent: 1 + type: Transform + - links: + - 2873 + type: DeviceLinkSink + - uid: 4061 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,22.5 + parent: 1 + type: Transform + - links: + - 2873 + type: DeviceLinkSink + - uid: 4078 + components: + - pos: 2.5,20.5 + parent: 1 + type: Transform + - links: + - 2873 + type: DeviceLinkSink + - uid: 5828 + components: + - pos: -41.5,-3.5 + parent: 1 + type: Transform + - links: + - 17634 + type: DeviceLinkSink + - uid: 6653 + components: + - pos: -40.5,-3.5 + parent: 1 + type: Transform + - links: + - 17634 + type: DeviceLinkSink + - uid: 6808 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,24.5 + parent: 1 + type: Transform + - links: + - 2873 + type: DeviceLinkSink + - uid: 7138 + components: + - pos: -5.5,8.5 + parent: 1 + type: Transform + - links: + - 9001 + type: DeviceLinkSink + - uid: 7139 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform + - links: + - 9001 + type: DeviceLinkSink + - uid: 7140 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform + - links: + - 9001 + type: DeviceLinkSink + - uid: 7141 + components: + - pos: -6.5,5.5 + parent: 1 + type: Transform + - links: + - 9001 + type: DeviceLinkSink + - uid: 7142 + components: + - pos: -7.5,5.5 + parent: 1 + type: Transform + - links: + - 9001 + type: DeviceLinkSink + - uid: 7143 + components: + - pos: -8.5,5.5 + parent: 1 + type: Transform + - links: + - 9001 + type: DeviceLinkSink + - uid: 8340 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,23.5 + parent: 1 + type: Transform + - links: + - 2873 + type: DeviceLinkSink + - uid: 8497 + components: + - pos: 14.5,35.5 + parent: 1 + type: Transform + - links: + - 8571 + type: DeviceLinkSink + - uid: 8498 + components: + - pos: 15.5,35.5 + parent: 1 + type: Transform + - links: + - 8571 + type: DeviceLinkSink + - uid: 8499 + components: + - pos: 16.5,35.5 + parent: 1 + type: Transform + - links: + - 8571 + type: DeviceLinkSink + - uid: 8500 + components: + - pos: 13.5,32.5 + parent: 1 + type: Transform + - links: + - 8571 + type: DeviceLinkSink + - uid: 8501 + components: + - pos: 15.5,30.5 + parent: 1 + type: Transform + - links: + - 8571 + type: DeviceLinkSink + - uid: 8622 + components: + - pos: -22.5,22.5 + parent: 1 + type: Transform + - uid: 8623 + components: + - pos: -22.5,20.5 + parent: 1 + type: Transform + - uid: 8624 + components: + - pos: -22.5,19.5 + parent: 1 + type: Transform + - uid: 9278 + components: + - pos: 26.5,3.5 + parent: 1 + type: Transform + - links: + - 17647 + type: DeviceLinkSink + - uid: 9279 + components: + - pos: 26.5,4.5 + parent: 1 + type: Transform + - links: + - 17647 + type: DeviceLinkSink + - uid: 9280 + components: + - pos: 26.5,5.5 + parent: 1 + type: Transform + - links: + - 17647 + type: DeviceLinkSink + - uid: 9281 + components: + - pos: 26.5,6.5 + parent: 1 + type: Transform + - links: + - 17647 + type: DeviceLinkSink + - uid: 9343 + components: + - pos: -44.5,9.5 + parent: 1 + type: Transform + - uid: 9344 + components: + - pos: -44.5,8.5 + parent: 1 + type: Transform + - uid: 9345 + components: + - pos: -44.5,7.5 + parent: 1 + type: Transform + - uid: 9346 + components: + - pos: -43.5,6.5 + parent: 1 + type: Transform + - uid: 9347 + components: + - pos: -42.5,6.5 + parent: 1 + type: Transform + - uid: 17631 + components: + - pos: 8.5,-24.5 + parent: 1 + type: Transform + - links: + - 9170 + type: DeviceLinkSink + - uid: 17632 + components: + - pos: 6.5,-27.5 + parent: 1 + type: Transform + - links: + - 9170 + type: DeviceLinkSink + - uid: 17633 + components: + - pos: 7.5,-27.5 + parent: 1 + type: Transform + - links: + - 9170 + type: DeviceLinkSink +- proto: ShuttersWindowOpen + entities: + - uid: 4060 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,22.5 + parent: 1 + type: Transform + - links: + - 2873 + type: DeviceLinkSink + - uid: 4067 + components: + - pos: 4.5,20.5 + parent: 1 + type: Transform + - links: + - 2873 + type: DeviceLinkSink + - uid: 8253 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,23.5 + parent: 1 + type: Transform + - links: + - 2873 + type: DeviceLinkSink + - uid: 9375 + components: + - pos: 3.5,20.5 + parent: 1 + type: Transform + - links: + - 2873 + type: DeviceLinkSink +- proto: ShuttleConsoleCircuitboard + entities: + - uid: 4206 + components: + - pos: 18.514778,-22.284924 + parent: 1 + type: Transform + - uid: 18333 + components: + - pos: 18.39598,-25.385345 + parent: 1 + type: Transform +- proto: ShuttleWindow + entities: + - uid: 8761 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 8756 + type: Transform + - uid: 8762 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 8756 + type: Transform + - uid: 8763 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 8756 + type: Transform + - uid: 8764 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 8756 + type: Transform + - uid: 8775 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 8756 + type: Transform + - uid: 8776 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 8756 + type: Transform + - uid: 8788 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 8756 + type: Transform + - uid: 8789 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 8756 + type: Transform + - uid: 8790 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 8756 + type: Transform + - uid: 8791 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 8756 + type: Transform + - uid: 8792 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 8756 + type: Transform + - uid: 8795 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 8756 + type: Transform + - uid: 8796 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 8756 + type: Transform + - uid: 8801 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 8756 + type: Transform + - uid: 8805 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 8756 + type: Transform + - uid: 8807 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 8756 + type: Transform + - uid: 8812 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 8756 + type: Transform + - uid: 8814 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 8756 + type: Transform +- proto: SignalButton + entities: + - uid: 2873 + components: + - rot: 3.141592653589793 rad + pos: 5.5,21.5 + parent: 1 + type: Transform + - linkedPorts: + 4067: + - Pressed: Toggle + 9375: + - Pressed: Toggle + 4078: + - Pressed: Toggle + 4061: + - Pressed: Toggle + 8340: + - Pressed: Toggle + 6808: + - Pressed: Toggle + 550: + - Pressed: Toggle + 8253: + - Pressed: Toggle + 4060: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 6627 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,31.5 + parent: 1 + type: Transform + - state: True + type: SignalSwitch + - linkedPorts: + 1066: + - Pressed: Toggle + 1106: + - Pressed: Toggle + 1065: + - Pressed: Toggle + type: DeviceLinkSource + - type: ItemCooldown + - uid: 7826 + components: + - pos: -43.5,23.5 + parent: 1 + type: Transform + - linkedPorts: + 4135: + - Pressed: Toggle + 7923: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 8571 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,33.5 + parent: 1 + type: Transform + - linkedPorts: + 8499: + - Pressed: Toggle + 8498: + - Pressed: Toggle + 8497: + - Pressed: Toggle + 8500: + - Pressed: Toggle + 8501: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 8572 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,31.5 + parent: 1 + type: Transform + - linkedPorts: + 1048: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 8625 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,21.5 + parent: 1 + type: Transform + - uid: 8738 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-25.5 + parent: 1 + type: Transform + - state: True + type: SignalSwitch + - linkedPorts: + 2813: + - Pressed: Toggle + 2814: + - Pressed: Toggle + 2821: + - Pressed: Toggle + 2822: + - Pressed: Toggle + type: DeviceLinkSource + - type: ItemCooldown + - uid: 8749 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-37.5 + parent: 1 + type: Transform + - linkedPorts: + 3050: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 8750 + components: + - pos: -2.5,-48.5 + parent: 1 + type: Transform + - linkedPorts: + 3052: + - Pressed: Toggle + 3051: + - Pressed: Toggle + 3053: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 9001 + components: + - pos: -9.5,9.5 + parent: 1 + type: Transform + - linkedPorts: + 7143: + - Pressed: Toggle + 7142: + - Pressed: Toggle + 7141: + - Pressed: Toggle + 7140: + - Pressed: Toggle + 7139: + - Pressed: Toggle + 7138: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 9170 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-24.5 + parent: 1 + type: Transform + - linkedPorts: + 17632: + - Pressed: Toggle + 17633: + - Pressed: Toggle + 17631: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 9348 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,10.5 + parent: 1 + type: Transform + - uid: 9363 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,3.5 + parent: 1 + type: Transform + - linkedPorts: + 110: + - Pressed: Toggle + 286: + - Pressed: Toggle + 109: + - Pressed: Toggle + 287: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 9404 + components: + - pos: -20.5,-14.5 + parent: 1 + type: Transform + - linkedPorts: + 9406: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 17634 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-3.5 + parent: 1 + type: Transform + - linkedPorts: + 6653: + - Pressed: Toggle + 5828: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 17647 + components: + - pos: 25.5,7.5 + parent: 1 + type: Transform + - linkedPorts: + 9281: + - Pressed: Toggle + 9280: + - Pressed: Toggle + 9279: + - Pressed: Toggle + 9278: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 17648 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-26.5 + parent: 1 + type: Transform + - state: True + type: SignalSwitch + - linkedPorts: + 4205: + - Pressed: Toggle + type: DeviceLinkSource + - type: ItemCooldown + - uid: 17649 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-38.5 + parent: 1 + type: Transform + - state: True + type: SignalSwitch + - linkedPorts: + 3066: + - Pressed: Toggle + type: DeviceLinkSource + - type: ItemCooldown +- proto: SignalButtonBridge + entities: + - uid: 4305 + components: + - pos: -0.5,79.5 + parent: 1 + type: Transform + - linkedPorts: + 4302: + - Pressed: Toggle + 4303: + - Pressed: Toggle + 4304: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SignalButtonWindows + entities: + - uid: 17612 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,73.5 + parent: 1 + type: Transform +- proto: SignAnomaly + entities: + - uid: 17888 + components: + - rot: 3.141592653589793 rad + pos: -11.5,26.5 + parent: 1 + type: Transform +- proto: SignAnomaly2 + entities: + - uid: 4579 + components: + - pos: -19.5,20.5 + parent: 1 + type: Transform +- proto: SignArmory + entities: + - uid: 17849 + components: + - rot: 3.141592653589793 rad + pos: -7.5,58.5 + parent: 1 + type: Transform +- proto: SignAtmos + entities: + - uid: 17850 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-10.5 + parent: 1 + type: Transform +- proto: SignAtmosMinsky + entities: + - uid: 17851 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-16.5 + parent: 1 + type: Transform +- proto: SignBar + entities: + - uid: 17852 + components: + - rot: 3.141592653589793 rad + pos: -5.5,12.5 + parent: 1 + type: Transform + - uid: 17853 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-6.5 + parent: 1 + type: Transform +- proto: SignBridge + entities: + - uid: 17895 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,69.5 + parent: 1 + type: Transform + - uid: 17896 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,75.5 + parent: 1 + type: Transform +- proto: SignCargo + entities: + - uid: 4156 + components: + - pos: -33.5,3.5 + parent: 1 + type: Transform + - uid: 17805 + components: + - rot: 3.141592653589793 rad + pos: -33.5,8.5 + parent: 1 + type: Transform +- proto: SignCargoDock + entities: + - uid: 4157 + components: + - pos: -44.5,3.5 + parent: 1 + type: Transform + - uid: 18055 + components: + - rot: 3.141592653589793 rad + pos: -53.5,-6.5 + parent: 1 + type: Transform + - uid: 18056 + components: + - rot: 3.141592653589793 rad + pos: -51.5,-12.5 + parent: 1 + type: Transform +- proto: SignChapel + entities: + - uid: 14050 + components: + - pos: 32.5,50.5 + parent: 1 + type: Transform + - uid: 14051 + components: + - pos: 31.5,53.5 + parent: 1 + type: Transform + - uid: 14053 + components: + - pos: 28.5,39.5 + parent: 1 + type: Transform +- proto: SignChem + entities: + - uid: 17854 + components: + - rot: 3.141592653589793 rad + pos: 7.5,26.5 + parent: 1 + type: Transform +- proto: SignCloning + entities: + - uid: 17855 + components: + - rot: 3.141592653589793 rad + pos: 12.5,29.5 + parent: 1 + type: Transform +- proto: SignConference + entities: + - uid: 17894 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,69.5 + parent: 1 + type: Transform +- proto: SignDirectionalBridge + entities: + - uid: 17785 + components: + - rot: 3.141592653589793 rad + pos: 1.5,40 + parent: 1 + type: Transform + - uid: 17791 + components: + - rot: 3.141592653589793 rad + pos: -2.5,16.5 + parent: 1 + type: Transform + - uid: 17804 + components: + - rot: 3.141592653589793 rad + pos: -29.499792,17.748297 + parent: 1 + type: Transform + - uid: 17818 + components: + - rot: 3.141592653589793 rad + pos: -2.4996006,-10.254558 + parent: 1 + type: Transform + - uid: 17826 + components: + - rot: 3.141592653589793 rad + pos: 28.501215,-6.252189 + parent: 1 + type: Transform + - uid: 17836 + components: + - rot: 3.141592653589793 rad + pos: 33.510975,16.766766 + parent: 1 + type: Transform +- proto: SignDirectionalBrig + entities: + - uid: 8228 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,46.5 + parent: 1 + type: Transform + - uid: 8229 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,46.5 + parent: 1 + type: Transform +- proto: SignDirectionalChapel + entities: + - uid: 14052 + components: + - rot: 3.141592653589793 rad + pos: 33.5,39.5 + parent: 1 + type: Transform +- proto: SignDirectionalDorms + entities: + - uid: 17843 + components: + - rot: 3.141592653589793 rad + pos: 13.5,39.5 + parent: 1 + type: Transform +- proto: SignDirectionalEng + entities: + - uid: 17779 + components: + - pos: 1.5,64.5 + parent: 1 + type: Transform + - uid: 17793 + components: + - pos: 1.5032121,16.251781 + parent: 1 + type: Transform + - uid: 17796 + components: + - pos: 1.5012997,40.742867 + parent: 1 + type: Transform + - uid: 17797 + components: + - pos: -29.5,17.5 + parent: 1 + type: Transform + - uid: 17812 + components: + - rot: 1.5707963267948966 rad + pos: -29.496174,-6.737631 + parent: 1 + type: Transform + - uid: 17819 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-6.5 + parent: 1 + type: Transform + - uid: 17832 + components: + - pos: 33.501507,12.256447 + parent: 1 + type: Transform + - uid: 17841 + components: + - pos: 33.496597,35.248928 + parent: 1 + type: Transform +- proto: SignDirectionalEvac + entities: + - uid: 17777 + components: + - pos: 1.5,65.5 + parent: 1 + type: Transform + - uid: 17784 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,39.5 + parent: 1 + type: Transform + - uid: 17792 + components: + - rot: 1.5707963267948966 rad + pos: 1.4961122,16.741375 + parent: 1 + type: Transform + - uid: 17798 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,17 + parent: 1 + type: Transform + - uid: 17808 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-10.5 + parent: 1 + type: Transform + - uid: 17809 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-6.5 + parent: 1 + type: Transform + - uid: 17817 + components: + - rot: 1.5707963267948966 rad + pos: -2.4996006,-10.751246 + parent: 1 + type: Transform + - uid: 17823 + components: + - rot: 3.141592653589793 rad + pos: 29.50534,-6.2478724 + parent: 1 + type: Transform + - uid: 17834 + components: + - rot: 3.141592653589793 rad + pos: 33.5,16.5 + parent: 1 + type: Transform + - uid: 17835 + components: + - rot: 1.5707963267948966 rad + pos: 33.510975,16.238834 + parent: 1 + type: Transform + - uid: 17838 + components: + - rot: 1.5707963267948966 rad + pos: 33.50556,35.762794 + parent: 1 + type: Transform +- proto: SignDirectionalFood + entities: + - uid: 17783 + components: + - pos: 1.5024469,64.25979 + parent: 1 + type: Transform + - uid: 17827 + components: + - rot: -1.5707963267948966 rad + pos: 28.499456,-6.7559733 + parent: 1 + type: Transform + - uid: 17833 + components: + - rot: -1.5707963267948966 rad + pos: 33.501507,12.767326 + parent: 1 + type: Transform +- proto: SignDirectionalGravity + entities: + - uid: 17806 + components: + - pos: -19.5,-10.5 + parent: 1 + type: Transform +- proto: SignDirectionalHop + entities: + - uid: 17789 + components: + - rot: 1.5707963267948966 rad + pos: 1.4986358,39.25191 + parent: 1 + type: Transform + - uid: 17795 + components: + - rot: 1.5707963267948966 rad + pos: -2.5008452,16.251781 + parent: 1 + type: Transform + - uid: 17813 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 1 + type: Transform + - uid: 17821 + components: + - rot: 3.141592653589793 rad + pos: 33.501915,-6.2549677 + parent: 1 + type: Transform + - uid: 17837 + components: + - pos: 33.5,35.5 + parent: 1 + type: Transform +- proto: SignDirectionalJanitor + entities: + - uid: 17807 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-6.5 + parent: 1 + type: Transform +- proto: SignDirectionalMed + entities: + - uid: 17781 + components: + - pos: 1.5024469,64.74938 + parent: 1 + type: Transform + - uid: 17787 + components: + - pos: 1.4998497,40.250824 + parent: 1 + type: Transform + - uid: 17799 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,16.5 + parent: 1 + type: Transform + - uid: 17815 + components: + - rot: 3.141592653589793 rad + pos: 1.5044566,-10.254558 + parent: 1 + type: Transform + - uid: 17824 + components: + - rot: 3.141592653589793 rad + pos: 29.50534,-6.7516565 + parent: 1 + type: Transform + - uid: 17828 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,12.5 + parent: 1 + type: Transform + - uid: 17842 + components: + - rot: -1.5707963267948966 rad + pos: 28.502005,35.256023 + parent: 1 + type: Transform +- proto: SignDirectionalSalvage + entities: + - uid: 17802 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,16.5 + parent: 1 + type: Transform +- proto: SignDirectionalSci + entities: + - uid: 17782 + components: + - pos: 1.5024469,65.749855 + parent: 1 + type: Transform + - uid: 17786 + components: + - pos: 1.5,40.5 + parent: 1 + type: Transform + - uid: 17801 + components: + - rot: 1.5707963267948966 rad + pos: -29.49926,16.75212 + parent: 1 + type: Transform + - uid: 17816 + components: + - rot: 3.141592653589793 rad + pos: 1.5044566,-10.751246 + parent: 1 + type: Transform + - uid: 17825 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-6.5 + parent: 1 + type: Transform + - uid: 17830 + components: + - rot: -1.5707963267948966 rad + pos: 29.504549,12.249351 + parent: 1 + type: Transform +- proto: SignDirectionalSec + entities: + - uid: 17780 + components: + - pos: 1.5024469,65.24607 + parent: 1 + type: Transform + - uid: 17790 + components: + - rot: 3.141592653589793 rad + pos: 1.5,16.5 + parent: 1 + type: Transform + - uid: 17800 + components: + - rot: 3.141592653589793 rad + pos: -29.49926,17.251825 + parent: 1 + type: Transform + - uid: 17811 + components: + - rot: 3.141592653589793 rad + pos: -29.496174,-6.248038 + parent: 1 + type: Transform + - uid: 17814 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-10.5 + parent: 1 + type: Transform + - uid: 17822 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-6.5 + parent: 1 + type: Transform + - uid: 17829 + components: + - rot: -1.5707963267948966 rad + pos: 29.504549,12.753135 + parent: 1 + type: Transform + - uid: 17839 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,35.5 + parent: 1 + type: Transform +- proto: SignDirectionalSolar + entities: + - uid: 17845 + components: + - rot: 3.141592653589793 rad + pos: 37.5,41.5 + parent: 1 + type: Transform + - uid: 17846 + components: + - rot: 3.141592653589793 rad + pos: 37.5,51.5 + parent: 1 + type: Transform + - uid: 17847 + components: + - rot: 3.141592653589793 rad + pos: -38.5,51.5 + parent: 1 + type: Transform + - uid: 17848 + components: + - rot: 3.141592653589793 rad + pos: -44.5,44.5 + parent: 1 + type: Transform +- proto: SignDirectionalSupply + entities: + - uid: 17778 + components: + - pos: 1.5,65 + parent: 1 + type: Transform + - uid: 17788 + components: + - pos: 1.4998497,39.754135 + parent: 1 + type: Transform + - uid: 17794 + components: + - rot: -1.5707963267948966 rad + pos: -2.5079443,16.755566 + parent: 1 + type: Transform + - uid: 17803 + components: + - pos: -29.492693,16.258232 + parent: 1 + type: Transform + - uid: 17810 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-6 + parent: 1 + type: Transform + - uid: 17820 + components: + - rot: -1.5707963267948966 rad + pos: 33.501915,-6.7516565 + parent: 1 + type: Transform + - uid: 17831 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,12.5 + parent: 1 + type: Transform + - uid: 17840 + components: + - rot: -1.5707963267948966 rad + pos: 28.50573,35.759808 + parent: 1 + type: Transform +- proto: SignDirectionalWash + entities: + - uid: 17844 + components: + - rot: 3.141592653589793 rad + pos: 24.5,39.5 + parent: 1 + type: Transform +- proto: SignDisposalSpace + entities: + - uid: 3993 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-33.5 + parent: 1 + type: Transform + - uid: 9605 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-38.5 + parent: 1 + type: Transform +- proto: SignDrones + entities: + - uid: 9562 + components: + - pos: -19.5,-13.5 + parent: 1 + type: Transform +- proto: SignEngine + entities: + - uid: 17864 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-35.5 + parent: 1 + type: Transform +- proto: SignEngineering + entities: + - uid: 17863 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-10.5 + parent: 1 + type: Transform +- proto: SignEscapePods + entities: + - uid: 6545 + components: + - rot: 3.141592653589793 rad + pos: -28.5,-27.5 + parent: 1 + type: Transform + - uid: 7428 + components: + - pos: 25.5,-27.5 + parent: 1 + type: Transform +- proto: SignEVA + entities: + - uid: 6935 + components: + - pos: 23.5,35.5 + parent: 1 + type: Transform + - uid: 6936 + components: + - pos: 28.5,30.5 + parent: 1 + type: Transform +- proto: SignExamroom + entities: + - uid: 8426 + components: + - rot: 3.141592653589793 rad + pos: 8.5,29.5 + parent: 1 + type: Transform +- proto: SignFire + entities: + - uid: 17865 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-48.5 + parent: 1 + type: Transform + - uid: 17869 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-38.5 + parent: 1 + type: Transform + - uid: 17870 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-36.5 + parent: 1 + type: Transform +- proto: SignFlammableMed + entities: + - uid: 17866 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-46.5 + parent: 1 + type: Transform + - uid: 17867 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-46.5 + parent: 1 + type: Transform + - uid: 17868 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-38.5 + parent: 1 + type: Transform + - uid: 17871 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-36.5 + parent: 1 + type: Transform +- proto: SignGravity + entities: + - uid: 9564 + components: + - pos: -19.5,-17.5 + parent: 1 + type: Transform +- proto: SignHead + entities: + - uid: 17357 + components: + - pos: -12.5,58.5 + parent: 1 + type: Transform + - uid: 17893 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,75.5 + parent: 1 + type: Transform + - uid: 17966 + components: + - rot: 3.141592653589793 rad + pos: 28.5,9.5 + parent: 1 + type: Transform + - uid: 18112 + components: + - pos: 13.5,33.5 + parent: 1 + type: Transform + - uid: 18113 + components: + - pos: -22.5,24.5 + parent: 1 + type: Transform + - uid: 18114 + components: + - pos: 8.5,-25.5 + parent: 1 + type: Transform +- proto: SignHydro1 + entities: + - uid: 17872 + components: + - rot: 3.141592653589793 rad + pos: 4.5,8.5 + parent: 1 + type: Transform +- proto: SignKiddiePlaque + entities: + - uid: 17892 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,44.5 + parent: 1 + type: Transform +- proto: SignLibrary + entities: + - uid: 17873 + components: + - rot: 3.141592653589793 rad + pos: -29.5,9.5 + parent: 1 + type: Transform + - uid: 17874 + components: + - rot: 3.141592653589793 rad + pos: -24.5,12.5 + parent: 1 + type: Transform +- proto: SignMail + entities: + - uid: 17875 + components: + - rot: 3.141592653589793 rad + pos: -34.5,12.5 + parent: 1 + type: Transform +- proto: SignMinerDock + entities: + - uid: 7925 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,29.5 + parent: 1 + type: Transform +- proto: SignMorgue + entities: + - uid: 17877 + components: + - rot: 3.141592653589793 rad + pos: 18.5,30.5 + parent: 1 + type: Transform +- proto: SignPrison + entities: + - uid: 8225 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,49.5 + parent: 1 + type: Transform + - uid: 8226 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,49.5 + parent: 1 + type: Transform + - uid: 8227 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,41.5 + parent: 1 + type: Transform +- proto: SignRedFour + entities: + - uid: 7703 + components: + - pos: -5.5,42.5 + parent: 1 + type: Transform +- proto: SignRedOne + entities: + - uid: 7699 + components: + - pos: -14.5,42.5 + parent: 1 + type: Transform +- proto: SignRedThree + entities: + - uid: 7702 + components: + - pos: -8.5,42.5 + parent: 1 + type: Transform +- proto: SignRedTwo + entities: + - uid: 7700 + components: + - pos: -11.5,42.5 + parent: 1 + type: Transform +- proto: SignRND + entities: + - uid: 17878 + components: + - rot: 3.141592653589793 rad + pos: -2.5,20.5 + parent: 1 + type: Transform +- proto: SignRobo + entities: + - uid: 17880 + components: + - rot: 3.141592653589793 rad + pos: -16.5,35.5 + parent: 1 + type: Transform + - uid: 17881 + components: + - rot: 3.141592653589793 rad + pos: -15.5,29.5 + parent: 1 + type: Transform +- proto: SignScience + entities: + - uid: 17879 + components: + - rot: 3.141592653589793 rad + pos: -6.5,19.5 + parent: 1 + type: Transform +- proto: SignScience1 + entities: + - uid: 17882 + components: + - rot: 3.141592653589793 rad + pos: -22.5,25.5 + parent: 1 + type: Transform +- proto: SignScience2 + entities: + - uid: 17883 + components: + - rot: 3.141592653589793 rad + pos: -13.5,21.5 + parent: 1 + type: Transform +- proto: SignSecureSmall + entities: + - uid: 17890 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-10.5 + parent: 1 + type: Transform +- proto: SignSecureSmallRed + entities: + - uid: 17884 + components: + - rot: 3.141592653589793 rad + pos: 1.5,48.5 + parent: 1 + type: Transform + - uid: 17885 + components: + - rot: 3.141592653589793 rad + pos: 1.5,45.5 + parent: 1 + type: Transform + - uid: 18118 + components: + - pos: 14.5,-22.5 + parent: 1 + type: Transform +- proto: SignShield + entities: + - uid: 17886 + components: + - rot: 3.141592653589793 rad + pos: -2.5,49.5 + parent: 1 + type: Transform + - uid: 18123 + components: + - pos: -15.5,51.5 + parent: 1 + type: Transform +- proto: SignShipDock + entities: + - uid: 17745 + components: + - rot: 3.141592653589793 rad + pos: 37.5,2.5 + parent: 1 + type: Transform + - uid: 17856 + components: + - rot: 3.141592653589793 rad + pos: 47.5,33.5 + parent: 1 + type: Transform + - uid: 17857 + components: + - rot: 3.141592653589793 rad + pos: 52.5,37.5 + parent: 1 + type: Transform + - uid: 17858 + components: + - rot: 3.141592653589793 rad + pos: 47.5,18.5 + parent: 1 + type: Transform + - uid: 17859 + components: + - rot: 3.141592653589793 rad + pos: 52.5,14.5 + parent: 1 + type: Transform + - uid: 18052 + components: + - rot: 3.141592653589793 rad + pos: -53.5,37.5 + parent: 1 + type: Transform + - uid: 18054 + components: + - rot: 3.141592653589793 rad + pos: -53.5,14.5 + parent: 1 + type: Transform +- proto: SignSmoking + entities: + - uid: 17757 + components: + - pos: 14.5,-29.5 + parent: 1 + type: Transform + - uid: 17758 + components: + - pos: -14.5,-32.5 + parent: 1 + type: Transform +- proto: SignSpace + entities: + - uid: 2062 + components: + - pos: 50.5,-6.5 + parent: 1 + type: Transform + - uid: 6479 + components: + - pos: 50.5,-13.5 + parent: 1 + type: Transform + - uid: 18045 + components: + - rot: 3.141592653589793 rad + pos: 35.5,0.5 + parent: 1 + type: Transform + - uid: 18046 + components: + - rot: 3.141592653589793 rad + pos: 50.5,14.5 + parent: 1 + type: Transform + - uid: 18047 + components: + - rot: 3.141592653589793 rad + pos: 44.5,16.5 + parent: 1 + type: Transform + - uid: 18048 + components: + - rot: 3.141592653589793 rad + pos: 50.5,37.5 + parent: 1 + type: Transform + - uid: 18049 + components: + - rot: 3.141592653589793 rad + pos: 38.5,56.5 + parent: 1 + type: Transform + - uid: 18050 + components: + - rot: 3.141592653589793 rad + pos: -39.5,56.5 + parent: 1 + type: Transform + - uid: 18051 + components: + - rot: 3.141592653589793 rad + pos: -51.5,39.5 + parent: 1 + type: Transform + - uid: 18053 + components: + - rot: 3.141592653589793 rad + pos: -51.5,16.5 + parent: 1 + type: Transform + - uid: 18057 + components: + - rot: 3.141592653589793 rad + pos: -51.5,-10.5 + parent: 1 + type: Transform + - uid: 18058 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-42.5 + parent: 1 + type: Transform + - uid: 18059 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-38.5 + parent: 1 + type: Transform + - uid: 18060 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-42.5 + parent: 1 + type: Transform + - uid: 18061 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-38.5 + parent: 1 + type: Transform +- proto: SignSurgery + entities: + - uid: 8678 + components: + - pos: 13.5,26.5 + parent: 1 + type: Transform +- proto: SignTelecomms + entities: + - uid: 17889 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-10.5 + parent: 1 + type: Transform +- proto: SignToolStorage + entities: + - uid: 17887 + components: + - rot: 3.141592653589793 rad + pos: -29.5,32.5 + parent: 1 + type: Transform +- proto: Sink + entities: + - uid: 8424 + components: + - pos: 20.5,29.5 + parent: 1 + type: Transform + - uid: 8510 + components: + - rot: 3.141592653589793 rad + pos: 15.5,27.5 + parent: 1 + type: Transform +- proto: SinkStemlessWater + entities: + - uid: 8602 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,31.5 + parent: 1 + type: Transform + - uid: 8933 + components: + - pos: -7.5,8.5 + parent: 1 + type: Transform + - uid: 8999 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-4.5 + parent: 1 + type: Transform + - uid: 10099 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-39.5 + parent: 1 + type: Transform + - uid: 10104 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-39.5 + parent: 1 + type: Transform +- proto: SMESBasic + entities: + - uid: 3459 + components: + - pos: 15.5,-11.5 + parent: 1 + type: Transform + - uid: 3831 + components: + - pos: 8.5,-29.5 + parent: 1 + type: Transform + - uid: 3832 + components: + - pos: 6.5,-29.5 + parent: 1 + type: Transform + - uid: 6507 + components: + - pos: 5.5,-29.5 + parent: 1 + type: Transform + - uid: 6575 + components: + - pos: 7.5,-29.5 + parent: 1 + type: Transform + - uid: 8011 + components: + - pos: -39.5,55.5 + parent: 1 + type: Transform + - uid: 14044 + components: + - pos: 36.5,55.5 + parent: 1 + type: Transform +- proto: SmokingPipe + entities: + - uid: 6850 + components: + - pos: 43.573822,50.730164 + parent: 1 + type: Transform + - uid: 8107 + components: + - pos: 6.465735,72.71857 + parent: 1 + type: Transform + - uid: 8279 + components: + - pos: -29.362019,44.061478 + parent: 1 + type: Transform +- proto: SmokingPipeFilledCannabis + entities: + - uid: 8994 + components: + - pos: -4.659399,11.620097 + parent: 1 + type: Transform +- proto: Soap + entities: + - uid: 9254 + components: + - pos: 16.665726,-4.834745 + parent: 1 + type: Transform +- proto: SoapOmega + entities: + - uid: 17614 + components: + - pos: 7.506346,46.726536 + parent: 1 + type: Transform +- proto: soda_dispenser + entities: + - uid: 4044 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,6.5 + parent: 1 + type: Transform +- proto: SolarPanel + entities: + - uid: 3515 + components: + - pos: 3.5,-59.5 + parent: 1 + type: Transform + - uid: 3835 + components: + - pos: -6.5,-70.5 + parent: 1 + type: Transform + - uid: 3836 + components: + - pos: -6.5,-69.5 + parent: 1 + type: Transform + - uid: 3837 + components: + - pos: -6.5,-68.5 + parent: 1 + type: Transform + - uid: 3838 + components: + - pos: -6.5,-67.5 + parent: 1 + type: Transform + - uid: 3839 + components: + - pos: -6.5,-66.5 + parent: 1 + type: Transform + - uid: 3840 + components: + - pos: -6.5,-65.5 + parent: 1 + type: Transform + - uid: 3841 + components: + - pos: -6.5,-64.5 + parent: 1 + type: Transform + - uid: 3842 + components: + - pos: -8.5,-70.5 + parent: 1 + type: Transform + - uid: 3843 + components: + - pos: -8.5,-69.5 + parent: 1 + type: Transform + - uid: 3844 + components: + - pos: -8.5,-68.5 + parent: 1 + type: Transform + - uid: 3845 + components: + - pos: -8.5,-67.5 + parent: 1 + type: Transform + - uid: 3846 + components: + - pos: -8.5,-66.5 + parent: 1 + type: Transform + - uid: 3847 + components: + - pos: -8.5,-65.5 + parent: 1 + type: Transform + - uid: 3848 + components: + - pos: -8.5,-64.5 + parent: 1 + type: Transform + - uid: 3849 + components: + - pos: -8.5,-62.5 + parent: 1 + type: Transform + - uid: 3850 + components: + - pos: -8.5,-61.5 + parent: 1 + type: Transform + - uid: 3851 + components: + - pos: -8.5,-60.5 + parent: 1 + type: Transform + - uid: 3852 + components: + - pos: -9.5,-59.5 + parent: 1 + type: Transform + - uid: 3853 + components: + - pos: -9.5,-58.5 + parent: 1 + type: Transform + - uid: 3854 + components: + - pos: -9.5,-57.5 + parent: 1 + type: Transform + - uid: 3855 + components: + - pos: -10.5,-56.5 + parent: 1 + type: Transform + - uid: 3856 + components: + - pos: -10.5,-55.5 + parent: 1 + type: Transform + - uid: 3857 + components: + - pos: -10.5,-54.5 + parent: 1 + type: Transform + - uid: 3858 + components: + - pos: -10.5,-53.5 + parent: 1 + type: Transform + - uid: 3859 + components: + - pos: -5.5,-62.5 + parent: 1 + type: Transform + - uid: 3860 + components: + - pos: -5.5,-61.5 + parent: 1 + type: Transform + - uid: 3861 + components: + - pos: -5.5,-60.5 + parent: 1 + type: Transform + - uid: 3862 + components: + - pos: -4.5,-59.5 + parent: 1 + type: Transform + - uid: 3863 + components: + - pos: -4.5,-58.5 + parent: 1 + type: Transform + - uid: 3864 + components: + - pos: -4.5,-57.5 + parent: 1 + type: Transform + - uid: 3865 + components: + - pos: -4.5,-56.5 + parent: 1 + type: Transform + - uid: 3866 + components: + - pos: -4.5,-55.5 + parent: 1 + type: Transform + - uid: 3867 + components: + - pos: -4.5,-54.5 + parent: 1 + type: Transform + - uid: 3868 + components: + - pos: -4.5,-53.5 + parent: 1 + type: Transform + - uid: 3869 + components: + - pos: 3.5,-58.5 + parent: 1 + type: Transform + - uid: 3870 + components: + - pos: 3.5,-57.5 + parent: 1 + type: Transform + - uid: 3871 + components: + - pos: 3.5,-56.5 + parent: 1 + type: Transform + - uid: 3872 + components: + - pos: 3.5,-55.5 + parent: 1 + type: Transform + - uid: 3873 + components: + - pos: 3.5,-54.5 + parent: 1 + type: Transform + - uid: 3874 + components: + - pos: 3.5,-53.5 + parent: 1 + type: Transform + - uid: 3875 + components: + - pos: 4.5,-60.5 + parent: 1 + type: Transform + - uid: 3876 + components: + - pos: 4.5,-61.5 + parent: 1 + type: Transform + - uid: 3877 + components: + - pos: 4.5,-62.5 + parent: 1 + type: Transform + - uid: 3878 + components: + - pos: 5.5,-64.5 + parent: 1 + type: Transform + - uid: 3879 + components: + - pos: 5.5,-65.5 + parent: 1 + type: Transform + - uid: 3880 + components: + - pos: 5.5,-66.5 + parent: 1 + type: Transform + - uid: 3881 + components: + - pos: 5.5,-67.5 + parent: 1 + type: Transform + - uid: 3882 + components: + - pos: 5.5,-68.5 + parent: 1 + type: Transform + - uid: 3883 + components: + - pos: 5.5,-69.5 + parent: 1 + type: Transform + - uid: 3884 + components: + - pos: 5.5,-70.5 + parent: 1 + type: Transform + - uid: 3885 + components: + - pos: 7.5,-64.5 + parent: 1 + type: Transform + - uid: 3886 + components: + - pos: 7.5,-65.5 + parent: 1 + type: Transform + - uid: 3887 + components: + - pos: 7.5,-66.5 + parent: 1 + type: Transform + - uid: 3888 + components: + - pos: 7.5,-67.5 + parent: 1 + type: Transform + - uid: 3889 + components: + - pos: 7.5,-68.5 + parent: 1 + type: Transform + - uid: 3890 + components: + - pos: 7.5,-69.5 + parent: 1 + type: Transform + - uid: 3891 + components: + - pos: 7.5,-70.5 + parent: 1 + type: Transform + - uid: 3892 + components: + - pos: 7.5,-62.5 + parent: 1 + type: Transform + - uid: 3893 + components: + - pos: 7.5,-61.5 + parent: 1 + type: Transform + - uid: 3894 + components: + - pos: 7.5,-60.5 + parent: 1 + type: Transform + - uid: 3895 + components: + - pos: 8.5,-59.5 + parent: 1 + type: Transform + - uid: 3896 + components: + - pos: 8.5,-58.5 + parent: 1 + type: Transform + - uid: 3897 + components: + - pos: 8.5,-57.5 + parent: 1 + type: Transform + - uid: 3898 + components: + - pos: 9.5,-56.5 + parent: 1 + type: Transform + - uid: 3899 + components: + - pos: 9.5,-55.5 + parent: 1 + type: Transform + - uid: 3900 + components: + - pos: 9.5,-54.5 + parent: 1 + type: Transform + - uid: 3901 + components: + - pos: 9.5,-53.5 + parent: 1 + type: Transform + - uid: 3902 + components: + - pos: -15.5,-47.5 + parent: 1 + type: Transform + - uid: 3903 + components: + - pos: -15.5,-46.5 + parent: 1 + type: Transform + - uid: 3904 + components: + - pos: -15.5,-45.5 + parent: 1 + type: Transform + - uid: 3905 + components: + - pos: -15.5,-44.5 + parent: 1 + type: Transform + - uid: 3906 + components: + - pos: -15.5,-43.5 + parent: 1 + type: Transform + - uid: 3907 + components: + - pos: -12.5,-49.5 + parent: 1 + type: Transform + - uid: 3908 + components: + - pos: -12.5,-50.5 + parent: 1 + type: Transform + - uid: 3909 + components: + - pos: -11.5,-50.5 + parent: 1 + type: Transform + - uid: 3910 + components: + - pos: -11.5,-51.5 + parent: 1 + type: Transform + - uid: 3911 + components: + - pos: 10.5,-51.5 + parent: 1 + type: Transform + - uid: 3912 + components: + - pos: 10.5,-50.5 + parent: 1 + type: Transform + - uid: 3913 + components: + - pos: 11.5,-50.5 + parent: 1 + type: Transform + - uid: 3914 + components: + - pos: 11.5,-49.5 + parent: 1 + type: Transform + - uid: 3915 + components: + - pos: 14.5,-47.5 + parent: 1 + type: Transform + - uid: 3916 + components: + - pos: 14.5,-46.5 + parent: 1 + type: Transform + - uid: 3917 + components: + - pos: 14.5,-45.5 + parent: 1 + type: Transform + - uid: 3918 + components: + - pos: 14.5,-44.5 + parent: 1 + type: Transform + - uid: 3919 + components: + - pos: 14.5,-43.5 + parent: 1 + type: Transform + - uid: 7445 + components: + - pos: 40.5,74.5 + parent: 1 + type: Transform + - uid: 7446 + components: + - pos: 41.5,74.5 + parent: 1 + type: Transform + - uid: 7447 + components: + - pos: 42.5,74.5 + parent: 1 + type: Transform + - uid: 7448 + components: + - pos: 43.5,74.5 + parent: 1 + type: Transform + - uid: 7449 + components: + - pos: 44.5,74.5 + parent: 1 + type: Transform + - uid: 7450 + components: + - pos: 45.5,74.5 + parent: 1 + type: Transform + - uid: 7451 + components: + - pos: 46.5,74.5 + parent: 1 + type: Transform + - uid: 7452 + components: + - pos: 40.5,72.5 + parent: 1 + type: Transform + - uid: 7453 + components: + - pos: 41.5,72.5 + parent: 1 + type: Transform + - uid: 7454 + components: + - pos: 42.5,72.5 + parent: 1 + type: Transform + - uid: 7455 + components: + - pos: 43.5,72.5 + parent: 1 + type: Transform + - uid: 7456 + components: + - pos: 44.5,72.5 + parent: 1 + type: Transform + - uid: 7457 + components: + - pos: 45.5,72.5 + parent: 1 + type: Transform + - uid: 7458 + components: + - pos: 46.5,72.5 + parent: 1 + type: Transform + - uid: 7459 + components: + - pos: 39.5,72.5 + parent: 1 + type: Transform + - uid: 7460 + components: + - pos: 39.5,74.5 + parent: 1 + type: Transform + - uid: 7465 + components: + - pos: 35.5,74.5 + parent: 1 + type: Transform + - uid: 7466 + components: + - pos: 34.5,74.5 + parent: 1 + type: Transform + - uid: 7467 + components: + - pos: 33.5,74.5 + parent: 1 + type: Transform + - uid: 7468 + components: + - pos: 32.5,74.5 + parent: 1 + type: Transform + - uid: 7469 + components: + - pos: 31.5,74.5 + parent: 1 + type: Transform + - uid: 7470 + components: + - pos: 30.5,74.5 + parent: 1 + type: Transform + - uid: 7471 + components: + - pos: 29.5,74.5 + parent: 1 + type: Transform + - uid: 7472 + components: + - pos: 28.5,74.5 + parent: 1 + type: Transform + - uid: 7473 + components: + - pos: 28.5,72.5 + parent: 1 + type: Transform + - uid: 7474 + components: + - pos: 29.5,72.5 + parent: 1 + type: Transform + - uid: 7475 + components: + - pos: 30.5,72.5 + parent: 1 + type: Transform + - uid: 7476 + components: + - pos: 31.5,72.5 + parent: 1 + type: Transform + - uid: 7477 + components: + - pos: 32.5,72.5 + parent: 1 + type: Transform + - uid: 7478 + components: + - pos: 33.5,72.5 + parent: 1 + type: Transform + - uid: 7479 + components: + - pos: 34.5,72.5 + parent: 1 + type: Transform + - uid: 7480 + components: + - pos: 35.5,72.5 + parent: 1 + type: Transform + - uid: 7481 + components: + - pos: 35.5,68.5 + parent: 1 + type: Transform + - uid: 7482 + components: + - pos: 39.5,70.5 + parent: 1 + type: Transform + - uid: 7483 + components: + - pos: 40.5,70.5 + parent: 1 + type: Transform + - uid: 7484 + components: + - pos: 41.5,70.5 + parent: 1 + type: Transform + - uid: 7485 + components: + - pos: 42.5,70.5 + parent: 1 + type: Transform + - uid: 7486 + components: + - pos: 43.5,70.5 + parent: 1 + type: Transform + - uid: 7487 + components: + - pos: 44.5,70.5 + parent: 1 + type: Transform + - uid: 7488 + components: + - pos: 45.5,70.5 + parent: 1 + type: Transform + - uid: 7489 + components: + - pos: 46.5,70.5 + parent: 1 + type: Transform + - uid: 7490 + components: + - pos: 46.5,68.5 + parent: 1 + type: Transform + - uid: 7491 + components: + - pos: 45.5,68.5 + parent: 1 + type: Transform + - uid: 7492 + components: + - pos: 44.5,68.5 + parent: 1 + type: Transform + - uid: 7493 + components: + - pos: 43.5,68.5 + parent: 1 + type: Transform + - uid: 7494 + components: + - pos: 42.5,68.5 + parent: 1 + type: Transform + - uid: 7495 + components: + - pos: 41.5,68.5 + parent: 1 + type: Transform + - uid: 7496 + components: + - pos: 40.5,68.5 + parent: 1 + type: Transform + - uid: 7497 + components: + - pos: 39.5,68.5 + parent: 1 + type: Transform + - uid: 7498 + components: + - pos: 34.5,68.5 + parent: 1 + type: Transform + - uid: 7499 + components: + - pos: 33.5,68.5 + parent: 1 + type: Transform + - uid: 7500 + components: + - pos: 32.5,68.5 + parent: 1 + type: Transform + - uid: 7501 + components: + - pos: 31.5,68.5 + parent: 1 + type: Transform + - uid: 7502 + components: + - pos: 30.5,68.5 + parent: 1 + type: Transform + - uid: 7503 + components: + - pos: 29.5,68.5 + parent: 1 + type: Transform + - uid: 7504 + components: + - pos: 28.5,68.5 + parent: 1 + type: Transform + - uid: 7505 + components: + - pos: 28.5,70.5 + parent: 1 + type: Transform + - uid: 7506 + components: + - pos: 29.5,70.5 + parent: 1 + type: Transform + - uid: 7507 + components: + - pos: 30.5,70.5 + parent: 1 + type: Transform + - uid: 7508 + components: + - pos: 31.5,70.5 + parent: 1 + type: Transform + - uid: 7509 + components: + - pos: 32.5,70.5 + parent: 1 + type: Transform + - uid: 7510 + components: + - pos: 33.5,70.5 + parent: 1 + type: Transform + - uid: 7511 + components: + - pos: 34.5,70.5 + parent: 1 + type: Transform + - uid: 7512 + components: + - pos: 35.5,70.5 + parent: 1 + type: Transform + - uid: 7945 + components: + - pos: -36.5,74.5 + parent: 1 + type: Transform + - uid: 7946 + components: + - pos: -35.5,74.5 + parent: 1 + type: Transform + - uid: 7947 + components: + - pos: -34.5,74.5 + parent: 1 + type: Transform + - uid: 7948 + components: + - pos: -33.5,74.5 + parent: 1 + type: Transform + - uid: 7949 + components: + - pos: -32.5,74.5 + parent: 1 + type: Transform + - uid: 7950 + components: + - pos: -31.5,74.5 + parent: 1 + type: Transform + - uid: 7951 + components: + - pos: -30.5,74.5 + parent: 1 + type: Transform + - uid: 7952 + components: + - pos: -29.5,74.5 + parent: 1 + type: Transform + - uid: 7953 + components: + - pos: -36.5,72.5 + parent: 1 + type: Transform + - uid: 7954 + components: + - pos: -35.5,72.5 + parent: 1 + type: Transform + - uid: 7955 + components: + - pos: -34.5,72.5 + parent: 1 + type: Transform + - uid: 7956 + components: + - pos: -33.5,72.5 + parent: 1 + type: Transform + - uid: 7957 + components: + - pos: -32.5,72.5 + parent: 1 + type: Transform + - uid: 7958 + components: + - pos: -31.5,72.5 + parent: 1 + type: Transform + - uid: 7959 + components: + - pos: -30.5,72.5 + parent: 1 + type: Transform + - uid: 7960 + components: + - pos: -29.5,72.5 + parent: 1 + type: Transform + - uid: 7961 + components: + - pos: -36.5,70.5 + parent: 1 + type: Transform + - uid: 7962 + components: + - pos: -35.5,70.5 + parent: 1 + type: Transform + - uid: 7963 + components: + - pos: -34.5,70.5 + parent: 1 + type: Transform + - uid: 7964 + components: + - pos: -33.5,70.5 + parent: 1 + type: Transform + - uid: 7965 + components: + - pos: -32.5,70.5 + parent: 1 + type: Transform + - uid: 7966 + components: + - pos: -31.5,70.5 + parent: 1 + type: Transform + - uid: 7967 + components: + - pos: -30.5,70.5 + parent: 1 + type: Transform + - uid: 7968 + components: + - pos: -29.5,70.5 + parent: 1 + type: Transform + - uid: 7969 + components: + - pos: -36.5,68.5 + parent: 1 + type: Transform + - uid: 7970 + components: + - pos: -35.5,68.5 + parent: 1 + type: Transform + - uid: 7971 + components: + - pos: -34.5,68.5 + parent: 1 + type: Transform + - uid: 7972 + components: + - pos: -33.5,68.5 + parent: 1 + type: Transform + - uid: 7973 + components: + - pos: -32.5,68.5 + parent: 1 + type: Transform + - uid: 7974 + components: + - pos: -31.5,68.5 + parent: 1 + type: Transform + - uid: 7975 + components: + - pos: -30.5,68.5 + parent: 1 + type: Transform + - uid: 7976 + components: + - pos: -29.5,68.5 + parent: 1 + type: Transform + - uid: 7977 + components: + - pos: -41.5,68.5 + parent: 1 + type: Transform + - uid: 7978 + components: + - pos: -40.5,68.5 + parent: 1 + type: Transform + - uid: 7979 + components: + - pos: -42.5,68.5 + parent: 1 + type: Transform + - uid: 7980 + components: + - pos: -43.5,68.5 + parent: 1 + type: Transform + - uid: 7981 + components: + - pos: -44.5,68.5 + parent: 1 + type: Transform + - uid: 7982 + components: + - pos: -45.5,68.5 + parent: 1 + type: Transform + - uid: 7983 + components: + - pos: -46.5,68.5 + parent: 1 + type: Transform + - uid: 7984 + components: + - pos: -47.5,68.5 + parent: 1 + type: Transform + - uid: 7985 + components: + - pos: -47.5,70.5 + parent: 1 + type: Transform + - uid: 7986 + components: + - pos: -46.5,70.5 + parent: 1 + type: Transform + - uid: 7987 + components: + - pos: -45.5,70.5 + parent: 1 + type: Transform + - uid: 7988 + components: + - pos: -44.5,70.5 + parent: 1 + type: Transform + - uid: 7989 + components: + - pos: -43.5,70.5 + parent: 1 + type: Transform + - uid: 7990 + components: + - pos: -42.5,70.5 + parent: 1 + type: Transform + - uid: 7991 + components: + - pos: -41.5,70.5 + parent: 1 + type: Transform + - uid: 7992 + components: + - pos: -40.5,70.5 + parent: 1 + type: Transform + - uid: 7993 + components: + - pos: -47.5,72.5 + parent: 1 + type: Transform + - uid: 7994 + components: + - pos: -46.5,72.5 + parent: 1 + type: Transform + - uid: 7995 + components: + - pos: -45.5,72.5 + parent: 1 + type: Transform + - uid: 7996 + components: + - pos: -44.5,72.5 + parent: 1 + type: Transform + - uid: 7997 + components: + - pos: -43.5,72.5 + parent: 1 + type: Transform + - uid: 7998 + components: + - pos: -42.5,72.5 + parent: 1 + type: Transform + - uid: 7999 + components: + - pos: -41.5,72.5 + parent: 1 + type: Transform + - uid: 8000 + components: + - pos: -40.5,72.5 + parent: 1 + type: Transform + - uid: 8001 + components: + - pos: -47.5,74.5 + parent: 1 + type: Transform + - uid: 8002 + components: + - pos: -46.5,74.5 + parent: 1 + type: Transform + - uid: 8003 + components: + - pos: -45.5,74.5 + parent: 1 + type: Transform + - uid: 8004 + components: + - pos: -44.5,74.5 + parent: 1 + type: Transform + - uid: 8005 + components: + - pos: -43.5,74.5 + parent: 1 + type: Transform + - uid: 8006 + components: + - pos: -42.5,74.5 + parent: 1 + type: Transform + - uid: 8007 + components: + - pos: -41.5,74.5 + parent: 1 + type: Transform + - uid: 8008 + components: + - pos: -40.5,74.5 + parent: 1 + type: Transform +- proto: SolarPanelBroken + entities: + - uid: 10110 + components: + - pos: 17.5,-37.5 + parent: 1 + type: Transform +- proto: SolarTracker + entities: + - uid: 6554 + components: + - pos: 37.5,75.5 + parent: 1 + type: Transform + - uid: 7654 + components: + - pos: -38.5,75.5 + parent: 1 + type: Transform + - uid: 17491 + components: + - pos: 6.5,-71.5 + parent: 1 + type: Transform + - uid: 17652 + components: + - pos: -7.5,-71.5 + parent: 1 + type: Transform +- proto: SpaceCash + entities: + - uid: 9948 + components: + - pos: -38.499844,-13.352273 + parent: 1 + type: Transform + - uid: 9949 + components: + - pos: -38.54244,-12.855584 + parent: 1 + type: Transform + - uid: 9950 + components: + - pos: -39.36597,-11.422282 + parent: 1 + type: Transform + - uid: 9951 + components: + - pos: -38.812218,-11.251988 + parent: 1 + type: Transform + - uid: 9952 + components: + - pos: -38.23007,-11.436473 + parent: 1 + type: Transform + - uid: 9953 + components: + - pos: -38.329456,-12.387278 + parent: 1 + type: Transform + - uid: 13431 + components: + - pos: -23.58317,58.71947 + parent: 1 + type: Transform + - uid: 13432 + components: + - pos: -23.497978,58.520798 + parent: 1 + type: Transform + - uid: 13433 + components: + - pos: -23.412786,58.747852 + parent: 1 + type: Transform + - uid: 13434 + components: + - pos: -23.35599,58.94653 + parent: 1 + type: Transform + - uid: 18103 + components: + - pos: -29.227093,53.8533 + parent: 1 + type: Transform + - uid: 18104 + components: + - pos: -29.25549,53.668816 + parent: 1 + type: Transform + - uid: 18105 + components: + - pos: -29.653055,53.73977 + parent: 1 + type: Transform +- proto: SpaceVillainArcadeComputerCircuitboard + entities: + - uid: 4213 + components: + - pos: 16.583744,-22.398453 + parent: 1 + type: Transform +- proto: SpawnMobAlexander + entities: + - uid: 10644 + components: + - pos: 5.5,-0.5 + parent: 1 + type: Transform +- proto: SpawnMobBandito + entities: + - uid: 18206 + components: + - pos: -36.5,2.5 + parent: 1 + type: Transform +- proto: SpawnMobCatException + entities: + - uid: 2613 + components: + - pos: -7.5,-22.5 + parent: 1 + type: Transform +- proto: SpawnMobCatFloppa + entities: + - uid: 18222 + components: + - pos: -23.5,27.5 + parent: 1 + type: Transform +- proto: SpawnMobCatRuntime + entities: + - uid: 18220 + components: + - pos: 15.5,33.5 + parent: 1 + type: Transform +- proto: SpawnMobCorgi + entities: + - uid: 9217 + components: + - pos: 24.5,2.5 + parent: 1 + type: Transform +- proto: SpawnMobDrone + entities: + - uid: 3981 + components: + - pos: -24.5,-12.5 + parent: 1 + type: Transform + - uid: 4537 + components: + - pos: -24.5,-11.5 + parent: 1 + type: Transform + - uid: 4538 + components: + - pos: -24.5,-13.5 + parent: 1 + type: Transform +- proto: SpawnMobFoxRenault + entities: + - uid: 18223 + components: + - pos: -6.5,73.5 + parent: 1 + type: Transform +- proto: SpawnMobGoat + entities: + - uid: 6707 + components: + - pos: 11.5,2.5 + parent: 1 + type: Transform +- proto: SpawnMobHamsterHamlet + entities: + - uid: 8116 + components: + - pos: -3.5,79.5 + parent: 1 + type: Transform +- proto: SpawnMobMcGriff + entities: + - uid: 18221 + components: + - pos: -11.5,49.5 + parent: 1 + type: Transform +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 6381 + components: + - pos: -10.5,7.5 + parent: 1 + type: Transform +- proto: SpawnMobMouse + entities: + - uid: 18208 + components: + - pos: 23.5,-22.5 + parent: 1 + type: Transform + - uid: 18211 + components: + - pos: 38.5,52.5 + parent: 1 + type: Transform + - uid: 18212 + components: + - pos: 18.5,63.5 + parent: 1 + type: Transform + - uid: 18213 + components: + - pos: -13.5,67.5 + parent: 1 + type: Transform + - uid: 18214 + components: + - pos: -46.5,48.5 + parent: 1 + type: Transform + - uid: 18215 + components: + - pos: -42.5,9.5 + parent: 1 + type: Transform +- proto: SpawnMobPossumMorty + entities: + - uid: 18217 + components: + - pos: 20.5,33.5 + parent: 1 + type: Transform +- proto: SpawnMobRaccoonMorticia + entities: + - uid: 18218 + components: + - pos: 7.5,-14.5 + parent: 1 + type: Transform +- proto: SpawnMobShiva + entities: + - uid: 7697 + components: + - pos: -15.5,59.5 + parent: 1 + type: Transform +- proto: SpawnMobSlothPaperwork + entities: + - uid: 6681 + components: + - pos: -28.5,6.5 + parent: 1 + type: Transform +- proto: SpawnMobWalter + entities: + - uid: 18219 + components: + - pos: 3.5,21.5 + parent: 1 + type: Transform +- proto: SpawnPointAssistant + entities: + - uid: 4253 + components: + - pos: 11.5,41.5 + parent: 1 + type: Transform + - uid: 4254 + components: + - pos: 11.5,45.5 + parent: 1 + type: Transform + - uid: 4255 + components: + - pos: 17.5,47.5 + parent: 1 + type: Transform + - uid: 8397 + components: + - pos: 17.5,46.5 + parent: 1 + type: Transform +- proto: SpawnPointAtmos + entities: + - uid: 18171 + components: + - pos: -14.5,-18.5 + parent: 1 + type: Transform + - uid: 18172 + components: + - pos: -13.5,-18.5 + parent: 1 + type: Transform +- proto: SpawnPointBartender + entities: + - uid: 9145 + components: + - pos: -7.5,11.5 + parent: 1 + type: Transform +- proto: SpawnPointBorg + entities: + - uid: 2624 + components: + - pos: -13.5,32.5 + parent: 1 + type: Transform + - uid: 2632 + components: + - pos: -15.5,32.5 + parent: 1 + type: Transform +- proto: SpawnPointBotanist + entities: + - uid: 9146 + components: + - pos: 15.5,10.5 + parent: 1 + type: Transform + - uid: 9147 + components: + - pos: 14.5,10.5 + parent: 1 + type: Transform +- proto: SpawnPointCaptain + entities: + - uid: 6799 + components: + - pos: -2.5,79.5 + parent: 1 + type: Transform +- proto: SpawnPointCargoTechnician + entities: + - uid: 9157 + components: + - pos: -36.5,11.5 + parent: 1 + type: Transform + - uid: 9158 + components: + - pos: -35.5,11.5 + parent: 1 + type: Transform +- proto: SpawnPointChaplain + entities: + - uid: 18173 + components: + - pos: 25.5,53.5 + parent: 1 + type: Transform +- proto: SpawnPointChef + entities: + - uid: 4574 + components: + - pos: 8.5,-4.5 + parent: 1 + type: Transform + - uid: 9148 + components: + - pos: 8.5,-1.5 + parent: 1 + type: Transform +- proto: SpawnPointChemist + entities: + - uid: 8687 + components: + - pos: 3.5,24.5 + parent: 1 + type: Transform + - uid: 8688 + components: + - pos: 4.5,24.5 + parent: 1 + type: Transform +- proto: SpawnPointChiefEngineer + entities: + - uid: 6831 + components: + - pos: -5.5,81.5 + parent: 1 + type: Transform +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 6830 + components: + - pos: 4.5,81.5 + parent: 1 + type: Transform +- proto: SpawnPointClown + entities: + - uid: 14684 + components: + - pos: -16.5,1.5 + parent: 1 + type: Transform +- proto: SpawnPointDetective + entities: + - uid: 6841 + components: + - pos: 42.5,48.5 + parent: 1 + type: Transform +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 6834 + components: + - pos: 25.5,3.5 + parent: 1 + type: Transform +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 6829 + components: + - pos: 1.5,79.5 + parent: 1 + type: Transform +- proto: SpawnPointJanitor + entities: + - uid: 9164 + components: + - pos: 17.5,-4.5 + parent: 1 + type: Transform + - uid: 9165 + components: + - pos: 17.5,-5.5 + parent: 1 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 2043 + components: + - pos: 42.5,-7.5 + parent: 1 + type: Transform + - uid: 2044 + components: + - pos: 40.5,-7.5 + parent: 1 + type: Transform + - uid: 6516 + components: + - pos: 41.5,-7.5 + parent: 1 + type: Transform +- proto: SpawnPointLawyer + entities: + - uid: 9153 + components: + - pos: 4.5,63.5 + parent: 1 + type: Transform + - uid: 18190 + components: + - pos: 2.5,60.5 + parent: 1 + type: Transform +- proto: SpawnPointLibrarian + entities: + - uid: 9160 + components: + - pos: -25.5,2.5 + parent: 1 + type: Transform +- proto: SpawnPointMedicalDoctor + entities: + - uid: 15522 + components: + - pos: 11.5,25.5 + parent: 1 + type: Transform + - uid: 15523 + components: + - pos: 11.5,26.5 + parent: 1 + type: Transform +- proto: SpawnPointMedicalIntern + entities: + - uid: 8691 + components: + - pos: 10.5,20.5 + parent: 1 + type: Transform + - uid: 8692 + components: + - pos: 12.5,20.5 + parent: 1 + type: Transform +- proto: SpawnPointMime + entities: + - uid: 9151 + components: + - pos: -16.5,4.5 + parent: 1 + type: Transform +- proto: SpawnPointMusician + entities: + - uid: 9152 + components: + - pos: -17.5,-4.5 + parent: 1 + type: Transform +- proto: SpawnPointObserver + entities: + - uid: 4251 + components: + - pos: -0.5,15.5 + parent: 1 + type: Transform + - uid: 4252 + components: + - pos: -0.5,-9.5 + parent: 1 + type: Transform +- proto: SpawnPointParamedic + entities: + - uid: 6178 + components: + - pos: 11.5,27.5 + parent: 1 + type: Transform +- proto: SpawnPointQuartermaster + entities: + - uid: 6833 + components: + - pos: 0.5,82.5 + parent: 1 + type: Transform +- proto: SpawnPointResearchAssistant + entities: + - uid: 18127 + components: + - pos: -12.5,23.5 + parent: 1 + type: Transform + - uid: 18128 + components: + - pos: -20.5,22.5 + parent: 1 + type: Transform +- proto: SpawnPointResearchDirector + entities: + - uid: 6832 + components: + - pos: -1.5,82.5 + parent: 1 + type: Transform +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 9154 + components: + - pos: -37.5,27.5 + parent: 1 + type: Transform + - uid: 9155 + components: + - pos: -37.5,26.5 + parent: 1 + type: Transform + - uid: 9156 + components: + - pos: -37.5,25.5 + parent: 1 + type: Transform +- proto: SpawnPointScientist + entities: + - uid: 8695 + components: + - pos: -12.5,22.5 + parent: 1 + type: Transform + - uid: 8696 + components: + - pos: -20.5,23.5 + parent: 1 + type: Transform +- proto: SpawnPointSecurityCadet + entities: + - uid: 6839 + components: + - pos: -5.5,53.5 + parent: 1 + type: Transform + - uid: 6840 + components: + - pos: -5.5,54.5 + parent: 1 + type: Transform +- proto: SpawnPointSecurityOfficer + entities: + - uid: 6836 + components: + - pos: -18.5,41.5 + parent: 1 + type: Transform + - uid: 6837 + components: + - pos: -17.5,41.5 + parent: 1 + type: Transform + - uid: 6838 + components: + - pos: -16.5,41.5 + parent: 1 + type: Transform +- proto: SpawnPointSeniorEngineer + entities: + - uid: 2621 + components: + - pos: 6.5,-18.5 + parent: 1 + type: Transform +- proto: SpawnPointSeniorOfficer + entities: + - uid: 2643 + components: + - pos: -17.5,42.5 + parent: 1 + type: Transform +- proto: SpawnPointSeniorPhysician + entities: + - uid: 2618 + components: + - pos: 11.5,24.5 + parent: 1 + type: Transform +- proto: SpawnPointSeniorResearcher + entities: + - uid: 2614 + components: + - pos: -16.5,24.5 + parent: 1 + type: Transform +- proto: SpawnPointServiceWorker + entities: + - uid: 18174 + components: + - pos: 7.5,-1.5 + parent: 1 + type: Transform +- proto: SpawnPointStationEngineer + entities: + - uid: 9166 + components: + - pos: 4.5,-18.5 + parent: 1 + type: Transform + - uid: 9167 + components: + - pos: 5.5,-18.5 + parent: 1 + type: Transform +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 9168 + components: + - pos: 12.5,-12.5 + parent: 1 + type: Transform + - uid: 9169 + components: + - pos: 8.5,-14.5 + parent: 1 + type: Transform +- proto: SpawnPointWarden + entities: + - uid: 6835 + components: + - pos: -12.5,49.5 + parent: 1 + type: Transform +- proto: SpawnVehicleJanicart + entities: + - uid: 16377 + components: + - pos: 22.5,-5.5 + parent: 1 + type: Transform +- proto: SpawnVehicleSecway + entities: + - uid: 8242 + components: + - pos: -15.5,52.5 + parent: 1 + type: Transform + - uid: 8243 + components: + - pos: -14.5,52.5 + parent: 1 + type: Transform +- proto: SpawnVendingMachineRestockFoodDrink + entities: + - uid: 9321 + components: + - pos: -43.5,-7.5 + parent: 1 + type: Transform + - uid: 9322 + components: + - pos: -39.5,-4.5 + parent: 1 + type: Transform + - uid: 9323 + components: + - pos: -42.5,-6.5 + parent: 1 + type: Transform +- proto: Spear + entities: + - uid: 18106 + components: + - pos: -35.403564,54.591236 + parent: 1 + type: Transform +- proto: SpeedLoaderCap + entities: + - uid: 7763 + components: + - pos: -16.575819,5.572419 + parent: 1 + type: Transform +- proto: Spoon + entities: + - uid: 17288 + components: + - pos: -10.945471,2.5472858 + parent: 1 + type: Transform + - uid: 17289 + components: + - pos: -0.38157701,9.21001 + parent: 1 + type: Transform +- proto: SprayBottleSpaceCleaner + entities: + - uid: 3164 + components: + - pos: 16.269894,-4.730578 + parent: 1 + type: Transform + - uid: 9253 + components: + - pos: 16.478226,-4.855578 + parent: 1 + type: Transform + - uid: 17274 + components: + - pos: -23.710033,-13.449605 + parent: 1 + type: Transform + - uid: 17275 + components: + - pos: -23.539648,-13.279312 + parent: 1 + type: Transform +- proto: SprayPainter + entities: + - uid: 9885 + components: + - pos: -28.646414,31.653807 + parent: 1 + type: Transform +- proto: StasisBed + entities: + - uid: 6698 + components: + - pos: 3.5,27.5 + parent: 1 + type: Transform +- proto: StationMap + entities: + - uid: 7440 + components: + - pos: -8.5,-6.5 + parent: 1 + type: Transform + - uid: 7441 + components: + - pos: 7.5,69.5 + parent: 1 + type: Transform + - uid: 7639 + components: + - pos: 1.5,20.5 + parent: 1 + type: Transform + - uid: 7640 + components: + - pos: 44.5,-10.5 + parent: 1 + type: Transform + - uid: 7645 + components: + - pos: -45.5,35.5 + parent: 1 + type: Transform + - uid: 7646 + components: + - pos: 49.5,40.5 + parent: 1 + type: Transform +- proto: StatueVenusBlue + entities: + - uid: 17763 + components: + - pos: 35.5,10.5 + parent: 1 + type: Transform +- proto: StatueVenusRed + entities: + - uid: 17762 + components: + - pos: 35.5,-4.5 + parent: 1 + type: Transform +- proto: Stool + entities: + - uid: 2478 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-3.5 + parent: 1 + type: Transform + - uid: 2479 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-1.5 + parent: 1 + type: Transform + - uid: 3414 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-5.5 + parent: 1 + type: Transform + - uid: 3415 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-5.5 + parent: 1 + type: Transform + - uid: 3416 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-3.5 + parent: 1 + type: Transform + - uid: 3417 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-1.5 + parent: 1 + type: Transform + - uid: 8376 + components: + - rot: 3.141592653589793 rad + pos: 34.5,48.5 + parent: 1 + type: Transform + - uid: 18418 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,52.5 + parent: 1 + type: Transform +- proto: StoolBar + entities: + - uid: 4034 + components: + - rot: 3.141592653589793 rad + pos: -8.5,4.5 + parent: 1 + type: Transform + - uid: 4035 + components: + - rot: 3.141592653589793 rad + pos: -7.5,4.5 + parent: 1 + type: Transform + - uid: 4036 + components: + - rot: 3.141592653589793 rad + pos: -6.5,4.5 + parent: 1 + type: Transform + - uid: 4037 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,8.5 + parent: 1 + type: Transform + - uid: 4038 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,7.5 + parent: 1 + type: Transform + - uid: 4039 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,6.5 + parent: 1 + type: Transform + - uid: 4425 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-6.5 + parent: 1 + type: Transform + - uid: 4426 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-6.5 + parent: 1 + type: Transform + - uid: 4427 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-6.5 + parent: 1 + type: Transform +- proto: StorageCanister + entities: + - uid: 2607 + components: + - pos: -9.5,-40.5 + parent: 1 + type: Transform + - uid: 2608 + components: + - pos: -10.5,-40.5 + parent: 1 + type: Transform + - uid: 3024 + components: + - pos: 0.5,-29.5 + parent: 1 + type: Transform + - uid: 3047 + components: + - pos: -13.5,-26.5 + parent: 1 + type: Transform + - uid: 3048 + components: + - pos: -13.5,-27.5 + parent: 1 + type: Transform + - uid: 6587 + components: + - pos: -6.5,34.5 + parent: 1 + type: Transform + - uid: 6588 + components: + - pos: -7.5,34.5 + parent: 1 + type: Transform + - uid: 10089 + components: + - pos: -15.5,-32.5 + parent: 1 + type: Transform +- proto: StrangePill + entities: + - uid: 772 + components: + - pos: -38.658638,42.44425 + parent: 1 + type: Transform + - uid: 6551 + components: + - pos: -34.521122,33.610306 + parent: 1 + type: Transform + - uid: 7545 + components: + - pos: 23.385082,56.636555 + parent: 1 + type: Transform + - uid: 7624 + components: + - pos: 17.981688,-36.520332 + parent: 1 + type: Transform + - uid: 7672 + components: + - pos: -17.505447,-39.48328 + parent: 1 + type: Transform +- proto: Stunbaton + entities: + - uid: 8187 + components: + - pos: -18.632307,40.44518 + parent: 1 + type: Transform + - uid: 8188 + components: + - pos: -18.694807,40.653515 + parent: 1 + type: Transform +- proto: SubstationBasic + entities: + - uid: 4186 + components: + - pos: 8.5,-17.5 + parent: 1 + type: Transform + - uid: 4187 + components: + - pos: 8.5,-18.5 + parent: 1 + type: Transform + - uid: 4584 + components: + - pos: -21.5,30.5 + parent: 1 + type: Transform + - uid: 4585 + components: + - pos: -25.5,-15.5 + parent: 1 + type: Transform + - uid: 4587 + components: + - pos: -24.5,50.5 + parent: 1 + type: Transform + - uid: 4588 + components: + - pos: 20.5,54.5 + parent: 1 + type: Transform + - uid: 4589 + components: + - pos: 16.5,25.5 + parent: 1 + type: Transform + - uid: 4590 + components: + - pos: 17.5,4.5 + parent: 1 + type: Transform + - uid: 4591 + components: + - pos: -25.5,-0.5 + parent: 1 + type: Transform + - uid: 4594 + components: + - pos: 26.5,-18.5 + parent: 1 + type: Transform + - uid: 4931 + components: + - pos: -3.5,74.5 + parent: 1 + type: Transform + - uid: 9403 + components: + - pos: -23.5,-18.5 + parent: 1 + type: Transform + - uid: 18472 + components: + - pos: 22.5,-11.5 + parent: 1 + type: Transform +- proto: SubstationWallBasic + entities: + - uid: 8818 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 8756 + type: Transform +- proto: SuitStorageAtmos + entities: + - uid: 7705 + components: + - pos: -5.5,-17.5 + parent: 1 + type: Transform + - uid: 7805 + components: + - pos: -6.5,-17.5 + parent: 1 + type: Transform +- proto: SuitStorageCE + entities: + - uid: 7711 + components: + - pos: 7.5,-23.5 + parent: 1 + type: Transform +- proto: SuitStorageCMO + entities: + - uid: 6917 + components: + - pos: 15.5,34.5 + parent: 1 + type: Transform +- proto: SuitStorageEngi + entities: + - uid: 2620 + components: + - pos: 13.5,-30.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 7708 + components: + - pos: 13.5,-33.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 7710 + components: + - pos: 13.5,-32.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 7804 + components: + - pos: 13.5,-31.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: SuitStorageEVA + entities: + - uid: 4109 + components: + - pos: 23.5,33.5 + parent: 1 + type: Transform + - uid: 4369 + components: + - pos: 23.5,32.5 + parent: 1 + type: Transform + - uid: 7762 + components: + - pos: 23.5,34.5 + parent: 1 + type: Transform + - uid: 7764 + components: + - pos: 23.5,31.5 + parent: 1 + type: Transform +- proto: SuitStorageEVAPrisoner + entities: + - uid: 6922 + components: + - pos: -27.5,49.5 + parent: 1 + type: Transform + - uid: 6923 + components: + - pos: -28.5,49.5 + parent: 1 + type: Transform +- proto: SuitStorageHOS + entities: + - uid: 7712 + components: + - pos: -13.5,58.5 + parent: 1 + type: Transform +- proto: SuitStorageRD + entities: + - uid: 6918 + components: + - pos: -25.5,20.5 + parent: 1 + type: Transform +- proto: SuitStorageSalv + entities: + - uid: 6929 + components: + - pos: -36.5,27.5 + parent: 1 + type: Transform + - uid: 7392 + components: + - pos: -36.5,26.5 + parent: 1 + type: Transform + - uid: 7644 + components: + - pos: -36.5,25.5 + parent: 1 + type: Transform +- proto: SuitStorageSec + entities: + - uid: 7773 + components: + - pos: -4.5,61.5 + parent: 1 + type: Transform + - uid: 7774 + components: + - pos: -4.5,60.5 + parent: 1 + type: Transform + - uid: 7775 + components: + - pos: -4.5,59.5 + parent: 1 + type: Transform +- proto: SuitStorageWarden + entities: + - uid: 6911 + components: + - pos: -11.5,50.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraCommand + entities: + - uid: 16381 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-24.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Tech Storage + type: SurveillanceCamera + - uid: 16395 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-23.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Chief Engineer's Office + type: SurveillanceCamera + - uid: 16414 + components: + - pos: -23.5,-13.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Drone Storage + type: SurveillanceCamera + - uid: 16415 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-17.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Gravity + type: SurveillanceCamera + - uid: 16421 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,8.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Quartermaster's Office + type: SurveillanceCamera + - uid: 16425 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,4.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: HoP's Office + type: SurveillanceCamera + - uid: 16426 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,9.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: HoP's Bedroom + type: SurveillanceCamera + - uid: 16427 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,32.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: EVA Storage + type: SurveillanceCamera + - uid: 16454 + components: + - rot: 3.141592653589793 rad + pos: -14.5,60.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: HoS' Office + type: SurveillanceCamera + - uid: 16458 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,46.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Vault + type: SurveillanceCamera + - uid: 16461 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,71.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge Hallway + type: SurveillanceCamera + - uid: 16462 + components: + - rot: 3.141592653589793 rad + pos: 4.5,74.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Conference Room + type: SurveillanceCamera + - uid: 16463 + components: + - rot: 3.141592653589793 rad + pos: -0.5,83.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge + type: SurveillanceCamera + - uid: 16464 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,73.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Captain's Bedroom + type: SurveillanceCamera + - uid: 16467 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,32.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: CMO's Office + type: SurveillanceCamera + - uid: 16482 + components: + - rot: 3.141592653589793 rad + pos: -24.5,23.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: RD's Office + type: SurveillanceCamera + - uid: 17236 + components: + - pos: -0.5,-5.5 + parent: 8756 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Captain's Private Shuttle + type: SurveillanceCamera + - uid: 18441 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-15.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Telecomms + type: SurveillanceCamera +- proto: SurveillanceCameraEngineering + entities: + - uid: 16382 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-28.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: SMES Room + type: SurveillanceCamera + - uid: 16383 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-39.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: AME Room + type: SurveillanceCamera + - uid: 16384 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-43.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Port Thruster Exterior + type: SurveillanceCamera + - uid: 16391 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-43.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Starboard Thruster Exterior + type: SurveillanceCamera + - uid: 16392 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-33.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engineering Atrium B + type: SurveillanceCamera + - uid: 16393 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-22.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + type: SurveillanceCamera + - uid: 16394 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-19.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + type: SurveillanceCamera + - uid: 16396 + components: + - pos: 9.5,-15.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Reception + type: SurveillanceCamera + - uid: 16397 + components: + - pos: -10.5,-15.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos Reception + type: SurveillanceCamera + - uid: 16398 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-18.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos Locker Room + type: SurveillanceCamera + - uid: 16399 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-27.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos Canister Storage + type: SurveillanceCamera + - uid: 16400 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-24.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos Storage Tanks + type: SurveillanceCamera + - uid: 16401 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-39.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos Mixing Chambers + type: SurveillanceCamera +- proto: SurveillanceCameraGeneral + entities: + - uid: 16402 + components: + - pos: -0.5,-13.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Engineering Lobby + type: SurveillanceCamera + - uid: 16424 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,4.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: HoP Line + type: SurveillanceCamera + - uid: 16428 + components: + - rot: 3.141592653589793 rad + pos: 24.5,22.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Public Park + type: SurveillanceCamera + - uid: 16434 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,41.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Laundry Room + type: SurveillanceCamera + - uid: 16435 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,42.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dorms + type: SurveillanceCamera + - uid: 16438 + components: + - rot: 3.141592653589793 rad + pos: 26.5,0.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Arcade + type: SurveillanceCamera + - uid: 16439 + components: + - rot: 1.5707963267948966 rad + pos: 49.5,37.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: EVAC A + type: SurveillanceCamera + - uid: 16440 + components: + - rot: 1.5707963267948966 rad + pos: 49.5,14.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: EVAV B + type: SurveillanceCamera + - uid: 16443 + components: + - pos: 13.5,-9.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Aft Hallway 2 + type: SurveillanceCamera + - uid: 16444 + components: + - pos: -22.5,-9.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Aft Hallway 1 + type: SurveillanceCamera + - uid: 16446 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,14.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Port Docking Hangar + type: SurveillanceCamera + - uid: 16447 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,22.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Port Hallway + type: SurveillanceCamera + - uid: 16448 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,31.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Tool Room + type: SurveillanceCamera + - uid: 16449 + components: + - rot: 3.141592653589793 rad + pos: -44.5,43.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Port Garden + type: SurveillanceCamera + - uid: 16459 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,46.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Fore Hallway + type: SurveillanceCamera + - uid: 16460 + components: + - pos: 9.5,66.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Bridge Observatory + type: SurveillanceCamera + - uid: 16475 + components: + - pos: -0.5,13.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Med/Sci Lobby + type: SurveillanceCamera + - uid: 16476 + components: + - pos: -18.5,13.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Aft Port Hallway + type: SurveillanceCamera + - uid: 16477 + components: + - pos: 16.5,13.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Aft Starboard Hallway + type: SurveillanceCamera + - uid: 16484 + components: + - pos: -16.5,36.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Fore Port Hallway + type: SurveillanceCamera + - uid: 16485 + components: + - pos: 17.5,36.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Fore Starboard Hallway + type: SurveillanceCamera + - uid: 16487 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,27.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Midships Hallway + type: SurveillanceCamera + - uid: 16489 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-15.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Aft Port Access + type: SurveillanceCamera +- proto: SurveillanceCameraMedical + entities: + - uid: 16436 + components: + - pos: 11.5,17.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Reception + type: SurveillanceCamera + - uid: 16437 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,26.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Atrium + type: SurveillanceCamera + - uid: 16465 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,32.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Cloning + type: SurveillanceCamera + - uid: 16466 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,31.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Ward + type: SurveillanceCamera + - uid: 16468 + components: + - rot: 3.141592653589793 rad + pos: 20.5,34.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Morgue + type: SurveillanceCamera + - uid: 16469 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,27.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Surgery + type: SurveillanceCamera + - uid: 16470 + components: + - rot: 3.141592653589793 rad + pos: 4.5,25.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Chemistry + type: SurveillanceCamera +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 18194 + components: + - pos: 20.5,-13.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 2943 + components: + - pos: 20.5,-15.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 4573 + components: + - pos: 20.5,-17.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 18084 + components: + - pos: 22.5,-15.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterScience + entities: + - uid: 4575 + components: + - pos: 21.5,-17.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 7035 + components: + - pos: 21.5,-15.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterService + entities: + - uid: 4576 + components: + - pos: 22.5,-13.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 7245 + components: + - pos: 21.5,-13.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraScience + entities: + - uid: 16478 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,32.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Robotics + type: SurveillanceCamera + - uid: 16479 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,29.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: XenoArch + type: SurveillanceCamera + - uid: 16480 + components: + - rot: 3.141592653589793 rad + pos: -4.5,24.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: R&D + type: SurveillanceCamera + - uid: 16481 + components: + - rot: 3.141592653589793 rad + pos: -12.5,25.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Atrium + type: SurveillanceCamera + - uid: 16483 + components: + - pos: -14.5,17.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Anomalous Materials + type: SurveillanceCamera +- proto: SurveillanceCameraSecurity + entities: + - uid: 16432 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,48.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Detective's Office + type: SurveillanceCamera + - uid: 16433 + components: + - rot: 3.141592653589793 rad + pos: 43.5,44.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: EVAC Checkpoint + type: SurveillanceCamera + - uid: 16442 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-12.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Arrivals Checkpoint + type: SurveillanceCamera + - uid: 16445 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-3.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Cargo Checkpoint + type: SurveillanceCamera + - uid: 16450 + components: + - rot: 3.141592653589793 rad + pos: -29.5,45.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma Brig + type: SurveillanceCamera + - uid: 16451 + components: + - rot: 3.141592653589793 rad + pos: -10.5,46.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Atrium 2 + type: SurveillanceCamera + - uid: 16452 + components: + - pos: -10.5,52.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Atrium 1 + type: SurveillanceCamera + - uid: 16453 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,41.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Locker Room + type: SurveillanceCamera + - uid: 16455 + components: + - rot: 3.141592653589793 rad + pos: -6.5,64.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Armory + type: SurveillanceCamera + - uid: 16456 + components: + - rot: 3.141592653589793 rad + pos: 11.5,61.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Court Room + type: SurveillanceCamera + - uid: 16457 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,61.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Lawyer's Office + type: SurveillanceCamera +- proto: SurveillanceCameraService + entities: + - uid: 16407 + components: + - pos: -5.5,-5.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: South Cafeteria + type: SurveillanceCamera + - uid: 16409 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,10.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: North Cafeteria + type: SurveillanceCamera + - uid: 16410 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Middle Cafeteria + type: SurveillanceCamera + - uid: 16411 + components: + - rot: 3.141592653589793 rad + pos: -7.5,8.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Bar + type: SurveillanceCamera + - uid: 16412 + components: + - pos: 8.5,-4.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Kitchen + type: SurveillanceCamera + - uid: 16413 + components: + - pos: 9.5,5.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Botany + type: SurveillanceCamera + - uid: 16423 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-3.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Janitor Closet + type: SurveillanceCamera + - uid: 16429 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,8.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Library + type: SurveillanceCamera + - uid: 16430 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,46.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Chapel + type: SurveillanceCamera + - uid: 16431 + components: + - pos: 33.5,54.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Crematorium + type: SurveillanceCamera +- proto: SurveillanceCameraSupply + entities: + - uid: 16416 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-6.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + type: SurveillanceCamera + - uid: 16417 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-8.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Loading Dock + type: SurveillanceCamera + - uid: 16418 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,3.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Loading Bay + type: SurveillanceCamera + - uid: 16419 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,7.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Lobby + type: SurveillanceCamera + - uid: 16420 + components: + - pos: -34.5,9.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Mail Room + type: SurveillanceCamera + - uid: 16422 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,25.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Salvage + type: SurveillanceCamera +- proto: SurveillanceCameraWirelessRouterEntertainment + entities: + - uid: 7293 + components: + - pos: 22.5,-17.5 + parent: 1 + type: Transform +- proto: SurveillanceWirelessCameraMovableEntertainment + entities: + - uid: 4024 + components: + - pos: -7.5,-0.5 + parent: 1 + type: Transform + - uid: 16486 + components: + - rot: 3.141592653589793 rad + pos: 10.5,54.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEntertainment + nameSet: True + id: Court TV + type: SurveillanceCamera +- proto: SynthesizerInstrument + entities: + - uid: 9376 + components: + - pos: -15.706505,-5.3218913 + parent: 1 + type: Transform +- proto: Syringe + entities: + - uid: 7124 + components: + - rot: 1.5707963267948966 rad + pos: -13.489402,28.012117 + parent: 1 + type: Transform + - uid: 9611 + components: + - pos: 9.552147,30.534693 + parent: 1 + type: Transform +- proto: SyringeEphedrine + entities: + - uid: 17755 + components: + - pos: -40.359406,48.047718 + parent: 1 + type: Transform +- proto: Table + entities: + - uid: 1586 + components: + - pos: -28.5,43.5 + parent: 1 + type: Transform + - uid: 1587 + components: + - pos: -28.5,44.5 + parent: 1 + type: Transform + - uid: 1588 + components: + - pos: -29.5,44.5 + parent: 1 + type: Transform + - uid: 1589 + components: + - pos: -29.5,43.5 + parent: 1 + type: Transform + - uid: 4324 + components: + - pos: -34.5,49.5 + parent: 1 + type: Transform + - uid: 4325 + components: + - pos: -33.5,49.5 + parent: 1 + type: Transform + - uid: 4326 + components: + - pos: -32.5,49.5 + parent: 1 + type: Transform + - uid: 4395 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform + - uid: 6088 + components: + - pos: 20.5,40.5 + parent: 1 + type: Transform + - uid: 6089 + components: + - pos: 20.5,41.5 + parent: 1 + type: Transform + - uid: 6543 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-22.5 + parent: 1 + type: Transform + - uid: 6919 + components: + - pos: 5.5,-5.5 + parent: 1 + type: Transform + - uid: 7650 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-23.5 + parent: 1 + type: Transform + - uid: 8402 + components: + - pos: 12.5,46.5 + parent: 1 + type: Transform + - uid: 8422 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform + - uid: 9088 + components: + - pos: 4.5,-33.5 + parent: 1 + type: Transform + - uid: 9910 + components: + - pos: -19.5,-37.5 + parent: 1 + type: Transform + - uid: 9911 + components: + - pos: -19.5,-36.5 + parent: 1 + type: Transform + - uid: 9932 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-29.5 + parent: 1 + type: Transform + - uid: 9973 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-24.5 + parent: 1 + type: Transform + - uid: 10136 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-18.5 + parent: 1 + type: Transform + - uid: 11055 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-0.5 + parent: 1 + type: Transform + - uid: 13312 + components: + - pos: -28.5,3.5 + parent: 1 + type: Transform + - uid: 13333 + components: + - pos: -12.5,10.5 + parent: 1 + type: Transform + - uid: 13358 + components: + - pos: -39.5,34.5 + parent: 1 + type: Transform + - uid: 13390 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,30.5 + parent: 1 + type: Transform + - uid: 13397 + components: + - pos: -23.5,43.5 + parent: 1 + type: Transform + - uid: 13451 + components: + - pos: -46.5,46.5 + parent: 1 + type: Transform + - uid: 14005 + components: + - pos: 18.5,64.5 + parent: 1 + type: Transform + - uid: 14025 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,58.5 + parent: 1 + type: Transform +- proto: TableCarpet + entities: + - uid: 565 + components: + - pos: -22.5,10.5 + parent: 1 + type: Transform + - uid: 775 + components: + - pos: -27.5,7.5 + parent: 1 + type: Transform + - uid: 776 + components: + - pos: -28.5,7.5 + parent: 1 + type: Transform + - uid: 2935 + components: + - pos: -38.5,-11.5 + parent: 1 + type: Transform + - uid: 3951 + components: + - pos: -38.5,-12.5 + parent: 1 + type: Transform + - uid: 5830 + components: + - pos: -38.5,-13.5 + parent: 1 + type: Transform + - uid: 6502 + components: + - pos: -39.5,-11.5 + parent: 1 + type: Transform + - uid: 7145 + components: + - pos: -26.5,7.5 + parent: 1 + type: Transform + - uid: 7146 + components: + - pos: -26.5,6.5 + parent: 1 + type: Transform + - uid: 10069 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-17.5 + parent: 1 + type: Transform + - uid: 13428 + components: + - pos: -23.5,58.5 + parent: 1 + type: Transform +- proto: TableGlass + entities: + - uid: 666 + components: + - pos: 3.5,34.5 + parent: 1 + type: Transform + - uid: 1002 + components: + - pos: 2.5,28.5 + parent: 1 + type: Transform + - uid: 1273 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,35.5 + parent: 1 + type: Transform + - uid: 1998 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,6.5 + parent: 1 + type: Transform + - uid: 2485 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-24.5 + parent: 1 + type: Transform + - uid: 2654 + components: + - pos: 7.5,31.5 + parent: 1 + type: Transform + - uid: 2831 + components: + - pos: -13.5,-33.5 + parent: 1 + type: Transform + - uid: 2832 + components: + - pos: -13.5,-34.5 + parent: 1 + type: Transform + - uid: 2833 + components: + - pos: -13.5,-24.5 + parent: 1 + type: Transform + - uid: 2834 + components: + - pos: -13.5,-23.5 + parent: 1 + type: Transform + - uid: 3699 + components: + - pos: 2.5,23.5 + parent: 1 + type: Transform + - uid: 3735 + components: + - pos: 18.5,-24.5 + parent: 1 + type: Transform + - uid: 3740 + components: + - pos: 18.5,-22.5 + parent: 1 + type: Transform + - uid: 3741 + components: + - pos: 17.5,-25.5 + parent: 1 + type: Transform + - uid: 3742 + components: + - pos: 16.5,-22.5 + parent: 1 + type: Transform + - uid: 3761 + components: + - pos: 18.5,-25.5 + parent: 1 + type: Transform + - uid: 3765 + components: + - pos: 18.5,-21.5 + parent: 1 + type: Transform + - uid: 3766 + components: + - pos: 17.5,-21.5 + parent: 1 + type: Transform + - uid: 3767 + components: + - pos: 16.5,-24.5 + parent: 1 + type: Transform + - uid: 4045 + components: + - pos: 5.5,25.5 + parent: 1 + type: Transform + - uid: 4049 + components: + - pos: 2.5,24.5 + parent: 1 + type: Transform + - uid: 4053 + components: + - pos: 6.5,22.5 + parent: 1 + type: Transform + - uid: 4054 + components: + - pos: 5.5,22.5 + parent: 1 + type: Transform + - uid: 4079 + components: + - pos: 7.5,33.5 + parent: 1 + type: Transform + - uid: 4084 + components: + - pos: 7.5,32.5 + parent: 1 + type: Transform + - uid: 4119 + components: + - pos: 3.5,31.5 + parent: 1 + type: Transform + - uid: 4204 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-25.5 + parent: 1 + type: Transform + - uid: 4236 + components: + - pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 4238 + components: + - pos: 5.5,6.5 + parent: 1 + type: Transform + - uid: 4396 + components: + - pos: 8.5,11.5 + parent: 1 + type: Transform + - uid: 6386 + components: + - pos: 12.5,22.5 + parent: 1 + type: Transform + - uid: 6387 + components: + - pos: 12.5,23.5 + parent: 1 + type: Transform + - uid: 6388 + components: + - pos: 12.5,24.5 + parent: 1 + type: Transform + - uid: 6390 + components: + - pos: 9.5,26.5 + parent: 1 + type: Transform + - uid: 6601 + components: + - pos: -15.5,-5.5 + parent: 1 + type: Transform + - uid: 6602 + components: + - pos: -16.5,-5.5 + parent: 1 + type: Transform + - uid: 6697 + components: + - pos: 2.5,27.5 + parent: 1 + type: Transform + - uid: 7100 + components: + - pos: -14.5,-19.5 + parent: 1 + type: Transform + - uid: 7101 + components: + - pos: -13.5,-19.5 + parent: 1 + type: Transform + - uid: 7148 + components: + - pos: 20.5,27.5 + parent: 1 + type: Transform + - uid: 7149 + components: + - pos: 20.5,26.5 + parent: 1 + type: Transform + - uid: 7292 + components: + - pos: 20.5,28.5 + parent: 1 + type: Transform + - uid: 8420 + components: + - pos: -49.5,44.5 + parent: 1 + type: Transform + - uid: 8433 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,31.5 + parent: 1 + type: Transform + - uid: 8441 + components: + - pos: 5.5,57.5 + parent: 1 + type: Transform + - uid: 8458 + components: + - pos: 12.5,70.5 + parent: 1 + type: Transform + - uid: 8627 + components: + - pos: -23.5,19.5 + parent: 1 + type: Transform + - uid: 8628 + components: + - pos: -23.5,20.5 + parent: 1 + type: Transform + - uid: 8716 + components: + - pos: -11.5,-15.5 + parent: 1 + type: Transform + - uid: 8717 + components: + - pos: -10.5,-15.5 + parent: 1 + type: Transform + - uid: 9105 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-25.5 + parent: 1 + type: Transform + - uid: 9559 + components: + - pos: -22.5,-7.5 + parent: 1 + type: Transform + - uid: 9596 + components: + - pos: -8.5,36.5 + parent: 1 + type: Transform + - uid: 9610 + components: + - rot: 3.141592653589793 rad + pos: 9.5,30.5 + parent: 1 + type: Transform + - uid: 9703 + components: + - pos: -35.5,9.5 + parent: 1 + type: Transform + - uid: 9704 + components: + - pos: -34.5,9.5 + parent: 1 + type: Transform + - uid: 10960 + components: + - pos: 34.5,-14.5 + parent: 1 + type: Transform + - uid: 14084 + components: + - pos: -49.5,16.5 + parent: 1 + type: Transform + - uid: 16652 + components: + - pos: -32.5,31.5 + parent: 1 + type: Transform + - uid: 18496 + components: + - pos: 6.5,52.5 + parent: 1 + type: Transform +- proto: TablePlasmaGlass + entities: + - uid: 1109 + components: + - pos: -9.5,27.5 + parent: 1 + type: Transform + - uid: 1309 + components: + - pos: -10.5,34.5 + parent: 1 + type: Transform + - uid: 1310 + components: + - pos: -11.5,34.5 + parent: 1 + type: Transform + - uid: 3554 + components: + - pos: -7.5,24.5 + parent: 1 + type: Transform + - uid: 3555 + components: + - pos: -6.5,24.5 + parent: 1 + type: Transform + - uid: 4582 + components: + - pos: -18.5,17.5 + parent: 1 + type: Transform + - uid: 4583 + components: + - pos: -18.5,20.5 + parent: 1 + type: Transform + - uid: 4586 + components: + - pos: -17.5,17.5 + parent: 1 + type: Transform + - uid: 7119 + components: + - pos: -13.5,28.5 + parent: 1 + type: Transform + - uid: 7120 + components: + - pos: -13.5,27.5 + parent: 1 + type: Transform + - uid: 8667 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,21.5 + parent: 1 + type: Transform + - uid: 8698 + components: + - pos: -9.5,28.5 + parent: 1 + type: Transform +- proto: TableReinforced + entities: + - uid: 266 + components: + - pos: -36.5,7.5 + parent: 1 + type: Transform + - uid: 271 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-2.5 + parent: 1 + type: Transform + - uid: 321 + components: + - pos: -0.5,83.5 + parent: 1 + type: Transform + - uid: 322 + components: + - pos: -0.5,82.5 + parent: 1 + type: Transform + - uid: 326 + components: + - pos: -3.5,83.5 + parent: 1 + type: Transform + - uid: 336 + components: + - pos: -0.5,80.5 + parent: 1 + type: Transform + - uid: 337 + components: + - pos: -4.5,79.5 + parent: 1 + type: Transform + - uid: 338 + components: + - pos: -4.5,80.5 + parent: 1 + type: Transform + - uid: 444 + components: + - pos: -35.5,12.5 + parent: 1 + type: Transform + - uid: 448 + components: + - pos: -36.5,6.5 + parent: 1 + type: Transform + - uid: 480 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 481 + components: + - pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 482 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 491 + components: + - pos: -5.5,8.5 + parent: 1 + type: Transform + - uid: 492 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform + - uid: 493 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 503 + components: + - pos: -11.5,7.5 + parent: 1 + type: Transform + - uid: 505 + components: + - pos: -11.5,6.5 + parent: 1 + type: Transform + - uid: 512 + components: + - pos: -6.5,5.5 + parent: 1 + type: Transform + - uid: 513 + components: + - pos: -7.5,5.5 + parent: 1 + type: Transform + - uid: 514 + components: + - pos: -8.5,5.5 + parent: 1 + type: Transform + - uid: 524 + components: + - pos: -10.5,6.5 + parent: 1 + type: Transform + - uid: 549 + components: + - pos: 10.5,12.5 + parent: 1 + type: Transform + - uid: 567 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 569 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 599 + components: + - pos: 9.5,-5.5 + parent: 1 + type: Transform + - uid: 602 + components: + - pos: 10.5,-5.5 + parent: 1 + type: Transform + - uid: 603 + components: + - pos: 11.5,-5.5 + parent: 1 + type: Transform + - uid: 604 + components: + - pos: 12.5,-0.5 + parent: 1 + type: Transform + - uid: 605 + components: + - pos: 12.5,-1.5 + parent: 1 + type: Transform + - uid: 606 + components: + - pos: 7.5,-2.5 + parent: 1 + type: Transform + - uid: 607 + components: + - pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 798 + components: + - pos: 3.5,20.5 + parent: 1 + type: Transform + - uid: 799 + components: + - pos: -5.5,20.5 + parent: 1 + type: Transform + - uid: 801 + components: + - pos: -4.5,20.5 + parent: 1 + type: Transform + - uid: 802 + components: + - pos: 4.5,20.5 + parent: 1 + type: Transform + - uid: 1414 + components: + - pos: -13.5,47.5 + parent: 1 + type: Transform + - uid: 1415 + components: + - pos: -12.5,47.5 + parent: 1 + type: Transform + - uid: 1418 + components: + - pos: -10.5,49.5 + parent: 1 + type: Transform + - uid: 1419 + components: + - pos: -10.5,48.5 + parent: 1 + type: Transform + - uid: 1842 + components: + - pos: -16.5,50.5 + parent: 1 + type: Transform + - uid: 1843 + components: + - pos: -16.5,49.5 + parent: 1 + type: Transform + - uid: 1844 + components: + - pos: -16.5,48.5 + parent: 1 + type: Transform + - uid: 1845 + components: + - pos: -19.5,53.5 + parent: 1 + type: Transform + - uid: 1846 + components: + - pos: -18.5,53.5 + parent: 1 + type: Transform + - uid: 1847 + components: + - pos: -19.5,52.5 + parent: 1 + type: Transform + - uid: 1848 + components: + - pos: -13.5,56.5 + parent: 1 + type: Transform + - uid: 1849 + components: + - pos: -12.5,56.5 + parent: 1 + type: Transform + - uid: 1850 + components: + - pos: -12.5,55.5 + parent: 1 + type: Transform + - uid: 2142 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,21.5 + parent: 1 + type: Transform + - uid: 2143 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,21.5 + parent: 1 + type: Transform + - uid: 2396 + components: + - pos: 5.5,-12.5 + parent: 1 + type: Transform + - uid: 2398 + components: + - pos: -6.5,-13.5 + parent: 1 + type: Transform + - uid: 2407 + components: + - pos: 5.5,-13.5 + parent: 1 + type: Transform + - uid: 2409 + components: + - pos: -6.5,-12.5 + parent: 1 + type: Transform + - uid: 2472 + components: + - pos: 21.5,-6.5 + parent: 1 + type: Transform + - uid: 2891 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,3.5 + parent: 1 + type: Transform + - uid: 2892 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,2.5 + parent: 1 + type: Transform + - uid: 2898 + components: + - pos: 25.5,4.5 + parent: 1 + type: Transform + - uid: 2899 + components: + - pos: 24.5,4.5 + parent: 1 + type: Transform + - uid: 3529 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,53.5 + parent: 1 + type: Transform + - uid: 3570 + components: + - pos: 30.5,-10.5 + parent: 1 + type: Transform + - uid: 3574 + components: + - pos: 29.5,-10.5 + parent: 1 + type: Transform + - uid: 3619 + components: + - pos: 9.5,23.5 + parent: 1 + type: Transform + - uid: 3620 + components: + - pos: 9.5,22.5 + parent: 1 + type: Transform + - uid: 3630 + components: + - pos: 9.5,19.5 + parent: 1 + type: Transform + - uid: 3631 + components: + - pos: 10.5,19.5 + parent: 1 + type: Transform + - uid: 3633 + components: + - pos: 13.5,19.5 + parent: 1 + type: Transform + - uid: 3634 + components: + - pos: 12.5,19.5 + parent: 1 + type: Transform + - uid: 3753 + components: + - pos: 9.5,-2.5 + parent: 1 + type: Transform + - uid: 3756 + components: + - pos: 7.5,-3.5 + parent: 1 + type: Transform + - uid: 3983 + components: + - pos: -25.5,-11.5 + parent: 1 + type: Transform + - uid: 3984 + components: + - pos: -25.5,-12.5 + parent: 1 + type: Transform + - uid: 3985 + components: + - pos: -25.5,-13.5 + parent: 1 + type: Transform + - uid: 4014 + components: + - pos: 16.5,-5.5 + parent: 1 + type: Transform + - uid: 4015 + components: + - pos: 16.5,-4.5 + parent: 1 + type: Transform + - uid: 4016 + components: + - pos: 16.5,-3.5 + parent: 1 + type: Transform + - uid: 4069 + components: + - pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 4133 + components: + - pos: -39.5,19.5 + parent: 1 + type: Transform + - uid: 4136 + components: + - pos: -39.5,16.5 + parent: 1 + type: Transform + - uid: 4149 + components: + - pos: -33.5,-1.5 + parent: 1 + type: Transform + - uid: 4155 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-2.5 + parent: 1 + type: Transform + - uid: 4188 + components: + - pos: 4.5,-21.5 + parent: 1 + type: Transform + - uid: 4189 + components: + - pos: 5.5,-21.5 + parent: 1 + type: Transform + - uid: 4190 + components: + - pos: 6.5,-21.5 + parent: 1 + type: Transform + - uid: 4193 + components: + - pos: 7.5,-11.5 + parent: 1 + type: Transform + - uid: 4195 + components: + - pos: 9.5,-15.5 + parent: 1 + type: Transform + - uid: 4196 + components: + - pos: 7.5,-15.5 + parent: 1 + type: Transform + - uid: 4197 + components: + - pos: 13.5,-12.5 + parent: 1 + type: Transform + - uid: 4198 + components: + - pos: 13.5,-14.5 + parent: 1 + type: Transform + - uid: 4200 + components: + - pos: 13.5,-11.5 + parent: 1 + type: Transform + - uid: 4203 + components: + - pos: 12.5,-11.5 + parent: 1 + type: Transform + - uid: 4218 + components: + - pos: 11.5,-37.5 + parent: 1 + type: Transform + - uid: 4240 + components: + - pos: 13.5,8.5 + parent: 1 + type: Transform + - uid: 4241 + components: + - pos: 15.5,8.5 + parent: 1 + type: Transform + - uid: 4258 + components: + - pos: -0.5,79.5 + parent: 1 + type: Transform + - uid: 4261 + components: + - pos: -3.5,82.5 + parent: 1 + type: Transform + - uid: 4263 + components: + - pos: 3.5,80.5 + parent: 1 + type: Transform + - uid: 4264 + components: + - pos: 3.5,79.5 + parent: 1 + type: Transform + - uid: 4265 + components: + - pos: 2.5,83.5 + parent: 1 + type: Transform + - uid: 4266 + components: + - pos: 2.5,82.5 + parent: 1 + type: Transform + - uid: 4276 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,80.5 + parent: 1 + type: Transform + - uid: 4277 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,79.5 + parent: 1 + type: Transform + - uid: 4278 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,80.5 + parent: 1 + type: Transform + - uid: 4279 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,79.5 + parent: 1 + type: Transform + - uid: 4280 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,76.5 + parent: 1 + type: Transform + - uid: 4281 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,77.5 + parent: 1 + type: Transform + - uid: 4439 + components: + - pos: -28.5,29.5 + parent: 1 + type: Transform + - uid: 4440 + components: + - pos: -27.5,29.5 + parent: 1 + type: Transform + - uid: 4441 + components: + - pos: -26.5,29.5 + parent: 1 + type: Transform + - uid: 4533 + components: + - pos: -22.5,-11.5 + parent: 1 + type: Transform + - uid: 4535 + components: + - pos: -22.5,-13.5 + parent: 1 + type: Transform + - uid: 4536 + components: + - pos: -21.5,-13.5 + parent: 1 + type: Transform + - uid: 6109 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,54.5 + parent: 1 + type: Transform + - uid: 6139 + components: + - pos: -20.5,35.5 + parent: 1 + type: Transform + - uid: 6347 + components: + - pos: 44.5,41.5 + parent: 1 + type: Transform + - uid: 6348 + components: + - pos: 43.5,41.5 + parent: 1 + type: Transform + - uid: 6603 + components: + - pos: -15.5,-0.5 + parent: 1 + type: Transform + - uid: 6604 + components: + - pos: -16.5,-0.5 + parent: 1 + type: Transform + - uid: 6635 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,8.5 + parent: 1 + type: Transform + - uid: 7390 + components: + - pos: -14.5,50.5 + parent: 1 + type: Transform + - uid: 7816 + components: + - pos: -42.5,26.5 + parent: 1 + type: Transform + - uid: 7889 + components: + - pos: 44.5,44.5 + parent: 1 + type: Transform + - uid: 8137 + components: + - pos: -6.5,52.5 + parent: 1 + type: Transform + - uid: 8176 + components: + - rot: 3.141592653589793 rad + pos: -18.5,40.5 + parent: 1 + type: Transform + - uid: 8598 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 8890 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 8756 + type: Transform + - uid: 8891 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 8756 + type: Transform + - uid: 8910 + components: + - rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 8944 + components: + - rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 9115 + components: + - pos: 13.5,-21.5 + parent: 1 + type: Transform + - uid: 9116 + components: + - pos: 13.5,-20.5 + parent: 1 + type: Transform + - uid: 9117 + components: + - pos: 13.5,-22.5 + parent: 1 + type: Transform + - uid: 9118 + components: + - pos: 13.5,-24.5 + parent: 1 + type: Transform + - uid: 9119 + components: + - pos: 13.5,-25.5 + parent: 1 + type: Transform + - uid: 9134 + components: + - pos: 8.5,-32.5 + parent: 1 + type: Transform + - uid: 9135 + components: + - pos: 9.5,-32.5 + parent: 1 + type: Transform + - uid: 9140 + components: + - pos: 10.5,-32.5 + parent: 1 + type: Transform + - uid: 9374 + components: + - pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 9393 + components: + - pos: -34.5,-5.5 + parent: 1 + type: Transform + - uid: 9394 + components: + - pos: -35.5,-5.5 + parent: 1 + type: Transform + - uid: 9412 + components: + - pos: 30.5,-13.5 + parent: 1 + type: Transform + - uid: 9413 + components: + - pos: 26.5,-13.5 + parent: 1 + type: Transform + - uid: 10643 + components: + - pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 10646 + components: + - pos: 9.5,-3.5 + parent: 1 + type: Transform + - uid: 17269 + components: + - pos: -23.5,-13.5 + parent: 1 + type: Transform + - uid: 18473 + components: + - pos: 22.5,-12.5 + parent: 1 + type: Transform +- proto: TableReinforcedGlass + entities: + - uid: 3724 + components: + - rot: 3.141592653589793 rad + pos: 16.5,27.5 + parent: 1 + type: Transform + - uid: 4335 + components: + - pos: -21.5,34.5 + parent: 1 + type: Transform + - uid: 4404 + components: + - pos: 31.5,56.5 + parent: 1 + type: Transform + - uid: 4405 + components: + - pos: 33.5,56.5 + parent: 1 + type: Transform + - uid: 6789 + components: + - pos: 5.5,72.5 + parent: 1 + type: Transform + - uid: 6819 + components: + - pos: -16.5,59.5 + parent: 1 + type: Transform + - uid: 6820 + components: + - pos: -16.5,58.5 + parent: 1 + type: Transform + - uid: 6821 + components: + - pos: -15.5,58.5 + parent: 1 + type: Transform + - uid: 7252 + components: + - pos: 5.5,45.5 + parent: 1 + type: Transform + - uid: 7253 + components: + - pos: 4.5,45.5 + parent: 1 + type: Transform + - uid: 8092 + components: + - pos: 2.5,71.5 + parent: 1 + type: Transform + - uid: 8434 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,29.5 + parent: 1 + type: Transform + - uid: 8480 + components: + - pos: 16.5,32.5 + parent: 1 + type: Transform + - uid: 8481 + components: + - pos: 16.5,33.5 + parent: 1 + type: Transform + - uid: 8482 + components: + - pos: 15.5,32.5 + parent: 1 + type: Transform +- proto: TableStone + entities: + - uid: 6605 + components: + - pos: -15.5,5.5 + parent: 1 + type: Transform + - uid: 6606 + components: + - pos: -16.5,5.5 + parent: 1 + type: Transform +- proto: TableWood + entities: + - uid: 668 + components: + - pos: -24.5,6.5 + parent: 1 + type: Transform + - uid: 773 + components: + - pos: -24.5,7.5 + parent: 1 + type: Transform + - uid: 827 + components: + - pos: -23.5,7.5 + parent: 1 + type: Transform + - uid: 829 + components: + - pos: -23.5,6.5 + parent: 1 + type: Transform + - uid: 885 + components: + - pos: 24.5,54.5 + parent: 1 + type: Transform + - uid: 1877 + components: + - rot: 3.141592653589793 rad + pos: 4.5,64.5 + parent: 1 + type: Transform + - uid: 1908 + components: + - pos: 12.5,60.5 + parent: 1 + type: Transform + - uid: 1927 + components: + - pos: 9.5,59.5 + parent: 1 + type: Transform + - uid: 1928 + components: + - pos: 10.5,59.5 + parent: 1 + type: Transform + - uid: 1929 + components: + - pos: 11.5,59.5 + parent: 1 + type: Transform + - uid: 1930 + components: + - pos: 12.5,59.5 + parent: 1 + type: Transform + - uid: 1931 + components: + - pos: 9.5,60.5 + parent: 1 + type: Transform + - uid: 3175 + components: + - pos: 43.5,51.5 + parent: 1 + type: Transform + - uid: 3177 + components: + - pos: 43.5,50.5 + parent: 1 + type: Transform + - uid: 3178 + components: + - pos: 42.5,50.5 + parent: 1 + type: Transform + - uid: 3190 + components: + - rot: 3.141592653589793 rad + pos: 40.5,46.5 + parent: 1 + type: Transform + - uid: 3736 + components: + - pos: 4.5,71.5 + parent: 1 + type: Transform + - uid: 4399 + components: + - pos: 29.5,49.5 + parent: 1 + type: Transform + - uid: 4400 + components: + - pos: 28.5,49.5 + parent: 1 + type: Transform + - uid: 4444 + components: + - pos: -35.5,54.5 + parent: 1 + type: Transform + - uid: 4445 + components: + - pos: -34.5,54.5 + parent: 1 + type: Transform + - uid: 4446 + components: + - pos: -33.5,54.5 + parent: 1 + type: Transform + - uid: 4447 + components: + - pos: -32.5,54.5 + parent: 1 + type: Transform + - uid: 4448 + components: + - pos: -32.5,55.5 + parent: 1 + type: Transform + - uid: 4450 + components: + - pos: -34.5,56.5 + parent: 1 + type: Transform + - uid: 4460 + components: + - pos: -29.5,53.5 + parent: 1 + type: Transform + - uid: 4461 + components: + - pos: -29.5,56.5 + parent: 1 + type: Transform + - uid: 4462 + components: + - pos: -33.5,52.5 + parent: 1 + type: Transform + - uid: 6782 + components: + - pos: 5.5,71.5 + parent: 1 + type: Transform + - uid: 6783 + components: + - pos: 6.5,71.5 + parent: 1 + type: Transform + - uid: 6784 + components: + - pos: 6.5,72.5 + parent: 1 + type: Transform + - uid: 6785 + components: + - pos: 6.5,73.5 + parent: 1 + type: Transform + - uid: 6786 + components: + - pos: 5.5,73.5 + parent: 1 + type: Transform + - uid: 6787 + components: + - pos: 4.5,73.5 + parent: 1 + type: Transform + - uid: 6788 + components: + - pos: 4.5,72.5 + parent: 1 + type: Transform + - uid: 6803 + components: + - pos: -8.5,74.5 + parent: 1 + type: Transform + - uid: 6807 + components: + - pos: -6.5,72.5 + parent: 1 + type: Transform + - uid: 6885 + components: + - rot: 3.141592653589793 rad + pos: 32.5,49.5 + parent: 1 + type: Transform + - uid: 6886 + components: + - rot: 3.141592653589793 rad + pos: 33.5,49.5 + parent: 1 + type: Transform + - uid: 6984 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,57.5 + parent: 1 + type: Transform + - uid: 6985 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,57.5 + parent: 1 + type: Transform + - uid: 7028 + components: + - pos: -25.5,3.5 + parent: 1 + type: Transform + - uid: 7271 + components: + - pos: 2.5,61.5 + parent: 1 + type: Transform + - uid: 7272 + components: + - pos: 3.5,61.5 + parent: 1 + type: Transform + - uid: 7273 + components: + - rot: 3.141592653589793 rad + pos: 3.5,60.5 + parent: 1 + type: Transform + - uid: 7274 + components: + - rot: 3.141592653589793 rad + pos: 5.5,64.5 + parent: 1 + type: Transform + - uid: 7276 + components: + - rot: 3.141592653589793 rad + pos: 5.5,63.5 + parent: 1 + type: Transform + - uid: 7343 + components: + - pos: 24.5,53.5 + parent: 1 + type: Transform + - uid: 8410 + components: + - pos: 11.5,42.5 + parent: 1 + type: Transform + - uid: 8898 + components: + - pos: -0.5,9.5 + parent: 1 + type: Transform + - uid: 8899 + components: + - pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 8900 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 8901 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 8902 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 8903 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 8904 + components: + - pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 8905 + components: + - pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 8908 + components: + - pos: -11.5,2.5 + parent: 1 + type: Transform + - uid: 8909 + components: + - pos: -10.5,2.5 + parent: 1 + type: Transform + - uid: 8911 + components: + - pos: -0.5,-5.5 + parent: 1 + type: Transform + - uid: 8912 + components: + - pos: 3.5,8.5 + parent: 1 + type: Transform + - uid: 8915 + components: + - pos: -4.5,11.5 + parent: 1 + type: Transform + - uid: 8953 + components: + - pos: -12.5,-3.5 + parent: 1 + type: Transform + - uid: 8954 + components: + - pos: -11.5,-3.5 + parent: 1 + type: Transform + - uid: 9021 + components: + - pos: -13.5,2.5 + parent: 1 + type: Transform + - uid: 9263 + components: + - pos: 23.5,11.5 + parent: 1 + type: Transform + - uid: 9264 + components: + - pos: 24.5,11.5 + parent: 1 + type: Transform + - uid: 9283 + components: + - rot: 3.141592653589793 rad + pos: 23.5,10.5 + parent: 1 + type: Transform + - uid: 9328 + components: + - pos: -42.5,7.5 + parent: 1 + type: Transform + - uid: 9329 + components: + - pos: -43.5,7.5 + parent: 1 + type: Transform + - uid: 9330 + components: + - pos: -43.5,8.5 + parent: 1 + type: Transform + - uid: 9509 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,57.5 + parent: 1 + type: Transform + - uid: 9510 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,57.5 + parent: 1 + type: Transform + - uid: 9869 + components: + - pos: -35.5,-21.5 + parent: 1 + type: Transform + - uid: 10934 + components: + - pos: 35.5,-21.5 + parent: 1 + type: Transform + - uid: 10935 + components: + - pos: 34.5,-21.5 + parent: 1 + type: Transform + - uid: 13470 + components: + - rot: 3.141592653589793 rad + pos: -17.5,64.5 + parent: 1 + type: Transform + - uid: 13475 + components: + - pos: -12.5,64.5 + parent: 1 + type: Transform +- proto: TaikoInstrument + entities: + - uid: 18323 + components: + - pos: -16.5,-2.5 + parent: 1 + type: Transform +- proto: TelecomServer + entities: + - uid: 3583 + components: + - pos: 15.5,-15.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 3587 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 3729 + components: + - pos: 17.5,-17.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 3730 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 3982 + components: + - pos: 17.5,-15.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 4349 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 4391 + components: + - pos: 16.5,-15.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 4569 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 4703 + components: + - pos: 16.5,-13.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 6461 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 7316 + components: + - pos: 17.5,-13.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 8436 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 18434 + components: + - pos: 16.5,-17.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 18435 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 18446 + components: + - pos: 15.5,-13.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 18447 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer +- proto: Thruster + entities: + - uid: 8881 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-6.5 + parent: 8756 + type: Transform + - uid: 8882 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 8756 + type: Transform + - uid: 8883 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 8756 + type: Transform + - uid: 8884 + components: + - pos: 2.5,2.5 + parent: 8756 + type: Transform +- proto: TintedWindow + entities: + - uid: 536 + components: + - pos: -14.5,-2.5 + parent: 1 + type: Transform + - uid: 615 + components: + - pos: -22.5,12.5 + parent: 1 + type: Transform + - uid: 665 + components: + - pos: -14.5,3.5 + parent: 1 + type: Transform + - uid: 3169 + components: + - pos: -36.5,46.5 + parent: 1 + type: Transform + - uid: 3170 + components: + - pos: -36.5,42.5 + parent: 1 + type: Transform + - uid: 3183 + components: + - pos: 39.5,47.5 + parent: 1 + type: Transform + - uid: 3230 + components: + - rot: 3.141592653589793 rad + pos: 25.5,48.5 + parent: 1 + type: Transform + - uid: 3241 + components: + - rot: 3.141592653589793 rad + pos: 24.5,48.5 + parent: 1 + type: Transform + - uid: 4009 + components: + - pos: 20.5,-6.5 + parent: 1 + type: Transform + - uid: 6937 + components: + - pos: 13.5,41.5 + parent: 1 + type: Transform + - uid: 6938 + components: + - pos: 13.5,45.5 + parent: 1 + type: Transform + - uid: 6939 + components: + - pos: 16.5,46.5 + parent: 1 + type: Transform + - uid: 8923 + components: + - pos: -27.5,12.5 + parent: 1 + type: Transform + - uid: 8990 + components: + - pos: -28.5,12.5 + parent: 1 + type: Transform + - uid: 8991 + components: + - pos: -29.5,11.5 + parent: 1 + type: Transform +- proto: TobaccoSeeds + entities: + - uid: 8629 + components: + - pos: -38.497883,49.42718 + parent: 1 + type: Transform +- proto: ToiletDirtyWater + entities: + - uid: 4314 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,49.5 + parent: 1 + type: Transform + - uid: 10097 + components: + - pos: -17.5,-39.5 + parent: 1 + type: Transform + - uid: 10103 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-39.5 + parent: 1 + type: Transform +- proto: ToiletEmpty + entities: + - uid: 6813 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,70.5 + parent: 1 + type: Transform +- proto: TomDrumsInstrument + entities: + - uid: 548 + components: + - pos: -7.5,-4.5 + parent: 1 + type: Transform +- proto: ToolboxArtistic + entities: + - uid: 8351 + components: + - pos: -27.20099,29.52882 + parent: 1 + type: Transform +- proto: ToolboxElectricalFilled + entities: + - uid: 8066 + components: + - pos: 7.4163632,77.75221 + parent: 1 + type: Transform + - uid: 8348 + components: + - pos: -28.01032,29.77007 + parent: 1 + type: Transform + - uid: 9096 + components: + - pos: 5.5191555,-21.48169 + parent: 1 + type: Transform + - uid: 9237 + components: + - pos: -22.433441,-13.274618 + parent: 1 + type: Transform + - uid: 9967 + components: + - pos: -24.569386,-24.282387 + parent: 1 + type: Transform + - uid: 13170 + components: + - pos: 14.440446,25.49164 + parent: 1 + type: Transform +- proto: ToolboxEmergencyFilled + entities: + - uid: 7160 + components: + - pos: 13.566679,-41.456856 + parent: 1 + type: Transform + - uid: 8068 + components: + - pos: -3.4883027,83.51381 + parent: 1 + type: Transform + - uid: 8349 + components: + - pos: -27.32878,29.77007 + parent: 1 + type: Transform + - uid: 9968 + components: + - pos: -24.427397,-24.45268 + parent: 1 + type: Transform +- proto: ToolboxGoldFilled + entities: + - uid: 7255 + components: + - pos: 5.426082,45.55318 + parent: 1 + type: Transform + - type: ActiveUserInterface +- proto: ToolboxMechanicalFilled + entities: + - uid: 7159 + components: + - pos: 13.367895,-41.31494 + parent: 1 + type: Transform + - uid: 7828 + components: + - pos: -42.546696,26.738258 + parent: 1 + type: Transform + - uid: 8067 + components: + - pos: 7.70034,77.49678 + parent: 1 + type: Transform + - uid: 8350 + components: + - pos: -27.882532,29.52882 + parent: 1 + type: Transform + - uid: 9095 + components: + - pos: 5.3108225,-21.315023 + parent: 1 + type: Transform + - uid: 9238 + components: + - pos: -22.28761,-13.462118 + parent: 1 + type: Transform +- proto: ToyAi + entities: + - uid: 13382 + components: + - pos: -18.633104,28.672619 + parent: 1 + type: Transform +- proto: ToyAmongPequeno + entities: + - uid: 18428 + components: + - pos: 5.8128443,72.69741 + parent: 1 + type: Transform +- proto: ToyHonk + entities: + - uid: 8131 + components: + - pos: 12.534896,59.680813 + parent: 1 + type: Transform +- proto: ToyNuke + entities: + - uid: 8620 + components: + - pos: -38.454323,46.531727 + parent: 1 + type: Transform +- proto: TrashBag + entities: + - uid: 17272 + components: + - pos: -22.985895,-13.407032 + parent: 1 + type: Transform + - uid: 17273 + components: + - pos: -23.198877,-13.492178 + parent: 1 + type: Transform +- proto: trayScanner + entities: + - uid: 8711 + components: + - pos: -10.544276,-19.241236 + parent: 1 + type: Transform + - uid: 9086 + components: + - pos: 6.7274895,-21.335855 + parent: 1 + type: Transform + - uid: 9182 + components: + - pos: 12.564603,-11.337542 + parent: 1 + type: Transform + - uid: 9235 + components: + - pos: -22.793135,-11.262006 + parent: 1 + type: Transform +- proto: TubaInstrument + entities: + - uid: 6910 + components: + - pos: -9.5,-4.5 + parent: 1 + type: Transform +- proto: TwoWayLever + entities: + - uid: 4007 + components: + - pos: 18.5,-33.5 + parent: 1 + type: Transform + - linkedPorts: + 3830: + - Left: Forward + - Right: Reverse + - Middle: Off + 4002: + - Left: Forward + - Right: Reverse + - Middle: Off + 4001: + - Left: Forward + - Right: Reverse + - Middle: Off + 4000: + - Left: Forward + - Right: Reverse + - Middle: Off + 3999: + - Left: Forward + - Right: Reverse + - Middle: Off + 3989: + - Left: Forward + - Right: Reverse + - Middle: Off + 3998: + - Left: Forward + - Right: Reverse + - Middle: Off + 3997: + - Left: Forward + - Right: Reverse + - Middle: Off + 3996: + - Left: Forward + - Right: Reverse + - Middle: Off + 3994: + - Left: Forward + - Right: Reverse + - Middle: Off + 3995: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 7808 + components: + - pos: -42.5,23.5 + parent: 1 + type: Transform + - linkedPorts: + 4134: + - Left: Forward + - Right: Reverse + - Middle: Off + 4130: + - Left: Forward + - Right: Reverse + - Middle: Off + 1767: + - Left: Forward + - Right: Reverse + - Middle: Off + 4110: + - Left: Forward + - Right: Reverse + - Middle: Off + 7820: + - Left: Forward + - Right: Reverse + - Middle: Off + 7818: + - Left: Forward + - Right: Reverse + - Middle: Off + 4115: + - Left: Forward + - Right: Reverse + - Middle: Off + 7821: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 7918 + components: + - pos: -44.5,23.5 + parent: 1 + type: Transform + - linkedPorts: + 7821: + - Left: Forward + - Right: Reverse + - Middle: Off + 7820: + - Left: Forward + - Right: Reverse + - Middle: Off + 1767: + - Left: Forward + - Right: Reverse + - Middle: Off + 4134: + - Left: Forward + - Right: Reverse + - Middle: Off + 4115: + - Left: Forward + - Right: Reverse + - Middle: Off + 7818: + - Left: Forward + - Right: Reverse + - Middle: Off + 4110: + - Left: Forward + - Right: Reverse + - Middle: Off + 4130: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 9362 + components: + - pos: -40.5,3.5 + parent: 1 + type: Transform + - linkedPorts: + 4141: + - Left: Forward + - Right: Reverse + - Middle: Off + 4142: + - Left: Forward + - Right: Reverse + - Middle: Off + 4143: + - Left: Forward + - Right: Reverse + - Middle: Off + 4144: + - Left: Forward + - Right: Reverse + - Middle: Off + 4145: + - Left: Forward + - Right: Reverse + - Middle: Off + 4137: + - Left: Forward + - Right: Reverse + - Middle: Off + 4138: + - Left: Forward + - Right: Reverse + - Middle: Off + 4139: + - Left: Forward + - Right: Reverse + - Middle: Off + 4140: + - Left: Forward + - Right: Reverse + - Middle: Off + 4148: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 9364 + components: + - pos: -37.5,4.5 + parent: 1 + type: Transform + - linkedPorts: + 4147: + - Left: Forward + - Right: Reverse + - Middle: Off + 4146: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource +- proto: UniformPrinter + entities: + - uid: 2901 + components: + - rot: 3.141592653589793 rad + pos: 25.5,6.5 + parent: 1 + type: Transform +- proto: UprightPianoInstrument + entities: + - uid: 4452 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,52.5 + parent: 1 + type: Transform +- proto: Vaccinator + entities: + - uid: 4081 + components: + - pos: 5.5,34.5 + parent: 1 + type: Transform +- proto: VehicleJanicartDestroyed + entities: + - uid: 16379 + components: + - pos: 24.5,58.5 + parent: 1 + type: Transform +- proto: VehicleKeyJanicart + entities: + - uid: 16378 + components: + - pos: 16.5,-4.5 + parent: 1 + type: Transform +- proto: VehicleKeySecway + entities: + - uid: 8244 + components: + - pos: -14.194751,50.769012 + parent: 1 + type: Transform + - uid: 8245 + components: + - pos: -14.257251,50.612762 + parent: 1 + type: Transform +- proto: VehicleKeySyndicateSegway + entities: + - uid: 13307 + components: + - pos: -21.378124,-0.6524431 + parent: 1 + type: Transform +- proto: VendingBarDrobe + entities: + - uid: 4033 + components: + - flags: SessionSpecific + type: MetaData + - pos: -6.5,11.5 + parent: 1 + type: Transform +- proto: VendingMachineAtmosDrobe + entities: + - uid: 7097 + components: + - flags: SessionSpecific + type: MetaData + - pos: -10.5,-17.5 + parent: 1 + type: Transform +- proto: VendingMachineBooze + entities: + - uid: 4041 + components: + - flags: SessionSpecific + type: MetaData + - pos: -11.5,8.5 + parent: 1 + type: Transform + - uid: 4449 + components: + - flags: SessionSpecific + type: MetaData + - pos: -35.5,56.5 + parent: 1 + type: Transform +- proto: VendingMachineCargoDrobe + entities: + - uid: 9159 + components: + - flags: SessionSpecific + type: MetaData + - pos: -36.5,9.5 + parent: 1 + type: Transform +- proto: VendingMachineCart + entities: + - uid: 2500 + components: + - flags: SessionSpecific + type: MetaData + - pos: 24.5,7.5 + parent: 1 + type: Transform +- proto: VendingMachineChang + entities: + - uid: 9438 + components: + - flags: SessionSpecific + type: MetaData + - pos: 29.5,-5.5 + parent: 1 + type: Transform + - uid: 9447 + components: + - flags: SessionSpecific + type: MetaData + - pos: -48.5,12.5 + parent: 1 + type: Transform +- proto: VendingMachineChapel + entities: + - uid: 7342 + components: + - flags: SessionSpecific + type: MetaData + - pos: 26.5,54.5 + parent: 1 + type: Transform +- proto: VendingMachineChefDrobe + entities: + - uid: 4398 + components: + - flags: SessionSpecific + type: MetaData + - pos: 10.5,-0.5 + parent: 1 + type: Transform +- proto: VendingMachineChefvend + entities: + - uid: 9000 + components: + - flags: SessionSpecific + type: MetaData + - pos: 9.5,-0.5 + parent: 1 + type: Transform +- proto: VendingMachineChemDrobe + entities: + - uid: 3614 + components: + - flags: SessionSpecific + type: MetaData + - pos: 2.5,25.5 + parent: 1 + type: Transform +- proto: VendingMachineChemicals + entities: + - uid: 7777 + components: + - flags: SessionSpecific + type: MetaData + - pos: 7.5,22.5 + parent: 1 + type: Transform +- proto: VendingMachineCigs + entities: + - uid: 1281 + components: + - flags: SessionSpecific + type: MetaData + - pos: -46.5,16.5 + parent: 1 + type: Transform + - uid: 2010 + components: + - flags: SessionSpecific + type: MetaData + - pos: 35.5,6.5 + parent: 1 + type: Transform + - uid: 8089 + components: + - flags: SessionSpecific + type: MetaData + - pos: 6.5,78.5 + parent: 1 + type: Transform + - uid: 8996 + components: + - flags: SessionSpecific + type: MetaData + - pos: 3.5,11.5 + parent: 1 + type: Transform + - uid: 9401 + components: + - flags: SessionSpecific + type: MetaData + - pos: -18.5,-19.5 + parent: 1 + type: Transform + - uid: 9436 + components: + - flags: SessionSpecific + type: MetaData + - pos: 27.5,27.5 + parent: 1 + type: Transform + - uid: 17383 + components: + - flags: SessionSpecific + type: MetaData + - pos: -50.5,35.5 + parent: 1 + type: Transform +- proto: VendingMachineClothing + entities: + - uid: 6087 + components: + - flags: SessionSpecific + type: MetaData + - pos: 20.5,43.5 + parent: 1 + type: Transform +- proto: VendingMachineCoffee + entities: + - uid: 8088 + components: + - flags: SessionSpecific + type: MetaData + - pos: 2.5,74.5 + parent: 1 + type: Transform + - uid: 8439 + components: + - flags: SessionSpecific + type: MetaData + - pos: 4.5,57.5 + parent: 1 + type: Transform + - uid: 9440 + components: + - flags: SessionSpecific + type: MetaData + - pos: 29.5,-3.5 + parent: 1 + type: Transform + - uid: 9492 + components: + - flags: SessionSpecific + type: MetaData + - pos: 22.5,29.5 + parent: 1 + type: Transform + - uid: 9554 + components: + - flags: SessionSpecific + type: MetaData + - pos: -32.5,-9.5 + parent: 1 + type: Transform +- proto: VendingMachineCola + entities: + - uid: 9432 + components: + - flags: SessionSpecific + type: MetaData + - pos: 48.5,43.5 + parent: 1 + type: Transform + - uid: 9434 + components: + - flags: SessionSpecific + type: MetaData + - pos: 27.5,29.5 + parent: 1 + type: Transform + - uid: 9446 + components: + - flags: SessionSpecific + type: MetaData + - pos: -30.5,21.5 + parent: 1 + type: Transform +- proto: VendingMachineCondiments + entities: + - uid: 6699 + components: + - flags: SessionSpecific + type: MetaData + - pos: 3.5,1.5 + parent: 1 + type: Transform +- proto: VendingMachineDetDrobe + entities: + - uid: 6853 + components: + - flags: SessionSpecific + type: MetaData + - pos: 40.5,49.5 + parent: 1 + type: Transform +- proto: VendingMachineDinnerware + entities: + - uid: 4394 + components: + - flags: SessionSpecific + type: MetaData + - pos: 12.5,-3.5 + parent: 1 + type: Transform +- proto: VendingMachineDiscount + entities: + - uid: 4345 + components: + - flags: SessionSpecific + type: MetaData + - pos: -30.5,20.5 + parent: 1 + type: Transform + - uid: 5812 + components: + - flags: SessionSpecific + type: MetaData + - pos: 48.5,44.5 + parent: 1 + type: Transform + - uid: 9464 + components: + - flags: SessionSpecific + type: MetaData + - pos: 47.5,12.5 + parent: 1 + type: Transform +- proto: VendingMachineDonut + entities: + - uid: 8090 + components: + - flags: SessionSpecific + type: MetaData + - pos: 2.5,73.5 + parent: 1 + type: Transform + - uid: 9439 + components: + - flags: SessionSpecific + type: MetaData + - pos: 29.5,-4.5 + parent: 1 + type: Transform + - uid: 9557 + components: + - flags: SessionSpecific + type: MetaData + - pos: -31.5,-9.5 + parent: 1 + type: Transform +- proto: VendingMachineEngiDrobe + entities: + - uid: 18427 + components: + - flags: SessionSpecific + type: MetaData + - pos: 7.5,-17.5 + parent: 1 + type: Transform +- proto: VendingMachineEngivend + entities: + - uid: 4183 + components: + - flags: SessionSpecific + type: MetaData + - pos: 13.5,-17.5 + parent: 1 + type: Transform + - uid: 7096 + components: + - flags: SessionSpecific + type: MetaData + - pos: -11.5,-17.5 + parent: 1 + type: Transform +- proto: VendingMachineGames + entities: + - uid: 8592 + components: + - flags: SessionSpecific + type: MetaData + - pos: -28.5,11.5 + parent: 1 + type: Transform + - uid: 9909 + components: + - flags: SessionSpecific + type: MetaData + - pos: -20.5,-33.5 + parent: 1 + type: Transform +- proto: VendingMachineGeneDrobe + entities: + - uid: 7243 + components: + - flags: SessionSpecific + type: MetaData + - pos: 12.5,30.5 + parent: 1 + type: Transform +- proto: VendingMachineHappyHonk + entities: + - uid: 9016 + components: + - flags: SessionSpecific + type: MetaData + - pos: 12.5,-4.5 + parent: 1 + type: Transform +- proto: VendingMachineHydrobe + entities: + - uid: 4220 + components: + - flags: SessionSpecific + type: MetaData + - pos: 13.5,11.5 + parent: 1 + type: Transform +- proto: VendingMachineJaniDrobe + entities: + - uid: 9259 + components: + - flags: SessionSpecific + type: MetaData + - pos: 22.5,-2.5 + parent: 1 + type: Transform +- proto: VendingMachineLawDrobe + entities: + - uid: 7277 + components: + - flags: SessionSpecific + type: MetaData + - pos: 3.5,64.5 + parent: 1 + type: Transform +- proto: VendingMachineMediDrobe + entities: + - uid: 8679 + components: + - flags: SessionSpecific + type: MetaData + - pos: 14.5,27.5 + parent: 1 + type: Transform +- proto: VendingMachineNutri + entities: + - uid: 7263 + components: + - flags: SessionSpecific + type: MetaData + - pos: 7.5,11.5 + parent: 1 + type: Transform + - uid: 10961 + components: + - flags: SessionSpecific + type: MetaData + - pos: 34.5,-15.5 + parent: 1 + type: Transform +- proto: VendingMachineRoboDrobe + entities: + - uid: 2634 + components: + - flags: SessionSpecific + type: MetaData + - pos: -18.5,30.5 + parent: 1 + type: Transform + - uid: 2645 + components: + - flags: SessionSpecific + type: MetaData + - pos: -18.5,30.5 + parent: 1 + type: Transform +- proto: VendingMachineRobotics + entities: + - uid: 2652 + components: + - flags: SessionSpecific + type: MetaData + - pos: -17.5,30.5 + parent: 1 + type: Transform +- proto: VendingMachineSalvage + entities: + - uid: 4108 + components: + - flags: SessionSpecific + type: MetaData + - pos: -36.5,28.5 + parent: 1 + type: Transform +- proto: VendingMachineSciDrobe + entities: + - uid: 1069 + components: + - flags: SessionSpecific + type: MetaData + - pos: -19.5,22.5 + parent: 1 + type: Transform +- proto: VendingMachineSec + entities: + - uid: 4385 + components: + - flags: SessionSpecific + type: MetaData + - pos: -11.5,60.5 + parent: 1 + type: Transform +- proto: VendingMachineSecDrobe + entities: + - uid: 2653 + components: + - flags: SessionSpecific + type: MetaData + - pos: -16.5,40.5 + parent: 1 + type: Transform +- proto: VendingMachineSeeds + entities: + - uid: 9003 + components: + - flags: SessionSpecific + type: MetaData + - pos: 6.5,11.5 + parent: 1 + type: Transform +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 4329 + components: + - flags: SessionSpecific + type: MetaData + - pos: -35.5,49.5 + parent: 1 + type: Transform +- proto: VendingMachineSmartFridge + entities: + - uid: 9047 + components: + - flags: SessionSpecific + type: MetaData + - pos: 6.5,3.5 + parent: 1 + type: Transform +- proto: VendingMachineSnack + entities: + - uid: 9435 + components: + - flags: SessionSpecific + type: MetaData + - pos: 27.5,28.5 + parent: 1 + type: Transform + - uid: 9463 + components: + - flags: SessionSpecific + type: MetaData + - pos: 47.5,-6.5 + parent: 1 + type: Transform +- proto: VendingMachineSovietSoda + entities: + - uid: 6662 + components: + - flags: SessionSpecific + type: MetaData + - pos: -38.5,-14.5 + parent: 1 + type: Transform +- proto: VendingMachineSustenance + entities: + - uid: 653 + components: + - flags: SessionSpecific + type: MetaData + - pos: -33.5,42.5 + parent: 1 + type: Transform +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 4219 + components: + - flags: SessionSpecific + type: MetaData + - pos: 13.5,-37.5 + parent: 1 + type: Transform + - uid: 6915 + components: + - flags: SessionSpecific + type: MetaData + - pos: 27.5,34.5 + parent: 1 + type: Transform + - uid: 7116 + components: + - flags: SessionSpecific + type: MetaData + - pos: -8.5,-11.5 + parent: 1 + type: Transform + - uid: 7810 + components: + - flags: SessionSpecific + type: MetaData + - pos: -39.5,30.5 + parent: 1 + type: Transform + - uid: 8167 + components: + - flags: SessionSpecific + type: MetaData + - pos: -8.5,60.5 + parent: 1 + type: Transform + - uid: 8740 + components: + - flags: SessionSpecific + type: MetaData + - pos: -12.5,-39.5 + parent: 1 + type: Transform +- proto: VendingMachineTheater + entities: + - uid: 4437 + components: + - flags: SessionSpecific + type: MetaData + - pos: -27.5,34.5 + parent: 1 + type: Transform + - uid: 6086 + components: + - flags: SessionSpecific + type: MetaData + - pos: 19.5,43.5 + parent: 1 + type: Transform +- proto: VendingMachineVendomat + entities: + - uid: 4438 + components: + - flags: SessionSpecific + type: MetaData + - pos: -28.5,34.5 + parent: 1 + type: Transform + - uid: 18432 + components: + - flags: SessionSpecific + type: MetaData + - pos: 18.5,-23.5 + parent: 1 + type: Transform +- proto: VendingMachineViroDrobe + entities: + - uid: 4083 + components: + - flags: SessionSpecific + type: MetaData + - pos: 4.5,34.5 + parent: 1 + type: Transform +- proto: VendingMachineWinter + entities: + - uid: 7769 + components: + - flags: SessionSpecific + type: MetaData + - pos: 21.5,43.5 + parent: 1 + type: Transform +- proto: VendingMachineYouTool + entities: + - uid: 4182 + components: + - flags: SessionSpecific + type: MetaData + - pos: 10.5,-17.5 + parent: 1 + type: Transform + - uid: 4436 + components: + - flags: SessionSpecific + type: MetaData + - pos: -26.5,34.5 + parent: 1 + type: Transform +- proto: VibraphoneInstrument + entities: + - uid: 8177 + components: + - pos: -17.5,-40.5 + parent: 1 + type: Transform + - uid: 14022 + components: + - pos: 20.5,50.5 + parent: 1 + type: Transform +- proto: WallmountTelescreen + entities: + - uid: 8359 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,51.5 + parent: 1 + type: Transform +- proto: WallmountTelevision + entities: + - uid: 17928 + components: + - pos: 27.5,24.5 + parent: 1 + type: Transform + - uid: 17929 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-10.5 + parent: 1 + type: Transform + - uid: 17931 + components: + - pos: 10.5,39.5 + parent: 1 + type: Transform + - uid: 17932 + components: + - pos: -26.5,39.5 + parent: 1 + type: Transform + - uid: 17933 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,45.5 + parent: 1 + type: Transform + - uid: 17934 + components: + - rot: 3.141592653589793 rad + pos: 10.5,65.5 + parent: 1 + type: Transform + - uid: 17935 + components: + - rot: 3.141592653589793 rad + pos: -8.5,12.5 + parent: 1 + type: Transform + - uid: 17936 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-2.5 + parent: 1 + type: Transform + - uid: 17937 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-10.5 + parent: 1 + type: Transform +- proto: WallReinforced + entities: + - uid: 3 + components: + - rot: 3.141592653589793 rad + pos: 44.5,18.5 + parent: 1 + type: Transform + - uid: 6 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,7.5 + parent: 1 + type: Transform + - uid: 7 + components: + - rot: 3.141592653589793 rad + pos: 50.5,18.5 + parent: 1 + type: Transform + - uid: 10 + components: + - rot: 3.141592653589793 rad + pos: 47.5,18.5 + parent: 1 + type: Transform + - uid: 12 + components: + - rot: 3.141592653589793 rad + pos: 44.5,33.5 + parent: 1 + type: Transform + - uid: 14 + components: + - pos: 44.5,16.5 + parent: 1 + type: Transform + - uid: 15 + components: + - pos: 43.5,16.5 + parent: 1 + type: Transform + - uid: 24 + components: + - pos: 38.5,16.5 + parent: 1 + type: Transform + - uid: 25 + components: + - pos: 33.5,16.5 + parent: 1 + type: Transform + - uid: 27 + components: + - pos: 33.5,21.5 + parent: 1 + type: Transform + - uid: 28 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,20.5 + parent: 1 + type: Transform + - uid: 40 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,31.5 + parent: 1 + type: Transform + - uid: 44 + components: + - pos: 33.5,12.5 + parent: 1 + type: Transform + - uid: 45 + components: + - pos: 38.5,12.5 + parent: 1 + type: Transform + - uid: 46 + components: + - pos: 43.5,12.5 + parent: 1 + type: Transform + - uid: 47 + components: + - pos: 44.5,12.5 + parent: 1 + type: Transform + - uid: 49 + components: + - pos: 50.5,12.5 + parent: 1 + type: Transform + - uid: 51 + components: + - pos: 50.5,16.5 + parent: 1 + type: Transform + - uid: 55 + components: + - rot: 3.141592653589793 rad + pos: 47.5,16.5 + parent: 1 + type: Transform + - uid: 56 + components: + - rot: 3.141592653589793 rad + pos: 47.5,17.5 + parent: 1 + type: Transform + - uid: 63 + components: + - rot: 3.141592653589793 rad + pos: 44.5,35.5 + parent: 1 + type: Transform + - uid: 64 + components: + - rot: 3.141592653589793 rad + pos: 52.5,14.5 + parent: 1 + type: Transform + - uid: 65 + components: + - rot: 3.141592653589793 rad + pos: 50.5,14.5 + parent: 1 + type: Transform + - uid: 66 + components: + - rot: 3.141592653589793 rad + pos: 51.5,14.5 + parent: 1 + type: Transform + - uid: 67 + components: + - rot: 3.141592653589793 rad + pos: 52.5,16.5 + parent: 1 + type: Transform + - uid: 68 + components: + - rot: 3.141592653589793 rad + pos: 52.5,12.5 + parent: 1 + type: Transform + - uid: 71 + components: + - rot: 3.141592653589793 rad + pos: 43.5,35.5 + parent: 1 + type: Transform + - uid: 72 + components: + - rot: 3.141592653589793 rad + pos: 50.5,33.5 + parent: 1 + type: Transform + - uid: 73 + components: + - rot: 3.141592653589793 rad + pos: 50.5,35.5 + parent: 1 + type: Transform + - uid: 74 + components: + - rot: 3.141592653589793 rad + pos: 47.5,35.5 + parent: 1 + type: Transform + - uid: 75 + components: + - rot: 3.141592653589793 rad + pos: 47.5,34.5 + parent: 1 + type: Transform + - uid: 76 + components: + - rot: 3.141592653589793 rad + pos: 47.5,33.5 + parent: 1 + type: Transform + - uid: 83 + components: + - rot: 3.141592653589793 rad + pos: 52.5,39.5 + parent: 1 + type: Transform + - uid: 84 + components: + - rot: 3.141592653589793 rad + pos: 52.5,35.5 + parent: 1 + type: Transform + - uid: 85 + components: + - rot: 3.141592653589793 rad + pos: 52.5,37.5 + parent: 1 + type: Transform + - uid: 86 + components: + - rot: 3.141592653589793 rad + pos: 51.5,37.5 + parent: 1 + type: Transform + - uid: 88 + components: + - rot: 3.141592653589793 rad + pos: 50.5,37.5 + parent: 1 + type: Transform + - uid: 91 + components: + - pos: 47.5,11.5 + parent: 1 + type: Transform + - uid: 93 + components: + - pos: 51.5,-15.5 + parent: 1 + type: Transform + - uid: 94 + components: + - pos: 52.5,-6.5 + parent: 1 + type: Transform + - uid: 99 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,11.5 + parent: 1 + type: Transform + - uid: 107 + components: + - rot: 1.5707963267948966 rad + pos: 50.5,11.5 + parent: 1 + type: Transform + - uid: 108 + components: + - pos: -51.5,-10.5 + parent: 1 + type: Transform + - uid: 113 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,3.5 + parent: 1 + type: Transform + - uid: 114 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,6.5 + parent: 1 + type: Transform + - uid: 115 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,0.5 + parent: 1 + type: Transform + - uid: 119 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,10.5 + parent: 1 + type: Transform + - uid: 120 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,11.5 + parent: 1 + type: Transform + - uid: 121 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,11.5 + parent: 1 + type: Transform + - uid: 122 + components: + - pos: -41.5,7.5 + parent: 1 + type: Transform + - uid: 123 + components: + - pos: -41.5,8.5 + parent: 1 + type: Transform + - uid: 124 + components: + - pos: -41.5,10.5 + parent: 1 + type: Transform + - uid: 125 + components: + - pos: -41.5,11.5 + parent: 1 + type: Transform + - uid: 132 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-3.5 + parent: 1 + type: Transform + - uid: 133 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-4.5 + parent: 1 + type: Transform + - uid: 134 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-5.5 + parent: 1 + type: Transform + - uid: 135 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-5.5 + parent: 1 + type: Transform + - uid: 139 + components: + - pos: -37.5,-18.5 + parent: 1 + type: Transform + - uid: 140 + components: + - pos: -38.5,-18.5 + parent: 1 + type: Transform + - uid: 141 + components: + - pos: -39.5,-18.5 + parent: 1 + type: Transform + - uid: 144 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,16.5 + parent: 1 + type: Transform + - uid: 145 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,16.5 + parent: 1 + type: Transform + - uid: 146 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,17.5 + parent: 1 + type: Transform + - uid: 148 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,-10.5 + parent: 1 + type: Transform + - uid: 149 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,-6.5 + parent: 1 + type: Transform + - uid: 150 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,-6.5 + parent: 1 + type: Transform + - uid: 151 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,-5.5 + parent: 1 + type: Transform + - uid: 154 + components: + - pos: -41.5,6.5 + parent: 1 + type: Transform + - uid: 167 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,11.5 + parent: 1 + type: Transform + - uid: 170 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-1.5 + parent: 1 + type: Transform + - uid: 171 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,0.5 + parent: 1 + type: Transform + - uid: 172 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,-1.5 + parent: 1 + type: Transform + - uid: 174 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,4.5 + parent: 1 + type: Transform + - uid: 176 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,8.5 + parent: 1 + type: Transform + - uid: 180 + components: + - pos: 33.5,8.5 + parent: 1 + type: Transform + - uid: 212 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,25.5 + parent: 1 + type: Transform + - uid: 213 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,26.5 + parent: 1 + type: Transform + - uid: 214 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,30.5 + parent: 1 + type: Transform + - uid: 221 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,35.5 + parent: 1 + type: Transform + - uid: 230 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,12.5 + parent: 1 + type: Transform + - uid: 231 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,12.5 + parent: 1 + type: Transform + - uid: 235 + components: + - pos: 47.5,-15.5 + parent: 1 + type: Transform + - uid: 246 + components: + - pos: -33.5,12.5 + parent: 1 + type: Transform + - uid: 247 + components: + - pos: -33.5,-6.5 + parent: 1 + type: Transform + - uid: 255 + components: + - pos: -41.5,3.5 + parent: 1 + type: Transform + - uid: 256 + components: + - pos: -41.5,0.5 + parent: 1 + type: Transform + - uid: 260 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-5.5 + parent: 1 + type: Transform + - uid: 270 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,0.5 + parent: 1 + type: Transform + - uid: 278 + components: + - pos: -39.5,-15.5 + parent: 1 + type: Transform + - uid: 280 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-6.5 + parent: 1 + type: Transform + - uid: 281 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-3.5 + parent: 1 + type: Transform + - uid: 282 + components: + - pos: -44.5,12.5 + parent: 1 + type: Transform + - uid: 283 + components: + - pos: -43.5,12.5 + parent: 1 + type: Transform + - uid: 284 + components: + - pos: -41.5,12.5 + parent: 1 + type: Transform + - uid: 285 + components: + - pos: -42.5,12.5 + parent: 1 + type: Transform + - uid: 289 + components: + - pos: 35.5,57.5 + parent: 1 + type: Transform + - uid: 290 + components: + - rot: 3.141592653589793 rad + pos: -4.5,84.5 + parent: 1 + type: Transform + - uid: 291 + components: + - rot: 3.141592653589793 rad + pos: -4.5,83.5 + parent: 1 + type: Transform + - uid: 292 + components: + - rot: 3.141592653589793 rad + pos: -7.5,83.5 + parent: 1 + type: Transform + - uid: 293 + components: + - rot: 3.141592653589793 rad + pos: -7.5,81.5 + parent: 1 + type: Transform + - uid: 294 + components: + - rot: 3.141592653589793 rad + pos: -8.5,81.5 + parent: 1 + type: Transform + - uid: 295 + components: + - rot: 3.141592653589793 rad + pos: -8.5,78.5 + parent: 1 + type: Transform + - uid: 296 + components: + - rot: 3.141592653589793 rad + pos: -9.5,78.5 + parent: 1 + type: Transform + - uid: 298 + components: + - rot: 3.141592653589793 rad + pos: 7.5,78.5 + parent: 1 + type: Transform + - uid: 300 + components: + - rot: 3.141592653589793 rad + pos: 6.5,81.5 + parent: 1 + type: Transform + - uid: 302 + components: + - pos: 3.5,83.5 + parent: 1 + type: Transform + - uid: 303 + components: + - pos: 6.5,83.5 + parent: 1 + type: Transform + - uid: 304 + components: + - pos: 7.5,81.5 + parent: 1 + type: Transform + - uid: 305 + components: + - rot: 3.141592653589793 rad + pos: -0.5,84.5 + parent: 1 + type: Transform + - uid: 315 + components: + - pos: 3.5,84.5 + parent: 1 + type: Transform + - uid: 328 + components: + - pos: -7.5,75.5 + parent: 1 + type: Transform + - uid: 329 + components: + - pos: -6.5,75.5 + parent: 1 + type: Transform + - uid: 330 + components: + - pos: -8.5,75.5 + parent: 1 + type: Transform + - uid: 331 + components: + - pos: -9.5,75.5 + parent: 1 + type: Transform + - uid: 340 + components: + - pos: 7.5,75.5 + parent: 1 + type: Transform + - uid: 341 + components: + - pos: 6.5,75.5 + parent: 1 + type: Transform + - uid: 342 + components: + - pos: 1.5,75.5 + parent: 1 + type: Transform + - uid: 343 + components: + - pos: 4.5,75.5 + parent: 1 + type: Transform + - uid: 344 + components: + - pos: 1.5,72.5 + parent: 1 + type: Transform + - uid: 345 + components: + - pos: -2.5,75.5 + parent: 1 + type: Transform + - uid: 349 + components: + - pos: -9.5,71.5 + parent: 1 + type: Transform + - uid: 350 + components: + - rot: 3.141592653589793 rad + pos: -6.5,70.5 + parent: 1 + type: Transform + - uid: 351 + components: + - pos: -7.5,71.5 + parent: 1 + type: Transform + - uid: 352 + components: + - pos: -6.5,71.5 + parent: 1 + type: Transform + - uid: 353 + components: + - pos: -4.5,75.5 + parent: 1 + type: Transform + - uid: 354 + components: + - pos: -3.5,75.5 + parent: 1 + type: Transform + - uid: 355 + components: + - pos: -4.5,74.5 + parent: 1 + type: Transform + - uid: 356 + components: + - pos: -4.5,73.5 + parent: 1 + type: Transform + - uid: 357 + components: + - pos: -2.5,74.5 + parent: 1 + type: Transform + - uid: 358 + components: + - pos: -2.5,73.5 + parent: 1 + type: Transform + - uid: 359 + components: + - pos: -0.5,75.5 + parent: 1 + type: Transform + - uid: 360 + components: + - pos: -0.5,69.5 + parent: 1 + type: Transform + - uid: 361 + components: + - pos: 1.5,69.5 + parent: 1 + type: Transform + - uid: 368 + components: + - pos: -4.5,72.5 + parent: 1 + type: Transform + - uid: 369 + components: + - pos: -4.5,71.5 + parent: 1 + type: Transform + - uid: 370 + components: + - pos: -5.5,71.5 + parent: 1 + type: Transform + - uid: 371 + components: + - pos: -2.5,72.5 + parent: 1 + type: Transform + - uid: 372 + components: + - pos: -2.5,71.5 + parent: 1 + type: Transform + - uid: 373 + components: + - pos: -2.5,70.5 + parent: 1 + type: Transform + - uid: 377 + components: + - pos: 8.5,71.5 + parent: 1 + type: Transform + - uid: 378 + components: + - pos: 4.5,69.5 + parent: 1 + type: Transform + - uid: 379 + components: + - pos: 7.5,69.5 + parent: 1 + type: Transform + - uid: 380 + components: + - pos: 13.5,71.5 + parent: 1 + type: Transform + - uid: 381 + components: + - pos: 20.5,59.5 + parent: 1 + type: Transform + - uid: 382 + components: + - pos: 19.5,60.5 + parent: 1 + type: Transform + - uid: 383 + components: + - pos: 13.5,65.5 + parent: 1 + type: Transform + - uid: 384 + components: + - pos: 19.5,65.5 + parent: 1 + type: Transform + - uid: 385 + components: + - pos: 14.5,65.5 + parent: 1 + type: Transform + - uid: 386 + components: + - pos: 13.5,66.5 + parent: 1 + type: Transform + - uid: 387 + components: + - pos: 19.5,59.5 + parent: 1 + type: Transform + - uid: 388 + components: + - pos: 8.5,69.5 + parent: 1 + type: Transform + - uid: 389 + components: + - pos: 8.5,70.5 + parent: 1 + type: Transform + - uid: 396 + components: + - pos: -2.5,69.5 + parent: 1 + type: Transform + - uid: 398 + components: + - pos: 8.5,78.5 + parent: 1 + type: Transform + - uid: 399 + components: + - pos: 8.5,75.5 + parent: 1 + type: Transform + - uid: 422 + components: + - pos: 24.5,59.5 + parent: 1 + type: Transform + - uid: 423 + components: + - pos: 25.5,59.5 + parent: 1 + type: Transform + - uid: 424 + components: + - pos: 29.5,59.5 + parent: 1 + type: Transform + - uid: 425 + components: + - pos: 29.5,57.5 + parent: 1 + type: Transform + - uid: 426 + components: + - pos: 32.5,57.5 + parent: 1 + type: Transform + - uid: 428 + components: + - pos: 35.5,55.5 + parent: 1 + type: Transform + - uid: 429 + components: + - rot: 3.141592653589793 rad + pos: 35.5,53.5 + parent: 1 + type: Transform + - uid: 430 + components: + - pos: 40.5,52.5 + parent: 1 + type: Transform + - uid: 431 + components: + - pos: 44.5,52.5 + parent: 1 + type: Transform + - uid: 432 + components: + - pos: 44.5,49.5 + parent: 1 + type: Transform + - uid: 433 + components: + - pos: 47.5,49.5 + parent: 1 + type: Transform + - uid: 434 + components: + - pos: 47.5,45.5 + parent: 1 + type: Transform + - uid: 435 + components: + - pos: 49.5,45.5 + parent: 1 + type: Transform + - uid: 436 + components: + - pos: 50.5,39.5 + parent: 1 + type: Transform + - uid: 437 + components: + - pos: 49.5,39.5 + parent: 1 + type: Transform + - uid: 438 + components: + - pos: 49.5,40.5 + parent: 1 + type: Transform + - uid: 443 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-4.5 + parent: 1 + type: Transform + - uid: 451 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,0.5 + parent: 1 + type: Transform + - uid: 452 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,0.5 + parent: 1 + type: Transform + - uid: 453 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,0.5 + parent: 1 + type: Transform + - uid: 454 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,0.5 + parent: 1 + type: Transform + - uid: 455 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-5.5 + parent: 1 + type: Transform + - uid: 457 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-6.5 + parent: 1 + type: Transform + - uid: 458 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-6.5 + parent: 1 + type: Transform + - uid: 766 + components: + - pos: 43.5,-6.5 + parent: 1 + type: Transform + - uid: 791 + components: + - pos: -2.5,16.5 + parent: 1 + type: Transform + - uid: 792 + components: + - pos: 1.5,16.5 + parent: 1 + type: Transform + - uid: 793 + components: + - pos: -2.5,20.5 + parent: 1 + type: Transform + - uid: 794 + components: + - pos: 1.5,20.5 + parent: 1 + type: Transform + - uid: 795 + components: + - pos: -6.5,16.5 + parent: 1 + type: Transform + - uid: 803 + components: + - pos: -6.5,20.5 + parent: 1 + type: Transform + - uid: 804 + components: + - pos: -6.5,19.5 + parent: 1 + type: Transform + - uid: 805 + components: + - pos: 5.5,20.5 + parent: 1 + type: Transform + - uid: 806 + components: + - pos: 5.5,19.5 + parent: 1 + type: Transform + - uid: 811 + components: + - pos: -2.5,21.5 + parent: 1 + type: Transform + - uid: 812 + components: + - pos: 1.5,21.5 + parent: 1 + type: Transform + - uid: 813 + components: + - pos: -2.5,25.5 + parent: 1 + type: Transform + - uid: 814 + components: + - pos: 1.5,25.5 + parent: 1 + type: Transform + - uid: 815 + components: + - pos: -3.5,25.5 + parent: 1 + type: Transform + - uid: 816 + components: + - pos: 4.5,26.5 + parent: 1 + type: Transform + - uid: 817 + components: + - pos: -4.5,25.5 + parent: 1 + type: Transform + - uid: 818 + components: + - pos: -8.5,26.5 + parent: 1 + type: Transform + - uid: 819 + components: + - pos: -8.5,25.5 + parent: 1 + type: Transform + - uid: 820 + components: + - pos: -2.5,26.5 + parent: 1 + type: Transform + - uid: 821 + components: + - pos: 1.5,26.5 + parent: 1 + type: Transform + - uid: 823 + components: + - pos: -2.5,27.5 + parent: 1 + type: Transform + - uid: 828 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,29.5 + parent: 1 + type: Transform + - uid: 830 + components: + - pos: -4.5,27.5 + parent: 1 + type: Transform + - uid: 831 + components: + - pos: -4.5,31.5 + parent: 1 + type: Transform + - uid: 832 + components: + - pos: -8.5,31.5 + parent: 1 + type: Transform + - uid: 833 + components: + - pos: -8.5,27.5 + parent: 1 + type: Transform + - uid: 834 + components: + - pos: -2.5,31.5 + parent: 1 + type: Transform + - uid: 835 + components: + - pos: 40.5,44.5 + parent: 1 + type: Transform + - uid: 836 + components: + - pos: 40.5,42.5 + parent: 1 + type: Transform + - uid: 837 + components: + - pos: 40.5,41.5 + parent: 1 + type: Transform + - uid: 838 + components: + - pos: 41.5,45.5 + parent: 1 + type: Transform + - uid: 839 + components: + - pos: 42.5,45.5 + parent: 1 + type: Transform + - uid: 840 + components: + - pos: 44.5,45.5 + parent: 1 + type: Transform + - uid: 841 + components: + - pos: 45.5,45.5 + parent: 1 + type: Transform + - uid: 842 + components: + - pos: 43.5,45.5 + parent: 1 + type: Transform + - uid: 844 + components: + - pos: 46.5,45.5 + parent: 1 + type: Transform + - uid: 870 + components: + - pos: 38.5,35.5 + parent: 1 + type: Transform + - uid: 882 + components: + - pos: 40.5,53.5 + parent: 1 + type: Transform + - uid: 884 + components: + - pos: 38.5,56.5 + parent: 1 + type: Transform + - uid: 887 + components: + - pos: 35.5,56.5 + parent: 1 + type: Transform + - uid: 927 + components: + - pos: 39.5,53.5 + parent: 1 + type: Transform + - uid: 928 + components: + - pos: 39.5,56.5 + parent: 1 + type: Transform + - uid: 929 + components: + - pos: 36.5,56.5 + parent: 1 + type: Transform + - uid: 972 + components: + - pos: -14.5,71.5 + parent: 1 + type: Transform + - uid: 973 + components: + - pos: -14.5,66.5 + parent: 1 + type: Transform + - uid: 974 + components: + - pos: -14.5,65.5 + parent: 1 + type: Transform + - uid: 975 + components: + - pos: -15.5,65.5 + parent: 1 + type: Transform + - uid: 976 + components: + - pos: -20.5,65.5 + parent: 1 + type: Transform + - uid: 977 + components: + - pos: -20.5,60.5 + parent: 1 + type: Transform + - uid: 978 + components: + - pos: -20.5,59.5 + parent: 1 + type: Transform + - uid: 979 + components: + - pos: -21.5,59.5 + parent: 1 + type: Transform + - uid: 980 + components: + - pos: -30.5,59.5 + parent: 1 + type: Transform + - uid: 981 + components: + - pos: -30.5,57.5 + parent: 1 + type: Transform + - uid: 982 + components: + - pos: -33.5,57.5 + parent: 1 + type: Transform + - uid: 983 + components: + - pos: -36.5,57.5 + parent: 1 + type: Transform + - uid: 984 + components: + - pos: -36.5,55.5 + parent: 1 + type: Transform + - uid: 986 + components: + - pos: -41.5,52.5 + parent: 1 + type: Transform + - uid: 987 + components: + - pos: -45.5,52.5 + parent: 1 + type: Transform + - uid: 988 + components: + - pos: -45.5,49.5 + parent: 1 + type: Transform + - uid: 989 + components: + - pos: -48.5,49.5 + parent: 1 + type: Transform + - uid: 990 + components: + - pos: -48.5,45.5 + parent: 1 + type: Transform + - uid: 991 + components: + - pos: -50.5,45.5 + parent: 1 + type: Transform + - uid: 992 + components: + - pos: -50.5,40.5 + parent: 1 + type: Transform + - uid: 993 + components: + - pos: -50.5,39.5 + parent: 1 + type: Transform + - uid: 994 + components: + - pos: -51.5,39.5 + parent: 1 + type: Transform + - uid: 995 + components: + - pos: -2.5,32.5 + parent: 1 + type: Transform + - uid: 996 + components: + - pos: -2.5,33.5 + parent: 1 + type: Transform + - uid: 997 + components: + - pos: -2.5,34.5 + parent: 1 + type: Transform + - uid: 998 + components: + - pos: -2.5,35.5 + parent: 1 + type: Transform + - uid: 999 + components: + - pos: -3.5,35.5 + parent: 1 + type: Transform + - uid: 1000 + components: + - pos: -4.5,35.5 + parent: 1 + type: Transform + - uid: 1001 + components: + - pos: 1.5,31.5 + parent: 1 + type: Transform + - uid: 1004 + components: + - pos: 1.5,34.5 + parent: 1 + type: Transform + - uid: 1005 + components: + - pos: 1.5,35.5 + parent: 1 + type: Transform + - uid: 1006 + components: + - pos: 2.5,35.5 + parent: 1 + type: Transform + - uid: 1007 + components: + - pos: 3.5,35.5 + parent: 1 + type: Transform + - uid: 1008 + components: + - pos: -2.5,39.5 + parent: 1 + type: Transform + - uid: 1009 + components: + - pos: -2.5,43.5 + parent: 1 + type: Transform + - uid: 1010 + components: + - pos: -5.5,43.5 + parent: 1 + type: Transform + - uid: 1011 + components: + - pos: -5.5,39.5 + parent: 1 + type: Transform + - uid: 1012 + components: + - pos: -8.5,39.5 + parent: 1 + type: Transform + - uid: 1013 + components: + - pos: -8.5,43.5 + parent: 1 + type: Transform + - uid: 1014 + components: + - pos: -11.5,39.5 + parent: 1 + type: Transform + - uid: 1015 + components: + - pos: -11.5,43.5 + parent: 1 + type: Transform + - uid: 1016 + components: + - pos: -14.5,39.5 + parent: 1 + type: Transform + - uid: 1017 + components: + - pos: -14.5,43.5 + parent: 1 + type: Transform + - uid: 1018 + components: + - pos: -14.5,42.5 + parent: 1 + type: Transform + - uid: 1019 + components: + - pos: -14.5,41.5 + parent: 1 + type: Transform + - uid: 1020 + components: + - pos: -14.5,40.5 + parent: 1 + type: Transform + - uid: 1021 + components: + - pos: -11.5,42.5 + parent: 1 + type: Transform + - uid: 1022 + components: + - pos: -11.5,41.5 + parent: 1 + type: Transform + - uid: 1023 + components: + - pos: -11.5,40.5 + parent: 1 + type: Transform + - uid: 1024 + components: + - pos: -8.5,42.5 + parent: 1 + type: Transform + - uid: 1025 + components: + - pos: -8.5,41.5 + parent: 1 + type: Transform + - uid: 1026 + components: + - pos: -8.5,40.5 + parent: 1 + type: Transform + - uid: 1027 + components: + - pos: -5.5,42.5 + parent: 1 + type: Transform + - uid: 1028 + components: + - pos: -5.5,41.5 + parent: 1 + type: Transform + - uid: 1029 + components: + - pos: -5.5,40.5 + parent: 1 + type: Transform + - uid: 1030 + components: + - pos: -2.5,42.5 + parent: 1 + type: Transform + - uid: 1031 + components: + - pos: -2.5,41.5 + parent: 1 + type: Transform + - uid: 1032 + components: + - pos: -2.5,40.5 + parent: 1 + type: Transform + - uid: 1033 + components: + - pos: -8.5,35.5 + parent: 1 + type: Transform + - uid: 1034 + components: + - pos: -8.5,32.5 + parent: 1 + type: Transform + - uid: 1035 + components: + - pos: -8.5,34.5 + parent: 1 + type: Transform + - uid: 1036 + components: + - pos: -4.5,34.5 + parent: 1 + type: Transform + - uid: 1037 + components: + - pos: -4.5,33.5 + parent: 1 + type: Transform + - uid: 1043 + components: + - pos: -4.5,32.5 + parent: 1 + type: Transform + - uid: 1053 + components: + - pos: -9.5,35.5 + parent: 1 + type: Transform + - uid: 1054 + components: + - pos: -10.5,35.5 + parent: 1 + type: Transform + - uid: 1055 + components: + - pos: -11.5,35.5 + parent: 1 + type: Transform + - uid: 1056 + components: + - pos: -12.5,35.5 + parent: 1 + type: Transform + - uid: 1057 + components: + - pos: -12.5,34.5 + parent: 1 + type: Transform + - uid: 1058 + components: + - pos: -12.5,32.5 + parent: 1 + type: Transform + - uid: 1060 + components: + - pos: -16.5,35.5 + parent: 1 + type: Transform + - uid: 1062 + components: + - pos: -17.5,35.5 + parent: 1 + type: Transform + - uid: 1067 + components: + - pos: -17.5,29.5 + parent: 1 + type: Transform + - uid: 1072 + components: + - pos: -25.5,18.5 + parent: 1 + type: Transform + - uid: 1074 + components: + - pos: -16.5,28.5 + parent: 1 + type: Transform + - uid: 1075 + components: + - pos: -16.5,27.5 + parent: 1 + type: Transform + - uid: 1076 + components: + - pos: -12.5,33.5 + parent: 1 + type: Transform + - uid: 1094 + components: + - pos: -13.5,29.5 + parent: 1 + type: Transform + - uid: 1098 + components: + - pos: -12.5,29.5 + parent: 1 + type: Transform + - uid: 1101 + components: + - pos: -12.5,26.5 + parent: 1 + type: Transform + - uid: 1103 + components: + - pos: -16.5,26.5 + parent: 1 + type: Transform + - uid: 1107 + components: + - pos: -23.5,18.5 + parent: 1 + type: Transform + - uid: 1110 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,26.5 + parent: 1 + type: Transform + - uid: 1111 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,26.5 + parent: 1 + type: Transform + - uid: 1118 + components: + - pos: -7.5,16.5 + parent: 1 + type: Transform + - uid: 1119 + components: + - pos: -8.5,16.5 + parent: 1 + type: Transform + - uid: 1120 + components: + - pos: -9.5,16.5 + parent: 1 + type: Transform + - uid: 1121 + components: + - pos: -10.5,19.5 + parent: 1 + type: Transform + - uid: 1122 + components: + - pos: -10.5,20.5 + parent: 1 + type: Transform + - uid: 1123 + components: + - pos: -9.5,20.5 + parent: 1 + type: Transform + - uid: 1124 + components: + - pos: -8.5,20.5 + parent: 1 + type: Transform + - uid: 1125 + components: + - pos: -7.5,20.5 + parent: 1 + type: Transform + - uid: 1126 + components: + - pos: -10.5,16.5 + parent: 1 + type: Transform + - uid: 1127 + components: + - pos: -13.5,16.5 + parent: 1 + type: Transform + - uid: 1128 + components: + - pos: -13.5,17.5 + parent: 1 + type: Transform + - uid: 1129 + components: + - pos: -14.5,16.5 + parent: 1 + type: Transform + - uid: 1136 + components: + - pos: -18.5,16.5 + parent: 1 + type: Transform + - uid: 1137 + components: + - pos: -19.5,16.5 + parent: 1 + type: Transform + - uid: 1138 + components: + - pos: -19.5,17.5 + parent: 1 + type: Transform + - uid: 1141 + components: + - pos: -14.5,21.5 + parent: 1 + type: Transform + - uid: 1142 + components: + - pos: -14.5,22.5 + parent: 1 + type: Transform + - uid: 1146 + components: + - pos: -13.5,20.5 + parent: 1 + type: Transform + - uid: 1147 + components: + - pos: -13.5,21.5 + parent: 1 + type: Transform + - uid: 1164 + components: + - pos: -8.5,24.5 + parent: 1 + type: Transform + - uid: 1165 + components: + - pos: -8.5,23.5 + parent: 1 + type: Transform + - uid: 1168 + components: + - pos: -17.5,26.5 + parent: 1 + type: Transform + - uid: 1170 + components: + - pos: -18.5,21.5 + parent: 1 + type: Transform + - uid: 1171 + components: + - pos: -18.5,22.5 + parent: 1 + type: Transform + - uid: 1172 + components: + - pos: -19.5,21.5 + parent: 1 + type: Transform + - uid: 1173 + components: + - pos: -19.5,20.5 + parent: 1 + type: Transform + - uid: 1175 + components: + - pos: -22.5,16.5 + parent: 1 + type: Transform + - uid: 1177 + components: + - pos: -22.5,18.5 + parent: 1 + type: Transform + - uid: 1178 + components: + - pos: -26.5,24.5 + parent: 1 + type: Transform + - uid: 1179 + components: + - pos: -22.5,21.5 + parent: 1 + type: Transform + - uid: 1180 + components: + - pos: -25.5,24.5 + parent: 1 + type: Transform + - uid: 1181 + components: + - pos: -24.5,24.5 + parent: 1 + type: Transform + - uid: 1182 + components: + - pos: -23.5,24.5 + parent: 1 + type: Transform + - uid: 1183 + components: + - pos: -22.5,24.5 + parent: 1 + type: Transform + - uid: 1184 + components: + - pos: -22.5,25.5 + parent: 1 + type: Transform + - uid: 1185 + components: + - pos: -22.5,26.5 + parent: 1 + type: Transform + - uid: 1186 + components: + - pos: -21.5,26.5 + parent: 1 + type: Transform + - uid: 1187 + components: + - pos: -19.5,26.5 + parent: 1 + type: Transform + - uid: 1188 + components: + - pos: -18.5,26.5 + parent: 1 + type: Transform + - uid: 1189 + components: + - pos: -26.5,23.5 + parent: 1 + type: Transform + - uid: 1190 + components: + - pos: -26.5,22.5 + parent: 1 + type: Transform + - uid: 1191 + components: + - pos: -26.5,21.5 + parent: 1 + type: Transform + - uid: 1192 + components: + - pos: -26.5,20.5 + parent: 1 + type: Transform + - uid: 1193 + components: + - pos: -26.5,19.5 + parent: 1 + type: Transform + - uid: 1194 + components: + - pos: -26.5,18.5 + parent: 1 + type: Transform + - uid: 1195 + components: + - pos: -24.5,18.5 + parent: 1 + type: Transform + - uid: 1196 + components: + - pos: -22.5,35.5 + parent: 1 + type: Transform + - uid: 1197 + components: + - pos: -16.5,29.5 + parent: 1 + type: Transform + - uid: 1226 + components: + - pos: -19.5,30.5 + parent: 1 + type: Transform + - uid: 1227 + components: + - pos: -21.5,31.5 + parent: 1 + type: Transform + - uid: 1230 + components: + - pos: -22.5,32.5 + parent: 1 + type: Transform + - uid: 1231 + components: + - pos: -22.5,33.5 + parent: 1 + type: Transform + - uid: 1232 + components: + - pos: -22.5,34.5 + parent: 1 + type: Transform + - uid: 1233 + components: + - pos: -22.5,31.5 + parent: 1 + type: Transform + - uid: 1236 + components: + - pos: -19.5,31.5 + parent: 1 + type: Transform + - uid: 1237 + components: + - pos: -21.5,35.5 + parent: 1 + type: Transform + - uid: 1242 + components: + - pos: -20.5,31.5 + parent: 1 + type: Transform + - uid: 1268 + components: + - pos: -40.5,35.5 + parent: 1 + type: Transform + - uid: 1269 + components: + - pos: -44.5,35.5 + parent: 1 + type: Transform + - uid: 1270 + components: + - pos: -45.5,35.5 + parent: 1 + type: Transform + - uid: 1271 + components: + - pos: -45.5,34.5 + parent: 1 + type: Transform + - uid: 1274 + components: + - pos: -51.5,16.5 + parent: 1 + type: Transform + - uid: 1275 + components: + - pos: -53.5,16.5 + parent: 1 + type: Transform + - uid: 1276 + components: + - pos: -53.5,14.5 + parent: 1 + type: Transform + - uid: 1277 + components: + - pos: -51.5,14.5 + parent: 1 + type: Transform + - uid: 1285 + components: + - pos: -53.5,35.5 + parent: 1 + type: Transform + - uid: 1286 + components: + - pos: -51.5,35.5 + parent: 1 + type: Transform + - uid: 1287 + components: + - pos: -53.5,37.5 + parent: 1 + type: Transform + - uid: 1288 + components: + - pos: -53.5,39.5 + parent: 1 + type: Transform + - uid: 1289 + components: + - pos: -51.5,37.5 + parent: 1 + type: Transform + - uid: 1307 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,23.5 + parent: 1 + type: Transform + - uid: 1308 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,23.5 + parent: 1 + type: Transform + - uid: 1315 + components: + - pos: -17.5,39.5 + parent: 1 + type: Transform + - uid: 1318 + components: + - pos: -20.5,39.5 + parent: 1 + type: Transform + - uid: 1319 + components: + - pos: -20.5,40.5 + parent: 1 + type: Transform + - uid: 1320 + components: + - pos: -20.5,41.5 + parent: 1 + type: Transform + - uid: 1321 + components: + - pos: -20.5,42.5 + parent: 1 + type: Transform + - uid: 1322 + components: + - pos: -20.5,43.5 + parent: 1 + type: Transform + - uid: 1335 + components: + - pos: -2.5,44.5 + parent: 1 + type: Transform + - uid: 1336 + components: + - pos: -2.5,45.5 + parent: 1 + type: Transform + - uid: 1337 + components: + - pos: -2.5,46.5 + parent: 1 + type: Transform + - uid: 1338 + components: + - pos: -2.5,47.5 + parent: 1 + type: Transform + - uid: 1339 + components: + - pos: -2.5,49.5 + parent: 1 + type: Transform + - uid: 1340 + components: + - pos: -2.5,51.5 + parent: 1 + type: Transform + - uid: 1341 + components: + - pos: -3.5,51.5 + parent: 1 + type: Transform + - uid: 1342 + components: + - pos: -4.5,51.5 + parent: 1 + type: Transform + - uid: 1343 + components: + - pos: -4.5,55.5 + parent: 1 + type: Transform + - uid: 1344 + components: + - pos: -5.5,51.5 + parent: 1 + type: Transform + - uid: 1345 + components: + - pos: -6.5,51.5 + parent: 1 + type: Transform + - uid: 1348 + components: + - pos: -4.5,58.5 + parent: 1 + type: Transform + - uid: 1349 + components: + - pos: -3.5,58.5 + parent: 1 + type: Transform + - uid: 1350 + components: + - pos: -2.5,58.5 + parent: 1 + type: Transform + - uid: 1353 + components: + - pos: -7.5,51.5 + parent: 1 + type: Transform + - uid: 1354 + components: + - pos: -7.5,54.5 + parent: 1 + type: Transform + - uid: 1355 + components: + - pos: -16.5,57.5 + parent: 1 + type: Transform + - uid: 1356 + components: + - pos: -7.5,58.5 + parent: 1 + type: Transform + - uid: 1357 + components: + - pos: -6.5,58.5 + parent: 1 + type: Transform + - uid: 1358 + components: + - pos: -5.5,58.5 + parent: 1 + type: Transform + - uid: 1364 + components: + - pos: -11.5,62.5 + parent: 1 + type: Transform + - uid: 1365 + components: + - pos: -5.5,49.5 + parent: 1 + type: Transform + - uid: 1366 + components: + - pos: -5.5,47.5 + parent: 1 + type: Transform + - uid: 1395 + components: + - pos: -20.5,44.5 + parent: 1 + type: Transform + - uid: 1396 + components: + - pos: -20.5,45.5 + parent: 1 + type: Transform + - uid: 1397 + components: + - pos: -20.5,46.5 + parent: 1 + type: Transform + - uid: 1398 + components: + - pos: -20.5,49.5 + parent: 1 + type: Transform + - uid: 1399 + components: + - pos: -20.5,50.5 + parent: 1 + type: Transform + - uid: 1400 + components: + - pos: -20.5,51.5 + parent: 1 + type: Transform + - uid: 1401 + components: + - pos: -20.5,52.5 + parent: 1 + type: Transform + - uid: 1402 + components: + - pos: -20.5,53.5 + parent: 1 + type: Transform + - uid: 1403 + components: + - pos: -15.5,47.5 + parent: 1 + type: Transform + - uid: 1404 + components: + - pos: -10.5,47.5 + parent: 1 + type: Transform + - uid: 1405 + components: + - pos: -10.5,51.5 + parent: 1 + type: Transform + - uid: 1406 + components: + - pos: -15.5,51.5 + parent: 1 + type: Transform + - uid: 1420 + components: + - pos: -20.5,54.5 + parent: 1 + type: Transform + - uid: 1421 + components: + - pos: -19.5,54.5 + parent: 1 + type: Transform + - uid: 1422 + components: + - pos: -18.5,54.5 + parent: 1 + type: Transform + - uid: 1423 + components: + - pos: -17.5,54.5 + parent: 1 + type: Transform + - uid: 1424 + components: + - pos: -13.5,57.5 + parent: 1 + type: Transform + - uid: 1425 + components: + - pos: -12.5,57.5 + parent: 1 + type: Transform + - uid: 1426 + components: + - pos: -17.5,56.5 + parent: 1 + type: Transform + - uid: 1428 + components: + - pos: -16.5,61.5 + parent: 1 + type: Transform + - uid: 1429 + components: + - pos: -12.5,60.5 + parent: 1 + type: Transform + - uid: 1430 + components: + - pos: -17.5,58.5 + parent: 1 + type: Transform + - uid: 1431 + components: + - pos: -15.5,61.5 + parent: 1 + type: Transform + - uid: 1432 + components: + - pos: -14.5,61.5 + parent: 1 + type: Transform + - uid: 1433 + components: + - pos: -17.5,60.5 + parent: 1 + type: Transform + - uid: 1434 + components: + - pos: -17.5,61.5 + parent: 1 + type: Transform + - uid: 1435 + components: + - pos: -17.5,59.5 + parent: 1 + type: Transform + - uid: 1436 + components: + - pos: -10.5,62.5 + parent: 1 + type: Transform + - uid: 1437 + components: + - pos: -7.5,57.5 + parent: 1 + type: Transform + - uid: 1439 + components: + - pos: -10.5,61.5 + parent: 1 + type: Transform + - uid: 1445 + components: + - pos: -10.5,66.5 + parent: 1 + type: Transform + - uid: 1446 + components: + - pos: -10.5,65.5 + parent: 1 + type: Transform + - uid: 1447 + components: + - pos: -10.5,64.5 + parent: 1 + type: Transform + - uid: 1452 + components: + - pos: -10.5,63.5 + parent: 1 + type: Transform + - uid: 1453 + components: + - pos: -23.5,49.5 + parent: 1 + type: Transform + - uid: 1454 + components: + - pos: -23.5,46.5 + parent: 1 + type: Transform + - uid: 1455 + components: + - pos: -24.5,46.5 + parent: 1 + type: Transform + - uid: 1456 + components: + - pos: -25.5,46.5 + parent: 1 + type: Transform + - uid: 1457 + components: + - pos: -24.5,49.5 + parent: 1 + type: Transform + - uid: 1458 + components: + - pos: -25.5,49.5 + parent: 1 + type: Transform + - uid: 1459 + components: + - pos: -26.5,46.5 + parent: 1 + type: Transform + - uid: 1460 + components: + - pos: -26.5,45.5 + parent: 1 + type: Transform + - uid: 1464 + components: + - pos: -26.5,41.5 + parent: 1 + type: Transform + - uid: 1465 + components: + - pos: -27.5,41.5 + parent: 1 + type: Transform + - uid: 1466 + components: + - pos: -28.5,41.5 + parent: 1 + type: Transform + - uid: 1467 + components: + - pos: -24.5,41.5 + parent: 1 + type: Transform + - uid: 1468 + components: + - pos: -24.5,40.5 + parent: 1 + type: Transform + - uid: 1470 + components: + - pos: -38.5,41.5 + parent: 1 + type: Transform + - uid: 1471 + components: + - pos: -39.5,41.5 + parent: 1 + type: Transform + - uid: 1476 + components: + - pos: -41.5,44.5 + parent: 1 + type: Transform + - uid: 1477 + components: + - pos: -26.5,49.5 + parent: 1 + type: Transform + - uid: 1478 + components: + - pos: -26.5,51.5 + parent: 1 + type: Transform + - uid: 1479 + components: + - pos: -26.5,50.5 + parent: 1 + type: Transform + - uid: 1480 + components: + - pos: -27.5,51.5 + parent: 1 + type: Transform + - uid: 1481 + components: + - pos: -28.5,51.5 + parent: 1 + type: Transform + - uid: 1482 + components: + - pos: -29.5,51.5 + parent: 1 + type: Transform + - uid: 1483 + components: + - pos: -30.5,51.5 + parent: 1 + type: Transform + - uid: 1484 + components: + - pos: -31.5,51.5 + parent: 1 + type: Transform + - uid: 1485 + components: + - pos: -32.5,51.5 + parent: 1 + type: Transform + - uid: 1486 + components: + - pos: -33.5,51.5 + parent: 1 + type: Transform + - uid: 1487 + components: + - pos: -34.5,51.5 + parent: 1 + type: Transform + - uid: 1488 + components: + - pos: -35.5,51.5 + parent: 1 + type: Transform + - uid: 1489 + components: + - pos: -36.5,51.5 + parent: 1 + type: Transform + - uid: 1490 + components: + - pos: -37.5,51.5 + parent: 1 + type: Transform + - uid: 1491 + components: + - pos: -38.5,51.5 + parent: 1 + type: Transform + - uid: 1492 + components: + - pos: -39.5,51.5 + parent: 1 + type: Transform + - uid: 1493 + components: + - pos: -39.5,50.5 + parent: 1 + type: Transform + - uid: 1494 + components: + - pos: -39.5,49.5 + parent: 1 + type: Transform + - uid: 1495 + components: + - pos: -39.5,48.5 + parent: 1 + type: Transform + - uid: 1496 + components: + - pos: -39.5,47.5 + parent: 1 + type: Transform + - uid: 1497 + components: + - pos: -40.5,49.5 + parent: 1 + type: Transform + - uid: 1498 + components: + - pos: -41.5,49.5 + parent: 1 + type: Transform + - uid: 1499 + components: + - pos: -41.5,48.5 + parent: 1 + type: Transform + - uid: 1502 + components: + - pos: -41.5,47.5 + parent: 1 + type: Transform + - uid: 1505 + components: + - pos: -41.5,41.5 + parent: 1 + type: Transform + - uid: 1506 + components: + - pos: -41.5,40.5 + parent: 1 + type: Transform + - uid: 1507 + components: + - pos: -41.5,39.5 + parent: 1 + type: Transform + - uid: 1508 + components: + - pos: -40.5,39.5 + parent: 1 + type: Transform + - uid: 1509 + components: + - pos: -39.5,39.5 + parent: 1 + type: Transform + - uid: 1510 + components: + - pos: -38.5,39.5 + parent: 1 + type: Transform + - uid: 1512 + components: + - pos: -24.5,45.5 + parent: 1 + type: Transform + - uid: 1513 + components: + - pos: -26.5,39.5 + parent: 1 + type: Transform + - uid: 1517 + components: + - pos: -29.5,41.5 + parent: 1 + type: Transform + - uid: 1520 + components: + - pos: -39.5,44.5 + parent: 1 + type: Transform + - uid: 1528 + components: + - pos: -27.5,39.5 + parent: 1 + type: Transform + - uid: 1529 + components: + - pos: -24.5,39.5 + parent: 1 + type: Transform + - uid: 1533 + components: + - pos: -28.5,39.5 + parent: 1 + type: Transform + - uid: 1534 + components: + - pos: -33.5,41.5 + parent: 1 + type: Transform + - uid: 1536 + components: + - pos: -37.5,41.5 + parent: 1 + type: Transform + - uid: 1539 + components: + - pos: -37.5,39.5 + parent: 1 + type: Transform + - uid: 1540 + components: + - pos: -33.5,39.5 + parent: 1 + type: Transform + - uid: 1541 + components: + - pos: -36.5,39.5 + parent: 1 + type: Transform + - uid: 1544 + components: + - pos: -36.5,41.5 + parent: 1 + type: Transform + - uid: 1546 + components: + - pos: -25.5,39.5 + parent: 1 + type: Transform + - uid: 1550 + components: + - pos: -29.5,39.5 + parent: 1 + type: Transform + - uid: 1551 + components: + - pos: -38.5,50.5 + parent: 1 + type: Transform + - uid: 1552 + components: + - pos: -37.5,50.5 + parent: 1 + type: Transform + - uid: 1553 + components: + - pos: -36.5,50.5 + parent: 1 + type: Transform + - uid: 1554 + components: + - pos: -35.5,50.5 + parent: 1 + type: Transform + - uid: 1555 + components: + - pos: -34.5,50.5 + parent: 1 + type: Transform + - uid: 1556 + components: + - pos: -33.5,50.5 + parent: 1 + type: Transform + - uid: 1557 + components: + - pos: -32.5,50.5 + parent: 1 + type: Transform + - uid: 1558 + components: + - pos: -31.5,50.5 + parent: 1 + type: Transform + - uid: 1559 + components: + - pos: -30.5,50.5 + parent: 1 + type: Transform + - uid: 1560 + components: + - pos: -29.5,50.5 + parent: 1 + type: Transform + - uid: 1561 + components: + - pos: -28.5,50.5 + parent: 1 + type: Transform + - uid: 1562 + components: + - pos: -27.5,50.5 + parent: 1 + type: Transform + - uid: 1563 + components: + - pos: -40.5,50.5 + parent: 1 + type: Transform + - uid: 1565 + components: + - pos: -25.5,50.5 + parent: 1 + type: Transform + - uid: 1570 + components: + - pos: -15.5,-41.5 + parent: 1 + type: Transform + - uid: 1572 + components: + - pos: -16.5,-41.5 + parent: 1 + type: Transform + - uid: 1573 + components: + - pos: -15.5,-42.5 + parent: 1 + type: Transform + - uid: 1574 + components: + - pos: -29.5,49.5 + parent: 1 + type: Transform + - uid: 1591 + components: + - pos: -29.5,46.5 + parent: 1 + type: Transform + - uid: 1600 + components: + - pos: -26.5,59.5 + parent: 1 + type: Transform + - uid: 1601 + components: + - pos: -25.5,59.5 + parent: 1 + type: Transform + - uid: 1617 + components: + - pos: -36.5,56.5 + parent: 1 + type: Transform + - uid: 1619 + components: + - pos: -39.5,56.5 + parent: 1 + type: Transform + - uid: 1623 + components: + - pos: -41.5,53.5 + parent: 1 + type: Transform + - uid: 1641 + components: + - pos: -51.5,34.5 + parent: 1 + type: Transform + - uid: 1660 + components: + - pos: -40.5,53.5 + parent: 1 + type: Transform + - uid: 1666 + components: + - pos: -37.5,56.5 + parent: 1 + type: Transform + - uid: 1692 + components: + - pos: -11.5,70.5 + parent: 1 + type: Transform + - uid: 1695 + components: + - pos: -11.5,71.5 + parent: 1 + type: Transform + - uid: 1711 + components: + - pos: -36.5,54.5 + parent: 1 + type: Transform + - uid: 1734 + components: + - pos: -40.5,16.5 + parent: 1 + type: Transform + - uid: 1735 + components: + - pos: -40.5,20.5 + parent: 1 + type: Transform + - uid: 1736 + components: + - pos: -40.5,31.5 + parent: 1 + type: Transform + - uid: 1773 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,29.5 + parent: 1 + type: Transform + - uid: 1774 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,26.5 + parent: 1 + type: Transform + - uid: 1786 + components: + - pos: -4.5,52.5 + parent: 1 + type: Transform + - uid: 1788 + components: + - pos: -17.5,57.5 + parent: 1 + type: Transform + - uid: 1789 + components: + - pos: -12.5,58.5 + parent: 1 + type: Transform + - uid: 1790 + components: + - pos: -7.5,56.5 + parent: 1 + type: Transform + - uid: 1791 + components: + - pos: -11.5,63.5 + parent: 1 + type: Transform + - uid: 1792 + components: + - pos: -13.5,61.5 + parent: 1 + type: Transform + - uid: 1793 + components: + - pos: -12.5,61.5 + parent: 1 + type: Transform + - uid: 1794 + components: + - pos: -11.5,61.5 + parent: 1 + type: Transform + - uid: 1798 + components: + - pos: -11.5,64.5 + parent: 1 + type: Transform + - uid: 1799 + components: + - pos: -11.5,65.5 + parent: 1 + type: Transform + - uid: 1800 + components: + - pos: -11.5,66.5 + parent: 1 + type: Transform + - uid: 1802 + components: + - pos: -9.5,66.5 + parent: 1 + type: Transform + - uid: 1803 + components: + - pos: -8.5,66.5 + parent: 1 + type: Transform + - uid: 1804 + components: + - pos: -7.5,66.5 + parent: 1 + type: Transform + - uid: 1806 + components: + - pos: -4.5,65.5 + parent: 1 + type: Transform + - uid: 1807 + components: + - pos: -5.5,65.5 + parent: 1 + type: Transform + - uid: 1808 + components: + - pos: -6.5,66.5 + parent: 1 + type: Transform + - uid: 1809 + components: + - pos: -6.5,65.5 + parent: 1 + type: Transform + - uid: 1810 + components: + - pos: -5.5,66.5 + parent: 1 + type: Transform + - uid: 1811 + components: + - pos: -7.5,65.5 + parent: 1 + type: Transform + - uid: 1812 + components: + - pos: -4.5,66.5 + parent: 1 + type: Transform + - uid: 1813 + components: + - pos: -8.5,65.5 + parent: 1 + type: Transform + - uid: 1814 + components: + - pos: -3.5,66.5 + parent: 1 + type: Transform + - uid: 1815 + components: + - pos: -9.5,65.5 + parent: 1 + type: Transform + - uid: 1816 + components: + - pos: -2.5,66.5 + parent: 1 + type: Transform + - uid: 1817 + components: + - pos: -2.5,65.5 + parent: 1 + type: Transform + - uid: 1818 + components: + - pos: -2.5,64.5 + parent: 1 + type: Transform + - uid: 1819 + components: + - pos: -2.5,63.5 + parent: 1 + type: Transform + - uid: 1820 + components: + - pos: -2.5,62.5 + parent: 1 + type: Transform + - uid: 1821 + components: + - pos: -2.5,61.5 + parent: 1 + type: Transform + - uid: 1822 + components: + - pos: -2.5,60.5 + parent: 1 + type: Transform + - uid: 1823 + components: + - pos: -2.5,59.5 + parent: 1 + type: Transform + - uid: 1824 + components: + - pos: -3.5,65.5 + parent: 1 + type: Transform + - uid: 1825 + components: + - pos: -3.5,64.5 + parent: 1 + type: Transform + - uid: 1826 + components: + - pos: -3.5,63.5 + parent: 1 + type: Transform + - uid: 1827 + components: + - pos: -3.5,62.5 + parent: 1 + type: Transform + - uid: 1828 + components: + - pos: -3.5,61.5 + parent: 1 + type: Transform + - uid: 1829 + components: + - pos: -3.5,60.5 + parent: 1 + type: Transform + - uid: 1830 + components: + - pos: -3.5,59.5 + parent: 1 + type: Transform + - uid: 1832 + components: + - pos: -7.5,61.5 + parent: 1 + type: Transform + - uid: 1857 + components: + - pos: 1.5,58.5 + parent: 1 + type: Transform + - uid: 1858 + components: + - pos: 2.5,58.5 + parent: 1 + type: Transform + - uid: 1859 + components: + - pos: 3.5,58.5 + parent: 1 + type: Transform + - uid: 1860 + components: + - pos: 1.5,51.5 + parent: 1 + type: Transform + - uid: 1861 + components: + - pos: 2.5,51.5 + parent: 1 + type: Transform + - uid: 1862 + components: + - pos: 3.5,51.5 + parent: 1 + type: Transform + - uid: 1916 + components: + - rot: 3.141592653589793 rad + pos: 8.5,51.5 + parent: 1 + type: Transform + - uid: 1919 + components: + - rot: 3.141592653589793 rad + pos: 7.5,51.5 + parent: 1 + type: Transform + - uid: 1920 + components: + - rot: 3.141592653589793 rad + pos: 4.5,51.5 + parent: 1 + type: Transform + - uid: 1994 + components: + - pos: 50.5,-15.5 + parent: 1 + type: Transform + - uid: 2005 + components: + - pos: 44.5,-10.5 + parent: 1 + type: Transform + - uid: 2008 + components: + - pos: 52.5,-15.5 + parent: 1 + type: Transform + - uid: 2009 + components: + - rot: 1.5707963267948966 rad + pos: 50.5,-5.5 + parent: 1 + type: Transform + - uid: 2011 + components: + - pos: 40.5,-10.5 + parent: 1 + type: Transform + - uid: 2028 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,-5.5 + parent: 1 + type: Transform + - uid: 2041 + components: + - pos: 44.5,-15.5 + parent: 1 + type: Transform + - uid: 2042 + components: + - pos: 50.5,-8.5 + parent: 1 + type: Transform + - uid: 2045 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,-6.5 + parent: 1 + type: Transform + - uid: 2050 + components: + - pos: -2.5,-48.5 + parent: 1 + type: Transform + - uid: 2051 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,-5.5 + parent: 1 + type: Transform + - uid: 2055 + components: + - pos: 51.5,-6.5 + parent: 1 + type: Transform + - uid: 2063 + components: + - pos: -2.5,-47.5 + parent: 1 + type: Transform + - uid: 2064 + components: + - pos: 3.5,-42.5 + parent: 1 + type: Transform + - uid: 2065 + components: + - pos: 1.5,-48.5 + parent: 1 + type: Transform + - uid: 2066 + components: + - pos: 1.5,-47.5 + parent: 1 + type: Transform + - uid: 2067 + components: + - pos: -4.5,-42.5 + parent: 1 + type: Transform + - uid: 2069 + components: + - pos: -3.5,-46.5 + parent: 1 + type: Transform + - uid: 2072 + components: + - pos: 2.5,-46.5 + parent: 1 + type: Transform + - uid: 2078 + components: + - pos: -3.5,-42.5 + parent: 1 + type: Transform + - uid: 2079 + components: + - pos: -2.5,-42.5 + parent: 1 + type: Transform + - uid: 2080 + components: + - pos: -1.5,-42.5 + parent: 1 + type: Transform + - uid: 2081 + components: + - pos: 0.5,-42.5 + parent: 1 + type: Transform + - uid: 2082 + components: + - pos: 1.5,-42.5 + parent: 1 + type: Transform + - uid: 2083 + components: + - pos: 2.5,-42.5 + parent: 1 + type: Transform + - uid: 2084 + components: + - pos: -2.5,-38.5 + parent: 1 + type: Transform + - uid: 2085 + components: + - pos: 1.5,-38.5 + parent: 1 + type: Transform + - uid: 2086 + components: + - pos: -2.5,-46.5 + parent: 1 + type: Transform + - uid: 2087 + components: + - pos: 1.5,-46.5 + parent: 1 + type: Transform + - uid: 2095 + components: + - pos: -4.5,-37.5 + parent: 1 + type: Transform + - uid: 2096 + components: + - pos: -4.5,-31.5 + parent: 1 + type: Transform + - uid: 2097 + components: + - pos: 3.5,-31.5 + parent: 1 + type: Transform + - uid: 2104 + components: + - pos: 3.5,-35.5 + parent: 1 + type: Transform + - uid: 2108 + components: + - pos: 33.5,-6.5 + parent: 1 + type: Transform + - uid: 2109 + components: + - pos: 38.5,-6.5 + parent: 1 + type: Transform + - uid: 2118 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,0.5 + parent: 1 + type: Transform + - uid: 2119 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,7.5 + parent: 1 + type: Transform + - uid: 2123 + components: + - pos: -14.5,-42.5 + parent: 1 + type: Transform + - uid: 2124 + components: + - pos: -12.5,-42.5 + parent: 1 + type: Transform + - uid: 2125 + components: + - pos: -11.5,-41.5 + parent: 1 + type: Transform + - uid: 2126 + components: + - pos: -11.5,-42.5 + parent: 1 + type: Transform + - uid: 2127 + components: + - pos: -10.5,-42.5 + parent: 1 + type: Transform + - uid: 2128 + components: + - pos: -9.5,-42.5 + parent: 1 + type: Transform + - uid: 2131 + components: + - pos: -5.5,-42.5 + parent: 1 + type: Transform + - uid: 2132 + components: + - pos: -12.5,-38.5 + parent: 1 + type: Transform + - uid: 2133 + components: + - pos: -15.5,-38.5 + parent: 1 + type: Transform + - uid: 2134 + components: + - pos: -11.5,-38.5 + parent: 1 + type: Transform + - uid: 2135 + components: + - pos: -14.5,-38.5 + parent: 1 + type: Transform + - uid: 2136 + components: + - pos: -15.5,-40.5 + parent: 1 + type: Transform + - uid: 2137 + components: + - pos: -15.5,-39.5 + parent: 1 + type: Transform + - uid: 2138 + components: + - pos: -11.5,-40.5 + parent: 1 + type: Transform + - uid: 2139 + components: + - pos: -11.5,-39.5 + parent: 1 + type: Transform + - uid: 2169 + components: + - pos: 1.5,-32.5 + parent: 1 + type: Transform + - uid: 2170 + components: + - pos: -2.5,-32.5 + parent: 1 + type: Transform + - uid: 2171 + components: + - pos: 1.5,-36.5 + parent: 1 + type: Transform + - uid: 2172 + components: + - pos: -2.5,-36.5 + parent: 1 + type: Transform + - uid: 2173 + components: + - pos: -2.5,-30.5 + parent: 1 + type: Transform + - uid: 2174 + components: + - pos: -1.5,-30.5 + parent: 1 + type: Transform + - uid: 2175 + components: + - pos: -0.5,-30.5 + parent: 1 + type: Transform + - uid: 2176 + components: + - pos: 0.5,-30.5 + parent: 1 + type: Transform + - uid: 2177 + components: + - pos: 1.5,-30.5 + parent: 1 + type: Transform + - uid: 2178 + components: + - pos: 1.5,-29.5 + parent: 1 + type: Transform + - uid: 2179 + components: + - pos: 1.5,-28.5 + parent: 1 + type: Transform + - uid: 2180 + components: + - pos: 0.5,-28.5 + parent: 1 + type: Transform + - uid: 2181 + components: + - pos: -0.5,-28.5 + parent: 1 + type: Transform + - uid: 2182 + components: + - pos: -1.5,-28.5 + parent: 1 + type: Transform + - uid: 2183 + components: + - pos: -2.5,-28.5 + parent: 1 + type: Transform + - uid: 2184 + components: + - pos: 1.5,-27.5 + parent: 1 + type: Transform + - uid: 2185 + components: + - pos: 1.5,-26.5 + parent: 1 + type: Transform + - uid: 2186 + components: + - pos: 0.5,-26.5 + parent: 1 + type: Transform + - uid: 2187 + components: + - pos: -0.5,-26.5 + parent: 1 + type: Transform + - uid: 2188 + components: + - pos: -1.5,-26.5 + parent: 1 + type: Transform + - uid: 2189 + components: + - pos: -2.5,-26.5 + parent: 1 + type: Transform + - uid: 2190 + components: + - pos: 1.5,-25.5 + parent: 1 + type: Transform + - uid: 2191 + components: + - pos: 1.5,-24.5 + parent: 1 + type: Transform + - uid: 2192 + components: + - pos: 0.5,-24.5 + parent: 1 + type: Transform + - uid: 2193 + components: + - pos: -0.5,-24.5 + parent: 1 + type: Transform + - uid: 2194 + components: + - pos: -1.5,-24.5 + parent: 1 + type: Transform + - uid: 2195 + components: + - pos: -2.5,-24.5 + parent: 1 + type: Transform + - uid: 2196 + components: + - pos: 1.5,-23.5 + parent: 1 + type: Transform + - uid: 2197 + components: + - pos: 1.5,-22.5 + parent: 1 + type: Transform + - uid: 2198 + components: + - pos: 0.5,-22.5 + parent: 1 + type: Transform + - uid: 2199 + components: + - pos: -0.5,-22.5 + parent: 1 + type: Transform + - uid: 2200 + components: + - pos: -1.5,-22.5 + parent: 1 + type: Transform + - uid: 2201 + components: + - pos: -2.5,-22.5 + parent: 1 + type: Transform + - uid: 2202 + components: + - pos: 1.5,-21.5 + parent: 1 + type: Transform + - uid: 2203 + components: + - pos: 1.5,-20.5 + parent: 1 + type: Transform + - uid: 2204 + components: + - pos: 0.5,-20.5 + parent: 1 + type: Transform + - uid: 2205 + components: + - pos: -0.5,-20.5 + parent: 1 + type: Transform + - uid: 2206 + components: + - pos: -1.5,-20.5 + parent: 1 + type: Transform + - uid: 2207 + components: + - pos: -2.5,-20.5 + parent: 1 + type: Transform + - uid: 2208 + components: + - pos: 1.5,-19.5 + parent: 1 + type: Transform + - uid: 2209 + components: + - pos: 1.5,-18.5 + parent: 1 + type: Transform + - uid: 2210 + components: + - pos: 0.5,-18.5 + parent: 1 + type: Transform + - uid: 2211 + components: + - pos: -0.5,-18.5 + parent: 1 + type: Transform + - uid: 2212 + components: + - pos: -1.5,-18.5 + parent: 1 + type: Transform + - uid: 2213 + components: + - pos: -2.5,-18.5 + parent: 1 + type: Transform + - uid: 2215 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-35.5 + parent: 1 + type: Transform + - uid: 2216 + components: + - pos: -18.5,-41.5 + parent: 1 + type: Transform + - uid: 2217 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-21.5 + parent: 1 + type: Transform + - uid: 2218 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-22.5 + parent: 1 + type: Transform + - uid: 2219 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-33.5 + parent: 1 + type: Transform + - uid: 2220 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-34.5 + parent: 1 + type: Transform + - uid: 2221 + components: + - pos: -16.5,-28.5 + parent: 1 + type: Transform + - uid: 2222 + components: + - pos: -16.5,-29.5 + parent: 1 + type: Transform + - uid: 2223 + components: + - pos: -16.5,-30.5 + parent: 1 + type: Transform + - uid: 2224 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-23.5 + parent: 1 + type: Transform + - uid: 2225 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-24.5 + parent: 1 + type: Transform + - uid: 2226 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-25.5 + parent: 1 + type: Transform + - uid: 2227 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-30.5 + parent: 1 + type: Transform + - uid: 2228 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-31.5 + parent: 1 + type: Transform + - uid: 2229 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-32.5 + parent: 1 + type: Transform + - uid: 2230 + components: + - pos: -15.5,-30.5 + parent: 1 + type: Transform + - uid: 2231 + components: + - pos: -15.5,-20.5 + parent: 1 + type: Transform + - uid: 2232 + components: + - pos: -15.5,-19.5 + parent: 1 + type: Transform + - uid: 2233 + components: + - pos: -15.5,-18.5 + parent: 1 + type: Transform + - uid: 2234 + components: + - pos: -15.5,-17.5 + parent: 1 + type: Transform + - uid: 2235 + components: + - pos: -15.5,-16.5 + parent: 1 + type: Transform + - uid: 2236 + components: + - pos: -14.5,-16.5 + parent: 1 + type: Transform + - uid: 2237 + components: + - pos: -6.5,-16.5 + parent: 1 + type: Transform + - uid: 2240 + components: + - pos: -10.5,-16.5 + parent: 1 + type: Transform + - uid: 2242 + components: + - pos: -7.5,-16.5 + parent: 1 + type: Transform + - uid: 2243 + components: + - pos: -18.5,-38.5 + parent: 1 + type: Transform + - uid: 2244 + components: + - pos: -21.5,-38.5 + parent: 1 + type: Transform + - uid: 2245 + components: + - pos: -5.5,-16.5 + parent: 1 + type: Transform + - uid: 2246 + components: + - pos: -4.5,-16.5 + parent: 1 + type: Transform + - uid: 2247 + components: + - pos: -3.5,-16.5 + parent: 1 + type: Transform + - uid: 2248 + components: + - pos: -2.5,-16.5 + parent: 1 + type: Transform + - uid: 2249 + components: + - pos: -1.5,-16.5 + parent: 1 + type: Transform + - uid: 2251 + components: + - pos: 0.5,-16.5 + parent: 1 + type: Transform + - uid: 2252 + components: + - pos: 1.5,-16.5 + parent: 1 + type: Transform + - uid: 2253 + components: + - pos: 2.5,-16.5 + parent: 1 + type: Transform + - uid: 2254 + components: + - pos: 3.5,-16.5 + parent: 1 + type: Transform + - uid: 2281 + components: + - pos: -4.5,-17.5 + parent: 1 + type: Transform + - uid: 2292 + components: + - pos: 4.5,-42.5 + parent: 1 + type: Transform + - uid: 2296 + components: + - pos: 8.5,-42.5 + parent: 1 + type: Transform + - uid: 2297 + components: + - pos: 9.5,-42.5 + parent: 1 + type: Transform + - uid: 2298 + components: + - pos: 10.5,-42.5 + parent: 1 + type: Transform + - uid: 2299 + components: + - pos: 11.5,-42.5 + parent: 1 + type: Transform + - uid: 2301 + components: + - pos: 13.5,-42.5 + parent: 1 + type: Transform + - uid: 2302 + components: + - pos: 14.5,-42.5 + parent: 1 + type: Transform + - uid: 2303 + components: + - pos: 14.5,-41.5 + parent: 1 + type: Transform + - uid: 2304 + components: + - pos: 14.5,-40.5 + parent: 1 + type: Transform + - uid: 2305 + components: + - pos: 14.5,-39.5 + parent: 1 + type: Transform + - uid: 2306 + components: + - pos: 14.5,-38.5 + parent: 1 + type: Transform + - uid: 2307 + components: + - pos: 14.5,-37.5 + parent: 1 + type: Transform + - uid: 2308 + components: + - pos: 14.5,-36.5 + parent: 1 + type: Transform + - uid: 2309 + components: + - pos: 15.5,-41.5 + parent: 1 + type: Transform + - uid: 2310 + components: + - pos: 14.5,-34.5 + parent: 1 + type: Transform + - uid: 2311 + components: + - pos: 14.5,-33.5 + parent: 1 + type: Transform + - uid: 2312 + components: + - pos: 14.5,-32.5 + parent: 1 + type: Transform + - uid: 2313 + components: + - pos: 14.5,-31.5 + parent: 1 + type: Transform + - uid: 2314 + components: + - pos: 14.5,-30.5 + parent: 1 + type: Transform + - uid: 2315 + components: + - pos: 14.5,-29.5 + parent: 1 + type: Transform + - uid: 2316 + components: + - pos: 14.5,-28.5 + parent: 1 + type: Transform + - uid: 2317 + components: + - pos: 14.5,-27.5 + parent: 1 + type: Transform + - uid: 2318 + components: + - pos: 14.5,-26.5 + parent: 1 + type: Transform + - uid: 2319 + components: + - pos: 14.5,-25.5 + parent: 1 + type: Transform + - uid: 2321 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-24.5 + parent: 1 + type: Transform + - uid: 2322 + components: + - pos: 14.5,-22.5 + parent: 1 + type: Transform + - uid: 2323 + components: + - pos: 14.5,-21.5 + parent: 1 + type: Transform + - uid: 2324 + components: + - pos: 14.5,-20.5 + parent: 1 + type: Transform + - uid: 2325 + components: + - pos: 14.5,-19.5 + parent: 1 + type: Transform + - uid: 2326 + components: + - pos: 14.5,-18.5 + parent: 1 + type: Transform + - uid: 2327 + components: + - pos: 14.5,-17.5 + parent: 1 + type: Transform + - uid: 2328 + components: + - pos: 14.5,-16.5 + parent: 1 + type: Transform + - uid: 2329 + components: + - pos: 13.5,-16.5 + parent: 1 + type: Transform + - uid: 2330 + components: + - pos: 8.5,-16.5 + parent: 1 + type: Transform + - uid: 2331 + components: + - pos: 9.5,-16.5 + parent: 1 + type: Transform + - uid: 2332 + components: + - pos: 10.5,-16.5 + parent: 1 + type: Transform + - uid: 2333 + components: + - pos: 6.5,-16.5 + parent: 1 + type: Transform + - uid: 2336 + components: + - pos: 8.5,-21.5 + parent: 1 + type: Transform + - uid: 2337 + components: + - pos: 5.5,-16.5 + parent: 1 + type: Transform + - uid: 2338 + components: + - pos: 4.5,-16.5 + parent: 1 + type: Transform + - uid: 2339 + components: + - pos: 13.5,-38.5 + parent: 1 + type: Transform + - uid: 2340 + components: + - pos: 11.5,-38.5 + parent: 1 + type: Transform + - uid: 2341 + components: + - pos: 10.5,-38.5 + parent: 1 + type: Transform + - uid: 2342 + components: + - pos: 10.5,-39.5 + parent: 1 + type: Transform + - uid: 2343 + components: + - pos: 10.5,-40.5 + parent: 1 + type: Transform + - uid: 2344 + components: + - pos: 10.5,-41.5 + parent: 1 + type: Transform + - uid: 2359 + components: + - pos: -21.5,-32.5 + parent: 1 + type: Transform + - uid: 2360 + components: + - pos: -21.5,-31.5 + parent: 1 + type: Transform + - uid: 2361 + components: + - pos: -10.5,-20.5 + parent: 1 + type: Transform + - uid: 2362 + components: + - pos: -11.5,-20.5 + parent: 1 + type: Transform + - uid: 2363 + components: + - pos: -9.5,-17.5 + parent: 1 + type: Transform + - uid: 2364 + components: + - pos: -13.5,-20.5 + parent: 1 + type: Transform + - uid: 2365 + components: + - pos: -14.5,-20.5 + parent: 1 + type: Transform + - uid: 2367 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-10.5 + parent: 1 + type: Transform + - uid: 2368 + components: + - pos: -21.5,-35.5 + parent: 1 + type: Transform + - uid: 2377 + components: + - pos: -8.5,-10.5 + parent: 1 + type: Transform + - uid: 2378 + components: + - pos: -2.5,-10.5 + parent: 1 + type: Transform + - uid: 2379 + components: + - pos: 6.5,-10.5 + parent: 1 + type: Transform + - uid: 2382 + components: + - pos: -7.5,-10.5 + parent: 1 + type: Transform + - uid: 2383 + components: + - pos: 1.5,-10.5 + parent: 1 + type: Transform + - uid: 2384 + components: + - pos: -6.5,-10.5 + parent: 1 + type: Transform + - uid: 2385 + components: + - pos: 5.5,-10.5 + parent: 1 + type: Transform + - uid: 2386 + components: + - pos: 7.5,-10.5 + parent: 1 + type: Transform + - uid: 2389 + components: + - pos: 1.5,-14.5 + parent: 1 + type: Transform + - uid: 2391 + components: + - pos: -2.5,-14.5 + parent: 1 + type: Transform + - uid: 2393 + components: + - pos: -1.5,-14.5 + parent: 1 + type: Transform + - uid: 2394 + components: + - pos: -0.5,-14.5 + parent: 1 + type: Transform + - uid: 2395 + components: + - pos: 0.5,-14.5 + parent: 1 + type: Transform + - uid: 2399 + components: + - pos: -6.5,-14.5 + parent: 1 + type: Transform + - uid: 2400 + components: + - pos: -5.5,-14.5 + parent: 1 + type: Transform + - uid: 2401 + components: + - pos: -4.5,-14.5 + parent: 1 + type: Transform + - uid: 2402 + components: + - pos: -3.5,-14.5 + parent: 1 + type: Transform + - uid: 2403 + components: + - pos: 2.5,-14.5 + parent: 1 + type: Transform + - uid: 2404 + components: + - pos: 3.5,-14.5 + parent: 1 + type: Transform + - uid: 2405 + components: + - pos: 4.5,-14.5 + parent: 1 + type: Transform + - uid: 2406 + components: + - pos: 5.5,-14.5 + parent: 1 + type: Transform + - uid: 2410 + components: + - pos: 3.5,-17.5 + parent: 1 + type: Transform + - uid: 2411 + components: + - pos: 3.5,-18.5 + parent: 1 + type: Transform + - uid: 2412 + components: + - pos: 3.5,-19.5 + parent: 1 + type: Transform + - uid: 2413 + components: + - pos: 3.5,-20.5 + parent: 1 + type: Transform + - uid: 2414 + components: + - pos: 3.5,-21.5 + parent: 1 + type: Transform + - uid: 2415 + components: + - pos: 3.5,-22.5 + parent: 1 + type: Transform + - uid: 2416 + components: + - pos: 3.5,-23.5 + parent: 1 + type: Transform + - uid: 2417 + components: + - pos: 3.5,-24.5 + parent: 1 + type: Transform + - uid: 2418 + components: + - pos: 3.5,-25.5 + parent: 1 + type: Transform + - uid: 2419 + components: + - pos: 3.5,-26.5 + parent: 1 + type: Transform + - uid: 2420 + components: + - pos: 3.5,-27.5 + parent: 1 + type: Transform + - uid: 2421 + components: + - pos: 3.5,-28.5 + parent: 1 + type: Transform + - uid: 2422 + components: + - pos: 3.5,-29.5 + parent: 1 + type: Transform + - uid: 2423 + components: + - pos: 3.5,-30.5 + parent: 1 + type: Transform + - uid: 2424 + components: + - pos: 10.5,-37.5 + parent: 1 + type: Transform + - uid: 2425 + components: + - pos: 10.5,-36.5 + parent: 1 + type: Transform + - uid: 2426 + components: + - pos: 10.5,-35.5 + parent: 1 + type: Transform + - uid: 2427 + components: + - pos: 9.5,-35.5 + parent: 1 + type: Transform + - uid: 2428 + components: + - pos: 8.5,-35.5 + parent: 1 + type: Transform + - uid: 2429 + components: + - pos: 4.5,-35.5 + parent: 1 + type: Transform + - uid: 2430 + components: + - pos: 5.5,-35.5 + parent: 1 + type: Transform + - uid: 2431 + components: + - pos: 4.5,-31.5 + parent: 1 + type: Transform + - uid: 2432 + components: + - pos: 5.5,-31.5 + parent: 1 + type: Transform + - uid: 2433 + components: + - pos: 8.5,-31.5 + parent: 1 + type: Transform + - uid: 2434 + components: + - pos: 9.5,-31.5 + parent: 1 + type: Transform + - uid: 2435 + components: + - pos: 10.5,-31.5 + parent: 1 + type: Transform + - uid: 2436 + components: + - pos: 10.5,-30.5 + parent: 1 + type: Transform + - uid: 2438 + components: + - pos: 10.5,-28.5 + parent: 1 + type: Transform + - uid: 2439 + components: + - pos: 10.5,-27.5 + parent: 1 + type: Transform + - uid: 2440 + components: + - pos: 9.5,-27.5 + parent: 1 + type: Transform + - uid: 2441 + components: + - pos: 8.5,-27.5 + parent: 1 + type: Transform + - uid: 2444 + components: + - pos: 5.5,-27.5 + parent: 1 + type: Transform + - uid: 2445 + components: + - pos: 4.5,-27.5 + parent: 1 + type: Transform + - uid: 2450 + components: + - pos: -14.5,-10.5 + parent: 1 + type: Transform + - uid: 2451 + components: + - pos: -15.5,-10.5 + parent: 1 + type: Transform + - uid: 2452 + components: + - pos: -15.5,-11.5 + parent: 1 + type: Transform + - uid: 2453 + components: + - pos: -15.5,-12.5 + parent: 1 + type: Transform + - uid: 2454 + components: + - pos: -15.5,-13.5 + parent: 1 + type: Transform + - uid: 2455 + components: + - pos: -15.5,-14.5 + parent: 1 + type: Transform + - uid: 2456 + components: + - pos: -15.5,-15.5 + parent: 1 + type: Transform + - uid: 2457 + components: + - pos: -9.5,-20.5 + parent: 1 + type: Transform + - uid: 2458 + components: + - pos: -9.5,-19.5 + parent: 1 + type: Transform + - uid: 2459 + components: + - pos: -9.5,-16.5 + parent: 1 + type: Transform + - uid: 2499 + components: + - pos: 22.5,1.5 + parent: 1 + type: Transform + - uid: 2501 + components: + - pos: 22.5,12.5 + parent: 1 + type: Transform + - uid: 2502 + components: + - pos: 22.5,11.5 + parent: 1 + type: Transform + - uid: 2503 + components: + - pos: 22.5,10.5 + parent: 1 + type: Transform + - uid: 2504 + components: + - pos: 22.5,9.5 + parent: 1 + type: Transform + - uid: 2505 + components: + - pos: 22.5,6.5 + parent: 1 + type: Transform + - uid: 2506 + components: + - pos: 22.5,5.5 + parent: 1 + type: Transform + - uid: 2507 + components: + - pos: 22.5,8.5 + parent: 1 + type: Transform + - uid: 2508 + components: + - pos: 22.5,7.5 + parent: 1 + type: Transform + - uid: 2509 + components: + - pos: 22.5,4.5 + parent: 1 + type: Transform + - uid: 2512 + components: + - pos: 22.5,3.5 + parent: 1 + type: Transform + - uid: 2522 + components: + - pos: 27.5,7.5 + parent: 1 + type: Transform + - uid: 2523 + components: + - pos: 26.5,7.5 + parent: 1 + type: Transform + - uid: 2527 + components: + - pos: 28.5,7.5 + parent: 1 + type: Transform + - uid: 2528 + components: + - pos: 28.5,8.5 + parent: 1 + type: Transform + - uid: 2529 + components: + - pos: 27.5,12.5 + parent: 1 + type: Transform + - uid: 2530 + components: + - pos: 23.5,1.5 + parent: 1 + type: Transform + - uid: 2531 + components: + - pos: 28.5,9.5 + parent: 1 + type: Transform + - uid: 2532 + components: + - pos: 25.5,12.5 + parent: 1 + type: Transform + - uid: 2533 + components: + - pos: 24.5,12.5 + parent: 1 + type: Transform + - uid: 2534 + components: + - pos: 23.5,12.5 + parent: 1 + type: Transform + - uid: 2535 + components: + - pos: 28.5,11.5 + parent: 1 + type: Transform + - uid: 2536 + components: + - pos: 26.5,12.5 + parent: 1 + type: Transform + - uid: 2537 + components: + - pos: 28.5,12.5 + parent: 1 + type: Transform + - uid: 2541 + components: + - pos: 33.5,-2.5 + parent: 1 + type: Transform + - uid: 2804 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-37.5 + parent: 1 + type: Transform + - uid: 2805 + components: + - pos: -11.5,-25.5 + parent: 1 + type: Transform + - uid: 2806 + components: + - pos: -11.5,-30.5 + parent: 1 + type: Transform + - uid: 2809 + components: + - pos: -16.5,-25.5 + parent: 1 + type: Transform + - uid: 2810 + components: + - pos: -15.5,-25.5 + parent: 1 + type: Transform + - uid: 2823 + components: + - pos: -16.5,-27.5 + parent: 1 + type: Transform + - uid: 2824 + components: + - pos: -16.5,-26.5 + parent: 1 + type: Transform + - uid: 2837 + components: + - pos: 10.5,-19.5 + parent: 1 + type: Transform + - uid: 2838 + components: + - pos: 13.5,-10.5 + parent: 1 + type: Transform + - uid: 2839 + components: + - pos: 14.5,-10.5 + parent: 1 + type: Transform + - uid: 2840 + components: + - pos: 14.5,-11.5 + parent: 1 + type: Transform + - uid: 2841 + components: + - pos: 14.5,-12.5 + parent: 1 + type: Transform + - uid: 2842 + components: + - pos: 14.5,-13.5 + parent: 1 + type: Transform + - uid: 2843 + components: + - pos: 14.5,-14.5 + parent: 1 + type: Transform + - uid: 2844 + components: + - pos: 14.5,-15.5 + parent: 1 + type: Transform + - uid: 2845 + components: + - pos: 8.5,-26.5 + parent: 1 + type: Transform + - uid: 2846 + components: + - pos: 8.5,-25.5 + parent: 1 + type: Transform + - uid: 2847 + components: + - pos: 8.5,-23.5 + parent: 1 + type: Transform + - uid: 2848 + components: + - pos: 8.5,-22.5 + parent: 1 + type: Transform + - uid: 2849 + components: + - pos: 7.5,-22.5 + parent: 1 + type: Transform + - uid: 2850 + components: + - pos: 6.5,-22.5 + parent: 1 + type: Transform + - uid: 2851 + components: + - pos: 5.5,-22.5 + parent: 1 + type: Transform + - uid: 2852 + components: + - pos: 4.5,-22.5 + parent: 1 + type: Transform + - uid: 2853 + components: + - pos: 8.5,-19.5 + parent: 1 + type: Transform + - uid: 2854 + components: + - pos: 13.5,-19.5 + parent: 1 + type: Transform + - uid: 2855 + components: + - pos: 9.5,-17.5 + parent: 1 + type: Transform + - uid: 2856 + components: + - pos: 9.5,-18.5 + parent: 1 + type: Transform + - uid: 2857 + components: + - pos: 9.5,-19.5 + parent: 1 + type: Transform + - uid: 2859 + components: + - pos: 17.5,-41.5 + parent: 1 + type: Transform + - uid: 2860 + components: + - pos: 17.5,-38.5 + parent: 1 + type: Transform + - uid: 2861 + components: + - pos: 20.5,-38.5 + parent: 1 + type: Transform + - uid: 2862 + components: + - pos: 20.5,-35.5 + parent: 1 + type: Transform + - uid: 2863 + components: + - pos: 20.5,-32.5 + parent: 1 + type: Transform + - uid: 2864 + components: + - pos: 20.5,-31.5 + parent: 1 + type: Transform + - uid: 2865 + components: + - pos: 22.5,-31.5 + parent: 1 + type: Transform + - uid: 2866 + components: + - pos: 22.5,-28.5 + parent: 1 + type: Transform + - uid: 2867 + components: + - pos: 23.5,-28.5 + parent: 1 + type: Transform + - uid: 2868 + components: + - pos: -23.5,-28.5 + parent: 1 + type: Transform + - uid: 2869 + components: + - pos: -24.5,-28.5 + parent: 1 + type: Transform + - uid: 2870 + components: + - pos: -23.5,-31.5 + parent: 1 + type: Transform + - uid: 2880 + components: + - pos: 26.5,2.5 + parent: 1 + type: Transform + - uid: 2881 + components: + - pos: 26.5,1.5 + parent: 1 + type: Transform + - uid: 2882 + components: + - pos: 25.5,1.5 + parent: 1 + type: Transform + - uid: 2896 + components: + - pos: 24.5,1.5 + parent: 1 + type: Transform + - uid: 2916 + components: + - pos: -24.5,-27.5 + parent: 1 + type: Transform + - uid: 2918 + components: + - pos: 39.5,-14.5 + parent: 1 + type: Transform + - uid: 2928 + components: + - pos: 37.5,-18.5 + parent: 1 + type: Transform + - uid: 2933 + components: + - pos: -24.5,-14.5 + parent: 1 + type: Transform + - uid: 2934 + components: + - pos: -24.5,-18.5 + parent: 1 + type: Transform + - uid: 2936 + components: + - pos: 33.5,-22.5 + parent: 1 + type: Transform + - uid: 2937 + components: + - pos: 29.5,-27.5 + parent: 1 + type: Transform + - uid: 2938 + components: + - pos: -34.5,-25.5 + parent: 1 + type: Transform + - uid: 2939 + components: + - pos: -30.5,-25.5 + parent: 1 + type: Transform + - uid: 2940 + components: + - pos: -37.5,-22.5 + parent: 1 + type: Transform + - uid: 2941 + components: + - pos: 36.5,-18.5 + parent: 1 + type: Transform + - uid: 2942 + components: + - pos: 36.5,-22.5 + parent: 1 + type: Transform + - uid: 2944 + components: + - pos: -19.5,-19.5 + parent: 1 + type: Transform + - uid: 2945 + components: + - pos: -19.5,-16.5 + parent: 1 + type: Transform + - uid: 2946 + components: + - pos: -19.5,-17.5 + parent: 1 + type: Transform + - uid: 2948 + components: + - pos: -41.5,-12.5 + parent: 1 + type: Transform + - uid: 2949 + components: + - pos: -41.5,-10.5 + parent: 1 + type: Transform + - uid: 2950 + components: + - pos: 40.5,-12.5 + parent: 1 + type: Transform + - uid: 3078 + components: + - pos: 39.5,-12.5 + parent: 1 + type: Transform + - uid: 3083 + components: + - pos: 23.5,-27.5 + parent: 1 + type: Transform + - uid: 3084 + components: + - pos: 29.5,-26.5 + parent: 1 + type: Transform + - uid: 3085 + components: + - pos: 29.5,-25.5 + parent: 1 + type: Transform + - uid: 3086 + components: + - pos: -30.5,-27.5 + parent: 1 + type: Transform + - uid: 3087 + components: + - pos: -34.5,-22.5 + parent: 1 + type: Transform + - uid: 3088 + components: + - pos: 38.5,-14.5 + parent: 1 + type: Transform + - uid: 3092 + components: + - pos: -30.5,-26.5 + parent: 1 + type: Transform + - uid: 3094 + components: + - pos: 33.5,-25.5 + parent: 1 + type: Transform + - uid: 3144 + components: + - pos: -24.5,-17.5 + parent: 1 + type: Transform + - uid: 3145 + components: + - pos: -24.5,-15.5 + parent: 1 + type: Transform + - uid: 3146 + components: + - pos: -20.5,-19.5 + parent: 1 + type: Transform + - uid: 3147 + components: + - pos: 38.5,-18.5 + parent: 1 + type: Transform + - uid: 3148 + components: + - pos: -40.5,-12.5 + parent: 1 + type: Transform + - uid: 3149 + components: + - pos: -40.5,-14.5 + parent: 1 + type: Transform + - uid: 3150 + components: + - pos: 38.5,-15.5 + parent: 1 + type: Transform + - uid: 3151 + components: + - pos: -21.5,-19.5 + parent: 1 + type: Transform + - uid: 3152 + components: + - pos: -22.5,-19.5 + parent: 1 + type: Transform + - uid: 3153 + components: + - pos: -24.5,-16.5 + parent: 1 + type: Transform + - uid: 3155 + components: + - pos: -20.5,-11.5 + parent: 1 + type: Transform + - uid: 3161 + components: + - pos: -51.5,-12.5 + parent: 1 + type: Transform + - uid: 3162 + components: + - pos: -45.5,-12.5 + parent: 1 + type: Transform + - uid: 3163 + components: + - pos: -45.5,-10.5 + parent: 1 + type: Transform + - uid: 3182 + components: + - pos: 40.5,45.5 + parent: 1 + type: Transform + - uid: 3255 + components: + - rot: 3.141592653589793 rad + pos: 35.5,54.5 + parent: 1 + type: Transform + - uid: 3319 + components: + - rot: 3.141592653589793 rad + pos: 8.5,50.5 + parent: 1 + type: Transform + - uid: 3320 + components: + - rot: 3.141592653589793 rad + pos: 8.5,49.5 + parent: 1 + type: Transform + - uid: 3321 + components: + - rot: 3.141592653589793 rad + pos: 3.5,49.5 + parent: 1 + type: Transform + - uid: 3322 + components: + - rot: 3.141592653589793 rad + pos: 3.5,48.5 + parent: 1 + type: Transform + - uid: 3323 + components: + - rot: 3.141592653589793 rad + pos: 2.5,48.5 + parent: 1 + type: Transform + - uid: 3324 + components: + - rot: 3.141592653589793 rad + pos: 4.5,49.5 + parent: 1 + type: Transform + - uid: 3326 + components: + - rot: 3.141592653589793 rad + pos: 6.5,49.5 + parent: 1 + type: Transform + - uid: 3327 + components: + - rot: 3.141592653589793 rad + pos: 6.5,49.5 + parent: 1 + type: Transform + - uid: 3328 + components: + - rot: 3.141592653589793 rad + pos: 6.5,48.5 + parent: 1 + type: Transform + - uid: 3329 + components: + - rot: 3.141592653589793 rad + pos: 6.5,47.5 + parent: 1 + type: Transform + - uid: 3330 + components: + - rot: 3.141592653589793 rad + pos: 6.5,46.5 + parent: 1 + type: Transform + - uid: 3331 + components: + - rot: 3.141592653589793 rad + pos: 6.5,45.5 + parent: 1 + type: Transform + - uid: 3332 + components: + - rot: 3.141592653589793 rad + pos: 6.5,44.5 + parent: 1 + type: Transform + - uid: 3333 + components: + - rot: 3.141592653589793 rad + pos: 5.5,44.5 + parent: 1 + type: Transform + - uid: 3334 + components: + - rot: 3.141592653589793 rad + pos: 4.5,44.5 + parent: 1 + type: Transform + - uid: 3335 + components: + - rot: 3.141592653589793 rad + pos: 3.5,44.5 + parent: 1 + type: Transform + - uid: 3336 + components: + - rot: 3.141592653589793 rad + pos: 3.5,45.5 + parent: 1 + type: Transform + - uid: 3337 + components: + - rot: 3.141592653589793 rad + pos: 2.5,45.5 + parent: 1 + type: Transform + - uid: 3341 + components: + - rot: 3.141592653589793 rad + pos: 1.5,48.5 + parent: 1 + type: Transform + - uid: 3342 + components: + - rot: 3.141592653589793 rad + pos: 1.5,45.5 + parent: 1 + type: Transform + - uid: 3344 + components: + - rot: 3.141592653589793 rad + pos: 1.5,50.5 + parent: 1 + type: Transform + - uid: 3345 + components: + - rot: 3.141592653589793 rad + pos: 1.5,43.5 + parent: 1 + type: Transform + - uid: 3348 + components: + - rot: 3.141592653589793 rad + pos: 1.5,42.5 + parent: 1 + type: Transform + - uid: 3349 + components: + - rot: 3.141592653589793 rad + pos: 2.5,42.5 + parent: 1 + type: Transform + - uid: 3350 + components: + - rot: 3.141592653589793 rad + pos: 3.5,42.5 + parent: 1 + type: Transform + - uid: 3351 + components: + - rot: 3.141592653589793 rad + pos: 4.5,42.5 + parent: 1 + type: Transform + - uid: 3352 + components: + - rot: 3.141592653589793 rad + pos: 5.5,42.5 + parent: 1 + type: Transform + - uid: 3353 + components: + - rot: 3.141592653589793 rad + pos: 6.5,42.5 + parent: 1 + type: Transform + - uid: 3354 + components: + - rot: 3.141592653589793 rad + pos: 7.5,42.5 + parent: 1 + type: Transform + - uid: 3355 + components: + - rot: 3.141592653589793 rad + pos: 8.5,42.5 + parent: 1 + type: Transform + - uid: 3356 + components: + - rot: 3.141592653589793 rad + pos: 8.5,43.5 + parent: 1 + type: Transform + - uid: 3357 + components: + - rot: 3.141592653589793 rad + pos: 8.5,44.5 + parent: 1 + type: Transform + - uid: 3358 + components: + - rot: 3.141592653589793 rad + pos: 8.5,45.5 + parent: 1 + type: Transform + - uid: 3359 + components: + - rot: 3.141592653589793 rad + pos: 8.5,46.5 + parent: 1 + type: Transform + - uid: 3360 + components: + - rot: 3.141592653589793 rad + pos: 8.5,47.5 + parent: 1 + type: Transform + - uid: 3361 + components: + - rot: 3.141592653589793 rad + pos: 8.5,48.5 + parent: 1 + type: Transform + - uid: 3424 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-10.5 + parent: 1 + type: Transform + - uid: 3425 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-10.5 + parent: 1 + type: Transform + - uid: 3517 + components: + - pos: -51.5,17.5 + parent: 1 + type: Transform + - uid: 3531 + components: + - pos: 41.5,41.5 + parent: 1 + type: Transform + - uid: 3533 + components: + - pos: 45.5,41.5 + parent: 1 + type: Transform + - uid: 3534 + components: + - pos: 45.5,42.5 + parent: 1 + type: Transform + - uid: 3535 + components: + - pos: 45.5,44.5 + parent: 1 + type: Transform + - uid: 3561 + components: + - pos: -25.5,21.5 + parent: 1 + type: Transform + - uid: 3569 + components: + - pos: 31.5,-10.5 + parent: 1 + type: Transform + - uid: 3571 + components: + - pos: 31.5,-14.5 + parent: 1 + type: Transform + - uid: 3572 + components: + - pos: 31.5,-13.5 + parent: 1 + type: Transform + - uid: 3573 + components: + - pos: 31.5,-12.5 + parent: 1 + type: Transform + - uid: 3576 + components: + - pos: 31.5,-11.5 + parent: 1 + type: Transform + - uid: 3577 + components: + - pos: 29.5,-14.5 + parent: 1 + type: Transform + - uid: 3579 + components: + - pos: 27.5,-14.5 + parent: 1 + type: Transform + - uid: 3580 + components: + - pos: 26.5,-14.5 + parent: 1 + type: Transform + - uid: 3581 + components: + - pos: 25.5,-14.5 + parent: 1 + type: Transform + - uid: 3585 + components: + - pos: 23.5,-13.5 + parent: 1 + type: Transform + - uid: 3588 + components: + - pos: 23.5,-10.5 + parent: 1 + type: Transform + - uid: 3591 + components: + - pos: 26.5,-10.5 + parent: 1 + type: Transform + - uid: 3592 + components: + - pos: 25.5,-10.5 + parent: 1 + type: Transform + - uid: 3593 + components: + - pos: 25.5,-12.5 + parent: 1 + type: Transform + - uid: 3597 + components: + - pos: 30.5,-14.5 + parent: 1 + type: Transform + - uid: 3604 + components: + - pos: 5.5,21.5 + parent: 1 + type: Transform + - uid: 3605 + components: + - pos: 6.5,21.5 + parent: 1 + type: Transform + - uid: 3606 + components: + - pos: 7.5,21.5 + parent: 1 + type: Transform + - uid: 3607 + components: + - pos: 8.5,21.5 + parent: 1 + type: Transform + - uid: 3608 + components: + - pos: 9.5,21.5 + parent: 1 + type: Transform + - uid: 3611 + components: + - pos: 9.5,25.5 + parent: 1 + type: Transform + - uid: 3612 + components: + - pos: 8.5,25.5 + parent: 1 + type: Transform + - uid: 3613 + components: + - pos: 7.5,25.5 + parent: 1 + type: Transform + - uid: 3615 + components: + - pos: 2.5,26.5 + parent: 1 + type: Transform + - uid: 3616 + components: + - pos: 3.5,26.5 + parent: 1 + type: Transform + - uid: 3617 + components: + - pos: 5.5,26.5 + parent: 1 + type: Transform + - uid: 3618 + components: + - pos: 5.5,27.5 + parent: 1 + type: Transform + - uid: 3623 + components: + - pos: 13.5,21.5 + parent: 1 + type: Transform + - uid: 3624 + components: + - pos: 13.5,22.5 + parent: 1 + type: Transform + - uid: 3625 + components: + - pos: 13.5,23.5 + parent: 1 + type: Transform + - uid: 3626 + components: + - pos: 13.5,24.5 + parent: 1 + type: Transform + - uid: 3627 + components: + - pos: 13.5,25.5 + parent: 1 + type: Transform + - uid: 3628 + components: + - pos: 13.5,26.5 + parent: 1 + type: Transform + - uid: 3656 + components: + - pos: 14.5,26.5 + parent: 1 + type: Transform + - uid: 3657 + components: + - pos: 15.5,26.5 + parent: 1 + type: Transform + - uid: 3658 + components: + - pos: 16.5,26.5 + parent: 1 + type: Transform + - uid: 3659 + components: + - pos: 17.5,26.5 + parent: 1 + type: Transform + - uid: 3660 + components: + - pos: 17.5,27.5 + parent: 1 + type: Transform + - uid: 3662 + components: + - pos: 17.5,29.5 + parent: 1 + type: Transform + - uid: 3663 + components: + - pos: 17.5,30.5 + parent: 1 + type: Transform + - uid: 3664 + components: + - pos: 17.5,31.5 + parent: 1 + type: Transform + - uid: 3665 + components: + - pos: 17.5,32.5 + parent: 1 + type: Transform + - uid: 3666 + components: + - pos: 13.5,29.5 + parent: 1 + type: Transform + - uid: 3667 + components: + - pos: 13.5,30.5 + parent: 1 + type: Transform + - uid: 3668 + components: + - pos: 14.5,30.5 + parent: 1 + type: Transform + - uid: 3669 + components: + - pos: 16.5,30.5 + parent: 1 + type: Transform + - uid: 3670 + components: + - pos: 17.5,33.5 + parent: 1 + type: Transform + - uid: 3671 + components: + - pos: 17.5,34.5 + parent: 1 + type: Transform + - uid: 3672 + components: + - pos: 17.5,35.5 + parent: 1 + type: Transform + - uid: 3673 + components: + - pos: 13.5,35.5 + parent: 1 + type: Transform + - uid: 3674 + components: + - pos: 9.5,35.5 + parent: 1 + type: Transform + - uid: 3675 + components: + - pos: 8.5,35.5 + parent: 1 + type: Transform + - uid: 3676 + components: + - pos: 7.5,35.5 + parent: 1 + type: Transform + - uid: 3677 + components: + - pos: 8.5,34.5 + parent: 1 + type: Transform + - uid: 3678 + components: + - pos: 8.5,33.5 + parent: 1 + type: Transform + - uid: 3679 + components: + - pos: 8.5,32.5 + parent: 1 + type: Transform + - uid: 3680 + components: + - pos: 8.5,31.5 + parent: 1 + type: Transform + - uid: 3682 + components: + - pos: 13.5,34.5 + parent: 1 + type: Transform + - uid: 3683 + components: + - pos: 13.5,33.5 + parent: 1 + type: Transform + - uid: 3698 + components: + - pos: 8.5,29.5 + parent: 1 + type: Transform + - uid: 3700 + components: + - pos: 5.5,28.5 + parent: 1 + type: Transform + - uid: 3703 + components: + - pos: 12.5,29.5 + parent: 1 + type: Transform + - uid: 3704 + components: + - pos: 18.5,30.5 + parent: 1 + type: Transform + - uid: 3706 + components: + - pos: 20.5,30.5 + parent: 1 + type: Transform + - uid: 3707 + components: + - pos: 21.5,30.5 + parent: 1 + type: Transform + - uid: 3708 + components: + - pos: 22.5,30.5 + parent: 1 + type: Transform + - uid: 3709 + components: + - pos: 17.5,25.5 + parent: 1 + type: Transform + - uid: 3710 + components: + - pos: 18.5,25.5 + parent: 1 + type: Transform + - uid: 3711 + components: + - pos: 19.5,25.5 + parent: 1 + type: Transform + - uid: 3712 + components: + - pos: 20.5,25.5 + parent: 1 + type: Transform + - uid: 3713 + components: + - pos: 21.5,25.5 + parent: 1 + type: Transform + - uid: 3714 + components: + - pos: 22.5,25.5 + parent: 1 + type: Transform + - uid: 3715 + components: + - pos: 23.5,25.5 + parent: 1 + type: Transform + - uid: 3716 + components: + - pos: 23.5,26.5 + parent: 1 + type: Transform + - uid: 3718 + components: + - pos: 23.5,28.5 + parent: 1 + type: Transform + - uid: 3719 + components: + - pos: 23.5,29.5 + parent: 1 + type: Transform + - uid: 3720 + components: + - pos: 23.5,30.5 + parent: 1 + type: Transform + - uid: 3725 + components: + - pos: -43.5,0.5 + parent: 1 + type: Transform + - uid: 3737 + components: + - pos: 21.5,-26.5 + parent: 1 + type: Transform + - uid: 3738 + components: + - pos: 20.5,-26.5 + parent: 1 + type: Transform + - uid: 3739 + components: + - pos: 19.5,-28.5 + parent: 1 + type: Transform + - uid: 3743 + components: + - pos: 16.5,-25.5 + parent: 1 + type: Transform + - uid: 3744 + components: + - pos: 16.5,-28.5 + parent: 1 + type: Transform + - uid: 3745 + components: + - pos: 15.5,-28.5 + parent: 1 + type: Transform + - uid: 3746 + components: + - pos: 19.5,-20.5 + parent: 1 + type: Transform + - uid: 3748 + components: + - pos: 16.5,-26.5 + parent: 1 + type: Transform + - uid: 3749 + components: + - pos: 15.5,-25.5 + parent: 1 + type: Transform + - uid: 3750 + components: + - pos: 19.5,-26.5 + parent: 1 + type: Transform + - uid: 3752 + components: + - pos: 21.5,-21.5 + parent: 1 + type: Transform + - uid: 3754 + components: + - pos: 16.5,-20.5 + parent: 1 + type: Transform + - uid: 3755 + components: + - pos: 16.5,-21.5 + parent: 1 + type: Transform + - uid: 3760 + components: + - pos: 21.5,-25.5 + parent: 1 + type: Transform + - uid: 3762 + components: + - pos: 15.5,-21.5 + parent: 1 + type: Transform + - uid: 3768 + components: + - pos: 21.5,-20.5 + parent: 1 + type: Transform + - uid: 3769 + components: + - pos: 19.5,-21.5 + parent: 1 + type: Transform + - uid: 3770 + components: + - pos: 19.5,-25.5 + parent: 1 + type: Transform + - uid: 3771 + components: + - pos: 15.5,-22.5 + parent: 1 + type: Transform + - uid: 3772 + components: + - pos: 15.5,-24.5 + parent: 1 + type: Transform + - uid: 3773 + components: + - pos: 16.5,-10.5 + parent: 1 + type: Transform + - uid: 3781 + components: + - pos: 21.5,-10.5 + parent: 1 + type: Transform + - uid: 3783 + components: + - pos: 20.5,-10.5 + parent: 1 + type: Transform + - uid: 3797 + components: + - pos: 17.5,-10.5 + parent: 1 + type: Transform + - uid: 3799 + components: + - pos: 16.5,-18.5 + parent: 1 + type: Transform + - uid: 3800 + components: + - pos: 17.5,-18.5 + parent: 1 + type: Transform + - uid: 3801 + components: + - pos: 21.5,-18.5 + parent: 1 + type: Transform + - uid: 3802 + components: + - pos: 20.5,-18.5 + parent: 1 + type: Transform + - uid: 3806 + components: + - pos: 23.5,-18.5 + parent: 1 + type: Transform + - uid: 3808 + components: + - pos: 23.5,-17.5 + parent: 1 + type: Transform + - uid: 3815 + components: + - pos: 22.5,-20.5 + parent: 1 + type: Transform + - uid: 3816 + components: + - pos: 23.5,-20.5 + parent: 1 + type: Transform + - uid: 3817 + components: + - pos: 23.5,-19.5 + parent: 1 + type: Transform + - uid: 3934 + components: + - pos: -26.5,-14.5 + parent: 1 + type: Transform + - uid: 3935 + components: + - pos: -26.5,-13.5 + parent: 1 + type: Transform + - uid: 3936 + components: + - pos: -26.5,-12.5 + parent: 1 + type: Transform + - uid: 3937 + components: + - pos: -26.5,-11.5 + parent: 1 + type: Transform + - uid: 3938 + components: + - pos: -26.5,-10.5 + parent: 1 + type: Transform + - uid: 3959 + components: + - pos: -24.5,-19.5 + parent: 1 + type: Transform + - uid: 3968 + components: + - pos: -25.5,-10.5 + parent: 1 + type: Transform + - uid: 3969 + components: + - pos: -24.5,-10.5 + parent: 1 + type: Transform + - uid: 3970 + components: + - pos: -22.5,-10.5 + parent: 1 + type: Transform + - uid: 3971 + components: + - pos: -21.5,-10.5 + parent: 1 + type: Transform + - uid: 3972 + components: + - pos: -20.5,-10.5 + parent: 1 + type: Transform + - uid: 3973 + components: + - pos: -20.5,-13.5 + parent: 1 + type: Transform + - uid: 3974 + components: + - pos: -19.5,-13.5 + parent: 1 + type: Transform + - uid: 3975 + components: + - pos: -19.5,-11.5 + parent: 1 + type: Transform + - uid: 3976 + components: + - pos: -20.5,-14.5 + parent: 1 + type: Transform + - uid: 3977 + components: + - pos: -21.5,-14.5 + parent: 1 + type: Transform + - uid: 3978 + components: + - pos: -22.5,-14.5 + parent: 1 + type: Transform + - uid: 3979 + components: + - pos: -23.5,-14.5 + parent: 1 + type: Transform + - uid: 3980 + components: + - pos: -25.5,-14.5 + parent: 1 + type: Transform + - uid: 3986 + components: + - pos: -23.5,-10.5 + parent: 1 + type: Transform + - uid: 3987 + components: + - pos: -19.5,-14.5 + parent: 1 + type: Transform + - uid: 3988 + components: + - pos: -19.5,-10.5 + parent: 1 + type: Transform + - uid: 4055 + components: + - pos: 7.5,26.5 + parent: 1 + type: Transform + - uid: 4056 + components: + - pos: 1.5,32.5 + parent: 1 + type: Transform + - uid: 4058 + components: + - pos: 1.5,28.5 + parent: 1 + type: Transform + - uid: 4086 + components: + - pos: 5.5,29.5 + parent: 1 + type: Transform + - uid: 4116 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,30.5 + parent: 1 + type: Transform + - uid: 4131 + components: + - pos: -43.5,23.5 + parent: 1 + type: Transform + - uid: 4151 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-0.5 + parent: 1 + type: Transform + - uid: 4201 + components: + - pos: 12.5,-10.5 + parent: 1 + type: Transform + - uid: 4202 + components: + - pos: -13.5,-10.5 + parent: 1 + type: Transform + - uid: 4342 + components: + - pos: -15.5,29.5 + parent: 1 + type: Transform + - uid: 4350 + components: + - pos: 23.5,-12.5 + parent: 1 + type: Transform + - uid: 4407 + components: + - pos: -23.5,-19.5 + parent: 1 + type: Transform + - uid: 4459 + components: + - pos: -36.5,53.5 + parent: 1 + type: Transform + - uid: 4472 + components: + - pos: -39.5,-14.5 + parent: 1 + type: Transform + - uid: 5530 + components: + - pos: -19.5,29.5 + parent: 1 + type: Transform + - uid: 5695 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,35.5 + parent: 1 + type: Transform + - uid: 5718 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,12.5 + parent: 1 + type: Transform + - uid: 5803 + components: + - pos: 25.5,-11.5 + parent: 1 + type: Transform + - uid: 5956 + components: + - pos: -18.5,29.5 + parent: 1 + type: Transform + - uid: 6094 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,35.5 + parent: 1 + type: Transform + - uid: 6095 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,30.5 + parent: 1 + type: Transform + - uid: 6098 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,30.5 + parent: 1 + type: Transform + - uid: 6099 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,30.5 + parent: 1 + type: Transform + - uid: 6101 + components: + - pos: 19.5,35.5 + parent: 1 + type: Transform + - uid: 6106 + components: + - pos: 21.5,35.5 + parent: 1 + type: Transform + - uid: 6107 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,35.5 + parent: 1 + type: Transform + - uid: 6108 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,30.5 + parent: 1 + type: Transform + - uid: 6343 + components: + - pos: -40.5,56.5 + parent: 1 + type: Transform + - uid: 6350 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,68.5 + parent: 1 + type: Transform + - uid: 6351 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,68.5 + parent: 1 + type: Transform + - uid: 6352 + components: + - rot: 3.141592653589793 rad + pos: -9.5,70.5 + parent: 1 + type: Transform + - uid: 6353 + components: + - rot: 3.141592653589793 rad + pos: -8.5,68.5 + parent: 1 + type: Transform + - uid: 6354 + components: + - rot: 3.141592653589793 rad + pos: -7.5,68.5 + parent: 1 + type: Transform + - uid: 6356 + components: + - rot: 3.141592653589793 rad + pos: -6.5,68.5 + parent: 1 + type: Transform + - uid: 6357 + components: + - rot: 3.141592653589793 rad + pos: -6.5,69.5 + parent: 1 + type: Transform + - uid: 6358 + components: + - rot: 3.141592653589793 rad + pos: -9.5,68.5 + parent: 1 + type: Transform + - uid: 6378 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,30.5 + parent: 1 + type: Transform + - uid: 6496 + components: + - pos: 50.5,-13.5 + parent: 1 + type: Transform + - uid: 6509 + components: + - pos: 50.5,-6.5 + parent: 1 + type: Transform + - uid: 6512 + components: + - pos: 52.5,-8.5 + parent: 1 + type: Transform + - uid: 6513 + components: + - pos: 52.5,-13.5 + parent: 1 + type: Transform + - uid: 6528 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,4.5 + parent: 1 + type: Transform + - uid: 6549 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,4.5 + parent: 1 + type: Transform + - uid: 6555 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-2.5 + parent: 1 + type: Transform + - uid: 6557 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,2.5 + parent: 1 + type: Transform + - uid: 6558 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,2.5 + parent: 1 + type: Transform + - uid: 6690 + components: + - pos: -42.5,0.5 + parent: 1 + type: Transform + - uid: 6780 + components: + - pos: 20.5,-28.5 + parent: 1 + type: Transform + - uid: 6781 + components: + - pos: 20.5,-27.5 + parent: 1 + type: Transform + - uid: 6790 + components: + - pos: -11.5,69.5 + parent: 1 + type: Transform + - uid: 6858 + components: + - pos: 27.5,-27.5 + parent: 1 + type: Transform + - uid: 6859 + components: + - pos: -28.5,-29.5 + parent: 1 + type: Transform + - uid: 6903 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,31.5 + parent: 1 + type: Transform + - uid: 6904 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,34.5 + parent: 1 + type: Transform + - uid: 6905 + components: + - pos: 22.5,33.5 + parent: 1 + type: Transform + - uid: 6907 + components: + - pos: 22.5,32.5 + parent: 1 + type: Transform + - uid: 7264 + components: + - pos: 18.5,35.5 + parent: 1 + type: Transform + - uid: 7266 + components: + - pos: 20.5,35.5 + parent: 1 + type: Transform + - uid: 7290 + components: + - pos: -26.5,-27.5 + parent: 1 + type: Transform + - uid: 7319 + components: + - pos: 25.5,-13.5 + parent: 1 + type: Transform + - uid: 7424 + components: + - pos: 25.5,-29.5 + parent: 1 + type: Transform + - uid: 7630 + components: + - pos: 27.5,-29.5 + parent: 1 + type: Transform + - uid: 7663 + components: + - pos: -26.5,-29.5 + parent: 1 + type: Transform + - uid: 7664 + components: + - pos: -28.5,-27.5 + parent: 1 + type: Transform + - uid: 7674 + components: + - pos: 25.5,-27.5 + parent: 1 + type: Transform + - uid: 7817 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,29.5 + parent: 1 + type: Transform + - uid: 7919 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,26.5 + parent: 1 + type: Transform + - uid: 7920 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,29.5 + parent: 1 + type: Transform + - uid: 7921 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,20.5 + parent: 1 + type: Transform + - uid: 18083 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-18.5 + parent: 1 + type: Transform + - uid: 18439 + components: + - pos: 15.5,-18.5 + parent: 1 + type: Transform + - uid: 18471 + components: + - pos: 23.5,-11.5 + parent: 1 + type: Transform +- proto: WallShuttle + entities: + - uid: 8765 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 8756 + type: Transform + - uid: 8766 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 8756 + type: Transform + - uid: 8767 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 8756 + type: Transform + - uid: 8768 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 8756 + type: Transform + - uid: 8771 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 8756 + type: Transform + - uid: 8772 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 8756 + type: Transform + - uid: 8773 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 8756 + type: Transform + - uid: 8774 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 8756 + type: Transform + - uid: 8779 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 8756 + type: Transform + - uid: 8780 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 8756 + type: Transform + - uid: 8781 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 8756 + type: Transform + - uid: 8782 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 8756 + type: Transform + - uid: 8797 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 8756 + type: Transform + - uid: 8798 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 8756 + type: Transform + - uid: 8799 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 8756 + type: Transform + - uid: 8800 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 8756 + type: Transform + - uid: 8806 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 8756 + type: Transform + - uid: 8808 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 8756 + type: Transform + - uid: 8811 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 8756 + type: Transform + - uid: 8813 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 8756 + type: Transform +- proto: WallShuttleDiagonal + entities: + - uid: 8769 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 8756 + type: Transform + - uid: 8770 + components: + - pos: -2.5,4.5 + parent: 8756 + type: Transform + - uid: 8803 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 8756 + type: Transform + - uid: 8886 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 8756 + type: Transform +- proto: WallSolid + entities: + - uid: 126 + components: + - pos: -40.5,12.5 + parent: 1 + type: Transform + - uid: 128 + components: + - pos: -38.5,12.5 + parent: 1 + type: Transform + - uid: 136 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-6.5 + parent: 1 + type: Transform + - uid: 137 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-8.5 + parent: 1 + type: Transform + - uid: 138 + components: + - pos: -28.5,-13.5 + parent: 1 + type: Transform + - uid: 142 + components: + - pos: -37.5,-7.5 + parent: 1 + type: Transform + - uid: 143 + components: + - pos: -33.5,16.5 + parent: 1 + type: Transform + - uid: 248 + components: + - pos: -30.5,-15.5 + parent: 1 + type: Transform + - uid: 254 + components: + - pos: 13.5,-2.5 + parent: 1 + type: Transform + - uid: 261 + components: + - pos: -33.5,9.5 + parent: 1 + type: Transform + - uid: 262 + components: + - pos: -33.5,8.5 + parent: 1 + type: Transform + - uid: 263 + components: + - pos: -36.5,8.5 + parent: 1 + type: Transform + - uid: 264 + components: + - pos: -33.5,2.5 + parent: 1 + type: Transform + - uid: 265 + components: + - pos: -34.5,8.5 + parent: 1 + type: Transform + - uid: 267 + components: + - pos: -37.5,11.5 + parent: 1 + type: Transform + - uid: 268 + components: + - pos: -37.5,8.5 + parent: 1 + type: Transform + - uid: 269 + components: + - pos: -33.5,1.5 + parent: 1 + type: Transform + - uid: 273 + components: + - pos: -33.5,11.5 + parent: 1 + type: Transform + - uid: 275 + components: + - pos: -43.5,-3.5 + parent: 1 + type: Transform + - uid: 277 + components: + - pos: -39.5,-3.5 + parent: 1 + type: Transform + - uid: 279 + components: + - pos: -42.5,-3.5 + parent: 1 + type: Transform + - uid: 397 + components: + - pos: -3.5,69.5 + parent: 1 + type: Transform + - uid: 439 + components: + - pos: -37.5,12.5 + parent: 1 + type: Transform + - uid: 440 + components: + - pos: -37.5,9.5 + parent: 1 + type: Transform + - uid: 441 + components: + - pos: -34.5,3.5 + parent: 1 + type: Transform + - uid: 442 + components: + - pos: -36.5,12.5 + parent: 1 + type: Transform + - uid: 445 + components: + - pos: -34.5,12.5 + parent: 1 + type: Transform + - uid: 446 + components: + - pos: -36.5,3.5 + parent: 1 + type: Transform + - uid: 447 + components: + - pos: -33.5,3.5 + parent: 1 + type: Transform + - uid: 449 + components: + - pos: -38.5,-3.5 + parent: 1 + type: Transform + - uid: 494 + components: + - pos: -12.5,5.5 + parent: 1 + type: Transform + - uid: 495 + components: + - pos: -9.5,12.5 + parent: 1 + type: Transform + - uid: 496 + components: + - pos: -12.5,7.5 + parent: 1 + type: Transform + - uid: 497 + components: + - pos: -12.5,6.5 + parent: 1 + type: Transform + - uid: 498 + components: + - pos: -12.5,8.5 + parent: 1 + type: Transform + - uid: 499 + components: + - pos: -12.5,9.5 + parent: 1 + type: Transform + - uid: 500 + components: + - pos: -10.5,9.5 + parent: 1 + type: Transform + - uid: 501 + components: + - pos: -11.5,9.5 + parent: 1 + type: Transform + - uid: 502 + components: + - pos: -5.5,-6.5 + parent: 1 + type: Transform + - uid: 504 + components: + - pos: -5.5,12.5 + parent: 1 + type: Transform + - uid: 506 + components: + - pos: -6.5,12.5 + parent: 1 + type: Transform + - uid: 507 + components: + - pos: -10.5,12.5 + parent: 1 + type: Transform + - uid: 508 + components: + - pos: -11.5,12.5 + parent: 1 + type: Transform + - uid: 509 + components: + - pos: -11.5,5.5 + parent: 1 + type: Transform + - uid: 510 + components: + - pos: -10.5,5.5 + parent: 1 + type: Transform + - uid: 515 + components: + - pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 516 + components: + - pos: -5.5,11.5 + parent: 1 + type: Transform + - uid: 517 + components: + - pos: -6.5,9.5 + parent: 1 + type: Transform + - uid: 518 + components: + - pos: -5.5,10.5 + parent: 1 + type: Transform + - uid: 519 + components: + - pos: -8.5,12.5 + parent: 1 + type: Transform + - uid: 520 + components: + - pos: -7.5,12.5 + parent: 1 + type: Transform + - uid: 521 + components: + - pos: -11.5,10.5 + parent: 1 + type: Transform + - uid: 522 + components: + - pos: -9.5,9.5 + parent: 1 + type: Transform + - uid: 523 + components: + - pos: -7.5,9.5 + parent: 1 + type: Transform + - uid: 531 + components: + - pos: -9.5,-6.5 + parent: 1 + type: Transform + - uid: 532 + components: + - pos: -13.5,-6.5 + parent: 1 + type: Transform + - uid: 533 + components: + - pos: -14.5,-6.5 + parent: 1 + type: Transform + - uid: 534 + components: + - pos: -14.5,-5.5 + parent: 1 + type: Transform + - uid: 535 + components: + - pos: -14.5,-4.5 + parent: 1 + type: Transform + - uid: 539 + components: + - pos: -14.5,5.5 + parent: 1 + type: Transform + - uid: 540 + components: + - pos: -13.5,5.5 + parent: 1 + type: Transform + - uid: 543 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 544 + components: + - pos: 4.5,12.5 + parent: 1 + type: Transform + - uid: 547 + components: + - pos: 7.5,12.5 + parent: 1 + type: Transform + - uid: 551 + components: + - pos: 12.5,12.5 + parent: 1 + type: Transform + - uid: 552 + components: + - pos: 6.5,12.5 + parent: 1 + type: Transform + - uid: 558 + components: + - pos: 4.5,9.5 + parent: 1 + type: Transform + - uid: 559 + components: + - pos: 4.5,10.5 + parent: 1 + type: Transform + - uid: 560 + components: + - pos: 4.5,11.5 + parent: 1 + type: Transform + - uid: 568 + components: + - pos: 10.5,4.5 + parent: 1 + type: Transform + - uid: 572 + components: + - pos: 9.5,0.5 + parent: 1 + type: Transform + - uid: 573 + components: + - pos: 9.5,1.5 + parent: 1 + type: Transform + - uid: 574 + components: + - pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 575 + components: + - pos: 9.5,4.5 + parent: 1 + type: Transform + - uid: 576 + components: + - pos: 12.5,4.5 + parent: 1 + type: Transform + - uid: 577 + components: + - pos: 13.5,4.5 + parent: 1 + type: Transform + - uid: 578 + components: + - pos: 13.5,3.5 + parent: 1 + type: Transform + - uid: 580 + components: + - pos: 13.5,1.5 + parent: 1 + type: Transform + - uid: 581 + components: + - pos: 13.5,0.5 + parent: 1 + type: Transform + - uid: 582 + components: + - pos: 12.5,0.5 + parent: 1 + type: Transform + - uid: 583 + components: + - pos: 10.5,0.5 + parent: 1 + type: Transform + - uid: 584 + components: + - pos: 12.5,11.5 + parent: 1 + type: Transform + - uid: 585 + components: + - pos: 12.5,10.5 + parent: 1 + type: Transform + - uid: 586 + components: + - pos: 13.5,-0.5 + parent: 1 + type: Transform + - uid: 587 + components: + - pos: 12.5,8.5 + parent: 1 + type: Transform + - uid: 588 + components: + - pos: 12.5,7.5 + parent: 1 + type: Transform + - uid: 589 + components: + - pos: 13.5,-1.5 + parent: 1 + type: Transform + - uid: 590 + components: + - pos: 12.5,5.5 + parent: 1 + type: Transform + - uid: 592 + components: + - pos: 13.5,-3.5 + parent: 1 + type: Transform + - uid: 593 + components: + - pos: 13.5,-4.5 + parent: 1 + type: Transform + - uid: 594 + components: + - pos: 13.5,-5.5 + parent: 1 + type: Transform + - uid: 595 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-6.5 + parent: 1 + type: Transform + - uid: 596 + components: + - pos: 12.5,-5.5 + parent: 1 + type: Transform + - uid: 597 + components: + - pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 598 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-6.5 + parent: 1 + type: Transform + - uid: 600 + components: + - pos: 7.5,-6.5 + parent: 1 + type: Transform + - uid: 601 + components: + - pos: 4.5,-6.5 + parent: 1 + type: Transform + - uid: 623 + components: + - pos: 13.5,12.5 + parent: 1 + type: Transform + - uid: 624 + components: + - pos: 14.5,12.5 + parent: 1 + type: Transform + - uid: 625 + components: + - pos: 15.5,12.5 + parent: 1 + type: Transform + - uid: 626 + components: + - pos: 16.5,12.5 + parent: 1 + type: Transform + - uid: 627 + components: + - pos: 16.5,11.5 + parent: 1 + type: Transform + - uid: 628 + components: + - pos: 16.5,10.5 + parent: 1 + type: Transform + - uid: 629 + components: + - pos: 16.5,9.5 + parent: 1 + type: Transform + - uid: 630 + components: + - pos: 16.5,8.5 + parent: 1 + type: Transform + - uid: 631 + components: + - pos: 16.5,7.5 + parent: 1 + type: Transform + - uid: 632 + components: + - pos: 15.5,7.5 + parent: 1 + type: Transform + - uid: 633 + components: + - pos: 13.5,7.5 + parent: 1 + type: Transform + - uid: 634 + components: + - pos: 17.5,12.5 + parent: 1 + type: Transform + - uid: 635 + components: + - pos: 19.5,12.5 + parent: 1 + type: Transform + - uid: 636 + components: + - pos: 19.5,11.5 + parent: 1 + type: Transform + - uid: 637 + components: + - pos: 19.5,10.5 + parent: 1 + type: Transform + - uid: 638 + components: + - pos: 19.5,9.5 + parent: 1 + type: Transform + - uid: 639 + components: + - pos: 27.5,-6.5 + parent: 1 + type: Transform + - uid: 640 + components: + - pos: 19.5,7.5 + parent: 1 + type: Transform + - uid: 641 + components: + - pos: 19.5,6.5 + parent: 1 + type: Transform + - uid: 642 + components: + - pos: 19.5,5.5 + parent: 1 + type: Transform + - uid: 643 + components: + - pos: 18.5,5.5 + parent: 1 + type: Transform + - uid: 644 + components: + - pos: 16.5,5.5 + parent: 1 + type: Transform + - uid: 645 + components: + - pos: 17.5,5.5 + parent: 1 + type: Transform + - uid: 646 + components: + - pos: 16.5,4.5 + parent: 1 + type: Transform + - uid: 647 + components: + - pos: 16.5,3.5 + parent: 1 + type: Transform + - uid: 648 + components: + - pos: 16.5,2.5 + parent: 1 + type: Transform + - uid: 649 + components: + - pos: 16.5,1.5 + parent: 1 + type: Transform + - uid: 650 + components: + - pos: 16.5,0.5 + parent: 1 + type: Transform + - uid: 651 + components: + - pos: 16.5,-0.5 + parent: 1 + type: Transform + - uid: 654 + components: + - pos: -18.5,-1.5 + parent: 1 + type: Transform + - uid: 655 + components: + - pos: -18.5,-2.5 + parent: 1 + type: Transform + - uid: 656 + components: + - pos: -18.5,-3.5 + parent: 1 + type: Transform + - uid: 657 + components: + - pos: -18.5,-4.5 + parent: 1 + type: Transform + - uid: 658 + components: + - pos: -18.5,-6.5 + parent: 1 + type: Transform + - uid: 659 + components: + - pos: -17.5,-6.5 + parent: 1 + type: Transform + - uid: 660 + components: + - pos: -16.5,-6.5 + parent: 1 + type: Transform + - uid: 662 + components: + - pos: -15.5,-6.5 + parent: 1 + type: Transform + - uid: 669 + components: + - pos: -14.5,6.5 + parent: 1 + type: Transform + - uid: 670 + components: + - pos: -15.5,6.5 + parent: 1 + type: Transform + - uid: 671 + components: + - pos: -16.5,6.5 + parent: 1 + type: Transform + - uid: 672 + components: + - pos: -17.5,6.5 + parent: 1 + type: Transform + - uid: 673 + components: + - pos: -18.5,0.5 + parent: 1 + type: Transform + - uid: 674 + components: + - pos: -18.5,1.5 + parent: 1 + type: Transform + - uid: 675 + components: + - pos: -18.5,2.5 + parent: 1 + type: Transform + - uid: 676 + components: + - pos: -18.5,3.5 + parent: 1 + type: Transform + - uid: 677 + components: + - pos: -18.5,4.5 + parent: 1 + type: Transform + - uid: 678 + components: + - pos: -18.5,6.5 + parent: 1 + type: Transform + - uid: 679 + components: + - pos: -19.5,-6.5 + parent: 1 + type: Transform + - uid: 680 + components: + - pos: -20.5,-6.5 + parent: 1 + type: Transform + - uid: 681 + components: + - pos: -21.5,-6.5 + parent: 1 + type: Transform + - uid: 682 + components: + - pos: -22.5,-6.5 + parent: 1 + type: Transform + - uid: 683 + components: + - pos: -23.5,-6.5 + parent: 1 + type: Transform + - uid: 684 + components: + - pos: -24.5,-6.5 + parent: 1 + type: Transform + - uid: 685 + components: + - pos: -25.5,-6.5 + parent: 1 + type: Transform + - uid: 686 + components: + - pos: -27.5,-6.5 + parent: 1 + type: Transform + - uid: 687 + components: + - pos: -28.5,-6.5 + parent: 1 + type: Transform + - uid: 688 + components: + - pos: -29.5,-6.5 + parent: 1 + type: Transform + - uid: 689 + components: + - pos: -29.5,-5.5 + parent: 1 + type: Transform + - uid: 690 + components: + - pos: -29.5,-4.5 + parent: 1 + type: Transform + - uid: 691 + components: + - pos: -29.5,-3.5 + parent: 1 + type: Transform + - uid: 692 + components: + - pos: -26.5,-4.5 + parent: 1 + type: Transform + - uid: 693 + components: + - pos: -25.5,-4.5 + parent: 1 + type: Transform + - uid: 694 + components: + - pos: -24.5,-4.5 + parent: 1 + type: Transform + - uid: 695 + components: + - pos: -23.5,-4.5 + parent: 1 + type: Transform + - uid: 696 + components: + - pos: -12.5,12.5 + parent: 1 + type: Transform + - uid: 697 + components: + - pos: -13.5,12.5 + parent: 1 + type: Transform + - uid: 698 + components: + - pos: -14.5,12.5 + parent: 1 + type: Transform + - uid: 699 + components: + - pos: -14.5,11.5 + parent: 1 + type: Transform + - uid: 700 + components: + - pos: -16.5,12.5 + parent: 1 + type: Transform + - uid: 701 + components: + - pos: -17.5,12.5 + parent: 1 + type: Transform + - uid: 702 + components: + - pos: -18.5,12.5 + parent: 1 + type: Transform + - uid: 703 + components: + - pos: -19.5,12.5 + parent: 1 + type: Transform + - uid: 704 + components: + - pos: -20.5,12.5 + parent: 1 + type: Transform + - uid: 705 + components: + - pos: -21.5,12.5 + parent: 1 + type: Transform + - uid: 706 + components: + - pos: -24.5,12.5 + parent: 1 + type: Transform + - uid: 707 + components: + - pos: -26.5,12.5 + parent: 1 + type: Transform + - uid: 708 + components: + - pos: -25.5,12.5 + parent: 1 + type: Transform + - uid: 709 + components: + - pos: -29.5,9.5 + parent: 1 + type: Transform + - uid: 710 + components: + - pos: -29.5,12.5 + parent: 1 + type: Transform + - uid: 711 + components: + - pos: -29.5,8.5 + parent: 1 + type: Transform + - uid: 712 + components: + - pos: -29.5,7.5 + parent: 1 + type: Transform + - uid: 713 + components: + - pos: -29.5,4.5 + parent: 1 + type: Transform + - uid: 714 + components: + - pos: -28.5,4.5 + parent: 1 + type: Transform + - uid: 715 + components: + - pos: -27.5,4.5 + parent: 1 + type: Transform + - uid: 716 + components: + - pos: -26.5,4.5 + parent: 1 + type: Transform + - uid: 717 + components: + - pos: -26.5,-3.5 + parent: 1 + type: Transform + - uid: 718 + components: + - pos: -26.5,-2.5 + parent: 1 + type: Transform + - uid: 719 + components: + - pos: -26.5,-1.5 + parent: 1 + type: Transform + - uid: 720 + components: + - pos: -26.5,-0.5 + parent: 1 + type: Transform + - uid: 721 + components: + - pos: -26.5,0.5 + parent: 1 + type: Transform + - uid: 722 + components: + - pos: -26.5,3.5 + parent: 1 + type: Transform + - uid: 723 + components: + - pos: -26.5,2.5 + parent: 1 + type: Transform + - uid: 724 + components: + - pos: -29.5,-2.5 + parent: 1 + type: Transform + - uid: 725 + components: + - pos: -29.5,-1.5 + parent: 1 + type: Transform + - uid: 726 + components: + - pos: -29.5,-0.5 + parent: 1 + type: Transform + - uid: 727 + components: + - pos: -29.5,0.5 + parent: 1 + type: Transform + - uid: 728 + components: + - pos: -29.5,2.5 + parent: 1 + type: Transform + - uid: 729 + components: + - pos: -29.5,3.5 + parent: 1 + type: Transform + - uid: 730 + components: + - pos: -21.5,11.5 + parent: 1 + type: Transform + - uid: 731 + components: + - pos: -21.5,10.5 + parent: 1 + type: Transform + - uid: 732 + components: + - pos: -21.5,9.5 + parent: 1 + type: Transform + - uid: 733 + components: + - pos: -21.5,8.5 + parent: 1 + type: Transform + - uid: 734 + components: + - pos: -25.5,4.5 + parent: 1 + type: Transform + - uid: 735 + components: + - pos: -23.5,4.5 + parent: 1 + type: Transform + - uid: 736 + components: + - pos: -25.5,0.5 + parent: 1 + type: Transform + - uid: 737 + components: + - pos: -24.5,0.5 + parent: 1 + type: Transform + - uid: 738 + components: + - pos: -23.5,0.5 + parent: 1 + type: Transform + - uid: 739 + components: + - pos: -22.5,0.5 + parent: 1 + type: Transform + - uid: 740 + components: + - pos: -22.5,2.5 + parent: 1 + type: Transform + - uid: 741 + components: + - pos: -22.5,4.5 + parent: 1 + type: Transform + - uid: 742 + components: + - pos: -21.5,4.5 + parent: 1 + type: Transform + - uid: 743 + components: + - pos: -22.5,3.5 + parent: 1 + type: Transform + - uid: 744 + components: + - pos: -22.5,1.5 + parent: 1 + type: Transform + - uid: 745 + components: + - pos: -20.5,4.5 + parent: 1 + type: Transform + - uid: 746 + components: + - pos: -20.5,8.5 + parent: 1 + type: Transform + - uid: 747 + components: + - pos: -18.5,8.5 + parent: 1 + type: Transform + - uid: 748 + components: + - pos: -17.5,8.5 + parent: 1 + type: Transform + - uid: 752 + components: + - pos: -14.5,10.5 + parent: 1 + type: Transform + - uid: 753 + components: + - pos: -14.5,9.5 + parent: 1 + type: Transform + - uid: 754 + components: + - pos: -14.5,7.5 + parent: 1 + type: Transform + - uid: 755 + components: + - pos: -21.5,5.5 + parent: 1 + type: Transform + - uid: 756 + components: + - pos: -21.5,6.5 + parent: 1 + type: Transform + - uid: 757 + components: + - pos: -22.5,-0.5 + parent: 1 + type: Transform + - uid: 758 + components: + - pos: -22.5,-4.5 + parent: 1 + type: Transform + - uid: 759 + components: + - pos: -22.5,-3.5 + parent: 1 + type: Transform + - uid: 760 + components: + - pos: -22.5,-1.5 + parent: 1 + type: Transform + - uid: 761 + components: + - pos: -21.5,-1.5 + parent: 1 + type: Transform + - uid: 762 + components: + - pos: -20.5,-1.5 + parent: 1 + type: Transform + - uid: 769 + components: + - pos: -27.5,-23.5 + parent: 1 + type: Transform + - uid: 782 + components: + - pos: -25.5,9.5 + parent: 1 + type: Transform + - uid: 783 + components: + - pos: -26.5,9.5 + parent: 1 + type: Transform + - uid: 796 + components: + - pos: 5.5,16.5 + parent: 1 + type: Transform + - uid: 822 + components: + - pos: -24.5,9.5 + parent: 1 + type: Transform + - uid: 846 + components: + - pos: 40.5,39.5 + parent: 1 + type: Transform + - uid: 886 + components: + - rot: 3.141592653589793 rad + pos: 29.5,53.5 + parent: 1 + type: Transform + - uid: 1063 + components: + - pos: -25.5,33.5 + parent: 1 + type: Transform + - uid: 1143 + components: + - pos: -24.5,35.5 + parent: 1 + type: Transform + - uid: 1144 + components: + - pos: -25.5,35.5 + parent: 1 + type: Transform + - uid: 1199 + components: + - pos: -26.5,16.5 + parent: 1 + type: Transform + - uid: 1200 + components: + - pos: -27.5,16.5 + parent: 1 + type: Transform + - uid: 1201 + components: + - pos: -28.5,16.5 + parent: 1 + type: Transform + - uid: 1202 + components: + - pos: -29.5,16.5 + parent: 1 + type: Transform + - uid: 1203 + components: + - pos: -29.5,22.5 + parent: 1 + type: Transform + - uid: 1204 + components: + - pos: -29.5,22.5 + parent: 1 + type: Transform + - uid: 1205 + components: + - pos: -29.5,21.5 + parent: 1 + type: Transform + - uid: 1206 + components: + - pos: -29.5,20.5 + parent: 1 + type: Transform + - uid: 1207 + components: + - pos: -29.5,19.5 + parent: 1 + type: Transform + - uid: 1208 + components: + - pos: -29.5,18.5 + parent: 1 + type: Transform + - uid: 1209 + components: + - pos: -29.5,17.5 + parent: 1 + type: Transform + - uid: 1210 + components: + - pos: -29.5,24.5 + parent: 1 + type: Transform + - uid: 1211 + components: + - pos: -29.5,25.5 + parent: 1 + type: Transform + - uid: 1212 + components: + - pos: -29.5,26.5 + parent: 1 + type: Transform + - uid: 1213 + components: + - pos: -29.5,27.5 + parent: 1 + type: Transform + - uid: 1214 + components: + - pos: -29.5,28.5 + parent: 1 + type: Transform + - uid: 1215 + components: + - pos: -28.5,24.5 + parent: 1 + type: Transform + - uid: 1216 + components: + - pos: -28.5,28.5 + parent: 1 + type: Transform + - uid: 1217 + components: + - pos: -27.5,28.5 + parent: 1 + type: Transform + - uid: 1218 + components: + - pos: -26.5,28.5 + parent: 1 + type: Transform + - uid: 1219 + components: + - pos: -33.5,17.5 + parent: 1 + type: Transform + - uid: 1220 + components: + - pos: -24.5,28.5 + parent: 1 + type: Transform + - uid: 1221 + components: + - pos: -25.5,28.5 + parent: 1 + type: Transform + - uid: 1222 + components: + - pos: -22.5,28.5 + parent: 1 + type: Transform + - uid: 1223 + components: + - pos: -21.5,28.5 + parent: 1 + type: Transform + - uid: 1225 + components: + - pos: -19.5,28.5 + parent: 1 + type: Transform + - uid: 1228 + components: + - pos: -25.5,34.5 + parent: 1 + type: Transform + - uid: 1234 + components: + - pos: 8.5,12.5 + parent: 1 + type: Transform + - uid: 1235 + components: + - pos: 4.5,8.5 + parent: 1 + type: Transform + - uid: 1243 + components: + - pos: -22.5,30.5 + parent: 1 + type: Transform + - uid: 1244 + components: + - pos: -22.5,29.5 + parent: 1 + type: Transform + - uid: 1245 + components: + - pos: -29.5,35.5 + parent: 1 + type: Transform + - uid: 1246 + components: + - pos: -26.5,35.5 + parent: 1 + type: Transform + - uid: 1247 + components: + - pos: -29.5,32.5 + parent: 1 + type: Transform + - uid: 1248 + components: + - pos: -29.5,31.5 + parent: 1 + type: Transform + - uid: 1249 + components: + - pos: -33.5,18.5 + parent: 1 + type: Transform + - uid: 1250 + components: + - pos: -33.5,19.5 + parent: 1 + type: Transform + - uid: 1251 + components: + - pos: -33.5,20.5 + parent: 1 + type: Transform + - uid: 1252 + components: + - pos: -33.5,21.5 + parent: 1 + type: Transform + - uid: 1253 + components: + - pos: -33.5,22.5 + parent: 1 + type: Transform + - uid: 1254 + components: + - pos: -33.5,24.5 + parent: 1 + type: Transform + - uid: 1255 + components: + - pos: -33.5,25.5 + parent: 1 + type: Transform + - uid: 1256 + components: + - pos: -33.5,26.5 + parent: 1 + type: Transform + - uid: 1257 + components: + - pos: -33.5,27.5 + parent: 1 + type: Transform + - uid: 1258 + components: + - pos: -33.5,28.5 + parent: 1 + type: Transform + - uid: 1259 + components: + - pos: -33.5,29.5 + parent: 1 + type: Transform + - uid: 1260 + components: + - pos: -33.5,30.5 + parent: 1 + type: Transform + - uid: 1261 + components: + - pos: -33.5,31.5 + parent: 1 + type: Transform + - uid: 1262 + components: + - pos: -33.5,32.5 + parent: 1 + type: Transform + - uid: 1263 + components: + - pos: -33.5,33.5 + parent: 1 + type: Transform + - uid: 1264 + components: + - pos: -33.5,34.5 + parent: 1 + type: Transform + - uid: 1265 + components: + - pos: -33.5,35.5 + parent: 1 + type: Transform + - uid: 1266 + components: + - pos: -34.5,35.5 + parent: 1 + type: Transform + - uid: 1267 + components: + - pos: -35.5,35.5 + parent: 1 + type: Transform + - uid: 1300 + components: + - pos: -25.5,30.5 + parent: 1 + type: Transform + - uid: 1302 + components: + - pos: -25.5,29.5 + parent: 1 + type: Transform + - uid: 1304 + components: + - pos: -25.5,31.5 + parent: 1 + type: Transform + - uid: 1305 + components: + - pos: -25.5,32.5 + parent: 1 + type: Transform + - uid: 1359 + components: + - pos: -22.5,39.5 + parent: 1 + type: Transform + - uid: 1451 + components: + - pos: -23.5,39.5 + parent: 1 + type: Transform + - uid: 1524 + components: + - pos: -36.5,47.5 + parent: 1 + type: Transform + - uid: 1568 + components: + - pos: -37.5,47.5 + parent: 1 + type: Transform + - uid: 1569 + components: + - pos: -38.5,47.5 + parent: 1 + type: Transform + - uid: 1582 + components: + - pos: -38.5,44.5 + parent: 1 + type: Transform + - uid: 1583 + components: + - pos: -37.5,44.5 + parent: 1 + type: Transform + - uid: 1584 + components: + - pos: -36.5,44.5 + parent: 1 + type: Transform + - uid: 1585 + components: + - pos: -36.5,49.5 + parent: 1 + type: Transform + - uid: 1592 + components: + - pos: -23.5,50.5 + parent: 1 + type: Transform + - uid: 1593 + components: + - pos: -23.5,45.5 + parent: 1 + type: Transform + - uid: 1594 + components: + - pos: -23.5,51.5 + parent: 1 + type: Transform + - uid: 1595 + components: + - pos: -23.5,52.5 + parent: 1 + type: Transform + - uid: 1596 + components: + - pos: -26.5,52.5 + parent: 1 + type: Transform + - uid: 1597 + components: + - pos: -26.5,53.5 + parent: 1 + type: Transform + - uid: 1598 + components: + - pos: -25.5,53.5 + parent: 1 + type: Transform + - uid: 1599 + components: + - pos: -23.5,53.5 + parent: 1 + type: Transform + - uid: 1706 + components: + - pos: -26.5,54.5 + parent: 1 + type: Transform + - uid: 1707 + components: + - pos: -26.5,55.5 + parent: 1 + type: Transform + - uid: 1708 + components: + - pos: -26.5,56.5 + parent: 1 + type: Transform + - uid: 1709 + components: + - pos: -26.5,58.5 + parent: 1 + type: Transform + - uid: 1712 + components: + - pos: -47.5,45.5 + parent: 1 + type: Transform + - uid: 1713 + components: + - pos: -46.5,45.5 + parent: 1 + type: Transform + - uid: 1714 + components: + - pos: -45.5,45.5 + parent: 1 + type: Transform + - uid: 1730 + components: + - pos: -45.5,46.5 + parent: 1 + type: Transform + - uid: 1731 + components: + - pos: -36.5,16.5 + parent: 1 + type: Transform + - uid: 1732 + components: + - pos: -36.5,17.5 + parent: 1 + type: Transform + - uid: 1733 + components: + - pos: -36.5,18.5 + parent: 1 + type: Transform + - uid: 1737 + components: + - pos: -39.5,35.5 + parent: 1 + type: Transform + - uid: 1738 + components: + - pos: -39.5,31.5 + parent: 1 + type: Transform + - uid: 1739 + components: + - pos: -38.5,31.5 + parent: 1 + type: Transform + - uid: 1740 + components: + - pos: -37.5,31.5 + parent: 1 + type: Transform + - uid: 1741 + components: + - pos: -36.5,31.5 + parent: 1 + type: Transform + - uid: 1742 + components: + - pos: -36.5,32.5 + parent: 1 + type: Transform + - uid: 1743 + components: + - pos: -36.5,35.5 + parent: 1 + type: Transform + - uid: 1744 + components: + - pos: -37.5,35.5 + parent: 1 + type: Transform + - uid: 1745 + components: + - pos: -37.5,34.5 + parent: 1 + type: Transform + - uid: 1746 + components: + - pos: -36.5,30.5 + parent: 1 + type: Transform + - uid: 1747 + components: + - pos: -36.5,29.5 + parent: 1 + type: Transform + - uid: 1748 + components: + - pos: -35.5,29.5 + parent: 1 + type: Transform + - uid: 1749 + components: + - pos: -35.5,28.5 + parent: 1 + type: Transform + - uid: 1750 + components: + - pos: -35.5,27.5 + parent: 1 + type: Transform + - uid: 1751 + components: + - pos: -35.5,26.5 + parent: 1 + type: Transform + - uid: 1752 + components: + - pos: -35.5,25.5 + parent: 1 + type: Transform + - uid: 1753 + components: + - pos: -35.5,24.5 + parent: 1 + type: Transform + - uid: 1754 + components: + - pos: -35.5,23.5 + parent: 1 + type: Transform + - uid: 1755 + components: + - pos: -35.5,22.5 + parent: 1 + type: Transform + - uid: 1756 + components: + - pos: -36.5,22.5 + parent: 1 + type: Transform + - uid: 1757 + components: + - pos: -36.5,19.5 + parent: 1 + type: Transform + - uid: 1758 + components: + - pos: -36.5,20.5 + parent: 1 + type: Transform + - uid: 1759 + components: + - pos: -38.5,16.5 + parent: 1 + type: Transform + - uid: 1787 + components: + - pos: -20.5,58.5 + parent: 1 + type: Transform + - uid: 1851 + components: + - pos: -22.5,53.5 + parent: 1 + type: Transform + - uid: 1852 + components: + - pos: -23.5,54.5 + parent: 1 + type: Transform + - uid: 1854 + components: + - pos: -23.5,56.5 + parent: 1 + type: Transform + - uid: 1855 + components: + - pos: -20.5,55.5 + parent: 1 + type: Transform + - uid: 1856 + components: + - pos: -20.5,56.5 + parent: 1 + type: Transform + - uid: 1878 + components: + - pos: 1.5,64.5 + parent: 1 + type: Transform + - uid: 1879 + components: + - pos: 1.5,65.5 + parent: 1 + type: Transform + - uid: 1880 + components: + - pos: 9.5,62.5 + parent: 1 + type: Transform + - uid: 1882 + components: + - pos: 11.5,65.5 + parent: 1 + type: Transform + - uid: 1883 + components: + - pos: 10.5,65.5 + parent: 1 + type: Transform + - uid: 1884 + components: + - pos: 9.5,65.5 + parent: 1 + type: Transform + - uid: 1885 + components: + - pos: 12.5,65.5 + parent: 1 + type: Transform + - uid: 1886 + components: + - pos: 8.5,65.5 + parent: 1 + type: Transform + - uid: 1887 + components: + - pos: 6.5,65.5 + parent: 1 + type: Transform + - uid: 1888 + components: + - pos: 2.5,65.5 + parent: 1 + type: Transform + - uid: 1889 + components: + - pos: 5.5,65.5 + parent: 1 + type: Transform + - uid: 1890 + components: + - pos: 6.5,64.5 + parent: 1 + type: Transform + - uid: 1891 + components: + - pos: 6.5,63.5 + parent: 1 + type: Transform + - uid: 1892 + components: + - pos: 6.5,62.5 + parent: 1 + type: Transform + - uid: 1893 + components: + - pos: 6.5,61.5 + parent: 1 + type: Transform + - uid: 1894 + components: + - pos: 8.5,62.5 + parent: 1 + type: Transform + - uid: 1895 + components: + - pos: 6.5,59.5 + parent: 1 + type: Transform + - uid: 1896 + components: + - pos: 6.5,58.5 + parent: 1 + type: Transform + - uid: 1897 + components: + - pos: 4.5,58.5 + parent: 1 + type: Transform + - uid: 1898 + components: + - pos: 5.5,58.5 + parent: 1 + type: Transform + - uid: 1899 + components: + - pos: 7.5,62.5 + parent: 1 + type: Transform + - uid: 1900 + components: + - pos: 10.5,62.5 + parent: 1 + type: Transform + - uid: 1901 + components: + - pos: 11.5,62.5 + parent: 1 + type: Transform + - uid: 1902 + components: + - pos: 12.5,62.5 + parent: 1 + type: Transform + - uid: 1903 + components: + - pos: 13.5,62.5 + parent: 1 + type: Transform + - uid: 1904 + components: + - pos: 14.5,62.5 + parent: 1 + type: Transform + - uid: 1905 + components: + - pos: 15.5,62.5 + parent: 1 + type: Transform + - uid: 1906 + components: + - pos: 15.5,61.5 + parent: 1 + type: Transform + - uid: 1907 + components: + - pos: 15.5,60.5 + parent: 1 + type: Transform + - uid: 1910 + components: + - pos: 15.5,57.5 + parent: 1 + type: Transform + - uid: 1911 + components: + - pos: 15.5,56.5 + parent: 1 + type: Transform + - uid: 1912 + components: + - pos: 15.5,55.5 + parent: 1 + type: Transform + - uid: 1913 + components: + - pos: 15.5,54.5 + parent: 1 + type: Transform + - uid: 1914 + components: + - pos: 15.5,53.5 + parent: 1 + type: Transform + - uid: 1915 + components: + - pos: 15.5,52.5 + parent: 1 + type: Transform + - uid: 1921 + components: + - pos: 9.5,51.5 + parent: 1 + type: Transform + - uid: 1922 + components: + - pos: 11.5,51.5 + parent: 1 + type: Transform + - uid: 1923 + components: + - pos: 12.5,51.5 + parent: 1 + type: Transform + - uid: 1924 + components: + - pos: 13.5,51.5 + parent: 1 + type: Transform + - uid: 1925 + components: + - pos: 14.5,51.5 + parent: 1 + type: Transform + - uid: 1926 + components: + - pos: 15.5,51.5 + parent: 1 + type: Transform + - uid: 2214 + components: + - pos: -17.5,-21.5 + parent: 1 + type: Transform + - uid: 2238 + components: + - pos: 20.5,5.5 + parent: 1 + type: Transform + - uid: 2366 + components: + - pos: 36.5,-12.5 + parent: 1 + type: Transform + - uid: 2381 + components: + - pos: -29.5,-13.5 + parent: 1 + type: Transform + - uid: 2461 + components: + - pos: 20.5,4.5 + parent: 1 + type: Transform + - uid: 2462 + components: + - pos: 20.5,3.5 + parent: 1 + type: Transform + - uid: 2463 + components: + - pos: 20.5,2.5 + parent: 1 + type: Transform + - uid: 2464 + components: + - pos: 20.5,1.5 + parent: 1 + type: Transform + - uid: 2465 + components: + - pos: 19.5,1.5 + parent: 1 + type: Transform + - uid: 2466 + components: + - pos: 17.5,1.5 + parent: 1 + type: Transform + - uid: 2467 + components: + - pos: 15.5,-5.5 + parent: 1 + type: Transform + - uid: 2468 + components: + - pos: 15.5,-6.5 + parent: 1 + type: Transform + - uid: 2469 + components: + - pos: 16.5,-6.5 + parent: 1 + type: Transform + - uid: 2470 + components: + - pos: 17.5,-6.5 + parent: 1 + type: Transform + - uid: 2471 + components: + - pos: 18.5,-6.5 + parent: 1 + type: Transform + - uid: 2475 + components: + - pos: 22.5,-6.5 + parent: 1 + type: Transform + - uid: 2476 + components: + - pos: 23.5,-6.5 + parent: 1 + type: Transform + - uid: 2477 + components: + - pos: 24.5,-6.5 + parent: 1 + type: Transform + - uid: 2480 + components: + - pos: 15.5,-4.5 + parent: 1 + type: Transform + - uid: 2481 + components: + - pos: 15.5,-3.5 + parent: 1 + type: Transform + - uid: 2482 + components: + - pos: 15.5,-2.5 + parent: 1 + type: Transform + - uid: 2483 + components: + - pos: 16.5,-2.5 + parent: 1 + type: Transform + - uid: 2484 + components: + - pos: 17.5,-2.5 + parent: 1 + type: Transform + - uid: 2486 + components: + - pos: 19.5,-2.5 + parent: 1 + type: Transform + - uid: 2487 + components: + - pos: 19.5,-1.5 + parent: 1 + type: Transform + - uid: 2492 + components: + - pos: 23.5,-0.5 + parent: 1 + type: Transform + - uid: 2493 + components: + - pos: 23.5,-2.5 + parent: 1 + type: Transform + - uid: 2494 + components: + - pos: 23.5,-1.5 + parent: 1 + type: Transform + - uid: 2495 + components: + - pos: 23.5,-3.5 + parent: 1 + type: Transform + - uid: 2496 + components: + - pos: 23.5,-4.5 + parent: 1 + type: Transform + - uid: 2497 + components: + - pos: 23.5,-5.5 + parent: 1 + type: Transform + - uid: 2510 + components: + - pos: 20.5,12.5 + parent: 1 + type: Transform + - uid: 2511 + components: + - pos: 21.5,12.5 + parent: 1 + type: Transform + - uid: 2513 + components: + - pos: 28.5,-6.5 + parent: 1 + type: Transform + - uid: 2515 + components: + - pos: 28.5,-4.5 + parent: 1 + type: Transform + - uid: 2517 + components: + - pos: 28.5,-2.5 + parent: 1 + type: Transform + - uid: 2519 + components: + - pos: 28.5,-0.5 + parent: 1 + type: Transform + - uid: 2521 + components: + - pos: 28.5,1.5 + parent: 1 + type: Transform + - uid: 2689 + components: + - pos: -28.5,-2.5 + parent: 1 + type: Transform + - uid: 2829 + components: + - pos: 16.5,57.5 + parent: 1 + type: Transform + - uid: 2830 + components: + - pos: 17.5,57.5 + parent: 1 + type: Transform + - uid: 2835 + components: + - pos: 18.5,57.5 + parent: 1 + type: Transform + - uid: 2871 + components: + - pos: 33.5,-16.5 + parent: 1 + type: Transform + - uid: 2874 + components: + - pos: 11.5,12.5 + parent: 1 + type: Transform + - uid: 2883 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,2.5 + parent: 1 + type: Transform + - uid: 2893 + components: + - pos: 25.5,7.5 + parent: 1 + type: Transform + - uid: 2894 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,8.5 + parent: 1 + type: Transform + - uid: 2895 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,8.5 + parent: 1 + type: Transform + - uid: 2897 + components: + - pos: 27.5,1.5 + parent: 1 + type: Transform + - uid: 2915 + components: + - pos: 32.5,-19.5 + parent: 1 + type: Transform + - uid: 2917 + components: + - pos: 32.5,-18.5 + parent: 1 + type: Transform + - uid: 2924 + components: + - pos: 29.5,-23.5 + parent: 1 + type: Transform + - uid: 2931 + components: + - pos: 28.5,-21.5 + parent: 1 + type: Transform + - uid: 2932 + components: + - pos: 25.5,-21.5 + parent: 1 + type: Transform + - uid: 3074 + components: + - pos: 35.5,-17.5 + parent: 1 + type: Transform + - uid: 3075 + components: + - pos: 35.5,-18.5 + parent: 1 + type: Transform + - uid: 3076 + components: + - pos: 34.5,-16.5 + parent: 1 + type: Transform + - uid: 3102 + components: + - pos: 35.5,-12.5 + parent: 1 + type: Transform + - uid: 3103 + components: + - pos: 35.5,-16.5 + parent: 1 + type: Transform + - uid: 3104 + components: + - pos: 32.5,-16.5 + parent: 1 + type: Transform + - uid: 3105 + components: + - pos: 32.5,-17.5 + parent: 1 + type: Transform + - uid: 3133 + components: + - pos: 38.5,-12.5 + parent: 1 + type: Transform + - uid: 3134 + components: + - pos: 32.5,-21.5 + parent: 1 + type: Transform + - uid: 3135 + components: + - pos: 33.5,-21.5 + parent: 1 + type: Transform + - uid: 3141 + components: + - pos: 29.5,-22.5 + parent: 1 + type: Transform + - uid: 3142 + components: + - pos: 25.5,-19.5 + parent: 1 + type: Transform + - uid: 3156 + components: + - pos: 29.5,-21.5 + parent: 1 + type: Transform + - uid: 3165 + components: + - pos: -29.5,-12.5 + parent: 1 + type: Transform + - uid: 3193 + components: + - pos: 37.5,51.5 + parent: 1 + type: Transform + - uid: 3195 + components: + - pos: 33.5,39.5 + parent: 1 + type: Transform + - uid: 3196 + components: + - pos: 28.5,39.5 + parent: 1 + type: Transform + - uid: 3197 + components: + - pos: 28.5,40.5 + parent: 1 + type: Transform + - uid: 3198 + components: + - pos: 33.5,40.5 + parent: 1 + type: Transform + - uid: 3199 + components: + - pos: 39.5,39.5 + parent: 1 + type: Transform + - uid: 3200 + components: + - pos: 38.5,39.5 + parent: 1 + type: Transform + - uid: 3201 + components: + - pos: 37.5,39.5 + parent: 1 + type: Transform + - uid: 3202 + components: + - pos: 36.5,39.5 + parent: 1 + type: Transform + - uid: 3203 + components: + - pos: 35.5,39.5 + parent: 1 + type: Transform + - uid: 3204 + components: + - pos: 37.5,41.5 + parent: 1 + type: Transform + - uid: 3205 + components: + - pos: 37.5,42.5 + parent: 1 + type: Transform + - uid: 3207 + components: + - pos: 37.5,44.5 + parent: 1 + type: Transform + - uid: 3208 + components: + - pos: 37.5,45.5 + parent: 1 + type: Transform + - uid: 3209 + components: + - pos: 37.5,46.5 + parent: 1 + type: Transform + - uid: 3210 + components: + - pos: 37.5,47.5 + parent: 1 + type: Transform + - uid: 3211 + components: + - pos: 33.5,41.5 + parent: 1 + type: Transform + - uid: 3212 + components: + - pos: 34.5,42.5 + parent: 1 + type: Transform + - uid: 3213 + components: + - pos: 33.5,42.5 + parent: 1 + type: Transform + - uid: 3214 + components: + - pos: 35.5,42.5 + parent: 1 + type: Transform + - uid: 3215 + components: + - pos: 35.5,43.5 + parent: 1 + type: Transform + - uid: 3216 + components: + - pos: 35.5,44.5 + parent: 1 + type: Transform + - uid: 3217 + components: + - pos: 35.5,45.5 + parent: 1 + type: Transform + - uid: 3218 + components: + - pos: 35.5,46.5 + parent: 1 + type: Transform + - uid: 3219 + components: + - pos: 35.5,47.5 + parent: 1 + type: Transform + - uid: 3220 + components: + - pos: 35.5,48.5 + parent: 1 + type: Transform + - uid: 3221 + components: + - pos: 35.5,49.5 + parent: 1 + type: Transform + - uid: 3222 + components: + - pos: 35.5,50.5 + parent: 1 + type: Transform + - uid: 3223 + components: + - pos: 34.5,50.5 + parent: 1 + type: Transform + - uid: 3224 + components: + - pos: 33.5,50.5 + parent: 1 + type: Transform + - uid: 3225 + components: + - pos: 32.5,50.5 + parent: 1 + type: Transform + - uid: 3226 + components: + - pos: 29.5,50.5 + parent: 1 + type: Transform + - uid: 3227 + components: + - pos: 28.5,50.5 + parent: 1 + type: Transform + - uid: 3229 + components: + - rot: 3.141592653589793 rad + pos: 26.5,49.5 + parent: 1 + type: Transform + - uid: 3233 + components: + - rot: 3.141592653589793 rad + pos: 27.5,39.5 + parent: 1 + type: Transform + - uid: 3234 + components: + - rot: 3.141592653589793 rad + pos: 23.5,46.5 + parent: 1 + type: Transform + - uid: 3235 + components: + - pos: 26.5,44.5 + parent: 1 + type: Transform + - uid: 3236 + components: + - pos: 26.5,43.5 + parent: 1 + type: Transform + - uid: 3237 + components: + - pos: 26.5,42.5 + parent: 1 + type: Transform + - uid: 3238 + components: + - pos: 27.5,42.5 + parent: 1 + type: Transform + - uid: 3239 + components: + - pos: 28.5,42.5 + parent: 1 + type: Transform + - uid: 3243 + components: + - rot: 3.141592653589793 rad + pos: 24.5,46.5 + parent: 1 + type: Transform + - uid: 3244 + components: + - rot: 3.141592653589793 rad + pos: 25.5,46.5 + parent: 1 + type: Transform + - uid: 3245 + components: + - pos: 23.5,47.5 + parent: 1 + type: Transform + - uid: 3246 + components: + - pos: 23.5,48.5 + parent: 1 + type: Transform + - uid: 3247 + components: + - rot: 3.141592653589793 rad + pos: 23.5,49.5 + parent: 1 + type: Transform + - uid: 3248 + components: + - pos: 23.5,50.5 + parent: 1 + type: Transform + - uid: 3250 + components: + - rot: 3.141592653589793 rad + pos: 27.5,53.5 + parent: 1 + type: Transform + - uid: 3251 + components: + - pos: 29.5,56.5 + parent: 1 + type: Transform + - uid: 3252 + components: + - pos: 29.5,55.5 + parent: 1 + type: Transform + - uid: 3253 + components: + - pos: 29.5,54.5 + parent: 1 + type: Transform + - uid: 3257 + components: + - pos: 34.5,53.5 + parent: 1 + type: Transform + - uid: 3258 + components: + - pos: 33.5,53.5 + parent: 1 + type: Transform + - uid: 3259 + components: + - pos: 31.5,53.5 + parent: 1 + type: Transform + - uid: 3260 + components: + - pos: 30.5,53.5 + parent: 1 + type: Transform + - uid: 3261 + components: + - rot: 3.141592653589793 rad + pos: 28.5,51.5 + parent: 1 + type: Transform + - uid: 3265 + components: + - pos: 27.5,54.5 + parent: 1 + type: Transform + - uid: 3266 + components: + - pos: 23.5,52.5 + parent: 1 + type: Transform + - uid: 3267 + components: + - pos: 23.5,53.5 + parent: 1 + type: Transform + - uid: 3268 + components: + - pos: 23.5,54.5 + parent: 1 + type: Transform + - uid: 3269 + components: + - pos: 23.5,55.5 + parent: 1 + type: Transform + - uid: 3270 + components: + - pos: 24.5,55.5 + parent: 1 + type: Transform + - uid: 3271 + components: + - pos: 25.5,55.5 + parent: 1 + type: Transform + - uid: 3272 + components: + - pos: 26.5,55.5 + parent: 1 + type: Transform + - uid: 3273 + components: + - pos: 27.5,55.5 + parent: 1 + type: Transform + - uid: 3285 + components: + - rot: 3.141592653589793 rad + pos: 27.5,52.5 + parent: 1 + type: Transform + - uid: 3286 + components: + - rot: 3.141592653589793 rad + pos: 28.5,41.5 + parent: 1 + type: Transform + - uid: 3288 + components: + - rot: 3.141592653589793 rad + pos: 26.5,39.5 + parent: 1 + type: Transform + - uid: 3289 + components: + - rot: 3.141592653589793 rad + pos: 24.5,39.5 + parent: 1 + type: Transform + - uid: 3290 + components: + - rot: 3.141592653589793 rad + pos: 24.5,40.5 + parent: 1 + type: Transform + - uid: 3291 + components: + - rot: 3.141592653589793 rad + pos: 24.5,41.5 + parent: 1 + type: Transform + - uid: 3292 + components: + - rot: 3.141592653589793 rad + pos: 24.5,42.5 + parent: 1 + type: Transform + - uid: 3293 + components: + - rot: 3.141592653589793 rad + pos: 24.5,43.5 + parent: 1 + type: Transform + - uid: 3294 + components: + - rot: 3.141592653589793 rad + pos: 23.5,44.5 + parent: 1 + type: Transform + - uid: 3295 + components: + - rot: 3.141592653589793 rad + pos: 24.5,44.5 + parent: 1 + type: Transform + - uid: 3296 + components: + - rot: 3.141592653589793 rad + pos: 22.5,44.5 + parent: 1 + type: Transform + - uid: 3297 + components: + - rot: 3.141592653589793 rad + pos: 21.5,44.5 + parent: 1 + type: Transform + - uid: 3298 + components: + - rot: 3.141592653589793 rad + pos: 20.5,44.5 + parent: 1 + type: Transform + - uid: 3299 + components: + - rot: 3.141592653589793 rad + pos: 19.5,44.5 + parent: 1 + type: Transform + - uid: 3300 + components: + - rot: 3.141592653589793 rad + pos: 18.5,44.5 + parent: 1 + type: Transform + - uid: 3301 + components: + - rot: 3.141592653589793 rad + pos: 17.5,44.5 + parent: 1 + type: Transform + - uid: 3302 + components: + - rot: 3.141592653589793 rad + pos: 16.5,44.5 + parent: 1 + type: Transform + - uid: 3303 + components: + - rot: 3.141592653589793 rad + pos: 16.5,43.5 + parent: 1 + type: Transform + - uid: 3304 + components: + - rot: 3.141592653589793 rad + pos: 16.5,42.5 + parent: 1 + type: Transform + - uid: 3305 + components: + - rot: 3.141592653589793 rad + pos: 16.5,41.5 + parent: 1 + type: Transform + - uid: 3306 + components: + - rot: 3.141592653589793 rad + pos: 16.5,40.5 + parent: 1 + type: Transform + - uid: 3307 + components: + - rot: 3.141592653589793 rad + pos: 16.5,39.5 + parent: 1 + type: Transform + - uid: 3308 + components: + - rot: 3.141592653589793 rad + pos: 13.5,39.5 + parent: 1 + type: Transform + - uid: 3309 + components: + - rot: 3.141592653589793 rad + pos: 13.5,40.5 + parent: 1 + type: Transform + - uid: 3310 + components: + - rot: 3.141592653589793 rad + pos: 12.5,39.5 + parent: 1 + type: Transform + - uid: 3311 + components: + - rot: 3.141592653589793 rad + pos: 11.5,39.5 + parent: 1 + type: Transform + - uid: 3312 + components: + - rot: 3.141592653589793 rad + pos: 10.5,39.5 + parent: 1 + type: Transform + - uid: 3313 + components: + - rot: 3.141592653589793 rad + pos: 9.5,39.5 + parent: 1 + type: Transform + - uid: 3314 + components: + - rot: 3.141592653589793 rad + pos: 10.5,40.5 + parent: 1 + type: Transform + - uid: 3315 + components: + - rot: 3.141592653589793 rad + pos: 10.5,41.5 + parent: 1 + type: Transform + - uid: 3316 + components: + - rot: 3.141592653589793 rad + pos: 7.5,39.5 + parent: 1 + type: Transform + - uid: 3317 + components: + - rot: 3.141592653589793 rad + pos: 6.5,39.5 + parent: 1 + type: Transform + - uid: 3318 + components: + - rot: 3.141592653589793 rad + pos: 5.5,39.5 + parent: 1 + type: Transform + - uid: 3362 + components: + - rot: 3.141592653589793 rad + pos: 4.5,39.5 + parent: 1 + type: Transform + - uid: 3363 + components: + - rot: 3.141592653589793 rad + pos: 3.5,39.5 + parent: 1 + type: Transform + - uid: 3364 + components: + - rot: 3.141592653589793 rad + pos: 2.5,39.5 + parent: 1 + type: Transform + - uid: 3365 + components: + - rot: 3.141592653589793 rad + pos: 1.5,39.5 + parent: 1 + type: Transform + - uid: 3366 + components: + - rot: 3.141592653589793 rad + pos: 1.5,40.5 + parent: 1 + type: Transform + - uid: 3368 + components: + - rot: 3.141592653589793 rad + pos: 8.5,39.5 + parent: 1 + type: Transform + - uid: 3369 + components: + - rot: 3.141592653589793 rad + pos: 10.5,42.5 + parent: 1 + type: Transform + - uid: 3370 + components: + - rot: 3.141592653589793 rad + pos: 13.5,43.5 + parent: 1 + type: Transform + - uid: 3371 + components: + - rot: 3.141592653589793 rad + pos: 12.5,43.5 + parent: 1 + type: Transform + - uid: 3372 + components: + - rot: 3.141592653589793 rad + pos: 11.5,43.5 + parent: 1 + type: Transform + - uid: 3373 + components: + - rot: 3.141592653589793 rad + pos: 10.5,43.5 + parent: 1 + type: Transform + - uid: 3374 + components: + - rot: 3.141592653589793 rad + pos: 10.5,44.5 + parent: 1 + type: Transform + - uid: 3375 + components: + - rot: 3.141592653589793 rad + pos: 10.5,45.5 + parent: 1 + type: Transform + - uid: 3376 + components: + - rot: 3.141592653589793 rad + pos: 10.5,46.5 + parent: 1 + type: Transform + - uid: 3377 + components: + - rot: 3.141592653589793 rad + pos: 10.5,47.5 + parent: 1 + type: Transform + - uid: 3378 + components: + - rot: 3.141592653589793 rad + pos: 11.5,47.5 + parent: 1 + type: Transform + - uid: 3379 + components: + - rot: 3.141592653589793 rad + pos: 12.5,47.5 + parent: 1 + type: Transform + - uid: 3380 + components: + - rot: 3.141592653589793 rad + pos: 13.5,47.5 + parent: 1 + type: Transform + - uid: 3381 + components: + - rot: 3.141592653589793 rad + pos: 13.5,46.5 + parent: 1 + type: Transform + - uid: 3382 + components: + - rot: 3.141592653589793 rad + pos: 16.5,47.5 + parent: 1 + type: Transform + - uid: 3383 + components: + - rot: 3.141592653589793 rad + pos: 16.5,48.5 + parent: 1 + type: Transform + - uid: 3384 + components: + - rot: 3.141592653589793 rad + pos: 17.5,48.5 + parent: 1 + type: Transform + - uid: 3385 + components: + - rot: 3.141592653589793 rad + pos: 18.5,48.5 + parent: 1 + type: Transform + - uid: 3386 + components: + - rot: 3.141592653589793 rad + pos: 13.5,48.5 + parent: 1 + type: Transform + - uid: 3387 + components: + - rot: 3.141592653589793 rad + pos: 13.5,49.5 + parent: 1 + type: Transform + - uid: 3388 + components: + - rot: 3.141592653589793 rad + pos: 17.5,51.5 + parent: 1 + type: Transform + - uid: 3389 + components: + - rot: 3.141592653589793 rad + pos: 20.5,51.5 + parent: 1 + type: Transform + - uid: 3390 + components: + - rot: 3.141592653589793 rad + pos: 19.5,51.5 + parent: 1 + type: Transform + - uid: 3391 + components: + - rot: 3.141592653589793 rad + pos: 18.5,51.5 + parent: 1 + type: Transform + - uid: 3392 + components: + - rot: 3.141592653589793 rad + pos: 27.5,51.5 + parent: 1 + type: Transform + - uid: 3394 + components: + - rot: 3.141592653589793 rad + pos: 21.5,51.5 + parent: 1 + type: Transform + - uid: 3395 + components: + - rot: 3.141592653589793 rad + pos: 21.5,52.5 + parent: 1 + type: Transform + - uid: 3396 + components: + - rot: 3.141592653589793 rad + pos: 21.5,53.5 + parent: 1 + type: Transform + - uid: 3397 + components: + - rot: 3.141592653589793 rad + pos: 21.5,54.5 + parent: 1 + type: Transform + - uid: 3398 + components: + - rot: 3.141592653589793 rad + pos: 21.5,55.5 + parent: 1 + type: Transform + - uid: 3399 + components: + - rot: 3.141592653589793 rad + pos: 20.5,55.5 + parent: 1 + type: Transform + - uid: 3400 + components: + - rot: 3.141592653589793 rad + pos: 19.5,55.5 + parent: 1 + type: Transform + - uid: 3401 + components: + - rot: 3.141592653589793 rad + pos: 18.5,55.5 + parent: 1 + type: Transform + - uid: 3402 + components: + - rot: 3.141592653589793 rad + pos: 17.5,55.5 + parent: 1 + type: Transform + - uid: 3403 + components: + - rot: 3.141592653589793 rad + pos: 17.5,54.5 + parent: 1 + type: Transform + - uid: 3404 + components: + - rot: 3.141592653589793 rad + pos: 17.5,53.5 + parent: 1 + type: Transform + - uid: 3421 + components: + - pos: -8.5,-6.5 + parent: 1 + type: Transform + - uid: 3422 + components: + - pos: -7.5,-6.5 + parent: 1 + type: Transform + - uid: 3423 + components: + - pos: -6.5,-6.5 + parent: 1 + type: Transform + - uid: 3521 + components: + - rot: 3.141592653589793 rad + pos: 19.5,48.5 + parent: 1 + type: Transform + - uid: 3522 + components: + - rot: 3.141592653589793 rad + pos: 19.5,47.5 + parent: 1 + type: Transform + - uid: 3523 + components: + - rot: 3.141592653589793 rad + pos: 19.5,46.5 + parent: 1 + type: Transform + - uid: 3530 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,48.5 + parent: 1 + type: Transform + - uid: 3562 + components: + - pos: 37.5,-10.5 + parent: 1 + type: Transform + - uid: 3563 + components: + - pos: 38.5,-10.5 + parent: 1 + type: Transform + - uid: 3564 + components: + - pos: 36.5,-10.5 + parent: 1 + type: Transform + - uid: 3565 + components: + - pos: 35.5,-10.5 + parent: 1 + type: Transform + - uid: 3567 + components: + - pos: 33.5,-10.5 + parent: 1 + type: Transform + - uid: 3568 + components: + - pos: 32.5,-10.5 + parent: 1 + type: Transform + - uid: 3594 + components: + - pos: 35.5,-13.5 + parent: 1 + type: Transform + - uid: 3595 + components: + - pos: 34.5,-13.5 + parent: 1 + type: Transform + - uid: 3596 + components: + - pos: 33.5,-13.5 + parent: 1 + type: Transform + - uid: 3599 + components: + - pos: 33.5,-14.5 + parent: 1 + type: Transform + - uid: 3600 + components: + - pos: 6.5,16.5 + parent: 1 + type: Transform + - uid: 3601 + components: + - pos: 10.5,16.5 + parent: 1 + type: Transform + - uid: 3602 + components: + - pos: 11.5,16.5 + parent: 1 + type: Transform + - uid: 3603 + components: + - pos: 12.5,16.5 + parent: 1 + type: Transform + - uid: 3635 + components: + - pos: 16.5,16.5 + parent: 1 + type: Transform + - uid: 3636 + components: + - pos: 17.5,16.5 + parent: 1 + type: Transform + - uid: 3637 + components: + - pos: 17.5,17.5 + parent: 1 + type: Transform + - uid: 3639 + components: + - pos: 17.5,18.5 + parent: 1 + type: Transform + - uid: 3640 + components: + - pos: 17.5,19.5 + parent: 1 + type: Transform + - uid: 3641 + components: + - pos: 17.5,20.5 + parent: 1 + type: Transform + - uid: 3642 + components: + - pos: 17.5,21.5 + parent: 1 + type: Transform + - uid: 3643 + components: + - pos: 16.5,21.5 + parent: 1 + type: Transform + - uid: 3644 + components: + - pos: 14.5,21.5 + parent: 1 + type: Transform + - uid: 3661 + components: + - rot: 3.141592653589793 rad + pos: 17.5,24.5 + parent: 1 + type: Transform + - uid: 3701 + components: + - pos: 20.5,16.5 + parent: 1 + type: Transform + - uid: 3702 + components: + - pos: 18.5,16.5 + parent: 1 + type: Transform + - uid: 3717 + components: + - rot: 3.141592653589793 rad + pos: 17.5,23.5 + parent: 1 + type: Transform + - uid: 3727 + components: + - rot: 3.141592653589793 rad + pos: 16.5,23.5 + parent: 1 + type: Transform + - uid: 3728 + components: + - rot: 3.141592653589793 rad + pos: 15.5,23.5 + parent: 1 + type: Transform + - uid: 3812 + components: + - pos: 25.5,-20.5 + parent: 1 + type: Transform + - uid: 3813 + components: + - pos: 27.5,-21.5 + parent: 1 + type: Transform + - uid: 3814 + components: + - pos: 26.5,-21.5 + parent: 1 + type: Transform + - uid: 3818 + components: + - pos: 25.5,-18.5 + parent: 1 + type: Transform + - uid: 3819 + components: + - pos: 25.5,-17.5 + parent: 1 + type: Transform + - uid: 3820 + components: + - pos: 26.5,-17.5 + parent: 1 + type: Transform + - uid: 3821 + components: + - pos: 27.5,-17.5 + parent: 1 + type: Transform + - uid: 3822 + components: + - pos: 28.5,-17.5 + parent: 1 + type: Transform + - uid: 3823 + components: + - pos: 29.5,-17.5 + parent: 1 + type: Transform + - uid: 3824 + components: + - pos: 29.5,-18.5 + parent: 1 + type: Transform + - uid: 3825 + components: + - pos: 19.5,-31.5 + parent: 1 + type: Transform + - uid: 3826 + components: + - pos: 18.5,-31.5 + parent: 1 + type: Transform + - uid: 3827 + components: + - pos: 17.5,-31.5 + parent: 1 + type: Transform + - uid: 3921 + components: + - pos: -33.5,-12.5 + parent: 1 + type: Transform + - uid: 3922 + components: + - pos: -33.5,-11.5 + parent: 1 + type: Transform + - uid: 3923 + components: + - pos: -28.5,-15.5 + parent: 1 + type: Transform + - uid: 3924 + components: + - pos: -29.5,-11.5 + parent: 1 + type: Transform + - uid: 3925 + components: + - pos: -28.5,-10.5 + parent: 1 + type: Transform + - uid: 3926 + components: + - pos: -31.5,-10.5 + parent: 1 + type: Transform + - uid: 3927 + components: + - pos: -29.5,-10.5 + parent: 1 + type: Transform + - uid: 3928 + components: + - pos: -30.5,-10.5 + parent: 1 + type: Transform + - uid: 3929 + components: + - pos: -32.5,-10.5 + parent: 1 + type: Transform + - uid: 3930 + components: + - pos: -33.5,-9.5 + parent: 1 + type: Transform + - uid: 3931 + components: + - pos: -33.5,-10.5 + parent: 1 + type: Transform + - uid: 3932 + components: + - pos: -27.5,-15.5 + parent: 1 + type: Transform + - uid: 3933 + components: + - pos: -26.5,-15.5 + parent: 1 + type: Transform + - uid: 3939 + components: + - pos: -33.5,-13.5 + parent: 1 + type: Transform + - uid: 3940 + components: + - pos: -30.5,-13.5 + parent: 1 + type: Transform + - uid: 3941 + components: + - pos: -30.5,-14.5 + parent: 1 + type: Transform + - uid: 3942 + components: + - pos: -32.5,-13.5 + parent: 1 + type: Transform + - uid: 3943 + components: + - pos: -31.5,-13.5 + parent: 1 + type: Transform + - uid: 3945 + components: + - pos: -34.5,-9.5 + parent: 1 + type: Transform + - uid: 3946 + components: + - pos: -34.5,-8.5 + parent: 1 + type: Transform + - uid: 3952 + components: + - pos: 29.5,-20.5 + parent: 1 + type: Transform + - uid: 3953 + components: + - pos: -28.5,-19.5 + parent: 1 + type: Transform + - uid: 3954 + components: + - pos: -27.5,-19.5 + parent: 1 + type: Transform + - uid: 3955 + components: + - pos: -27.5,-18.5 + parent: 1 + type: Transform + - uid: 3956 + components: + - pos: -27.5,-17.5 + parent: 1 + type: Transform + - uid: 3957 + components: + - pos: -26.5,-19.5 + parent: 1 + type: Transform + - uid: 3958 + components: + - pos: -25.5,-19.5 + parent: 1 + type: Transform + - uid: 3960 + components: + - pos: -25.5,-20.5 + parent: 1 + type: Transform + - uid: 3961 + components: + - pos: -25.5,-22.5 + parent: 1 + type: Transform + - uid: 4010 + components: + - pos: 22.5,-1.5 + parent: 1 + type: Transform + - uid: 4011 + components: + - pos: 21.5,-1.5 + parent: 1 + type: Transform + - uid: 4013 + components: + - pos: 20.5,-1.5 + parent: 1 + type: Transform + - uid: 4022 + components: + - pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 4028 + components: + - pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 4029 + components: + - pos: -29.5,6.5 + parent: 1 + type: Transform + - uid: 4030 + components: + - pos: -29.5,5.5 + parent: 1 + type: Transform + - uid: 4087 + components: + - pos: 20.5,17.5 + parent: 1 + type: Transform + - uid: 4088 + components: + - pos: 20.5,18.5 + parent: 1 + type: Transform + - uid: 4089 + components: + - pos: 20.5,19.5 + parent: 1 + type: Transform + - uid: 4090 + components: + - pos: 20.5,20.5 + parent: 1 + type: Transform + - uid: 4091 + components: + - pos: 20.5,21.5 + parent: 1 + type: Transform + - uid: 4092 + components: + - pos: 20.5,22.5 + parent: 1 + type: Transform + - uid: 4093 + components: + - pos: 20.5,23.5 + parent: 1 + type: Transform + - uid: 4094 + components: + - pos: 21.5,23.5 + parent: 1 + type: Transform + - uid: 4095 + components: + - pos: 22.5,23.5 + parent: 1 + type: Transform + - uid: 4096 + components: + - pos: 23.5,23.5 + parent: 1 + type: Transform + - uid: 4097 + components: + - pos: 24.5,23.5 + parent: 1 + type: Transform + - uid: 4098 + components: + - pos: 25.5,23.5 + parent: 1 + type: Transform + - uid: 4099 + components: + - pos: 25.5,24.5 + parent: 1 + type: Transform + - uid: 4100 + components: + - pos: 26.5,24.5 + parent: 1 + type: Transform + - uid: 4102 + components: + - pos: 26.5,26.5 + parent: 1 + type: Transform + - uid: 4103 + components: + - pos: 26.5,27.5 + parent: 1 + type: Transform + - uid: 4104 + components: + - pos: 26.5,28.5 + parent: 1 + type: Transform + - uid: 4105 + components: + - pos: 26.5,29.5 + parent: 1 + type: Transform + - uid: 4511 + components: + - pos: -19.5,-20.5 + parent: 1 + type: Transform + - uid: 4512 + components: + - pos: -18.5,-20.5 + parent: 1 + type: Transform + - uid: 4513 + components: + - pos: -17.5,-20.5 + parent: 1 + type: Transform + - uid: 4515 + components: + - pos: -17.5,-23.5 + parent: 1 + type: Transform + - uid: 4516 + components: + - pos: -36.5,-15.5 + parent: 1 + type: Transform + - uid: 4517 + components: + - pos: -37.5,-15.5 + parent: 1 + type: Transform + - uid: 4518 + components: + - pos: -38.5,-15.5 + parent: 1 + type: Transform + - uid: 4519 + components: + - pos: -36.5,-16.5 + parent: 1 + type: Transform + - uid: 4520 + components: + - pos: -36.5,-17.5 + parent: 1 + type: Transform + - uid: 4521 + components: + - pos: -36.5,-18.5 + parent: 1 + type: Transform + - uid: 4522 + components: + - pos: -35.5,-18.5 + parent: 1 + type: Transform + - uid: 4523 + components: + - pos: -34.5,-18.5 + parent: 1 + type: Transform + - uid: 4524 + components: + - pos: -33.5,-18.5 + parent: 1 + type: Transform + - uid: 4525 + components: + - pos: -32.5,-18.5 + parent: 1 + type: Transform + - uid: 4526 + components: + - pos: -31.5,-18.5 + parent: 1 + type: Transform + - uid: 4527 + components: + - pos: -30.5,-18.5 + parent: 1 + type: Transform + - uid: 4528 + components: + - pos: -30.5,-19.5 + parent: 1 + type: Transform + - uid: 4530 + components: + - pos: -30.5,-21.5 + parent: 1 + type: Transform + - uid: 4531 + components: + - pos: -30.5,-22.5 + parent: 1 + type: Transform + - uid: 4532 + components: + - pos: -30.5,-24.5 + parent: 1 + type: Transform + - uid: 4539 + components: + - pos: -17.5,-25.5 + parent: 1 + type: Transform + - uid: 4540 + components: + - pos: -17.5,-38.5 + parent: 1 + type: Transform + - uid: 4541 + components: + - pos: -17.5,-37.5 + parent: 1 + type: Transform + - uid: 4542 + components: + - pos: -17.5,-36.5 + parent: 1 + type: Transform + - uid: 4543 + components: + - pos: -17.5,-35.5 + parent: 1 + type: Transform + - uid: 4544 + components: + - pos: -17.5,-34.5 + parent: 1 + type: Transform + - uid: 4545 + components: + - pos: -17.5,-33.5 + parent: 1 + type: Transform + - uid: 4546 + components: + - pos: -17.5,-32.5 + parent: 1 + type: Transform + - uid: 4547 + components: + - pos: -18.5,-32.5 + parent: 1 + type: Transform + - uid: 4548 + components: + - pos: -20.5,-32.5 + parent: 1 + type: Transform + - uid: 4549 + components: + - pos: -19.5,-24.5 + parent: 1 + type: Transform + - uid: 4550 + components: + - pos: -19.5,-23.5 + parent: 1 + type: Transform + - uid: 4551 + components: + - pos: -18.5,-23.5 + parent: 1 + type: Transform + - uid: 4552 + components: + - pos: -19.5,-25.5 + parent: 1 + type: Transform + - uid: 4553 + components: + - pos: -19.5,-26.5 + parent: 1 + type: Transform + - uid: 4554 + components: + - pos: -19.5,-27.5 + parent: 1 + type: Transform + - uid: 4555 + components: + - pos: -19.5,-28.5 + parent: 1 + type: Transform + - uid: 4557 + components: + - pos: -19.5,-30.5 + parent: 1 + type: Transform + - uid: 4558 + components: + - pos: -20.5,-25.5 + parent: 1 + type: Transform + - uid: 4559 + components: + - pos: -21.5,-25.5 + parent: 1 + type: Transform + - uid: 4560 + components: + - pos: -22.5,-25.5 + parent: 1 + type: Transform + - uid: 4561 + components: + - pos: -23.5,-25.5 + parent: 1 + type: Transform + - uid: 4562 + components: + - pos: -24.5,-25.5 + parent: 1 + type: Transform + - uid: 4563 + components: + - pos: -25.5,-25.5 + parent: 1 + type: Transform + - uid: 4564 + components: + - pos: -25.5,-24.5 + parent: 1 + type: Transform + - uid: 4568 + components: + - pos: -25.5,-23.5 + parent: 1 + type: Transform + - uid: 5696 + components: + - pos: 28.5,16.5 + parent: 1 + type: Transform + - uid: 5728 + components: + - pos: 27.5,24.5 + parent: 1 + type: Transform + - uid: 5729 + components: + - pos: 28.5,24.5 + parent: 1 + type: Transform + - uid: 5775 + components: + - pos: 5.5,12.5 + parent: 1 + type: Transform + - uid: 5804 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-6.5 + parent: 1 + type: Transform + - uid: 5935 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,16.5 + parent: 1 + type: Transform + - uid: 5937 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,16.5 + parent: 1 + type: Transform + - uid: 6035 + components: + - pos: -34.5,17.5 + parent: 1 + type: Transform + - uid: 6049 + components: + - pos: 34.5,-10.5 + parent: 1 + type: Transform + - uid: 6148 + components: + - pos: -45.5,47.5 + parent: 1 + type: Transform + - uid: 6149 + components: + - pos: -44.5,49.5 + parent: 1 + type: Transform + - uid: 6333 + components: + - pos: -44.5,45.5 + parent: 1 + type: Transform + - uid: 6349 + components: + - pos: -12.5,68.5 + parent: 1 + type: Transform + - uid: 6360 + components: + - pos: -3.5,68.5 + parent: 1 + type: Transform + - uid: 6413 + components: + - pos: -17.5,11.5 + parent: 1 + type: Transform + - uid: 6414 + components: + - pos: -17.5,10.5 + parent: 1 + type: Transform + - uid: 6415 + components: + - pos: -17.5,9.5 + parent: 1 + type: Transform + - uid: 6416 + components: + - pos: -16.5,8.5 + parent: 1 + type: Transform + - uid: 6471 + components: + - pos: -32.5,-21.5 + parent: 1 + type: Transform + - uid: 6472 + components: + - pos: -32.5,-20.5 + parent: 1 + type: Transform + - uid: 6501 + components: + - pos: -33.5,-22.5 + parent: 1 + type: Transform + - uid: 6508 + components: + - pos: -33.5,-21.5 + parent: 1 + type: Transform + - uid: 6628 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 6644 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-8.5 + parent: 1 + type: Transform + - uid: 6645 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-8.5 + parent: 1 + type: Transform + - uid: 6646 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-8.5 + parent: 1 + type: Transform + - uid: 6647 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-8.5 + parent: 1 + type: Transform + - uid: 6654 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-8.5 + parent: 1 + type: Transform + - uid: 6655 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-8.5 + parent: 1 + type: Transform + - uid: 6657 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-7.5 + parent: 1 + type: Transform + - uid: 6856 + components: + - rot: 3.141592653589793 rad + pos: 26.5,48.5 + parent: 1 + type: Transform + - uid: 6857 + components: + - rot: 3.141592653589793 rad + pos: 26.5,51.5 + parent: 1 + type: Transform + - uid: 6860 + components: + - rot: 3.141592653589793 rad + pos: 26.5,46.5 + parent: 1 + type: Transform + - uid: 6924 + components: + - pos: 9.5,12.5 + parent: 1 + type: Transform + - uid: 6954 + components: + - pos: 20.5,9.5 + parent: 1 + type: Transform + - uid: 6994 + components: + - pos: -23.5,-24.5 + parent: 1 + type: Transform + - uid: 6995 + components: + - pos: -21.5,-24.5 + parent: 1 + type: Transform + - uid: 7126 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,2.5 + parent: 1 + type: Transform + - uid: 7275 + components: + - pos: 1.5,62.5 + parent: 1 + type: Transform + - uid: 7651 + components: + - pos: -28.5,-23.5 + parent: 1 + type: Transform + - uid: 7660 + components: + - pos: -26.5,-23.5 + parent: 1 + type: Transform + - uid: 7882 + components: + - pos: -44.5,44.5 + parent: 1 + type: Transform + - uid: 7885 + components: + - pos: -42.5,44.5 + parent: 1 + type: Transform + - uid: 8175 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 8341 + components: + - pos: 16.5,-38.5 + parent: 1 + type: Transform + - uid: 8427 + components: + - pos: -14.5,1.5 + parent: 1 + type: Transform + - uid: 8428 + components: + - pos: -14.5,-0.5 + parent: 1 + type: Transform + - uid: 8429 + components: + - pos: -15.5,-1.5 + parent: 1 + type: Transform + - uid: 8430 + components: + - pos: -16.5,-1.5 + parent: 1 + type: Transform + - uid: 8431 + components: + - pos: -17.5,-1.5 + parent: 1 + type: Transform + - uid: 8435 + components: + - pos: -14.5,-1.5 + parent: 1 + type: Transform + - uid: 8468 + components: + - pos: 15.5,59.5 + parent: 1 + type: Transform + - uid: 8496 + components: + - pos: -14.5,2.5 + parent: 1 + type: Transform + - uid: 8506 + components: + - pos: -15.5,2.5 + parent: 1 + type: Transform + - uid: 8507 + components: + - pos: -16.5,2.5 + parent: 1 + type: Transform + - uid: 8513 + components: + - pos: -17.5,2.5 + parent: 1 + type: Transform + - uid: 8906 + components: + - pos: 5.5,-6.5 + parent: 1 + type: Transform + - uid: 8907 + components: + - pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 9171 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-0.5 + parent: 1 + type: Transform + - uid: 9172 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,0.5 + parent: 1 + type: Transform + - uid: 9173 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,0.5 + parent: 1 + type: Transform + - uid: 9598 + components: + - pos: 16.5,-37.5 + parent: 1 + type: Transform + - uid: 9601 + components: + - pos: 16.5,-31.5 + parent: 1 + type: Transform + - uid: 9602 + components: + - pos: 16.5,-32.5 + parent: 1 + type: Transform + - uid: 9603 + components: + - pos: 16.5,-33.5 + parent: 1 + type: Transform + - uid: 9892 + components: + - pos: 11.5,64.5 + parent: 1 + type: Transform + - uid: 9989 + components: + - pos: -30.5,-17.5 + parent: 1 + type: Transform + - uid: 10102 + components: + - pos: 16.5,-30.5 + parent: 1 + type: Transform + - uid: 10134 + components: + - pos: 31.5,-17.5 + parent: 1 + type: Transform + - uid: 13304 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,7.5 + parent: 1 + type: Transform + - uid: 13368 + components: + - pos: -28.5,20.5 + parent: 1 + type: Transform + - uid: 13463 + components: + - rot: 3.141592653589793 rad + pos: -12.5,66.5 + parent: 1 + type: Transform + - uid: 14029 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,58.5 + parent: 1 + type: Transform + - uid: 14030 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,57.5 + parent: 1 + type: Transform +- proto: WallSolidRust + entities: + - uid: 4514 + components: + - pos: -17.5,-22.5 + parent: 1 + type: Transform + - uid: 6996 + components: + - pos: -19.5,-21.5 + parent: 1 + type: Transform + - uid: 6997 + components: + - pos: -19.5,-22.5 + parent: 1 + type: Transform +- proto: WallWood + entities: + - uid: 511 + components: + - pos: -5.5,5.5 + parent: 1 + type: Transform + - uid: 3171 + components: + - pos: 39.5,49.5 + parent: 1 + type: Transform + - uid: 3172 + components: + - pos: 39.5,50.5 + parent: 1 + type: Transform + - uid: 3173 + components: + - pos: 44.5,47.5 + parent: 1 + type: Transform + - uid: 3174 + components: + - pos: 44.5,48.5 + parent: 1 + type: Transform + - uid: 3176 + components: + - pos: 40.5,50.5 + parent: 1 + type: Transform + - uid: 3179 + components: + - pos: 40.5,51.5 + parent: 1 + type: Transform + - uid: 3181 + components: + - pos: 39.5,46.5 + parent: 1 + type: Transform + - uid: 9426 + components: + - pos: 39.5,45.5 + parent: 1 + type: Transform +- proto: WardrobeBlackFilled + entities: + - uid: 6081 + components: + - pos: 17.5,43.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: WardrobeBlueFilled + entities: + - uid: 6082 + components: + - pos: 18.5,43.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: WardrobeGreenFilled + entities: + - uid: 6083 + components: + - pos: 23.5,43.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: WardrobeMixedFilled + entities: + - uid: 6084 + components: + - pos: 22.5,43.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: WardrobePinkFilled + entities: + - uid: 8396 + components: + - pos: 17.5,47.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: WardrobePrisonFilled + entities: + - uid: 8221 + components: + - pos: -13.5,42.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 8222 + components: + - pos: -10.5,42.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 8223 + components: + - pos: -7.5,42.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 8224 + components: + - pos: -4.5,42.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 8262 + components: + - pos: -37.5,46.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 8307 + components: + - pos: -37.5,42.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: WarpPoint + entities: + - uid: 6670 + components: + - pos: 30.5,4.5 + parent: 1 + type: Transform + - location: HoP + type: WarpPoint + - uid: 17617 + components: + - pos: 10.5,26.5 + parent: 1 + type: Transform + - location: Medbay + type: WarpPoint + - uid: 17618 + components: + - pos: -16.5,25.5 + parent: 1 + type: Transform + - location: Science + type: WarpPoint + - uid: 17619 + components: + - pos: -37.5,24.5 + parent: 1 + type: Transform + - location: Salvage + type: WarpPoint + - uid: 17620 + components: + - pos: -38.5,3.5 + parent: 1 + type: Transform + - location: Cargo + type: WarpPoint + - uid: 17621 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - location: Bar + type: WarpPoint + - uid: 17622 + components: + - pos: -8.5,-26.5 + parent: 1 + type: Transform + - location: Atmos + type: WarpPoint + - uid: 17623 + components: + - pos: 12.5,-26.5 + parent: 1 + type: Transform + - location: Engineering + type: WarpPoint + - uid: 17624 + components: + - pos: 32.5,25.5 + parent: 1 + type: Transform + - location: Evac + type: WarpPoint + - uid: 17625 + components: + - pos: 31.5,46.5 + parent: 1 + type: Transform + - location: Chapel + type: WarpPoint + - uid: 17627 + components: + - pos: 4.5,46.5 + parent: 1 + type: Transform + - location: Vault + type: WarpPoint + - uid: 17628 + components: + - pos: -13.5,48.5 + parent: 1 + type: Transform + - location: Security + type: WarpPoint + - uid: 17629 + components: + - pos: 10.5,58.5 + parent: 1 + type: Transform + - location: Courtroom + type: WarpPoint + - uid: 17630 + components: + - pos: -0.5,79.5 + parent: 1 + type: Transform + - location: Bridge + type: WarpPoint + - uid: 18176 + components: + - pos: -0.5,-0.5 + parent: 8756 + type: Transform + - location: Captain's Private Shuttle + type: WarpPoint +- proto: WaterCooler + entities: + - uid: 4162 + components: + - pos: -40.5,11.5 + parent: 1 + type: Transform + - uid: 6948 + components: + - pos: 26.5,23.5 + parent: 1 + type: Transform + - uid: 8091 + components: + - pos: 2.5,72.5 + parent: 1 + type: Transform + - uid: 8440 + components: + - pos: 6.5,57.5 + parent: 1 + type: Transform + - uid: 8587 + components: + - pos: -7.5,21.5 + parent: 1 + type: Transform + - uid: 8718 + components: + - pos: -9.5,-15.5 + parent: 1 + type: Transform + - uid: 9090 + components: + - pos: 4.5,-32.5 + parent: 1 + type: Transform +- proto: WaterTankFull + entities: + - uid: 4331 + components: + - pos: -30.5,49.5 + parent: 1 + type: Transform + - uid: 8703 + components: + - pos: -13.5,-31.5 + parent: 1 + type: Transform + - uid: 9377 + components: + - pos: 19.5,-3.5 + parent: 1 + type: Transform + - uid: 9896 + components: + - pos: 38.5,41.5 + parent: 1 + type: Transform + - uid: 9900 + components: + - pos: 20.5,6.5 + parent: 1 + type: Transform + - uid: 9901 + components: + - pos: 18.5,24.5 + parent: 1 + type: Transform + - uid: 9904 + components: + - pos: 27.5,-22.5 + parent: 1 + type: Transform + - uid: 9908 + components: + - pos: -27.5,-20.5 + parent: 1 + type: Transform + - uid: 13326 + components: + - pos: -21.5,2.5 + parent: 1 + type: Transform + - uid: 13375 + components: + - pos: -27.5,27.5 + parent: 1 + type: Transform + - uid: 13422 + components: + - pos: -25.5,55.5 + parent: 1 + type: Transform + - uid: 13457 + components: + - pos: -44.5,51.5 + parent: 1 + type: Transform + - uid: 13998 + components: + - pos: 16.5,61.5 + parent: 1 + type: Transform + - uid: 14010 + components: + - pos: 11.5,48.5 + parent: 1 + type: Transform +- proto: WaterTankHighCapacity + entities: + - uid: 10114 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform +- proto: WaterVaporCanister + entities: + - uid: 3049 + components: + - pos: -14.5,-29.5 + parent: 1 + type: Transform + - uid: 6589 + components: + - pos: -11.5,33.5 + parent: 1 + type: Transform +- proto: WeaponCapacitorRecharger + entities: + - uid: 6822 + components: + - pos: -15.5,58.5 + parent: 1 + type: Transform + - uid: 7395 + components: + - pos: -14.5,50.5 + parent: 1 + type: Transform + - uid: 7398 + components: + - pos: -16.5,50.5 + parent: 1 + type: Transform + - uid: 7901 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,44.5 + parent: 1 + type: Transform + - uid: 8061 + components: + - pos: 3.5,79.5 + parent: 1 + type: Transform + - uid: 8138 + components: + - pos: -6.5,52.5 + parent: 1 + type: Transform + - uid: 8183 + components: + - pos: -13.5,56.5 + parent: 1 + type: Transform + - uid: 9285 + components: + - pos: 23.5,10.5 + parent: 1 + type: Transform + - uid: 9395 + components: + - pos: -35.5,-5.5 + parent: 1 + type: Transform + - uid: 9420 + components: + - pos: 30.5,-13.5 + parent: 1 + type: Transform +- proto: WeaponCrusherGlaive + entities: + - uid: 1777 + components: + - pos: -41.696693,21.56326 + parent: 1 + type: Transform +- proto: WeaponDisabler + entities: + - uid: 7396 + components: + - pos: -14.632251,50.815887 + parent: 1 + type: Transform +- proto: WeaponDisablerPractice + entities: + - uid: 8186 + components: + - pos: -10.325895,49.179844 + parent: 1 + type: Transform + - uid: 9284 + components: + - pos: 23.450686,10.918031 + parent: 1 + type: Transform +- proto: WeaponLaserCarbinePractice + entities: + - uid: 8147 + components: + - pos: -10.327259,49.585735 + parent: 1 + type: Transform +- proto: WeaponRevolverDeckard + entities: + - uid: 17754 + components: + - pos: 15.523123,-26.506323 + parent: 1 + type: Transform +- proto: WeaponShotgunDoubleBarreledRubber + entities: + - uid: 7690 + components: + - flags: InContainer + type: MetaData + - parent: 7683 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 7693 + components: + - flags: InContainer + type: MetaData + - parent: 7683 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: WeaponSubMachineGunWt550 + entities: + - uid: 6823 + components: + - pos: -16.502504,59.51904 + parent: 1 + type: Transform +- proto: WeaponWaterBlaster + entities: + - uid: 3021 + components: + - pos: -7.5149508,69.42698 + parent: 1 + type: Transform +- proto: WeaponWaterPistol + entities: + - uid: 7649 + components: + - pos: -23.508644,1.4423954 + parent: 1 + type: Transform +- proto: WelderIndustrial + entities: + - uid: 4700 + components: + - pos: -10.518035,34.54518 + parent: 1 + type: Transform +- proto: WelderIndustrialAdvanced + entities: + - uid: 8699 + components: + - pos: -13.470308,-33.594826 + parent: 1 + type: Transform +- proto: WeldingFuelTankFull + entities: + - uid: 8702 + components: + - pos: -13.5,-32.5 + parent: 1 + type: Transform + - uid: 9895 + components: + - pos: 38.5,42.5 + parent: 1 + type: Transform + - uid: 9899 + components: + - pos: 28.5,-22.5 + parent: 1 + type: Transform + - uid: 9902 + components: + - pos: 18.5,23.5 + parent: 1 + type: Transform + - uid: 9903 + components: + - pos: 20.5,7.5 + parent: 1 + type: Transform + - uid: 9905 + components: + - pos: 13.5,-26.5 + parent: 1 + type: Transform + - uid: 9906 + components: + - pos: -26.5,-20.5 + parent: 1 + type: Transform + - uid: 13325 + components: + - pos: -21.5,3.5 + parent: 1 + type: Transform + - uid: 13352 + components: + - pos: -35.5,30.5 + parent: 1 + type: Transform + - uid: 13374 + components: + - pos: -28.5,27.5 + parent: 1 + type: Transform + - uid: 13421 + components: + - pos: -25.5,54.5 + parent: 1 + type: Transform + - uid: 13456 + components: + - pos: -44.5,50.5 + parent: 1 + type: Transform + - uid: 13997 + components: + - pos: 16.5,62.5 + parent: 1 + type: Transform + - uid: 14009 + components: + - pos: 12.5,48.5 + parent: 1 + type: Transform +- proto: WetFloorSign + entities: + - uid: 9256 + components: + - pos: 16.624058,-5.188912 + parent: 1 + type: Transform + - uid: 9257 + components: + - pos: 16.769894,-5.480578 + parent: 1 + type: Transform + - uid: 9258 + components: + - pos: 19.594421,-7.376412 + parent: 1 + type: Transform +- proto: Windoor + entities: + - uid: 9163 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,5.5 + parent: 1 + type: Transform +- proto: WindoorHydroponicsLocked + entities: + - uid: 557 + components: + - pos: 10.5,12.5 + parent: 1 + type: Transform + - uid: 9011 + components: + - rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 9012 + components: + - rot: 3.141592653589793 rad + pos: 8.5,3.5 + parent: 1 + type: Transform +- proto: WindoorKitchenHydroponicsLocked + entities: + - uid: 4075 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 6407 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 6626 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 6703 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-5.5 + parent: 1 + type: Transform + - uid: 6704 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-5.5 + parent: 1 + type: Transform + - uid: 6705 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-5.5 + parent: 1 + type: Transform +- proto: WindoorSecure + entities: + - uid: 18336 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,3.5 + parent: 1 + type: Transform +- proto: WindoorSecureArmoryLocked + entities: + - uid: 4371 + components: + - rot: 3.141592653589793 rad + pos: -6.5,61.5 + parent: 1 + type: Transform + - uid: 8196 + components: + - rot: 3.141592653589793 rad + pos: -13.5,47.5 + parent: 1 + type: Transform + - uid: 8197 + components: + - rot: 3.141592653589793 rad + pos: -12.5,47.5 + parent: 1 + type: Transform + - uid: 8198 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,48.5 + parent: 1 + type: Transform + - uid: 8199 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,49.5 + parent: 1 + type: Transform +- proto: WindoorSecureBrigLocked + entities: + - uid: 8127 + components: + - rot: 3.141592653589793 rad + pos: 11.5,55.5 + parent: 1 + type: Transform + - uid: 8128 + components: + - rot: 3.141592653589793 rad + pos: 10.5,55.5 + parent: 1 + type: Transform + - uid: 9508 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,60.5 + parent: 1 + type: Transform +- proto: WindoorSecureCargoLocked + entities: + - uid: 9355 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,6.5 + parent: 1 + type: Transform + - uid: 9356 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,7.5 + parent: 1 + type: Transform + - uid: 9357 + components: + - pos: -35.5,12.5 + parent: 1 + type: Transform +- proto: WindoorSecureChemistryLocked + entities: + - uid: 8537 + components: + - rot: 3.141592653589793 rad + pos: 3.5,20.5 + parent: 1 + type: Transform + - uid: 8538 + components: + - rot: 3.141592653589793 rad + pos: 4.5,20.5 + parent: 1 + type: Transform + - uid: 8539 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,22.5 + parent: 1 + type: Transform + - uid: 8540 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,23.5 + parent: 1 + type: Transform +- proto: WindoorSecureCommandLocked + entities: + - uid: 3784 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-13.5 + parent: 1 + type: Transform + - uid: 3803 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-13.5 + parent: 1 + type: Transform +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 8727 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-13.5 + parent: 1 + type: Transform + - uid: 8728 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-12.5 + parent: 1 + type: Transform + - uid: 9193 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-13.5 + parent: 1 + type: Transform + - uid: 9194 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 1 + type: Transform +- proto: WindoorSecureHeadOfPersonnelLocked + entities: + - uid: 9277 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,3.5 + parent: 1 + type: Transform +- proto: WindoorSecureJanitorLocked + entities: + - uid: 4012 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-6.5 + parent: 1 + type: Transform +- proto: WindoorSecureMedicalLocked + entities: + - uid: 556 + components: + - rot: 3.141592653589793 rad + pos: 4.5,28.5 + parent: 1 + type: Transform + - uid: 9373 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,30.5 + parent: 1 + type: Transform + - uid: 9385 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,33.5 + parent: 1 + type: Transform +- proto: WindoorSecureSalvageLocked + entities: + - uid: 9370 + components: + - rot: 3.141592653589793 rad + pos: -39.5,16.5 + parent: 1 + type: Transform +- proto: WindoorSecureScienceLocked + entities: + - uid: 8603 + components: + - pos: -20.5,35.5 + parent: 1 + type: Transform + - uid: 8654 + components: + - rot: 3.141592653589793 rad + pos: -5.5,20.5 + parent: 1 + type: Transform + - uid: 8655 + components: + - rot: 3.141592653589793 rad + pos: -4.5,20.5 + parent: 1 + type: Transform +- proto: WindoorSecureSecurityLocked + entities: + - uid: 8200 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,53.5 + parent: 1 + type: Transform + - uid: 8201 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,54.5 + parent: 1 + type: Transform + - uid: 9398 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-1.5 + parent: 1 + type: Transform + - uid: 9399 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-2.5 + parent: 1 + type: Transform + - uid: 9409 + components: + - pos: 29.5,-10.5 + parent: 1 + type: Transform + - uid: 9410 + components: + - pos: 30.5,-10.5 + parent: 1 + type: Transform + - uid: 9427 + components: + - rot: 3.141592653589793 rad + pos: 43.5,41.5 + parent: 1 + type: Transform + - uid: 9428 + components: + - rot: 3.141592653589793 rad + pos: 44.5,41.5 + parent: 1 + type: Transform +- proto: Window + entities: + - uid: 464 + components: + - pos: -36.5,4.5 + parent: 1 + type: Transform + - uid: 474 + components: + - pos: -1.5,-6.5 + parent: 1 + type: Transform + - uid: 475 + components: + - pos: -0.5,-6.5 + parent: 1 + type: Transform + - uid: 476 + components: + - pos: 0.5,-6.5 + parent: 1 + type: Transform + - uid: 477 + components: + - pos: -1.5,12.5 + parent: 1 + type: Transform + - uid: 478 + components: + - pos: -0.5,12.5 + parent: 1 + type: Transform + - uid: 479 + components: + - pos: 0.5,12.5 + parent: 1 + type: Transform + - uid: 487 + components: + - pos: -4.5,12.5 + parent: 1 + type: Transform + - uid: 488 + components: + - pos: 3.5,12.5 + parent: 1 + type: Transform + - uid: 489 + components: + - pos: -4.5,-6.5 + parent: 1 + type: Transform + - uid: 490 + components: + - pos: 3.5,-6.5 + parent: 1 + type: Transform + - uid: 1579 + components: + - pos: -45.5,39.5 + parent: 1 + type: Transform + - uid: 1716 + components: + - pos: -46.5,39.5 + parent: 1 + type: Transform + - uid: 1867 + components: + - pos: 3.5,57.5 + parent: 1 + type: Transform + - uid: 1868 + components: + - pos: 3.5,55.5 + parent: 1 + type: Transform + - uid: 1869 + components: + - pos: 3.5,54.5 + parent: 1 + type: Transform + - uid: 1870 + components: + - pos: 3.5,52.5 + parent: 1 + type: Transform + - uid: 1874 + components: + - pos: 1.5,59.5 + parent: 1 + type: Transform + - uid: 1875 + components: + - pos: 1.5,60.5 + parent: 1 + type: Transform + - uid: 1876 + components: + - pos: 1.5,61.5 + parent: 1 + type: Transform + - uid: 2858 + components: + - pos: 7.5,-16.5 + parent: 1 + type: Transform + - uid: 2886 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,5.5 + parent: 1 + type: Transform + - uid: 2887 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,4.5 + parent: 1 + type: Transform + - uid: 3410 + components: + - pos: 28.5,0.5 + parent: 1 + type: Transform + - uid: 3411 + components: + - pos: 28.5,-1.5 + parent: 1 + type: Transform + - uid: 3412 + components: + - pos: 28.5,-3.5 + parent: 1 + type: Transform + - uid: 3413 + components: + - pos: 28.5,-5.5 + parent: 1 + type: Transform + - uid: 3647 + components: + - pos: 7.5,16.5 + parent: 1 + type: Transform + - uid: 3648 + components: + - pos: 8.5,16.5 + parent: 1 + type: Transform + - uid: 3649 + components: + - pos: 9.5,16.5 + parent: 1 + type: Transform + - uid: 3650 + components: + - pos: 13.5,16.5 + parent: 1 + type: Transform + - uid: 3651 + components: + - pos: 14.5,16.5 + parent: 1 + type: Transform + - uid: 3652 + components: + - pos: 15.5,16.5 + parent: 1 + type: Transform + - uid: 3992 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-35.5 + parent: 1 + type: Transform + - uid: 4245 + components: + - pos: -35.5,8.5 + parent: 1 + type: Transform + - uid: 4246 + components: + - pos: -33.5,10.5 + parent: 1 + type: Transform + - uid: 4413 + components: + - pos: 29.5,39.5 + parent: 1 + type: Transform + - uid: 4414 + components: + - pos: 29.5,42.5 + parent: 1 + type: Transform + - uid: 4415 + components: + - pos: 32.5,42.5 + parent: 1 + type: Transform + - uid: 4432 + components: + - rot: 3.141592653589793 rad + pos: -28.5,35.5 + parent: 1 + type: Transform + - uid: 4433 + components: + - rot: 3.141592653589793 rad + pos: -27.5,35.5 + parent: 1 + type: Transform + - uid: 4434 + components: + - rot: 3.141592653589793 rad + pos: -29.5,34.5 + parent: 1 + type: Transform + - uid: 4435 + components: + - rot: 3.141592653589793 rad + pos: -29.5,29.5 + parent: 1 + type: Transform + - uid: 4468 + components: + - pos: 19.5,39.5 + parent: 1 + type: Transform + - uid: 4469 + components: + - pos: 20.5,39.5 + parent: 1 + type: Transform + - uid: 4470 + components: + - pos: 21.5,39.5 + parent: 1 + type: Transform + - uid: 5705 + components: + - pos: -47.5,39.5 + parent: 1 + type: Transform + - uid: 5738 + components: + - pos: 21.5,16.5 + parent: 1 + type: Transform + - uid: 5739 + components: + - pos: 22.5,16.5 + parent: 1 + type: Transform + - uid: 5740 + components: + - pos: 26.5,16.5 + parent: 1 + type: Transform + - uid: 5741 + components: + - pos: 27.5,16.5 + parent: 1 + type: Transform + - uid: 5742 + components: + - pos: 28.5,17.5 + parent: 1 + type: Transform + - uid: 5743 + components: + - pos: 28.5,18.5 + parent: 1 + type: Transform + - uid: 5744 + components: + - pos: 28.5,22.5 + parent: 1 + type: Transform + - uid: 5745 + components: + - pos: 28.5,23.5 + parent: 1 + type: Transform + - uid: 6379 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,29.5 + parent: 1 + type: Transform + - uid: 6380 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,29.5 + parent: 1 + type: Transform + - uid: 6582 + components: + - pos: 3.5,65.5 + parent: 1 + type: Transform + - uid: 6583 + components: + - pos: 4.5,65.5 + parent: 1 + type: Transform + - uid: 7884 + components: + - pos: -44.5,39.5 + parent: 1 + type: Transform + - uid: 8988 + components: + - pos: -12.5,-6.5 + parent: 1 + type: Transform + - uid: 8992 + components: + - pos: -10.5,-6.5 + parent: 1 + type: Transform + - uid: 8993 + components: + - pos: -11.5,-6.5 + parent: 1 + type: Transform + - uid: 9015 + components: + - rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 9599 + components: + - pos: 16.5,-36.5 + parent: 1 + type: Transform + - uid: 14966 + components: + - rot: 3.141592653589793 rad + pos: 32.5,39.5 + parent: 1 + type: Transform + - uid: 15570 + components: + - pos: 13.5,27.5 + parent: 1 + type: Transform +- proto: WindowDirectional + entities: + - uid: 3629 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,20.5 + parent: 1 + type: Transform + - uid: 4337 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,34.5 + parent: 1 + type: Transform + - uid: 8547 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,19.5 + parent: 1 + type: Transform + - uid: 8548 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,20.5 + parent: 1 + type: Transform + - uid: 8549 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,19.5 + parent: 1 + type: Transform + - uid: 9161 + components: + - pos: -26.5,6.5 + parent: 1 + type: Transform + - uid: 9523 + components: + - rot: 3.141592653589793 rad + pos: 43.5,38.5 + parent: 1 + type: Transform + - uid: 9524 + components: + - rot: 3.141592653589793 rad + pos: 44.5,38.5 + parent: 1 + type: Transform + - uid: 9525 + components: + - rot: 3.141592653589793 rad + pos: 45.5,38.5 + parent: 1 + type: Transform + - uid: 10066 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-14.5 + parent: 1 + type: Transform + - uid: 10093 + components: + - pos: -17.5,-28.5 + parent: 1 + type: Transform + - uid: 11053 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-0.5 + parent: 1 + type: Transform + - uid: 13376 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,27.5 + parent: 1 + type: Transform + - uid: 13377 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,27.5 + parent: 1 + type: Transform + - uid: 13419 + components: + - rot: 3.141592653589793 rad + pos: -18.5,61.5 + parent: 1 + type: Transform + - uid: 13420 + components: + - pos: -18.5,59.5 + parent: 1 + type: Transform + - uid: 14003 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,64.5 + parent: 1 + type: Transform + - uid: 14016 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,40.5 + parent: 1 + type: Transform + - uid: 14038 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,56.5 + parent: 1 + type: Transform + - uid: 14039 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,56.5 + parent: 1 + type: Transform +- proto: WindowFrostedDirectional + entities: + - uid: 1003 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,31.5 + parent: 1 + type: Transform + - uid: 3393 + components: + - rot: 3.141592653589793 rad + pos: 24.5,49.5 + parent: 1 + type: Transform + - uid: 4072 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,34.5 + parent: 1 + type: Transform + - uid: 4073 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,32.5 + parent: 1 + type: Transform + - uid: 6406 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,29.5 + parent: 1 + type: Transform + - uid: 6671 + components: + - pos: 3.5,32.5 + parent: 1 + type: Transform + - uid: 6672 + components: + - pos: 2.5,32.5 + parent: 1 + type: Transform + - uid: 6814 + components: + - rot: 3.141592653589793 rad + pos: -7.5,69.5 + parent: 1 + type: Transform + - uid: 9366 + components: + - rot: 3.141592653589793 rad + pos: 3.5,28.5 + parent: 1 + type: Transform + - uid: 9367 + components: + - rot: 3.141592653589793 rad + pos: 2.5,28.5 + parent: 1 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 545 + components: + - rot: 3.141592653589793 rad + pos: 2.5,80.5 + parent: 1 + type: Transform + - uid: 546 + components: + - rot: 3.141592653589793 rad + pos: 0.5,80.5 + parent: 1 + type: Transform + - uid: 553 + components: + - rot: 3.141592653589793 rad + pos: -0.5,80.5 + parent: 1 + type: Transform + - uid: 554 + components: + - rot: 3.141592653589793 rad + pos: 3.5,80.5 + parent: 1 + type: Transform + - uid: 620 + components: + - rot: 3.141592653589793 rad + pos: -4.5,80.5 + parent: 1 + type: Transform + - uid: 621 + components: + - rot: 3.141592653589793 rad + pos: -3.5,80.5 + parent: 1 + type: Transform + - uid: 622 + components: + - rot: 3.141592653589793 rad + pos: -2.5,80.5 + parent: 1 + type: Transform + - uid: 1936 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,57.5 + parent: 1 + type: Transform + - uid: 1937 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,56.5 + parent: 1 + type: Transform + - uid: 4071 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,27.5 + parent: 1 + type: Transform + - uid: 5773 + components: + - rot: 3.141592653589793 rad + pos: 1.5,80.5 + parent: 1 + type: Transform + - uid: 5774 + components: + - rot: 3.141592653589793 rad + pos: -1.5,80.5 + parent: 1 + type: Transform + - uid: 6953 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,26.5 + parent: 1 + type: Transform + - uid: 8117 + components: + - rot: 3.141592653589793 rad + pos: 12.5,55.5 + parent: 1 + type: Transform + - uid: 8118 + components: + - rot: 3.141592653589793 rad + pos: 7.5,55.5 + parent: 1 + type: Transform + - uid: 8125 + components: + - rot: 3.141592653589793 rad + pos: 8.5,55.5 + parent: 1 + type: Transform + - uid: 8126 + components: + - rot: 3.141592653589793 rad + pos: 9.5,55.5 + parent: 1 + type: Transform + - uid: 8437 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,61.5 + parent: 1 + type: Transform + - uid: 8508 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,29.5 + parent: 1 + type: Transform + - uid: 8509 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,28.5 + parent: 1 + type: Transform + - uid: 9053 + components: + - pos: -3.5,85.5 + parent: 1 + type: Transform + - uid: 9054 + components: + - pos: -2.5,85.5 + parent: 1 + type: Transform + - uid: 9055 + components: + - pos: -1.5,85.5 + parent: 1 + type: Transform + - uid: 9056 + components: + - pos: 0.5,85.5 + parent: 1 + type: Transform + - uid: 9057 + components: + - pos: 1.5,85.5 + parent: 1 + type: Transform + - uid: 9058 + components: + - pos: 2.5,85.5 + parent: 1 + type: Transform + - uid: 9059 + components: + - pos: 4.5,84.5 + parent: 1 + type: Transform + - uid: 9060 + components: + - pos: 5.5,84.5 + parent: 1 + type: Transform + - uid: 9061 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,82.5 + parent: 1 + type: Transform + - uid: 9062 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,80.5 + parent: 1 + type: Transform + - uid: 9063 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,79.5 + parent: 1 + type: Transform + - uid: 9064 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,77.5 + parent: 1 + type: Transform + - uid: 9065 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,76.5 + parent: 1 + type: Transform + - uid: 9066 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,76.5 + parent: 1 + type: Transform + - uid: 9067 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,77.5 + parent: 1 + type: Transform + - uid: 9068 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,79.5 + parent: 1 + type: Transform + - uid: 9069 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,80.5 + parent: 1 + type: Transform + - uid: 9070 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,82.5 + parent: 1 + type: Transform + - uid: 9071 + components: + - pos: -6.5,84.5 + parent: 1 + type: Transform + - uid: 9072 + components: + - pos: -5.5,84.5 + parent: 1 + type: Transform + - uid: 9506 + components: + - pos: 14.5,60.5 + parent: 1 + type: Transform + - uid: 9513 + components: + - rot: 3.141592653589793 rad + pos: 13.5,55.5 + parent: 1 + type: Transform + - uid: 9514 + components: + - rot: 3.141592653589793 rad + pos: 14.5,55.5 + parent: 1 + type: Transform + - uid: 17891 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-13.5 + parent: 1 + type: Transform + - uid: 18442 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-13.5 + parent: 1 + type: Transform + - uid: 18443 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-13.5 + parent: 1 + type: Transform + - uid: 18444 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-13.5 + parent: 1 + type: Transform + - uid: 18445 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-13.5 + parent: 1 + type: Transform + - uid: 18448 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-13.5 + parent: 1 + type: Transform +- proto: Wirecutter + entities: + - uid: 13445 + components: + - pos: -37.329777,54.494305 + parent: 1 + type: Transform +- proto: WoodDoor + entities: + - uid: 253 + components: + - pos: -29.5,10.5 + parent: 1 + type: Transform + - uid: 2875 + components: + - pos: -23.5,12.5 + parent: 1 + type: Transform + - uid: 3180 + components: + - pos: 44.5,46.5 + parent: 1 + type: Transform + - uid: 3232 + components: + - rot: 3.141592653589793 rad + pos: 26.5,47.5 + parent: 1 + type: Transform +- proto: Wrench + entities: + - uid: 3444 + components: + - pos: -10.675615,34.54656 + parent: 1 + type: Transform + - uid: 4160 + components: + - pos: 9.545816,34.51422 + parent: 1 + type: Transform + - uid: 13886 + components: + - pos: 20.623508,52.47136 + parent: 1 + type: Transform +- proto: Zipties + entities: + - uid: 9422 + components: + - pos: 41.421097,42.74209 + parent: 1 + type: Transform + - uid: 9423 + components: + - pos: 41.671097,42.596256 + parent: 1 + type: Transform +- proto: ZiptiesBroken + entities: + - uid: 10113 + components: + - pos: 17.425484,-37.18814 + parent: 1 + type: Transform +... diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index a8eb44d7a78..1622bf45057 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -4,58 +4,58 @@ meta: tilemap: 0: Space 1: FloorArcadeBlue - 10: FloorAsteroidSand - 15: FloorBar - 18: FloorBlueCircuit - 25: FloorClown - 26: FloorDark - 27: FloorDarkDiagonal - 30: FloorDarkMini - 31: FloorDarkMono - 33: FloorDarkPavement - 35: FloorDarkPlastic - 41: FloorFreezer - 42: FloorGlass - 43: FloorGold - 44: FloorGrass - 45: FloorGrassDark - 46: FloorGrassJungle - 48: FloorGreenCircuit - 52: FloorHydro - 54: FloorLaundry - 55: FloorLino - 57: FloorMetalDiamond - 58: FloorMime - 59: FloorMono - 61: FloorPlanetGrass - 62: FloorPlastic - 63: FloorRGlass - 64: FloorReinforced - 66: FloorRockVault - 67: FloorShowroom - 68: FloorShuttleBlue - 69: FloorShuttleOrange - 71: FloorShuttleRed - 72: FloorShuttleWhite - 74: FloorSnow - 75: FloorSteel - 80: FloorSteelDirty - 83: FloorSteelMono - 85: FloorSteelPavement - 87: FloorTechMaint - 88: FloorTechMaint2 - 89: FloorTechMaint3 - 91: FloorWhite - 94: FloorWhiteHerringbone - 95: FloorWhiteMini - 96: FloorWhiteMono - 98: FloorWhitePavement - 99: FloorWhitePavementVertical - 100: FloorWhitePlastic - 101: FloorWood - 102: FloorWoodTile - 103: Lattice - 104: Plating + 6: FloorAsteroidSand + 11: FloorBar + 14: FloorBlueCircuit + 21: FloorClown + 22: FloorDark + 23: FloorDarkDiagonal + 26: FloorDarkMini + 27: FloorDarkMono + 29: FloorDarkPavement + 31: FloorDarkPlastic + 37: FloorFreezer + 38: FloorGlass + 39: FloorGold + 40: FloorGrass + 41: FloorGrassDark + 42: FloorGrassJungle + 44: FloorGreenCircuit + 48: FloorHydro + 50: FloorLaundry + 51: FloorLino + 53: FloorMetalDiamond + 54: FloorMime + 55: FloorMono + 57: FloorPlanetGrass + 58: FloorPlastic + 59: FloorRGlass + 60: FloorReinforced + 62: FloorRockVault + 63: FloorShowroom + 64: FloorShuttleBlue + 65: FloorShuttleOrange + 67: FloorShuttleRed + 68: FloorShuttleWhite + 70: FloorSnow + 71: FloorSteel + 76: FloorSteelDirty + 79: FloorSteelMono + 81: FloorSteelPavement + 83: FloorTechMaint + 84: FloorTechMaint2 + 85: FloorTechMaint3 + 87: FloorWhite + 90: FloorWhiteHerringbone + 91: FloorWhiteMini + 92: FloorWhiteMono + 94: FloorWhitePavement + 95: FloorWhitePavementVertical + 96: FloorWhitePlastic + 97: FloorWood + 98: FloorWoodTile + 99: Lattice + 100: Plating entities: - proto: "" entities: @@ -68,286 +68,286 @@ entities: - chunks: 0,-1: ind: 0,-1 - tiles: SwAAA0sAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAASwAAAUsAAAJoAAAASwAAAksAAANLAAADaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAABSwAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAaAAAAEsAAANLAAAASwAAAksAAANoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABLAAABSwAAAEsAAANLAAADWAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAA0sAAAFLAAADSwAAA2gAAABoAAAAVwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABLAAADSwAAAUsAAAJoAAAAVwAAAFcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAAhoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAD4AAAEaAAAAGgAAAmgAAABAAAAAQAAAAEAAAABAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABLAAAAGgAAARoAAAIaAAAAQAAAAEAAAABAAAAAQAAAAGgAAABXAAAAaAAAAGgAAABnAAAAAAAAAGcAAABoAAAASwAAABoAAAIaAAABaAAAAEAAAAASAAAAQAAAAEAAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAABnAAAAaAAAAEsAAAMaAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAZwAAAGgAAABLAAADGgAAAxoAAAFoAAAAGgAAAxoAAAIaAAADaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABoAAAASwAAARoAAAEaAAADaAAAAGgAAAAaAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAABnAAAAaAAAAEsAAAAaAAABaAAAAGgAAABoAAAAGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABLAAACGgAAAxoAAAIaAAADGgAAARoAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAAQ== + tiles: RwAAA0cAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAARwAAAUcAAAJkAAAARwAAAkcAAANHAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAABRwAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAZAAAAEcAAANHAAAARwAAAkcAAANkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABHAAABRwAAAEcAAANHAAADVAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAARwAAA0cAAAFHAAADRwAAA2QAAABkAAAAUwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABHAAADRwAAAUcAAAJkAAAAUwAAAFMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAARwAAAhYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAADoAAAEWAAAAFgAAAmQAAAA8AAAAPAAAADwAAAA8AAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABHAAAAFgAAARYAAAIWAAAAPAAAADwAAAA8AAAAPAAAAGQAAABTAAAAZAAAAGQAAABjAAAAAAAAAGMAAABkAAAARwAAABYAAAIWAAABZAAAADwAAAAOAAAAPAAAADwAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAABjAAAAZAAAAEcAAAMWAAAAFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAYwAAAGQAAABHAAADFgAAAxYAAAFkAAAAFgAAAxYAAAIWAAADZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABkAAAARwAAARYAAAEWAAADZAAAAGQAAAAWAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAABjAAAAZAAAAEcAAAAWAAABZAAAAGQAAABkAAAAFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABHAAACFgAAAxYAAAIWAAADFgAAARYAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAARwAAAQ== -1,-1: ind: -1,-1 - tiles: SwAAAUsAAAJoAAAAZwAAAGgAAABQAAAAUAAAABoAAAMaAAACGgAAAxoAAANoAAAAAAAAAAAAAABoAAAASwAAAEsAAABLAAAAaAAAAGcAAABoAAAAUAAAAFAAAABLAAAAUAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAaAAAAEsAAABLAAAASwAAAWgAAABnAAAAaAAAAEsAAABQAAAASwAAA1AAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAAASwAAAEsAAAJoAAAAZwAAAGgAAABQAAAAUAAAAFAAAABQAAAAaAAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAAEsAAANLAAAAaAAAAGcAAABoAAAASwAAAFAAAABLAAADSwAAAGgAAAAAAAAAaAAAAGgAAAApAAAAaAAAAEsAAAJLAAADSwAAAmgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGgAAABfAAABXwAAA2gAAABLAAADSwAAAEsAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAXwAAAF4AAANoAAAASwAAAksAAANLAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABbAAABaAAAAGgAAABLAAABSwAAAWgAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGUAAAJlAAABZQAAAmgAAAAaAAAASwAAAksAAANoAAAAZwAAAAAAAABnAAAAaAAAAGgAAABlAAAAZQAAAC4AAABlAAABZQAAAWUAAAJoAAAAGgAAAksAAANLAAADaAAAAGcAAAAAAAAAZwAAAGgAAABlAAACZQAAAGUAAAEuAAAAZQAAAmUAAABlAAABaAAAABoAAAFLAAADSwAAAWgAAABnAAAAAAAAAGcAAABoAAAAZQAAAGUAAANlAAABHwAAAmUAAABlAAADZQAAAmgAAAAaAAABSwAAAksAAABoAAAAZwAAAGcAAABnAAAAaAAAAGUAAABlAAADZQAAA2gAAABlAAAAZQAAAmUAAAJoAAAAGgAAAj4AAAE+AAABaAAAAGgAAAAAAAAAZwAAAGgAAABoAAAAGgAAABoAAABoAAAAGgAAARoAAAIaAAADaAAAABoAAAJLAAABSwAAA0sAAAFoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAaAAAAGgAAABoAAAASwAAAksAAABLAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAGgAAAxoAAAEaAAABGgAAAA== + tiles: RwAAAUcAAAJkAAAAYwAAAGQAAABMAAAATAAAABYAAAMWAAACFgAAAxYAAANkAAAAAAAAAAAAAABkAAAARwAAAEcAAABHAAAAZAAAAGMAAABkAAAATAAAAEwAAABHAAAATAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAZAAAAEcAAABHAAAARwAAAWQAAABjAAAAZAAAAEcAAABMAAAARwAAA0wAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAAARwAAAEcAAAJkAAAAYwAAAGQAAABMAAAATAAAAEwAAABMAAAAZAAAAAAAAAAAAAAAZAAAAGQAAABkAAAARwAAAEcAAANHAAAAZAAAAGMAAABkAAAARwAAAEwAAABHAAADRwAAAGQAAAAAAAAAZAAAAGQAAAAlAAAAZAAAAEcAAAJHAAADRwAAAmQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGQAAABbAAABWwAAA2QAAABHAAADRwAAAEcAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAWwAAAFoAAANkAAAARwAAAkcAAANHAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABXAAABZAAAAGQAAABHAAABRwAAAWQAAABjAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGEAAAJhAAABYQAAAmQAAAAWAAAARwAAAkcAAANkAAAAYwAAAAAAAABjAAAAZAAAAGQAAABhAAAAYQAAACoAAABhAAABYQAAAWEAAAJkAAAAFgAAAkcAAANHAAADZAAAAGMAAAAAAAAAYwAAAGQAAABhAAACYQAAAGEAAAEqAAAAYQAAAmEAAABhAAABZAAAABYAAAFHAAADRwAAAWQAAABjAAAAAAAAAGMAAABkAAAAYQAAAGEAAANhAAABGwAAAmEAAABhAAADYQAAAmQAAAAWAAABRwAAAkcAAABkAAAAYwAAAGMAAABjAAAAZAAAAGEAAABhAAADYQAAA2QAAABhAAAAYQAAAmEAAAJkAAAAFgAAAjoAAAE6AAABZAAAAGQAAAAAAAAAYwAAAGQAAABkAAAAFgAAABYAAABkAAAAFgAAARYAAAIWAAADZAAAABYAAAJHAAABRwAAA0cAAAFkAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAAAZAAAAGQAAABkAAAARwAAAkcAAABHAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAFgAAAxYAAAEWAAABFgAAAA== 0,0: ind: 0,0 - tiles: GgAAARoAAAEaAAACGgAAABoAAAFoAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABoAAAASwAAAxoAAAAaAAABGgAAAhoAAAEaAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAqAAAAKgAAAyoAAABnAAAAaAAAAEsAAAAaAAABGgAAAhoAAAEaAAACaAAAAGgAAABnAAAAAAAAAGcAAAAqAAACPQAAAT0AAAI9AAABKgAAAGgAAABLAAABGgAAARoAAAEaAAABGgAAAGgAAABnAAAAAAAAAGcAAAAqAAABPQAAAj0AAAA9AAADPQAAAz0AAAEqAAADSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAABnAAAAKgAAAj0AAAE9AAAAPQAAAT0AAAI9AAADKgAAA0sAAAFnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAACoAAAEaAAABPQAAAD0AAAM9AAACGgAAAyoAAABLAAABZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGgAAABoAAAAKgAAAyoAAAI/AAACKgAAAyoAAAFoAAAAPgAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAABLAAADSwAAA0sAAABLAAAASwAAAksAAAFoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAABSwAAAksAAANLAAAASwAAAUsAAABLAAABSwAAAksAAAFLAAACSwAAAksAAAJLAAABSwAAAUsAAAFLAAAASwAAA0sAAAJLAAAASwAAAksAAANLAAABSwAAAEsAAANLAAABSwAAA0sAAANLAAADSwAAAEsAAABLAAAASwAAAEsAAAFLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAD4AAAFLAAADSwAAA0sAAAFLAAABSwAAA2gAAABoAAAAaAAAAGgAAABLAAADSwAAA0sAAAFLAAACSwAAAWgAAABLAAABSwAAA2gAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAJoAAAASwAAAUsAAAJLAAAASwAAA0sAAANoAAAASwAAAksAAAFLAAADaAAAAEsAAABLAAADSwAAAUsAAABLAAACaAAAAEsAAANLAAABSwAAAEsAAAFLAAACSwAAAUsAAAJLAAADSwAAAUsAAANLAAADSwAAAEsAAANLAAACSwAAAksAAAFLAAABSwAAA0sAAAFLAAACSwAAAGgAAABLAAAASwAAAEsAAABoAAAASwAAA0sAAABLAAACSwAAAUsAAABoAAAASwAAAksAAABLAAACSwAAAEsAAANoAAAASwAAAA== + tiles: FgAAARYAAAEWAAACFgAAABYAAAFkAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABkAAAARwAAAxYAAAAWAAABFgAAAhYAAAEWAAAAZAAAAGMAAAAAAAAAAAAAAGMAAAAmAAAAJgAAAyYAAABjAAAAZAAAAEcAAAAWAAABFgAAAhYAAAEWAAACZAAAAGQAAABjAAAAAAAAAGMAAAAmAAACOQAAATkAAAI5AAABJgAAAGQAAABHAAABFgAAARYAAAEWAAABFgAAAGQAAABjAAAAAAAAAGMAAAAmAAABOQAAAjkAAAA5AAADOQAAAzkAAAEmAAADRwAAA2QAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAABjAAAAJgAAAjkAAAE5AAAAOQAAATkAAAI5AAADJgAAA0cAAAFjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAYwAAACYAAAEWAAABOQAAADkAAAM5AAACFgAAAyYAAABHAAABYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGQAAABkAAAAJgAAAyYAAAI7AAACJgAAAyYAAAFkAAAAOgAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAABHAAADRwAAA0cAAABHAAAARwAAAkcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAABRwAAAkcAAANHAAAARwAAAUcAAABHAAABRwAAAkcAAAFHAAACRwAAAkcAAAJHAAABRwAAAUcAAAFHAAAARwAAA0cAAAJHAAAARwAAAkcAAANHAAABRwAAAEcAAANHAAABRwAAA0cAAANHAAADRwAAAEcAAABHAAAARwAAAEcAAAFHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAADoAAAFHAAADRwAAA0cAAAFHAAABRwAAA2QAAABkAAAAZAAAAGQAAABHAAADRwAAA0cAAAFHAAACRwAAAWQAAABHAAABRwAAA2QAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAAJkAAAARwAAAUcAAAJHAAAARwAAA0cAAANkAAAARwAAAkcAAAFHAAADZAAAAEcAAABHAAADRwAAAUcAAABHAAACZAAAAEcAAANHAAABRwAAAEcAAAFHAAACRwAAAUcAAAJHAAADRwAAAUcAAANHAAADRwAAAEcAAANHAAACRwAAAkcAAAFHAAABRwAAA0cAAAFHAAACRwAAAGQAAABHAAAARwAAAEcAAABkAAAARwAAA0cAAABHAAACRwAAAUcAAABkAAAARwAAAkcAAABHAAACRwAAAEcAAANkAAAARwAAAA== -1,0: ind: -1,0 - tiles: SwAAAUsAAAFLAAADaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAGgAAAxoAAAIaAAADGgAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAABoAAAEaAAAAGgAAAxoAAAFLAAABSwAAAGgAAABYAAAAWAAAABoAAAMaAAADGgAAARoAAABoAAAAZwAAAGgAAABoAAAAGgAAABoAAAIaAAABSwAAAUsAAAAaAAADWAAAAFgAAABAAAAAQAAAAEAAAAAaAAADaAAAAAAAAABnAAAAaAAAABoAAAMaAAABGgAAA0sAAAFLAAADaAAAAFgAAABYAAAAQAAAAEAAAABAAAAAGgAAAmgAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAA2gAAAAwAAAAMAAAAEAAAABAAAAAQAAAABoAAABoAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAPgAAAT4AAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAEsAAAFLAAADSwAAAksAAANLAAACSwAAA0sAAABLAAADSwAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABLAAACSwAAAEsAAAFLAAADSwAAAksAAABLAAAASwAAA0sAAAJLAAABSwAAA0sAAANoAAAAaAAAAGgAAABoAAAASwAAAksAAAFLAAAASwAAAEsAAAFLAAABSwAAA0sAAAJLAAADSwAAAUsAAAFLAAABSwAAAEsAAAJLAAACSwAAAj4AAAE+AAAAaAAAAGgAAABoAAAAaAAAAEsAAAJoAAAAaAAAAEsAAABLAAAASwAAAUsAAAFLAAACSwAAAksAAAFLAAABSwAAAhoAAAMaAAAAaAAAAGUAAAFlAAADZQAAAWgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAAFLAAACSwAAAksAAAIaAAABGgAAAWgAAABlAAADZQAAAGUAAABlAAACZQAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAADGgAAAxoAAANoAAAAZQAAAGUAAAJlAAADZQAAAmUAAAFoAAAAGgAAABoAAAEaAAABaAAAAEsAAAJLAAACSwAAAWgAAABoAAAAaAAAAGUAAAFlAAAAZQAAAGUAAAFlAAACaAAAABoAAAAaAAACGgAAAEsAAAJLAAADSwAAAUsAAAFoAAAAZQAAAGUAAANlAAACZQAAAWUAAANlAAADZQAAAWgAAAAaAAADGgAAAxoAAAFoAAAASwAAAA== + tiles: RwAAAUcAAAFHAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAFgAAAxYAAAIWAAADFgAAAEcAAABHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAABYAAAEWAAAAFgAAAxYAAAFHAAABRwAAAGQAAABUAAAAVAAAABYAAAMWAAADFgAAARYAAABkAAAAYwAAAGQAAABkAAAAFgAAABYAAAIWAAABRwAAAUcAAAAWAAADVAAAAFQAAAA8AAAAPAAAADwAAAAWAAADZAAAAAAAAABjAAAAZAAAABYAAAMWAAABFgAAA0cAAAFHAAADZAAAAFQAAABUAAAAPAAAADwAAAA8AAAAFgAAAmQAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAA2QAAAAsAAAALAAAADwAAAA8AAAAPAAAABYAAABkAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAOgAAAToAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAEcAAAFHAAADRwAAAkcAAANHAAACRwAAA0cAAABHAAADRwAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABHAAACRwAAAEcAAAFHAAADRwAAAkcAAABHAAAARwAAA0cAAAJHAAABRwAAA0cAAANkAAAAZAAAAGQAAABkAAAARwAAAkcAAAFHAAAARwAAAEcAAAFHAAABRwAAA0cAAAJHAAADRwAAAUcAAAFHAAABRwAAAEcAAAJHAAACRwAAAjoAAAE6AAAAZAAAAGQAAABkAAAAZAAAAEcAAAJkAAAAZAAAAEcAAABHAAAARwAAAUcAAAFHAAACRwAAAkcAAAFHAAABRwAAAhYAAAMWAAAAZAAAAGEAAAFhAAADYQAAAWQAAABkAAAAZAAAAGQAAABHAAAARwAAAEcAAAFHAAACRwAAAkcAAAIWAAABFgAAAWQAAABhAAADYQAAAGEAAABhAAACYQAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAADFgAAAxYAAANkAAAAYQAAAGEAAAJhAAADYQAAAmEAAAFkAAAAFgAAABYAAAEWAAABZAAAAEcAAAJHAAACRwAAAWQAAABkAAAAZAAAAGEAAAFhAAAAYQAAAGEAAAFhAAACZAAAABYAAAAWAAACFgAAAEcAAAJHAAADRwAAAUcAAAFkAAAAYQAAAGEAAANhAAACYQAAAWEAAANhAAADYQAAAWQAAAAWAAADFgAAAxYAAAFkAAAARwAAAA== 0,-2: ind: 0,-2 - tiles: SwAAAEsAAANoAAAAGgAAABoAAAAaAAACZQAAAWUAAANlAAAAaAAAADcAAAA3AAAANwAAADcAAAA3AAAAaAAAAEsAAANLAAADaAAAABoAAAMaAAADGgAAAGgAAABoAAAAaAAAAGgAAAA3AAAANwAAADcAAAA3AAAANwAAAGgAAABLAAAASwAAARoAAAAaAAABGgAAAxoAAAMaAAABGgAAABoAAAJoAAAAaAAAAGgAAAA/AAADaAAAAGgAAAAaAAAASwAAAEsAAANoAAAAGgAAARoAAAMaAAADGgAAARoAAAEaAAABaAAAAA8AAANlAAABZQAAA2UAAAFlAAAAZQAAAEsAAANLAAAAaAAAABoAAAAaAAACGgAAAxoAAAEaAAAAGgAAAWgAAAAPAAABZQAAA2UAAABlAAAAZQAAAWUAAAJLAAAASwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAADwAAAw8AAAEPAAAADwAAAw8AAAEPAAAASwAAAEsAAANoAAAAPgAAAz4AAAA+AAABPgAAAD4AAAA+AAACaAAAAGgAAABoAAAAaAAAAA8AAAFoAAAAaAAAAEsAAAJLAAADPgAAAEsAAAJLAAABSwAAA0sAAABLAAACSwAAAUsAAAJLAAABSwAAA0sAAAFLAAADSwAAAksAAANLAAADSwAAAz4AAABLAAACSwAAA0sAAAFLAAACSwAAAUsAAANLAAAASwAAA0sAAANLAAABSwAAAEsAAAFLAAAASwAAAksAAAA+AAACSwAAA0sAAAFLAAABSwAAAEsAAAJLAAAASwAAAUsAAAFLAAADSwAAAksAAAFLAAACSwAAAUsAAAJLAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAADSwAAAksAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAAASwAAAGgAAABnAAAAZwAAAGgAAABLAAABSwAAAksAAAJLAAAASwAAAxoAAAMaAAACGgAAAGgAAABLAAABSwAAA0sAAAFoAAAAAAAAAAAAAABoAAAASwAAAEsAAANLAAADSwAAAWgAAAAaAAACGgAAABoAAANoAAAASwAAA0sAAAFLAAAAaAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAANoAAAAaAAAAEsAAAJLAAABSwAAAWgAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABLAAACSwAAAWgAAABLAAABSwAAAEsAAAJoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAASwAAA0sAAAFLAAADSwAAAw== + tiles: RwAAAEcAAANkAAAAFgAAABYAAAAWAAACYQAAAWEAAANhAAAAZAAAADMAAAAzAAAAMwAAADMAAAAzAAAAZAAAAEcAAANHAAADZAAAABYAAAMWAAADFgAAAGQAAABkAAAAZAAAAGQAAAAzAAAAMwAAADMAAAAzAAAAMwAAAGQAAABHAAAARwAAARYAAAAWAAABFgAAAxYAAAMWAAABFgAAABYAAAJkAAAAZAAAAGQAAAA7AAADZAAAAGQAAAAWAAAARwAAAEcAAANkAAAAFgAAARYAAAMWAAADFgAAARYAAAEWAAABZAAAAAsAAANhAAABYQAAA2EAAAFhAAAAYQAAAEcAAANHAAAAZAAAABYAAAAWAAACFgAAAxYAAAEWAAAAFgAAAWQAAAALAAABYQAAA2EAAABhAAAAYQAAAWEAAAJHAAAARwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAACwAAAwsAAAELAAAACwAAAwsAAAELAAAARwAAAEcAAANkAAAAOgAAAzoAAAA6AAABOgAAADoAAAA6AAACZAAAAGQAAABkAAAAZAAAAAsAAAFkAAAAZAAAAEcAAAJHAAADOgAAAEcAAAJHAAABRwAAA0cAAABHAAACRwAAAUcAAAJHAAABRwAAA0cAAAFHAAADRwAAAkcAAANHAAADRwAAAzoAAABHAAACRwAAA0cAAAFHAAACRwAAAUcAAANHAAAARwAAA0cAAANHAAABRwAAAEcAAAFHAAAARwAAAkcAAAA6AAACRwAAA0cAAAFHAAABRwAAAEcAAAJHAAAARwAAAUcAAAFHAAADRwAAAkcAAAFHAAACRwAAAUcAAAJHAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAADRwAAAkcAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAAARwAAAGQAAABjAAAAYwAAAGQAAABHAAABRwAAAkcAAAJHAAAARwAAAxYAAAMWAAACFgAAAGQAAABHAAABRwAAA0cAAAFkAAAAAAAAAAAAAABkAAAARwAAAEcAAANHAAADRwAAAWQAAAAWAAACFgAAABYAAANkAAAARwAAA0cAAAFHAAAAZAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAANkAAAAZAAAAEcAAAJHAAABRwAAAWQAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABHAAACRwAAAWQAAABHAAABRwAAAEcAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAARwAAA0cAAAFHAAADRwAAAw== -1,-2: ind: -1,-2 - tiles: aAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAEsAAAJlAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABaAAAAGgAAABoAAAAaAAAADcAAAA3AAAANwAAADcAAAAaAAADGgAAABoAAAEaAAADGgAAAxoAAABoAAAASwAAAmgAAABoAAAAaAAAAGgAAAA3AAAANwAAADcAAAA3AAAAGgAAAxoAAAMaAAACGgAAAhoAAAIaAAABaAAAAEsAAANoAAAAaAAAAGgAAABoAAAANwAAADcAAAA3AAAANwAAABoAAAAaAAACGgAAAhoAAAIaAAAAGgAAAmgAAABLAAADWAAAAGgAAABoAAAAaAAAAGgAAABoAAAANwAAAGgAAABoAAAAaAAAAGgAAAAaAAABGgAAAhoAAAFoAAAASwAAAksAAAJLAAADSwAAAksAAAFLAAADSwAAAksAAAJLAAADSwAAAEsAAABLAAAASwAAAEsAAAJLAAABPgAAA0sAAABLAAABSwAAAksAAANLAAABSwAAA0sAAAFLAAAASwAAAksAAAFLAAABSwAAAksAAANLAAAASwAAAT4AAAJLAAACSwAAAEsAAANLAAABSwAAAEsAAABLAAAASwAAAEsAAAFLAAADSwAAA0sAAAJLAAACSwAAAksAAAI+AAACSwAAAksAAAFLAAABaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAADSwAAAWgAAABnAAAAZwAAAGcAAABoAAAAGgAAA2gAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABLAAACSwAAAUsAAABoAAAAZwAAAGgAAABoAAAAaAAAABoAAANoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABoAAAASwAAA0sAAAFLAAADaAAAAGcAAABoAAAAKQAAAGgAAAAaAAADGgAAAhoAAAEaAAACaAAAAAAAAAAAAAAAaAAAAEsAAAE+AAACPgAAAWgAAABnAAAAaAAAACkAAABoAAAAGgAAAxoAAAEaAAADGgAAAGgAAAAAAAAAAAAAAGgAAABLAAAASwAAAUsAAANoAAAAZwAAAGgAAABZAAAAaAAAAGgAAABoAAAAOQAAAGgAAABoAAAAAAAAAAAAAABoAAAASwAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABkAAAARwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAEcAAAJhAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABZAAAAGQAAABkAAAAZAAAADMAAAAzAAAAMwAAADMAAAAWAAADFgAAABYAAAEWAAADFgAAAxYAAABkAAAARwAAAmQAAABkAAAAZAAAAGQAAAAzAAAAMwAAADMAAAAzAAAAFgAAAxYAAAMWAAACFgAAAhYAAAIWAAABZAAAAEcAAANkAAAAZAAAAGQAAABkAAAAMwAAADMAAAAzAAAAMwAAABYAAAAWAAACFgAAAhYAAAIWAAAAFgAAAmQAAABHAAADVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAMwAAAGQAAABkAAAAZAAAAGQAAAAWAAABFgAAAhYAAAFkAAAARwAAAkcAAAJHAAADRwAAAkcAAAFHAAADRwAAAkcAAAJHAAADRwAAAEcAAABHAAAARwAAAEcAAAJHAAABOgAAA0cAAABHAAABRwAAAkcAAANHAAABRwAAA0cAAAFHAAAARwAAAkcAAAFHAAABRwAAAkcAAANHAAAARwAAAToAAAJHAAACRwAAAEcAAANHAAABRwAAAEcAAABHAAAARwAAAEcAAAFHAAADRwAAA0cAAAJHAAACRwAAAkcAAAI6AAACRwAAAkcAAAFHAAABZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAADRwAAAWQAAABjAAAAYwAAAGMAAABkAAAAFgAAA2QAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABHAAACRwAAAUcAAABkAAAAYwAAAGQAAABkAAAAZAAAABYAAANkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABkAAAARwAAA0cAAAFHAAADZAAAAGMAAABkAAAAJQAAAGQAAAAWAAADFgAAAhYAAAEWAAACZAAAAAAAAAAAAAAAZAAAAEcAAAE6AAACOgAAAWQAAABjAAAAZAAAACUAAABkAAAAFgAAAxYAAAEWAAADFgAAAGQAAAAAAAAAAAAAAGQAAABHAAAARwAAAUcAAANkAAAAYwAAAGQAAABVAAAAZAAAAGQAAABkAAAANQAAAGQAAABkAAAAAAAAAAAAAABkAAAARwAAAA== 0,-3: ind: 0,-3 - tiles: SwAAAEsAAAJLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAAASwAAAWgAAAA7AAAAOwAAADsAAAA7AAAAaAAAAGgAAABoAAAAUAAAAFAAAABoAAAAaAAAAGgAAABLAAADSwAAAUsAAAI7AAAAOwAAADsAAAA7AAAAOwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABQAAAASwAAAksAAAJLAAADaAAAADsAAAA7AAAAOwAAADsAAABoAAAAaAAAAFAAAABoAAAAaAAAAFAAAABoAAAAaAAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAUAAAAGgAAABoAAAAUAAAAGgAAABLAAAASwAAA2gAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAFYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAA2gAAAAaAAABGgAAAxoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAJoAAAAGgAAAhoAAAIaAAADaAAAAFgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABYAAAAaAAAAEsAAAFLAAABGgAAAhoAAAMaAAACGgAAARoAAAIaAAAAaAAAABoAAAEaAAABGgAAAWgAAAA3AAAANwAAABoAAAJLAAADSwAAAWgAAAAaAAACGgAAAhoAAAIaAAADGgAAAmgAAABlAAAAZQAAAWUAAAJoAAAANwAAADcAAABoAAAASwAAA0sAAANoAAAAGgAAAxoAAAIaAAAAGgAAARoAAAFoAAAAZQAAAGUAAABlAAADaAAAADcAAAA3AAAAaAAAAEsAAANLAAABaAAAABoAAAAaAAAAGgAAAxoAAAEaAAADaAAAAGUAAANlAAAAZQAAAWgAAAA3AAAANwAAAGgAAABLAAABSwAAA2gAAABoAAAAaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAZQAAAWgAAABoAAAANwAAADcAAABoAAAASwAAAksAAAFoAAAAGgAAAhoAAAAaAAABaAAAAGUAAANlAAABaAAAADcAAAA3AAAANwAAADcAAAA3AAAAaAAAAA== + tiles: RwAAAEcAAAJHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAAARwAAAWQAAAA3AAAANwAAADcAAAA3AAAAZAAAAGQAAABkAAAATAAAAEwAAABkAAAAZAAAAGQAAABHAAADRwAAAUcAAAI3AAAANwAAADcAAAA3AAAANwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEwAAABMAAAARwAAAkcAAAJHAAADZAAAADcAAAA3AAAANwAAADcAAABkAAAAZAAAAEwAAABkAAAAZAAAAEwAAABkAAAAZAAAAEcAAABHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAATAAAAGQAAABkAAAATAAAAGQAAABHAAAARwAAA2QAAABTAAAAUwAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAAFUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAA2QAAAAWAAABFgAAAxYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAAJkAAAAFgAAAhYAAAIWAAADZAAAAFQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABUAAAAZAAAAEcAAAFHAAABFgAAAhYAAAMWAAACFgAAARYAAAIWAAAAZAAAABYAAAEWAAABFgAAAWQAAAAzAAAAMwAAABYAAAJHAAADRwAAAWQAAAAWAAACFgAAAhYAAAIWAAADFgAAAmQAAABhAAAAYQAAAWEAAAJkAAAAMwAAADMAAABkAAAARwAAA0cAAANkAAAAFgAAAxYAAAIWAAAAFgAAARYAAAFkAAAAYQAAAGEAAABhAAADZAAAADMAAAAzAAAAZAAAAEcAAANHAAABZAAAABYAAAAWAAAAFgAAAxYAAAEWAAADZAAAAGEAAANhAAAAYQAAAWQAAAAzAAAAMwAAAGQAAABHAAABRwAAA2QAAABkAAAAZAAAABYAAAFkAAAAZAAAAGQAAABkAAAAYQAAAWQAAABkAAAAMwAAADMAAABkAAAARwAAAkcAAAFkAAAAFgAAAhYAAAAWAAABZAAAAGEAAANhAAABZAAAADMAAAAzAAAAMwAAADMAAAAzAAAAZAAAAA== -1,-3: ind: -1,-3 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAlAAAABoAAAAaAAAAGgAAABoAAAAUAAAAFgAAAAaAAACGgAAAlcAAAAaAAACGgAAARoAAAJLAAACSwAAAksAAAFQAAAAUAAAAFAAAABoAAAAaAAAAGgAAABoAAAAGgAAARoAAANoAAAAGgAAAxoAAAAaAAAASwAAAksAAAFLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAMaAAADaAAAABoAAAMaAAABGgAAAGgAAABLAAABSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAABoAAAASwAAAWgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABXAAAAaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAaAAAAEsAAANoAAAAVwAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAGgAAABLAAADaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAASwAAA2gAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAw== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAkwAAABkAAAAZAAAAGQAAABkAAAATAAAAFQAAAAWAAACFgAAAlMAAAAWAAACFgAAARYAAAJHAAACRwAAAkcAAAFMAAAATAAAAEwAAABkAAAAZAAAAGQAAABkAAAAFgAAARYAAANkAAAAFgAAAxYAAAAWAAAARwAAAkcAAAFHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAMWAAADZAAAABYAAAMWAAABFgAAAGQAAABHAAABRwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAGQAAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAARwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAEcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGMAAABkAAAARwAAAWQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABTAAAAZAAAAGQAAABkAAAAAAAAAAAAAABjAAAAZAAAAEcAAANkAAAAUwAAAGQAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAGQAAABHAAADZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAARwAAA2QAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAEcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAw== 1,-2: ind: 1,-2 - tiles: ZQAAA2UAAANlAAACZQAAA2UAAANlAAACaAAAAA8AAAMPAAAADwAAAw8AAAFoAAAAVQAAA1UAAAFVAAABNAAAAGUAAABlAAAAZQAAAGUAAAJlAAADZQAAAWgAAAAPAAABDwAAAw8AAAIPAAABaAAAADQAAAA0AAAAVQAAAjQAAABlAAADZQAAA2UAAABlAAAAZQAAAmUAAAJoAAAAGgAAAGgAAABoAAAAaAAAAGgAAAA0AAAANAAAAFUAAAI0AAAAZQAAA2UAAAFlAAABZQAAA2UAAAFlAAACaAAAACkAAAApAAAAKQAAACkAAABoAAAANAAAADQAAABVAAADVQAAA2UAAANlAAADZQAAAGUAAAFlAAAAZQAAAWgAAAApAAAAKQAAACkAAAApAAAAaAAAAFUAAAFVAAAAVQAAA1UAAAIPAAADDwAAAw8AAAEPAAACDwAAAg8AAANoAAAAKQAAACkAAAApAAAAKQAAAGgAAABVAAACNAAAAFUAAABVAAACDwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAGgAAABoAAAANAAAAGgAAAA0AAAANAAAAEsAAAJLAAADPgAAA0sAAANLAAABSwAAAEsAAABLAAACSwAAAEsAAAFLAAABSwAAAUsAAABLAAAASwAAAUsAAAA+AAAASwAAAD4AAANLAAACSwAAA0sAAAJLAAABSwAAAksAAANLAAACSwAAAEsAAABLAAACSwAAAUsAAAFLAAABSwAAA0sAAAI+AAAASwAAAEsAAANLAAACSwAAA0sAAANLAAACSwAAAksAAANLAAACSwAAAksAAAJLAAACSwAAA0sAAABLAAACaAAAAGgAAAAPAAABDwAAAA8AAAAPAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAWgAAAAaAAADDwAAAA8AAAEPAAADDwAAAQ8AAAFlAAABZQAAAWUAAAFoAAAAWwAAA1sAAAJoAAAASwAAAEsAAABoAAAAGgAAAA8AAAAPAAAADwAAAQ8AAAIPAAACZQAAA2UAAAFlAAACaAAAAFsAAAJbAAACWwAAAEsAAABLAAAAGgAAARoAAAEPAAADDwAAAg8AAAEPAAACDwAAAWUAAABlAAADZQAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAhoAAAIaAAAADwAAAQ8AAAAPAAADDwAAAg8AAAFlAAAAZQAAA2UAAAJoAAAAWwAAA1sAAAJbAAABSwAAAEsAAAJoAAAAGgAAAg8AAAMPAAABDwAAAA8AAAMPAAADZQAAAGUAAABlAAABaAAAAFsAAABbAAABaAAAAA== + tiles: YQAAA2EAAANhAAACYQAAA2EAAANhAAACZAAAAAsAAAMLAAAACwAAAwsAAAFkAAAAUQAAA1EAAAFRAAABMAAAAGEAAABhAAAAYQAAAGEAAAJhAAADYQAAAWQAAAALAAABCwAAAwsAAAILAAABZAAAADAAAAAwAAAAUQAAAjAAAABhAAADYQAAA2EAAABhAAAAYQAAAmEAAAJkAAAAFgAAAGQAAABkAAAAZAAAAGQAAAAwAAAAMAAAAFEAAAIwAAAAYQAAA2EAAAFhAAABYQAAA2EAAAFhAAACZAAAACUAAAAlAAAAJQAAACUAAABkAAAAMAAAADAAAABRAAADUQAAA2EAAANhAAADYQAAAGEAAAFhAAAAYQAAAWQAAAAlAAAAJQAAACUAAAAlAAAAZAAAAFEAAAFRAAAAUQAAA1EAAAILAAADCwAAAwsAAAELAAACCwAAAgsAAANkAAAAJQAAACUAAAAlAAAAJQAAAGQAAABRAAACMAAAAFEAAABRAAACCwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAGQAAABkAAAAMAAAAGQAAAAwAAAAMAAAAEcAAAJHAAADOgAAA0cAAANHAAABRwAAAEcAAABHAAACRwAAAEcAAAFHAAABRwAAAUcAAABHAAAARwAAAUcAAAA6AAAARwAAADoAAANHAAACRwAAA0cAAAJHAAABRwAAAkcAAANHAAACRwAAAEcAAABHAAACRwAAAUcAAAFHAAABRwAAA0cAAAI6AAAARwAAAEcAAANHAAACRwAAA0cAAANHAAACRwAAAkcAAANHAAACRwAAAkcAAAJHAAACRwAAA0cAAABHAAACZAAAAGQAAAALAAABCwAAAAsAAAALAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAWQAAAAWAAADCwAAAAsAAAELAAADCwAAAQsAAAFhAAABYQAAAWEAAAFkAAAAVwAAA1cAAAJkAAAARwAAAEcAAABkAAAAFgAAAAsAAAALAAAACwAAAQsAAAILAAACYQAAA2EAAAFhAAACZAAAAFcAAAJXAAACVwAAAEcAAABHAAAAFgAAARYAAAELAAADCwAAAgsAAAELAAACCwAAAWEAAABhAAADYQAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAhYAAAIWAAAACwAAAQsAAAALAAADCwAAAgsAAAFhAAAAYQAAA2EAAAJkAAAAVwAAA1cAAAJXAAABRwAAAEcAAAJkAAAAFgAAAgsAAAMLAAABCwAAAAsAAAMLAAADYQAAAGEAAABhAAABZAAAAFcAAABXAAABZAAAAA== 1,-1: ind: 1,-1 - tiles: SwAAAUsAAANoAAAAGgAAAw8AAAAPAAADDwAAAw8AAAIPAAAAZQAAAGUAAAFlAAACaAAAAGgAAABoAAAAaAAAAEsAAANLAAAAaAAAAGgAAAAZAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAA2gAAABlAAAAZQAAAFsAAABLAAABSwAAA2gAAAAaAAADGQAAABkAAAAZAAAAGQAAADoAAAA6AAAAOgAAABoAAABoAAAAZQAAAWUAAAMaAAADSwAAA0sAAAJoAAAAGgAAARkAAAAZAAAAGQAAABkAAAA6AAAAOgAAADoAAAAaAAADaAAAAGUAAAFlAAACaAAAAEsAAABLAAAAaAAAABoAAAMZAAAAGQAAABkAAAAZAAAAOgAAADoAAAA6AAAAGgAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAASwAAAUsAAAFYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAD4AAAA+AAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAGgAAABAAAAAQAAAAEAAAABAAAAAGgAAA2gAAAAaAAADGgAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAJoAAAAQAAAAEAAAABAAAAAQAAAABoAAAEaAAACGgAAAxoAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAADaAAAAEAAAABAAAAAQAAAAEAAAAAaAAADGgAAAxoAAAFoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABLAAADSwAAAGgAAABAAAAAQAAAAEAAAABAAAAAGgAAAxoAAAJoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABXAAAASwAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAABaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABoAAAASwAAAGgAAABLAAACSwAAAWgAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABoAAAASwAAAmgAAABoAAAASwAAAksAAAFoAAAAZwAAAGgAAAAaAAACGgAAAhIAAAAaAAACGgAAA2gAAABnAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: RwAAAUcAAANkAAAAFgAAAwsAAAALAAADCwAAAwsAAAILAAAAYQAAAGEAAAFhAAACZAAAAGQAAABkAAAAZAAAAEcAAANHAAAAZAAAAGQAAAAVAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAA2QAAABhAAAAYQAAAFcAAABHAAABRwAAA2QAAAAWAAADFQAAABUAAAAVAAAAFQAAADYAAAA2AAAANgAAABYAAABkAAAAYQAAAWEAAAMWAAADRwAAA0cAAAJkAAAAFgAAARUAAAAVAAAAFQAAABUAAAA2AAAANgAAADYAAAAWAAADZAAAAGEAAAFhAAACZAAAAEcAAABHAAAAZAAAABYAAAMVAAAAFQAAABUAAAAVAAAANgAAADYAAAA2AAAAFgAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAA2QAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAARwAAAUcAAAFUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAADoAAAA6AAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAGQAAAA8AAAAPAAAADwAAAA8AAAAFgAAA2QAAAAWAAADFgAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAAJkAAAAPAAAADwAAAA8AAAAPAAAABYAAAEWAAACFgAAAxYAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAADZAAAADwAAAA8AAAAPAAAADwAAAAWAAADFgAAAxYAAAFkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABHAAADRwAAAGQAAAA8AAAAPAAAADwAAAA8AAAAFgAAAxYAAAJkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABTAAAARwAAAEcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAABZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABkAAAARwAAAGQAAABHAAACRwAAAWQAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABkAAAARwAAAmQAAABkAAAARwAAAkcAAAFkAAAAYwAAAGQAAAAWAAACFgAAAg4AAAAWAAACFgAAA2QAAABjAAAAZAAAAGQAAABkAAAAZAAAAA== 1,0: ind: 1,0 - tiles: SwAAAksAAAFoAAAAAAAAAGgAAAAwAAAASwAAARIAAAAaAAAAMAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAABaAAAAAAAAABoAAAAMAAAADAAAAASAAAAMAAAADAAAABoAAAAAAAAAGgAAABLAAAAaAAAAGgAAABLAAACSwAAAGgAAAAAAAAAaAAAAEsAAANLAAACEgAAAEsAAABLAAAAaAAAAAAAAABoAAAASwAAAmgAAABoAAAASwAAAEsAAABoAAAAZwAAAGgAAABoAAAAaAAAABoAAAFoAAAAaAAAAGgAAABnAAAAaAAAAEsAAABLAAAAaAAAAEsAAAJLAAADaAAAAAAAAABoAAAAGgAAAzcAAAA3AAAANwAAAGgAAABoAAAAAAAAAGgAAABLAAABSwAAA0sAAANLAAABSwAAAmgAAABoAAAAaAAAAGgAAAAaAAAAGgAAAhoAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAABoAAAAPgAAAz4AAABoAAAASwAAAUsAAAFoAAAAaAAAABoAAABoAAAAaAAAAEsAAAFLAAABaAAAAGgAAABoAAAAaAAAAEsAAANLAAABSwAAAEsAAANLAAADSwAAA0sAAAJLAAAASwAAAksAAAJLAAADSwAAAksAAAJLAAADSwAAAEsAAAFLAAADSwAAAUsAAANLAAADSwAAA0sAAANLAAAASwAAA0sAAABLAAAASwAAA0sAAAJLAAADSwAAA0sAAAFLAAABSwAAA0sAAAJLAAABSwAAAUsAAANLAAACSwAAAEsAAANLAAADSwAAAUsAAABLAAACSwAAAEsAAABLAAACSwAAAD4AAAE+AAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABLAAABSwAAAmgAAABfAAAAXwAAA2gAAAAAAAAAAAAAAAAAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAFbAAAAXwAAAV8AAANoAAAAAAAAAAAAAAAAAAAAaAAAAFcAAABXAAAAaAAAAGgAAABXAAAAVwAAAEsAAAJLAAAAaAAAAF8AAABfAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAWgAAABfAAABRQAAAGgAAAASAAAAEgAAABIAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAABoAAAAaAAAAGgAAABoAAAAQAAAAEAAAABAAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: RwAAAkcAAAFkAAAAAAAAAGQAAAAsAAAARwAAAQ4AAAAWAAAALAAAAGQAAAAAAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAABZAAAAAAAAABkAAAALAAAACwAAAAOAAAALAAAACwAAABkAAAAAAAAAGQAAABHAAAAZAAAAGQAAABHAAACRwAAAGQAAAAAAAAAZAAAAEcAAANHAAACDgAAAEcAAABHAAAAZAAAAAAAAABkAAAARwAAAmQAAABkAAAARwAAAEcAAABkAAAAYwAAAGQAAABkAAAAZAAAABYAAAFkAAAAZAAAAGQAAABjAAAAZAAAAEcAAABHAAAAZAAAAEcAAAJHAAADZAAAAAAAAABkAAAAFgAAAzMAAAAzAAAAMwAAAGQAAABkAAAAAAAAAGQAAABHAAABRwAAA0cAAANHAAABRwAAAmQAAABkAAAAZAAAAGQAAAAWAAAAFgAAAhYAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAABkAAAAOgAAAzoAAABkAAAARwAAAUcAAAFkAAAAZAAAABYAAABkAAAAZAAAAEcAAAFHAAABZAAAAGQAAABkAAAAZAAAAEcAAANHAAABRwAAAEcAAANHAAADRwAAA0cAAAJHAAAARwAAAkcAAAJHAAADRwAAAkcAAAJHAAADRwAAAEcAAAFHAAADRwAAAUcAAANHAAADRwAAA0cAAANHAAAARwAAA0cAAABHAAAARwAAA0cAAAJHAAADRwAAA0cAAAFHAAABRwAAA0cAAAJHAAABRwAAAUcAAANHAAACRwAAAEcAAANHAAADRwAAAUcAAABHAAACRwAAAEcAAABHAAACRwAAADoAAAE6AAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABHAAABRwAAAmQAAABbAAAAWwAAA2QAAAAAAAAAAAAAAAAAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAFXAAAAWwAAAVsAAANkAAAAAAAAAAAAAAAAAAAAZAAAAFMAAABTAAAAZAAAAGQAAABTAAAAUwAAAEcAAAJHAAAAZAAAAFsAAABbAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAWQAAABbAAABQQAAAGQAAAAOAAAADgAAAA4AAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAABkAAAAZAAAAGQAAABkAAAAPAAAADwAAAA8AAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAA== -2,-2: ind: -2,-2 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAAAZQAAAWgAAABoAAAAaAAAAFcAAABoAAAANwAAADcAAAA3AAAANwAAAGUAAAFoAAAAVwAAAGgAAABoAAAAaAAAAEoAAAFoAAAAaAAAAGgAAABXAAAAaAAAADcAAAA3AAAANwAAADcAAABlAAADaAAAAFcAAABoAAAAaAAAAGgAAABKAAAMZwAAAGgAAABoAAAAVwAAAGgAAAA3AAAANwAAADcAAAA3AAAAZQAAAWgAAABXAAAAaAAAAGgAAABlAAADaAAAAGcAAABoAAAAaAAAAFcAAABoAAAANwAAADcAAAA3AAAANwAAAGUAAANoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABXAAAAaAAAAGUAAAJlAAADZQAAAWUAAABmAAABaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAACSwAAAUsAAANLAAACPgAAA0sAAAJLAAADSwAAA0sAAABLAAACSwAAAksAAAJLAAAASwAAAksAAAFLAAADSwAAAUsAAABLAAABSwAAAD4AAANLAAACSwAAAEsAAANLAAAASwAAAksAAAFLAAAASwAAA0sAAABLAAACSwAAAUsAAANLAAAASwAAAksAAAI+AAADSwAAAksAAAJLAAAASwAAAUsAAAFLAAACSwAAAEsAAAFLAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAFLAAABaAAAAEsAAAFoAAAASwAAAUsAAABLAAACSwAAAEsAAAJLAAAASwAAAksAAAIaAAABSwAAAksAAAFLAAADSwAAA0sAAABLAAABGgAAAEsAAABLAAADSwAAAUsAAAJLAAAASwAAAEsAAAJLAAADGgAAA2gAAABLAAAASwAAAksAAAJLAAABSwAAAWgAAABLAAAASwAAAksAAAFLAAAASwAAAksAAANLAAABSwAAAhoAAABLAAABSwAAAksAAANLAAACSwAAAksAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABaAAAAGgAAAA+AAABGgAAA0sAAABLAAACSwAAA0sAAAFLAAADSwAAAEsAAABLAAAASwAAA2gAAAAaAAAAGgAAARoAAABoAAAASwAAAQ== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAAAYQAAAWQAAABkAAAAZAAAAFMAAABkAAAAMwAAADMAAAAzAAAAMwAAAGEAAAFkAAAAUwAAAGQAAABkAAAAZAAAAEYAAAFkAAAAZAAAAGQAAABTAAAAZAAAADMAAAAzAAAAMwAAADMAAABhAAADZAAAAFMAAABkAAAAZAAAAGQAAABGAAAMYwAAAGQAAABkAAAAUwAAAGQAAAAzAAAAMwAAADMAAAAzAAAAYQAAAWQAAABTAAAAZAAAAGQAAABhAAADZAAAAGMAAABkAAAAZAAAAFMAAABkAAAAMwAAADMAAAAzAAAAMwAAAGEAAANkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABTAAAAZAAAAGEAAAJhAAADYQAAAWEAAABiAAABZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAABYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAACRwAAAUcAAANHAAACOgAAA0cAAAJHAAADRwAAA0cAAABHAAACRwAAAkcAAAJHAAAARwAAAkcAAAFHAAADRwAAAUcAAABHAAABRwAAADoAAANHAAACRwAAAEcAAANHAAAARwAAAkcAAAFHAAAARwAAA0cAAABHAAACRwAAAUcAAANHAAAARwAAAkcAAAI6AAADRwAAAkcAAAJHAAAARwAAAUcAAAFHAAACRwAAAEcAAAFHAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAAFHAAABZAAAAEcAAAFkAAAARwAAAUcAAABHAAACRwAAAEcAAAJHAAAARwAAAkcAAAIWAAABRwAAAkcAAAFHAAADRwAAA0cAAABHAAABFgAAAEcAAABHAAADRwAAAUcAAAJHAAAARwAAAEcAAAJHAAADFgAAA2QAAABHAAAARwAAAkcAAAJHAAABRwAAAWQAAABHAAAARwAAAkcAAAFHAAAARwAAAkcAAANHAAABRwAAAhYAAABHAAABRwAAAkcAAANHAAACRwAAAkcAAABkAAAAZAAAAGQAAABkAAAARwAAAGQAAABHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABZAAAAGQAAAA6AAABFgAAA0cAAABHAAACRwAAA0cAAAFHAAADRwAAAEcAAABHAAAARwAAA2QAAAAWAAAAFgAAARYAAABkAAAARwAAAQ== -2,-1: ind: -2,-1 - tiles: aAAAAEsAAAFLAAABSwAAAUsAAABLAAADSwAAAUsAAAJLAAACSwAAAhoAAAEaAAACGgAAARoAAANoAAAASwAAA0sAAAJLAAACSwAAA0sAAAFLAAACSwAAAUsAAAFLAAACSwAAAEsAAABLAAADaAAAAGgAAABoAAAAaAAAAEsAAABLAAABSwAAAUsAAAJLAAAASwAAAEsAAANLAAABSwAAAEsAAANLAAACSwAAA2gAAAAaAAABGgAAAWgAAABLAAADSwAAAksAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAEsAAABLAAABGgAAARoAAABoAAAASwAAAksAAANLAAAASwAAAmgAAAAaAAABGgAAABoAAAFoAAAASwAAAUsAAANLAAADaAAAAGgAAABoAAAAaAAAAEsAAANLAAACSwAAAmgAAABoAAAAGgAAARoAAAAaAAABaAAAAGgAAABLAAADSwAAA2gAAAAaAAACGgAAAGgAAABLAAAASwAAAUsAAABoAAAAGgAAAhoAAAEaAAABGgAAABoAAAFoAAAASwAAAUsAAAFLAAABGgAAARoAAANoAAAASwAAAUsAAABLAAADaAAAAGgAAAAaAAACGgAAAxoAAANoAAAAaAAAAEsAAABLAAACaAAAAGgAAABoAAAAaAAAAEsAAABLAAADSwAAA0sAAAFoAAAAGgAAABoAAAAaAAAAaAAAAEsAAAJLAAADSwAAAGgAAABbAAABWwAAAGgAAABLAAAASwAAAEsAAANLAAAAaAAAAGgAAAAaAAACaAAAAGgAAABLAAACSwAAA0sAAABLAAADWwAAA1sAAAFoAAAASwAAAUsAAABLAAAASwAAAksAAAFLAAADSwAAAUsAAAFLAAADSwAAAksAAABLAAACaAAAABoAAAAaAAACaAAAAEsAAAJoAAAASwAAAUsAAAJLAAADSwAAAUsAAANLAAABSwAAAUsAAANLAAACSwAAA2gAAABLAAADSwAAAyMAAABLAAACGgAAA0sAAANLAAAASwAAAksAAABLAAACSwAAA0sAAAFLAAACSwAAAEsAAAIaAAAASwAAA0sAAABoAAAASwAAAmgAAABLAAADSwAAAUsAAAFLAAADSwAAA0sAAAJLAAAASwAAAUsAAAJLAAAAaAAAABoAAAIaAAABaAAAAD4AAAJoAAAAGgAAA0sAAAFLAAABaAAAABoAAAFoAAAASwAAAUsAAANoAAAAGgAAAmgAAABoAAAAaAAAAGgAAABLAAAAPgAAAz4AAANLAAABQAAAAEAAAABAAAAAQAAAAEAAAABLAAACGgAAABoAAAIaAAAAGgAAAGgAAABLAAAASwAAAw== + tiles: ZAAAAEcAAAFHAAABRwAAAUcAAABHAAADRwAAAUcAAAJHAAACRwAAAhYAAAEWAAACFgAAARYAAANkAAAARwAAA0cAAAJHAAACRwAAA0cAAAFHAAACRwAAAUcAAAFHAAACRwAAAEcAAABHAAADZAAAAGQAAABkAAAAZAAAAEcAAABHAAABRwAAAUcAAAJHAAAARwAAAEcAAANHAAABRwAAAEcAAANHAAACRwAAA2QAAAAWAAABFgAAAWQAAABHAAADRwAAAkcAAABHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAEcAAABHAAABFgAAARYAAABkAAAARwAAAkcAAANHAAAARwAAAmQAAAAWAAABFgAAABYAAAFkAAAARwAAAUcAAANHAAADZAAAAGQAAABkAAAAZAAAAEcAAANHAAACRwAAAmQAAABkAAAAFgAAARYAAAAWAAABZAAAAGQAAABHAAADRwAAA2QAAAAWAAACFgAAAGQAAABHAAAARwAAAUcAAABkAAAAFgAAAhYAAAEWAAABFgAAABYAAAFkAAAARwAAAUcAAAFHAAABFgAAARYAAANkAAAARwAAAUcAAABHAAADZAAAAGQAAAAWAAACFgAAAxYAAANkAAAAZAAAAEcAAABHAAACZAAAAGQAAABkAAAAZAAAAEcAAABHAAADRwAAA0cAAAFkAAAAFgAAABYAAAAWAAAAZAAAAEcAAAJHAAADRwAAAGQAAABXAAABVwAAAGQAAABHAAAARwAAAEcAAANHAAAAZAAAAGQAAAAWAAACZAAAAGQAAABHAAACRwAAA0cAAABHAAADVwAAA1cAAAFkAAAARwAAAUcAAABHAAAARwAAAkcAAAFHAAADRwAAAUcAAAFHAAADRwAAAkcAAABHAAACZAAAABYAAAAWAAACZAAAAEcAAAJkAAAARwAAAUcAAAJHAAADRwAAAUcAAANHAAABRwAAAUcAAANHAAACRwAAA2QAAABHAAADRwAAAx8AAABHAAACFgAAA0cAAANHAAAARwAAAkcAAABHAAACRwAAA0cAAAFHAAACRwAAAEcAAAIWAAAARwAAA0cAAABkAAAARwAAAmQAAABHAAADRwAAAUcAAAFHAAADRwAAA0cAAAJHAAAARwAAAUcAAAJHAAAAZAAAABYAAAIWAAABZAAAADoAAAJkAAAAFgAAA0cAAAFHAAABZAAAABYAAAFkAAAARwAAAUcAAANkAAAAFgAAAmQAAABkAAAAZAAAAGQAAABHAAAAOgAAAzoAAANHAAABPAAAADwAAAA8AAAAPAAAADwAAABHAAACFgAAABYAAAIWAAAAFgAAAGQAAABHAAAARwAAAw== -2,0: ind: -2,0 - tiles: PgAAAD4AAAFLAAABQAAAAEAAAABAAAAAQAAAAEAAAABLAAAAZQAAAWUAAAJlAAABZQAAAGgAAABLAAABSwAAAD4AAAI+AAADSwAAAUAAAABAAAAAQAAAAEAAAABAAAAASwAAAGUAAAJlAAACZQAAA2UAAAJoAAAASwAAAUsAAAEaAAADGgAAA0sAAAJAAAAAQAAAAEAAAABAAAAAQAAAAEsAAAIaAAACGgAAAxoAAAEaAAACaAAAAEsAAAFLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAlkAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAEsAAAAaAAADGgAAA1gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAPgAAAUsAAAJLAAADSwAAAUsAAABLAAABSwAAAUsAAAFLAAADSwAAAEsAAABLAAABSwAAAUsAAANLAAACSwAAAEsAAAFLAAADSwAAAUsAAAFLAAADSwAAAksAAABLAAABSwAAAEsAAAFLAAADSwAAA0sAAAFLAAAASwAAAksAAABLAAAASwAAAEsAAAFLAAAASwAAAksAAANLAAABSwAAAksAAABLAAADSwAAAEsAAABLAAACSwAAAUsAAAJLAAAASwAAAxoAAAFoAAAAaAAAAGgAAABoAAAASwAAAEsAAANLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAD4AAABLAAABGgAAAmgAAAAbAAACZQAAAWUAAANlAAADZQAAAmUAAAAbAAACaAAAAGcAAABnAAAAZwAAAGgAAABLAAAAEgAAABoAAAFoAAAAGwAAA2UAAABlAAACZQAAA2UAAABlAAACGwAAAWgAAAAAAAAAAAAAAAAAAABoAAAASwAAAhIAAABLAAABaAAAABsAAAFlAAADZQAAAmUAAAJlAAAAZQAAAxsAAAFoAAAAZwAAAGcAAABnAAAAaAAAAEsAAAASAAAAGgAAAGgAAAAbAAABZQAAAmUAAABlAAAAZQAAAGUAAAEbAAABaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAABoAAANoAAAAGwAAAWUAAAFlAAADZQAAA2UAAAFlAAAAGwAAAGgAAAAaAAADGgAAAhoAAABoAAAASwAAAA== + tiles: OgAAADoAAAFHAAABPAAAADwAAAA8AAAAPAAAADwAAABHAAAAYQAAAWEAAAJhAAABYQAAAGQAAABHAAABRwAAADoAAAI6AAADRwAAATwAAAA8AAAAPAAAADwAAAA8AAAARwAAAGEAAAJhAAACYQAAA2EAAAJkAAAARwAAAUcAAAEWAAADFgAAA0cAAAI8AAAAPAAAADwAAAA8AAAAPAAAAEcAAAIWAAACFgAAAxYAAAEWAAACZAAAAEcAAAFHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAlUAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAEcAAAAWAAADFgAAA1QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAGQAAABHAAABZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAOgAAAUcAAAJHAAADRwAAAUcAAABHAAABRwAAAUcAAAFHAAADRwAAAEcAAABHAAABRwAAAUcAAANHAAACRwAAAEcAAAFHAAADRwAAAUcAAAFHAAADRwAAAkcAAABHAAABRwAAAEcAAAFHAAADRwAAA0cAAAFHAAAARwAAAkcAAABHAAAARwAAAEcAAAFHAAAARwAAAkcAAANHAAABRwAAAkcAAABHAAADRwAAAEcAAABHAAACRwAAAUcAAAJHAAAARwAAAxYAAAFkAAAAZAAAAGQAAABkAAAARwAAAEcAAANHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAADoAAABHAAABFgAAAmQAAAAXAAACYQAAAWEAAANhAAADYQAAAmEAAAAXAAACZAAAAGMAAABjAAAAYwAAAGQAAABHAAAADgAAABYAAAFkAAAAFwAAA2EAAABhAAACYQAAA2EAAABhAAACFwAAAWQAAAAAAAAAAAAAAAAAAABkAAAARwAAAg4AAABHAAABZAAAABcAAAFhAAADYQAAAmEAAAJhAAAAYQAAAxcAAAFkAAAAYwAAAGMAAABjAAAAZAAAAEcAAAAOAAAAFgAAAGQAAAAXAAABYQAAAmEAAABhAAAAYQAAAGEAAAEXAAABZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAABYAAANkAAAAFwAAAWEAAAFhAAADYQAAA2EAAAFhAAAAFwAAAGQAAAAWAAADFgAAAhYAAABkAAAARwAAAA== 1,-3: ind: 1,-3 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAGgAAABQAAAAaAAAAGgAAABoAAAAVwAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAVwAAAFcAAABXAAAAGgAAABoAAAMaAAACGgAAAhoAAAEaAAAAaAAAAA8AAAAPAAAADwAAAA8AAAAPAAAAaAAAABoAAAAaAAAAaAAAABoAAAAaAAACGgAAAxoAAAEaAAADGgAAAWgAAAAPAAACDwAAAA8AAAMPAAAADwAAAGgAAAA9AAACPQAAA2gAAABlAAACZQAAAGUAAAFlAAAAZQAAAmUAAAEaAAAADwAAAA8AAAIPAAADDwAAAg8AAAMaAAACPQAAAD0AAAMaAAAAZQAAAmUAAABlAAABZQAAA2UAAAJlAAAAaAAAAA8AAAMPAAABDwAAAA8AAAIPAAAAaAAAAD0AAAA9AAABaAAAAGUAAAFlAAACZQAAAmUAAABlAAADZQAAAmgAAAAPAAAADwAAAA8AAAAPAAABaAAAAGgAAAA9AAABPQAAAGgAAABlAAAAZQAAAGUAAANlAAAAZQAAAWUAAANoAAAADwAAAQ8AAAIPAAAADwAAAWgAAABVAAAAVQAAAVUAAAI0AAAAZQAAA2UAAAFlAAACZQAAAGUAAABlAAADaAAAAA8AAAAPAAAADwAAAQ8AAABoAAAAVQAAA1UAAANVAAAAVQAAAQ== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAATAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAGQAAABMAAAAZAAAAGQAAABkAAAAUwAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAUwAAAFMAAABTAAAAFgAAABYAAAMWAAACFgAAAhYAAAEWAAAAZAAAAAsAAAALAAAACwAAAAsAAAALAAAAZAAAABYAAAAWAAAAZAAAABYAAAAWAAACFgAAAxYAAAEWAAADFgAAAWQAAAALAAACCwAAAAsAAAMLAAAACwAAAGQAAAA5AAACOQAAA2QAAABhAAACYQAAAGEAAAFhAAAAYQAAAmEAAAEWAAAACwAAAAsAAAILAAADCwAAAgsAAAMWAAACOQAAADkAAAMWAAAAYQAAAmEAAABhAAABYQAAA2EAAAJhAAAAZAAAAAsAAAMLAAABCwAAAAsAAAILAAAAZAAAADkAAAA5AAABZAAAAGEAAAFhAAACYQAAAmEAAABhAAADYQAAAmQAAAALAAAACwAAAAsAAAALAAABZAAAAGQAAAA5AAABOQAAAGQAAABhAAAAYQAAAGEAAANhAAAAYQAAAWEAAANkAAAACwAAAQsAAAILAAAACwAAAWQAAABRAAAAUQAAAVEAAAIwAAAAYQAAA2EAAAFhAAACYQAAAGEAAABhAAADZAAAAAsAAAALAAAACwAAAQsAAABkAAAAUQAAA1EAAANRAAAAUQAAAQ== -3,0: ind: -3,0 - tiles: GgAAAxoAAAAaAAAAGgAAAGgAAABkAAACZAAAAGgAAAA+AAAASwAAA0sAAANLAAADaAAAAD4AAAM+AAAAPgAAARoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAADSwAAAmgAAAA+AAAAPgAAAz4AAAMaAAABGgAAA2gAAAAaAAACGgAAABoAAAAaAAADGgAAA2gAAABLAAACSwAAAUsAAAJoAAAAPgAAAj4AAAM+AAACGgAAAhoAAAEaAAACGgAAARoAAAMaAAACGgAAAxoAAANoAAAASwAAAEsAAABLAAADaAAAAD4AAAI+AAACPgAAABoAAAIaAAADaAAAABoAAAMaAAADGgAAAxoAAAEaAAACaAAAAEsAAABLAAAASwAAAhoAAAM+AAAAPgAAAj4AAAEtAAACLQAAAmgAAAAaAAAAGgAAABoAAAIaAAAAGgAAAWgAAAA+AAACPgAAAj4AAABoAAAAGgAAABoAAAIaAAABaAAAAGgAAABoAAAAaAAAABoAAAJoAAAAaAAAAGgAAABoAAAASwAAA0sAAANLAAABaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAaAAAABoAAAFlAAABZQAAAGgAAABlAAACaAAAAEsAAAJLAAABSwAAAj4AAANLAAADSwAAA0sAAAFnAAAAAAAAAGgAAAAaAAACZQAAAmUAAAIaAAADZQAAAmgAAABLAAAASwAAAksAAAM+AAADSwAAA0sAAABLAAABZwAAAAAAAABoAAAAGgAAAGUAAANlAAAAaAAAAGUAAAFoAAAASwAAAEsAAAJLAAADPgAAAksAAABLAAABSwAAAWgAAABoAAAAaAAAABoAAANoAAAAaAAAAGgAAABoAAAAaAAAAEMAAABoAAAAaAAAAGgAAABoAAAAGgAAAxoAAAAaAAADGgAAARoAAAIaAAAAaAAAABoAAAAaAAABGgAAARoAAAFDAAAAKQAAACkAAABoAAAASwAAAUsAAANLAAACIwAAAioAAAMaAAABGgAAAGgAAAAaAAADGgAAAhoAAAMaAAAAQwAAAEMAAAApAAAAaAAAAEsAAAMSAAAASwAAAiMAAAAaAAADGgAAARoAAAAaAAABQwAAAEMAAABDAAAAQwAAAEMAAABDAAAAKQAAABoAAAJLAAABEgAAABIAAAAaAAACGgAAABoAAAMaAAABaAAAAEMAAAApAAAAKQAAACkAAABDAAAAQwAAAEMAAABoAAAASwAAAhIAAABLAAACUwAAAksAAANLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAADSwAAAw== + tiles: FgAAAxYAAAAWAAAAFgAAAGQAAABgAAACYAAAAGQAAAA6AAAARwAAA0cAAANHAAADZAAAADoAAAM6AAAAOgAAARYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAADRwAAAmQAAAA6AAAAOgAAAzoAAAMWAAABFgAAA2QAAAAWAAACFgAAABYAAAAWAAADFgAAA2QAAABHAAACRwAAAUcAAAJkAAAAOgAAAjoAAAM6AAACFgAAAhYAAAEWAAACFgAAARYAAAMWAAACFgAAAxYAAANkAAAARwAAAEcAAABHAAADZAAAADoAAAI6AAACOgAAABYAAAIWAAADZAAAABYAAAMWAAADFgAAAxYAAAEWAAACZAAAAEcAAABHAAAARwAAAhYAAAM6AAAAOgAAAjoAAAEpAAACKQAAAmQAAAAWAAAAFgAAABYAAAIWAAAAFgAAAWQAAAA6AAACOgAAAjoAAABkAAAAFgAAABYAAAIWAAABZAAAAGQAAABkAAAAZAAAABYAAAJkAAAAZAAAAGQAAABkAAAARwAAA0cAAANHAAABZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAZAAAABYAAAFhAAABYQAAAGQAAABhAAACZAAAAEcAAAJHAAABRwAAAjoAAANHAAADRwAAA0cAAAFjAAAAAAAAAGQAAAAWAAACYQAAAmEAAAIWAAADYQAAAmQAAABHAAAARwAAAkcAAAM6AAADRwAAA0cAAABHAAABYwAAAAAAAABkAAAAFgAAAGEAAANhAAAAZAAAAGEAAAFkAAAARwAAAEcAAAJHAAADOgAAAkcAAABHAAABRwAAAWQAAABkAAAAZAAAABYAAANkAAAAZAAAAGQAAABkAAAAZAAAAD8AAABkAAAAZAAAAGQAAABkAAAAFgAAAxYAAAAWAAADFgAAARYAAAIWAAAAZAAAABYAAAAWAAABFgAAARYAAAE/AAAAJQAAACUAAABkAAAARwAAAUcAAANHAAACHwAAAiYAAAMWAAABFgAAAGQAAAAWAAADFgAAAhYAAAMWAAAAPwAAAD8AAAAlAAAAZAAAAEcAAAMOAAAARwAAAh8AAAAWAAADFgAAARYAAAAWAAABPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAJQAAABYAAAJHAAABDgAAAA4AAAAWAAACFgAAABYAAAMWAAABZAAAAD8AAAAlAAAAJQAAACUAAAA/AAAAPwAAAD8AAABkAAAARwAAAg4AAABHAAACTwAAAkcAAANHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAADRwAAAw== -3,-2: ind: -3,-2 - tiles: UAAAAGgAAABQAAAAUAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAUAAAAFAAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABoAAAAaAAAAFcAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAAASwAAAEsAAAFLAAAASwAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABLAAABSwAAAksAAANLAAADSwAAAEsAAAJLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAFLAAADSwAAAEsAAANLAAABSwAAAmgAAAAaAAACGgAAAxoAAAMaAAAAGgAAAxoAAAMaAAAAIwAAA0sAAAJLAAABSwAAA2gAAABoAAAAaAAAAGgAAAAaAAABGgAAABoAAAEaAAAAGgAAAhoAAAMaAAABGgAAAiMAAABLAAADSwAAAksAAANoAAAAQwAAAEMAAABDAAAAaAAAABoAAAEaAAACGgAAARoAAAIaAAABGgAAABoAAAIjAAADSwAAAksAAABLAAAAaAAAAEMAAABDAAAAQwAAAGgAAABlAAAAZQAAA2UAAANlAAADZQAAAWUAAAFlAAADaAAAAEsAAABLAAACSwAAAmgAAABDAAAAQwAAAEMAAABoAAAAZQAAAGUAAANlAAAAZQAAAmUAAAJlAAADZQAAAWgAAAA+AAABPgAAAz4AAABoAAAAQwAAAEMAAABDAAAAGgAAAGUAAABlAAABZQAAAWUAAAFlAAAAZQAAAWUAAABoAAAASwAAAUsAAAFLAAAAaAAAAEMAAABDAAAAQwAAAA== + tiles: TAAAAGQAAABMAAAATAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAATAAAAEwAAABMAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABkAAAAZAAAAFMAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAAARwAAAEcAAAFHAAAARwAAAEcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABHAAABRwAAAkcAAANHAAADRwAAAEcAAAJHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAAFHAAADRwAAAEcAAANHAAABRwAAAmQAAAAWAAACFgAAAxYAAAMWAAAAFgAAAxYAAAMWAAAAHwAAA0cAAAJHAAABRwAAA2QAAABkAAAAZAAAAGQAAAAWAAABFgAAABYAAAEWAAAAFgAAAhYAAAMWAAABFgAAAh8AAABHAAADRwAAAkcAAANkAAAAPwAAAD8AAAA/AAAAZAAAABYAAAEWAAACFgAAARYAAAIWAAABFgAAABYAAAIfAAADRwAAAkcAAABHAAAAZAAAAD8AAAA/AAAAPwAAAGQAAABhAAAAYQAAA2EAAANhAAADYQAAAWEAAAFhAAADZAAAAEcAAABHAAACRwAAAmQAAAA/AAAAPwAAAD8AAABkAAAAYQAAAGEAAANhAAAAYQAAAmEAAAJhAAADYQAAAWQAAAA6AAABOgAAAzoAAABkAAAAPwAAAD8AAAA/AAAAFgAAAGEAAABhAAABYQAAAWEAAAFhAAAAYQAAAWEAAABkAAAARwAAAUcAAAFHAAAAZAAAAD8AAAA/AAAAPwAAAA== -3,-1: ind: -3,-1 - tiles: aAAAAGYAAANmAAAAZQAAA2UAAAFlAAACZgAAAmYAAANoAAAASwAAAEsAAANLAAACaAAAAEMAAABDAAAAQwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAADSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABLAAAASwAAAksAAANoAAAAGgAAAxoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAASwAAA0sAAAFLAAADaAAAABoAAAIaAAAASwAAA1cAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAABSwAAA2gAAABoAAAAaAAAAGgAAABXAAAAaAAAABoAAAAaAAAAGgAAAksAAAJLAAADSwAAA2gAAABLAAABSwAAAksAAAJoAAAAGgAAAxoAAANoAAAAaAAAAGgAAAAaAAACGgAAAhoAAABLAAABSwAAAEsAAANoAAAASwAAAksAAANLAAADaAAAABoAAAAaAAADSwAAABoAAAJoAAAAGgAAAhoAAAEaAAABGgAAAxoAAANoAAAASwAAAUsAAAFLAAADSwAAAWgAAABoAAAAaAAAAGgAAAAaAAACaAAAABoAAAIaAAADGgAAABoAAAIaAAACaAAAAEsAAANLAAADSwAAAUsAAABoAAAAGgAAARoAAANoAAAAGgAAAmgAAAAaAAABGgAAAxoAAAEaAAADGgAAAmgAAABLAAABSwAAAEsAAAJLAAADaAAAABoAAAIaAAACSwAAABoAAAAaAAADGgAAABoAAAEaAAABGgAAAxoAAAFoAAAASwAAAEsAAABLAAADSwAAA2gAAABoAAAAaAAAAGgAAAAaAAACaAAAABoAAAIaAAACGgAAABoAAAIaAAAAGgAAAUsAAAJLAAABSwAAAUsAAABoAAAAGgAAAxoAAAEaAAADGgAAA2gAAAAaAAABGgAAAxoAAAMaAAADGgAAAmgAAABLAAADSwAAAUsAAANLAAABaAAAABoAAAAaAAACGgAAABoAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAAASwAAAGgAAAAaAAABGgAAAxoAAAEaAAADGgAAAhoAAAIaAAADaAAAAFcAAABXAAAAaAAAAD4AAANLAAABSwAAA0sAAAJoAAAAaAAAAGgAAABoAAAAGgAAARoAAAIaAAABGgAAABoAAAIjAAABIwAAARoAAAM+AAAASwAAAEsAAANLAAAAaAAAAD4AAAI+AAACPgAAAw== + tiles: ZAAAAGIAAANiAAAAYQAAA2EAAAFhAAACYgAAAmIAAANkAAAARwAAAEcAAANHAAACZAAAAD8AAAA/AAAAPwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAADRwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAGQAAABHAAAARwAAAkcAAANkAAAAFgAAAxYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAARwAAA0cAAAFHAAADZAAAABYAAAIWAAAARwAAA1MAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAABRwAAA2QAAABkAAAAZAAAAGQAAABTAAAAZAAAABYAAAAWAAAAFgAAAEcAAAJHAAADRwAAA2QAAABHAAABRwAAAkcAAAJkAAAAFgAAAxYAAANkAAAAZAAAAGQAAAAWAAAAFgAAABYAAABHAAABRwAAAEcAAANkAAAARwAAAkcAAANHAAADZAAAABYAAAAWAAADRwAAABYAAAJkAAAAFgAAABYAAAAWAAAAFgAAABYAAABkAAAARwAAAUcAAAFHAAADRwAAAWQAAABkAAAAZAAAAGQAAAAWAAACZAAAABYAAAAWAAAAFgAAABYAAAAWAAAAZAAAAEcAAANHAAADRwAAAUcAAABkAAAAFgAAARYAAANkAAAAFgAAAmQAAAAWAAAAFgAAABYAAAAWAAAAFgAAAGQAAABHAAABRwAAAEcAAAJHAAADZAAAABYAAAIWAAACRwAAABYAAAAWAAADFgAAABYAAAAWAAAAFgAAABYAAABkAAAARwAAAEcAAABHAAADRwAAA2QAAABkAAAAZAAAAGQAAAAWAAACZAAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAAUcAAAJHAAABRwAAAUcAAABkAAAAFgAAAxYAAAEWAAADFgAAA2QAAAAWAAAAFgAAABYAAAAWAAAAFgAAAGQAAABHAAADRwAAAUcAAANHAAABZAAAABYAAAAWAAACFgAAABYAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAAARwAAAGQAAAAWAAABFgAAAxYAAAEWAAADFgAAAhYAAAIWAAADZAAAAFMAAABTAAAAZAAAADoAAANHAAABRwAAA0cAAAJkAAAAZAAAAGQAAABkAAAAFgAAARYAAAIWAAABFgAAABYAAAIfAAABHwAAARYAAAM6AAAARwAAAEcAAANHAAAAZAAAADoAAAI6AAACOgAAAw== 2,-3: ind: 2,-3 - tiles: aAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABXAAAAaAAAAFcAAABoAAAAaAAAAGUAAABlAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABlAAADZQAAAGUAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAFcAAABoAAAAVwAAAGgAAABoAAAAaAAAAGUAAABlAAADAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABXAAAAaAAAAFcAAABoAAAAZQAAA2UAAANlAAABZQAAAwAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFUAAAM0AAAANAAAADQAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAFAAAABVAAACVQAAAFUAAAI0AAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAANAAAADQAAABVAAABNAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAUAAAAGgAAABoAAAAVQAAAmgAAABoAAAAVwAAAGgAAAA+AAACPgAAAD4AAAJoAAAAWwAAAFsAAAJbAAABaAAAAGgAAAA0AAAAVQAAAVUAAANVAAABaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAFsAAAJkAAADWwAAAmgAAABoAAAAVQAAAlUAAAE0AAAANAAAAGgAAABbAAABWwAAA1sAAANbAAAAWwAAA2gAAABbAAAAZAAAAFsAAAFbAAABWwAAAg== + tiles: ZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABTAAAAZAAAAFMAAABkAAAAZAAAAGEAAABhAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABhAAADYQAAAGEAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAFMAAABkAAAAUwAAAGQAAABkAAAAZAAAAGEAAABhAAADAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABTAAAAZAAAAFMAAABkAAAAYQAAA2EAAANhAAABYQAAAwAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAUwAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAFEAAAMwAAAAMAAAADAAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAEwAAABRAAACUQAAAFEAAAIwAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAMAAAADAAAABRAAABMAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAATAAAAGQAAABkAAAAUQAAAmQAAABkAAAAUwAAAGQAAAA6AAACOgAAADoAAAJkAAAAVwAAAFcAAAJXAAABZAAAAGQAAAAwAAAAUQAAAVEAAANRAAABZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAFcAAAJgAAADVwAAAmQAAABkAAAAUQAAAlEAAAEwAAAAMAAAAGQAAABXAAABVwAAA1cAAANXAAAAVwAAA2QAAABXAAAAYAAAAFcAAAFXAAABVwAAAg== 2,-2: ind: 2,-2 - tiles: NAAAAFUAAAE0AAAANAAAAGgAAABbAAACXgAAA2MAAAJeAAAAWwAAAlsAAABbAAAAZAAAAlsAAABbAAAAWwAAAjQAAABVAAABNAAAADQAAABoAAAAWwAAA14AAANjAAACXgAAAFsAAANoAAAAWwAAA2QAAAJbAAABWwAAA1sAAAI0AAAAVQAAA1UAAAJVAAABSwAAAlsAAAFiAAACXgAAAWIAAAJbAAABWwAAAlsAAABkAAADWwAAAFsAAANgAAABVQAAAFUAAAE0AAAANAAAAGgAAABbAAACXgAAAGMAAANeAAAAWwAAAGgAAABbAAABZAAAAFsAAANbAAAAYAAAAFUAAAFVAAABNAAAADQAAABoAAAAWwAAAl4AAANjAAAAXgAAAFsAAAFbAAADWwAAAmQAAAJbAAABWwAAA2AAAAFVAAAANAAAADQAAAA0AAAAaAAAAFsAAABbAAADWwAAAFsAAAJbAAABaAAAAFsAAABbAAADWwAAA1sAAAJbAAAANAAAACwAAAAsAAAALAAAAGgAAABoAAAAWwAAA1sAAANoAAAAaAAAAGgAAABoAAAAWwAAAmgAAABbAAADWwAAAUsAAAJLAAACSwAAAksAAAFoAAAAWwAAAVsAAABbAAACWwAAAlsAAAJoAAAAWwAAA1sAAAJbAAABaAAAAGgAAABLAAACSwAAAEsAAABLAAACWwAAAFsAAANkAAACZAAAA2QAAAJbAAABWwAAAlsAAAJkAAACWwAAAmgAAABbAAADSwAAAEsAAAJLAAABSwAAAGgAAABbAAACWwAAA1sAAABbAAADWwAAAWgAAABbAAAAZAAAAVsAAAJoAAAAWwAAAGgAAABbAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAGQAAABbAAACWwAAAlsAAABbAAADWwAAAVsAAANbAAABaAAAAF8AAABfAAAAWwAAA18AAAFfAAAAaAAAAFsAAAFkAAADWwAAAWgAAABbAAACWwAAAGAAAAJgAAACWwAAA2gAAABfAAADXwAAA2QAAABfAAAAXwAAAWgAAABbAAAAZAAAAFsAAANoAAAAaAAAAFsAAABgAAAAYAAAAFsAAAFbAAADWwAAAGQAAAFkAAADZAAAAlsAAANbAAABWwAAAmQAAANbAAADWwAAA1sAAAFbAAACYAAAAGAAAAJbAAABaAAAAF8AAANfAAADZAAAA18AAABfAAABaAAAAFsAAANkAAACWwAAAVsAAAJbAAABWwAAA1sAAANbAAABWwAAAmgAAABfAAABXwAAAlsAAAJfAAACXwAAA2gAAABbAAADWwAAA1sAAAFbAAACWwAAAA== + tiles: MAAAAFEAAAEwAAAAMAAAAGQAAABXAAACWgAAA18AAAJaAAAAVwAAAlcAAABXAAAAYAAAAlcAAABXAAAAVwAAAjAAAABRAAABMAAAADAAAABkAAAAVwAAA1oAAANfAAACWgAAAFcAAANkAAAAVwAAA2AAAAJXAAABVwAAA1cAAAIwAAAAUQAAA1EAAAJRAAABRwAAAlcAAAFeAAACWgAAAV4AAAJXAAABVwAAAlcAAABgAAADVwAAAFcAAANcAAABUQAAAFEAAAEwAAAAMAAAAGQAAABXAAACWgAAAF8AAANaAAAAVwAAAGQAAABXAAABYAAAAFcAAANXAAAAXAAAAFEAAAFRAAABMAAAADAAAABkAAAAVwAAAloAAANfAAAAWgAAAFcAAAFXAAADVwAAAmAAAAJXAAABVwAAA1wAAAFRAAAAMAAAADAAAAAwAAAAZAAAAFcAAABXAAADVwAAAFcAAAJXAAABZAAAAFcAAABXAAADVwAAA1cAAAJXAAAAMAAAACgAAAAoAAAAKAAAAGQAAABkAAAAVwAAA1cAAANkAAAAZAAAAGQAAABkAAAAVwAAAmQAAABXAAADVwAAAUcAAAJHAAACRwAAAkcAAAFkAAAAVwAAAVcAAABXAAACVwAAAlcAAAJkAAAAVwAAA1cAAAJXAAABZAAAAGQAAABHAAACRwAAAEcAAABHAAACVwAAAFcAAANgAAACYAAAA2AAAAJXAAABVwAAAlcAAAJgAAACVwAAAmQAAABXAAADRwAAAEcAAAJHAAABRwAAAGQAAABXAAACVwAAA1cAAABXAAADVwAAAWQAAABXAAAAYAAAAVcAAAJkAAAAVwAAAGQAAABXAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAGAAAABXAAACVwAAAlcAAABXAAADVwAAAVcAAANXAAABZAAAAFsAAABbAAAAVwAAA1sAAAFbAAAAZAAAAFcAAAFgAAADVwAAAWQAAABXAAACVwAAAFwAAAJcAAACVwAAA2QAAABbAAADWwAAA2AAAABbAAAAWwAAAWQAAABXAAAAYAAAAFcAAANkAAAAZAAAAFcAAABcAAAAXAAAAFcAAAFXAAADVwAAAGAAAAFgAAADYAAAAlcAAANXAAABVwAAAmAAAANXAAADVwAAA1cAAAFXAAACXAAAAFwAAAJXAAABZAAAAFsAAANbAAADYAAAA1sAAABbAAABZAAAAFcAAANgAAACVwAAAVcAAAJXAAABVwAAA1cAAANXAAABVwAAAmQAAABbAAABWwAAAlcAAAJbAAACWwAAA2QAAABXAAADVwAAA1cAAAFXAAACVwAAAA== 3,-3: ind: 3,-3 - tiles: aAAAAGUAAAJlAAAAZQAAAGUAAABlAAABaAAAAGUAAABoAAAAUAAAAGgAAABoAAAAaAAAAAAAAABnAAAAZwAAAGUAAANlAAACaAAAAGUAAAFlAAAAZQAAADcAAABlAAACZQAAAGUAAABQAAAAUAAAAGgAAAAAAAAAZwAAAAAAAABlAAACZQAAAmgAAABlAAAAZQAAAGgAAAA3AAAANwAAADcAAABlAAACUAAAAGgAAABoAAAAAAAAAGcAAABnAAAAZQAAAGUAAAJlAAACZQAAAWUAAABoAAAANwAAADcAAABoAAAAZQAAAlAAAABoAAAAaAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAVwAAAFcAAABXAAAAaAAAAEsAAAFQAAAAaAAAAEsAAAFQAAAAUAAAAFAAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAFAAAABQAAAASwAAA2gAAABLAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABQAAAASwAAAFAAAABQAAAASwAAAVAAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAABoAAAAUAAAAEsAAAJQAAAAUAAAAGgAAABQAAAAaAAAAGgAAABXAAAAaAAAAAAAAABnAAAAZwAAAGgAAABoAAAAUAAAAFAAAABQAAAASwAAAmgAAABoAAAAUAAAAGgAAABoAAAAVwAAAGgAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAABnAAAAWwAAA1sAAAJbAAABWwAAA1sAAABoAAAAZwAAAGcAAABoAAAAVwAAAGgAAABXAAAAaAAAAAAAAABnAAAAZwAAAA== + tiles: ZAAAAGEAAAJhAAAAYQAAAGEAAABhAAABZAAAAGEAAABkAAAATAAAAGQAAABkAAAAZAAAAAAAAABjAAAAYwAAAGEAAANhAAACZAAAAGEAAAFhAAAAYQAAADMAAABhAAACYQAAAGEAAABMAAAATAAAAGQAAAAAAAAAYwAAAAAAAABhAAACYQAAAmQAAABhAAAAYQAAAGQAAAAzAAAAMwAAADMAAABhAAACTAAAAGQAAABkAAAAAAAAAGMAAABjAAAAYQAAAGEAAAJhAAACYQAAAWEAAABkAAAAMwAAADMAAABkAAAAYQAAAkwAAABkAAAAZAAAAAAAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAUwAAAFMAAABTAAAAZAAAAEcAAAFMAAAAZAAAAEcAAAFMAAAATAAAAEwAAABMAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEwAAABMAAAARwAAA2QAAABHAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEwAAABMAAAARwAAAEwAAABMAAAARwAAAUwAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAARwAAAGQAAABkAAAATAAAAEcAAAJMAAAATAAAAGQAAABMAAAAZAAAAGQAAABTAAAAZAAAAAAAAABjAAAAYwAAAGQAAABkAAAATAAAAEwAAABMAAAARwAAAmQAAABkAAAATAAAAGQAAABkAAAAUwAAAGQAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAABjAAAAVwAAA1cAAAJXAAABVwAAA1cAAABkAAAAYwAAAGMAAABkAAAAUwAAAGQAAABTAAAAZAAAAAAAAABjAAAAYwAAAA== 3,-2: ind: 3,-2 - tiles: WwAAAFsAAANbAAABZAAAAFsAAAJoAAAAAAAAAAAAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAFsAAAFbAAADWwAAA2QAAANbAAAAaAAAAAAAAAAAAAAAaAAAAFcAAABoAAAAaAAAAGUAAAFoAAAAaAAAAGcAAABgAAABYAAAAFsAAAJkAAABWwAAA2gAAAAAAAAAAAAAAGgAAABXAAAAaAAAAGgAAABoAAAAZQAAA2gAAABnAAAAYAAAAmAAAABbAAACZAAAA1sAAAFoAAAAZwAAAAAAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGAAAABgAAABWwAAAmQAAAJbAAABaAAAAAAAAAAAAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABbAAACWwAAA1sAAAFkAAABWwAAA2gAAAAAAAAAAAAAAGgAAABXAAAAaAAAAGgAAABlAAADaAAAAGgAAABnAAAAWwAAAlsAAAFbAAABWwAAAFsAAAFoAAAAZwAAAGcAAABoAAAAVwAAAGgAAABoAAAAZQAAAGUAAANoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABbAAACWwAAAlsAAANbAAADaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAAAAAABnAAAAZAAAAWQAAANkAAAAWwAAAWgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAAAAAAAAZwAAAGQAAANkAAABZAAAAFsAAAFoAAAAVwAAAGgAAABXAAAAVwAAAFcAAABXAAAAaAAAAGcAAABoAAAAAAAAAGcAAABbAAADWwAAAVsAAAJbAAABaAAAAFcAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABnAAAAaAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAZwAAAGgAAAAAAAAAZwAAAFsAAAFbAAAAaAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGcAAABkAAADWwAAAWgAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAABnAAAAWwAAAFsAAAFoAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAA== + tiles: VwAAAFcAAANXAAABYAAAAFcAAAJkAAAAAAAAAAAAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAFcAAAFXAAADVwAAA2AAAANXAAAAZAAAAAAAAAAAAAAAZAAAAFMAAABkAAAAZAAAAGEAAAFkAAAAZAAAAGMAAABcAAABXAAAAFcAAAJgAAABVwAAA2QAAAAAAAAAAAAAAGQAAABTAAAAZAAAAGQAAABkAAAAYQAAA2QAAABjAAAAXAAAAlwAAABXAAACYAAAA1cAAAFkAAAAYwAAAAAAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAFwAAABcAAABVwAAAmAAAAJXAAABZAAAAAAAAAAAAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABXAAACVwAAA1cAAAFgAAABVwAAA2QAAAAAAAAAAAAAAGQAAABTAAAAZAAAAGQAAABhAAADZAAAAGQAAABjAAAAVwAAAlcAAAFXAAABVwAAAFcAAAFkAAAAYwAAAGMAAABkAAAAUwAAAGQAAABkAAAAYQAAAGEAAANkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABXAAACVwAAAlcAAANXAAADZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAAAAAABjAAAAYAAAAWAAAANgAAAAVwAAAWQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAAAAAAAAYwAAAGAAAANgAAABYAAAAFcAAAFkAAAAUwAAAGQAAABTAAAAUwAAAFMAAABTAAAAZAAAAGMAAABkAAAAAAAAAGMAAABXAAADVwAAAVcAAAJXAAABZAAAAFMAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABjAAAAZAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAYwAAAGQAAAAAAAAAYwAAAFcAAAFXAAAAZAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAGMAAABgAAADVwAAAWQAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAABjAAAAVwAAAFcAAAFkAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYwAAAA== 2,-1: ind: 2,-1 - tiles: aAAAAFsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABkAAACZAAAAGQAAAFbAAABaAAAAFsAAABbAAADWwAAAFsAAAFbAAABaAAAABoAAAIaAAAAGgAAAhoAAANoAAAAWwAAA1sAAAJbAAABaAAAABoAAANbAAABWwAAAFsAAABbAAACWwAAAmgAAABDAAAAQwAAAEMAAAAaAAAAGgAAA1sAAABkAAABWwAAARoAAAAaAAADWwAAA1sAAABbAAAAWwAAAFsAAANoAAAAQwAAAEMAAABDAAAAGgAAAmgAAABbAAAAZAAAAFsAAAFoAAAAGgAAAGgAAAAaAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAmQAAABbAAABaAAAAGgAAAAaAAACGgAAABoAAABoAAAAGgAAAhoAAAAaAAAAGgAAAhoAAAIaAAADaAAAAFsAAAJkAAAAWwAAAmgAAABbAAAAGgAAAxoAAAAaAAADaAAAABoAAAAaAAABGgAAAhoAAAEaAAAAGgAAARoAAANbAAABZAAAA1sAAANbAAAAWwAAA2gAAABoAAAAaAAAAGgAAAAaAAADGgAAAhoAAAMaAAAAGgAAABoAAABoAAAAWwAAAVsAAAFbAAADaAAAAFsAAABoAAAAaAAAAGgAAABoAAAAGgAAAxoAAAMaAAACGgAAARoAAAEaAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAWAAAABoAAAEaAAABGgAAARoAAAEaAAADGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAAAaAAACGgAAAxoAAAMaAAAAGgAAARoAAAJoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAJLAAABaAAAAEsAAANLAAAASwAAAmgAAAAaAAADSwAAA0sAAAFLAAAAaAAAAGgAAABoAAAAaAAAABoAAANLAAADSwAAAUsAAAFLAAAASwAAAUsAAANoAAAAGgAAAUsAAANLAAADSwAAAQ== + tiles: ZAAAAFcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABgAAACYAAAAGAAAAFXAAABZAAAAFcAAABXAAADVwAAAFcAAAFXAAABZAAAABYAAAIWAAAAFgAAAhYAAANkAAAAVwAAA1cAAAJXAAABZAAAABYAAANXAAABVwAAAFcAAABXAAACVwAAAmQAAAA/AAAAPwAAAD8AAAAWAAAAFgAAA1cAAABgAAABVwAAARYAAAAWAAADVwAAA1cAAABXAAAAVwAAAFcAAANkAAAAPwAAAD8AAAA/AAAAFgAAAmQAAABXAAAAYAAAAFcAAAFkAAAAFgAAAGQAAAAWAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAmAAAABXAAABZAAAAGQAAAAWAAACFgAAABYAAABkAAAAFgAAAhYAAAAWAAAAFgAAAhYAAAIWAAADZAAAAFcAAAJgAAAAVwAAAmQAAABXAAAAFgAAAxYAAAAWAAADZAAAABYAAAAWAAABFgAAAhYAAAEWAAAAFgAAARYAAANXAAABYAAAA1cAAANXAAAAVwAAA2QAAABkAAAAZAAAAGQAAAAWAAADFgAAAhYAAAMWAAAAFgAAABYAAABkAAAAVwAAAVcAAAFXAAADZAAAAFcAAABkAAAAZAAAAGQAAABkAAAAFgAAAxYAAAMWAAACFgAAARYAAAEWAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAVAAAABYAAAEWAAABFgAAARYAAAEWAAADFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAAAWAAACFgAAAxYAAAMWAAAAFgAAARYAAAJkAAAAZAAAAFMAAABTAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAAJHAAABZAAAAEcAAANHAAAARwAAAmQAAAAWAAADRwAAA0cAAAFHAAAAZAAAAGQAAABkAAAAZAAAABYAAANHAAADRwAAAUcAAAFHAAAARwAAAUcAAANkAAAAFgAAAUcAAANHAAADRwAAAQ== 3,-1: ind: 3,-1 - tiles: aAAAAGgAAABbAAADAAAAAGcAAABoAAAAaAAAAFAAAABQAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAABoAAAAaAAAAaAAAAAAAAABnAAAAaAAAAGgAAABoAAAAUAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAaAAADGgAAAmgAAAAAAAAAZwAAAGgAAABoAAAAUAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAGgAAABoAAABoAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABbAAADWwAAAFsAAABoAAAAVwAAAGgAAABoAAAAaAAAAFAAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAWwAAAlsAAANbAAACaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAFsAAAJbAAAAWwAAA2gAAABXAAAAaAAAAGgAAABQAAAAUAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFAAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAAASwAAAEsAAAJLAAACaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAksAAAJLAAADSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAGQAAABXAAADAAAAAGMAAABkAAAAZAAAAEwAAABMAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAABYAAAAWAAAAZAAAAAAAAABjAAAAZAAAAGQAAABkAAAATAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAWAAADFgAAAmQAAAAAAAAAYwAAAGQAAABkAAAATAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAFgAAABYAAABkAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABXAAADVwAAAFcAAABkAAAAUwAAAGQAAABkAAAAZAAAAEwAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAVwAAAlcAAANXAAACZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAFcAAAJXAAAAVwAAA2QAAABTAAAAZAAAAGQAAABMAAAATAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAEwAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHAAAARwAAAEcAAAJHAAACZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAkcAAAJHAAADRwAAA2QAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,-4: ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAADcAAAA3AAAANwAAADcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAA3AAAANwAAADcAAAA3AAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAANwAAADcAAAA3AAAANwAAAGgAAABoAAAAVwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAADMAAAAzAAAAMwAAADMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAzAAAAMwAAADMAAAAzAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAMwAAADMAAAAzAAAAMwAAAGQAAABkAAAAUwAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAA== 2,-4: ind: 2,-4 - tiles: ZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAABXAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAVwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAFcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAAVwAAAFcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABnAAAAZwAAAGcAAABnAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABXAAAAaAAAAFcAAABoAAAAZwAAAGgAAABoAAAAaAAAAA== + tiles: YwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAABTAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAUwAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAFMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABkAAAAUwAAAFMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABjAAAAYwAAAGMAAABjAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABTAAAAZAAAAFMAAABkAAAAYwAAAGQAAABkAAAAZAAAAA== -5,-1: ind: -5,-1 - tiles: AAAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAABoAAAAVwAAAFcAAABXAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: AAAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAAAAAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAABkAAAAUwAAAFMAAABTAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAA== -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAYwAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAA== 3,-4: ind: 3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAZwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABjAAAAYwAAAA== -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABTAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== -4,-1: ind: -4,-1 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAIaAAABGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAWQAAAFkAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAFkAAABoAAAAWQAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAGgAAARoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAEaAAADZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAARoAAAIaAAACGgAAAWgAAAAaAAADKgAAAmcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAEaAAADGgAAABoAAABoAAAAGgAAARoAAANnAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAAAaAAABGgAAAhoAAAIaAAAAaAAAABoAAAEqAAADZwAAAGgAAABoAAAAaAAAAFcAAABoAAAAGgAAARoAAAAaAAADGgAAAxoAAAEaAAACGgAAAmgAAAAaAAADGgAAA2gAAABoAAAAaAAAAGgAAABXAAAAaAAAABoAAAIaAAACGgAAARoAAAIaAAADGgAAAxoAAANoAAAAGgAAASoAAAFXAAAAaAAAAGgAAABoAAAAVwAAAGgAAAAaAAACKgAAARoAAAEqAAACGgAAAioAAAIaAAAAaAAAABoAAAAaAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAGgAAAxoAAAAaAAACGgAAAxoAAAMaAAADGgAAA2gAAAAaAAABKgAAAw== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAIWAAABFgAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAVQAAAFUAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAFUAAABkAAAAVQAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAFgAAARYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAEWAAADYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAARYAAAIWAAACFgAAAWQAAAAWAAADJgAAAmMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAEWAAADFgAAABYAAABkAAAAFgAAARYAAANjAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAAAWAAABFgAAAhYAAAIWAAAAZAAAABYAAAEmAAADYwAAAGQAAABkAAAAZAAAAFMAAABkAAAAFgAAARYAAAAWAAADFgAAAxYAAAEWAAACFgAAAmQAAAAWAAADFgAAA2QAAABkAAAAZAAAAGQAAABTAAAAZAAAABYAAAIWAAACFgAAARYAAAIWAAADFgAAAxYAAANkAAAAFgAAASYAAAFTAAAAZAAAAGQAAABkAAAAUwAAAGQAAAAWAAACJgAAARYAAAEmAAACFgAAAiYAAAIWAAAAZAAAABYAAAAWAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAFgAAAxYAAAAWAAACFgAAAxYAAAMWAAADFgAAA2QAAAAWAAABJgAAAw== -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAaAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAUAAAAFAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAUAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFoAAAAaAAAAAAAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABLAAADSwAAAEsAAABoAAAAaAAAAEsAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAAA3AAAANwAAADcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAANwAAADcAAAA3AAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAADcAAAA3AAAANwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAA3AAAANwAAADcAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAANwAAADcAAAA3AAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAADcAAAA3AAAANwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAAZAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAATAAAAEwAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAATAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFkAAAAZAAAAAAAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABHAAADRwAAAEcAAABkAAAAZAAAAEcAAABHAAAARwAAAGQAAABkAAAAZAAAAGQAAAAzAAAAMwAAADMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAMwAAADMAAAAzAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAADMAAAAzAAAAMwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAzAAAAMwAAADMAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAMwAAADMAAAAzAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAADMAAAAzAAAAMwAAAA== -6,-1: ind: -6,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -6,-2: ind: -6,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAYwAAAA== -4,0: ind: -4,0 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAA2gAAAAaAAADWwAAAmgAAAAaAAAAaAAAAGgAAAAaAAAAGgAAAGgAAABoAAAAaAAAAGgAAAAaAAADGgAAARoAAABoAAAAGgAAA2gAAAAaAAABGgAAAhoAAAJoAAAAGgAAARoAAAJoAAAAaAAAAGgAAABoAAAAGgAAARoAAAIaAAAAaAAAABoAAAEaAAACGgAAAhoAAAEaAAABGgAAAxoAAAAaAAAAaAAAAGgAAABoAAAAaAAAAFgAAABYAAAAWAAAAGgAAAAaAAABKgAAAhoAAAIqAAACGgAAAyoAAAIaAAABKgAAAmgAAABoAAAAaAAAAGgAAABYAAAAWAAAAFgAAABoAAAAGgAAARoAAAEaAAAAGgAAAxoAAAEaAAADGgAAAhoAAANoAAAAaAAAAGgAAABoAAAAWAAAAFgAAABYAAAAaAAAABoAAAEaAAACGgAAAWgAAAAaAAACGgAAAxoAAAJoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAA+AAAAPgAAAT4AAANoAAAAaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAEsAAAFLAAADaAAAADAAAAAaAAADEgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAWwAAAVsAAAFbAAABWwAAAmgAAAAwAAAAGgAAAxIAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAANbAAAAWwAAAlsAAABoAAAAMAAAABoAAAISAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAADWwAAA1sAAAJbAAAAaAAAAGgAAAAaAAABaAAAAGgAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAlsAAAJbAAADWwAAAGgAAAAaAAACGgAAAxoAAAIaAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAAJbAAACWwAAAFsAAAAaAAADGgAAACoAAAAjAAAAKgAAAmgAAABoAAAAWAAAAEsAAAJoAAAAaAAAAFgAAABbAAAAWwAAAVsAAABbAAADaAAAABoAAAMjAAADIwAAACMAAAJoAAAAaAAAAGgAAABoAAAAUAAAAGgAAABoAAAASwAAAUsAAANLAAAASwAAAGgAAAAaAAACGgAAARoAAAAaAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAACMAAABoAAAAaAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAA2QAAAAWAAADVwAAAmQAAAAWAAAAZAAAAGQAAAAWAAAAFgAAAGQAAABkAAAAZAAAAGQAAAAWAAADFgAAARYAAABkAAAAFgAAA2QAAAAWAAABFgAAAhYAAAJkAAAAFgAAARYAAAJkAAAAZAAAAGQAAABkAAAAFgAAARYAAAIWAAAAZAAAABYAAAEWAAACFgAAAhYAAAEWAAABFgAAAxYAAAAWAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAVAAAAGQAAAAWAAABJgAAAhYAAAImAAACFgAAAyYAAAIWAAABJgAAAmQAAABkAAAAZAAAAGQAAABUAAAAVAAAAFQAAABkAAAAFgAAARYAAAEWAAAAFgAAAxYAAAEWAAADFgAAAhYAAANkAAAAZAAAAGQAAABkAAAAVAAAAFQAAABUAAAAZAAAABYAAAEWAAACFgAAAWQAAAAWAAACFgAAAxYAAAJkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAA6AAAAOgAAAToAAANkAAAAZAAAABYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAAEcAAAFHAAADZAAAACwAAAAWAAADDgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAVwAAAVcAAAFXAAABVwAAAmQAAAAsAAAAFgAAAw4AAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAANXAAAAVwAAAlcAAABkAAAALAAAABYAAAIOAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAADVwAAA1cAAAJXAAAAZAAAAGQAAAAWAAABZAAAAGQAAABHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAlcAAAJXAAADVwAAAGQAAAAWAAACFgAAAxYAAAIWAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAAJXAAACVwAAAFcAAAAWAAADFgAAACYAAAAfAAAAJgAAAmQAAABkAAAAVAAAAEcAAAJkAAAAZAAAAFQAAABXAAAAVwAAAVcAAABXAAADZAAAABYAAAMfAAADHwAAAB8AAAJkAAAAZAAAAGQAAABkAAAATAAAAGQAAABkAAAARwAAAUcAAANHAAAARwAAAGQAAAAWAAACFgAAARYAAAAWAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAB8AAABkAAAAZAAAAA== -4,-3: ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAFAAAABQAAAAaAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABQAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABQAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAEwAAABMAAAAZAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABMAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEwAAABMAAAAZAAAAA== 0,-4: ind: 0,-4 - tiles: SwAAAUsAAABLAAADSwAAAmgAAABoAAAAaAAAAEUAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARQAAAEsAAANLAAAASwAAAUsAAANoAAAAaAAAAGgAAABoAAAASAAAAEgAAABIAAAASAAAAEgAAABIAAAASAAAAGgAAABLAAACSwAAAUsAAAFLAAABaAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAJLAAACSwAAAGgAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAADaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABLAAADSwAAAEsAAAJLAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAA0sAAAJLAAABSwAAAmgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABLAAADSwAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABLAAACSwAAA0sAAAJLAAAASwAAAEsAAANLAAACSwAAAEsAAAFLAAABSwAAAmgAAABoAAAAaAAAAAAAAAAAAAAASwAAAEsAAAJLAAACSwAAAEsAAAFLAAACSwAAAUsAAAJLAAAASwAAAEsAAAFoAAAAaAAAAGgAAAAAAAAAAAAAAEsAAAFLAAACSwAAAUsAAAFLAAAASwAAAksAAANLAAAASwAAA0sAAAJLAAADaAAAAGgAAABoAAAAAAAAAAAAAABLAAADSwAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAASwAAAksAAANLAAADaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAABSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABLAAABSwAAAUsAAAJYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAANLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAA== + tiles: RwAAAUcAAABHAAADRwAAAmQAAABkAAAAZAAAAEEAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQQAAAEcAAANHAAAARwAAAUcAAANkAAAAZAAAAGQAAABkAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAGQAAABHAAACRwAAAUcAAAFHAAABZAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAJHAAACRwAAAGQAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAADZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABHAAADRwAAAEcAAAJHAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAA0cAAAJHAAABRwAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEcAAABHAAADRwAAAEcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABHAAACRwAAA0cAAAJHAAAARwAAAEcAAANHAAACRwAAAEcAAAFHAAABRwAAAmQAAABkAAAAZAAAAAAAAAAAAAAARwAAAEcAAAJHAAACRwAAAEcAAAFHAAACRwAAAUcAAAJHAAAARwAAAEcAAAFkAAAAZAAAAGQAAAAAAAAAAAAAAEcAAAFHAAACRwAAAUcAAAFHAAAARwAAAkcAAANHAAAARwAAA0cAAAJHAAADZAAAAGQAAABkAAAAAAAAAAAAAABHAAADRwAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAARwAAAkcAAANHAAADZAAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAABRwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAGQAAABHAAABRwAAAUcAAAJUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAANHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAA== -1,-4: ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAAFLAAACSwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAACSwAAA0sAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAA0sAAABLAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAANLAAADSwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAA0sAAABLAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAAFLAAACSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAUsAAANLAAACSwAAAksAAAJLAAAASwAAA0sAAAFLAAABSwAAAEsAAABLAAABSwAAAUsAAANLAAAASwAAA0sAAABLAAAASwAAAUsAAANLAAABSwAAAUsAAAJLAAACSwAAAUsAAAJLAAADSwAAA0sAAAFLAAACSwAAAEsAAAFLAAADSwAAAksAAABLAAAASwAAAEsAAAJLAAAASwAAAUsAAAJLAAADSwAAAksAAAFLAAADSwAAAksAAAJLAAADSwAAA0sAAAJoAAAAZQAAAksAAABLAAACSwAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACaAAAAGUAAAJlAAAAZQAAAGUAAAJoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAWgAAABlAAABZQAAAmUAAANlAAACaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABLAAABSwAAAQ== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEcAAAFHAAACRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABHAAACRwAAA0cAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAA0cAAABHAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAANHAAADRwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEcAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAA0cAAABHAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAAFHAAACRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAUcAAANHAAACRwAAAkcAAAJHAAAARwAAA0cAAAFHAAABRwAAAEcAAABHAAABRwAAAUcAAANHAAAARwAAA0cAAABHAAAARwAAAUcAAANHAAABRwAAAUcAAAJHAAACRwAAAUcAAAJHAAADRwAAA0cAAAFHAAACRwAAAEcAAAFHAAADRwAAAkcAAABHAAAARwAAAEcAAAJHAAAARwAAAUcAAAJHAAADRwAAAkcAAAFHAAADRwAAAkcAAAJHAAADRwAAA0cAAAJkAAAAGwAAABYAAAAWAAAAFgAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACZAAAAGEAAAJhAAAAYQAAAGEAAAJkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAWQAAABhAAABYQAAAmEAAANhAAACZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABHAAABRwAAAQ== -2,-4: ind: -2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAA0sAAAFLAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAJLAAAASwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAADSwAAAUsAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAA0cAAAFHAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAAJHAAAARwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAADRwAAAUcAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAA== -1,-6: ind: -1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAA== 0,-5: ind: 0,-5 - tiles: aAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAACSwAAA0sAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAUsAAANLAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAEsAAABLAAACSwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAASAAAAGgAAABoAAAAAAAAAAAAAABLAAACSwAAA2gAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASAAAAEQAAABIAAAAaAAAAAAAAAAAAAAASwAAAEsAAAJLAAADSwAAAmgAAAAAAAAAAAAAAAAAAABnAAAAaAAAAEgAAABEAAAASAAAAGgAAABnAAAAAAAAAEsAAABLAAABSwAAAEsAAANoAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAARAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAA0sAAAJLAAABaAAAAGgAAABoAAAAaAAAAEgAAABIAAAASAAAAEQAAABIAAAASAAAAEgAAABoAAAASwAAAEsAAAJLAAAASwAAA2gAAABoAAAAaAAAAEUAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARQAAACwAAAAsAAAASwAAAEsAAAJoAAAAaAAAAGgAAABoAAAASAAAAEQAAABIAAAAaAAAAEgAAABEAAAASAAAAGgAAAAsAAAALAAAAEsAAAFLAAABSwAAAQoAAABoAAAAaAAAAEgAAABEAAAASAAAACwAAABIAAAARAAAAEgAAABoAAAALAAAACwAAABLAAADSwAAAksAAAMKAAAAaAAAAGgAAABIAAAARAAAAEgAAAAsAAAASAAAAEQAAABIAAAAaAAAACwAAAAsAAAASwAAAksAAAJLAAAACgAAAGgAAABoAAAASAAAAEQAAABIAAAALAAAAEgAAABEAAAASAAAAGgAAAAsAAAALAAAAEsAAAFLAAABSwAAAgoAAABoAAAAaAAAAEgAAABEAAAASAAAACwAAABIAAAARAAAAEgAAABoAAAALAAAACwAAABLAAADSwAAA2gAAABoAAAAaAAAAGgAAABIAAAARAAAAEgAAABoAAAASAAAAEQAAABIAAAAaAAAAA== + tiles: ZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHAAACRwAAA0cAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAUcAAANHAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAEcAAABHAAACRwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAARAAAAGQAAABkAAAAAAAAAAAAAABHAAACRwAAA2QAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARAAAAEAAAABEAAAAZAAAAAAAAAAAAAAARwAAAEcAAAJHAAADRwAAAmQAAAAAAAAAAAAAAAAAAABjAAAAZAAAAEQAAABAAAAARAAAAGQAAABjAAAAAAAAAEcAAABHAAABRwAAAEcAAANkAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAQAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAA0cAAAJHAAABZAAAAGQAAABkAAAAZAAAAEQAAABEAAAARAAAAEAAAABEAAAARAAAAEQAAABkAAAARwAAAEcAAAJHAAAARwAAA2QAAABkAAAAZAAAAEEAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQQAAACgAAAAoAAAARwAAAEcAAAJkAAAAZAAAAGQAAABkAAAARAAAAEAAAABEAAAAZAAAAEQAAABAAAAARAAAAGQAAAAoAAAAKAAAAEcAAAFHAAABRwAAAQYAAABkAAAAZAAAAEQAAABAAAAARAAAACgAAABEAAAAQAAAAEQAAABkAAAAKAAAACgAAABHAAADRwAAAkcAAAMGAAAAZAAAAGQAAABEAAAAQAAAAEQAAAAoAAAARAAAAEAAAABEAAAAZAAAACgAAAAoAAAARwAAAkcAAAJHAAAABgAAAGQAAABkAAAARAAAAEAAAABEAAAAKAAAAEQAAABAAAAARAAAAGQAAAAoAAAAKAAAAEcAAAFHAAABRwAAAgYAAABkAAAAZAAAAEQAAABAAAAARAAAACgAAABEAAAAQAAAAEQAAABkAAAAKAAAACgAAABHAAADRwAAA2QAAABkAAAAZAAAAGQAAABEAAAAQAAAAEQAAABkAAAARAAAAEAAAABEAAAAZAAAAA== -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGgAAABlAAABZQAAAmgAAABoAAAAAQAAAAEAAAABAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAACaAAAAAEAAAABAAAAAQAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAFAAAABoAAAAaAAAAGUAAAJoAAAAaAAAAGgAAAABAAAAAQAAAAEAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABQAAAAUAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGQAAABhAAABYQAAAmQAAABkAAAAAQAAAAEAAAABAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAACZAAAAAEAAAABAAAAAQAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAEwAAABkAAAAZAAAAGEAAAJkAAAAZAAAAGQAAAABAAAAAQAAAAEAAABkAAAAZAAAAGQAAABkAAAAZAAAAEwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEwAAABMAAAATAAAAEwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== -1,1: ind: -1,1 - tiles: SwAAAEsAAANLAAACZQAAA2UAAANlAAAAZQAAAGUAAAJlAAADZQAAA2gAAAAaAAADGgAAARoAAAJoAAAAaAAAAEsAAAFLAAABaAAAAGUAAANlAAAAZQAAA2UAAABlAAADZQAAAmUAAANoAAAASwAAA0sAAAFLAAACSwAAAEsAAAJLAAACSwAAAmgAAABlAAAAZQAAAGUAAANlAAADZQAAAmUAAANlAAAAaAAAAEsAAANLAAADSwAAA0sAAABLAAACSwAAAEsAAAFoAAAAZQAAAWUAAAJlAAADZQAAAmUAAABlAAACZQAAAGgAAABLAAAASwAAAUsAAAJLAAABSwAAAUsAAAJLAAAAaAAAAGUAAANlAAACZQAAAWUAAAMaAAAAGgAAAxoAAABoAAAASwAAAksAAANLAAADSwAAAEsAAABLAAABSwAAA2gAAABlAAADZQAAAmUAAANlAAAAGgAAAhoAAAMaAAAAaAAAAEsAAANLAAAASwAAAEsAAABLAAAAPgAAAT4AAAJoAAAAZQAAAGUAAAFlAAAAZQAAABoAAAAaAAAAGgAAAWgAAABoAAAASwAAA0sAAAFoAAAAaAAAAEsAAAJLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAANwAAAGgAAABoAAAASwAAA0sAAAJLAAABSwAAAUsAAAA/AAADSwAAA2gAAABoAAAAVwAAAFcAAABoAAAANwAAADcAAAA3AAAAaAAAAEsAAAJLAAABSwAAABoAAAMaAAACSwAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAADcAAAA3AAAANwAAAGgAAABLAAABSwAAAUsAAAMaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAADaAAAAGgAAABLAAACSwAAAmgAAABLAAADSwAAA0sAAAFLAAAASwAAAksAAAJLAAADSwAAAEsAAANLAAADSwAAAUsAAAJLAAACSwAAAksAAANLAAABSwAAA0sAAAJLAAABSwAAAEsAAANLAAABSwAAAUsAAAFLAAACSwAAAEsAAAJLAAAASwAAAksAAANLAAABaAAAAEsAAANLAAADSwAAAhoAAAAaAAABGgAAARoAAAAaAAABGgAAARoAAAIaAAACGgAAABoAAAFLAAABSwAAAmgAAABLAAABSwAAAUsAAABoAAAAaAAAAGgAAABAAAAAQAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAADaAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAGgAAABLAAADSwAAAQ== + tiles: RwAAAEcAAANHAAACYQAAA2EAAANhAAAAYQAAAGEAAAJhAAADYQAAA2QAAAAWAAADFgAAARYAAAJkAAAAZAAAAEcAAAFHAAABZAAAAGEAAANhAAAAYQAAA2EAAABhAAADYQAAAmEAAANkAAAARwAAA0cAAAFHAAACRwAAAEcAAAJHAAACRwAAAmQAAABhAAAAYQAAAGEAAANhAAADYQAAAmEAAANhAAAAZAAAAEcAAANHAAADRwAAA0cAAABHAAACRwAAAEcAAAFkAAAAYQAAAWEAAAJhAAADYQAAAmEAAABhAAACYQAAAGQAAABHAAAARwAAAUcAAAJHAAABRwAAAUcAAAJHAAAAZAAAAGEAAANhAAACYQAAAWEAAAMWAAAAFgAAAxYAAABkAAAARwAAAkcAAANHAAADRwAAAEcAAABHAAABRwAAA2QAAABhAAADYQAAAmEAAANhAAAAFgAAAhYAAAMWAAAAZAAAAEcAAANHAAAARwAAAEcAAABHAAAAOgAAAToAAAJkAAAAYQAAAGEAAAFhAAAAYQAAABYAAAAWAAAAFgAAAWQAAABkAAAARwAAA0cAAAFkAAAAZAAAAEcAAAJHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAMwAAAGQAAABkAAAARwAAA0cAAAJHAAABRwAAAUcAAAA7AAADRwAAA2QAAABkAAAAUwAAAFMAAABkAAAAMwAAADMAAAAzAAAAZAAAAEcAAAJHAAABRwAAABYAAAMWAAACRwAAAEcAAAJkAAAAZAAAAGQAAABkAAAAZAAAADMAAAAzAAAAMwAAAGQAAABHAAABRwAAAUcAAAMWAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAABHAAADZAAAAGQAAABHAAACRwAAAmQAAABHAAADRwAAA0cAAAFHAAAARwAAAkcAAAJHAAADRwAAAEcAAANHAAADRwAAAUcAAAJHAAACRwAAAkcAAANHAAABRwAAA0cAAAJHAAABRwAAAEcAAANHAAABRwAAAUcAAAFHAAACRwAAAEcAAAJHAAAARwAAAkcAAANHAAABZAAAAEcAAANHAAADRwAAAhYAAAAWAAABFgAAARYAAAAWAAABFgAAARYAAAIWAAACFgAAABYAAAFHAAABRwAAAmQAAABHAAABRwAAAUcAAABkAAAAZAAAAGQAAAA8AAAAPAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAABHAAADZAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAAGQAAABHAAADRwAAAQ== 3,0: ind: 3,0 - tiles: SwAAAksAAABLAAABSwAAA2gAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABLAAABSwAAAUsAAAFoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAADSwAAAksAAABLAAADaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAEsAAAFLAAABSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAJLAAAASwAAAEsAAAFoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAACSwAAAksAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAUsAAAJLAAADSwAAAEsAAAFLAAABSwAAAUsAAABLAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAANLAAAASwAAAEsAAAFLAAADSwAAAEsAAANLAAABSwAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAACSwAAA0sAAANLAAADSwAAA0sAAANLAAADSwAAAEsAAAJoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAksAAAJLAAADSwAAA0sAAAFLAAABSwAAA0sAAANLAAACaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABLAAABSwAAAUsAAANLAAADSwAAAksAAABLAAAASwAAAmgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAUsAAANLAAADSwAAAksAAAJLAAADSwAAAEsAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAASwAAAEsAAABLAAACSwAAA0sAAAJLAAACSwAAAksAAANLAAABaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABLAAAASwAAAksAAABLAAAASwAAA0sAAAFLAAACSwAAAmgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABLAAAASwAAAEsAAAFLAAADSwAAAEsAAANLAAAASwAAAUsAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAASwAAAWgAAABoAAAAaAAAAGgAAABLAAACSwAAA0sAAAFLAAADaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: RwAAAkcAAABHAAABRwAAA2QAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEcAAABHAAABRwAAAUcAAAFkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHAAADRwAAAkcAAABHAAADZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAEcAAAFHAAABRwAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEcAAAJHAAAARwAAAEcAAAFkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHAAACRwAAAkcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAUcAAAJHAAADRwAAAEcAAAFHAAABRwAAAUcAAABHAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEcAAANHAAAARwAAAEcAAAFHAAADRwAAAEcAAANHAAABRwAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHAAACRwAAA0cAAANHAAADRwAAA0cAAANHAAADRwAAAEcAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAkcAAAJHAAADRwAAA0cAAAFHAAABRwAAA0cAAANHAAACZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAEcAAABHAAABRwAAAUcAAANHAAADRwAAAkcAAABHAAAARwAAAmQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAAUcAAANHAAADRwAAAkcAAAJHAAADRwAAAEcAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAARwAAAEcAAABHAAACRwAAA0cAAAJHAAACRwAAAkcAAANHAAABZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAEcAAABHAAAARwAAAkcAAABHAAAARwAAA0cAAAFHAAACRwAAAmQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABHAAAARwAAAEcAAAFHAAADRwAAAEcAAANHAAAARwAAAUcAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAARwAAAWQAAABkAAAAZAAAAGQAAABHAAACRwAAA0cAAAFHAAADZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,1: ind: 0,1 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAABLAAACSwAAAEsAAABLAAAASwAAAUsAAANoAAAAGgAAAhoAAAIaAAABaAAAAGUAAAFlAAACaAAAAEsAAAJLAAABSwAAAEsAAABLAAABSwAAAksAAAFLAAAAaAAAABoAAAEaAAAAGgAAAWgAAABlAAAAZQAAAWgAAABLAAAASwAAAEsAAABLAAACSwAAAEsAAANLAAACSwAAARoAAAAaAAADGgAAABoAAAEaAAAAZQAAA2UAAABoAAAASwAAAEsAAANLAAABSwAAAUsAAANLAAAASwAAA0sAAAJoAAAAGgAAAhoAAAAaAAAAaAAAAGUAAAJlAAABaAAAAEsAAAJLAAACSwAAAksAAAFLAAAASwAAAUsAAAJLAAACaAAAABoAAAEaAAABGgAAA2gAAABoAAAAaAAAAGgAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABoAAAAPgAAAEsAAAFLAAADSwAAA2gAAABLAAABSwAAAEsAAAJLAAABSwAAA2gAAABnAAAAAAAAAAAAAABnAAAAaAAAAEsAAAIaAAAAGgAAAxoAAABLAAACSwAAAUsAAAFoAAAASwAAA0sAAAJoAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABLAAADaAAAAGgAAAAaAAAAaAAAAEsAAAJLAAACaAAAAEsAAAJLAAADaAAAAGcAAAAAAAAAAAAAAGcAAABoAAAASwAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAWgAAABLAAABSwAAAWgAAABnAAAAAAAAAAAAAABnAAAAaAAAAD4AAAJLAAADSwAAABoAAABoAAAASwAAAEsAAABoAAAASwAAAEsAAAJoAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABLAAABSwAAAksAAAEaAAACaAAAAEsAAAFLAAACaAAAAEsAAABLAAADaAAAAGcAAAAAAAAAAAAAAGcAAABoAAAASwAAARoAAAEaAAABGgAAA2gAAABLAAABSwAAAWgAAABLAAABSwAAAWgAAABnAAAAAAAAAAAAAABnAAAAaAAAAGgAAAAaAAAAaAAAAGgAAABoAAAASwAAAEsAAABoAAAASwAAA0sAAAFoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAASwAAAUsAAABLAAAAaAAAAEsAAAFLAAAAaAAAAEsAAANLAAABaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAABHAAACRwAAAEcAAABHAAAARwAAAUcAAANkAAAAFgAAAhYAAAIWAAABZAAAAGEAAAFhAAACZAAAAEcAAAJHAAABRwAAAEcAAABHAAABRwAAAkcAAAFHAAAAZAAAABYAAAEWAAAAFgAAAWQAAABhAAAAYQAAAWQAAABHAAAARwAAAEcAAABHAAACRwAAAEcAAANHAAACRwAAARYAAAAWAAADFgAAABYAAAEWAAAAYQAAA2EAAABkAAAARwAAAEcAAANHAAABRwAAAUcAAANHAAAARwAAA0cAAAJkAAAAFgAAAhYAAAAWAAAAZAAAAGEAAAJhAAABZAAAAEcAAAJHAAACRwAAAkcAAAFHAAAARwAAAUcAAAJHAAACZAAAABYAAAEWAAABFgAAA2QAAABkAAAAZAAAAGQAAABHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABkAAAAOgAAAEcAAAFHAAADRwAAA2QAAABHAAABRwAAAEcAAAJHAAABRwAAA2QAAABjAAAAAAAAAAAAAABjAAAAZAAAAEcAAAIWAAAAFgAAAxYAAABHAAACRwAAAUcAAAFkAAAARwAAA0cAAAJkAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABHAAADZAAAAGQAAAAWAAAAZAAAAEcAAAJHAAACZAAAAEcAAAJHAAADZAAAAGMAAAAAAAAAAAAAAGMAAABkAAAARwAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAWQAAABHAAABRwAAAWQAAABjAAAAAAAAAAAAAABjAAAAZAAAADoAAAJHAAADRwAAABYAAABkAAAARwAAAEcAAABkAAAARwAAAEcAAAJkAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABHAAABRwAAAkcAAAEWAAACZAAAAEcAAAFHAAACZAAAAEcAAABHAAADZAAAAGMAAAAAAAAAAAAAAGMAAABkAAAARwAAARYAAAEWAAABFgAAA2QAAABHAAABRwAAAWQAAABHAAABRwAAAWQAAABjAAAAAAAAAAAAAABjAAAAZAAAAGQAAAAWAAAAZAAAAGQAAABkAAAARwAAAEcAAABkAAAARwAAA0cAAAFkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAARwAAAUcAAABHAAAAZAAAAEcAAAFHAAAAZAAAAEcAAANHAAABZAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAA== 0,-6: ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,-5: ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAANLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAAASwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAEsAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAABLAAABSwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAABSwAAAUsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAA0sAAAJLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAAJLAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAADSwAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAoAAABLAAABSwAAA0sAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAKAAAASwAAAksAAANLAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAACgAAAEsAAAJLAAACSwAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAoAAABLAAAASwAAAksAAAEsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAAFLAAADLAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAANHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAAARwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAAEcAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABHAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAABHAAABRwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAABRwAAAUcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAARwAAA0cAAAJHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEcAAAJHAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABHAAADRwAAAigAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAYAAABHAAABRwAAA0cAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAGAAAARwAAAkcAAANHAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAABgAAAEcAAAJHAAACRwAAAigAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAYAAABHAAAARwAAAkcAAAEoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEcAAAFHAAADKAAAAA== 1,1: ind: 1,1 - tiles: SwAAA0sAAANoAAAAPgAAAz4AAAJoAAAAaAAAACMAAANoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAAAaAAAABoAAAAaAAADGgAAARoAAAIaAAABGgAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAxoAAAAaAAAAGgAAAhoAAAAaAAACGgAAABoAAANoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAASwAAAEsAAAFoAAAAGgAAAxoAAAMaAAAAGgAAABoAAAIaAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAABaAAAABoAAAAaAAAAGgAAARoAAAIaAAADGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAGgAAAAaAAADGgAAAhoAAAIaAAACGgAAAxoAAAFoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAPgAAAj4AAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAFLAAACSwAAA0sAAAJLAAAASwAAAEsAAANLAAADSwAAAksAAABLAAADSwAAAksAAAFLAAAASwAAAksAAAFLAAACSwAAAUsAAAFLAAABSwAAA0sAAAJLAAAASwAAA0sAAABLAAACSwAAAEsAAAFLAAACSwAAAksAAAJLAAADSwAAA0sAAAFLAAADSwAAAksAAAFLAAABSwAAAEsAAABLAAABSwAAAUsAAANLAAACSwAAA0sAAANLAAADSwAAAj4AAAE+AAABaAAAAEsAAABLAAADSwAAA0sAAANLAAABSwAAA0sAAANLAAAASwAAAUsAAAJLAAAASwAAAUsAAAJLAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: RwAAA0cAAANkAAAAOgAAAzoAAAJkAAAAZAAAAB8AAANkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAAAZAAAABYAAAAWAAADFgAAARYAAAIWAAABFgAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAxYAAAAWAAAAFgAAAhYAAAAWAAACFgAAABYAAANkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAARwAAAEcAAAFkAAAAFgAAAxYAAAMWAAAAFgAAABYAAAIWAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAABZAAAABYAAAAWAAAAFgAAARYAAAIWAAADFgAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAGQAAAAWAAADFgAAAhYAAAIWAAACFgAAAxYAAAFkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAOgAAAjoAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAFHAAACRwAAA0cAAAJHAAAARwAAAEcAAANHAAADRwAAAkcAAABHAAADRwAAAkcAAAFHAAAARwAAAkcAAAFHAAACRwAAAUcAAAFHAAABRwAAA0cAAAJHAAAARwAAA0cAAABHAAACRwAAAEcAAAFHAAACRwAAAkcAAAJHAAADRwAAA0cAAAFHAAADRwAAAkcAAAFHAAABRwAAAEcAAABHAAABRwAAAUcAAANHAAACRwAAA0cAAANHAAADRwAAAjoAAAE6AAABZAAAAEcAAABHAAADRwAAA0cAAANHAAABRwAAA0cAAANHAAAARwAAAUcAAAJHAAAARwAAAUcAAAJHAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,1: ind: 2,1 - tiles: aAAAAGgAAAAhAAABIQAAAiEAAAEhAAADaAAAAEsAAABLAAACSwAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAFcAAABoAAAAIQAAAioAAAIqAAACKgAAAGgAAABLAAABSwAAAEsAAANoAAAAZwAAAGcAAABnAAAAaAAAAEsAAAJoAAAAaAAAACEAAAAqAAADKgAAACoAAAJoAAAASwAAAksAAABLAAAAaAAAAAAAAAAAAAAAZwAAAGgAAABLAAADaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAABSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAksAAAJLAAACSwAAAksAAAJLAAACSwAAAksAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAASwAAAksAAAFLAAACSwAAA0sAAABLAAABSwAAAksAAANLAAABSwAAA0sAAAFoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAACSwAAAEsAAAJLAAADSwAAAksAAABLAAADSwAAAUsAAABLAAADSwAAAUsAAABLAAADSwAAAz4AAAFLAAACSwAAAksAAAFLAAAASwAAAEsAAABLAAABSwAAAGgAAABLAAABSwAAAUsAAAJLAAAASwAAAUsAAAE+AAAASwAAAEsAAAFLAAACSwAAAEsAAABLAAADSwAAAUsAAAFLAAACSwAAA0sAAANLAAABSwAAAksAAAFLAAADPgAAAksAAAJLAAABSwAAAUsAAABLAAACSwAAAUsAAAFLAAABSwAAAEsAAAFLAAABSwAAAEsAAAJLAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAASwAAAlMAAAJLAAADUwAAA0sAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: ZAAAAGQAAAAdAAABHQAAAh0AAAEdAAADZAAAAEcAAABHAAACRwAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAFMAAABkAAAAHQAAAiYAAAImAAACJgAAAGQAAABHAAABRwAAAEcAAANkAAAAYwAAAGMAAABjAAAAZAAAAEcAAAJkAAAAZAAAAB0AAAAmAAADJgAAACYAAAJkAAAARwAAAkcAAABHAAAAZAAAAAAAAAAAAAAAYwAAAGQAAABHAAADZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAABRwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAAkcAAAJHAAACRwAAAkcAAAJHAAACRwAAAkcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAARwAAAkcAAAFHAAACRwAAA0cAAABHAAABRwAAAkcAAANHAAABRwAAA0cAAAFkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAACRwAAAEcAAAJHAAADRwAAAkcAAABHAAADRwAAAUcAAABHAAADRwAAAUcAAABHAAADRwAAAzoAAAFHAAACRwAAAkcAAAFHAAAARwAAAEcAAABHAAABRwAAAGQAAABHAAABRwAAAUcAAAJHAAAARwAAAUcAAAE6AAAARwAAAEcAAAFHAAACRwAAAEcAAABHAAADRwAAAUcAAAFHAAACRwAAA0cAAANHAAABRwAAAkcAAAFHAAADOgAAAkcAAAJHAAABRwAAAUcAAABHAAACRwAAAUcAAAFHAAABRwAAAEcAAAFHAAABRwAAAEcAAAJHAAAARwAAAmQAAABkAAAAZAAAAGQAAABkAAAARwAAAk8AAAJHAAADTwAAA0cAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== 4,-2: ind: 4,-2 - tiles: ZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAaAAAAGgAAAArAAAAaAAAAGgAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAA== + tiles: YwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAZAAAAGQAAAAnAAAAZAAAAGQAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAA== 4,-3: ind: 4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAA== 4,-4: ind: 4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,0: ind: 2,0 - tiles: aAAAAGgAAABoAAAAaAAAABoAAAJLAAADSwAAA0sAAANLAAABSwAAAUsAAAFoAAAAGgAAA0sAAAFLAAAASwAAAmgAAABoAAAAaAAAAGgAAAAaAAAASwAAAEsAAANoAAAASwAAAksAAANLAAADaAAAAGgAAABLAAABSwAAAksAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAANLAAABaAAAAEsAAAJLAAACSwAAAUsAAAJLAAAASwAAAEsAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABLAAADaAAAAGgAAABLAAABSwAAAUsAAANLAAABSwAAAUsAAAJLAAAASwAAA2gAAABoAAAAaAAAAGgAAABLAAADSwAAAUsAAAJoAAAAaAAAAEsAAAJoAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAANLAAACSwAAAUsAAANLAAAASwAAAEsAAANLAAACSwAAAUsAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAADSwAAAEsAAAJLAAACSwAAAUsAAAFLAAADSwAAAEsAAABLAAACaAAAAEsAAAFLAAACSwAAA0sAAAJLAAADSwAAAUsAAAJLAAABSwAAAksAAAJoAAAASwAAAEsAAAFLAAACSwAAAEsAAANLAAAASwAAA0sAAAJLAAAASwAAAksAAAJLAAAASwAAA0sAAANLAAACSwAAAEsAAABLAAABSwAAAEsAAABLAAAASwAAAUsAAAFLAAADSwAAAUsAAABLAAACSwAAAEsAAABLAAADSwAAA0sAAANLAAACSwAAAEsAAANLAAABaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAEsAAABLAAABSwAAAUsAAABoAAAAGgAAABoAAAIaAAADGgAAAWgAAABoAAAAaAAAAGgAAABYAAAASwAAAUsAAANLAAABSwAAAEsAAABLAAAAaAAAAGgAAAAaAAACaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAABSwAAAmgAAAAaAAADGgAAAxoAAAJoAAAASwAAAGgAAABoAAAANwAAADcAAAA3AAAANwAAAGgAAABLAAADSwAAAUsAAAFoAAAAZQAAAGUAAAJlAAADSwAAAksAAANoAAAAaAAAADcAAAA3AAAANwAAADcAAAAaAAAASwAAAEsAAAFLAAABaAAAAGUAAAJlAAACZQAAA2gAAABLAAACaAAAAGgAAAA3AAAANwAAADcAAAA3AAAAaAAAAEsAAAFLAAABSwAAA2gAAABlAAABZQAAA2UAAABoAAAAaAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAABYAAAJHAAADRwAAA0cAAANHAAABRwAAAUcAAAFkAAAAFgAAA0cAAAFHAAAARwAAAmQAAABkAAAAZAAAAGQAAAAWAAAARwAAAEcAAANkAAAARwAAAkcAAANHAAADZAAAAGQAAABHAAABRwAAAkcAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAANHAAABZAAAAEcAAAJHAAACRwAAAUcAAAJHAAAARwAAAEcAAABHAAABZAAAAGQAAABkAAAAZAAAAGQAAABHAAADZAAAAGQAAABHAAABRwAAAUcAAANHAAABRwAAAUcAAAJHAAAARwAAA2QAAABkAAAAZAAAAGQAAABHAAADRwAAAUcAAAJkAAAAZAAAAEcAAAJkAAAAZAAAAEcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAARwAAAkcAAANHAAACRwAAAUcAAANHAAAARwAAAEcAAANHAAACRwAAAUcAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAADRwAAAEcAAAJHAAACRwAAAUcAAAFHAAADRwAAAEcAAABHAAACZAAAAEcAAAFHAAACRwAAA0cAAAJHAAADRwAAAUcAAAJHAAABRwAAAkcAAAJkAAAARwAAAEcAAAFHAAACRwAAAEcAAANHAAAARwAAA0cAAAJHAAAARwAAAkcAAAJHAAAARwAAA0cAAANHAAACRwAAAEcAAABHAAABRwAAAEcAAABHAAAARwAAAUcAAAFHAAADRwAAAUcAAABHAAACRwAAAEcAAABHAAADRwAAA0cAAANHAAACRwAAAEcAAANHAAABZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAEcAAABHAAABRwAAAUcAAABkAAAAFgAAABYAAAIWAAADFgAAAWQAAABkAAAAZAAAAGQAAABUAAAARwAAAUcAAANHAAABRwAAAEcAAABHAAAAZAAAAGQAAAAWAAACZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAABRwAAAmQAAAAWAAADFgAAAxYAAAJkAAAARwAAAGQAAABkAAAAMwAAADMAAAAzAAAAMwAAAGQAAABHAAADRwAAAUcAAAFkAAAAYQAAAGEAAAJhAAADRwAAAkcAAANkAAAAZAAAADMAAAAzAAAAMwAAADMAAAAWAAAARwAAAEcAAAFHAAABZAAAAGEAAAJhAAACYQAAA2QAAABHAAACZAAAAGQAAAAzAAAAMwAAADMAAAAzAAAAZAAAAEcAAAFHAAABRwAAA2QAAABhAAABYQAAA2EAAABkAAAAZAAAAA== 3,1: ind: 3,1 - tiles: SwAAAksAAAFLAAACSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAJLAAADSwAAA0sAAAFoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABLAAABSwAAAksAAAFLAAABaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAGgAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABLAAAASwAAAUsAAAFLAAADSwAAAksAAABLAAAASwAAAWgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABLAAADSwAAA0sAAANLAAADSwAAAEsAAAJLAAABSwAAAksAAAJoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAASwAAA0sAAAFLAAAASwAAAUsAAAJLAAAASwAAAEsAAAJLAAABaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAsAAAALAAAAGgAAABLAAADSwAAA0sAAAJLAAAASwAAAmgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABLAAACSwAAA0sAAAFLAAABSwAAAUsAAAFLAAAASwAAAUsAAANoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAASwAAA0sAAANLAAAASwAAAUsAAAJLAAACSwAAAEsAAANLAAABaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAEsAAANLAAACSwAAA0sAAAFTAAADSwAAAFMAAANLAAADSwAAAmgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABLAAAASwAAA0sAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAD0AAAE9AAACPQAAAWgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: RwAAAkcAAAFHAAACRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAEcAAAJHAAADRwAAA0cAAAFkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABHAAABRwAAAkcAAAFHAAABZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAGQAAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAEcAAABHAAAARwAAAUcAAAFHAAADRwAAAkcAAABHAAAARwAAAWQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABHAAADRwAAA0cAAANHAAADRwAAAEcAAAJHAAABRwAAAkcAAAJkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAARwAAA0cAAAFHAAAARwAAAUcAAAJHAAAARwAAAEcAAAJHAAABZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAAGQAAABHAAADRwAAA0cAAAJHAAAARwAAAmQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABHAAACRwAAA0cAAAFHAAABRwAAAUcAAAFHAAAARwAAAUcAAANkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAARwAAA0cAAANHAAAARwAAAUcAAAJHAAACRwAAAEcAAANHAAABZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAEcAAANHAAACRwAAA0cAAAFPAAADRwAAAE8AAANHAAADRwAAAmQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABHAAAARwAAA0cAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAADkAAAE5AAACOQAAAWQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,1: ind: -3,1 - tiles: UwAAAksAAAFLAAABaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABYAAAAaAAAAFMAAABTAAABUwAAAlgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAA2UAAAJlAAABaAAAAEsAAANLAAADSwAAAWgAAAA2AAAANgAAAGgAAAA3AAAANwAAADcAAABoAAAAZQAAAWUAAAJlAAAAZQAAAUsAAAJLAAACSwAAAUsAAANoAAAANgAAADYAAABoAAAANwAAADcAAAA3AAAAaAAAAGUAAAJlAAACZQAAAGUAAAJoAAAASwAAAUsAAANLAAADaAAAADYAAAA2AAAAaAAAADcAAAA3AAAANwAAAGgAAABlAAACaAAAAGgAAABoAAAAaAAAAEsAAANLAAAASwAAA2gAAABoAAAANgAAAGgAAABoAAAASwAAA2gAAABoAAAAaAAAAGUAAAFlAAABZQAAAGgAAABLAAADSwAAAEsAAANLAAABSwAAAEsAAAFLAAACSwAAAEsAAANLAAACSwAAAEsAAAJlAAADZQAAA2UAAANLAAACSwAAAksAAANLAAABSwAAAT8AAANLAAABPwAAAksAAAE/AAABSwAAAz8AAANLAAABZQAAAGUAAABlAAADaAAAAEsAAANLAAADSwAAAUsAAAFLAAAASwAAAEsAAAFLAAADSwAAAksAAABLAAACSwAAAmgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAABoAAAAaAAAAGgAAAxoAAAAaAAADGgAAABoAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAA== + tiles: TwAAAkcAAAFHAAABZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAFMAAABTAAAAZAAAAGQAAABUAAAAZAAAAE8AAABPAAABTwAAAlQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAA2EAAAJhAAABZAAAAEcAAANHAAADRwAAAWQAAAAyAAAAMgAAAGQAAAAzAAAAMwAAADMAAABkAAAAYQAAAWEAAAJhAAAAYQAAAUcAAAJHAAACRwAAAUcAAANkAAAAMgAAADIAAABkAAAAMwAAADMAAAAzAAAAZAAAAGEAAAJhAAACYQAAAGEAAAJkAAAARwAAAUcAAANHAAADZAAAADIAAAAyAAAAZAAAADMAAAAzAAAAMwAAAGQAAABhAAACZAAAAGQAAABkAAAAZAAAAEcAAANHAAAARwAAA2QAAABkAAAAMgAAAGQAAABkAAAARwAAA2QAAABkAAAAZAAAAGEAAAFhAAABYQAAAGQAAABHAAADRwAAAEcAAANHAAABRwAAAEcAAAFHAAACRwAAAEcAAANHAAACRwAAAEcAAAJhAAADYQAAA2EAAANHAAACRwAAAkcAAANHAAABRwAAATsAAANHAAABOwAAAkcAAAE7AAABRwAAAzsAAANHAAABYQAAAGEAAABhAAADZAAAAEcAAANHAAADRwAAAUcAAAFHAAAARwAAAEcAAAFHAAADRwAAAkcAAABHAAACRwAAAmQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAABYAAAAWAAAAFgAAAxYAAAAWAAADFgAAABYAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAA== -4,1: ind: -4,1 - tiles: aAAAAGgAAABoAAAAaAAAAFAAAABoAAAASwAAA2gAAABLAAABUAAAAEsAAAJoAAAAQAAAAEAAAABAAAAAaAAAABoAAAIaAAACGgAAAxoAAAFLAAACaAAAAGgAAABLAAABSwAAAUsAAAJLAAADIwAAAUAAAABAAAAAQAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQAAAAGgAAABoAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAUAAAAGgAAABoAAAAZQAAAWUAAANoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAJLAAABZQAAAWUAAANlAAACaAAAAAAAAAAAAAAAAAAAAGgAAAA3AAAANwAAADcAAABoAAAAaAAAAD8AAAJLAAABaAAAAGUAAAJlAAABZQAAAmgAAAAAAAAAAAAAAAAAAABoAAAANwAAADcAAABoAAAAaAAAAEsAAABLAAAAUAAAAEsAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAaAAAADcAAAA3AAAANwAAADcAAABLAAADPwAAAmgAAABoAAAAZQAAA2UAAANlAAAAaAAAAAAAAAAAAAAAAAAAAGgAAAA3AAAANwAAADcAAABoAAAAUAAAAEsAAAFoAAAASwAAAGUAAAFlAAADZQAAAmgAAAAAAAAAAAAAAAAAAABoAAAANwAAADcAAAA3AAAAaAAAAGgAAABLAAADSwAAAWgAAABlAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAA2gAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAGcAAABoAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAEwAAABkAAAARwAAA2QAAABHAAABTAAAAEcAAAJkAAAAPAAAADwAAAA8AAAAZAAAABYAAAIWAAACFgAAAxYAAAFHAAACZAAAAGQAAABHAAABRwAAAUcAAAJHAAADHwAAATwAAAA8AAAAPAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAPAAAAGQAAABkAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAATAAAAGQAAABkAAAAYQAAAWEAAANkAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAAJHAAABYQAAAWEAAANhAAACZAAAAAAAAAAAAAAAAAAAAGQAAAAzAAAAMwAAADMAAABkAAAAZAAAADsAAAJHAAABZAAAAGEAAAJhAAABYQAAAmQAAAAAAAAAAAAAAAAAAABkAAAAMwAAADMAAABkAAAAZAAAAEcAAABHAAAATAAAAEcAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAZAAAADMAAAAzAAAAMwAAADMAAABHAAADOwAAAmQAAABkAAAAYQAAA2EAAANhAAAAZAAAAAAAAAAAAAAAAAAAAGQAAAAzAAAAMwAAADMAAABkAAAATAAAAEcAAAFkAAAARwAAAGEAAAFhAAADYQAAAmQAAAAAAAAAAAAAAAAAAABkAAAAMwAAADMAAAAzAAAAZAAAAGQAAABHAAADRwAAAWQAAABhAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAA2QAAABHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAGMAAABkAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAA== -2,1: ind: -2,1 - tiles: aAAAAGgAAABoAAAAGwAAAmUAAAFlAAACZQAAAWUAAAJlAAADGwAAAGgAAAAaAAAAGgAAAhoAAANoAAAASwAAAGgAAABoAAAAWAAAABsAAANlAAACZQAAAGUAAANlAAABZQAAAhsAAAIaAAABNwAAADcAAAA3AAAAaAAAAEsAAAJoAAAAaAAAAGgAAAAbAAABZQAAAWUAAAJlAAADZQAAAGUAAAMbAAAAaAAAADcAAAA3AAAANwAAAGgAAABLAAABZQAAAmUAAANoAAAAGwAAAWUAAABlAAACZQAAAGUAAAJlAAABGwAAAmgAAABoAAAAaAAAABoAAAFoAAAASwAAA2UAAANlAAABaAAAABsAAANlAAACZQAAAmUAAABlAAABZQAAABsAAAAaAAADHgAAAhoAAAIeAAABaAAAAEsAAAJlAAABZQAAA2gAAAAbAAABZQAAAGUAAANlAAAAZQAAA2UAAAMbAAACaAAAAB4AAAAaAAABHgAAA2gAAABLAAABSwAAAmgAAABoAAAAaAAAAGgAAABLAAADSwAAA0sAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAPgAAAUsAAABLAAAASwAAA0sAAANLAAABSwAAAUsAAANLAAACSwAAAksAAAFLAAADSwAAAUsAAANLAAACSwAAAEsAAANLAAAASwAAAz8AAANLAAABPwAAAUsAAAM/AAACSwAAAD8AAANLAAADPwAAA0sAAAM/AAAASwAAAT8AAAJLAAAASwAAAksAAANLAAAASwAAAksAAAFLAAADSwAAAEsAAAJLAAADSwAAA0sAAAFLAAABSwAAAEsAAABLAAADSwAAARoAAAAaAAADGgAAARoAAAAaAAACGgAAAxoAAAMaAAADaAAAAD4AAAM+AAACPgAAAWgAAABoAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAmgAAABoAAAASwAAA0sAAABLAAADZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABoAAAASwAAAEsAAAJLAAABSwAAAksAAABLAAADSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAADSwAAAUsAAAJLAAACSwAAAksAAAJLAAADSwAAA0sAAANLAAACSwAAAEsAAABLAAAASwAAAksAAAJLAAAASwAAAUsAAANLAAADSwAAA0sAAANLAAABSwAAAUsAAAJLAAABSwAAA0sAAAJLAAACSwAAAUsAAAJLAAAASwAAAEsAAAFLAAACaAAAAGgAAABoAAAAaAAAAA== + tiles: ZAAAAGQAAABkAAAAFwAAAmEAAAFhAAACYQAAAWEAAAJhAAADFwAAAGQAAAAWAAAAFgAAAhYAAANkAAAARwAAAGQAAABkAAAAVAAAABcAAANhAAACYQAAAGEAAANhAAABYQAAAhcAAAIWAAABMwAAADMAAAAzAAAAZAAAAEcAAAJkAAAAZAAAAGQAAAAXAAABYQAAAWEAAAJhAAADYQAAAGEAAAMXAAAAZAAAADMAAAAzAAAAMwAAAGQAAABHAAABYQAAAmEAAANkAAAAFwAAAWEAAABhAAACYQAAAGEAAAJhAAABFwAAAmQAAABkAAAAZAAAABYAAAFkAAAARwAAA2EAAANhAAABZAAAABcAAANhAAACYQAAAmEAAABhAAABYQAAABcAAAAWAAADGgAAAhYAAAIaAAABZAAAAEcAAAJhAAABYQAAA2QAAAAXAAABYQAAAGEAAANhAAAAYQAAA2EAAAMXAAACZAAAABoAAAAWAAABGgAAA2QAAABHAAABRwAAAmQAAABkAAAAZAAAAGQAAABHAAADRwAAA0cAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAOgAAAUcAAABHAAAARwAAA0cAAANHAAABRwAAAUcAAANHAAACRwAAAkcAAAFHAAADRwAAAUcAAANHAAACRwAAAEcAAANHAAAARwAAAzsAAANHAAABOwAAAUcAAAM7AAACRwAAADsAAANHAAADOwAAA0cAAAM7AAAARwAAATsAAAJHAAAARwAAAkcAAANHAAAARwAAAkcAAAFHAAADRwAAAEcAAAJHAAADRwAAA0cAAAFHAAABRwAAAEcAAABHAAADRwAAARYAAAAWAAADFgAAARYAAAAWAAACFgAAAxYAAAMWAAADZAAAADoAAAM6AAACOgAAAWQAAABkAAAARwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAmQAAABkAAAARwAAA0cAAABHAAADYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABkAAAARwAAAEcAAAJHAAABRwAAAkcAAABHAAADRwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAADRwAAAUcAAAJHAAACRwAAAkcAAAJHAAADRwAAA0cAAANHAAACRwAAAEcAAABHAAAARwAAAkcAAAJHAAAARwAAAUcAAANHAAADRwAAA0cAAANHAAABRwAAAUcAAAJHAAABRwAAA0cAAAJHAAACRwAAAUcAAAJHAAAARwAAAEcAAAFHAAACZAAAAGQAAABkAAAAZAAAAA== -2,2: ind: -2,2 - tiles: aAAAAEsAAABLAAAASwAAAEsAAAFLAAAASwAAAUsAAAFLAAACSwAAAksAAAJLAAADaAAAAEsAAANLAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABaAAAAGgAAABLAAAASwAAAksAAAJoAAAAQAAAABoAAAMaAAADGgAAABoAAAIaAAABGgAAARoAAANLAAADSwAAA0sAAABLAAACSwAAAksAAAFLAAACaAAAAEAAAAAaAAABQAAAAEAAAABAAAAAQAAAAEAAAAAaAAADSwAAAUsAAAJLAAADSwAAA0sAAABLAAABSwAAAWgAAAAaAAACGgAAAUAAAABAAAAAQAAAAEAAAABAAAAAGgAAABoAAAAaAAABGgAAAhoAAAEaAAABGgAAAxoAAAFoAAAAGgAAAhoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQgAAAA== + tiles: ZAAAAEcAAABHAAAARwAAAEcAAAFHAAAARwAAAUcAAAFHAAACRwAAAkcAAAJHAAADZAAAAEcAAANHAAAARwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABZAAAAGQAAABHAAAARwAAAkcAAAJkAAAAPAAAABYAAAMWAAADFgAAABYAAAIWAAABFgAAARYAAANHAAADRwAAA0cAAABHAAACRwAAAkcAAAFHAAACZAAAADwAAAAWAAABPAAAADwAAAA8AAAAPAAAADwAAAAWAAADRwAAAUcAAAJHAAADRwAAA0cAAABHAAABRwAAAWQAAAAWAAACFgAAATwAAAA8AAAAPAAAADwAAAA8AAAAFgAAABYAAAAWAAABFgAAAhYAAAEWAAABFgAAAxYAAAFkAAAAFgAAAhYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAPgAAAA== -1,3: ind: -1,3 - tiles: QgAAAEAAAABAAAAAQAAAAEAAAABAAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABAAAAAQAAAAEAAAABAAAAAQAAAAGgAAABnAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABoAAAAZwAAAGgAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAaAAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAZwAAAGgAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGcAAABnAAAAZwAAAGgAAABnAAAAZwAAAGcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: PgAAADwAAAA8AAAAPAAAADwAAAA8AAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAAA8AAAAPAAAADwAAAA8AAAAPAAAAGQAAABjAAAAZAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAABkAAAAYwAAAGQAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAZAAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAYwAAAGQAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGMAAABjAAAAYwAAAGQAAABjAAAAYwAAAGMAAABkAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,2: ind: -1,2 - tiles: SwAAAEsAAAJoAAAASwAAAksAAAJLAAADaAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAGgAAABLAAADVwAAAEsAAANLAAADaAAAAGgAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAFcAAABLAAACSwAAAEsAAAJLAAAASwAAA0sAAABoAAAALgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANXAAAASwAAAEsAAANLAAACSwAAAEsAAAFLAAACaAAAAC4AAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABLAAAAVwAAABoAAAEaAAAAGgAAAhoAAAIaAAACGgAAAWgAAAAuAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAANXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGcAAABoAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABnAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAZwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABnAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABXAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAZwAAAGgAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAA== + tiles: RwAAAEcAAAJkAAAARwAAAkcAAAJHAAADZAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAAGQAAABHAAADUwAAAEcAAANHAAADZAAAAGQAAABHAAAAZAAAAGQAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAABkAAAARwAAAFMAAABHAAACRwAAAEcAAAJHAAAARwAAA0cAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANTAAAARwAAAEcAAANHAAACRwAAAEcAAAFHAAACZAAAACoAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABHAAAAUwAAABYAAAEWAAAAFgAAAhYAAAIWAAACFgAAAWQAAAAqAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAANTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGMAAABkAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABjAAAAZAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAYwAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABjAAAAZAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABTAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAYwAAAGQAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAA== -3,2: ind: -3,2 - tiles: aAAAAGgAAABAAAAAQAAAAEAAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEAAAABAAAAAQAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQAAAAEAAAABAAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABAAAAAQAAAAEAAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEAAAABAAAAAQAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQAAAAEAAAABAAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAaAAAAGgAAABAAAAAQAAAAEAAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAA== + tiles: ZAAAAGQAAAA8AAAAPAAAADwAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAADwAAAA8AAAAPAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAPAAAADwAAAA8AAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAA8AAAAPAAAADwAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAADwAAAA8AAAAPAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAPAAAADwAAAA8AAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAZAAAAGQAAAA8AAAAPAAAADwAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAA== 0,3: ind: 0,3 - tiles: ZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAaAAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABnAAAAaAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAZwAAAGgAAABnAAAAAAAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABnAAAAaAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAZwAAAGgAAABnAAAAAAAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABoAAAAZwAAAAAAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABoAAAAZwAAAGcAAABnAAAAaAAAAGcAAABnAAAAZwAAAGgAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAZAAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABjAAAAZAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAYwAAAGQAAABjAAAAAAAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABjAAAAZAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAYwAAAGQAAABjAAAAAAAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABkAAAAYwAAAAAAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABkAAAAYwAAAGMAAABjAAAAZAAAAGMAAABjAAAAYwAAAGQAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,3: ind: -3,3 - tiles: ZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAA== + tiles: YwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAA== -2,3: ind: -2,3 - tiles: ZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAQAAAAEAAAABAAAAAQAAAAEAAAABCAAAAQgAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAEAAAABAAAAAQAAAAEAAAABAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABoAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAA== + tiles: YwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAPAAAADwAAAA8AAAAPAAAADwAAAA+AAAAPgAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAADwAAAA8AAAAPAAAADwAAAA8AAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABkAAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAA== 0,2: ind: 0,2 - tiles: VwAAAFcAAABLAAABaAAAAEsAAAFLAAACSwAAAEsAAANLAAAAaAAAAGcAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGgAAABXAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAVwAAAEsAAAJLAAADaAAAAFgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAVwAAAFcAAABLAAAASwAAAWgAAABYAAAAaAAAAGcAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAEsAAAFLAAAASwAAAUsAAABYAAAAWAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGgAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABoAAAAZwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAaAAAAGcAAABoAAAAZwAAAAAAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABnAAAAaAAAAGcAAAAAAAAAZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAaAAAAGcAAABoAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABnAAAAaAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAZwAAAGgAAABnAAAAZwAAAGcAAAAAAAAAAAAAAA== + tiles: UwAAAFMAAABHAAABZAAAAEcAAAFHAAACRwAAAEcAAANHAAAAZAAAAGMAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGQAAABTAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAUwAAAEcAAAJHAAADZAAAAFQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAUwAAAFMAAABHAAAARwAAAWQAAABUAAAAZAAAAGMAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAEcAAAFHAAAARwAAAUcAAABUAAAAVAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGQAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABkAAAAYwAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAZAAAAGMAAABkAAAAYwAAAAAAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABjAAAAZAAAAGMAAAAAAAAAYwAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAZAAAAGMAAABkAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABjAAAAZAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAYwAAAGQAAABjAAAAYwAAAGMAAAAAAAAAAAAAAA== -4,2: ind: -4,2 - tiles: AAAAAAAAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAaAAADGgAAAxoAAAEaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAGgAAAhoAAAMaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABAAAAAQAAAAEAAAABoAAAAZwAAAA== + tiles: AAAAAAAAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAWAAADFgAAAxYAAAEWAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAFgAAAhYAAAMWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAAA8AAAAPAAAADwAAABkAAAAYwAAAA== -4,3: ind: -4,3 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAQAAAAEAAAABAAAAAaAAAAGcAAABLAAACGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAASwAAARoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABAAAAAQAAAAEAAAABoAAAAZwAAAEsAAAAaAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAPAAAADwAAAA8AAAAZAAAAGMAAABHAAACFgAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAARwAAARYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAAA8AAAAPAAAADwAAABkAAAAYwAAAEcAAAAWAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -5,1: ind: -5,1 - tiles: AAAAAAAAAABnAAAAZwAAAGcAAABoAAAAGgAAABoAAAEaAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAEaAAACGgAAAxoAAAEaAAAAGgAAAxoAAAIaAAABGgAAAhoAAAMAAAAAAAAAAAAAAABnAAAAZwAAAGgAAAAaAAABGgAAABoAAAAaAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAAAaAAAAGgAAAWgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAGgAAA2gAAAAaAAADGgAAAxoAAANoAAAAZwAAAGcAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAaAAAADcAAAA3AAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAGgAAAA3AAAANwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABoAAAAaAAAADcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAaAAAADcAAAA3AAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAGgAAAA3AAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAABjAAAAYwAAAGMAAABkAAAAFgAAABYAAAEWAAAAFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAEWAAACFgAAAxYAAAEWAAAAFgAAAxYAAAIWAAABFgAAAhYAAAMAAAAAAAAAAAAAAABjAAAAYwAAAGQAAAAWAAABFgAAABYAAAAWAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAAAWAAAAFgAAAWQAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAFgAAA2QAAAAWAAADFgAAAxYAAANkAAAAYwAAAGMAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAZAAAADMAAAAzAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAGQAAAAzAAAAMwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAABkAAAAZAAAADMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAZAAAADMAAAAzAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAGQAAAAzAAAAMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -5,0: ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAABoAAAASwAAA0sAAANoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAaAAAAEsAAAJLAAACSwAAAWgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGgAAABLAAADSwAAAUsAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAABoAAAASwAAA0sAAANoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAaAAAAEsAAAFoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAABnAAAAZwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAABkAAAARwAAA0cAAANkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAZAAAAEcAAAJHAAACRwAAAWQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAGQAAABHAAADRwAAAUcAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAABkAAAARwAAA0cAAANkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAZAAAAEcAAAFkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGMAAABjAAAAYwAAAA== 2,-5: ind: 2,-5 - tiles: AAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,-5: ind: 1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAA== 1,-6: ind: 1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAA== 2,-6: ind: 2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 4,-1: ind: 4,-1 - tiles: ZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 5,-3: ind: 5,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 5,-1: ind: 5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 5,-2: ind: 5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,2: ind: 1,2 - tiles: ZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -2,4: ind: -2,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAA== -2,5: ind: -2,5 - tiles: AAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,4: ind: -3,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAA== -3,5: ind: -3,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -6,1: ind: -6,1 - tiles: GgAAARoAAAIaAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAABoAAAEaAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAGgAAAhoAAANnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: FgAAARYAAAIWAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAABYAAAEWAAAAFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAAAFgAAAhYAAANjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -7,1: ind: -7,1 - tiles: NwAAADcAAAA3AAAAGgAAA2gAAAAaAAADGgAAABoAAAMaAAADGgAAAWgAAAAaAAABGgAAAhoAAAAaAAAAGgAAADcAAAA3AAAANwAAABoAAAEaAAAAGgAAAhoAAAIaAAADGgAAAhoAAAMaAAACGgAAARoAAAIaAAABGgAAABoAAAM3AAAANwAAADcAAAAaAAACaAAAABoAAAAaAAADGgAAAhoAAAEaAAABaAAAABoAAAEaAAADGgAAAxoAAAAaAAABGgAAABoAAAIaAAAAGgAAA2gAAAAaAAADGgAAAxoAAAEaAAAAGgAAAGgAAABnAAAAGgAAAmgAAABnAAAAZwAAABoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAABoAAANoAAAAaAAAAGgAAAAaAAAAGgAAABoAAAAaAAABQAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAAAaAAAAaAAAAGgAAABoAAAAHgAAAh4AAAIeAAADHgAAARoAAAAaAAADaAAAAGgAAABnAAAAGgAAAhoAAAMaAAABGgAAAWgAAABoAAAAZwAAAB4AAAAwAAAAMAAAAB4AAAMaAAACGgAAAGgAAABoAAAAZwAAABoAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAADAAAAAeAAADGgAAARoAAANoAAAAaAAAAGcAAAAaAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAMAAAAGgAAAAwAAAAHgAAABoAAAJoAAAAaAAAAGgAAABnAAAAGgAAAWcAAABnAAAAZwAAAGcAAABnAAAAZwAAAB4AAAAeAAAAHgAAAh4AAAAeAAADMAAAAGgAAABoAAAAZwAAABoAAAJnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAADAAAAAeAAADGgAAAGgAAABoAAAAaAAAAGcAAAAaAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAMAAAADAAAAAwAAAAHgAAARoAAAMaAAACaAAAAGgAAABnAAAAGgAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAB4AAAIeAAACHgAAAR4AAAMaAAADGgAAAmgAAABoAAAAZwAAABoAAANnAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAaAAABGgAAABoAAAMaAAACQAAAAGgAAABoAAAAaAAAAGcAAAAaAAABZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAGgAAAxoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAGgAAAmcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAA== + tiles: MwAAADMAAAAzAAAAFgAAA2QAAAAWAAADFgAAABYAAAMWAAADFgAAAWQAAAAWAAABFgAAAhYAAAAWAAAAFgAAADMAAAAzAAAAMwAAABYAAAEWAAAAFgAAAhYAAAIWAAADFgAAAhYAAAMWAAACFgAAARYAAAIWAAABFgAAABYAAAMzAAAAMwAAADMAAAAWAAACZAAAABYAAAAWAAADFgAAAhYAAAEWAAABZAAAABYAAAEWAAADFgAAAxYAAAAWAAABFgAAABYAAAIWAAAAFgAAA2QAAAAWAAADFgAAAxYAAAEWAAAAFgAAAGQAAABjAAAAFgAAAmQAAABjAAAAYwAAABYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAABYAAANkAAAAZAAAAGQAAAAWAAAAFgAAABYAAAAWAAABPAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAAAWAAAAZAAAAGQAAABkAAAAGgAAAhoAAAIaAAADGgAAARYAAAAWAAADZAAAAGQAAABjAAAAFgAAAhYAAAMWAAABFgAAAWQAAABkAAAAYwAAABoAAAAsAAAALAAAABoAAAMWAAACFgAAAGQAAABkAAAAYwAAABYAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAACwAAAAaAAADFgAAARYAAANkAAAAZAAAAGMAAAAWAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAALAAAAGQAAAAsAAAAGgAAABYAAAJkAAAAZAAAAGQAAABjAAAAFgAAAWMAAABjAAAAYwAAAGMAAABjAAAAYwAAABoAAAAaAAAAGgAAAhoAAAAaAAADLAAAAGQAAABkAAAAYwAAABYAAAJjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAZAAAACwAAAAaAAADFgAAAGQAAABkAAAAZAAAAGMAAAAWAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAALAAAACwAAAAsAAAAGgAAARYAAAMWAAACZAAAAGQAAABjAAAAFgAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAABoAAAIaAAACGgAAARoAAAMWAAADFgAAAmQAAABkAAAAYwAAABYAAANjAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAWAAABFgAAABYAAAMWAAACPAAAAGQAAABkAAAAZAAAAGMAAAAWAAABYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAFgAAAxYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAFgAAAmMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAA== -6,0: ind: -6,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAA== -7,0: ind: -7,0 - tiles: ZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAACGgAAAhoAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAMaAAABZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAMaAAABGgAAAxoAAAEaAAAAGgAAARoAAAAaAAADZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAABZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAGgAAA2cAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAGgAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAZwAAABoAAAFnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAZwAAABoAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAAAaAAABZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAaAAAAEgAAABIAAABoAAAAaAAAAGcAAABnAAAAGgAAA2cAAABnAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABnAAAAGgAAAx8AAAEfAAADEgAAAGgAAAAAAAAAZwAAABoAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAABoAAAMSAAAAHwAAABIAAABoAAAAAAAAAGcAAAAaAAABZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAaAAADHwAAAhoAAAEfAAADaAAAAAAAAABnAAAAGgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAGgAAAxIAAAAfAAACEgAAAGgAAABnAAAAZwAAABoAAAMaAAABGgAAAxoAAAEaAAABGgAAAmcAAABnAAAAZwAAABoAAAMaAAACGgAAAhIAAABoAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAABoAAAJnAAAAAAAAAGcAAAAaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAaAAABZwAAAAAAAABnAAAAGgAAAxoAAAEaAAACGgAAAmgAAAAaAAAAGgAAARoAAAIaAAADGgAAAGgAAABnAAAAGgAAA2cAAABnAAAAZwAAAA== + tiles: YwAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAACFgAAAhYAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAAMWAAABYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAMWAAABFgAAAxYAAAEWAAAAFgAAARYAAAAWAAADYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAABYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAFgAAA2MAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAFgAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAYwAAABYAAAFjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAYwAAABYAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGMAAAAWAAABYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAWAAAADgAAAA4AAABkAAAAZAAAAGMAAABjAAAAFgAAA2MAAABjAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABjAAAAFgAAAxsAAAEbAAADDgAAAGQAAAAAAAAAYwAAABYAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAABYAAAMOAAAAGwAAAA4AAABkAAAAAAAAAGMAAAAWAAABYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAWAAADGwAAAhYAAAEbAAADZAAAAAAAAABjAAAAFgAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAFgAAAw4AAAAbAAACDgAAAGQAAABjAAAAYwAAABYAAAMWAAABFgAAAxYAAAEWAAABFgAAAmMAAABjAAAAYwAAABYAAAMWAAACFgAAAg4AAABkAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAABYAAAJjAAAAAAAAAGMAAAAWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAWAAABYwAAAAAAAABjAAAAFgAAAxYAAAEWAAACFgAAAmQAAAAWAAAAFgAAARYAAAIWAAADFgAAAGQAAABjAAAAFgAAA2MAAABjAAAAYwAAAA== -8,0: ind: -8,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAABoAAAIaAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAaAAACGgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAABoAAAMaAAAAGgAAAxoAAAEaAAACGgAAAxoAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAaAAABZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAGgAAAWcAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAABoAAAJnAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAaAAADZwAAAGcAAABoAAAAaAAAABIAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAGgAAAWcAAAAAAAAAaAAAABIAAAAfAAAAHwAAAgAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAABoAAABnAAAAAAAAAGgAAAASAAAAHwAAAxIAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAaAAADZwAAAAAAAABoAAAAHwAAABoAAAIfAAACAAAAAGcAAAAAAAAAZwAAABoAAAMaAAACGgAAAhoAAAMaAAABGgAAAGcAAABnAAAAaAAAABIAAAAfAAABEgAAAAAAAABnAAAAZwAAAGcAAAAaAAACZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGgAAAASAAAAGgAAARoAAAEAAAAAZwAAAAAAAABnAAAAGgAAAWcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAABnAAAAZwAAABoAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAEaAAAAGgAAAQ== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAABYAAAIWAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAWAAACFgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAABYAAAMWAAAAFgAAAxYAAAEWAAACFgAAAxYAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAWAAABYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAFgAAAWMAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAABYAAAJjAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAWAAADYwAAAGMAAABkAAAAZAAAAA4AAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAFgAAAWMAAAAAAAAAZAAAAA4AAAAbAAAAGwAAAgAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAABYAAABjAAAAAAAAAGQAAAAOAAAAGwAAAw4AAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAWAAADYwAAAAAAAABkAAAAGwAAABYAAAIbAAACAAAAAGMAAAAAAAAAYwAAABYAAAMWAAACFgAAAhYAAAMWAAABFgAAAGMAAABjAAAAZAAAAA4AAAAbAAABDgAAAAAAAABjAAAAYwAAAGMAAAAWAAACYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGQAAAAOAAAAFgAAARYAAAEAAAAAYwAAAAAAAABjAAAAFgAAAWMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAABjAAAAYwAAABYAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAEWAAAAFgAAAQ== -8,1: ind: -8,1 - tiles: AAAAAGcAAAAAAAAAZwAAABoAAAMaAAACaAAAABoAAAIaAAADGgAAABoAAAMaAAAAaAAAABoAAAA3AAAANwAAAAAAAABnAAAAZwAAAGcAAAAaAAAAGgAAAhoAAAIaAAAAGgAAARoAAAAaAAADGgAAAxoAAAIaAAACNwAAADcAAAAAAAAAZwAAAAAAAABnAAAAGgAAABoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAjcAAAA3AAAAAAAAAGcAAABnAAAAZwAAABoAAAFnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAIaAAADGgAAAAAAAABnAAAAAAAAAGcAAAAaAAABZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAGcAAABnAAAAGgAAAWcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABAAAAAGgAAARoAAAEaAAADAAAAAGcAAAAAAAAAZwAAABoAAAAaAAADGgAAARoAAABnAAAAaAAAAGgAAAAaAAADGgAAAB4AAAIeAAACHgAAAwAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAaAAADZwAAAGgAAABoAAAAGgAAAhoAAAMeAAABMAAAADAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAGgAAA2cAAABoAAAAaAAAABoAAAEaAAACHgAAAzAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAABoAAABnAAAAaAAAAGgAAABoAAAAGgAAAR4AAAMwAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAaAAACZwAAAGgAAABoAAAAMAAAAB4AAAEeAAAAHgAAAR4AAAMAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAGgAAAmcAAABoAAAAaAAAAGgAAAAaAAABHgAAATAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAABoAAAJnAAAAaAAAAGgAAAAaAAABGgAAAx4AAAIwAAAAMAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAaAAABZwAAAGgAAABoAAAAGgAAAhoAAAEeAAACHgAAAR4AAAEAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAGgAAAGcAAABoAAAAaAAAAGgAAABAAAAAGgAAAhoAAAMaAAABAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAABoAAAJnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAg== + tiles: AAAAAGMAAAAAAAAAYwAAABYAAAMWAAACZAAAABYAAAIWAAADFgAAABYAAAMWAAAAZAAAABYAAAAzAAAAMwAAAAAAAABjAAAAYwAAAGMAAAAWAAAAFgAAAhYAAAIWAAAAFgAAARYAAAAWAAADFgAAAxYAAAIWAAACMwAAADMAAAAAAAAAYwAAAAAAAABjAAAAFgAAABYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAjMAAAAzAAAAAAAAAGMAAABjAAAAYwAAABYAAAFjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAIWAAADFgAAAAAAAABjAAAAAAAAAGMAAAAWAAABYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAGMAAABjAAAAFgAAAWMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAAA8AAAAFgAAARYAAAEWAAADAAAAAGMAAAAAAAAAYwAAABYAAAAWAAADFgAAARYAAABjAAAAZAAAAGQAAAAWAAADFgAAABoAAAIaAAACGgAAAwAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAWAAADYwAAAGQAAABkAAAAFgAAAhYAAAMaAAABLAAAACwAAAAAAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAFgAAA2MAAABkAAAAZAAAABYAAAEWAAACGgAAAywAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAABYAAABjAAAAZAAAAGQAAABkAAAAFgAAARoAAAMsAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAWAAACYwAAAGQAAABkAAAALAAAABoAAAEaAAAAGgAAARoAAAMAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAFgAAAmMAAABkAAAAZAAAAGQAAAAWAAABGgAAASwAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAABYAAAJjAAAAZAAAAGQAAAAWAAABFgAAAxoAAAIsAAAALAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAWAAABYwAAAGQAAABkAAAAFgAAAhYAAAEaAAACGgAAARoAAAEAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAFgAAAGMAAABkAAAAZAAAAGQAAAA8AAAAFgAAAhYAAAMWAAABAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAABYAAAJjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAg== -8,2: ind: -8,2 - tiles: AAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAABoAAANnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAaAAADZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAGgAAAWcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAABoAAAMaAAADGgAAAhoAAAIaAAACGgAAAxoAAAEaAAACGgAAAgAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAGgAAAxoAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAABoAAAMaAAABAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAABYAAANjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAWAAADYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAFgAAAWMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAABYAAAMWAAADFgAAAhYAAAIWAAACFgAAAxYAAAEWAAACFgAAAgAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAFgAAAxYAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAABYAAAMWAAABAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -7,2: ind: -7,2 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAGgAAAWcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAABoAAAJnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAaAAACZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAhoAAAIaAAABGgAAABoAAAMaAAADGgAAA2cAAABnAAAAZwAAAAAAAAAAAAAAAAAAABoAAAMaAAADGgAAAmcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAaAAACGgAAAhoAAANnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAFgAAAWMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAABYAAAJjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAWAAACYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAFgAAABYAAAAWAAAAFgAAAhYAAAIWAAABFgAAABYAAAMWAAADFgAAA2MAAABjAAAAYwAAAAAAAAAAAAAAAAAAABYAAAMWAAADFgAAAmMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAWAAACFgAAAhYAAANjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -7,-1: ind: -7,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -8,-1: ind: -8,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAA== -5,3: ind: -5,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -5,2: ind: -5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAA== type: MapGrid - type: Broadphase - bodyStatus: InAir @@ -375,10 +375,10 @@ entities: 844: 52,25 845: 46,25 846: 44,25 - 951: -51,14 - 2834: 4,-39 - 3279: 53,14 - 3344: 5,-35 + 950: -51,14 + 2819: 4,-39 + 3264: 53,14 + 3329: 5,-35 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -390,27 +390,27 @@ entities: 416: -4,16 596: 49,-1 739: 41,6 - 1084: -3,-64 - 1085: -3,-71 - 3161: -19,29 - 3163: -4,18 - 3164: -4,19 - 3433: -40,32 - 3434: -40,34 - 3435: -40,36 - 3436: -40,38 - 3437: -40,40 - 3438: -40,42 - 3439: -40,44 - 3441: -36,30 + 1082: -3,-64 + 1083: -3,-71 + 3146: -19,29 + 3148: -4,18 + 3149: -4,19 + 3418: -40,32 + 3419: -40,34 + 3420: -40,36 + 3421: -40,38 + 3422: -40,40 + 3423: -40,42 + 3424: -40,44 + 3426: -36,30 - node: color: '#FFFFFFFF' id: Arrows decals: 762: -30,36 - 1315: -56,1 - 1750: -9,-21 - 3162: -11,27 + 1311: -56,1 + 1739: -9,-21 + 3147: -11,27 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -418,10 +418,10 @@ entities: decals: 595: 49,3 788: -62,40 - 1086: 3,-71 - 1087: 3,-64 - 3440: -36,31 - 3451: -26,38 + 1084: 3,-71 + 1085: 3,-64 + 3425: -36,31 + 3436: -26,38 - node: color: '#FFFFFFFF' id: ArrowsGreyscale @@ -432,19 +432,19 @@ entities: color: '#FFFFFFFF' id: ArrowsGreyscale decals: - 2865: 9,-41 + 2850: 9,-41 - node: cleanable: True color: '#8932B8FF' id: Blasto decals: - 2499: -46.09135,-29.907255 + 2487: -46.09135,-29.907255 - node: color: '#DE3A3A96' id: Bot decals: - 3442: -20,41 - 3445: -13,39 + 3427: -20,41 + 3430: -13,39 - node: color: '#FFFFFFFF' id: Bot @@ -476,590 +476,590 @@ entities: 840: 54,26 841: 52,26 842: 46,26 - 952: 44,26 - 1082: -4,-69 - 1083: -17,-54 - 1108: -28,2 - 1109: -26,2 - 1266: -52,13 - 1267: -50,13 - 1276: -55,16 - 1277: -56,16 - 1309: -58,-4 - 1310: -57,-4 - 1311: -56,-4 - 1380: 54,8 - 1381: 53,8 - 1382: 52,8 - 1383: 54,10 - 1384: 53,10 - 1385: 52,10 - 1388: 54,12 - 1389: 53,12 - 1390: 52,12 - 1437: 6,-20 - 1555: 30,-23 - 1585: -48,16 - 1586: -47,17 - 1778: -25,-6 - 1887: -19,27 - 1905: -26,32 - 1906: -27,32 - 1907: -28,32 - 1908: -23,32 - 1909: -21,32 - 2041: -33,12 - 2042: -33,14 - 2045: -41,14 - 2061: -40,-6 - 2068: -41,-10 - 2086: -42,-8 - 2096: -57,7 - 2097: -57,14 - 2098: -44,-4 - 2146: -40,-20 - 2228: -11,32 - 2229: -13,32 - 2303: 3,11 - 2304: 3,15 - 2331: -5,21 - 2332: -5,20 - 2411: 17,28 - 2412: 47,14 - 2413: 47,-2 - 2414: 19,-21 - 2430: 2,-1 - 2436: 3,-8 - 2440: -20,5 - 2441: -19,5 - 2445: -13,11 - 2454: -42,19 - 2455: -42,20 - 2456: 30,9 - 2457: 36,4 - 2612: 20,16 - 2613: 19,16 - 2848: 4,-35 - 2876: -31,-19 - 2877: -6,-27 - 2878: 3,-28 - 2923: 45,-27 - 2924: 37,-25 - 2925: 32,-21 - 2926: 50,-32 - 2955: 19,26 - 2990: 29,-27 - 2998: 45,10 - 3329: -25,32 - 3330: -29,32 - 3331: -30,32 - 3343: 6,-35 - 3353: 4,-38 - 3354: 6,-38 - 3593: 39,-13 - 3640: 45,-9 + 951: 44,26 + 1081: -4,-69 + 1106: -28,2 + 1107: -26,2 + 1262: -52,13 + 1263: -50,13 + 1272: -55,16 + 1273: -56,16 + 1305: -58,-4 + 1306: -57,-4 + 1307: -56,-4 + 1374: 54,8 + 1375: 53,8 + 1376: 52,8 + 1377: 54,10 + 1378: 53,10 + 1379: 52,10 + 1382: 54,12 + 1383: 53,12 + 1384: 52,12 + 1431: 6,-20 + 1544: 30,-23 + 1574: -48,16 + 1575: -47,17 + 1767: -25,-6 + 1876: -19,27 + 1894: -26,32 + 1895: -27,32 + 1896: -28,32 + 1897: -23,32 + 1898: -21,32 + 2030: -33,12 + 2031: -33,14 + 2034: -41,14 + 2050: -40,-6 + 2057: -41,-10 + 2075: -42,-8 + 2085: -57,7 + 2086: -57,14 + 2087: -44,-4 + 2135: -40,-20 + 2217: -11,32 + 2218: -13,32 + 2292: 3,11 + 2293: 3,15 + 2320: -5,21 + 2321: -5,20 + 2400: 17,28 + 2401: 47,14 + 2402: 47,-2 + 2403: 19,-21 + 2419: 2,-1 + 2425: 3,-8 + 2429: -20,5 + 2430: -19,5 + 2434: -13,11 + 2443: -42,19 + 2444: -42,20 + 2445: 30,9 + 2446: 36,4 + 2597: 20,16 + 2598: 19,16 + 2833: 4,-35 + 2861: -31,-19 + 2862: -6,-27 + 2863: 3,-28 + 2908: 45,-27 + 2909: 37,-25 + 2910: 32,-21 + 2911: 50,-32 + 2940: 19,26 + 2975: 29,-27 + 2983: 45,10 + 3314: -25,32 + 3315: -29,32 + 3316: -30,32 + 3328: 6,-35 + 3338: 4,-38 + 3339: 6,-38 + 3578: 39,-13 + 3625: 45,-9 + 3760: -17,-54 - node: color: '#52B4E996' id: BotGreyscale decals: - 3365: 49,-15 - 3443: -21,41 - 3444: -14,39 + 3350: 49,-15 + 3428: -21,41 + 3429: -14,39 - node: color: '#DE3A3AFF' id: BotLeft decals: - 2874: -33,-21 + 2859: -33,-21 - node: color: '#FFFFFFFF' id: BotLeft decals: - 1312: -52,-1 - 1313: -52,-2 - 1314: -52,-3 - 2060: -40,-5 - 2069: -43,-11 - 2341: 2,28 - 2342: 2,29 - 2343: 6,23 - 2344: 7,23 - 2345: 8,23 - 2846: 4,-37 - 3341: 6,-36 - 3449: -19,46 + 1308: -52,-1 + 1309: -52,-2 + 1310: -52,-3 + 2049: -40,-5 + 2058: -43,-11 + 2330: 2,28 + 2331: 2,29 + 2332: 6,23 + 2333: 7,23 + 2334: 8,23 + 2831: 4,-37 + 3326: 6,-36 + 3434: -19,46 - node: color: '#52B4E996' id: BotLeftGreyscale decals: - 3367: 49,-13 + 3352: 49,-13 - node: color: '#FFFFFFFF' id: BotLeftGreyscale decals: - 2476: 39,-6 + 2465: 39,-6 - node: color: '#DE3A3AFF' id: BotRight decals: - 2871: -35,-17 - 2872: -35,-18 - 2873: -35,-19 - 2875: -35,-20 + 2856: -35,-17 + 2857: -35,-18 + 2858: -35,-19 + 2860: -35,-20 - node: color: '#FFFFFFFF' id: BotRight decals: - 2327: -5,13 - 2328: -5,14 - 2329: -5,15 - 2330: -5,16 - 2333: -5,19 - 2334: -5,18 - 2335: 5,13 - 2847: 4,-36 - 3342: 6,-37 - 3450: -15,46 - 3494: -35,5 + 2316: -5,13 + 2317: -5,14 + 2318: -5,15 + 2319: -5,16 + 2322: -5,19 + 2323: -5,18 + 2324: 5,13 + 2832: 4,-36 + 3327: 6,-37 + 3435: -15,46 + 3479: -35,5 - node: color: '#52B4E996' id: BotRightGreyscale decals: - 3366: 47,-13 + 3351: 47,-13 - node: color: '#FF8FC9FF' id: BotRightGreyscale decals: - 2141: -45,7 + 2130: -45,7 - node: color: '#79150096' id: Box decals: - 1977: -24,-12 - 1978: -24,-13 + 1966: -24,-12 + 1967: -24,-13 - node: color: '#9FED5896' id: Box decals: - 1976: -30,-8 + 1965: -30,-8 - node: color: '#EFB341FF' id: Box decals: - 1974: -30,-13 + 1963: -30,-13 - node: color: '#FFFFFFFF' id: Box decals: - 1660: 53,24 - 1661: 45,24 - 1662: 38,6 - 1663: 38,10 - 2101: -26,0 - 2102: -28,0 + 1649: 53,24 + 1650: 45,24 + 1651: 38,6 + 1652: 38,10 + 2090: -26,0 + 2091: -28,0 - node: color: '#52B4E996' id: BoxGreyscale decals: - 1975: -30,-12 + 1964: -30,-12 - node: color: '#DE3A3A96' id: BoxGreyscale decals: - 1748: -9,-21 + 1737: -9,-21 - node: color: '#FFFFFFFF' id: BoxGreyscale decals: - 3447: -24,45 - 3448: -23,46 + 3432: -24,45 + 3433: -23,46 - node: color: '#FFFFFFFF' id: BrickTileDarkBox decals: - 1316: -53,-2 - 1317: -55,-2 - 1318: -57,-2 - 3368: -49,-7 - 3369: -49,-5 - 3370: -49,-3 - 3371: -49,-1 - 3372: -49,3 - 3373: -51,3 - 3374: -53,3 - 3375: -55,3 - 3376: -47,12 - 3377: -49,12 - 3378: -51,12 + 1312: -53,-2 + 1313: -55,-2 + 1314: -57,-2 + 3353: -49,-7 + 3354: -49,-5 + 3355: -49,-3 + 3356: -49,-1 + 3357: -49,3 + 3358: -51,3 + 3359: -53,3 + 3360: -55,3 + 3361: -47,12 + 3362: -49,12 + 3363: -51,12 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 2442: -13,13 - 2451: -19,18 - 3110: 25,1 + 2431: -13,13 + 2440: -19,18 + 3095: 25,1 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 2448: -21,18 - 3111: 21,1 + 2437: -21,18 + 3096: 21,1 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 2443: -13,11 - 2449: -19,17 - 3046: -110,9 - 3057: -115,12 - 3424: 37,17 + 2432: -13,11 + 2438: -19,17 + 3031: -110,9 + 3042: -115,12 + 3409: 37,17 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 2450: -21,17 - 3043: -114,9 - 3062: -109,12 - 3423: 35,17 + 2439: -21,17 + 3028: -114,9 + 3047: -109,12 + 3408: 35,17 - node: color: '#FFFFFFFF' id: BrickTileDarkEndN decals: - 3114: 23,2 + 3099: 23,2 - node: color: '#FFFFFFFF' id: BrickTileDarkEndS decals: - 3108: 21,0 - 3109: 25,0 - 3115: 23,-1 + 3093: 21,0 + 3094: 25,0 + 3100: 23,-1 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 2446: -14,13 - 3054: -114,9 - 3125: 23,1 + 2435: -14,13 + 3039: -114,9 + 3110: 23,1 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 3053: -110,9 - 3126: 23,1 + 3038: -110,9 + 3111: 23,1 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 2447: -14,11 - 3113: 21,1 - 3124: 23,1 + 2436: -14,11 + 3098: 21,1 + 3109: 23,1 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 3112: 25,1 - 3123: 23,1 + 3097: 25,1 + 3108: 23,1 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 2444: -13,12 - 3049: -110,10 - 3050: -114,10 - 3064: -115,13 - 3116: 23,0 - 3425: 37,18 + 2433: -13,12 + 3034: -110,10 + 3035: -114,10 + 3049: -115,13 + 3101: 23,0 + 3410: 37,18 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 2453: -20,18 - 3051: -111,9 - 3052: -113,9 - 3055: -115,10 - 3056: -109,10 - 3058: -111,10 - 3059: -113,10 - 3121: 22,1 - 3122: 24,1 - 3298: 37,15 - 3299: 36,15 - 3300: 35,15 - 3301: 34,15 + 2442: -20,18 + 3036: -111,9 + 3037: -113,9 + 3040: -115,10 + 3041: -109,10 + 3043: -111,10 + 3044: -113,10 + 3106: 22,1 + 3107: 24,1 + 3283: 37,15 + 3284: 36,15 + 3285: 35,15 + 3286: 34,15 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 2452: -20,17 - 3044: -113,9 - 3045: -111,9 - 3060: -111,12 - 3061: -113,12 - 3119: 24,1 - 3120: 22,1 - 3422: 36,17 + 2441: -20,17 + 3029: -113,9 + 3030: -111,9 + 3045: -111,12 + 3046: -113,12 + 3104: 24,1 + 3105: 22,1 + 3407: 36,17 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 3047: -114,10 - 3048: -110,10 - 3063: -109,13 - 3117: 23,0 + 3032: -114,10 + 3033: -110,10 + 3048: -109,13 + 3102: 23,0 - node: color: '#FFFFFFFF' id: BrickTileSteelBox decals: - 1467: -38,24 - 1468: -36,24 - 1469: -34,24 - 1470: -26,24 - 1471: -28,24 - 1472: -30,24 - 3008: -24,24 - 3009: -22,24 - 3010: -20,24 - 3011: -18,24 - 3012: -16,24 - 3013: -40,24 + 1461: -38,24 + 1462: -36,24 + 1463: -34,24 + 1464: -26,24 + 1465: -28,24 + 1466: -30,24 + 2993: -24,24 + 2994: -22,24 + 2995: -20,24 + 2996: -18,24 + 2997: -16,24 + 2998: -40,24 - node: color: '#52B4E996' id: BrickTileSteelCornerNe decals: - 1967: -34,-10 - 2114: -20,-5 - 2115: -20,-5 - 3358: 49,-13 + 1956: -34,-10 + 2103: -20,-5 + 2104: -20,-5 + 3343: 49,-13 - node: color: '#9FED5896' id: BrickTileSteelCornerNe decals: - 1598: -3,-26 - 1964: -34,-7 + 1587: -3,-26 + 1953: -34,-7 - node: color: '#D381C996' id: BrickTileSteelCornerNe decals: - 1272: -45,14 - 1986: -50,5 - 1996: -45,0 - 2031: -42,-4 - 2078: -40,12 + 1268: -45,14 + 1975: -50,5 + 1985: -45,0 + 2020: -42,-4 + 2067: -40,12 - node: color: '#DE3A3A96' id: BrickTileSteelCornerNe decals: - 1804: -19,-16 - 1954: -19,-10 - 1955: -19,-13 - 2809: -8,-45 + 1793: -19,-16 + 1943: -19,-10 + 1944: -19,-13 + 2794: -8,-45 - node: color: '#52B4E996' id: BrickTileSteelCornerNw decals: - 1966: -35,-10 - 2116: -19,-5 - 2117: -19,-5 - 3357: 47,-13 + 1955: -35,-10 + 2105: -19,-5 + 2106: -19,-5 + 3342: 47,-13 - node: color: '#9FED5896' id: BrickTileSteelCornerNw decals: - 1600: -5,-26 - 1601: -8,-27 - 1965: -35,-7 + 1589: -5,-26 + 1590: -8,-27 + 1954: -35,-7 - node: color: '#D381C996' id: BrickTileSteelCornerNw decals: - 1173: -52,5 - 2027: -46,-4 - 2079: -43,12 + 1171: -52,5 + 2016: -46,-4 + 2068: -43,12 - node: color: '#DE3A3A96' id: BrickTileSteelCornerNw decals: - 1805: -21,-16 - 1956: -20,-10 - 1957: -20,-13 - 2810: -9,-45 + 1794: -21,-16 + 1945: -20,-10 + 1946: -20,-13 + 2795: -9,-45 - node: color: '#52B4E996' id: BrickTileSteelCornerSe decals: - 1969: -34,-11 - 2120: -20,-4 - 2121: -20,-4 - 3359: 49,-15 + 1958: -34,-11 + 2109: -20,-4 + 2110: -20,-4 + 3344: 49,-15 - node: color: '#9FED5896' id: BrickTileSteelCornerSe decals: - 1962: -34,-8 + 1951: -34,-8 - node: color: '#D381C996' id: BrickTileSteelCornerSe decals: - 1296: -52,-7 - 1997: -45,-2 - 2006: -48,-9 - 2034: -42,-9 - 2081: -40,11 - 2100: -44,-11 + 1292: -52,-7 + 1986: -45,-2 + 1995: -48,-9 + 2023: -42,-9 + 2070: -40,11 + 2089: -44,-11 - node: color: '#DE3A3A96' id: BrickTileSteelCornerSe decals: - 1807: -19,-17 - 1960: -19,-14 - 1961: -19,-11 + 1796: -19,-17 + 1949: -19,-14 + 1950: -19,-11 - node: color: '#52B4E996' id: BrickTileSteelCornerSw decals: - 1968: -35,-11 - 2118: -19,-4 - 2119: -19,-4 - 3356: 47,-15 + 1957: -35,-11 + 2107: -19,-4 + 2108: -19,-4 + 3341: 47,-15 - node: color: '#9FED5896' id: BrickTileSteelCornerSw decals: - 1963: -35,-8 + 1952: -35,-8 - node: color: '#D381C996' id: BrickTileSteelCornerSw decals: - 1286: -58,-3 - 1293: -55,-7 - 1322: -60,1 - 2007: -50,-9 - 2021: -46,-11 - 2080: -43,11 + 1282: -58,-3 + 1289: -55,-7 + 1318: -60,1 + 1996: -50,-9 + 2010: -46,-11 + 2069: -43,11 - node: color: '#DE3A3A96' id: BrickTileSteelCornerSw decals: - 1806: -21,-17 - 1958: -20,-14 - 1959: -20,-11 + 1795: -21,-17 + 1947: -20,-14 + 1948: -20,-11 - node: color: '#D381C996' id: BrickTileSteelInnerNe decals: 948: -51,14 - 1987: -50,4 - 1993: -48,0 + 1976: -50,4 + 1982: -48,0 - node: color: '#52B4E996' id: BrickTileSteelInnerNw decals: - 3592: 41,-15 + 3577: 41,-15 - node: color: '#9FED5896' id: BrickTileSteelInnerNw decals: - 1602: -5,-27 + 1591: -5,-27 - node: color: '#D381C996' id: BrickTileSteelInnerNw decals: 947: -51,14 - 1174: -52,4 + 1172: -52,4 - node: color: '#D381C996' id: BrickTileSteelInnerSe decals: - 1992: -48,2 - 2000: -48,-2 - 2036: -44,-9 + 1981: -48,2 + 1989: -48,-2 + 2025: -44,-9 - node: color: '#D381C996' id: BrickTileSteelInnerSw decals: - 1289: -55,-3 + 1285: -55,-3 - node: color: '#52B4E996' id: BrickTileSteelLineE decals: - 3360: 49,-14 + 3345: 49,-14 - node: color: '#9FED5896' id: BrickTileSteelLineE decals: - 1595: -3,-29 - 1596: -3,-28 - 1597: -3,-27 + 1584: -3,-29 + 1585: -3,-28 + 1586: -3,-27 - node: color: '#D381C996' id: BrickTileSteelLineE decals: - 1297: -52,-6 - 1298: -52,-5 - 1299: -52,-4 - 1300: -52,-3 - 1301: -52,-2 - 1308: -52,-1 - 2001: -48,-4 - 2002: -48,-3 - 2003: -48,-5 - 2004: -48,-7 - 2005: -48,-8 - 2032: -42,-7 - 2033: -42,-8 - 2037: -44,-10 + 1293: -52,-6 + 1294: -52,-5 + 1295: -52,-4 + 1296: -52,-3 + 1297: -52,-2 + 1304: -52,-1 + 1990: -48,-4 + 1991: -48,-3 + 1992: -48,-5 + 1993: -48,-7 + 1994: -48,-8 + 2021: -42,-7 + 2022: -42,-8 + 2026: -44,-10 - node: color: '#DE3A3A96' id: BrickTileSteelLineE decals: - 2811: -8,-46 + 2796: -8,-46 - node: color: '#52B4E996' id: BrickTileSteelLineN decals: - 3361: 48,-13 - 3589: 40,-15 - 3590: 39,-15 - 3591: 38,-15 + 3346: 48,-13 + 3574: 40,-15 + 3575: 39,-15 + 3576: 38,-15 - node: color: '#9FED5896' id: BrickTileSteelLineN decals: - 1599: -4,-26 - 1603: -6,-27 - 1604: -7,-27 + 1588: -4,-26 + 1592: -6,-27 + 1593: -7,-27 - node: color: '#D381C996' id: BrickTileSteelLineN decals: 945: -50,14 946: -52,14 - 1175: -53,4 - 1268: -49,14 - 1269: -48,14 - 1270: -47,14 - 1302: -55,-1 - 1303: -57,-1 - 1988: -49,4 - 1989: -48,4 - 1990: -47,4 - 1994: -47,0 - 1995: -46,0 - 2028: -45,-4 - 2029: -44,-4 - 2030: -43,-4 + 1173: -53,4 + 1264: -49,14 + 1265: -48,14 + 1266: -47,14 + 1298: -55,-1 + 1299: -57,-1 + 1977: -49,4 + 1978: -48,4 + 1979: -47,4 + 1983: -47,0 + 1984: -46,0 + 2017: -45,-4 + 2018: -44,-4 + 2019: -43,-4 - node: color: '#DE3A3A96' id: BrickTileSteelLineN decals: - 1729: -8,-18 - 1730: -9,-18 - 1737: -6,-18 - 1808: -20,-16 + 1718: -8,-18 + 1719: -9,-18 + 1726: -6,-18 + 1797: -20,-16 - node: color: '#52B4E996' id: BrickTileSteelLineS decals: - 3362: 48,-15 + 3347: 48,-15 - node: color: '#D381C996' id: BrickTileSteelLineS @@ -1070,70 +1070,75 @@ entities: 942: -49,11 943: -50,11 944: -52,11 - 1281: -55,2 - 1287: -57,-3 - 1288: -56,-3 - 1294: -54,-7 - 1295: -53,-7 - 1321: -59,1 - 1991: -47,2 - 1998: -46,-2 - 1999: -47,-2 - 2035: -43,-9 - 2082: -41,11 - 2083: -42,11 - 2099: -45,-11 + 1277: -55,2 + 1283: -57,-3 + 1284: -56,-3 + 1290: -54,-7 + 1291: -53,-7 + 1317: -59,1 + 1980: -47,2 + 1987: -46,-2 + 1988: -47,-2 + 2024: -43,-9 + 2071: -41,11 + 2072: -42,11 + 2088: -45,-11 - node: color: '#DE3A3A96' id: BrickTileSteelLineS decals: - 1731: -6,-19 - 1732: -7,-19 - 1733: -8,-19 - 1809: -20,-17 + 1720: -6,-19 + 1721: -7,-19 + 1722: -8,-19 + 1798: -20,-17 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 3738: -15,-53 - node: color: '#52B4E996' id: BrickTileSteelLineW decals: - 3587: 41,-13 - 3588: 41,-14 + 3572: 41,-13 + 3573: 41,-14 - node: color: '#9FED5896' id: BrickTileSteelLineW decals: - 1593: -8,-29 - 1594: -8,-28 + 1582: -8,-29 + 1583: -8,-28 - node: color: '#D381C996' id: BrickTileSteelLineW decals: - 1290: -55,-4 - 1291: -55,-5 - 1292: -55,-6 - 1319: -58,-2 - 1323: -60,2 - 2008: -50,-8 - 2009: -50,-7 - 2010: -50,-6 - 2011: -50,-5 - 2012: -50,-4 - 2013: -50,-3 - 2014: -50,-2 - 2015: -50,-1 - 2016: -50,0 - 2022: -46,-10 - 2023: -46,-9 - 2024: -46,-8 - 2025: -46,-7 - 2026: -46,-5 - 2138: -45,7 - 2139: -45,8 - 2140: -45,9 + 1286: -55,-4 + 1287: -55,-5 + 1288: -55,-6 + 1315: -58,-2 + 1319: -60,2 + 1997: -50,-8 + 1998: -50,-7 + 1999: -50,-6 + 2000: -50,-5 + 2001: -50,-4 + 2002: -50,-3 + 2003: -50,-2 + 2004: -50,-1 + 2005: -50,0 + 2011: -46,-10 + 2012: -46,-9 + 2013: -46,-8 + 2014: -46,-7 + 2015: -46,-5 + 2127: -45,7 + 2128: -45,8 + 2129: -45,9 - node: color: '#DE3A3A96' id: BrickTileSteelLineW decals: - 2812: -9,-46 + 2797: -9,-46 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW @@ -1143,98 +1148,98 @@ entities: color: '#334E6DC8' id: BrickTileWhiteBox decals: - 3101: 21,-1 + 3086: 21,-1 - node: color: '#52B4E996' id: BrickTileWhiteBox decals: - 3105: 22,2 + 3090: 22,2 - node: color: '#9FED5896' id: BrickTileWhiteBox decals: - 3103: 22,0 + 3088: 22,0 - node: color: '#A4610696' id: BrickTileWhiteBox decals: - 3107: 25,2 + 3092: 25,2 - node: color: '#D381C996' id: BrickTileWhiteBox decals: - 3106: 21,2 + 3091: 21,2 - node: color: '#D4D4D496' id: BrickTileWhiteBox decals: - 3104: 24,0 + 3089: 24,0 - node: color: '#DE3A3A96' id: BrickTileWhiteBox decals: - 3102: 25,-1 + 3087: 25,-1 - node: color: '#EFB34196' id: BrickTileWhiteBox decals: - 3118: 24,2 + 3103: 24,2 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: - 2818: 8,-28 - 2839: 5,-39 + 2803: 8,-28 + 2824: 5,-39 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe decals: - 3606: 30,-17 - 3607: 30,-20 - 3621: 45,-9 + 3591: 30,-17 + 3592: 30,-20 + 3606: 45,-9 - node: color: '#79150096' id: BrickTileWhiteCornerNe decals: - 2131: -41,-20 - 3495: -33,4 - 3497: -31,1 + 2120: -41,-20 + 3480: -33,4 + 3482: -31,1 - node: color: '#B02E26FF' id: BrickTileWhiteCornerNe decals: - 2802: -4,-45 + 2787: -4,-45 - node: color: '#D381C996' id: BrickTileWhiteCornerNe decals: - 2095: -54,7 + 2084: -54,7 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNe decals: - 1785: -24,-19 + 1774: -24,-19 - node: color: '#EFB34141' id: BrickTileWhiteCornerNe decals: - 1970: -34,-13 + 1959: -34,-13 - node: color: '#EFD54193' id: BrickTileWhiteCornerNe decals: - 3387: 24,21 + 3372: 24,21 - node: color: '#EFD54196' id: BrickTileWhiteCornerNe decals: - 1877: -21,32 - 1899: -25,32 + 1866: -21,32 + 1888: -25,32 - node: color: '#EFD84196' id: BrickTileWhiteCornerNe decals: - 1916: -15,29 + 1905: -15,29 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNe @@ -1244,104 +1249,104 @@ entities: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: - 2819: 3,-28 - 2838: 3,-39 + 2804: 3,-28 + 2823: 3,-39 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw decals: - 3608: 29,-17 - 3609: 29,-20 - 3620: 43,-9 + 3593: 29,-17 + 3594: 29,-20 + 3605: 43,-9 - node: color: '#79150096' id: BrickTileWhiteCornerNw decals: - 2132: -47,-20 - 3496: -35,4 + 2121: -47,-20 + 3481: -35,4 - node: color: '#B02E26FF' id: BrickTileWhiteCornerNw decals: - 2805: -6,-45 + 2790: -6,-45 - node: color: '#D381C996' id: BrickTileWhiteCornerNw decals: - 1274: -47,16 - 2094: -56,7 + 1270: -47,16 + 2083: -56,7 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNw decals: - 1784: -31,-19 + 1773: -31,-19 - node: color: '#EFB34141' id: BrickTileWhiteCornerNw decals: - 1971: -35,-13 + 1960: -35,-13 - node: color: '#EFCC4196' id: BrickTileWhiteCornerNw decals: - 2223: -13,32 + 2212: -13,32 - node: color: '#EFD54193' id: BrickTileWhiteCornerNw decals: - 3386: 19,21 + 3371: 19,21 - node: color: '#EFD54196' id: BrickTileWhiteCornerNw decals: - 1878: -23,32 - 1898: -31,32 + 1867: -23,32 + 1887: -31,32 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw decals: 797: 38,-28 858: 19,14 - 2439: -4,-10 + 2428: -4,-10 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe decals: - 2825: 5,-33 - 2831: 8,-30 - 2835: 5,-40 + 2810: 5,-33 + 2816: 8,-30 + 2820: 5,-40 - node: color: '#52B4E996' id: BrickTileWhiteCornerSe decals: - 3610: 30,-21 - 3611: 30,-18 + 3595: 30,-21 + 3596: 30,-18 - node: color: '#79150096' id: BrickTileWhiteCornerSe decals: - 2133: -41,-22 - 3498: -31,-1 + 2122: -41,-22 + 3483: -31,-1 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSe decals: - 1786: -24,-21 + 1775: -24,-21 - node: color: '#EFB34141' id: BrickTileWhiteCornerSe decals: - 1972: -34,-14 + 1961: -34,-14 - node: color: '#EFD54193' id: BrickTileWhiteCornerSe decals: - 3388: 24,17 + 3373: 24,17 - node: color: '#EFD54196' id: BrickTileWhiteCornerSe decals: - 1875: -15,27 + 1864: -15,27 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSe @@ -1352,157 +1357,157 @@ entities: color: '#334E6DC8' id: BrickTileWhiteCornerSw decals: - 2823: 3,-33 - 2837: 3,-40 + 2808: 3,-33 + 2822: 3,-40 - node: color: '#52B4E996' id: BrickTileWhiteCornerSw decals: - 3612: 29,-18 - 3613: 29,-21 + 3597: 29,-18 + 3598: 29,-21 - node: color: '#79150096' id: BrickTileWhiteCornerSw decals: - 2134: -47,-22 - 3499: -35,-1 + 2123: -47,-22 + 3484: -35,-1 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSw decals: - 1787: -31,-21 + 1776: -31,-21 - node: color: '#EFB34141' id: BrickTileWhiteCornerSw decals: - 1973: -35,-14 + 1962: -35,-14 - node: color: '#EFCC4196' id: BrickTileWhiteCornerSw decals: - 2219: -13,27 - 2239: -5,23 + 2208: -13,27 + 2228: -5,23 - node: color: '#EFD54193' id: BrickTileWhiteCornerSw decals: - 3389: 19,17 + 3374: 19,17 - node: color: '#EFD54196' id: BrickTileWhiteCornerSw decals: - 1880: -23,28 - 1884: -19,27 + 1869: -23,28 + 1873: -19,27 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSw decals: 796: 38,-32 856: 19,11 - 3515: -4,-11 + 3500: -4,-11 - node: color: '#79150096' id: BrickTileWhiteInnerNe decals: - 3504: -33,1 + 3489: -33,1 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNe decals: - 1782: -29,-14 - 1825: -22,-23 + 1771: -29,-14 + 1814: -22,-23 - node: color: '#EFCC4196' id: BrickTileWhiteInnerNe decals: - 2217: -3,23 - 2362: -3,21 + 2206: -3,23 + 2351: -3,21 - node: color: '#EFD84196' id: BrickTileWhiteInnerNe decals: - 1922: -21,29 + 1911: -21,29 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNw decals: - 1773: -31,-6 - 1783: -25,-14 - 1823: -18,-23 - 1824: -17,-22 + 1762: -31,-6 + 1772: -25,-14 + 1812: -18,-23 + 1813: -17,-22 - node: color: '#EFCC4196' id: BrickTileWhiteInnerNw decals: - 2361: -4,21 + 2350: -4,21 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe decals: - 2828: 5,-30 + 2813: 5,-30 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSe decals: - 1777: -29,-6 - 1951: -31,-17 + 1766: -29,-6 + 1940: -31,-17 - node: color: '#EFCC4196' id: BrickTileWhiteInnerSe decals: - 2242: -3,23 - 2340: -3,27 + 2231: -3,23 + 2329: -3,27 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSw decals: - 1776: -25,-6 + 1765: -25,-6 - node: color: '#EFCC4196' id: BrickTileWhiteInnerSw decals: - 2236: -5,27 - 2241: -4,23 + 2225: -5,27 + 2230: -4,23 - node: color: '#EFD54196' id: BrickTileWhiteInnerSw decals: - 1883: -19,28 + 1872: -19,28 - node: color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 2826: 5,-32 - 2827: 5,-31 - 2832: 8,-29 + 2811: 5,-32 + 2812: 5,-31 + 2817: 8,-29 - node: color: '#52B4E996' id: BrickTileWhiteLineE decals: - 2929: 45,-25 - 2930: 45,-24 - 2931: 45,-23 - 2932: 45,-21 - 2933: 45,-20 - 2936: 45,-19 - 2937: 45,-18 - 2938: 45,-17 - 3622: 45,-11 - 3623: 45,-12 - 3624: 45,-13 - 3625: 45,-15 + 2914: 45,-25 + 2915: 45,-24 + 2916: 45,-23 + 2917: 45,-21 + 2918: 45,-20 + 2921: 45,-19 + 2922: 45,-18 + 2923: 45,-17 + 3607: 45,-11 + 3608: 45,-12 + 3609: 45,-13 + 3610: 45,-15 - node: color: '#79150096' id: BrickTileWhiteLineE decals: - 3503: -31,0 - 3510: -33,3 - 3511: -33,2 + 3488: -31,0 + 3495: -33,3 + 3496: -33,2 - node: color: '#B02E26FF' id: BrickTileWhiteLineE decals: - 2803: -4,-46 + 2788: -4,-46 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE @@ -1511,32 +1516,32 @@ entities: 892: -33,-19 893: -33,-18 894: -33,-16 - 1758: -22,-6 - 1759: -22,-5 - 1798: -24,-20 + 1747: -22,-6 + 1748: -22,-5 + 1787: -24,-20 - node: color: '#EFCC4196' id: BrickTileWhiteLineE decals: - 2215: -3,24 - 2216: -3,25 + 2204: -3,24 + 2205: -3,25 - node: color: '#EFD54193' id: BrickTileWhiteLineE decals: - 3390: 24,18 - 3391: 24,19 - 3392: 24,20 + 3375: 24,18 + 3376: 24,19 + 3377: 24,20 - node: color: '#EFD54196' id: BrickTileWhiteLineE decals: - 1876: -21,31 + 1865: -21,31 - node: color: '#EFD84196' id: BrickTileWhiteLineE decals: - 1923: -21,30 + 1912: -21,30 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE @@ -1550,103 +1555,103 @@ entities: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 2815: 4,-28 - 2816: 5,-28 - 2817: 6,-28 - 3350: 7,-38 - 3351: 5,-38 - 3352: 3,-38 + 2800: 4,-28 + 2801: 5,-28 + 2802: 6,-28 + 3335: 7,-38 + 3336: 5,-38 + 3337: 3,-38 - node: color: '#79150096' id: BrickTileWhiteLineN decals: - 2127: -42,-20 - 2128: -43,-20 - 2129: -45,-20 - 2130: -46,-20 - 3509: -34,4 - 3512: -32,1 + 2116: -42,-20 + 2117: -43,-20 + 2118: -45,-20 + 2119: -46,-20 + 3494: -34,4 + 3497: -32,1 - node: color: '#B02E26FF' id: BrickTileWhiteLineN decals: - 2806: -5,-45 + 2791: -5,-45 - node: color: '#D381C996' id: BrickTileWhiteLineN decals: - 1275: -46,16 - 2093: -55,7 + 1271: -46,16 + 2082: -55,7 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 1762: -23,-3 - 1763: -24,-3 - 1764: -25,-3 - 1765: -26,-3 - 1766: -28,-3 - 1767: -29,-3 - 1768: -30,-3 - 1779: -26,-14 - 1780: -27,-14 - 1781: -28,-14 - 1794: -25,-19 - 1795: -27,-19 - 1796: -29,-19 - 1797: -30,-19 - 1817: -19,-23 - 1818: -20,-23 - 1819: -21,-23 + 1751: -23,-3 + 1752: -24,-3 + 1753: -25,-3 + 1754: -26,-3 + 1755: -28,-3 + 1756: -29,-3 + 1757: -30,-3 + 1768: -26,-14 + 1769: -27,-14 + 1770: -28,-14 + 1783: -25,-19 + 1784: -27,-19 + 1785: -29,-19 + 1786: -30,-19 + 1806: -19,-23 + 1807: -20,-23 + 1808: -21,-23 - node: color: '#EFB3414A' id: BrickTileWhiteLineN decals: - 3140: 22,5 - 3141: 24,5 + 3125: 22,5 + 3126: 24,5 - node: color: '#EFCC4196' id: BrickTileWhiteLineN decals: - 2210: 2,23 - 2211: 1,23 - 2212: 0,23 - 2213: -1,23 - 2214: -2,23 - 2224: -11,32 + 2199: 2,23 + 2200: 1,23 + 2201: 0,23 + 2202: -1,23 + 2203: -2,23 + 2213: -11,32 - node: color: '#EFD54193' id: BrickTileWhiteLineN decals: - 3398: 20,21 - 3399: 21,21 - 3400: 22,21 - 3401: 23,21 + 3383: 20,21 + 3384: 21,21 + 3385: 22,21 + 3386: 23,21 - node: color: '#EFD54196' id: BrickTileWhiteLineN decals: - 1900: -26,32 - 1901: -27,32 - 1902: -28,32 - 1903: -29,32 - 1904: -30,32 + 1889: -26,32 + 1890: -27,32 + 1891: -28,32 + 1892: -29,32 + 1893: -30,32 - node: color: '#EFD5692E' id: BrickTileWhiteLineN decals: - 2644: 39,-35 - 2645: 40,-35 - 2646: 41,-35 + 2629: 39,-35 + 2630: 40,-35 + 2631: 41,-35 - node: color: '#EFD84196' id: BrickTileWhiteLineN decals: - 1917: -16,29 - 1918: -18,29 - 1919: -17,29 - 1920: -19,29 - 1921: -20,29 + 1906: -16,29 + 1907: -18,29 + 1908: -17,29 + 1909: -19,29 + 1910: -20,29 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN @@ -1656,31 +1661,31 @@ entities: color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 2421: 3,-1 - 2422: 2,-1 - 2423: 1,-1 - 2424: -1,-1 - 2425: -2,-1 - 2426: -3,-1 - 2824: 4,-33 - 2829: 6,-30 - 2830: 7,-30 - 2836: 4,-40 - 3347: 7,-35 - 3348: 5,-35 - 3349: 3,-35 + 2410: 3,-1 + 2411: 2,-1 + 2412: 1,-1 + 2413: -1,-1 + 2414: -2,-1 + 2415: -3,-1 + 2809: 4,-33 + 2814: 6,-30 + 2815: 7,-30 + 2821: 4,-40 + 3332: 7,-35 + 3333: 5,-35 + 3334: 3,-35 - node: color: '#79150096' id: BrickTileWhiteLineS decals: - 2122: -42,-22 - 2123: -43,-22 - 2124: -44,-22 - 2125: -45,-22 - 2126: -46,-22 - 3500: -34,-1 - 3501: -33,-1 - 3502: -32,-1 + 2111: -42,-22 + 2112: -43,-22 + 2113: -44,-22 + 2114: -45,-22 + 2115: -46,-22 + 3485: -34,-1 + 3486: -33,-1 + 3487: -32,-1 - node: color: '#D381C925' id: BrickTileWhiteLineS @@ -1690,110 +1695,110 @@ entities: color: '#D381C996' id: BrickTileWhiteLineS decals: - 2089: -54,14 - 2090: -55,14 - 2091: -56,14 - 2092: -57,14 + 2078: -54,14 + 2079: -55,14 + 2080: -56,14 + 2081: -57,14 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 1774: -26,-6 - 1775: -28,-6 - 1788: -30,-21 - 1789: -29,-21 - 1790: -28,-21 - 1791: -27,-21 - 1792: -26,-21 - 1793: -25,-21 - 1945: -23,-17 - 1946: -24,-17 - 1947: -25,-17 - 1948: -27,-17 - 1949: -29,-17 - 1950: -30,-17 + 1763: -26,-6 + 1764: -28,-6 + 1777: -30,-21 + 1778: -29,-21 + 1779: -28,-21 + 1780: -27,-21 + 1781: -26,-21 + 1782: -25,-21 + 1934: -23,-17 + 1935: -24,-17 + 1936: -25,-17 + 1937: -27,-17 + 1938: -29,-17 + 1939: -30,-17 - node: color: '#EFCC4196' id: BrickTileWhiteLineS decals: - 2205: 2,23 - 2206: 1,23 - 2207: 0,23 - 2208: -1,23 - 2209: -2,23 - 2218: -11,27 - 2230: -10,27 - 2231: -9,27 - 2232: -8,27 - 2233: -7,27 - 2234: -6,27 - 2336: 1,27 - 2337: 0,27 - 2338: -1,27 - 2339: -2,27 + 2194: 2,23 + 2195: 1,23 + 2196: 0,23 + 2197: -1,23 + 2198: -2,23 + 2207: -11,27 + 2219: -10,27 + 2220: -9,27 + 2221: -8,27 + 2222: -7,27 + 2223: -6,27 + 2325: 1,27 + 2326: 0,27 + 2327: -1,27 + 2328: -2,27 - node: color: '#EFD54193' id: BrickTileWhiteLineS decals: - 3393: 22,17 - 3394: 21,17 - 3395: 20,17 + 3378: 22,17 + 3379: 21,17 + 3380: 20,17 - node: color: '#EFD54196' id: BrickTileWhiteLineS decals: - 1881: -21,28 - 1882: -20,28 - 1885: -17,27 - 1886: -16,27 + 1870: -21,28 + 1871: -20,28 + 1874: -17,27 + 1875: -16,27 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: 800: 39,-32 831: -3,-9 - 2437: -3,-11 - 2438: -4,-11 + 2426: -3,-11 + 2427: -4,-11 - node: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 2820: 3,-29 - 2821: 3,-31 - 2822: 3,-32 + 2805: 3,-29 + 2806: 3,-31 + 2807: 3,-32 - node: color: '#52B4E996' id: BrickTileWhiteLineW decals: - 2927: 43,-22 - 2928: 43,-23 - 3379: 43,-25 - 3594: 43,-21 - 3595: 43,-20 - 3596: 43,-18 - 3597: 43,-17 - 3616: 43,-15 - 3617: 43,-13 - 3618: 43,-12 - 3619: 43,-11 + 2912: 43,-22 + 2913: 43,-23 + 3364: 43,-25 + 3579: 43,-21 + 3580: 43,-20 + 3581: 43,-18 + 3582: 43,-17 + 3601: 43,-15 + 3602: 43,-13 + 3603: 43,-12 + 3604: 43,-11 - node: color: '#79150096' id: BrickTileWhiteLineW decals: - 3505: -35,0 - 3506: -35,1 - 3507: -35,2 - 3508: -35,3 + 3490: -35,0 + 3491: -35,1 + 3492: -35,2 + 3493: -35,3 - node: color: '#B02E26FF' id: BrickTileWhiteLineW decals: - 2804: -6,-46 + 2789: -6,-46 - node: color: '#D381C996' id: BrickTileWhiteLineW decals: - 1273: -47,15 + 1269: -47,15 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW @@ -1804,34 +1809,34 @@ entities: 888: -35,-18 889: -35,-17 890: -35,-16 - 1772: -31,-5 - 1820: -17,-21 - 1821: -17,-20 - 1822: -17,-19 - 1942: -21,-20 - 1943: -21,-22 + 1761: -31,-5 + 1809: -17,-21 + 1810: -17,-20 + 1811: -17,-19 + 1931: -21,-20 + 1932: -21,-22 - node: color: '#EFCC4196' id: BrickTileWhiteLineW decals: - 2220: -13,29 - 2221: -13,30 - 2222: -13,31 - 2235: -5,26 - 2237: -5,25 - 2238: -5,24 - 2240: -4,22 + 2209: -13,29 + 2210: -13,30 + 2211: -13,31 + 2224: -5,26 + 2226: -5,25 + 2227: -5,24 + 2229: -4,22 - node: color: '#EFD54193' id: BrickTileWhiteLineW decals: - 3396: 19,19 - 3397: 19,20 + 3381: 19,19 + 3382: 19,20 - node: color: '#EFD54196' id: BrickTileWhiteLineW decals: - 1879: -23,29 + 1868: -23,29 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW @@ -1844,7 +1849,7 @@ entities: color: '#FFFFFFFF' id: Bushb1 decals: - 989: -5.0759892,-67.511505 + 988: -5.0759892,-67.511505 - node: color: '#FFFFFFFF' id: Bushb2 @@ -1855,46 +1860,46 @@ entities: id: Bushb3 decals: 461: -8.918216,35.06559 - 990: 5.128752,-67.43338 + 989: 5.128752,-67.43338 - node: color: '#FFFFFFFF' id: Bushe2 decals: - 999: -4.964998,-66.74588 - 1615: -48.067986,5.0444627 + 998: -4.964998,-66.74588 + 1604: -48.067986,5.0444627 - node: color: '#FFFFFFFF' id: Bushe3 decals: - 965: 49.993763,22.959341 + 964: 49.993763,22.959341 - node: color: '#FFFFFFFF' id: Bushe4 decals: - 964: 48.900013,22.974966 - 998: -5.339998,-66.605255 - 1000: 5.097502,-68.605255 - 1616: -46.83361,5.0444627 + 963: 48.900013,22.974966 + 997: -5.339998,-66.605255 + 999: 5.097502,-68.605255 + 1605: -46.83361,5.0444627 - node: color: '#FFFFFFFF' id: Bushf1 decals: - 1613: -46.89611,5.0132127 + 1602: -46.89611,5.0132127 - node: color: '#FFFFFFFF' id: Bushf3 decals: - 1614: -48.14611,4.9663377 + 1603: -48.14611,4.9663377 - node: color: '#FFFFFFFF' id: Bushh1 decals: - 1403: 11.007317,-66.29063 + 1397: 11.007317,-66.29063 - node: color: '#FFFFFFFF' id: Bushh2 decals: - 1404: 11.022942,-68.72813 + 1398: 11.022942,-68.72813 - node: color: '#FFFFFFFF' id: Bushi1 @@ -1902,76 +1907,74 @@ entities: 237: 32.840233,-26.000742 412: 8.857405,4.0894966 466: -8.808841,36.12809 - 961: 48.025013,28.959341 - 3421: 28.940447,-35.765743 + 960: 48.025013,28.959341 + 3406: 28.940447,-35.765743 - node: color: '#FFFFFFFF' id: Bushi2 decals: - 468: -9.136966,33.87809 - 1398: 11.038567,-68.5875 + 1392: 11.038567,-68.5875 - node: color: '#FFFFFFFF' id: Bushi3 decals: 236: 34.512108,-25.938242 410: 12.107405,4.5426216 - 465: -9.121341,33.831215 - 962: 49.946888,28.959341 - 1017: -0.82901984,-67.68338 - 1397: 10.976067,-67.41563 + 961: 49.946888,28.959341 + 1016: -0.82901984,-67.68338 + 1391: 10.976067,-67.41563 - node: color: '#FFFFFFFF' id: Bushi4 decals: 411: 11.013655,3.2457466 - 1016: 0.8428552,-67.55838 - 1396: 10.991692,-65.86875 + 1015: 0.8428552,-67.55838 + 1390: 10.991692,-65.86875 - node: color: '#FFFFFFFF' id: Bushj2 decals: 238: 33.887108,-25.969492 - 1002: -5.121248,-68.96463 - 1612: -47.52111,5.1225877 + 1001: -5.121248,-68.96463 + 1601: -47.52111,5.1225877 - node: color: '#FFFFFFFF' id: Bushj3 decals: - 1001: 5.097502,-65.99588 - 1018: -5,-66 + 1000: 5.097502,-65.99588 + 1017: -5,-66 - node: color: '#FFFFFFFF' id: Bushm2 decals: - 1402: 10.991692,-67.525 + 1396: 10.991692,-67.525 - node: color: '#FFFFFFFF' id: Bushn1 decals: 519: -6.033051,-6.444069 - 963: 48.978138,29.037466 + 962: 48.978138,29.037466 - node: color: '#FFFFFFFF' id: Caution decals: 458: -7,31 - 1110: -27,-1 - 1749: -9,-21 - 2610: -55,17 + 1108: -27,-1 + 1738: -9,-21 + 2595: -55,17 - node: color: '#DE3A3A96' id: CautionGreyscale decals: - 1751: -7,-18 + 1740: -7,-18 - node: color: '#52B4E996' id: CheckerNESW decals: - 1405: -20,-8 - 1406: -20,-7 - 1407: -19,-7 - 1408: -19,-8 + 1399: -20,-8 + 1400: -20,-7 + 1401: -19,-7 + 1402: -19,-8 - node: color: '#D4D4D428' id: CheckerNESW @@ -1985,57 +1988,57 @@ entities: color: '#D4D4D453' id: CheckerNESW decals: - 1910: -20,30 - 1911: -17,30 - 1912: -16,30 + 1899: -20,30 + 1900: -17,30 + 1901: -16,30 - node: color: '#D4D4D46C' id: CheckerNESW decals: - 1344: 23,-37 - 1345: 23,-38 - 1346: 24,-38 - 1347: 24,-37 - 1348: 25,-37 - 1349: 25,-38 - 1350: 26,-38 - 1351: 26,-37 - 1352: 27,-38 - 1353: 27,-37 - 1354: 27,-36 - 1355: 26,-36 - 1356: 25,-36 - 1357: 24,-36 - 1358: 23,-36 - 1359: 23,-35 - 1360: 24,-35 - 1363: 26,-34 - 1364: 24,-34 - 1365: 23,-34 - 1366: 25,-34 - 1367: 26,-33 - 1368: 25,-33 - 1369: 24,-33 - 1370: 23,-33 - 1371: 23,-32 - 1372: 24,-32 - 1373: 25,-32 - 1374: 26,-32 - 1375: 26,-31 - 1376: 25,-31 - 1377: 24,-31 - 1378: 23,-31 + 1340: 23,-37 + 1341: 23,-38 + 1342: 24,-38 + 1343: 24,-37 + 1344: 25,-37 + 1345: 25,-38 + 1346: 26,-38 + 1347: 26,-37 + 1348: 27,-38 + 1349: 27,-37 + 1350: 27,-36 + 1351: 26,-36 + 1352: 25,-36 + 1353: 24,-36 + 1354: 23,-36 + 1355: 23,-35 + 1356: 24,-35 + 1357: 26,-34 + 1358: 24,-34 + 1359: 23,-34 + 1360: 25,-34 + 1361: 26,-33 + 1362: 25,-33 + 1363: 24,-33 + 1364: 23,-33 + 1365: 23,-32 + 1366: 24,-32 + 1367: 25,-32 + 1368: 26,-32 + 1369: 26,-31 + 1370: 25,-31 + 1371: 24,-31 + 1372: 23,-31 - node: color: '#D4D4D496' id: CheckerNESW decals: - 3680: 23,-39 - 3681: 24,-39 - 3682: 25,-39 - 3683: 26,-39 - 3684: 27,-39 - 3685: 26,-35 - 3686: 25,-35 + 3658: 23,-39 + 3659: 24,-39 + 3660: 25,-39 + 3661: 26,-39 + 3662: 27,-39 + 3663: 26,-35 + 3664: 25,-35 - node: color: '#334E6DC8' id: CheckerNWSE @@ -2067,39 +2070,39 @@ entities: 252: 34,-13 253: 35,-13 254: 36,-13 - 1915: -20,30 - 2907: 44,-14 - 2908: 44,-13 - 2909: 44,-12 - 2910: 44,-11 - 2911: 44,-10 - 3142: 47,-11 - 3143: 47,-10 - 3144: 47,-9 - 3145: 48,-9 - 3146: 48,-10 - 3147: 48,-11 - 3148: 49,-11 - 3149: 49,-10 - 3150: 49,-9 - 3151: 50,-9 - 3152: 50,-10 - 3153: 50,-11 - 3632: 44,-18 - 3633: 44,-19 - 3634: 44,-20 - 3635: 44,-21 - 3636: 44,-22 - 3637: 44,-23 - 3638: 44,-24 + 1904: -20,30 + 2892: 44,-14 + 2893: 44,-13 + 2894: 44,-12 + 2895: 44,-11 + 2896: 44,-10 + 3127: 47,-11 + 3128: 47,-10 + 3129: 47,-9 + 3130: 48,-9 + 3131: 48,-10 + 3132: 48,-11 + 3133: 49,-11 + 3134: 49,-10 + 3135: 49,-9 + 3136: 50,-9 + 3137: 50,-10 + 3138: 50,-11 + 3617: 44,-18 + 3618: 44,-19 + 3619: 44,-20 + 3620: 44,-21 + 3621: 44,-22 + 3622: 44,-23 + 3623: 44,-24 - node: color: '#79150096' id: CheckerNWSE decals: - 1738: -9,-16 - 1739: -8,-16 - 1740: -7,-16 - 1741: -6,-16 + 1727: -9,-16 + 1728: -8,-16 + 1729: -7,-16 + 1730: -6,-16 - node: color: '#A4610696' id: CheckerNWSE @@ -2171,15 +2174,15 @@ entities: color: '#D4D4D406' id: CheckerNWSE decals: - 2481: -33,-4 - 2482: -33,-3 - 2483: -34,-3 - 2484: -35,-3 - 2485: -35,-4 - 2486: -34,-4 - 2487: -35,-5 - 2488: -34,-5 - 2489: -33,-5 + 2470: -33,-4 + 2471: -33,-3 + 2472: -34,-3 + 2473: -35,-3 + 2474: -35,-4 + 2475: -34,-4 + 2476: -35,-5 + 2477: -34,-5 + 2478: -33,-5 - node: color: '#D4D4D428' id: CheckerNWSE @@ -2197,23 +2200,23 @@ entities: 382: 14,-14 383: 14,-13 384: 14,-12 - 1127: 1,-55 - 1128: 0,-55 - 1129: -1,-55 - 1130: -1,-56 - 1131: 0,-56 - 1132: 1,-56 - 1133: 1,-57 - 1134: 0,-57 - 1135: -1,-57 - 1136: 0,-58 - 1137: 0,-54 + 1125: 1,-55 + 1126: 0,-55 + 1127: -1,-55 + 1128: -1,-56 + 1129: 0,-56 + 1130: 1,-56 + 1131: 1,-57 + 1132: 0,-57 + 1133: -1,-57 + 1134: 0,-58 + 1135: 0,-54 - node: color: '#DE3A3A96' id: CheckerNWSE decals: - 1913: -16,30 - 1914: -17,30 + 1902: -16,30 + 1903: -17,30 - node: color: '#EFB34196' id: CheckerNWSE @@ -2237,34 +2240,34 @@ entities: color: '#FFEF9292' id: CheckerNWSE decals: - 2893: 44,-28 - 2894: 44,-29 - 2895: 44,-30 - 2896: 44,-31 - 2897: 44,-32 - 2898: 44,-33 - 2899: 44,-34 + 2878: 44,-28 + 2879: 44,-29 + 2880: 44,-30 + 2881: 44,-31 + 2882: 44,-32 + 2883: 44,-33 + 2884: 44,-34 - node: cleanable: True color: '#00000069' id: Damaged decals: - 2860: -58,26 - 2861: -59,26 - 2862: -60,27 + 2845: -58,26 + 2846: -59,26 + 2847: -60,27 - node: angle: 1.5707963267948966 rad color: '#79150096' id: Delivery decals: - 2857: -7,-47 + 2842: -7,-47 - node: color: '#DE3A3A96' id: Delivery decals: - 3007: -32,-20 - 3513: -32,2 - 3514: -31,2 + 2992: -32,-20 + 3498: -32,2 + 3499: -31,2 - node: color: '#FFFFFFFF' id: Delivery @@ -2274,77 +2277,95 @@ entities: 418: -25,36 419: -26,36 420: -26,35 - 1386: 51,10 - 1387: 51,8 - 1391: 51,12 - 1587: -46,17 - 1657: 41,19 - 1658: 40,19 - 1659: 39,19 - 1871: -21,26 - 1872: -23,26 - 2040: -41,-5 - 2647: 41,-35 - 3005: 42,6 - 3006: -18,26 - 3154: 0,30 - 3165: 23,3 - 3178: 38,1 - 3446: -21,43 - 3453: -17,47 - 3454: -18,48 - 3455: -16,48 - 3531: 17,-21 - 3532: 16,-21 - 3533: 15,-21 - 3534: 1,-27 - 3535: 0,-27 - 3536: -1,-27 - 3537: -1,-22 - 3538: 0,-22 - 3539: 1,-22 - 3548: -13,-25 - 3549: -13,-24 - 3550: -13,-23 - 3551: -19,7 - 3552: -19,8 - 3553: -19,9 - 3554: -13,7 - 3555: -13,8 - 3556: -13,9 - 3575: 18,7 - 3576: 18,8 - 3577: 18,9 - 3578: 14,7 - 3579: 14,8 - 3580: 14,9 - 3581: 18,23 - 3582: 18,24 - 3583: 18,25 + 1380: 51,10 + 1381: 51,8 + 1385: 51,12 + 1576: -46,17 + 1646: 41,19 + 1647: 40,19 + 1648: 39,19 + 1860: -21,26 + 1861: -23,26 + 2029: -41,-5 + 2632: 41,-35 + 2990: 42,6 + 2991: -18,26 + 3139: 0,30 + 3150: 23,3 + 3163: 38,1 + 3431: -21,43 + 3438: -17,47 + 3439: -18,48 + 3440: -16,48 + 3516: 17,-21 + 3517: 16,-21 + 3518: 15,-21 + 3519: 1,-27 + 3520: 0,-27 + 3521: -1,-27 + 3522: -1,-22 + 3523: 0,-22 + 3524: 1,-22 + 3533: -13,-25 + 3534: -13,-24 + 3535: -13,-23 + 3536: -19,7 + 3537: -19,8 + 3538: -19,9 + 3539: -13,7 + 3540: -13,8 + 3541: -13,9 + 3560: 18,7 + 3561: 18,8 + 3562: 18,9 + 3563: 14,7 + 3564: 14,8 + 3565: 14,9 + 3566: 18,23 + 3567: 18,24 + 3568: 18,25 + 3686: 1,-75 + 3687: 0,-75 + 3688: -1,-75 + 3689: 1,-60 + 3690: 0,-60 + 3691: -1,-60 + 3692: 1,-53 + 3693: 0,-53 + 3694: -1,-53 + 3695: -1,-44 + 3696: 0,-44 + 3697: 1,-44 + 3704: 4,-56 + 3705: 4,-55 + 3706: 4,-54 + 3707: -4,-56 + 3708: -4,-55 + 3709: -4,-54 - node: color: '#52B4E996' id: DeliveryGreyscale decals: - 3614: 31,-20 - 3615: 31,-18 + 3599: 31,-20 + 3600: 31,-18 - node: color: '#D381C941' id: DeliveryGreyscale decals: - 3427: -53,0 - 3428: -56,0 + 3412: -53,0 + 3413: -56,0 - node: color: '#D381C996' id: DeliveryGreyscale decals: - 1282: -56,1 + 1278: -56,1 - node: cleanable: True color: '#FFFFFFFF' id: DeliveryGreyscale decals: - 3325: -61,17 - 3326: -70,17 + 3310: -61,17 + 3311: -70,17 - node: cleanable: True color: '#FFFFFFFF' @@ -2360,157 +2381,157 @@ entities: 69: 18,-51 70: 17,-51 71: 17,-51 - 2527: -45,-32 - 2528: -46,-32 - 2529: -46,-33 - 2530: -47,-33 - 2531: -46,-34 - 2532: -48,-32 - 2533: -49,-31 - 2534: -46,-30 - 2535: -49,-33 - 2536: -49,-32 - 2537: -48,-33 - 2538: -50,-32 - 2539: -50,-31 - 2540: -47,-32 - 2541: -48,-31 - 2542: -47,-34 - 2543: -47,-35 - 2544: -46,-35 - 2545: -45,-34 - 2546: -44,-34 - 2547: -44,-32 - 2548: -46,-31 - 2549: -49,-30 - 2550: -52,-30 - 2551: -52,-33 - 2552: -45,-29 - 2553: -31,-31 - 2554: -31,-32 - 2555: -29,-32 - 2556: -32,-32 - 2557: -35,-32 - 2558: -34,-32 - 2559: -39,-32 - 2560: -40,-31 - 2561: -34,-31 - 2562: -20,-35 - 2563: -11,-45 - 2564: -11,-44 - 2565: -13,-45 - 2566: -14,-45 - 2573: 53,-7 - 2574: 53,-9 - 2575: 53,-10 - 2576: 53,-11 - 2577: 54,-11 - 2578: 55,-12 - 2579: 55,-15 - 2580: 50,-6 - 2581: 47,-5 - 2582: 33,-5 - 2583: 33,-6 - 2584: 31,-7 - 2585: 29,-8 - 2586: 33,-3 - 2587: 30,-10 - 2588: 31,-2 - 2589: 30,-1 - 2590: 32,1 - 2591: 31,2 - 2592: 57,-25 - 2593: 59,-42 - 2594: 58,-43 - 2595: 56,-43 - 2596: 47,-43 - 2597: 45,-41 - 2600: 31,-40 - 2601: 30,-40 - 2614: 36,20 - 2615: 37,20 - 2616: 35,21 - 2617: 32,20 - 2618: 30,20 - 2619: 27,21 - 2620: 31,17 - 2621: 32,11 - 2622: 29,12 - 2631: -31,-35 - 2632: -33,-36 - 2633: -30,-35 - 2634: -17,-38 - 2635: -17,-37 - 2636: -18,-35 - 2637: -13,-46 - 2638: -12,-47 - 2639: -8,-50 - 2640: -8,-52 - 2641: -15,-49 - 2704: 13,-46 - 2705: 14,-47 - 2706: 15,-45 - 2707: 17,-44 - 2708: 19,-47 - 2709: 11,-46 - 2710: 10,-47 - 2711: 10,-49 - 2712: 13,-40 - 2713: 12,-40 - 2714: 11,-41 - 2715: 5,-51 - 2849: 5,-43 - 2850: 6,-43 - 2851: -3,-43 - 2852: -6,-41 - 2853: -13,-40 - 2854: -12,-41 - 2855: -12,-42 - 2856: -14,-41 - 2866: 41,-50 - 2867: 42,-52 - 2868: 41,-49 - 2869: 38,-52 - 2870: 22,-49 - 3014: -59,44 - 3015: -59,45 - 3016: -60,46 - 3017: -58,47 - 3018: -57,44 - 3019: -58,43 - 3020: -59,40 - 3021: -60,41 - 3022: -60,42 - 3023: -61,43 - 3024: -61,44 - 3025: -62,45 - 3026: -62,47 - 3027: -63,47 - 3028: -61,48 - 3029: -61,49 - 3030: -62,50 - 3031: -62,51 - 3032: -58,52 - 3033: -58,51 - 3034: -59,51 - 3035: -59,50 - 3036: -58,49 - 3037: -53,46 - 3038: -56,46 - 3039: -58,37 - 3040: -59,37 - 3041: -60,39 - 3042: -59,36 - 3321: 40,-48 - 3322: 41,-45 - 3323: 40,-44 - 3324: 43,-46 - 3327: -23,-33 - 3328: -24,-33 - 3669: 27,-41 - 3670: 22,-41 - 3671: 28,-42 - 3672: 28,-41 + 2515: -45,-32 + 2516: -46,-32 + 2517: -46,-33 + 2518: -47,-33 + 2519: -46,-34 + 2520: -48,-32 + 2521: -49,-31 + 2522: -46,-30 + 2523: -49,-33 + 2524: -49,-32 + 2525: -48,-33 + 2526: -50,-32 + 2527: -50,-31 + 2528: -47,-32 + 2529: -48,-31 + 2530: -47,-34 + 2531: -47,-35 + 2532: -46,-35 + 2533: -45,-34 + 2534: -44,-34 + 2535: -44,-32 + 2536: -46,-31 + 2537: -49,-30 + 2538: -52,-30 + 2539: -52,-33 + 2540: -45,-29 + 2541: -31,-31 + 2542: -31,-32 + 2543: -29,-32 + 2544: -32,-32 + 2545: -35,-32 + 2546: -34,-32 + 2547: -39,-32 + 2548: -40,-31 + 2549: -34,-31 + 2550: -20,-35 + 2551: -11,-45 + 2552: -11,-44 + 2553: -13,-45 + 2554: -14,-45 + 2561: 53,-7 + 2562: 53,-9 + 2563: 53,-10 + 2564: 53,-11 + 2565: 54,-11 + 2566: 55,-12 + 2567: 55,-15 + 2568: 50,-6 + 2569: 47,-5 + 2570: 33,-5 + 2571: 33,-6 + 2572: 31,-7 + 2573: 29,-8 + 2574: 33,-3 + 2575: 30,-10 + 2576: 31,-2 + 2577: 30,-1 + 2578: 32,1 + 2579: 31,2 + 2580: 57,-25 + 2581: 59,-42 + 2582: 58,-43 + 2583: 56,-43 + 2584: 47,-43 + 2585: 45,-41 + 2586: 31,-40 + 2587: 30,-40 + 2599: 36,20 + 2600: 37,20 + 2601: 35,21 + 2602: 32,20 + 2603: 30,20 + 2604: 27,21 + 2605: 31,17 + 2606: 32,11 + 2607: 29,12 + 2616: -31,-35 + 2617: -33,-36 + 2618: -30,-35 + 2619: -17,-38 + 2620: -17,-37 + 2621: -18,-35 + 2622: -13,-46 + 2623: -12,-47 + 2624: -8,-50 + 2625: -8,-52 + 2626: -15,-49 + 2689: 13,-46 + 2690: 14,-47 + 2691: 15,-45 + 2692: 17,-44 + 2693: 19,-47 + 2694: 11,-46 + 2695: 10,-47 + 2696: 10,-49 + 2697: 13,-40 + 2698: 12,-40 + 2699: 11,-41 + 2700: 5,-51 + 2834: 5,-43 + 2835: 6,-43 + 2836: -3,-43 + 2837: -6,-41 + 2838: -13,-40 + 2839: -12,-41 + 2840: -12,-42 + 2841: -14,-41 + 2851: 41,-50 + 2852: 42,-52 + 2853: 41,-49 + 2854: 38,-52 + 2855: 22,-49 + 2999: -59,44 + 3000: -59,45 + 3001: -60,46 + 3002: -58,47 + 3003: -57,44 + 3004: -58,43 + 3005: -59,40 + 3006: -60,41 + 3007: -60,42 + 3008: -61,43 + 3009: -61,44 + 3010: -62,45 + 3011: -62,47 + 3012: -63,47 + 3013: -61,48 + 3014: -61,49 + 3015: -62,50 + 3016: -62,51 + 3017: -58,52 + 3018: -58,51 + 3019: -59,51 + 3020: -59,50 + 3021: -58,49 + 3022: -53,46 + 3023: -56,46 + 3024: -58,37 + 3025: -59,37 + 3026: -60,39 + 3027: -59,36 + 3306: 40,-48 + 3307: 41,-45 + 3308: 40,-44 + 3309: 43,-46 + 3312: -23,-33 + 3313: -24,-33 + 3653: 27,-41 + 3654: 22,-41 + 3655: 28,-42 + 3656: 28,-41 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -2527,8 +2548,8 @@ entities: color: '#FFFFFFFF' id: DirtHeavy decals: - 3179: 37,-2 - 3180: 37,2 + 3164: 37,-2 + 3165: 37,2 - node: cleanable: True color: '#FFFFFFFF' @@ -2548,37 +2569,37 @@ entities: 619: 49,3 871: -5,-25 872: -4,-25 - 1697: -39,9 - 1716: -10,-15 - 1747: -7,-16 - 2305: -1,13 - 2381: 52,-38 - 2382: 52,-38 - 2493: 53,-22 - 2494: 53,-23 - 2500: -46,-30 - 2501: -45,-30 - 2502: -45,-32 - 2503: -46,-33 - 2504: -46,-33 - 2505: -50,-33 - 2506: -48,-32 - 2623: 30,12 - 2624: 27,11 - 2625: 30,18 - 2626: 29,21 - 2798: -63,-10 - 2863: -59,26 - 2864: -60,26 - 2999: 45,9 - 3225: 43,2 - 3226: 45,0 - 3227: 45,-1 - 3228: 48,4 - 3275: 40,-2 - 3429: -59,20 - 3430: -59,22 - 3431: -59,22 + 1686: -39,9 + 1705: -10,-15 + 1736: -7,-16 + 2294: -1,13 + 2370: 52,-38 + 2371: 52,-38 + 2481: 53,-22 + 2482: 53,-23 + 2488: -46,-30 + 2489: -45,-30 + 2490: -45,-32 + 2491: -46,-33 + 2492: -46,-33 + 2493: -50,-33 + 2494: -48,-32 + 2608: 30,12 + 2609: 27,11 + 2610: 30,18 + 2611: 29,21 + 2783: -63,-10 + 2848: -59,26 + 2849: -60,26 + 2984: 45,9 + 3210: 43,2 + 3211: 45,0 + 3212: 45,-1 + 3213: 48,4 + 3260: 40,-2 + 3414: -59,20 + 3415: -59,22 + 3416: -59,22 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -2594,11 +2615,11 @@ entities: color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 3664: 5,16 - 3665: 0,12 - 3666: -2,14 - 3667: 2,14 - 3668: 8,14 + 3648: 5,16 + 3649: 0,12 + 3650: -2,14 + 3651: 2,14 + 3652: 8,14 - node: color: '#FFFFFFFF' id: DirtLight @@ -2624,12 +2645,12 @@ entities: 898: -33,-20 899: -33,-17 900: -32,-20 - 3186: 37,1 - 3187: 37,-1 - 3188: 38,0 - 3189: 36,0 - 3190: 36,-1 - 3191: 40,0 + 3171: 37,1 + 3172: 37,-1 + 3173: 38,0 + 3174: 36,0 + 3175: 36,-1 + 3176: 40,0 - node: cleanable: True color: '#FFFFFFFF' @@ -2773,180 +2794,184 @@ entities: 936: -25,-23 937: -34,-23 938: -37,-24 - 1111: -10,-55 - 1112: -14,-56 - 1113: -19,-55 - 1114: -7,-54 - 1115: -2,-54 - 1116: -3,-57 - 1117: 2,-59 - 1118: -3,-64 - 1119: 0,-61 - 1120: -3,-66 - 1121: -3,-71 - 1122: -1,-73 - 1123: 2,-71 - 1124: 1,-55 - 1125: -1,-47 - 1126: 0,-45 - 1195: 20,24 - 1196: 15,25 - 1197: 16,27 - 1198: 34,23 - 1199: 38,24 - 1200: 44,26 - 1201: 45,25 - 1202: 52,25 - 1203: 53,26 - 1204: 52,21 - 1205: 44,21 - 1206: 41,20 - 1207: 52,14 - 1208: 48,18 - 1209: 49,16 - 1210: 45,7 - 1211: 20,8 - 1212: 32,7 - 1213: 34,8 - 1214: 16,8 - 1215: 5,8 - 1216: -7,9 - 1217: -8,8 - 1256: 7,-22 - 1257: 5,-23 - 1258: 4,-23 - 1259: 7,-24 - 1260: 23,-23 - 1261: 18,-28 - 1262: 21,-35 - 1263: 19,-34 - 1698: -38,9 - 1699: -39,8 - 1700: -39,7 - 1701: -35,8 - 1702: -39,-1 - 1718: -10,-16 - 1719: -10,-14 - 1720: -11,-14 - 1721: -10,-13 - 1722: -11,-13 - 1723: -8,-12 - 1724: -8,-14 - 1725: -9,-13 - 1726: -10,-13 - 1727: -11,-17 - 1728: -11,-18 - 1744: -9,-16 - 1745: -8,-16 - 1746: -8,-16 - 2070: -39,-12 - 2071: -39,-8 - 2072: -40,-7 - 2073: -39,-8 - 2075: -39,-9 - 2076: -39,-3 - 2077: -39,3 - 2309: 1,13 - 2310: 0,14 - 2311: 0,15 - 2312: 0,15 - 2313: 1,15 - 2314: 3,14 - 2315: 5,15 - 2316: 7,13 - 2317: 9,14 - 2318: 11,12 - 2319: 11,14 - 2320: 5,17 - 2321: 4,17 - 2322: 4,18 - 2323: -4,17 - 2324: -4,19 - 2325: -3,20 - 2326: -2,17 - 2363: 3,19 - 2364: 4,20 - 2366: -4,21 - 2367: -3,22 - 2368: -3,24 - 2369: -2,21 - 2370: -2,20 - 2371: -3,23 - 2372: -5,28 - 2373: -5,27 - 2374: -11,28 - 2375: -12,29 - 2376: -13,30 - 2377: -13,31 - 2378: -12,32 - 2379: -22,31 - 2380: -30,30 - 2383: 51,-38 - 2384: 51,-38 - 2393: 49,-39 - 2514: -52,-35 - 2515: -52,-35 - 2516: -52,-32 - 2517: -49,-31 - 2518: -49,-31 - 2519: -48,-32 - 2520: -48,-32 - 2521: -45,-33 - 2522: -45,-33 - 2523: -45,-33 - 2524: -46,-32 - 2525: -46,-32 - 2526: -46,-32 - 2627: 28,21 - 2628: 31,18 - 2629: 31,12 - 2630: 27,12 - 3000: 44,9 - 3001: 46,8 - 3002: 44,10 - 3003: 45,12 - 3232: 45,3 - 3233: 46,3 - 3234: 43,3 - 3235: 42,3 - 3236: 44,2 - 3237: 45,1 - 3238: 46,-1 - 3239: 45,-2 - 3240: 46,1 - 3241: 47,2 - 3242: 48,1 - 3243: 51,4 - 3244: 48,3 - 3245: 46,2 - 3246: 40,2 - 3258: 49,6 - 3259: 48,7 - 3260: 53,6 - 3261: 45,5 - 3262: 41,8 - 3263: 40,9 - 3264: 39,8 - 3265: 41,13 - 3266: 41,15 - 3267: 40,16 - 3268: 56,7 - 3269: 41,1 - 3270: 41,0 - 3271: 42,2 - 3278: 40,-1 - 3289: 56,12 - 3290: 54,15 - 3291: 49,17 - 3292: 55,7 - 3293: 49,9 - 3294: 50,11 - 3295: 37,7 - 3641: 43,-19 - 3642: 43,-23 - 3643: 41,-24 - 3644: 45,-14 - 3645: 33,-23 + 1109: -10,-55 + 1110: -14,-56 + 1111: -19,-55 + 1112: -7,-54 + 1113: -2,-54 + 1114: -3,-57 + 1115: 2,-59 + 1116: -3,-64 + 1117: 0,-61 + 1118: -3,-66 + 1119: -3,-71 + 1120: -1,-73 + 1121: 2,-71 + 1122: 1,-55 + 1123: -1,-47 + 1124: 0,-45 + 1193: 20,24 + 1194: 15,25 + 1195: 16,27 + 1196: 34,23 + 1197: 38,24 + 1198: 44,26 + 1199: 45,25 + 1200: 52,25 + 1201: 53,26 + 1202: 52,21 + 1203: 44,21 + 1204: 41,20 + 1205: 52,14 + 1206: 48,18 + 1207: 49,16 + 1208: 45,7 + 1209: 20,8 + 1210: 32,7 + 1211: 34,8 + 1212: 16,8 + 1213: 5,8 + 1214: -7,9 + 1215: -8,8 + 1254: 7,-22 + 1255: 5,-23 + 1256: 4,-23 + 1257: 7,-24 + 1258: 23,-23 + 1259: 18,-28 + 1260: 21,-35 + 1261: 19,-34 + 1687: -38,9 + 1688: -39,8 + 1689: -39,7 + 1690: -35,8 + 1691: -39,-1 + 1707: -10,-16 + 1708: -10,-14 + 1709: -11,-14 + 1710: -10,-13 + 1711: -11,-13 + 1712: -8,-12 + 1713: -8,-14 + 1714: -9,-13 + 1715: -10,-13 + 1716: -11,-17 + 1717: -11,-18 + 1733: -9,-16 + 1734: -8,-16 + 1735: -8,-16 + 2059: -39,-12 + 2060: -39,-8 + 2061: -40,-7 + 2062: -39,-8 + 2064: -39,-9 + 2065: -39,-3 + 2066: -39,3 + 2298: 1,13 + 2299: 0,14 + 2300: 0,15 + 2301: 0,15 + 2302: 1,15 + 2303: 3,14 + 2304: 5,15 + 2305: 7,13 + 2306: 9,14 + 2307: 11,12 + 2308: 11,14 + 2309: 5,17 + 2310: 4,17 + 2311: 4,18 + 2312: -4,17 + 2313: -4,19 + 2314: -3,20 + 2315: -2,17 + 2352: 3,19 + 2353: 4,20 + 2355: -4,21 + 2356: -3,22 + 2357: -3,24 + 2358: -2,21 + 2359: -2,20 + 2360: -3,23 + 2361: -5,28 + 2362: -5,27 + 2363: -11,28 + 2364: -12,29 + 2365: -13,30 + 2366: -13,31 + 2367: -12,32 + 2368: -22,31 + 2369: -30,30 + 2372: 51,-38 + 2373: 51,-38 + 2382: 49,-39 + 2502: -52,-35 + 2503: -52,-35 + 2504: -52,-32 + 2505: -49,-31 + 2506: -49,-31 + 2507: -48,-32 + 2508: -48,-32 + 2509: -45,-33 + 2510: -45,-33 + 2511: -45,-33 + 2512: -46,-32 + 2513: -46,-32 + 2514: -46,-32 + 2612: 28,21 + 2613: 31,18 + 2614: 31,12 + 2615: 27,12 + 2985: 44,9 + 2986: 46,8 + 2987: 44,10 + 2988: 45,12 + 3217: 45,3 + 3218: 46,3 + 3219: 43,3 + 3220: 42,3 + 3221: 44,2 + 3222: 45,1 + 3223: 46,-1 + 3224: 45,-2 + 3225: 46,1 + 3226: 47,2 + 3227: 48,1 + 3228: 51,4 + 3229: 48,3 + 3230: 46,2 + 3231: 40,2 + 3243: 49,6 + 3244: 48,7 + 3245: 53,6 + 3246: 45,5 + 3247: 41,8 + 3248: 40,9 + 3249: 39,8 + 3250: 41,13 + 3251: 41,15 + 3252: 40,16 + 3253: 56,7 + 3254: 41,1 + 3255: 41,0 + 3256: 42,2 + 3263: 40,-1 + 3274: 56,12 + 3275: 54,15 + 3276: 49,17 + 3277: 55,7 + 3278: 49,9 + 3279: 50,11 + 3280: 37,7 + 3626: 43,-19 + 3627: 43,-23 + 3628: 41,-24 + 3629: 45,-14 + 3732: 35,-23 + 3733: 34,-25 + 3734: 33,-23 + 3735: 33,-21 + 3736: 33,-22 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -2976,11 +3001,11 @@ entities: 544: -39,10 545: -39,11 895: -31,-20 - 3181: 36,-2 - 3182: 38,-2 - 3183: 36,2 - 3184: 38,2 - 3185: 37,1 + 3166: 36,-2 + 3167: 38,-2 + 3168: 36,2 + 3169: 38,2 + 3170: 37,1 - node: cleanable: True color: '#FFFFFFFF' @@ -3012,38 +3037,38 @@ entities: 730: -14,7 873: -3,-25 874: -6,-25 - 1255: 6,-22 - 1717: -11,-16 - 2074: -40,-8 - 2306: 0,13 - 2307: -1,14 - 2308: 1,14 - 2365: -3,21 - 2385: 52,-36 - 2386: 52,-37 - 2387: 56,-37 - 2388: 55,-38 - 2389: 47,-36 - 2390: 48,-36 - 2391: 50,-39 - 2392: 50,-39 - 2495: 53,-21 - 2496: 53,-24 - 2507: -46,-32 - 2508: -46,-34 - 2509: -45,-33 - 2510: -47,-30 - 2511: -49,-31 - 2512: -51,-33 - 2513: -52,-34 - 2799: -64,-10 - 2800: -62,-9 - 2801: -60,-12 - 3229: 49,4 - 3230: 44,3 - 3231: 40,3 - 3276: 41,-2 - 3277: 42,-2 + 1253: 6,-22 + 1706: -11,-16 + 2063: -40,-8 + 2295: 0,13 + 2296: -1,14 + 2297: 1,14 + 2354: -3,21 + 2374: 52,-36 + 2375: 52,-37 + 2376: 56,-37 + 2377: 55,-38 + 2378: 47,-36 + 2379: 48,-36 + 2380: 50,-39 + 2381: 50,-39 + 2483: 53,-21 + 2484: 53,-24 + 2495: -46,-32 + 2496: -46,-34 + 2497: -45,-33 + 2498: -47,-30 + 2499: -49,-31 + 2500: -51,-33 + 2501: -52,-34 + 2784: -64,-10 + 2785: -62,-9 + 2786: -60,-12 + 3214: 49,4 + 3215: 44,3 + 3216: 40,3 + 3261: 41,-2 + 3262: 42,-2 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -3056,38 +3081,37 @@ entities: color: '#FED83DFF' id: Donk decals: - 2490: -62.43933,-13.441491 + 2479: -62.43933,-13.441491 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: 235: 34.965233,-25.985117 - 1399: 11.007317,-66.54063 + 1393: 11.007317,-66.54063 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: - 1014: -0.48526984,-68.87088 - 1015: 0.23348016,-66.02713 + 1013: -0.48526984,-68.87088 + 1014: 0.23348016,-66.02713 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: - 1013: 0.7647302,-68.49588 - 1401: 11.007317,-69.05625 + 1012: 0.7647302,-68.49588 + 1395: 11.007317,-69.05625 - node: color: '#FFFFFFFF' id: Flowerspv3 decals: - 462: -8.949466,34.143715 - 959: 48.118763,22.943716 + 958: 48.118763,22.943716 - node: color: '#FFFFFFFF' id: Flowersy1 decals: 233: 33.152733,-25.953867 - 1011: 0.6866052,-66.792755 - 3420: 29.018572,-35.56262 + 1010: 0.6866052,-66.792755 + 3405: 29.018572,-35.56262 - node: color: '#FFFFFFFF' id: Flowersy2 @@ -3095,14 +3119,14 @@ entities: 234: 33.933983,-26.047617 408: 12.076155,3.7926216 464: -9.011966,36.081215 - 1012: -0.76651984,-68.074005 - 1400: 11.038567,-68.22813 + 1011: -0.76651984,-68.074005 + 1394: 11.038567,-68.22813 - node: color: '#FFFFFFFF' id: Flowersy3 decals: - 960: 49.540638,22.974966 - 1010: -0.48526984,-65.65213 + 959: 49.540638,22.974966 + 1009: -0.48526984,-65.65213 - node: color: '#FFFFFFFF' id: Flowersy4 @@ -3111,8 +3135,8 @@ entities: 515: -5.970551,-6.928444 516: -5.986176,-6.053444 751: 9.393604,3.3875775 - 1009: -0.26651984,-69.93338 - 3419: 29.924822,-37.81262 + 1008: -0.26651984,-69.93338 + 3404: 29.924822,-37.81262 - node: color: '#334E6DC8' id: FullTileOverlayGreyscale @@ -3124,12 +3148,12 @@ entities: 524: -1,3 525: -2,3 526: -3,3 - 2842: 5,-36 - 2843: 3,-36 - 2844: 5,-37 - 2845: 3,-37 - 3345: 7,-37 - 3346: 7,-36 + 2827: 5,-36 + 2828: 3,-36 + 2829: 5,-37 + 2830: 3,-37 + 3330: 7,-37 + 3331: 7,-36 - node: color: '#52B4E996' id: FullTileOverlayGreyscale @@ -3138,10 +3162,10 @@ entities: 255: 33,-16 265: 46,-10 266: 42,-24 - 2922: 33,-22 - 2934: 46,-17 - 2935: 46,-19 - 2944: 46,-18 + 2907: 33,-22 + 2919: 46,-17 + 2920: 46,-19 + 2929: 46,-18 - node: color: '#A4610696' id: FullTileOverlayGreyscale @@ -3152,20 +3176,20 @@ entities: 585: 44,4 586: 47,8 587: 47,7 - 3166: 37,3 - 3167: 39,-1 - 3168: 39,0 - 3169: 36,-2 - 3170: 37,-2 - 3171: 38,-2 - 3172: 38,2 - 3173: 37,2 - 3174: 36,2 - 3247: 49,5 - 3248: 48,5 - 3272: 40,-2 - 3273: 41,-2 - 3274: 42,-2 + 3151: 37,3 + 3152: 39,-1 + 3153: 39,0 + 3154: 36,-2 + 3155: 37,-2 + 3156: 38,-2 + 3157: 38,2 + 3158: 37,2 + 3159: 36,2 + 3232: 49,5 + 3233: 48,5 + 3257: 40,-2 + 3258: 41,-2 + 3259: 42,-2 - node: color: '#D0BF4AA7' id: FullTileOverlayGreyscale @@ -3186,24 +3210,24 @@ entities: color: '#D4D4D406' id: FullTileOverlayGreyscale decals: - 2458: 41,-10 - 2459: 40,-10 - 2460: 39,-10 - 2461: 38,-10 - 2462: 37,-10 - 2463: 36,-10 - 2464: 36,-9 - 2465: 36,-8 - 2466: 36,-7 - 2467: 36,-6 - 2468: 38,-9 - 2469: 38,-8 - 2470: 38,-7 - 2471: 38,-6 - 2472: 40,-9 - 2473: 40,-8 - 2474: 40,-7 - 2475: 40,-6 + 2447: 41,-10 + 2448: 40,-10 + 2449: 39,-10 + 2450: 38,-10 + 2451: 37,-10 + 2452: 36,-10 + 2453: 36,-9 + 2454: 36,-8 + 2455: 36,-7 + 2456: 36,-6 + 2457: 38,-9 + 2458: 38,-8 + 2459: 38,-7 + 2460: 38,-6 + 2461: 40,-9 + 2462: 40,-8 + 2463: 40,-7 + 2464: 40,-6 - node: color: '#DE3A3A96' id: FullTileOverlayGreyscale @@ -3222,38 +3246,38 @@ entities: color: '#EFCC4196' id: FullTileOverlayGreyscale decals: - 2283: -2,14 - 2284: 2,14 - 2285: 1,13 - 2286: 0,13 - 2287: -1,13 - 2288: -1,14 - 2289: 0,14 - 2290: 1,14 - 2291: 1,15 - 2292: 0,15 - 2293: -1,15 - 2294: 0,12 + 2272: -2,14 + 2273: 2,14 + 2274: 1,13 + 2275: 0,13 + 2276: -1,13 + 2277: -1,14 + 2278: 0,14 + 2279: 1,14 + 2280: 1,15 + 2281: 0,15 + 2282: -1,15 + 2283: 0,12 - node: color: '#EFD54193' id: FullTileOverlayGreyscale decals: - 3381: 8,14 - 3382: 5,16 - 3402: -14,28 + 3366: 8,14 + 3367: 5,16 + 3387: -14,28 - node: color: '#EFD84196' id: FullTileOverlayGreyscale decals: - 1924: -19,30 - 1925: -18,30 - 1926: -15,30 + 1913: -19,30 + 1914: -18,30 + 1915: -15,30 - node: cleanable: True color: '#169C9CFF' id: Gene decals: - 2492: 53.01786,-22.012398 + 2480: 53.01786,-22.012398 - node: color: '#FFFFFFFF' id: Grassb1 @@ -3264,52 +3288,51 @@ entities: id: Grassb2 decals: 232: 33.699608,-25.985117 - 467: -8.918216,34.34684 - 992: -5.121248,-69.02713 + 991: -5.121248,-69.02713 - node: color: '#FFFFFFFF' id: Grassb3 decals: - 991: 5.175627,-68.99588 + 990: 5.175627,-68.99588 - node: color: '#FFFFFFFF' id: Grassb4 decals: 517: -5.939301,-7.022194 - 994: 5.144377,-65.90213 + 993: 5.144377,-65.90213 - node: color: '#FFFFFFFF' id: Grassb5 decals: 231: 32.824608,-26.016367 - 993: -5.105623,-65.949005 + 992: -5.105623,-65.949005 - node: color: '#FFFFFFFF' id: Grassd1 decals: 407: 11.06053,2.6519966 - 1007: -0.84464484,-69.58963 - 3413: 29.893572,-37.234493 - 3416: 29.924822,-35.203243 + 1006: -0.84464484,-69.58963 + 3398: 29.893572,-37.234493 + 3401: 29.924822,-35.203243 - node: color: '#FFFFFFFF' id: Grassd2 decals: 229: 35.121483,-26.016367 406: 10.02928,3.2613716 - 957: 50,29 - 958: 48,23 - 1003: 0.9053552,-65.02713 - 1008: 0.8272302,-69.83963 - 1395: 10.976067,-66.05625 - 3414: 29.002947,-37.109493 + 956: 50,29 + 957: 48,23 + 1002: 0.9053552,-65.02713 + 1007: 0.8272302,-69.83963 + 1389: 10.976067,-66.05625 + 3399: 29.002947,-37.109493 - node: color: '#FFFFFFFF' id: Grassd3 decals: 405: 11.107405,3.8082466 - 1004: -0.92276984,-64.99588 - 3415: 29.018572,-35.15637 + 1003: -0.92276984,-64.99588 + 3400: 29.018572,-35.15637 - node: color: '#FFFFFFFF' id: Grasse1 @@ -3317,10 +3340,10 @@ entities: 228: 34.449608,-26.000742 403: 10.37303,4.2613716 404: 11.919905,3.4176216 - 1005: 0.48348016,-65.511505 - 1006: -0.71964484,-67.042755 - 1394: 11.054192,-66.97813 - 1609: -46.974236,5.0132127 + 1004: 0.48348016,-65.511505 + 1005: -0.71964484,-67.042755 + 1388: 11.054192,-66.97813 + 1598: -46.974236,5.0132127 - node: color: '#FFFFFFFF' id: Grasse2 @@ -3329,25 +3352,24 @@ entities: 401: 9.31053,4.0426216 402: 11.357405,4.8394966 463: -8.980716,36.081215 - 953: 49,23 - 954: 49,29 - 1393: 11.007317,-67.97813 - 1608: -47.98986,4.9819627 - 3412: 29.065447,-38.00012 - 3417: 29.049822,-36.15637 + 952: 49,23 + 953: 49,29 + 1387: 11.007317,-67.97813 + 1597: -47.98986,4.9819627 + 3397: 29.065447,-38.00012 + 3402: 29.049822,-36.15637 - node: color: '#FFFFFFFF' id: Grasse3 decals: 226: 32.949608,-25.985117 - 460: -9.011966,34.12809 513: -6.001801,-6.928444 514: -6.017426,-6.131569 - 955: 50,23 - 956: 48,29 - 1392: 10.976067,-68.97813 - 3411: 29.846697,-37.93762 - 3418: 29.909197,-36.18762 + 954: 50,23 + 955: 48,29 + 1386: 10.976067,-68.97813 + 3396: 29.846697,-37.93762 + 3403: 29.909197,-36.18762 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale @@ -3357,8 +3379,8 @@ entities: 17: 50,-21 263: 33,-17 264: 34,-17 - 2945: 47,-17 - 2946: 48,-17 + 2930: 47,-17 + 2931: 48,-17 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale @@ -3375,12 +3397,12 @@ entities: 612: 47,14 613: 48,14 614: 49,14 - 2996: 45,9 - 2997: 44,9 - 3280: 56,15 - 3281: 55,15 - 3282: 54,15 - 3283: 53,15 + 2981: 45,9 + 2982: 44,9 + 3265: 56,15 + 3266: 55,15 + 3267: 54,15 + 3268: 53,15 - node: color: '#D0BF4AA7' id: HalfTileOverlayGreyscale @@ -3400,8 +3422,8 @@ entities: 539: -34,9 540: -33,9 541: -32,9 - 1703: -43,0 - 1704: -42,0 + 1692: -43,0 + 1693: -42,0 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale @@ -3412,21 +3434,21 @@ entities: color: '#EFCC4196' id: HalfTileOverlayGreyscale decals: - 2189: 8,32 - 2190: 7,32 - 2191: 6,32 - 2192: 5,32 - 2193: 4,32 - 2254: 5,21 - 2255: 4,21 - 2256: 3,21 - 2257: 2,21 - 2258: 1,21 - 2259: 0,21 - 2260: -1,21 - 2261: -2,21 - 2281: 6,15 - 2282: 4,15 + 2178: 8,32 + 2179: 7,32 + 2180: 6,32 + 2181: 5,32 + 2182: 4,32 + 2243: 5,21 + 2244: 4,21 + 2245: 3,21 + 2246: 2,21 + 2247: 1,21 + 2248: 0,21 + 2249: -1,21 + 2250: -2,21 + 2270: 6,15 + 2271: 4,15 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 @@ -3434,9 +3456,9 @@ entities: 5: 49,-24 6: 48,-24 7: 47,-24 - 2920: 34,-21 - 2921: 33,-21 - 3355: 50,-24 + 2905: 34,-21 + 2906: 33,-21 + 3340: 50,-24 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale180 @@ -3471,7 +3493,7 @@ entities: 321: -42,13 322: -41,13 323: -40,13 - 2064: -42,-11 + 2053: -42,-11 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale180 @@ -3482,21 +3504,21 @@ entities: color: '#EFCC4196' id: HalfTileOverlayGreyscale180 decals: - 2194: 8,23 - 2195: 7,23 - 2196: 6,23 - 2197: 5,23 - 2198: 4,23 - 2246: 4,17 - 2247: 3,17 - 2248: 1,17 - 2249: 2,17 - 2250: 0,17 - 2251: -1,17 - 2252: -2,17 - 2253: -3,17 - 2278: 5,13 - 2279: 4,13 + 2183: 8,23 + 2184: 7,23 + 2185: 6,23 + 2186: 5,23 + 2187: 4,23 + 2235: 4,17 + 2236: 3,17 + 2237: 1,17 + 2238: 2,17 + 2239: 0,17 + 2240: -1,17 + 2241: -2,17 + 2242: -3,17 + 2267: 5,13 + 2268: 4,13 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 @@ -3523,12 +3545,12 @@ entities: 27: 50,-28 28: 47,-27 29: 47,-26 - 2886: 43,-27 - 2887: 43,-29 - 2888: 43,-30 - 2889: 43,-31 - 2890: 43,-33 - 2891: 43,-34 + 2871: 43,-27 + 2872: 43,-29 + 2873: 43,-30 + 2874: 43,-31 + 2875: 43,-33 + 2876: 43,-34 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 @@ -3540,7 +3562,7 @@ entities: 589: 48,8 590: 48,9 591: 48,10 - 3249: 48,6 + 3234: 48,6 - node: color: '#D0BF4AA7' id: HalfTileOverlayGreyscale270 @@ -3580,17 +3602,17 @@ entities: 288: -32,-10 289: -32,-9 290: -32,-8 - 1756: -32,-14 - 1757: -32,-7 + 1745: -32,-14 + 1746: -32,-7 - node: color: '#EFCC4196' id: HalfTileOverlayGreyscale270 decals: - 2243: -5,18 - 2244: -5,19 - 2245: -5,20 - 2268: 9,14 - 2280: 3,14 + 2232: -5,18 + 2233: -5,19 + 2234: -5,20 + 2257: 9,14 + 2269: 3,14 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 @@ -3606,9 +3628,9 @@ entities: 3: 51,-22 4: 51,-21 262: 35,-20 - 2947: 49,-18 - 2948: 49,-19 - 3603: 35,-18 + 2932: 49,-18 + 2933: 49,-19 + 3588: 35,-18 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale90 @@ -3620,13 +3642,13 @@ entities: 45: 52,-31 46: 52,-32 47: 52,-33 - 2879: 45,-34 - 2880: 45,-32 - 2881: 45,-31 - 2882: 45,-30 - 2883: 45,-29 - 2884: 45,-28 - 2885: 45,-27 + 2864: 45,-34 + 2865: 45,-32 + 2866: 45,-31 + 2867: 45,-30 + 2868: 45,-29 + 2869: 45,-28 + 2870: 45,-27 - node: color: '#A4610696' id: HalfTileOverlayGreyscale90 @@ -3672,15 +3694,15 @@ entities: 282: -22,-9 283: -22,-8 284: -22,-7 - 1755: -22,-14 + 1744: -22,-14 - node: color: '#EFCC4196' id: HalfTileOverlayGreyscale90 decals: - 2266: 6,18 - 2267: 6,20 - 2276: 7,13 - 2277: 7,14 + 2255: 6,18 + 2256: 6,20 + 2265: 7,13 + 2266: 7,14 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -3700,180 +3722,180 @@ entities: decals: 161: 3,-26 542: -33,9 - 2952: -18,27 + 2937: -18,27 - node: angle: 1.5707963267948966 rad color: '#D381C996' id: LoadingAreaGreyscale decals: - 2039: -42,-5 + 2028: -42,-5 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerNe decals: - 3094: -116,21 - 3095: -116,25 + 3079: -116,21 + 3080: -116,25 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerNw decals: - 3092: -108,21 - 3096: -108,25 + 3077: -108,21 + 3081: -108,25 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerSe decals: - 3091: -116,30 - 3097: -116,27 + 3076: -116,30 + 3082: -116,27 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerSw decals: - 3093: -108,30 - 3098: -108,27 + 3078: -108,30 + 3083: -108,27 - node: color: '#FFFFFFFF' id: MiniTileDarkLineE decals: - 3065: -116,22 - 3066: -116,23 - 3067: -116,24 - 3068: -116,26 - 3069: -116,28 - 3070: -116,29 + 3050: -116,22 + 3051: -116,23 + 3052: -116,24 + 3053: -116,26 + 3054: -116,28 + 3055: -116,29 - node: color: '#FFFFFFFF' id: MiniTileDarkLineN decals: - 3084: -109,21 - 3085: -110,21 - 3086: -111,21 - 3087: -112,21 - 3088: -113,21 - 3089: -114,21 - 3090: -115,21 + 3069: -109,21 + 3070: -110,21 + 3071: -111,21 + 3072: -112,21 + 3073: -113,21 + 3074: -114,21 + 3075: -115,21 - node: color: '#FFFFFFFF' id: MiniTileDarkLineS decals: - 3077: -109,30 - 3078: -110,30 - 3079: -111,30 - 3080: -112,30 - 3081: -113,30 - 3082: -114,30 - 3083: -115,30 + 3062: -109,30 + 3063: -110,30 + 3064: -111,30 + 3065: -112,30 + 3066: -113,30 + 3067: -114,30 + 3068: -115,30 - node: color: '#FFFFFFFF' id: MiniTileDarkLineW decals: - 1581: -41,2 - 1582: -41,3 - 1583: -41,4 - 1584: -41,5 - 3071: -108,22 - 3072: -108,23 - 3073: -108,24 - 3074: -108,26 - 3075: -108,28 - 3076: -108,29 - 3426: 35,18 + 1570: -41,2 + 1571: -41,3 + 1572: -41,4 + 1573: -41,5 + 3056: -108,22 + 3057: -108,23 + 3058: -108,24 + 3059: -108,26 + 3060: -108,28 + 3061: -108,29 + 3411: 35,18 - node: color: '#52B4E996' id: MiniTileOverlay decals: - 3646: 40,-21 - 3647: 40,-20 - 3648: 41,-20 - 3649: 41,-21 - 3650: 40,-18 - 3651: 40,-17 - 3652: 41,-17 - 3653: 41,-18 - 3654: 38,-18 - 3655: 37,-18 - 3656: 37,-17 - 3657: 38,-17 - 3658: 38,-20 - 3659: 37,-20 - 3660: 37,-21 - 3661: 38,-21 + 3630: 40,-21 + 3631: 40,-20 + 3632: 41,-20 + 3633: 41,-21 + 3634: 40,-18 + 3635: 40,-17 + 3636: 41,-17 + 3637: 41,-18 + 3638: 38,-18 + 3639: 37,-18 + 3640: 37,-17 + 3641: 38,-17 + 3642: 38,-20 + 3643: 37,-20 + 3644: 37,-21 + 3645: 38,-21 - node: color: '#52B4E996' id: MonoOverlay decals: - 2914: 34,-20 - 2915: 33,-19 - 2916: 34,-18 + 2899: 34,-20 + 2900: 33,-19 + 2901: 34,-18 - node: color: '#80C71F95' id: MonoOverlay decals: - 1588: 47,-30 - 1589: 48,-29 - 1590: 49,-28 - 1591: 49,-30 - 1592: 47,-28 + 1577: 47,-30 + 1578: 48,-29 + 1579: 49,-28 + 1580: 49,-30 + 1581: 47,-28 - node: color: '#D4D4D40C' id: PavementCheckerAOverlay decals: - 2973: 35,-34 - 2974: 32,-33 - 2975: 31,-29 + 2958: 35,-34 + 2959: 32,-33 + 2960: 31,-29 - node: color: '#D4D4D428' id: PavementCheckerAOverlay decals: - 2962: 29,-34 - 2963: 30,-32 - 2964: 28,-34 - 2965: 28,-27 - 2966: 30,-29 - 2967: 32,-27 - 2968: 33,-28 - 2969: 33,-31 - 2970: 33,-30 - 2971: 34,-34 - 2972: 33,-33 + 2947: 29,-34 + 2948: 30,-32 + 2949: 28,-34 + 2950: 28,-27 + 2951: 30,-29 + 2952: 32,-27 + 2953: 33,-28 + 2954: 33,-31 + 2955: 33,-30 + 2956: 34,-34 + 2957: 33,-33 - node: color: '#D4D4D40C' id: PavementCheckerBOverlay decals: - 2986: 33,-34 - 2987: 28,-32 - 2988: 31,-27 - 2989: 32,-28 + 2971: 33,-34 + 2972: 28,-32 + 2973: 31,-27 + 2974: 32,-28 - node: color: '#D4D4D412' id: PavementCheckerBOverlay decals: - 2977: 30,-33 - 2978: 30,-34 - 2979: 29,-32 - 2980: 28,-33 - 2981: 30,-31 - 2982: 28,-28 - 2983: 30,-27 - 2984: 30,-28 - 2985: 31,-29 + 2962: 30,-33 + 2963: 30,-34 + 2964: 29,-32 + 2965: 28,-33 + 2966: 30,-31 + 2967: 28,-28 + 2968: 30,-27 + 2969: 30,-28 + 2970: 31,-29 - node: color: '#D4D4D428' id: PavementCheckerBOverlay decals: - 2956: 35,-30 - 2957: 32,-29 - 2958: 31,-28 - 2959: 29,-28 - 2960: 30,-30 - 2961: 29,-33 - 2976: 31,-33 + 2941: 35,-30 + 2942: 32,-29 + 2943: 31,-28 + 2944: 29,-28 + 2945: 30,-30 + 2946: 29,-33 + 2961: 31,-33 - node: cleanable: True color: '#169C9CFF' id: Prima decals: - 2796: 4.4262443,-52.031498 + 2781: 4.4262443,-52.031498 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale @@ -3904,48 +3926,48 @@ entities: color: '#52B4E92E' id: QuarterTileOverlayGreyscale decals: - 1050: 4,-66 + 1049: 4,-66 - node: color: '#52B4E944' id: QuarterTileOverlayGreyscale decals: - 1105: -3,-59 - 1106: -3,-58 - 1107: -3,-57 + 1103: -3,-59 + 1104: -3,-58 + 1105: -3,-57 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale decals: 9: 51,-21 14: 47,-24 - 2913: 44,-15 - 2942: 48,-19 - 3639: 44,-25 + 2898: 44,-15 + 2927: 48,-19 + 3624: 44,-25 - node: color: '#79150096' id: QuarterTileOverlayGreyscale decals: - 976: 45,26 - 977: 48,27 - 2753: 37,26 - 2754: 36,26 - 2755: 35,26 - 2756: 34,26 - 2757: 33,26 - 2758: 32,26 - 2759: 20,26 - 2760: 21,26 - 2761: 22,26 - 2762: 23,26 - 2763: 24,26 - 2764: 25,26 - 2765: 26,26 - 2766: 27,26 - 2767: 28,26 - 2768: 29,26 - 2769: 30,26 - 2770: 31,26 - 2953: 19,26 + 975: 45,26 + 976: 48,27 + 2738: 37,26 + 2739: 36,26 + 2740: 35,26 + 2741: 34,26 + 2742: 33,26 + 2743: 32,26 + 2744: 20,26 + 2745: 21,26 + 2746: 22,26 + 2747: 23,26 + 2748: 24,26 + 2749: 25,26 + 2750: 26,26 + 2751: 27,26 + 2752: 28,26 + 2753: 29,26 + 2754: 30,26 + 2755: 31,26 + 2938: 19,26 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale @@ -3957,22 +3979,22 @@ entities: 673: 21,9 674: 20,9 675: 19,9 - 3175: 37,1 - 3176: 37,0 - 3177: 37,-1 - 3192: 51,4 - 3193: 50,4 - 3194: 49,4 - 3195: 48,4 - 3196: 48,3 - 3197: 47,3 - 3198: 46,3 - 3199: 45,3 - 3200: 44,3 - 3201: 43,3 - 3202: 42,3 - 3203: 41,3 - 3204: 40,3 + 3160: 37,1 + 3161: 37,0 + 3162: 37,-1 + 3177: 51,4 + 3178: 50,4 + 3179: 49,4 + 3180: 48,4 + 3181: 48,3 + 3182: 47,3 + 3183: 46,3 + 3184: 45,3 + 3185: 44,3 + 3186: 43,3 + 3187: 42,3 + 3188: 41,3 + 3189: 40,3 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale @@ -3982,17 +4004,17 @@ entities: 333: -35,13 334: -35,14 335: -35,15 - 1664: -31,9 - 1666: -37,9 - 1667: -38,9 - 1668: -39,9 - 1669: -39,8 - 1670: -39,7 - 1671: -39,6 - 2046: -40,-4 - 2047: -39,-4 - 2048: -39,-3 - 2478: 48,-22 + 1653: -31,9 + 1655: -37,9 + 1656: -38,9 + 1657: -39,9 + 1658: -39,8 + 1659: -39,7 + 1660: -39,6 + 2035: -40,-4 + 2036: -39,-4 + 2037: -39,-3 + 2467: 48,-22 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale @@ -4005,148 +4027,157 @@ entities: 387: 15,-12 388: 15,-11 389: 15,-15 - 1159: -3,-54 - 1166: -2,-52 - 1167: -2,-51 - 1168: -2,-50 - 1169: -2,-49 - 1170: -2,-48 - 1171: -2,-47 - 1172: -2,-46 - 1218: -17,11 - 1219: -17,12 - 1220: -17,13 - 1221: -17,14 - 1222: -17,15 - 1223: -17,17 - 1224: -17,16 - 1225: -17,18 - 1226: -17,19 - 1227: -17,20 - 1228: -17,21 - 1427: 6,-22 - 1428: 6,-21 - 1429: 6,-20 - 1430: 7,-20 - 1431: 8,-20 - 1432: 9,-20 - 1433: 6,-23 - 1434: 5,-23 - 1435: 4,-23 - 1436: 3,-23 - 1457: -4,10 - 1458: -5,10 - 1459: -6,10 - 1460: -7,10 - 1461: -7,9 - 1462: -8,9 - 1463: -9,9 - 1464: -10,9 - 1465: -11,9 - 1466: -12,9 - 1492: -31,25 - 1493: -29,25 - 1494: -30,25 - 1495: -28,25 - 1496: -27,25 - 1497: -26,25 - 1498: -25,25 - 1499: -24,25 - 1524: -22,-23 - 1525: -23,-23 - 1526: -24,-23 - 1527: -25,-23 - 1528: -26,-23 - 1532: 10,-23 - 1533: 11,-23 - 1534: 12,-23 - 1535: 13,-23 - 1536: 14,-23 - 1556: 36,10 - 1557: 36,11 - 1558: 37,11 - 1559: 38,11 - 1696: 8,7 - 2147: -39,-19 - 2148: -39,-20 - 2149: -39,-21 - 2150: -39,-22 - 2151: -39,-23 - 2186: -10,-23 - 2187: -11,-23 - 2188: -12,-23 - 2399: -28,9 - 2400: -29,9 - 2401: -30,9 - 2402: -17,5 - 2403: -17,4 - 2404: -17,3 - 2405: -18,9 - 2408: -17,9 - 2666: 15,12 - 2667: 15,11 - 2668: 15,9 - 2670: 15,-22 - 2671: 15,-23 - 2674: -17,-23 - 2699: 15,23 - 2700: 15,24 - 2701: 15,25 - 2702: 15,27 - 2703: 15,28 - 2717: -1,-41 - 2718: -1,-40 - 2719: -1,-39 - 2720: -1,-38 - 2721: -1,-37 - 2722: -1,-36 - 2723: -1,-35 - 2724: -1,-34 - 2725: -1,-33 - 2726: -1,-32 - 2727: -1,-31 - 2728: -1,-30 - 2729: -1,-29 - 2730: -1,-28 + 1157: -3,-54 + 1164: -2,-52 + 1165: -2,-51 + 1166: -2,-50 + 1167: -2,-49 + 1168: -2,-48 + 1169: -2,-47 + 1170: -2,-46 + 1216: -17,11 + 1217: -17,12 + 1218: -17,13 + 1219: -17,14 + 1220: -17,15 + 1221: -17,17 + 1222: -17,16 + 1223: -17,18 + 1224: -17,19 + 1225: -17,20 + 1226: -17,21 + 1421: 6,-22 + 1422: 6,-21 + 1423: 6,-20 + 1424: 7,-20 + 1425: 8,-20 + 1426: 9,-20 + 1427: 6,-23 + 1428: 5,-23 + 1429: 4,-23 + 1430: 3,-23 + 1451: -4,10 + 1452: -5,10 + 1453: -6,10 + 1454: -7,10 + 1455: -7,9 + 1456: -8,9 + 1457: -9,9 + 1458: -10,9 + 1459: -11,9 + 1460: -12,9 + 1486: -31,25 + 1487: -29,25 + 1488: -30,25 + 1489: -28,25 + 1490: -27,25 + 1491: -26,25 + 1492: -25,25 + 1493: -24,25 + 1518: -22,-23 + 1519: -23,-23 + 1520: -24,-23 + 1521: -25,-23 + 1522: -26,-23 + 1526: 10,-23 + 1527: 11,-23 + 1528: 12,-23 + 1529: 13,-23 + 1530: 14,-23 + 1545: 36,10 + 1546: 36,11 + 1547: 37,11 + 1548: 38,11 + 1685: 8,7 + 2136: -39,-19 + 2137: -39,-20 + 2138: -39,-21 + 2139: -39,-22 + 2140: -39,-23 + 2175: -10,-23 + 2176: -11,-23 + 2177: -12,-23 + 2388: -28,9 + 2389: -29,9 + 2390: -30,9 + 2391: -17,5 + 2392: -17,4 + 2393: -17,3 + 2394: -18,9 + 2397: -17,9 + 2651: 15,12 + 2652: 15,11 + 2653: 15,9 + 2655: 15,-22 + 2656: 15,-23 + 2659: -17,-23 + 2684: 15,23 + 2685: 15,24 + 2686: 15,25 + 2687: 15,27 + 2688: 15,28 + 2702: -1,-41 + 2703: -1,-40 + 2704: -1,-39 + 2705: -1,-38 + 2706: -1,-37 + 2707: -1,-36 + 2708: -1,-35 + 2709: -1,-34 + 2710: -1,-33 + 2711: -1,-32 + 2712: -1,-31 + 2713: -1,-30 + 2714: -1,-29 + 2715: -1,-28 + 3751: -10,-54 + 3752: -9,-54 + 3753: -8,-54 + 3754: -7,-54 + 3755: -6,-54 + 3756: -5,-54 + 3757: -17,-54 + 3758: -18,-54 + 3759: -19,-54 - node: color: '#D4D4D437' id: QuarterTileOverlayGreyscale decals: - 1051: -3,-61 - 1052: -3,-62 - 1053: -3,-63 - 1054: -3,-64 - 1055: -3,-65 - 1056: -3,-66 - 1057: -4,-66 - 1058: -4,-67 - 1059: -4,-68 - 1060: -4,-69 - 1061: -3,-70 - 1062: -3,-71 - 1063: -3,-72 - 1064: -3,-73 - 1065: -3,-74 + 1050: -3,-61 + 1051: -3,-62 + 1052: -3,-63 + 1053: -3,-64 + 1054: -3,-65 + 1055: -3,-66 + 1056: -4,-66 + 1057: -4,-67 + 1058: -4,-68 + 1059: -4,-69 + 1060: -3,-70 + 1061: -3,-71 + 1062: -3,-72 + 1063: -3,-73 + 1064: -3,-74 - node: color: '#D4D4D441' id: QuarterTileOverlayGreyscale decals: - 986: 43,26 - 987: 47,26 + 985: 43,26 + 986: 47,26 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale decals: - 1617: 51,22 - 1618: 50,22 - 1619: 49,22 - 1620: 48,22 - 1621: 47,22 - 1629: 52,23 - 1630: 52,22 - 1648: 41,18 - 1649: 40,18 - 1650: 39,18 + 1606: 51,22 + 1607: 50,22 + 1608: 49,22 + 1609: 48,22 + 1610: 47,22 + 1618: 52,23 + 1619: 52,22 + 1637: 41,18 + 1638: 40,18 + 1639: 39,18 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale @@ -4165,26 +4196,36 @@ entities: 700: -17,-6 736: -18,1 737: -18,2 - 1705: -11,-16 - 1706: -11,-15 - 1707: -11,-14 - 1708: -11,-13 - 1709: -11,-12 - 1715: -10,-12 + 1694: -11,-16 + 1695: -11,-15 + 1696: -11,-14 + 1697: -11,-13 + 1698: -11,-12 + 1704: -10,-12 - node: color: '#EFCC4196' id: QuarterTileOverlayGreyscale decals: - 2274: 9,13 - 2295: -1,11 - 2296: -2,11 - 2297: -3,11 - 2298: -4,11 + 2263: 9,13 + 2284: -1,11 + 2285: -2,11 + 2286: -3,11 + 2287: -4,11 + - node: + color: '#FF994193' + id: QuarterTileOverlayGreyscale + decals: + 3745: -13,-54 + 3746: -12,-54 + 3747: -14,-54 + 3748: -15,-54 + 3749: -16,-54 + 3750: -11,-54 - node: color: '#FFEF9292' id: QuarterTileOverlayGreyscale decals: - 2900: 44,-35 + 2885: 44,-35 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 @@ -4194,21 +4235,21 @@ entities: color: '#52B4E92E' id: QuarterTileOverlayGreyscale180 decals: - 1035: 3,-61 - 1036: 3,-62 - 1037: 3,-63 - 1038: 3,-64 - 1039: 3,-65 - 1040: 4,-66 - 1041: 4,-67 - 1042: 4,-68 - 1043: 4,-69 - 1044: 3,-70 - 1045: 3,-71 - 1046: 3,-72 - 1047: 3,-73 - 1048: 3,-74 - 1049: 3,-69 + 1034: 3,-61 + 1035: 3,-62 + 1036: 3,-63 + 1037: 3,-64 + 1038: 3,-65 + 1039: 4,-66 + 1040: 4,-67 + 1041: 4,-68 + 1042: 4,-69 + 1043: 3,-70 + 1044: 3,-71 + 1045: 3,-72 + 1046: 3,-73 + 1047: 3,-74 + 1048: 3,-69 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 @@ -4218,17 +4259,17 @@ entities: 269: 39,-25 270: 38,-25 271: 37,-25 - 2912: 44,-9 - 2943: 47,-18 - 3631: 44,-17 + 2897: 44,-9 + 2928: 47,-18 + 3616: 44,-17 - node: color: '#79150096' id: QuarterTileOverlayGreyscale180 decals: - 969: 56,20 - 970: 54,20 - 971: 52,20 - 974: 56,22 + 968: 56,20 + 969: 54,20 + 970: 52,20 + 973: 56,22 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale180 @@ -4236,6 +4277,9 @@ entities: 30: 47,-27 40: 52,-26 48: 50,-33 + 3715: 35,-25 + 3716: 34,-25 + 3717: 33,-25 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale180 @@ -4257,112 +4301,126 @@ entities: color: '#D381C996' id: QuarterTileOverlayGreyscale180 decals: - 2479: 50,-23 + 2468: 50,-23 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale180 decals: - 1507: -28,7 - 1508: -29,7 - 1509: -30,7 - 1510: -31,7 - 1511: -32,7 - 1512: -33,7 - 1513: -34,7 - 1514: -35,7 - 1529: 9,-20 - 1530: 9,-21 - 1531: 9,-22 - 1563: -14,-2 - 1564: -15,-2 - 1565: -15,-3 - 1566: -15,-4 - 1567: -15,-5 - 1568: -15,-6 - 1569: -15,-7 - 1570: -15,-8 - 1571: -15,-9 - 1572: -15,5 - 1573: -15,6 - 1574: -15,7 - 1575: -14,7 - 1576: 10,7 - 1577: 9,7 - 1578: 8,7 - 1672: -12,7 - 1673: -11,7 - 1674: -10,7 - 1675: -9,7 - 1676: -8,7 - 1677: -8,8 - 1678: -7,8 - 1679: -6,8 - 1680: -5,8 - 1681: -5,9 - 1682: -4,9 - 1683: -3,9 - 1684: -2,9 - 1685: -1,9 - 2171: -28,-25 - 2172: -29,-25 - 2695: -28,23 - 2696: -29,23 - 2697: -30,23 - 2698: -31,23 - 2746: 1,-43 - 2747: 2,-78 - 2748: 2,-77 - 2749: 2,-76 + 1501: -28,7 + 1502: -29,7 + 1503: -30,7 + 1504: -31,7 + 1505: -32,7 + 1506: -33,7 + 1507: -34,7 + 1508: -35,7 + 1523: 9,-20 + 1524: 9,-21 + 1525: 9,-22 + 1552: -14,-2 + 1553: -15,-2 + 1554: -15,-3 + 1555: -15,-4 + 1556: -15,-5 + 1557: -15,-6 + 1558: -15,-7 + 1559: -15,-8 + 1560: -15,-9 + 1561: -15,5 + 1562: -15,6 + 1563: -15,7 + 1564: -14,7 + 1565: 10,7 + 1566: 9,7 + 1567: 8,7 + 1661: -12,7 + 1662: -11,7 + 1663: -10,7 + 1664: -9,7 + 1665: -8,7 + 1666: -8,8 + 1667: -7,8 + 1668: -6,8 + 1669: -5,8 + 1670: -5,9 + 1671: -4,9 + 1672: -3,9 + 1673: -2,9 + 1674: -1,9 + 2160: -28,-25 + 2161: -29,-25 + 2680: -28,23 + 2681: -29,23 + 2682: -30,23 + 2683: -31,23 + 2731: 1,-43 + 2732: 2,-78 + 2733: 2,-77 + 2734: 2,-76 + 3718: 32,-25 + 3719: 31,-25 + 3720: 30,-25 + 3721: 29,-25 + 3722: 28,-25 + 3723: 27,-25 + 3724: 26,-25 + 3725: 25,-25 + 3726: 23,-25 + 3727: 24,-25 + 3728: 22,-25 + 3729: 21,-25 + 3730: 20,-25 + 3731: 19,-25 - node: color: '#D4D4D437' id: QuarterTileOverlayGreyscale180 decals: - 1066: -4,-69 - 1099: 3,-59 - 1100: 3,-58 - 1101: 3,-57 + 1065: -4,-69 + 1097: 3,-59 + 1098: 3,-58 + 1099: 3,-57 - node: color: '#D4D4D441' id: QuarterTileOverlayGreyscale180 decals: - 981: 56,21 - 982: 55,20 - 983: 53,20 + 980: 56,21 + 981: 55,20 + 982: 53,20 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale180 decals: - 1622: 46,23 - 1623: 46,24 - 1624: 47,24 - 1625: 48,24 - 1626: 49,24 - 1627: 50,24 - 1628: 51,24 - 1651: 39,20 - 1652: 40,20 - 1653: 41,20 + 1611: 46,23 + 1612: 46,24 + 1613: 47,24 + 1614: 48,24 + 1615: 49,24 + 1616: 50,24 + 1617: 51,24 + 1640: 39,20 + 1641: 40,20 + 1642: 41,20 - node: color: '#EFB3414A' id: QuarterTileOverlayGreyscale180 decals: - 3132: 19,6 - 3133: 20,6 - 3134: 20,7 - 3135: 21,7 - 3136: 22,7 + 3117: 19,6 + 3118: 20,6 + 3119: 20,7 + 3120: 21,7 + 3121: 22,7 - node: color: '#EFB34160' id: QuarterTileOverlayGreyscale180 decals: - 2648: 17,19 - 2649: 17,20 - 2650: 17,21 + 2633: 17,19 + 2634: 17,20 + 2635: 17,21 - node: color: '#FFEF9292' id: QuarterTileOverlayGreyscale180 decals: - 2901: 44,-27 + 2886: 44,-27 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 @@ -4374,21 +4432,21 @@ entities: color: '#52B4E92E' id: QuarterTileOverlayGreyscale270 decals: - 1019: -3,-74 - 1020: -3,-73 - 1021: -3,-72 - 1022: -3,-71 - 1023: -3,-70 - 1024: -3,-69 - 1025: -4,-69 - 1026: -4,-68 - 1027: -4,-67 - 1028: -4,-66 - 1029: -3,-65 - 1030: -3,-64 - 1031: -3,-63 - 1032: -3,-62 - 1033: -3,-61 + 1018: -3,-74 + 1019: -3,-73 + 1020: -3,-72 + 1021: -3,-71 + 1022: -3,-70 + 1023: -3,-69 + 1024: -4,-69 + 1025: -4,-68 + 1026: -4,-67 + 1027: -4,-66 + 1028: -3,-65 + 1029: -3,-64 + 1030: -3,-63 + 1031: -3,-62 + 1032: -3,-61 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 @@ -4398,27 +4456,27 @@ entities: color: '#79150096' id: QuarterTileOverlayGreyscale270 decals: - 966: 42,20 - 967: 44,20 - 968: 46,20 - 1638: 47,24 - 1639: 48,24 - 1640: 49,24 - 1641: 50,24 - 1642: 51,24 - 1643: 52,24 - 1644: 52,23 - 1654: 41,20 - 1655: 40,20 - 1656: 39,20 + 965: 42,20 + 966: 44,20 + 967: 46,20 + 1627: 47,24 + 1628: 48,24 + 1629: 49,24 + 1630: 50,24 + 1631: 51,24 + 1632: 52,24 + 1633: 52,23 + 1643: 41,20 + 1644: 40,20 + 1645: 39,20 - node: color: '#9FED584A' id: QuarterTileOverlayGreyscale270 decals: - 3302: 39,16 - 3303: 39,15 - 3304: 39,14 - 3305: 39,13 + 3287: 39,16 + 3288: 39,15 + 3289: 39,14 + 3290: 39,13 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale270 @@ -4431,38 +4489,38 @@ entities: decals: 593: 48,12 683: 36,4 - 3218: 45,-2 - 3219: 45,-1 - 3220: 45,0 - 3221: 45,1 - 3222: 45,2 - 3223: 44,2 - 3224: 43,2 - 3250: 49,6 - 3251: 50,6 - 3252: 54,6 - 3253: 51,6 - 3254: 52,6 - 3255: 53,6 - 3256: 55,6 - 3257: 56,6 + 3203: 45,-2 + 3204: 45,-1 + 3205: 45,0 + 3206: 45,1 + 3207: 45,2 + 3208: 44,2 + 3209: 43,2 + 3235: 49,6 + 3236: 50,6 + 3237: 54,6 + 3238: 51,6 + 3239: 52,6 + 3240: 53,6 + 3241: 55,6 + 3242: 56,6 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale270 decals: 330: -39,13 - 2049: -39,1 - 2050: -39,2 - 2051: -39,3 - 2052: -39,4 - 2053: -40,-8 - 2054: -39,-8 - 2055: -39,-9 - 2056: -39,-10 - 2057: -39,-11 - 2058: -39,-12 - 2059: -40,-7 - 2477: 48,-23 + 2038: -39,1 + 2039: -39,2 + 2040: -39,3 + 2041: -39,4 + 2042: -40,-8 + 2043: -39,-8 + 2044: -39,-9 + 2045: -39,-10 + 2046: -39,-11 + 2047: -39,-12 + 2048: -40,-7 + 2466: 48,-23 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale270 @@ -4470,122 +4528,122 @@ entities: 199: 15,2 200: 15,3 201: 15,4 - 1138: -5,-56 - 1139: -6,-56 - 1140: -7,-56 - 1141: -8,-56 - 1142: -9,-56 - 1143: -10,-56 - 1144: -11,-56 - 1145: -12,-56 - 1146: -13,-56 - 1147: -14,-56 - 1148: -15,-56 - 1149: -16,-56 - 1150: -17,-56 - 1151: -18,-56 - 1152: -19,-56 - 1181: 20,23 - 1182: 21,23 - 1183: 22,23 - 1184: 23,23 - 1185: 24,23 - 1186: 25,23 - 1187: 27,23 - 1188: 28,23 - 1189: 29,23 - 1190: 30,23 - 1191: 34,23 - 1192: 35,23 - 1193: 36,23 - 1194: 37,23 - 1473: -44,19 - 1474: -44,20 - 1475: -44,21 - 1476: -44,22 - 1477: -44,23 - 1478: -44,24 - 1479: -44,25 - 1500: -20,7 - 1501: -21,7 - 1502: -22,7 - 1503: -23,7 - 1504: -24,7 - 1505: -25,7 - 1506: -26,7 - 1515: -39,-25 - 1516: -38,-25 - 1517: -37,-25 - 1518: -36,-25 - 1519: -35,-25 - 1520: -34,-25 - 1521: -33,-25 - 1522: -32,-25 - 1523: -31,-25 - 1579: 12,7 - 1580: 13,7 - 1686: 1,9 - 1687: 2,9 - 1688: 3,9 - 1689: 4,9 - 1690: 5,9 - 1691: 5,8 - 1692: 6,8 - 1693: 7,8 - 1694: 8,8 - 1695: 8,7 - 2167: -39,-17 - 2168: -39,-16 - 2169: -39,-15 - 2170: -39,-14 - 2173: -26,-25 - 2174: -25,-25 - 2175: -24,-25 - 2176: -23,-25 - 2177: -22,-25 - 2178: -21,-25 - 2179: -20,-25 - 2180: -19,-25 - 2181: -18,-25 - 2182: -17,-25 - 2183: -16,-25 - 2184: -15,-25 - 2185: -14,-25 - 2409: -17,7 - 2410: -18,7 - 2658: 15,14 - 2659: 15,15 - 2660: 15,16 - 2661: 15,17 - 2662: 15,18 - 2663: 15,19 - 2664: 15,20 - 2665: 15,21 - 2675: -17,-22 - 2689: -24,23 - 2690: -23,23 - 2691: -22,23 - 2692: -21,23 - 2693: -20,23 - 2694: -19,23 - 2745: -1,-43 - 2750: -2,-78 - 2751: -2,-77 - 2752: -2,-76 + 1136: -5,-56 + 1137: -6,-56 + 1138: -7,-56 + 1139: -8,-56 + 1140: -9,-56 + 1141: -10,-56 + 1142: -11,-56 + 1143: -12,-56 + 1144: -13,-56 + 1145: -14,-56 + 1146: -15,-56 + 1147: -16,-56 + 1148: -17,-56 + 1149: -18,-56 + 1150: -19,-56 + 1179: 20,23 + 1180: 21,23 + 1181: 22,23 + 1182: 23,23 + 1183: 24,23 + 1184: 25,23 + 1185: 27,23 + 1186: 28,23 + 1187: 29,23 + 1188: 30,23 + 1189: 34,23 + 1190: 35,23 + 1191: 36,23 + 1192: 37,23 + 1467: -44,19 + 1468: -44,20 + 1469: -44,21 + 1470: -44,22 + 1471: -44,23 + 1472: -44,24 + 1473: -44,25 + 1494: -20,7 + 1495: -21,7 + 1496: -22,7 + 1497: -23,7 + 1498: -24,7 + 1499: -25,7 + 1500: -26,7 + 1509: -39,-25 + 1510: -38,-25 + 1511: -37,-25 + 1512: -36,-25 + 1513: -35,-25 + 1514: -34,-25 + 1515: -33,-25 + 1516: -32,-25 + 1517: -31,-25 + 1568: 12,7 + 1569: 13,7 + 1675: 1,9 + 1676: 2,9 + 1677: 3,9 + 1678: 4,9 + 1679: 5,9 + 1680: 5,8 + 1681: 6,8 + 1682: 7,8 + 1683: 8,8 + 1684: 8,7 + 2156: -39,-17 + 2157: -39,-16 + 2158: -39,-15 + 2159: -39,-14 + 2162: -26,-25 + 2163: -25,-25 + 2164: -24,-25 + 2165: -23,-25 + 2166: -22,-25 + 2167: -21,-25 + 2168: -20,-25 + 2169: -19,-25 + 2170: -18,-25 + 2171: -17,-25 + 2172: -16,-25 + 2173: -15,-25 + 2174: -14,-25 + 2398: -17,7 + 2399: -18,7 + 2643: 15,14 + 2644: 15,15 + 2645: 15,16 + 2646: 15,17 + 2647: 15,18 + 2648: 15,19 + 2649: 15,20 + 2650: 15,21 + 2660: -17,-22 + 2674: -24,23 + 2675: -23,23 + 2676: -22,23 + 2677: -21,23 + 2678: -20,23 + 2679: -19,23 + 2730: -1,-43 + 2735: -2,-78 + 2736: -2,-77 + 2737: -2,-76 - node: color: '#D4D4D437' id: QuarterTileOverlayGreyscale270 decals: - 1081: 4,-69 - 1096: -3,-59 - 1097: -3,-58 - 1098: -3,-57 + 1080: 4,-69 + 1094: -3,-59 + 1095: -3,-58 + 1096: -3,-57 - node: color: '#D4D4D441' id: QuarterTileOverlayGreyscale270 decals: - 984: 45,20 - 985: 43,20 + 983: 45,20 + 984: 43,20 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 @@ -4596,26 +4654,26 @@ entities: color: '#DF81C96C' id: QuarterTileOverlayGreyscale270 decals: - 3217: 48,4 + 3202: 48,4 - node: color: '#EFB3414A' id: QuarterTileOverlayGreyscale270 decals: - 3127: 27,6 - 3128: 26,6 - 3129: 26,7 - 3130: 25,7 - 3131: 24,7 + 3112: 27,6 + 3113: 26,6 + 3114: 26,7 + 3115: 25,7 + 3116: 24,7 - node: color: '#EFCC4196' id: QuarterTileOverlayGreyscale270 decals: - 2275: 9,15 + 2264: 9,15 - node: color: '#EFD54193' id: QuarterTileOverlayGreyscale270 decals: - 3380: 6,13 + 3365: 6,13 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 @@ -4646,14 +4704,14 @@ entities: color: '#52B4E92E' id: QuarterTileOverlayGreyscale90 decals: - 1034: -4,-66 + 1033: -4,-66 - node: color: '#52B4E944' id: QuarterTileOverlayGreyscale90 decals: - 1102: 3,-59 - 1103: 3,-58 - 1104: 3,-57 + 1100: 3,-59 + 1101: 3,-58 + 1102: 3,-57 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 @@ -4664,24 +4722,29 @@ entities: 258: 39,-23 259: 40,-23 260: 41,-23 + 3710: 35,-23 + 3711: 34,-23 + 3712: 33,-23 + 3713: 32,-23 + 3714: 31,-23 - node: color: '#79150096' id: QuarterTileOverlayGreyscale90 decals: - 972: 56,26 - 973: 56,24 - 975: 53,26 - 978: 50,27 - 1631: 51,22 - 1632: 50,22 - 1633: 49,22 - 1634: 48,22 - 1635: 47,22 - 1636: 46,22 - 1637: 46,23 - 1645: 41,18 - 1646: 40,18 - 1647: 39,18 + 971: 56,26 + 972: 56,24 + 974: 53,26 + 977: 50,27 + 1620: 51,22 + 1621: 50,22 + 1622: 49,22 + 1623: 48,22 + 1624: 47,22 + 1625: 46,22 + 1626: 46,23 + 1634: 41,18 + 1635: 40,18 + 1636: 39,18 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale90 @@ -4701,194 +4764,189 @@ entities: color: '#D381C996' id: QuarterTileOverlayGreyscale90 decals: - 1665: -35,9 - 2480: 50,-22 - 2605: -55,17 - 2606: -56,17 - 2607: -57,17 - 2608: -54,17 + 1654: -35,9 + 2469: 50,-22 + 2590: -55,17 + 2591: -56,17 + 2592: -57,17 + 2593: -54,17 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale90 decals: - 1153: 10,-54 - 1154: 9,-54 - 1155: 7,-54 - 1156: 8,-54 - 1157: 5,-54 - 1158: 3,-54 - 1160: 2,-47 - 1161: 2,-48 - 1162: 2,-49 - 1163: 2,-50 - 1164: 2,-51 - 1165: 2,-52 - 1438: -3,-23 - 1439: -4,-23 - 1440: -5,-23 - 1441: -6,-23 - 1442: -7,-23 - 1443: -8,-23 - 1444: -13,-23 - 1445: -14,-23 - 1446: 5,10 - 1447: 6,10 - 1448: 7,10 - 1449: 4,10 - 1450: 7,9 - 1451: 8,9 - 1452: 9,9 - 1453: 10,9 - 1454: 11,9 - 1455: 12,9 - 1456: 13,9 - 1480: -44,25 - 1481: -43,25 - 1482: -42,25 - 1483: -41,25 - 1484: -40,25 - 1485: -39,25 - 1486: -38,25 - 1487: -37,25 - 1488: -36,25 - 1489: -35,25 - 1490: -34,25 - 1491: -33,25 - 1537: 35,-23 - 1538: 34,-23 - 1539: 32,-23 - 1540: 31,-23 - 1541: 33,-23 - 1542: 30,-23 - 1543: 29,-23 - 1544: 28,-23 - 1545: 27,-23 - 1546: 26,-23 - 1547: 25,-23 - 1548: 24,-23 - 1549: 23,-23 - 1550: 22,-23 - 1551: 21,-23 - 1552: 20,-23 - 1553: 19,-23 - 1554: 18,-23 - 1560: -15,1 - 1561: -15,0 - 1562: -14,0 - 1927: -15,21 - 1928: -15,20 - 1929: -15,19 - 1930: -15,18 - 1931: -15,17 - 1932: -15,16 - 1933: -15,15 - 1934: -15,14 - 1935: -15,13 - 1936: -15,12 - 1937: -15,11 - 2153: -28,-23 - 2154: -29,-23 - 2155: -30,-23 - 2156: -31,-23 - 2157: -32,-23 - 2158: -33,-23 - 2159: -34,-23 - 2160: -35,-23 - 2161: -36,-23 - 2162: -37,-23 - 2163: -37,-22 - 2164: -37,-21 - 2165: -37,-20 - 2166: -37,-19 - 2394: -20,9 - 2395: -21,9 - 2396: -22,9 - 2397: -23,9 - 2398: -24,9 - 2406: -14,9 - 2407: -15,9 - 2654: 17,14 - 2655: 17,13 - 2656: 17,12 - 2657: 17,11 - 2669: 17,9 - 2672: 17,-22 - 2673: 17,-23 - 2676: -18,-23 - 2677: -15,-23 - 2678: -15,-22 - 2679: -15,-21 - 2680: -15,-20 - 2681: -15,-19 - 2682: -15,-17 - 2683: -15,-16 - 2684: -15,-15 - 2685: -15,-14 - 2686: -15,-13 - 2687: -15,-12 - 2688: -15,-11 - 2731: 1,-28 - 2732: 1,-29 - 2733: 1,-30 - 2734: 1,-31 - 2735: 1,-32 - 2736: 1,-33 - 2737: 1,-34 - 2738: 1,-35 - 2739: 1,-36 - 2740: 1,-37 - 2741: 1,-38 - 2742: 1,-39 - 2743: 1,-40 - 2744: 1,-41 + 1151: 10,-54 + 1152: 9,-54 + 1153: 7,-54 + 1154: 8,-54 + 1155: 5,-54 + 1156: 3,-54 + 1158: 2,-47 + 1159: 2,-48 + 1160: 2,-49 + 1161: 2,-50 + 1162: 2,-51 + 1163: 2,-52 + 1432: -3,-23 + 1433: -4,-23 + 1434: -5,-23 + 1435: -6,-23 + 1436: -7,-23 + 1437: -8,-23 + 1438: -13,-23 + 1439: -14,-23 + 1440: 5,10 + 1441: 6,10 + 1442: 7,10 + 1443: 4,10 + 1444: 7,9 + 1445: 8,9 + 1446: 9,9 + 1447: 10,9 + 1448: 11,9 + 1449: 12,9 + 1450: 13,9 + 1474: -44,25 + 1475: -43,25 + 1476: -42,25 + 1477: -41,25 + 1478: -40,25 + 1479: -39,25 + 1480: -38,25 + 1481: -37,25 + 1482: -36,25 + 1483: -35,25 + 1484: -34,25 + 1485: -33,25 + 1531: 30,-23 + 1532: 29,-23 + 1533: 28,-23 + 1534: 27,-23 + 1535: 26,-23 + 1536: 25,-23 + 1537: 24,-23 + 1538: 23,-23 + 1539: 22,-23 + 1540: 21,-23 + 1541: 20,-23 + 1542: 19,-23 + 1543: 18,-23 + 1549: -15,1 + 1550: -15,0 + 1551: -14,0 + 1916: -15,21 + 1917: -15,20 + 1918: -15,19 + 1919: -15,18 + 1920: -15,17 + 1921: -15,16 + 1922: -15,15 + 1923: -15,14 + 1924: -15,13 + 1925: -15,12 + 1926: -15,11 + 2142: -28,-23 + 2143: -29,-23 + 2144: -30,-23 + 2145: -31,-23 + 2146: -32,-23 + 2147: -33,-23 + 2148: -34,-23 + 2149: -35,-23 + 2150: -36,-23 + 2151: -37,-23 + 2152: -37,-22 + 2153: -37,-21 + 2154: -37,-20 + 2155: -37,-19 + 2383: -20,9 + 2384: -21,9 + 2385: -22,9 + 2386: -23,9 + 2387: -24,9 + 2395: -14,9 + 2396: -15,9 + 2639: 17,14 + 2640: 17,13 + 2641: 17,12 + 2642: 17,11 + 2654: 17,9 + 2657: 17,-22 + 2658: 17,-23 + 2661: -18,-23 + 2662: -15,-23 + 2663: -15,-22 + 2664: -15,-21 + 2665: -15,-20 + 2666: -15,-19 + 2667: -15,-17 + 2668: -15,-16 + 2669: -15,-15 + 2670: -15,-14 + 2671: -15,-13 + 2672: -15,-12 + 2673: -15,-11 + 2716: 1,-28 + 2717: 1,-29 + 2718: 1,-30 + 2719: 1,-31 + 2720: 1,-32 + 2721: 1,-33 + 2722: 1,-34 + 2723: 1,-35 + 2724: 1,-36 + 2725: 1,-37 + 2726: 1,-38 + 2727: 1,-39 + 2728: 1,-40 + 2729: 1,-41 - node: color: '#D4D4D437' id: QuarterTileOverlayGreyscale90 decals: - 1067: 3,-61 - 1068: 3,-62 - 1069: 3,-63 - 1070: 3,-64 - 1071: 3,-65 - 1072: 4,-66 - 1073: 4,-67 - 1074: 4,-68 - 1075: 4,-69 - 1076: 3,-70 - 1077: 3,-71 - 1078: 3,-72 - 1079: 3,-73 - 1080: 3,-74 + 1066: 3,-61 + 1067: 3,-62 + 1068: 3,-63 + 1069: 3,-64 + 1070: 3,-65 + 1071: 4,-66 + 1072: 4,-67 + 1073: 4,-68 + 1074: 4,-69 + 1075: 3,-70 + 1076: 3,-71 + 1077: 3,-72 + 1078: 3,-73 + 1079: 3,-74 - node: color: '#D4D4D441' id: QuarterTileOverlayGreyscale90 decals: - 979: 55,26 - 980: 56,25 - 988: 51,26 + 978: 55,26 + 979: 56,25 + 987: 51,26 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale90 decals: - 2771: 20,26 - 2772: 21,26 - 2773: 22,26 - 2774: 23,26 - 2775: 24,26 - 2776: 25,26 - 2777: 26,26 - 2778: 27,26 - 2779: 28,26 - 2780: 29,26 - 2781: 37,26 - 2782: 36,26 - 2783: 35,26 - 2784: 34,26 - 2785: 33,26 - 2786: 32,26 - 2787: 31,26 - 2788: 30,26 - 2954: 19,26 + 2756: 20,26 + 2757: 21,26 + 2758: 22,26 + 2759: 23,26 + 2760: 24,26 + 2761: 25,26 + 2762: 26,26 + 2763: 27,26 + 2764: 28,26 + 2765: 29,26 + 2766: 37,26 + 2767: 36,26 + 2768: 35,26 + 2769: 34,26 + 2770: 33,26 + 2771: 32,26 + 2772: 31,26 + 2773: 30,26 + 2939: 19,26 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 @@ -4905,72 +4963,72 @@ entities: 710: -37,-8 711: -37,-7 712: -37,-6 - 1710: -8,-15 - 1711: -8,-14 - 1712: -8,-13 - 1713: -8,-12 - 1714: -9,-12 + 1699: -8,-15 + 1700: -8,-14 + 1701: -8,-13 + 1702: -8,-12 + 1703: -9,-12 - node: color: '#DF81C96C' id: QuarterTileOverlayGreyscale90 decals: - 3205: 40,3 - 3206: 41,3 - 3207: 42,3 - 3208: 43,3 - 3209: 44,3 - 3210: 45,3 - 3211: 46,3 - 3212: 47,3 - 3213: 48,4 - 3214: 49,4 - 3215: 50,4 - 3216: 51,4 + 3190: 40,3 + 3191: 41,3 + 3192: 42,3 + 3193: 43,3 + 3194: 44,3 + 3195: 45,3 + 3196: 46,3 + 3197: 47,3 + 3198: 48,4 + 3199: 49,4 + 3200: 50,4 + 3201: 51,4 - node: color: '#EFB34160' id: QuarterTileOverlayGreyscale90 decals: - 2651: 17,17 - 2652: 17,16 - 2653: 17,15 + 2636: 17,17 + 2637: 17,16 + 2638: 17,15 - node: color: '#EFCC4196' id: QuarterTileOverlayGreyscale90 decals: - 2299: 1,11 - 2300: 2,11 - 2301: 3,11 - 2302: 4,11 - 2346: -15,23 - 2347: -15,24 - 2348: -15,25 - 2349: -16,25 - 2350: -17,25 - 2351: -18,25 - 2352: -19,25 - 2353: -20,25 + 2288: 1,11 + 2289: 2,11 + 2290: 3,11 + 2291: 4,11 + 2335: -15,23 + 2336: -15,24 + 2337: -15,25 + 2338: -16,25 + 2339: -17,25 + 2340: -18,25 + 2341: -19,25 + 2342: -20,25 - node: color: '#FFFFFFFF' id: Remains decals: - 2789: -63.989975,-10.123885 + 2774: -63.989975,-10.123885 - node: color: '#FFFFFFFF' id: Rock01 decals: - 995: -5.089998,-68.511505 - 997: 5.097502,-68.08963 + 994: -5.089998,-68.511505 + 996: 5.097502,-68.08963 - node: color: '#FFFFFFFF' id: Rock03 decals: - 1610: -47.98986,4.9975877 + 1599: -47.98986,4.9975877 - node: color: '#FFFFFFFF' id: Rock04 decals: - 996: 5.097502,-66.74588 - 1611: -47.02111,4.9975877 + 995: 5.097502,-66.74588 + 1600: -47.02111,4.9975877 - node: cleanable: True color: '#FFFFFFFF' @@ -4993,7 +5051,7 @@ entities: color: '#80C71FFF' id: Sirius decals: - 2795: -9.970831,-51.964848 + 2780: -9.970831,-51.964848 - node: color: '#FFFFFFFF' id: SpaceStationSign1 @@ -5035,24 +5093,24 @@ entities: decals: 354: -40,-1 459: -6,31 - 1816: -23,-20 - 1870: -22,26 + 1805: -23,-20 + 1859: -22,26 - node: color: '#D381C996' id: StandClearGreyscale decals: - 1285: -53,1 - 2017: -49,1 + 1281: -53,1 + 2006: -49,1 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 2917: 32,-17 + 2902: 32,-17 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale decals: - 2994: 43,9 + 2979: 43,9 - node: color: '#D0BF4AA7' id: ThreeQuarterTileOverlayGreyscale @@ -5063,23 +5121,23 @@ entities: id: ThreeQuarterTileOverlayGreyscale decals: 317: -43,14 - 2063: -43,-10 + 2052: -43,-10 - node: color: '#EFCC4196' id: ThreeQuarterTileOverlayGreyscale decals: - 2262: -5,21 - 2272: 3,15 + 2251: -5,21 + 2261: 3,15 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2919: 35,-21 + 2904: 35,-21 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2905: 45,-35 + 2890: 45,-35 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale180 @@ -5094,25 +5152,25 @@ entities: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2044: -37,11 - 2062: -41,-11 + 2033: -37,11 + 2051: -41,-11 - node: color: '#EFCC4196' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2263: 6,17 - 2273: 7,12 + 2252: 6,17 + 2262: 7,12 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2918: 32,-21 - 2941: 48,-18 + 2903: 32,-21 + 2926: 48,-18 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2904: 43,-35 + 2889: 43,-35 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale270 @@ -5129,14 +5187,14 @@ entities: decals: 315: -39,11 316: -43,13 - 2067: -43,-11 + 2056: -43,-11 - node: color: '#EFCC4196' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2265: -5,17 - 2269: 6,12 - 2270: 3,13 + 2254: -5,17 + 2258: 6,12 + 2259: 3,13 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale90 @@ -5146,13 +5204,13 @@ entities: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2949: 49,-17 - 3602: 35,-17 + 2934: 49,-17 + 3587: 35,-17 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2995: 46,9 + 2980: 46,9 - node: color: '#D0BF4AA7' id: ThreeQuarterTileOverlayGreyscale90 @@ -5162,20 +5220,20 @@ entities: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2043: -37,14 - 2066: -41,-10 + 2032: -37,14 + 2055: -41,-10 - node: color: '#EFCC4196' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2264: 6,21 - 2271: 7,15 + 2253: 6,21 + 2260: 7,15 - node: cleanable: True color: '#B02E26FF' id: Tunnel decals: - 2498: 32.016933,17.019823 + 2486: 32.016933,17.019823 - node: color: '#FFFFFFFF' id: VentSmall @@ -5186,22 +5244,22 @@ entities: color: '#835432FF' id: Waffle decals: - 2790: -15.97007,-46.029713 + 2775: -15.97007,-46.029713 - node: color: '#FFFFFFFF' id: WarnBox decals: - 2103: -25,2 - 3306: 12,-55 - 3307: -25,-36 - 3308: 23,-47 - 3309: 20,28 - 3310: 5,-71 - 3311: -5,-71 - 3312: -5,-64 - 3313: 5,-64 - 3314: 39,-47 - 3452: -17,48 + 2092: -25,2 + 3291: 12,-55 + 3292: -25,-36 + 3293: 23,-47 + 3294: 20,28 + 3295: 5,-71 + 3296: -5,-71 + 3297: -5,-64 + 3298: 5,-64 + 3299: 39,-47 + 3437: -17,48 - node: color: '#FFFFFFFF' id: WarnCorner @@ -5228,79 +5286,79 @@ entities: color: '#DE3A3A96' id: WarnCornerGreyscaleNE decals: - 1761: -22,-3 + 1750: -22,-3 - node: color: '#D381C996' id: WarnCornerGreyscaleNW decals: - 1320: -58,-1 + 1316: -58,-1 - node: color: '#DE3A3A96' id: WarnCornerGreyscaleNW decals: - 1769: -31,-3 + 1758: -31,-3 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: 758: -30,34 901: -12,2 - 1426: -2,31 - 3432: -2,24 - 3492: -19,40 + 1420: -2,31 + 3417: -2,24 + 3477: -19,40 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: 881: -8,2 - 1425: 2,31 - 2204: 2,24 - 3480: -27,38 - 3491: -15,40 + 1419: 2,31 + 2193: 2,24 + 3465: -27,38 + 3476: -15,40 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 1092: -2,-78 - 1424: -2,36 - 3490: -19,42 + 1090: -2,-78 + 1418: -2,36 + 3475: -19,42 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: 767: -30,36 - 1091: 2,-78 - 1423: 2,36 - 2643: 40,-35 - 3479: -27,40 - 3489: -15,42 + 1089: 2,-78 + 1417: 2,36 + 2628: 40,-35 + 3464: -27,40 + 3474: -15,42 - node: color: '#52B4E996' id: WarnFullGreyscale decals: - 3364: 46,-14 - 3600: 36,-19 - 3601: 42,-19 + 3349: 46,-14 + 3585: 36,-19 + 3586: 42,-19 - node: color: '#D381C996' id: WarnFullGreyscale decals: - 2088: -58,0 + 2077: -58,0 - node: color: '#FFFFFFFF' id: WarnFullGreyscale decals: - 3138: 23,6 - 3383: 5,16 - 3385: 18,18 - 3403: -14,28 - 3404: -24,30 - 3405: -24,31 - 3406: -22,27 - 3407: -32,30 - 3408: -32,31 - 3409: -22,33 - 3410: -12,33 + 3123: 23,6 + 3368: 5,16 + 3370: 18,18 + 3388: -14,28 + 3389: -24,30 + 3390: -24,31 + 3391: -22,27 + 3392: -32,30 + 3393: -32,31 + 3394: -22,33 + 3395: -12,33 - node: color: '#FFFFFFFF' id: WarnLineE @@ -5313,268 +5371,295 @@ entities: 903: -12,4 904: -12,5 949: -54,16 - 1416: -2,32 - 1417: -2,33 - 1418: -2,34 - 1419: -2,35 - 1831: -15,-18 - 1835: -37,-18 - 1839: -37,5 - 1844: -15,6 - 1845: -15,10 - 1846: -15,22 - 1850: 17,6 - 1851: 17,10 - 1852: 41,12 - 1860: 17,22 - 1861: 17,26 - 1862: 17,-9 - 1874: -21,26 - 1939: -15,-3 - 1980: -54,6 - 1983: -52,1 - 1984: -48,1 - 2202: -2,25 - 2359: -3,26 - 2360: -3,22 - 2609: -54,17 - 2950: 45,-16 - 3158: 3,34 - 3159: 3,35 - 3160: 3,36 - 3284: 56,15 - 3285: 56,14 - 3286: 56,13 - 3287: 56,12 - 3288: 56,11 - 3488: -19,41 - 3540: 1,-13 + 1410: -2,32 + 1411: -2,33 + 1412: -2,34 + 1413: -2,35 + 1820: -15,-18 + 1824: -37,-18 + 1828: -37,5 + 1833: -15,6 + 1834: -15,10 + 1835: -15,22 + 1839: 17,6 + 1840: 17,10 + 1841: 41,12 + 1849: 17,22 + 1850: 17,26 + 1851: 17,-9 + 1863: -21,26 + 1928: -15,-3 + 1969: -54,6 + 1972: -52,1 + 1973: -48,1 + 2191: -2,25 + 2348: -3,26 + 2349: -3,22 + 2594: -54,17 + 2935: 45,-16 + 3143: 3,34 + 3144: 3,35 + 3145: 3,36 + 3269: 56,15 + 3270: 56,14 + 3271: 56,13 + 3272: 56,12 + 3273: 56,11 + 3473: -19,41 + 3525: 1,-13 - node: color: '#52B4E996' id: WarnLineGreyscaleE decals: - 2940: 45,-22 - 3599: 35,-19 - 3628: 45,-10 - 3629: 45,-14 - 3663: 41,-19 + 2925: 45,-22 + 3584: 35,-19 + 3613: 45,-10 + 3614: 45,-14 + 3647: 41,-19 - node: color: '#9FED5896' id: WarnLineGreyscaleE decals: - 2892: 45,-33 + 2877: 45,-33 - node: color: '#B02E26FF' id: WarnLineGreyscaleE decals: - 2808: -4,-47 + 2793: -4,-47 - node: color: '#D381C996' id: WarnLineGreyscaleE decals: - 2018: -48,-6 - 2020: -45,-1 - 2038: -42,-6 + 2007: -48,-6 + 2009: -45,-1 + 2027: -42,-6 - node: color: '#DE3A3A96' id: WarnLineGreyscaleE decals: - 1760: -22,-4 - 1802: -33,-20 - 1803: -33,-17 - 2813: -8,-47 + 1749: -22,-4 + 1791: -33,-20 + 1792: -33,-17 + 2798: -8,-47 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleE decals: - 1813: -23,-21 - 1814: -23,-20 - 1815: -23,-19 - 1826: -18,-21 - 1827: -18,-20 - 1828: -18,-19 - 1889: -15,28 - 1894: -25,30 - 1895: -25,31 - 2355: 6,19 - 2435: 3,-6 - 3384: 17,18 - 3545: -14,-25 - 3546: -14,-24 - 3547: -14,-23 - 3563: -14,7 - 3564: -14,8 - 3565: -14,9 - 3566: -20,7 - 3567: -20,8 - 3568: -20,9 - 3569: 13,7 - 3570: 13,8 - 3571: 13,9 + 1802: -23,-21 + 1803: -23,-20 + 1804: -23,-19 + 1815: -18,-21 + 1816: -18,-20 + 1817: -18,-19 + 1878: -15,28 + 1883: -25,30 + 1884: -25,31 + 2344: 6,19 + 2424: 3,-6 + 3369: 17,18 + 3530: -14,-25 + 3531: -14,-24 + 3532: -14,-23 + 3548: -14,7 + 3549: -14,8 + 3550: -14,9 + 3551: -20,7 + 3552: -20,8 + 3553: -20,9 + 3554: 13,7 + 3555: 13,8 + 3556: 13,9 + 3698: -5,-56 + 3699: -5,-55 + 3700: -5,-54 - node: color: '#52B4E996' id: WarnLineGreyscaleN decals: - 3630: 44,-9 + 3615: 44,-9 - node: color: '#D381C996' id: WarnLineGreyscaleN decals: - 1176: -54,4 - 1177: -55,4 - 1178: -51,5 - 1271: -46,14 - 1284: -56,4 - 1304: -56,-1 - 1305: -54,-1 - 1306: -53,-1 - 1307: -52,-1 - 2084: -41,12 - 2085: -42,12 + 1174: -54,4 + 1175: -55,4 + 1176: -51,5 + 1267: -46,14 + 1280: -56,4 + 1300: -56,-1 + 1301: -54,-1 + 1302: -53,-1 + 1303: -52,-1 + 2073: -41,12 + 2074: -42,12 - node: color: '#DE3A3A96' id: WarnLineGreyscaleN decals: - 1771: -27,-3 - 1799: -26,-19 - 1800: -28,-19 + 1760: -27,-3 + 1788: -26,-19 + 1789: -28,-19 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN decals: - 1891: -22,32 - 2065: -42,-10 - 2227: -12,32 - 2356: 5,15 - 3139: 23,5 - 3525: 1,-28 - 3526: 0,-28 - 3527: -1,-28 - 3528: 15,-22 - 3529: 16,-22 - 3530: 17,-22 + 1880: -22,32 + 2054: -42,-10 + 2216: -12,32 + 2345: 5,15 + 3124: 23,5 + 3510: 1,-28 + 3511: 0,-28 + 3512: -1,-28 + 3513: 15,-22 + 3514: 16,-22 + 3515: 17,-22 + 3677: 1,-54 + 3678: 0,-54 + 3679: -1,-54 + 3680: -1,-61 + 3681: 0,-61 + 3682: 1,-61 + 3683: 1,-76 + 3684: 0,-76 + 3685: -1,-76 - node: color: '#334E6DC8' id: WarnLineGreyscaleS decals: - 2427: 4,-1 - 2428: -4,-1 - 2429: 0,-1 + 2416: 4,-1 + 2417: -4,-1 + 2418: 0,-1 - node: color: '#9FED5896' id: WarnLineGreyscaleS decals: - 2906: 44,-35 + 2891: 44,-35 - node: color: '#D381C996' id: WarnLineGreyscaleS decals: - 1179: -51,11 - 1180: -45,11 - 1278: -52,2 - 1279: -53,2 - 1280: -54,2 - 1283: -56,2 - 2087: -58,1 + 1177: -51,11 + 1178: -45,11 + 1274: -52,2 + 1275: -53,2 + 1276: -54,2 + 1279: -56,2 + 2076: -58,1 - node: color: '#DE3A3A96' id: WarnLineGreyscaleS decals: - 1754: -27,-6 - 1952: -26,-17 - 1953: -28,-17 + 1743: -27,-6 + 1941: -26,-17 + 1942: -28,-17 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 1829: -19,-22 - 1830: -20,-22 - 1888: -18,27 - 1890: -22,28 - 1944: -21,-22 - 2225: -12,27 - 2354: 5,17 - 3137: 23,7 - 3516: 17,-20 - 3517: 16,-20 - 3518: 15,-20 - 3519: 1,-21 - 3520: 0,-21 - 3521: -1,-21 - 3522: -1,-26 - 3523: 0,-26 - 3524: 1,-26 + 1818: -19,-22 + 1819: -20,-22 + 1877: -18,27 + 1879: -22,28 + 1933: -21,-22 + 2214: -12,27 + 2343: 5,17 + 3122: 23,7 + 3501: 17,-20 + 3502: 16,-20 + 3503: 15,-20 + 3504: 1,-21 + 3505: 0,-21 + 3506: -1,-21 + 3507: -1,-26 + 3508: 0,-26 + 3509: 1,-26 + 3665: 1,-74 + 3666: 0,-74 + 3667: -1,-74 + 3668: 1,-59 + 3669: 0,-59 + 3670: -1,-59 + 3671: 1,-52 + 3672: 0,-52 + 3673: -1,-52 + 3674: 1,-43 + 3675: 0,-43 + 3676: -1,-43 - node: color: '#52B4E996' id: WarnLineGreyscaleW decals: - 2939: 43,-24 - 3363: 47,-14 - 3598: 43,-19 - 3604: 32,-20 - 3605: 32,-18 - 3626: 43,-14 - 3627: 43,-10 - 3662: 37,-19 + 2924: 43,-24 + 3348: 47,-14 + 3583: 43,-19 + 3589: 32,-20 + 3590: 32,-18 + 3611: 43,-14 + 3612: 43,-10 + 3646: 37,-19 - node: color: '#9FED5896' id: WarnLineGreyscaleW decals: - 2902: 43,-28 - 2903: 43,-32 + 2887: 43,-28 + 2888: 43,-32 - node: color: '#B02E26FF' id: WarnLineGreyscaleW decals: - 2807: -6,-47 + 2792: -6,-47 - node: color: '#D381C996' id: WarnLineGreyscaleW decals: - 2019: -46,-6 + 2008: -46,-6 - node: color: '#DE3A3A96' id: WarnLineGreyscaleW decals: - 1770: -31,-4 - 1801: -31,-20 - 1940: -21,-21 - 1941: -21,-19 - 2814: -9,-47 + 1759: -31,-4 + 1790: -31,-20 + 1929: -21,-21 + 1930: -21,-19 + 2799: -9,-47 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleW decals: - 1810: -23,-21 - 1811: -23,-20 - 1812: -23,-19 - 1892: -23,30 - 1893: -23,31 - 1896: -31,30 - 1897: -31,31 - 2226: -13,28 - 2434: 5,-6 - 2611: 19,18 - 3542: -12,-25 - 3543: -12,-24 - 3544: -12,-23 - 3557: -12,7 - 3558: -12,8 - 3559: -12,9 - 3560: -18,7 - 3561: -18,8 - 3562: -18,9 - 3572: 19,7 - 3573: 19,8 - 3574: 19,9 - 3584: 19,23 - 3585: 19,24 - 3586: 19,25 + 1799: -23,-21 + 1800: -23,-20 + 1801: -23,-19 + 1881: -23,30 + 1882: -23,31 + 1885: -31,30 + 1886: -31,31 + 2215: -13,28 + 2423: 5,-6 + 2596: 19,18 + 3527: -12,-25 + 3528: -12,-24 + 3529: -12,-23 + 3542: -12,7 + 3543: -12,8 + 3544: -12,9 + 3545: -18,7 + 3546: -18,8 + 3547: -18,9 + 3557: 19,7 + 3558: 19,8 + 3559: 19,9 + 3569: 19,23 + 3570: 19,24 + 3571: 19,25 + 3701: 5,-56 + 3702: 5,-55 + 3703: 5,-54 - node: color: '#DE3A3A96' id: WarnLineN decals: - 1734: -9,-19 + 1723: -9,-19 - node: color: '#FFFFFFFF' id: WarnLineN @@ -5590,41 +5675,41 @@ entities: 780: -119,18 781: -120,18 782: -121,18 - 1088: 0,-78 - 1089: 1,-78 - 1090: -1,-78 - 1420: -1,36 - 1421: 0,36 - 1422: 1,36 - 1833: -27,-25 - 1836: -40,-2 - 1840: -36,7 - 1855: 35,7 - 1856: 38,23 - 1866: 2,-25 - 1867: -2,-25 - 1868: 18,-25 - 2642: 39,-35 - 3099: -41,23 - 3296: 43,2 - 3456: -15,48 - 3457: -14,48 - 3458: -13,48 - 3459: -12,48 - 3460: -11,48 - 3461: -19,48 - 3462: -20,48 - 3463: -21,48 - 3464: -22,48 - 3465: -23,48 - 3481: -18,42 - 3482: -17,42 - 3483: -16,42 + 1086: 0,-78 + 1087: 1,-78 + 1088: -1,-78 + 1414: -1,36 + 1415: 0,36 + 1416: 1,36 + 1822: -27,-25 + 1825: -40,-2 + 1829: -36,7 + 1844: 35,7 + 1845: 38,23 + 1855: 2,-25 + 1856: -2,-25 + 1857: 18,-25 + 2627: 39,-35 + 3084: -41,23 + 3281: 43,2 + 3441: -15,48 + 3442: -14,48 + 3443: -13,48 + 3444: -12,48 + 3445: -11,48 + 3446: -19,48 + 3447: -20,48 + 3448: -21,48 + 3449: -22,48 + 3450: -23,48 + 3466: -18,42 + 3467: -17,42 + 3468: -16,42 - node: color: '#DE3A3A96' id: WarnLineS decals: - 1742: -9,-16 + 1731: -9,-16 - node: color: '#FFFFFFFF' id: WarnLineS @@ -5637,45 +5722,45 @@ entities: 882: -8,3 883: -8,4 884: -8,5 - 1093: -20,-56 - 1094: -20,-55 - 1095: -20,-54 - 1412: 2,32 - 1413: 2,33 - 1414: 2,34 - 1415: 2,35 - 1832: -17,-18 - 1834: -39,-18 - 1838: -39,5 - 1842: -17,6 - 1843: -17,10 - 1847: -17,22 - 1848: 15,10 - 1849: 15,6 - 1853: 39,12 - 1858: 15,22 - 1859: 15,26 - 1863: 15,-9 - 1873: -23,26 - 1938: -17,-3 - 1981: -56,6 - 1982: -54,1 - 1985: -50,1 - 2203: 2,25 - 2357: -4,22 - 2358: -5,26 - 2431: 3,-8 - 2432: 3,-7 - 2433: 3,-6 - 2951: 43,-16 - 3478: -27,39 - 3484: -15,41 - 3541: -1,-13 + 1091: -20,-56 + 1092: -20,-55 + 1093: -20,-54 + 1406: 2,32 + 1407: 2,33 + 1408: 2,34 + 1409: 2,35 + 1821: -17,-18 + 1823: -39,-18 + 1827: -39,5 + 1831: -17,6 + 1832: -17,10 + 1836: -17,22 + 1837: 15,10 + 1838: 15,6 + 1842: 39,12 + 1847: 15,22 + 1848: 15,26 + 1852: 15,-9 + 1862: -23,26 + 1927: -17,-3 + 1970: -56,6 + 1971: -54,1 + 1974: -50,1 + 2192: 2,25 + 2346: -4,22 + 2347: -5,26 + 2420: 3,-8 + 2421: 3,-7 + 2422: 3,-6 + 2936: 43,-16 + 3463: -27,39 + 3469: -15,41 + 3526: -1,-13 - node: color: '#DE3A3A96' id: WarnLineW decals: - 1736: -7,-18 + 1725: -7,-18 - node: color: '#FFFFFFFF' id: WarnLineW @@ -5696,48 +5781,48 @@ entities: 785: -62,40 786: -63,40 787: -64,40 - 1409: -1,31 - 1410: 0,31 - 1411: 1,31 - 1605: -58,2 - 1606: -59,2 - 1607: -60,2 - 1837: -40,0 - 1841: -36,9 - 1854: 35,9 - 1857: 38,25 - 1864: 2,-23 - 1865: -2,-23 - 1869: 18,-23 - 1979: -42,-2 - 2152: -27,-23 - 2199: 0,24 - 2200: 1,24 - 2201: -1,24 - 2833: 4,-39 - 2840: 5,-39 - 2841: 3,-39 - 3100: -41,25 - 3155: 0,29 - 3156: 1,29 - 3157: -1,29 - 3297: 43,3 - 3466: -16,51 - 3467: -15,51 - 3468: -14,51 - 3469: -13,51 - 3470: -12,51 - 3471: -11,51 - 3472: -18,51 - 3473: -19,51 - 3474: -20,51 - 3475: -21,51 - 3476: -22,51 - 3477: -23,51 - 3485: -16,40 - 3486: -17,40 - 3487: -18,40 - 3493: -43,-2 + 1403: -1,31 + 1404: 0,31 + 1405: 1,31 + 1594: -58,2 + 1595: -59,2 + 1596: -60,2 + 1826: -40,0 + 1830: -36,9 + 1843: 35,9 + 1846: 38,25 + 1853: 2,-23 + 1854: -2,-23 + 1858: 18,-23 + 1968: -42,-2 + 2141: -27,-23 + 2188: 0,24 + 2189: 1,24 + 2190: -1,24 + 2818: 4,-39 + 2825: 5,-39 + 2826: 3,-39 + 3085: -41,25 + 3140: 0,29 + 3141: 1,29 + 3142: -1,29 + 3282: 43,3 + 3451: -16,51 + 3452: -15,51 + 3453: -14,51 + 3454: -13,51 + 3455: -12,51 + 3456: -11,51 + 3457: -18,51 + 3458: -19,51 + 3459: -20,51 + 3460: -21,51 + 3461: -22,51 + 3462: -23,51 + 3470: -16,40 + 3471: -17,40 + 3472: -18,40 + 3478: -43,-2 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -5823,24 +5908,34 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinBox decals: - 1379: 12,-30 + 1373: 12,-30 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 3740: -12,-51 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 3739: -15,-51 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: - 1250: -7,14 + 1248: -7,14 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: - 1240: -12,19 - 1337: 10,-27 + 1238: -12,19 + 1333: 10,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: 867: -23,-27 - 1245: -7,19 + 1243: -7,19 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE @@ -5863,20 +5958,21 @@ entities: 860: -24,-30 861: -24,-29 862: -24,-28 - 1236: -12,15 - 1237: -12,16 - 1238: -12,17 - 1239: -12,18 - 1335: 10,-29 - 1336: 10,-28 - 2112: -24,-27 - 2137: -46,-16 - 2415: 24,-21 - 2416: 24,-20 - 2417: 24,-19 - 2418: 24,-18 - 2419: 24,-17 - 2420: 24,-16 + 1234: -12,15 + 1235: -12,16 + 1236: -12,17 + 1237: -12,18 + 1331: 10,-29 + 1332: 10,-28 + 2101: -24,-27 + 2126: -46,-16 + 2404: 24,-21 + 2405: 24,-20 + 2406: 24,-19 + 2407: 24,-18 + 2408: 24,-17 + 2409: 24,-16 + 3743: -12,-52 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN @@ -5887,40 +5983,43 @@ entities: 864: -25,-28 865: -26,-28 866: -27,-28 - 1229: -7,19 - 1230: -8,19 - 1231: -9,19 - 1232: -10,19 - 1233: -11,19 - 1234: -12,19 - 1235: -13,19 - 1251: -8,14 - 1252: -9,14 - 1253: -10,14 - 1254: -11,14 - 1338: 17,-38 - 1339: 16,-38 - 1340: 18,-38 - 1341: 19,-38 - 1342: 20,-38 - 1343: 21,-38 - 2108: -20,-1 - 2109: -21,-1 - 2110: -22,-1 - 2111: -23,-1 - 2113: -23,-28 - 2143: -41,9 - 2144: -44,9 - 2145: -43,9 - 2991: 43,12 - 2992: 44,12 - 2993: 45,12 - 3332: 11,-38 - 3333: 10,-38 - 3334: 9,-38 - 3335: -25,10 - 3336: -26,10 - 3337: -27,10 + 1227: -7,19 + 1228: -8,19 + 1229: -9,19 + 1230: -10,19 + 1231: -11,19 + 1232: -12,19 + 1233: -13,19 + 1249: -8,14 + 1250: -9,14 + 1251: -10,14 + 1252: -11,14 + 1334: 17,-38 + 1335: 16,-38 + 1336: 18,-38 + 1337: 19,-38 + 1338: 20,-38 + 1339: 21,-38 + 2097: -20,-1 + 2098: -21,-1 + 2099: -22,-1 + 2100: -23,-1 + 2102: -23,-28 + 2132: -41,9 + 2133: -44,9 + 2134: -43,9 + 2976: 43,12 + 2977: 44,12 + 2978: 45,12 + 3317: 11,-38 + 3318: 10,-38 + 3319: 9,-38 + 3320: -25,10 + 3321: -26,10 + 3322: -27,10 + 3737: -15,-53 + 3741: -13,-51 + 3742: -14,-51 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -5930,31 +6029,31 @@ entities: 837: -5,-3 838: -7,-3 839: -8,-3 - 1241: -11,19 - 1242: -10,19 - 1243: -9,19 - 1244: -8,19 - 1324: 21,-27 - 1325: 20,-27 - 1326: 19,-27 - 1327: 18,-27 - 1328: 17,-27 - 1329: 16,-27 - 1330: 14,-27 - 1331: 15,-27 - 1332: 13,-27 - 1333: 12,-27 - 1334: 11,-27 - 2104: -20,2 - 2105: -21,2 - 2106: -22,2 - 2107: -23,2 - 2135: -47,-16 - 2136: -46,-16 - 2142: -41,7 - 3338: -25,22 - 3339: -26,22 - 3340: -27,22 + 1239: -11,19 + 1240: -10,19 + 1241: -9,19 + 1242: -8,19 + 1320: 21,-27 + 1321: 20,-27 + 1322: 19,-27 + 1323: 18,-27 + 1324: 17,-27 + 1325: 16,-27 + 1326: 14,-27 + 1327: 15,-27 + 1328: 13,-27 + 1329: 12,-27 + 1330: 11,-27 + 2093: -20,2 + 2094: -21,2 + 2095: -22,2 + 2096: -23,2 + 2124: -47,-16 + 2125: -46,-16 + 2131: -41,7 + 3323: -25,22 + 3324: -26,22 + 3325: -27,22 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW @@ -5972,124 +6071,125 @@ entities: 818: -23,21 834: -6,-5 851: -42,8 - 1246: -7,18 - 1247: -7,17 - 1248: -7,16 - 1249: -7,15 + 1244: -7,18 + 1245: -7,17 + 1246: -7,16 + 1247: -7,15 + 3744: -15,-52 - node: cleanable: True color: '#474F52FF' id: amyjon decals: - 2792: -59.733913,26.110247 + 2777: -59.733913,26.110247 - node: cleanable: True color: '#FFFFFFFF' id: b decals: - 2859: -64,51 + 2844: -64,51 - node: cleanable: True color: '#B02E26FF' id: beepsky decals: - 2603: -51.97618,-34.20235 + 2588: -51.97618,-34.20235 - node: cleanable: True color: '#FFFFFFFF' id: body decals: - 2604: -45.397133,-31.934364 + 2589: -45.397133,-31.934364 - node: cleanable: True color: '#1D1D21FF' id: clawprint decals: - 2568: 51.849873,-10.273688 - 2569: 52.068623,-9.992438 - 2570: 51.849873,-9.726813 - 2571: 52.084248,-9.383063 - 2572: 51.849873,-9.070563 + 2556: 51.849873,-10.273688 + 2557: 52.068623,-9.992438 + 2558: 51.849873,-9.726813 + 2559: 52.084248,-9.383063 + 2560: 51.849873,-9.070563 - node: color: '#DE3A3A96' id: clown decals: - 1735: -9,-13 + 1724: -9,-13 - node: cleanable: True color: '#F38BAAFF' id: clown decals: - 2794: 29.974606,-11.088503 + 2779: 29.974606,-11.088503 - node: cleanable: True color: '#79150096' id: electricdanger decals: - 2716: -10.991777,-32.08159 + 2701: -10.991777,-32.08159 - node: cleanable: True color: '#79150096' id: end decals: - 1753: -60,-9 + 1742: -60,-9 - node: cleanable: True color: '#B02E26FF' id: end decals: - 2497: 32.02958,-5.0098457 + 2485: 32.02958,-5.0098457 - node: cleanable: True color: '#A4610696' id: engie decals: - 1752: 32,-54 + 1741: 32,-54 - node: cleanable: True color: '#F38BAAFF' id: evac decals: - 2567: 36.93115,20.930944 + 2555: 36.93115,20.930944 - node: color: '#A46106FF' id: food decals: - 3674: 26,-41 + 3657: 26,-41 - node: color: '#D4D4D428' id: footprint decals: - 3315: 39.8631,-46.230442 - 3316: 40.128723,-45.902317 - 3317: 39.8631,-45.636692 - 3318: 40.159973,-45.371067 - 3319: 39.909973,-44.996067 - 3320: 40.191223,-44.621067 + 3300: 39.8631,-46.230442 + 3301: 40.128723,-45.902317 + 3302: 39.8631,-45.636692 + 3303: 40.159973,-45.371067 + 3304: 39.909973,-44.996067 + 3305: 40.191223,-44.621067 - node: cleanable: True color: '#FFFFFFFF' id: guy decals: - 2793: -67.988,9.536162 - 3004: 35,-29 + 2778: -67.988,9.536162 + 2989: 35,-29 - node: cleanable: True color: '#DE3A3AFF' id: largebrush decals: - 2858: -64,51 + 2843: -64,51 - node: color: '#D4D4D428' id: matt decals: - 1743: -30,-36 + 1732: -30,-36 - node: cleanable: True color: '#FED83DFF' id: shop decals: - 2791: -66.02228,7.9843655 + 2776: -66.02228,7.9843655 - node: cleanable: True color: '#DE3A3A18' @@ -6101,7 +6201,7 @@ entities: color: '#B02E26FF' id: stickman decals: - 2797: 9.979055,-45.00161 + 2782: 9.979055,-45.00161 type: DecalGrid - version: 2 data: @@ -7269,9 +7369,11 @@ entities: 1,-14: 0: 65535 -4,-13: - 0: 65535 + 0: 65503 + 2: 32 -3,-13: - 0: 65535 + 3: 1 + 0: 65534 -2,-13: 0: 65535 -7,-14: @@ -7316,7 +7418,7 @@ entities: 0: 65535 -8,11: 0: 64719 - 2: 816 + 4: 816 -7,8: 0: 65535 -7,9: @@ -7349,15 +7451,15 @@ entities: 0: 65535 -12,10: 0: 62451 - 2: 3072 - 3: 12 + 4: 3072 + 5: 12 -11,10: - 2: 256 + 4: 256 0: 65278 - 3: 1 + 5: 1 -11,11: 0: 52478 - 2: 1 + 4: 1 -10,10: 0: 65535 -10,8: @@ -7374,7 +7476,7 @@ entities: 0: 65535 -9,11: 0: 63359 - 2: 2176 + 4: 2176 -8,12: 0: 48063 -7,12: @@ -7576,7 +7678,7 @@ entities: -1,11: 0: 65535 -5,12: - 2: 30515 + 4: 30515 0: 35020 -5,13: 0: 65535 @@ -7594,7 +7696,7 @@ entities: 0: 65535 -4,12: 0: 17 - 2: 65518 + 4: 65518 -4,13: 0: 65535 -4,14: @@ -7602,7 +7704,7 @@ entities: -4,15: 0: 61951 -3,12: - 2: 13107 + 4: 13107 0: 52428 -3,13: 0: 65535 @@ -7634,13 +7736,13 @@ entities: 0: 65535 -7,14: 0: 8191 - 2: 57344 + 4: 57344 -7,15: - 2: 238 + 4: 238 0: 65297 -6,12: 0: 4369 - 2: 61166 + 4: 61166 -6,13: 0: 65535 -6,14: @@ -7952,7 +8054,7 @@ entities: 17,-8: 0: 29457 17,-7: - 3: 1 + 5: 1 0: 4990 17,-6: 0: 4593 @@ -8080,14 +8182,14 @@ entities: 0: 35771 -12,8: 0: 62451 - 4: 12 - 5: 3072 + 6: 12 + 7: 3072 -12,9: 0: 62451 - 2: 3084 + 4: 3084 -12,11: 0: 8947 - 2: 12 + 4: 12 -12,12: 0: 8751 -12,13: @@ -8281,11 +8383,11 @@ entities: -13,7: 0: 39327 -11,8: - 4: 1 + 6: 1 0: 65278 - 5: 256 + 7: 256 -11,9: - 2: 257 + 4: 257 0: 65278 1,12: 0: 63897 @@ -8307,8 +8409,8 @@ entities: 0: 65497 -13,12: 0: 53199 - 5: 48 - 4: 12288 + 7: 48 + 6: 12288 -13,13: 0: 61727 -18,4: @@ -8801,8 +8903,8 @@ entities: 0: 255 -14,12: 0: 32639 - 5: 128 - 4: 32768 + 7: 128 + 6: 32768 -14,13: 0: 31 -17,12: @@ -8848,6 +8950,36 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14996 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.806608 + - 82.03439 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -8939,16 +9071,16 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAEaAAACGgAAAxoAAAMaAAADGgAAAWgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAhoAAAMaAAACGgAAARoAAAJoAAAAGgAAAhoAAANoAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADaAAAABoAAABoAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAEWAAACFgAAAxYAAAMWAAADFgAAAWQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAhYAAAMWAAACFgAAARYAAAJkAAAAFgAAAhYAAANkAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADZAAAABYAAABkAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAGgAAAxoAAANlAAAAZQAAAGgAAAAaAAACaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADRwAAAEcAAABoAAAAAAAAABoAAANoAAAAaAAAAGgAAABoAAAAGgAAAxoAAAM/AAAAPwAAAj8AAAAaAAACGgAAA0cAAABHAAAAaAAAAAAAAABoAAAAaAAAABoAAAEaAAAAGgAAAhoAAANoAAAAaAAAAGgAAABoAAAAaAAAABoAAAFHAAAARwAAAGgAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAFgAAAxYAAANhAAAAYQAAAGQAAAAWAAACZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADQwAAAEMAAABkAAAAAAAAABYAAANkAAAAZAAAAGQAAABkAAAAFgAAAxYAAAM7AAAAOwAAAjsAAAAWAAACFgAAA0MAAABDAAAAZAAAAAAAAABkAAAAZAAAABYAAAEWAAAAFgAAAhYAAANkAAAAZAAAAGQAAABkAAAAZAAAABYAAAFDAAAAQwAAAGQAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAA== -1,0: ind: -1,0 - tiles: AAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAA== type: MapGrid - type: Broadphase - bodyStatus: InAir @@ -10509,6 +10641,16 @@ entities: - pos: 18.5,12.5 parent: 60 type: Transform + - uid: 14521 + components: + - name: Dorm Room 6 + type: MetaData + - pos: -56.5,20.5 + parent: 60 + type: Transform + - links: + - 2511 + type: DeviceLinkSink - uid: 17448 components: - name: Dorm Room 5 @@ -10516,6 +10658,9 @@ entities: - pos: -56.5,24.5 parent: 60 type: Transform + - links: + - 21611 + type: DeviceLinkSink - uid: 17459 components: - name: Dorm Room 3 @@ -10523,6 +10668,9 @@ entities: - pos: -44.5,24.5 parent: 60 type: Transform + - links: + - 20425 + type: DeviceLinkSink - uid: 17460 components: - name: Dorm Room 2 @@ -10530,6 +10678,9 @@ entities: - pos: -35.5,22.5 parent: 60 type: Transform + - links: + - 20979 + type: DeviceLinkSink - uid: 17461 components: - name: Dorm Room 1 @@ -10537,6 +10688,9 @@ entities: - pos: -31.5,22.5 parent: 60 type: Transform + - links: + - 21026 + type: DeviceLinkSink - uid: 17600 components: - name: Dorm Room 4 @@ -10544,6 +10698,9 @@ entities: - pos: -44.5,20.5 parent: 60 type: Transform + - links: + - 8396 + type: DeviceLinkSink - uid: 19905 components: - name: bungle zone @@ -11655,11 +11812,6 @@ entities: - pos: -12.5,-24.5 parent: 60 type: Transform - - uid: 4745 - components: - - pos: -14.5,-52.5 - parent: 60 - type: Transform - uid: 5001 components: - pos: -0.5,-74.5 @@ -12603,13 +12755,6 @@ entities: type: Transform - proto: AirlockScienceGlassLocked entities: - - uid: 5505 - components: - - name: Robotics - type: MetaData - - pos: -38.5,10.5 - parent: 60 - type: Transform - uid: 5771 components: - pos: -54.5,5.5 @@ -12669,6 +12814,13 @@ entities: type: Transform - proto: AirlockScienceLocked entities: + - uid: 95 + components: + - name: Robotics + type: MetaData + - pos: -38.5,10.5 + parent: 60 + type: Transform - uid: 5584 components: - pos: -43.5,-0.5 @@ -15072,7 +15224,7 @@ entities: parent: 60 type: Transform - links: - - 9597 + - 14622 type: DeviceLinkSink - uid: 14910 components: @@ -15171,14 +15323,6 @@ entities: - links: - 15424 type: DeviceLinkSink - - uid: 21026 - components: - - pos: -52.5,17.5 - parent: 60 - type: Transform - - links: - - 9647 - type: DeviceLinkSink - proto: BlastDoorBridgeOpen entities: - uid: 21763 @@ -15437,11 +15581,6 @@ entities: - pos: -30.5,21.5 parent: 60 type: Transform - - uid: 17808 - components: - - pos: -32.5,21.5 - parent: 60 - type: Transform - uid: 18544 components: - pos: -4.5,-2.5 @@ -31260,8 +31399,6 @@ entities: - pos: 35.5,5.5 parent: 60 type: Transform - - enabled: True - type: AmbientSound - uid: 20055 components: - pos: 34.5,5.5 @@ -42867,8 +43004,6 @@ entities: - pos: 35.5,5.5 parent: 60 type: Transform - - enabled: True - type: AmbientSound - uid: 19752 components: - pos: 36.5,5.5 @@ -44717,6 +44852,13 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 21741 + components: + - pos: 0.5,34.5 + parent: 60 + type: Transform + - enabled: True + type: AmbientSound - uid: 22475 components: - pos: -120.5,18.5 @@ -56174,6 +56316,11 @@ entities: - pos: -4.5,35.5 parent: 60 type: Transform + - uid: 16427 + components: + - pos: -5.5,35.5 + parent: 60 + type: Transform - uid: 16450 components: - pos: -5.5,36.5 @@ -60796,29 +60943,6 @@ entities: occludes: True ent: null type: ContainerContainer - - uid: 8404 - components: - - pos: -11.26664,-51.441635 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.877957 - - 7.0646954 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 11484 components: - pos: -2.5,-31.5 @@ -61249,6 +61373,11 @@ entities: - 0 - 0 type: EntityStorage + - uid: 13592 + components: + - pos: -3.5,36.5 + parent: 60 + type: Transform - uid: 17783 components: - pos: -41.5,19.5 @@ -63673,9 +63802,12 @@ entities: type: Transform - proto: ClothingOuterApronChef entities: - - uid: 20425 + - uid: 2513 components: - - pos: -11.417416,-50.455223 + - desc: An apron-jacket used by Mr.Chang + name: Mr.Chang Official Apron + type: MetaData + - pos: -12.442651,-50.453358 parent: 60 type: Transform - proto: ClothingOuterArmorBasic @@ -63787,9 +63919,9 @@ entities: type: Transform - proto: ClothingOuterGhostSheet entities: - - uid: 5782 + - uid: 2682 components: - - pos: -32.489902,20.522858 + - pos: -32.485622,21.433376 parent: 60 type: Transform - proto: ClothingOuterHardsuitAncientEVA @@ -64274,6 +64406,11 @@ entities: pos: 22.5,-40.5 parent: 60 type: Transform + - uid: 3341 + components: + - pos: -32.5,21.5 + parent: 60 + type: Transform - uid: 4114 components: - pos: 35.5,-12.5 @@ -64419,11 +64556,6 @@ entities: pos: -47.5,20.5 parent: 60 type: Transform - - uid: 17812 - components: - - pos: -32.5,20.5 - parent: 60 - type: Transform - uid: 18477 components: - pos: -3.5,-5.5 @@ -64978,22 +65110,22 @@ entities: type: Transform - uid: 16544 components: - - pos: -3.5,31.5 + - pos: -4.5,31.5 parent: 60 type: Transform - uid: 16545 components: - - pos: -3.5,32.5 + - pos: -4.5,32.5 parent: 60 type: Transform - uid: 16546 components: - - pos: -4.5,32.5 + - pos: -3.5,32.5 parent: 60 type: Transform - uid: 16547 components: - - pos: -4.5,31.5 + - pos: -3.5,31.5 parent: 60 type: Transform - proto: ContrabassInstrument @@ -65372,6 +65504,11 @@ entities: type: Transform - proto: CrateEngineeringAMEJar entities: + - uid: 7082 + components: + - pos: -3.5,33.5 + parent: 60 + type: Transform - uid: 16061 components: - pos: 6.5,23.5 @@ -65767,35 +65904,6 @@ entities: - pos: 8.5,17.5 parent: 60 type: Transform -- proto: CrateEngineeringSingularityCollector - entities: - - uid: 16552 - components: - - pos: -5.5,32.5 - parent: 60 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - proto: CrateFilledSpawner entities: - uid: 4320 @@ -65873,6 +65981,46 @@ entities: - pos: 26.5,-28.5 parent: 60 type: Transform + - uid: 17808 + components: + - pos: -14.5,-50.5 + parent: 60 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - 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 + type: ContainerContainer - proto: CrateHydroponicsSeedsMedicinal entities: - uid: 2759 @@ -66713,11 +66861,6 @@ entities: - pos: -55.5,13.5 parent: 60 type: Transform - - uid: 9393 - components: - - pos: -48.5,2.5 - parent: 60 - type: Transform - uid: 9415 components: - rot: 3.141592653589793 rad @@ -70333,6 +70476,12 @@ entities: - pos: -24.5,-24.5 parent: 60 type: Transform + - uid: 21689 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,2.5 + parent: 60 + type: Transform - uid: 21742 components: - rot: 3.141592653589793 rad @@ -70761,6 +70910,12 @@ entities: pos: -94.5,17.5 parent: 60 type: Transform + - uid: 21704 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,2.5 + parent: 60 + type: Transform - uid: 21756 components: - rot: -1.5707963267948966 rad @@ -71015,6 +71170,11 @@ entities: - pos: 30.5,9.5 parent: 60 type: Transform + - uid: 21721 + components: + - pos: -46.5,2.5 + parent: 60 + type: Transform - uid: 24165 components: - pos: -40.5,14.5 @@ -71033,6 +71193,11 @@ entities: pos: 23.5,-36.5 parent: 60 type: Transform + - uid: 3689 + components: + - pos: -48.5,2.5 + parent: 60 + type: Transform - proto: DogBed entities: - uid: 2036 @@ -71342,9 +71507,19 @@ entities: type: Transform - proto: DrinkSakeGlass entities: - - uid: 3341 + - uid: 4281 + components: + - pos: -13.1094885,-50.43419 + parent: 60 + type: Transform + - uid: 4282 + components: + - pos: -13.1094885,-50.37169 + parent: 60 + type: Transform + - uid: 4545 components: - - pos: -12.321286,-52.441586 + - pos: -13.1094885,-50.49669 parent: 60 type: Transform - proto: DrinkShaker @@ -75034,28 +75209,6 @@ entities: - pos: 8.554562,-71.45013 parent: 60 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - uid: 12600 components: - pos: -59.580887,2.6484475 @@ -75111,28 +75264,6 @@ entities: - pos: -45.607418,-4.0834746 parent: 60 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - uid: 19193 components: - pos: 24.478937,19.47598 @@ -75148,28 +75279,6 @@ entities: - pos: 8.429562,-71.29388 parent: 60 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - proto: FloorDrain entities: - uid: 2376 @@ -76132,6 +76241,26 @@ entities: - pos: 21.70029,-26.388956 parent: 60 type: Transform +- proto: FoodFrozenSandwich + entities: + - uid: 19186 + components: + - flags: InContainer + type: MetaData + - parent: 17808 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 19187 + components: + - flags: InContainer + type: MetaData + - parent: 17808 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage - proto: FoodFrozenSnowconeMime entities: - uid: 24118 @@ -76146,6 +76275,17 @@ entities: - pos: -5.335003,-44.25506 parent: 60 type: Transform +- proto: FoodMealSashimi + entities: + - uid: 19185 + components: + - flags: InContainer + type: MetaData + - parent: 17808 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage - proto: FoodMeat entities: - uid: 2619 @@ -76268,18 +76408,37 @@ entities: type: Transform - proto: FoodRiceBoiled entities: - - uid: 8412 + - uid: 18641 components: - - pos: -12.823592,-50.327145 - parent: 60 + - flags: InContainer + type: MetaData + - parent: 17808 type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage - proto: FoodRiceEgg entities: - - uid: 8400 + - uid: 18725 components: - - pos: -12.198592,-50.327145 - parent: 60 + - flags: InContainer + type: MetaData + - parent: 17808 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodRicePork + entities: + - uid: 17812 + components: + - flags: InContainer + type: MetaData + - parent: 17808 type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage - proto: FoodSnackChips entities: - uid: 5612 @@ -76292,13 +76451,6 @@ entities: - pos: -43.50482,8.738578 parent: 60 type: Transform -- proto: FoodSnackCookieFortune - entities: - - uid: 8390 - components: - - pos: -13.272091,-52.419376 - parent: 60 - type: Transform - proto: FoodSnackSyndi entities: - uid: 10826 @@ -76308,11 +76460,15 @@ entities: type: Transform - proto: FoodSoupMiso entities: - - uid: 8385 + - uid: 18647 components: - - pos: -13.380473,-50.322884 - parent: 60 + - flags: InContainer + type: MetaData + - parent: 17808 type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage - proto: FoodTinBeans entities: - uid: 18823 @@ -103656,6 +103812,11 @@ entities: - pos: -62.5,-21.5 parent: 60 type: Transform + - uid: 5409 + components: + - pos: -4.5,33.5 + parent: 60 + type: Transform - uid: 23888 components: - pos: 10.5,-60.5 @@ -103666,11 +103827,6 @@ entities: - pos: 12.5,-60.5 parent: 60 type: Transform - - uid: 24186 - components: - - pos: -7.5,29.5 - parent: 60 - type: Transform - proto: GeneratorBasic15kW entities: - uid: 15553 @@ -103685,9 +103841,9 @@ entities: - pos: -12.5,-2.5 parent: 7536 type: Transform - - uid: 17787 + - uid: 16551 components: - - pos: -8.5,29.5 + - pos: -8.5,33.5 parent: 60 type: Transform - uid: 20011 @@ -103709,9 +103865,9 @@ entities: type: Transform - proto: GeneratorUranium entities: - - uid: 18679 + - uid: 4828 components: - - pos: -9.5,29.5 + - pos: -7.5,33.5 parent: 60 type: Transform - proto: GeneratorWallmountAPU @@ -108306,11 +108462,6 @@ entities: - pos: -4.5,37.5 parent: 60 type: Transform - - uid: 16426 - components: - - pos: -7.5,34.5 - parent: 60 - type: Transform - uid: 16431 components: - pos: -7.5,36.5 @@ -108331,11 +108482,6 @@ entities: - pos: 2.5,37.5 parent: 60 type: Transform - - uid: 16527 - components: - - pos: -2.5,34.5 - parent: 60 - type: Transform - uid: 16530 components: - pos: -2.5,36.5 @@ -109911,11 +110057,6 @@ entities: - pos: 60.5,-42.5 parent: 60 type: Transform - - uid: 21420 - components: - - pos: -9.5,34.5 - parent: 60 - type: Transform - uid: 21421 components: - pos: -9.5,35.5 @@ -112159,31 +112300,16 @@ entities: - pos: -59.5,-24.5 parent: 60 type: Transform - - uid: 95 - components: - - pos: 35.5,-31.5 - parent: 60 - type: Transform - uid: 286 components: - pos: -62.5,-22.5 parent: 60 type: Transform - - uid: 2511 - components: - - pos: 28.5,-29.5 - parent: 60 - type: Transform - uid: 2512 components: - pos: 34.5,-32.5 parent: 60 type: Transform - - uid: 2513 - components: - - pos: 28.5,-28.5 - parent: 60 - type: Transform - uid: 2514 components: - pos: 31.5,-29.5 @@ -112209,11 +112335,6 @@ entities: - pos: 32.5,-29.5 parent: 60 type: Transform - - uid: 2682 - components: - - pos: 35.5,-28.5 - parent: 60 - type: Transform - uid: 3035 components: - pos: -57.5,-24.5 @@ -112224,6 +112345,12 @@ entities: - pos: -60.5,-24.5 parent: 60 type: Transform + - uid: 4745 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-31.5 + parent: 60 + type: Transform - uid: 5379 components: - pos: 11.5,2.5 @@ -112239,6 +112366,24 @@ entities: - pos: 12.5,2.5 parent: 60 type: Transform + - uid: 5504 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-28.5 + parent: 60 + type: Transform + - uid: 5505 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-32.5 + parent: 60 + type: Transform + - uid: 5782 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-29.5 + parent: 60 + type: Transform - uid: 6814 components: - pos: 29.5,-30.5 @@ -112246,12 +112391,14 @@ entities: type: Transform - uid: 6815 components: - - pos: 28.5,-30.5 + - rot: 3.141592653589793 rad + pos: 35.5,-30.5 parent: 60 type: Transform - uid: 6816 components: - - pos: 34.5,-28.5 + - rot: 3.141592653589793 rad + pos: 34.5,-28.5 parent: 60 type: Transform - uid: 6990 @@ -112269,6 +112416,12 @@ entities: - pos: 31.5,-31.5 parent: 60 type: Transform + - uid: 7088 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-28.5 + parent: 60 + type: Transform - uid: 7157 components: - pos: 32.5,-31.5 @@ -112281,12 +112434,8 @@ entities: type: Transform - uid: 8040 components: - - pos: 35.5,-32.5 - parent: 60 - type: Transform - - uid: 8041 - components: - - pos: 35.5,-30.5 + - rot: 3.141592653589793 rad + pos: 28.5,-30.5 parent: 60 type: Transform - uid: 12910 @@ -112698,6 +112847,11 @@ entities: - pos: 6.5,21.5 parent: 60 type: Transform + - uid: 21702 + components: + - pos: -11.5,-50.5 + parent: 60 + type: Transform - proto: KitchenReagentGrinder entities: - uid: 2075 @@ -112739,28 +112893,6 @@ entities: - pos: -11.4531975,-27.495203 parent: 60 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - uid: 2042 components: - pos: -22.39201,0.9298079 @@ -112771,82 +112903,16 @@ entities: - pos: 34.77564,-13.074253 parent: 60 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - uid: 5326 components: - pos: -24.428305,-28.144638 parent: 60 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - uid: 5611 components: - pos: -43.443226,9.814736 parent: 60 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - uid: 6609 components: - pos: 13.404068,20.941233 @@ -112874,55 +112940,11 @@ entities: - pos: -53.539146,19.787207 parent: 60 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - uid: 18528 components: - pos: -4.422296,-6.0514507 parent: 60 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - uid: 18888 components: - rot: 1.5707963267948966 rad @@ -112969,82 +112991,16 @@ entities: - pos: -46.455166,-17.122845 parent: 60 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - uid: 4235 components: - pos: -41.508133,-17.091595 parent: 60 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - uid: 6446 components: - pos: 16.535465,-49.13737 parent: 60 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - uid: 7855 components: - pos: 47.535595,-44.54304 @@ -113055,163 +113011,31 @@ entities: - pos: 43.509346,13.968993 parent: 60 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - uid: 14128 components: - pos: -8.397732,20.931147 parent: 60 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - uid: 14437 components: - pos: -10.617271,13.996219 parent: 60 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - uid: 17683 components: - pos: -47.45724,23.765757 parent: 60 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - uid: 17821 components: - pos: -36.53212,19.792776 parent: 60 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - uid: 18475 components: - pos: -8.643374,-5.091722 parent: 60 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - uid: 23464 components: - pos: -64.53201,45.976482 @@ -114170,6 +113994,11 @@ entities: - 0 - 0 type: EntityStorage + - uid: 16539 + components: + - pos: -43.5,-10.5 + parent: 60 + type: Transform - proto: LockerSecurityFilled entities: - uid: 191 @@ -116117,6 +115946,16 @@ entities: - pos: -8.358206,-5.332347 parent: 60 type: Transform +- proto: PaperDoor + entities: + - uid: 52 + components: + - desc: A door, where will it lead? Foolish question. Mr Changs. + name: Mr.Changs + type: MetaData + - pos: -14.5,-52.5 + parent: 60 + type: Transform - proto: ParchisBoard entities: - uid: 17892 @@ -117380,6 +117219,11 @@ entities: - pos: -50.5,-7.5 parent: 60 type: Transform + - uid: 16552 + components: + - pos: -40.5,-3.5 + parent: 60 + type: Transform - uid: 21183 components: - pos: -60.5,3.5 @@ -118477,14 +118321,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 2508 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-30.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 2510 components: - rot: -1.5707963267948966 rad @@ -118631,20 +118467,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 4281 - components: - - pos: -45.5,-15.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4282 - components: - - pos: -41.5,-15.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 4283 components: - rot: 3.141592653589793 rad @@ -118999,6 +118821,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 8041 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-31.5 + parent: 60 + type: Transform + - enabled: False + type: AmbientSound - uid: 8169 components: - pos: -4.5,-44.5 @@ -119021,6 +118851,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 8390 + components: + - pos: -40.5,-15.5 + parent: 60 + type: Transform + - enabled: False + type: AmbientSound + - uid: 8400 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,14.5 + parent: 60 + type: Transform + - enabled: False + type: AmbientSound - uid: 8401 components: - rot: -1.5707963267948966 rad @@ -119029,6 +118874,38 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 8404 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,19.5 + parent: 60 + type: Transform + - enabled: False + type: AmbientSound + - uid: 8412 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,19.5 + parent: 60 + type: Transform + - enabled: False + type: AmbientSound + - uid: 9163 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,14.5 + parent: 60 + type: Transform + - enabled: False + type: AmbientSound + - uid: 9165 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-38.5 + parent: 60 + type: Transform + - enabled: False + type: AmbientSound - uid: 9223 components: - rot: 1.5707963267948966 rad @@ -119464,46 +119341,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 14547 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,16.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14548 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,19.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14549 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,13.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14550 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,16.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14551 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,19.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 14734 components: - pos: -44.5,32.5 @@ -120198,6 +120035,13 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 21703 + components: + - pos: -46.5,-15.5 + parent: 60 + type: Transform + - enabled: False + type: AmbientSound - uid: 23116 components: - rot: 1.5707963267948966 rad @@ -120867,14 +120711,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 4545 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-42.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 4554 components: - pos: -33.5,-12.5 @@ -120920,11 +120756,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 5409 - components: - - pos: -8.5,36.5 - parent: 60 - type: Transform - uid: 5803 components: - rot: 3.141592653589793 rad @@ -121053,6 +120884,23 @@ entities: pos: 12.5,-17.5 parent: 60 type: Transform + - uid: 9393 + components: + - pos: -6.5,36.5 + parent: 60 + type: Transform + - uid: 9597 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,21.5 + parent: 60 + type: Transform + - uid: 9647 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,21.5 + parent: 60 + type: Transform - uid: 10587 components: - rot: -1.5707963267948966 rad @@ -121223,20 +121071,11 @@ entities: pos: -20.5,15.5 parent: 60 type: Transform - - uid: 14521 - components: - - pos: -18.5,21.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14622 + - uid: 15319 components: - - pos: -20.5,21.5 + - pos: -5.5,33.5 parent: 60 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 15361 components: - rot: -1.5707963267948966 rad @@ -121278,20 +121117,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 16539 - components: - - pos: -3.5,36.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 16550 - components: - - pos: -6.5,32.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 16679 components: - rot: 3.141592653589793 rad @@ -123451,13 +123276,6 @@ entities: pos: 9.468014,17.423876 parent: 60 type: Transform -- proto: ReagentContainerRice - entities: - - uid: 20979 - components: - - pos: -11.292416,-50.236473 - parent: 60 - type: Transform - proto: Recycler entities: - uid: 4073 @@ -123608,11 +123426,6 @@ entities: - pos: -56.5,2.5 parent: 60 type: Transform - - uid: 13592 - components: - - pos: -7.5,34.5 - parent: 60 - type: Transform - uid: 13737 components: - pos: -7.5,35.5 @@ -123734,11 +123547,6 @@ entities: - pos: -10.5,47.5 parent: 60 type: Transform - - uid: 15319 - components: - - pos: -9.5,34.5 - parent: 60 - type: Transform - uid: 15320 components: - pos: -9.5,35.5 @@ -127157,11 +126965,6 @@ entities: - pos: 2.5,37.5 parent: 60 type: Transform - - uid: 16448 - components: - - pos: -2.5,34.5 - parent: 60 - type: Transform - uid: 17259 components: - pos: 12.5,-53.5 @@ -127237,6 +127040,11 @@ entities: - pos: -52.5,25.5 parent: 60 type: Transform + - uid: 17787 + components: + - pos: -46.5,-4.5 + parent: 60 + type: Transform - uid: 17939 components: - pos: 1.5,4.5 @@ -127352,6 +127160,11 @@ entities: - pos: -9.5,-5.5 parent: 60 type: Transform + - uid: 18679 + components: + - pos: -46.5,-7.5 + parent: 60 + type: Transform - uid: 18710 components: - pos: 39.5,-15.5 @@ -127412,6 +127225,11 @@ entities: - pos: 25.5,12.5 parent: 60 type: Transform + - uid: 19157 + components: + - pos: -46.5,-6.5 + parent: 60 + type: Transform - uid: 19698 components: - pos: 12.5,-55.5 @@ -128145,13 +127963,6 @@ entities: - pos: -120.32988,15.381494 parent: 60 type: Transform -- proto: SheetSteel1 - entities: - - uid: 17449 - components: - - pos: -56.463734,20.387777 - parent: 60 - type: Transform - proto: SheetUranium entities: - uid: 21578 @@ -128251,6 +128062,14 @@ entities: - links: - 4513 type: DeviceLinkSink + - uid: 17449 + components: + - pos: -52.5,17.5 + parent: 60 + type: Transform + - links: + - 2508 + type: DeviceLinkSink - proto: ShuttersNormalOpen entities: - uid: 147 @@ -128471,13 +128290,8 @@ entities: - pos: -11.5,-52.5 parent: 60 type: Transform - - uid: 5504 - components: - - pos: -36.5,10.5 - parent: 60 - type: Transform - links: - - 9165 + - 14549 type: DeviceLinkSink - uid: 5560 components: @@ -128486,7 +128300,7 @@ entities: parent: 60 type: Transform - links: - - 7088 + - 14550 type: DeviceLinkSink - uid: 6203 components: @@ -128637,7 +128451,7 @@ entities: parent: 60 type: Transform - links: - - 7088 + - 14550 type: DeviceLinkSink - uid: 7132 components: @@ -128646,7 +128460,7 @@ entities: parent: 60 type: Transform - links: - - 7088 + - 14550 type: DeviceLinkSink - uid: 7664 components: @@ -128670,18 +128484,16 @@ entities: - pos: -13.5,-52.5 parent: 60 type: Transform + - links: + - 14549 + type: DeviceLinkSink - uid: 8382 components: - pos: -12.5,-52.5 parent: 60 type: Transform - - uid: 9163 - components: - - pos: -37.5,10.5 - parent: 60 - type: Transform - links: - - 9165 + - 14549 type: DeviceLinkSink - uid: 12303 components: @@ -128709,13 +128521,21 @@ entities: - links: - 2287 type: DeviceLinkSink + - uid: 14548 + components: + - pos: -36.5,10.5 + parent: 60 + type: Transform + - links: + - 14551 + type: DeviceLinkSink - uid: 15517 components: - pos: -10.5,33.5 parent: 60 type: Transform - links: - - 15556 + - 16426 type: DeviceLinkSink - uid: 15518 components: @@ -128723,7 +128543,7 @@ entities: parent: 60 type: Transform - links: - - 15556 + - 16426 type: DeviceLinkSink - uid: 15519 components: @@ -128731,7 +128551,7 @@ entities: parent: 60 type: Transform - links: - - 15556 + - 16426 type: DeviceLinkSink - uid: 15520 components: @@ -128739,7 +128559,7 @@ entities: parent: 60 type: Transform - links: - - 15556 + - 16426 type: DeviceLinkSink - uid: 15521 components: @@ -128747,7 +128567,7 @@ entities: parent: 60 type: Transform - links: - - 15556 + - 16426 type: DeviceLinkSink - uid: 15522 components: @@ -128755,7 +128575,7 @@ entities: parent: 60 type: Transform - links: - - 15556 + - 16426 type: DeviceLinkSink - uid: 15523 components: @@ -128763,7 +128583,7 @@ entities: parent: 60 type: Transform - links: - - 15556 + - 16426 type: DeviceLinkSink - uid: 16129 components: @@ -128925,7 +128745,7 @@ entities: parent: 60 type: Transform - links: - - 15556 + - 16426 type: DeviceLinkSink - uid: 4794 components: @@ -128934,16 +128754,7 @@ entities: parent: 60 type: Transform - links: - - 15556 - type: DeviceLinkSink - - uid: 4828 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,34.5 - parent: 60 - type: Transform - - links: - - 15556 + - 16426 type: DeviceLinkSink - uid: 13248 components: @@ -128961,15 +128772,6 @@ entities: - links: - 21778 type: DeviceLinkSink - - uid: 21689 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,34.5 - parent: 60 - type: Transform - - links: - - 15556 - type: DeviceLinkSink - uid: 21690 components: - rot: 1.5707963267948966 rad @@ -128977,7 +128779,7 @@ entities: parent: 60 type: Transform - links: - - 15556 + - 16426 type: DeviceLinkSink - uid: 21698 components: @@ -128986,7 +128788,7 @@ entities: parent: 60 type: Transform - links: - - 15556 + - 16426 type: DeviceLinkSink - proto: ShuttersWindow entities: @@ -129055,6 +128857,14 @@ entities: - links: - 2313 type: DeviceLinkSink + - uid: 14547 + components: + - pos: -37.5,10.5 + parent: 60 + type: Transform + - links: + - 14551 + type: DeviceLinkSink - proto: ShuttleWindow entities: - uid: 21608 @@ -129186,11 +128996,6 @@ entities: type: Transform - proto: SignalButton entities: - - uid: 52 - components: - - pos: -15.5,-51.5 - parent: 60 - type: Transform - uid: 2313 components: - pos: 24.5,-29.5 @@ -129304,19 +129109,6 @@ entities: 21334: - Pressed: Toggle type: DeviceLinkSource - - uid: 7088 - components: - - pos: -40.5,-8.5 - parent: 60 - type: Transform - - linkedPorts: - 7131: - - Pressed: Toggle - 5560: - - Pressed: Toggle - 7132: - - Pressed: Toggle - type: DeviceLinkSource - uid: 7746 components: - name: outer blast door @@ -129341,40 +129133,6 @@ entities: 7032: - Pressed: Toggle type: DeviceLinkSource - - uid: 9165 - components: - - pos: -39.5,10.5 - parent: 60 - type: Transform - - linkedPorts: - 9163: - - Pressed: Toggle - 5504: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 9597 - components: - - name: Space Shutter - type: MetaData - - pos: -48.5,15.5 - parent: 60 - type: Transform - - linkedPorts: - 13901: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 9647 - components: - - name: Maint Blast Doors - type: MetaData - - rot: 1.5707963267948966 rad - pos: -52.5,14.5 - parent: 60 - type: Transform - - linkedPorts: - 21026: - - Pressed: Toggle - type: DeviceLinkSource - uid: 11511 components: - pos: -52.5,28.5 @@ -129496,42 +129254,6 @@ entities: 16973: - Pressed: Toggle type: DeviceLinkSource - - uid: 15556 - components: - - name: Shutters - type: MetaData - - rot: 3.141592653589793 rad - pos: -13.5,33.5 - parent: 60 - type: Transform - - linkedPorts: - 15517: - - Pressed: Toggle - 15518: - - Pressed: Toggle - 15519: - - Pressed: Toggle - 15520: - - Pressed: Toggle - 15521: - - Pressed: Toggle - 15522: - - Pressed: Toggle - 15523: - - Pressed: Toggle - 21689: - - Pressed: Toggle - 21690: - - Pressed: Toggle - 21698: - - Pressed: Toggle - 4828: - - Pressed: Toggle - 4785: - - Pressed: Toggle - 4794: - - Pressed: Toggle - type: DeviceLinkSource - uid: 16543 components: - pos: -4.5,30.5 @@ -129683,6 +129405,30 @@ entities: 4045: - Pressed: Toggle type: DeviceLinkSource + - uid: 2508 + components: + - name: Maint Access to Chamber + type: MetaData + - rot: 1.5707963267948966 rad + pos: -52.5,14.5 + parent: 60 + type: Transform + - linkedPorts: + 17449: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 2511 + components: + - name: Door Lock + type: MetaData + - rot: 1.5707963267948966 rad + pos: -56.5,19.5 + parent: 60 + type: Transform + - linkedPorts: + 14521: + - Pressed: DoorBolt + type: DeviceLinkSource - uid: 4522 components: - rot: 3.141592653589793 rad @@ -129695,6 +129441,145 @@ entities: 1022: - Pressed: Toggle type: DeviceLinkSource + - uid: 8396 + components: + - name: Door Lock + type: MetaData + - rot: -1.5707963267948966 rad + pos: -44.5,19.5 + parent: 60 + type: Transform + - linkedPorts: + 17600: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 14549 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-51.5 + parent: 60 + type: Transform + - linkedPorts: + 8381: + - Pressed: Toggle + 8382: + - Pressed: Toggle + 5149: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 14550 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-8.5 + parent: 60 + type: Transform + - linkedPorts: + 7131: + - Pressed: Toggle + 5560: + - Pressed: Toggle + 7132: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 14551 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,11.5 + parent: 60 + type: Transform + - linkedPorts: + 14548: + - Pressed: Toggle + 14547: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 14622 + components: + - name: Spacing Door + type: MetaData + - pos: -48.5,15.5 + parent: 60 + type: Transform + - linkedPorts: + 13901: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 16426 + components: + - rot: 3.141592653589793 rad + pos: -13.5,33.5 + parent: 60 + type: Transform + - linkedPorts: + 15518: + - Pressed: Toggle + 15517: + - Pressed: Toggle + 21690: + - Pressed: Toggle + 21698: + - Pressed: Toggle + 15519: + - Pressed: Toggle + 15520: + - Pressed: Toggle + 15521: + - Pressed: Toggle + 15522: + - Pressed: Toggle + 15523: + - Pressed: Toggle + 4785: + - Pressed: Toggle + 4794: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 20425 + components: + - name: Door Lock + type: MetaData + - rot: -1.5707963267948966 rad + pos: -44.5,23.5 + parent: 60 + type: Transform + - linkedPorts: + 17459: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 20979 + components: + - name: Door Lock + type: MetaData + - pos: -36.5,22.5 + parent: 60 + type: Transform + - linkedPorts: + 17460: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 21026 + components: + - name: Door Lock + type: MetaData + - pos: -32.5,22.5 + parent: 60 + type: Transform + - linkedPorts: + 17461: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 21611 + components: + - name: Door Lock + type: MetaData + - rot: 1.5707963267948966 rad + pos: -56.5,23.5 + parent: 60 + type: Transform + - linkedPorts: + 17448: + - Pressed: DoorBolt + type: DeviceLinkSource - proto: SignalButtonExt2 entities: - uid: 21778 @@ -131230,9 +131115,9 @@ entities: - pos: 0.5,47.5 parent: 60 type: Transform - - uid: 16551 + - uid: 16550 components: - - pos: -7.5,32.5 + - pos: -5.5,33.5 parent: 60 type: Transform - proto: Sink @@ -131391,6 +131276,8 @@ entities: type: Transform - uid: 16173 components: + - name: Singulo SMES + type: MetaData - pos: 4.5,34.5 parent: 60 type: Transform @@ -133849,6 +133736,18 @@ entities: - pos: 10.5,-34.5 parent: 60 type: Transform +- proto: SpawnPointBorg + entities: + - uid: 19160 + components: + - pos: -33.5,13.5 + parent: 60 + type: Transform + - uid: 21420 + components: + - pos: -31.5,13.5 + parent: 60 + type: Transform - proto: SpawnPointBotanist entities: - uid: 2779 @@ -134134,24 +134033,24 @@ entities: type: Transform - proto: SpawnPointResearchAssistant entities: - - uid: 16084 + - uid: 16428 components: - - pos: -54.5,9.5 + - pos: -44.5,-6.5 parent: 60 type: Transform - - uid: 16091 + - uid: 16429 components: - - pos: -54.5,13.5 + - pos: -44.5,-8.5 parent: 60 type: Transform - - uid: 19157 + - uid: 16430 components: - - pos: -53.5,8.5 + - pos: -45.5,-8.5 parent: 60 type: Transform - - uid: 19160 + - uid: 16448 components: - - pos: -54.5,10.5 + - pos: -45.5,-6.5 parent: 60 type: Transform - proto: SpawnPointResearchDirector @@ -134267,9 +134166,9 @@ entities: type: Transform - proto: SpawnPointSeniorResearcher entities: - - uid: 8262 + - uid: 16527 components: - - pos: -55.5,8.5 + - pos: -42.5,-6.5 parent: 60 type: Transform - proto: SpawnPointServiceWorker @@ -139147,6 +139046,31 @@ entities: - pos: -19.5,-3.5 parent: 7536 type: Transform +- proto: TegCenter + entities: + - uid: 19957 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,41.5 + parent: 60 + type: Transform +- proto: TegCirculator + entities: + - uid: 19188 + components: + - pos: -15.5,41.5 + parent: 60 + type: Transform + - color: '#FF3300FF' + type: PointLight + - uid: 19189 + components: + - rot: 3.141592653589793 rad + pos: -17.5,41.5 + parent: 60 + type: Transform + - color: '#FF3300FF' + type: PointLight - proto: TelecomServer entities: - uid: 17630 @@ -139666,7 +139590,7 @@ entities: entities: - uid: 5904 components: - - pos: -32.495678,14.439516 + - pos: -32.487022,15.578259 parent: 60 type: Transform - proto: ToyMouse @@ -140659,13 +140583,6 @@ entities: - pos: 42.5,-30.5 parent: 60 type: Transform - - uid: 8396 - components: - - flags: SessionSpecific - type: MetaData - - pos: -14.5,-50.5 - parent: 60 - type: Transform - proto: VendingMachineSnack entities: - uid: 1238 @@ -146007,6 +145924,11 @@ entities: - pos: -42.5,15.5 parent: 60 type: Transform + - uid: 8262 + components: + - pos: -7.5,34.5 + parent: 60 + type: Transform - uid: 8266 components: - pos: -7.5,-21.5 @@ -146044,6 +145966,11 @@ entities: - pos: -57.5,-4.5 parent: 60 type: Transform + - uid: 8495 + components: + - pos: -2.5,34.5 + parent: 60 + type: Transform - uid: 8497 components: - pos: -62.5,-6.5 @@ -146189,6 +146116,11 @@ entities: - pos: -45.5,-11.5 parent: 60 type: Transform + - uid: 9142 + components: + - pos: -5.5,34.5 + parent: 60 + type: Transform - uid: 9143 components: - pos: -39.5,-8.5 @@ -148318,6 +148250,11 @@ entities: - pos: -9.5,32.5 parent: 60 type: Transform + - uid: 15556 + components: + - pos: -9.5,34.5 + parent: 60 + type: Transform - uid: 15584 components: - pos: -16.5,51.5 @@ -148443,6 +148380,16 @@ entities: - pos: 9.5,23.5 parent: 60 type: Transform + - uid: 16084 + components: + - pos: -6.5,34.5 + parent: 60 + type: Transform + - uid: 16091 + components: + - pos: -3.5,34.5 + parent: 60 + type: Transform - uid: 16110 components: - pos: -30.5,6.5 @@ -148488,6 +148435,11 @@ entities: - pos: -8.5,30.5 parent: 60 type: Transform + - uid: 16153 + components: + - pos: -8.5,34.5 + parent: 60 + type: Transform - uid: 16157 components: - pos: -40.5,22.5 @@ -148567,32 +148519,7 @@ entities: type: Transform - uid: 16425 components: - - rot: 3.141592653589793 rad - pos: -7.5,33.5 - parent: 60 - type: Transform - - uid: 16427 - components: - - rot: 3.141592653589793 rad - pos: -6.5,33.5 - parent: 60 - type: Transform - - uid: 16428 - components: - - rot: 3.141592653589793 rad - pos: -5.5,33.5 - parent: 60 - type: Transform - - uid: 16429 - components: - - rot: 3.141592653589793 rad - pos: -4.5,33.5 - parent: 60 - type: Transform - - uid: 16430 - components: - - rot: 3.141592653589793 rad - pos: -3.5,33.5 + - pos: -4.5,34.5 parent: 60 type: Transform - uid: 16432 @@ -155437,11 +155364,6 @@ entities: - pos: -56.5,18.5 parent: 60 type: Transform - - uid: 16153 - components: - - pos: -8.5,33.5 - parent: 60 - type: Transform - uid: 17331 components: - pos: 50.5,-4.5 @@ -156991,12 +156913,6 @@ entities: type: Transform - proto: WindoorSecureScienceLocked entities: - - uid: 3689 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-4.5 - parent: 60 - type: Transform - uid: 7057 components: - rot: -1.5707963267948966 rad @@ -157233,11 +157149,6 @@ entities: - pos: 18.5,-19.5 parent: 60 type: Transform - - uid: 7082 - components: - - pos: -46.5,-7.5 - parent: 60 - type: Transform - uid: 7719 components: - pos: -8.5,10.5 @@ -157253,11 +157164,6 @@ entities: - pos: 47.5,9.5 parent: 60 type: Transform - - uid: 8495 - components: - - pos: -46.5,-4.5 - parent: 60 - type: Transform - uid: 8734 components: - pos: -63.5,1.5 @@ -157268,11 +157174,6 @@ entities: - pos: 47.5,6.5 parent: 60 type: Transform - - uid: 9142 - components: - - pos: -46.5,-6.5 - parent: 60 - type: Transform - uid: 11789 components: - pos: -59.5,18.5 @@ -158086,6 +157987,12 @@ entities: - pos: 12.5,22.5 parent: 60 type: Transform + - uid: 8385 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-15.5 + parent: 60 + type: Transform - uid: 8565 components: - rot: -1.5707963267948966 rad diff --git a/Resources/Maps/barratry.yml b/Resources/Maps/barratry.yml index f678c6761f2..6033eaad78a 100644 --- a/Resources/Maps/barratry.yml +++ b/Resources/Maps/barratry.yml @@ -1,107534 +1,107529 @@ -meta: - format: 5 - postmapinit: false -tilemap: - 0: Space - 2: FloorArcadeBlue2 - 10: FloorAsteroidSand - 14: FloorAsteroidTile - 18: FloorBlueCircuit - 21: FloorCarpetClown - 26: FloorDark - 27: FloorDarkDiagonal - 29: FloorDarkHerringbone - 31: FloorDarkMono - 33: FloorDarkPavement - 35: FloorDarkPlastic - 37: FloorDirt - 38: FloorEighties - 41: FloorFreezer - 42: FloorGlass - 44: FloorGrass - 48: FloorGreenCircuit - 52: FloorHydro - 55: FloorLino - 57: FloorMetalDiamond - 58: FloorMime - 60: FloorPlanetDirt - 63: FloorRGlass - 64: FloorReinforced - 66: FloorRockVault - 67: FloorShowroom - 75: FloorSteel - 77: FloorSteelCheckerLight - 80: FloorSteelDirty - 81: FloorSteelHerringbone - 85: FloorSteelPavement - 87: FloorTechMaint - 91: FloorWhite - 94: FloorWhiteHerringbone - 95: FloorWhiteMini - 101: FloorWood - 103: Lattice - 104: Plating -entities: -- proto: "" - entities: - - uid: 1 - components: - - type: MetaData - - pos: 0.43985805,0.83991814 - parent: 5005 - type: Transform - - chunks: - -1,-1: - ind: -1,-1 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAACgAAAAoAAAAKAAAACgAAAGgAAAAKAAAACgAAAAoAAAAKAAAAaAAAAA4AAABoAAAADgAAAGgAAAAOAAAAaAAAAAoAAAAKAAAACgAAAGgAAAAOAAAACgAAAAoAAAAKAAAACgAAAGgAAAAOAAAADgAAAGgAAAAOAAAADgAAAGgAAAAKAAAACgAAAAoAAAAOAAAAaAAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaAAAAA4AAAAOAAAAaAAAAA4AAABoAAAADgAAAGgAAAAOAAAADgAAAA4AAAAOAAAACgAAAAoAAAAKAAAAaAAAAA4AAABoAAAADgAAAGgAAAAOAAAAaAAAAA4AAAAOAAAADgAAAAoAAAAKAAAADgAAAA4AAAAOAAAADgAAAGgAAABoAAAADgAAAA4AAAAOAAAAaAAAAGgAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAOAAAAaAAAAA4AAAAOAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAA4AAAAOAAAAaAAAAFcAAABoAAAAHQAAAh0AAAMdAAABaAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaAAAAAoAAABXAAAAaAAAAB0AAAMdAAABHQAAAGgAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAA4AAAAKAAAAaAAAAGgAAABoAAAAHQAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAKAAAAaAAAAAoAAAAOAAAACgAAAGUAAAFoAAAAWwAAAFsAAANbAAACWwAAAlsAAAFbAAACaAAAAEsAAAJLAAACSwAAAUsAAAAKAAAACgAAAAoAAABlAAAAaAAAAFsAAABbAAADWwAAAlsAAABbAAACWwAAA2gAAABLAAACaAAAAGgAAABLAAACSwAAAQoAAABLAAADZQAAAmgAAABbAAABWwAAAFsAAABbAAABWwAAA1sAAAFoAAAASwAAAmgAAAASAAAAEgAAABIAAABLAAABSwAAAGUAAAFlAAABSwAAA0sAAANLAAAASwAAA0sAAABLAAACSwAAA0sAAAJLAAACEgAAABIAAAASAAAASwAAA0sAAABlAAAAaAAAAEsAAAFLAAAASwAAAEsAAABLAAAASwAAA2gAAABLAAADSwAAA0sAAAFLAAADSwAAAUsAAAJLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAmgAAABoAAAASwAAABIAAABoAAAAaAAAAGUAAANoAAAAaAAAAA== - -1,0: - ind: -1,0 - tiles: aAAAAGgAAAAhAAADGgAAABoAAAFoAAAASwAAA2gAAABoAAAASwAAAxIAAABoAAAAZQAAAmUAAANlAAADaAAAAGgAAABoAAAAIQAAAioAAAEaAAABGgAAA0sAAAJLAAADSwAAA0sAAAMSAAAAaAAAAGUAAAFlAAADZQAAAmgAAABoAAAAaAAAACEAAAAaAAADGgAAAGgAAABLAAAASwAAAksAAABLAAABSwAAAGgAAABlAAADZQAAA2UAAANoAAAASwAAA2gAAABoAAAAGgAAA2gAAABoAAAAaAAAAGgAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAADSwAAAEsAAAJLAAAASwAAAUsAAAFLAAADaAAAAGgAAABoAAAASwAAAUsAAAJLAAACSwAAA0sAAANLAAACSwAAAWgAAABoAAAASwAAA0sAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAJLAAADSwAAA2gAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAADaAAAAGgAAABLAAADaAAAAEsAAAJoAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAANLAAACaAAAAEsAAAJLAAABaAAAAEsAAANoAAAASwAAAksAAAFoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAAASwAAAWgAAABLAAABaAAAAGgAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABLAAAASwAAAEsAAAJoAAAAaAAAAEsAAABLAAACaAAAAEsAAAJLAAACaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAASwAAAUsAAABoAAAAaAAAAEsAAAFLAAABaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAEsAAAJoAAAAaAAAAEsAAANLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAANLAAADaAAAAGgAAABLAAACaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAABoAAAAaAAADaAAAAFcAAABLAAABSwAAA0sAAAFoAAAAaAAAAGgAAABLAAABaAAAAGgAAABXAAAAaAAAAGgAAAAaAAABGgAAAw== - 0,-1: - ind: 0,-1 - tiles: QAAAAGgAAABoAAAACgAAAAoAAAAKAAAACgAAAEIAAABCAAAAQgAAAEIAAABCAAAAAAAAAAAAAABnAAAAZwAAAEAAAABAAAAAQAAAAGgAAAAKAAAACgAAAEIAAABCAAAAQgAAAEIAAABCAAAAQgAAAEIAAAAAAAAAZwAAAAAAAABoAAAAQAAAAEAAAABoAAAACgAAAAoAAABCAAAAQgAAAEIAAABCAAAAQgAAAEIAAABCAAAACgAAAGcAAAAAAAAAaAAAAEAAAABoAAAAaAAAAGgAAABoAAAAaAAAAEIAAABCAAAAQgAAAEIAAABCAAAACgAAAGgAAABoAAAAaAAAAA4AAABoAAAADgAAAGgAAAAOAAAADgAAAGgAAAAKAAAAQgAAAEIAAABCAAAAQgAAAGgAAABoAAAASwAAA2gAAAAOAAAADgAAAGgAAABoAAAADgAAAA4AAABoAAAACgAAAAoAAAAKAAAACgAAAAoAAABoAAAASwAAAGgAAABLAAAADgAAAGgAAAAOAAAADgAAAA4AAABoAAAAaAAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaAAAAGgAAABLAAABSwAAAQ4AAAAOAAAADgAAAGgAAAAOAAAADgAAAGgAAAAKAAAACgAAAAoAAABoAAAAaAAAAGgAAABLAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAACgAAAGgAAABoAAAACgAAAAoAAAAKAAAAaAAAAGgAAABoAAAASwAAAWgAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAKAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAAVwAAAGgAAABoAAAAaAAAAAoAAAAKAAAACgAAAAoAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAAoAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAABaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACGgAAAWgAAABoAAAAaAAAAGUAAANlAAAAZQAAA2UAAABLAAACSwAAAksAAAI3AAAANwAAADcAAAAaAAACGgAAAhoAAANoAAAAaAAAAGgAAABlAAAAZQAAA2UAAAJoAAAASwAAA0sAAANLAAABNwAAADcAAAA3AAAAaAAAABoAAAMaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAABSwAAATcAAAA3AAAANwAAAA== - 0,0: - ind: 0,0 - tiles: EgAAAEsAAAAwAAAAaAAAAGgAAABoAAAAaAAAAGUAAAJlAAACZQAAAEsAAAJLAAABaAAAADcAAAA3AAAANwAAABIAAABLAAADMAAAAGgAAABoAAAAaAAAAGgAAABlAAACZQAAAmgAAABLAAAASwAAA2gAAAA3AAAANwAAADcAAAASAAAASwAAADAAAABoAAAAaAAAAGgAAABoAAAAZQAAAGUAAABoAAAASwAAA0sAAAJoAAAANwAAADcAAAA3AAAASwAAAksAAAFLAAABaAAAAEsAAAJLAAACaAAAAGgAAABoAAAAaAAAAEsAAANLAAADaAAAADcAAAA3AAAANwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAFLAAACSwAAAWgAAABoAAAASwAAAUsAAANLAAAASwAAAksAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAksAAAFoAAAAaAAAAEsAAANLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAmgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAVwAAAFcAAABoAAAASwAAAEsAAAFoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAEsAAAFLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAAAaAAABGgAAAxoAAAMaAAACGgAAAxoAAANoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAVwAAAFcAAABoAAAAGgAAARoAAAIaAAACGgAAAhoAAAEaAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAEaAAAAGgAAABoAAAIaAAABGgAAAmgAAABoAAAAVwAAAGgAAAAaAAADGgAAAhoAAAMaAAACGgAAA2gAAABbAAABWwAAAVsAAAFbAAACWwAAAVsAAAFoAAAAaAAAAGgAAABoAAAAGgAAARoAAAIaAAAAGgAAAxoAAAFoAAAAWwAAA1sAAAFbAAABWwAAAlsAAABbAAABaAAAAGgAAABXAAAAaAAAAA== - -1,-2: - ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAAaAAAAAoAAAAKAAAAAAAAAAoAAAAKAAAAZwAAAGcAAABnAAAAZwAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaAAAAGgAAAAKAAAACgAAAAoAAAAKAAAACgAAAA== - 0,-2: - ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAACgAAAGgAAABoAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAA== - -2,-1: - ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAJgAAACYAAABoAAAAaAAAAA4AAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAJgAAAGgAAAAmAAAAaAAAAA4AAABoAAAAaAAAAGgAAAAjAAACIwAAAyMAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAmAAAAaAAAAGgAAAAOAAAADgAAAGgAAABoAAAAIwAAASMAAAEjAAACaAAAAGgAAABoAAAAaAAAAGgAAAACAAAAaAAAAAIAAABoAAAADgAAAGgAAABLAAABaAAAACMAAAAjAAADIwAAAmgAAABoAAAAaAAAAGgAAABoAAAAAgAAAAIAAABoAAAAaAAAAGgAAAAOAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAGgAAAACAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJoAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABLAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABXAAAASwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFoAAAAVwAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAABZQAAAGUAAAFoAAAAaAAAAFcAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAA2UAAAFlAAADSwAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGUAAABlAAABZQAAAEsAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAAAZQAAAWUAAAJLAAAAaAAAAGgAAABoAAAAaAAAAEMAAABDAAAAQwAAAEMAAABoAAAAVwAAAGgAAABoAAAAZQAAAGUAAAFlAAABaAAAAGgAAABoAAAAaAAAAGgAAABDAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== - -2,0: - ind: -2,0 - tiles: SwAAAmgAAABoAAAAaAAAAGgAAABoAAAAQwAAAEMAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAEsAAAFoAAAAVwAAAGgAAABoAAAAQwAAAEMAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABLAAADaAAAAGgAAABoAAAAaAAAAEMAAABoAAAAQwAAAEMAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAmgAAABoAAAAaAAAAGgAAABDAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAADSwAAA0sAAAFLAAADaAAAAEsAAAJLAAABSwAAA0sAAAJoAAAAaAAAAEsAAAJoAAAAaAAAAEsAAAJLAAAASwAAAUsAAABLAAADSwAAAEsAAABoAAAAaAAAAGgAAABLAAAASwAAAWgAAABoAAAASwAAAWgAAABoAAAASwAAAEsAAAJLAAACSwAAAksAAABLAAACSwAAAEsAAANLAAAASwAAAUsAAANoAAAASwAAAEsAAAFLAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAGgAAABoAAAASwAAA2gAAABoAAAAaAAAAGgAAAA3AAAANwAAADcAAABlAAAAZQAAAGUAAAJlAAADZQAAAWUAAAJlAAACaAAAAGgAAABoAAAAaAAAAGgAAABLAAACNwAAADcAAABoAAAAZQAAAGUAAANlAAACZQAAA2UAAAFlAAACZQAAAmgAAABoAAAAaAAAAGgAAABLAAAAaAAAADcAAAA3AAAAaAAAAGUAAABlAAAAZQAAAGUAAAFlAAAAZQAAA2UAAAJoAAAAaAAAAGgAAABoAAAASwAAAEsAAAFoAAAAaAAAAGgAAABlAAABZQAAA2UAAANlAAAAZQAAA2UAAANlAAACaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAmUAAANlAAACZQAAAWUAAABlAAACZQAAAGgAAABoAAAAVwAAAGgAAABLAAABaAAAAFcAAABXAAAAaAAAAGUAAAJlAAADZQAAAGUAAAFlAAABZQAAAWUAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAAJoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAGUAAANlAAAAZQAAAGUAAANlAAACZQAAA2gAAABoAAAAVwAAAGgAAABoAAAAaAAAAA== - 1,-1: - ind: 1,-1 - tiles: ZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGgAAABoAAAAQAAAAEAAAABAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAEAAAABAAAAAQAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAQAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAAAAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAADcAAAA3AAAAaAAAAFUAAABVAAADVQAAAWgAAABoAAAAaAAAAGgAAABlAAABZQAAA2gAAABoAAAAaAAAAAAAAAA3AAAANwAAAFUAAABVAAACVQAAAFUAAAFoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABlAAABaAAAAGgAAAAAAAAANwAAADcAAABoAAAAVQAAAVUAAABVAAACaAAAAGgAAABoAAAAaAAAAGUAAABlAAABZQAAAWgAAABoAAAAZwAAAA== - 1,0: - ind: 1,0 - tiles: NwAAADcAAABoAAAAGwAAARsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAADcAAAA3AAAAaAAAABsAAAMbAAADaAAAAGgAAABXAAAAaAAAAGgAAAAaAAACVwAAAFcAAABoAAAAaAAAAGcAAAA3AAAANwAAAGgAAAAbAAACGwAAAWgAAABoAAAAaAAAAGgAAAAaAAADGgAAAWgAAABXAAAAaAAAAGgAAABnAAAANwAAADcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAFcAAABoAAAAZwAAAGgAAABoAAAAaAAAAEsAAAFLAAACSwAAAUsAAAJLAAADaAAAAGgAAAAaAAACaAAAAGgAAABoAAAAaAAAAGcAAABLAAAASwAAAksAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAAJLAAAAaAAAAGcAAABnAAAAaAAAAGgAAABLAAADaAAAAEsAAAJLAAADSwAAAEsAAAJLAAADSwAAA2gAAABLAAAASwAAAGgAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAEsAAAFoAAAAaAAAAEsAAANoAAAAaAAAAGgAAAACAAAAAgAAAGgAAAACAAAAaAAAAGgAAABXAAAAVwAAAGgAAABLAAADSwAAA2gAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAAACAAAAAgAAAGgAAABXAAAAaAAAAGgAAABoAAAASwAAA2gAAABoAAAASwAAA2gAAABoAAAAaAAAAAIAAAACAAAAaAAAAAIAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAAASwAAAUsAAABoAAAAaAAAAGgAAABoAAAAAgAAAAIAAAACAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAA0sAAABLAAABaAAAAGgAAABoAAAAAgAAAGgAAAACAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAJLAAABSwAAA2gAAABnAAAAZwAAAAIAAABoAAAAAgAAAAIAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAANoAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAACaAAAAGcAAABnAAAAFQAAABUAAABoAAAAFQAAABUAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAAASwAAAWgAAABoAAAAaAAAAA== - 1,-2: - ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAA== - 1,1: - ind: 1,1 - tiles: FQAAAGgAAAAVAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAANLAAAASwAAAmgAAABoAAAAaAAAAGgAAAAVAAAAaAAAABUAAAAVAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAADSwAAA0sAAAJoAAAAaAAAAGgAAABoAAAAFQAAAGgAAABoAAAAFQAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAEsAAAJLAAADaAAAAGgAAABoAAAAFQAAAGgAAAAVAAAAFQAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAJLAAABSwAAAmgAAABoAAAAaAAAAGgAAAAVAAAAaAAAABUAAAAVAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAUsAAAFoAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAFQAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAUsAAANLAAACaAAAAGcAAAAAAAAAaAAAABUAAABoAAAAaAAAABUAAABoAAAAaAAAAFcAAABoAAAAaAAAABoAAAJoAAAAaAAAAGgAAABnAAAAAAAAAGgAAAAVAAAAaAAAABUAAABoAAAAaAAAAFcAAABoAAAAaAAAABoAAAIaAAAAGgAAABoAAANoAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAAAaAAACGgAAAhoAAAIaAAADaAAAAGcAAAAAAAAAaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAhoAAAMaAAACGgAAAWgAAABnAAAAAAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAAaAAACGgAAARoAAABoAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAAAaAAAAGgAAABoAAAAaAAACaAAAAGcAAAAAAAAASwAAAWgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAGgAAAhoAAAIaAAADGgAAA2gAAABnAAAAAAAAAEsAAAFoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAABLAAACaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAA2gAAABoAAAAVwAAAGgAAABoAAAAVwAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAA== - 2,0: - ind: 2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,1: - ind: 2,1 - tiles: aAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,1: - ind: 0,1 - tiles: GgAAAhoAAAIaAAACGgAAABoAAABoAAAAWwAAAFsAAAJbAAAAWwAAAlsAAANbAAABaAAAAGgAAABXAAAAaAAAABoAAAMaAAABGgAAAhoAAAEaAAACaAAAAFsAAABbAAAAWwAAAFsAAABbAAACWwAAAmgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABaAAAAGgAAABoAAAAaAAAAGgAAABbAAABWwAAAVsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAFsAAABbAAADWwAAAFsAAANbAAAAWwAAAVsAAAFbAAABWwAAAVsAAABbAAADaAAAAFcAAABoAAAAaAAAAGgAAABbAAADWwAAAVsAAANbAAABaAAAAFsAAABbAAACaAAAAFsAAAFbAAAAWwAAAmgAAABXAAAAaAAAAGgAAABoAAAAaAAAAFsAAANbAAADWwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAWwAAAmgAAABbAAADWwAAAFsAAANoAAAAWwAAA1sAAAFbAAACWwAAAVsAAAFoAAAAaAAAAGgAAABXAAAAaAAAAFsAAANbAAABWwAAAVsAAAJbAAAAaAAAAFsAAAFbAAACWwAAAFsAAAFbAAADaAAAAGgAAABoAAAAVwAAAGgAAABbAAADaAAAAFsAAAJbAAAAWwAAAFsAAABbAAADWwAAAVsAAAFbAAABWwAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAVsAAABbAAADWwAAAVsAAAFbAAABWwAAA1sAAABbAAAAWwAAAFsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAFsAAAJbAAAAWwAAA1sAAANbAAAAaAAAAFsAAABbAAABWwAAAFsAAAJbAAACaAAAAGgAAABoAAAAaAAAAGgAAABbAAAAaAAAAFsAAANbAAACWwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAACWwAAAFsAAABbAAAAWwAAAFsAAANbAAADWwAAAFsAAABbAAADWwAAA0sAAABLAAABSwAAA1sAAANbAAACWwAAAVsAAAFbAAADWwAAA1sAAAJbAAAAWwAAAVsAAAFbAAADWwAAAVsAAAJoAAAASwAAAksAAAJbAAADWwAAAFsAAANbAAADWwAAAlsAAANoAAAAWwAAAFsAAABbAAABWwAAA1sAAAFbAAACaAAAAEsAAAFLAAAAWwAAAWgAAABbAAAAWwAAAVsAAABbAAABaAAAAFsAAAFbAAAAWwAAAlsAAANbAAAAWwAAAWgAAABLAAACSwAAAw== - -1,1: - ind: -1,1 - tiles: aAAAAGgAAABLAAACSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAAAaAAACGgAAAGgAAABoAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAFcAAABoAAAAGgAAAxoAAAJoAAAAaAAAAGgAAABoAAAASwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAADWwAAAFsAAABbAAADWwAAAGgAAABoAAAASwAAA2gAAABLAAACaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAWwAAAmgAAABfAAADXwAAAlsAAANoAAAAaAAAAEsAAABoAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABfAAABXwAAAF8AAANbAAABGgAAAWgAAABLAAABSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAF8AAAFfAAADWwAAAxoAAAJoAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABfAAAAXwAAA18AAANLAAABaAAAAEsAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABfAAADaAAAAF8AAAFfAAAASwAAAmgAAABLAAABaAAAAEsAAAFoAAAAaAAAAFcAAABXAAAAaAAAAGgAAABbAAAAXwAAAV8AAAJfAAADXwAAAEsAAAJoAAAAaAAAAGgAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAV8AAANfAAACXwAAA18AAAJLAAAASwAAAmgAAABLAAACSwAAAlEAAANRAAADUQAAAVEAAAFRAAADaAAAAFsAAANbAAABWwAAAFsAAABbAAACSwAAA2gAAABLAAABSwAAAUsAAANRAAABUQAAAVEAAANRAAADUQAAAWgAAABoAAAAaAAAAGgAAABoAAAAWwAAA0sAAABoAAAASwAAAksAAAFLAAADUQAAA1EAAANRAAADUQAAAlEAAAFoAAAAWwAAAlsAAANbAAACWwAAAVsAAANoAAAAaAAAAEsAAAFLAAACSwAAAFEAAAJRAAACUQAAAFEAAAJRAAADaAAAAFsAAAFbAAADWwAAA1sAAAJbAAAASwAAAmgAAABoAAAASwAAAEsAAAJLAAADSwAAA0sAAAFLAAACSwAAAVsAAAJbAAABWwAAAFsAAANbAAACWwAAAA== - 0,2: - ind: 0,2 - tiles: WwAAAmgAAABbAAACWwAAAFsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAFsAAAFbAAABWwAAAlsAAAJbAAAAWwAAAlsAAAEqAAAAKgAAACoAAAIqAAABKgAAA1sAAAFoAAAAaAAAAGgAAABbAAAAaAAAAFsAAAJbAAABWwAAA2gAAABbAAACWwAAA1sAAAFbAAACWwAAAlsAAAFbAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAGgAAABoAAAAWwAAAl4AAABeAAAAXgAAAF4AAABeAAABWwAAAWgAAABoAAAAaAAAACEAAANoAAAAaAAAAFsAAANoAAAAaAAAAFsAAAFeAAABXgAAAl4AAABeAAADXgAAA1sAAAJoAAAAaAAAAGgAAABoAAAAIQAAAlsAAAEqAAAAWwAAA2gAAABbAAACXgAAAF4AAAFeAAACXgAAAV4AAAFbAAABaAAAAFcAAABoAAAAaAAAAGgAAABbAAABaAAAAFsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAFoAAAAaAAAACoAAABbAAADaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAAAhAAAAIQAAA1sAAABbAAAAaAAAAGgAAABoAAAAVwAAAFcAAABLAAABSwAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAADkAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAADkAAAA5AAAAOQAAADkAAABoAAAAVwAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAAA5AAAAOQAAADkAAAA5AAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGUAAAJlAAABZQAAA2UAAAFoAAAAVwAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABlAAACZQAAAmUAAAFlAAACaAAAAGgAAABXAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== - -1,2: - ind: -1,2 - tiles: SwAAAEsAAABoAAAASwAAAmgAAABLAAADSwAAAUsAAAJLAAAASwAAA2gAAABbAAAAWwAAAVsAAANbAAADWwAAAEsAAABLAAABSwAAA2gAAABoAAAASwAAAUsAAABLAAACSwAAAEsAAAJbAAABWwAAAlsAAANbAAAAWwAAAlsAAABLAAABaAAAAGgAAABoAAAAaAAAAEsAAANLAAABSwAAAEsAAAJLAAADaAAAAFsAAAFbAAAAWwAAAlsAAAFbAAABSwAAAmgAAAAsAAAALAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAALAAAACwAAAAsAAAAaAAAAFcAAABoAAAAVwAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAACEAAAJLAAADaAAAACwAAAAsAAAALAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAAAhAAABSwAAAmgAAAAsAAAALAAAACwAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAALAAAACwAAAAsAAAAaAAAABoAAAAaAAACGgAAARoAAAIaAAABaAAAAGgAAABoAAAAaAAAACEAAABLAAAAaAAAACwAAAAsAAAALAAAAGgAAAAaAAADGgAAABoAAAAaAAABGgAAA2gAAABXAAAAaAAAAGgAAABoAAAASwAAAWgAAAAsAAAALAAAACwAAABoAAAAGgAAARoAAAMaAAABGgAAABoAAABoAAAAaAAAAFcAAABoAAAAaAAAAEsAAABoAAAALAAAACwAAAAsAAAAaAAAABoAAAAaAAAAGgAAARoAAAIaAAABaAAAAGgAAABoAAAAaAAAAFcAAABLAAACaAAAACwAAAAsAAAALAAAAGgAAAAaAAADGgAAAhoAAAMaAAACGgAAA2gAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAAAsAAAALAAAACwAAABoAAAAGgAAAhoAAAIaAAAAGgAAARoAAABoAAAAVwAAAGgAAABoAAAAaAAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABaAAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAFcAAABXAAAASwAAAUsAAAFLAAABSwAAAUsAAABLAAACaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== - 1,2: - ind: 1,2 - tiles: SwAAAksAAAJXAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZQAAAGgAAABlAAAAaAAAAGUAAAFlAAACZQAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGUAAAFlAAADZQAAAmUAAAJoAAAAZQAAAWgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAZQAAACUAAAM8AAAAZQAAAGUAAAJoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZQAAAmUAAAIlAAAAJQAAAGgAAABlAAADZQAAA2gAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAZQAAADwAAABoAAAAZQAAAGUAAAFoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABlAAACZQAAAGgAAABlAAADZQAAAmgAAABlAAADaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZQAAAGgAAABlAAADaAAAAGgAAABlAAACZQAAA2gAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAVwAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAVwAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,2: - ind: -2,2 - tiles: aAAAAGgAAABLAAADaAAAAEsAAAFLAAAASwAAA1cAAABLAAAASwAAAEsAAAJoAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAASwAAAUsAAAFLAAAAaAAAAGgAAABLAAADaAAAAGgAAABLAAABSwAAAUsAAAFLAAABSwAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAA2gAAABLAAAALAAAACwAAAAsAAAAaAAAAEsAAANLAAACGgAAABoAAAJoAAAAGgAAAxoAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAFLAAAASwAAAksAAABLAAAAaAAAABoAAAIaAAACaAAAABoAAAAaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAFoAAAASwAAAmgAAAAaAAADGgAAAhoAAAIaAAACGgAAA2gAAABoAAAAaAAAAGgAAAAaAAADGgAAAxoAAAMaAAADaAAAAGgAAABLAAACGgAAAhoAAANoAAAAGgAAARoAAABoAAAAaAAAAGgAAABoAAAAGgAAARoAAAMaAAAAGgAAA2gAAABoAAAASwAAABoAAAMaAAADaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAABoAAAEaAAAAGgAAAhoAAABoAAAASwAAAWgAAAAaAAACGgAAAWgAAABoAAAAZQAAAmgAAABXAAAAaAAAAGgAAAAaAAABGgAAAhoAAAMaAAAAaAAAAEsAAANoAAAAaAAAAGgAAABoAAAAZQAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAAaAAACGgAAA2gAAABLAAABSwAAAE0AAAFoAAAAaAAAAGUAAAJlAAACaAAAAGgAAABoAAAAaAAAABoAAAMaAAACGgAAARoAAANoAAAAaAAAAEsAAAJNAAABaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAABoAAANoAAAAaAAAAEsAAAFLAAACTQAAAWgAAAApAAAAKQAAACkAAABoAAAAaAAAAGgAAABoAAAAZQAAA2UAAAJlAAAAZQAAAWgAAABLAAABSwAAAU0AAAJoAAAAKQAAACkAAAApAAAAaAAAAGgAAABoAAAAaAAAAGUAAAJlAAAAZQAAAGUAAABLAAACSwAAAEsAAAFNAAABSwAAACkAAAApAAAAKQAAAGgAAABoAAAAaAAAAGgAAABlAAACZQAAAmUAAANlAAACaAAAAGgAAABoAAAATQAAAmgAAAApAAAAKQAAACkAAABoAAAAVwAAAGgAAABoAAAAZQAAA2UAAANlAAABZQAAA2gAAABLAAABaAAAAA== - -2,1: - ind: -2,1 - tiles: aAAAAFcAAABoAAAAZQAAAWUAAAJlAAABZQAAA2UAAABlAAACZQAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGUAAAJlAAAAZQAAAGUAAABlAAADZQAAAmUAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAAAsAAAALAAAAGgAAABlAAABZQAAAWUAAABlAAABZQAAAWUAAABlAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAALAAAACwAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAACwAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAVwAAAFcAAABoAAAAVwAAAGgAAABXAAAAVwAAAGgAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADGgAAABoAAABlAAADZQAAAmgAAAAmAAAAJgAAACYAAAAmAAAAJgAAACYAAABoAAAAaAAAAFcAAABoAAAAGgAAABoAAAIaAAACZQAAAGUAAABlAAABaAAAACYAAAAmAAAAJgAAACYAAAAmAAAAaAAAAFcAAABoAAAAaAAAAEsAAANLAAADGgAAAmUAAAJlAAADZQAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABLAAABSwAAAxoAAAJlAAACZQAAAWUAAANoAAAAaAAAAEsAAAFLAAADaAAAAEsAAANoAAAAVwAAAFcAAABoAAAASwAAAksAAAMaAAABZQAAAWUAAABlAAACaAAAAGgAAABLAAABaAAAAEsAAANLAAAAaAAAAGgAAABXAAAAaAAAAEsAAAJLAAABGgAAAWUAAABlAAADaAAAAGgAAABLAAACSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABLAAADSwAAABoAAAJlAAACZQAAAmgAAABoAAAAaAAAAEsAAAFLAAABSwAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAEsAAANLAAABSwAAAUsAAANXAAAAVwAAAFcAAABXAAAASwAAAEsAAABXAAAAVwAAAEsAAAFLAAACSwAAAg== - -2,-2: - ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAA== - -3,0: - ind: -3,0 - tiles: aAAAAEsAAAJLAAACSwAAA0sAAANoAAAASwAAAUsAAAFLAAADSwAAAEsAAABLAAAASwAAAksAAABLAAABSwAAAWgAAABLAAABSwAAAUsAAABLAAAASwAAAUsAAAJLAAACSwAAAEsAAABLAAAASwAAAEsAAAJLAAABSwAAAUsAAABoAAAASwAAAUsAAABLAAAASwAAA2gAAABLAAAASwAAAmgAAABLAAADSwAAA0sAAAJoAAAASwAAAEsAAANLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAJLAAACSwAAAksAAAFLAAABSwAAAEsAAANLAAAASwAAAWgAAABoAAAASwAAAksAAABLAAAASwAAAEsAAANLAAADSwAAA0sAAAJoAAAASwAAAUsAAABoAAAASwAAAUsAAAFLAAAASwAAAWgAAABoAAAASwAAA0sAAAJLAAADSwAAAEsAAABLAAAASwAAAEsAAABLAAACaAAAAEsAAAJLAAAASwAAAUsAAAJLAAABaAAAAEsAAABoAAAASwAAAWgAAABoAAAASwAAAUsAAAJLAAADaAAAAGgAAABoAAAAaAAAAFAAAABQAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAEsAAAFLAAACSwAAA0sAAAFLAAACSwAAA2gAAABlAAAAZQAAAWgAAABoAAAAaAAAAEsAAAJoAAAASwAAAmgAAABLAAADSwAAA0sAAAFoAAAAaAAAAGgAAABoAAAAZQAAAGUAAAJoAAAAaAAAAGgAAABoAAAASwAAAEsAAABoAAAAaAAAAEsAAAJLAAABaAAAAGgAAABoAAAAaAAAAGUAAABlAAACaAAAAGgAAABoAAAASwAAAksAAANoAAAAaAAAAGgAAABLAAADaAAAAGgAAABoAAAAVwAAAGgAAABlAAAAZQAAAmgAAABXAAAAaAAAAEsAAABoAAAASwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAZQAAAWUAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAEsAAAFLAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAEsAAANLAAAAaAAAACwAAAAsAAAALAAAAA== - -3,1: - ind: -3,1 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAABaAAAACwAAAAsAAAALAAAAFcAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAASwAAAmgAAAAsAAAALAAAACwAAABXAAAAaAAAAGgAAABXAAAAaAAAAGgAAABXAAAAaAAAAGgAAABLAAADaAAAAEsAAAJoAAAALAAAACwAAAAsAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAGgAAABLAAAAaAAAACwAAAAsAAAALAAAAFcAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAUAAAAFAAAABoAAAASwAAAGgAAAAsAAAALAAAACwAAABoAAAAVwAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAEsAAABoAAAASwAAA0sAAABoAAAALAAAACwAAAAsAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAAAaAAAAGgAAAAsAAAAaAAAAGcAAABoAAAAaAAAAFcAAABoAAAAOgAAADoAAAA6AAAAaAAAAEsAAABLAAAASwAAARoAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAADoAAAA6AAAAOgAAAGgAAABLAAACSwAAAEsAAAIaAAABaAAAABoAAAFoAAAAZwAAAGgAAABoAAAAaAAAAGgAAAA6AAAAOgAAADoAAABoAAAAaAAAAEsAAAFLAAAAaAAAAGgAAAAaAAACGgAAAGgAAABoAAAAVwAAAGgAAABoAAAAFQAAABUAAAAVAAAAaAAAAGgAAABLAAAASwAAARoAAAEaAAAAGgAAAxoAAAFLAAAAaAAAAFcAAABoAAAAaAAAABUAAAAVAAAAFQAAAGgAAABLAAADSwAAA2gAAAAaAAACGgAAAhoAAAAaAAACSwAAAGgAAABoAAAAaAAAAGgAAAAVAAAAFQAAABUAAABoAAAASwAAAmgAAABoAAAAGgAAABoAAAEaAAADGgAAA0sAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAARoAAAIaAAADaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAUsAAAFLAAAASwAAA2gAAABoAAAASwAAAksAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAJLAAABSwAAA0sAAANLAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAABaAAAAGgAAABXAAAAVwAAAA== - -3,2: - ind: -3,2 - tiles: aAAAAGgAAABLAAADSwAAAksAAAJLAAAASwAAAUsAAAFLAAADSwAAAEsAAAJLAAAASwAAAUsAAAJXAAAASwAAAksAAAJoAAAASwAAAksAAAFLAAADSwAAA0sAAAJLAAADSwAAAksAAABLAAADSwAAAEsAAANoAAAAaAAAAEsAAANLAAADSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAABaAAAAGUAAAFoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJoAAAAZQAAAWUAAABlAAABZQAAAWUAAAJlAAAAZQAAAGUAAAJlAAAAZQAAAxoAAAAaAAAAGgAAAGgAAABLAAACaAAAAGUAAAFlAAADZQAAAmgAAABlAAABZQAAAGUAAAJlAAADZQAAAmUAAAMaAAABGgAAAhoAAAJLAAAASwAAAmgAAABlAAAAaAAAAGgAAABlAAADaAAAAGUAAAFlAAAAZQAAAWUAAANlAAADGgAAARoAAAIaAAADaAAAAEsAAANoAAAAZQAAAmgAAABoAAAAaAAAAGUAAAFlAAACZQAAA2UAAANlAAABZQAAAxoAAAEaAAAAGgAAA2gAAABLAAABaAAAAGUAAANoAAAAaAAAAGgAAABoAAAAZQAAA2UAAANlAAAAZQAAAGUAAABlAAAAaAAAABoAAAJLAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAACZQAAAWUAAAJlAAACZQAAARoAAAIaAAABSwAAAEsAAABoAAAANAAAADQAAAA0AAAANAAAAGgAAABoAAAAaAAAAEsAAAFLAAABSwAAAWgAAABoAAAAaAAAAEsAAAJoAAAAGgAAAhoAAAEaAAABGgAAAhoAAABoAAAAaAAAAE0AAAFNAAAATQAAA00AAAJNAAADTQAAAU0AAAFLAAADSwAAAhoAAAIaAAADNAAAADQAAAA0AAAAGgAAAhoAAABNAAAATQAAAU0AAABNAAADTQAAAU0AAABNAAACSwAAAksAAAAaAAACGgAAADQAAAA0AAAANAAAABoAAAMaAAABTQAAAE0AAAFNAAAATQAAA00AAABNAAABTQAAAEsAAAJoAAAAaAAAABoAAAI0AAAANAAAADQAAAAaAAABGgAAAU0AAANNAAABTQAAAk0AAABNAAABTQAAAk0AAAFLAAADSwAAARoAAAIaAAABGgAAARoAAAMaAAABGgAAAxoAAANNAAAATQAAAU0AAANNAAADTQAAAU0AAAFNAAADSwAAA0sAAABoAAAAGgAAAhoAAAMaAAABGgAAABoAAAFoAAAATQAAAk0AAAJNAAACTQAAAE0AAAFNAAAATQAAAA== - -3,-1: - ind: -3,-1 - tiles: ZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJoAAAAaAAAAEsAAANLAAACSwAAAWgAAABLAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABaAAAAEsAAAFoAAAAaAAAAEsAAANLAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAAFLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAJLAAABSwAAA2gAAABoAAAASwAAAWgAAABLAAABSwAAAksAAAFLAAADVwAAAGgAAABLAAADaAAAAEsAAAJLAAABSwAAAksAAANLAAACaAAAAEsAAAFoAAAASwAAAEsAAABLAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAGgAAABoAAAAaAAAAEsAAAFLAAABSwAAAEsAAAFoAAAAaAAAAEsAAABLAAAASwAAAGgAAABLAAABSwAAAksAAABLAAABSwAAAksAAABLAAABSwAAAWgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABoAAAASwAAAksAAANLAAAASwAAA0sAAAJLAAAAaAAAAGgAAABLAAAASwAAA2gAAABoAAAAaAAAAEsAAABoAAAAaAAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAJoAAAAZQAAAGUAAANlAAAAZQAAAWgAAABoAAAASwAAAUsAAABLAAAASwAAAksAAANoAAAAaAAAAGgAAABoAAAAaAAAAGUAAABlAAADZQAAAGUAAANoAAAASwAAAEsAAANLAAACSwAAAWgAAABLAAADaAAAAEsAAABLAAAASwAAAGgAAABlAAAAZQAAAmUAAAJoAAAAZQAAAEsAAANLAAAASwAAAGgAAABoAAAASwAAAUsAAABLAAAASwAAAEsAAABoAAAAZQAAAmUAAANlAAADZQAAAWgAAABLAAACSwAAA0sAAAFoAAAASwAAAUsAAAFoAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAASwAAAGgAAABoAAAASwAAA0sAAAJoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABoAAAASwAAAA== - -4,-1: - ind: -4,-1 - tiles: aAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAEsAAABLAAACSwAAA0sAAAFLAAACSwAAAUsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAAASwAAAWgAAABLAAACSwAAA2gAAABXAAAAaAAAAFcAAABoAAAAaAAAAFcAAABoAAAASwAAAksAAAFLAAAASwAAAEsAAABoAAAASwAAAksAAANoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAAFLAAABaAAAAGgAAABlAAAAaAAAAGUAAANoAAAAZQAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAACSwAAA2gAAABlAAABaAAAAGgAAABlAAABZQAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAksAAAJoAAAAaAAAAGUAAAFoAAAAaAAAAGUAAABoAAAAaAAAAFcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAAFoAAAAaAAAAGgAAABoAAAAZQAAAmUAAAJoAAAAZQAAAWgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAADaAAAAEsAAANoAAAAaAAAAGgAAABoAAAAZQAAAWgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAWgAAABLAAAAaAAAAGUAAANoAAAAaAAAAGUAAANoAAAAaAAAAFcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAAJoAAAASwAAA2gAAABoAAAAZQAAAmgAAABlAAABZQAAA2gAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAACSwAAAUsAAAJoAAAAZQAAAmgAAABlAAACZQAAAGgAAABoAAAAaAAAAA== - -4,0: - ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAGgAAABLAAABSwAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAA0sAAAJLAAACaAAAAGgAAABXAAAAaAAAAGgAAABXAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAAJLAAACaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAA0sAAAFLAAABSwAAAUsAAANLAAACSwAAAksAAANLAAACSwAAAWgAAABoAAAAaAAAAGgAAABLAAAASwAAAksAAAFoAAAAaAAAAGgAAABLAAABSwAAAUsAAAJLAAABSwAAAksAAAJLAAADaAAAAGgAAABLAAABSwAAAUsAAANLAAADaAAAAGgAAABLAAAASwAAAUsAAANoAAAAaAAAAEsAAAJLAAAASwAAAUsAAABLAAABSwAAA0sAAAFoAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAJLAAAAaAAAAFAAAABQAAAAUAAAAEsAAANLAAAAUAAAAFAAAABoAAAAVwAAAFcAAABoAAAAaAAAAEsAAABLAAACSwAAA2gAAABlAAACZQAAAGUAAANlAAADZQAAAmUAAAJlAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAksAAANoAAAAZQAAAmUAAAJlAAACZQAAA2UAAAFlAAACZQAAAksAAANoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAADaAAAAGUAAANlAAADZQAAAWUAAAJlAAABZQAAAWUAAAFLAAABaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAZQAAAmUAAABlAAACSwAAAWgAAABoAAAAaAAAAGgAAABLAAACSwAAA0sAAANlAAACZQAAAGUAAANlAAABaAAAAGUAAAFlAAABZQAAAUsAAAFoAAAAaAAAAGgAAABoAAAASwAAAmgAAABLAAADZQAAAmUAAANlAAABZQAAA2gAAABoAAAAaAAAAGgAAABLAAADaAAAAGgAAABoAAAAaAAAAEsAAANoAAAASwAAAGUAAANlAAACZQAAAWUAAANoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAA0sAAAJlAAAAZQAAAGUAAANlAAABaAAAAGgAAABoAAAAaAAAAA== - -4,1: - ind: -4,1 - tiles: VwAAAGgAAABXAAAAVwAAAGgAAABoAAAASwAAAUsAAAFlAAADZQAAAWUAAAJlAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAEsAAAFLAAADaAAAABoAAAEaAAADGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAADaAAAAGgAAAAaAAABGgAAARoAAABoAAAAVwAAAGgAAABXAAAAaAAAAGgAAABXAAAAaAAAAGgAAABLAAACSwAAAWgAAABoAAAAGgAAARoAAAIaAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAASwAAAUsAAABLAAACGgAAAhoAAAEaAAADGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAABoAAAAaAAADGgAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABLAAADaAAAAEsAAANoAAAAIQAAAiEAAAEhAAABIQAAAmgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAADaAAAACEAAAMhAAACIQAAAyEAAABoAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAASwAAAmgAAABoAAAASwAAAmgAAAAhAAAAIQAAAyEAAAMhAAACaAAAAEsAAANoAAAAVwAAAGgAAABoAAAASwAAAUsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAhAAADaAAAAGgAAABLAAABaAAAAFcAAABoAAAAaAAAAEsAAAFLAAACSwAAAmgAAABLAAABSwAAAksAAANLAAAAUAAAAEsAAANLAAADSwAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAABoAAAASwAAAksAAAJLAAAASwAAAUsAAAJQAAAASwAAA2gAAABoAAAAVwAAAGgAAABoAAAAaAAAAEsAAAFLAAACaAAAAEsAAAJLAAACSwAAAUsAAAFLAAACSwAAAEsAAAJLAAABaAAAAGgAAABoAAAAaAAAAEsAAABoAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAA2gAAABLAAADSwAAAEsAAABLAAAASwAAAmgAAABLAAABSwAAAksAAAFLAAABSwAAAFAAAABoAAAAaAAAAA== - -4,2: - ind: -4,2 - tiles: SwAAA0sAAAFLAAACSwAAAEsAAAFoAAAAaAAAAEsAAANLAAACSwAAAWgAAABoAAAAaAAAAGgAAABLAAACSwAAA0sAAABoAAAASwAAAEsAAAJLAAACaAAAAGgAAABLAAADSwAAAUsAAANLAAAAaAAAAEsAAAJLAAAASwAAAUsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAA0AAAANAAAAGgAAABLAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAEaAAAANAAAADQAAABoAAAASwAAAmgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACGgAAATQAAAA0AAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAARoAAAI0AAAANAAAAGgAAABLAAAAaAAAAEMAAABLAAADQwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACGgAAABoAAABoAAAASwAAAEMAAABoAAAAQwAAAEMAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAQwAAAGgAAABoAAAAaAAAAEsAAAFLAAAAQwAAAEMAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEMAAABDAAAAQwAAAGgAAABLAAADQwAAAEsAAAJDAAAAQwAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABDAAAAQwAAAEMAAABoAAAASwAAA0MAAABLAAAASwAAAkMAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANoAAAAQwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAEsAAABLAAABSwAAAUMAAABLAAADaAAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABLAAAASwAAAUMAAABLAAABQwAAAEMAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAFLAAADaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA2gAAABLAAAASwAAA0sAAAFLAAAAUAAAAA== - -5,-1: - ind: -5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABLAAACSwAAAUsAAANLAAABaAAAAEsAAABLAAACSwAAAksAAABoAAAAaAAAAEsAAAJnAAAAaAAAAGgAAABoAAAASwAAA0sAAANLAAACSwAAAWgAAABoAAAAaAAAAGgAAABLAAABSwAAAEsAAAFLAAAAZwAAAGgAAABoAAAAaAAAAEsAAANLAAADSwAAAEsAAANLAAADSwAAAksAAAJLAAADSwAAAksAAABLAAADSwAAAmcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -5,0: - ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAABnAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGcAAABnAAAAZwAAAGgAAABLAAACSwAAAksAAAFoAAAAaAAAAEsAAAJLAAAASwAAA0sAAAFLAAABSwAAAUsAAANnAAAAAAAAAGcAAABoAAAAaAAAAGgAAABLAAADSwAAAEsAAABLAAACaAAAAGgAAABLAAACSwAAAUsAAAJLAAABZwAAAAAAAABnAAAAaAAAAEsAAAFLAAADSwAAAUsAAAFLAAAASwAAAEsAAAJLAAABSwAAA0sAAAFoAAAAaAAAAGcAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAGgAAAxoAAAEaAAACGgAAAGgAAABoAAAAVwAAAGgAAABXAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAaAAAABoAAAMaAAAAGgAAAxoAAAJoAAAAaAAAAFcAAABoAAAAaAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGgAAAAaAAABGgAAAxoAAAIaAAACaAAAAGgAAABoAAAAaAAAAEsAAAEAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABoAAAAGgAAAhoAAAEaAAACGgAAAWgAAABXAAAAaAAAAGgAAABLAAADAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAaAAAABoAAAIaAAACGgAAARoAAAEaAAAAaAAAAGgAAABoAAAASwAAAwAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGgAAAAaAAABGgAAAxoAAAIaAAADaAAAAGgAAABXAAAAaAAAAEsAAAMAAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABLAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABLAAABSwAAA0sAAAJLAAAASwAAAUsAAANLAAADaAAAAGgAAABoAAAAaAAAAA== - -2,3: - ind: -2,3 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAZQAAAmUAAABlAAADZQAAAGgAAABLAAABaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAWgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAABVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAGgAAABoAAAAaAAAAGgAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAFoAAAAaAAAAEsAAAFoAAAAaAAAAEsAAABoAAAAaAAAAEAAAABAAAAAQAAAAEAAAABoAAAAGgAAABoAAAAaAAACVwAAAGgAAABoAAAASwAAAGgAAABoAAAAaAAAAGgAAABAAAAAGgAAARoAAAMaAAAAQAAAABoAAAIaAAADGgAAAmgAAABoAAAASwAAAWgAAABoAAAASwAAAWgAAABoAAAAQAAAABoAAAE/AAABGgAAAmgAAAAaAAABGgAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABIAAAAaAAAAPwAAARoAAANoAAAAGgAAAxoAAAMaAAADaAAAAGgAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABAAAAAGgAAAxoAAAAaAAACaAAAABoAAAMaAAADGgAAAGgAAABoAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAGgAAABnAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAAksAAAJLAAAAGgAAAxoAAAIaAAACZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAEsAAAJLAAAASwAAAxoAAAEaAAAAGgAAAmcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABLAAABSwAAAEsAAABoAAAAGgAAABoAAANnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAGcAAABoAAAASwAAAEsAAANLAAABSwAAAEsAAAFLAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAaAAAAGgAAABLAAACSwAAAUsAAABLAAABSwAAAg== - -1,3: - ind: -1,3 - tiles: aAAAAEsAAANLAAADSwAAAksAAAFLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAVwAAAGgAAABnAAAAZwAAAGcAAABoAAAAFQAAABUAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAABnAAAAaAAAABUAAAAVAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGcAAABnAAAAZwAAAGgAAAAVAAAAFQAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAGcAAABoAAAAFQAAABUAAAAaAAAAGgAAA2gAAABLAAADSwAAA0sAAAFLAAAASwAAAUsAAAFoAAAAaAAAAGcAAABnAAAAaAAAABUAAAAVAAAAGgAAAhoAAANoAAAASwAAAUsAAAFLAAADSwAAAUsAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAIaAAABSwAAA0sAAAJLAAACSwAAAUsAAAJLAAACSwAAAksAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAaAAAAGgAAAWgAAABLAAABSwAAA0sAAAJLAAAASwAAAEsAAABLAAACaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAGgAAARoAAANoAAAASwAAAksAAANLAAADSwAAAksAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAmgAAABlAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAaAAABGgAAA0sAAANLAAAASwAAA2gAAAAaAAABGgAAARoAAABlAAACZQAAA2gAAABnAAAAAAAAAGcAAAAAAAAAGgAAABoAAABLAAAASwAAAksAAAFoAAAAGgAAARoAAAIaAAAAZQAAAWUAAANoAAAAZwAAAGcAAABnAAAAAAAAABoAAAFoAAAASwAAA0sAAANLAAADaAAAABoAAAMaAAACGgAAA2UAAABlAAADaAAAAGcAAAAAAAAAZwAAAAAAAABLAAACSwAAAUsAAAFLAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAAAAAAAASwAAA0sAAAFLAAAASwAAA2gAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAA== - 0,3: - ind: 0,3 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAABUAAABoAAAAaAAAAGUAAANlAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAVAAAAaAAAAGUAAAFlAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAJoAAAAZQAAA2UAAAFlAAAAFQAAAGgAAABlAAACaAAAAGUAAAFoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAAAaAAAAGUAAAJlAAADZQAAABUAAABoAAAAZQAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAA2gAAABlAAAAZQAAAmUAAAIVAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,3: - ind: 1,3 - tiles: aAAAAGUAAANlAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABlAAACZQAAAWgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABlAAADZQAAAmUAAANoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAA2UAAAJlAAADaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGUAAANlAAABZQAAA2gAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,4: - ind: -1,4 - tiles: SwAAA0sAAANLAAABSwAAAGgAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAEsAAAFLAAABSwAAAWgAAABoAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABLAAAASwAAA2gAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,4: - ind: -2,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGgAAABLAAADSwAAAEsAAABLAAABSwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABoAAAAaAAAAEsAAAJLAAAASwAAAUsAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAASwAAA0sAAABLAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -3,3: - ind: -3,3 - tiles: SwAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAAAaAAAAFcAAABoAAAASwAAA0sAAANLAAADSwAAAmgAAABLAAAAaAAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAACSwAAAEsAAANoAAAAaAAAAEsAAAFLAAABaAAAAGgAAABoAAAAaAAAAEsAAABoAAAAVwAAAGgAAABLAAAASwAAAUsAAAFLAAAAaAAAAGgAAABoAAAASwAAA0sAAANoAAAAaAAAAGgAAABLAAACaAAAAFcAAABoAAAASwAAAUsAAABLAAAASwAAAmgAAABLAAACSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABLAAABaAAAAFcAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAhoAAAJoAAAAZwAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAMaAAADaAAAAGgAAABnAAAAZwAAAGcAAABoAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABGgAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAAAAAAAAAAAAAGcAAABnAAAAGgAAAhoAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAABoAAAMaAAACGgAAAEsAAANLAAAASwAAA0sAAAFoAAAAaAAAAGcAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAaAAAAGgAAAhoAAAAaAAAASwAAAksAAAJLAAACaAAAAGgAAABnAAAAZwAAAGgAAABnAAAAZwAAAAAAAABnAAAAGgAAAGgAAABoAAAASwAAAksAAABLAAACSwAAA2gAAABoAAAAZwAAAGcAAABoAAAAAAAAAGcAAAAAAAAAAAAAAA== - -4,3: - ind: -4,3 - tiles: VwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABXAAAAaAAAAGgAAABLAAABSwAAAksAAABLAAADSwAAAGgAAABoAAAAVwAAAGgAAABXAAAAaAAAAGgAAABXAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAABSwAAAUsAAANoAAAAVwAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAANLAAACaAAAAFcAAABoAAAAaAAAAFcAAABoAAAAaAAAAFcAAABoAAAAaAAAAEsAAAFLAAABSwAAAksAAAFLAAABSwAAAUsAAAJLAAABSwAAAUsAAAJLAAACSwAAAUsAAAJLAAAASwAAA0sAAANoAAAASwAAAEsAAAFLAAADSwAAAksAAAJoAAAASwAAAEsAAAJLAAABSwAAAksAAABLAAACSwAAA0sAAAJoAAAAaAAAAEsAAAJLAAACSwAAA0sAAAJLAAAASwAAAUsAAABLAAABSwAAAUsAAAFLAAAASwAAAUsAAABLAAABSwAAAUsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAEsAAABLAAADSwAAAksAAAFLAAABSwAAAGgAAABoAAAAGgAAAWgAAAAaAAADGgAAARoAAAIaAAABSwAAAUsAAANLAAADSwAAA0sAAAJLAAADSwAAA0sAAANoAAAAGgAAABoAAAFoAAAAGgAAARoAAAMaAAACaAAAAEsAAANLAAADSwAAA0sAAAJLAAADSwAAA0sAAABLAAACaAAAABoAAAEaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFoAAAASwAAAWgAAAAaAAAAGgAAAR8AAABLAAADSwAAAUsAAANLAAAASwAAA0sAAAJLAAACSwAAAksAAAFLAAADSwAAAUsAAAJoAAAAGgAAA2gAAABoAAAASwAAAEsAAABLAAACSwAAAUsAAAJLAAADSwAAAUsAAANLAAADSwAAAUsAAANLAAACGgAAAhoAAAIAAAAAaAAAAGgAAABoAAAAZQAAA2gAAABoAAAAaAAAAGUAAAJoAAAAaAAAAEsAAAFLAAACSwAAAWgAAAAaAAAAAAAAAGgAAABlAAADZQAAAWUAAANlAAACaAAAAGUAAANlAAACZQAAAWgAAABLAAADSwAAAEsAAAJoAAAAaAAAAA== - -4,-2: - ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAA== - -3,-2: - ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -5,2: - ind: -5,2 - tiles: SwAAAUsAAANLAAADSwAAAmgAAABLAAACaAAAAGgAAABoAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAADSwAAAUsAAANoAAAASwAAAWgAAABLAAACSwAAAEsAAAFLAAABSwAAA0sAAABLAAAASwAAAEsAAAFoAAAAaAAAAGgAAABoAAAAVwAAAEsAAAFLAAADSwAAAEsAAABLAAAASwAAAksAAAFLAAADSwAAAksAAAFLAAADaAAAAGgAAABoAAAAaAAAAFcAAABLAAACSwAAA0sAAAFLAAABSwAAAksAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAEMAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAGUAAANlAAADZQAAAmgAAABXAAAAaAAAAGgAAABDAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGUAAANlAAAAZQAAAmUAAABoAAAAaAAAAGgAAABoAAAASwAAAWgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAZQAAA2UAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGUAAANlAAABZQAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAAFlAAAAZQAAA2UAAANoAAAAaAAAAFcAAABoAAAAQwAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABlAAABZQAAAmUAAAJoAAAAaAAAAGgAAABXAAAAaAAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAADcAAABoAAAANwAAAGgAAAA3AAAAaAAAAEsAAAJoAAAASwAAAw== - -5,3: - ind: -5,3 - tiles: ZwAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAAA3AAAANwAAAGgAAABoAAAAaAAAAGgAAABLAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAAA3AAAAaAAAAGgAAAA3AAAAaAAAAEsAAAJLAAACaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA2gAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAAAaAAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABXAAAAaAAAAEsAAABoAAAASwAAAksAAAJoAAAAaAAAAFcAAABoAAAASwAAAEsAAAJnAAAAaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAAAZwAAAGgAAAAaAAAAGgAAARoAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAANoAAAAaAAAAGgAAABLAAAASwAAA2cAAABoAAAAGgAAAxoAAAIaAAAAaAAAAGgAAABoAAAASwAAAUsAAABoAAAAaAAAAFcAAABoAAAASwAAAEsAAAJnAAAAaAAAABoAAAAaAAADGgAAAGgAAABoAAAAaAAAAGgAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAA== - -3,4: - ind: -3,4 - tiles: SwAAAUsAAABLAAACSwAAAUsAAAFLAAAASwAAAmgAAABoAAAAZwAAAGcAAABoAAAAAAAAAGcAAAAAAAAAAAAAAEsAAAJLAAABSwAAAWgAAABLAAADSwAAAksAAAFoAAAAaAAAAGcAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANoAAAAaAAAAGgAAABnAAAAZwAAAGgAAABnAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABoAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGcAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -4,4: - ind: -4,4 - tiles: AAAAAGgAAABlAAABZQAAAWUAAAJlAAACaAAAAGUAAAJlAAABZQAAAmgAAABLAAACSwAAAEsAAAJLAAABSwAAA2cAAABoAAAAZQAAAGUAAAJlAAADZQAAAWgAAABlAAADZQAAAGUAAAJoAAAASwAAAEsAAABLAAADSwAAAUsAAAEAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAA== - -4,5: - ind: -4,5 - tiles: AAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAABoAAAAaAAAAGgAAABoAAAASwAAAmgAAABLAAAAaAAAAAoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAAaAAAAEsAAANoAAAAaAAAAGgAAAAKAAAAaAAAACwAAABLAAAAaAAAAEsAAAJLAAADSwAAAksAAABoAAAASwAAA0sAAAJLAAABaAAAAEsAAABoAAAACgAAAGgAAAAsAAAASwAAAmgAAABLAAAASwAAA2gAAABoAAAASwAAAGgAAABoAAAAaAAAAEsAAANoAAAAaAAAAAoAAABoAAAALAAAAGgAAABLAAABaAAAAGgAAABLAAAAaAAAAGgAAABoAAAAaAAAAEsAAANoAAAASwAAA2gAAAAKAAAAaAAAAGgAAABLAAACSwAAAUsAAANoAAAASwAAAkMAAABoAAAAQwAAAGgAAABoAAAAaAAAAEsAAABoAAAACgAAAAAAAABoAAAASwAAAWgAAABLAAADaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAASwAAA0sAAABLAAADaAAAAAoAAABnAAAAaAAAAEsAAANLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADaAAAAGgAAABoAAAASwAAAGgAAAAKAAAAAAAAAGgAAABLAAADaAAAAEsAAABLAAADSwAAA0sAAAFLAAACaAAAAEsAAAJLAAAASwAAAGgAAABoAAAACgAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJoAAAASwAAA2gAAABLAAABaAAAAAoAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -3,5: - ind: -3,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -5,5: - ind: -5,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -5,1: - ind: -5,1 - tiles: ZwAAAGcAAABnAAAAZwAAAGgAAABLAAAASwAAA0sAAABLAAABSwAAAUsAAANLAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAABLAAABSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABXAAAAVwAAAGgAAABXAAAAaAAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABLAAACSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAFcAAABoAAAASwAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAEsAAAFLAAACSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAWgAAABXAAAAVwAAAGgAAABLAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAWgAAABLAAACSwAAAUsAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAFLAAAASwAAA0sAAABLAAADSwAAAWgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAFLAAACSwAAAksAAAJLAAADaAAAAEsAAABLAAADSwAAA0sAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAAASwAAAUsAAAJLAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAABaAAAAGgAAABoAAAAaAAAAGgAAABLAAACaAAAAGgAAABLAAABaAAAAGgAAABXAAAAVwAAAGgAAABoAAAASwAAAGgAAABoAAAAaAAAAFcAAABoAAAASwAAA0sAAANoAAAAaAAAAEsAAANXAAAAVwAAAFcAAABoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABXAAAAaAAAAEsAAABLAAAAaAAAAGgAAABLAAACVwAAAFcAAABXAAAAaAAAAEsAAAJLAAACaAAAAGgAAABoAAAAVwAAAGgAAABLAAACSwAAAmgAAABoAAAASwAAAlcAAABXAAAAVwAAAGgAAABLAAABaAAAAGgAAABoAAAAaAAAAFcAAABoAAAASwAAAksAAAFoAAAAaAAAAA== - -6,1: - ind: -6,1 - tiles: AAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAVwAAAFcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAFcAAABXAAAAVwAAAGgAAABXAAAAaAAAAGgAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGgAAABnAAAAZwAAAGcAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABXAAAAaAAAAEsAAAJLAAACSwAAAmcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGgAAABLAAAASwAAA0sAAANLAAAASwAAAEsAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABoAAAASwAAAGgAAABoAAAAaAAAAGgAAABLAAADAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAASwAAAwAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGgAAABLAAAAaAAAAGgAAABoAAAAaAAAAEsAAANnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABoAAAASwAAAEsAAAJLAAACSwAAAUsAAANLAAAAZwAAAGcAAABnAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAaAAAAGcAAABnAAAAZwAAAGgAAABXAAAAVwAAAGgAAABLAAAASwAAAksAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABXAAAAVwAAAFcAAABoAAAASwAAAEsAAABLAAACZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAAASwAAAg== - -6,2: - ind: -6,2 - tiles: ZwAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAADSwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGcAAABoAAAAaAAAAGgAAABLAAACSwAAAEsAAAEAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== - -7,1: - ind: -7,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABoAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAA== - -7,2: - ind: -7,2 - tiles: ZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -6,3: - ind: -6,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -5,4: - ind: -5,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -7,0: - ind: -7,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAA== - -6,0: - ind: -6,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAA== - 2,-1: - ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,2: - ind: 2,2 - tiles: ZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - type: MapGrid - - type: Broadphase - - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: {} - type: Fixtures - - type: OccluderTree - - type: Shuttle - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: - version: 2 - nodes: - - node: - color: '#DE3A3A96' - id: Bot - decals: - 7288: -43,66 - - node: - color: '#52B4E996' - id: BotGreyscale - decals: - 6939: 25,28 - 6942: 28,28 - - node: - color: '#9FED5896' - id: BotGreyscale - decals: - 6943: 25,26 - 6944: 25,25 - - node: - color: '#A4610696' - id: BotGreyscale - decals: - 6946: 28,25 - - node: - color: '#D381C996' - id: BotGreyscale - decals: - 6945: 28,26 - - node: - color: '#DE3A3A96' - id: BotGreyscale - decals: - 6940: 26,28 - - node: - color: '#EFB34196' - id: BotGreyscale - decals: - 6941: 27,28 - - node: - color: '#A46106FF' - id: BotLeft - decals: - 7162: -45,-11 - 7163: -45,-12 - 7164: -44,-12 - 7165: -44,-11 - 7166: -43,-11 - 7167: -43,-12 - 7168: -42,-11 - 7169: -42,-12 - - node: - color: '#A46106FF' - id: Box - decals: - 2154: -11,56 - - node: - color: '#EFB341FF' - id: Box - decals: - 2152: -10,54 - - node: - color: '#334E6DC8' - id: BoxGreyscale - decals: - 2156: -9,56 - - node: - color: '#334E6DFF' - id: BoxGreyscale - decals: - 2155: -8,55 - - node: - color: '#52B4E9FF' - id: BoxGreyscale - decals: - 2158: -10,56 - - node: - color: '#D381C9FF' - id: BoxGreyscale - decals: - 2153: -11,54 - - node: - color: '#DE3A3AFF' - id: BoxGreyscale - decals: - 2157: -9,54 - - node: - color: '#D381C9FF' - id: BrickTileSteelBox - decals: - 13: -13,-7 - 63: -11,1 - 64: 0,-2 - - node: - color: '#52B4E9FF' - id: BrickTileSteelCornerNe - decals: - 2674: 4,17 - - node: - color: '#D381C9FF' - id: BrickTileSteelCornerNe - decals: - 8: -12,-8 - 62: -12,2 - - node: - color: '#52B4E9FF' - id: BrickTileSteelCornerNw - decals: - 2675: -2,17 - 2705: 2,40 - - node: - color: '#D381C9FF' - id: BrickTileSteelCornerNw - decals: - 7: -14,-8 - - node: - color: '#52B4E9FF' - id: BrickTileSteelCornerSe - decals: - 2616: 16,28 - 2676: 4,14 - - node: - color: '#D381C9FF' - id: BrickTileSteelCornerSe - decals: - 10: -12,-9 - 61: -12,0 - 70: 2,-3 - - node: - color: '#52B4E9FF' - id: BrickTileSteelCornerSw - decals: - 2613: 14,28 - 2677: -2,14 - - node: - color: '#D381C9FF' - id: BrickTileSteelCornerSw - decals: - 9: -14,-9 - 69: 1,-3 - - node: - color: '#52B4E9FF' - id: BrickTileSteelEndN - decals: - 2713: 0,39 - - node: - color: '#52B4E9FF' - id: BrickTileSteelLineE - decals: - 2617: 16,29 - 2678: 4,15 - 2679: 4,16 - 2698: 4,37 - 2699: 4,38 - 2700: 4,39 - - node: - color: '#D381C9FF' - id: BrickTileSteelLineE - decals: - 59: -12,1 - 65: 2,-1 - 66: 2,-2 - - node: - color: '#52B4E9FF' - id: BrickTileSteelLineN - decals: - 2680: -1,17 - 2681: 0,17 - 2682: 1,17 - 2683: 2,17 - 2684: 2,17 - 2685: 3,17 - 2701: 3,40 - - node: - color: '#D381C9FF' - id: BrickTileSteelLineN - decals: - 11: -13,-8 - 58: -13,2 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineN - decals: - 0: -13,-4 - 1: -12,-4 - 2: -11,-4 - 3: -10,-4 - - node: - color: '#52B4E9FF' - id: BrickTileSteelLineS - decals: - 2615: 15,28 - 2688: -1,14 - 2689: 0,14 - 2690: 1,14 - 2691: 2,14 - 2692: 3,14 - 2702: 3,36 - - node: - color: '#D381C9FF' - id: BrickTileSteelLineS - decals: - 12: -13,-9 - 60: -13,0 - - node: - color: '#52B4E9FF' - id: BrickTileSteelLineW - decals: - 2614: 14,29 - 2686: -2,16 - 2687: -2,15 - 2703: 2,37 - 2704: 2,38 - - node: - color: '#D381C9FF' - id: BrickTileSteelLineW - decals: - 67: 1,-1 - 68: 1,-2 - - node: - color: '#334E6DFF' - id: BrickTileWhiteCornerNe - decals: - 5528: -8,57 - 5529: -7,56 - - node: - color: '#52B4E9FF' - id: BrickTileWhiteCornerNe - decals: - 2694: 11,33 - - node: - color: '#9FED58FF' - id: BrickTileWhiteCornerNe - decals: - 2634: 11,13 - 2635: 9,13 - 2636: 7,13 - - node: - color: '#A46106FF' - id: BrickTileWhiteCornerNe - decals: - 722: -37,1 - 747: -44,-7 - - node: - color: '#D381C9FF' - id: BrickTileWhiteCornerNe - decals: - 43: -1,-2 - 78: -3,-3 - - node: - color: '#DE3A3AFF' - id: BrickTileWhiteCornerNe - decals: - 3351: -42,65 - - node: - color: '#EFB341FF' - id: BrickTileWhiteCornerNe - decals: - 4228: -70,31 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerNw - decals: - 2159: -13,57 - - node: - color: '#334E6DFF' - id: BrickTileWhiteCornerNw - decals: - 2160: -13,57 - - node: - color: '#52B4E9FF' - id: BrickTileWhiteCornerNw - decals: - 2693: 7,33 - - node: - color: '#9FED58FF' - id: BrickTileWhiteCornerNw - decals: - 2631: 6,13 - 2632: 8,13 - 2633: 10,13 - - node: - color: '#A46106FF' - id: BrickTileWhiteCornerNw - decals: - 721: -39,1 - 746: -46,-7 - - node: - color: '#D381C9FF' - id: BrickTileWhiteCornerNw - decals: - 41: -14,-2 - 42: -10,2 - 80: -5,-3 - - node: - color: '#DE3A3AFF' - id: BrickTileWhiteCornerNw - decals: - 3352: -44,65 - - node: - color: '#EFB341FF' - id: BrickTileWhiteCornerNw - decals: - 4211: -75,17 - 4214: -68,31 - - node: - color: '#334E6DFF' - id: BrickTileWhiteCornerSe - decals: - 2161: -7,54 - 2162: -8,53 - - node: - color: '#9FED58FF' - id: BrickTileWhiteCornerSe - decals: - 2628: 7,11 - 2629: 9,11 - 2630: 11,11 - - node: - color: '#A46106FF' - id: BrickTileWhiteCornerSe - decals: - 720: -37,0 - 745: -44,-8 - - node: - color: '#D381C9FF' - id: BrickTileWhiteCornerSe - decals: - 79: -3,-4 - - node: - color: '#DE3A3AFF' - id: BrickTileWhiteCornerSe - decals: - 3353: -42,61 - - node: - color: '#EFB341FF' - id: BrickTileWhiteCornerSe - decals: - 4215: -64,25 - - node: - color: '#334E6DFF' - id: BrickTileWhiteCornerSw - decals: - 2163: -13,53 - - node: - color: '#9FED58FF' - id: BrickTileWhiteCornerSw - decals: - 2637: 6,11 - 2638: 8,11 - 2639: 10,11 - - node: - color: '#A46106FF' - id: BrickTileWhiteCornerSw - decals: - 719: -39,0 - 748: -46,-8 - - node: - color: '#D381C9FF' - id: BrickTileWhiteCornerSw - decals: - 44: -7,-6 - 81: -5,-4 - - node: - color: '#DE3A3AFF' - id: BrickTileWhiteCornerSw - decals: - 3354: -44,61 - - node: - color: '#EFB341FF' - id: BrickTileWhiteCornerSw - decals: - 4212: -75,15 - 4213: -68,25 - - node: - color: '#D381C9FF' - id: BrickTileWhiteEndE - decals: - 57: -6,2 - - node: - color: '#334E6DFF' - id: BrickTileWhiteInnerNe - decals: - 5530: -8,56 - - node: - color: '#A4610696' - id: BrickTileWhiteInnerNe - decals: - 6950: 27,24 - - node: - color: '#D381C9FF' - id: BrickTileWhiteInnerNe - decals: - 45: -7,-2 - - node: - color: '#9FED5896' - id: BrickTileWhiteInnerNw - decals: - 6958: 26,24 - - node: - color: '#D381C9FF' - id: BrickTileWhiteInnerNw - decals: - 48: -10,-2 - 56: -14,-4 - - node: - color: '#334E6DFF' - id: BrickTileWhiteInnerSe - decals: - 2174: -8,54 - 2187: -20,62 - - node: - color: '#D381C996' - id: BrickTileWhiteInnerSe - decals: - 6954: 27,27 - - node: - color: '#D381C9FF' - id: BrickTileWhiteInnerSe - decals: - 46: -9,-3 - 49: -7,2 - - node: - color: '#334E6DFF' - id: BrickTileWhiteInnerSw - decals: - 2186: -14,62 - - node: - color: '#9FED5896' - id: BrickTileWhiteInnerSw - decals: - 6951: 26,27 - - node: - color: '#D381C9FF' - id: BrickTileWhiteInnerSw - decals: - 47: -7,-3 - - node: - color: '#334E6DFF' - id: BrickTileWhiteLineE - decals: - 2164: -7,55 - 2175: -20,59 - 2176: -20,60 - 2177: -20,61 - - node: - color: '#9FED58FF' - id: BrickTileWhiteLineE - decals: - 2640: 7,12 - 2641: 9,12 - 2645: 11,12 - 7332: -12,15 - 7333: -12,14 - - node: - color: '#A4610696' - id: BrickTileWhiteLineE - decals: - 6949: 27,25 - - node: - color: '#D381C996' - id: BrickTileWhiteLineE - decals: - 6955: 27,26 - - node: - color: '#D381C9FF' - id: BrickTileWhiteLineE - decals: - 24: -7,-1 - 25: -7,0 - 26: -7,1 - 27: -1,-3 - 28: -1,-4 - 29: -1,-5 - - node: - color: '#DE3A3AFF' - id: BrickTileWhiteLineE - decals: - 3344: -42,64 - 3345: -42,63 - 3346: -42,62 - - node: - color: '#EFB341FF' - id: BrickTileWhiteLineE - decals: - 4216: -64,26 - 4217: -64,27 - 4218: -64,28 - 4231: -70,30 - 4232: -70,29 - 4233: -70,28 - 7337: -12,8 - 7338: -12,9 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineN - decals: - 6935: 25,27 - - node: - color: '#334E6DFF' - id: BrickTileWhiteLineN - decals: - 2165: -11,57 - 2166: -12,57 - 5526: -10,57 - 5527: -9,57 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineN - decals: - 6938: 28,27 - - node: - color: '#52B4E9FF' - id: BrickTileWhiteLineN - decals: - 2695: 8,33 - 2696: 9,33 - 2697: 10,33 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineN - decals: - 6948: 25,24 - - node: - color: '#A4610696' - id: BrickTileWhiteLineN - decals: - 6947: 28,24 - - node: - color: '#A46106FF' - id: BrickTileWhiteLineN - decals: - 718: -38,1 - 750: -45,-7 - - node: - color: '#D381C9FF' - id: BrickTileWhiteLineN - decals: - 30: -6,-2 - 31: -5,-2 - 32: -4,-2 - 33: -3,-2 - 34: -2,-2 - 35: -7,2 - 36: -8,2 - 37: -9,2 - 38: -11,-2 - 39: -12,-2 - 40: -13,-2 - 50: -9,-4 - 51: -10,-4 - 52: -11,-4 - 53: -12,-4 - 54: -13,-4 - 55: -14,-4 - 83: -4,-3 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineN - decals: - 6936: 26,27 - - node: - color: '#DE3A3AFF' - id: BrickTileWhiteLineN - decals: - 3343: -43,65 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineN - decals: - 6937: 27,27 - - node: - color: '#EFB341FF' - id: BrickTileWhiteLineN - decals: - 4208: -74,17 - 4209: -73,17 - 4210: -72,17 - 4219: -67,31 - 4229: -71,31 - 4230: -72,31 - - node: - color: '#334E6DFF' - id: BrickTileWhiteLineS - decals: - 2167: -12,53 - 2168: -11,53 - 2169: -10,53 - 2170: -9,53 - 2178: -19,62 - 2179: -18,62 - 2180: -17,62 - 2181: -16,62 - 2182: -15,62 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineS - decals: - 6952: 25,27 - - node: - color: '#A46106FF' - id: BrickTileWhiteLineS - decals: - 717: -38,0 - 749: -45,-8 - - node: - color: '#D381C996' - id: BrickTileWhiteLineS - decals: - 6953: 28,27 - - node: - color: '#D381C9FF' - id: BrickTileWhiteLineS - decals: - 20: -8,-3 - 21: -6,-6 - 22: -5,-6 - 23: -4,-6 - 82: -4,-4 - - node: - color: '#DE3A3AFF' - id: BrickTileWhiteLineS - decals: - 3347: -43,61 - - node: - color: '#EFB341FF' - id: BrickTileWhiteLineS - decals: - 4206: -72,15 - 4220: -67,25 - 4221: -66,25 - 4222: -65,25 - 7295: -74,15 - 7296: -73,15 - - node: - color: '#334E6DFF' - id: BrickTileWhiteLineW - decals: - 2171: -13,54 - 2172: -13,55 - 2173: -13,56 - 2183: -14,59 - 2184: -14,60 - 2185: -14,61 - - node: - color: '#52B4E9FF' - id: BrickTileWhiteLineW - decals: - 7334: -14,14 - 7335: -14,13 - 7336: -14,12 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineW - decals: - 6956: 26,26 - 6957: 26,25 - - node: - color: '#9FED58FF' - id: BrickTileWhiteLineW - decals: - 2642: 6,12 - 2643: 8,12 - 2644: 10,12 - - node: - color: '#D381C9FF' - id: BrickTileWhiteLineW - decals: - 14: -14,-3 - 15: -7,-4 - 16: -7,-5 - 17: -10,0 - 18: -10,1 - 19: -10,-1 - - node: - color: '#DE3A3AFF' - id: BrickTileWhiteLineW - decals: - 3348: -44,62 - 3349: -44,63 - 3350: -44,64 - 7329: -14,8 - 7330: -14,9 - 7331: -14,10 - - node: - color: '#EFB341FF' - id: BrickTileWhiteLineW - decals: - 4207: -75,16 - 4223: -68,26 - 4224: -68,27 - 4225: -68,28 - 4226: -68,29 - 4227: -68,30 - - node: - color: '#FFFFFFFF' - id: Bushb1 - decals: - 7314: 17,37 - 7315: 22,37 - 7316: 19,40 - - node: - color: '#FFFFFFFF' - id: Bushc3 - decals: - 7312: 21,43 - 7313: 23,43 - - node: - color: '#FFFFFFFF' - id: Bushf2 - decals: - 7311: 21,40 - - node: - color: '#FFFFFFFF' - id: Bushh2 - decals: - 7310: 21,38 - - node: - color: '#FFFFFFFF' - id: Bushi3 - decals: - 7308: 17,40 - 7309: 18,41 - - node: - color: '#DE3A3A96' - id: CheckerNWSE - decals: - 3417: -57,57 - 3418: -57,56 - 3419: -57,55 - 3420: -57,54 - 3421: -56,54 - 3422: -56,55 - 3423: -56,56 - 3424: -56,57 - 3425: -55,57 - 3426: -55,56 - 3427: -55,55 - 3428: -55,54 - 3429: -54,54 - 3430: -54,55 - 3431: -54,56 - 3432: -54,57 - 3433: -53,57 - 3434: -53,56 - 3435: -53,55 - 3436: -53,54 - 3437: -52,54 - 3438: -52,55 - 3439: -52,56 - 3440: -52,57 - 3445: -58,58 - 3446: -57,58 - 3447: -56,58 - 3448: -55,58 - 3449: -54,58 - 3450: -53,58 - 3451: -52,58 - 3452: -51,58 - 3453: -51,57 - 3454: -51,56 - 3455: -51,55 - 3456: -51,54 - 3457: -51,53 - 3458: -52,53 - 3459: -53,53 - 3460: -54,53 - 3461: -55,53 - 3462: -56,53 - 3463: -57,53 - 3464: -58,53 - 3465: -58,54 - 3466: -58,55 - 3467: -58,56 - 3468: -58,57 - - node: - color: '#FF00FFFF' - id: CheckerNWSE - decals: - 693: -30,-13 - 694: -30,-12 - 695: -30,-11 - 696: -29,-11 - 697: -29,-12 - 698: -29,-13 - 699: -28,-13 - 700: -28,-12 - 701: -28,-11 - - node: - cleanable: True - color: '#0000008F' - id: Damaged - decals: - 7779: 26,16 - 7780: 19,6 - 7781: 15,6 - 7782: 16,6 - 7783: 11,3 - 7784: 11,3 - - node: - color: '#FFFFFFFF' - id: Dirt - decals: - 7302: -55,7 - 7303: -54,7 - 7304: -53,7 - 7305: -50,7 - 7306: -48,7 - 7307: -47,7 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Dirt - decals: - 4580: -68,44 - 7350: -13,55 - 7351: -13,55 - 7352: -13,55 - 7353: -13,56 - 7354: -9,57 - 7355: -9,56 - 7356: -10,56 - 7357: -12,56 - 7358: -10,54 - 7359: -9,53 - 7360: -8,54 - 7361: -8,53 - 7362: -15,53 - 7363: -15,54 - 7364: -16,55 - 7365: -16,54 - 7366: -17,55 - 7367: -19,55 - 7368: -14,57 - 7369: -17,57 - 7370: -15,57 - 7371: -17,53 - 7372: -18,59 - 7373: -21,60 - 7374: -21,60 - 7375: -20,62 - 7376: -19,64 - 7377: -17,62 - 7378: -19,61 - 7379: -17,62 - 7380: -17,61 - 7381: -16,60 - 7382: -17,60 - 7383: -16,60 - 7384: -16,59 - 7385: -15,60 - 7386: -18,60 - 7387: -15,59 - 7388: -16,61 - 7389: -17,59 - 7390: -18,61 - 7391: -19,59 - 7392: -19,60 - 7393: -20,59 - 7394: -20,60 - 7395: -20,61 - 7396: -15,64 - 7397: -16,64 - 7398: -16,62 - 7399: -18,65 - 7400: -18,51 - 7401: -16,51 - 7402: -17,50 - 7403: -17,49 - 7404: -17,48 - 7405: -16,47 - 7406: -16,46 - 7407: -17,46 - 7408: -17,44 - 7409: -18,42 - 7410: -16,39 - 7411: -17,40 - 7412: -17,39 - 7413: -16,38 - 7414: -16,35 - 7415: -17,36 - 7416: -17,35 - 7417: -18,34 - 7418: -17,34 - 7419: -16,34 - 7420: -17,33 - 7421: -18,31 - 7422: -19,31 - 7423: -20,31 - 7424: -21,31 - 7425: -24,31 - 7426: -25,31 - 7427: -25,32 - 7428: -26,31 - 7429: -27,31 - 7430: -23,31 - 7431: -25,32 - 7432: -24,32 - 7433: -23,34 - 7434: -25,33 - 7435: -25,34 - 7436: -26,33 - 7437: -20,38 - 7438: -20,37 - 7439: -22,38 - 7440: -21,40 - 7441: -23,40 - 7442: -22,41 - 7443: -21,42 - 7444: -22,39 - 7445: -21,44 - 7446: -21,45 - 7447: -20,45 - 7448: -20,44 - 7449: -22,44 - 7450: -23,44 - 7451: -21,46 - 7452: -20,46 - 7453: -20,47 - 7454: -21,47 - 7455: -21,48 - 7456: -22,48 - 7457: -23,48 - 7458: -20,48 - 7459: -16,40 - 7460: -15,40 - 7461: -15,37 - 7462: -8,36 - 7463: -9,37 - 7464: -4,31 - 7465: -4,30 - 7466: -2,30 - 7467: -1,30 - 7468: 3,26 - 7469: 3,27 - 7470: 3,24 - 7471: 3,23 - 7472: 3,21 - 7473: 3,20 - 7474: 3,28 - 7475: 2,27 - 7476: 2,19 - 7477: 3,16 - 7478: 3,17 - 7479: 1,16 - 7480: -1,16 - 7481: 0,15 - 7482: 2,15 - 7483: 3,14 - 7484: 9,15 - 7485: 8,15 - 7486: 9,16 - 7487: 10,16 - 7488: 9,17 - 7489: 10,18 - 7490: 10,19 - 7491: 9,22 - 7492: 7,22 - 7493: 6,22 - 7494: 6,23 - 7495: 6,24 - 7496: 6,26 - 7497: 7,26 - 7498: 8,26 - 7499: 8,25 - 7500: 7,28 - 7501: 7,29 - 7502: 7,29 - 7503: 9,29 - 7504: 10,30 - 7505: 11,30 - 7506: 11,29 - 7507: 9,30 - 7508: 9,31 - 7509: 2,29 - 7510: 2,30 - 7511: 3,29 - 7512: 5,30 - 7513: 5,29 - 7514: 3,32 - 7515: 2,32 - 7516: 0,33 - 7517: -1,32 - 7518: -7,31 - 7519: -9,31 - 7520: -8,32 - 7521: -8,33 - 7522: -10,33 - 7523: -12,32 - 7524: -11,31 - 7525: -12,31 - 7526: -12,29 - 7527: -14,30 - 7528: -14,30 - 7529: -13,31 - 7530: -14,31 - 7531: -15,32 - 7532: -15,31 - 7533: -15,33 - 7534: -42,36 - 7535: -42,38 - 7536: -43,38 - 7537: -45,37 - 7538: -44,37 - 7539: -44,36 - 7540: -39,35 - 7541: -40,36 - 7542: -40,37 - 7543: -40,38 - 7544: -38,39 - 7545: -36,36 - 7546: -35,36 - 7547: -35,37 - 7548: -36,37 - 7549: -36,38 - 7550: -35,39 - 7551: -35,40 - 7552: -36,40 - 7553: -37,40 - 7554: -33,35 - 7555: -32,35 - 7556: -33,36 - 7557: -32,37 - 7558: -31,37 - 7559: -33,39 - 7560: -32,40 - 7561: -38,42 - 7562: -39,43 - 7563: -39,44 - 7564: -36,43 - 7565: -36,46 - 7566: -37,46 - 7567: -34,46 - 7568: -32,46 - 7569: -32,45 - 7570: -33,49 - 7571: -31,50 - 7572: -29,50 - 7573: -26,45 - 7574: -26,44 - 7575: -25,45 - 7576: -26,41 - 7577: -25,40 - 7578: -25,39 - 7579: -26,40 - 7580: -28,44 - 7581: -28,45 - 7582: -29,45 - 7583: -30,45 - 7584: -29,46 - 7585: -30,47 - 7586: -30,44 - 7587: -28,46 - 7588: -28,47 - 7589: -35,43 - 7590: -36,43 - 7591: -37,43 - 7592: -36,42 - 7593: -39,44 - 7594: -39,43 - 7595: -38,44 - 7596: -38,45 - 7597: -37,46 - 7598: -35,46 - 7599: -35,47 - 7600: -34,47 - 7601: -42,42 - 7602: -43,42 - 7603: -44,42 - 7604: -45,42 - 7605: -45,43 - 7606: -45,44 - 7607: -44,44 - 7608: -43,44 - 7609: -42,44 - 7610: -42,45 - 7611: -43,45 - 7612: -43,46 - 7613: -42,46 - 7614: -41,45 - 7615: -48,41 - 7616: -48,42 - 7617: -47,42 - 7618: -48,43 - 7619: -49,43 - 7620: -50,43 - 7621: -49,44 - 7622: -50,45 - 7623: -53,43 - 7624: -53,43 - 7625: -54,43 - 7626: -56,42 - 7627: -55,41 - 7628: -55,42 - 7629: -55,40 - 7630: -55,39 - 7631: -52,41 - 7632: -52,40 - 7633: -51,40 - 7634: -51,41 - 7635: -52,31 - 7636: -52,32 - 7637: -53,31 - 7638: -54,33 - 7639: -54,32 - 7640: -53,33 - 7641: -49,29 - 7642: -50,28 - 7643: -51,27 - 7644: -52,28 - 7645: -51,28 - 7646: -53,28 - 7647: -44,31 - 7648: -44,32 - 7649: -41,25 - 7650: -42,25 - 7651: -43,25 - 7652: -43,24 - 7653: -42,24 - 7654: -41,24 - 7655: -41,23 - 7656: -42,23 - 7657: -43,23 - 7658: -41,26 - 7659: -42,26 - 7660: -43,26 - 7661: -43,27 - 7662: -42,27 - 7663: -41,27 - 7664: -41,28 - 7665: -42,28 - 7666: -43,28 - 7667: -36,24 - 7668: -36,25 - 7669: -36,26 - 7670: -37,24 - 7671: -38,24 - 7672: -38,25 - 7673: -37,23 - 7674: -36,23 - 7675: -36,17 - 7676: -37,11 - 7677: -37,12 - 7678: -38,12 - 7679: -39,13 - 7680: -39,12 - 7681: -39,8 - 7682: -37,8 - 7683: -39,7 - 7684: -39,5 - 7685: -41,6 - 7686: -41,2 - 7687: -42,0 - 7688: -42,1 - 7689: -39,-4 - 7690: -39,-11 - 7691: -40,-12 - 7692: -41,-11 - 7693: -41,-11 - 7694: -41,-13 - 7695: -36,-7 - 7696: -36,-6 - 7697: -37,-6 - 7698: -34,-8 - 7699: -40,-6 - 7700: -39,-3 - 7701: -38,-4 - 7702: -43,-5 - 7703: -42,-5 - 7704: -42,-13 - 7705: -43,-13 - 7706: -45,-13 - 7707: -46,-11 - 7708: -45,-10 - 7709: 1,0 - 7710: 1,1 - 7711: 1,2 - 7712: 1,2 - 7713: 1,1 - 7714: 1,3 - 7715: 0,3 - 7716: 1,3 - 7717: 2,3 - 7718: 1,4 - 7719: 0,4 - 7720: 1,4 - 7721: 2,4 - 7722: 1,5 - 7723: 0,5 - 7724: -1,4 - 7725: -1,5 - 7726: 0,6 - 7727: -3,6 - 7728: -4,5 - 7729: -5,5 - 7730: 24,11 - 7731: 24,12 - 7732: 24,12 - 7733: 23,12 - 7734: 23,13 - 7735: 23,13 - 7736: 24,14 - 7737: 23,16 - 7738: 23,17 - 7739: 24,18 - 7740: 24,15 - 7741: 23,14 - 7742: 22,16 - 7743: 22,18 - 7744: 23,19 - 7745: 23,13 - 7785: 11,3 - 7786: 10,3 - 7787: 11,2 - 7788: 10,2 - 7789: 11,4 - 7790: 9,4 - 7791: 8,5 - 7792: 8,6 - 7793: 7,6 - 7794: 5,6 - 7795: 3,6 - 7796: 1,6 - 7797: -1,5 - 7798: -4,5 - 7799: -7,6 - 7800: -9,5 - 7801: -12,5 - 7802: -12,4 - 7803: -17,5 - 7804: -19,4 - 7805: -21,4 - 7806: -24,6 - 7807: -26,5 - 7808: -28,6 - 7809: -28,4 - 7810: -27,4 - 7811: -28,5 - 7812: -28,6 - 7813: -32,5 - 7814: -35,6 - 7815: -33,5 - 7816: -33,6 - 7817: -36,4 - 7818: -41,6 - 7819: -41,6 - 7820: -45,5 - 7821: -49,6 - 7822: -50,5 - 7823: -50,4 - 7824: -51,4 - 7825: -54,4 - 7826: -57,4 - 7827: -59,6 - 7828: -58,8 - 7829: -58,9 - 7830: -59,13 - 7831: -59,16 - 7832: -59,18 - 7833: -58,20 - 7834: -58,22 - 7835: -58,24 - 7836: -59,24 - 7837: -60,22 - 7838: -60,23 - 7839: -61,23 - 7840: -61,22 - 7841: -62,20 - 7842: -63,21 - 7843: -62,22 - 7844: -62,22 - 7845: -61,23 - 7846: -61,24 - 7847: -61,24 - 7848: -66,20 - 7849: -66,21 - 7850: -69,21 - 7851: -71,22 - 7852: -70,22 - 7853: -58,36 - 7854: -59,36 - 7855: -59,38 - 7856: -59,39 - 7857: -59,39 - 7858: -59,40 - 7859: -57,38 - 7860: -57,38 - 7861: -58,38 - 7862: -57,39 - 7863: -57,40 - 7864: -57,41 - 7865: -57,42 - 7866: -57,42 - 7867: -57,42 - 7868: -57,43 - 7869: -57,43 - 7870: -57,44 - 7871: -57,44 - 7872: -58,45 - 7873: -59,45 - 7874: -58,44 - 7875: -59,42 - 7876: -58,39 - 7877: -58,34 - 7878: -57,34 - 7879: -56,33 - 7880: -56,32 - 7881: -53,32 - 7882: -51,32 - 7883: -49,32 - 7884: -47,33 - 7885: -46,33 - 7886: -45,33 - 7887: -43,33 - 7888: -42,33 - 7889: -40,33 - 7890: -39,33 - 7891: -58,12 - 7892: -58,12 - 7893: -59,12 - 7894: -59,12 - 7895: -59,11 - 7896: -59,11 - 7897: -59,10 - 7898: -59,10 - 7899: -59,10 - 7900: -59,10 - 7901: -59,8 - 7902: -59,5 - 7903: -59,5 - 7904: -58,3 - 7905: -58,0 - 7906: -58,-2 - 7907: -58,-5 - 7908: -58,-7 - 7909: -65,31 - 7910: -65,31 - 7911: -65,32 - 7912: -67,33 - 7913: -66,33 - 7914: -66,33 - 7915: -66,34 - 7916: -70,34 - 7917: -72,34 - 7918: -75,33 - 7919: -75,32 - 7920: -75,28 - 7921: -75,29 - 7922: -74,32 - 7923: -74,31 - 7924: -74,33 - 7925: -64,20 - 7926: -64,19 - 7927: -65,19 - 7928: -64,21 - 7929: -64,22 - 7930: -64,23 - 7931: -65,23 - 7932: -67,23 - 7933: -70,23 - 7934: -72,23 - 7935: -71,21 - 7936: -70,19 - 7937: -69,19 - 7938: -68,19 - 7939: -68,21 - 7940: -69,22 - 7941: -69,17 - 7942: -75,17 - 7943: -75,17 - 7944: -75,17 - 7945: -74,17 - 7946: -74,17 - 7947: -74,18 - 7948: -75,18 - 7949: -79,19 - 7950: -81,20 - 7951: -82,20 - 7952: -82,24 - 7953: -83,24 - 7954: -84,24 - 7955: -82,26 - 7956: -82,25 - 7957: -80,25 - 7958: -79,25 - 7959: -79,24 - 7960: -77,26 - 7961: -77,24 - 7962: -74,25 - 7963: -75,21 - 7964: -74,21 - 7965: -81,33 - 7966: -82,32 - 7967: -83,32 - 7968: -81,32 - 7969: -80,31 - 7970: -80,30 - 7971: -3,31 - 7972: -3,32 - 7973: -2,31 - 7978: 0,29 - 7979: 0,30 - 7980: -2,29 - 7981: -5,30 - 7982: 8,30 - 7983: -34,-3 - 7984: -35,-3 - 7985: -35,-3 - 7986: -34,-4 - 7987: -33,-4 - 7988: -33,-4 - 7989: -32,-3 - 7990: -32,-2 - 7991: -34,-2 - 7992: -35,-2 - 7993: -46,61 - 7994: -46,62 - 7995: -47,62 - 7996: -44,62 - 7997: -43,62 - 7998: -43,63 - 7999: -44,63 - 8005: -63,60 - 8006: -64,59 - 8007: -64,60 - 8008: -64,57 - 8009: -66,57 - 8010: -68,54 - 8011: -68,53 - 8012: -70,53 - 8013: -71,53 - 8014: -73,52 - 8015: -72,54 - 8016: -73,55 - - node: - color: '#FFFFFFFF' - id: DirtHeavy - decals: - 1623: -30,52 - 1624: -29,53 - 1625: -28,54 - 1626: -26,54 - 1627: -26,55 - 1628: -26,55 - 1629: -26,53 - 1630: -40,45 - 1637: -35,35 - 1638: -37,37 - 1639: -36,34 - 1640: -35,38 - 1641: -37,39 - 1642: -40,38 - 1643: -41,36 - 1644: -38,39 - 1645: -42,38 - 1646: -44,37 - 1647: -41,37 - 1648: -43,39 - 1649: -44,38 - 1650: -44,36 - 1651: -39,36 - 1652: -37,39 - 1653: -37,38 - 1654: -36,36 - 1655: -36,40 - 1656: -38,40 - 1657: -41,37 - 1658: -43,36 - 1659: -41,35 - 1660: -39,36 - 1661: -45,39 - 1662: -45,39 - 1663: -41,37 - 1664: -39,36 - 1665: -37,38 - 1666: -39,39 - 1713: -28,40 - 1714: -29,41 - 1715: -29,42 - 1716: -27,42 - 1717: -29,42 - 1718: -29,41 - 1719: -28,40 - 1720: -28,40 - 1721: -29,42 - 1722: -29,42 - 1723: -29,42 - 1724: -30,25 - 1725: -29,23 - 1726: -29,25 - 1727: -30,27 - 1728: -31,28 - 1729: -31,24 - 1730: -30,24 - 1731: -29,27 - 1732: -30,29 - 1733: -31,27 - 1734: -31,24 - 1735: -29,27 - 1736: -30,28 - 1737: -28,12 - 1738: -29,11 - 1739: -29,9 - 1740: -27,8 - 1741: -25,12 - 1742: -27,12 - 1743: -27,10 - 1744: -25,10 - 1745: -24,12 - 1746: -24,11 - 1747: -24,9 - 1748: -26,8 - 1749: -28,12 - 1750: -26,12 - 1751: -28,11 - 1752: -28,9 - 1753: -26,8 - 1754: -24,12 - 1755: -26,13 - 1756: -28,11 - 1757: -27,9 - 1758: -24,9 - 1759: -28,12 - 1760: -29,10 - 1761: -25,10 - 1762: -24,16 - 1763: -26,18 - 1764: -29,17 - 1765: -28,16 - 1766: -25,17 - 1767: -27,17 - 1768: -26,16 - 1769: -23,15 - 1770: -25,17 - 1771: -30,17 - 1772: -28,16 - 1773: -27,18 - 1774: -29,17 - 1775: -27,15 - 1776: -23,15 - 1777: -24,17 - 1778: -28,18 - 1779: -29,16 - 1780: -26,16 - 1781: -30,25 - 1782: -30,24 - 1783: -31,25 - 1784: -30,28 - 1785: -31,27 - 1786: -17,-3 - 1787: -17,-3 - 1788: -18,-5 - 1789: -17,-5 - 1790: -17,-3 - 1791: -18,-4 - 1792: -18,-5 - 1793: -16,-5 - 1794: -17,-2 - 1795: -19,-3 - 1796: -19,-5 - 1797: -17,-5 - 1798: -17,-2 - 1799: -19,-3 - 1800: -19,-9 - 1801: -18,-9 - 1802: -16,-8 - 1803: -16,-8 - 1804: -16,-9 - 1805: -18,-8 - 1806: -29,-9 - 1807: -30,-8 - 1808: -27,-6 - 1809: -28,-5 - 1810: -30,-8 - 1811: -28,-9 - 1812: -29,-6 - 1813: -29,-4 - 1814: -30,-5 - 1815: -29,-7 - 1816: -25,-9 - 1817: -25,-9 - 1818: -22,-9 - 1819: -22,-8 - 1820: -22,-8 - 1821: -21,-6 - 1822: -22,-2 - 1823: -21,0 - 1824: -19,1 - 1825: -17,1 - 1826: -30,2 - 1827: -30,1 - 1828: -29,0 - 1829: -29,-2 - 1830: -26,-2 - 1831: -27,-1 - 1832: -26,-2 - 1833: -26,1 - 1834: -27,1 - 1835: -27,2 - 1836: -26,0 - 1837: -27,1 - 1838: -27,2 - 1839: -27,0 - 1840: -27,-1 - 1841: -26,-2 - 1842: -24,-2 - 1843: -24,-2 - 1844: -24,1 - 1845: -24,2 - 1846: -26,1 - 1847: -27,1 - 1848: -26,-1 - 1849: -28,-2 - 1850: -33,-2 - 1851: -34,-2 - 1852: -36,-4 - 1853: -33,-2 - 1854: -33,-3 - 1855: -34,-4 - 1856: -33,-3 - 1857: -33,-3 - 1858: -33,-3 - 1859: -45,-3 - 1860: -45,-2 - 1861: -46,-3 - 1862: -47,-4 - 1863: -45,-5 - 1864: -44,-4 - 1865: -44,-2 - 1866: -45,-2 - 1867: -46,-3 - 1868: -46,-4 - 1869: -47,-4 - 1870: -45,-3 - 1871: -44,1 - 1872: -46,1 - 1873: -46,1 - 1874: -44,1 - 1875: -45,2 - 1876: -46,2 - 1877: -46,0 - 1878: -44,0 - 1879: -46,1 - 1880: -46,2 - 1881: -47,1 - 1882: -47,1 - 1883: -44,1 - 1884: -45,2 - 1885: -46,1 - 1886: -45,1 - 1887: -45,0 - 1888: -46,0 - 1889: -47,1 - 1890: -52,-2 - 1891: -51,-1 - 1892: -53,-1 - 1893: -52,-3 - 1894: -51,-2 - 1895: -52,-1 - 1896: -55,-1 - 1897: -55,-2 - 1898: -53,-2 - 1899: -54,-2 - 1900: -55,-3 - 1901: -52,-1 - 1902: -53,-1 - 1903: -52,-3 - 1904: -51,-3 - 1905: -52,-7 - 1906: -52,-6 - 1907: -54,-6 - 1908: -52,-8 - 1909: -51,-5 - 1910: -53,-5 - 1911: -54,-7 - 1912: -55,-8 - 1913: -53,-8 - 1914: -51,-7 - 1915: -53,-5 - 1916: -55,-6 - 1917: -53,-7 - 1918: -53,-5 - 1919: -53,-4 - 1920: -53,46 - 1921: -53,46 - 1922: -59,36 - 1923: -59,33 - 1924: -59,32 - 2364: -36,-11 - 2619: 8,21 - 2620: 11,32 - 5516: -35,36 - 5517: -35,37 - 5518: -35,37 - 5519: -35,37 - 5520: -35,36 - 5521: -35,36 - 5522: -35,35 - 5523: -35,35 - 5524: -35,36 - 5525: -35,36 - 6889: -1,43 - 6890: -1,42 - 6891: 0,42 - 6892: 0,43 - 6893: 0,43 - 6894: 1,42 - 6895: 1,42 - 6896: 2,43 - 6897: 2,44 - 6898: 3,44 - 6899: 4,44 - 6900: 4,43 - 6901: 4,42 - 6902: 4,43 - 6903: 3,43 - 6904: 3,42 - 6905: 2,42 - 6906: 2,43 - 6907: 0,43 - 6908: 0,43 - 6924: 18,45 - 6925: 18,46 - 6927: 10,52 - 6928: 11,52 - 6929: 11,52 - 6930: 11,51 - 6931: 10,52 - 6932: 17,46 - 6933: 17,46 - 6934: 17,46 - 6959: 25,26 - 6960: 25,25 - 6961: 26,25 - 6962: 26,26 - 6963: 27,26 - 6964: 28,25 - 6965: 28,25 - 6966: 28,26 - 6967: 27,27 - 6968: 26,27 - 6969: 25,27 - 6970: 26,27 - 6971: 28,27 - 6972: 28,28 - 6973: 26,28 - 6974: 25,28 - 6975: 26,28 - 6976: 27,28 - 6977: 27,28 - 7008: -60,-10 - 7009: -60,-11 - 7010: -59,-12 - 7011: -59,-12 - 7012: -58,-12 - 7013: -59,-12 - 7014: -61,-12 - 7015: -61,-10 - 7016: -62,-10 - 7017: -63,-11 - 7018: -61,-12 - 7019: -61,-11 - 7020: -62,-11 - 7021: -63,-11 - 7022: -62,-12 - 7023: -63,-10 - 7024: -64,-10 - 7025: -64,-11 - 7026: -64,-12 - 7027: -64,-12 - 7028: -65,-11 - 7029: -66,-11 - 7030: -65,-11 - 7031: -66,-11 - 7032: -67,-11 - 7033: -67,-11 - 7034: -66,-12 - 7035: -65,-12 - 7036: -66,-10 - 7037: -68,-10 - 7038: -69,-11 - 7039: -69,-12 - 7040: -68,-11 - 7041: -67,-10 - 7042: -66,-10 - 7043: -65,-10 - 7044: -67,-11 - 7045: -67,-12 - 7046: -68,-11 - 7047: -69,-10 - 7048: -70,-11 - 7049: -70,-12 - 7050: -71,-12 - 7051: -71,-11 - 7052: -71,-10 - 7053: -72,-10 - 7054: -73,-11 - 7055: -73,-12 - 7056: -72,-12 - 7057: -72,-11 - 7058: -75,-10 - 7059: -76,-10 - 7060: -75,-11 - 7061: -74,-12 - 7062: -73,-11 - 7063: -73,-10 - 7064: -74,-11 - 7065: -75,-12 - 7066: -76,-11 - 7067: -75,-11 - 7068: -74,-11 - 7069: -72,-11 - 7070: -71,-10 - 7071: -68,-11 - 7072: -67,-12 - 7073: -67,-12 - 7074: -68,-12 - 7075: -76,-12 - 7076: -62,-12 - 7077: -62,-12 - 7078: -63,-12 - 7079: -67,-10 - 7080: -68,-10 - 7081: -69,-10 - 7082: -70,-10 - 7083: -73,-10 - 7084: -74,-10 - 7116: -67,-14 - 7117: -67,-14 - 7118: -65,-14 - 7119: -65,-15 - 7120: -65,-15 - 7121: -73,-14 - 7122: -73,-15 - 7123: -75,-14 - 7124: -75,-14 - 7125: -75,-15 - 7126: -78,-11 - 7127: -78,-11 - 7128: -77,-11 - 7129: -79,-11 - 7130: -75,-13 - 7131: -73,-13 - 7132: -67,-13 - 7133: -67,-13 - 7134: -64,-13 - 7135: -65,-13 - 7136: -75,-13 - 7137: -75,-16 - 7138: -73,-16 - 7139: -67,-16 - 7140: -73,-16 - 7141: -65,-16 - 7142: -74,-9 - 7143: -74,-9 - 7144: -74,-8 - 7145: -74,-9 - 7146: -67,-9 - 7147: -67,-8 - 7148: -67,-9 - 7149: -74,3 - 7150: -74,3 - 7151: -74,2 - 7152: -67,3 - 7153: -67,3 - 7154: -67,2 - 7155: -67,2 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - decals: - 160: 27,23 - 161: 26,24 - 162: 27,24 - 163: 25,24 - 164: 27,21 - 165: 26,20 - 166: 26,18 - 167: 27,17 - 168: 28,17 - 169: 27,18 - 170: 25,18 - 171: 25,17 - 172: 26,16 - 173: 27,16 - 174: 27,17 - 175: 26,17 - 176: 27,16 - 177: 27,15 - 178: 27,14 - 179: 27,13 - 180: 26,12 - 181: 26,12 - 182: 25,11 - 183: 27,11 - 184: 27,10 - 185: 28,9 - 186: 27,8 - 187: 26,8 - 188: 25,8 - 189: 26,7 - 190: 27,5 - 191: 28,6 - 192: 27,6 - 193: 26,6 - 194: 23,6 - 195: 21,5 - 196: 21,4 - 197: 22,4 - 198: 21,5 - 199: 19,5 - 200: 17,6 - 201: 16,5 - 202: 16,5 - 203: 16,6 - 204: 14,6 - 205: 12,6 - 206: 11,5 - 207: 12,5 - 208: 12,6 - 209: 9,6 - 210: 9,4 - 211: 10,4 - 212: 10,3 - 213: 11,2 - 214: 9,4 - 215: 8,5 - 216: 6,5 - 217: 6,6 - 218: 5,5 - 219: 5,4 - 220: 5,6 - 221: 2,5 - 222: 1,5 - 223: 1,5 - 224: -1,5 - 225: -1,4 - 226: -1,6 - 227: -2,6 - 228: -4,5 - 229: -5,4 - 230: -7,5 - 231: -6,6 - 232: -5,7 - 233: -6,6 - 234: -6,5 - 235: -8,5 - 236: -9,6 - 237: -10,6 - 238: -11,5 - 239: -12,4 - 240: -14,5 - 241: -13,6 - 242: -13,6 - 243: -13,4 - 244: -12,2 - 245: -12,0 - 246: -12,0 - 247: -13,2 - 248: -13,2 - 249: -12,1 - 250: -13,0 - 251: -12,1 - 252: -9,-1 - 253: -7,-2 - 254: -7,-1 - 255: -8,0 - 256: -9,-1 - 257: -10,-2 - 296: -8,-13 - 297: -8,-12 - 298: -10,-12 - 299: -7,-14 - 300: -6,-13 - 301: -4,-12 - 302: -3,-12 - 303: -2,-10 - 304: 3,-10 - 305: 1,-11 - 306: 0,-9 - 392: 1,-2 - 393: 2,-1 - 394: 2,-2 - 395: 1,-2 - 396: 1,-1 - 397: 2,-1 - 399: -13,8 - 400: -12,8 - 401: -12,10 - 402: -13,10 - 403: -14,11 - 404: -16,8 - 405: -17,8 - 406: -17,10 - 407: -18,10 - 408: -18,9 - 455: -12,18 - 456: -13,19 - 457: -14,20 - 458: -13,22 - 459: -12,23 - 460: -12,24 - 461: -14,26 - 462: -13,27 - 463: -12,28 - 464: -13,28 - 465: -14,28 - 466: -13,26 - 467: -12,25 - 468: -13,29 - 469: -14,32 - 470: -12,28 - 471: -12,30 - 472: -13,32 - 473: -15,32 - 474: -15,31 - 475: -13,30 - 476: -13,29 - 477: -12,32 - 478: -12,33 - 479: -13,33 - 480: -10,31 - 481: -9,32 - 482: -9,32 - 483: -8,33 - 484: -8,32 - 485: -8,31 - 486: -9,32 - 487: -10,32 - 488: -10,32 - 500: 0,29 - 501: -1,30 - 502: -3,30 - 503: -4,31 - 504: -4,32 - 505: -3,33 - 506: -4,32 - 507: -5,32 - 508: 0,33 - 509: -1,33 - 510: -1,34 - 511: -4,25 - 512: -4,26 - 513: -2,26 - 514: -1,26 - 515: -1,27 - 516: -4,27 - 517: -5,26 - 518: -4,24 - 519: -2,23 - 520: -3,22 - 521: -3,20 - 522: -4,19 - 523: -2,19 - 524: -2,20 - 537: -2,7 - 574: 13,-8 - 575: 13,-9 - 576: 14,-9 - 577: 15,-8 - 578: 15,-8 - 579: 14,-10 - 580: 15,-11 - 581: 13,-11 - 582: 13,-12 - 583: 14,-12 - 584: 19,-2 - 585: 20,-3 - 586: 20,-2 - 587: 21,-1 - 588: 20,-2 - 603: 19,1 - 604: 19,1 - 605: 20,1 - 606: 26,1 - 607: 26,2 - 608: 26,2 - 609: 25,2 - 610: 27,3 - 611: 28,3 - 612: 29,1 - 613: 27,1 - 614: 28,2 - 615: 29,3 - 616: 26,1 - 617: 25,2 - 618: 26,2 - 619: 27,3 - 620: 28,3 - 621: 29,3 - 622: 29,3 - 623: 11,-2 - 624: -3,-5 - 625: -5,-5 - 626: -5,-6 - 627: -6,-6 - 628: -7,-5 - 629: -6,-4 - 630: -10,-5 - 631: -9,-5 - 632: -9,-4 - 633: -9,-5 - 634: -13,-8 - 635: -12,-8 - 636: -13,-9 - 637: -14,-9 - 638: -14,-9 - 639: -13,-8 - 640: -12,-9 - 641: -14,-13 - 642: -15,-13 - 643: -16,-15 - 644: -16,-15 - 645: -16,-15 - 646: -16,-14 - 647: -9,30 - 648: -7,28 - 649: -8,27 - 650: -10,27 - 651: -10,27 - 652: -17,29 - 653: -16,29 - 654: -16,28 - 655: -16,27 - 656: -17,27 - 657: -18,29 - 658: -18,29 - 751: -45,-7 - 752: -46,-7 - 753: -45,-8 - 754: -44,-8 - 840: -39,1 - 841: -38,0 - 842: -37,1 - 843: -38,4 - 844: -37,6 - 845: -34,6 - 846: -37,7 - 847: -40,6 - 848: -41,5 - 849: -40,4 - 850: -37,4 - 851: -34,3 - 852: -32,1 - 853: -34,1 - 854: -35,1 - 855: -35,1 - 856: -33,0 - 857: -32,0 - 987: -37,9 - 988: -38,9 - 989: -38,9 - 990: -39,11 - 991: -39,12 - 992: -39,14 - 993: -38,15 - 994: -37,16 - 995: -38,17 - 996: -38,19 - 997: -39,19 - 998: -38,20 - 999: -38,21 - 1000: -39,18 - 1001: -39,17 - 1002: -37,21 - 1003: -37,23 - 1004: -39,24 - 1005: -39,23 - 1006: -37,22 - 1007: -37,26 - 1008: -38,27 - 1009: -39,25 - 1010: -38,25 - 1011: -38,29 - 1012: -39,29 - 1013: -38,27 - 1014: -38,27 - 1015: -37,27 - 1016: -37,27 - 1017: -34,25 - 1018: -32,26 - 1019: -33,28 - 1020: -35,28 - 1021: -35,25 - 1022: -33,25 - 1023: -32,27 - 1024: -34,28 - 1025: -35,28 - 1026: -33,26 - 1027: -34,25 - 1028: -35,28 - 1029: -27,28 - 1030: -26,28 - 1031: -25,28 - 1032: -26,27 - 1033: -24,28 - 1034: -23,28 - 1035: -26,28 - 1036: -24,26 - 1037: -23,26 - 1038: -24,27 - 1039: -26,28 - 1040: -24,27 - 1041: -18,33 - 1042: -17,31 - 1043: -15,32 - 1044: -16,33 - 1045: -20,32 - 1046: -19,32 - 1047: -19,32 - 1048: -21,33 - 1049: -22,32 - 1050: -21,32 - 1051: -23,33 - 1052: -27,33 - 1053: -28,33 - 1054: -29,32 - 1055: -27,32 - 1056: -29,33 - 1057: -31,32 - 1058: -29,31 - 1059: -30,32 - 1060: -32,32 - 1061: -32,31 - 1062: -32,32 - 1063: -34,32 - 1064: -35,31 - 1065: -38,32 - 1066: -38,33 - 1067: -40,32 - 1068: -39,31 - 1069: -40,32 - 1070: -43,32 - 1071: -42,31 - 1072: -42,30 - 1073: -43,32 - 1074: -45,32 - 1075: -42,31 - 1076: -42,32 - 1077: -45,31 - 1078: -46,30 - 1079: -44,30 - 1080: -45,32 - 1081: -47,33 - 1082: -48,33 - 1083: -50,32 - 1084: -49,31 - 1085: -48,32 - 1086: -50,33 - 1087: -51,32 - 1088: -50,31 - 1089: -51,32 - 1090: -53,33 - 1091: -52,33 - 1092: -53,32 - 1093: -54,31 - 1094: -56,33 - 1095: -56,32 - 1096: -53,32 - 1097: -52,31 - 1098: -54,31 - 1099: -57,33 - 1100: -58,32 - 1101: -57,33 - 1102: -59,32 - 1103: -58,30 - 1104: -57,29 - 1105: -57,29 - 1106: -58,29 - 1107: -59,27 - 1108: -58,25 - 1109: -57,26 - 1110: -57,28 - 1111: -58,27 - 1112: -58,23 - 1113: -58,20 - 1114: -57,20 - 1115: -57,22 - 1116: -57,23 - 1117: -59,21 - 1118: -58,20 - 1119: -57,20 - 1120: -57,21 - 1121: -58,20 - 1122: -59,18 - 1123: -58,17 - 1124: -58,16 - 1125: -57,17 - 1126: -57,19 - 1127: -58,18 - 1128: -59,16 - 1129: -58,14 - 1130: -58,14 - 1131: -54,19 - 1132: -54,20 - 1133: -55,19 - 1134: -54,18 - 1135: -53,19 - 1136: -54,20 - 1137: -59,14 - 1138: -58,13 - 1139: -57,12 - 1140: -58,11 - 1141: -58,13 - 1142: -58,11 - 1143: -59,10 - 1144: -58,12 - 1145: -58,11 - 1146: -57,8 - 1147: -58,7 - 1148: -58,7 - 1149: -57,9 - 1150: -58,9 - 1151: -58,5 - 1152: -58,4 - 1153: -58,4 - 1154: -57,5 - 1155: -59,6 - 1156: -58,3 - 1157: -57,1 - 1158: -58,-1 - 1159: -57,-2 - 1160: -58,1 - 1161: -58,2 - 1162: -59,0 - 1163: -58,-1 - 1164: -58,-3 - 1165: -58,-4 - 1166: -57,-4 - 1167: -59,-4 - 1168: -58,-4 - 1169: -57,-2 - 1170: -59,-3 - 1171: -58,-5 - 1172: -58,-7 - 1173: -57,-6 - 1174: -58,-5 - 1175: -59,-7 - 1176: -59,-8 - 1177: -57,-9 - 1178: -57,-9 - 1179: -58,-10 - 1180: -59,-10 - 1181: -75,5 - 1182: -75,5 - 1183: -73,5 - 1184: -72,5 - 1185: -70,6 - 1186: -71,5 - 1187: -75,5 - 1188: -73,5 - 1189: -73,6 - 1190: -75,6 - 1191: -74,4 - 1192: -70,4 - 1193: -68,5 - 1194: -67,5 - 1195: -75,5 - 1196: -74,4 - 1197: -71,5 - 1198: -66,6 - 1199: -64,6 - 1200: -66,5 - 1201: -62,4 - 1202: -61,5 - 1203: -64,5 - 1204: -66,5 - 1205: -62,5 - 1206: -68,4 - 1207: -67,6 - 1208: -54,5 - 1209: -56,6 - 1210: -53,6 - 1211: -51,6 - 1212: -50,5 - 1213: -49,4 - 1214: -46,5 - 1215: -44,5 - 1216: -45,6 - 1217: -49,6 - 1218: -47,5 - 1219: -44,4 - 1220: -45,5 - 1221: -46,5 - 1222: -55,28 - 1223: -54,27 - 1224: -51,28 - 1225: -49,28 - 1226: -51,29 - 1227: -53,28 - 1228: -52,27 - 1229: -49,27 - 1230: -50,29 - 1231: -52,29 - 1232: -54,28 - 1233: -54,28 - 1234: -50,27 - 1235: -49,27 - 1236: -50,29 - 1442: -42,10 - 1443: -43,10 - 1444: -42,9 - 1445: -41,8 - 1446: -41,11 - 1447: -43,11 - 1932: -59,31 - 1933: -22,35 - 1934: -20,35 - 1935: -19,35 - 1936: -19,35 - 1937: -22,35 - 1938: -23,35 - 1939: -20,35 - 1940: -16,36 - 1941: -16,37 - 1942: -17,37 - 1943: -18,35 - 1944: -16,36 - 1945: -17,38 - 1946: -18,38 - 1947: -18,36 - 1948: -16,37 - 1949: -17,40 - 1950: -18,39 - 1951: -17,38 - 1952: -17,42 - 1953: -18,41 - 1954: -17,39 - 1955: -16,42 - 1956: -17,43 - 1957: -17,41 - 1958: -16,44 - 1959: -17,45 - 1960: -18,43 - 1961: -16,45 - 1962: -17,47 - 1963: -17,45 - 1964: -16,48 - 1965: -18,49 - 1966: -17,47 - 1967: -16,49 - 1968: -18,49 - 1969: -18,47 - 1970: -16,50 - 1971: -18,49 - 1972: -16,50 - 1973: -17,50 - 1974: -17,46 - 1975: -18,45 - 1976: -17,45 - 1977: -18,47 - 1978: -17,45 - 1979: -15,47 - 1980: -16,47 - 1981: -16,45 - 1982: -14,48 - 1983: -14,48 - 1984: -13,47 - 1985: -12,48 - 1986: -13,47 - 1987: -11,48 - 1988: -13,48 - 1989: -12,46 - 1990: -11,47 - 1991: -12,48 - 1992: -13,49 - 1993: -13,47 - 1994: -12,47 - 1995: -12,47 - 2093: -22,40 - 2094: -21,41 - 2095: -22,42 - 2096: -23,42 - 2097: -23,40 - 2098: -21,39 - 2099: -20,38 - 2100: -21,38 - 2101: -22,40 - 2102: -23,39 - 2103: -23,39 - 2104: -22,41 - 2105: -23,41 - 2106: -22,40 - 2107: -22,38 - 2108: -23,38 - 2109: -23,37 - 2110: -22,37 - 2111: -21,39 - 2112: -22,39 - 2113: -21,37 - 2114: -20,39 - 2115: -21,41 - 2116: -23,42 - 2117: -22,39 - 2118: -21,39 - 2119: -21,42 - 2120: -20,42 - 2121: -22,42 - 2122: -21,41 - 2123: -20,44 - 2124: -20,45 - 2125: -21,46 - 2126: -20,48 - 2127: -22,48 - 2128: -22,46 - 2129: -20,45 - 2130: -22,44 - 2131: -22,48 - 2132: -22,48 - 2133: -23,45 - 2134: -22,44 - 2135: -21,44 - 2136: -20,46 - 2137: -21,48 - 2138: -23,48 - 2139: -23,46 - 2140: -21,44 - 2141: -21,44 - 2142: -22,45 - 2143: -20,47 - 2144: -22,48 - 2145: -22,46 - 2146: -22,44 - 2147: -20,44 - 2148: -21,48 - 2149: -22,48 - 2150: -23,47 - 2151: -22,44 - 2195: -17,53 - 2196: -18,53 - 2197: -19,53 - 2198: -19,56 - 2199: -19,57 - 2200: -19,57 - 2201: -15,57 - 2202: -15,55 - 2203: -15,54 - 2204: -16,53 - 2205: -18,53 - 2206: -12,55 - 2207: -13,54 - 2208: -12,53 - 2209: -11,53 - 2210: -10,55 - 2211: -12,56 - 2212: -12,54 - 2213: -11,54 - 2214: -9,54 - 2215: -7,54 - 2216: -9,53 - 2217: -10,53 - 2218: -10,56 - 2219: -12,55 - 2220: -11,54 - 2221: -8,54 - 2222: -12,57 - 2223: -13,57 - 2224: -11,56 - 2225: -11,57 - 2226: -12,57 - 2227: -6,59 - 2228: -6,58 - 2229: -6,60 - 2230: -6,60 - 2231: -12,59 - 2232: -13,59 - 2233: -13,60 - 2234: -13,62 - 2235: -14,60 - 2236: -13,60 - 2237: -13,62 - 2238: -14,63 - 2239: -15,63 - 2240: -14,63 - 2241: -15,63 - 2242: -16,62 - 2243: -15,62 - 2244: -15,64 - 2245: -17,64 - 2246: -17,63 - 2247: -16,63 - 2248: -17,65 - 2249: -19,64 - 2250: -20,63 - 2251: -17,64 - 2252: -17,66 - 2253: -19,65 - 2254: -20,63 - 2255: -21,62 - 2256: -20,63 - 2257: -21,61 - 2258: -20,60 - 2259: -22,60 - 2260: -20,62 - 2261: -19,63 - 2262: -18,64 - 2263: -19,65 - 2264: -19,65 - 2265: -17,66 - 2266: -15,65 - 2267: -14,64 - 2268: -14,64 - 2269: -19,64 - 2270: -22,63 - 2271: -22,62 - 2272: -22,60 - 2273: -22,59 - 2274: -20,59 - 2275: -19,63 - 2276: -17,64 - 2277: -15,62 - 2278: -19,60 - 2279: -19,59 - 2280: -18,61 - 2281: -15,59 - 2362: -36,-9 - 2423: -41,-8 - 2424: -41,-8 - 2425: -42,-7 - 2426: -41,-5 - 2427: -41,-4 - 2428: -40,-3 - 2429: -38,-5 - 2430: -38,-7 - 2431: -40,-7 - 2432: -41,-4 - 2433: -38,-3 - 2434: -38,-2 - 2435: -41,-3 - 2436: -40,-5 - 2437: -38,-7 - 2438: -37,-7 - 2439: -38,-4 - 2440: -38,-4 - 2441: -39,-5 - 2442: -35,-8 - 2443: -33,-7 - 2444: -33,-6 - 2445: -35,-7 - 2446: -34,-9 - 2447: -33,-8 - 2448: -34,-7 - 2449: -33,-10 - 2450: -33,-9 - 2451: -37,-7 - 2452: -38,-7 - 2453: -35,-7 - 2454: -37,-7 - 2455: -38,-8 - 2456: -40,-7 - 2457: -41,-5 - 2458: -41,-4 - 2459: -41,-5 - 2460: -41,-7 - 2461: -40,-7 - 2462: -39,-4 - 2463: -41,-7 - 2464: -42,-7 - 2465: -42,-8 - 2466: -42,-6 - 2467: -42,-3 - 2468: -42,-2 - 2469: -40,-2 - 2470: -38,-2 - 2471: -37,-2 - 2472: -37,-3 - 2473: -37,-5 - 2474: -34,-6 - 2475: -32,-7 - 2476: -32,-8 - 2477: -33,-11 - 2478: -32,-11 - 2479: -33,-11 - 2480: -35,-11 - 2481: -35,-10 - 2482: -35,-9 - 2483: -36,-10 - 2484: -36,-11 - 2485: -37,-8 - 2486: -37,-8 - 2487: -38,-8 - 2488: -40,-8 - 2803: 6,12 - 2804: 6,11 - 2805: 7,11 - 2806: 7,12 - 2807: 6,13 - 2808: 7,14 - 2809: 9,15 - 2810: 10,15 - 2811: 8,15 - 2812: 7,14 - 2813: 9,14 - 2814: 10,15 - 2815: 9,17 - 2816: 7,15 - 2817: 6,14 - 2818: 9,14 - 2819: 11,16 - 2820: 10,19 - 2821: 10,20 - 2822: 9,19 - 2823: 10,18 - 2824: 11,18 - 2825: 10,20 - 2826: 10,17 - 2827: 8,15 - 2828: 7,15 - 2829: 7,13 - 2830: 8,12 - 2831: 9,11 - 2832: 9,11 - 2833: 10,12 - 2834: 11,11 - 2835: 11,11 - 2836: 11,13 - 2837: 10,13 - 2838: 3,17 - 2839: 1,16 - 2840: -1,15 - 2841: -1,14 - 2842: 2,15 - 2843: 2,17 - 2844: -1,16 - 2845: 0,14 - 2846: 3,14 - 2847: 1,16 - 2848: -1,16 - 2849: -1,15 - 2850: 3,16 - 2851: 3,17 - 2852: 4,15 - 2853: 3,14 - 2854: 1,14 - 2855: -1,15 - 2856: -2,14 - 2857: -2,17 - 2858: -2,17 - 2859: 1,17 - 2860: 2,20 - 2861: 1,19 - 2862: 2,19 - 2863: 4,20 - 2864: 2,21 - 2865: 1,19 - 2866: 3,20 - 2867: 3,22 - 2868: 2,21 - 2869: 2,21 - 2870: 2,23 - 2871: 2,26 - 2872: 2,28 - 2873: 2,31 - 2874: 2,34 - 2875: 4,34 - 2876: 4,33 - 2877: 4,33 - 2878: 4,31 - 2879: 4,29 - 2880: 4,27 - 2881: 4,25 - 2882: 4,23 - 2883: 4,21 - 2884: 4,19 - 2885: 3,19 - 2886: 3,20 - 2887: 3,21 - 2888: 3,23 - 2889: 3,25 - 2890: 3,28 - 2891: 3,30 - 2892: 3,32 - 2893: 3,33 - 2894: 3,33 - 2895: 2,34 - 2896: 2,33 - 2897: 7,29 - 2898: 7,28 - 2899: 9,28 - 2900: 11,28 - 2901: 12,29 - 2902: 10,30 - 2903: 8,30 - 2904: 9,28 - 2905: 12,30 - 2906: 11,31 - 2907: 8,31 - 2908: 9,29 - 2909: 11,29 - 2910: 10,30 - 2911: 8,25 - 2912: 7,26 - 2913: 7,24 - 2914: 7,23 - 2915: 6,22 - 2916: 7,25 - 2917: 9,25 - 2918: 9,23 - 2919: 8,22 - 2920: 10,24 - 2921: 8,25 - 2922: 7,24 - 2923: 7,23 - 2924: 6,25 - 2925: 8,36 - 2926: 8,37 - 2927: 6,36 - 2928: 7,35 - 2929: 8,34 - 2930: 10,34 - 2931: 8,35 - 2932: 6,34 - 2933: 8,33 - 2934: 11,34 - 2935: 11,36 - 2936: 10,37 - 2937: 12,35 - 2938: 11,33 - 2939: 11,35 - 2940: 9,37 - 2941: 9,35 - 2942: 11,34 - 2943: 11,37 - 2944: 9,36 - 2945: 7,36 - 2946: 7,37 - 2947: 6,35 - 2948: 7,34 - 2949: 8,33 - 2950: 9,33 - 2951: 6,33 - 2952: 12,34 - 2953: 12,37 - 2954: 11,34 - 2955: 4,40 - 2956: 2,42 - 2957: 0,41 - 2958: 1,40 - 2959: 0,40 - 2960: -1,39 - 2961: 0,37 - 2962: 4,40 - 2963: 0,38 - 2964: 0,38 - 2965: 2,36 - 2966: 4,36 - 2967: 2,38 - 2968: 0,37 - 2969: -1,37 - 2970: 1,38 - 2971: 4,39 - 2972: 2,40 - 2973: 0,39 - 2974: 2,37 - 2975: 3,40 - 2976: 2,39 - 2977: 3,36 - 2978: 2,36 - 2979: 2,39 - 2980: -1,39 - 2981: 1,37 - 3307: -2,8 - 3308: -2,8 - 3309: -2,9 - 3310: -1,10 - 3311: 1,9 - 3312: 0,8 - 3313: -1,8 - 3314: -1,9 - 3315: 1,10 - 3316: 1,9 - 3317: -2,9 - 3318: -3,9 - 3319: -3,10 - 3320: -3,10 - 3491: -60,50 - 3492: -60,51 - 3493: -61,53 - 3494: -63,54 - 3495: -64,55 - 3496: -65,54 - 3497: -65,52 - 3498: -63,51 - 3499: -61,51 - 3500: -63,50 - 3501: -65,53 - 3502: -62,53 - 3503: -62,53 - 3504: -64,52 - 3505: -60,54 - 3506: -59,55 - 3507: -62,54 - 3508: -61,54 - 3509: -58,53 - 3510: -57,53 - 3511: -54,54 - 3512: -51,54 - 3513: -52,55 - 3514: -54,56 - 3515: -55,56 - 3516: -55,54 - 3517: -53,54 - 3518: -52,56 - 3519: -54,57 - 3520: -56,57 - 3521: -57,56 - 3522: -57,55 - 3523: -56,54 - 3524: -58,55 - 3525: -58,58 - 3526: -55,57 - 3527: -53,57 - 3528: -52,57 - 3529: -51,56 - 3530: -52,55 - 3531: -54,55 - 3532: -55,57 - 3533: -54,58 - 3534: -52,57 - 3535: -49,58 - 3536: -48,58 - 3537: -47,59 - 3538: -48,61 - 3539: -49,61 - 3540: -48,58 - 3541: -47,60 - 3542: -47,62 - 3543: -49,61 - 3544: -49,59 - 3545: -48,58 - 3546: -47,59 - 3547: -48,55 - 3548: -49,55 - 3549: -47,55 - 3550: -47,55 - 3551: -47,54 - 3552: -47,54 - 3553: -48,50 - 3554: -49,50 - 3555: -48,51 - 3556: -47,51 - 3557: -61,60 - 3558: -61,60 - 3559: -60,61 - 3560: -58,61 - 3561: -56,60 - 3562: -53,60 - 3563: -53,61 - 3564: -55,61 - 3565: -59,60 - 3566: -60,60 - 3567: -57,60 - 3568: -54,60 - 3569: -53,60 - 3570: -52,62 - 3571: -52,63 - 3572: -50,63 - 3573: -49,65 - 3574: -51,65 - 3575: -52,64 - 3576: -53,63 - 3577: -52,64 - 3578: -50,65 - 3579: -47,64 - 3580: -45,64 - 3581: -43,64 - 3582: -43,65 - 3583: -43,64 - 3584: -43,62 - 3585: -42,62 - 3586: -42,64 - 3587: -44,65 - 3588: -43,62 - 3589: -43,61 - 3590: -43,63 - 3591: -47,64 - 3592: -49,65 - 3593: -50,65 - 3594: -48,64 - 3595: -48,65 - 3596: -50,64 - 3597: -53,82 - 3598: -53,82 - 3599: -53,83 - 3600: -51,84 - 3601: -51,86 - 3602: -52,89 - 3603: -53,89 - 3604: -53,88 - 3605: -52,87 - 3606: -51,89 - 3607: -53,90 - 3608: -53,89 - 3609: -53,87 - 3610: -53,85 - 3611: -52,83 - 3612: -51,83 - 3613: -51,86 - 3614: -51,89 - 3615: -52,89 - 3616: -56,89 - 3617: -56,89 - 3618: -55,88 - 3619: -55,90 - 3620: -56,90 - 3621: -55,86 - 3622: -55,86 - 3623: -56,86 - 3624: -56,86 - 3625: -55,83 - 3626: -55,84 - 3627: -56,83 - 3628: -55,82 - 3629: -55,82 - 3630: -54,83 - 3631: -54,83 - 3632: -54,89 - 3633: -57,86 - 3634: -57,86 - 3635: -58,89 - 3636: -59,89 - 3637: -61,88 - 3638: -61,87 - 3639: -61,85 - 3640: -59,83 - 3641: -59,83 - 3642: -58,86 - 3643: -60,88 - 3644: -61,88 - 3645: -61,86 - 3646: -62,85 - 3647: -62,84 - 3648: -61,83 - 3649: -60,86 - 3650: -61,88 - 3651: -62,89 - 3652: -61,87 - 3653: -60,85 - 3654: -59,84 - 3655: -59,83 - 3656: -60,84 - 3657: -62,84 - 3658: -60,87 - 3659: -60,89 - 3660: -60,89 - 3661: -58,89 - 3701: -61,58 - 3702: -62,58 - 3703: -61,57 - 3704: -61,57 - 3705: -61,58 - 3706: -61,57 - 3707: -60,57 - 4099: -58,52 - 4100: -58,50 - 4101: -58,50 - 4102: -57,50 - 4103: -57,51 - 4104: -58,49 - 4105: -57,49 - 4106: -55,52 - 4107: -55,50 - 4108: -54,49 - 4109: -54,51 - 4110: -52,52 - 4111: -52,51 - 4112: -52,50 - 4113: -51,49 - 4114: -51,51 - 4115: -51,51 - 4255: -83,33 - 4256: -82,32 - 4257: -82,31 - 4258: -82,30 - 4259: -81,30 - 4260: -80,33 - 4261: -79,33 - 4262: -78,33 - 4263: -80,32 - 4264: -82,32 - 4265: -81,31 - 4266: -79,30 - 4267: -77,30 - 4268: -77,32 - 4269: -78,31 - 4270: -78,28 - 4271: -78,29 - 4272: -79,31 - 4273: -77,32 - 4274: -80,33 - 4275: -81,30 - 4276: -80,32 - 4277: -81,33 - 4278: -67,31 - 4279: -68,31 - 4280: -68,30 - 4281: -67,28 - 4282: -67,26 - 4283: -66,26 - 4284: -64,27 - 4285: -67,27 - 4286: -65,26 - 4287: -64,25 - 4288: -65,28 - 4289: -67,28 - 4290: -68,26 - 4291: -67,25 - 4292: -67,30 - 4293: -64,30 - 4294: -64,32 - 4295: -65,33 - 4296: -66,33 - 4297: -65,34 - 4298: -66,34 - 4299: -68,34 - 4300: -70,33 - 4301: -68,33 - 4302: -70,34 - 4303: -72,35 - 4304: -74,34 - 4305: -73,33 - 4306: -71,34 - 4307: -73,35 - 4308: -75,34 - 4309: -75,33 - 4310: -75,31 - 4311: -75,30 - 4312: -74,29 - 4313: -75,26 - 4314: -75,27 - 4315: -75,27 - 4316: -75,25 - 4317: -74,23 - 4318: -74,26 - 4319: -75,26 - 4320: -76,25 - 4321: -77,25 - 4322: -76,24 - 4323: -76,26 - 4324: -76,25 - 4325: -74,23 - 4326: -74,20 - 4327: -75,19 - 4328: -75,22 - 4329: -75,23 - 4330: -74,22 - 4331: -70,22 - 4332: -70,22 - 4333: -65,22 - 4334: -63,22 - 4335: -66,21 - 4336: -68,22 - 4337: -70,21 - 4338: -66,20 - 4339: -69,20 - 4340: -71,20 - 4341: -67,20 - 4342: -70,22 - 4343: -66,22 - 4344: -68,20 - 4345: -81,23 - 4346: -83,23 - 4347: -85,23 - 4348: -86,23 - 4349: -87,26 - 4350: -86,27 - 4351: -85,27 - 4352: -82,27 - 4353: -81,26 - 4354: -80,25 - 4355: -80,23 - 4356: -80,23 - 4357: -79,26 - 4358: -80,27 - 4359: -80,24 - 4360: -81,23 - 4361: -82,22 - 4362: -84,23 - 4363: -86,25 - 4364: -86,26 - 4365: -86,26 - 4366: -86,23 - 4367: -85,30 - 4368: -86,30 - 4369: -86,29 - 4370: -85,30 - 4371: -85,21 - 4372: -86,21 - 4373: -86,20 - 4374: -85,21 - 4375: -82,19 - 4376: -82,19 - 4377: -82,20 - 4378: -83,18 - 4379: -82,18 - 4380: -80,19 - 4381: -78,19 - 4382: -79,19 - 4383: -81,19 - 4384: -80,18 - 4385: -79,18 - 4386: -77,19 - 4387: -77,21 - 4388: -77,22 - 4389: -78,21 - 4390: -77,20 - 4391: -77,21 - 4392: -77,20 - 4393: -78,18 - 4394: -80,19 - 4395: -81,20 - 4396: -82,19 - 4397: -80,20 - 4398: -80,20 - 4399: -74,17 - 4400: -75,16 - 4401: -73,15 - 4402: -73,16 - 4403: -74,17 - 4404: -73,16 - 4405: -72,15 - 4406: -72,16 - 4407: -74,17 - 4408: -74,17 - 4417: -62,42 - 4418: -63,42 - 4419: -64,41 - 4420: -64,39 - 4421: -64,41 - 4422: -65,40 - 4423: -65,39 - 4424: -64,40 - 4425: -63,41 - 4426: -61,41 - 4427: -61,38 - 4428: -62,38 - 4429: -61,41 - 4430: -63,41 - 4431: -63,39 - 4432: -62,39 - 4433: -63,42 - 4434: -64,41 - 4435: -64,41 - 4436: -63,39 - 4437: -61,40 - 4438: -62,42 - 4439: -64,41 - 4440: -65,40 - 4441: -65,39 - 4442: -65,40 - 4443: -64,41 - 4444: -62,42 - 4445: -64,44 - 4446: -65,44 - 4447: -64,44 - 4448: -61,45 - 4449: -63,45 - 4450: -64,45 - 4451: -64,44 - 4452: -62,44 - 4453: -62,45 - 4454: -64,45 - 4514: -73,49 - 4515: -73,48 - 4516: -73,47 - 4517: -71,48 - 4518: -72,49 - 4519: -72,48 - 4520: -70,49 - 4521: -70,49 - 4522: -70,48 - 4523: -69,47 - 4524: -71,48 - 4525: -72,48 - 4526: -72,49 - 4568: -67,49 - 4569: -68,49 - 4570: -67,50 - 4571: -67,50 - 4572: -66,48 - 4573: -67,47 - 4574: -66,46 - 4575: -66,47 - 4576: -67,46 - 4581: -67,45 - 4582: -67,44 - 4583: -68,42 - 4584: -68,40 - 4585: -68,38 - 4586: -67,38 - 4587: -67,43 - 4588: -67,46 - 4589: -67,45 - 4590: -67,41 - 4591: -67,37 - 4592: -68,37 - 4593: -70,37 - 4594: -72,37 - 4595: -74,37 - 4596: -76,37 - 4597: -76,39 - 4598: -76,41 - 4599: -76,43 - 4600: -76,45 - 4601: -76,48 - 4602: -75,48 - 4603: -75,45 - 4604: -75,43 - 4605: -75,43 - 4606: -76,47 - 4607: -76,50 - 4608: -76,52 - 4609: -76,50 - 4610: -74,52 - 4611: -74,52 - 4612: -72,51 - 4613: -72,53 - 4614: -72,52 - 4615: -71,51 - 4616: -70,53 - 4617: -71,55 - 4618: -72,55 - 4619: -72,52 - 4620: -72,52 - 4621: -71,55 - 4622: -72,55 - 4623: -72,53 - 4624: -70,51 - 4625: -70,53 - 4626: -70,55 - 4627: -71,56 - 4628: -71,55 - 4629: -70,54 - 4659: -76,54 - 4660: -77,54 - 4661: -78,54 - 4662: -78,53 - 4663: -68,57 - 4664: -68,56 - 4665: -68,55 - 4666: -68,52 - 4667: -68,50 - 4668: -61,35 - 4669: -62,36 - 4670: -62,36 - 4671: -64,36 - 4672: -67,36 - 4673: -68,36 - 4674: -68,38 - 4675: -68,40 - 4676: -68,39 - 4677: -71,43 - 4678: -70,43 - 4679: -71,44 - 4680: -72,44 - 4681: -73,44 - 4682: -71,43 - 4683: -71,41 - 4684: -72,40 - 4685: -72,42 - 4686: -72,42 - 4687: -73,40 - 4688: -72,39 - 4689: -70,39 - 4690: -70,41 - 4691: -71,43 - 4692: -72,44 - 4693: -72,44 - 4694: -73,43 - 4695: -61,33 - 4696: -60,33 - 4697: -62,33 - 4698: -61,32 - 4699: -60,31 - 4700: -60,32 - 4701: -61,33 - 4702: -62,32 - 4703: -62,31 - 4704: -61,31 - 4791: -69,16 - 4792: -71,17 - 4793: -71,16 - 4794: -70,15 - 4795: -69,16 - 4796: -71,16 - 4797: -71,22 - 4798: -71,21 - 4799: -71,22 - 4800: -68,22 - 4801: -69,22 - 4802: -65,22 - 4803: -70,20 - 4804: -63,19 - 4805: -68,20 - 4806: -70,22 - 4979: -84,32 - 4980: -85,33 - 4981: -84,35 - 4982: -84,38 - 4983: -84,40 - 4984: -84,43 - 4985: -83,45 - 4986: -82,46 - 4987: -80,46 - 4988: -80,45 - 4989: -82,46 - 4990: -84,45 - 4991: -82,43 - 4992: -81,44 - 4993: -84,45 - 4994: -85,46 - 4995: -82,44 - 4996: -80,43 - 4997: -82,42 - 4998: -84,42 - 4999: -83,41 - 5000: -79,42 - 5001: -80,43 - 5002: -83,40 - 5003: -81,39 - 5004: -82,40 - 5005: -83,41 - 5006: -82,40 - 5007: -80,39 - 5008: -83,39 - 5009: -84,38 - 5010: -82,36 - 5011: -80,35 - 5012: -80,36 - 5013: -82,39 - 5014: -81,41 - 5015: -80,42 - 5016: -81,44 - 5017: -64,14 - 5018: -65,14 - 5019: -65,13 - 5020: -65,11 - 5021: -64,10 - 5022: -64,13 - 5023: -65,14 - 5024: -65,12 - 5025: -64,11 - 5026: -62,12 - 5027: -62,14 - 5028: -63,11 - 5029: -61,11 - 5030: -61,13 - 5031: -62,14 - 5032: -62,12 - 5033: -62,10 - 5065: -67,8 - 5066: -66,8 - 5067: -63,8 - 5068: -62,8 - 5069: -62,8 - 5070: -65,8 - 5071: -67,8 - 5072: -68,9 - 5073: -68,12 - 5074: -67,13 - 5075: -67,13 - 5076: -67,15 - 5077: -67,16 - 5078: -66,17 - 5079: -63,16 - 5080: -62,16 - 5081: -62,16 - 5082: -64,17 - 5083: -64,16 - 5084: -62,17 - 5085: -61,19 - 5086: -62,19 - 5087: -61,20 - 5088: -61,21 - 5089: -61,23 - 5090: -62,22 - 5091: -61,23 - 5092: -61,24 - 5093: -62,26 - 5094: -62,27 - 5095: -62,28 - 5096: -61,36 - 5097: -61,36 - 5098: -55,44 - 5099: -45,50 - 5100: -45,51 - 5101: -45,53 - 5102: -44,55 - 5103: -43,55 - 5104: -42,55 - 5105: -41,55 - 5106: -41,54 - 5107: -39,55 - 5108: -38,55 - 5109: -39,55 - 5110: -38,54 - 5111: -35,54 - 5112: -34,55 - 5113: -35,55 - 5114: -33,54 - 5115: -32,54 - 5116: -33,53 - 5117: -33,51 - 5118: -32,49 - 5119: -31,49 - 5120: -30,50 - 5121: -30,50 - 5122: -28,50 - 5123: -27,50 - 5124: -26,50 - 5125: -26,49 - 5126: -24,51 - 5127: -24,51 - 5128: -22,51 - 5129: -20,51 - 5130: -20,51 - 5131: -23,51 - 5132: -26,50 - 5133: -26,48 - 5134: -25,46 - 5135: -25,48 - 5136: -26,47 - 5137: -26,45 - 5138: -25,43 - 5139: -25,44 - 5140: -26,44 - 5141: -26,42 - 5142: -25,40 - 5143: -25,41 - 5144: -26,41 - 5145: -26,38 - 5146: -25,37 - 5147: -25,38 - 5148: -26,38 - 5149: -26,36 - 5150: -26,36 - 5151: -26,39 - 5152: -26,41 - 5153: -25,39 - 5154: -25,39 - 5155: -26,40 - 5156: -26,40 - 5157: -26,41 - 5158: -26,43 - 5159: -26,43 - 5160: -13,51 - 5161: -12,51 - 5162: -10,51 - 5163: -8,51 - 5164: -8,50 - 5165: -9,49 - 5166: -9,47 - 5167: -8,47 - 5168: -6,47 - 5169: -4,47 - 5170: -5,46 - 5171: -5,46 - 5172: -3,47 - 5173: -2,47 - 5174: -2,46 - 5175: 0,46 - 5176: 0,47 - 5177: 0,46 - 5178: 2,47 - 5179: 2,47 - 5180: 1,46 - 5181: 4,46 - 5182: 4,47 - 5183: 4,47 - 5184: 5,46 - 5185: 7,47 - 5186: 7,48 - 5187: 7,48 - 5188: 9,48 - 5189: 10,48 - 5190: 11,48 - 5191: 10,48 - 5192: 13,48 - 5193: 14,48 - 5194: 15,48 - 5195: 16,48 - 5196: 15,47 - 5197: 14,45 - 5198: 15,46 - 5199: 14,45 - 5200: 15,45 - 5201: 15,46 - 5202: 14,44 - 5203: 14,42 - 5204: 15,42 - 5205: 15,42 - 5206: 15,41 - 5207: 15,40 - 5208: 14,41 - 5209: 14,39 - 5210: 14,39 - 5211: 12,40 - 5212: 10,39 - 5213: 12,39 - 5214: 11,40 - 5215: 9,40 - 5216: 8,39 - 5217: 8,40 - 5218: 8,39 - 5219: 8,39 - 5220: 7,40 - 5221: 7,41 - 5222: 7,43 - 5223: 6,45 - 5224: 6,44 - 5225: 6,46 - 5226: 6,45 - 5227: 6,45 - 5228: 3,47 - 5229: 2,46 - 5230: 2,46 - 5231: 1,47 - 5232: 1,47 - 5233: 0,46 - 5234: -3,45 - 5235: -3,43 - 5236: -3,42 - 5237: -4,44 - 5238: -4,43 - 5239: -4,42 - 5240: -3,40 - 5241: -3,41 - 5242: -4,40 - 5243: -4,40 - 5244: -4,44 - 5245: -4,44 - 5246: -3,40 - 5247: -3,38 - 5248: -3,37 - 5249: -5,36 - 5250: -5,36 - 5251: -4,37 - 5252: -6,36 - 5253: -7,36 - 5254: -8,37 - 5255: -9,36 - 5256: -9,37 - 5257: -10,36 - 5258: -9,36 - 5259: -8,37 - 5260: -9,36 - 5261: 14,37 - 5262: 14,37 - 5263: 14,35 - 5264: 15,36 - 5265: 15,36 - 5266: 14,33 - 5267: 15,35 - 5268: 15,34 - 5269: 15,34 - 5270: 15,34 - 5271: 14,34 - 5272: 17,34 - 5273: 20,35 - 5274: 18,35 - 5275: 17,34 - 5276: 19,34 - 5277: 19,35 - 5278: 20,35 - 5279: 22,35 - 5280: 22,34 - 5281: 23,33 - 5282: 21,35 - 5283: 20,35 - 5284: 18,35 - 5285: 23,32 - 5286: 22,31 - 5287: 22,30 - 5288: 23,31 - 5289: 22,30 - 5290: 23,28 - 5291: 23,27 - 5292: 23,27 - 5293: 22,26 - 5294: 23,25 - 5295: 23,23 - 5296: 23,22 - 5297: 22,23 - 5298: 22,24 - 5299: 22,24 - 5300: 22,23 - 5301: 21,26 - 5302: 18,26 - 5303: 17,25 - 5304: 19,25 - 5305: 16,26 - 5306: 15,26 - 5307: 14,25 - 5308: 15,23 - 5309: 14,22 - 5310: 14,22 - 5311: 13,20 - 5312: 14,21 - 5313: 13,21 - 5314: 14,19 - 5315: 14,18 - 5316: 14,18 - 5317: 14,18 - 5318: 13,16 - 5319: 13,16 - 5320: 13,17 - 5321: 14,16 - 5322: 14,15 - 5323: 13,14 - 5324: 13,14 - 5325: 14,13 - 5326: 14,13 - 5327: 13,12 - 5328: 14,12 - 5329: 13,11 - 5330: 14,10 - 5331: 13,11 - 5332: 13,9 - 5333: 14,9 - 5334: 14,8 - 5335: 12,8 - 5336: 12,8 - 5337: 11,8 - 5338: 10,8 - 5339: 10,8 - 5340: 9,9 - 5341: 8,9 - 5342: 7,9 - 5343: 6,9 - 5344: 4,9 - 5345: 4,9 - 5346: 4,10 - 5347: 4,12 - 5348: 3,12 - 5349: 2,12 - 5350: 1,12 - 5351: -1,12 - 5352: -1,12 - 5353: -3,12 - 5354: -4,12 - 5355: -5,12 - 5356: -6,11 - 5357: -6,10 - 5358: -7,10 - 5359: -6,11 - 5360: -6,14 - 5361: -5,14 - 5362: -4,16 - 5363: -5,17 - 5364: -7,17 - 5365: -8,17 - 5366: -8,17 - 5367: -9,17 - 5368: -9,17 - 5369: -7,18 - 5370: -7,19 - 5371: -7,21 - 5372: -7,22 - 5373: -7,23 - 5374: -8,25 - 5375: -9,25 - 5376: -9,24 - 5377: -8,24 - 5378: -8,25 - 5379: -9,25 - 5380: -10,25 - 5381: -8,15 - 5382: -9,15 - 5383: -10,14 - 5384: -10,14 - 5385: -8,12 - 5386: -9,12 - 5387: -9,12 - 5388: -10,11 - 5389: -9,8 - 5390: -9,9 - 5391: -10,9 - 5392: -9,8 - 5393: -21,9 - 5394: -20,9 - 5395: -20,10 - 5396: -21,12 - 5397: -21,11 - 5398: -20,13 - 5399: -20,14 - 5400: -21,16 - 5401: -21,14 - 5402: -20,18 - 5403: -21,17 - 5404: -21,16 - 5405: -20,18 - 5406: -17,20 - 5407: -16,20 - 5408: -18,20 - 5409: -20,20 - 5410: -20,20 - 5411: -21,20 - 5412: -20,22 - 5413: -20,23 - 5414: -21,24 - 5415: -20,23 - 5416: -20,26 - 5417: -20,27 - 5418: -20,28 - 5419: -21,26 - 5420: -21,24 - 5421: -20,21 - 5422: -22,20 - 5423: -22,22 - 5424: -23,22 - 5425: -24,21 - 5426: -23,21 - 5427: -25,21 - 5428: -27,21 - 5429: -28,21 - 5430: -29,21 - 5431: -30,21 - 5432: -31,20 - 5433: -31,20 - 5434: -32,18 - 5435: -31,17 - 5436: -31,15 - 5437: -31,15 - 5438: -31,13 - 5439: -31,13 - 5440: -32,12 - 5441: -33,12 - 5442: -34,12 - 5443: -34,11 - 5444: -34,11 - 5445: -34,12 - 5446: -34,10 - 5447: -34,9 - 5448: -35,12 - 5449: -34,12 - 5450: -33,13 - 5451: -32,13 - 5452: -31,13 - 5453: -31,14 - 5454: -45,9 - 5455: -45,9 - 5456: -45,10 - 5457: -45,11 - 5458: -45,12 - 5459: -45,13 - 5460: -45,14 - 5461: -46,14 - 5462: -48,14 - 5463: -49,14 - 5464: -50,14 - 5465: -51,14 - 5466: -51,14 - 5467: -51,16 - 5468: -51,17 - 5469: -51,18 - 5470: -51,19 - 5471: -51,20 - 5472: -51,21 - 5473: -51,21 - 5474: -49,21 - 5475: -48,21 - 5476: -47,21 - 5477: -46,21 - 5478: -46,21 - 5479: -42,20 - 5480: -42,20 - 5481: -45,21 - 5482: -46,20 - 5483: -45,20 - 5484: -42,18 - 5485: -42,18 - 5486: -42,17 - 5487: -43,18 - 5488: -42,17 - 5489: -42,17 - 5490: -46,18 - 5491: -45,17 - 5492: -45,17 - 5493: -46,18 - 5494: -48,18 - 5495: -48,17 - 5496: -49,19 - 5497: -49,18 - 5498: -49,17 - 5499: -48,19 - 5500: -45,21 - 5501: -45,22 - 5502: -45,23 - 5503: -46,23 - 5504: -45,24 - 5505: -46,25 - 5506: -46,25 - 5507: -45,26 - 5508: -46,27 - 5509: -45,27 - 5510: -46,28 - 5511: -46,27 - 5535: -10,57 - 5536: -10,57 - 5537: -9,57 - 5538: -8,57 - 5539: -8,57 - 5540: -10,57 - 5541: -11,57 - 5542: -8,56 - 5543: -7,56 - 5544: -7,55 - 5545: -8,56 - 5546: -8,56 - 5547: -8,56 - 5548: -7,56 - 5549: -9,59 - 5550: -8,59 - 5551: -9,59 - 5552: -10,59 - 5553: -10,60 - 5554: -10,61 - 5555: -9,61 - 5556: -9,60 - 5557: -8,59 - 5558: -8,60 - 5559: -8,61 - 5560: -10,61 - 5561: -10,60 - 5562: -9,59 - 5563: -8,59 - 5564: -9,61 - 5565: -10,61 - 5566: -10,60 - 5567: -9,60 - 5568: -8,61 - 5569: -10,60 - 5570: -8,59 - 5571: -8,60 - 5572: -9,60 - 5573: -8,61 - 5574: -10,61 - 5575: -14,61 - 5576: -14,61 - 5577: -17,62 - 5578: -19,62 - 5579: -18,63 - 5580: -18,64 - 5581: -18,65 - 5582: -16,65 - 5583: -18,66 - 5584: -20,65 - 5585: -19,66 - 5586: -21,64 - 5587: -15,66 - 5588: -14,65 - 5589: -16,66 - 5590: -13,64 - 5591: -14,59 - 5592: -21,59 - 5593: -22,59 - 5594: -22,61 - 5595: -22,62 - 5596: -16,64 - 5597: -18,62 - 5598: -27,53 - 5599: -27,53 - 5600: -51,62 - 5601: -51,62 - 5602: -51,63 - 5603: -51,64 - 5604: -50,64 - 5605: -49,64 - 5606: -49,64 - 5607: -51,64 - 5608: -53,65 - 5609: -53,65 - 5610: -44,63 - 5611: -44,62 - 5612: -44,62 - 5613: -56,61 - 5614: -54,61 - 5615: -54,61 - 5616: -58,56 - 5617: -51,55 - 5618: -51,54 - 5619: -51,53 - 5620: -52,53 - 5621: -54,53 - 5622: -55,53 - 5623: -57,53 - 5624: -57,53 - 5625: -52,53 - 5626: -54,54 - 5627: -55,54 - 5628: -55,56 - 5629: -56,56 - 5630: -57,57 - 5631: -57,57 - 5632: -57,34 - 5633: -58,34 - 5634: -59,35 - 5635: -59,35 - 5636: -58,35 - 5637: -58,35 - 5638: -56,35 - 5639: -57,36 - 5640: -58,36 - 5641: -56,37 - 5642: -58,37 - 5643: -58,37 - 5644: -58,36 - 5645: -57,37 - 5646: -58,38 - 5647: -59,37 - 5648: -57,37 - 5649: -58,39 - 5650: -59,38 - 5651: -58,37 - 5652: -57,38 - 5653: -58,40 - 5654: -59,40 - 5655: -59,41 - 5656: -59,44 - 5657: -59,45 - 5658: -59,46 - 5659: -57,46 - 5660: -57,45 - 5661: -57,42 - 5662: -57,41 - 5663: -57,40 - 5664: -57,38 - 5665: -58,39 - 5666: -58,40 - 5667: -58,42 - 5668: -58,43 - 5669: -58,45 - 5670: -58,45 - 5671: -58,46 - 5672: -58,46 - 5673: -59,43 - 5674: -59,42 - 5675: -58,42 - 5676: -59,39 - 5677: -59,38 - 5678: -57,39 - 5679: -57,40 - 5680: -58,41 - 5681: -59,41 - 5682: -59,43 - 5683: -57,43 - 5684: -57,44 - 5685: -59,46 - 5686: -59,46 - 5687: -59,47 - 5688: -58,47 - 5689: -56,47 - 5690: -55,47 - 5691: -55,47 - 5692: -56,47 - 5693: -56,46 - 5694: -58,47 - 5695: -53,47 - 5696: -53,47 - 5697: -55,47 - 5698: -54,46 - 5699: -53,46 - 5700: -52,46 - 5701: -54,47 - 5702: -54,46 - 5703: -51,47 - 5704: -52,46 - 5705: -50,46 - 5706: -49,46 - 5707: -49,47 - 5708: -51,47 - 5709: -50,46 - 5710: -48,46 - 5711: -48,47 - 5712: -48,47 - 5713: -47,47 - 5714: -47,48 - 5715: -48,49 - 5716: -49,49 - 5717: -49,48 - 5718: -50,47 - 5719: -50,46 - 5720: -48,47 - 5721: -48,48 - 5722: -47,49 - 5723: -52,46 - 5724: -50,46 - 5725: -48,46 - 5726: -48,46 - 5727: -48,48 - 5728: -47,47 - 5729: -47,46 - 5730: -48,44 - 5731: -49,45 - 5732: -49,44 - 5733: -48,43 - 5734: -47,45 - 5735: -47,45 - 5736: -49,45 - 5737: -50,44 - 5738: -50,43 - 5739: -49,43 - 5740: -50,45 - 5741: -49,44 - 5742: -49,42 - 5743: -48,42 - 5744: -47,43 - 5745: -47,44 - 5746: -47,42 - 5747: -47,41 - 5748: -48,41 - 5749: -49,40 - 5750: -48,40 - 5751: -47,41 - 5752: -49,42 - 5753: -49,42 - 5754: -49,40 - 5755: -48,39 - 5756: -47,38 - 5757: -47,39 - 5758: -48,39 - 5759: -49,38 - 5760: -49,37 - 5761: -48,35 - 5762: -47,36 - 5763: -48,37 - 5764: -48,38 - 5765: -48,38 - 5766: -48,36 - 5767: -47,35 - 5768: -47,35 - 5769: -48,36 - 5770: -49,35 - 5771: -49,35 - 5772: -49,38 - 5773: -48,39 - 5774: -48,40 - 5775: -49,42 - 5776: -49,41 - 5777: -47,39 - 5778: -49,39 - 5779: -47,37 - 5780: -49,34 - 5781: -48,34 - 5782: -47,34 - 5783: -47,34 - 5784: -48,34 - 5785: -10,34 - 5786: -11,33 - 5787: -11,32 - 5788: -11,31 - 5789: -13,30 - 5790: -14,31 - 5791: -14,29 - 5792: -14,29 - 5793: -11,32 - 5794: -10,33 - 5795: -9,33 - 5796: -10,34 - 5797: -11,34 - 5798: -10,34 - 5799: -8,34 - 5800: -7,33 - 5801: -7,32 - 5802: -8,31 - 5803: -10,31 - 5804: -12,30 - 5805: -13,29 - 5806: -12,28 - 5807: -14,25 - 5808: -14,23 - 5809: -14,22 - 5810: -12,21 - 5811: -12,22 - 5812: -12,20 - 5813: -12,19 - 5814: -14,21 - 5815: -14,21 - 5816: -13,20 - 5817: -13,22 - 5818: -14,24 - 5819: -14,25 - 5820: -14,15 - 5821: -13,13 - 5822: -12,15 - 5823: -13,16 - 5824: -14,17 - 5825: -13,16 - 5826: -13,16 - 5827: -14,16 - 5828: -14,19 - 5829: -13,21 - 5830: -13,23 - 5831: -13,25 - 5832: -13,11 - 5833: -12,13 - 5834: -13,12 - 5835: -13,12 - 5836: -12,6 - 5837: -13,6 - 5838: -14,6 - 5839: -13,4 - 5840: -12,5 - 5841: -12,5 - 5842: -13,5 - 5843: -14,4 - 5844: -10,5 - 5845: -9,5 - 5846: -10,4 - 5847: -9,4 - 5848: -8,4 - 5849: -8,4 - 5850: -8,4 - 5851: -6,4 - 5852: -7,6 - 5853: -8,6 - 5854: -6,7 - 5855: -4,6 - 5856: -3,6 - 5857: -3,5 - 5858: -3,4 - 5859: -4,4 - 5860: -2,5 - 5861: -2,5 - 5862: -3,4 - 5863: -1,5 - 5864: 1,6 - 5865: 0,5 - 5866: 0,5 - 5867: 2,4 - 5868: 4,5 - 5869: 2,6 - 5870: 2,5 - 5871: 4,4 - 5872: 4,5 - 5873: 3,6 - 5874: 3,4 - 5875: 4,5 - 5876: 3,5 - 5877: 4,6 - 5878: 7,4 - 5879: 6,4 - 5880: 7,4 - 5881: 8,4 - 5882: 5,3 - 5883: 4,3 - 5884: 9,4 - 5885: 10,4 - 5886: 10,4 - 5887: 10,5 - 5888: 11,4 - 5889: 11,6 - 5890: 11,6 - 5891: 14,5 - 5892: 15,5 - 5893: 17,6 - 5894: 18,6 - 5895: 17,5 - 5896: 18,6 - 5897: 20,6 - 5898: 21,6 - 5899: 22,6 - 5900: 23,5 - 5901: 23,5 - 5902: 22,4 - 5903: 23,4 - 5904: 21,5 - 5905: 19,6 - 5906: 25,5 - 5907: 25,6 - 5908: 25,7 - 5909: 26,6 - 5910: 26,5 - 5911: 28,7 - 5912: 29,7 - 5913: 28,8 - 5914: 27,9 - 5915: 26,9 - 5916: 26,9 - 5917: 26,10 - 5918: 25,11 - 5919: 25,12 - 5920: 26,13 - 5921: 26,14 - 5922: 26,15 - 5923: 25,16 - 5924: 28,13 - 5925: 28,13 - 5926: 28,14 - 5927: 28,16 - 5928: 27,17 - 5929: 27,18 - 5930: 28,19 - 5931: 27,19 - 5932: 25,20 - 5933: 27,20 - 5934: 27,21 - 5935: 28,21 - 5936: 28,20 - 5937: 26,22 - 5938: 28,24 - 5939: 28,24 - 5940: 26,25 - 5941: 25,25 - 5942: 25,25 - 5943: 25,23 - 5944: 26,23 - 5945: 28,11 - 5946: 28,10 - 5947: 28,12 - 5948: 28,12 - 5955: -22,55 - 5956: -23,54 - 5957: -22,54 - 5958: -21,54 - 5959: -21,55 - 5960: -21,56 - 5961: -22,57 - 5962: -22,57 - 5963: -23,55 - 5964: -23,54 - 5965: -22,55 - 5966: -22,56 - 5967: -22,57 - 5968: -23,56 - 5969: -23,55 - 5970: -23,54 - 5971: -23,54 - 5972: -23,56 - 5973: -22,57 - 5974: -21,57 - 5975: -24,54 - 5976: -24,53 - 5977: -23,53 - 5978: -21,53 - 5979: -21,53 - 5980: -24,54 - 5981: -24,55 - 5982: -24,56 - 5983: -24,56 - 5984: -21,54 - 5985: -21,54 - 5986: -21,55 - 5987: -22,57 - 5988: -23,55 - 5989: -51,33 - 5990: -49,32 - 5991: -51,31 - 5992: -55,31 - 5993: -54,32 - 5994: -55,33 - 5995: -57,25 - 5996: -58,22 - 5997: -58,21 - 5998: -59,20 - 5999: -57,18 - 6000: -59,17 - 6001: -59,12 - 6002: -57,10 - 6003: -58,10 - 6004: -59,8 - 6005: -59,9 - 6006: -59,4 - 6007: -59,5 - 6008: -57,4 - 6009: -61,4 - 6010: -56,4 - 6011: -65,4 - 6012: -67,4 - 6013: -69,5 - 6014: -69,4 - 6015: -70,5 - 6016: -72,6 - 6017: -74,5 - 6018: -75,4 - 6019: -57,0 - 6020: -58,0 - 6021: -59,-2 - 6022: -59,-1 - 6023: -58,-2 - 6024: -58,-6 - 6025: -57,-5 - 6026: -57,-8 - 6027: -58,-8 - 6028: -59,-9 - 6029: -57,-10 - 6030: -52,6 - 6031: -50,6 - 6032: -51,4 - 6033: -49,3 - 6034: -50,3 - 6035: -48,6 - 6036: -46,6 - 6037: -48,5 - 6038: -47,6 - 6039: -44,6 - 6040: -43,5 - 6041: -43,6 - 6042: -42,6 - 6043: -39,6 - 6044: -34,7 - 6045: -39,4 - 6046: -35,4 - 6047: -37,3 - 6048: -38,3 - 6049: -39,3 - 6050: -41,3 - 6051: -35,3 - 6052: -33,4 - 6053: -29,4 - 6054: -28,4 - 6055: -39,4 - 6056: -38,4 - 6057: -36,5 - 6058: -37,6 - 6059: -39,6 - 6060: -40,5 - 6061: -39,4 - 6062: -37,4 - 6063: -37,6 - 6064: -38,6 - 6065: -38,5 - 6066: -38,7 - 6067: -38,8 - 6068: -41,5 - 6069: -42,5 - 6070: -32,5 - 6071: -32,5 - 6072: -34,6 - 6073: -33,6 - 6074: -33,5 - 6075: -38,18 - 6076: -39,16 - 6077: -37,14 - 6078: -39,13 - 6079: -38,23 - 6080: -38,23 - 6081: -39,26 - 6082: -39,26 - 6083: -39,27 - 6084: -38,26 - 6085: -37,24 - 6086: -37,25 - 6087: -38,24 - 6088: -37,29 - 6089: -38,30 - 6090: -38,31 - 6091: -37,31 - 6092: -38,30 - 6093: -37,32 - 6094: -39,32 - 6095: -40,33 - 6096: -41,32 - 6097: -42,32 - 6098: -41,33 - 6099: -39,33 - 6100: -38,32 - 6101: -38,31 - 6102: -37,31 - 6103: -35,32 - 6104: -35,33 - 6105: -36,33 - 6106: -39,32 - 6107: -39,32 - 6108: -38,32 - 6109: -37,33 - 6110: -39,33 - 6111: -39,33 - 6112: -38,31 - 6113: -37,31 - 6114: -36,32 - 6115: -35,32 - 6116: -36,31 - 6117: -34,33 - 6118: -33,32 - 6119: -31,31 - 6120: -30,31 - 6121: -29,32 - 6122: -28,32 - 6123: -38,30 - 6124: -39,30 - 6125: -39,28 - 6126: -37,30 - 6127: -39,28 - 6128: -39,27 - 6129: -28,35 - 6130: -29,35 - 6131: -29,36 - 6132: -29,37 - 6133: -28,37 - 6134: -28,37 - 6135: -28,36 - 6136: -28,37 - 6137: -29,38 - 6138: -29,38 - 6139: -29,36 - 6140: -29,35 - 6141: -29,35 - 6142: -28,37 - 6143: -28,38 - 6144: -31,39 - 6145: -31,40 - 6146: -32,40 - 6147: -33,39 - 6148: -32,39 - 6149: -32,40 - 6150: -33,40 - 6151: -32,38 - 6152: -31,39 - 6153: -32,40 - 6154: -33,38 - 6155: -32,38 - 6156: -31,39 - 6157: -33,39 - 6158: -33,37 - 6159: -32,36 - 6160: -31,37 - 6161: -33,37 - 6162: -33,35 - 6163: -31,35 - 6164: -31,37 - 6165: -33,36 - 6166: -32,35 - 6167: -32,37 - 6168: -32,36 - 6169: -33,35 - 6170: -33,37 - 6171: -33,36 - 6172: -33,35 - 6173: -34,36 - 6174: -34,38 - 6176: -51,35 - 6177: -52,36 - 6178: -53,35 - 6179: -51,34 - 6180: -52,34 - 6181: -52,34 - 6182: -52,35 - 6183: -51,35 - 6184: -53,36 - 6185: -54,35 - 6186: -54,36 - 6187: -53,37 - 6188: -52,38 - 6189: -52,38 - 6190: -51,37 - 6191: -51,36 - 6192: -52,36 - 6193: -52,37 - 6194: -52,36 - 6195: -53,35 - 6196: -53,36 - 6197: -53,38 - 6198: -53,40 - 6199: -53,40 - 6200: -51,40 - 6201: -52,41 - 6202: -53,41 - 6203: -53,40 - 6204: -51,40 - 6205: -52,41 - 6206: -53,41 - 6207: -53,38 - 6208: -53,38 - 6209: -54,37 - 6210: -54,36 - 6211: -53,36 - 6212: -52,38 - 6213: -51,38 - 6214: -51,37 - 6215: -52,36 - 6216: -53,36 - 6217: -53,35 - 6218: -45,47 - 6219: -45,46 - 6220: -45,45 - 6221: -45,44 - 6222: -45,43 - 6223: -45,42 - 6224: -45,41 - 6225: -44,41 - 6226: -44,42 - 6227: -44,43 - 6228: -44,45 - 6229: -44,46 - 6230: -43,46 - 6231: -43,46 - 6232: -43,46 - 6233: -43,44 - 6234: -43,43 - 6235: -43,42 - 6236: -43,42 - 6237: -43,41 - 6238: -42,41 - 6239: -42,43 - 6240: -42,44 - 6241: -42,45 - 6242: -42,46 - 6243: -42,47 - 6244: -43,47 - 6245: -43,46 - 6246: -43,46 - 6247: -42,46 - 6248: -41,46 - 6249: -41,46 - 6250: -41,44 - 6251: -41,42 - 6252: -41,42 - 6253: -41,41 - 6254: -41,44 - 6255: -41,46 - 6256: -41,47 - 6257: -42,47 - 6258: -43,43 - 6259: -43,42 - 6260: -44,42 - 6261: -44,44 - 6262: -44,45 - 6263: -43,45 - 6264: -43,44 - 6265: -44,43 - 6266: -43,43 - 6267: -42,45 - 6268: -43,45 - 6269: -44,45 - 6270: -43,46 - 6271: -45,47 - 6272: -45,44 - 6273: -45,42 - 6274: -45,41 - 6275: -44,41 - 6276: -43,41 - 6277: -42,42 - 6278: -42,43 - 6279: -43,45 - 6280: -43,45 - 6281: -44,44 - 6282: -45,44 - 6283: -45,43 - 6284: -45,41 - 6285: -44,41 - 6286: -43,42 - 6287: -44,45 - 6288: -44,46 - 6289: -45,45 - 6290: -44,44 - 6291: -43,43 - 6292: -42,45 - 6293: -44,46 - 6294: -44,46 - 6295: -45,45 - 6296: -45,43 - 6297: -43,42 - 6298: -42,42 - 6299: -41,44 - 6300: -42,46 - 6301: -42,47 - 6302: -44,47 - 6303: -40,44 - 6304: -40,45 - 6305: -40,46 - 6306: -39,46 - 6307: -38,47 - 6308: -39,47 - 6309: -39,45 - 6310: -38,45 - 6311: -37,47 - 6312: -38,46 - 6313: -38,45 - 6314: -38,43 - 6315: -37,43 - 6316: -37,46 - 6317: -39,45 - 6318: -39,42 - 6319: -38,42 - 6320: -36,43 - 6321: -36,43 - 6322: -37,43 - 6323: -36,42 - 6324: -35,42 - 6325: -34,43 - 6326: -34,42 - 6327: -33,42 - 6328: -33,43 - 6329: -34,43 - 6330: -33,42 - 6331: -32,43 - 6332: -32,44 - 6333: -33,45 - 6334: -33,47 - 6335: -34,46 - 6336: -33,45 - 6337: -32,46 - 6338: -34,47 - 6339: -35,46 - 6340: -36,45 - 6341: -35,44 - 6342: -34,44 - 6343: -35,46 - 6344: -36,46 - 6345: -38,46 - 6346: -39,47 - 6347: -38,47 - 6348: -34,46 - 6349: -33,46 - 6350: -33,47 - 6351: -33,47 - 6352: -33,44 - 6353: -32,44 - 6354: -32,43 - 6355: -33,44 - 6356: -34,43 - 6357: -35,43 - 6358: -36,43 - 6359: -37,42 - 6360: -38,42 - 6361: -38,43 - 6362: -39,44 - 6363: -39,43 - 6364: -39,42 - 6365: -39,45 - 6366: -38,46 - 6367: -39,47 - 6368: -39,47 - 6369: -37,44 - 6370: -36,44 - 6371: -34,45 - 6372: -37,45 - 6373: -32,45 - 6374: -32,46 - 6375: -32,46 - 6376: -32,44 - 6377: -32,43 - 6378: -33,43 - 6379: -35,42 - 6380: -33,42 - 6381: -33,42 - 6382: -32,47 - 6383: -29,44 - 6384: -29,45 - 6385: -29,47 - 6386: -30,46 - 6387: -30,45 - 6388: -30,44 - 6389: -28,44 - 6390: -28,45 - 6391: -28,46 - 6392: -29,47 - 6393: -29,47 - 6394: -30,45 - 6395: -29,45 - 6396: -29,44 - 6397: -28,44 - 6398: -29,45 - 6399: -30,46 - 6400: -30,46 - 6401: -29,45 - 6402: -28,45 - 6403: -29,46 - 6404: -29,47 - 6405: -30,47 - 6406: -30,44 - 6407: -29,44 - 6408: -28,44 - 6409: -28,47 - 6410: -36,49 - 6411: -36,49 - 6412: -35,51 - 6413: -35,51 - 6414: -37,51 - 6415: -38,43 - 6416: -38,44 - 6417: -38,44 - 6418: -36,41 - 6419: -37,41 - 6420: -37,41 - 6421: -38,41 - 6422: -38,41 - 6423: -37,41 - 6424: -37,41 - 6425: -36,49 - 6426: -36,50 - 6427: -36,51 - 6428: -36,51 - 6429: -37,50 - 6430: -37,49 - 6431: -37,49 - 6432: -38,50 - 6433: -38,50 - 6434: -38,49 - 6435: -38,51 - 6436: -37,52 - 6437: -37,52 - 6438: -38,52 - 6439: -38,51 - 6440: -37,51 - 6441: -35,50 - 6442: -35,49 - 6443: -35,50 - 6444: -36,51 - 6445: -37,51 - 6446: -38,52 - 6447: -38,51 - 6448: -38,50 - 6449: -38,50 - 6450: -38,51 - 6451: -41,51 - 6452: -41,52 - 6453: -42,52 - 6454: -43,51 - 6455: -43,51 - 6456: -42,50 - 6457: -42,50 - 6458: -42,52 - 6459: -43,52 - 6460: -43,50 - 6461: -43,50 - 6462: -42,49 - 6463: -41,49 - 6464: -40,50 - 6465: -40,52 - 6466: -41,52 - 6467: -42,51 - 6468: -41,50 - 6469: -40,51 - 6470: -42,51 - 6471: -30,47 - 6472: -29,41 - 6473: -30,42 - 6474: -30,42 - 6475: -29,42 - 6476: -28,42 - 6477: -28,41 - 6478: -28,40 - 6479: -29,41 - 6480: -35,43 - 6481: -37,42 - 6482: -4,33 - 6483: -5,34 - 6484: -4,32 - 6485: -3,30 - 6486: -2,30 - 6487: -1,30 - 6488: -1,29 - 6489: 0,31 - 6490: 0,32 - 6491: 0,33 - 6492: -1,33 - 6493: -1,31 - 6494: 0,30 - 6495: -4,29 - 6496: -5,29 - 6497: -5,29 - 6498: -5,31 - 6499: -5,33 - 6500: -4,34 - 6501: -4,34 - 6502: 2,29 - 6503: 4,30 - 6504: 4,30 - 6505: 4,32 - 6506: 3,34 - 6507: 2,33 - 6508: 2,31 - 6509: 2,24 - 6510: 4,26 - 6511: 2,20 - 6512: 3,19 - 6513: 4,19 - 6514: 6,19 - 6515: 7,20 - 6516: 9,20 - 6517: 9,18 - 6518: 6,15 - 6519: 6,14 - 6520: 6,16 - 6521: 6,17 - 6522: 7,17 - 6523: 7,17 - 6524: 7,16 - 6525: 9,16 - 6526: 11,14 - 6527: -2,19 - 6528: -1,19 - 6529: -2,20 - 6530: -3,21 - 6531: -2,22 - 6532: -1,23 - 6533: 0,24 - 6534: 0,25 - 6535: 0,26 - 6536: -1,26 - 6537: -2,27 - 6538: -4,27 - 6539: -5,26 - 6540: -5,25 - 6541: -5,24 - 6542: -1,25 - 6543: -1,27 - 6544: -3,27 - 6545: -4,26 - 6546: -3,25 - 6547: -1,23 - 6548: -2,22 - 6549: -3,22 - 6550: -3,20 - 6551: -1,24 - 6552: -1,24 - 6553: -2,24 - 6554: -2,22 - 6555: 0,22 - 6556: 0,23 - 6557: -3,23 - 6558: -2,25 - 6559: 0,25 - 6560: -1,26 - 6561: -2,26 - 6562: -4,25 - 6563: -4,24 - 6564: -4,21 - 6565: -5,19 - 6566: -4,19 - 6567: -5,20 - 6568: -4,21 - 6569: 10,29 - 6570: 11,28 - 6571: 11,28 - 6572: 12,29 - 6573: 12,30 - 6574: 11,32 - 6575: 9,31 - 6576: 8,31 - 6577: 8,28 - 6578: 10,28 - 6579: 7,31 - 6580: 7,31 - 6581: 6,36 - 6582: 6,37 - 6583: 3,36 - 6584: 2,37 - 6585: 0,36 - 6586: -1,37 - 6587: 2,40 - 6588: 4,39 - 6589: 4,37 - 6590: 4,37 - 6591: 3,37 - 6592: 10,40 - 6593: 10,40 - 6594: 9,43 - 6595: 9,42 - 6596: 10,42 - 6597: 10,43 - 6598: 11,43 - 6599: 12,43 - 6600: 12,42 - 6601: -25,33 - 6602: -24,32 - 6603: -25,34 - 6604: -23,34 - 6605: -22,34 - 6606: -21,34 - 6607: -20,34 - 6608: -22,33 - 6609: -18,31 - 6610: -17,34 - 6611: -18,34 - 6612: -16,34 - 6613: -17,35 - 6614: -17,35 - 6615: -17,36 - 6616: -18,37 - 6617: -18,42 - 6618: -18,44 - 6619: -18,46 - 6620: -18,48 - 6621: -17,48 - 6622: -17,49 - 6623: -18,51 - 6624: -17,51 - 6625: -16,51 - 6626: -17,51 - 6627: -14,47 - 6628: -14,46 - 6629: -13,46 - 6630: -11,46 - 6631: -11,46 - 6632: -11,49 - 6633: -12,49 - 6634: -14,49 - 6635: -14,49 - 6636: -14,33 - 6637: -15,33 - 6638: -15,31 - 6639: -16,31 - 6640: -14,29 - 6641: -12,29 - 6642: -14,30 - 6643: -11,28 - 6644: -11,27 - 6645: -9,28 - 6646: -10,30 - 6647: -11,30 - 6648: -12,27 - 6649: -14,27 - 6650: -13,26 - 6651: -14,26 - 6652: -12,22 - 6653: -13,17 - 6654: -12,17 - 6655: -12,9 - 6656: -15,4 - 6657: -16,4 - 6658: -15,3 - 6659: -16,3 - 6660: -18,3 - 6661: -19,3 - 6662: -20,6 - 6663: -21,6 - 6664: -22,5 - 6665: -23,4 - 6666: -26,4 - 6667: -26,6 - 6668: -7,4 - 6669: -10,2 - 6670: -10,0 - 6671: -10,-1 - 6672: -9,-2 - 6673: -9,-2 - 6674: -10,0 - 6675: -10,1 - 6676: -9,-3 - 6677: -10,-3 - 6678: -11,-2 - 6679: -13,-2 - 6680: -14,-2 - 6681: -13,-4 - 6682: -14,-6 - 6683: -12,-5 - 6684: -10,-6 - 6685: -9,-6 - 6686: -12,-6 - 6687: -13,-6 - 6688: -12,-8 - 6689: -13,-8 - 6690: -14,-8 - 6691: -7,-6 - 6692: -7,-5 - 6693: -6,-3 - 6694: -6,-3 - 6695: -4,-2 - 6696: -5,-2 - 6697: -2,-4 - 6698: -3,-5 - 6699: -4,-5 - 6700: -6,-6 - 6701: -7,-6 - 6702: 1,-2 - 6703: 1,-1 - 6704: 1,4 - 6705: 0,4 - 6706: -5,5 - 6707: 10,2 - 6708: 10,1 - 6709: 11,0 - 6710: 10,-4 - 6711: 10,0 - 6712: 13,5 - 6713: 13,6 - 6714: 20,5 - 6715: 19,4 - 6716: 22,5 - 6717: 25,8 - 6718: 25,9 - 6719: 25,10 - 6720: 25,9 - 6721: -35,7 - 6722: -36,7 - 6723: -38,14 - 6724: -40,20 - 6725: -41,30 - 6726: -41,30 - 6727: -45,30 - 6728: -45,30 - 6729: -46,31 - 6730: -46,33 - 6731: -48,31 - 6732: -47,32 - 6733: -55,31 - 6734: -56,31 - 6735: -49,36 - 6736: -50,36 - 6737: -48,45 - 6738: -49,46 - 6739: -51,46 - 6740: -53,47 - 6741: -57,47 - 6742: -57,36 - 6743: -57,35 - 6744: -56,35 - 6745: -56,36 - 6746: -57,32 - 6747: -58,31 - 6748: -59,29 - 6749: -59,30 - 6750: -58,26 - 6751: -59,26 - 6752: -58,28 - 6753: -58,23 - 6754: -58,22 - 6755: -59,21 - 6756: -58,18 - 6757: -59,22 - 6758: -59,23 - 6759: -60,24 - 6760: -60,24 - 6761: -57,14 - 6762: -58,15 - 6763: -59,15 - 6764: -59,17 - 6765: -59,20 - 6766: -57,7 - 6767: -57,6 - 6768: -58,6 - 6769: -59,7 - 6770: -59,4 - 6771: -59,3 - 6772: -60,5 - 6773: -60,6 - 6774: -60,5 - 6775: -60,4 - 6776: -62,6 - 6777: -68,6 - 6778: -69,6 - 6779: -71,4 - 6780: -72,4 - 6781: -73,4 - 6782: -75,6 - 6783: -76,6 - 6784: -73,6 - 6785: -52,4 - 6786: -54,4 - 6787: -55,4 - 6788: -54,4 - 6789: -53,5 - 6790: -46,4 - 6791: -45,4 - 6792: -48,4 - 6793: -49,3 - 6794: -59,2 - 6795: -59,-4 - 6796: -59,-8 - 6797: -50,3 - 6798: -31,31 - 6799: -29,31 - 6800: -28,31 - 6801: -28,31 - 6802: -47,49 - 6803: -72,33 - 6804: -71,33 - 6805: -71,33 - 6806: -73,34 - 6807: -73,34 - 6808: -75,32 - 6809: -69,34 - 6810: -70,33 - 6811: -72,33 - 6812: -72,35 - 6813: -73,35 - 6814: -74,34 - 6815: -74,28 - 6816: -64,31 - 6817: -64,31 - 6818: -66,28 - 6819: -65,27 - 6820: -64,26 - 6821: -65,21 - 6834: 1,23 - 6835: 1,23 - 6836: 1,23 - 6837: 1,29 - 6838: 1,30 - 6839: 1,30 - 6840: 1,29 - 6841: 1,30 - 6842: 6,29 - 6843: 6,28 - 6844: 6,28 - 6845: 6,29 - 6846: 6,29 - 6847: 5,33 - 6848: 5,33 - 6849: 1,33 - 6850: 1,33 - 6851: 1,33 - 6852: 3,35 - 6853: 3,35 - 6854: 3,35 - 6855: 3,35 - 6856: 5,25 - 6857: 5,24 - 6858: 5,25 - 6859: 5,19 - 6860: 5,19 - 6861: 8,19 - 6862: 8,19 - 6863: 8,19 - 6864: -52,7 - 6865: -51,7 - 6866: -55,18 - 6867: -55,18 - 6868: -55,18 - 6869: -55,20 - 6870: -54,20 - 6871: -53,19 - 6872: -53,18 - 6873: -53,18 - 6874: -23,32 - 6875: -22,31 - 6876: -23,31 - 6877: -26,34 - 6878: -26,32 - 6879: -31,32 - 6880: -30,33 - 6884: -20,33 - 6885: -20,33 - 6886: -19,33 - 6887: -24,33 - 6888: -21,35 - 7170: -46,-10 - 7171: -45,-10 - 7172: -44,-10 - 7173: -42,-11 - 7174: -41,-11 - 7175: -41,-12 - 7176: -44,-12 - 7177: -45,-12 - 7178: -45,-13 - 7179: -43,-14 - 7180: -41,-14 - 7181: -41,-14 - 7182: -43,-14 - 7183: -45,-14 - 7184: -46,-14 - 7185: -46,-12 - 7186: -46,-11 - 7187: -43,-11 - 7188: -40,-11 - 7189: -39,-12 - 7190: -39,-13 - 7191: -41,-13 - 7192: -43,-13 - 7193: -44,-13 - 7194: -43,-14 - 7195: -40,-14 - 7196: -38,-14 - 7197: -38,-12 - 7198: -39,-11 - 7199: -40,-10 - 7200: -41,-10 - 7201: -42,-10 - 7202: -43,-10 - 7203: -43,-12 - 7204: -42,-12 - 7205: -42,-13 - 7280: -43,1 - 7281: -43,1 - 7289: -43,66 - 7290: -43,66 - 7291: -43,66 - 7297: -73,15 - 7298: -74,15 - 7299: -74,15 - 7300: -75,15 - 7301: -74,15 - 7340: -17,54 - 7341: -18,54 - 7342: -18,55 - 7343: -17,55 - 7344: -16,56 - 7345: -17,57 - 7346: -17,56 - 7347: -18,57 - 7348: -16,55 - 7349: -16,54 - 7746: 23,13 - 7747: 23,13 - 7748: 22,11 - 7749: 22,12 - 7750: 22,13 - 7751: 24,13 - 7752: 25,14 - 7753: 25,15 - 7754: 25,16 - 7755: 25,18 - 7756: 25,18 - 7757: 26,15 - 7758: 26,15 - 7759: 26,13 - 7760: 25,12 - 7761: 25,11 - 7762: 25,13 - 7763: 26,13 - 7974: -3,31 - 7975: -3,32 - 7976: -2,31 - 7977: -3,29 - 8001: -64,60 - 8002: -64,59 - 8003: -64,58 - 8004: -66,57 - - node: - cleanable: True - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: DirtHeavy - decals: - 2573: -18,22 - 2574: -17,22 - 2575: -16,22 - 2576: -16,23 - 2577: -17,24 - 2578: -18,23 - 2579: -16,23 - 2580: -16,25 - 2581: -18,26 - 2582: -18,24 - 2583: -16,25 - 2584: -17,26 - 2585: -17,26 - 2586: -17,24 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavyMonotile - decals: - 7764: 26,13 - 7765: 26,12 - 7766: 26,11 - 7767: 26,11 - 7768: 26,10 - 7769: 25,13 - 7770: 24,13 - 7771: 25,15 - 7772: 24,15 - 7773: 24,17 - 7774: 23,15 - 7775: 22,17 - 7776: 23,16 - 7777: 23,13 - 7778: 22,12 - 8000: -63,60 - - node: - color: '#FFFFFFFF' - id: DirtLight - decals: - 1616: -30,52 - 1617: -29,53 - 1618: -27,54 - 1619: -27,54 - 1620: -28,55 - 1621: -30,54 - 1622: -29,53 - 1631: -44,50 - 1632: -44,50 - 1633: -44,49 - 1634: -40,45 - 1667: -43,36 - 1668: -43,37 - 1669: -44,39 - 1670: -45,37 - 1671: -43,36 - 1672: -40,38 - 1673: -37,39 - 1674: -39,40 - 1675: -42,38 - 1676: -46,38 - 1677: -40,35 - 1678: -39,39 - 1679: -41,38 - 1680: -44,37 - 1681: -41,39 - 1682: -37,36 - 1683: -40,36 - 1684: -43,37 - 1685: -36,37 - 1686: -35,38 - 1687: -35,38 - 1688: -35,37 - 1689: -35,35 - 1925: -54,46 - 1926: -47,40 - 1927: -48,37 - 2621: 3,27 - 2622: 13,28 - 2623: 10,37 - 6978: 25,24 - 6979: 26,24 - 6980: 27,24 - 6981: 28,24 - 6982: 28,25 - 6983: 26,25 - 6984: 25,25 - 6985: 25,26 - 6986: 26,26 - 6987: 27,25 - 6988: 27,25 - 6989: 28,26 - 6990: 27,26 - 6991: 26,26 - 6992: 25,26 - 6993: 26,27 - 6994: 28,27 - 6995: 28,27 - 6996: 28,28 - 6997: 26,28 - 6998: 25,27 - 6999: 25,27 - 7000: 25,28 - 7001: 27,25 - 7002: 27,25 - 7003: 27,24 - 7004: 25,23 - 7005: 27,23 - 7006: 28,23 - 7007: 27,23 - 7085: -75,-10 - 7086: -75,-10 - 7087: -76,-11 - 7088: -76,-12 - 7089: -75,-12 - 7090: -74,-11 - 7091: -74,-10 - 7092: -73,-10 - 7093: -74,-11 - 7094: -73,-11 - 7095: -72,-10 - 7096: -71,-11 - 7097: -70,-12 - 7098: -67,-12 - 7099: -68,-12 - 7100: -69,-12 - 7101: -70,-11 - 7102: -70,-11 - 7103: -69,-11 - 7104: -65,-11 - 7105: -62,-11 - 7106: -63,-12 - 7107: -63,-12 - 7108: -60,-11 - 7109: -60,-12 - 7110: -60,-12 - 7111: -60,-12 - 7112: -60,-10 - 7113: -62,-10 - 7114: -64,-10 - 7115: -65,-10 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - decals: - 258: -9,1 - 259: -9,0 - 260: -10,0 - 261: -9,1 - 262: -7,2 - 263: -7,1 - 264: -7,-1 - 265: -7,-3 - 266: -6,-4 - 267: -5,-3 - 268: -3,-2 - 269: -2,-2 - 270: -2,-3 - 271: -2,-4 - 272: -3,-5 - 273: -4,-5 - 274: -6,-5 - 275: -10,-4 - 276: -11,-4 - 277: -12,-5 - 278: -13,-5 - 279: -14,-5 - 288: -18,-12 - 289: -17,-11 - 290: -15,-12 - 291: -13,-11 - 292: -13,-12 - 293: -12,-13 - 294: -12,-14 - 295: -13,-14 - 307: 4,-11 - 308: 5,-11 - 309: 5,-12 - 310: -11,5 - 311: -9,6 - 312: -5,5 - 313: -5,4 - 314: -3,4 - 315: 0,6 - 316: 2,7 - 317: 4,5 - 318: 5,4 - 319: 7,5 - 320: 7,5 - 321: 6,5 - 322: 7,5 - 323: 9,6 - 324: 11,5 - 325: 12,5 - 326: 15,5 - 327: 18,6 - 328: 21,5 - 329: 20,4 - 330: 20,5 - 331: 21,6 - 332: 26,5 - 333: 27,6 - 334: 27,7 - 335: 28,9 - 336: 27,11 - 337: 25,12 - 338: 27,14 - 339: 27,15 - 340: 27,17 - 341: 25,17 - 342: 26,19 - 343: 27,19 - 370: 10,-3 - 371: 10,-1 - 372: 10,0 - 373: 4,3 - 374: 4,5 - 375: 1,5 - 376: 0,4 - 377: 2,3 - 378: 2,4 - 379: 2,6 - 380: 2,6 - 381: 1,4 - 382: 1,-2 - 383: 2,-1 - 384: 2,-2 - 385: 1,-3 - 386: 1,-1 - 387: 2,-1 - 388: 2,-2 - 389: 2,-3 - 390: 1,-2 - 391: 2,-1 - 409: -9,9 - 410: -9,8 - 411: -9,8 - 412: -13,12 - 413: -12,12 - 414: -13,13 - 415: -13,9 - 416: -13,9 - 417: -12,9 - 418: -13,10 - 419: -16,14 - 420: -18,12 - 421: -9,12 - 422: -8,12 - 423: -12,13 - 424: -13,15 - 425: -12,16 - 426: -12,16 - 427: -13,15 - 428: -13,17 - 429: -12,18 - 430: -14,17 - 431: -16,17 - 432: -17,17 - 433: -18,16 - 434: -16,18 - 435: -12,18 - 436: -13,17 - 437: -13,18 - 438: -13,20 - 439: -14,20 - 440: -13,19 - 441: -12,21 - 442: -13,22 - 443: -13,22 - 444: -14,22 - 445: -13,22 - 446: -13,22 - 447: -13,24 - 448: -14,25 - 449: -13,24 - 450: -12,23 - 451: -13,25 - 452: -13,27 - 453: -12,27 - 454: -13,27 - 489: -3,33 - 490: -4,34 - 491: -4,32 - 492: -4,32 - 493: -4,30 - 494: -2,30 - 495: -1,30 - 496: 0,31 - 497: -1,30 - 498: -2,29 - 499: -3,29 - 525: -2,20 - 526: -2,21 - 527: -3,25 - 528: -1,25 - 529: 0,25 - 530: 0,24 - 531: -1,23 - 532: -2,24 - 533: -2,25 - 534: -2,24 - 535: -3,22 - 536: -3,21 - 538: -12,31 - 539: -13,31 - 540: -13,31 - 541: -13,29 - 542: -14,29 - 543: -13,27 - 544: -10,9 - 545: -11,8 - 546: -6,-15 - 547: -6,-15 - 548: -8,-13 - 549: 0,-15 - 550: 0,-16 - 551: 0,-15 - 552: 0,-15 - 553: 1,-14 - 554: 2,-14 - 555: 2,-15 - 556: 1,-15 - 557: 1,-15 - 558: 15,-10 - 559: 14,-10 - 560: 14,-9 - 561: 15,-8 - 562: 14,-8 - 563: 13,-8 - 564: 14,-10 - 565: 15,-11 - 566: 15,-11 - 567: 14,-12 - 568: 13,-11 - 569: 13,-10 - 570: 15,-11 - 571: 15,-9 - 572: 13,-8 - 573: 13,-8 - 589: 19,-1 - 590: 20,-1 - 591: 21,-1 - 592: 20,-3 - 593: 20,-3 - 594: 19,-2 - 595: 20,0 - 596: 20,1 - 597: 19,1 - 598: 19,0 - 599: 20,2 - 600: 19,2 - 601: 19,2 - 602: 20,0 - 659: -17,28 - 660: -16,28 - 661: -18,28 - 662: -17,27 - 663: -9,27 - 664: -10,28 - 665: -7,29 - 666: -7,30 - 667: -8,30 - 668: -11,29 - 669: -5,29 - 670: -5,30 - 671: -5,31 - 672: -5,32 - 673: -5,33 - 674: -4,33 - 675: -3,34 - 676: -2,34 - 677: 0,33 - 678: 0,32 - 679: 0,31 - 680: -1,30 - 681: -2,29 - 682: -3,29 - 683: -4,30 - 684: -4,30 - 685: -5,30 - 686: -9,29 - 687: -8,29 - 688: -8,28 - 689: -9,28 - 690: -9,29 - 691: -8,29 - 692: -8,28 - 755: -45,-8 - 756: -46,-7 - 757: -44,-8 - 758: -44,-8 - 759: -44,-7 - 760: -45,-7 - 795: -41,4 - 796: -41,5 - 797: -42,3 - 798: -41,1 - 799: -41,0 - 800: -42,1 - 801: -42,5 - 802: -41,6 - 803: -38,6 - 804: -35,5 - 805: -34,5 - 806: -34,3 - 807: -33,2 - 808: -32,4 - 809: -33,5 - 810: -35,5 - 811: -34,4 - 812: -33,1 - 813: -33,1 - 814: -34,1 - 815: -35,3 - 816: -36,5 - 817: -37,5 - 818: -37,7 - 819: -35,7 - 820: -35,7 - 821: -37,7 - 822: -38,7 - 823: -35,6 - 824: -32,5 - 825: -31,5 - 826: -33,6 - 827: -33,6 - 828: -36,6 - 829: -37,4 - 830: -37,3 - 831: -38,3 - 832: -39,2 - 833: -38,0 - 834: -37,2 - 835: -39,2 - 836: -38,0 - 837: -37,0 - 838: -37,1 - 839: -38,1 - 877: -29,5 - 878: -30,5 - 879: -30,4 - 880: -27,5 - 881: -27,6 - 882: -28,6 - 883: -27,5 - 884: -24,4 - 885: -21,5 - 886: -20,5 - 887: -22,6 - 888: -21,5 - 889: -17,4 - 890: -16,5 - 891: -16,6 - 892: -18,6 - 893: -19,6 - 894: -22,6 - 895: -25,5 - 896: -27,5 - 897: -24,4 - 898: -21,4 - 899: -17,4 - 900: -17,5 - 901: -20,6 - 902: -23,6 - 903: -25,6 - 904: -28,5 - 905: -29,5 - 906: -30,4 - 907: -27,4 - 908: -21,4 - 909: -19,4 - 910: -17,5 - 911: -20,6 - 912: -26,5 - 913: -29,5 - 914: -30,5 - 915: -19,6 - 916: -20,7 - 917: -21,7 - 918: -21,7 - 919: -18,4 - 920: -18,3 - 921: -16,3 - 922: -17,3 - 923: -18,3 - 1237: -38,9 - 1238: -39,11 - 1239: -39,11 - 1240: -38,12 - 1241: -38,14 - 1242: -38,13 - 1243: -37,15 - 1244: -38,16 - 1245: -39,16 - 1246: -39,15 - 1247: -37,15 - 1248: -38,16 - 1249: -38,17 - 1250: -39,17 - 1251: -38,17 - 1252: -37,19 - 1253: -38,21 - 1254: -39,20 - 1255: -38,21 - 1256: -39,21 - 1257: -40,21 - 1258: -38,21 - 1259: -37,23 - 1260: -37,25 - 1261: -38,22 - 1262: -38,21 - 1263: -37,23 - 1264: -38,26 - 1265: -39,26 - 1266: -38,28 - 1267: -37,30 - 1268: -38,32 - 1269: -38,33 - 1270: -39,32 - 1271: -39,31 - 1272: -39,32 - 1273: -42,32 - 1274: -43,31 - 1275: -44,33 - 1276: -45,33 - 1277: -44,31 - 1278: -43,31 - 1279: -40,32 - 1280: -36,33 - 1281: -33,33 - 1282: -30,32 - 1283: -31,33 - 1284: -31,33 - 1285: -27,32 - 1286: -27,33 - 1287: -29,33 - 1288: -24,33 - 1289: -22,33 - 1290: -23,32 - 1291: -22,32 - 1292: -21,32 - 1293: -23,31 - 1294: -22,32 - 1295: -19,33 - 1296: -16,32 - 1297: -16,31 - 1298: -17,32 - 1299: -16,33 - 1300: -18,33 - 1301: -21,33 - 1302: -25,33 - 1303: -26,32 - 1304: -24,27 - 1305: -23,26 - 1306: -24,27 - 1307: -27,28 - 1308: -26,27 - 1309: -24,33 - 1310: -27,34 - 1311: -30,33 - 1312: -32,33 - 1313: -33,33 - 1314: -36,33 - 1315: -39,32 - 1316: -41,32 - 1317: -43,32 - 1318: -45,32 - 1319: -49,33 - 1320: -50,32 - 1321: -49,31 - 1322: -48,32 - 1323: -47,31 - 1324: -47,31 - 1325: -47,32 - 1326: -49,33 - 1327: -52,33 - 1328: -55,33 - 1329: -57,32 - 1330: -57,31 - 1331: -55,33 - 1332: -54,32 - 1333: -56,32 - 1334: -58,31 - 1335: -58,30 - 1336: -59,28 - 1337: -58,27 - 1338: -57,27 - 1339: -59,26 - 1340: -59,23 - 1341: -57,22 - 1342: -57,24 - 1343: -59,24 - 1344: -59,23 - 1345: -59,21 - 1346: -59,19 - 1347: -59,16 - 1348: -58,14 - 1349: -57,14 - 1350: -57,16 - 1351: -58,16 - 1352: -59,14 - 1353: -54,18 - 1354: -55,18 - 1355: -54,20 - 1356: -55,20 - 1357: -54,18 - 1358: -53,18 - 1359: -53,20 - 1360: -54,20 - 1361: -58,15 - 1362: -53,21 - 1363: -53,21 - 1364: -55,21 - 1365: -55,21 - 1366: -53,20 - 1367: -53,21 - 1368: -59,15 - 1369: -58,13 - 1370: -58,11 - 1371: -58,8 - 1372: -58,9 - 1373: -59,10 - 1374: -57,11 - 1375: -57,6 - 1376: -58,5 - 1377: -59,6 - 1378: -62,5 - 1379: -63,4 - 1380: -63,4 - 1381: -64,4 - 1382: -66,4 - 1383: -66,4 - 1384: -62,6 - 1385: -61,7 - 1386: -64,6 - 1387: -68,6 - 1388: -71,5 - 1389: -71,4 - 1390: -73,4 - 1391: -74,6 - 1392: -74,6 - 1393: -75,6 - 1394: -76,5 - 1395: -76,4 - 1396: -75,5 - 1397: -59,1 - 1398: -59,1 - 1399: -58,2 - 1400: -57,1 - 1401: -57,0 - 1402: -58,-1 - 1403: -58,-3 - 1404: -57,-4 - 1405: -58,-5 - 1406: -59,-5 - 1407: -59,-7 - 1408: -58,-10 - 1409: -58,-7 - 1410: -58,-5 - 1411: -59,-5 - 1412: -59,-8 - 1413: -57,-9 - 1414: -58,-10 - 1415: -58,-12 - 1416: -50,4 - 1417: -50,4 - 1418: -51,4 - 1419: -49,3 - 1420: -45,6 - 1421: -46,5 - 1422: -47,4 - 1423: -46,4 - 1424: -45,4 - 1425: -48,6 - 1426: -41,8 - 1427: -41,8 - 1428: -42,9 - 1429: -43,10 - 1430: -43,10 - 1431: -43,11 - 1432: -42,11 - 1433: -41,11 - 1434: -41,11 - 1435: -43,10 - 1436: -42,9 - 1437: -43,8 - 1438: -41,9 - 1439: -42,10 - 1440: -41,9 - 1441: -52,12 - 1448: -54,28 - 1449: -55,28 - 1450: -54,28 - 1451: -52,28 - 1452: -52,28 - 1453: -49,28 - 1454: -49,29 - 1455: -52,29 - 1456: -55,28 - 1595: -75,4 - 1596: -76,4 - 1597: -76,5 - 1996: -8,42 - 1997: -9,43 - 1998: -9,40 - 1999: -7,40 - 2000: -7,43 - 2001: -9,41 - 2002: -9,39 - 2003: -6,40 - 2004: -7,43 - 2005: -8,44 - 2006: -10,42 - 2007: -8,39 - 2008: -6,41 - 2489: -40,-8 - 2490: -40,-7 - 2491: -41,-6 - 2492: -41,-6 - 2493: -39,-6 - 2494: -41,-5 - 2495: -42,-4 - 2496: -42,-6 - 2497: -42,-4 - 2498: -41,-3 - 2499: -40,-2 - 2500: -38,-3 - 2501: -39,-3 - 2502: -39,-4 - 2503: -40,-2 - 2504: -41,-4 - 2505: -40,-4 - 2506: -39,-3 - 2507: -41,-2 - 2508: -41,-3 - 2509: -39,-3 - 2510: -38,-4 - 2511: -39,-6 - 2512: -36,-8 - 2513: -35,-8 - 2514: -36,-8 - 2515: -35,-7 - 2516: -33,-8 - 2517: -33,-8 - 2518: -35,-8 - 2519: -34,-8 - 2520: -34,-9 - 2521: -34,-10 - 2522: -35,-10 - 2523: -34,-10 - 2524: -34,-11 - 2525: -33,-11 - 2526: -32,-9 - 2527: -34,-8 - 2528: -37,-7 - 2529: -38,-7 - 2530: -38,-8 - 2531: -37,-8 - 2532: -39,-7 - 2533: -39,-8 - 2534: -39,-8 - 2535: -40,-5 - 2536: -40,-6 - 2537: -39,-7 - 2538: -38,-5 - 2539: -40,-6 - 2982: 7,12 - 2983: 6,12 - 2984: 7,11 - 2985: 10,12 - 2986: 11,12 - 2987: 11,11 - 2988: 9,12 - 2989: 8,12 - 2990: 11,12 - 2991: 10,13 - 2992: 7,12 - 2993: 10,13 - 2994: 10,15 - 2995: 8,16 - 2996: 8,16 - 2997: 10,16 - 2998: 8,16 - 2999: 6,16 - 3000: 8,16 - 3001: 10,16 - 3002: 10,17 - 3003: 8,16 - 3004: 8,17 - 3005: 7,17 - 3006: 7,17 - 3007: 9,20 - 3008: 10,20 - 3009: 12,20 - 3010: 12,20 - 3011: 11,20 - 3012: 11,18 - 3013: 11,16 - 3014: 10,15 - 3015: 11,15 - 3016: 11,15 - 3017: 10,14 - 3018: 10,14 - 3019: 11,14 - 3020: 8,15 - 3021: 8,16 - 3022: 7,16 - 3023: 9,16 - 3024: 9,16 - 3025: 3,16 - 3026: 0,17 - 3027: -1,16 - 3028: -2,15 - 3029: -2,15 - 3030: -2,15 - 3031: -2,17 - 3032: -1,17 - 3033: 2,16 - 3034: 3,16 - 3035: 3,15 - 3036: 2,16 - 3037: 0,15 - 3038: 0,15 - 3039: 1,15 - 3040: 3,14 - 3041: 4,14 - 3042: 4,15 - 3043: 4,16 - 3044: 2,16 - 3045: -1,15 - 3046: 4,20 - 3047: 3,21 - 3048: 2,21 - 3049: 2,22 - 3050: 3,22 - 3051: 4,22 - 3052: 3,23 - 3053: 2,23 - 3054: 2,25 - 3055: 3,26 - 3056: 4,26 - 3057: 4,25 - 3058: 3,26 - 3059: 2,27 - 3060: 5,28 - 3061: 5,29 - 3062: 4,29 - 3063: 3,29 - 3064: 2,29 - 3065: 4,29 - 3066: 5,30 - 3067: 3,30 - 3068: 3,30 - 3069: 4,30 - 3070: 2,32 - 3071: 2,31 - 3072: 3,32 - 3073: 3,34 - 3074: 3,34 - 3075: 4,33 - 3076: 4,33 - 3077: 6,25 - 3078: 6,25 - 3079: 6,24 - 3080: 7,23 - 3081: 9,23 - 3082: 8,24 - 3083: 8,23 - 3084: 10,22 - 3085: 10,22 - 3086: 7,23 - 3087: 5,23 - 3088: 9,24 - 3089: 9,25 - 3090: 8,24 - 3091: 12,29 - 3092: 11,29 - 3093: 9,29 - 3094: 8,28 - 3095: 10,28 - 3096: 9,29 - 3097: 7,29 - 3098: 10,28 - 3099: 12,29 - 3100: 11,31 - 3101: 9,31 - 3102: 7,30 - 3103: 8,29 - 3104: 12,28 - 3105: 12,29 - 3106: 6,34 - 3107: 9,34 - 3108: 9,34 - 3109: 12,34 - 3110: 12,35 - 3111: 12,36 - 3112: 7,36 - 3113: 6,37 - 3114: 6,37 - 3115: 12,36 - 3116: 12,37 - 3117: 12,36 - 3118: 11,34 - 3119: 9,34 - 3120: 9,33 - 3121: 11,33 - 3122: 12,33 - 3123: 3,36 - 3124: 4,36 - 3125: 4,38 - 3126: 2,40 - 3127: 0,39 - 3128: -1,38 - 3129: 0,36 - 3130: 2,39 - 3131: 0,40 - 3132: 0,38 - 3133: -1,37 - 3134: 0,36 - 3321: -2,10 - 3322: -2,10 - 3323: -3,9 - 3324: -1,8 - 3325: 0,8 - 3326: 1,8 - 3327: 1,10 - 3328: 0,10 - 3329: -2,10 - 3330: 0,9 - 3331: 1,9 - 3332: 0,9 - 3333: -3,8 - 3662: -65,54 - 3663: -66,55 - 3664: -65,54 - 3665: -64,53 - 3666: -63,52 - 3667: -62,55 - 3668: -65,55 - 3669: -66,54 - 3670: -64,51 - 3671: -60,50 - 3672: -60,50 - 3673: -61,51 - 3674: -63,51 - 3675: -61,51 - 3676: -62,52 - 3677: -63,53 - 3678: -63,53 - 3679: -61,52 - 3680: -60,52 - 3681: -60,53 - 3682: -62,53 - 3683: -61,54 - 3684: -61,55 - 3685: -61,55 - 3686: -64,55 - 3687: -65,54 - 3688: -65,53 - 3689: -63,51 - 3690: -61,51 - 3691: -57,54 - 3692: -57,53 - 3693: -57,54 - 3694: -57,54 - 3695: -58,53 - 3696: -57,55 - 3697: -58,57 - 3698: -57,58 - 3699: -55,57 - 3700: -53,57 - 3708: -53,58 - 3709: -56,58 - 3710: -59,58 - 3711: -58,56 - 3712: -58,55 - 3713: -56,54 - 3714: -52,54 - 3715: -51,54 - 3716: -52,54 - 3717: -52,57 - 3718: -54,57 - 3719: -56,56 - 3720: -57,55 - 3721: -55,54 - 3722: -55,55 - 3723: -56,56 - 3724: -56,55 - 3725: -55,55 - 3726: -53,55 - 3727: -47,55 - 3728: -47,55 - 3729: -47,54 - 3730: -47,54 - 3731: -49,55 - 3732: -49,55 - 3733: -49,50 - 3734: -47,51 - 3735: -47,50 - 3736: -47,50 - 3737: -47,51 - 3738: -49,57 - 3739: -49,57 - 3740: -48,60 - 3741: -49,61 - 3742: -49,60 - 3743: -47,58 - 3744: -47,58 - 3745: -48,58 - 3746: -49,62 - 3747: -49,61 - 3748: -48,58 - 3749: -47,61 - 3750: -47,62 - 3751: -43,63 - 3752: -44,62 - 3753: -44,62 - 3754: -44,64 - 3755: -43,64 - 3756: -43,63 - 3757: -43,62 - 3758: -42,61 - 3759: -42,64 - 3760: -43,65 - 3761: -44,64 - 3762: -44,63 - 3763: -48,65 - 3764: -47,65 - 3765: -48,65 - 3766: -46,64 - 3767: -48,64 - 3768: -49,64 - 3769: -51,64 - 3770: -53,65 - 3773: -45,64 - 3774: -46,65 - 3775: -46,65 - 3776: -46,64 - 3777: -52,64 - 3778: -52,64 - 3779: -53,63 - 3780: -52,61 - 3781: -51,60 - 3782: -52,61 - 3783: -54,60 - 3784: -57,60 - 3785: -60,61 - 3786: -62,60 - 3787: -62,60 - 3788: -59,60 - 3789: -57,61 - 3790: -55,61 - 3791: -55,60 - 3792: -59,61 - 3793: -60,61 - 3794: -57,60 - 3795: -55,60 - 3796: -56,61 - 3797: -57,61 - 3798: -59,61 - 3799: -53,82 - 3800: -53,83 - 3801: -53,83 - 3802: -52,86 - 3803: -51,88 - 3804: -52,90 - 3805: -53,90 - 3806: -53,89 - 3807: -53,87 - 3808: -53,85 - 3809: -52,84 - 3810: -51,83 - 3811: -50,86 - 3812: -51,88 - 3813: -52,88 - 3814: -52,87 - 3815: -52,85 - 3816: -52,84 - 3817: -55,84 - 3818: -56,84 - 3819: -56,83 - 3820: -55,82 - 3821: -55,83 - 3822: -55,83 - 3823: -56,83 - 3824: -56,84 - 3825: -55,86 - 3826: -56,86 - 3827: -56,88 - 3828: -55,89 - 3829: -55,90 - 3830: -56,89 - 3831: -54,89 - 3832: -56,89 - 3833: -57,89 - 3834: -57,86 - 3835: -58,88 - 3836: -59,89 - 3837: -60,89 - 3838: -61,88 - 3839: -61,87 - 3840: -60,86 - 3841: -61,89 - 3842: -62,88 - 3843: -62,86 - 3844: -61,85 - 3845: -61,87 - 3846: -62,89 - 3847: -62,87 - 3848: -62,85 - 3849: -60,85 - 3850: -61,86 - 3851: -62,85 - 3852: -61,83 - 3853: -60,84 - 3854: -59,84 - 3855: -61,83 - 3856: -61,83 - 3857: -62,83 - 3858: -59,83 - 3859: -57,84 - 3860: -58,84 - 3861: -58,86 - 3862: -58,85 - 3863: -58,84 - 3864: -58,87 - 3865: -60,88 - 3866: -61,87 - 3867: -61,89 - 3868: -62,89 - 3869: -62,88 - 4078: -58,52 - 4079: -58,50 - 4080: -58,49 - 4081: -57,50 - 4082: -58,51 - 4083: -58,50 - 4084: -55,51 - 4085: -55,50 - 4086: -54,49 - 4087: -55,50 - 4088: -55,52 - 4089: -55,52 - 4090: -52,51 - 4091: -52,51 - 4092: -52,49 - 4093: -52,49 - 4094: -51,50 - 4095: -51,51 - 4096: -52,50 - 4097: -51,49 - 4098: -52,52 - 4455: -61,45 - 4456: -63,45 - 4457: -64,45 - 4458: -65,44 - 4459: -62,44 - 4460: -61,45 - 4461: -63,45 - 4462: -65,45 - 4463: -64,44 - 4464: -62,44 - 4465: -63,45 - 4466: -64,45 - 4467: -63,44 - 4468: -63,44 - 4469: -63,42 - 4470: -64,42 - 4471: -62,42 - 4472: -61,41 - 4473: -61,40 - 4474: -61,38 - 4475: -62,38 - 4476: -62,39 - 4477: -62,40 - 4478: -63,39 - 4479: -63,38 - 4480: -65,39 - 4481: -65,39 - 4482: -65,38 - 4483: -65,41 - 4484: -64,42 - 4485: -63,42 - 4486: -62,42 - 4527: -71,49 - 4528: -73,49 - 4529: -73,48 - 4530: -73,47 - 4531: -72,47 - 4532: -70,48 - 4533: -71,49 - 4534: -71,47 - 4535: -69,47 - 4536: -69,47 - 4537: -70,48 - 4538: -70,49 - 4539: -72,48 - 4540: -72,48 - 4577: -67,50 - 4578: -67,49 - 4579: -68,49 - 4630: -71,54 - 4631: -71,55 - 4632: -71,54 - 4633: -70,53 - 4634: -70,51 - 4635: -70,51 - 4636: -72,52 - 4637: -75,51 - 4638: -73,51 - 4639: -70,54 - 4640: -71,56 - 4641: -71,55 - 4642: -71,54 - 4643: -71,53 - 4705: -60,31 - 4706: -61,33 - 4707: -62,33 - 4708: -62,32 - 4709: -61,31 - 4710: -62,31 - 4711: -62,34 - 4712: -60,33 - 4713: -60,33 - 4714: -60,32 - 4715: -60,31 - 4716: -62,31 - 4721: -82,29 - 4722: -82,30 - 4723: -82,32 - 4724: -83,33 - 4725: -83,31 - 4726: -83,29 - 4727: -83,29 - 4728: -82,33 - 4729: -81,33 - 4730: -79,33 - 4731: -77,33 - 4732: -77,33 - 4733: -79,32 - 4734: -81,32 - 4735: -82,31 - 4736: -81,30 - 4737: -78,30 - 4738: -79,32 - 4739: -80,30 - 4740: -79,29 - 4741: -77,29 - 4742: -79,32 - 4743: -81,31 - 4744: -80,29 - 4745: -78,29 - 4746: -74,35 - 4747: -75,34 - 4748: -74,30 - 4749: -75,31 - 4750: -75,31 - 4751: -75,27 - 4752: -74,25 - 4753: -75,25 - 4754: -74,26 - 4755: -75,25 - 4756: -76,25 - 4757: -75,23 - 4758: -75,25 - 4759: -76,25 - 4760: -77,25 - 4761: -75,24 - 4762: -74,24 - 4763: -75,26 - 4764: -76,26 - 4765: -75,23 - 4766: -74,21 - 4767: -75,20 - 4768: -75,19 - 4769: -75,22 - 4770: -75,23 - 4771: -75,20 - 4772: -75,16 - 4773: -75,15 - 4774: -74,16 - 4775: -74,16 - 4776: -75,17 - 4777: -73,17 - 4778: -72,17 - 4779: -71,17 - 4780: -73,16 - 4781: -74,16 - 4782: -73,15 - 4783: -72,16 - 4784: -75,16 - 4785: -72,15 - 4786: -70,17 - 4787: -71,17 - 4788: -69,16 - 4789: -69,17 - 4790: -71,16 - 4807: -78,21 - 4808: -77,21 - 4809: -77,22 - 4810: -78,22 - 4811: -77,20 - 4812: -79,19 - 4813: -81,20 - 4814: -82,20 - 4815: -83,19 - 4816: -81,18 - 4817: -79,18 - 4818: -77,19 - 4819: -77,19 - 4820: -86,20 - 4821: -86,20 - 4822: -86,21 - 4823: -86,24 - 4824: -86,24 - 4825: -86,23 - 4826: -86,25 - 4827: -86,27 - 4828: -84,27 - 4829: -81,27 - 4830: -80,26 - 4831: -80,25 - 4832: -80,23 - 4833: -81,23 - 4834: -82,22 - 4835: -82,23 - 4836: -82,23 - 4837: -81,23 - 4838: -79,26 - 4839: -80,26 - 4840: -80,25 - 4841: -79,24 - 4842: -79,24 - 4843: -71,31 - 4844: -72,31 - 4845: -71,31 - 4846: -70,31 - 4847: -70,30 - 4848: -70,28 - 4849: -70,28 - 5034: -64,13 - 5035: -65,14 - 5036: -64,11 - 5037: -64,10 - 5038: -64,12 - 5039: -65,13 - 5040: -65,13 - 5041: -65,11 - 5042: -61,12 - 5043: -62,14 - 5044: -62,11 - 5045: -62,10 - 5046: -61,10 - 5047: -62,13 - 7232: -45,-10 - 7233: -46,-10 - 7234: -46,-11 - 7235: -46,-12 - 7236: -45,-13 - 7237: -45,-14 - 7238: -46,-14 - 7239: -43,-14 - 7240: -40,-13 - 7241: -40,-10 - 7242: -41,-9 - 7243: -41,-9 - 7244: -39,-10 - 7245: -38,-11 - 7246: -38,-11 - 7247: -40,-11 - 7248: -41,-11 - 7249: -41,-12 - 7250: -41,-13 - 7251: -42,-12 - 7252: -42,-11 - 7253: -43,-11 - 7254: -40,-13 - 7255: -38,-12 - 7256: -40,-11 - 7257: -42,-12 - 7258: -41,-13 - 7259: -40,-12 - 7260: -42,-13 - 7261: -43,-14 - 7262: -43,-13 - 7263: -42,-14 - 7264: -44,-14 - 7265: -44,-14 - 7266: -44,-14 - 7267: -41,-14 - 7268: -39,-14 - 7269: -38,-14 - 7270: -38,-14 - 7271: -39,-13 - 7272: -38,-12 - 7273: -38,-10 - 7274: -38,-10 - 7275: -39,-11 - 7276: -39,-14 - 7277: -39,-14 - 7278: -41,-14 - 7282: -43,1 - 7283: -43,1 - 7292: -43,66 - 7293: -43,66 - - node: - cleanable: True - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: DirtLight - decals: - 2587: -17,26 - 2588: -16,26 - 2589: -16,26 - 2590: -17,25 - 2591: -18,24 - 2592: -18,23 - 2593: -17,22 - 2594: -16,22 - 2595: -17,23 - 2596: -17,22 - 2597: -16,23 - 2598: -17,26 - 2599: -18,26 - 2600: -18,25 - - node: - color: '#FFFFFFFF' - id: DirtMedium - decals: - 1598: -29,54 - 1599: -29,54 - 1600: -30,54 - 1601: -30,53 - 1602: -30,55 - 1603: -28,53 - 1604: -28,52 - 1605: -27,54 - 1606: -27,55 - 1607: -28,55 - 1608: -29,54 - 1609: -29,53 - 1610: -30,53 - 1611: -28,53 - 1612: -27,54 - 1613: -26,54 - 1614: -27,55 - 1615: -29,55 - 1635: -31,47 - 1636: -37,40 - 1690: -35,38 - 1691: -35,38 - 1692: -37,40 - 1693: -38,38 - 1694: -37,36 - 1695: -36,36 - 1696: -37,39 - 1697: -39,39 - 1698: -41,38 - 1699: -41,36 - 1700: -39,37 - 1701: -42,39 - 1702: -44,38 - 1703: -42,35 - 1704: -43,36 - 1705: -44,36 - 1706: -45,36 - 1707: -44,39 - 1708: -38,35 - 1709: -36,35 - 1710: -36,37 - 1711: -39,35 - 1712: -39,34 - 1928: -50,36 - 1929: -50,45 - 1930: -53,46 - 1931: -55,46 - 2624: 12,32 - 2625: 13,34 - 2626: 13,30 - 2627: 12,17 - 6909: -1,42 - 6910: 0,42 - 6911: 1,43 - 6912: 1,42 - 6913: 2,42 - 6914: 2,43 - 6915: 3,44 - 6916: 1,43 - 6917: 1,43 - 6918: 3,44 - 6919: 3,44 - 6920: 4,43 - 6921: 4,42 - 6922: 3,42 - 6923: 2,42 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - decals: - 280: -13,-5 - 281: -14,-4 - 282: -14,-3 - 283: -12,-3 - 284: -11,-3 - 285: -14,-15 - 286: -15,-14 - 287: -17,-13 - 344: 27,20 - 345: 26,19 - 346: 26,17 - 347: 27,16 - 348: 27,15 - 349: 27,12 - 350: 26,8 - 351: 26,6 - 352: 23,5 - 353: 22,4 - 354: 20,5 - 355: 18,5 - 356: 15,6 - 357: 14,5 - 358: 11,6 - 359: 9,6 - 360: 11,3 - 361: 11,2 - 362: 10,-1 - 363: 11,-3 - 364: 11,-1 - 365: 10,-2 - 366: 10,-3 - 367: 11,1 - 368: 11,1 - 369: 11,-3 - 761: -42,1 - 762: -42,1 - 763: -41,3 - 764: -40,4 - 765: -38,4 - 766: -35,5 - 767: -38,5 - 768: -41,5 - 769: -40,5 - 770: -36,5 - 771: -34,5 - 772: -34,3 - 773: -34,1 - 774: -33,1 - 775: -32,4 - 776: -34,6 - 777: -35,6 - 778: -38,6 - 779: -42,6 - 780: -42,5 - 781: -40,3 - 782: -36,4 - 783: -33,4 - 784: -34,1 - 785: -33,1 - 786: -33,3 - 787: -34,4 - 788: -35,2 - 789: -33,1 - 790: -34,4 - 791: -40,5 - 792: -40,4 - 793: -41,3 - 794: -41,3 - 858: -34,0 - 859: -34,0 - 860: -35,0 - 861: -35,1 - 862: -34,2 - 863: -34,3 - 864: -36,4 - 865: -38,5 - 866: -39,5 - 867: -37,5 - 868: -36,6 - 869: -36,6 - 870: -38,7 - 871: -39,7 - 872: -40,6 - 873: -40,5 - 874: -41,4 - 875: -41,3 - 876: -42,2 - 924: -31,4 - 925: -30,5 - 926: -28,5 - 927: -26,5 - 928: -25,4 - 929: -24,4 - 930: -24,5 - 931: -27,6 - 932: -30,6 - 933: -31,5 - 934: -28,5 - 935: -24,6 - 936: -22,6 - 937: -21,5 - 938: -21,5 - 939: -22,4 - 940: -21,4 - 941: -18,5 - 942: -18,5 - 943: -21,5 - 944: -21,5 - 945: -20,5 - 946: -19,5 - 947: -20,4 - 948: -21,4 - 949: -23,5 - 950: -23,5 - 951: -25,4 - 952: -27,4 - 953: -29,4 - 954: -30,5 - 955: -30,6 - 956: -32,6 - 957: -31,6 - 958: -25,6 - 959: -19,6 - 960: -17,6 - 961: -16,5 - 962: -17,4 - 963: -15,4 - 964: -15,4 - 965: -18,4 - 966: -41,2 - 967: -42,2 - 968: -41,1 - 969: -41,0 - 970: -41,0 - 971: -42,4 - 972: -42,4 - 973: -29,6 - 1457: -39,10 - 1458: -38,10 - 1459: -38,10 - 1460: -39,10 - 1461: -39,9 - 1462: -38,12 - 1463: -37,15 - 1464: -37,15 - 1465: -39,15 - 1466: -38,13 - 1467: -37,18 - 1468: -38,21 - 1469: -38,22 - 1470: -39,21 - 1471: -37,21 - 1472: -37,26 - 1473: -38,28 - 1474: -39,28 - 1475: -38,28 - 1476: -38,32 - 1477: -37,33 - 1478: -34,32 - 1479: -32,32 - 1480: -32,31 - 1481: -30,32 - 1482: -28,33 - 1483: -26,33 - 1484: -23,33 - 1485: -22,32 - 1486: -19,32 - 1487: -17,33 - 1488: -17,32 - 1489: -17,31 - 1490: -18,32 - 1491: -20,32 - 1492: -23,27 - 1493: -23,26 - 1494: -26,28 - 1495: -28,29 - 1496: -26,27 - 1497: -17,29 - 1498: -18,28 - 1499: -18,27 - 1500: -32,33 - 1501: -35,33 - 1502: -37,32 - 1503: -34,32 - 1504: -33,33 - 1505: -36,33 - 1506: -35,27 - 1507: -35,25 - 1508: -35,23 - 1509: -33,24 - 1510: -35,27 - 1511: -36,27 - 1512: -36,25 - 1513: -35,24 - 1514: -32,26 - 1515: -37,32 - 1516: -40,33 - 1517: -43,32 - 1518: -44,30 - 1519: -43,32 - 1520: -45,33 - 1521: -48,33 - 1522: -52,32 - 1523: -53,31 - 1524: -55,32 - 1525: -56,33 - 1526: -58,33 - 1527: -59,31 - 1528: -58,28 - 1529: -57,27 - 1530: -59,28 - 1531: -59,29 - 1532: -58,25 - 1533: -58,23 - 1534: -59,22 - 1535: -59,21 - 1536: -59,19 - 1537: -58,17 - 1538: -57,15 - 1539: -57,13 - 1540: -59,13 - 1541: -59,11 - 1542: -58,8 - 1543: -58,7 - 1544: -58,5 - 1545: -57,5 - 1546: -58,6 - 1547: -61,6 - 1548: -62,5 - 1549: -63,5 - 1550: -65,5 - 1551: -66,5 - 1552: -64,4 - 1553: -63,5 - 1554: -65,6 - 1555: -70,6 - 1556: -72,5 - 1557: -72,4 - 1558: -73,6 - 1559: -76,6 - 1560: -75,5 - 1561: -71,6 - 1562: -66,6 - 1563: -62,5 - 1564: -58,3 - 1565: -58,3 - 1566: -59,2 - 1567: -59,1 - 1568: -57,-1 - 1569: -57,2 - 1570: -58,1 - 1571: -58,-2 - 1572: -58,-4 - 1573: -59,-6 - 1574: -58,-9 - 1575: -57,-7 - 1576: -58,-10 - 1577: -58,-10 - 1578: -59,-11 - 1579: -57,-11 - 1580: -58,-11 - 1581: -59,-11 - 1582: -57,-11 - 1583: -55,5 - 1584: -55,5 - 1585: -54,6 - 1586: -55,6 - 1587: -56,5 - 1588: -44,5 - 1589: -46,5 - 1590: -48,4 - 1591: -38,20 - 1592: -37,19 - 1593: -37,17 - 1594: -37,20 - 2009: -7,42 - 2010: -9,44 - 2011: -10,43 - 2012: -10,41 - 2013: -10,39 - 2014: -6,39 - 2015: -6,42 - 2016: -7,44 - 2017: -8,42 - 2018: -7,40 - 2019: -7,41 - 2020: 4,49 - 2021: 2,50 - 2022: 2,52 - 2023: 2,51 - 2024: 4,49 - 2025: 4,51 - 2026: 3,50 - 2027: 11,51 - 2028: 10,51 - 2029: 10,50 - 2030: 11,52 - 2031: 10,51 - 2032: 11,50 - 2033: 10,46 - 2034: 11,45 - 2035: 11,46 - 2036: 10,45 - 2037: 12,44 - 2038: 11,46 - 2039: 10,46 - 2040: 9,46 - 2041: 9,43 - 2042: 9,42 - 2043: 11,42 - 2044: 12,43 - 2045: 10,43 - 2046: 11,42 - 2047: 12,42 - 2048: 10,42 - 2049: 11,43 - 2050: 18,38 - 2051: 21,39 - 2052: 22,38 - 2053: 23,37 - 2054: 20,38 - 2055: 17,38 - 2056: 19,37 - 2057: 22,39 - 2058: 22,40 - 2059: 19,42 - 2060: 17,42 - 2061: 16,40 - 2062: 18,39 - 2063: 20,40 - 2064: 19,42 - 2065: 18,42 - 2066: 18,39 - 2067: 21,42 - 2068: 22,43 - 2069: 23,41 - 2070: 22,40 - 2071: 22,42 - 2072: 20,42 - 2073: 19,40 - 2074: 18,41 - 2075: 18,42 - 2076: 17,40 - 2077: 18,38 - 2078: -21,38 - 2079: -22,37 - 2080: -23,37 - 2081: -22,40 - 2082: -22,42 - 2083: -24,42 - 2084: -22,40 - 2085: -21,39 - 2086: -21,41 - 2087: -21,42 - 2088: -20,40 - 2089: -21,39 - 2090: -21,39 - 2091: -22,42 - 2092: -23,42 - 2282: -22,60 - 2283: -20,59 - 2284: -21,60 - 2285: -20,61 - 2286: -19,63 - 2287: -18,63 - 2288: -18,62 - 2289: -19,62 - 2290: -17,62 - 2291: -15,62 - 2292: -16,63 - 2293: -17,65 - 2294: -16,65 - 2295: -18,66 - 2296: -19,65 - 2297: -18,64 - 2298: -17,65 - 2299: -15,66 - 2300: -14,65 - 2301: -14,64 - 2302: -20,64 - 2303: -21,63 - 2304: -21,62 - 2305: -20,62 - 2306: -21,61 - 2307: -22,59 - 2308: -22,59 - 2309: -13,59 - 2310: -12,59 - 2311: -14,59 - 2312: -14,60 - 2313: -14,62 - 2314: -17,61 - 2315: -19,59 - 2316: -19,57 - 2317: -19,56 - 2318: -19,54 - 2319: -16,53 - 2320: -15,55 - 2321: -15,56 - 2322: -15,53 - 2323: -16,53 - 2324: -16,41 - 2325: -17,41 - 2326: -18,39 - 2327: -17,37 - 2328: -16,38 - 2329: -17,41 - 2330: -17,42 - 2331: -18,40 - 2332: -16,40 - 2333: -16,43 - 2334: -17,45 - 2335: -18,43 - 2336: -18,40 - 2540: -40,-7 - 2541: -39,-6 - 2542: -39,-7 - 2543: -39,-8 - 2544: -41,-6 - 2545: -41,-5 - 2546: -41,-4 - 2547: -42,-6 - 2548: -42,-4 - 2549: -40,-2 - 2550: -38,-3 - 2551: -39,-5 - 2552: -42,-2 - 2553: -42,-2 - 2554: -41,-2 - 2555: -40,-3 - 2556: -35,-8 - 2557: -32,-9 - 2558: -33,-6 - 2559: -32,-6 - 2560: -32,-6 - 2561: -32,-10 - 2562: -33,-10 - 2563: -34,-10 - 2564: -32,-10 - 2565: -34,-10 - 2566: -37,-8 - 2567: -36,-8 - 2568: -35,-8 - 2569: -40,-7 - 2570: -40,-7 - 3135: 6,13 - 3136: 6,12 - 3137: 8,11 - 3138: 10,11 - 3139: 11,13 - 3140: 9,15 - 3141: 7,15 - 3142: 7,15 - 3143: 10,17 - 3144: 9,19 - 3145: 9,19 - 3146: 9,18 - 3147: 9,19 - 3148: 11,20 - 3149: 11,20 - 3150: 11,17 - 3151: 11,15 - 3152: 10,14 - 3153: 9,14 - 3154: 10,12 - 3155: 8,14 - 3156: 8,14 - 3157: 2,15 - 3158: 2,16 - 3159: -1,16 - 3160: -2,16 - 3161: 0,14 - 3162: 3,15 - 3163: 3,16 - 3164: 0,16 - 3165: 0,16 - 3166: 2,15 - 3167: 1,16 - 3168: 0,16 - 3169: -2,17 - 3170: -2,16 - 3171: -2,15 - 3172: 1,14 - 3173: 3,14 - 3174: 4,15 - 3175: 4,17 - 3176: 3,17 - 3177: 1,17 - 3178: 2,20 - 3179: 1,19 - 3180: 4,20 - 3181: 3,20 - 3182: 7,20 - 3183: 6,19 - 3184: 7,19 - 3185: 7,20 - 3186: 6,20 - 3187: 7,19 - 3188: 1,20 - 3189: 1,20 - 3190: 3,20 - 3191: 3,21 - 3192: 2,21 - 3193: 2,22 - 3194: 2,23 - 3195: 2,25 - 3196: 2,25 - 3197: 2,24 - 3198: 3,23 - 3199: 4,22 - 3200: 4,21 - 3201: 4,24 - 3202: 3,25 - 3203: 3,24 - 3204: 4,24 - 3205: 4,25 - 3206: 3,26 - 3207: 2,26 - 3208: 4,27 - 3209: 4,29 - 3210: 2,28 - 3211: 4,28 - 3212: 5,28 - 3213: 4,29 - 3214: 4,28 - 3215: 3,29 - 3216: 2,30 - 3217: 3,31 - 3218: 3,32 - 3219: 3,34 - 3220: 2,33 - 3221: 4,31 - 3222: 4,32 - 3223: 3,32 - 3224: 2,32 - 3225: 6,25 - 3226: 6,25 - 3227: 6,24 - 3228: 6,23 - 3229: 8,22 - 3230: 9,22 - 3231: 10,22 - 3232: 9,23 - 3233: 8,23 - 3234: 9,24 - 3235: 9,25 - 3236: 7,25 - 3237: 9,25 - 3238: 8,26 - 3239: 7,26 - 3240: 10,26 - 3241: 9,26 - 3242: 9,26 - 3243: 12,28 - 3244: 10,29 - 3245: 9,29 - 3246: 8,28 - 3247: 7,28 - 3248: 7,30 - 3249: 8,31 - 3250: 11,31 - 3251: 12,31 - 3252: 12,30 - 3253: 11,30 - 3254: 9,31 - 3255: 7,30 - 3256: 8,29 - 3257: 12,28 - 3258: 6,34 - 3259: 6,34 - 3260: 7,33 - 3261: 9,34 - 3262: 10,34 - 3263: 11,34 - 3264: 12,33 - 3265: 12,36 - 3266: 11,37 - 3267: 10,36 - 3268: 10,36 - 3269: 8,36 - 3270: 7,37 - 3271: 6,35 - 3272: 6,34 - 3273: 11,34 - 3274: 11,36 - 3275: 9,37 - 3276: -1,36 - 3277: 0,36 - 3278: 0,37 - 3279: -1,39 - 3280: 1,40 - 3281: 3,40 - 3282: 4,37 - 3283: 4,36 - 3284: 3,36 - 3285: 2,37 - 3286: 2,38 - 3287: 0,37 - 3288: 1,36 - 3289: 0,37 - 3290: -1,36 - 3291: 0,38 - 3292: -1,39 - 3293: 1,40 - 3294: 2,39 - 3334: -3,10 - 3335: -3,9 - 3336: -2,8 - 3337: 0,9 - 3338: 1,9 - 3339: 1,8 - 3340: 0,10 - 3341: -2,10 - 3342: -3,10 - 3870: -66,54 - 3871: -66,55 - 3872: -66,55 - 3873: -66,53 - 3874: -65,52 - 3875: -63,52 - 3876: -62,53 - 3877: -61,51 - 3878: -62,51 - 3879: -62,50 - 3880: -62,52 - 3881: -62,53 - 3882: -64,54 - 3883: -65,53 - 3884: -64,53 - 3885: -60,54 - 3886: -61,55 - 3887: -62,55 - 3888: -64,55 - 3889: -59,54 - 3890: -60,52 - 3891: -60,51 - 3892: -62,51 - 3893: -61,52 - 3894: -61,52 - 3895: -58,53 - 3896: -59,55 - 3897: -59,55 - 3898: -58,53 - 3899: -58,53 - 3900: -55,53 - 3901: -51,53 - 3902: -51,54 - 3903: -52,54 - 3904: -55,54 - 3905: -57,54 - 3906: -52,55 - 3907: -53,56 - 3908: -53,56 - 3909: -53,55 - 3910: -53,55 - 3911: -56,56 - 3912: -57,56 - 3913: -57,55 - 3914: -58,57 - 3915: -57,58 - 3916: -53,58 - 3917: -51,57 - 3918: -52,56 - 3919: -56,56 - 3920: -56,55 - 3921: -47,54 - 3922: -48,55 - 3923: -49,55 - 3924: -49,55 - 3925: -48,52 - 3926: -49,50 - 3927: -49,49 - 3928: -47,50 - 3929: -47,52 - 3930: -47,52 - 3931: -49,58 - 3932: -49,58 - 3933: -48,57 - 3934: -47,59 - 3935: -47,61 - 3936: -48,61 - 3937: -49,61 - 3938: -49,59 - 3939: -48,58 - 3940: -44,62 - 3941: -44,61 - 3942: -43,63 - 3943: -44,65 - 3944: -44,64 - 3945: -43,62 - 3946: -42,61 - 3947: -42,64 - 3948: -43,65 - 3949: -48,64 - 3950: -48,65 - 3951: -50,65 - 3952: -52,65 - 3953: -52,64 - 3954: -53,63 - 3955: -53,65 - 3956: -52,64 - 3957: -51,61 - 3958: -52,62 - 3959: -53,64 - 3960: -53,64 - 3961: -53,62 - 3962: -53,60 - 3963: -51,60 - 3964: -51,61 - 3965: -53,60 - 3966: -52,60 - 3967: -52,60 - 3968: -56,62 - 3969: -58,61 - 3970: -57,61 - 3971: -55,60 - 3972: -58,60 - 3973: -61,61 - 3974: -62,60 - 3975: -59,60 - 3976: -58,60 - 3977: -60,61 - 3978: -62,61 - 3979: -57,61 - 3980: -53,61 - 3981: -52,61 - 3982: -52,61 - 3983: -53,83 - 3984: -53,82 - 3985: -52,83 - 3986: -51,84 - 3987: -51,83 - 3988: -51,84 - 3989: -52,84 - 3990: -53,85 - 3991: -52,85 - 3992: -51,86 - 3993: -51,89 - 3994: -52,90 - 3995: -53,89 - 3996: -53,88 - 3997: -52,87 - 3998: -51,87 - 3999: -51,87 - 4000: -51,89 - 4001: -51,90 - 4002: -51,89 - 4003: -55,86 - 4004: -56,86 - 4005: -57,86 - 4006: -59,86 - 4007: -55,89 - 4008: -55,90 - 4009: -56,89 - 4010: -56,88 - 4011: -56,88 - 4012: -58,89 - 4013: -60,89 - 4014: -61,88 - 4015: -62,86 - 4016: -62,85 - 4017: -62,84 - 4018: -62,83 - 4019: -62,83 - 4020: -62,86 - 4021: -62,88 - 4022: -61,89 - 4023: -60,88 - 4024: -60,86 - 4025: -61,85 - 4026: -60,84 - 4027: -58,83 - 4028: -58,83 - 4029: -58,87 - 4030: -59,89 - 4031: -61,88 - 4032: -60,87 - 4033: -60,87 - 4034: -55,83 - 4035: -56,84 - 4036: -56,83 - 4037: -55,82 - 4038: -55,84 - 4039: -56,83 - 4040: -56,82 - 4041: -53,82 - 4042: -53,83 - 4043: -51,84 - 4044: -52,85 - 4045: -53,84 - 4046: -52,83 - 4047: -52,85 - 4048: -52,87 - 4049: -52,88 - 4050: -53,86 - 4051: -53,85 - 4052: -57,49 - 4053: -58,49 - 4054: -57,50 - 4055: -58,52 - 4056: -58,49 - 4057: -57,50 - 4058: -58,52 - 4059: -58,51 - 4060: -57,50 - 4061: -57,50 - 4062: -58,51 - 4063: -58,49 - 4064: -55,51 - 4065: -55,52 - 4066: -55,50 - 4067: -54,50 - 4068: -54,51 - 4069: -55,50 - 4070: -54,49 - 4071: -52,52 - 4072: -52,51 - 4073: -52,50 - 4074: -51,49 - 4075: -51,51 - 4076: -52,50 - 4077: -52,49 - 4487: -62,45 - 4488: -64,45 - 4489: -65,45 - 4490: -64,44 - 4491: -62,44 - 4492: -61,45 - 4493: -62,45 - 4494: -63,44 - 4495: -62,40 - 4496: -61,42 - 4497: -61,42 - 4498: -61,40 - 4499: -61,39 - 4500: -61,38 - 4501: -62,38 - 4502: -63,38 - 4503: -64,38 - 4504: -65,39 - 4505: -64,40 - 4506: -65,39 - 4507: -65,38 - 4508: -64,39 - 4509: -62,40 - 4510: -62,41 - 4511: -64,42 - 4512: -64,42 - 4513: -63,40 - 4541: -72,48 - 4542: -73,49 - 4543: -73,48 - 4544: -71,47 - 4545: -70,48 - 4546: -70,49 - 4547: -70,48 - 4548: -69,47 - 4549: -69,49 - 4550: -67,49 - 4551: -68,49 - 4552: -69,49 - 4553: -67,50 - 4554: -67,49 - 4555: -66,48 - 4556: -66,47 - 4557: -66,49 - 4558: -68,49 - 4559: -67,48 - 4560: -67,47 - 4561: -66,47 - 4562: -67,46 - 4563: -66,48 - 4564: -65,48 - 4565: -65,47 - 4566: -67,49 - 4567: -67,50 - 4644: -71,51 - 4645: -73,52 - 4646: -74,52 - 4647: -71,51 - 4648: -70,52 - 4649: -71,55 - 4650: -72,56 - 4651: -70,55 - 4652: -71,56 - 4653: -76,54 - 4654: -77,54 - 4655: -78,54 - 4656: -78,53 - 4657: -78,54 - 4658: -76,54 - 4717: -60,31 - 4718: -62,32 - 4719: -62,33 - 4720: -62,32 - 4850: -72,31 - 4851: -71,31 - 4852: -70,31 - 4853: -70,29 - 4854: -71,30 - 4855: -72,30 - 4856: -72,28 - 4857: -67,31 - 4858: -68,31 - 4859: -68,29 - 4860: -68,27 - 4861: -68,26 - 4862: -68,26 - 4863: -67,25 - 4864: -65,26 - 4865: -66,27 - 4866: -67,27 - 4867: -66,26 - 4868: -64,25 - 4869: -64,27 - 4870: -66,28 - 4871: -67,30 - 4872: -67,30 - 4873: -62,32 - 4874: -62,33 - 4875: -61,32 - 4876: -61,32 - 4877: -62,34 - 4878: -64,30 - 4879: -64,32 - 4880: -64,34 - 4881: -65,34 - 4882: -65,33 - 4883: -64,32 - 4884: -64,33 - 4885: -65,34 - 4886: -67,34 - 4887: -68,34 - 4888: -69,33 - 4889: -69,33 - 4890: -72,34 - 4891: -73,33 - 4892: -74,35 - 4893: -75,35 - 4894: -75,34 - 4895: -74,30 - 4896: -74,30 - 4897: -74,30 - 4898: -75,27 - 4899: -75,25 - 4900: -74,26 - 4901: -74,26 - 4902: -76,26 - 4903: -76,25 - 4904: -75,24 - 4905: -74,24 - 4906: -77,25 - 4907: -77,25 - 4908: -76,24 - 4909: -74,22 - 4910: -74,22 - 4911: -74,20 - 4912: -75,20 - 4913: -75,22 - 4914: -75,17 - 4915: -75,16 - 4916: -74,16 - 4917: -72,16 - 4918: -71,17 - 4919: -73,17 - 4920: -74,16 - 4921: -74,16 - 4922: -71,20 - 4923: -71,20 - 4924: -68,20 - 4925: -66,20 - 4926: -65,22 - 4927: -67,22 - 4928: -79,26 - 4929: -80,26 - 4930: -81,25 - 4931: -80,23 - 4932: -80,23 - 4933: -83,24 - 4934: -82,25 - 4935: -83,25 - 4936: -84,25 - 4937: -84,24 - 4938: -82,26 - 4939: -85,26 - 4940: -86,26 - 4941: -86,26 - 4942: -87,25 - 4943: -85,24 - 4944: -83,24 - 4945: -83,26 - 4946: -84,26 - 4947: -83,25 - 4948: -82,23 - 4949: -84,23 - 4950: -86,24 - 4951: -83,23 - 4952: -82,23 - 4953: -81,22 - 4954: -81,26 - 4955: -82,27 - 4956: -84,27 - 4957: -85,27 - 4958: -85,29 - 4959: -86,29 - 4960: -85,30 - 4961: -86,30 - 4962: -85,20 - 4963: -86,21 - 4964: -86,20 - 4965: -83,19 - 4966: -82,18 - 4967: -80,19 - 4968: -81,20 - 4969: -80,29 - 4970: -82,30 - 4971: -82,30 - 4972: -80,29 - 4973: -80,29 - 4974: -81,32 - 4975: -82,33 - 4976: -81,33 - 4977: -80,32 - 4978: -77,33 - 5048: -64,12 - 5049: -65,14 - 5050: -65,13 - 5051: -65,11 - 5052: -65,10 - 5053: -63,10 - 5054: -62,12 - 5055: -62,13 - 5056: -63,12 - 5057: -62,10 - 5058: -61,10 - 5059: -62,13 - 5060: -63,14 - 5061: -64,13 - 5062: -64,14 - 5063: -65,14 - 5064: -65,13 - 7206: -44,-11 - 7207: -44,-11 - 7208: -45,-11 - 7209: -45,-12 - 7210: -46,-13 - 7211: -46,-13 - 7212: -46,-14 - 7213: -43,-14 - 7214: -40,-14 - 7215: -38,-13 - 7216: -40,-13 - 7217: -40,-13 - 7218: -38,-14 - 7219: -38,-13 - 7220: -39,-11 - 7221: -40,-11 - 7222: -41,-10 - 7223: -40,-12 - 7224: -42,-12 - 7225: -43,-12 - 7226: -44,-12 - 7227: -45,-11 - 7228: -38,-10 - 7229: -39,-10 - 7230: -38,-10 - 7231: -38,-11 - 7284: -43,1 - 7285: -43,1 - 7286: -43,1 - 7294: -43,66 - - node: - cleanable: True - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: DirtMedium - decals: - 2601: -17,25 - 2602: -17,26 - 2603: -18,25 - 2604: -17,23 - 2605: -16,23 - 2606: -18,23 - - node: - color: '#FFFFFFFF' - id: FlowersBROne - decals: - 6882: -20.998013,33.948563 - - node: - color: '#FFFFFFFF' - id: Flowersbr1 - decals: - 985: -34.770348,20.675009 - 2342: -13.913108,42.25173 - 2343: -12.522483,38.829857 - - node: - color: '#FFFFFFFF' - id: Flowersbr2 - decals: - 977: -31.035973,18.003134 - - node: - color: '#FFFFFFFF' - id: Flowersbr3 - decals: - 982: -33.082848,20.175009 - - node: - color: '#FFFFFFFF' - id: Flowerspv1 - decals: - 2341: -13.334983,39.50173 - - node: - color: '#FFFFFFFF' - id: Flowerspv3 - decals: - 986: -33.910973,21.581259 - - node: - color: '#FFFFFFFF' - id: Flowersy1 - decals: - 981: -34.192223,19.378134 - - node: - color: '#FFFFFFFF' - id: Flowersy2 - decals: - 978: -33.379723,16.550009 - 2338: -12.163108,42.62673 - 2339: -13.631858,41.18923 - 6881: -21.904263,33.948563 - - node: - color: '#FFFFFFFF' - id: Flowersy3 - decals: - 2340: -12.397483,40.892357 - - node: - color: '#334E6DC8' - id: FullTileOverlayGreyscale - decals: - 2188: -17,65 - 2189: -14,64 - 2190: -20,64 - 2191: -21,61 - 2192: -21,60 - 2193: -13,61 - 2194: -13,60 - - node: - color: '#52B4E996' - id: FullTileOverlayGreyscale - decals: - 6822: 1,23 - 6823: 6,28 - 6824: 6,29 - 6825: 1,29 - 6826: 1,30 - 6827: 1,33 - 6828: 3,35 - 6829: 5,33 - 6830: 5,25 - 6831: 5,24 - 6832: 5,19 - - node: - color: '#52B4E9FF' - id: FullTileOverlayGreyscale - decals: - 109: -1,28 - - node: - color: '#9FED5896' - id: FullTileOverlayGreyscale - decals: - 6833: 8,19 - - node: - color: '#A4610696' - id: FullTileOverlayGreyscale - decals: - 7279: -43,1 - - node: - color: '#A46106FF' - id: FullTileOverlayGreyscale - decals: - 702: -40,0 - 703: -40,1 - 704: -39,2 - 705: -38,2 - 706: -37,2 - 707: -36,1 - 708: -36,0 - - node: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - decals: - 3411: -53,59 - 3412: -51,59 - 3413: -46,64 - 3414: -46,65 - 3416: -45,64 - 3441: -50,55 - 3442: -50,53 - 3443: -59,53 - 3444: -59,55 - 7287: -43,66 - - node: - color: '#FFFFFFFF' - id: Grassa2 - decals: - 2344: -13.600608,37.69732 - 7317: 19,39 - - node: - color: '#FFFFFFFF' - id: Grassa4 - decals: - 974: -33.176598,15.425009 - 975: -34.785973,16.596884 - 976: -33.801598,18.065634 - - node: - color: '#FFFFFFFF' - id: Grassa5 - decals: - 984: -34.801598,15.284384 - 7321: 23,41 - - node: - color: '#FFFFFFFF' - id: Grassb1 - decals: - 7320: 21,39 - - node: - color: '#FFFFFFFF' - id: Grassb5 - decals: - 983: -32.160973,18.596884 - 2345: -13.788108,40.38482 - 2349: -11.991233,43.725113 - 7318: 17,39 - 7319: 17,40 - 7322: 18,37 - - node: - color: '#FFFFFFFF' - id: Grassc1 - decals: - 979: -34.910973,18.518759 - 2337: -13.616233,43.18923 - 6883: -20.044888,33.964188 - - node: - color: '#FFFFFFFF' - id: Grassc3 - decals: - 980: -32.395348,19.096884 - - node: - color: '#FFFFFFFF' - id: Grassc4 - decals: - 2346: -12.381858,37.369194 - - node: - color: '#FFFFFFFF' - id: Grassd1 - decals: - 2347: -13.881858,35.712944 - 2348: -12.897483,36.35357 - - node: - color: '#FFFFFFFF' - id: Grasse2 - decals: - 2350: -13.834983,36.936462 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale - decals: - 2777: 8,31 - 2778: 9,31 - 2779: 10,31 - 2780: 11,31 - 2781: 3,34 - 2782: 7,26 - 2783: 8,26 - 2784: 9,26 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale - decals: - 2651: 7,17 - 2652: 8,17 - 2653: 10,20 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - decals: - 3298: -2,10 - 3299: -1,10 - 3300: 0,10 - 3355: -62,61 - 3356: -61,61 - 3357: -60,61 - 3358: -59,61 - 3359: -58,61 - 3360: -56,61 - 3361: -57,61 - 3362: -55,61 - 3363: -54,61 - 3364: -52,65 - 3365: -51,65 - 3366: -50,65 - 3367: -49,65 - 3368: -48,65 - 3369: -47,65 - 3469: -65,55 - 3470: -64,55 - 3471: -63,55 - 3472: -62,55 - 3473: -61,55 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale - decals: - 4182: -66,34 - 4183: -67,34 - 4184: -68,34 - 4185: -69,34 - 4186: -72,35 - 4187: -73,35 - 4188: -74,35 - 4189: -76,26 - 4201: -65,34 - 4204: -71,35 - 4234: -86,27 - 4235: -85,27 - 4236: -84,27 - 4237: -83,27 - 4238: -82,27 - 4239: -81,27 - 4416: -61,33 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale180 - decals: - 2768: 3,19 - 2769: 2,19 - 2770: 8,28 - 2771: 9,28 - 2772: 10,28 - 2773: 11,28 - 2774: 7,22 - 2775: 8,22 - 2776: 9,22 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - decals: - 3295: -2,8 - 3296: -1,8 - 3297: 0,8 - 3370: -62,60 - 3371: -61,60 - 3372: -60,60 - 3373: -59,60 - 3374: -58,60 - 3375: -57,60 - 3376: -56,60 - 3377: -55,60 - 3378: -53,60 - 3379: -54,60 - 3380: -52,60 - 3381: -50,64 - 3382: -49,64 - 3383: -47,64 - 3384: -48,64 - 3474: -63,50 - 3475: -62,50 - 3476: -61,50 - 3477: -65,52 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale180 - decals: - 4174: -73,33 - 4175: -72,33 - 4176: -71,33 - 4177: -70,33 - 4178: -69,33 - 4179: -68,33 - 4180: -67,33 - 4181: -66,33 - 4190: -76,24 - 4246: -82,22 - 4247: -81,22 - 4248: -84,23 - 4249: -85,23 - 4250: -86,23 - 4413: -61,31 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale270 - decals: - 2728: 6,33 - 2729: 6,34 - 2730: 6,35 - 2731: 6,36 - 2732: 6,37 - 2733: 2,33 - 2734: 2,32 - 2735: 2,31 - 2736: 2,29 - 2737: 2,30 - 2738: 2,28 - 2739: 2,27 - 2740: 2,26 - 2741: 2,25 - 2742: 2,24 - 2743: 2,23 - 2744: 2,22 - 2745: 2,21 - 2746: 6,23 - 2747: 6,24 - 2748: 6,25 - 2749: 7,29 - 2750: 7,30 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale270 - decals: - 2646: 6,14 - 2647: 6,15 - 2648: 6,16 - 2649: 9,18 - 2650: 9,19 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale270 - decals: - 3306: -3,9 - 3388: -53,62 - 3389: -53,63 - 3390: -53,64 - 3482: -66,54 - 3483: -66,53 - 3490: -64,51 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale270 - decals: - 4150: -75,21 - 4151: -75,22 - 4152: -75,23 - 4153: -75,27 - 4154: -75,30 - 4155: -75,31 - 4156: -75,32 - 4157: -75,33 - 4158: -75,34 - 4159: -77,25 - 4196: -75,20 - 4414: -62,32 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale90 - decals: - 2618: 10,25 - 2723: 12,33 - 2724: 12,34 - 2725: 12,35 - 2726: 12,36 - 2727: 12,37 - 2751: 12,30 - 2752: 12,29 - 2753: 10,25 - 2754: 10,24 - 2755: 10,23 - 2756: 4,33 - 2757: 4,32 - 2758: 5,30 - 2759: 5,29 - 2760: 4,27 - 2761: 4,26 - 2762: 4,25 - 2763: 4,23 - 2764: 4,24 - 2765: 4,22 - 2766: 4,21 - 2767: 4,20 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale90 - decals: - 2654: 11,19 - 2655: 11,18 - 2656: 11,17 - 2657: 11,16 - 2658: 11,15 - 2659: 11,14 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale90 - decals: - 3301: 1,9 - 3385: -51,61 - 3386: -51,62 - 3387: -51,63 - 3478: -60,54 - 3479: -60,53 - 3480: -60,52 - 3481: -60,51 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale90 - decals: - 4160: -64,31 - 4161: -64,32 - 4162: -64,33 - 4163: -74,30 - 4164: -74,29 - 4165: -74,28 - 4166: -74,27 - 4167: -74,26 - 4168: -74,25 - 4169: -74,24 - 4170: -74,23 - 4171: -74,22 - 4172: -74,21 - 4173: -74,20 - 4251: -80,23 - 4254: -79,25 - 4415: -60,32 - - node: - color: '#FFFFFFFF' - id: LoadingArea - decals: - 2363: -36,-10 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 2571: -40,-11 - 2572: -40,-7 - - node: - cleanable: True - color: '#FFFFFFFF' - id: MiniTileDarkBox - decals: - 398: -13,1 - - node: - color: '#A46106FF' - id: MiniTileWhiteBox - decals: - 2421: -41,-9 - 2422: -40,-9 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteCornerNe - decals: - 89: 0,34 - - node: - color: '#A46106FF' - id: MiniTileWhiteCornerNe - decals: - 716: -32,-2 - 2411: -38,-10 - 2412: -32,-6 - 2413: -37,-2 - - node: - color: '#EF8941FF' - id: MiniTileWhiteCornerNe - decals: - 116: -1,26 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteCornerNw - decals: - 103: -5,34 - - node: - color: '#A46106FF' - id: MiniTileWhiteCornerNw - decals: - 709: -35,-2 - 2416: -42,-2 - 2417: -46,-10 - - node: - color: '#D4D4D4FF' - id: MiniTileWhiteCornerNw - decals: - 157: -11,30 - - node: - color: '#EF8941FF' - id: MiniTileWhiteCornerNw - decals: - 117: -4,26 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteCornerSe - decals: - 90: 0,29 - - node: - color: '#A46106FF' - id: MiniTileWhiteCornerSe - decals: - 2414: -38,-14 - 2415: -32,-11 - - node: - color: '#EF8941FF' - id: MiniTileWhiteCornerSe - decals: - 118: -1,23 - 149: -2,20 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteCornerSw - decals: - 104: -5,29 - - node: - color: '#A46106FF' - id: MiniTileWhiteCornerSw - decals: - 2418: -42,-8 - 2419: -36,-11 - 7156: -46,-14 - - node: - color: '#52B4E996' - id: MiniTileWhiteInnerNe - decals: - 158: -7,30 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteInnerNe - decals: - 88: -7,30 - 159: -7,30 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteInnerSe - decals: - 87: -7,34 - - node: - color: '#EF8941FF' - id: MiniTileWhiteInnerSe - decals: - 119: -2,23 - - node: - color: '#A46106FF' - id: MiniTileWhiteInnerSw - decals: - 2420: -36,-8 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteLineE - decals: - 84: -7,31 - 85: -7,32 - 86: -7,33 - 95: 0,30 - 96: 0,31 - 97: 0,32 - 98: 0,33 - - node: - color: '#A46106FF' - id: MiniTileWhiteLineE - decals: - 710: -32,-3 - 711: -32,-4 - 2400: -37,-3 - 2401: -37,-4 - 2402: -37,-5 - 2403: -32,-7 - 2404: -32,-7 - 2405: -32,-8 - 2406: -32,-9 - 2407: -32,-10 - 2408: -38,-11 - 2409: -38,-12 - 2410: -38,-13 - - node: - color: '#EF8941FF' - id: MiniTileWhiteLineE - decals: - 110: -1,25 - 111: -1,24 - 145: -2,22 - 146: -2,21 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteLineN - decals: - 99: -1,34 - 100: -2,34 - 101: -3,34 - 102: -4,34 - - node: - color: '#A46106FF' - id: MiniTileWhiteLineN - decals: - 714: -34,-2 - 715: -33,-2 - 2384: -45,-10 - 2385: -44,-10 - 2386: -43,-10 - 2387: -42,-10 - 2388: -42,-10 - 2389: -41,-10 - 2390: -40,-10 - 2391: -40,-10 - 2392: -40,-10 - 2393: -39,-10 - 2394: -34,-6 - 2395: -33,-6 - 2396: -41,-2 - 2397: -40,-2 - 2398: -40,-2 - 2399: -38,-2 - - node: - color: '#D4D4D4FF' - id: MiniTileWhiteLineN - decals: - 153: -10,30 - 154: -9,30 - 155: -8,30 - 156: -7,30 - - node: - color: '#EF8941FF' - id: MiniTileWhiteLineN - decals: - 114: -3,26 - 115: -2,26 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteLineS - decals: - 91: -1,29 - 92: -3,29 - 93: -2,29 - 94: -4,29 - - node: - color: '#A46106FF' - id: MiniTileWhiteLineS - decals: - 2365: -41,-8 - 2366: -40,-8 - 2367: -39,-8 - 2368: -37,-8 - 2369: -38,-8 - 2370: -35,-11 - 2371: -34,-11 - 2372: -33,-11 - 2373: -39,-14 - 2374: -40,-14 - 2375: -41,-14 - 2376: -43,-14 - 2377: -42,-14 - 7157: -45,-14 - 7158: -44,-14 - - node: - color: '#EF8941FF' - id: MiniTileWhiteLineS - decals: - 148: -3,20 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteLineW - decals: - 105: -5,30 - 106: -5,31 - 107: -5,32 - 108: -5,33 - - node: - color: '#A46106FF' - id: MiniTileWhiteLineW - decals: - 712: -35,-4 - 713: -35,-3 - 2378: -42,-7 - 2379: -42,-6 - 2380: -42,-4 - 2381: -42,-3 - 2382: -36,-9 - 2383: -36,-10 - 7159: -46,-13 - 7160: -46,-12 - 7161: -46,-11 - - node: - color: '#D4D4D4FF' - id: MiniTileWhiteLineW - decals: - 150: -11,27 - 151: -11,28 - 152: -11,29 - - node: - color: '#EF8941FF' - id: MiniTileWhiteLineW - decals: - 112: -4,24 - 113: -4,25 - 147: -4,21 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale - decals: - 2802: 2,20 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale - decals: - 2660: 9,17 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale - decals: - 3391: -53,61 - 3395: -49,62 - 3396: -49,61 - 3397: -49,60 - 3398: -49,58 - 3399: -49,59 - 3400: -49,57 - 3407: -47,62 - 3408: -48,62 - - node: - color: '#EF8941FF' - id: QuarterTileOverlayGreyscale - decals: - 134: -5,19 - 135: -5,20 - 136: -5,25 - 137: -5,26 - 138: -5,27 - 139: -4,27 - 140: -3,27 - 141: -2,27 - 142: -1,27 - 143: -1,27 - 144: 0,27 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - decals: - 4205: -75,26 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale180 - decals: - 2801: 4,28 - - node: - color: '#A46106FF' - id: QuarterTileOverlayGreyscale180 - decals: - 723: -41,0 - 724: -41,1 - 725: -41,2 - 726: -41,3 - 727: -40,3 - 728: -39,3 - 736: -33,0 - 737: -32,0 - 738: -32,1 - 739: -32,2 - 740: -32,3 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - decals: - 3392: -51,64 - 3401: -47,57 - 3402: -47,58 - 3403: -47,59 - 3404: -47,60 - 3405: -47,61 - 3406: -47,62 - 3409: -48,57 - 3410: -49,57 - - node: - color: '#EF8941FF' - id: QuarterTileOverlayGreyscale180 - decals: - 120: 0,22 - 121: -1,22 - 122: -1,21 - 123: -1,20 - 124: -1,19 - 125: -2,19 - 126: -3,19 - 127: -4,19 - 128: -5,19 - 129: 0,23 - 130: 0,24 - 131: 0,25 - 132: 0,26 - 133: 0,27 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale180 - decals: - 4252: -80,24 - - node: - color: '#A46106FF' - id: QuarterTileOverlayGreyscale270 - decals: - 729: -34,0 - 730: -35,0 - 731: -35,1 - 732: -35,2 - 733: -35,3 - 734: -36,3 - 735: -37,3 - 741: -42,0 - 742: -42,1 - 743: -42,2 - 744: -42,3 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale270 - decals: - 3489: -64,52 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale270 - decals: - 4198: -75,24 - 4200: -65,33 - 4245: -83,23 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale90 - decals: - 2800: 4,31 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - decals: - 4202: -70,34 - 4253: -80,26 - - node: - color: '#FFFFFFFF' - id: Remains - decals: - 77: 18.227499,-11.4046755 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Remains - decals: - 2607: -3.964231,22.551708 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale - decals: - 2785: 2,34 - 2786: 7,31 - 2787: 1,20 - 2788: 6,26 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale - decals: - 2661: 6,17 - 2662: 9,20 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale - decals: - 3302: -3,10 - 3393: -53,65 - 3484: -66,55 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale - decals: - 4191: -77,26 - 4197: -75,35 - 4409: -62,33 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 2789: 10,22 - 2790: 12,28 - 2791: 4,19 - 2792: 5,28 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 3303: 1,8 - 3394: -51,60 - 3485: -60,50 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 4193: -64,30 - 4195: -74,19 - 4242: -79,24 - 4243: -80,22 - 4410: -60,31 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 2797: 7,28 - 2798: 1,19 - 2799: 6,22 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 3305: -3,8 - 3487: -66,52 - 3488: -64,50 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 4192: -77,24 - 4194: -75,19 - 4244: -83,22 - 4411: -62,31 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 2793: 5,31 - 2794: 12,31 - 2795: 4,34 - 2796: 10,26 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 2663: 11,20 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 3304: 1,10 - 3486: -60,55 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 4199: -64,34 - 4203: -70,35 - 4240: -80,27 - 4241: -79,26 - 4412: -60,33 - - node: - color: '#601F95FF' - id: Tunnel - decals: - 6926: 11,50 - - node: - color: '#FFFFFFFF' - id: WarnCornerNE - decals: - 2358: 12,43 - 2671: 7,20 - 2706: 1,40 - - node: - color: '#FFFFFFFF' - id: WarnCornerNW - decals: - 2357: 9,43 - 2670: 6,20 - 4131: -79,31 - - node: - color: '#FFFFFFFF' - id: WarnCornerSE - decals: - 2356: 12,42 - 2672: 7,19 - 2714: 11,35 - 4122: -77,34 - - node: - color: '#FFFFFFFF' - id: WarnCornerSW - decals: - 2359: 9,42 - 2673: 6,19 - 2707: -1,36 - 2715: 7,35 - 5950: -23,54 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNE - decals: - 2361: 9,40 - 4147: -86,23 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNW - decals: - 2360: 11,40 - 4146: -81,23 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSE - decals: - 4126: -84,34 - 4148: -86,27 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSW - decals: - 4149: -81,27 - 5949: -20,54 - - node: - color: '#FFFFFFFF' - id: WarnLineE - decals: - 4: -14,0 - 5: -14,1 - 6: -14,2 - 2711: 1,37 - 2721: 11,36 - 2722: 11,37 - 4123: -77,35 - 4124: -84,33 - 4125: -84,32 - 4132: -86,26 - 4133: -86,24 - 4134: -86,25 - - node: - color: '#FFFFFFFF' - id: WarnLineN - decals: - 73: 1,0 - 74: 2,0 - 75: 0,0 - 2351: 11,42 - 2352: 10,42 - 2664: 6,14 - 2665: 7,14 - 2666: 8,14 - 2667: 9,14 - 2668: 10,14 - 2669: 11,14 - 2710: 0,36 - 2718: 8,35 - 2719: 9,35 - 2720: 10,35 - 4116: -83,34 - 4117: -82,34 - 4118: -80,34 - 4119: -81,34 - 4120: -79,34 - 4121: -78,34 - 4139: -85,27 - 4140: -83,27 - 4141: -82,27 - 4142: -84,27 - 5951: -22,54 - 5952: -21,54 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 2708: -1,37 - 2709: -1,39 - 2716: 7,36 - 2717: 7,37 - 4127: -79,30 - 4128: -79,29 - 4143: -81,24 - 4144: -81,25 - 4145: -81,26 - 5953: -23,55 - 5954: -23,56 - 7339: -23,57 - - node: - color: '#FFFFFFFF' - id: WarnLineW - decals: - 71: 1,-1 - 72: 2,-1 - 2353: 10,40 - 2354: 10,43 - 2355: 11,43 - 2712: 0,40 - 4129: -78,31 - 4130: -77,31 - 4135: -84,23 - 4136: -83,23 - 4137: -82,23 - 4138: -85,23 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNw - decals: - 5512: -35,38 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNe - decals: - 5534: -8,58 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNw - decals: - 6175: -34,38 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - decals: - 5531: -8,61 - 5532: -8,60 - 5533: -8,59 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - decals: - 5513: -35,37 - 5514: -35,35 - 5515: -35,36 - - node: - cleanable: True - color: '#FFFFFFFF' - id: body - decals: - 2612: 2.8074994,42.80365 - - node: - color: '#790906FF' - id: cyka - decals: - 7324: 19,38 - 7325: -25,-14 - - node: - color: '#B02E26FF' - id: cyka - decals: - 7323: 19,38 - - node: - cleanable: True - color: '#D381C996' - id: safe - decals: - 76: 19,-8 - - node: - color: '#DE3A3A96' - id: shop - decals: - 7328: -27,6 - - node: - color: '#FFFFFFFF' - id: shop - decals: - 7326: -12.9947195,8.064248 - 7327: -13.0103445,16.085691 - - node: - cleanable: True - color: '#A40000FF' - id: splatter - decals: - 2608: 1.6512494,42.225525 - 2609: 3.7762494,43.506775 - 2610: 2.3387494,43.413025 - 2611: 3.9168744,42.038025 - type: DecalGrid - - version: 2 - data: - tiles: - -1,-1: - 0: 65535 - -1,0: - 0: 65535 - -4,-3: - 0: 65535 - -4,-2: - 0: 65535 - -4,-1: - 0: 65535 - -4,-4: - 0: 65535 - -3,-4: - 0: 65535 - -3,-3: - 0: 65535 - -3,-2: - 0: 65535 - -3,-1: - 0: 65535 - -2,-4: - 0: 65535 - -2,-3: - 0: 65535 - -2,-2: - 0: 64511 - 1: 1024 - -2,-1: - 0: 65535 - -1,-4: - 0: 65535 - -1,-3: - 0: 65535 - -1,-2: - 0: 65535 - -4,0: - 0: 65535 - -4,1: - 0: 65535 - -3,0: - 0: 65535 - -3,1: - 0: 65535 - -2,0: - 0: 65535 - -2,1: - 0: 65535 - -1,1: - 0: 65535 - 0,-4: - 0: 65535 - 0,-3: - 0: 65535 - 0,-2: - 0: 65535 - 0,-1: - 0: 65535 - 1,-4: - 0: 63359 - 2: 2176 - 1,-3: - 0: 65535 - 1,-2: - 0: 65535 - 1,-1: - 0: 65535 - 2,-4: - 2: 65520 - 0: 15 - 2,-3: - 0: 65535 - 2,-2: - 0: 65535 - 2,-1: - 0: 65535 - 3,-4: - 0: 63324 - 3,-3: - 0: 65535 - 3,-2: - 0: 65535 - 3,-1: - 0: 65535 - 0,0: - 0: 65535 - 0,1: - 0: 65535 - 1,0: - 0: 65535 - 1,1: - 0: 65535 - 2,0: - 0: 65535 - 2,1: - 0: 65535 - 3,0: - 0: 65535 - 3,1: - 0: 65535 - -3,-5: - 0: 63504 - -2,-5: - 0: 65525 - -1,-5: - 0: 64836 - 0,-5: - 0: 65524 - 1,-5: - 0: 64426 - -5,-3: - 0: 65535 - -5,-2: - 0: 65535 - -5,-1: - 0: 65535 - -5,0: - 0: 65535 - -5,1: - 0: 65535 - 4,-4: - 0: 63997 - 4,-3: - 0: 65535 - 4,-2: - 0: 65535 - 4,-1: - 0: 65535 - 5,-4: - 0: 4351 - 5,-3: - 0: 65439 - 5,-2: - 0: 65535 - 5,-1: - 0: 65535 - 6,-3: - 0: 65295 - 6,-2: - 0: 65535 - 6,-1: - 0: 65535 - 7,-2: - 0: 30583 - 7,-1: - 0: 63359 - 4,0: - 0: 65535 - 4,1: - 0: 65535 - 5,0: - 0: 65535 - 5,1: - 0: 65535 - 6,0: - 0: 65535 - 6,1: - 0: 65535 - 6,2: - 0: 65535 - 7,0: - 0: 65535 - 7,1: - 0: 63487 - 7,2: - 0: 65535 - -4,2: - 0: 65535 - -4,3: - 0: 65535 - -3,2: - 0: 65535 - -3,3: - 0: 65535 - -2,2: - 0: 65535 - -2,3: - 0: 65535 - -1,2: - 0: 65535 - -1,3: - 0: 65535 - 0,2: - 0: 65535 - 0,3: - 0: 65535 - 1,2: - 0: 65535 - 1,3: - 0: 65535 - 2,2: - 0: 65535 - 2,3: - 0: 65535 - 3,2: - 0: 65535 - 3,3: - 0: 65535 - -8,-3: - 0: 65535 - -8,-2: - 0: 65535 - -7,-3: - 0: 65535 - -7,-2: - 0: 65535 - -7,-1: - 0: 65535 - -6,-3: - 0: 65535 - -6,-2: - 0: 65535 - -6,-1: - 0: 65535 - -7,0: - 0: 65535 - -7,1: - 0: 65535 - -6,0: - 0: 65535 - -6,1: - 0: 65535 - -5,2: - 0: 65535 - -5,3: - 0: 65535 - 6,-4: - 0: 255 - 7,-4: - 0: 21847 - 7,-3: - 0: 63447 - 4,2: - 0: 65535 - 4,3: - 0: 65535 - 5,2: - 0: 65535 - 5,3: - 0: 65535 - 6,3: - 0: 65535 - 7,3: - 0: 65535 - 4,-5: - 0: 53754 - 4,-6: - 0: 41700 - 5,-7: - 0: 62704 - 5,-6: - 0: 62207 - 5,-5: - 0: 61951 - 6,-7: - 0: 61564 - 6,-6: - 0: 61695 - 6,-5: - 0: 61695 - 7,-8: - 0: 22272 - 7,-7: - 0: 21847 - 7,-6: - 0: 21847 - 7,-5: - 0: 21847 - 4,4: - 0: 65535 - 4,5: - 0: 65535 - 4,6: - 0: 65535 - 4,7: - 0: 65535 - 5,4: - 0: 65535 - 5,5: - 0: 65535 - 5,6: - 0: 65535 - 5,7: - 0: 65535 - 6,4: - 0: 65535 - 6,5: - 0: 65535 - 6,6: - 0: 65535 - 6,7: - 0: 24575 - 7,4: - 0: 65535 - 7,5: - 0: 63351 - 7,6: - 0: 32631 - 8,1: - 0: 4096 - 8,2: - 0: 4369 - 8,3: - 0: 4096 - 8,4: - 0: 4369 - 0,4: - 0: 65535 - 0,5: - 0: 65535 - 0,6: - 0: 65535 - 0,7: - 0: 65535 - 1,4: - 0: 65535 - 1,5: - 0: 65535 - 1,6: - 0: 65535 - 1,7: - 0: 65535 - 2,4: - 0: 65535 - 2,5: - 0: 65535 - 2,6: - 0: 65535 - 2,7: - 0: 65535 - 3,4: - 0: 65535 - 3,5: - 0: 65535 - 3,6: - 0: 65535 - 3,7: - 0: 65535 - -4,4: - 0: 65535 - -4,5: - 0: 65535 - -4,6: - 0: 65535 - -4,7: - 0: 65535 - -3,4: - 0: 65535 - -3,5: - 0: 65535 - -3,6: - 0: 65535 - -3,7: - 0: 65535 - -2,4: - 0: 65535 - -2,5: - 0: 65535 - -2,6: - 0: 65535 - -2,7: - 0: 65535 - -1,4: - 0: 65535 - -1,5: - 0: 65535 - -1,6: - 0: 65535 - -1,7: - 0: 65535 - 0,8: - 0: 65535 - 0,9: - 0: 65535 - 0,10: - 0: 65535 - 0,11: - 0: 65535 - 1,8: - 0: 65535 - 1,9: - 0: 65535 - 1,10: - 0: 65535 - 1,11: - 0: 65535 - 2,8: - 0: 65535 - 2,9: - 0: 65535 - 2,10: - 0: 65535 - 3,8: - 0: 65535 - 3,9: - 0: 65535 - 3,10: - 0: 65535 - -4,8: - 0: 65535 - -3,8: - 0: 65535 - -2,8: - 0: 65535 - -1,8: - 0: 65535 - -1,9: - 0: 65535 - -1,10: - 0: 65535 - -1,11: - 0: 65535 - 4,8: - 0: 65535 - 4,9: - 0: 65535 - 4,10: - 0: 65535 - 5,8: - 0: 65535 - 5,9: - 0: 65535 - 5,10: - 0: 65535 - 6,8: - 0: 30039 - 6,9: - 0: 4437 - 6,10: - 0: 21877 - -6,8: - 0: 65535 - -5,8: - 0: 65535 - -5,4: - 0: 65535 - -5,-4: - 0: 65535 - -4,-5: - 0: 62704 - -6,7: - 0: 65535 - -5,7: - 0: 65535 - -5,6: - 0: 65535 - -5,-5: - 0: 36736 - -8,1: - 0: 65535 - -8,2: - 0: 65535 - -8,3: - 0: 65535 - -7,2: - 0: 65535 - -7,3: - 0: 65535 - -6,2: - 0: 65535 - -6,3: - 0: 65535 - -8,8: - 0: 65535 - -7,8: - 0: 65535 - -8,4: - 0: 65535 - -8,5: - 0: 65535 - -8,6: - 0: 65535 - -8,7: - 0: 65535 - -7,4: - 0: 65535 - -7,5: - 0: 65535 - -7,6: - 0: 65535 - -7,7: - 0: 65535 - -6,4: - 0: 65535 - -6,5: - 0: 65535 - -6,6: - 0: 65535 - -5,5: - 0: 65535 - -10,1: - 0: 65535 - -10,2: - 0: 65535 - -10,3: - 0: 65535 - -9,1: - 0: 65535 - -9,2: - 0: 65535 - -9,3: - 0: 65535 - -10,4: - 0: 65535 - -10,5: - 0: 65535 - -10,6: - 0: 65535 - -10,7: - 0: 65535 - -9,5: - 0: 65535 - -9,6: - 0: 65535 - -9,7: - 0: 65535 - -10,8: - 0: 65535 - -9,8: - 0: 65535 - -8,-4: - 0: 65328 - -8,-1: - 0: 65535 - -7,-4: - 0: 65504 - -6,-4: - 0: 65534 - -8,0: - 0: 65535 - -4,9: - 0: 65535 - -4,10: - 0: 65535 - -6,9: - 0: 65535 - -6,10: - 0: 65535 - -5,9: - 0: 65535 - -5,10: - 0: 65535 - -12,0: - 0: 65535 - -12,1: - 0: 65535 - -11,0: - 0: 65535 - -11,1: - 0: 65535 - -10,0: - 0: 65535 - -9,0: - 0: 65535 - -9,4: - 0: 65535 - -12,-3: - 0: 65535 - -12,-2: - 0: 65535 - -12,-1: - 0: 65535 - -11,-3: - 0: 65535 - -11,-2: - 0: 65535 - -11,-1: - 0: 65535 - -11,-4: - 0: 65535 - -10,-4: - 0: 65523 - -10,-3: - 0: 65535 - -10,-2: - 0: 65535 - -10,-1: - 0: 65535 - -9,-4: - 0: 65520 - -9,-3: - 0: 65535 - -9,-2: - 0: 65535 - -9,-1: - 0: 65535 - -13,-3: - 0: 65535 - -13,-2: - 0: 65535 - -13,-1: - 0: 65535 - -13,0: - 0: 65535 - -13,1: - 0: 65535 - -12,2: - 0: 65535 - -12,3: - 0: 65535 - -11,2: - 0: 65535 - -11,3: - 0: 65535 - -12,4: - 0: 65535 - -12,5: - 0: 65535 - -12,6: - 0: 65535 - -12,7: - 0: 65535 - -11,4: - 0: 65535 - -11,5: - 0: 65535 - -11,6: - 0: 65535 - -11,7: - 0: 65535 - -12,8: - 0: 65535 - -11,8: - 0: 65535 - -16,-3: - 0: 65535 - -16,-2: - 0: 28943 - -16,-1: - 0: 30583 - -15,-3: - 0: 65535 - -15,-2: - 0: 65535 - -15,-1: - 0: 65535 - -14,-3: - 0: 65535 - -14,-2: - 0: 65535 - -14,-1: - 0: 65535 - -16,0: - 0: 61463 - -16,1: - 0: 65535 - -15,0: - 0: 65535 - -15,1: - 0: 65535 - -15,2: - 0: 65535 - -15,3: - 0: 65535 - -14,0: - 0: 65535 - -14,1: - 0: 65535 - -14,2: - 0: 65535 - -14,3: - 0: 65535 - -13,2: - 0: 65535 - -13,3: - 0: 65535 - -15,4: - 0: 65535 - -15,5: - 0: 65535 - -15,6: - 0: 65535 - -15,7: - 0: 65535 - -14,4: - 0: 65535 - -14,5: - 0: 65535 - -14,6: - 0: 65535 - -14,7: - 0: 65535 - -13,4: - 0: 65535 - -13,5: - 0: 65535 - -13,6: - 0: 65535 - -13,7: - 0: 65535 - -15,8: - 0: 65535 - -14,8: - 0: 65535 - -13,8: - 0: 65535 - -20,-3: - 0: 65535 - -20,-1: - 0: 65535 - -20,-2: - 0: 59407 - -19,-3: - 0: 65535 - -19,-2: - 0: 65519 - -19,-1: - 0: 65535 - -18,-3: - 0: 65535 - -18,-2: - 0: 65295 - -18,-1: - 0: 65535 - -17,-3: - 0: 65535 - -17,-2: - 0: 65407 - -17,-1: - 0: 65535 - -20,0: - 0: 53390 - -20,1: - 0: 56799 - -19,0: - 0: 65279 - -19,1: - 0: 65535 - -18,0: - 0: 61695 - -18,1: - 0: 65535 - -17,0: - 0: 63487 - -17,1: - 0: 65535 - 2,11: - 0: 65535 - 3,11: - 0: 65535 - -4,11: - 0: 65535 - -3,9: - 0: 65535 - -3,10: - 0: 65535 - -3,11: - 0: 65535 - -2,9: - 0: 65535 - -2,10: - 0: 65535 - -2,11: - 0: 65535 - 4,11: - 0: 65535 - 5,11: - 0: 3983 - 6,11: - 0: 327 - -6,11: - 0: 65535 - -5,11: - 0: 65535 - -7,13: - 0: 65535 - -7,14: - 0: 8191 - -6,12: - 0: 65535 - -6,13: - 0: 65407 - 3: 128 - -6,14: - 0: 65535 - -6,15: - 0: 65535 - -5,12: - 0: 65535 - -5,13: - 0: 65535 - -5,14: - 0: 65535 - -5,15: - 0: 65535 - -4,12: - 0: 65535 - -4,13: - 0: 65535 - -4,14: - 0: 65535 - -4,15: - 0: 65535 - -3,12: - 0: 65535 - -3,13: - 0: 65535 - -3,14: - 0: 65535 - -3,15: - 0: 65535 - -2,12: - 0: 63487 - -2,13: - 0: 65527 - -2,14: - 0: 65535 - -2,15: - 0: 65535 - -1,12: - 0: 65535 - -1,13: - 0: 16383 - -1,14: - 0: 20795 - -1,15: - 0: 22359 - 0,12: - 0: 65535 - 0,13: - 0: 9215 - 1,12: - 0: 65535 - 1,13: - 0: 39423 - 2,12: - 0: 65535 - 2,13: - 0: 61951 - 3,12: - 0: 65535 - 3,13: - 0: 63999 - 4,12: - 0: 65535 - 4,13: - 0: 62719 - -4,16: - 0: 65535 - -4,17: - 0: 1839 - -3,16: - 0: 46003 - -6,16: - 0: 61167 - -6,17: - 0: 1595 - -5,16: - 0: 65535 - -5,17: - 0: 3919 - -8,9: - 0: 65535 - -8,10: - 0: 65535 - -8,11: - 0: 65535 - -7,9: - 0: 65535 - -7,10: - 0: 65535 - -7,11: - 0: 65535 - -12,9: - 0: 65535 - -12,10: - 0: 65535 - -12,11: - 0: 65535 - -11,9: - 0: 65535 - -11,10: - 0: 65535 - -11,11: - 0: 65535 - -10,9: - 0: 65535 - -10,10: - 0: 65535 - -10,11: - 0: 65535 - -9,9: - 0: 65535 - -9,10: - 0: 65535 - -9,11: - 0: 65535 - -13,9: - 0: 65535 - -13,10: - 0: 65535 - -13,11: - 0: 65535 - -8,12: - 0: 65535 - -8,13: - 0: 65535 - -8,14: - 0: 49087 - -8,15: - 0: 3999 - -7,12: - 0: 65535 - -7,15: - 0: 50447 - -12,12: - 0: 65535 - -12,13: - 0: 65535 - -12,14: - 0: 65535 - -11,12: - 0: 65535 - -11,13: - 0: 65535 - -11,14: - 0: 65535 - -10,12: - 0: 65535 - -10,13: - 0: 65535 - -10,14: - 0: 65535 - -9,12: - 0: 65535 - -9,13: - 0: 65535 - -9,14: - 0: 53247 - -9,15: - 0: 11055 - -15,9: - 0: 65535 - -15,10: - 0: 65535 - -15,11: - 0: 65535 - -14,9: - 0: 65535 - -14,10: - 0: 65535 - -14,11: - 0: 65535 - -12,15: - 0: 65535 - -11,15: - 0: 65535 - -10,15: - 0: 65535 - -16,12: - 0: 65535 - -16,13: - 0: 65535 - -16,14: - 0: 65535 - -16,15: - 0: 65535 - -15,12: - 0: 65535 - -15,13: - 0: 65535 - -15,14: - 0: 65535 - -15,15: - 0: 65535 - -14,12: - 0: 65535 - -14,13: - 0: 65535 - -14,14: - 0: 65535 - -14,15: - 0: 65535 - -13,12: - 0: 65535 - -13,13: - 0: 65535 - -13,14: - 0: 65535 - -13,15: - 0: 65535 - -20,13: - 0: 65535 - -20,14: - 0: 65535 - -20,15: - 0: 255 - -19,13: - 0: 65535 - -19,14: - 0: 65535 - -19,15: - 0: 255 - -18,13: - 0: 65535 - -18,14: - 0: 65535 - -18,15: - 0: 52479 - -17,13: - 0: 65535 - -17,14: - 0: 65535 - -17,15: - 0: 65535 - -17,12: - 0: 65535 - -16,16: - 0: 65535 - -16,17: - 0: 65535 - -16,18: - 0: 15 - -15,16: - 0: 65535 - -15,17: - 0: 65535 - -15,18: - 0: 239 - -14,16: - 0: 65535 - -14,17: - 0: 65535 - -14,18: - 0: 65023 - -13,16: - 0: 65535 - -13,17: - 0: 30719 - -13,18: - 0: 32631 - -12,16: - 0: 65535 - -12,17: - 0: 61951 - -18,16: - 0: 3276 - -17,16: - 0: 36863 - -17,17: - 0: 34952 - -17,18: - 0: 8 - -21,13: - 0: 61439 - -21,14: - 0: 8942 - -16,2: - 0: 65535 - -16,3: - 0: 65535 - -16,4: - 0: 65535 - -16,5: - 0: 65535 - -16,6: - 0: 65535 - -16,7: - 0: 65535 - -16,8: - 0: 65535 - -16,9: - 0: 65535 - -16,10: - 0: 65535 - -16,11: - 0: 65535 - -20,3: - 0: 65450 - -20,2: - 0: 44719 - -19,2: - 0: 65263 - -19,3: - 0: 65534 - -18,2: - 0: 65535 - -18,3: - 0: 65535 - -17,2: - 0: 65535 - -17,3: - 0: 65535 - -20,12: - 0: 65535 - -19,12: - 0: 65535 - -18,12: - 0: 65535 - -23,12: - 0: 52478 - -23,13: - 0: 3276 - -22,12: - 0: 65535 - -22,13: - 0: 4095 - -21,12: - 0: 63743 - 2: 1792 - -20,8: - 0: 65535 - -20,9: - 0: 65535 - -20,10: - 0: 65535 - -20,11: - 0: 65535 - -19,8: - 0: 65535 - -19,9: - 0: 65535 - -19,10: - 0: 65535 - -19,11: - 0: 65535 - -18,8: - 0: 65535 - -18,9: - 0: 65535 - -18,10: - 0: 65535 - -18,11: - 0: 65535 - -17,8: - 0: 65535 - -17,9: - 0: 65535 - -17,10: - 0: 65535 - -17,11: - 0: 65535 - -20,4: - 0: 65535 - -20,5: - 0: 65535 - -20,6: - 0: 65535 - -20,7: - 0: 65535 - -19,4: - 0: 65535 - -19,5: - 0: 65535 - -19,6: - 0: 65535 - -19,7: - 0: 65535 - -18,4: - 0: 65407 - 4: 128 - -18,5: - 0: 65535 - -18,6: - 0: 65535 - -18,7: - 0: 65535 - -17,4: - 0: 65535 - -17,5: - 0: 65535 - -17,6: - 0: 65535 - -17,7: - 0: 65535 - -24,8: - 0: 65535 - -24,9: - 0: 44719 - -23,8: - 0: 8191 - 5: 57344 - -23,9: - 0: 7967 - 6: 224 - 2: 57344 - -23,10: - 0: 7967 - 2: 224 - 7: 57344 - -23,11: - 0: 65311 - 2: 224 - -22,8: - 0: 65535 - -22,9: - 0: 65535 - -22,10: - 0: 65535 - -22,11: - 0: 65535 - -21,8: - 0: 65535 - -21,9: - 0: 65535 - -21,10: - 0: 65535 - -21,11: - 0: 65535 - -21,3: - 0: 57088 - -24,5: - 0: 57343 - -24,6: - 0: 56797 - -24,7: - 0: 63999 - -24,4: - 0: 65524 - -23,4: - 0: 65524 - -23,5: - 0: 65535 - -23,6: - 0: 65535 - -23,7: - 0: 65535 - -22,4: - 0: 65528 - -22,5: - 0: 65535 - -22,6: - 0: 65535 - -22,7: - 0: 65535 - -21,4: - 0: 65535 - -21,5: - 0: 65535 - -21,6: - 0: 65535 - -21,7: - 0: 65535 - -28,8: - 0: 65359 - -28,9: - 0: 8 - -27,8: - 0: 65503 - -27,9: - 0: 15 - -26,8: - 0: 65535 - -26,9: - 0: 15 - -25,8: - 0: 65535 - -25,9: - 0: 15 - -28,5: - 0: 4088 - -27,5: - 0: 24575 - -27,6: - 0: 21975 - -27,7: - 0: 62943 - -26,5: - 0: 20479 - -26,6: - 0: 56703 - -26,7: - 0: 64989 - -25,5: - 0: 49151 - -25,6: - 0: 48847 - -25,7: - 0: 63217 - -29,5: - 0: 224 - -29,8: - 0: 57344 - -21,15: - 0: 226 - -12,-4: - 0: 65535 - -16,-4: - 0: 65521 - -13,-4: - 0: 65535 - -19,-4: - 0: 65535 - -18,-4: - 0: 65521 - -17,-4: - 0: 65535 - -13,-5: - 0: 65280 - -12,-5: - 0: 65280 - -11,16: - 0: 65535 - -10,16: - 0: 65535 - -16,19: - 0: 61152 - -15,19: - 0: 65520 - -14,19: - 0: 65533 - -13,19: - 0: 30711 - -16,20: - 0: 65535 - -16,21: - 0: 61439 - -16,22: - 0: 61167 - -15,20: - 0: 65535 - -15,21: - 0: 65535 - -15,22: - 0: 65535 - -14,20: - 0: 65535 - -14,21: - 0: 65535 - -14,22: - 0: 65535 - -13,20: - 0: 65535 - -13,21: - 0: 65535 - -13,22: - 0: 32767 - 0,14: - 0: 15 - 1,14: - 0: 3 - -3,17: - 0: 878 - -2,16: - 0: 249 - -1,16: - 0: 20 - -7,16: - 0: 32836 - -7,17: - 0: 8 - -12,18: - 0: 4368 - -12,19: - 0: 273 - -11,17: - 0: 61951 - -10,17: - 0: 62207 - -16,23: - 0: 143 - -15,23: - 0: 3839 - -14,23: - 0: 2047 - -13,23: - 0: 119 - -12,20: - 0: 4369 - -12,21: - 0: 4369 - -12,22: - 0: 4369 - -12,23: - 0: 1 - -17,20: - 0: 50184 - -17,21: - 0: 19524 - -17,22: - 0: 2188 - -28,4: - 0: 36608 - -28,7: - 0: 32776 - -27,4: - 0: 65480 - -26,4: - 0: 65524 - -25,4: - 0: 65520 - 4,-7: - 0: 17600 - 6,-8: - 0: 19456 - 7,7: - 0: 12151 - -6,-5: - 0: 19968 - -15,-4: - 0: 63472 - -14,-4: - 0: 44936 - -20,-4: - 0: 64640 - -24,10: - 0: 43658 - -24,11: - 0: 44718 - -24,12: - 0: 192 - -27,3: - 0: 49152 - -26,3: - 0: 61440 - -25,3: - 0: 4096 - -24,3: - 0: 61440 - -23,3: - 0: 61440 - -22,3: - 0: 3584 - 8,-3: - 0: 4368 - 8,-2: - 0: 4369 - 8,-1: - 0: 4369 - 2,-5: - 0: 49151 - 5,12: - 0: 8754 - 5,13: - 0: 8754 - 8,5: - 0: 4368 - 8,6: - 0: 4369 - 8,7: - 0: 4368 - 7,8: - 0: 15 - 8,8: - 0: 1 - -9,16: - 0: 8994 - -9,17: - 0: 12835 - -2,-6: - 0: 63984 - -1,-6: - 0: 62672 - 0,-6: - 0: 61904 - 1,-6: - 0: 63984 - 2,-6: - 0: 63696 - 3,-6: - 0: 21616 - 3,-5: - 0: 17909 - -14,-5: - 0: 34816 - -11,-5: - 0: 61440 - -10,-5: - 0: 4096 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.6852 - - 81.57766 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 25.17718 - - 94.71416 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - type: GridAtmosphere - - type: GasTileOverlay - - type: RadiationGridResistance - - id: Barratry - type: BecomesStation - - type: SpreaderGrid - - type: GridPathfinding - - uid: 5005 - components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: Broadphase - - type: OccluderTree - - type: LoadedMap - - type: GridTree - - type: MovedGrids -- proto: AcousticGuitarInstrument - entities: - - uid: 14704 - components: - - pos: 28.538687,-28.497456 - parent: 1 - type: Transform -- proto: AirAlarm - entities: - - uid: 316 - components: - - pos: -10.5,-0.5 - parent: 1 - type: Transform - - devices: - - 1749 - - 1741 - - 1747 - - 1750 - - 12320 - - 12321 - - 12353 - - 12352 - - 12416 - - 12413 - - 12332 - - 12331 - - 12414 - - 12415 - - 12384 - - 14970 - type: DeviceList - - uid: 317 - components: - - pos: 3.5,-7.5 - parent: 1 - type: Transform - - uid: 8960 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,56.5 - parent: 1 - type: Transform - - devices: - - 8573 - - 8574 - - 8578 - - 8576 - - 8575 - - 8757 - - 8764 - - 8778 - - 8779 - - 8765 - - 8766 - - 8690 - - 8686 - - 8697 - - 8754 - - 8761 - - 8755 - - 8762 - - 8756 - - 8763 - type: DeviceList - - uid: 8962 - components: - - pos: -47.5,66.5 - parent: 1 - type: Transform - - uid: 8965 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,88.5 - parent: 1 - type: Transform - - devices: - - 5742 - - 5579 - - 5501 - - 5496 - - 8883 - - 8884 - - 8887 - - 8888 - - 8886 - - 8885 - - 8925 - - 8967 - - 8928 - - 8924 - type: DeviceList - - uid: 13040 - components: - - rot: 3.141592653589793 rad - pos: -50.5,45.5 - parent: 1 - type: Transform - - devices: - - 7995 - - 7996 - - 7997 - - 8003 - - 8002 - - 8001 - - 11119 - - 11122 - - 11270 - - 11272 - - 11175 - - 11172 - - 11145 - - 11146 - - 11319 - - 11318 - - 11317 - - 8573 - - 8574 - type: DeviceList - - uid: 13047 - components: - - rot: 3.141592653589793 rad - pos: -47.5,30.5 - parent: 1 - type: Transform - - devices: - - 5240 - - 5241 - - 5242 - - 7995 - - 7996 - - 7997 - - 5233 - - 5232 - - 5231 - - 11303 - - 11306 - - 11305 - - 11304 - - 11321 - - 11320 - - 11555 - - 11557 - type: DeviceList - - uid: 13051 - components: - - pos: -68.5,7.5 - parent: 1 - type: Transform - - devices: - - 5213 - - 5214 - - 5215 - type: DeviceList - - uid: 13053 - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-3.5 - parent: 1 - type: Transform - - devices: - - 5216 - - 5217 - - 5218 - - 11842 - - 11841 - - 11840 - - 11843 - - 4749 - - 4807 - - 4802 - - 4750 - - 4800 - - 3967 - - 4912 - - 4913 - - 4126 - type: DeviceList - - uid: 13055 - components: - - pos: -45.5,7.5 - parent: 1 - type: Transform - - devices: - - 11968 - - 11970 - - 11926 - - 11925 - - 11789 - - 11790 - - 4112 - - 4111 - - 4110 - - 5212 - - 5211 - - 5210 - type: DeviceList - - uid: 13057 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-3.5 - parent: 1 - type: Transform - - devices: - - 3718 - - 3719 - - 3720 - - 3721 - - 3722 - - 3723 - - 3724 - - 3717 - - 3716 - - 3726 - - 12016 - - 12018 - - 11970 - - 12079 - - 12063 - - 11996 - - 11998 - - 12001 - type: DeviceList - - uid: 13058 - components: - - pos: -35.5,8.5 - parent: 1 - type: Transform - - devices: - - 4110 - - 4111 - - 4112 - - 4114 - - 4115 - - 4116 - - 4109 - - 4108 - - 4107 - - 12079 - - 12080 - - 12063 - - 12064 - - 11968 - - 11970 - - 11926 - - 11925 - - 12140 - - 12139 - - 11642 - - 11645 - type: DeviceList - - uid: 13061 - components: - - pos: -21.5,7.5 - parent: 1 - type: Transform - - devices: - - 1766 - - 1765 - - 1764 - - 4107 - - 4108 - - 4109 - - 12296 - - 12297 - - 12139 - - 12140 - - 12130 - - 12128 - type: DeviceList - - uid: 13063 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,18.5 - parent: 1 - type: Transform - - devices: - - 4114 - - 4115 - - 4116 - - 4117 - - 4118 - - 4119 - - 4120 - - 4121 - - 4122 - - 4123 - - 5227 - - 5226 - - 5225 - - 11642 - - 11645 - - 11641 - - 11644 - - 11643 - - 11640 - type: DeviceList - - uid: 13065 - components: - - pos: -41.5,40.5 - parent: 1 - type: Transform - - devices: - - 5233 - - 5232 - - 5231 - - 5225 - - 5226 - - 5227 - - 5228 - - 5229 - - 5230 - - 11592 - - 11596 - - 11593 - - 11597 - - 11594 - - 11599 - - 9786 - - 9787 - - 9788 - - 9789 - - 9784 - - 9785 - type: DeviceList - - uid: 13067 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,45.5 - parent: 1 - type: Transform - - devices: - - 11238 - - 11237 - - 11239 - - 11236 - - 11240 - - 9784 - - 9785 - - 9790 - - 9791 - - 9792 - - 9793 - - 11235 - type: DeviceList - - uid: 13069 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,42.5 - parent: 1 - type: Transform - - devices: - - 9790 - - 9791 - - 9793 - - 9792 - - 11196 - - 11192 - - 11209 - - 11208 - type: DeviceList - - uid: 13071 - components: - - pos: -29.5,34.5 - parent: 1 - type: Transform - - devices: - - 12172 - - 12173 - - 5228 - - 5229 - - 5230 - - 5236 - - 5235 - - 5234 - type: DeviceList - - uid: 13073 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,42.5 - parent: 1 - type: Transform - - devices: - - 5237 - - 5238 - - 5239 - - 12259 - - 12255 - - 12256 - - 12260 - - 12273 - - 12272 - type: DeviceList - - uid: 13074 - components: - - pos: -22.5,43.5 - parent: 1 - type: Transform - - devices: - - 9819 - - 12257 - - 12261 - - 12258 - - 12190 - type: DeviceList - - uid: 13077 - components: - - pos: -13.5,34.5 - parent: 1 - type: Transform - - devices: - - 5237 - - 5238 - - 5239 - - 12259 - - 12255 - - 12256 - - 12260 - - 12273 - - 12272 - - 3064 - - 3122 - - 2814 - - 2881 - - 3175 - - 3176 - - 3177 - - 2866 - - 2865 - - 12485 - - 12482 - - 12486 - - 12481 - type: DeviceList - - uid: 13079 - components: - - pos: -18.5,58.5 - parent: 1 - type: Transform - - devices: - - 6496 - - 6497 - - 9808 - - 6498 - - 6499 - - 6500 - - 6501 - - 6502 - - 6503 - - 6504 - - 13010 - - 13004 - - 13011 - - 13005 - - 13012 - - 13006 - - 13013 - - 13007 - - 13031 - - 13034 - - 13032 - - 13033 - type: DeviceList - - uid: 13096 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,19.5 - parent: 1 - type: Transform - - devices: - - 1763 - - 1762 - - 1761 - - 3177 - - 3176 - - 3175 - - 12506 - - 12507 - - 12508 - - 12509 - - 12510 - - 12484 - - 12488 - - 12487 - - 12483 - type: DeviceList - - uid: 13099 - components: - - pos: -1.5,7.5 - parent: 1 - type: Transform - - devices: - - 1758 - - 1759 - - 1760 - - 1768 - - 1767 - - 1753 - - 1752 - - 12586 - - 12582 - - 12583 - - 12587 - type: DeviceList - - uid: 13100 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-0.5 - parent: 1 - type: Transform - - devices: - - 12585 - - 12588 - - 12589 - - 12584 - - 1753 - - 1752 - - 12595 - - 12596 - - 12605 - - 12606 - type: DeviceList - - uid: 13103 - components: - - pos: 21.5,7.5 - parent: 1 - type: Transform - - devices: - - 1767 - - 1768 - - 1755 - - 1754 - - 12656 - - 12652 - - 12658 - - 12654 - - 12587 - - 12583 - type: DeviceList - - uid: 13105 - components: - - rot: 3.141592653589793 rad - pos: 28.5,4.5 - parent: 1 - type: Transform - - devices: - - 12658 - - 12654 - - 12715 - - 12710 - - 12716 - - 12713 - - 12714 - - 12717 - - 1755 - - 1754 - type: DeviceList - - uid: 13299 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,32.5 - parent: 1 - type: Transform - - devices: - - 2055 - - 2868 - - 2867 - - 2869 - - 13306 - - 13305 - - 2052 - - 2051 - - 13309 - - 13308 - - 13307 - - 2053 - - 2054 - - 12736 - - 2102 - - 3023 - - 3019 - - 2674 - - 2490 - - 2666 - - 2487 - - 2671 - - 2488 - - 2670 - - 2489 - - 3022 - - 3021 - - 15082 - - 15083 - type: DeviceList - - uid: 13304 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,22.5 - parent: 1 - type: Transform - - devices: - - 13301 - - 13302 - - 2051 - - 2052 - - 2880 - - 2878 - - 2879 - - 2869 - - 2870 - - 12859 - - 12858 - - 3021 - - 3022 - - 3023 - - 3019 - - 3020 - - 3024 - - 12766 - - 12765 - - 12759 - - 12760 - - 12761 - - 12762 - - 12763 - - 13307 - - 13308 - - 13309 - - 15079 - - 15080 - - 15081 - type: DeviceList - - uid: 14286 - components: - - rot: -1.5707963267948966 rad - pos: -72.5,32.5 - parent: 1 - type: Transform - - devices: - - 10685 - - 10684 - - 10688 - - 10689 - - 14115 - - 14116 - - 14038 - - 14045 - - 14148 - - 14149 - - 14160 - - 14161 - - 14040 - type: DeviceList - - uid: 14297 - components: - - rot: -1.5707963267948966 rad - pos: -76.5,38.5 - parent: 1 - type: Transform - - devices: - - 10676 - - 10675 - - 10674 - - 10673 - - 10672 - - 10671 - - 10670 - - 10669 - - 10668 - - 10667 - - 10666 - - 14046 - - 14047 - type: DeviceList - - uid: 14301 - components: - - rot: 1.5707963267948966 rad - pos: -75.5,20.5 - parent: 1 - type: Transform - - devices: - - 14304 - - 14302 - - 10686 - - 10687 - - 14303 - - 10684 - - 10685 - - 10682 - - 10683 - - 14114 - - 14109 - - 14111 - - 14110 - - 14112 - - 14113 - - 14116 - - 14115 - - 14159 - - 14158 - type: DeviceList -- proto: AirAlarmElectronics - entities: - - uid: 5539 - components: - - pos: -47.591698,28.816675 - parent: 1 - type: Transform - - uid: 5540 - components: - - pos: -47.388573,28.48855 - parent: 1 - type: Transform -- proto: AirCanister - entities: - - uid: 1153 - components: - - pos: 21.5,25.5 - parent: 1 - type: Transform - - uid: 1189 - components: - - pos: -3.5,13.5 - parent: 1 - type: Transform - - uid: 2400 - components: - - pos: 6.5,37.5 - parent: 1 - type: Transform - - uid: 5586 - components: - - pos: -2.5,36.5 - parent: 1 - type: Transform - - uid: 5673 - components: - - pos: -27.5,20.5 - parent: 1 - type: Transform - - uid: 6080 - components: - - pos: -76.5,31.5 - parent: 1 - type: Transform - - uid: 7930 - components: - - pos: -77.5,31.5 - parent: 1 - type: Transform - - uid: 9267 - components: - - pos: 25.5,-4.5 - parent: 1 - type: Transform - - uid: 9469 - components: - - pos: 22.5,25.5 - parent: 1 - type: Transform - - uid: 9470 - components: - - pos: -48.5,19.5 - parent: 1 - type: Transform - - uid: 10041 - components: - - pos: 14.5,43.5 - parent: 1 - type: Transform - - uid: 10127 - components: - - pos: -39.5,54.5 - parent: 1 - type: Transform - - uid: 10352 - components: - - pos: -78.5,31.5 - parent: 1 - type: Transform - - uid: 12895 - components: - - pos: 14.5,15.5 - parent: 1 - type: Transform - - uid: 14335 - components: - - pos: -75.5,42.5 - parent: 1 - type: Transform - - uid: 14579 - components: - - pos: -60.5,18.5 - parent: 1 - type: Transform - - uid: 15906 - components: - - pos: 5.5,-18.5 - parent: 1 - type: Transform -- proto: Airlock - entities: - - uid: 1600 - components: - - pos: 9.5,0.5 - parent: 1 - type: Transform - - uid: 1601 - components: - - pos: 9.5,-2.5 - parent: 1 - type: Transform - - uid: 1608 - components: - - pos: -26.5,3.5 - parent: 1 - type: Transform - - uid: 1609 - components: - - pos: -24.5,2.5 - parent: 1 - type: Transform - - uid: 1610 - components: - - pos: -24.5,0.5 - parent: 1 - type: Transform - - uid: 1611 - components: - - pos: -24.5,-1.5 - parent: 1 - type: Transform - - uid: 3412 - components: - - pos: -23.5,14.5 - parent: 1 - type: Transform - - uid: 5299 - components: - - pos: -55.5,24.5 - parent: 1 - type: Transform - - uid: 7276 - components: - - pos: -56.5,86.5 - parent: 1 - type: Transform - - uid: 9211 - components: - - rot: 3.141592653589793 rad - pos: -59.5,44.5 - parent: 1 - type: Transform -- proto: AirlockArmoryGlassLocked - entities: - - uid: 336 - components: - - pos: -49.5,65.5 - parent: 1 - type: Transform - - uid: 7431 - components: - - pos: -49.5,64.5 - parent: 1 - type: Transform -- proto: AirlockArmoryLocked - entities: - - uid: 7876 - components: - - pos: -49.5,61.5 - parent: 1 - type: Transform -- proto: AirlockAtmosphericsGlassLocked - entities: - - uid: 10695 - components: - - rot: -1.5707963267948966 rad - pos: -75.5,34.5 - parent: 1 - type: Transform - - uid: 10696 - components: - - rot: -1.5707963267948966 rad - pos: -75.5,35.5 - parent: 1 - type: Transform -- proto: AirlockBarGlassLocked - entities: - - uid: 5282 - components: - - pos: -55.5,20.5 - parent: 1 - type: Transform -- proto: AirlockBarLocked - entities: - - uid: 7369 - components: - - pos: -33.5,40.5 - parent: 1 - type: Transform - - uid: 7370 - components: - - pos: -29.5,37.5 - parent: 1 - type: Transform -- proto: AirlockBrigGlassLocked - entities: - - uid: 7879 - components: - - pos: -49.5,55.5 - parent: 1 - type: Transform - - uid: 7880 - components: - - pos: -49.5,53.5 - parent: 1 - type: Transform - - uid: 7881 - components: - - pos: -48.5,52.5 - parent: 1 - type: Transform - - uid: 7882 - components: - - pos: -46.5,52.5 - parent: 1 - type: Transform - - uid: 10935 - components: - - pos: -62.5,43.5 - parent: 1 - type: Transform -- proto: AirlockCaptainLocked - entities: - - uid: 6507 - components: - - pos: -7.5,58.5 - parent: 1 - type: Transform -- proto: AirlockCargo - entities: - - uid: 3646 - components: - - pos: -44.5,-0.5 - parent: 1 - type: Transform -- proto: AirlockCargoGlassLocked - entities: - - uid: 3620 - components: - - pos: -41.5,-0.5 - parent: 1 - type: Transform - - uid: 3621 - components: - - pos: -40.5,-0.5 - parent: 1 - type: Transform - - uid: 3622 - components: - - pos: -42.5,-2.5 - parent: 1 - type: Transform - - uid: 3639 - components: - - pos: -37.5,-0.5 - parent: 1 - type: Transform -- proto: AirlockChapelLocked - entities: - - uid: 1644 - components: - - pos: 18.5,-1.5 - parent: 1 - type: Transform -- proto: AirlockChemistryLocked - entities: - - uid: 1898 - components: - - pos: 1.5,23.5 - parent: 1 - type: Transform -- proto: AirlockChiefEngineerLocked - entities: - - uid: 5301 - components: - - pos: -50.5,26.5 - parent: 1 - type: Transform - - uid: 10697 - components: - - rot: -1.5707963267948966 rad - pos: -74.5,18.5 - parent: 1 - type: Transform -- proto: AirlockChiefMedicalOfficerLocked - entities: - - uid: 1240 - components: - - pos: 17.5,32.5 - parent: 1 - type: Transform - - uid: 1323 - components: - - pos: 13.5,28.5 - parent: 1 - type: Transform -- proto: AirlockCommandGlassLocked - entities: - - uid: 6392 - components: - - rot: 3.141592653589793 rad - pos: -16.5,52.5 - parent: 1 - type: Transform - - uid: 6393 - components: - - rot: 3.141592653589793 rad - pos: -13.5,55.5 - parent: 1 - type: Transform - - uid: 6394 - components: - - rot: 3.141592653589793 rad - pos: -15.5,58.5 - parent: 1 - type: Transform - - uid: 6395 - components: - - rot: 3.141592653589793 rad - pos: -17.5,58.5 - parent: 1 - type: Transform - - uid: 6651 - components: - - pos: -14.5,48.5 - parent: 1 - type: Transform - - uid: 6652 - components: - - pos: -14.5,47.5 - parent: 1 - type: Transform -- proto: AirlockCommandLocked - entities: - - uid: 3220 - components: - - pos: -41.5,7.5 - parent: 1 - type: Transform -- proto: AirlockEngineeringGlassLocked - entities: - - uid: 10679 - components: - - rot: 3.141592653589793 rad - pos: -84.5,22.5 - parent: 1 - type: Transform - - uid: 10680 - components: - - rot: 3.141592653589793 rad - pos: -84.5,28.5 - parent: 1 - type: Transform - - uid: 10681 - components: - - rot: 3.141592653589793 rad - pos: -77.5,25.5 - parent: 1 - type: Transform - - uid: 10692 - components: - - rot: -1.5707963267948966 rad - pos: -72.5,21.5 - parent: 1 - type: Transform - - uid: 10694 - components: - - rot: -1.5707963267948966 rad - pos: -64.5,29.5 - parent: 1 - type: Transform -- proto: AirlockEngineeringLocked - entities: - - uid: 607 - components: - - pos: 11.5,-6.5 - parent: 1 - type: Transform - - uid: 2694 - components: - - pos: 22.5,7.5 - parent: 1 - type: Transform - - uid: 3933 - components: - - pos: -22.5,-4.5 - parent: 1 - type: Transform - - uid: 4338 - components: - - pos: -42.5,14.5 - parent: 1 - type: Transform - - uid: 5300 - components: - - pos: -48.5,30.5 - parent: 1 - type: Transform - - uid: 5655 - components: - - rot: 3.141592653589793 rad - pos: -17.5,17.5 - parent: 1 - type: Transform - - uid: 6197 - components: - - pos: 16.5,45.5 - parent: 1 - type: Transform - - uid: 6807 - components: - - pos: -34.5,56.5 - parent: 1 - type: Transform - - uid: 10142 - components: - - pos: -65.5,58.5 - parent: 1 - type: Transform - - uid: 11061 - components: - - rot: -1.5707963267948966 rad - pos: -72.5,26.5 - parent: 1 - type: Transform - - uid: 13619 - components: - - pos: -62.5,32.5 - parent: 1 - type: Transform - - uid: 15044 - components: - - pos: -8.5,7.5 - parent: 1 - type: Transform -- proto: AirlockExternal - entities: - - uid: 184 - components: - - pos: -5.5,-17.5 - parent: 1 - type: Transform - - uid: 217 - components: - - pos: -5.5,-15.5 - parent: 1 - type: Transform - - uid: 1640 - components: - - pos: 29.5,18.5 - parent: 1 - type: Transform - - uid: 1641 - components: - - pos: 29.5,16.5 - parent: 1 - type: Transform - - uid: 1642 - components: - - pos: 29.5,10.5 - parent: 1 - type: Transform - - uid: 1645 - components: - - pos: 29.5,8.5 - parent: 1 - type: Transform - - uid: 4101 - components: - - rot: 3.141592653589793 rad - pos: -72.5,-12.5 - parent: 1 - type: Transform - - uid: 4102 - components: - - rot: 3.141592653589793 rad - pos: -74.5,-12.5 - parent: 1 - type: Transform - - uid: 4751 - components: - - rot: 3.141592653589793 rad - pos: -66.5,-12.5 - parent: 1 - type: Transform - - uid: 4754 - components: - - rot: 3.141592653589793 rad - pos: -64.5,-12.5 - parent: 1 - type: Transform -- proto: AirlockExternalAtmosphericsLocked - entities: - - uid: 9252 - components: - - rot: 1.5707963267948966 rad - pos: -77.5,47.5 - parent: 1 - type: Transform - - uid: 9256 - components: - - rot: 1.5707963267948966 rad - pos: -78.5,48.5 - parent: 1 - type: Transform - - uid: 10665 - components: - - rot: 1.5707963267948966 rad - pos: -76.5,48.5 - parent: 1 - type: Transform -- proto: AirlockExternalGlass - entities: - - uid: 1770 - components: - - rot: 3.141592653589793 rad - pos: -78.5,-10.5 - parent: 1 - type: Transform - - uid: 3969 - components: - - rot: 3.141592653589793 rad - pos: -76.5,-10.5 - parent: 1 - type: Transform - - uid: 4850 - components: - - pos: -66.5,3.5 - parent: 1 - type: Transform - - uid: 4871 - components: - - pos: -73.5,3.5 - parent: 1 - type: Transform - - uid: 4951 - components: - - rot: 3.141592653589793 rad - pos: -66.5,-8.5 - parent: 1 - type: Transform - - uid: 4952 - components: - - rot: 3.141592653589793 rad - pos: -73.5,-8.5 - parent: 1 - type: Transform - - uid: 7196 - components: - - pos: -52.5,66.5 - parent: 1 - type: Transform - - uid: 7199 - components: - - pos: -50.5,66.5 - parent: 1 - type: Transform - - uid: 7203 - components: - - pos: -50.5,70.5 - parent: 1 - type: Transform - - uid: 7206 - components: - - pos: -52.5,70.5 - parent: 1 - type: Transform - - uid: 7219 - components: - - pos: -52.5,77.5 - parent: 1 - type: Transform - - uid: 7220 - components: - - pos: -50.5,77.5 - parent: 1 - type: Transform - - uid: 7334 - components: - - pos: -52.5,81.5 - parent: 1 - type: Transform - - uid: 7335 - components: - - pos: -50.5,81.5 - parent: 1 - type: Transform -- proto: AirlockExternalGlassCargoLocked - entities: - - uid: 7343 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-12.5 - parent: 1 - type: Transform - - uid: 7345 - components: - - pos: -48.5,-14.5 - parent: 1 - type: Transform - - uid: 9129 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-13.5 - parent: 1 - type: Transform - - uid: 10260 - components: - - pos: -34.5,-11.5 - parent: 1 - type: Transform - - uid: 10261 - components: - - pos: -32.5,-11.5 - parent: 1 - type: Transform -- proto: AirlockExternalGlassEngineeringLocked - entities: - - uid: 10677 - components: - - rot: 3.141592653589793 rad - pos: -86.5,30.5 - parent: 1 - type: Transform - - uid: 10678 - components: - - rot: 3.141592653589793 rad - pos: -86.5,20.5 - parent: 1 - type: Transform -- proto: AirlockExternalGlassShuttleArrivals - entities: - - uid: 4844 - components: - - pos: -73.5,2.5 - parent: 1 - type: Transform - - uid: 4876 - components: - - pos: -66.5,2.5 - parent: 1 - type: Transform - - uid: 4964 - components: - - rot: 3.141592653589793 rad - pos: -73.5,-7.5 - parent: 1 - type: Transform - - uid: 4984 - components: - - rot: 3.141592653589793 rad - pos: -66.5,-7.5 - parent: 1 - type: Transform -- proto: AirlockExternalGlassShuttleEmergencyLocked - entities: - - uid: 1636 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,10.5 - parent: 1 - type: Transform - - uid: 1637 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,8.5 - parent: 1 - type: Transform - - uid: 1638 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,16.5 - parent: 1 - type: Transform - - uid: 1639 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,18.5 - parent: 1 - type: Transform -- proto: AirlockExternalGlassShuttleLocked - entities: - - uid: 3966 - components: - - pos: -64.5,-15.5 - parent: 1 - type: Transform - - uid: 4100 - components: - - pos: -74.5,-15.5 - parent: 1 - type: Transform - - uid: 4105 - components: - - pos: -72.5,-15.5 - parent: 1 - type: Transform - - uid: 4756 - components: - - pos: -66.5,-15.5 - parent: 1 - type: Transform - - uid: 10292 - components: - - pos: -34.5,-14.5 - parent: 1 - type: Transform - - uid: 10302 - components: - - pos: -32.5,-14.5 - parent: 1 - type: Transform -- proto: AirlockExternalLocked - entities: - - uid: 748 - components: - - pos: 28.5,-9.5 - parent: 1 - type: Transform - - uid: 909 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-6.5 - parent: 1 - type: Transform - - uid: 6966 - components: - - pos: -31.5,56.5 - parent: 1 - type: Transform - - uid: 6967 - components: - - pos: -31.5,58.5 - parent: 1 - type: Transform -- proto: AirlockFreezerLocked - entities: - - uid: 6926 - components: - - pos: -26.5,45.5 - parent: 1 - type: Transform - - uid: 6927 - components: - - pos: -30.5,46.5 - parent: 1 - type: Transform -- proto: AirlockGlass - entities: - - uid: 1597 - components: - - pos: 12.5,-0.5 - parent: 1 - type: Transform - - uid: 1598 - components: - - pos: 12.5,-1.5 - parent: 1 - type: Transform - - uid: 1599 - components: - - pos: 12.5,-2.5 - parent: 1 - type: Transform - - uid: 1756 - components: - - pos: 24.5,6.5 - parent: 1 - type: Transform - - uid: 1757 - components: - - pos: 24.5,5.5 - parent: 1 - type: Transform - - uid: 3396 - components: - - pos: -23.5,7.5 - parent: 1 - type: Transform - - uid: 7364 - components: - - pos: -38.5,34.5 - parent: 1 - type: Transform - - uid: 7365 - components: - - pos: -36.5,34.5 - parent: 1 - type: Transform - - uid: 10799 - components: - - pos: -22.5,30.5 - parent: 1 - type: Transform - - uid: 11909 - components: - - pos: -59.5,12.5 - parent: 1 - type: Transform - - uid: 15377 - components: - - rot: 3.141592653589793 rad - pos: 19.5,7.5 - parent: 1 - type: Transform -- proto: AirlockHeadOfPersonnelGlassLocked - entities: - - uid: 3454 - components: - - pos: -20.5,43.5 - parent: 1 - type: Transform - - uid: 5835 - components: - - pos: -18.5,45.5 - parent: 1 - type: Transform -- proto: AirlockHeadOfSecurityLocked - entities: - - uid: 5740 - components: - - pos: -59.5,62.5 - parent: 1 - type: Transform -- proto: AirlockHydroGlassLocked - entities: - - uid: 6879 - components: - - pos: -40.5,48.5 - parent: 1 - type: Transform -- proto: AirlockHydroponicsLocked - entities: - - uid: 6880 - components: - - pos: -45.5,46.5 - parent: 1 - type: Transform - - uid: 6881 - components: - - pos: -40.5,40.5 - parent: 1 - type: Transform -- proto: AirlockJanitorLocked - entities: - - uid: 7046 - components: - - pos: -52.5,39.5 - parent: 1 - type: Transform - - uid: 7051 - components: - - pos: -49.5,36.5 - parent: 1 - type: Transform -- proto: AirlockKitchenGlassLocked - entities: - - uid: 6903 - components: - - pos: -37.5,41.5 - parent: 1 - type: Transform -- proto: AirlockMaint - entities: - - uid: 1605 - components: - - pos: 24.5,-6.5 - parent: 1 - type: Transform - - uid: 2239 - components: - - pos: 15.5,18.5 - parent: 1 - type: Transform - - uid: 2240 - components: - - pos: 20.5,21.5 - parent: 1 - type: Transform - - uid: 3161 - components: - - pos: -31.5,16.5 - parent: 1 - type: Transform - - uid: 3504 - components: - - pos: -24.5,-9.5 - parent: 1 - type: Transform - - uid: 3505 - components: - - pos: -20.5,-9.5 - parent: 1 - type: Transform - - uid: 3506 - components: - - pos: -20.5,-12.5 - parent: 1 - type: Transform - - uid: 5369 - components: - - pos: -51.5,-3.5 - parent: 1 - type: Transform - - uid: 5463 - components: - - pos: -10.5,37.5 - parent: 1 - type: Transform - - uid: 6073 - components: - - pos: 7.5,49.5 - parent: 1 - type: Transform - - uid: 6075 - components: - - pos: 13.5,45.5 - parent: 1 - type: Transform - - uid: 6076 - components: - - pos: 10.5,49.5 - parent: 1 - type: Transform - - uid: 6078 - components: - - pos: 3.5,48.5 - parent: 1 - type: Transform - - uid: 6081 - components: - - pos: -0.5,48.5 - parent: 1 - type: Transform - - uid: 7586 - components: - - pos: -26.5,41.5 - parent: 1 - type: Transform - - uid: 13362 - components: - - pos: -73.5,44.5 - parent: 1 - type: Transform - - uid: 13363 - components: - - pos: -68.5,40.5 - parent: 1 - type: Transform - - uid: 13364 - components: - - pos: -74.5,52.5 - parent: 1 - type: Transform - - uid: 13365 - components: - - pos: -68.5,52.5 - parent: 1 - type: Transform - - uid: 14011 - components: - - rot: -1.5707963267948966 rad - pos: -63.5,15.5 - parent: 1 - type: Transform - - uid: 14465 - components: - - pos: -68.5,12.5 - parent: 1 - type: Transform -- proto: AirlockMaintBarLocked - entities: - - uid: 6710 - components: - - pos: -26.5,36.5 - parent: 1 - type: Transform -- proto: AirlockMaintCargoLocked - entities: - - uid: 3623 - components: - - pos: -47.5,-2.5 - parent: 1 - type: Transform - - uid: 3624 - components: - - pos: -30.5,-6.5 - parent: 1 - type: Transform -- proto: AirlockMaintChapelLocked - entities: - - uid: 1646 - components: - - pos: 19.5,-3.5 - parent: 1 - type: Transform -- proto: AirlockMaintChemLocked - entities: - - uid: 1620 - components: - - pos: -3.5,18.5 - parent: 1 - type: Transform -- proto: AirlockMaintCommandLocked - entities: - - uid: 6313 - components: - - pos: 16.5,37.5 - parent: 1 - type: Transform - - uid: 6397 - components: - - pos: -5.5,55.5 - parent: 1 - type: Transform - - uid: 6661 - components: - - pos: -9.5,47.5 - parent: 1 - type: Transform - - uid: 11896 - components: - - pos: 16.5,38.5 - parent: 1 - type: Transform -- proto: AirlockMaintEngiLocked - entities: - - uid: 612 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,18.5 - parent: 1 - type: Transform - - uid: 13621 - components: - - pos: -63.5,35.5 - parent: 1 - type: Transform -- proto: AirlockMaintGlass - entities: - - uid: 5878 - components: - - pos: -7.5,45.5 - parent: 1 - type: Transform -- proto: AirlockMaintHOPLocked - entities: - - uid: 3448 - components: - - pos: -23.5,41.5 - parent: 1 - type: Transform -- proto: AirlockMaintHydroLocked - entities: - - uid: 7896 - components: - - pos: -43.5,50.5 - parent: 1 - type: Transform -- proto: AirlockMaintJanitorLocked - entities: - - uid: 7063 - components: - - pos: -53.5,41.5 - parent: 1 - type: Transform -- proto: AirlockMaintKitchenLocked - entities: - - uid: 6693 - components: - - pos: -32.5,48.5 - parent: 1 - type: Transform -- proto: AirlockMaintLocked - entities: - - uid: 1602 - components: - - pos: 10.5,-4.5 - parent: 1 - type: Transform - - uid: 1603 - components: - - pos: 4.5,2.5 - parent: 1 - type: Transform - - uid: 1604 - components: - - pos: 22.5,3.5 - parent: 1 - type: Transform - - uid: 1606 - components: - - pos: -15.5,2.5 - parent: 1 - type: Transform - - uid: 1607 - components: - - pos: -26.5,-3.5 - parent: 1 - type: Transform - - uid: 1612 - components: - - pos: -5.5,8.5 - parent: 1 - type: Transform - - uid: 1613 - components: - - pos: -10.5,25.5 - parent: 1 - type: Transform - - uid: 3173 - components: - - pos: -33.5,8.5 - parent: 1 - type: Transform - - uid: 3180 - components: - - pos: -21.5,26.5 - parent: 1 - type: Transform - - uid: 3181 - components: - - pos: -19.5,8.5 - parent: 1 - type: Transform - - uid: 3391 - components: - - rot: 3.141592653589793 rad - pos: -21.5,16.5 - parent: 1 - type: Transform - - uid: 3392 - components: - - rot: 3.141592653589793 rad - pos: -29.5,15.5 - parent: 1 - type: Transform - - uid: 3393 - components: - - rot: 3.141592653589793 rad - pos: -21.5,12.5 - parent: 1 - type: Transform - - uid: 3906 - components: - - pos: -28.5,3.5 - parent: 1 - type: Transform - - uid: 4257 - components: - - pos: -44.5,29.5 - parent: 1 - type: Transform - - uid: 4258 - components: - - pos: -40.5,21.5 - parent: 1 - type: Transform - - uid: 4590 - components: - - pos: -51.5,15.5 - parent: 1 - type: Transform - - uid: 4741 - components: - - pos: -44.5,7.5 - parent: 1 - type: Transform - - uid: 5365 - components: - - pos: -48.5,2.5 - parent: 1 - type: Transform - - uid: 5366 - components: - - pos: -55.5,1.5 - parent: 1 - type: Transform - - uid: 5367 - components: - - pos: -55.5,-9.5 - parent: 1 - type: Transform - - uid: 5368 - components: - - pos: -55.5,-6.5 - parent: 1 - type: Transform - - uid: 5577 - components: - - rot: 3.141592653589793 rad - pos: -14.5,20.5 - parent: 1 - type: Transform - - uid: 6072 - components: - - pos: -18.5,51.5 - parent: 1 - type: Transform - - uid: 6074 - components: - - pos: -14.5,51.5 - parent: 1 - type: Transform - - uid: 7093 - components: - - pos: -55.5,39.5 - parent: 1 - type: Transform - - uid: 7094 - components: - - pos: -50.5,43.5 - parent: 1 - type: Transform - - uid: 7585 - components: - - pos: -24.5,35.5 - parent: 1 - type: Transform - - uid: 7897 - components: - - pos: -45.5,49.5 - parent: 1 - type: Transform - - uid: 9258 - components: - - rot: 1.5707963267948966 rad - pos: -60.5,7.5 - parent: 1 - type: Transform - - uid: 9288 - components: - - pos: -59.5,47.5 - parent: 1 - type: Transform - - uid: 13622 - components: - - pos: -60.5,34.5 - parent: 1 - type: Transform - - uid: 13623 - components: - - pos: -60.5,30.5 - parent: 1 - type: Transform -- proto: AirlockMaintMedLocked - entities: - - uid: 1365 - components: - - pos: 12.5,15.5 - parent: 1 - type: Transform - - uid: 1901 - components: - - pos: 13.5,35.5 - parent: 1 - type: Transform - - uid: 1971 - components: - - pos: 11.5,22.5 - parent: 1 - type: Transform - - uid: 2008 - components: - - pos: 5.5,40.5 - parent: 1 - type: Transform - - uid: 2050 - components: - - rot: 3.141592653589793 rad - pos: -2.5,16.5 - parent: 1 - type: Transform -- proto: AirlockMaintRnDLocked - entities: - - uid: 226 - components: - - pos: 0.5,-5.5 - parent: 1 - type: Transform - - uid: 1094 - components: - - pos: -17.5,-9.5 - parent: 1 - type: Transform - - uid: 1515 - components: - - pos: -16.5,-6.5 - parent: 1 - type: Transform -- proto: AirlockMaintSalvageLocked - entities: - - uid: 5382 - components: - - pos: -46.5,-9.5 - parent: 1 - type: Transform -- proto: AirlockMaintSecLocked - entities: - - uid: 2848 - components: - - pos: -18.5,29.5 - parent: 1 - type: Transform - - uid: 7867 - components: - - pos: -64.5,57.5 - parent: 1 - type: Transform - - uid: 7883 - components: - - pos: -45.5,54.5 - parent: 1 - type: Transform -- proto: AirlockMaintTheatreLocked - entities: - - uid: 3419 - components: - - pos: -21.5,23.5 - parent: 1 - type: Transform - - uid: 4234 - components: - - pos: -43.5,27.5 - parent: 1 - type: Transform -- proto: AirlockMedicalGlass - entities: - - uid: 1995 - components: - - pos: -5.5,31.5 - parent: 1 - type: Transform - - uid: 1996 - components: - - pos: -5.5,33.5 - parent: 1 - type: Transform -- proto: AirlockMedicalGlassLocked - entities: - - uid: 1320 - components: - - pos: 6.5,28.5 - parent: 1 - type: Transform - - uid: 1354 - components: - - pos: 6.5,29.5 - parent: 1 - type: Transform - - uid: 1617 - components: - - pos: 1.5,29.5 - parent: 1 - type: Transform - - uid: 1618 - components: - - pos: 1.5,30.5 - parent: 1 - type: Transform - - uid: 10538 - components: - - rot: 3.141592653589793 rad - pos: -14.5,15.5 - parent: 1 - type: Transform -- proto: AirlockMedicalLocked - entities: - - uid: 1319 - components: - - pos: 5.5,24.5 - parent: 1 - type: Transform - - uid: 1351 - components: - - pos: 3.5,35.5 - parent: 1 - type: Transform - - uid: 1352 - components: - - pos: 5.5,33.5 - parent: 1 - type: Transform - - uid: 1353 - components: - - pos: 5.5,25.5 - parent: 1 - type: Transform - - uid: 1629 - components: - - pos: 1.5,33.5 - parent: 1 - type: Transform - - uid: 2312 - components: - - pos: 3.5,18.5 - parent: 1 - type: Transform -- proto: AirlockQuartermasterLocked - entities: - - uid: 3666 - components: - - pos: -44.5,-5.5 - parent: 1 - type: Transform -- proto: AirlockResearchDirectorLocked - entities: - - uid: 252 - components: - - pos: -2.5,-0.5 - parent: 1 - type: Transform - - uid: 256 - components: - - pos: -12.5,-6.5 - parent: 1 - type: Transform -- proto: AirlockSalvageGlassLocked - entities: - - uid: 3566 - components: - - pos: -40.5,-8.5 - parent: 1 - type: Transform - - uid: 10278 - components: - - pos: -35.5,-2.5 - parent: 1 - type: Transform -- proto: AirlockSalvageLocked - entities: - - uid: 3669 - components: - - pos: -32.5,-0.5 - parent: 1 - type: Transform -- proto: AirlockScienceLocked - entities: - - uid: 221 - components: - - pos: -0.5,-10.5 - parent: 1 - type: Transform - - uid: 222 - components: - - pos: 1.5,-12.5 - parent: 1 - type: Transform - - uid: 223 - components: - - pos: -12.5,3.5 - parent: 1 - type: Transform - - uid: 224 - components: - - pos: -10.5,1.5 - parent: 1 - type: Transform - - uid: 225 - components: - - pos: 0.5,-1.5 - parent: 1 - type: Transform - - uid: 283 - components: - - pos: -10.5,-12.5 - parent: 1 - type: Transform - - uid: 532 - components: - - pos: 19.5,-6.5 - parent: 1 - type: Transform - - uid: 1514 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-2.5 - parent: 1 - type: Transform -- proto: AirlockSecurityGlassLocked - entities: - - uid: 2017 - components: - - pos: 1.5,7.5 - parent: 1 - type: Transform - - uid: 5477 - components: - - pos: -50.5,69.5 - parent: 1 - type: Transform - - uid: 5481 - components: - - pos: -52.5,69.5 - parent: 1 - type: Transform - - uid: 5739 - components: - - pos: -55.5,62.5 - parent: 1 - type: Transform - - uid: 5743 - components: - - pos: -50.5,78.5 - parent: 1 - type: Transform - - uid: 5744 - components: - - pos: -52.5,78.5 - parent: 1 - type: Transform - - uid: 7336 - components: - - pos: -53.5,83.5 - parent: 1 - type: Transform - - uid: 7337 - components: - - pos: -53.5,89.5 - parent: 1 - type: Transform - - uid: 7644 - components: - - rot: 1.5707963267948966 rad - pos: -56.5,83.5 - parent: 1 - type: Transform - - uid: 7645 - components: - - rot: 1.5707963267948966 rad - pos: -56.5,89.5 - parent: 1 - type: Transform - - uid: 7863 - components: - - pos: -52.5,59.5 - parent: 1 - type: Transform - - uid: 7864 - components: - - pos: -50.5,59.5 - parent: 1 - type: Transform - - uid: 7865 - components: - - pos: -58.5,55.5 - parent: 1 - type: Transform - - uid: 7866 - components: - - pos: -58.5,53.5 - parent: 1 - type: Transform -- proto: AirlockSecurityLocked - entities: - - uid: 2847 - components: - - rot: 3.141592653589793 rad - pos: -14.5,27.5 - parent: 1 - type: Transform - - uid: 7895 - components: - - pos: -58.5,57.5 - parent: 1 - type: Transform - - uid: 8601 - components: - - pos: -16.5,7.5 - parent: 1 - type: Transform - - uid: 9158 - components: - - pos: -67.5,47.5 - parent: 1 - type: Transform -- proto: AirlockServiceGlassLocked - entities: - - uid: 8236 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,16.5 - parent: 1 - type: Transform -- proto: AirlockServiceLocked - entities: - - uid: 3394 - components: - - pos: -29.5,8.5 - parent: 1 - type: Transform - - uid: 3395 - components: - - rot: 3.141592653589793 rad - pos: -32.5,10.5 - parent: 1 - type: Transform -- proto: AirlockTheatreLocked - entities: - - uid: 3418 - components: - - pos: -27.5,23.5 - parent: 1 - type: Transform - - uid: 4176 - components: - - pos: -39.5,24.5 - parent: 1 - type: Transform -- proto: AirlockVirologyLocked - entities: - - uid: 1147 - components: - - pos: 5.5,19.5 - parent: 1 - type: Transform - - uid: 1148 - components: - - pos: 8.5,19.5 - parent: 1 - type: Transform -- proto: AltarChaos - entities: - - uid: 5926 - components: - - pos: -7.5,39.5 - parent: 1 - type: Transform -- proto: AltarDruid - entities: - - uid: 14452 - components: - - pos: -71.5,8.5 - parent: 1 - type: Transform - - uid: 14453 - components: - - pos: -70.5,8.5 - parent: 1 - type: Transform -- proto: AltarSpawner - entities: - - uid: 1810 - components: - - pos: 15.5,3.5 - parent: 1 - type: Transform -- proto: AmeController - entities: - - uid: 10656 - components: - - pos: -71.5,19.5 - parent: 1 - type: Transform -- proto: AmeJar - entities: - - uid: 5545 - components: - - pos: -53.477688,27.48855 - parent: 1 - type: Transform -- proto: AnomalyScanner - entities: - - uid: 313 - components: - - pos: -17.139996,-14.28252 - parent: 1 - type: Transform - - uid: 327 - components: - - pos: -16.577496,-14.37627 - parent: 1 - type: Transform -- proto: APCBasic - entities: - - uid: 315 - components: - - pos: -4.5,-0.5 - parent: 1 - type: Transform - - uid: 348 - components: - - pos: 2.5,-7.5 - parent: 1 - type: Transform - - uid: 937 - components: - - rot: 3.141592653589793 rad - pos: 26.5,0.5 - parent: 1 - type: Transform - - uid: 1019 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,24.5 - parent: 1 - type: Transform - - uid: 1674 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,0.5 - parent: 1 - type: Transform - - uid: 2080 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,21.5 - parent: 1 - type: Transform - - uid: 2081 - components: - - pos: 4.5,35.5 - parent: 1 - type: Transform - - uid: 2514 - components: - - pos: 22.5,10.5 - parent: 1 - type: Transform - - uid: 2697 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,17.5 - parent: 1 - type: Transform - - uid: 3211 - components: - - pos: -24.5,19.5 - parent: 1 - type: Transform - - uid: 3527 - components: - - pos: -29.5,30.5 - parent: 1 - type: Transform - - uid: 3776 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-5.5 - parent: 1 - type: Transform - - uid: 3872 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-2.5 - parent: 1 - type: Transform - - uid: 4340 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,20.5 - parent: 1 - type: Transform - - uid: 4341 - components: - - pos: -41.5,12.5 - parent: 1 - type: Transform - - uid: 4610 - components: - - rot: -1.5707963267948966 rad - pos: -51.5,14.5 - parent: 1 - type: Transform - - uid: 4611 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,27.5 - parent: 1 - type: Transform - - uid: 5103 - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-7.5 - parent: 1 - type: Transform - - uid: 6204 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,49.5 - parent: 1 - type: Transform - - uid: 6259 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,9.5 - parent: 1 - type: Transform - - uid: 6528 - components: - - pos: -4.5,57.5 - parent: 1 - type: Transform - - uid: 7743 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,85.5 - parent: 1 - type: Transform - - uid: 7842 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,63.5 - parent: 1 - type: Transform - - uid: 7843 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,56.5 - parent: 1 - type: Transform - - uid: 9395 - components: - - pos: -31.5,48.5 - parent: 1 - type: Transform - - uid: 9417 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,38.5 - parent: 1 - type: Transform - - uid: 9494 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,40.5 - parent: 1 - type: Transform - - uid: 10426 - components: - - pos: -42.5,-8.5 - parent: 1 - type: Transform - - uid: 10998 - components: - - rot: 1.5707963267948966 rad - pos: -65.5,44.5 - parent: 1 - type: Transform - - uid: 11058 - components: - - pos: -68.5,35.5 - parent: 1 - type: Transform - - uid: 11059 - components: - - rot: -1.5707963267948966 rad - pos: -76.5,36.5 - parent: 1 - type: Transform - - uid: 11060 - components: - - rot: 1.5707963267948966 rad - pos: -75.5,21.5 - parent: 1 - type: Transform - - uid: 15234 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,44.5 - parent: 1 - type: Transform -- proto: APCElectronics - entities: - - uid: 5534 - components: - - pos: -51.59716,29.743225 - parent: 1 - type: Transform - - uid: 5535 - components: - - pos: -51.50341,29.555725 - parent: 1 - type: Transform -- proto: APECircuitboard - entities: - - uid: 13662 - components: - - pos: -15.288552,-14.404373 - parent: 1 - type: Transform -- proto: AsteroidRock - entities: - - uid: 87 - components: - - pos: -4.5,-6.5 - parent: 1 - type: Transform - - uid: 89 - components: - - pos: -2.5,-6.5 - parent: 1 - type: Transform - - uid: 97 - components: - - pos: -0.5,-6.5 - parent: 1 - type: Transform - - uid: 170 - components: - - pos: -0.5,-7.5 - parent: 1 - type: Transform - - uid: 171 - components: - - pos: -0.5,-8.5 - parent: 1 - type: Transform - - uid: 174 - components: - - pos: 4.5,-7.5 - parent: 1 - type: Transform - - uid: 200 - components: - - pos: 7.5,-9.5 - parent: 1 - type: Transform - - uid: 471 - components: - - pos: 11.5,-9.5 - parent: 1 - type: Transform - - uid: 474 - components: - - pos: 9.5,-7.5 - parent: 1 - type: Transform - - uid: 475 - components: - - pos: 9.5,-8.5 - parent: 1 - type: Transform - - uid: 506 - components: - - pos: 8.5,-9.5 - parent: 1 - type: Transform - - uid: 507 - components: - - pos: 7.5,-7.5 - parent: 1 - type: Transform - - uid: 508 - components: - - pos: 9.5,-9.5 - parent: 1 - type: Transform - - uid: 510 - components: - - pos: 8.5,-7.5 - parent: 1 - type: Transform - - uid: 511 - components: - - pos: 7.5,-8.5 - parent: 1 - type: Transform - - uid: 592 - components: - - pos: 11.5,-10.5 - parent: 1 - type: Transform - - uid: 8978 - components: - - pos: -52.5,93.5 - parent: 1 - type: Transform - - uid: 8980 - components: - - pos: -53.5,93.5 - parent: 1 - type: Transform - - uid: 8982 - components: - - pos: -54.5,93.5 - parent: 1 - type: Transform - - uid: 8983 - components: - - pos: -55.5,93.5 - parent: 1 - type: Transform - - uid: 8996 - components: - - pos: -56.5,92.5 - parent: 1 - type: Transform - - uid: 8998 - components: - - pos: -56.5,94.5 - parent: 1 - type: Transform - - uid: 8999 - components: - - pos: -54.5,92.5 - parent: 1 - type: Transform - - uid: 9003 - components: - - pos: -61.5,91.5 - parent: 1 - type: Transform - - uid: 9004 - components: - - pos: -60.5,91.5 - parent: 1 - type: Transform - - uid: 9005 - components: - - pos: -60.5,92.5 - parent: 1 - type: Transform - - uid: 9007 - components: - - pos: -59.5,92.5 - parent: 1 - type: Transform - - uid: 9011 - components: - - pos: -48.5,83.5 - parent: 1 - type: Transform - - uid: 9012 - components: - - pos: -48.5,82.5 - parent: 1 - type: Transform - - uid: 9015 - components: - - pos: -48.5,81.5 - parent: 1 - type: Transform - - uid: 9017 - components: - - pos: -47.5,82.5 - parent: 1 - type: Transform - - uid: 9019 - components: - - pos: -47.5,83.5 - parent: 1 - type: Transform - - uid: 9021 - components: - - pos: -47.5,84.5 - parent: 1 - type: Transform - - uid: 9038 - components: - - pos: -62.5,81.5 - parent: 1 - type: Transform - - uid: 9057 - components: - - pos: -48.5,84.5 - parent: 1 - type: Transform - - uid: 9060 - components: - - pos: -48.5,86.5 - parent: 1 - type: Transform - - uid: 9062 - components: - - pos: -48.5,87.5 - parent: 1 - type: Transform - - uid: 9063 - components: - - pos: -48.5,88.5 - parent: 1 - type: Transform - - uid: 9065 - components: - - pos: -48.5,89.5 - parent: 1 - type: Transform - - uid: 9068 - components: - - pos: -47.5,85.5 - parent: 1 - type: Transform - - uid: 9071 - components: - - pos: -47.5,86.5 - parent: 1 - type: Transform - - uid: 9072 - components: - - pos: -47.5,87.5 - parent: 1 - type: Transform - - uid: 9075 - components: - - pos: -58.5,92.5 - parent: 1 - type: Transform - - uid: 9076 - components: - - pos: -57.5,94.5 - parent: 1 - type: Transform - - uid: 9087 - components: - - pos: -51.5,92.5 - parent: 1 - type: Transform - - uid: 9089 - components: - - pos: -53.5,92.5 - parent: 1 - type: Transform - - uid: 9101 - components: - - pos: -52.5,92.5 - parent: 1 - type: Transform - - uid: 15259 - components: - - pos: -56.5,93.5 - parent: 1 - type: Transform - - uid: 15260 - components: - - pos: -57.5,93.5 - parent: 1 - type: Transform - - uid: 15261 - components: - - pos: -58.5,93.5 - parent: 1 - type: Transform - - uid: 15262 - components: - - pos: -59.5,93.5 - parent: 1 - type: Transform - - uid: 15263 - components: - - pos: -58.5,91.5 - parent: 1 - type: Transform - - uid: 15264 - components: - - pos: -57.5,91.5 - parent: 1 - type: Transform - - uid: 15265 - components: - - pos: -61.5,81.5 - parent: 1 - type: Transform - - uid: 15266 - components: - - pos: -60.5,81.5 - parent: 1 - type: Transform - - uid: 15267 - components: - - pos: -59.5,81.5 - parent: 1 - type: Transform - - uid: 15268 - components: - - pos: -58.5,81.5 - parent: 1 - type: Transform - - uid: 15269 - components: - - pos: -57.5,81.5 - parent: 1 - type: Transform - - uid: 15270 - components: - - pos: -57.5,80.5 - parent: 1 - type: Transform - - uid: 15271 - components: - - pos: -58.5,80.5 - parent: 1 - type: Transform - - uid: 15272 - components: - - pos: -59.5,80.5 - parent: 1 - type: Transform - - uid: 15273 - components: - - pos: -60.5,80.5 - parent: 1 - type: Transform - - uid: 15274 - components: - - pos: -51.5,93.5 - parent: 1 - type: Transform - - uid: 15275 - components: - - pos: -50.5,92.5 - parent: 1 - type: Transform - - uid: 15276 - components: - - pos: -55.5,94.5 - parent: 1 - type: Transform - - uid: 15277 - components: - - pos: -54.5,94.5 - parent: 1 - type: Transform -- proto: AsteroidRockMining - entities: - - uid: 38 - components: - - pos: -6.5,-7.5 - parent: 1 - type: Transform - - uid: 59 - components: - - pos: -7.5,-6.5 - parent: 1 - type: Transform - - uid: 63 - components: - - pos: -6.5,-8.5 - parent: 1 - type: Transform - - uid: 72 - components: - - pos: -9.5,-8.5 - parent: 1 - type: Transform - - uid: 74 - components: - - pos: -9.5,-7.5 - parent: 1 - type: Transform - - uid: 75 - components: - - pos: -5.5,-8.5 - parent: 1 - type: Transform - - uid: 84 - components: - - pos: -4.5,-7.5 - parent: 1 - type: Transform - - uid: 90 - components: - - pos: -4.5,-10.5 - parent: 1 - type: Transform - - uid: 91 - components: - - pos: -5.5,-10.5 - parent: 1 - type: Transform - - uid: 92 - components: - - pos: -3.5,-9.5 - parent: 1 - type: Transform - - uid: 93 - components: - - pos: -3.5,-8.5 - parent: 1 - type: Transform - - uid: 94 - components: - - pos: -2.5,-8.5 - parent: 1 - type: Transform - - uid: 95 - components: - - pos: -4.5,-9.5 - parent: 1 - type: Transform - - uid: 98 - components: - - pos: -6.5,-9.5 - parent: 1 - type: Transform - - uid: 99 - components: - - pos: -5.5,-9.5 - parent: 1 - type: Transform - - uid: 100 - components: - - pos: -3.5,-7.5 - parent: 1 - type: Transform - - uid: 101 - components: - - pos: -2.5,-7.5 - parent: 1 - type: Transform - - uid: 102 - components: - - pos: -6.5,-10.5 - parent: 1 - type: Transform - - uid: 103 - components: - - pos: -5.5,-7.5 - parent: 1 - type: Transform - - uid: 104 - components: - - pos: -6.5,-11.5 - parent: 1 - type: Transform - - uid: 106 - components: - - pos: -5.5,-11.5 - parent: 1 - type: Transform - - uid: 107 - components: - - pos: -7.5,-10.5 - parent: 1 - type: Transform - - uid: 108 - components: - - pos: -8.5,-10.5 - parent: 1 - type: Transform - - uid: 111 - components: - - pos: -9.5,-10.5 - parent: 1 - type: Transform - - uid: 112 - components: - - pos: -9.5,-14.5 - parent: 1 - type: Transform - - uid: 114 - components: - - pos: -6.5,-14.5 - parent: 1 - type: Transform - - uid: 123 - components: - - pos: -9.5,-13.5 - parent: 1 - type: Transform - - uid: 127 - components: - - pos: -7.5,-13.5 - parent: 1 - type: Transform - - uid: 129 - components: - - pos: -7.5,-14.5 - parent: 1 - type: Transform - - uid: 130 - components: - - pos: -8.5,-14.5 - parent: 1 - type: Transform - - uid: 131 - components: - - pos: -8.5,-15.5 - parent: 1 - type: Transform - - uid: 132 - components: - - pos: -7.5,-15.5 - parent: 1 - type: Transform - - uid: 134 - components: - - pos: -3.5,-16.5 - parent: 1 - type: Transform - - uid: 135 - components: - - pos: -3.5,-15.5 - parent: 1 - type: Transform - - uid: 136 - components: - - pos: -3.5,-14.5 - parent: 1 - type: Transform - - uid: 138 - components: - - pos: -4.5,-13.5 - parent: 1 - type: Transform - - uid: 139 - components: - - pos: -3.5,-13.5 - parent: 1 - type: Transform - - uid: 140 - components: - - pos: -3.5,-12.5 - parent: 1 - type: Transform - - uid: 141 - components: - - pos: -2.5,-12.5 - parent: 1 - type: Transform - - uid: 142 - components: - - pos: -2.5,-13.5 - parent: 1 - type: Transform - - uid: 144 - components: - - pos: -2.5,-15.5 - parent: 1 - type: Transform - - uid: 145 - components: - - pos: -1.5,-15.5 - parent: 1 - type: Transform - - uid: 146 - components: - - pos: -1.5,-14.5 - parent: 1 - type: Transform - - uid: 147 - components: - - pos: -1.5,-13.5 - parent: 1 - type: Transform - - uid: 148 - components: - - pos: -1.5,-12.5 - parent: 1 - type: Transform - - uid: 150 - components: - - pos: 4.5,-13.5 - parent: 1 - type: Transform - - uid: 151 - components: - - pos: 5.5,-13.5 - parent: 1 - type: Transform - - uid: 152 - components: - - pos: 5.5,-14.5 - parent: 1 - type: Transform - - uid: 153 - components: - - pos: 4.5,-16.5 - parent: 1 - type: Transform - - uid: 154 - components: - - pos: 3.5,-17.5 - parent: 1 - type: Transform - - uid: 155 - components: - - pos: 2.5,-17.5 - parent: 1 - type: Transform - - uid: 156 - components: - - pos: 1.5,-17.5 - parent: 1 - type: Transform - - uid: 157 - components: - - pos: 0.5,-17.5 - parent: 1 - type: Transform - - uid: 158 - components: - - pos: -0.5,-16.5 - parent: 1 - type: Transform - - uid: 159 - components: - - pos: -1.5,-16.5 - parent: 1 - type: Transform - - uid: 160 - components: - - pos: 0.5,-16.5 - parent: 1 - type: Transform - - uid: 161 - components: - - pos: 3.5,-16.5 - parent: 1 - type: Transform - - uid: 162 - components: - - pos: 3.5,-15.5 - parent: 1 - type: Transform - - uid: 163 - components: - - pos: -0.5,-13.5 - parent: 1 - type: Transform - - uid: 165 - components: - - pos: 7.5,-10.5 - parent: 1 - type: Transform - - uid: 166 - components: - - pos: 7.5,-11.5 - parent: 1 - type: Transform - - uid: 291 - components: - - pos: -8.5,-7.5 - parent: 1 - type: Transform - - uid: 292 - components: - - pos: -8.5,-8.5 - parent: 1 - type: Transform - - uid: 293 - components: - - pos: -8.5,-9.5 - parent: 1 - type: Transform - - uid: 414 - components: - - pos: -7.5,-7.5 - parent: 1 - type: Transform - - uid: 415 - components: - - pos: -7.5,-8.5 - parent: 1 - type: Transform - - uid: 495 - components: - - pos: 8.5,-10.5 - parent: 1 - type: Transform - - uid: 501 - components: - - pos: 9.5,-10.5 - parent: 1 - type: Transform - - uid: 505 - components: - - pos: 10.5,-10.5 - parent: 1 - type: Transform - - uid: 3965 - components: - - pos: -9.5,-9.5 - parent: 1 - type: Transform - - uid: 14845 - components: - - pos: 6.5,-15.5 - parent: 1 - type: Transform -- proto: AtmosDeviceFanTiny - entities: - - uid: 3569 - components: - - pos: -66.5,-15.5 - parent: 1 - type: Transform - - uid: 3968 - components: - - pos: -64.5,-15.5 - parent: 1 - type: Transform - - uid: 4745 - components: - - pos: -74.5,-15.5 - parent: 1 - type: Transform - - uid: 4761 - components: - - pos: -72.5,-15.5 - parent: 1 - type: Transform - - uid: 4851 - components: - - pos: -66.5,2.5 - parent: 1 - type: Transform - - uid: 4854 - components: - - pos: -73.5,2.5 - parent: 1 - type: Transform - - uid: 4972 - components: - - pos: -73.5,-7.5 - parent: 1 - type: Transform - - uid: 4973 - components: - - pos: -66.5,-7.5 - parent: 1 - type: Transform - - uid: 14853 - components: - - pos: -34.5,-14.5 - parent: 1 - type: Transform - - uid: 14854 - components: - - pos: -32.5,-14.5 - parent: 1 - type: Transform - - uid: 15074 - components: - - pos: 32.5,8.5 - parent: 1 - type: Transform - - uid: 15076 - components: - - pos: 32.5,10.5 - parent: 1 - type: Transform - - uid: 15077 - components: - - pos: 32.5,16.5 - parent: 1 - type: Transform - - uid: 15078 - components: - - pos: 32.5,18.5 - parent: 1 - type: Transform - - uid: 15111 - components: - - pos: -30.5,46.5 - parent: 1 - type: Transform - - uid: 15112 - components: - - pos: -26.5,45.5 - parent: 1 - type: Transform -- proto: AtmosFixBlockerMarker - entities: - - uid: 13045 - components: - - pos: -90.5,45.5 - parent: 1 - type: Transform - - uid: 13048 - components: - - pos: -89.5,45.5 - parent: 1 - type: Transform - - uid: 13049 - components: - - pos: -88.5,45.5 - parent: 1 - type: Transform - - uid: 13345 - components: - - pos: -90.5,41.5 - parent: 1 - type: Transform - - uid: 13346 - components: - - pos: -89.5,41.5 - parent: 1 - type: Transform - - uid: 13347 - components: - - pos: -88.5,41.5 - parent: 1 - type: Transform - - uid: 13348 - components: - - pos: -90.5,39.5 - parent: 1 - type: Transform - - uid: 13349 - components: - - pos: -89.5,39.5 - parent: 1 - type: Transform - - uid: 13350 - components: - - pos: -88.5,39.5 - parent: 1 - type: Transform - - uid: 13357 - components: - - pos: -83.5,50.5 - parent: 1 - type: Transform - - uid: 13358 - components: - - pos: -82.5,50.5 - parent: 1 - type: Transform - - uid: 13359 - components: - - pos: -81.5,50.5 - parent: 1 - type: Transform -- proto: AtmosFixNitrogenMarker - entities: - - uid: 13354 - components: - - pos: -90.5,37.5 - parent: 1 - type: Transform - - uid: 13355 - components: - - pos: -89.5,37.5 - parent: 1 - type: Transform - - uid: 13356 - components: - - pos: -88.5,37.5 - parent: 1 - type: Transform -- proto: AtmosFixOxygenMarker - entities: - - uid: 13351 - components: - - pos: -90.5,35.5 - parent: 1 - type: Transform - - uid: 13352 - components: - - pos: -89.5,35.5 - parent: 1 - type: Transform - - uid: 13353 - components: - - pos: -88.5,35.5 - parent: 1 - type: Transform -- proto: AtmosFixPlasmaMarker - entities: - - uid: 13042 - components: - - pos: -90.5,43.5 - parent: 1 - type: Transform - - uid: 13043 - components: - - pos: -89.5,43.5 - parent: 1 - type: Transform - - uid: 13044 - components: - - pos: -88.5,43.5 - parent: 1 - type: Transform -- proto: Autolathe - entities: - - uid: 255 - components: - - pos: -5.5,-0.5 - parent: 1 - type: Transform - - uid: 14169 - components: - - pos: -38.5,-1.5 - parent: 1 - type: Transform -- proto: BananaPhoneInstrument - entities: - - uid: 4230 - components: - - pos: -40.3798,27.56435 - parent: 1 - type: Transform - - uid: 7304 - components: - - pos: -59.52376,89.56535 - parent: 1 - type: Transform -- proto: BannerScience - entities: - - uid: 229 - components: - - pos: -8.5,-5.5 - parent: 1 - type: Transform - - uid: 10082 - components: - - pos: -11.5,0.5 - parent: 1 - type: Transform -- proto: Barricade - entities: - - uid: 720 - components: - - pos: 12.5,-5.5 - parent: 1 - type: Transform - - uid: 1498 - components: - - pos: 13.5,39.5 - parent: 1 - type: Transform - - uid: 2037 - components: - - pos: 18.5,32.5 - parent: 1 - type: Transform - - uid: 2731 - components: - - pos: -28.5,53.5 - parent: 1 - type: Transform - - uid: 2794 - components: - - pos: 15.5,39.5 - parent: 1 - type: Transform - - uid: 5451 - components: - - pos: -21.5,-6.5 - parent: 1 - type: Transform - - uid: 5453 - components: - - pos: -25.5,-7.5 - parent: 1 - type: Transform - - uid: 5454 - components: - - pos: -25.5,-8.5 - parent: 1 - type: Transform - - uid: 5456 - components: - - pos: -20.5,-6.5 - parent: 1 - type: Transform - - uid: 5457 - components: - - pos: -19.5,-7.5 - parent: 1 - type: Transform - - uid: 5458 - components: - - pos: -19.5,-8.5 - parent: 1 - type: Transform - - uid: 5517 - components: - - pos: -54.5,-7.5 - parent: 1 - type: Transform - - uid: 5518 - components: - - pos: -51.5,-4.5 - parent: 1 - type: Transform - - uid: 6058 - components: - - pos: -17.5,50.5 - parent: 1 - type: Transform - - uid: 6067 - components: - - pos: -15.5,50.5 - parent: 1 - type: Transform - - uid: 7509 - components: - - pos: -28.5,52.5 - parent: 1 - type: Transform - - uid: 7510 - components: - - pos: -27.5,55.5 - parent: 1 - type: Transform - - uid: 9801 - components: - - pos: -31.5,52.5 - parent: 1 - type: Transform - - uid: 14839 - components: - - pos: 8.5,-14.5 - parent: 1 - type: Transform - - uid: 15914 - components: - - pos: 14.5,39.5 - parent: 1 - type: Transform - - uid: 15918 - components: - - pos: 17.5,35.5 - parent: 1 - type: Transform - - uid: 15919 - components: - - pos: 17.5,34.5 - parent: 1 - type: Transform -- proto: BarSign - entities: - - uid: 5279 - components: - - pos: -53.5,22.5 - parent: 1 - type: Transform - - uid: 7368 - components: - - pos: -33.5,34.5 - parent: 1 - type: Transform -- proto: BaseComputer - entities: - - uid: 5338 - components: - - rot: 3.141592653589793 rad - pos: 22.5,42.5 - parent: 1 - type: Transform -- proto: Beaker - entities: - - uid: 1959 - components: - - pos: -0.3099949,22.624739 - parent: 1 - type: Transform - - uid: 1960 - components: - - pos: -0.70061994,22.327864 - parent: 1 - type: Transform - - uid: 1961 - components: - - pos: -0.6683643,21.869993 - parent: 1 - type: Transform - - uid: 2382 - components: - - pos: 10.321079,33.83294 - parent: 1 - type: Transform - - uid: 2383 - components: - - pos: 10.680454,33.64544 - parent: 1 - type: Transform -- proto: Bed - entities: - - uid: 616 - components: - - pos: 18.5,-8.5 - parent: 1 - type: Transform - - uid: 617 - components: - - pos: 18.5,-7.5 - parent: 1 - type: Transform - - uid: 625 - components: - - pos: 8.5,2.5 - parent: 1 - type: Transform - - uid: 626 - components: - - pos: 6.5,-1.5 - parent: 1 - type: Transform - - uid: 1831 - components: - - pos: 21.5,-0.5 - parent: 1 - type: Transform - - uid: 1909 - components: - - pos: -53.5,49.5 - parent: 1 - type: Transform - - uid: 1916 - components: - - pos: -50.5,49.5 - parent: 1 - type: Transform - - uid: 1918 - components: - - pos: -56.5,49.5 - parent: 1 - type: Transform - - uid: 2266 - components: - - pos: 17.5,23.5 - parent: 1 - type: Transform - - uid: 2345 - components: - - pos: 6.5,11.5 - parent: 1 - type: Transform - - uid: 2346 - components: - - pos: 8.5,11.5 - parent: 1 - type: Transform - - uid: 2347 - components: - - pos: 10.5,11.5 - parent: 1 - type: Transform - - uid: 2905 - components: - - pos: -17.5,22.5 - parent: 1 - type: Transform - - uid: 2907 - components: - - pos: -15.5,22.5 - parent: 1 - type: Transform - - uid: 2993 - components: - - pos: 11.5,31.5 - parent: 1 - type: Transform - - uid: 2994 - components: - - pos: 7.5,31.5 - parent: 1 - type: Transform - - uid: 3406 - components: - - pos: -31.5,8.5 - parent: 1 - type: Transform - - uid: 3480 - components: - - pos: 9.5,31.5 - parent: 1 - type: Transform - - uid: 7347 - components: - - pos: -54.5,84.5 - parent: 1 - type: Transform - - uid: 7527 - components: - - pos: -54.5,90.5 - parent: 1 - type: Transform - - uid: 10903 - components: - - pos: -5.5,58.5 - parent: 1 - type: Transform - - uid: 15164 - components: - - pos: 17.5,48.5 - parent: 1 - type: Transform -- proto: BedsheetCaptain - entities: - - uid: 10904 - components: - - pos: -5.5,58.5 - parent: 1 - type: Transform -- proto: BedsheetClown - entities: - - uid: 2267 - components: - - pos: 17.5,23.5 - parent: 1 - type: Transform -- proto: BedsheetCult - entities: - - uid: 1830 - components: - - pos: 21.5,-0.5 - parent: 1 - type: Transform -- proto: BedsheetGreen - entities: - - uid: 622 - components: - - pos: 18.5,-7.5 - parent: 1 - type: Transform - - uid: 623 - components: - - pos: 18.5,-8.5 - parent: 1 - type: Transform - - uid: 2348 - components: - - rot: 3.141592653589793 rad - pos: 6.5,11.5 - parent: 1 - type: Transform - - uid: 2349 - components: - - rot: 3.141592653589793 rad - pos: 8.5,11.5 - parent: 1 - type: Transform - - uid: 2350 - components: - - rot: 3.141592653589793 rad - pos: 10.5,11.5 - parent: 1 - type: Transform -- proto: BedsheetMedical - entities: - - uid: 2062 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,31.5 - parent: 1 - type: Transform - - uid: 2063 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,31.5 - parent: 1 - type: Transform - - uid: 2065 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,31.5 - parent: 1 - type: Transform -- proto: BedsheetOrange - entities: - - uid: 1910 - components: - - pos: -56.5,49.5 - parent: 1 - type: Transform - - uid: 1912 - components: - - pos: -53.5,49.5 - parent: 1 - type: Transform - - uid: 1922 - components: - - pos: -50.5,49.5 - parent: 1 - type: Transform - - uid: 5555 - components: - - rot: 3.141592653589793 rad - pos: -15.5,22.5 - parent: 1 - type: Transform - - uid: 5565 - components: - - rot: 3.141592653589793 rad - pos: -17.5,22.5 - parent: 1 - type: Transform -- proto: BedsheetPurple - entities: - - uid: 15165 - components: - - pos: 17.5,48.5 - parent: 1 - type: Transform -- proto: BedsheetSpawner - entities: - - uid: 624 - components: - - pos: 6.5,-1.5 - parent: 1 - type: Transform - - uid: 627 - components: - - pos: 8.5,2.5 - parent: 1 - type: Transform - - uid: 3399 - components: - - pos: -31.5,8.5 - parent: 1 - type: Transform -- proto: BedsheetSyndie - entities: - - uid: 7352 - components: - - rot: -1.5707963267948966 rad - pos: -54.5,90.5 - parent: 1 - type: Transform - - uid: 7356 - components: - - rot: -1.5707963267948966 rad - pos: -54.5,84.5 - parent: 1 - type: Transform -- proto: Bible - entities: - - uid: 2750 - components: - - pos: 21.54948,-1.5566196 - parent: 1 - type: Transform -- proto: BlastDoor - entities: - - uid: 42 - components: - - pos: 3.5,-14.5 - parent: 1 - type: Transform - - links: - - 351 - type: DeviceLinkSink - - uid: 590 - components: - - pos: 15.5,-6.5 - parent: 1 - type: Transform - - links: - - 615 - type: DeviceLinkSink - - uid: 7204 - components: - - pos: -53.5,71.5 - parent: 1 - type: Transform - - links: - - 7192 - - 7218 - type: DeviceLinkSink - - uid: 7207 - components: - - pos: -53.5,72.5 - parent: 1 - type: Transform - - links: - - 7192 - - 7218 - type: DeviceLinkSink - - uid: 7208 - components: - - pos: -53.5,73.5 - parent: 1 - type: Transform - - links: - - 7192 - - 7218 - type: DeviceLinkSink - - uid: 7209 - components: - - pos: -53.5,74.5 - parent: 1 - type: Transform - - links: - - 7192 - - 7218 - type: DeviceLinkSink - - uid: 7210 - components: - - pos: -53.5,75.5 - parent: 1 - type: Transform - - links: - - 7192 - - 7218 - type: DeviceLinkSink - - uid: 7211 - components: - - pos: -53.5,76.5 - parent: 1 - type: Transform - - links: - - 7192 - - 7218 - type: DeviceLinkSink - - uid: 7212 - components: - - pos: -49.5,71.5 - parent: 1 - type: Transform - - links: - - 7192 - - 7218 - type: DeviceLinkSink - - uid: 7213 - components: - - pos: -49.5,72.5 - parent: 1 - type: Transform - - links: - - 7192 - - 7218 - type: DeviceLinkSink - - uid: 7214 - components: - - pos: -49.5,73.5 - parent: 1 - type: Transform - - links: - - 7192 - - 7218 - type: DeviceLinkSink - - uid: 7215 - components: - - pos: -49.5,74.5 - parent: 1 - type: Transform - - links: - - 7192 - - 7218 - type: DeviceLinkSink - - uid: 7216 - components: - - pos: -49.5,75.5 - parent: 1 - type: Transform - - links: - - 7192 - - 7218 - type: DeviceLinkSink - - uid: 7217 - components: - - pos: -49.5,76.5 - parent: 1 - type: Transform - - links: - - 7192 - - 7218 - type: DeviceLinkSink - - uid: 13360 - components: - - pos: -82.5,51.5 - parent: 1 - type: Transform - - links: - - 13361 - type: DeviceLinkSink - - uid: 13366 - components: - - pos: -73.5,57.5 - parent: 1 - type: Transform - - links: - - 13367 - type: DeviceLinkSink - - uid: 13817 - components: - - pos: -35.5,-14.5 - parent: 1 - type: Transform - - links: - - 13821 - type: DeviceLinkSink - - uid: 13818 - components: - - pos: -35.5,-11.5 - parent: 1 - type: Transform - - links: - - 13821 - type: DeviceLinkSink - - uid: 13819 - components: - - pos: -31.5,-11.5 - parent: 1 - type: Transform - - links: - - 13822 - type: DeviceLinkSink - - uid: 13820 - components: - - pos: -31.5,-14.5 - parent: 1 - type: Transform - - links: - - 13822 - type: DeviceLinkSink -- proto: BlastDoorOpen - entities: - - uid: 15173 - components: - - pos: 13.5,53.5 - parent: 1 - type: Transform - - links: - - 15185 - type: DeviceLinkSink - - uid: 15174 - components: - - pos: 14.5,53.5 - parent: 1 - type: Transform - - links: - - 15185 - type: DeviceLinkSink - - uid: 15175 - components: - - pos: 15.5,53.5 - parent: 1 - type: Transform - - links: - - 15185 - type: DeviceLinkSink - - uid: 15176 - components: - - pos: 16.5,53.5 - parent: 1 - type: Transform - - links: - - 15185 - type: DeviceLinkSink - - uid: 15177 - components: - - pos: 17.5,53.5 - parent: 1 - type: Transform - - links: - - 15185 - type: DeviceLinkSink - - uid: 15178 - components: - - pos: 18.5,53.5 - parent: 1 - type: Transform - - links: - - 15185 - type: DeviceLinkSink - - uid: 15179 - components: - - pos: 19.5,53.5 - parent: 1 - type: Transform - - links: - - 15185 - type: DeviceLinkSink - - uid: 15180 - components: - - pos: 19.5,52.5 - parent: 1 - type: Transform - - links: - - 15185 - type: DeviceLinkSink - - uid: 15181 - components: - - pos: 19.5,51.5 - parent: 1 - type: Transform - - links: - - 15185 - type: DeviceLinkSink - - uid: 15182 - components: - - pos: 19.5,50.5 - parent: 1 - type: Transform - - links: - - 15185 - type: DeviceLinkSink - - uid: 15183 - components: - - pos: 19.5,49.5 - parent: 1 - type: Transform - - links: - - 15185 - type: DeviceLinkSink - - uid: 15184 - components: - - pos: 19.5,48.5 - parent: 1 - type: Transform - - links: - - 15185 - type: DeviceLinkSink -- proto: Blunt - entities: - - uid: 14943 - components: - - pos: 23.683538,-11.353635 - parent: 1 - type: Transform -- proto: BookBase - entities: - - uid: 15231 - components: - - pos: 18.514118,48.62632 - parent: 1 - type: Transform -- proto: BookRandom - entities: - - uid: 3400 - components: - - pos: -26.002151,9.728267 - parent: 1 - type: Transform - - uid: 3402 - components: - - pos: -25.757227,9.715086 - parent: 1 - type: Transform - - uid: 3403 - components: - - pos: -26.484095,9.587642 - parent: 1 - type: Transform - - uid: 3404 - components: - - pos: -27.526798,9.572017 - parent: 1 - type: Transform - - uid: 3405 - components: - - pos: -26.984095,9.728267 - parent: 1 - type: Transform -- proto: BooksBag - entities: - - uid: 3401 - components: - - pos: -25.267776,9.592309 - parent: 1 - type: Transform -- proto: BookshelfFilled - entities: - - uid: 912 - components: - - pos: 27.5,-0.5 - parent: 1 - type: Transform - - uid: 3036 - components: - - pos: -22.5,15.5 - parent: 1 - type: Transform - - uid: 3089 - components: - - pos: -25.5,13.5 - parent: 1 - type: Transform - - uid: 3090 - components: - - pos: -26.5,13.5 - parent: 1 - type: Transform - - uid: 3091 - components: - - pos: -24.5,11.5 - parent: 1 - type: Transform - - uid: 3092 - components: - - pos: -25.5,11.5 - parent: 1 - type: Transform - - uid: 3093 - components: - - pos: -26.5,11.5 - parent: 1 - type: Transform - - uid: 3094 - components: - - pos: -27.5,11.5 - parent: 1 - type: Transform - - uid: 3095 - components: - - pos: -28.5,11.5 - parent: 1 - type: Transform - - uid: 3098 - components: - - pos: -22.5,8.5 - parent: 1 - type: Transform - - uid: 3099 - components: - - pos: -22.5,9.5 - parent: 1 - type: Transform - - uid: 3100 - components: - - pos: -22.5,10.5 - parent: 1 - type: Transform - - uid: 3101 - components: - - pos: -22.5,11.5 - parent: 1 - type: Transform - - uid: 3102 - components: - - pos: -24.5,13.5 - parent: 1 - type: Transform - - uid: 5357 - components: - - pos: -50.5,-0.5 - parent: 1 - type: Transform - - uid: 6334 - components: - - pos: 13.5,52.5 - parent: 1 - type: Transform - - uid: 7721 - components: - - pos: -61.5,87.5 - parent: 1 - type: Transform -- proto: BoozeDispenser - entities: - - uid: 6337 - components: - - rot: 3.141592653589793 rad - pos: 14.5,50.5 - parent: 1 - type: Transform - - uid: 9739 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,39.5 - parent: 1 - type: Transform - - uid: 9740 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,36.5 - parent: 1 - type: Transform -- proto: BorgCharger - entities: - - uid: 77 - components: - - pos: 0.5,0.5 - parent: 1 - type: Transform -- proto: BoxBeaker - entities: - - uid: 261 - components: - - pos: -9.507762,2.683241 - parent: 1 - type: Transform -- proto: BoxBodyBag - entities: - - uid: 2352 - components: - - pos: 4.501326,17.543652 - parent: 1 - type: Transform - - uid: 15780 - components: - - pos: 4.42369,38.89373 - parent: 1 - type: Transform -- proto: BoxCardboard - entities: - - uid: 15368 - components: - - desc: A box of spare encryption keys. - name: spare encryption keys box - type: MetaData - - pos: 27.49369,23.624804 - parent: 1 - type: Transform - - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 15369 - - 15370 - - 15371 - - 15372 - - 15373 - - 15374 - type: ContainerContainer -- proto: BoxFlashbang - entities: - - uid: 8008 - components: - - pos: -62.513317,50.638466 - parent: 1 - type: Transform -- proto: BoxFolderBlack - entities: - - uid: 309 - components: - - pos: -0.32900378,-4.3884926 - parent: 1 - type: Transform - - uid: 10950 - components: - - pos: -62.793716,39.585648 - parent: 1 - type: Transform - - uid: 12801 - components: - - rot: -1.5707963267948966 rad - pos: 4.444498,15.859739 - parent: 1 - type: Transform - - uid: 12802 - components: - - rot: -1.5707963267948966 rad - pos: 4.491373,15.625364 - parent: 1 - type: Transform -- proto: BoxFolderBlue - entities: - - uid: 310 - components: - - pos: -0.45400378,-4.4353676 - parent: 1 - type: Transform - - uid: 3701 - components: - - pos: -3.3766222,0.6332265 - parent: 1 - type: Transform - - uid: 7554 - components: - - pos: -19.563011,46.957428 - parent: 1 - type: Transform - - uid: 7555 - components: - - pos: -19.391136,46.754303 - parent: 1 - type: Transform - - uid: 10942 - components: - - pos: -61.137554,41.601273 - parent: 1 - type: Transform -- proto: BoxFolderRed - entities: - - uid: 311 - components: - - pos: -0.5790038,-4.4666176 - parent: 1 - type: Transform - - uid: 7988 - components: - - pos: -60.701515,58.61342 - parent: 1 - type: Transform - - uid: 10943 - components: - - pos: -63.62193,41.570023 - parent: 1 - type: Transform - - uid: 14295 - components: - - pos: -70.85199,49.55786 - parent: 1 - type: Transform -- proto: BoxFolderWhite - entities: - - uid: 2330 - components: - - pos: 8.338302,31.568537 - parent: 1 - type: Transform - - uid: 2331 - components: - - pos: 10.338302,26.224789 - parent: 1 - type: Transform - - uid: 2372 - components: - - rot: -1.5707963267948966 rad - pos: 11.49155,19.354616 - parent: 1 - type: Transform - - uid: 12782 - components: - - pos: 15.076297,31.544756 - parent: 1 - type: Transform -- proto: BoxFolderYellow - entities: - - uid: 3756 - components: - - pos: -46.603218,1.8100886 - parent: 1 - type: Transform - - uid: 3757 - components: - - pos: -46.571968,1.5132136 - parent: 1 - type: Transform - - uid: 4264 - components: - - pos: -45.621056,-6.4408264 - parent: 1 - type: Transform - - uid: 5516 - components: - - pos: -53.308907,-5.477154 - parent: 1 - type: Transform - - uid: 8997 - components: - - pos: -32.463276,-5.5537453 - parent: 1 - type: Transform - - uid: 9001 - components: - - pos: -32.69765,-5.3818703 - parent: 1 - type: Transform - - uid: 12031 - components: - - pos: -31.49165,-1.6362362 - parent: 1 - type: Transform - - uid: 15795 - components: - - pos: -70.32392,16.415482 - parent: 1 - type: Transform - - uid: 15796 - components: - - pos: -70.60517,16.399857 - parent: 1 - type: Transform -- proto: BoxHandcuff - entities: - - uid: 7993 - components: - - pos: -56.703358,58.661354 - parent: 1 - type: Transform - - uid: 7994 - components: - - pos: -63.575817,51.607216 - parent: 1 - type: Transform -- proto: BoxLatexGloves - entities: - - uid: 2365 - components: - - pos: 7.4180007,17.608612 - parent: 1 - type: Transform -- proto: BoxLethalshot - entities: - - uid: 8376 - components: - - pos: -41.582264,61.530586 - parent: 1 - type: Transform - - uid: 8377 - components: - - pos: -41.582264,61.530586 - parent: 1 - type: Transform -- proto: BoxMouthSwab - entities: - - uid: 2364 - components: - - pos: 6.4961257,16.733612 - parent: 1 - type: Transform -- proto: BoxMRE - entities: - - uid: 620 - components: - - pos: 20.242428,-8.30875 - parent: 1 - type: Transform -- proto: BoxSterileMask - entities: - - uid: 2363 - components: - - pos: 6.4805007,17.592987 - parent: 1 - type: Transform -- proto: BoxSyringe - entities: - - uid: 372 - components: - - pos: 5.09082,-11.326899 - parent: 1 - type: Transform -- proto: BoxZiptie - entities: - - uid: 7998 - components: - - pos: -63.419567,51.34159 - parent: 1 - type: Transform -- proto: BrigTimer - entities: - - uid: 4985 - components: - - pos: -56.5,52.5 - parent: 1 - type: Transform - - linkedPorts: - 7871: - - Start: Close - - Timer: AutoClose - - Timer: Open - type: DeviceLinkSource - - uid: 4986 - components: - - pos: -53.5,52.5 - parent: 1 - type: Transform - - linkedPorts: - 7872: - - Start: Close - - Timer: AutoClose - - Timer: Open - type: DeviceLinkSource - - uid: 4987 - components: - - pos: -50.5,52.5 - parent: 1 - type: Transform - - linkedPorts: - 7873: - - Start: Close - - Timer: AutoClose - - Timer: Open - type: DeviceLinkSource -- proto: Brutepack - entities: - - uid: 1990 - components: - - pos: -1.3334682,33.60299 - parent: 1 - type: Transform - - uid: 1991 - components: - - pos: -1.5990932,33.97799 - parent: 1 - type: Transform -- proto: Bucket - entities: - - uid: 6946 - components: - - pos: -42.23494,47.51451 - parent: 1 - type: Transform - - uid: 6947 - components: - - pos: -42.42244,47.655136 - parent: 1 - type: Transform -- proto: CableApcExtension - entities: - - uid: 388 - components: - - pos: -4.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 389 - components: - - pos: -5.5,-0.5 - parent: 1 - type: Transform - - uid: 390 - components: - - pos: -6.5,-0.5 - parent: 1 - type: Transform - - uid: 391 - components: - - pos: -7.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 392 - components: - - pos: -7.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 393 - components: - - pos: -7.5,1.5 - parent: 1 - type: Transform - - uid: 394 - components: - - pos: -8.5,1.5 - parent: 1 - type: Transform - - uid: 395 - components: - - pos: -9.5,1.5 - parent: 1 - type: Transform - - uid: 396 - components: - - pos: -10.5,1.5 - parent: 1 - type: Transform - - uid: 397 - components: - - pos: -11.5,1.5 - parent: 1 - type: Transform - - uid: 398 - components: - - pos: -12.5,1.5 - parent: 1 - type: Transform - - uid: 399 - components: - - pos: -7.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 400 - components: - - pos: -7.5,-2.5 - parent: 1 - type: Transform - - uid: 401 - components: - - pos: -9.5,-2.5 - parent: 1 - type: Transform - - uid: 402 - components: - - pos: -10.5,-2.5 - parent: 1 - type: Transform - - uid: 403 - components: - - pos: -11.5,-2.5 - parent: 1 - type: Transform - - uid: 404 - components: - - pos: -12.5,-2.5 - parent: 1 - type: Transform - - uid: 405 - components: - - pos: -8.5,-2.5 - parent: 1 - type: Transform - - uid: 406 - components: - - pos: -12.5,-3.5 - parent: 1 - type: Transform - - uid: 407 - components: - - pos: -12.5,-4.5 - parent: 1 - type: Transform - - uid: 408 - components: - - pos: -12.5,-5.5 - parent: 1 - type: Transform - - uid: 409 - components: - - pos: -12.5,-6.5 - parent: 1 - type: Transform - - uid: 410 - components: - - pos: -12.5,-7.5 - parent: 1 - type: Transform - - uid: 411 - components: - - pos: -12.5,-8.5 - parent: 1 - type: Transform - - uid: 412 - components: - - pos: -11.5,-8.5 - parent: 1 - type: Transform - - uid: 416 - components: - - pos: -9.5,-3.5 - parent: 1 - type: Transform - - uid: 417 - components: - - pos: -9.5,-4.5 - parent: 1 - type: Transform - - uid: 418 - components: - - pos: -4.5,-1.5 - parent: 1 - type: Transform - - uid: 419 - components: - - pos: -4.5,-2.5 - parent: 1 - type: Transform - - uid: 420 - components: - - pos: -4.5,-3.5 - parent: 1 - type: Transform - - uid: 421 - components: - - pos: -4.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 422 - components: - - pos: -3.5,-1.5 - parent: 1 - type: Transform - - uid: 423 - components: - - pos: -2.5,-1.5 - parent: 1 - type: Transform - - uid: 424 - components: - - pos: -1.5,-1.5 - parent: 1 - type: Transform - - uid: 425 - components: - - pos: -0.5,-1.5 - parent: 1 - type: Transform - - uid: 426 - components: - - pos: 0.5,-1.5 - parent: 1 - type: Transform - - uid: 427 - components: - - pos: 1.5,-1.5 - parent: 1 - type: Transform - - uid: 428 - components: - - pos: -2.5,-0.5 - parent: 1 - type: Transform - - uid: 429 - components: - - pos: -2.5,0.5 - parent: 1 - type: Transform - - uid: 430 - components: - - pos: -2.5,1.5 - parent: 1 - type: Transform - - uid: 431 - components: - - pos: 1.5,-0.5 - parent: 1 - type: Transform - - uid: 432 - components: - - pos: 1.5,0.5 - parent: 1 - type: Transform - - uid: 433 - components: - - pos: 1.5,1.5 - parent: 1 - type: Transform - - uid: 434 - components: - - pos: -1.5,-2.5 - parent: 1 - type: Transform - - uid: 435 - components: - - pos: -1.5,-3.5 - parent: 1 - type: Transform - - uid: 436 - components: - - pos: -1.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 437 - components: - - pos: 2.5,-8.5 - parent: 1 - type: Transform - - uid: 438 - components: - - pos: 2.5,-9.5 - parent: 1 - type: Transform - - uid: 439 - components: - - pos: 3.5,-9.5 - parent: 1 - type: Transform - - uid: 440 - components: - - pos: 4.5,-9.5 - parent: 1 - type: Transform - - uid: 441 - components: - - pos: 1.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 442 - components: - - pos: 1.5,-10.5 - parent: 1 - type: Transform - - uid: 443 - components: - - pos: 1.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 444 - components: - - pos: 1.5,-12.5 - parent: 1 - type: Transform - - uid: 445 - components: - - pos: 1.5,-13.5 - parent: 1 - type: Transform - - uid: 446 - components: - - pos: 1.5,-14.5 - parent: 1 - type: Transform - - uid: 447 - components: - - pos: 0.5,-10.5 - parent: 1 - type: Transform - - uid: 448 - components: - - pos: -0.5,-10.5 - parent: 1 - type: Transform - - uid: 449 - components: - - pos: -1.5,-10.5 - parent: 1 - type: Transform - - uid: 450 - components: - - pos: -2.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 451 - components: - - pos: -2.5,-11.5 - parent: 1 - type: Transform - - uid: 452 - components: - - pos: -3.5,-11.5 - parent: 1 - type: Transform - - uid: 453 - components: - - pos: -4.5,-11.5 - parent: 1 - type: Transform - - uid: 454 - components: - - pos: -4.5,-12.5 - parent: 1 - type: Transform - - uid: 455 - components: - - pos: -5.5,-12.5 - parent: 1 - type: Transform - - uid: 456 - components: - - pos: -6.5,-12.5 - parent: 1 - type: Transform - - uid: 457 - components: - - pos: -7.5,-12.5 - parent: 1 - type: Transform - - uid: 458 - components: - - pos: -8.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 459 - components: - - pos: -5.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 460 - components: - - pos: -5.5,-14.5 - parent: 1 - type: Transform - - uid: 461 - components: - - pos: -5.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 464 - components: - - pos: 16.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 588 - components: - - pos: 18.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 932 - components: - - pos: 26.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 933 - components: - - pos: 26.5,1.5 - parent: 1 - type: Transform - - uid: 934 - components: - - pos: 26.5,2.5 - parent: 1 - type: Transform - - uid: 935 - components: - - pos: 27.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 936 - components: - - pos: 28.5,2.5 - parent: 1 - type: Transform - - uid: 940 - components: - - pos: 29.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 941 - components: - - pos: 30.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 942 - components: - - pos: 30.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 943 - components: - - pos: 30.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 984 - components: - - pos: 26.5,27.5 - parent: 1 - type: Transform - - uid: 986 - components: - - pos: 26.5,26.5 - parent: 1 - type: Transform - - uid: 1016 - components: - - pos: 27.5,24.5 - parent: 1 - type: Transform - - uid: 1017 - components: - - pos: 26.5,24.5 - parent: 1 - type: Transform - - uid: 1021 - components: - - pos: 26.5,25.5 - parent: 1 - type: Transform - - uid: 1022 - components: - - pos: 26.5,23.5 - parent: 1 - type: Transform - - uid: 1031 - components: - - pos: 29.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1032 - components: - - pos: 28.5,24.5 - parent: 1 - type: Transform - - uid: 1418 - components: - - pos: -24.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1422 - components: - - pos: 24.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1423 - components: - - pos: 21.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1425 - components: - - pos: 24.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1439 - components: - - pos: 20.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1440 - components: - - pos: 24.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1516 - components: - - pos: -13.5,-2.5 - parent: 1 - type: Transform - - uid: 1517 - components: - - pos: -14.5,-2.5 - parent: 1 - type: Transform - - uid: 1518 - components: - - pos: -15.5,-2.5 - parent: 1 - type: Transform - - uid: 1519 - components: - - pos: -16.5,-2.5 - parent: 1 - type: Transform - - uid: 1523 - components: - - pos: -16.5,-3.5 - parent: 1 - type: Transform - - uid: 1524 - components: - - pos: -16.5,-4.5 - parent: 1 - type: Transform - - uid: 1525 - components: - - pos: -16.5,-5.5 - parent: 1 - type: Transform - - uid: 1526 - components: - - pos: -16.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1655 - components: - - pos: 16.5,-5.5 - parent: 1 - type: Transform - - uid: 1658 - components: - - pos: 15.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1659 - components: - - pos: 15.5,-7.5 - parent: 1 - type: Transform - - uid: 1660 - components: - - pos: 15.5,-9.5 - parent: 1 - type: Transform - - uid: 1662 - components: - - pos: 15.5,-10.5 - parent: 1 - type: Transform - - uid: 1665 - components: - - pos: 17.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1683 - components: - - pos: 12.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1684 - components: - - pos: 11.5,0.5 - parent: 1 - type: Transform - - uid: 1685 - components: - - pos: 10.5,0.5 - parent: 1 - type: Transform - - uid: 1686 - components: - - pos: 9.5,0.5 - parent: 1 - type: Transform - - uid: 1687 - components: - - pos: 8.5,0.5 - parent: 1 - type: Transform - - uid: 1688 - components: - - pos: 8.5,1.5 - parent: 1 - type: Transform - - uid: 1689 - components: - - pos: 10.5,-0.5 - parent: 1 - type: Transform - - uid: 1690 - components: - - pos: 10.5,-1.5 - parent: 1 - type: Transform - - uid: 1691 - components: - - pos: 10.5,-2.5 - parent: 1 - type: Transform - - uid: 1692 - components: - - pos: 9.5,-2.5 - parent: 1 - type: Transform - - uid: 1693 - components: - - pos: 8.5,-2.5 - parent: 1 - type: Transform - - uid: 1694 - components: - - pos: 7.5,-2.5 - parent: 1 - type: Transform - - uid: 1695 - components: - - pos: 11.5,-2.5 - parent: 1 - type: Transform - - uid: 1696 - components: - - pos: 12.5,-2.5 - parent: 1 - type: Transform - - uid: 1697 - components: - - pos: 13.5,-2.5 - parent: 1 - type: Transform - - uid: 1698 - components: - - pos: 14.5,-2.5 - parent: 1 - type: Transform - - uid: 1699 - components: - - pos: 15.5,-2.5 - parent: 1 - type: Transform - - uid: 1700 - components: - - pos: 16.5,-2.5 - parent: 1 - type: Transform - - uid: 1701 - components: - - pos: 17.5,-2.5 - parent: 1 - type: Transform - - uid: 1702 - components: - - pos: 15.5,-1.5 - parent: 1 - type: Transform - - uid: 1703 - components: - - pos: 15.5,-0.5 - parent: 1 - type: Transform - - uid: 1704 - components: - - pos: 15.5,0.5 - parent: 1 - type: Transform - - uid: 1705 - components: - - pos: 15.5,1.5 - parent: 1 - type: Transform - - uid: 1706 - components: - - pos: 15.5,2.5 - parent: 1 - type: Transform - - uid: 1707 - components: - - pos: 15.5,3.5 - parent: 1 - type: Transform - - uid: 1708 - components: - - pos: 17.5,-1.5 - parent: 1 - type: Transform - - uid: 1709 - components: - - pos: 18.5,-1.5 - parent: 1 - type: Transform - - uid: 1710 - components: - - pos: 19.5,-1.5 - parent: 1 - type: Transform - - uid: 1711 - components: - - pos: 20.5,-1.5 - parent: 1 - type: Transform - - uid: 1712 - components: - - pos: 20.5,-0.5 - parent: 1 - type: Transform - - uid: 1713 - components: - - pos: 20.5,0.5 - parent: 1 - type: Transform - - uid: 1714 - components: - - pos: 20.5,1.5 - parent: 1 - type: Transform - - uid: 1715 - components: - - pos: 21.5,-1.5 - parent: 1 - type: Transform - - uid: 1716 - components: - - pos: 20.5,-2.5 - parent: 1 - type: Transform - - uid: 1717 - components: - - pos: 10.5,-3.5 - parent: 1 - type: Transform - - uid: 1718 - components: - - pos: 10.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1719 - components: - - pos: 10.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1720 - components: - - pos: 11.5,-5.5 - parent: 1 - type: Transform - - uid: 1721 - components: - - pos: 12.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1722 - components: - - pos: 13.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1723 - components: - - pos: 14.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1724 - components: - - pos: 15.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1725 - components: - - pos: 15.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1726 - components: - - pos: 17.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1727 - components: - - pos: 18.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1728 - components: - - pos: 19.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1729 - components: - - pos: 20.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1730 - components: - - pos: 21.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1731 - components: - - pos: 22.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1732 - components: - - pos: 23.5,-5.5 - parent: 1 - type: Transform - - uid: 1733 - components: - - pos: 24.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1734 - components: - - pos: 25.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1735 - components: - - pos: 26.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1736 - components: - - pos: 27.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1737 - components: - - pos: 28.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1738 - components: - - pos: 28.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1739 - components: - - pos: 28.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1740 - components: - - pos: 28.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1769 - components: - - pos: -61.5,-10.5 - parent: 1 - type: Transform - - uid: 1847 - components: - - pos: 10.5,1.5 - parent: 1 - type: Transform - - uid: 1848 - components: - - pos: 10.5,2.5 - parent: 1 - type: Transform - - uid: 1849 - components: - - pos: 10.5,3.5 - parent: 1 - type: Transform - - uid: 1850 - components: - - pos: 10.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1851 - components: - - pos: 9.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1852 - components: - - pos: 8.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1853 - components: - - pos: 7.5,4.5 - parent: 1 - type: Transform - - uid: 1854 - components: - - pos: 6.5,4.5 - parent: 1 - type: Transform - - uid: 1855 - components: - - pos: 5.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1860 - components: - - pos: -9.5,-12.5 - parent: 1 - type: Transform - - uid: 1861 - components: - - pos: -10.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1862 - components: - - pos: -11.5,-12.5 - parent: 1 - type: Transform - - uid: 1863 - components: - - pos: -12.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1864 - components: - - pos: -13.5,-12.5 - parent: 1 - type: Transform - - uid: 1865 - components: - - pos: -14.5,-12.5 - parent: 1 - type: Transform - - uid: 1866 - components: - - pos: -15.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1867 - components: - - pos: -16.5,-12.5 - parent: 1 - type: Transform - - uid: 1877 - components: - - pos: -17.5,-12.5 - parent: 1 - type: Transform - - uid: 1878 - components: - - pos: -17.5,-11.5 - parent: 1 - type: Transform - - uid: 2082 - components: - - pos: 1.5,29.5 - parent: 1 - type: Transform - - uid: 2083 - components: - - pos: 2.5,29.5 - parent: 1 - type: Transform - - uid: 2084 - components: - - pos: 3.5,29.5 - parent: 1 - type: Transform - - uid: 2085 - components: - - pos: 4.5,29.5 - parent: 1 - type: Transform - - uid: 2086 - components: - - pos: 5.5,29.5 - parent: 1 - type: Transform - - uid: 2087 - components: - - pos: 6.5,29.5 - parent: 1 - type: Transform - - uid: 2088 - components: - - pos: 7.5,29.5 - parent: 1 - type: Transform - - uid: 2089 - components: - - pos: 8.5,29.5 - parent: 1 - type: Transform - - uid: 2090 - components: - - pos: 9.5,29.5 - parent: 1 - type: Transform - - uid: 2091 - components: - - pos: 10.5,29.5 - parent: 1 - type: Transform - - uid: 2092 - components: - - pos: 11.5,29.5 - parent: 1 - type: Transform - - uid: 2093 - components: - - pos: 12.5,29.5 - parent: 1 - type: Transform - - uid: 2094 - components: - - pos: 4.5,30.5 - parent: 1 - type: Transform - - uid: 2095 - components: - - pos: 4.5,31.5 - parent: 1 - type: Transform - - uid: 2096 - components: - - pos: 4.5,32.5 - parent: 1 - type: Transform - - uid: 2097 - components: - - pos: 4.5,33.5 - parent: 1 - type: Transform - - uid: 2098 - components: - - pos: 4.5,34.5 - parent: 1 - type: Transform - - uid: 2099 - components: - - pos: 4.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2100 - components: - - pos: 5.5,33.5 - parent: 1 - type: Transform - - uid: 2101 - components: - - pos: 6.5,33.5 - parent: 1 - type: Transform - - uid: 2105 - components: - - pos: 7.5,33.5 - parent: 1 - type: Transform - - uid: 2106 - components: - - pos: 8.5,33.5 - parent: 1 - type: Transform - - uid: 2107 - components: - - pos: 9.5,33.5 - parent: 1 - type: Transform - - uid: 2108 - components: - - pos: 8.5,34.5 - parent: 1 - type: Transform - - uid: 2109 - components: - - pos: 8.5,35.5 - parent: 1 - type: Transform - - uid: 2110 - components: - - pos: 8.5,36.5 - parent: 1 - type: Transform - - uid: 2111 - components: - - pos: 8.5,37.5 - parent: 1 - type: Transform - - uid: 2112 - components: - - pos: 11.5,33.5 - parent: 1 - type: Transform - - uid: 2113 - components: - - pos: 11.5,34.5 - parent: 1 - type: Transform - - uid: 2114 - components: - - pos: 11.5,35.5 - parent: 1 - type: Transform - - uid: 2115 - components: - - pos: 11.5,36.5 - parent: 1 - type: Transform - - uid: 2116 - components: - - pos: 11.5,37.5 - parent: 1 - type: Transform - - uid: 2117 - components: - - pos: 4.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2119 - components: - - pos: 4.5,37.5 - parent: 1 - type: Transform - - uid: 2120 - components: - - pos: 4.5,38.5 - parent: 1 - type: Transform - - uid: 2121 - components: - - pos: 3.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2122 - components: - - pos: 2.5,38.5 - parent: 1 - type: Transform - - uid: 2123 - components: - - pos: 1.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2124 - components: - - pos: 0.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2125 - components: - - pos: 1.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2126 - components: - - pos: 2.5,21.5 - parent: 1 - type: Transform - - uid: 2127 - components: - - pos: 3.5,21.5 - parent: 1 - type: Transform - - uid: 2128 - components: - - pos: 3.5,22.5 - parent: 1 - type: Transform - - uid: 2129 - components: - - pos: 3.5,23.5 - parent: 1 - type: Transform - - uid: 2130 - components: - - pos: 3.5,24.5 - parent: 1 - type: Transform - - uid: 2131 - components: - - pos: 3.5,25.5 - parent: 1 - type: Transform - - uid: 2132 - components: - - pos: 3.5,26.5 - parent: 1 - type: Transform - - uid: 2133 - components: - - pos: 3.5,27.5 - parent: 1 - type: Transform - - uid: 2134 - components: - - pos: 2.5,23.5 - parent: 1 - type: Transform - - uid: 2135 - components: - - pos: 4.5,25.5 - parent: 1 - type: Transform - - uid: 2138 - components: - - pos: 5.5,25.5 - parent: 1 - type: Transform - - uid: 2139 - components: - - pos: 6.5,25.5 - parent: 1 - type: Transform - - uid: 2140 - components: - - pos: 7.5,25.5 - parent: 1 - type: Transform - - uid: 2141 - components: - - pos: 8.5,25.5 - parent: 1 - type: Transform - - uid: 2142 - components: - - pos: 9.5,25.5 - parent: 1 - type: Transform - - uid: 2143 - components: - - pos: 9.5,24.5 - parent: 1 - type: Transform - - uid: 2144 - components: - - pos: 9.5,23.5 - parent: 1 - type: Transform - - uid: 2145 - components: - - pos: 9.5,22.5 - parent: 1 - type: Transform - - uid: 2146 - components: - - pos: 7.5,24.5 - parent: 1 - type: Transform - - uid: 2147 - components: - - pos: 7.5,23.5 - parent: 1 - type: Transform - - uid: 2148 - components: - - pos: 7.5,22.5 - parent: 1 - type: Transform - - uid: 2149 - components: - - pos: 3.5,20.5 - parent: 1 - type: Transform - - uid: 2150 - components: - - pos: 3.5,19.5 - parent: 1 - type: Transform - - uid: 2151 - components: - - pos: 3.5,18.5 - parent: 1 - type: Transform - - uid: 2152 - components: - - pos: 3.5,17.5 - parent: 1 - type: Transform - - uid: 2153 - components: - - pos: 3.5,16.5 - parent: 1 - type: Transform - - uid: 2154 - components: - - pos: 3.5,15.5 - parent: 1 - type: Transform - - uid: 2155 - components: - - pos: 2.5,16.5 - parent: 1 - type: Transform - - uid: 2156 - components: - - pos: 1.5,16.5 - parent: 1 - type: Transform - - uid: 2157 - components: - - pos: 0.5,16.5 - parent: 1 - type: Transform - - uid: 2158 - components: - - pos: -0.5,16.5 - parent: 1 - type: Transform - - uid: 2159 - components: - - pos: 4.5,19.5 - parent: 1 - type: Transform - - uid: 2160 - components: - - pos: 5.5,19.5 - parent: 1 - type: Transform - - uid: 2161 - components: - - pos: 6.5,19.5 - parent: 1 - type: Transform - - uid: 2162 - components: - - pos: 7.5,19.5 - parent: 1 - type: Transform - - uid: 2163 - components: - - pos: 8.5,19.5 - parent: 1 - type: Transform - - uid: 2164 - components: - - pos: 9.5,19.5 - parent: 1 - type: Transform - - uid: 2165 - components: - - pos: 10.5,19.5 - parent: 1 - type: Transform - - uid: 2166 - components: - - pos: 10.5,18.5 - parent: 1 - type: Transform - - uid: 2173 - components: - - pos: 10.5,17.5 - parent: 1 - type: Transform - - uid: 2174 - components: - - pos: 10.5,16.5 - parent: 1 - type: Transform - - uid: 2175 - components: - - pos: 10.5,15.5 - parent: 1 - type: Transform - - uid: 2176 - components: - - pos: 10.5,14.5 - parent: 1 - type: Transform - - uid: 2177 - components: - - pos: 10.5,13.5 - parent: 1 - type: Transform - - uid: 2178 - components: - - pos: 10.5,12.5 - parent: 1 - type: Transform - - uid: 2179 - components: - - pos: 9.5,15.5 - parent: 1 - type: Transform - - uid: 2180 - components: - - pos: 8.5,15.5 - parent: 1 - type: Transform - - uid: 2181 - components: - - pos: 7.5,15.5 - parent: 1 - type: Transform - - uid: 2185 - components: - - pos: 9.5,12.5 - parent: 1 - type: Transform - - uid: 2186 - components: - - pos: 8.5,12.5 - parent: 1 - type: Transform - - uid: 2187 - components: - - pos: 7.5,12.5 - parent: 1 - type: Transform - - uid: 2220 - components: - - pos: 12.5,28.5 - parent: 1 - type: Transform - - uid: 2221 - components: - - pos: 13.5,28.5 - parent: 1 - type: Transform - - uid: 2222 - components: - - pos: 14.5,28.5 - parent: 1 - type: Transform - - uid: 2223 - components: - - pos: 15.5,28.5 - parent: 1 - type: Transform - - uid: 2224 - components: - - pos: 15.5,29.5 - parent: 1 - type: Transform - - uid: 2225 - components: - - pos: 15.5,30.5 - parent: 1 - type: Transform - - uid: 2226 - components: - - pos: 15.5,31.5 - parent: 1 - type: Transform - - uid: 2227 - components: - - pos: 15.5,32.5 - parent: 1 - type: Transform - - uid: 2228 - components: - - pos: 16.5,32.5 - parent: 1 - type: Transform - - uid: 2229 - components: - - pos: 17.5,32.5 - parent: 1 - type: Transform - - uid: 2230 - components: - - pos: 18.5,32.5 - parent: 1 - type: Transform - - uid: 2231 - components: - - pos: 19.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2232 - components: - - pos: 19.5,31.5 - parent: 1 - type: Transform - - uid: 2233 - components: - - pos: 19.5,30.5 - parent: 1 - type: Transform - - uid: 2234 - components: - - pos: 19.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2241 - components: - - pos: 11.5,15.5 - parent: 1 - type: Transform - - uid: 2242 - components: - - pos: 12.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2243 - components: - - pos: 13.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2244 - components: - - pos: 13.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2245 - components: - - pos: 13.5,17.5 - parent: 1 - type: Transform - - uid: 2246 - components: - - pos: 13.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2247 - components: - - pos: 6.5,12.5 - parent: 1 - type: Transform - - uid: 2248 - components: - - pos: 6.5,15.5 - parent: 1 - type: Transform - - uid: 2269 - components: - - pos: 1.5,23.5 - parent: 1 - type: Transform - - uid: 2270 - components: - - pos: 0.5,23.5 - parent: 1 - type: Transform - - uid: 2271 - components: - - pos: -0.5,23.5 - parent: 1 - type: Transform - - uid: 2272 - components: - - pos: -1.5,23.5 - parent: 1 - type: Transform - - uid: 2273 - components: - - pos: -2.5,23.5 - parent: 1 - type: Transform - - uid: 2274 - components: - - pos: -2.5,22.5 - parent: 1 - type: Transform - - uid: 2275 - components: - - pos: -2.5,21.5 - parent: 1 - type: Transform - - uid: 2276 - components: - - pos: -2.5,20.5 - parent: 1 - type: Transform - - uid: 2277 - components: - - pos: -2.5,19.5 - parent: 1 - type: Transform - - uid: 2278 - components: - - pos: -2.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2279 - components: - - pos: -2.5,25.5 - parent: 1 - type: Transform - - uid: 2280 - components: - - pos: -2.5,26.5 - parent: 1 - type: Transform - - uid: 2281 - components: - - pos: 0.5,24.5 - parent: 1 - type: Transform - - uid: 2282 - components: - - pos: 0.5,25.5 - parent: 1 - type: Transform - - uid: 2283 - components: - - pos: 0.5,26.5 - parent: 1 - type: Transform - - uid: 2284 - components: - - pos: 0.5,27.5 - parent: 1 - type: Transform - - uid: 2288 - components: - - pos: 0.5,29.5 - parent: 1 - type: Transform - - uid: 2289 - components: - - pos: -0.5,29.5 - parent: 1 - type: Transform - - uid: 2290 - components: - - pos: -1.5,29.5 - parent: 1 - type: Transform - - uid: 2291 - components: - - pos: -2.5,29.5 - parent: 1 - type: Transform - - uid: 2292 - components: - - pos: -3.5,29.5 - parent: 1 - type: Transform - - uid: 2293 - components: - - pos: -3.5,30.5 - parent: 1 - type: Transform - - uid: 2294 - components: - - pos: -3.5,31.5 - parent: 1 - type: Transform - - uid: 2295 - components: - - pos: -3.5,32.5 - parent: 1 - type: Transform - - uid: 2296 - components: - - pos: -3.5,33.5 - parent: 1 - type: Transform - - uid: 2297 - components: - - pos: -0.5,30.5 - parent: 1 - type: Transform - - uid: 2298 - components: - - pos: -0.5,31.5 - parent: 1 - type: Transform - - uid: 2299 - components: - - pos: -0.5,32.5 - parent: 1 - type: Transform - - uid: 2300 - components: - - pos: -0.5,33.5 - parent: 1 - type: Transform - - uid: 2399 - components: - - pos: 16.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2519 - components: - - pos: 22.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2520 - components: - - pos: 22.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2521 - components: - - pos: 22.5,8.5 - parent: 1 - type: Transform - - uid: 2522 - components: - - pos: 22.5,7.5 - parent: 1 - type: Transform - - uid: 2523 - components: - - pos: 22.5,6.5 - parent: 1 - type: Transform - - uid: 2524 - components: - - pos: 21.5,6.5 - parent: 1 - type: Transform - - uid: 2525 - components: - - pos: 20.5,6.5 - parent: 1 - type: Transform - - uid: 2526 - components: - - pos: 19.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2527 - components: - - pos: 18.5,6.5 - parent: 1 - type: Transform - - uid: 2528 - components: - - pos: 17.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2529 - components: - - pos: 16.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2530 - components: - - pos: 15.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2531 - components: - - pos: 14.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2532 - components: - - pos: 13.5,6.5 - parent: 1 - type: Transform - - uid: 2533 - components: - - pos: 22.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2534 - components: - - pos: 22.5,4.5 - parent: 1 - type: Transform - - uid: 2535 - components: - - pos: 22.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2536 - components: - - pos: 17.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2537 - components: - - pos: 17.5,8.5 - parent: 1 - type: Transform - - uid: 2538 - components: - - pos: 17.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2539 - components: - - pos: 17.5,10.5 - parent: 1 - type: Transform - - uid: 2540 - components: - - pos: 17.5,11.5 - parent: 1 - type: Transform - - uid: 2541 - components: - - pos: 17.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2542 - components: - - pos: 22.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2543 - components: - - pos: 22.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2544 - components: - - pos: 22.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2545 - components: - - pos: 22.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2546 - components: - - pos: 22.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2547 - components: - - pos: 22.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2548 - components: - - pos: 22.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2549 - components: - - pos: 22.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2550 - components: - - pos: 22.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2551 - components: - - pos: 22.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2552 - components: - - pos: 22.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2553 - components: - - pos: 22.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2554 - components: - - pos: 22.5,23.5 - parent: 1 - type: Transform - - uid: 2555 - components: - - pos: 22.5,24.5 - parent: 1 - type: Transform - - uid: 2556 - components: - - pos: 22.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2557 - components: - - pos: 23.5,6.5 - parent: 1 - type: Transform - - uid: 2558 - components: - - pos: 24.5,6.5 - parent: 1 - type: Transform - - uid: 2559 - components: - - pos: 25.5,6.5 - parent: 1 - type: Transform - - uid: 2560 - components: - - pos: 26.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2561 - components: - - pos: 27.5,6.5 - parent: 1 - type: Transform - - uid: 2562 - components: - - pos: 27.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2563 - components: - - pos: 27.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2564 - components: - - pos: 27.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2565 - components: - - pos: 27.5,10.5 - parent: 1 - type: Transform - - uid: 2566 - components: - - pos: 28.5,8.5 - parent: 1 - type: Transform - - uid: 2567 - components: - - pos: 29.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2568 - components: - - pos: 30.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2569 - components: - - pos: 27.5,11.5 - parent: 1 - type: Transform - - uid: 2570 - components: - - pos: -7.5,2.5 - parent: 1 - type: Transform - - uid: 2571 - components: - - pos: -7.5,3.5 - parent: 1 - type: Transform - - uid: 2572 - components: - - pos: 23.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2573 - components: - - pos: 24.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2574 - components: - - pos: 25.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2575 - components: - - pos: 26.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2576 - components: - - pos: 27.5,14.5 - parent: 1 - type: Transform - - uid: 2577 - components: - - pos: 25.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2578 - components: - - pos: 25.5,12.5 - parent: 1 - type: Transform - - uid: 2579 - components: - - pos: 25.5,11.5 - parent: 1 - type: Transform - - uid: 2580 - components: - - pos: 23.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2581 - components: - - pos: 24.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2582 - components: - - pos: 25.5,18.5 - parent: 1 - type: Transform - - uid: 2583 - components: - - pos: 26.5,18.5 - parent: 1 - type: Transform - - uid: 2584 - components: - - pos: 27.5,18.5 - parent: 1 - type: Transform - - uid: 2585 - components: - - pos: 28.5,18.5 - parent: 1 - type: Transform - - uid: 2586 - components: - - pos: 29.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2587 - components: - - pos: 30.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2588 - components: - - pos: 26.5,19.5 - parent: 1 - type: Transform - - uid: 2594 - components: - - pos: 31.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2595 - components: - - pos: 31.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2596 - components: - - pos: -7.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2597 - components: - - pos: -7.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2598 - components: - - pos: -6.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2599 - components: - - pos: -5.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2600 - components: - - pos: -4.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2601 - components: - - pos: -3.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2602 - components: - - pos: -2.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2603 - components: - - pos: -1.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2604 - components: - - pos: -0.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2605 - components: - - pos: 0.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2606 - components: - - pos: 1.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2607 - components: - - pos: -5.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2608 - components: - - pos: -8.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2609 - components: - - pos: -9.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2610 - components: - - pos: -10.5,5.5 - parent: 1 - type: Transform - - uid: 2611 - components: - - pos: -11.5,5.5 - parent: 1 - type: Transform - - uid: 2612 - components: - - pos: -12.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2613 - components: - - pos: -13.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2614 - components: - - pos: -14.5,5.5 - parent: 1 - type: Transform - - uid: 2615 - components: - - pos: -15.5,5.5 - parent: 1 - type: Transform - - uid: 2616 - components: - - pos: -16.5,5.5 - parent: 1 - type: Transform - - uid: 2617 - components: - - pos: -16.5,4.5 - parent: 1 - type: Transform - - uid: 2618 - components: - - pos: -4.5,33.5 - parent: 1 - type: Transform - - uid: 2619 - components: - - pos: -5.5,33.5 - parent: 1 - type: Transform - - uid: 2620 - components: - - pos: -6.5,33.5 - parent: 1 - type: Transform - - uid: 2621 - components: - - pos: -7.5,33.5 - parent: 1 - type: Transform - - uid: 2622 - components: - - pos: -8.5,33.5 - parent: 1 - type: Transform - - uid: 2623 - components: - - pos: -8.5,32.5 - parent: 1 - type: Transform - - uid: 2624 - components: - - pos: -8.5,31.5 - parent: 1 - type: Transform - - uid: 2625 - components: - - pos: -8.5,30.5 - parent: 1 - type: Transform - - uid: 2626 - components: - - pos: -8.5,29.5 - parent: 1 - type: Transform - - uid: 2627 - components: - - pos: -8.5,28.5 - parent: 1 - type: Transform - - uid: 2628 - components: - - pos: -9.5,32.5 - parent: 1 - type: Transform - - uid: 2629 - components: - - pos: -10.5,32.5 - parent: 1 - type: Transform - - uid: 2630 - components: - - pos: -11.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2631 - components: - - pos: -12.5,32.5 - parent: 1 - type: Transform - - uid: 2699 - components: - - pos: -10.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2700 - components: - - pos: -11.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2701 - components: - - pos: -12.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2702 - components: - - pos: -12.5,16.5 - parent: 1 - type: Transform - - uid: 2703 - components: - - pos: -12.5,15.5 - parent: 1 - type: Transform - - uid: 2704 - components: - - pos: -12.5,14.5 - parent: 1 - type: Transform - - uid: 2705 - components: - - pos: -12.5,13.5 - parent: 1 - type: Transform - - uid: 2706 - components: - - pos: -12.5,12.5 - parent: 1 - type: Transform - - uid: 2707 - components: - - pos: -12.5,11.5 - parent: 1 - type: Transform - - uid: 2708 - components: - - pos: -12.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2709 - components: - - pos: -12.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2710 - components: - - pos: -11.5,9.5 - parent: 1 - type: Transform - - uid: 2711 - components: - - pos: -10.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2712 - components: - - pos: -9.5,9.5 - parent: 1 - type: Transform - - uid: 2713 - components: - - pos: -8.5,9.5 - parent: 1 - type: Transform - - uid: 2714 - components: - - pos: -13.5,9.5 - parent: 1 - type: Transform - - uid: 2715 - components: - - pos: -14.5,9.5 - parent: 1 - type: Transform - - uid: 2716 - components: - - pos: -15.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2717 - components: - - pos: -16.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2718 - components: - - pos: -13.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2719 - components: - - pos: -14.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2720 - components: - - pos: -15.5,13.5 - parent: 1 - type: Transform - - uid: 2721 - components: - - pos: -16.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2722 - components: - - pos: -11.5,12.5 - parent: 1 - type: Transform - - uid: 2723 - components: - - pos: -10.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2724 - components: - - pos: -9.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2725 - components: - - pos: -8.5,12.5 - parent: 1 - type: Transform - - uid: 2726 - components: - - pos: -11.5,15.5 - parent: 1 - type: Transform - - uid: 2727 - components: - - pos: -10.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2728 - components: - - pos: -9.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2729 - components: - - pos: -8.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2734 - components: - - pos: -12.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2735 - components: - - pos: -12.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2736 - components: - - pos: -12.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2737 - components: - - pos: -12.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2738 - components: - - pos: -12.5,22.5 - parent: 1 - type: Transform - - uid: 2739 - components: - - pos: -12.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2740 - components: - - pos: -12.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2741 - components: - - pos: -12.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2742 - components: - - pos: -12.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2743 - components: - - pos: -12.5,27.5 - parent: 1 - type: Transform - - uid: 2744 - components: - - pos: -12.5,28.5 - parent: 1 - type: Transform - - uid: 2745 - components: - - pos: -12.5,29.5 - parent: 1 - type: Transform - - uid: 2746 - components: - - pos: -9.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2747 - components: - - pos: -8.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2748 - components: - - pos: -7.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2778 - components: - - pos: -20.5,17.5 - parent: 1 - type: Transform - - uid: 2779 - components: - - pos: -20.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2783 - components: - - pos: -21.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2785 - components: - - pos: -19.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2793 - components: - - pos: -15.5,8.5 - parent: 1 - type: Transform - - uid: 2853 - components: - - pos: -13.5,28.5 - parent: 1 - type: Transform - - uid: 2854 - components: - - pos: -14.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2855 - components: - - pos: -15.5,28.5 - parent: 1 - type: Transform - - uid: 2856 - components: - - pos: -16.5,28.5 - parent: 1 - type: Transform - - uid: 2857 - components: - - pos: -14.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2858 - components: - - pos: -16.5,29.5 - parent: 1 - type: Transform - - uid: 2859 - components: - - pos: -16.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2860 - components: - - pos: -17.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2861 - components: - - pos: -15.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2862 - components: - - pos: 2.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3041 - components: - - pos: -16.5,27.5 - parent: 1 - type: Transform - - uid: 3042 - components: - - pos: -16.5,26.5 - parent: 1 - type: Transform - - uid: 3159 - components: - - pos: -29.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3174 - components: - - pos: -16.5,25.5 - parent: 1 - type: Transform - - uid: 3178 - components: - - pos: -16.5,24.5 - parent: 1 - type: Transform - - uid: 3212 - components: - - pos: -24.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3224 - components: - - pos: -19.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3225 - components: - - pos: -20.5,24.5 - parent: 1 - type: Transform - - uid: 3226 - components: - - pos: -20.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3227 - components: - - pos: -20.5,26.5 - parent: 1 - type: Transform - - uid: 3228 - components: - - pos: -21.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3229 - components: - - pos: -22.5,26.5 - parent: 1 - type: Transform - - uid: 3230 - components: - - pos: -23.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3231 - components: - - pos: -24.5,26.5 - parent: 1 - type: Transform - - uid: 3232 - components: - - pos: -24.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3233 - components: - - pos: -24.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3234 - components: - - pos: -24.5,29.5 - parent: 1 - type: Transform - - uid: 3235 - components: - - pos: -23.5,29.5 - parent: 1 - type: Transform - - uid: 3236 - components: - - pos: -20.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3237 - components: - - pos: -21.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3238 - components: - - pos: -22.5,23.5 - parent: 1 - type: Transform - - uid: 3239 - components: - - pos: -23.5,23.5 - parent: 1 - type: Transform - - uid: 3240 - components: - - pos: -24.5,23.5 - parent: 1 - type: Transform - - uid: 3241 - components: - - pos: -25.5,23.5 - parent: 1 - type: Transform - - uid: 3242 - components: - - pos: -26.5,23.5 - parent: 1 - type: Transform - - uid: 3243 - components: - - pos: -27.5,23.5 - parent: 1 - type: Transform - - uid: 3244 - components: - - pos: -28.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3245 - components: - - pos: -29.5,23.5 - parent: 1 - type: Transform - - uid: 3246 - components: - - pos: -29.5,24.5 - parent: 1 - type: Transform - - uid: 3247 - components: - - pos: -29.5,25.5 - parent: 1 - type: Transform - - uid: 3248 - components: - - pos: -29.5,26.5 - parent: 1 - type: Transform - - uid: 3249 - components: - - pos: -29.5,27.5 - parent: 1 - type: Transform - - uid: 3250 - components: - - pos: -29.5,28.5 - parent: 1 - type: Transform - - uid: 3251 - components: - - pos: -30.5,28.5 - parent: 1 - type: Transform - - uid: 3252 - components: - - pos: -31.5,28.5 - parent: 1 - type: Transform - - uid: 3253 - components: - - pos: -32.5,28.5 - parent: 1 - type: Transform - - uid: 3254 - components: - - pos: -33.5,28.5 - parent: 1 - type: Transform - - uid: 3255 - components: - - pos: -30.5,25.5 - parent: 1 - type: Transform - - uid: 3256 - components: - - pos: -31.5,25.5 - parent: 1 - type: Transform - - uid: 3257 - components: - - pos: -32.5,25.5 - parent: 1 - type: Transform - - uid: 3258 - components: - - pos: -33.5,25.5 - parent: 1 - type: Transform - - uid: 3259 - components: - - pos: -34.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3260 - components: - - pos: -34.5,28.5 - parent: 1 - type: Transform - - uid: 3261 - components: - - pos: -24.5,18.5 - parent: 1 - type: Transform - - uid: 3262 - components: - - pos: -24.5,17.5 - parent: 1 - type: Transform - - uid: 3263 - components: - - pos: -24.5,16.5 - parent: 1 - type: Transform - - uid: 3264 - components: - - pos: -24.5,15.5 - parent: 1 - type: Transform - - uid: 3265 - components: - - pos: -25.5,15.5 - parent: 1 - type: Transform - - uid: 3266 - components: - - pos: -26.5,15.5 - parent: 1 - type: Transform - - uid: 3267 - components: - - pos: -27.5,15.5 - parent: 1 - type: Transform - - uid: 3268 - components: - - pos: -28.5,15.5 - parent: 1 - type: Transform - - uid: 3269 - components: - - pos: -25.5,18.5 - parent: 1 - type: Transform - - uid: 3270 - components: - - pos: -26.5,18.5 - parent: 1 - type: Transform - - uid: 3271 - components: - - pos: -27.5,18.5 - parent: 1 - type: Transform - - uid: 3272 - components: - - pos: -28.5,18.5 - parent: 1 - type: Transform - - uid: 3273 - components: - - pos: -23.5,16.5 - parent: 1 - type: Transform - - uid: 3274 - components: - - pos: -22.5,16.5 - parent: 1 - type: Transform - - uid: 3275 - components: - - pos: -23.5,15.5 - parent: 1 - type: Transform - - uid: 3276 - components: - - pos: -23.5,14.5 - parent: 1 - type: Transform - - uid: 3277 - components: - - pos: -23.5,13.5 - parent: 1 - type: Transform - - uid: 3278 - components: - - pos: -23.5,12.5 - parent: 1 - type: Transform - - uid: 3279 - components: - - pos: -23.5,11.5 - parent: 1 - type: Transform - - uid: 3280 - components: - - pos: -23.5,10.5 - parent: 1 - type: Transform - - uid: 3281 - components: - - pos: -23.5,9.5 - parent: 1 - type: Transform - - uid: 3282 - components: - - pos: -23.5,8.5 - parent: 1 - type: Transform - - uid: 3283 - components: - - pos: -24.5,8.5 - parent: 1 - type: Transform - - uid: 3284 - components: - - pos: -25.5,8.5 - parent: 1 - type: Transform - - uid: 3285 - components: - - pos: -26.5,8.5 - parent: 1 - type: Transform - - uid: 3286 - components: - - pos: -27.5,8.5 - parent: 1 - type: Transform - - uid: 3287 - components: - - pos: -28.5,8.5 - parent: 1 - type: Transform - - uid: 3288 - components: - - pos: -29.5,8.5 - parent: 1 - type: Transform - - uid: 3289 - components: - - pos: -30.5,8.5 - parent: 1 - type: Transform - - uid: 3290 - components: - - pos: -30.5,9.5 - parent: 1 - type: Transform - - uid: 3291 - components: - - pos: -30.5,10.5 - parent: 1 - type: Transform - - uid: 3292 - components: - - pos: -31.5,10.5 - parent: 1 - type: Transform - - uid: 3293 - components: - - pos: -31.5,10.5 - parent: 1 - type: Transform - - uid: 3294 - components: - - pos: -32.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3295 - components: - - pos: -33.5,10.5 - parent: 1 - type: Transform - - uid: 3296 - components: - - pos: -33.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3297 - components: - - pos: -23.5,7.5 - parent: 1 - type: Transform - - uid: 3298 - components: - - pos: -23.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3299 - components: - - pos: -23.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3300 - components: - - pos: -24.5,5.5 - parent: 1 - type: Transform - - uid: 3301 - components: - - pos: -25.5,5.5 - parent: 1 - type: Transform - - uid: 3302 - components: - - pos: -26.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3303 - components: - - pos: -27.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3304 - components: - - pos: -28.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3305 - components: - - pos: -29.5,5.5 - parent: 1 - type: Transform - - uid: 3306 - components: - - pos: -30.5,5.5 - parent: 1 - type: Transform - - uid: 3307 - components: - - pos: -31.5,5.5 - parent: 1 - type: Transform - - uid: 3308 - components: - - pos: -32.5,5.5 - parent: 1 - type: Transform - - uid: 3309 - components: - - pos: -33.5,5.5 - parent: 1 - type: Transform - - uid: 3310 - components: - - pos: -22.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3311 - components: - - pos: -21.5,5.5 - parent: 1 - type: Transform - - uid: 3312 - components: - - pos: -20.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3313 - components: - - pos: -19.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3314 - components: - - pos: -19.5,6.5 - parent: 1 - type: Transform - - uid: 3323 - components: - - pos: -42.5,-11.5 - parent: 1 - type: Transform - - uid: 3352 - components: - - pos: -42.5,-13.5 - parent: 1 - type: Transform - - uid: 3353 - components: - - pos: -43.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3354 - components: - - pos: -47.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3355 - components: - - pos: -42.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3359 - components: - - pos: -39.5,-12.5 - parent: 1 - type: Transform - - uid: 3479 - components: - - pos: 17.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3485 - components: - - pos: 21.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3531 - components: - - pos: -29.5,29.5 - parent: 1 - type: Transform - - uid: 3556 - components: - - pos: -42.5,-10.5 - parent: 1 - type: Transform - - uid: 3557 - components: - - pos: -39.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3681 - components: - - pos: -39.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3702 - components: - - pos: -34.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3703 - components: - - pos: -48.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3707 - components: - - pos: -42.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3709 - components: - - pos: -34.5,-10.5 - parent: 1 - type: Transform - - uid: 3711 - components: - - pos: -44.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3712 - components: - - pos: -45.5,-13.5 - parent: 1 - type: Transform - - uid: 3713 - components: - - pos: -46.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3777 - components: - - pos: -42.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3778 - components: - - pos: -41.5,-5.5 - parent: 1 - type: Transform - - uid: 3779 - components: - - pos: -40.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3780 - components: - - pos: -39.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3781 - components: - - pos: -38.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3782 - components: - - pos: -37.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3783 - components: - - pos: -40.5,-4.5 - parent: 1 - type: Transform - - uid: 3784 - components: - - pos: -40.5,-3.5 - parent: 1 - type: Transform - - uid: 3785 - components: - - pos: -40.5,-2.5 - parent: 1 - type: Transform - - uid: 3786 - components: - - pos: -40.5,-1.5 - parent: 1 - type: Transform - - uid: 3787 - components: - - pos: -40.5,-0.5 - parent: 1 - type: Transform - - uid: 3788 - components: - - pos: -40.5,0.5 - parent: 1 - type: Transform - - uid: 3789 - components: - - pos: -40.5,1.5 - parent: 1 - type: Transform - - uid: 3790 - components: - - pos: -40.5,2.5 - parent: 1 - type: Transform - - uid: 3791 - components: - - pos: -37.5,-4.5 - parent: 1 - type: Transform - - uid: 3792 - components: - - pos: -37.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3793 - components: - - pos: -37.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3794 - components: - - pos: -37.5,-1.5 - parent: 1 - type: Transform - - uid: 3795 - components: - - pos: -37.5,-0.5 - parent: 1 - type: Transform - - uid: 3796 - components: - - pos: -37.5,0.5 - parent: 1 - type: Transform - - uid: 3797 - components: - - pos: -37.5,1.5 - parent: 1 - type: Transform - - uid: 3798 - components: - - pos: -37.5,2.5 - parent: 1 - type: Transform - - uid: 3799 - components: - - pos: -36.5,-2.5 - parent: 1 - type: Transform - - uid: 3800 - components: - - pos: -35.5,-2.5 - parent: 1 - type: Transform - - uid: 3801 - components: - - pos: -34.5,-2.5 - parent: 1 - type: Transform - - uid: 3802 - components: - - pos: -33.5,-2.5 - parent: 1 - type: Transform - - uid: 3803 - components: - - pos: -32.5,-2.5 - parent: 1 - type: Transform - - uid: 3804 - components: - - pos: -32.5,-1.5 - parent: 1 - type: Transform - - uid: 3805 - components: - - pos: -32.5,-0.5 - parent: 1 - type: Transform - - uid: 3806 - components: - - pos: -32.5,0.5 - parent: 1 - type: Transform - - uid: 3807 - components: - - pos: -32.5,1.5 - parent: 1 - type: Transform - - uid: 3808 - components: - - pos: -32.5,2.5 - parent: 1 - type: Transform - - uid: 3809 - components: - - pos: -37.5,3.5 - parent: 1 - type: Transform - - uid: 3810 - components: - - pos: -37.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3811 - components: - - pos: -37.5,5.5 - parent: 1 - type: Transform - - uid: 3812 - components: - - pos: -36.5,5.5 - parent: 1 - type: Transform - - uid: 3813 - components: - - pos: -35.5,5.5 - parent: 1 - type: Transform - - uid: 3814 - components: - - pos: -38.5,5.5 - parent: 1 - type: Transform - - uid: 3815 - components: - - pos: -39.5,5.5 - parent: 1 - type: Transform - - uid: 3816 - components: - - pos: -40.5,5.5 - parent: 1 - type: Transform - - uid: 3817 - components: - - pos: -41.5,-2.5 - parent: 1 - type: Transform - - uid: 3818 - components: - - pos: -42.5,-2.5 - parent: 1 - type: Transform - - uid: 3819 - components: - - pos: -43.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3820 - components: - - pos: -44.5,-2.5 - parent: 1 - type: Transform - - uid: 3821 - components: - - pos: -44.5,-3.5 - parent: 1 - type: Transform - - uid: 3822 - components: - - pos: -44.5,-4.5 - parent: 1 - type: Transform - - uid: 3823 - components: - - pos: -44.5,-5.5 - parent: 1 - type: Transform - - uid: 3824 - components: - - pos: -44.5,-6.5 - parent: 1 - type: Transform - - uid: 3825 - components: - - pos: -45.5,-2.5 - parent: 1 - type: Transform - - uid: 3826 - components: - - pos: -44.5,-1.5 - parent: 1 - type: Transform - - uid: 3827 - components: - - pos: -44.5,-0.5 - parent: 1 - type: Transform - - uid: 3828 - components: - - pos: -44.5,0.5 - parent: 1 - type: Transform - - uid: 3829 - components: - - pos: -44.5,1.5 - parent: 1 - type: Transform - - uid: 3830 - components: - - pos: -45.5,1.5 - parent: 1 - type: Transform - - uid: 3831 - components: - - pos: -39.5,-6.5 - parent: 1 - type: Transform - - uid: 3834 - components: - - pos: -39.5,-9.5 - parent: 1 - type: Transform - - uid: 3836 - components: - - pos: -39.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3838 - components: - - pos: -37.5,-6.5 - parent: 1 - type: Transform - - uid: 3839 - components: - - pos: -37.5,-7.5 - parent: 1 - type: Transform - - uid: 3845 - components: - - pos: -32.5,-3.5 - parent: 1 - type: Transform - - uid: 3847 - components: - - pos: -32.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3848 - components: - - pos: -32.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3849 - components: - - pos: -32.5,-10.5 - parent: 1 - type: Transform - - uid: 3850 - components: - - pos: -34.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3852 - components: - - pos: -33.5,-9.5 - parent: 1 - type: Transform - - uid: 3853 - components: - - pos: -33.5,-10.5 - parent: 1 - type: Transform - - uid: 3855 - components: - - pos: -40.5,-9.5 - parent: 1 - type: Transform - - uid: 3856 - components: - - pos: -41.5,-9.5 - parent: 1 - type: Transform - - uid: 3857 - components: - - pos: -42.5,-9.5 - parent: 1 - type: Transform - - uid: 3858 - components: - - pos: -43.5,-9.5 - parent: 1 - type: Transform - - uid: 3859 - components: - - pos: -44.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3860 - components: - - pos: -45.5,-9.5 - parent: 1 - type: Transform - - uid: 3861 - components: - - pos: -46.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3862 - components: - - pos: -47.5,-9.5 - parent: 1 - type: Transform - - uid: 3863 - components: - - pos: -47.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3864 - components: - - pos: -48.5,-2.5 - parent: 1 - type: Transform - - uid: 3866 - components: - - pos: -48.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3867 - components: - - pos: -48.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3868 - components: - - pos: -48.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3869 - components: - - pos: -48.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3870 - components: - - pos: -44.5,2.5 - parent: 1 - type: Transform - - uid: 3873 - components: - - pos: -27.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3874 - components: - - pos: -26.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3875 - components: - - pos: -26.5,-1.5 - parent: 1 - type: Transform - - uid: 3876 - components: - - pos: -26.5,-0.5 - parent: 1 - type: Transform - - uid: 3877 - components: - - pos: -26.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3878 - components: - - pos: -26.5,1.5 - parent: 1 - type: Transform - - uid: 3879 - components: - - pos: -26.5,2.5 - parent: 1 - type: Transform - - uid: 3880 - components: - - pos: -25.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3881 - components: - - pos: -25.5,0.5 - parent: 1 - type: Transform - - uid: 3882 - components: - - pos: -25.5,-1.5 - parent: 1 - type: Transform - - uid: 3883 - components: - - pos: -26.5,3.5 - parent: 1 - type: Transform - - uid: 3884 - components: - - pos: -26.5,-3.5 - parent: 1 - type: Transform - - uid: 3885 - components: - - pos: -26.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3886 - components: - - pos: -26.5,-5.5 - parent: 1 - type: Transform - - uid: 3887 - components: - - pos: -26.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3888 - components: - - pos: -26.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3890 - components: - - pos: -25.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3891 - components: - - pos: -24.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3892 - components: - - pos: -23.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3893 - components: - - pos: -22.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3894 - components: - - pos: -21.5,-7.5 - parent: 1 - type: Transform - - uid: 3895 - components: - - pos: -20.5,-7.5 - parent: 1 - type: Transform - - uid: 3896 - components: - - pos: -20.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3897 - components: - - pos: -20.5,-9.5 - parent: 1 - type: Transform - - uid: 3898 - components: - - pos: -20.5,-10.5 - parent: 1 - type: Transform - - uid: 3899 - components: - - pos: -20.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3900 - components: - - pos: -20.5,-12.5 - parent: 1 - type: Transform - - uid: 3901 - components: - - pos: -24.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3902 - components: - - pos: -24.5,-9.5 - parent: 1 - type: Transform - - uid: 4098 - components: - - pos: -21.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4254 - components: - - pos: -22.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4255 - components: - - pos: -21.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4256 - components: - - pos: -20.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4342 - components: - - pos: -41.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4343 - components: - - pos: -41.5,13.5 - parent: 1 - type: Transform - - uid: 4344 - components: - - pos: -41.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4345 - components: - - pos: -41.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4346 - components: - - pos: -41.5,10.5 - parent: 1 - type: Transform - - uid: 4347 - components: - - pos: -41.5,9.5 - parent: 1 - type: Transform - - uid: 4348 - components: - - pos: -41.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4424 - components: - - pos: -41.5,7.5 - parent: 1 - type: Transform - - uid: 4425 - components: - - pos: -41.5,6.5 - parent: 1 - type: Transform - - uid: 4426 - components: - - pos: -41.5,5.5 - parent: 1 - type: Transform - - uid: 4427 - components: - - pos: -42.5,5.5 - parent: 1 - type: Transform - - uid: 4428 - components: - - pos: -43.5,5.5 - parent: 1 - type: Transform - - uid: 4429 - components: - - pos: -44.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4434 - components: - - pos: -50.5,7.5 - parent: 1 - type: Transform - - uid: 4435 - components: - - pos: -42.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4436 - components: - - pos: -43.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4437 - components: - - pos: -44.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4438 - components: - - pos: -45.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4439 - components: - - pos: -46.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4440 - components: - - pos: -47.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4441 - components: - - pos: -48.5,14.5 - parent: 1 - type: Transform - - uid: 4442 - components: - - pos: -49.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4443 - components: - - pos: -40.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4444 - components: - - pos: -40.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4445 - components: - - pos: -41.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4446 - components: - - pos: -42.5,21.5 - parent: 1 - type: Transform - - uid: 4447 - components: - - pos: -43.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4448 - components: - - pos: -44.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4449 - components: - - pos: -45.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4450 - components: - - pos: -46.5,21.5 - parent: 1 - type: Transform - - uid: 4451 - components: - - pos: -47.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4452 - components: - - pos: -48.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4453 - components: - - pos: -49.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4454 - components: - - pos: -44.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4455 - components: - - pos: -44.5,23.5 - parent: 1 - type: Transform - - uid: 4456 - components: - - pos: -44.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4457 - components: - - pos: -44.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4458 - components: - - pos: -44.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4459 - components: - - pos: -44.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4460 - components: - - pos: -39.5,21.5 - parent: 1 - type: Transform - - uid: 4461 - components: - - pos: -38.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4462 - components: - - pos: -37.5,21.5 - parent: 1 - type: Transform - - uid: 4463 - components: - - pos: -37.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4464 - components: - - pos: -37.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4465 - components: - - pos: -37.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4466 - components: - - pos: -37.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4467 - components: - - pos: -37.5,16.5 - parent: 1 - type: Transform - - uid: 4468 - components: - - pos: -37.5,15.5 - parent: 1 - type: Transform - - uid: 4469 - components: - - pos: -37.5,14.5 - parent: 1 - type: Transform - - uid: 4470 - components: - - pos: -37.5,13.5 - parent: 1 - type: Transform - - uid: 4471 - components: - - pos: -37.5,12.5 - parent: 1 - type: Transform - - uid: 4472 - components: - - pos: -37.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4473 - components: - - pos: -37.5,10.5 - parent: 1 - type: Transform - - uid: 4474 - components: - - pos: -37.5,9.5 - parent: 1 - type: Transform - - uid: 4475 - components: - - pos: -37.5,8.5 - parent: 1 - type: Transform - - uid: 4476 - components: - - pos: -37.5,22.5 - parent: 1 - type: Transform - - uid: 4477 - components: - - pos: -37.5,23.5 - parent: 1 - type: Transform - - uid: 4478 - components: - - pos: -37.5,24.5 - parent: 1 - type: Transform - - uid: 4479 - components: - - pos: -37.5,25.5 - parent: 1 - type: Transform - - uid: 4480 - components: - - pos: -37.5,26.5 - parent: 1 - type: Transform - - uid: 4481 - components: - - pos: -37.5,27.5 - parent: 1 - type: Transform - - uid: 4482 - components: - - pos: -37.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4483 - components: - - pos: -37.5,29.5 - parent: 1 - type: Transform - - uid: 4484 - components: - - pos: -37.5,30.5 - parent: 1 - type: Transform - - uid: 4485 - components: - - pos: -42.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4486 - components: - - pos: -42.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4487 - components: - - pos: -42.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4488 - components: - - pos: -45.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4489 - components: - - pos: -45.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4490 - components: - - pos: -45.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4491 - components: - - pos: -48.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4492 - components: - - pos: -48.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4493 - components: - - pos: -48.5,18.5 - parent: 1 - type: Transform - - uid: 4524 - components: - - pos: -56.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4543 - components: - - pos: -50.5,8.5 - parent: 1 - type: Transform - - uid: 4547 - components: - - pos: -47.5,11.5 - parent: 1 - type: Transform - - uid: 4548 - components: - - pos: -50.5,11.5 - parent: 1 - type: Transform - - uid: 4593 - components: - - pos: 21.5,37.5 - parent: 1 - type: Transform - - uid: 4599 - components: - - pos: -50.5,9.5 - parent: 1 - type: Transform - - uid: 4601 - components: - - pos: -49.5,9.5 - parent: 1 - type: Transform - - uid: 4608 - components: - - pos: -57.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4612 - components: - - pos: -46.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4613 - components: - - pos: -47.5,27.5 - parent: 1 - type: Transform - - uid: 4614 - components: - - pos: -48.5,27.5 - parent: 1 - type: Transform - - uid: 4615 - components: - - pos: -49.5,27.5 - parent: 1 - type: Transform - - uid: 4616 - components: - - pos: -50.5,27.5 - parent: 1 - type: Transform - - uid: 4617 - components: - - pos: -51.5,27.5 - parent: 1 - type: Transform - - uid: 4618 - components: - - pos: -52.5,27.5 - parent: 1 - type: Transform - - uid: 4619 - components: - - pos: -53.5,27.5 - parent: 1 - type: Transform - - uid: 4620 - components: - - pos: -48.5,29.5 - parent: 1 - type: Transform - - uid: 4621 - components: - - pos: -48.5,28.5 - parent: 1 - type: Transform - - uid: 4622 - components: - - pos: -48.5,30.5 - parent: 1 - type: Transform - - uid: 4623 - components: - - pos: -48.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4624 - components: - - pos: -48.5,32.5 - parent: 1 - type: Transform - - uid: 4625 - components: - - pos: -44.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4626 - components: - - pos: -44.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4627 - components: - - pos: -44.5,30.5 - parent: 1 - type: Transform - - uid: 4628 - components: - - pos: -44.5,31.5 - parent: 1 - type: Transform - - uid: 4629 - components: - - pos: -44.5,32.5 - parent: 1 - type: Transform - - uid: 4630 - components: - - pos: -37.5,31.5 - parent: 1 - type: Transform - - uid: 4631 - components: - - pos: -37.5,32.5 - parent: 1 - type: Transform - - uid: 4632 - components: - - pos: -38.5,32.5 - parent: 1 - type: Transform - - uid: 4633 - components: - - pos: -39.5,32.5 - parent: 1 - type: Transform - - uid: 4634 - components: - - pos: -40.5,32.5 - parent: 1 - type: Transform - - uid: 4635 - components: - - pos: -43.5,32.5 - parent: 1 - type: Transform - - uid: 4636 - components: - - pos: -42.5,32.5 - parent: 1 - type: Transform - - uid: 4637 - components: - - pos: -29.5,31.5 - parent: 1 - type: Transform - - uid: 4638 - components: - - pos: -29.5,32.5 - parent: 1 - type: Transform - - uid: 4639 - components: - - pos: -47.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4640 - components: - - pos: -30.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4641 - components: - - pos: -31.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4642 - components: - - pos: -32.5,32.5 - parent: 1 - type: Transform - - uid: 4643 - components: - - pos: -33.5,32.5 - parent: 1 - type: Transform - - uid: 4644 - components: - - pos: -34.5,32.5 - parent: 1 - type: Transform - - uid: 4645 - components: - - pos: -35.5,32.5 - parent: 1 - type: Transform - - uid: 4646 - components: - - pos: -28.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4647 - components: - - pos: -27.5,32.5 - parent: 1 - type: Transform - - uid: 4648 - components: - - pos: -26.5,32.5 - parent: 1 - type: Transform - - uid: 4649 - components: - - pos: -25.5,32.5 - parent: 1 - type: Transform - - uid: 4650 - components: - - pos: -46.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4651 - components: - - pos: -49.5,32.5 - parent: 1 - type: Transform - - uid: 4652 - components: - - pos: -50.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4653 - components: - - pos: -51.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4654 - components: - - pos: -52.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4655 - components: - - pos: -53.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4656 - components: - - pos: -54.5,32.5 - parent: 1 - type: Transform - - uid: 4657 - components: - - pos: -55.5,32.5 - parent: 1 - type: Transform - - uid: 4658 - components: - - pos: -52.5,14.5 - parent: 1 - type: Transform - - uid: 4659 - components: - - pos: -53.5,14.5 - parent: 1 - type: Transform - - uid: 4660 - components: - - pos: -54.5,14.5 - parent: 1 - type: Transform - - uid: 4661 - components: - - pos: -55.5,14.5 - parent: 1 - type: Transform - - uid: 4662 - components: - - pos: -56.5,14.5 - parent: 1 - type: Transform - - uid: 4663 - components: - - pos: -57.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4664 - components: - - pos: -57.5,15.5 - parent: 1 - type: Transform - - uid: 4665 - components: - - pos: -57.5,15.5 - parent: 1 - type: Transform - - uid: 4666 - components: - - pos: -57.5,16.5 - parent: 1 - type: Transform - - uid: 4667 - components: - - pos: -57.5,17.5 - parent: 1 - type: Transform - - uid: 4668 - components: - - pos: -57.5,18.5 - parent: 1 - type: Transform - - uid: 4669 - components: - - pos: -57.5,19.5 - parent: 1 - type: Transform - - uid: 4670 - components: - - pos: -57.5,20.5 - parent: 1 - type: Transform - - uid: 4671 - components: - - pos: -57.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4672 - components: - - pos: -57.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4673 - components: - - pos: -57.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4674 - components: - - pos: -57.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4675 - components: - - pos: -57.5,25.5 - parent: 1 - type: Transform - - uid: 4676 - components: - - pos: -56.5,32.5 - parent: 1 - type: Transform - - uid: 4677 - components: - - pos: -57.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4678 - components: - - pos: -57.5,31.5 - parent: 1 - type: Transform - - uid: 4679 - components: - - pos: -57.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4680 - components: - - pos: -57.5,29.5 - parent: 1 - type: Transform - - uid: 4681 - components: - - pos: -51.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4682 - components: - - pos: -53.5,15.5 - parent: 1 - type: Transform - - uid: 4683 - components: - - pos: -53.5,16.5 - parent: 1 - type: Transform - - uid: 4684 - components: - - pos: -53.5,17.5 - parent: 1 - type: Transform - - uid: 4685 - components: - - pos: -53.5,18.5 - parent: 1 - type: Transform - - uid: 4686 - components: - - pos: -53.5,19.5 - parent: 1 - type: Transform - - uid: 4687 - components: - - pos: -53.5,20.5 - parent: 1 - type: Transform - - uid: 4688 - components: - - pos: -57.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4689 - components: - - pos: -57.5,12.5 - parent: 1 - type: Transform - - uid: 4690 - components: - - pos: -57.5,11.5 - parent: 1 - type: Transform - - uid: 4691 - components: - - pos: -57.5,10.5 - parent: 1 - type: Transform - - uid: 4692 - components: - - pos: -57.5,9.5 - parent: 1 - type: Transform - - uid: 4693 - components: - - pos: -57.5,8.5 - parent: 1 - type: Transform - - uid: 4700 - components: - - pos: -45.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4701 - components: - - pos: -46.5,9.5 - parent: 1 - type: Transform - - uid: 4702 - components: - - pos: -47.5,9.5 - parent: 1 - type: Transform - - uid: 4704 - components: - - pos: -48.5,9.5 - parent: 1 - type: Transform - - uid: 4713 - components: - - pos: 20.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4714 - components: - - pos: 20.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4715 - components: - - pos: 20.5,42.5 - parent: 1 - type: Transform - - uid: 4716 - components: - - pos: -47.5,5.5 - parent: 1 - type: Transform - - uid: 4717 - components: - - pos: -48.5,5.5 - parent: 1 - type: Transform - - uid: 4718 - components: - - pos: -46.5,5.5 - parent: 1 - type: Transform - - uid: 4719 - components: - - pos: -49.5,5.5 - parent: 1 - type: Transform - - uid: 4720 - components: - - pos: -50.5,5.5 - parent: 1 - type: Transform - - uid: 4721 - components: - - pos: -51.5,5.5 - parent: 1 - type: Transform - - uid: 4722 - components: - - pos: -52.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4723 - components: - - pos: -53.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4724 - components: - - pos: -54.5,5.5 - parent: 1 - type: Transform - - uid: 4725 - components: - - pos: -57.5,4.5 - parent: 1 - type: Transform - - uid: 4726 - components: - - pos: -57.5,5.5 - parent: 1 - type: Transform - - uid: 4727 - components: - - pos: -58.5,5.5 - parent: 1 - type: Transform - - uid: 4728 - components: - - pos: 20.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4731 - components: - - pos: 21.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4742 - components: - - pos: -73.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4759 - components: - - pos: -66.5,-9.5 - parent: 1 - type: Transform - - uid: 4783 - components: - - pos: -65.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4785 - components: - - pos: -73.5,-11.5 - parent: 1 - type: Transform - - uid: 4786 - components: - - pos: -62.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4787 - components: - - pos: -63.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4788 - components: - - pos: -73.5,4.5 - parent: 1 - type: Transform - - uid: 4789 - components: - - pos: -73.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4790 - components: - - pos: -66.5,4.5 - parent: 1 - type: Transform - - uid: 4791 - components: - - pos: -66.5,-10.5 - parent: 1 - type: Transform - - uid: 4794 - components: - - pos: -65.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4795 - components: - - pos: -65.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4796 - components: - - pos: -73.5,-9.5 - parent: 1 - type: Transform - - uid: 4797 - components: - - pos: -67.5,-10.5 - parent: 1 - type: Transform - - uid: 4798 - components: - - pos: -68.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4806 - components: - - pos: -73.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4811 - components: - - pos: -75.5,-10.5 - parent: 1 - type: Transform - - uid: 4812 - components: - - pos: -76.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4813 - components: - - pos: -73.5,-10.5 - parent: 1 - type: Transform - - uid: 4814 - components: - - pos: -74.5,-10.5 - parent: 1 - type: Transform - - uid: 4815 - components: - - pos: -77.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4842 - components: - - pos: -69.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4869 - components: - - pos: -71.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4870 - components: - - pos: -64.5,-10.5 - parent: 1 - type: Transform - - uid: 4872 - components: - - pos: -70.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4874 - components: - - pos: -65.5,-10.5 - parent: 1 - type: Transform - - uid: 4875 - components: - - pos: -72.5,-10.5 - parent: 1 - type: Transform - - uid: 4879 - components: - - pos: -57.5,-10.5 - parent: 1 - type: Transform - - uid: 4880 - components: - - pos: -58.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4881 - components: - - pos: -59.5,-10.5 - parent: 1 - type: Transform - - uid: 4904 - components: - - pos: -65.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4958 - components: - - pos: -60.5,-10.5 - parent: 1 - type: Transform - - uid: 5102 - components: - - pos: -55.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5106 - components: - - pos: -57.5,-9.5 - parent: 1 - type: Transform - - uid: 5127 - components: - - pos: -57.5,-7.5 - parent: 1 - type: Transform - - uid: 5128 - components: - - pos: -57.5,-6.5 - parent: 1 - type: Transform - - uid: 5129 - components: - - pos: -57.5,-5.5 - parent: 1 - type: Transform - - uid: 5130 - components: - - pos: -57.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5131 - components: - - pos: -57.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5132 - components: - - pos: -57.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5133 - components: - - pos: -57.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5134 - components: - - pos: -57.5,-0.5 - parent: 1 - type: Transform - - uid: 5135 - components: - - pos: -57.5,0.5 - parent: 1 - type: Transform - - uid: 5136 - components: - - pos: -57.5,1.5 - parent: 1 - type: Transform - - uid: 5137 - components: - - pos: -57.5,2.5 - parent: 1 - type: Transform - - uid: 5138 - components: - - pos: -57.5,3.5 - parent: 1 - type: Transform - - uid: 5139 - components: - - pos: -59.5,5.5 - parent: 1 - type: Transform - - uid: 5140 - components: - - pos: -60.5,5.5 - parent: 1 - type: Transform - - uid: 5141 - components: - - pos: -61.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5142 - components: - - pos: -62.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5143 - components: - - pos: -63.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5144 - components: - - pos: -64.5,5.5 - parent: 1 - type: Transform - - uid: 5145 - components: - - pos: -65.5,5.5 - parent: 1 - type: Transform - - uid: 5146 - components: - - pos: -66.5,5.5 - parent: 1 - type: Transform - - uid: 5147 - components: - - pos: -67.5,5.5 - parent: 1 - type: Transform - - uid: 5148 - components: - - pos: -68.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5149 - components: - - pos: -69.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5150 - components: - - pos: -70.5,5.5 - parent: 1 - type: Transform - - uid: 5151 - components: - - pos: -71.5,5.5 - parent: 1 - type: Transform - - uid: 5152 - components: - - pos: -72.5,5.5 - parent: 1 - type: Transform - - uid: 5153 - components: - - pos: -73.5,5.5 - parent: 1 - type: Transform - - uid: 5154 - components: - - pos: -74.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5155 - components: - - pos: -54.5,-7.5 - parent: 1 - type: Transform - - uid: 5156 - components: - - pos: -53.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5157 - components: - - pos: -52.5,-7.5 - parent: 1 - type: Transform - - uid: 5158 - components: - - pos: -52.5,-6.5 - parent: 1 - type: Transform - - uid: 5159 - components: - - pos: -52.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5160 - components: - - pos: -52.5,-4.5 - parent: 1 - type: Transform - - uid: 5161 - components: - - pos: -52.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5162 - components: - - pos: -52.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5163 - components: - - pos: -52.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5195 - components: - - pos: 16.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5205 - components: - - pos: -50.5,26.5 - parent: 1 - type: Transform - - uid: 5206 - components: - - pos: -50.5,25.5 - parent: 1 - type: Transform - - uid: 5207 - components: - - pos: -50.5,24.5 - parent: 1 - type: Transform - - uid: 5311 - components: - - pos: 16.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5312 - components: - - pos: 19.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5313 - components: - - pos: 16.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5314 - components: - - pos: 16.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5322 - components: - - pos: 24.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5378 - components: - - pos: -35.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5432 - components: - - pos: -21.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5448 - components: - - pos: -21.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5449 - components: - - pos: -21.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5450 - components: - - pos: -21.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5634 - components: - - pos: -54.5,9.5 - parent: 1 - type: Transform - - uid: 5661 - components: - - pos: -16.5,23.5 - parent: 1 - type: Transform - - uid: 5700 - components: - - pos: -30.5,23.5 - parent: 1 - type: Transform - - uid: 5701 - components: - - pos: -33.5,11.5 - parent: 1 - type: Transform - - uid: 5702 - components: - - pos: -33.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5703 - components: - - pos: -33.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5704 - components: - - pos: -29.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5705 - components: - - pos: -30.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5773 - components: - - pos: -53.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5805 - components: - - pos: 15.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5806 - components: - - pos: 15.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6199 - components: - - pos: 16.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6203 - components: - - pos: 13.5,51.5 - parent: 1 - type: Transform - - uid: 6205 - components: - - pos: 15.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6206 - components: - - pos: 15.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6207 - components: - - pos: 13.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6208 - components: - - pos: 12.5,45.5 - parent: 1 - type: Transform - - uid: 6209 - components: - - pos: 11.5,45.5 - parent: 1 - type: Transform - - uid: 6210 - components: - - pos: 10.5,45.5 - parent: 1 - type: Transform - - uid: 6211 - components: - - pos: 15.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6212 - components: - - pos: 8.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6214 - components: - - pos: 7.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6219 - components: - - pos: 9.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6220 - components: - - pos: 7.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6221 - components: - - pos: 7.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6222 - components: - - pos: 6.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6223 - components: - - pos: 7.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6224 - components: - - pos: 7.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6225 - components: - - pos: 7.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6227 - components: - - pos: 5.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6228 - components: - - pos: 4.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6229 - components: - - pos: 3.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6230 - components: - - pos: 3.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6231 - components: - - pos: 3.5,49.5 - parent: 1 - type: Transform - - uid: 6232 - components: - - pos: 3.5,50.5 - parent: 1 - type: Transform - - uid: 6233 - components: - - pos: 3.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6234 - components: - - pos: 2.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6235 - components: - - pos: 1.5,47.5 - parent: 1 - type: Transform - - uid: 6236 - components: - - pos: 0.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6237 - components: - - pos: -0.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6238 - components: - - pos: -0.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6239 - components: - - pos: -0.5,49.5 - parent: 1 - type: Transform - - uid: 6240 - components: - - pos: -0.5,50.5 - parent: 1 - type: Transform - - uid: 6241 - components: - - pos: -0.5,51.5 - parent: 1 - type: Transform - - uid: 6242 - components: - - pos: 16.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6246 - components: - - pos: 14.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6247 - components: - - pos: 13.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6248 - components: - - pos: 12.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6249 - components: - - pos: 11.5,40.5 - parent: 1 - type: Transform - - uid: 6250 - components: - - pos: 10.5,40.5 - parent: 1 - type: Transform - - uid: 6251 - components: - - pos: 15.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6252 - components: - - pos: 15.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6258 - components: - - pos: -52.5,9.5 - parent: 1 - type: Transform - - uid: 6260 - components: - - pos: -50.5,10.5 - parent: 1 - type: Transform - - uid: 6261 - components: - - pos: -47.5,10.5 - parent: 1 - type: Transform - - uid: 6262 - components: - - pos: -53.5,9.5 - parent: 1 - type: Transform - - uid: 6263 - components: - - pos: -51.5,9.5 - parent: 1 - type: Transform - - uid: 6271 - components: - - pos: 15.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6273 - components: - - pos: 17.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6274 - components: - - pos: 18.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6276 - components: - - pos: 20.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6278 - components: - - pos: 23.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6279 - components: - - pos: 23.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6280 - components: - - pos: 9.5,40.5 - parent: 1 - type: Transform - - uid: 6281 - components: - - pos: 8.5,40.5 - parent: 1 - type: Transform - - uid: 6282 - components: - - pos: -1.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6283 - components: - - pos: -2.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6284 - components: - - pos: -2.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6285 - components: - - pos: -2.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6286 - components: - - pos: -2.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6287 - components: - - pos: -2.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6288 - components: - - pos: -2.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6289 - components: - - pos: -3.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6290 - components: - - pos: -3.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6291 - components: - - pos: -3.5,40.5 - parent: 1 - type: Transform - - uid: 6293 - components: - - pos: -3.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6294 - components: - - pos: -3.5,37.5 - parent: 1 - type: Transform - - uid: 6295 - components: - - pos: -4.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6296 - components: - - pos: -5.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6297 - components: - - pos: -6.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6298 - components: - - pos: -7.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6299 - components: - - pos: -8.5,37.5 - parent: 1 - type: Transform - - uid: 6300 - components: - - pos: -9.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6301 - components: - - pos: -3.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6302 - components: - - pos: -4.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6315 - components: - - pos: 20.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6562 - components: - - pos: -4.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6563 - components: - - pos: -4.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6564 - components: - - pos: -4.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6565 - components: - - pos: -5.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6566 - components: - - pos: -6.5,55.5 - parent: 1 - type: Transform - - uid: 6567 - components: - - pos: -7.5,55.5 - parent: 1 - type: Transform - - uid: 6568 - components: - - pos: -8.5,55.5 - parent: 1 - type: Transform - - uid: 6569 - components: - - pos: -9.5,55.5 - parent: 1 - type: Transform - - uid: 6570 - components: - - pos: -10.5,55.5 - parent: 1 - type: Transform - - uid: 6571 - components: - - pos: -11.5,55.5 - parent: 1 - type: Transform - - uid: 6572 - components: - - pos: -12.5,55.5 - parent: 1 - type: Transform - - uid: 6573 - components: - - pos: -13.5,55.5 - parent: 1 - type: Transform - - uid: 6574 - components: - - pos: -14.5,55.5 - parent: 1 - type: Transform - - uid: 6575 - components: - - pos: -15.5,55.5 - parent: 1 - type: Transform - - uid: 6576 - components: - - pos: -16.5,55.5 - parent: 1 - type: Transform - - uid: 6577 - components: - - pos: -7.5,56.5 - parent: 1 - type: Transform - - uid: 6578 - components: - - pos: -7.5,57.5 - parent: 1 - type: Transform - - uid: 6579 - components: - - pos: -7.5,58.5 - parent: 1 - type: Transform - - uid: 6580 - components: - - pos: -7.5,59.5 - parent: 1 - type: Transform - - uid: 6581 - components: - - pos: -7.5,60.5 - parent: 1 - type: Transform - - uid: 6582 - components: - - pos: -16.5,54.5 - parent: 1 - type: Transform - - uid: 6583 - components: - - pos: -17.5,54.5 - parent: 1 - type: Transform - - uid: 6584 - components: - - pos: -18.5,54.5 - parent: 1 - type: Transform - - uid: 6585 - components: - - pos: -19.5,54.5 - parent: 1 - type: Transform - - uid: 6586 - components: - - pos: -20.5,54.5 - parent: 1 - type: Transform - - uid: 6587 - components: - - pos: -21.5,54.5 - parent: 1 - type: Transform - - uid: 6588 - components: - - pos: -22.5,54.5 - parent: 1 - type: Transform - - uid: 6589 - components: - - pos: -22.5,55.5 - parent: 1 - type: Transform - - uid: 6590 - components: - - pos: -15.5,56.5 - parent: 1 - type: Transform - - uid: 6591 - components: - - pos: -15.5,57.5 - parent: 1 - type: Transform - - uid: 6592 - components: - - pos: -15.5,58.5 - parent: 1 - type: Transform - - uid: 6593 - components: - - pos: -15.5,59.5 - parent: 1 - type: Transform - - uid: 6594 - components: - - pos: -15.5,60.5 - parent: 1 - type: Transform - - uid: 6595 - components: - - pos: -15.5,61.5 - parent: 1 - type: Transform - - uid: 6596 - components: - - pos: -15.5,62.5 - parent: 1 - type: Transform - - uid: 6597 - components: - - pos: -15.5,63.5 - parent: 1 - type: Transform - - uid: 6598 - components: - - pos: -15.5,64.5 - parent: 1 - type: Transform - - uid: 6599 - components: - - pos: -15.5,65.5 - parent: 1 - type: Transform - - uid: 6600 - components: - - pos: -16.5,64.5 - parent: 1 - type: Transform - - uid: 6601 - components: - - pos: -17.5,64.5 - parent: 1 - type: Transform - - uid: 6602 - components: - - pos: -18.5,64.5 - parent: 1 - type: Transform - - uid: 6603 - components: - - pos: -19.5,64.5 - parent: 1 - type: Transform - - uid: 6604 - components: - - pos: -16.5,60.5 - parent: 1 - type: Transform - - uid: 6605 - components: - - pos: -17.5,60.5 - parent: 1 - type: Transform - - uid: 6606 - components: - - pos: -18.5,60.5 - parent: 1 - type: Transform - - uid: 6607 - components: - - pos: -19.5,60.5 - parent: 1 - type: Transform - - uid: 6608 - components: - - pos: -20.5,60.5 - parent: 1 - type: Transform - - uid: 6609 - components: - - pos: -14.5,60.5 - parent: 1 - type: Transform - - uid: 6610 - components: - - pos: -13.5,60.5 - parent: 1 - type: Transform - - uid: 6611 - components: - - pos: -12.5,60.5 - parent: 1 - type: Transform - - uid: 6612 - components: - - pos: -14.5,64.5 - parent: 1 - type: Transform - - uid: 6613 - components: - - pos: -13.5,64.5 - parent: 1 - type: Transform - - uid: 6614 - components: - - pos: -12.5,64.5 - parent: 1 - type: Transform - - uid: 6615 - components: - - pos: -20.5,64.5 - parent: 1 - type: Transform - - uid: 7284 - components: - - pos: -43.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7401 - components: - - pos: 14.5,45.5 - parent: 1 - type: Transform - - uid: 7492 - components: - - pos: -3.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7744 - components: - - pos: -53.5,85.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7745 - components: - - pos: -52.5,85.5 - parent: 1 - type: Transform - - uid: 7746 - components: - - pos: -51.5,85.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7747 - components: - - pos: -51.5,86.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7748 - components: - - pos: -51.5,87.5 - parent: 1 - type: Transform - - uid: 7749 - components: - - pos: -51.5,88.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7750 - components: - - pos: -51.5,89.5 - parent: 1 - type: Transform - - uid: 7751 - components: - - pos: -51.5,84.5 - parent: 1 - type: Transform - - uid: 7752 - components: - - pos: -51.5,83.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7753 - components: - - pos: -51.5,82.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7754 - components: - - pos: -52.5,82.5 - parent: 1 - type: Transform - - uid: 7755 - components: - - pos: -50.5,81.5 - parent: 1 - type: Transform - - uid: 7756 - components: - - pos: -50.5,82.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7757 - components: - - pos: -52.5,79.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7758 - components: - - pos: -52.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7759 - components: - - pos: -52.5,80.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7760 - components: - - pos: -52.5,81.5 - parent: 1 - type: Transform - - uid: 7761 - components: - - pos: -50.5,80.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7762 - components: - - pos: -50.5,79.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7763 - components: - - pos: -50.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7764 - components: - - pos: -53.5,79.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7765 - components: - - pos: -52.5,89.5 - parent: 1 - type: Transform - - uid: 7766 - components: - - pos: -53.5,89.5 - parent: 1 - type: Transform - - uid: 7767 - components: - - pos: -54.5,89.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7768 - components: - - pos: -55.5,89.5 - parent: 1 - type: Transform - - uid: 7769 - components: - - pos: -56.5,89.5 - parent: 1 - type: Transform - - uid: 7770 - components: - - pos: -57.5,89.5 - parent: 1 - type: Transform - - uid: 7771 - components: - - pos: -58.5,89.5 - parent: 1 - type: Transform - - uid: 7772 - components: - - pos: -59.5,89.5 - parent: 1 - type: Transform - - uid: 7773 - components: - - pos: -52.5,83.5 - parent: 1 - type: Transform - - uid: 7774 - components: - - pos: -59.5,84.5 - parent: 1 - type: Transform - - uid: 7775 - components: - - pos: -53.5,83.5 - parent: 1 - type: Transform - - uid: 7776 - components: - - pos: -59.5,87.5 - parent: 1 - type: Transform - - uid: 7777 - components: - - pos: -54.5,83.5 - parent: 1 - type: Transform - - uid: 7778 - components: - - pos: -59.5,85.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7779 - components: - - pos: -55.5,83.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7780 - components: - - pos: -59.5,86.5 - parent: 1 - type: Transform - - uid: 7781 - components: - - pos: -56.5,83.5 - parent: 1 - type: Transform - - uid: 7782 - components: - - pos: -59.5,88.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7783 - components: - - pos: -57.5,83.5 - parent: 1 - type: Transform - - uid: 7784 - components: - - pos: -62.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7785 - components: - - pos: -58.5,83.5 - parent: 1 - type: Transform - - uid: 7786 - components: - - pos: -63.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7787 - components: - - pos: -59.5,83.5 - parent: 1 - type: Transform - - uid: 7788 - components: - - pos: -60.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7789 - components: - - pos: -61.5,84.5 - parent: 1 - type: Transform - - uid: 7790 - components: - - pos: -63.5,83.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7791 - components: - - pos: -63.5,85.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7792 - components: - - pos: -59.5,82.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7793 - components: - - pos: -60.5,82.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7794 - components: - - pos: -61.5,82.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7795 - components: - - pos: -58.5,82.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7796 - components: - - pos: -60.5,90.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7797 - components: - - pos: -59.5,90.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7798 - components: - - pos: -58.5,90.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7799 - components: - - pos: -51.5,90.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7800 - components: - - pos: -51.5,91.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7801 - components: - - pos: -50.5,88.5 - parent: 1 - type: Transform - - uid: 7802 - components: - - pos: -49.5,88.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7803 - components: - - pos: -49.5,87.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7804 - components: - - pos: -49.5,86.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7805 - components: - - pos: -49.5,85.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7806 - components: - - pos: -49.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7807 - components: - - pos: -49.5,83.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7920 - components: - - pos: -42.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8347 - components: - - pos: -56.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8348 - components: - - pos: -56.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8349 - components: - - pos: -56.5,53.5 - parent: 1 - type: Transform - - uid: 8378 - components: - - pos: -58.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8379 - components: - - pos: -57.5,56.5 - parent: 1 - type: Transform - - uid: 8380 - components: - - pos: -56.5,56.5 - parent: 1 - type: Transform - - uid: 8381 - components: - - pos: -55.5,56.5 - parent: 1 - type: Transform - - uid: 8382 - components: - - pos: -54.5,56.5 - parent: 1 - type: Transform - - uid: 8383 - components: - - pos: -54.5,55.5 - parent: 1 - type: Transform - - uid: 8384 - components: - - pos: -54.5,54.5 - parent: 1 - type: Transform - - uid: 8385 - components: - - pos: -50.5,49.5 - parent: 1 - type: Transform - - uid: 8386 - components: - - pos: -50.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8387 - components: - - pos: -51.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8388 - components: - - pos: -53.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8389 - components: - - pos: -53.5,53.5 - parent: 1 - type: Transform - - uid: 8390 - components: - - pos: -55.5,54.5 - parent: 1 - type: Transform - - uid: 8391 - components: - - pos: -56.5,54.5 - parent: 1 - type: Transform - - uid: 8392 - components: - - pos: -57.5,54.5 - parent: 1 - type: Transform - - uid: 8393 - components: - - pos: -58.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8394 - components: - - pos: -59.5,54.5 - parent: 1 - type: Transform - - uid: 8395 - components: - - pos: -60.5,54.5 - parent: 1 - type: Transform - - uid: 8396 - components: - - pos: -61.5,54.5 - parent: 1 - type: Transform - - uid: 8397 - components: - - pos: -62.5,54.5 - parent: 1 - type: Transform - - uid: 8398 - components: - - pos: -63.5,54.5 - parent: 1 - type: Transform - - uid: 8399 - components: - - pos: -64.5,54.5 - parent: 1 - type: Transform - - uid: 8400 - components: - - pos: -61.5,53.5 - parent: 1 - type: Transform - - uid: 8401 - components: - - pos: -61.5,52.5 - parent: 1 - type: Transform - - uid: 8402 - components: - - pos: -61.5,51.5 - parent: 1 - type: Transform - - uid: 8403 - components: - - pos: -61.5,50.5 - parent: 1 - type: Transform - - uid: 8404 - components: - - pos: -53.5,54.5 - parent: 1 - type: Transform - - uid: 8405 - components: - - pos: -52.5,54.5 - parent: 1 - type: Transform - - uid: 8406 - components: - - pos: -51.5,54.5 - parent: 1 - type: Transform - - uid: 8407 - components: - - pos: -50.5,54.5 - parent: 1 - type: Transform - - uid: 8408 - components: - - pos: -49.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8409 - components: - - pos: -48.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8410 - components: - - pos: -47.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8411 - components: - - pos: -47.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8412 - components: - - pos: -47.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8413 - components: - - pos: -47.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8414 - components: - - pos: -47.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8415 - components: - - pos: -50.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8416 - components: - - pos: -50.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8417 - components: - - pos: -50.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8418 - components: - - pos: -50.5,53.5 - parent: 1 - type: Transform - - uid: 8419 - components: - - pos: -53.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8420 - components: - - pos: -53.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8421 - components: - - pos: -53.5,49.5 - parent: 1 - type: Transform - - uid: 8422 - components: - - pos: -54.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8424 - components: - - pos: -57.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8425 - components: - - pos: -56.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8426 - components: - - pos: -48.5,43.5 - parent: 1 - type: Transform - - uid: 8427 - components: - - pos: -47.5,43.5 - parent: 1 - type: Transform - - uid: 8428 - components: - - pos: -47.5,42.5 - parent: 1 - type: Transform - - uid: 8429 - components: - - pos: -47.5,49.5 - parent: 1 - type: Transform - - uid: 8430 - components: - - pos: -56.5,50.5 - parent: 1 - type: Transform - - uid: 8431 - components: - - pos: -56.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8432 - components: - - pos: -53.5,56.5 - parent: 1 - type: Transform - - uid: 8433 - components: - - pos: -52.5,56.5 - parent: 1 - type: Transform - - uid: 8434 - components: - - pos: -51.5,56.5 - parent: 1 - type: Transform - - uid: 8435 - components: - - pos: -51.5,57.5 - parent: 1 - type: Transform - - uid: 8436 - components: - - pos: -51.5,58.5 - parent: 1 - type: Transform - - uid: 8437 - components: - - pos: -58.5,57.5 - parent: 1 - type: Transform - - uid: 8438 - components: - - pos: -59.5,57.5 - parent: 1 - type: Transform - - uid: 8439 - components: - - pos: -60.5,57.5 - parent: 1 - type: Transform - - uid: 8440 - components: - - pos: -49.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8441 - components: - - pos: -50.5,63.5 - parent: 1 - type: Transform - - uid: 8442 - components: - - pos: -51.5,63.5 - parent: 1 - type: Transform - - uid: 8443 - components: - - pos: -51.5,62.5 - parent: 1 - type: Transform - - uid: 8444 - components: - - pos: -51.5,61.5 - parent: 1 - type: Transform - - uid: 8445 - components: - - pos: -52.5,61.5 - parent: 1 - type: Transform - - uid: 8446 - components: - - pos: -53.5,61.5 - parent: 1 - type: Transform - - uid: 8447 - components: - - pos: -54.5,61.5 - parent: 1 - type: Transform - - uid: 8448 - components: - - pos: -55.5,61.5 - parent: 1 - type: Transform - - uid: 8449 - components: - - pos: -56.5,61.5 - parent: 1 - type: Transform - - uid: 8450 - components: - - pos: -57.5,61.5 - parent: 1 - type: Transform - - uid: 8451 - components: - - pos: -58.5,61.5 - parent: 1 - type: Transform - - uid: 8452 - components: - - pos: -59.5,61.5 - parent: 1 - type: Transform - - uid: 8453 - components: - - pos: -60.5,61.5 - parent: 1 - type: Transform - - uid: 8454 - components: - - pos: -61.5,61.5 - parent: 1 - type: Transform - - uid: 8455 - components: - - pos: -61.5,60.5 - parent: 1 - type: Transform - - uid: 8456 - components: - - pos: -62.5,60.5 - parent: 1 - type: Transform - - uid: 8457 - components: - - pos: -63.5,60.5 - parent: 1 - type: Transform - - uid: 8458 - components: - - pos: -63.5,59.5 - parent: 1 - type: Transform - - uid: 8459 - components: - - pos: -63.5,58.5 - parent: 1 - type: Transform - - uid: 8460 - components: - - pos: -50.5,61.5 - parent: 1 - type: Transform - - uid: 8461 - components: - - pos: -49.5,61.5 - parent: 1 - type: Transform - - uid: 8462 - components: - - pos: -48.5,61.5 - parent: 1 - type: Transform - - uid: 8463 - components: - - pos: -47.5,61.5 - parent: 1 - type: Transform - - uid: 8464 - components: - - pos: -47.5,60.5 - parent: 1 - type: Transform - - uid: 8465 - components: - - pos: -47.5,59.5 - parent: 1 - type: Transform - - uid: 8466 - components: - - pos: -47.5,58.5 - parent: 1 - type: Transform - - uid: 8467 - components: - - pos: -47.5,57.5 - parent: 1 - type: Transform - - uid: 8468 - components: - - pos: -51.5,64.5 - parent: 1 - type: Transform - - uid: 8469 - components: - - pos: -51.5,65.5 - parent: 1 - type: Transform - - uid: 8470 - components: - - pos: -50.5,65.5 - parent: 1 - type: Transform - - uid: 8471 - components: - - pos: -49.5,65.5 - parent: 1 - type: Transform - - uid: 8472 - components: - - pos: -48.5,65.5 - parent: 1 - type: Transform - - uid: 8473 - components: - - pos: -47.5,65.5 - parent: 1 - type: Transform - - uid: 8475 - components: - - pos: -46.5,65.5 - parent: 1 - type: Transform - - uid: 8476 - components: - - pos: -45.5,65.5 - parent: 1 - type: Transform - - uid: 8477 - components: - - pos: -44.5,65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8478 - components: - - pos: -43.5,65.5 - parent: 1 - type: Transform - - uid: 8479 - components: - - pos: -42.5,65.5 - parent: 1 - type: Transform - - uid: 8480 - components: - - pos: -42.5,64.5 - parent: 1 - type: Transform - - uid: 8481 - components: - - pos: -42.5,63.5 - parent: 1 - type: Transform - - uid: 8482 - components: - - pos: -42.5,62.5 - parent: 1 - type: Transform - - uid: 8483 - components: - - pos: -52.5,65.5 - parent: 1 - type: Transform - - uid: 8484 - components: - - pos: -52.5,66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8485 - components: - - pos: -52.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8486 - components: - - pos: -52.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8487 - components: - - pos: -52.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8488 - components: - - pos: -50.5,66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8489 - components: - - pos: -50.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8490 - components: - - pos: -50.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8491 - components: - - pos: -50.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8492 - components: - - pos: -49.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8493 - components: - - pos: -48.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8494 - components: - - pos: -47.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8495 - components: - - pos: -55.5,62.5 - parent: 1 - type: Transform - - uid: 8496 - components: - - pos: -55.5,63.5 - parent: 1 - type: Transform - - uid: 8497 - components: - - pos: -55.5,64.5 - parent: 1 - type: Transform - - uid: 8498 - components: - - pos: -59.5,62.5 - parent: 1 - type: Transform - - uid: 8499 - components: - - pos: -59.5,63.5 - parent: 1 - type: Transform - - uid: 8500 - components: - - pos: -59.5,64.5 - parent: 1 - type: Transform - - uid: 8501 - components: - - pos: -59.5,65.5 - parent: 1 - type: Transform - - uid: 8502 - components: - - pos: -58.5,66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8503 - components: - - pos: -59.5,66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8519 - components: - - pos: -60.5,66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8520 - components: - - pos: -61.5,66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8521 - components: - - pos: -58.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8522 - components: - - pos: -56.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8523 - components: - - pos: -54.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8524 - components: - - pos: -53.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8525 - components: - - pos: -55.5,65.5 - parent: 1 - type: Transform - - uid: 8526 - components: - - pos: -53.5,64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8527 - components: - - pos: -53.5,65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8528 - components: - - pos: -56.5,66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8529 - components: - - pos: -55.5,66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8530 - components: - - pos: -54.5,66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8531 - components: - - pos: -48.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8532 - components: - - pos: -47.5,63.5 - parent: 1 - type: Transform - - uid: 8533 - components: - - pos: -46.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8534 - components: - - pos: -55.5,57.5 - parent: 1 - type: Transform - - uid: 8535 - components: - - pos: -55.5,58.5 - parent: 1 - type: Transform - - uid: 8536 - components: - - pos: -55.5,59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8537 - components: - - pos: -56.5,59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8538 - components: - - pos: -54.5,59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8539 - components: - - pos: -47.5,56.5 - parent: 1 - type: Transform - - uid: 8540 - components: - - pos: -48.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8541 - components: - - pos: -46.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9020 - components: - - pos: 19.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9346 - components: - - pos: -57.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9347 - components: - - pos: -57.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9348 - components: - - pos: -57.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9349 - components: - - pos: -57.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9350 - components: - - pos: -57.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9351 - components: - - pos: -57.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9352 - components: - - pos: -57.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9353 - components: - - pos: -57.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9354 - components: - - pos: -57.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9355 - components: - - pos: -57.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9356 - components: - - pos: -57.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9357 - components: - - pos: -56.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9358 - components: - - pos: -55.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9359 - components: - - pos: -54.5,39.5 - parent: 1 - type: Transform - - uid: 9360 - components: - - pos: -54.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9361 - components: - - pos: -54.5,41.5 - parent: 1 - type: Transform - - uid: 9362 - components: - - pos: -54.5,42.5 - parent: 1 - type: Transform - - uid: 9363 - components: - - pos: -54.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9364 - components: - - pos: -53.5,43.5 - parent: 1 - type: Transform - - uid: 9365 - components: - - pos: -52.5,43.5 - parent: 1 - type: Transform - - uid: 9366 - components: - - pos: -51.5,43.5 - parent: 1 - type: Transform - - uid: 9367 - components: - - pos: -50.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9368 - components: - - pos: -49.5,43.5 - parent: 1 - type: Transform - - uid: 9369 - components: - - pos: -53.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9370 - components: - - pos: -52.5,41.5 - parent: 1 - type: Transform - - uid: 9371 - components: - - pos: -52.5,40.5 - parent: 1 - type: Transform - - uid: 9372 - components: - - pos: -52.5,39.5 - parent: 1 - type: Transform - - uid: 9373 - components: - - pos: -52.5,38.5 - parent: 1 - type: Transform - - uid: 9374 - components: - - pos: -52.5,37.5 - parent: 1 - type: Transform - - uid: 9375 - components: - - pos: -52.5,36.5 - parent: 1 - type: Transform - - uid: 9376 - components: - - pos: -52.5,35.5 - parent: 1 - type: Transform - - uid: 9418 - components: - - pos: -31.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9419 - components: - - pos: -31.5,47.5 - parent: 1 - type: Transform - - uid: 9420 - components: - - pos: -31.5,46.5 - parent: 1 - type: Transform - - uid: 9421 - components: - - pos: -31.5,45.5 - parent: 1 - type: Transform - - uid: 9422 - components: - - pos: -31.5,44.5 - parent: 1 - type: Transform - - uid: 9423 - components: - - pos: -31.5,43.5 - parent: 1 - type: Transform - - uid: 9424 - components: - - pos: -30.5,46.5 - parent: 1 - type: Transform - - uid: 9425 - components: - - pos: -29.5,46.5 - parent: 1 - type: Transform - - uid: 9426 - components: - - pos: -28.5,46.5 - parent: 1 - type: Transform - - uid: 9427 - components: - - pos: -27.5,46.5 - parent: 1 - type: Transform - - uid: 9428 - components: - - pos: -32.5,43.5 - parent: 1 - type: Transform - - uid: 9429 - components: - - pos: -33.5,43.5 - parent: 1 - type: Transform - - uid: 9430 - components: - - pos: -34.5,43.5 - parent: 1 - type: Transform - - uid: 9431 - components: - - pos: -35.5,43.5 - parent: 1 - type: Transform - - uid: 9432 - components: - - pos: -36.5,43.5 - parent: 1 - type: Transform - - uid: 9433 - components: - - pos: -37.5,43.5 - parent: 1 - type: Transform - - uid: 9434 - components: - - pos: -38.5,43.5 - parent: 1 - type: Transform - - uid: 9435 - components: - - pos: -39.5,43.5 - parent: 1 - type: Transform - - uid: 9436 - components: - - pos: -40.5,43.5 - parent: 1 - type: Transform - - uid: 9437 - components: - - pos: -41.5,43.5 - parent: 1 - type: Transform - - uid: 9438 - components: - - pos: -42.5,43.5 - parent: 1 - type: Transform - - uid: 9439 - components: - - pos: -43.5,43.5 - parent: 1 - type: Transform - - uid: 9440 - components: - - pos: -44.5,43.5 - parent: 1 - type: Transform - - uid: 9441 - components: - - pos: -40.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9442 - components: - - pos: -40.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9443 - components: - - pos: -36.5,42.5 - parent: 1 - type: Transform - - uid: 9444 - components: - - pos: -36.5,44.5 - parent: 1 - type: Transform - - uid: 9445 - components: - - pos: -36.5,45.5 - parent: 1 - type: Transform - - uid: 9446 - components: - - pos: -36.5,46.5 - parent: 1 - type: Transform - - uid: 9447 - components: - - pos: -33.5,44.5 - parent: 1 - type: Transform - - uid: 9448 - components: - - pos: -33.5,45.5 - parent: 1 - type: Transform - - uid: 9449 - components: - - pos: -33.5,46.5 - parent: 1 - type: Transform - - uid: 9450 - components: - - pos: -44.5,44.5 - parent: 1 - type: Transform - - uid: 9451 - components: - - pos: -44.5,45.5 - parent: 1 - type: Transform - - uid: 9452 - components: - - pos: -44.5,46.5 - parent: 1 - type: Transform - - uid: 9453 - components: - - pos: -40.5,44.5 - parent: 1 - type: Transform - - uid: 9454 - components: - - pos: -40.5,45.5 - parent: 1 - type: Transform - - uid: 9455 - components: - - pos: -40.5,46.5 - parent: 1 - type: Transform - - uid: 9456 - components: - - pos: -40.5,47.5 - parent: 1 - type: Transform - - uid: 9457 - components: - - pos: -40.5,48.5 - parent: 1 - type: Transform - - uid: 9458 - components: - - pos: -40.5,49.5 - parent: 1 - type: Transform - - uid: 9459 - components: - - pos: -40.5,50.5 - parent: 1 - type: Transform - - uid: 9460 - components: - - pos: -41.5,50.5 - parent: 1 - type: Transform - - uid: 9461 - components: - - pos: -42.5,50.5 - parent: 1 - type: Transform - - uid: 9471 - components: - - pos: -41.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9472 - components: - - pos: -40.5,55.5 - parent: 1 - type: Transform - - uid: 9473 - components: - - pos: -39.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9474 - components: - - pos: -38.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9475 - components: - - pos: -37.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9476 - components: - - pos: -31.5,49.5 - parent: 1 - type: Transform - - uid: 9477 - components: - - pos: -31.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9478 - components: - - pos: -31.5,51.5 - parent: 1 - type: Transform - - uid: 9479 - components: - - pos: -31.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9480 - components: - - pos: -31.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9481 - components: - - pos: -31.5,54.5 - parent: 1 - type: Transform - - uid: 9482 - components: - - pos: -30.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9483 - components: - - pos: -29.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9484 - components: - - pos: -28.5,50.5 - parent: 1 - type: Transform - - uid: 9485 - components: - - pos: -27.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9486 - components: - - pos: -26.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9487 - components: - - pos: -25.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9488 - components: - - pos: -24.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9490 - components: - - pos: -18.5,53.5 - parent: 1 - type: Transform - - uid: 9491 - components: - - pos: -21.5,53.5 - parent: 1 - type: Transform - - uid: 9492 - components: - - pos: -12.5,54.5 - parent: 1 - type: Transform - - uid: 9493 - components: - - pos: -12.5,53.5 - parent: 1 - type: Transform - - uid: 9496 - components: - - pos: -23.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9497 - components: - - pos: -22.5,40.5 - parent: 1 - type: Transform - - uid: 9498 - components: - - pos: -21.5,40.5 - parent: 1 - type: Transform - - uid: 9499 - components: - - pos: -20.5,40.5 - parent: 1 - type: Transform - - uid: 9500 - components: - - pos: -20.5,39.5 - parent: 1 - type: Transform - - uid: 9501 - components: - - pos: -20.5,38.5 - parent: 1 - type: Transform - - uid: 9502 - components: - - pos: -20.5,37.5 - parent: 1 - type: Transform - - uid: 9503 - components: - - pos: -20.5,41.5 - parent: 1 - type: Transform - - uid: 9504 - components: - - pos: -20.5,42.5 - parent: 1 - type: Transform - - uid: 9505 - components: - - pos: -20.5,43.5 - parent: 1 - type: Transform - - uid: 9506 - components: - - pos: -20.5,44.5 - parent: 1 - type: Transform - - uid: 9507 - components: - - pos: -20.5,45.5 - parent: 1 - type: Transform - - uid: 9508 - components: - - pos: -20.5,46.5 - parent: 1 - type: Transform - - uid: 9509 - components: - - pos: -20.5,47.5 - parent: 1 - type: Transform - - uid: 9510 - components: - - pos: -20.5,48.5 - parent: 1 - type: Transform - - uid: 9511 - components: - - pos: -19.5,45.5 - parent: 1 - type: Transform - - uid: 9512 - components: - - pos: -18.5,45.5 - parent: 1 - type: Transform - - uid: 9513 - components: - - pos: -17.5,45.5 - parent: 1 - type: Transform - - uid: 9514 - components: - - pos: -16.5,45.5 - parent: 1 - type: Transform - - uid: 9515 - components: - - pos: -16.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9516 - components: - - pos: -16.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9517 - components: - - pos: -15.5,47.5 - parent: 1 - type: Transform - - uid: 9518 - components: - - pos: -14.5,47.5 - parent: 1 - type: Transform - - uid: 9519 - components: - - pos: -13.5,47.5 - parent: 1 - type: Transform - - uid: 9520 - components: - - pos: -12.5,47.5 - parent: 1 - type: Transform - - uid: 9521 - components: - - pos: -11.5,47.5 - parent: 1 - type: Transform - - uid: 9522 - components: - - pos: -10.5,47.5 - parent: 1 - type: Transform - - uid: 9523 - components: - - pos: -16.5,44.5 - parent: 1 - type: Transform - - uid: 9524 - components: - - pos: -16.5,43.5 - parent: 1 - type: Transform - - uid: 9525 - components: - - pos: -16.5,42.5 - parent: 1 - type: Transform - - uid: 9526 - components: - - pos: -16.5,41.5 - parent: 1 - type: Transform - - uid: 9527 - components: - - pos: -16.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9528 - components: - - pos: -16.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9529 - components: - - pos: -16.5,38.5 - parent: 1 - type: Transform - - uid: 9530 - components: - - pos: -16.5,37.5 - parent: 1 - type: Transform - - uid: 9531 - components: - - pos: -16.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9532 - components: - - pos: -24.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9533 - components: - - pos: -24.5,39.5 - parent: 1 - type: Transform - - uid: 9534 - components: - - pos: -24.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9535 - components: - - pos: -24.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9536 - components: - - pos: -24.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9537 - components: - - pos: -24.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9538 - components: - - pos: -24.5,34.5 - parent: 1 - type: Transform - - uid: 9539 - components: - - pos: -16.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9540 - components: - - pos: -16.5,34.5 - parent: 1 - type: Transform - - uid: 9541 - components: - - pos: -16.5,33.5 - parent: 1 - type: Transform - - uid: 9542 - components: - - pos: -16.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9558 - components: - - pos: -26.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9559 - components: - - pos: -27.5,38.5 - parent: 1 - type: Transform - - uid: 9560 - components: - - pos: -27.5,37.5 - parent: 1 - type: Transform - - uid: 9561 - components: - - pos: -28.5,37.5 - parent: 1 - type: Transform - - uid: 9562 - components: - - pos: -29.5,37.5 - parent: 1 - type: Transform - - uid: 9563 - components: - - pos: -30.5,37.5 - parent: 1 - type: Transform - - uid: 9564 - components: - - pos: -31.5,37.5 - parent: 1 - type: Transform - - uid: 9565 - components: - - pos: -32.5,37.5 - parent: 1 - type: Transform - - uid: 9566 - components: - - pos: -33.5,37.5 - parent: 1 - type: Transform - - uid: 9567 - components: - - pos: -34.5,37.5 - parent: 1 - type: Transform - - uid: 9568 - components: - - pos: -35.5,37.5 - parent: 1 - type: Transform - - uid: 9569 - components: - - pos: -36.5,37.5 - parent: 1 - type: Transform - - uid: 9570 - components: - - pos: -37.5,37.5 - parent: 1 - type: Transform - - uid: 9571 - components: - - pos: -38.5,37.5 - parent: 1 - type: Transform - - uid: 9572 - components: - - pos: -39.5,37.5 - parent: 1 - type: Transform - - uid: 9574 - components: - - pos: -41.5,37.5 - parent: 1 - type: Transform - - uid: 9575 - components: - - pos: -42.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9576 - components: - - pos: -43.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9577 - components: - - pos: -44.5,37.5 - parent: 1 - type: Transform - - uid: 9578 - components: - - pos: -32.5,38.5 - parent: 1 - type: Transform - - uid: 9579 - components: - - pos: -32.5,36.5 - parent: 1 - type: Transform - - uid: 9580 - components: - - pos: -36.5,38.5 - parent: 1 - type: Transform - - uid: 9581 - components: - - pos: -36.5,36.5 - parent: 1 - type: Transform - - uid: 9582 - components: - - pos: -36.5,35.5 - parent: 1 - type: Transform - - uid: 9583 - components: - - pos: -38.5,36.5 - parent: 1 - type: Transform - - uid: 9584 - components: - - pos: -38.5,35.5 - parent: 1 - type: Transform - - uid: 9585 - components: - - pos: -38.5,38.5 - parent: 1 - type: Transform - - uid: 9586 - components: - - pos: -32.5,35.5 - parent: 1 - type: Transform - - uid: 9640 - components: - - pos: -70.5,33.5 - parent: 1 - type: Transform - - uid: 10058 - components: - - pos: -15.5,14.5 - parent: 1 - type: Transform - - uid: 10071 - components: - - pos: 21.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10155 - components: - - pos: -51.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10264 - components: - - pos: -33.5,-8.5 - parent: 1 - type: Transform - - uid: 10269 - components: - - pos: -33.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10280 - components: - - pos: -33.5,-6.5 - parent: 1 - type: Transform - - uid: 10295 - components: - - pos: -34.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10397 - components: - - pos: -36.5,-6.5 - parent: 1 - type: Transform - - uid: 10399 - components: - - pos: -31.5,-6.5 - parent: 1 - type: Transform - - uid: 10404 - components: - - pos: -32.5,-6.5 - parent: 1 - type: Transform - - uid: 10410 - components: - - pos: 23.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10413 - components: - - pos: 24.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10414 - components: - - pos: 24.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10415 - components: - - pos: 17.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10424 - components: - - pos: 18.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10425 - components: - - pos: 19.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10429 - components: - - pos: 22.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10431 - components: - - pos: 16.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10432 - components: - - pos: 19.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10433 - components: - - pos: 24.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10434 - components: - - pos: 24.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10435 - components: - - pos: 24.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10999 - components: - - pos: -65.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11000 - components: - - pos: -64.5,44.5 - parent: 1 - type: Transform - - uid: 11001 - components: - - pos: -63.5,44.5 - parent: 1 - type: Transform - - uid: 11002 - components: - - pos: -62.5,44.5 - parent: 1 - type: Transform - - uid: 11003 - components: - - pos: -61.5,44.5 - parent: 1 - type: Transform - - uid: 11004 - components: - - pos: -60.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11005 - components: - - pos: -59.5,44.5 - parent: 1 - type: Transform - - uid: 11006 - components: - - pos: -58.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11007 - components: - - pos: -57.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11008 - components: - - pos: -62.5,43.5 - parent: 1 - type: Transform - - uid: 11009 - components: - - pos: -62.5,42.5 - parent: 1 - type: Transform - - uid: 11010 - components: - - pos: -62.5,41.5 - parent: 1 - type: Transform - - uid: 11011 - components: - - pos: -62.5,40.5 - parent: 1 - type: Transform - - uid: 11012 - components: - - pos: -62.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11015 - components: - - pos: -66.5,44.5 - parent: 1 - type: Transform - - uid: 11016 - components: - - pos: -66.5,45.5 - parent: 1 - type: Transform - - uid: 11017 - components: - - pos: -66.5,46.5 - parent: 1 - type: Transform - - uid: 11018 - components: - - pos: -66.5,47.5 - parent: 1 - type: Transform - - uid: 11019 - components: - - pos: -67.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11020 - components: - - pos: -68.5,47.5 - parent: 1 - type: Transform - - uid: 11021 - components: - - pos: -69.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11022 - components: - - pos: -70.5,47.5 - parent: 1 - type: Transform - - uid: 11023 - components: - - pos: -66.5,43.5 - parent: 1 - type: Transform - - uid: 11024 - components: - - pos: -66.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11025 - components: - - pos: -66.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11026 - components: - - pos: -66.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11027 - components: - - pos: -67.5,40.5 - parent: 1 - type: Transform - - uid: 11028 - components: - - pos: -68.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11029 - components: - - pos: -69.5,40.5 - parent: 1 - type: Transform - - uid: 11030 - components: - - pos: -70.5,40.5 - parent: 1 - type: Transform - - uid: 11031 - components: - - pos: -71.5,40.5 - parent: 1 - type: Transform - - uid: 11032 - components: - - pos: -71.5,41.5 - parent: 1 - type: Transform - - uid: 11033 - components: - - pos: -71.5,42.5 - parent: 1 - type: Transform - - uid: 11034 - components: - - pos: -71.5,43.5 - parent: 1 - type: Transform - - uid: 11035 - components: - - pos: -71.5,44.5 - parent: 1 - type: Transform - - uid: 11036 - components: - - pos: -66.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11037 - components: - - pos: -66.5,49.5 - parent: 1 - type: Transform - - uid: 11038 - components: - - pos: -66.5,50.5 - parent: 1 - type: Transform - - uid: 11039 - components: - - pos: -67.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11040 - components: - - pos: -67.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11041 - components: - - pos: -67.5,52.5 - parent: 1 - type: Transform - - uid: 11042 - components: - - pos: -68.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11043 - components: - - pos: -69.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11044 - components: - - pos: -70.5,52.5 - parent: 1 - type: Transform - - uid: 11045 - components: - - pos: -71.5,52.5 - parent: 1 - type: Transform - - uid: 11046 - components: - - pos: -71.5,53.5 - parent: 1 - type: Transform - - uid: 11047 - components: - - pos: -71.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11048 - components: - - pos: -71.5,55.5 - parent: 1 - type: Transform - - uid: 11160 - components: - - pos: -75.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11161 - components: - - pos: -74.5,21.5 - parent: 1 - type: Transform - - uid: 11162 - components: - - pos: -73.5,21.5 - parent: 1 - type: Transform - - uid: 11163 - components: - - pos: -72.5,21.5 - parent: 1 - type: Transform - - uid: 11164 - components: - - pos: -71.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11165 - components: - - pos: -70.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11166 - components: - - pos: -69.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11173 - components: - - pos: -68.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11174 - components: - - pos: -67.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11322 - components: - - pos: -66.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11323 - components: - - pos: -65.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11324 - components: - - pos: -64.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11325 - components: - - pos: -74.5,22.5 - parent: 1 - type: Transform - - uid: 11326 - components: - - pos: -74.5,23.5 - parent: 1 - type: Transform - - uid: 11327 - components: - - pos: -74.5,24.5 - parent: 1 - type: Transform - - uid: 11328 - components: - - pos: -74.5,25.5 - parent: 1 - type: Transform - - uid: 11329 - components: - - pos: -75.5,25.5 - parent: 1 - type: Transform - - uid: 11330 - components: - - pos: -76.5,25.5 - parent: 1 - type: Transform - - uid: 11331 - components: - - pos: -77.5,25.5 - parent: 1 - type: Transform - - uid: 11332 - components: - - pos: -78.5,25.5 - parent: 1 - type: Transform - - uid: 11333 - components: - - pos: -79.5,25.5 - parent: 1 - type: Transform - - uid: 11334 - components: - - pos: -79.5,24.5 - parent: 1 - type: Transform - - uid: 11335 - components: - - pos: -79.5,23.5 - parent: 1 - type: Transform - - uid: 11336 - components: - - pos: -79.5,22.5 - parent: 1 - type: Transform - - uid: 11337 - components: - - pos: -79.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11338 - components: - - pos: -79.5,20.5 - parent: 1 - type: Transform - - uid: 11339 - components: - - pos: -79.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11340 - components: - - pos: -80.5,19.5 - parent: 1 - type: Transform - - uid: 11341 - components: - - pos: -81.5,19.5 - parent: 1 - type: Transform - - uid: 11342 - components: - - pos: -78.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11343 - components: - - pos: -77.5,19.5 - parent: 1 - type: Transform - - uid: 11344 - components: - - pos: -80.5,23.5 - parent: 1 - type: Transform - - uid: 11345 - components: - - pos: -81.5,23.5 - parent: 1 - type: Transform - - uid: 11346 - components: - - pos: -82.5,23.5 - parent: 1 - type: Transform - - uid: 11347 - components: - - pos: -83.5,23.5 - parent: 1 - type: Transform - - uid: 11348 - components: - - pos: -84.5,23.5 - parent: 1 - type: Transform - - uid: 11349 - components: - - pos: -84.5,22.5 - parent: 1 - type: Transform - - uid: 11350 - components: - - pos: -84.5,21.5 - parent: 1 - type: Transform - - uid: 11351 - components: - - pos: -84.5,20.5 - parent: 1 - type: Transform - - uid: 11352 - components: - - pos: -79.5,26.5 - parent: 1 - type: Transform - - uid: 11353 - components: - - pos: -79.5,27.5 - parent: 1 - type: Transform - - uid: 11354 - components: - - pos: -80.5,27.5 - parent: 1 - type: Transform - - uid: 11355 - components: - - pos: -81.5,27.5 - parent: 1 - type: Transform - - uid: 11356 - components: - - pos: -82.5,27.5 - parent: 1 - type: Transform - - uid: 11357 - components: - - pos: -83.5,27.5 - parent: 1 - type: Transform - - uid: 11358 - components: - - pos: -84.5,27.5 - parent: 1 - type: Transform - - uid: 11359 - components: - - pos: -84.5,28.5 - parent: 1 - type: Transform - - uid: 11360 - components: - - pos: -84.5,29.5 - parent: 1 - type: Transform - - uid: 11361 - components: - - pos: -84.5,30.5 - parent: 1 - type: Transform - - uid: 11362 - components: - - pos: -74.5,26.5 - parent: 1 - type: Transform - - uid: 11363 - components: - - pos: -74.5,27.5 - parent: 1 - type: Transform - - uid: 11364 - components: - - pos: -74.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11365 - components: - - pos: -74.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11366 - components: - - pos: -74.5,20.5 - parent: 1 - type: Transform - - uid: 11367 - components: - - pos: -74.5,19.5 - parent: 1 - type: Transform - - uid: 11368 - components: - - pos: -74.5,18.5 - parent: 1 - type: Transform - - uid: 11369 - components: - - pos: -74.5,17.5 - parent: 1 - type: Transform - - uid: 11370 - components: - - pos: -74.5,16.5 - parent: 1 - type: Transform - - uid: 11371 - components: - - pos: -73.5,16.5 - parent: 1 - type: Transform - - uid: 11372 - components: - - pos: -72.5,16.5 - parent: 1 - type: Transform - - uid: 11373 - components: - - pos: -71.5,16.5 - parent: 1 - type: Transform - - uid: 11374 - components: - - pos: -70.5,16.5 - parent: 1 - type: Transform - - uid: 11375 - components: - - pos: -69.5,16.5 - parent: 1 - type: Transform - - uid: 11376 - components: - - pos: -60.5,6.5 - parent: 1 - type: Transform - - uid: 11377 - components: - - pos: -60.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11378 - components: - - pos: -60.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11379 - components: - - pos: -61.5,8.5 - parent: 1 - type: Transform - - uid: 11380 - components: - - pos: -62.5,8.5 - parent: 1 - type: Transform - - uid: 11381 - components: - - pos: -63.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11382 - components: - - pos: -64.5,8.5 - parent: 1 - type: Transform - - uid: 11383 - components: - - pos: -65.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11384 - components: - - pos: -66.5,8.5 - parent: 1 - type: Transform - - uid: 11385 - components: - - pos: -66.5,9.5 - parent: 1 - type: Transform - - uid: 11386 - components: - - pos: -66.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11387 - components: - - pos: -66.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11388 - components: - - pos: -66.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11389 - components: - - pos: -66.5,13.5 - parent: 1 - type: Transform - - uid: 11390 - components: - - pos: -66.5,14.5 - parent: 1 - type: Transform - - uid: 11391 - components: - - pos: -66.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11392 - components: - - pos: -66.5,16.5 - parent: 1 - type: Transform - - uid: 11393 - components: - - pos: -65.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11394 - components: - - pos: -64.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11395 - components: - - pos: -63.5,16.5 - parent: 1 - type: Transform - - uid: 11396 - components: - - pos: -68.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11397 - components: - - pos: -68.5,34.5 - parent: 1 - type: Transform - - uid: 11398 - components: - - pos: -68.5,33.5 - parent: 1 - type: Transform - - uid: 11399 - components: - - pos: -67.5,33.5 - parent: 1 - type: Transform - - uid: 11400 - components: - - pos: -66.5,33.5 - parent: 1 - type: Transform - - uid: 11401 - components: - - pos: -65.5,33.5 - parent: 1 - type: Transform - - uid: 11402 - components: - - pos: -64.5,33.5 - parent: 1 - type: Transform - - uid: 11403 - components: - - pos: -64.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11404 - components: - - pos: -63.5,32.5 - parent: 1 - type: Transform - - uid: 11405 - components: - - pos: -62.5,32.5 - parent: 1 - type: Transform - - uid: 11406 - components: - - pos: -61.5,32.5 - parent: 1 - type: Transform - - uid: 11407 - components: - - pos: -60.5,32.5 - parent: 1 - type: Transform - - uid: 11408 - components: - - pos: -64.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11409 - components: - - pos: -64.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11410 - components: - - pos: -64.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11411 - components: - - pos: -64.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11412 - components: - - pos: -64.5,27.5 - parent: 1 - type: Transform - - uid: 11413 - components: - - pos: -65.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11414 - components: - - pos: -66.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11415 - components: - - pos: -69.5,34.5 - parent: 1 - type: Transform - - uid: 11416 - components: - - pos: -70.5,34.5 - parent: 1 - type: Transform - - uid: 11417 - components: - - pos: -71.5,34.5 - parent: 1 - type: Transform - - uid: 11418 - components: - - pos: -72.5,34.5 - parent: 1 - type: Transform - - uid: 11419 - components: - - pos: -73.5,34.5 - parent: 1 - type: Transform - - uid: 11420 - components: - - pos: -74.5,34.5 - parent: 1 - type: Transform - - uid: 11421 - components: - - pos: -74.5,33.5 - parent: 1 - type: Transform - - uid: 11422 - components: - - pos: -74.5,32.5 - parent: 1 - type: Transform - - uid: 11423 - components: - - pos: -74.5,31.5 - parent: 1 - type: Transform - - uid: 11424 - components: - - pos: -76.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11425 - components: - - pos: -77.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11426 - components: - - pos: -78.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11432 - components: - - pos: -78.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11433 - components: - - pos: -78.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11434 - components: - - pos: -78.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11435 - components: - - pos: -78.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11436 - components: - - pos: -78.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11437 - components: - - pos: -78.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11438 - components: - - pos: -78.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11439 - components: - - pos: -78.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11440 - components: - - pos: -78.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11441 - components: - - pos: -78.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11442 - components: - - pos: -77.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11443 - components: - - pos: -77.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11445 - components: - - pos: -79.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11446 - components: - - pos: -80.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11447 - components: - - pos: -81.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11448 - components: - - pos: -82.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11449 - components: - - pos: -83.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11450 - components: - - pos: -84.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11451 - components: - - pos: -85.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11452 - components: - - pos: -85.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11453 - components: - - pos: -85.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11454 - components: - - pos: -85.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11455 - components: - - pos: -85.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11456 - components: - - pos: -85.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11457 - components: - - pos: -85.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11458 - components: - - pos: -85.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11459 - components: - - pos: -85.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11460 - components: - - pos: -85.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11461 - components: - - pos: -85.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11462 - components: - - pos: -85.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11463 - components: - - pos: -85.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11464 - components: - - pos: -85.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11465 - components: - - pos: -86.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11466 - components: - - pos: -87.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11467 - components: - - pos: -87.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11471 - components: - - pos: -87.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11472 - components: - - pos: -87.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11473 - components: - - pos: -87.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11474 - components: - - pos: -87.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11476 - components: - - pos: -87.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11477 - components: - - pos: -87.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11478 - components: - - pos: -87.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11479 - components: - - pos: -87.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11480 - components: - - pos: -87.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11481 - components: - - pos: -87.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11482 - components: - - pos: -87.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11483 - components: - - pos: -88.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11484 - components: - - pos: -89.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11485 - components: - - pos: -90.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11486 - components: - - pos: -91.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11487 - components: - - pos: -91.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11488 - components: - - pos: -91.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11490 - components: - - pos: -91.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11491 - components: - - pos: -91.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11492 - components: - - pos: -91.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11493 - components: - - pos: -91.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11494 - components: - - pos: -91.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11495 - components: - - pos: -91.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11496 - components: - - pos: -91.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11497 - components: - - pos: -91.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11498 - components: - - pos: -91.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11499 - components: - - pos: -91.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11500 - components: - - pos: -84.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11501 - components: - - pos: -84.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11502 - components: - - pos: -83.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11504 - components: - - pos: -82.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11505 - components: - - pos: -81.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11506 - components: - - pos: -80.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11507 - components: - - pos: -80.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11510 - components: - - pos: -84.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11512 - components: - - pos: -78.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11514 - components: - - pos: -78.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11575 - components: - - pos: -40.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11903 - components: - - pos: 22.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11917 - components: - - pos: 18.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12039 - components: - - pos: -78.5,33.5 - parent: 1 - type: Transform - - uid: 12221 - components: - - pos: -78.5,32.5 - parent: 1 - type: Transform - - uid: 12432 - components: - - pos: -78.5,31.5 - parent: 1 - type: Transform - - uid: 12501 - components: - - pos: -78.5,30.5 - parent: 1 - type: Transform - - uid: 12502 - components: - - pos: -78.5,29.5 - parent: 1 - type: Transform - - uid: 12505 - components: - - pos: -82.5,33.5 - parent: 1 - type: Transform - - uid: 13035 - components: - - pos: -82.5,32.5 - parent: 1 - type: Transform - - uid: 13036 - components: - - pos: -82.5,31.5 - parent: 1 - type: Transform - - uid: 13037 - components: - - pos: -82.5,30.5 - parent: 1 - type: Transform - - uid: 13038 - components: - - pos: -82.5,29.5 - parent: 1 - type: Transform - - uid: 13331 - components: - - pos: -0.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13332 - components: - - pos: -0.5,7.5 - parent: 1 - type: Transform - - uid: 13333 - components: - - pos: -0.5,8.5 - parent: 1 - type: Transform - - uid: 13334 - components: - - pos: -0.5,9.5 - parent: 1 - type: Transform - - uid: 13658 - components: - - pos: -51.5,36.5 - parent: 1 - type: Transform - - uid: 13659 - components: - - pos: -50.5,36.5 - parent: 1 - type: Transform - - uid: 13660 - components: - - pos: -49.5,36.5 - parent: 1 - type: Transform - - uid: 14005 - components: - - pos: -72.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14006 - components: - - pos: -73.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14039 - components: - - pos: -70.5,32.5 - parent: 1 - type: Transform - - uid: 14041 - components: - - pos: -70.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14042 - components: - - pos: -70.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14043 - components: - - pos: -70.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14044 - components: - - pos: -70.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14231 - components: - - pos: -73.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14232 - components: - - pos: -73.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15005 - components: - - pos: -74.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15006 - components: - - pos: -75.5,54.5 - parent: 1 - type: Transform - - uid: 15007 - components: - - pos: -76.5,54.5 - parent: 1 - type: Transform - - uid: 15050 - components: - - pos: -36.5,55.5 - parent: 1 - type: Transform - - uid: 15051 - components: - - pos: -35.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15052 - components: - - pos: -34.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15053 - components: - - pos: -33.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15054 - components: - - pos: -32.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15055 - components: - - pos: -31.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15056 - components: - - pos: -58.5,86.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15062 - components: - - pos: -46.5,-2.5 - parent: 1 - type: Transform - - uid: 15113 - components: - - pos: -31.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15237 - components: - - pos: 17.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15238 - components: - - pos: 17.5,48.5 - parent: 1 - type: Transform - - uid: 15239 - components: - - pos: 17.5,49.5 - parent: 1 - type: Transform - - uid: 15240 - components: - - pos: 17.5,50.5 - parent: 1 - type: Transform - - uid: 15241 - components: - - pos: 17.5,51.5 - parent: 1 - type: Transform - - uid: 15242 - components: - - pos: 16.5,51.5 - parent: 1 - type: Transform - - uid: 15243 - components: - - pos: 15.5,51.5 - parent: 1 - type: Transform - - uid: 15244 - components: - - pos: 14.5,51.5 - parent: 1 - type: Transform - - uid: 15245 - components: - - pos: 16.5,52.5 - parent: 1 - type: Transform - - uid: 15246 - components: - - pos: 13.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15247 - components: - - pos: 14.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15248 - components: - - pos: 15.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15249 - components: - - pos: 16.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15250 - components: - - pos: 17.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15251 - components: - - pos: 18.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15252 - components: - - pos: 19.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15253 - components: - - pos: 18.5,50.5 - parent: 1 - type: Transform - - uid: 15254 - components: - - pos: 19.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15255 - components: - - pos: 19.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15256 - components: - - pos: 19.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15257 - components: - - pos: 19.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15258 - components: - - pos: 19.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15282 - components: - - pos: 7.5,40.5 - parent: 1 - type: Transform - - uid: 15283 - components: - - pos: 7.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15284 - components: - - pos: 7.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15285 - components: - - pos: 7.5,43.5 - parent: 1 - type: Transform - - uid: 15286 - components: - - pos: 7.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15287 - components: - - pos: 7.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15288 - components: - - pos: 7.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15291 - components: - - pos: 10.5,33.5 - parent: 1 - type: Transform - - uid: 15380 - components: - - pos: -16.5,53.5 - parent: 1 - type: Transform - - uid: 15430 - components: - - pos: -41.5,63.5 - parent: 1 - type: Transform - - uid: 15431 - components: - - pos: -40.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15432 - components: - - pos: -42.5,61.5 - parent: 1 - type: Transform - - uid: 15433 - components: - - pos: -42.5,60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15434 - components: - - pos: -42.5,66.5 - parent: 1 - type: Transform - - uid: 15517 - components: - - pos: -5.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15518 - components: - - pos: -5.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15519 - components: - - pos: -5.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15845 - components: - - pos: 19.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15870 - components: - - pos: 12.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15871 - components: - - pos: 11.5,51.5 - parent: 1 - type: Transform - - uid: 15890 - components: - - pos: -24.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15891 - components: - - pos: -24.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15951 - components: - - pos: -51.5,31.5 - parent: 1 - type: Transform - - uid: 15952 - components: - - pos: -51.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15953 - components: - - pos: -52.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15954 - components: - - pos: -53.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15955 - components: - - pos: -50.5,28.5 - parent: 1 - type: Transform - - uid: 15956 - components: - - pos: -50.5,29.5 - parent: 1 - type: Transform - - uid: 15957 - components: - - pos: -50.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15987 - components: - - pos: -8.5,8.5 - parent: 1 - type: Transform - - uid: 15988 - components: - - pos: -17.5,9.5 - parent: 1 - type: Transform -- proto: CableApcStack - entities: - - uid: 2887 - components: - - pos: 25.496317,-7.99954 - parent: 1 - type: Transform - - uid: 3422 - components: - - pos: -53.87841,29.69635 - parent: 1 - type: Transform - - uid: 5643 - components: - - pos: -25.946909,26.643772 - parent: 1 - type: Transform - - uid: 15535 - components: - - pos: -4.5217714,-18.557777 - parent: 1 - type: Transform - - uid: 15990 - components: - - pos: -7.4238524,8.228333 - parent: 1 - type: Transform -- proto: CableApcStack1 - entities: - - uid: 13667 - components: - - pos: -17.665174,-14.392005 - parent: 1 - type: Transform - - count: 5 - type: Stack -- proto: Cablecuffs - entities: - - uid: 2258 - components: - - pos: 0.18249932,43.256775 - parent: 1 - type: Transform - - uid: 12773 - components: - - pos: 20.44684,28.601988 - parent: 1 - type: Transform -- proto: CableHV - entities: - - uid: 560 - components: - - pos: 4.5,5.5 - parent: 1 - type: Transform - - uid: 561 - components: - - pos: 4.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 562 - components: - - pos: 4.5,3.5 - parent: 1 - type: Transform - - uid: 563 - components: - - pos: 4.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 564 - components: - - pos: 4.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 565 - components: - - pos: 4.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 566 - components: - - pos: 4.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 567 - components: - - pos: 4.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 568 - components: - - pos: 4.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 569 - components: - - pos: 4.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 570 - components: - - pos: 4.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 571 - components: - - pos: 4.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 572 - components: - - pos: 5.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 573 - components: - - pos: 6.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 574 - components: - - pos: 7.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 594 - components: - - pos: 8.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 595 - components: - - pos: 9.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 596 - components: - - pos: 10.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 597 - components: - - pos: 11.5,-5.5 - parent: 1 - type: Transform - - uid: 598 - components: - - pos: 11.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 599 - components: - - pos: 11.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 728 - components: - - pos: 12.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 729 - components: - - pos: 13.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 730 - components: - - pos: 14.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 731 - components: - - pos: 15.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 732 - components: - - pos: 16.5,-5.5 - parent: 1 - type: Transform - - uid: 733 - components: - - pos: 17.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 734 - components: - - pos: 18.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 735 - components: - - pos: 19.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 736 - components: - - pos: 20.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 737 - components: - - pos: 21.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 738 - components: - - pos: 22.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 739 - components: - - pos: 23.5,-5.5 - parent: 1 - type: Transform - - uid: 740 - components: - - pos: 24.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 741 - components: - - pos: 25.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 742 - components: - - pos: 26.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 743 - components: - - pos: 27.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 744 - components: - - pos: 28.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 745 - components: - - pos: 28.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 746 - components: - - pos: 18.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 747 - components: - - pos: 28.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 750 - components: - - pos: 19.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 751 - components: - - pos: 20.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 752 - components: - - pos: 21.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 753 - components: - - pos: 22.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 754 - components: - - pos: 23.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 755 - components: - - pos: 24.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 756 - components: - - pos: 25.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 757 - components: - - pos: 26.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 758 - components: - - pos: 27.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 759 - components: - - pos: 18.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 760 - components: - - pos: 19.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 761 - components: - - pos: 20.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 762 - components: - - pos: 21.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 763 - components: - - pos: 22.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 764 - components: - - pos: 23.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 765 - components: - - pos: 24.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 766 - components: - - pos: 25.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 767 - components: - - pos: 26.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 768 - components: - - pos: 27.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 769 - components: - - pos: 19.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 770 - components: - - pos: 20.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 771 - components: - - pos: 21.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 772 - components: - - pos: 22.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 773 - components: - - pos: 23.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 774 - components: - - pos: 24.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 775 - components: - - pos: 25.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 776 - components: - - pos: 26.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 777 - components: - - pos: 27.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 778 - components: - - pos: 19.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 779 - components: - - pos: 20.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 780 - components: - - pos: 21.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 781 - components: - - pos: 22.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 782 - components: - - pos: 23.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 783 - components: - - pos: 24.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 784 - components: - - pos: 25.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 785 - components: - - pos: 26.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 786 - components: - - pos: 27.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 787 - components: - - pos: 20.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 788 - components: - - pos: 21.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 789 - components: - - pos: 22.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 790 - components: - - pos: 23.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 791 - components: - - pos: 24.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 792 - components: - - pos: 25.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 793 - components: - - pos: 26.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 794 - components: - - pos: 27.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 795 - components: - - pos: 20.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 796 - components: - - pos: 21.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 797 - components: - - pos: 22.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 798 - components: - - pos: 23.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 799 - components: - - pos: 24.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 800 - components: - - pos: 25.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 801 - components: - - pos: 26.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 802 - components: - - pos: 27.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 857 - components: - - pos: 28.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 858 - components: - - pos: 28.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 859 - components: - - pos: 28.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 903 - components: - - pos: 27.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 904 - components: - - pos: 27.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 905 - components: - - pos: 27.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 924 - components: - - pos: 25.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 925 - components: - - pos: 25.5,2.5 - parent: 1 - type: Transform - - uid: 926 - components: - - pos: 25.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 927 - components: - - pos: 26.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 928 - components: - - pos: 26.5,4.5 - parent: 1 - type: Transform - - uid: 929 - components: - - pos: 26.5,5.5 - parent: 1 - type: Transform - - uid: 988 - components: - - pos: 26.5,21.5 - parent: 1 - type: Transform - - uid: 990 - components: - - pos: 26.5,25.5 - parent: 1 - type: Transform - - uid: 991 - components: - - pos: 27.5,25.5 - parent: 1 - type: Transform - - uid: 992 - components: - - pos: 28.5,25.5 - parent: 1 - type: Transform - - uid: 993 - components: - - pos: 28.5,24.5 - parent: 1 - type: Transform - - uid: 1018 - components: - - pos: 26.5,22.5 - parent: 1 - type: Transform - - uid: 1029 - components: - - pos: 26.5,20.5 - parent: 1 - type: Transform - - uid: 1506 - components: - - pos: -18.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1534 - components: - - pos: 25.5,5.5 - parent: 1 - type: Transform - - uid: 1535 - components: - - pos: 24.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1536 - components: - - pos: 23.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1537 - components: - - pos: 22.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1538 - components: - - pos: 21.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1539 - components: - - pos: 20.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1540 - components: - - pos: 19.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1541 - components: - - pos: 18.5,5.5 - parent: 1 - type: Transform - - uid: 1542 - components: - - pos: 17.5,5.5 - parent: 1 - type: Transform - - uid: 1543 - components: - - pos: 16.5,5.5 - parent: 1 - type: Transform - - uid: 1544 - components: - - pos: 15.5,5.5 - parent: 1 - type: Transform - - uid: 1545 - components: - - pos: 14.5,5.5 - parent: 1 - type: Transform - - uid: 1546 - components: - - pos: 13.5,5.5 - parent: 1 - type: Transform - - uid: 1547 - components: - - pos: 12.5,5.5 - parent: 1 - type: Transform - - uid: 1548 - components: - - pos: 11.5,5.5 - parent: 1 - type: Transform - - uid: 1549 - components: - - pos: 10.5,5.5 - parent: 1 - type: Transform - - uid: 1550 - components: - - pos: 9.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1551 - components: - - pos: 8.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1552 - components: - - pos: 7.5,5.5 - parent: 1 - type: Transform - - uid: 1553 - components: - - pos: 6.5,5.5 - parent: 1 - type: Transform - - uid: 1554 - components: - - pos: 5.5,5.5 - parent: 1 - type: Transform - - uid: 1555 - components: - - pos: 22.5,6.5 - parent: 1 - type: Transform - - uid: 1556 - components: - - pos: 22.5,7.5 - parent: 1 - type: Transform - - uid: 1557 - components: - - pos: 22.5,8.5 - parent: 1 - type: Transform - - uid: 1558 - components: - - pos: 22.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1559 - components: - - pos: 23.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1561 - components: - - pos: 3.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1562 - components: - - pos: 2.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1563 - components: - - pos: 1.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1564 - components: - - pos: 0.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1565 - components: - - pos: -0.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1566 - components: - - pos: -1.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1567 - components: - - pos: -2.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1568 - components: - - pos: -3.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1569 - components: - - pos: -4.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1570 - components: - - pos: -5.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1571 - components: - - pos: -5.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1572 - components: - - pos: -5.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1573 - components: - - pos: -5.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1574 - components: - - pos: -5.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1575 - components: - - pos: -5.5,10.5 - parent: 1 - type: Transform - - uid: 1576 - components: - - pos: -5.5,11.5 - parent: 1 - type: Transform - - uid: 1577 - components: - - pos: -5.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1578 - components: - - pos: -5.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1579 - components: - - pos: -5.5,14.5 - parent: 1 - type: Transform - - uid: 1580 - components: - - pos: -5.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1581 - components: - - pos: -5.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1582 - components: - - pos: -5.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1583 - components: - - pos: -6.5,17.5 - parent: 1 - type: Transform - - uid: 1584 - components: - - pos: -7.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1585 - components: - - pos: -8.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1586 - components: - - pos: -9.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1587 - components: - - pos: -9.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2401 - components: - - pos: -22.5,61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2589 - components: - - pos: 28.5,23.5 - parent: 1 - type: Transform - - uid: 2777 - components: - - pos: -19.5,20.5 - parent: 1 - type: Transform - - uid: 2780 - components: - - pos: -20.5,20.5 - parent: 1 - type: Transform - - uid: 2784 - components: - - pos: -18.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2910 - components: - - pos: -13.5,20.5 - parent: 1 - type: Transform - - uid: 2921 - components: - - pos: 22.5,4.5 - parent: 1 - type: Transform - - uid: 2922 - components: - - pos: 22.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2923 - components: - - pos: 22.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2924 - components: - - pos: 22.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2925 - components: - - pos: 23.5,1.5 - parent: 1 - type: Transform - - uid: 2926 - components: - - pos: 23.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2927 - components: - - pos: 23.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2928 - components: - - pos: 23.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2929 - components: - - pos: 23.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2930 - components: - - pos: 23.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2931 - components: - - pos: 23.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2972 - components: - - pos: 25.5,24.5 - parent: 1 - type: Transform - - uid: 2973 - components: - - pos: 25.5,23.5 - parent: 1 - type: Transform - - uid: 2974 - components: - - pos: 26.5,23.5 - parent: 1 - type: Transform - - uid: 2978 - components: - - pos: 25.5,25.5 - parent: 1 - type: Transform - - uid: 3040 - components: - - pos: -20.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3331 - components: - - pos: -6.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3332 - components: - - pos: -6.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3333 - components: - - pos: -6.5,20.5 - parent: 1 - type: Transform - - uid: 3334 - components: - - pos: -6.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3335 - components: - - pos: -6.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3336 - components: - - pos: -6.5,23.5 - parent: 1 - type: Transform - - uid: 3337 - components: - - pos: -6.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3338 - components: - - pos: -6.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3339 - components: - - pos: -7.5,25.5 - parent: 1 - type: Transform - - uid: 3340 - components: - - pos: -8.5,25.5 - parent: 1 - type: Transform - - uid: 3341 - components: - - pos: -9.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3342 - components: - - pos: -10.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3343 - components: - - pos: -11.5,25.5 - parent: 1 - type: Transform - - uid: 3344 - components: - - pos: -12.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3345 - components: - - pos: -12.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3346 - components: - - pos: -12.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3347 - components: - - pos: -12.5,22.5 - parent: 1 - type: Transform - - uid: 3348 - components: - - pos: -12.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3362 - components: - - pos: -12.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3363 - components: - - pos: -12.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3364 - components: - - pos: -12.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3365 - components: - - pos: -12.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3366 - components: - - pos: -12.5,16.5 - parent: 1 - type: Transform - - uid: 3367 - components: - - pos: -12.5,15.5 - parent: 1 - type: Transform - - uid: 3368 - components: - - pos: -12.5,14.5 - parent: 1 - type: Transform - - uid: 3369 - components: - - pos: -12.5,13.5 - parent: 1 - type: Transform - - uid: 3370 - components: - - pos: -12.5,12.5 - parent: 1 - type: Transform - - uid: 3371 - components: - - pos: -12.5,11.5 - parent: 1 - type: Transform - - uid: 3372 - components: - - pos: -12.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3373 - components: - - pos: -12.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3374 - components: - - pos: -12.5,8.5 - parent: 1 - type: Transform - - uid: 3375 - components: - - pos: -12.5,7.5 - parent: 1 - type: Transform - - uid: 3376 - components: - - pos: -12.5,6.5 - parent: 1 - type: Transform - - uid: 3377 - components: - - pos: -12.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3378 - components: - - pos: -11.5,5.5 - parent: 1 - type: Transform - - uid: 3379 - components: - - pos: -10.5,5.5 - parent: 1 - type: Transform - - uid: 3380 - components: - - pos: -9.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3381 - components: - - pos: -8.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3382 - components: - - pos: -7.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3383 - components: - - pos: -6.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3384 - components: - - pos: -12.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3385 - components: - - pos: -12.5,27.5 - parent: 1 - type: Transform - - uid: 3386 - components: - - pos: -12.5,28.5 - parent: 1 - type: Transform - - uid: 3387 - components: - - pos: -12.5,29.5 - parent: 1 - type: Transform - - uid: 3388 - components: - - pos: -12.5,30.5 - parent: 1 - type: Transform - - uid: 3389 - components: - - pos: -12.5,31.5 - parent: 1 - type: Transform - - uid: 3390 - components: - - pos: -12.5,32.5 - parent: 1 - type: Transform - - uid: 3477 - components: - - pos: -22.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3478 - components: - - pos: -22.5,60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3907 - components: - - pos: -13.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3908 - components: - - pos: -14.5,5.5 - parent: 1 - type: Transform - - uid: 3909 - components: - - pos: -15.5,5.5 - parent: 1 - type: Transform - - uid: 3910 - components: - - pos: -16.5,5.5 - parent: 1 - type: Transform - - uid: 3911 - components: - - pos: -17.5,5.5 - parent: 1 - type: Transform - - uid: 3912 - components: - - pos: -18.5,5.5 - parent: 1 - type: Transform - - uid: 3913 - components: - - pos: -19.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3914 - components: - - pos: -20.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3915 - components: - - pos: -21.5,5.5 - parent: 1 - type: Transform - - uid: 3916 - components: - - pos: -22.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3917 - components: - - pos: -23.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3918 - components: - - pos: -24.5,5.5 - parent: 1 - type: Transform - - uid: 3919 - components: - - pos: -25.5,5.5 - parent: 1 - type: Transform - - uid: 3920 - components: - - pos: -26.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3921 - components: - - pos: -27.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3922 - components: - - pos: -28.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3923 - components: - - pos: -29.5,5.5 - parent: 1 - type: Transform - - uid: 3924 - components: - - pos: -30.5,5.5 - parent: 1 - type: Transform - - uid: 3925 - components: - - pos: -31.5,5.5 - parent: 1 - type: Transform - - uid: 3926 - components: - - pos: -32.5,5.5 - parent: 1 - type: Transform - - uid: 3927 - components: - - pos: -33.5,5.5 - parent: 1 - type: Transform - - uid: 3928 - components: - - pos: -34.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3929 - components: - - pos: -35.5,5.5 - parent: 1 - type: Transform - - uid: 3930 - components: - - pos: -36.5,5.5 - parent: 1 - type: Transform - - uid: 3931 - components: - - pos: -37.5,5.5 - parent: 1 - type: Transform - - uid: 3976 - components: - - pos: -15.5,4.5 - parent: 1 - type: Transform - - uid: 3977 - components: - - pos: -15.5,3.5 - parent: 1 - type: Transform - - uid: 3978 - components: - - pos: -15.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3979 - components: - - pos: -15.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3980 - components: - - pos: -16.5,1.5 - parent: 1 - type: Transform - - uid: 3981 - components: - - pos: -17.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3982 - components: - - pos: -18.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3983 - components: - - pos: -19.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3984 - components: - - pos: -20.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3985 - components: - - pos: -21.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3986 - components: - - pos: -21.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3987 - components: - - pos: -21.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3988 - components: - - pos: -21.5,-1.5 - parent: 1 - type: Transform - - uid: 3989 - components: - - pos: -21.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3990 - components: - - pos: -21.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3991 - components: - - pos: -21.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3992 - components: - - pos: -22.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3993 - components: - - pos: -23.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3994 - components: - - pos: -24.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3995 - components: - - pos: -24.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3996 - components: - - pos: -21.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3997 - components: - - pos: -21.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3998 - components: - - pos: -21.5,-7.5 - parent: 1 - type: Transform - - uid: 3999 - components: - - pos: -22.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4000 - components: - - pos: -23.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4001 - components: - - pos: -24.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4002 - components: - - pos: -25.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4003 - components: - - pos: -26.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4004 - components: - - pos: -26.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4005 - components: - - pos: -27.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4006 - components: - - pos: -28.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4007 - components: - - pos: -28.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4008 - components: - - pos: -28.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4009 - components: - - pos: -28.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4010 - components: - - pos: -28.5,-2.5 - parent: 1 - type: Transform - - uid: 4011 - components: - - pos: -28.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4012 - components: - - pos: -28.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4013 - components: - - pos: -28.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4014 - components: - - pos: -28.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4015 - components: - - pos: -28.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4016 - components: - - pos: -28.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4017 - components: - - pos: -28.5,4.5 - parent: 1 - type: Transform - - uid: 4018 - components: - - pos: -37.5,6.5 - parent: 1 - type: Transform - - uid: 4019 - components: - - pos: -37.5,7.5 - parent: 1 - type: Transform - - uid: 4020 - components: - - pos: -37.5,8.5 - parent: 1 - type: Transform - - uid: 4021 - components: - - pos: -37.5,9.5 - parent: 1 - type: Transform - - uid: 4022 - components: - - pos: -37.5,10.5 - parent: 1 - type: Transform - - uid: 4023 - components: - - pos: -37.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4024 - components: - - pos: -37.5,12.5 - parent: 1 - type: Transform - - uid: 4025 - components: - - pos: -37.5,13.5 - parent: 1 - type: Transform - - uid: 4026 - components: - - pos: -37.5,14.5 - parent: 1 - type: Transform - - uid: 4027 - components: - - pos: -37.5,15.5 - parent: 1 - type: Transform - - uid: 4028 - components: - - pos: -37.5,16.5 - parent: 1 - type: Transform - - uid: 4029 - components: - - pos: -37.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4030 - components: - - pos: -37.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4031 - components: - - pos: -37.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4032 - components: - - pos: -37.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4033 - components: - - pos: -37.5,21.5 - parent: 1 - type: Transform - - uid: 4034 - components: - - pos: -37.5,22.5 - parent: 1 - type: Transform - - uid: 4035 - components: - - pos: -37.5,23.5 - parent: 1 - type: Transform - - uid: 4036 - components: - - pos: -37.5,24.5 - parent: 1 - type: Transform - - uid: 4037 - components: - - pos: -37.5,25.5 - parent: 1 - type: Transform - - uid: 4038 - components: - - pos: -37.5,26.5 - parent: 1 - type: Transform - - uid: 4039 - components: - - pos: -37.5,27.5 - parent: 1 - type: Transform - - uid: 4040 - components: - - pos: -37.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4041 - components: - - pos: -37.5,29.5 - parent: 1 - type: Transform - - uid: 4042 - components: - - pos: -37.5,30.5 - parent: 1 - type: Transform - - uid: 4043 - components: - - pos: -37.5,31.5 - parent: 1 - type: Transform - - uid: 4044 - components: - - pos: -37.5,32.5 - parent: 1 - type: Transform - - uid: 4045 - components: - - pos: -36.5,32.5 - parent: 1 - type: Transform - - uid: 4046 - components: - - pos: -35.5,32.5 - parent: 1 - type: Transform - - uid: 4047 - components: - - pos: -34.5,32.5 - parent: 1 - type: Transform - - uid: 4048 - components: - - pos: -33.5,32.5 - parent: 1 - type: Transform - - uid: 4049 - components: - - pos: -32.5,32.5 - parent: 1 - type: Transform - - uid: 4050 - components: - - pos: -31.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4051 - components: - - pos: -30.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4052 - components: - - pos: -29.5,32.5 - parent: 1 - type: Transform - - uid: 4053 - components: - - pos: -28.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4054 - components: - - pos: -27.5,32.5 - parent: 1 - type: Transform - - uid: 4055 - components: - - pos: -26.5,32.5 - parent: 1 - type: Transform - - uid: 4056 - components: - - pos: -25.5,32.5 - parent: 1 - type: Transform - - uid: 4057 - components: - - pos: -24.5,32.5 - parent: 1 - type: Transform - - uid: 4058 - components: - - pos: -23.5,32.5 - parent: 1 - type: Transform - - uid: 4059 - components: - - pos: -22.5,32.5 - parent: 1 - type: Transform - - uid: 4060 - components: - - pos: -21.5,32.5 - parent: 1 - type: Transform - - uid: 4061 - components: - - pos: -20.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4062 - components: - - pos: -19.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4063 - components: - - pos: -18.5,32.5 - parent: 1 - type: Transform - - uid: 4064 - components: - - pos: -17.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4065 - components: - - pos: -16.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4066 - components: - - pos: -15.5,32.5 - parent: 1 - type: Transform - - uid: 4067 - components: - - pos: -14.5,32.5 - parent: 1 - type: Transform - - uid: 4068 - components: - - pos: -13.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4378 - components: - - pos: -38.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4379 - components: - - pos: -39.5,21.5 - parent: 1 - type: Transform - - uid: 4380 - components: - - pos: -40.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4381 - components: - - pos: -41.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4382 - components: - - pos: -42.5,21.5 - parent: 1 - type: Transform - - uid: 4383 - components: - - pos: -43.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4384 - components: - - pos: -44.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4385 - components: - - pos: -45.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4386 - components: - - pos: -46.5,21.5 - parent: 1 - type: Transform - - uid: 4387 - components: - - pos: -47.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4388 - components: - - pos: -48.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4389 - components: - - pos: -49.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4390 - components: - - pos: -50.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4391 - components: - - pos: -50.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4392 - components: - - pos: -50.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4393 - components: - - pos: -50.5,18.5 - parent: 1 - type: Transform - - uid: 4394 - components: - - pos: -50.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4395 - components: - - pos: -50.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4396 - components: - - pos: -50.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4397 - components: - - pos: -50.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4398 - components: - - pos: -49.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4399 - components: - - pos: -48.5,14.5 - parent: 1 - type: Transform - - uid: 4400 - components: - - pos: -47.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4401 - components: - - pos: -46.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4402 - components: - - pos: -45.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4403 - components: - - pos: -44.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4404 - components: - - pos: -43.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4405 - components: - - pos: -42.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4406 - components: - - pos: -41.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4407 - components: - - pos: -41.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4408 - components: - - pos: -40.5,15.5 - parent: 1 - type: Transform - - uid: 4409 - components: - - pos: -44.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4410 - components: - - pos: -44.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4411 - components: - - pos: -44.5,11.5 - parent: 1 - type: Transform - - uid: 4412 - components: - - pos: -44.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4413 - components: - - pos: -44.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4414 - components: - - pos: -44.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4415 - components: - - pos: -44.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4416 - components: - - pos: -44.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4417 - components: - - pos: -44.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4418 - components: - - pos: -43.5,5.5 - parent: 1 - type: Transform - - uid: 4419 - components: - - pos: -42.5,5.5 - parent: 1 - type: Transform - - uid: 4420 - components: - - pos: -41.5,5.5 - parent: 1 - type: Transform - - uid: 4421 - components: - - pos: -40.5,5.5 - parent: 1 - type: Transform - - uid: 4422 - components: - - pos: -39.5,5.5 - parent: 1 - type: Transform - - uid: 4423 - components: - - pos: -38.5,5.5 - parent: 1 - type: Transform - - uid: 4711 - components: - - pos: 15.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5181 - components: - - pos: -60.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5186 - components: - - pos: -89.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5502 - components: - - pos: -16.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5504 - components: - - pos: -15.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5572 - components: - - pos: -20.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5575 - components: - - pos: -17.5,20.5 - parent: 1 - type: Transform - - uid: 5662 - components: - - pos: -15.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5664 - components: - - pos: -14.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5667 - components: - - pos: -16.5,20.5 - parent: 1 - type: Transform - - uid: 5678 - components: - - pos: -19.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5682 - components: - - pos: -20.5,17.5 - parent: 1 - type: Transform - - uid: 5721 - components: - - pos: -17.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6083 - components: - - pos: -16.5,33.5 - parent: 1 - type: Transform - - uid: 6084 - components: - - pos: -16.5,34.5 - parent: 1 - type: Transform - - uid: 6085 - components: - - pos: -16.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6086 - components: - - pos: -16.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6087 - components: - - pos: -16.5,37.5 - parent: 1 - type: Transform - - uid: 6088 - components: - - pos: -16.5,38.5 - parent: 1 - type: Transform - - uid: 6089 - components: - - pos: -16.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6090 - components: - - pos: -16.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6091 - components: - - pos: -16.5,41.5 - parent: 1 - type: Transform - - uid: 6092 - components: - - pos: -16.5,42.5 - parent: 1 - type: Transform - - uid: 6093 - components: - - pos: -16.5,43.5 - parent: 1 - type: Transform - - uid: 6094 - components: - - pos: -16.5,44.5 - parent: 1 - type: Transform - - uid: 6095 - components: - - pos: -16.5,45.5 - parent: 1 - type: Transform - - uid: 6096 - components: - - pos: -16.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6097 - components: - - pos: -16.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6098 - components: - - pos: -16.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6099 - components: - - pos: -16.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6100 - components: - - pos: -16.5,50.5 - parent: 1 - type: Transform - - uid: 6101 - components: - - pos: -16.5,51.5 - parent: 1 - type: Transform - - uid: 6102 - components: - - pos: -15.5,51.5 - parent: 1 - type: Transform - - uid: 6103 - components: - - pos: -14.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6104 - components: - - pos: -13.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6105 - components: - - pos: -12.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6106 - components: - - pos: -11.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6107 - components: - - pos: -10.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6108 - components: - - pos: -9.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6109 - components: - - pos: -8.5,51.5 - parent: 1 - type: Transform - - uid: 6110 - components: - - pos: -7.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6111 - components: - - pos: -7.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6112 - components: - - pos: -7.5,49.5 - parent: 1 - type: Transform - - uid: 6113 - components: - - pos: -7.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6114 - components: - - pos: -7.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6115 - components: - - pos: -6.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6116 - components: - - pos: -5.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6117 - components: - - pos: -4.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6118 - components: - - pos: -3.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6119 - components: - - pos: -2.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6120 - components: - - pos: -1.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6121 - components: - - pos: -0.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6122 - components: - - pos: 0.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6123 - components: - - pos: 1.5,47.5 - parent: 1 - type: Transform - - uid: 6124 - components: - - pos: 2.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6125 - components: - - pos: 3.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6126 - components: - - pos: 4.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6127 - components: - - pos: 5.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6128 - components: - - pos: 6.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6129 - components: - - pos: 7.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6130 - components: - - pos: 7.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6131 - components: - - pos: 8.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6132 - components: - - pos: 9.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6133 - components: - - pos: 10.5,48.5 - parent: 1 - type: Transform - - uid: 6134 - components: - - pos: 11.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6135 - components: - - pos: 12.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6136 - components: - - pos: 13.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6137 - components: - - pos: 14.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6138 - components: - - pos: 15.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6139 - components: - - pos: 15.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6140 - components: - - pos: 15.5,46.5 - parent: 1 - type: Transform - - uid: 6141 - components: - - pos: 15.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6142 - components: - - pos: 16.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6143 - components: - - pos: 17.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6145 - components: - - pos: 18.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6146 - components: - - pos: 15.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6147 - components: - - pos: 15.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6148 - components: - - pos: 15.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6149 - components: - - pos: 15.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6150 - components: - - pos: 15.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6151 - components: - - pos: 15.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6152 - components: - - pos: 15.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6155 - components: - - pos: 15.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6156 - components: - - pos: 16.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6157 - components: - - pos: 17.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6158 - components: - - pos: 18.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6159 - components: - - pos: 19.5,35.5 - parent: 1 - type: Transform - - uid: 6160 - components: - - pos: 20.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6161 - components: - - pos: 21.5,35.5 - parent: 1 - type: Transform - - uid: 6162 - components: - - pos: 22.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6163 - components: - - pos: 23.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6164 - components: - - pos: 23.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6165 - components: - - pos: 23.5,33.5 - parent: 1 - type: Transform - - uid: 6166 - components: - - pos: 23.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6167 - components: - - pos: 23.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6168 - components: - - pos: 23.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6169 - components: - - pos: 23.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6170 - components: - - pos: 23.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6171 - components: - - pos: 23.5,27.5 - parent: 1 - type: Transform - - uid: 6172 - components: - - pos: 23.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6173 - components: - - pos: 23.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6174 - components: - - pos: 23.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6175 - components: - - pos: 23.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6176 - components: - - pos: 23.5,22.5 - parent: 1 - type: Transform - - uid: 6177 - components: - - pos: 23.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6178 - components: - - pos: 23.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6179 - components: - - pos: 23.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6180 - components: - - pos: 24.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6181 - components: - - pos: 25.5,19.5 - parent: 1 - type: Transform - - uid: 6182 - components: - - pos: 26.5,19.5 - parent: 1 - type: Transform - - uid: 6183 - components: - - pos: 26.5,18.5 - parent: 1 - type: Transform - - uid: 6184 - components: - - pos: 26.5,17.5 - parent: 1 - type: Transform - - uid: 6185 - components: - - pos: 26.5,16.5 - parent: 1 - type: Transform - - uid: 6186 - components: - - pos: 26.5,15.5 - parent: 1 - type: Transform - - uid: 6187 - components: - - pos: 26.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6188 - components: - - pos: 26.5,13.5 - parent: 1 - type: Transform - - uid: 6189 - components: - - pos: 26.5,12.5 - parent: 1 - type: Transform - - uid: 6190 - components: - - pos: 26.5,11.5 - parent: 1 - type: Transform - - uid: 6191 - components: - - pos: 26.5,10.5 - parent: 1 - type: Transform - - uid: 6192 - components: - - pos: 26.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6193 - components: - - pos: 26.5,8.5 - parent: 1 - type: Transform - - uid: 6194 - components: - - pos: 26.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6195 - components: - - pos: 26.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6265 - components: - - pos: 15.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6320 - components: - - pos: -20.5,64.5 - parent: 1 - type: Transform - - uid: 6526 - components: - - pos: -18.5,64.5 - parent: 1 - type: Transform - - uid: 6529 - components: - - pos: -16.5,52.5 - parent: 1 - type: Transform - - uid: 6530 - components: - - pos: -16.5,53.5 - parent: 1 - type: Transform - - uid: 6531 - components: - - pos: -16.5,54.5 - parent: 1 - type: Transform - - uid: 6532 - components: - - pos: -16.5,55.5 - parent: 1 - type: Transform - - uid: 6533 - components: - - pos: -15.5,55.5 - parent: 1 - type: Transform - - uid: 6534 - components: - - pos: -14.5,55.5 - parent: 1 - type: Transform - - uid: 6535 - components: - - pos: -13.5,55.5 - parent: 1 - type: Transform - - uid: 6536 - components: - - pos: -12.5,55.5 - parent: 1 - type: Transform - - uid: 6537 - components: - - pos: -11.5,55.5 - parent: 1 - type: Transform - - uid: 6538 - components: - - pos: -10.5,55.5 - parent: 1 - type: Transform - - uid: 6539 - components: - - pos: -9.5,55.5 - parent: 1 - type: Transform - - uid: 6540 - components: - - pos: -8.5,55.5 - parent: 1 - type: Transform - - uid: 6541 - components: - - pos: -7.5,55.5 - parent: 1 - type: Transform - - uid: 6542 - components: - - pos: -6.5,55.5 - parent: 1 - type: Transform - - uid: 6543 - components: - - pos: -5.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6544 - components: - - pos: -4.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6545 - components: - - pos: -3.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6546 - components: - - pos: -3.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6550 - components: - - pos: -3.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6551 - components: - - pos: -4.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6552 - components: - - pos: -4.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6553 - components: - - pos: -4.5,59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6554 - components: - - pos: -4.5,60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6555 - components: - - pos: -4.5,61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6557 - components: - - pos: -5.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6558 - components: - - pos: -6.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6559 - components: - - pos: -7.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6560 - components: - - pos: -8.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6561 - components: - - pos: -9.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6616 - components: - - pos: -15.5,56.5 - parent: 1 - type: Transform - - uid: 6617 - components: - - pos: -15.5,57.5 - parent: 1 - type: Transform - - uid: 6618 - components: - - pos: -15.5,58.5 - parent: 1 - type: Transform - - uid: 6619 - components: - - pos: -15.5,59.5 - parent: 1 - type: Transform - - uid: 6620 - components: - - pos: -15.5,60.5 - parent: 1 - type: Transform - - uid: 6621 - components: - - pos: -15.5,61.5 - parent: 1 - type: Transform - - uid: 6622 - components: - - pos: -15.5,62.5 - parent: 1 - type: Transform - - uid: 6623 - components: - - pos: -15.5,63.5 - parent: 1 - type: Transform - - uid: 6624 - components: - - pos: -15.5,64.5 - parent: 1 - type: Transform - - uid: 6625 - components: - - pos: -14.5,64.5 - parent: 1 - type: Transform - - uid: 6626 - components: - - pos: -13.5,64.5 - parent: 1 - type: Transform - - uid: 6627 - components: - - pos: -12.5,64.5 - parent: 1 - type: Transform - - uid: 6628 - components: - - pos: -11.5,64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6629 - components: - - pos: -12.5,65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6630 - components: - - pos: -11.5,65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6631 - components: - - pos: -12.5,66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6632 - components: - - pos: -13.5,66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6633 - components: - - pos: -13.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6634 - components: - - pos: -14.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6635 - components: - - pos: -15.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6636 - components: - - pos: -16.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6637 - components: - - pos: -17.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6638 - components: - - pos: -18.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6639 - components: - - pos: -19.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6640 - components: - - pos: -19.5,66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6641 - components: - - pos: -20.5,66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6642 - components: - - pos: -20.5,65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6643 - components: - - pos: -21.5,65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6644 - components: - - pos: -21.5,64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7285 - components: - - pos: -43.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7587 - components: - - pos: -19.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7588 - components: - - pos: -20.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7589 - components: - - pos: -21.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7590 - components: - - pos: -22.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7591 - components: - - pos: -23.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7592 - components: - - pos: -24.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7593 - components: - - pos: -25.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7594 - components: - - pos: -17.5,51.5 - parent: 1 - type: Transform - - uid: 7595 - components: - - pos: -24.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7596 - components: - - pos: -24.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7597 - components: - - pos: -24.5,48.5 - parent: 1 - type: Transform - - uid: 7598 - components: - - pos: -24.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7599 - components: - - pos: -24.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7600 - components: - - pos: -24.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7601 - components: - - pos: -24.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7602 - components: - - pos: -24.5,43.5 - parent: 1 - type: Transform - - uid: 7603 - components: - - pos: -24.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7604 - components: - - pos: -24.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7605 - components: - - pos: -24.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7606 - components: - - pos: -24.5,39.5 - parent: 1 - type: Transform - - uid: 7607 - components: - - pos: -24.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7608 - components: - - pos: -24.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7609 - components: - - pos: -24.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7610 - components: - - pos: -24.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7611 - components: - - pos: -24.5,34.5 - parent: 1 - type: Transform - - uid: 7612 - components: - - pos: -24.5,33.5 - parent: 1 - type: Transform - - uid: 7613 - components: - - pos: -26.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7614 - components: - - pos: -27.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7615 - components: - - pos: -28.5,50.5 - parent: 1 - type: Transform - - uid: 7616 - components: - - pos: -29.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7617 - components: - - pos: -30.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7618 - components: - - pos: -31.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7619 - components: - - pos: -32.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7620 - components: - - pos: -32.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7621 - components: - - pos: -32.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7622 - components: - - pos: -32.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7623 - components: - - pos: -32.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7624 - components: - - pos: -32.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7625 - components: - - pos: -33.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7626 - components: - - pos: -34.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7627 - components: - - pos: -34.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7628 - components: - - pos: -34.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7629 - components: - - pos: -35.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7630 - components: - - pos: -35.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7631 - components: - - pos: -36.5,55.5 - parent: 1 - type: Transform - - uid: 7632 - components: - - pos: -37.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7633 - components: - - pos: -38.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7634 - components: - - pos: -39.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7635 - components: - - pos: -40.5,55.5 - parent: 1 - type: Transform - - uid: 7636 - components: - - pos: -41.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7650 - components: - - pos: -47.5,47.5 - parent: 1 - type: Transform - - uid: 7651 - components: - - pos: -47.5,46.5 - parent: 1 - type: Transform - - uid: 7652 - components: - - pos: -47.5,45.5 - parent: 1 - type: Transform - - uid: 7653 - components: - - pos: -47.5,44.5 - parent: 1 - type: Transform - - uid: 7654 - components: - - pos: -47.5,43.5 - parent: 1 - type: Transform - - uid: 7655 - components: - - pos: -47.5,42.5 - parent: 1 - type: Transform - - uid: 7656 - components: - - pos: -47.5,41.5 - parent: 1 - type: Transform - - uid: 7657 - components: - - pos: -47.5,40.5 - parent: 1 - type: Transform - - uid: 7658 - components: - - pos: -47.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7659 - components: - - pos: -47.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7660 - components: - - pos: -47.5,37.5 - parent: 1 - type: Transform - - uid: 7661 - components: - - pos: -47.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7662 - components: - - pos: -47.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7663 - components: - - pos: -47.5,34.5 - parent: 1 - type: Transform - - uid: 7664 - components: - - pos: -47.5,33.5 - parent: 1 - type: Transform - - uid: 7665 - components: - - pos: -47.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7666 - components: - - pos: -46.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7667 - components: - - pos: -45.5,32.5 - parent: 1 - type: Transform - - uid: 7668 - components: - - pos: -44.5,32.5 - parent: 1 - type: Transform - - uid: 7669 - components: - - pos: -43.5,32.5 - parent: 1 - type: Transform - - uid: 7670 - components: - - pos: -42.5,32.5 - parent: 1 - type: Transform - - uid: 7671 - components: - - pos: -41.5,32.5 - parent: 1 - type: Transform - - uid: 7672 - components: - - pos: -40.5,32.5 - parent: 1 - type: Transform - - uid: 7673 - components: - - pos: -39.5,32.5 - parent: 1 - type: Transform - - uid: 7674 - components: - - pos: -38.5,32.5 - parent: 1 - type: Transform - - uid: 7675 - components: - - pos: -48.5,32.5 - parent: 1 - type: Transform - - uid: 7676 - components: - - pos: -49.5,32.5 - parent: 1 - type: Transform - - uid: 7677 - components: - - pos: -50.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7678 - components: - - pos: -51.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7679 - components: - - pos: -52.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7680 - components: - - pos: -53.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7681 - components: - - pos: -54.5,32.5 - parent: 1 - type: Transform - - uid: 7682 - components: - - pos: -55.5,32.5 - parent: 1 - type: Transform - - uid: 7683 - components: - - pos: -56.5,32.5 - parent: 1 - type: Transform - - uid: 7684 - components: - - pos: -57.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7685 - components: - - pos: -57.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7686 - components: - - pos: -57.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7687 - components: - - pos: -57.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7688 - components: - - pos: -57.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7689 - components: - - pos: -57.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7690 - components: - - pos: -57.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7691 - components: - - pos: -57.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7692 - components: - - pos: -57.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7693 - components: - - pos: -57.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7694 - components: - - pos: -57.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7695 - components: - - pos: -57.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7696 - components: - - pos: -57.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7697 - components: - - pos: -57.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7698 - components: - - pos: -57.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7699 - components: - - pos: -57.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7700 - components: - - pos: -56.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7701 - components: - - pos: -55.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7702 - components: - - pos: -54.5,47.5 - parent: 1 - type: Transform - - uid: 7703 - components: - - pos: -53.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7704 - components: - - pos: -52.5,47.5 - parent: 1 - type: Transform - - uid: 7705 - components: - - pos: -51.5,47.5 - parent: 1 - type: Transform - - uid: 7706 - components: - - pos: -50.5,47.5 - parent: 1 - type: Transform - - uid: 7707 - components: - - pos: -49.5,47.5 - parent: 1 - type: Transform - - uid: 7708 - components: - - pos: -48.5,47.5 - parent: 1 - type: Transform - - uid: 7720 - components: - - pos: -58.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7884 - components: - - pos: -44.5,55.5 - parent: 1 - type: Transform - - uid: 7885 - components: - - pos: -44.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7886 - components: - - pos: -44.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7887 - components: - - pos: -44.5,52.5 - parent: 1 - type: Transform - - uid: 7888 - components: - - pos: -44.5,51.5 - parent: 1 - type: Transform - - uid: 7889 - components: - - pos: -44.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7890 - components: - - pos: -44.5,49.5 - parent: 1 - type: Transform - - uid: 7891 - components: - - pos: -45.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7892 - components: - - pos: -46.5,49.5 - parent: 1 - type: Transform - - uid: 7893 - components: - - pos: -47.5,49.5 - parent: 1 - type: Transform - - uid: 7894 - components: - - pos: -47.5,48.5 - parent: 1 - type: Transform - - uid: 8474 - components: - - pos: -58.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8504 - components: - - pos: -58.5,18.5 - parent: 1 - type: Transform - - uid: 8505 - components: - - pos: -57.5,18.5 - parent: 1 - type: Transform - - uid: 8506 - components: - - pos: -57.5,19.5 - parent: 1 - type: Transform - - uid: 8507 - components: - - pos: -57.5,20.5 - parent: 1 - type: Transform - - uid: 8508 - components: - - pos: -57.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8509 - components: - - pos: -57.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8510 - components: - - pos: -57.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8511 - components: - - pos: -57.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8512 - components: - - pos: -57.5,25.5 - parent: 1 - type: Transform - - uid: 8513 - components: - - pos: -57.5,26.5 - parent: 1 - type: Transform - - uid: 8514 - components: - - pos: -57.5,27.5 - parent: 1 - type: Transform - - uid: 8515 - components: - - pos: -57.5,28.5 - parent: 1 - type: Transform - - uid: 8516 - components: - - pos: -57.5,29.5 - parent: 1 - type: Transform - - uid: 8517 - components: - - pos: -57.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8518 - components: - - pos: -57.5,31.5 - parent: 1 - type: Transform - - uid: 8548 - components: - - pos: -57.5,17.5 - parent: 1 - type: Transform - - uid: 8549 - components: - - pos: -57.5,16.5 - parent: 1 - type: Transform - - uid: 8550 - components: - - pos: -57.5,15.5 - parent: 1 - type: Transform - - uid: 8551 - components: - - pos: -57.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8552 - components: - - pos: -57.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8553 - components: - - pos: -57.5,12.5 - parent: 1 - type: Transform - - uid: 8554 - components: - - pos: -57.5,11.5 - parent: 1 - type: Transform - - uid: 8555 - components: - - pos: -57.5,10.5 - parent: 1 - type: Transform - - uid: 8556 - components: - - pos: -57.5,9.5 - parent: 1 - type: Transform - - uid: 8557 - components: - - pos: -57.5,8.5 - parent: 1 - type: Transform - - uid: 8558 - components: - - pos: -57.5,7.5 - parent: 1 - type: Transform - - uid: 8559 - components: - - pos: -57.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8560 - components: - - pos: -57.5,5.5 - parent: 1 - type: Transform - - uid: 8561 - components: - - pos: -56.5,5.5 - parent: 1 - type: Transform - - uid: 8562 - components: - - pos: -55.5,5.5 - parent: 1 - type: Transform - - uid: 8563 - components: - - pos: -54.5,5.5 - parent: 1 - type: Transform - - uid: 8564 - components: - - pos: -53.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8565 - components: - - pos: -52.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8566 - components: - - pos: -51.5,5.5 - parent: 1 - type: Transform - - uid: 8567 - components: - - pos: -50.5,5.5 - parent: 1 - type: Transform - - uid: 8568 - components: - - pos: -49.5,5.5 - parent: 1 - type: Transform - - uid: 8569 - components: - - pos: -48.5,5.5 - parent: 1 - type: Transform - - uid: 8570 - components: - - pos: -47.5,5.5 - parent: 1 - type: Transform - - uid: 8571 - components: - - pos: -46.5,5.5 - parent: 1 - type: Transform - - uid: 8572 - components: - - pos: -45.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8929 - components: - - pos: -42.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9061 - components: - - pos: -17.5,64.5 - parent: 1 - type: Transform - - uid: 9201 - components: - - pos: -64.5,36.5 - parent: 1 - type: Transform - - uid: 9308 - components: - - pos: -69.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9309 - components: - - pos: -69.5,28.5 - parent: 1 - type: Transform - - uid: 9489 - components: - - pos: -18.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9606 - components: - - pos: -80.5,27.5 - parent: 1 - type: Transform - - uid: 9607 - components: - - pos: -79.5,27.5 - parent: 1 - type: Transform - - uid: 9854 - components: - - pos: -69.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9859 - components: - - pos: -69.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9860 - components: - - pos: -79.5,26.5 - parent: 1 - type: Transform - - uid: 9914 - components: - - pos: -21.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9977 - components: - - pos: -22.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9978 - components: - - pos: -19.5,64.5 - parent: 1 - type: Transform - - uid: 9998 - components: - - pos: -59.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9999 - components: - - pos: -60.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10000 - components: - - pos: -61.5,47.5 - parent: 1 - type: Transform - - uid: 10001 - components: - - pos: -62.5,47.5 - parent: 1 - type: Transform - - uid: 10002 - components: - - pos: -63.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10003 - components: - - pos: -64.5,47.5 - parent: 1 - type: Transform - - uid: 10004 - components: - - pos: -65.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10005 - components: - - pos: -66.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10006 - components: - - pos: -66.5,49.5 - parent: 1 - type: Transform - - uid: 10008 - components: - - pos: -66.5,50.5 - parent: 1 - type: Transform - - uid: 10009 - components: - - pos: -67.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10010 - components: - - pos: -67.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10011 - components: - - pos: -67.5,52.5 - parent: 1 - type: Transform - - uid: 10012 - components: - - pos: -67.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10013 - components: - - pos: -67.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10014 - components: - - pos: -67.5,55.5 - parent: 1 - type: Transform - - uid: 10015 - components: - - pos: -67.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10016 - components: - - pos: -67.5,57.5 - parent: 1 - type: Transform - - uid: 10017 - components: - - pos: -66.5,57.5 - parent: 1 - type: Transform - - uid: 10018 - components: - - pos: -65.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10019 - components: - - pos: -65.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10020 - components: - - pos: -65.5,59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10023 - components: - - pos: -60.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10024 - components: - - pos: -60.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10025 - components: - - pos: -60.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10026 - components: - - pos: -65.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10027 - components: - - pos: -66.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10028 - components: - - pos: -66.5,37.5 - parent: 1 - type: Transform - - uid: 10029 - components: - - pos: -66.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10030 - components: - - pos: -66.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10031 - components: - - pos: -66.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10032 - components: - - pos: -66.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10033 - components: - - pos: -66.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10034 - components: - - pos: -66.5,43.5 - parent: 1 - type: Transform - - uid: 10035 - components: - - pos: -66.5,44.5 - parent: 1 - type: Transform - - uid: 10036 - components: - - pos: -60.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10037 - components: - - pos: -60.5,35.5 - parent: 1 - type: Transform - - uid: 10038 - components: - - pos: -60.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10039 - components: - - pos: -60.5,33.5 - parent: 1 - type: Transform - - uid: 10040 - components: - - pos: -60.5,32.5 - parent: 1 - type: Transform - - uid: 10042 - components: - - pos: -60.5,31.5 - parent: 1 - type: Transform - - uid: 10043 - components: - - pos: -60.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10045 - components: - - pos: -60.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10047 - components: - - pos: -60.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10077 - components: - - pos: -60.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10078 - components: - - pos: -60.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10079 - components: - - pos: -60.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10090 - components: - - pos: -60.5,24.5 - parent: 1 - type: Transform - - uid: 10091 - components: - - pos: -60.5,23.5 - parent: 1 - type: Transform - - uid: 10096 - components: - - pos: -60.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10097 - components: - - pos: -60.5,21.5 - parent: 1 - type: Transform - - uid: 10098 - components: - - pos: -60.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10104 - components: - - pos: -61.5,17.5 - parent: 1 - type: Transform - - uid: 10105 - components: - - pos: -62.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10106 - components: - - pos: -63.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10107 - components: - - pos: -64.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10108 - components: - - pos: -65.5,17.5 - parent: 1 - type: Transform - - uid: 10109 - components: - - pos: -66.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10110 - components: - - pos: -66.5,16.5 - parent: 1 - type: Transform - - uid: 10111 - components: - - pos: -66.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10112 - components: - - pos: -66.5,14.5 - parent: 1 - type: Transform - - uid: 10113 - components: - - pos: -66.5,13.5 - parent: 1 - type: Transform - - uid: 10114 - components: - - pos: -66.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10115 - components: - - pos: -66.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10116 - components: - - pos: -66.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10117 - components: - - pos: -66.5,9.5 - parent: 1 - type: Transform - - uid: 10118 - components: - - pos: -66.5,8.5 - parent: 1 - type: Transform - - uid: 10119 - components: - - pos: -65.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10120 - components: - - pos: -64.5,8.5 - parent: 1 - type: Transform - - uid: 10121 - components: - - pos: -63.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10122 - components: - - pos: -62.5,8.5 - parent: 1 - type: Transform - - uid: 10123 - components: - - pos: -61.5,8.5 - parent: 1 - type: Transform - - uid: 10124 - components: - - pos: -60.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10125 - components: - - pos: -59.5,32.5 - parent: 1 - type: Transform - - uid: 10126 - components: - - pos: -62.5,36.5 - parent: 1 - type: Transform - - uid: 10130 - components: - - pos: -66.5,47.5 - parent: 1 - type: Transform - - uid: 10131 - components: - - pos: -61.5,36.5 - parent: 1 - type: Transform - - uid: 10132 - components: - - pos: -66.5,45.5 - parent: 1 - type: Transform - - uid: 10133 - components: - - pos: -66.5,46.5 - parent: 1 - type: Transform - - uid: 10134 - components: - - pos: -63.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10135 - components: - - pos: -63.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10136 - components: - - pos: -63.5,34.5 - parent: 1 - type: Transform - - uid: 10137 - components: - - pos: -63.5,33.5 - parent: 1 - type: Transform - - uid: 10138 - components: - - pos: -63.5,32.5 - parent: 1 - type: Transform - - uid: 10139 - components: - - pos: -62.5,32.5 - parent: 1 - type: Transform - - uid: 10140 - components: - - pos: -61.5,32.5 - parent: 1 - type: Transform - - uid: 10150 - components: - - pos: -65.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10151 - components: - - pos: -66.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10152 - components: - - pos: -67.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10153 - components: - - pos: -68.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10154 - components: - - pos: -69.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10156 - components: - - pos: -70.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10157 - components: - - pos: -64.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10161 - components: - - pos: -70.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10162 - components: - - pos: -71.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10163 - components: - - pos: -70.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10168 - components: - - pos: -70.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10169 - components: - - pos: -71.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10170 - components: - - pos: -71.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10174 - components: - - pos: -69.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10177 - components: - - pos: -71.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10178 - components: - - pos: -71.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10179 - components: - - pos: -70.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10180 - components: - - pos: -69.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10181 - components: - - pos: -71.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10182 - components: - - pos: -72.5,21.5 - parent: 1 - type: Transform - - uid: 10183 - components: - - pos: -73.5,21.5 - parent: 1 - type: Transform - - uid: 10184 - components: - - pos: -74.5,21.5 - parent: 1 - type: Transform - - uid: 10185 - components: - - pos: -74.5,22.5 - parent: 1 - type: Transform - - uid: 10186 - components: - - pos: -74.5,23.5 - parent: 1 - type: Transform - - uid: 10187 - components: - - pos: -74.5,24.5 - parent: 1 - type: Transform - - uid: 10188 - components: - - pos: -75.5,24.5 - parent: 1 - type: Transform - - uid: 10189 - components: - - pos: -76.5,24.5 - parent: 1 - type: Transform - - uid: 10190 - components: - - pos: -77.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10191 - components: - - pos: -78.5,24.5 - parent: 1 - type: Transform - - uid: 10192 - components: - - pos: -78.5,26.5 - parent: 1 - type: Transform - - uid: 10193 - components: - - pos: -77.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10194 - components: - - pos: -76.5,26.5 - parent: 1 - type: Transform - - uid: 10195 - components: - - pos: -75.5,26.5 - parent: 1 - type: Transform - - uid: 10196 - components: - - pos: -74.5,26.5 - parent: 1 - type: Transform - - uid: 10197 - components: - - pos: -74.5,25.5 - parent: 1 - type: Transform - - uid: 10198 - components: - - pos: -81.5,27.5 - parent: 1 - type: Transform - - uid: 10199 - components: - - pos: -82.5,27.5 - parent: 1 - type: Transform - - uid: 10200 - components: - - pos: -83.5,27.5 - parent: 1 - type: Transform - - uid: 10201 - components: - - pos: -84.5,27.5 - parent: 1 - type: Transform - - uid: 10202 - components: - - pos: -79.5,24.5 - parent: 1 - type: Transform - - uid: 10203 - components: - - pos: -80.5,24.5 - parent: 1 - type: Transform - - uid: 10204 - components: - - pos: -80.5,25.5 - parent: 1 - type: Transform - - uid: 10205 - components: - - pos: -81.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10206 - components: - - pos: -82.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10208 - components: - - pos: -84.5,28.5 - parent: 1 - type: Transform - - uid: 10209 - components: - - pos: -84.5,29.5 - parent: 1 - type: Transform - - uid: 10210 - components: - - pos: -84.5,30.5 - parent: 1 - type: Transform - - uid: 10211 - components: - - pos: -85.5,30.5 - parent: 1 - type: Transform - - uid: 10212 - components: - - pos: -86.5,30.5 - parent: 1 - type: Transform - - uid: 10225 - components: - - pos: -71.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10227 - components: - - pos: -71.5,33.5 - parent: 1 - type: Transform - - uid: 10228 - components: - - pos: -71.5,34.5 - parent: 1 - type: Transform - - uid: 10229 - components: - - pos: -70.5,34.5 - parent: 1 - type: Transform - - uid: 10230 - components: - - pos: -69.5,34.5 - parent: 1 - type: Transform - - uid: 10232 - components: - - pos: -68.5,34.5 - parent: 1 - type: Transform - - uid: 10233 - components: - - pos: -67.5,34.5 - parent: 1 - type: Transform - - uid: 10236 - components: - - pos: -66.5,34.5 - parent: 1 - type: Transform - - uid: 10238 - components: - - pos: -65.5,34.5 - parent: 1 - type: Transform - - uid: 10239 - components: - - pos: -64.5,34.5 - parent: 1 - type: Transform - - uid: 10245 - components: - - pos: -69.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10252 - components: - - pos: -69.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10262 - components: - - pos: -60.5,6.5 - parent: 1 - type: Transform - - uid: 10263 - components: - - pos: -60.5,5.5 - parent: 1 - type: Transform - - uid: 10265 - components: - - pos: -59.5,5.5 - parent: 1 - type: Transform - - uid: 10266 - components: - - pos: -58.5,5.5 - parent: 1 - type: Transform - - uid: 10418 - components: - - pos: -16.5,64.5 - parent: 1 - type: Transform - - uid: 10549 - components: - - pos: -85.5,27.5 - parent: 1 - type: Transform - - uid: 10550 - components: - - pos: -85.5,20.5 - parent: 1 - type: Transform - - uid: 10551 - components: - - pos: -86.5,20.5 - parent: 1 - type: Transform - - uid: 10552 - components: - - pos: -87.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10553 - components: - - pos: -85.5,23.5 - parent: 1 - type: Transform - - uid: 10554 - components: - - pos: -84.5,23.5 - parent: 1 - type: Transform - - uid: 10555 - components: - - pos: -84.5,22.5 - parent: 1 - type: Transform - - uid: 10556 - components: - - pos: -84.5,21.5 - parent: 1 - type: Transform - - uid: 10557 - components: - - pos: -84.5,20.5 - parent: 1 - type: Transform - - uid: 10558 - components: - - pos: -86.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10559 - components: - - pos: -86.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10560 - components: - - pos: -86.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10561 - components: - - pos: -86.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10562 - components: - - pos: -86.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10563 - components: - - pos: -88.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10564 - components: - - pos: -88.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10565 - components: - - pos: -90.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10566 - components: - - pos: -91.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10567 - components: - - pos: -92.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10568 - components: - - pos: -93.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10569 - components: - - pos: -94.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10570 - components: - - pos: -94.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10571 - components: - - pos: -95.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10572 - components: - - pos: -96.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10573 - components: - - pos: -96.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10574 - components: - - pos: -97.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10576 - components: - - pos: -98.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10577 - components: - - pos: -98.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10578 - components: - - pos: -99.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10579 - components: - - pos: -100.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10581 - components: - - pos: -87.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10582 - components: - - pos: -88.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10583 - components: - - pos: -88.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10584 - components: - - pos: -89.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10585 - components: - - pos: -90.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10586 - components: - - pos: -91.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10587 - components: - - pos: -92.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10588 - components: - - pos: -93.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10589 - components: - - pos: -94.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10590 - components: - - pos: -94.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10591 - components: - - pos: -95.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10592 - components: - - pos: -96.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10593 - components: - - pos: -96.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10594 - components: - - pos: -97.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10595 - components: - - pos: -98.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10596 - components: - - pos: -98.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10597 - components: - - pos: -99.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10598 - components: - - pos: -100.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10706 - components: - - pos: -74.5,20.5 - parent: 1 - type: Transform - - uid: 10707 - components: - - pos: -74.5,19.5 - parent: 1 - type: Transform - - uid: 10708 - components: - - pos: -74.5,18.5 - parent: 1 - type: Transform - - uid: 10709 - components: - - pos: -74.5,17.5 - parent: 1 - type: Transform - - uid: 10710 - components: - - pos: -74.5,16.5 - parent: 1 - type: Transform - - uid: 10711 - components: - - pos: -74.5,15.5 - parent: 1 - type: Transform - - uid: 10714 - components: - - pos: -63.5,31.5 - parent: 1 - type: Transform - - uid: 10715 - components: - - pos: -63.5,30.5 - parent: 1 - type: Transform - - uid: 10716 - components: - - pos: -63.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10717 - components: - - pos: -63.5,28.5 - parent: 1 - type: Transform - - uid: 10724 - components: - - pos: -63.5,27.5 - parent: 1 - type: Transform - - uid: 10895 - components: - - pos: -14.5,60.5 - parent: 1 - type: Transform - - uid: 10896 - components: - - pos: -13.5,60.5 - parent: 1 - type: Transform - - uid: 10897 - components: - - pos: -12.5,60.5 - parent: 1 - type: Transform - - uid: 10898 - components: - - pos: -11.5,60.5 - parent: 1 - type: Transform - - uid: 12834 - components: - - pos: 21.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12835 - components: - - pos: 22.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12836 - components: - - pos: 20.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12837 - components: - - pos: 19.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12838 - components: - - pos: 18.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12839 - components: - - pos: 17.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12840 - components: - - pos: 16.5,26.5 - parent: 1 - type: Transform - - uid: 12841 - components: - - pos: 15.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12842 - components: - - pos: 14.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12843 - components: - - pos: 14.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12844 - components: - - pos: 14.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12845 - components: - - pos: 14.5,23.5 - parent: 1 - type: Transform - - uid: 12846 - components: - - pos: 14.5,22.5 - parent: 1 - type: Transform - - uid: 12847 - components: - - pos: 14.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12848 - components: - - pos: 14.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12849 - components: - - pos: 14.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12850 - components: - - pos: 14.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12851 - components: - - pos: 14.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12860 - components: - - pos: 14.5,16.5 - parent: 1 - type: Transform - - uid: 12861 - components: - - pos: 14.5,15.5 - parent: 1 - type: Transform - - uid: 12862 - components: - - pos: 14.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12863 - components: - - pos: 14.5,13.5 - parent: 1 - type: Transform - - uid: 12864 - components: - - pos: 14.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12865 - components: - - pos: 14.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12866 - components: - - pos: 14.5,10.5 - parent: 1 - type: Transform - - uid: 12867 - components: - - pos: 14.5,9.5 - parent: 1 - type: Transform - - uid: 12868 - components: - - pos: 13.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12869 - components: - - pos: 12.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12870 - components: - - pos: 11.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12871 - components: - - pos: 10.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12872 - components: - - pos: 9.5,9.5 - parent: 1 - type: Transform - - uid: 12873 - components: - - pos: 8.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12874 - components: - - pos: 7.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12875 - components: - - pos: 6.5,9.5 - parent: 1 - type: Transform - - uid: 12876 - components: - - pos: 5.5,9.5 - parent: 1 - type: Transform - - uid: 12877 - components: - - pos: 4.5,9.5 - parent: 1 - type: Transform - - uid: 12878 - components: - - pos: 3.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12879 - components: - - pos: 3.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12880 - components: - - pos: 3.5,11.5 - parent: 1 - type: Transform - - uid: 12881 - components: - - pos: 3.5,12.5 - parent: 1 - type: Transform - - uid: 12882 - components: - - pos: 2.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12883 - components: - - pos: 1.5,12.5 - parent: 1 - type: Transform - - uid: 12884 - components: - - pos: 0.5,12.5 - parent: 1 - type: Transform - - uid: 12885 - components: - - pos: -0.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12886 - components: - - pos: -1.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12887 - components: - - pos: -2.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12888 - components: - - pos: -3.5,12.5 - parent: 1 - type: Transform - - uid: 12889 - components: - - pos: -4.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15013 - components: - - pos: -71.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15014 - components: - - pos: -71.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15015 - components: - - pos: -71.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15233 - components: - - pos: 17.5,46.5 - parent: 1 - type: Transform - - uid: 15327 - components: - - pos: -69.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15328 - components: - - pos: -69.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15329 - components: - - pos: -69.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15330 - components: - - pos: -70.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15331 - components: - - pos: -68.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15332 - components: - - pos: -73.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15405 - components: - - pos: -36.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15406 - components: - - pos: -36.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15407 - components: - - pos: -36.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15408 - components: - - pos: -36.5,59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15409 - components: - - pos: -36.5,60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15410 - components: - - pos: -36.5,61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15411 - components: - - pos: -36.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15412 - components: - - pos: -36.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15413 - components: - - pos: -36.5,64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15414 - components: - - pos: -36.5,65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15415 - components: - - pos: -36.5,66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15416 - components: - - pos: -36.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15417 - components: - - pos: -36.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15418 - components: - - pos: -36.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15419 - components: - - pos: -37.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15420 - components: - - pos: -38.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15421 - components: - - pos: -39.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15422 - components: - - pos: -40.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15423 - components: - - pos: -41.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15424 - components: - - pos: -42.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15425 - components: - - pos: -43.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15426 - components: - - pos: -44.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15462 - components: - - pos: -44.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15463 - components: - - pos: -41.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15466 - components: - - pos: -37.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15468 - components: - - pos: -38.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15469 - components: - - pos: -40.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15470 - components: - - pos: -38.5,59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15471 - components: - - pos: -39.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15476 - components: - - pos: -43.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15477 - components: - - pos: -41.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15479 - components: - - pos: -38.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15485 - components: - - pos: -43.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15486 - components: - - pos: -42.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15811 - components: - - pos: -11.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15812 - components: - - pos: -10.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15813 - components: - - pos: -10.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- proto: CableHVStack - entities: - - uid: 2889 - components: - - pos: 22.480692,-7.43704 - parent: 1 - type: Transform - - uid: 3427 - components: - - pos: -54.44091,29.7276 - parent: 1 - type: Transform - - uid: 8239 - components: - - pos: -7.5488524,8.322083 - parent: 1 - type: Transform -- proto: CableMV - entities: - - uid: 497 - components: - - pos: 7.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 498 - components: - - pos: 6.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 503 - components: - - pos: 5.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 504 - components: - - pos: 4.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 533 - components: - - pos: 3.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 534 - components: - - pos: 2.5,-5.5 - parent: 1 - type: Transform - - uid: 535 - components: - - pos: 1.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 537 - components: - - pos: 0.5,-5.5 - parent: 1 - type: Transform - - uid: 538 - components: - - pos: -0.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 539 - components: - - pos: -1.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 540 - components: - - pos: -2.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 541 - components: - - pos: -3.5,-5.5 - parent: 1 - type: Transform - - uid: 542 - components: - - pos: -4.5,-5.5 - parent: 1 - type: Transform - - uid: 543 - components: - - pos: -4.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 544 - components: - - pos: -4.5,-3.5 - parent: 1 - type: Transform - - uid: 545 - components: - - pos: -4.5,-2.5 - parent: 1 - type: Transform - - uid: 546 - components: - - pos: -4.5,-1.5 - parent: 1 - type: Transform - - uid: 547 - components: - - pos: -4.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 548 - components: - - pos: -1.5,-6.5 - parent: 1 - type: Transform - - uid: 549 - components: - - pos: -1.5,-7.5 - parent: 1 - type: Transform - - uid: 550 - components: - - pos: -1.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 551 - components: - - pos: -1.5,-9.5 - parent: 1 - type: Transform - - uid: 552 - components: - - pos: -1.5,-10.5 - parent: 1 - type: Transform - - uid: 553 - components: - - pos: -0.5,-10.5 - parent: 1 - type: Transform - - uid: 554 - components: - - pos: 0.5,-10.5 - parent: 1 - type: Transform - - uid: 555 - components: - - pos: 1.5,-10.5 - parent: 1 - type: Transform - - uid: 556 - components: - - pos: 2.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 557 - components: - - pos: 2.5,-9.5 - parent: 1 - type: Transform - - uid: 558 - components: - - pos: 2.5,-8.5 - parent: 1 - type: Transform - - uid: 559 - components: - - pos: 2.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 600 - components: - - pos: 8.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 601 - components: - - pos: 9.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 602 - components: - - pos: 10.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 603 - components: - - pos: 11.5,-5.5 - parent: 1 - type: Transform - - uid: 604 - components: - - pos: 11.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 605 - components: - - pos: 11.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 931 - components: - - pos: 25.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 938 - components: - - pos: 26.5,1.5 - parent: 1 - type: Transform - - uid: 939 - components: - - pos: 26.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1014 - components: - - pos: 28.5,23.5 - parent: 1 - type: Transform - - uid: 1015 - components: - - pos: 28.5,24.5 - parent: 1 - type: Transform - - uid: 1508 - components: - - pos: -15.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1509 - components: - - pos: -16.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1510 - components: - - pos: -17.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1643 - components: - - pos: 29.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1675 - components: - - pos: 10.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1676 - components: - - pos: 10.5,-3.5 - parent: 1 - type: Transform - - uid: 1677 - components: - - pos: 10.5,-2.5 - parent: 1 - type: Transform - - uid: 1678 - components: - - pos: 10.5,-1.5 - parent: 1 - type: Transform - - uid: 1679 - components: - - pos: 10.5,-0.5 - parent: 1 - type: Transform - - uid: 1680 - components: - - pos: 10.5,0.5 - parent: 1 - type: Transform - - uid: 1681 - components: - - pos: 11.5,0.5 - parent: 1 - type: Transform - - uid: 1682 - components: - - pos: 12.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2188 - components: - - pos: -4.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2189 - components: - - pos: -3.5,17.5 - parent: 1 - type: Transform - - uid: 2190 - components: - - pos: -3.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2191 - components: - - pos: -3.5,19.5 - parent: 1 - type: Transform - - uid: 2192 - components: - - pos: -3.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2193 - components: - - pos: -3.5,21.5 - parent: 1 - type: Transform - - uid: 2194 - components: - - pos: -3.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2195 - components: - - pos: -3.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2196 - components: - - pos: -2.5,23.5 - parent: 1 - type: Transform - - uid: 2197 - components: - - pos: -1.5,23.5 - parent: 1 - type: Transform - - uid: 2198 - components: - - pos: -0.5,23.5 - parent: 1 - type: Transform - - uid: 2199 - components: - - pos: 0.5,23.5 - parent: 1 - type: Transform - - uid: 2200 - components: - - pos: 1.5,23.5 - parent: 1 - type: Transform - - uid: 2201 - components: - - pos: 2.5,23.5 - parent: 1 - type: Transform - - uid: 2202 - components: - - pos: 3.5,23.5 - parent: 1 - type: Transform - - uid: 2203 - components: - - pos: 3.5,22.5 - parent: 1 - type: Transform - - uid: 2204 - components: - - pos: 3.5,21.5 - parent: 1 - type: Transform - - uid: 2205 - components: - - pos: 2.5,21.5 - parent: 1 - type: Transform - - uid: 2206 - components: - - pos: 1.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2207 - components: - - pos: 4.5,23.5 - parent: 1 - type: Transform - - uid: 2208 - components: - - pos: 4.5,24.5 - parent: 1 - type: Transform - - uid: 2209 - components: - - pos: 4.5,25.5 - parent: 1 - type: Transform - - uid: 2210 - components: - - pos: 4.5,26.5 - parent: 1 - type: Transform - - uid: 2211 - components: - - pos: 4.5,27.5 - parent: 1 - type: Transform - - uid: 2212 - components: - - pos: 4.5,28.5 - parent: 1 - type: Transform - - uid: 2213 - components: - - pos: 4.5,29.5 - parent: 1 - type: Transform - - uid: 2214 - components: - - pos: 4.5,30.5 - parent: 1 - type: Transform - - uid: 2215 - components: - - pos: 4.5,31.5 - parent: 1 - type: Transform - - uid: 2216 - components: - - pos: 4.5,32.5 - parent: 1 - type: Transform - - uid: 2217 - components: - - pos: 4.5,33.5 - parent: 1 - type: Transform - - uid: 2218 - components: - - pos: 4.5,34.5 - parent: 1 - type: Transform - - uid: 2219 - components: - - pos: 4.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2516 - components: - - pos: 23.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2517 - components: - - pos: 22.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2518 - components: - - pos: 22.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2687 - components: - - pos: -5.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2688 - components: - - pos: -6.5,17.5 - parent: 1 - type: Transform - - uid: 2689 - components: - - pos: -7.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2690 - components: - - pos: -8.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2691 - components: - - pos: -9.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2692 - components: - - pos: -9.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2698 - components: - - pos: -10.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2802 - components: - - pos: -18.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2808 - components: - - pos: -19.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2938 - components: - - pos: -20.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3223 - components: - - pos: -20.5,20.5 - parent: 1 - type: Transform - - uid: 3324 - components: - - pos: -20.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3325 - components: - - pos: -21.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3326 - components: - - pos: -22.5,21.5 - parent: 1 - type: Transform - - uid: 3327 - components: - - pos: -23.5,21.5 - parent: 1 - type: Transform - - uid: 3328 - components: - - pos: -24.5,21.5 - parent: 1 - type: Transform - - uid: 3329 - components: - - pos: -24.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3330 - components: - - pos: -24.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3682 - components: - - pos: -31.5,-6.5 - parent: 1 - type: Transform - - uid: 3854 - components: - - pos: -38.5,-6.5 - parent: 1 - type: Transform - - uid: 3934 - components: - - pos: -24.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3935 - components: - - pos: -24.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3936 - components: - - pos: -23.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3937 - components: - - pos: -22.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3938 - components: - - pos: -21.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3939 - components: - - pos: -21.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3940 - components: - - pos: -21.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3941 - components: - - pos: -21.5,-7.5 - parent: 1 - type: Transform - - uid: 3942 - components: - - pos: -22.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3943 - components: - - pos: -23.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3944 - components: - - pos: -24.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3945 - components: - - pos: -25.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3946 - components: - - pos: -26.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3947 - components: - - pos: -26.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3948 - components: - - pos: -26.5,-5.5 - parent: 1 - type: Transform - - uid: 3949 - components: - - pos: -26.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3950 - components: - - pos: -26.5,-3.5 - parent: 1 - type: Transform - - uid: 3951 - components: - - pos: -26.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3952 - components: - - pos: -27.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3953 - components: - - pos: -27.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3954 - components: - - pos: -28.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3955 - components: - - pos: -29.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3956 - components: - - pos: -30.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3957 - components: - - pos: -37.5,-6.5 - parent: 1 - type: Transform - - uid: 3973 - components: - - pos: -40.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3974 - components: - - pos: -41.5,-5.5 - parent: 1 - type: Transform - - uid: 3975 - components: - - pos: -42.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4284 - components: - - pos: -41.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4328 - components: - - pos: -40.5,15.5 - parent: 1 - type: Transform - - uid: 4329 - components: - - pos: -41.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4349 - components: - - pos: -41.5,13.5 - parent: 1 - type: Transform - - uid: 4350 - components: - - pos: -41.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4351 - components: - - pos: -42.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4352 - components: - - pos: -43.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4353 - components: - - pos: -44.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4354 - components: - - pos: -45.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4355 - components: - - pos: -46.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4356 - components: - - pos: -47.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4357 - components: - - pos: -48.5,14.5 - parent: 1 - type: Transform - - uid: 4358 - components: - - pos: -49.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4359 - components: - - pos: -50.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4360 - components: - - pos: -50.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4361 - components: - - pos: -50.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4362 - components: - - pos: -50.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4363 - components: - - pos: -50.5,18.5 - parent: 1 - type: Transform - - uid: 4364 - components: - - pos: -50.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4365 - components: - - pos: -50.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4366 - components: - - pos: -50.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4367 - components: - - pos: -49.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4368 - components: - - pos: -48.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4369 - components: - - pos: -47.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4370 - components: - - pos: -46.5,21.5 - parent: 1 - type: Transform - - uid: 4371 - components: - - pos: -45.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4372 - components: - - pos: -44.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4373 - components: - - pos: -43.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4374 - components: - - pos: -42.5,21.5 - parent: 1 - type: Transform - - uid: 4375 - components: - - pos: -41.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4376 - components: - - pos: -40.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4377 - components: - - pos: -40.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4432 - components: - - pos: -46.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4570 - components: - - pos: -44.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4602 - components: - - pos: -44.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4603 - components: - - pos: -44.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4604 - components: - - pos: -44.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4605 - components: - - pos: -44.5,23.5 - parent: 1 - type: Transform - - uid: 4606 - components: - - pos: -45.5,27.5 - parent: 1 - type: Transform - - uid: 4607 - components: - - pos: -46.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4609 - components: - - pos: -51.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4694 - components: - - pos: -45.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4695 - components: - - pos: -44.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4696 - components: - - pos: -44.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4697 - components: - - pos: -44.5,11.5 - parent: 1 - type: Transform - - uid: 4698 - components: - - pos: -44.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4699 - components: - - pos: -44.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4739 - components: - - pos: -46.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4740 - components: - - pos: -46.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5047 - components: - - pos: -88.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5079 - components: - - pos: -40.5,-6.5 - parent: 1 - type: Transform - - uid: 5080 - components: - - pos: -40.5,-7.5 - parent: 1 - type: Transform - - uid: 5081 - components: - - pos: -40.5,-8.5 - parent: 1 - type: Transform - - uid: 5082 - components: - - pos: -40.5,-9.5 - parent: 1 - type: Transform - - uid: 5083 - components: - - pos: -41.5,-9.5 - parent: 1 - type: Transform - - uid: 5084 - components: - - pos: -42.5,-9.5 - parent: 1 - type: Transform - - uid: 5085 - components: - - pos: -43.5,-9.5 - parent: 1 - type: Transform - - uid: 5086 - components: - - pos: -44.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5087 - components: - - pos: -45.5,-9.5 - parent: 1 - type: Transform - - uid: 5088 - components: - - pos: -46.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5089 - components: - - pos: -47.5,-9.5 - parent: 1 - type: Transform - - uid: 5090 - components: - - pos: -48.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5091 - components: - - pos: -49.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5092 - components: - - pos: -50.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5093 - components: - - pos: -51.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5094 - components: - - pos: -52.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5095 - components: - - pos: -53.5,-9.5 - parent: 1 - type: Transform - - uid: 5096 - components: - - pos: -54.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5097 - components: - - pos: -55.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5098 - components: - - pos: -56.5,-9.5 - parent: 1 - type: Transform - - uid: 5099 - components: - - pos: -56.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5100 - components: - - pos: -56.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5101 - components: - - pos: -55.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5588 - components: - - pos: -44.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5589 - components: - - pos: -46.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5807 - components: - - pos: 17.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6200 - components: - - pos: 18.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6201 - components: - - pos: 17.5,46.5 - parent: 1 - type: Transform - - uid: 6202 - components: - - pos: 16.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6213 - components: - - pos: 17.5,48.5 - parent: 1 - type: Transform - - uid: 6215 - components: - - pos: 16.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6216 - components: - - pos: 17.5,49.5 - parent: 1 - type: Transform - - uid: 6217 - components: - - pos: 16.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6547 - components: - - pos: -3.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6548 - components: - - pos: -4.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6549 - components: - - pos: -4.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7096 - components: - - pos: -20.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7808 - components: - - pos: -53.5,85.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7809 - components: - - pos: -52.5,85.5 - parent: 1 - type: Transform - - uid: 7810 - components: - - pos: -51.5,85.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7811 - components: - - pos: -50.5,85.5 - parent: 1 - type: Transform - - uid: 7812 - components: - - pos: -50.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7813 - components: - - pos: -50.5,83.5 - parent: 1 - type: Transform - - uid: 7814 - components: - - pos: -50.5,82.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7815 - components: - - pos: -50.5,81.5 - parent: 1 - type: Transform - - uid: 7816 - components: - - pos: -50.5,80.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7817 - components: - - pos: -50.5,79.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7818 - components: - - pos: -50.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7819 - components: - - pos: -50.5,77.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7820 - components: - - pos: -50.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7821 - components: - - pos: -50.5,75.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7822 - components: - - pos: -50.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7823 - components: - - pos: -50.5,73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7824 - components: - - pos: -50.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7825 - components: - - pos: -50.5,71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7826 - components: - - pos: -50.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7827 - components: - - pos: -50.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7828 - components: - - pos: -50.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7829 - components: - - pos: -50.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7830 - components: - - pos: -50.5,66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7831 - components: - - pos: -50.5,65.5 - parent: 1 - type: Transform - - uid: 7832 - components: - - pos: -50.5,64.5 - parent: 1 - type: Transform - - uid: 7836 - components: - - pos: -50.5,63.5 - parent: 1 - type: Transform - - uid: 7841 - components: - - pos: -50.5,62.5 - parent: 1 - type: Transform - - uid: 7844 - components: - - pos: -49.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7845 - components: - - pos: -50.5,61.5 - parent: 1 - type: Transform - - uid: 7847 - components: - - pos: -50.5,59.5 - parent: 1 - type: Transform - - uid: 7848 - components: - - pos: -50.5,58.5 - parent: 1 - type: Transform - - uid: 7850 - components: - - pos: -50.5,57.5 - parent: 1 - type: Transform - - uid: 7851 - components: - - pos: -50.5,56.5 - parent: 1 - type: Transform - - uid: 7852 - components: - - pos: -51.5,56.5 - parent: 1 - type: Transform - - uid: 7853 - components: - - pos: -52.5,56.5 - parent: 1 - type: Transform - - uid: 7854 - components: - - pos: -53.5,56.5 - parent: 1 - type: Transform - - uid: 7855 - components: - - pos: -54.5,56.5 - parent: 1 - type: Transform - - uid: 7856 - components: - - pos: -55.5,56.5 - parent: 1 - type: Transform - - uid: 7857 - components: - - pos: -56.5,56.5 - parent: 1 - type: Transform - - uid: 7858 - components: - - pos: -57.5,56.5 - parent: 1 - type: Transform - - uid: 7859 - components: - - pos: -58.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8780 - components: - - pos: -50.5,60.5 - parent: 1 - type: Transform - - uid: 8942 - components: - - pos: -51.5,60.5 - parent: 1 - type: Transform - - uid: 8943 - components: - - pos: -52.5,60.5 - parent: 1 - type: Transform - - uid: 8944 - components: - - pos: -53.5,60.5 - parent: 1 - type: Transform - - uid: 8945 - components: - - pos: -54.5,60.5 - parent: 1 - type: Transform - - uid: 8946 - components: - - pos: -55.5,60.5 - parent: 1 - type: Transform - - uid: 8947 - components: - - pos: -56.5,60.5 - parent: 1 - type: Transform - - uid: 8948 - components: - - pos: -57.5,60.5 - parent: 1 - type: Transform - - uid: 8949 - components: - - pos: -58.5,60.5 - parent: 1 - type: Transform - - uid: 8950 - components: - - pos: -59.5,60.5 - parent: 1 - type: Transform - - uid: 8951 - components: - - pos: -60.5,60.5 - parent: 1 - type: Transform - - uid: 8952 - components: - - pos: -61.5,60.5 - parent: 1 - type: Transform - - uid: 8953 - components: - - pos: -62.5,60.5 - parent: 1 - type: Transform - - uid: 8954 - components: - - pos: -63.5,60.5 - parent: 1 - type: Transform - - uid: 8955 - components: - - pos: -63.5,59.5 - parent: 1 - type: Transform - - uid: 8956 - components: - - pos: -63.5,58.5 - parent: 1 - type: Transform - - uid: 8957 - components: - - pos: -63.5,57.5 - parent: 1 - type: Transform - - uid: 8958 - components: - - pos: -64.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8959 - components: - - pos: -65.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9381 - components: - - pos: -35.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9382 - components: - - pos: -34.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9383 - components: - - pos: -34.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9384 - components: - - pos: -34.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9385 - components: - - pos: -33.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9386 - components: - - pos: -32.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9387 - components: - - pos: -32.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9388 - components: - - pos: -32.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9389 - components: - - pos: -32.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9390 - components: - - pos: -32.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9391 - components: - - pos: -32.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9392 - components: - - pos: -31.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9393 - components: - - pos: -31.5,49.5 - parent: 1 - type: Transform - - uid: 9394 - components: - - pos: -31.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9396 - components: - - pos: -30.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9397 - components: - - pos: -29.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9398 - components: - - pos: -28.5,50.5 - parent: 1 - type: Transform - - uid: 9399 - components: - - pos: -27.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9400 - components: - - pos: -26.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9401 - components: - - pos: -25.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9402 - components: - - pos: -24.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9403 - components: - - pos: -24.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9404 - components: - - pos: -24.5,48.5 - parent: 1 - type: Transform - - uid: 9405 - components: - - pos: -24.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9406 - components: - - pos: -24.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9407 - components: - - pos: -24.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9408 - components: - - pos: -24.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9409 - components: - - pos: -24.5,43.5 - parent: 1 - type: Transform - - uid: 9410 - components: - - pos: -24.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9411 - components: - - pos: -24.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9412 - components: - - pos: -24.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9413 - components: - - pos: -24.5,39.5 - parent: 1 - type: Transform - - uid: 9414 - components: - - pos: -24.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9415 - components: - - pos: -25.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9416 - components: - - pos: -26.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9495 - components: - - pos: -23.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9642 - components: - - pos: -20.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9643 - components: - - pos: -21.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9644 - components: - - pos: -21.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9645 - components: - - pos: -22.5,23.5 - parent: 1 - type: Transform - - uid: 9646 - components: - - pos: -23.5,23.5 - parent: 1 - type: Transform - - uid: 9647 - components: - - pos: -24.5,23.5 - parent: 1 - type: Transform - - uid: 9648 - components: - - pos: -25.5,23.5 - parent: 1 - type: Transform - - uid: 9649 - components: - - pos: -26.5,23.5 - parent: 1 - type: Transform - - uid: 9650 - components: - - pos: -27.5,23.5 - parent: 1 - type: Transform - - uid: 9651 - components: - - pos: -28.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9652 - components: - - pos: -29.5,23.5 - parent: 1 - type: Transform - - uid: 9653 - components: - - pos: -29.5,24.5 - parent: 1 - type: Transform - - uid: 9654 - components: - - pos: -29.5,25.5 - parent: 1 - type: Transform - - uid: 9655 - components: - - pos: -29.5,26.5 - parent: 1 - type: Transform - - uid: 9656 - components: - - pos: -29.5,27.5 - parent: 1 - type: Transform - - uid: 9657 - components: - - pos: -29.5,28.5 - parent: 1 - type: Transform - - uid: 9658 - components: - - pos: -29.5,29.5 - parent: 1 - type: Transform - - uid: 9659 - components: - - pos: -29.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10021 - components: - - pos: -65.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10022 - components: - - pos: -65.5,59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10213 - components: - - pos: -79.5,27.5 - parent: 1 - type: Transform - - uid: 10214 - components: - - pos: -80.5,27.5 - parent: 1 - type: Transform - - uid: 10215 - components: - - pos: -81.5,27.5 - parent: 1 - type: Transform - - uid: 10217 - components: - - pos: -82.5,27.5 - parent: 1 - type: Transform - - uid: 10218 - components: - - pos: -83.5,27.5 - parent: 1 - type: Transform - - uid: 10219 - components: - - pos: -84.5,27.5 - parent: 1 - type: Transform - - uid: 10220 - components: - - pos: -84.5,28.5 - parent: 1 - type: Transform - - uid: 10221 - components: - - pos: -84.5,29.5 - parent: 1 - type: Transform - - uid: 10222 - components: - - pos: -84.5,30.5 - parent: 1 - type: Transform - - uid: 10223 - components: - - pos: -85.5,30.5 - parent: 1 - type: Transform - - uid: 10224 - components: - - pos: -86.5,30.5 - parent: 1 - type: Transform - - uid: 10237 - components: - - pos: -39.5,-6.5 - parent: 1 - type: Transform - - uid: 10271 - components: - - pos: -35.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10277 - components: - - pos: -34.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10285 - components: - - pos: -33.5,-6.5 - parent: 1 - type: Transform - - uid: 10288 - components: - - pos: -32.5,-6.5 - parent: 1 - type: Transform - - uid: 10298 - components: - - pos: -36.5,-6.5 - parent: 1 - type: Transform - - uid: 10318 - components: - - pos: -20.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10320 - components: - - pos: -20.5,17.5 - parent: 1 - type: Transform - - uid: 10430 - components: - - pos: -42.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10522 - components: - - pos: -87.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10523 - components: - - pos: -88.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10524 - components: - - pos: -79.5,26.5 - parent: 1 - type: Transform - - uid: 10525 - components: - - pos: -79.5,25.5 - parent: 1 - type: Transform - - uid: 10526 - components: - - pos: -79.5,24.5 - parent: 1 - type: Transform - - uid: 10527 - components: - - pos: -79.5,23.5 - parent: 1 - type: Transform - - uid: 10528 - components: - - pos: -80.5,23.5 - parent: 1 - type: Transform - - uid: 10529 - components: - - pos: -81.5,23.5 - parent: 1 - type: Transform - - uid: 10530 - components: - - pos: -82.5,23.5 - parent: 1 - type: Transform - - uid: 10531 - components: - - pos: -83.5,23.5 - parent: 1 - type: Transform - - uid: 10532 - components: - - pos: -84.5,23.5 - parent: 1 - type: Transform - - uid: 10533 - components: - - pos: -84.5,22.5 - parent: 1 - type: Transform - - uid: 10534 - components: - - pos: -84.5,21.5 - parent: 1 - type: Transform - - uid: 10537 - components: - - pos: -84.5,20.5 - parent: 1 - type: Transform - - uid: 10546 - components: - - pos: -85.5,20.5 - parent: 1 - type: Transform - - uid: 10547 - components: - - pos: -86.5,20.5 - parent: 1 - type: Transform - - uid: 10548 - components: - - pos: -87.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10617 - components: - - pos: -101.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10618 - components: - - pos: -93.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10619 - components: - - pos: -93.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10620 - components: - - pos: -101.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10621 - components: - - pos: -101.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10622 - components: - - pos: -104.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10623 - components: - - pos: -105.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10624 - components: - - pos: -105.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10625 - components: - - pos: -105.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10626 - components: - - pos: -105.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10627 - components: - - pos: -105.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10628 - components: - - pos: -105.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10629 - components: - - pos: -105.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10630 - components: - - pos: -105.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10631 - components: - - pos: -105.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10632 - components: - - pos: -105.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10633 - components: - - pos: -105.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10634 - components: - - pos: -105.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10635 - components: - - pos: -105.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10636 - components: - - pos: -104.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10637 - components: - - pos: -101.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10638 - components: - - pos: -93.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10639 - components: - - pos: -93.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10640 - components: - - pos: -90.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10641 - components: - - pos: -90.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10642 - components: - - pos: -89.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10643 - components: - - pos: -89.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10981 - components: - - pos: -66.5,57.5 - parent: 1 - type: Transform - - uid: 10982 - components: - - pos: -67.5,57.5 - parent: 1 - type: Transform - - uid: 10983 - components: - - pos: -67.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10984 - components: - - pos: -67.5,55.5 - parent: 1 - type: Transform - - uid: 10985 - components: - - pos: -67.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10986 - components: - - pos: -67.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10987 - components: - - pos: -67.5,52.5 - parent: 1 - type: Transform - - uid: 10988 - components: - - pos: -67.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10989 - components: - - pos: -67.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10990 - components: - - pos: -66.5,50.5 - parent: 1 - type: Transform - - uid: 10991 - components: - - pos: -66.5,49.5 - parent: 1 - type: Transform - - uid: 10992 - components: - - pos: -66.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10993 - components: - - pos: -66.5,47.5 - parent: 1 - type: Transform - - uid: 10994 - components: - - pos: -66.5,46.5 - parent: 1 - type: Transform - - uid: 10995 - components: - - pos: -66.5,45.5 - parent: 1 - type: Transform - - uid: 10996 - components: - - pos: -66.5,44.5 - parent: 1 - type: Transform - - uid: 10997 - components: - - pos: -65.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11064 - components: - - pos: -71.5,34.5 - parent: 1 - type: Transform - - uid: 11065 - components: - - pos: -70.5,34.5 - parent: 1 - type: Transform - - uid: 11066 - components: - - pos: -69.5,34.5 - parent: 1 - type: Transform - - uid: 11067 - components: - - pos: -68.5,34.5 - parent: 1 - type: Transform - - uid: 11068 - components: - - pos: -68.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11069 - components: - - pos: -72.5,34.5 - parent: 1 - type: Transform - - uid: 11070 - components: - - pos: -73.5,34.5 - parent: 1 - type: Transform - - uid: 11071 - components: - - pos: -74.5,34.5 - parent: 1 - type: Transform - - uid: 11072 - components: - - pos: -75.5,34.5 - parent: 1 - type: Transform - - uid: 11073 - components: - - pos: -76.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11074 - components: - - pos: -76.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11075 - components: - - pos: -76.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11076 - components: - - pos: -73.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11077 - components: - - pos: -73.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11078 - components: - - pos: -73.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11079 - components: - - pos: -73.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11080 - components: - - pos: -73.5,30.5 - parent: 1 - type: Transform - - uid: 11081 - components: - - pos: -73.5,29.5 - parent: 1 - type: Transform - - uid: 11082 - components: - - pos: -73.5,28.5 - parent: 1 - type: Transform - - uid: 11085 - components: - - pos: -73.5,27.5 - parent: 1 - type: Transform - - uid: 11091 - components: - - pos: -73.5,26.5 - parent: 1 - type: Transform - - uid: 11114 - components: - - pos: -73.5,25.5 - parent: 1 - type: Transform - - uid: 11116 - components: - - pos: -73.5,24.5 - parent: 1 - type: Transform - - uid: 11120 - components: - - pos: -73.5,23.5 - parent: 1 - type: Transform - - uid: 11121 - components: - - pos: -73.5,22.5 - parent: 1 - type: Transform - - uid: 11157 - components: - - pos: -73.5,21.5 - parent: 1 - type: Transform - - uid: 11158 - components: - - pos: -74.5,21.5 - parent: 1 - type: Transform - - uid: 11159 - components: - - pos: -75.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14947 - components: - - pos: -72.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14948 - components: - - pos: -71.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14949 - components: - - pos: -71.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15235 - components: - - pos: 17.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15236 - components: - - pos: 16.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- proto: CableMVStack - entities: - - uid: 2888 - components: - - pos: 25.496317,-8.37454 - parent: 1 - type: Transform - - uid: 3424 - components: - - pos: -54.175285,29.57135 - parent: 1 - type: Transform - - uid: 15989 - components: - - pos: -7.5488524,8.259583 - parent: 1 - type: Transform -- proto: CableTerminal - entities: - - uid: 906 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-8.5 - parent: 1 - type: Transform - - uid: 930 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,3.5 - parent: 1 - type: Transform - - uid: 1028 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,23.5 - parent: 1 - type: Transform - - uid: 10167 - components: - - rot: -1.5707963267948966 rad - pos: -70.5,29.5 - parent: 1 - type: Transform - - uid: 10171 - components: - - rot: -1.5707963267948966 rad - pos: -70.5,31.5 - parent: 1 - type: Transform - - uid: 10173 - components: - - rot: -1.5707963267948966 rad - pos: -70.5,30.5 - parent: 1 - type: Transform - - uid: 10175 - components: - - rot: -1.5707963267948966 rad - pos: -70.5,28.5 - parent: 1 - type: Transform -- proto: CannabisSeeds - entities: - - uid: 29 - components: - - pos: -37.356266,49.664383 - parent: 1 - type: Transform - - uid: 65 - components: - - pos: -37.481266,49.508133 - parent: 1 - type: Transform -- proto: Carpet - entities: - - uid: 1799 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-0.5 - parent: 1 - type: Transform - - uid: 1800 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,0.5 - parent: 1 - type: Transform - - uid: 1801 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,1.5 - parent: 1 - type: Transform - - uid: 1802 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,2.5 - parent: 1 - type: Transform - - uid: 1803 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,3.5 - parent: 1 - type: Transform - - uid: 1804 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,3.5 - parent: 1 - type: Transform - - uid: 1805 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,3.5 - parent: 1 - type: Transform - - uid: 1806 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,3.5 - parent: 1 - type: Transform - - uid: 1807 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,3.5 - parent: 1 - type: Transform - - uid: 5916 - components: - - pos: -7.5,44.5 - parent: 1 - type: Transform - - uid: 5917 - components: - - pos: -7.5,43.5 - parent: 1 - type: Transform - - uid: 5918 - components: - - pos: -7.5,42.5 - parent: 1 - type: Transform - - uid: 5919 - components: - - pos: -7.5,41.5 - parent: 1 - type: Transform - - uid: 5920 - components: - - pos: -7.5,40.5 - parent: 1 - type: Transform - - uid: 5921 - components: - - pos: -7.5,39.5 - parent: 1 - type: Transform - - uid: 5922 - components: - - pos: -8.5,40.5 - parent: 1 - type: Transform - - uid: 5923 - components: - - pos: -9.5,40.5 - parent: 1 - type: Transform - - uid: 5924 - components: - - pos: -6.5,40.5 - parent: 1 - type: Transform - - uid: 5925 - components: - - pos: -5.5,40.5 - parent: 1 - type: Transform - - uid: 8933 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,63.5 - parent: 1 - type: Transform - - uid: 8934 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,64.5 - parent: 1 - type: Transform - - uid: 8935 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,65.5 - parent: 1 - type: Transform - - uid: 8936 - components: - - rot: 1.5707963267948966 rad - pos: -60.5,63.5 - parent: 1 - type: Transform - - uid: 8937 - components: - - rot: 1.5707963267948966 rad - pos: -60.5,64.5 - parent: 1 - type: Transform - - uid: 8938 - components: - - rot: 1.5707963267948966 rad - pos: -60.5,65.5 - parent: 1 - type: Transform - - uid: 8939 - components: - - rot: 1.5707963267948966 rad - pos: -61.5,63.5 - parent: 1 - type: Transform - - uid: 8940 - components: - - rot: 1.5707963267948966 rad - pos: -61.5,64.5 - parent: 1 - type: Transform - - uid: 8941 - components: - - rot: 1.5707963267948966 rad - pos: -61.5,65.5 - parent: 1 - type: Transform - - uid: 12611 - components: - - pos: 15.5,-1.5 - parent: 1 - type: Transform - - uid: 12612 - components: - - pos: 15.5,-2.5 - parent: 1 - type: Transform -- proto: CarpetBlack - entities: - - uid: 3499 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,9.5 - parent: 1 - type: Transform - - uid: 4703 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,9.5 - parent: 1 - type: Transform - - uid: 4706 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,9.5 - parent: 1 - type: Transform -- proto: CarpetBlue - entities: - - uid: 7530 - components: - - pos: -22.5,47.5 - parent: 1 - type: Transform - - uid: 7531 - components: - - pos: -22.5,45.5 - parent: 1 - type: Transform - - uid: 7532 - components: - - pos: -21.5,45.5 - parent: 1 - type: Transform - - uid: 7533 - components: - - pos: -22.5,46.5 - parent: 1 - type: Transform - - uid: 7534 - components: - - pos: -21.5,47.5 - parent: 1 - type: Transform - - uid: 7535 - components: - - pos: -21.5,46.5 - parent: 1 - type: Transform - - uid: 12785 - components: - - pos: 14.5,30.5 - parent: 1 - type: Transform - - uid: 12786 - components: - - pos: 14.5,31.5 - parent: 1 - type: Transform - - uid: 12787 - components: - - pos: 14.5,32.5 - parent: 1 - type: Transform - - uid: 12788 - components: - - pos: 15.5,30.5 - parent: 1 - type: Transform - - uid: 12789 - components: - - pos: 15.5,31.5 - parent: 1 - type: Transform - - uid: 12790 - components: - - pos: 15.5,32.5 - parent: 1 - type: Transform - - uid: 12791 - components: - - pos: 16.5,30.5 - parent: 1 - type: Transform - - uid: 12792 - components: - - pos: 16.5,31.5 - parent: 1 - type: Transform - - uid: 12793 - components: - - pos: 16.5,32.5 - parent: 1 - type: Transform -- proto: CarpetChapel - entities: - - uid: 1774 - components: - - pos: 13.5,-0.5 - parent: 1 - type: Transform - - uid: 1775 - components: - - pos: 13.5,1.5 - parent: 1 - type: Transform - - uid: 1776 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,2.5 - parent: 1 - type: Transform - - uid: 1777 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,0.5 - parent: 1 - type: Transform - - uid: 1780 - components: - - rot: 3.141592653589793 rad - pos: 14.5,0.5 - parent: 1 - type: Transform - - uid: 1781 - components: - - rot: 3.141592653589793 rad - pos: 14.5,2.5 - parent: 1 - type: Transform - - uid: 1782 - components: - - rot: 3.141592653589793 rad - pos: 17.5,2.5 - parent: 1 - type: Transform - - uid: 1783 - components: - - rot: 3.141592653589793 rad - pos: 17.5,0.5 - parent: 1 - type: Transform - - uid: 1784 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-1.5 - parent: 1 - type: Transform - - uid: 1785 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-2.5 - parent: 1 - type: Transform - - uid: 1786 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-0.5 - parent: 1 - type: Transform - - uid: 1787 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,1.5 - parent: 1 - type: Transform - - uid: 1788 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,1.5 - parent: 1 - type: Transform - - uid: 1789 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-0.5 - parent: 1 - type: Transform - - uid: 1791 - components: - - pos: 16.5,-2.5 - parent: 1 - type: Transform - - uid: 1792 - components: - - pos: 16.5,-0.5 - parent: 1 - type: Transform - - uid: 1793 - components: - - pos: 16.5,1.5 - parent: 1 - type: Transform - - uid: 1794 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,2.5 - parent: 1 - type: Transform - - uid: 1795 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,0.5 - parent: 1 - type: Transform - - uid: 1796 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-1.5 - parent: 1 - type: Transform - - uid: 12607 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-1.5 - parent: 1 - type: Transform - - uid: 12608 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-1.5 - parent: 1 - type: Transform - - uid: 12609 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-2.5 - parent: 1 - type: Transform - - uid: 12610 - components: - - pos: 13.5,-2.5 - parent: 1 - type: Transform -- proto: CarpetGreen - entities: - - uid: 14438 - components: - - pos: -71.5,8.5 - parent: 1 - type: Transform - - uid: 14439 - components: - - pos: -71.5,9.5 - parent: 1 - type: Transform - - uid: 14440 - components: - - pos: -71.5,10.5 - parent: 1 - type: Transform - - uid: 14441 - components: - - pos: -71.5,11.5 - parent: 1 - type: Transform - - uid: 14442 - components: - - pos: -71.5,12.5 - parent: 1 - type: Transform - - uid: 14443 - components: - - pos: -71.5,13.5 - parent: 1 - type: Transform - - uid: 14444 - components: - - pos: -70.5,8.5 - parent: 1 - type: Transform - - uid: 14445 - components: - - pos: -70.5,9.5 - parent: 1 - type: Transform - - uid: 14446 - components: - - pos: -70.5,10.5 - parent: 1 - type: Transform - - uid: 14447 - components: - - pos: -70.5,11.5 - parent: 1 - type: Transform - - uid: 14448 - components: - - pos: -70.5,12.5 - parent: 1 - type: Transform - - uid: 14449 - components: - - pos: -70.5,13.5 - parent: 1 - type: Transform - - uid: 14450 - components: - - pos: -72.5,9.5 - parent: 1 - type: Transform - - uid: 14451 - components: - - pos: -69.5,9.5 - parent: 1 - type: Transform -- proto: CarpetOrange - entities: - - uid: 4082 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-4.5 - parent: 1 - type: Transform - - uid: 4083 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-3.5 - parent: 1 - type: Transform - - uid: 4085 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-4.5 - parent: 1 - type: Transform - - uid: 4086 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-3.5 - parent: 1 - type: Transform - - uid: 4087 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-2.5 - parent: 1 - type: Transform - - uid: 4088 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-4.5 - parent: 1 - type: Transform - - uid: 4089 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-3.5 - parent: 1 - type: Transform - - uid: 4090 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-2.5 - parent: 1 - type: Transform - - uid: 14216 - components: - - pos: -69.5,15.5 - parent: 1 - type: Transform - - uid: 14217 - components: - - pos: -69.5,16.5 - parent: 1 - type: Transform - - uid: 14219 - components: - - pos: -68.5,15.5 - parent: 1 - type: Transform - - uid: 14220 - components: - - pos: -68.5,16.5 - parent: 1 - type: Transform -- proto: CarpetPurple - entities: - - uid: 2471 - components: - - pos: -1.5,1.5 - parent: 1 - type: Transform - - uid: 2472 - components: - - pos: -1.5,2.5 - parent: 1 - type: Transform - - uid: 2473 - components: - - pos: -2.5,1.5 - parent: 1 - type: Transform - - uid: 2474 - components: - - pos: -2.5,2.5 - parent: 1 - type: Transform - - uid: 2475 - components: - - pos: -16.5,-5.5 - parent: 1 - type: Transform - - uid: 2476 - components: - - pos: -16.5,-4.5 - parent: 1 - type: Transform - - uid: 2477 - components: - - pos: -16.5,-3.5 - parent: 1 - type: Transform - - uid: 2478 - components: - - pos: -17.5,-5.5 - parent: 1 - type: Transform - - uid: 2479 - components: - - pos: -17.5,-4.5 - parent: 1 - type: Transform - - uid: 2480 - components: - - pos: -17.5,-3.5 - parent: 1 - type: Transform - - uid: 2481 - components: - - pos: -18.5,-5.5 - parent: 1 - type: Transform - - uid: 2482 - components: - - pos: -18.5,-4.5 - parent: 1 - type: Transform - - uid: 2483 - components: - - pos: -18.5,-3.5 - parent: 1 - type: Transform - - uid: 9749 - components: - - pos: -38.5,38.5 - parent: 1 - type: Transform - - uid: 9759 - components: - - pos: -38.5,37.5 - parent: 1 - type: Transform - - uid: 9760 - components: - - pos: -38.5,36.5 - parent: 1 - type: Transform - - uid: 9761 - components: - - pos: -37.5,38.5 - parent: 1 - type: Transform - - uid: 9762 - components: - - pos: -37.5,37.5 - parent: 1 - type: Transform - - uid: 9763 - components: - - pos: -37.5,36.5 - parent: 1 - type: Transform - - uid: 9764 - components: - - pos: -36.5,38.5 - parent: 1 - type: Transform - - uid: 9765 - components: - - pos: -36.5,37.5 - parent: 1 - type: Transform - - uid: 9766 - components: - - pos: -36.5,36.5 - parent: 1 - type: Transform -- proto: Catwalk - entities: - - uid: 5 - components: - - pos: -86.5,46.5 - parent: 1 - type: Transform - - uid: 118 - components: - - pos: -86.5,33.5 - parent: 1 - type: Transform - - uid: 120 - components: - - pos: -86.5,35.5 - parent: 1 - type: Transform - - uid: 126 - components: - - pos: -86.5,37.5 - parent: 1 - type: Transform - - uid: 519 - components: - - pos: -86.5,38.5 - parent: 1 - type: Transform - - uid: 520 - components: - - pos: -86.5,36.5 - parent: 1 - type: Transform - - uid: 521 - components: - - pos: -86.5,34.5 - parent: 1 - type: Transform - - uid: 721 - components: - - pos: 19.5,-19.5 - parent: 1 - type: Transform - - uid: 861 - components: - - pos: 18.5,-15.5 - parent: 1 - type: Transform - - uid: 862 - components: - - pos: 19.5,-15.5 - parent: 1 - type: Transform - - uid: 863 - components: - - pos: 20.5,-15.5 - parent: 1 - type: Transform - - uid: 864 - components: - - pos: 21.5,-15.5 - parent: 1 - type: Transform - - uid: 865 - components: - - pos: 22.5,-15.5 - parent: 1 - type: Transform - - uid: 866 - components: - - pos: 23.5,-15.5 - parent: 1 - type: Transform - - uid: 867 - components: - - pos: 24.5,-15.5 - parent: 1 - type: Transform - - uid: 868 - components: - - pos: 25.5,-15.5 - parent: 1 - type: Transform - - uid: 869 - components: - - pos: 26.5,-15.5 - parent: 1 - type: Transform - - uid: 870 - components: - - pos: 27.5,-15.5 - parent: 1 - type: Transform - - uid: 871 - components: - - pos: 28.5,-15.5 - parent: 1 - type: Transform - - uid: 872 - components: - - pos: 20.5,-19.5 - parent: 1 - type: Transform - - uid: 873 - components: - - pos: 21.5,-19.5 - parent: 1 - type: Transform - - uid: 874 - components: - - pos: 22.5,-19.5 - parent: 1 - type: Transform - - uid: 875 - components: - - pos: 23.5,-19.5 - parent: 1 - type: Transform - - uid: 876 - components: - - pos: 24.5,-19.5 - parent: 1 - type: Transform - - uid: 877 - components: - - pos: 25.5,-19.5 - parent: 1 - type: Transform - - uid: 878 - components: - - pos: 26.5,-19.5 - parent: 1 - type: Transform - - uid: 879 - components: - - pos: 27.5,-19.5 - parent: 1 - type: Transform - - uid: 880 - components: - - pos: 28.5,-19.5 - parent: 1 - type: Transform - - uid: 882 - components: - - pos: 20.5,-23.5 - parent: 1 - type: Transform - - uid: 883 - components: - - pos: 21.5,-23.5 - parent: 1 - type: Transform - - uid: 884 - components: - - pos: 22.5,-23.5 - parent: 1 - type: Transform - - uid: 885 - components: - - pos: 23.5,-23.5 - parent: 1 - type: Transform - - uid: 886 - components: - - pos: 24.5,-23.5 - parent: 1 - type: Transform - - uid: 887 - components: - - pos: 25.5,-23.5 - parent: 1 - type: Transform - - uid: 888 - components: - - pos: 26.5,-23.5 - parent: 1 - type: Transform - - uid: 889 - components: - - pos: 27.5,-23.5 - parent: 1 - type: Transform - - uid: 890 - components: - - pos: 28.5,-23.5 - parent: 1 - type: Transform - - uid: 891 - components: - - pos: 28.5,-24.5 - parent: 1 - type: Transform - - uid: 892 - components: - - pos: 28.5,-22.5 - parent: 1 - type: Transform - - uid: 893 - components: - - pos: 28.5,-21.5 - parent: 1 - type: Transform - - uid: 894 - components: - - pos: 28.5,-20.5 - parent: 1 - type: Transform - - uid: 895 - components: - - pos: 28.5,-18.5 - parent: 1 - type: Transform - - uid: 896 - components: - - pos: 28.5,-17.5 - parent: 1 - type: Transform - - uid: 897 - components: - - pos: 28.5,-16.5 - parent: 1 - type: Transform - - uid: 898 - components: - - pos: 28.5,-14.5 - parent: 1 - type: Transform - - uid: 899 - components: - - pos: 28.5,-13.5 - parent: 1 - type: Transform - - uid: 900 - components: - - pos: 28.5,-12.5 - parent: 1 - type: Transform - - uid: 901 - components: - - pos: 28.5,-11.5 - parent: 1 - type: Transform - - uid: 902 - components: - - pos: 28.5,-10.5 - parent: 1 - type: Transform - - uid: 2010 - components: - - pos: -5.5,16.5 - parent: 1 - type: Transform - - uid: 2011 - components: - - pos: -5.5,15.5 - parent: 1 - type: Transform - - uid: 2890 - components: - - pos: 28.5,-5.5 - parent: 1 - type: Transform - - uid: 2892 - components: - - pos: 26.5,-5.5 - parent: 1 - type: Transform - - uid: 2894 - components: - - pos: 24.5,-5.5 - parent: 1 - type: Transform - - uid: 2896 - components: - - pos: 22.5,-5.5 - parent: 1 - type: Transform - - uid: 2897 - components: - - pos: 21.5,-5.5 - parent: 1 - type: Transform - - uid: 2898 - components: - - pos: 20.5,-5.5 - parent: 1 - type: Transform - - uid: 2899 - components: - - pos: 19.5,-5.5 - parent: 1 - type: Transform - - uid: 2901 - components: - - pos: 17.5,-5.5 - parent: 1 - type: Transform - - uid: 2903 - components: - - pos: 15.5,-5.5 - parent: 1 - type: Transform - - uid: 2904 - components: - - pos: 14.5,-5.5 - parent: 1 - type: Transform - - uid: 2906 - components: - - pos: 12.5,-5.5 - parent: 1 - type: Transform - - uid: 2908 - components: - - pos: 10.5,-5.5 - parent: 1 - type: Transform - - uid: 2909 - components: - - pos: 5.5,-5.5 - parent: 1 - type: Transform - - uid: 2911 - components: - - pos: 4.5,-4.5 - parent: 1 - type: Transform - - uid: 2913 - components: - - pos: 4.5,-2.5 - parent: 1 - type: Transform - - uid: 2915 - components: - - pos: 4.5,-0.5 - parent: 1 - type: Transform - - uid: 2916 - components: - - pos: 4.5,0.5 - parent: 1 - type: Transform - - uid: 2918 - components: - - pos: 3.5,-5.5 - parent: 1 - type: Transform - - uid: 2920 - components: - - pos: 1.5,-5.5 - parent: 1 - type: Transform - - uid: 2932 - components: - - pos: 23.5,-4.5 - parent: 1 - type: Transform - - uid: 2933 - components: - - pos: 23.5,-3.5 - parent: 1 - type: Transform - - uid: 2935 - components: - - pos: 23.5,-1.5 - parent: 1 - type: Transform - - uid: 2937 - components: - - pos: 23.5,0.5 - parent: 1 - type: Transform - - uid: 2939 - components: - - pos: 22.5,1.5 - parent: 1 - type: Transform - - uid: 2940 - components: - - pos: 22.5,2.5 - parent: 1 - type: Transform - - uid: 3889 - components: - - pos: -28.5,2.5 - parent: 1 - type: Transform - - uid: 4762 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-4.5 - parent: 1 - type: Transform - - uid: 4763 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 1 - type: Transform - - uid: 4764 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-6.5 - parent: 1 - type: Transform - - uid: 4765 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-4.5 - parent: 1 - type: Transform - - uid: 4766 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-4.5 - parent: 1 - type: Transform - - uid: 4767 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-4.5 - parent: 1 - type: Transform - - uid: 4768 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-2.5 - parent: 1 - type: Transform - - uid: 4771 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-8.5 - parent: 1 - type: Transform - - uid: 4772 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-7.5 - parent: 1 - type: Transform - - uid: 4773 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-8.5 - parent: 1 - type: Transform - - uid: 4774 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-8.5 - parent: 1 - type: Transform - - uid: 5026 - components: - - pos: -66.5,11.5 - parent: 1 - type: Transform - - uid: 5033 - components: - - pos: -60.5,8.5 - parent: 1 - type: Transform - - uid: 5039 - components: - - pos: -67.5,9.5 - parent: 1 - type: Transform - - uid: 5040 - components: - - pos: -62.5,8.5 - parent: 1 - type: Transform - - uid: 5053 - components: - - pos: -65.5,8.5 - parent: 1 - type: Transform - - uid: 5189 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-2.5 - parent: 1 - type: Transform - - uid: 5246 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-8.5 - parent: 1 - type: Transform - - uid: 5247 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,0.5 - parent: 1 - type: Transform - - uid: 5370 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,0.5 - parent: 1 - type: Transform - - uid: 5371 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-6.5 - parent: 1 - type: Transform - - uid: 5372 - components: - - pos: -28.5,-0.5 - parent: 1 - type: Transform - - uid: 5373 - components: - - pos: -28.5,-1.5 - parent: 1 - type: Transform - - uid: 5375 - components: - - pos: -28.5,-3.5 - parent: 1 - type: Transform - - uid: 5376 - components: - - pos: -28.5,-4.5 - parent: 1 - type: Transform - - uid: 5377 - components: - - pos: -28.5,-5.5 - parent: 1 - type: Transform - - uid: 5381 - components: - - pos: -26.5,-6.5 - parent: 1 - type: Transform - - uid: 5383 - components: - - pos: -25.5,-7.5 - parent: 1 - type: Transform - - uid: 5384 - components: - - pos: -24.5,-7.5 - parent: 1 - type: Transform - - uid: 5386 - components: - - pos: -22.5,-7.5 - parent: 1 - type: Transform - - uid: 5388 - components: - - pos: -21.5,-6.5 - parent: 1 - type: Transform - - uid: 5390 - components: - - pos: -21.5,-4.5 - parent: 1 - type: Transform - - uid: 5391 - components: - - pos: -21.5,-3.5 - parent: 1 - type: Transform - - uid: 5394 - components: - - pos: -21.5,-0.5 - parent: 1 - type: Transform - - uid: 5396 - components: - - pos: -21.5,1.5 - parent: 1 - type: Transform - - uid: 5398 - components: - - pos: -19.5,1.5 - parent: 1 - type: Transform - - uid: 5399 - components: - - pos: -18.5,1.5 - parent: 1 - type: Transform - - uid: 5400 - components: - - pos: -17.5,1.5 - parent: 1 - type: Transform - - uid: 5402 - components: - - pos: -15.5,1.5 - parent: 1 - type: Transform - - uid: 5466 - components: - - pos: -48.5,1.5 - parent: 1 - type: Transform - - uid: 5468 - components: - - pos: -48.5,-0.5 - parent: 1 - type: Transform - - uid: 5469 - components: - - pos: -48.5,-1.5 - parent: 1 - type: Transform - - uid: 5471 - components: - - pos: -48.5,-3.5 - parent: 1 - type: Transform - - uid: 5474 - components: - - pos: -48.5,-6.5 - parent: 1 - type: Transform - - uid: 5475 - components: - - pos: -48.5,-7.5 - parent: 1 - type: Transform - - uid: 5479 - components: - - pos: -52.5,-9.5 - parent: 1 - type: Transform - - uid: 5480 - components: - - pos: -51.5,-9.5 - parent: 1 - type: Transform - - uid: 5482 - components: - - pos: -49.5,-9.5 - parent: 1 - type: Transform - - uid: 5483 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,2.5 - parent: 1 - type: Transform - - uid: 5484 - components: - - pos: -47.5,-9.5 - parent: 1 - type: Transform - - uid: 5485 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,1.5 - parent: 1 - type: Transform - - uid: 5486 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,19.5 - parent: 1 - type: Transform - - uid: 5487 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,17.5 - parent: 1 - type: Transform - - uid: 5488 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,17.5 - parent: 1 - type: Transform - - uid: 5489 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,18.5 - parent: 1 - type: Transform - - uid: 5491 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,20.5 - parent: 1 - type: Transform - - uid: 5492 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,20.5 - parent: 1 - type: Transform - - uid: 5562 - components: - - pos: -41.5,15.5 - parent: 1 - type: Transform - - uid: 5563 - components: - - pos: -41.5,14.5 - parent: 1 - type: Transform - - uid: 5564 - components: - - pos: -43.5,14.5 - parent: 1 - type: Transform - - uid: 5566 - components: - - pos: -45.5,14.5 - parent: 1 - type: Transform - - uid: 5567 - components: - - pos: -46.5,14.5 - parent: 1 - type: Transform - - uid: 5568 - components: - - pos: -47.5,14.5 - parent: 1 - type: Transform - - uid: 5571 - components: - - pos: -50.5,14.5 - parent: 1 - type: Transform - - uid: 5573 - components: - - pos: -50.5,16.5 - parent: 1 - type: Transform - - uid: 5574 - components: - - pos: -50.5,17.5 - parent: 1 - type: Transform - - uid: 5576 - components: - - pos: -50.5,19.5 - parent: 1 - type: Transform - - uid: 5578 - components: - - pos: -50.5,21.5 - parent: 1 - type: Transform - - uid: 5580 - components: - - pos: -48.5,21.5 - parent: 1 - type: Transform - - uid: 5581 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,12.5 - parent: 1 - type: Transform - - uid: 5582 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,14.5 - parent: 1 - type: Transform - - uid: 5583 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,11.5 - parent: 1 - type: Transform - - uid: 5584 - components: - - pos: -44.5,21.5 - parent: 1 - type: Transform - - uid: 5585 - components: - - pos: -43.5,21.5 - parent: 1 - type: Transform - - uid: 5587 - components: - - pos: -41.5,21.5 - parent: 1 - type: Transform - - uid: 5590 - components: - - pos: -44.5,22.5 - parent: 1 - type: Transform - - uid: 5592 - components: - - pos: -44.5,24.5 - parent: 1 - type: Transform - - uid: 5593 - components: - - pos: -44.5,25.5 - parent: 1 - type: Transform - - uid: 5595 - components: - - pos: -44.5,27.5 - parent: 1 - type: Transform - - uid: 5627 - components: - - pos: -44.5,13.5 - parent: 1 - type: Transform - - uid: 5628 - components: - - pos: -44.5,12.5 - parent: 1 - type: Transform - - uid: 5630 - components: - - pos: -44.5,10.5 - parent: 1 - type: Transform - - uid: 5631 - components: - - pos: -44.5,9.5 - parent: 1 - type: Transform - - uid: 5654 - components: - - pos: -33.5,9.5 - parent: 1 - type: Transform - - uid: 5657 - components: - - pos: -33.5,12.5 - parent: 1 - type: Transform - - uid: 5658 - components: - - pos: -33.5,13.5 - parent: 1 - type: Transform - - uid: 5660 - components: - - pos: -31.5,13.5 - parent: 1 - type: Transform - - uid: 5663 - components: - - pos: -30.5,15.5 - parent: 1 - type: Transform - - uid: 5665 - components: - - pos: -30.5,17.5 - parent: 1 - type: Transform - - uid: 5666 - components: - - pos: -30.5,20.5 - parent: 1 - type: Transform - - uid: 5669 - components: - - pos: -28.5,21.5 - parent: 1 - type: Transform - - uid: 5671 - components: - - pos: -26.5,21.5 - parent: 1 - type: Transform - - uid: 5672 - components: - - pos: -25.5,21.5 - parent: 1 - type: Transform - - uid: 5674 - components: - - pos: -23.5,21.5 - parent: 1 - type: Transform - - uid: 5676 - components: - - pos: -21.5,21.5 - parent: 1 - type: Transform - - uid: 5677 - components: - - pos: -20.5,21.5 - parent: 1 - type: Transform - - uid: 5683 - components: - - pos: -20.5,22.5 - parent: 1 - type: Transform - - uid: 5685 - components: - - pos: -20.5,24.5 - parent: 1 - type: Transform - - uid: 5687 - components: - - pos: -20.5,26.5 - parent: 1 - type: Transform - - uid: 5689 - components: - - pos: -19.5,19.5 - parent: 1 - type: Transform - - uid: 5691 - components: - - pos: -19.5,17.5 - parent: 1 - type: Transform - - uid: 5693 - components: - - pos: -19.5,15.5 - parent: 1 - type: Transform - - uid: 5694 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,21.5 - parent: 1 - type: Transform - - uid: 5695 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,20.5 - parent: 1 - type: Transform - - uid: 5696 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,23.5 - parent: 1 - type: Transform - - uid: 5697 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,10.5 - parent: 1 - type: Transform - - uid: 5698 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,15.5 - parent: 1 - type: Transform - - uid: 5699 - components: - - pos: -19.5,9.5 - parent: 1 - type: Transform - - uid: 5714 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,17.5 - parent: 1 - type: Transform - - uid: 5715 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,16.5 - parent: 1 - type: Transform - - uid: 5758 - components: - - pos: -5.5,9.5 - parent: 1 - type: Transform - - uid: 5761 - components: - - pos: -5.5,12.5 - parent: 1 - type: Transform - - uid: 5762 - components: - - pos: -5.5,13.5 - parent: 1 - type: Transform - - uid: 5767 - components: - - pos: -6.5,17.5 - parent: 1 - type: Transform - - uid: 5769 - components: - - pos: -6.5,19.5 - parent: 1 - type: Transform - - uid: 5771 - components: - - pos: -6.5,21.5 - parent: 1 - type: Transform - - uid: 5772 - components: - - pos: -6.5,22.5 - parent: 1 - type: Transform - - uid: 5774 - components: - - pos: -6.5,24.5 - parent: 1 - type: Transform - - uid: 5775 - components: - - pos: -6.5,25.5 - parent: 1 - type: Transform - - uid: 5778 - components: - - pos: -9.5,25.5 - parent: 1 - type: Transform - - uid: 6292 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,38.5 - parent: 1 - type: Transform - - uid: 7122 - components: - - pos: -48.5,68.5 - parent: 1 - type: Transform - - uid: 7225 - components: - - pos: -55.5,80.5 - parent: 1 - type: Transform - - uid: 7227 - components: - - pos: -54.5,79.5 - parent: 1 - type: Transform - - uid: 7240 - components: - - pos: -53.5,80.5 - parent: 1 - type: Transform - - uid: 7346 - components: - - pos: -52.5,69.5 - parent: 1 - type: Transform - - uid: 7348 - components: - - pos: -52.5,67.5 - parent: 1 - type: Transform - - uid: 7349 - components: - - pos: -50.5,68.5 - parent: 1 - type: Transform - - uid: 7351 - components: - - pos: -50.5,69.5 - parent: 1 - type: Transform - - uid: 7353 - components: - - pos: -51.5,68.5 - parent: 1 - type: Transform - - uid: 7354 - components: - - pos: -50.5,67.5 - parent: 1 - type: Transform - - uid: 7355 - components: - - pos: -49.5,68.5 - parent: 1 - type: Transform - - uid: 7358 - components: - - pos: -48.5,67.5 - parent: 1 - type: Transform - - uid: 7360 - components: - - pos: -47.5,67.5 - parent: 1 - type: Transform - - uid: 7361 - components: - - pos: -46.5,68.5 - parent: 1 - type: Transform - - uid: 7363 - components: - - pos: -50.5,70.5 - parent: 1 - type: Transform - - uid: 7366 - components: - - pos: -50.5,71.5 - parent: 1 - type: Transform - - uid: 7367 - components: - - pos: -52.5,76.5 - parent: 1 - type: Transform - - uid: 7402 - components: - - pos: 15.5,48.5 - parent: 1 - type: Transform - - uid: 7403 - components: - - pos: 15.5,47.5 - parent: 1 - type: Transform - - uid: 7404 - components: - - pos: -50.5,73.5 - parent: 1 - type: Transform - - uid: 7405 - components: - - pos: 15.5,45.5 - parent: 1 - type: Transform - - uid: 7406 - components: - - pos: 15.5,44.5 - parent: 1 - type: Transform - - uid: 7407 - components: - - pos: 15.5,43.5 - parent: 1 - type: Transform - - uid: 7409 - components: - - pos: 15.5,41.5 - parent: 1 - type: Transform - - uid: 7411 - components: - - pos: 15.5,39.5 - parent: 1 - type: Transform - - uid: 7412 - components: - - pos: -50.5,75.5 - parent: 1 - type: Transform - - uid: 7415 - components: - - pos: 15.5,35.5 - parent: 1 - type: Transform - - uid: 7416 - components: - - pos: -50.5,76.5 - parent: 1 - type: Transform - - uid: 7417 - components: - - pos: 17.5,35.5 - parent: 1 - type: Transform - - uid: 7418 - components: - - pos: 18.5,35.5 - parent: 1 - type: Transform - - uid: 7419 - components: - - pos: -50.5,77.5 - parent: 1 - type: Transform - - uid: 7420 - components: - - pos: 20.5,35.5 - parent: 1 - type: Transform - - uid: 7421 - components: - - pos: -52.5,70.5 - parent: 1 - type: Transform - - uid: 7422 - components: - - pos: -52.5,71.5 - parent: 1 - type: Transform - - uid: 7423 - components: - - pos: 23.5,35.5 - parent: 1 - type: Transform - - uid: 7424 - components: - - pos: 23.5,34.5 - parent: 1 - type: Transform - - uid: 7426 - components: - - pos: 23.5,32.5 - parent: 1 - type: Transform - - uid: 7427 - components: - - pos: 23.5,31.5 - parent: 1 - type: Transform - - uid: 7428 - components: - - pos: -52.5,73.5 - parent: 1 - type: Transform - - uid: 7429 - components: - - pos: -52.5,74.5 - parent: 1 - type: Transform - - uid: 7430 - components: - - pos: 23.5,28.5 - parent: 1 - type: Transform - - uid: 7432 - components: - - pos: 23.5,26.5 - parent: 1 - type: Transform - - uid: 7434 - components: - - pos: 23.5,24.5 - parent: 1 - type: Transform - - uid: 7435 - components: - - pos: 23.5,23.5 - parent: 1 - type: Transform - - uid: 7436 - components: - - pos: -52.5,77.5 - parent: 1 - type: Transform - - uid: 7437 - components: - - pos: 14.5,40.5 - parent: 1 - type: Transform - - uid: 7439 - components: - - pos: 12.5,40.5 - parent: 1 - type: Transform - - uid: 7445 - components: - - pos: 7.5,41.5 - parent: 1 - type: Transform - - uid: 7446 - components: - - pos: 7.5,42.5 - parent: 1 - type: Transform - - uid: 7449 - components: - - pos: 7.5,45.5 - parent: 1 - type: Transform - - uid: 7450 - components: - - pos: 7.5,46.5 - parent: 1 - type: Transform - - uid: 7452 - components: - - pos: -53.5,79.5 - parent: 1 - type: Transform - - uid: 7453 - components: - - pos: 13.5,48.5 - parent: 1 - type: Transform - - uid: 7454 - components: - - pos: 12.5,48.5 - parent: 1 - type: Transform - - uid: 7455 - components: - - pos: 11.5,48.5 - parent: 1 - type: Transform - - uid: 7456 - components: - - pos: -52.5,78.5 - parent: 1 - type: Transform - - uid: 7457 - components: - - pos: 9.5,48.5 - parent: 1 - type: Transform - - uid: 7459 - components: - - pos: 7.5,48.5 - parent: 1 - type: Transform - - uid: 7460 - components: - - pos: 6.5,47.5 - parent: 1 - type: Transform - - uid: 7462 - components: - - pos: 4.5,47.5 - parent: 1 - type: Transform - - uid: 7463 - components: - - pos: 3.5,47.5 - parent: 1 - type: Transform - - uid: 7464 - components: - - pos: 2.5,47.5 - parent: 1 - type: Transform - - uid: 7466 - components: - - pos: 0.5,47.5 - parent: 1 - type: Transform - - uid: 7467 - components: - - pos: -51.5,79.5 - parent: 1 - type: Transform - - uid: 7469 - components: - - pos: -2.5,47.5 - parent: 1 - type: Transform - - uid: 7470 - components: - - pos: -3.5,47.5 - parent: 1 - type: Transform - - uid: 7471 - components: - - pos: -50.5,79.5 - parent: 1 - type: Transform - - uid: 7472 - components: - - pos: -5.5,47.5 - parent: 1 - type: Transform - - uid: 7473 - components: - - pos: -50.5,80.5 - parent: 1 - type: Transform - - uid: 7474 - components: - - pos: -7.5,47.5 - parent: 1 - type: Transform - - uid: 7475 - components: - - pos: -7.5,48.5 - parent: 1 - type: Transform - - uid: 7477 - components: - - pos: -7.5,50.5 - parent: 1 - type: Transform - - uid: 7478 - components: - - pos: -52.5,80.5 - parent: 1 - type: Transform - - uid: 7479 - components: - - pos: -10.5,51.5 - parent: 1 - type: Transform - - uid: 7480 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,36.5 - parent: 1 - type: Transform - - uid: 7481 - components: - - pos: -12.5,51.5 - parent: 1 - type: Transform - - uid: 7482 - components: - - pos: -13.5,51.5 - parent: 1 - type: Transform - - uid: 7483 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,49.5 - parent: 1 - type: Transform - - uid: 7484 - components: - - pos: -9.5,51.5 - parent: 1 - type: Transform - - uid: 7485 - components: - - pos: -2.5,46.5 - parent: 1 - type: Transform - - uid: 7486 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,50.5 - parent: 1 - type: Transform - - uid: 7487 - components: - - pos: -2.5,44.5 - parent: 1 - type: Transform - - uid: 7488 - components: - - pos: -2.5,43.5 - parent: 1 - type: Transform - - uid: 7489 - components: - - pos: -2.5,42.5 - parent: 1 - type: Transform - - uid: 7490 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,46.5 - parent: 1 - type: Transform - - uid: 7491 - components: - - pos: -2.5,40.5 - parent: 1 - type: Transform - - uid: 7493 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,54.5 - parent: 1 - type: Transform - - uid: 7494 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,39.5 - parent: 1 - type: Transform - - uid: 7495 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,47.5 - parent: 1 - type: Transform - - uid: 7496 - components: - - pos: -4.5,37.5 - parent: 1 - type: Transform - - uid: 7497 - components: - - pos: -5.5,37.5 - parent: 1 - type: Transform - - uid: 7498 - components: - - pos: -6.5,37.5 - parent: 1 - type: Transform - - uid: 7499 - components: - - pos: -7.5,37.5 - parent: 1 - type: Transform - - uid: 7500 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,46.5 - parent: 1 - type: Transform - - uid: 7501 - components: - - pos: -9.5,37.5 - parent: 1 - type: Transform - - uid: 7502 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,36.5 - parent: 1 - type: Transform - - uid: 7503 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,43.5 - parent: 1 - type: Transform - - uid: 7504 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,34.5 - parent: 1 - type: Transform - - uid: 7505 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,20.5 - parent: 1 - type: Transform - - uid: 7506 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,19.5 - parent: 1 - type: Transform - - uid: 7507 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,34.5 - parent: 1 - type: Transform - - uid: 7508 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,25.5 - parent: 1 - type: Transform - - uid: 7637 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,32.5 - parent: 1 - type: Transform - - uid: 7638 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,36.5 - parent: 1 - type: Transform - - uid: 7639 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,39.5 - parent: 1 - type: Transform - - uid: 7833 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,40.5 - parent: 1 - type: Transform - - uid: 7834 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,39.5 - parent: 1 - type: Transform - - uid: 7835 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,40.5 - parent: 1 - type: Transform - - uid: 7837 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,45.5 - parent: 1 - type: Transform - - uid: 7838 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,46.5 - parent: 1 - type: Transform - - uid: 7839 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,46.5 - parent: 1 - type: Transform - - uid: 7840 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,42.5 - parent: 1 - type: Transform - - uid: 7849 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,48.5 - parent: 1 - type: Transform - - uid: 7918 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,55.5 - parent: 1 - type: Transform - - uid: 8325 - components: - - pos: -86.5,41.5 - parent: 1 - type: Transform - - uid: 8326 - components: - - pos: -86.5,42.5 - parent: 1 - type: Transform - - uid: 8546 - components: - - pos: -86.5,43.5 - parent: 1 - type: Transform - - uid: 8547 - components: - - pos: -86.5,44.5 - parent: 1 - type: Transform - - uid: 8577 - components: - - pos: -86.5,45.5 - parent: 1 - type: Transform - - uid: 8616 - components: - - pos: -86.5,40.5 - parent: 1 - type: Transform - - uid: 8617 - components: - - pos: -86.5,39.5 - parent: 1 - type: Transform - - uid: 9911 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-17.5 - parent: 1 - type: Transform - - uid: 10146 - components: - - pos: -70.5,31.5 - parent: 1 - type: Transform - - uid: 10176 - components: - - pos: -71.5,31.5 - parent: 1 - type: Transform - - uid: 10226 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,53.5 - parent: 1 - type: Transform - - uid: 10247 - components: - - rot: -1.5707963267948966 rad - pos: -70.5,28.5 - parent: 1 - type: Transform - - uid: 10248 - components: - - rot: -1.5707963267948966 rad - pos: -70.5,29.5 - parent: 1 - type: Transform - - uid: 10250 - components: - - rot: -1.5707963267948966 rad - pos: -70.5,30.5 - parent: 1 - type: Transform - - uid: 10255 - components: - - rot: -1.5707963267948966 rad - pos: -71.5,28.5 - parent: 1 - type: Transform - - uid: 10257 - components: - - rot: -1.5707963267948966 rad - pos: -71.5,29.5 - parent: 1 - type: Transform - - uid: 10259 - components: - - rot: -1.5707963267948966 rad - pos: -71.5,30.5 - parent: 1 - type: Transform - - uid: 10267 - components: - - rot: -1.5707963267948966 rad - pos: -87.5,20.5 - parent: 1 - type: Transform - - uid: 10268 - components: - - rot: -1.5707963267948966 rad - pos: -87.5,21.5 - parent: 1 - type: Transform - - uid: 10270 - components: - - rot: -1.5707963267948966 rad - pos: -87.5,22.5 - parent: 1 - type: Transform - - uid: 10272 - components: - - rot: -1.5707963267948966 rad - pos: -87.5,23.5 - parent: 1 - type: Transform - - uid: 10273 - components: - - rot: -1.5707963267948966 rad - pos: -87.5,24.5 - parent: 1 - type: Transform - - uid: 10274 - components: - - rot: -1.5707963267948966 rad - pos: -87.5,25.5 - parent: 1 - type: Transform - - uid: 10275 - components: - - rot: -1.5707963267948966 rad - pos: -87.5,26.5 - parent: 1 - type: Transform - - uid: 10276 - components: - - rot: -1.5707963267948966 rad - pos: -87.5,27.5 - parent: 1 - type: Transform - - uid: 10279 - components: - - rot: -1.5707963267948966 rad - pos: -87.5,28.5 - parent: 1 - type: Transform - - uid: 10281 - components: - - rot: -1.5707963267948966 rad - pos: -87.5,29.5 - parent: 1 - type: Transform - - uid: 10282 - components: - - rot: -1.5707963267948966 rad - pos: -87.5,30.5 - parent: 1 - type: Transform - - uid: 10283 - components: - - rot: -1.5707963267948966 rad - pos: -88.5,20.5 - parent: 1 - type: Transform - - uid: 10284 - components: - - rot: -1.5707963267948966 rad - pos: -88.5,21.5 - parent: 1 - type: Transform - - uid: 10286 - components: - - rot: -1.5707963267948966 rad - pos: -88.5,22.5 - parent: 1 - type: Transform - - uid: 10287 - components: - - rot: -1.5707963267948966 rad - pos: -88.5,23.5 - parent: 1 - type: Transform - - uid: 10289 - components: - - rot: -1.5707963267948966 rad - pos: -88.5,24.5 - parent: 1 - type: Transform - - uid: 10290 - components: - - rot: -1.5707963267948966 rad - pos: -88.5,25.5 - parent: 1 - type: Transform - - uid: 10291 - components: - - rot: -1.5707963267948966 rad - pos: -88.5,26.5 - parent: 1 - type: Transform - - uid: 10293 - components: - - rot: -1.5707963267948966 rad - pos: -88.5,27.5 - parent: 1 - type: Transform - - uid: 10294 - components: - - rot: -1.5707963267948966 rad - pos: -88.5,28.5 - parent: 1 - type: Transform - - uid: 10296 - components: - - rot: -1.5707963267948966 rad - pos: -88.5,29.5 - parent: 1 - type: Transform - - uid: 10297 - components: - - rot: -1.5707963267948966 rad - pos: -88.5,30.5 - parent: 1 - type: Transform - - uid: 10299 - components: - - rot: -1.5707963267948966 rad - pos: -100.5,32.5 - parent: 1 - type: Transform - - uid: 10300 - components: - - rot: -1.5707963267948966 rad - pos: -100.5,31.5 - parent: 1 - type: Transform - - uid: 10301 - components: - - rot: -1.5707963267948966 rad - pos: -99.5,32.5 - parent: 1 - type: Transform - - uid: 10303 - components: - - rot: -1.5707963267948966 rad - pos: -99.5,31.5 - parent: 1 - type: Transform - - uid: 10304 - components: - - rot: -1.5707963267948966 rad - pos: -98.5,32.5 - parent: 1 - type: Transform - - uid: 10305 - components: - - rot: -1.5707963267948966 rad - pos: -98.5,31.5 - parent: 1 - type: Transform - - uid: 10307 - components: - - rot: -1.5707963267948966 rad - pos: -96.5,32.5 - parent: 1 - type: Transform - - uid: 10309 - components: - - rot: -1.5707963267948966 rad - pos: -96.5,31.5 - parent: 1 - type: Transform - - uid: 10310 - components: - - rot: -1.5707963267948966 rad - pos: -95.5,32.5 - parent: 1 - type: Transform - - uid: 10311 - components: - - rot: -1.5707963267948966 rad - pos: -95.5,31.5 - parent: 1 - type: Transform - - uid: 10313 - components: - - rot: -1.5707963267948966 rad - pos: -94.5,32.5 - parent: 1 - type: Transform - - uid: 10314 - components: - - rot: -1.5707963267948966 rad - pos: -94.5,31.5 - parent: 1 - type: Transform - - uid: 10319 - components: - - pos: -41.5,55.5 - parent: 1 - type: Transform - - uid: 10321 - components: - - pos: -39.5,55.5 - parent: 1 - type: Transform - - uid: 10322 - components: - - pos: -38.5,55.5 - parent: 1 - type: Transform - - uid: 10323 - components: - - pos: -37.5,55.5 - parent: 1 - type: Transform - - uid: 10324 - components: - - rot: -1.5707963267948966 rad - pos: -93.5,22.5 - parent: 1 - type: Transform - - uid: 10325 - components: - - pos: -35.5,55.5 - parent: 1 - type: Transform - - uid: 10326 - components: - - rot: -1.5707963267948966 rad - pos: -93.5,23.5 - parent: 1 - type: Transform - - uid: 10327 - components: - - pos: -33.5,55.5 - parent: 1 - type: Transform - - uid: 10328 - components: - - pos: -32.5,55.5 - parent: 1 - type: Transform - - uid: 10329 - components: - - pos: -32.5,54.5 - parent: 1 - type: Transform - - uid: 10330 - components: - - rot: -1.5707963267948966 rad - pos: -93.5,24.5 - parent: 1 - type: Transform - - uid: 10331 - components: - - pos: -32.5,52.5 - parent: 1 - type: Transform - - uid: 10332 - components: - - pos: -32.5,51.5 - parent: 1 - type: Transform - - uid: 10333 - components: - - pos: -32.5,50.5 - parent: 1 - type: Transform - - uid: 10334 - components: - - pos: -31.5,50.5 - parent: 1 - type: Transform - - uid: 10335 - components: - - rot: -1.5707963267948966 rad - pos: -93.5,25.5 - parent: 1 - type: Transform - - uid: 10336 - components: - - pos: -29.5,50.5 - parent: 1 - type: Transform - - uid: 10338 - components: - - pos: -27.5,50.5 - parent: 1 - type: Transform - - uid: 10339 - components: - - pos: -26.5,50.5 - parent: 1 - type: Transform - - uid: 10340 - components: - - pos: -25.5,50.5 - parent: 1 - type: Transform - - uid: 10341 - components: - - rot: -1.5707963267948966 rad - pos: -93.5,26.5 - parent: 1 - type: Transform - - uid: 10342 - components: - - pos: -24.5,51.5 - parent: 1 - type: Transform - - uid: 10345 - components: - - pos: -21.5,51.5 - parent: 1 - type: Transform - - uid: 10346 - components: - - pos: -20.5,51.5 - parent: 1 - type: Transform - - uid: 10348 - components: - - pos: -24.5,49.5 - parent: 1 - type: Transform - - uid: 10350 - components: - - pos: -24.5,47.5 - parent: 1 - type: Transform - - uid: 10351 - components: - - pos: -24.5,46.5 - parent: 1 - type: Transform - - uid: 10353 - components: - - pos: -24.5,44.5 - parent: 1 - type: Transform - - uid: 10355 - components: - - pos: -24.5,42.5 - parent: 1 - type: Transform - - uid: 10356 - components: - - pos: -24.5,41.5 - parent: 1 - type: Transform - - uid: 10359 - components: - - pos: -24.5,38.5 - parent: 1 - type: Transform - - uid: 10360 - components: - - pos: -24.5,37.5 - parent: 1 - type: Transform - - uid: 10464 - components: - - rot: -1.5707963267948966 rad - pos: -93.5,27.5 - parent: 1 - type: Transform - - uid: 10465 - components: - - rot: -1.5707963267948966 rad - pos: -93.5,28.5 - parent: 1 - type: Transform - - uid: 10477 - components: - - rot: -1.5707963267948966 rad - pos: -94.5,29.5 - parent: 1 - type: Transform - - uid: 10478 - components: - - rot: -1.5707963267948966 rad - pos: -95.5,29.5 - parent: 1 - type: Transform - - uid: 10479 - components: - - rot: -1.5707963267948966 rad - pos: -96.5,29.5 - parent: 1 - type: Transform - - uid: 10480 - components: - - rot: -1.5707963267948966 rad - pos: -97.5,29.5 - parent: 1 - type: Transform - - uid: 10481 - components: - - rot: -1.5707963267948966 rad - pos: -98.5,29.5 - parent: 1 - type: Transform - - uid: 10482 - components: - - rot: -1.5707963267948966 rad - pos: -99.5,29.5 - parent: 1 - type: Transform - - uid: 10483 - components: - - rot: -1.5707963267948966 rad - pos: -100.5,29.5 - parent: 1 - type: Transform - - uid: 10484 - components: - - rot: -1.5707963267948966 rad - pos: -101.5,28.5 - parent: 1 - type: Transform - - uid: 10485 - components: - - rot: -1.5707963267948966 rad - pos: -101.5,27.5 - parent: 1 - type: Transform - - uid: 10486 - components: - - rot: -1.5707963267948966 rad - pos: -101.5,26.5 - parent: 1 - type: Transform - - uid: 10487 - components: - - rot: -1.5707963267948966 rad - pos: -101.5,25.5 - parent: 1 - type: Transform - - uid: 10488 - components: - - rot: -1.5707963267948966 rad - pos: -101.5,24.5 - parent: 1 - type: Transform - - uid: 10489 - components: - - rot: -1.5707963267948966 rad - pos: -101.5,23.5 - parent: 1 - type: Transform - - uid: 10490 - components: - - rot: -1.5707963267948966 rad - pos: -101.5,22.5 - parent: 1 - type: Transform - - uid: 10491 - components: - - rot: -1.5707963267948966 rad - pos: -100.5,21.5 - parent: 1 - type: Transform - - uid: 10492 - components: - - rot: -1.5707963267948966 rad - pos: -99.5,21.5 - parent: 1 - type: Transform - - uid: 10493 - components: - - rot: -1.5707963267948966 rad - pos: -98.5,21.5 - parent: 1 - type: Transform - - uid: 10494 - components: - - rot: -1.5707963267948966 rad - pos: -97.5,21.5 - parent: 1 - type: Transform - - uid: 10495 - components: - - rot: -1.5707963267948966 rad - pos: -96.5,21.5 - parent: 1 - type: Transform - - uid: 10496 - components: - - rot: -1.5707963267948966 rad - pos: -95.5,21.5 - parent: 1 - type: Transform - - uid: 10497 - components: - - rot: -1.5707963267948966 rad - pos: -94.5,21.5 - parent: 1 - type: Transform - - uid: 10499 - components: - - rot: -1.5707963267948966 rad - pos: -100.5,18.5 - parent: 1 - type: Transform - - uid: 10500 - components: - - rot: -1.5707963267948966 rad - pos: -99.5,19.5 - parent: 1 - type: Transform - - uid: 10501 - components: - - rot: -1.5707963267948966 rad - pos: -99.5,18.5 - parent: 1 - type: Transform - - uid: 10502 - components: - - rot: -1.5707963267948966 rad - pos: -98.5,19.5 - parent: 1 - type: Transform - - uid: 10503 - components: - - rot: -1.5707963267948966 rad - pos: -98.5,18.5 - parent: 1 - type: Transform - - uid: 10504 - components: - - rot: -1.5707963267948966 rad - pos: -96.5,19.5 - parent: 1 - type: Transform - - uid: 10505 - components: - - rot: -1.5707963267948966 rad - pos: -96.5,18.5 - parent: 1 - type: Transform - - uid: 10506 - components: - - rot: -1.5707963267948966 rad - pos: -95.5,19.5 - parent: 1 - type: Transform - - uid: 10507 - components: - - rot: -1.5707963267948966 rad - pos: -95.5,18.5 - parent: 1 - type: Transform - - uid: 10508 - components: - - rot: -1.5707963267948966 rad - pos: -94.5,19.5 - parent: 1 - type: Transform - - uid: 10509 - components: - - rot: -1.5707963267948966 rad - pos: -94.5,18.5 - parent: 1 - type: Transform - - uid: 10510 - components: - - rot: -1.5707963267948966 rad - pos: -105.5,30.5 - parent: 1 - type: Transform - - uid: 10511 - components: - - rot: -1.5707963267948966 rad - pos: -105.5,30.5 - parent: 1 - type: Transform - - uid: 10512 - components: - - rot: -1.5707963267948966 rad - pos: -105.5,29.5 - parent: 1 - type: Transform - - uid: 10513 - components: - - rot: -1.5707963267948966 rad - pos: -105.5,28.5 - parent: 1 - type: Transform - - uid: 10514 - components: - - rot: -1.5707963267948966 rad - pos: -105.5,27.5 - parent: 1 - type: Transform - - uid: 10515 - components: - - rot: -1.5707963267948966 rad - pos: -105.5,26.5 - parent: 1 - type: Transform - - uid: 10516 - components: - - rot: -1.5707963267948966 rad - pos: -105.5,25.5 - parent: 1 - type: Transform - - uid: 10517 - components: - - rot: -1.5707963267948966 rad - pos: -105.5,24.5 - parent: 1 - type: Transform - - uid: 10518 - components: - - rot: -1.5707963267948966 rad - pos: -105.5,23.5 - parent: 1 - type: Transform - - uid: 10519 - components: - - rot: -1.5707963267948966 rad - pos: -105.5,22.5 - parent: 1 - type: Transform - - uid: 10520 - components: - - rot: -1.5707963267948966 rad - pos: -105.5,21.5 - parent: 1 - type: Transform - - uid: 10521 - components: - - rot: -1.5707963267948966 rad - pos: -105.5,20.5 - parent: 1 - type: Transform - - uid: 10580 - components: - - rot: -1.5707963267948966 rad - pos: -100.5,19.5 - parent: 1 - type: Transform - - uid: 12804 - components: - - pos: -2.5,12.5 - parent: 1 - type: Transform - - uid: 12805 - components: - - pos: -3.5,13.5 - parent: 1 - type: Transform - - uid: 12806 - components: - - pos: -0.5,12.5 - parent: 1 - type: Transform - - uid: 12807 - components: - - pos: 3.5,12.5 - parent: 1 - type: Transform - - uid: 12808 - components: - - pos: 4.5,11.5 - parent: 1 - type: Transform - - uid: 12809 - components: - - pos: 4.5,10.5 - parent: 1 - type: Transform - - uid: 12810 - components: - - pos: 3.5,9.5 - parent: 1 - type: Transform - - uid: 12811 - components: - - pos: 6.5,8.5 - parent: 1 - type: Transform - - uid: 12812 - components: - - pos: 10.5,9.5 - parent: 1 - type: Transform - - uid: 12813 - components: - - pos: 12.5,9.5 - parent: 1 - type: Transform - - uid: 12814 - components: - - pos: 12.5,8.5 - parent: 1 - type: Transform - - uid: 12815 - components: - - pos: 8.5,9.5 - parent: 1 - type: Transform - - uid: 12816 - components: - - pos: 7.5,8.5 - parent: 1 - type: Transform - - uid: 12817 - components: - - pos: 14.5,9.5 - parent: 1 - type: Transform - - uid: 12818 - components: - - pos: 13.5,12.5 - parent: 1 - type: Transform - - uid: 12819 - components: - - pos: 13.5,13.5 - parent: 1 - type: Transform - - uid: 12820 - components: - - pos: 13.5,15.5 - parent: 1 - type: Transform - - uid: 12821 - components: - - pos: 14.5,17.5 - parent: 1 - type: Transform - - uid: 12822 - components: - - pos: 14.5,18.5 - parent: 1 - type: Transform - - uid: 12823 - components: - - pos: 13.5,21.5 - parent: 1 - type: Transform - - uid: 12824 - components: - - pos: 12.5,22.5 - parent: 1 - type: Transform - - uid: 12825 - components: - - pos: 15.5,23.5 - parent: 1 - type: Transform - - uid: 12826 - components: - - pos: 14.5,25.5 - parent: 1 - type: Transform - - uid: 12827 - components: - - pos: 15.5,26.5 - parent: 1 - type: Transform - - uid: 12828 - components: - - pos: 17.5,25.5 - parent: 1 - type: Transform - - uid: 12829 - components: - - pos: 14.5,24.5 - parent: 1 - type: Transform - - uid: 12830 - components: - - pos: 15.5,24.5 - parent: 1 - type: Transform - - uid: 12831 - components: - - pos: 18.5,26.5 - parent: 1 - type: Transform - - uid: 12832 - components: - - pos: 20.5,25.5 - parent: 1 - type: Transform - - uid: 12833 - components: - - pos: 21.5,26.5 - parent: 1 - type: Transform - - uid: 13917 - components: - - pos: -3.5,-20.5 - parent: 1 - type: Transform - - uid: 14250 - components: - - pos: -67.5,50.5 - parent: 1 - type: Transform - - uid: 14251 - components: - - pos: -67.5,54.5 - parent: 1 - type: Transform - - uid: 14252 - components: - - pos: -67.5,56.5 - parent: 1 - type: Transform - - uid: 14253 - components: - - pos: -66.5,57.5 - parent: 1 - type: Transform - - uid: 14254 - components: - - pos: -75.5,52.5 - parent: 1 - type: Transform - - uid: 14255 - components: - - pos: -75.5,50.5 - parent: 1 - type: Transform - - uid: 14256 - components: - - pos: -74.5,47.5 - parent: 1 - type: Transform - - uid: 14257 - components: - - pos: -74.5,46.5 - parent: 1 - type: Transform - - uid: 14258 - components: - - pos: -75.5,45.5 - parent: 1 - type: Transform - - uid: 14259 - components: - - pos: -75.5,42.5 - parent: 1 - type: Transform - - uid: 14260 - components: - - pos: -74.5,41.5 - parent: 1 - type: Transform - - uid: 14261 - components: - - pos: -75.5,43.5 - parent: 1 - type: Transform - - uid: 14262 - components: - - pos: -74.5,44.5 - parent: 1 - type: Transform - - uid: 14263 - components: - - pos: -75.5,40.5 - parent: 1 - type: Transform - - uid: 14264 - components: - - pos: -75.5,38.5 - parent: 1 - type: Transform - - uid: 14265 - components: - - pos: -74.5,38.5 - parent: 1 - type: Transform - - uid: 14266 - components: - - pos: -71.5,37.5 - parent: 1 - type: Transform - - uid: 14267 - components: - - pos: -67.5,37.5 - parent: 1 - type: Transform - - uid: 14268 - components: - - pos: -67.5,36.5 - parent: 1 - type: Transform - - uid: 14269 - components: - - pos: -65.5,36.5 - parent: 1 - type: Transform - - uid: 14270 - components: - - pos: -61.5,35.5 - parent: 1 - type: Transform - - uid: 14271 - components: - - pos: -66.5,40.5 - parent: 1 - type: Transform - - uid: 14272 - components: - - pos: -67.5,41.5 - parent: 1 - type: Transform - - uid: 14273 - components: - - pos: -66.5,42.5 - parent: 1 - type: Transform - - uid: 14274 - components: - - pos: -67.5,43.5 - parent: 1 - type: Transform - - uid: 14275 - components: - - pos: -67.5,44.5 - parent: 1 - type: Transform - - uid: 14276 - components: - - pos: -63.5,47.5 - parent: 1 - type: Transform - - uid: 14277 - components: - - pos: -62.5,47.5 - parent: 1 - type: Transform - - uid: 14278 - components: - - pos: -61.5,48.5 - parent: 1 - type: Transform - - uid: 14559 - components: - - pos: -67.5,13.5 - parent: 1 - type: Transform - - uid: 14560 - components: - - pos: -66.5,12.5 - parent: 1 - type: Transform - - uid: 14562 - components: - - pos: -65.5,17.5 - parent: 1 - type: Transform - - uid: 14563 - components: - - pos: -62.5,16.5 - parent: 1 - type: Transform - - uid: 14564 - components: - - pos: -61.5,17.5 - parent: 1 - type: Transform - - uid: 14565 - components: - - pos: -60.5,21.5 - parent: 1 - type: Transform - - uid: 14566 - components: - - pos: -60.5,19.5 - parent: 1 - type: Transform - - uid: 14567 - components: - - pos: -61.5,23.5 - parent: 1 - type: Transform - - uid: 14568 - components: - - pos: -60.5,25.5 - parent: 1 - type: Transform - - uid: 14569 - components: - - pos: -60.5,27.5 - parent: 1 - type: Transform - - uid: 14570 - components: - - pos: -60.5,26.5 - parent: 1 - type: Transform - - uid: 14571 - components: - - pos: -61.5,29.5 - parent: 1 - type: Transform - - uid: 14572 - components: - - pos: -61.5,21.5 - parent: 1 - type: Transform - - uid: 14573 - components: - - pos: -64.5,17.5 - parent: 1 - type: Transform - - uid: 14574 - components: - - pos: -44.5,53.5 - parent: 1 - type: Transform - - uid: 14575 - components: - - pos: -44.5,51.5 - parent: 1 - type: Transform - - uid: 14576 - components: - - pos: -44.5,50.5 - parent: 1 - type: Transform - - uid: 15146 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,45.5 - parent: 1 - type: Transform - - uid: 15225 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,37.5 - parent: 1 - type: Transform - - uid: 15227 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,43.5 - parent: 1 - type: Transform - - uid: 15228 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,42.5 - parent: 1 - type: Transform - - uid: 15229 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,42.5 - parent: 1 - type: Transform - - uid: 15230 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,44.5 - parent: 1 - type: Transform - - uid: 15454 - components: - - pos: -37.5,61.5 - parent: 1 - type: Transform - - uid: 15455 - components: - - pos: -42.5,68.5 - parent: 1 - type: Transform - - uid: 15458 - components: - - pos: -38.5,64.5 - parent: 1 - type: Transform - - uid: 15459 - components: - - pos: -37.5,67.5 - parent: 1 - type: Transform - - uid: 15460 - components: - - pos: -38.5,58.5 - parent: 1 - type: Transform - - uid: 15461 - components: - - pos: -44.5,57.5 - parent: 1 - type: Transform - - uid: 15472 - components: - - pos: -42.5,58.5 - parent: 1 - type: Transform - - uid: 15473 - components: - - pos: -40.5,57.5 - parent: 1 - type: Transform - - uid: 15474 - components: - - pos: -39.5,58.5 - parent: 1 - type: Transform - - uid: 15478 - components: - - pos: -43.5,58.5 - parent: 1 - type: Transform - - uid: 15480 - components: - - pos: -41.5,57.5 - parent: 1 - type: Transform - - uid: 15481 - components: - - pos: -39.5,57.5 - parent: 1 - type: Transform - - uid: 15482 - components: - - pos: -41.5,58.5 - parent: 1 - type: Transform - - uid: 15483 - components: - - pos: -43.5,57.5 - parent: 1 - type: Transform - - uid: 15487 - components: - - pos: -39.5,68.5 - parent: 1 - type: Transform - - uid: 15491 - components: - - pos: -38.5,57.5 - parent: 1 - type: Transform - - uid: 15492 - components: - - pos: -37.5,58.5 - parent: 1 - type: Transform - - uid: 15493 - components: - - pos: -37.5,59.5 - parent: 1 - type: Transform - - uid: 15495 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-18.5 - parent: 1 - type: Transform - - uid: 15501 - components: - - pos: -5.5,-19.5 - parent: 1 - type: Transform - - uid: 15505 - components: - - pos: -1.5,-20.5 - parent: 1 - type: Transform - - uid: 15506 - components: - - pos: -0.5,-20.5 - parent: 1 - type: Transform - - uid: 15507 - components: - - pos: 1.5,-20.5 - parent: 1 - type: Transform - - uid: 15508 - components: - - pos: 3.5,-20.5 - parent: 1 - type: Transform - - uid: 15509 - components: - - pos: 5.5,-20.5 - parent: 1 - type: Transform - - uid: 15520 - components: - - pos: -5.5,-20.5 - parent: 1 - type: Transform - - uid: 15521 - components: - - pos: -4.5,-20.5 - parent: 1 - type: Transform - - uid: 15522 - components: - - pos: -2.5,-20.5 - parent: 1 - type: Transform - - uid: 15523 - components: - - pos: 0.5,-20.5 - parent: 1 - type: Transform - - uid: 15524 - components: - - pos: 2.5,-20.5 - parent: 1 - type: Transform - - uid: 15525 - components: - - pos: 4.5,-20.5 - parent: 1 - type: Transform - - uid: 15526 - components: - - pos: 6.5,-20.5 - parent: 1 - type: Transform - - uid: 15551 - components: - - pos: 8.5,-18.5 - parent: 1 - type: Transform - - uid: 15552 - components: - - pos: 8.5,-19.5 - parent: 1 - type: Transform - - uid: 15553 - components: - - pos: 9.5,-18.5 - parent: 1 - type: Transform - - uid: 15554 - components: - - pos: 9.5,-19.5 - parent: 1 - type: Transform - - uid: 15555 - components: - - pos: 10.5,-18.5 - parent: 1 - type: Transform - - uid: 15556 - components: - - pos: 10.5,-19.5 - parent: 1 - type: Transform - - uid: 15816 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-20.5 - parent: 1 - type: Transform - - uid: 15879 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-20.5 - parent: 1 - type: Transform - - uid: 15880 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-18.5 - parent: 1 - type: Transform - - uid: 15881 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-17.5 - parent: 1 - type: Transform - - uid: 15882 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-18.5 - parent: 1 - type: Transform - - uid: 15883 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-19.5 - parent: 1 - type: Transform - - uid: 15884 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-17.5 - parent: 1 - type: Transform - - uid: 15885 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-17.5 - parent: 1 - type: Transform - - uid: 15886 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-17.5 - parent: 1 - type: Transform - - uid: 15887 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-20.5 - parent: 1 - type: Transform - - uid: 15889 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-17.5 - parent: 1 - type: Transform - - uid: 15893 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-20.5 - parent: 1 - type: Transform - - uid: 15897 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-19.5 - parent: 1 - type: Transform - - uid: 15902 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-17.5 - parent: 1 - type: Transform - - uid: 15903 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-18.5 - parent: 1 - type: Transform - - uid: 15904 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-19.5 - parent: 1 - type: Transform - - uid: 15905 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-20.5 - parent: 1 - type: Transform - - uid: 15907 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-20.5 - parent: 1 - type: Transform -- proto: Chair - entities: - - uid: 169 - components: - - pos: -51.5,49.5 - parent: 1 - type: Transform - - uid: 913 - components: - - pos: 28.5,-0.5 - parent: 1 - type: Transform - - uid: 1529 - components: - - pos: -17.5,-3.5 - parent: 1 - type: Transform - - uid: 1530 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-4.5 - parent: 1 - type: Transform - - uid: 1902 - components: - - rot: 3.141592653589793 rad - pos: -51.5,47.5 - parent: 1 - type: Transform - - uid: 2070 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,42.5 - parent: 1 - type: Transform - - uid: 2639 - components: - - pos: -9.5,29.5 - parent: 1 - type: Transform - - uid: 2979 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,21.5 - parent: 1 - type: Transform - - uid: 2980 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,20.5 - parent: 1 - type: Transform - - uid: 2981 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,19.5 - parent: 1 - type: Transform - - uid: 2982 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,17.5 - parent: 1 - type: Transform - - uid: 2983 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,15.5 - parent: 1 - type: Transform - - uid: 2984 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,14.5 - parent: 1 - type: Transform - - uid: 2985 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,13.5 - parent: 1 - type: Transform - - uid: 2986 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,12.5 - parent: 1 - type: Transform - - uid: 2987 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,11.5 - parent: 1 - type: Transform - - uid: 2988 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,9.5 - parent: 1 - type: Transform - - uid: 3649 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,3.5 - parent: 1 - type: Transform - - uid: 3650 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,2.5 - parent: 1 - type: Transform - - uid: 3651 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,1.5 - parent: 1 - type: Transform - - uid: 3652 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,0.5 - parent: 1 - type: Transform - - uid: 3729 - components: - - rot: 3.141592653589793 rad - pos: -45.5,-4.5 - parent: 1 - type: Transform - - uid: 4141 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,28.5 - parent: 1 - type: Transform - - uid: 4142 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,28.5 - parent: 1 - type: Transform - - uid: 4143 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,28.5 - parent: 1 - type: Transform - - uid: 4144 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,28.5 - parent: 1 - type: Transform - - uid: 4145 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,27.5 - parent: 1 - type: Transform - - uid: 4146 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,27.5 - parent: 1 - type: Transform - - uid: 4147 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,27.5 - parent: 1 - type: Transform - - uid: 4148 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,25.5 - parent: 1 - type: Transform - - uid: 4149 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,25.5 - parent: 1 - type: Transform - - uid: 4150 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,25.5 - parent: 1 - type: Transform - - uid: 4151 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,24.5 - parent: 1 - type: Transform - - uid: 4152 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,24.5 - parent: 1 - type: Transform - - uid: 4153 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,24.5 - parent: 1 - type: Transform - - uid: 4154 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,24.5 - parent: 1 - type: Transform - - uid: 4155 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,26.5 - parent: 1 - type: Transform - - uid: 4156 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,26.5 - parent: 1 - type: Transform - - uid: 4157 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,26.5 - parent: 1 - type: Transform - - uid: 4158 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,26.5 - parent: 1 - type: Transform - - uid: 5266 - components: - - rot: -1.5707963267948966 rad - pos: -52.5,13.5 - parent: 1 - type: Transform - - uid: 5267 - components: - - pos: -53.5,14.5 - parent: 1 - type: Transform - - uid: 5409 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-8.5 - parent: 1 - type: Transform - - uid: 5680 - components: - - rot: 3.141592653589793 rad - pos: -31.5,12.5 - parent: 1 - type: Transform - - uid: 5719 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,14.5 - parent: 1 - type: Transform - - uid: 7303 - components: - - rot: -1.5707963267948966 rad - pos: -60.5,88.5 - parent: 1 - type: Transform - - uid: 7313 - components: - - rot: 3.141592653589793 rad - pos: -59.5,88.5 - parent: 1 - type: Transform - - uid: 7538 - components: - - rot: 3.141592653589793 rad - pos: -22.5,45.5 - parent: 1 - type: Transform - - uid: 7540 - components: - - rot: 3.141592653589793 rad - pos: -21.5,45.5 - parent: 1 - type: Transform - - uid: 7642 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,82.5 - parent: 1 - type: Transform - - uid: 7643 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,88.5 - parent: 1 - type: Transform - - uid: 7909 - components: - - pos: -47.5,60.5 - parent: 1 - type: Transform - - uid: 7911 - components: - - pos: -48.5,60.5 - parent: 1 - type: Transform - - uid: 7982 - components: - - rot: -1.5707963267948966 rad - pos: -59.5,58.5 - parent: 1 - type: Transform - - uid: 7983 - components: - - rot: 1.5707963267948966 rad - pos: -61.5,58.5 - parent: 1 - type: Transform - - uid: 9223 - components: - - pos: -63.5,42.5 - parent: 1 - type: Transform - - uid: 9776 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,35.5 - parent: 1 - type: Transform - - uid: 10100 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,41.5 - parent: 1 - type: Transform - - uid: 10883 - components: - - rot: 3.141592653589793 rad - pos: -9.5,54.5 - parent: 1 - type: Transform - - uid: 12795 - components: - - rot: 3.141592653589793 rad - pos: 15.5,30.5 - parent: 1 - type: Transform - - uid: 12906 - components: - - rot: 3.141592653589793 rad - pos: 12.5,8.5 - parent: 1 - type: Transform - - uid: 13837 - components: - - rot: 3.141592653589793 rad - pos: -43.5,54.5 - parent: 1 - type: Transform - - uid: 14242 - components: - - rot: 3.141592653589793 rad - pos: -69.5,51.5 - parent: 1 - type: Transform - - uid: 14247 - components: - - rot: -1.5707963267948966 rad - pos: -66.5,43.5 - parent: 1 - type: Transform - - uid: 14248 - components: - - pos: -63.5,48.5 - parent: 1 - type: Transform - - uid: 14289 - components: - - rot: 3.141592653589793 rad - pos: -70.5,48.5 - parent: 1 - type: Transform - - uid: 14587 - components: - - rot: 1.5707963267948966 rad - pos: -61.5,24.5 - parent: 1 - type: Transform - - uid: 14592 - components: - - rot: 1.5707963267948966 rad - pos: -67.5,11.5 - parent: 1 - type: Transform - - uid: 15057 - components: - - pos: -3.5,34.5 - parent: 1 - type: Transform - - uid: 15058 - components: - - pos: -2.5,34.5 - parent: 1 - type: Transform - - uid: 15059 - components: - - rot: 3.141592653589793 rad - pos: -2.5,29.5 - parent: 1 - type: Transform - - uid: 15060 - components: - - rot: 3.141592653589793 rad - pos: -1.5,29.5 - parent: 1 - type: Transform -- proto: ChairCursed - entities: - - uid: 9773 - components: - - rot: 3.141592653589793 rad - pos: -44.5,35.5 - parent: 1 - type: Transform - - uid: 9778 - components: - - rot: 3.141592653589793 rad - pos: -36.5,36.5 - parent: 1 - type: Transform -- proto: ChairFolding - entities: - - uid: 281 - components: - - pos: -14.5,-13.5 - parent: 1 - type: Transform - - uid: 286 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-13.5 - parent: 1 - type: Transform - - uid: 343 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-11.5 - parent: 1 - type: Transform - - uid: 344 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-11.5 - parent: 1 - type: Transform - - uid: 593 - components: - - rot: 3.141592653589793 rad - pos: -54.5,47.5 - parent: 1 - type: Transform - - uid: 1532 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-5.5 - parent: 1 - type: Transform - - uid: 1817 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-0.5 - parent: 1 - type: Transform - - uid: 1818 - components: - - rot: 3.141592653589793 rad - pos: 14.5,0.5 - parent: 1 - type: Transform - - uid: 1819 - components: - - rot: 3.141592653589793 rad - pos: 14.5,1.5 - parent: 1 - type: Transform - - uid: 1820 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-2.5 - parent: 1 - type: Transform - - uid: 1821 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-0.5 - parent: 1 - type: Transform - - uid: 1822 - components: - - rot: 3.141592653589793 rad - pos: 16.5,0.5 - parent: 1 - type: Transform - - uid: 1823 - components: - - rot: 3.141592653589793 rad - pos: 16.5,1.5 - parent: 1 - type: Transform - - uid: 1824 - components: - - rot: 3.141592653589793 rad - pos: 13.5,0.5 - parent: 1 - type: Transform - - uid: 1825 - components: - - rot: 3.141592653589793 rad - pos: 13.5,1.5 - parent: 1 - type: Transform - - uid: 1826 - components: - - rot: 3.141592653589793 rad - pos: 17.5,0.5 - parent: 1 - type: Transform - - uid: 1827 - components: - - rot: 3.141592653589793 rad - pos: 17.5,1.5 - parent: 1 - type: Transform - - uid: 2268 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,19.5 - parent: 1 - type: Transform - - uid: 2285 - components: - - pos: 17.5,20.5 - parent: 1 - type: Transform - - uid: 2286 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,19.5 - parent: 1 - type: Transform - - uid: 2287 - components: - - rot: 3.141592653589793 rad - pos: 17.5,18.5 - parent: 1 - type: Transform - - uid: 2502 - components: - - pos: 16.5,13.5 - parent: 1 - type: Transform - - uid: 2503 - components: - - pos: 17.5,13.5 - parent: 1 - type: Transform - - uid: 2504 - components: - - pos: 18.5,13.5 - parent: 1 - type: Transform - - uid: 2505 - components: - - rot: 3.141592653589793 rad - pos: 16.5,10.5 - parent: 1 - type: Transform - - uid: 2506 - components: - - pos: 17.5,9.5 - parent: 1 - type: Transform - - uid: 2507 - components: - - rot: 3.141592653589793 rad - pos: 18.5,10.5 - parent: 1 - type: Transform - - uid: 2641 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,28.5 - parent: 1 - type: Transform - - uid: 2804 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,14.5 - parent: 1 - type: Transform - - uid: 2805 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,9.5 - parent: 1 - type: Transform - - uid: 2891 - components: - - pos: 6.5,-4.5 - parent: 1 - type: Transform - - uid: 3187 - components: - - pos: -26.5,18.5 - parent: 1 - type: Transform - - uid: 3188 - components: - - pos: -27.5,18.5 - parent: 1 - type: Transform - - uid: 3189 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,17.5 - parent: 1 - type: Transform - - uid: 3190 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,16.5 - parent: 1 - type: Transform - - uid: 3191 - components: - - rot: 3.141592653589793 rad - pos: -27.5,15.5 - parent: 1 - type: Transform - - uid: 3192 - components: - - rot: 3.141592653589793 rad - pos: -26.5,15.5 - parent: 1 - type: Transform - - uid: 3193 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,17.5 - parent: 1 - type: Transform - - uid: 3194 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,16.5 - parent: 1 - type: Transform - - uid: 3728 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-3.5 - parent: 1 - type: Transform - - uid: 5268 - components: - - rot: 1.5707963267948966 rad - pos: -54.5,13.5 - parent: 1 - type: Transform - - uid: 5408 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-8.5 - parent: 1 - type: Transform - - uid: 5618 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,14.5 - parent: 1 - type: Transform - - uid: 5716 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,23.5 - parent: 1 - type: Transform - - uid: 5910 - components: - - pos: -9.5,42.5 - parent: 1 - type: Transform - - uid: 5912 - components: - - pos: -8.5,43.5 - parent: 1 - type: Transform - - uid: 5913 - components: - - pos: -9.5,43.5 - parent: 1 - type: Transform - - uid: 5914 - components: - - pos: -6.5,43.5 - parent: 1 - type: Transform - - uid: 5915 - components: - - pos: -5.5,43.5 - parent: 1 - type: Transform - - uid: 5927 - components: - - pos: -8.5,42.5 - parent: 1 - type: Transform - - uid: 5928 - components: - - pos: -8.5,41.5 - parent: 1 - type: Transform - - uid: 5929 - components: - - pos: -9.5,41.5 - parent: 1 - type: Transform - - uid: 5930 - components: - - pos: -6.5,42.5 - parent: 1 - type: Transform - - uid: 5931 - components: - - pos: -6.5,41.5 - parent: 1 - type: Transform - - uid: 5932 - components: - - pos: -5.5,41.5 - parent: 1 - type: Transform - - uid: 5933 - components: - - pos: -5.5,42.5 - parent: 1 - type: Transform - - uid: 6218 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,45.5 - parent: 1 - type: Transform - - uid: 7941 - components: - - pos: -54.5,65.5 - parent: 1 - type: Transform - - uid: 7942 - components: - - rot: 3.141592653589793 rad - pos: -54.5,63.5 - parent: 1 - type: Transform - - uid: 9779 - components: - - pos: -37.5,38.5 - parent: 1 - type: Transform - - uid: 9923 - components: - - rot: 1.5707963267948966 rad - pos: -64.5,12.5 - parent: 1 - type: Transform - - uid: 9938 - components: - - rot: 1.5707963267948966 rad - pos: -64.5,13.5 - parent: 1 - type: Transform - - uid: 9940 - components: - - rot: -1.5707963267948966 rad - pos: -69.5,26.5 - parent: 1 - type: Transform - - uid: 9942 - components: - - rot: 1.5707963267948966 rad - pos: -64.5,11.5 - parent: 1 - type: Transform - - uid: 10101 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,28.5 - parent: 1 - type: Transform - - uid: 10844 - components: - - pos: -60.5,42.5 - parent: 1 - type: Transform - - uid: 10881 - components: - - pos: -10.5,56.5 - parent: 1 - type: Transform - - uid: 12905 - components: - - rot: 3.141592653589793 rad - pos: 6.5,8.5 - parent: 1 - type: Transform - - uid: 13838 - components: - - rot: 3.141592653589793 rad - pos: -42.5,54.5 - parent: 1 - type: Transform - - uid: 14241 - components: - - rot: 3.141592653589793 rad - pos: -71.5,51.5 - parent: 1 - type: Transform - - uid: 14317 - components: - - rot: 3.141592653589793 rad - pos: -67.5,36.5 - parent: 1 - type: Transform - - uid: 14318 - components: - - rot: 1.5707963267948966 rad - pos: -75.5,37.5 - parent: 1 - type: Transform - - uid: 14458 - components: - - pos: -72.5,10.5 - parent: 1 - type: Transform - - uid: 14459 - components: - - pos: -72.5,11.5 - parent: 1 - type: Transform - - uid: 14460 - components: - - pos: -72.5,12.5 - parent: 1 - type: Transform - - uid: 14461 - components: - - pos: -72.5,13.5 - parent: 1 - type: Transform - - uid: 14462 - components: - - pos: -69.5,13.5 - parent: 1 - type: Transform - - uid: 14463 - components: - - pos: -69.5,11.5 - parent: 1 - type: Transform - - uid: 14464 - components: - - pos: -69.5,10.5 - parent: 1 - type: Transform - - uid: 14581 - components: - - rot: -1.5707963267948966 rad - pos: -60.5,20.5 - parent: 1 - type: Transform - - uid: 15072 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,17.5 - parent: 1 - type: Transform -- proto: ChairFoldingSpawnFolded - entities: - - uid: 2508 - components: - - rot: 3.141592653589793 rad - pos: 19.527164,13.664964 - parent: 1 - type: Transform - - uid: 2509 - components: - - rot: 3.141592653589793 rad - pos: 19.527164,13.664964 - parent: 1 - type: Transform - - uid: 2510 - components: - - rot: 3.141592653589793 rad - pos: 19.527164,13.711839 - parent: 1 - type: Transform - - uid: 2511 - components: - - rot: 3.141592653589793 rad - pos: 19.527164,13.758714 - parent: 1 - type: Transform - - uid: 2643 - components: - - rot: -1.5707963267948966 rad - pos: -9.868263,27.709732 - parent: 1 - type: Transform -- proto: ChairOfficeDark - entities: - - uid: 271 - components: - - rot: 3.141592653589793 rad - pos: -7.5,2.5 - parent: 1 - type: Transform - - uid: 272 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,2.5 - parent: 1 - type: Transform - - uid: 338 - components: - - pos: -10.5,-4.5 - parent: 1 - type: Transform - - uid: 339 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-2.5 - parent: 1 - type: Transform - - uid: 914 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-1.5 - parent: 1 - type: Transform - - uid: 1531 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-4.5 - parent: 1 - type: Transform - - uid: 1904 - components: - - pos: -54.5,49.5 - parent: 1 - type: Transform - - uid: 2642 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,28.5 - parent: 1 - type: Transform - - uid: 2803 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,13.5 - parent: 1 - type: Transform - - uid: 2846 - components: - - rot: 3.141592653589793 rad - pos: -16.5,28.5 - parent: 1 - type: Transform - - uid: 3316 - components: - - pos: -15.5,26.5 - parent: 1 - type: Transform - - uid: 3688 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,1.5 - parent: 1 - type: Transform - - uid: 3730 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-3.5 - parent: 1 - type: Transform - - uid: 3744 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,1.5 - parent: 1 - type: Transform - - uid: 3765 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,1.5 - parent: 1 - type: Transform - - uid: 4558 - components: - - pos: 22.5,39.5 - parent: 1 - type: Transform - - uid: 4577 - components: - - pos: 22.5,41.5 - parent: 1 - type: Transform - - uid: 5358 - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-1.5 - parent: 1 - type: Transform - - uid: 5359 - components: - - pos: -53.5,-4.5 - parent: 1 - type: Transform - - uid: 5616 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,28.5 - parent: 1 - type: Transform - - uid: 5808 - components: - - rot: 3.141592653589793 rad - pos: -26.5,8.5 - parent: 1 - type: Transform - - uid: 7539 - components: - - pos: -21.5,47.5 - parent: 1 - type: Transform - - uid: 7563 - components: - - pos: -19.5,37.5 - parent: 1 - type: Transform - - uid: 7907 - components: - - pos: -47.5,57.5 - parent: 1 - type: Transform - - uid: 7908 - components: - - rot: 3.141592653589793 rad - pos: -47.5,62.5 - parent: 1 - type: Transform - - uid: 7910 - components: - - rot: 3.141592653589793 rad - pos: -47.5,58.5 - parent: 1 - type: Transform - - uid: 7932 - components: - - rot: -1.5707963267948966 rad - pos: -59.5,64.5 - parent: 1 - type: Transform - - uid: 7980 - components: - - rot: 3.141592653589793 rad - pos: -54.5,57.5 - parent: 1 - type: Transform - - uid: 7981 - components: - - rot: 3.141592653589793 rad - pos: -56.5,57.5 - parent: 1 - type: Transform - - uid: 10460 - components: - - rot: -1.5707963267948966 rad - pos: -69.5,16.5 - parent: 1 - type: Transform - - uid: 10879 - components: - - rot: 3.141592653589793 rad - pos: -8.5,54.5 - parent: 1 - type: Transform - - uid: 10889 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,60.5 - parent: 1 - type: Transform - - uid: 10890 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,61.5 - parent: 1 - type: Transform - - uid: 12024 - components: - - rot: 1.5707963267948966 rad - pos: -71.5,16.5 - parent: 1 - type: Transform - - uid: 13320 - components: - - pos: -0.5,8.5 - parent: 1 - type: Transform - - uid: 14204 - components: - - pos: -65.5,26.5 - parent: 1 - type: Transform -- proto: ChairOfficeLight - entities: - - uid: 499 - components: - - rot: 3.141592653589793 rad - pos: -57.5,47.5 - parent: 1 - type: Transform - - uid: 1968 - components: - - rot: 3.141592653589793 rad - pos: -0.5,27.5 - parent: 1 - type: Transform - - uid: 1969 - components: - - rot: 3.141592653589793 rad - pos: -2.5,26.5 - parent: 1 - type: Transform - - uid: 1970 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,25.5 - parent: 1 - type: Transform - - uid: 1972 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,25.5 - parent: 1 - type: Transform - - uid: 1979 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,33.5 - parent: 1 - type: Transform - - uid: 2066 - components: - - pos: 7.5,23.5 - parent: 1 - type: Transform - - uid: 2067 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,25.5 - parent: 1 - type: Transform - - uid: 2359 - components: - - rot: 3.141592653589793 rad - pos: 7.5,16.5 - parent: 1 - type: Transform - - uid: 2360 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,18.5 - parent: 1 - type: Transform - - uid: 2806 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,9.5 - parent: 1 - type: Transform - - uid: 4567 - components: - - pos: 18.5,43.5 - parent: 1 - type: Transform - - uid: 4568 - components: - - pos: 22.5,43.5 - parent: 1 - type: Transform - - uid: 5326 - components: - - pos: 17.5,41.5 - parent: 1 - type: Transform - - uid: 5617 - components: - - pos: -41.5,24.5 - parent: 1 - type: Transform - - uid: 10880 - components: - - rot: 3.141592653589793 rad - pos: -10.5,54.5 - parent: 1 - type: Transform - - uid: 10882 - components: - - pos: -9.5,56.5 - parent: 1 - type: Transform - - uid: 12794 - components: - - pos: 15.5,32.5 - parent: 1 - type: Transform -- proto: ChairPilotSeat - entities: - - uid: 10878 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,55.5 - parent: 1 - type: Transform - - uid: 10891 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,64.5 - parent: 1 - type: Transform - - uid: 10892 - components: - - rot: 3.141592653589793 rad - pos: -16.5,65.5 - parent: 1 - type: Transform - - uid: 10893 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,64.5 - parent: 1 - type: Transform -- proto: ChairRitual - entities: - - uid: 9774 - components: - - pos: -38.5,38.5 - parent: 1 - type: Transform -- proto: ChairWood - entities: - - uid: 1905 - components: - - pos: -57.5,49.5 - parent: 1 - type: Transform - - uid: 2995 - components: - - pos: 24.5,15.5 - parent: 1 - type: Transform - - uid: 2996 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,14.5 - parent: 1 - type: Transform - - uid: 2997 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,14.5 - parent: 1 - type: Transform - - uid: 2998 - components: - - rot: 3.141592653589793 rad - pos: 24.5,13.5 - parent: 1 - type: Transform - - uid: 3731 - components: - - pos: -45.5,-2.5 - parent: 1 - type: Transform - - uid: 5269 - components: - - rot: 3.141592653589793 rad - pos: -53.5,12.5 - parent: 1 - type: Transform - - uid: 9772 - components: - - pos: -44.5,37.5 - parent: 1 - type: Transform - - uid: 9775 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,35.5 - parent: 1 - type: Transform - - uid: 9777 - components: - - rot: 3.141592653589793 rad - pos: -38.5,36.5 - parent: 1 - type: Transform - - uid: 9780 - components: - - rot: 3.141592653589793 rad - pos: -37.5,36.5 - parent: 1 - type: Transform - - uid: 9781 - components: - - pos: -36.5,38.5 - parent: 1 - type: Transform - - uid: 10459 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,42.5 - parent: 1 - type: Transform - - uid: 10461 - components: - - pos: -27.5,42.5 - parent: 1 - type: Transform - - uid: 10934 - components: - - pos: -61.5,45.5 - parent: 1 - type: Transform - - uid: 10966 - components: - - pos: -72.5,42.5 - parent: 1 - type: Transform - - uid: 10967 - components: - - rot: 3.141592653589793 rad - pos: -72.5,40.5 - parent: 1 - type: Transform - - uid: 10968 - components: - - rot: 1.5707963267948966 rad - pos: -71.5,39.5 - parent: 1 - type: Transform - - uid: 10969 - components: - - rot: -1.5707963267948966 rad - pos: -69.5,39.5 - parent: 1 - type: Transform -- proto: chem_master - entities: - - uid: 13 - components: - - pos: -2.5,27.5 - parent: 1 - type: Transform - - uid: 14 - components: - - pos: -4.5,25.5 - parent: 1 - type: Transform -- proto: ChemistryHotplate - entities: - - uid: 1967 - components: - - pos: 0.5,27.5 - parent: 1 - type: Transform -- proto: ChessBoard - entities: - - uid: 345 - components: - - rot: -1.5707963267948966 rad - pos: -8.494302,-11.401604 - parent: 1 - type: Transform - - uid: 6343 - components: - - rot: 3.141592653589793 rad - pos: -0.51219857,51.59928 - parent: 1 - type: Transform -- proto: ChurchOrganInstrument - entities: - - uid: 1816 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-2.5 - parent: 1 - type: Transform -- proto: Cigarette - entities: - - uid: 10971 - components: - - pos: -72.28104,41.642494 - parent: 1 - type: Transform - - uid: 10972 - components: - - pos: -72.67166,41.923744 - parent: 1 - type: Transform - - uid: 10973 - components: - - pos: -70.29666,39.954994 - parent: 1 - type: Transform - - uid: 10974 - components: - - pos: -70.68729,39.56437 - parent: 1 - type: Transform -- proto: CigarGoldCase - entities: - - uid: 10914 - components: - - pos: -7.7008357,61.63202 - parent: 1 - type: Transform -- proto: CircuitImprinterMachineCircuitboard - entities: - - uid: 258 - components: - - pos: -11.474969,-1.4294147 - parent: 1 - type: Transform -- proto: ClosetBase - entities: - - uid: 630 - components: - - pos: 8.5,-1.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 631 - components: - - pos: 7.5,0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 6325 - components: - - pos: 8.5,52.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: ClosetChefFilled - entities: - - uid: 6935 - components: - - pos: -31.5,47.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 294 - components: - - pos: -13.5,2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 908 - components: - - pos: 29.5,-7.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 1142 - components: - - pos: 1.5,19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 1151 - components: - - pos: 1.5,20.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 2942 - components: - - pos: 5.5,0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 2943 - components: - - pos: 1.5,-4.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 2945 - components: - - pos: 23.5,2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 2949 - components: - - pos: 15.5,-4.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 2964 - components: - - pos: 21.5,11.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 3321 - components: - - pos: -16.5,19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5274 - components: - - pos: -55.5,35.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5277 - components: - - pos: -55.5,36.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5385 - components: - - pos: -54.5,-10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5403 - components: - - pos: -29.5,2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5404 - components: - - pos: -15.5,-7.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5414 - components: - - pos: -15.5,0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5498 - components: - - pos: -53.5,2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5605 - components: - - pos: -44.5,15.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5608 - components: - - pos: -45.5,27.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5710 - components: - - pos: -34.5,10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5729 - components: - - pos: -20.5,10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5779 - components: - - pos: -4.5,10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5782 - components: - - pos: -9.5,24.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10369 - components: - - pos: -30.5,49.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10376 - components: - - pos: -20.5,50.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10379 - components: - - pos: -25.5,37.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10381 - components: - - pos: -9.5,36.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10384 - components: - - pos: -8.5,48.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10385 - components: - - pos: 6.5,39.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 12891 - components: - - pos: 15.5,23.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 14235 - components: - - pos: -70.5,56.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 14236 - components: - - pos: -60.5,48.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 14244 - components: - - pos: -66.5,40.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 14582 - components: - - pos: -61.5,29.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 15967 - components: - - pos: -72.5,-9.5 - parent: 1 - type: Transform - - uid: 15971 - components: - - pos: -65.5,-9.5 - parent: 1 - type: Transform -- proto: ClosetFireFilled - entities: - - uid: 295 - components: - - pos: -13.5,1.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 296 - components: - - pos: -13.5,0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 2917 - components: - - pos: -15.5,19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 2941 - components: - - pos: 5.5,1.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 2944 - components: - - pos: 2.5,-4.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 2948 - components: - - pos: 14.5,-4.5 - parent: 1 - type: Transform - - open: True - removedMasks: 20 - type: EntityStorage - - uid: 2965 - components: - - pos: 21.5,12.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5389 - components: - - pos: -53.5,-10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5405 - components: - - pos: -29.5,1.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5406 - components: - - pos: -15.5,-8.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5415 - components: - - pos: -16.5,0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5497 - components: - - pos: -54.5,2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5604 - components: - - pos: -43.5,15.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5607 - components: - - pos: -45.5,28.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5708 - components: - - pos: -34.5,9.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5731 - components: - - pos: -20.5,9.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5780 - components: - - pos: -4.5,9.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5783 - components: - - pos: -8.5,24.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10368 - components: - - pos: -31.5,49.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10377 - components: - - pos: -19.5,50.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10380 - components: - - pos: -25.5,38.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10382 - components: - - pos: -8.5,36.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10386 - components: - - pos: 7.5,39.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10800 - components: - - pos: -8.5,49.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 12890 - components: - - pos: 15.5,22.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 14237 - components: - - pos: -61.5,48.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 14243 - components: - - pos: -66.5,39.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 14583 - components: - - pos: -61.5,28.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 15963 - components: - - pos: -74.5,-9.5 - parent: 1 - type: Transform - - uid: 15977 - components: - - pos: -67.5,-9.5 - parent: 1 - type: Transform -- proto: ClosetJanitorFilled - entities: - - uid: 7071 - components: - - pos: -50.5,38.5 - parent: 1 - type: Transform - - contents: - - maxAmount: 1 - amount: 1 - orGroup: null - prob: 0.01 - id: WeaponPistolMk58 - - maxAmount: 1 - amount: 2 - orGroup: null - prob: 1 - id: MopItem - - maxAmount: 1 - amount: 2 - orGroup: null - prob: 1 - id: BoxMousetrap - - maxAmount: 1 - amount: 3 - orGroup: null - prob: 1 - id: WetFloorSign - - maxAmount: 1 - amount: 2 - orGroup: null - prob: 1 - id: TrashBag - - maxAmount: 1 - amount: 1 - orGroup: null - prob: 1 - id: LightReplacer - - maxAmount: 1 - amount: 1 - orGroup: null - prob: 1 - id: BoxLightMixed - - maxAmount: 1 - amount: 1 - orGroup: null - prob: 1 - id: Holoprojector - - maxAmount: 1 - amount: 2 - orGroup: null - prob: 1 - id: SoapNT - - maxAmount: 1 - amount: 2 - orGroup: null - prob: 1 - id: FlashlightLantern - type: StorageFill - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 15049 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: ClosetL3VirologyFilled - entities: - - uid: 1150 - components: - - pos: 6.5,20.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 1181 - components: - - pos: 7.5,20.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: ClosetMaintenanceFilledRandom - entities: - - uid: 1114 - components: - - pos: -23.5,-6.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 2807 - components: - - pos: -9.5,12.5 - parent: 1 - type: Transform - - uid: 2914 - components: - - pos: -17.5,19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 2946 - components: - - pos: 24.5,-0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 2947 - components: - - pos: 13.5,-4.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 2953 - components: - - pos: 26.5,-4.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 2954 - components: - - pos: 3.5,-4.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 2966 - components: - - pos: 21.5,13.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5364 - components: - - pos: -54.5,-0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5392 - components: - - pos: -52.5,-10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5413 - components: - - pos: -29.5,0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5422 - components: - - pos: -17.5,0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5499 - components: - - pos: -52.5,2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459902 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5606 - components: - - pos: -45.5,15.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5609 - components: - - pos: -45.5,26.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5709 - components: - - pos: -34.5,11.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5733 - components: - - pos: -20.5,11.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5735 - components: - - pos: -20.5,28.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5781 - components: - - pos: -4.5,11.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10363 - components: - - pos: -38.5,54.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10367 - components: - - pos: -37.5,54.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10378 - components: - - pos: -21.5,50.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10393 - components: - - pos: 6.5,43.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10394 - components: - - pos: 6.5,42.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10408 - components: - - pos: 22.5,30.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10474 - components: - - pos: -54.5,44.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10802 - components: - - pos: -8.5,50.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 12892 - components: - - pos: 15.5,24.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 12900 - components: - - pos: 14.5,8.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 12901 - components: - - pos: 3.5,8.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 14234 - components: - - pos: -69.5,56.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 14238 - components: - - pos: -62.5,48.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 14314 - components: - - pos: -74.5,47.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 14584 - components: - - pos: -61.5,27.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 15068 - components: - - pos: -28.5,20.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 15915 - components: - - pos: 14.5,34.5 - parent: 1 - type: Transform - - uid: 15931 - components: - - pos: 20.5,43.5 - parent: 1 - type: Transform -- proto: ClosetToolFilled - entities: - - uid: 1118 - components: - - pos: -24.5,-6.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: ClothingBackpackClown - entities: - - uid: 4232 - components: - - pos: -40.570293,28.017475 - parent: 1 - type: Transform -- proto: ClothingBeltUtility - entities: - - uid: 5650 - components: - - pos: -23.493784,26.550022 - parent: 1 - type: Transform -- proto: ClothingEyesGlassesSunglasses - entities: - - uid: 9736 - components: - - pos: -27.635717,35.723694 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesBoxingBlue - entities: - - uid: 14361 - components: - - pos: -60.445595,14.632732 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesBoxingGreen - entities: - - uid: 14362 - components: - - pos: -60.42997,10.429607 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesBoxingRed - entities: - - uid: 14363 - components: - - pos: -62.33622,10.476482 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesBoxingYellow - entities: - - uid: 14364 - components: - - pos: -62.30497,14.523357 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesColorBlack - entities: - - uid: 14935 - components: - - pos: -59.51448,91.46834 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesColorGray - entities: - - uid: 5938 - components: - - desc: These specially insulated grey gloves belong to the king of tiders. A small tag is inscribed with the initials, "H.M." - name: grey gloves of the tider king - type: MetaData - - pos: -7.521523,39.691025 - parent: 1 - type: Transform - - type: Insulated -- proto: ClothingHandsGlovesColorYellow - entities: - - uid: 611 - components: - - pos: -26.510632,26.559929 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesNitrile - entities: - - uid: 12776 - components: - - pos: 15.627547,28.610893 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesPowerglove - entities: - - uid: 14936 - components: - - pos: -76.52277,13.482821 - parent: 1 - type: Transform -- proto: ClothingHeadHatAnimalMonkey - entities: - - uid: 917 - components: - - pos: 27.553495,-1.4451299 - parent: 1 - type: Transform -- proto: ClothingHeadHatCone - entities: - - uid: 717 - components: - - pos: 24.462656,-1.4106827 - parent: 1 - type: Transform - - uid: 718 - components: - - pos: 24.447031,-2.4575577 - parent: 1 - type: Transform - - uid: 719 - components: - - pos: 24.462656,-3.4575577 - parent: 1 - type: Transform -- proto: ClothingHeadHatFedoraBrown - entities: - - uid: 12916 - components: - - pos: 3.488522,44.563385 - parent: 1 - type: Transform -- proto: ClothingHeadHatHairflower - entities: - - uid: 10873 - components: - - pos: -22.049007,53.739006 - parent: 1 - type: Transform -- proto: ClothingHeadHatHoodCulthood - entities: - - uid: 1836 - components: - - pos: 20.792824,-2.5214906 - parent: 1 - type: Transform -- proto: ClothingHeadHelmetEVA - entities: - - uid: 5443 - components: - - pos: -6.6627684,-13.319158 - parent: 1 - type: Transform -- proto: ClothingHeadHelmetSyndicate - entities: - - uid: 15279 - components: - - pos: -57.70341,92.69456 - parent: 1 - type: Transform -- proto: ClothingMaskBreathMedical - entities: - - uid: 12777 - components: - - pos: 16.513798,28.576006 - parent: 1 - type: Transform -- proto: ClothingMaskClown - entities: - - uid: 2306 - components: - - pos: 19.76093,15.739809 - parent: 1 - type: Transform - - uid: 2788 - components: - - pos: -25.506933,57.41912 - parent: 1 - type: Transform -- proto: ClothingMaskGas - entities: - - uid: 323 - components: - - pos: -4.562405,-5.3679457 - parent: 1 - type: Transform - - uid: 332 - components: - - pos: -4.156155,-5.3366957 - parent: 1 - type: Transform - - uid: 7378 - components: - - desc: A face-covering mask that resembles the icon of greytide worldwide. - name: face of the tider - type: MetaData - - pos: -5.3370404,44.58554 - parent: 1 - type: Transform - - uid: 7379 - components: - - desc: A face-covering mask that resembles the icon of greytide worldwide. - name: face of the tider - type: MetaData - - pos: -6.630641,44.601288 - parent: 1 - type: Transform - - uid: 7380 - components: - - desc: A face-covering mask that resembles the icon of greytide worldwide. - name: face of the tider - type: MetaData - - pos: -6.224393,44.64804 - parent: 1 - type: Transform - - uid: 7381 - components: - - desc: A face-covering mask that resembles the icon of greytide worldwide. - name: face of the tider - type: MetaData - - pos: -5.8370404,44.632416 - parent: 1 - type: Transform -- proto: ClothingNeckAromanticPin - entities: - - uid: 10536 - components: - - pos: -25.61458,26.466957 - parent: 1 - type: Transform -- proto: ClothingNeckBling - entities: - - uid: 10875 - components: - - pos: -22.564632,53.645256 - parent: 1 - type: Transform -- proto: ClothingNeckHeadphones - entities: - - uid: 10545 - components: - - pos: -53.41692,13.576396 - parent: 1 - type: Transform -- proto: ClothingNeckIntersexPin - entities: - - uid: 10539 - components: - - pos: 28.525753,9.397884 - parent: 1 - type: Transform -- proto: ClothingNeckLesbianPin - entities: - - uid: 10540 - components: - - pos: 6.5544667,-2.4496374 - parent: 1 - type: Transform -- proto: ClothingNeckLGBTPin - entities: - - uid: 10535 - components: - - pos: -34.543724,28.416185 - parent: 1 - type: Transform -- proto: ClothingNeckMantleCap - entities: - - uid: 5004 - components: - - pos: -5.5015035,61.615753 - parent: 1 - type: Transform -- proto: ClothingNeckMantleCE - entities: - - uid: 3543 - components: - - pos: -68.46455,16.578547 - parent: 1 - type: Transform -- proto: ClothingNeckMantleHOP - entities: - - uid: 5395 - components: - - pos: -21.824865,46.548195 - parent: 1 - type: Transform -- proto: ClothingNeckMantleHOS - entities: - - uid: 7085 - components: - - pos: -60.468678,63.752388 - parent: 1 - type: Transform -- proto: ClothingNeckMantleRD - entities: - - uid: 3698 - components: - - flags: InContainer - type: MetaData - - parent: 245 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingNeckNonBinaryPin - entities: - - uid: 10541 - components: - - pos: -27.46916,-8.556879 - parent: 1 - type: Transform -- proto: ClothingNeckStethoscope - entities: - - uid: 2329 - components: - - pos: 10.447677,31.662287 - parent: 1 - type: Transform -- proto: ClothingNeckTransPin - entities: - - uid: 10543 - components: - - pos: -54.52713,17.537136 - parent: 1 - type: Transform -- proto: ClothingOuterHardsuitEVA - entities: - - uid: 5444 - components: - - pos: -6.5221434,-13.381658 - parent: 1 - type: Transform -- proto: ClothingOuterHardsuitSyndicate - entities: - - uid: 15280 - components: - - pos: -57.469036,92.47581 - parent: 1 - type: Transform -- proto: ClothingOuterRobesCult - entities: - - uid: 1837 - components: - - pos: 20.402199,-2.4433656 - parent: 1 - type: Transform -- proto: ClothingOuterSuitMonkey - entities: - - uid: 916 - components: - - pos: 27.147245,-2.3826299 - parent: 1 - type: Transform -- proto: ClothingShoesBootsCombatFilled - entities: - - uid: 15494 - components: - - pos: -35.545906,68.57638 - parent: 1 - type: Transform -- proto: ClothingShoesBootsMag - entities: - - uid: 7382 - components: - - pos: -12.423142,46.687256 - parent: 1 - type: Transform - - uid: 7383 - components: - - pos: -12.595017,46.437256 - parent: 1 - type: Transform - - uid: 7384 - components: - - pos: -13.391892,46.687256 - parent: 1 - type: Transform - - uid: 7385 - components: - - pos: -13.579392,46.45288 - parent: 1 - type: Transform - - uid: 14163 - components: - - pos: -77.410675,42.617188 - parent: 1 - type: Transform -- proto: ClothingShoesBootsPerformer - entities: - - uid: 10959 - components: - - pos: -72.29666,45.642494 - parent: 1 - type: Transform -- proto: ClothingShoesWizard - entities: - - uid: 6833 - components: - - pos: -36.71934,52.678024 - parent: 1 - type: Transform - - uid: 6834 - components: - - pos: -36.359966,52.553024 - parent: 1 - type: Transform -- proto: ClothingUniformJumpskirtJanimaid - entities: - - uid: 6979 - components: - - flags: InContainer - type: MetaData - - parent: 7028 - type: Transform - - canCollide: False - type: Physics -- proto: ClothingUniformJumpskirtPerformer - entities: - - uid: 10960 - components: - - pos: -72.56229,45.579994 - parent: 1 - type: Transform -- proto: ClothingUniformJumpsuitAncient - entities: - - uid: 5559 - components: - - pos: -45.64481,17.603561 - parent: 1 - type: Transform - - uid: 15103 - components: - - pos: -45.285435,17.619186 - parent: 1 - type: Transform -- proto: ComfyChair - entities: - - uid: 6341 - components: - - pos: -0.5,52.5 - parent: 1 - type: Transform - - uid: 6342 - components: - - rot: 3.141592653589793 rad - pos: -0.5,50.5 - parent: 1 - type: Transform - - uid: 7537 - components: - - pos: -22.5,47.5 - parent: 1 - type: Transform - - uid: 7931 - components: - - rot: 1.5707963267948966 rad - pos: -61.5,64.5 - parent: 1 - type: Transform - - uid: 7933 - components: - - rot: -1.5707963267948966 rad - pos: -58.5,65.5 - parent: 1 - type: Transform - - uid: 10877 - components: - - pos: -8.5,56.5 - parent: 1 - type: Transform - - uid: 10905 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,61.5 - parent: 1 - type: Transform - - uid: 15162 - components: - - rot: 3.141592653589793 rad - pos: 16.5,52.5 - parent: 1 - type: Transform - - uid: 15163 - components: - - rot: 3.141592653589793 rad - pos: 18.5,52.5 - parent: 1 - type: Transform -- proto: CommsComputerCircuitboard - entities: - - uid: 15958 - components: - - pos: -49.44898,25.317516 - parent: 1 - type: Transform -- proto: ComputerAnalysisConsole - entities: - - uid: 341 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-11.5 - parent: 1 - type: Transform - - linkedPorts: - 347: - - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver - type: DeviceLinkSource -- proto: ComputerBroken - entities: - - uid: 591 - components: - - pos: 13.5,-7.5 - parent: 1 - type: Transform - - uid: 5324 - components: - - rot: 3.141592653589793 rad - pos: 22.5,38.5 - parent: 1 - type: Transform - - uid: 9069 - components: - - rot: 3.141592653589793 rad - pos: 18.5,42.5 - parent: 1 - type: Transform - - uid: 9080 - components: - - rot: 3.141592653589793 rad - pos: 17.5,40.5 - parent: 1 - type: Transform -- proto: ComputerCargoBounty - entities: - - uid: 8995 - components: - - pos: -33.5,-5.5 - parent: 1 - type: Transform -- proto: ComputerCargoOrders - entities: - - uid: 3619 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,1.5 - parent: 1 - type: Transform - - uid: 3746 - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-7.5 - parent: 1 - type: Transform -- proto: ComputerCargoShuttle - entities: - - uid: 3618 - components: - - pos: -39.5,-1.5 - parent: 1 - type: Transform -- proto: ComputerComms - entities: - - uid: 10884 - components: - - pos: -16.5,66.5 - parent: 1 - type: Transform - - uid: 13767 - components: - - rot: 3.141592653589793 rad - pos: -8.5,59.5 - parent: 1 - type: Transform -- proto: ComputerCrewMonitoring - entities: - - uid: 1973 - components: - - pos: -0.5,34.5 - parent: 1 - type: Transform - - uid: 10886 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,64.5 - parent: 1 - type: Transform -- proto: ComputerCriminalRecords - entities: - - uid: 2992 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,58.5 - parent: 1 - type: Transform -- proto: ComputerFrame - entities: - - uid: 1324 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,38.5 - parent: 1 - type: Transform - - uid: 9067 - components: - - rot: 3.141592653589793 rad - pos: 22.5,40.5 - parent: 1 - type: Transform - - uid: 9974 - components: - - rot: 1.5707963267948966 rad - pos: -82.5,26.5 - parent: 1 - type: Transform -- proto: ComputerId - entities: - - uid: 7562 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,37.5 - parent: 1 - type: Transform - - uid: 10885 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,64.5 - parent: 1 - type: Transform -- proto: ComputerMedicalRecords - entities: - - uid: 1980 - components: - - pos: 0.5,34.5 - parent: 1 - type: Transform -- proto: ComputerPowerMonitoring - entities: - - uid: 10712 - components: - - rot: 3.141592653589793 rad - pos: -74.5,15.5 - parent: 1 - type: Transform - - uid: 10713 - components: - - rot: -1.5707963267948966 rad - pos: -63.5,27.5 - parent: 1 - type: Transform - - uid: 10894 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,60.5 - parent: 1 - type: Transform -- proto: ComputerRadar - entities: - - uid: 10705 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-13.5 - parent: 1 - type: Transform - - uid: 10887 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,61.5 - parent: 1 - type: Transform -- proto: ComputerResearchAndDevelopment - entities: - - uid: 248 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,2.5 - parent: 1 - type: Transform - - uid: 251 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,2.5 - parent: 1 - type: Transform -- proto: ComputerSalvageExpedition - entities: - - uid: 10739 - components: - - rot: 3.141592653589793 rad - pos: -34.5,-3.5 - parent: 1 - type: Transform -- proto: ComputerShuttleCargo - entities: - - uid: 3673 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-10.5 - parent: 1 - type: Transform -- proto: ComputerSolarControl - entities: - - uid: 907 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-8.5 - parent: 1 - type: Transform -- proto: ComputerStationRecords - entities: - - uid: 10899 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,61.5 - parent: 1 - type: Transform -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 7956 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,57.5 - parent: 1 - type: Transform - - uid: 7979 - components: - - pos: -54.5,58.5 - parent: 1 - type: Transform - - uid: 10888 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,60.5 - parent: 1 - type: Transform - - uid: 13086 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,8.5 - parent: 1 - type: Transform -- proto: ComputerTechnologyDiskTerminal - entities: - - uid: 234 - components: - - pos: -9.5,-5.5 - parent: 1 - type: Transform -- proto: ContainmentFieldGenerator - entities: - - uid: 9985 - components: - - rot: -1.5707963267948966 rad - pos: -82.5,18.5 - parent: 1 - type: Transform - - uid: 9986 - components: - - rot: -1.5707963267948966 rad - pos: -81.5,18.5 - parent: 1 - type: Transform - - uid: 9987 - components: - - rot: -1.5707963267948966 rad - pos: -80.5,18.5 - parent: 1 - type: Transform - - uid: 9988 - components: - - rot: -1.5707963267948966 rad - pos: -79.5,18.5 - parent: 1 - type: Transform - - uid: 10644 - components: - - pos: -93.5,21.5 - parent: 1 - type: Transform - - uid: 10645 - components: - - pos: -93.5,29.5 - parent: 1 - type: Transform - - uid: 10646 - components: - - pos: -101.5,29.5 - parent: 1 - type: Transform - - uid: 10647 - components: - - pos: -101.5,21.5 - parent: 1 - type: Transform -- proto: ConveyorBelt - entities: - - uid: 6789 - components: - - pos: -39.5,-8.5 - parent: 1 - type: Transform - - links: - - 13842 - - 13843 - type: DeviceLinkSink - - uid: 6793 - components: - - pos: -39.5,-9.5 - parent: 1 - type: Transform - - links: - - 13842 - - 13843 - type: DeviceLinkSink - - uid: 7282 - components: - - pos: -39.5,-7.5 - parent: 1 - type: Transform - - links: - - 13842 - - 13843 - type: DeviceLinkSink - - uid: 13825 - components: - - pos: -35.5,-14.5 - parent: 1 - type: Transform - - links: - - 13823 - type: DeviceLinkSink - - uid: 13826 - components: - - pos: -35.5,-13.5 - parent: 1 - type: Transform - - links: - - 13823 - type: DeviceLinkSink - - uid: 13827 - components: - - pos: -35.5,-12.5 - parent: 1 - type: Transform - - links: - - 13823 - type: DeviceLinkSink - - uid: 13828 - components: - - pos: -35.5,-11.5 - parent: 1 - type: Transform - - links: - - 13823 - type: DeviceLinkSink - - uid: 13829 - components: - - pos: -35.5,-10.5 - parent: 1 - type: Transform - - links: - - 13823 - type: DeviceLinkSink - - uid: 13830 - components: - - pos: -31.5,-14.5 - parent: 1 - type: Transform - - links: - - 13824 - type: DeviceLinkSink - - uid: 13831 - components: - - pos: -31.5,-13.5 - parent: 1 - type: Transform - - links: - - 13824 - type: DeviceLinkSink - - uid: 13832 - components: - - pos: -31.5,-12.5 - parent: 1 - type: Transform - - links: - - 13824 - type: DeviceLinkSink - - uid: 13833 - components: - - pos: -31.5,-11.5 - parent: 1 - type: Transform - - links: - - 13824 - type: DeviceLinkSink - - uid: 13834 - components: - - pos: -31.5,-10.5 - parent: 1 - type: Transform - - links: - - 13824 - type: DeviceLinkSink - - uid: 14225 - components: - - rot: 3.141592653589793 rad - pos: -73.5,53.5 - parent: 1 - type: Transform - - links: - - 14233 - type: DeviceLinkSink - - uid: 14226 - components: - - rot: 3.141592653589793 rad - pos: -73.5,54.5 - parent: 1 - type: Transform - - links: - - 14233 - type: DeviceLinkSink - - uid: 14227 - components: - - rot: 3.141592653589793 rad - pos: -73.5,55.5 - parent: 1 - type: Transform - - links: - - 14233 - type: DeviceLinkSink - - uid: 14228 - components: - - rot: 3.141592653589793 rad - pos: -73.5,56.5 - parent: 1 - type: Transform - - links: - - 14233 - type: DeviceLinkSink - - uid: 14229 - components: - - rot: 3.141592653589793 rad - pos: -73.5,57.5 - parent: 1 - type: Transform - - links: - - 14233 - type: DeviceLinkSink - - uid: 14230 - components: - - rot: 3.141592653589793 rad - pos: -73.5,58.5 - parent: 1 - type: Transform - - links: - - 14233 - type: DeviceLinkSink -- proto: CowToolboxFilled - entities: - - uid: 14933 - components: - - pos: -92.450035,40.48285 - parent: 1 - type: Transform -- proto: CrateAirlockKit - entities: - - uid: 9079 - components: - - pos: 5.5,-19.5 - parent: 1 - type: Transform -- proto: CrateArtifactContainer - entities: - - uid: 349 - components: - - pos: 5.5,-8.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrateEmptySpawner - entities: - - uid: 15654 - components: - - pos: -39.5,-3.5 - parent: 1 - type: Transform - - uid: 15655 - components: - - pos: -37.5,-5.5 - parent: 1 - type: Transform - - uid: 15656 - components: - - pos: -41.5,-11.5 - parent: 1 - type: Transform - - uid: 15658 - components: - - pos: -21.5,-0.5 - parent: 1 - type: Transform - - uid: 15659 - components: - - pos: 22.5,-4.5 - parent: 1 - type: Transform - - uid: 15663 - components: - - pos: 2.5,46.5 - parent: 1 - type: Transform - - uid: 15664 - components: - - pos: -5.5,36.5 - parent: 1 - type: Transform - - uid: 15733 - components: - - pos: -26.5,49.5 - parent: 1 - type: Transform - - uid: 15781 - components: - - pos: -75.5,39.5 - parent: 1 - type: Transform -- proto: CrateEngineeringAMEJar - entities: - - uid: 9074 - components: - - pos: -76.5,22.5 - parent: 1 - type: Transform - - uid: 10659 - components: - - pos: -69.5,23.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrateEngineeringAMEShielding - entities: - - uid: 10657 - components: - - pos: -71.5,23.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10658 - components: - - pos: -70.5,23.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrateEngineeringCableBulk - entities: - - uid: 10145 - components: - - pos: -69.5,25.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 10723 - components: - - pos: -63.5,26.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrateFilledSpawner - entities: - - uid: 1469 - components: - - pos: -44.5,17.5 - parent: 1 - type: Transform - - uid: 3222 - components: - - pos: -7.5,12.5 - parent: 1 - type: Transform - - uid: 3629 - components: - - pos: -28.5,40.5 - parent: 1 - type: Transform - - uid: 5556 - components: - - pos: -42.5,17.5 - parent: 1 - type: Transform - - uid: 15652 - components: - - pos: -43.5,-10.5 - parent: 1 - type: Transform - - uid: 15653 - components: - - pos: -34.5,-5.5 - parent: 1 - type: Transform - - uid: 15657 - components: - - pos: -26.5,-8.5 - parent: 1 - type: Transform - - uid: 15660 - components: - - pos: 22.5,32.5 - parent: 1 - type: Transform -- proto: CrateFreezer - entities: - - uid: 2303 - components: - - pos: -28.5,44.5 - parent: 1 - type: Transform - - uid: 4236 - components: - - pos: -27.5,44.5 - parent: 1 - type: Transform -- proto: CrateFunATV - entities: - - uid: 1421 - components: - - pos: -24.5,-12.5 - parent: 1 - type: Transform -- proto: CrateMaterialGlass - entities: - - uid: 4734 - components: - - pos: 12.5,-19.5 - parent: 1 - type: Transform - - uid: 9981 - components: - - pos: -82.5,19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 15895 - components: - - pos: 12.5,-18.5 - parent: 1 - type: Transform -- proto: CrateMaterialSteel - entities: - - uid: 9980 - components: - - pos: -82.5,20.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 15557 - components: - - pos: 10.5,-20.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 220.53748 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 15558 - components: - - pos: 9.5,-20.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 220.53748 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrateNPCCow - entities: - - uid: 6919 - components: - - pos: -34.5,42.5 - parent: 1 - type: Transform - - air: - volume: 800 - immutable: False - temperature: 293.1499 - moles: - - 11.733055 - - 44.138634 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrateScience - entities: - - uid: 7398 - components: - - pos: 11.5,50.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrateServiceJanitorialSupplies - entities: - - uid: 7074 - components: - - pos: -53.5,35.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 7565 - - 7136 - - 7134 - - 7133 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: CrateTrashCart - entities: - - uid: 1405 - components: - - pos: 0.5,31.5 - parent: 1 - type: Transform - - uid: 2302 - components: - - pos: -39.5,35.5 - parent: 1 - type: Transform - - uid: 2637 - components: - - pos: -20.5,53.5 - parent: 1 - type: Transform - - uid: 4072 - components: - - pos: -34.5,7.5 - parent: 1 - type: Transform - - uid: 4073 - components: - - pos: -61.5,31.5 - parent: 1 - type: Transform -- proto: CrateTrashCartJani - entities: - - uid: 5642 - components: - - pos: -50.5,35.5 - parent: 1 - type: Transform -- proto: CrayonMime - entities: - - uid: 4216 - components: - - pos: -40.465607,23.673563 - parent: 1 - type: Transform -- proto: Crematorium - entities: - - uid: 1828 - components: - - pos: 20.5,2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrewMonitoringServer - entities: - - uid: 1065 - components: - - pos: -1.5,17.5 - parent: 1 - type: Transform -- proto: CrewMonitoringServerMachineCircuitboard - entities: - - uid: 14167 - components: - - pos: -49.521305,24.4048 - parent: 1 - type: Transform -- proto: Crowbar - entities: - - uid: 375 - components: - - pos: 2.5126948,-11.447319 - parent: 1 - type: Transform - - uid: 2376 - components: - - pos: 4.494688,39.490654 - parent: 1 - type: Transform - - uid: 5649 - components: - - pos: -24.42766,29.496252 - parent: 1 - type: Transform -- proto: CryoPod - entities: - - uid: 1333 - components: - - pos: 9.5,36.5 - parent: 1 - type: Transform -- proto: Defibrillator - entities: - - uid: 15776 - components: - - pos: 4.440308,37.660927 - parent: 1 - type: Transform -- proto: DefibrillatorCabinetFilled - entities: - - uid: 1962 - components: - - rot: 3.141592653589793 rad - pos: 7.5,27.5 - parent: 1 - type: Transform - - uid: 2373 - components: - - rot: 3.141592653589793 rad - pos: 10.5,21.5 - parent: 1 - type: Transform - - uid: 2374 - components: - - pos: -4.5,35.5 - parent: 1 - type: Transform - - uid: 2375 - components: - - rot: 3.141592653589793 rad - pos: 7.5,32.5 - parent: 1 - type: Transform - - uid: 5011 - components: - - pos: 4.5,7.5 - parent: 1 - type: Transform - - uid: 5013 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,19.5 - parent: 1 - type: Transform - - uid: 5014 - components: - - rot: 3.141592653589793 rad - pos: -49.5,30.5 - parent: 1 - type: Transform - - uid: 5054 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,16.5 - parent: 1 - type: Transform - - uid: 15779 - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-8.5 - parent: 1 - type: Transform -- proto: DeployableBarrier - entities: - - uid: 7962 - components: - - anchored: False - pos: -65.5,52.5 - parent: 1 - type: Transform - - uid: 7972 - components: - - anchored: False - pos: -65.5,53.5 - parent: 1 - type: Transform - - uid: 8019 - components: - - anchored: False - pos: -64.5,53.5 - parent: 1 - type: Transform - - uid: 8020 - components: - - anchored: False - pos: -64.5,52.5 - parent: 1 - type: Transform -- proto: DeskBell - entities: - - uid: 4988 - components: - - pos: -47.244946,56.398804 - parent: 1 - type: Transform - - uid: 4989 - components: - - pos: -45.550537,43.981125 - parent: 1 - type: Transform - - uid: 4990 - components: - - pos: -39.378662,43.49675 - parent: 1 - type: Transform - - uid: 4991 - components: - - pos: -36.738037,41.679382 - parent: 1 - type: Transform - - uid: 4992 - components: - - pos: -33.70732,38.156784 - parent: 1 - type: Transform - - uid: 4993 - components: - - pos: -24.25037,9.298397 - parent: 1 - type: Transform - - uid: 4994 - components: - - pos: -36.891582,2.4105499 - parent: 1 - type: Transform - - uid: 4995 - components: - - pos: -7.7214417,3.4652395 - parent: 1 - type: Transform - - uid: 4997 - components: - - pos: -10.2346735,11.798739 - parent: 1 - type: Transform - - uid: 4998 - components: - - pos: -0.23595914,28.693384 - parent: 1 - type: Transform - - uid: 4999 - components: - - pos: -1.0953342,32.52913 - parent: 1 - type: Transform - - uid: 5000 - components: - - pos: -19.786932,36.45546 - parent: 1 - type: Transform - - uid: 5001 - components: - - pos: -54.116062,17.501276 - parent: 1 - type: Transform - - uid: 5003 - components: - - pos: -0.74886024,7.6462955 - parent: 1 - type: Transform -- proto: DiseaseDiagnoser - entities: - - uid: 2362 - components: - - pos: 11.5,16.5 - parent: 1 - type: Transform -- proto: DisposalBend - entities: - - uid: 8668 - components: - - rot: 3.141592653589793 rad - pos: -50.5,55.5 - parent: 1 - type: Transform - - uid: 8669 - components: - - pos: -48.5,55.5 - parent: 1 - type: Transform - - uid: 8670 - components: - - pos: -50.5,65.5 - parent: 1 - type: Transform - - uid: 12920 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,23.5 - parent: 1 - type: Transform - - uid: 12921 - components: - - rot: 3.141592653589793 rad - pos: 3.5,14.5 - parent: 1 - type: Transform - - uid: 12946 - components: - - pos: 11.5,19.5 - parent: 1 - type: Transform - - uid: 12947 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,29.5 - parent: 1 - type: Transform - - uid: 13154 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-2.5 - parent: 1 - type: Transform - - uid: 13155 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-2.5 - parent: 1 - type: Transform - - uid: 13244 - components: - - rot: 3.141592653589793 rad - pos: -57.5,-10.5 - parent: 1 - type: Transform - - uid: 13271 - components: - - rot: 3.141592653589793 rad - pos: -56.5,32.5 - parent: 1 - type: Transform - - uid: 13284 - components: - - rot: -1.5707963267948966 rad - pos: -55.5,15.5 - parent: 1 - type: Transform - - uid: 13324 - components: - - rot: 3.141592653589793 rad - pos: -2.5,29.5 - parent: 1 - type: Transform - - uid: 13325 - components: - - pos: -2.5,30.5 - parent: 1 - type: Transform - - uid: 13388 - components: - - pos: -3.5,31.5 - parent: 1 - type: Transform - - uid: 13389 - components: - - rot: 3.141592653589793 rad - pos: -6.5,31.5 - parent: 1 - type: Transform - - uid: 13390 - components: - - pos: -6.5,32.5 - parent: 1 - type: Transform - - uid: 13397 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,30.5 - parent: 1 - type: Transform - - uid: 13446 - components: - - rot: 3.141592653589793 rad - pos: -26.5,28.5 - parent: 1 - type: Transform - - uid: 13447 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,28.5 - parent: 1 - type: Transform - - uid: 13473 - components: - - rot: 3.141592653589793 rad - pos: -20.5,42.5 - parent: 1 - type: Transform - - uid: 13474 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,45.5 - parent: 1 - type: Transform - - uid: 13495 - components: - - pos: -17.5,59.5 - parent: 1 - type: Transform - - uid: 13496 - components: - - rot: 3.141592653589793 rad - pos: -17.5,55.5 - parent: 1 - type: Transform - - uid: 13497 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,55.5 - parent: 1 - type: Transform - - uid: 13516 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,20.5 - parent: 1 - type: Transform - - uid: 13531 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,40.5 - parent: 1 - type: Transform - - uid: 13532 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,40.5 - parent: 1 - type: Transform - - uid: 13535 - components: - - pos: -37.5,42.5 - parent: 1 - type: Transform - - uid: 13538 - components: - - pos: -56.5,33.5 - parent: 1 - type: Transform - - uid: 13542 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,46.5 - parent: 1 - type: Transform - - uid: 13555 - components: - - pos: -57.5,47.5 - parent: 1 - type: Transform - - uid: 13557 - components: - - rot: 3.141592653589793 rad - pos: -66.5,47.5 - parent: 1 - type: Transform - - uid: 13558 - components: - - pos: -66.5,50.5 - parent: 1 - type: Transform - - uid: 13559 - components: - - rot: 3.141592653589793 rad - pos: -67.5,50.5 - parent: 1 - type: Transform - - uid: 13561 - components: - - pos: -67.5,52.5 - parent: 1 - type: Transform - - uid: 13562 - components: - - pos: -70.5,54.5 - parent: 1 - type: Transform - - uid: 13563 - components: - - rot: 3.141592653589793 rad - pos: -70.5,52.5 - parent: 1 - type: Transform - - uid: 13592 - components: - - pos: -64.5,33.5 - parent: 1 - type: Transform - - uid: 13593 - components: - - rot: 3.141592653589793 rad - pos: -64.5,28.5 - parent: 1 - type: Transform - - uid: 13594 - components: - - rot: 1.5707963267948966 rad - pos: -73.5,33.5 - parent: 1 - type: Transform -- proto: DisposalJunction - entities: - - uid: 8673 - components: - - pos: -50.5,58.5 - parent: 1 - type: Transform - - uid: 12951 - components: - - rot: 3.141592653589793 rad - pos: 3.5,19.5 - parent: 1 - type: Transform - - uid: 13156 - components: - - rot: 3.141592653589793 rad - pos: -7.5,2.5 - parent: 1 - type: Transform - - uid: 13187 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,5.5 - parent: 1 - type: Transform - - uid: 13204 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,5.5 - parent: 1 - type: Transform - - uid: 13245 - components: - - rot: 3.141592653589793 rad - pos: -57.5,5.5 - parent: 1 - type: Transform - - uid: 13283 - components: - - rot: 3.141592653589793 rad - pos: -57.5,46.5 - parent: 1 - type: Transform - - uid: 13287 - components: - - rot: 3.141592653589793 rad - pos: -57.5,15.5 - parent: 1 - type: Transform - - uid: 13296 - components: - - rot: 3.141592653589793 rad - pos: -57.5,37.5 - parent: 1 - type: Transform - - uid: 13326 - components: - - rot: 3.141592653589793 rad - pos: -3.5,30.5 - parent: 1 - type: Transform - - uid: 13425 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,32.5 - parent: 1 - type: Transform - - uid: 13455 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,32.5 - parent: 1 - type: Transform - - uid: 13476 - components: - - pos: -16.5,45.5 - parent: 1 - type: Transform - - uid: 13530 - components: - - pos: -38.5,39.5 - parent: 1 - type: Transform - - uid: 13539 - components: - - rot: 3.141592653589793 rad - pos: -57.5,33.5 - parent: 1 - type: Transform - - uid: 13545 - components: - - rot: -1.5707963267948966 rad - pos: -48.5,46.5 - parent: 1 - type: Transform -- proto: DisposalJunctionFlipped - entities: - - uid: 12953 - components: - - rot: 3.141592653589793 rad - pos: 3.5,23.5 - parent: 1 - type: Transform - - uid: 12954 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,29.5 - parent: 1 - type: Transform - - uid: 13108 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,5.5 - parent: 1 - type: Transform - - uid: 13132 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,5.5 - parent: 1 - type: Transform - - uid: 13157 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,5.5 - parent: 1 - type: Transform - - uid: 13288 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,5.5 - parent: 1 - type: Transform - - uid: 13396 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,32.5 - parent: 1 - type: Transform - - uid: 13443 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,32.5 - parent: 1 - type: Transform - - uid: 13454 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,32.5 - parent: 1 - type: Transform - - uid: 13517 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,32.5 - parent: 1 - type: Transform - - uid: 13540 - components: - - rot: 3.141592653589793 rad - pos: -57.5,32.5 - parent: 1 - type: Transform - - uid: 13547 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,46.5 - parent: 1 - type: Transform -- proto: DisposalPipe - entities: - - uid: 582 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-11.5 - parent: 1 - type: Transform - - uid: 1591 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-11.5 - parent: 1 - type: Transform - - uid: 1592 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-11.5 - parent: 1 - type: Transform - - uid: 1593 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-11.5 - parent: 1 - type: Transform - - uid: 5318 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,5.5 - parent: 1 - type: Transform - - uid: 8653 - components: - - pos: -50.5,57.5 - parent: 1 - type: Transform - - uid: 8654 - components: - - pos: -50.5,56.5 - parent: 1 - type: Transform - - uid: 8655 - components: - - pos: -50.5,60.5 - parent: 1 - type: Transform - - uid: 8656 - components: - - pos: -50.5,61.5 - parent: 1 - type: Transform - - uid: 8657 - components: - - pos: -50.5,62.5 - parent: 1 - type: Transform - - uid: 8658 - components: - - pos: -50.5,63.5 - parent: 1 - type: Transform - - uid: 8659 - components: - - pos: -50.5,64.5 - parent: 1 - type: Transform - - uid: 8660 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,55.5 - parent: 1 - type: Transform - - uid: 8661 - components: - - rot: 3.141592653589793 rad - pos: -48.5,54.5 - parent: 1 - type: Transform - - uid: 8662 - components: - - rot: 3.141592653589793 rad - pos: -48.5,53.5 - parent: 1 - type: Transform - - uid: 8663 - components: - - rot: 3.141592653589793 rad - pos: -48.5,52.5 - parent: 1 - type: Transform - - uid: 8664 - components: - - rot: 3.141592653589793 rad - pos: -48.5,51.5 - parent: 1 - type: Transform - - uid: 8665 - components: - - rot: 3.141592653589793 rad - pos: -48.5,50.5 - parent: 1 - type: Transform - - uid: 8666 - components: - - rot: 3.141592653589793 rad - pos: -48.5,49.5 - parent: 1 - type: Transform - - uid: 8667 - components: - - rot: 3.141592653589793 rad - pos: -48.5,48.5 - parent: 1 - type: Transform - - uid: 11148 - components: - - rot: -1.5707963267948966 rad - pos: -47.5,46.5 - parent: 1 - type: Transform - - uid: 12922 - components: - - rot: 3.141592653589793 rad - pos: 3.5,15.5 - parent: 1 - type: Transform - - uid: 12923 - components: - - rot: 3.141592653589793 rad - pos: 3.5,16.5 - parent: 1 - type: Transform - - uid: 12924 - components: - - rot: 3.141592653589793 rad - pos: 3.5,17.5 - parent: 1 - type: Transform - - uid: 12925 - components: - - rot: 3.141592653589793 rad - pos: 3.5,18.5 - parent: 1 - type: Transform - - uid: 12926 - components: - - rot: 3.141592653589793 rad - pos: 3.5,20.5 - parent: 1 - type: Transform - - uid: 12927 - components: - - rot: 3.141592653589793 rad - pos: 3.5,21.5 - parent: 1 - type: Transform - - uid: 12928 - components: - - rot: 3.141592653589793 rad - pos: 3.5,22.5 - parent: 1 - type: Transform - - uid: 12929 - components: - - rot: 3.141592653589793 rad - pos: 3.5,24.5 - parent: 1 - type: Transform - - uid: 12930 - components: - - rot: 3.141592653589793 rad - pos: 3.5,25.5 - parent: 1 - type: Transform - - uid: 12931 - components: - - rot: 3.141592653589793 rad - pos: 3.5,26.5 - parent: 1 - type: Transform - - uid: 12932 - components: - - rot: 3.141592653589793 rad - pos: 3.5,27.5 - parent: 1 - type: Transform - - uid: 12933 - components: - - rot: 3.141592653589793 rad - pos: 3.5,28.5 - parent: 1 - type: Transform - - uid: 12934 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,29.5 - parent: 1 - type: Transform - - uid: 12935 - components: - - pos: 11.5,15.5 - parent: 1 - type: Transform - - uid: 12936 - components: - - pos: 11.5,16.5 - parent: 1 - type: Transform - - uid: 12937 - components: - - pos: 11.5,17.5 - parent: 1 - type: Transform - - uid: 12938 - components: - - pos: 11.5,18.5 - parent: 1 - type: Transform - - uid: 12939 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,19.5 - parent: 1 - type: Transform - - uid: 12940 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,19.5 - parent: 1 - type: Transform - - uid: 12941 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,19.5 - parent: 1 - type: Transform - - uid: 12942 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,19.5 - parent: 1 - type: Transform - - uid: 12943 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,19.5 - parent: 1 - type: Transform - - uid: 12944 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,19.5 - parent: 1 - type: Transform - - uid: 12945 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,19.5 - parent: 1 - type: Transform - - uid: 12948 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,29.5 - parent: 1 - type: Transform - - uid: 12949 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,23.5 - parent: 1 - type: Transform - - uid: 12950 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,23.5 - parent: 1 - type: Transform - - uid: 13109 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,5.5 - parent: 1 - type: Transform - - uid: 13110 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,5.5 - parent: 1 - type: Transform - - uid: 13111 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,5.5 - parent: 1 - type: Transform - - uid: 13112 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,5.5 - parent: 1 - type: Transform - - uid: 13113 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,5.5 - parent: 1 - type: Transform - - uid: 13114 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,5.5 - parent: 1 - type: Transform - - uid: 13115 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,5.5 - parent: 1 - type: Transform - - uid: 13116 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,5.5 - parent: 1 - type: Transform - - uid: 13117 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,5.5 - parent: 1 - type: Transform - - uid: 13118 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,5.5 - parent: 1 - type: Transform - - uid: 13119 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,5.5 - parent: 1 - type: Transform - - uid: 13120 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,5.5 - parent: 1 - type: Transform - - uid: 13121 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,5.5 - parent: 1 - type: Transform - - uid: 13122 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,5.5 - parent: 1 - type: Transform - - uid: 13123 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,5.5 - parent: 1 - type: Transform - - uid: 13124 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-2.5 - parent: 1 - type: Transform - - uid: 13125 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-1.5 - parent: 1 - type: Transform - - uid: 13126 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-0.5 - parent: 1 - type: Transform - - uid: 13127 - components: - - rot: 3.141592653589793 rad - pos: 11.5,0.5 - parent: 1 - type: Transform - - uid: 13128 - components: - - rot: 3.141592653589793 rad - pos: 11.5,1.5 - parent: 1 - type: Transform - - uid: 13129 - components: - - rot: 3.141592653589793 rad - pos: 11.5,2.5 - parent: 1 - type: Transform - - uid: 13130 - components: - - rot: 3.141592653589793 rad - pos: 11.5,3.5 - parent: 1 - type: Transform - - uid: 13131 - components: - - rot: 3.141592653589793 rad - pos: 11.5,4.5 - parent: 1 - type: Transform - - uid: 13134 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,5.5 - parent: 1 - type: Transform - - uid: 13135 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,5.5 - parent: 1 - type: Transform - - uid: 13136 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,5.5 - parent: 1 - type: Transform - - uid: 13137 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,5.5 - parent: 1 - type: Transform - - uid: 13138 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,5.5 - parent: 1 - type: Transform - - uid: 13139 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,5.5 - parent: 1 - type: Transform - - uid: 13140 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,5.5 - parent: 1 - type: Transform - - uid: 13141 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,5.5 - parent: 1 - type: Transform - - uid: 13142 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,5.5 - parent: 1 - type: Transform - - uid: 13143 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,5.5 - parent: 1 - type: Transform - - uid: 13144 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,5.5 - parent: 1 - type: Transform - - uid: 13145 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,5.5 - parent: 1 - type: Transform - - uid: 13146 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,5.5 - parent: 1 - type: Transform - - uid: 13147 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,5.5 - parent: 1 - type: Transform - - uid: 13148 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,5.5 - parent: 1 - type: Transform - - uid: 13149 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,5.5 - parent: 1 - type: Transform - - uid: 13150 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,5.5 - parent: 1 - type: Transform - - uid: 13151 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,5.5 - parent: 1 - type: Transform - - uid: 13158 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-2.5 - parent: 1 - type: Transform - - uid: 13159 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-2.5 - parent: 1 - type: Transform - - uid: 13160 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-2.5 - parent: 1 - type: Transform - - uid: 13161 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-2.5 - parent: 1 - type: Transform - - uid: 13162 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-2.5 - parent: 1 - type: Transform - - uid: 13163 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-2.5 - parent: 1 - type: Transform - - uid: 13164 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-2.5 - parent: 1 - type: Transform - - uid: 13165 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-2.5 - parent: 1 - type: Transform - - uid: 13166 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-2.5 - parent: 1 - type: Transform - - uid: 13167 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-2.5 - parent: 1 - type: Transform - - uid: 13168 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-1.5 - parent: 1 - type: Transform - - uid: 13169 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-0.5 - parent: 1 - type: Transform - - uid: 13170 - components: - - rot: 3.141592653589793 rad - pos: -7.5,0.5 - parent: 1 - type: Transform - - uid: 13171 - components: - - rot: 3.141592653589793 rad - pos: -7.5,1.5 - parent: 1 - type: Transform - - uid: 13172 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,2.5 - parent: 1 - type: Transform - - uid: 13173 - components: - - pos: -7.5,3.5 - parent: 1 - type: Transform - - uid: 13174 - components: - - pos: -7.5,4.5 - parent: 1 - type: Transform - - uid: 13175 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,5.5 - parent: 1 - type: Transform - - uid: 13176 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,5.5 - parent: 1 - type: Transform - - uid: 13177 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,5.5 - parent: 1 - type: Transform - - uid: 13178 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,5.5 - parent: 1 - type: Transform - - uid: 13179 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,5.5 - parent: 1 - type: Transform - - uid: 13180 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,5.5 - parent: 1 - type: Transform - - uid: 13181 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,5.5 - parent: 1 - type: Transform - - uid: 13182 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,5.5 - parent: 1 - type: Transform - - uid: 13183 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,5.5 - parent: 1 - type: Transform - - uid: 13184 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,5.5 - parent: 1 - type: Transform - - uid: 13185 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,5.5 - parent: 1 - type: Transform - - uid: 13186 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,5.5 - parent: 1 - type: Transform - - uid: 13189 - components: - - pos: -20.5,6.5 - parent: 1 - type: Transform - - uid: 13190 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,5.5 - parent: 1 - type: Transform - - uid: 13191 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,5.5 - parent: 1 - type: Transform - - uid: 13192 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,5.5 - parent: 1 - type: Transform - - uid: 13193 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,5.5 - parent: 1 - type: Transform - - uid: 13194 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,5.5 - parent: 1 - type: Transform - - uid: 13195 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,5.5 - parent: 1 - type: Transform - - uid: 13196 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,5.5 - parent: 1 - type: Transform - - uid: 13197 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,5.5 - parent: 1 - type: Transform - - uid: 13198 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,5.5 - parent: 1 - type: Transform - - uid: 13199 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,5.5 - parent: 1 - type: Transform - - uid: 13200 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,5.5 - parent: 1 - type: Transform - - uid: 13201 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,5.5 - parent: 1 - type: Transform - - uid: 13202 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,5.5 - parent: 1 - type: Transform - - uid: 13203 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,5.5 - parent: 1 - type: Transform - - uid: 13205 - components: - - rot: 3.141592653589793 rad - pos: -35.5,6.5 - parent: 1 - type: Transform - - uid: 13207 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,5.5 - parent: 1 - type: Transform - - uid: 13208 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,5.5 - parent: 1 - type: Transform - - uid: 13209 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,5.5 - parent: 1 - type: Transform - - uid: 13210 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,5.5 - parent: 1 - type: Transform - - uid: 13211 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,5.5 - parent: 1 - type: Transform - - uid: 13212 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,5.5 - parent: 1 - type: Transform - - uid: 13213 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,5.5 - parent: 1 - type: Transform - - uid: 13214 - components: - - rot: -1.5707963267948966 rad - pos: -43.5,5.5 - parent: 1 - type: Transform - - uid: 13215 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,5.5 - parent: 1 - type: Transform - - uid: 13216 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,5.5 - parent: 1 - type: Transform - - uid: 13217 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,5.5 - parent: 1 - type: Transform - - uid: 13219 - components: - - rot: -1.5707963267948966 rad - pos: -48.5,5.5 - parent: 1 - type: Transform - - uid: 13220 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,5.5 - parent: 1 - type: Transform - - uid: 13222 - components: - - rot: -1.5707963267948966 rad - pos: -51.5,5.5 - parent: 1 - type: Transform - - uid: 13223 - components: - - rot: -1.5707963267948966 rad - pos: -52.5,5.5 - parent: 1 - type: Transform - - uid: 13224 - components: - - rot: -1.5707963267948966 rad - pos: -53.5,5.5 - parent: 1 - type: Transform - - uid: 13225 - components: - - rot: -1.5707963267948966 rad - pos: -54.5,5.5 - parent: 1 - type: Transform - - uid: 13226 - components: - - rot: -1.5707963267948966 rad - pos: -55.5,5.5 - parent: 1 - type: Transform - - uid: 13227 - components: - - rot: -1.5707963267948966 rad - pos: -56.5,5.5 - parent: 1 - type: Transform - - uid: 13228 - components: - - rot: 3.141592653589793 rad - pos: -57.5,-9.5 - parent: 1 - type: Transform - - uid: 13229 - components: - - rot: 3.141592653589793 rad - pos: -57.5,-8.5 - parent: 1 - type: Transform - - uid: 13230 - components: - - rot: 3.141592653589793 rad - pos: -57.5,-7.5 - parent: 1 - type: Transform - - uid: 13231 - components: - - rot: 3.141592653589793 rad - pos: -57.5,-6.5 - parent: 1 - type: Transform - - uid: 13232 - components: - - rot: 3.141592653589793 rad - pos: -57.5,-5.5 - parent: 1 - type: Transform - - uid: 13233 - components: - - rot: 3.141592653589793 rad - pos: -57.5,-4.5 - parent: 1 - type: Transform - - uid: 13234 - components: - - rot: 3.141592653589793 rad - pos: -57.5,-3.5 - parent: 1 - type: Transform - - uid: 13235 - components: - - rot: 3.141592653589793 rad - pos: -57.5,-2.5 - parent: 1 - type: Transform - - uid: 13236 - components: - - rot: 3.141592653589793 rad - pos: -57.5,-1.5 - parent: 1 - type: Transform - - uid: 13237 - components: - - rot: 3.141592653589793 rad - pos: -57.5,-0.5 - parent: 1 - type: Transform - - uid: 13238 - components: - - rot: 3.141592653589793 rad - pos: -57.5,0.5 - parent: 1 - type: Transform - - uid: 13239 - components: - - rot: 3.141592653589793 rad - pos: -57.5,1.5 - parent: 1 - type: Transform - - uid: 13240 - components: - - rot: 3.141592653589793 rad - pos: -57.5,2.5 - parent: 1 - type: Transform - - uid: 13241 - components: - - rot: 3.141592653589793 rad - pos: -57.5,3.5 - parent: 1 - type: Transform - - uid: 13242 - components: - - rot: 3.141592653589793 rad - pos: -57.5,4.5 - parent: 1 - type: Transform - - uid: 13246 - components: - - rot: 3.141592653589793 rad - pos: -57.5,6.5 - parent: 1 - type: Transform - - uid: 13247 - components: - - rot: 3.141592653589793 rad - pos: -57.5,7.5 - parent: 1 - type: Transform - - uid: 13248 - components: - - rot: 3.141592653589793 rad - pos: -57.5,8.5 - parent: 1 - type: Transform - - uid: 13249 - components: - - rot: 3.141592653589793 rad - pos: -57.5,9.5 - parent: 1 - type: Transform - - uid: 13250 - components: - - rot: 3.141592653589793 rad - pos: -57.5,10.5 - parent: 1 - type: Transform - - uid: 13251 - components: - - rot: 3.141592653589793 rad - pos: -57.5,11.5 - parent: 1 - type: Transform - - uid: 13252 - components: - - rot: 3.141592653589793 rad - pos: -57.5,12.5 - parent: 1 - type: Transform - - uid: 13253 - components: - - rot: 3.141592653589793 rad - pos: -57.5,13.5 - parent: 1 - type: Transform - - uid: 13254 - components: - - rot: 3.141592653589793 rad - pos: -57.5,14.5 - parent: 1 - type: Transform - - uid: 13255 - components: - - rot: 3.141592653589793 rad - pos: -57.5,16.5 - parent: 1 - type: Transform - - uid: 13256 - components: - - rot: 3.141592653589793 rad - pos: -57.5,17.5 - parent: 1 - type: Transform - - uid: 13257 - components: - - rot: 3.141592653589793 rad - pos: -57.5,18.5 - parent: 1 - type: Transform - - uid: 13258 - components: - - rot: 3.141592653589793 rad - pos: -57.5,19.5 - parent: 1 - type: Transform - - uid: 13259 - components: - - rot: 3.141592653589793 rad - pos: -57.5,20.5 - parent: 1 - type: Transform - - uid: 13260 - components: - - rot: 3.141592653589793 rad - pos: -57.5,21.5 - parent: 1 - type: Transform - - uid: 13261 - components: - - rot: 3.141592653589793 rad - pos: -57.5,22.5 - parent: 1 - type: Transform - - uid: 13262 - components: - - rot: 3.141592653589793 rad - pos: -57.5,23.5 - parent: 1 - type: Transform - - uid: 13263 - components: - - rot: 3.141592653589793 rad - pos: -57.5,24.5 - parent: 1 - type: Transform - - uid: 13264 - components: - - rot: 3.141592653589793 rad - pos: -57.5,25.5 - parent: 1 - type: Transform - - uid: 13265 - components: - - rot: 3.141592653589793 rad - pos: -57.5,26.5 - parent: 1 - type: Transform - - uid: 13266 - components: - - rot: 3.141592653589793 rad - pos: -57.5,27.5 - parent: 1 - type: Transform - - uid: 13267 - components: - - rot: 3.141592653589793 rad - pos: -57.5,28.5 - parent: 1 - type: Transform - - uid: 13268 - components: - - rot: 3.141592653589793 rad - pos: -57.5,29.5 - parent: 1 - type: Transform - - uid: 13269 - components: - - rot: 3.141592653589793 rad - pos: -57.5,30.5 - parent: 1 - type: Transform - - uid: 13270 - components: - - rot: 3.141592653589793 rad - pos: -57.5,31.5 - parent: 1 - type: Transform - - uid: 13272 - components: - - rot: 3.141592653589793 rad - pos: -57.5,34.5 - parent: 1 - type: Transform - - uid: 13273 - components: - - rot: 3.141592653589793 rad - pos: -57.5,35.5 - parent: 1 - type: Transform - - uid: 13274 - components: - - rot: 3.141592653589793 rad - pos: -57.5,36.5 - parent: 1 - type: Transform - - uid: 13275 - components: - - rot: 3.141592653589793 rad - pos: -57.5,38.5 - parent: 1 - type: Transform - - uid: 13276 - components: - - rot: 3.141592653589793 rad - pos: -57.5,39.5 - parent: 1 - type: Transform - - uid: 13277 - components: - - rot: 3.141592653589793 rad - pos: -57.5,40.5 - parent: 1 - type: Transform - - uid: 13278 - components: - - rot: 3.141592653589793 rad - pos: -57.5,41.5 - parent: 1 - type: Transform - - uid: 13279 - components: - - rot: 3.141592653589793 rad - pos: -57.5,42.5 - parent: 1 - type: Transform - - uid: 13280 - components: - - rot: 3.141592653589793 rad - pos: -57.5,43.5 - parent: 1 - type: Transform - - uid: 13281 - components: - - rot: 3.141592653589793 rad - pos: -57.5,44.5 - parent: 1 - type: Transform - - uid: 13282 - components: - - rot: 3.141592653589793 rad - pos: -57.5,45.5 - parent: 1 - type: Transform - - uid: 13286 - components: - - rot: -1.5707963267948966 rad - pos: -56.5,15.5 - parent: 1 - type: Transform - - uid: 13290 - components: - - rot: 3.141592653589793 rad - pos: -49.5,4.5 - parent: 1 - type: Transform - - uid: 13295 - components: - - rot: -1.5707963267948966 rad - pos: -56.5,37.5 - parent: 1 - type: Transform - - uid: 13328 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,29.5 - parent: 1 - type: Transform - - uid: 13329 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,29.5 - parent: 1 - type: Transform - - uid: 13330 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,29.5 - parent: 1 - type: Transform - - uid: 13374 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,47.5 - parent: 1 - type: Transform - - uid: 13375 - components: - - rot: 1.5707963267948966 rad - pos: -60.5,47.5 - parent: 1 - type: Transform - - uid: 13376 - components: - - rot: 1.5707963267948966 rad - pos: -61.5,47.5 - parent: 1 - type: Transform - - uid: 13377 - components: - - rot: 1.5707963267948966 rad - pos: -62.5,47.5 - parent: 1 - type: Transform - - uid: 13378 - components: - - rot: 1.5707963267948966 rad - pos: -63.5,47.5 - parent: 1 - type: Transform - - uid: 13379 - components: - - rot: 1.5707963267948966 rad - pos: -64.5,47.5 - parent: 1 - type: Transform - - uid: 13380 - components: - - rot: 1.5707963267948966 rad - pos: -65.5,47.5 - parent: 1 - type: Transform - - uid: 13381 - components: - - pos: -66.5,48.5 - parent: 1 - type: Transform - - uid: 13382 - components: - - pos: -66.5,49.5 - parent: 1 - type: Transform - - uid: 13383 - components: - - rot: 3.141592653589793 rad - pos: -67.5,51.5 - parent: 1 - type: Transform - - uid: 13384 - components: - - rot: 1.5707963267948966 rad - pos: -68.5,52.5 - parent: 1 - type: Transform - - uid: 13385 - components: - - rot: 1.5707963267948966 rad - pos: -69.5,52.5 - parent: 1 - type: Transform - - uid: 13386 - components: - - pos: -70.5,53.5 - parent: 1 - type: Transform - - uid: 13387 - components: - - rot: -1.5707963267948966 rad - pos: -71.5,54.5 - parent: 1 - type: Transform - - uid: 13391 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,31.5 - parent: 1 - type: Transform - - uid: 13392 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,31.5 - parent: 1 - type: Transform - - uid: 13393 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,32.5 - parent: 1 - type: Transform - - uid: 13394 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,30.5 - parent: 1 - type: Transform - - uid: 13395 - components: - - rot: 3.141592653589793 rad - pos: -8.5,31.5 - parent: 1 - type: Transform - - uid: 13399 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,32.5 - parent: 1 - type: Transform - - uid: 13400 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,32.5 - parent: 1 - type: Transform - - uid: 13401 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,32.5 - parent: 1 - type: Transform - - uid: 13402 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,32.5 - parent: 1 - type: Transform - - uid: 13403 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,32.5 - parent: 1 - type: Transform - - uid: 13404 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,32.5 - parent: 1 - type: Transform - - uid: 13405 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,32.5 - parent: 1 - type: Transform - - uid: 13406 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,32.5 - parent: 1 - type: Transform - - uid: 13407 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,32.5 - parent: 1 - type: Transform - - uid: 13408 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,32.5 - parent: 1 - type: Transform - - uid: 13409 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,32.5 - parent: 1 - type: Transform - - uid: 13410 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,32.5 - parent: 1 - type: Transform - - uid: 13411 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,32.5 - parent: 1 - type: Transform - - uid: 13412 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,32.5 - parent: 1 - type: Transform - - uid: 13413 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,32.5 - parent: 1 - type: Transform - - uid: 13414 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,32.5 - parent: 1 - type: Transform - - uid: 13415 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,32.5 - parent: 1 - type: Transform - - uid: 13416 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,32.5 - parent: 1 - type: Transform - - uid: 13417 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,32.5 - parent: 1 - type: Transform - - uid: 13418 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,32.5 - parent: 1 - type: Transform - - uid: 13419 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,32.5 - parent: 1 - type: Transform - - uid: 13420 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,32.5 - parent: 1 - type: Transform - - uid: 13421 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,32.5 - parent: 1 - type: Transform - - uid: 13422 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,32.5 - parent: 1 - type: Transform - - uid: 13423 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,32.5 - parent: 1 - type: Transform - - uid: 13424 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,32.5 - parent: 1 - type: Transform - - uid: 13426 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,32.5 - parent: 1 - type: Transform - - uid: 13427 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,32.5 - parent: 1 - type: Transform - - uid: 13428 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,32.5 - parent: 1 - type: Transform - - uid: 13429 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,32.5 - parent: 1 - type: Transform - - uid: 13430 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,32.5 - parent: 1 - type: Transform - - uid: 13431 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,32.5 - parent: 1 - type: Transform - - uid: 13432 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,32.5 - parent: 1 - type: Transform - - uid: 13433 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,32.5 - parent: 1 - type: Transform - - uid: 13434 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,32.5 - parent: 1 - type: Transform - - uid: 13435 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,32.5 - parent: 1 - type: Transform - - uid: 13436 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,32.5 - parent: 1 - type: Transform - - uid: 13437 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,32.5 - parent: 1 - type: Transform - - uid: 13438 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,32.5 - parent: 1 - type: Transform - - uid: 13439 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,32.5 - parent: 1 - type: Transform - - uid: 13440 - components: - - rot: 1.5707963267948966 rad - pos: -54.5,32.5 - parent: 1 - type: Transform - - uid: 13441 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,32.5 - parent: 1 - type: Transform - - uid: 13442 - components: - - pos: -45.5,31.5 - parent: 1 - type: Transform - - uid: 13448 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,28.5 - parent: 1 - type: Transform - - uid: 13449 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,28.5 - parent: 1 - type: Transform - - uid: 13450 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,28.5 - parent: 1 - type: Transform - - uid: 13451 - components: - - rot: 3.141592653589793 rad - pos: -22.5,29.5 - parent: 1 - type: Transform - - uid: 13452 - components: - - rot: 3.141592653589793 rad - pos: -22.5,31.5 - parent: 1 - type: Transform - - uid: 13453 - components: - - rot: 3.141592653589793 rad - pos: -22.5,30.5 - parent: 1 - type: Transform - - uid: 13456 - components: - - rot: 3.141592653589793 rad - pos: -16.5,33.5 - parent: 1 - type: Transform - - uid: 13457 - components: - - rot: 3.141592653589793 rad - pos: -16.5,34.5 - parent: 1 - type: Transform - - uid: 13458 - components: - - rot: 3.141592653589793 rad - pos: -16.5,35.5 - parent: 1 - type: Transform - - uid: 13459 - components: - - rot: 3.141592653589793 rad - pos: -16.5,36.5 - parent: 1 - type: Transform - - uid: 13460 - components: - - rot: 3.141592653589793 rad - pos: -16.5,37.5 - parent: 1 - type: Transform - - uid: 13461 - components: - - rot: 3.141592653589793 rad - pos: -16.5,38.5 - parent: 1 - type: Transform - - uid: 13462 - components: - - rot: 3.141592653589793 rad - pos: -16.5,39.5 - parent: 1 - type: Transform - - uid: 13463 - components: - - rot: 3.141592653589793 rad - pos: -16.5,40.5 - parent: 1 - type: Transform - - uid: 13464 - components: - - rot: 3.141592653589793 rad - pos: -16.5,41.5 - parent: 1 - type: Transform - - uid: 13465 - components: - - rot: 3.141592653589793 rad - pos: -16.5,42.5 - parent: 1 - type: Transform - - uid: 13466 - components: - - rot: 3.141592653589793 rad - pos: -16.5,43.5 - parent: 1 - type: Transform - - uid: 13467 - components: - - rot: 3.141592653589793 rad - pos: -16.5,44.5 - parent: 1 - type: Transform - - uid: 13468 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,45.5 - parent: 1 - type: Transform - - uid: 13469 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,45.5 - parent: 1 - type: Transform - - uid: 13470 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,45.5 - parent: 1 - type: Transform - - uid: 13471 - components: - - pos: -20.5,44.5 - parent: 1 - type: Transform - - uid: 13472 - components: - - pos: -20.5,43.5 - parent: 1 - type: Transform - - uid: 13477 - components: - - pos: -16.5,46.5 - parent: 1 - type: Transform - - uid: 13478 - components: - - pos: -16.5,47.5 - parent: 1 - type: Transform - - uid: 13479 - components: - - pos: -16.5,48.5 - parent: 1 - type: Transform - - uid: 13480 - components: - - pos: -16.5,49.5 - parent: 1 - type: Transform - - uid: 13481 - components: - - pos: -16.5,50.5 - parent: 1 - type: Transform - - uid: 13482 - components: - - pos: -16.5,51.5 - parent: 1 - type: Transform - - uid: 13483 - components: - - pos: -16.5,52.5 - parent: 1 - type: Transform - - uid: 13484 - components: - - pos: -16.5,53.5 - parent: 1 - type: Transform - - uid: 13485 - components: - - pos: -16.5,54.5 - parent: 1 - type: Transform - - uid: 13486 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,55.5 - parent: 1 - type: Transform - - uid: 13487 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,55.5 - parent: 1 - type: Transform - - uid: 13488 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,55.5 - parent: 1 - type: Transform - - uid: 13489 - components: - - rot: 3.141592653589793 rad - pos: -12.5,56.5 - parent: 1 - type: Transform - - uid: 13490 - components: - - rot: 3.141592653589793 rad - pos: -17.5,56.5 - parent: 1 - type: Transform - - uid: 13491 - components: - - rot: 3.141592653589793 rad - pos: -17.5,57.5 - parent: 1 - type: Transform - - uid: 13492 - components: - - rot: 3.141592653589793 rad - pos: -17.5,58.5 - parent: 1 - type: Transform - - uid: 13493 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,59.5 - parent: 1 - type: Transform - - uid: 13494 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,59.5 - parent: 1 - type: Transform - - uid: 13504 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,20.5 - parent: 1 - type: Transform - - uid: 13505 - components: - - pos: -37.5,21.5 - parent: 1 - type: Transform - - uid: 13506 - components: - - pos: -37.5,22.5 - parent: 1 - type: Transform - - uid: 13507 - components: - - pos: -37.5,23.5 - parent: 1 - type: Transform - - uid: 13508 - components: - - pos: -37.5,24.5 - parent: 1 - type: Transform - - uid: 13509 - components: - - pos: -37.5,25.5 - parent: 1 - type: Transform - - uid: 13510 - components: - - pos: -37.5,26.5 - parent: 1 - type: Transform - - uid: 13511 - components: - - pos: -37.5,27.5 - parent: 1 - type: Transform - - uid: 13512 - components: - - pos: -37.5,28.5 - parent: 1 - type: Transform - - uid: 13513 - components: - - pos: -37.5,29.5 - parent: 1 - type: Transform - - uid: 13514 - components: - - pos: -37.5,30.5 - parent: 1 - type: Transform - - uid: 13515 - components: - - pos: -37.5,31.5 - parent: 1 - type: Transform - - uid: 13519 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,39.5 - parent: 1 - type: Transform - - uid: 13520 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,39.5 - parent: 1 - type: Transform - - uid: 13521 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,39.5 - parent: 1 - type: Transform - - uid: 13522 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,39.5 - parent: 1 - type: Transform - - uid: 13523 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,39.5 - parent: 1 - type: Transform - - uid: 13524 - components: - - pos: -38.5,38.5 - parent: 1 - type: Transform - - uid: 13525 - components: - - pos: -38.5,37.5 - parent: 1 - type: Transform - - uid: 13526 - components: - - pos: -38.5,36.5 - parent: 1 - type: Transform - - uid: 13527 - components: - - pos: -38.5,35.5 - parent: 1 - type: Transform - - uid: 13528 - components: - - pos: -38.5,34.5 - parent: 1 - type: Transform - - uid: 13529 - components: - - pos: -38.5,33.5 - parent: 1 - type: Transform - - uid: 13537 - components: - - pos: -37.5,41.5 - parent: 1 - type: Transform - - uid: 13541 - components: - - rot: 3.141592653589793 rad - pos: -49.5,45.5 - parent: 1 - type: Transform - - uid: 13543 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,46.5 - parent: 1 - type: Transform - - uid: 13544 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,46.5 - parent: 1 - type: Transform - - uid: 13548 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,46.5 - parent: 1 - type: Transform - - uid: 13549 - components: - - rot: -1.5707963267948966 rad - pos: -51.5,46.5 - parent: 1 - type: Transform - - uid: 13550 - components: - - rot: -1.5707963267948966 rad - pos: -52.5,46.5 - parent: 1 - type: Transform - - uid: 13551 - components: - - rot: -1.5707963267948966 rad - pos: -53.5,46.5 - parent: 1 - type: Transform - - uid: 13552 - components: - - rot: -1.5707963267948966 rad - pos: -54.5,46.5 - parent: 1 - type: Transform - - uid: 13553 - components: - - rot: -1.5707963267948966 rad - pos: -55.5,46.5 - parent: 1 - type: Transform - - uid: 13554 - components: - - rot: -1.5707963267948966 rad - pos: -56.5,46.5 - parent: 1 - type: Transform - - uid: 13556 - components: - - rot: -1.5707963267948966 rad - pos: -72.5,54.5 - parent: 1 - type: Transform - - uid: 13560 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,47.5 - parent: 1 - type: Transform - - uid: 13564 - components: - - rot: 3.141592653589793 rad - pos: -73.5,20.5 - parent: 1 - type: Transform - - uid: 13565 - components: - - rot: 3.141592653589793 rad - pos: -73.5,21.5 - parent: 1 - type: Transform - - uid: 13566 - components: - - rot: 3.141592653589793 rad - pos: -73.5,22.5 - parent: 1 - type: Transform - - uid: 13567 - components: - - rot: 3.141592653589793 rad - pos: -73.5,23.5 - parent: 1 - type: Transform - - uid: 13568 - components: - - rot: 3.141592653589793 rad - pos: -73.5,24.5 - parent: 1 - type: Transform - - uid: 13569 - components: - - rot: 3.141592653589793 rad - pos: -73.5,25.5 - parent: 1 - type: Transform - - uid: 13570 - components: - - rot: 3.141592653589793 rad - pos: -73.5,26.5 - parent: 1 - type: Transform - - uid: 13571 - components: - - rot: 3.141592653589793 rad - pos: -73.5,27.5 - parent: 1 - type: Transform - - uid: 13572 - components: - - rot: 3.141592653589793 rad - pos: -73.5,28.5 - parent: 1 - type: Transform - - uid: 13573 - components: - - rot: 3.141592653589793 rad - pos: -73.5,29.5 - parent: 1 - type: Transform - - uid: 13574 - components: - - rot: 3.141592653589793 rad - pos: -73.5,30.5 - parent: 1 - type: Transform - - uid: 13575 - components: - - rot: 3.141592653589793 rad - pos: -73.5,31.5 - parent: 1 - type: Transform - - uid: 13576 - components: - - rot: 3.141592653589793 rad - pos: -73.5,32.5 - parent: 1 - type: Transform - - uid: 13577 - components: - - rot: 1.5707963267948966 rad - pos: -72.5,33.5 - parent: 1 - type: Transform - - uid: 13578 - components: - - rot: 1.5707963267948966 rad - pos: -71.5,33.5 - parent: 1 - type: Transform - - uid: 13579 - components: - - rot: 1.5707963267948966 rad - pos: -70.5,33.5 - parent: 1 - type: Transform - - uid: 13580 - components: - - rot: 1.5707963267948966 rad - pos: -69.5,33.5 - parent: 1 - type: Transform - - uid: 13581 - components: - - rot: 1.5707963267948966 rad - pos: -68.5,33.5 - parent: 1 - type: Transform - - uid: 13582 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,32.5 - parent: 1 - type: Transform - - uid: 13583 - components: - - rot: 1.5707963267948966 rad - pos: -67.5,33.5 - parent: 1 - type: Transform - - uid: 13584 - components: - - rot: 1.5707963267948966 rad - pos: -66.5,33.5 - parent: 1 - type: Transform - - uid: 13585 - components: - - rot: 1.5707963267948966 rad - pos: -65.5,33.5 - parent: 1 - type: Transform - - uid: 13586 - components: - - rot: -1.5707963267948966 rad - pos: -63.5,32.5 - parent: 1 - type: Transform - - uid: 13587 - components: - - rot: -1.5707963267948966 rad - pos: -62.5,32.5 - parent: 1 - type: Transform - - uid: 13588 - components: - - rot: -1.5707963267948966 rad - pos: -61.5,32.5 - parent: 1 - type: Transform - - uid: 13589 - components: - - rot: -1.5707963267948966 rad - pos: -60.5,32.5 - parent: 1 - type: Transform - - uid: 13590 - components: - - rot: -1.5707963267948966 rad - pos: -59.5,32.5 - parent: 1 - type: Transform - - uid: 13595 - components: - - pos: -64.5,29.5 - parent: 1 - type: Transform - - uid: 13596 - components: - - pos: -64.5,30.5 - parent: 1 - type: Transform - - uid: 13597 - components: - - pos: -64.5,31.5 - parent: 1 - type: Transform - - uid: 13612 - components: - - rot: 3.141592653589793 rad - pos: -48.5,47.5 - parent: 1 - type: Transform - - uid: 15061 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,29.5 - parent: 1 - type: Transform - - uid: 15167 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,50.5 - parent: 1 - type: Transform - - uid: 15168 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,50.5 - parent: 1 - type: Transform - - uid: 15169 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,50.5 - parent: 1 - type: Transform - - uid: 15171 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,50.5 - parent: 1 - type: Transform -- proto: DisposalTrunk - entities: - - uid: 589 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-11.5 - parent: 1 - type: Transform - - uid: 8671 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,65.5 - parent: 1 - type: Transform - - uid: 8672 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,58.5 - parent: 1 - type: Transform - - uid: 12917 - components: - - pos: 5.5,30.5 - parent: 1 - type: Transform - - uid: 12918 - components: - - rot: 3.141592653589793 rad - pos: 11.5,14.5 - parent: 1 - type: Transform - - uid: 12919 - components: - - rot: 3.141592653589793 rad - pos: 0.5,22.5 - parent: 1 - type: Transform - - uid: 12952 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,14.5 - parent: 1 - type: Transform - - uid: 13106 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,5.5 - parent: 1 - type: Transform - - uid: 13107 - components: - - rot: 3.141592653589793 rad - pos: 23.5,4.5 - parent: 1 - type: Transform - - uid: 13133 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-3.5 - parent: 1 - type: Transform - - uid: 13152 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,2.5 - parent: 1 - type: Transform - - uid: 13153 - components: - - pos: -18.5,-1.5 - parent: 1 - type: Transform - - uid: 13188 - components: - - pos: -20.5,7.5 - parent: 1 - type: Transform - - uid: 13206 - components: - - pos: -35.5,7.5 - parent: 1 - type: Transform - - uid: 13243 - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-10.5 - parent: 1 - type: Transform - - uid: 13285 - components: - - pos: -55.5,16.5 - parent: 1 - type: Transform - - uid: 13289 - components: - - rot: 3.141592653589793 rad - pos: -49.5,3.5 - parent: 1 - type: Transform - - uid: 13294 - components: - - rot: -1.5707963267948966 rad - pos: -55.5,37.5 - parent: 1 - type: Transform - - uid: 13327 - components: - - rot: 3.141592653589793 rad - pos: -3.5,29.5 - parent: 1 - type: Transform - - uid: 13398 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,30.5 - parent: 1 - type: Transform - - uid: 13444 - components: - - rot: 3.141592653589793 rad - pos: -45.5,30.5 - parent: 1 - type: Transform - - uid: 13445 - components: - - pos: -26.5,29.5 - parent: 1 - type: Transform - - uid: 13475 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,42.5 - parent: 1 - type: Transform - - uid: 13498 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,59.5 - parent: 1 - type: Transform - - uid: 13499 - components: - - pos: -12.5,57.5 - parent: 1 - type: Transform - - uid: 13503 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,20.5 - parent: 1 - type: Transform - - uid: 13518 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,39.5 - parent: 1 - type: Transform - - uid: 13533 - components: - - pos: -44.5,47.5 - parent: 1 - type: Transform - - uid: 13534 - components: - - rot: 3.141592653589793 rad - pos: -49.5,44.5 - parent: 1 - type: Transform - - uid: 13536 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,42.5 - parent: 1 - type: Transform - - uid: 13598 - components: - - rot: -1.5707963267948966 rad - pos: -63.5,28.5 - parent: 1 - type: Transform - - uid: 13599 - components: - - rot: 3.141592653589793 rad - pos: -73.5,19.5 - parent: 1 - type: Transform - - uid: 15039 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-11.5 - parent: 1 - type: Transform - - uid: 15170 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,50.5 - parent: 1 - type: Transform -- proto: DisposalUnit - entities: - - uid: 249 - components: - - pos: -5.5,2.5 - parent: 1 - type: Transform - - uid: 337 - components: - - pos: -18.5,-1.5 - parent: 1 - type: Transform - - uid: 1090 - components: - - pos: 11.5,-3.5 - parent: 1 - type: Transform - - uid: 1091 - components: - - pos: 5.5,3.5 - parent: 1 - type: Transform - - uid: 1155 - components: - - pos: 4.5,14.5 - parent: 1 - type: Transform - - uid: 1944 - components: - - pos: 0.5,22.5 - parent: 1 - type: Transform - - uid: 2033 - components: - - pos: 5.5,30.5 - parent: 1 - type: Transform - - uid: 2118 - components: - - pos: -3.5,29.5 - parent: 1 - type: Transform - - uid: 2136 - components: - - pos: 28.5,5.5 - parent: 1 - type: Transform - - uid: 2137 - components: - - pos: 23.5,4.5 - parent: 1 - type: Transform - - uid: 2351 - components: - - pos: 11.5,14.5 - parent: 1 - type: Transform - - uid: 3653 - components: - - pos: -41.5,-6.5 - parent: 1 - type: Transform - - uid: 3654 - components: - - pos: -46.5,-1.5 - parent: 1 - type: Transform - - uid: 4166 - components: - - pos: -20.5,7.5 - parent: 1 - type: Transform - - uid: 4168 - components: - - pos: -35.5,7.5 - parent: 1 - type: Transform - - uid: 5264 - components: - - pos: -55.5,16.5 - parent: 1 - type: Transform - - uid: 5525 - components: - - pos: -56.5,-10.5 - parent: 1 - type: Transform - - uid: 5526 - components: - - pos: -49.5,3.5 - parent: 1 - type: Transform - - uid: 5527 - components: - - pos: -39.5,20.5 - parent: 1 - type: Transform - - uid: 5528 - components: - - pos: -45.5,30.5 - parent: 1 - type: Transform - - uid: 5529 - components: - - pos: -10.5,30.5 - parent: 1 - type: Transform - - uid: 5531 - components: - - pos: -26.5,29.5 - parent: 1 - type: Transform - - uid: 6936 - components: - - pos: -38.5,42.5 - parent: 1 - type: Transform - - uid: 6937 - components: - - pos: -44.5,39.5 - parent: 1 - type: Transform - - uid: 6938 - components: - - pos: -44.5,47.5 - parent: 1 - type: Transform - - uid: 7091 - components: - - pos: -49.5,44.5 - parent: 1 - type: Transform - - uid: 7092 - components: - - pos: -55.5,37.5 - parent: 1 - type: Transform - - uid: 7559 - components: - - pos: -19.5,42.5 - parent: 1 - type: Transform - - uid: 7977 - components: - - pos: -51.5,58.5 - parent: 1 - type: Transform - - uid: 8652 - components: - - pos: -51.5,65.5 - parent: 1 - type: Transform - - uid: 11053 - components: - - pos: -73.5,19.5 - parent: 1 - type: Transform - - uid: 11054 - components: - - pos: -63.5,28.5 - parent: 1 - type: Transform - - uid: 13501 - components: - - pos: -20.5,59.5 - parent: 1 - type: Transform - - uid: 13502 - components: - - pos: -12.5,57.5 - parent: 1 - type: Transform - - uid: 15019 - components: - - pos: 14.5,-11.5 - parent: 1 - type: Transform - - uid: 15172 - components: - - pos: 16.5,50.5 - parent: 1 - type: Transform -- proto: DisposalYJunction - entities: - - uid: 13500 - components: - - pos: -16.5,55.5 - parent: 1 - type: Transform - - uid: 13591 - components: - - rot: 1.5707963267948966 rad - pos: -64.5,32.5 - parent: 1 - type: Transform -- proto: DogBed - entities: - - uid: 7574 - components: - - pos: -22.5,37.5 - parent: 1 - type: Transform - - uid: 10906 - components: - - pos: -9.5,59.5 - parent: 1 - type: Transform -- proto: DonkpocketBoxSpawner - entities: - - uid: 4730 - components: - - pos: -27.5,52.5 - parent: 1 - type: Transform -- proto: DoorElectronics - entities: - - uid: 5536 - components: - - pos: -47.419823,29.691675 - parent: 1 - type: Transform - - uid: 5537 - components: - - pos: -47.560448,29.48855 - parent: 1 - type: Transform - - uid: 5538 - components: - - pos: -47.451073,29.30105 - parent: 1 - type: Transform -- proto: Dresser - entities: - - uid: 10902 - components: - - pos: -5.5,61.5 - parent: 1 - type: Transform -- proto: DrinkBottleBeer - entities: - - uid: 9735 - components: - - pos: -27.588842,35.58307 - parent: 1 - type: Transform - - uid: 9737 - components: - - pos: -27.416967,35.64557 - parent: 1 - type: Transform - - uid: 9738 - components: - - pos: -27.229467,35.567444 - parent: 1 - type: Transform -- proto: DrinkBottleWhiskey - entities: - - uid: 14287 - components: - - pos: -72.49934,47.622665 - parent: 1 - type: Transform -- proto: DrinkChangelingStingCan - entities: - - uid: 5804 - components: - - pos: -9.689642,21.037588 - parent: 1 - type: Transform -- proto: DrinkCreamCarton - entities: - - uid: 5275 - components: - - pos: -53.020008,21.71115 - parent: 1 - type: Transform -- proto: DrinkGlass - entities: - - uid: 5271 - components: - - pos: -53.816883,21.552088 - parent: 1 - type: Transform - - uid: 5272 - components: - - pos: -53.645008,21.708338 - parent: 1 - type: Transform - - uid: 5273 - components: - - pos: -53.488758,21.552088 - parent: 1 - type: Transform - - uid: 15222 - components: - - pos: 17.303202,52.65593 - parent: 1 - type: Transform - - uid: 15223 - components: - - pos: 17.678202,52.59343 - parent: 1 - type: Transform -- proto: DrinkGoldenCup - entities: - - uid: 2307 - components: - - pos: -23.533527,57.548485 - parent: 1 - type: Transform -- proto: DrinkGoldschlagerBottleFull - entities: - - uid: 2311 - components: - - pos: -23.517902,54.40786 - parent: 1 - type: Transform -- proto: DrinkGreenTea - entities: - - uid: 4546 - components: - - pos: -49.110718,9.835719 - parent: 1 - type: Transform - - uid: 4549 - components: - - pos: -49.160065,9.422353 - parent: 1 - type: Transform - - uid: 5344 - components: - - pos: -49.821003,9.391103 - parent: 1 - type: Transform - - uid: 6153 - components: - - pos: -49.876343,9.820094 - parent: 1 - type: Transform -- proto: DrinkHotCoffee - entities: - - uid: 4562 - components: - - pos: 23.475533,38.452827 - parent: 1 - type: Transform - - uid: 15084 - components: - - pos: -15.376344,24.974894 - parent: 1 - type: Transform - - uid: 15101 - components: - - pos: -15.688844,24.678019 - parent: 1 - type: Transform -- proto: DrinkMilkCarton - entities: - - uid: 6957 - components: - - pos: -35.398277,47.715622 - parent: 1 - type: Transform - - uid: 6958 - components: - - pos: -32.460777,42.668747 - parent: 1 - type: Transform -- proto: DrinkMugBlack - entities: - - uid: 269 - components: - - pos: -17.654377,-4.445471 - parent: 1 - type: Transform - - uid: 7964 - components: - - pos: -54.71723,64.74812 - parent: 1 - type: Transform -- proto: DrinkMugBlue - entities: - - uid: 7948 - components: - - pos: -54.232857,64.76375 - parent: 1 - type: Transform -- proto: DrinkMugHeart - entities: - - uid: 1489 - components: - - pos: 23.29282,42.502815 - parent: 1 - type: Transform -- proto: DrinkMugMetal - entities: - - uid: 7949 - components: - - pos: -47.25018,59.484123 - parent: 1 - type: Transform -- proto: DrinkMugOne - entities: - - uid: 270 - components: - - pos: -17.310627,-4.257971 - parent: 1 - type: Transform - - uid: 14941 - components: - - pos: -54.474243,-12.528257 - parent: 1 - type: Transform -- proto: DrinkMugRed - entities: - - uid: 9936 - components: - - pos: -54.27973,64.43562 - parent: 1 - type: Transform - - uid: 15102 - components: - - pos: -15.313844,24.521769 - parent: 1 - type: Transform -- proto: DrinkTeacup - entities: - - uid: 2999 - components: - - pos: 24.668903,14.540461 - parent: 1 - type: Transform - - uid: 3000 - components: - - pos: 24.262653,14.759211 - parent: 1 - type: Transform -- proto: DrinkWaterJug - entities: - - uid: 577 - components: - - pos: 19.083464,-11.315445 - parent: 1 - type: Transform -- proto: DrinkWhiskeyBottleFull - entities: - - uid: 7935 - components: - - pos: -58.33147,64.88806 - parent: 1 - type: Transform - - uid: 10977 - components: - - pos: -70.71854,40.09562 - parent: 1 - type: Transform - - uid: 14211 - components: - - pos: -72.32807,15.938257 - parent: 1 - type: Transform - - uid: 14284 - components: - - pos: -72.70246,47.903915 - parent: 1 - type: Transform -- proto: DrinkWhiskeyColaGlass - entities: - - uid: 7936 - components: - - pos: -58.70647,64.85681 - parent: 1 - type: Transform -- proto: DrinkWhiskeyGlass - entities: - - uid: 10975 - components: - - pos: -72.39041,41.78312 - parent: 1 - type: Transform - - uid: 10976 - components: - - pos: -70.37479,39.56437 - parent: 1 - type: Transform - - uid: 14212 - components: - - pos: -72.81245,15.797632 - parent: 1 - type: Transform - - uid: 14285 - components: - - pos: -72.34309,47.685165 - parent: 1 - type: Transform -- proto: DrinkWineBottleFull - entities: - - uid: 1815 - components: - - pos: 16.737038,3.7859516 - parent: 1 - type: Transform -- proto: DrinkWineGlass - entities: - - uid: 1814 - components: - - pos: 16.440163,3.6297016 - parent: 1 - type: Transform - - uid: 6338 - components: - - pos: 2.5328588,49.783806 - parent: 1 - type: Transform -- proto: Dropper - entities: - - uid: 1953 - components: - - pos: -4.4894724,20.885618 - parent: 1 - type: Transform - - uid: 1954 - components: - - pos: -4.4894724,20.666868 - parent: 1 - type: Transform - - uid: 1955 - components: - - pos: -4.4894724,20.463743 - parent: 1 - type: Transform -- proto: ElectricGuitarInstrument - entities: - - uid: 4138 - components: - - pos: -22.497261,24.539072 - parent: 1 - type: Transform -- proto: EmergencyLight - entities: - - uid: 2592 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 3665 - components: - - rot: 3.141592653589793 rad - pos: -44.5,-13.5 - parent: 1 - type: Transform - - uid: 4600 - components: - - pos: -48.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 4890 - components: - - rot: 3.141592653589793 rad - pos: -71.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 11062 - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14864 - components: - - rot: -1.5707963267948966 rad - pos: -77.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14865 - components: - - rot: 3.141592653589793 rad - pos: -80.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14866 - components: - - rot: 1.5707963267948966 rad - pos: -74.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14867 - components: - - rot: 1.5707963267948966 rad - pos: -67.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14868 - components: - - rot: 3.141592653589793 rad - pos: -59.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14869 - components: - - rot: -1.5707963267948966 rad - pos: -79.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14870 - components: - - pos: -68.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14871 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14872 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14873 - components: - - rot: 3.141592653589793 rad - pos: -50.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14874 - components: - - rot: -1.5707963267948966 rad - pos: -56.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14875 - components: - - rot: -1.5707963267948966 rad - pos: -56.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14876 - components: - - pos: -68.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14879 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14880 - components: - - pos: -35.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14882 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14883 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14884 - components: - - pos: -33.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14885 - components: - - rot: 3.141592653589793 rad - pos: -39.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14886 - components: - - pos: -35.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14887 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14888 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14889 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14890 - components: - - pos: -20.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14891 - components: - - rot: 3.141592653589793 rad - pos: -20.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14892 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14893 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14894 - components: - - pos: -11.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14895 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14896 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14897 - components: - - rot: 3.141592653589793 rad - pos: -18.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14898 - components: - - pos: -9.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14899 - components: - - rot: 3.141592653589793 rad - pos: -9.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14900 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14901 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14902 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14903 - components: - - pos: -25.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14904 - components: - - rot: 3.141592653589793 rad - pos: -19.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14905 - components: - - rot: 3.141592653589793 rad - pos: -2.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14906 - components: - - pos: 7.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14907 - components: - - rot: 3.141592653589793 rad - pos: 20.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14908 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14909 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14910 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14911 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14912 - components: - - pos: -1.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14913 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14914 - components: - - pos: -16.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14915 - components: - - pos: -12.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14916 - components: - - pos: 2.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14917 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14954 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14955 - components: - - pos: -46.5,65.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14956 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14957 - components: - - rot: 1.5707963267948966 rad - pos: -56.5,64.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14958 - components: - - rot: 3.141592653589793 rad - pos: -59.5,60.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14959 - components: - - rot: 1.5707963267948966 rad - pos: -57.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14960 - components: - - rot: 1.5707963267948966 rad - pos: -65.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14961 - components: - - pos: -52.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 14962 - components: - - rot: 1.5707963267948966 rad - pos: -64.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 15309 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 15310 - components: - - pos: -1.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 15311 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 15312 - components: - - pos: 8.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 15313 - components: - - rot: 3.141592653589793 rad - pos: 9.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 15314 - components: - - rot: 3.141592653589793 rad - pos: 8.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 15315 - components: - - pos: 7.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 15316 - components: - - rot: 3.141592653589793 rad - pos: 1.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- proto: Emitter - entities: - - uid: 9982 - components: - - rot: 3.141592653589793 rad - pos: -78.5,18.5 - parent: 1 - type: Transform - - uid: 9983 - components: - - rot: 3.141592653589793 rad - pos: -77.5,18.5 - parent: 1 - type: Transform - - uid: 9984 - components: - - rot: 3.141592653589793 rad - pos: -76.5,18.5 - parent: 1 - type: Transform - - uid: 10609 - components: - - rot: -1.5707963267948966 rad - pos: -90.5,21.5 - parent: 1 - type: Transform - - uid: 10610 - components: - - rot: -1.5707963267948966 rad - pos: -90.5,29.5 - parent: 1 - type: Transform - - uid: 10611 - components: - - rot: 1.5707963267948966 rad - pos: -104.5,21.5 - parent: 1 - type: Transform - - uid: 10612 - components: - - rot: 3.141592653589793 rad - pos: -93.5,18.5 - parent: 1 - type: Transform - - uid: 10613 - components: - - rot: 3.141592653589793 rad - pos: -101.5,18.5 - parent: 1 - type: Transform - - uid: 10614 - components: - - rot: 1.5707963267948966 rad - pos: -104.5,29.5 - parent: 1 - type: Transform - - uid: 10615 - components: - - pos: -101.5,32.5 - parent: 1 - type: Transform - - uid: 10616 - components: - - pos: -93.5,32.5 - parent: 1 - type: Transform -- proto: EncryptionKeyCargo - entities: - - uid: 15348 - components: - - flags: InContainer - type: MetaData - - parent: 15347 - type: Transform - - canCollide: False - type: Physics - - uid: 15374 - components: - - flags: InContainer - type: MetaData - - parent: 15368 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyCommand - entities: - - uid: 15337 - components: - - flags: InContainer - type: MetaData - - parent: 15336 - type: Transform - - canCollide: False - type: Physics - - uid: 15369 - components: - - flags: InContainer - type: MetaData - - parent: 15368 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyCommon - entities: - - uid: 2591 - components: - - flags: InContainer - type: MetaData - - parent: 2590 - type: Transform - - canCollide: False - type: Physics - - uid: 15366 - components: - - pos: 27.658451,23.492924 - parent: 1 - type: Transform -- proto: EncryptionKeyEngineering - entities: - - uid: 15339 - components: - - flags: InContainer - type: MetaData - - parent: 15338 - type: Transform - - canCollide: False - type: Physics - - uid: 15371 - components: - - flags: InContainer - type: MetaData - - parent: 15368 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyMedical - entities: - - uid: 15341 - components: - - flags: InContainer - type: MetaData - - parent: 15340 - type: Transform - - canCollide: False - type: Physics - - uid: 15372 - components: - - flags: InContainer - type: MetaData - - parent: 15368 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyMedicalScience - entities: - - uid: 15342 - components: - - flags: InContainer - type: MetaData - - parent: 15340 - type: Transform - - canCollide: False - type: Physics - - uid: 15345 - components: - - flags: InContainer - type: MetaData - - parent: 15343 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyRobo - entities: - - uid: 15346 - components: - - flags: InContainer - type: MetaData - - parent: 15343 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyScience - entities: - - uid: 15344 - components: - - flags: InContainer - type: MetaData - - parent: 15343 - type: Transform - - canCollide: False - type: Physics - - uid: 15373 - components: - - flags: InContainer - type: MetaData - - parent: 15368 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeySecurity - entities: - - uid: 983 - components: - - flags: InContainer - type: MetaData - - parent: 982 - type: Transform - - canCollide: False - type: Physics - - uid: 15370 - components: - - flags: InContainer - type: MetaData - - parent: 15368 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyService - entities: - - uid: 1027 - components: - - flags: InContainer - type: MetaData - - parent: 1026 - type: Transform - - canCollide: False - type: Physics - - uid: 15367 - components: - - pos: 27.345951,23.492924 - parent: 1 - type: Transform -- proto: Error - entities: - - uid: 3615 - components: - - pos: -28.521805,-11.50697 - parent: 1 - type: Transform -- proto: EuphoniumInstrument - entities: - - uid: 6336 - components: - - pos: 14.586781,52.45568 - parent: 1 - type: Transform -- proto: ExosuitFabricator - entities: - - uid: 240 - components: - - pos: 2.5,-0.5 - parent: 1 - type: Transform -- proto: ExtinguisherCabinet - entities: - - uid: 2843 - components: - - pos: -18.5,30.5 - parent: 1 - type: Transform - - uid: 3971 - components: - - rot: 3.141592653589793 rad - pos: -69.5,7.5 - parent: 1 - type: Transform - - uid: 4746 - components: - - rot: 3.141592653589793 rad - pos: -67.5,-12.5 - parent: 1 - type: Transform - - uid: 12036 - components: - - pos: -46.5,-10.5 - parent: 1 - type: Transform - - uid: 12037 - components: - - pos: -35.5,-4.5 - parent: 1 - type: Transform - - uid: 12038 - components: - - pos: -55.5,9.5 - parent: 1 - type: Transform - - uid: 12220 - components: - - pos: -55.5,29.5 - parent: 1 - type: Transform - - uid: 13655 - components: - - pos: -39.5,47.5 - parent: 1 - type: Transform - - uid: 13682 - components: - - pos: -35.5,34.5 - parent: 1 - type: Transform - - uid: 13683 - components: - - pos: -26.5,44.5 - parent: 1 - type: Transform - - uid: 13684 - components: - - pos: -27.5,29.5 - parent: 1 - type: Transform - - uid: 13764 - components: - - pos: -39.5,22.5 - parent: 1 - type: Transform - - uid: 13792 - components: - - pos: -35.5,9.5 - parent: 1 - type: Transform - - uid: 13793 - components: - - pos: -55.5,-1.5 - parent: 1 - type: Transform - - uid: 13796 - components: - - pos: -26.5,-9.5 - parent: 1 - type: Transform - - uid: 13797 - components: - - pos: -19.5,-2.5 - parent: 1 - type: Transform - - uid: 13798 - components: - - pos: 6.5,-9.5 - parent: 1 - type: Transform - - uid: 13799 - components: - - pos: -18.5,-12.5 - parent: 1 - type: Transform - - uid: 13800 - components: - - pos: -7.5,-3.5 - parent: 1 - type: Transform - - uid: 13801 - components: - - pos: -14.5,11.5 - parent: 1 - type: Transform - - uid: 13802 - components: - - pos: -10.5,23.5 - parent: 1 - type: Transform - - uid: 13804 - components: - - pos: -25.5,14.5 - parent: 1 - type: Transform - - uid: 13805 - components: - - pos: -2.5,35.5 - parent: 1 - type: Transform - - uid: 13810 - components: - - pos: 29.5,17.5 - parent: 1 - type: Transform - - uid: 13811 - components: - - pos: 18.5,0.5 - parent: 1 - type: Transform - - uid: 13812 - components: - - pos: 3.5,3.5 - parent: 1 - type: Transform -- proto: ExtinguisherCabinetFilled - entities: - - uid: 15292 - components: - - pos: -2.5,18.5 - parent: 1 - type: Transform - - uid: 15293 - components: - - pos: 1.5,18.5 - parent: 1 - type: Transform - - uid: 15294 - components: - - pos: 5.5,15.5 - parent: 1 - type: Transform - - uid: 15295 - components: - - pos: 8.5,27.5 - parent: 1 - type: Transform - - uid: 15296 - components: - - pos: 5.5,36.5 - parent: 1 - type: Transform - - uid: 15297 - components: - - pos: -19.5,56.5 - parent: 1 - type: Transform - - uid: 15298 - components: - - pos: -18.5,61.5 - parent: 1 - type: Transform - - uid: 15299 - components: - - pos: -9.5,58.5 - parent: 1 - type: Transform - - uid: 15300 - components: - - pos: -60.5,56.5 - parent: 1 - type: Transform - - uid: 15301 - components: - - pos: -53.5,59.5 - parent: 1 - type: Transform - - uid: 15302 - components: - - pos: -45.5,55.5 - parent: 1 - type: Transform - - uid: 15304 - components: - - pos: -53.5,67.5 - parent: 1 - type: Transform - - uid: 15305 - components: - - pos: -57.5,63.5 - parent: 1 - type: Transform - - uid: 15306 - components: - - pos: -56.5,88.5 - parent: 1 - type: Transform - - uid: 15307 - components: - - pos: -62.5,82.5 - parent: 1 - type: Transform - - uid: 15308 - components: - - pos: -49.5,82.5 - parent: 1 - type: Transform - - uid: 15317 - components: - - rot: 1.5707963267948966 rad - pos: -75.5,19.5 - parent: 1 - type: Transform - - uid: 15318 - components: - - rot: 1.5707963267948966 rad - pos: -83.5,22.5 - parent: 1 - type: Transform - - uid: 15319 - components: - - rot: 1.5707963267948966 rad - pos: -75.5,31.5 - parent: 1 - type: Transform - - uid: 15320 - components: - - rot: 1.5707963267948966 rad - pos: -76.5,42.5 - parent: 1 - type: Transform - - uid: 15321 - components: - - rot: 1.5707963267948966 rad - pos: -65.5,29.5 - parent: 1 - type: Transform - - uid: 15322 - components: - - rot: 1.5707963267948966 rad - pos: -66.5,18.5 - parent: 1 - type: Transform - - uid: 15323 - components: - - rot: 1.5707963267948966 rad - pos: -62.5,46.5 - parent: 1 - type: Transform - - uid: 15324 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,38.5 - parent: 1 - type: Transform - - uid: 15325 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,48.5 - parent: 1 - type: Transform - - uid: 15326 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,38.5 - parent: 1 - type: Transform -- proto: FaxMachineBase - entities: - - uid: 303 - components: - - pos: -0.5,-3.5 - parent: 1 - type: Transform - - name: Science - type: FaxMachine - - uid: 586 - components: - - pos: -1.5,1.5 - parent: 1 - type: Transform - - name: RD Office - type: FaxMachine - - uid: 2320 - components: - - pos: 10.5,25.5 - parent: 1 - type: Transform - - name: Medical - type: FaxMachine - - uid: 3745 - components: - - pos: -46.5,2.5 - parent: 1 - type: Transform - - name: Cargo - type: FaxMachine - - uid: 5809 - components: - - pos: -28.5,13.5 - parent: 1 - type: Transform - - name: Library - type: FaxMachine - - uid: 7545 - components: - - pos: -19.5,48.5 - parent: 1 - type: Transform - - name: HoP Office - type: FaxMachine - - uid: 7989 - components: - - pos: -55.5,58.5 - parent: 1 - type: Transform - - name: Security - type: FaxMachine - - uid: 10803 - components: - - pos: -36.5,37.5 - parent: 1 - type: Transform - - name: Bar - type: FaxMachine - - uid: 10901 - components: - - pos: -10.5,55.5 - parent: 1 - type: Transform - - name: Bridge - type: FaxMachine - - uid: 13602 - components: - - pos: -64.5,25.5 - parent: 1 - type: Transform - - name: Engineering - type: FaxMachine -- proto: FaxMachineCaptain - entities: - - uid: 10900 - components: - - pos: -6.5,61.5 - parent: 1 - type: Transform -- proto: FigureSpawner - entities: - - uid: 3516 - components: - - pos: -19.5,-10.5 - parent: 1 - type: Transform - - uid: 5546 - components: - - pos: -52.5,27.5 - parent: 1 - type: Transform -- proto: filingCabinetDrawer - entities: - - uid: 5509 - components: - - pos: -43.5,0.5 - parent: 1 - type: Transform - - uid: 7397 - components: - - pos: 11.5,52.5 - parent: 1 - type: Transform -- proto: filingCabinetTall - entities: - - uid: 5507 - components: - - pos: -52.5,-0.5 - parent: 1 - type: Transform - - uid: 7541 - components: - - pos: -22.5,44.5 - parent: 1 - type: Transform -- proto: FireAlarm - entities: - - uid: 318 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,0.5 - parent: 1 - type: Transform - - devices: - - 1749 - - 1741 - - 1747 - - 1750 - - 14970 - type: DeviceList - - uid: 4747 - components: - - rot: 3.141592653589793 rad - pos: -63.5,-12.5 - parent: 1 - type: Transform - - devices: - - 4912 - - 4913 - - 4126 - type: DeviceList - - uid: 8961 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,58.5 - parent: 1 - type: Transform - - devices: - - 8573 - - 8574 - - 8578 - - 8576 - - 8575 - type: DeviceList - - uid: 8963 - components: - - pos: -48.5,66.5 - parent: 1 - type: Transform - - devices: - - 8579 - - 8580 - - 8581 - - 5726 - - 5723 - - 8543 - - 8542 - - 8544 - - 8545 - - 8849 - - 8844 - - 8848 - - 8843 - - 8758 - - 8845 - - 8842 - - 8846 - - 8760 - - 8847 - - 8759 - type: DeviceList - - uid: 8964 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,87.5 - parent: 1 - type: Transform - - devices: - - 5742 - - 5579 - - 5501 - - 5496 - type: DeviceList - - uid: 8966 - components: - - rot: -1.5707963267948966 rad - pos: -56.5,87.5 - parent: 1 - type: Transform - - devices: - - 5742 - - 5579 - - 5501 - - 5496 - type: DeviceList - - uid: 10691 - components: - - rot: 1.5707963267948966 rad - pos: -75.5,22.5 - parent: 1 - type: Transform - - devices: - - 14304 - - 14302 - - 10686 - - 10687 - - 14303 - - 10684 - - 10685 - - 10682 - - 10683 - type: DeviceList - - uid: 13041 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,44.5 - parent: 1 - type: Transform - - devices: - - 7995 - - 7996 - - 7997 - - 8003 - - 8002 - - 8001 - - 8573 - - 8574 - type: DeviceList - - uid: 13046 - components: - - rot: 3.141592653589793 rad - pos: -46.5,30.5 - parent: 1 - type: Transform - - devices: - - 5240 - - 5241 - - 5242 - - 7995 - - 7996 - - 7997 - - 5233 - - 5232 - - 5231 - type: DeviceList - - uid: 13050 - components: - - pos: -67.5,7.5 - parent: 1 - type: Transform - - devices: - - 5213 - - 5214 - - 5215 - - 11812 - - 11813 - - 11811 - - 11814 - type: DeviceList - - uid: 13052 - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-4.5 - parent: 1 - type: Transform - - devices: - - 5216 - - 5217 - - 5218 - type: DeviceList - - uid: 13056 - components: - - pos: -39.5,7.5 - parent: 1 - type: Transform - - devices: - - 4112 - - 4111 - - 4110 - - 4114 - - 4115 - - 4116 - - 4109 - - 4108 - - 4107 - type: DeviceList - - uid: 13059 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-1.5 - parent: 1 - type: Transform - - devices: - - 3718 - - 3719 - - 3720 - - 3721 - - 3722 - - 3723 - - 3724 - - 3717 - - 3716 - - 3726 - type: DeviceList - - uid: 13060 - components: - - pos: -22.5,7.5 - parent: 1 - type: Transform - - devices: - - 1766 - - 1765 - - 1764 - - 4107 - - 4108 - - 4109 - type: DeviceList - - uid: 13062 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,17.5 - parent: 1 - type: Transform - - devices: - - 4114 - - 4115 - - 4116 - - 4117 - - 4118 - - 4119 - - 4120 - - 4121 - - 4122 - - 4123 - - 5227 - - 5226 - - 5225 - type: DeviceList - - uid: 13064 - components: - - pos: -39.5,40.5 - parent: 1 - type: Transform - - devices: - - 5233 - - 5232 - - 5231 - - 5225 - - 5226 - - 5227 - - 5228 - - 5229 - - 5230 - - 9786 - - 9787 - - 9788 - - 9789 - - 9784 - - 9785 - type: DeviceList - - uid: 13066 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,44.5 - parent: 1 - type: Transform - - devices: - - 9784 - - 9785 - - 9790 - - 9791 - - 9792 - - 9793 - type: DeviceList - - uid: 13068 - components: - - pos: -28.5,34.5 - parent: 1 - type: Transform - - devices: - - 5228 - - 5229 - - 5230 - - 5234 - - 5235 - - 5236 - type: DeviceList - - uid: 13070 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,41.5 - parent: 1 - type: Transform - - devices: - - 9790 - - 9791 - - 9793 - - 9792 - type: DeviceList - - uid: 13072 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,41.5 - parent: 1 - type: Transform - - devices: - - 5237 - - 5238 - - 5239 - type: DeviceList - - uid: 13075 - components: - - pos: -21.5,43.5 - parent: 1 - type: Transform - - devices: - - 9819 - type: DeviceList - - uid: 13078 - components: - - pos: -11.5,34.5 - parent: 1 - type: Transform - - devices: - - 5237 - - 5238 - - 5239 - - 12259 - - 12255 - - 12256 - - 12260 - - 12273 - - 12272 - - 3064 - - 3122 - - 2814 - - 2881 - - 3175 - - 3176 - - 3177 - - 2866 - - 2865 - type: DeviceList - - uid: 13080 - components: - - pos: -14.5,58.5 - parent: 1 - type: Transform - - devices: - - 6496 - - 6497 - - 9808 - - 6498 - - 6499 - - 6500 - - 6501 - - 6502 - - 6503 - - 6504 - type: DeviceList - - uid: 13097 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,18.5 - parent: 1 - type: Transform - - devices: - - 1763 - - 1762 - - 1761 - - 3177 - - 3176 - - 3175 - type: DeviceList - - uid: 13098 - components: - - pos: -2.5,7.5 - parent: 1 - type: Transform - - devices: - - 1758 - - 1759 - - 1760 - - 1768 - - 1767 - - 1753 - - 1752 - type: DeviceList - - uid: 13101 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-1.5 - parent: 1 - type: Transform - - devices: - - 1752 - - 1753 - type: DeviceList - - uid: 13102 - components: - - pos: 20.5,7.5 - parent: 1 - type: Transform - - devices: - - 1767 - - 1768 - - 1755 - - 1754 - type: DeviceList - - uid: 13104 - components: - - rot: 3.141592653589793 rad - pos: 27.5,4.5 - parent: 1 - type: Transform - - devices: - - 1755 - - 1754 - type: DeviceList - - uid: 13300 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,34.5 - parent: 1 - type: Transform - - devices: - - 2055 - - 2868 - - 2867 - - 2869 - - 13306 - - 13305 - - 2052 - - 2051 - - 13309 - - 13308 - - 13307 - - 2053 - - 2054 - - 15082 - - 15083 - type: DeviceList - - uid: 13303 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,21.5 - parent: 1 - type: Transform - - devices: - - 13301 - - 13302 - - 2051 - - 2052 - - 2880 - - 2878 - - 2879 - - 2869 - - 2870 - - 13307 - - 13308 - - 13309 - - 15079 - - 15080 - - 15081 - type: DeviceList - - uid: 14298 - components: - - rot: -1.5707963267948966 rad - pos: -76.5,37.5 - parent: 1 - type: Transform - - devices: - - 10676 - - 10675 - - 10674 - - 10673 - - 10672 - - 10671 - - 10670 - - 10669 - - 10668 - - 10667 - - 10666 - type: DeviceList - - uid: 14299 - components: - - rot: -1.5707963267948966 rad - pos: -72.5,31.5 - parent: 1 - type: Transform - - devices: - - 10685 - - 10684 - - 10688 - - 10689 - type: DeviceList - - uid: 14305 - components: - - rot: -1.5707963267948966 rad - pos: -72.5,25.5 - parent: 1 - type: Transform - - devices: - - 14303 - - 10686 - - 10687 - - 10684 - - 10685 - type: DeviceList - - uid: 14306 - components: - - pos: -80.5,28.5 - parent: 1 - type: Transform - - devices: - - 14303 - - 10683 - - 10682 - type: DeviceList -- proto: FireAxeCabinet - entities: - - uid: 1667 - components: - - pos: 14.5,-6.5 - parent: 1 - type: Transform -- proto: FireAxeCabinetFilled - entities: - - uid: 13766 - components: - - pos: -10.5,58.5 - parent: 1 - type: Transform - - uid: 15145 - components: - - rot: -1.5707963267948966 rad - pos: -75.5,33.5 - parent: 1 - type: Transform -- proto: Firelock - entities: - - uid: 1742 - components: - - pos: 22.5,1.5 - parent: 1 - type: Transform - - uid: 1743 - components: - - pos: 23.5,1.5 - parent: 1 - type: Transform - - uid: 1744 - components: - - pos: 20.5,-5.5 - parent: 1 - type: Transform - - uid: 1745 - components: - - pos: 20.5,-4.5 - parent: 1 - type: Transform - - uid: 1746 - components: - - pos: 4.5,-3.5 - parent: 1 - type: Transform - - uid: 3491 - components: - - pos: -21.5,-5.5 - parent: 1 - type: Transform - - uid: 5423 - components: - - pos: -29.5,-3.5 - parent: 1 - type: Transform - - uid: 5433 - components: - - pos: -28.5,-3.5 - parent: 1 - type: Transform - - uid: 5460 - components: - - pos: -20.5,-5.5 - parent: 1 - type: Transform - - uid: 5464 - components: - - pos: -49.5,-10.5 - parent: 1 - type: Transform - - uid: 5465 - components: - - pos: -49.5,-9.5 - parent: 1 - type: Transform - - uid: 5596 - components: - - pos: -20.5,15.5 - parent: 1 - type: Transform - - uid: 5736 - components: - - pos: -21.5,20.5 - parent: 1 - type: Transform - - uid: 5751 - components: - - pos: -19.5,15.5 - parent: 1 - type: Transform - - uid: 7511 - components: - - pos: -32.5,51.5 - parent: 1 - type: Transform - - uid: 7570 - components: - - pos: 11.5,8.5 - parent: 1 - type: Transform - - uid: 8278 - components: - - pos: -30.5,14.5 - parent: 1 - type: Transform - - uid: 8992 - components: - - rot: 3.141592653589793 rad - pos: 20.5,35.5 - parent: 1 - type: Transform - - uid: 9002 - components: - - rot: 3.141592653589793 rad - pos: 20.5,34.5 - parent: 1 - type: Transform - - uid: 9802 - components: - - pos: -31.5,51.5 - parent: 1 - type: Transform - - uid: 9803 - components: - - pos: -25.5,42.5 - parent: 1 - type: Transform - - uid: 9804 - components: - - pos: -24.5,42.5 - parent: 1 - type: Transform - - uid: 9809 - components: - - pos: -5.5,46.5 - parent: 1 - type: Transform - - uid: 9810 - components: - - pos: -5.5,47.5 - parent: 1 - type: Transform - - uid: 9811 - components: - - pos: 12.5,40.5 - parent: 1 - type: Transform - - uid: 9812 - components: - - pos: 12.5,39.5 - parent: 1 - type: Transform - - uid: 9813 - components: - - pos: 14.5,44.5 - parent: 1 - type: Transform - - uid: 9814 - components: - - pos: 15.5,44.5 - parent: 1 - type: Transform - - uid: 9815 - components: - - pos: -3.5,38.5 - parent: 1 - type: Transform - - uid: 9816 - components: - - pos: -2.5,38.5 - parent: 1 - type: Transform - - uid: 9912 - components: - - pos: 16.5,37.5 - parent: 1 - type: Transform - - uid: 14189 - components: - - pos: -73.5,37.5 - parent: 1 - type: Transform - - uid: 14190 - components: - - pos: -64.5,47.5 - parent: 1 - type: Transform - - uid: 14191 - components: - - pos: -64.5,47.5 - parent: 1 - type: Transform - - uid: 14192 - components: - - pos: -64.5,48.5 - parent: 1 - type: Transform - - uid: 14193 - components: - - pos: -67.5,38.5 - parent: 1 - type: Transform - - uid: 14194 - components: - - pos: -66.5,38.5 - parent: 1 - type: Transform - - uid: 14195 - components: - - pos: -62.5,17.5 - parent: 1 - type: Transform - - uid: 14196 - components: - - pos: -62.5,16.5 - parent: 1 - type: Transform - - uid: 14965 - components: - - pos: 16.5,25.5 - parent: 1 - type: Transform - - uid: 14966 - components: - - pos: 16.5,26.5 - parent: 1 - type: Transform - - uid: 14968 - components: - - pos: 11.5,9.5 - parent: 1 - type: Transform - - uid: 14969 - components: - - pos: -1.5,12.5 - parent: 1 - type: Transform - - uid: 14975 - components: - - pos: -6.5,18.5 - parent: 1 - type: Transform - - uid: 15040 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-5.5 - parent: 1 - type: Transform - - uid: 15063 - components: - - pos: -44.5,12.5 - parent: 1 - type: Transform - - uid: 15064 - components: - - pos: -50.5,16.5 - parent: 1 - type: Transform - - uid: 15065 - components: - - pos: -45.5,22.5 - parent: 1 - type: Transform - - uid: 15066 - components: - - pos: -44.5,22.5 - parent: 1 - type: Transform - - uid: 15069 - components: - - pos: -21.5,21.5 - parent: 1 - type: Transform - - uid: 15070 - components: - - pos: -20.5,22.5 - parent: 1 - type: Transform - - uid: 15071 - components: - - pos: -19.5,22.5 - parent: 1 - type: Transform - - uid: 15104 - components: - - pos: -23.5,50.5 - parent: 1 - type: Transform - - uid: 15105 - components: - - pos: -23.5,51.5 - parent: 1 - type: Transform - - uid: 15289 - components: - - pos: 22.5,20.5 - parent: 1 - type: Transform - - uid: 15290 - components: - - pos: 23.5,20.5 - parent: 1 - type: Transform - - uid: 15849 - components: - - pos: 16.5,38.5 - parent: 1 - type: Transform -- proto: FirelockEdge - entities: - - uid: 219 - components: - - pos: -5.5,-13.5 - parent: 1 - type: Transform - - uid: 285 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-12.5 - parent: 1 - type: Transform - - uid: 1747 - components: - - pos: -1.5,-5.5 - parent: 1 - type: Transform - - uid: 1748 - components: - - pos: 28.5,-5.5 - parent: 1 - type: Transform - - uid: 1750 - components: - - pos: -16.5,-5.5 - parent: 1 - type: Transform - - uid: 2051 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,24.5 - parent: 1 - type: Transform - - uid: 2052 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,25.5 - parent: 1 - type: Transform - - uid: 2053 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,33.5 - parent: 1 - type: Transform - - uid: 2054 - components: - - rot: 3.141592653589793 rad - pos: 3.5,34.5 - parent: 1 - type: Transform - - uid: 2055 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,33.5 - parent: 1 - type: Transform - - uid: 2865 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,33.5 - parent: 1 - type: Transform - - uid: 2866 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,31.5 - parent: 1 - type: Transform - - uid: 2870 - components: - - pos: -3.5,19.5 - parent: 1 - type: Transform - - uid: 2881 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,27.5 - parent: 1 - type: Transform - - uid: 3544 - components: - - rot: 3.141592653589793 rad - pos: -40.5,-9.5 - parent: 1 - type: Transform - - uid: 3554 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-9.5 - parent: 1 - type: Transform - - uid: 3672 - components: - - rot: 3.141592653589793 rad - pos: -35.5,-8.5 - parent: 1 - type: Transform - - uid: 3674 - components: - - rot: 3.141592653589793 rad - pos: -34.5,-8.5 - parent: 1 - type: Transform - - uid: 3677 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-8.5 - parent: 1 - type: Transform - - uid: 3740 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-8.5 - parent: 1 - type: Transform - - uid: 3770 - components: - - rot: 3.141592653589793 rad - pos: -31.5,-8.5 - parent: 1 - type: Transform - - uid: 3970 - components: - - rot: -1.5707963267948966 rad - pos: -75.5,-10.5 - parent: 1 - type: Transform - - uid: 4117 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,23.5 - parent: 1 - type: Transform - - uid: 4118 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,24.5 - parent: 1 - type: Transform - - uid: 4119 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,25.5 - parent: 1 - type: Transform - - uid: 4120 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,26.5 - parent: 1 - type: Transform - - uid: 4121 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,27.5 - parent: 1 - type: Transform - - uid: 4122 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,28.5 - parent: 1 - type: Transform - - uid: 4123 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,29.5 - parent: 1 - type: Transform - - uid: 5461 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-10.5 - parent: 1 - type: Transform - - uid: 5496 - components: - - pos: -50.5,82.5 - parent: 1 - type: Transform - - uid: 5501 - components: - - pos: -52.5,82.5 - parent: 1 - type: Transform - - uid: 5579 - components: - - rot: 1.5707963267948966 rad - pos: -57.5,83.5 - parent: 1 - type: Transform - - uid: 5723 - components: - - rot: 3.141592653589793 rad - pos: -52.5,65.5 - parent: 1 - type: Transform - - uid: 5726 - components: - - rot: 3.141592653589793 rad - pos: -50.5,65.5 - parent: 1 - type: Transform - - uid: 5742 - components: - - rot: 1.5707963267948966 rad - pos: -57.5,89.5 - parent: 1 - type: Transform - - uid: 6496 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,54.5 - parent: 1 - type: Transform - - uid: 6497 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,55.5 - parent: 1 - type: Transform - - uid: 6498 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,59.5 - parent: 1 - type: Transform - - uid: 6499 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,60.5 - parent: 1 - type: Transform - - uid: 6500 - components: - - rot: 3.141592653589793 rad - pos: -15.5,61.5 - parent: 1 - type: Transform - - uid: 6501 - components: - - rot: 3.141592653589793 rad - pos: -16.5,61.5 - parent: 1 - type: Transform - - uid: 6502 - components: - - rot: 3.141592653589793 rad - pos: -17.5,61.5 - parent: 1 - type: Transform - - uid: 6503 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,60.5 - parent: 1 - type: Transform - - uid: 6504 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,59.5 - parent: 1 - type: Transform - - uid: 6505 - components: - - rot: 3.141592653589793 rad - pos: -17.5,57.5 - parent: 1 - type: Transform - - uid: 6506 - components: - - rot: 3.141592653589793 rad - pos: -15.5,57.5 - parent: 1 - type: Transform - - uid: 8544 - components: - - rot: 3.141592653589793 rad - pos: -52.5,58.5 - parent: 1 - type: Transform - - uid: 8545 - components: - - rot: 3.141592653589793 rad - pos: -50.5,58.5 - parent: 1 - type: Transform - - uid: 8573 - components: - - rot: 3.141592653589793 rad - pos: -48.5,51.5 - parent: 1 - type: Transform - - uid: 8574 - components: - - rot: 3.141592653589793 rad - pos: -46.5,51.5 - parent: 1 - type: Transform - - uid: 8575 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,53.5 - parent: 1 - type: Transform - - uid: 8576 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,55.5 - parent: 1 - type: Transform - - uid: 9784 - components: - - pos: -36.5,41.5 - parent: 1 - type: Transform - - uid: 9785 - components: - - pos: -35.5,41.5 - parent: 1 - type: Transform - - uid: 9786 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,38.5 - parent: 1 - type: Transform - - uid: 9787 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,37.5 - parent: 1 - type: Transform - - uid: 9788 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,36.5 - parent: 1 - type: Transform - - uid: 9789 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,35.5 - parent: 1 - type: Transform - - uid: 9790 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,43.5 - parent: 1 - type: Transform - - uid: 9791 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,44.5 - parent: 1 - type: Transform - - uid: 9792 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,45.5 - parent: 1 - type: Transform - - uid: 9793 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,46.5 - parent: 1 - type: Transform - - uid: 9808 - components: - - rot: 3.141592653589793 rad - pos: -7.5,57.5 - parent: 1 - type: Transform - - uid: 9850 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,36.5 - parent: 1 - type: Transform - - uid: 9851 - components: - - rot: 3.141592653589793 rad - pos: -31.5,55.5 - parent: 1 - type: Transform - - uid: 10666 - components: - - rot: 1.5707963267948966 rad - pos: -76.5,35.5 - parent: 1 - type: Transform - - uid: 10667 - components: - - rot: 1.5707963267948966 rad - pos: -76.5,34.5 - parent: 1 - type: Transform - - uid: 10668 - components: - - rot: 3.141592653589793 rad - pos: -76.5,33.5 - parent: 1 - type: Transform - - uid: 10669 - components: - - rot: 3.141592653589793 rad - pos: -77.5,33.5 - parent: 1 - type: Transform - - uid: 10670 - components: - - rot: 3.141592653589793 rad - pos: -78.5,33.5 - parent: 1 - type: Transform - - uid: 10671 - components: - - rot: 3.141592653589793 rad - pos: -79.5,33.5 - parent: 1 - type: Transform - - uid: 10672 - components: - - rot: 3.141592653589793 rad - pos: -80.5,33.5 - parent: 1 - type: Transform - - uid: 10673 - components: - - rot: 3.141592653589793 rad - pos: -81.5,33.5 - parent: 1 - type: Transform - - uid: 10674 - components: - - rot: 3.141592653589793 rad - pos: -82.5,33.5 - parent: 1 - type: Transform - - uid: 10675 - components: - - rot: 3.141592653589793 rad - pos: -83.5,33.5 - parent: 1 - type: Transform - - uid: 10676 - components: - - rot: 3.141592653589793 rad - pos: -84.5,33.5 - parent: 1 - type: Transform - - uid: 10682 - components: - - rot: 3.141592653589793 rad - pos: -84.5,27.5 - parent: 1 - type: Transform - - uid: 10683 - components: - - pos: -84.5,23.5 - parent: 1 - type: Transform - - uid: 10860 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,51.5 - parent: 1 - type: Transform - - uid: 13301 - components: - - pos: 3.5,19.5 - parent: 1 - type: Transform - - uid: 13302 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,19.5 - parent: 1 - type: Transform - - uid: 13305 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,28.5 - parent: 1 - type: Transform - - uid: 13306 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,29.5 - parent: 1 - type: Transform - - uid: 14816 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,51.5 - parent: 1 - type: Transform - - uid: 14970 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-5.5 - parent: 1 - type: Transform - - uid: 14974 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-10.5 - parent: 1 - type: Transform - - uid: 15079 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,16.5 - parent: 1 - type: Transform - - uid: 15080 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,15.5 - parent: 1 - type: Transform - - uid: 15081 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,22.5 - parent: 1 - type: Transform - - uid: 15082 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,35.5 - parent: 1 - type: Transform - - uid: 15083 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,40.5 - parent: 1 - type: Transform -- proto: FirelockElectronics - entities: - - uid: 5541 - components: - - pos: -47.513573,27.566675 - parent: 1 - type: Transform - - uid: 5542 - components: - - pos: -47.372948,27.847925 - parent: 1 - type: Transform -- proto: FirelockGlass - entities: - - uid: 1741 - components: - - pos: -7.5,3.5 - parent: 1 - type: Transform - - uid: 1749 - components: - - pos: -10.5,1.5 - parent: 1 - type: Transform - - uid: 1752 - components: - - pos: 10.5,3.5 - parent: 1 - type: Transform - - uid: 1753 - components: - - pos: 11.5,3.5 - parent: 1 - type: Transform - - uid: 1754 - components: - - pos: 24.5,6.5 - parent: 1 - type: Transform - - uid: 1755 - components: - - pos: 24.5,5.5 - parent: 1 - type: Transform - - uid: 1758 - components: - - pos: -10.5,6.5 - parent: 1 - type: Transform - - uid: 1759 - components: - - pos: -10.5,5.5 - parent: 1 - type: Transform - - uid: 1760 - components: - - pos: -10.5,4.5 - parent: 1 - type: Transform - - uid: 1761 - components: - - pos: -11.5,7.5 - parent: 1 - type: Transform - - uid: 1762 - components: - - pos: -12.5,7.5 - parent: 1 - type: Transform - - uid: 1763 - components: - - pos: -13.5,7.5 - parent: 1 - type: Transform - - uid: 1764 - components: - - pos: -14.5,6.5 - parent: 1 - type: Transform - - uid: 1765 - components: - - pos: -14.5,5.5 - parent: 1 - type: Transform - - uid: 1766 - components: - - pos: -14.5,4.5 - parent: 1 - type: Transform - - uid: 1767 - components: - - pos: 12.5,6.5 - parent: 1 - type: Transform - - uid: 1768 - components: - - pos: 12.5,5.5 - parent: 1 - type: Transform - - uid: 2814 - components: - - pos: -14.5,33.5 - parent: 1 - type: Transform - - uid: 2867 - components: - - pos: 1.5,29.5 - parent: 1 - type: Transform - - uid: 2868 - components: - - pos: 1.5,30.5 - parent: 1 - type: Transform - - uid: 2869 - components: - - pos: -0.5,28.5 - parent: 1 - type: Transform - - uid: 2878 - components: - - pos: 1.5,25.5 - parent: 1 - type: Transform - - uid: 2879 - components: - - pos: 1.5,26.5 - parent: 1 - type: Transform - - uid: 2880 - components: - - pos: 1.5,23.5 - parent: 1 - type: Transform - - uid: 3064 - components: - - pos: -14.5,31.5 - parent: 1 - type: Transform - - uid: 3122 - components: - - pos: -14.5,32.5 - parent: 1 - type: Transform - - uid: 3175 - components: - - pos: -13.5,26.5 - parent: 1 - type: Transform - - uid: 3176 - components: - - pos: -12.5,26.5 - parent: 1 - type: Transform - - uid: 3177 - components: - - pos: -11.5,26.5 - parent: 1 - type: Transform - - uid: 3716 - components: - - pos: -41.5,-0.5 - parent: 1 - type: Transform - - uid: 3717 - components: - - pos: -40.5,-0.5 - parent: 1 - type: Transform - - uid: 3718 - components: - - pos: -39.5,0.5 - parent: 1 - type: Transform - - uid: 3719 - components: - - pos: -39.5,1.5 - parent: 1 - type: Transform - - uid: 3720 - components: - - pos: -38.5,2.5 - parent: 1 - type: Transform - - uid: 3721 - components: - - pos: -37.5,2.5 - parent: 1 - type: Transform - - uid: 3722 - components: - - pos: -36.5,2.5 - parent: 1 - type: Transform - - uid: 3723 - components: - - pos: -35.5,1.5 - parent: 1 - type: Transform - - uid: 3724 - components: - - pos: -35.5,0.5 - parent: 1 - type: Transform - - uid: 3725 - components: - - pos: -32.5,-0.5 - parent: 1 - type: Transform - - uid: 3726 - components: - - pos: -35.5,-2.5 - parent: 1 - type: Transform - - uid: 4107 - components: - - pos: -30.5,4.5 - parent: 1 - type: Transform - - uid: 4108 - components: - - pos: -30.5,5.5 - parent: 1 - type: Transform - - uid: 4109 - components: - - pos: -30.5,6.5 - parent: 1 - type: Transform - - uid: 4110 - components: - - pos: -42.5,4.5 - parent: 1 - type: Transform - - uid: 4111 - components: - - pos: -42.5,5.5 - parent: 1 - type: Transform - - uid: 4112 - components: - - pos: -42.5,6.5 - parent: 1 - type: Transform - - uid: 4114 - components: - - pos: -38.5,8.5 - parent: 1 - type: Transform - - uid: 4115 - components: - - pos: -37.5,8.5 - parent: 1 - type: Transform - - uid: 4116 - components: - - pos: -36.5,8.5 - parent: 1 - type: Transform - - uid: 4126 - components: - - pos: -59.5,-11.5 - parent: 1 - type: Transform - - uid: 4912 - components: - - pos: -59.5,-9.5 - parent: 1 - type: Transform - - uid: 4913 - components: - - pos: -59.5,-10.5 - parent: 1 - type: Transform - - uid: 5210 - components: - - pos: -55.5,4.5 - parent: 1 - type: Transform - - uid: 5211 - components: - - pos: -55.5,5.5 - parent: 1 - type: Transform - - uid: 5212 - components: - - pos: -55.5,6.5 - parent: 1 - type: Transform - - uid: 5213 - components: - - pos: -59.5,6.5 - parent: 1 - type: Transform - - uid: 5214 - components: - - pos: -59.5,5.5 - parent: 1 - type: Transform - - uid: 5215 - components: - - pos: -59.5,4.5 - parent: 1 - type: Transform - - uid: 5216 - components: - - pos: -58.5,3.5 - parent: 1 - type: Transform - - uid: 5217 - components: - - pos: -57.5,3.5 - parent: 1 - type: Transform - - uid: 5218 - components: - - pos: -56.5,3.5 - parent: 1 - type: Transform - - uid: 5219 - components: - - pos: -58.5,7.5 - parent: 1 - type: Transform - - uid: 5220 - components: - - pos: -57.5,7.5 - parent: 1 - type: Transform - - uid: 5221 - components: - - pos: -56.5,7.5 - parent: 1 - type: Transform - - uid: 5225 - components: - - pos: -38.5,30.5 - parent: 1 - type: Transform - - uid: 5226 - components: - - pos: -37.5,30.5 - parent: 1 - type: Transform - - uid: 5227 - components: - - pos: -36.5,30.5 - parent: 1 - type: Transform - - uid: 5228 - components: - - pos: -35.5,31.5 - parent: 1 - type: Transform - - uid: 5229 - components: - - pos: -35.5,32.5 - parent: 1 - type: Transform - - uid: 5230 - components: - - pos: -35.5,33.5 - parent: 1 - type: Transform - - uid: 5231 - components: - - pos: -39.5,31.5 - parent: 1 - type: Transform - - uid: 5232 - components: - - pos: -39.5,32.5 - parent: 1 - type: Transform - - uid: 5233 - components: - - pos: -39.5,33.5 - parent: 1 - type: Transform - - uid: 5234 - components: - - pos: -18.5,31.5 - parent: 1 - type: Transform - - uid: 5235 - components: - - pos: -18.5,32.5 - parent: 1 - type: Transform - - uid: 5236 - components: - - pos: -18.5,33.5 - parent: 1 - type: Transform - - uid: 5237 - components: - - pos: -17.5,34.5 - parent: 1 - type: Transform - - uid: 5238 - components: - - pos: -16.5,34.5 - parent: 1 - type: Transform - - uid: 5239 - components: - - pos: -15.5,34.5 - parent: 1 - type: Transform - - uid: 5240 - components: - - pos: -55.5,31.5 - parent: 1 - type: Transform - - uid: 5241 - components: - - pos: -55.5,32.5 - parent: 1 - type: Transform - - uid: 5242 - components: - - pos: -55.5,33.5 - parent: 1 - type: Transform - - uid: 5243 - components: - - pos: -56.5,30.5 - parent: 1 - type: Transform - - uid: 5244 - components: - - pos: -57.5,30.5 - parent: 1 - type: Transform - - uid: 5245 - components: - - pos: -58.5,30.5 - parent: 1 - type: Transform - - uid: 7995 - components: - - pos: -48.5,34.5 - parent: 1 - type: Transform - - uid: 7996 - components: - - pos: -47.5,34.5 - parent: 1 - type: Transform - - uid: 7997 - components: - - pos: -46.5,34.5 - parent: 1 - type: Transform - - uid: 8001 - components: - - pos: -58.5,34.5 - parent: 1 - type: Transform - - uid: 8002 - components: - - pos: -57.5,34.5 - parent: 1 - type: Transform - - uid: 8003 - components: - - pos: -56.5,34.5 - parent: 1 - type: Transform - - uid: 8542 - components: - - pos: -53.5,61.5 - parent: 1 - type: Transform - - uid: 8543 - components: - - pos: -53.5,60.5 - parent: 1 - type: Transform - - uid: 8578 - components: - - rot: -1.5707963267948966 rad - pos: -47.5,56.5 - parent: 1 - type: Transform - - uid: 8579 - components: - - rot: -1.5707963267948966 rad - pos: -47.5,63.5 - parent: 1 - type: Transform - - uid: 8580 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,64.5 - parent: 1 - type: Transform - - uid: 8581 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,65.5 - parent: 1 - type: Transform - - uid: 9819 - components: - - pos: -19.5,36.5 - parent: 1 - type: Transform - - uid: 10684 - components: - - pos: -74.5,27.5 - parent: 1 - type: Transform - - uid: 10685 - components: - - pos: -73.5,27.5 - parent: 1 - type: Transform - - uid: 10686 - components: - - pos: -74.5,23.5 - parent: 1 - type: Transform - - uid: 10687 - components: - - pos: -73.5,23.5 - parent: 1 - type: Transform - - uid: 10688 - components: - - pos: -65.5,33.5 - parent: 1 - type: Transform - - uid: 10689 - components: - - pos: -65.5,34.5 - parent: 1 - type: Transform - - uid: 13307 - components: - - pos: 2.5,27.5 - parent: 1 - type: Transform - - uid: 13308 - components: - - pos: 3.5,27.5 - parent: 1 - type: Transform - - uid: 13309 - components: - - pos: 4.5,27.5 - parent: 1 - type: Transform - - uid: 14302 - components: - - rot: 1.5707963267948966 rad - pos: -72.5,21.5 - parent: 1 - type: Transform - - uid: 14303 - components: - - rot: 1.5707963267948966 rad - pos: -77.5,25.5 - parent: 1 - type: Transform - - uid: 14304 - components: - - rot: 1.5707963267948966 rad - pos: -74.5,18.5 - parent: 1 - type: Transform - - uid: 14817 - components: - - rot: 3.141592653589793 rad - pos: -16.5,52.5 - parent: 1 - type: Transform - - uid: 15376 - components: - - rot: 3.141592653589793 rad - pos: 19.5,7.5 - parent: 1 - type: Transform - - uid: 15378 - components: - - rot: 3.141592653589793 rad - pos: 26.5,22.5 - parent: 1 - type: Transform - - uid: 15379 - components: - - rot: 3.141592653589793 rad - pos: 26.5,4.5 - parent: 1 - type: Transform - - uid: 15649 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,1.5 - parent: 1 - type: Transform -- proto: Fireplace - entities: - - uid: 3032 - components: - - pos: -23.5,18.5 - parent: 1 - type: Transform - - uid: 5356 - components: - - pos: -51.5,-0.5 - parent: 1 - type: Transform -- proto: Flash - entities: - - uid: 2851 - components: - - pos: -16.489683,29.613209 - parent: 1 - type: Transform - - uid: 10916 - components: - - pos: -12.483002,63.566193 - parent: 1 - type: Transform -- proto: FlashlightLantern - entities: - - uid: 4103 - components: - - pos: -33.652264,-1.2000351 - parent: 1 - type: Transform - - uid: 4104 - components: - - pos: -33.44914,-1.4031601 - parent: 1 - type: Transform -- proto: FlashlightSeclite - entities: - - uid: 2842 - components: - - pos: -17.543365,26.708624 - parent: 1 - type: Transform - - uid: 3315 - components: - - pos: -17.49649,26.396124 - parent: 1 - type: Transform - - uid: 13335 - components: - - pos: -0.51456356,10.706236 - parent: 1 - type: Transform - - uid: 13336 - components: - - pos: -0.48331353,10.346861 - parent: 1 - type: Transform -- proto: Floodlight - entities: - - uid: 15527 - components: - - pos: 7.5332904,-17.502348 - parent: 1 - type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight -- proto: FloorDrain - entities: - - uid: 1981 - components: - - pos: -2.5,25.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 6928 - components: - - pos: -28.5,46.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 10144 - components: - - rot: -1.5707963267948966 rad - pos: -51.5,36.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures -- proto: FloraTree01 - entities: - - uid: 5652 - components: - - pos: -31.673817,19.688118 - parent: 1 - type: Transform - - uid: 7525 - components: - - pos: -11.963879,39.845062 - parent: 1 - type: Transform -- proto: FloraTree02 - entities: - - uid: 7523 - components: - - pos: -12.854504,35.595062 - parent: 1 - type: Transform -- proto: FloraTree03 - entities: - - uid: 5651 - components: - - pos: -34.080067,20.500618 - parent: 1 - type: Transform -- proto: FloraTree04 - entities: - - uid: 5653 - components: - - pos: -33.986317,15.672493 - parent: 1 - type: Transform -- proto: FloraTree05 - entities: - - uid: 7526 - components: - - pos: -13.010754,43.235687 - parent: 1 - type: Transform -- proto: FloraTreeStump - entities: - - uid: 15850 - components: - - pos: 20.438618,40.115738 - parent: 1 - type: Transform -- proto: FluteInstrument - entities: - - uid: 14705 - components: - - pos: -4.5521817,51.503952 - parent: 1 - type: Transform -- proto: FoamBlade - entities: - - uid: 5803 - components: - - desc: A highly detailed replica of a real armblade. - type: MetaData - - pos: -9.533392,20.561493 - parent: 1 - type: Transform -- proto: FoodBowlBigTrash - entities: - - uid: 1873 - components: - - pos: -35.01638,3.9468641 - parent: 1 - type: Transform -- proto: FoodBoxDonkpocketBerry - entities: - - uid: 7947 - components: - - pos: -54.482857,64.65437 - parent: 1 - type: Transform -- proto: FoodBoxDonut - entities: - - uid: 15100 - components: - - pos: -15.485719,25.584269 - parent: 1 - type: Transform -- proto: FoodCakeSpaceman - entities: - - uid: 13835 - components: - - pos: -4.5029564,53.587227 - parent: 1 - type: Transform -- proto: FoodCheese - entities: - - uid: 5801 - components: - - pos: -9.517767,22.3806 - parent: 1 - type: Transform -- proto: FoodDonutJellySpaceman - entities: - - uid: 14938 - components: - - pos: -111.48177,18.535988 - parent: 1 - type: Transform -- proto: FoodMealSashimi - entities: - - uid: 6056 - components: - - pos: -48.5126,9.614483 - parent: 1 - type: Transform -- proto: FoodPieBananaCream - entities: - - uid: 4240 - components: - - pos: -41.421516,28.723614 - parent: 1 - type: Transform -- proto: FoodPlateSmallTrash - entities: - - uid: 2640 - components: - - pos: -35.54763,4.040614 - parent: 1 - type: Transform - - uid: 2886 - components: - - pos: -36.188255,4.056239 - parent: 1 - type: Transform - - uid: 4237 - components: - - pos: -35.29763,3.4937391 - parent: 1 - type: Transform -- proto: FoodPlateTrash - entities: - - uid: 1527 - components: - - pos: -35.73513,3.8687391 - parent: 1 - type: Transform -- proto: FoodSoupEyeball - entities: - - uid: 15186 - components: - - pos: 4.4872284,54.545197 - parent: 1 - type: Transform -- proto: FoodSoupStew - entities: - - uid: 5598 - components: - - pos: -49.501343,9.695094 - parent: 1 - type: Transform -- proto: FoodTinBeans - entities: - - uid: 1528 - components: - - pos: 10.541792,-13.39496 - parent: 1 - type: Transform -- proto: ForensicPad - entities: - - uid: 12914 - components: - - pos: 1.5309631,43.363426 - parent: 1 - type: Transform - - uid: 12915 - components: - - pos: 2.583364,43.44034 - parent: 1 - type: Transform -- proto: GasAnalyzer - entities: - - uid: 15550 - components: - - pos: 11.778922,-20.456448 - parent: 1 - type: Transform -- proto: GasCanisterBrokenBase - entities: - - uid: 370 - components: - - pos: 0.5,-15.5 - parent: 1 - type: Transform -- proto: GasFilterFlipped - entities: - - uid: 2397 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,35.5 - parent: 1 - type: Transform -- proto: GasMinerCarbonDioxide - entities: - - uid: 10841 - components: - - rot: -1.5707963267948966 rad - pos: -89.5,39.5 - parent: 1 - type: Transform -- proto: GasMinerNitrogen - entities: - - uid: 10840 - components: - - rot: -1.5707963267948966 rad - pos: -89.5,37.5 - parent: 1 - type: Transform - - maxExternalPressure: 4000 - type: GasMiner -- proto: GasMinerOxygen - entities: - - uid: 10839 - components: - - rot: -1.5707963267948966 rad - pos: -89.5,35.5 - parent: 1 - type: Transform - - maxExternalPressure: 4000 - type: GasMiner -- proto: GasMinerPlasma - entities: - - uid: 10842 - components: - - pos: -89.5,43.5 - parent: 1 - type: Transform -- proto: GasOutletInjector - entities: - - uid: 13633 - components: - - rot: 1.5707963267948966 rad - pos: -88.5,35.5 - parent: 1 - type: Transform - - uid: 13634 - components: - - rot: 1.5707963267948966 rad - pos: -88.5,37.5 - parent: 1 - type: Transform - - uid: 13635 - components: - - rot: 1.5707963267948966 rad - pos: -88.5,39.5 - parent: 1 - type: Transform - - uid: 13636 - components: - - rot: 1.5707963267948966 rad - pos: -88.5,41.5 - parent: 1 - type: Transform - - uid: 13637 - components: - - rot: 1.5707963267948966 rad - pos: -88.5,43.5 - parent: 1 - type: Transform - - uid: 13638 - components: - - rot: 1.5707963267948966 rad - pos: -88.5,45.5 - parent: 1 - type: Transform -- proto: GasPassiveVent - entities: - - uid: 364 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-14.5 - parent: 1 - type: Transform - - uid: 365 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-14.5 - parent: 1 - type: Transform - - uid: 13627 - components: - - pos: -90.5,45.5 - parent: 1 - type: Transform - - uid: 13628 - components: - - pos: -90.5,43.5 - parent: 1 - type: Transform - - uid: 13629 - components: - - pos: -90.5,41.5 - parent: 1 - type: Transform - - uid: 13630 - components: - - pos: -90.5,39.5 - parent: 1 - type: Transform - - uid: 13631 - components: - - pos: -90.5,37.5 - parent: 1 - type: Transform - - uid: 13632 - components: - - pos: -90.5,35.5 - parent: 1 - type: Transform - - uid: 13858 - components: - - pos: -84.5,48.5 - parent: 1 - type: Transform - - uid: 13859 - components: - - pos: -83.5,50.5 - parent: 1 - type: Transform - - uid: 13860 - components: - - pos: -81.5,50.5 - parent: 1 - type: Transform - - uid: 13916 - components: - - rot: 1.5707963267948966 rad - pos: -86.5,33.5 - parent: 1 - type: Transform -- proto: GasPipeBend - entities: - - uid: 2385 - components: - - rot: 3.141592653589793 rad - pos: 6.5,35.5 - parent: 1 - type: Transform - - uid: 2387 - components: - - pos: 11.5,35.5 - parent: 1 - type: Transform - - uid: 2388 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,34.5 - parent: 1 - type: Transform - - uid: 2389 - components: - - rot: 3.141592653589793 rad - pos: 9.5,34.5 - parent: 1 - type: Transform - - uid: 2390 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,36.5 - parent: 1 - type: Transform - - uid: 2391 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,36.5 - parent: 1 - type: Transform - - uid: 2419 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2420 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2457 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2458 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2460 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2463 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 3016 - components: - - rot: 3.141592653589793 rad - pos: 2.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 3017 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 3018 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3687 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5387 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8693 - components: - - pos: -46.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8746 - components: - - pos: -56.5,57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8752 - components: - - rot: 1.5707963267948966 rad - pos: -61.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8753 - components: - - rot: 1.5707963267948966 rad - pos: -60.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8767 - components: - - pos: -55.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8926 - components: - - pos: -52.5,88.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8927 - components: - - pos: -50.5,89.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8931 - components: - - rot: 1.5707963267948966 rad - pos: -57.5,88.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8932 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,89.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10796 - components: - - pos: 10.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10797 - components: - - pos: 9.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11126 - components: - - rot: 1.5707963267948966 rad - pos: -56.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11221 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11222 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11227 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11228 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11279 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11287 - components: - - rot: -1.5707963267948966 rad - pos: -47.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11288 - components: - - rot: -1.5707963267948966 rad - pos: -48.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11312 - components: - - rot: 3.141592653589793 rad - pos: -52.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11534 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11649 - components: - - rot: 3.141592653589793 rad - pos: -33.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11679 - components: - - rot: -1.5707963267948966 rad - pos: -57.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11680 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11788 - components: - - pos: -57.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11820 - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12186 - components: - - rot: 3.141592653589793 rad - pos: -19.5,35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12189 - components: - - pos: -19.5,38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12217 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12319 - components: - - rot: 3.141592653589793 rad - pos: -13.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12370 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12371 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12372 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12373 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12399 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12400 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12401 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12402 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12554 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12726 - components: - - pos: -1.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12727 - components: - - pos: -2.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12728 - components: - - rot: 3.141592653589793 rad - pos: -2.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12729 - components: - - rot: 3.141592653589793 rad - pos: -1.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12743 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12751 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12752 - components: - - pos: 11.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13014 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 13015 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13719 - components: - - rot: 3.141592653589793 rad - pos: -90.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13720 - components: - - rot: 3.141592653589793 rad - pos: -90.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13721 - components: - - rot: 3.141592653589793 rad - pos: -90.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13722 - components: - - rot: 3.141592653589793 rad - pos: -90.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13725 - components: - - rot: 3.141592653589793 rad - pos: -90.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13730 - components: - - rot: 3.141592653589793 rad - pos: -90.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13862 - components: - - pos: -82.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13863 - components: - - rot: 3.141592653589793 rad - pos: -83.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13983 - components: - - pos: -66.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13984 - components: - - pos: -67.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13985 - components: - - rot: 3.141592653589793 rad - pos: -67.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13997 - components: - - pos: -61.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14021 - components: - - pos: -72.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14022 - components: - - pos: -71.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14023 - components: - - rot: 3.141592653589793 rad - pos: -72.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14024 - components: - - rot: 3.141592653589793 rad - pos: -71.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14054 - components: - - rot: 3.141592653589793 rad - pos: -74.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14055 - components: - - rot: 3.141592653589793 rad - pos: -73.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14106 - components: - - rot: 3.141592653589793 rad - pos: -71.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14107 - components: - - rot: 3.141592653589793 rad - pos: -70.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14108 - components: - - rot: 1.5707963267948966 rad - pos: -71.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14133 - components: - - pos: -64.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14134 - components: - - pos: -63.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14135 - components: - - rot: -1.5707963267948966 rad - pos: -63.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14136 - components: - - rot: -1.5707963267948966 rad - pos: -64.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound -- proto: GasPipeFourway - entities: - - uid: 2386 - components: - - pos: 9.5,35.5 - parent: 1 - type: Transform - - uid: 2685 - components: - - pos: 2.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8692 - components: - - pos: -47.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8781 - components: - - pos: -52.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10234 - components: - - pos: -40.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11083 - components: - - pos: -56.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11084 - components: - - pos: -57.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11189 - components: - - pos: -41.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11278 - components: - - pos: -48.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11532 - components: - - pos: -38.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11533 - components: - - pos: -36.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11559 - components: - - pos: -36.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11560 - components: - - pos: -38.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11759 - components: - - pos: -58.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11761 - components: - - pos: -56.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11940 - components: - - pos: -41.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11941 - components: - - pos: -40.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11974 - components: - - pos: -44.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11975 - components: - - pos: -43.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12052 - components: - - pos: -38.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12053 - components: - - pos: -36.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12094 - components: - - pos: -23.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12191 - components: - - pos: -17.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12192 - components: - - pos: -15.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12298 - components: - - pos: -13.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12299 - components: - - pos: -11.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12349 - components: - - pos: -9.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12423 - components: - - pos: -11.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12427 - components: - - pos: -11.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12647 - components: - - pos: 26.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12970 - components: - - pos: -17.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12971 - components: - - pos: -15.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- proto: GasPipeStraight - entities: - - uid: 354 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-10.5 - parent: 1 - type: Transform - - uid: 355 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-11.5 - parent: 1 - type: Transform - - uid: 356 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 357 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 358 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-13.5 - parent: 1 - type: Transform - - uid: 359 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 360 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-11.5 - parent: 1 - type: Transform - - uid: 361 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1213 - components: - - rot: 3.141592653589793 rad - pos: -0.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 1228 - components: - - rot: 3.141592653589793 rad - pos: -0.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1242 - components: - - rot: 3.141592653589793 rad - pos: 0.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1248 - components: - - rot: 3.141592653589793 rad - pos: 0.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1329 - components: - - rot: 3.141592653589793 rad - pos: -0.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1369 - components: - - rot: 3.141592653589793 rad - pos: -0.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 1513 - components: - - rot: 3.141592653589793 rad - pos: -17.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1771 - components: - - rot: 1.5707963267948966 rad - pos: -64.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1772 - components: - - rot: 1.5707963267948966 rad - pos: -71.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 1773 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1779 - components: - - rot: 3.141592653589793 rad - pos: 15.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1790 - components: - - rot: 3.141592653589793 rad - pos: 14.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1797 - components: - - rot: 3.141592653589793 rad - pos: 14.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1798 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2392 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,36.5 - parent: 1 - type: Transform - - uid: 2393 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,34.5 - parent: 1 - type: Transform - - uid: 2395 - components: - - rot: 3.141592653589793 rad - pos: 6.5,36.5 - parent: 1 - type: Transform - - uid: 2403 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2404 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2405 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2406 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2407 - components: - - rot: 3.141592653589793 rad - pos: 4.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2412 - components: - - rot: 3.141592653589793 rad - pos: 4.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2413 - components: - - rot: 3.141592653589793 rad - pos: 4.5,35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 2414 - components: - - rot: 3.141592653589793 rad - pos: 4.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 2415 - components: - - rot: 3.141592653589793 rad - pos: 2.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2417 - components: - - rot: 3.141592653589793 rad - pos: 2.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2426 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2427 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2428 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2429 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2430 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 2431 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2434 - components: - - pos: 3.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2435 - components: - - pos: 3.5,36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2436 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2437 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2438 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2439 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2440 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2441 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2442 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2443 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2444 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2445 - components: - - rot: 3.141592653589793 rad - pos: 8.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2446 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2447 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2448 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2449 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2450 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2451 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 2452 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2453 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2454 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2455 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2456 - components: - - rot: 3.141592653589793 rad - pos: 15.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2462 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2464 - components: - - pos: 15.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2465 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2466 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2467 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2468 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2469 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 2470 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2484 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 2675 - components: - - pos: 2.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2676 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2677 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2678 - components: - - rot: 3.141592653589793 rad - pos: 2.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2679 - components: - - rot: 3.141592653589793 rad - pos: 4.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2680 - components: - - rot: 3.141592653589793 rad - pos: 4.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2681 - components: - - rot: 3.141592653589793 rad - pos: 4.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2682 - components: - - rot: 3.141592653589793 rad - pos: 2.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2775 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2864 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2871 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2872 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2873 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2874 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2875 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2876 - components: - - pos: 2.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2877 - components: - - pos: 4.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2895 - components: - - pos: -15.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2902 - components: - - rot: 3.141592653589793 rad - pos: -15.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2919 - components: - - pos: -15.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3003 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 3004 - components: - - pos: 4.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3005 - components: - - pos: 3.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 3006 - components: - - pos: 4.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 3007 - components: - - pos: 3.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 3008 - components: - - pos: 4.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3009 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 3010 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3011 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3012 - components: - - rot: 3.141592653589793 rad - pos: 4.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3013 - components: - - rot: 3.141592653589793 rad - pos: 2.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 3014 - components: - - rot: 3.141592653589793 rad - pos: 2.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 3015 - components: - - rot: 3.141592653589793 rad - pos: 4.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3025 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 3179 - components: - - pos: -17.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 3319 - components: - - pos: -17.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 3320 - components: - - pos: -15.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3349 - components: - - rot: 3.141592653589793 rad - pos: -40.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3350 - components: - - rot: 3.141592653589793 rad - pos: -40.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3351 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 3356 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 3357 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 3360 - components: - - rot: 3.141592653589793 rad - pos: -40.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3551 - components: - - pos: -40.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3559 - components: - - rot: 3.141592653589793 rad - pos: -40.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 3563 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 3571 - components: - - rot: 3.141592653589793 rad - pos: -40.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3574 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3617 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 3631 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 3657 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 3683 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3704 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3715 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3840 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 3844 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3846 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3851 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 3960 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 3961 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 4106 - components: - - rot: 1.5707963267948966 rad - pos: -60.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 4265 - components: - - rot: 1.5707963267948966 rad - pos: -60.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 4752 - components: - - pos: -64.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 4753 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 4755 - components: - - rot: 1.5707963267948966 rad - pos: -61.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 4775 - components: - - rot: 1.5707963267948966 rad - pos: -65.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 4776 - components: - - rot: 1.5707963267948966 rad - pos: -66.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 4777 - components: - - rot: 1.5707963267948966 rad - pos: -67.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 4778 - components: - - rot: 1.5707963267948966 rad - pos: -68.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 4779 - components: - - rot: 1.5707963267948966 rad - pos: -69.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 4780 - components: - - rot: 1.5707963267948966 rad - pos: -70.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 4781 - components: - - rot: 1.5707963267948966 rad - pos: -73.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 4803 - components: - - rot: 1.5707963267948966 rad - pos: -62.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 4804 - components: - - rot: 1.5707963267948966 rad - pos: -63.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 4808 - components: - - rot: 3.141592653589793 rad - pos: -57.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 4877 - components: - - rot: 1.5707963267948966 rad - pos: -71.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 4878 - components: - - rot: 1.5707963267948966 rad - pos: -72.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 4914 - components: - - rot: 1.5707963267948966 rad - pos: -69.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4915 - components: - - rot: 1.5707963267948966 rad - pos: -70.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4916 - components: - - rot: 1.5707963267948966 rad - pos: -61.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 4917 - components: - - rot: 1.5707963267948966 rad - pos: -62.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4918 - components: - - rot: 1.5707963267948966 rad - pos: -63.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4919 - components: - - rot: 1.5707963267948966 rad - pos: -67.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 4920 - components: - - rot: 1.5707963267948966 rad - pos: -72.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 4921 - components: - - rot: 1.5707963267948966 rad - pos: -73.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 4931 - components: - - rot: 3.141592653589793 rad - pos: -58.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 4957 - components: - - rot: 1.5707963267948966 rad - pos: -66.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 4974 - components: - - rot: 1.5707963267948966 rad - pos: -68.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4975 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5317 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,6.5 - parent: 1 - type: Transform - - uid: 5350 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,6.5 - parent: 1 - type: Transform - - uid: 5393 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5397 - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5401 - components: - - pos: -42.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5462 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5690 - components: - - pos: -17.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5764 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5765 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5789 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5790 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6253 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,4.5 - parent: 1 - type: Transform - - uid: 7441 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 7442 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8674 - components: - - pos: -46.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8675 - components: - - pos: -46.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8676 - components: - - pos: -46.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8677 - components: - - pos: -46.5,51.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8678 - components: - - pos: -46.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8679 - components: - - pos: -46.5,53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8680 - components: - - pos: -46.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8681 - components: - - pos: -48.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8682 - components: - - pos: -48.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8683 - components: - - pos: -48.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8684 - components: - - pos: -48.5,51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8685 - components: - - pos: -48.5,52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8687 - components: - - rot: -1.5707963267948966 rad - pos: -48.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8688 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8689 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8694 - components: - - pos: -47.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8695 - components: - - pos: -47.5,57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8696 - components: - - pos: -47.5,58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8701 - components: - - rot: -1.5707963267948966 rad - pos: -51.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8703 - components: - - rot: -1.5707963267948966 rad - pos: -54.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8705 - components: - - rot: -1.5707963267948966 rad - pos: -57.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8706 - components: - - rot: -1.5707963267948966 rad - pos: -58.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8707 - components: - - rot: 3.141592653589793 rad - pos: -51.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8708 - components: - - rot: 3.141592653589793 rad - pos: -51.5,53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8709 - components: - - rot: 3.141592653589793 rad - pos: -51.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8710 - components: - - rot: 3.141592653589793 rad - pos: -51.5,51.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8711 - components: - - rot: 3.141592653589793 rad - pos: -50.5,52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8712 - components: - - rot: 3.141592653589793 rad - pos: -50.5,51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8713 - components: - - rot: 3.141592653589793 rad - pos: -53.5,52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8714 - components: - - rot: 3.141592653589793 rad - pos: -53.5,51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8715 - components: - - rot: 3.141592653589793 rad - pos: -54.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8716 - components: - - rot: 3.141592653589793 rad - pos: -54.5,51.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8717 - components: - - rot: 3.141592653589793 rad - pos: -56.5,52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8718 - components: - - rot: 3.141592653589793 rad - pos: -56.5,51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8719 - components: - - rot: 3.141592653589793 rad - pos: -57.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8720 - components: - - rot: 3.141592653589793 rad - pos: -57.5,51.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8721 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8723 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8725 - components: - - pos: -55.5,54.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8726 - components: - - pos: -55.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8728 - components: - - pos: -55.5,57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8729 - components: - - rot: -1.5707963267948966 rad - pos: -56.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8730 - components: - - rot: -1.5707963267948966 rad - pos: -57.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8731 - components: - - rot: -1.5707963267948966 rad - pos: -58.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8732 - components: - - rot: -1.5707963267948966 rad - pos: -59.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8737 - components: - - rot: 3.141592653589793 rad - pos: -54.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8738 - components: - - rot: 3.141592653589793 rad - pos: -54.5,53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8739 - components: - - rot: 3.141592653589793 rad - pos: -57.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8740 - components: - - rot: 3.141592653589793 rad - pos: -57.5,53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8741 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8742 - components: - - rot: 3.141592653589793 rad - pos: -56.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8743 - components: - - rot: 1.5707963267948966 rad - pos: -57.5,57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8744 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8745 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8747 - components: - - rot: -1.5707963267948966 rad - pos: -59.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8748 - components: - - rot: -1.5707963267948966 rad - pos: -60.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8749 - components: - - rot: 3.141592653589793 rad - pos: -61.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8750 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8751 - components: - - pos: -61.5,53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8768 - components: - - rot: 3.141592653589793 rad - pos: -52.5,54.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8769 - components: - - rot: 3.141592653589793 rad - pos: -52.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8770 - components: - - rot: 3.141592653589793 rad - pos: -52.5,56.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8771 - components: - - rot: 3.141592653589793 rad - pos: -52.5,57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8772 - components: - - rot: 3.141592653589793 rad - pos: -52.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8773 - components: - - rot: 3.141592653589793 rad - pos: -52.5,59.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8774 - components: - - rot: 3.141592653589793 rad - pos: -50.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8775 - components: - - rot: 3.141592653589793 rad - pos: -50.5,57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8776 - components: - - rot: 3.141592653589793 rad - pos: -50.5,58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8777 - components: - - rot: 3.141592653589793 rad - pos: -50.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8786 - components: - - pos: -52.5,60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8789 - components: - - rot: -1.5707963267948966 rad - pos: -51.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8790 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8791 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8792 - components: - - rot: -1.5707963267948966 rad - pos: -48.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8794 - components: - - rot: 3.141592653589793 rad - pos: -52.5,63.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8795 - components: - - rot: 3.141592653589793 rad - pos: -52.5,64.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8796 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8797 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8798 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8799 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8800 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8801 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8802 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8803 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8804 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8805 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,64.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8806 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,64.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8807 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,64.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8808 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,64.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8809 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,64.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8810 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,64.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8811 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,64.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8812 - components: - - pos: -50.5,65.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8813 - components: - - pos: -50.5,66.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8815 - components: - - pos: -52.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8816 - components: - - pos: -52.5,67.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8818 - components: - - pos: -50.5,61.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8819 - components: - - pos: -50.5,62.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8820 - components: - - rot: -1.5707963267948966 rad - pos: -51.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8821 - components: - - rot: -1.5707963267948966 rad - pos: -52.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8822 - components: - - rot: -1.5707963267948966 rad - pos: -53.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8823 - components: - - rot: -1.5707963267948966 rad - pos: -54.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8824 - components: - - rot: -1.5707963267948966 rad - pos: -53.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8825 - components: - - rot: 3.141592653589793 rad - pos: -54.5,62.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8826 - components: - - rot: 3.141592653589793 rad - pos: -54.5,63.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8827 - components: - - rot: 3.141592653589793 rad - pos: -55.5,61.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8828 - components: - - rot: 3.141592653589793 rad - pos: -55.5,62.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8829 - components: - - rot: 3.141592653589793 rad - pos: -55.5,63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8830 - components: - - rot: 1.5707963267948966 rad - pos: -57.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8831 - components: - - rot: 1.5707963267948966 rad - pos: -56.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8832 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8833 - components: - - rot: 1.5707963267948966 rad - pos: -57.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8834 - components: - - rot: 1.5707963267948966 rad - pos: -56.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8835 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8836 - components: - - pos: -58.5,62.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8837 - components: - - pos: -58.5,63.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8838 - components: - - pos: -59.5,61.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8839 - components: - - pos: -59.5,62.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8840 - components: - - pos: -59.5,63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8841 - components: - - rot: -1.5707963267948966 rad - pos: -59.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8851 - components: - - rot: 3.141592653589793 rad - pos: -52.5,68.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8852 - components: - - rot: 3.141592653589793 rad - pos: -52.5,69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8853 - components: - - rot: 3.141592653589793 rad - pos: -52.5,70.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8854 - components: - - rot: 3.141592653589793 rad - pos: -52.5,71.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8855 - components: - - rot: 3.141592653589793 rad - pos: -52.5,72.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8856 - components: - - rot: 3.141592653589793 rad - pos: -52.5,73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8857 - components: - - rot: 3.141592653589793 rad - pos: -52.5,74.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8858 - components: - - rot: 3.141592653589793 rad - pos: -52.5,75.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8859 - components: - - rot: 3.141592653589793 rad - pos: -52.5,76.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8860 - components: - - rot: 3.141592653589793 rad - pos: -52.5,77.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8861 - components: - - rot: 3.141592653589793 rad - pos: -52.5,78.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8862 - components: - - rot: 3.141592653589793 rad - pos: -52.5,79.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8863 - components: - - rot: 3.141592653589793 rad - pos: -52.5,80.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8864 - components: - - rot: 3.141592653589793 rad - pos: -50.5,68.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8865 - components: - - rot: 3.141592653589793 rad - pos: -50.5,68.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8866 - components: - - rot: 3.141592653589793 rad - pos: -50.5,69.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8867 - components: - - rot: 3.141592653589793 rad - pos: -50.5,70.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8868 - components: - - rot: 3.141592653589793 rad - pos: -50.5,71.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8869 - components: - - rot: 3.141592653589793 rad - pos: -50.5,72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8870 - components: - - rot: 3.141592653589793 rad - pos: -50.5,73.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8871 - components: - - rot: 3.141592653589793 rad - pos: -50.5,74.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8872 - components: - - rot: 3.141592653589793 rad - pos: -50.5,75.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8873 - components: - - rot: 3.141592653589793 rad - pos: -50.5,76.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8874 - components: - - rot: 3.141592653589793 rad - pos: -50.5,77.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8875 - components: - - rot: 3.141592653589793 rad - pos: -50.5,78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8876 - components: - - rot: 3.141592653589793 rad - pos: -50.5,79.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8877 - components: - - rot: 3.141592653589793 rad - pos: -52.5,81.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8878 - components: - - rot: 3.141592653589793 rad - pos: -52.5,82.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8879 - components: - - rot: 3.141592653589793 rad - pos: -50.5,81.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8880 - components: - - rot: 3.141592653589793 rad - pos: -50.5,82.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8889 - components: - - rot: -1.5707963267948966 rad - pos: -53.5,84.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8890 - components: - - rot: -1.5707963267948966 rad - pos: -54.5,84.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8891 - components: - - pos: -52.5,83.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8892 - components: - - rot: -1.5707963267948966 rad - pos: -56.5,84.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8893 - components: - - rot: -1.5707963267948966 rad - pos: -57.5,84.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8894 - components: - - rot: -1.5707963267948966 rad - pos: -51.5,83.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8895 - components: - - rot: -1.5707963267948966 rad - pos: -52.5,83.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8896 - components: - - rot: -1.5707963267948966 rad - pos: -53.5,83.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8897 - components: - - rot: -1.5707963267948966 rad - pos: -55.5,83.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8898 - components: - - rot: -1.5707963267948966 rad - pos: -56.5,83.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8899 - components: - - rot: -1.5707963267948966 rad - pos: -57.5,83.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8900 - components: - - rot: 3.141592653589793 rad - pos: -50.5,85.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8901 - components: - - rot: 3.141592653589793 rad - pos: -50.5,86.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8902 - components: - - rot: 3.141592653589793 rad - pos: -50.5,87.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8903 - components: - - rot: 3.141592653589793 rad - pos: -50.5,88.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8904 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,89.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8905 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,89.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8906 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,89.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8907 - components: - - rot: 1.5707963267948966 rad - pos: -54.5,89.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8908 - components: - - rot: 1.5707963267948966 rad - pos: -56.5,89.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8909 - components: - - rot: 1.5707963267948966 rad - pos: -57.5,89.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8910 - components: - - pos: -58.5,88.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8919 - components: - - rot: 3.141592653589793 rad - pos: -52.5,86.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8920 - components: - - rot: 3.141592653589793 rad - pos: -52.5,87.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8921 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,88.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8922 - components: - - rot: 1.5707963267948966 rad - pos: -56.5,88.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8923 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,88.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9573 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10054 - components: - - rot: 3.141592653589793 rad - pos: 10.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10072 - components: - - pos: 10.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10235 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10240 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10241 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10312 - components: - - pos: -11.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10347 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10704 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11087 - components: - - rot: 1.5707963267948966 rad - pos: -57.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11088 - components: - - pos: -57.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11089 - components: - - rot: -1.5707963267948966 rad - pos: -56.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11090 - components: - - rot: 3.141592653589793 rad - pos: -56.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11092 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11097 - components: - - rot: -1.5707963267948966 rad - pos: -57.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11098 - components: - - rot: -1.5707963267948966 rad - pos: -57.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11099 - components: - - rot: 3.141592653589793 rad - pos: -57.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11100 - components: - - rot: 3.141592653589793 rad - pos: -57.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11101 - components: - - rot: 3.141592653589793 rad - pos: -56.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11102 - components: - - rot: 3.141592653589793 rad - pos: -56.5,38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11104 - components: - - rot: 3.141592653589793 rad - pos: -57.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11105 - components: - - rot: 3.141592653589793 rad - pos: -57.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11106 - components: - - rot: 3.141592653589793 rad - pos: -57.5,36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11107 - components: - - rot: 3.141592653589793 rad - pos: -56.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11108 - components: - - rot: 3.141592653589793 rad - pos: -56.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11109 - components: - - rot: 3.141592653589793 rad - pos: -56.5,35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11110 - components: - - rot: 3.141592653589793 rad - pos: -56.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11111 - components: - - rot: 3.141592653589793 rad - pos: -57.5,39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11112 - components: - - rot: 3.141592653589793 rad - pos: -57.5,40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11113 - components: - - rot: 3.141592653589793 rad - pos: -57.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11115 - components: - - rot: 3.141592653589793 rad - pos: -56.5,40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11117 - components: - - rot: 3.141592653589793 rad - pos: -56.5,42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11118 - components: - - rot: 3.141592653589793 rad - pos: -56.5,39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11127 - components: - - pos: -56.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11128 - components: - - pos: -57.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11129 - components: - - pos: -57.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11130 - components: - - rot: -1.5707963267948966 rad - pos: -56.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11131 - components: - - rot: -1.5707963267948966 rad - pos: -55.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11132 - components: - - rot: -1.5707963267948966 rad - pos: -54.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11133 - components: - - rot: -1.5707963267948966 rad - pos: -53.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11135 - components: - - rot: -1.5707963267948966 rad - pos: -55.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11136 - components: - - rot: -1.5707963267948966 rad - pos: -54.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11138 - components: - - rot: -1.5707963267948966 rad - pos: -52.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11139 - components: - - rot: -1.5707963267948966 rad - pos: -51.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11140 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11141 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11142 - components: - - rot: -1.5707963267948966 rad - pos: -51.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11143 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11144 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11149 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11150 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11151 - components: - - pos: -48.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11152 - components: - - rot: 3.141592653589793 rad - pos: -46.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11153 - components: - - rot: 3.141592653589793 rad - pos: -46.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11154 - components: - - rot: 3.141592653589793 rad - pos: -46.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11155 - components: - - rot: 3.141592653589793 rad - pos: -48.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11170 - components: - - pos: -48.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11171 - components: - - pos: -48.5,42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11176 - components: - - rot: -1.5707963267948966 rad - pos: -47.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11177 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11178 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11179 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11180 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11181 - components: - - rot: -1.5707963267948966 rad - pos: -43.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11182 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11183 - components: - - rot: -1.5707963267948966 rad - pos: -43.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11186 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11187 - components: - - rot: 3.141592653589793 rad - pos: -41.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11188 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11190 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11191 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11193 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11194 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11195 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11197 - components: - - rot: 3.141592653589793 rad - pos: -40.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11198 - components: - - rot: 3.141592653589793 rad - pos: -40.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11199 - components: - - rot: 3.141592653589793 rad - pos: -40.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11200 - components: - - rot: 3.141592653589793 rad - pos: -40.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11201 - components: - - rot: 3.141592653589793 rad - pos: -40.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11202 - components: - - rot: 3.141592653589793 rad - pos: -41.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11203 - components: - - rot: 3.141592653589793 rad - pos: -41.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11204 - components: - - rot: 3.141592653589793 rad - pos: -41.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11205 - components: - - rot: 3.141592653589793 rad - pos: -41.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11206 - components: - - rot: 3.141592653589793 rad - pos: -41.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11207 - components: - - rot: 3.141592653589793 rad - pos: -40.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11210 - components: - - pos: -46.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11213 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11214 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11215 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11216 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11217 - components: - - rot: 3.141592653589793 rad - pos: -36.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11218 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11219 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11220 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11225 - components: - - pos: -32.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11226 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11229 - components: - - pos: -33.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11230 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11231 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11232 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11233 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11234 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11241 - components: - - rot: 3.141592653589793 rad - pos: -46.5,40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11242 - components: - - rot: 3.141592653589793 rad - pos: -46.5,39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11243 - components: - - rot: 3.141592653589793 rad - pos: -46.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11244 - components: - - rot: 3.141592653589793 rad - pos: -46.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11245 - components: - - rot: 3.141592653589793 rad - pos: -48.5,40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11246 - components: - - rot: 3.141592653589793 rad - pos: -48.5,39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11247 - components: - - rot: 3.141592653589793 rad - pos: -48.5,38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11248 - components: - - rot: 3.141592653589793 rad - pos: -48.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11249 - components: - - rot: 3.141592653589793 rad - pos: -48.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11250 - components: - - rot: 3.141592653589793 rad - pos: -46.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11251 - components: - - rot: 3.141592653589793 rad - pos: -48.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11252 - components: - - rot: 3.141592653589793 rad - pos: -46.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11253 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11254 - components: - - rot: 1.5707963267948966 rad - pos: -54.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11255 - components: - - rot: 3.141592653589793 rad - pos: -54.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11256 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11257 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11259 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11260 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11261 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11262 - components: - - pos: -50.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11263 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11264 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11265 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11273 - components: - - rot: 3.141592653589793 rad - pos: -51.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11275 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11276 - components: - - pos: -48.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11277 - components: - - pos: -48.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11281 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11282 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11283 - components: - - rot: 3.141592653589793 rad - pos: -47.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11284 - components: - - rot: 3.141592653589793 rad - pos: -47.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11285 - components: - - rot: 3.141592653589793 rad - pos: -48.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11286 - components: - - rot: 3.141592653589793 rad - pos: -47.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11289 - components: - - rot: -1.5707963267948966 rad - pos: -48.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11290 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11291 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11292 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11295 - components: - - rot: -1.5707963267948966 rad - pos: -51.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11296 - components: - - rot: 3.141592653589793 rad - pos: -51.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11297 - components: - - rot: 3.141592653589793 rad - pos: -51.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11298 - components: - - rot: 3.141592653589793 rad - pos: -50.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11299 - components: - - rot: 3.141592653589793 rad - pos: -51.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11300 - components: - - rot: 3.141592653589793 rad - pos: -50.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11301 - components: - - rot: 3.141592653589793 rad - pos: -51.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11302 - components: - - rot: 3.141592653589793 rad - pos: -50.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11307 - components: - - rot: 3.141592653589793 rad - pos: -51.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11309 - components: - - rot: 3.141592653589793 rad - pos: -50.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11310 - components: - - rot: 3.141592653589793 rad - pos: -50.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11311 - components: - - rot: 3.141592653589793 rad - pos: -50.5,35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11313 - components: - - rot: 3.141592653589793 rad - pos: -52.5,36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11314 - components: - - rot: 3.141592653589793 rad - pos: -52.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11315 - components: - - rot: 3.141592653589793 rad - pos: -52.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11316 - components: - - rot: 3.141592653589793 rad - pos: -52.5,39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11489 - components: - - rot: -1.5707963267948966 rad - pos: -58.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11520 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11521 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11522 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11523 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11524 - components: - - rot: -1.5707963267948966 rad - pos: -43.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11525 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11526 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11527 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11528 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11529 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11530 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11531 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11535 - components: - - pos: -36.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11537 - components: - - rot: 3.141592653589793 rad - pos: -38.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11538 - components: - - rot: 3.141592653589793 rad - pos: -38.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11539 - components: - - rot: 3.141592653589793 rad - pos: -38.5,35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11540 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11541 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11542 - components: - - pos: -36.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11544 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11545 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11546 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11547 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11548 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11549 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11550 - components: - - rot: 3.141592653589793 rad - pos: -36.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11551 - components: - - rot: 3.141592653589793 rad - pos: -36.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11552 - components: - - rot: 3.141592653589793 rad - pos: -36.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11553 - components: - - rot: 3.141592653589793 rad - pos: -38.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11554 - components: - - rot: 3.141592653589793 rad - pos: -38.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11561 - components: - - rot: 3.141592653589793 rad - pos: -36.5,36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11562 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11563 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11564 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11565 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11566 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11567 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11568 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11569 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11570 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11571 - components: - - pos: -38.5,39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11572 - components: - - pos: -36.5,39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11573 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11574 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11576 - components: - - pos: -38.5,38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11577 - components: - - pos: -36.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11578 - components: - - pos: -38.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11581 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11582 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11583 - components: - - pos: -31.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11584 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11585 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11586 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11587 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11588 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11589 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11590 - components: - - rot: 3.141592653589793 rad - pos: -31.5,38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11591 - components: - - rot: 3.141592653589793 rad - pos: -32.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11609 - components: - - rot: 3.141592653589793 rad - pos: -38.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11610 - components: - - rot: 3.141592653589793 rad - pos: -36.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11611 - components: - - rot: 3.141592653589793 rad - pos: -36.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11612 - components: - - rot: 3.141592653589793 rad - pos: -36.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11613 - components: - - rot: 3.141592653589793 rad - pos: -38.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11615 - components: - - rot: 3.141592653589793 rad - pos: -38.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11617 - components: - - rot: 3.141592653589793 rad - pos: -36.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11618 - components: - - rot: 3.141592653589793 rad - pos: -36.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11619 - components: - - rot: 3.141592653589793 rad - pos: -38.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11620 - components: - - rot: 3.141592653589793 rad - pos: -38.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11621 - components: - - rot: 3.141592653589793 rad - pos: -38.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11622 - components: - - rot: 3.141592653589793 rad - pos: -38.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11623 - components: - - rot: 3.141592653589793 rad - pos: -38.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11624 - components: - - rot: 3.141592653589793 rad - pos: -38.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11625 - components: - - rot: 3.141592653589793 rad - pos: -38.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11626 - components: - - rot: 3.141592653589793 rad - pos: -38.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11627 - components: - - rot: 3.141592653589793 rad - pos: -36.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11628 - components: - - rot: 3.141592653589793 rad - pos: -36.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11629 - components: - - rot: 3.141592653589793 rad - pos: -36.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11630 - components: - - rot: 3.141592653589793 rad - pos: -36.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11631 - components: - - rot: 3.141592653589793 rad - pos: -36.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11632 - components: - - rot: 3.141592653589793 rad - pos: -36.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11633 - components: - - rot: 3.141592653589793 rad - pos: -36.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11634 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11635 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11636 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11637 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11638 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11639 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11648 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11650 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11651 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11652 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11653 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11654 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11655 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11656 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11657 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11658 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11659 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11660 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11661 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11663 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11664 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11665 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11666 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11667 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11668 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11669 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11671 - components: - - pos: -34.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11672 - components: - - pos: -34.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11673 - components: - - pos: -34.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11674 - components: - - pos: -33.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11683 - components: - - rot: -1.5707963267948966 rad - pos: -55.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11684 - components: - - rot: -1.5707963267948966 rad - pos: -55.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11685 - components: - - rot: -1.5707963267948966 rad - pos: -56.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11686 - components: - - rot: -1.5707963267948966 rad - pos: -57.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11687 - components: - - rot: 3.141592653589793 rad - pos: -58.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11688 - components: - - rot: 3.141592653589793 rad - pos: -58.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11690 - components: - - rot: 3.141592653589793 rad - pos: -58.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11691 - components: - - rot: 3.141592653589793 rad - pos: -58.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11693 - components: - - rot: 3.141592653589793 rad - pos: -56.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11694 - components: - - rot: 3.141592653589793 rad - pos: -56.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11695 - components: - - rot: 3.141592653589793 rad - pos: -56.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11696 - components: - - rot: 3.141592653589793 rad - pos: -56.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11699 - components: - - rot: 3.141592653589793 rad - pos: -56.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11708 - components: - - rot: 3.141592653589793 rad - pos: -53.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11709 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11710 - components: - - pos: -56.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11711 - components: - - pos: -56.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11712 - components: - - pos: -56.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11713 - components: - - pos: -56.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11714 - components: - - pos: -56.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11715 - components: - - pos: -58.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11716 - components: - - pos: -58.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11717 - components: - - pos: -58.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11718 - components: - - pos: -58.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11719 - components: - - pos: -58.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11720 - components: - - pos: -58.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11721 - components: - - pos: -56.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11722 - components: - - pos: -56.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11723 - components: - - pos: -58.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11724 - components: - - pos: -58.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11725 - components: - - rot: -1.5707963267948966 rad - pos: -55.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11726 - components: - - rot: -1.5707963267948966 rad - pos: -57.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11727 - components: - - rot: -1.5707963267948966 rad - pos: -56.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11728 - components: - - rot: -1.5707963267948966 rad - pos: -55.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11729 - components: - - rot: -1.5707963267948966 rad - pos: -54.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11730 - components: - - rot: 3.141592653589793 rad - pos: -58.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11731 - components: - - rot: 3.141592653589793 rad - pos: -58.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11732 - components: - - rot: 3.141592653589793 rad - pos: -56.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11733 - components: - - rot: 3.141592653589793 rad - pos: -56.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11734 - components: - - rot: 3.141592653589793 rad - pos: -56.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11735 - components: - - rot: 3.141592653589793 rad - pos: -56.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11736 - components: - - rot: 3.141592653589793 rad - pos: -58.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11737 - components: - - rot: 3.141592653589793 rad - pos: -58.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11738 - components: - - rot: 3.141592653589793 rad - pos: -58.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11739 - components: - - rot: 3.141592653589793 rad - pos: -56.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11740 - components: - - rot: 3.141592653589793 rad - pos: -56.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11741 - components: - - rot: 3.141592653589793 rad - pos: -54.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11742 - components: - - rot: 3.141592653589793 rad - pos: -54.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11743 - components: - - rot: 3.141592653589793 rad - pos: -54.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11744 - components: - - rot: 3.141592653589793 rad - pos: -53.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11745 - components: - - rot: 3.141592653589793 rad - pos: -53.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11746 - components: - - rot: 3.141592653589793 rad - pos: -53.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11762 - components: - - rot: 3.141592653589793 rad - pos: -56.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11763 - components: - - rot: 3.141592653589793 rad - pos: -56.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11765 - components: - - rot: 3.141592653589793 rad - pos: -58.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11766 - components: - - rot: 1.5707963267948966 rad - pos: -57.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11767 - components: - - rot: 1.5707963267948966 rad - pos: -56.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11768 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11769 - components: - - rot: 1.5707963267948966 rad - pos: -54.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11770 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11771 - components: - - rot: 1.5707963267948966 rad - pos: -54.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11772 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11773 - components: - - pos: -56.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11774 - components: - - pos: -56.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11775 - components: - - pos: -56.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11776 - components: - - pos: -58.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11777 - components: - - pos: -58.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11778 - components: - - pos: -58.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11779 - components: - - pos: -58.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11780 - components: - - rot: -1.5707963267948966 rad - pos: -57.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11781 - components: - - rot: -1.5707963267948966 rad - pos: -58.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11782 - components: - - rot: -1.5707963267948966 rad - pos: -59.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11783 - components: - - rot: -1.5707963267948966 rad - pos: -60.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11784 - components: - - rot: -1.5707963267948966 rad - pos: -61.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11785 - components: - - rot: -1.5707963267948966 rad - pos: -59.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11786 - components: - - rot: -1.5707963267948966 rad - pos: -60.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11787 - components: - - rot: -1.5707963267948966 rad - pos: -61.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11791 - components: - - rot: 1.5707963267948966 rad - pos: -62.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11792 - components: - - rot: 1.5707963267948966 rad - pos: -63.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11793 - components: - - rot: 1.5707963267948966 rad - pos: -64.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11794 - components: - - rot: 1.5707963267948966 rad - pos: -65.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11795 - components: - - rot: 1.5707963267948966 rad - pos: -66.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11796 - components: - - rot: 1.5707963267948966 rad - pos: -62.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11797 - components: - - rot: 1.5707963267948966 rad - pos: -63.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11798 - components: - - rot: 1.5707963267948966 rad - pos: -64.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11799 - components: - - rot: 1.5707963267948966 rad - pos: -65.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11800 - components: - - rot: 1.5707963267948966 rad - pos: -67.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11801 - components: - - rot: 1.5707963267948966 rad - pos: -68.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11802 - components: - - rot: 1.5707963267948966 rad - pos: -69.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11803 - components: - - rot: 1.5707963267948966 rad - pos: -70.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11804 - components: - - rot: 1.5707963267948966 rad - pos: -71.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11805 - components: - - rot: 1.5707963267948966 rad - pos: -68.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11806 - components: - - rot: 1.5707963267948966 rad - pos: -69.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11807 - components: - - rot: 1.5707963267948966 rad - pos: -70.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11808 - components: - - rot: 1.5707963267948966 rad - pos: -71.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11809 - components: - - rot: 1.5707963267948966 rad - pos: -72.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11810 - components: - - rot: 1.5707963267948966 rad - pos: -72.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11822 - components: - - pos: -58.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11823 - components: - - pos: -58.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11824 - components: - - pos: -56.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11825 - components: - - pos: -56.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11826 - components: - - pos: -56.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11827 - components: - - pos: -58.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11828 - components: - - pos: -58.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11829 - components: - - pos: -58.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11830 - components: - - pos: -58.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11831 - components: - - pos: -56.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11832 - components: - - pos: -56.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11833 - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11834 - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11835 - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11836 - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11837 - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11838 - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11839 - components: - - rot: 3.141592653589793 rad - pos: -56.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11844 - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11845 - components: - - rot: 3.141592653589793 rad - pos: -58.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11846 - components: - - rot: 3.141592653589793 rad - pos: -56.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11847 - components: - - rot: 3.141592653589793 rad - pos: -56.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11848 - components: - - rot: 3.141592653589793 rad - pos: -58.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11890 - components: - - rot: -1.5707963267948966 rad - pos: -52.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11891 - components: - - rot: -1.5707963267948966 rad - pos: -51.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11892 - components: - - rot: -1.5707963267948966 rad - pos: -53.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11893 - components: - - rot: -1.5707963267948966 rad - pos: -52.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11922 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11923 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11924 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11927 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11928 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11929 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11930 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11931 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11932 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11933 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11935 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11936 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11937 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11938 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11939 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11942 - components: - - rot: 3.141592653589793 rad - pos: -40.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11943 - components: - - rot: 3.141592653589793 rad - pos: -40.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11944 - components: - - rot: 3.141592653589793 rad - pos: -40.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11945 - components: - - rot: 3.141592653589793 rad - pos: -40.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11946 - components: - - rot: 3.141592653589793 rad - pos: -41.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11947 - components: - - rot: 3.141592653589793 rad - pos: -41.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11950 - components: - - pos: -41.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11951 - components: - - pos: -41.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11953 - components: - - pos: -40.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11956 - components: - - pos: -41.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11957 - components: - - pos: -41.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11958 - components: - - pos: -40.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11959 - components: - - pos: -41.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11960 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11962 - components: - - pos: -40.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11963 - components: - - pos: -40.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11964 - components: - - rot: 3.141592653589793 rad - pos: -41.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11965 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11966 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11967 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11976 - components: - - rot: 3.141592653589793 rad - pos: -44.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11977 - components: - - rot: 3.141592653589793 rad - pos: -44.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11978 - components: - - rot: 3.141592653589793 rad - pos: -44.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11979 - components: - - rot: 3.141592653589793 rad - pos: -43.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11980 - components: - - rot: 3.141592653589793 rad - pos: -43.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11981 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11982 - components: - - pos: -43.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11983 - components: - - pos: -43.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11984 - components: - - pos: -43.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11985 - components: - - pos: -44.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11986 - components: - - pos: -44.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11987 - components: - - pos: -44.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11988 - components: - - pos: -43.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11989 - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11990 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11991 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11992 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11993 - components: - - rot: 3.141592653589793 rad - pos: -40.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12004 - components: - - pos: -37.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12005 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12006 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12007 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12008 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12010 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12011 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12012 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12013 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12014 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12019 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12021 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12040 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12041 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12042 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12043 - components: - - pos: -38.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12044 - components: - - pos: -38.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12045 - components: - - pos: -38.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12046 - components: - - pos: -38.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12047 - components: - - pos: -38.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12048 - components: - - pos: -38.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12049 - components: - - pos: -38.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12050 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12051 - components: - - rot: 3.141592653589793 rad - pos: -38.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12054 - components: - - rot: 3.141592653589793 rad - pos: -36.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12055 - components: - - rot: 3.141592653589793 rad - pos: -36.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12056 - components: - - rot: 3.141592653589793 rad - pos: -36.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12057 - components: - - rot: 3.141592653589793 rad - pos: -36.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12058 - components: - - rot: 3.141592653589793 rad - pos: -36.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12059 - components: - - rot: 3.141592653589793 rad - pos: -36.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12060 - components: - - rot: 3.141592653589793 rad - pos: -36.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12061 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12062 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12065 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12066 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12067 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12068 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12069 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12070 - components: - - pos: -32.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12071 - components: - - pos: -32.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12072 - components: - - pos: -32.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12073 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12074 - components: - - rot: 3.141592653589793 rad - pos: -33.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12075 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12076 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12081 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12082 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12083 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12084 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12085 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12086 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12087 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12088 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12089 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12090 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12091 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12092 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12095 - components: - - rot: 3.141592653589793 rad - pos: -25.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12096 - components: - - rot: 3.141592653589793 rad - pos: -25.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12097 - components: - - rot: 3.141592653589793 rad - pos: -25.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12098 - components: - - rot: 3.141592653589793 rad - pos: -25.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12099 - components: - - rot: 3.141592653589793 rad - pos: -23.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12102 - components: - - rot: 3.141592653589793 rad - pos: -23.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12103 - components: - - rot: 3.141592653589793 rad - pos: -23.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12104 - components: - - rot: 3.141592653589793 rad - pos: -25.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12105 - components: - - rot: 3.141592653589793 rad - pos: -23.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12108 - components: - - rot: 3.141592653589793 rad - pos: -25.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12109 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12110 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12111 - components: - - pos: -25.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12112 - components: - - pos: -25.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12113 - components: - - pos: -25.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12114 - components: - - pos: -23.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12115 - components: - - pos: -23.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12116 - components: - - pos: -23.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12117 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12118 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12119 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12120 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12121 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12122 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12123 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12124 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12125 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12126 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12134 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12135 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12136 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12137 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12138 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12141 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12142 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12143 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12144 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12145 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12146 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12147 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12148 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12149 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12150 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12151 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12152 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12153 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12154 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12155 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12156 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12157 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12158 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12159 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12160 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12161 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12162 - components: - - rot: 3.141592653589793 rad - pos: -22.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12163 - components: - - rot: 3.141592653589793 rad - pos: -22.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12164 - components: - - rot: 3.141592653589793 rad - pos: -22.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12165 - components: - - rot: 3.141592653589793 rad - pos: -22.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12166 - components: - - rot: 3.141592653589793 rad - pos: -24.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12167 - components: - - rot: 3.141592653589793 rad - pos: -24.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12176 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12177 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12178 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12179 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12180 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12181 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12182 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12183 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12184 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12185 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12187 - components: - - rot: 3.141592653589793 rad - pos: -19.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12188 - components: - - rot: 3.141592653589793 rad - pos: -19.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12193 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12194 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12195 - components: - - pos: -17.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12196 - components: - - pos: -17.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12197 - components: - - pos: -17.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12198 - components: - - pos: -17.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12199 - components: - - pos: -15.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12200 - components: - - pos: -15.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12203 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12204 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12205 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12206 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12207 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12210 - components: - - rot: 3.141592653589793 rad - pos: -15.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12211 - components: - - rot: 3.141592653589793 rad - pos: -15.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12213 - components: - - rot: 3.141592653589793 rad - pos: -15.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12214 - components: - - rot: 3.141592653589793 rad - pos: -17.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12215 - components: - - rot: 3.141592653589793 rad - pos: -17.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12216 - components: - - rot: 3.141592653589793 rad - pos: -17.5,36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12226 - components: - - rot: 3.141592653589793 rad - pos: -17.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12227 - components: - - rot: 3.141592653589793 rad - pos: -17.5,39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12228 - components: - - rot: 3.141592653589793 rad - pos: -17.5,40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12229 - components: - - rot: 3.141592653589793 rad - pos: -17.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12230 - components: - - rot: 3.141592653589793 rad - pos: -17.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12231 - components: - - rot: 3.141592653589793 rad - pos: -17.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12232 - components: - - rot: 3.141592653589793 rad - pos: -15.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12233 - components: - - rot: 3.141592653589793 rad - pos: -15.5,39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12234 - components: - - rot: 3.141592653589793 rad - pos: -15.5,40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12235 - components: - - rot: 3.141592653589793 rad - pos: -15.5,41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12236 - components: - - rot: 3.141592653589793 rad - pos: -15.5,42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12237 - components: - - rot: 3.141592653589793 rad - pos: -15.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12238 - components: - - rot: 3.141592653589793 rad - pos: -15.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12241 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12242 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12243 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12244 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12245 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12246 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12248 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12249 - components: - - rot: 3.141592653589793 rad - pos: -20.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12250 - components: - - rot: 3.141592653589793 rad - pos: -20.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12251 - components: - - rot: 3.141592653589793 rad - pos: -20.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12252 - components: - - rot: 3.141592653589793 rad - pos: -20.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12253 - components: - - rot: 3.141592653589793 rad - pos: -20.5,40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12254 - components: - - rot: 3.141592653589793 rad - pos: -17.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12264 - components: - - pos: -15.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12265 - components: - - pos: -17.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12266 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12267 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12268 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12269 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12270 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12271 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12274 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12275 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12276 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12277 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12278 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12279 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12280 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12281 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12282 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12283 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12284 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12285 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12286 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12287 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12288 - components: - - rot: 3.141592653589793 rad - pos: -13.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12289 - components: - - rot: 3.141592653589793 rad - pos: -13.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12290 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12291 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12292 - components: - - pos: -11.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12293 - components: - - pos: -11.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12300 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12301 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12302 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12303 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12304 - components: - - rot: 3.141592653589793 rad - pos: -11.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12305 - components: - - rot: 3.141592653589793 rad - pos: -11.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12306 - components: - - rot: 3.141592653589793 rad - pos: -13.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12307 - components: - - rot: 3.141592653589793 rad - pos: -13.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12308 - components: - - rot: 3.141592653589793 rad - pos: -11.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12309 - components: - - rot: 3.141592653589793 rad - pos: -13.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12312 - components: - - pos: -11.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12313 - components: - - pos: -11.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12314 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12315 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12316 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12317 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12318 - components: - - rot: 3.141592653589793 rad - pos: -13.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12322 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12325 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12326 - components: - - rot: 3.141592653589793 rad - pos: -8.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12327 - components: - - rot: 3.141592653589793 rad - pos: -9.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12328 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12329 - components: - - rot: 3.141592653589793 rad - pos: -8.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12330 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12335 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12336 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12337 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12338 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12339 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12340 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12342 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12343 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12344 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12345 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12346 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12347 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12348 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12350 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12351 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12356 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12357 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12358 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12359 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12360 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12361 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12362 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12363 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12364 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12365 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12369 - components: - - pos: -15.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12374 - components: - - pos: -16.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12375 - components: - - pos: -16.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12376 - components: - - pos: -17.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12377 - components: - - pos: -17.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12378 - components: - - pos: -2.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12380 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12382 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12385 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12386 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12387 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12388 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12389 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12390 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12391 - components: - - pos: -1.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12392 - components: - - pos: -1.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12393 - components: - - pos: -1.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12394 - components: - - pos: -1.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12395 - components: - - pos: -1.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12396 - components: - - pos: -1.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12397 - components: - - pos: -1.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12403 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12404 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12405 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12406 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12407 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12408 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12409 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12410 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12411 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12412 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12424 - components: - - pos: -13.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12425 - components: - - pos: -13.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12426 - components: - - pos: -11.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12428 - components: - - pos: -11.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12430 - components: - - pos: -11.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12431 - components: - - pos: -11.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12433 - components: - - pos: -13.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12434 - components: - - pos: -13.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12435 - components: - - pos: -13.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12436 - components: - - pos: -13.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12437 - components: - - pos: -13.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12438 - components: - - pos: -13.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12439 - components: - - pos: -13.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12440 - components: - - pos: -11.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12441 - components: - - pos: -11.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12442 - components: - - pos: -11.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12443 - components: - - pos: -11.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12444 - components: - - pos: -11.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12445 - components: - - pos: -11.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12446 - components: - - pos: -11.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12447 - components: - - pos: -11.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12448 - components: - - pos: -13.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12449 - components: - - pos: -13.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12450 - components: - - pos: -13.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12451 - components: - - pos: -13.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12452 - components: - - pos: -13.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12453 - components: - - pos: -13.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12454 - components: - - pos: -13.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12455 - components: - - pos: -13.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12456 - components: - - pos: -11.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12457 - components: - - pos: -11.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12458 - components: - - pos: -11.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12459 - components: - - pos: -11.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12460 - components: - - pos: -11.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12461 - components: - - pos: -13.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12462 - components: - - pos: -13.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12463 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12464 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12465 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12466 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12467 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12468 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12469 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12470 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12471 - components: - - rot: 3.141592653589793 rad - pos: -7.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12472 - components: - - rot: 3.141592653589793 rad - pos: -7.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12473 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12474 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12477 - components: - - rot: 3.141592653589793 rad - pos: -8.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12478 - components: - - rot: 3.141592653589793 rad - pos: -7.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12479 - components: - - rot: 3.141592653589793 rad - pos: -7.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12480 - components: - - rot: 3.141592653589793 rad - pos: -8.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12489 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12490 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12491 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12492 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12493 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12494 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12495 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12496 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12497 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12498 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12499 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12500 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12511 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12519 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12520 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12521 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12522 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12523 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12524 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12525 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12526 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12527 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12528 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12529 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12531 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12532 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12533 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12534 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12535 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12536 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12537 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12539 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12540 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12541 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12542 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12543 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12544 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12545 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12546 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12547 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12548 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12549 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12550 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12551 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12552 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12553 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12555 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12556 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12557 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12558 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12559 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12560 - components: - - pos: 10.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12561 - components: - - pos: 10.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12562 - components: - - pos: 10.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12563 - components: - - pos: 10.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12564 - components: - - pos: 11.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12565 - components: - - pos: 11.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12568 - components: - - pos: 10.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12571 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12572 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12573 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12574 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12575 - components: - - rot: 3.141592653589793 rad - pos: 10.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12576 - components: - - rot: 3.141592653589793 rad - pos: 11.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12577 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12578 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12579 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12580 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12581 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12590 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12591 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12592 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12594 - components: - - rot: 3.141592653589793 rad - pos: 15.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12597 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12598 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12599 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12600 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12601 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12602 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12603 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12604 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12613 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12614 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12617 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12618 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12619 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12620 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12621 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12622 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12623 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12624 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12625 - components: - - pos: 17.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12626 - components: - - pos: 17.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12627 - components: - - pos: 17.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12628 - components: - - pos: 17.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12629 - components: - - pos: 19.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12630 - components: - - pos: 19.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12631 - components: - - pos: 19.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12632 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12633 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12634 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12637 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12638 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12639 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12640 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12641 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12642 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12643 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12644 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12646 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12648 - components: - - pos: 26.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12649 - components: - - pos: 26.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12650 - components: - - pos: 25.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12660 - components: - - rot: 3.141592653589793 rad - pos: 27.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12661 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12664 - components: - - pos: 26.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12671 - components: - - pos: 26.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12672 - components: - - pos: 26.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12673 - components: - - pos: 26.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12674 - components: - - pos: 26.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12675 - components: - - pos: 26.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12676 - components: - - pos: 26.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12677 - components: - - pos: 26.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12678 - components: - - pos: 26.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12679 - components: - - pos: 26.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12680 - components: - - pos: 26.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12681 - components: - - pos: 27.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12682 - components: - - pos: 27.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12683 - components: - - pos: 27.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12684 - components: - - pos: 27.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12685 - components: - - pos: 27.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12686 - components: - - pos: 27.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12687 - components: - - pos: 27.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12688 - components: - - pos: 27.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12689 - components: - - pos: 27.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12690 - components: - - pos: 27.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12691 - components: - - pos: 27.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12692 - components: - - pos: 27.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12693 - components: - - pos: 27.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12694 - components: - - pos: 27.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12695 - components: - - pos: 27.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12696 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12697 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12698 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12699 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12700 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12701 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12702 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12703 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12704 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12705 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12706 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12707 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12718 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12719 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12722 - components: - - rot: 3.141592653589793 rad - pos: -3.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12723 - components: - - rot: 3.141592653589793 rad - pos: -3.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12724 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12725 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12730 - components: - - rot: 3.141592653589793 rad - pos: -1.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12731 - components: - - rot: 3.141592653589793 rad - pos: -1.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12732 - components: - - rot: 3.141592653589793 rad - pos: -1.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12733 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12734 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12738 - components: - - rot: 3.141592653589793 rad - pos: 10.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12739 - components: - - rot: 3.141592653589793 rad - pos: 9.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12740 - components: - - rot: 3.141592653589793 rad - pos: 10.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12741 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12742 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12744 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12745 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12746 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12749 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12750 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12753 - components: - - pos: 8.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12754 - components: - - pos: 8.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12755 - components: - - pos: 6.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12756 - components: - - pos: 6.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12757 - components: - - pos: 11.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12758 - components: - - pos: 11.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12852 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12853 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12854 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12855 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12856 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12857 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12960 - components: - - pos: -17.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12961 - components: - - pos: -17.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12962 - components: - - pos: -17.5,51.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12963 - components: - - pos: -17.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12964 - components: - - pos: -17.5,53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12965 - components: - - pos: -15.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12966 - components: - - pos: -15.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12967 - components: - - pos: -15.5,51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12968 - components: - - pos: -15.5,52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12969 - components: - - pos: -15.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12972 - components: - - pos: -15.5,54.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12973 - components: - - pos: -17.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12975 - components: - - pos: -15.5,56.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12977 - components: - - rot: 3.141592653589793 rad - pos: -17.5,57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12978 - components: - - rot: 3.141592653589793 rad - pos: -17.5,58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12979 - components: - - rot: 3.141592653589793 rad - pos: -15.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12982 - components: - - rot: 3.141592653589793 rad - pos: -15.5,59.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12983 - components: - - rot: 3.141592653589793 rad - pos: -17.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12984 - components: - - rot: 3.141592653589793 rad - pos: -17.5,61.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12985 - components: - - rot: 3.141592653589793 rad - pos: -17.5,62.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12986 - components: - - rot: 3.141592653589793 rad - pos: -15.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12987 - components: - - rot: 3.141592653589793 rad - pos: -15.5,62.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12988 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12989 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12990 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12991 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12992 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12993 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12994 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12995 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12996 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12997 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12998 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12999 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13000 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 13001 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13002 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13003 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13009 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 13017 - components: - - pos: -12.5,54.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 13018 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13019 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13020 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13021 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13022 - components: - - rot: 3.141592653589793 rad - pos: -7.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13023 - components: - - rot: 3.141592653589793 rad - pos: -7.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13024 - components: - - rot: 3.141592653589793 rad - pos: -7.5,57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13025 - components: - - rot: 3.141592653589793 rad - pos: -7.5,58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13026 - components: - - rot: 3.141592653589793 rad - pos: -7.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13027 - components: - - rot: 3.141592653589793 rad - pos: -8.5,56.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 13028 - components: - - rot: 3.141592653589793 rad - pos: -8.5,57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 13029 - components: - - rot: 3.141592653589793 rad - pos: -8.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13030 - components: - - rot: 3.141592653589793 rad - pos: -8.5,59.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 13639 - components: - - rot: 1.5707963267948966 rad - pos: -89.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13640 - components: - - rot: 1.5707963267948966 rad - pos: -88.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13641 - components: - - rot: 1.5707963267948966 rad - pos: -87.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13642 - components: - - rot: 1.5707963267948966 rad - pos: -86.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13643 - components: - - rot: 1.5707963267948966 rad - pos: -85.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13644 - components: - - rot: 1.5707963267948966 rad - pos: -87.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13645 - components: - - rot: 1.5707963267948966 rad - pos: -86.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13646 - components: - - rot: 1.5707963267948966 rad - pos: -85.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13647 - components: - - rot: 1.5707963267948966 rad - pos: -87.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13648 - components: - - rot: 1.5707963267948966 rad - pos: -86.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13649 - components: - - rot: 1.5707963267948966 rad - pos: -85.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13650 - components: - - rot: 1.5707963267948966 rad - pos: -89.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13651 - components: - - rot: 1.5707963267948966 rad - pos: -88.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13652 - components: - - rot: 1.5707963267948966 rad - pos: -87.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13653 - components: - - rot: 1.5707963267948966 rad - pos: -86.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13654 - components: - - rot: 1.5707963267948966 rad - pos: -85.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13656 - components: - - rot: 1.5707963267948966 rad - pos: -87.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13668 - components: - - rot: 1.5707963267948966 rad - pos: -86.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13670 - components: - - rot: 1.5707963267948966 rad - pos: -85.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13677 - components: - - rot: 1.5707963267948966 rad - pos: -89.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13678 - components: - - rot: 1.5707963267948966 rad - pos: -88.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13679 - components: - - rot: 1.5707963267948966 rad - pos: -87.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13680 - components: - - rot: 1.5707963267948966 rad - pos: -86.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13681 - components: - - rot: 1.5707963267948966 rad - pos: -85.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13685 - components: - - rot: 1.5707963267948966 rad - pos: -87.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13686 - components: - - rot: 1.5707963267948966 rad - pos: -86.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13687 - components: - - rot: 1.5707963267948966 rad - pos: -85.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13688 - components: - - rot: 1.5707963267948966 rad - pos: -89.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13689 - components: - - rot: 1.5707963267948966 rad - pos: -88.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13690 - components: - - rot: 1.5707963267948966 rad - pos: -87.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13691 - components: - - rot: 1.5707963267948966 rad - pos: -86.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13692 - components: - - rot: 1.5707963267948966 rad - pos: -85.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13693 - components: - - rot: 1.5707963267948966 rad - pos: -87.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13694 - components: - - rot: 1.5707963267948966 rad - pos: -86.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13695 - components: - - rot: 1.5707963267948966 rad - pos: -85.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13696 - components: - - rot: 1.5707963267948966 rad - pos: -89.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13697 - components: - - rot: 1.5707963267948966 rad - pos: -88.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13698 - components: - - rot: 1.5707963267948966 rad - pos: -87.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13702 - components: - - rot: 1.5707963267948966 rad - pos: -86.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13703 - components: - - rot: 1.5707963267948966 rad - pos: -85.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13711 - components: - - rot: 1.5707963267948966 rad - pos: -87.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13712 - components: - - rot: 1.5707963267948966 rad - pos: -86.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13713 - components: - - rot: 1.5707963267948966 rad - pos: -85.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13714 - components: - - rot: 1.5707963267948966 rad - pos: -89.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13715 - components: - - rot: 1.5707963267948966 rad - pos: -88.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13716 - components: - - rot: 1.5707963267948966 rad - pos: -87.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13717 - components: - - rot: 1.5707963267948966 rad - pos: -86.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13718 - components: - - rot: 1.5707963267948966 rad - pos: -85.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13779 - components: - - pos: -84.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13857 - components: - - rot: 3.141592653589793 rad - pos: -84.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13864 - components: - - rot: 3.141592653589793 rad - pos: -83.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13865 - components: - - rot: 3.141592653589793 rad - pos: -83.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13866 - components: - - rot: 3.141592653589793 rad - pos: -81.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13867 - components: - - rot: 3.141592653589793 rad - pos: -81.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13868 - components: - - rot: 3.141592653589793 rad - pos: -81.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13915 - components: - - rot: -1.5707963267948966 rad - pos: -85.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13936 - components: - - rot: -1.5707963267948966 rad - pos: -76.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13937 - components: - - rot: -1.5707963267948966 rad - pos: -77.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13938 - components: - - rot: -1.5707963267948966 rad - pos: -75.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13939 - components: - - rot: -1.5707963267948966 rad - pos: -75.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 13940 - components: - - rot: -1.5707963267948966 rad - pos: -74.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13942 - components: - - rot: 3.141592653589793 rad - pos: -77.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13943 - components: - - rot: 3.141592653589793 rad - pos: -76.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 13944 - components: - - rot: 3.141592653589793 rad - pos: -77.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13945 - components: - - rot: 1.5707963267948966 rad - pos: -57.5,41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13946 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13947 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13948 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13949 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13952 - components: - - rot: 1.5707963267948966 rad - pos: -60.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13953 - components: - - pos: -61.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 13954 - components: - - rot: -1.5707963267948966 rad - pos: -61.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13955 - components: - - rot: -1.5707963267948966 rad - pos: -60.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13956 - components: - - rot: 3.141592653589793 rad - pos: -62.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13957 - components: - - rot: 3.141592653589793 rad - pos: -62.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13958 - components: - - rot: 3.141592653589793 rad - pos: -61.5,42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 13959 - components: - - rot: 3.141592653589793 rad - pos: -62.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13960 - components: - - rot: 3.141592653589793 rad - pos: -61.5,41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 13965 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13966 - components: - - rot: 1.5707963267948966 rad - pos: -60.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13967 - components: - - rot: 1.5707963267948966 rad - pos: -61.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13968 - components: - - rot: 1.5707963267948966 rad - pos: -62.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13969 - components: - - rot: 1.5707963267948966 rad - pos: -63.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13970 - components: - - rot: 1.5707963267948966 rad - pos: -64.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13971 - components: - - pos: -66.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13973 - components: - - rot: 1.5707963267948966 rad - pos: -67.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13974 - components: - - rot: 1.5707963267948966 rad - pos: -68.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13975 - components: - - rot: 1.5707963267948966 rad - pos: -69.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13976 - components: - - pos: -66.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13977 - components: - - rot: 1.5707963267948966 rad - pos: -65.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13978 - components: - - pos: -67.5,51.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13979 - components: - - rot: -1.5707963267948966 rad - pos: -68.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13980 - components: - - rot: -1.5707963267948966 rad - pos: -69.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13986 - components: - - pos: -61.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13987 - components: - - pos: -61.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 13988 - components: - - rot: -1.5707963267948966 rad - pos: -62.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13989 - components: - - rot: -1.5707963267948966 rad - pos: -63.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 13990 - components: - - rot: -1.5707963267948966 rad - pos: -64.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13991 - components: - - rot: -1.5707963267948966 rad - pos: -65.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 13992 - components: - - rot: -1.5707963267948966 rad - pos: -66.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13993 - components: - - rot: -1.5707963267948966 rad - pos: -67.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13994 - components: - - rot: -1.5707963267948966 rad - pos: -68.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13995 - components: - - rot: -1.5707963267948966 rad - pos: -69.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14013 - components: - - pos: -73.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14014 - components: - - pos: -73.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14015 - components: - - pos: -73.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14016 - components: - - pos: -73.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14017 - components: - - pos: -74.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14018 - components: - - pos: -74.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14019 - components: - - pos: -74.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14020 - components: - - rot: -1.5707963267948966 rad - pos: -73.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14025 - components: - - rot: 1.5707963267948966 rad - pos: -72.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14026 - components: - - rot: 1.5707963267948966 rad - pos: -71.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14027 - components: - - pos: -70.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14028 - components: - - rot: -1.5707963267948966 rad - pos: -70.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14032 - components: - - rot: 3.141592653589793 rad - pos: -70.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14033 - components: - - rot: 3.141592653589793 rad - pos: -70.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14034 - components: - - rot: 3.141592653589793 rad - pos: -70.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14035 - components: - - rot: 1.5707963267948966 rad - pos: -69.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14036 - components: - - rot: 1.5707963267948966 rad - pos: -68.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14056 - components: - - pos: -74.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14057 - components: - - pos: -74.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14058 - components: - - pos: -74.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14059 - components: - - pos: -74.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14060 - components: - - pos: -73.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14061 - components: - - pos: -73.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14062 - components: - - pos: -73.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14063 - components: - - pos: -73.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14064 - components: - - pos: -73.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14065 - components: - - pos: -74.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14066 - components: - - pos: -74.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14067 - components: - - pos: -74.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14068 - components: - - pos: -73.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14069 - components: - - pos: -73.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14070 - components: - - rot: -1.5707963267948966 rad - pos: -73.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14071 - components: - - pos: -73.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14072 - components: - - pos: -73.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14073 - components: - - pos: -73.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14074 - components: - - rot: -1.5707963267948966 rad - pos: -72.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14075 - components: - - rot: -1.5707963267948966 rad - pos: -72.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14076 - components: - - rot: -1.5707963267948966 rad - pos: -74.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14077 - components: - - rot: -1.5707963267948966 rad - pos: -75.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14078 - components: - - rot: -1.5707963267948966 rad - pos: -75.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14079 - components: - - rot: 3.141592653589793 rad - pos: -74.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14080 - components: - - rot: 3.141592653589793 rad - pos: -74.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14081 - components: - - rot: 3.141592653589793 rad - pos: -74.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14082 - components: - - rot: 3.141592653589793 rad - pos: -74.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14083 - components: - - rot: 1.5707963267948966 rad - pos: -73.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14084 - components: - - rot: 1.5707963267948966 rad - pos: -72.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14085 - components: - - rot: 1.5707963267948966 rad - pos: -72.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14088 - components: - - rot: 3.141592653589793 rad - pos: -70.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14089 - components: - - rot: -1.5707963267948966 rad - pos: -70.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14090 - components: - - rot: -1.5707963267948966 rad - pos: -69.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14091 - components: - - rot: -1.5707963267948966 rad - pos: -68.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14092 - components: - - rot: -1.5707963267948966 rad - pos: -67.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14093 - components: - - rot: -1.5707963267948966 rad - pos: -69.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14094 - components: - - rot: -1.5707963267948966 rad - pos: -68.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14095 - components: - - rot: -1.5707963267948966 rad - pos: -67.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14096 - components: - - rot: -1.5707963267948966 rad - pos: -71.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14097 - components: - - rot: 3.141592653589793 rad - pos: -71.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14098 - components: - - rot: -1.5707963267948966 rad - pos: -70.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14099 - components: - - rot: -1.5707963267948966 rad - pos: -69.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14100 - components: - - rot: -1.5707963267948966 rad - pos: -68.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14101 - components: - - rot: -1.5707963267948966 rad - pos: -67.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14102 - components: - - rot: -1.5707963267948966 rad - pos: -69.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14103 - components: - - rot: -1.5707963267948966 rad - pos: -68.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14104 - components: - - rot: -1.5707963267948966 rad - pos: -67.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14105 - components: - - rot: 3.141592653589793 rad - pos: -71.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14117 - components: - - rot: -1.5707963267948966 rad - pos: -67.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14118 - components: - - rot: -1.5707963267948966 rad - pos: -66.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14119 - components: - - rot: -1.5707963267948966 rad - pos: -65.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14120 - components: - - rot: -1.5707963267948966 rad - pos: -67.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14121 - components: - - rot: -1.5707963267948966 rad - pos: -66.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14122 - components: - - rot: -1.5707963267948966 rad - pos: -65.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14123 - components: - - rot: -1.5707963267948966 rad - pos: -64.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14124 - components: - - rot: 3.141592653589793 rad - pos: -63.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14125 - components: - - rot: 3.141592653589793 rad - pos: -64.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14126 - components: - - rot: 3.141592653589793 rad - pos: -64.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14127 - components: - - rot: 3.141592653589793 rad - pos: -63.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14128 - components: - - rot: 3.141592653589793 rad - pos: -63.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14129 - components: - - rot: 3.141592653589793 rad - pos: -64.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14130 - components: - - rot: 3.141592653589793 rad - pos: -63.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14131 - components: - - rot: 3.141592653589793 rad - pos: -63.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14132 - components: - - rot: 1.5707963267948966 rad - pos: -64.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14139 - components: - - rot: 1.5707963267948966 rad - pos: -63.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14140 - components: - - rot: 1.5707963267948966 rad - pos: -62.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14142 - components: - - rot: 1.5707963267948966 rad - pos: -60.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14143 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14144 - components: - - rot: 1.5707963267948966 rad - pos: -62.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14145 - components: - - rot: 1.5707963267948966 rad - pos: -61.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14147 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14150 - components: - - rot: 1.5707963267948966 rad - pos: -76.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14151 - components: - - rot: 1.5707963267948966 rad - pos: -77.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14152 - components: - - rot: 1.5707963267948966 rad - pos: -78.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14153 - components: - - rot: 1.5707963267948966 rad - pos: -79.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14154 - components: - - rot: 1.5707963267948966 rad - pos: -76.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14155 - components: - - rot: 1.5707963267948966 rad - pos: -77.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14156 - components: - - rot: 1.5707963267948966 rad - pos: -78.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14157 - components: - - rot: 1.5707963267948966 rad - pos: -79.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14162 - components: - - rot: 3.141592653589793 rad - pos: -61.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14205 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15864 - components: - - pos: 7.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- proto: GasPipeTJunction - entities: - - uid: 1778 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2256 - components: - - rot: 3.141592653589793 rad - pos: -0.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2257 - components: - - rot: 3.141592653589793 rad - pos: 0.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 2394 - components: - - rot: 3.141592653589793 rad - pos: 7.5,35.5 - parent: 1 - type: Transform - - uid: 2411 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2416 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2418 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2421 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2422 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2423 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2424 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2425 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2459 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2461 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2485 - components: - - rot: 3.141592653589793 rad - pos: 8.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2486 - components: - - rot: 3.141592653589793 rad - pos: 9.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2683 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2684 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2686 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2863 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3001 - components: - - pos: 3.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 3002 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3558 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 3706 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3708 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4782 - components: - - pos: -64.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 4784 - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4805 - components: - - pos: -65.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 7846 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8691 - components: - - pos: -48.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8698 - components: - - pos: -50.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8699 - components: - - pos: -53.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8700 - components: - - pos: -56.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8702 - components: - - rot: 3.141592653589793 rad - pos: -52.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8704 - components: - - rot: 3.141592653589793 rad - pos: -55.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8722 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,56.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8724 - components: - - rot: 3.141592653589793 rad - pos: -56.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8727 - components: - - rot: 3.141592653589793 rad - pos: -53.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8733 - components: - - pos: -54.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8734 - components: - - pos: -51.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8735 - components: - - pos: -57.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8736 - components: - - rot: 3.141592653589793 rad - pos: -50.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8782 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8783 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,64.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8784 - components: - - rot: 3.141592653589793 rad - pos: -55.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8785 - components: - - rot: 3.141592653589793 rad - pos: -54.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8787 - components: - - rot: 3.141592653589793 rad - pos: -58.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8788 - components: - - rot: 3.141592653589793 rad - pos: -59.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8793 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8814 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,67.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8817 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,62.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8850 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,80.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8911 - components: - - rot: 3.141592653589793 rad - pos: -54.5,83.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8912 - components: - - pos: -55.5,84.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8913 - components: - - pos: -55.5,89.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8914 - components: - - rot: 3.141592653589793 rad - pos: -54.5,88.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8915 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,83.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8916 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,84.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8917 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,85.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8918 - components: - - rot: -1.5707963267948966 rad - pos: -52.5,84.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10050 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10083 - components: - - rot: 3.141592653589793 rad - pos: 6.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10084 - components: - - pos: 7.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10231 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10244 - components: - - pos: -39.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10306 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10308 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10953 - components: - - rot: -1.5707963267948966 rad - pos: -57.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10954 - components: - - rot: -1.5707963267948966 rad - pos: -56.5,41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11086 - components: - - rot: -1.5707963267948966 rad - pos: -57.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11093 - components: - - rot: -1.5707963267948966 rad - pos: -56.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11094 - components: - - rot: -1.5707963267948966 rad - pos: -56.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11095 - components: - - rot: -1.5707963267948966 rad - pos: -57.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11096 - components: - - rot: -1.5707963267948966 rad - pos: -57.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11103 - components: - - rot: 3.141592653589793 rad - pos: -58.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11125 - components: - - pos: -57.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11134 - components: - - pos: -52.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11137 - components: - - rot: 3.141592653589793 rad - pos: -53.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11147 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11156 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11167 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11168 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11169 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11184 - components: - - pos: -42.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11185 - components: - - rot: 3.141592653589793 rad - pos: -40.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11211 - components: - - pos: -36.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11212 - components: - - pos: -35.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11223 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11224 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11258 - components: - - rot: 3.141592653589793 rad - pos: -54.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11266 - components: - - rot: 3.141592653589793 rad - pos: -51.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11267 - components: - - rot: 3.141592653589793 rad - pos: -50.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11268 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11269 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11271 - components: - - rot: 3.141592653589793 rad - pos: -53.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11274 - components: - - rot: -1.5707963267948966 rad - pos: -47.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11280 - components: - - rot: 3.141592653589793 rad - pos: -46.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11293 - components: - - pos: -50.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11294 - components: - - pos: -51.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11308 - components: - - rot: -1.5707963267948966 rad - pos: -51.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11518 - components: - - rot: 3.141592653589793 rad - pos: -43.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11519 - components: - - pos: -42.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11536 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11543 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11579 - components: - - rot: 3.141592653589793 rad - pos: -32.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11580 - components: - - rot: 3.141592653589793 rad - pos: -31.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11601 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11602 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11603 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11604 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11605 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11606 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11607 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11608 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11614 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11616 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11662 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11670 - components: - - rot: 3.141592653589793 rad - pos: -34.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11681 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11682 - components: - - rot: 1.5707963267948966 rad - pos: -56.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11689 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11692 - components: - - rot: -1.5707963267948966 rad - pos: -56.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11700 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11701 - components: - - rot: -1.5707963267948966 rad - pos: -56.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11702 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11703 - components: - - rot: -1.5707963267948966 rad - pos: -56.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11704 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11705 - components: - - rot: 1.5707963267948966 rad - pos: -56.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11706 - components: - - rot: 3.141592653589793 rad - pos: -53.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11707 - components: - - rot: 3.141592653589793 rad - pos: -54.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11757 - components: - - rot: 3.141592653589793 rad - pos: -67.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11758 - components: - - pos: -66.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11760 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11764 - components: - - rot: -1.5707963267948966 rad - pos: -56.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11815 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11816 - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11817 - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11818 - components: - - pos: -57.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11819 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11888 - components: - - rot: 3.141592653589793 rad - pos: -49.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11889 - components: - - pos: -48.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11952 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11954 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11955 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11961 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12002 - components: - - pos: -37.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12003 - components: - - pos: -36.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12077 - components: - - pos: -33.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12078 - components: - - pos: -32.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12093 - components: - - rot: 3.141592653589793 rad - pos: -25.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12100 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12101 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12106 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12107 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12133 - components: - - rot: 3.141592653589793 rad - pos: -24.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12168 - components: - - pos: -24.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12169 - components: - - pos: -22.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12170 - components: - - rot: 3.141592653589793 rad - pos: -31.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12171 - components: - - pos: -30.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12201 - components: - - pos: -13.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12202 - components: - - pos: -11.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12208 - components: - - pos: -16.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12209 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12212 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12222 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12223 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12224 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12225 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12239 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12240 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12247 - components: - - pos: -20.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12262 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12263 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12294 - components: - - rot: 3.141592653589793 rad - pos: -17.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12295 - components: - - pos: -16.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12310 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12311 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12323 - components: - - pos: -9.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12324 - components: - - pos: -8.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12333 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12334 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12341 - components: - - pos: -15.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12366 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12367 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12368 - components: - - pos: -1.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12398 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12417 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12418 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12419 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12420 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12421 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12422 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12429 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12475 - components: - - pos: -8.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12476 - components: - - pos: -7.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12513 - components: - - pos: -6.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12514 - components: - - rot: 3.141592653589793 rad - pos: -5.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12515 - components: - - pos: 4.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12516 - components: - - rot: 3.141592653589793 rad - pos: 5.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12517 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12518 - components: - - pos: 10.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12530 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12538 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12566 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12567 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12569 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12570 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12593 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12615 - components: - - rot: 3.141592653589793 rad - pos: 19.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12616 - components: - - rot: 3.141592653589793 rad - pos: 17.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12635 - components: - - pos: 20.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12636 - components: - - rot: 3.141592653589793 rad - pos: 21.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12645 - components: - - pos: 25.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12659 - components: - - rot: 3.141592653589793 rad - pos: 27.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12662 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12663 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12665 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12666 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12667 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12668 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12669 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12670 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12720 - components: - - rot: 3.141592653589793 rad - pos: -4.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12721 - components: - - rot: 3.141592653589793 rad - pos: -3.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12737 - components: - - pos: 9.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12747 - components: - - rot: 3.141592653589793 rad - pos: 9.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12748 - components: - - pos: 8.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12974 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12976 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12980 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12981 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 13008 - components: - - pos: -12.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 13016 - components: - - pos: -11.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13546 - components: - - rot: -1.5707963267948966 rad - pos: -48.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 13905 - components: - - pos: -77.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13909 - components: - - pos: -76.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13941 - components: - - pos: -74.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 13950 - components: - - rot: 1.5707963267948966 rad - pos: -62.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13951 - components: - - rot: 1.5707963267948966 rad - pos: -61.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 13963 - components: - - rot: 1.5707963267948966 rad - pos: -61.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 13972 - components: - - rot: 3.141592653589793 rad - pos: -66.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14012 - components: - - pos: -73.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14029 - components: - - pos: -70.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14030 - components: - - pos: -69.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14031 - components: - - rot: 3.141592653589793 rad - pos: -68.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14048 - components: - - rot: 1.5707963267948966 rad - pos: -74.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14049 - components: - - rot: -1.5707963267948966 rad - pos: -73.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14050 - components: - - rot: -1.5707963267948966 rad - pos: -74.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14051 - components: - - rot: -1.5707963267948966 rad - pos: -73.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14052 - components: - - rot: 1.5707963267948966 rad - pos: -74.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14053 - components: - - rot: 1.5707963267948966 rad - pos: -73.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14086 - components: - - rot: -1.5707963267948966 rad - pos: -71.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14087 - components: - - pos: -70.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14137 - components: - - rot: 1.5707963267948966 rad - pos: -64.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 14138 - components: - - rot: 1.5707963267948966 rad - pos: -63.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14141 - components: - - rot: 3.141592653589793 rad - pos: -61.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14146 - components: - - rot: 3.141592653589793 rad - pos: -60.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- proto: GasPort - entities: - - uid: 366 - components: - - pos: 0.5,-8.5 - parent: 1 - type: Transform - - uid: 367 - components: - - pos: 2.5,-8.5 - parent: 1 - type: Transform - - uid: 1417 - components: - - pos: 12.5,37.5 - parent: 1 - type: Transform - - uid: 2398 - components: - - pos: 6.5,37.5 - parent: 1 - type: Transform - - uid: 15136 - components: - - rot: -1.5707963267948966 rad - pos: -77.5,38.5 - parent: 1 - type: Transform - - uid: 15137 - components: - - rot: -1.5707963267948966 rad - pos: -77.5,37.5 - parent: 1 - type: Transform - - uid: 15138 - components: - - rot: -1.5707963267948966 rad - pos: -77.5,36.5 - parent: 1 - type: Transform -- proto: GasPressurePump - entities: - - uid: 362 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-9.5 - parent: 1 - type: Transform - - uid: 363 - components: - - pos: 2.5,-9.5 - parent: 1 - type: Transform - - uid: 2396 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,35.5 - parent: 1 - type: Transform - - uid: 13904 - components: - - rot: -1.5707963267948966 rad - pos: -78.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 13908 - components: - - rot: 1.5707963267948966 rad - pos: -78.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15139 - components: - - rot: -1.5707963267948966 rad - pos: -78.5,36.5 - parent: 1 - type: Transform - - uid: 15140 - components: - - rot: -1.5707963267948966 rad - pos: -78.5,37.5 - parent: 1 - type: Transform - - uid: 15141 - components: - - rot: -1.5707963267948966 rad - pos: -78.5,38.5 - parent: 1 - type: Transform -- proto: GasRecyclerMachineCircuitboard - entities: - - uid: 15375 - components: - - pos: -52.478607,23.323547 - parent: 1 - type: Transform -- proto: GasThermoMachineFreezer - entities: - - uid: 2384 - components: - - pos: 7.5,36.5 - parent: 1 - type: Transform - - uid: 13921 - components: - - pos: -77.5,39.5 - parent: 1 - type: Transform - - uid: 13922 - components: - - pos: -77.5,40.5 - parent: 1 - type: Transform -- proto: GasThermoMachineHeater - entities: - - uid: 13923 - components: - - pos: -77.5,41.5 - parent: 1 - type: Transform -- proto: GasValve - entities: - - uid: 13756 - components: - - rot: -1.5707963267948966 rad - pos: -84.5,33.5 - parent: 1 - type: Transform - - open: False - type: GasValve - - enabled: False - type: AmbientSound -- proto: GasVentPump - entities: - - uid: 1331 - components: - - pos: 0.5,9.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2102 - components: - - pos: -4.5,34.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2666 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,31.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2670 - components: - - pos: 3.5,37.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2671 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,33.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2672 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,29.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2673 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,32.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 2674 - components: - - pos: 8.5,30.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 3019 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,25.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 3020 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,16.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 3021 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,22.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 3573 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 4749 - components: - - rot: 3.141592653589793 rad - pos: -58.5,-11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 4800 - components: - - rot: 3.141592653589793 rad - pos: -65.5,-11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 4802 - components: - - rot: 1.5707963267948966 rad - pos: -74.5,-10.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5688 - components: - - rot: 3.141592653589793 rad - pos: -17.5,23.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5692 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,27.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8686 - components: - - rot: 3.141592653589793 rad - pos: -47.5,54.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8697 - components: - - pos: -47.5,59.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8761 - components: - - rot: 3.141592653589793 rad - pos: -51.5,50.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8762 - components: - - rot: 3.141592653589793 rad - pos: -54.5,50.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8763 - components: - - rot: 3.141592653589793 rad - pos: -57.5,50.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8764 - components: - - rot: 3.141592653589793 rad - pos: -61.5,52.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8765 - components: - - rot: 1.5707963267948966 rad - pos: -60.5,57.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8779 - components: - - pos: -53.5,56.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8845 - components: - - rot: 1.5707963267948966 rad - pos: -60.5,60.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8846 - components: - - pos: -59.5,64.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8847 - components: - - pos: -55.5,64.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8848 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,63.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8849 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,64.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8881 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,67.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8882 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,80.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8883 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,84.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8885 - components: - - pos: -54.5,84.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8887 - components: - - rot: 3.141592653589793 rad - pos: -55.5,88.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8928 - components: - - rot: 3.141592653589793 rad - pos: -58.5,87.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8967 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,83.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10258 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10337 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10703 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-12.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10805 - components: - - pos: 6.5,20.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10955 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,42.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11119 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,38.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11124 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,33.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11145 - components: - - rot: 3.141592653589793 rad - pos: -52.5,46.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11172 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,42.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11192 - components: - - rot: 3.141592653589793 rad - pos: -42.5,42.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11208 - components: - - pos: -40.5,50.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11238 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,46.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11239 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,44.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11240 - components: - - rot: 3.141592653589793 rad - pos: -35.5,42.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11272 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,36.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11304 - components: - - rot: 3.141592653589793 rad - pos: -50.5,24.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11306 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,28.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11317 - components: - - pos: -52.5,40.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11318 - components: - - pos: -51.5,36.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11321 - components: - - pos: -53.5,33.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11557 - components: - - rot: 3.141592653589793 rad - pos: -42.5,32.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11558 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,32.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11592 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,37.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11593 - components: - - pos: -36.5,40.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11594 - components: - - pos: -32.5,39.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11595 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,37.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11640 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,28.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11641 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,20.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11642 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,12.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11647 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,24.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11676 - components: - - pos: -34.5,27.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11677 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,23.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11698 - components: - - rot: -1.5707963267948966 rad - pos: -54.5,24.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11752 - components: - - rot: -1.5707963267948966 rad - pos: -57.5,27.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11753 - components: - - rot: -1.5707963267948966 rad - pos: -57.5,17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11754 - components: - - rot: -1.5707963267948966 rad - pos: -57.5,11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11755 - components: - - rot: -1.5707963267948966 rad - pos: -52.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11756 - components: - - pos: -53.5,19.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11790 - components: - - rot: 3.141592653589793 rad - pos: -57.5,4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11813 - components: - - rot: 1.5707963267948966 rad - pos: -73.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11814 - components: - - rot: 3.141592653589793 rad - pos: -66.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11840 - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11841 - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11926 - components: - - rot: 3.141592653589793 rad - pos: -48.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11948 - components: - - pos: -41.5,9.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11968 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11969 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11996 - components: - - pos: -44.5,1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11997 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11998 - components: - - rot: 3.141592653589793 rad - pos: -44.5,-6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12016 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12063 - components: - - rot: 3.141592653589793 rad - pos: -36.5,3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12079 - components: - - rot: 3.141592653589793 rad - pos: -32.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12130 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,12.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12131 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12132 - components: - - pos: -23.5,16.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12139 - components: - - rot: 3.141592653589793 rad - pos: -23.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12172 - components: - - rot: 3.141592653589793 rad - pos: -30.5,32.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12174 - components: - - rot: 3.141592653589793 rad - pos: -22.5,28.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12218 - components: - - rot: 3.141592653589793 rad - pos: -16.5,32.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12255 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,37.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12256 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,44.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12257 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,45.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12258 - components: - - rot: 3.141592653589793 rad - pos: -20.5,39.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12273 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,47.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12296 - components: - - rot: 3.141592653589793 rad - pos: -16.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12321 - components: - - rot: 3.141592653589793 rad - pos: -11.5,0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12332 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12353 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12354 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12383 - components: - - pos: -2.5,0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12413 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12414 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-10.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12415 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-12.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12485 - components: - - rot: 3.141592653589793 rad - pos: -7.5,28.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12486 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,27.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12487 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,18.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12488 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,10.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12506 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,12.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12507 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,9.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12508 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,9.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12509 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,12.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12510 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12582 - components: - - rot: 3.141592653589793 rad - pos: -6.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12583 - components: - - rot: 3.141592653589793 rad - pos: 4.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12584 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12585 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12596 - components: - - pos: 15.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12605 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12655 - components: - - pos: 19.5,10.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12656 - components: - - rot: 3.141592653589793 rad - pos: 20.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12657 - components: - - rot: 3.141592653589793 rad - pos: 26.5,3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12658 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12708 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12709 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,10.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12710 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,12.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12711 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,16.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12712 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,18.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12713 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,20.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12714 - components: - - pos: 26.5,24.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12762 - components: - - rot: 3.141592653589793 rad - pos: 6.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12763 - components: - - rot: 3.141592653589793 rad - pos: 8.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12764 - components: - - rot: 3.141592653589793 rad - pos: 11.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12765 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,18.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12859 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,25.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13010 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,54.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13011 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,56.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13012 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,59.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13013 - components: - - pos: -17.5,63.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13031 - components: - - rot: 3.141592653589793 rad - pos: -11.5,53.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13032 - components: - - pos: -7.5,60.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13961 - components: - - rot: 3.141592653589793 rad - pos: -62.5,40.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13962 - components: - - pos: -62.5,45.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13981 - components: - - rot: 1.5707963267948966 rad - pos: -70.5,47.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 13982 - components: - - rot: 1.5707963267948966 rad - pos: -70.5,52.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14038 - components: - - rot: 3.141592653589793 rad - pos: -69.5,33.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14040 - components: - - rot: 3.141592653589793 rad - pos: -70.5,29.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14046 - components: - - rot: 3.141592653589793 rad - pos: -77.5,32.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14109 - components: - - rot: -1.5707963267948966 rad - pos: -66.5,20.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14111 - components: - - rot: -1.5707963267948966 rad - pos: -66.5,22.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14112 - components: - - rot: -1.5707963267948966 rad - pos: -71.5,17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14116 - components: - - rot: 1.5707963267948966 rad - pos: -74.5,29.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14149 - components: - - rot: 1.5707963267948966 rad - pos: -65.5,27.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14158 - components: - - rot: 1.5707963267948966 rad - pos: -80.5,24.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 14161 - components: - - pos: -60.5,33.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor -- proto: GasVentScrubber - entities: - - uid: 1064 - components: - - pos: -0.5,9.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2487 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,32.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2488 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,34.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2489 - components: - - pos: 4.5,37.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2490 - components: - - pos: 9.5,30.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2491 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,30.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2492 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,31.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2900 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,28.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 2912 - components: - - rot: 3.141592653589793 rad - pos: -15.5,23.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3022 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,23.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3023 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,24.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3024 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,15.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3739 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3837 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-7.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3959 - components: - - rot: 3.141592653589793 rad - pos: -40.5,-11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3967 - components: - - rot: 3.141592653589793 rad - pos: -64.5,-11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 4750 - components: - - rot: 1.5707963267948966 rad - pos: -74.5,-9.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 4807 - components: - - rot: 3.141592653589793 rad - pos: -57.5,-11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8690 - components: - - rot: -1.5707963267948966 rad - pos: -47.5,53.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8754 - components: - - rot: 3.141592653589793 rad - pos: -50.5,50.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8755 - components: - - rot: 3.141592653589793 rad - pos: -53.5,50.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8756 - components: - - rot: 3.141592653589793 rad - pos: -56.5,50.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8757 - components: - - rot: 3.141592653589793 rad - pos: -60.5,52.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8758 - components: - - rot: -1.5707963267948966 rad - pos: -47.5,61.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8759 - components: - - pos: -54.5,64.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8760 - components: - - pos: -58.5,64.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8766 - components: - - rot: 1.5707963267948966 rad - pos: -60.5,58.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8778 - components: - - rot: -1.5707963267948966 rad - pos: -54.5,56.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8842 - components: - - rot: 1.5707963267948966 rad - pos: -60.5,61.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8843 - components: - - rot: -1.5707963267948966 rad - pos: -51.5,62.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8844 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,65.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8884 - components: - - rot: -1.5707963267948966 rad - pos: -51.5,85.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8886 - components: - - rot: 3.141592653589793 rad - pos: -55.5,83.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8888 - components: - - pos: -54.5,89.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8924 - components: - - rot: 3.141592653589793 rad - pos: -57.5,87.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8925 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,84.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10798 - components: - - rot: 3.141592653589793 rad - pos: 7.5,19.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10956 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,41.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11122 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,37.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11123 - components: - - pos: -58.5,32.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11146 - components: - - pos: -53.5,47.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11175 - components: - - rot: -1.5707963267948966 rad - pos: -47.5,41.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11196 - components: - - rot: 3.141592653589793 rad - pos: -41.5,42.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11209 - components: - - pos: -41.5,50.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11235 - components: - - rot: 3.141592653589793 rad - pos: -36.5,42.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11236 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,45.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11237 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,47.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11270 - components: - - rot: -1.5707963267948966 rad - pos: -47.5,35.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11303 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,29.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11305 - components: - - rot: 3.141592653589793 rad - pos: -51.5,24.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11319 - components: - - pos: -50.5,36.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11320 - components: - - pos: -54.5,33.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11555 - components: - - pos: -43.5,32.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11556 - components: - - pos: -37.5,33.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11596 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,36.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11597 - components: - - pos: -38.5,40.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11598 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,36.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11599 - components: - - pos: -31.5,39.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11643 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,27.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11644 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,21.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11645 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11646 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,23.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11675 - components: - - pos: -33.5,27.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11678 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,24.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11697 - components: - - rot: -1.5707963267948966 rad - pos: -54.5,25.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11747 - components: - - rot: 1.5707963267948966 rad - pos: -57.5,26.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11748 - components: - - rot: 1.5707963267948966 rad - pos: -57.5,18.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11749 - components: - - rot: 1.5707963267948966 rad - pos: -57.5,10.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11750 - components: - - rot: -1.5707963267948966 rad - pos: -52.5,15.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11751 - components: - - pos: -54.5,19.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11789 - components: - - rot: 1.5707963267948966 rad - pos: -57.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11811 - components: - - pos: -67.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11812 - components: - - rot: 1.5707963267948966 rad - pos: -73.5,4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11842 - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11843 - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11925 - components: - - pos: -49.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11949 - components: - - pos: -40.5,9.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11970 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11971 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11999 - components: - - pos: -43.5,1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12000 - components: - - rot: 3.141592653589793 rad - pos: -43.5,-6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12001 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12018 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12064 - components: - - rot: 3.141592653589793 rad - pos: -38.5,3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12080 - components: - - rot: 3.141592653589793 rad - pos: -33.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12127 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,9.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12128 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12129 - components: - - pos: -25.5,16.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12140 - components: - - pos: -24.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12173 - components: - - pos: -31.5,32.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12175 - components: - - rot: 3.141592653589793 rad - pos: -24.5,28.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12190 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,38.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12219 - components: - - rot: 3.141592653589793 rad - pos: -16.5,31.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12259 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,38.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12260 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,45.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12261 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,46.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12272 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,48.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12297 - components: - - pos: -17.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12320 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12331 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12352 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12355 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12381 - components: - - pos: -3.5,0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12384 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12416 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12481 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,28.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12482 - components: - - rot: 3.141592653589793 rad - pos: -8.5,28.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12483 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,19.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12484 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12586 - components: - - pos: -5.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12587 - components: - - pos: 5.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12588 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12589 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12595 - components: - - pos: 14.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12606 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12651 - components: - - pos: 17.5,10.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12652 - components: - - pos: 21.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12653 - components: - - rot: 3.141592653589793 rad - pos: 25.5,3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12654 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12715 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12716 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,19.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12717 - components: - - pos: 27.5,24.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12736 - components: - - pos: -3.5,34.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12759 - components: - - rot: 3.141592653589793 rad - pos: 7.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12760 - components: - - rot: 3.141592653589793 rad - pos: 9.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12761 - components: - - rot: 3.141592653589793 rad - pos: 10.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12766 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12858 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,26.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 13004 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,55.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 13005 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,57.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 13006 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,60.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 13007 - components: - - pos: -15.5,63.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 13033 - components: - - pos: -8.5,60.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 13034 - components: - - rot: 3.141592653589793 rad - pos: -12.5,53.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 13964 - components: - - rot: 3.141592653589793 rad - pos: -61.5,40.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 13996 - components: - - rot: -1.5707963267948966 rad - pos: -60.5,45.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 13998 - components: - - rot: 1.5707963267948966 rad - pos: -70.5,48.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14045 - components: - - pos: -68.5,34.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14047 - components: - - rot: 3.141592653589793 rad - pos: -76.5,32.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14110 - components: - - rot: -1.5707963267948966 rad - pos: -66.5,23.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14113 - components: - - rot: -1.5707963267948966 rad - pos: -71.5,16.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14114 - components: - - rot: -1.5707963267948966 rad - pos: -66.5,19.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14115 - components: - - rot: -1.5707963267948966 rad - pos: -73.5,30.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14148 - components: - - rot: 1.5707963267948966 rad - pos: -65.5,28.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14159 - components: - - rot: 1.5707963267948966 rad - pos: -80.5,25.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 14160 - components: - - pos: -61.5,33.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor -- proto: GeneratorBasic - entities: - - uid: 6144 - components: - - pos: 17.5,46.5 - parent: 1 - type: Transform -- proto: GeneratorUranium - entities: - - uid: 6264 - components: - - pos: -3.5,55.5 - parent: 1 - type: Transform -- proto: GeneratorUraniumMachineCircuitboard - entities: - - uid: 1491 - components: - - pos: -49.48023,25.725746 - parent: 1 - type: Transform - - uid: 15959 - components: - - pos: -49.464603,25.631996 - parent: 1 - type: Transform -- proto: Girder - entities: - - uid: 54 - components: - - pos: 3.5,-3.5 - parent: 1 - type: Transform - - uid: 110 - components: - - pos: -21.5,-12.5 - parent: 1 - type: Transform - - uid: 179 - components: - - pos: 3.5,-6.5 - parent: 1 - type: Transform - - uid: 182 - components: - - pos: 8.5,-6.5 - parent: 1 - type: Transform - - uid: 191 - components: - - pos: 1.5,-7.5 - parent: 1 - type: Transform - - uid: 488 - components: - - pos: 9.5,-3.5 - parent: 1 - type: Transform - - uid: 514 - components: - - pos: 14.5,-3.5 - parent: 1 - type: Transform - - uid: 515 - components: - - pos: 22.5,-6.5 - parent: 1 - type: Transform - - uid: 585 - components: - - pos: 6.5,0.5 - parent: 1 - type: Transform - - uid: 648 - components: - - pos: 18.5,-3.5 - parent: 1 - type: Transform - - uid: 655 - components: - - pos: 22.5,0.5 - parent: 1 - type: Transform - - uid: 1044 - components: - - pos: 15.5,11.5 - parent: 1 - type: Transform - - uid: 1048 - components: - - pos: 15.5,7.5 - parent: 1 - type: Transform - - uid: 1049 - components: - - pos: 21.5,14.5 - parent: 1 - type: Transform - - uid: 1086 - components: - - pos: -22.5,-2.5 - parent: 1 - type: Transform - - uid: 1105 - components: - - pos: -22.5,1.5 - parent: 1 - type: Transform - - uid: 1128 - components: - - pos: -20.5,3.5 - parent: 1 - type: Transform - - uid: 1130 - components: - - pos: -30.5,-0.5 - parent: 1 - type: Transform - - uid: 1134 - components: - - pos: 8.5,7.5 - parent: 1 - type: Transform - - uid: 1139 - components: - - pos: 9.5,7.5 - parent: 1 - type: Transform - - uid: 1174 - components: - - pos: 13.5,23.5 - parent: 1 - type: Transform - - uid: 1175 - components: - - pos: 21.5,22.5 - parent: 1 - type: Transform - - uid: 1200 - components: - - pos: 16.5,21.5 - parent: 1 - type: Transform - - uid: 1305 - components: - - pos: 21.5,33.5 - parent: 1 - type: Transform - - uid: 1381 - components: - - pos: -1.5,44.5 - parent: 1 - type: Transform - - uid: 1416 - components: - - pos: 13.5,38.5 - parent: 1 - type: Transform - - uid: 1470 - components: - - pos: -7.5,19.5 - parent: 1 - type: Transform - - uid: 1476 - components: - - pos: -10.5,24.5 - parent: 1 - type: Transform - - uid: 2059 - components: - - pos: 17.5,24.5 - parent: 1 - type: Transform - - uid: 2305 - components: - - pos: -23.5,4.5 - parent: 1 - type: Transform - - uid: 3034 - components: - - pos: -21.5,14.5 - parent: 1 - type: Transform - - uid: 3049 - components: - - pos: -27.5,25.5 - parent: 1 - type: Transform - - uid: 3070 - components: - - pos: -29.5,19.5 - parent: 1 - type: Transform - - uid: 3109 - components: - - pos: -32.5,11.5 - parent: 1 - type: Transform - - uid: 3151 - components: - - pos: -32.5,22.5 - parent: 1 - type: Transform - - uid: 3160 - components: - - pos: -31.5,17.5 - parent: 1 - type: Transform - - uid: 3461 - components: - - pos: -29.5,3.5 - parent: 1 - type: Transform - - uid: 3464 - components: - - pos: -24.5,3.5 - parent: 1 - type: Transform - - uid: 3517 - components: - - pos: -62.5,6.5 - parent: 1 - type: Transform - - uid: 3518 - components: - - pos: -64.5,6.5 - parent: 1 - type: Transform - - uid: 3522 - components: - - pos: -58.5,17.5 - parent: 1 - type: Transform - - uid: 3596 - components: - - pos: -47.5,-5.5 - parent: 1 - type: Transform - - uid: 3614 - components: - - pos: -53.5,-8.5 - parent: 1 - type: Transform - - uid: 3732 - components: - - pos: -32.5,6.5 - parent: 1 - type: Transform - - uid: 3733 - components: - - pos: -58.5,23.5 - parent: 1 - type: Transform - - uid: 3734 - components: - - pos: -58.5,46.5 - parent: 1 - type: Transform - - uid: 3865 - components: - - pos: -51.5,3.5 - parent: 1 - type: Transform - - uid: 4165 - components: - - pos: -38.5,16.5 - parent: 1 - type: Transform - - uid: 4172 - components: - - pos: -40.5,19.5 - parent: 1 - type: Transform - - uid: 4193 - components: - - pos: -43.5,22.5 - parent: 1 - type: Transform - - uid: 4197 - components: - - pos: -45.5,29.5 - parent: 1 - type: Transform - - uid: 4292 - components: - - pos: -46.5,16.5 - parent: 1 - type: Transform - - uid: 4294 - components: - - pos: -43.5,16.5 - parent: 1 - type: Transform - - uid: 4297 - components: - - pos: -43.5,18.5 - parent: 1 - type: Transform - - uid: 4303 - components: - - pos: -49.5,19.5 - parent: 1 - type: Transform - - uid: 4501 - components: - - pos: -49.5,-6.5 - parent: 1 - type: Transform - - uid: 4502 - components: - - pos: -49.5,-3.5 - parent: 1 - type: Transform - - uid: 4512 - components: - - pos: -50.5,-8.5 - parent: 1 - type: Transform - - uid: 4518 - components: - - pos: -55.5,-0.5 - parent: 1 - type: Transform - - uid: 5490 - components: - - pos: -55.5,-10.5 - parent: 1 - type: Transform - - uid: 5875 - components: - - pos: -4.5,45.5 - parent: 1 - type: Transform - - uid: 6731 - components: - - pos: -29.5,41.5 - parent: 1 - type: Transform - - uid: 6959 - components: - - pos: -33.5,53.5 - parent: 1 - type: Transform - - uid: 7030 - components: - - pos: -54.5,45.5 - parent: 1 - type: Transform - - uid: 7031 - components: - - pos: -51.5,45.5 - parent: 1 - type: Transform - - uid: 7037 - components: - - pos: -55.5,41.5 - parent: 1 - type: Transform - - uid: 7058 - components: - - pos: -53.5,40.5 - parent: 1 - type: Transform - - uid: 7062 - components: - - pos: -50.5,42.5 - parent: 1 - type: Transform - - uid: 9185 - components: - - pos: -74.5,50.5 - parent: 1 - type: Transform - - uid: 9219 - components: - - pos: -59.5,39.5 - parent: 1 - type: Transform - - uid: 9245 - components: - - pos: -70.5,38.5 - parent: 1 - type: Transform - - uid: 9901 - components: - - pos: -59.5,22.5 - parent: 1 - type: Transform - - uid: 9926 - components: - - pos: -65.5,9.5 - parent: 1 - type: Transform - - uid: 10845 - components: - - pos: -63.5,38.5 - parent: 1 - type: Transform - - uid: 13344 - components: - - pos: -2.5,13.5 - parent: 1 - type: Transform - - uid: 15187 - components: - - pos: -68.5,48.5 - parent: 1 - type: Transform -- proto: GravityGenerator - entities: - - uid: 920 - components: - - pos: 28.5,2.5 - parent: 1 - type: Transform - - charge: 100 - type: GravityGenerator - - radius: 175.75 - type: PointLight -- proto: GrenadeFlashBang - entities: - - uid: 8009 - components: - - pos: -61.810192,50.638466 - parent: 1 - type: Transform - - uid: 8010 - components: - - pos: -61.950817,50.700966 - parent: 1 - type: Transform - - uid: 8011 - components: - - pos: -61.997692,50.59159 - parent: 1 - type: Transform -- proto: Grille - entities: - - uid: 28 - components: - - pos: -3.5,-0.5 - parent: 1 - type: Transform - - uid: 37 - components: - - pos: -8.5,3.5 - parent: 1 - type: Transform - - uid: 41 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-5.5 - parent: 1 - type: Transform - - uid: 67 - components: - - pos: -7.5,-5.5 - parent: 1 - type: Transform - - uid: 68 - components: - - pos: -7.5,-4.5 - parent: 1 - type: Transform - - uid: 69 - components: - - pos: -6.5,3.5 - parent: 1 - type: Transform - - uid: 212 - components: - - pos: 2.5,-12.5 - parent: 1 - type: Transform - - uid: 213 - components: - - pos: 0.5,-12.5 - parent: 1 - type: Transform - - uid: 609 - components: - - rot: 3.141592653589793 rad - pos: -25.5,30.5 - parent: 1 - type: Transform - - uid: 711 - components: - - pos: 30.5,1.5 - parent: 1 - type: Transform - - uid: 712 - components: - - pos: 30.5,2.5 - parent: 1 - type: Transform - - uid: 713 - components: - - pos: 30.5,3.5 - parent: 1 - type: Transform - - uid: 946 - components: - - rot: 3.141592653589793 rad - pos: 29.5,6.5 - parent: 1 - type: Transform - - uid: 947 - components: - - rot: 3.141592653589793 rad - pos: 29.5,5.5 - parent: 1 - type: Transform - - uid: 953 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,17.5 - parent: 1 - type: Transform - - uid: 954 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,17.5 - parent: 1 - type: Transform - - uid: 975 - components: - - rot: 3.141592653589793 rad - pos: 29.5,14.5 - parent: 1 - type: Transform - - uid: 976 - components: - - rot: 3.141592653589793 rad - pos: 29.5,13.5 - parent: 1 - type: Transform - - uid: 977 - components: - - rot: 3.141592653589793 rad - pos: 29.5,12.5 - parent: 1 - type: Transform - - uid: 978 - components: - - rot: 3.141592653589793 rad - pos: 29.5,20.5 - parent: 1 - type: Transform - - uid: 979 - components: - - rot: 3.141592653589793 rad - pos: 29.5,21.5 - parent: 1 - type: Transform - - uid: 1052 - components: - - pos: 18.5,7.5 - parent: 1 - type: Transform - - uid: 1054 - components: - - pos: 16.5,7.5 - parent: 1 - type: Transform - - uid: 1066 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-4.5 - parent: 1 - type: Transform - - uid: 1067 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-3.5 - parent: 1 - type: Transform - - uid: 1068 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-1.5 - parent: 1 - type: Transform - - uid: 1264 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,24.5 - parent: 1 - type: Transform - - uid: 1269 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,28.5 - parent: 1 - type: Transform - - uid: 1290 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,28.5 - parent: 1 - type: Transform - - uid: 1303 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,28.5 - parent: 1 - type: Transform - - uid: 1316 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,31.5 - parent: 1 - type: Transform - - uid: 1317 - components: - - pos: 5.5,23.5 - parent: 1 - type: Transform - - uid: 1318 - components: - - pos: 11.5,27.5 - parent: 1 - type: Transform - - uid: 1342 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,29.5 - parent: 1 - type: Transform - - uid: 1343 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,30.5 - parent: 1 - type: Transform - - uid: 1345 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,32.5 - parent: 1 - type: Transform - - uid: 1347 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,34.5 - parent: 1 - type: Transform - - uid: 1360 - components: - - pos: 5.5,22.5 - parent: 1 - type: Transform - - uid: 1403 - components: - - pos: -44.5,65.5 - parent: 1 - type: Transform - - uid: 1424 - components: - - pos: 16.5,43.5 - parent: 1 - type: Transform - - uid: 1631 - components: - - pos: 12.5,27.5 - parent: 1 - type: Transform - - uid: 1869 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-15.5 - parent: 1 - type: Transform - - uid: 1870 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-15.5 - parent: 1 - type: Transform - - uid: 1871 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-15.5 - parent: 1 - type: Transform - - uid: 1887 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,30.5 - parent: 1 - type: Transform - - uid: 1890 - components: - - pos: 13.5,29.5 - parent: 1 - type: Transform - - uid: 1894 - components: - - pos: 5.5,26.5 - parent: 1 - type: Transform - - uid: 2820 - components: - - rot: 3.141592653589793 rad - pos: -14.5,24.5 - parent: 1 - type: Transform - - uid: 2822 - components: - - rot: 3.141592653589793 rad - pos: -14.5,28.5 - parent: 1 - type: Transform - - uid: 2831 - components: - - rot: 3.141592653589793 rad - pos: -17.5,30.5 - parent: 1 - type: Transform - - uid: 2832 - components: - - rot: 3.141592653589793 rad - pos: -16.5,30.5 - parent: 1 - type: Transform - - uid: 2833 - components: - - pos: -15.5,30.5 - parent: 1 - type: Transform - - uid: 2834 - components: - - rot: 3.141592653589793 rad - pos: -14.5,29.5 - parent: 1 - type: Transform - - uid: 2839 - components: - - rot: 3.141592653589793 rad - pos: -14.5,23.5 - parent: 1 - type: Transform - - uid: 3085 - components: - - pos: -25.5,7.5 - parent: 1 - type: Transform - - uid: 3086 - components: - - pos: -26.5,7.5 - parent: 1 - type: Transform - - uid: 3087 - components: - - pos: -27.5,7.5 - parent: 1 - type: Transform - - uid: 3132 - components: - - pos: -26.5,30.5 - parent: 1 - type: Transform - - uid: 3135 - components: - - pos: -23.5,30.5 - parent: 1 - type: Transform - - uid: 3150 - components: - - pos: -34.5,22.5 - parent: 1 - type: Transform - - uid: 3322 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-14.5 - parent: 1 - type: Transform - - uid: 3429 - components: - - pos: -35.5,21.5 - parent: 1 - type: Transform - - uid: 3431 - components: - - pos: -35.5,19.5 - parent: 1 - type: Transform - - uid: 3432 - components: - - pos: -35.5,18.5 - parent: 1 - type: Transform - - uid: 3433 - components: - - pos: -35.5,20.5 - parent: 1 - type: Transform - - uid: 3434 - components: - - pos: -35.5,16.5 - parent: 1 - type: Transform - - uid: 3435 - components: - - pos: -35.5,15.5 - parent: 1 - type: Transform - - uid: 3444 - components: - - pos: -20.5,36.5 - parent: 1 - type: Transform - - uid: 3452 - components: - - pos: -14.5,46.5 - parent: 1 - type: Transform - - uid: 3456 - components: - - pos: -22.5,36.5 - parent: 1 - type: Transform - - uid: 3457 - components: - - pos: -21.5,36.5 - parent: 1 - type: Transform - - uid: 3555 - components: - - pos: -37.5,-8.5 - parent: 1 - type: Transform - - uid: 3588 - components: - - pos: -42.5,-7.5 - parent: 1 - type: Transform - - uid: 3589 - components: - - pos: -42.5,-6.5 - parent: 1 - type: Transform - - uid: 3593 - components: - - pos: -42.5,-4.5 - parent: 1 - type: Transform - - uid: 3594 - components: - - pos: -42.5,-3.5 - parent: 1 - type: Transform - - uid: 3595 - components: - - pos: -42.5,-1.5 - parent: 1 - type: Transform - - uid: 3613 - components: - - rot: 3.141592653589793 rad - pos: -53.5,3.5 - parent: 1 - type: Transform - - uid: 3630 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-14.5 - parent: 1 - type: Transform - - uid: 3642 - components: - - pos: -38.5,-0.5 - parent: 1 - type: Transform - - uid: 3643 - components: - - pos: -36.5,-0.5 - parent: 1 - type: Transform - - uid: 3644 - components: - - pos: -44.5,3.5 - parent: 1 - type: Transform - - uid: 3685 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-0.5 - parent: 1 - type: Transform - - uid: 3686 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-14.5 - parent: 1 - type: Transform - - uid: 3775 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-13.5 - parent: 1 - type: Transform - - uid: 3841 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-4.5 - parent: 1 - type: Transform - - uid: 3842 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-4.5 - parent: 1 - type: Transform - - uid: 3843 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-4.5 - parent: 1 - type: Transform - - uid: 3905 - components: - - pos: -59.5,10.5 - parent: 1 - type: Transform - - uid: 3962 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-14.5 - parent: 1 - type: Transform - - uid: 3972 - components: - - rot: 3.141592653589793 rad - pos: -61.5,-12.5 - parent: 1 - type: Transform - - uid: 4099 - components: - - rot: 3.141592653589793 rad - pos: -62.5,-12.5 - parent: 1 - type: Transform - - uid: 4306 - components: - - pos: -48.5,25.5 - parent: 1 - type: Transform - - uid: 4312 - components: - - pos: -46.5,25.5 - parent: 1 - type: Transform - - uid: 4314 - components: - - pos: -48.5,23.5 - parent: 1 - type: Transform - - uid: 4315 - components: - - pos: -48.5,24.5 - parent: 1 - type: Transform - - uid: 4316 - components: - - pos: -46.5,23.5 - parent: 1 - type: Transform - - uid: 4317 - components: - - pos: -46.5,24.5 - parent: 1 - type: Transform - - uid: 4735 - components: - - pos: -25.5,64.5 - parent: 1 - type: Transform - - uid: 4748 - components: - - pos: -74.5,7.5 - parent: 1 - type: Transform - - uid: 4757 - components: - - pos: -38.5,-8.5 - parent: 1 - type: Transform - - uid: 4760 - components: - - rot: 3.141592653589793 rad - pos: -60.5,-12.5 - parent: 1 - type: Transform - - uid: 4816 - components: - - pos: -65.5,-13.5 - parent: 1 - type: Transform - - uid: 4827 - components: - - pos: -59.5,2.5 - parent: 1 - type: Transform - - uid: 4828 - components: - - pos: -59.5,1.5 - parent: 1 - type: Transform - - uid: 4829 - components: - - pos: -59.5,0.5 - parent: 1 - type: Transform - - uid: 4830 - components: - - pos: -59.5,-0.5 - parent: 1 - type: Transform - - uid: 4831 - components: - - pos: -59.5,-1.5 - parent: 1 - type: Transform - - uid: 4832 - components: - - pos: -59.5,-2.5 - parent: 1 - type: Transform - - uid: 4833 - components: - - pos: -59.5,-3.5 - parent: 1 - type: Transform - - uid: 4834 - components: - - pos: -59.5,-4.5 - parent: 1 - type: Transform - - uid: 4835 - components: - - pos: -59.5,-5.5 - parent: 1 - type: Transform - - uid: 4836 - components: - - pos: -59.5,-6.5 - parent: 1 - type: Transform - - uid: 4853 - components: - - pos: -75.5,3.5 - parent: 1 - type: Transform - - uid: 4857 - components: - - pos: -71.5,3.5 - parent: 1 - type: Transform - - uid: 4858 - components: - - pos: -70.5,3.5 - parent: 1 - type: Transform - - uid: 4859 - components: - - pos: -69.5,3.5 - parent: 1 - type: Transform - - uid: 4860 - components: - - pos: -68.5,3.5 - parent: 1 - type: Transform - - uid: 4864 - components: - - pos: -64.5,3.5 - parent: 1 - type: Transform - - uid: 4865 - components: - - pos: -63.5,3.5 - parent: 1 - type: Transform - - uid: 4866 - components: - - pos: -62.5,3.5 - parent: 1 - type: Transform - - uid: 4867 - components: - - pos: -61.5,3.5 - parent: 1 - type: Transform - - uid: 4868 - components: - - pos: -60.5,3.5 - parent: 1 - type: Transform - - uid: 4884 - components: - - pos: -73.5,-13.5 - parent: 1 - type: Transform - - uid: 4889 - components: - - pos: -59.5,-7.5 - parent: 1 - type: Transform - - uid: 4894 - components: - - rot: 3.141592653589793 rad - pos: -57.5,-12.5 - parent: 1 - type: Transform - - uid: 4895 - components: - - pos: -64.5,-8.5 - parent: 1 - type: Transform - - uid: 4898 - components: - - pos: -73.5,-14.5 - parent: 1 - type: Transform - - uid: 4899 - components: - - rot: 3.141592653589793 rad - pos: -69.5,-12.5 - parent: 1 - type: Transform - - uid: 4900 - components: - - rot: 3.141592653589793 rad - pos: -68.5,-12.5 - parent: 1 - type: Transform - - uid: 4902 - components: - - pos: -61.5,-8.5 - parent: 1 - type: Transform - - uid: 4908 - components: - - pos: -69.5,-8.5 - parent: 1 - type: Transform - - uid: 4909 - components: - - pos: -68.5,-8.5 - parent: 1 - type: Transform - - uid: 4910 - components: - - pos: -63.5,-8.5 - parent: 1 - type: Transform - - uid: 4925 - components: - - pos: -62.5,-8.5 - parent: 1 - type: Transform - - uid: 4926 - components: - - rot: 3.141592653589793 rad - pos: -70.5,-12.5 - parent: 1 - type: Transform - - uid: 4932 - components: - - pos: -65.5,-14.5 - parent: 1 - type: Transform - - uid: 4934 - components: - - pos: -75.5,-8.5 - parent: 1 - type: Transform - - uid: 4944 - components: - - rot: 3.141592653589793 rad - pos: -58.5,-12.5 - parent: 1 - type: Transform - - uid: 4971 - components: - - pos: -70.5,-8.5 - parent: 1 - type: Transform - - uid: 4976 - components: - - pos: -71.5,-8.5 - parent: 1 - type: Transform - - uid: 4977 - components: - - pos: -60.5,-8.5 - parent: 1 - type: Transform - - uid: 5074 - components: - - pos: -76.5,4.5 - parent: 1 - type: Transform - - uid: 5075 - components: - - pos: -76.5,5.5 - parent: 1 - type: Transform - - uid: 5076 - components: - - pos: -76.5,6.5 - parent: 1 - type: Transform - - uid: 5175 - components: - - pos: -75.5,7.5 - parent: 1 - type: Transform - - uid: 5248 - components: - - pos: -47.5,-11.5 - parent: 1 - type: Transform - - uid: 5249 - components: - - pos: -49.5,-11.5 - parent: 1 - type: Transform - - uid: 5252 - components: - - pos: -55.5,18.5 - parent: 1 - type: Transform - - uid: 5280 - components: - - pos: -55.5,19.5 - parent: 1 - type: Transform - - uid: 5316 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,14.5 - parent: 1 - type: Transform - - uid: 5340 - components: - - pos: -25.5,65.5 - parent: 1 - type: Transform - - uid: 5341 - components: - - pos: -17.5,70.5 - parent: 1 - type: Transform - - uid: 5823 - components: - - pos: -18.5,46.5 - parent: 1 - type: Transform - - uid: 5836 - components: - - pos: -18.5,47.5 - parent: 1 - type: Transform - - uid: 5861 - components: - - pos: -14.5,44.5 - parent: 1 - type: Transform - - uid: 5862 - components: - - pos: -14.5,43.5 - parent: 1 - type: Transform - - uid: 5864 - components: - - pos: -14.5,41.5 - parent: 1 - type: Transform - - uid: 5866 - components: - - pos: -14.5,39.5 - parent: 1 - type: Transform - - uid: 5867 - components: - - pos: -14.5,38.5 - parent: 1 - type: Transform - - uid: 5869 - components: - - pos: -14.5,36.5 - parent: 1 - type: Transform - - uid: 5870 - components: - - pos: -14.5,35.5 - parent: 1 - type: Transform - - uid: 5901 - components: - - pos: -14.5,49.5 - parent: 1 - type: Transform - - uid: 5963 - components: - - pos: -1.5,54.5 - parent: 1 - type: Transform - - uid: 5964 - components: - - pos: -0.5,54.5 - parent: 1 - type: Transform - - uid: 5965 - components: - - pos: 0.5,54.5 - parent: 1 - type: Transform - - uid: 5966 - components: - - pos: -2.5,53.5 - parent: 1 - type: Transform - - uid: 5967 - components: - - pos: -2.5,52.5 - parent: 1 - type: Transform - - uid: 5968 - components: - - pos: -2.5,51.5 - parent: 1 - type: Transform - - uid: 5969 - components: - - pos: -2.5,50.5 - parent: 1 - type: Transform - - uid: 5970 - components: - - pos: -2.5,49.5 - parent: 1 - type: Transform - - uid: 6012 - components: - - pos: -24.5,67.5 - parent: 1 - type: Transform - - uid: 6013 - components: - - pos: -16.5,70.5 - parent: 1 - type: Transform - - uid: 6043 - components: - - pos: 16.5,53.5 - parent: 1 - type: Transform - - uid: 6044 - components: - - pos: 15.5,53.5 - parent: 1 - type: Transform - - uid: 6045 - components: - - pos: 14.5,53.5 - parent: 1 - type: Transform - - uid: 6046 - components: - - pos: 13.5,53.5 - parent: 1 - type: Transform - - uid: 6257 - components: - - pos: -14.5,70.5 - parent: 1 - type: Transform - - uid: 6275 - components: - - pos: -25.5,62.5 - parent: 1 - type: Transform - - uid: 6319 - components: - - pos: 24.5,38.5 - parent: 1 - type: Transform - - uid: 6321 - components: - - pos: 24.5,40.5 - parent: 1 - type: Transform - - uid: 6322 - components: - - pos: 24.5,41.5 - parent: 1 - type: Transform - - uid: 6323 - components: - - pos: -11.5,70.5 - parent: 1 - type: Transform - - uid: 6352 - components: - - rot: 3.141592653589793 rad - pos: -13.5,54.5 - parent: 1 - type: Transform - - uid: 6355 - components: - - rot: 3.141592653589793 rad - pos: -13.5,56.5 - parent: 1 - type: Transform - - uid: 6356 - components: - - rot: 3.141592653589793 rad - pos: -13.5,53.5 - parent: 1 - type: Transform - - uid: 6358 - components: - - rot: 3.141592653589793 rad - pos: -13.5,57.5 - parent: 1 - type: Transform - - uid: 6389 - components: - - rot: 3.141592653589793 rad - pos: -16.5,58.5 - parent: 1 - type: Transform - - uid: 6408 - components: - - pos: -9.5,62.5 - parent: 1 - type: Transform - - uid: 6409 - components: - - pos: -8.5,62.5 - parent: 1 - type: Transform - - uid: 6410 - components: - - pos: -7.5,62.5 - parent: 1 - type: Transform - - uid: 6411 - components: - - pos: -6.5,62.5 - parent: 1 - type: Transform - - uid: 6412 - components: - - pos: -5.5,62.5 - parent: 1 - type: Transform - - uid: 6414 - components: - - pos: -4.5,61.5 - parent: 1 - type: Transform - - uid: 6415 - components: - - pos: -4.5,60.5 - parent: 1 - type: Transform - - uid: 6458 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,64.5 - parent: 1 - type: Transform - - uid: 6459 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,65.5 - parent: 1 - type: Transform - - uid: 6460 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,65.5 - parent: 1 - type: Transform - - uid: 6461 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,66.5 - parent: 1 - type: Transform - - uid: 6462 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,66.5 - parent: 1 - type: Transform - - uid: 6463 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,67.5 - parent: 1 - type: Transform - - uid: 6464 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,67.5 - parent: 1 - type: Transform - - uid: 6465 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,67.5 - parent: 1 - type: Transform - - uid: 6466 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,67.5 - parent: 1 - type: Transform - - uid: 6467 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,67.5 - parent: 1 - type: Transform - - uid: 6468 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,67.5 - parent: 1 - type: Transform - - uid: 6469 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,67.5 - parent: 1 - type: Transform - - uid: 6470 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,66.5 - parent: 1 - type: Transform - - uid: 6471 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,66.5 - parent: 1 - type: Transform - - uid: 6472 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,65.5 - parent: 1 - type: Transform - - uid: 6473 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,65.5 - parent: 1 - type: Transform - - uid: 6474 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,64.5 - parent: 1 - type: Transform - - uid: 6653 - components: - - pos: -18.5,48.5 - parent: 1 - type: Transform - - uid: 6669 - components: - - pos: -13.5,70.5 - parent: 1 - type: Transform - - uid: 6670 - components: - - pos: -10.5,69.5 - parent: 1 - type: Transform - - uid: 6671 - components: - - pos: -1.5,62.5 - parent: 1 - type: Transform - - uid: 6673 - components: - - pos: -1.5,60.5 - parent: 1 - type: Transform - - uid: 6674 - components: - - pos: -1.5,59.5 - parent: 1 - type: Transform - - uid: 6675 - components: - - pos: -3.5,65.5 - parent: 1 - type: Transform - - uid: 6678 - components: - - pos: -22.5,69.5 - parent: 1 - type: Transform - - uid: 6685 - components: - - pos: -22.5,60.5 - parent: 1 - type: Transform - - uid: 6686 - components: - - pos: -22.5,61.5 - parent: 1 - type: Transform - - uid: 6687 - components: - - pos: -22.5,62.5 - parent: 1 - type: Transform - - uid: 6757 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,34.5 - parent: 1 - type: Transform - - uid: 6758 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,34.5 - parent: 1 - type: Transform - - uid: 6760 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,34.5 - parent: 1 - type: Transform - - uid: 6783 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,48.5 - parent: 1 - type: Transform - - uid: 6791 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,41.5 - parent: 1 - type: Transform - - uid: 6811 - components: - - pos: -41.5,53.5 - parent: 1 - type: Transform - - uid: 6816 - components: - - pos: -40.5,53.5 - parent: 1 - type: Transform - - uid: 6821 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,48.5 - parent: 1 - type: Transform - - uid: 6984 - components: - - pos: -48.5,56.5 - parent: 1 - type: Transform - - uid: 6985 - components: - - pos: -46.5,56.5 - parent: 1 - type: Transform - - uid: 6989 - components: - - pos: -57.5,48.5 - parent: 1 - type: Transform - - uid: 6990 - components: - - pos: -56.5,48.5 - parent: 1 - type: Transform - - uid: 6991 - components: - - pos: -54.5,48.5 - parent: 1 - type: Transform - - uid: 6992 - components: - - pos: -53.5,48.5 - parent: 1 - type: Transform - - uid: 6993 - components: - - pos: -51.5,48.5 - parent: 1 - type: Transform - - uid: 6994 - components: - - pos: -50.5,48.5 - parent: 1 - type: Transform - - uid: 6995 - components: - - pos: -50.5,52.5 - parent: 1 - type: Transform - - uid: 6996 - components: - - pos: -53.5,52.5 - parent: 1 - type: Transform - - uid: 6997 - components: - - pos: -56.5,52.5 - parent: 1 - type: Transform - - uid: 7004 - components: - - pos: -54.5,59.5 - parent: 1 - type: Transform - - uid: 7005 - components: - - pos: -55.5,59.5 - parent: 1 - type: Transform - - uid: 7006 - components: - - pos: -56.5,59.5 - parent: 1 - type: Transform - - uid: 7014 - components: - - pos: -48.5,63.5 - parent: 1 - type: Transform - - uid: 7029 - components: - - rot: 3.141592653589793 rad - pos: -52.5,45.5 - parent: 1 - type: Transform - - uid: 7095 - components: - - pos: -23.5,68.5 - parent: 1 - type: Transform - - uid: 7113 - components: - - pos: -46.5,63.5 - parent: 1 - type: Transform - - uid: 7151 - components: - - pos: -53.5,63.5 - parent: 1 - type: Transform - - uid: 7152 - components: - - pos: -53.5,64.5 - parent: 1 - type: Transform - - uid: 7153 - components: - - pos: -53.5,65.5 - parent: 1 - type: Transform - - uid: 7162 - components: - - pos: -58.5,62.5 - parent: 1 - type: Transform - - uid: 7165 - components: - - pos: -61.5,66.5 - parent: 1 - type: Transform - - uid: 7166 - components: - - pos: -60.5,66.5 - parent: 1 - type: Transform - - uid: 7167 - components: - - pos: -59.5,66.5 - parent: 1 - type: Transform - - uid: 7168 - components: - - pos: -58.5,66.5 - parent: 1 - type: Transform - - uid: 7173 - components: - - pos: -56.5,66.5 - parent: 1 - type: Transform - - uid: 7174 - components: - - pos: -55.5,66.5 - parent: 1 - type: Transform - - uid: 7175 - components: - - pos: -54.5,66.5 - parent: 1 - type: Transform - - uid: 7179 - components: - - pos: -56.5,62.5 - parent: 1 - type: Transform - - uid: 7180 - components: - - pos: -54.5,62.5 - parent: 1 - type: Transform - - uid: 7238 - components: - - pos: -58.5,54.5 - parent: 1 - type: Transform - - uid: 7242 - components: - - pos: -49.5,54.5 - parent: 1 - type: Transform - - uid: 7255 - components: - - pos: -49.5,83.5 - parent: 1 - type: Transform - - uid: 7256 - components: - - pos: -49.5,84.5 - parent: 1 - type: Transform - - uid: 7257 - components: - - pos: -49.5,85.5 - parent: 1 - type: Transform - - uid: 7258 - components: - - pos: -49.5,86.5 - parent: 1 - type: Transform - - uid: 7259 - components: - - pos: -49.5,87.5 - parent: 1 - type: Transform - - uid: 7260 - components: - - pos: -49.5,88.5 - parent: 1 - type: Transform - - uid: 7271 - components: - - pos: -51.5,91.5 - parent: 1 - type: Transform - - uid: 7301 - components: - - pos: -58.5,82.5 - parent: 1 - type: Transform - - uid: 7307 - components: - - pos: -59.5,90.5 - parent: 1 - type: Transform - - uid: 7308 - components: - - pos: -60.5,90.5 - parent: 1 - type: Transform - - uid: 7312 - components: - - pos: -61.5,82.5 - parent: 1 - type: Transform - - uid: 7318 - components: - - pos: -63.5,83.5 - parent: 1 - type: Transform - - uid: 7319 - components: - - pos: -62.5,88.5 - parent: 1 - type: Transform - - uid: 7374 - components: - - pos: -10.5,70.5 - parent: 1 - type: Transform - - uid: 7375 - components: - - pos: -5.5,65.5 - parent: 1 - type: Transform - - uid: 7376 - components: - - pos: -1.5,63.5 - parent: 1 - type: Transform - - uid: 7377 - components: - - pos: -6.5,65.5 - parent: 1 - type: Transform - - uid: 7413 - components: - - pos: -1.5,64.5 - parent: 1 - type: Transform - - uid: 7512 - components: - - pos: -9.5,69.5 - parent: 1 - type: Transform - - uid: 7513 - components: - - pos: -9.5,68.5 - parent: 1 - type: Transform - - uid: 7516 - components: - - pos: -7.5,65.5 - parent: 1 - type: Transform - - uid: 7712 - components: - - pos: -63.5,84.5 - parent: 1 - type: Transform - - uid: 7715 - components: - - pos: -58.5,90.5 - parent: 1 - type: Transform - - uid: 7728 - components: - - pos: -59.5,82.5 - parent: 1 - type: Transform - - uid: 7729 - components: - - pos: -60.5,82.5 - parent: 1 - type: Transform - - uid: 7740 - components: - - pos: -63.5,85.5 - parent: 1 - type: Transform - - uid: 7862 - components: - - pos: -47.5,52.5 - parent: 1 - type: Transform - - uid: 8084 - components: - - pos: -8.5,68.5 - parent: 1 - type: Transform - - uid: 8115 - components: - - pos: -24.5,68.5 - parent: 1 - type: Transform - - uid: 8289 - components: - - pos: -22.5,70.5 - parent: 1 - type: Transform - - uid: 8290 - components: - - pos: -19.5,70.5 - parent: 1 - type: Transform - - uid: 8970 - components: - - pos: -55.5,74.5 - parent: 1 - type: Transform - - uid: 8972 - components: - - pos: -55.5,69.5 - parent: 1 - type: Transform - - uid: 8973 - components: - - pos: -55.5,70.5 - parent: 1 - type: Transform - - uid: 8975 - components: - - pos: -55.5,72.5 - parent: 1 - type: Transform - - uid: 8976 - components: - - pos: -23.5,69.5 - parent: 1 - type: Transform - - uid: 8977 - components: - - pos: -55.5,75.5 - parent: 1 - type: Transform - - uid: 8981 - components: - - pos: -107.5,22.5 - parent: 1 - type: Transform - - uid: 8986 - components: - - pos: -65.5,82.5 - parent: 1 - type: Transform - - uid: 8988 - components: - - pos: -65.5,84.5 - parent: 1 - type: Transform - - uid: 8989 - components: - - pos: -65.5,85.5 - parent: 1 - type: Transform - - uid: 8991 - components: - - pos: -65.5,87.5 - parent: 1 - type: Transform - - uid: 8993 - components: - - pos: -64.5,88.5 - parent: 1 - type: Transform - - uid: 8994 - components: - - pos: -64.5,89.5 - parent: 1 - type: Transform - - uid: 9023 - components: - - pos: -47.5,77.5 - parent: 1 - type: Transform - - uid: 9024 - components: - - pos: -47.5,76.5 - parent: 1 - type: Transform - - uid: 9026 - components: - - pos: -47.5,74.5 - parent: 1 - type: Transform - - uid: 9028 - components: - - pos: -46.5,71.5 - parent: 1 - type: Transform - - uid: 9029 - components: - - pos: -45.5,71.5 - parent: 1 - type: Transform - - uid: 9030 - components: - - pos: -44.5,71.5 - parent: 1 - type: Transform - - uid: 9032 - components: - - pos: -42.5,71.5 - parent: 1 - type: Transform - - uid: 9048 - components: - - pos: -32.5,62.5 - parent: 1 - type: Transform - - uid: 9050 - components: - - pos: -30.5,62.5 - parent: 1 - type: Transform - - uid: 9051 - components: - - pos: -29.5,62.5 - parent: 1 - type: Transform - - uid: 9091 - components: - - pos: 0.5,56.5 - parent: 1 - type: Transform - - uid: 9092 - components: - - pos: 1.5,56.5 - parent: 1 - type: Transform - - uid: 9094 - components: - - pos: 3.5,56.5 - parent: 1 - type: Transform - - uid: 9095 - components: - - pos: 10.5,55.5 - parent: 1 - type: Transform - - uid: 9096 - components: - - pos: 5.5,56.5 - parent: 1 - type: Transform - - uid: 9097 - components: - - pos: 7.5,55.5 - parent: 1 - type: Transform - - uid: 9099 - components: - - pos: 9.5,55.5 - parent: 1 - type: Transform - - uid: 9102 - components: - - pos: 12.5,55.5 - parent: 1 - type: Transform - - uid: 9103 - components: - - pos: 13.5,55.5 - parent: 1 - type: Transform - - uid: 9188 - components: - - rot: 1.5707963267948966 rad - pos: -70.5,57.5 - parent: 1 - type: Transform - - uid: 9296 - components: - - rot: 1.5707963267948966 rad - pos: -63.5,29.5 - parent: 1 - type: Transform - - uid: 9323 - components: - - pos: -67.5,32.5 - parent: 1 - type: Transform - - uid: 9626 - components: - - pos: -72.5,22.5 - parent: 1 - type: Transform - - uid: 9627 - components: - - pos: -71.5,32.5 - parent: 1 - type: Transform - - uid: 9628 - components: - - pos: -64.5,24.5 - parent: 1 - type: Transform - - uid: 9629 - components: - - pos: -65.5,24.5 - parent: 1 - type: Transform - - uid: 9630 - components: - - pos: -66.5,24.5 - parent: 1 - type: Transform - - uid: 9663 - components: - - pos: -72.5,20.5 - parent: 1 - type: Transform - - uid: 9681 - components: - - pos: -77.5,26.5 - parent: 1 - type: Transform - - uid: 9683 - components: - - pos: -77.5,24.5 - parent: 1 - type: Transform - - uid: 9684 - components: - - pos: -80.5,47.5 - parent: 1 - type: Transform - - uid: 9701 - components: - - pos: -86.5,23.5 - parent: 1 - type: Transform - - uid: 9702 - components: - - pos: -86.5,24.5 - parent: 1 - type: Transform - - uid: 9703 - components: - - pos: -86.5,25.5 - parent: 1 - type: Transform - - uid: 9704 - components: - - pos: -86.5,26.5 - parent: 1 - type: Transform - - uid: 9705 - components: - - pos: -86.5,27.5 - parent: 1 - type: Transform - - uid: 9821 - components: - - pos: -79.5,47.5 - parent: 1 - type: Transform - - uid: 9855 - components: - - pos: -69.5,18.5 - parent: 1 - type: Transform - - uid: 9856 - components: - - pos: -68.5,18.5 - parent: 1 - type: Transform - - uid: 9875 - components: - - pos: -81.5,47.5 - parent: 1 - type: Transform - - uid: 9876 - components: - - pos: -82.5,47.5 - parent: 1 - type: Transform - - uid: 9877 - components: - - pos: -83.5,47.5 - parent: 1 - type: Transform - - uid: 9878 - components: - - pos: -84.5,47.5 - parent: 1 - type: Transform - - uid: 9879 - components: - - pos: -85.5,47.5 - parent: 1 - type: Transform - - uid: 9880 - components: - - pos: -85.5,46.5 - parent: 1 - type: Transform - - uid: 9881 - components: - - pos: -85.5,45.5 - parent: 1 - type: Transform - - uid: 9882 - components: - - pos: -85.5,44.5 - parent: 1 - type: Transform - - uid: 9883 - components: - - pos: -85.5,43.5 - parent: 1 - type: Transform - - uid: 9884 - components: - - pos: -85.5,42.5 - parent: 1 - type: Transform - - uid: 9885 - components: - - pos: -85.5,41.5 - parent: 1 - type: Transform - - uid: 9886 - components: - - pos: -85.5,40.5 - parent: 1 - type: Transform - - uid: 9887 - components: - - pos: -85.5,39.5 - parent: 1 - type: Transform - - uid: 9888 - components: - - pos: -85.5,38.5 - parent: 1 - type: Transform - - uid: 9889 - components: - - pos: -85.5,37.5 - parent: 1 - type: Transform - - uid: 9890 - components: - - pos: -85.5,36.5 - parent: 1 - type: Transform - - uid: 9891 - components: - - pos: -85.5,35.5 - parent: 1 - type: Transform - - uid: 9892 - components: - - pos: -85.5,34.5 - parent: 1 - type: Transform - - uid: 9903 - components: - - rot: 3.141592653589793 rad - pos: -59.5,25.5 - parent: 1 - type: Transform - - uid: 10143 - components: - - pos: -73.5,18.5 - parent: 1 - type: Transform - - uid: 10158 - components: - - pos: -70.5,18.5 - parent: 1 - type: Transform - - uid: 10160 - components: - - pos: -69.5,27.5 - parent: 1 - type: Transform - - uid: 10164 - components: - - pos: -69.5,24.5 - parent: 1 - type: Transform - - uid: 10246 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-4.5 - parent: 1 - type: Transform - - uid: 10349 - components: - - pos: -49.5,-14.5 - parent: 1 - type: Transform - - uid: 10361 - components: - - pos: -42.5,-14.5 - parent: 1 - type: Transform - - uid: 10412 - components: - - pos: 23.5,36.5 - parent: 1 - type: Transform - - uid: 10758 - components: - - rot: -1.5707963267948966 rad - pos: -81.5,49.5 - parent: 1 - type: Transform - - uid: 10759 - components: - - rot: -1.5707963267948966 rad - pos: -83.5,49.5 - parent: 1 - type: Transform - - uid: 10761 - components: - - rot: -1.5707963267948966 rad - pos: -82.5,49.5 - parent: 1 - type: Transform - - uid: 10762 - components: - - rot: -1.5707963267948966 rad - pos: -80.5,50.5 - parent: 1 - type: Transform - - uid: 10833 - components: - - rot: -1.5707963267948966 rad - pos: -87.5,45.5 - parent: 1 - type: Transform - - uid: 10834 - components: - - rot: -1.5707963267948966 rad - pos: -87.5,43.5 - parent: 1 - type: Transform - - uid: 10835 - components: - - rot: -1.5707963267948966 rad - pos: -87.5,41.5 - parent: 1 - type: Transform - - uid: 10836 - components: - - rot: -1.5707963267948966 rad - pos: -87.5,39.5 - parent: 1 - type: Transform - - uid: 10837 - components: - - rot: -1.5707963267948966 rad - pos: -87.5,37.5 - parent: 1 - type: Transform - - uid: 10838 - components: - - rot: -1.5707963267948966 rad - pos: -87.5,35.5 - parent: 1 - type: Transform - - uid: 10926 - components: - - pos: -63.5,43.5 - parent: 1 - type: Transform - - uid: 10927 - components: - - pos: -64.5,43.5 - parent: 1 - type: Transform - - uid: 10928 - components: - - pos: -60.5,43.5 - parent: 1 - type: Transform - - uid: 10930 - components: - - pos: -61.5,43.5 - parent: 1 - type: Transform - - uid: 10957 - components: - - pos: -57.5,68.5 - parent: 1 - type: Transform - - uid: 11509 - components: - - rot: 1.5707963267948966 rad - pos: -84.5,50.5 - parent: 1 - type: Transform - - uid: 13752 - components: - - pos: -85.5,33.5 - parent: 1 - type: Transform - - uid: 13845 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-12.5 - parent: 1 - type: Transform - - uid: 13848 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,9.5 - parent: 1 - type: Transform - - uid: 13849 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,9.5 - parent: 1 - type: Transform - - uid: 14209 - components: - - pos: -43.5,-14.5 - parent: 1 - type: Transform - - uid: 14467 - components: - - pos: -59.5,68.5 - parent: 1 - type: Transform - - uid: 14469 - components: - - pos: -61.5,68.5 - parent: 1 - type: Transform - - uid: 14470 - components: - - pos: -62.5,68.5 - parent: 1 - type: Transform - - uid: 14602 - components: - - pos: -107.5,24.5 - parent: 1 - type: Transform - - uid: 14603 - components: - - pos: -107.5,25.5 - parent: 1 - type: Transform - - uid: 14606 - components: - - pos: -107.5,28.5 - parent: 1 - type: Transform - - uid: 14610 - components: - - pos: -109.5,34.5 - parent: 1 - type: Transform - - uid: 14612 - components: - - pos: -107.5,34.5 - parent: 1 - type: Transform - - uid: 14613 - components: - - pos: -107.5,35.5 - parent: 1 - type: Transform - - uid: 14614 - components: - - pos: -106.5,35.5 - parent: 1 - type: Transform - - uid: 14616 - components: - - pos: -101.5,35.5 - parent: 1 - type: Transform - - uid: 14617 - components: - - pos: -100.5,35.5 - parent: 1 - type: Transform - - uid: 14619 - components: - - pos: -98.5,35.5 - parent: 1 - type: Transform - - uid: 14620 - components: - - pos: -97.5,35.5 - parent: 1 - type: Transform - - uid: 14622 - components: - - pos: -94.5,35.5 - parent: 1 - type: Transform - - uid: 14624 - components: - - pos: -94.5,37.5 - parent: 1 - type: Transform - - uid: 14625 - components: - - pos: -94.5,38.5 - parent: 1 - type: Transform - - uid: 14626 - components: - - pos: -94.5,39.5 - parent: 1 - type: Transform - - uid: 14630 - components: - - pos: -94.5,43.5 - parent: 1 - type: Transform - - uid: 14632 - components: - - pos: -94.5,45.5 - parent: 1 - type: Transform - - uid: 14633 - components: - - pos: -94.5,46.5 - parent: 1 - type: Transform - - uid: 14636 - components: - - pos: -92.5,49.5 - parent: 1 - type: Transform - - uid: 14638 - components: - - pos: -90.5,49.5 - parent: 1 - type: Transform - - uid: 14639 - components: - - pos: -89.5,49.5 - parent: 1 - type: Transform - - uid: 14640 - components: - - pos: -88.5,49.5 - parent: 1 - type: Transform - - uid: 14642 - components: - - pos: -87.5,51.5 - parent: 1 - type: Transform - - uid: 14643 - components: - - pos: -87.5,52.5 - parent: 1 - type: Transform - - uid: 14645 - components: - - pos: -85.5,54.5 - parent: 1 - type: Transform - - uid: 14647 - components: - - pos: -83.5,54.5 - parent: 1 - type: Transform - - uid: 14648 - components: - - pos: -82.5,54.5 - parent: 1 - type: Transform - - uid: 14649 - components: - - pos: -81.5,57.5 - parent: 1 - type: Transform - - uid: 14650 - components: - - pos: -80.5,57.5 - parent: 1 - type: Transform - - uid: 14651 - components: - - pos: -68.5,62.5 - parent: 1 - type: Transform - - uid: 14653 - components: - - pos: -78.5,60.5 - parent: 1 - type: Transform - - uid: 14654 - components: - - pos: -77.5,60.5 - parent: 1 - type: Transform - - uid: 14656 - components: - - pos: -75.5,60.5 - parent: 1 - type: Transform - - uid: 14658 - components: - - pos: -73.5,60.5 - parent: 1 - type: Transform - - uid: 14660 - components: - - pos: -70.5,60.5 - parent: 1 - type: Transform - - uid: 14662 - components: - - pos: -67.5,62.5 - parent: 1 - type: Transform - - uid: 14664 - components: - - pos: -64.5,63.5 - parent: 1 - type: Transform - - uid: 14666 - components: - - pos: -64.5,65.5 - parent: 1 - type: Transform - - uid: 14667 - components: - - pos: -64.5,66.5 - parent: 1 - type: Transform - - uid: 14672 - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-13.5 - parent: 1 - type: Transform - - uid: 14673 - components: - - pos: -104.5,15.5 - parent: 1 - type: Transform - - uid: 14674 - components: - - pos: -103.5,15.5 - parent: 1 - type: Transform - - uid: 14676 - components: - - pos: -101.5,15.5 - parent: 1 - type: Transform - - uid: 14680 - components: - - pos: -94.5,15.5 - parent: 1 - type: Transform - - uid: 14681 - components: - - pos: -93.5,15.5 - parent: 1 - type: Transform - - uid: 14683 - components: - - pos: -91.5,15.5 - parent: 1 - type: Transform - - uid: 14684 - components: - - pos: -90.5,15.5 - parent: 1 - type: Transform - - uid: 14687 - components: - - pos: -85.5,14.5 - parent: 1 - type: Transform - - uid: 14688 - components: - - pos: -84.5,14.5 - parent: 1 - type: Transform - - uid: 14689 - components: - - pos: -83.5,14.5 - parent: 1 - type: Transform - - uid: 14691 - components: - - pos: -81.5,14.5 - parent: 1 - type: Transform - - uid: 14693 - components: - - pos: -78.5,13.5 - parent: 1 - type: Transform - - uid: 14695 - components: - - pos: -78.5,11.5 - parent: 1 - type: Transform - - uid: 14696 - components: - - pos: -78.5,10.5 - parent: 1 - type: Transform - - uid: 14698 - components: - - pos: -79.5,3.5 - parent: 1 - type: Transform - - uid: 14700 - components: - - pos: -79.5,4.5 - parent: 1 - type: Transform - - uid: 14702 - components: - - pos: -79.5,6.5 - parent: 1 - type: Transform - - uid: 14706 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-13.5 - parent: 1 - type: Transform - - uid: 14707 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-13.5 - parent: 1 - type: Transform - - uid: 14714 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-17.5 - parent: 1 - type: Transform - - uid: 14716 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-17.5 - parent: 1 - type: Transform - - uid: 14717 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-17.5 - parent: 1 - type: Transform - - uid: 14718 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-17.5 - parent: 1 - type: Transform - - uid: 14720 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-17.5 - parent: 1 - type: Transform - - uid: 14722 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-18.5 - parent: 1 - type: Transform - - uid: 14723 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-18.5 - parent: 1 - type: Transform - - uid: 14724 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-18.5 - parent: 1 - type: Transform - - uid: 14726 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-18.5 - parent: 1 - type: Transform - - uid: 14727 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-14.5 - parent: 1 - type: Transform - - uid: 14729 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-16.5 - parent: 1 - type: Transform - - uid: 14731 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-18.5 - parent: 1 - type: Transform - - uid: 14732 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-18.5 - parent: 1 - type: Transform - - uid: 14734 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-20.5 - parent: 1 - type: Transform - - uid: 14735 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-21.5 - parent: 1 - type: Transform - - uid: 14737 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-22.5 - parent: 1 - type: Transform - - uid: 14738 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-24.5 - parent: 1 - type: Transform - - uid: 14741 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-26.5 - parent: 1 - type: Transform - - uid: 14742 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-28.5 - parent: 1 - type: Transform - - uid: 14743 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-26.5 - parent: 1 - type: Transform - - uid: 14745 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-26.5 - parent: 1 - type: Transform - - uid: 14747 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-26.5 - parent: 1 - type: Transform - - uid: 14750 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-26.5 - parent: 1 - type: Transform - - uid: 14752 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-28.5 - parent: 1 - type: Transform - - uid: 14753 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-29.5 - parent: 1 - type: Transform - - uid: 14755 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-29.5 - parent: 1 - type: Transform - - uid: 14757 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-29.5 - parent: 1 - type: Transform - - uid: 14758 - components: - - rot: 3.141592653589793 rad - pos: 22.5,-11.5 - parent: 1 - type: Transform - - uid: 14759 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-26.5 - parent: 1 - type: Transform - - uid: 14760 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-25.5 - parent: 1 - type: Transform - - uid: 14763 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-22.5 - parent: 1 - type: Transform - - uid: 14765 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-20.5 - parent: 1 - type: Transform - - uid: 14766 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-19.5 - parent: 1 - type: Transform - - uid: 14768 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-17.5 - parent: 1 - type: Transform - - uid: 14769 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-16.5 - parent: 1 - type: Transform - - uid: 14771 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-14.5 - parent: 1 - type: Transform - - uid: 14774 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-11.5 - parent: 1 - type: Transform - - uid: 14776 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-11.5 - parent: 1 - type: Transform - - uid: 14777 - components: - - rot: 3.141592653589793 rad - pos: 25.5,-11.5 - parent: 1 - type: Transform - - uid: 14780 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-0.5 - parent: 1 - type: Transform - - uid: 14783 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-3.5 - parent: 1 - type: Transform - - uid: 14784 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-4.5 - parent: 1 - type: Transform - - uid: 14787 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-7.5 - parent: 1 - type: Transform - - uid: 14788 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-8.5 - parent: 1 - type: Transform - - uid: 14789 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-9.5 - parent: 1 - type: Transform - - uid: 14791 - components: - - rot: 3.141592653589793 rad - pos: 14.5,55.5 - parent: 1 - type: Transform - - uid: 14792 - components: - - rot: 3.141592653589793 rad - pos: 15.5,55.5 - parent: 1 - type: Transform - - uid: 14794 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,54.5 - parent: 1 - type: Transform - - uid: 14796 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,53.5 - parent: 1 - type: Transform - - uid: 14797 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,55.5 - parent: 1 - type: Transform - - uid: 14799 - components: - - rot: 3.141592653589793 rad - pos: 21.5,46.5 - parent: 1 - type: Transform - - uid: 14800 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,55.5 - parent: 1 - type: Transform - - uid: 14801 - components: - - rot: 3.141592653589793 rad - pos: 23.5,46.5 - parent: 1 - type: Transform - - uid: 14802 - components: - - rot: 3.141592653589793 rad - pos: 24.5,46.5 - parent: 1 - type: Transform - - uid: 14804 - components: - - rot: 3.141592653589793 rad - pos: 26.5,44.5 - parent: 1 - type: Transform - - uid: 14805 - components: - - rot: 3.141592653589793 rad - pos: 26.5,43.5 - parent: 1 - type: Transform - - uid: 14806 - components: - - rot: 3.141592653589793 rad - pos: 26.5,42.5 - parent: 1 - type: Transform - - uid: 14808 - components: - - rot: 3.141592653589793 rad - pos: 26.5,40.5 - parent: 1 - type: Transform - - uid: 14809 - components: - - rot: 3.141592653589793 rad - pos: 26.5,37.5 - parent: 1 - type: Transform - - uid: 14810 - components: - - rot: 3.141592653589793 rad - pos: 26.5,36.5 - parent: 1 - type: Transform - - uid: 14812 - components: - - rot: 3.141592653589793 rad - pos: 26.5,34.5 - parent: 1 - type: Transform - - uid: 14813 - components: - - rot: 3.141592653589793 rad - pos: 26.5,33.5 - parent: 1 - type: Transform - - uid: 14815 - components: - - rot: 3.141592653589793 rad - pos: 26.5,31.5 - parent: 1 - type: Transform - - uid: 14831 - components: - - pos: 10.5,-15.5 - parent: 1 - type: Transform - - uid: 14833 - components: - - pos: 9.5,-15.5 - parent: 1 - type: Transform - - uid: 15011 - components: - - pos: 12.5,-13.5 - parent: 1 - type: Transform - - uid: 15147 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,51.5 - parent: 1 - type: Transform - - uid: 15148 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,50.5 - parent: 1 - type: Transform - - uid: 15149 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,49.5 - parent: 1 - type: Transform - - uid: 15154 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,53.5 - parent: 1 - type: Transform - - uid: 15155 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,53.5 - parent: 1 - type: Transform - - uid: 15156 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,53.5 - parent: 1 - type: Transform - - uid: 15157 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,52.5 - parent: 1 - type: Transform - - uid: 15158 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,51.5 - parent: 1 - type: Transform - - uid: 15159 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,50.5 - parent: 1 - type: Transform - - uid: 15160 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,49.5 - parent: 1 - type: Transform - - uid: 15161 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,48.5 - parent: 1 - type: Transform - - uid: 15350 - components: - - pos: 28.5,32.5 - parent: 1 - type: Transform - - uid: 15352 - components: - - pos: 30.5,32.5 - parent: 1 - type: Transform - - uid: 15353 - components: - - pos: 31.5,32.5 - parent: 1 - type: Transform - - uid: 15354 - components: - - pos: 32.5,32.5 - parent: 1 - type: Transform - - uid: 15355 - components: - - pos: 32.5,31.5 - parent: 1 - type: Transform - - uid: 15357 - components: - - pos: 32.5,29.5 - parent: 1 - type: Transform - - uid: 15358 - components: - - pos: 32.5,27.5 - parent: 1 - type: Transform - - uid: 15360 - components: - - pos: 32.5,25.5 - parent: 1 - type: Transform - - uid: 15362 - components: - - pos: 32.5,23.5 - parent: 1 - type: Transform - - uid: 15363 - components: - - pos: 32.5,22.5 - parent: 1 - type: Transform - - uid: 15386 - components: - - pos: -44.5,69.5 - parent: 1 - type: Transform - - uid: 15387 - components: - - pos: -43.5,69.5 - parent: 1 - type: Transform - - uid: 15388 - components: - - pos: -42.5,69.5 - parent: 1 - type: Transform - - uid: 15389 - components: - - pos: -41.5,69.5 - parent: 1 - type: Transform - - uid: 15390 - components: - - pos: -40.5,69.5 - parent: 1 - type: Transform - - uid: 15391 - components: - - pos: -39.5,69.5 - parent: 1 - type: Transform - - uid: 15392 - components: - - pos: -38.5,69.5 - parent: 1 - type: Transform - - uid: 15393 - components: - - pos: -37.5,69.5 - parent: 1 - type: Transform - - uid: 15394 - components: - - pos: -36.5,69.5 - parent: 1 - type: Transform - - uid: 15395 - components: - - pos: -36.5,68.5 - parent: 1 - type: Transform - - uid: 15396 - components: - - pos: -36.5,67.5 - parent: 1 - type: Transform - - uid: 15397 - components: - - pos: -36.5,66.5 - parent: 1 - type: Transform - - uid: 15398 - components: - - pos: -36.5,65.5 - parent: 1 - type: Transform - - uid: 15399 - components: - - pos: -36.5,64.5 - parent: 1 - type: Transform - - uid: 15400 - components: - - pos: -36.5,63.5 - parent: 1 - type: Transform - - uid: 15401 - components: - - pos: -36.5,62.5 - parent: 1 - type: Transform - - uid: 15402 - components: - - pos: -36.5,61.5 - parent: 1 - type: Transform - - uid: 15403 - components: - - pos: -36.5,60.5 - parent: 1 - type: Transform - - uid: 15404 - components: - - pos: -36.5,59.5 - parent: 1 - type: Transform - - uid: 15436 - components: - - rot: 3.141592653589793 rad - pos: -34.5,62.5 - parent: 1 - type: Transform - - uid: 15437 - components: - - rot: 3.141592653589793 rad - pos: -34.5,63.5 - parent: 1 - type: Transform - - uid: 15438 - components: - - rot: 3.141592653589793 rad - pos: -34.5,64.5 - parent: 1 - type: Transform - - uid: 15441 - components: - - rot: 3.141592653589793 rad - pos: -34.5,67.5 - parent: 1 - type: Transform - - uid: 15442 - components: - - rot: 3.141592653589793 rad - pos: -34.5,68.5 - parent: 1 - type: Transform - - uid: 15444 - components: - - rot: 3.141592653589793 rad - pos: -34.5,70.5 - parent: 1 - type: Transform - - uid: 15445 - components: - - rot: 3.141592653589793 rad - pos: -34.5,71.5 - parent: 1 - type: Transform - - uid: 15446 - components: - - rot: 3.141592653589793 rad - pos: -35.5,71.5 - parent: 1 - type: Transform - - uid: 15448 - components: - - rot: 3.141592653589793 rad - pos: -37.5,71.5 - parent: 1 - type: Transform - - uid: 15449 - components: - - rot: 3.141592653589793 rad - pos: -38.5,71.5 - parent: 1 - type: Transform - - uid: 15451 - components: - - rot: 3.141592653589793 rad - pos: -40.5,71.5 - parent: 1 - type: Transform - - uid: 15452 - components: - - rot: 3.141592653589793 rad - pos: -41.5,71.5 - parent: 1 - type: Transform - - uid: 15453 - components: - - rot: 3.141592653589793 rad - pos: -34.5,60.5 - parent: 1 - type: Transform - - uid: 15464 - components: - - pos: -42.5,57.5 - parent: 1 - type: Transform - - uid: 15465 - components: - - pos: -40.5,58.5 - parent: 1 - type: Transform - - uid: 15467 - components: - - pos: -37.5,57.5 - parent: 1 - type: Transform - - uid: 15475 - components: - - pos: -44.5,58.5 - parent: 1 - type: Transform - - uid: 15484 - components: - - pos: -38.5,59.5 - parent: 1 - type: Transform - - uid: 15510 - components: - - pos: -1.5,-22.5 - parent: 1 - type: Transform - - uid: 15513 - components: - - pos: -6.5,-22.5 - parent: 1 - type: Transform - - uid: 15514 - components: - - pos: -7.5,-21.5 - parent: 1 - type: Transform - - uid: 15515 - components: - - pos: -7.5,-19.5 - parent: 1 - type: Transform - - uid: 15528 - components: - - pos: -0.5,-22.5 - parent: 1 - type: Transform - - uid: 15529 - components: - - pos: -3.5,-22.5 - parent: 1 - type: Transform - - uid: 15530 - components: - - pos: -5.5,-22.5 - parent: 1 - type: Transform - - uid: 15531 - components: - - pos: -7.5,-22.5 - parent: 1 - type: Transform - - uid: 15533 - components: - - pos: 2.5,-22.5 - parent: 1 - type: Transform - - uid: 15534 - components: - - pos: 3.5,-22.5 - parent: 1 - type: Transform - - uid: 15536 - components: - - pos: 5.5,-22.5 - parent: 1 - type: Transform - - uid: 15537 - components: - - pos: 6.5,-22.5 - parent: 1 - type: Transform - - uid: 15538 - components: - - pos: 7.5,-22.5 - parent: 1 - type: Transform - - uid: 15540 - components: - - pos: 10.5,-22.5 - parent: 1 - type: Transform - - uid: 15541 - components: - - pos: 11.5,-22.5 - parent: 1 - type: Transform - - uid: 15543 - components: - - pos: 13.5,-22.5 - parent: 1 - type: Transform - - uid: 15544 - components: - - pos: 14.5,-22.5 - parent: 1 - type: Transform - - uid: 15545 - components: - - pos: 14.5,-21.5 - parent: 1 - type: Transform - - uid: 15938 - components: - - pos: 17.5,-11.5 - parent: 1 - type: Transform - - uid: 15948 - components: - - pos: -52.5,30.5 - parent: 1 - type: Transform - - uid: 15949 - components: - - pos: -53.5,30.5 - parent: 1 - type: Transform - - uid: 15950 - components: - - pos: -51.5,30.5 - parent: 1 - type: Transform - - uid: 15976 - components: - - rot: 3.141592653589793 rad - pos: -24.5,30.5 - parent: 1 - type: Transform -- proto: GrilleBroken - entities: - - uid: 1053 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,7.5 - parent: 1 - type: Transform - - uid: 1138 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,7.5 - parent: 1 - type: Transform - - uid: 3154 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,22.5 - parent: 1 - type: Transform - - uid: 3430 - components: - - pos: -35.5,17.5 - parent: 1 - type: Transform - - uid: 4127 - components: - - pos: -59.5,11.5 - parent: 1 - type: Transform - - uid: 4508 - components: - - rot: -1.5707963267948966 rad - pos: -52.5,3.5 - parent: 1 - type: Transform - - uid: 4565 - components: - - rot: 3.141592653589793 rad - pos: 16.5,42.5 - parent: 1 - type: Transform - - uid: 4566 - components: - - pos: 16.5,42.5 - parent: 1 - type: Transform - - uid: 4705 - components: - - rot: 3.141592653589793 rad - pos: -59.5,13.5 - parent: 1 - type: Transform - - uid: 5319 - components: - - rot: -1.5707963267948966 rad - pos: -59.5,13.5 - parent: 1 - type: Transform - - uid: 5327 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,42.5 - parent: 1 - type: Transform - - uid: 5332 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,42.5 - parent: 1 - type: Transform - - uid: 6011 - components: - - rot: 3.141592653589793 rad - pos: -25.5,63.5 - parent: 1 - type: Transform - - uid: 6277 - components: - - pos: -18.5,70.5 - parent: 1 - type: Transform - - uid: 6672 - components: - - pos: -1.5,61.5 - parent: 1 - type: Transform - - uid: 6676 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,65.5 - parent: 1 - type: Transform - - uid: 7032 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,45.5 - parent: 1 - type: Transform - - uid: 7414 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,70.5 - parent: 1 - type: Transform - - uid: 7521 - components: - - pos: -14.5,37.5 - parent: 1 - type: Transform - - uid: 7522 - components: - - rot: 3.141592653589793 rad - pos: -14.5,40.5 - parent: 1 - type: Transform - - uid: 7524 - components: - - rot: 3.141592653589793 rad - pos: -14.5,42.5 - parent: 1 - type: Transform - - uid: 8068 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,65.5 - parent: 1 - type: Transform - - uid: 8287 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,70.5 - parent: 1 - type: Transform - - uid: 8288 - components: - - rot: 3.141592653589793 rad - pos: -8.5,67.5 - parent: 1 - type: Transform - - uid: 8974 - components: - - pos: 11.5,55.5 - parent: 1 - type: Transform - - uid: 8979 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,56.5 - parent: 1 - type: Transform - - uid: 8984 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,55.5 - parent: 1 - type: Transform - - uid: 8985 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,62.5 - parent: 1 - type: Transform - - uid: 8987 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,56.5 - parent: 1 - type: Transform - - uid: 8990 - components: - - pos: 2.5,56.5 - parent: 1 - type: Transform - - uid: 9031 - components: - - pos: -31.5,62.5 - parent: 1 - type: Transform - - uid: 9049 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,71.5 - parent: 1 - type: Transform - - uid: 9052 - components: - - rot: 3.141592653589793 rad - pos: -47.5,73.5 - parent: 1 - type: Transform - - uid: 9053 - components: - - rot: -1.5707963267948966 rad - pos: -47.5,75.5 - parent: 1 - type: Transform - - uid: 9054 - components: - - pos: -47.5,78.5 - parent: 1 - type: Transform - - uid: 9056 - components: - - rot: 1.5707963267948966 rad - pos: -65.5,86.5 - parent: 1 - type: Transform - - uid: 9064 - components: - - pos: -65.5,88.5 - parent: 1 - type: Transform - - uid: 9078 - components: - - rot: -1.5707963267948966 rad - pos: -64.5,90.5 - parent: 1 - type: Transform - - uid: 9081 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,71.5 - parent: 1 - type: Transform - - uid: 9083 - components: - - pos: -43.5,71.5 - parent: 1 - type: Transform - - uid: 9084 - components: - - pos: -65.5,83.5 - parent: 1 - type: Transform - - uid: 9085 - components: - - pos: -55.5,76.5 - parent: 1 - type: Transform - - uid: 9093 - components: - - rot: 3.141592653589793 rad - pos: -58.5,68.5 - parent: 1 - type: Transform - - uid: 9098 - components: - - pos: -60.5,68.5 - parent: 1 - type: Transform - - uid: 9100 - components: - - rot: 1.5707963267948966 rad - pos: -63.5,68.5 - parent: 1 - type: Transform - - uid: 9902 - components: - - rot: 3.141592653589793 rad - pos: -59.5,24.5 - parent: 1 - type: Transform - - uid: 9979 - components: - - rot: 3.141592653589793 rad - pos: -59.5,11.5 - parent: 1 - type: Transform - - uid: 10411 - components: - - pos: 22.5,36.5 - parent: 1 - type: Transform - - uid: 10416 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,36.5 - parent: 1 - type: Transform - - uid: 10427 - components: - - rot: 3.141592653589793 rad - pos: 22.5,36.5 - parent: 1 - type: Transform - - uid: 10428 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,36.5 - parent: 1 - type: Transform - - uid: 14601 - components: - - pos: -107.5,23.5 - parent: 1 - type: Transform - - uid: 14604 - components: - - pos: -107.5,29.5 - parent: 1 - type: Transform - - uid: 14605 - components: - - pos: -107.5,26.5 - parent: 1 - type: Transform - - uid: 14607 - components: - - rot: 1.5707963267948966 rad - pos: -107.5,27.5 - parent: 1 - type: Transform - - uid: 14608 - components: - - pos: -99.5,35.5 - parent: 1 - type: Transform - - uid: 14609 - components: - - rot: -1.5707963267948966 rad - pos: -105.5,35.5 - parent: 1 - type: Transform - - uid: 14611 - components: - - rot: 1.5707963267948966 rad - pos: -110.5,34.5 - parent: 1 - type: Transform - - uid: 14615 - components: - - rot: 1.5707963267948966 rad - pos: -102.5,35.5 - parent: 1 - type: Transform - - uid: 14618 - components: - - rot: 3.141592653589793 rad - pos: -94.5,36.5 - parent: 1 - type: Transform - - uid: 14621 - components: - - rot: -1.5707963267948966 rad - pos: -96.5,35.5 - parent: 1 - type: Transform - - uid: 14623 - components: - - pos: -94.5,40.5 - parent: 1 - type: Transform - - uid: 14627 - components: - - rot: 3.141592653589793 rad - pos: -94.5,42.5 - parent: 1 - type: Transform - - uid: 14628 - components: - - rot: 1.5707963267948966 rad - pos: -82.5,57.5 - parent: 1 - type: Transform - - uid: 14629 - components: - - pos: -94.5,44.5 - parent: 1 - type: Transform - - uid: 14631 - components: - - rot: 1.5707963267948966 rad - pos: -86.5,14.5 - parent: 1 - type: Transform - - uid: 14634 - components: - - pos: -94.5,47.5 - parent: 1 - type: Transform - - uid: 14635 - components: - - rot: 1.5707963267948966 rad - pos: -93.5,49.5 - parent: 1 - type: Transform - - uid: 14637 - components: - - rot: -1.5707963267948966 rad - pos: -91.5,49.5 - parent: 1 - type: Transform - - uid: 14641 - components: - - rot: -1.5707963267948966 rad - pos: -87.5,49.5 - parent: 1 - type: Transform - - uid: 14644 - components: - - rot: -1.5707963267948966 rad - pos: -84.5,54.5 - parent: 1 - type: Transform - - uid: 14646 - components: - - pos: -86.5,54.5 - parent: 1 - type: Transform - - uid: 14652 - components: - - rot: -1.5707963267948966 rad - pos: -74.5,60.5 - parent: 1 - type: Transform - - uid: 14655 - components: - - pos: -76.5,60.5 - parent: 1 - type: Transform - - uid: 14657 - components: - - rot: 1.5707963267948966 rad - pos: -79.5,60.5 - parent: 1 - type: Transform - - uid: 14659 - components: - - rot: -1.5707963267948966 rad - pos: -69.5,60.5 - parent: 1 - type: Transform - - uid: 14661 - components: - - pos: -71.5,60.5 - parent: 1 - type: Transform - - uid: 14663 - components: - - rot: -1.5707963267948966 rad - pos: -66.5,62.5 - parent: 1 - type: Transform - - uid: 14665 - components: - - rot: 1.5707963267948966 rad - pos: -64.5,64.5 - parent: 1 - type: Transform - - uid: 14668 - components: - - rot: -1.5707963267948966 rad - pos: -79.5,57.5 - parent: 1 - type: Transform - - uid: 14669 - components: - - rot: -1.5707963267948966 rad - pos: -81.5,54.5 - parent: 1 - type: Transform - - uid: 14670 - components: - - pos: -108.5,34.5 - parent: 1 - type: Transform - - uid: 14671 - components: - - rot: 3.141592653589793 rad - pos: -87.5,50.5 - parent: 1 - type: Transform - - uid: 14677 - components: - - rot: 1.5707963267948966 rad - pos: -102.5,15.5 - parent: 1 - type: Transform - - uid: 14678 - components: - - rot: 1.5707963267948966 rad - pos: -105.5,15.5 - parent: 1 - type: Transform - - uid: 14679 - components: - - rot: -1.5707963267948966 rad - pos: -100.5,15.5 - parent: 1 - type: Transform - - uid: 14682 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-11.5 - parent: 1 - type: Transform - - uid: 14685 - components: - - rot: 1.5707963267948966 rad - pos: -95.5,15.5 - parent: 1 - type: Transform - - uid: 14686 - components: - - rot: -1.5707963267948966 rad - pos: -89.5,15.5 - parent: 1 - type: Transform - - uid: 14690 - components: - - rot: 1.5707963267948966 rad - pos: -92.5,15.5 - parent: 1 - type: Transform - - uid: 14692 - components: - - rot: 3.141592653589793 rad - pos: -82.5,14.5 - parent: 1 - type: Transform - - uid: 14694 - components: - - rot: 1.5707963267948966 rad - pos: -78.5,12.5 - parent: 1 - type: Transform - - uid: 14697 - components: - - rot: 3.141592653589793 rad - pos: -78.5,9.5 - parent: 1 - type: Transform - - uid: 14699 - components: - - rot: -1.5707963267948966 rad - pos: -80.5,14.5 - parent: 1 - type: Transform - - uid: 14701 - components: - - pos: -79.5,5.5 - parent: 1 - type: Transform - - uid: 14703 - components: - - rot: 1.5707963267948966 rad - pos: -79.5,7.5 - parent: 1 - type: Transform - - uid: 14709 - components: - - anchored: False - rot: 1.5707963267948966 rad - pos: -55.060143,-12.660082 - parent: 5005 - type: Transform - - bodyType: Dynamic - type: Physics - - uid: 14715 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-18.5 - parent: 1 - type: Transform - - uid: 14719 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-18.5 - parent: 1 - type: Transform - - uid: 14721 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-17.5 - parent: 1 - type: Transform - - uid: 14725 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-17.5 - parent: 1 - type: Transform - - uid: 14728 - components: - - rot: 3.141592653589793 rad - pos: 29.5,-29.5 - parent: 1 - type: Transform - - uid: 14730 - components: - - pos: 26.5,-27.5 - parent: 1 - type: Transform - - uid: 14733 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-15.5 - parent: 1 - type: Transform - - uid: 14736 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-27.5 - parent: 1 - type: Transform - - uid: 14739 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-12.5 - parent: 1 - type: Transform - - uid: 14740 - components: - - pos: 30.5,-24.5 - parent: 1 - type: Transform - - uid: 14744 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-23.5 - parent: 1 - type: Transform - - uid: 14746 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-21.5 - parent: 1 - type: Transform - - uid: 14748 - components: - - pos: 17.5,-19.5 - parent: 1 - type: Transform - - uid: 14749 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-22.5 - parent: 1 - type: Transform - - uid: 14751 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-18.5 - parent: 1 - type: Transform - - uid: 14754 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-23.5 - parent: 1 - type: Transform - - uid: 14756 - components: - - pos: 30.5,-15.5 - parent: 1 - type: Transform - - uid: 14761 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-29.5 - parent: 1 - type: Transform - - uid: 14762 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-26.5 - parent: 1 - type: Transform - - uid: 14764 - components: - - pos: 30.5,-13.5 - parent: 1 - type: Transform - - uid: 14767 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-25.5 - parent: 1 - type: Transform - - uid: 14770 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-26.5 - parent: 1 - type: Transform - - uid: 14772 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-26.5 - parent: 1 - type: Transform - - uid: 14773 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-26.5 - parent: 1 - type: Transform - - uid: 14775 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-17.5 - parent: 1 - type: Transform - - uid: 14778 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-11.5 - parent: 1 - type: Transform - - uid: 14781 - components: - - pos: 32.5,-6.5 - parent: 1 - type: Transform - - uid: 14782 - components: - - rot: 3.141592653589793 rad - pos: 32.5,-10.5 - parent: 1 - type: Transform - - uid: 14785 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-5.5 - parent: 1 - type: Transform - - uid: 14786 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-2.5 - parent: 1 - type: Transform - - uid: 14790 - components: - - rot: 3.141592653589793 rad - pos: 32.5,-1.5 - parent: 1 - type: Transform - - uid: 14795 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,46.5 - parent: 1 - type: Transform - - uid: 14798 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,55.5 - parent: 1 - type: Transform - - uid: 14803 - components: - - pos: 26.5,45.5 - parent: 1 - type: Transform - - uid: 14807 - components: - - rot: 3.141592653589793 rad - pos: 26.5,41.5 - parent: 1 - type: Transform - - uid: 14811 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,35.5 - parent: 1 - type: Transform - - uid: 14814 - components: - - pos: 26.5,32.5 - parent: 1 - type: Transform - - uid: 15150 - components: - - rot: 3.141592653589793 rad - pos: 21.5,48.5 - parent: 1 - type: Transform - - uid: 15151 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,52.5 - parent: 1 - type: Transform - - uid: 15152 - components: - - pos: 21.5,55.5 - parent: 1 - type: Transform - - uid: 15153 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,55.5 - parent: 1 - type: Transform - - uid: 15351 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,32.5 - parent: 1 - type: Transform - - uid: 15356 - components: - - rot: 3.141592653589793 rad - pos: 32.5,30.5 - parent: 1 - type: Transform - - uid: 15359 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,26.5 - parent: 1 - type: Transform - - uid: 15361 - components: - - pos: 32.5,24.5 - parent: 1 - type: Transform - - uid: 15364 - components: - - rot: 3.141592653589793 rad - pos: 32.5,21.5 - parent: 1 - type: Transform - - uid: 15435 - components: - - pos: -34.5,61.5 - parent: 1 - type: Transform - - uid: 15439 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,65.5 - parent: 1 - type: Transform - - uid: 15440 - components: - - rot: 3.141592653589793 rad - pos: -34.5,66.5 - parent: 1 - type: Transform - - uid: 15443 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,69.5 - parent: 1 - type: Transform - - uid: 15447 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,71.5 - parent: 1 - type: Transform - - uid: 15450 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,71.5 - parent: 1 - type: Transform - - uid: 15504 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-22.5 - parent: 1 - type: Transform - - uid: 15511 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-22.5 - parent: 1 - type: Transform - - uid: 15512 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-22.5 - parent: 1 - type: Transform - - uid: 15532 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-20.5 - parent: 1 - type: Transform - - uid: 15539 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-22.5 - parent: 1 - type: Transform - - uid: 15542 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-22.5 - parent: 1 - type: Transform - - uid: 15546 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-20.5 - parent: 1 - type: Transform - - uid: 15851 - components: - - pos: 24.5,39.5 - parent: 1 - type: Transform -- proto: Handcuffs - entities: - - uid: 10917 - components: - - pos: -13.576752,65.56619 - parent: 1 - type: Transform -- proto: HandheldGPSBasic - entities: - - uid: 15784 - components: - - pos: -37.37278,-10.030424 - parent: 1 - type: Transform - - uid: 15785 - components: - - pos: -37.607155,-10.327299 - parent: 1 - type: Transform -- proto: HandheldHealthAnalyzer - entities: - - uid: 373 - components: - - pos: 5.543945,-11.373774 - parent: 1 - type: Transform -- proto: HarpInstrument - entities: - - uid: 6335 - components: - - pos: 15.5,52.5 - parent: 1 - type: Transform -- proto: HeadSkeleton - entities: - - uid: 6645 - components: - - flags: SessionSpecific - name: captain's skull - type: MetaData - - pos: -14.534092,66.507454 - parent: 1 - type: Transform - - baseSprintSpeed: 2.5 - type: MovementSpeedModifier - - type: GhostTakeoverAvailable - - type: MindContainer - - type: InputMover - - type: MobMover - - type: MovementAlwaysTouching - - type: CanEscapeInventory -- proto: HighSecArmoryLocked - entities: - - uid: 6682 - components: - - pos: -44.5,62.5 - parent: 1 - type: Transform - - uid: 7869 - components: - - pos: -44.5,64.5 - parent: 1 - type: Transform -- proto: HighSecCommandLocked - entities: - - uid: 2752 - components: - - pos: 26.5,4.5 - parent: 1 - type: Transform - - uid: 2970 - components: - - pos: 26.5,22.5 - parent: 1 - type: Transform - - uid: 6196 - components: - - pos: 10.5,41.5 - parent: 1 - type: Transform - - uid: 6396 - components: - - pos: -19.5,54.5 - parent: 1 - type: Transform -- proto: HospitalCurtainsOpen - entities: - - uid: 1404 - components: - - pos: 10.5,30.5 - parent: 1 - type: Transform - - uid: 1406 - components: - - pos: 11.5,30.5 - parent: 1 - type: Transform - - uid: 1407 - components: - - pos: 12.5,30.5 - parent: 1 - type: Transform - - uid: 1896 - components: - - pos: 7.5,30.5 - parent: 1 - type: Transform - - uid: 1897 - components: - - pos: 8.5,30.5 - parent: 1 - type: Transform - - uid: 1908 - components: - - pos: 9.5,30.5 - parent: 1 - type: Transform - - uid: 15349 - components: - - pos: -5.5,58.5 - parent: 1 - type: Transform -- proto: hydroponicsSoil - entities: - - uid: 7306 - components: - - pos: -62.5,83.5 - parent: 1 - type: Transform - - uid: 7311 - components: - - pos: -62.5,85.5 - parent: 1 - type: Transform - - uid: 7326 - components: - - pos: -62.5,84.5 - parent: 1 - type: Transform -- proto: HydroponicsToolClippers - entities: - - uid: 6951 - components: - - pos: -42.941048,47.547256 - parent: 1 - type: Transform -- proto: HydroponicsToolMiniHoe - entities: - - uid: 6939 - components: - - pos: -42.847298,47.547256 - parent: 1 - type: Transform - - uid: 7724 - components: - - pos: -60.46126,83.48959 - parent: 1 - type: Transform -- proto: HydroponicsToolSpade - entities: - - uid: 7725 - components: - - pos: -61.46126,88.67473 - parent: 1 - type: Transform -- proto: hydroponicsTray - entities: - - uid: 185 - components: - - pos: -41.5,52.5 - parent: 1 - type: Transform - - uid: 186 - components: - - pos: -42.5,52.5 - parent: 1 - type: Transform - - uid: 6860 - components: - - pos: -43.5,45.5 - parent: 1 - type: Transform - - uid: 6861 - components: - - pos: -43.5,44.5 - parent: 1 - type: Transform - - uid: 6862 - components: - - pos: -43.5,43.5 - parent: 1 - type: Transform - - uid: 6863 - components: - - pos: -42.5,45.5 - parent: 1 - type: Transform - - uid: 6864 - components: - - pos: -42.5,44.5 - parent: 1 - type: Transform - - uid: 6865 - components: - - pos: -42.5,43.5 - parent: 1 - type: Transform - - uid: 6866 - components: - - pos: -41.5,45.5 - parent: 1 - type: Transform - - uid: 6867 - components: - - pos: -41.5,44.5 - parent: 1 - type: Transform - - uid: 6868 - components: - - pos: -41.5,43.5 - parent: 1 - type: Transform - - uid: 6869 - components: - - pos: -44.5,41.5 - parent: 1 - type: Transform - - uid: 6870 - components: - - pos: -43.5,41.5 - parent: 1 - type: Transform - - uid: 6871 - components: - - pos: -42.5,41.5 - parent: 1 - type: Transform - - uid: 6872 - components: - - pos: -41.5,41.5 - parent: 1 - type: Transform -- proto: InflatableDoor - entities: - - uid: 290 - components: - - pos: -1.5,-6.5 - parent: 1 - type: Transform - - uid: 2252 - components: - - pos: -63.5,7.5 - parent: 1 - type: Transform - - uid: 2828 - components: - - pos: -27.5,28.5 - parent: 1 - type: Transform - - uid: 2967 - components: - - pos: 23.5,21.5 - parent: 1 - type: Transform - - uid: 2968 - components: - - pos: 22.5,21.5 - parent: 1 - type: Transform - - uid: 7945 - components: - - pos: -35.5,12.5 - parent: 1 - type: Transform -- proto: InflatableWall - entities: - - uid: 477 - components: - - pos: 5.5,-1.5 - parent: 1 - type: Transform - - uid: 681 - components: - - pos: 25.5,-2.5 - parent: 1 - type: Transform - - uid: 691 - components: - - pos: 21.5,-4.5 - parent: 1 - type: Transform - - uid: 692 - components: - - pos: 21.5,-5.5 - parent: 1 - type: Transform - - uid: 693 - components: - - pos: 23.5,0.5 - parent: 1 - type: Transform - - uid: 1000 - components: - - pos: 20.5,12.5 - parent: 1 - type: Transform - - uid: 1191 - components: - - pos: 15.5,16.5 - parent: 1 - type: Transform - - uid: 3044 - components: - - pos: -21.5,28.5 - parent: 1 - type: Transform - - uid: 3045 - components: - - pos: -21.5,29.5 - parent: 1 - type: Transform - - uid: 3117 - components: - - pos: -27.5,27.5 - parent: 1 - type: Transform - - uid: 3118 - components: - - pos: -32.5,30.5 - parent: 1 - type: Transform - - uid: 3144 - components: - - pos: -33.5,30.5 - parent: 1 - type: Transform - - uid: 3146 - components: - - pos: -34.5,14.5 - parent: 1 - type: Transform - - uid: 3164 - components: - - pos: -28.5,22.5 - parent: 1 - type: Transform - - uid: 4523 - components: - - pos: -55.5,-5.5 - parent: 1 - type: Transform - - uid: 4527 - components: - - pos: -50.5,0.5 - parent: 1 - type: Transform - - uid: 5177 - components: - - pos: -62.5,7.5 - parent: 1 - type: Transform - - uid: 5184 - components: - - pos: -65.5,7.5 - parent: 1 - type: Transform - - uid: 5185 - components: - - pos: -64.5,7.5 - parent: 1 - type: Transform - - uid: 7569 - components: - - pos: -35.5,11.5 - parent: 1 - type: Transform -- proto: InflatableWallStack1 - entities: - - uid: 335 - components: - - pos: -82.4705,30.370302 - parent: 1 - type: Transform - - uid: 7229 - components: - - pos: -82.4705,30.370302 - parent: 1 - type: Transform - - uid: 10734 - components: - - pos: -82.4705,30.370302 - parent: 1 - type: Transform -- proto: IngotGold - entities: - - uid: 10870 - components: - - pos: -20.428497,57.597878 - parent: 1 - type: Transform -- proto: IntercomAll - entities: - - uid: 8604 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,37.5 - parent: 1 - type: Transform - - uid: 8605 - components: - - rot: 3.141592653589793 rad - pos: -6.5,58.5 - parent: 1 - type: Transform -- proto: IntercomCommand - entities: - - uid: 8606 - components: - - rot: 3.141592653589793 rad - pos: -14.5,61.5 - parent: 1 - type: Transform - - uid: 8607 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,53.5 - parent: 1 - type: Transform - - uid: 8608 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,55.5 - parent: 1 - type: Transform -- proto: IntercomCommon - entities: - - uid: 4801 - components: - - rot: 3.141592653589793 rad - pos: -73.5,-12.5 - parent: 1 - type: Transform - - uid: 8609 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,48.5 - parent: 1 - type: Transform - - uid: 8610 - components: - - rot: 3.141592653589793 rad - pos: -8.5,26.5 - parent: 1 - type: Transform - - uid: 8611 - components: - - pos: -27.5,34.5 - parent: 1 - type: Transform - - uid: 8612 - components: - - rot: 3.141592653589793 rad - pos: -35.5,22.5 - parent: 1 - type: Transform - - uid: 8613 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,39.5 - parent: 1 - type: Transform - - uid: 8614 - components: - - rot: -1.5707963267948966 rad - pos: -55.5,28.5 - parent: 1 - type: Transform - - uid: 8615 - components: - - rot: 3.141592653589793 rad - pos: -53.5,11.5 - parent: 1 - type: Transform - - uid: 8618 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,12.5 - parent: 1 - type: Transform - - uid: 8619 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,10.5 - parent: 1 - type: Transform - - uid: 8620 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,16.5 - parent: 1 - type: Transform - - uid: 8621 - components: - - pos: 3.5,7.5 - parent: 1 - type: Transform - - uid: 8622 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,1.5 - parent: 1 - type: Transform - - uid: 8623 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,15.5 - parent: 1 - type: Transform -- proto: IntercomEngineering - entities: - - uid: 14171 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,34.5 - parent: 1 - type: Transform - - uid: 14172 - components: - - rot: 1.5707963267948966 rad - pos: -68.5,26.5 - parent: 1 - type: Transform - - uid: 14173 - components: - - pos: -81.5,28.5 - parent: 1 - type: Transform - - uid: 14174 - components: - - rot: -1.5707963267948966 rad - pos: -75.5,32.5 - parent: 1 - type: Transform - - uid: 14175 - components: - - rot: 3.141592653589793 rad - pos: -65.5,18.5 - parent: 1 - type: Transform - - uid: 14176 - components: - - rot: -1.5707963267948966 rad - pos: -67.5,16.5 - parent: 1 - type: Transform - - uid: 14177 - components: - - rot: -1.5707963267948966 rad - pos: -72.5,29.5 - parent: 1 - type: Transform -- proto: IntercomMedical - entities: - - uid: 8629 - components: - - pos: -3.5,35.5 - parent: 1 - type: Transform - - uid: 8630 - components: - - rot: 3.141592653589793 rad - pos: 1.5,35.5 - parent: 1 - type: Transform - - uid: 8632 - components: - - rot: 3.141592653589793 rad - pos: 9.5,27.5 - parent: 1 - type: Transform - - uid: 8633 - components: - - rot: 3.141592653589793 rad - pos: 9.5,21.5 - parent: 1 - type: Transform - - uid: 8634 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,18.5 - parent: 1 - type: Transform - - uid: 8635 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,21.5 - parent: 1 - type: Transform - - uid: 15134 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,35.5 - parent: 1 - type: Transform -- proto: IntercomScience - entities: - - uid: 8624 - components: - - rot: 3.141592653589793 rad - pos: -5.5,3.5 - parent: 1 - type: Transform - - uid: 8625 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-3.5 - parent: 1 - type: Transform - - uid: 8626 - components: - - pos: -1.5,-0.5 - parent: 1 - type: Transform - - uid: 8627 - components: - - pos: 0.5,-7.5 - parent: 1 - type: Transform - - uid: 8628 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-11.5 - parent: 1 - type: Transform -- proto: IntercomSecurity - entities: - - uid: 8643 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,51.5 - parent: 1 - type: Transform - - uid: 8644 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,58.5 - parent: 1 - type: Transform - - uid: 8645 - components: - - rot: 1.5707963267948966 rad - pos: -57.5,64.5 - parent: 1 - type: Transform - - uid: 8646 - components: - - rot: 1.5707963267948966 rad - pos: -62.5,64.5 - parent: 1 - type: Transform - - uid: 8647 - components: - - rot: -1.5707963267948966 rad - pos: -58.5,51.5 - parent: 1 - type: Transform - - uid: 8649 - components: - - rot: -1.5707963267948966 rad - pos: -56.5,85.5 - parent: 1 - type: Transform - - uid: 8650 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,57.5 - parent: 1 - type: Transform -- proto: IntercomService - entities: - - uid: 8639 - components: - - pos: -34.5,41.5 - parent: 1 - type: Transform - - uid: 8640 - components: - - pos: -28.5,48.5 - parent: 1 - type: Transform - - uid: 8641 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,45.5 - parent: 1 - type: Transform - - uid: 8642 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,51.5 - parent: 1 - type: Transform -- proto: IntercomSupply - entities: - - uid: 8636 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,2.5 - parent: 1 - type: Transform - - uid: 8637 - components: - - pos: -41.5,-8.5 - parent: 1 - type: Transform - - uid: 8638 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-8.5 - parent: 1 - type: Transform -- proto: JanitorialTrolley - entities: - - uid: 7100 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,37.5 - parent: 1 - type: Transform -- proto: KitchenKnife - entities: - - uid: 6953 - components: - - pos: -36.41309,45.528122 - parent: 1 - type: Transform -- proto: KitchenMicrowave - entities: - - uid: 6906 - components: - - pos: -33.5,42.5 - parent: 1 - type: Transform - - uid: 6907 - components: - - pos: -36.5,47.5 - parent: 1 - type: Transform - - uid: 7320 - components: - - pos: -61.5,89.5 - parent: 1 - type: Transform - - uid: 7944 - components: - - pos: -56.5,63.5 - parent: 1 - type: Transform -- proto: KitchenReagentGrinder - entities: - - uid: 1951 - components: - - pos: -4.5,24.5 - parent: 1 - type: Transform - - uid: 6908 - components: - - pos: -34.5,45.5 - parent: 1 - type: Transform - - uid: 7722 - components: - - pos: -58.5,89.5 - parent: 1 - type: Transform -- proto: KitchenSpike - entities: - - uid: 2304 - components: - - pos: -76.5,55.5 - parent: 1 - type: Transform - - uid: 6924 - components: - - pos: -27.5,46.5 - parent: 1 - type: Transform - - uid: 6925 - components: - - pos: -27.5,47.5 - parent: 1 - type: Transform -- proto: Lamp - entities: - - uid: 3199 - components: - - pos: -27.497456,17.876417 - parent: 1 - type: Transform - - uid: 3748 - components: - - pos: -45.525093,-7.0754695 - parent: 1 - type: Transform - - uid: 3750 - components: - - pos: -46.478218,0.9660685 - parent: 1 - type: Transform - - uid: 4559 - components: - - rot: 3.141592653589793 rad - pos: 18.546034,40.734077 - parent: 1 - type: Transform - - uid: 4560 - components: - - rot: 3.141592653589793 rad - pos: 23.577284,40.655952 - parent: 1 - type: Transform - - uid: 4569 - components: - - rot: 3.141592653589793 rad - pos: 17.514784,42.687202 - parent: 1 - type: Transform - - uid: 4708 - components: - - pos: -32.32265,-5.1474953 - parent: 1 - type: Transform - - uid: 7556 - components: - - pos: -22.548872,46.863678 - parent: 1 - type: Transform - - uid: 7940 - components: - - pos: -60.466248,63.997437 - parent: 1 - type: Transform - - uid: 10944 - components: - - pos: -60.49684,41.882523 - parent: 1 - type: Transform - - uid: 10945 - components: - - pos: -63.449966,40.007523 - parent: 1 - type: Transform - - uid: 12032 - components: - - pos: -31.488277,-3.1049178 - parent: 1 - type: Transform - - uid: 12783 - components: - - pos: 14.50122,31.915655 - parent: 1 - type: Transform - - uid: 14290 - components: - - pos: -71.492615,49.83911 - parent: 1 - type: Transform - - uid: 15788 - components: - - pos: -38.52308,-9.139799 - parent: 1 - type: Transform - - uid: 15797 - components: - - pos: -70.46455,15.962357 - parent: 1 - type: Transform -- proto: LampBanana - entities: - - uid: 4231 - components: - - pos: -40.489174,28.7831 - parent: 1 - type: Transform -- proto: LampGold - entities: - - uid: 2751 - components: - - pos: 21.502605,-1.9941196 - parent: 1 - type: Transform - - uid: 3197 - components: - - pos: -31.497456,9.898998 - parent: 1 - type: Transform - - uid: 3198 - components: - - pos: -24.497456,9.867748 - parent: 1 - type: Transform - - uid: 5510 - components: - - pos: -53.465157,-0.32265806 - parent: 1 - type: Transform - - uid: 5511 - components: - - pos: -54.496407,-5.055279 - parent: 1 - type: Transform - - uid: 7399 - components: - - pos: 9.4932995,46.83763 - parent: 1 - type: Transform -- proto: LandMineExplosive - entities: - - uid: 15456 - components: - - pos: -42.49931,68.53585 - parent: 1 - type: Transform - - uid: 15457 - components: - - pos: -37.49931,61.461067 - parent: 1 - type: Transform - - uid: 15488 - components: - - pos: -38.49931,64.50794 - parent: 1 - type: Transform - - uid: 15489 - components: - - pos: -37.483685,67.49232 - parent: 1 - type: Transform - - uid: 15490 - components: - - pos: -39.483685,68.52357 - parent: 1 - type: Transform -- proto: Lantern - entities: - - uid: 621 - components: - - pos: 19.562792,-8.525764 - parent: 1 - type: Transform - - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 15037 - type: ContainerContainer -- proto: LargeBeaker - entities: - - uid: 1988 - components: - - pos: -0.2943699,22.171614 - parent: 1 - type: Transform -- proto: LauncherCreamPie - entities: - - uid: 4241 - components: - - pos: -42.484016,28.536114 - parent: 1 - type: Transform -- proto: LockerAtmosphericsFilledHardsuit - entities: - - uid: 137 - components: - - pos: -79.5,29.5 - parent: 1 - type: Transform - - uid: 143 - components: - - pos: -80.5,29.5 - parent: 1 - type: Transform - - uid: 580 - components: - - pos: -81.5,29.5 - parent: 1 - type: Transform -- proto: LockerBoozeFilled - entities: - - uid: 9732 - components: - - pos: -28.5,35.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 9733 - components: - - pos: -28.5,38.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerBotanistFilled - entities: - - uid: 5788 - components: - - pos: -39.5,52.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5794 - components: - - pos: -40.5,52.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerCaptainFilledHardsuit - entities: - - uid: 187 - components: - - pos: -9.5,61.5 - parent: 1 - type: Transform -- proto: LockerChemistryFilled - entities: - - uid: 1946 - components: - - pos: -2.5,19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 1947 - components: - - pos: -1.5,19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerChiefEngineerFilled - entities: - - uid: 10725 - components: - - pos: -68.5,15.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerChiefMedicalOfficerFilledHardsuit - entities: - - uid: 62 - components: - - pos: 14.5,32.5 - parent: 1 - type: Transform -- proto: LockerDetectiveFilled - entities: - - uid: 14281 - components: - - pos: -69.5,49.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerEngineerFilledHardsuit - entities: - - uid: 188 - components: - - pos: -67.5,31.5 - parent: 1 - type: Transform - - uid: 189 - components: - - pos: -67.5,30.5 - parent: 1 - type: Transform - - uid: 218 - components: - - pos: -67.5,29.5 - parent: 1 - type: Transform - - uid: 247 - components: - - pos: -67.5,28.5 - parent: 1 - type: Transform - - uid: 298 - components: - - pos: -67.5,27.5 - parent: 1 - type: Transform -- proto: LockerEvidence - entities: - - uid: 7425 - components: - - pos: -50.5,84.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 7433 - components: - - pos: -50.5,83.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 8013 - components: - - pos: -55.5,53.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 8651 - components: - - pos: -52.5,53.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerFreezer - entities: - - uid: 6929 - components: - - pos: -29.5,44.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerHeadOfPersonnelFilled - entities: - - uid: 7536 - components: - - pos: -22.5,48.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerHeadOfSecurityFilled - entities: - - uid: 7934 - components: - - pos: -61.5,63.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerMedicalFilled - entities: - - uid: 2024 - components: - - pos: 6.5,26.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 2028 - components: - - pos: 7.5,26.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 2029 - components: - - pos: 8.5,26.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 2030 - components: - - pos: 9.5,26.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerQuarterMasterFilled - entities: - - uid: 3668 - components: - - pos: -43.5,-6.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerResearchDirectorFilled - entities: - - uid: 245 - components: - - pos: -1.5,0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459902 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 3698 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerSalvageSpecialistFilledHardsuit - entities: - - uid: 299 - components: - - pos: -43.5,-13.5 - parent: 1 - type: Transform - - uid: 300 - components: - - pos: -42.5,-13.5 - parent: 1 - type: Transform - - uid: 301 - components: - - pos: -41.5,-13.5 - parent: 1 - type: Transform -- proto: LockerScienceFilled - entities: - - uid: 231 - components: - - pos: -6.5,-4.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 232 - components: - - pos: -6.5,-3.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 243 - components: - - pos: -8.5,-4.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 244 - components: - - pos: -8.5,-3.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerSecurityFilled - entities: - - uid: 1923 - components: - - pos: -63.5,55.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 1924 - components: - - pos: -65.5,55.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 1925 - components: - - pos: -62.5,55.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 7904 - components: - - pos: -64.5,55.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 7975 - components: - - pos: -57.5,58.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerWardenFilledHardsuit - entities: - - uid: 4163 - components: - - pos: -46.5,57.5 - parent: 1 - type: Transform -- proto: MachineAnomalyGenerator - entities: - - uid: 1859 - components: - - pos: -14.5,-11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound -- proto: MachineAnomalyVessel - entities: - - uid: 587 - components: - - pos: -11.5,-10.5 - parent: 1 - type: Transform -- proto: MachineAPE - entities: - - uid: 312 - components: - - pos: -11.5,-13.5 - parent: 1 - type: Transform - - uid: 321 - components: - - pos: -11.5,-14.5 - parent: 1 - type: Transform -- proto: MachineArtifactAnalyzer - entities: - - uid: 347 - components: - - pos: 1.5,-14.5 - parent: 1 - type: Transform - - links: - - 341 - type: DeviceLinkSink -- proto: MachineFrame - entities: - - uid: 253 - components: - - pos: -5.5,0.5 - parent: 1 - type: Transform - - uid: 1356 - components: - - pos: 0.5,37.5 - parent: 1 - type: Transform - - uid: 1401 - components: - - pos: 0.5,39.5 - parent: 1 - type: Transform - - uid: 1940 - components: - - pos: -4.5,22.5 - parent: 1 - type: Transform - - uid: 1952 - components: - - pos: -4.5,23.5 - parent: 1 - type: Transform - - uid: 2041 - components: - - pos: 4.5,36.5 - parent: 1 - type: Transform - - uid: 9968 - components: - - pos: -84.5,26.5 - parent: 1 - type: Transform - - uid: 9969 - components: - - pos: -84.5,25.5 - parent: 1 - type: Transform - - uid: 9970 - components: - - pos: -84.5,24.5 - parent: 1 - type: Transform - - uid: 9971 - components: - - pos: -83.5,25.5 - parent: 1 - type: Transform - - uid: 9972 - components: - - pos: -82.5,25.5 - parent: 1 - type: Transform - - uid: 9973 - components: - - pos: -81.5,25.5 - parent: 1 - type: Transform - - uid: 13661 - components: - - pos: -12.5,-14.5 - parent: 1 - type: Transform -- proto: MachineParticleAcceleratorEmitterForeCircuitboard - entities: - - uid: 9961 - components: - - pos: -81.52008,22.452606 - parent: 1 - type: Transform -- proto: MachineParticleAcceleratorEmitterPortCircuitboard - entities: - - uid: 9964 - components: - - pos: -81.02008,22.515106 - parent: 1 - type: Transform -- proto: MachineParticleAcceleratorEmitterStarboardCircuitboard - entities: - - uid: 9962 - components: - - pos: -80.98883,22.780731 - parent: 1 - type: Transform -- proto: MachineParticleAcceleratorEndCapCircuitboard - entities: - - uid: 9965 - components: - - pos: -80.45758,22.765106 - parent: 1 - type: Transform -- proto: MachineParticleAcceleratorFuelChamberCircuitboard - entities: - - uid: 9966 - components: - - pos: -80.473206,22.483856 - parent: 1 - type: Transform -- proto: MachineParticleAcceleratorPowerBoxCircuitboard - entities: - - uid: 9967 - components: - - pos: -81.004456,22.608856 - parent: 1 - type: Transform -- proto: MagazinePistol - entities: - - uid: 8359 - components: - - pos: -42.709877,61.49391 - parent: 1 - type: Transform - - uid: 8364 - components: - - pos: -42.491127,61.49391 - parent: 1 - type: Transform - - uid: 8365 - components: - - pos: -42.631752,61.49391 - parent: 1 - type: Transform - - uid: 8372 - components: - - pos: -42.381752,61.49391 - parent: 1 - type: Transform - - uid: 8375 - components: - - pos: -42.288002,61.49391 - parent: 1 - type: Transform -- proto: MagazinePistolSubMachineGunTopMounted - entities: - - uid: 7938 - components: - - pos: -60.513123,64.48181 - parent: 1 - type: Transform - - uid: 7939 - components: - - pos: -60.513123,64.48181 - parent: 1 - type: Transform -- proto: MagazineRifle - entities: - - uid: 8360 - components: - - pos: -41.301014,62.60871 - parent: 1 - type: Transform - - uid: 8361 - components: - - pos: -41.363514,62.60871 - parent: 1 - type: Transform - - uid: 8362 - components: - - pos: -41.44164,62.60871 - parent: 1 - type: Transform - - uid: 8363 - components: - - pos: -41.56664,62.60871 - parent: 1 - type: Transform -- proto: MagazineRifleRubber - entities: - - uid: 8366 - components: - - pos: -41.301014,62.13996 - parent: 1 - type: Transform - - uid: 8367 - components: - - pos: -41.363514,62.13996 - parent: 1 - type: Transform - - uid: 8368 - components: - - pos: -41.47289,62.13996 - parent: 1 - type: Transform - - uid: 8369 - components: - - pos: -41.582264,62.13996 - parent: 1 - type: Transform -- proto: MailingUnitElectronics - entities: - - uid: 5543 - components: - - pos: -54.399563,27.347925 - parent: 1 - type: Transform - - uid: 5544 - components: - - pos: -54.524563,27.55105 - parent: 1 - type: Transform -- proto: MaintenanceFluffSpawner - entities: - - uid: 257 - components: - - pos: -13.5,-7.5 - parent: 1 - type: Transform - - uid: 2956 - components: - - pos: 28.5,-4.5 - parent: 1 - type: Transform - - uid: 2957 - components: - - pos: 29.5,-4.5 - parent: 1 - type: Transform - - uid: 2963 - components: - - pos: 7.5,-4.5 - parent: 1 - type: Transform - - uid: 5435 - components: - - pos: -18.5,0.5 - parent: 1 - type: Transform - - uid: 5447 - components: - - pos: -17.5,-7.5 - parent: 1 - type: Transform - - uid: 5594 - components: - - pos: -31.5,12.5 - parent: 1 - type: Transform - - uid: 5612 - components: - - pos: -45.5,25.5 - parent: 1 - type: Transform - - uid: 5622 - components: - - pos: -46.5,15.5 - parent: 1 - type: Transform - - uid: 5623 - components: - - pos: -47.5,15.5 - parent: 1 - type: Transform - - uid: 5624 - components: - - pos: -41.5,13.5 - parent: 1 - type: Transform - - uid: 5745 - components: - - pos: -34.5,13.5 - parent: 1 - type: Transform - - uid: 5747 - components: - - pos: -20.5,14.5 - parent: 1 - type: Transform - - uid: 5791 - components: - - pos: -7.5,22.5 - parent: 1 - type: Transform - - uid: 5792 - components: - - pos: -3.5,14.5 - parent: 1 - type: Transform - - uid: 5797 - components: - - pos: -14.5,10.5 - parent: 1 - type: Transform - - uid: 5798 - components: - - pos: -14.5,13.5 - parent: 1 - type: Transform - - uid: 5799 - components: - - pos: -10.5,14.5 - parent: 1 - type: Transform - - uid: 10375 - components: - - pos: -28.5,49.5 - parent: 1 - type: Transform - - uid: 10401 - components: - - pos: -3.5,42.5 - parent: 1 - type: Transform - - uid: 10402 - components: - - pos: -3.5,43.5 - parent: 1 - type: Transform - - uid: 10406 - components: - - pos: 22.5,28.5 - parent: 1 - type: Transform - - uid: 10463 - components: - - pos: -27.5,40.5 - parent: 1 - type: Transform - - uid: 12910 - components: - - pos: 6.5,8.5 - parent: 1 - type: Transform - - uid: 12911 - components: - - pos: 12.5,8.5 - parent: 1 - type: Transform - - uid: 13840 - components: - - pos: -42.5,54.5 - parent: 1 - type: Transform - - uid: 14321 - components: - - pos: -66.5,41.5 - parent: 1 - type: Transform - - uid: 14322 - components: - - pos: -66.5,43.5 - parent: 1 - type: Transform - - uid: 14326 - components: - - pos: -73.5,51.5 - parent: 1 - type: Transform - - uid: 14327 - components: - - pos: -71.5,51.5 - parent: 1 - type: Transform - - uid: 14328 - components: - - pos: -75.5,37.5 - parent: 1 - type: Transform - - uid: 14409 - components: - - pos: -69.5,26.5 - parent: 1 - type: Transform - - uid: 14593 - components: - - pos: -67.5,10.5 - parent: 1 - type: Transform - - uid: 14599 - components: - - pos: -61.5,24.5 - parent: 1 - type: Transform - - uid: 14600 - components: - - pos: -61.5,26.5 - parent: 1 - type: Transform -- proto: MaintenancePlantSpawner - entities: - - uid: 9010 - components: - - pos: -21.5,0.5 - parent: 1 - type: Transform - - uid: 9013 - components: - - pos: -66.5,50.5 - parent: 1 - type: Transform - - uid: 9014 - components: - - pos: 8.5,39.5 - parent: 1 - type: Transform - - uid: 9016 - components: - - pos: 29.5,-5.5 - parent: 1 - type: Transform -- proto: MaintenanceToolSpawner - entities: - - uid: 2072 - components: - - pos: -3.5,15.5 - parent: 1 - type: Transform - - uid: 2955 - components: - - pos: 27.5,-4.5 - parent: 1 - type: Transform - - uid: 2962 - components: - - pos: 6.5,-4.5 - parent: 1 - type: Transform - - uid: 3318 - components: - - rot: 3.141592653589793 rad - pos: -18.5,16.5 - parent: 1 - type: Transform - - uid: 4199 - components: - - pos: -8.5,12.5 - parent: 1 - type: Transform - - uid: 5431 - components: - - pos: -29.5,-2.5 - parent: 1 - type: Transform - - uid: 5434 - components: - - pos: -18.5,-7.5 - parent: 1 - type: Transform - - uid: 5436 - components: - - pos: -19.5,0.5 - parent: 1 - type: Transform - - uid: 5441 - components: - - pos: -23.5,-3.5 - parent: 1 - type: Transform - - uid: 5503 - components: - - pos: -51.5,2.5 - parent: 1 - type: Transform - - uid: 5506 - components: - - pos: -52.5,-5.5 - parent: 1 - type: Transform - - uid: 5522 - components: - - pos: -47.5,-8.5 - parent: 1 - type: Transform - - uid: 5560 - components: - - pos: -40.5,18.5 - parent: 1 - type: Transform - - uid: 5561 - components: - - pos: -40.5,17.5 - parent: 1 - type: Transform - - uid: 5619 - components: - - pos: -40.5,13.5 - parent: 1 - type: Transform - - uid: 5620 - components: - - pos: -43.5,13.5 - parent: 1 - type: Transform - - uid: 5626 - components: - - pos: -45.5,23.5 - parent: 1 - type: Transform - - uid: 5737 - components: - - pos: -20.5,29.5 - parent: 1 - type: Transform - - uid: 5748 - components: - - pos: -20.5,13.5 - parent: 1 - type: Transform - - uid: 5795 - components: - - pos: -10.5,12.5 - parent: 1 - type: Transform - - uid: 5796 - components: - - pos: -14.5,8.5 - parent: 1 - type: Transform - - uid: 6226 - components: - - pos: 18.5,45.5 - parent: 1 - type: Transform - - uid: 7520 - components: - - pos: -29.5,55.5 - parent: 1 - type: Transform - - uid: 10374 - components: - - pos: -29.5,49.5 - parent: 1 - type: Transform - - uid: 10390 - components: - - pos: -1.5,45.5 - parent: 1 - type: Transform - - uid: 10392 - components: - - pos: 6.5,48.5 - parent: 1 - type: Transform - - uid: 10409 - components: - - pos: 22.5,27.5 - parent: 1 - type: Transform - - uid: 10801 - components: - - pos: -8.5,46.5 - parent: 1 - type: Transform - - uid: 12907 - components: - - pos: 4.5,8.5 - parent: 1 - type: Transform - - uid: 12908 - components: - - pos: 13.5,8.5 - parent: 1 - type: Transform - - uid: 13839 - components: - - pos: -43.5,54.5 - parent: 1 - type: Transform - - uid: 14320 - components: - - pos: -66.5,42.5 - parent: 1 - type: Transform - - uid: 14323 - components: - - pos: -63.5,48.5 - parent: 1 - type: Transform - - uid: 14324 - components: - - pos: -72.5,51.5 - parent: 1 - type: Transform - - uid: 14329 - components: - - pos: -61.5,35.5 - parent: 1 - type: Transform - - uid: 14594 - components: - - pos: -67.5,11.5 - parent: 1 - type: Transform - - uid: 14595 - components: - - pos: -67.5,13.5 - parent: 1 - type: Transform - - uid: 14597 - components: - - pos: -60.5,20.5 - parent: 1 - type: Transform - - uid: 14598 - components: - - pos: -61.5,25.5 - parent: 1 - type: Transform - - uid: 15928 - components: - - pos: 18.5,40.5 - parent: 1 - type: Transform - - uid: 15929 - components: - - pos: 23.5,40.5 - parent: 1 - type: Transform - - uid: 15930 - components: - - pos: 23.5,38.5 - parent: 1 - type: Transform -- proto: MaintenanceWeaponSpawner - entities: - - uid: 919 - components: - - pos: 29.5,-0.5 - parent: 1 - type: Transform - - uid: 2060 - components: - - pos: -0.5,42.5 - parent: 1 - type: Transform - - uid: 2789 - components: - - pos: -25.5,55.5 - parent: 1 - type: Transform - - uid: 2882 - components: - - pos: -8.5,11.5 - parent: 1 - type: Transform - - uid: 5430 - components: - - pos: -27.5,-4.5 - parent: 1 - type: Transform - - uid: 5558 - components: - - pos: -47.5,17.5 - parent: 1 - type: Transform - - uid: 5746 - components: - - pos: -30.5,12.5 - parent: 1 - type: Transform - - uid: 5752 - components: - - pos: -22.5,20.5 - parent: 1 - type: Transform - - uid: 5793 - components: - - pos: -7.5,23.5 - parent: 1 - type: Transform - - uid: 10373 - components: - - pos: -27.5,49.5 - parent: 1 - type: Transform - - uid: 10400 - components: - - pos: -3.5,41.5 - parent: 1 - type: Transform - - uid: 10407 - components: - - pos: 22.5,29.5 - parent: 1 - type: Transform - - uid: 12909 - components: - - pos: 5.5,8.5 - parent: 1 - type: Transform - - uid: 14319 - components: - - pos: -74.5,46.5 - parent: 1 - type: Transform - - uid: 14325 - components: - - pos: -69.5,51.5 - parent: 1 - type: Transform - - uid: 14596 - components: - - pos: -60.5,19.5 - parent: 1 - type: Transform - - uid: 15073 - components: - - pos: -20.5,17.5 - parent: 1 - type: Transform - - uid: 15561 - components: - - pos: 6.5,-16.5 - parent: 1 - type: Transform - - uid: 15562 - components: - - pos: 9.5,-16.5 - parent: 1 - type: Transform - - uid: 15842 - components: - - pos: -25.5,53.5 - parent: 1 - type: Transform - - uid: 15843 - components: - - pos: -29.5,54.5 - parent: 1 - type: Transform - - uid: 15911 - components: - - pos: -47.5,17.5 - parent: 1 - type: Transform - - uid: 15926 - components: - - pos: 17.5,42.5 - parent: 1 - type: Transform - - uid: 15927 - components: - - pos: 23.5,42.5 - parent: 1 - type: Transform -- proto: MaterialCloth - entities: - - uid: 7577 - components: - - pos: -19.514711,41.515976 - parent: 1 - type: Transform -- proto: MaterialHideBear - entities: - - uid: 14939 - components: - - pos: 4.5405226,-14.581865 - parent: 1 - type: Transform -- proto: MaterialReclaimer - entities: - - uid: 15799 - components: - - pos: -37.5,-12.5 - parent: 1 - type: Transform -- proto: MaterialWoodPlank - entities: - - uid: 15937 - components: - - pos: 19.58975,42.76493 - parent: 1 - type: Transform -- proto: MedkitAdvancedFilled - entities: - - uid: 2319 - components: - - pos: 10.517079,26.601435 - parent: 1 - type: Transform -- proto: MedkitBruteFilled - entities: - - uid: 14852 - components: - - pos: 6.488601,22.996218 - parent: 1 - type: Transform -- proto: MedkitBurnFilled - entities: - - uid: 2317 - components: - - pos: 8.532704,22.570185 - parent: 1 - type: Transform -- proto: MedkitCombatFilled - entities: - - uid: 7518 - components: - - pos: -25.498947,54.62378 - parent: 1 - type: Transform -- proto: MedkitFilled - entities: - - uid: 1989 - components: - - pos: -1.4897182,32.72799 - parent: 1 - type: Transform - - uid: 2313 - components: - - pos: 6.532705,22.632685 - parent: 1 - type: Transform - - uid: 10915 - components: - - pos: -20.50132,63.5821 - parent: 1 - type: Transform -- proto: MedkitOxygenFilled - entities: - - uid: 2315 - components: - - pos: 7.876455,22.58581 - parent: 1 - type: Transform - - uid: 10921 - components: - - pos: -11.50255,62.54268 - parent: 1 - type: Transform -- proto: MedkitRadiationFilled - entities: - - uid: 2314 - components: - - pos: 7.20458,22.58581 - parent: 1 - type: Transform -- proto: MedkitToxinFilled - entities: - - uid: 2316 - components: - - pos: 6.48583,23.46081 - parent: 1 - type: Transform -- proto: MetalDoor - entities: - - uid: 1663 - components: - - pos: 17.5,-10.5 - parent: 1 - type: Transform -- proto: MicroManipulatorStockPart - entities: - - uid: 260 - components: - - pos: -10.438767,-5.4789715 - parent: 1 - type: Transform -- proto: Mirror - entities: - - uid: 4076 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,0.5 - parent: 1 - type: Transform - - uid: 4077 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,1.5 - parent: 1 - type: Transform - - uid: 4078 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-0.5 - parent: 1 - type: Transform - - uid: 7089 - components: - - pos: -51.5,42.5 - parent: 1 - type: Transform -- proto: MonkeyCubeBox - entities: - - uid: 371 - components: - - pos: 4.52832,-11.326899 - parent: 1 - type: Transform -- proto: MopBucket - entities: - - uid: 5302 - components: - - pos: -54.5,23.5 - parent: 1 - type: Transform - - uid: 7098 - components: - - pos: -51.5,38.5 - parent: 1 - type: Transform -- proto: MopItem - entities: - - uid: 5303 - components: - - pos: -54.5,23.5 - parent: 1 - type: Transform - - uid: 7099 - components: - - pos: -51.5,38.5 - parent: 1 - type: Transform -- proto: Morgue - entities: - - uid: 1063 - components: - - rot: 3.141592653589793 rad - pos: 1.5,14.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 1143 - components: - - pos: -0.5,17.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 1156 - components: - - rot: 3.141592653589793 rad - pos: 0.5,14.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 1157 - components: - - rot: 3.141592653589793 rad - pos: -0.5,14.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 1246 - components: - - pos: 0.5,17.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 1413 - components: - - pos: 2.5,17.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 1614 - components: - - pos: 1.5,17.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 1616 - components: - - rot: 3.141592653589793 rad - pos: -1.5,14.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 1622 - components: - - rot: 3.141592653589793 rad - pos: 2.5,14.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 1829 - components: - - pos: 19.5,2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: MouseTimedSpawner - entities: - - uid: 14186 - components: - - pos: 9.5,9.5 - parent: 1 - type: Transform - - uid: 14187 - components: - - pos: 7.5,46.5 - parent: 1 - type: Transform - - uid: 14188 - components: - - pos: -44.5,14.5 - parent: 1 - type: Transform - - uid: 14937 - components: - - pos: -74.5,45.5 - parent: 1 - type: Transform - - uid: 15048 - components: - - pos: -66.5,8.5 - parent: 1 - type: Transform -- proto: Multitool - entities: - - uid: 374 - components: - - pos: 2.4814448,-11.369194 - parent: 1 - type: Transform - - uid: 5647 - components: - - pos: -24.502523,29.558752 - parent: 1 - type: Transform -- proto: NitrogenCanister - entities: - - uid: 333 - components: - - pos: -76.5,29.5 - parent: 1 - type: Transform - - uid: 5470 - components: - - pos: -48.5,17.5 - parent: 1 - type: Transform - - uid: 5591 - components: - - pos: -3.5,36.5 - parent: 1 - type: Transform - - uid: 5675 - components: - - pos: -25.5,20.5 - parent: 1 - type: Transform - - uid: 7202 - components: - - pos: -77.5,29.5 - parent: 1 - type: Transform - - uid: 8930 - components: - - pos: 5.5,-4.5 - parent: 1 - type: Transform - - uid: 9468 - components: - - pos: 22.5,24.5 - parent: 1 - type: Transform - - uid: 10094 - components: - - pos: 14.5,42.5 - parent: 1 - type: Transform - - uid: 10099 - components: - - pos: -41.5,54.5 - parent: 1 - type: Transform - - uid: 12894 - components: - - pos: 14.5,14.5 - parent: 1 - type: Transform - - uid: 14334 - components: - - pos: -75.5,41.5 - parent: 1 - type: Transform - - uid: 14578 - components: - - pos: -60.5,17.5 - parent: 1 - type: Transform -- proto: NitrogenTank - entities: - - uid: 14199 - components: - - pos: -77.535675,42.554688 - parent: 1 - type: Transform -- proto: NuclearBomb - entities: - - uid: 10854 - components: - - pos: -23.5,56.5 - parent: 1 - type: Transform -- proto: NuclearBombKeg - entities: - - uid: 6316 - components: - - pos: 10.5,43.5 - parent: 1 - type: Transform -- proto: NukeDiskFake - entities: - - uid: 6318 - components: - - desc: A crude replication of a real nuclear authentication disk. You could tell this thing was fake from a mile away. - name: flimsy nuclear authentication disk - type: MetaData - - pos: 12.55704,43.506477 - parent: 1 - type: Transform -- proto: Ointment - entities: - - uid: 1992 - components: - - pos: 0.44623998,32.749245 - parent: 1 - type: Transform - - uid: 1993 - components: - - pos: -0.053760022,32.561745 - parent: 1 - type: Transform - - uid: 1994 - components: - - pos: -0.67876005,32.63987 - parent: 1 - type: Transform - - uid: 2379 - components: - - pos: 9.117954,33.567314 - parent: 1 - type: Transform - - uid: 2380 - components: - - pos: 9.508579,33.64544 - parent: 1 - type: Transform - - uid: 2381 - components: - - pos: 9.930454,33.52044 - parent: 1 - type: Transform -- proto: OperatingTable - entities: - - uid: 12771 - components: - - pos: 19.5,30.5 - parent: 1 - type: Transform -- proto: OreProcessor - entities: - - uid: 3530 - components: - - pos: -34.5,-1.5 - parent: 1 - type: Transform -- proto: OreProcessorMachineCircuitboard - entities: - - uid: 5553 - components: - - pos: -49.433533,23.561655 - parent: 1 - type: Transform -- proto: OrganHumanBrain - entities: - - uid: 9284 - components: - - pos: 20.599104,32.811195 - parent: 1 - type: Transform -- proto: OrganHumanEyes - entities: - - uid: 9285 - components: - - pos: 19.520979,30.326818 - parent: 1 - type: Transform -- proto: OrganHumanHeart - entities: - - uid: 5800 - components: - - pos: -9.314642,21.506338 - parent: 1 - type: Transform - - uid: 9241 - components: - - pos: 18.986782,28.61476 - parent: 1 - type: Transform -- proto: OrganHumanKidneys - entities: - - uid: 9286 - components: - - pos: 20.630354,32.467445 - parent: 1 - type: Transform -- proto: OrganHumanLiver - entities: - - uid: 9287 - components: - - pos: 20.286604,32.561195 - parent: 1 - type: Transform -- proto: OrganHumanTongue - entities: - - uid: 9283 - components: - - pos: 18.880354,28.451818 - parent: 1 - type: Transform -- proto: OxygenCanister - entities: - - uid: 5656 - components: - - pos: -4.5,36.5 - parent: 1 - type: Transform - - uid: 5670 - components: - - pos: -26.5,20.5 - parent: 1 - type: Transform - - uid: 6069 - components: - - pos: -76.5,30.5 - parent: 1 - type: Transform - - uid: 6071 - components: - - pos: -11.5,46.5 - parent: 1 - type: Transform - - uid: 6968 - components: - - pos: -32.5,57.5 - parent: 1 - type: Transform - - uid: 7193 - components: - - pos: -77.5,30.5 - parent: 1 - type: Transform - - uid: 9266 - components: - - pos: 18.5,-4.5 - parent: 1 - type: Transform - - uid: 9378 - components: - - pos: 22.5,23.5 - parent: 1 - type: Transform - - uid: 10092 - components: - - pos: 14.5,41.5 - parent: 1 - type: Transform - - uid: 10093 - components: - - pos: -48.5,18.5 - parent: 1 - type: Transform - - uid: 10129 - components: - - pos: -40.5,54.5 - parent: 1 - type: Transform - - uid: 12893 - components: - - pos: 14.5,13.5 - parent: 1 - type: Transform - - uid: 14170 - components: - - pos: -77.5,49.5 - parent: 1 - type: Transform - - uid: 14333 - components: - - pos: -75.5,40.5 - parent: 1 - type: Transform - - uid: 14577 - components: - - pos: -60.5,16.5 - parent: 1 - type: Transform - - uid: 15800 - components: - - pos: -49.5,-12.5 - parent: 1 - type: Transform -- proto: PaintingAmogusTriptych - entities: - - uid: 6326 - components: - - pos: 3.5,53.5 - parent: 1 - type: Transform -- proto: PaintingEmpty - entities: - - uid: 6327 - components: - - pos: 2.5,53.5 - parent: 1 - type: Transform -- proto: PaintingSkeletonBoof - entities: - - uid: 6328 - components: - - pos: 4.5,53.5 - parent: 1 - type: Transform -- proto: Paper - entities: - - uid: 304 - components: - - pos: -0.48525378,-4.0916176 - parent: 1 - type: Transform - - uid: 305 - components: - - pos: -0.39150378,-4.0916176 - parent: 1 - type: Transform - - uid: 306 - components: - - pos: -0.32900378,-4.0916176 - parent: 1 - type: Transform - - uid: 307 - components: - - pos: -0.5790038,-4.0916176 - parent: 1 - type: Transform - - uid: 308 - components: - - pos: -0.6571288,-4.0916176 - parent: 1 - type: Transform - - uid: 2402 - components: - - name: hastily scribbled note - type: MetaData - - pos: 10.220547,33.42669 - parent: 1 - type: Transform - - content: > - <100K - - 101.3kPa - - filter co2/n20 - type: Paper - - uid: 4221 - components: - - pos: -42.30462,24.611063 - parent: 1 - type: Transform - - uid: 4222 - components: - - pos: -42.46087,24.611063 - parent: 1 - type: Transform - - uid: 4223 - components: - - pos: -42.58587,24.564188 - parent: 1 - type: Transform - - uid: 4224 - components: - - pos: -42.632744,24.548563 - parent: 1 - type: Transform - - uid: 4225 - components: - - pos: -42.64837,24.517313 - parent: 1 - type: Transform - - uid: 4226 - components: - - pos: -42.476494,24.564188 - parent: 1 - type: Transform - - uid: 4227 - components: - - pos: -42.382744,24.579813 - parent: 1 - type: Transform - - uid: 4228 - components: - - pos: -42.49212,24.579813 - parent: 1 - type: Transform - - uid: 4229 - components: - - pos: -42.67962,24.501688 - parent: 1 - type: Transform - - uid: 7221 - components: - - pos: -3.6578722,0.5394765 - parent: 1 - type: Transform - - uid: 7222 - components: - - pos: -3.5953722,0.5394765 - parent: 1 - type: Transform - - uid: 7223 - components: - - pos: -3.5328722,0.5394765 - parent: 1 - type: Transform - - uid: 7292 - components: - - pos: -60.664387,89.61223 - parent: 1 - type: Transform - - uid: 7297 - components: - - pos: -60.27376,89.67473 - parent: 1 - type: Transform - - uid: 7309 - components: - - pos: -60.601887,89.58098 - parent: 1 - type: Transform - - uid: 7710 - components: - - pos: -60.74251,89.67473 - parent: 1 - type: Transform - - uid: 7726 - components: - - pos: -60.414387,89.61223 - parent: 1 - type: Transform - - uid: 7919 - components: - - pos: -3.4703722,0.5238515 - parent: 1 - type: Transform -- proto: PaperCaptainsThoughts - entities: - - uid: 10908 - components: - - pos: -7.0289607,61.72577 - parent: 1 - type: Transform - - uid: 10909 - components: - - pos: -7.2008357,61.74714 - parent: 1 - type: Transform - - uid: 10910 - components: - - pos: -7.2320857,61.62214 - parent: 1 - type: Transform - - uid: 10911 - components: - - pos: -7.2164607,61.59089 - parent: 1 - type: Transform - - uid: 10912 - components: - - pos: -7.0602107,61.575264 - parent: 1 - type: Transform - - uid: 10913 - components: - - pos: -7.0602107,61.575264 - parent: 1 - type: Transform -- proto: PaperDoor - entities: - - uid: 4710 - components: - - rot: 3.141592653589793 rad - pos: -50.5,11.5 - parent: 1 - type: Transform - - uid: 5459 - components: - - rot: 3.141592653589793 rad - pos: -53.5,10.5 - parent: 1 - type: Transform - - uid: 6255 - components: - - rot: 3.141592653589793 rad - pos: -53.5,8.5 - parent: 1 - type: Transform - - uid: 6668 - components: - - rot: 3.141592653589793 rad - pos: -50.5,7.5 - parent: 1 - type: Transform - - uid: 10445 - components: - - rot: 3.141592653589793 rad - pos: -47.5,11.5 - parent: 1 - type: Transform -- proto: PaperOffice - entities: - - uid: 2321 - components: - - pos: 10.666427,26.233912 - parent: 1 - type: Transform - - uid: 2322 - components: - - pos: 10.338302,26.233912 - parent: 1 - type: Transform - - uid: 2323 - components: - - pos: 10.275802,26.218287 - parent: 1 - type: Transform - - uid: 2324 - components: - - pos: 10.463302,26.218287 - parent: 1 - type: Transform - - uid: 2325 - components: - - pos: 10.494552,26.218287 - parent: 1 - type: Transform - - uid: 2326 - components: - - pos: 8.353927,31.631037 - parent: 1 - type: Transform - - uid: 2327 - components: - - pos: 8.447677,31.584162 - parent: 1 - type: Transform - - uid: 2328 - components: - - pos: 8.494552,31.584162 - parent: 1 - type: Transform - - uid: 2367 - components: - - rot: -1.5707963267948966 rad - pos: 11.600925,18.432741 - parent: 1 - type: Transform - - uid: 2368 - components: - - rot: -1.5707963267948966 rad - pos: 11.42905,18.682741 - parent: 1 - type: Transform - - uid: 2369 - components: - - rot: -1.5707963267948966 rad - pos: 11.382175,18.698366 - parent: 1 - type: Transform - - uid: 2370 - components: - - rot: -1.5707963267948966 rad - pos: 11.67905,18.729616 - parent: 1 - type: Transform - - uid: 2371 - components: - - rot: -1.5707963267948966 rad - pos: 11.507175,18.479616 - parent: 1 - type: Transform - - uid: 3204 - components: - - pos: -26.966206,17.360792 - parent: 1 - type: Transform - - uid: 3205 - components: - - pos: -27.028706,17.329542 - parent: 1 - type: Transform - - uid: 3206 - components: - - pos: -27.091206,17.220167 - parent: 1 - type: Transform - - uid: 3207 - components: - - pos: -26.76308,17.157667 - parent: 1 - type: Transform - - uid: 3208 - components: - - pos: -27.028706,17.188917 - parent: 1 - type: Transform - - uid: 3209 - components: - - pos: -27.16933,17.173292 - parent: 1 - type: Transform - - uid: 3578 - components: - - pos: -70.33955,16.634232 - parent: 1 - type: Transform - - uid: 3751 - components: - - pos: -46.321968,1.8882136 - parent: 1 - type: Transform - - uid: 3752 - components: - - pos: -46.446968,1.7632136 - parent: 1 - type: Transform - - uid: 3753 - components: - - pos: -46.478218,1.6850886 - parent: 1 - type: Transform - - uid: 3754 - components: - - pos: -46.368843,1.5913386 - parent: 1 - type: Transform - - uid: 3755 - components: - - pos: -46.337593,1.5757136 - parent: 1 - type: Transform - - uid: 4259 - components: - - pos: -45.35543,-6.2845764 - parent: 1 - type: Transform - - uid: 4260 - components: - - pos: -45.38668,-6.3470764 - parent: 1 - type: Transform - - uid: 4261 - components: - - pos: -45.38668,-6.3939514 - parent: 1 - type: Transform - - uid: 4262 - components: - - pos: -45.23043,-6.5502014 - parent: 1 - type: Transform - - uid: 4263 - components: - - pos: -45.48043,-6.6127014 - parent: 1 - type: Transform - - uid: 5512 - components: - - pos: -53.91828,-5.305279 - parent: 1 - type: Transform - - uid: 5513 - components: - - pos: -53.808907,-5.305279 - parent: 1 - type: Transform - - uid: 5514 - components: - - pos: -53.715157,-5.320904 - parent: 1 - type: Transform - - uid: 5515 - components: - - pos: -53.621407,-5.320904 - parent: 1 - type: Transform - - uid: 5810 - components: - - pos: -27.736298,13.6788025 - parent: 1 - type: Transform - - uid: 5811 - components: - - pos: -27.689423,13.6631775 - parent: 1 - type: Transform - - uid: 5812 - components: - - pos: -27.564423,13.6006775 - parent: 1 - type: Transform - - uid: 5813 - components: - - pos: -27.376923,13.5069275 - parent: 1 - type: Transform - - uid: 5814 - components: - - pos: -27.267548,13.4913025 - parent: 1 - type: Transform - - uid: 5815 - components: - - pos: -27.455048,13.5850525 - parent: 1 - type: Transform - - uid: 7546 - components: - - pos: -19.594261,47.957428 - parent: 1 - type: Transform - - uid: 7547 - components: - - pos: -19.578636,47.926178 - parent: 1 - type: Transform - - uid: 7548 - components: - - pos: -19.531761,47.894928 - parent: 1 - type: Transform - - uid: 7549 - components: - - pos: -19.500511,47.848053 - parent: 1 - type: Transform - - uid: 7550 - components: - - pos: -19.359886,48.051178 - parent: 1 - type: Transform - - uid: 7551 - components: - - pos: -19.500511,47.785553 - parent: 1 - type: Transform - - uid: 7552 - components: - - pos: -19.516136,47.676178 - parent: 1 - type: Transform - - uid: 7553 - components: - - pos: -19.469261,47.582428 - parent: 1 - type: Transform - - uid: 7578 - components: - - pos: -19.295961,40.5316 - parent: 1 - type: Transform - - uid: 7579 - components: - - pos: -19.639711,40.484726 - parent: 1 - type: Transform - - uid: 7580 - components: - - pos: -19.545961,40.4691 - parent: 1 - type: Transform - - uid: 7581 - components: - - pos: -19.436586,40.37535 - parent: 1 - type: Transform - - uid: 7582 - components: - - pos: -19.420961,40.31285 - parent: 1 - type: Transform - - uid: 7950 - components: - - pos: -47.78143,59.577873 - parent: 1 - type: Transform - - uid: 7951 - components: - - pos: -47.734554,59.577873 - parent: 1 - type: Transform - - uid: 7952 - components: - - pos: -47.71893,59.577873 - parent: 1 - type: Transform - - uid: 7953 - components: - - pos: -47.672054,59.577873 - parent: 1 - type: Transform - - uid: 7985 - components: - - pos: -60.29884,58.597794 - parent: 1 - type: Transform - - uid: 7986 - components: - - pos: -60.314465,58.597794 - parent: 1 - type: Transform - - uid: 7987 - components: - - pos: -60.33009,58.597794 - parent: 1 - type: Transform - - uid: 7990 - components: - - pos: -56.078358,58.626472 - parent: 1 - type: Transform - - uid: 7991 - components: - - pos: -56.172108,58.532722 - parent: 1 - type: Transform - - uid: 7992 - components: - - pos: -56.234608,58.595222 - parent: 1 - type: Transform - - uid: 10936 - components: - - pos: -63.356304,41.570023 - parent: 1 - type: Transform - - uid: 10937 - components: - - pos: -63.40318,41.570023 - parent: 1 - type: Transform - - uid: 10938 - components: - - pos: -63.450054,41.570023 - parent: 1 - type: Transform - - uid: 10939 - components: - - pos: -61.55943,41.601273 - parent: 1 - type: Transform - - uid: 10940 - components: - - pos: -61.512554,41.601273 - parent: 1 - type: Transform - - uid: 10941 - components: - - pos: -61.46568,41.585648 - parent: 1 - type: Transform - - uid: 10946 - components: - - pos: -62.24684,39.585648 - parent: 1 - type: Transform - - uid: 10947 - components: - - pos: -62.30934,39.585648 - parent: 1 - type: Transform - - uid: 10948 - components: - - pos: -62.356216,39.585648 - parent: 1 - type: Transform - - uid: 10949 - components: - - pos: -62.37184,39.585648 - parent: 1 - type: Transform - - uid: 12026 - components: - - pos: -31.597652,-1.4642928 - parent: 1 - type: Transform - - uid: 12027 - components: - - pos: -31.503902,-1.4955428 - parent: 1 - type: Transform - - uid: 12028 - components: - - pos: -31.378902,-1.5892928 - parent: 1 - type: Transform - - uid: 12029 - components: - - pos: -31.5229,-1.5424862 - parent: 1 - type: Transform - - uid: 12030 - components: - - pos: -31.4604,-1.5424862 - parent: 1 - type: Transform - - uid: 12778 - components: - - pos: 15.279422,31.607256 - parent: 1 - type: Transform - - uid: 12779 - components: - - pos: 15.404422,31.59163 - parent: 1 - type: Transform - - uid: 12780 - components: - - pos: 15.576297,31.59163 - parent: 1 - type: Transform - - uid: 12781 - components: - - pos: 15.670047,31.59163 - parent: 1 - type: Transform - - uid: 12796 - components: - - rot: -1.5707963267948966 rad - pos: 4.4957075,16.929403 - parent: 1 - type: Transform - - uid: 12797 - components: - - rot: -1.5707963267948966 rad - pos: 4.4957075,16.710653 - parent: 1 - type: Transform - - uid: 12798 - components: - - rot: -1.5707963267948966 rad - pos: 4.4957075,16.679403 - parent: 1 - type: Transform - - uid: 12799 - components: - - rot: -1.5707963267948966 rad - pos: 4.4800825,16.445028 - parent: 1 - type: Transform - - uid: 12800 - components: - - rot: -1.5707963267948966 rad - pos: 4.4800825,16.320028 - parent: 1 - type: Transform - - uid: 14202 - components: - - pos: -70.4958,16.634232 - parent: 1 - type: Transform - - uid: 14291 - components: - - pos: -70.305115,49.635986 - parent: 1 - type: Transform - - uid: 14292 - components: - - pos: -70.430115,49.635986 - parent: 1 - type: Transform - - uid: 14293 - components: - - pos: -70.492615,49.635986 - parent: 1 - type: Transform - - uid: 14294 - components: - - pos: -70.492615,49.635986 - parent: 1 - type: Transform - - uid: 15793 - components: - - pos: -70.58955,16.634232 - parent: 1 - type: Transform - - uid: 15794 - components: - - pos: -70.69892,16.649857 - parent: 1 - type: Transform -- proto: ParticleAcceleratorComputerCircuitboard - entities: - - uid: 9960 - components: - - pos: -81.535706,22.686981 - parent: 1 - type: Transform -- proto: PartRodMetal - entities: - - uid: 7340 - components: - - pos: -82.48612,29.602036 - parent: 1 - type: Transform - - uid: 7392 - components: - - pos: -82.48612,29.602036 - parent: 1 - type: Transform - - uid: 13607 - components: - - pos: -65.40672,25.564983 - parent: 1 - type: Transform - - uid: 13620 - components: - - pos: -65.40672,25.564983 - parent: 1 - type: Transform - - uid: 15783 - components: - - pos: -43.49778,-9.467924 - parent: 1 - type: Transform - - uid: 15892 - components: - - pos: 8.487601,-20.49545 - parent: 1 - type: Transform - - uid: 15894 - components: - - pos: 8.690726,-20.636074 - parent: 1 - type: Transform -- proto: Pen - entities: - - uid: 7386 - components: - - pos: -3.2828722,0.5082265 - parent: 1 - type: Transform - - uid: 7649 - components: - - rot: -1.5707963267948966 rad - pos: -59.14876,89.51848 - parent: 1 - type: Transform - - uid: 7709 - components: - - rot: -1.5707963267948966 rad - pos: -59.789387,89.70598 - parent: 1 - type: Transform - - uid: 15232 - components: - - pos: 18.717243,48.360695 - parent: 1 - type: Transform -- proto: PenHop - entities: - - uid: 7557 - components: - - pos: -21.314497,46.738678 - parent: 1 - type: Transform -- proto: PersonalAI - entities: - - uid: 8602 - components: - - flags: SessionSpecific - type: MetaData - - pos: -27.47025,16.628725 - parent: 1 - type: Transform - - uid: 8603 - components: - - flags: SessionSpecific - type: MetaData - - pos: -53.50901,17.553663 - parent: 1 - type: Transform - - uid: 15099 - components: - - flags: SessionSpecific - type: MetaData - - pos: -18.48621,65.98919 - parent: 1 - type: Transform -- proto: PhoneInstrument - entities: - - uid: 10544 - components: - - pos: -9.507111,55.584892 - parent: 1 - type: Transform -- proto: PianoInstrument - entities: - - uid: 4137 - components: - - rot: 3.141592653589793 rad - pos: -29.5,27.5 - parent: 1 - type: Transform -- proto: Pickaxe - entities: - - uid: 15278 - components: - - pos: -55.437958,92.56956 - parent: 1 - type: Transform - - uid: 15786 - components: - - pos: -42.607155,-9.499174 - parent: 1 - type: Transform - - uid: 15787 - components: - - pos: -42.37278,-9.467924 - parent: 1 - type: Transform -- proto: PillCanister - entities: - - uid: 1985 - components: - - pos: -3.7625957,27.657993 - parent: 1 - type: Transform - - uid: 1986 - components: - - pos: -3.3094707,27.611118 - parent: 1 - type: Transform - - uid: 1987 - components: - - pos: -3.5125957,27.501743 - parent: 1 - type: Transform -- proto: PinpointerNuclear - entities: - - uid: 10874 - components: - - pos: -21.536793,53.579475 - parent: 1 - type: Transform -- proto: PlantBag - entities: - - uid: 6950 - components: - - pos: -43.550423,47.547256 - parent: 1 - type: Transform -- proto: PlasmaDoor - entities: - - uid: 500 - components: - - pos: 8.5,-15.5 - parent: 1 - type: Transform -- proto: PlasmaReinforcedWindowDirectional - entities: - - uid: 493 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-14.5 - parent: 1 - type: Transform - - uid: 1911 - components: - - pos: 10.5,-14.5 - parent: 1 - type: Transform - - uid: 1914 - components: - - pos: 9.5,-14.5 - parent: 1 - type: Transform - - uid: 1915 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-12.5 - parent: 1 - type: Transform - - uid: 2730 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,57.5 - parent: 1 - type: Transform - - uid: 2787 - components: - - pos: -25.5,57.5 - parent: 1 - type: Transform - - uid: 14821 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-12.5 - parent: 1 - type: Transform - - uid: 14823 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-12.5 - parent: 1 - type: Transform - - uid: 14824 - components: - - pos: 10.5,-13.5 - parent: 1 - type: Transform - - uid: 14825 - components: - - pos: 11.5,-14.5 - parent: 1 - type: Transform - - uid: 14830 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-12.5 - parent: 1 - type: Transform - - uid: 14838 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-14.5 - parent: 1 - type: Transform - - uid: 14842 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-13.5 - parent: 1 - type: Transform - - uid: 14844 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-13.5 - parent: 1 - type: Transform - - uid: 14846 - components: - - pos: 7.5,-14.5 - parent: 1 - type: Transform - - uid: 14847 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-13.5 - parent: 1 - type: Transform - - uid: 14848 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-13.5 - parent: 1 - type: Transform - - uid: 14849 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-13.5 - parent: 1 - type: Transform - - uid: 14850 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-12.5 - parent: 1 - type: Transform - - uid: 14851 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-12.5 - parent: 1 - type: Transform - - uid: 14921 - components: - - rot: 3.141592653589793 rad - pos: -25.5,57.5 - parent: 1 - type: Transform - - uid: 14922 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,57.5 - parent: 1 - type: Transform - - uid: 15018 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-13.5 - parent: 1 - type: Transform -- proto: PlasmaTank - entities: - - uid: 14197 - components: - - pos: -77.7388,42.76258 - parent: 1 - type: Transform -- proto: PlasmaTankFilled - entities: - - uid: 9975 - components: - - pos: -82.50182,22.490105 - parent: 1 - type: Transform -- proto: PlasticFlapsAirtightClear - entities: - - uid: 15 - components: - - pos: -73.5,57.5 - parent: 1 - type: Transform - - uid: 3570 - components: - - pos: -35.5,-14.5 - parent: 1 - type: Transform - - uid: 3670 - components: - - pos: -39.5,-8.5 - parent: 1 - type: Transform - - uid: 4758 - components: - - pos: -35.5,-11.5 - parent: 1 - type: Transform - - uid: 10357 - components: - - pos: -31.5,-14.5 - parent: 1 - type: Transform - - uid: 10358 - components: - - pos: -31.5,-11.5 - parent: 1 - type: Transform -- proto: PlushieLizard - entities: - - uid: 14454 - components: - - pos: -71.541916,8.668143 - parent: 1 - type: Transform -- proto: PlushieNuke - entities: - - uid: 1414 - components: - - pos: 25.470646,41.49849 - parent: 1 - type: Transform -- proto: PlushieSpaceLizard - entities: - - uid: 4709 - components: - - pos: -92.400795,47.3703 - parent: 1 - type: Transform -- proto: PortableScrubber - entities: - - uid: 12379 - components: - - pos: 5.5,-10.5 - parent: 1 - type: Transform - - uid: 15142 - components: - - pos: -77.5,38.5 - parent: 1 - type: Transform - - uid: 15143 - components: - - pos: -77.5,37.5 - parent: 1 - type: Transform - - uid: 15144 - components: - - pos: -77.5,36.5 - parent: 1 - type: Transform -- proto: PortableScrubberMachineCircuitBoard - entities: - - uid: 5554 - components: - - pos: -52.480408,23.530405 - parent: 1 - type: Transform -- proto: PosterContrabandClown - entities: - - uid: 4235 - components: - - pos: -39.5,27.5 - parent: 1 - type: Transform -- proto: PosterContrabandGreyTide - entities: - - uid: 5911 - components: - - pos: -7.5,38.5 - parent: 1 - type: Transform -- proto: PosterContrabandLamarr - entities: - - uid: 319 - components: - - pos: -4.5,1.5 - parent: 1 - type: Transform -- proto: PosterContrabandMissingGloves - entities: - - uid: 10085 - components: - - pos: -24.5,25.5 - parent: 1 - type: Transform -- proto: PosterContrabandWehWatches - entities: - - uid: 10419 - components: - - rot: 1.5707963267948966 rad - pos: -61.5,9.5 - parent: 1 - type: Transform -- proto: PosterLegit50thAnniversaryVintageReprint - entities: - - uid: 10080 - components: - - pos: -12.5,-0.5 - parent: 1 - type: Transform -- proto: PosterLegitHereForYourSafety - entities: - - uid: 10060 - components: - - pos: -18.5,28.5 - parent: 1 - type: Transform -- proto: PosterLegitJustAWeekAway - entities: - - uid: 10089 - components: - - pos: -49.5,16.5 - parent: 1 - type: Transform -- proto: PosterLegitLoveIan - entities: - - uid: 10086 - components: - - pos: -23.5,39.5 - parent: 1 - type: Transform - - uid: 10087 - components: - - pos: -18.5,40.5 - parent: 1 - type: Transform -- proto: PosterLegitPDAAd - entities: - - uid: 4550 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,36.5 - parent: 1 - type: Transform -- proto: PosterLegitScience - entities: - - uid: 10081 - components: - - pos: -12.5,-9.5 - parent: 1 - type: Transform -- proto: PosterMapPacked - entities: - - uid: 6314 - components: - - pos: 7.5,53.5 - parent: 1 - type: Transform -- proto: PottedPlant1 - entities: - - uid: 4556 - components: - - pos: 23.5,37.5 - parent: 1 - type: Transform -- proto: PottedPlant27 - entities: - - uid: 71 - components: - - pos: 12.5,25.5 - parent: 1 - type: Transform - - uid: 80 - components: - - pos: 12.5,26.5 - parent: 1 - type: Transform -- proto: PottedPlantRandom - entities: - - uid: 277 - components: - - pos: -13.5,-5.5 - parent: 1 - type: Transform - - uid: 278 - components: - - pos: -0.5,-2.5 - parent: 1 - type: Transform - - uid: 297 - components: - - pos: -7.5,-2.5 - parent: 1 - type: Transform - - uid: 918 - components: - - pos: 26.5,-0.5 - parent: 1 - type: Transform - - uid: 1520 - components: - - pos: -15.5,-1.5 - parent: 1 - type: Transform - - uid: 1522 - components: - - pos: -15.5,-5.5 - parent: 1 - type: Transform - - uid: 1594 - components: - - pos: 13.5,-10.5 - parent: 1 - type: Transform - - uid: 2103 - components: - - pos: -4.5,29.5 - parent: 1 - type: Transform - - uid: 2664 - components: - - pos: -6.5,34.5 - parent: 1 - type: Transform - - uid: 3735 - components: - - pos: -43.5,-4.5 - parent: 1 - type: Transform - - uid: 3736 - components: - - pos: -36.5,-1.5 - parent: 1 - type: Transform - - uid: 3737 - components: - - pos: -34.5,2.5 - parent: 1 - type: Transform - - uid: 5265 - components: - - pos: -55.5,12.5 - parent: 1 - type: Transform - - uid: 5362 - components: - - pos: -50.5,-7.5 - parent: 1 - type: Transform - - uid: 5363 - components: - - pos: -50.5,-2.5 - parent: 1 - type: Transform - - uid: 7461 - components: - - pos: -52.5,90.5 - parent: 1 - type: Transform - - uid: 7465 - components: - - pos: -50.5,90.5 - parent: 1 - type: Transform - - uid: 7558 - components: - - pos: -19.5,44.5 - parent: 1 - type: Transform - - uid: 9771 - components: - - pos: -37.5,33.5 - parent: 1 - type: Transform - - uid: 10063 - components: - - pos: -39.5,39.5 - parent: 1 - type: Transform - - uid: 11056 - components: - - pos: -71.5,15.5 - parent: 1 - type: Transform - - uid: 11057 - components: - - pos: -69.5,31.5 - parent: 1 - type: Transform - - uid: 12735 - components: - - pos: -4.5,34.5 - parent: 1 - type: Transform - - uid: 12955 - components: - - pos: 4.5,21.5 - parent: 1 - type: Transform - - uid: 12956 - components: - - pos: 2.5,34.5 - parent: 1 - type: Transform - - uid: 12957 - components: - - pos: 4.5,34.5 - parent: 1 - type: Transform - - uid: 12958 - components: - - pos: 12.5,33.5 - parent: 1 - type: Transform - - uid: 12959 - components: - - pos: -0.5,40.5 - parent: 1 - type: Transform - - uid: 13081 - components: - - pos: -0.5,36.5 - parent: 1 - type: Transform - - uid: 13087 - components: - - pos: -2.5,8.5 - parent: 1 - type: Transform - - uid: 13088 - components: - - pos: 1.5,10.5 - parent: 1 - type: Transform - - uid: 14881 - components: - - pos: -9.5,30.5 - parent: 1 - type: Transform -- proto: PottedPlantRandomPlastic - entities: - - uid: 6835 - components: - - pos: -37.5,51.5 - parent: 1 - type: Transform - - uid: 6836 - components: - - pos: -36.5,51.5 - parent: 1 - type: Transform - - uid: 6837 - components: - - pos: -35.5,51.5 - parent: 1 - type: Transform - - uid: 6838 - components: - - pos: -34.5,51.5 - parent: 1 - type: Transform - - uid: 6839 - components: - - pos: -34.5,50.5 - parent: 1 - type: Transform - - uid: 6840 - components: - - pos: -35.5,50.5 - parent: 1 - type: Transform - - uid: 6841 - components: - - pos: -36.5,50.5 - parent: 1 - type: Transform - - uid: 6842 - components: - - pos: -37.5,50.5 - parent: 1 - type: Transform - - uid: 6843 - components: - - pos: -36.5,49.5 - parent: 1 - type: Transform - - uid: 6844 - components: - - pos: -35.5,49.5 - parent: 1 - type: Transform - - uid: 13082 - components: - - pos: 6.5,15.5 - parent: 1 - type: Transform -- proto: PottedPlantRD - entities: - - uid: 276 - components: - - pos: -10.5,-1.5 - parent: 1 - type: Transform -- proto: PowerCellMedium - entities: - - uid: 15789 - components: - - pos: -37.797993,-9.327299 - parent: 1 - type: Transform - - uid: 15790 - components: - - pos: -37.454243,-9.483549 - parent: 1 - type: Transform -- proto: PowerCellMicroreactor - entities: - - uid: 15037 - components: - - flags: InContainer - type: MetaData - - parent: 621 - type: Transform - - canCollide: False - type: Physics -- proto: PowerCellRecharger - entities: - - uid: 314 - components: - - pos: 2.5,-2.5 - parent: 1 - type: Transform - - uid: 2253 - components: - - pos: -1.5,34.5 - parent: 1 - type: Transform - - uid: 2254 - components: - - pos: -21.5,59.5 - parent: 1 - type: Transform - - uid: 2255 - components: - - pos: -33.5,38.5 - parent: 1 - type: Transform - - uid: 3958 - components: - - pos: 10.5,24.5 - parent: 1 - type: Transform - - uid: 7189 - components: - - pos: -37.5,-13.5 - parent: 1 - type: Transform - - uid: 7946 - components: - - pos: -56.5,64.5 - parent: 1 - type: Transform - - uid: 13337 - components: - - pos: -2.5,10.5 - parent: 1 - type: Transform - - uid: 13339 - components: - - pos: -39.5,0.5 - parent: 1 - type: Transform - - uid: 13340 - components: - - pos: -31.5,-2.5 - parent: 1 - type: Transform - - uid: 13341 - components: - - pos: -24.5,8.5 - parent: 1 - type: Transform - - uid: 13343 - components: - - pos: -52.5,17.5 - parent: 1 - type: Transform - - uid: 15972 - components: - - pos: -10.5,8.5 - parent: 1 - type: Transform -- proto: Poweredlight - entities: - - uid: 381 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 382 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 383 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 384 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 385 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 386 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 387 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1020 - components: - - pos: 26.5,28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1533 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1838 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1839 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1840 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1841 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1842 - components: - - pos: 7.5,-1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1843 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2009 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,38.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2012 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,22.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2015 - components: - - rot: 3.141592653589793 rad - pos: 11.5,33.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2018 - components: - - pos: 7.5,37.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2073 - components: - - pos: 6.5,20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2074 - components: - - pos: 8.5,26.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2075 - components: - - rot: 3.141592653589793 rad - pos: -0.5,14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2076 - components: - - pos: 2.5,17.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2077 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,17.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2078 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2079 - components: - - rot: 3.141592653589793 rad - pos: 11.5,11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2408 - components: - - rot: 3.141592653589793 rad - pos: -2.5,19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2409 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2410 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2432 - components: - - rot: 3.141592653589793 rad - pos: -3.5,29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2433 - components: - - pos: -0.5,34.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2754 - components: - - rot: 3.141592653589793 rad - pos: -9.5,4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2756 - components: - - rot: 3.141592653589793 rad - pos: 3.5,4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2757 - components: - - pos: 13.5,6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2758 - components: - - rot: 3.141592653589793 rad - pos: 21.5,4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2759 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2760 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,17.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2809 - components: - - rot: 3.141592653589793 rad - pos: -18.5,3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2811 - components: - - pos: -12.5,33.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2812 - components: - - rot: 3.141592653589793 rad - pos: -8.5,27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2971 - components: - - rot: 3.141592653589793 rad - pos: 27.5,23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3210 - components: - - rot: 3.141592653589793 rad - pos: -27.5,4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3407 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3409 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3410 - components: - - rot: 3.141592653589793 rad - pos: -27.5,15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3411 - components: - - pos: -24.5,18.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3486 - components: - - rot: 3.141592653589793 rad - pos: -24.5,-13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 3696 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3767 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3768 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3769 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3771 - components: - - pos: -43.5,-1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3772 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3773 - components: - - rot: 3.141592653589793 rad - pos: -44.5,-7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3833 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3871 - components: - - rot: 3.141592653589793 rad - pos: -45.5,4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4242 - components: - - rot: 3.141592653589793 rad - pos: -24.5,26.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4243 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,26.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4244 - components: - - pos: -34.5,29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4245 - components: - - rot: 3.141592653589793 rad - pos: -31.5,23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4246 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4247 - components: - - rot: 3.141592653589793 rad - pos: -33.5,15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4248 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4249 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4250 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4252 - components: - - rot: 3.141592653589793 rad - pos: -29.5,31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4743 - components: - - rot: -1.5707963267948966 rad - pos: -79.5,-11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4769 - components: - - rot: 3.141592653589793 rad - pos: -63.5,-11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4770 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4905 - components: - - rot: 1.5707963267948966 rad - pos: -74.5,-14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4906 - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4980 - components: - - rot: -1.5707963267948966 rad - pos: -79.5,-9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4983 - components: - - pos: -74.5,-9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5191 - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5192 - components: - - rot: 3.141592653589793 rad - pos: -74.5,4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5193 - components: - - pos: -67.5,6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5194 - components: - - rot: 3.141592653589793 rad - pos: -59.5,4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5196 - components: - - rot: -1.5707963267948966 rad - pos: -56.5,11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5197 - components: - - rot: -1.5707963267948966 rad - pos: -52.5,14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5198 - components: - - rot: -1.5707963267948966 rad - pos: -52.5,19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5200 - components: - - rot: 3.141592653589793 rad - pos: -54.5,31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5201 - components: - - rot: 3.141592653589793 rad - pos: -43.5,30.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5202 - components: - - rot: 1.5707963267948966 rad - pos: -54.5,28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5203 - components: - - rot: -1.5707963267948966 rad - pos: -47.5,28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5204 - components: - - pos: -51.5,25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5337 - components: - - rot: 3.141592653589793 rad - pos: -54.5,4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8582 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,63.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8584 - components: - - pos: -47.5,65.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8585 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,62.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8586 - components: - - rot: 3.141592653589793 rad - pos: -60.5,60.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8587 - components: - - rot: 1.5707963267948966 rad - pos: -56.5,64.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8588 - components: - - rot: -1.5707963267948966 rad - pos: -58.5,64.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8589 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,59.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8590 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,53.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8591 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,57.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8592 - components: - - rot: 3.141592653589793 rad - pos: -55.5,53.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8593 - components: - - rot: 1.5707963267948966 rad - pos: -57.5,58.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8594 - components: - - rot: 3.141592653589793 rad - pos: -60.5,63.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8595 - components: - - pos: -62.5,55.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8596 - components: - - rot: 3.141592653589793 rad - pos: -61.5,50.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9260 - components: - - rot: 3.141592653589793 rad - pos: -50.5,46.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9377 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,38.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9543 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,38.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9544 - components: - - pos: -11.5,44.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9545 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,38.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9546 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,49.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9547 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,48.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9548 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,46.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9549 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,39.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9555 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,42.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9556 - components: - - pos: -33.5,47.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9557 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,46.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9587 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,54.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9588 - components: - - pos: -12.5,57.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9589 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,55.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9590 - components: - - rot: 3.141592653589793 rad - pos: -6.5,54.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9591 - components: - - rot: 3.141592653589793 rad - pos: -8.5,59.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9593 - components: - - rot: 3.141592653589793 rad - pos: -12.5,59.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9594 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,63.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9595 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,63.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9596 - components: - - rot: 3.141592653589793 rad - pos: -20.5,59.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11013 - components: - - rot: 1.5707963267948966 rad - pos: -64.5,40.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11014 - components: - - pos: -61.5,45.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 12774 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,30.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13323 - components: - - pos: -0.5,10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13699 - components: - - rot: 3.141592653589793 rad - pos: -42.5,41.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13700 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,47.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13701 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,51.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13765 - components: - - rot: 3.141592653589793 rad - pos: -24.5,23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13844 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13850 - components: - - pos: 30.5,10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13851 - components: - - rot: 3.141592653589793 rad - pos: 30.5,16.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13853 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14210 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 14466 - components: - - rot: 3.141592653589793 rad - pos: -83.5,23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14471 - components: - - pos: -79.5,27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14473 - components: - - rot: -1.5707963267948966 rad - pos: -73.5,25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14474 - components: - - rot: 3.141592653589793 rad - pos: -71.5,19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14475 - components: - - rot: 3.141592653589793 rad - pos: -63.5,19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14476 - components: - - pos: -67.5,23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14477 - components: - - rot: 3.141592653589793 rad - pos: -71.5,15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14478 - components: - - rot: 1.5707963267948966 rad - pos: -74.5,31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14479 - components: - - pos: -69.5,35.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14480 - components: - - rot: -1.5707963267948966 rad - pos: -63.5,31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14481 - components: - - rot: 1.5707963267948966 rad - pos: -67.5,27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14482 - components: - - rot: 1.5707963267948966 rad - pos: -61.5,31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14483 - components: - - rot: -1.5707963267948966 rad - pos: -76.5,31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14484 - components: - - rot: 1.5707963267948966 rad - pos: -82.5,31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14485 - components: - - rot: -1.5707963267948966 rad - pos: -77.5,38.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14486 - components: - - rot: -1.5707963267948966 rad - pos: -77.5,44.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14487 - components: - - rot: 1.5707963267948966 rad - pos: -86.5,46.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14488 - components: - - rot: 1.5707963267948966 rad - pos: -86.5,42.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14489 - components: - - rot: 1.5707963267948966 rad - pos: -86.5,38.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14490 - components: - - rot: 1.5707963267948966 rad - pos: -86.5,34.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14491 - components: - - rot: 1.5707963267948966 rad - pos: -90.5,35.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14492 - components: - - rot: 1.5707963267948966 rad - pos: -90.5,37.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14493 - components: - - rot: 1.5707963267948966 rad - pos: -90.5,39.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14494 - components: - - rot: 1.5707963267948966 rad - pos: -90.5,41.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14495 - components: - - rot: 1.5707963267948966 rad - pos: -90.5,43.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14496 - components: - - rot: 1.5707963267948966 rad - pos: -90.5,45.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14497 - components: - - pos: -83.5,50.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14498 - components: - - pos: -81.5,50.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14855 - components: - - pos: 7.5,31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14856 - components: - - pos: 11.5,31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14857 - components: - - pos: 9.5,31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- proto: PoweredlightEmpty - entities: - - uid: 302 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,34.5 - parent: 1 - type: Transform - - uid: 340 - components: - - rot: 3.141592653589793 rad - pos: 5.5,28.5 - parent: 1 - type: Transform - - uid: 516 - components: - - pos: -35.5,7.5 - parent: 1 - type: Transform - - uid: 517 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,40.5 - parent: 1 - type: Transform -- proto: PoweredLightPostSmall - entities: - - uid: 15563 - components: - - pos: -1.5,-19.5 - parent: 1 - type: Transform - - uid: 15564 - components: - - pos: 7.5,-21.5 - parent: 1 - type: Transform - - uid: 15565 - components: - - pos: 13.5,-18.5 - parent: 1 - type: Transform -- proto: PoweredlightSodium - entities: - - uid: 3469 - components: - - pos: -50.5,-15.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 4596 - components: - - pos: 20.5,43.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 15427 - components: - - pos: -41.5,58.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 15428 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,63.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 15429 - components: - - rot: 3.141592653589793 rad - pos: -42.5,68.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- proto: PoweredSmallLight - entities: - - uid: 10 - components: - - pos: -48.5,10.5 - parent: 1 - type: Transform - - uid: 282 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 377 - components: - - pos: 3.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 378 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 379 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 380 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 473 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,37.5 - parent: 1 - type: Transform - - uid: 509 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,38.5 - parent: 1 - type: Transform - - uid: 526 - components: - - pos: -41.5,39.5 - parent: 1 - type: Transform - - uid: 1656 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1657 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2237 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,18.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2238 - components: - - pos: 20.5,23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2249 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2512 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2513 - components: - - pos: 22.5,9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2753 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2762 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2781 - components: - - pos: -8.5,9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2782 - components: - - pos: -8.5,15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2792 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,14.5 - parent: 1 - type: Transform - - uid: 2852 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2883 - components: - - pos: -16.5,10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3317 - components: - - rot: 3.141592653589793 rad - pos: -16.5,22.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4075 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5328 - components: - - pos: -41.5,11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5329 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5335 - components: - - pos: -52.5,-4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5336 - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6307 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,51.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6308 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,51.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7101 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,36.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7102 - components: - - rot: 3.141592653589793 rad - pos: -51.5,40.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7713 - components: - - rot: 3.141592653589793 rad - pos: -55.5,88.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7714 - components: - - rot: -1.5707963267948966 rad - pos: -54.5,86.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7730 - components: - - pos: -55.5,84.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7731 - components: - - pos: -61.5,89.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7732 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,84.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7733 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,89.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7741 - components: - - rot: 3.141592653589793 rad - pos: -62.5,83.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7742 - components: - - rot: -1.5707963267948966 rad - pos: -57.5,85.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8353 - components: - - pos: -51.5,68.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8583 - components: - - rot: 3.141592653589793 rad - pos: -51.5,79.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8597 - components: - - rot: 1.5707963267948966 rad - pos: -54.5,50.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8598 - components: - - rot: 1.5707963267948966 rad - pos: -57.5,50.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8599 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,50.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8600 - components: - - rot: 3.141592653589793 rad - pos: -60.5,57.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8971 - components: - - rot: 3.141592653589793 rad - pos: -79.5,18.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9257 - components: - - rot: 1.5707963267948966 rad - pos: -54.5,42.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9592 - components: - - pos: -4.5,56.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9600 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,43.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9601 - components: - - rot: 3.141592653589793 rad - pos: -28.5,40.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9602 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,50.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10253 - components: - - rot: -1.5707963267948966 rad - pos: -69.5,26.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10254 - components: - - rot: -1.5707963267948966 rad - pos: -60.5,12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10978 - components: - - rot: 1.5707963267948966 rad - pos: -72.5,40.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10979 - components: - - rot: -1.5707963267948966 rad - pos: -69.5,44.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10980 - components: - - rot: 3.141592653589793 rad - pos: -70.5,47.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 12775 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,30.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14003 - components: - - rot: -1.5707963267948966 rad - pos: -75.5,55.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14007 - components: - - rot: -1.5707963267948966 rad - pos: -69.5,54.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14009 - components: - - rot: -1.5707963267948966 rad - pos: -69.5,11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14468 - components: - - rot: -1.5707963267948966 rad - pos: -84.5,30.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14472 - components: - - rot: -1.5707963267948966 rad - pos: -84.5,20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 15038 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 15224 - components: - - rot: -1.5707963267948966 rad - pos: -87.5,22.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 15226 - components: - - rot: -1.5707963267948966 rad - pos: -87.5,28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- proto: PoweredSmallLightEmpty - entities: - - uid: 4595 - components: - - rot: 3.141592653589793 rad - pos: 21.5,37.5 - parent: 1 - type: Transform -- proto: Protolathe - entities: - - uid: 254 - components: - - pos: -5.5,1.5 - parent: 1 - type: Transform -- proto: PuddleVomit - entities: - - uid: 79 - components: - - pos: -17.5,44.5 - parent: 1 - type: Transform - - uid: 7010 - components: - - pos: 2.5,6.5 - parent: 1 - type: Transform - - uid: 7126 - components: - - pos: 2.5,5.5 - parent: 1 - type: Transform - - uid: 7127 - components: - - pos: 1.5,5.5 - parent: 1 - type: Transform - - uid: 7128 - components: - - pos: 1.5,6.5 - parent: 1 - type: Transform - - uid: 7129 - components: - - pos: 0.5,6.5 - parent: 1 - type: Transform - - uid: 7130 - components: - - pos: -8.5,-0.5 - parent: 1 - type: Transform - - uid: 7131 - components: - - pos: -8.5,0.5 - parent: 1 - type: Transform - - uid: 7187 - components: - - pos: -9.5,0.5 - parent: 1 - type: Transform - - uid: 7228 - components: - - pos: -9.5,1.5 - parent: 1 - type: Transform - - uid: 7241 - components: - - pos: -8.5,1.5 - parent: 1 - type: Transform - - uid: 7341 - components: - - pos: -27.5,5.5 - parent: 1 - type: Transform - - uid: 7342 - components: - - pos: -28.5,5.5 - parent: 1 - type: Transform - - uid: 7395 - components: - - pos: -28.5,6.5 - parent: 1 - type: Transform - - uid: 7396 - components: - - pos: -29.5,6.5 - parent: 1 - type: Transform - - uid: 7400 - components: - - pos: -29.5,5.5 - parent: 1 - type: Transform -- proto: Rack - entities: - - uid: 7 - components: - - pos: -46.5,8.5 - parent: 1 - type: Transform - - uid: 8 - components: - - pos: -46.5,10.5 - parent: 1 - type: Transform - - uid: 11 - components: - - pos: -46.5,9.5 - parent: 1 - type: Transform - - uid: 1447 - components: - - pos: -17.5,10.5 - parent: 1 - type: Transform - - uid: 1466 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,9.5 - parent: 1 - type: Transform - - uid: 1832 - components: - - pos: 20.5,-2.5 - parent: 1 - type: Transform - - uid: 1876 - components: - - pos: -2.5,-9.5 - parent: 1 - type: Transform - - uid: 2071 - components: - - pos: -3.5,15.5 - parent: 1 - type: Transform - - uid: 2796 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,8.5 - parent: 1 - type: Transform - - uid: 2934 - components: - - rot: 3.141592653589793 rad - pos: -18.5,16.5 - parent: 1 - type: Transform - - uid: 2950 - components: - - pos: 27.5,-4.5 - parent: 1 - type: Transform - - uid: 3168 - components: - - pos: -23.5,55.5 - parent: 1 - type: Transform - - uid: 3511 - components: - - pos: -19.5,-13.5 - parent: 1 - type: Transform - - uid: 3512 - components: - - pos: -19.5,-14.5 - parent: 1 - type: Transform - - uid: 3656 - components: - - pos: -33.5,-1.5 - parent: 1 - type: Transform - - uid: 4334 - components: - - pos: -40.5,18.5 - parent: 1 - type: Transform - - uid: 4335 - components: - - pos: -40.5,17.5 - parent: 1 - type: Transform - - uid: 4336 - components: - - pos: -45.5,17.5 - parent: 1 - type: Transform - - uid: 4337 - components: - - pos: -47.5,17.5 - parent: 1 - type: Transform - - uid: 5290 - components: - - pos: -54.5,27.5 - parent: 1 - type: Transform - - uid: 5291 - components: - - pos: -53.5,27.5 - parent: 1 - type: Transform - - uid: 5292 - components: - - pos: -52.5,27.5 - parent: 1 - type: Transform - - uid: 5293 - components: - - pos: -52.5,25.5 - parent: 1 - type: Transform - - uid: 5294 - components: - - pos: -52.5,24.5 - parent: 1 - type: Transform - - uid: 5295 - components: - - pos: -52.5,23.5 - parent: 1 - type: Transform - - uid: 5296 - components: - - pos: -49.5,25.5 - parent: 1 - type: Transform - - uid: 5297 - components: - - pos: -49.5,24.5 - parent: 1 - type: Transform - - uid: 5298 - components: - - pos: -49.5,23.5 - parent: 1 - type: Transform - - uid: 5304 - components: - - pos: -54.5,25.5 - parent: 1 - type: Transform - - uid: 5426 - components: - - pos: -19.5,0.5 - parent: 1 - type: Transform - - uid: 5427 - components: - - pos: -18.5,-7.5 - parent: 1 - type: Transform - - uid: 5429 - components: - - pos: -27.5,-4.5 - parent: 1 - type: Transform - - uid: 5442 - components: - - pos: -6.5,-13.5 - parent: 1 - type: Transform - - uid: 5446 - components: - - pos: -17.5,-7.5 - parent: 1 - type: Transform - - uid: 5500 - components: - - pos: -51.5,2.5 - parent: 1 - type: Transform - - uid: 5519 - components: - - pos: -47.5,-8.5 - parent: 1 - type: Transform - - uid: 5599 - components: - - pos: -43.5,13.5 - parent: 1 - type: Transform - - uid: 5600 - components: - - pos: -40.5,13.5 - parent: 1 - type: Transform - - uid: 5625 - components: - - pos: -45.5,23.5 - parent: 1 - type: Transform - - uid: 5638 - components: - - pos: -23.5,26.5 - parent: 1 - type: Transform - - uid: 5727 - components: - - pos: -20.5,29.5 - parent: 1 - type: Transform - - uid: 5728 - components: - - pos: -20.5,13.5 - parent: 1 - type: Transform - - uid: 6068 - components: - - pos: -13.5,46.5 - parent: 1 - type: Transform - - uid: 6082 - components: - - pos: -12.5,46.5 - parent: 1 - type: Transform - - uid: 6317 - components: - - pos: 12.5,43.5 - parent: 1 - type: Transform - - uid: 7519 - components: - - pos: -29.5,55.5 - parent: 1 - type: Transform - - uid: 7573 - components: - - pos: -19.5,41.5 - parent: 1 - type: Transform - - uid: 7717 - components: - - pos: -60.5,83.5 - parent: 1 - type: Transform - - uid: 9104 - components: - - rot: 3.141592653589793 rad - pos: -72.5,45.5 - parent: 1 - type: Transform - - uid: 9295 - components: - - rot: 1.5707963267948966 rad - pos: -82.5,22.5 - parent: 1 - type: Transform - - uid: 9734 - components: - - pos: -27.5,35.5 - parent: 1 - type: Transform - - uid: 10372 - components: - - pos: -27.5,49.5 - parent: 1 - type: Transform - - uid: 10383 - components: - - pos: -8.5,46.5 - parent: 1 - type: Transform - - uid: 10389 - components: - - pos: -1.5,45.5 - parent: 1 - type: Transform - - uid: 10391 - components: - - pos: 6.5,48.5 - parent: 1 - type: Transform - - uid: 10405 - components: - - pos: 22.5,27.5 - parent: 1 - type: Transform - - uid: 10462 - components: - - pos: -27.5,40.5 - parent: 1 - type: Transform - - uid: 10862 - components: - - pos: -22.5,57.5 - parent: 1 - type: Transform - - uid: 10863 - components: - - pos: -21.5,57.5 - parent: 1 - type: Transform - - uid: 10864 - components: - - pos: -20.5,57.5 - parent: 1 - type: Transform - - uid: 10952 - components: - - rot: 3.141592653589793 rad - pos: -71.5,45.5 - parent: 1 - type: Transform - - uid: 12904 - components: - - pos: 13.5,8.5 - parent: 1 - type: Transform - - uid: 13085 - components: - - pos: -0.5,10.5 - parent: 1 - type: Transform - - uid: 13671 - components: - - pos: -53.5,44.5 - parent: 1 - type: Transform - - uid: 13673 - components: - - pos: -50.5,41.5 - parent: 1 - type: Transform - - uid: 13803 - components: - - pos: -17.5,26.5 - parent: 1 - type: Transform - - uid: 13929 - components: - - rot: 1.5707963267948966 rad - pos: -77.5,42.5 - parent: 1 - type: Transform - - uid: 14316 - components: - - rot: 3.141592653589793 rad - pos: -61.5,35.5 - parent: 1 - type: Transform - - uid: 14585 - components: - - rot: -1.5707963267948966 rad - pos: -61.5,26.5 - parent: 1 - type: Transform - - uid: 14591 - components: - - rot: 1.5707963267948966 rad - pos: -67.5,13.5 - parent: 1 - type: Transform - - uid: 14919 - components: - - pos: -17.5,14.5 - parent: 1 - type: Transform - - uid: 15650 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-9.5 - parent: 1 - type: Transform - - uid: 15651 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-9.5 - parent: 1 - type: Transform - - uid: 15981 - components: - - pos: -17.5,8.5 - parent: 1 - type: Transform -- proto: RadiationCollector - entities: - - uid: 10498 - components: - - pos: -100.5,32.5 - parent: 1 - type: Transform - - uid: 10575 - components: - - pos: -99.5,32.5 - parent: 1 - type: Transform - - uid: 10599 - components: - - pos: -96.5,18.5 - parent: 1 - type: Transform - - uid: 10600 - components: - - pos: -98.5,32.5 - parent: 1 - type: Transform - - uid: 10601 - components: - - pos: -96.5,32.5 - parent: 1 - type: Transform - - uid: 10602 - components: - - pos: -95.5,32.5 - parent: 1 - type: Transform - - uid: 10603 - components: - - pos: -94.5,32.5 - parent: 1 - type: Transform - - uid: 10604 - components: - - pos: -95.5,18.5 - parent: 1 - type: Transform - - uid: 10605 - components: - - pos: -94.5,18.5 - parent: 1 - type: Transform - - uid: 10606 - components: - - pos: -98.5,18.5 - parent: 1 - type: Transform - - uid: 10607 - components: - - pos: -99.5,18.5 - parent: 1 - type: Transform - - uid: 10608 - components: - - pos: -100.5,18.5 - parent: 1 - type: Transform -- proto: RadioHandheld - entities: - - uid: 15945 - components: - - pos: 20.868422,-8.021761 - parent: 1 - type: Transform - - uid: 15946 - components: - - pos: 20.649672,-8.146761 - parent: 1 - type: Transform -- proto: Railing - entities: - - uid: 1056 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,25.5 - parent: 1 - type: Transform - - uid: 1172 - components: - - pos: 22.5,31.5 - parent: 1 - type: Transform - - uid: 1265 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,27.5 - parent: 1 - type: Transform - - uid: 1266 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,28.5 - parent: 1 - type: Transform - - uid: 1615 - components: - - rot: 3.141592653589793 rad - pos: 22.5,22.5 - parent: 1 - type: Transform - - uid: 2632 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,29.5 - parent: 1 - type: Transform - - uid: 2634 - components: - - rot: 3.141592653589793 rad - pos: -9.5,30.5 - parent: 1 - type: Transform - - uid: 2635 - components: - - rot: 3.141592653589793 rad - pos: -6.5,30.5 - parent: 1 - type: Transform - - uid: 3129 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,28.5 - parent: 1 - type: Transform - - uid: 3130 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,26.5 - parent: 1 - type: Transform - - uid: 3413 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,27.5 - parent: 1 - type: Transform - - uid: 3414 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,25.5 - parent: 1 - type: Transform - - uid: 3415 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,24.5 - parent: 1 - type: Transform - - uid: 3416 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,23.5 - parent: 1 - type: Transform - - uid: 5260 - components: - - rot: -1.5707963267948966 rad - pos: -55.5,16.5 - parent: 1 - type: Transform - - uid: 5261 - components: - - rot: -1.5707963267948966 rad - pos: -55.5,12.5 - parent: 1 - type: Transform - - uid: 7045 - components: - - rot: 3.141592653589793 rad - pos: -50.5,37.5 - parent: 1 - type: Transform - - uid: 10128 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,54.5 - parent: 1 - type: Transform - - uid: 10395 - components: - - pos: 6.5,44.5 - parent: 1 - type: Transform - - uid: 10396 - components: - - rot: 3.141592653589793 rad - pos: 6.5,41.5 - parent: 1 - type: Transform - - uid: 10398 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,54.5 - parent: 1 - type: Transform - - uid: 10961 - components: - - pos: -72.5,43.5 - parent: 1 - type: Transform - - uid: 10962 - components: - - pos: -71.5,43.5 - parent: 1 - type: Transform - - uid: 10963 - components: - - pos: -70.5,43.5 - parent: 1 - type: Transform - - uid: 12896 - components: - - pos: 14.5,16.5 - parent: 1 - type: Transform - - uid: 12897 - components: - - rot: 3.141592653589793 rad - pos: 14.5,12.5 - parent: 1 - type: Transform - - uid: 14331 - components: - - pos: -75.5,43.5 - parent: 1 - type: Transform - - uid: 14332 - components: - - rot: 3.141592653589793 rad - pos: -75.5,39.5 - parent: 1 - type: Transform - - uid: 14356 - components: - - rot: -1.5707963267948966 rad - pos: -62.5,13.5 - parent: 1 - type: Transform - - uid: 14357 - components: - - rot: -1.5707963267948966 rad - pos: -62.5,12.5 - parent: 1 - type: Transform - - uid: 14358 - components: - - rot: -1.5707963267948966 rad - pos: -62.5,11.5 - parent: 1 - type: Transform - - uid: 14359 - components: - - rot: -1.5707963267948966 rad - pos: -62.5,10.5 - parent: 1 - type: Transform -- proto: RailingCorner - entities: - - uid: 2633 - components: - - rot: 3.141592653589793 rad - pos: -10.5,30.5 - parent: 1 - type: Transform - - uid: 7066 - components: - - rot: 3.141592653589793 rad - pos: -51.5,37.5 - parent: 1 - type: Transform -- proto: RandomArcade - entities: - - uid: 2493 - components: - - rot: 3.141592653589793 rad - pos: 17.5,12.5 - parent: 1 - type: Transform - - uid: 2494 - components: - - pos: 17.5,11.5 - parent: 1 - type: Transform - - uid: 2495 - components: - - pos: 18.5,11.5 - parent: 1 - type: Transform - - uid: 2496 - components: - - rot: 3.141592653589793 rad - pos: 18.5,12.5 - parent: 1 - type: Transform - - uid: 2497 - components: - - rot: 3.141592653589793 rad - pos: 16.5,12.5 - parent: 1 - type: Transform - - uid: 2498 - components: - - pos: 16.5,11.5 - parent: 1 - type: Transform - - uid: 2499 - components: - - rot: 3.141592653589793 rad - pos: 16.5,8.5 - parent: 1 - type: Transform - - uid: 2500 - components: - - rot: 3.141592653589793 rad - pos: 17.5,8.5 - parent: 1 - type: Transform - - uid: 2501 - components: - - rot: 3.141592653589793 rad - pos: 18.5,8.5 - parent: 1 - type: Transform - - uid: 3509 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-13.5 - parent: 1 - type: Transform - - uid: 3510 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-14.5 - parent: 1 - type: Transform - - uid: 9767 - components: - - pos: -41.5,39.5 - parent: 1 - type: Transform -- proto: RandomArtifactSpawner - entities: - - uid: 96 - components: - - pos: -4.5,-8.5 - parent: 1 - type: Transform - - uid: 346 - components: - - pos: 1.5,-14.5 - parent: 1 - type: Transform -- proto: RandomDrinkGlass - entities: - - uid: 915 - components: - - pos: 28.5,-1.5 - parent: 1 - type: Transform -- proto: RandomFoodSingle - entities: - - uid: 10809 - components: - - pos: -33.5,37.5 - parent: 1 - type: Transform -- proto: RandomInstruments - entities: - - uid: 4133 - components: - - pos: -26.5,24.5 - parent: 1 - type: Transform - - uid: 4134 - components: - - pos: -25.5,24.5 - parent: 1 - type: Transform - - uid: 4135 - components: - - pos: -24.5,24.5 - parent: 1 - type: Transform - - uid: 7324 - components: - - pos: -54.5,82.5 - parent: 1 - type: Transform - - uid: 7325 - components: - - pos: -54.5,88.5 - parent: 1 - type: Transform -- proto: RandomPainting - entities: - - uid: 14344 - components: - - pos: -78.5,55.5 - parent: 1 - type: Transform - - uid: 14843 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-11.5 - parent: 1 - type: Transform -- proto: RandomPosterAny - entities: - - uid: 1165 - components: - - pos: 20.5,27.5 - parent: 1 - type: Transform - - uid: 10068 - components: - - pos: -4.5,41.5 - parent: 1 - type: Transform - - uid: 10069 - components: - - pos: 5.5,48.5 - parent: 1 - type: Transform - - uid: 10070 - components: - - pos: 13.5,42.5 - parent: 1 - type: Transform - - uid: 10073 - components: - - pos: 25.5,-3.5 - parent: 1 - type: Transform - - uid: 10074 - components: - - pos: 12.5,-8.5 - parent: 1 - type: Transform - - uid: 10075 - components: - - pos: -22.5,-6.5 - parent: 1 - type: Transform - - uid: 10076 - components: - - pos: -49.5,-5.5 - parent: 1 - type: Transform - - uid: 10088 - components: - - pos: -46.5,22.5 - parent: 1 - type: Transform - - uid: 14348 - components: - - pos: -68.5,55.5 - parent: 1 - type: Transform - - uid: 14349 - components: - - pos: -68.5,43.5 - parent: 1 - type: Transform - - uid: 14350 - components: - - pos: -73.5,41.5 - parent: 1 - type: Transform - - uid: 14354 - components: - - pos: -65.5,13.5 - parent: 1 - type: Transform -- proto: RandomPosterContraband - entities: - - uid: 14347 - components: - - pos: -74.5,54.5 - parent: 1 - type: Transform -- proto: RandomPosterLegit - entities: - - uid: 1061 - components: - - pos: 2.5,7.5 - parent: 1 - type: Transform - - uid: 7323 - components: - - pos: -53.5,86.5 - parent: 1 - type: Transform - - uid: 8352 - components: - - rot: 3.141592653589793 rad - pos: -45.5,37.5 - parent: 1 - type: Transform - - uid: 10044 - components: - - pos: -54.5,34.5 - parent: 1 - type: Transform - - uid: 10046 - components: - - pos: -55.5,17.5 - parent: 1 - type: Transform - - uid: 10048 - components: - - pos: -68.5,7.5 - parent: 1 - type: Transform - - uid: 10049 - components: - - pos: -55.5,-2.5 - parent: 1 - type: Transform - - uid: 10051 - components: - - pos: -43.5,7.5 - parent: 1 - type: Transform - - uid: 10052 - components: - - pos: -27.5,3.5 - parent: 1 - type: Transform - - uid: 10053 - components: - - pos: -11.5,3.5 - parent: 1 - type: Transform - - uid: 10055 - components: - - pos: 14.5,4.5 - parent: 1 - type: Transform - - uid: 10056 - components: - - pos: 24.5,8.5 - parent: 1 - type: Transform - - uid: 10057 - components: - - pos: 29.5,19.5 - parent: 1 - type: Transform - - uid: 10059 - components: - - pos: -10.5,26.5 - parent: 1 - type: Transform - - uid: 10061 - components: - - pos: -49.5,41.5 - parent: 1 - type: Transform - - uid: 10062 - components: - - pos: -12.5,45.5 - parent: 1 - type: Transform - - uid: 10064 - components: - - pos: -39.5,25.5 - parent: 1 - type: Transform - - uid: 10065 - components: - - pos: -35.5,14.5 - parent: 1 - type: Transform - - uid: 10066 - components: - - pos: -30.5,30.5 - parent: 1 - type: Transform - - uid: 10067 - components: - - pos: -8.5,35.5 - parent: 1 - type: Transform - - uid: 14351 - components: - - pos: -62.5,37.5 - parent: 1 - type: Transform - - uid: 14352 - components: - - pos: -59.5,45.5 - parent: 1 - type: Transform - - uid: 14353 - components: - - pos: -59.5,28.5 - parent: 1 - type: Transform - - uid: 14355 - components: - - pos: -59.5,8.5 - parent: 1 - type: Transform -- proto: RandomSoap - entities: - - uid: 5305 - components: - - pos: -54.5,25.5 - parent: 1 - type: Transform - - uid: 5437 - components: - - pos: -23.5,-1.5 - parent: 1 - type: Transform - - uid: 5438 - components: - - pos: -23.5,0.5 - parent: 1 - type: Transform - - uid: 5439 - components: - - pos: -23.5,2.5 - parent: 1 - type: Transform - - uid: 7097 - components: - - pos: -50.5,40.5 - parent: 1 - type: Transform - - uid: 7739 - components: - - pos: -54.5,86.5 - parent: 1 - type: Transform -- proto: RandomSpawner - entities: - - uid: 259 - components: - - pos: -70.5,54.5 - parent: 1 - type: Transform - - uid: 287 - components: - - pos: -36.5,18.5 - parent: 1 - type: Transform - - uid: 1402 - components: - - pos: -72.5,56.5 - parent: 1 - type: Transform - - uid: 2308 - components: - - pos: -70.5,54.5 - parent: 1 - type: Transform - - uid: 2990 - components: - - pos: -71.5,52.5 - parent: 1 - type: Transform - - uid: 3481 - components: - - pos: -33.5,32.5 - parent: 1 - type: Transform - - uid: 3738 - components: - - pos: -34.5,33.5 - parent: 1 - type: Transform - - uid: 4074 - components: - - pos: -71.5,54.5 - parent: 1 - type: Transform - - uid: 4220 - components: - - pos: -36.5,17.5 - parent: 1 - type: Transform - - uid: 4732 - components: - - pos: 20.5,38.5 - parent: 1 - type: Transform - - uid: 4733 - components: - - pos: 17.5,43.5 - parent: 1 - type: Transform - - uid: 5547 - components: - - pos: -70.5,53.5 - parent: 1 - type: Transform - - uid: 5756 - components: - - pos: -57.5,60.5 - parent: 1 - type: Transform - - uid: 7393 - components: - - pos: -44.5,-13.5 - parent: 1 - type: Transform - - uid: 8025 - components: - - rot: 3.141592653589793 rad - pos: -40.5,51.5 - parent: 1 - type: Transform - - uid: 8026 - components: - - pos: -44.5,46.5 - parent: 1 - type: Transform - - uid: 8027 - components: - - pos: -40.5,43.5 - parent: 1 - type: Transform - - uid: 8028 - components: - - pos: -43.5,42.5 - parent: 1 - type: Transform - - uid: 8029 - components: - - pos: -37.5,43.5 - parent: 1 - type: Transform - - uid: 8030 - components: - - pos: -33.5,46.5 - parent: 1 - type: Transform - - uid: 8031 - components: - - pos: -31.5,44.5 - parent: 1 - type: Transform - - uid: 8033 - components: - - pos: -29.5,46.5 - parent: 1 - type: Transform - - uid: 8034 - components: - - pos: -28.5,41.5 - parent: 1 - type: Transform - - uid: 8035 - components: - - pos: -31.5,38.5 - parent: 1 - type: Transform - - uid: 8036 - components: - - pos: -32.5,40.5 - parent: 1 - type: Transform - - uid: 8037 - components: - - pos: -35.5,35.5 - parent: 1 - type: Transform - - uid: 8038 - components: - - pos: -42.5,37.5 - parent: 1 - type: Transform - - uid: 8039 - components: - - pos: -35.5,40.5 - parent: 1 - type: Transform - - uid: 8040 - components: - - pos: -36.5,28.5 - parent: 1 - type: Transform - - uid: 8041 - components: - - pos: -38.5,22.5 - parent: 1 - type: Transform - - uid: 8042 - components: - - pos: -37.5,16.5 - parent: 1 - type: Transform - - uid: 8043 - components: - - pos: -36.5,9.5 - parent: 1 - type: Transform - - uid: 8044 - components: - - pos: -38.5,5.5 - parent: 1 - type: Transform - - uid: 8045 - components: - - pos: -33.5,4.5 - parent: 1 - type: Transform - - uid: 8046 - components: - - pos: -32.5,1.5 - parent: 1 - type: Transform - - uid: 8047 - components: - - pos: -41.5,2.5 - parent: 1 - type: Transform - - uid: 8048 - components: - - pos: -48.5,5.5 - parent: 1 - type: Transform - - uid: 8049 - components: - - pos: -55.5,6.5 - parent: 1 - type: Transform - - uid: 8050 - components: - - pos: -57.5,4.5 - parent: 1 - type: Transform - - uid: 8051 - components: - - pos: -65.5,6.5 - parent: 1 - type: Transform - - uid: 8052 - components: - - pos: -70.5,5.5 - parent: 1 - type: Transform - - uid: 8053 - components: - - pos: -74.5,6.5 - parent: 1 - type: Transform - - uid: 8054 - components: - - pos: -56.5,-2.5 - parent: 1 - type: Transform - - uid: 8055 - components: - - pos: -58.5,1.5 - parent: 1 - type: Transform - - uid: 8056 - components: - - pos: -56.5,-8.5 - parent: 1 - type: Transform - - uid: 8060 - components: - - pos: -52.5,-7.5 - parent: 1 - type: Transform - - uid: 8061 - components: - - pos: -54.5,-2.5 - parent: 1 - type: Transform - - uid: 8062 - components: - - pos: -50.5,-1.5 - parent: 1 - type: Transform - - uid: 8063 - components: - - pos: -44.5,-4.5 - parent: 1 - type: Transform - - uid: 8064 - components: - - pos: -45.5,0.5 - parent: 1 - type: Transform - - uid: 8065 - components: - - pos: -37.5,-3.5 - parent: 1 - type: Transform - - uid: 8066 - components: - - pos: -41.5,-3.5 - parent: 1 - type: Transform - - uid: 8067 - components: - - pos: -32.5,-9.5 - parent: 1 - type: Transform - - uid: 8069 - components: - - pos: -38.5,-12.5 - parent: 1 - type: Transform - - uid: 8070 - components: - - pos: -41.5,-10.5 - parent: 1 - type: Transform - - uid: 8072 - components: - - pos: -26.5,-6.5 - parent: 1 - type: Transform - - uid: 8073 - components: - - pos: -29.5,-5.5 - parent: 1 - type: Transform - - uid: 8074 - components: - - pos: -25.5,-0.5 - parent: 1 - type: Transform - - uid: 8075 - components: - - pos: -28.5,2.5 - parent: 1 - type: Transform - - uid: 8076 - components: - - pos: -21.5,-8.5 - parent: 1 - type: Transform - - uid: 8077 - components: - - pos: -20.5,-4.5 - parent: 1 - type: Transform - - uid: 8078 - components: - - pos: -21.5,-1.5 - parent: 1 - type: Transform - - uid: 8079 - components: - - pos: -24.5,-7.5 - parent: 1 - type: Transform - - uid: 8080 - components: - - pos: -15.5,1.5 - parent: 1 - type: Transform - - uid: 8081 - components: - - pos: -16.5,-10.5 - parent: 1 - type: Transform - - uid: 8082 - components: - - pos: -12.5,-13.5 - parent: 1 - type: Transform - - uid: 8083 - components: - - pos: -20.5,-10.5 - parent: 1 - type: Transform - - uid: 8085 - components: - - pos: -24.5,-4.5 - parent: 1 - type: Transform - - uid: 8086 - components: - - pos: -31.5,6.5 - parent: 1 - type: Transform - - uid: 8087 - components: - - pos: -24.5,4.5 - parent: 1 - type: Transform - - uid: 8088 - components: - - pos: -19.5,6.5 - parent: 1 - type: Transform - - uid: 8089 - components: - - pos: -14.5,5.5 - parent: 1 - type: Transform - - uid: 8090 - components: - - pos: -8.5,4.5 - parent: 1 - type: Transform - - uid: 8091 - components: - - pos: -4.5,6.5 - parent: 1 - type: Transform - - uid: 8092 - components: - - pos: -1.5,4.5 - parent: 1 - type: Transform - - uid: 8093 - components: - - pos: 7.5,5.5 - parent: 1 - type: Transform - - uid: 8094 - components: - - pos: 13.5,6.5 - parent: 1 - type: Transform - - uid: 8095 - components: - - pos: 19.5,5.5 - parent: 1 - type: Transform - - uid: 8096 - components: - - pos: 26.5,6.5 - parent: 1 - type: Transform - - uid: 8097 - components: - - pos: 28.5,10.5 - parent: 1 - type: Transform - - uid: 8098 - components: - - pos: 25.5,14.5 - parent: 1 - type: Transform - - uid: 8099 - components: - - pos: 27.5,18.5 - parent: 1 - type: Transform - - uid: 8100 - components: - - pos: 26.5,21.5 - parent: 1 - type: Transform - - uid: 8101 - components: - - pos: 22.5,15.5 - parent: 1 - type: Transform - - uid: 8102 - components: - - pos: 19.5,16.5 - parent: 1 - type: Transform - - uid: 8103 - components: - - pos: 16.5,20.5 - parent: 1 - type: Transform - - uid: 8104 - components: - - pos: 19.5,23.5 - parent: 1 - type: Transform - - uid: 8105 - components: - - pos: 23.5,25.5 - parent: 1 - type: Transform - - uid: 8106 - components: - - pos: 22.5,33.5 - parent: 1 - type: Transform - - uid: 8107 - components: - - pos: 23.5,35.5 - parent: 1 - type: Transform - - uid: 8108 - components: - - pos: 14.5,35.5 - parent: 1 - type: Transform - - uid: 8110 - components: - - pos: 9.5,39.5 - parent: 1 - type: Transform - - uid: 8111 - components: - - pos: 7.5,43.5 - parent: 1 - type: Transform - - uid: 8112 - components: - - pos: 6.5,46.5 - parent: 1 - type: Transform - - uid: 8113 - components: - - pos: 14.5,48.5 - parent: 1 - type: Transform - - uid: 8116 - components: - - pos: 11.5,51.5 - parent: 1 - type: Transform - - uid: 8117 - components: - - pos: 6.5,50.5 - parent: 1 - type: Transform - - uid: 8118 - components: - - pos: 4.5,52.5 - parent: 1 - type: Transform - - uid: 8119 - components: - - pos: -1.5,49.5 - parent: 1 - type: Transform - - uid: 8120 - components: - - pos: -0.5,53.5 - parent: 1 - type: Transform - - uid: 8121 - components: - - pos: -0.5,47.5 - parent: 1 - type: Transform - - uid: 8122 - components: - - pos: -2.5,40.5 - parent: 1 - type: Transform - - uid: 8123 - components: - - pos: -6.5,36.5 - parent: 1 - type: Transform - - uid: 8124 - components: - - pos: -5.5,47.5 - parent: 1 - type: Transform - - uid: 8125 - components: - - pos: -10.5,51.5 - parent: 1 - type: Transform - - uid: 8126 - components: - - pos: -12.5,53.5 - parent: 1 - type: Transform - - uid: 8127 - components: - - pos: -8.5,57.5 - parent: 1 - type: Transform - - uid: 8128 - components: - - pos: -5.5,59.5 - parent: 1 - type: Transform - - uid: 8129 - components: - - pos: -13.5,60.5 - parent: 1 - type: Transform - - uid: 8130 - components: - - pos: -17.5,64.5 - parent: 1 - type: Transform - - uid: 8131 - components: - - pos: -20.5,61.5 - parent: 1 - type: Transform - - uid: 8132 - components: - - pos: -17.5,56.5 - parent: 1 - type: Transform - - uid: 8133 - components: - - pos: -14.5,53.5 - parent: 1 - type: Transform - - uid: 8134 - components: - - pos: -22.5,55.5 - parent: 1 - type: Transform - - uid: 8135 - components: - - pos: -17.5,49.5 - parent: 1 - type: Transform - - uid: 8136 - components: - - pos: -16.5,42.5 - parent: 1 - type: Transform - - uid: 8137 - components: - - pos: -15.5,46.5 - parent: 1 - type: Transform - - uid: 8138 - components: - - pos: -12.5,47.5 - parent: 1 - type: Transform - - uid: 8139 - components: - - pos: -10.5,48.5 - parent: 1 - type: Transform - - uid: 8140 - components: - - pos: -15.5,39.5 - parent: 1 - type: Transform - - uid: 8141 - components: - - pos: -17.5,35.5 - parent: 1 - type: Transform - - uid: 8142 - components: - - pos: -13.5,39.5 - parent: 1 - type: Transform - - uid: 8143 - components: - - pos: -11.5,42.5 - parent: 1 - type: Transform - - uid: 8144 - components: - - pos: -4.5,33.5 - parent: 1 - type: Transform - - uid: 8145 - components: - - pos: -0.5,30.5 - parent: 1 - type: Transform - - uid: 8146 - components: - - pos: 2.5,33.5 - parent: 1 - type: Transform - - uid: 8147 - components: - - pos: 2.5,37.5 - parent: 1 - type: Transform - - uid: 8148 - components: - - pos: 1.5,40.5 - parent: 1 - type: Transform - - uid: 8149 - components: - - pos: 0.5,36.5 - parent: 1 - type: Transform - - uid: 8150 - components: - - pos: 7.5,37.5 - parent: 1 - type: Transform - - uid: 8151 - components: - - pos: 11.5,34.5 - parent: 1 - type: Transform - - uid: 8152 - components: - - pos: 4.5,28.5 - parent: 1 - type: Transform - - uid: 8153 - components: - - pos: 2.5,24.5 - parent: 1 - type: Transform - - uid: 8154 - components: - - pos: 4.5,19.5 - parent: 1 - type: Transform - - uid: 8155 - components: - - pos: -1.5,16.5 - parent: 1 - type: Transform - - uid: 8156 - components: - - pos: 2.5,15.5 - parent: 1 - type: Transform - - uid: 8157 - components: - - pos: -1.5,20.5 - parent: 1 - type: Transform - - uid: 8158 - components: - - pos: -3.5,26.5 - parent: 1 - type: Transform - - uid: 8159 - components: - - pos: -1.5,22.5 - parent: 1 - type: Transform - - uid: 8160 - components: - - pos: 10.5,20.5 - parent: 1 - type: Transform - - uid: 8161 - components: - - pos: 7.5,15.5 - parent: 1 - type: Transform - - uid: 8162 - components: - - pos: 10.5,14.5 - parent: 1 - type: Transform - - uid: 8163 - components: - - pos: 7.5,12.5 - parent: 1 - type: Transform - - uid: 8164 - components: - - pos: 11.5,11.5 - parent: 1 - type: Transform - - uid: 8165 - components: - - pos: 9.5,23.5 - parent: 1 - type: Transform - - uid: 8166 - components: - - pos: 7.5,25.5 - parent: 1 - type: Transform - - uid: 8167 - components: - - pos: 8.5,29.5 - parent: 1 - type: Transform - - uid: 8168 - components: - - pos: 11.5,28.5 - parent: 1 - type: Transform - - uid: 8169 - components: - - pos: 14.5,30.5 - parent: 1 - type: Transform - - uid: 8171 - components: - - pos: 18.5,29.5 - parent: 1 - type: Transform - - uid: 8172 - components: - - pos: -8.5,33.5 - parent: 1 - type: Transform - - uid: 8173 - components: - - pos: -12.5,30.5 - parent: 1 - type: Transform - - uid: 8174 - components: - - pos: -7.5,27.5 - parent: 1 - type: Transform - - uid: 8175 - components: - - pos: -17.5,32.5 - parent: 1 - type: Transform - - uid: 8176 - components: - - pos: -11.5,26.5 - parent: 1 - type: Transform - - uid: 8177 - components: - - pos: -13.5,22.5 - parent: 1 - type: Transform - - uid: 8178 - components: - - pos: -11.5,19.5 - parent: 1 - type: Transform - - uid: 8179 - components: - - pos: -13.5,16.5 - parent: 1 - type: Transform - - uid: 8180 - components: - - pos: -11.5,12.5 - parent: 1 - type: Transform - - uid: 8181 - components: - - pos: -13.5,9.5 - parent: 1 - type: Transform - - uid: 8182 - components: - - pos: -5.5,10.5 - parent: 1 - type: Transform - - uid: 8183 - components: - - pos: -4.5,15.5 - parent: 1 - type: Transform - - uid: 8184 - components: - - pos: -6.5,20.5 - parent: 1 - type: Transform - - uid: 8185 - components: - - pos: -7.5,24.5 - parent: 1 - type: Transform - - uid: 8186 - components: - - pos: 1.5,12.5 - parent: 1 - type: Transform - - uid: 8187 - components: - - pos: 6.5,9.5 - parent: 1 - type: Transform - - uid: 8188 - components: - - pos: 14.5,9.5 - parent: 1 - type: Transform - - uid: 8189 - components: - - pos: 13.5,16.5 - parent: 1 - type: Transform - - uid: 8190 - components: - - pos: 13.5,21.5 - parent: 1 - type: Transform - - uid: 8192 - components: - - pos: 19.5,12.5 - parent: 1 - type: Transform - - uid: 8193 - components: - - pos: 16.5,9.5 - parent: 1 - type: Transform - - uid: 8194 - components: - - pos: 13.5,2.5 - parent: 1 - type: Transform - - uid: 8195 - components: - - pos: 16.5,-1.5 - parent: 1 - type: Transform - - uid: 8196 - components: - - pos: 19.5,1.5 - parent: 1 - type: Transform - - uid: 8197 - components: - - pos: 19.5,-1.5 - parent: 1 - type: Transform - - uid: 8198 - components: - - pos: 7.5,-2.5 - parent: 1 - type: Transform - - uid: 8199 - components: - - pos: 8.5,1.5 - parent: 1 - type: Transform - - uid: 8200 - components: - - pos: 11.5,-0.5 - parent: 1 - type: Transform - - uid: 8201 - components: - - pos: -18.5,-2.5 - parent: 1 - type: Transform - - uid: 8202 - components: - - pos: -15.5,-4.5 - parent: 1 - type: Transform - - uid: 8203 - components: - - pos: -13.5,-2.5 - parent: 1 - type: Transform - - uid: 8204 - components: - - pos: -12.5,-5.5 - parent: 1 - type: Transform - - uid: 8205 - components: - - pos: -11.5,-7.5 - parent: 1 - type: Transform - - uid: 8206 - components: - - pos: -9.5,-1.5 - parent: 1 - type: Transform - - uid: 8207 - components: - - pos: -11.5,2.5 - parent: 1 - type: Transform - - uid: 8208 - components: - - pos: -5.5,-1.5 - parent: 1 - type: Transform - - uid: 8210 - components: - - pos: -4.5,-4.5 - parent: 1 - type: Transform - - uid: 8211 - components: - - pos: -1.5,-1.5 - parent: 1 - type: Transform - - uid: 8213 - components: - - pos: -3.5,1.5 - parent: 1 - type: Transform - - uid: 8216 - components: - - pos: -1.5,-9.5 - parent: 1 - type: Transform - - uid: 8217 - components: - - pos: -4.5,-12.5 - parent: 1 - type: Transform - - uid: 8218 - components: - - pos: -11.5,-11.5 - parent: 1 - type: Transform - - uid: 8219 - components: - - pos: 0.5,-8.5 - parent: 1 - type: Transform - - uid: 8220 - components: - - pos: 4.5,-10.5 - parent: 1 - type: Transform - - uid: 8221 - components: - - pos: 2.5,-15.5 - parent: 1 - type: Transform - - uid: 8222 - components: - - pos: 4.5,0.5 - parent: 1 - type: Transform - - uid: 8223 - components: - - pos: 3.5,-5.5 - parent: 1 - type: Transform - - uid: 8225 - components: - - pos: 16.5,-5.5 - parent: 1 - type: Transform - - uid: 8226 - components: - - pos: 19.5,-4.5 - parent: 1 - type: Transform - - uid: 8227 - components: - - pos: 24.5,-5.5 - parent: 1 - type: Transform - - uid: 8228 - components: - - pos: 27.5,-2.5 - parent: 1 - type: Transform - - uid: 8229 - components: - - pos: 29.5,-1.5 - parent: 1 - type: Transform - - uid: 8230 - components: - - pos: 19.5,-8.5 - parent: 1 - type: Transform - - uid: 8231 - components: - - pos: 24.5,-7.5 - parent: 1 - type: Transform - - uid: 8232 - components: - - pos: 29.5,-8.5 - parent: 1 - type: Transform - - uid: 8233 - components: - - pos: 15.5,-11.5 - parent: 1 - type: Transform - - uid: 8234 - components: - - pos: 13.5,-8.5 - parent: 1 - type: Transform - - uid: 8237 - components: - - pos: -7.5,11.5 - parent: 1 - type: Transform - - uid: 8238 - components: - - pos: -15.5,14.5 - parent: 1 - type: Transform - - uid: 8241 - components: - - pos: -16.5,20.5 - parent: 1 - type: Transform - - uid: 8242 - components: - - pos: -20.5,16.5 - parent: 1 - type: Transform - - uid: 8243 - components: - - pos: -19.5,11.5 - parent: 1 - type: Transform - - uid: 8244 - components: - - pos: -20.5,12.5 - parent: 1 - type: Transform - - uid: 8245 - components: - - pos: -18.5,19.5 - parent: 1 - type: Transform - - uid: 8246 - components: - - pos: -25.5,21.5 - parent: 1 - type: Transform - - uid: 8247 - components: - - pos: -19.5,24.5 - parent: 1 - type: Transform - - uid: 8248 - components: - - pos: -19.5,27.5 - parent: 1 - type: Transform - - uid: 8249 - components: - - pos: -15.5,28.5 - parent: 1 - type: Transform - - uid: 8250 - components: - - pos: -16.5,25.5 - parent: 1 - type: Transform - - uid: 8251 - components: - - pos: -15.5,23.5 - parent: 1 - type: Transform - - uid: 8252 - components: - - pos: 1.5,8.5 - parent: 1 - type: Transform - - uid: 8253 - components: - - pos: -1.5,9.5 - parent: 1 - type: Transform - - uid: 8254 - components: - - pos: -28.5,8.5 - parent: 1 - type: Transform - - uid: 8255 - components: - - pos: -24.5,10.5 - parent: 1 - type: Transform - - uid: 8256 - components: - - pos: -27.5,12.5 - parent: 1 - type: Transform - - uid: 8257 - components: - - pos: -22.5,12.5 - parent: 1 - type: Transform - - uid: 8258 - components: - - pos: -25.5,16.5 - parent: 1 - type: Transform - - uid: 8259 - components: - - pos: -22.5,17.5 - parent: 1 - type: Transform - - uid: 8260 - components: - - pos: -28.5,18.5 - parent: 1 - type: Transform - - uid: 8261 - components: - - pos: -33.5,9.5 - parent: 1 - type: Transform - - uid: 8262 - components: - - pos: -30.5,13.5 - parent: 1 - type: Transform - - uid: 8263 - components: - - pos: -32.5,16.5 - parent: 1 - type: Transform - - uid: 8265 - components: - - pos: -32.5,20.5 - parent: 1 - type: Transform - - uid: 8266 - components: - - pos: -29.5,21.5 - parent: 1 - type: Transform - - uid: 8267 - components: - - pos: -28.5,24.5 - parent: 1 - type: Transform - - uid: 8268 - components: - - pos: -33.5,25.5 - parent: 1 - type: Transform - - uid: 8269 - components: - - pos: -32.5,28.5 - parent: 1 - type: Transform - - uid: 8270 - components: - - pos: -36.5,24.5 - parent: 1 - type: Transform - - uid: 8271 - components: - - pos: -30.5,29.5 - parent: 1 - type: Transform - - uid: 8272 - components: - - pos: -24.5,27.5 - parent: 1 - type: Transform - - uid: 8273 - components: - - pos: -26.5,28.5 - parent: 1 - type: Transform - - uid: 8274 - components: - - pos: -27.5,36.5 - parent: 1 - type: Transform - - uid: 8275 - components: - - pos: -42.5,27.5 - parent: 1 - type: Transform - - uid: 8276 - components: - - pos: -40.5,24.5 - parent: 1 - type: Transform - - uid: 8277 - components: - - pos: -44.5,27.5 - parent: 1 - type: Transform - - uid: 8279 - components: - - pos: -44.5,18.5 - parent: 1 - type: Transform - - uid: 8280 - components: - - pos: -41.5,18.5 - parent: 1 - type: Transform - - uid: 8281 - components: - - pos: -42.5,21.5 - parent: 1 - type: Transform - - uid: 8282 - components: - - pos: -50.5,21.5 - parent: 1 - type: Transform - - uid: 8283 - components: - - pos: -44.5,10.5 - parent: 1 - type: Transform - - uid: 8284 - components: - - pos: -48.5,14.5 - parent: 1 - type: Transform - - uid: 8285 - components: - - pos: -41.5,10.5 - parent: 1 - type: Transform - - uid: 8286 - components: - - pos: -41.5,15.5 - parent: 1 - type: Transform - - uid: 8291 - components: - - pos: -53.5,1.5 - parent: 1 - type: Transform - - uid: 8292 - components: - - pos: -48.5,1.5 - parent: 1 - type: Transform - - uid: 8293 - components: - - pos: -48.5,-3.5 - parent: 1 - type: Transform - - uid: 8294 - components: - - pos: -48.5,-7.5 - parent: 1 - type: Transform - - uid: 8295 - components: - - pos: -51.5,-9.5 - parent: 1 - type: Transform - - uid: 8296 - components: - - pos: -48.5,-10.5 - parent: 1 - type: Transform - - uid: 8297 - components: - - pos: -56.5,9.5 - parent: 1 - type: Transform - - uid: 8298 - components: - - pos: -57.5,14.5 - parent: 1 - type: Transform - - uid: 8299 - components: - - pos: -57.5,19.5 - parent: 1 - type: Transform - - uid: 8300 - components: - - pos: -56.5,24.5 - parent: 1 - type: Transform - - uid: 8301 - components: - - pos: -58.5,26.5 - parent: 1 - type: Transform - - uid: 8302 - components: - - pos: -57.5,30.5 - parent: 1 - type: Transform - - uid: 8303 - components: - - pos: -54.5,32.5 - parent: 1 - type: Transform - - uid: 8304 - components: - - pos: -49.5,32.5 - parent: 1 - type: Transform - - uid: 8305 - components: - - pos: -45.5,32.5 - parent: 1 - type: Transform - - uid: 8306 - components: - - pos: -41.5,31.5 - parent: 1 - type: Transform - - uid: 8307 - components: - - pos: -41.5,33.5 - parent: 1 - type: Transform - - uid: 8308 - components: - - pos: -48.5,35.5 - parent: 1 - type: Transform - - uid: 8309 - components: - - pos: -46.5,40.5 - parent: 1 - type: Transform - - uid: 8310 - components: - - pos: -47.5,44.5 - parent: 1 - type: Transform - - uid: 8311 - components: - - pos: -49.5,46.5 - parent: 1 - type: Transform - - uid: 8312 - components: - - pos: -46.5,51.5 - parent: 1 - type: Transform - - uid: 8313 - components: - - pos: -54.5,47.5 - parent: 1 - type: Transform - - uid: 8315 - components: - - pos: -57.5,44.5 - parent: 1 - type: Transform - - uid: 8316 - components: - - pos: -57.5,40.5 - parent: 1 - type: Transform - - uid: 8317 - components: - - pos: -56.5,39.5 - parent: 1 - type: Transform - - uid: 8318 - components: - - pos: -58.5,36.5 - parent: 1 - type: Transform - - uid: 8319 - components: - - pos: -52.5,43.5 - parent: 1 - type: Transform - - uid: 8320 - components: - - pos: -44.5,51.5 - parent: 1 - type: Transform - - uid: 8321 - components: - - pos: -40.5,55.5 - parent: 1 - type: Transform - - uid: 8322 - components: - - pos: -35.5,55.5 - parent: 1 - type: Transform - - uid: 8323 - components: - - pos: -32.5,52.5 - parent: 1 - type: Transform - - uid: 8327 - components: - - pos: -27.5,50.5 - parent: 1 - type: Transform - - uid: 8328 - components: - - pos: -28.5,54.5 - parent: 1 - type: Transform - - uid: 8329 - components: - - pos: -20.5,51.5 - parent: 1 - type: Transform - - uid: 8330 - components: - - pos: -25.5,47.5 - parent: 1 - type: Transform - - uid: 8331 - components: - - pos: -25.5,39.5 - parent: 1 - type: Transform - - uid: 8332 - components: - - pos: -24.5,42.5 - parent: 1 - type: Transform - - uid: 8333 - components: - - pos: -24.5,36.5 - parent: 1 - type: Transform - - uid: 8334 - components: - - pos: -22.5,39.5 - parent: 1 - type: Transform - - uid: 8335 - components: - - pos: -20.5,41.5 - parent: 1 - type: Transform - - uid: 8336 - components: - - pos: -21.5,44.5 - parent: 1 - type: Transform - - uid: 8337 - components: - - pos: -20.5,48.5 - parent: 1 - type: Transform - - uid: 8338 - components: - - pos: -21.5,31.5 - parent: 1 - type: Transform - - uid: 8339 - components: - - pos: -25.5,32.5 - parent: 1 - type: Transform - - uid: 8340 - components: - - pos: -20.5,35.5 - parent: 1 - type: Transform - - uid: 8341 - components: - - pos: -31.5,33.5 - parent: 1 - type: Transform - - uid: 8342 - components: - - pos: -34.5,31.5 - parent: 1 - type: Transform - - uid: 8343 - components: - - pos: -51.5,24.5 - parent: 1 - type: Transform - - uid: 8344 - components: - - pos: -49.5,27.5 - parent: 1 - type: Transform - - uid: 8345 - components: - - pos: -53.5,28.5 - parent: 1 - type: Transform - - uid: 8346 - components: - - pos: -33.5,-3.5 - parent: 1 - type: Transform - - uid: 9000 - components: - - pos: -32.5,-6.5 - parent: 1 - type: Transform - - uid: 9105 - components: - - pos: -57.5,84.5 - parent: 1 - type: Transform - - uid: 9106 - components: - - pos: -60.5,84.5 - parent: 1 - type: Transform - - uid: 9107 - components: - - pos: -59.5,87.5 - parent: 1 - type: Transform - - uid: 9108 - components: - - pos: -57.5,88.5 - parent: 1 - type: Transform - - uid: 9109 - components: - - pos: -54.5,89.5 - parent: 1 - type: Transform - - uid: 9110 - components: - - pos: -55.5,82.5 - parent: 1 - type: Transform - - uid: 9111 - components: - - pos: -55.5,86.5 - parent: 1 - type: Transform - - uid: 9112 - components: - - pos: -51.5,89.5 - parent: 1 - type: Transform - - uid: 9113 - components: - - pos: -52.5,85.5 - parent: 1 - type: Transform - - uid: 9114 - components: - - pos: -50.5,82.5 - parent: 1 - type: Transform - - uid: 9115 - components: - - pos: -54.5,79.5 - parent: 1 - type: Transform - - uid: 9116 - components: - - pos: -50.5,80.5 - parent: 1 - type: Transform - - uid: 9117 - components: - - pos: -52.5,76.5 - parent: 1 - type: Transform - - uid: 9118 - components: - - pos: -50.5,73.5 - parent: 1 - type: Transform - - uid: 9119 - components: - - pos: -52.5,72.5 - parent: 1 - type: Transform - - uid: 9120 - components: - - pos: -51.5,68.5 - parent: 1 - type: Transform - - uid: 9121 - components: - - pos: -47.5,67.5 - parent: 1 - type: Transform - - uid: 9122 - components: - - pos: -52.5,64.5 - parent: 1 - type: Transform - - uid: 9123 - components: - - pos: -50.5,60.5 - parent: 1 - type: Transform - - uid: 9125 - components: - - pos: -59.5,61.5 - parent: 1 - type: Transform - - uid: 9126 - components: - - pos: -61.5,65.5 - parent: 1 - type: Transform - - uid: 9127 - components: - - pos: -55.5,65.5 - parent: 1 - type: Transform - - uid: 9128 - components: - - pos: -54.5,63.5 - parent: 1 - type: Transform - - uid: 9130 - components: - - pos: -43.5,62.5 - parent: 1 - type: Transform - - uid: 9131 - components: - - pos: -42.5,64.5 - parent: 1 - type: Transform - - uid: 9132 - components: - - pos: -46.5,58.5 - parent: 1 - type: Transform - - uid: 9133 - components: - - pos: -48.5,61.5 - parent: 1 - type: Transform - - uid: 9134 - components: - - pos: -50.5,58.5 - parent: 1 - type: Transform - - uid: 9135 - components: - - pos: -55.5,55.5 - parent: 1 - type: Transform - - uid: 9136 - components: - - pos: -51.5,54.5 - parent: 1 - type: Transform - - uid: 9137 - components: - - pos: -59.5,55.5 - parent: 1 - type: Transform - - uid: 9138 - components: - - pos: -62.5,53.5 - parent: 1 - type: Transform - - uid: 9139 - components: - - pos: -59.5,51.5 - parent: 1 - type: Transform - - uid: 9140 - components: - - pos: -65.5,54.5 - parent: 1 - type: Transform - - uid: 9141 - components: - - pos: -50.5,50.5 - parent: 1 - type: Transform - - uid: 9142 - components: - - pos: -54.5,52.5 - parent: 1 - type: Transform - - uid: 9143 - components: - - pos: -53.5,49.5 - parent: 1 - type: Transform - - uid: 9144 - components: - - pos: -56.5,50.5 - parent: 1 - type: Transform - - uid: 9145 - components: - - pos: -46.5,54.5 - parent: 1 - type: Transform - - uid: 9282 - components: - - pos: 20.5,30.5 - parent: 1 - type: Transform - - uid: 14370 - components: - - pos: -72.5,54.5 - parent: 1 - type: Transform - - uid: 14371 - components: - - pos: -69.5,55.5 - parent: 1 - type: Transform - - uid: 14372 - components: - - pos: -70.5,51.5 - parent: 1 - type: Transform - - uid: 14373 - components: - - pos: -75.5,52.5 - parent: 1 - type: Transform - - uid: 14374 - components: - - pos: -75.5,47.5 - parent: 1 - type: Transform - - uid: 14375 - components: - - pos: -74.5,44.5 - parent: 1 - type: Transform - - uid: 14376 - components: - - pos: -74.5,39.5 - parent: 1 - type: Transform - - uid: 14377 - components: - - pos: -75.5,38.5 - parent: 1 - type: Transform - - uid: 14378 - components: - - pos: -69.5,41.5 - parent: 1 - type: Transform - - uid: 14379 - components: - - pos: -71.5,40.5 - parent: 1 - type: Transform - - uid: 14380 - components: - - pos: -71.5,44.5 - parent: 1 - type: Transform - - uid: 14381 - components: - - pos: -66.5,46.5 - parent: 1 - type: Transform - - uid: 14382 - components: - - pos: -62.5,47.5 - parent: 1 - type: Transform - - uid: 14383 - components: - - pos: -67.5,50.5 - parent: 1 - type: Transform - - uid: 14384 - components: - - pos: -67.5,55.5 - parent: 1 - type: Transform - - uid: 14385 - components: - - pos: -67.5,41.5 - parent: 1 - type: Transform - - uid: 14386 - components: - - pos: -66.5,38.5 - parent: 1 - type: Transform - - uid: 14387 - components: - - pos: -68.5,37.5 - parent: 1 - type: Transform - - uid: 14388 - components: - - pos: -62.5,36.5 - parent: 1 - type: Transform - - uid: 14389 - components: - - pos: -60.5,38.5 - parent: 1 - type: Transform - - uid: 14390 - components: - - pos: -63.5,40.5 - parent: 1 - type: Transform - - uid: 14391 - components: - - pos: -61.5,44.5 - parent: 1 - type: Transform - - uid: 14392 - components: - - pos: -63.5,44.5 - parent: 1 - type: Transform - - uid: 14394 - components: - - pos: -80.5,30.5 - parent: 1 - type: Transform - - uid: 14395 - components: - - pos: -77.5,32.5 - parent: 1 - type: Transform - - uid: 14396 - components: - - pos: -80.5,33.5 - parent: 1 - type: Transform - - uid: 14403 - components: - - pos: -74.5,35.5 - parent: 1 - type: Transform - - uid: 14404 - components: - - pos: -71.5,34.5 - parent: 1 - type: Transform - - uid: 14405 - components: - - pos: -66.5,33.5 - parent: 1 - type: Transform - - uid: 14406 - components: - - pos: -64.5,34.5 - parent: 1 - type: Transform - - uid: 14407 - components: - - pos: -64.5,27.5 - parent: 1 - type: Transform - - uid: 14408 - components: - - pos: -66.5,29.5 - parent: 1 - type: Transform - - uid: 14410 - components: - - pos: -70.5,29.5 - parent: 1 - type: Transform - - uid: 14411 - components: - - pos: -73.5,31.5 - parent: 1 - type: Transform - - uid: 14412 - components: - - pos: -74.5,26.5 - parent: 1 - type: Transform - - uid: 14413 - components: - - pos: -73.5,22.5 - parent: 1 - type: Transform - - uid: 14414 - components: - - pos: -74.5,19.5 - parent: 1 - type: Transform - - uid: 14415 - components: - - pos: -70.5,19.5 - parent: 1 - type: Transform - - uid: 14416 - components: - - pos: -67.5,23.5 - parent: 1 - type: Transform - - uid: 14417 - components: - - pos: -67.5,20.5 - parent: 1 - type: Transform - - uid: 14418 - components: - - pos: -64.5,21.5 - parent: 1 - type: Transform - - uid: 14419 - components: - - pos: -79.5,22.5 - parent: 1 - type: Transform - - uid: 14423 - components: - - pos: -80.5,19.5 - parent: 1 - type: Transform - - uid: 14424 - components: - - pos: -77.5,20.5 - parent: 1 - type: Transform - - uid: 14950 - components: - - pos: -70.5,25.5 - parent: 1 - type: Transform - - uid: 14967 - components: - - pos: 15.5,26.5 - parent: 1 - type: Transform - - uid: 15021 - components: - - pos: 11.5,-5.5 - parent: 1 - type: Transform - - uid: 15067 - components: - - pos: -44.5,21.5 - parent: 1 - type: Transform - - uid: 15075 - components: - - pos: -16.5,8.5 - parent: 1 - type: Transform - - uid: 15782 - components: - - pos: -44.5,-10.5 - parent: 1 - type: Transform - - uid: 15791 - components: - - pos: -47.5,64.5 - parent: 1 - type: Transform - - uid: 15846 - components: - - pos: 21.5,41.5 - parent: 1 - type: Transform - - uid: 15912 - components: - - pos: 16.5,34.5 - parent: 1 - type: Transform - - uid: 15916 - components: - - pos: 14.5,38.5 - parent: 1 - type: Transform -- proto: RCD - entities: - - uid: 13615 - components: - - pos: -73.40199,15.605122 - parent: 1 - type: Transform -- proto: RCDAmmo - entities: - - uid: 13616 - components: - - pos: -73.65199,15.448872 - parent: 1 - type: Transform - - uid: 13617 - components: - - pos: -73.54262,15.464497 - parent: 1 - type: Transform - - uid: 13618 - components: - - pos: -73.37074,15.464497 - parent: 1 - type: Transform -- proto: ReagentContainerFlour - entities: - - uid: 6954 - components: - - pos: -36.304527,44.574997 - parent: 1 - type: Transform - - uid: 6955 - components: - - pos: -33.757652,44.762497 - parent: 1 - type: Transform -- proto: ReagentContainerMilk - entities: - - uid: 5276 - components: - - pos: -52.395008,21.71115 - parent: 1 - type: Transform -- proto: ReagentContainerSugar - entities: - - uid: 6956 - components: - - pos: -35.288902,45.293747 - parent: 1 - type: Transform -- proto: Recycler - entities: - - uid: 14224 - components: - - rot: 3.141592653589793 rad - pos: -73.5,55.5 - parent: 1 - type: Transform - - links: - - 14233 - type: DeviceLinkSink -- proto: ReinforcedGirder - entities: - - uid: 128 - components: - - pos: -10.5,-13.5 - parent: 1 - type: Transform - - uid: 199 - components: - - pos: 2.5,-16.5 - parent: 1 - type: Transform - - uid: 208 - components: - - pos: 6.5,-7.5 - parent: 1 - type: Transform - - uid: 413 - components: - - pos: -10.5,-8.5 - parent: 1 - type: Transform - - uid: 3493 - components: - - pos: -30.5,51.5 - parent: 1 - type: Transform - - uid: 5533 - components: - - pos: -45.5,60.5 - parent: 1 - type: Transform -- proto: ReinforcedPlasmaWindow - entities: - - uid: 10827 - components: - - rot: -1.5707963267948966 rad - pos: -87.5,35.5 - parent: 1 - type: Transform - - uid: 10828 - components: - - rot: -1.5707963267948966 rad - pos: -87.5,37.5 - parent: 1 - type: Transform - - uid: 10829 - components: - - rot: -1.5707963267948966 rad - pos: -87.5,39.5 - parent: 1 - type: Transform - - uid: 10830 - components: - - rot: -1.5707963267948966 rad - pos: -87.5,41.5 - parent: 1 - type: Transform - - uid: 10831 - components: - - rot: -1.5707963267948966 rad - pos: -87.5,43.5 - parent: 1 - type: Transform - - uid: 10832 - components: - - rot: -1.5707963267948966 rad - pos: -87.5,45.5 - parent: 1 - type: Transform - - uid: 14832 - components: - - pos: 9.5,-15.5 - parent: 1 - type: Transform - - uid: 14834 - components: - - pos: 10.5,-15.5 - parent: 1 - type: Transform - - uid: 15009 - components: - - pos: 12.5,-13.5 - parent: 1 - type: Transform -- proto: ReinforcedWindow - entities: - - uid: 16 - components: - - pos: -3.5,-0.5 - parent: 1 - type: Transform - - uid: 119 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-15.5 - parent: 1 - type: Transform - - uid: 121 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-15.5 - parent: 1 - type: Transform - - uid: 122 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-15.5 - parent: 1 - type: Transform - - uid: 194 - components: - - pos: 2.5,-12.5 - parent: 1 - type: Transform - - uid: 195 - components: - - pos: 0.5,-12.5 - parent: 1 - type: Transform - - uid: 708 - components: - - pos: 30.5,3.5 - parent: 1 - type: Transform - - uid: 709 - components: - - pos: 30.5,2.5 - parent: 1 - type: Transform - - uid: 710 - components: - - pos: 30.5,1.5 - parent: 1 - type: Transform - - uid: 944 - components: - - rot: 3.141592653589793 rad - pos: 29.5,5.5 - parent: 1 - type: Transform - - uid: 945 - components: - - rot: 3.141592653589793 rad - pos: 29.5,6.5 - parent: 1 - type: Transform - - uid: 965 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,17.5 - parent: 1 - type: Transform - - uid: 966 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,17.5 - parent: 1 - type: Transform - - uid: 972 - components: - - rot: 3.141592653589793 rad - pos: 29.5,12.5 - parent: 1 - type: Transform - - uid: 973 - components: - - rot: 3.141592653589793 rad - pos: 29.5,13.5 - parent: 1 - type: Transform - - uid: 974 - components: - - rot: 3.141592653589793 rad - pos: 29.5,14.5 - parent: 1 - type: Transform - - uid: 980 - components: - - rot: 3.141592653589793 rad - pos: 29.5,21.5 - parent: 1 - type: Transform - - uid: 981 - components: - - rot: 3.141592653589793 rad - pos: 29.5,20.5 - parent: 1 - type: Transform - - uid: 1263 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,24.5 - parent: 1 - type: Transform - - uid: 1270 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,28.5 - parent: 1 - type: Transform - - uid: 1271 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,28.5 - parent: 1 - type: Transform - - uid: 1272 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,28.5 - parent: 1 - type: Transform - - uid: 1886 - components: - - pos: 13.5,29.5 - parent: 1 - type: Transform - - uid: 2665 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-14.5 - parent: 1 - type: Transform - - uid: 2819 - components: - - pos: -14.5,23.5 - parent: 1 - type: Transform - - uid: 2821 - components: - - pos: -14.5,24.5 - parent: 1 - type: Transform - - uid: 2824 - components: - - pos: -14.5,28.5 - parent: 1 - type: Transform - - uid: 2825 - components: - - pos: -17.5,30.5 - parent: 1 - type: Transform - - uid: 2826 - components: - - pos: -14.5,29.5 - parent: 1 - type: Transform - - uid: 2830 - components: - - pos: -16.5,30.5 - parent: 1 - type: Transform - - uid: 2989 - components: - - pos: -44.5,65.5 - parent: 1 - type: Transform - - uid: 3358 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-12.5 - parent: 1 - type: Transform - - uid: 3455 - components: - - pos: -20.5,36.5 - parent: 1 - type: Transform - - uid: 3524 - components: - - pos: -49.5,-14.5 - parent: 1 - type: Transform - - uid: 3564 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-14.5 - parent: 1 - type: Transform - - uid: 3567 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-14.5 - parent: 1 - type: Transform - - uid: 3634 - components: - - pos: -47.5,-11.5 - parent: 1 - type: Transform - - uid: 3675 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-13.5 - parent: 1 - type: Transform - - uid: 3697 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-14.5 - parent: 1 - type: Transform - - uid: 3714 - components: - - pos: -42.5,-14.5 - parent: 1 - type: Transform - - uid: 4308 - components: - - pos: -48.5,23.5 - parent: 1 - type: Transform - - uid: 4309 - components: - - pos: -46.5,23.5 - parent: 1 - type: Transform - - uid: 4310 - components: - - pos: -46.5,24.5 - parent: 1 - type: Transform - - uid: 4311 - components: - - pos: -46.5,25.5 - parent: 1 - type: Transform - - uid: 4326 - components: - - pos: -48.5,25.5 - parent: 1 - type: Transform - - uid: 4532 - components: - - pos: -49.5,-11.5 - parent: 1 - type: Transform - - uid: 4540 - components: - - pos: -61.5,-8.5 - parent: 1 - type: Transform - - uid: 4541 - components: - - pos: -60.5,-8.5 - parent: 1 - type: Transform - - uid: 4576 - components: - - pos: -48.5,24.5 - parent: 1 - type: Transform - - uid: 4578 - components: - - pos: 22.5,36.5 - parent: 1 - type: Transform - - uid: 4592 - components: - - pos: 16.5,42.5 - parent: 1 - type: Transform - - uid: 4597 - components: - - pos: 23.5,36.5 - parent: 1 - type: Transform - - uid: 4598 - components: - - pos: 16.5,43.5 - parent: 1 - type: Transform - - uid: 4817 - components: - - pos: -59.5,-6.5 - parent: 1 - type: Transform - - uid: 4818 - components: - - pos: -59.5,-5.5 - parent: 1 - type: Transform - - uid: 4819 - components: - - pos: -59.5,-4.5 - parent: 1 - type: Transform - - uid: 4820 - components: - - pos: -59.5,-3.5 - parent: 1 - type: Transform - - uid: 4821 - components: - - pos: -59.5,-2.5 - parent: 1 - type: Transform - - uid: 4822 - components: - - pos: -59.5,-1.5 - parent: 1 - type: Transform - - uid: 4823 - components: - - pos: -59.5,-0.5 - parent: 1 - type: Transform - - uid: 4824 - components: - - pos: -59.5,0.5 - parent: 1 - type: Transform - - uid: 4825 - components: - - pos: -59.5,1.5 - parent: 1 - type: Transform - - uid: 4826 - components: - - pos: -59.5,2.5 - parent: 1 - type: Transform - - uid: 4837 - components: - - pos: -60.5,3.5 - parent: 1 - type: Transform - - uid: 4838 - components: - - pos: -61.5,3.5 - parent: 1 - type: Transform - - uid: 4839 - components: - - pos: -62.5,3.5 - parent: 1 - type: Transform - - uid: 4840 - components: - - pos: -63.5,3.5 - parent: 1 - type: Transform - - uid: 4841 - components: - - pos: -64.5,3.5 - parent: 1 - type: Transform - - uid: 4845 - components: - - pos: -68.5,3.5 - parent: 1 - type: Transform - - uid: 4846 - components: - - pos: -69.5,3.5 - parent: 1 - type: Transform - - uid: 4847 - components: - - pos: -70.5,3.5 - parent: 1 - type: Transform - - uid: 4848 - components: - - pos: -71.5,3.5 - parent: 1 - type: Transform - - uid: 4852 - components: - - pos: -75.5,3.5 - parent: 1 - type: Transform - - uid: 4863 - components: - - pos: -59.5,-7.5 - parent: 1 - type: Transform - - uid: 4882 - components: - - pos: -65.5,-13.5 - parent: 1 - type: Transform - - uid: 4891 - components: - - pos: -68.5,-8.5 - parent: 1 - type: Transform - - uid: 4892 - components: - - pos: -69.5,-8.5 - parent: 1 - type: Transform - - uid: 4893 - components: - - pos: -71.5,-8.5 - parent: 1 - type: Transform - - uid: 4903 - components: - - pos: -62.5,-8.5 - parent: 1 - type: Transform - - uid: 4911 - components: - - pos: -70.5,-8.5 - parent: 1 - type: Transform - - uid: 4922 - components: - - rot: 3.141592653589793 rad - pos: -70.5,-12.5 - parent: 1 - type: Transform - - uid: 4923 - components: - - rot: 3.141592653589793 rad - pos: -69.5,-12.5 - parent: 1 - type: Transform - - uid: 4930 - components: - - rot: 3.141592653589793 rad - pos: -60.5,-12.5 - parent: 1 - type: Transform - - uid: 4935 - components: - - rot: 3.141592653589793 rad - pos: -61.5,-12.5 - parent: 1 - type: Transform - - uid: 4937 - components: - - rot: 3.141592653589793 rad - pos: -58.5,-12.5 - parent: 1 - type: Transform - - uid: 4938 - components: - - pos: -65.5,-14.5 - parent: 1 - type: Transform - - uid: 4943 - components: - - rot: 3.141592653589793 rad - pos: -57.5,-12.5 - parent: 1 - type: Transform - - uid: 4946 - components: - - rot: 3.141592653589793 rad - pos: -62.5,-12.5 - parent: 1 - type: Transform - - uid: 4947 - components: - - pos: -75.5,-8.5 - parent: 1 - type: Transform - - uid: 4961 - components: - - pos: -63.5,-8.5 - parent: 1 - type: Transform - - uid: 4966 - components: - - pos: -64.5,-8.5 - parent: 1 - type: Transform - - uid: 4968 - components: - - rot: 3.141592653589793 rad - pos: -68.5,-12.5 - parent: 1 - type: Transform - - uid: 4978 - components: - - pos: -73.5,-14.5 - parent: 1 - type: Transform - - uid: 4982 - components: - - pos: -73.5,-13.5 - parent: 1 - type: Transform - - uid: 5069 - components: - - pos: -76.5,4.5 - parent: 1 - type: Transform - - uid: 5070 - components: - - pos: -76.5,5.5 - parent: 1 - type: Transform - - uid: 5071 - components: - - pos: -76.5,6.5 - parent: 1 - type: Transform - - uid: 5172 - components: - - pos: -75.5,7.5 - parent: 1 - type: Transform - - uid: 5174 - components: - - pos: -74.5,7.5 - parent: 1 - type: Transform - - uid: 5760 - components: - - pos: -50.5,48.5 - parent: 1 - type: Transform - - uid: 5763 - components: - - pos: -51.5,48.5 - parent: 1 - type: Transform - - uid: 5766 - components: - - pos: -53.5,48.5 - parent: 1 - type: Transform - - uid: 5768 - components: - - pos: -54.5,48.5 - parent: 1 - type: Transform - - uid: 5770 - components: - - pos: -56.5,48.5 - parent: 1 - type: Transform - - uid: 5820 - components: - - pos: -14.5,46.5 - parent: 1 - type: Transform - - uid: 5822 - components: - - pos: -18.5,46.5 - parent: 1 - type: Transform - - uid: 5827 - components: - - pos: -21.5,36.5 - parent: 1 - type: Transform - - uid: 5831 - components: - - pos: -18.5,47.5 - parent: 1 - type: Transform - - uid: 5832 - components: - - pos: -18.5,48.5 - parent: 1 - type: Transform - - uid: 5833 - components: - - pos: -22.5,36.5 - parent: 1 - type: Transform - - uid: 5900 - components: - - pos: -14.5,49.5 - parent: 1 - type: Transform - - uid: 5939 - components: - - pos: -2.5,49.5 - parent: 1 - type: Transform - - uid: 5949 - components: - - pos: -2.5,50.5 - parent: 1 - type: Transform - - uid: 5950 - components: - - pos: -2.5,51.5 - parent: 1 - type: Transform - - uid: 5951 - components: - - pos: -2.5,52.5 - parent: 1 - type: Transform - - uid: 5952 - components: - - pos: -2.5,53.5 - parent: 1 - type: Transform - - uid: 5960 - components: - - pos: -1.5,54.5 - parent: 1 - type: Transform - - uid: 5961 - components: - - pos: -0.5,54.5 - parent: 1 - type: Transform - - uid: 5962 - components: - - pos: 0.5,54.5 - parent: 1 - type: Transform - - uid: 6016 - components: - - pos: 16.5,53.5 - parent: 1 - type: Transform - - uid: 6017 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,51.5 - parent: 1 - type: Transform - - uid: 6018 - components: - - pos: 13.5,53.5 - parent: 1 - type: Transform - - uid: 6019 - components: - - pos: 14.5,53.5 - parent: 1 - type: Transform - - uid: 6020 - components: - - pos: 15.5,53.5 - parent: 1 - type: Transform - - uid: 6023 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,53.5 - parent: 1 - type: Transform - - uid: 6024 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,50.5 - parent: 1 - type: Transform - - uid: 6040 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,53.5 - parent: 1 - type: Transform - - uid: 6041 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,53.5 - parent: 1 - type: Transform - - uid: 6042 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,52.5 - parent: 1 - type: Transform - - uid: 6351 - components: - - rot: 3.141592653589793 rad - pos: -13.5,53.5 - parent: 1 - type: Transform - - uid: 6353 - components: - - rot: 3.141592653589793 rad - pos: -13.5,56.5 - parent: 1 - type: Transform - - uid: 6354 - components: - - rot: 3.141592653589793 rad - pos: -13.5,54.5 - parent: 1 - type: Transform - - uid: 6357 - components: - - rot: 3.141592653589793 rad - pos: -13.5,57.5 - parent: 1 - type: Transform - - uid: 6388 - components: - - rot: 3.141592653589793 rad - pos: -16.5,58.5 - parent: 1 - type: Transform - - uid: 6400 - components: - - pos: -4.5,60.5 - parent: 1 - type: Transform - - uid: 6401 - components: - - pos: -4.5,61.5 - parent: 1 - type: Transform - - uid: 6403 - components: - - pos: -5.5,62.5 - parent: 1 - type: Transform - - uid: 6404 - components: - - pos: -6.5,62.5 - parent: 1 - type: Transform - - uid: 6405 - components: - - pos: -7.5,62.5 - parent: 1 - type: Transform - - uid: 6406 - components: - - pos: -8.5,62.5 - parent: 1 - type: Transform - - uid: 6407 - components: - - pos: -9.5,62.5 - parent: 1 - type: Transform - - uid: 6435 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,64.5 - parent: 1 - type: Transform - - uid: 6436 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,65.5 - parent: 1 - type: Transform - - uid: 6437 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,65.5 - parent: 1 - type: Transform - - uid: 6438 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,66.5 - parent: 1 - type: Transform - - uid: 6439 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,66.5 - parent: 1 - type: Transform - - uid: 6440 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,67.5 - parent: 1 - type: Transform - - uid: 6441 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,67.5 - parent: 1 - type: Transform - - uid: 6442 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,67.5 - parent: 1 - type: Transform - - uid: 6443 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,67.5 - parent: 1 - type: Transform - - uid: 6444 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,67.5 - parent: 1 - type: Transform - - uid: 6445 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,67.5 - parent: 1 - type: Transform - - uid: 6446 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,67.5 - parent: 1 - type: Transform - - uid: 6447 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,66.5 - parent: 1 - type: Transform - - uid: 6448 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,66.5 - parent: 1 - type: Transform - - uid: 6449 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,65.5 - parent: 1 - type: Transform - - uid: 6450 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,65.5 - parent: 1 - type: Transform - - uid: 6451 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,64.5 - parent: 1 - type: Transform - - uid: 6454 - components: - - pos: -22.5,62.5 - parent: 1 - type: Transform - - uid: 6455 - components: - - pos: -22.5,61.5 - parent: 1 - type: Transform - - uid: 6456 - components: - - pos: -22.5,60.5 - parent: 1 - type: Transform - - uid: 6970 - components: - - pos: -56.5,59.5 - parent: 1 - type: Transform - - uid: 6971 - components: - - pos: -55.5,59.5 - parent: 1 - type: Transform - - uid: 6972 - components: - - pos: -54.5,59.5 - parent: 1 - type: Transform - - uid: 6982 - components: - - pos: -48.5,56.5 - parent: 1 - type: Transform - - uid: 6983 - components: - - pos: -46.5,56.5 - parent: 1 - type: Transform - - uid: 6986 - components: - - pos: -50.5,52.5 - parent: 1 - type: Transform - - uid: 6987 - components: - - pos: -53.5,52.5 - parent: 1 - type: Transform - - uid: 6988 - components: - - pos: -56.5,52.5 - parent: 1 - type: Transform - - uid: 7012 - components: - - pos: -46.5,63.5 - parent: 1 - type: Transform - - uid: 7013 - components: - - pos: -48.5,63.5 - parent: 1 - type: Transform - - uid: 7148 - components: - - pos: -53.5,63.5 - parent: 1 - type: Transform - - uid: 7149 - components: - - pos: -53.5,64.5 - parent: 1 - type: Transform - - uid: 7150 - components: - - pos: -53.5,65.5 - parent: 1 - type: Transform - - uid: 7154 - components: - - pos: -61.5,66.5 - parent: 1 - type: Transform - - uid: 7155 - components: - - pos: -60.5,66.5 - parent: 1 - type: Transform - - uid: 7156 - components: - - pos: -59.5,66.5 - parent: 1 - type: Transform - - uid: 7163 - components: - - pos: -58.5,62.5 - parent: 1 - type: Transform - - uid: 7164 - components: - - pos: -58.5,66.5 - parent: 1 - type: Transform - - uid: 7170 - components: - - pos: -56.5,66.5 - parent: 1 - type: Transform - - uid: 7171 - components: - - pos: -55.5,66.5 - parent: 1 - type: Transform - - uid: 7172 - components: - - pos: -54.5,66.5 - parent: 1 - type: Transform - - uid: 7177 - components: - - pos: -56.5,62.5 - parent: 1 - type: Transform - - uid: 7178 - components: - - pos: -54.5,62.5 - parent: 1 - type: Transform - - uid: 7237 - components: - - pos: -58.5,54.5 - parent: 1 - type: Transform - - uid: 7239 - components: - - pos: -49.5,54.5 - parent: 1 - type: Transform - - uid: 7249 - components: - - pos: -49.5,88.5 - parent: 1 - type: Transform - - uid: 7250 - components: - - pos: -49.5,87.5 - parent: 1 - type: Transform - - uid: 7251 - components: - - pos: -49.5,86.5 - parent: 1 - type: Transform - - uid: 7252 - components: - - pos: -49.5,85.5 - parent: 1 - type: Transform - - uid: 7253 - components: - - pos: -49.5,84.5 - parent: 1 - type: Transform - - uid: 7254 - components: - - pos: -49.5,83.5 - parent: 1 - type: Transform - - uid: 7262 - components: - - pos: -51.5,91.5 - parent: 1 - type: Transform - - uid: 7295 - components: - - pos: -62.5,88.5 - parent: 1 - type: Transform - - uid: 7305 - components: - - pos: -60.5,90.5 - parent: 1 - type: Transform - - uid: 7310 - components: - - pos: -58.5,90.5 - parent: 1 - type: Transform - - uid: 7315 - components: - - pos: -60.5,82.5 - parent: 1 - type: Transform - - uid: 7316 - components: - - pos: -63.5,85.5 - parent: 1 - type: Transform - - uid: 7321 - components: - - pos: -59.5,90.5 - parent: 1 - type: Transform - - uid: 7727 - components: - - pos: -58.5,82.5 - parent: 1 - type: Transform - - uid: 7734 - components: - - pos: -63.5,84.5 - parent: 1 - type: Transform - - uid: 7735 - components: - - pos: -63.5,83.5 - parent: 1 - type: Transform - - uid: 7736 - components: - - pos: -61.5,82.5 - parent: 1 - type: Transform - - uid: 7737 - components: - - pos: -59.5,82.5 - parent: 1 - type: Transform - - uid: 7861 - components: - - pos: -47.5,52.5 - parent: 1 - type: Transform - - uid: 8423 - components: - - pos: -57.5,48.5 - parent: 1 - type: Transform - - uid: 9033 - components: - - pos: -36.5,63.5 - parent: 1 - type: Transform - - uid: 9034 - components: - - pos: -36.5,66.5 - parent: 1 - type: Transform - - uid: 9035 - components: - - pos: -36.5,64.5 - parent: 1 - type: Transform - - uid: 9036 - components: - - pos: -36.5,65.5 - parent: 1 - type: Transform - - uid: 9037 - components: - - pos: -36.5,62.5 - parent: 1 - type: Transform - - uid: 9039 - components: - - pos: -36.5,68.5 - parent: 1 - type: Transform - - uid: 9040 - components: - - pos: -36.5,69.5 - parent: 1 - type: Transform - - uid: 9041 - components: - - pos: -37.5,69.5 - parent: 1 - type: Transform - - uid: 9042 - components: - - pos: -36.5,61.5 - parent: 1 - type: Transform - - uid: 9043 - components: - - pos: -38.5,69.5 - parent: 1 - type: Transform - - uid: 9044 - components: - - pos: -39.5,69.5 - parent: 1 - type: Transform - - uid: 9045 - components: - - pos: -36.5,67.5 - parent: 1 - type: Transform - - uid: 9046 - components: - - pos: -36.5,60.5 - parent: 1 - type: Transform - - uid: 9047 - components: - - pos: -36.5,59.5 - parent: 1 - type: Transform - - uid: 9190 - components: - - rot: 1.5707963267948966 rad - pos: -70.5,57.5 - parent: 1 - type: Transform - - uid: 9281 - components: - - rot: 1.5707963267948966 rad - pos: -67.5,32.5 - parent: 1 - type: Transform - - uid: 9302 - components: - - pos: -65.5,24.5 - parent: 1 - type: Transform - - uid: 9303 - components: - - pos: -64.5,24.5 - parent: 1 - type: Transform - - uid: 9306 - components: - - pos: -66.5,24.5 - parent: 1 - type: Transform - - uid: 9315 - components: - - rot: 1.5707963267948966 rad - pos: -63.5,29.5 - parent: 1 - type: Transform - - uid: 9342 - components: - - pos: -73.5,18.5 - parent: 1 - type: Transform - - uid: 9466 - components: - - pos: -72.5,22.5 - parent: 1 - type: Transform - - uid: 9619 - components: - - pos: -77.5,26.5 - parent: 1 - type: Transform - - uid: 9632 - components: - - pos: -71.5,32.5 - parent: 1 - type: Transform - - uid: 9661 - components: - - pos: -68.5,18.5 - parent: 1 - type: Transform - - uid: 9664 - components: - - pos: -69.5,18.5 - parent: 1 - type: Transform - - uid: 9665 - components: - - pos: -72.5,20.5 - parent: 1 - type: Transform - - uid: 9682 - components: - - pos: -77.5,24.5 - parent: 1 - type: Transform - - uid: 9696 - components: - - pos: -86.5,23.5 - parent: 1 - type: Transform - - uid: 9697 - components: - - pos: -86.5,24.5 - parent: 1 - type: Transform - - uid: 9698 - components: - - pos: -86.5,25.5 - parent: 1 - type: Transform - - uid: 9699 - components: - - pos: -86.5,26.5 - parent: 1 - type: Transform - - uid: 9700 - components: - - pos: -86.5,27.5 - parent: 1 - type: Transform - - uid: 9799 - components: - - pos: -82.5,47.5 - parent: 1 - type: Transform - - uid: 9824 - components: - - pos: -79.5,47.5 - parent: 1 - type: Transform - - uid: 9830 - components: - - pos: -84.5,47.5 - parent: 1 - type: Transform - - uid: 9831 - components: - - pos: -83.5,47.5 - parent: 1 - type: Transform - - uid: 9832 - components: - - pos: -81.5,47.5 - parent: 1 - type: Transform - - uid: 9833 - components: - - pos: -80.5,47.5 - parent: 1 - type: Transform - - uid: 9834 - components: - - pos: -85.5,47.5 - parent: 1 - type: Transform - - uid: 9835 - components: - - pos: -85.5,46.5 - parent: 1 - type: Transform - - uid: 9836 - components: - - pos: -85.5,45.5 - parent: 1 - type: Transform - - uid: 9837 - components: - - pos: -85.5,44.5 - parent: 1 - type: Transform - - uid: 9838 - components: - - pos: -85.5,43.5 - parent: 1 - type: Transform - - uid: 9839 - components: - - pos: -85.5,42.5 - parent: 1 - type: Transform - - uid: 9840 - components: - - pos: -85.5,41.5 - parent: 1 - type: Transform - - uid: 9841 - components: - - pos: -85.5,40.5 - parent: 1 - type: Transform - - uid: 9842 - components: - - pos: -85.5,39.5 - parent: 1 - type: Transform - - uid: 9843 - components: - - pos: -85.5,38.5 - parent: 1 - type: Transform - - uid: 9844 - components: - - pos: -85.5,37.5 - parent: 1 - type: Transform - - uid: 9845 - components: - - pos: -85.5,36.5 - parent: 1 - type: Transform - - uid: 9846 - components: - - pos: -85.5,35.5 - parent: 1 - type: Transform - - uid: 9847 - components: - - pos: -85.5,34.5 - parent: 1 - type: Transform - - uid: 9893 - components: - - pos: -85.5,33.5 - parent: 1 - type: Transform - - uid: 10159 - components: - - pos: -70.5,18.5 - parent: 1 - type: Transform - - uid: 10172 - components: - - pos: -69.5,24.5 - parent: 1 - type: Transform - - uid: 10242 - components: - - pos: -69.5,27.5 - parent: 1 - type: Transform - - uid: 10344 - components: - - pos: -43.5,-14.5 - parent: 1 - type: Transform - - uid: 10753 - components: - - rot: -1.5707963267948966 rad - pos: -83.5,49.5 - parent: 1 - type: Transform - - uid: 10756 - components: - - rot: -1.5707963267948966 rad - pos: -81.5,49.5 - parent: 1 - type: Transform - - uid: 10757 - components: - - rot: -1.5707963267948966 rad - pos: -80.5,50.5 - parent: 1 - type: Transform - - uid: 10760 - components: - - rot: -1.5707963267948966 rad - pos: -82.5,49.5 - parent: 1 - type: Transform - - uid: 11508 - components: - - rot: 1.5707963267948966 rad - pos: -84.5,50.5 - parent: 1 - type: Transform - - uid: 13846 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,9.5 - parent: 1 - type: Transform - - uid: 13847 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,9.5 - parent: 1 - type: Transform - - uid: 14528 - components: - - pos: -15.5,30.5 - parent: 1 - type: Transform - - uid: 14779 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,48.5 - parent: 1 - type: Transform - - uid: 14793 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,49.5 - parent: 1 - type: Transform - - uid: 14934 - components: - - pos: -40.5,69.5 - parent: 1 - type: Transform - - uid: 15036 - components: - - pos: -51.5,30.5 - parent: 1 - type: Transform - - uid: 15119 - components: - - pos: -53.5,30.5 - parent: 1 - type: Transform - - uid: 15382 - components: - - pos: -41.5,69.5 - parent: 1 - type: Transform - - uid: 15383 - components: - - pos: -42.5,69.5 - parent: 1 - type: Transform - - uid: 15384 - components: - - pos: -43.5,69.5 - parent: 1 - type: Transform - - uid: 15385 - components: - - pos: -44.5,69.5 - parent: 1 - type: Transform - - uid: 15836 - components: - - pos: -52.5,30.5 - parent: 1 - type: Transform -- proto: ResearchAndDevelopmentServer - entities: - - uid: 6943 - components: - - pos: -13.5,-8.5 - parent: 1 - type: Transform -- proto: RevolverCapGun - entities: - - uid: 2251 - components: - - rot: 1.5707963267948966 rad - pos: 0.88706434,42.793312 - parent: 1 - type: Transform -- proto: RubberStampApproved - entities: - - uid: 7583 - components: - - pos: -19.639711,39.734726 - parent: 1 - type: Transform -- proto: RubberStampClown - entities: - - uid: 4233 - components: - - pos: -41.031456,28.5956 - parent: 1 - type: Transform -- proto: RubberStampDenied - entities: - - uid: 7584 - components: - - pos: -19.389711,39.609726 - parent: 1 - type: Transform -- proto: RubberStampMime - entities: - - uid: 4218 - components: - - pos: -42.570244,23.611063 - parent: 1 - type: Transform -- proto: SalvageMagnet - entities: - - uid: 14223 - components: - - pos: -49.5,-15.5 - parent: 1 - type: Transform -- proto: Saw - entities: - - uid: 12803 - components: - - pos: 19.561224,28.58777 - parent: 1 - type: Transform -- proto: SaxophoneInstrument - entities: - - uid: 9326 - components: - - pos: -71.56229,45.50187 - parent: 1 - type: Transform -- proto: SecurityTechFab - entities: - - uid: 7917 - components: - - pos: -41.5,65.5 - parent: 1 - type: Transform -- proto: SeedExtractor - entities: - - uid: 6942 - components: - - pos: -41.5,49.5 - parent: 1 - type: Transform - - uid: 7723 - components: - - pos: -58.5,83.5 - parent: 1 - type: Transform -- proto: ShardGlass - entities: - - uid: 8324 - components: - - pos: 11.47951,24.442 - parent: 1 - type: Transform -- proto: SheetGlass - entities: - - uid: 262 - components: - - pos: -12.723352,-1.4051902 - parent: 1 - type: Transform - - uid: 263 - components: - - pos: -12.582727,-1.3895652 - parent: 1 - type: Transform - - uid: 326 - components: - - pos: -14.514996,-14.43877 - parent: 1 - type: Transform - - uid: 13605 - components: - - pos: -65.92235,25.549358 - parent: 1 - type: Transform - - uid: 13606 - components: - - pos: -65.92235,25.549358 - parent: 1 - type: Transform -- proto: SheetPlasma - entities: - - uid: 320 - components: - - pos: -17.481846,-13.543035 - parent: 1 - type: Transform - - uid: 10876 - components: - - pos: -22.475372,57.582253 - parent: 1 - type: Transform -- proto: SheetPlasteel - entities: - - uid: 13603 - components: - - pos: -66.25047,25.549358 - parent: 1 - type: Transform - - uid: 13604 - components: - - pos: -66.25047,25.549358 - parent: 1 - type: Transform -- proto: SheetPlastic - entities: - - uid: 264 - components: - - pos: -12.32629,-1.4051902 - parent: 1 - type: Transform - - uid: 265 - components: - - pos: -12.23254,-1.4051902 - parent: 1 - type: Transform -- proto: SheetSteel - entities: - - uid: 266 - components: - - pos: -11.498165,-5.4051905 - parent: 1 - type: Transform - - uid: 267 - components: - - pos: -11.016892,-5.4477215 - parent: 1 - type: Transform - - uid: 13600 - components: - - pos: -66.496956,25.561287 - parent: 1 - type: Transform - - uid: 13601 - components: - - pos: -66.496956,25.561287 - parent: 1 - type: Transform - - uid: 13610 - components: - - pos: -82.49008,29.604647 - parent: 1 - type: Transform - - uid: 13611 - components: - - pos: -82.49008,29.604647 - parent: 1 - type: Transform -- proto: SheetSteel1 - entities: - - uid: 268 - components: - - pos: 2.5175354,-1.5196886 - parent: 1 - type: Transform - - count: 10 - type: Stack -- proto: SheetUranium1 - entities: - - uid: 10865 - components: - - pos: -21.490997,57.551003 - parent: 1 - type: Transform - - uid: 10866 - components: - - pos: -21.490997,57.551003 - parent: 1 - type: Transform - - uid: 10867 - components: - - pos: -21.490997,57.551003 - parent: 1 - type: Transform - - uid: 10868 - components: - - pos: -21.490997,57.551003 - parent: 1 - type: Transform - - uid: 10869 - components: - - pos: -21.490997,57.551003 - parent: 1 - type: Transform -- proto: ShuttersNormal - entities: - - uid: 105 - components: - - pos: 0.5,3.5 - parent: 1 - type: Transform - - links: - - 523 - type: DeviceLinkSink - - uid: 215 - components: - - pos: 2.5,3.5 - parent: 1 - type: Transform - - links: - - 523 - type: DeviceLinkSink - - uid: 216 - components: - - pos: 1.5,3.5 - parent: 1 - type: Transform - - links: - - 523 - type: DeviceLinkSink - - uid: 1446 - components: - - pos: -10.5,11.5 - parent: 1 - type: Transform - - uid: 1487 - components: - - pos: -10.5,12.5 - parent: 1 - type: Transform - - uid: 4494 - components: - - pos: -48.5,20.5 - parent: 1 - type: Transform - - uid: 4495 - components: - - pos: -47.5,20.5 - parent: 1 - type: Transform - - uid: 4496 - components: - - pos: -45.5,19.5 - parent: 1 - type: Transform - - uid: 4497 - components: - - pos: -44.5,19.5 - parent: 1 - type: Transform - - uid: 4499 - components: - - pos: -41.5,19.5 - parent: 1 - type: Transform - - uid: 7075 - components: - - pos: -51.5,34.5 - parent: 1 - type: Transform - - links: - - 7077 - type: DeviceLinkSink - - uid: 7076 - components: - - pos: -50.5,34.5 - parent: 1 - type: Transform - - links: - - 7077 - type: DeviceLinkSink - - uid: 7468 - components: - - pos: -53.5,80.5 - parent: 1 - type: Transform - - uid: 7476 - components: - - pos: -53.5,79.5 - parent: 1 - type: Transform - - uid: 7719 - components: - - pos: -49.5,68.5 - parent: 1 - type: Transform - - uid: 7860 - components: - - pos: -49.5,67.5 - parent: 1 - type: Transform - - uid: 9955 - components: - - pos: -79.5,21.5 - parent: 1 - type: Transform -- proto: ShuttersNormalOpen - entities: - - uid: 4498 - components: - - pos: -42.5,19.5 - parent: 1 - type: Transform - - uid: 10698 - components: - - pos: -70.5,18.5 - parent: 1 - type: Transform - - links: - - 10701 - type: DeviceLinkSink - - uid: 10699 - components: - - pos: -69.5,18.5 - parent: 1 - type: Transform - - links: - - 10701 - type: DeviceLinkSink - - uid: 10700 - components: - - pos: -68.5,18.5 - parent: 1 - type: Transform - - links: - - 10701 - type: DeviceLinkSink -- proto: ShuttleConsoleCircuitboard - entities: - - uid: 15896 - components: - - pos: 11.536212,-16.49545 - parent: 1 - type: Transform -- proto: SignalButton - entities: - - uid: 351 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-12.5 - parent: 1 - type: Transform - - linkedPorts: - 42: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 615 - components: - - pos: 17.5,-7.5 - parent: 1 - type: Transform - - linkedPorts: - 590: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 7077 - components: - - rot: 3.141592653589793 rad - pos: -52.5,34.5 - parent: 1 - type: Transform - - linkedPorts: - 7075: - - Pressed: Toggle - 7076: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 7192 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,79.5 - parent: 1 - type: Transform - - linkedPorts: - 7211: - - Pressed: Toggle - 7210: - - Pressed: Toggle - 7209: - - Pressed: Toggle - 7208: - - Pressed: Toggle - 7207: - - Pressed: Toggle - 7204: - - Pressed: Toggle - 7212: - - Pressed: Toggle - 7213: - - Pressed: Toggle - 7214: - - Pressed: Toggle - 7215: - - Pressed: Toggle - 7216: - - Pressed: Toggle - 7217: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 7218 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,68.5 - parent: 1 - type: Transform - - linkedPorts: - 7204: - - Pressed: Toggle - 7207: - - Pressed: Toggle - 7208: - - Pressed: Toggle - 7209: - - Pressed: Toggle - 7210: - - Pressed: Toggle - 7211: - - Pressed: Toggle - 7217: - - Pressed: Toggle - 7216: - - Pressed: Toggle - 7215: - - Pressed: Toggle - 7214: - - Pressed: Toggle - 7213: - - Pressed: Toggle - 7212: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 10701 - components: - - pos: -71.5,18.5 - parent: 1 - type: Transform - - linkedPorts: - 10698: - - Pressed: Toggle - 10699: - - Pressed: Toggle - 10700: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 13361 - components: - - pos: -78.5,47.5 - parent: 1 - type: Transform - - linkedPorts: - 13360: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 13367 - components: - - pos: -71.5,57.5 - parent: 1 - type: Transform - - linkedPorts: - 13366: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 13821 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-9.5 - parent: 1 - type: Transform - - linkedPorts: - 13818: - - Pressed: Toggle - 13817: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 13822 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-9.5 - parent: 1 - type: Transform - - linkedPorts: - 13819: - - Pressed: Toggle - 13820: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 15185 - components: - - rot: 3.141592653589793 rad - pos: 18.5,48.5 - parent: 1 - type: Transform - - linkedPorts: - 15173: - - Pressed: Toggle - 15175: - - Pressed: Toggle - 15174: - - Pressed: Toggle - 15177: - - Pressed: Toggle - 15178: - - Pressed: Toggle - 15179: - - Pressed: Toggle - 15180: - - Pressed: Toggle - 15181: - - Pressed: Toggle - 15182: - - Pressed: Toggle - 15183: - - Pressed: Toggle - 15184: - - Pressed: Toggle - 15176: - - Pressed: Toggle - type: DeviceLinkSource -- proto: SignAnomaly - entities: - - uid: 325 - components: - - pos: -0.5,-9.5 - parent: 1 - type: Transform -- proto: SignAnomaly2 - entities: - - uid: 324 - components: - - pos: -10.5,-11.5 - parent: 1 - type: Transform -- proto: SignBar - entities: - - uid: 7371 - components: - - pos: -33.5,39.5 - parent: 1 - type: Transform - - uid: 7372 - components: - - pos: -37.5,34.5 - parent: 1 - type: Transform -- proto: SignBio - entities: - - uid: 14343 - components: - - pos: -76.5,57.5 - parent: 1 - type: Transform -- proto: SignCargo - entities: - - uid: 3658 - components: - - pos: -39.5,2.5 - parent: 1 - type: Transform - - uid: 3659 - components: - - pos: -35.5,2.5 - parent: 1 - type: Transform -- proto: SignChem - entities: - - uid: 1906 - components: - - pos: -3.5,28.5 - parent: 1 - type: Transform - - uid: 1907 - components: - - pos: 1.5,27.5 - parent: 1 - type: Transform -- proto: SignCloning - entities: - - uid: 1350 - components: - - pos: 2.5,35.5 - parent: 1 - type: Transform -- proto: SignCryogenicsMed - entities: - - uid: 1207 - components: - - pos: 5.5,34.5 - parent: 1 - type: Transform - - uid: 1321 - components: - - pos: 5.5,32.5 - parent: 1 - type: Transform -- proto: SignDanger - entities: - - uid: 14836 - components: - - pos: 11.5,-15.5 - parent: 1 - type: Transform - - uid: 14840 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-12.5 - parent: 1 - type: Transform -- proto: SignDirectionalBar - entities: - - uid: 14501 - components: - - rot: 3.141592653589793 rad - pos: -59.490047,7.285572 - parent: 1 - type: Transform - - uid: 14507 - components: - - rot: 3.141592653589793 rad - pos: -39.450584,8.088224 - parent: 1 - type: Transform - - uid: 14525 - components: - - rot: 3.141592653589793 rad - pos: -14.487816,7.472787 - parent: 1 - type: Transform - - uid: 14530 - components: - - rot: -1.5707963267948966 rad - pos: -14.482212,30.621857 - parent: 1 - type: Transform - - uid: 14537 - components: - - rot: -1.5707963267948966 rad - pos: -18.473362,34.479904 - parent: 1 - type: Transform - - uid: 14547 - components: - - rot: 1.5707963267948966 rad - pos: -55.470596,30.735767 - parent: 1 - type: Transform -- proto: SignDirectionalBridge - entities: - - uid: 14517 - components: - - rot: 3.141592653589793 rad - pos: -14.488382,7.264183 - parent: 1 - type: Transform - - uid: 14518 - components: - - rot: 1.5707963267948966 rad - pos: -32.437344,7.701683 - parent: 1 - type: Transform - - uid: 14519 - components: - - rot: 1.5707963267948966 rad - pos: -55.473106,3.3110576 - parent: 1 - type: Transform - - uid: 14535 - components: - - rot: 3.141592653589793 rad - pos: -14.4896145,34.68303 - parent: 1 - type: Transform - - uid: 14540 - components: - - rot: 1.5707963267948966 rad - pos: -35.48712,30.33314 - parent: 1 - type: Transform - - uid: 14549 - components: - - rot: 1.5707963267948966 rad - pos: -55.470596,30.513163 - parent: 1 - type: Transform - - uid: 14552 - components: - - rot: 1.5707963267948966 rad - pos: -45.46681,34.272972 - parent: 1 - type: Transform - - uid: 14556 - components: - - pos: -49.482433,48.469536 - parent: 1 - type: Transform -- proto: SignDirectionalChapel - entities: - - uid: 14516 - components: - - rot: 1.5707963267948966 rad - pos: -10.488658,7.654808 - parent: 1 - type: Transform - - uid: 14520 - components: - - rot: 1.5707963267948966 rad - pos: -30.469654,3.3579326 - parent: 1 - type: Transform - - uid: 14521 - components: - - rot: 1.5707963267948966 rad - pos: -59.50527,3.7641826 - parent: 1 - type: Transform - - uid: 14527 - components: - - pos: 12.5,4.5 - parent: 1 - type: Transform -- proto: SignDirectionalEng - entities: - - uid: 14500 - components: - - rot: 3.141592653589793 rad - pos: -59.490047,7.504322 - parent: 1 - type: Transform - - uid: 14510 - components: - - rot: 3.141592653589793 rad - pos: -39.452663,8.478849 - parent: 1 - type: Transform - - uid: 14523 - components: - - rot: -1.5707963267948966 rad - pos: -14.487816,3.550912 - parent: 1 - type: Transform - - uid: 14533 - components: - - rot: -1.5707963267948966 rad - pos: -14.4896145,34.261154 - parent: 1 - type: Transform - - uid: 14545 - components: - - rot: -1.5707963267948966 rad - pos: -39.47286,34.276833 - parent: 1 - type: Transform - - uid: 14554 - components: - - rot: -1.5707963267948966 rad - pos: -45.482433,34.679222 - parent: 1 - type: Transform - - uid: 14555 - components: - - rot: -1.5707963267948966 rad - pos: -49.46681,48.26641 - parent: 1 - type: Transform -- proto: SignDirectionalEvac - entities: - - uid: 14505 - components: - - rot: 1.5707963267948966 rad - pos: -55.472736,3.7415338 - parent: 1 - type: Transform - - uid: 14513 - components: - - rot: 1.5707963267948966 rad - pos: -30.468357,3.5641694 - parent: 1 - type: Transform - - uid: 14514 - components: - - rot: 1.5707963267948966 rad - pos: -10.488658,7.248558 - parent: 1 - type: Transform - - uid: 14526 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,7.5 - parent: 1 - type: Transform - - uid: 14531 - components: - - pos: -14.474767,30.840607 - parent: 1 - type: Transform - - uid: 14542 - components: - - pos: -39.48712,30.567514 - parent: 1 - type: Transform -- proto: SignDirectionalGravity - entities: - - uid: 14506 - components: - - rot: 1.5707963267948966 rad - pos: -55.472736,3.5227838 - parent: 1 - type: Transform - - uid: 14512 - components: - - rot: 1.5707963267948966 rad - pos: -30.468357,3.7672944 - parent: 1 - type: Transform - - uid: 14532 - components: - - rot: 1.5707963267948966 rad - pos: -14.490392,7.668745 - parent: 1 - type: Transform - - uid: 14534 - components: - - pos: -14.4896145,34.46428 - parent: 1 - type: Transform - - uid: 14546 - components: - - pos: -39.47286,34.479958 - parent: 1 - type: Transform -- proto: SignDirectionalJanitor - entities: - - uid: 14561 - components: - - pos: -49.48419,37.304916 - parent: 1 - type: Transform -- proto: SignDirectionalMed - entities: - - uid: 14502 - components: - - rot: 1.5707963267948966 rad - pos: -55.48836,7.2415333 - parent: 1 - type: Transform - - uid: 14509 - components: - - rot: 1.5707963267948966 rad - pos: -32.43669,7.2913494 - parent: 1 - type: Transform - - uid: 14515 - components: - - rot: 3.141592653589793 rad - pos: -10.488658,7.451683 - parent: 1 - type: Transform - - uid: 14538 - components: - - rot: 1.5707963267948966 rad - pos: -35.48712,30.73939 - parent: 1 - type: Transform - - uid: 14550 - components: - - rot: 1.5707963267948966 rad - pos: -55.48622,34.45066 - parent: 1 - type: Transform - - uid: 14557 - components: - - pos: -49.482433,48.657036 - parent: 1 - type: Transform - - uid: 14558 - components: - - rot: 1.5707963267948966 rad - pos: -45.49806,34.875084 - parent: 1 - type: Transform -- proto: SignDirectionalSci - entities: - - uid: 2816 - components: - - pos: -14.4827,30.222769 - parent: 1 - type: Transform - - uid: 14503 - components: - - rot: 1.5707963267948966 rad - pos: -55.48836,7.4602833 - parent: 1 - type: Transform - - uid: 14511 - components: - - rot: 1.5707963267948966 rad - pos: -32.43541,7.4944744 - parent: 1 - type: Transform - - uid: 14539 - components: - - rot: 1.5707963267948966 rad - pos: -35.48712,30.55189 - parent: 1 - type: Transform - - uid: 14551 - components: - - pos: -55.472015,30.294413 - parent: 1 - type: Transform -- proto: SignDirectionalSec - entities: - - uid: 14499 - components: - - rot: 3.141592653589793 rad - pos: -59.490047,7.723072 - parent: 1 - type: Transform - - uid: 14508 - components: - - rot: 3.141592653589793 rad - pos: -39.450584,8.275724 - parent: 1 - type: Transform - - uid: 14522 - components: - - rot: -1.5707963267948966 rad - pos: -14.487816,3.769662 - parent: 1 - type: Transform - - uid: 14536 - components: - - rot: -1.5707963267948966 rad - pos: -18.473362,34.27678 - parent: 1 - type: Transform - - uid: 14541 - components: - - rot: -1.5707963267948966 rad - pos: -39.48712,30.348764 - parent: 1 - type: Transform - - uid: 14548 - components: - - rot: 3.141592653589793 rad - pos: -55.48622,34.247536 - parent: 1 - type: Transform - - uid: 14553 - components: - - rot: 3.141592653589793 rad - pos: -45.482433,34.476097 - parent: 1 - type: Transform -- proto: SignDirectionalSolar - entities: - - uid: 14544 - components: - - pos: 23.5,3.5 - parent: 1 - type: Transform -- proto: SignDirectionalSupply - entities: - - uid: 14504 - components: - - rot: 1.5707963267948966 rad - pos: -55.48836,7.6790333 - parent: 1 - type: Transform - - uid: 14524 - components: - - rot: -1.5707963267948966 rad - pos: -14.487816,3.363412 - parent: 1 - type: Transform - - uid: 14529 - components: - - pos: -14.482212,30.433353 - parent: 1 - type: Transform - - uid: 14543 - components: - - pos: -39.48712,30.77064 - parent: 1 - type: Transform -- proto: SignEVA - entities: - - uid: 7394 - components: - - pos: -14.5,49.5 - parent: 1 - type: Transform -- proto: SignLibrary - entities: - - uid: 3397 - components: - - pos: -24.5,7.5 - parent: 1 - type: Transform -- proto: SignMail - entities: - - uid: 15097 - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-0.5 - parent: 1 - type: Transform - - uid: 15281 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,0.5 - parent: 1 - type: Transform -- proto: SignMedical - entities: - - uid: 1361 - components: - - pos: 5.5,27.5 - parent: 1 - type: Transform - - uid: 1903 - components: - - pos: 1.5,31.5 - parent: 1 - type: Transform -- proto: SignMorgue - entities: - - uid: 1149 - components: - - pos: 2.5,18.5 - parent: 1 - type: Transform -- proto: SignPrison - entities: - - uid: 7205 - components: - - pos: -51.5,70.5 - parent: 1 - type: Transform - - uid: 7331 - components: - - pos: -51.5,77.5 - parent: 1 - type: Transform -- proto: SignScience - entities: - - uid: 228 - components: - - pos: -9.5,3.5 - parent: 1 - type: Transform -- proto: SignSecureMedRed - entities: - - uid: 1596 - components: - - pos: 12.5,-12.5 - parent: 1 - type: Transform - - uid: 7440 - components: - - pos: 9.5,41.5 - parent: 1 - type: Transform - - uid: 14837 - components: - - pos: 7.5,-15.5 - parent: 1 - type: Transform - - uid: 14841 - components: - - pos: 8.5,-11.5 - parent: 1 - type: Transform - - uid: 15010 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-13.5 - parent: 1 - type: Transform - - uid: 15020 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-14.5 - parent: 1 - type: Transform -- proto: SignSpace - entities: - - uid: 5493 - components: - - pos: -53.5,78.5 - parent: 1 - type: Transform - - uid: 7329 - components: - - pos: -53.5,69.5 - parent: 1 - type: Transform - - uid: 7330 - components: - - pos: -49.5,69.5 - parent: 1 - type: Transform - - uid: 7333 - components: - - pos: -49.5,78.5 - parent: 1 - type: Transform -- proto: SignTelecomms - entities: - - uid: 9807 - components: - - pos: -40.5,7.5 - parent: 1 - type: Transform - - uid: 15381 - components: - - pos: 27.5,22.5 - parent: 1 - type: Transform -- proto: SignVirology - entities: - - uid: 1145 - components: - - pos: 5.5,20.5 - parent: 1 - type: Transform -- proto: SingularityGenerator - entities: - - uid: 9976 - components: - - pos: -77.5,22.5 - parent: 1 - type: Transform - - uid: 10648 - components: - - pos: -97.5,25.5 - parent: 1 - type: Transform -- proto: Sink - entities: - - uid: 4079 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,1.5 - parent: 1 - type: Transform - - uid: 4080 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,0.5 - parent: 1 - type: Transform - - uid: 4081 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-0.5 - parent: 1 - type: Transform -- proto: SinkStemlessWater - entities: - - uid: 7088 - components: - - pos: -51.5,41.5 - parent: 1 - type: Transform -- proto: SinkWide - entities: - - uid: 15008 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,44.5 - parent: 1 - type: Transform -- proto: SMESBasic - entities: - - uid: 749 - components: - - pos: 27.5,-7.5 - parent: 1 - type: Transform - - uid: 921 - components: - - pos: 25.5,3.5 - parent: 1 - type: Transform - - uid: 2761 - components: - - pos: 25.5,23.5 - parent: 1 - type: Transform - - uid: 10147 - components: - - pos: -71.5,28.5 - parent: 1 - type: Transform - - uid: 10148 - components: - - pos: -71.5,29.5 - parent: 1 - type: Transform - - uid: 10149 - components: - - pos: -71.5,30.5 - parent: 1 - type: Transform - - uid: 10165 - components: - - pos: -71.5,31.5 - parent: 1 - type: Transform -- proto: SMESMachineCircuitboard - entities: - - uid: 5551 - components: - - pos: -52.558533,24.686655 - parent: 1 - type: Transform - - uid: 5552 - components: - - pos: -52.386658,24.45228 - parent: 1 - type: Transform -- proto: SmokingPipe - entities: - - uid: 61 - components: - - pos: -34.59064,49.648758 - parent: 1 - type: Transform - - uid: 70 - components: - - pos: -34.481266,49.461258 - parent: 1 - type: Transform -- proto: soda_dispenser - entities: - - uid: 5270 - components: - - pos: -54.5,21.5 - parent: 1 - type: Transform - - uid: 9742 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,35.5 - parent: 1 - type: Transform - - uid: 15221 - components: - - rot: 3.141592653589793 rad - pos: 15.5,50.5 - parent: 1 - type: Transform -- proto: SolarAssemblyPart - entities: - - uid: 15982 - components: - - pos: -7.5718555,8.615294 - parent: 1 - type: Transform - - uid: 15983 - components: - - pos: -7.2749805,8.599669 - parent: 1 - type: Transform - - uid: 15984 - components: - - pos: -7.3374805,8.490294 - parent: 1 - type: Transform - - uid: 15985 - components: - - pos: -7.6812305,8.552794 - parent: 1 - type: Transform -- proto: SolarPanel - entities: - - uid: 803 - components: - - pos: 18.5,-14.5 - parent: 1 - type: Transform - - uid: 804 - components: - - pos: 19.5,-14.5 - parent: 1 - type: Transform - - uid: 805 - components: - - pos: 20.5,-14.5 - parent: 1 - type: Transform - - uid: 806 - components: - - pos: 21.5,-14.5 - parent: 1 - type: Transform - - uid: 807 - components: - - pos: 22.5,-14.5 - parent: 1 - type: Transform - - uid: 808 - components: - - pos: 23.5,-14.5 - parent: 1 - type: Transform - - uid: 809 - components: - - pos: 24.5,-14.5 - parent: 1 - type: Transform - - uid: 810 - components: - - pos: 25.5,-14.5 - parent: 1 - type: Transform - - uid: 811 - components: - - pos: 26.5,-14.5 - parent: 1 - type: Transform - - uid: 812 - components: - - pos: 27.5,-14.5 - parent: 1 - type: Transform - - uid: 813 - components: - - pos: 18.5,-16.5 - parent: 1 - type: Transform - - uid: 814 - components: - - pos: 19.5,-16.5 - parent: 1 - type: Transform - - uid: 815 - components: - - pos: 20.5,-16.5 - parent: 1 - type: Transform - - uid: 816 - components: - - pos: 21.5,-16.5 - parent: 1 - type: Transform - - uid: 817 - components: - - pos: 22.5,-16.5 - parent: 1 - type: Transform - - uid: 818 - components: - - pos: 23.5,-16.5 - parent: 1 - type: Transform - - uid: 819 - components: - - pos: 24.5,-16.5 - parent: 1 - type: Transform - - uid: 820 - components: - - pos: 25.5,-16.5 - parent: 1 - type: Transform - - uid: 821 - components: - - pos: 26.5,-16.5 - parent: 1 - type: Transform - - uid: 822 - components: - - pos: 27.5,-16.5 - parent: 1 - type: Transform - - uid: 823 - components: - - pos: 19.5,-18.5 - parent: 1 - type: Transform - - uid: 824 - components: - - pos: 20.5,-18.5 - parent: 1 - type: Transform - - uid: 825 - components: - - pos: 21.5,-18.5 - parent: 1 - type: Transform - - uid: 826 - components: - - pos: 22.5,-18.5 - parent: 1 - type: Transform - - uid: 827 - components: - - pos: 23.5,-18.5 - parent: 1 - type: Transform - - uid: 828 - components: - - pos: 24.5,-18.5 - parent: 1 - type: Transform - - uid: 829 - components: - - pos: 25.5,-18.5 - parent: 1 - type: Transform - - uid: 830 - components: - - pos: 26.5,-18.5 - parent: 1 - type: Transform - - uid: 831 - components: - - pos: 27.5,-18.5 - parent: 1 - type: Transform - - uid: 832 - components: - - pos: 19.5,-20.5 - parent: 1 - type: Transform - - uid: 833 - components: - - pos: 20.5,-20.5 - parent: 1 - type: Transform - - uid: 834 - components: - - pos: 21.5,-20.5 - parent: 1 - type: Transform - - uid: 835 - components: - - pos: 22.5,-20.5 - parent: 1 - type: Transform - - uid: 836 - components: - - pos: 23.5,-20.5 - parent: 1 - type: Transform - - uid: 837 - components: - - pos: 24.5,-20.5 - parent: 1 - type: Transform - - uid: 838 - components: - - pos: 25.5,-20.5 - parent: 1 - type: Transform - - uid: 839 - components: - - pos: 26.5,-20.5 - parent: 1 - type: Transform - - uid: 840 - components: - - pos: 27.5,-20.5 - parent: 1 - type: Transform - - uid: 841 - components: - - pos: 20.5,-22.5 - parent: 1 - type: Transform - - uid: 842 - components: - - pos: 21.5,-22.5 - parent: 1 - type: Transform - - uid: 843 - components: - - pos: 22.5,-22.5 - parent: 1 - type: Transform - - uid: 844 - components: - - pos: 23.5,-22.5 - parent: 1 - type: Transform - - uid: 845 - components: - - pos: 24.5,-22.5 - parent: 1 - type: Transform - - uid: 846 - components: - - pos: 25.5,-22.5 - parent: 1 - type: Transform - - uid: 847 - components: - - pos: 26.5,-22.5 - parent: 1 - type: Transform - - uid: 848 - components: - - pos: 27.5,-22.5 - parent: 1 - type: Transform - - uid: 849 - components: - - pos: 20.5,-24.5 - parent: 1 - type: Transform - - uid: 850 - components: - - pos: 21.5,-24.5 - parent: 1 - type: Transform - - uid: 851 - components: - - pos: 22.5,-24.5 - parent: 1 - type: Transform - - uid: 852 - components: - - pos: 23.5,-24.5 - parent: 1 - type: Transform - - uid: 853 - components: - - pos: 24.5,-24.5 - parent: 1 - type: Transform - - uid: 854 - components: - - pos: 25.5,-24.5 - parent: 1 - type: Transform - - uid: 855 - components: - - pos: 26.5,-24.5 - parent: 1 - type: Transform - - uid: 856 - components: - - pos: 27.5,-24.5 - parent: 1 - type: Transform -- proto: SolarTracker - entities: - - uid: 860 - components: - - pos: 28.5,-27.5 - parent: 1 - type: Transform -- proto: SolarTrackerElectronics - entities: - - uid: 15986 - components: - - pos: -7.5093555,8.3066 - parent: 1 - type: Transform -- proto: SpawnMobAlexander - entities: - - uid: 14184 - components: - - pos: -35.5,46.5 - parent: 1 - type: Transform -- proto: SpawnMobBandito - entities: - - uid: 14178 - components: - - pos: -8.5,-0.5 - parent: 1 - type: Transform -- proto: SpawnMobBear - entities: - - uid: 6324 - components: - - pos: 7.5,51.5 - parent: 1 - type: Transform -- proto: SpawnMobCatRuntime - entities: - - uid: 14180 - components: - - pos: 16.5,30.5 - parent: 1 - type: Transform -- proto: SpawnMobCorgi - entities: - - uid: 7575 - components: - - pos: -22.5,38.5 - parent: 1 - type: Transform -- proto: SpawnMobFoxRenault - entities: - - uid: 10907 - components: - - pos: -9.5,59.5 - parent: 1 - type: Transform -- proto: SpawnMobMcGriff - entities: - - uid: 14183 - components: - - pos: -46.5,59.5 - parent: 1 - type: Transform -- proto: SpawnMobMonkeyPunpun - entities: - - uid: 14168 - components: - - pos: -31.5,37.5 - parent: 1 - type: Transform -- proto: SpawnMobMouse - entities: - - uid: 4996 - components: - - pos: 10.5,39.5 - parent: 1 - type: Transform - - uid: 15041 - components: - - pos: 7.5,-5.5 - parent: 1 - type: Transform - - uid: 15042 - components: - - pos: 22.5,1.5 - parent: 1 - type: Transform - - uid: 15043 - components: - - pos: 14.5,17.5 - parent: 1 - type: Transform - - uid: 15045 - components: - - pos: -7.5,46.5 - parent: 1 - type: Transform - - uid: 15046 - components: - - pos: -44.5,53.5 - parent: 1 - type: Transform - - uid: 15047 - components: - - pos: -66.5,48.5 - parent: 1 - type: Transform -- proto: SpawnMobPossumMorty - entities: - - uid: 14182 - components: - - pos: 14.5,-1.5 - parent: 1 - type: Transform -- proto: SpawnMobRaccoonMorticia - entities: - - uid: 14179 - components: - - pos: -38.5,-4.5 - parent: 1 - type: Transform -- proto: SpawnMobShiva - entities: - - uid: 3680 - components: - - pos: -60.5,65.5 - parent: 1 - type: Transform -- proto: SpawnMobSlothPaperwork - entities: - - uid: 14185 - components: - - pos: -24.5,12.5 - parent: 1 - type: Transform -- proto: SpawnMobWalter - entities: - - uid: 14181 - components: - - pos: -2.5,22.5 - parent: 1 - type: Transform -- proto: SpawnPointAssistant - entities: - - uid: 10824 - components: - - pos: -25.5,27.5 - parent: 1 - type: Transform - - uid: 10825 - components: - - pos: -24.5,28.5 - parent: 1 - type: Transform - - uid: 10826 - components: - - pos: -23.5,27.5 - parent: 1 - type: Transform -- proto: SpawnPointAtmos - entities: - - uid: 14433 - components: - - pos: -81.5,31.5 - parent: 1 - type: Transform - - uid: 14434 - components: - - pos: -80.5,31.5 - parent: 1 - type: Transform - - uid: 14435 - components: - - pos: -79.5,31.5 - parent: 1 - type: Transform -- proto: SpawnPointBartender - entities: - - uid: 9724 - components: - - pos: -31.5,36.5 - parent: 1 - type: Transform - - uid: 9725 - components: - - pos: -31.5,39.5 - parent: 1 - type: Transform -- proto: SpawnPointBotanist - entities: - - uid: 5179 - components: - - pos: -43.5,46.5 - parent: 1 - type: Transform - - uid: 8209 - components: - - pos: -41.5,46.5 - parent: 1 - type: Transform - - uid: 8212 - components: - - pos: -43.5,42.5 - parent: 1 - type: Transform - - uid: 10814 - components: - - pos: -41.5,42.5 - parent: 1 - type: Transform -- proto: SpawnPointCaptain - entities: - - uid: 6508 - components: - - pos: -7.5,60.5 - parent: 1 - type: Transform -- proto: SpawnPointCargoTechnician - entities: - - uid: 3660 - components: - - pos: -39.5,-4.5 - parent: 1 - type: Transform - - uid: 3661 - components: - - pos: -37.5,-4.5 - parent: 1 - type: Transform - - uid: 3662 - components: - - pos: -39.5,-6.5 - parent: 1 - type: Transform - - uid: 3663 - components: - - pos: -37.5,-6.5 - parent: 1 - type: Transform -- proto: SpawnPointChaplain - entities: - - uid: 10823 - components: - - pos: 20.5,-1.5 - parent: 1 - type: Transform -- proto: SpawnPointChef - entities: - - uid: 6933 - components: - - pos: -37.5,44.5 - parent: 1 - type: Transform - - uid: 6934 - components: - - pos: -37.5,45.5 - parent: 1 - type: Transform -- proto: SpawnPointChemist - entities: - - uid: 2182 - components: - - pos: -1.5,25.5 - parent: 1 - type: Transform - - uid: 2183 - components: - - pos: -2.5,23.5 - parent: 1 - type: Transform -- proto: SpawnPointChiefEngineer - entities: - - uid: 3695 - components: - - pos: -69.5,16.5 - parent: 1 - type: Transform -- proto: SpawnPointChiefMedicalOfficer - entities: - - uid: 1314 - components: - - pos: 15.5,32.5 - parent: 1 - type: Transform -- proto: SpawnPointClown - entities: - - uid: 4188 - components: - - pos: -41.5,27.5 - parent: 1 - type: Transform -- proto: SpawnPointDetective - entities: - - uid: 14280 - components: - - pos: -70.5,48.5 - parent: 1 - type: Transform -- proto: SpawnPointHeadOfPersonnel - entities: - - uid: 11600 - components: - - pos: -20.5,38.5 - parent: 1 - type: Transform -- proto: SpawnPointHeadOfSecurity - entities: - - uid: 9989 - components: - - pos: -61.5,64.5 - parent: 1 - type: Transform -- proto: SpawnPointJanitor - entities: - - uid: 7090 - components: - - pos: -51.5,40.5 - parent: 1 - type: Transform - - uid: 9723 - components: - - pos: -52.5,36.5 - parent: 1 - type: Transform -- proto: SpawnPointLatejoin - entities: - - uid: 4855 - components: - - pos: -73.5,5.5 - parent: 1 - type: Transform - - uid: 4861 - components: - - pos: -66.5,5.5 - parent: 1 - type: Transform -- proto: SpawnPointLawyer - entities: - - uid: 9997 - components: - - pos: -53.5,54.5 - parent: 1 - type: Transform -- proto: SpawnPointLibrarian - entities: - - uid: 3398 - components: - - pos: -30.5,9.5 - parent: 1 - type: Transform -- proto: SpawnPointMedicalDoctor - entities: - - uid: 14923 - components: - - pos: 7.5,24.5 - parent: 1 - type: Transform - - uid: 14924 - components: - - pos: 8.5,24.5 - parent: 1 - type: Transform - - uid: 14925 - components: - - pos: 9.5,24.5 - parent: 1 - type: Transform - - uid: 14926 - components: - - pos: 8.5,23.5 - parent: 1 - type: Transform -- proto: SpawnPointMedicalIntern - entities: - - uid: 14927 - components: - - pos: 3.5,31.5 - parent: 1 - type: Transform - - uid: 14928 - components: - - pos: 3.5,29.5 - parent: 1 - type: Transform - - uid: 14929 - components: - - pos: 3.5,24.5 - parent: 1 - type: Transform - - uid: 14930 - components: - - pos: 3.5,22.5 - parent: 1 - type: Transform -- proto: SpawnPointMime - entities: - - uid: 4215 - components: - - pos: -41.5,24.5 - parent: 1 - type: Transform -- proto: SpawnPointMusician - entities: - - uid: 4139 - components: - - pos: -24.5,23.5 - parent: 1 - type: Transform -- proto: SpawnPointObserver - entities: - - uid: 13776 - components: - - pos: -37.5,32.5 - parent: 1 - type: Transform -- proto: SpawnPointQuartermaster - entities: - - uid: 3667 - components: - - pos: -44.5,-7.5 - parent: 1 - type: Transform -- proto: SpawnPointResearchAssistant - entities: - - uid: 2169 - components: - - pos: -7.5,-0.5 - parent: 1 - type: Transform - - uid: 15107 - components: - - pos: -10.5,-3.5 - parent: 1 - type: Transform - - uid: 15108 - components: - - pos: -4.5,-3.5 - parent: 1 - type: Transform -- proto: SpawnPointResearchDirector - entities: - - uid: 2167 - components: - - pos: -2.5,2.5 - parent: 1 - type: Transform -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 10343 - components: - - pos: -38.5,-11.5 - parent: 1 - type: Transform - - uid: 13813 - components: - - pos: -42.5,-11.5 - parent: 1 - type: Transform - - uid: 13814 - components: - - pos: -40.5,-11.5 - parent: 1 - type: Transform -- proto: SpawnPointScientist - entities: - - uid: 2168 - components: - - pos: -7.5,1.5 - parent: 1 - type: Transform - - uid: 2170 - components: - - pos: -11.5,-3.5 - parent: 1 - type: Transform - - uid: 2171 - components: - - pos: -16.5,-3.5 - parent: 1 - type: Transform - - uid: 2172 - components: - - pos: -3.5,-3.5 - parent: 1 - type: Transform -- proto: SpawnPointSecurityCadet - entities: - - uid: 9994 - components: - - pos: -55.5,56.5 - parent: 1 - type: Transform - - uid: 9995 - components: - - pos: -53.5,56.5 - parent: 1 - type: Transform - - uid: 9996 - components: - - pos: -51.5,56.5 - parent: 1 - type: Transform -- proto: SpawnPointSecurityOfficer - entities: - - uid: 9990 - components: - - pos: -62.5,54.5 - parent: 1 - type: Transform - - uid: 9991 - components: - - pos: -62.5,52.5 - parent: 1 - type: Transform - - uid: 9992 - components: - - pos: -60.5,52.5 - parent: 1 - type: Transform - - uid: 9993 - components: - - pos: -60.5,54.5 - parent: 1 - type: Transform -- proto: SpawnPointServiceWorker - entities: - - uid: 6036 - components: - - pos: -35.5,43.5 - parent: 1 - type: Transform - - uid: 10216 - components: - - pos: -33.5,43.5 - parent: 1 - type: Transform -- proto: SpawnPointStationEngineer - entities: - - uid: 14426 - components: - - pos: -66.5,26.5 - parent: 1 - type: Transform - - uid: 14427 - components: - - pos: -66.5,28.5 - parent: 1 - type: Transform - - uid: 14428 - components: - - pos: -64.5,28.5 - parent: 1 - type: Transform - - uid: 14429 - components: - - pos: -64.5,26.5 - parent: 1 - type: Transform -- proto: SpawnPointTechnicalAssistant - entities: - - uid: 14430 - components: - - pos: -67.5,33.5 - parent: 1 - type: Transform - - uid: 14431 - components: - - pos: -64.5,33.5 - parent: 1 - type: Transform - - uid: 14432 - components: - - pos: -64.5,31.5 - parent: 1 - type: Transform -- proto: SpawnPointWarden - entities: - - uid: 7958 - components: - - pos: -47.5,61.5 - parent: 1 - type: Transform -- proto: SpawnVehicleJanicart - entities: - - uid: 7067 - components: - - pos: -51.5,36.5 - parent: 1 - type: Transform -- proto: SpawnVehicleSecway - entities: - - uid: 7973 - components: - - pos: -61.5,55.5 - parent: 1 - type: Transform - - uid: 7974 - components: - - pos: -60.5,55.5 - parent: 1 - type: Transform -- proto: SpawnVendingMachineRestockFoodDrink - entities: - - uid: 13674 - components: - - pos: -50.5,41.5 - parent: 1 - type: Transform - - uid: 13675 - components: - - pos: -53.5,44.5 - parent: 1 - type: Transform -- proto: SpeedLoaderMagnum - entities: - - uid: 14951 - components: - - pos: -43.393112,61.308212 - parent: 1 - type: Transform - - uid: 14952 - components: - - pos: -43.099293,61.292587 - parent: 1 - type: Transform - - uid: 14953 - components: - - pos: -43.689987,61.308212 - parent: 1 - type: Transform -- proto: Spoon - entities: - - uid: 15910 - components: - - pos: -49.478313,9.54667 - parent: 1 - type: Transform -- proto: SprayBottleSpaceCleaner - entities: - - uid: 7133 - components: - - flags: InContainer - type: MetaData - - parent: 7074 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 7134 - components: - - flags: InContainer - type: MetaData - - parent: 7074 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 7136 - components: - - flags: InContainer - type: MetaData - - parent: 7074 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 7565 - components: - - flags: InContainer - type: MetaData - - parent: 7074 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: StasisBedMachineCircuitboard - entities: - - uid: 5548 - components: - - pos: -49.451916,24.552746 - parent: 1 - type: Transform -- proto: StatueVenusBlue - entities: - - uid: 5707 - components: - - pos: -32.5,17.5 - parent: 1 - type: Transform -- proto: StatueVenusRed - entities: - - uid: 5706 - components: - - pos: -34.5,18.5 - parent: 1 - type: Transform -- proto: Stool - entities: - - uid: 6 - components: - - rot: 1.5707963267948966 rad - pos: -54.5,10.5 - parent: 1 - type: Transform - - uid: 9 - components: - - rot: 1.5707963267948966 rad - pos: -54.5,8.5 - parent: 1 - type: Transform - - uid: 581 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,12.5 - parent: 1 - type: Transform - - uid: 583 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,12.5 - parent: 1 - type: Transform - - uid: 4140 - components: - - rot: 3.141592653589793 rad - pos: -29.5,26.5 - parent: 1 - type: Transform - - uid: 4169 - components: - - pos: -10.5,34.5 - parent: 1 - type: Transform - - uid: 4219 - components: - - pos: -7.5,34.5 - parent: 1 - type: Transform -- proto: StoolBar - entities: - - uid: 5262 - components: - - rot: 3.141592653589793 rad - pos: -54.5,16.5 - parent: 1 - type: Transform - - uid: 5263 - components: - - rot: 3.141592653589793 rad - pos: -53.5,16.5 - parent: 1 - type: Transform - - uid: 5281 - components: - - rot: 3.141592653589793 rad - pos: -52.5,16.5 - parent: 1 - type: Transform - - uid: 9743 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,38.5 - parent: 1 - type: Transform - - uid: 9744 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,37.5 - parent: 1 - type: Transform - - uid: 9745 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,36.5 - parent: 1 - type: Transform - - uid: 9746 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,35.5 - parent: 1 - type: Transform -- proto: StorageCanister - entities: - - uid: 369 - components: - - pos: 3.5,-8.5 - parent: 1 - type: Transform - - uid: 10737 - components: - - pos: -77.5,28.5 - parent: 1 - type: Transform - - uid: 10738 - components: - - pos: -76.5,28.5 - parent: 1 - type: Transform - - uid: 13924 - components: - - pos: -77.5,43.5 - parent: 1 - type: Transform - - uid: 13925 - components: - - pos: -77.5,44.5 - parent: 1 - type: Transform - - uid: 13926 - components: - - pos: -77.5,45.5 - parent: 1 - type: Transform -- proto: Stunbaton - entities: - - uid: 7999 - components: - - pos: -63.653942,50.74784 - parent: 1 - type: Transform - - uid: 8000 - components: - - pos: -63.450817,50.59159 - parent: 1 - type: Transform - - uid: 8004 - components: - - pos: -63.185192,50.544716 - parent: 1 - type: Transform -- proto: SubstationBasic - entities: - - uid: 606 - components: - - pos: 11.5,-7.5 - parent: 1 - type: Transform - - uid: 608 - components: - - pos: -15.5,17.5 - parent: 1 - type: Transform - - uid: 922 - components: - - pos: 25.5,1.5 - parent: 1 - type: Transform - - uid: 2515 - components: - - pos: 23.5,9.5 - parent: 1 - type: Transform - - uid: 2593 - components: - - pos: 28.5,23.5 - parent: 1 - type: Transform - - uid: 2693 - components: - - pos: -9.5,18.5 - parent: 1 - type: Transform - - uid: 3932 - components: - - pos: -24.5,-3.5 - parent: 1 - type: Transform - - uid: 4339 - components: - - pos: -40.5,15.5 - parent: 1 - type: Transform - - uid: 6198 - components: - - pos: 18.5,46.5 - parent: 1 - type: Transform - - uid: 6527 - components: - - pos: -3.5,56.5 - parent: 1 - type: Transform - - uid: 6812 - components: - - pos: -35.5,57.5 - parent: 1 - type: Transform - - uid: 9336 - components: - - pos: -71.5,25.5 - parent: 1 - type: Transform - - uid: 10141 - components: - - pos: -65.5,59.5 - parent: 1 - type: Transform - - uid: 10207 - components: - - pos: -79.5,27.5 - parent: 1 - type: Transform -- proto: SubstationMachineCircuitboard - entities: - - uid: 5549 - components: - - pos: -52.589783,25.717905 - parent: 1 - type: Transform - - uid: 5550 - components: - - pos: -52.433533,25.45228 - parent: 1 - type: Transform -- proto: SuitStorageCE - entities: - - uid: 3616 - components: - - pos: -68.5,17.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: SuitStorageEVA - entities: - - uid: 3552 - components: - - pos: -10.5,49.5 - parent: 1 - type: Transform - - uid: 3553 - components: - - pos: -13.5,49.5 - parent: 1 - type: Transform - - uid: 5467 - components: - - pos: -12.5,49.5 - parent: 1 - type: Transform - - uid: 7387 - components: - - pos: -11.5,49.5 - parent: 1 - type: Transform -- proto: SuitStorageEVAPrisoner - entities: - - uid: 7186 - components: - - pos: -47.5,68.5 - parent: 1 - type: Transform - - uid: 7391 - components: - - pos: -48.5,68.5 - parent: 1 - type: Transform - - uid: 7410 - components: - - pos: -55.5,79.5 - parent: 1 - type: Transform - - uid: 10735 - components: - - pos: -55.5,80.5 - parent: 1 - type: Transform - - uid: 10736 - components: - - pos: -46.5,68.5 - parent: 1 - type: Transform -- proto: SuitStorageHOS - entities: - - uid: 7344 - components: - - pos: -58.5,63.5 - parent: 1 - type: Transform -- proto: SuitStorageRD - entities: - - uid: 334 - components: - - pos: -3.5,2.5 - parent: 1 - type: Transform -- proto: SuitStorageSec - entities: - - uid: 5494 - components: - - pos: -41.5,64.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraCommand - entities: - - uid: 13732 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,37.5 - parent: 1 - type: Transform - - id: HoP Office Line - type: SurveillanceCamera - - uid: 13733 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,45.5 - parent: 1 - type: Transform - - id: HoP Office Backroom - type: SurveillanceCamera - - uid: 13734 - components: - - pos: -11.5,46.5 - parent: 1 - type: Transform - - id: EVA Room - type: SurveillanceCamera - - uid: 13735 - components: - - rot: 3.141592653589793 rad - pos: -15.5,51.5 - parent: 1 - type: Transform - - id: Bridge Entrance - type: SurveillanceCamera - - uid: 13736 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,56.5 - parent: 1 - type: Transform - - id: Bridge Reception - type: SurveillanceCamera - - uid: 13737 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,56.5 - parent: 1 - type: Transform - - id: Vault - type: SurveillanceCamera - - uid: 13738 - components: - - rot: 3.141592653589793 rad - pos: -9.5,57.5 - parent: 1 - type: Transform - - id: Meeting Room - type: SurveillanceCamera - - uid: 13739 - components: - - pos: -6.5,59.5 - parent: 1 - type: Transform - - id: Captain's Office - type: SurveillanceCamera - - uid: 13740 - components: - - pos: -14.5,62.5 - parent: 1 - type: Transform - - id: Bridge - type: SurveillanceCamera - - uid: 15365 - components: - - rot: 3.141592653589793 rad - pos: 27.5,28.5 - parent: 1 - type: Transform - - id: Telecomms - type: SurveillanceCamera -- proto: SurveillanceCameraEngineering - entities: - - uid: 2016 - components: - - rot: -1.5707963267948966 rad - pos: -61.5,33.5 - parent: 1 - type: Transform - - id: Entrance - type: SurveillanceCamera - - uid: 13723 - components: - - rot: 3.141592653589793 rad - pos: -51.5,29.5 - parent: 1 - type: Transform - - id: Storage - type: SurveillanceCamera - - uid: 13724 - components: - - pos: -50.5,23.5 - parent: 1 - type: Transform - - id: Tech Vault - type: SurveillanceCamera - - uid: 14858 - components: - - rot: -1.5707963267948966 rad - pos: -67.5,28.5 - parent: 1 - type: Transform - - id: Equipment Room - type: SurveillanceCamera - - uid: 14859 - components: - - rot: 1.5707963267948966 rad - pos: -69.5,29.5 - parent: 1 - type: Transform - - id: SMES - type: SurveillanceCamera - - uid: 14860 - components: - - pos: -80.5,29.5 - parent: 1 - type: Transform - - id: Atmospherics Equipment - type: SurveillanceCamera - - uid: 14861 - components: - - rot: 1.5707963267948966 rad - pos: -77.5,41.5 - parent: 1 - type: Transform - - id: Atmospherics - type: SurveillanceCamera - - uid: 14862 - components: - - rot: 3.141592653589793 rad - pos: -82.5,27.5 - parent: 1 - type: Transform - - id: PA Room - type: SurveillanceCamera - - uid: 14863 - components: - - pos: -66.5,19.5 - parent: 1 - type: Transform - - id: AME - type: SurveillanceCamera -- proto: SurveillanceCameraGeneral - entities: - - uid: 8969 - components: - - rot: 3.141592653589793 rad - pos: -31.5,29.5 - parent: 1 - type: Transform - - id: Theatre - type: SurveillanceCamera - - uid: 13727 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,13.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - id: Store Area - type: SurveillanceCamera - - uid: 13728 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,11.5 - parent: 1 - type: Transform - - id: Library - type: SurveillanceCamera - - uid: 13729 - components: - - rot: 3.141592653589793 rad - pos: -25.5,18.5 - parent: 1 - type: Transform - - id: Library Backroom - type: SurveillanceCamera - - uid: 13731 - components: - - pos: -24.5,26.5 - parent: 1 - type: Transform - - id: Tool Room - type: SurveillanceCamera - - uid: 13747 - components: - - rot: 1.5707963267948966 rad - pos: -56.5,2.5 - parent: 1 - type: Transform - - id: Arrivals Corridor - type: SurveillanceCamera - - uid: 13748 - components: - - rot: 3.141592653589793 rad - pos: 14.5,6.5 - parent: 1 - type: Transform - - id: Evac Corridor - type: SurveillanceCamera - - uid: 13749 - components: - - pos: 13.5,-2.5 - parent: 1 - type: Transform - - id: Chapel - type: SurveillanceCamera - - uid: 13750 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,11.5 - parent: 1 - type: Transform - - id: Evac 2 - type: SurveillanceCamera - - uid: 13751 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,20.5 - parent: 1 - type: Transform - - id: Evac 1 - type: SurveillanceCamera -- proto: SurveillanceCameraMedical - entities: - - uid: 13090 - components: - - rot: 3.141592653589793 rad - pos: 0.5,17.5 - parent: 1 - type: Transform - - id: Morgue - type: SurveillanceCamera - - uid: 13091 - components: - - pos: 1.5,36.5 - parent: 1 - type: Transform - - id: Cloning - type: SurveillanceCamera - - uid: 13092 - components: - - rot: 3.141592653589793 rad - pos: 10.5,37.5 - parent: 1 - type: Transform - - id: Cryo - type: SurveillanceCamera - - uid: 13093 - components: - - pos: 10.5,28.5 - parent: 1 - type: Transform - - id: Ward - type: SurveillanceCamera - - uid: 13094 - components: - - pos: 9.5,22.5 - parent: 1 - type: Transform - - id: Equipment Room - type: SurveillanceCamera - - uid: 13095 - components: - - rot: 3.141592653589793 rad - pos: 8.5,17.5 - parent: 1 - type: Transform - - id: Virology - type: SurveillanceCamera - - uid: 13297 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,27.5 - parent: 1 - type: Transform - - id: Main Hall - type: SurveillanceCamera - - uid: 13759 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,24.5 - parent: 1 - type: Transform - - id: Chemistry - type: SurveillanceCamera - - uid: 13762 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,31.5 - parent: 1 - type: Transform - - id: Reception - type: SurveillanceCamera - - uid: 13763 - components: - - rot: 3.141592653589793 rad - pos: -11.5,33.5 - parent: 1 - type: Transform - - id: Entrance - type: SurveillanceCamera -- proto: SurveillanceCameraRouterCommand - entities: - - uid: 4281 - components: - - pos: -40.5,8.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraRouterEngineering - entities: - - uid: 4276 - components: - - pos: -42.5,9.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraRouterGeneral - entities: - - uid: 4278 - components: - - pos: -40.5,11.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraRouterMedical - entities: - - uid: 4274 - components: - - pos: -42.5,11.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraRouterScience - entities: - - uid: 4277 - components: - - pos: -42.5,8.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraRouterSecurity - entities: - - uid: 4280 - components: - - pos: -40.5,9.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraRouterService - entities: - - uid: 4275 - components: - - pos: -42.5,10.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraRouterSupply - entities: - - uid: 4279 - components: - - pos: -40.5,10.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraScience - entities: - - uid: 13704 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-1.5 - parent: 1 - type: Transform - - id: Main Area - type: SurveillanceCamera - - uid: 13705 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-8.5 - parent: 1 - type: Transform - - id: Xenoarch - type: SurveillanceCamera - - uid: 13706 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-10.5 - parent: 1 - type: Transform - - id: Anomaly Lab - type: SurveillanceCamera - - uid: 13707 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,0.5 - parent: 1 - type: Transform - - id: Robotics Room - type: SurveillanceCamera - - uid: 13726 - components: - - pos: -10.5,4.5 - parent: 1 - type: Transform - - id: Entrance - type: SurveillanceCamera -- proto: SurveillanceCameraSecurity - entities: - - uid: 9146 - components: - - rot: 3.141592653589793 rad - pos: -63.5,55.5 - parent: 1 - type: Transform - - id: Equipment Room - type: SurveillanceCamera - - uid: 9147 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,56.5 - parent: 1 - type: Transform - - id: Brig Area - type: SurveillanceCamera - - uid: 9148 - components: - - rot: -1.5707963267948966 rad - pos: -48.5,50.5 - parent: 1 - type: Transform - - id: Entrance - type: SurveillanceCamera - - uid: 9149 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,60.5 - parent: 1 - type: Transform - - id: Warden's Office - type: SurveillanceCamera - - uid: 9150 - components: - - rot: -1.5707963267948966 rad - pos: -56.5,64.5 - parent: 1 - type: Transform - - id: Breakroom - type: SurveillanceCamera - - uid: 9151 - components: - - pos: -51.5,60.5 - parent: 1 - type: Transform - - id: Main Hall - type: SurveillanceCamera - - uid: 9152 - components: - - rot: -1.5707963267948966 rad - pos: -43.5,63.5 - parent: 1 - type: Transform - - id: Armory - type: SurveillanceCamera - - uid: 9153 - components: - - pos: -51.5,71.5 - parent: 1 - type: Transform - - id: Space Bridge - type: SurveillanceCamera - - uid: 9154 - components: - - rot: -1.5707963267948966 rad - pos: -52.5,86.5 - parent: 1 - type: Transform - - id: Perma Hall - type: SurveillanceCamera - - uid: 9155 - components: - - rot: 1.5707963267948966 rad - pos: -57.5,85.5 - parent: 1 - type: Transform - - id: Permabrig - type: SurveillanceCamera - - uid: 13089 - components: - - rot: 3.141592653589793 rad - pos: 0.5,10.5 - parent: 1 - type: Transform - - id: Evac Corridor Checkpoint - type: SurveillanceCamera - - uid: 13854 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,28.5 - parent: 1 - type: Transform - - id: Med Checkpoint - type: SurveillanceCamera -- proto: SurveillanceCameraService - entities: - - uid: 13741 - components: - - rot: 3.141592653589793 rad - pos: -28.5,47.5 - parent: 1 - type: Transform - - id: Freezer - type: SurveillanceCamera - - uid: 13742 - components: - - rot: 3.141592653589793 rad - pos: -35.5,47.5 - parent: 1 - type: Transform - - id: Kitchen - type: SurveillanceCamera - - uid: 13743 - components: - - pos: -42.5,41.5 - parent: 1 - type: Transform - - id: Botany - type: SurveillanceCamera - - uid: 13744 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,36.5 - parent: 1 - type: Transform - - id: Bar Right - type: SurveillanceCamera - - uid: 13745 - components: - - pos: -43.5,35.5 - parent: 1 - type: Transform - - id: Bar Left - type: SurveillanceCamera - - uid: 13746 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,51.5 - parent: 1 - type: Transform - - id: Botany Backroom - type: SurveillanceCamera -- proto: SurveillanceCameraSupply - entities: - - uid: 3835 - components: - - pos: -44.5,-13.5 - parent: 1 - type: Transform - - id: Salvage Bay - type: SurveillanceCamera - - uid: 6818 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-9.5 - parent: 1 - type: Transform - - id: Cargo Dock - type: SurveillanceCamera - - uid: 13708 - components: - - pos: -35.5,0.5 - parent: 1 - type: Transform - - id: Reception Area - type: SurveillanceCamera - - uid: 13709 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-5.5 - parent: 1 - type: Transform - - id: Cargo Bay - type: SurveillanceCamera -- proto: SurveillanceWirelessCameraMovableEntertainment - entities: - - uid: 8350 - components: - - rot: 3.141592653589793 rad - pos: -29.5,23.5 - parent: 1 - type: Transform -- proto: Syringe - entities: - - uid: 1963 - components: - - pos: -0.47509155,19.63882 - parent: 1 - type: Transform - - uid: 1964 - components: - - pos: -0.4652393,20.229368 - parent: 1 - type: Transform - - uid: 12770 - components: - - desc: A suspicious looking syringe. - name: suspicious syringe - type: MetaData - - pos: 19.469204,28.644407 - parent: 1 - type: Transform - - tags: [] - type: Tag - - solutions: - injector: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 15 - reagents: - - Quantity: 15 - ReagentId: Hyronalin - type: SolutionContainerManager -- proto: Table - entities: - - uid: 64 - components: - - pos: 8.5,31.5 - parent: 1 - type: Transform - - uid: 230 - components: - - pos: -11.5,-5.5 - parent: 1 - type: Transform - - uid: 233 - components: - - pos: -10.5,-5.5 - parent: 1 - type: Transform - - uid: 235 - components: - - pos: -13.5,-1.5 - parent: 1 - type: Transform - - uid: 236 - components: - - pos: -12.5,-1.5 - parent: 1 - type: Transform - - uid: 237 - components: - - pos: -11.5,-1.5 - parent: 1 - type: Transform - - uid: 239 - components: - - pos: 2.5,-1.5 - parent: 1 - type: Transform - - uid: 241 - components: - - pos: 2.5,-2.5 - parent: 1 - type: Transform - - uid: 250 - components: - - pos: -9.5,2.5 - parent: 1 - type: Transform - - uid: 273 - components: - - pos: -7.5,3.5 - parent: 1 - type: Transform - - uid: 279 - components: - - pos: -0.5,-3.5 - parent: 1 - type: Transform - - uid: 280 - components: - - pos: -0.5,-4.5 - parent: 1 - type: Transform - - uid: 284 - components: - - pos: -17.5,-13.5 - parent: 1 - type: Transform - - uid: 288 - components: - - pos: -3.5,-5.5 - parent: 1 - type: Transform - - uid: 289 - components: - - pos: -4.5,-5.5 - parent: 1 - type: Transform - - uid: 322 - components: - - pos: -14.5,-14.5 - parent: 1 - type: Transform - - uid: 328 - components: - - pos: -16.5,-14.5 - parent: 1 - type: Transform - - uid: 329 - components: - - pos: -15.5,-14.5 - parent: 1 - type: Transform - - uid: 330 - components: - - pos: -17.5,-14.5 - parent: 1 - type: Transform - - uid: 350 - components: - - pos: 5.5,-11.5 - parent: 1 - type: Transform - - uid: 352 - components: - - pos: 4.5,-11.5 - parent: 1 - type: Transform - - uid: 353 - components: - - pos: 2.5,-11.5 - parent: 1 - type: Transform - - uid: 578 - components: - - pos: 12.5,31.5 - parent: 1 - type: Transform - - uid: 579 - components: - - pos: 10.5,31.5 - parent: 1 - type: Transform - - uid: 923 - components: - - pos: 25.5,2.5 - parent: 1 - type: Transform - - uid: 1619 - components: - - rot: 3.141592653589793 rad - pos: 4.5,16.5 - parent: 1 - type: Transform - - uid: 1621 - components: - - rot: 3.141592653589793 rad - pos: 4.5,15.5 - parent: 1 - type: Transform - - uid: 1623 - components: - - rot: 3.141592653589793 rad - pos: 4.5,17.5 - parent: 1 - type: Transform - - uid: 1634 - components: - - pos: -0.5,7.5 - parent: 1 - type: Transform - - uid: 1668 - components: - - pos: 16.5,-7.5 - parent: 1 - type: Transform - - uid: 1669 - components: - - pos: 16.5,-8.5 - parent: 1 - type: Transform - - uid: 1872 - components: - - pos: 25.5,-7.5 - parent: 1 - type: Transform - - uid: 1874 - components: - - pos: 22.5,-7.5 - parent: 1 - type: Transform - - uid: 1948 - components: - - pos: 1.5,25.5 - parent: 1 - type: Transform - - uid: 1949 - components: - - pos: 1.5,26.5 - parent: 1 - type: Transform - - uid: 1950 - components: - - pos: -0.5,28.5 - parent: 1 - type: Transform - - uid: 2019 - components: - - pos: 0.5,7.5 - parent: 1 - type: Transform - - uid: 2020 - components: - - pos: 6.5,23.5 - parent: 1 - type: Transform - - uid: 2021 - components: - - pos: 6.5,22.5 - parent: 1 - type: Transform - - uid: 2022 - components: - - pos: 7.5,22.5 - parent: 1 - type: Transform - - uid: 2023 - components: - - pos: 8.5,22.5 - parent: 1 - type: Transform - - uid: 2025 - components: - - pos: 10.5,26.5 - parent: 1 - type: Transform - - uid: 2026 - components: - - pos: 10.5,25.5 - parent: 1 - type: Transform - - uid: 2027 - components: - - pos: 10.5,24.5 - parent: 1 - type: Transform - - uid: 2038 - components: - - pos: 8.5,33.5 - parent: 1 - type: Transform - - uid: 2039 - components: - - pos: 9.5,33.5 - parent: 1 - type: Transform - - uid: 2040 - components: - - pos: 10.5,33.5 - parent: 1 - type: Transform - - uid: 2042 - components: - - pos: 4.5,37.5 - parent: 1 - type: Transform - - uid: 2043 - components: - - pos: 4.5,38.5 - parent: 1 - type: Transform - - uid: 2044 - components: - - pos: 4.5,39.5 - parent: 1 - type: Transform - - uid: 2353 - components: - - pos: 11.5,19.5 - parent: 1 - type: Transform - - uid: 2354 - components: - - pos: 11.5,18.5 - parent: 1 - type: Transform - - uid: 2355 - components: - - pos: 8.5,17.5 - parent: 1 - type: Transform - - uid: 2356 - components: - - pos: 7.5,17.5 - parent: 1 - type: Transform - - uid: 2357 - components: - - pos: 6.5,17.5 - parent: 1 - type: Transform - - uid: 2358 - components: - - pos: 6.5,16.5 - parent: 1 - type: Transform - - uid: 2636 - components: - - pos: -9.5,28.5 - parent: 1 - type: Transform - - uid: 2765 - components: - - pos: -14.5,8.5 - parent: 1 - type: Transform - - uid: 2766 - components: - - pos: -14.5,9.5 - parent: 1 - type: Transform - - uid: 2767 - components: - - pos: -14.5,10.5 - parent: 1 - type: Transform - - uid: 2768 - components: - - pos: -10.5,8.5 - parent: 1 - type: Transform - - uid: 2769 - components: - - pos: -10.5,9.5 - parent: 1 - type: Transform - - uid: 2770 - components: - - pos: -10.5,11.5 - parent: 1 - type: Transform - - uid: 2771 - components: - - pos: -10.5,12.5 - parent: 1 - type: Transform - - uid: 2773 - components: - - pos: -14.5,13.5 - parent: 1 - type: Transform - - uid: 2774 - components: - - pos: -14.5,14.5 - parent: 1 - type: Transform - - uid: 2776 - components: - - pos: -10.5,15.5 - parent: 1 - type: Transform - - uid: 2840 - components: - - pos: -16.5,29.5 - parent: 1 - type: Transform - - uid: 2841 - components: - - pos: -15.5,29.5 - parent: 1 - type: Transform - - uid: 2845 - components: - - pos: -15.5,24.5 - parent: 1 - type: Transform - - uid: 2885 - components: - - pos: 25.5,-8.5 - parent: 1 - type: Transform - - uid: 2951 - components: - - pos: 29.5,-4.5 - parent: 1 - type: Transform - - uid: 2952 - components: - - pos: 28.5,-4.5 - parent: 1 - type: Transform - - uid: 2958 - components: - - pos: 8.5,-4.5 - parent: 1 - type: Transform - - uid: 2959 - components: - - pos: 7.5,-4.5 - parent: 1 - type: Transform - - uid: 3038 - components: - - pos: -15.5,25.5 - parent: 1 - type: Transform - - uid: 3507 - components: - - pos: -21.5,-10.5 - parent: 1 - type: Transform - - uid: 3508 - components: - - pos: -21.5,-11.5 - parent: 1 - type: Transform - - uid: 3515 - components: - - pos: -19.5,-10.5 - parent: 1 - type: Transform - - uid: 3532 - components: - - pos: -39.5,1.5 - parent: 1 - type: Transform - - uid: 3534 - components: - - pos: -39.5,0.5 - parent: 1 - type: Transform - - uid: 3535 - components: - - pos: -38.5,2.5 - parent: 1 - type: Transform - - uid: 3536 - components: - - pos: -37.5,2.5 - parent: 1 - type: Transform - - uid: 3545 - components: - - pos: -36.5,2.5 - parent: 1 - type: Transform - - uid: 3546 - components: - - pos: -35.5,1.5 - parent: 1 - type: Transform - - uid: 3547 - components: - - pos: -35.5,0.5 - parent: 1 - type: Transform - - uid: 3671 - components: - - pos: -42.5,1.5 - parent: 1 - type: Transform - - uid: 3741 - components: - - pos: -46.5,2.5 - parent: 1 - type: Transform - - uid: 3742 - components: - - pos: -46.5,1.5 - parent: 1 - type: Transform - - uid: 3743 - components: - - pos: -46.5,0.5 - parent: 1 - type: Transform - - uid: 4128 - components: - - pos: -26.5,24.5 - parent: 1 - type: Transform - - uid: 4129 - components: - - pos: -25.5,24.5 - parent: 1 - type: Transform - - uid: 4130 - components: - - pos: -24.5,24.5 - parent: 1 - type: Transform - - uid: 4131 - components: - - pos: -23.5,24.5 - parent: 1 - type: Transform - - uid: 4132 - components: - - pos: -22.5,24.5 - parent: 1 - type: Transform - - uid: 4207 - components: - - pos: -42.5,23.5 - parent: 1 - type: Transform - - uid: 4208 - components: - - pos: -41.5,23.5 - parent: 1 - type: Transform - - uid: 4209 - components: - - pos: -40.5,23.5 - parent: 1 - type: Transform - - uid: 4210 - components: - - pos: -42.5,24.5 - parent: 1 - type: Transform - - uid: 4211 - components: - - pos: -42.5,28.5 - parent: 1 - type: Transform - - uid: 4212 - components: - - pos: -41.5,28.5 - parent: 1 - type: Transform - - uid: 4213 - components: - - pos: -40.5,28.5 - parent: 1 - type: Transform - - uid: 4214 - components: - - pos: -40.5,27.5 - parent: 1 - type: Transform - - uid: 4557 - components: - - pos: 23.5,40.5 - parent: 1 - type: Transform - - uid: 5250 - components: - - pos: -53.5,17.5 - parent: 1 - type: Transform - - uid: 5251 - components: - - pos: -54.5,17.5 - parent: 1 - type: Transform - - uid: 5256 - components: - - pos: -54.5,21.5 - parent: 1 - type: Transform - - uid: 5257 - components: - - pos: -53.5,21.5 - parent: 1 - type: Transform - - uid: 5258 - components: - - pos: -52.5,21.5 - parent: 1 - type: Transform - - uid: 5259 - components: - - pos: -53.5,13.5 - parent: 1 - type: Transform - - uid: 5278 - components: - - pos: -52.5,17.5 - parent: 1 - type: Transform - - uid: 5283 - components: - - pos: -54.5,29.5 - parent: 1 - type: Transform - - uid: 5284 - components: - - pos: -53.5,29.5 - parent: 1 - type: Transform - - uid: 5285 - components: - - pos: -52.5,29.5 - parent: 1 - type: Transform - - uid: 5286 - components: - - pos: -51.5,29.5 - parent: 1 - type: Transform - - uid: 5287 - components: - - pos: -47.5,29.5 - parent: 1 - type: Transform - - uid: 5288 - components: - - pos: -47.5,28.5 - parent: 1 - type: Transform - - uid: 5289 - components: - - pos: -47.5,27.5 - parent: 1 - type: Transform - - uid: 5325 - components: - - pos: 23.5,38.5 - parent: 1 - type: Transform - - uid: 5339 - components: - - pos: 23.5,42.5 - parent: 1 - type: Transform - - uid: 5407 - components: - - pos: -28.5,-8.5 - parent: 1 - type: Transform - - uid: 5424 - components: - - pos: -18.5,0.5 - parent: 1 - type: Transform - - uid: 5425 - components: - - pos: -29.5,-2.5 - parent: 1 - type: Transform - - uid: 5440 - components: - - pos: -23.5,-3.5 - parent: 1 - type: Transform - - uid: 5520 - components: - - pos: -47.5,-6.5 - parent: 1 - type: Transform - - uid: 5521 - components: - - pos: -47.5,-7.5 - parent: 1 - type: Transform - - uid: 5601 - components: - - pos: -41.5,13.5 - parent: 1 - type: Transform - - uid: 5602 - components: - - pos: -46.5,15.5 - parent: 1 - type: Transform - - uid: 5603 - components: - - pos: -47.5,15.5 - parent: 1 - type: Transform - - uid: 5610 - components: - - pos: -45.5,25.5 - parent: 1 - type: Transform - - uid: 5611 - components: - - pos: -45.5,24.5 - parent: 1 - type: Transform - - uid: 5635 - components: - - pos: -26.5,26.5 - parent: 1 - type: Transform - - uid: 5636 - components: - - pos: -25.5,26.5 - parent: 1 - type: Transform - - uid: 5637 - components: - - pos: -24.5,26.5 - parent: 1 - type: Transform - - uid: 5639 - components: - - pos: -24.5,29.5 - parent: 1 - type: Transform - - uid: 5713 - components: - - pos: -22.5,20.5 - parent: 1 - type: Transform - - uid: 5717 - components: - - pos: -30.5,12.5 - parent: 1 - type: Transform - - uid: 5718 - components: - - pos: -34.5,13.5 - parent: 1 - type: Transform - - uid: 5720 - components: - - pos: -20.5,14.5 - parent: 1 - type: Transform - - uid: 5784 - components: - - pos: -7.5,22.5 - parent: 1 - type: Transform - - uid: 6329 - components: - - pos: 9.5,46.5 - parent: 1 - type: Transform - - uid: 6330 - components: - - pos: -0.5,51.5 - parent: 1 - type: Transform - - uid: 6512 - components: - - pos: -18.5,66.5 - parent: 1 - type: Transform - - uid: 6513 - components: - - pos: -17.5,66.5 - parent: 1 - type: Transform - - uid: 6514 - components: - - pos: -18.5,65.5 - parent: 1 - type: Transform - - uid: 6515 - components: - - pos: -19.5,65.5 - parent: 1 - type: Transform - - uid: 6516 - components: - - pos: -15.5,66.5 - parent: 1 - type: Transform - - uid: 6517 - components: - - pos: -14.5,66.5 - parent: 1 - type: Transform - - uid: 6518 - components: - - pos: -14.5,65.5 - parent: 1 - type: Transform - - uid: 6519 - components: - - pos: -13.5,65.5 - parent: 1 - type: Transform - - uid: 6520 - components: - - pos: -12.5,63.5 - parent: 1 - type: Transform - - uid: 6521 - components: - - pos: -20.5,63.5 - parent: 1 - type: Transform - - uid: 6522 - components: - - pos: -21.5,62.5 - parent: 1 - type: Transform - - uid: 6523 - components: - - pos: -21.5,59.5 - parent: 1 - type: Transform - - uid: 6524 - components: - - pos: -11.5,62.5 - parent: 1 - type: Transform - - uid: 6525 - components: - - pos: -11.5,59.5 - parent: 1 - type: Transform - - uid: 6890 - components: - - pos: -45.5,42.5 - parent: 1 - type: Transform - - uid: 6891 - components: - - pos: -45.5,43.5 - parent: 1 - type: Transform - - uid: 6892 - components: - - pos: -45.5,44.5 - parent: 1 - type: Transform - - uid: 6893 - components: - - pos: -39.5,43.5 - parent: 1 - type: Transform - - uid: 6894 - components: - - pos: -39.5,44.5 - parent: 1 - type: Transform - - uid: 6895 - components: - - pos: -39.5,45.5 - parent: 1 - type: Transform - - uid: 6896 - components: - - pos: -39.5,46.5 - parent: 1 - type: Transform - - uid: 6897 - components: - - pos: -36.5,41.5 - parent: 1 - type: Transform - - uid: 6898 - components: - - pos: -35.5,41.5 - parent: 1 - type: Transform - - uid: 6909 - components: - - pos: -36.5,45.5 - parent: 1 - type: Transform - - uid: 6910 - components: - - pos: -36.5,44.5 - parent: 1 - type: Transform - - uid: 6911 - components: - - pos: -35.5,45.5 - parent: 1 - type: Transform - - uid: 6912 - components: - - pos: -35.5,44.5 - parent: 1 - type: Transform - - uid: 6913 - components: - - pos: -34.5,45.5 - parent: 1 - type: Transform - - uid: 6914 - components: - - pos: -34.5,44.5 - parent: 1 - type: Transform - - uid: 6915 - components: - - pos: -37.5,47.5 - parent: 1 - type: Transform - - uid: 6916 - components: - - pos: -36.5,47.5 - parent: 1 - type: Transform - - uid: 6917 - components: - - pos: -35.5,47.5 - parent: 1 - type: Transform - - uid: 6920 - components: - - pos: -33.5,42.5 - parent: 1 - type: Transform - - uid: 6921 - components: - - pos: -32.5,42.5 - parent: 1 - type: Transform - - uid: 6922 - components: - - pos: -33.5,44.5 - parent: 1 - type: Transform - - uid: 6923 - components: - - pos: -33.5,45.5 - parent: 1 - type: Transform - - uid: 7073 - components: - - pos: -53.5,36.5 - parent: 1 - type: Transform - - uid: 7296 - components: - - pos: -59.5,89.5 - parent: 1 - type: Transform - - uid: 7298 - components: - - pos: -61.5,88.5 - parent: 1 - type: Transform - - uid: 7302 - components: - - pos: -61.5,89.5 - parent: 1 - type: Transform - - uid: 7438 - components: - - pos: -50.5,88.5 - parent: 1 - type: Transform - - uid: 7443 - components: - - pos: -50.5,89.5 - parent: 1 - type: Transform - - uid: 7564 - components: - - pos: -19.5,36.5 - parent: 1 - type: Transform - - uid: 7571 - components: - - pos: -19.5,39.5 - parent: 1 - type: Transform - - uid: 7572 - components: - - pos: -19.5,40.5 - parent: 1 - type: Transform - - uid: 7640 - components: - - pos: -54.5,82.5 - parent: 1 - type: Transform - - uid: 7641 - components: - - pos: -54.5,88.5 - parent: 1 - type: Transform - - uid: 7711 - components: - - pos: -58.5,89.5 - parent: 1 - type: Transform - - uid: 7738 - components: - - pos: -60.5,89.5 - parent: 1 - type: Transform - - uid: 7902 - components: - - pos: -47.5,56.5 - parent: 1 - type: Transform - - uid: 7903 - components: - - pos: -47.5,63.5 - parent: 1 - type: Transform - - uid: 7905 - components: - - pos: -48.5,59.5 - parent: 1 - type: Transform - - uid: 7906 - components: - - pos: -47.5,59.5 - parent: 1 - type: Transform - - uid: 7960 - components: - - pos: -55.5,58.5 - parent: 1 - type: Transform - - uid: 7961 - components: - - pos: -56.5,58.5 - parent: 1 - type: Transform - - uid: 7963 - components: - - pos: -53.5,58.5 - parent: 1 - type: Transform - - uid: 7967 - components: - - pos: -60.5,50.5 - parent: 1 - type: Transform - - uid: 7968 - components: - - pos: -61.5,50.5 - parent: 1 - type: Transform - - uid: 7969 - components: - - pos: -62.5,50.5 - parent: 1 - type: Transform - - uid: 7970 - components: - - pos: -63.5,50.5 - parent: 1 - type: Transform - - uid: 7971 - components: - - pos: -63.5,51.5 - parent: 1 - type: Transform - - uid: 7984 - components: - - pos: -60.5,58.5 - parent: 1 - type: Transform - - uid: 8170 - components: - - pos: 20.5,32.5 - parent: 1 - type: Transform - - uid: 9006 - components: - - pos: -32.5,-5.5 - parent: 1 - type: Transform - - uid: 9070 - components: - - pos: 17.5,42.5 - parent: 1 - type: Transform - - uid: 9082 - components: - - pos: 18.5,40.5 - parent: 1 - type: Transform - - uid: 9226 - components: - - pos: -63.5,41.5 - parent: 1 - type: Transform - - uid: 9274 - components: - - pos: -60.5,41.5 - parent: 1 - type: Transform - - uid: 9948 - components: - - rot: 1.5707963267948966 rad - pos: -64.5,14.5 - parent: 1 - type: Transform - - uid: 9949 - components: - - rot: 1.5707963267948966 rad - pos: -81.5,22.5 - parent: 1 - type: Transform - - uid: 9950 - components: - - rot: 1.5707963267948966 rad - pos: -80.5,22.5 - parent: 1 - type: Transform - - uid: 10095 - components: - - pos: -13.5,-7.5 - parent: 1 - type: Transform - - uid: 10362 - components: - - pos: -3.5,43.5 - parent: 1 - type: Transform - - uid: 10366 - components: - - pos: -3.5,42.5 - parent: 1 - type: Transform - - uid: 10370 - components: - - pos: -29.5,49.5 - parent: 1 - type: Transform - - uid: 10371 - components: - - pos: -28.5,49.5 - parent: 1 - type: Transform - - uid: 10403 - components: - - pos: 22.5,29.5 - parent: 1 - type: Transform - - uid: 10719 - components: - - rot: -1.5707963267948966 rad - pos: -66.5,25.5 - parent: 1 - type: Transform - - uid: 10720 - components: - - rot: -1.5707963267948966 rad - pos: -65.5,25.5 - parent: 1 - type: Transform - - uid: 10721 - components: - - rot: -1.5707963267948966 rad - pos: -64.5,25.5 - parent: 1 - type: Transform - - uid: 10722 - components: - - rot: -1.5707963267948966 rad - pos: -63.5,25.5 - parent: 1 - type: Transform - - uid: 10731 - components: - - rot: -1.5707963267948966 rad - pos: -82.5,29.5 - parent: 1 - type: Transform - - uid: 10732 - components: - - rot: -1.5707963267948966 rad - pos: -82.5,30.5 - parent: 1 - type: Transform - - uid: 10733 - components: - - rot: -1.5707963267948966 rad - pos: -82.5,31.5 - parent: 1 - type: Transform - - uid: 10851 - components: - - pos: -61.5,41.5 - parent: 1 - type: Transform - - uid: 12512 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,14.5 - parent: 1 - type: Transform - - uid: 12767 - components: - - pos: 18.5,28.5 - parent: 1 - type: Transform - - uid: 12768 - components: - - pos: 19.5,28.5 - parent: 1 - type: Transform - - uid: 12769 - components: - - pos: 20.5,28.5 - parent: 1 - type: Transform - - uid: 12902 - components: - - pos: 4.5,8.5 - parent: 1 - type: Transform - - uid: 12903 - components: - - pos: 5.5,8.5 - parent: 1 - type: Transform - - uid: 13083 - components: - - pos: -2.5,10.5 - parent: 1 - type: Transform - - uid: 13084 - components: - - pos: -1.5,10.5 - parent: 1 - type: Transform - - uid: 14239 - components: - - pos: -73.5,51.5 - parent: 1 - type: Transform - - uid: 14240 - components: - - pos: -72.5,51.5 - parent: 1 - type: Transform - - uid: 14245 - components: - - rot: 3.141592653589793 rad - pos: -66.5,41.5 - parent: 1 - type: Transform - - uid: 14246 - components: - - rot: 3.141592653589793 rad - pos: -66.5,42.5 - parent: 1 - type: Transform - - uid: 14315 - components: - - rot: 3.141592653589793 rad - pos: -74.5,46.5 - parent: 1 - type: Transform - - uid: 14580 - components: - - pos: -60.5,19.5 - parent: 1 - type: Transform - - uid: 14586 - components: - - rot: -1.5707963267948966 rad - pos: -61.5,25.5 - parent: 1 - type: Transform - - uid: 14590 - components: - - rot: 1.5707963267948966 rad - pos: -67.5,10.5 - parent: 1 - type: Transform - - uid: 15110 - components: - - pos: 14.5,-7.5 - parent: 1 - type: Transform - - uid: 15547 - components: - - pos: 11.5,-20.5 - parent: 1 - type: Transform - - uid: 15548 - components: - - pos: 12.5,-20.5 - parent: 1 - type: Transform -- proto: TableCarpet - entities: - - uid: 6782 - components: - - pos: -37.5,52.5 - parent: 1 - type: Transform - - uid: 6822 - components: - - pos: -36.5,52.5 - parent: 1 - type: Transform - - uid: 6823 - components: - - pos: -35.5,52.5 - parent: 1 - type: Transform - - uid: 6824 - components: - - pos: -34.5,52.5 - parent: 1 - type: Transform -- proto: TableFrame - entities: - - uid: 1934 - components: - - pos: -4.5,21.5 - parent: 1 - type: Transform - - uid: 1939 - components: - - pos: -4.5,24.5 - parent: 1 - type: Transform - - uid: 7140 - components: - - pos: -64.5,41.5 - parent: 1 - type: Transform - - uid: 7514 - components: - - pos: -25.5,55.5 - parent: 1 - type: Transform - - uid: 7515 - components: - - pos: -25.5,54.5 - parent: 1 - type: Transform - - uid: 10923 - components: - - pos: -61.5,39.5 - parent: 1 - type: Transform -- proto: TableGlass - entities: - - uid: 342 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-11.5 - parent: 1 - type: Transform - - uid: 1935 - components: - - pos: -3.5,27.5 - parent: 1 - type: Transform - - uid: 1937 - components: - - pos: 0.5,27.5 - parent: 1 - type: Transform - - uid: 1938 - components: - - pos: -4.5,20.5 - parent: 1 - type: Transform - - uid: 1941 - components: - - pos: -0.5,19.5 - parent: 1 - type: Transform - - uid: 1942 - components: - - pos: -0.5,22.5 - parent: 1 - type: Transform - - uid: 1943 - components: - - pos: -0.5,20.5 - parent: 1 - type: Transform - - uid: 1945 - components: - - pos: -0.5,21.5 - parent: 1 - type: Transform - - uid: 2035 - components: - - pos: 15.5,28.5 - parent: 1 - type: Transform - - uid: 2036 - components: - - pos: 16.5,28.5 - parent: 1 - type: Transform -- proto: TableReinforced - entities: - - uid: 1327 - components: - - pos: 10.5,-13.5 - parent: 1 - type: Transform - - uid: 2969 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,23.5 - parent: 1 - type: Transform - - uid: 7912 - components: - - pos: -43.5,61.5 - parent: 1 - type: Transform - - uid: 7913 - components: - - pos: -42.5,61.5 - parent: 1 - type: Transform - - uid: 7914 - components: - - pos: -41.5,61.5 - parent: 1 - type: Transform - - uid: 7915 - components: - - pos: -41.5,62.5 - parent: 1 - type: Transform - - uid: 7916 - components: - - pos: -41.5,63.5 - parent: 1 - type: Transform - - uid: 10857 - components: - - pos: -23.5,54.5 - parent: 1 - type: Transform - - uid: 10858 - components: - - pos: -23.5,53.5 - parent: 1 - type: Transform - - uid: 10859 - components: - - pos: -22.5,53.5 - parent: 1 - type: Transform - - uid: 14818 - components: - - pos: -21.5,53.5 - parent: 1 - type: Transform -- proto: TableReinforcedGlass - entities: - - uid: 6940 - components: - - pos: -42.5,47.5 - parent: 1 - type: Transform - - uid: 6948 - components: - - pos: -43.5,47.5 - parent: 1 - type: Transform -- proto: TableStone - entities: - - uid: 1808 - components: - - pos: 13.5,3.5 - parent: 1 - type: Transform - - uid: 1809 - components: - - pos: 14.5,3.5 - parent: 1 - type: Transform - - uid: 1811 - components: - - pos: 16.5,3.5 - parent: 1 - type: Transform - - uid: 1812 - components: - - pos: 17.5,3.5 - parent: 1 - type: Transform -- proto: TableWood - entities: - - uid: 246 - components: - - pos: -1.5,1.5 - parent: 1 - type: Transform - - uid: 628 - components: - - pos: 6.5,-2.5 - parent: 1 - type: Transform - - uid: 629 - components: - - pos: 7.5,2.5 - parent: 1 - type: Transform - - uid: 910 - components: - - pos: 27.5,-1.5 - parent: 1 - type: Transform - - uid: 911 - components: - - pos: 28.5,-1.5 - parent: 1 - type: Transform - - uid: 1279 - components: - - pos: 14.5,31.5 - parent: 1 - type: Transform - - uid: 1313 - components: - - pos: 15.5,31.5 - parent: 1 - type: Transform - - uid: 1521 - components: - - pos: -17.5,-4.5 - parent: 1 - type: Transform - - uid: 1833 - components: - - pos: 21.5,-2.5 - parent: 1 - type: Transform - - uid: 1834 - components: - - pos: 21.5,-1.5 - parent: 1 - type: Transform - - uid: 1974 - components: - - pos: -1.5,34.5 - parent: 1 - type: Transform - - uid: 1975 - components: - - pos: -1.5,33.5 - parent: 1 - type: Transform - - uid: 1976 - components: - - pos: -1.5,32.5 - parent: 1 - type: Transform - - uid: 1977 - components: - - pos: -0.5,32.5 - parent: 1 - type: Transform - - uid: 1978 - components: - - pos: 0.5,32.5 - parent: 1 - type: Transform - - uid: 2260 - components: - - pos: 16.5,15.5 - parent: 1 - type: Transform - - uid: 2261 - components: - - pos: 17.5,15.5 - parent: 1 - type: Transform - - uid: 2262 - components: - - pos: 18.5,15.5 - parent: 1 - type: Transform - - uid: 2263 - components: - - pos: 19.5,15.5 - parent: 1 - type: Transform - - uid: 2264 - components: - - pos: 20.5,15.5 - parent: 1 - type: Transform - - uid: 2265 - components: - - pos: 17.5,19.5 - parent: 1 - type: Transform - - uid: 2991 - components: - - pos: 24.5,14.5 - parent: 1 - type: Transform - - uid: 3096 - components: - - pos: -27.5,13.5 - parent: 1 - type: Transform - - uid: 3097 - components: - - pos: -28.5,13.5 - parent: 1 - type: Transform - - uid: 3103 - components: - - pos: -27.5,9.5 - parent: 1 - type: Transform - - uid: 3104 - components: - - pos: -26.5,9.5 - parent: 1 - type: Transform - - uid: 3105 - components: - - pos: -25.5,9.5 - parent: 1 - type: Transform - - uid: 3106 - components: - - pos: -24.5,9.5 - parent: 1 - type: Transform - - uid: 3107 - components: - - pos: -24.5,8.5 - parent: 1 - type: Transform - - uid: 3183 - components: - - pos: -27.5,17.5 - parent: 1 - type: Transform - - uid: 3185 - components: - - pos: -26.5,17.5 - parent: 1 - type: Transform - - uid: 3186 - components: - - pos: -26.5,16.5 - parent: 1 - type: Transform - - uid: 3196 - components: - - pos: -31.5,9.5 - parent: 1 - type: Transform - - uid: 3201 - components: - - pos: -27.5,16.5 - parent: 1 - type: Transform - - uid: 3572 - components: - - rot: 1.5707963267948966 rad - pos: -72.5,15.5 - parent: 1 - type: Transform - - uid: 3575 - components: - - pos: -31.5,-1.5 - parent: 1 - type: Transform - - uid: 3577 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-3.5 - parent: 1 - type: Transform - - uid: 3584 - components: - - rot: 1.5707963267948966 rad - pos: -70.5,15.5 - parent: 1 - type: Transform - - uid: 3692 - components: - - pos: -37.5,-9.5 - parent: 1 - type: Transform - - uid: 3727 - components: - - pos: -45.5,-3.5 - parent: 1 - type: Transform - - uid: 3747 - components: - - pos: -45.5,-7.5 - parent: 1 - type: Transform - - uid: 3749 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-6.5 - parent: 1 - type: Transform - - uid: 5342 - components: - - rot: 3.141592653589793 rad - pos: -50.5,9.5 - parent: 1 - type: Transform - - uid: 5343 - components: - - rot: 3.141592653589793 rad - pos: -48.5,9.5 - parent: 1 - type: Transform - - uid: 5351 - components: - - pos: -54.5,-5.5 - parent: 1 - type: Transform - - uid: 5352 - components: - - pos: -53.5,-5.5 - parent: 1 - type: Transform - - uid: 5353 - components: - - pos: -52.5,-5.5 - parent: 1 - type: Transform - - uid: 5354 - components: - - pos: -53.5,-0.5 - parent: 1 - type: Transform - - uid: 5355 - components: - - pos: -53.5,-1.5 - parent: 1 - type: Transform - - uid: 6077 - components: - - rot: 3.141592653589793 rad - pos: -49.5,9.5 - parent: 1 - type: Transform - - uid: 6243 - components: - - pos: -9.5,44.5 - parent: 1 - type: Transform - - uid: 6244 - components: - - pos: -8.5,44.5 - parent: 1 - type: Transform - - uid: 6245 - components: - - pos: -6.5,44.5 - parent: 1 - type: Transform - - uid: 6331 - components: - - pos: 2.5,49.5 - parent: 1 - type: Transform - - uid: 6332 - components: - - pos: 15.5,50.5 - parent: 1 - type: Transform - - uid: 6333 - components: - - pos: 14.5,50.5 - parent: 1 - type: Transform - - uid: 6510 - components: - - pos: -6.5,61.5 - parent: 1 - type: Transform - - uid: 6511 - components: - - pos: -7.5,61.5 - parent: 1 - type: Transform - - uid: 6646 - components: - - pos: -10.5,55.5 - parent: 1 - type: Transform - - uid: 6647 - components: - - pos: -9.5,55.5 - parent: 1 - type: Transform - - uid: 6648 - components: - - pos: -8.5,55.5 - parent: 1 - type: Transform - - uid: 6899 - components: - - pos: -33.5,38.5 - parent: 1 - type: Transform - - uid: 6901 - components: - - pos: -33.5,36.5 - parent: 1 - type: Transform - - uid: 6902 - components: - - pos: -33.5,35.5 - parent: 1 - type: Transform - - uid: 7357 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,0.5 - parent: 1 - type: Transform - - uid: 7373 - components: - - pos: -5.5,44.5 - parent: 1 - type: Transform - - uid: 7388 - components: - - pos: -37.5,-10.5 - parent: 1 - type: Transform - - uid: 7528 - components: - - pos: -22.5,46.5 - parent: 1 - type: Transform - - uid: 7529 - components: - - pos: -21.5,46.5 - parent: 1 - type: Transform - - uid: 7542 - components: - - pos: -19.5,47.5 - parent: 1 - type: Transform - - uid: 7543 - components: - - pos: -19.5,48.5 - parent: 1 - type: Transform - - uid: 7544 - components: - - pos: -19.5,46.5 - parent: 1 - type: Transform - - uid: 7924 - components: - - pos: -54.5,64.5 - parent: 1 - type: Transform - - uid: 7925 - components: - - pos: -56.5,63.5 - parent: 1 - type: Transform - - uid: 7926 - components: - - pos: -56.5,64.5 - parent: 1 - type: Transform - - uid: 7927 - components: - - pos: -60.5,64.5 - parent: 1 - type: Transform - - uid: 7928 - components: - - pos: -60.5,63.5 - parent: 1 - type: Transform - - uid: 7929 - components: - - pos: -58.5,64.5 - parent: 1 - type: Transform - - uid: 8071 - components: - - rot: 1.5707963267948966 rad - pos: -70.5,16.5 - parent: 1 - type: Transform - - uid: 9728 - components: - - pos: -30.5,39.5 - parent: 1 - type: Transform - - uid: 9729 - components: - - pos: -30.5,38.5 - parent: 1 - type: Transform - - uid: 9730 - components: - - pos: -30.5,36.5 - parent: 1 - type: Transform - - uid: 9731 - components: - - pos: -30.5,35.5 - parent: 1 - type: Transform - - uid: 9747 - components: - - pos: -41.5,35.5 - parent: 1 - type: Transform - - uid: 9748 - components: - - pos: -44.5,36.5 - parent: 1 - type: Transform - - uid: 9750 - components: - - pos: -38.5,37.5 - parent: 1 - type: Transform - - uid: 9751 - components: - - pos: -37.5,37.5 - parent: 1 - type: Transform - - uid: 9752 - components: - - pos: -36.5,37.5 - parent: 1 - type: Transform - - uid: 9770 - components: - - pos: -38.5,40.5 - parent: 1 - type: Transform - - uid: 10256 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-2.5 - parent: 1 - type: Transform - - uid: 10702 - components: - - rot: -1.5707963267948966 rad - pos: -68.5,16.5 - parent: 1 - type: Transform - - uid: 10853 - components: - - pos: -63.5,39.5 - parent: 1 - type: Transform - - uid: 10922 - components: - - pos: -62.5,39.5 - parent: 1 - type: Transform - - uid: 10964 - components: - - pos: -72.5,41.5 - parent: 1 - type: Transform - - uid: 10965 - components: - - pos: -70.5,39.5 - parent: 1 - type: Transform - - uid: 14000 - components: - - pos: -70.5,45.5 - parent: 1 - type: Transform - - uid: 14001 - components: - - pos: -69.5,45.5 - parent: 1 - type: Transform - - uid: 14203 - components: - - rot: 1.5707963267948966 rad - pos: -73.5,15.5 - parent: 1 - type: Transform - - uid: 14206 - components: - - pos: -37.5,-13.5 - parent: 1 - type: Transform - - uid: 14282 - components: - - pos: -71.5,49.5 - parent: 1 - type: Transform - - uid: 14283 - components: - - pos: -70.5,49.5 - parent: 1 - type: Transform - - uid: 14288 - components: - - pos: -72.5,47.5 - parent: 1 - type: Transform - - uid: 15012 - components: - - pos: 18.5,48.5 - parent: 1 - type: Transform - - uid: 15093 - components: - - pos: -38.5,-9.5 - parent: 1 - type: Transform - - uid: 15220 - components: - - pos: 17.5,52.5 - parent: 1 - type: Transform -- proto: TelecomServer - entities: - - uid: 982 - components: - - pos: 26.5,28.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 983 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 1026 - components: - - pos: 25.5,26.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 1027 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 2590 - components: - - pos: 25.5,25.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 2591 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 15336 - components: - - pos: 25.5,28.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 15337 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 15338 - components: - - pos: 27.5,28.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 15339 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 15340 - components: - - pos: 28.5,28.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 15341 - - 15342 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 15343 - components: - - pos: 28.5,26.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 15344 - - 15345 - - 15346 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 15347 - components: - - pos: 28.5,25.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 15348 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- proto: TintedWindow - entities: - - uid: 530 - components: - - pos: -42.5,-6.5 - parent: 1 - type: Transform - - uid: 536 - components: - - pos: -42.5,-7.5 - parent: 1 - type: Transform - - uid: 1325 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,31.5 - parent: 1 - type: Transform - - uid: 1397 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,30.5 - parent: 1 - type: Transform - - uid: 1664 - components: - - pos: 17.5,-11.5 - parent: 1 - type: Transform -- proto: ToiletDirtyWater - entities: - - uid: 1666 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-10.5 - parent: 1 - type: Transform - - uid: 4069 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-1.5 - parent: 1 - type: Transform - - uid: 4070 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,0.5 - parent: 1 - type: Transform - - uid: 4071 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,2.5 - parent: 1 - type: Transform -- proto: ToiletEmpty - entities: - - uid: 7028 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,40.5 - parent: 1 - type: Transform - - containers: - stash: !type:ContainerSlot - showEnts: False - occludes: True - ent: 6979 - type: ContainerContainer - - uid: 7135 - components: - - pos: -64.5,42.5 - parent: 1 - type: Transform - - uid: 7322 - components: - - rot: -1.5707963267948966 rad - pos: -54.5,86.5 - parent: 1 - type: Transform - - uid: 9954 - components: - - pos: -61.5,42.5 - parent: 1 - type: Transform - - uid: 10848 - components: - - rot: 3.141592653589793 rad - pos: -62.5,38.5 - parent: 1 - type: Transform - - uid: 10931 - components: - - pos: -64.5,45.5 - parent: 1 - type: Transform - - uid: 10932 - components: - - pos: -63.5,45.5 - parent: 1 - type: Transform - - uid: 10933 - components: - - pos: -60.5,45.5 - parent: 1 - type: Transform - - uid: 10951 - components: - - rot: 3.141592653589793 rad - pos: -64.5,39.5 - parent: 1 - type: Transform -- proto: ToolboxElectricalFilled - entities: - - uid: 5646 - components: - - pos: -25.110394,26.456669 - parent: 1 - type: Transform - - uid: 5840 - components: - - pos: -82.51737,30.870302 - parent: 1 - type: Transform - - uid: 13608 - components: - - pos: -63.54383,25.748787 - parent: 1 - type: Transform - - uid: 15549 - components: - - pos: 12.466422,-20.487698 - parent: 1 - type: Transform -- proto: ToolboxEmergencyFilled - entities: - - uid: 5645 - components: - - pos: -24.587534,26.550022 - parent: 1 - type: Transform - - uid: 10919 - components: - - pos: -21.512825,62.627495 - parent: 1 - type: Transform -- proto: ToolboxGoldFilled - entities: - - uid: 10871 - components: - - pos: -23.241955,53.59838 - parent: 1 - type: Transform -- proto: ToolboxMechanical - entities: - - uid: 4736 - components: - - pos: -8.936694,44.61425 - parent: 1 - type: Transform - - uid: 4738 - components: - - pos: -9.577319,44.598625 - parent: 1 - type: Transform - - uid: 5002 - components: - - pos: -8.436694,44.55175 - parent: 1 - type: Transform -- proto: ToolboxMechanicalFilled - entities: - - uid: 5641 - components: - - pos: -7.51254,9.424052 - parent: 1 - type: Transform - - uid: 5644 - components: - - pos: -25.165659,26.690647 - parent: 1 - type: Transform - - uid: 6065 - components: - - pos: -82.51737,30.995302 - parent: 1 - type: Transform - - uid: 10920 - components: - - pos: -11.49985,59.57393 - parent: 1 - type: Transform - - uid: 13609 - components: - - pos: -63.528206,25.389412 - parent: 1 - type: Transform - - uid: 15560 - components: - - pos: 12.466422,-20.253323 - parent: 1 - type: Transform -- proto: ToyDeathRipley - entities: - - uid: 3184 - components: - - pos: -26.45058,17.657667 - parent: 1 - type: Transform -- proto: ToyDurand - entities: - - uid: 3203 - components: - - pos: -27.13808,16.704542 - parent: 1 - type: Transform -- proto: ToyFireRipley - entities: - - uid: 3202 - components: - - pos: -26.466206,16.876417 - parent: 1 - type: Transform -- proto: ToyHonk - entities: - - uid: 3200 - components: - - pos: -27.54433,17.142042 - parent: 1 - type: Transform -- proto: ToyIan - entities: - - uid: 7576 - components: - - pos: -22.170961,37.297226 - parent: 1 - type: Transform -- proto: ToySkeleton - entities: - - uid: 15121 - components: - - pos: -4.60635,49.548958 - parent: 1 - type: Transform -- proto: ToySpawner - entities: - - uid: 3513 - components: - - pos: -19.5,-13.5 - parent: 1 - type: Transform - - uid: 3514 - components: - - pos: -19.5,-14.5 - parent: 1 - type: Transform - - uid: 5032 - components: - - pos: -31.5,25.5 - parent: 1 - type: Transform - - uid: 5046 - components: - - pos: -33.5,28.5 - parent: 1 - type: Transform - - uid: 15942 - components: - - pos: 18.5,-8.5 - parent: 1 - type: Transform -- proto: TrashBananaPeel - entities: - - uid: 1415 - components: - - pos: -37.219505,3.4937391 - parent: 1 - type: Transform - - uid: 1813 - components: - - pos: -47.903706,6.478619 - parent: 1 - type: Transform - - uid: 2259 - components: - - pos: -52.19529,31.223146 - parent: 1 - type: Transform - - uid: 2301 - components: - - pos: -34.750755,3.5093641 - parent: 1 - type: Transform - - uid: 2638 - components: - - pos: -58.333614,39.9851 - parent: 1 - type: Transform - - uid: 2660 - components: - - pos: -24.719154,34.580376 - parent: 1 - type: Transform - - uid: 2662 - components: - - pos: -46.437923,43.313522 - parent: 1 - type: Transform - - uid: 4161 - components: - - pos: -57.03674,38.469475 - parent: 1 - type: Transform - - uid: 15123 - components: - - pos: -42.080788,28.835457 - parent: 1 - type: Transform - - uid: 15124 - components: - - pos: -42.158913,28.601082 - parent: 1 - type: Transform - - uid: 15125 - components: - - pos: -42.237038,28.413582 - parent: 1 - type: Transform -- proto: TrashBananaPeelExplosive - entities: - - uid: 2791 - components: - - pos: -26.575481,55.467476 - parent: 1 - type: Transform - - uid: 15837 - components: - - pos: -29.528606,53.2956 - parent: 1 - type: Transform -- proto: trayScanner - entities: - - uid: 15559 - components: - - pos: 11.419547,-20.393948 - parent: 1 - type: Transform -- proto: TromboneInstrument - entities: - - uid: 10958 - components: - - pos: -69.56805,45.607796 - parent: 1 - type: Transform -- proto: TrumpetInstrument - entities: - - uid: 9676 - components: - - pos: -70.39617,45.607796 - parent: 1 - type: Transform -- proto: TwoWayLever - entities: - - uid: 523 - components: - - pos: 1.5,2.5 - parent: 1 - type: Transform - - linkedPorts: - 105: - - Left: Open - - Right: Open - - Middle: Close - 216: - - Left: Open - - Right: Open - - Middle: Close - 215: - - Left: Open - - Right: Open - - Middle: Close - type: DeviceLinkSource - - uid: 13823 - components: - - pos: -35.5,-8.5 - parent: 1 - type: Transform - - linkedPorts: - 13829: - - Left: Forward - - Right: Reverse - - Middle: Off - 13828: - - Left: Forward - - Right: Reverse - - Middle: Off - 13827: - - Left: Forward - - Right: Reverse - - Middle: Off - 13826: - - Left: Forward - - Right: Reverse - - Middle: Off - 13825: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource - - uid: 13824 - components: - - pos: -31.5,-8.5 - parent: 1 - type: Transform - - linkedPorts: - 13834: - - Left: Forward - - Right: Reverse - - Middle: Off - 13833: - - Left: Forward - - Right: Reverse - - Middle: Off - 13832: - - Left: Forward - - Right: Reverse - - Middle: Off - 13831: - - Left: Forward - - Right: Reverse - - Middle: Off - 13830: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource - - uid: 13842 - components: - - pos: -41.5,-9.5 - parent: 1 - type: Transform - - linkedPorts: - 6793: - - Left: Forward - - Right: Reverse - - Middle: Off - 6789: - - Left: Forward - - Right: Reverse - - Middle: Off - 7282: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource - - uid: 13843 - components: - - pos: -38.5,-7.5 - parent: 1 - type: Transform - - linkedPorts: - 7282: - - Left: Forward - - Right: Reverse - - Middle: Off - 6789: - - Left: Forward - - Right: Reverse - - Middle: Off - 6793: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource - - uid: 14233 - components: - - pos: -70.5,55.5 - parent: 1 - type: Transform - - linkedPorts: - 14225: - - Left: Forward - - Right: Reverse - - Middle: Off - 14226: - - Left: Forward - - Right: Reverse - - Middle: Off - 14224: - - Left: Forward - - Right: Reverse - - Middle: Off - 14227: - - Left: Forward - - Right: Reverse - - Middle: Off - 14228: - - Left: Forward - - Right: Reverse - - Middle: Off - 14229: - - Left: Forward - - Right: Reverse - - Middle: Off - 14230: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource -- proto: UniformPrinter - entities: - - uid: 7560 - components: - - pos: -21.5,42.5 - parent: 1 - type: Transform -- proto: UniformShortsRed - entities: - - uid: 14365 - components: - - pos: -64.695595,14.460857 - parent: 1 - type: Transform - - uid: 14366 - components: - - pos: -64.24247,14.460857 - parent: 1 - type: Transform -- proto: UniformShortsRedWithTop - entities: - - uid: 14367 - components: - - pos: -64.601845,14.679607 - parent: 1 - type: Transform - - uid: 14368 - components: - - pos: -64.42997,14.679607 - parent: 1 - type: Transform -- proto: UprightPianoInstrument - entities: - - uid: 6705 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,42.5 - parent: 1 - type: Transform -- proto: UraniumWindow - entities: - - uid: 2696 - components: - - rot: 3.141592653589793 rad - pos: -24.5,30.5 - parent: 1 - type: Transform -- proto: Vaccinator - entities: - - uid: 2361 - components: - - pos: 11.5,17.5 - parent: 1 - type: Transform -- proto: VehicleKeyATV - entities: - - uid: 3519 - components: - - pos: -21.491938,-11.581937 - parent: 1 - type: Transform -- proto: VehicleKeyJanicart - entities: - - uid: 4162 - components: - - pos: -53.425735,36.403816 - parent: 1 - type: Transform - - uid: 15049 - components: - - flags: InContainer - type: MetaData - - parent: 7071 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: VehicleKeySecway - entities: - - uid: 8021 - components: - - pos: -63.41839,50.781906 - parent: 1 - type: Transform - - uid: 8022 - components: - - pos: -63.652763,50.594406 - parent: 1 - type: Transform -- proto: VehicleKeySkeleton - entities: - - uid: 15122 - components: - - pos: -4.309475,49.548958 - parent: 1 - type: Transform -- proto: VendingBarDrobe - entities: - - uid: 9726 - components: - - flags: SessionSpecific - type: MetaData - - pos: -27.5,38.5 - parent: 1 - type: Transform -- proto: VendingMachineAtmosDrobe - entities: - - uid: 133 - components: - - flags: SessionSpecific - type: MetaData - - pos: -84.5,32.5 - parent: 1 - type: Transform -- proto: VendingMachineBooze - entities: - - uid: 6339 - components: - - flags: SessionSpecific - type: MetaData - - pos: 13.5,50.5 - parent: 1 - type: Transform - - uid: 9727 - components: - - flags: SessionSpecific - type: MetaData - - pos: -30.5,40.5 - parent: 1 - type: Transform - - uid: 10103 - components: - - flags: SessionSpecific - type: MetaData - - pos: 4.5,49.5 - parent: 1 - type: Transform -- proto: VendingMachineCargoDrobe - entities: - - uid: 3655 - components: - - flags: SessionSpecific - type: MetaData - - pos: -41.5,-7.5 - parent: 1 - type: Transform -- proto: VendingMachineCart - entities: - - uid: 7561 - components: - - flags: SessionSpecific - type: MetaData - - pos: -22.5,42.5 - parent: 1 - type: Transform -- proto: VendingMachineChapel - entities: - - uid: 1835 - components: - - flags: SessionSpecific - type: MetaData - - pos: 19.5,-0.5 - parent: 1 - type: Transform -- proto: VendingMachineChefDrobe - entities: - - uid: 6930 - components: - - flags: SessionSpecific - type: MetaData - - pos: -31.5,42.5 - parent: 1 - type: Transform -- proto: VendingMachineChefvend - entities: - - uid: 6931 - components: - - flags: SessionSpecific - type: MetaData - - pos: -38.5,47.5 - parent: 1 - type: Transform -- proto: VendingMachineChemDrobe - entities: - - uid: 1928 - components: - - flags: SessionSpecific - type: MetaData - - pos: -4.5,19.5 - parent: 1 - type: Transform -- proto: VendingMachineChemicals - entities: - - uid: 527 - components: - - flags: SessionSpecific - type: MetaData - - pos: -4.5,26.5 - parent: 1 - type: Transform -- proto: VendingMachineCigs - entities: - - uid: 2661 - components: - - flags: SessionSpecific - type: MetaData - - pos: -9.5,34.5 - parent: 1 - type: Transform - - uid: 4159 - components: - - flags: SessionSpecific - type: MetaData - - pos: -31.5,23.5 - parent: 1 - type: Transform - - uid: 4160 - components: - - flags: SessionSpecific - type: MetaData - - pos: 19.5,4.5 - parent: 1 - type: Transform - - uid: 4164 - components: - - flags: SessionSpecific - type: MetaData - - pos: -18.5,3.5 - parent: 1 - type: Transform - - uid: 10970 - components: - - flags: SessionSpecific - type: MetaData - - pos: -72.5,39.5 - parent: 1 - type: Transform - - uid: 14249 - components: - - flags: SessionSpecific - type: MetaData - - pos: -65.5,50.5 - parent: 1 - type: Transform -- proto: VendingMachineClothing - entities: - - uid: 4238 - components: - - flags: SessionSpecific - type: MetaData - - pos: -6.5,28.5 - parent: 1 - type: Transform -- proto: VendingMachineCola - entities: - - uid: 4167 - components: - - flags: SessionSpecific - type: MetaData - - pos: -4.5,7.5 - parent: 1 - type: Transform -- proto: VendingMachineCondiments - entities: - - uid: 13669 - components: - - flags: SessionSpecific - type: MetaData - - pos: -38.5,40.5 - parent: 1 - type: Transform -- proto: VendingMachineDetDrobe - entities: - - uid: 14279 - components: - - flags: SessionSpecific - type: MetaData - - pos: -72.5,49.5 - parent: 1 - type: Transform -- proto: VendingMachineDinnerware - entities: - - uid: 6932 - components: - - flags: SessionSpecific - type: MetaData - - pos: -33.5,47.5 - parent: 1 - type: Transform -- proto: VendingMachineDiscount - entities: - - uid: 2663 - components: - - flags: SessionSpecific - type: MetaData - - pos: -8.5,34.5 - parent: 1 - type: Transform -- proto: VendingMachineDonut - entities: - - uid: 7943 - components: - - flags: SessionSpecific - type: MetaData - - pos: -56.5,65.5 - parent: 1 - type: Transform -- proto: VendingMachineEngiDrobe - entities: - - uid: 10749 - components: - - flags: SessionSpecific - type: MetaData - - pos: -67.5,25.5 - parent: 1 - type: Transform -- proto: VendingMachineEngivend - entities: - - uid: 10007 - components: - - flags: SessionSpecific - type: MetaData - - pos: -71.5,35.5 - parent: 1 - type: Transform -- proto: VendingMachineGames - entities: - - uid: 3195 - components: - - flags: SessionSpecific - type: MetaData - - pos: -22.5,18.5 - parent: 1 - type: Transform -- proto: VendingMachineHappyHonk - entities: - - uid: 6918 - components: - - flags: SessionSpecific - type: MetaData - - pos: -34.5,47.5 - parent: 1 - type: Transform -- proto: VendingMachineHydrobe - entities: - - uid: 5738 - components: - - flags: SessionSpecific - type: MetaData - - pos: -39.5,49.5 - parent: 1 - type: Transform -- proto: VendingMachineJaniDrobe - entities: - - uid: 7072 - components: - - flags: SessionSpecific - type: MetaData - - pos: -53.5,37.5 - parent: 1 - type: Transform -- proto: VendingMachineLawDrobe - entities: - - uid: 14296 - components: - - flags: SessionSpecific - type: MetaData - - pos: -64.5,38.5 - parent: 1 - type: Transform -- proto: VendingMachineMedical - entities: - - uid: 2031 - components: - - flags: SessionSpecific - type: MetaData - - pos: 5.5,31.5 - parent: 1 - type: Transform -- proto: VendingMachineMediDrobe - entities: - - uid: 2064 - components: - - flags: SessionSpecific - type: MetaData - - pos: 10.5,23.5 - parent: 1 - type: Transform -- proto: VendingMachineNutri - entities: - - uid: 6941 - components: - - flags: SessionSpecific - type: MetaData - - pos: -42.5,49.5 - parent: 1 - type: Transform -- proto: VendingMachineRestockBooze - entities: - - uid: 13676 - components: - - pos: -27.467127,35.556686 - parent: 1 - type: Transform -- proto: VendingMachineRoboDrobe - entities: - - uid: 238 - components: - - flags: SessionSpecific - type: MetaData - - pos: 1.5,-2.5 - parent: 1 - type: Transform -- proto: VendingMachineSalvage - entities: - - uid: 15798 - components: - - flags: SessionSpecific - type: MetaData - - pos: -37.5,-11.5 - parent: 1 - type: Transform -- proto: VendingMachineSciDrobe - entities: - - uid: 242 - components: - - flags: SessionSpecific - type: MetaData - - pos: -6.5,-5.5 - parent: 1 - type: Transform -- proto: VendingMachineSec - entities: - - uid: 7966 - components: - - flags: SessionSpecific - type: MetaData - - pos: -59.5,50.5 - parent: 1 - type: Transform -- proto: VendingMachineSecDrobe - entities: - - uid: 8023 - components: - - flags: SessionSpecific - type: MetaData - - pos: -61.5,61.5 - parent: 1 - type: Transform -- proto: VendingMachineSeeds - entities: - - uid: 5734 - components: - - flags: SessionSpecific - type: MetaData - - pos: -39.5,50.5 - parent: 1 - type: Transform -- proto: VendingMachineSeedsUnlocked - entities: - - uid: 7716 - components: - - flags: SessionSpecific - type: MetaData - - pos: -59.5,83.5 - parent: 1 - type: Transform -- proto: VendingMachineSmartFridge - entities: - - uid: 1936 - components: - - flags: SessionSpecific - type: MetaData - - pos: -4.5,27.5 - parent: 1 - type: Transform -- proto: VendingMachineSustenance - entities: - - uid: 3488 - components: - - flags: SessionSpecific - type: MetaData - - pos: -61.5,83.5 - parent: 1 - type: Transform -- proto: VendingMachineTankDispenserEngineering - entities: - - uid: 9210 - components: - - flags: SessionSpecific - type: MetaData - - pos: -69.5,35.5 - parent: 1 - type: Transform -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 6070 - components: - - flags: SessionSpecific - type: MetaData - - pos: -10.5,46.5 - parent: 1 - type: Transform -- proto: VendingMachineTheater - entities: - - uid: 8968 - components: - - flags: SessionSpecific - type: MetaData - - pos: -32.5,23.5 - parent: 1 - type: Transform -- proto: VendingMachineVendomat - entities: - - uid: 5640 - components: - - flags: SessionSpecific - type: MetaData - - pos: -23.5,29.5 - parent: 1 - type: Transform - - uid: 15120 - components: - - flags: SessionSpecific - type: MetaData - - pos: -51.5,27.5 - parent: 1 - type: Transform -- proto: VendingMachineViroDrobe - entities: - - uid: 1144 - components: - - flags: SessionSpecific - type: MetaData - - pos: 11.5,20.5 - parent: 1 - type: Transform -- proto: VendingMachineWallMedical - entities: - - uid: 2034 - components: - - flags: SessionSpecific - type: MetaData - - pos: 17.5,29.5 - parent: 1 - type: Transform -- proto: VendingMachineWinter - entities: - - uid: 4217 - components: - - flags: SessionSpecific - type: MetaData - - pos: -6.5,27.5 - parent: 1 - type: Transform -- proto: VendingMachineYouTool - entities: - - uid: 5346 - components: - - flags: SessionSpecific - type: MetaData - - pos: -25.5,29.5 - parent: 1 - type: Transform - - uid: 11049 - components: - - flags: SessionSpecific - type: MetaData - - pos: -72.5,35.5 - parent: 1 - type: Transform -- proto: WallmountTelevision - entities: - - uid: 8351 - components: - - pos: -43.5,40.5 - parent: 1 - type: Transform -- proto: WallReinforced - entities: - - uid: 12 - components: - - pos: -4.5,62.5 - parent: 1 - type: Transform - - uid: 116 - components: - - pos: -4.5,58.5 - parent: 1 - type: Transform - - uid: 149 - components: - - pos: 4.5,-12.5 - parent: 1 - type: Transform - - uid: 164 - components: - - pos: -0.5,-14.5 - parent: 1 - type: Transform - - uid: 168 - components: - - pos: 6.5,-11.5 - parent: 1 - type: Transform - - uid: 172 - components: - - pos: 3.5,-7.5 - parent: 1 - type: Transform - - uid: 196 - components: - - pos: 6.5,-9.5 - parent: 1 - type: Transform - - uid: 198 - components: - - pos: 3.5,-12.5 - parent: 1 - type: Transform - - uid: 201 - components: - - pos: 6.5,-12.5 - parent: 1 - type: Transform - - uid: 202 - components: - - pos: 6.5,-10.5 - parent: 1 - type: Transform - - uid: 203 - components: - - pos: 5.5,-7.5 - parent: 1 - type: Transform - - uid: 204 - components: - - pos: 1.5,-16.5 - parent: 1 - type: Transform - - uid: 206 - components: - - pos: -0.5,-9.5 - parent: 1 - type: Transform - - uid: 207 - components: - - pos: 5.5,-12.5 - parent: 1 - type: Transform - - uid: 518 - components: - - pos: 14.5,-6.5 - parent: 1 - type: Transform - - uid: 522 - components: - - pos: -4.5,59.5 - parent: 1 - type: Transform - - uid: 674 - components: - - pos: 28.5,4.5 - parent: 1 - type: Transform - - uid: 676 - components: - - pos: 27.5,0.5 - parent: 1 - type: Transform - - uid: 678 - components: - - pos: 26.5,0.5 - parent: 1 - type: Transform - - uid: 694 - components: - - pos: 24.5,1.5 - parent: 1 - type: Transform - - uid: 703 - components: - - pos: 25.5,4.5 - parent: 1 - type: Transform - - uid: 704 - components: - - pos: 27.5,4.5 - parent: 1 - type: Transform - - uid: 705 - components: - - pos: 24.5,3.5 - parent: 1 - type: Transform - - uid: 707 - components: - - pos: 30.5,4.5 - parent: 1 - type: Transform - - uid: 948 - components: - - rot: 3.141592653589793 rad - pos: 29.5,7.5 - parent: 1 - type: Transform - - uid: 949 - components: - - rot: 3.141592653589793 rad - pos: 30.5,7.5 - parent: 1 - type: Transform - - uid: 950 - components: - - rot: 3.141592653589793 rad - pos: 31.5,7.5 - parent: 1 - type: Transform - - uid: 951 - components: - - rot: 3.141592653589793 rad - pos: 32.5,7.5 - parent: 1 - type: Transform - - uid: 952 - components: - - rot: 3.141592653589793 rad - pos: 29.5,9.5 - parent: 1 - type: Transform - - uid: 955 - components: - - rot: 3.141592653589793 rad - pos: 32.5,9.5 - parent: 1 - type: Transform - - uid: 956 - components: - - rot: 3.141592653589793 rad - pos: 29.5,11.5 - parent: 1 - type: Transform - - uid: 957 - components: - - rot: 3.141592653589793 rad - pos: 30.5,11.5 - parent: 1 - type: Transform - - uid: 958 - components: - - rot: 3.141592653589793 rad - pos: 31.5,11.5 - parent: 1 - type: Transform - - uid: 959 - components: - - rot: 3.141592653589793 rad - pos: 32.5,11.5 - parent: 1 - type: Transform - - uid: 960 - components: - - rot: 3.141592653589793 rad - pos: 29.5,15.5 - parent: 1 - type: Transform - - uid: 961 - components: - - rot: 3.141592653589793 rad - pos: 30.5,15.5 - parent: 1 - type: Transform - - uid: 962 - components: - - rot: 3.141592653589793 rad - pos: 31.5,15.5 - parent: 1 - type: Transform - - uid: 963 - components: - - rot: 3.141592653589793 rad - pos: 32.5,15.5 - parent: 1 - type: Transform - - uid: 964 - components: - - rot: 3.141592653589793 rad - pos: 29.5,17.5 - parent: 1 - type: Transform - - uid: 967 - components: - - rot: 3.141592653589793 rad - pos: 32.5,17.5 - parent: 1 - type: Transform - - uid: 968 - components: - - rot: 3.141592653589793 rad - pos: 29.5,19.5 - parent: 1 - type: Transform - - uid: 969 - components: - - rot: 3.141592653589793 rad - pos: 30.5,19.5 - parent: 1 - type: Transform - - uid: 970 - components: - - rot: 3.141592653589793 rad - pos: 31.5,19.5 - parent: 1 - type: Transform - - uid: 971 - components: - - rot: 3.141592653589793 rad - pos: 32.5,19.5 - parent: 1 - type: Transform - - uid: 1926 - components: - - pos: -55.5,48.5 - parent: 1 - type: Transform - - uid: 1927 - components: - - pos: -55.5,49.5 - parent: 1 - type: Transform - - uid: 1958 - components: - - pos: -55.5,50.5 - parent: 1 - type: Transform - - uid: 1982 - components: - - pos: -55.5,51.5 - parent: 1 - type: Transform - - uid: 1983 - components: - - pos: -55.5,52.5 - parent: 1 - type: Transform - - uid: 1984 - components: - - pos: -52.5,49.5 - parent: 1 - type: Transform - - uid: 1997 - components: - - pos: -52.5,48.5 - parent: 1 - type: Transform - - uid: 1998 - components: - - pos: -52.5,50.5 - parent: 1 - type: Transform - - uid: 1999 - components: - - pos: -52.5,51.5 - parent: 1 - type: Transform - - uid: 2000 - components: - - pos: -52.5,52.5 - parent: 1 - type: Transform - - uid: 2001 - components: - - pos: -49.5,51.5 - parent: 1 - type: Transform - - uid: 2002 - components: - - pos: -49.5,52.5 - parent: 1 - type: Transform - - uid: 2003 - components: - - pos: -49.5,48.5 - parent: 1 - type: Transform - - uid: 2004 - components: - - pos: -49.5,49.5 - parent: 1 - type: Transform - - uid: 2005 - components: - - pos: -49.5,50.5 - parent: 1 - type: Transform - - uid: 2656 - components: - - pos: -18.5,37.5 - parent: 1 - type: Transform - - uid: 2657 - components: - - pos: -18.5,38.5 - parent: 1 - type: Transform - - uid: 2658 - components: - - pos: -18.5,39.5 - parent: 1 - type: Transform - - uid: 2659 - components: - - pos: -18.5,40.5 - parent: 1 - type: Transform - - uid: 3440 - components: - - pos: -18.5,42.5 - parent: 1 - type: Transform - - uid: 3441 - components: - - pos: -18.5,41.5 - parent: 1 - type: Transform - - uid: 3443 - components: - - pos: -23.5,44.5 - parent: 1 - type: Transform - - uid: 3447 - components: - - pos: -23.5,40.5 - parent: 1 - type: Transform - - uid: 3449 - components: - - pos: -23.5,42.5 - parent: 1 - type: Transform - - uid: 3451 - components: - - pos: -23.5,48.5 - parent: 1 - type: Transform - - uid: 4200 - components: - - pos: -51.5,22.5 - parent: 1 - type: Transform - - uid: 4313 - components: - - pos: -49.5,26.5 - parent: 1 - type: Transform - - uid: 4319 - components: - - pos: -52.5,26.5 - parent: 1 - type: Transform - - uid: 4320 - components: - - pos: -53.5,26.5 - parent: 1 - type: Transform - - uid: 4321 - components: - - pos: -53.5,25.5 - parent: 1 - type: Transform - - uid: 4325 - components: - - pos: -52.5,22.5 - parent: 1 - type: Transform - - uid: 4327 - components: - - pos: -51.5,26.5 - parent: 1 - type: Transform - - uid: 4330 - components: - - pos: -49.5,22.5 - parent: 1 - type: Transform - - uid: 4331 - components: - - pos: -50.5,22.5 - parent: 1 - type: Transform - - uid: 4332 - components: - - pos: -47.5,22.5 - parent: 1 - type: Transform - - uid: 4333 - components: - - pos: -53.5,22.5 - parent: 1 - type: Transform - - uid: 4542 - components: - - pos: -48.5,22.5 - parent: 1 - type: Transform - - uid: 4572 - components: - - pos: -46.5,26.5 - parent: 1 - type: Transform - - uid: 4573 - components: - - pos: -47.5,26.5 - parent: 1 - type: Transform - - uid: 4574 - components: - - pos: -48.5,26.5 - parent: 1 - type: Transform - - uid: 4583 - components: - - pos: -46.5,22.5 - parent: 1 - type: Transform - - uid: 4584 - components: - - pos: -53.5,24.5 - parent: 1 - type: Transform - - uid: 4585 - components: - - pos: -53.5,23.5 - parent: 1 - type: Transform - - uid: 4744 - components: - - rot: 3.141592653589793 rad - pos: -59.5,-12.5 - parent: 1 - type: Transform - - uid: 4792 - components: - - pos: -72.5,2.5 - parent: 1 - type: Transform - - uid: 4793 - components: - - pos: -74.5,2.5 - parent: 1 - type: Transform - - uid: 4799 - components: - - pos: -59.5,3.5 - parent: 1 - type: Transform - - uid: 4809 - components: - - pos: -67.5,2.5 - parent: 1 - type: Transform - - uid: 4810 - components: - - pos: -65.5,2.5 - parent: 1 - type: Transform - - uid: 4843 - components: - - pos: -65.5,3.5 - parent: 1 - type: Transform - - uid: 4849 - components: - - pos: -74.5,3.5 - parent: 1 - type: Transform - - uid: 4856 - components: - - pos: -72.5,3.5 - parent: 1 - type: Transform - - uid: 4862 - components: - - rot: 3.141592653589793 rad - pos: -75.5,-13.5 - parent: 1 - type: Transform - - uid: 4873 - components: - - pos: -67.5,3.5 - parent: 1 - type: Transform - - uid: 4883 - components: - - rot: 3.141592653589793 rad - pos: -73.5,-15.5 - parent: 1 - type: Transform - - uid: 4885 - components: - - rot: 3.141592653589793 rad - pos: -71.5,-12.5 - parent: 1 - type: Transform - - uid: 4886 - components: - - rot: 3.141592653589793 rad - pos: -71.5,-13.5 - parent: 1 - type: Transform - - uid: 4887 - components: - - rot: 3.141592653589793 rad - pos: -67.5,-12.5 - parent: 1 - type: Transform - - uid: 4888 - components: - - rot: 3.141592653589793 rad - pos: -67.5,-13.5 - parent: 1 - type: Transform - - uid: 4896 - components: - - rot: 3.141592653589793 rad - pos: -75.5,-12.5 - parent: 1 - type: Transform - - uid: 4897 - components: - - rot: 3.141592653589793 rad - pos: -65.5,-15.5 - parent: 1 - type: Transform - - uid: 4901 - components: - - rot: 3.141592653589793 rad - pos: -63.5,-14.5 - parent: 1 - type: Transform - - uid: 4907 - components: - - pos: -59.5,-8.5 - parent: 1 - type: Transform - - uid: 4924 - components: - - rot: 3.141592653589793 rad - pos: -63.5,-12.5 - parent: 1 - type: Transform - - uid: 4927 - components: - - rot: 3.141592653589793 rad - pos: -63.5,-13.5 - parent: 1 - type: Transform - - uid: 4928 - components: - - rot: 3.141592653589793 rad - pos: -67.5,-15.5 - parent: 1 - type: Transform - - uid: 4929 - components: - - rot: 3.141592653589793 rad - pos: -65.5,-12.5 - parent: 1 - type: Transform - - uid: 4933 - components: - - rot: 3.141592653589793 rad - pos: -75.5,-14.5 - parent: 1 - type: Transform - - uid: 4936 - components: - - rot: 3.141592653589793 rad - pos: -75.5,-15.5 - parent: 1 - type: Transform - - uid: 4939 - components: - - rot: 3.141592653589793 rad - pos: -73.5,-12.5 - parent: 1 - type: Transform - - uid: 4940 - components: - - pos: -76.5,-8.5 - parent: 1 - type: Transform - - uid: 4941 - components: - - pos: -76.5,-12.5 - parent: 1 - type: Transform - - uid: 4942 - components: - - pos: -76.5,-9.5 - parent: 1 - type: Transform - - uid: 4945 - components: - - pos: -76.5,-11.5 - parent: 1 - type: Transform - - uid: 4948 - components: - - pos: -77.5,-11.5 - parent: 1 - type: Transform - - uid: 4949 - components: - - pos: -78.5,-11.5 - parent: 1 - type: Transform - - uid: 4950 - components: - - pos: -74.5,-8.5 - parent: 1 - type: Transform - - uid: 4953 - components: - - pos: -72.5,-7.5 - parent: 1 - type: Transform - - uid: 4954 - components: - - pos: -67.5,-8.5 - parent: 1 - type: Transform - - uid: 4955 - components: - - pos: -74.5,-7.5 - parent: 1 - type: Transform - - uid: 4956 - components: - - pos: -72.5,-8.5 - parent: 1 - type: Transform - - uid: 4959 - components: - - pos: -65.5,-8.5 - parent: 1 - type: Transform - - uid: 4960 - components: - - pos: -65.5,-7.5 - parent: 1 - type: Transform - - uid: 4962 - components: - - pos: -77.5,-9.5 - parent: 1 - type: Transform - - uid: 4963 - components: - - pos: -67.5,-7.5 - parent: 1 - type: Transform - - uid: 4965 - components: - - pos: -78.5,-9.5 - parent: 1 - type: Transform - - uid: 4967 - components: - - rot: 3.141592653589793 rad - pos: -63.5,-15.5 - parent: 1 - type: Transform - - uid: 4969 - components: - - rot: 3.141592653589793 rad - pos: -71.5,-15.5 - parent: 1 - type: Transform - - uid: 4970 - components: - - rot: 3.141592653589793 rad - pos: -71.5,-14.5 - parent: 1 - type: Transform - - uid: 4979 - components: - - rot: 3.141592653589793 rad - pos: -67.5,-14.5 - parent: 1 - type: Transform - - uid: 5072 - components: - - rot: -1.5707963267948966 rad - pos: -76.5,7.5 - parent: 1 - type: Transform - - uid: 5073 - components: - - pos: -76.5,3.5 - parent: 1 - type: Transform - - uid: 5472 - components: - - rot: 3.141592653589793 rad - pos: -49.5,69.5 - parent: 1 - type: Transform - - uid: 5473 - components: - - pos: -64.5,49.5 - parent: 1 - type: Transform - - uid: 5476 - components: - - rot: 3.141592653589793 rad - pos: -53.5,69.5 - parent: 1 - type: Transform - - uid: 5478 - components: - - pos: -64.5,51.5 - parent: 1 - type: Transform - - uid: 5686 - components: - - pos: -56.5,79.5 - parent: 1 - type: Transform - - uid: 5750 - components: - - pos: -45.5,56.5 - parent: 1 - type: Transform - - uid: 5754 - components: - - rot: 3.141592653589793 rad - pos: -45.5,68.5 - parent: 1 - type: Transform - - uid: 5776 - components: - - pos: -64.5,50.5 - parent: 1 - type: Transform - - uid: 5777 - components: - - pos: -58.5,56.5 - parent: 1 - type: Transform - - uid: 5785 - components: - - pos: -58.5,49.5 - parent: 1 - type: Transform - - uid: 5816 - components: - - pos: -23.5,47.5 - parent: 1 - type: Transform - - uid: 5817 - components: - - pos: -23.5,37.5 - parent: 1 - type: Transform - - uid: 5818 - components: - - pos: -23.5,38.5 - parent: 1 - type: Transform - - uid: 5821 - components: - - pos: -19.5,43.5 - parent: 1 - type: Transform - - uid: 5824 - components: - - pos: -19.5,49.5 - parent: 1 - type: Transform - - uid: 5826 - components: - - pos: -21.5,49.5 - parent: 1 - type: Transform - - uid: 5829 - components: - - pos: -22.5,43.5 - parent: 1 - type: Transform - - uid: 5834 - components: - - pos: -18.5,44.5 - parent: 1 - type: Transform - - uid: 5902 - components: - - pos: -22.5,49.5 - parent: 1 - type: Transform - - uid: 5904 - components: - - pos: -15.5,52.5 - parent: 1 - type: Transform - - uid: 5905 - components: - - pos: -18.5,52.5 - parent: 1 - type: Transform - - uid: 5947 - components: - - pos: -17.5,52.5 - parent: 1 - type: Transform - - uid: 6349 - components: - - rot: 3.141592653589793 rad - pos: -4.5,57.5 - parent: 1 - type: Transform - - uid: 6350 - components: - - rot: 3.141592653589793 rad - pos: -5.5,57.5 - parent: 1 - type: Transform - - uid: 6359 - components: - - pos: -6.5,57.5 - parent: 1 - type: Transform - - uid: 6360 - components: - - rot: 3.141592653589793 rad - pos: -6.5,58.5 - parent: 1 - type: Transform - - uid: 6361 - components: - - rot: 3.141592653589793 rad - pos: -8.5,58.5 - parent: 1 - type: Transform - - uid: 6362 - components: - - rot: 3.141592653589793 rad - pos: -9.5,58.5 - parent: 1 - type: Transform - - uid: 6363 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,58.5 - parent: 1 - type: Transform - - uid: 6368 - components: - - rot: 3.141592653589793 rad - pos: -19.5,53.5 - parent: 1 - type: Transform - - uid: 6369 - components: - - rot: 3.141592653589793 rad - pos: -19.5,55.5 - parent: 1 - type: Transform - - uid: 6370 - components: - - rot: 3.141592653589793 rad - pos: -19.5,56.5 - parent: 1 - type: Transform - - uid: 6371 - components: - - rot: 3.141592653589793 rad - pos: -19.5,57.5 - parent: 1 - type: Transform - - uid: 6374 - components: - - rot: 3.141592653589793 rad - pos: -21.5,58.5 - parent: 1 - type: Transform - - uid: 6375 - components: - - rot: 3.141592653589793 rad - pos: -22.5,58.5 - parent: 1 - type: Transform - - uid: 6376 - components: - - rot: 3.141592653589793 rad - pos: -23.5,58.5 - parent: 1 - type: Transform - - uid: 6378 - components: - - rot: 3.141592653589793 rad - pos: -24.5,57.5 - parent: 1 - type: Transform - - uid: 6379 - components: - - rot: 3.141592653589793 rad - pos: -24.5,56.5 - parent: 1 - type: Transform - - uid: 6380 - components: - - rot: 3.141592653589793 rad - pos: -24.5,55.5 - parent: 1 - type: Transform - - uid: 6381 - components: - - rot: 3.141592653589793 rad - pos: -24.5,54.5 - parent: 1 - type: Transform - - uid: 6382 - components: - - rot: 3.141592653589793 rad - pos: -23.5,52.5 - parent: 1 - type: Transform - - uid: 6383 - components: - - rot: 3.141592653589793 rad - pos: -22.5,52.5 - parent: 1 - type: Transform - - uid: 6384 - components: - - rot: 3.141592653589793 rad - pos: -21.5,52.5 - parent: 1 - type: Transform - - uid: 6385 - components: - - rot: 3.141592653589793 rad - pos: -20.5,52.5 - parent: 1 - type: Transform - - uid: 6386 - components: - - rot: 3.141592653589793 rad - pos: -24.5,53.5 - parent: 1 - type: Transform - - uid: 6387 - components: - - rot: 3.141592653589793 rad - pos: -24.5,52.5 - parent: 1 - type: Transform - - uid: 6390 - components: - - rot: 3.141592653589793 rad - pos: -14.5,58.5 - parent: 1 - type: Transform - - uid: 6391 - components: - - rot: 3.141592653589793 rad - pos: -18.5,58.5 - parent: 1 - type: Transform - - uid: 6429 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,62.5 - parent: 1 - type: Transform - - uid: 6430 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,61.5 - parent: 1 - type: Transform - - uid: 6431 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,60.5 - parent: 1 - type: Transform - - uid: 6432 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,59.5 - parent: 1 - type: Transform - - uid: 6433 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,63.5 - parent: 1 - type: Transform - - uid: 6434 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,63.5 - parent: 1 - type: Transform - - uid: 6452 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,63.5 - parent: 1 - type: Transform - - uid: 6453 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,63.5 - parent: 1 - type: Transform - - uid: 6457 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,59.5 - parent: 1 - type: Transform - - uid: 6494 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,61.5 - parent: 1 - type: Transform - - uid: 6495 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,61.5 - parent: 1 - type: Transform - - uid: 6654 - components: - - pos: -21.5,43.5 - parent: 1 - type: Transform - - uid: 6805 - components: - - pos: -62.5,57.5 - parent: 1 - type: Transform - - uid: 6806 - components: - - pos: -58.5,50.5 - parent: 1 - type: Transform - - uid: 6813 - components: - - pos: -61.5,56.5 - parent: 1 - type: Transform - - uid: 6814 - components: - - pos: -58.5,51.5 - parent: 1 - type: Transform - - uid: 6815 - components: - - pos: -60.5,56.5 - parent: 1 - type: Transform - - uid: 6817 - components: - - pos: -58.5,52.5 - parent: 1 - type: Transform - - uid: 6819 - components: - - pos: -59.5,56.5 - parent: 1 - type: Transform - - uid: 6858 - components: - - pos: -59.5,49.5 - parent: 1 - type: Transform - - uid: 6859 - components: - - pos: -60.5,49.5 - parent: 1 - type: Transform - - uid: 6873 - components: - - pos: -61.5,49.5 - parent: 1 - type: Transform - - uid: 6874 - components: - - pos: -62.5,49.5 - parent: 1 - type: Transform - - uid: 6875 - components: - - pos: -63.5,49.5 - parent: 1 - type: Transform - - uid: 6876 - components: - - pos: -58.5,48.5 - parent: 1 - type: Transform - - uid: 6877 - components: - - pos: -62.5,56.5 - parent: 1 - type: Transform - - uid: 6878 - components: - - pos: -62.5,58.5 - parent: 1 - type: Transform - - uid: 6882 - components: - - pos: -62.5,59.5 - parent: 1 - type: Transform - - uid: 6944 - components: - - pos: -58.5,58.5 - parent: 1 - type: Transform - - uid: 6952 - components: - - pos: -61.5,59.5 - parent: 1 - type: Transform - - uid: 6969 - components: - - pos: -57.5,59.5 - parent: 1 - type: Transform - - uid: 6973 - components: - - pos: -51.5,59.5 - parent: 1 - type: Transform - - uid: 6974 - components: - - pos: -53.5,66.5 - parent: 1 - type: Transform - - uid: 6975 - components: - - pos: -45.5,58.5 - parent: 1 - type: Transform - - uid: 6976 - components: - - pos: -45.5,57.5 - parent: 1 - type: Transform - - uid: 6977 - components: - - pos: -49.5,56.5 - parent: 1 - type: Transform - - uid: 6978 - components: - - pos: -49.5,57.5 - parent: 1 - type: Transform - - uid: 6980 - components: - - pos: -49.5,58.5 - parent: 1 - type: Transform - - uid: 6981 - components: - - pos: -49.5,59.5 - parent: 1 - type: Transform - - uid: 6998 - components: - - pos: -60.5,59.5 - parent: 1 - type: Transform - - uid: 6999 - components: - - pos: -59.5,59.5 - parent: 1 - type: Transform - - uid: 7000 - components: - - pos: -58.5,59.5 - parent: 1 - type: Transform - - uid: 7001 - components: - - pos: -64.5,56.5 - parent: 1 - type: Transform - - uid: 7002 - components: - - pos: -63.5,56.5 - parent: 1 - type: Transform - - uid: 7003 - components: - - pos: -53.5,59.5 - parent: 1 - type: Transform - - uid: 7007 - components: - - pos: -45.5,59.5 - parent: 1 - type: Transform - - uid: 7008 - components: - - pos: -42.5,66.5 - parent: 1 - type: Transform - - uid: 7009 - components: - - pos: -43.5,66.5 - parent: 1 - type: Transform - - uid: 7011 - components: - - pos: -45.5,63.5 - parent: 1 - type: Transform - - uid: 7015 - components: - - pos: -49.5,63.5 - parent: 1 - type: Transform - - uid: 7016 - components: - - pos: -41.5,59.5 - parent: 1 - type: Transform - - uid: 7017 - components: - - pos: -39.5,59.5 - parent: 1 - type: Transform - - uid: 7018 - components: - - pos: -40.5,60.5 - parent: 1 - type: Transform - - uid: 7019 - components: - - pos: -39.5,61.5 - parent: 1 - type: Transform - - uid: 7020 - components: - - pos: -39.5,62.5 - parent: 1 - type: Transform - - uid: 7021 - components: - - pos: -40.5,59.5 - parent: 1 - type: Transform - - uid: 7022 - components: - - pos: -39.5,60.5 - parent: 1 - type: Transform - - uid: 7023 - components: - - pos: -43.5,60.5 - parent: 1 - type: Transform - - uid: 7024 - components: - - pos: -42.5,59.5 - parent: 1 - type: Transform - - uid: 7025 - components: - - pos: -45.5,66.5 - parent: 1 - type: Transform - - uid: 7026 - components: - - pos: -41.5,60.5 - parent: 1 - type: Transform - - uid: 7078 - components: - - pos: -39.5,63.5 - parent: 1 - type: Transform - - uid: 7079 - components: - - pos: -39.5,64.5 - parent: 1 - type: Transform - - uid: 7080 - components: - - pos: -40.5,62.5 - parent: 1 - type: Transform - - uid: 7081 - components: - - pos: -40.5,63.5 - parent: 1 - type: Transform - - uid: 7082 - components: - - pos: -42.5,60.5 - parent: 1 - type: Transform - - uid: 7083 - components: - - pos: -41.5,66.5 - parent: 1 - type: Transform - - uid: 7084 - components: - - pos: -41.5,67.5 - parent: 1 - type: Transform - - uid: 7086 - components: - - pos: -40.5,67.5 - parent: 1 - type: Transform - - uid: 7103 - components: - - pos: -40.5,64.5 - parent: 1 - type: Transform - - uid: 7104 - components: - - pos: -40.5,65.5 - parent: 1 - type: Transform - - uid: 7105 - components: - - pos: -40.5,66.5 - parent: 1 - type: Transform - - uid: 7106 - components: - - pos: -42.5,67.5 - parent: 1 - type: Transform - - uid: 7108 - components: - - pos: -43.5,67.5 - parent: 1 - type: Transform - - uid: 7109 - components: - - pos: -44.5,66.5 - parent: 1 - type: Transform - - uid: 7110 - components: - - pos: -44.5,67.5 - parent: 1 - type: Transform - - uid: 7111 - components: - - pos: -44.5,59.5 - parent: 1 - type: Transform - - uid: 7112 - components: - - pos: -49.5,60.5 - parent: 1 - type: Transform - - uid: 7114 - components: - - pos: -39.5,65.5 - parent: 1 - type: Transform - - uid: 7115 - components: - - pos: -39.5,66.5 - parent: 1 - type: Transform - - uid: 7116 - components: - - pos: -39.5,67.5 - parent: 1 - type: Transform - - uid: 7117 - components: - - pos: -40.5,61.5 - parent: 1 - type: Transform - - uid: 7118 - components: - - pos: -44.5,60.5 - parent: 1 - type: Transform - - uid: 7119 - components: - - pos: -43.5,59.5 - parent: 1 - type: Transform - - uid: 7120 - components: - - pos: -47.5,66.5 - parent: 1 - type: Transform - - uid: 7121 - components: - - pos: -48.5,66.5 - parent: 1 - type: Transform - - uid: 7123 - components: - - pos: -46.5,66.5 - parent: 1 - type: Transform - - uid: 7124 - components: - - pos: -49.5,66.5 - parent: 1 - type: Transform - - uid: 7125 - components: - - pos: -49.5,62.5 - parent: 1 - type: Transform - - uid: 7132 - components: - - pos: -59.5,48.5 - parent: 1 - type: Transform - - uid: 7142 - components: - - pos: -62.5,62.5 - parent: 1 - type: Transform - - uid: 7143 - components: - - pos: -62.5,63.5 - parent: 1 - type: Transform - - uid: 7144 - components: - - pos: -62.5,64.5 - parent: 1 - type: Transform - - uid: 7145 - components: - - pos: -62.5,65.5 - parent: 1 - type: Transform - - uid: 7146 - components: - - pos: -62.5,66.5 - parent: 1 - type: Transform - - uid: 7147 - components: - - pos: -53.5,62.5 - parent: 1 - type: Transform - - uid: 7157 - components: - - pos: -57.5,65.5 - parent: 1 - type: Transform - - uid: 7158 - components: - - pos: -57.5,64.5 - parent: 1 - type: Transform - - uid: 7159 - components: - - pos: -57.5,63.5 - parent: 1 - type: Transform - - uid: 7160 - components: - - pos: -61.5,62.5 - parent: 1 - type: Transform - - uid: 7161 - components: - - pos: -60.5,62.5 - parent: 1 - type: Transform - - uid: 7169 - components: - - pos: -57.5,66.5 - parent: 1 - type: Transform - - uid: 7176 - components: - - pos: -57.5,62.5 - parent: 1 - type: Transform - - uid: 7181 - components: - - rot: 3.141592653589793 rad - pos: -53.5,70.5 - parent: 1 - type: Transform - - uid: 7182 - components: - - rot: 3.141592653589793 rad - pos: -48.5,69.5 - parent: 1 - type: Transform - - uid: 7183 - components: - - rot: 3.141592653589793 rad - pos: -47.5,69.5 - parent: 1 - type: Transform - - uid: 7184 - components: - - rot: 3.141592653589793 rad - pos: -46.5,69.5 - parent: 1 - type: Transform - - uid: 7185 - components: - - rot: 3.141592653589793 rad - pos: -45.5,69.5 - parent: 1 - type: Transform - - uid: 7190 - components: - - rot: 3.141592653589793 rad - pos: -49.5,77.5 - parent: 1 - type: Transform - - uid: 7191 - components: - - pos: -51.5,66.5 - parent: 1 - type: Transform - - uid: 7194 - components: - - rot: 3.141592653589793 rad - pos: -49.5,70.5 - parent: 1 - type: Transform - - uid: 7195 - components: - - rot: 3.141592653589793 rad - pos: -51.5,70.5 - parent: 1 - type: Transform - - uid: 7197 - components: - - rot: 3.141592653589793 rad - pos: -53.5,68.5 - parent: 1 - type: Transform - - uid: 7198 - components: - - rot: 3.141592653589793 rad - pos: -51.5,77.5 - parent: 1 - type: Transform - - uid: 7200 - components: - - rot: 3.141592653589793 rad - pos: -53.5,67.5 - parent: 1 - type: Transform - - uid: 7201 - components: - - rot: 3.141592653589793 rad - pos: -53.5,77.5 - parent: 1 - type: Transform - - uid: 7224 - components: - - pos: -56.5,78.5 - parent: 1 - type: Transform - - uid: 7226 - components: - - pos: -56.5,80.5 - parent: 1 - type: Transform - - uid: 7230 - components: - - pos: -49.5,81.5 - parent: 1 - type: Transform - - uid: 7231 - components: - - pos: -49.5,80.5 - parent: 1 - type: Transform - - uid: 7232 - components: - - pos: -49.5,79.5 - parent: 1 - type: Transform - - uid: 7233 - components: - - pos: -49.5,78.5 - parent: 1 - type: Transform - - uid: 7234 - components: - - pos: -56.5,81.5 - parent: 1 - type: Transform - - uid: 7235 - components: - - pos: -53.5,81.5 - parent: 1 - type: Transform - - uid: 7236 - components: - - pos: -51.5,81.5 - parent: 1 - type: Transform - - uid: 7243 - components: - - pos: -55.5,81.5 - parent: 1 - type: Transform - - uid: 7245 - components: - - pos: -49.5,82.5 - parent: 1 - type: Transform - - uid: 7246 - components: - - pos: -49.5,90.5 - parent: 1 - type: Transform - - uid: 7247 - components: - - pos: -49.5,89.5 - parent: 1 - type: Transform - - uid: 7248 - components: - - pos: -49.5,91.5 - parent: 1 - type: Transform - - uid: 7261 - components: - - pos: -50.5,91.5 - parent: 1 - type: Transform - - uid: 7263 - components: - - pos: -52.5,91.5 - parent: 1 - type: Transform - - uid: 7264 - components: - - pos: -53.5,91.5 - parent: 1 - type: Transform - - uid: 7265 - components: - - pos: -53.5,90.5 - parent: 1 - type: Transform - - uid: 7266 - components: - - pos: -56.5,87.5 - parent: 1 - type: Transform - - uid: 7267 - components: - - pos: -56.5,85.5 - parent: 1 - type: Transform - - uid: 7268 - components: - - pos: -55.5,85.5 - parent: 1 - type: Transform - - uid: 7269 - components: - - pos: -53.5,84.5 - parent: 1 - type: Transform - - uid: 7270 - components: - - pos: -53.5,82.5 - parent: 1 - type: Transform - - uid: 7272 - components: - - pos: -53.5,88.5 - parent: 1 - type: Transform - - uid: 7273 - components: - - pos: -54.5,87.5 - parent: 1 - type: Transform - - uid: 7274 - components: - - pos: -53.5,87.5 - parent: 1 - type: Transform - - uid: 7277 - components: - - pos: -54.5,85.5 - parent: 1 - type: Transform - - uid: 7278 - components: - - pos: -55.5,87.5 - parent: 1 - type: Transform - - uid: 7279 - components: - - pos: -53.5,85.5 - parent: 1 - type: Transform - - uid: 7280 - components: - - pos: -56.5,82.5 - parent: 1 - type: Transform - - uid: 7281 - components: - - pos: -56.5,84.5 - parent: 1 - type: Transform - - uid: 7283 - components: - - pos: -56.5,88.5 - parent: 1 - type: Transform - - uid: 7286 - components: - - pos: -56.5,90.5 - parent: 1 - type: Transform - - uid: 7287 - components: - - pos: -56.5,91.5 - parent: 1 - type: Transform - - uid: 7289 - components: - - pos: -54.5,91.5 - parent: 1 - type: Transform - - uid: 7290 - components: - - pos: -62.5,90.5 - parent: 1 - type: Transform - - uid: 7291 - components: - - pos: -62.5,89.5 - parent: 1 - type: Transform - - uid: 7293 - components: - - pos: -62.5,86.5 - parent: 1 - type: Transform - - uid: 7294 - components: - - pos: -63.5,86.5 - parent: 1 - type: Transform - - uid: 7299 - components: - - pos: -62.5,82.5 - parent: 1 - type: Transform - - uid: 7300 - components: - - pos: -62.5,87.5 - parent: 1 - type: Transform - - uid: 7314 - components: - - pos: -51.5,78.5 - parent: 1 - type: Transform - - uid: 7317 - components: - - pos: -63.5,82.5 - parent: 1 - type: Transform - - uid: 7327 - components: - - pos: -57.5,82.5 - parent: 1 - type: Transform - - uid: 7328 - components: - - pos: -57.5,90.5 - parent: 1 - type: Transform - - uid: 7332 - components: - - pos: -55.5,78.5 - parent: 1 - type: Transform - - uid: 7338 - components: - - pos: -54.5,78.5 - parent: 1 - type: Transform - - uid: 7339 - components: - - pos: -53.5,78.5 - parent: 1 - type: Transform - - uid: 7362 - components: - - pos: -45.5,67.5 - parent: 1 - type: Transform - - uid: 7646 - components: - - pos: -44.5,63.5 - parent: 1 - type: Transform - - uid: 7648 - components: - - pos: -44.5,61.5 - parent: 1 - type: Transform - - uid: 7718 - components: - - pos: -61.5,90.5 - parent: 1 - type: Transform - - uid: 7898 - components: - - pos: -51.5,69.5 - parent: 1 - type: Transform - - uid: 7976 - components: - - pos: -66.5,52.5 - parent: 1 - type: Transform - - uid: 7978 - components: - - pos: -66.5,51.5 - parent: 1 - type: Transform - - uid: 8012 - components: - - pos: -65.5,51.5 - parent: 1 - type: Transform - - uid: 8014 - components: - - pos: -66.5,53.5 - parent: 1 - type: Transform - - uid: 8015 - components: - - pos: -66.5,54.5 - parent: 1 - type: Transform - - uid: 8016 - components: - - pos: -66.5,55.5 - parent: 1 - type: Transform - - uid: 8017 - components: - - pos: -66.5,56.5 - parent: 1 - type: Transform - - uid: 8018 - components: - - pos: -65.5,56.5 - parent: 1 - type: Transform - - uid: 9334 - components: - - rot: 1.5707963267948966 rad - pos: -65.5,29.5 - parent: 1 - type: Transform - - uid: 10718 - components: - - rot: -1.5707963267948966 rad - pos: -84.5,49.5 - parent: 1 - type: Transform - - uid: 10750 - components: - - rot: -1.5707963267948966 rad - pos: -80.5,49.5 - parent: 1 - type: Transform - - uid: 10751 - components: - - rot: -1.5707963267948966 rad - pos: -80.5,51.5 - parent: 1 - type: Transform - - uid: 10752 - components: - - rot: -1.5707963267948966 rad - pos: -81.5,51.5 - parent: 1 - type: Transform - - uid: 10754 - components: - - rot: -1.5707963267948966 rad - pos: -83.5,51.5 - parent: 1 - type: Transform - - uid: 10755 - components: - - rot: -1.5707963267948966 rad - pos: -84.5,51.5 - parent: 1 - type: Transform - - uid: 10763 - components: - - rot: -1.5707963267948966 rad - pos: -87.5,46.5 - parent: 1 - type: Transform - - uid: 10764 - components: - - rot: -1.5707963267948966 rad - pos: -88.5,46.5 - parent: 1 - type: Transform - - uid: 10765 - components: - - rot: -1.5707963267948966 rad - pos: -89.5,46.5 - parent: 1 - type: Transform - - uid: 10766 - components: - - rot: -1.5707963267948966 rad - pos: -90.5,46.5 - parent: 1 - type: Transform - - uid: 10767 - components: - - rot: -1.5707963267948966 rad - pos: -91.5,46.5 - parent: 1 - type: Transform - - uid: 10768 - components: - - rot: -1.5707963267948966 rad - pos: -91.5,45.5 - parent: 1 - type: Transform - - uid: 10769 - components: - - rot: -1.5707963267948966 rad - pos: -91.5,44.5 - parent: 1 - type: Transform - - uid: 10770 - components: - - rot: -1.5707963267948966 rad - pos: -91.5,43.5 - parent: 1 - type: Transform - - uid: 10771 - components: - - rot: -1.5707963267948966 rad - pos: -91.5,42.5 - parent: 1 - type: Transform - - uid: 10772 - components: - - rot: -1.5707963267948966 rad - pos: -91.5,41.5 - parent: 1 - type: Transform - - uid: 10773 - components: - - rot: -1.5707963267948966 rad - pos: -91.5,40.5 - parent: 1 - type: Transform - - uid: 10774 - components: - - rot: -1.5707963267948966 rad - pos: -91.5,39.5 - parent: 1 - type: Transform - - uid: 10775 - components: - - rot: -1.5707963267948966 rad - pos: -91.5,38.5 - parent: 1 - type: Transform - - uid: 10776 - components: - - rot: -1.5707963267948966 rad - pos: -91.5,37.5 - parent: 1 - type: Transform - - uid: 10777 - components: - - rot: -1.5707963267948966 rad - pos: -91.5,36.5 - parent: 1 - type: Transform - - uid: 10778 - components: - - rot: -1.5707963267948966 rad - pos: -91.5,35.5 - parent: 1 - type: Transform - - uid: 10779 - components: - - rot: -1.5707963267948966 rad - pos: -91.5,34.5 - parent: 1 - type: Transform - - uid: 10780 - components: - - rot: -1.5707963267948966 rad - pos: -90.5,34.5 - parent: 1 - type: Transform - - uid: 10781 - components: - - rot: -1.5707963267948966 rad - pos: -89.5,34.5 - parent: 1 - type: Transform - - uid: 10782 - components: - - rot: -1.5707963267948966 rad - pos: -88.5,34.5 - parent: 1 - type: Transform - - uid: 10783 - components: - - rot: -1.5707963267948966 rad - pos: -87.5,34.5 - parent: 1 - type: Transform - - uid: 10784 - components: - - rot: -1.5707963267948966 rad - pos: -90.5,36.5 - parent: 1 - type: Transform - - uid: 10785 - components: - - rot: -1.5707963267948966 rad - pos: -89.5,36.5 - parent: 1 - type: Transform - - uid: 10786 - components: - - rot: -1.5707963267948966 rad - pos: -88.5,36.5 - parent: 1 - type: Transform - - uid: 10787 - components: - - rot: -1.5707963267948966 rad - pos: -87.5,36.5 - parent: 1 - type: Transform - - uid: 10788 - components: - - rot: -1.5707963267948966 rad - pos: -90.5,38.5 - parent: 1 - type: Transform - - uid: 10789 - components: - - rot: -1.5707963267948966 rad - pos: -89.5,38.5 - parent: 1 - type: Transform - - uid: 10790 - components: - - rot: -1.5707963267948966 rad - pos: -88.5,38.5 - parent: 1 - type: Transform - - uid: 10791 - components: - - rot: -1.5707963267948966 rad - pos: -87.5,38.5 - parent: 1 - type: Transform - - uid: 10792 - components: - - rot: -1.5707963267948966 rad - pos: -90.5,40.5 - parent: 1 - type: Transform - - uid: 10793 - components: - - rot: -1.5707963267948966 rad - pos: -89.5,40.5 - parent: 1 - type: Transform - - uid: 10794 - components: - - rot: -1.5707963267948966 rad - pos: -88.5,40.5 - parent: 1 - type: Transform - - uid: 10795 - components: - - rot: -1.5707963267948966 rad - pos: -87.5,40.5 - parent: 1 - type: Transform - - uid: 10815 - components: - - rot: -1.5707963267948966 rad - pos: -90.5,42.5 - parent: 1 - type: Transform - - uid: 10816 - components: - - rot: -1.5707963267948966 rad - pos: -89.5,42.5 - parent: 1 - type: Transform - - uid: 10817 - components: - - rot: -1.5707963267948966 rad - pos: -88.5,42.5 - parent: 1 - type: Transform - - uid: 10818 - components: - - rot: -1.5707963267948966 rad - pos: -87.5,42.5 - parent: 1 - type: Transform - - uid: 10819 - components: - - rot: -1.5707963267948966 rad - pos: -90.5,44.5 - parent: 1 - type: Transform - - uid: 10820 - components: - - rot: -1.5707963267948966 rad - pos: -89.5,44.5 - parent: 1 - type: Transform - - uid: 10821 - components: - - rot: -1.5707963267948966 rad - pos: -88.5,44.5 - parent: 1 - type: Transform - - uid: 10822 - components: - - rot: -1.5707963267948966 rad - pos: -87.5,44.5 - parent: 1 - type: Transform -- proto: WallSolid - entities: - - uid: 2 - components: - - pos: -4.5,-14.5 - parent: 1 - type: Transform - - uid: 3 - components: - - pos: -6.5,-16.5 - parent: 1 - type: Transform - - uid: 20 - components: - - pos: -12.5,-0.5 - parent: 1 - type: Transform - - uid: 21 - components: - - pos: -10.5,0.5 - parent: 1 - type: Transform - - uid: 22 - components: - - pos: -10.5,2.5 - parent: 1 - type: Transform - - uid: 23 - components: - - pos: -13.5,3.5 - parent: 1 - type: Transform - - uid: 24 - components: - - pos: -14.5,1.5 - parent: 1 - type: Transform - - uid: 26 - components: - - pos: -7.5,-3.5 - parent: 1 - type: Transform - - uid: 27 - components: - - pos: -10.5,3.5 - parent: 1 - type: Transform - - uid: 31 - components: - - pos: -14.5,-0.5 - parent: 1 - type: Transform - - uid: 34 - components: - - pos: -14.5,3.5 - parent: 1 - type: Transform - - uid: 35 - components: - - pos: -9.5,3.5 - parent: 1 - type: Transform - - uid: 43 - components: - - pos: 0.5,-0.5 - parent: 1 - type: Transform - - uid: 45 - components: - - pos: 0.5,-2.5 - parent: 1 - type: Transform - - uid: 47 - components: - - pos: 3.5,3.5 - parent: 1 - type: Transform - - uid: 48 - components: - - pos: 3.5,2.5 - parent: 1 - type: Transform - - uid: 50 - components: - - pos: 3.5,0.5 - parent: 1 - type: Transform - - uid: 53 - components: - - pos: 3.5,-2.5 - parent: 1 - type: Transform - - uid: 55 - components: - - pos: 2.5,-3.5 - parent: 1 - type: Transform - - uid: 58 - components: - - pos: -8.5,-6.5 - parent: 1 - type: Transform - - uid: 60 - components: - - pos: -9.5,-6.5 - parent: 1 - type: Transform - - uid: 73 - components: - - pos: -10.5,-10.5 - parent: 1 - type: Transform - - uid: 76 - components: - - pos: -6.5,-6.5 - parent: 1 - type: Transform - - uid: 81 - components: - - pos: 30.5,-1.5 - parent: 1 - type: Transform - - uid: 82 - components: - - pos: 30.5,-2.5 - parent: 1 - type: Transform - - uid: 85 - components: - - pos: 0.5,-6.5 - parent: 1 - type: Transform - - uid: 86 - components: - - pos: -5.5,-6.5 - parent: 1 - type: Transform - - uid: 88 - components: - - pos: -3.5,-6.5 - parent: 1 - type: Transform - - uid: 113 - components: - - pos: -18.5,-12.5 - parent: 1 - type: Transform - - uid: 117 - components: - - pos: -39.5,53.5 - parent: 1 - type: Transform - - uid: 124 - components: - - pos: -10.5,-11.5 - parent: 1 - type: Transform - - uid: 125 - components: - - pos: -8.5,-13.5 - parent: 1 - type: Transform - - uid: 175 - components: - - pos: 11.5,-8.5 - parent: 1 - type: Transform - - uid: 176 - components: - - pos: 6.5,-8.5 - parent: 1 - type: Transform - - uid: 178 - components: - - pos: 2.5,-6.5 - parent: 1 - type: Transform - - uid: 183 - components: - - pos: 9.5,-6.5 - parent: 1 - type: Transform - - uid: 190 - components: - - pos: -0.5,-15.5 - parent: 1 - type: Transform - - uid: 192 - components: - - pos: -0.5,-11.5 - parent: 1 - type: Transform - - uid: 205 - components: - - pos: 0.5,-7.5 - parent: 1 - type: Transform - - uid: 209 - components: - - pos: 6.5,-6.5 - parent: 1 - type: Transform - - uid: 214 - components: - - pos: -18.5,-14.5 - parent: 1 - type: Transform - - uid: 462 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 - parent: 1 - type: Transform - - uid: 463 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-0.5 - parent: 1 - type: Transform - - uid: 465 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 1 - type: Transform - - uid: 466 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-3.5 - parent: 1 - type: Transform - - uid: 468 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,1.5 - parent: 1 - type: Transform - - uid: 469 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,2.5 - parent: 1 - type: Transform - - uid: 472 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,2.5 - parent: 1 - type: Transform - - uid: 478 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-3.5 - parent: 1 - type: Transform - - uid: 482 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,3.5 - parent: 1 - type: Transform - - uid: 483 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,3.5 - parent: 1 - type: Transform - - uid: 485 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,1.5 - parent: 1 - type: Transform - - uid: 486 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-0.5 - parent: 1 - type: Transform - - uid: 487 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-1.5 - parent: 1 - type: Transform - - uid: 491 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-4.5 - parent: 1 - type: Transform - - uid: 492 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-3.5 - parent: 1 - type: Transform - - uid: 496 - components: - - pos: 10.5,-6.5 - parent: 1 - type: Transform - - uid: 502 - components: - - pos: 10.5,-7.5 - parent: 1 - type: Transform - - uid: 512 - components: - - pos: 15.5,-3.5 - parent: 1 - type: Transform - - uid: 525 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,17.5 - parent: 1 - type: Transform - - uid: 528 - components: - - pos: 13.5,-6.5 - parent: 1 - type: Transform - - uid: 531 - components: - - pos: 12.5,-7.5 - parent: 1 - type: Transform - - uid: 575 - components: - - pos: 10.5,-8.5 - parent: 1 - type: Transform - - uid: 584 - components: - - pos: -4.5,3.5 - parent: 1 - type: Transform - - uid: 610 - components: - - rot: 3.141592653589793 rad - pos: -15.5,16.5 - parent: 1 - type: Transform - - uid: 613 - components: - - pos: -4.5,2.5 - parent: 1 - type: Transform - - uid: 614 - components: - - pos: -16.5,16.5 - parent: 1 - type: Transform - - uid: 619 - components: - - pos: -4.5,-0.5 - parent: 1 - type: Transform - - uid: 632 - components: - - pos: 12.5,0.5 - parent: 1 - type: Transform - - uid: 634 - components: - - pos: 12.5,2.5 - parent: 1 - type: Transform - - uid: 635 - components: - - pos: 12.5,3.5 - parent: 1 - type: Transform - - uid: 636 - components: - - pos: 14.5,4.5 - parent: 1 - type: Transform - - uid: 638 - components: - - pos: 12.5,4.5 - parent: 1 - type: Transform - - uid: 639 - components: - - pos: 15.5,4.5 - parent: 1 - type: Transform - - uid: 641 - components: - - pos: 18.5,3.5 - parent: 1 - type: Transform - - uid: 642 - components: - - pos: 18.5,2.5 - parent: 1 - type: Transform - - uid: 643 - components: - - pos: 22.5,-2.5 - parent: 1 - type: Transform - - uid: 644 - components: - - pos: 18.5,0.5 - parent: 1 - type: Transform - - uid: 646 - components: - - pos: 19.5,3.5 - parent: 1 - type: Transform - - uid: 647 - components: - - pos: 18.5,-2.5 - parent: 1 - type: Transform - - uid: 649 - components: - - pos: 17.5,-3.5 - parent: 1 - type: Transform - - uid: 651 - components: - - pos: 21.5,3.5 - parent: 1 - type: Transform - - uid: 654 - components: - - pos: 21.5,0.5 - parent: 1 - type: Transform - - uid: 656 - components: - - pos: 22.5,-0.5 - parent: 1 - type: Transform - - uid: 659 - components: - - pos: 20.5,-3.5 - parent: 1 - type: Transform - - uid: 660 - components: - - pos: 26.5,-6.5 - parent: 1 - type: Transform - - uid: 662 - components: - - pos: 22.5,-3.5 - parent: 1 - type: Transform - - uid: 664 - components: - - pos: 23.5,-6.5 - parent: 1 - type: Transform - - uid: 665 - components: - - pos: -3.5,3.5 - parent: 1 - type: Transform - - uid: 666 - components: - - pos: 26.5,-7.5 - parent: 1 - type: Transform - - uid: 667 - components: - - pos: -2.5,3.5 - parent: 1 - type: Transform - - uid: 668 - components: - - pos: -1.5,3.5 - parent: 1 - type: Transform - - uid: 669 - components: - - pos: -0.5,3.5 - parent: 1 - type: Transform - - uid: 670 - components: - - pos: -0.5,2.5 - parent: 1 - type: Transform - - uid: 671 - components: - - pos: -0.5,1.5 - parent: 1 - type: Transform - - uid: 672 - components: - - pos: -0.5,0.5 - parent: 1 - type: Transform - - uid: 677 - components: - - pos: 24.5,0.5 - parent: 1 - type: Transform - - uid: 680 - components: - - pos: 25.5,-1.5 - parent: 1 - type: Transform - - uid: 682 - components: - - pos: 25.5,-3.5 - parent: 1 - type: Transform - - uid: 685 - components: - - pos: 28.5,-3.5 - parent: 1 - type: Transform - - uid: 688 - components: - - pos: 27.5,-6.5 - parent: 1 - type: Transform - - uid: 695 - components: - - pos: 25.5,0.5 - parent: 1 - type: Transform - - uid: 697 - components: - - pos: 29.5,0.5 - parent: 1 - type: Transform - - uid: 698 - components: - - pos: -1.5,-0.5 - parent: 1 - type: Transform - - uid: 700 - components: - - pos: 18.5,4.5 - parent: 1 - type: Transform - - uid: 701 - components: - - pos: 23.5,3.5 - parent: 1 - type: Transform - - uid: 702 - components: - - pos: 24.5,4.5 - parent: 1 - type: Transform - - uid: 706 - components: - - pos: 29.5,4.5 - parent: 1 - type: Transform - - uid: 714 - components: - - pos: -4.5,1.5 - parent: 1 - type: Transform - - uid: 715 - components: - - pos: -10.5,-6.5 - parent: 1 - type: Transform - - uid: 716 - components: - - pos: -11.5,-6.5 - parent: 1 - type: Transform - - uid: 722 - components: - - pos: -10.5,-7.5 - parent: 1 - type: Transform - - uid: 723 - components: - - pos: -13.5,-6.5 - parent: 1 - type: Transform - - uid: 724 - components: - - pos: -11.5,-9.5 - parent: 1 - type: Transform - - uid: 725 - components: - - pos: -12.5,-9.5 - parent: 1 - type: Transform - - uid: 726 - components: - - pos: -13.5,-9.5 - parent: 1 - type: Transform - - uid: 727 - components: - - pos: -14.5,-9.5 - parent: 1 - type: Transform - - uid: 881 - components: - - pos: 15.5,14.5 - parent: 1 - type: Transform - - uid: 985 - components: - - pos: -14.5,-8.5 - parent: 1 - type: Transform - - uid: 987 - components: - - pos: -14.5,-7.5 - parent: 1 - type: Transform - - uid: 989 - components: - - pos: -14.5,-6.5 - parent: 1 - type: Transform - - uid: 994 - components: - - pos: -10.5,-15.5 - parent: 1 - type: Transform - - uid: 996 - components: - - pos: -12.5,-15.5 - parent: 1 - type: Transform - - uid: 997 - components: - - pos: -11.5,-15.5 - parent: 1 - type: Transform - - uid: 998 - components: - - rot: 3.141592653589793 rad - pos: 24.5,20.5 - parent: 1 - type: Transform - - uid: 1001 - components: - - pos: 20.5,13.5 - parent: 1 - type: Transform - - uid: 1002 - components: - - pos: 20.5,14.5 - parent: 1 - type: Transform - - uid: 1004 - components: - - pos: -10.5,-14.5 - parent: 1 - type: Transform - - uid: 1005 - components: - - pos: 17.5,14.5 - parent: 1 - type: Transform - - uid: 1006 - components: - - pos: 16.5,14.5 - parent: 1 - type: Transform - - uid: 1007 - components: - - rot: 3.141592653589793 rad - pos: 24.5,10.5 - parent: 1 - type: Transform - - uid: 1008 - components: - - rot: 3.141592653589793 rad - pos: 24.5,9.5 - parent: 1 - type: Transform - - uid: 1010 - components: - - rot: 3.141592653589793 rad - pos: 24.5,7.5 - parent: 1 - type: Transform - - uid: 1011 - components: - - pos: -10.5,-9.5 - parent: 1 - type: Transform - - uid: 1012 - components: - - pos: -6.5,-17.5 - parent: 1 - type: Transform - - uid: 1013 - components: - - pos: -4.5,-16.5 - parent: 1 - type: Transform - - uid: 1030 - components: - - pos: -4.5,-15.5 - parent: 1 - type: Transform - - uid: 1035 - components: - - pos: 21.5,10.5 - parent: 1 - type: Transform - - uid: 1036 - components: - - pos: 20.5,10.5 - parent: 1 - type: Transform - - uid: 1038 - components: - - pos: 20.5,8.5 - parent: 1 - type: Transform - - uid: 1039 - components: - - pos: 20.5,7.5 - parent: 1 - type: Transform - - uid: 1041 - components: - - pos: 23.5,7.5 - parent: 1 - type: Transform - - uid: 1043 - components: - - pos: 15.5,10.5 - parent: 1 - type: Transform - - uid: 1045 - components: - - pos: 1.5,41.5 - parent: 1 - type: Transform - - uid: 1046 - components: - - pos: -4.5,-17.5 - parent: 1 - type: Transform - - uid: 1047 - components: - - pos: 15.5,8.5 - parent: 1 - type: Transform - - uid: 1050 - components: - - pos: 21.5,15.5 - parent: 1 - type: Transform - - uid: 1057 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,18.5 - parent: 1 - type: Transform - - uid: 1060 - components: - - pos: 6.5,7.5 - parent: 1 - type: Transform - - uid: 1062 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,23.5 - parent: 1 - type: Transform - - uid: 1071 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-6.5 - parent: 1 - type: Transform - - uid: 1074 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-5.5 - parent: 1 - type: Transform - - uid: 1075 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,3.5 - parent: 1 - type: Transform - - uid: 1076 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-3.5 - parent: 1 - type: Transform - - uid: 1078 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-1.5 - parent: 1 - type: Transform - - uid: 1081 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-0.5 - parent: 1 - type: Transform - - uid: 1083 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-0.5 - parent: 1 - type: Transform - - uid: 1084 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,2.5 - parent: 1 - type: Transform - - uid: 1087 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,3.5 - parent: 1 - type: Transform - - uid: 1093 - components: - - pos: -15.5,-9.5 - parent: 1 - type: Transform - - uid: 1095 - components: - - pos: -18.5,-11.5 - parent: 1 - type: Transform - - uid: 1097 - components: - - pos: -19.5,-9.5 - parent: 1 - type: Transform - - uid: 1098 - components: - - pos: -6.5,-15.5 - parent: 1 - type: Transform - - uid: 1099 - components: - - pos: -21.5,-9.5 - parent: 1 - type: Transform - - uid: 1100 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,2.5 - parent: 1 - type: Transform - - uid: 1103 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-0.5 - parent: 1 - type: Transform - - uid: 1104 - components: - - pos: -22.5,-1.5 - parent: 1 - type: Transform - - uid: 1108 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-2.5 - parent: 1 - type: Transform - - uid: 1111 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-2.5 - parent: 1 - type: Transform - - uid: 1113 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-3.5 - parent: 1 - type: Transform - - uid: 1115 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-5.5 - parent: 1 - type: Transform - - uid: 1119 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-0.5 - parent: 1 - type: Transform - - uid: 1121 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-2.5 - parent: 1 - type: Transform - - uid: 1123 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-0.5 - parent: 1 - type: Transform - - uid: 1124 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,0.5 - parent: 1 - type: Transform - - uid: 1125 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,1.5 - parent: 1 - type: Transform - - uid: 1127 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,3.5 - parent: 1 - type: Transform - - uid: 1129 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,3.5 - parent: 1 - type: Transform - - uid: 1131 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,3.5 - parent: 1 - type: Transform - - uid: 1132 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,1.5 - parent: 1 - type: Transform - - uid: 1135 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,7.5 - parent: 1 - type: Transform - - uid: 1136 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,7.5 - parent: 1 - type: Transform - - uid: 1141 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,7.5 - parent: 1 - type: Transform - - uid: 1152 - components: - - pos: 19.5,24.5 - parent: 1 - type: Transform - - uid: 1154 - components: - - pos: 2.5,35.5 - parent: 1 - type: Transform - - uid: 1160 - components: - - pos: 9.5,21.5 - parent: 1 - type: Transform - - uid: 1171 - components: - - pos: 12.5,23.5 - parent: 1 - type: Transform - - uid: 1177 - components: - - pos: 13.5,24.5 - parent: 1 - type: Transform - - uid: 1180 - components: - - pos: 11.5,10.5 - parent: 1 - type: Transform - - uid: 1182 - components: - - pos: 12.5,-6.5 - parent: 1 - type: Transform - - uid: 1183 - components: - - pos: 14.5,-12.5 - parent: 1 - type: Transform - - uid: 1184 - components: - - pos: 13.5,-12.5 - parent: 1 - type: Transform - - uid: 1185 - components: - - pos: 16.5,-12.5 - parent: 1 - type: Transform - - uid: 1186 - components: - - pos: 12.5,-9.5 - parent: 1 - type: Transform - - uid: 1187 - components: - - pos: 12.5,-11.5 - parent: 1 - type: Transform - - uid: 1188 - components: - - pos: 12.5,-10.5 - parent: 1 - type: Transform - - uid: 1194 - components: - - pos: 15.5,-12.5 - parent: 1 - type: Transform - - uid: 1195 - components: - - pos: 17.5,-6.5 - parent: 1 - type: Transform - - uid: 1196 - components: - - pos: 17.5,-12.5 - parent: 1 - type: Transform - - uid: 1197 - components: - - pos: 21.5,28.5 - parent: 1 - type: Transform - - uid: 1198 - components: - - pos: 20.5,-9.5 - parent: 1 - type: Transform - - uid: 1199 - components: - - pos: 13.5,34.5 - parent: 1 - type: Transform - - uid: 1201 - components: - - pos: 19.5,33.5 - parent: 1 - type: Transform - - uid: 1202 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,17.5 - parent: 1 - type: Transform - - uid: 1204 - components: - - pos: 3.5,7.5 - parent: 1 - type: Transform - - uid: 1205 - components: - - pos: -1.5,13.5 - parent: 1 - type: Transform - - uid: 1206 - components: - - pos: 4.5,41.5 - parent: 1 - type: Transform - - uid: 1209 - components: - - pos: 18.5,-12.5 - parent: 1 - type: Transform - - uid: 1210 - components: - - pos: -0.5,13.5 - parent: 1 - type: Transform - - uid: 1212 - components: - - pos: 16.5,22.5 - parent: 1 - type: Transform - - uid: 1214 - components: - - pos: 5.5,20.5 - parent: 1 - type: Transform - - uid: 1215 - components: - - pos: 19.5,-12.5 - parent: 1 - type: Transform - - uid: 1216 - components: - - pos: 20.5,-12.5 - parent: 1 - type: Transform - - uid: 1217 - components: - - pos: 20.5,-10.5 - parent: 1 - type: Transform - - uid: 1218 - components: - - pos: 18.5,-9.5 - parent: 1 - type: Transform - - uid: 1219 - components: - - pos: 21.5,-9.5 - parent: 1 - type: Transform - - uid: 1220 - components: - - pos: 27.5,-9.5 - parent: 1 - type: Transform - - uid: 1221 - components: - - pos: 30.5,-6.5 - parent: 1 - type: Transform - - uid: 1222 - components: - - pos: 22.5,-9.5 - parent: 1 - type: Transform - - uid: 1224 - components: - - pos: 5.5,10.5 - parent: 1 - type: Transform - - uid: 1226 - components: - - pos: 4.5,13.5 - parent: 1 - type: Transform - - uid: 1227 - components: - - pos: 5.5,12.5 - parent: 1 - type: Transform - - uid: 1231 - components: - - pos: 6.5,10.5 - parent: 1 - type: Transform - - uid: 1232 - components: - - pos: 23.5,-9.5 - parent: 1 - type: Transform - - uid: 1235 - components: - - pos: 9.5,10.5 - parent: 1 - type: Transform - - uid: 1238 - components: - - pos: 10.5,32.5 - parent: 1 - type: Transform - - uid: 1239 - components: - - pos: 5.5,15.5 - parent: 1 - type: Transform - - uid: 1243 - components: - - pos: 2.5,18.5 - parent: 1 - type: Transform - - uid: 1244 - components: - - pos: 24.5,-9.5 - parent: 1 - type: Transform - - uid: 1245 - components: - - pos: 25.5,-9.5 - parent: 1 - type: Transform - - uid: 1251 - components: - - pos: 26.5,-9.5 - parent: 1 - type: Transform - - uid: 1252 - components: - - pos: 30.5,-3.5 - parent: 1 - type: Transform - - uid: 1253 - components: - - pos: 30.5,-0.5 - parent: 1 - type: Transform - - uid: 1254 - components: - - pos: 30.5,0.5 - parent: 1 - type: Transform - - uid: 1255 - components: - - pos: 30.5,-4.5 - parent: 1 - type: Transform - - uid: 1256 - components: - - pos: 29.5,-9.5 - parent: 1 - type: Transform - - uid: 1257 - components: - - pos: 30.5,-9.5 - parent: 1 - type: Transform - - uid: 1258 - components: - - pos: 30.5,-8.5 - parent: 1 - type: Transform - - uid: 1259 - components: - - pos: 30.5,-7.5 - parent: 1 - type: Transform - - uid: 1260 - components: - - pos: 30.5,-5.5 - parent: 1 - type: Transform - - uid: 1261 - components: - - pos: 29.5,22.5 - parent: 1 - type: Transform - - uid: 1262 - components: - - pos: 29.5,27.5 - parent: 1 - type: Transform - - uid: 1267 - components: - - pos: 29.5,23.5 - parent: 1 - type: Transform - - uid: 1268 - components: - - pos: 24.5,25.5 - parent: 1 - type: Transform - - uid: 1273 - components: - - pos: 24.5,24.5 - parent: 1 - type: Transform - - uid: 1274 - components: - - pos: 24.5,23.5 - parent: 1 - type: Transform - - uid: 1275 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,38.5 - parent: 1 - type: Transform - - uid: 1278 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,31.5 - parent: 1 - type: Transform - - uid: 1280 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,35.5 - parent: 1 - type: Transform - - uid: 1282 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,35.5 - parent: 1 - type: Transform - - uid: 1285 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,35.5 - parent: 1 - type: Transform - - uid: 1288 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,38.5 - parent: 1 - type: Transform - - uid: 1292 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,38.5 - parent: 1 - type: Transform - - uid: 1294 - components: - - pos: 5.5,34.5 - parent: 1 - type: Transform - - uid: 1295 - components: - - pos: 5.5,32.5 - parent: 1 - type: Transform - - uid: 1299 - components: - - pos: 17.5,31.5 - parent: 1 - type: Transform - - uid: 1302 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,33.5 - parent: 1 - type: Transform - - uid: 1306 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,32.5 - parent: 1 - type: Transform - - uid: 1309 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,29.5 - parent: 1 - type: Transform - - uid: 1310 - components: - - pos: 24.5,22.5 - parent: 1 - type: Transform - - uid: 1312 - components: - - pos: 5.5,37.5 - parent: 1 - type: Transform - - uid: 1326 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,38.5 - parent: 1 - type: Transform - - uid: 1334 - components: - - pos: 5.5,27.5 - parent: 1 - type: Transform - - uid: 1337 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,26.5 - parent: 1 - type: Transform - - uid: 1339 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,26.5 - parent: 1 - type: Transform - - uid: 1349 - components: - - pos: 0.5,41.5 - parent: 1 - type: Transform - - uid: 1358 - components: - - pos: -2.5,15.5 - parent: 1 - type: Transform - - uid: 1359 - components: - - pos: 12.5,20.5 - parent: 1 - type: Transform - - uid: 1362 - components: - - pos: 6.5,18.5 - parent: 1 - type: Transform - - uid: 1364 - components: - - pos: 12.5,18.5 - parent: 1 - type: Transform - - uid: 1366 - components: - - pos: 12.5,13.5 - parent: 1 - type: Transform - - uid: 1368 - components: - - pos: 8.5,32.5 - parent: 1 - type: Transform - - uid: 1374 - components: - - pos: -1.5,38.5 - parent: 1 - type: Transform - - uid: 1376 - components: - - pos: -1.5,36.5 - parent: 1 - type: Transform - - uid: 1378 - components: - - pos: -1.5,41.5 - parent: 1 - type: Transform - - uid: 1380 - components: - - pos: -1.5,43.5 - parent: 1 - type: Transform - - uid: 1384 - components: - - pos: 1.5,44.5 - parent: 1 - type: Transform - - uid: 1385 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,45.5 - parent: 1 - type: Transform - - uid: 1386 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,45.5 - parent: 1 - type: Transform - - uid: 1388 - components: - - pos: 5.5,44.5 - parent: 1 - type: Transform - - uid: 1390 - components: - - pos: 5.5,42.5 - parent: 1 - type: Transform - - uid: 1393 - components: - - pos: 16.5,24.5 - parent: 1 - type: Transform - - uid: 1395 - components: - - pos: 24.5,26.5 - parent: 1 - type: Transform - - uid: 1396 - components: - - pos: 27.5,29.5 - parent: 1 - type: Transform - - uid: 1398 - components: - - pos: 6.5,21.5 - parent: 1 - type: Transform - - uid: 1399 - components: - - pos: 29.5,26.5 - parent: 1 - type: Transform - - uid: 1400 - components: - - pos: 17.5,29.5 - parent: 1 - type: Transform - - uid: 1408 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,45.5 - parent: 1 - type: Transform - - uid: 1409 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,45.5 - parent: 1 - type: Transform - - uid: 1420 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,44.5 - parent: 1 - type: Transform - - uid: 1426 - components: - - pos: -3.5,10.5 - parent: 1 - type: Transform - - uid: 1427 - components: - - pos: -3.5,9.5 - parent: 1 - type: Transform - - uid: 1428 - components: - - pos: -3.5,8.5 - parent: 1 - type: Transform - - uid: 1429 - components: - - pos: -2.5,7.5 - parent: 1 - type: Transform - - uid: 1430 - components: - - pos: -3.5,7.5 - parent: 1 - type: Transform - - uid: 1431 - components: - - pos: -1.5,7.5 - parent: 1 - type: Transform - - uid: 1432 - components: - - pos: -3.5,11.5 - parent: 1 - type: Transform - - uid: 1433 - components: - - pos: 13.5,33.5 - parent: 1 - type: Transform - - uid: 1434 - components: - - pos: 17.5,28.5 - parent: 1 - type: Transform - - uid: 1435 - components: - - pos: 17.5,30.5 - parent: 1 - type: Transform - - uid: 1436 - components: - - pos: 16.5,33.5 - parent: 1 - type: Transform - - uid: 1441 - components: - - pos: -2.5,18.5 - parent: 1 - type: Transform - - uid: 1442 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,7.5 - parent: 1 - type: Transform - - uid: 1443 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,16.5 - parent: 1 - type: Transform - - uid: 1444 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,16.5 - parent: 1 - type: Transform - - uid: 1449 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,14.5 - parent: 1 - type: Transform - - uid: 1450 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,13.5 - parent: 1 - type: Transform - - uid: 1453 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,10.5 - parent: 1 - type: Transform - - uid: 1455 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,8.5 - parent: 1 - type: Transform - - uid: 1456 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,7.5 - parent: 1 - type: Transform - - uid: 1457 - components: - - pos: -1.5,18.5 - parent: 1 - type: Transform - - uid: 1458 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,7.5 - parent: 1 - type: Transform - - uid: 1460 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,10.5 - parent: 1 - type: Transform - - uid: 1461 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,10.5 - parent: 1 - type: Transform - - uid: 1462 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,10.5 - parent: 1 - type: Transform - - uid: 1464 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,13.5 - parent: 1 - type: Transform - - uid: 1465 - components: - - pos: -0.5,18.5 - parent: 1 - type: Transform - - uid: 1467 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,13.5 - parent: 1 - type: Transform - - uid: 1468 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,20.5 - parent: 1 - type: Transform - - uid: 1471 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,19.5 - parent: 1 - type: Transform - - uid: 1472 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,19.5 - parent: 1 - type: Transform - - uid: 1475 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,23.5 - parent: 1 - type: Transform - - uid: 1477 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,23.5 - parent: 1 - type: Transform - - uid: 1478 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,23.5 - parent: 1 - type: Transform - - uid: 1480 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,21.5 - parent: 1 - type: Transform - - uid: 1482 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,19.5 - parent: 1 - type: Transform - - uid: 1484 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,17.5 - parent: 1 - type: Transform - - uid: 1485 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,7.5 - parent: 1 - type: Transform - - uid: 1492 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,10.5 - parent: 1 - type: Transform - - uid: 1493 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,11.5 - parent: 1 - type: Transform - - uid: 1494 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,11.5 - parent: 1 - type: Transform - - uid: 1496 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,11.5 - parent: 1 - type: Transform - - uid: 1497 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,11.5 - parent: 1 - type: Transform - - uid: 1503 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,14.5 - parent: 1 - type: Transform - - uid: 1511 - components: - - pos: -14.5,18.5 - parent: 1 - type: Transform - - uid: 1560 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,8.5 - parent: 1 - type: Transform - - uid: 1589 - components: - - pos: 0.5,18.5 - parent: 1 - type: Transform - - uid: 1590 - components: - - pos: -4.5,18.5 - parent: 1 - type: Transform - - uid: 1595 - components: - - pos: 0.5,19.5 - parent: 1 - type: Transform - - uid: 1624 - components: - - pos: 0.5,20.5 - parent: 1 - type: Transform - - uid: 1626 - components: - - pos: 11.5,21.5 - parent: 1 - type: Transform - - uid: 1628 - components: - - pos: 7.5,27.5 - parent: 1 - type: Transform - - uid: 1661 - components: - - pos: 0.5,21.5 - parent: 1 - type: Transform - - uid: 1670 - components: - - pos: 1.5,21.5 - parent: 1 - type: Transform - - uid: 1671 - components: - - pos: 1.5,11.5 - parent: 1 - type: Transform - - uid: 1673 - components: - - pos: 2.5,7.5 - parent: 1 - type: Transform - - uid: 1751 - components: - - pos: -5.5,20.5 - parent: 1 - type: Transform - - uid: 1844 - components: - - pos: -5.5,19.5 - parent: 1 - type: Transform - - uid: 1845 - components: - - pos: -5.5,18.5 - parent: 1 - type: Transform - - uid: 1857 - components: - - pos: -5.5,26.5 - parent: 1 - type: Transform - - uid: 1858 - components: - - pos: -5.5,25.5 - parent: 1 - type: Transform - - uid: 1875 - components: - - pos: -5.5,24.5 - parent: 1 - type: Transform - - uid: 1879 - components: - - pos: -5.5,23.5 - parent: 1 - type: Transform - - uid: 1880 - components: - - pos: -5.5,22.5 - parent: 1 - type: Transform - - uid: 1882 - components: - - pos: -5.5,21.5 - parent: 1 - type: Transform - - uid: 1883 - components: - - pos: 19.5,27.5 - parent: 1 - type: Transform - - uid: 1884 - components: - - pos: 20.5,27.5 - parent: 1 - type: Transform - - uid: 1888 - components: - - pos: 1.5,27.5 - parent: 1 - type: Transform - - uid: 1893 - components: - - pos: 10.5,27.5 - parent: 1 - type: Transform - - uid: 1895 - components: - - pos: 2.5,13.5 - parent: 1 - type: Transform - - uid: 1899 - components: - - pos: 8.5,20.5 - parent: 1 - type: Transform - - uid: 1929 - components: - - pos: 1.5,28.5 - parent: 1 - type: Transform - - uid: 1930 - components: - - pos: -3.5,28.5 - parent: 1 - type: Transform - - uid: 1931 - components: - - pos: -4.5,28.5 - parent: 1 - type: Transform - - uid: 1932 - components: - - pos: 13.5,32.5 - parent: 1 - type: Transform - - uid: 1933 - components: - - pos: 13.5,31.5 - parent: 1 - type: Transform - - uid: 1956 - components: - - pos: 13.5,30.5 - parent: 1 - type: Transform - - uid: 1957 - components: - - pos: 17.5,33.5 - parent: 1 - type: Transform - - uid: 1965 - components: - - pos: 13.5,27.5 - parent: 1 - type: Transform - - uid: 1966 - components: - - pos: 16.5,27.5 - parent: 1 - type: Transform - - uid: 2013 - components: - - pos: -30.5,53.5 - parent: 1 - type: Transform - - uid: 2014 - components: - - pos: 24.5,36.5 - parent: 1 - type: Transform - - uid: 2032 - components: - - pos: 5.5,18.5 - parent: 1 - type: Transform - - uid: 2045 - components: - - pos: 24.5,35.5 - parent: 1 - type: Transform - - uid: 2047 - components: - - pos: 24.5,34.5 - parent: 1 - type: Transform - - uid: 2048 - components: - - pos: 24.5,33.5 - parent: 1 - type: Transform - - uid: 2049 - components: - - pos: 24.5,32.5 - parent: 1 - type: Transform - - uid: 2056 - components: - - pos: 24.5,31.5 - parent: 1 - type: Transform - - uid: 2057 - components: - - pos: 24.5,30.5 - parent: 1 - type: Transform - - uid: 2058 - components: - - pos: 15.5,21.5 - parent: 1 - type: Transform - - uid: 2061 - components: - - pos: 24.5,29.5 - parent: 1 - type: Transform - - uid: 2068 - components: - - pos: 5.5,17.5 - parent: 1 - type: Transform - - uid: 2069 - components: - - pos: 24.5,28.5 - parent: 1 - type: Transform - - uid: 2104 - components: - - pos: 24.5,27.5 - parent: 1 - type: Transform - - uid: 2184 - components: - - pos: 20.5,44.5 - parent: 1 - type: Transform - - uid: 2235 - components: - - pos: 18.5,21.5 - parent: 1 - type: Transform - - uid: 2236 - components: - - pos: 19.5,21.5 - parent: 1 - type: Transform - - uid: 2250 - components: - - pos: 24.5,37.5 - parent: 1 - type: Transform - - uid: 2318 - components: - - pos: -16.5,-15.5 - parent: 1 - type: Transform - - uid: 2332 - components: - - pos: 20.5,-11.5 - parent: 1 - type: Transform - - uid: 2366 - components: - - pos: 13.5,-11.5 - parent: 1 - type: Transform - - uid: 2377 - components: - - pos: 17.5,-8.5 - parent: 1 - type: Transform - - uid: 2646 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,35.5 - parent: 1 - type: Transform - - uid: 2647 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,35.5 - parent: 1 - type: Transform - - uid: 2651 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,34.5 - parent: 1 - type: Transform - - uid: 2652 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,35.5 - parent: 1 - type: Transform - - uid: 2653 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,34.5 - parent: 1 - type: Transform - - uid: 2654 - components: - - pos: -18.5,34.5 - parent: 1 - type: Transform - - uid: 2655 - components: - - pos: 9.5,53.5 - parent: 1 - type: Transform - - uid: 2668 - components: - - pos: -18.5,-15.5 - parent: 1 - type: Transform - - uid: 2669 - components: - - pos: 15.5,33.5 - parent: 1 - type: Transform - - uid: 2732 - components: - - pos: -15.5,18.5 - parent: 1 - type: Transform - - uid: 2733 - components: - - pos: -14.5,17.5 - parent: 1 - type: Transform - - uid: 2749 - components: - - pos: 14.5,33.5 - parent: 1 - type: Transform - - uid: 2755 - components: - - pos: 17.5,27.5 - parent: 1 - type: Transform - - uid: 2763 - components: - - pos: 15.5,27.5 - parent: 1 - type: Transform - - uid: 2764 - components: - - pos: 14.5,27.5 - parent: 1 - type: Transform - - uid: 2772 - components: - - pos: -2.5,11.5 - parent: 1 - type: Transform - - uid: 2795 - components: - - pos: -1.5,11.5 - parent: 1 - type: Transform - - uid: 2797 - components: - - pos: 2.5,9.5 - parent: 1 - type: Transform - - uid: 2810 - components: - - pos: 0.5,11.5 - parent: 1 - type: Transform - - uid: 2815 - components: - - pos: 2.5,10.5 - parent: 1 - type: Transform - - uid: 2817 - components: - - pos: 2.5,11.5 - parent: 1 - type: Transform - - uid: 2818 - components: - - pos: 2.5,8.5 - parent: 1 - type: Transform - - uid: 2823 - components: - - pos: -0.5,11.5 - parent: 1 - type: Transform - - uid: 2827 - components: - - pos: -46.5,-14.5 - parent: 1 - type: Transform - - uid: 2829 - components: - - rot: 3.141592653589793 rad - pos: -20.5,30.5 - parent: 1 - type: Transform - - uid: 2835 - components: - - pos: -18.5,36.5 - parent: 1 - type: Transform - - uid: 2836 - components: - - pos: -14.5,22.5 - parent: 1 - type: Transform - - uid: 2838 - components: - - pos: -14.5,25.5 - parent: 1 - type: Transform - - uid: 2844 - components: - - pos: -14.5,30.5 - parent: 1 - type: Transform - - uid: 2849 - components: - - pos: -18.5,30.5 - parent: 1 - type: Transform - - uid: 2850 - components: - - pos: -14.5,21.5 - parent: 1 - type: Transform - - uid: 2893 - components: - - pos: -18.5,22.5 - parent: 1 - type: Transform - - uid: 2960 - components: - - pos: -18.5,28.5 - parent: 1 - type: Transform - - uid: 2961 - components: - - pos: -15.5,21.5 - parent: 1 - type: Transform - - uid: 2975 - components: - - pos: -18.5,21.5 - parent: 1 - type: Transform - - uid: 2976 - components: - - pos: 28.5,29.5 - parent: 1 - type: Transform - - uid: 2977 - components: - - pos: 29.5,29.5 - parent: 1 - type: Transform - - uid: 3026 - components: - - pos: -20.5,8.5 - parent: 1 - type: Transform - - uid: 3030 - components: - - pos: -21.5,10.5 - parent: 1 - type: Transform - - uid: 3031 - components: - - pos: -21.5,11.5 - parent: 1 - type: Transform - - uid: 3033 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,13.5 - parent: 1 - type: Transform - - uid: 3035 - components: - - pos: -21.5,15.5 - parent: 1 - type: Transform - - uid: 3037 - components: - - pos: -21.5,17.5 - parent: 1 - type: Transform - - uid: 3043 - components: - - pos: -21.5,19.5 - parent: 1 - type: Transform - - uid: 3048 - components: - - pos: -27.5,26.5 - parent: 1 - type: Transform - - uid: 3050 - components: - - pos: -23.5,25.5 - parent: 1 - type: Transform - - uid: 3051 - components: - - pos: -21.5,27.5 - parent: 1 - type: Transform - - uid: 3053 - components: - - pos: -22.5,7.5 - parent: 1 - type: Transform - - uid: 3054 - components: - - pos: -24.5,7.5 - parent: 1 - type: Transform - - uid: 3056 - components: - - pos: -29.5,7.5 - parent: 1 - type: Transform - - uid: 3059 - components: - - pos: -29.5,10.5 - parent: 1 - type: Transform - - uid: 3063 - components: - - pos: -29.5,14.5 - parent: 1 - type: Transform - - uid: 3065 - components: - - pos: -29.5,16.5 - parent: 1 - type: Transform - - uid: 3068 - components: - - pos: -25.5,14.5 - parent: 1 - type: Transform - - uid: 3069 - components: - - pos: -28.5,19.5 - parent: 1 - type: Transform - - uid: 3072 - components: - - pos: -28.5,14.5 - parent: 1 - type: Transform - - uid: 3074 - components: - - pos: -22.5,19.5 - parent: 1 - type: Transform - - uid: 3076 - components: - - pos: -24.5,19.5 - parent: 1 - type: Transform - - uid: 3077 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,19.5 - parent: 1 - type: Transform - - uid: 3079 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,18.5 - parent: 1 - type: Transform - - uid: 3081 - components: - - pos: -22.5,14.5 - parent: 1 - type: Transform - - uid: 3108 - components: - - pos: -31.5,11.5 - parent: 1 - type: Transform - - uid: 3110 - components: - - pos: -27.5,30.5 - parent: 1 - type: Transform - - uid: 3113 - components: - - pos: -32.5,7.5 - parent: 1 - type: Transform - - uid: 3114 - components: - - pos: -31.5,7.5 - parent: 1 - type: Transform - - uid: 3120 - components: - - pos: -21.5,25.5 - parent: 1 - type: Transform - - uid: 3123 - components: - - pos: -21.5,22.5 - parent: 1 - type: Transform - - uid: 3125 - components: - - pos: -23.5,22.5 - parent: 1 - type: Transform - - uid: 3126 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,22.5 - parent: 1 - type: Transform - - uid: 3128 - components: - - pos: -24.5,25.5 - parent: 1 - type: Transform - - uid: 3138 - components: - - pos: -27.5,22.5 - parent: 1 - type: Transform - - uid: 3141 - components: - - pos: -29.5,30.5 - parent: 1 - type: Transform - - uid: 3142 - components: - - pos: -30.5,30.5 - parent: 1 - type: Transform - - uid: 3143 - components: - - pos: -31.5,30.5 - parent: 1 - type: Transform - - uid: 3148 - components: - - pos: -30.5,22.5 - parent: 1 - type: Transform - - uid: 3149 - components: - - pos: -31.5,22.5 - parent: 1 - type: Transform - - uid: 3153 - components: - - pos: -35.5,30.5 - parent: 1 - type: Transform - - uid: 3155 - components: - - pos: -35.5,22.5 - parent: 1 - type: Transform - - uid: 3156 - components: - - pos: -31.5,21.5 - parent: 1 - type: Transform - - uid: 3162 - components: - - pos: -31.5,15.5 - parent: 1 - type: Transform - - uid: 3163 - components: - - pos: -31.5,14.5 - parent: 1 - type: Transform - - uid: 3165 - components: - - pos: -33.5,14.5 - parent: 1 - type: Transform - - uid: 3170 - components: - - pos: 25.5,22.5 - parent: 1 - type: Transform - - uid: 3171 - components: - - pos: -35.5,8.5 - parent: 1 - type: Transform - - uid: 3172 - components: - - pos: -35.5,9.5 - parent: 1 - type: Transform - - uid: 3182 - components: - - pos: -34.5,8.5 - parent: 1 - type: Transform - - uid: 3214 - components: - - pos: -39.5,17.5 - parent: 1 - type: Transform - - uid: 3216 - components: - - pos: -39.5,14.5 - parent: 1 - type: Transform - - uid: 3218 - components: - - pos: -39.5,7.5 - parent: 1 - type: Transform - - uid: 3219 - components: - - pos: -43.5,7.5 - parent: 1 - type: Transform - - uid: 3221 - components: - - pos: -42.5,7.5 - parent: 1 - type: Transform - - uid: 3361 - components: - - pos: -40.5,7.5 - parent: 1 - type: Transform - - uid: 3408 - components: - - pos: -33.5,-14.5 - parent: 1 - type: Transform - - uid: 3421 - components: - - pos: -35.5,14.5 - parent: 1 - type: Transform - - uid: 3436 - components: - - pos: -39.5,9.5 - parent: 1 - type: Transform - - uid: 3438 - components: - - pos: -39.5,11.5 - parent: 1 - type: Transform - - uid: 3439 - components: - - pos: -39.5,12.5 - parent: 1 - type: Transform - - uid: 3442 - components: - - pos: -18.5,43.5 - parent: 1 - type: Transform - - uid: 3445 - components: - - pos: -23.5,45.5 - parent: 1 - type: Transform - - uid: 3450 - components: - - pos: -23.5,43.5 - parent: 1 - type: Transform - - uid: 3459 - components: - - pos: -30.5,3.5 - parent: 1 - type: Transform - - uid: 3460 - components: - - pos: -30.5,2.5 - parent: 1 - type: Transform - - uid: 3462 - components: - - pos: -30.5,0.5 - parent: 1 - type: Transform - - uid: 3466 - components: - - pos: -30.5,-3.5 - parent: 1 - type: Transform - - uid: 3467 - components: - - pos: -30.5,-4.5 - parent: 1 - type: Transform - - uid: 3470 - components: - - pos: -29.5,-9.5 - parent: 1 - type: Transform - - uid: 3472 - components: - - pos: -30.5,-9.5 - parent: 1 - type: Transform - - uid: 3482 - components: - - pos: -24.5,-14.5 - parent: 1 - type: Transform - - uid: 3483 - components: - - pos: -25.5,-14.5 - parent: 1 - type: Transform - - uid: 3484 - components: - - pos: -26.5,-14.5 - parent: 1 - type: Transform - - uid: 3487 - components: - - pos: -22.5,-15.5 - parent: 1 - type: Transform - - uid: 3489 - components: - - pos: -20.5,-15.5 - parent: 1 - type: Transform - - uid: 3490 - components: - - pos: -30.5,-11.5 - parent: 1 - type: Transform - - uid: 3495 - components: - - pos: -30.5,-12.5 - parent: 1 - type: Transform - - uid: 3497 - components: - - pos: -28.5,-13.5 - parent: 1 - type: Transform - - uid: 3498 - components: - - pos: -30.5,-13.5 - parent: 1 - type: Transform - - uid: 3501 - components: - - pos: -27.5,-13.5 - parent: 1 - type: Transform - - uid: 3502 - components: - - pos: -43.5,-8.5 - parent: 1 - type: Transform - - uid: 3503 - components: - - pos: -19.5,-12.5 - parent: 1 - type: Transform - - uid: 3520 - components: - - pos: -39.5,2.5 - parent: 1 - type: Transform - - uid: 3523 - components: - - pos: -42.5,2.5 - parent: 1 - type: Transform - - uid: 3526 - components: - - pos: -35.5,-0.5 - parent: 1 - type: Transform - - uid: 3529 - components: - - pos: -31.5,-0.5 - parent: 1 - type: Transform - - uid: 3533 - components: - - pos: -42.5,-0.5 - parent: 1 - type: Transform - - uid: 3537 - components: - - pos: -43.5,3.5 - parent: 1 - type: Transform - - uid: 3538 - components: - - pos: -44.5,-8.5 - parent: 1 - type: Transform - - uid: 3539 - components: - - pos: -45.5,-8.5 - parent: 1 - type: Transform - - uid: 3540 - components: - - pos: -46.5,-7.5 - parent: 1 - type: Transform - - uid: 3541 - components: - - pos: -46.5,-8.5 - parent: 1 - type: Transform - - uid: 3542 - components: - - pos: -46.5,-6.5 - parent: 1 - type: Transform - - uid: 3550 - components: - - pos: -35.5,-3.5 - parent: 1 - type: Transform - - uid: 3560 - components: - - pos: -36.5,-10.5 - parent: 1 - type: Transform - - uid: 3561 - components: - - pos: -36.5,-9.5 - parent: 1 - type: Transform - - uid: 3562 - components: - - pos: -36.5,-8.5 - parent: 1 - type: Transform - - uid: 3579 - components: - - pos: -46.5,-5.5 - parent: 1 - type: Transform - - uid: 3580 - components: - - pos: -42.5,-8.5 - parent: 1 - type: Transform - - uid: 3581 - components: - - pos: -45.5,-5.5 - parent: 1 - type: Transform - - uid: 3583 - components: - - pos: -49.5,2.5 - parent: 1 - type: Transform - - uid: 3585 - components: - - pos: -43.5,-5.5 - parent: 1 - type: Transform - - uid: 3587 - components: - - pos: -42.5,-5.5 - parent: 1 - type: Transform - - uid: 3590 - components: - - pos: -48.5,-11.5 - parent: 1 - type: Transform - - uid: 3598 - components: - - pos: -47.5,-3.5 - parent: 1 - type: Transform - - uid: 3599 - components: - - pos: -50.5,3.5 - parent: 1 - type: Transform - - uid: 3600 - components: - - pos: -47.5,-1.5 - parent: 1 - type: Transform - - uid: 3601 - components: - - pos: -47.5,-0.5 - parent: 1 - type: Transform - - uid: 3604 - components: - - pos: -47.5,2.5 - parent: 1 - type: Transform - - uid: 3605 - components: - - pos: -47.5,3.5 - parent: 1 - type: Transform - - uid: 3606 - components: - - pos: -46.5,3.5 - parent: 1 - type: Transform - - uid: 3611 - components: - - pos: -43.5,-0.5 - parent: 1 - type: Transform - - uid: 3628 - components: - - pos: -46.5,-11.5 - parent: 1 - type: Transform - - uid: 3632 - components: - - pos: -38.5,-14.5 - parent: 1 - type: Transform - - uid: 3645 - components: - - pos: -36.5,-14.5 - parent: 1 - type: Transform - - uid: 3647 - components: - - pos: -36.5,-11.5 - parent: 1 - type: Transform - - uid: 3676 - components: - - pos: -44.5,-14.5 - parent: 1 - type: Transform - - uid: 3678 - components: - - pos: -33.5,-11.5 - parent: 1 - type: Transform - - uid: 3684 - components: - - pos: -30.5,-14.5 - parent: 1 - type: Transform - - uid: 3690 - components: - - pos: -39.5,8.5 - parent: 1 - type: Transform - - uid: 3691 - components: - - pos: -43.5,8.5 - parent: 1 - type: Transform - - uid: 3699 - components: - - pos: -43.5,11.5 - parent: 1 - type: Transform - - uid: 3700 - components: - - pos: -43.5,12.5 - parent: 1 - type: Transform - - uid: 3705 - components: - - pos: -35.5,-4.5 - parent: 1 - type: Transform - - uid: 3766 - components: - - pos: -42.5,12.5 - parent: 1 - type: Transform - - uid: 3832 - components: - - pos: -41.5,12.5 - parent: 1 - type: Transform - - uid: 3903 - components: - - pos: -40.5,12.5 - parent: 1 - type: Transform - - uid: 3904 - components: - - pos: 29.5,28.5 - parent: 1 - type: Transform - - uid: 3963 - components: - - pos: 8.5,53.5 - parent: 1 - type: Transform - - uid: 3964 - components: - - pos: -50.5,-11.5 - parent: 1 - type: Transform - - uid: 4084 - components: - - pos: -51.5,-11.5 - parent: 1 - type: Transform - - uid: 4091 - components: - - pos: -52.5,-11.5 - parent: 1 - type: Transform - - uid: 4093 - components: - - pos: -54.5,-11.5 - parent: 1 - type: Transform - - uid: 4094 - components: - - pos: -55.5,-11.5 - parent: 1 - type: Transform - - uid: 4095 - components: - - pos: -56.5,-11.5 - parent: 1 - type: Transform - - uid: 4096 - components: - - pos: 10.5,53.5 - parent: 1 - type: Transform - - uid: 4097 - components: - - pos: 16.5,40.5 - parent: 1 - type: Transform - - uid: 4113 - components: - - pos: -56.5,-12.5 - parent: 1 - type: Transform - - uid: 4124 - components: - - pos: -73.5,7.5 - parent: 1 - type: Transform - - uid: 4136 - components: - - pos: -36.5,-13.5 - parent: 1 - type: Transform - - uid: 4170 - components: - - pos: -39.5,18.5 - parent: 1 - type: Transform - - uid: 4173 - components: - - pos: -40.5,20.5 - parent: 1 - type: Transform - - uid: 4177 - components: - - pos: -39.5,25.5 - parent: 1 - type: Transform - - uid: 4179 - components: - - pos: -39.5,27.5 - parent: 1 - type: Transform - - uid: 4180 - components: - - pos: -39.5,28.5 - parent: 1 - type: Transform - - uid: 4182 - components: - - pos: -39.5,30.5 - parent: 1 - type: Transform - - uid: 4184 - components: - - pos: -41.5,29.5 - parent: 1 - type: Transform - - uid: 4186 - components: - - pos: -43.5,29.5 - parent: 1 - type: Transform - - uid: 4187 - components: - - pos: -43.5,28.5 - parent: 1 - type: Transform - - uid: 4190 - components: - - pos: -43.5,25.5 - parent: 1 - type: Transform - - uid: 4192 - components: - - pos: -43.5,23.5 - parent: 1 - type: Transform - - uid: 4195 - components: - - pos: -41.5,22.5 - parent: 1 - type: Transform - - uid: 4196 - components: - - pos: -40.5,22.5 - parent: 1 - type: Transform - - uid: 4202 - components: - - pos: -50.5,30.5 - parent: 1 - type: Transform - - uid: 4203 - components: - - pos: -18.5,24.5 - parent: 1 - type: Transform - - uid: 4205 - components: - - pos: -51.5,20.5 - parent: 1 - type: Transform - - uid: 4206 - components: - - pos: -47.5,30.5 - parent: 1 - type: Transform - - uid: 4239 - components: - - pos: -44.5,56.5 - parent: 1 - type: Transform - - uid: 4253 - components: - - pos: -18.5,27.5 - parent: 1 - type: Transform - - uid: 4266 - components: - - pos: -17.5,21.5 - parent: 1 - type: Transform - - uid: 4267 - components: - - pos: 17.5,-7.5 - parent: 1 - type: Transform - - uid: 4269 - components: - - pos: -23.5,39.5 - parent: 1 - type: Transform - - uid: 4270 - components: - - pos: -20.5,49.5 - parent: 1 - type: Transform - - uid: 4271 - components: - - pos: -23.5,35.5 - parent: 1 - type: Transform - - uid: 4273 - components: - - pos: -9.5,45.5 - parent: 1 - type: Transform - - uid: 4282 - components: - - pos: -10.5,45.5 - parent: 1 - type: Transform - - uid: 4283 - components: - - pos: -43.5,17.5 - parent: 1 - type: Transform - - uid: 4286 - components: - - pos: -43.5,19.5 - parent: 1 - type: Transform - - uid: 4287 - components: - - pos: -42.5,16.5 - parent: 1 - type: Transform - - uid: 4289 - components: - - pos: -40.5,16.5 - parent: 1 - type: Transform - - uid: 4290 - components: - - pos: -44.5,16.5 - parent: 1 - type: Transform - - uid: 4291 - components: - - pos: -45.5,16.5 - parent: 1 - type: Transform - - uid: 4293 - components: - - pos: -49.5,20.5 - parent: 1 - type: Transform - - uid: 4295 - components: - - pos: -49.5,18.5 - parent: 1 - type: Transform - - uid: 4296 - components: - - pos: -49.5,17.5 - parent: 1 - type: Transform - - uid: 4298 - components: - - pos: -48.5,16.5 - parent: 1 - type: Transform - - uid: 4299 - components: - - pos: -47.5,16.5 - parent: 1 - type: Transform - - uid: 4301 - components: - - pos: -46.5,18.5 - parent: 1 - type: Transform - - uid: 4305 - components: - - pos: -42.5,13.5 - parent: 1 - type: Transform - - uid: 4324 - components: - - pos: -51.5,16.5 - parent: 1 - type: Transform - - uid: 4430 - components: - - pos: -11.5,45.5 - parent: 1 - type: Transform - - uid: 4431 - components: - - pos: -12.5,45.5 - parent: 1 - type: Transform - - uid: 4433 - components: - - pos: -14.5,45.5 - parent: 1 - type: Transform - - uid: 4500 - components: - - pos: -49.5,-1.5 - parent: 1 - type: Transform - - uid: 4506 - components: - - pos: -49.5,-7.5 - parent: 1 - type: Transform - - uid: 4509 - components: - - pos: -54.5,3.5 - parent: 1 - type: Transform - - uid: 4510 - components: - - pos: -55.5,3.5 - parent: 1 - type: Transform - - uid: 4511 - components: - - pos: -49.5,0.5 - parent: 1 - type: Transform - - uid: 4513 - components: - - pos: -51.5,0.5 - parent: 1 - type: Transform - - uid: 4516 - components: - - pos: -54.5,0.5 - parent: 1 - type: Transform - - uid: 4519 - components: - - pos: -55.5,-1.5 - parent: 1 - type: Transform - - uid: 4521 - components: - - pos: -55.5,-3.5 - parent: 1 - type: Transform - - uid: 4522 - components: - - pos: -55.5,-4.5 - parent: 1 - type: Transform - - uid: 4525 - components: - - pos: -55.5,-7.5 - parent: 1 - type: Transform - - uid: 4526 - components: - - pos: -55.5,-8.5 - parent: 1 - type: Transform - - uid: 4529 - components: - - pos: -52.5,-8.5 - parent: 1 - type: Transform - - uid: 4533 - components: - - pos: -9.5,48.5 - parent: 1 - type: Transform - - uid: 4534 - components: - - pos: -13.5,45.5 - parent: 1 - type: Transform - - uid: 4535 - components: - - pos: -9.5,50.5 - parent: 1 - type: Transform - - uid: 4536 - components: - - pos: -9.5,49.5 - parent: 1 - type: Transform - - uid: 4537 - components: - - pos: -6.5,52.5 - parent: 1 - type: Transform - - uid: 4538 - components: - - pos: -10.5,50.5 - parent: 1 - type: Transform - - uid: 4539 - components: - - pos: -14.5,50.5 - parent: 1 - type: Transform - - uid: 4544 - components: - - pos: -13.5,50.5 - parent: 1 - type: Transform - - uid: 4545 - components: - - pos: -12.5,50.5 - parent: 1 - type: Transform - - uid: 4551 - components: - - pos: -55.5,28.5 - parent: 1 - type: Transform - - uid: 4553 - components: - - pos: -55.5,30.5 - parent: 1 - type: Transform - - uid: 4554 - components: - - pos: -54.5,30.5 - parent: 1 - type: Transform - - uid: 4563 - components: - - pos: -30.5,57.5 - parent: 1 - type: Transform - - uid: 4564 - components: - - pos: -30.5,58.5 - parent: 1 - type: Transform - - uid: 4571 - components: - - pos: -46.5,27.5 - parent: 1 - type: Transform - - uid: 4575 - components: - - pos: -51.5,19.5 - parent: 1 - type: Transform - - uid: 4579 - components: - - pos: -55.5,22.5 - parent: 1 - type: Transform - - uid: 4581 - components: - - pos: -46.5,29.5 - parent: 1 - type: Transform - - uid: 4586 - components: - - pos: -55.5,26.5 - parent: 1 - type: Transform - - uid: 4587 - components: - - pos: -55.5,25.5 - parent: 1 - type: Transform - - uid: 4594 - components: - - pos: -11.5,50.5 - parent: 1 - type: Transform - - uid: 4707 - components: - - pos: -9.5,46.5 - parent: 1 - type: Transform - - uid: 4712 - components: - - pos: -6.5,49.5 - parent: 1 - type: Transform - - uid: 4737 - components: - - pos: -5.5,54.5 - parent: 1 - type: Transform - - uid: 4981 - components: - - pos: -6.5,48.5 - parent: 1 - type: Transform - - uid: 5006 - components: - - pos: -32.5,56.5 - parent: 1 - type: Transform - - uid: 5007 - components: - - pos: -33.5,56.5 - parent: 1 - type: Transform - - uid: 5009 - components: - - pos: -33.5,57.5 - parent: 1 - type: Transform - - uid: 5012 - components: - - pos: -6.5,53.5 - parent: 1 - type: Transform - - uid: 5015 - components: - - pos: -32.5,58.5 - parent: 1 - type: Transform - - uid: 5016 - components: - - pos: -4.5,54.5 - parent: 1 - type: Transform - - uid: 5017 - components: - - pos: -3.5,54.5 - parent: 1 - type: Transform - - uid: 5018 - components: - - pos: -12.5,52.5 - parent: 1 - type: Transform - - uid: 5019 - components: - - pos: -9.5,52.5 - parent: 1 - type: Transform - - uid: 5020 - components: - - pos: -8.5,52.5 - parent: 1 - type: Transform - - uid: 5021 - components: - - pos: -4.5,48.5 - parent: 1 - type: Transform - - uid: 5022 - components: - - pos: -14.5,52.5 - parent: 1 - type: Transform - - uid: 5023 - components: - - pos: -6.5,51.5 - parent: 1 - type: Transform - - uid: 5024 - components: - - pos: -6.5,50.5 - parent: 1 - type: Transform - - uid: 5025 - components: - - pos: -5.5,53.5 - parent: 1 - type: Transform - - uid: 5027 - components: - - pos: -5.5,48.5 - parent: 1 - type: Transform - - uid: 5028 - components: - - pos: -11.5,52.5 - parent: 1 - type: Transform - - uid: 5029 - components: - - pos: -13.5,52.5 - parent: 1 - type: Transform - - uid: 5030 - components: - - pos: -7.5,52.5 - parent: 1 - type: Transform - - uid: 5031 - components: - - pos: -3.5,48.5 - parent: 1 - type: Transform - - uid: 5034 - components: - - pos: -2.5,48.5 - parent: 1 - type: Transform - - uid: 5035 - components: - - pos: -18.5,49.5 - parent: 1 - type: Transform - - uid: 5036 - components: - - pos: -10.5,52.5 - parent: 1 - type: Transform - - uid: 5037 - components: - - pos: -2.5,54.5 - parent: 1 - type: Transform - - uid: 5038 - components: - - pos: 1.5,54.5 - parent: 1 - type: Transform - - uid: 5041 - components: - - pos: 1.5,53.5 - parent: 1 - type: Transform - - uid: 5042 - components: - - pos: 10.5,44.5 - parent: 1 - type: Transform - - uid: 5043 - components: - - pos: 9.5,44.5 - parent: 1 - type: Transform - - uid: 5044 - components: - - pos: 12.5,44.5 - parent: 1 - type: Transform - - uid: 5048 - components: - - pos: -35.5,58.5 - parent: 1 - type: Transform - - uid: 5049 - components: - - pos: 8.5,42.5 - parent: 1 - type: Transform - - uid: 5050 - components: - - pos: 13.5,42.5 - parent: 1 - type: Transform - - uid: 5051 - components: - - pos: 13.5,41.5 - parent: 1 - type: Transform - - uid: 5052 - components: - - pos: 12.5,41.5 - parent: 1 - type: Transform - - uid: 5055 - components: - - pos: 11.5,41.5 - parent: 1 - type: Transform - - uid: 5056 - components: - - pos: 13.5,44.5 - parent: 1 - type: Transform - - uid: 5057 - components: - - pos: 22.5,44.5 - parent: 1 - type: Transform - - uid: 5058 - components: - - pos: 9.5,41.5 - parent: 1 - type: Transform - - uid: 5059 - components: - - pos: 8.5,41.5 - parent: 1 - type: Transform - - uid: 5060 - components: - - pos: 21.5,44.5 - parent: 1 - type: Transform - - uid: 5061 - components: - - pos: 2.5,53.5 - parent: 1 - type: Transform - - uid: 5062 - components: - - pos: 3.5,53.5 - parent: 1 - type: Transform - - uid: 5063 - components: - - pos: 4.5,53.5 - parent: 1 - type: Transform - - uid: 5064 - components: - - pos: 5.5,53.5 - parent: 1 - type: Transform - - uid: 5065 - components: - - pos: 6.5,53.5 - parent: 1 - type: Transform - - uid: 5066 - components: - - pos: 7.5,53.5 - parent: 1 - type: Transform - - uid: 5067 - components: - - pos: 11.5,53.5 - parent: 1 - type: Transform - - uid: 5068 - components: - - pos: 12.5,53.5 - parent: 1 - type: Transform - - uid: 5077 - components: - - pos: -61.5,7.5 - parent: 1 - type: Transform - - uid: 5078 - components: - - pos: 16.5,49.5 - parent: 1 - type: Transform - - uid: 5104 - components: - - pos: 16.5,48.5 - parent: 1 - type: Transform - - uid: 5105 - components: - - pos: 18.5,47.5 - parent: 1 - type: Transform - - uid: 5107 - components: - - pos: 17.5,47.5 - parent: 1 - type: Transform - - uid: 5108 - components: - - pos: 12.5,52.5 - parent: 1 - type: Transform - - uid: 5109 - components: - - pos: 13.5,49.5 - parent: 1 - type: Transform - - uid: 5110 - components: - - pos: 14.5,49.5 - parent: 1 - type: Transform - - uid: 5111 - components: - - pos: 15.5,49.5 - parent: 1 - type: Transform - - uid: 5112 - components: - - pos: 12.5,49.5 - parent: 1 - type: Transform - - uid: 5113 - components: - - pos: 12.5,51.5 - parent: 1 - type: Transform - - uid: 5114 - components: - - pos: 12.5,50.5 - parent: 1 - type: Transform - - uid: 5115 - components: - - pos: 8.5,43.5 - parent: 1 - type: Transform - - uid: 5116 - components: - - pos: 8.5,44.5 - parent: 1 - type: Transform - - uid: 5117 - components: - - pos: 11.5,44.5 - parent: 1 - type: Transform - - uid: 5118 - components: - - pos: 13.5,43.5 - parent: 1 - type: Transform - - uid: 5119 - components: - - pos: 23.5,44.5 - parent: 1 - type: Transform - - uid: 5120 - components: - - pos: 24.5,44.5 - parent: 1 - type: Transform - - uid: 5121 - components: - - pos: 24.5,43.5 - parent: 1 - type: Transform - - uid: 5122 - components: - - pos: 24.5,42.5 - parent: 1 - type: Transform - - uid: 5123 - components: - - pos: 16.5,47.5 - parent: 1 - type: Transform - - uid: 5124 - components: - - pos: 19.5,-9.5 - parent: 1 - type: Transform - - uid: 5125 - components: - - pos: 19.5,46.5 - parent: 1 - type: Transform - - uid: 5126 - components: - - pos: 19.5,44.5 - parent: 1 - type: Transform - - uid: 5164 - components: - - pos: 19.5,45.5 - parent: 1 - type: Transform - - uid: 5165 - components: - - pos: 19.5,47.5 - parent: 1 - type: Transform - - uid: 5166 - components: - - pos: 16.5,39.5 - parent: 1 - type: Transform - - uid: 5168 - components: - - pos: 18.5,36.5 - parent: 1 - type: Transform - - uid: 5169 - components: - - pos: 16.5,41.5 - parent: 1 - type: Transform - - uid: 5171 - components: - - pos: -2.5,57.5 - parent: 1 - type: Transform - - uid: 5173 - components: - - pos: -2.5,56.5 - parent: 1 - type: Transform - - uid: 5176 - components: - - rot: -1.5707963267948966 rad - pos: -70.5,7.5 - parent: 1 - type: Transform - - uid: 5178 - components: - - rot: -1.5707963267948966 rad - pos: -68.5,7.5 - parent: 1 - type: Transform - - uid: 5180 - components: - - rot: -1.5707963267948966 rad - pos: -66.5,7.5 - parent: 1 - type: Transform - - uid: 5183 - components: - - pos: -59.5,7.5 - parent: 1 - type: Transform - - uid: 5187 - components: - - pos: -2.5,55.5 - parent: 1 - type: Transform - - uid: 5188 - components: - - pos: -3.5,57.5 - parent: 1 - type: Transform - - uid: 5199 - components: - - pos: -23.5,49.5 - parent: 1 - type: Transform - - uid: 5209 - components: - - pos: -26.5,56.5 - parent: 1 - type: Transform - - uid: 5222 - components: - - pos: -27.5,56.5 - parent: 1 - type: Transform - - uid: 5224 - components: - - pos: -29.5,56.5 - parent: 1 - type: Transform - - uid: 5255 - components: - - pos: -55.5,21.5 - parent: 1 - type: Transform - - uid: 5307 - components: - - pos: -53.5,-3.5 - parent: 1 - type: Transform - - uid: 5309 - components: - - pos: -50.5,-3.5 - parent: 1 - type: Transform - - uid: 5320 - components: - - pos: -30.5,56.5 - parent: 1 - type: Transform - - uid: 5330 - components: - - pos: 18.5,-6.5 - parent: 1 - type: Transform - - uid: 5331 - components: - - pos: -62.5,35.5 - parent: 1 - type: Transform - - uid: 5333 - components: - - pos: 20.5,-6.5 - parent: 1 - type: Transform - - uid: 5334 - components: - - pos: 21.5,-6.5 - parent: 1 - type: Transform - - uid: 5345 - components: - - pos: 21.5,-7.5 - parent: 1 - type: Transform - - uid: 5349 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,9.5 - parent: 1 - type: Transform - - uid: 5360 - components: - - pos: -36.5,57.5 - parent: 1 - type: Transform - - uid: 5361 - components: - - pos: -36.5,56.5 - parent: 1 - type: Transform - - uid: 5374 - components: - - pos: -46.5,-10.5 - parent: 1 - type: Transform - - uid: 5379 - components: - - pos: 19.5,36.5 - parent: 1 - type: Transform - - uid: 5380 - components: - - pos: 21.5,-8.5 - parent: 1 - type: Transform - - uid: 5412 - components: - - pos: -23.5,-5.5 - parent: 1 - type: Transform - - uid: 5428 - components: - - pos: -73.5,13.5 - parent: 1 - type: Transform - - uid: 5455 - components: - - pos: -73.5,12.5 - parent: 1 - type: Transform - - uid: 5505 - components: - - pos: -73.5,11.5 - parent: 1 - type: Transform - - uid: 5508 - components: - - pos: 21.5,36.5 - parent: 1 - type: Transform - - uid: 5523 - components: - - pos: -40.5,56.5 - parent: 1 - type: Transform - - uid: 5530 - components: - - pos: -42.5,56.5 - parent: 1 - type: Transform - - uid: 5557 - components: - - pos: -77.5,52.5 - parent: 1 - type: Transform - - uid: 5597 - components: - - pos: -76.5,52.5 - parent: 1 - type: Transform - - uid: 5621 - components: - - pos: -76.5,53.5 - parent: 1 - type: Transform - - uid: 5629 - components: - - pos: -75.5,53.5 - parent: 1 - type: Transform - - uid: 5632 - components: - - pos: -74.5,57.5 - parent: 1 - type: Transform - - uid: 5633 - components: - - pos: -72.5,36.5 - parent: 1 - type: Transform - - uid: 5659 - components: - - pos: -70.5,36.5 - parent: 1 - type: Transform - - uid: 5668 - components: - - pos: -67.5,35.5 - parent: 1 - type: Transform - - uid: 5679 - components: - - pos: -66.5,35.5 - parent: 1 - type: Transform - - uid: 5681 - components: - - pos: -73.5,36.5 - parent: 1 - type: Transform - - uid: 5722 - components: - - pos: -43.5,49.5 - parent: 1 - type: Transform - - uid: 5724 - components: - - pos: -44.5,48.5 - parent: 1 - type: Transform - - uid: 5730 - components: - - pos: -68.5,36.5 - parent: 1 - type: Transform - - uid: 5732 - components: - - pos: -64.5,58.5 - parent: 1 - type: Transform - - uid: 5749 - components: - - pos: -62.5,27.5 - parent: 1 - type: Transform - - uid: 5753 - components: - - pos: -45.5,55.5 - parent: 1 - type: Transform - - uid: 5757 - components: - - pos: -76.5,42.5 - parent: 1 - type: Transform - - uid: 5759 - components: - - pos: -45.5,50.5 - parent: 1 - type: Transform - - uid: 5802 - components: - - pos: -76.5,38.5 - parent: 1 - type: Transform - - uid: 5819 - components: - - pos: -76.5,37.5 - parent: 1 - type: Transform - - uid: 5825 - components: - - pos: -76.5,40.5 - parent: 1 - type: Transform - - uid: 5828 - components: - - pos: -76.5,39.5 - parent: 1 - type: Transform - - uid: 5830 - components: - - pos: -76.5,46.5 - parent: 1 - type: Transform - - uid: 5839 - components: - - pos: -10.5,38.5 - parent: 1 - type: Transform - - uid: 5841 - components: - - pos: -10.5,40.5 - parent: 1 - type: Transform - - uid: 5842 - components: - - pos: -10.5,41.5 - parent: 1 - type: Transform - - uid: 5844 - components: - - pos: -10.5,43.5 - parent: 1 - type: Transform - - uid: 5846 - components: - - pos: -76.5,45.5 - parent: 1 - type: Transform - - uid: 5847 - components: - - pos: -76.5,47.5 - parent: 1 - type: Transform - - uid: 5848 - components: - - pos: -76.5,44.5 - parent: 1 - type: Transform - - uid: 5849 - components: - - pos: -76.5,43.5 - parent: 1 - type: Transform - - uid: 5850 - components: - - pos: -76.5,49.5 - parent: 1 - type: Transform - - uid: 5853 - components: - - pos: -6.5,38.5 - parent: 1 - type: Transform - - uid: 5855 - components: - - pos: -76.5,50.5 - parent: 1 - type: Transform - - uid: 5858 - components: - - pos: -4.5,40.5 - parent: 1 - type: Transform - - uid: 5863 - components: - - pos: -7.5,38.5 - parent: 1 - type: Transform - - uid: 5865 - components: - - pos: -9.5,38.5 - parent: 1 - type: Transform - - uid: 5871 - components: - - pos: -4.5,41.5 - parent: 1 - type: Transform - - uid: 5873 - components: - - pos: -4.5,43.5 - parent: 1 - type: Transform - - uid: 5876 - components: - - pos: -5.5,45.5 - parent: 1 - type: Transform - - uid: 5880 - components: - - pos: -74.5,53.5 - parent: 1 - type: Transform - - uid: 5881 - components: - - pos: -74.5,55.5 - parent: 1 - type: Transform - - uid: 5882 - components: - - pos: -74.5,56.5 - parent: 1 - type: Transform - - uid: 5883 - components: - - pos: -76.5,36.5 - parent: 1 - type: Transform - - uid: 5884 - components: - - pos: -75.5,36.5 - parent: 1 - type: Transform - - uid: 5885 - components: - - pos: -71.5,36.5 - parent: 1 - type: Transform - - uid: 5886 - components: - - pos: -62.5,30.5 - parent: 1 - type: Transform - - uid: 5887 - components: - - pos: -62.5,31.5 - parent: 1 - type: Transform - - uid: 5888 - components: - - pos: -62.5,28.5 - parent: 1 - type: Transform - - uid: 5889 - components: - - pos: -62.5,29.5 - parent: 1 - type: Transform - - uid: 5890 - components: - - pos: -71.5,24.5 - parent: 1 - type: Transform - - uid: 5891 - components: - - pos: -72.5,25.5 - parent: 1 - type: Transform - - uid: 5892 - components: - - pos: -68.5,25.5 - parent: 1 - type: Transform - - uid: 5893 - components: - - pos: -62.5,26.5 - parent: 1 - type: Transform - - uid: 5894 - components: - - pos: -68.5,27.5 - parent: 1 - type: Transform - - uid: 5895 - components: - - pos: -68.5,26.5 - parent: 1 - type: Transform - - uid: 5896 - components: - - pos: -68.5,31.5 - parent: 1 - type: Transform - - uid: 5897 - components: - - pos: -68.5,30.5 - parent: 1 - type: Transform - - uid: 5898 - components: - - pos: -68.5,29.5 - parent: 1 - type: Transform - - uid: 5899 - components: - - pos: -18.5,50.5 - parent: 1 - type: Transform - - uid: 5903 - components: - - pos: -67.5,24.5 - parent: 1 - type: Transform - - uid: 5906 - components: - - pos: -68.5,28.5 - parent: 1 - type: Transform - - uid: 5907 - components: - - pos: -63.5,24.5 - parent: 1 - type: Transform - - uid: 5908 - components: - - pos: -62.5,33.5 - parent: 1 - type: Transform - - uid: 5909 - components: - - pos: -62.5,25.5 - parent: 1 - type: Transform - - uid: 5940 - components: - - pos: -62.5,34.5 - parent: 1 - type: Transform - - uid: 5941 - components: - - pos: -62.5,24.5 - parent: 1 - type: Transform - - uid: 5942 - components: - - pos: -68.5,32.5 - parent: 1 - type: Transform - - uid: 5943 - components: - - pos: -65.5,32.5 - parent: 1 - type: Transform - - uid: 5944 - components: - - pos: -68.5,24.5 - parent: 1 - type: Transform - - uid: 5945 - components: - - pos: -78.5,27.5 - parent: 1 - type: Transform - - uid: 5946 - components: - - pos: -79.5,28.5 - parent: 1 - type: Transform - - uid: 5948 - components: - - pos: -81.5,28.5 - parent: 1 - type: Transform - - uid: 5953 - components: - - pos: -75.5,21.5 - parent: 1 - type: Transform - - uid: 5954 - components: - - pos: 1.5,48.5 - parent: 1 - type: Transform - - uid: 5956 - components: - - pos: 1.5,50.5 - parent: 1 - type: Transform - - uid: 5959 - components: - - pos: -75.5,19.5 - parent: 1 - type: Transform - - uid: 5971 - components: - - pos: -75.5,18.5 - parent: 1 - type: Transform - - uid: 5973 - components: - - pos: 0.5,48.5 - parent: 1 - type: Transform - - uid: 5974 - components: - - pos: -75.5,17.5 - parent: 1 - type: Transform - - uid: 5975 - components: - - pos: -75.5,23.5 - parent: 1 - type: Transform - - uid: 5976 - components: - - pos: -77.5,23.5 - parent: 1 - type: Transform - - uid: 5977 - components: - - pos: -78.5,23.5 - parent: 1 - type: Transform - - uid: 5978 - components: - - pos: -64.5,59.5 - parent: 1 - type: Transform - - uid: 5980 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,47.5 - parent: 1 - type: Transform - - uid: 5982 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,47.5 - parent: 1 - type: Transform - - uid: 5983 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,47.5 - parent: 1 - type: Transform - - uid: 5985 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,47.5 - parent: 1 - type: Transform - - uid: 5988 - components: - - pos: -78.5,22.5 - parent: 1 - type: Transform - - uid: 5989 - components: - - pos: -78.5,21.5 - parent: 1 - type: Transform - - uid: 5990 - components: - - pos: -80.5,21.5 - parent: 1 - type: Transform - - uid: 5991 - components: - - pos: -72.5,24.5 - parent: 1 - type: Transform - - uid: 5992 - components: - - pos: -72.5,30.5 - parent: 1 - type: Transform - - uid: 5993 - components: - - pos: -78.5,28.5 - parent: 1 - type: Transform - - uid: 5994 - components: - - pos: -80.5,28.5 - parent: 1 - type: Transform - - uid: 5995 - components: - - pos: -72.5,29.5 - parent: 1 - type: Transform - - uid: 5997 - components: - - pos: -72.5,31.5 - parent: 1 - type: Transform - - uid: 5999 - components: - - pos: 5.5,48.5 - parent: 1 - type: Transform - - uid: 6000 - components: - - pos: -66.5,18.5 - parent: 1 - type: Transform - - uid: 6001 - components: - - pos: -72.5,19.5 - parent: 1 - type: Transform - - uid: 6002 - components: - - pos: -63.5,18.5 - parent: 1 - type: Transform - - uid: 6003 - components: - - pos: -72.5,18.5 - parent: 1 - type: Transform - - uid: 6004 - components: - - pos: 6.5,49.5 - parent: 1 - type: Transform - - uid: 6005 - components: - - pos: 5.5,51.5 - parent: 1 - type: Transform - - uid: 6007 - components: - - pos: 5.5,49.5 - parent: 1 - type: Transform - - uid: 6009 - components: - - pos: -72.5,23.5 - parent: 1 - type: Transform - - uid: 6010 - components: - - pos: -70.5,27.5 - parent: 1 - type: Transform - - uid: 6014 - components: - - pos: -71.5,18.5 - parent: 1 - type: Transform - - uid: 6015 - components: - - pos: -81.5,21.5 - parent: 1 - type: Transform - - uid: 6021 - components: - - pos: -82.5,21.5 - parent: 1 - type: Transform - - uid: 6022 - components: - - pos: -86.5,22.5 - parent: 1 - type: Transform - - uid: 6025 - components: - - pos: -85.5,22.5 - parent: 1 - type: Transform - - uid: 6026 - components: - - pos: 8.5,49.5 - parent: 1 - type: Transform - - uid: 6028 - components: - - pos: -77.5,27.5 - parent: 1 - type: Transform - - uid: 6029 - components: - - pos: 11.5,49.5 - parent: 1 - type: Transform - - uid: 6030 - components: - - pos: -83.5,21.5 - parent: 1 - type: Transform - - uid: 6031 - components: - - pos: -83.5,22.5 - parent: 1 - type: Transform - - uid: 6032 - components: - - pos: -75.5,20.5 - parent: 1 - type: Transform - - uid: 6033 - components: - - pos: -64.5,18.5 - parent: 1 - type: Transform - - uid: 6034 - components: - - pos: 9.5,52.5 - parent: 1 - type: Transform - - uid: 6035 - components: - - pos: 9.5,51.5 - parent: 1 - type: Transform - - uid: 6037 - components: - - pos: -65.5,18.5 - parent: 1 - type: Transform - - uid: 6038 - components: - - pos: -62.5,23.5 - parent: 1 - type: Transform - - uid: 6039 - components: - - pos: -76.5,23.5 - parent: 1 - type: Transform - - uid: 6047 - components: - - pos: -75.5,22.5 - parent: 1 - type: Transform - - uid: 6048 - components: - - pos: -62.5,22.5 - parent: 1 - type: Transform - - uid: 6049 - components: - - pos: -62.5,21.5 - parent: 1 - type: Transform - - uid: 6050 - components: - - pos: -62.5,20.5 - parent: 1 - type: Transform - - uid: 6051 - components: - - pos: -62.5,19.5 - parent: 1 - type: Transform - - uid: 6052 - components: - - pos: -62.5,18.5 - parent: 1 - type: Transform - - uid: 6053 - components: - - pos: -67.5,18.5 - parent: 1 - type: Transform - - uid: 6054 - components: - - pos: -72.5,32.5 - parent: 1 - type: Transform - - uid: 6055 - components: - - pos: -73.5,10.5 - parent: 1 - type: Transform - - uid: 6057 - components: - - pos: -75.5,57.5 - parent: 1 - type: Transform - - uid: 6059 - components: - - pos: -76.5,57.5 - parent: 1 - type: Transform - - uid: 6060 - components: - - pos: -77.5,57.5 - parent: 1 - type: Transform - - uid: 6061 - components: - - pos: -78.5,57.5 - parent: 1 - type: Transform - - uid: 6062 - components: - - pos: -78.5,56.5 - parent: 1 - type: Transform - - uid: 6063 - components: - - pos: -78.5,52.5 - parent: 1 - type: Transform - - uid: 6064 - components: - - pos: -78.5,53.5 - parent: 1 - type: Transform - - uid: 6079 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,44.5 - parent: 1 - type: Transform - - uid: 6254 - components: - - pos: -78.5,55.5 - parent: 1 - type: Transform - - uid: 6256 - components: - - pos: -78.5,54.5 - parent: 1 - type: Transform - - uid: 6266 - components: - - pos: -82.5,28.5 - parent: 1 - type: Transform - - uid: 6267 - components: - - pos: -83.5,28.5 - parent: 1 - type: Transform - - uid: 6268 - components: - - pos: -86.5,28.5 - parent: 1 - type: Transform - - uid: 6269 - components: - - pos: -85.5,28.5 - parent: 1 - type: Transform - - uid: 6270 - components: - - pos: -76.5,17.5 - parent: 1 - type: Transform - - uid: 6303 - components: - - pos: -78.5,17.5 - parent: 1 - type: Transform - - uid: 6304 - components: - - pos: -77.5,17.5 - parent: 1 - type: Transform - - uid: 6305 - components: - - pos: -79.5,17.5 - parent: 1 - type: Transform - - uid: 6306 - components: - - pos: -80.5,17.5 - parent: 1 - type: Transform - - uid: 6309 - components: - - pos: -81.5,17.5 - parent: 1 - type: Transform - - uid: 6310 - components: - - pos: -82.5,17.5 - parent: 1 - type: Transform - - uid: 6311 - components: - - pos: -83.5,17.5 - parent: 1 - type: Transform - - uid: 6312 - components: - - pos: -83.5,18.5 - parent: 1 - type: Transform - - uid: 6340 - components: - - pos: -83.5,20.5 - parent: 1 - type: Transform - - uid: 6344 - components: - - rot: 3.141592653589793 rad - pos: -5.5,56.5 - parent: 1 - type: Transform - - uid: 6345 - components: - - pos: -83.5,19.5 - parent: 1 - type: Transform - - uid: 6346 - components: - - pos: -83.5,29.5 - parent: 1 - type: Transform - - uid: 6347 - components: - - pos: -83.5,30.5 - parent: 1 - type: Transform - - uid: 6348 - components: - - pos: -83.5,31.5 - parent: 1 - type: Transform - - uid: 6366 - components: - - rot: 3.141592653589793 rad - pos: -13.5,58.5 - parent: 1 - type: Transform - - uid: 6367 - components: - - pos: -84.5,31.5 - parent: 1 - type: Transform - - uid: 6373 - components: - - rot: 3.141592653589793 rad - pos: -20.5,58.5 - parent: 1 - type: Transform - - uid: 6377 - components: - - pos: -85.5,31.5 - parent: 1 - type: Transform - - uid: 6398 - components: - - pos: -86.5,31.5 - parent: 1 - type: Transform - - uid: 6399 - components: - - pos: -86.5,29.5 - parent: 1 - type: Transform - - uid: 6402 - components: - - pos: -84.5,19.5 - parent: 1 - type: Transform - - uid: 6413 - components: - - pos: -85.5,19.5 - parent: 1 - type: Transform - - uid: 6416 - components: - - pos: -86.5,19.5 - parent: 1 - type: Transform - - uid: 6417 - components: - - pos: -86.5,21.5 - parent: 1 - type: Transform - - uid: 6418 - components: - - pos: -75.5,31.5 - parent: 1 - type: Transform - - uid: 6419 - components: - - pos: -75.5,32.5 - parent: 1 - type: Transform - - uid: 6420 - components: - - pos: -64.5,35.5 - parent: 1 - type: Transform - - uid: 6421 - components: - - pos: -75.5,30.5 - parent: 1 - type: Transform - - uid: 6422 - components: - - pos: -75.5,27.5 - parent: 1 - type: Transform - - uid: 6423 - components: - - pos: -75.5,28.5 - parent: 1 - type: Transform - - uid: 6424 - components: - - pos: 27.5,22.5 - parent: 1 - type: Transform - - uid: 6425 - components: - - pos: 28.5,22.5 - parent: 1 - type: Transform - - uid: 6426 - components: - - pos: -75.5,29.5 - parent: 1 - type: Transform - - uid: 6427 - components: - - pos: -76.5,27.5 - parent: 1 - type: Transform - - uid: 6428 - components: - - pos: -78.5,47.5 - parent: 1 - type: Transform - - uid: 6475 - components: - - pos: -77.5,50.5 - parent: 1 - type: Transform - - uid: 6476 - components: - - pos: -78.5,49.5 - parent: 1 - type: Transform - - uid: 6477 - components: - - pos: -78.5,50.5 - parent: 1 - type: Transform - - uid: 6478 - components: - - pos: -78.5,51.5 - parent: 1 - type: Transform - - uid: 6479 - components: - - pos: -73.5,9.5 - parent: 1 - type: Transform - - uid: 6480 - components: - - pos: -73.5,8.5 - parent: 1 - type: Transform - - uid: 6481 - components: - - pos: -76.5,41.5 - parent: 1 - type: Transform - - uid: 6482 - components: - - pos: -72.5,28.5 - parent: 1 - type: Transform - - uid: 6483 - components: - - pos: -72.5,27.5 - parent: 1 - type: Transform - - uid: 6484 - components: - - pos: -75.5,16.5 - parent: 1 - type: Transform - - uid: 6485 - components: - - pos: -75.5,15.5 - parent: 1 - type: Transform - - uid: 6486 - components: - - pos: -75.5,14.5 - parent: 1 - type: Transform - - uid: 6487 - components: - - pos: -74.5,14.5 - parent: 1 - type: Transform - - uid: 6488 - components: - - pos: -73.5,14.5 - parent: 1 - type: Transform - - uid: 6489 - components: - - pos: -72.5,14.5 - parent: 1 - type: Transform - - uid: 6490 - components: - - pos: -71.5,14.5 - parent: 1 - type: Transform - - uid: 6491 - components: - - pos: -70.5,14.5 - parent: 1 - type: Transform - - uid: 6492 - components: - - pos: -69.5,14.5 - parent: 1 - type: Transform - - uid: 6493 - components: - - pos: -68.5,14.5 - parent: 1 - type: Transform - - uid: 6509 - components: - - pos: -67.5,14.5 - parent: 1 - type: Transform - - uid: 6556 - components: - - pos: -67.5,15.5 - parent: 1 - type: Transform - - uid: 6649 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,47.5 - parent: 1 - type: Transform - - uid: 6650 - components: - - pos: -67.5,16.5 - parent: 1 - type: Transform - - uid: 6662 - components: - - pos: -67.5,17.5 - parent: 1 - type: Transform - - uid: 6663 - components: - - pos: -85.5,32.5 - parent: 1 - type: Transform - - uid: 6664 - components: - - pos: -26.5,57.5 - parent: 1 - type: Transform - - uid: 6665 - components: - - pos: -75.5,33.5 - parent: 1 - type: Transform - - uid: 6666 - components: - - pos: -74.5,36.5 - parent: 1 - type: Transform - - uid: 6667 - components: - - pos: -68.5,35.5 - parent: 1 - type: Transform - - uid: 6677 - components: - - pos: -64.5,60.5 - parent: 1 - type: Transform - - uid: 6679 - components: - - pos: -64.5,61.5 - parent: 1 - type: Transform - - uid: 6680 - components: - - pos: -63.5,61.5 - parent: 1 - type: Transform - - uid: 6681 - components: - - pos: -62.5,61.5 - parent: 1 - type: Transform - - uid: 6683 - components: - - pos: -68.5,57.5 - parent: 1 - type: Transform - - uid: 6684 - components: - - pos: -67.5,58.5 - parent: 1 - type: Transform - - uid: 6688 - components: - - pos: -71.5,27.5 - parent: 1 - type: Transform - - uid: 6689 - components: - - pos: -70.5,24.5 - parent: 1 - type: Transform - - uid: 6690 - components: - - pos: -65.5,35.5 - parent: 1 - type: Transform - - uid: 6691 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,48.5 - parent: 1 - type: Transform - - uid: 6692 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,48.5 - parent: 1 - type: Transform - - uid: 6694 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,48.5 - parent: 1 - type: Transform - - uid: 6697 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,48.5 - parent: 1 - type: Transform - - uid: 6700 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,46.5 - parent: 1 - type: Transform - - uid: 6702 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,44.5 - parent: 1 - type: Transform - - uid: 6707 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,39.5 - parent: 1 - type: Transform - - uid: 6708 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,38.5 - parent: 1 - type: Transform - - uid: 6712 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,34.5 - parent: 1 - type: Transform - - uid: 6713 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,35.5 - parent: 1 - type: Transform - - uid: 6715 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,34.5 - parent: 1 - type: Transform - - uid: 6716 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,34.5 - parent: 1 - type: Transform - - uid: 6717 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,34.5 - parent: 1 - type: Transform - - uid: 6720 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,39.5 - parent: 1 - type: Transform - - uid: 6721 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,38.5 - parent: 1 - type: Transform - - uid: 6723 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,40.5 - parent: 1 - type: Transform - - uid: 6725 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,39.5 - parent: 1 - type: Transform - - uid: 6726 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,40.5 - parent: 1 - type: Transform - - uid: 6727 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,34.5 - parent: 1 - type: Transform - - uid: 6728 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,34.5 - parent: 1 - type: Transform - - uid: 6729 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,34.5 - parent: 1 - type: Transform - - uid: 6734 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,41.5 - parent: 1 - type: Transform - - uid: 6736 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,43.5 - parent: 1 - type: Transform - - uid: 6737 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,41.5 - parent: 1 - type: Transform - - uid: 6738 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,42.5 - parent: 1 - type: Transform - - uid: 6742 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,40.5 - parent: 1 - type: Transform - - uid: 6745 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,40.5 - parent: 1 - type: Transform - - uid: 6747 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,39.5 - parent: 1 - type: Transform - - uid: 6751 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,35.5 - parent: 1 - type: Transform - - uid: 6752 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,34.5 - parent: 1 - type: Transform - - uid: 6759 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,34.5 - parent: 1 - type: Transform - - uid: 6762 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,34.5 - parent: 1 - type: Transform - - uid: 6763 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,34.5 - parent: 1 - type: Transform - - uid: 6765 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,40.5 - parent: 1 - type: Transform - - uid: 6767 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,43.5 - parent: 1 - type: Transform - - uid: 6769 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,45.5 - parent: 1 - type: Transform - - uid: 6770 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,47.5 - parent: 1 - type: Transform - - uid: 6771 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,48.5 - parent: 1 - type: Transform - - uid: 6774 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,48.5 - parent: 1 - type: Transform - - uid: 6775 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,48.5 - parent: 1 - type: Transform - - uid: 6778 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,52.5 - parent: 1 - type: Transform - - uid: 6779 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,51.5 - parent: 1 - type: Transform - - uid: 6781 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,42.5 - parent: 1 - type: Transform - - uid: 6785 - components: - - pos: -69.5,36.5 - parent: 1 - type: Transform - - uid: 6786 - components: - - pos: 17.5,36.5 - parent: 1 - type: Transform - - uid: 6788 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,47.5 - parent: 1 - type: Transform - - uid: 6792 - components: - - pos: -23.5,-9.5 - parent: 1 - type: Transform - - uid: 6795 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,53.5 - parent: 1 - type: Transform - - uid: 6796 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,53.5 - parent: 1 - type: Transform - - uid: 6798 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,53.5 - parent: 1 - type: Transform - - uid: 6799 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,53.5 - parent: 1 - type: Transform - - uid: 6801 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,51.5 - parent: 1 - type: Transform - - uid: 6803 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,49.5 - parent: 1 - type: Transform - - uid: 6804 - components: - - pos: -26.5,-9.5 - parent: 1 - type: Transform - - uid: 6809 - components: - - pos: -66.5,58.5 - parent: 1 - type: Transform - - uid: 6810 - components: - - pos: -26.5,-11.5 - parent: 1 - type: Transform - - uid: 6826 - components: - - pos: -26.5,52.5 - parent: 1 - type: Transform - - uid: 6827 - components: - - pos: -27.5,51.5 - parent: 1 - type: Transform - - uid: 6828 - components: - - pos: -29.5,51.5 - parent: 1 - type: Transform - - uid: 6829 - components: - - pos: -30.5,54.5 - parent: 1 - type: Transform - - uid: 6830 - components: - - pos: 16.5,36.5 - parent: 1 - type: Transform - - uid: 6831 - components: - - pos: 20.5,36.5 - parent: 1 - type: Transform - - uid: 6832 - components: - - pos: -66.5,59.5 - parent: 1 - type: Transform - - uid: 6845 - components: - - pos: -66.5,60.5 - parent: 1 - type: Transform - - uid: 6846 - components: - - pos: -65.5,60.5 - parent: 1 - type: Transform - - uid: 6847 - components: - - pos: -68.5,58.5 - parent: 1 - type: Transform - - uid: 6848 - components: - - pos: -69.5,57.5 - parent: 1 - type: Transform - - uid: 6849 - components: - - pos: -71.5,57.5 - parent: 1 - type: Transform - - uid: 6851 - components: - - pos: -72.5,57.5 - parent: 1 - type: Transform - - uid: 6887 - components: - - pos: -22.5,-10.5 - parent: 1 - type: Transform - - uid: 6960 - components: - - pos: -43.5,53.5 - parent: 1 - type: Transform - - uid: 7033 - components: - - pos: -55.5,45.5 - parent: 1 - type: Transform - - uid: 7034 - components: - - pos: -55.5,44.5 - parent: 1 - type: Transform - - uid: 7036 - components: - - pos: -55.5,42.5 - parent: 1 - type: Transform - - uid: 7038 - components: - - pos: -55.5,40.5 - parent: 1 - type: Transform - - uid: 7040 - components: - - pos: -55.5,38.5 - parent: 1 - type: Transform - - uid: 7041 - components: - - pos: -54.5,34.5 - parent: 1 - type: Transform - - uid: 7043 - components: - - pos: -54.5,37.5 - parent: 1 - type: Transform - - uid: 7047 - components: - - pos: -52.5,34.5 - parent: 1 - type: Transform - - uid: 7048 - components: - - pos: -53.5,34.5 - parent: 1 - type: Transform - - uid: 7050 - components: - - pos: -49.5,35.5 - parent: 1 - type: Transform - - uid: 7053 - components: - - pos: -49.5,38.5 - parent: 1 - type: Transform - - uid: 7056 - components: - - pos: -49.5,41.5 - parent: 1 - type: Transform - - uid: 7057 - components: - - pos: -49.5,42.5 - parent: 1 - type: Transform - - uid: 7059 - components: - - pos: -51.5,42.5 - parent: 1 - type: Transform - - uid: 7061 - components: - - pos: -53.5,42.5 - parent: 1 - type: Transform - - uid: 7064 - components: - - pos: -53.5,39.5 - parent: 1 - type: Transform - - uid: 7065 - components: - - pos: -53.5,38.5 - parent: 1 - type: Transform - - uid: 7068 - components: - - pos: -50.5,39.5 - parent: 1 - type: Transform - - uid: 7107 - components: - - pos: -22.5,-9.5 - parent: 1 - type: Transform - - uid: 7137 - components: - - pos: -26.5,-10.5 - parent: 1 - type: Transform - - uid: 7138 - components: - - rot: -1.5707963267948966 rad - pos: -65.5,41.5 - parent: 1 - type: Transform - - uid: 7139 - components: - - pos: -25.5,-9.5 - parent: 1 - type: Transform - - uid: 7141 - components: - - rot: 1.5707963267948966 rad - pos: -67.5,48.5 - parent: 1 - type: Transform - - uid: 7188 - components: - - pos: -30.5,52.5 - parent: 1 - type: Transform - - uid: 7389 - components: - - pos: -30.5,55.5 - parent: 1 - type: Transform - - uid: 7390 - components: - - pos: -28.5,51.5 - parent: 1 - type: Transform - - uid: 7408 - components: - - pos: -25.5,52.5 - parent: 1 - type: Transform - - uid: 7517 - components: - - pos: -69.5,32.5 - parent: 1 - type: Transform - - uid: 7923 - components: - - pos: -50.5,-14.5 - parent: 1 - type: Transform - - uid: 8059 - components: - - pos: 26.5,29.5 - parent: 1 - type: Transform - - uid: 8109 - components: - - pos: -24.5,58.5 - parent: 1 - type: Transform - - uid: 8114 - components: - - pos: 17.5,-9.5 - parent: 1 - type: Transform - - uid: 8191 - components: - - pos: 25.5,29.5 - parent: 1 - type: Transform - - uid: 8214 - components: - - pos: 29.5,25.5 - parent: 1 - type: Transform - - uid: 8215 - components: - - pos: 29.5,24.5 - parent: 1 - type: Transform - - uid: 8224 - components: - - pos: -74.5,54.5 - parent: 1 - type: Transform - - uid: 8235 - components: - - pos: 12.5,-8.5 - parent: 1 - type: Transform - - uid: 8240 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,17.5 - parent: 1 - type: Transform - - uid: 8264 - components: - - pos: -42.5,53.5 - parent: 1 - type: Transform - - uid: 9157 - components: - - rot: 1.5707963267948966 rad - pos: -67.5,46.5 - parent: 1 - type: Transform - - uid: 9159 - components: - - rot: 1.5707963267948966 rad - pos: -68.5,49.5 - parent: 1 - type: Transform - - uid: 9161 - components: - - rot: 1.5707963267948966 rad - pos: -68.5,51.5 - parent: 1 - type: Transform - - uid: 9163 - components: - - pos: -69.5,46.5 - parent: 1 - type: Transform - - uid: 9166 - components: - - rot: 1.5707963267948966 rad - pos: -68.5,56.5 - parent: 1 - type: Transform - - uid: 9177 - components: - - rot: 1.5707963267948966 rad - pos: -72.5,46.5 - parent: 1 - type: Transform - - uid: 9179 - components: - - rot: 1.5707963267948966 rad - pos: -73.5,47.5 - parent: 1 - type: Transform - - uid: 9181 - components: - - rot: 1.5707963267948966 rad - pos: -73.5,49.5 - parent: 1 - type: Transform - - uid: 9182 - components: - - rot: 1.5707963267948966 rad - pos: -72.5,50.5 - parent: 1 - type: Transform - - uid: 9184 - components: - - rot: 1.5707963267948966 rad - pos: -70.5,50.5 - parent: 1 - type: Transform - - uid: 9191 - components: - - rot: 1.5707963267948966 rad - pos: -73.5,50.5 - parent: 1 - type: Transform - - uid: 9193 - components: - - rot: 1.5707963267948966 rad - pos: -74.5,51.5 - parent: 1 - type: Transform - - uid: 9194 - components: - - rot: 1.5707963267948966 rad - pos: -73.5,38.5 - parent: 1 - type: Transform - - uid: 9202 - components: - - rot: -1.5707963267948966 rad - pos: -65.5,44.5 - parent: 1 - type: Transform - - uid: 9206 - components: - - rot: -1.5707963267948966 rad - pos: -62.5,46.5 - parent: 1 - type: Transform - - uid: 9207 - components: - - rot: -1.5707963267948966 rad - pos: -65.5,43.5 - parent: 1 - type: Transform - - uid: 9213 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,45.5 - parent: 1 - type: Transform - - uid: 9216 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,42.5 - parent: 1 - type: Transform - - uid: 9218 - components: - - rot: -1.5707963267948966 rad - pos: -60.5,46.5 - parent: 1 - type: Transform - - uid: 9220 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,38.5 - parent: 1 - type: Transform - - uid: 9221 - components: - - pos: -59.5,37.5 - parent: 1 - type: Transform - - uid: 9225 - components: - - rot: -1.5707963267948966 rad - pos: -65.5,37.5 - parent: 1 - type: Transform - - uid: 9230 - components: - - rot: 1.5707963267948966 rad - pos: -73.5,45.5 - parent: 1 - type: Transform - - uid: 9232 - components: - - rot: 1.5707963267948966 rad - pos: -68.5,42.5 - parent: 1 - type: Transform - - uid: 9233 - components: - - rot: 1.5707963267948966 rad - pos: -68.5,43.5 - parent: 1 - type: Transform - - uid: 9235 - components: - - pos: -68.5,45.5 - parent: 1 - type: Transform - - uid: 9236 - components: - - rot: 1.5707963267948966 rad - pos: -73.5,43.5 - parent: 1 - type: Transform - - uid: 9237 - components: - - pos: -68.5,45.5 - parent: 1 - type: Transform - - uid: 9238 - components: - - rot: 1.5707963267948966 rad - pos: -73.5,41.5 - parent: 1 - type: Transform - - uid: 9240 - components: - - rot: 1.5707963267948966 rad - pos: -68.5,39.5 - parent: 1 - type: Transform - - uid: 9243 - components: - - pos: -68.5,38.5 - parent: 1 - type: Transform - - uid: 9244 - components: - - rot: 1.5707963267948966 rad - pos: -71.5,38.5 - parent: 1 - type: Transform - - uid: 9270 - components: - - rot: -1.5707963267948966 rad - pos: -65.5,38.5 - parent: 1 - type: Transform - - uid: 9276 - components: - - rot: -1.5707963267948966 rad - pos: -65.5,46.5 - parent: 1 - type: Transform - - uid: 9277 - components: - - rot: -1.5707963267948966 rad - pos: -64.5,46.5 - parent: 1 - type: Transform - - uid: 9278 - components: - - rot: -1.5707963267948966 rad - pos: -61.5,37.5 - parent: 1 - type: Transform - - uid: 9279 - components: - - rot: -1.5707963267948966 rad - pos: -62.5,37.5 - parent: 1 - type: Transform - - uid: 9280 - components: - - rot: -1.5707963267948966 rad - pos: -63.5,37.5 - parent: 1 - type: Transform - - uid: 9289 - components: - - pos: -59.5,35.5 - parent: 1 - type: Transform - - uid: 9290 - components: - - pos: -59.5,34.5 - parent: 1 - type: Transform - - uid: 9291 - components: - - pos: -61.5,34.5 - parent: 1 - type: Transform - - uid: 9299 - components: - - pos: -61.5,30.5 - parent: 1 - type: Transform - - uid: 9895 - components: - - pos: -72.5,7.5 - parent: 1 - type: Transform - - uid: 9896 - components: - - pos: -71.5,7.5 - parent: 1 - type: Transform - - uid: 9898 - components: - - pos: -59.5,28.5 - parent: 1 - type: Transform - - uid: 9900 - components: - - pos: -59.5,26.5 - parent: 1 - type: Transform - - uid: 9904 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,40.5 - parent: 1 - type: Transform - - uid: 9905 - components: - - pos: -59.5,21.5 - parent: 1 - type: Transform - - uid: 9907 - components: - - pos: -59.5,19.5 - parent: 1 - type: Transform - - uid: 9908 - components: - - pos: -59.5,18.5 - parent: 1 - type: Transform - - uid: 9909 - components: - - pos: -59.5,15.5 - parent: 1 - type: Transform - - uid: 9910 - components: - - pos: -59.5,16.5 - parent: 1 - type: Transform - - uid: 9917 - components: - - pos: -59.5,9.5 - parent: 1 - type: Transform - - uid: 9918 - components: - - pos: -59.5,8.5 - parent: 1 - type: Transform - - uid: 9919 - components: - - pos: -68.5,13.5 - parent: 1 - type: Transform - - uid: 9921 - components: - - pos: -68.5,11.5 - parent: 1 - type: Transform - - uid: 9922 - components: - - pos: -68.5,10.5 - parent: 1 - type: Transform - - uid: 9924 - components: - - pos: -68.5,8.5 - parent: 1 - type: Transform - - uid: 9927 - components: - - pos: -62.5,9.5 - parent: 1 - type: Transform - - uid: 9929 - components: - - pos: -64.5,9.5 - parent: 1 - type: Transform - - uid: 9933 - components: - - pos: -65.5,12.5 - parent: 1 - type: Transform - - uid: 9934 - components: - - pos: -65.5,13.5 - parent: 1 - type: Transform - - uid: 9935 - components: - - pos: -65.5,14.5 - parent: 1 - type: Transform - - uid: 9937 - components: - - pos: -64.5,15.5 - parent: 1 - type: Transform - - uid: 9939 - components: - - pos: -62.5,15.5 - parent: 1 - type: Transform - - uid: 9941 - components: - - pos: -60.5,15.5 - parent: 1 - type: Transform - - uid: 10315 - components: - - pos: -16.5,18.5 - parent: 1 - type: Transform - - uid: 10316 - components: - - pos: -17.5,18.5 - parent: 1 - type: Transform - - uid: 10317 - components: - - pos: -17.5,16.5 - parent: 1 - type: Transform - - uid: 10436 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,13.5 - parent: 1 - type: Transform - - uid: 10437 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,13.5 - parent: 1 - type: Transform - - uid: 10438 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,13.5 - parent: 1 - type: Transform - - uid: 10439 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,7.5 - parent: 1 - type: Transform - - uid: 10442 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,13.5 - parent: 1 - type: Transform - - uid: 10444 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,12.5 - parent: 1 - type: Transform - - uid: 10447 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,10.5 - parent: 1 - type: Transform - - uid: 10448 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,11.5 - parent: 1 - type: Transform - - uid: 10449 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,8.5 - parent: 1 - type: Transform - - uid: 10451 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,8.5 - parent: 1 - type: Transform - - uid: 10452 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,13.5 - parent: 1 - type: Transform - - uid: 10454 - components: - - rot: 1.5707963267948966 rad - pos: -54.5,11.5 - parent: 1 - type: Transform - - uid: 10455 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,11.5 - parent: 1 - type: Transform - - uid: 10457 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,7.5 - parent: 1 - type: Transform - - uid: 10458 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,9.5 - parent: 1 - type: Transform - - uid: 11052 - components: - - rot: 1.5707963267948966 rad - pos: -76.5,51.5 - parent: 1 - type: Transform - - uid: 11886 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,12.5 - parent: 1 - type: Transform - - uid: 11887 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,11.5 - parent: 1 - type: Transform - - uid: 14010 - components: - - pos: -68.5,9.5 - parent: 1 - type: Transform -- proto: WallSolidRust - entities: - - uid: 17 - components: - - pos: -5.5,3.5 - parent: 1 - type: Transform - - uid: 18 - components: - - pos: -14.5,0.5 - parent: 1 - type: Transform - - uid: 19 - components: - - pos: -13.5,-0.5 - parent: 1 - type: Transform - - uid: 25 - components: - - pos: 5.5,-6.5 - parent: 1 - type: Transform - - uid: 30 - components: - - pos: -11.5,-0.5 - parent: 1 - type: Transform - - uid: 32 - components: - - pos: -10.5,-0.5 - parent: 1 - type: Transform - - uid: 33 - components: - - pos: 3.5,-1.5 - parent: 1 - type: Transform - - uid: 40 - components: - - pos: 3.5,1.5 - parent: 1 - type: Transform - - uid: 44 - components: - - pos: 3.5,-0.5 - parent: 1 - type: Transform - - uid: 46 - components: - - pos: -11.5,3.5 - parent: 1 - type: Transform - - uid: 49 - components: - - pos: 1.5,-6.5 - parent: 1 - type: Transform - - uid: 51 - components: - - pos: 1.5,-3.5 - parent: 1 - type: Transform - - uid: 52 - components: - - pos: 0.5,-4.5 - parent: 1 - type: Transform - - uid: 56 - components: - - pos: 4.5,-6.5 - parent: 1 - type: Transform - - uid: 83 - components: - - pos: 0.5,-3.5 - parent: 1 - type: Transform - - uid: 109 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-10.5 - parent: 1 - type: Transform - - uid: 115 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-13.5 - parent: 1 - type: Transform - - uid: 173 - components: - - pos: 2.5,-7.5 - parent: 1 - type: Transform - - uid: 181 - components: - - pos: -14.5,2.5 - parent: 1 - type: Transform - - uid: 193 - components: - - pos: -0.5,-12.5 - parent: 1 - type: Transform - - uid: 197 - components: - - pos: 3.5,-13.5 - parent: 1 - type: Transform - - uid: 467 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-3.5 - parent: 1 - type: Transform - - uid: 470 - components: - - pos: 6.5,3.5 - parent: 1 - type: Transform - - uid: 476 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-3.5 - parent: 1 - type: Transform - - uid: 479 - components: - - pos: 9.5,-4.5 - parent: 1 - type: Transform - - uid: 480 - components: - - pos: 13.5,-3.5 - parent: 1 - type: Transform - - uid: 481 - components: - - pos: 7.5,3.5 - parent: 1 - type: Transform - - uid: 484 - components: - - pos: 9.5,2.5 - parent: 1 - type: Transform - - uid: 489 - components: - - pos: 8.5,-0.5 - parent: 1 - type: Transform - - uid: 490 - components: - - pos: 12.5,-4.5 - parent: 1 - type: Transform - - uid: 513 - components: - - pos: 7.5,-0.5 - parent: 1 - type: Transform - - uid: 529 - components: - - pos: 16.5,-6.5 - parent: 1 - type: Transform - - uid: 576 - components: - - pos: 7.5,-6.5 - parent: 1 - type: Transform - - uid: 618 - components: - - pos: -4.5,0.5 - parent: 1 - type: Transform - - uid: 633 - components: - - pos: 18.5,1.5 - parent: 1 - type: Transform - - uid: 637 - components: - - pos: 16.5,4.5 - parent: 1 - type: Transform - - uid: 640 - components: - - pos: 13.5,4.5 - parent: 1 - type: Transform - - uid: 645 - components: - - pos: 16.5,-3.5 - parent: 1 - type: Transform - - uid: 650 - components: - - pos: 20.5,3.5 - parent: 1 - type: Transform - - uid: 652 - components: - - pos: 21.5,2.5 - parent: 1 - type: Transform - - uid: 653 - components: - - pos: 21.5,1.5 - parent: 1 - type: Transform - - uid: 657 - components: - - pos: 12.5,1.5 - parent: 1 - type: Transform - - uid: 658 - components: - - pos: 21.5,-3.5 - parent: 1 - type: Transform - - uid: 661 - components: - - pos: 22.5,-1.5 - parent: 1 - type: Transform - - uid: 663 - components: - - pos: 18.5,-0.5 - parent: 1 - type: Transform - - uid: 673 - components: - - pos: 25.5,-6.5 - parent: 1 - type: Transform - - uid: 675 - components: - - pos: 24.5,2.5 - parent: 1 - type: Transform - - uid: 679 - components: - - pos: 25.5,-0.5 - parent: 1 - type: Transform - - uid: 683 - components: - - pos: 27.5,-3.5 - parent: 1 - type: Transform - - uid: 684 - components: - - pos: 29.5,-3.5 - parent: 1 - type: Transform - - uid: 686 - components: - - pos: -0.5,-0.5 - parent: 1 - type: Transform - - uid: 687 - components: - - pos: 26.5,-3.5 - parent: 1 - type: Transform - - uid: 689 - components: - - pos: 29.5,-6.5 - parent: 1 - type: Transform - - uid: 690 - components: - - pos: 26.5,-8.5 - parent: 1 - type: Transform - - uid: 696 - components: - - pos: 28.5,0.5 - parent: 1 - type: Transform - - uid: 699 - components: - - pos: 17.5,4.5 - parent: 1 - type: Transform - - uid: 995 - components: - - pos: 24.5,21.5 - parent: 1 - type: Transform - - uid: 999 - components: - - pos: 20.5,11.5 - parent: 1 - type: Transform - - uid: 1003 - components: - - pos: 21.5,27.5 - parent: 1 - type: Transform - - uid: 1009 - components: - - pos: 20.5,9.5 - parent: 1 - type: Transform - - uid: 1033 - components: - - pos: 23.5,10.5 - parent: 1 - type: Transform - - uid: 1034 - components: - - pos: 24.5,8.5 - parent: 1 - type: Transform - - uid: 1037 - components: - - pos: 22.5,10.5 - parent: 1 - type: Transform - - uid: 1040 - components: - - pos: 21.5,7.5 - parent: 1 - type: Transform - - uid: 1042 - components: - - pos: 20.5,33.5 - parent: 1 - type: Transform - - uid: 1055 - components: - - pos: 21.5,20.5 - parent: 1 - type: Transform - - uid: 1058 - components: - - pos: 4.5,7.5 - parent: 1 - type: Transform - - uid: 1059 - components: - - pos: 5.5,7.5 - parent: 1 - type: Transform - - uid: 1069 - components: - - pos: -16.5,-0.5 - parent: 1 - type: Transform - - uid: 1070 - components: - - pos: -18.5,2.5 - parent: 1 - type: Transform - - uid: 1072 - components: - - pos: -16.5,2.5 - parent: 1 - type: Transform - - uid: 1073 - components: - - pos: -19.5,-6.5 - parent: 1 - type: Transform - - uid: 1077 - components: - - pos: -19.5,2.5 - parent: 1 - type: Transform - - uid: 1079 - components: - - pos: -21.5,3.5 - parent: 1 - type: Transform - - uid: 1080 - components: - - pos: -19.5,-0.5 - parent: 1 - type: Transform - - uid: 1082 - components: - - pos: -18.5,-0.5 - parent: 1 - type: Transform - - uid: 1085 - components: - - pos: -19.5,-2.5 - parent: 1 - type: Transform - - uid: 1088 - components: - - pos: -19.5,-4.5 - parent: 1 - type: Transform - - uid: 1089 - components: - - pos: -18.5,-6.5 - parent: 1 - type: Transform - - uid: 1092 - components: - - pos: -16.5,-9.5 - parent: 1 - type: Transform - - uid: 1096 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-9.5 - parent: 1 - type: Transform - - uid: 1101 - components: - - pos: -23.5,1.5 - parent: 1 - type: Transform - - uid: 1102 - components: - - pos: -22.5,0.5 - parent: 1 - type: Transform - - uid: 1106 - components: - - pos: -22.5,-3.5 - parent: 1 - type: Transform - - uid: 1107 - components: - - pos: -15.5,-6.5 - parent: 1 - type: Transform - - uid: 1109 - components: - - pos: -22.5,-6.5 - parent: 1 - type: Transform - - uid: 1110 - components: - - pos: -22.5,-5.5 - parent: 1 - type: Transform - - uid: 1112 - components: - - pos: -25.5,-2.5 - parent: 1 - type: Transform - - uid: 1116 - components: - - pos: -25.5,-6.5 - parent: 1 - type: Transform - - uid: 1117 - components: - - pos: -25.5,-4.5 - parent: 1 - type: Transform - - uid: 1120 - components: - - pos: -27.5,-1.5 - parent: 1 - type: Transform - - uid: 1122 - components: - - pos: -27.5,2.5 - parent: 1 - type: Transform - - uid: 1126 - components: - - pos: -27.5,-3.5 - parent: 1 - type: Transform - - uid: 1133 - components: - - pos: -24.5,-0.5 - parent: 1 - type: Transform - - uid: 1137 - components: - - pos: 11.5,7.5 - parent: 1 - type: Transform - - uid: 1140 - components: - - pos: 14.5,7.5 - parent: 1 - type: Transform - - uid: 1146 - components: - - pos: 18.5,24.5 - parent: 1 - type: Transform - - uid: 1158 - components: - - pos: 8.5,21.5 - parent: 1 - type: Transform - - uid: 1159 - components: - - pos: 8.5,18.5 - parent: 1 - type: Transform - - uid: 1161 - components: - - pos: 18.5,27.5 - parent: 1 - type: Transform - - uid: 1162 - components: - - pos: 21.5,30.5 - parent: 1 - type: Transform - - uid: 1163 - components: - - pos: 13.5,26.5 - parent: 1 - type: Transform - - uid: 1164 - components: - - pos: 15.5,19.5 - parent: 1 - type: Transform - - uid: 1166 - components: - - pos: 15.5,15.5 - parent: 1 - type: Transform - - uid: 1167 - components: - - pos: 7.5,18.5 - parent: 1 - type: Transform - - uid: 1168 - components: - - pos: 21.5,21.5 - parent: 1 - type: Transform - - uid: 1169 - components: - - pos: 12.5,10.5 - parent: 1 - type: Transform - - uid: 1170 - components: - - pos: 21.5,24.5 - parent: 1 - type: Transform - - uid: 1173 - components: - - pos: 11.5,23.5 - parent: 1 - type: Transform - - uid: 1176 - components: - - pos: 12.5,12.5 - parent: 1 - type: Transform - - uid: 1178 - components: - - pos: 15.5,12.5 - parent: 1 - type: Transform - - uid: 1179 - components: - - pos: 21.5,31.5 - parent: 1 - type: Transform - - uid: 1190 - components: - - pos: 7.5,21.5 - parent: 1 - type: Transform - - uid: 1192 - components: - - pos: -0.5,41.5 - parent: 1 - type: Transform - - uid: 1193 - components: - - pos: 10.5,38.5 - parent: 1 - type: Transform - - uid: 1203 - components: - - pos: 15.5,20.5 - parent: 1 - type: Transform - - uid: 1208 - components: - - pos: 1.5,18.5 - parent: 1 - type: Transform - - uid: 1211 - components: - - pos: 4.5,18.5 - parent: 1 - type: Transform - - uid: 1223 - components: - - pos: 16.5,23.5 - parent: 1 - type: Transform - - uid: 1230 - components: - - pos: 12.5,19.5 - parent: 1 - type: Transform - - uid: 1233 - components: - - pos: 10.5,10.5 - parent: 1 - type: Transform - - uid: 1234 - components: - - pos: 8.5,10.5 - parent: 1 - type: Transform - - uid: 1236 - components: - - pos: 7.5,10.5 - parent: 1 - type: Transform - - uid: 1237 - components: - - pos: 20.5,24.5 - parent: 1 - type: Transform - - uid: 1241 - components: - - pos: 21.5,19.5 - parent: 1 - type: Transform - - uid: 1247 - components: - - pos: 15.5,13.5 - parent: 1 - type: Transform - - uid: 1249 - components: - - pos: 1.5,35.5 - parent: 1 - type: Transform - - uid: 1276 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,32.5 - parent: 1 - type: Transform - - uid: 1277 - components: - - pos: 1.5,32.5 - parent: 1 - type: Transform - - uid: 1281 - components: - - pos: -0.5,35.5 - parent: 1 - type: Transform - - uid: 1283 - components: - - pos: -2.5,35.5 - parent: 1 - type: Transform - - uid: 1284 - components: - - pos: -3.5,35.5 - parent: 1 - type: Transform - - uid: 1286 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,35.5 - parent: 1 - type: Transform - - uid: 1287 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,32.5 - parent: 1 - type: Transform - - uid: 1289 - components: - - pos: 11.5,38.5 - parent: 1 - type: Transform - - uid: 1291 - components: - - pos: 1.5,34.5 - parent: 1 - type: Transform - - uid: 1293 - components: - - pos: 6.5,38.5 - parent: 1 - type: Transform - - uid: 1296 - components: - - pos: 13.5,37.5 - parent: 1 - type: Transform - - uid: 1297 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,35.5 - parent: 1 - type: Transform - - uid: 1298 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,32.5 - parent: 1 - type: Transform - - uid: 1300 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,36.5 - parent: 1 - type: Transform - - uid: 1301 - components: - - pos: 15.5,9.5 - parent: 1 - type: Transform - - uid: 1304 - components: - - pos: 18.5,14.5 - parent: 1 - type: Transform - - uid: 1307 - components: - - pos: 19.5,14.5 - parent: 1 - type: Transform - - uid: 1308 - components: - - pos: 21.5,16.5 - parent: 1 - type: Transform - - uid: 1311 - components: - - pos: 8.5,38.5 - parent: 1 - type: Transform - - uid: 1315 - components: - - pos: 15.5,17.5 - parent: 1 - type: Transform - - uid: 1322 - components: - - pos: 13.5,36.5 - parent: 1 - type: Transform - - uid: 1328 - components: - - pos: 10.5,21.5 - parent: 1 - type: Transform - - uid: 1330 - components: - - pos: 12.5,11.5 - parent: 1 - type: Transform - - uid: 1332 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,32.5 - parent: 1 - type: Transform - - uid: 1335 - components: - - pos: 12.5,14.5 - parent: 1 - type: Transform - - uid: 1338 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,26.5 - parent: 1 - type: Transform - - uid: 1346 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,26.5 - parent: 1 - type: Transform - - uid: 1348 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,26.5 - parent: 1 - type: Transform - - uid: 1355 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,32.5 - parent: 1 - type: Transform - - uid: 1357 - components: - - pos: 12.5,17.5 - parent: 1 - type: Transform - - uid: 1363 - components: - - pos: 12.5,16.5 - parent: 1 - type: Transform - - uid: 1367 - components: - - pos: 4.5,35.5 - parent: 1 - type: Transform - - uid: 1370 - components: - - pos: -2.5,17.5 - parent: 1 - type: Transform - - uid: 1373 - components: - - pos: 3.5,45.5 - parent: 1 - type: Transform - - uid: 1375 - components: - - pos: 0.5,44.5 - parent: 1 - type: Transform - - uid: 1377 - components: - - pos: 5.5,43.5 - parent: 1 - type: Transform - - uid: 1379 - components: - - pos: 5.5,41.5 - parent: 1 - type: Transform - - uid: 1382 - components: - - pos: -1.5,42.5 - parent: 1 - type: Transform - - uid: 1383 - components: - - pos: -0.5,44.5 - parent: 1 - type: Transform - - uid: 1387 - components: - - pos: -1.5,40.5 - parent: 1 - type: Transform - - uid: 1389 - components: - - pos: -1.5,39.5 - parent: 1 - type: Transform - - uid: 1391 - components: - - pos: -1.5,37.5 - parent: 1 - type: Transform - - uid: 1392 - components: - - pos: 5.5,39.5 - parent: 1 - type: Transform - - uid: 1394 - components: - - pos: 5.5,21.5 - parent: 1 - type: Transform - - uid: 1419 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,46.5 - parent: 1 - type: Transform - - uid: 1445 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,22.5 - parent: 1 - type: Transform - - uid: 1448 - components: - - pos: -6.5,9.5 - parent: 1 - type: Transform - - uid: 1451 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,13.5 - parent: 1 - type: Transform - - uid: 1452 - components: - - pos: -6.5,11.5 - parent: 1 - type: Transform - - uid: 1454 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,12.5 - parent: 1 - type: Transform - - uid: 1459 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,7.5 - parent: 1 - type: Transform - - uid: 1463 - components: - - pos: -6.5,15.5 - parent: 1 - type: Transform - - uid: 1473 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,18.5 - parent: 1 - type: Transform - - uid: 1474 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,16.5 - parent: 1 - type: Transform - - uid: 1479 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,21.5 - parent: 1 - type: Transform - - uid: 1481 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,20.5 - parent: 1 - type: Transform - - uid: 1483 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,22.5 - parent: 1 - type: Transform - - uid: 1486 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,8.5 - parent: 1 - type: Transform - - uid: 1488 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,7.5 - parent: 1 - type: Transform - - uid: 1490 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,7.5 - parent: 1 - type: Transform - - uid: 1495 - components: - - pos: -18.5,12.5 - parent: 1 - type: Transform - - uid: 1499 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,13.5 - parent: 1 - type: Transform - - uid: 1500 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,10.5 - parent: 1 - type: Transform - - uid: 1501 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,15.5 - parent: 1 - type: Transform - - uid: 1502 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,15.5 - parent: 1 - type: Transform - - uid: 1504 - components: - - pos: -18.5,13.5 - parent: 1 - type: Transform - - uid: 1505 - components: - - pos: -18.5,9.5 - parent: 1 - type: Transform - - uid: 1507 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,7.5 - parent: 1 - type: Transform - - uid: 1512 - components: - - pos: -14.5,16.5 - parent: 1 - type: Transform - - uid: 1588 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,11.5 - parent: 1 - type: Transform - - uid: 1627 - components: - - pos: 9.5,27.5 - parent: 1 - type: Transform - - uid: 1630 - components: - - pos: 6.5,27.5 - parent: 1 - type: Transform - - uid: 1633 - components: - - pos: -2.5,14.5 - parent: 1 - type: Transform - - uid: 1846 - components: - - pos: -5.5,28.5 - parent: 1 - type: Transform - - uid: 1856 - components: - - pos: -5.5,27.5 - parent: 1 - type: Transform - - uid: 1868 - components: - - pos: -6.5,35.5 - parent: 1 - type: Transform - - uid: 1881 - components: - - pos: 13.5,25.5 - parent: 1 - type: Transform - - uid: 1885 - components: - - pos: 1.5,22.5 - parent: 1 - type: Transform - - uid: 1889 - components: - - pos: 2.5,41.5 - parent: 1 - type: Transform - - uid: 1891 - components: - - pos: 3.5,41.5 - parent: 1 - type: Transform - - uid: 1892 - components: - - pos: 8.5,27.5 - parent: 1 - type: Transform - - uid: 1900 - components: - - pos: 12.5,21.5 - parent: 1 - type: Transform - - uid: 2006 - components: - - pos: -45.5,52.5 - parent: 1 - type: Transform - - uid: 2007 - components: - - pos: -45.5,51.5 - parent: 1 - type: Transform - - uid: 2046 - components: - - pos: 17.5,21.5 - parent: 1 - type: Transform - - uid: 2644 - components: - - pos: -19.5,30.5 - parent: 1 - type: Transform - - uid: 2645 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,35.5 - parent: 1 - type: Transform - - uid: 2648 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,35.5 - parent: 1 - type: Transform - - uid: 2649 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,34.5 - parent: 1 - type: Transform - - uid: 2650 - components: - - pos: -12.5,34.5 - parent: 1 - type: Transform - - uid: 2667 - components: - - pos: -17.5,-15.5 - parent: 1 - type: Transform - - uid: 2813 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,19.5 - parent: 1 - type: Transform - - uid: 2837 - components: - - pos: -14.5,26.5 - parent: 1 - type: Transform - - uid: 2936 - components: - - pos: -18.5,23.5 - parent: 1 - type: Transform - - uid: 3027 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,7.5 - parent: 1 - type: Transform - - uid: 3028 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,8.5 - parent: 1 - type: Transform - - uid: 3029 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,9.5 - parent: 1 - type: Transform - - uid: 3039 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,19.5 - parent: 1 - type: Transform - - uid: 3046 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,25.5 - parent: 1 - type: Transform - - uid: 3052 - components: - - pos: -21.5,30.5 - parent: 1 - type: Transform - - uid: 3055 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,7.5 - parent: 1 - type: Transform - - uid: 3057 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,9.5 - parent: 1 - type: Transform - - uid: 3058 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,14.5 - parent: 1 - type: Transform - - uid: 3060 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,11.5 - parent: 1 - type: Transform - - uid: 3061 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,12.5 - parent: 1 - type: Transform - - uid: 3062 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,14.5 - parent: 1 - type: Transform - - uid: 3066 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,18.5 - parent: 1 - type: Transform - - uid: 3067 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,13.5 - parent: 1 - type: Transform - - uid: 3071 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,19.5 - parent: 1 - type: Transform - - uid: 3073 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,14.5 - parent: 1 - type: Transform - - uid: 3075 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,19.5 - parent: 1 - type: Transform - - uid: 3078 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,17.5 - parent: 1 - type: Transform - - uid: 3080 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,9.5 - parent: 1 - type: Transform - - uid: 3111 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,8.5 - parent: 1 - type: Transform - - uid: 3112 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,7.5 - parent: 1 - type: Transform - - uid: 3115 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,11.5 - parent: 1 - type: Transform - - uid: 3116 - components: - - pos: -27.5,29.5 - parent: 1 - type: Transform - - uid: 3119 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,25.5 - parent: 1 - type: Transform - - uid: 3121 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,24.5 - parent: 1 - type: Transform - - uid: 3124 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,22.5 - parent: 1 - type: Transform - - uid: 3127 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,25.5 - parent: 1 - type: Transform - - uid: 3136 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,22.5 - parent: 1 - type: Transform - - uid: 3137 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,22.5 - parent: 1 - type: Transform - - uid: 3139 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,24.5 - parent: 1 - type: Transform - - uid: 3140 - components: - - pos: -34.5,30.5 - parent: 1 - type: Transform - - uid: 3145 - components: - - pos: -10.5,36.5 - parent: 1 - type: Transform - - uid: 3147 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,14.5 - parent: 1 - type: Transform - - uid: 3152 - components: - - pos: -28.5,30.5 - parent: 1 - type: Transform - - uid: 3157 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-1.5 - parent: 1 - type: Transform - - uid: 3158 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-0.5 - parent: 1 - type: Transform - - uid: 3166 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,22.5 - parent: 1 - type: Transform - - uid: 3167 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,10.5 - parent: 1 - type: Transform - - uid: 3169 - components: - - pos: -46.5,19.5 - parent: 1 - type: Transform - - uid: 3213 - components: - - pos: -42.5,15.5 - parent: 1 - type: Transform - - uid: 3215 - components: - - pos: -39.5,19.5 - parent: 1 - type: Transform - - uid: 3217 - components: - - pos: -39.5,16.5 - parent: 1 - type: Transform - - uid: 3420 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,13.5 - parent: 1 - type: Transform - - uid: 3437 - components: - - pos: -39.5,10.5 - parent: 1 - type: Transform - - uid: 3446 - components: - - pos: -23.5,46.5 - parent: 1 - type: Transform - - uid: 3453 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,34.5 - parent: 1 - type: Transform - - uid: 3463 - components: - - pos: -30.5,-2.5 - parent: 1 - type: Transform - - uid: 3465 - components: - - pos: -30.5,-1.5 - parent: 1 - type: Transform - - uid: 3468 - components: - - pos: -30.5,-5.5 - parent: 1 - type: Transform - - uid: 3471 - components: - - pos: -30.5,-7.5 - parent: 1 - type: Transform - - uid: 3473 - components: - - pos: -30.5,1.5 - parent: 1 - type: Transform - - uid: 3474 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-9.5 - parent: 1 - type: Transform - - uid: 3475 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-10.5 - parent: 1 - type: Transform - - uid: 3492 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-9.5 - parent: 1 - type: Transform - - uid: 3494 - components: - - pos: -29.5,-13.5 - parent: 1 - type: Transform - - uid: 3500 - components: - - pos: -26.5,-13.5 - parent: 1 - type: Transform - - uid: 3521 - components: - - pos: -35.5,2.5 - parent: 1 - type: Transform - - uid: 3525 - components: - - rot: -1.5707963267948966 rad - pos: -47.5,0.5 - parent: 1 - type: Transform - - uid: 3528 - components: - - pos: -33.5,-0.5 - parent: 1 - type: Transform - - uid: 3548 - components: - - pos: -30.5,-8.5 - parent: 1 - type: Transform - - uid: 3582 - components: - - pos: -41.5,-8.5 - parent: 1 - type: Transform - - uid: 3597 - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-4.5 - parent: 1 - type: Transform - - uid: 3602 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,0.5 - parent: 1 - type: Transform - - uid: 3603 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,3.5 - parent: 1 - type: Transform - - uid: 3607 - components: - - rot: -1.5707963267948966 rad - pos: -47.5,1.5 - parent: 1 - type: Transform - - uid: 3609 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-0.5 - parent: 1 - type: Transform - - uid: 3610 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-0.5 - parent: 1 - type: Transform - - uid: 3612 - components: - - rot: -1.5707963267948966 rad - pos: -55.5,2.5 - parent: 1 - type: Transform - - uid: 3633 - components: - - pos: -45.5,-14.5 - parent: 1 - type: Transform - - uid: 3648 - components: - - pos: -37.5,-14.5 - parent: 1 - type: Transform - - uid: 3689 - components: - - pos: -16.5,21.5 - parent: 1 - type: Transform - - uid: 3693 - components: - - pos: -43.5,9.5 - parent: 1 - type: Transform - - uid: 3694 - components: - - pos: -43.5,10.5 - parent: 1 - type: Transform - - uid: 4092 - components: - - pos: -53.5,-11.5 - parent: 1 - type: Transform - - uid: 4125 - components: - - pos: -36.5,-12.5 - parent: 1 - type: Transform - - uid: 4171 - components: - - pos: -39.5,15.5 - parent: 1 - type: Transform - - uid: 4174 - components: - - pos: -39.5,26.5 - parent: 1 - type: Transform - - uid: 4175 - components: - - pos: -39.5,29.5 - parent: 1 - type: Transform - - uid: 4178 - components: - - pos: -39.5,22.5 - parent: 1 - type: Transform - - uid: 4181 - components: - - pos: -43.5,26.5 - parent: 1 - type: Transform - - uid: 4183 - components: - - pos: -42.5,22.5 - parent: 1 - type: Transform - - uid: 4185 - components: - - pos: -43.5,24.5 - parent: 1 - type: Transform - - uid: 4189 - components: - - pos: -39.5,23.5 - parent: 1 - type: Transform - - uid: 4191 - components: - - pos: -40.5,29.5 - parent: 1 - type: Transform - - uid: 4194 - components: - - pos: -42.5,29.5 - parent: 1 - type: Transform - - uid: 4198 - components: - - pos: -49.5,30.5 - parent: 1 - type: Transform - - uid: 4204 - components: - - pos: -51.5,18.5 - parent: 1 - type: Transform - - uid: 4251 - components: - - pos: -18.5,26.5 - parent: 1 - type: Transform - - uid: 4268 - components: - - pos: -18.5,25.5 - parent: 1 - type: Transform - - uid: 4272 - components: - - pos: -23.5,36.5 - parent: 1 - type: Transform - - uid: 4285 - components: - - pos: -41.5,16.5 - parent: 1 - type: Transform - - uid: 4288 - components: - - pos: -46.5,17.5 - parent: 1 - type: Transform - - uid: 4300 - components: - - pos: -46.5,20.5 - parent: 1 - type: Transform - - uid: 4302 - components: - - pos: -49.5,16.5 - parent: 1 - type: Transform - - uid: 4304 - components: - - pos: -39.5,13.5 - parent: 1 - type: Transform - - uid: 4307 - components: - - pos: -55.5,23.5 - parent: 1 - type: Transform - - uid: 4318 - components: - - pos: -51.5,21.5 - parent: 1 - type: Transform - - uid: 4322 - components: - - pos: -51.5,17.5 - parent: 1 - type: Transform - - uid: 4323 - components: - - pos: -51.5,14.5 - parent: 1 - type: Transform - - uid: 4503 - components: - - pos: -49.5,-4.5 - parent: 1 - type: Transform - - uid: 4504 - components: - - pos: -49.5,-5.5 - parent: 1 - type: Transform - - uid: 4505 - components: - - pos: -49.5,-2.5 - parent: 1 - type: Transform - - uid: 4507 - components: - - pos: -49.5,-8.5 - parent: 1 - type: Transform - - uid: 4514 - components: - - pos: -55.5,0.5 - parent: 1 - type: Transform - - uid: 4515 - components: - - pos: -54.5,-8.5 - parent: 1 - type: Transform - - uid: 4517 - components: - - pos: -52.5,0.5 - parent: 1 - type: Transform - - uid: 4520 - components: - - pos: -55.5,-2.5 - parent: 1 - type: Transform - - uid: 4528 - components: - - pos: -49.5,-0.5 - parent: 1 - type: Transform - - uid: 4530 - components: - - pos: -51.5,-8.5 - parent: 1 - type: Transform - - uid: 4531 - components: - - pos: -53.5,0.5 - parent: 1 - type: Transform - - uid: 4552 - components: - - pos: -55.5,29.5 - parent: 1 - type: Transform - - uid: 4555 - components: - - pos: -54.5,22.5 - parent: 1 - type: Transform - - uid: 4580 - components: - - pos: -46.5,30.5 - parent: 1 - type: Transform - - uid: 4582 - components: - - pos: -46.5,28.5 - parent: 1 - type: Transform - - uid: 4588 - components: - - pos: -54.5,26.5 - parent: 1 - type: Transform - - uid: 4589 - components: - - pos: -55.5,27.5 - parent: 1 - type: Transform - - uid: 4591 - components: - - pos: -55.5,17.5 - parent: 1 - type: Transform - - uid: 5008 - components: - - rot: 3.141592653589793 rad - pos: -42.5,3.5 - parent: 1 - type: Transform - - uid: 5010 - components: - - pos: -33.5,58.5 - parent: 1 - type: Transform - - uid: 5045 - components: - - pos: -34.5,58.5 - parent: 1 - type: Transform - - uid: 5167 - components: - - pos: -36.5,58.5 - parent: 1 - type: Transform - - uid: 5170 - components: - - pos: -26.5,51.5 - parent: 1 - type: Transform - - uid: 5182 - components: - - rot: -1.5707963267948966 rad - pos: -67.5,7.5 - parent: 1 - type: Transform - - uid: 5190 - components: - - pos: -19.5,52.5 - parent: 1 - type: Transform - - uid: 5208 - components: - - pos: -25.5,56.5 - parent: 1 - type: Transform - - uid: 5223 - components: - - pos: -28.5,56.5 - parent: 1 - type: Transform - - uid: 5306 - components: - - pos: -54.5,-3.5 - parent: 1 - type: Transform - - uid: 5308 - components: - - pos: -52.5,-3.5 - parent: 1 - type: Transform - - uid: 5310 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,2.5 - parent: 1 - type: Transform - - uid: 5410 - components: - - pos: -37.5,56.5 - parent: 1 - type: Transform - - uid: 5411 - components: - - pos: -24.5,-5.5 - parent: 1 - type: Transform - - uid: 5452 - components: - - pos: -38.5,56.5 - parent: 1 - type: Transform - - uid: 5495 - components: - - pos: -39.5,56.5 - parent: 1 - type: Transform - - uid: 5524 - components: - - pos: -41.5,56.5 - parent: 1 - type: Transform - - uid: 5532 - components: - - pos: -43.5,56.5 - parent: 1 - type: Transform - - uid: 5725 - components: - - pos: -43.5,48.5 - parent: 1 - type: Transform - - uid: 5755 - components: - - pos: -45.5,53.5 - parent: 1 - type: Transform - - uid: 5837 - components: - - pos: -10.5,39.5 - parent: 1 - type: Transform - - uid: 5838 - components: - - pos: -8.5,38.5 - parent: 1 - type: Transform - - uid: 5843 - components: - - pos: -10.5,44.5 - parent: 1 - type: Transform - - uid: 5845 - components: - - pos: -6.5,45.5 - parent: 1 - type: Transform - - uid: 5854 - components: - - pos: -5.5,38.5 - parent: 1 - type: Transform - - uid: 5859 - components: - - pos: -10.5,42.5 - parent: 1 - type: Transform - - uid: 5868 - components: - - pos: -4.5,38.5 - parent: 1 - type: Transform - - uid: 5872 - components: - - pos: -4.5,39.5 - parent: 1 - type: Transform - - uid: 5874 - components: - - pos: -4.5,44.5 - parent: 1 - type: Transform - - uid: 5877 - components: - - pos: -4.5,42.5 - parent: 1 - type: Transform - - uid: 5879 - components: - - pos: -8.5,45.5 - parent: 1 - type: Transform - - uid: 5955 - components: - - rot: 3.141592653589793 rad - pos: 2.5,48.5 - parent: 1 - type: Transform - - uid: 5957 - components: - - rot: 3.141592653589793 rad - pos: 1.5,51.5 - parent: 1 - type: Transform - - uid: 5958 - components: - - rot: 3.141592653589793 rad - pos: 1.5,52.5 - parent: 1 - type: Transform - - uid: 5972 - components: - - rot: 3.141592653589793 rad - pos: 4.5,48.5 - parent: 1 - type: Transform - - uid: 5979 - components: - - rot: 3.141592653589793 rad - pos: 9.5,49.5 - parent: 1 - type: Transform - - uid: 5981 - components: - - rot: 3.141592653589793 rad - pos: 13.5,46.5 - parent: 1 - type: Transform - - uid: 5984 - components: - - rot: 3.141592653589793 rad - pos: 11.5,47.5 - parent: 1 - type: Transform - - uid: 5986 - components: - - rot: 3.141592653589793 rad - pos: 10.5,47.5 - parent: 1 - type: Transform - - uid: 5987 - components: - - rot: 3.141592653589793 rad - pos: 8.5,46.5 - parent: 1 - type: Transform - - uid: 5996 - components: - - rot: 3.141592653589793 rad - pos: 5.5,52.5 - parent: 1 - type: Transform - - uid: 5998 - components: - - rot: 3.141592653589793 rad - pos: 5.5,50.5 - parent: 1 - type: Transform - - uid: 6006 - components: - - rot: 3.141592653589793 rad - pos: 1.5,49.5 - parent: 1 - type: Transform - - uid: 6008 - components: - - rot: 3.141592653589793 rad - pos: 9.5,50.5 - parent: 1 - type: Transform - - uid: 6027 - components: - - rot: 3.141592653589793 rad - pos: 8.5,45.5 - parent: 1 - type: Transform - - uid: 6066 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,44.5 - parent: 1 - type: Transform - - uid: 6364 - components: - - rot: 3.141592653589793 rad - pos: -11.5,58.5 - parent: 1 - type: Transform - - uid: 6365 - components: - - rot: 3.141592653589793 rad - pos: -12.5,58.5 - parent: 1 - type: Transform - - uid: 6372 - components: - - rot: 3.141592653589793 rad - pos: -19.5,58.5 - parent: 1 - type: Transform - - uid: 6695 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,43.5 - parent: 1 - type: Transform - - uid: 6696 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,42.5 - parent: 1 - type: Transform - - uid: 6698 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,48.5 - parent: 1 - type: Transform - - uid: 6699 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,48.5 - parent: 1 - type: Transform - - uid: 6701 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,48.5 - parent: 1 - type: Transform - - uid: 6703 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,48.5 - parent: 1 - type: Transform - - uid: 6704 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,48.5 - parent: 1 - type: Transform - - uid: 6706 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,40.5 - parent: 1 - type: Transform - - uid: 6709 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,37.5 - parent: 1 - type: Transform - - uid: 6711 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,35.5 - parent: 1 - type: Transform - - uid: 6714 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,52.5 - parent: 1 - type: Transform - - uid: 6718 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,36.5 - parent: 1 - type: Transform - - uid: 6719 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,35.5 - parent: 1 - type: Transform - - uid: 6722 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,39.5 - parent: 1 - type: Transform - - uid: 6724 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,39.5 - parent: 1 - type: Transform - - uid: 6730 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,34.5 - parent: 1 - type: Transform - - uid: 6732 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,41.5 - parent: 1 - type: Transform - - uid: 6733 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,41.5 - parent: 1 - type: Transform - - uid: 6735 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,41.5 - parent: 1 - type: Transform - - uid: 6739 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,43.5 - parent: 1 - type: Transform - - uid: 6740 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,40.5 - parent: 1 - type: Transform - - uid: 6741 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,38.5 - parent: 1 - type: Transform - - uid: 6743 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,44.5 - parent: 1 - type: Transform - - uid: 6744 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,37.5 - parent: 1 - type: Transform - - uid: 6746 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,34.5 - parent: 1 - type: Transform - - uid: 6748 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,41.5 - parent: 1 - type: Transform - - uid: 6749 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,41.5 - parent: 1 - type: Transform - - uid: 6750 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,40.5 - parent: 1 - type: Transform - - uid: 6756 - components: - - rot: -1.5707963267948966 rad - pos: -43.5,40.5 - parent: 1 - type: Transform - - uid: 6761 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,34.5 - parent: 1 - type: Transform - - uid: 6764 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,34.5 - parent: 1 - type: Transform - - uid: 6766 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,36.5 - parent: 1 - type: Transform - - uid: 6768 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,43.5 - parent: 1 - type: Transform - - uid: 6772 - components: - - rot: -1.5707963267948966 rad - pos: -43.5,51.5 - parent: 1 - type: Transform - - uid: 6773 - components: - - rot: -1.5707963267948966 rad - pos: -43.5,52.5 - parent: 1 - type: Transform - - uid: 6776 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,50.5 - parent: 1 - type: Transform - - uid: 6777 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,53.5 - parent: 1 - type: Transform - - uid: 6780 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,47.5 - parent: 1 - type: Transform - - uid: 6787 - components: - - pos: -45.5,48.5 - parent: 1 - type: Transform - - uid: 6790 - components: - - pos: -45.5,45.5 - parent: 1 - type: Transform - - uid: 6797 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,48.5 - parent: 1 - type: Transform - - uid: 6800 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,49.5 - parent: 1 - type: Transform - - uid: 6802 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,50.5 - parent: 1 - type: Transform - - uid: 6825 - components: - - pos: -26.5,-12.5 - parent: 1 - type: Transform - - uid: 6850 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,56.5 - parent: 1 - type: Transform - - uid: 6852 - components: - - pos: -19.5,-15.5 - parent: 1 - type: Transform - - uid: 6853 - components: - - pos: -22.5,-14.5 - parent: 1 - type: Transform - - uid: 6854 - components: - - pos: -23.5,-14.5 - parent: 1 - type: Transform - - uid: 6855 - components: - - pos: -21.5,-15.5 - parent: 1 - type: Transform - - uid: 6856 - components: - - pos: -22.5,-11.5 - parent: 1 - type: Transform - - uid: 6857 - components: - - pos: -22.5,-13.5 - parent: 1 - type: Transform - - uid: 6900 - components: - - pos: -22.5,-12.5 - parent: 1 - type: Transform - - uid: 6961 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,48.5 - parent: 1 - type: Transform - - uid: 7027 - components: - - pos: -49.5,39.5 - parent: 1 - type: Transform - - uid: 7035 - components: - - pos: -55.5,43.5 - parent: 1 - type: Transform - - uid: 7039 - components: - - pos: -51.5,39.5 - parent: 1 - type: Transform - - uid: 7042 - components: - - pos: -54.5,38.5 - parent: 1 - type: Transform - - uid: 7044 - components: - - pos: -54.5,35.5 - parent: 1 - type: Transform - - uid: 7049 - components: - - pos: -54.5,36.5 - parent: 1 - type: Transform - - uid: 7052 - components: - - pos: -50.5,45.5 - parent: 1 - type: Transform - - uid: 7054 - components: - - pos: -52.5,42.5 - parent: 1 - type: Transform - - uid: 7055 - components: - - pos: -50.5,44.5 - parent: 1 - type: Transform - - uid: 7060 - components: - - pos: -49.5,40.5 - parent: 1 - type: Transform - - uid: 7069 - components: - - pos: -55.5,34.5 - parent: 1 - type: Transform - - uid: 7070 - components: - - pos: -49.5,34.5 - parent: 1 - type: Transform - - uid: 7087 - components: - - pos: -49.5,37.5 - parent: 1 - type: Transform - - uid: 7244 - components: - - pos: -54.5,81.5 - parent: 1 - type: Transform - - uid: 7275 - components: - - pos: -53.5,86.5 - parent: 1 - type: Transform - - uid: 7288 - components: - - pos: -55.5,91.5 - parent: 1 - type: Transform - - uid: 7566 - components: - - pos: -64.5,37.5 - parent: 1 - type: Transform - - uid: 7567 - components: - - pos: -65.5,45.5 - parent: 1 - type: Transform - - uid: 7568 - components: - - pos: -59.5,43.5 - parent: 1 - type: Transform - - uid: 7921 - components: - - pos: -50.5,-13.5 - parent: 1 - type: Transform - - uid: 7922 - components: - - pos: -50.5,-12.5 - parent: 1 - type: Transform - - uid: 8057 - components: - - pos: -26.5,58.5 - parent: 1 - type: Transform - - uid: 8058 - components: - - pos: -25.5,58.5 - parent: 1 - type: Transform - - uid: 8314 - components: - - rot: 3.141592653589793 rad - pos: -69.5,7.5 - parent: 1 - type: Transform - - uid: 9160 - components: - - pos: -68.5,53.5 - parent: 1 - type: Transform - - uid: 9164 - components: - - pos: -68.5,50.5 - parent: 1 - type: Transform - - uid: 9165 - components: - - pos: -68.5,54.5 - parent: 1 - type: Transform - - uid: 9167 - components: - - pos: -71.5,50.5 - parent: 1 - type: Transform - - uid: 9168 - components: - - pos: -69.5,50.5 - parent: 1 - type: Transform - - uid: 9175 - components: - - pos: -68.5,46.5 - parent: 1 - type: Transform - - uid: 9176 - components: - - pos: -70.5,46.5 - parent: 1 - type: Transform - - uid: 9178 - components: - - pos: -71.5,46.5 - parent: 1 - type: Transform - - uid: 9180 - components: - - pos: -73.5,46.5 - parent: 1 - type: Transform - - uid: 9183 - components: - - pos: -73.5,42.5 - parent: 1 - type: Transform - - uid: 9192 - components: - - pos: -68.5,55.5 - parent: 1 - type: Transform - - uid: 9200 - components: - - pos: -73.5,48.5 - parent: 1 - type: Transform - - uid: 9205 - components: - - pos: -59.5,46.5 - parent: 1 - type: Transform - - uid: 9208 - components: - - pos: -65.5,40.5 - parent: 1 - type: Transform - - uid: 9215 - components: - - pos: -59.5,41.5 - parent: 1 - type: Transform - - uid: 9222 - components: - - pos: -61.5,46.5 - parent: 1 - type: Transform - - uid: 9228 - components: - - pos: -63.5,46.5 - parent: 1 - type: Transform - - uid: 9229 - components: - - pos: -69.5,38.5 - parent: 1 - type: Transform - - uid: 9231 - components: - - pos: -73.5,39.5 - parent: 1 - type: Transform - - uid: 9234 - components: - - pos: -68.5,44.5 - parent: 1 - type: Transform - - uid: 9239 - components: - - pos: -73.5,40.5 - parent: 1 - type: Transform - - uid: 9242 - components: - - pos: -68.5,41.5 - parent: 1 - type: Transform - - uid: 9269 - components: - - pos: -72.5,38.5 - parent: 1 - type: Transform - - uid: 9273 - components: - - pos: -65.5,42.5 - parent: 1 - type: Transform - - uid: 9275 - components: - - pos: -60.5,37.5 - parent: 1 - type: Transform - - uid: 9293 - components: - - pos: -65.5,39.5 - parent: 1 - type: Transform - - uid: 9301 - components: - - pos: -59.5,36.5 - parent: 1 - type: Transform - - uid: 9782 - components: - - rot: 3.141592653589793 rad - pos: -1.5,48.5 - parent: 1 - type: Transform - - uid: 9897 - components: - - pos: -59.5,20.5 - parent: 1 - type: Transform - - uid: 9899 - components: - - pos: -59.5,17.5 - parent: 1 - type: Transform - - uid: 9915 - components: - - pos: -60.5,9.5 - parent: 1 - type: Transform - - uid: 9916 - components: - - pos: -61.5,9.5 - parent: 1 - type: Transform - - uid: 9925 - components: - - pos: -63.5,9.5 - parent: 1 - type: Transform - - uid: 9928 - components: - - pos: -65.5,10.5 - parent: 1 - type: Transform - - uid: 9930 - components: - - pos: -65.5,11.5 - parent: 1 - type: Transform - - uid: 9931 - components: - - pos: -65.5,15.5 - parent: 1 - type: Transform - - uid: 9932 - components: - - pos: -61.5,15.5 - parent: 1 - type: Transform - - uid: 10440 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,13.5 - parent: 1 - type: Transform - - uid: 10441 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,11.5 - parent: 1 - type: Transform - - uid: 10450 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,10.5 - parent: 1 - type: Transform - - uid: 10453 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,13.5 - parent: 1 - type: Transform - - uid: 10456 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,11.5 - parent: 1 - type: Transform - - uid: 13310 - components: - - pos: 1.5,13.5 - parent: 1 - type: Transform - - uid: 13311 - components: - - pos: 0.5,13.5 - parent: 1 - type: Transform - - uid: 13312 - components: - - pos: 3.5,13.5 - parent: 1 - type: Transform - - uid: 13313 - components: - - pos: 5.5,14.5 - parent: 1 - type: Transform - - uid: 13314 - components: - - pos: 5.5,13.5 - parent: 1 - type: Transform - - uid: 13315 - components: - - pos: 5.5,16.5 - parent: 1 - type: Transform - - uid: 13316 - components: - - pos: 5.5,11.5 - parent: 1 - type: Transform - - uid: 14971 - components: - - pos: -59.5,27.5 - parent: 1 - type: Transform - - uid: 14972 - components: - - pos: -59.5,29.5 - parent: 1 - type: Transform - - uid: 14973 - components: - - pos: -59.5,30.5 - parent: 1 - type: Transform -- proto: WallVaultRock - entities: - - uid: 167 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-11.5 - parent: 1 - type: Transform - - uid: 210 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-12.5 - parent: 1 - type: Transform - - uid: 211 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-11.5 - parent: 1 - type: Transform - - uid: 494 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-11.5 - parent: 1 - type: Transform - - uid: 524 - components: - - pos: 12.5,-12.5 - parent: 1 - type: Transform - - uid: 1920 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-11.5 - parent: 1 - type: Transform - - uid: 1921 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-13.5 - parent: 1 - type: Transform - - uid: 14822 - components: - - pos: 12.5,-14.5 - parent: 1 - type: Transform - - uid: 14827 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-15.5 - parent: 1 - type: Transform - - uid: 14828 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-14.5 - parent: 1 - type: Transform - - uid: 14829 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-15.5 - parent: 1 - type: Transform -- proto: WallWood - entities: - - uid: 3476 - components: - - rot: -1.5707963267948966 rad - pos: -51.5,7.5 - parent: 1 - type: Transform - - uid: 3496 - components: - - rot: 3.141592653589793 rad - pos: -49.5,11.5 - parent: 1 - type: Transform - - uid: 5315 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,7.5 - parent: 1 - type: Transform - - uid: 5321 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,7.5 - parent: 1 - type: Transform - - uid: 5323 - components: - - rot: -1.5707963267948966 rad - pos: -52.5,7.5 - parent: 1 - type: Transform - - uid: 5347 - components: - - rot: 3.141592653589793 rad - pos: -48.5,12.5 - parent: 1 - type: Transform - - uid: 5348 - components: - - rot: 3.141592653589793 rad - pos: -48.5,11.5 - parent: 1 - type: Transform - - uid: 5445 - components: - - rot: 3.141592653589793 rad - pos: -53.5,9.5 - parent: 1 - type: Transform - - uid: 6154 - components: - - rot: -1.5707963267948966 rad - pos: -54.5,7.5 - parent: 1 - type: Transform - - uid: 10443 - components: - - rot: 1.5707963267948966 rad - pos: -54.5,9.5 - parent: 1 - type: Transform - - uid: 10446 - components: - - rot: 3.141592653589793 rad - pos: -46.5,11.5 - parent: 1 - type: Transform - - uid: 11894 - components: - - rot: -1.5707963267948966 rad - pos: -47.5,7.5 - parent: 1 - type: Transform - - uid: 13292 - components: - - rot: -1.5707963267948966 rad - pos: -53.5,7.5 - parent: 1 - type: Transform - - uid: 14820 - components: - - rot: -1.5707963267948966 rad - pos: -48.5,7.5 - parent: 1 - type: Transform -- proto: WardrobeCargoFilled - entities: - - uid: 3664 - components: - - pos: -43.5,2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 15095 - components: - - pos: -44.5,2.5 - parent: 1 - type: Transform -- proto: WardrobeGreenFilled - entities: - - uid: 14456 - components: - - pos: -72.5,8.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 14457 - components: - - pos: -69.5,8.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: WardrobeGreyFilled - entities: - - uid: 5934 - components: - - pos: -6.5,39.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5935 - components: - - pos: -5.5,39.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5936 - components: - - pos: -8.5,39.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 5937 - components: - - pos: -9.5,39.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: WardrobePrisonFilled - entities: - - uid: 1913 - components: - - pos: -50.5,51.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 1917 - components: - - pos: -53.5,51.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 1919 - components: - - pos: -56.5,51.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 7350 - components: - - pos: -55.5,90.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 7359 - components: - - pos: -55.5,84.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: WarningCO2 - entities: - - uid: 13931 - components: - - rot: 1.5707963267948966 rad - pos: -87.5,38.5 - parent: 1 - type: Transform -- proto: WarningN2 - entities: - - uid: 13935 - components: - - rot: 1.5707963267948966 rad - pos: -87.5,36.5 - parent: 1 - type: Transform -- proto: WarningN2O - entities: - - uid: 13932 - components: - - rot: 1.5707963267948966 rad - pos: -87.5,40.5 - parent: 1 - type: Transform -- proto: WarningO2 - entities: - - uid: 13934 - components: - - rot: 1.5707963267948966 rad - pos: -87.5,34.5 - parent: 1 - type: Transform -- proto: WarningPlasma - entities: - - uid: 13933 - components: - - rot: 1.5707963267948966 rad - pos: -87.5,42.5 - parent: 1 - type: Transform -- proto: WarningWaste - entities: - - uid: 13930 - components: - - rot: 1.5707963267948966 rad - pos: -87.5,44.5 - parent: 1 - type: Transform -- proto: WarpPoint - entities: - - uid: 13298 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,25.5 - parent: 1 - type: Transform - - location: med - type: WarpPoint - - uid: 13777 - components: - - pos: -37.5,37.5 - parent: 1 - type: Transform - - location: bar - type: WarpPoint - - uid: 13783 - components: - - pos: -32.5,26.5 - parent: 1 - type: Transform - - location: theatre - type: WarpPoint - - uid: 13784 - components: - - pos: -21.5,40.5 - parent: 1 - type: Transform - - location: HoP - type: WarpPoint - - uid: 13785 - components: - - pos: -16.5,60.5 - parent: 1 - type: Transform - - location: bridge - type: WarpPoint - - uid: 13787 - components: - - pos: 27.5,13.5 - parent: 1 - type: Transform - - location: evac - type: WarpPoint - - uid: 13788 - components: - - pos: 15.5,-0.5 - parent: 1 - type: Transform - - location: chapel - type: WarpPoint - - uid: 13789 - components: - - pos: -7.5,-1.5 - parent: 1 - type: Transform - - location: sci - type: WarpPoint - - uid: 13790 - components: - - pos: -38.5,-5.5 - parent: 1 - type: Transform - - location: cargo - type: WarpPoint - - uid: 14931 - components: - - pos: -53.5,55.5 - parent: 1 - type: Transform - - location: sec - type: WarpPoint - - uid: 14932 - components: - - pos: -70.5,26.5 - parent: 1 - type: Transform - - location: eng - type: WarpPoint -- proto: WaterCooler - entities: - - uid: 331 - components: - - pos: -2.5,-5.5 - parent: 1 - type: Transform - - uid: 3088 - components: - - pos: -22.5,13.5 - parent: 1 - type: Transform - - uid: 8024 - components: - - pos: -60.5,61.5 - parent: 1 - type: Transform -- proto: WaterTank - entities: - - uid: 10388 - components: - - pos: -0.5,45.5 - parent: 1 - type: Transform -- proto: WaterTankFull - entities: - - uid: 78 - components: - - pos: -52.5,41.5 - parent: 1 - type: Transform - - uid: 3679 - components: - - pos: -51.5,-10.5 - parent: 1 - type: Transform - - uid: 5418 - components: - - pos: -29.5,-1.5 - parent: 1 - type: Transform - - uid: 5419 - components: - - pos: -21.5,2.5 - parent: 1 - type: Transform - - uid: 5420 - components: - - pos: 16.5,-4.5 - parent: 1 - type: Transform - - uid: 5614 - components: - - pos: -49.5,15.5 - parent: 1 - type: Transform - - uid: 5712 - components: - - pos: -24.5,20.5 - parent: 1 - type: Transform - - uid: 5741 - components: - - pos: -61.5,86.5 - parent: 1 - type: Transform - - uid: 5787 - components: - - pos: -7.5,21.5 - parent: 1 - type: Transform - - uid: 10365 - components: - - pos: -35.5,54.5 - parent: 1 - type: Transform - - uid: 10476 - components: - - pos: -52.5,44.5 - parent: 1 - type: Transform - - uid: 12899 - components: - - pos: 8.5,8.5 - parent: 1 - type: Transform - - uid: 12913 - components: - - pos: 19.5,25.5 - parent: 1 - type: Transform - - uid: 14308 - components: - - pos: -74.5,48.5 - parent: 1 - type: Transform - - uid: 14589 - components: - - pos: -67.5,9.5 - parent: 1 - type: Transform -- proto: WaterTankHighCapacity - entities: - - uid: 6945 - components: - - pos: -41.5,47.5 - parent: 1 - type: Transform -- proto: WaterVaporCanister - entities: - - uid: 368 - components: - - pos: 4.5,-8.5 - parent: 1 - type: Transform -- proto: WeaponCapacitorRecharger - entities: - - uid: 3134 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,10.5 - parent: 1 - type: Transform - - uid: 7965 - components: - - pos: -60.5,50.5 - parent: 1 - type: Transform - - uid: 9156 - components: - - rot: 3.141592653589793 rad - pos: -53.5,58.5 - parent: 1 - type: Transform - - uid: 10918 - components: - - pos: -17.5,66.5 - parent: 1 - type: Transform - - uid: 13338 - components: - - pos: -1.5,10.5 - parent: 1 - type: Transform -- proto: WeaponDisabler - entities: - - uid: 7954 - components: - - pos: -48.547054,59.421623 - parent: 1 - type: Transform - - uid: 8005 - components: - - pos: -61.153942,50.71659 - parent: 1 - type: Transform - - uid: 8006 - components: - - pos: -61.200817,50.52909 - parent: 1 - type: Transform - - uid: 8007 - components: - - pos: -61.372692,50.68534 - parent: 1 - type: Transform -- proto: WeaponFlareGun - entities: - - uid: 1672 - components: - - pos: 16.491018,-8.470055 - parent: 1 - type: Transform -- proto: WeaponLaserCarbine - entities: - - uid: 8357 - components: - - pos: -43.394764,61.749336 - parent: 1 - type: Transform - - uid: 8358 - components: - - pos: -43.31664,61.63996 - parent: 1 - type: Transform -- proto: WeaponPistolMk58 - entities: - - uid: 7955 - components: - - pos: -48.53143,59.640373 - parent: 1 - type: Transform - - uid: 8373 - components: - - pos: -42.53539,61.624336 - parent: 1 - type: Transform - - uid: 8374 - components: - - pos: -42.426014,61.54621 - parent: 1 - type: Transform -- proto: WeaponRifleLecter - entities: - - uid: 8354 - components: - - pos: -41.519764,63.624336 - parent: 1 - type: Transform - - uid: 8355 - components: - - pos: -41.488514,63.38996 - parent: 1 - type: Transform - - uid: 8356 - components: - - pos: -41.488514,63.13996 - parent: 1 - type: Transform -- proto: WeaponShotgunKammerer - entities: - - uid: 8370 - components: - - pos: -41.69164,61.686836 - parent: 1 - type: Transform - - uid: 8371 - components: - - pos: -41.62914,61.561836 - parent: 1 - type: Transform -- proto: WeaponSubMachineGunWt550 - entities: - - uid: 7937 - components: - - pos: -60.450623,64.62244 - parent: 1 - type: Transform -- proto: WeaponTurretSyndicateBroken - entities: - - uid: 15844 - components: - - pos: -27.5,54.5 - parent: 1 - type: Transform -- proto: WelderIndustrialAdvanced - entities: - - uid: 15838 - components: - - pos: -82.43898,31.548532 - parent: 1 - type: Transform -- proto: WeldingFuelTankFull - entities: - - uid: 3565 - components: - - pos: -50.5,-10.5 - parent: 1 - type: Transform - - uid: 5416 - components: - - pos: -20.5,2.5 - parent: 1 - type: Transform - - uid: 5417 - components: - - pos: -29.5,-0.5 - parent: 1 - type: Transform - - uid: 5421 - components: - - pos: 17.5,-4.5 - parent: 1 - type: Transform - - uid: 5613 - components: - - pos: -48.5,15.5 - parent: 1 - type: Transform - - uid: 5615 - components: - - pos: -50.5,29.5 - parent: 1 - type: Transform - - uid: 5711 - components: - - pos: -23.5,20.5 - parent: 1 - type: Transform - - uid: 5786 - components: - - pos: -7.5,20.5 - parent: 1 - type: Transform - - uid: 10364 - components: - - pos: -36.5,54.5 - parent: 1 - type: Transform - - uid: 10387 - components: - - pos: 0.5,45.5 - parent: 1 - type: Transform - - uid: 10475 - components: - - pos: -51.5,44.5 - parent: 1 - type: Transform - - uid: 11051 - components: - - pos: -70.5,35.5 - parent: 1 - type: Transform - - uid: 12898 - components: - - pos: 7.5,8.5 - parent: 1 - type: Transform - - uid: 12912 - components: - - pos: 20.5,25.5 - parent: 1 - type: Transform - - uid: 14307 - components: - - pos: -74.5,49.5 - parent: 1 - type: Transform - - uid: 14588 - components: - - pos: -67.5,8.5 - parent: 1 - type: Transform -- proto: Windoor - entities: - - uid: 275 - components: - - rot: 3.141592653589793 rad - pos: -7.5,3.5 - parent: 1 - type: Transform - - uid: 3758 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,0.5 - parent: 1 - type: Transform - - uid: 3759 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,1.5 - parent: 1 - type: Transform - - uid: 3760 - components: - - rot: 3.141592653589793 rad - pos: -38.5,2.5 - parent: 1 - type: Transform - - uid: 3761 - components: - - rot: 3.141592653589793 rad - pos: -37.5,2.5 - parent: 1 - type: Transform - - uid: 3762 - components: - - rot: 3.141592653589793 rad - pos: -36.5,2.5 - parent: 1 - type: Transform - - uid: 3763 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,1.5 - parent: 1 - type: Transform - - uid: 3764 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,0.5 - parent: 1 - type: Transform - - uid: 6963 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,44.5 - parent: 1 - type: Transform - - uid: 6964 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,43.5 - parent: 1 - type: Transform - - uid: 6965 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,42.5 - parent: 1 - type: Transform - - uid: 13999 - components: - - pos: -69.5,43.5 - parent: 1 - type: Transform - - uid: 14360 - components: - - rot: -1.5707963267948966 rad - pos: -62.5,14.5 - parent: 1 - type: Transform - - uid: 14826 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,1.5 - parent: 1 - type: Transform -- proto: WindoorChapelLocked - entities: - - uid: 1648 - components: - - pos: 20.5,0.5 - parent: 1 - type: Transform -- proto: WindoorHydroponicsLocked - entities: - - uid: 6888 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,42.5 - parent: 1 - type: Transform - - uid: 6889 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,43.5 - parent: 1 - type: Transform - - uid: 6962 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,44.5 - parent: 1 - type: Transform -- proto: WindoorKitchenHydroponicsLocked - entities: - - uid: 6883 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,46.5 - parent: 1 - type: Transform - - uid: 6884 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,45.5 - parent: 1 - type: Transform - - uid: 6885 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,44.5 - parent: 1 - type: Transform - - uid: 6886 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,43.5 - parent: 1 - type: Transform -- proto: WindoorKitchenLocked - entities: - - uid: 6904 - components: - - rot: 3.141592653589793 rad - pos: -36.5,41.5 - parent: 1 - type: Transform - - uid: 6905 - components: - - rot: 3.141592653589793 rad - pos: -35.5,41.5 - parent: 1 - type: Transform -- proto: WindoorSecure - entities: - - uid: 1652 - components: - - rot: 3.141592653589793 rad - pos: -0.5,28.5 - parent: 1 - type: Transform - - uid: 1653 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,26.5 - parent: 1 - type: Transform - - uid: 1654 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,25.5 - parent: 1 - type: Transform - - uid: 6655 - components: - - pos: -19.5,36.5 - parent: 1 - type: Transform - - uid: 6656 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,35.5 - parent: 1 - type: Transform - - uid: 6657 - components: - - rot: 3.141592653589793 rad - pos: -22.5,34.5 - parent: 1 - type: Transform - - uid: 7877 - components: - - pos: -47.5,56.5 - parent: 1 - type: Transform - - uid: 7878 - components: - - rot: 3.141592653589793 rad - pos: -47.5,63.5 - parent: 1 - type: Transform - - uid: 13321 - components: - - pos: -0.5,7.5 - parent: 1 - type: Transform - - uid: 13322 - components: - - pos: 0.5,7.5 - parent: 1 - type: Transform - - uid: 13370 - components: - - rot: 1.5707963267948966 rad - pos: -72.5,54.5 - parent: 1 - type: Transform -- proto: WindoorSecureArmoryLocked - entities: - - uid: 7874 - components: - - rot: 3.141592653589793 rad - pos: -47.5,56.5 - parent: 1 - type: Transform - - uid: 7875 - components: - - pos: -47.5,63.5 - parent: 1 - type: Transform -- proto: WindoorSecureCargoLocked - entities: - - uid: 3625 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,0.5 - parent: 1 - type: Transform - - uid: 3626 - components: - - pos: -38.5,2.5 - parent: 1 - type: Transform - - uid: 3627 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,1.5 - parent: 1 - type: Transform - - uid: 3635 - components: - - pos: -37.5,2.5 - parent: 1 - type: Transform - - uid: 3636 - components: - - pos: -36.5,2.5 - parent: 1 - type: Transform - - uid: 3637 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,1.5 - parent: 1 - type: Transform - - uid: 3638 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,0.5 - parent: 1 - type: Transform - - uid: 14713 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,1.5 - parent: 1 - type: Transform -- proto: WindoorSecureChemistryLocked - entities: - - uid: 1649 - components: - - pos: -0.5,28.5 - parent: 1 - type: Transform - - uid: 1650 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,26.5 - parent: 1 - type: Transform - - uid: 1651 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,25.5 - parent: 1 - type: Transform -- proto: WindoorSecureEngineeringLocked - entities: - - uid: 2800 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,8.5 - parent: 1 - type: Transform - - uid: 13624 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,32.5 - parent: 1 - type: Transform -- proto: WindoorSecureHeadOfPersonnelLocked - entities: - - uid: 3458 - components: - - rot: 3.141592653589793 rad - pos: -19.5,36.5 - parent: 1 - type: Transform -- proto: WindoorSecureMedicalLocked - entities: - - uid: 2342 - components: - - rot: 3.141592653589793 rad - pos: 10.5,13.5 - parent: 1 - type: Transform - - uid: 2343 - components: - - rot: 3.141592653589793 rad - pos: 8.5,13.5 - parent: 1 - type: Transform - - uid: 2344 - components: - - rot: 3.141592653589793 rad - pos: 6.5,13.5 - parent: 1 - type: Transform - - uid: 2798 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,13.5 - parent: 1 - type: Transform -- proto: WindoorSecureScienceLocked - entities: - - uid: 220 - components: - - pos: -5.5,-14.5 - parent: 1 - type: Transform - - uid: 274 - components: - - pos: -7.5,3.5 - parent: 1 - type: Transform -- proto: WindoorSecureSecurityLocked - entities: - - uid: 5570 - components: - - pos: -16.5,24.5 - parent: 1 - type: Transform - - uid: 7871 - components: - - rot: 3.141592653589793 rad - pos: -57.5,52.5 - parent: 1 - type: Transform - - links: - - 4985 - type: DeviceLinkSink - - uid: 7872 - components: - - rot: 3.141592653589793 rad - pos: -54.5,52.5 - parent: 1 - type: Transform - - links: - - 4986 - type: DeviceLinkSink - - uid: 7873 - components: - - rot: 3.141592653589793 rad - pos: -51.5,52.5 - parent: 1 - type: Transform - - links: - - 4987 - type: DeviceLinkSink - - uid: 13318 - components: - - rot: 3.141592653589793 rad - pos: -0.5,7.5 - parent: 1 - type: Transform - - uid: 13319 - components: - - rot: 3.141592653589793 rad - pos: 0.5,7.5 - parent: 1 - type: Transform - - uid: 15975 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,9.5 - parent: 1 - type: Transform -- proto: WindoorServiceLocked - entities: - - uid: 2799 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,14.5 - parent: 1 - type: Transform -- proto: WindoorTheatreLocked - entities: - - uid: 3417 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,29.5 - parent: 1 - type: Transform -- proto: Window - entities: - - uid: 4 - components: - - pos: -8.5,3.5 - parent: 1 - type: Transform - - uid: 36 - components: - - pos: -6.5,3.5 - parent: 1 - type: Transform - - uid: 39 - components: - - pos: -7.5,-4.5 - parent: 1 - type: Transform - - uid: 57 - components: - - pos: -7.5,-5.5 - parent: 1 - type: Transform - - uid: 66 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-4.5 - parent: 1 - type: Transform - - uid: 177 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-3.5 - parent: 1 - type: Transform - - uid: 180 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-5.5 - parent: 1 - type: Transform - - uid: 227 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-1.5 - parent: 1 - type: Transform - - uid: 1051 - components: - - pos: 18.5,7.5 - parent: 1 - type: Transform - - uid: 1250 - components: - - pos: 11.5,27.5 - parent: 1 - type: Transform - - uid: 1336 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,34.5 - parent: 1 - type: Transform - - uid: 1340 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,30.5 - parent: 1 - type: Transform - - uid: 1341 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,29.5 - parent: 1 - type: Transform - - uid: 1344 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,32.5 - parent: 1 - type: Transform - - uid: 1371 - components: - - pos: 5.5,23.5 - parent: 1 - type: Transform - - uid: 1372 - components: - - pos: 5.5,22.5 - parent: 1 - type: Transform - - uid: 1437 - components: - - rot: 3.141592653589793 rad - pos: 24.5,39.5 - parent: 1 - type: Transform - - uid: 1438 - components: - - rot: 3.141592653589793 rad - pos: 24.5,40.5 - parent: 1 - type: Transform - - uid: 1625 - components: - - pos: 12.5,27.5 - parent: 1 - type: Transform - - uid: 1635 - components: - - pos: 5.5,26.5 - parent: 1 - type: Transform - - uid: 3047 - components: - - pos: -26.5,30.5 - parent: 1 - type: Transform - - uid: 3082 - components: - - pos: -27.5,7.5 - parent: 1 - type: Transform - - uid: 3083 - components: - - pos: -26.5,7.5 - parent: 1 - type: Transform - - uid: 3084 - components: - - pos: -25.5,7.5 - parent: 1 - type: Transform - - uid: 3131 - components: - - pos: -23.5,30.5 - parent: 1 - type: Transform - - uid: 3423 - components: - - pos: -35.5,15.5 - parent: 1 - type: Transform - - uid: 3425 - components: - - pos: -35.5,18.5 - parent: 1 - type: Transform - - uid: 3426 - components: - - pos: -35.5,19.5 - parent: 1 - type: Transform - - uid: 3428 - components: - - pos: -35.5,21.5 - parent: 1 - type: Transform - - uid: 3549 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-0.5 - parent: 1 - type: Transform - - uid: 3568 - components: - - pos: -38.5,-8.5 - parent: 1 - type: Transform - - uid: 3576 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-4.5 - parent: 1 - type: Transform - - uid: 3586 - components: - - pos: -42.5,-4.5 - parent: 1 - type: Transform - - uid: 3591 - components: - - pos: -42.5,-3.5 - parent: 1 - type: Transform - - uid: 3592 - components: - - pos: -42.5,-1.5 - parent: 1 - type: Transform - - uid: 3608 - components: - - pos: -44.5,3.5 - parent: 1 - type: Transform - - uid: 3640 - components: - - pos: -38.5,-0.5 - parent: 1 - type: Transform - - uid: 3641 - components: - - pos: -36.5,-0.5 - parent: 1 - type: Transform - - uid: 3710 - components: - - pos: -37.5,-8.5 - parent: 1 - type: Transform - - uid: 3774 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-4.5 - parent: 1 - type: Transform - - uid: 5253 - components: - - pos: -55.5,18.5 - parent: 1 - type: Transform - - uid: 5254 - components: - - pos: -55.5,19.5 - parent: 1 - type: Transform - - uid: 5851 - components: - - pos: -14.5,44.5 - parent: 1 - type: Transform - - uid: 5852 - components: - - pos: -14.5,43.5 - parent: 1 - type: Transform - - uid: 5856 - components: - - pos: -14.5,39.5 - parent: 1 - type: Transform - - uid: 5857 - components: - - pos: -14.5,38.5 - parent: 1 - type: Transform - - uid: 5860 - components: - - pos: -14.5,35.5 - parent: 1 - type: Transform - - uid: 6272 - components: - - pos: -59.5,10.5 - parent: 1 - type: Transform - - uid: 6753 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,34.5 - parent: 1 - type: Transform - - uid: 6754 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,34.5 - parent: 1 - type: Transform - - uid: 6755 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,34.5 - parent: 1 - type: Transform - - uid: 6784 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,48.5 - parent: 1 - type: Transform - - uid: 6794 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,41.5 - parent: 1 - type: Transform - - uid: 6808 - components: - - pos: -40.5,53.5 - parent: 1 - type: Transform - - uid: 6820 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,48.5 - parent: 1 - type: Transform - - uid: 6949 - components: - - pos: -41.5,53.5 - parent: 1 - type: Transform - - uid: 9008 - components: - - rot: 3.141592653589793 rad - pos: 24.5,38.5 - parent: 1 - type: Transform - - uid: 9009 - components: - - rot: 3.141592653589793 rad - pos: 24.5,41.5 - parent: 1 - type: Transform - - uid: 9018 - components: - - pos: -59.5,11.5 - parent: 1 - type: Transform - - uid: 10249 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-4.5 - parent: 1 - type: Transform - - uid: 10251 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-4.5 - parent: 1 - type: Transform - - uid: 10924 - components: - - pos: -64.5,43.5 - parent: 1 - type: Transform - - uid: 10925 - components: - - pos: -63.5,43.5 - parent: 1 - type: Transform - - uid: 10929 - components: - - pos: -61.5,43.5 - parent: 1 - type: Transform - - uid: 11934 - components: - - pos: -59.5,13.5 - parent: 1 - type: Transform - - uid: 13054 - components: - - pos: -59.5,14.5 - parent: 1 - type: Transform -- proto: WindowDirectional - entities: - - uid: 1229 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,25.5 - parent: 1 - type: Transform - - uid: 1632 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,26.5 - parent: 1 - type: Transform - - uid: 1647 - components: - - pos: 19.5,0.5 - parent: 1 - type: Transform - - uid: 2695 - components: - - rot: 3.141592653589793 rad - pos: -25.5,30.5 - parent: 1 - type: Transform - - uid: 3133 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,15.5 - parent: 1 - type: Transform -- proto: WindowFrostedDirectional - entities: - - uid: 1225 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,30.5 - parent: 1 - type: Transform - - uid: 1410 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,31.5 - parent: 1 - type: Transform - - uid: 1411 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,30.5 - parent: 1 - type: Transform - - uid: 1412 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,31.5 - parent: 1 - type: Transform -- proto: WindowReinforcedDirectional - entities: - - uid: 1023 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,3.5 - parent: 1 - type: Transform - - uid: 1024 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,2.5 - parent: 1 - type: Transform - - uid: 1025 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,1.5 - parent: 1 - type: Transform - - uid: 2309 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,57.5 - parent: 1 - type: Transform - - uid: 2310 - components: - - pos: -23.5,57.5 - parent: 1 - type: Transform - - uid: 2333 - components: - - rot: 3.141592653589793 rad - pos: 7.5,13.5 - parent: 1 - type: Transform - - uid: 2334 - components: - - rot: 3.141592653589793 rad - pos: 9.5,13.5 - parent: 1 - type: Transform - - uid: 2335 - components: - - rot: 3.141592653589793 rad - pos: 11.5,13.5 - parent: 1 - type: Transform - - uid: 2336 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,13.5 - parent: 1 - type: Transform - - uid: 2337 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,12.5 - parent: 1 - type: Transform - - uid: 2338 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,11.5 - parent: 1 - type: Transform - - uid: 2339 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,13.5 - parent: 1 - type: Transform - - uid: 2340 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,12.5 - parent: 1 - type: Transform - - uid: 2341 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,11.5 - parent: 1 - type: Transform - - uid: 2786 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,8.5 - parent: 1 - type: Transform - - uid: 2790 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,55.5 - parent: 1 - type: Transform - - uid: 2801 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,9.5 - parent: 1 - type: Transform - - uid: 2884 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,10.5 - parent: 1 - type: Transform - - uid: 4201 - components: - - rot: 3.141592653589793 rad - pos: -14.5,14.5 - parent: 1 - type: Transform - - uid: 4561 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,14.5 - parent: 1 - type: Transform - - uid: 4729 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,12.5 - parent: 1 - type: Transform - - uid: 5569 - components: - - pos: -17.5,24.5 - parent: 1 - type: Transform - - uid: 5684 - components: - - pos: -15.5,24.5 - parent: 1 - type: Transform - - uid: 6658 - components: - - rot: 3.141592653589793 rad - pos: -21.5,34.5 - parent: 1 - type: Transform - - uid: 6659 - components: - - rot: 3.141592653589793 rad - pos: -20.5,34.5 - parent: 1 - type: Transform - - uid: 6660 - components: - - rot: 3.141592653589793 rad - pos: -19.5,34.5 - parent: 1 - type: Transform - - uid: 13368 - components: - - rot: 1.5707963267948966 rad - pos: -72.5,56.5 - parent: 1 - type: Transform - - uid: 13369 - components: - - rot: 1.5707963267948966 rad - pos: -72.5,55.5 - parent: 1 - type: Transform - - uid: 13371 - components: - - rot: 1.5707963267948966 rad - pos: -72.5,53.5 - parent: 1 - type: Transform - - uid: 13372 - components: - - pos: -73.5,53.5 - parent: 1 - type: Transform - - uid: 13373 - components: - - pos: -72.5,53.5 - parent: 1 - type: Transform - - uid: 13625 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,33.5 - parent: 1 - type: Transform - - uid: 13626 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,31.5 - parent: 1 - type: Transform - - uid: 15126 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,34.5 - parent: 1 - type: Transform - - uid: 15127 - components: - - pos: -21.5,34.5 - parent: 1 - type: Transform - - uid: 15128 - components: - - pos: -20.5,34.5 - parent: 1 - type: Transform - - uid: 15129 - components: - - pos: -19.5,34.5 - parent: 1 - type: Transform - - uid: 15130 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,34.5 - parent: 1 - type: Transform - - uid: 15839 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,54.5 - parent: 1 - type: Transform - - uid: 15909 - components: - - pos: -25.5,54.5 - parent: 1 - type: Transform -- proto: Wrench - entities: - - uid: 376 - components: - - pos: 2.4658198,-11.416069 - parent: 1 - type: Transform - - uid: 2378 - components: - - pos: 8.571079,33.55169 - parent: 1 - type: Transform - - uid: 5648 - components: - - pos: -24.486898,29.543127 - parent: 1 - type: Transform -- proto: YellowOxygenTank - entities: - - uid: 14198 - components: - - pos: -77.3013,42.445312 - parent: 1 - type: Transform -... +meta: + format: 5 + postmapinit: false +tilemap: + 0: Space + 2: FloorArcadeBlue2 + 6: FloorAsteroidSand + 10: FloorAsteroidTile + 14: FloorBlueCircuit + 17: FloorCarpetClown + 22: FloorDark + 23: FloorDarkDiagonal + 25: FloorDarkHerringbone + 27: FloorDarkMono + 29: FloorDarkPavement + 31: FloorDarkPlastic + 33: FloorDirt + 34: FloorEighties + 37: FloorFreezer + 38: FloorGlass + 40: FloorGrass + 44: FloorGreenCircuit + 48: FloorHydro + 51: FloorLino + 53: FloorMetalDiamond + 54: FloorMime + 56: FloorPlanetDirt + 59: FloorRGlass + 60: FloorReinforced + 62: FloorRockVault + 63: FloorShowroom + 71: FloorSteel + 73: FloorSteelCheckerLight + 76: FloorSteelDirty + 77: FloorSteelHerringbone + 81: FloorSteelPavement + 83: FloorTechMaint + 87: FloorWhite + 90: FloorWhiteHerringbone + 91: FloorWhiteMini + 97: FloorWood + 99: Lattice + 100: Plating + 101: PlatingAsteroid +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + - pos: 0.43985805,0.83991814 + parent: 5005 + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAABgAAAAYAAAAGAAAKBgAAAGQAAAAGAAAABgAAAAYAAAAGAAAAZAAAAAoAAABlAAAACgAAAGUAAAAKAAAAZAAAAAYAAAAGAAAABgAAAGQAAAAKAAAABgAAAAYAAAAGAAAABgAAAGQAAAAKAAAACgAAAGUAAAAKAAAACgAAAGUAAAAGAAAABgAAAAYAAAAKAAAAZQAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZQAAAAoAAAAKAAAAZQAAAAoAAABkAAAACgAAAGUAAABlAAAACgAAAGUAAABlAAAABgAAAQYAAAAGAAABZAAAAAoAAABlAAAACgAAAGUAAAAKAAAAZAAAAAoAAAAKAAAAZQAAAAYAAAAGAAAACgAAAAoAAAAKAAAACgAAAGQAAABlAAAACgAAAAoAAAAKAAAAZQAAAGQAAAAGAAAABgAAAAYAAAAGAAAABgAABAYAAAIKAAAAZQAAAAoAAAAKAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAABgAADAYAAAAGAAAABgAAAAYAAAAGAAAGBgAAAGUAAABlAAAAZAAAAFMAAABkAAAAGQAAAhkAAAAZAAACZAAAAAYAAAgGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZQAAAAYAAABTAAAAZAAAABkAAAEZAAADGQAAAWQAAAAGAAAABgAAAAYAAAAGAAAJBgAAAAYAAAAGAAAABgAAAAoAAAAGAAAAZAAAAGQAAABkAAAAGQAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAGAAAAZAAAAAYAAAAKAAAABgAABWEAAANkAAAAVwAAAVcAAAFXAAABVwAAAFcAAAJXAAABZAAAAEcAAABHAAABRwAAAEcAAABlAAAAZQAAAGUAAABhAAABZAAAAFcAAANXAAAAVwAAAVcAAABXAAAAVwAAAGQAAABHAAABZAAAAGQAAABHAAABRwAAAGUAAABHAAACYQAAA2QAAABXAAADVwAAA1cAAAJXAAABVwAAAFcAAABkAAAARwAAAWQAAAAOAAAADgAAAA4AAABHAAACRwAAAGEAAABhAAADRwAAA0cAAANHAAADRwAAAUcAAAJHAAACRwAAAkcAAANHAAAADgAAAA4AAAAOAAAARwAAAUcAAAJhAAACZAAAAEcAAANHAAAARwAAAUcAAAFHAAADRwAAA2QAAABHAAAARwAAAEcAAANHAAADRwAAAEcAAANHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAWQAAABkAAAARwAAAQ4AAABkAAAAZAAAAGEAAAJkAAAAZAAAAA== + -1,0: + ind: -1,0 + tiles: ZAAAAGQAAAAdAAADFgAAARYAAABkAAAARwAAAGQAAABkAAAARwAAAw4AAABkAAAAYQAAA2EAAANhAAABZAAAAGQAAABkAAAAHQAAAiYAAAAWAAAAFgAAAEcAAAFHAAABRwAAAEcAAAEOAAAAZAAAAGEAAAJhAAACYQAAAGQAAABkAAAAZAAAAB0AAAMWAAABFgAAAmQAAABHAAABRwAAA0cAAANHAAADRwAAA2QAAABhAAAAYQAAAGEAAANkAAAARwAAA2QAAABkAAAAFgAAA2QAAABkAAAAZAAAAGQAAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAACRwAAAkcAAABHAAAARwAAAEcAAANHAAAAZAAAAGQAAABkAAAARwAAAUcAAAJHAAAARwAAAEcAAANHAAABRwAAA2QAAABkAAAARwAAA0cAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAABHAAABRwAAAGQAAABHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAABZAAAAGQAAABHAAABZAAAAEcAAAFkAAAARwAAA2QAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAAFHAAACZAAAAEcAAANHAAADZAAAAEcAAAFkAAAARwAAAkcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAACRwAAAWQAAABHAAACZAAAAGQAAABHAAABZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABHAAADRwAAAkcAAANkAAAAZAAAAEcAAABHAAACZAAAAEcAAAFHAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFkAAAARwAAAUcAAANkAAAAZAAAAEcAAANHAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAEcAAANkAAAAZAAAAEcAAAJHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAkcAAAJHAAADZAAAAGQAAABHAAABZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAABYAAAIWAAAAZAAAAFMAAABHAAAARwAAAkcAAAJkAAAAZAAAAGQAAABHAAACZAAAAGQAAABTAAAAZAAAAGQAAAAWAAABFgAAAw== + 0,-1: + ind: 0,-1 + tiles: PAAAAGQAAABkAAAABgAAAAYAAAAGAAAABgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAABjAAAAYwAAADwAAAA8AAAAPAAAAGQAAAAGAAAABgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAYwAAAAAAAABkAAAAPAAAADwAAABkAAAABgAAAAYAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAABgAAAGMAAAAAAAAAZAAAADwAAABkAAAAZAAAAGQAAABkAAAAZAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAABgAAAGQAAABkAAAAZAAAAAoAAABlAAAACgAAAGUAAAAKAAAACgAAAGQAAAAGAAAAPgAAAD4AAAA+AAAAPgAAAGQAAABkAAAARwAAAmQAAAAKAAAACgAAAGUAAABlAAAACgAAAAoAAABkAAAABgAACAYAAAAGAAAABgAABQYAAABkAAAARwAAAWQAAABHAAADCgAAAGUAAAAKAAAACgAAAAoAAABlAAAAZAAAAAYAAAAGAAAABgAAAAYAAAAGAAADZAAAAGQAAABHAAABRwAAAwoAAAAKAAAACgAAAGUAAABlAAAAZQAAAGQAAAAGAAAABgAAAQYAAABkAAAAZAAAAGQAAABHAAACRwAAAGQAAABkAAAAZQAAAGQAAABkAAAABgAAAGQAAABkAAAABgAAAAYAAAEGAAAJZAAAAGQAAABkAAAARwAAAmQAAABHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAGAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANkAAAAUwAAAGQAAABkAAAAZAAAAAYAAAAGAAAABgAAAwYAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAAYAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAADZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADFgAAA2QAAABkAAAAZAAAAGEAAAFhAAADYQAAAGEAAAFHAAADRwAAAUcAAAIzAAAAMwAAADMAAAAWAAADFgAAAxYAAABkAAAAZAAAAGQAAABhAAADYQAAA2EAAAFkAAAARwAAAUcAAABHAAAAMwAAADMAAAAzAAAAZAAAABYAAAMWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAABRwAAAzMAAAAzAAAAMwAAAA== + 0,0: + ind: 0,0 + tiles: DgAAAEcAAAAsAAAAZAAAAGQAAABkAAAAZAAAAGEAAAFhAAAAYQAAAUcAAAJHAAAAZAAAADMAAAAzAAAAMwAAAA4AAABHAAABLAAAAGQAAABkAAAAZAAAAGQAAABhAAADYQAAA2QAAABHAAAARwAAAWQAAAAzAAAAMwAAADMAAAAOAAAARwAAAywAAABkAAAAZAAAAGQAAABkAAAAYQAAAGEAAAJkAAAARwAAAEcAAABkAAAAMwAAADMAAAAzAAAARwAAAUcAAAFHAAACZAAAAEcAAABHAAADZAAAAGQAAABkAAAAZAAAAEcAAABHAAAAZAAAADMAAAAzAAAAMwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAFHAAABRwAAAmQAAABkAAAARwAAA0cAAAJHAAAARwAAA0cAAABHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAUcAAANkAAAAZAAAAEcAAAFHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAUwAAAFMAAABkAAAARwAAAkcAAANkAAAAZAAAAFMAAABTAAAAUwAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAEcAAAJHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAAAWAAABFgAAABYAAAIWAAABFgAAAxYAAANkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAUwAAAFMAAABkAAAAFgAAAxYAAAIWAAADFgAAAxYAAAEWAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAIWAAAAFgAAABYAAAEWAAAAFgAAAWQAAABkAAAAUwAAAGQAAAAWAAABFgAAABYAAAMWAAABFgAAA2QAAABXAAACVwAAA1cAAAFXAAACVwAAAVcAAAJkAAAAZAAAAGQAAABkAAAAFgAAABYAAAAWAAADFgAAARYAAABkAAAAVwAAAVcAAANXAAACVwAAAVcAAABXAAAAZAAAAGQAAABTAAAAZAAAAA== + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAEBgAAAwAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAABgAABgYAAAAGAAAKZAAAAAYAAAgGAAAAAAAAAAYAAAAGAAAAYwAAAGMAAABjAAAAYwAAAAYAAAAGAAAJBgAAAAYAAAAGAAAAZAAAAGQAAAAGAAAIBgAAAAYAAAAGAAAABgAAAA== + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAAYAAAsGAAAABgAAAAYAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAGAAAABgAAAAYAAAAGAAADBgAAAAYAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAABgAAAGQAAABkAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAA== + -2,-1: + ind: -2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAIgAAACIAAABkAAAAZQAAAAoAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAIgAAAGQAAAAiAAAAZAAAAAoAAABlAAAAZAAAAGQAAAAfAAAAHwAAAR8AAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAiAAAAZAAAAGQAAAAKAAAACgAAAGQAAABkAAAAHwAAAh8AAAAfAAABZAAAAGQAAABkAAAAZAAAAGQAAAACAAAAZAAAAAIAAABkAAAACgAAAGUAAABHAAADZAAAAB8AAAAfAAADHwAAA2QAAABkAAAAZAAAAGQAAABkAAAAAgAAAAIAAABkAAAAZAAAAGUAAAAKAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANkAAAAZAAAAGQAAAACAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFkAAAAZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABHAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAGQAAABTAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJkAAAAUwAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAAAYQAAAGEAAANkAAAAZAAAAFMAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAA2EAAABhAAADRwAAA2QAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGEAAANhAAACYQAAAEcAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAACYQAAAGEAAAFHAAACZAAAAGQAAABkAAAAZAAAAD8AAAA/AAAAPwAAAD8AAABkAAAAUwAAAGQAAABkAAAAYQAAAWEAAAFhAAACZAAAAGQAAABkAAAAZAAAAGQAAAA/AAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + -2,0: + ind: -2,0 + tiles: RwAAA2QAAABkAAAAZAAAAGQAAABkAAAAPwAAAD8AAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAZAAAAEcAAAJkAAAAUwAAAGQAAABkAAAAPwAAAD8AAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABHAAACZAAAAGQAAABkAAAAZAAAAD8AAABkAAAAPwAAAD8AAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA2QAAABkAAAAZAAAAGQAAAA/AAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAAARwAAAkcAAAJHAAADZAAAAEcAAANHAAABRwAAAkcAAAFkAAAAZAAAAEcAAANkAAAAZAAAAEcAAABHAAACRwAAAkcAAAJHAAADRwAAAUcAAAFkAAAAZAAAAGQAAABHAAAARwAAA2QAAABkAAAARwAAA2QAAABkAAAARwAAA0cAAAJHAAADRwAAAUcAAANHAAAARwAAAUcAAAFHAAACRwAAAUcAAANkAAAARwAAAEcAAANHAAAARwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAAmQAAABkAAAARwAAAWQAAABkAAAAZAAAAGQAAAAzAAAAMwAAADMAAABhAAAAYQAAAmEAAABhAAADYQAAAmEAAANhAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACMwAAADMAAABkAAAAYQAAA2EAAANhAAADYQAAAWEAAAJhAAABYQAAA2QAAABkAAAAZAAAAGQAAABHAAACZAAAADMAAAAzAAAAZAAAAGEAAAJhAAADYQAAA2EAAAJhAAABYQAAAWEAAAJkAAAAZAAAAGQAAABkAAAARwAAA0cAAANkAAAAZAAAAGQAAABhAAACYQAAAmEAAAFhAAAAYQAAA2EAAANhAAACZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAAGEAAAJhAAADYQAAA2EAAAJhAAADYQAAA2QAAABkAAAAUwAAAGQAAABHAAAAZAAAAFMAAABTAAAAZAAAAGEAAAFhAAACYQAAA2EAAABhAAABYQAAA2EAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAAGEAAAFhAAACYQAAA2EAAABhAAAAYQAAAWQAAABkAAAAUwAAAGQAAABkAAAAZAAAAA== + 1,-1: + ind: 1,-1 + tiles: YwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAARwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGQAAABkAAAAPAAAADwAAAA8AAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAADwAAAA8AAAAPAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAZAAAAGQAAABkAAAAPAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAAAAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAADMAAAAzAAAAZAAAAFEAAANRAAACUQAAAmQAAABkAAAAZAAAAGQAAABhAAADYQAAA2QAAABkAAAAZAAAAAAAAAAzAAAAMwAAAFEAAAJRAAACUQAAAFEAAAJkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABhAAABZAAAAGQAAAAAAAAAMwAAADMAAABkAAAAUQAAA1EAAABRAAACZAAAAGQAAABkAAAAZAAAAGEAAAJhAAABYQAAAmQAAABkAAAAYwAAAA== + 1,0: + ind: 1,0 + tiles: MwAAADMAAABkAAAAFwAAARcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAADMAAAAzAAAAZAAAABcAAAIXAAADZAAAAGQAAABTAAAAZAAAAGQAAAAWAAACUwAAAFMAAABkAAAAZAAAAGMAAAAzAAAAMwAAAGQAAAAXAAAAFwAAA2QAAABkAAAAZAAAAGQAAAAWAAACFgAAAWQAAABTAAAAZAAAAGQAAABjAAAAMwAAADMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAFMAAABkAAAAYwAAAGQAAABkAAAAZAAAAEcAAAJHAAABRwAAAEcAAABHAAAAZAAAAGQAAAAWAAACZAAAAGQAAABkAAAAZAAAAGMAAABHAAACRwAAAkcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAEcAAAFHAAADZAAAAGMAAABjAAAAZAAAAGQAAABHAAABZAAAAEcAAAJHAAAARwAAA0cAAANHAAADRwAAA2QAAABHAAADRwAAAWQAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAEcAAAFkAAAAZAAAAEcAAANkAAAAZAAAAGQAAAACAAAAAgAAAGQAAAACAAAAZAAAAGQAAABTAAAAUwAAAGQAAABHAAABRwAAAWQAAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAAACAAAAAgAAAGQAAABTAAAAZAAAAGQAAABkAAAARwAAAWQAAABkAAAARwAAA2QAAABkAAAAZAAAAAIAAAACAAAAZAAAAAIAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAABRwAAAUcAAANkAAAAZAAAAGQAAABkAAAAAgAAAAIAAAACAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAA0cAAANHAAABZAAAAGQAAABkAAAAAgAAAGQAAAACAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAANHAAABRwAAAmQAAABjAAAAYwAAAAIAAABkAAAAAgAAAAIAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAUcAAABkAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAABZAAAAGMAAABjAAAAEQAAABEAAABkAAAAEQAAABEAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAACRwAAAWQAAABkAAAAZAAAAA== + 1,-2: + ind: 1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAA== + 1,1: + ind: 1,1 + tiles: EQAAAGQAAAARAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAABHAAAARwAAAmQAAABkAAAAZAAAAGQAAAARAAAAZAAAABEAAAARAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAAARwAAAkcAAAJkAAAAZAAAAGQAAABkAAAAEQAAAGQAAABkAAAAEQAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAA0cAAAJHAAADZAAAAGQAAABkAAAAEQAAAGQAAAARAAAAEQAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAABHAAABRwAAAGQAAABkAAAAZAAAAGQAAAARAAAAZAAAABEAAAARAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAACRwAAA0cAAAFkAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAEQAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAkcAAAJHAAABZAAAAGMAAAAAAAAAZAAAABEAAABkAAAAZAAAABEAAABkAAAAZAAAAFMAAABkAAAAZAAAABYAAANkAAAAZAAAAGQAAABjAAAAAAAAAGQAAAARAAAAZAAAABEAAABkAAAAZAAAAFMAAABkAAAAZAAAABYAAAMWAAADFgAAAhYAAABkAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAAAWAAABFgAAAhYAAAEWAAAAZAAAAGMAAAAAAAAAZAAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAABYAAAAWAAABFgAAAWQAAABjAAAAAAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAAWAAABFgAAAhYAAAFkAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAAAWAAADFgAAARYAAAIWAAABZAAAAGMAAAAAAAAARwAAAWQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAFgAAARYAAAIWAAAAFgAAAmQAAABjAAAAAAAAAEcAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAABHAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAARwAAAWQAAABkAAAAUwAAAGQAAABkAAAAUwAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAA== + 2,0: + ind: 2,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 2,1: + ind: 2,1 + tiles: ZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 0,1: + ind: 0,1 + tiles: FgAAAxYAAAEWAAAAFgAAAxYAAAFkAAAAVwAAAFcAAABXAAABVwAAAlcAAANXAAACZAAAAGQAAABTAAAAZAAAABYAAAMWAAACFgAAABYAAAAWAAACZAAAAFcAAANXAAACVwAAAFcAAANXAAAAVwAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACZAAAAGQAAABkAAAAZAAAAGQAAABXAAAAVwAAAFcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAFcAAANXAAADVwAAAFcAAAJXAAAAVwAAA1cAAAFXAAACVwAAAlcAAAFXAAACZAAAAFMAAABkAAAAZAAAAGQAAABXAAAAVwAAAVcAAAJXAAAAZAAAAFcAAAJXAAADZAAAAFcAAABXAAAAVwAAAmQAAABTAAAAZAAAAGQAAABkAAAAZAAAAFcAAANXAAADVwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAVwAAA2QAAABXAAABVwAAAVcAAABkAAAAVwAAAVcAAABXAAADVwAAAVcAAAJkAAAAZAAAAGQAAABTAAAAZAAAAFcAAAFXAAADVwAAAlcAAABXAAAAZAAAAFcAAAJXAAACVwAAAlcAAAFXAAAAZAAAAGQAAABkAAAAUwAAAGQAAABXAAADZAAAAFcAAAFXAAADVwAAA1cAAANXAAADVwAAA1cAAANXAAADVwAAAWQAAABkAAAAZAAAAGQAAABkAAAAVwAAAlcAAANXAAAAVwAAAVcAAANXAAADVwAAAlcAAAFXAAACVwAAAFcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAFcAAABXAAAAVwAAAFcAAAJXAAABZAAAAFcAAAFXAAAAVwAAAlcAAAJXAAADZAAAAGQAAABkAAAAZAAAAGQAAABXAAAAZAAAAFcAAANXAAAAVwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAABVwAAAFcAAANXAAACVwAAAlcAAAFXAAADVwAAA1cAAANXAAACVwAAAUcAAAJHAAAARwAAAlcAAABXAAACVwAAAVcAAAJXAAACVwAAAVcAAAFXAAABVwAAAVcAAAFXAAAAVwAAAFcAAANkAAAARwAAAEcAAANXAAADVwAAAVcAAAFXAAADVwAAAFcAAANkAAAAVwAAAlcAAAFXAAACVwAAAVcAAANXAAABZAAAAEcAAANHAAAAVwAAA2QAAABXAAAAVwAAAVcAAABXAAACZAAAAFcAAANXAAACVwAAAVcAAANXAAAAVwAAA2QAAABHAAAARwAAAw== + -1,1: + ind: -1,1 + tiles: ZAAAAGQAAABHAAABRwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAAAWAAADFgAAAGQAAABkAAAARwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAFMAAABkAAAAFgAAABYAAAJkAAAAZAAAAGQAAABkAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABZAAAAEcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAABVwAAAVcAAAFXAAACVwAAAmQAAABkAAAARwAAAWQAAABHAAABZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAVwAAAGQAAABbAAACWwAAAVcAAAJkAAAAZAAAAEcAAABkAAAARwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABbAAADWwAAAlsAAANXAAADFgAAAGQAAABHAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFsAAAJbAAAAVwAAAhYAAAJkAAAARwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABbAAABWwAAAlsAAAFHAAAAZAAAAEcAAAFkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABbAAABZAAAAFsAAAJbAAABRwAAA2QAAABHAAAAZAAAAEcAAABkAAAAZAAAAFMAAABTAAAAZAAAAGQAAABXAAADWwAAA1sAAABbAAADWwAAAUcAAAJkAAAAZAAAAGQAAABHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAlsAAAFbAAAAWwAAAlsAAAJHAAACRwAAA2QAAABHAAABRwAAAU0AAABNAAABTQAAAU0AAANNAAACZAAAAFcAAABXAAAAVwAAAlcAAAFXAAABRwAAA2QAAABHAAACRwAAA0cAAAJNAAACTQAAAU0AAABNAAABTQAAA2QAAABkAAAAZAAAAGQAAABkAAAAVwAAAUcAAAJkAAAARwAAAEcAAABHAAADTQAAAE0AAANNAAADTQAAAE0AAANkAAAAVwAAA1cAAANXAAABVwAAA1cAAAFkAAAAZAAAAEcAAAJHAAABRwAAAE0AAABNAAABTQAAA00AAAJNAAAAZAAAAFcAAAJXAAACVwAAAlcAAAJXAAACRwAAAmQAAABkAAAARwAAAEcAAAJHAAABRwAAA0cAAABHAAAARwAAAFcAAANXAAABVwAAAVcAAAJXAAAAVwAAAA== + 0,2: + ind: 0,2 + tiles: VwAAAWQAAABXAAADVwAAAVcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAVcAAABXAAAAVwAAAlcAAANXAAABVwAAAlcAAAImAAABJgAAACYAAAImAAADJgAAAFcAAANkAAAAZAAAAGQAAABXAAACZAAAAFcAAAFXAAACVwAAA2QAAABXAAAAVwAAAVcAAANXAAADVwAAA1cAAAFXAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAGQAAABkAAAAVwAAAFoAAANaAAAAWgAAAloAAABaAAADVwAAAGQAAABkAAAAZAAAAB0AAAFkAAAAZAAAAFcAAAFkAAAAZAAAAFcAAAJaAAABWgAAA1oAAAJaAAADWgAAAFcAAANkAAAAZAAAAGQAAABkAAAAHQAAAFcAAAMmAAADVwAAAmQAAABXAAAAWgAAAVoAAAJaAAACWgAAAloAAAFXAAACZAAAAFMAAABkAAAAZAAAAGQAAABXAAAAZAAAAFcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAJkAAAAZAAAACYAAABXAAACZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAAAdAAACHQAAAlcAAABXAAACZAAAAGQAAABkAAAAUwAAAFMAAABHAAABRwAAAEcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAADUAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAADUAAAA1AAAANQAAADUAAABkAAAAUwAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAAA1AAAANQAAADUAAAA1AAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGEAAABhAAABYQAAAmEAAAFkAAAAUwAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABhAAACYQAAA2EAAANhAAADZAAAAGQAAABTAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + -1,2: + ind: -1,2 + tiles: RwAAAUcAAAFkAAAARwAAAGQAAABHAAADRwAAAkcAAABHAAACRwAAA2QAAABXAAABVwAAAVcAAABXAAAAVwAAAEcAAANHAAAARwAAAmQAAABkAAAARwAAAkcAAANHAAACRwAAA0cAAANXAAACVwAAAlcAAANXAAADVwAAAVcAAAJHAAABZAAAAGQAAABkAAAAZAAAAEcAAABHAAACRwAAA0cAAABHAAAAZAAAAFcAAAJXAAADVwAAA1cAAABXAAAARwAAAGQAAAAoAAAAKAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJkAAAAKAAAACgAAAAoAAAAZAAAAFMAAABkAAAAUwAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAB0AAAJHAAAAZAAAACgAAAAoAAAAKAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAAAdAAACRwAAAGQAAAAoAAAAKAAAACgAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFkAAAAKAAAACgAAAAoAAAAZAAAABYAAAMWAAAAFgAAABYAAAIWAAADZAAAAGQAAABkAAAAZAAAAB0AAAFHAAACZAAAACgAAAAoAAAAKAAAAGQAAAAWAAACFgAAABYAAAIWAAADFgAAAWQAAABTAAAAZAAAAGQAAABkAAAARwAAA2QAAAAoAAAAKAAAACgAAABkAAAAFgAAARYAAAAWAAADFgAAARYAAAFkAAAAZAAAAFMAAABkAAAAZAAAAEcAAANkAAAAKAAAACgAAAAoAAAAZAAAABYAAAMWAAABFgAAAxYAAAAWAAACZAAAAGQAAABkAAAAZAAAAFMAAABHAAAAZAAAACgAAAAoAAAAKAAAAGQAAAAWAAADFgAAARYAAAMWAAADFgAAAWQAAABkAAAAZAAAAGQAAABkAAAARwAAAGQAAAAoAAAAKAAAACgAAABkAAAAFgAAARYAAAAWAAACFgAAAxYAAANkAAAAUwAAAGQAAABkAAAAZAAAAEcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABZAAAAFMAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAFMAAABTAAAARwAAA0cAAAFHAAACRwAAAUcAAAJHAAACZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + 1,2: + ind: 1,2 + tiles: RwAAAkcAAAJTAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAUwAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAUwAAAGQAAABTAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYQAAA2QAAABhAAACZAAAAGEAAANhAAACYQAAA2QAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGEAAAFhAAAAYQAAAWEAAAFkAAAAYQAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAYQAAASEAAAI4AAAAYQAAAmEAAAJkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYQAAAGEAAAEhAAACIQAAAmQAAABhAAAAYQAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAYQAAAjgAAABkAAAAYQAAAmEAAAJkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABhAAABYQAAA2QAAABhAAABYQAAAWQAAABhAAABZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYQAAAWQAAABhAAACZAAAAGQAAABhAAADYQAAAWQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAUwAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAUwAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -2,2: + ind: -2,2 + tiles: ZAAAAGQAAABHAAABZAAAAEcAAABHAAACRwAAAVMAAABHAAABRwAAAUcAAABkAAAAZAAAAEcAAAJkAAAAZAAAAGQAAABkAAAARwAAAEcAAANHAAAAZAAAAGQAAABHAAAAZAAAAGQAAABHAAADRwAAA0cAAAFHAAACRwAAAUcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAWQAAABHAAACKAAAACgAAAAoAAAAZAAAAEcAAAJHAAAAFgAAAhYAAANkAAAAFgAAAxYAAANkAAAAZAAAAGQAAABkAAAARwAAAkcAAAJHAAAARwAAAUcAAAJHAAABZAAAABYAAAMWAAAAZAAAABYAAAIWAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAJkAAAARwAAAGQAAAAWAAAAFgAAARYAAAMWAAAAFgAAAmQAAABkAAAAZAAAAGQAAAAWAAABFgAAAxYAAAAWAAACZAAAAGQAAABHAAABFgAAAhYAAABkAAAAFgAAAxYAAANkAAAAZAAAAGQAAABkAAAAFgAAARYAAAMWAAABFgAAAmQAAABkAAAARwAAAhYAAAEWAAABZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAABYAAAIWAAAAFgAAARYAAABkAAAARwAAAWQAAAAWAAAAFgAAA2QAAABkAAAAYQAAAmQAAABTAAAAZAAAAGQAAAAWAAAAFgAAARYAAAMWAAAAZAAAAEcAAABkAAAAZAAAAGQAAABkAAAAYQAAAmQAAABkAAAAZAAAAGQAAABkAAAAFgAAAxYAAAEWAAAAFgAAAGQAAABHAAACRwAAAkkAAABkAAAAZAAAAGEAAAJhAAADZAAAAGQAAABkAAAAZAAAABYAAAAWAAAAFgAAARYAAABkAAAAZAAAAEcAAAJJAAACZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAABYAAANkAAAAZAAAAEcAAANHAAAASQAAAWQAAAAlAAAAJQAAACUAAABkAAAAZAAAAGQAAABkAAAAYQAAA2EAAABhAAAAYQAAA2QAAABHAAAARwAAAUkAAABkAAAAJQAAACUAAAAlAAAAZAAAAGQAAABkAAAAZAAAAGEAAABhAAACYQAAAGEAAABHAAABRwAAA0cAAABJAAADRwAAAiUAAAAlAAAAJQAAAGQAAABkAAAAZAAAAGQAAABhAAACYQAAA2EAAAJhAAACZAAAAGQAAABkAAAASQAAA2QAAAAlAAAAJQAAACUAAABkAAAAUwAAAGQAAABkAAAAYQAAAWEAAAJhAAAAYQAAAmQAAABHAAAAZAAAAA== + -2,1: + ind: -2,1 + tiles: ZAAAAFMAAABkAAAAYQAAAGEAAAJhAAAAYQAAAGEAAABhAAADYQAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGEAAAJhAAABYQAAA2EAAANhAAADYQAAAWEAAAFkAAAAUwAAAGQAAABkAAAAZAAAAGQAAAAoAAAAKAAAAGQAAABhAAADYQAAAmEAAAJhAAABYQAAA2EAAABhAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAKAAAACgAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAACgAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAUwAAAFMAAABkAAAAUwAAAGQAAABTAAAAUwAAAGQAAABTAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAAAFgAAABYAAANhAAAAYQAAAWQAAAAiAAAAIgAAACIAAAAiAAAAIgAAACIAAABkAAAAZAAAAFMAAABkAAAAFgAAABYAAAMWAAADYQAAA2EAAANhAAADZAAAACIAAAAiAAAAIgAAACIAAAAiAAAAZAAAAFMAAABkAAAAZAAAAEcAAAFHAAABFgAAAmEAAAJhAAABYQAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABHAAABRwAAAxYAAAFhAAABYQAAAGEAAAJkAAAAZAAAAEcAAAFHAAADZAAAAEcAAANkAAAAUwAAAFMAAABkAAAARwAAAEcAAAIWAAAAYQAAAWEAAANhAAABZAAAAGQAAABHAAADZAAAAEcAAANHAAAAZAAAAGQAAABTAAAAZAAAAEcAAAJHAAACFgAAAGEAAAJhAAABZAAAAGQAAABHAAADRwAAAmQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABHAAABRwAAABYAAABhAAACYQAAAmQAAABkAAAAZAAAAEcAAABHAAAARwAAAWQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAEcAAABHAAABRwAAAkcAAANTAAAAUwAAAFMAAABTAAAARwAAAUcAAANTAAAAUwAAAEcAAAJHAAABRwAAAQ== + -2,-2: + ind: -2,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAA== + -3,0: + ind: -3,0 + tiles: ZAAAAEcAAAFHAAADRwAAAEcAAAJkAAAARwAAAkcAAAFHAAACRwAAA0cAAABHAAABRwAAAkcAAAFHAAABRwAAAGQAAABHAAADRwAAA0cAAAJHAAACRwAAAUcAAAJHAAABRwAAAUcAAAFHAAAARwAAAUcAAAJHAAADRwAAAEcAAAFkAAAARwAAA0cAAABHAAAARwAAAGQAAABHAAACRwAAAGQAAABHAAACRwAAA0cAAAFkAAAARwAAAkcAAAJHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAABHAAACRwAAA0cAAAFHAAACRwAAAEcAAAFHAAACRwAAAWQAAABkAAAARwAAA0cAAAFHAAADRwAAAUcAAANHAAABRwAAA0cAAANkAAAARwAAA0cAAAFkAAAARwAAAkcAAANHAAAARwAAAWQAAABkAAAARwAAAkcAAAJHAAADRwAAA0cAAAFHAAAARwAAA0cAAABHAAACZAAAAEcAAABHAAAARwAAA0cAAANHAAADZAAAAEcAAANkAAAARwAAAGQAAABkAAAARwAAAUcAAAFHAAABZAAAAGQAAABkAAAAZAAAAEwAAABMAAAAZAAAAGQAAABkAAAAZAAAAEcAAABkAAAAZAAAAEcAAAFHAAABRwAAAkcAAABHAAABRwAAA2QAAABhAAABYQAAAWQAAABkAAAAZAAAAEcAAANkAAAARwAAA2QAAABHAAABRwAAAEcAAABkAAAAZAAAAGQAAABkAAAAYQAAAmEAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAAJkAAAAZAAAAEcAAAJHAAABZAAAAGQAAABkAAAAZAAAAGEAAABhAAADZAAAAGQAAABkAAAARwAAAUcAAANkAAAAZAAAAGQAAABHAAACZAAAAGQAAABkAAAAUwAAAGQAAABhAAACYQAAAmQAAABTAAAAZAAAAEcAAAFkAAAARwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAYQAAAGEAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAANkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAZAAAAEcAAANHAAADZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAEcAAABHAAADZAAAACgAAAAoAAAAKAAAAA== + -3,1: + ind: -3,1 + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAADZAAAACgAAAAoAAAAKAAAAFMAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAARwAAAGQAAAAoAAAAKAAAACgAAABTAAAAZAAAAGQAAABTAAAAZAAAAGQAAABTAAAAZAAAAGQAAABHAAADZAAAAEcAAABkAAAAKAAAACgAAAAoAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAGQAAABHAAADZAAAACgAAAAoAAAAKAAAAFMAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAATAAAAEwAAABkAAAARwAAAGQAAAAoAAAAKAAAACgAAABkAAAAUwAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAEcAAABkAAAARwAAAEcAAABkAAAAKAAAACgAAAAoAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAABZAAAAGQAAAAoAAAAZAAAAGMAAABkAAAAZAAAAFMAAABkAAAANgAAADYAAAA2AAAAZAAAAEcAAAJHAAADRwAAAxYAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAADYAAAA2AAAANgAAAGQAAABHAAAARwAAAEcAAAAWAAACZAAAABYAAAFkAAAAYwAAAGQAAABkAAAAZAAAAGQAAAA2AAAANgAAADYAAABkAAAAZAAAAEcAAAJHAAAAZAAAAGQAAAAWAAADFgAAAWQAAABkAAAAUwAAAGQAAABkAAAAEQAAABEAAAARAAAAZAAAAGQAAABHAAABRwAAAxYAAAMWAAAAFgAAAhYAAANHAAADZAAAAFMAAABkAAAAZAAAABEAAAARAAAAEQAAAGQAAABHAAACRwAAAWQAAAAWAAABFgAAABYAAAAWAAACRwAAA2QAAABkAAAAZAAAAGQAAAARAAAAEQAAABEAAABkAAAARwAAAWQAAABkAAAAFgAAARYAAAAWAAADFgAAAEcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAhYAAAIWAAADZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAUcAAAJHAAAARwAAAWQAAABkAAAARwAAAkcAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAAFHAAACRwAAAUcAAAJHAAACZAAAAGQAAABkAAAAZAAAAEcAAABHAAACZAAAAGQAAABTAAAAUwAAAA== + -3,2: + ind: -3,2 + tiles: ZAAAAGQAAABHAAABRwAAAUcAAANHAAACRwAAAEcAAAFHAAABRwAAAUcAAAJHAAABRwAAA0cAAAJTAAAARwAAAEcAAAJkAAAARwAAAEcAAABHAAABRwAAA0cAAAJHAAACRwAAA0cAAAFHAAABRwAAA0cAAAFkAAAAZAAAAEcAAANHAAABRwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAACZAAAAGEAAAJkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABkAAAAYQAAA2EAAANhAAACYQAAA2EAAABhAAADYQAAAmEAAABhAAACYQAAAxYAAAIWAAACFgAAA2QAAABHAAADZAAAAGEAAAJhAAABYQAAAmQAAABhAAAAYQAAA2EAAAFhAAADYQAAAmEAAAEWAAACFgAAABYAAANHAAACRwAAAWQAAABhAAADZAAAAGQAAABhAAAAZAAAAGEAAANhAAADYQAAAmEAAAFhAAADFgAAAxYAAAIWAAADZAAAAEcAAANkAAAAYQAAAmQAAABkAAAAZAAAAGEAAANhAAAAYQAAA2EAAABhAAAAYQAAARYAAAEWAAADFgAAA2QAAABHAAAAZAAAAGEAAANkAAAAZAAAAGQAAABkAAAAYQAAA2EAAABhAAAAYQAAAmEAAAFhAAADZAAAABYAAAJHAAADRwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAABYQAAA2EAAAFhAAADYQAAAhYAAAIWAAABRwAAA0cAAAFkAAAAMAAAADAAAAAwAAAAMAAAAGQAAABkAAAAZAAAAEcAAABHAAADRwAAA2QAAABkAAAAZAAAAEcAAAFkAAAAFgAAAxYAAAIWAAACFgAAAhYAAANkAAAAZAAAAEkAAANJAAAASQAAAkkAAANJAAADSQAAAkkAAAFHAAABRwAAAxYAAAMWAAAAMAAAADAAAAAwAAAAFgAAAxYAAANJAAABSQAAAkkAAAFJAAADSQAAAkkAAANJAAAARwAAA0cAAAEWAAACFgAAAzAAAAAwAAAAMAAAABYAAAAWAAACSQAAAUkAAAJJAAABSQAAA0kAAANJAAABSQAAAkcAAAJkAAAAZAAAABYAAAAwAAAAMAAAADAAAAAWAAABFgAAAkkAAANJAAABSQAAA0kAAAFJAAACSQAAAEkAAANHAAACRwAAAhYAAAIWAAABFgAAAhYAAAAWAAAAFgAAARYAAABJAAADSQAAA0kAAAFJAAACSQAAA0kAAABJAAADRwAAAkcAAAFkAAAAFgAAAhYAAAEWAAADFgAAAxYAAAFkAAAASQAAAEkAAABJAAACSQAAAUkAAAFJAAAASQAAAQ== + -3,-1: + ind: -3,-1 + tiles: YwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFkAAAAZAAAAEcAAABHAAABRwAAAWQAAABHAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACZAAAAEcAAAFkAAAAZAAAAEcAAAJHAAACRwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAANHAAABRwAAAEcAAAFHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAABHAAACRwAAAGQAAABkAAAARwAAA2QAAABHAAACRwAAAUcAAANHAAAAUwAAAGQAAABHAAABZAAAAEcAAAJHAAADRwAAAEcAAANHAAAAZAAAAEcAAANkAAAARwAAA0cAAAFHAAAARwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAAmQAAABkAAAAZAAAAEcAAAJHAAADRwAAAkcAAANkAAAAZAAAAEcAAAFHAAADRwAAA2QAAABHAAAARwAAA0cAAAFHAAABRwAAAEcAAAJHAAABRwAAA2QAAABkAAAAZAAAAGQAAABHAAADRwAAAUcAAAJkAAAARwAAA0cAAABHAAABRwAAAUcAAANHAAAAZAAAAGQAAABHAAAARwAAA2QAAABkAAAAZAAAAEcAAABkAAAAZAAAAEcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAAFkAAAAYQAAA2EAAAJhAAAAYQAAA2QAAABkAAAARwAAA0cAAANHAAAARwAAA0cAAANkAAAAZAAAAGQAAABkAAAAZAAAAGEAAANhAAADYQAAAGEAAANkAAAARwAAA0cAAANHAAAARwAAAmQAAABHAAABZAAAAEcAAABHAAAARwAAAmQAAABhAAAAYQAAAGEAAAFkAAAAYQAAAEcAAAFHAAABRwAAAGQAAABkAAAARwAAA0cAAAJHAAABRwAAAUcAAANkAAAAYQAAAGEAAAFhAAADYQAAAmQAAABHAAADRwAAAEcAAABkAAAARwAAAkcAAABkAAAARwAAAEcAAAJHAAADZAAAAGQAAABkAAAARwAAA2QAAABkAAAARwAAAUcAAAJkAAAAZAAAAEcAAANkAAAAZAAAAGQAAABkAAAARwAAAg== + -4,-1: + ind: -4,-1 + tiles: ZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGQAAABkAAAAZAAAAEcAAANHAAAARwAAAUcAAAJHAAACRwAAAkcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAABRwAAAmQAAABHAAADRwAAAGQAAABTAAAAZAAAAFMAAABkAAAAZAAAAFMAAABkAAAARwAAAkcAAAFHAAABRwAAA0cAAAJkAAAARwAAAEcAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAANHAAAAZAAAAGQAAABhAAAAZAAAAGEAAANkAAAAYQAAAWQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAACRwAAAGQAAABhAAABZAAAAGQAAABhAAADYQAAAmQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAAUcAAABkAAAAZAAAAGEAAAFkAAAAZAAAAGEAAABkAAAAZAAAAFMAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAANkAAAAZAAAAGQAAABkAAAAYQAAAmEAAANkAAAAYQAAA2QAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAACZAAAAEcAAAFkAAAAZAAAAGQAAABkAAAAYQAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAAmQAAABHAAADZAAAAGEAAAFkAAAAZAAAAGEAAANkAAAAZAAAAFMAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAAFkAAAARwAAAGQAAABkAAAAYQAAAGQAAABhAAABYQAAA2QAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAACRwAAAEcAAAJkAAAAYQAAAmQAAABhAAACYQAAA2QAAABkAAAAZAAAAA== + -4,0: + ind: -4,0 + tiles: AAAAAAAAAAAAAAAAAAAAAGQAAABHAAACRwAAAEcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAAUcAAANHAAADZAAAAGQAAABTAAAAZAAAAGQAAABTAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAABHAAADZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAAUcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAA0cAAABHAAABRwAAAEcAAANHAAACRwAAAUcAAAFHAAABRwAAAmQAAABkAAAAZAAAAGQAAABHAAABRwAAA0cAAAFkAAAAZAAAAGQAAABHAAADRwAAAEcAAABHAAADRwAAA0cAAAJHAAADZAAAAGQAAABHAAAARwAAAEcAAAFHAAACZAAAAGQAAABHAAADRwAAAUcAAAJkAAAAZAAAAEcAAAFHAAADRwAAAEcAAABHAAADRwAAAEcAAABkAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAABHAAAAZAAAAEwAAABMAAAATAAAAEcAAABHAAACTAAAAEwAAABkAAAAUwAAAFMAAABkAAAAZAAAAEcAAAJHAAADRwAAA2QAAABhAAAAYQAAAGEAAABhAAACYQAAAGEAAAFhAAACZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAUcAAANkAAAAYQAAAWEAAABhAAAAYQAAAGEAAAFhAAAAYQAAA0cAAANkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAADZAAAAGEAAABhAAADYQAAAmEAAANhAAAAYQAAA2EAAANHAAACZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAA2QAAABkAAAAZAAAAGQAAABkAAAAYQAAAmEAAANhAAACRwAAA2QAAABkAAAAZAAAAGQAAABHAAAARwAAAEcAAANhAAABYQAAAWEAAABhAAACZAAAAGEAAAJhAAABYQAAAUcAAABkAAAAZAAAAGQAAABkAAAARwAAAmQAAABHAAACYQAAAGEAAAFhAAACYQAAA2QAAABkAAAAZAAAAGQAAABHAAABZAAAAGQAAABkAAAAZAAAAEcAAABkAAAARwAAA2EAAABhAAABYQAAAWEAAAJkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAAkcAAAFhAAACYQAAA2EAAANhAAADZAAAAGQAAABkAAAAZAAAAA== + -4,1: + ind: -4,1 + tiles: UwAAAGQAAABTAAAAUwAAAGQAAABkAAAARwAAA0cAAANhAAACYQAAA2EAAAJhAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAEcAAAJHAAABZAAAABYAAAAWAAADFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAABZAAAAGQAAAAWAAAAFgAAAhYAAAFkAAAAUwAAAGQAAABTAAAAZAAAAGQAAABTAAAAZAAAAGQAAABHAAACRwAAA2QAAABkAAAAFgAAARYAAAEWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAARwAAAUcAAAFHAAADFgAAAxYAAAIWAAACFgAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAABYAAAIWAAAAFgAAABYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABHAAADZAAAAEcAAAFkAAAAHQAAAx0AAAAdAAABHQAAAmQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAADZAAAAB0AAAEdAAAAHQAAAx0AAANkAAAARwAAAWQAAABkAAAAZAAAAGQAAABkAAAARwAAAGQAAABkAAAARwAAAWQAAAAdAAADHQAAAR0AAAAdAAAAZAAAAEcAAABkAAAAUwAAAGQAAABkAAAARwAAA0cAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAdAAACZAAAAGQAAABHAAAAZAAAAFMAAABkAAAAZAAAAEcAAABHAAAARwAAA2QAAABHAAADRwAAAkcAAABHAAAATAAAAEcAAAJHAAADRwAAAmQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAAJkAAAARwAAAEcAAANHAAABRwAAAEcAAABMAAAARwAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAEcAAABHAAAAZAAAAEcAAAFHAAAARwAAA0cAAANHAAABRwAAA0cAAAJHAAACZAAAAGQAAABkAAAAZAAAAEcAAAJkAAAARwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAGQAAABHAAADRwAAA0cAAABHAAAARwAAAWQAAABHAAABRwAAAUcAAAFHAAACRwAAAkwAAABkAAAAZAAAAA== + -4,2: + ind: -4,2 + tiles: RwAAAkcAAANHAAABRwAAAUcAAANkAAAAZAAAAEcAAANHAAADRwAAA2QAAABkAAAAZAAAAGQAAABHAAABRwAAA0cAAAFkAAAARwAAAkcAAAJHAAAAZAAAAGQAAABHAAAARwAAAUcAAAJHAAADZAAAAEcAAAFHAAACRwAAA0cAAAFHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAwAAAAMAAAAGQAAABHAAACZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAIWAAACMAAAADAAAABkAAAARwAAAmQAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAABFgAAAjAAAAAwAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAhYAAAEwAAAAMAAAAGQAAABHAAADZAAAAD8AAABHAAAAPwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAABFgAAAxYAAAJkAAAARwAAAj8AAABkAAAAPwAAAD8AAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAPwAAAGQAAABkAAAAZAAAAEcAAAJHAAACPwAAAD8AAABHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAD8AAAA/AAAAPwAAAGQAAABHAAAAPwAAAEcAAAI/AAAAPwAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAAA/AAAAPwAAAD8AAABkAAAARwAAAj8AAABHAAADRwAAAD8AAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFkAAAAPwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAEcAAAFHAAACRwAAAj8AAABHAAAAZAAAAEcAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABHAAABRwAAAz8AAABHAAAAPwAAAD8AAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAFHAAACZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAWQAAABHAAABRwAAAkcAAAJHAAADTAAAAA== + -5,-1: + ind: -5,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABHAAACRwAAAEcAAANHAAADZAAAAEcAAANHAAABRwAAAEcAAAJkAAAAZAAAAEcAAAJjAAAAZAAAAGQAAABkAAAARwAAAUcAAAJHAAABRwAAA2QAAABkAAAAZAAAAGQAAABHAAADRwAAAkcAAANHAAAAYwAAAGQAAABkAAAAZAAAAEcAAAJHAAABRwAAAUcAAAFHAAACRwAAAEcAAABHAAAARwAAAUcAAANHAAADRwAAAmMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -5,0: + ind: -5,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAABjAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGMAAABjAAAAYwAAAGQAAABHAAABRwAAAUcAAAFkAAAAZAAAAEcAAAJHAAAARwAAAUcAAAJHAAADRwAAAUcAAAJjAAAAAAAAAGMAAABkAAAAZAAAAGQAAABHAAAARwAAAEcAAAJHAAABZAAAAGQAAABHAAABRwAAAUcAAAFHAAACYwAAAAAAAABjAAAAZAAAAEcAAANHAAAARwAAAUcAAAJHAAADRwAAAEcAAANHAAADRwAAAkcAAANkAAAAZAAAAGMAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAFgAAABYAAAAWAAAAFgAAAWQAAABkAAAAUwAAAGQAAABTAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAZAAAABYAAAIWAAAAFgAAAxYAAAJkAAAAZAAAAFMAAABkAAAAZAAAAAAAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGQAAAAWAAABFgAAABYAAAMWAAACZAAAAGQAAABkAAAAZAAAAEcAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABkAAAAFgAAAxYAAAIWAAAAFgAAAmQAAABTAAAAZAAAAGQAAABHAAABAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAZAAAABYAAAAWAAADFgAAAhYAAAAWAAADZAAAAGQAAABkAAAARwAAAQAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGQAAAAWAAABFgAAAxYAAAAWAAACZAAAAGQAAABTAAAAZAAAAEcAAAEAAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABHAAADAAAAAAAAAAAAAAAAYwAAAGQAAABHAAACRwAAA0cAAAFHAAAARwAAAkcAAABHAAAAZAAAAGQAAABkAAAAZAAAAA== + -2,3: + ind: -2,3 + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAYQAAAmEAAANhAAAAYQAAA2QAAABHAAACZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA2QAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAA2QAAABkAAAAZAAAAGQAAABHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAABkAAAAZAAAAEcAAAJkAAAAZAAAAEcAAAFkAAAAZAAAADwAAAA8AAAAPAAAADwAAABkAAAAFgAAABYAAAMWAAAAUwAAAGQAAABkAAAARwAAAGQAAABkAAAAZAAAAGQAAAA8AAAAFgAAARYAAAEWAAADPAAAABYAAAMWAAABFgAAAGQAAABkAAAARwAAAGQAAABkAAAARwAAAGQAAABkAAAAPAAAABYAAAI7AAAAFgAAAmQAAAAWAAACFgAAAhYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA4AAAAWAAACOwAAAxYAAAJkAAAAFgAAABYAAAEWAAADZAAAAGQAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAAA8AAAAFgAAABYAAAAWAAACZAAAABYAAAEWAAACFgAAAWQAAABkAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAGQAAABjAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAARwAAA0cAAABHAAABFgAAABYAAAMWAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAEcAAABHAAABRwAAAxYAAAMWAAADFgAAAmMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABHAAADRwAAAUcAAABkAAAAFgAAABYAAAJjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAGMAAABkAAAARwAAAkcAAAJHAAADRwAAAUcAAAFHAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAZAAAAGQAAABHAAAARwAAAEcAAABHAAACRwAAAQ== + -1,3: + ind: -1,3 + tiles: ZAAAAEcAAABHAAABRwAAAEcAAAJHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABkAAAAUwAAAFMAAABTAAAAUwAAAGQAAABkAAAAUwAAAGQAAABjAAAAYwAAAGMAAABkAAAAEQAAABEAAABHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAABjAAAAZAAAABEAAAARAAAARwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGMAAABjAAAAYwAAAGQAAAARAAAAEQAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAGMAAABkAAAAEQAAABEAAAAWAAADFgAAA2QAAABHAAADRwAAAUcAAAFHAAABRwAAA0cAAAJkAAAAZAAAAGMAAABjAAAAZAAAABEAAAARAAAAFgAAARYAAAFkAAAARwAAAEcAAABHAAACRwAAA0cAAABHAAABRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAAWAAACRwAAAUcAAAJHAAAARwAAAkcAAAJHAAAARwAAAUcAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAWAAACFgAAAWQAAABHAAAARwAAA0cAAABHAAADRwAAA0cAAABHAAADZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAFgAAAxYAAAFkAAAARwAAAkcAAABHAAABRwAAAUcAAANHAAABZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAABYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAA2QAAABhAAACZAAAAGMAAAAAAAAAAAAAAAAAAAAWAAADFgAAA0cAAANHAAAARwAAAGQAAAAWAAADFgAAAxYAAAJhAAAAYQAAAGQAAABjAAAAAAAAAGMAAAAAAAAAFgAAABYAAABHAAABRwAAAUcAAANkAAAAFgAAARYAAAAWAAAAYQAAAWEAAAJkAAAAYwAAAGMAAABjAAAAAAAAABYAAAJkAAAARwAAA0cAAANHAAACZAAAABYAAAEWAAAAFgAAAWEAAANhAAAAZAAAAGMAAAAAAAAAYwAAAAAAAABHAAACRwAAAkcAAAJHAAACRwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAAAAAAAARwAAAkcAAAJHAAAARwAAA2QAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAA== + 0,3: + ind: 0,3 + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAABEAAABkAAAAZAAAAGEAAAFhAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAARAAAAZAAAAGEAAAFhAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAANkAAAAYQAAAWEAAAJhAAABEQAAAGQAAABhAAADZAAAAGEAAANkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAABZAAAAGEAAABhAAADYQAAAhEAAABkAAAAYQAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAWQAAABhAAACYQAAAmEAAAIRAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 1,3: + ind: 1,3 + tiles: ZAAAAGEAAABhAAABZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABhAAABYQAAA2QAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABhAAAAYQAAAmEAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAGEAAAFhAAACZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGEAAABhAAADYQAAA2QAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -1,4: + ind: -1,4 + tiles: RwAAAUcAAAFHAAADRwAAAmQAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAEcAAAFHAAADRwAAAWQAAABkAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABHAAADRwAAAmQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -2,4: + ind: -2,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGQAAABHAAACRwAAAEcAAAFHAAABRwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABkAAAAZAAAAEcAAAFHAAABRwAAAUcAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABkAAAARwAAAkcAAAJHAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -3,3: + ind: -3,3 + tiles: RwAAAkcAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAABZAAAAFMAAABkAAAARwAAA0cAAABHAAABRwAAAWQAAABHAAACZAAAAEcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAADRwAAA0cAAABkAAAAZAAAAEcAAABHAAACZAAAAGQAAABkAAAAZAAAAEcAAABkAAAAUwAAAGQAAABHAAAARwAAA0cAAAFHAAADZAAAAGQAAABkAAAARwAAAkcAAABkAAAAZAAAAGQAAABHAAADZAAAAFMAAABkAAAARwAAAUcAAANHAAADRwAAA2QAAABHAAABRwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABHAAAAZAAAAFMAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAAAWAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAhYAAANkAAAAYwAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAIWAAABZAAAAGQAAABjAAAAYwAAAGMAAABkAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADFgAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAAAAAAAAAAAAAGMAAABjAAAAFgAAARYAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAABYAAAEWAAADFgAAAkcAAAJHAAAARwAAAEcAAABkAAAAZAAAAGMAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAWAAABFgAAARYAAAEWAAADRwAAA0cAAAFHAAADZAAAAGQAAABjAAAAYwAAAGQAAABjAAAAYwAAAAAAAABjAAAAFgAAAmQAAABkAAAARwAAAEcAAABHAAADRwAAA2QAAABkAAAAYwAAAGMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAA== + -4,3: + ind: -4,3 + tiles: UwAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABTAAAAZAAAAGQAAABHAAADRwAAAkcAAAJHAAADRwAAAWQAAABkAAAAUwAAAGQAAABTAAAAZAAAAGQAAABTAAAAZAAAAGQAAABHAAAARwAAAEcAAAFHAAABRwAAAUcAAAJkAAAAUwAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAADRwAAAkcAAAFHAAAAZAAAAFMAAABkAAAAZAAAAFMAAABkAAAAZAAAAFMAAABkAAAAZAAAAEcAAANHAAADRwAAA0cAAAJHAAAARwAAAkcAAAFHAAAARwAAAUcAAAFHAAADRwAAA0cAAAJHAAACRwAAA0cAAABkAAAARwAAA0cAAAFHAAAARwAAAUcAAAJkAAAARwAAAEcAAAFHAAAARwAAA0cAAANHAAACRwAAAEcAAAFkAAAAZAAAAEcAAAFHAAACRwAAAUcAAABHAAABRwAAAkcAAABHAAACRwAAA0cAAAJHAAACRwAAA0cAAAFHAAAARwAAA0cAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAA0cAAAFHAAACRwAAAEcAAABHAAACRwAAA2QAAABkAAAAFgAAA2QAAAAWAAAAFgAAABYAAAAWAAACRwAAAUcAAANHAAADRwAAAUcAAAJHAAADRwAAAkcAAANkAAAAFgAAABYAAAFkAAAAFgAAAhYAAAIWAAABZAAAAEcAAABHAAACRwAAAkcAAANHAAAARwAAAEcAAABHAAACZAAAABYAAAMWAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJkAAAARwAAA2QAAAAWAAAAFgAAAhsAAANHAAADRwAAAEcAAAJHAAAARwAAAUcAAAJHAAACRwAAA0cAAABHAAADRwAAAUcAAABkAAAAFgAAAGQAAABkAAAARwAAAUcAAAFHAAACRwAAAUcAAANHAAABRwAAAUcAAAFHAAACRwAAAEcAAAFHAAADFgAAAxYAAAMAAAAAZAAAAGQAAABkAAAAYQAAAGQAAABkAAAAZAAAAGEAAAFkAAAAZAAAAEcAAABHAAACRwAAAWQAAAAWAAACAAAAAGQAAABhAAACYQAAAmEAAABhAAAAZAAAAGEAAAJhAAABYQAAAWQAAABHAAADRwAAAUcAAAJkAAAAZAAAAA== + -4,-2: + ind: -4,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAA== + -3,-2: + ind: -3,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -5,2: + ind: -5,2 + tiles: RwAAAUcAAANHAAADRwAAAGQAAABHAAACZAAAAGQAAABkAAAARwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAACRwAAAkcAAANkAAAARwAAAmQAAABHAAACRwAAAEcAAABHAAACRwAAA0cAAAJHAAACRwAAAEcAAANkAAAAZAAAAGQAAABkAAAAUwAAAEcAAANHAAAARwAAAkcAAAFHAAACRwAAAUcAAAJHAAABRwAAAkcAAANHAAAAZAAAAGQAAABkAAAAZAAAAFMAAABHAAAARwAAAkcAAAJHAAAARwAAAUcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAPwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAAWQAAABkAAAAZAAAAFMAAABkAAAAZAAAAD8AAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAAGEAAAFhAAACYQAAAGQAAABTAAAAZAAAAGQAAAA/AAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGEAAANhAAACYQAAAWEAAABkAAAAZAAAAGQAAABkAAAARwAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAYQAAAWEAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGEAAANhAAABYQAAAWQAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAANhAAABYQAAAWEAAAFkAAAAZAAAAFMAAABkAAAAPwAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABhAAACYQAAAWEAAANkAAAAZAAAAGQAAABTAAAAZAAAAEcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAADMAAABkAAAAMwAAAGQAAAAzAAAAZAAAAEcAAANkAAAARwAAAg== + -5,3: + ind: -5,3 + tiles: YwAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAAAzAAAAMwAAAGQAAABkAAAAZAAAAGQAAABHAAABZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAAAzAAAAZAAAAGQAAAAzAAAAZAAAAEcAAANHAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAmQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAAAZAAAAEcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABTAAAAZAAAAEcAAAFkAAAARwAAA0cAAANkAAAAZAAAAFMAAABkAAAARwAAA0cAAAFjAAAAZAAAABYAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAABYwAAAGQAAAAWAAACFgAAAxYAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAAFkAAAAZAAAAGQAAABHAAAARwAAAmMAAABkAAAAFgAAARYAAAAWAAADZAAAAGQAAABkAAAARwAAAEcAAABkAAAAZAAAAFMAAABkAAAARwAAAUcAAAFjAAAAZAAAABYAAAAWAAABFgAAAGQAAABkAAAAZAAAAGQAAABHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAA== + -3,4: + ind: -3,4 + tiles: RwAAA0cAAANHAAABRwAAA0cAAAFHAAABRwAAA2QAAABkAAAAYwAAAGMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAEcAAANHAAAARwAAAGQAAABHAAACRwAAAEcAAAFkAAAAZAAAAGMAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJkAAAAZAAAAGQAAABjAAAAYwAAAGQAAABjAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGMAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -4,4: + ind: -4,4 + tiles: AAAAAGQAAABhAAABYQAAA2EAAAFhAAAAZAAAAGEAAAFhAAADYQAAAWQAAABHAAADRwAAAEcAAAJHAAABRwAAAmMAAABkAAAAYQAAA2EAAAFhAAABYQAAAGQAAABhAAADYQAAAmEAAAJkAAAARwAAAkcAAAJHAAAARwAAAEcAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAA== + -4,5: + ind: -4,5 + tiles: AAAAAAYAAAAGAAAABgAAAgYAAAAGAAAABgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAACBgAAAAYAAANkAAAAZAAAAGQAAABkAAAARwAAAmQAAABHAAACZAAAAAYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAAZAAAAEcAAANkAAAAZAAAAGQAAAAGAAAGZAAAACgAAABHAAADZAAAAEcAAANHAAAARwAAAEcAAAFkAAAARwAAA0cAAANHAAABZAAAAEcAAAFkAAAABgAAAGQAAAAoAAAARwAAAGQAAABHAAADRwAAA2QAAABkAAAARwAAAGQAAABkAAAAZAAAAEcAAABkAAAAZAAAAAYAAABkAAAAKAAAAGQAAABHAAAAZAAAAGQAAABHAAABZAAAAGQAAABkAAAAZAAAAEcAAABkAAAARwAAA2QAAAAGAAABZAAAAGQAAABHAAAARwAAAkcAAAJkAAAARwAAAz8AAABkAAAAPwAAAGQAAABkAAAAZAAAAEcAAAFkAAAABgAAAAAAAABkAAAARwAAAGQAAABHAAABZAAAAEcAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAAJHAAABZAAAAAYAAABjAAAAZAAAAEcAAAFHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADZAAAAGQAAABkAAAARwAAA2QAAAAGAAAAAAAAAGQAAABHAAACZAAAAEcAAAJHAAADRwAAAUcAAAFHAAAAZAAAAEcAAAFHAAADRwAAAWQAAABkAAAABgAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABkAAAARwAAAGQAAABHAAABZAAAAAYAAAAAAAAABgAAAAYAAAAGAAAABgAAAAYAAAEGAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAGAAAABgAAAwYAAAwGAAAABgAABwYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAHAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAACAYAAAkGAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -3,5: + ind: -3,5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -5,5: + ind: -5,5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -5,1: + ind: -5,1 + tiles: YwAAAGMAAABjAAAAYwAAAGQAAABHAAAARwAAAEcAAABHAAAARwAAA0cAAANHAAADZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAANHAAABRwAAA2QAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABTAAAAUwAAAGQAAABTAAAAZAAAAEcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABHAAACRwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAFMAAABkAAAARwAAAEcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAEcAAANHAAACRwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAWQAAABTAAAAUwAAAGQAAABHAAACRwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFkAAAAZAAAAGQAAABkAAAARwAAA0cAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAmQAAABHAAACRwAAAEcAAANHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAAFHAAABRwAAA0cAAAFHAAACRwAAA2QAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAAJHAAACRwAAAUcAAABHAAACZAAAAEcAAAFHAAADRwAAA0cAAANkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAACRwAAA0cAAABHAAABZAAAAGQAAABkAAAAZAAAAEcAAANHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAAZAAAAGQAAABHAAACZAAAAGQAAABTAAAAUwAAAGQAAABkAAAARwAAAWQAAABkAAAAZAAAAFMAAABkAAAARwAAA0cAAABkAAAAZAAAAEcAAABTAAAAUwAAAFMAAABkAAAAZAAAAEcAAAFkAAAAZAAAAGQAAABTAAAAZAAAAEcAAAJHAAABZAAAAGQAAABHAAAAUwAAAFMAAABTAAAAZAAAAEcAAAJHAAACZAAAAGQAAABkAAAAUwAAAGQAAABHAAABRwAAAWQAAABkAAAARwAAAlMAAABTAAAAUwAAAGQAAABHAAADZAAAAGQAAABkAAAAZAAAAFMAAABkAAAARwAAA0cAAAJkAAAAZAAAAA== + -6,1: + ind: -6,1 + tiles: AAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAUwAAAFMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAFMAAABTAAAAUwAAAGQAAABTAAAAZAAAAGQAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGQAAABjAAAAYwAAAGMAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABTAAAAZAAAAEcAAAFHAAACRwAAA2MAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGQAAABHAAADRwAAAEcAAABHAAABRwAAAUcAAAEAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABkAAAARwAAAmQAAABkAAAAZAAAAGQAAABHAAADAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAEcAAANkAAAAZAAAAGQAAABkAAAARwAAAwAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGQAAABHAAAAZAAAAGQAAABkAAAAZAAAAEcAAANjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABkAAAARwAAAUcAAABHAAACRwAAA0cAAANHAAABYwAAAGMAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAZAAAAGMAAABjAAAAYwAAAGQAAABTAAAAUwAAAGQAAABHAAACRwAAAUcAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABTAAAAUwAAAFMAAABkAAAARwAAA0cAAAJHAAACYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAABRwAAAg== + -6,2: + ind: -6,2 + tiles: YwAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAADRwAAA2MAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGMAAABkAAAAZAAAAGQAAABHAAABRwAAAUcAAAMAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + -7,1: + ind: -7,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABkAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAA== + -7,2: + ind: -7,2 + tiles: YwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -6,3: + ind: -6,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -5,4: + ind: -5,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -7,0: + ind: -7,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAA== + -6,0: + ind: -6,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAA== + 2,-1: + ind: 2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 2,2: + ind: 2,2 + tiles: YwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: Shuttle + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#DE3A3A96' + id: Bot + decals: + 7285: -43,66 + - node: + color: '#52B4E996' + id: BotGreyscale + decals: + 6936: 25,28 + 6939: 28,28 + - node: + color: '#9FED5896' + id: BotGreyscale + decals: + 6940: 25,26 + 6941: 25,25 + - node: + color: '#A4610696' + id: BotGreyscale + decals: + 6943: 28,25 + - node: + color: '#D381C996' + id: BotGreyscale + decals: + 6942: 28,26 + - node: + color: '#DE3A3A96' + id: BotGreyscale + decals: + 6937: 26,28 + - node: + color: '#EFB34196' + id: BotGreyscale + decals: + 6938: 27,28 + - node: + color: '#A46106FF' + id: BotLeft + decals: + 7159: -45,-11 + 7160: -45,-12 + 7161: -44,-12 + 7162: -44,-11 + 7163: -43,-11 + 7164: -43,-12 + 7165: -42,-11 + 7166: -42,-12 + - node: + color: '#A46106FF' + id: Box + decals: + 2154: -11,56 + - node: + color: '#EFB341FF' + id: Box + decals: + 2152: -10,54 + - node: + color: '#334E6DC8' + id: BoxGreyscale + decals: + 2156: -9,56 + - node: + color: '#334E6DFF' + id: BoxGreyscale + decals: + 2155: -8,55 + - node: + color: '#52B4E9FF' + id: BoxGreyscale + decals: + 2158: -10,56 + - node: + color: '#D381C9FF' + id: BoxGreyscale + decals: + 2153: -11,54 + - node: + color: '#DE3A3AFF' + id: BoxGreyscale + decals: + 2157: -9,54 + - node: + color: '#D381C9FF' + id: BrickTileSteelBox + decals: + 13: -13,-7 + 63: -11,1 + 64: 0,-2 + - node: + color: '#52B4E9FF' + id: BrickTileSteelCornerNe + decals: + 2674: 4,17 + - node: + color: '#D381C9FF' + id: BrickTileSteelCornerNe + decals: + 8: -12,-8 + 62: -12,2 + - node: + color: '#52B4E9FF' + id: BrickTileSteelCornerNw + decals: + 2675: -2,17 + 2705: 2,40 + - node: + color: '#D381C9FF' + id: BrickTileSteelCornerNw + decals: + 7: -14,-8 + - node: + color: '#52B4E9FF' + id: BrickTileSteelCornerSe + decals: + 2616: 16,28 + 2676: 4,14 + - node: + color: '#D381C9FF' + id: BrickTileSteelCornerSe + decals: + 10: -12,-9 + 61: -12,0 + 70: 2,-3 + - node: + color: '#52B4E9FF' + id: BrickTileSteelCornerSw + decals: + 2613: 14,28 + 2677: -2,14 + - node: + color: '#D381C9FF' + id: BrickTileSteelCornerSw + decals: + 9: -14,-9 + 69: 1,-3 + - node: + color: '#52B4E9FF' + id: BrickTileSteelEndN + decals: + 2713: 0,39 + - node: + color: '#52B4E9FF' + id: BrickTileSteelLineE + decals: + 2617: 16,29 + 2678: 4,15 + 2679: 4,16 + 2698: 4,37 + 2699: 4,38 + 2700: 4,39 + - node: + color: '#D381C9FF' + id: BrickTileSteelLineE + decals: + 59: -12,1 + 65: 2,-1 + 66: 2,-2 + - node: + color: '#52B4E9FF' + id: BrickTileSteelLineN + decals: + 2680: -1,17 + 2681: 0,17 + 2682: 1,17 + 2683: 2,17 + 2684: 2,17 + 2685: 3,17 + 2701: 3,40 + - node: + color: '#D381C9FF' + id: BrickTileSteelLineN + decals: + 11: -13,-8 + 58: -13,2 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 0: -13,-4 + 1: -12,-4 + 2: -11,-4 + 3: -10,-4 + - node: + color: '#52B4E9FF' + id: BrickTileSteelLineS + decals: + 2615: 15,28 + 2688: -1,14 + 2689: 0,14 + 2690: 1,14 + 2691: 2,14 + 2692: 3,14 + 2702: 3,36 + - node: + color: '#D381C9FF' + id: BrickTileSteelLineS + decals: + 12: -13,-9 + 60: -13,0 + - node: + color: '#52B4E9FF' + id: BrickTileSteelLineW + decals: + 2614: 14,29 + 2686: -2,16 + 2687: -2,15 + 2703: 2,37 + 2704: 2,38 + - node: + color: '#D381C9FF' + id: BrickTileSteelLineW + decals: + 67: 1,-1 + 68: 1,-2 + - node: + color: '#334E6DFF' + id: BrickTileWhiteCornerNe + decals: + 5525: -8,57 + 5526: -7,56 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteCornerNe + decals: + 2694: 11,33 + - node: + color: '#9FED58FF' + id: BrickTileWhiteCornerNe + decals: + 2634: 11,13 + 2635: 9,13 + 2636: 7,13 + - node: + color: '#A46106FF' + id: BrickTileWhiteCornerNe + decals: + 722: -37,1 + 747: -44,-7 + - node: + color: '#D381C9FF' + id: BrickTileWhiteCornerNe + decals: + 43: -1,-2 + 78: -3,-3 + - node: + color: '#DE3A3AFF' + id: BrickTileWhiteCornerNe + decals: + 3351: -42,65 + - node: + color: '#EFB341FF' + id: BrickTileWhiteCornerNe + decals: + 4225: -70,31 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNw + decals: + 2159: -13,57 + - node: + color: '#334E6DFF' + id: BrickTileWhiteCornerNw + decals: + 2160: -13,57 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteCornerNw + decals: + 2693: 7,33 + - node: + color: '#9FED58FF' + id: BrickTileWhiteCornerNw + decals: + 2631: 6,13 + 2632: 8,13 + 2633: 10,13 + - node: + color: '#A46106FF' + id: BrickTileWhiteCornerNw + decals: + 721: -39,1 + 746: -46,-7 + - node: + color: '#D381C9FF' + id: BrickTileWhiteCornerNw + decals: + 41: -14,-2 + 42: -10,2 + 80: -5,-3 + - node: + color: '#DE3A3AFF' + id: BrickTileWhiteCornerNw + decals: + 3352: -44,65 + - node: + color: '#EFB341FF' + id: BrickTileWhiteCornerNw + decals: + 4208: -75,17 + 4211: -68,31 + - node: + color: '#334E6DFF' + id: BrickTileWhiteCornerSe + decals: + 2161: -7,54 + 2162: -8,53 + - node: + color: '#9FED58FF' + id: BrickTileWhiteCornerSe + decals: + 2628: 7,11 + 2629: 9,11 + 2630: 11,11 + - node: + color: '#A46106FF' + id: BrickTileWhiteCornerSe + decals: + 720: -37,0 + 745: -44,-8 + - node: + color: '#D381C9FF' + id: BrickTileWhiteCornerSe + decals: + 79: -3,-4 + - node: + color: '#DE3A3AFF' + id: BrickTileWhiteCornerSe + decals: + 3353: -42,61 + - node: + color: '#EFB341FF' + id: BrickTileWhiteCornerSe + decals: + 4212: -64,25 + - node: + color: '#334E6DFF' + id: BrickTileWhiteCornerSw + decals: + 2163: -13,53 + - node: + color: '#9FED58FF' + id: BrickTileWhiteCornerSw + decals: + 2637: 6,11 + 2638: 8,11 + 2639: 10,11 + - node: + color: '#A46106FF' + id: BrickTileWhiteCornerSw + decals: + 719: -39,0 + 748: -46,-8 + - node: + color: '#D381C9FF' + id: BrickTileWhiteCornerSw + decals: + 44: -7,-6 + 81: -5,-4 + - node: + color: '#DE3A3AFF' + id: BrickTileWhiteCornerSw + decals: + 3354: -44,61 + - node: + color: '#EFB341FF' + id: BrickTileWhiteCornerSw + decals: + 4209: -75,15 + 4210: -68,25 + - node: + color: '#D381C9FF' + id: BrickTileWhiteEndE + decals: + 57: -6,2 + - node: + color: '#334E6DFF' + id: BrickTileWhiteInnerNe + decals: + 5527: -8,56 + - node: + color: '#A4610696' + id: BrickTileWhiteInnerNe + decals: + 6947: 27,24 + - node: + color: '#D381C9FF' + id: BrickTileWhiteInnerNe + decals: + 45: -7,-2 + - node: + color: '#9FED5896' + id: BrickTileWhiteInnerNw + decals: + 6955: 26,24 + - node: + color: '#D381C9FF' + id: BrickTileWhiteInnerNw + decals: + 48: -10,-2 + 56: -14,-4 + - node: + color: '#334E6DFF' + id: BrickTileWhiteInnerSe + decals: + 2174: -8,54 + 2187: -20,62 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerSe + decals: + 6951: 27,27 + - node: + color: '#D381C9FF' + id: BrickTileWhiteInnerSe + decals: + 46: -9,-3 + 49: -7,2 + - node: + color: '#334E6DFF' + id: BrickTileWhiteInnerSw + decals: + 2186: -14,62 + - node: + color: '#9FED5896' + id: BrickTileWhiteInnerSw + decals: + 6948: 26,27 + - node: + color: '#D381C9FF' + id: BrickTileWhiteInnerSw + decals: + 47: -7,-3 + - node: + color: '#334E6DFF' + id: BrickTileWhiteLineE + decals: + 2164: -7,55 + 2175: -20,59 + 2176: -20,60 + 2177: -20,61 + - node: + color: '#9FED58FF' + id: BrickTileWhiteLineE + decals: + 2640: 7,12 + 2641: 9,12 + 2645: 11,12 + 7329: -12,15 + 7330: -12,14 + - node: + color: '#A4610696' + id: BrickTileWhiteLineE + decals: + 6946: 27,25 + - node: + color: '#D381C996' + id: BrickTileWhiteLineE + decals: + 6952: 27,26 + - node: + color: '#D381C9FF' + id: BrickTileWhiteLineE + decals: + 24: -7,-1 + 25: -7,0 + 26: -7,1 + 27: -1,-3 + 28: -1,-4 + 29: -1,-5 + - node: + color: '#DE3A3AFF' + id: BrickTileWhiteLineE + decals: + 3344: -42,64 + 3345: -42,63 + 3346: -42,62 + - node: + color: '#EFB341FF' + id: BrickTileWhiteLineE + decals: + 4213: -64,26 + 4214: -64,27 + 4215: -64,28 + 4228: -70,30 + 4229: -70,29 + 4230: -70,28 + 7334: -12,8 + 7335: -12,9 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineN + decals: + 6932: 25,27 + - node: + color: '#334E6DFF' + id: BrickTileWhiteLineN + decals: + 2165: -11,57 + 2166: -12,57 + 5523: -10,57 + 5524: -9,57 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineN + decals: + 6935: 28,27 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteLineN + decals: + 2695: 8,33 + 2696: 9,33 + 2697: 10,33 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineN + decals: + 6945: 25,24 + - node: + color: '#A4610696' + id: BrickTileWhiteLineN + decals: + 6944: 28,24 + - node: + color: '#A46106FF' + id: BrickTileWhiteLineN + decals: + 718: -38,1 + 750: -45,-7 + - node: + color: '#D381C9FF' + id: BrickTileWhiteLineN + decals: + 30: -6,-2 + 31: -5,-2 + 32: -4,-2 + 33: -3,-2 + 34: -2,-2 + 35: -7,2 + 36: -8,2 + 37: -9,2 + 38: -11,-2 + 39: -12,-2 + 40: -13,-2 + 50: -9,-4 + 51: -10,-4 + 52: -11,-4 + 53: -12,-4 + 54: -13,-4 + 55: -14,-4 + 83: -4,-3 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + decals: + 6933: 26,27 + - node: + color: '#DE3A3AFF' + id: BrickTileWhiteLineN + decals: + 3343: -43,65 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineN + decals: + 6934: 27,27 + - node: + color: '#EFB341FF' + id: BrickTileWhiteLineN + decals: + 4205: -74,17 + 4206: -73,17 + 4207: -72,17 + 4216: -67,31 + 4226: -71,31 + 4227: -72,31 + - node: + color: '#334E6DFF' + id: BrickTileWhiteLineS + decals: + 2167: -12,53 + 2168: -11,53 + 2169: -10,53 + 2170: -9,53 + 2178: -19,62 + 2179: -18,62 + 2180: -17,62 + 2181: -16,62 + 2182: -15,62 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineS + decals: + 6949: 25,27 + - node: + color: '#A46106FF' + id: BrickTileWhiteLineS + decals: + 717: -38,0 + 749: -45,-8 + - node: + color: '#D381C996' + id: BrickTileWhiteLineS + decals: + 6950: 28,27 + - node: + color: '#D381C9FF' + id: BrickTileWhiteLineS + decals: + 20: -8,-3 + 21: -6,-6 + 22: -5,-6 + 23: -4,-6 + 82: -4,-4 + - node: + color: '#DE3A3AFF' + id: BrickTileWhiteLineS + decals: + 3347: -43,61 + - node: + color: '#EFB341FF' + id: BrickTileWhiteLineS + decals: + 4203: -72,15 + 4217: -67,25 + 4218: -66,25 + 4219: -65,25 + 7292: -74,15 + 7293: -73,15 + - node: + color: '#334E6DFF' + id: BrickTileWhiteLineW + decals: + 2171: -13,54 + 2172: -13,55 + 2173: -13,56 + 2183: -14,59 + 2184: -14,60 + 2185: -14,61 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteLineW + decals: + 7331: -14,14 + 7332: -14,13 + 7333: -14,12 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineW + decals: + 6953: 26,26 + 6954: 26,25 + - node: + color: '#9FED58FF' + id: BrickTileWhiteLineW + decals: + 2642: 6,12 + 2643: 8,12 + 2644: 10,12 + - node: + color: '#D381C9FF' + id: BrickTileWhiteLineW + decals: + 14: -14,-3 + 15: -7,-4 + 16: -7,-5 + 17: -10,0 + 18: -10,1 + 19: -10,-1 + - node: + color: '#DE3A3AFF' + id: BrickTileWhiteLineW + decals: + 3348: -44,62 + 3349: -44,63 + 3350: -44,64 + 7326: -14,8 + 7327: -14,9 + 7328: -14,10 + - node: + color: '#EFB341FF' + id: BrickTileWhiteLineW + decals: + 4204: -75,16 + 4220: -68,26 + 4221: -68,27 + 4222: -68,28 + 4223: -68,29 + 4224: -68,30 + - node: + color: '#FFFFFFFF' + id: Bushb1 + decals: + 7311: 17,37 + 7312: 22,37 + 7313: 19,40 + - node: + color: '#FFFFFFFF' + id: Bushc3 + decals: + 7309: 21,43 + 7310: 23,43 + - node: + color: '#FFFFFFFF' + id: Bushf2 + decals: + 7308: 21,40 + - node: + color: '#FFFFFFFF' + id: Bushh2 + decals: + 7307: 21,38 + - node: + color: '#FFFFFFFF' + id: Bushi3 + decals: + 7305: 17,40 + 7306: 18,41 + - node: + color: '#DE3A3A96' + id: CheckerNWSE + decals: + 3416: -57,57 + 3417: -57,56 + 3418: -57,55 + 3419: -57,54 + 3420: -56,54 + 3421: -56,55 + 3422: -56,56 + 3423: -56,57 + 3424: -55,57 + 3425: -55,56 + 3426: -55,55 + 3427: -55,54 + 3428: -54,54 + 3429: -54,55 + 3430: -54,56 + 3431: -54,57 + 3432: -53,57 + 3433: -53,56 + 3434: -53,55 + 3435: -53,54 + 3436: -52,54 + 3437: -52,55 + 3438: -52,56 + 3439: -52,57 + 3444: -58,58 + 3445: -57,58 + 3446: -56,58 + 3447: -55,58 + 3448: -54,58 + 3449: -53,58 + 3450: -52,58 + 3451: -51,58 + 3452: -51,57 + 3453: -51,56 + 3454: -51,55 + 3455: -51,54 + 3456: -51,53 + 3457: -52,53 + 3458: -53,53 + 3459: -54,53 + 3460: -55,53 + 3461: -56,53 + 3462: -57,53 + 3463: -58,53 + 3464: -58,54 + 3465: -58,55 + 3466: -58,56 + 3467: -58,57 + - node: + color: '#FF00FFFF' + id: CheckerNWSE + decals: + 693: -30,-13 + 694: -30,-12 + 695: -30,-11 + 696: -29,-11 + 697: -29,-12 + 698: -29,-13 + 699: -28,-13 + 700: -28,-12 + 701: -28,-11 + - node: + cleanable: True + color: '#0000008F' + id: Damaged + decals: + 7776: 26,16 + 7777: 19,6 + 7778: 15,6 + 7779: 16,6 + 7780: 11,3 + 7781: 11,3 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 7299: -55,7 + 7300: -54,7 + 7301: -53,7 + 7302: -50,7 + 7303: -48,7 + 7304: -47,7 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 4577: -68,44 + 7347: -13,55 + 7348: -13,55 + 7349: -13,55 + 7350: -13,56 + 7351: -9,57 + 7352: -9,56 + 7353: -10,56 + 7354: -12,56 + 7355: -10,54 + 7356: -9,53 + 7357: -8,54 + 7358: -8,53 + 7359: -15,53 + 7360: -15,54 + 7361: -16,55 + 7362: -16,54 + 7363: -17,55 + 7364: -19,55 + 7365: -14,57 + 7366: -17,57 + 7367: -15,57 + 7368: -17,53 + 7369: -18,59 + 7370: -21,60 + 7371: -21,60 + 7372: -20,62 + 7373: -19,64 + 7374: -17,62 + 7375: -19,61 + 7376: -17,62 + 7377: -17,61 + 7378: -16,60 + 7379: -17,60 + 7380: -16,60 + 7381: -16,59 + 7382: -15,60 + 7383: -18,60 + 7384: -15,59 + 7385: -16,61 + 7386: -17,59 + 7387: -18,61 + 7388: -19,59 + 7389: -19,60 + 7390: -20,59 + 7391: -20,60 + 7392: -20,61 + 7393: -15,64 + 7394: -16,64 + 7395: -16,62 + 7396: -18,65 + 7397: -18,51 + 7398: -16,51 + 7399: -17,50 + 7400: -17,49 + 7401: -17,48 + 7402: -16,47 + 7403: -16,46 + 7404: -17,46 + 7405: -17,44 + 7406: -18,42 + 7407: -16,39 + 7408: -17,40 + 7409: -17,39 + 7410: -16,38 + 7411: -16,35 + 7412: -17,36 + 7413: -17,35 + 7414: -18,34 + 7415: -17,34 + 7416: -16,34 + 7417: -17,33 + 7418: -18,31 + 7419: -19,31 + 7420: -20,31 + 7421: -21,31 + 7422: -24,31 + 7423: -25,31 + 7424: -25,32 + 7425: -26,31 + 7426: -27,31 + 7427: -23,31 + 7428: -25,32 + 7429: -24,32 + 7430: -23,34 + 7431: -25,33 + 7432: -25,34 + 7433: -26,33 + 7434: -20,38 + 7435: -20,37 + 7436: -22,38 + 7437: -21,40 + 7438: -23,40 + 7439: -22,41 + 7440: -21,42 + 7441: -22,39 + 7442: -21,44 + 7443: -21,45 + 7444: -20,45 + 7445: -20,44 + 7446: -22,44 + 7447: -23,44 + 7448: -21,46 + 7449: -20,46 + 7450: -20,47 + 7451: -21,47 + 7452: -21,48 + 7453: -22,48 + 7454: -23,48 + 7455: -20,48 + 7456: -16,40 + 7457: -15,40 + 7458: -15,37 + 7459: -8,36 + 7460: -9,37 + 7461: -4,31 + 7462: -4,30 + 7463: -2,30 + 7464: -1,30 + 7465: 3,26 + 7466: 3,27 + 7467: 3,24 + 7468: 3,23 + 7469: 3,21 + 7470: 3,20 + 7471: 3,28 + 7472: 2,27 + 7473: 2,19 + 7474: 3,16 + 7475: 3,17 + 7476: 1,16 + 7477: -1,16 + 7478: 0,15 + 7479: 2,15 + 7480: 3,14 + 7481: 9,15 + 7482: 8,15 + 7483: 9,16 + 7484: 10,16 + 7485: 9,17 + 7486: 10,18 + 7487: 10,19 + 7488: 9,22 + 7489: 7,22 + 7490: 6,22 + 7491: 6,23 + 7492: 6,24 + 7493: 6,26 + 7494: 7,26 + 7495: 8,26 + 7496: 8,25 + 7497: 7,28 + 7498: 7,29 + 7499: 7,29 + 7500: 9,29 + 7501: 10,30 + 7502: 11,30 + 7503: 11,29 + 7504: 9,30 + 7505: 9,31 + 7506: 2,29 + 7507: 2,30 + 7508: 3,29 + 7509: 5,30 + 7510: 5,29 + 7511: 3,32 + 7512: 2,32 + 7513: 0,33 + 7514: -1,32 + 7515: -7,31 + 7516: -9,31 + 7517: -8,32 + 7518: -8,33 + 7519: -10,33 + 7520: -12,32 + 7521: -11,31 + 7522: -12,31 + 7523: -12,29 + 7524: -14,30 + 7525: -14,30 + 7526: -13,31 + 7527: -14,31 + 7528: -15,32 + 7529: -15,31 + 7530: -15,33 + 7531: -42,36 + 7532: -42,38 + 7533: -43,38 + 7534: -45,37 + 7535: -44,37 + 7536: -44,36 + 7537: -39,35 + 7538: -40,36 + 7539: -40,37 + 7540: -40,38 + 7541: -38,39 + 7542: -36,36 + 7543: -35,36 + 7544: -35,37 + 7545: -36,37 + 7546: -36,38 + 7547: -35,39 + 7548: -35,40 + 7549: -36,40 + 7550: -37,40 + 7551: -33,35 + 7552: -32,35 + 7553: -33,36 + 7554: -32,37 + 7555: -31,37 + 7556: -33,39 + 7557: -32,40 + 7558: -38,42 + 7559: -39,43 + 7560: -39,44 + 7561: -36,43 + 7562: -36,46 + 7563: -37,46 + 7564: -34,46 + 7565: -32,46 + 7566: -32,45 + 7567: -33,49 + 7568: -31,50 + 7569: -29,50 + 7570: -26,45 + 7571: -26,44 + 7572: -25,45 + 7573: -26,41 + 7574: -25,40 + 7575: -25,39 + 7576: -26,40 + 7577: -28,44 + 7578: -28,45 + 7579: -29,45 + 7580: -30,45 + 7581: -29,46 + 7582: -30,47 + 7583: -30,44 + 7584: -28,46 + 7585: -28,47 + 7586: -35,43 + 7587: -36,43 + 7588: -37,43 + 7589: -36,42 + 7590: -39,44 + 7591: -39,43 + 7592: -38,44 + 7593: -38,45 + 7594: -37,46 + 7595: -35,46 + 7596: -35,47 + 7597: -34,47 + 7598: -42,42 + 7599: -43,42 + 7600: -44,42 + 7601: -45,42 + 7602: -45,43 + 7603: -45,44 + 7604: -44,44 + 7605: -43,44 + 7606: -42,44 + 7607: -42,45 + 7608: -43,45 + 7609: -43,46 + 7610: -42,46 + 7611: -41,45 + 7612: -48,41 + 7613: -48,42 + 7614: -47,42 + 7615: -48,43 + 7616: -49,43 + 7617: -50,43 + 7618: -49,44 + 7619: -50,45 + 7620: -53,43 + 7621: -53,43 + 7622: -54,43 + 7623: -56,42 + 7624: -55,41 + 7625: -55,42 + 7626: -55,40 + 7627: -55,39 + 7628: -52,41 + 7629: -52,40 + 7630: -51,40 + 7631: -51,41 + 7632: -52,31 + 7633: -52,32 + 7634: -53,31 + 7635: -54,33 + 7636: -54,32 + 7637: -53,33 + 7638: -49,29 + 7639: -50,28 + 7640: -51,27 + 7641: -52,28 + 7642: -51,28 + 7643: -53,28 + 7644: -44,31 + 7645: -44,32 + 7646: -41,25 + 7647: -42,25 + 7648: -43,25 + 7649: -43,24 + 7650: -42,24 + 7651: -41,24 + 7652: -41,23 + 7653: -42,23 + 7654: -43,23 + 7655: -41,26 + 7656: -42,26 + 7657: -43,26 + 7658: -43,27 + 7659: -42,27 + 7660: -41,27 + 7661: -41,28 + 7662: -42,28 + 7663: -43,28 + 7664: -36,24 + 7665: -36,25 + 7666: -36,26 + 7667: -37,24 + 7668: -38,24 + 7669: -38,25 + 7670: -37,23 + 7671: -36,23 + 7672: -36,17 + 7673: -37,11 + 7674: -37,12 + 7675: -38,12 + 7676: -39,13 + 7677: -39,12 + 7678: -39,8 + 7679: -37,8 + 7680: -39,7 + 7681: -39,5 + 7682: -41,6 + 7683: -41,2 + 7684: -42,0 + 7685: -42,1 + 7686: -39,-4 + 7687: -39,-11 + 7688: -40,-12 + 7689: -41,-11 + 7690: -41,-11 + 7691: -41,-13 + 7692: -36,-7 + 7693: -36,-6 + 7694: -37,-6 + 7695: -34,-8 + 7696: -40,-6 + 7697: -39,-3 + 7698: -38,-4 + 7699: -43,-5 + 7700: -42,-5 + 7701: -42,-13 + 7702: -43,-13 + 7703: -45,-13 + 7704: -46,-11 + 7705: -45,-10 + 7706: 1,0 + 7707: 1,1 + 7708: 1,2 + 7709: 1,2 + 7710: 1,1 + 7711: 1,3 + 7712: 0,3 + 7713: 1,3 + 7714: 2,3 + 7715: 1,4 + 7716: 0,4 + 7717: 1,4 + 7718: 2,4 + 7719: 1,5 + 7720: 0,5 + 7721: -1,4 + 7722: -1,5 + 7723: 0,6 + 7724: -3,6 + 7725: -4,5 + 7726: -5,5 + 7727: 24,11 + 7728: 24,12 + 7729: 24,12 + 7730: 23,12 + 7731: 23,13 + 7732: 23,13 + 7733: 24,14 + 7734: 23,16 + 7735: 23,17 + 7736: 24,18 + 7737: 24,15 + 7738: 23,14 + 7739: 22,16 + 7740: 22,18 + 7741: 23,19 + 7742: 23,13 + 7782: 11,3 + 7783: 10,3 + 7784: 11,2 + 7785: 10,2 + 7786: 11,4 + 7787: 9,4 + 7788: 8,5 + 7789: 8,6 + 7790: 7,6 + 7791: 5,6 + 7792: 3,6 + 7793: 1,6 + 7794: -1,5 + 7795: -4,5 + 7796: -7,6 + 7797: -9,5 + 7798: -12,5 + 7799: -12,4 + 7800: -17,5 + 7801: -19,4 + 7802: -21,4 + 7803: -24,6 + 7804: -26,5 + 7805: -28,6 + 7806: -28,4 + 7807: -27,4 + 7808: -28,5 + 7809: -28,6 + 7810: -32,5 + 7811: -35,6 + 7812: -33,5 + 7813: -33,6 + 7814: -36,4 + 7815: -41,6 + 7816: -41,6 + 7817: -45,5 + 7818: -49,6 + 7819: -50,5 + 7820: -50,4 + 7821: -51,4 + 7822: -54,4 + 7823: -57,4 + 7824: -59,6 + 7825: -58,8 + 7826: -58,9 + 7827: -59,13 + 7828: -59,16 + 7829: -59,18 + 7830: -58,20 + 7831: -58,22 + 7832: -58,24 + 7833: -59,24 + 7834: -60,22 + 7835: -60,23 + 7836: -61,23 + 7837: -61,22 + 7838: -62,20 + 7839: -63,21 + 7840: -62,22 + 7841: -62,22 + 7842: -61,23 + 7843: -61,24 + 7844: -61,24 + 7845: -66,20 + 7846: -66,21 + 7847: -69,21 + 7848: -71,22 + 7849: -70,22 + 7850: -58,36 + 7851: -59,36 + 7852: -59,38 + 7853: -59,39 + 7854: -59,39 + 7855: -59,40 + 7856: -57,38 + 7857: -57,38 + 7858: -58,38 + 7859: -57,39 + 7860: -57,40 + 7861: -57,41 + 7862: -57,42 + 7863: -57,42 + 7864: -57,42 + 7865: -57,43 + 7866: -57,43 + 7867: -57,44 + 7868: -57,44 + 7869: -58,45 + 7870: -59,45 + 7871: -58,44 + 7872: -59,42 + 7873: -58,39 + 7874: -58,34 + 7875: -57,34 + 7876: -56,33 + 7877: -56,32 + 7878: -53,32 + 7879: -51,32 + 7880: -49,32 + 7881: -47,33 + 7882: -46,33 + 7883: -45,33 + 7884: -43,33 + 7885: -42,33 + 7886: -40,33 + 7887: -39,33 + 7888: -58,12 + 7889: -58,12 + 7890: -59,12 + 7891: -59,12 + 7892: -59,11 + 7893: -59,11 + 7894: -59,10 + 7895: -59,10 + 7896: -59,10 + 7897: -59,10 + 7898: -59,8 + 7899: -59,5 + 7900: -59,5 + 7901: -58,3 + 7902: -58,0 + 7903: -58,-2 + 7904: -58,-5 + 7905: -58,-7 + 7906: -65,31 + 7907: -65,31 + 7908: -65,32 + 7909: -67,33 + 7910: -66,33 + 7911: -66,33 + 7912: -66,34 + 7913: -70,34 + 7914: -72,34 + 7915: -75,33 + 7916: -75,32 + 7917: -75,28 + 7918: -75,29 + 7919: -74,32 + 7920: -74,31 + 7921: -74,33 + 7922: -64,20 + 7923: -64,19 + 7924: -65,19 + 7925: -64,21 + 7926: -64,22 + 7927: -64,23 + 7928: -65,23 + 7929: -67,23 + 7930: -70,23 + 7931: -72,23 + 7932: -71,21 + 7933: -70,19 + 7934: -69,19 + 7935: -68,19 + 7936: -68,21 + 7937: -69,22 + 7938: -69,17 + 7939: -75,17 + 7940: -75,17 + 7941: -75,17 + 7942: -74,17 + 7943: -74,17 + 7944: -74,18 + 7945: -75,18 + 7946: -79,19 + 7947: -81,20 + 7948: -82,20 + 7949: -82,24 + 7950: -83,24 + 7951: -84,24 + 7952: -82,26 + 7953: -82,25 + 7954: -80,25 + 7955: -79,25 + 7956: -79,24 + 7957: -77,26 + 7958: -77,24 + 7959: -74,25 + 7960: -75,21 + 7961: -74,21 + 7962: -81,33 + 7963: -82,32 + 7964: -83,32 + 7965: -81,32 + 7966: -80,31 + 7967: -80,30 + 7968: -3,31 + 7969: -3,32 + 7970: -2,31 + 7975: 0,29 + 7976: 0,30 + 7977: -2,29 + 7978: -5,30 + 7979: 8,30 + 7980: -34,-3 + 7981: -35,-3 + 7982: -35,-3 + 7983: -34,-4 + 7984: -33,-4 + 7985: -33,-4 + 7986: -32,-3 + 7987: -32,-2 + 7988: -34,-2 + 7989: -35,-2 + 7990: -46,61 + 7991: -46,62 + 7992: -47,62 + 7993: -44,62 + 7994: -43,62 + 7995: -43,63 + 7996: -44,63 + 8002: -63,60 + 8003: -64,59 + 8004: -64,60 + 8005: -64,57 + 8006: -66,57 + 8007: -68,54 + 8008: -68,53 + 8009: -70,53 + 8010: -71,53 + 8011: -73,52 + 8012: -72,54 + 8013: -73,55 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 1623: -30,52 + 1624: -29,53 + 1625: -28,54 + 1626: -26,54 + 1627: -26,55 + 1628: -26,55 + 1629: -26,53 + 1630: -40,45 + 1637: -35,35 + 1638: -37,37 + 1639: -36,34 + 1640: -35,38 + 1641: -37,39 + 1642: -40,38 + 1643: -41,36 + 1644: -38,39 + 1645: -42,38 + 1646: -44,37 + 1647: -41,37 + 1648: -43,39 + 1649: -44,38 + 1650: -44,36 + 1651: -39,36 + 1652: -37,39 + 1653: -37,38 + 1654: -36,36 + 1655: -36,40 + 1656: -38,40 + 1657: -41,37 + 1658: -43,36 + 1659: -41,35 + 1660: -39,36 + 1661: -45,39 + 1662: -45,39 + 1663: -41,37 + 1664: -39,36 + 1665: -37,38 + 1666: -39,39 + 1713: -28,40 + 1714: -29,41 + 1715: -29,42 + 1716: -27,42 + 1717: -29,42 + 1718: -29,41 + 1719: -28,40 + 1720: -28,40 + 1721: -29,42 + 1722: -29,42 + 1723: -29,42 + 1724: -30,25 + 1725: -29,23 + 1726: -29,25 + 1727: -30,27 + 1728: -31,28 + 1729: -31,24 + 1730: -30,24 + 1731: -29,27 + 1732: -30,29 + 1733: -31,27 + 1734: -31,24 + 1735: -29,27 + 1736: -30,28 + 1737: -28,12 + 1738: -29,11 + 1739: -29,9 + 1740: -27,8 + 1741: -25,12 + 1742: -27,12 + 1743: -27,10 + 1744: -25,10 + 1745: -24,12 + 1746: -24,11 + 1747: -24,9 + 1748: -26,8 + 1749: -28,12 + 1750: -26,12 + 1751: -28,11 + 1752: -28,9 + 1753: -26,8 + 1754: -24,12 + 1755: -26,13 + 1756: -28,11 + 1757: -27,9 + 1758: -24,9 + 1759: -28,12 + 1760: -29,10 + 1761: -25,10 + 1762: -24,16 + 1763: -26,18 + 1764: -29,17 + 1765: -28,16 + 1766: -25,17 + 1767: -27,17 + 1768: -26,16 + 1769: -23,15 + 1770: -25,17 + 1771: -30,17 + 1772: -28,16 + 1773: -27,18 + 1774: -29,17 + 1775: -27,15 + 1776: -23,15 + 1777: -24,17 + 1778: -28,18 + 1779: -29,16 + 1780: -26,16 + 1781: -30,25 + 1782: -30,24 + 1783: -31,25 + 1784: -30,28 + 1785: -31,27 + 1786: -17,-3 + 1787: -17,-3 + 1788: -18,-5 + 1789: -17,-5 + 1790: -17,-3 + 1791: -18,-4 + 1792: -18,-5 + 1793: -16,-5 + 1794: -17,-2 + 1795: -19,-3 + 1796: -19,-5 + 1797: -17,-5 + 1798: -17,-2 + 1799: -19,-3 + 1800: -19,-9 + 1801: -18,-9 + 1802: -16,-8 + 1803: -16,-8 + 1804: -16,-9 + 1805: -18,-8 + 1806: -29,-9 + 1807: -30,-8 + 1808: -27,-6 + 1809: -28,-5 + 1810: -30,-8 + 1811: -28,-9 + 1812: -29,-6 + 1813: -29,-4 + 1814: -30,-5 + 1815: -29,-7 + 1816: -25,-9 + 1817: -25,-9 + 1818: -22,-9 + 1819: -22,-8 + 1820: -22,-8 + 1821: -21,-6 + 1822: -22,-2 + 1823: -21,0 + 1824: -19,1 + 1825: -17,1 + 1826: -30,2 + 1827: -30,1 + 1828: -29,0 + 1829: -29,-2 + 1830: -26,-2 + 1831: -27,-1 + 1832: -26,-2 + 1833: -26,1 + 1834: -27,1 + 1835: -27,2 + 1836: -26,0 + 1837: -27,1 + 1838: -27,2 + 1839: -27,0 + 1840: -27,-1 + 1841: -26,-2 + 1842: -24,-2 + 1843: -24,-2 + 1844: -24,1 + 1845: -24,2 + 1846: -26,1 + 1847: -27,1 + 1848: -26,-1 + 1849: -28,-2 + 1850: -33,-2 + 1851: -34,-2 + 1852: -36,-4 + 1853: -33,-2 + 1854: -33,-3 + 1855: -34,-4 + 1856: -33,-3 + 1857: -33,-3 + 1858: -33,-3 + 1859: -45,-3 + 1860: -45,-2 + 1861: -46,-3 + 1862: -47,-4 + 1863: -45,-5 + 1864: -44,-4 + 1865: -44,-2 + 1866: -45,-2 + 1867: -46,-3 + 1868: -46,-4 + 1869: -47,-4 + 1870: -45,-3 + 1871: -44,1 + 1872: -46,1 + 1873: -46,1 + 1874: -44,1 + 1875: -45,2 + 1876: -46,2 + 1877: -46,0 + 1878: -44,0 + 1879: -46,1 + 1880: -46,2 + 1881: -47,1 + 1882: -47,1 + 1883: -44,1 + 1884: -45,2 + 1885: -46,1 + 1886: -45,1 + 1887: -45,0 + 1888: -46,0 + 1889: -47,1 + 1890: -52,-2 + 1891: -51,-1 + 1892: -53,-1 + 1893: -52,-3 + 1894: -51,-2 + 1895: -52,-1 + 1896: -55,-1 + 1897: -55,-2 + 1898: -53,-2 + 1899: -54,-2 + 1900: -55,-3 + 1901: -52,-1 + 1902: -53,-1 + 1903: -52,-3 + 1904: -51,-3 + 1905: -52,-7 + 1906: -52,-6 + 1907: -54,-6 + 1908: -52,-8 + 1909: -51,-5 + 1910: -53,-5 + 1911: -54,-7 + 1912: -55,-8 + 1913: -53,-8 + 1914: -51,-7 + 1915: -53,-5 + 1916: -55,-6 + 1917: -53,-7 + 1918: -53,-5 + 1919: -53,-4 + 1920: -53,46 + 1921: -53,46 + 1922: -59,36 + 1923: -59,33 + 1924: -59,32 + 2364: -36,-11 + 2619: 8,21 + 2620: 11,32 + 5513: -35,36 + 5514: -35,37 + 5515: -35,37 + 5516: -35,37 + 5517: -35,36 + 5518: -35,36 + 5519: -35,35 + 5520: -35,35 + 5521: -35,36 + 5522: -35,36 + 6886: -1,43 + 6887: -1,42 + 6888: 0,42 + 6889: 0,43 + 6890: 0,43 + 6891: 1,42 + 6892: 1,42 + 6893: 2,43 + 6894: 2,44 + 6895: 3,44 + 6896: 4,44 + 6897: 4,43 + 6898: 4,42 + 6899: 4,43 + 6900: 3,43 + 6901: 3,42 + 6902: 2,42 + 6903: 2,43 + 6904: 0,43 + 6905: 0,43 + 6921: 18,45 + 6922: 18,46 + 6924: 10,52 + 6925: 11,52 + 6926: 11,52 + 6927: 11,51 + 6928: 10,52 + 6929: 17,46 + 6930: 17,46 + 6931: 17,46 + 6956: 25,26 + 6957: 25,25 + 6958: 26,25 + 6959: 26,26 + 6960: 27,26 + 6961: 28,25 + 6962: 28,25 + 6963: 28,26 + 6964: 27,27 + 6965: 26,27 + 6966: 25,27 + 6967: 26,27 + 6968: 28,27 + 6969: 28,28 + 6970: 26,28 + 6971: 25,28 + 6972: 26,28 + 6973: 27,28 + 6974: 27,28 + 7005: -60,-10 + 7006: -60,-11 + 7007: -59,-12 + 7008: -59,-12 + 7009: -58,-12 + 7010: -59,-12 + 7011: -61,-12 + 7012: -61,-10 + 7013: -62,-10 + 7014: -63,-11 + 7015: -61,-12 + 7016: -61,-11 + 7017: -62,-11 + 7018: -63,-11 + 7019: -62,-12 + 7020: -63,-10 + 7021: -64,-10 + 7022: -64,-11 + 7023: -64,-12 + 7024: -64,-12 + 7025: -65,-11 + 7026: -66,-11 + 7027: -65,-11 + 7028: -66,-11 + 7029: -67,-11 + 7030: -67,-11 + 7031: -66,-12 + 7032: -65,-12 + 7033: -66,-10 + 7034: -68,-10 + 7035: -69,-11 + 7036: -69,-12 + 7037: -68,-11 + 7038: -67,-10 + 7039: -66,-10 + 7040: -65,-10 + 7041: -67,-11 + 7042: -67,-12 + 7043: -68,-11 + 7044: -69,-10 + 7045: -70,-11 + 7046: -70,-12 + 7047: -71,-12 + 7048: -71,-11 + 7049: -71,-10 + 7050: -72,-10 + 7051: -73,-11 + 7052: -73,-12 + 7053: -72,-12 + 7054: -72,-11 + 7055: -75,-10 + 7056: -76,-10 + 7057: -75,-11 + 7058: -74,-12 + 7059: -73,-11 + 7060: -73,-10 + 7061: -74,-11 + 7062: -75,-12 + 7063: -76,-11 + 7064: -75,-11 + 7065: -74,-11 + 7066: -72,-11 + 7067: -71,-10 + 7068: -68,-11 + 7069: -67,-12 + 7070: -67,-12 + 7071: -68,-12 + 7072: -76,-12 + 7073: -62,-12 + 7074: -62,-12 + 7075: -63,-12 + 7076: -67,-10 + 7077: -68,-10 + 7078: -69,-10 + 7079: -70,-10 + 7080: -73,-10 + 7081: -74,-10 + 7113: -67,-14 + 7114: -67,-14 + 7115: -65,-14 + 7116: -65,-15 + 7117: -65,-15 + 7118: -73,-14 + 7119: -73,-15 + 7120: -75,-14 + 7121: -75,-14 + 7122: -75,-15 + 7123: -78,-11 + 7124: -78,-11 + 7125: -77,-11 + 7126: -79,-11 + 7127: -75,-13 + 7128: -73,-13 + 7129: -67,-13 + 7130: -67,-13 + 7131: -64,-13 + 7132: -65,-13 + 7133: -75,-13 + 7134: -75,-16 + 7135: -73,-16 + 7136: -67,-16 + 7137: -73,-16 + 7138: -65,-16 + 7139: -74,-9 + 7140: -74,-9 + 7141: -74,-8 + 7142: -74,-9 + 7143: -67,-9 + 7144: -67,-8 + 7145: -67,-9 + 7146: -74,3 + 7147: -74,3 + 7148: -74,2 + 7149: -67,3 + 7150: -67,3 + 7151: -67,2 + 7152: -67,2 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 160: 27,23 + 161: 26,24 + 162: 27,24 + 163: 25,24 + 164: 27,21 + 165: 26,20 + 166: 26,18 + 167: 27,17 + 168: 28,17 + 169: 27,18 + 170: 25,18 + 171: 25,17 + 172: 26,16 + 173: 27,16 + 174: 27,17 + 175: 26,17 + 176: 27,16 + 177: 27,15 + 178: 27,14 + 179: 27,13 + 180: 26,12 + 181: 26,12 + 182: 25,11 + 183: 27,11 + 184: 27,10 + 185: 28,9 + 186: 27,8 + 187: 26,8 + 188: 25,8 + 189: 26,7 + 190: 27,5 + 191: 28,6 + 192: 27,6 + 193: 26,6 + 194: 23,6 + 195: 21,5 + 196: 21,4 + 197: 22,4 + 198: 21,5 + 199: 19,5 + 200: 17,6 + 201: 16,5 + 202: 16,5 + 203: 16,6 + 204: 14,6 + 205: 12,6 + 206: 11,5 + 207: 12,5 + 208: 12,6 + 209: 9,6 + 210: 9,4 + 211: 10,4 + 212: 10,3 + 213: 11,2 + 214: 9,4 + 215: 8,5 + 216: 6,5 + 217: 6,6 + 218: 5,5 + 219: 5,4 + 220: 5,6 + 221: 2,5 + 222: 1,5 + 223: 1,5 + 224: -1,5 + 225: -1,4 + 226: -1,6 + 227: -2,6 + 228: -4,5 + 229: -5,4 + 230: -7,5 + 231: -6,6 + 232: -5,7 + 233: -6,6 + 234: -6,5 + 235: -8,5 + 236: -9,6 + 237: -10,6 + 238: -11,5 + 239: -12,4 + 240: -14,5 + 241: -13,6 + 242: -13,6 + 243: -13,4 + 244: -12,2 + 245: -12,0 + 246: -12,0 + 247: -13,2 + 248: -13,2 + 249: -12,1 + 250: -13,0 + 251: -12,1 + 252: -9,-1 + 253: -7,-2 + 254: -7,-1 + 255: -8,0 + 256: -9,-1 + 257: -10,-2 + 296: -8,-13 + 297: -8,-12 + 298: -10,-12 + 299: -7,-14 + 300: -6,-13 + 301: -4,-12 + 302: -3,-12 + 303: -2,-10 + 304: 3,-10 + 305: 1,-11 + 306: 0,-9 + 392: 1,-2 + 393: 2,-1 + 394: 2,-2 + 395: 1,-2 + 396: 1,-1 + 397: 2,-1 + 399: -13,8 + 400: -12,8 + 401: -12,10 + 402: -13,10 + 403: -14,11 + 404: -16,8 + 405: -17,8 + 406: -17,10 + 407: -18,10 + 408: -18,9 + 455: -12,18 + 456: -13,19 + 457: -14,20 + 458: -13,22 + 459: -12,23 + 460: -12,24 + 461: -14,26 + 462: -13,27 + 463: -12,28 + 464: -13,28 + 465: -14,28 + 466: -13,26 + 467: -12,25 + 468: -13,29 + 469: -14,32 + 470: -12,28 + 471: -12,30 + 472: -13,32 + 473: -15,32 + 474: -15,31 + 475: -13,30 + 476: -13,29 + 477: -12,32 + 478: -12,33 + 479: -13,33 + 480: -10,31 + 481: -9,32 + 482: -9,32 + 483: -8,33 + 484: -8,32 + 485: -8,31 + 486: -9,32 + 487: -10,32 + 488: -10,32 + 500: 0,29 + 501: -1,30 + 502: -3,30 + 503: -4,31 + 504: -4,32 + 505: -3,33 + 506: -4,32 + 507: -5,32 + 508: 0,33 + 509: -1,33 + 510: -1,34 + 511: -4,25 + 512: -4,26 + 513: -2,26 + 514: -1,26 + 515: -1,27 + 516: -4,27 + 517: -5,26 + 518: -4,24 + 519: -2,23 + 520: -3,22 + 521: -3,20 + 522: -4,19 + 523: -2,19 + 524: -2,20 + 537: -2,7 + 574: 13,-8 + 575: 13,-9 + 576: 14,-9 + 577: 15,-8 + 578: 15,-8 + 579: 14,-10 + 580: 15,-11 + 581: 13,-11 + 582: 13,-12 + 583: 14,-12 + 584: 19,-2 + 585: 20,-3 + 586: 20,-2 + 587: 21,-1 + 588: 20,-2 + 603: 19,1 + 604: 19,1 + 605: 20,1 + 606: 26,1 + 607: 26,2 + 608: 26,2 + 609: 25,2 + 610: 27,3 + 611: 28,3 + 612: 29,1 + 613: 27,1 + 614: 28,2 + 615: 29,3 + 616: 26,1 + 617: 25,2 + 618: 26,2 + 619: 27,3 + 620: 28,3 + 621: 29,3 + 622: 29,3 + 623: 11,-2 + 624: -3,-5 + 625: -5,-5 + 626: -5,-6 + 627: -6,-6 + 628: -7,-5 + 629: -6,-4 + 630: -10,-5 + 631: -9,-5 + 632: -9,-4 + 633: -9,-5 + 634: -13,-8 + 635: -12,-8 + 636: -13,-9 + 637: -14,-9 + 638: -14,-9 + 639: -13,-8 + 640: -12,-9 + 641: -14,-13 + 642: -15,-13 + 643: -16,-15 + 644: -16,-15 + 645: -16,-15 + 646: -16,-14 + 647: -9,30 + 648: -7,28 + 649: -8,27 + 650: -10,27 + 651: -10,27 + 652: -17,29 + 653: -16,29 + 654: -16,28 + 655: -16,27 + 656: -17,27 + 657: -18,29 + 658: -18,29 + 751: -45,-7 + 752: -46,-7 + 753: -45,-8 + 754: -44,-8 + 840: -39,1 + 841: -38,0 + 842: -37,1 + 843: -38,4 + 844: -37,6 + 845: -34,6 + 846: -37,7 + 847: -40,6 + 848: -41,5 + 849: -40,4 + 850: -37,4 + 851: -34,3 + 852: -32,1 + 853: -34,1 + 854: -35,1 + 855: -35,1 + 856: -33,0 + 857: -32,0 + 987: -37,9 + 988: -38,9 + 989: -38,9 + 990: -39,11 + 991: -39,12 + 992: -39,14 + 993: -38,15 + 994: -37,16 + 995: -38,17 + 996: -38,19 + 997: -39,19 + 998: -38,20 + 999: -38,21 + 1000: -39,18 + 1001: -39,17 + 1002: -37,21 + 1003: -37,23 + 1004: -39,24 + 1005: -39,23 + 1006: -37,22 + 1007: -37,26 + 1008: -38,27 + 1009: -39,25 + 1010: -38,25 + 1011: -38,29 + 1012: -39,29 + 1013: -38,27 + 1014: -38,27 + 1015: -37,27 + 1016: -37,27 + 1017: -34,25 + 1018: -32,26 + 1019: -33,28 + 1020: -35,28 + 1021: -35,25 + 1022: -33,25 + 1023: -32,27 + 1024: -34,28 + 1025: -35,28 + 1026: -33,26 + 1027: -34,25 + 1028: -35,28 + 1029: -27,28 + 1030: -26,28 + 1031: -25,28 + 1032: -26,27 + 1033: -24,28 + 1034: -23,28 + 1035: -26,28 + 1036: -24,26 + 1037: -23,26 + 1038: -24,27 + 1039: -26,28 + 1040: -24,27 + 1041: -18,33 + 1042: -17,31 + 1043: -15,32 + 1044: -16,33 + 1045: -20,32 + 1046: -19,32 + 1047: -19,32 + 1048: -21,33 + 1049: -22,32 + 1050: -21,32 + 1051: -23,33 + 1052: -27,33 + 1053: -28,33 + 1054: -29,32 + 1055: -27,32 + 1056: -29,33 + 1057: -31,32 + 1058: -29,31 + 1059: -30,32 + 1060: -32,32 + 1061: -32,31 + 1062: -32,32 + 1063: -34,32 + 1064: -35,31 + 1065: -38,32 + 1066: -38,33 + 1067: -40,32 + 1068: -39,31 + 1069: -40,32 + 1070: -43,32 + 1071: -42,31 + 1072: -42,30 + 1073: -43,32 + 1074: -45,32 + 1075: -42,31 + 1076: -42,32 + 1077: -45,31 + 1078: -46,30 + 1079: -44,30 + 1080: -45,32 + 1081: -47,33 + 1082: -48,33 + 1083: -50,32 + 1084: -49,31 + 1085: -48,32 + 1086: -50,33 + 1087: -51,32 + 1088: -50,31 + 1089: -51,32 + 1090: -53,33 + 1091: -52,33 + 1092: -53,32 + 1093: -54,31 + 1094: -56,33 + 1095: -56,32 + 1096: -53,32 + 1097: -52,31 + 1098: -54,31 + 1099: -57,33 + 1100: -58,32 + 1101: -57,33 + 1102: -59,32 + 1103: -58,30 + 1104: -57,29 + 1105: -57,29 + 1106: -58,29 + 1107: -59,27 + 1108: -58,25 + 1109: -57,26 + 1110: -57,28 + 1111: -58,27 + 1112: -58,23 + 1113: -58,20 + 1114: -57,20 + 1115: -57,22 + 1116: -57,23 + 1117: -59,21 + 1118: -58,20 + 1119: -57,20 + 1120: -57,21 + 1121: -58,20 + 1122: -59,18 + 1123: -58,17 + 1124: -58,16 + 1125: -57,17 + 1126: -57,19 + 1127: -58,18 + 1128: -59,16 + 1129: -58,14 + 1130: -58,14 + 1131: -54,19 + 1132: -54,20 + 1133: -55,19 + 1134: -54,18 + 1135: -53,19 + 1136: -54,20 + 1137: -59,14 + 1138: -58,13 + 1139: -57,12 + 1140: -58,11 + 1141: -58,13 + 1142: -58,11 + 1143: -59,10 + 1144: -58,12 + 1145: -58,11 + 1146: -57,8 + 1147: -58,7 + 1148: -58,7 + 1149: -57,9 + 1150: -58,9 + 1151: -58,5 + 1152: -58,4 + 1153: -58,4 + 1154: -57,5 + 1155: -59,6 + 1156: -58,3 + 1157: -57,1 + 1158: -58,-1 + 1159: -57,-2 + 1160: -58,1 + 1161: -58,2 + 1162: -59,0 + 1163: -58,-1 + 1164: -58,-3 + 1165: -58,-4 + 1166: -57,-4 + 1167: -59,-4 + 1168: -58,-4 + 1169: -57,-2 + 1170: -59,-3 + 1171: -58,-5 + 1172: -58,-7 + 1173: -57,-6 + 1174: -58,-5 + 1175: -59,-7 + 1176: -59,-8 + 1177: -57,-9 + 1178: -57,-9 + 1179: -58,-10 + 1180: -59,-10 + 1181: -75,5 + 1182: -75,5 + 1183: -73,5 + 1184: -72,5 + 1185: -70,6 + 1186: -71,5 + 1187: -75,5 + 1188: -73,5 + 1189: -73,6 + 1190: -75,6 + 1191: -74,4 + 1192: -70,4 + 1193: -68,5 + 1194: -67,5 + 1195: -75,5 + 1196: -74,4 + 1197: -71,5 + 1198: -66,6 + 1199: -64,6 + 1200: -66,5 + 1201: -62,4 + 1202: -61,5 + 1203: -64,5 + 1204: -66,5 + 1205: -62,5 + 1206: -68,4 + 1207: -67,6 + 1208: -54,5 + 1209: -56,6 + 1210: -53,6 + 1211: -51,6 + 1212: -50,5 + 1213: -49,4 + 1214: -46,5 + 1215: -44,5 + 1216: -45,6 + 1217: -49,6 + 1218: -47,5 + 1219: -44,4 + 1220: -45,5 + 1221: -46,5 + 1222: -55,28 + 1223: -54,27 + 1224: -51,28 + 1225: -49,28 + 1226: -51,29 + 1227: -53,28 + 1228: -52,27 + 1229: -49,27 + 1230: -50,29 + 1231: -52,29 + 1232: -54,28 + 1233: -54,28 + 1234: -50,27 + 1235: -49,27 + 1236: -50,29 + 1442: -42,10 + 1443: -43,10 + 1444: -42,9 + 1445: -41,8 + 1446: -41,11 + 1447: -43,11 + 1932: -59,31 + 1933: -22,35 + 1934: -20,35 + 1935: -19,35 + 1936: -19,35 + 1937: -22,35 + 1938: -23,35 + 1939: -20,35 + 1940: -16,36 + 1941: -16,37 + 1942: -17,37 + 1943: -18,35 + 1944: -16,36 + 1945: -17,38 + 1946: -18,38 + 1947: -18,36 + 1948: -16,37 + 1949: -17,40 + 1950: -18,39 + 1951: -17,38 + 1952: -17,42 + 1953: -18,41 + 1954: -17,39 + 1955: -16,42 + 1956: -17,43 + 1957: -17,41 + 1958: -16,44 + 1959: -17,45 + 1960: -18,43 + 1961: -16,45 + 1962: -17,47 + 1963: -17,45 + 1964: -16,48 + 1965: -18,49 + 1966: -17,47 + 1967: -16,49 + 1968: -18,49 + 1969: -18,47 + 1970: -16,50 + 1971: -18,49 + 1972: -16,50 + 1973: -17,50 + 1974: -17,46 + 1975: -18,45 + 1976: -17,45 + 1977: -18,47 + 1978: -17,45 + 1979: -15,47 + 1980: -16,47 + 1981: -16,45 + 1982: -14,48 + 1983: -14,48 + 1984: -13,47 + 1985: -12,48 + 1986: -13,47 + 1987: -11,48 + 1988: -13,48 + 1989: -12,46 + 1990: -11,47 + 1991: -12,48 + 1992: -13,49 + 1993: -13,47 + 1994: -12,47 + 1995: -12,47 + 2093: -22,40 + 2094: -21,41 + 2095: -22,42 + 2096: -23,42 + 2097: -23,40 + 2098: -21,39 + 2099: -20,38 + 2100: -21,38 + 2101: -22,40 + 2102: -23,39 + 2103: -23,39 + 2104: -22,41 + 2105: -23,41 + 2106: -22,40 + 2107: -22,38 + 2108: -23,38 + 2109: -23,37 + 2110: -22,37 + 2111: -21,39 + 2112: -22,39 + 2113: -21,37 + 2114: -20,39 + 2115: -21,41 + 2116: -23,42 + 2117: -22,39 + 2118: -21,39 + 2119: -21,42 + 2120: -20,42 + 2121: -22,42 + 2122: -21,41 + 2123: -20,44 + 2124: -20,45 + 2125: -21,46 + 2126: -20,48 + 2127: -22,48 + 2128: -22,46 + 2129: -20,45 + 2130: -22,44 + 2131: -22,48 + 2132: -22,48 + 2133: -23,45 + 2134: -22,44 + 2135: -21,44 + 2136: -20,46 + 2137: -21,48 + 2138: -23,48 + 2139: -23,46 + 2140: -21,44 + 2141: -21,44 + 2142: -22,45 + 2143: -20,47 + 2144: -22,48 + 2145: -22,46 + 2146: -22,44 + 2147: -20,44 + 2148: -21,48 + 2149: -22,48 + 2150: -23,47 + 2151: -22,44 + 2195: -17,53 + 2196: -18,53 + 2197: -19,53 + 2198: -19,56 + 2199: -19,57 + 2200: -19,57 + 2201: -15,57 + 2202: -15,55 + 2203: -15,54 + 2204: -16,53 + 2205: -18,53 + 2206: -12,55 + 2207: -13,54 + 2208: -12,53 + 2209: -11,53 + 2210: -10,55 + 2211: -12,56 + 2212: -12,54 + 2213: -11,54 + 2214: -9,54 + 2215: -7,54 + 2216: -9,53 + 2217: -10,53 + 2218: -10,56 + 2219: -12,55 + 2220: -11,54 + 2221: -8,54 + 2222: -12,57 + 2223: -13,57 + 2224: -11,56 + 2225: -11,57 + 2226: -12,57 + 2227: -6,59 + 2228: -6,58 + 2229: -6,60 + 2230: -6,60 + 2231: -12,59 + 2232: -13,59 + 2233: -13,60 + 2234: -13,62 + 2235: -14,60 + 2236: -13,60 + 2237: -13,62 + 2238: -14,63 + 2239: -15,63 + 2240: -14,63 + 2241: -15,63 + 2242: -16,62 + 2243: -15,62 + 2244: -15,64 + 2245: -17,64 + 2246: -17,63 + 2247: -16,63 + 2248: -17,65 + 2249: -19,64 + 2250: -20,63 + 2251: -17,64 + 2252: -17,66 + 2253: -19,65 + 2254: -20,63 + 2255: -21,62 + 2256: -20,63 + 2257: -21,61 + 2258: -20,60 + 2259: -22,60 + 2260: -20,62 + 2261: -19,63 + 2262: -18,64 + 2263: -19,65 + 2264: -19,65 + 2265: -17,66 + 2266: -15,65 + 2267: -14,64 + 2268: -14,64 + 2269: -19,64 + 2270: -22,63 + 2271: -22,62 + 2272: -22,60 + 2273: -22,59 + 2274: -20,59 + 2275: -19,63 + 2276: -17,64 + 2277: -15,62 + 2278: -19,60 + 2279: -19,59 + 2280: -18,61 + 2281: -15,59 + 2362: -36,-9 + 2423: -41,-8 + 2424: -41,-8 + 2425: -42,-7 + 2426: -41,-5 + 2427: -41,-4 + 2428: -40,-3 + 2429: -38,-5 + 2430: -38,-7 + 2431: -40,-7 + 2432: -41,-4 + 2433: -38,-3 + 2434: -38,-2 + 2435: -41,-3 + 2436: -40,-5 + 2437: -38,-7 + 2438: -37,-7 + 2439: -38,-4 + 2440: -38,-4 + 2441: -39,-5 + 2442: -35,-8 + 2443: -33,-7 + 2444: -33,-6 + 2445: -35,-7 + 2446: -34,-9 + 2447: -33,-8 + 2448: -34,-7 + 2449: -33,-10 + 2450: -33,-9 + 2451: -37,-7 + 2452: -38,-7 + 2453: -35,-7 + 2454: -37,-7 + 2455: -38,-8 + 2456: -40,-7 + 2457: -41,-5 + 2458: -41,-4 + 2459: -41,-5 + 2460: -41,-7 + 2461: -40,-7 + 2462: -39,-4 + 2463: -41,-7 + 2464: -42,-7 + 2465: -42,-8 + 2466: -42,-6 + 2467: -42,-3 + 2468: -42,-2 + 2469: -40,-2 + 2470: -38,-2 + 2471: -37,-2 + 2472: -37,-3 + 2473: -37,-5 + 2474: -34,-6 + 2475: -32,-7 + 2476: -32,-8 + 2477: -33,-11 + 2478: -32,-11 + 2479: -33,-11 + 2480: -35,-11 + 2481: -35,-10 + 2482: -35,-9 + 2483: -36,-10 + 2484: -36,-11 + 2485: -37,-8 + 2486: -37,-8 + 2487: -38,-8 + 2488: -40,-8 + 2803: 6,12 + 2804: 6,11 + 2805: 7,11 + 2806: 7,12 + 2807: 6,13 + 2808: 7,14 + 2809: 9,15 + 2810: 10,15 + 2811: 8,15 + 2812: 7,14 + 2813: 9,14 + 2814: 10,15 + 2815: 9,17 + 2816: 7,15 + 2817: 6,14 + 2818: 9,14 + 2819: 11,16 + 2820: 10,19 + 2821: 10,20 + 2822: 9,19 + 2823: 10,18 + 2824: 11,18 + 2825: 10,20 + 2826: 10,17 + 2827: 8,15 + 2828: 7,15 + 2829: 7,13 + 2830: 8,12 + 2831: 9,11 + 2832: 9,11 + 2833: 10,12 + 2834: 11,11 + 2835: 11,11 + 2836: 11,13 + 2837: 10,13 + 2838: 3,17 + 2839: 1,16 + 2840: -1,15 + 2841: -1,14 + 2842: 2,15 + 2843: 2,17 + 2844: -1,16 + 2845: 0,14 + 2846: 3,14 + 2847: 1,16 + 2848: -1,16 + 2849: -1,15 + 2850: 3,16 + 2851: 3,17 + 2852: 4,15 + 2853: 3,14 + 2854: 1,14 + 2855: -1,15 + 2856: -2,14 + 2857: -2,17 + 2858: -2,17 + 2859: 1,17 + 2860: 2,20 + 2861: 1,19 + 2862: 2,19 + 2863: 4,20 + 2864: 2,21 + 2865: 1,19 + 2866: 3,20 + 2867: 3,22 + 2868: 2,21 + 2869: 2,21 + 2870: 2,23 + 2871: 2,26 + 2872: 2,28 + 2873: 2,31 + 2874: 2,34 + 2875: 4,34 + 2876: 4,33 + 2877: 4,33 + 2878: 4,31 + 2879: 4,29 + 2880: 4,27 + 2881: 4,25 + 2882: 4,23 + 2883: 4,21 + 2884: 4,19 + 2885: 3,19 + 2886: 3,20 + 2887: 3,21 + 2888: 3,23 + 2889: 3,25 + 2890: 3,28 + 2891: 3,30 + 2892: 3,32 + 2893: 3,33 + 2894: 3,33 + 2895: 2,34 + 2896: 2,33 + 2897: 7,29 + 2898: 7,28 + 2899: 9,28 + 2900: 11,28 + 2901: 12,29 + 2902: 10,30 + 2903: 8,30 + 2904: 9,28 + 2905: 12,30 + 2906: 11,31 + 2907: 8,31 + 2908: 9,29 + 2909: 11,29 + 2910: 10,30 + 2911: 8,25 + 2912: 7,26 + 2913: 7,24 + 2914: 7,23 + 2915: 6,22 + 2916: 7,25 + 2917: 9,25 + 2918: 9,23 + 2919: 8,22 + 2920: 10,24 + 2921: 8,25 + 2922: 7,24 + 2923: 7,23 + 2924: 6,25 + 2925: 8,36 + 2926: 8,37 + 2927: 6,36 + 2928: 7,35 + 2929: 8,34 + 2930: 10,34 + 2931: 8,35 + 2932: 6,34 + 2933: 8,33 + 2934: 11,34 + 2935: 11,36 + 2936: 10,37 + 2937: 12,35 + 2938: 11,33 + 2939: 11,35 + 2940: 9,37 + 2941: 9,35 + 2942: 11,34 + 2943: 11,37 + 2944: 9,36 + 2945: 7,36 + 2946: 7,37 + 2947: 6,35 + 2948: 7,34 + 2949: 8,33 + 2950: 9,33 + 2951: 6,33 + 2952: 12,34 + 2953: 12,37 + 2954: 11,34 + 2955: 4,40 + 2956: 2,42 + 2957: 0,41 + 2958: 1,40 + 2959: 0,40 + 2960: -1,39 + 2961: 0,37 + 2962: 4,40 + 2963: 0,38 + 2964: 0,38 + 2965: 2,36 + 2966: 4,36 + 2967: 2,38 + 2968: 0,37 + 2969: -1,37 + 2970: 1,38 + 2971: 4,39 + 2972: 2,40 + 2973: 0,39 + 2974: 2,37 + 2975: 3,40 + 2976: 2,39 + 2977: 3,36 + 2978: 2,36 + 2979: 2,39 + 2980: -1,39 + 2981: 1,37 + 3307: -2,8 + 3308: -2,8 + 3309: -2,9 + 3310: -1,10 + 3311: 1,9 + 3312: 0,8 + 3313: -1,8 + 3314: -1,9 + 3315: 1,10 + 3316: 1,9 + 3317: -2,9 + 3318: -3,9 + 3319: -3,10 + 3320: -3,10 + 3490: -60,50 + 3491: -60,51 + 3492: -61,53 + 3493: -63,54 + 3494: -64,55 + 3495: -65,54 + 3496: -65,52 + 3497: -63,51 + 3498: -61,51 + 3499: -63,50 + 3500: -65,53 + 3501: -62,53 + 3502: -62,53 + 3503: -64,52 + 3504: -60,54 + 3505: -59,55 + 3506: -62,54 + 3507: -61,54 + 3508: -58,53 + 3509: -57,53 + 3510: -54,54 + 3511: -51,54 + 3512: -52,55 + 3513: -54,56 + 3514: -55,56 + 3515: -55,54 + 3516: -53,54 + 3517: -52,56 + 3518: -54,57 + 3519: -56,57 + 3520: -57,56 + 3521: -57,55 + 3522: -56,54 + 3523: -58,55 + 3524: -58,58 + 3525: -55,57 + 3526: -53,57 + 3527: -52,57 + 3528: -51,56 + 3529: -52,55 + 3530: -54,55 + 3531: -55,57 + 3532: -54,58 + 3533: -52,57 + 3534: -49,58 + 3535: -48,58 + 3536: -47,59 + 3537: -48,61 + 3538: -49,61 + 3539: -48,58 + 3540: -47,60 + 3541: -47,62 + 3542: -49,61 + 3543: -49,59 + 3544: -48,58 + 3545: -47,59 + 3546: -48,55 + 3547: -49,55 + 3548: -47,55 + 3549: -47,55 + 3550: -47,54 + 3551: -47,54 + 3552: -48,50 + 3553: -49,50 + 3554: -48,51 + 3555: -47,51 + 3556: -61,60 + 3557: -61,60 + 3558: -60,61 + 3559: -58,61 + 3560: -56,60 + 3561: -53,60 + 3562: -53,61 + 3563: -55,61 + 3564: -59,60 + 3565: -60,60 + 3566: -57,60 + 3567: -54,60 + 3568: -53,60 + 3569: -52,62 + 3570: -52,63 + 3571: -50,63 + 3572: -49,65 + 3573: -51,65 + 3574: -52,64 + 3575: -53,63 + 3576: -52,64 + 3577: -50,65 + 3578: -47,64 + 3579: -45,64 + 3580: -43,64 + 3581: -43,65 + 3582: -43,64 + 3583: -43,62 + 3584: -42,62 + 3585: -42,64 + 3586: -44,65 + 3587: -43,62 + 3588: -43,61 + 3589: -43,63 + 3590: -47,64 + 3591: -49,65 + 3592: -50,65 + 3593: -48,64 + 3594: -48,65 + 3595: -50,64 + 3596: -53,82 + 3597: -53,82 + 3598: -53,83 + 3599: -51,84 + 3600: -51,86 + 3601: -52,89 + 3602: -53,89 + 3603: -53,88 + 3604: -52,87 + 3605: -51,89 + 3606: -53,90 + 3607: -53,89 + 3608: -53,87 + 3609: -53,85 + 3610: -52,83 + 3611: -51,83 + 3612: -51,86 + 3613: -51,89 + 3614: -52,89 + 3615: -56,89 + 3616: -56,89 + 3617: -55,88 + 3618: -55,90 + 3619: -56,90 + 3620: -55,86 + 3621: -55,86 + 3622: -56,86 + 3623: -56,86 + 3624: -55,83 + 3625: -55,84 + 3626: -56,83 + 3627: -55,82 + 3628: -55,82 + 3629: -54,83 + 3630: -54,83 + 3631: -54,89 + 3632: -57,86 + 3633: -57,86 + 3634: -58,89 + 3635: -59,89 + 3636: -61,88 + 3637: -61,87 + 3638: -61,85 + 3639: -59,83 + 3640: -59,83 + 3641: -58,86 + 3642: -60,88 + 3643: -61,88 + 3644: -61,86 + 3645: -62,85 + 3646: -62,84 + 3647: -61,83 + 3648: -60,86 + 3649: -61,88 + 3650: -62,89 + 3651: -61,87 + 3652: -60,85 + 3653: -59,84 + 3654: -59,83 + 3655: -60,84 + 3656: -62,84 + 3657: -60,87 + 3658: -60,89 + 3659: -60,89 + 3660: -58,89 + 3700: -61,58 + 3701: -62,58 + 3702: -61,57 + 3703: -61,57 + 3704: -61,58 + 3705: -61,57 + 3706: -60,57 + 4096: -58,52 + 4097: -58,50 + 4098: -58,50 + 4099: -57,50 + 4100: -57,51 + 4101: -58,49 + 4102: -57,49 + 4103: -55,52 + 4104: -55,50 + 4105: -54,49 + 4106: -54,51 + 4107: -52,52 + 4108: -52,51 + 4109: -52,50 + 4110: -51,49 + 4111: -51,51 + 4112: -51,51 + 4252: -83,33 + 4253: -82,32 + 4254: -82,31 + 4255: -82,30 + 4256: -81,30 + 4257: -80,33 + 4258: -79,33 + 4259: -78,33 + 4260: -80,32 + 4261: -82,32 + 4262: -81,31 + 4263: -79,30 + 4264: -77,30 + 4265: -77,32 + 4266: -78,31 + 4267: -78,28 + 4268: -78,29 + 4269: -79,31 + 4270: -77,32 + 4271: -80,33 + 4272: -81,30 + 4273: -80,32 + 4274: -81,33 + 4275: -67,31 + 4276: -68,31 + 4277: -68,30 + 4278: -67,28 + 4279: -67,26 + 4280: -66,26 + 4281: -64,27 + 4282: -67,27 + 4283: -65,26 + 4284: -64,25 + 4285: -65,28 + 4286: -67,28 + 4287: -68,26 + 4288: -67,25 + 4289: -67,30 + 4290: -64,30 + 4291: -64,32 + 4292: -65,33 + 4293: -66,33 + 4294: -65,34 + 4295: -66,34 + 4296: -68,34 + 4297: -70,33 + 4298: -68,33 + 4299: -70,34 + 4300: -72,35 + 4301: -74,34 + 4302: -73,33 + 4303: -71,34 + 4304: -73,35 + 4305: -75,34 + 4306: -75,33 + 4307: -75,31 + 4308: -75,30 + 4309: -74,29 + 4310: -75,26 + 4311: -75,27 + 4312: -75,27 + 4313: -75,25 + 4314: -74,23 + 4315: -74,26 + 4316: -75,26 + 4317: -76,25 + 4318: -77,25 + 4319: -76,24 + 4320: -76,26 + 4321: -76,25 + 4322: -74,23 + 4323: -74,20 + 4324: -75,19 + 4325: -75,22 + 4326: -75,23 + 4327: -74,22 + 4328: -70,22 + 4329: -70,22 + 4330: -65,22 + 4331: -63,22 + 4332: -66,21 + 4333: -68,22 + 4334: -70,21 + 4335: -66,20 + 4336: -69,20 + 4337: -71,20 + 4338: -67,20 + 4339: -70,22 + 4340: -66,22 + 4341: -68,20 + 4342: -81,23 + 4343: -83,23 + 4344: -85,23 + 4345: -86,23 + 4346: -87,26 + 4347: -86,27 + 4348: -85,27 + 4349: -82,27 + 4350: -81,26 + 4351: -80,25 + 4352: -80,23 + 4353: -80,23 + 4354: -79,26 + 4355: -80,27 + 4356: -80,24 + 4357: -81,23 + 4358: -82,22 + 4359: -84,23 + 4360: -86,25 + 4361: -86,26 + 4362: -86,26 + 4363: -86,23 + 4364: -85,30 + 4365: -86,30 + 4366: -86,29 + 4367: -85,30 + 4368: -85,21 + 4369: -86,21 + 4370: -86,20 + 4371: -85,21 + 4372: -82,19 + 4373: -82,19 + 4374: -82,20 + 4375: -83,18 + 4376: -82,18 + 4377: -80,19 + 4378: -78,19 + 4379: -79,19 + 4380: -81,19 + 4381: -80,18 + 4382: -79,18 + 4383: -77,19 + 4384: -77,21 + 4385: -77,22 + 4386: -78,21 + 4387: -77,20 + 4388: -77,21 + 4389: -77,20 + 4390: -78,18 + 4391: -80,19 + 4392: -81,20 + 4393: -82,19 + 4394: -80,20 + 4395: -80,20 + 4396: -74,17 + 4397: -75,16 + 4398: -73,15 + 4399: -73,16 + 4400: -74,17 + 4401: -73,16 + 4402: -72,15 + 4403: -72,16 + 4404: -74,17 + 4405: -74,17 + 4414: -62,42 + 4415: -63,42 + 4416: -64,41 + 4417: -64,39 + 4418: -64,41 + 4419: -65,40 + 4420: -65,39 + 4421: -64,40 + 4422: -63,41 + 4423: -61,41 + 4424: -61,38 + 4425: -62,38 + 4426: -61,41 + 4427: -63,41 + 4428: -63,39 + 4429: -62,39 + 4430: -63,42 + 4431: -64,41 + 4432: -64,41 + 4433: -63,39 + 4434: -61,40 + 4435: -62,42 + 4436: -64,41 + 4437: -65,40 + 4438: -65,39 + 4439: -65,40 + 4440: -64,41 + 4441: -62,42 + 4442: -64,44 + 4443: -65,44 + 4444: -64,44 + 4445: -61,45 + 4446: -63,45 + 4447: -64,45 + 4448: -64,44 + 4449: -62,44 + 4450: -62,45 + 4451: -64,45 + 4511: -73,49 + 4512: -73,48 + 4513: -73,47 + 4514: -71,48 + 4515: -72,49 + 4516: -72,48 + 4517: -70,49 + 4518: -70,49 + 4519: -70,48 + 4520: -69,47 + 4521: -71,48 + 4522: -72,48 + 4523: -72,49 + 4565: -67,49 + 4566: -68,49 + 4567: -67,50 + 4568: -67,50 + 4569: -66,48 + 4570: -67,47 + 4571: -66,46 + 4572: -66,47 + 4573: -67,46 + 4578: -67,45 + 4579: -67,44 + 4580: -68,42 + 4581: -68,40 + 4582: -68,38 + 4583: -67,38 + 4584: -67,43 + 4585: -67,46 + 4586: -67,45 + 4587: -67,41 + 4588: -67,37 + 4589: -68,37 + 4590: -70,37 + 4591: -72,37 + 4592: -74,37 + 4593: -76,37 + 4594: -76,39 + 4595: -76,41 + 4596: -76,43 + 4597: -76,45 + 4598: -76,48 + 4599: -75,48 + 4600: -75,45 + 4601: -75,43 + 4602: -75,43 + 4603: -76,47 + 4604: -76,50 + 4605: -76,52 + 4606: -76,50 + 4607: -74,52 + 4608: -74,52 + 4609: -72,51 + 4610: -72,53 + 4611: -72,52 + 4612: -71,51 + 4613: -70,53 + 4614: -71,55 + 4615: -72,55 + 4616: -72,52 + 4617: -72,52 + 4618: -71,55 + 4619: -72,55 + 4620: -72,53 + 4621: -70,51 + 4622: -70,53 + 4623: -70,55 + 4624: -71,56 + 4625: -71,55 + 4626: -70,54 + 4656: -76,54 + 4657: -77,54 + 4658: -78,54 + 4659: -78,53 + 4660: -68,57 + 4661: -68,56 + 4662: -68,55 + 4663: -68,52 + 4664: -68,50 + 4665: -61,35 + 4666: -62,36 + 4667: -62,36 + 4668: -64,36 + 4669: -67,36 + 4670: -68,36 + 4671: -68,38 + 4672: -68,40 + 4673: -68,39 + 4674: -71,43 + 4675: -70,43 + 4676: -71,44 + 4677: -72,44 + 4678: -73,44 + 4679: -71,43 + 4680: -71,41 + 4681: -72,40 + 4682: -72,42 + 4683: -72,42 + 4684: -73,40 + 4685: -72,39 + 4686: -70,39 + 4687: -70,41 + 4688: -71,43 + 4689: -72,44 + 4690: -72,44 + 4691: -73,43 + 4692: -61,33 + 4693: -60,33 + 4694: -62,33 + 4695: -61,32 + 4696: -60,31 + 4697: -60,32 + 4698: -61,33 + 4699: -62,32 + 4700: -62,31 + 4701: -61,31 + 4788: -69,16 + 4789: -71,17 + 4790: -71,16 + 4791: -70,15 + 4792: -69,16 + 4793: -71,16 + 4794: -71,22 + 4795: -71,21 + 4796: -71,22 + 4797: -68,22 + 4798: -69,22 + 4799: -65,22 + 4800: -70,20 + 4801: -63,19 + 4802: -68,20 + 4803: -70,22 + 4976: -84,32 + 4977: -85,33 + 4978: -84,35 + 4979: -84,38 + 4980: -84,40 + 4981: -84,43 + 4982: -83,45 + 4983: -82,46 + 4984: -80,46 + 4985: -80,45 + 4986: -82,46 + 4987: -84,45 + 4988: -82,43 + 4989: -81,44 + 4990: -84,45 + 4991: -85,46 + 4992: -82,44 + 4993: -80,43 + 4994: -82,42 + 4995: -84,42 + 4996: -83,41 + 4997: -79,42 + 4998: -80,43 + 4999: -83,40 + 5000: -81,39 + 5001: -82,40 + 5002: -83,41 + 5003: -82,40 + 5004: -80,39 + 5005: -83,39 + 5006: -84,38 + 5007: -82,36 + 5008: -80,35 + 5009: -80,36 + 5010: -82,39 + 5011: -81,41 + 5012: -80,42 + 5013: -81,44 + 5014: -64,14 + 5015: -65,14 + 5016: -65,13 + 5017: -65,11 + 5018: -64,10 + 5019: -64,13 + 5020: -65,14 + 5021: -65,12 + 5022: -64,11 + 5023: -62,12 + 5024: -62,14 + 5025: -63,11 + 5026: -61,11 + 5027: -61,13 + 5028: -62,14 + 5029: -62,12 + 5030: -62,10 + 5062: -67,8 + 5063: -66,8 + 5064: -63,8 + 5065: -62,8 + 5066: -62,8 + 5067: -65,8 + 5068: -67,8 + 5069: -68,9 + 5070: -68,12 + 5071: -67,13 + 5072: -67,13 + 5073: -67,15 + 5074: -67,16 + 5075: -66,17 + 5076: -63,16 + 5077: -62,16 + 5078: -62,16 + 5079: -64,17 + 5080: -64,16 + 5081: -62,17 + 5082: -61,19 + 5083: -62,19 + 5084: -61,20 + 5085: -61,21 + 5086: -61,23 + 5087: -62,22 + 5088: -61,23 + 5089: -61,24 + 5090: -62,26 + 5091: -62,27 + 5092: -62,28 + 5093: -61,36 + 5094: -61,36 + 5095: -55,44 + 5096: -45,50 + 5097: -45,51 + 5098: -45,53 + 5099: -44,55 + 5100: -43,55 + 5101: -42,55 + 5102: -41,55 + 5103: -41,54 + 5104: -39,55 + 5105: -38,55 + 5106: -39,55 + 5107: -38,54 + 5108: -35,54 + 5109: -34,55 + 5110: -35,55 + 5111: -33,54 + 5112: -32,54 + 5113: -33,53 + 5114: -33,51 + 5115: -32,49 + 5116: -31,49 + 5117: -30,50 + 5118: -30,50 + 5119: -28,50 + 5120: -27,50 + 5121: -26,50 + 5122: -26,49 + 5123: -24,51 + 5124: -24,51 + 5125: -22,51 + 5126: -20,51 + 5127: -20,51 + 5128: -23,51 + 5129: -26,50 + 5130: -26,48 + 5131: -25,46 + 5132: -25,48 + 5133: -26,47 + 5134: -26,45 + 5135: -25,43 + 5136: -25,44 + 5137: -26,44 + 5138: -26,42 + 5139: -25,40 + 5140: -25,41 + 5141: -26,41 + 5142: -26,38 + 5143: -25,37 + 5144: -25,38 + 5145: -26,38 + 5146: -26,36 + 5147: -26,36 + 5148: -26,39 + 5149: -26,41 + 5150: -25,39 + 5151: -25,39 + 5152: -26,40 + 5153: -26,40 + 5154: -26,41 + 5155: -26,43 + 5156: -26,43 + 5157: -13,51 + 5158: -12,51 + 5159: -10,51 + 5160: -8,51 + 5161: -8,50 + 5162: -9,49 + 5163: -9,47 + 5164: -8,47 + 5165: -6,47 + 5166: -4,47 + 5167: -5,46 + 5168: -5,46 + 5169: -3,47 + 5170: -2,47 + 5171: -2,46 + 5172: 0,46 + 5173: 0,47 + 5174: 0,46 + 5175: 2,47 + 5176: 2,47 + 5177: 1,46 + 5178: 4,46 + 5179: 4,47 + 5180: 4,47 + 5181: 5,46 + 5182: 7,47 + 5183: 7,48 + 5184: 7,48 + 5185: 9,48 + 5186: 10,48 + 5187: 11,48 + 5188: 10,48 + 5189: 13,48 + 5190: 14,48 + 5191: 15,48 + 5192: 16,48 + 5193: 15,47 + 5194: 14,45 + 5195: 15,46 + 5196: 14,45 + 5197: 15,45 + 5198: 15,46 + 5199: 14,44 + 5200: 14,42 + 5201: 15,42 + 5202: 15,42 + 5203: 15,41 + 5204: 15,40 + 5205: 14,41 + 5206: 14,39 + 5207: 14,39 + 5208: 12,40 + 5209: 10,39 + 5210: 12,39 + 5211: 11,40 + 5212: 9,40 + 5213: 8,39 + 5214: 8,40 + 5215: 8,39 + 5216: 8,39 + 5217: 7,40 + 5218: 7,41 + 5219: 7,43 + 5220: 6,45 + 5221: 6,44 + 5222: 6,46 + 5223: 6,45 + 5224: 6,45 + 5225: 3,47 + 5226: 2,46 + 5227: 2,46 + 5228: 1,47 + 5229: 1,47 + 5230: 0,46 + 5231: -3,45 + 5232: -3,43 + 5233: -3,42 + 5234: -4,44 + 5235: -4,43 + 5236: -4,42 + 5237: -3,40 + 5238: -3,41 + 5239: -4,40 + 5240: -4,40 + 5241: -4,44 + 5242: -4,44 + 5243: -3,40 + 5244: -3,38 + 5245: -3,37 + 5246: -5,36 + 5247: -5,36 + 5248: -4,37 + 5249: -6,36 + 5250: -7,36 + 5251: -8,37 + 5252: -9,36 + 5253: -9,37 + 5254: -10,36 + 5255: -9,36 + 5256: -8,37 + 5257: -9,36 + 5258: 14,37 + 5259: 14,37 + 5260: 14,35 + 5261: 15,36 + 5262: 15,36 + 5263: 14,33 + 5264: 15,35 + 5265: 15,34 + 5266: 15,34 + 5267: 15,34 + 5268: 14,34 + 5269: 17,34 + 5270: 20,35 + 5271: 18,35 + 5272: 17,34 + 5273: 19,34 + 5274: 19,35 + 5275: 20,35 + 5276: 22,35 + 5277: 22,34 + 5278: 23,33 + 5279: 21,35 + 5280: 20,35 + 5281: 18,35 + 5282: 23,32 + 5283: 22,31 + 5284: 22,30 + 5285: 23,31 + 5286: 22,30 + 5287: 23,28 + 5288: 23,27 + 5289: 23,27 + 5290: 22,26 + 5291: 23,25 + 5292: 23,23 + 5293: 23,22 + 5294: 22,23 + 5295: 22,24 + 5296: 22,24 + 5297: 22,23 + 5298: 21,26 + 5299: 18,26 + 5300: 17,25 + 5301: 19,25 + 5302: 16,26 + 5303: 15,26 + 5304: 14,25 + 5305: 15,23 + 5306: 14,22 + 5307: 14,22 + 5308: 13,20 + 5309: 14,21 + 5310: 13,21 + 5311: 14,19 + 5312: 14,18 + 5313: 14,18 + 5314: 14,18 + 5315: 13,16 + 5316: 13,16 + 5317: 13,17 + 5318: 14,16 + 5319: 14,15 + 5320: 13,14 + 5321: 13,14 + 5322: 14,13 + 5323: 14,13 + 5324: 13,12 + 5325: 14,12 + 5326: 13,11 + 5327: 14,10 + 5328: 13,11 + 5329: 13,9 + 5330: 14,9 + 5331: 14,8 + 5332: 12,8 + 5333: 12,8 + 5334: 11,8 + 5335: 10,8 + 5336: 10,8 + 5337: 9,9 + 5338: 8,9 + 5339: 7,9 + 5340: 6,9 + 5341: 4,9 + 5342: 4,9 + 5343: 4,10 + 5344: 4,12 + 5345: 3,12 + 5346: 2,12 + 5347: 1,12 + 5348: -1,12 + 5349: -1,12 + 5350: -3,12 + 5351: -4,12 + 5352: -5,12 + 5353: -6,11 + 5354: -6,10 + 5355: -7,10 + 5356: -6,11 + 5357: -6,14 + 5358: -5,14 + 5359: -4,16 + 5360: -5,17 + 5361: -7,17 + 5362: -8,17 + 5363: -8,17 + 5364: -9,17 + 5365: -9,17 + 5366: -7,18 + 5367: -7,19 + 5368: -7,21 + 5369: -7,22 + 5370: -7,23 + 5371: -8,25 + 5372: -9,25 + 5373: -9,24 + 5374: -8,24 + 5375: -8,25 + 5376: -9,25 + 5377: -10,25 + 5378: -8,15 + 5379: -9,15 + 5380: -10,14 + 5381: -10,14 + 5382: -8,12 + 5383: -9,12 + 5384: -9,12 + 5385: -10,11 + 5386: -9,8 + 5387: -9,9 + 5388: -10,9 + 5389: -9,8 + 5390: -21,9 + 5391: -20,9 + 5392: -20,10 + 5393: -21,12 + 5394: -21,11 + 5395: -20,13 + 5396: -20,14 + 5397: -21,16 + 5398: -21,14 + 5399: -20,18 + 5400: -21,17 + 5401: -21,16 + 5402: -20,18 + 5403: -17,20 + 5404: -16,20 + 5405: -18,20 + 5406: -20,20 + 5407: -20,20 + 5408: -21,20 + 5409: -20,22 + 5410: -20,23 + 5411: -21,24 + 5412: -20,23 + 5413: -20,26 + 5414: -20,27 + 5415: -20,28 + 5416: -21,26 + 5417: -21,24 + 5418: -20,21 + 5419: -22,20 + 5420: -22,22 + 5421: -23,22 + 5422: -24,21 + 5423: -23,21 + 5424: -25,21 + 5425: -27,21 + 5426: -28,21 + 5427: -29,21 + 5428: -30,21 + 5429: -31,20 + 5430: -31,20 + 5431: -32,18 + 5432: -31,17 + 5433: -31,15 + 5434: -31,15 + 5435: -31,13 + 5436: -31,13 + 5437: -32,12 + 5438: -33,12 + 5439: -34,12 + 5440: -34,11 + 5441: -34,11 + 5442: -34,12 + 5443: -34,10 + 5444: -34,9 + 5445: -35,12 + 5446: -34,12 + 5447: -33,13 + 5448: -32,13 + 5449: -31,13 + 5450: -31,14 + 5451: -45,9 + 5452: -45,9 + 5453: -45,10 + 5454: -45,11 + 5455: -45,12 + 5456: -45,13 + 5457: -45,14 + 5458: -46,14 + 5459: -48,14 + 5460: -49,14 + 5461: -50,14 + 5462: -51,14 + 5463: -51,14 + 5464: -51,16 + 5465: -51,17 + 5466: -51,18 + 5467: -51,19 + 5468: -51,20 + 5469: -51,21 + 5470: -51,21 + 5471: -49,21 + 5472: -48,21 + 5473: -47,21 + 5474: -46,21 + 5475: -46,21 + 5476: -42,20 + 5477: -42,20 + 5478: -45,21 + 5479: -46,20 + 5480: -45,20 + 5481: -42,18 + 5482: -42,18 + 5483: -42,17 + 5484: -43,18 + 5485: -42,17 + 5486: -42,17 + 5487: -46,18 + 5488: -45,17 + 5489: -45,17 + 5490: -46,18 + 5491: -48,18 + 5492: -48,17 + 5493: -49,19 + 5494: -49,18 + 5495: -49,17 + 5496: -48,19 + 5497: -45,21 + 5498: -45,22 + 5499: -45,23 + 5500: -46,23 + 5501: -45,24 + 5502: -46,25 + 5503: -46,25 + 5504: -45,26 + 5505: -46,27 + 5506: -45,27 + 5507: -46,28 + 5508: -46,27 + 5532: -10,57 + 5533: -10,57 + 5534: -9,57 + 5535: -8,57 + 5536: -8,57 + 5537: -10,57 + 5538: -11,57 + 5539: -8,56 + 5540: -7,56 + 5541: -7,55 + 5542: -8,56 + 5543: -8,56 + 5544: -8,56 + 5545: -7,56 + 5546: -9,59 + 5547: -8,59 + 5548: -9,59 + 5549: -10,59 + 5550: -10,60 + 5551: -10,61 + 5552: -9,61 + 5553: -9,60 + 5554: -8,59 + 5555: -8,60 + 5556: -8,61 + 5557: -10,61 + 5558: -10,60 + 5559: -9,59 + 5560: -8,59 + 5561: -9,61 + 5562: -10,61 + 5563: -10,60 + 5564: -9,60 + 5565: -8,61 + 5566: -10,60 + 5567: -8,59 + 5568: -8,60 + 5569: -9,60 + 5570: -8,61 + 5571: -10,61 + 5572: -14,61 + 5573: -14,61 + 5574: -17,62 + 5575: -19,62 + 5576: -18,63 + 5577: -18,64 + 5578: -18,65 + 5579: -16,65 + 5580: -18,66 + 5581: -20,65 + 5582: -19,66 + 5583: -21,64 + 5584: -15,66 + 5585: -14,65 + 5586: -16,66 + 5587: -13,64 + 5588: -14,59 + 5589: -21,59 + 5590: -22,59 + 5591: -22,61 + 5592: -22,62 + 5593: -16,64 + 5594: -18,62 + 5595: -27,53 + 5596: -27,53 + 5597: -51,62 + 5598: -51,62 + 5599: -51,63 + 5600: -51,64 + 5601: -50,64 + 5602: -49,64 + 5603: -49,64 + 5604: -51,64 + 5605: -53,65 + 5606: -53,65 + 5607: -44,63 + 5608: -44,62 + 5609: -44,62 + 5610: -56,61 + 5611: -54,61 + 5612: -54,61 + 5613: -58,56 + 5614: -51,55 + 5615: -51,54 + 5616: -51,53 + 5617: -52,53 + 5618: -54,53 + 5619: -55,53 + 5620: -57,53 + 5621: -57,53 + 5622: -52,53 + 5623: -54,54 + 5624: -55,54 + 5625: -55,56 + 5626: -56,56 + 5627: -57,57 + 5628: -57,57 + 5629: -57,34 + 5630: -58,34 + 5631: -59,35 + 5632: -59,35 + 5633: -58,35 + 5634: -58,35 + 5635: -56,35 + 5636: -57,36 + 5637: -58,36 + 5638: -56,37 + 5639: -58,37 + 5640: -58,37 + 5641: -58,36 + 5642: -57,37 + 5643: -58,38 + 5644: -59,37 + 5645: -57,37 + 5646: -58,39 + 5647: -59,38 + 5648: -58,37 + 5649: -57,38 + 5650: -58,40 + 5651: -59,40 + 5652: -59,41 + 5653: -59,44 + 5654: -59,45 + 5655: -59,46 + 5656: -57,46 + 5657: -57,45 + 5658: -57,42 + 5659: -57,41 + 5660: -57,40 + 5661: -57,38 + 5662: -58,39 + 5663: -58,40 + 5664: -58,42 + 5665: -58,43 + 5666: -58,45 + 5667: -58,45 + 5668: -58,46 + 5669: -58,46 + 5670: -59,43 + 5671: -59,42 + 5672: -58,42 + 5673: -59,39 + 5674: -59,38 + 5675: -57,39 + 5676: -57,40 + 5677: -58,41 + 5678: -59,41 + 5679: -59,43 + 5680: -57,43 + 5681: -57,44 + 5682: -59,46 + 5683: -59,46 + 5684: -59,47 + 5685: -58,47 + 5686: -56,47 + 5687: -55,47 + 5688: -55,47 + 5689: -56,47 + 5690: -56,46 + 5691: -58,47 + 5692: -53,47 + 5693: -53,47 + 5694: -55,47 + 5695: -54,46 + 5696: -53,46 + 5697: -52,46 + 5698: -54,47 + 5699: -54,46 + 5700: -51,47 + 5701: -52,46 + 5702: -50,46 + 5703: -49,46 + 5704: -49,47 + 5705: -51,47 + 5706: -50,46 + 5707: -48,46 + 5708: -48,47 + 5709: -48,47 + 5710: -47,47 + 5711: -47,48 + 5712: -48,49 + 5713: -49,49 + 5714: -49,48 + 5715: -50,47 + 5716: -50,46 + 5717: -48,47 + 5718: -48,48 + 5719: -47,49 + 5720: -52,46 + 5721: -50,46 + 5722: -48,46 + 5723: -48,46 + 5724: -48,48 + 5725: -47,47 + 5726: -47,46 + 5727: -48,44 + 5728: -49,45 + 5729: -49,44 + 5730: -48,43 + 5731: -47,45 + 5732: -47,45 + 5733: -49,45 + 5734: -50,44 + 5735: -50,43 + 5736: -49,43 + 5737: -50,45 + 5738: -49,44 + 5739: -49,42 + 5740: -48,42 + 5741: -47,43 + 5742: -47,44 + 5743: -47,42 + 5744: -47,41 + 5745: -48,41 + 5746: -49,40 + 5747: -48,40 + 5748: -47,41 + 5749: -49,42 + 5750: -49,42 + 5751: -49,40 + 5752: -48,39 + 5753: -47,38 + 5754: -47,39 + 5755: -48,39 + 5756: -49,38 + 5757: -49,37 + 5758: -48,35 + 5759: -47,36 + 5760: -48,37 + 5761: -48,38 + 5762: -48,38 + 5763: -48,36 + 5764: -47,35 + 5765: -47,35 + 5766: -48,36 + 5767: -49,35 + 5768: -49,35 + 5769: -49,38 + 5770: -48,39 + 5771: -48,40 + 5772: -49,42 + 5773: -49,41 + 5774: -47,39 + 5775: -49,39 + 5776: -47,37 + 5777: -49,34 + 5778: -48,34 + 5779: -47,34 + 5780: -47,34 + 5781: -48,34 + 5782: -10,34 + 5783: -11,33 + 5784: -11,32 + 5785: -11,31 + 5786: -13,30 + 5787: -14,31 + 5788: -14,29 + 5789: -14,29 + 5790: -11,32 + 5791: -10,33 + 5792: -9,33 + 5793: -10,34 + 5794: -11,34 + 5795: -10,34 + 5796: -8,34 + 5797: -7,33 + 5798: -7,32 + 5799: -8,31 + 5800: -10,31 + 5801: -12,30 + 5802: -13,29 + 5803: -12,28 + 5804: -14,25 + 5805: -14,23 + 5806: -14,22 + 5807: -12,21 + 5808: -12,22 + 5809: -12,20 + 5810: -12,19 + 5811: -14,21 + 5812: -14,21 + 5813: -13,20 + 5814: -13,22 + 5815: -14,24 + 5816: -14,25 + 5817: -14,15 + 5818: -13,13 + 5819: -12,15 + 5820: -13,16 + 5821: -14,17 + 5822: -13,16 + 5823: -13,16 + 5824: -14,16 + 5825: -14,19 + 5826: -13,21 + 5827: -13,23 + 5828: -13,25 + 5829: -13,11 + 5830: -12,13 + 5831: -13,12 + 5832: -13,12 + 5833: -12,6 + 5834: -13,6 + 5835: -14,6 + 5836: -13,4 + 5837: -12,5 + 5838: -12,5 + 5839: -13,5 + 5840: -14,4 + 5841: -10,5 + 5842: -9,5 + 5843: -10,4 + 5844: -9,4 + 5845: -8,4 + 5846: -8,4 + 5847: -8,4 + 5848: -6,4 + 5849: -7,6 + 5850: -8,6 + 5851: -6,7 + 5852: -4,6 + 5853: -3,6 + 5854: -3,5 + 5855: -3,4 + 5856: -4,4 + 5857: -2,5 + 5858: -2,5 + 5859: -3,4 + 5860: -1,5 + 5861: 1,6 + 5862: 0,5 + 5863: 0,5 + 5864: 2,4 + 5865: 4,5 + 5866: 2,6 + 5867: 2,5 + 5868: 4,4 + 5869: 4,5 + 5870: 3,6 + 5871: 3,4 + 5872: 4,5 + 5873: 3,5 + 5874: 4,6 + 5875: 7,4 + 5876: 6,4 + 5877: 7,4 + 5878: 8,4 + 5879: 5,3 + 5880: 4,3 + 5881: 9,4 + 5882: 10,4 + 5883: 10,4 + 5884: 10,5 + 5885: 11,4 + 5886: 11,6 + 5887: 11,6 + 5888: 14,5 + 5889: 15,5 + 5890: 17,6 + 5891: 18,6 + 5892: 17,5 + 5893: 18,6 + 5894: 20,6 + 5895: 21,6 + 5896: 22,6 + 5897: 23,5 + 5898: 23,5 + 5899: 22,4 + 5900: 23,4 + 5901: 21,5 + 5902: 19,6 + 5903: 25,5 + 5904: 25,6 + 5905: 25,7 + 5906: 26,6 + 5907: 26,5 + 5908: 28,7 + 5909: 29,7 + 5910: 28,8 + 5911: 27,9 + 5912: 26,9 + 5913: 26,9 + 5914: 26,10 + 5915: 25,11 + 5916: 25,12 + 5917: 26,13 + 5918: 26,14 + 5919: 26,15 + 5920: 25,16 + 5921: 28,13 + 5922: 28,13 + 5923: 28,14 + 5924: 28,16 + 5925: 27,17 + 5926: 27,18 + 5927: 28,19 + 5928: 27,19 + 5929: 25,20 + 5930: 27,20 + 5931: 27,21 + 5932: 28,21 + 5933: 28,20 + 5934: 26,22 + 5935: 28,24 + 5936: 28,24 + 5937: 26,25 + 5938: 25,25 + 5939: 25,25 + 5940: 25,23 + 5941: 26,23 + 5942: 28,11 + 5943: 28,10 + 5944: 28,12 + 5945: 28,12 + 5952: -22,55 + 5953: -23,54 + 5954: -22,54 + 5955: -21,54 + 5956: -21,55 + 5957: -21,56 + 5958: -22,57 + 5959: -22,57 + 5960: -23,55 + 5961: -23,54 + 5962: -22,55 + 5963: -22,56 + 5964: -22,57 + 5965: -23,56 + 5966: -23,55 + 5967: -23,54 + 5968: -23,54 + 5969: -23,56 + 5970: -22,57 + 5971: -21,57 + 5972: -24,54 + 5973: -24,53 + 5974: -23,53 + 5975: -21,53 + 5976: -21,53 + 5977: -24,54 + 5978: -24,55 + 5979: -24,56 + 5980: -24,56 + 5981: -21,54 + 5982: -21,54 + 5983: -21,55 + 5984: -22,57 + 5985: -23,55 + 5986: -51,33 + 5987: -49,32 + 5988: -51,31 + 5989: -55,31 + 5990: -54,32 + 5991: -55,33 + 5992: -57,25 + 5993: -58,22 + 5994: -58,21 + 5995: -59,20 + 5996: -57,18 + 5997: -59,17 + 5998: -59,12 + 5999: -57,10 + 6000: -58,10 + 6001: -59,8 + 6002: -59,9 + 6003: -59,4 + 6004: -59,5 + 6005: -57,4 + 6006: -61,4 + 6007: -56,4 + 6008: -65,4 + 6009: -67,4 + 6010: -69,5 + 6011: -69,4 + 6012: -70,5 + 6013: -72,6 + 6014: -74,5 + 6015: -75,4 + 6016: -57,0 + 6017: -58,0 + 6018: -59,-2 + 6019: -59,-1 + 6020: -58,-2 + 6021: -58,-6 + 6022: -57,-5 + 6023: -57,-8 + 6024: -58,-8 + 6025: -59,-9 + 6026: -57,-10 + 6027: -52,6 + 6028: -50,6 + 6029: -51,4 + 6030: -49,3 + 6031: -50,3 + 6032: -48,6 + 6033: -46,6 + 6034: -48,5 + 6035: -47,6 + 6036: -44,6 + 6037: -43,5 + 6038: -43,6 + 6039: -42,6 + 6040: -39,6 + 6041: -34,7 + 6042: -39,4 + 6043: -35,4 + 6044: -37,3 + 6045: -38,3 + 6046: -39,3 + 6047: -41,3 + 6048: -35,3 + 6049: -33,4 + 6050: -29,4 + 6051: -28,4 + 6052: -39,4 + 6053: -38,4 + 6054: -36,5 + 6055: -37,6 + 6056: -39,6 + 6057: -40,5 + 6058: -39,4 + 6059: -37,4 + 6060: -37,6 + 6061: -38,6 + 6062: -38,5 + 6063: -38,7 + 6064: -38,8 + 6065: -41,5 + 6066: -42,5 + 6067: -32,5 + 6068: -32,5 + 6069: -34,6 + 6070: -33,6 + 6071: -33,5 + 6072: -38,18 + 6073: -39,16 + 6074: -37,14 + 6075: -39,13 + 6076: -38,23 + 6077: -38,23 + 6078: -39,26 + 6079: -39,26 + 6080: -39,27 + 6081: -38,26 + 6082: -37,24 + 6083: -37,25 + 6084: -38,24 + 6085: -37,29 + 6086: -38,30 + 6087: -38,31 + 6088: -37,31 + 6089: -38,30 + 6090: -37,32 + 6091: -39,32 + 6092: -40,33 + 6093: -41,32 + 6094: -42,32 + 6095: -41,33 + 6096: -39,33 + 6097: -38,32 + 6098: -38,31 + 6099: -37,31 + 6100: -35,32 + 6101: -35,33 + 6102: -36,33 + 6103: -39,32 + 6104: -39,32 + 6105: -38,32 + 6106: -37,33 + 6107: -39,33 + 6108: -39,33 + 6109: -38,31 + 6110: -37,31 + 6111: -36,32 + 6112: -35,32 + 6113: -36,31 + 6114: -34,33 + 6115: -33,32 + 6116: -31,31 + 6117: -30,31 + 6118: -29,32 + 6119: -28,32 + 6120: -38,30 + 6121: -39,30 + 6122: -39,28 + 6123: -37,30 + 6124: -39,28 + 6125: -39,27 + 6126: -28,35 + 6127: -29,35 + 6128: -29,36 + 6129: -29,37 + 6130: -28,37 + 6131: -28,37 + 6132: -28,36 + 6133: -28,37 + 6134: -29,38 + 6135: -29,38 + 6136: -29,36 + 6137: -29,35 + 6138: -29,35 + 6139: -28,37 + 6140: -28,38 + 6141: -31,39 + 6142: -31,40 + 6143: -32,40 + 6144: -33,39 + 6145: -32,39 + 6146: -32,40 + 6147: -33,40 + 6148: -32,38 + 6149: -31,39 + 6150: -32,40 + 6151: -33,38 + 6152: -32,38 + 6153: -31,39 + 6154: -33,39 + 6155: -33,37 + 6156: -32,36 + 6157: -31,37 + 6158: -33,37 + 6159: -33,35 + 6160: -31,35 + 6161: -31,37 + 6162: -33,36 + 6163: -32,35 + 6164: -32,37 + 6165: -32,36 + 6166: -33,35 + 6167: -33,37 + 6168: -33,36 + 6169: -33,35 + 6170: -34,36 + 6171: -34,38 + 6173: -51,35 + 6174: -52,36 + 6175: -53,35 + 6176: -51,34 + 6177: -52,34 + 6178: -52,34 + 6179: -52,35 + 6180: -51,35 + 6181: -53,36 + 6182: -54,35 + 6183: -54,36 + 6184: -53,37 + 6185: -52,38 + 6186: -52,38 + 6187: -51,37 + 6188: -51,36 + 6189: -52,36 + 6190: -52,37 + 6191: -52,36 + 6192: -53,35 + 6193: -53,36 + 6194: -53,38 + 6195: -53,40 + 6196: -53,40 + 6197: -51,40 + 6198: -52,41 + 6199: -53,41 + 6200: -53,40 + 6201: -51,40 + 6202: -52,41 + 6203: -53,41 + 6204: -53,38 + 6205: -53,38 + 6206: -54,37 + 6207: -54,36 + 6208: -53,36 + 6209: -52,38 + 6210: -51,38 + 6211: -51,37 + 6212: -52,36 + 6213: -53,36 + 6214: -53,35 + 6215: -45,47 + 6216: -45,46 + 6217: -45,45 + 6218: -45,44 + 6219: -45,43 + 6220: -45,42 + 6221: -45,41 + 6222: -44,41 + 6223: -44,42 + 6224: -44,43 + 6225: -44,45 + 6226: -44,46 + 6227: -43,46 + 6228: -43,46 + 6229: -43,46 + 6230: -43,44 + 6231: -43,43 + 6232: -43,42 + 6233: -43,42 + 6234: -43,41 + 6235: -42,41 + 6236: -42,43 + 6237: -42,44 + 6238: -42,45 + 6239: -42,46 + 6240: -42,47 + 6241: -43,47 + 6242: -43,46 + 6243: -43,46 + 6244: -42,46 + 6245: -41,46 + 6246: -41,46 + 6247: -41,44 + 6248: -41,42 + 6249: -41,42 + 6250: -41,41 + 6251: -41,44 + 6252: -41,46 + 6253: -41,47 + 6254: -42,47 + 6255: -43,43 + 6256: -43,42 + 6257: -44,42 + 6258: -44,44 + 6259: -44,45 + 6260: -43,45 + 6261: -43,44 + 6262: -44,43 + 6263: -43,43 + 6264: -42,45 + 6265: -43,45 + 6266: -44,45 + 6267: -43,46 + 6268: -45,47 + 6269: -45,44 + 6270: -45,42 + 6271: -45,41 + 6272: -44,41 + 6273: -43,41 + 6274: -42,42 + 6275: -42,43 + 6276: -43,45 + 6277: -43,45 + 6278: -44,44 + 6279: -45,44 + 6280: -45,43 + 6281: -45,41 + 6282: -44,41 + 6283: -43,42 + 6284: -44,45 + 6285: -44,46 + 6286: -45,45 + 6287: -44,44 + 6288: -43,43 + 6289: -42,45 + 6290: -44,46 + 6291: -44,46 + 6292: -45,45 + 6293: -45,43 + 6294: -43,42 + 6295: -42,42 + 6296: -41,44 + 6297: -42,46 + 6298: -42,47 + 6299: -44,47 + 6300: -40,44 + 6301: -40,45 + 6302: -40,46 + 6303: -39,46 + 6304: -38,47 + 6305: -39,47 + 6306: -39,45 + 6307: -38,45 + 6308: -37,47 + 6309: -38,46 + 6310: -38,45 + 6311: -38,43 + 6312: -37,43 + 6313: -37,46 + 6314: -39,45 + 6315: -39,42 + 6316: -38,42 + 6317: -36,43 + 6318: -36,43 + 6319: -37,43 + 6320: -36,42 + 6321: -35,42 + 6322: -34,43 + 6323: -34,42 + 6324: -33,42 + 6325: -33,43 + 6326: -34,43 + 6327: -33,42 + 6328: -32,43 + 6329: -32,44 + 6330: -33,45 + 6331: -33,47 + 6332: -34,46 + 6333: -33,45 + 6334: -32,46 + 6335: -34,47 + 6336: -35,46 + 6337: -36,45 + 6338: -35,44 + 6339: -34,44 + 6340: -35,46 + 6341: -36,46 + 6342: -38,46 + 6343: -39,47 + 6344: -38,47 + 6345: -34,46 + 6346: -33,46 + 6347: -33,47 + 6348: -33,47 + 6349: -33,44 + 6350: -32,44 + 6351: -32,43 + 6352: -33,44 + 6353: -34,43 + 6354: -35,43 + 6355: -36,43 + 6356: -37,42 + 6357: -38,42 + 6358: -38,43 + 6359: -39,44 + 6360: -39,43 + 6361: -39,42 + 6362: -39,45 + 6363: -38,46 + 6364: -39,47 + 6365: -39,47 + 6366: -37,44 + 6367: -36,44 + 6368: -34,45 + 6369: -37,45 + 6370: -32,45 + 6371: -32,46 + 6372: -32,46 + 6373: -32,44 + 6374: -32,43 + 6375: -33,43 + 6376: -35,42 + 6377: -33,42 + 6378: -33,42 + 6379: -32,47 + 6380: -29,44 + 6381: -29,45 + 6382: -29,47 + 6383: -30,46 + 6384: -30,45 + 6385: -30,44 + 6386: -28,44 + 6387: -28,45 + 6388: -28,46 + 6389: -29,47 + 6390: -29,47 + 6391: -30,45 + 6392: -29,45 + 6393: -29,44 + 6394: -28,44 + 6395: -29,45 + 6396: -30,46 + 6397: -30,46 + 6398: -29,45 + 6399: -28,45 + 6400: -29,46 + 6401: -29,47 + 6402: -30,47 + 6403: -30,44 + 6404: -29,44 + 6405: -28,44 + 6406: -28,47 + 6407: -36,49 + 6408: -36,49 + 6409: -35,51 + 6410: -35,51 + 6411: -37,51 + 6412: -38,43 + 6413: -38,44 + 6414: -38,44 + 6415: -36,41 + 6416: -37,41 + 6417: -37,41 + 6418: -38,41 + 6419: -38,41 + 6420: -37,41 + 6421: -37,41 + 6422: -36,49 + 6423: -36,50 + 6424: -36,51 + 6425: -36,51 + 6426: -37,50 + 6427: -37,49 + 6428: -37,49 + 6429: -38,50 + 6430: -38,50 + 6431: -38,49 + 6432: -38,51 + 6433: -37,52 + 6434: -37,52 + 6435: -38,52 + 6436: -38,51 + 6437: -37,51 + 6438: -35,50 + 6439: -35,49 + 6440: -35,50 + 6441: -36,51 + 6442: -37,51 + 6443: -38,52 + 6444: -38,51 + 6445: -38,50 + 6446: -38,50 + 6447: -38,51 + 6448: -41,51 + 6449: -41,52 + 6450: -42,52 + 6451: -43,51 + 6452: -43,51 + 6453: -42,50 + 6454: -42,50 + 6455: -42,52 + 6456: -43,52 + 6457: -43,50 + 6458: -43,50 + 6459: -42,49 + 6460: -41,49 + 6461: -40,50 + 6462: -40,52 + 6463: -41,52 + 6464: -42,51 + 6465: -41,50 + 6466: -40,51 + 6467: -42,51 + 6468: -30,47 + 6469: -29,41 + 6470: -30,42 + 6471: -30,42 + 6472: -29,42 + 6473: -28,42 + 6474: -28,41 + 6475: -28,40 + 6476: -29,41 + 6477: -35,43 + 6478: -37,42 + 6479: -4,33 + 6480: -5,34 + 6481: -4,32 + 6482: -3,30 + 6483: -2,30 + 6484: -1,30 + 6485: -1,29 + 6486: 0,31 + 6487: 0,32 + 6488: 0,33 + 6489: -1,33 + 6490: -1,31 + 6491: 0,30 + 6492: -4,29 + 6493: -5,29 + 6494: -5,29 + 6495: -5,31 + 6496: -5,33 + 6497: -4,34 + 6498: -4,34 + 6499: 2,29 + 6500: 4,30 + 6501: 4,30 + 6502: 4,32 + 6503: 3,34 + 6504: 2,33 + 6505: 2,31 + 6506: 2,24 + 6507: 4,26 + 6508: 2,20 + 6509: 3,19 + 6510: 4,19 + 6511: 6,19 + 6512: 7,20 + 6513: 9,20 + 6514: 9,18 + 6515: 6,15 + 6516: 6,14 + 6517: 6,16 + 6518: 6,17 + 6519: 7,17 + 6520: 7,17 + 6521: 7,16 + 6522: 9,16 + 6523: 11,14 + 6524: -2,19 + 6525: -1,19 + 6526: -2,20 + 6527: -3,21 + 6528: -2,22 + 6529: -1,23 + 6530: 0,24 + 6531: 0,25 + 6532: 0,26 + 6533: -1,26 + 6534: -2,27 + 6535: -4,27 + 6536: -5,26 + 6537: -5,25 + 6538: -5,24 + 6539: -1,25 + 6540: -1,27 + 6541: -3,27 + 6542: -4,26 + 6543: -3,25 + 6544: -1,23 + 6545: -2,22 + 6546: -3,22 + 6547: -3,20 + 6548: -1,24 + 6549: -1,24 + 6550: -2,24 + 6551: -2,22 + 6552: 0,22 + 6553: 0,23 + 6554: -3,23 + 6555: -2,25 + 6556: 0,25 + 6557: -1,26 + 6558: -2,26 + 6559: -4,25 + 6560: -4,24 + 6561: -4,21 + 6562: -5,19 + 6563: -4,19 + 6564: -5,20 + 6565: -4,21 + 6566: 10,29 + 6567: 11,28 + 6568: 11,28 + 6569: 12,29 + 6570: 12,30 + 6571: 11,32 + 6572: 9,31 + 6573: 8,31 + 6574: 8,28 + 6575: 10,28 + 6576: 7,31 + 6577: 7,31 + 6578: 6,36 + 6579: 6,37 + 6580: 3,36 + 6581: 2,37 + 6582: 0,36 + 6583: -1,37 + 6584: 2,40 + 6585: 4,39 + 6586: 4,37 + 6587: 4,37 + 6588: 3,37 + 6589: 10,40 + 6590: 10,40 + 6591: 9,43 + 6592: 9,42 + 6593: 10,42 + 6594: 10,43 + 6595: 11,43 + 6596: 12,43 + 6597: 12,42 + 6598: -25,33 + 6599: -24,32 + 6600: -25,34 + 6601: -23,34 + 6602: -22,34 + 6603: -21,34 + 6604: -20,34 + 6605: -22,33 + 6606: -18,31 + 6607: -17,34 + 6608: -18,34 + 6609: -16,34 + 6610: -17,35 + 6611: -17,35 + 6612: -17,36 + 6613: -18,37 + 6614: -18,42 + 6615: -18,44 + 6616: -18,46 + 6617: -18,48 + 6618: -17,48 + 6619: -17,49 + 6620: -18,51 + 6621: -17,51 + 6622: -16,51 + 6623: -17,51 + 6624: -14,47 + 6625: -14,46 + 6626: -13,46 + 6627: -11,46 + 6628: -11,46 + 6629: -11,49 + 6630: -12,49 + 6631: -14,49 + 6632: -14,49 + 6633: -14,33 + 6634: -15,33 + 6635: -15,31 + 6636: -16,31 + 6637: -14,29 + 6638: -12,29 + 6639: -14,30 + 6640: -11,28 + 6641: -11,27 + 6642: -9,28 + 6643: -10,30 + 6644: -11,30 + 6645: -12,27 + 6646: -14,27 + 6647: -13,26 + 6648: -14,26 + 6649: -12,22 + 6650: -13,17 + 6651: -12,17 + 6652: -12,9 + 6653: -15,4 + 6654: -16,4 + 6655: -15,3 + 6656: -16,3 + 6657: -18,3 + 6658: -19,3 + 6659: -20,6 + 6660: -21,6 + 6661: -22,5 + 6662: -23,4 + 6663: -26,4 + 6664: -26,6 + 6665: -7,4 + 6666: -10,2 + 6667: -10,0 + 6668: -10,-1 + 6669: -9,-2 + 6670: -9,-2 + 6671: -10,0 + 6672: -10,1 + 6673: -9,-3 + 6674: -10,-3 + 6675: -11,-2 + 6676: -13,-2 + 6677: -14,-2 + 6678: -13,-4 + 6679: -14,-6 + 6680: -12,-5 + 6681: -10,-6 + 6682: -9,-6 + 6683: -12,-6 + 6684: -13,-6 + 6685: -12,-8 + 6686: -13,-8 + 6687: -14,-8 + 6688: -7,-6 + 6689: -7,-5 + 6690: -6,-3 + 6691: -6,-3 + 6692: -4,-2 + 6693: -5,-2 + 6694: -2,-4 + 6695: -3,-5 + 6696: -4,-5 + 6697: -6,-6 + 6698: -7,-6 + 6699: 1,-2 + 6700: 1,-1 + 6701: 1,4 + 6702: 0,4 + 6703: -5,5 + 6704: 10,2 + 6705: 10,1 + 6706: 11,0 + 6707: 10,-4 + 6708: 10,0 + 6709: 13,5 + 6710: 13,6 + 6711: 20,5 + 6712: 19,4 + 6713: 22,5 + 6714: 25,8 + 6715: 25,9 + 6716: 25,10 + 6717: 25,9 + 6718: -35,7 + 6719: -36,7 + 6720: -38,14 + 6721: -40,20 + 6722: -41,30 + 6723: -41,30 + 6724: -45,30 + 6725: -45,30 + 6726: -46,31 + 6727: -46,33 + 6728: -48,31 + 6729: -47,32 + 6730: -55,31 + 6731: -56,31 + 6732: -49,36 + 6733: -50,36 + 6734: -48,45 + 6735: -49,46 + 6736: -51,46 + 6737: -53,47 + 6738: -57,47 + 6739: -57,36 + 6740: -57,35 + 6741: -56,35 + 6742: -56,36 + 6743: -57,32 + 6744: -58,31 + 6745: -59,29 + 6746: -59,30 + 6747: -58,26 + 6748: -59,26 + 6749: -58,28 + 6750: -58,23 + 6751: -58,22 + 6752: -59,21 + 6753: -58,18 + 6754: -59,22 + 6755: -59,23 + 6756: -60,24 + 6757: -60,24 + 6758: -57,14 + 6759: -58,15 + 6760: -59,15 + 6761: -59,17 + 6762: -59,20 + 6763: -57,7 + 6764: -57,6 + 6765: -58,6 + 6766: -59,7 + 6767: -59,4 + 6768: -59,3 + 6769: -60,5 + 6770: -60,6 + 6771: -60,5 + 6772: -60,4 + 6773: -62,6 + 6774: -68,6 + 6775: -69,6 + 6776: -71,4 + 6777: -72,4 + 6778: -73,4 + 6779: -75,6 + 6780: -76,6 + 6781: -73,6 + 6782: -52,4 + 6783: -54,4 + 6784: -55,4 + 6785: -54,4 + 6786: -53,5 + 6787: -46,4 + 6788: -45,4 + 6789: -48,4 + 6790: -49,3 + 6791: -59,2 + 6792: -59,-4 + 6793: -59,-8 + 6794: -50,3 + 6795: -31,31 + 6796: -29,31 + 6797: -28,31 + 6798: -28,31 + 6799: -47,49 + 6800: -72,33 + 6801: -71,33 + 6802: -71,33 + 6803: -73,34 + 6804: -73,34 + 6805: -75,32 + 6806: -69,34 + 6807: -70,33 + 6808: -72,33 + 6809: -72,35 + 6810: -73,35 + 6811: -74,34 + 6812: -74,28 + 6813: -64,31 + 6814: -64,31 + 6815: -66,28 + 6816: -65,27 + 6817: -64,26 + 6818: -65,21 + 6831: 1,23 + 6832: 1,23 + 6833: 1,23 + 6834: 1,29 + 6835: 1,30 + 6836: 1,30 + 6837: 1,29 + 6838: 1,30 + 6839: 6,29 + 6840: 6,28 + 6841: 6,28 + 6842: 6,29 + 6843: 6,29 + 6844: 5,33 + 6845: 5,33 + 6846: 1,33 + 6847: 1,33 + 6848: 1,33 + 6849: 3,35 + 6850: 3,35 + 6851: 3,35 + 6852: 3,35 + 6853: 5,25 + 6854: 5,24 + 6855: 5,25 + 6856: 5,19 + 6857: 5,19 + 6858: 8,19 + 6859: 8,19 + 6860: 8,19 + 6861: -52,7 + 6862: -51,7 + 6863: -55,18 + 6864: -55,18 + 6865: -55,18 + 6866: -55,20 + 6867: -54,20 + 6868: -53,19 + 6869: -53,18 + 6870: -53,18 + 6871: -23,32 + 6872: -22,31 + 6873: -23,31 + 6874: -26,34 + 6875: -26,32 + 6876: -31,32 + 6877: -30,33 + 6881: -20,33 + 6882: -20,33 + 6883: -19,33 + 6884: -24,33 + 6885: -21,35 + 7167: -46,-10 + 7168: -45,-10 + 7169: -44,-10 + 7170: -42,-11 + 7171: -41,-11 + 7172: -41,-12 + 7173: -44,-12 + 7174: -45,-12 + 7175: -45,-13 + 7176: -43,-14 + 7177: -41,-14 + 7178: -41,-14 + 7179: -43,-14 + 7180: -45,-14 + 7181: -46,-14 + 7182: -46,-12 + 7183: -46,-11 + 7184: -43,-11 + 7185: -40,-11 + 7186: -39,-12 + 7187: -39,-13 + 7188: -41,-13 + 7189: -43,-13 + 7190: -44,-13 + 7191: -43,-14 + 7192: -40,-14 + 7193: -38,-14 + 7194: -38,-12 + 7195: -39,-11 + 7196: -40,-10 + 7197: -41,-10 + 7198: -42,-10 + 7199: -43,-10 + 7200: -43,-12 + 7201: -42,-12 + 7202: -42,-13 + 7277: -43,1 + 7278: -43,1 + 7286: -43,66 + 7287: -43,66 + 7288: -43,66 + 7294: -73,15 + 7295: -74,15 + 7296: -74,15 + 7297: -75,15 + 7298: -74,15 + 7337: -17,54 + 7338: -18,54 + 7339: -18,55 + 7340: -17,55 + 7341: -16,56 + 7342: -17,57 + 7343: -17,56 + 7344: -18,57 + 7345: -16,55 + 7346: -16,54 + 7743: 23,13 + 7744: 23,13 + 7745: 22,11 + 7746: 22,12 + 7747: 22,13 + 7748: 24,13 + 7749: 25,14 + 7750: 25,15 + 7751: 25,16 + 7752: 25,18 + 7753: 25,18 + 7754: 26,15 + 7755: 26,15 + 7756: 26,13 + 7757: 25,12 + 7758: 25,11 + 7759: 25,13 + 7760: 26,13 + 7971: -3,31 + 7972: -3,32 + 7973: -2,31 + 7974: -3,29 + 7998: -64,60 + 7999: -64,59 + 8000: -64,58 + 8001: -66,57 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 2573: -18,22 + 2574: -17,22 + 2575: -16,22 + 2576: -16,23 + 2577: -17,24 + 2578: -18,23 + 2579: -16,23 + 2580: -16,25 + 2581: -18,26 + 2582: -18,24 + 2583: -16,25 + 2584: -17,26 + 2585: -17,26 + 2586: -17,24 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 7761: 26,13 + 7762: 26,12 + 7763: 26,11 + 7764: 26,11 + 7765: 26,10 + 7766: 25,13 + 7767: 24,13 + 7768: 25,15 + 7769: 24,15 + 7770: 24,17 + 7771: 23,15 + 7772: 22,17 + 7773: 23,16 + 7774: 23,13 + 7775: 22,12 + 7997: -63,60 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 1616: -30,52 + 1617: -29,53 + 1618: -27,54 + 1619: -27,54 + 1620: -28,55 + 1621: -30,54 + 1622: -29,53 + 1631: -44,50 + 1632: -44,50 + 1633: -44,49 + 1634: -40,45 + 1667: -43,36 + 1668: -43,37 + 1669: -44,39 + 1670: -45,37 + 1671: -43,36 + 1672: -40,38 + 1673: -37,39 + 1674: -39,40 + 1675: -42,38 + 1676: -46,38 + 1677: -40,35 + 1678: -39,39 + 1679: -41,38 + 1680: -44,37 + 1681: -41,39 + 1682: -37,36 + 1683: -40,36 + 1684: -43,37 + 1685: -36,37 + 1686: -35,38 + 1687: -35,38 + 1688: -35,37 + 1689: -35,35 + 1925: -54,46 + 1926: -47,40 + 1927: -48,37 + 2621: 3,27 + 2622: 13,28 + 2623: 10,37 + 6975: 25,24 + 6976: 26,24 + 6977: 27,24 + 6978: 28,24 + 6979: 28,25 + 6980: 26,25 + 6981: 25,25 + 6982: 25,26 + 6983: 26,26 + 6984: 27,25 + 6985: 27,25 + 6986: 28,26 + 6987: 27,26 + 6988: 26,26 + 6989: 25,26 + 6990: 26,27 + 6991: 28,27 + 6992: 28,27 + 6993: 28,28 + 6994: 26,28 + 6995: 25,27 + 6996: 25,27 + 6997: 25,28 + 6998: 27,25 + 6999: 27,25 + 7000: 27,24 + 7001: 25,23 + 7002: 27,23 + 7003: 28,23 + 7004: 27,23 + 7082: -75,-10 + 7083: -75,-10 + 7084: -76,-11 + 7085: -76,-12 + 7086: -75,-12 + 7087: -74,-11 + 7088: -74,-10 + 7089: -73,-10 + 7090: -74,-11 + 7091: -73,-11 + 7092: -72,-10 + 7093: -71,-11 + 7094: -70,-12 + 7095: -67,-12 + 7096: -68,-12 + 7097: -69,-12 + 7098: -70,-11 + 7099: -70,-11 + 7100: -69,-11 + 7101: -65,-11 + 7102: -62,-11 + 7103: -63,-12 + 7104: -63,-12 + 7105: -60,-11 + 7106: -60,-12 + 7107: -60,-12 + 7108: -60,-12 + 7109: -60,-10 + 7110: -62,-10 + 7111: -64,-10 + 7112: -65,-10 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 258: -9,1 + 259: -9,0 + 260: -10,0 + 261: -9,1 + 262: -7,2 + 263: -7,1 + 264: -7,-1 + 265: -7,-3 + 266: -6,-4 + 267: -5,-3 + 268: -3,-2 + 269: -2,-2 + 270: -2,-3 + 271: -2,-4 + 272: -3,-5 + 273: -4,-5 + 274: -6,-5 + 275: -10,-4 + 276: -11,-4 + 277: -12,-5 + 278: -13,-5 + 279: -14,-5 + 288: -18,-12 + 289: -17,-11 + 290: -15,-12 + 291: -13,-11 + 292: -13,-12 + 293: -12,-13 + 294: -12,-14 + 295: -13,-14 + 307: 4,-11 + 308: 5,-11 + 309: 5,-12 + 310: -11,5 + 311: -9,6 + 312: -5,5 + 313: -5,4 + 314: -3,4 + 315: 0,6 + 316: 2,7 + 317: 4,5 + 318: 5,4 + 319: 7,5 + 320: 7,5 + 321: 6,5 + 322: 7,5 + 323: 9,6 + 324: 11,5 + 325: 12,5 + 326: 15,5 + 327: 18,6 + 328: 21,5 + 329: 20,4 + 330: 20,5 + 331: 21,6 + 332: 26,5 + 333: 27,6 + 334: 27,7 + 335: 28,9 + 336: 27,11 + 337: 25,12 + 338: 27,14 + 339: 27,15 + 340: 27,17 + 341: 25,17 + 342: 26,19 + 343: 27,19 + 370: 10,-3 + 371: 10,-1 + 372: 10,0 + 373: 4,3 + 374: 4,5 + 375: 1,5 + 376: 0,4 + 377: 2,3 + 378: 2,4 + 379: 2,6 + 380: 2,6 + 381: 1,4 + 382: 1,-2 + 383: 2,-1 + 384: 2,-2 + 385: 1,-3 + 386: 1,-1 + 387: 2,-1 + 388: 2,-2 + 389: 2,-3 + 390: 1,-2 + 391: 2,-1 + 409: -9,9 + 410: -9,8 + 411: -9,8 + 412: -13,12 + 413: -12,12 + 414: -13,13 + 415: -13,9 + 416: -13,9 + 417: -12,9 + 418: -13,10 + 419: -16,14 + 420: -18,12 + 421: -9,12 + 422: -8,12 + 423: -12,13 + 424: -13,15 + 425: -12,16 + 426: -12,16 + 427: -13,15 + 428: -13,17 + 429: -12,18 + 430: -14,17 + 431: -16,17 + 432: -17,17 + 433: -18,16 + 434: -16,18 + 435: -12,18 + 436: -13,17 + 437: -13,18 + 438: -13,20 + 439: -14,20 + 440: -13,19 + 441: -12,21 + 442: -13,22 + 443: -13,22 + 444: -14,22 + 445: -13,22 + 446: -13,22 + 447: -13,24 + 448: -14,25 + 449: -13,24 + 450: -12,23 + 451: -13,25 + 452: -13,27 + 453: -12,27 + 454: -13,27 + 489: -3,33 + 490: -4,34 + 491: -4,32 + 492: -4,32 + 493: -4,30 + 494: -2,30 + 495: -1,30 + 496: 0,31 + 497: -1,30 + 498: -2,29 + 499: -3,29 + 525: -2,20 + 526: -2,21 + 527: -3,25 + 528: -1,25 + 529: 0,25 + 530: 0,24 + 531: -1,23 + 532: -2,24 + 533: -2,25 + 534: -2,24 + 535: -3,22 + 536: -3,21 + 538: -12,31 + 539: -13,31 + 540: -13,31 + 541: -13,29 + 542: -14,29 + 543: -13,27 + 544: -10,9 + 545: -11,8 + 546: -6,-15 + 547: -6,-15 + 548: -8,-13 + 549: 0,-15 + 550: 0,-16 + 551: 0,-15 + 552: 0,-15 + 553: 1,-14 + 554: 2,-14 + 555: 2,-15 + 556: 1,-15 + 557: 1,-15 + 558: 15,-10 + 559: 14,-10 + 560: 14,-9 + 561: 15,-8 + 562: 14,-8 + 563: 13,-8 + 564: 14,-10 + 565: 15,-11 + 566: 15,-11 + 567: 14,-12 + 568: 13,-11 + 569: 13,-10 + 570: 15,-11 + 571: 15,-9 + 572: 13,-8 + 573: 13,-8 + 589: 19,-1 + 590: 20,-1 + 591: 21,-1 + 592: 20,-3 + 593: 20,-3 + 594: 19,-2 + 595: 20,0 + 596: 20,1 + 597: 19,1 + 598: 19,0 + 599: 20,2 + 600: 19,2 + 601: 19,2 + 602: 20,0 + 659: -17,28 + 660: -16,28 + 661: -18,28 + 662: -17,27 + 663: -9,27 + 664: -10,28 + 665: -7,29 + 666: -7,30 + 667: -8,30 + 668: -11,29 + 669: -5,29 + 670: -5,30 + 671: -5,31 + 672: -5,32 + 673: -5,33 + 674: -4,33 + 675: -3,34 + 676: -2,34 + 677: 0,33 + 678: 0,32 + 679: 0,31 + 680: -1,30 + 681: -2,29 + 682: -3,29 + 683: -4,30 + 684: -4,30 + 685: -5,30 + 686: -9,29 + 687: -8,29 + 688: -8,28 + 689: -9,28 + 690: -9,29 + 691: -8,29 + 692: -8,28 + 755: -45,-8 + 756: -46,-7 + 757: -44,-8 + 758: -44,-8 + 759: -44,-7 + 760: -45,-7 + 795: -41,4 + 796: -41,5 + 797: -42,3 + 798: -41,1 + 799: -41,0 + 800: -42,1 + 801: -42,5 + 802: -41,6 + 803: -38,6 + 804: -35,5 + 805: -34,5 + 806: -34,3 + 807: -33,2 + 808: -32,4 + 809: -33,5 + 810: -35,5 + 811: -34,4 + 812: -33,1 + 813: -33,1 + 814: -34,1 + 815: -35,3 + 816: -36,5 + 817: -37,5 + 818: -37,7 + 819: -35,7 + 820: -35,7 + 821: -37,7 + 822: -38,7 + 823: -35,6 + 824: -32,5 + 825: -31,5 + 826: -33,6 + 827: -33,6 + 828: -36,6 + 829: -37,4 + 830: -37,3 + 831: -38,3 + 832: -39,2 + 833: -38,0 + 834: -37,2 + 835: -39,2 + 836: -38,0 + 837: -37,0 + 838: -37,1 + 839: -38,1 + 877: -29,5 + 878: -30,5 + 879: -30,4 + 880: -27,5 + 881: -27,6 + 882: -28,6 + 883: -27,5 + 884: -24,4 + 885: -21,5 + 886: -20,5 + 887: -22,6 + 888: -21,5 + 889: -17,4 + 890: -16,5 + 891: -16,6 + 892: -18,6 + 893: -19,6 + 894: -22,6 + 895: -25,5 + 896: -27,5 + 897: -24,4 + 898: -21,4 + 899: -17,4 + 900: -17,5 + 901: -20,6 + 902: -23,6 + 903: -25,6 + 904: -28,5 + 905: -29,5 + 906: -30,4 + 907: -27,4 + 908: -21,4 + 909: -19,4 + 910: -17,5 + 911: -20,6 + 912: -26,5 + 913: -29,5 + 914: -30,5 + 915: -19,6 + 916: -20,7 + 917: -21,7 + 918: -21,7 + 919: -18,4 + 920: -18,3 + 921: -16,3 + 922: -17,3 + 923: -18,3 + 1237: -38,9 + 1238: -39,11 + 1239: -39,11 + 1240: -38,12 + 1241: -38,14 + 1242: -38,13 + 1243: -37,15 + 1244: -38,16 + 1245: -39,16 + 1246: -39,15 + 1247: -37,15 + 1248: -38,16 + 1249: -38,17 + 1250: -39,17 + 1251: -38,17 + 1252: -37,19 + 1253: -38,21 + 1254: -39,20 + 1255: -38,21 + 1256: -39,21 + 1257: -40,21 + 1258: -38,21 + 1259: -37,23 + 1260: -37,25 + 1261: -38,22 + 1262: -38,21 + 1263: -37,23 + 1264: -38,26 + 1265: -39,26 + 1266: -38,28 + 1267: -37,30 + 1268: -38,32 + 1269: -38,33 + 1270: -39,32 + 1271: -39,31 + 1272: -39,32 + 1273: -42,32 + 1274: -43,31 + 1275: -44,33 + 1276: -45,33 + 1277: -44,31 + 1278: -43,31 + 1279: -40,32 + 1280: -36,33 + 1281: -33,33 + 1282: -30,32 + 1283: -31,33 + 1284: -31,33 + 1285: -27,32 + 1286: -27,33 + 1287: -29,33 + 1288: -24,33 + 1289: -22,33 + 1290: -23,32 + 1291: -22,32 + 1292: -21,32 + 1293: -23,31 + 1294: -22,32 + 1295: -19,33 + 1296: -16,32 + 1297: -16,31 + 1298: -17,32 + 1299: -16,33 + 1300: -18,33 + 1301: -21,33 + 1302: -25,33 + 1303: -26,32 + 1304: -24,27 + 1305: -23,26 + 1306: -24,27 + 1307: -27,28 + 1308: -26,27 + 1309: -24,33 + 1310: -27,34 + 1311: -30,33 + 1312: -32,33 + 1313: -33,33 + 1314: -36,33 + 1315: -39,32 + 1316: -41,32 + 1317: -43,32 + 1318: -45,32 + 1319: -49,33 + 1320: -50,32 + 1321: -49,31 + 1322: -48,32 + 1323: -47,31 + 1324: -47,31 + 1325: -47,32 + 1326: -49,33 + 1327: -52,33 + 1328: -55,33 + 1329: -57,32 + 1330: -57,31 + 1331: -55,33 + 1332: -54,32 + 1333: -56,32 + 1334: -58,31 + 1335: -58,30 + 1336: -59,28 + 1337: -58,27 + 1338: -57,27 + 1339: -59,26 + 1340: -59,23 + 1341: -57,22 + 1342: -57,24 + 1343: -59,24 + 1344: -59,23 + 1345: -59,21 + 1346: -59,19 + 1347: -59,16 + 1348: -58,14 + 1349: -57,14 + 1350: -57,16 + 1351: -58,16 + 1352: -59,14 + 1353: -54,18 + 1354: -55,18 + 1355: -54,20 + 1356: -55,20 + 1357: -54,18 + 1358: -53,18 + 1359: -53,20 + 1360: -54,20 + 1361: -58,15 + 1362: -53,21 + 1363: -53,21 + 1364: -55,21 + 1365: -55,21 + 1366: -53,20 + 1367: -53,21 + 1368: -59,15 + 1369: -58,13 + 1370: -58,11 + 1371: -58,8 + 1372: -58,9 + 1373: -59,10 + 1374: -57,11 + 1375: -57,6 + 1376: -58,5 + 1377: -59,6 + 1378: -62,5 + 1379: -63,4 + 1380: -63,4 + 1381: -64,4 + 1382: -66,4 + 1383: -66,4 + 1384: -62,6 + 1385: -61,7 + 1386: -64,6 + 1387: -68,6 + 1388: -71,5 + 1389: -71,4 + 1390: -73,4 + 1391: -74,6 + 1392: -74,6 + 1393: -75,6 + 1394: -76,5 + 1395: -76,4 + 1396: -75,5 + 1397: -59,1 + 1398: -59,1 + 1399: -58,2 + 1400: -57,1 + 1401: -57,0 + 1402: -58,-1 + 1403: -58,-3 + 1404: -57,-4 + 1405: -58,-5 + 1406: -59,-5 + 1407: -59,-7 + 1408: -58,-10 + 1409: -58,-7 + 1410: -58,-5 + 1411: -59,-5 + 1412: -59,-8 + 1413: -57,-9 + 1414: -58,-10 + 1415: -58,-12 + 1416: -50,4 + 1417: -50,4 + 1418: -51,4 + 1419: -49,3 + 1420: -45,6 + 1421: -46,5 + 1422: -47,4 + 1423: -46,4 + 1424: -45,4 + 1425: -48,6 + 1426: -41,8 + 1427: -41,8 + 1428: -42,9 + 1429: -43,10 + 1430: -43,10 + 1431: -43,11 + 1432: -42,11 + 1433: -41,11 + 1434: -41,11 + 1435: -43,10 + 1436: -42,9 + 1437: -43,8 + 1438: -41,9 + 1439: -42,10 + 1440: -41,9 + 1441: -52,12 + 1448: -54,28 + 1449: -55,28 + 1450: -54,28 + 1451: -52,28 + 1452: -52,28 + 1453: -49,28 + 1454: -49,29 + 1455: -52,29 + 1456: -55,28 + 1595: -75,4 + 1596: -76,4 + 1597: -76,5 + 1996: -8,42 + 1997: -9,43 + 1998: -9,40 + 1999: -7,40 + 2000: -7,43 + 2001: -9,41 + 2002: -9,39 + 2003: -6,40 + 2004: -7,43 + 2005: -8,44 + 2006: -10,42 + 2007: -8,39 + 2008: -6,41 + 2489: -40,-8 + 2490: -40,-7 + 2491: -41,-6 + 2492: -41,-6 + 2493: -39,-6 + 2494: -41,-5 + 2495: -42,-4 + 2496: -42,-6 + 2497: -42,-4 + 2498: -41,-3 + 2499: -40,-2 + 2500: -38,-3 + 2501: -39,-3 + 2502: -39,-4 + 2503: -40,-2 + 2504: -41,-4 + 2505: -40,-4 + 2506: -39,-3 + 2507: -41,-2 + 2508: -41,-3 + 2509: -39,-3 + 2510: -38,-4 + 2511: -39,-6 + 2512: -36,-8 + 2513: -35,-8 + 2514: -36,-8 + 2515: -35,-7 + 2516: -33,-8 + 2517: -33,-8 + 2518: -35,-8 + 2519: -34,-8 + 2520: -34,-9 + 2521: -34,-10 + 2522: -35,-10 + 2523: -34,-10 + 2524: -34,-11 + 2525: -33,-11 + 2526: -32,-9 + 2527: -34,-8 + 2528: -37,-7 + 2529: -38,-7 + 2530: -38,-8 + 2531: -37,-8 + 2532: -39,-7 + 2533: -39,-8 + 2534: -39,-8 + 2535: -40,-5 + 2536: -40,-6 + 2537: -39,-7 + 2538: -38,-5 + 2539: -40,-6 + 2982: 7,12 + 2983: 6,12 + 2984: 7,11 + 2985: 10,12 + 2986: 11,12 + 2987: 11,11 + 2988: 9,12 + 2989: 8,12 + 2990: 11,12 + 2991: 10,13 + 2992: 7,12 + 2993: 10,13 + 2994: 10,15 + 2995: 8,16 + 2996: 8,16 + 2997: 10,16 + 2998: 8,16 + 2999: 6,16 + 3000: 8,16 + 3001: 10,16 + 3002: 10,17 + 3003: 8,16 + 3004: 8,17 + 3005: 7,17 + 3006: 7,17 + 3007: 9,20 + 3008: 10,20 + 3009: 12,20 + 3010: 12,20 + 3011: 11,20 + 3012: 11,18 + 3013: 11,16 + 3014: 10,15 + 3015: 11,15 + 3016: 11,15 + 3017: 10,14 + 3018: 10,14 + 3019: 11,14 + 3020: 8,15 + 3021: 8,16 + 3022: 7,16 + 3023: 9,16 + 3024: 9,16 + 3025: 3,16 + 3026: 0,17 + 3027: -1,16 + 3028: -2,15 + 3029: -2,15 + 3030: -2,15 + 3031: -2,17 + 3032: -1,17 + 3033: 2,16 + 3034: 3,16 + 3035: 3,15 + 3036: 2,16 + 3037: 0,15 + 3038: 0,15 + 3039: 1,15 + 3040: 3,14 + 3041: 4,14 + 3042: 4,15 + 3043: 4,16 + 3044: 2,16 + 3045: -1,15 + 3046: 4,20 + 3047: 3,21 + 3048: 2,21 + 3049: 2,22 + 3050: 3,22 + 3051: 4,22 + 3052: 3,23 + 3053: 2,23 + 3054: 2,25 + 3055: 3,26 + 3056: 4,26 + 3057: 4,25 + 3058: 3,26 + 3059: 2,27 + 3060: 5,28 + 3061: 5,29 + 3062: 4,29 + 3063: 3,29 + 3064: 2,29 + 3065: 4,29 + 3066: 5,30 + 3067: 3,30 + 3068: 3,30 + 3069: 4,30 + 3070: 2,32 + 3071: 2,31 + 3072: 3,32 + 3073: 3,34 + 3074: 3,34 + 3075: 4,33 + 3076: 4,33 + 3077: 6,25 + 3078: 6,25 + 3079: 6,24 + 3080: 7,23 + 3081: 9,23 + 3082: 8,24 + 3083: 8,23 + 3084: 10,22 + 3085: 10,22 + 3086: 7,23 + 3087: 5,23 + 3088: 9,24 + 3089: 9,25 + 3090: 8,24 + 3091: 12,29 + 3092: 11,29 + 3093: 9,29 + 3094: 8,28 + 3095: 10,28 + 3096: 9,29 + 3097: 7,29 + 3098: 10,28 + 3099: 12,29 + 3100: 11,31 + 3101: 9,31 + 3102: 7,30 + 3103: 8,29 + 3104: 12,28 + 3105: 12,29 + 3106: 6,34 + 3107: 9,34 + 3108: 9,34 + 3109: 12,34 + 3110: 12,35 + 3111: 12,36 + 3112: 7,36 + 3113: 6,37 + 3114: 6,37 + 3115: 12,36 + 3116: 12,37 + 3117: 12,36 + 3118: 11,34 + 3119: 9,34 + 3120: 9,33 + 3121: 11,33 + 3122: 12,33 + 3123: 3,36 + 3124: 4,36 + 3125: 4,38 + 3126: 2,40 + 3127: 0,39 + 3128: -1,38 + 3129: 0,36 + 3130: 2,39 + 3131: 0,40 + 3132: 0,38 + 3133: -1,37 + 3134: 0,36 + 3321: -2,10 + 3322: -2,10 + 3323: -3,9 + 3324: -1,8 + 3325: 0,8 + 3326: 1,8 + 3327: 1,10 + 3328: 0,10 + 3329: -2,10 + 3330: 0,9 + 3331: 1,9 + 3332: 0,9 + 3333: -3,8 + 3661: -65,54 + 3662: -66,55 + 3663: -65,54 + 3664: -64,53 + 3665: -63,52 + 3666: -62,55 + 3667: -65,55 + 3668: -66,54 + 3669: -64,51 + 3670: -60,50 + 3671: -60,50 + 3672: -61,51 + 3673: -63,51 + 3674: -61,51 + 3675: -62,52 + 3676: -63,53 + 3677: -63,53 + 3678: -61,52 + 3679: -60,52 + 3680: -60,53 + 3681: -62,53 + 3682: -61,54 + 3683: -61,55 + 3684: -61,55 + 3685: -64,55 + 3686: -65,54 + 3687: -65,53 + 3688: -63,51 + 3689: -61,51 + 3690: -57,54 + 3691: -57,53 + 3692: -57,54 + 3693: -57,54 + 3694: -58,53 + 3695: -57,55 + 3696: -58,57 + 3697: -57,58 + 3698: -55,57 + 3699: -53,57 + 3707: -53,58 + 3708: -56,58 + 3709: -59,58 + 3710: -58,56 + 3711: -58,55 + 3712: -56,54 + 3713: -52,54 + 3714: -51,54 + 3715: -52,54 + 3716: -52,57 + 3717: -54,57 + 3718: -56,56 + 3719: -57,55 + 3720: -55,54 + 3721: -55,55 + 3722: -56,56 + 3723: -56,55 + 3724: -55,55 + 3725: -53,55 + 3726: -47,55 + 3727: -47,55 + 3728: -47,54 + 3729: -47,54 + 3730: -49,55 + 3731: -49,55 + 3732: -49,50 + 3733: -47,51 + 3734: -47,50 + 3735: -47,50 + 3736: -47,51 + 3737: -49,57 + 3738: -49,57 + 3739: -48,60 + 3740: -49,61 + 3741: -49,60 + 3742: -47,58 + 3743: -47,58 + 3744: -48,58 + 3745: -49,62 + 3746: -49,61 + 3747: -48,58 + 3748: -47,61 + 3749: -47,62 + 3750: -43,63 + 3751: -44,62 + 3752: -44,62 + 3753: -44,64 + 3754: -43,64 + 3755: -43,63 + 3756: -43,62 + 3757: -42,61 + 3758: -42,64 + 3759: -43,65 + 3760: -44,64 + 3761: -44,63 + 3762: -48,65 + 3763: -47,65 + 3764: -48,65 + 3765: -46,64 + 3766: -48,64 + 3767: -49,64 + 3768: -51,64 + 3769: -53,65 + 3770: -45,64 + 3771: -46,65 + 3772: -46,65 + 3773: -46,64 + 3774: -52,64 + 3775: -52,64 + 3776: -53,63 + 3777: -52,61 + 3778: -51,60 + 3779: -52,61 + 3780: -54,60 + 3781: -57,60 + 3782: -60,61 + 3783: -62,60 + 3784: -62,60 + 3785: -59,60 + 3786: -57,61 + 3787: -55,61 + 3788: -55,60 + 3789: -59,61 + 3790: -60,61 + 3791: -57,60 + 3792: -55,60 + 3793: -56,61 + 3794: -57,61 + 3795: -59,61 + 3796: -53,82 + 3797: -53,83 + 3798: -53,83 + 3799: -52,86 + 3800: -51,88 + 3801: -52,90 + 3802: -53,90 + 3803: -53,89 + 3804: -53,87 + 3805: -53,85 + 3806: -52,84 + 3807: -51,83 + 3808: -50,86 + 3809: -51,88 + 3810: -52,88 + 3811: -52,87 + 3812: -52,85 + 3813: -52,84 + 3814: -55,84 + 3815: -56,84 + 3816: -56,83 + 3817: -55,82 + 3818: -55,83 + 3819: -55,83 + 3820: -56,83 + 3821: -56,84 + 3822: -55,86 + 3823: -56,86 + 3824: -56,88 + 3825: -55,89 + 3826: -55,90 + 3827: -56,89 + 3828: -54,89 + 3829: -56,89 + 3830: -57,89 + 3831: -57,86 + 3832: -58,88 + 3833: -59,89 + 3834: -60,89 + 3835: -61,88 + 3836: -61,87 + 3837: -60,86 + 3838: -61,89 + 3839: -62,88 + 3840: -62,86 + 3841: -61,85 + 3842: -61,87 + 3843: -62,89 + 3844: -62,87 + 3845: -62,85 + 3846: -60,85 + 3847: -61,86 + 3848: -62,85 + 3849: -61,83 + 3850: -60,84 + 3851: -59,84 + 3852: -61,83 + 3853: -61,83 + 3854: -62,83 + 3855: -59,83 + 3856: -57,84 + 3857: -58,84 + 3858: -58,86 + 3859: -58,85 + 3860: -58,84 + 3861: -58,87 + 3862: -60,88 + 3863: -61,87 + 3864: -61,89 + 3865: -62,89 + 3866: -62,88 + 4075: -58,52 + 4076: -58,50 + 4077: -58,49 + 4078: -57,50 + 4079: -58,51 + 4080: -58,50 + 4081: -55,51 + 4082: -55,50 + 4083: -54,49 + 4084: -55,50 + 4085: -55,52 + 4086: -55,52 + 4087: -52,51 + 4088: -52,51 + 4089: -52,49 + 4090: -52,49 + 4091: -51,50 + 4092: -51,51 + 4093: -52,50 + 4094: -51,49 + 4095: -52,52 + 4452: -61,45 + 4453: -63,45 + 4454: -64,45 + 4455: -65,44 + 4456: -62,44 + 4457: -61,45 + 4458: -63,45 + 4459: -65,45 + 4460: -64,44 + 4461: -62,44 + 4462: -63,45 + 4463: -64,45 + 4464: -63,44 + 4465: -63,44 + 4466: -63,42 + 4467: -64,42 + 4468: -62,42 + 4469: -61,41 + 4470: -61,40 + 4471: -61,38 + 4472: -62,38 + 4473: -62,39 + 4474: -62,40 + 4475: -63,39 + 4476: -63,38 + 4477: -65,39 + 4478: -65,39 + 4479: -65,38 + 4480: -65,41 + 4481: -64,42 + 4482: -63,42 + 4483: -62,42 + 4524: -71,49 + 4525: -73,49 + 4526: -73,48 + 4527: -73,47 + 4528: -72,47 + 4529: -70,48 + 4530: -71,49 + 4531: -71,47 + 4532: -69,47 + 4533: -69,47 + 4534: -70,48 + 4535: -70,49 + 4536: -72,48 + 4537: -72,48 + 4574: -67,50 + 4575: -67,49 + 4576: -68,49 + 4627: -71,54 + 4628: -71,55 + 4629: -71,54 + 4630: -70,53 + 4631: -70,51 + 4632: -70,51 + 4633: -72,52 + 4634: -75,51 + 4635: -73,51 + 4636: -70,54 + 4637: -71,56 + 4638: -71,55 + 4639: -71,54 + 4640: -71,53 + 4702: -60,31 + 4703: -61,33 + 4704: -62,33 + 4705: -62,32 + 4706: -61,31 + 4707: -62,31 + 4708: -62,34 + 4709: -60,33 + 4710: -60,33 + 4711: -60,32 + 4712: -60,31 + 4713: -62,31 + 4718: -82,29 + 4719: -82,30 + 4720: -82,32 + 4721: -83,33 + 4722: -83,31 + 4723: -83,29 + 4724: -83,29 + 4725: -82,33 + 4726: -81,33 + 4727: -79,33 + 4728: -77,33 + 4729: -77,33 + 4730: -79,32 + 4731: -81,32 + 4732: -82,31 + 4733: -81,30 + 4734: -78,30 + 4735: -79,32 + 4736: -80,30 + 4737: -79,29 + 4738: -77,29 + 4739: -79,32 + 4740: -81,31 + 4741: -80,29 + 4742: -78,29 + 4743: -74,35 + 4744: -75,34 + 4745: -74,30 + 4746: -75,31 + 4747: -75,31 + 4748: -75,27 + 4749: -74,25 + 4750: -75,25 + 4751: -74,26 + 4752: -75,25 + 4753: -76,25 + 4754: -75,23 + 4755: -75,25 + 4756: -76,25 + 4757: -77,25 + 4758: -75,24 + 4759: -74,24 + 4760: -75,26 + 4761: -76,26 + 4762: -75,23 + 4763: -74,21 + 4764: -75,20 + 4765: -75,19 + 4766: -75,22 + 4767: -75,23 + 4768: -75,20 + 4769: -75,16 + 4770: -75,15 + 4771: -74,16 + 4772: -74,16 + 4773: -75,17 + 4774: -73,17 + 4775: -72,17 + 4776: -71,17 + 4777: -73,16 + 4778: -74,16 + 4779: -73,15 + 4780: -72,16 + 4781: -75,16 + 4782: -72,15 + 4783: -70,17 + 4784: -71,17 + 4785: -69,16 + 4786: -69,17 + 4787: -71,16 + 4804: -78,21 + 4805: -77,21 + 4806: -77,22 + 4807: -78,22 + 4808: -77,20 + 4809: -79,19 + 4810: -81,20 + 4811: -82,20 + 4812: -83,19 + 4813: -81,18 + 4814: -79,18 + 4815: -77,19 + 4816: -77,19 + 4817: -86,20 + 4818: -86,20 + 4819: -86,21 + 4820: -86,24 + 4821: -86,24 + 4822: -86,23 + 4823: -86,25 + 4824: -86,27 + 4825: -84,27 + 4826: -81,27 + 4827: -80,26 + 4828: -80,25 + 4829: -80,23 + 4830: -81,23 + 4831: -82,22 + 4832: -82,23 + 4833: -82,23 + 4834: -81,23 + 4835: -79,26 + 4836: -80,26 + 4837: -80,25 + 4838: -79,24 + 4839: -79,24 + 4840: -71,31 + 4841: -72,31 + 4842: -71,31 + 4843: -70,31 + 4844: -70,30 + 4845: -70,28 + 4846: -70,28 + 5031: -64,13 + 5032: -65,14 + 5033: -64,11 + 5034: -64,10 + 5035: -64,12 + 5036: -65,13 + 5037: -65,13 + 5038: -65,11 + 5039: -61,12 + 5040: -62,14 + 5041: -62,11 + 5042: -62,10 + 5043: -61,10 + 5044: -62,13 + 7229: -45,-10 + 7230: -46,-10 + 7231: -46,-11 + 7232: -46,-12 + 7233: -45,-13 + 7234: -45,-14 + 7235: -46,-14 + 7236: -43,-14 + 7237: -40,-13 + 7238: -40,-10 + 7239: -41,-9 + 7240: -41,-9 + 7241: -39,-10 + 7242: -38,-11 + 7243: -38,-11 + 7244: -40,-11 + 7245: -41,-11 + 7246: -41,-12 + 7247: -41,-13 + 7248: -42,-12 + 7249: -42,-11 + 7250: -43,-11 + 7251: -40,-13 + 7252: -38,-12 + 7253: -40,-11 + 7254: -42,-12 + 7255: -41,-13 + 7256: -40,-12 + 7257: -42,-13 + 7258: -43,-14 + 7259: -43,-13 + 7260: -42,-14 + 7261: -44,-14 + 7262: -44,-14 + 7263: -44,-14 + 7264: -41,-14 + 7265: -39,-14 + 7266: -38,-14 + 7267: -38,-14 + 7268: -39,-13 + 7269: -38,-12 + 7270: -38,-10 + 7271: -38,-10 + 7272: -39,-11 + 7273: -39,-14 + 7274: -39,-14 + 7275: -41,-14 + 7279: -43,1 + 7280: -43,1 + 7289: -43,66 + 7290: -43,66 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtLight + decals: + 2587: -17,26 + 2588: -16,26 + 2589: -16,26 + 2590: -17,25 + 2591: -18,24 + 2592: -18,23 + 2593: -17,22 + 2594: -16,22 + 2595: -17,23 + 2596: -17,22 + 2597: -16,23 + 2598: -17,26 + 2599: -18,26 + 2600: -18,25 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 1598: -29,54 + 1599: -29,54 + 1600: -30,54 + 1601: -30,53 + 1602: -30,55 + 1603: -28,53 + 1604: -28,52 + 1605: -27,54 + 1606: -27,55 + 1607: -28,55 + 1608: -29,54 + 1609: -29,53 + 1610: -30,53 + 1611: -28,53 + 1612: -27,54 + 1613: -26,54 + 1614: -27,55 + 1615: -29,55 + 1635: -31,47 + 1636: -37,40 + 1690: -35,38 + 1691: -35,38 + 1692: -37,40 + 1693: -38,38 + 1694: -37,36 + 1695: -36,36 + 1696: -37,39 + 1697: -39,39 + 1698: -41,38 + 1699: -41,36 + 1700: -39,37 + 1701: -42,39 + 1702: -44,38 + 1703: -42,35 + 1704: -43,36 + 1705: -44,36 + 1706: -45,36 + 1707: -44,39 + 1708: -38,35 + 1709: -36,35 + 1710: -36,37 + 1711: -39,35 + 1712: -39,34 + 1928: -50,36 + 1929: -50,45 + 1930: -53,46 + 1931: -55,46 + 2624: 12,32 + 2625: 13,34 + 2626: 13,30 + 2627: 12,17 + 6906: -1,42 + 6907: 0,42 + 6908: 1,43 + 6909: 1,42 + 6910: 2,42 + 6911: 2,43 + 6912: 3,44 + 6913: 1,43 + 6914: 1,43 + 6915: 3,44 + 6916: 3,44 + 6917: 4,43 + 6918: 4,42 + 6919: 3,42 + 6920: 2,42 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 280: -13,-5 + 281: -14,-4 + 282: -14,-3 + 283: -12,-3 + 284: -11,-3 + 285: -14,-15 + 286: -15,-14 + 287: -17,-13 + 344: 27,20 + 345: 26,19 + 346: 26,17 + 347: 27,16 + 348: 27,15 + 349: 27,12 + 350: 26,8 + 351: 26,6 + 352: 23,5 + 353: 22,4 + 354: 20,5 + 355: 18,5 + 356: 15,6 + 357: 14,5 + 358: 11,6 + 359: 9,6 + 360: 11,3 + 361: 11,2 + 362: 10,-1 + 363: 11,-3 + 364: 11,-1 + 365: 10,-2 + 366: 10,-3 + 367: 11,1 + 368: 11,1 + 369: 11,-3 + 761: -42,1 + 762: -42,1 + 763: -41,3 + 764: -40,4 + 765: -38,4 + 766: -35,5 + 767: -38,5 + 768: -41,5 + 769: -40,5 + 770: -36,5 + 771: -34,5 + 772: -34,3 + 773: -34,1 + 774: -33,1 + 775: -32,4 + 776: -34,6 + 777: -35,6 + 778: -38,6 + 779: -42,6 + 780: -42,5 + 781: -40,3 + 782: -36,4 + 783: -33,4 + 784: -34,1 + 785: -33,1 + 786: -33,3 + 787: -34,4 + 788: -35,2 + 789: -33,1 + 790: -34,4 + 791: -40,5 + 792: -40,4 + 793: -41,3 + 794: -41,3 + 858: -34,0 + 859: -34,0 + 860: -35,0 + 861: -35,1 + 862: -34,2 + 863: -34,3 + 864: -36,4 + 865: -38,5 + 866: -39,5 + 867: -37,5 + 868: -36,6 + 869: -36,6 + 870: -38,7 + 871: -39,7 + 872: -40,6 + 873: -40,5 + 874: -41,4 + 875: -41,3 + 876: -42,2 + 924: -31,4 + 925: -30,5 + 926: -28,5 + 927: -26,5 + 928: -25,4 + 929: -24,4 + 930: -24,5 + 931: -27,6 + 932: -30,6 + 933: -31,5 + 934: -28,5 + 935: -24,6 + 936: -22,6 + 937: -21,5 + 938: -21,5 + 939: -22,4 + 940: -21,4 + 941: -18,5 + 942: -18,5 + 943: -21,5 + 944: -21,5 + 945: -20,5 + 946: -19,5 + 947: -20,4 + 948: -21,4 + 949: -23,5 + 950: -23,5 + 951: -25,4 + 952: -27,4 + 953: -29,4 + 954: -30,5 + 955: -30,6 + 956: -32,6 + 957: -31,6 + 958: -25,6 + 959: -19,6 + 960: -17,6 + 961: -16,5 + 962: -17,4 + 963: -15,4 + 964: -15,4 + 965: -18,4 + 966: -41,2 + 967: -42,2 + 968: -41,1 + 969: -41,0 + 970: -41,0 + 971: -42,4 + 972: -42,4 + 973: -29,6 + 1457: -39,10 + 1458: -38,10 + 1459: -38,10 + 1460: -39,10 + 1461: -39,9 + 1462: -38,12 + 1463: -37,15 + 1464: -37,15 + 1465: -39,15 + 1466: -38,13 + 1467: -37,18 + 1468: -38,21 + 1469: -38,22 + 1470: -39,21 + 1471: -37,21 + 1472: -37,26 + 1473: -38,28 + 1474: -39,28 + 1475: -38,28 + 1476: -38,32 + 1477: -37,33 + 1478: -34,32 + 1479: -32,32 + 1480: -32,31 + 1481: -30,32 + 1482: -28,33 + 1483: -26,33 + 1484: -23,33 + 1485: -22,32 + 1486: -19,32 + 1487: -17,33 + 1488: -17,32 + 1489: -17,31 + 1490: -18,32 + 1491: -20,32 + 1492: -23,27 + 1493: -23,26 + 1494: -26,28 + 1495: -28,29 + 1496: -26,27 + 1497: -17,29 + 1498: -18,28 + 1499: -18,27 + 1500: -32,33 + 1501: -35,33 + 1502: -37,32 + 1503: -34,32 + 1504: -33,33 + 1505: -36,33 + 1506: -35,27 + 1507: -35,25 + 1508: -35,23 + 1509: -33,24 + 1510: -35,27 + 1511: -36,27 + 1512: -36,25 + 1513: -35,24 + 1514: -32,26 + 1515: -37,32 + 1516: -40,33 + 1517: -43,32 + 1518: -44,30 + 1519: -43,32 + 1520: -45,33 + 1521: -48,33 + 1522: -52,32 + 1523: -53,31 + 1524: -55,32 + 1525: -56,33 + 1526: -58,33 + 1527: -59,31 + 1528: -58,28 + 1529: -57,27 + 1530: -59,28 + 1531: -59,29 + 1532: -58,25 + 1533: -58,23 + 1534: -59,22 + 1535: -59,21 + 1536: -59,19 + 1537: -58,17 + 1538: -57,15 + 1539: -57,13 + 1540: -59,13 + 1541: -59,11 + 1542: -58,8 + 1543: -58,7 + 1544: -58,5 + 1545: -57,5 + 1546: -58,6 + 1547: -61,6 + 1548: -62,5 + 1549: -63,5 + 1550: -65,5 + 1551: -66,5 + 1552: -64,4 + 1553: -63,5 + 1554: -65,6 + 1555: -70,6 + 1556: -72,5 + 1557: -72,4 + 1558: -73,6 + 1559: -76,6 + 1560: -75,5 + 1561: -71,6 + 1562: -66,6 + 1563: -62,5 + 1564: -58,3 + 1565: -58,3 + 1566: -59,2 + 1567: -59,1 + 1568: -57,-1 + 1569: -57,2 + 1570: -58,1 + 1571: -58,-2 + 1572: -58,-4 + 1573: -59,-6 + 1574: -58,-9 + 1575: -57,-7 + 1576: -58,-10 + 1577: -58,-10 + 1578: -59,-11 + 1579: -57,-11 + 1580: -58,-11 + 1581: -59,-11 + 1582: -57,-11 + 1583: -55,5 + 1584: -55,5 + 1585: -54,6 + 1586: -55,6 + 1587: -56,5 + 1588: -44,5 + 1589: -46,5 + 1590: -48,4 + 1591: -38,20 + 1592: -37,19 + 1593: -37,17 + 1594: -37,20 + 2009: -7,42 + 2010: -9,44 + 2011: -10,43 + 2012: -10,41 + 2013: -10,39 + 2014: -6,39 + 2015: -6,42 + 2016: -7,44 + 2017: -8,42 + 2018: -7,40 + 2019: -7,41 + 2020: 4,49 + 2021: 2,50 + 2022: 2,52 + 2023: 2,51 + 2024: 4,49 + 2025: 4,51 + 2026: 3,50 + 2027: 11,51 + 2028: 10,51 + 2029: 10,50 + 2030: 11,52 + 2031: 10,51 + 2032: 11,50 + 2033: 10,46 + 2034: 11,45 + 2035: 11,46 + 2036: 10,45 + 2037: 12,44 + 2038: 11,46 + 2039: 10,46 + 2040: 9,46 + 2041: 9,43 + 2042: 9,42 + 2043: 11,42 + 2044: 12,43 + 2045: 10,43 + 2046: 11,42 + 2047: 12,42 + 2048: 10,42 + 2049: 11,43 + 2050: 18,38 + 2051: 21,39 + 2052: 22,38 + 2053: 23,37 + 2054: 20,38 + 2055: 17,38 + 2056: 19,37 + 2057: 22,39 + 2058: 22,40 + 2059: 19,42 + 2060: 17,42 + 2061: 16,40 + 2062: 18,39 + 2063: 20,40 + 2064: 19,42 + 2065: 18,42 + 2066: 18,39 + 2067: 21,42 + 2068: 22,43 + 2069: 23,41 + 2070: 22,40 + 2071: 22,42 + 2072: 20,42 + 2073: 19,40 + 2074: 18,41 + 2075: 18,42 + 2076: 17,40 + 2077: 18,38 + 2078: -21,38 + 2079: -22,37 + 2080: -23,37 + 2081: -22,40 + 2082: -22,42 + 2083: -24,42 + 2084: -22,40 + 2085: -21,39 + 2086: -21,41 + 2087: -21,42 + 2088: -20,40 + 2089: -21,39 + 2090: -21,39 + 2091: -22,42 + 2092: -23,42 + 2282: -22,60 + 2283: -20,59 + 2284: -21,60 + 2285: -20,61 + 2286: -19,63 + 2287: -18,63 + 2288: -18,62 + 2289: -19,62 + 2290: -17,62 + 2291: -15,62 + 2292: -16,63 + 2293: -17,65 + 2294: -16,65 + 2295: -18,66 + 2296: -19,65 + 2297: -18,64 + 2298: -17,65 + 2299: -15,66 + 2300: -14,65 + 2301: -14,64 + 2302: -20,64 + 2303: -21,63 + 2304: -21,62 + 2305: -20,62 + 2306: -21,61 + 2307: -22,59 + 2308: -22,59 + 2309: -13,59 + 2310: -12,59 + 2311: -14,59 + 2312: -14,60 + 2313: -14,62 + 2314: -17,61 + 2315: -19,59 + 2316: -19,57 + 2317: -19,56 + 2318: -19,54 + 2319: -16,53 + 2320: -15,55 + 2321: -15,56 + 2322: -15,53 + 2323: -16,53 + 2324: -16,41 + 2325: -17,41 + 2326: -18,39 + 2327: -17,37 + 2328: -16,38 + 2329: -17,41 + 2330: -17,42 + 2331: -18,40 + 2332: -16,40 + 2333: -16,43 + 2334: -17,45 + 2335: -18,43 + 2336: -18,40 + 2540: -40,-7 + 2541: -39,-6 + 2542: -39,-7 + 2543: -39,-8 + 2544: -41,-6 + 2545: -41,-5 + 2546: -41,-4 + 2547: -42,-6 + 2548: -42,-4 + 2549: -40,-2 + 2550: -38,-3 + 2551: -39,-5 + 2552: -42,-2 + 2553: -42,-2 + 2554: -41,-2 + 2555: -40,-3 + 2556: -35,-8 + 2557: -32,-9 + 2558: -33,-6 + 2559: -32,-6 + 2560: -32,-6 + 2561: -32,-10 + 2562: -33,-10 + 2563: -34,-10 + 2564: -32,-10 + 2565: -34,-10 + 2566: -37,-8 + 2567: -36,-8 + 2568: -35,-8 + 2569: -40,-7 + 2570: -40,-7 + 3135: 6,13 + 3136: 6,12 + 3137: 8,11 + 3138: 10,11 + 3139: 11,13 + 3140: 9,15 + 3141: 7,15 + 3142: 7,15 + 3143: 10,17 + 3144: 9,19 + 3145: 9,19 + 3146: 9,18 + 3147: 9,19 + 3148: 11,20 + 3149: 11,20 + 3150: 11,17 + 3151: 11,15 + 3152: 10,14 + 3153: 9,14 + 3154: 10,12 + 3155: 8,14 + 3156: 8,14 + 3157: 2,15 + 3158: 2,16 + 3159: -1,16 + 3160: -2,16 + 3161: 0,14 + 3162: 3,15 + 3163: 3,16 + 3164: 0,16 + 3165: 0,16 + 3166: 2,15 + 3167: 1,16 + 3168: 0,16 + 3169: -2,17 + 3170: -2,16 + 3171: -2,15 + 3172: 1,14 + 3173: 3,14 + 3174: 4,15 + 3175: 4,17 + 3176: 3,17 + 3177: 1,17 + 3178: 2,20 + 3179: 1,19 + 3180: 4,20 + 3181: 3,20 + 3182: 7,20 + 3183: 6,19 + 3184: 7,19 + 3185: 7,20 + 3186: 6,20 + 3187: 7,19 + 3188: 1,20 + 3189: 1,20 + 3190: 3,20 + 3191: 3,21 + 3192: 2,21 + 3193: 2,22 + 3194: 2,23 + 3195: 2,25 + 3196: 2,25 + 3197: 2,24 + 3198: 3,23 + 3199: 4,22 + 3200: 4,21 + 3201: 4,24 + 3202: 3,25 + 3203: 3,24 + 3204: 4,24 + 3205: 4,25 + 3206: 3,26 + 3207: 2,26 + 3208: 4,27 + 3209: 4,29 + 3210: 2,28 + 3211: 4,28 + 3212: 5,28 + 3213: 4,29 + 3214: 4,28 + 3215: 3,29 + 3216: 2,30 + 3217: 3,31 + 3218: 3,32 + 3219: 3,34 + 3220: 2,33 + 3221: 4,31 + 3222: 4,32 + 3223: 3,32 + 3224: 2,32 + 3225: 6,25 + 3226: 6,25 + 3227: 6,24 + 3228: 6,23 + 3229: 8,22 + 3230: 9,22 + 3231: 10,22 + 3232: 9,23 + 3233: 8,23 + 3234: 9,24 + 3235: 9,25 + 3236: 7,25 + 3237: 9,25 + 3238: 8,26 + 3239: 7,26 + 3240: 10,26 + 3241: 9,26 + 3242: 9,26 + 3243: 12,28 + 3244: 10,29 + 3245: 9,29 + 3246: 8,28 + 3247: 7,28 + 3248: 7,30 + 3249: 8,31 + 3250: 11,31 + 3251: 12,31 + 3252: 12,30 + 3253: 11,30 + 3254: 9,31 + 3255: 7,30 + 3256: 8,29 + 3257: 12,28 + 3258: 6,34 + 3259: 6,34 + 3260: 7,33 + 3261: 9,34 + 3262: 10,34 + 3263: 11,34 + 3264: 12,33 + 3265: 12,36 + 3266: 11,37 + 3267: 10,36 + 3268: 10,36 + 3269: 8,36 + 3270: 7,37 + 3271: 6,35 + 3272: 6,34 + 3273: 11,34 + 3274: 11,36 + 3275: 9,37 + 3276: -1,36 + 3277: 0,36 + 3278: 0,37 + 3279: -1,39 + 3280: 1,40 + 3281: 3,40 + 3282: 4,37 + 3283: 4,36 + 3284: 3,36 + 3285: 2,37 + 3286: 2,38 + 3287: 0,37 + 3288: 1,36 + 3289: 0,37 + 3290: -1,36 + 3291: 0,38 + 3292: -1,39 + 3293: 1,40 + 3294: 2,39 + 3334: -3,10 + 3335: -3,9 + 3336: -2,8 + 3337: 0,9 + 3338: 1,9 + 3339: 1,8 + 3340: 0,10 + 3341: -2,10 + 3342: -3,10 + 3867: -66,54 + 3868: -66,55 + 3869: -66,55 + 3870: -66,53 + 3871: -65,52 + 3872: -63,52 + 3873: -62,53 + 3874: -61,51 + 3875: -62,51 + 3876: -62,50 + 3877: -62,52 + 3878: -62,53 + 3879: -64,54 + 3880: -65,53 + 3881: -64,53 + 3882: -60,54 + 3883: -61,55 + 3884: -62,55 + 3885: -64,55 + 3886: -59,54 + 3887: -60,52 + 3888: -60,51 + 3889: -62,51 + 3890: -61,52 + 3891: -61,52 + 3892: -58,53 + 3893: -59,55 + 3894: -59,55 + 3895: -58,53 + 3896: -58,53 + 3897: -55,53 + 3898: -51,53 + 3899: -51,54 + 3900: -52,54 + 3901: -55,54 + 3902: -57,54 + 3903: -52,55 + 3904: -53,56 + 3905: -53,56 + 3906: -53,55 + 3907: -53,55 + 3908: -56,56 + 3909: -57,56 + 3910: -57,55 + 3911: -58,57 + 3912: -57,58 + 3913: -53,58 + 3914: -51,57 + 3915: -52,56 + 3916: -56,56 + 3917: -56,55 + 3918: -47,54 + 3919: -48,55 + 3920: -49,55 + 3921: -49,55 + 3922: -48,52 + 3923: -49,50 + 3924: -49,49 + 3925: -47,50 + 3926: -47,52 + 3927: -47,52 + 3928: -49,58 + 3929: -49,58 + 3930: -48,57 + 3931: -47,59 + 3932: -47,61 + 3933: -48,61 + 3934: -49,61 + 3935: -49,59 + 3936: -48,58 + 3937: -44,62 + 3938: -44,61 + 3939: -43,63 + 3940: -44,65 + 3941: -44,64 + 3942: -43,62 + 3943: -42,61 + 3944: -42,64 + 3945: -43,65 + 3946: -48,64 + 3947: -48,65 + 3948: -50,65 + 3949: -52,65 + 3950: -52,64 + 3951: -53,63 + 3952: -53,65 + 3953: -52,64 + 3954: -51,61 + 3955: -52,62 + 3956: -53,64 + 3957: -53,64 + 3958: -53,62 + 3959: -53,60 + 3960: -51,60 + 3961: -51,61 + 3962: -53,60 + 3963: -52,60 + 3964: -52,60 + 3965: -56,62 + 3966: -58,61 + 3967: -57,61 + 3968: -55,60 + 3969: -58,60 + 3970: -61,61 + 3971: -62,60 + 3972: -59,60 + 3973: -58,60 + 3974: -60,61 + 3975: -62,61 + 3976: -57,61 + 3977: -53,61 + 3978: -52,61 + 3979: -52,61 + 3980: -53,83 + 3981: -53,82 + 3982: -52,83 + 3983: -51,84 + 3984: -51,83 + 3985: -51,84 + 3986: -52,84 + 3987: -53,85 + 3988: -52,85 + 3989: -51,86 + 3990: -51,89 + 3991: -52,90 + 3992: -53,89 + 3993: -53,88 + 3994: -52,87 + 3995: -51,87 + 3996: -51,87 + 3997: -51,89 + 3998: -51,90 + 3999: -51,89 + 4000: -55,86 + 4001: -56,86 + 4002: -57,86 + 4003: -59,86 + 4004: -55,89 + 4005: -55,90 + 4006: -56,89 + 4007: -56,88 + 4008: -56,88 + 4009: -58,89 + 4010: -60,89 + 4011: -61,88 + 4012: -62,86 + 4013: -62,85 + 4014: -62,84 + 4015: -62,83 + 4016: -62,83 + 4017: -62,86 + 4018: -62,88 + 4019: -61,89 + 4020: -60,88 + 4021: -60,86 + 4022: -61,85 + 4023: -60,84 + 4024: -58,83 + 4025: -58,83 + 4026: -58,87 + 4027: -59,89 + 4028: -61,88 + 4029: -60,87 + 4030: -60,87 + 4031: -55,83 + 4032: -56,84 + 4033: -56,83 + 4034: -55,82 + 4035: -55,84 + 4036: -56,83 + 4037: -56,82 + 4038: -53,82 + 4039: -53,83 + 4040: -51,84 + 4041: -52,85 + 4042: -53,84 + 4043: -52,83 + 4044: -52,85 + 4045: -52,87 + 4046: -52,88 + 4047: -53,86 + 4048: -53,85 + 4049: -57,49 + 4050: -58,49 + 4051: -57,50 + 4052: -58,52 + 4053: -58,49 + 4054: -57,50 + 4055: -58,52 + 4056: -58,51 + 4057: -57,50 + 4058: -57,50 + 4059: -58,51 + 4060: -58,49 + 4061: -55,51 + 4062: -55,52 + 4063: -55,50 + 4064: -54,50 + 4065: -54,51 + 4066: -55,50 + 4067: -54,49 + 4068: -52,52 + 4069: -52,51 + 4070: -52,50 + 4071: -51,49 + 4072: -51,51 + 4073: -52,50 + 4074: -52,49 + 4484: -62,45 + 4485: -64,45 + 4486: -65,45 + 4487: -64,44 + 4488: -62,44 + 4489: -61,45 + 4490: -62,45 + 4491: -63,44 + 4492: -62,40 + 4493: -61,42 + 4494: -61,42 + 4495: -61,40 + 4496: -61,39 + 4497: -61,38 + 4498: -62,38 + 4499: -63,38 + 4500: -64,38 + 4501: -65,39 + 4502: -64,40 + 4503: -65,39 + 4504: -65,38 + 4505: -64,39 + 4506: -62,40 + 4507: -62,41 + 4508: -64,42 + 4509: -64,42 + 4510: -63,40 + 4538: -72,48 + 4539: -73,49 + 4540: -73,48 + 4541: -71,47 + 4542: -70,48 + 4543: -70,49 + 4544: -70,48 + 4545: -69,47 + 4546: -69,49 + 4547: -67,49 + 4548: -68,49 + 4549: -69,49 + 4550: -67,50 + 4551: -67,49 + 4552: -66,48 + 4553: -66,47 + 4554: -66,49 + 4555: -68,49 + 4556: -67,48 + 4557: -67,47 + 4558: -66,47 + 4559: -67,46 + 4560: -66,48 + 4561: -65,48 + 4562: -65,47 + 4563: -67,49 + 4564: -67,50 + 4641: -71,51 + 4642: -73,52 + 4643: -74,52 + 4644: -71,51 + 4645: -70,52 + 4646: -71,55 + 4647: -72,56 + 4648: -70,55 + 4649: -71,56 + 4650: -76,54 + 4651: -77,54 + 4652: -78,54 + 4653: -78,53 + 4654: -78,54 + 4655: -76,54 + 4714: -60,31 + 4715: -62,32 + 4716: -62,33 + 4717: -62,32 + 4847: -72,31 + 4848: -71,31 + 4849: -70,31 + 4850: -70,29 + 4851: -71,30 + 4852: -72,30 + 4853: -72,28 + 4854: -67,31 + 4855: -68,31 + 4856: -68,29 + 4857: -68,27 + 4858: -68,26 + 4859: -68,26 + 4860: -67,25 + 4861: -65,26 + 4862: -66,27 + 4863: -67,27 + 4864: -66,26 + 4865: -64,25 + 4866: -64,27 + 4867: -66,28 + 4868: -67,30 + 4869: -67,30 + 4870: -62,32 + 4871: -62,33 + 4872: -61,32 + 4873: -61,32 + 4874: -62,34 + 4875: -64,30 + 4876: -64,32 + 4877: -64,34 + 4878: -65,34 + 4879: -65,33 + 4880: -64,32 + 4881: -64,33 + 4882: -65,34 + 4883: -67,34 + 4884: -68,34 + 4885: -69,33 + 4886: -69,33 + 4887: -72,34 + 4888: -73,33 + 4889: -74,35 + 4890: -75,35 + 4891: -75,34 + 4892: -74,30 + 4893: -74,30 + 4894: -74,30 + 4895: -75,27 + 4896: -75,25 + 4897: -74,26 + 4898: -74,26 + 4899: -76,26 + 4900: -76,25 + 4901: -75,24 + 4902: -74,24 + 4903: -77,25 + 4904: -77,25 + 4905: -76,24 + 4906: -74,22 + 4907: -74,22 + 4908: -74,20 + 4909: -75,20 + 4910: -75,22 + 4911: -75,17 + 4912: -75,16 + 4913: -74,16 + 4914: -72,16 + 4915: -71,17 + 4916: -73,17 + 4917: -74,16 + 4918: -74,16 + 4919: -71,20 + 4920: -71,20 + 4921: -68,20 + 4922: -66,20 + 4923: -65,22 + 4924: -67,22 + 4925: -79,26 + 4926: -80,26 + 4927: -81,25 + 4928: -80,23 + 4929: -80,23 + 4930: -83,24 + 4931: -82,25 + 4932: -83,25 + 4933: -84,25 + 4934: -84,24 + 4935: -82,26 + 4936: -85,26 + 4937: -86,26 + 4938: -86,26 + 4939: -87,25 + 4940: -85,24 + 4941: -83,24 + 4942: -83,26 + 4943: -84,26 + 4944: -83,25 + 4945: -82,23 + 4946: -84,23 + 4947: -86,24 + 4948: -83,23 + 4949: -82,23 + 4950: -81,22 + 4951: -81,26 + 4952: -82,27 + 4953: -84,27 + 4954: -85,27 + 4955: -85,29 + 4956: -86,29 + 4957: -85,30 + 4958: -86,30 + 4959: -85,20 + 4960: -86,21 + 4961: -86,20 + 4962: -83,19 + 4963: -82,18 + 4964: -80,19 + 4965: -81,20 + 4966: -80,29 + 4967: -82,30 + 4968: -82,30 + 4969: -80,29 + 4970: -80,29 + 4971: -81,32 + 4972: -82,33 + 4973: -81,33 + 4974: -80,32 + 4975: -77,33 + 5045: -64,12 + 5046: -65,14 + 5047: -65,13 + 5048: -65,11 + 5049: -65,10 + 5050: -63,10 + 5051: -62,12 + 5052: -62,13 + 5053: -63,12 + 5054: -62,10 + 5055: -61,10 + 5056: -62,13 + 5057: -63,14 + 5058: -64,13 + 5059: -64,14 + 5060: -65,14 + 5061: -65,13 + 7203: -44,-11 + 7204: -44,-11 + 7205: -45,-11 + 7206: -45,-12 + 7207: -46,-13 + 7208: -46,-13 + 7209: -46,-14 + 7210: -43,-14 + 7211: -40,-14 + 7212: -38,-13 + 7213: -40,-13 + 7214: -40,-13 + 7215: -38,-14 + 7216: -38,-13 + 7217: -39,-11 + 7218: -40,-11 + 7219: -41,-10 + 7220: -40,-12 + 7221: -42,-12 + 7222: -43,-12 + 7223: -44,-12 + 7224: -45,-11 + 7225: -38,-10 + 7226: -39,-10 + 7227: -38,-10 + 7228: -38,-11 + 7281: -43,1 + 7282: -43,1 + 7283: -43,1 + 7291: -43,66 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtMedium + decals: + 2601: -17,25 + 2602: -17,26 + 2603: -18,25 + 2604: -17,23 + 2605: -16,23 + 2606: -18,23 + - node: + color: '#FFFFFFFF' + id: FlowersBROne + decals: + 6879: -20.998013,33.948563 + - node: + color: '#FFFFFFFF' + id: Flowersbr1 + decals: + 985: -34.770348,20.675009 + 2342: -13.913108,42.25173 + 2343: -12.522483,38.829857 + - node: + color: '#FFFFFFFF' + id: Flowersbr2 + decals: + 977: -31.035973,18.003134 + - node: + color: '#FFFFFFFF' + id: Flowersbr3 + decals: + 982: -33.082848,20.175009 + - node: + color: '#FFFFFFFF' + id: Flowerspv1 + decals: + 2341: -13.334983,39.50173 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 986: -33.910973,21.581259 + - node: + color: '#FFFFFFFF' + id: Flowersy1 + decals: + 981: -34.192223,19.378134 + - node: + color: '#FFFFFFFF' + id: Flowersy2 + decals: + 978: -33.379723,16.550009 + 2338: -12.163108,42.62673 + 2339: -13.631858,41.18923 + 6878: -21.904263,33.948563 + - node: + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 2340: -12.397483,40.892357 + - node: + color: '#334E6DC8' + id: FullTileOverlayGreyscale + decals: + 2188: -17,65 + 2189: -14,64 + 2190: -20,64 + 2191: -21,61 + 2192: -21,60 + 2193: -13,61 + 2194: -13,60 + - node: + color: '#52B4E996' + id: FullTileOverlayGreyscale + decals: + 6819: 1,23 + 6820: 6,28 + 6821: 6,29 + 6822: 1,29 + 6823: 1,30 + 6824: 1,33 + 6825: 3,35 + 6826: 5,33 + 6827: 5,25 + 6828: 5,24 + 6829: 5,19 + - node: + color: '#52B4E9FF' + id: FullTileOverlayGreyscale + decals: + 109: -1,28 + - node: + color: '#9FED5896' + id: FullTileOverlayGreyscale + decals: + 6830: 8,19 + - node: + color: '#A4610696' + id: FullTileOverlayGreyscale + decals: + 7276: -43,1 + - node: + color: '#A46106FF' + id: FullTileOverlayGreyscale + decals: + 702: -40,0 + 703: -40,1 + 704: -39,2 + 705: -38,2 + 706: -37,2 + 707: -36,1 + 708: -36,0 + - node: + color: '#DE3A3A96' + id: FullTileOverlayGreyscale + decals: + 3411: -53,59 + 3412: -51,59 + 3413: -46,64 + 3414: -46,65 + 3415: -45,64 + 3440: -50,55 + 3441: -50,53 + 3442: -59,53 + 3443: -59,55 + 7284: -43,66 + - node: + color: '#FFFFFFFF' + id: Grassa2 + decals: + 2344: -13.600608,37.69732 + 7314: 19,39 + - node: + color: '#FFFFFFFF' + id: Grassa4 + decals: + 974: -33.176598,15.425009 + 975: -34.785973,16.596884 + 976: -33.801598,18.065634 + - node: + color: '#FFFFFFFF' + id: Grassa5 + decals: + 984: -34.801598,15.284384 + 7318: 23,41 + - node: + color: '#FFFFFFFF' + id: Grassb1 + decals: + 7317: 21,39 + - node: + color: '#FFFFFFFF' + id: Grassb5 + decals: + 983: -32.160973,18.596884 + 2345: -13.788108,40.38482 + 2349: -11.991233,43.725113 + 7315: 17,39 + 7316: 17,40 + 7319: 18,37 + - node: + color: '#FFFFFFFF' + id: Grassc1 + decals: + 979: -34.910973,18.518759 + 2337: -13.616233,43.18923 + 6880: -20.044888,33.964188 + - node: + color: '#FFFFFFFF' + id: Grassc3 + decals: + 980: -32.395348,19.096884 + - node: + color: '#FFFFFFFF' + id: Grassc4 + decals: + 2346: -12.381858,37.369194 + - node: + color: '#FFFFFFFF' + id: Grassd1 + decals: + 2347: -13.881858,35.712944 + 2348: -12.897483,36.35357 + - node: + color: '#FFFFFFFF' + id: Grasse2 + decals: + 2350: -13.834983,36.936462 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + decals: + 2777: 8,31 + 2778: 9,31 + 2779: 10,31 + 2780: 11,31 + 2781: 3,34 + 2782: 7,26 + 2783: 8,26 + 2784: 9,26 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale + decals: + 2651: 7,17 + 2652: 8,17 + 2653: 10,20 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale + decals: + 3298: -2,10 + 3299: -1,10 + 3300: 0,10 + 3355: -62,61 + 3356: -61,61 + 3357: -60,61 + 3358: -59,61 + 3359: -58,61 + 3360: -56,61 + 3361: -57,61 + 3362: -55,61 + 3363: -54,61 + 3364: -52,65 + 3365: -51,65 + 3366: -50,65 + 3367: -49,65 + 3368: -48,65 + 3369: -47,65 + 3468: -65,55 + 3469: -64,55 + 3470: -63,55 + 3471: -62,55 + 3472: -61,55 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale + decals: + 4179: -66,34 + 4180: -67,34 + 4181: -68,34 + 4182: -69,34 + 4183: -72,35 + 4184: -73,35 + 4185: -74,35 + 4186: -76,26 + 4198: -65,34 + 4201: -71,35 + 4231: -86,27 + 4232: -85,27 + 4233: -84,27 + 4234: -83,27 + 4235: -82,27 + 4236: -81,27 + 4413: -61,33 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + decals: + 2768: 3,19 + 2769: 2,19 + 2770: 8,28 + 2771: 9,28 + 2772: 10,28 + 2773: 11,28 + 2774: 7,22 + 2775: 8,22 + 2776: 9,22 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 + decals: + 3295: -2,8 + 3296: -1,8 + 3297: 0,8 + 3370: -62,60 + 3371: -61,60 + 3372: -60,60 + 3373: -59,60 + 3374: -58,60 + 3375: -57,60 + 3376: -56,60 + 3377: -55,60 + 3378: -53,60 + 3379: -54,60 + 3380: -52,60 + 3381: -50,64 + 3382: -49,64 + 3383: -47,64 + 3384: -48,64 + 3473: -63,50 + 3474: -62,50 + 3475: -61,50 + 3476: -65,52 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale180 + decals: + 4171: -73,33 + 4172: -72,33 + 4173: -71,33 + 4174: -70,33 + 4175: -69,33 + 4176: -68,33 + 4177: -67,33 + 4178: -66,33 + 4187: -76,24 + 4243: -82,22 + 4244: -81,22 + 4245: -84,23 + 4246: -85,23 + 4247: -86,23 + 4410: -61,31 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + decals: + 2728: 6,33 + 2729: 6,34 + 2730: 6,35 + 2731: 6,36 + 2732: 6,37 + 2733: 2,33 + 2734: 2,32 + 2735: 2,31 + 2736: 2,29 + 2737: 2,30 + 2738: 2,28 + 2739: 2,27 + 2740: 2,26 + 2741: 2,25 + 2742: 2,24 + 2743: 2,23 + 2744: 2,22 + 2745: 2,21 + 2746: 6,23 + 2747: 6,24 + 2748: 6,25 + 2749: 7,29 + 2750: 7,30 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale270 + decals: + 2646: 6,14 + 2647: 6,15 + 2648: 6,16 + 2649: 9,18 + 2650: 9,19 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + decals: + 3306: -3,9 + 3388: -53,62 + 3389: -53,63 + 3390: -53,64 + 3481: -66,54 + 3482: -66,53 + 3489: -64,51 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale270 + decals: + 4147: -75,21 + 4148: -75,22 + 4149: -75,23 + 4150: -75,27 + 4151: -75,30 + 4152: -75,31 + 4153: -75,32 + 4154: -75,33 + 4155: -75,34 + 4156: -77,25 + 4193: -75,20 + 4411: -62,32 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + decals: + 2618: 10,25 + 2723: 12,33 + 2724: 12,34 + 2725: 12,35 + 2726: 12,36 + 2727: 12,37 + 2751: 12,30 + 2752: 12,29 + 2753: 10,25 + 2754: 10,24 + 2755: 10,23 + 2756: 4,33 + 2757: 4,32 + 2758: 5,30 + 2759: 5,29 + 2760: 4,27 + 2761: 4,26 + 2762: 4,25 + 2763: 4,23 + 2764: 4,24 + 2765: 4,22 + 2766: 4,21 + 2767: 4,20 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale90 + decals: + 2654: 11,19 + 2655: 11,18 + 2656: 11,17 + 2657: 11,16 + 2658: 11,15 + 2659: 11,14 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + decals: + 3301: 1,9 + 3385: -51,61 + 3386: -51,62 + 3387: -51,63 + 3477: -60,54 + 3478: -60,53 + 3479: -60,52 + 3480: -60,51 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale90 + decals: + 4157: -64,31 + 4158: -64,32 + 4159: -64,33 + 4160: -74,30 + 4161: -74,29 + 4162: -74,28 + 4163: -74,27 + 4164: -74,26 + 4165: -74,25 + 4166: -74,24 + 4167: -74,23 + 4168: -74,22 + 4169: -74,21 + 4170: -74,20 + 4248: -80,23 + 4251: -79,25 + 4412: -60,32 + - node: + color: '#FFFFFFFF' + id: LoadingArea + decals: + 2363: -36,-10 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 2571: -40,-11 + 2572: -40,-7 + - node: + cleanable: True + color: '#FFFFFFFF' + id: MiniTileDarkBox + decals: + 398: -13,1 + - node: + color: '#A46106FF' + id: MiniTileWhiteBox + decals: + 2421: -41,-9 + 2422: -40,-9 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerNe + decals: + 89: 0,34 + - node: + color: '#A46106FF' + id: MiniTileWhiteCornerNe + decals: + 716: -32,-2 + 2411: -38,-10 + 2412: -32,-6 + 2413: -37,-2 + - node: + color: '#EF8941FF' + id: MiniTileWhiteCornerNe + decals: + 116: -1,26 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerNw + decals: + 103: -5,34 + - node: + color: '#A46106FF' + id: MiniTileWhiteCornerNw + decals: + 709: -35,-2 + 2416: -42,-2 + 2417: -46,-10 + - node: + color: '#D4D4D4FF' + id: MiniTileWhiteCornerNw + decals: + 157: -11,30 + - node: + color: '#EF8941FF' + id: MiniTileWhiteCornerNw + decals: + 117: -4,26 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerSe + decals: + 90: 0,29 + - node: + color: '#A46106FF' + id: MiniTileWhiteCornerSe + decals: + 2414: -38,-14 + 2415: -32,-11 + - node: + color: '#EF8941FF' + id: MiniTileWhiteCornerSe + decals: + 118: -1,23 + 149: -2,20 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerSw + decals: + 104: -5,29 + - node: + color: '#A46106FF' + id: MiniTileWhiteCornerSw + decals: + 2418: -42,-8 + 2419: -36,-11 + 7153: -46,-14 + - node: + color: '#52B4E996' + id: MiniTileWhiteInnerNe + decals: + 158: -7,30 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteInnerNe + decals: + 88: -7,30 + 159: -7,30 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteInnerSe + decals: + 87: -7,34 + - node: + color: '#EF8941FF' + id: MiniTileWhiteInnerSe + decals: + 119: -2,23 + - node: + color: '#A46106FF' + id: MiniTileWhiteInnerSw + decals: + 2420: -36,-8 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteLineE + decals: + 84: -7,31 + 85: -7,32 + 86: -7,33 + 95: 0,30 + 96: 0,31 + 97: 0,32 + 98: 0,33 + - node: + color: '#A46106FF' + id: MiniTileWhiteLineE + decals: + 710: -32,-3 + 711: -32,-4 + 2400: -37,-3 + 2401: -37,-4 + 2402: -37,-5 + 2403: -32,-7 + 2404: -32,-7 + 2405: -32,-8 + 2406: -32,-9 + 2407: -32,-10 + 2408: -38,-11 + 2409: -38,-12 + 2410: -38,-13 + - node: + color: '#EF8941FF' + id: MiniTileWhiteLineE + decals: + 110: -1,25 + 111: -1,24 + 145: -2,22 + 146: -2,21 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteLineN + decals: + 99: -1,34 + 100: -2,34 + 101: -3,34 + 102: -4,34 + - node: + color: '#A46106FF' + id: MiniTileWhiteLineN + decals: + 714: -34,-2 + 715: -33,-2 + 2384: -45,-10 + 2385: -44,-10 + 2386: -43,-10 + 2387: -42,-10 + 2388: -42,-10 + 2389: -41,-10 + 2390: -40,-10 + 2391: -40,-10 + 2392: -40,-10 + 2393: -39,-10 + 2394: -34,-6 + 2395: -33,-6 + 2396: -41,-2 + 2397: -40,-2 + 2398: -40,-2 + 2399: -38,-2 + - node: + color: '#D4D4D4FF' + id: MiniTileWhiteLineN + decals: + 153: -10,30 + 154: -9,30 + 155: -8,30 + 156: -7,30 + - node: + color: '#EF8941FF' + id: MiniTileWhiteLineN + decals: + 114: -3,26 + 115: -2,26 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteLineS + decals: + 91: -1,29 + 92: -3,29 + 93: -2,29 + 94: -4,29 + - node: + color: '#A46106FF' + id: MiniTileWhiteLineS + decals: + 2365: -41,-8 + 2366: -40,-8 + 2367: -39,-8 + 2368: -37,-8 + 2369: -38,-8 + 2370: -35,-11 + 2371: -34,-11 + 2372: -33,-11 + 2373: -39,-14 + 2374: -40,-14 + 2375: -41,-14 + 2376: -43,-14 + 2377: -42,-14 + 7154: -45,-14 + 7155: -44,-14 + - node: + color: '#EF8941FF' + id: MiniTileWhiteLineS + decals: + 148: -3,20 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteLineW + decals: + 105: -5,30 + 106: -5,31 + 107: -5,32 + 108: -5,33 + - node: + color: '#A46106FF' + id: MiniTileWhiteLineW + decals: + 712: -35,-4 + 713: -35,-3 + 2378: -42,-7 + 2379: -42,-6 + 2380: -42,-4 + 2381: -42,-3 + 2382: -36,-9 + 2383: -36,-10 + 7156: -46,-13 + 7157: -46,-12 + 7158: -46,-11 + - node: + color: '#D4D4D4FF' + id: MiniTileWhiteLineW + decals: + 150: -11,27 + 151: -11,28 + 152: -11,29 + - node: + color: '#EF8941FF' + id: MiniTileWhiteLineW + decals: + 112: -4,24 + 113: -4,25 + 147: -4,21 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + decals: + 2802: 2,20 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale + decals: + 2660: 9,17 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + decals: + 3391: -53,61 + 3395: -49,62 + 3396: -49,61 + 3397: -49,60 + 3398: -49,58 + 3399: -49,59 + 3400: -49,57 + 3407: -47,62 + 3408: -48,62 + - node: + color: '#EF8941FF' + id: QuarterTileOverlayGreyscale + decals: + 134: -5,19 + 135: -5,20 + 136: -5,25 + 137: -5,26 + 138: -5,27 + 139: -4,27 + 140: -3,27 + 141: -2,27 + 142: -1,27 + 143: -1,27 + 144: 0,27 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + decals: + 4202: -75,26 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + decals: + 2801: 4,28 + - node: + color: '#A46106FF' + id: QuarterTileOverlayGreyscale180 + decals: + 723: -41,0 + 724: -41,1 + 725: -41,2 + 726: -41,3 + 727: -40,3 + 728: -39,3 + 736: -33,0 + 737: -32,0 + 738: -32,1 + 739: -32,2 + 740: -32,3 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale180 + decals: + 3392: -51,64 + 3401: -47,57 + 3402: -47,58 + 3403: -47,59 + 3404: -47,60 + 3405: -47,61 + 3406: -47,62 + 3409: -48,57 + 3410: -49,57 + - node: + color: '#EF8941FF' + id: QuarterTileOverlayGreyscale180 + decals: + 120: 0,22 + 121: -1,22 + 122: -1,21 + 123: -1,20 + 124: -1,19 + 125: -2,19 + 126: -3,19 + 127: -4,19 + 128: -5,19 + 129: 0,23 + 130: 0,24 + 131: 0,25 + 132: 0,26 + 133: 0,27 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale180 + decals: + 4249: -80,24 + - node: + color: '#A46106FF' + id: QuarterTileOverlayGreyscale270 + decals: + 729: -34,0 + 730: -35,0 + 731: -35,1 + 732: -35,2 + 733: -35,3 + 734: -36,3 + 735: -37,3 + 741: -42,0 + 742: -42,1 + 743: -42,2 + 744: -42,3 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale270 + decals: + 3488: -64,52 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale270 + decals: + 4195: -75,24 + 4197: -65,33 + 4242: -83,23 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + decals: + 2800: 4,31 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale90 + decals: + 4199: -70,34 + 4250: -80,26 + - node: + color: '#FFFFFFFF' + id: Remains + decals: + 77: 18.227499,-11.4046755 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Remains + decals: + 2607: -3.964231,22.551708 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale + decals: + 2785: 2,34 + 2786: 7,31 + 2787: 1,20 + 2788: 6,26 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale + decals: + 2661: 6,17 + 2662: 9,20 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale + decals: + 3302: -3,10 + 3393: -53,65 + 3483: -66,55 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale + decals: + 4188: -77,26 + 4194: -75,35 + 4406: -62,33 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 2789: 10,22 + 2790: 12,28 + 2791: 4,19 + 2792: 5,28 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 3303: 1,8 + 3394: -51,60 + 3484: -60,50 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 4190: -64,30 + 4192: -74,19 + 4239: -79,24 + 4240: -80,22 + 4407: -60,31 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 2797: 7,28 + 2798: 1,19 + 2799: 6,22 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 3305: -3,8 + 3486: -66,52 + 3487: -64,50 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 4189: -77,24 + 4191: -75,19 + 4241: -83,22 + 4408: -62,31 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 2793: 5,31 + 2794: 12,31 + 2795: 4,34 + 2796: 10,26 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 2663: 11,20 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 3304: 1,10 + 3485: -60,55 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 4196: -64,34 + 4200: -70,35 + 4237: -80,27 + 4238: -79,26 + 4409: -60,33 + - node: + color: '#601F95FF' + id: Tunnel + decals: + 6923: 11,50 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 2358: 12,43 + 2671: 7,20 + 2706: 1,40 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 2357: 9,43 + 2670: 6,20 + 4128: -79,31 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 2356: 12,42 + 2672: 7,19 + 2714: 11,35 + 4119: -77,34 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 2359: 9,42 + 2673: 6,19 + 2707: -1,36 + 2715: 7,35 + 5947: -23,54 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 2361: 9,40 + 4144: -86,23 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 2360: 11,40 + 4143: -81,23 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 4123: -84,34 + 4145: -86,27 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 4146: -81,27 + 5946: -20,54 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 4: -14,0 + 5: -14,1 + 6: -14,2 + 2711: 1,37 + 2721: 11,36 + 2722: 11,37 + 4120: -77,35 + 4121: -84,33 + 4122: -84,32 + 4129: -86,26 + 4130: -86,24 + 4131: -86,25 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 73: 1,0 + 74: 2,0 + 75: 0,0 + 2351: 11,42 + 2352: 10,42 + 2664: 6,14 + 2665: 7,14 + 2666: 8,14 + 2667: 9,14 + 2668: 10,14 + 2669: 11,14 + 2710: 0,36 + 2718: 8,35 + 2719: 9,35 + 2720: 10,35 + 4113: -83,34 + 4114: -82,34 + 4115: -80,34 + 4116: -81,34 + 4117: -79,34 + 4118: -78,34 + 4136: -85,27 + 4137: -83,27 + 4138: -82,27 + 4139: -84,27 + 5948: -22,54 + 5949: -21,54 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 2708: -1,37 + 2709: -1,39 + 2716: 7,36 + 2717: 7,37 + 4124: -79,30 + 4125: -79,29 + 4140: -81,24 + 4141: -81,25 + 4142: -81,26 + 5950: -23,55 + 5951: -23,56 + 7336: -23,57 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 71: 1,-1 + 72: 2,-1 + 2353: 10,40 + 2354: 10,43 + 2355: 11,43 + 2712: 0,40 + 4126: -78,31 + 4127: -77,31 + 4132: -84,23 + 4133: -83,23 + 4134: -82,23 + 4135: -85,23 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 5509: -35,38 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 5531: -8,58 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNw + decals: + 6172: -34,38 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 5528: -8,61 + 5529: -8,60 + 5530: -8,59 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 5510: -35,37 + 5511: -35,35 + 5512: -35,36 + - node: + cleanable: True + color: '#FFFFFFFF' + id: body + decals: + 2612: 2.8074994,42.80365 + - node: + color: '#790906FF' + id: cyka + decals: + 7321: 19,38 + 7322: -25,-14 + - node: + color: '#B02E26FF' + id: cyka + decals: + 7320: 19,38 + - node: + cleanable: True + color: '#D381C996' + id: safe + decals: + 76: 19,-8 + - node: + color: '#DE3A3A96' + id: shop + decals: + 7325: -27,6 + - node: + color: '#FFFFFFFF' + id: shop + decals: + 7323: -12.9947195,8.064248 + 7324: -13.0103445,16.085691 + - node: + cleanable: True + color: '#A40000FF' + id: splatter + decals: + 2608: 1.6512494,42.225525 + 2609: 3.7762494,43.506775 + 2610: 2.3387494,43.413025 + 2611: 3.9168744,42.038025 + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 65535 + -1,0: + 0: 65535 + -4,-3: + 0: 65535 + -4,-2: + 0: 65535 + -4,-1: + 0: 65535 + -4,-4: + 0: 65535 + -3,-4: + 0: 65535 + -3,-3: + 0: 65535 + -3,-2: + 0: 65535 + -3,-1: + 0: 65535 + -2,-4: + 0: 65535 + -2,-3: + 0: 65535 + -2,-2: + 0: 64511 + 1: 1024 + -2,-1: + 0: 65535 + -1,-4: + 0: 65535 + -1,-3: + 0: 65535 + -1,-2: + 0: 65535 + -4,0: + 0: 65535 + -4,1: + 0: 65535 + -3,0: + 0: 65535 + -3,1: + 0: 65535 + -2,0: + 0: 65535 + -2,1: + 0: 65535 + -1,1: + 0: 65535 + 0,-4: + 0: 65535 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 0,-1: + 0: 65535 + 1,-4: + 0: 63359 + 2: 2176 + 1,-3: + 0: 65535 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-4: + 2: 65520 + 0: 15 + 2,-3: + 0: 65535 + 2,-2: + 0: 65535 + 2,-1: + 0: 65535 + 3,-4: + 0: 63324 + 3,-3: + 0: 65535 + 3,-2: + 0: 65535 + 3,-1: + 0: 65535 + 0,0: + 0: 65535 + 0,1: + 0: 65535 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 2,0: + 0: 65535 + 2,1: + 0: 65535 + 3,0: + 0: 65535 + 3,1: + 0: 65535 + -3,-5: + 0: 63504 + -2,-5: + 0: 65525 + -1,-5: + 0: 64836 + 0,-5: + 0: 65524 + 1,-5: + 0: 64426 + -5,-3: + 0: 65535 + -5,-2: + 0: 65535 + -5,-1: + 0: 65535 + -5,0: + 0: 65535 + -5,1: + 0: 65535 + 4,-4: + 0: 63997 + 4,-3: + 0: 65535 + 4,-2: + 0: 65535 + 4,-1: + 0: 65535 + 5,-4: + 0: 4351 + 5,-3: + 0: 65439 + 5,-2: + 0: 65535 + 5,-1: + 0: 65535 + 6,-3: + 0: 65295 + 6,-2: + 0: 65535 + 6,-1: + 0: 65535 + 7,-2: + 0: 30583 + 7,-1: + 0: 63359 + 4,0: + 0: 65535 + 4,1: + 0: 65535 + 5,0: + 0: 65535 + 5,1: + 0: 65535 + 6,0: + 0: 65535 + 6,1: + 0: 65535 + 6,2: + 0: 65535 + 7,0: + 0: 65535 + 7,1: + 0: 63487 + 7,2: + 0: 65535 + -4,2: + 0: 65535 + -4,3: + 0: 65535 + -3,2: + 0: 65535 + -3,3: + 0: 65535 + -2,2: + 0: 65535 + -2,3: + 0: 65535 + -1,2: + 0: 65535 + -1,3: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 65535 + 1,2: + 0: 65535 + 1,3: + 0: 65535 + 2,2: + 0: 65535 + 2,3: + 0: 65535 + 3,2: + 0: 65535 + 3,3: + 0: 65535 + -8,-3: + 0: 65535 + -8,-2: + 0: 65535 + -7,-3: + 0: 65535 + -7,-2: + 0: 65535 + -7,-1: + 0: 65535 + -6,-3: + 0: 65535 + -6,-2: + 0: 65535 + -6,-1: + 0: 65535 + -7,0: + 0: 65535 + -7,1: + 0: 65535 + -6,0: + 0: 65535 + -6,1: + 0: 65535 + -5,2: + 0: 65535 + -5,3: + 0: 65535 + 6,-4: + 0: 255 + 7,-4: + 0: 21847 + 7,-3: + 0: 63447 + 4,2: + 0: 65535 + 4,3: + 0: 65535 + 5,2: + 0: 65535 + 5,3: + 0: 65535 + 6,3: + 0: 65535 + 7,3: + 0: 65535 + 4,-5: + 0: 53754 + 4,-6: + 0: 41700 + 5,-7: + 0: 62704 + 5,-6: + 0: 62207 + 5,-5: + 0: 61951 + 6,-7: + 0: 61564 + 6,-6: + 0: 61695 + 6,-5: + 0: 61695 + 7,-8: + 0: 22272 + 7,-7: + 0: 21847 + 7,-6: + 0: 21847 + 7,-5: + 0: 21847 + 4,4: + 0: 65535 + 4,5: + 0: 65535 + 4,6: + 0: 65535 + 4,7: + 0: 65535 + 5,4: + 0: 65535 + 5,5: + 0: 65535 + 5,6: + 0: 65535 + 5,7: + 0: 65535 + 6,4: + 0: 65535 + 6,5: + 0: 65535 + 6,6: + 0: 65535 + 6,7: + 0: 24575 + 7,4: + 0: 65535 + 7,5: + 0: 63351 + 7,6: + 0: 32631 + 8,1: + 0: 4096 + 8,2: + 0: 4369 + 8,3: + 0: 4096 + 8,4: + 0: 4369 + 0,4: + 0: 65535 + 0,5: + 0: 65535 + 0,6: + 0: 65535 + 0,7: + 0: 65535 + 1,4: + 0: 65535 + 1,5: + 0: 65535 + 1,6: + 0: 65535 + 1,7: + 0: 65535 + 2,4: + 0: 65535 + 2,5: + 0: 65535 + 2,6: + 0: 65535 + 2,7: + 0: 65535 + 3,4: + 0: 65535 + 3,5: + 0: 65535 + 3,6: + 0: 65535 + 3,7: + 0: 65535 + -4,4: + 0: 65535 + -4,5: + 0: 65535 + -4,6: + 0: 65535 + -4,7: + 0: 65535 + -3,4: + 0: 65535 + -3,5: + 0: 65535 + -3,6: + 0: 65535 + -3,7: + 0: 65535 + -2,4: + 0: 65535 + -2,5: + 0: 65535 + -2,6: + 0: 65535 + -2,7: + 0: 65535 + -1,4: + 0: 65535 + -1,5: + 0: 65535 + -1,6: + 0: 65535 + -1,7: + 0: 65535 + 0,8: + 0: 65535 + 0,9: + 0: 65535 + 0,10: + 0: 65535 + 0,11: + 0: 65535 + 1,8: + 0: 65535 + 1,9: + 0: 65535 + 1,10: + 0: 65535 + 1,11: + 0: 65535 + 2,8: + 0: 65535 + 2,9: + 0: 65535 + 2,10: + 0: 65535 + 3,8: + 0: 65535 + 3,9: + 0: 65535 + 3,10: + 0: 65535 + -4,8: + 0: 65535 + -3,8: + 0: 65535 + -2,8: + 0: 65535 + -1,8: + 0: 65535 + -1,9: + 0: 65535 + -1,10: + 0: 65535 + -1,11: + 0: 65535 + 4,8: + 0: 65535 + 4,9: + 0: 65535 + 4,10: + 0: 65535 + 5,8: + 0: 65535 + 5,9: + 0: 65535 + 5,10: + 0: 65535 + 6,8: + 0: 30039 + 6,9: + 0: 4437 + 6,10: + 0: 21877 + -6,8: + 0: 65535 + -5,8: + 0: 65535 + -5,4: + 0: 65535 + -5,-4: + 0: 65535 + -4,-5: + 0: 62704 + -6,7: + 0: 65535 + -5,7: + 0: 65535 + -5,6: + 0: 65535 + -5,-5: + 0: 36736 + -8,1: + 0: 65535 + -8,2: + 0: 65535 + -8,3: + 0: 65535 + -7,2: + 0: 65535 + -7,3: + 0: 65535 + -6,2: + 0: 65535 + -6,3: + 0: 65535 + -8,8: + 0: 65535 + -7,8: + 0: 65535 + -8,4: + 0: 65535 + -8,5: + 0: 65535 + -8,6: + 0: 65535 + -8,7: + 0: 65535 + -7,4: + 0: 65535 + -7,5: + 0: 65535 + -7,6: + 0: 65535 + -7,7: + 0: 65535 + -6,4: + 0: 65535 + -6,5: + 0: 65535 + -6,6: + 0: 65535 + -5,5: + 0: 65535 + -10,1: + 0: 65535 + -10,2: + 0: 65535 + -10,3: + 0: 65535 + -9,1: + 0: 65535 + -9,2: + 0: 65535 + -9,3: + 0: 65535 + -10,4: + 0: 65535 + -10,5: + 0: 65535 + -10,6: + 0: 65535 + -10,7: + 0: 65535 + -9,5: + 0: 65535 + -9,6: + 0: 65535 + -9,7: + 0: 65535 + -10,8: + 0: 65535 + -9,8: + 0: 65535 + -8,-4: + 0: 65328 + -8,-1: + 0: 65535 + -7,-4: + 0: 65504 + -6,-4: + 0: 65534 + -8,0: + 0: 65535 + -4,9: + 0: 65535 + -4,10: + 0: 65535 + -6,9: + 0: 65535 + -6,10: + 0: 65535 + -5,9: + 0: 65535 + -5,10: + 0: 65535 + -12,0: + 0: 65535 + -12,1: + 0: 65535 + -11,0: + 0: 65535 + -11,1: + 0: 65535 + -10,0: + 0: 65535 + -9,0: + 0: 65535 + -9,4: + 0: 65535 + -12,-3: + 0: 65535 + -12,-2: + 0: 65535 + -12,-1: + 0: 65535 + -11,-3: + 0: 65535 + -11,-2: + 0: 65535 + -11,-1: + 0: 65535 + -11,-4: + 0: 65535 + -10,-4: + 0: 65523 + -10,-3: + 0: 65535 + -10,-2: + 0: 65535 + -10,-1: + 0: 65535 + -9,-4: + 0: 65520 + -9,-3: + 0: 65535 + -9,-2: + 0: 65535 + -9,-1: + 0: 65535 + -13,-3: + 0: 65535 + -13,-2: + 0: 65535 + -13,-1: + 0: 65535 + -13,0: + 0: 65535 + -13,1: + 0: 65535 + -12,2: + 0: 65535 + -12,3: + 0: 65535 + -11,2: + 0: 65535 + -11,3: + 0: 65535 + -12,4: + 0: 65535 + -12,5: + 0: 65535 + -12,6: + 0: 65535 + -12,7: + 0: 65535 + -11,4: + 0: 65535 + -11,5: + 0: 65535 + -11,6: + 0: 65535 + -11,7: + 0: 65535 + -12,8: + 0: 65535 + -11,8: + 0: 65535 + -16,-3: + 0: 65535 + -16,-2: + 0: 28943 + -16,-1: + 0: 30583 + -15,-3: + 0: 65535 + -15,-2: + 0: 65535 + -15,-1: + 0: 65535 + -14,-3: + 0: 65535 + -14,-2: + 0: 65535 + -14,-1: + 0: 65535 + -16,0: + 0: 61463 + -16,1: + 0: 65535 + -15,0: + 0: 65535 + -15,1: + 0: 65535 + -15,2: + 0: 65535 + -15,3: + 0: 65535 + -14,0: + 0: 65535 + -14,1: + 0: 65535 + -14,2: + 0: 65535 + -14,3: + 0: 65535 + -13,2: + 0: 65535 + -13,3: + 0: 65535 + -15,4: + 0: 65535 + -15,5: + 0: 65535 + -15,6: + 0: 65535 + -15,7: + 0: 65535 + -14,4: + 0: 65535 + -14,5: + 0: 65535 + -14,6: + 0: 65535 + -14,7: + 0: 65535 + -13,4: + 0: 65535 + -13,5: + 0: 65535 + -13,6: + 0: 65535 + -13,7: + 0: 65535 + -15,8: + 0: 65535 + -14,8: + 0: 65535 + -13,8: + 0: 65535 + -20,-3: + 0: 65535 + -20,-1: + 0: 65535 + -20,-2: + 0: 59407 + -19,-3: + 0: 65535 + -19,-2: + 0: 65519 + -19,-1: + 0: 65535 + -18,-3: + 0: 65535 + -18,-2: + 0: 65295 + -18,-1: + 0: 65535 + -17,-3: + 0: 65535 + -17,-2: + 0: 65407 + -17,-1: + 0: 65535 + -20,0: + 0: 53390 + -20,1: + 0: 56799 + -19,0: + 0: 65279 + -19,1: + 0: 65535 + -18,0: + 0: 61695 + -18,1: + 0: 65535 + -17,0: + 0: 63487 + -17,1: + 0: 65535 + 2,11: + 0: 65535 + 3,11: + 0: 65535 + -4,11: + 0: 65535 + -3,9: + 0: 65535 + -3,10: + 0: 65535 + -3,11: + 0: 65535 + -2,9: + 0: 65535 + -2,10: + 0: 65535 + -2,11: + 0: 65535 + 4,11: + 0: 65535 + 5,11: + 0: 3983 + 6,11: + 0: 327 + -6,11: + 0: 65535 + -5,11: + 0: 65535 + -7,13: + 0: 65535 + -7,14: + 0: 8191 + -6,12: + 0: 65535 + -6,13: + 0: 65407 + 3: 128 + -6,14: + 0: 65535 + -6,15: + 0: 65535 + -5,12: + 0: 65535 + -5,13: + 0: 65535 + -5,14: + 0: 65535 + -5,15: + 0: 65535 + -4,12: + 0: 65535 + -4,13: + 0: 65535 + -4,14: + 0: 65535 + -4,15: + 0: 65535 + -3,12: + 0: 65535 + -3,13: + 0: 65535 + -3,14: + 0: 65535 + -3,15: + 0: 65535 + -2,12: + 0: 63487 + -2,13: + 0: 65527 + -2,14: + 0: 65535 + -2,15: + 0: 65535 + -1,12: + 0: 65535 + -1,13: + 0: 16383 + -1,14: + 0: 20795 + -1,15: + 0: 22359 + 0,12: + 0: 65535 + 0,13: + 0: 9215 + 1,12: + 0: 65535 + 1,13: + 0: 39423 + 2,12: + 0: 65535 + 2,13: + 0: 61951 + 3,12: + 0: 65535 + 3,13: + 0: 63999 + 4,12: + 0: 65535 + 4,13: + 0: 62719 + -4,16: + 0: 65535 + -4,17: + 0: 1839 + -3,16: + 0: 46003 + -6,16: + 0: 61167 + -6,17: + 0: 1595 + -5,16: + 0: 65535 + -5,17: + 0: 3919 + -8,9: + 0: 65535 + -8,10: + 0: 65535 + -8,11: + 0: 65535 + -7,9: + 0: 65535 + -7,10: + 0: 65535 + -7,11: + 0: 65535 + -12,9: + 0: 65535 + -12,10: + 0: 65535 + -12,11: + 0: 65535 + -11,9: + 0: 65535 + -11,10: + 0: 65535 + -11,11: + 0: 65535 + -10,9: + 0: 65535 + -10,10: + 0: 65535 + -10,11: + 0: 65535 + -9,9: + 0: 65535 + -9,10: + 0: 65535 + -9,11: + 0: 65535 + -13,9: + 0: 65535 + -13,10: + 0: 65535 + -13,11: + 0: 65535 + -8,12: + 0: 65535 + -8,13: + 0: 65535 + -8,14: + 0: 49087 + -8,15: + 0: 3999 + -7,12: + 0: 65535 + -7,15: + 0: 50447 + -12,12: + 0: 65535 + -12,13: + 0: 65535 + -12,14: + 0: 65535 + -11,12: + 0: 65535 + -11,13: + 0: 65535 + -11,14: + 0: 65535 + -10,12: + 0: 65535 + -10,13: + 0: 65535 + -10,14: + 0: 65535 + -9,12: + 0: 65535 + -9,13: + 0: 65535 + -9,14: + 0: 53247 + -9,15: + 0: 11055 + -15,9: + 0: 65535 + -15,10: + 0: 65535 + -15,11: + 0: 65535 + -14,9: + 0: 65535 + -14,10: + 0: 65535 + -14,11: + 0: 65535 + -12,15: + 0: 65535 + -11,15: + 0: 65535 + -10,15: + 0: 65535 + -16,12: + 0: 65535 + -16,13: + 0: 65535 + -16,14: + 0: 65535 + -16,15: + 0: 65535 + -15,12: + 0: 65535 + -15,13: + 0: 65535 + -15,14: + 0: 65535 + -15,15: + 0: 65535 + -14,12: + 0: 65535 + -14,13: + 0: 65535 + -14,14: + 0: 65535 + -14,15: + 0: 65535 + -13,12: + 0: 65535 + -13,13: + 0: 65535 + -13,14: + 0: 65535 + -13,15: + 0: 65535 + -20,13: + 0: 65535 + -20,14: + 0: 65535 + -20,15: + 0: 255 + -19,13: + 0: 65535 + -19,14: + 0: 65535 + -19,15: + 0: 255 + -18,13: + 0: 65535 + -18,14: + 0: 65535 + -18,15: + 0: 52479 + -17,13: + 0: 65535 + -17,14: + 0: 65535 + -17,15: + 0: 65535 + -17,12: + 0: 65535 + -16,16: + 0: 65535 + -16,17: + 0: 65535 + -16,18: + 0: 15 + -15,16: + 0: 65535 + -15,17: + 0: 65535 + -15,18: + 0: 239 + -14,16: + 0: 65535 + -14,17: + 0: 65535 + -14,18: + 0: 65023 + -13,16: + 0: 65535 + -13,17: + 0: 30719 + -13,18: + 0: 32631 + -12,16: + 0: 65535 + -12,17: + 0: 61951 + -18,16: + 0: 3276 + -17,16: + 0: 36863 + -17,17: + 0: 34952 + -17,18: + 0: 8 + -21,13: + 0: 61439 + -21,14: + 0: 8942 + -16,2: + 0: 65535 + -16,3: + 0: 65535 + -16,4: + 0: 65535 + -16,5: + 0: 65535 + -16,6: + 0: 65535 + -16,7: + 0: 65535 + -16,8: + 0: 65535 + -16,9: + 0: 65535 + -16,10: + 0: 65535 + -16,11: + 0: 65535 + -20,3: + 0: 65450 + -20,2: + 0: 44719 + -19,2: + 0: 65263 + -19,3: + 0: 65534 + -18,2: + 0: 65535 + -18,3: + 0: 65535 + -17,2: + 0: 65535 + -17,3: + 0: 65535 + -20,12: + 0: 65535 + -19,12: + 0: 65535 + -18,12: + 0: 65535 + -23,12: + 0: 52478 + -23,13: + 0: 3276 + -22,12: + 0: 65535 + -22,13: + 0: 4095 + -21,12: + 0: 63743 + 2: 1792 + -20,8: + 0: 65535 + -20,9: + 0: 65535 + -20,10: + 0: 65535 + -20,11: + 0: 65535 + -19,8: + 0: 65535 + -19,9: + 0: 65535 + -19,10: + 0: 65535 + -19,11: + 0: 65535 + -18,8: + 0: 65535 + -18,9: + 0: 65535 + -18,10: + 0: 65535 + -18,11: + 0: 65535 + -17,8: + 0: 65535 + -17,9: + 0: 65535 + -17,10: + 0: 65535 + -17,11: + 0: 65535 + -20,4: + 0: 65535 + -20,5: + 0: 65535 + -20,6: + 0: 65535 + -20,7: + 0: 65535 + -19,4: + 0: 65535 + -19,5: + 0: 65535 + -19,6: + 0: 65535 + -19,7: + 0: 65535 + -18,4: + 0: 65407 + 4: 128 + -18,5: + 0: 65535 + -18,6: + 0: 65535 + -18,7: + 0: 65535 + -17,4: + 0: 65535 + -17,5: + 0: 65535 + -17,6: + 0: 65535 + -17,7: + 0: 65535 + -24,8: + 0: 65535 + -24,9: + 0: 44719 + -23,8: + 0: 8191 + 5: 57344 + -23,9: + 0: 7967 + 6: 224 + 2: 57344 + -23,10: + 0: 7967 + 2: 224 + 7: 57344 + -23,11: + 0: 65311 + 2: 224 + -22,8: + 0: 65535 + -22,9: + 0: 65535 + -22,10: + 0: 65535 + -22,11: + 0: 65535 + -21,8: + 0: 65535 + -21,9: + 0: 65535 + -21,10: + 0: 65535 + -21,11: + 0: 65535 + -21,3: + 0: 57088 + -24,5: + 0: 57343 + -24,6: + 0: 56797 + -24,7: + 0: 63999 + -24,4: + 0: 65524 + -23,4: + 0: 65524 + -23,5: + 0: 65535 + -23,6: + 0: 65535 + -23,7: + 0: 65535 + -22,4: + 0: 65528 + -22,5: + 0: 65535 + -22,6: + 0: 65535 + -22,7: + 0: 65535 + -21,4: + 0: 65535 + -21,5: + 0: 65535 + -21,6: + 0: 65535 + -21,7: + 0: 65535 + -28,8: + 0: 65359 + -28,9: + 0: 8 + -27,8: + 0: 65503 + -27,9: + 0: 15 + -26,8: + 0: 65535 + -26,9: + 0: 15 + -25,8: + 0: 65535 + -25,9: + 0: 15 + -28,5: + 0: 4088 + -27,5: + 0: 24575 + -27,6: + 0: 21975 + -27,7: + 0: 62943 + -26,5: + 0: 20479 + -26,6: + 0: 56703 + -26,7: + 0: 64989 + -25,5: + 0: 49151 + -25,6: + 0: 48847 + -25,7: + 0: 63217 + -29,5: + 0: 224 + -29,8: + 0: 57344 + -21,15: + 0: 226 + -12,-4: + 0: 65535 + -16,-4: + 0: 65521 + -13,-4: + 0: 65535 + -19,-4: + 0: 65535 + -18,-4: + 0: 65521 + -17,-4: + 0: 65535 + -13,-5: + 0: 65280 + -12,-5: + 0: 65280 + -11,16: + 0: 65535 + -10,16: + 0: 65535 + -16,19: + 0: 61152 + -15,19: + 0: 65520 + -14,19: + 0: 65533 + -13,19: + 0: 30711 + -16,20: + 0: 65535 + -16,21: + 0: 61439 + -16,22: + 0: 61167 + -15,20: + 0: 65535 + -15,21: + 0: 65535 + -15,22: + 0: 65535 + -14,20: + 0: 65535 + -14,21: + 0: 65535 + -14,22: + 0: 65535 + -13,20: + 0: 65535 + -13,21: + 0: 65535 + -13,22: + 0: 32767 + 0,14: + 0: 15 + 1,14: + 0: 3 + -3,17: + 0: 878 + -2,16: + 0: 249 + -1,16: + 0: 20 + -7,16: + 0: 32836 + -7,17: + 0: 8 + -12,18: + 0: 4368 + -12,19: + 0: 273 + -11,17: + 0: 61951 + -10,17: + 0: 62207 + -16,23: + 0: 143 + -15,23: + 0: 3839 + -14,23: + 0: 2047 + -13,23: + 0: 119 + -12,20: + 0: 4369 + -12,21: + 0: 4369 + -12,22: + 0: 4369 + -12,23: + 0: 1 + -17,20: + 0: 50184 + -17,21: + 0: 19524 + -17,22: + 0: 2188 + -28,4: + 0: 36608 + -28,7: + 0: 32776 + -27,4: + 0: 65480 + -26,4: + 0: 65524 + -25,4: + 0: 65520 + 4,-7: + 0: 17600 + 6,-8: + 0: 19456 + 7,7: + 0: 12151 + -6,-5: + 0: 19968 + -15,-4: + 0: 63472 + -14,-4: + 0: 44936 + -20,-4: + 0: 64640 + -24,10: + 0: 43658 + -24,11: + 0: 44718 + -24,12: + 0: 192 + -27,3: + 0: 49152 + -26,3: + 0: 61440 + -25,3: + 0: 4096 + -24,3: + 0: 61440 + -23,3: + 0: 61440 + -22,3: + 0: 3584 + 8,-3: + 0: 4368 + 8,-2: + 0: 4369 + 8,-1: + 0: 4369 + 2,-5: + 0: 49151 + 5,12: + 0: 8754 + 5,13: + 0: 8754 + 8,5: + 0: 4368 + 8,6: + 0: 4369 + 8,7: + 0: 4368 + 7,8: + 0: 15 + 8,8: + 0: 1 + -9,16: + 0: 8994 + -9,17: + 0: 12835 + -2,-6: + 0: 63984 + -1,-6: + 0: 62672 + 0,-6: + 0: 61904 + 1,-6: + 0: 63984 + 2,-6: + 0: 63696 + 3,-6: + 0: 21616 + 3,-5: + 0: 17909 + -14,-5: + 0: 34816 + -11,-5: + 0: 61440 + -10,-5: + 0: 4096 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 25.17718 + - 94.71416 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14996 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - id: Barratry + type: BecomesStation + - type: SpreaderGrid + - type: GridPathfinding + - uid: 5005 + components: + - type: MetaData + - type: Transform + - type: Map + - type: PhysicsMap + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - type: GridTree + - type: MovedGrids +- proto: AcousticGuitarInstrument + entities: + - uid: 14704 + components: + - pos: 28.538687,-28.497456 + parent: 1 + type: Transform +- proto: AirAlarm + entities: + - uid: 316 + components: + - pos: -10.5,-0.5 + parent: 1 + type: Transform + - devices: + - 1749 + - 1741 + - 1747 + - 1750 + - 12320 + - 12321 + - 12353 + - 12352 + - 12416 + - 12413 + - 12332 + - 12331 + - 12414 + - 12415 + - 12384 + - 14970 + type: DeviceList + - uid: 317 + components: + - pos: 3.5,-7.5 + parent: 1 + type: Transform + - uid: 8960 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,56.5 + parent: 1 + type: Transform + - devices: + - 8573 + - 8574 + - 8578 + - 8576 + - 8575 + - 8757 + - 8764 + - 8778 + - 8779 + - 8765 + - 8766 + - 8690 + - 8686 + - 8697 + - 8754 + - 8761 + - 8755 + - 8762 + - 8756 + - 8763 + type: DeviceList + - uid: 8962 + components: + - pos: -47.5,66.5 + parent: 1 + type: Transform + - uid: 8965 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,88.5 + parent: 1 + type: Transform + - devices: + - 5742 + - 5579 + - 5501 + - 5496 + - 8883 + - 8884 + - 8887 + - 8888 + - 8886 + - 8885 + - 8925 + - 8967 + - 8928 + - 8924 + type: DeviceList + - uid: 13040 + components: + - rot: 3.141592653589793 rad + pos: -50.5,45.5 + parent: 1 + type: Transform + - devices: + - 7995 + - 7996 + - 7997 + - 8003 + - 8002 + - 8001 + - 11119 + - 11122 + - 11270 + - 11272 + - 11175 + - 11172 + - 11145 + - 11146 + - 11319 + - 11318 + - 11317 + - 8573 + - 8574 + type: DeviceList + - uid: 13047 + components: + - rot: 3.141592653589793 rad + pos: -47.5,30.5 + parent: 1 + type: Transform + - devices: + - 5240 + - 5241 + - 5242 + - 7995 + - 7996 + - 7997 + - 5233 + - 5232 + - 5231 + - 11303 + - 11306 + - 11305 + - 11304 + - 11321 + - 11320 + - 11555 + - 11557 + type: DeviceList + - uid: 13051 + components: + - pos: -68.5,7.5 + parent: 1 + type: Transform + - devices: + - 5213 + - 5214 + - 5215 + type: DeviceList + - uid: 13053 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,-3.5 + parent: 1 + type: Transform + - devices: + - 5216 + - 5217 + - 5218 + - 11842 + - 11841 + - 11840 + - 11843 + - 4749 + - 4807 + - 4802 + - 4750 + - 4800 + - 3967 + - 4912 + - 4913 + - 4126 + type: DeviceList + - uid: 13055 + components: + - pos: -45.5,7.5 + parent: 1 + type: Transform + - devices: + - 11968 + - 11970 + - 11926 + - 11925 + - 11789 + - 11790 + - 4112 + - 4111 + - 4110 + - 5212 + - 5211 + - 5210 + type: DeviceList + - uid: 13057 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-3.5 + parent: 1 + type: Transform + - devices: + - 3718 + - 3719 + - 3720 + - 3721 + - 3722 + - 3723 + - 3724 + - 3717 + - 3716 + - 3726 + - 12016 + - 12018 + - 11970 + - 12079 + - 12063 + - 11996 + - 11998 + - 12001 + type: DeviceList + - uid: 13058 + components: + - pos: -35.5,8.5 + parent: 1 + type: Transform + - devices: + - 4110 + - 4111 + - 4112 + - 4114 + - 4115 + - 4116 + - 4109 + - 4108 + - 4107 + - 12079 + - 12080 + - 12063 + - 12064 + - 11968 + - 11970 + - 11926 + - 11925 + - 12140 + - 12139 + - 11642 + - 11645 + type: DeviceList + - uid: 13061 + components: + - pos: -21.5,7.5 + parent: 1 + type: Transform + - devices: + - 1766 + - 1765 + - 1764 + - 4107 + - 4108 + - 4109 + - 12296 + - 12297 + - 12139 + - 12140 + - 12130 + - 12128 + type: DeviceList + - uid: 13063 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,18.5 + parent: 1 + type: Transform + - devices: + - 4114 + - 4115 + - 4116 + - 4117 + - 4118 + - 4119 + - 4120 + - 4121 + - 4122 + - 4123 + - 5227 + - 5226 + - 5225 + - 11642 + - 11645 + - 11641 + - 11644 + - 11643 + - 11640 + type: DeviceList + - uid: 13065 + components: + - pos: -41.5,40.5 + parent: 1 + type: Transform + - devices: + - 5233 + - 5232 + - 5231 + - 5225 + - 5226 + - 5227 + - 5228 + - 5229 + - 5230 + - 11592 + - 11596 + - 11593 + - 11597 + - 11594 + - 11599 + - 9786 + - 9787 + - 9788 + - 9789 + - 9784 + - 9785 + type: DeviceList + - uid: 13067 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,45.5 + parent: 1 + type: Transform + - devices: + - 11238 + - 11237 + - 11239 + - 11236 + - 11240 + - 9784 + - 9785 + - 9790 + - 9791 + - 9792 + - 9793 + - 11235 + type: DeviceList + - uid: 13069 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,42.5 + parent: 1 + type: Transform + - devices: + - 9790 + - 9791 + - 9793 + - 9792 + - 11196 + - 11192 + - 11209 + - 11208 + type: DeviceList + - uid: 13071 + components: + - pos: -29.5,34.5 + parent: 1 + type: Transform + - devices: + - 12172 + - 12173 + - 5228 + - 5229 + - 5230 + - 5236 + - 5235 + - 5234 + type: DeviceList + - uid: 13073 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,42.5 + parent: 1 + type: Transform + - devices: + - 5237 + - 5238 + - 5239 + - 12259 + - 12255 + - 12256 + - 12260 + - 12273 + - 12272 + type: DeviceList + - uid: 13074 + components: + - pos: -22.5,43.5 + parent: 1 + type: Transform + - devices: + - 9819 + - 12257 + - 12261 + - 12258 + - 12190 + type: DeviceList + - uid: 13077 + components: + - pos: -13.5,34.5 + parent: 1 + type: Transform + - devices: + - 5237 + - 5238 + - 5239 + - 12259 + - 12255 + - 12256 + - 12260 + - 12273 + - 12272 + - 3064 + - 3122 + - 2814 + - 2881 + - 3175 + - 3176 + - 3177 + - 2866 + - 2865 + - 12485 + - 12482 + - 12486 + - 12481 + type: DeviceList + - uid: 13079 + components: + - pos: -18.5,58.5 + parent: 1 + type: Transform + - devices: + - 6496 + - 6497 + - 9808 + - 6498 + - 6499 + - 6500 + - 6501 + - 6502 + - 6503 + - 6504 + - 13010 + - 13004 + - 13011 + - 13005 + - 13012 + - 13006 + - 13013 + - 13007 + - 13031 + - 13034 + - 13032 + - 13033 + type: DeviceList + - uid: 13096 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,19.5 + parent: 1 + type: Transform + - devices: + - 1763 + - 1762 + - 1761 + - 3177 + - 3176 + - 3175 + - 12506 + - 12507 + - 12508 + - 12509 + - 12510 + - 12484 + - 12488 + - 12487 + - 12483 + type: DeviceList + - uid: 13099 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - devices: + - 1758 + - 1759 + - 1760 + - 1768 + - 1767 + - 1753 + - 1752 + - 12586 + - 12582 + - 12583 + - 12587 + type: DeviceList + - uid: 13100 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 1 + type: Transform + - devices: + - 12585 + - 12588 + - 12589 + - 12584 + - 1753 + - 1752 + - 12595 + - 12596 + - 12605 + - 12606 + type: DeviceList + - uid: 13103 + components: + - pos: 21.5,7.5 + parent: 1 + type: Transform + - devices: + - 1767 + - 1768 + - 1755 + - 1754 + - 12656 + - 12652 + - 12658 + - 12654 + - 12587 + - 12583 + type: DeviceList + - uid: 13105 + components: + - rot: 3.141592653589793 rad + pos: 28.5,4.5 + parent: 1 + type: Transform + - devices: + - 12658 + - 12654 + - 12715 + - 12710 + - 12716 + - 12713 + - 12714 + - 12717 + - 1755 + - 1754 + type: DeviceList + - uid: 13299 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,32.5 + parent: 1 + type: Transform + - devices: + - 2055 + - 2868 + - 2867 + - 2869 + - 13306 + - 13305 + - 2052 + - 2051 + - 13309 + - 13308 + - 13307 + - 2053 + - 2054 + - 12736 + - 2102 + - 3023 + - 3019 + - 2674 + - 2490 + - 2666 + - 2487 + - 2671 + - 2488 + - 2670 + - 2489 + - 3022 + - 3021 + - 15082 + - 15083 + type: DeviceList + - uid: 13304 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,22.5 + parent: 1 + type: Transform + - devices: + - 13301 + - 13302 + - 2051 + - 2052 + - 2880 + - 2878 + - 2879 + - 2869 + - 2870 + - 12859 + - 12858 + - 3021 + - 3022 + - 3023 + - 3019 + - 3020 + - 3024 + - 12766 + - 12765 + - 12759 + - 12760 + - 12761 + - 12762 + - 12763 + - 13307 + - 13308 + - 13309 + - 15079 + - 15080 + - 15081 + type: DeviceList + - uid: 14286 + components: + - rot: -1.5707963267948966 rad + pos: -72.5,32.5 + parent: 1 + type: Transform + - devices: + - 10685 + - 10684 + - 10688 + - 10689 + - 14115 + - 14116 + - 14038 + - 14045 + - 14148 + - 14149 + - 14160 + - 14161 + - 14040 + type: DeviceList + - uid: 14297 + components: + - rot: -1.5707963267948966 rad + pos: -76.5,38.5 + parent: 1 + type: Transform + - devices: + - 10676 + - 10675 + - 10674 + - 10673 + - 10672 + - 10671 + - 10670 + - 10669 + - 10668 + - 10667 + - 10666 + - 14046 + - 14047 + type: DeviceList + - uid: 14301 + components: + - rot: 1.5707963267948966 rad + pos: -75.5,20.5 + parent: 1 + type: Transform + - devices: + - 14304 + - 14302 + - 10686 + - 10687 + - 14303 + - 10684 + - 10685 + - 10682 + - 10683 + - 14114 + - 14109 + - 14111 + - 14110 + - 14112 + - 14113 + - 14116 + - 14115 + - 14159 + - 14158 + type: DeviceList +- proto: AirAlarmElectronics + entities: + - uid: 5539 + components: + - pos: -47.591698,28.816675 + parent: 1 + type: Transform + - uid: 5540 + components: + - pos: -47.388573,28.48855 + parent: 1 + type: Transform +- proto: AirCanister + entities: + - uid: 1153 + components: + - pos: 21.5,25.5 + parent: 1 + type: Transform + - uid: 1189 + components: + - pos: -3.5,13.5 + parent: 1 + type: Transform + - uid: 2400 + components: + - pos: 6.5,37.5 + parent: 1 + type: Transform + - uid: 5586 + components: + - pos: -2.5,36.5 + parent: 1 + type: Transform + - uid: 5673 + components: + - pos: -27.5,20.5 + parent: 1 + type: Transform + - uid: 6080 + components: + - pos: -76.5,31.5 + parent: 1 + type: Transform + - uid: 7930 + components: + - pos: -77.5,31.5 + parent: 1 + type: Transform + - uid: 9267 + components: + - pos: 25.5,-4.5 + parent: 1 + type: Transform + - uid: 9469 + components: + - pos: 22.5,25.5 + parent: 1 + type: Transform + - uid: 9470 + components: + - pos: -48.5,19.5 + parent: 1 + type: Transform + - uid: 10041 + components: + - pos: 14.5,43.5 + parent: 1 + type: Transform + - uid: 10127 + components: + - pos: -39.5,54.5 + parent: 1 + type: Transform + - uid: 10352 + components: + - pos: -78.5,31.5 + parent: 1 + type: Transform + - uid: 12895 + components: + - pos: 14.5,15.5 + parent: 1 + type: Transform + - uid: 14335 + components: + - pos: -75.5,42.5 + parent: 1 + type: Transform + - uid: 14579 + components: + - pos: -60.5,18.5 + parent: 1 + type: Transform + - uid: 15906 + components: + - pos: 5.5,-18.5 + parent: 1 + type: Transform +- proto: Airlock + entities: + - uid: 1600 + components: + - pos: 9.5,0.5 + parent: 1 + type: Transform + - uid: 1601 + components: + - pos: 9.5,-2.5 + parent: 1 + type: Transform + - uid: 1608 + components: + - pos: -26.5,3.5 + parent: 1 + type: Transform + - uid: 1609 + components: + - pos: -24.5,2.5 + parent: 1 + type: Transform + - uid: 1610 + components: + - pos: -24.5,0.5 + parent: 1 + type: Transform + - uid: 1611 + components: + - pos: -24.5,-1.5 + parent: 1 + type: Transform + - uid: 3412 + components: + - pos: -23.5,14.5 + parent: 1 + type: Transform + - uid: 5299 + components: + - pos: -55.5,24.5 + parent: 1 + type: Transform + - uid: 7276 + components: + - pos: -56.5,86.5 + parent: 1 + type: Transform + - uid: 9211 + components: + - rot: 3.141592653589793 rad + pos: -59.5,44.5 + parent: 1 + type: Transform +- proto: AirlockArmoryGlassLocked + entities: + - uid: 336 + components: + - pos: -49.5,65.5 + parent: 1 + type: Transform + - uid: 7431 + components: + - pos: -49.5,64.5 + parent: 1 + type: Transform +- proto: AirlockArmoryLocked + entities: + - uid: 7876 + components: + - pos: -49.5,61.5 + parent: 1 + type: Transform +- proto: AirlockAtmosphericsGlassLocked + entities: + - uid: 10695 + components: + - rot: -1.5707963267948966 rad + pos: -75.5,34.5 + parent: 1 + type: Transform + - uid: 10696 + components: + - rot: -1.5707963267948966 rad + pos: -75.5,35.5 + parent: 1 + type: Transform +- proto: AirlockBarGlassLocked + entities: + - uid: 5282 + components: + - pos: -55.5,20.5 + parent: 1 + type: Transform +- proto: AirlockBarLocked + entities: + - uid: 7369 + components: + - pos: -33.5,40.5 + parent: 1 + type: Transform + - uid: 7370 + components: + - pos: -29.5,37.5 + parent: 1 + type: Transform +- proto: AirlockBrigGlassLocked + entities: + - uid: 7879 + components: + - pos: -49.5,55.5 + parent: 1 + type: Transform + - uid: 7880 + components: + - pos: -49.5,53.5 + parent: 1 + type: Transform + - uid: 7881 + components: + - pos: -48.5,52.5 + parent: 1 + type: Transform + - uid: 7882 + components: + - pos: -46.5,52.5 + parent: 1 + type: Transform + - uid: 10935 + components: + - pos: -62.5,43.5 + parent: 1 + type: Transform +- proto: AirlockCaptainLocked + entities: + - uid: 6507 + components: + - pos: -7.5,58.5 + parent: 1 + type: Transform +- proto: AirlockCargo + entities: + - uid: 3646 + components: + - pos: -44.5,-0.5 + parent: 1 + type: Transform +- proto: AirlockCargoGlassLocked + entities: + - uid: 3620 + components: + - pos: -41.5,-0.5 + parent: 1 + type: Transform + - uid: 3621 + components: + - pos: -40.5,-0.5 + parent: 1 + type: Transform + - uid: 3622 + components: + - pos: -42.5,-2.5 + parent: 1 + type: Transform + - uid: 3639 + components: + - pos: -37.5,-0.5 + parent: 1 + type: Transform +- proto: AirlockChapelLocked + entities: + - uid: 1644 + components: + - pos: 18.5,-1.5 + parent: 1 + type: Transform +- proto: AirlockChemistryLocked + entities: + - uid: 1898 + components: + - pos: 1.5,23.5 + parent: 1 + type: Transform +- proto: AirlockChiefEngineerLocked + entities: + - uid: 5301 + components: + - pos: -50.5,26.5 + parent: 1 + type: Transform + - uid: 10697 + components: + - rot: -1.5707963267948966 rad + pos: -74.5,18.5 + parent: 1 + type: Transform +- proto: AirlockChiefMedicalOfficerLocked + entities: + - uid: 1240 + components: + - pos: 17.5,32.5 + parent: 1 + type: Transform + - uid: 1323 + components: + - pos: 13.5,28.5 + parent: 1 + type: Transform +- proto: AirlockCommandGlassLocked + entities: + - uid: 6392 + components: + - rot: 3.141592653589793 rad + pos: -16.5,52.5 + parent: 1 + type: Transform + - uid: 6393 + components: + - rot: 3.141592653589793 rad + pos: -13.5,55.5 + parent: 1 + type: Transform + - uid: 6394 + components: + - rot: 3.141592653589793 rad + pos: -15.5,58.5 + parent: 1 + type: Transform + - uid: 6395 + components: + - rot: 3.141592653589793 rad + pos: -17.5,58.5 + parent: 1 + type: Transform + - uid: 6651 + components: + - pos: -14.5,48.5 + parent: 1 + type: Transform + - uid: 6652 + components: + - pos: -14.5,47.5 + parent: 1 + type: Transform +- proto: AirlockCommandLocked + entities: + - uid: 3220 + components: + - pos: -41.5,7.5 + parent: 1 + type: Transform +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 10679 + components: + - rot: 3.141592653589793 rad + pos: -84.5,22.5 + parent: 1 + type: Transform + - uid: 10680 + components: + - rot: 3.141592653589793 rad + pos: -84.5,28.5 + parent: 1 + type: Transform + - uid: 10681 + components: + - rot: 3.141592653589793 rad + pos: -77.5,25.5 + parent: 1 + type: Transform + - uid: 10692 + components: + - rot: -1.5707963267948966 rad + pos: -72.5,21.5 + parent: 1 + type: Transform + - uid: 10694 + components: + - rot: -1.5707963267948966 rad + pos: -64.5,29.5 + parent: 1 + type: Transform +- proto: AirlockEngineeringLocked + entities: + - uid: 607 + components: + - pos: 11.5,-6.5 + parent: 1 + type: Transform + - uid: 2694 + components: + - pos: 22.5,7.5 + parent: 1 + type: Transform + - uid: 3933 + components: + - pos: -22.5,-4.5 + parent: 1 + type: Transform + - uid: 4338 + components: + - pos: -42.5,14.5 + parent: 1 + type: Transform + - uid: 5300 + components: + - pos: -48.5,30.5 + parent: 1 + type: Transform + - uid: 5655 + components: + - rot: 3.141592653589793 rad + pos: -17.5,17.5 + parent: 1 + type: Transform + - uid: 6197 + components: + - pos: 16.5,45.5 + parent: 1 + type: Transform + - uid: 6807 + components: + - pos: -34.5,56.5 + parent: 1 + type: Transform + - uid: 10142 + components: + - pos: -65.5,58.5 + parent: 1 + type: Transform + - uid: 11061 + components: + - rot: -1.5707963267948966 rad + pos: -72.5,26.5 + parent: 1 + type: Transform + - uid: 13619 + components: + - pos: -62.5,32.5 + parent: 1 + type: Transform + - uid: 15044 + components: + - pos: -8.5,7.5 + parent: 1 + type: Transform +- proto: AirlockExternal + entities: + - uid: 184 + components: + - pos: -5.5,-17.5 + parent: 1 + type: Transform + - uid: 217 + components: + - pos: -5.5,-15.5 + parent: 1 + type: Transform + - uid: 1640 + components: + - pos: 29.5,18.5 + parent: 1 + type: Transform + - uid: 1641 + components: + - pos: 29.5,16.5 + parent: 1 + type: Transform + - uid: 1642 + components: + - pos: 29.5,10.5 + parent: 1 + type: Transform + - uid: 1645 + components: + - pos: 29.5,8.5 + parent: 1 + type: Transform + - uid: 4101 + components: + - rot: 3.141592653589793 rad + pos: -72.5,-12.5 + parent: 1 + type: Transform + - uid: 4102 + components: + - rot: 3.141592653589793 rad + pos: -74.5,-12.5 + parent: 1 + type: Transform + - uid: 4751 + components: + - rot: 3.141592653589793 rad + pos: -66.5,-12.5 + parent: 1 + type: Transform + - uid: 4754 + components: + - rot: 3.141592653589793 rad + pos: -64.5,-12.5 + parent: 1 + type: Transform +- proto: AirlockExternalAtmosphericsLocked + entities: + - uid: 9252 + components: + - rot: 1.5707963267948966 rad + pos: -77.5,47.5 + parent: 1 + type: Transform + - uid: 9256 + components: + - rot: 1.5707963267948966 rad + pos: -78.5,48.5 + parent: 1 + type: Transform + - uid: 10665 + components: + - rot: 1.5707963267948966 rad + pos: -76.5,48.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlass + entities: + - uid: 1770 + components: + - rot: 3.141592653589793 rad + pos: -78.5,-10.5 + parent: 1 + type: Transform + - uid: 3969 + components: + - rot: 3.141592653589793 rad + pos: -76.5,-10.5 + parent: 1 + type: Transform + - uid: 4850 + components: + - pos: -66.5,3.5 + parent: 1 + type: Transform + - uid: 4871 + components: + - pos: -73.5,3.5 + parent: 1 + type: Transform + - uid: 4951 + components: + - rot: 3.141592653589793 rad + pos: -66.5,-8.5 + parent: 1 + type: Transform + - uid: 4952 + components: + - rot: 3.141592653589793 rad + pos: -73.5,-8.5 + parent: 1 + type: Transform + - uid: 7196 + components: + - pos: -52.5,66.5 + parent: 1 + type: Transform + - uid: 7199 + components: + - pos: -50.5,66.5 + parent: 1 + type: Transform + - uid: 7203 + components: + - pos: -50.5,70.5 + parent: 1 + type: Transform + - uid: 7206 + components: + - pos: -52.5,70.5 + parent: 1 + type: Transform + - uid: 7219 + components: + - pos: -52.5,77.5 + parent: 1 + type: Transform + - uid: 7220 + components: + - pos: -50.5,77.5 + parent: 1 + type: Transform + - uid: 7334 + components: + - pos: -52.5,81.5 + parent: 1 + type: Transform + - uid: 7335 + components: + - pos: -50.5,81.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlassCargoLocked + entities: + - uid: 7343 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-12.5 + parent: 1 + type: Transform + - uid: 7345 + components: + - pos: -48.5,-14.5 + parent: 1 + type: Transform + - uid: 9129 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-13.5 + parent: 1 + type: Transform + - uid: 10260 + components: + - pos: -34.5,-11.5 + parent: 1 + type: Transform + - uid: 10261 + components: + - pos: -32.5,-11.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlassEngineeringLocked + entities: + - uid: 10677 + components: + - rot: 3.141592653589793 rad + pos: -86.5,30.5 + parent: 1 + type: Transform + - uid: 10678 + components: + - rot: 3.141592653589793 rad + pos: -86.5,20.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlassShuttleArrivals + entities: + - uid: 4844 + components: + - pos: -73.5,2.5 + parent: 1 + type: Transform + - uid: 4876 + components: + - pos: -66.5,2.5 + parent: 1 + type: Transform + - uid: 4964 + components: + - rot: 3.141592653589793 rad + pos: -73.5,-7.5 + parent: 1 + type: Transform + - uid: 4984 + components: + - rot: 3.141592653589793 rad + pos: -66.5,-7.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 1636 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,10.5 + parent: 1 + type: Transform + - uid: 1637 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,8.5 + parent: 1 + type: Transform + - uid: 1638 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,16.5 + parent: 1 + type: Transform + - uid: 1639 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,18.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 3966 + components: + - pos: -64.5,-15.5 + parent: 1 + type: Transform + - uid: 4100 + components: + - pos: -74.5,-15.5 + parent: 1 + type: Transform + - uid: 4105 + components: + - pos: -72.5,-15.5 + parent: 1 + type: Transform + - uid: 4756 + components: + - pos: -66.5,-15.5 + parent: 1 + type: Transform + - uid: 10292 + components: + - pos: -34.5,-14.5 + parent: 1 + type: Transform + - uid: 10302 + components: + - pos: -32.5,-14.5 + parent: 1 + type: Transform +- proto: AirlockExternalLocked + entities: + - uid: 748 + components: + - pos: 28.5,-9.5 + parent: 1 + type: Transform + - uid: 909 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-6.5 + parent: 1 + type: Transform + - uid: 6966 + components: + - pos: -31.5,56.5 + parent: 1 + type: Transform + - uid: 6967 + components: + - pos: -31.5,58.5 + parent: 1 + type: Transform +- proto: AirlockFreezerLocked + entities: + - uid: 6926 + components: + - pos: -26.5,45.5 + parent: 1 + type: Transform + - uid: 6927 + components: + - pos: -30.5,46.5 + parent: 1 + type: Transform +- proto: AirlockGlass + entities: + - uid: 1597 + components: + - pos: 12.5,-0.5 + parent: 1 + type: Transform + - uid: 1598 + components: + - pos: 12.5,-1.5 + parent: 1 + type: Transform + - uid: 1599 + components: + - pos: 12.5,-2.5 + parent: 1 + type: Transform + - uid: 1756 + components: + - pos: 24.5,6.5 + parent: 1 + type: Transform + - uid: 1757 + components: + - pos: 24.5,5.5 + parent: 1 + type: Transform + - uid: 3396 + components: + - pos: -23.5,7.5 + parent: 1 + type: Transform + - uid: 7364 + components: + - pos: -38.5,34.5 + parent: 1 + type: Transform + - uid: 7365 + components: + - pos: -36.5,34.5 + parent: 1 + type: Transform + - uid: 10799 + components: + - pos: -22.5,30.5 + parent: 1 + type: Transform + - uid: 11909 + components: + - pos: -59.5,12.5 + parent: 1 + type: Transform + - uid: 15377 + components: + - rot: 3.141592653589793 rad + pos: 19.5,7.5 + parent: 1 + type: Transform +- proto: AirlockHeadOfPersonnelGlassLocked + entities: + - uid: 3454 + components: + - pos: -20.5,43.5 + parent: 1 + type: Transform + - uid: 5835 + components: + - pos: -18.5,45.5 + parent: 1 + type: Transform +- proto: AirlockHeadOfSecurityLocked + entities: + - uid: 5740 + components: + - pos: -59.5,62.5 + parent: 1 + type: Transform +- proto: AirlockHydroGlassLocked + entities: + - uid: 6879 + components: + - pos: -40.5,48.5 + parent: 1 + type: Transform +- proto: AirlockHydroponicsLocked + entities: + - uid: 6880 + components: + - pos: -45.5,46.5 + parent: 1 + type: Transform + - uid: 6881 + components: + - pos: -40.5,40.5 + parent: 1 + type: Transform +- proto: AirlockJanitorLocked + entities: + - uid: 7046 + components: + - pos: -52.5,39.5 + parent: 1 + type: Transform + - uid: 7051 + components: + - pos: -49.5,36.5 + parent: 1 + type: Transform +- proto: AirlockKitchenGlassLocked + entities: + - uid: 6903 + components: + - pos: -37.5,41.5 + parent: 1 + type: Transform +- proto: AirlockMaint + entities: + - uid: 1605 + components: + - pos: 24.5,-6.5 + parent: 1 + type: Transform + - uid: 2239 + components: + - pos: 15.5,18.5 + parent: 1 + type: Transform + - uid: 2240 + components: + - pos: 20.5,21.5 + parent: 1 + type: Transform + - uid: 3161 + components: + - pos: -31.5,16.5 + parent: 1 + type: Transform + - uid: 3504 + components: + - pos: -24.5,-9.5 + parent: 1 + type: Transform + - uid: 3505 + components: + - pos: -20.5,-9.5 + parent: 1 + type: Transform + - uid: 3506 + components: + - pos: -20.5,-12.5 + parent: 1 + type: Transform + - uid: 5369 + components: + - pos: -51.5,-3.5 + parent: 1 + type: Transform + - uid: 5463 + components: + - pos: -10.5,37.5 + parent: 1 + type: Transform + - uid: 6073 + components: + - pos: 7.5,49.5 + parent: 1 + type: Transform + - uid: 6075 + components: + - pos: 13.5,45.5 + parent: 1 + type: Transform + - uid: 6076 + components: + - pos: 10.5,49.5 + parent: 1 + type: Transform + - uid: 6078 + components: + - pos: 3.5,48.5 + parent: 1 + type: Transform + - uid: 6081 + components: + - pos: -0.5,48.5 + parent: 1 + type: Transform + - uid: 7586 + components: + - pos: -26.5,41.5 + parent: 1 + type: Transform + - uid: 13362 + components: + - pos: -73.5,44.5 + parent: 1 + type: Transform + - uid: 13363 + components: + - pos: -68.5,40.5 + parent: 1 + type: Transform + - uid: 13364 + components: + - pos: -74.5,52.5 + parent: 1 + type: Transform + - uid: 13365 + components: + - pos: -68.5,52.5 + parent: 1 + type: Transform + - uid: 14011 + components: + - rot: -1.5707963267948966 rad + pos: -63.5,15.5 + parent: 1 + type: Transform + - uid: 14465 + components: + - pos: -68.5,12.5 + parent: 1 + type: Transform +- proto: AirlockMaintBarLocked + entities: + - uid: 6710 + components: + - pos: -26.5,36.5 + parent: 1 + type: Transform +- proto: AirlockMaintCargoLocked + entities: + - uid: 3623 + components: + - pos: -47.5,-2.5 + parent: 1 + type: Transform + - uid: 3624 + components: + - pos: -30.5,-6.5 + parent: 1 + type: Transform +- proto: AirlockMaintChapelLocked + entities: + - uid: 1646 + components: + - pos: 19.5,-3.5 + parent: 1 + type: Transform +- proto: AirlockMaintChemLocked + entities: + - uid: 1620 + components: + - pos: -3.5,18.5 + parent: 1 + type: Transform +- proto: AirlockMaintCommandLocked + entities: + - uid: 6313 + components: + - pos: 16.5,37.5 + parent: 1 + type: Transform + - uid: 6397 + components: + - pos: -5.5,55.5 + parent: 1 + type: Transform + - uid: 6661 + components: + - pos: -9.5,47.5 + parent: 1 + type: Transform + - uid: 11896 + components: + - pos: 16.5,38.5 + parent: 1 + type: Transform +- proto: AirlockMaintEngiLocked + entities: + - uid: 612 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,18.5 + parent: 1 + type: Transform + - uid: 13621 + components: + - pos: -63.5,35.5 + parent: 1 + type: Transform +- proto: AirlockMaintGlass + entities: + - uid: 5878 + components: + - pos: -7.5,45.5 + parent: 1 + type: Transform +- proto: AirlockMaintHOPLocked + entities: + - uid: 3448 + components: + - pos: -23.5,41.5 + parent: 1 + type: Transform +- proto: AirlockMaintHydroLocked + entities: + - uid: 7896 + components: + - pos: -43.5,50.5 + parent: 1 + type: Transform +- proto: AirlockMaintJanitorLocked + entities: + - uid: 7063 + components: + - pos: -53.5,41.5 + parent: 1 + type: Transform +- proto: AirlockMaintKitchenLocked + entities: + - uid: 6693 + components: + - pos: -32.5,48.5 + parent: 1 + type: Transform +- proto: AirlockMaintLocked + entities: + - uid: 1602 + components: + - pos: 10.5,-4.5 + parent: 1 + type: Transform + - uid: 1603 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 1604 + components: + - pos: 22.5,3.5 + parent: 1 + type: Transform + - uid: 1606 + components: + - pos: -15.5,2.5 + parent: 1 + type: Transform + - uid: 1607 + components: + - pos: -26.5,-3.5 + parent: 1 + type: Transform + - uid: 1612 + components: + - pos: -5.5,8.5 + parent: 1 + type: Transform + - uid: 1613 + components: + - pos: -10.5,25.5 + parent: 1 + type: Transform + - uid: 3173 + components: + - pos: -33.5,8.5 + parent: 1 + type: Transform + - uid: 3180 + components: + - pos: -21.5,26.5 + parent: 1 + type: Transform + - uid: 3181 + components: + - pos: -19.5,8.5 + parent: 1 + type: Transform + - uid: 3391 + components: + - rot: 3.141592653589793 rad + pos: -21.5,16.5 + parent: 1 + type: Transform + - uid: 3392 + components: + - rot: 3.141592653589793 rad + pos: -29.5,15.5 + parent: 1 + type: Transform + - uid: 3393 + components: + - rot: 3.141592653589793 rad + pos: -21.5,12.5 + parent: 1 + type: Transform + - uid: 3906 + components: + - pos: -28.5,3.5 + parent: 1 + type: Transform + - uid: 4257 + components: + - pos: -44.5,29.5 + parent: 1 + type: Transform + - uid: 4258 + components: + - pos: -40.5,21.5 + parent: 1 + type: Transform + - uid: 4590 + components: + - pos: -51.5,15.5 + parent: 1 + type: Transform + - uid: 4741 + components: + - pos: -44.5,7.5 + parent: 1 + type: Transform + - uid: 5365 + components: + - pos: -48.5,2.5 + parent: 1 + type: Transform + - uid: 5366 + components: + - pos: -55.5,1.5 + parent: 1 + type: Transform + - uid: 5367 + components: + - pos: -55.5,-9.5 + parent: 1 + type: Transform + - uid: 5368 + components: + - pos: -55.5,-6.5 + parent: 1 + type: Transform + - uid: 5577 + components: + - rot: 3.141592653589793 rad + pos: -14.5,20.5 + parent: 1 + type: Transform + - uid: 6072 + components: + - pos: -18.5,51.5 + parent: 1 + type: Transform + - uid: 6074 + components: + - pos: -14.5,51.5 + parent: 1 + type: Transform + - uid: 7093 + components: + - pos: -55.5,39.5 + parent: 1 + type: Transform + - uid: 7094 + components: + - pos: -50.5,43.5 + parent: 1 + type: Transform + - uid: 7585 + components: + - pos: -24.5,35.5 + parent: 1 + type: Transform + - uid: 7897 + components: + - pos: -45.5,49.5 + parent: 1 + type: Transform + - uid: 9258 + components: + - rot: 1.5707963267948966 rad + pos: -60.5,7.5 + parent: 1 + type: Transform + - uid: 9288 + components: + - pos: -59.5,47.5 + parent: 1 + type: Transform + - uid: 13622 + components: + - pos: -60.5,34.5 + parent: 1 + type: Transform + - uid: 13623 + components: + - pos: -60.5,30.5 + parent: 1 + type: Transform +- proto: AirlockMaintMedLocked + entities: + - uid: 1365 + components: + - pos: 12.5,15.5 + parent: 1 + type: Transform + - uid: 1901 + components: + - pos: 13.5,35.5 + parent: 1 + type: Transform + - uid: 1971 + components: + - pos: 11.5,22.5 + parent: 1 + type: Transform + - uid: 2008 + components: + - pos: 5.5,40.5 + parent: 1 + type: Transform + - uid: 2050 + components: + - rot: 3.141592653589793 rad + pos: -2.5,16.5 + parent: 1 + type: Transform +- proto: AirlockMaintRnDLocked + entities: + - uid: 226 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 1094 + components: + - pos: -17.5,-9.5 + parent: 1 + type: Transform + - uid: 1515 + components: + - pos: -16.5,-6.5 + parent: 1 + type: Transform +- proto: AirlockMaintSalvageLocked + entities: + - uid: 5382 + components: + - pos: -46.5,-9.5 + parent: 1 + type: Transform +- proto: AirlockMaintSecLocked + entities: + - uid: 2848 + components: + - pos: -18.5,29.5 + parent: 1 + type: Transform + - uid: 7867 + components: + - pos: -64.5,57.5 + parent: 1 + type: Transform + - uid: 7883 + components: + - pos: -45.5,54.5 + parent: 1 + type: Transform +- proto: AirlockMaintTheatreLocked + entities: + - uid: 3419 + components: + - pos: -21.5,23.5 + parent: 1 + type: Transform + - uid: 4234 + components: + - pos: -43.5,27.5 + parent: 1 + type: Transform +- proto: AirlockMedicalGlass + entities: + - uid: 1995 + components: + - pos: -5.5,31.5 + parent: 1 + type: Transform + - uid: 1996 + components: + - pos: -5.5,33.5 + parent: 1 + type: Transform +- proto: AirlockMedicalGlassLocked + entities: + - uid: 1320 + components: + - pos: 6.5,28.5 + parent: 1 + type: Transform + - uid: 1354 + components: + - pos: 6.5,29.5 + parent: 1 + type: Transform + - uid: 1617 + components: + - pos: 1.5,29.5 + parent: 1 + type: Transform + - uid: 1618 + components: + - pos: 1.5,30.5 + parent: 1 + type: Transform + - uid: 10538 + components: + - rot: 3.141592653589793 rad + pos: -14.5,15.5 + parent: 1 + type: Transform +- proto: AirlockMedicalLocked + entities: + - uid: 1319 + components: + - pos: 5.5,24.5 + parent: 1 + type: Transform + - uid: 1351 + components: + - pos: 3.5,35.5 + parent: 1 + type: Transform + - uid: 1352 + components: + - pos: 5.5,33.5 + parent: 1 + type: Transform + - uid: 1353 + components: + - pos: 5.5,25.5 + parent: 1 + type: Transform + - uid: 1629 + components: + - pos: 1.5,33.5 + parent: 1 + type: Transform + - uid: 2312 + components: + - pos: 3.5,18.5 + parent: 1 + type: Transform +- proto: AirlockQuartermasterLocked + entities: + - uid: 3666 + components: + - pos: -44.5,-5.5 + parent: 1 + type: Transform +- proto: AirlockResearchDirectorLocked + entities: + - uid: 252 + components: + - pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 256 + components: + - pos: -12.5,-6.5 + parent: 1 + type: Transform +- proto: AirlockSalvageGlassLocked + entities: + - uid: 3566 + components: + - pos: -40.5,-8.5 + parent: 1 + type: Transform + - uid: 10278 + components: + - pos: -35.5,-2.5 + parent: 1 + type: Transform +- proto: AirlockSalvageLocked + entities: + - uid: 3669 + components: + - pos: -32.5,-0.5 + parent: 1 + type: Transform +- proto: AirlockScienceLocked + entities: + - uid: 221 + components: + - pos: -0.5,-10.5 + parent: 1 + type: Transform + - uid: 222 + components: + - pos: 1.5,-12.5 + parent: 1 + type: Transform + - uid: 223 + components: + - pos: -12.5,3.5 + parent: 1 + type: Transform + - uid: 224 + components: + - pos: -10.5,1.5 + parent: 1 + type: Transform + - uid: 225 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 283 + components: + - pos: -10.5,-12.5 + parent: 1 + type: Transform + - uid: 532 + components: + - pos: 19.5,-6.5 + parent: 1 + type: Transform + - uid: 1514 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-2.5 + parent: 1 + type: Transform +- proto: AirlockSecurityGlassLocked + entities: + - uid: 2017 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 5477 + components: + - pos: -50.5,69.5 + parent: 1 + type: Transform + - uid: 5481 + components: + - pos: -52.5,69.5 + parent: 1 + type: Transform + - uid: 5739 + components: + - pos: -55.5,62.5 + parent: 1 + type: Transform + - uid: 5743 + components: + - pos: -50.5,78.5 + parent: 1 + type: Transform + - uid: 5744 + components: + - pos: -52.5,78.5 + parent: 1 + type: Transform + - uid: 7336 + components: + - pos: -53.5,83.5 + parent: 1 + type: Transform + - uid: 7337 + components: + - pos: -53.5,89.5 + parent: 1 + type: Transform + - uid: 7644 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,83.5 + parent: 1 + type: Transform + - uid: 7645 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,89.5 + parent: 1 + type: Transform + - uid: 7863 + components: + - pos: -52.5,59.5 + parent: 1 + type: Transform + - uid: 7864 + components: + - pos: -50.5,59.5 + parent: 1 + type: Transform + - uid: 7865 + components: + - pos: -58.5,55.5 + parent: 1 + type: Transform + - uid: 7866 + components: + - pos: -58.5,53.5 + parent: 1 + type: Transform +- proto: AirlockSecurityLocked + entities: + - uid: 2847 + components: + - rot: 3.141592653589793 rad + pos: -14.5,27.5 + parent: 1 + type: Transform + - uid: 7895 + components: + - pos: -58.5,57.5 + parent: 1 + type: Transform + - uid: 8601 + components: + - pos: -16.5,7.5 + parent: 1 + type: Transform + - uid: 9158 + components: + - pos: -67.5,47.5 + parent: 1 + type: Transform +- proto: AirlockServiceGlassLocked + entities: + - uid: 8236 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,16.5 + parent: 1 + type: Transform +- proto: AirlockServiceLocked + entities: + - uid: 3394 + components: + - pos: -29.5,8.5 + parent: 1 + type: Transform + - uid: 3395 + components: + - rot: 3.141592653589793 rad + pos: -32.5,10.5 + parent: 1 + type: Transform +- proto: AirlockTheatreLocked + entities: + - uid: 3418 + components: + - pos: -27.5,23.5 + parent: 1 + type: Transform + - uid: 4176 + components: + - pos: -39.5,24.5 + parent: 1 + type: Transform +- proto: AirlockVirologyLocked + entities: + - uid: 1147 + components: + - pos: 5.5,19.5 + parent: 1 + type: Transform + - uid: 1148 + components: + - pos: 8.5,19.5 + parent: 1 + type: Transform +- proto: AltarChaos + entities: + - uid: 5926 + components: + - pos: -7.5,39.5 + parent: 1 + type: Transform +- proto: AltarDruid + entities: + - uid: 14452 + components: + - pos: -71.5,8.5 + parent: 1 + type: Transform + - uid: 14453 + components: + - pos: -70.5,8.5 + parent: 1 + type: Transform +- proto: AltarSpawner + entities: + - uid: 1810 + components: + - pos: 15.5,3.5 + parent: 1 + type: Transform +- proto: AmeController + entities: + - uid: 10656 + components: + - pos: -71.5,19.5 + parent: 1 + type: Transform +- proto: AmeJar + entities: + - uid: 5545 + components: + - pos: -53.477688,27.48855 + parent: 1 + type: Transform +- proto: AnomalyScanner + entities: + - uid: 313 + components: + - pos: -17.139996,-14.28252 + parent: 1 + type: Transform + - uid: 327 + components: + - pos: -16.577496,-14.37627 + parent: 1 + type: Transform +- proto: APCBasic + entities: + - uid: 315 + components: + - pos: -4.5,-0.5 + parent: 1 + type: Transform + - uid: 348 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 937 + components: + - rot: 3.141592653589793 rad + pos: 26.5,0.5 + parent: 1 + type: Transform + - uid: 1019 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,24.5 + parent: 1 + type: Transform + - uid: 1674 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,0.5 + parent: 1 + type: Transform + - uid: 2080 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,21.5 + parent: 1 + type: Transform + - uid: 2081 + components: + - pos: 4.5,35.5 + parent: 1 + type: Transform + - uid: 2514 + components: + - pos: 22.5,10.5 + parent: 1 + type: Transform + - uid: 2697 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,17.5 + parent: 1 + type: Transform + - uid: 3211 + components: + - pos: -24.5,19.5 + parent: 1 + type: Transform + - uid: 3527 + components: + - pos: -29.5,30.5 + parent: 1 + type: Transform + - uid: 3776 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-5.5 + parent: 1 + type: Transform + - uid: 3872 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-2.5 + parent: 1 + type: Transform + - uid: 4340 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,20.5 + parent: 1 + type: Transform + - uid: 4341 + components: + - pos: -41.5,12.5 + parent: 1 + type: Transform + - uid: 4610 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,14.5 + parent: 1 + type: Transform + - uid: 4611 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,27.5 + parent: 1 + type: Transform + - uid: 5103 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,-7.5 + parent: 1 + type: Transform + - uid: 6204 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,49.5 + parent: 1 + type: Transform + - uid: 6259 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,9.5 + parent: 1 + type: Transform + - uid: 6528 + components: + - pos: -4.5,57.5 + parent: 1 + type: Transform + - uid: 7743 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,85.5 + parent: 1 + type: Transform + - uid: 7842 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,63.5 + parent: 1 + type: Transform + - uid: 7843 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,56.5 + parent: 1 + type: Transform + - uid: 9395 + components: + - pos: -31.5,48.5 + parent: 1 + type: Transform + - uid: 9417 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,38.5 + parent: 1 + type: Transform + - uid: 9494 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,40.5 + parent: 1 + type: Transform + - uid: 10426 + components: + - pos: -42.5,-8.5 + parent: 1 + type: Transform + - uid: 10998 + components: + - rot: 1.5707963267948966 rad + pos: -65.5,44.5 + parent: 1 + type: Transform + - uid: 11058 + components: + - pos: -68.5,35.5 + parent: 1 + type: Transform + - uid: 11059 + components: + - rot: -1.5707963267948966 rad + pos: -76.5,36.5 + parent: 1 + type: Transform + - uid: 11060 + components: + - rot: 1.5707963267948966 rad + pos: -75.5,21.5 + parent: 1 + type: Transform + - uid: 15234 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,44.5 + parent: 1 + type: Transform +- proto: APCElectronics + entities: + - uid: 5534 + components: + - pos: -51.59716,29.743225 + parent: 1 + type: Transform + - uid: 5535 + components: + - pos: -51.50341,29.555725 + parent: 1 + type: Transform +- proto: APECircuitboard + entities: + - uid: 13662 + components: + - pos: -15.288552,-14.404373 + parent: 1 + type: Transform +- proto: AsteroidRock + entities: + - uid: 87 + components: + - pos: -4.5,-6.5 + parent: 1 + type: Transform + - uid: 89 + components: + - pos: -2.5,-6.5 + parent: 1 + type: Transform + - uid: 97 + components: + - pos: -0.5,-6.5 + parent: 1 + type: Transform + - uid: 170 + components: + - pos: -0.5,-7.5 + parent: 1 + type: Transform + - uid: 171 + components: + - pos: -0.5,-8.5 + parent: 1 + type: Transform + - uid: 174 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 200 + components: + - pos: 7.5,-9.5 + parent: 1 + type: Transform + - uid: 471 + components: + - pos: 11.5,-9.5 + parent: 1 + type: Transform + - uid: 474 + components: + - pos: 9.5,-7.5 + parent: 1 + type: Transform + - uid: 475 + components: + - pos: 9.5,-8.5 + parent: 1 + type: Transform + - uid: 506 + components: + - pos: 8.5,-9.5 + parent: 1 + type: Transform + - uid: 507 + components: + - pos: 7.5,-7.5 + parent: 1 + type: Transform + - uid: 508 + components: + - pos: 9.5,-9.5 + parent: 1 + type: Transform + - uid: 510 + components: + - pos: 8.5,-7.5 + parent: 1 + type: Transform + - uid: 511 + components: + - pos: 7.5,-8.5 + parent: 1 + type: Transform + - uid: 592 + components: + - pos: 11.5,-10.5 + parent: 1 + type: Transform + - uid: 8978 + components: + - pos: -52.5,93.5 + parent: 1 + type: Transform + - uid: 8980 + components: + - pos: -53.5,93.5 + parent: 1 + type: Transform + - uid: 8982 + components: + - pos: -54.5,93.5 + parent: 1 + type: Transform + - uid: 8983 + components: + - pos: -55.5,93.5 + parent: 1 + type: Transform + - uid: 8996 + components: + - pos: -56.5,92.5 + parent: 1 + type: Transform + - uid: 8998 + components: + - pos: -56.5,94.5 + parent: 1 + type: Transform + - uid: 8999 + components: + - pos: -54.5,92.5 + parent: 1 + type: Transform + - uid: 9003 + components: + - pos: -61.5,91.5 + parent: 1 + type: Transform + - uid: 9004 + components: + - pos: -60.5,91.5 + parent: 1 + type: Transform + - uid: 9005 + components: + - pos: -60.5,92.5 + parent: 1 + type: Transform + - uid: 9007 + components: + - pos: -59.5,92.5 + parent: 1 + type: Transform + - uid: 9011 + components: + - pos: -48.5,83.5 + parent: 1 + type: Transform + - uid: 9012 + components: + - pos: -48.5,82.5 + parent: 1 + type: Transform + - uid: 9015 + components: + - pos: -48.5,81.5 + parent: 1 + type: Transform + - uid: 9017 + components: + - pos: -47.5,82.5 + parent: 1 + type: Transform + - uid: 9019 + components: + - pos: -47.5,83.5 + parent: 1 + type: Transform + - uid: 9021 + components: + - pos: -47.5,84.5 + parent: 1 + type: Transform + - uid: 9038 + components: + - pos: -62.5,81.5 + parent: 1 + type: Transform + - uid: 9057 + components: + - pos: -48.5,84.5 + parent: 1 + type: Transform + - uid: 9060 + components: + - pos: -48.5,86.5 + parent: 1 + type: Transform + - uid: 9062 + components: + - pos: -48.5,87.5 + parent: 1 + type: Transform + - uid: 9063 + components: + - pos: -48.5,88.5 + parent: 1 + type: Transform + - uid: 9065 + components: + - pos: -48.5,89.5 + parent: 1 + type: Transform + - uid: 9068 + components: + - pos: -47.5,85.5 + parent: 1 + type: Transform + - uid: 9071 + components: + - pos: -47.5,86.5 + parent: 1 + type: Transform + - uid: 9072 + components: + - pos: -47.5,87.5 + parent: 1 + type: Transform + - uid: 9075 + components: + - pos: -58.5,92.5 + parent: 1 + type: Transform + - uid: 9076 + components: + - pos: -57.5,94.5 + parent: 1 + type: Transform + - uid: 9087 + components: + - pos: -51.5,92.5 + parent: 1 + type: Transform + - uid: 9089 + components: + - pos: -53.5,92.5 + parent: 1 + type: Transform + - uid: 9101 + components: + - pos: -52.5,92.5 + parent: 1 + type: Transform + - uid: 15259 + components: + - pos: -56.5,93.5 + parent: 1 + type: Transform + - uid: 15260 + components: + - pos: -57.5,93.5 + parent: 1 + type: Transform + - uid: 15261 + components: + - pos: -58.5,93.5 + parent: 1 + type: Transform + - uid: 15262 + components: + - pos: -59.5,93.5 + parent: 1 + type: Transform + - uid: 15263 + components: + - pos: -58.5,91.5 + parent: 1 + type: Transform + - uid: 15264 + components: + - pos: -57.5,91.5 + parent: 1 + type: Transform + - uid: 15265 + components: + - pos: -61.5,81.5 + parent: 1 + type: Transform + - uid: 15266 + components: + - pos: -60.5,81.5 + parent: 1 + type: Transform + - uid: 15267 + components: + - pos: -59.5,81.5 + parent: 1 + type: Transform + - uid: 15268 + components: + - pos: -58.5,81.5 + parent: 1 + type: Transform + - uid: 15269 + components: + - pos: -57.5,81.5 + parent: 1 + type: Transform + - uid: 15270 + components: + - pos: -57.5,80.5 + parent: 1 + type: Transform + - uid: 15271 + components: + - pos: -58.5,80.5 + parent: 1 + type: Transform + - uid: 15272 + components: + - pos: -59.5,80.5 + parent: 1 + type: Transform + - uid: 15273 + components: + - pos: -60.5,80.5 + parent: 1 + type: Transform + - uid: 15274 + components: + - pos: -51.5,93.5 + parent: 1 + type: Transform + - uid: 15275 + components: + - pos: -50.5,92.5 + parent: 1 + type: Transform + - uid: 15276 + components: + - pos: -55.5,94.5 + parent: 1 + type: Transform + - uid: 15277 + components: + - pos: -54.5,94.5 + parent: 1 + type: Transform +- proto: AsteroidRockMining + entities: + - uid: 38 + components: + - pos: -6.5,-7.5 + parent: 1 + type: Transform + - uid: 59 + components: + - pos: -7.5,-6.5 + parent: 1 + type: Transform + - uid: 63 + components: + - pos: -6.5,-8.5 + parent: 1 + type: Transform + - uid: 72 + components: + - pos: -9.5,-8.5 + parent: 1 + type: Transform + - uid: 74 + components: + - pos: -9.5,-7.5 + parent: 1 + type: Transform + - uid: 75 + components: + - pos: -5.5,-8.5 + parent: 1 + type: Transform + - uid: 84 + components: + - pos: -4.5,-7.5 + parent: 1 + type: Transform + - uid: 90 + components: + - pos: -4.5,-10.5 + parent: 1 + type: Transform + - uid: 91 + components: + - pos: -5.5,-10.5 + parent: 1 + type: Transform + - uid: 92 + components: + - pos: -3.5,-9.5 + parent: 1 + type: Transform + - uid: 93 + components: + - pos: -3.5,-8.5 + parent: 1 + type: Transform + - uid: 94 + components: + - pos: -2.5,-8.5 + parent: 1 + type: Transform + - uid: 95 + components: + - pos: -4.5,-9.5 + parent: 1 + type: Transform + - uid: 98 + components: + - pos: -6.5,-9.5 + parent: 1 + type: Transform + - uid: 99 + components: + - pos: -5.5,-9.5 + parent: 1 + type: Transform + - uid: 100 + components: + - pos: -3.5,-7.5 + parent: 1 + type: Transform + - uid: 101 + components: + - pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 102 + components: + - pos: -6.5,-10.5 + parent: 1 + type: Transform + - uid: 103 + components: + - pos: -5.5,-7.5 + parent: 1 + type: Transform + - uid: 104 + components: + - pos: -6.5,-11.5 + parent: 1 + type: Transform + - uid: 106 + components: + - pos: -5.5,-11.5 + parent: 1 + type: Transform + - uid: 107 + components: + - pos: -7.5,-10.5 + parent: 1 + type: Transform + - uid: 108 + components: + - pos: -8.5,-10.5 + parent: 1 + type: Transform + - uid: 111 + components: + - pos: -9.5,-10.5 + parent: 1 + type: Transform + - uid: 112 + components: + - pos: -9.5,-14.5 + parent: 1 + type: Transform + - uid: 114 + components: + - pos: -6.5,-14.5 + parent: 1 + type: Transform + - uid: 123 + components: + - pos: -9.5,-13.5 + parent: 1 + type: Transform + - uid: 127 + components: + - pos: -7.5,-13.5 + parent: 1 + type: Transform + - uid: 129 + components: + - pos: -7.5,-14.5 + parent: 1 + type: Transform + - uid: 130 + components: + - pos: -8.5,-14.5 + parent: 1 + type: Transform + - uid: 131 + components: + - pos: -8.5,-15.5 + parent: 1 + type: Transform + - uid: 132 + components: + - pos: -7.5,-15.5 + parent: 1 + type: Transform + - uid: 134 + components: + - pos: -3.5,-16.5 + parent: 1 + type: Transform + - uid: 135 + components: + - pos: -3.5,-15.5 + parent: 1 + type: Transform + - uid: 136 + components: + - pos: -3.5,-14.5 + parent: 1 + type: Transform + - uid: 138 + components: + - pos: -4.5,-13.5 + parent: 1 + type: Transform + - uid: 139 + components: + - pos: -3.5,-13.5 + parent: 1 + type: Transform + - uid: 140 + components: + - pos: -3.5,-12.5 + parent: 1 + type: Transform + - uid: 141 + components: + - pos: -2.5,-12.5 + parent: 1 + type: Transform + - uid: 142 + components: + - pos: -2.5,-13.5 + parent: 1 + type: Transform + - uid: 144 + components: + - pos: -2.5,-15.5 + parent: 1 + type: Transform + - uid: 145 + components: + - pos: -1.5,-15.5 + parent: 1 + type: Transform + - uid: 146 + components: + - pos: -1.5,-14.5 + parent: 1 + type: Transform + - uid: 147 + components: + - pos: -1.5,-13.5 + parent: 1 + type: Transform + - uid: 148 + components: + - pos: -1.5,-12.5 + parent: 1 + type: Transform + - uid: 150 + components: + - pos: 4.5,-13.5 + parent: 1 + type: Transform + - uid: 151 + components: + - pos: 5.5,-13.5 + parent: 1 + type: Transform + - uid: 152 + components: + - pos: 5.5,-14.5 + parent: 1 + type: Transform + - uid: 153 + components: + - pos: 4.5,-16.5 + parent: 1 + type: Transform + - uid: 154 + components: + - pos: 3.5,-17.5 + parent: 1 + type: Transform + - uid: 155 + components: + - pos: 2.5,-17.5 + parent: 1 + type: Transform + - uid: 156 + components: + - pos: 1.5,-17.5 + parent: 1 + type: Transform + - uid: 157 + components: + - pos: 0.5,-17.5 + parent: 1 + type: Transform + - uid: 158 + components: + - pos: -0.5,-16.5 + parent: 1 + type: Transform + - uid: 159 + components: + - pos: -1.5,-16.5 + parent: 1 + type: Transform + - uid: 160 + components: + - pos: 0.5,-16.5 + parent: 1 + type: Transform + - uid: 161 + components: + - pos: 3.5,-16.5 + parent: 1 + type: Transform + - uid: 162 + components: + - pos: 3.5,-15.5 + parent: 1 + type: Transform + - uid: 163 + components: + - pos: -0.5,-13.5 + parent: 1 + type: Transform + - uid: 165 + components: + - pos: 7.5,-10.5 + parent: 1 + type: Transform + - uid: 166 + components: + - pos: 7.5,-11.5 + parent: 1 + type: Transform + - uid: 291 + components: + - pos: -8.5,-7.5 + parent: 1 + type: Transform + - uid: 292 + components: + - pos: -8.5,-8.5 + parent: 1 + type: Transform + - uid: 293 + components: + - pos: -8.5,-9.5 + parent: 1 + type: Transform + - uid: 414 + components: + - pos: -7.5,-7.5 + parent: 1 + type: Transform + - uid: 415 + components: + - pos: -7.5,-8.5 + parent: 1 + type: Transform + - uid: 495 + components: + - pos: 8.5,-10.5 + parent: 1 + type: Transform + - uid: 501 + components: + - pos: 9.5,-10.5 + parent: 1 + type: Transform + - uid: 505 + components: + - pos: 10.5,-10.5 + parent: 1 + type: Transform + - uid: 3965 + components: + - pos: -9.5,-9.5 + parent: 1 + type: Transform + - uid: 14845 + components: + - pos: 6.5,-15.5 + parent: 1 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 3569 + components: + - pos: -66.5,-15.5 + parent: 1 + type: Transform + - uid: 3968 + components: + - pos: -64.5,-15.5 + parent: 1 + type: Transform + - uid: 4745 + components: + - pos: -74.5,-15.5 + parent: 1 + type: Transform + - uid: 4761 + components: + - pos: -72.5,-15.5 + parent: 1 + type: Transform + - uid: 4851 + components: + - pos: -66.5,2.5 + parent: 1 + type: Transform + - uid: 4854 + components: + - pos: -73.5,2.5 + parent: 1 + type: Transform + - uid: 4972 + components: + - pos: -73.5,-7.5 + parent: 1 + type: Transform + - uid: 4973 + components: + - pos: -66.5,-7.5 + parent: 1 + type: Transform + - uid: 14853 + components: + - pos: -34.5,-14.5 + parent: 1 + type: Transform + - uid: 14854 + components: + - pos: -32.5,-14.5 + parent: 1 + type: Transform + - uid: 15074 + components: + - pos: 32.5,8.5 + parent: 1 + type: Transform + - uid: 15076 + components: + - pos: 32.5,10.5 + parent: 1 + type: Transform + - uid: 15077 + components: + - pos: 32.5,16.5 + parent: 1 + type: Transform + - uid: 15078 + components: + - pos: 32.5,18.5 + parent: 1 + type: Transform + - uid: 15111 + components: + - pos: -30.5,46.5 + parent: 1 + type: Transform + - uid: 15112 + components: + - pos: -26.5,45.5 + parent: 1 + type: Transform +- proto: AtmosFixBlockerMarker + entities: + - uid: 13045 + components: + - pos: -90.5,45.5 + parent: 1 + type: Transform + - uid: 13048 + components: + - pos: -89.5,45.5 + parent: 1 + type: Transform + - uid: 13049 + components: + - pos: -88.5,45.5 + parent: 1 + type: Transform + - uid: 13345 + components: + - pos: -90.5,41.5 + parent: 1 + type: Transform + - uid: 13346 + components: + - pos: -89.5,41.5 + parent: 1 + type: Transform + - uid: 13347 + components: + - pos: -88.5,41.5 + parent: 1 + type: Transform + - uid: 13348 + components: + - pos: -90.5,39.5 + parent: 1 + type: Transform + - uid: 13349 + components: + - pos: -89.5,39.5 + parent: 1 + type: Transform + - uid: 13350 + components: + - pos: -88.5,39.5 + parent: 1 + type: Transform + - uid: 13357 + components: + - pos: -83.5,50.5 + parent: 1 + type: Transform + - uid: 13358 + components: + - pos: -82.5,50.5 + parent: 1 + type: Transform + - uid: 13359 + components: + - pos: -81.5,50.5 + parent: 1 + type: Transform +- proto: AtmosFixNitrogenMarker + entities: + - uid: 13354 + components: + - pos: -90.5,37.5 + parent: 1 + type: Transform + - uid: 13355 + components: + - pos: -89.5,37.5 + parent: 1 + type: Transform + - uid: 13356 + components: + - pos: -88.5,37.5 + parent: 1 + type: Transform +- proto: AtmosFixOxygenMarker + entities: + - uid: 13351 + components: + - pos: -90.5,35.5 + parent: 1 + type: Transform + - uid: 13352 + components: + - pos: -89.5,35.5 + parent: 1 + type: Transform + - uid: 13353 + components: + - pos: -88.5,35.5 + parent: 1 + type: Transform +- proto: AtmosFixPlasmaMarker + entities: + - uid: 13042 + components: + - pos: -90.5,43.5 + parent: 1 + type: Transform + - uid: 13043 + components: + - pos: -89.5,43.5 + parent: 1 + type: Transform + - uid: 13044 + components: + - pos: -88.5,43.5 + parent: 1 + type: Transform +- proto: Autolathe + entities: + - uid: 255 + components: + - pos: -5.5,-0.5 + parent: 1 + type: Transform + - uid: 14169 + components: + - pos: -38.5,-1.5 + parent: 1 + type: Transform +- proto: BananaPhoneInstrument + entities: + - uid: 4230 + components: + - pos: -40.3798,27.56435 + parent: 1 + type: Transform + - uid: 7304 + components: + - pos: -59.52376,89.56535 + parent: 1 + type: Transform +- proto: BannerScience + entities: + - uid: 229 + components: + - pos: -8.5,-5.5 + parent: 1 + type: Transform + - uid: 10082 + components: + - pos: -11.5,0.5 + parent: 1 + type: Transform +- proto: Barricade + entities: + - uid: 720 + components: + - pos: 12.5,-5.5 + parent: 1 + type: Transform + - uid: 1498 + components: + - pos: 13.5,39.5 + parent: 1 + type: Transform + - uid: 2037 + components: + - pos: 18.5,32.5 + parent: 1 + type: Transform + - uid: 2731 + components: + - pos: -28.5,53.5 + parent: 1 + type: Transform + - uid: 2794 + components: + - pos: 15.5,39.5 + parent: 1 + type: Transform + - uid: 5451 + components: + - pos: -21.5,-6.5 + parent: 1 + type: Transform + - uid: 5453 + components: + - pos: -25.5,-7.5 + parent: 1 + type: Transform + - uid: 5454 + components: + - pos: -25.5,-8.5 + parent: 1 + type: Transform + - uid: 5456 + components: + - pos: -20.5,-6.5 + parent: 1 + type: Transform + - uid: 5457 + components: + - pos: -19.5,-7.5 + parent: 1 + type: Transform + - uid: 5458 + components: + - pos: -19.5,-8.5 + parent: 1 + type: Transform + - uid: 5517 + components: + - pos: -54.5,-7.5 + parent: 1 + type: Transform + - uid: 5518 + components: + - pos: -51.5,-4.5 + parent: 1 + type: Transform + - uid: 6058 + components: + - pos: -17.5,50.5 + parent: 1 + type: Transform + - uid: 6067 + components: + - pos: -15.5,50.5 + parent: 1 + type: Transform + - uid: 7509 + components: + - pos: -28.5,52.5 + parent: 1 + type: Transform + - uid: 7510 + components: + - pos: -27.5,55.5 + parent: 1 + type: Transform + - uid: 9801 + components: + - pos: -31.5,52.5 + parent: 1 + type: Transform + - uid: 14839 + components: + - pos: 8.5,-14.5 + parent: 1 + type: Transform + - uid: 15914 + components: + - pos: 14.5,39.5 + parent: 1 + type: Transform + - uid: 15918 + components: + - pos: 17.5,35.5 + parent: 1 + type: Transform + - uid: 15919 + components: + - pos: 17.5,34.5 + parent: 1 + type: Transform +- proto: BarSign + entities: + - uid: 5279 + components: + - pos: -53.5,22.5 + parent: 1 + type: Transform + - uid: 7368 + components: + - pos: -33.5,34.5 + parent: 1 + type: Transform +- proto: BaseComputer + entities: + - uid: 5338 + components: + - rot: 3.141592653589793 rad + pos: 22.5,42.5 + parent: 1 + type: Transform +- proto: Beaker + entities: + - uid: 1959 + components: + - pos: -0.3099949,22.624739 + parent: 1 + type: Transform + - uid: 1960 + components: + - pos: -0.70061994,22.327864 + parent: 1 + type: Transform + - uid: 1961 + components: + - pos: -0.6683643,21.869993 + parent: 1 + type: Transform + - uid: 2382 + components: + - pos: 10.321079,33.83294 + parent: 1 + type: Transform + - uid: 2383 + components: + - pos: 10.680454,33.64544 + parent: 1 + type: Transform +- proto: Bed + entities: + - uid: 616 + components: + - pos: 18.5,-8.5 + parent: 1 + type: Transform + - uid: 617 + components: + - pos: 18.5,-7.5 + parent: 1 + type: Transform + - uid: 625 + components: + - pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 626 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 1831 + components: + - pos: 21.5,-0.5 + parent: 1 + type: Transform + - uid: 1909 + components: + - pos: -53.5,49.5 + parent: 1 + type: Transform + - uid: 1916 + components: + - pos: -50.5,49.5 + parent: 1 + type: Transform + - uid: 1918 + components: + - pos: -56.5,49.5 + parent: 1 + type: Transform + - uid: 2266 + components: + - pos: 17.5,23.5 + parent: 1 + type: Transform + - uid: 2345 + components: + - pos: 6.5,11.5 + parent: 1 + type: Transform + - uid: 2346 + components: + - pos: 8.5,11.5 + parent: 1 + type: Transform + - uid: 2347 + components: + - pos: 10.5,11.5 + parent: 1 + type: Transform + - uid: 2905 + components: + - pos: -17.5,22.5 + parent: 1 + type: Transform + - uid: 2907 + components: + - pos: -15.5,22.5 + parent: 1 + type: Transform + - uid: 2993 + components: + - pos: 11.5,31.5 + parent: 1 + type: Transform + - uid: 2994 + components: + - pos: 7.5,31.5 + parent: 1 + type: Transform + - uid: 3406 + components: + - pos: -31.5,8.5 + parent: 1 + type: Transform + - uid: 3480 + components: + - pos: 9.5,31.5 + parent: 1 + type: Transform + - uid: 7347 + components: + - pos: -54.5,84.5 + parent: 1 + type: Transform + - uid: 7527 + components: + - pos: -54.5,90.5 + parent: 1 + type: Transform + - uid: 10903 + components: + - pos: -5.5,58.5 + parent: 1 + type: Transform + - uid: 15164 + components: + - pos: 17.5,48.5 + parent: 1 + type: Transform +- proto: BedsheetCaptain + entities: + - uid: 10904 + components: + - pos: -5.5,58.5 + parent: 1 + type: Transform +- proto: BedsheetClown + entities: + - uid: 2267 + components: + - pos: 17.5,23.5 + parent: 1 + type: Transform +- proto: BedsheetCult + entities: + - uid: 1830 + components: + - pos: 21.5,-0.5 + parent: 1 + type: Transform +- proto: BedsheetGreen + entities: + - uid: 622 + components: + - pos: 18.5,-7.5 + parent: 1 + type: Transform + - uid: 623 + components: + - pos: 18.5,-8.5 + parent: 1 + type: Transform + - uid: 2348 + components: + - rot: 3.141592653589793 rad + pos: 6.5,11.5 + parent: 1 + type: Transform + - uid: 2349 + components: + - rot: 3.141592653589793 rad + pos: 8.5,11.5 + parent: 1 + type: Transform + - uid: 2350 + components: + - rot: 3.141592653589793 rad + pos: 10.5,11.5 + parent: 1 + type: Transform +- proto: BedsheetMedical + entities: + - uid: 2062 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,31.5 + parent: 1 + type: Transform + - uid: 2063 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,31.5 + parent: 1 + type: Transform + - uid: 2065 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,31.5 + parent: 1 + type: Transform +- proto: BedsheetOrange + entities: + - uid: 1910 + components: + - pos: -56.5,49.5 + parent: 1 + type: Transform + - uid: 1912 + components: + - pos: -53.5,49.5 + parent: 1 + type: Transform + - uid: 1922 + components: + - pos: -50.5,49.5 + parent: 1 + type: Transform + - uid: 5555 + components: + - rot: 3.141592653589793 rad + pos: -15.5,22.5 + parent: 1 + type: Transform + - uid: 5565 + components: + - rot: 3.141592653589793 rad + pos: -17.5,22.5 + parent: 1 + type: Transform +- proto: BedsheetPurple + entities: + - uid: 15165 + components: + - pos: 17.5,48.5 + parent: 1 + type: Transform +- proto: BedsheetSpawner + entities: + - uid: 624 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 627 + components: + - pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 3399 + components: + - pos: -31.5,8.5 + parent: 1 + type: Transform +- proto: BedsheetSyndie + entities: + - uid: 7352 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,90.5 + parent: 1 + type: Transform + - uid: 7356 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,84.5 + parent: 1 + type: Transform +- proto: Bible + entities: + - uid: 2750 + components: + - pos: 21.54948,-1.5566196 + parent: 1 + type: Transform +- proto: BlastDoor + entities: + - uid: 42 + components: + - pos: 3.5,-14.5 + parent: 1 + type: Transform + - links: + - 351 + type: DeviceLinkSink + - uid: 590 + components: + - pos: 15.5,-6.5 + parent: 1 + type: Transform + - links: + - 615 + type: DeviceLinkSink + - uid: 7204 + components: + - pos: -53.5,71.5 + parent: 1 + type: Transform + - links: + - 7192 + - 7218 + type: DeviceLinkSink + - uid: 7207 + components: + - pos: -53.5,72.5 + parent: 1 + type: Transform + - links: + - 7192 + - 7218 + type: DeviceLinkSink + - uid: 7208 + components: + - pos: -53.5,73.5 + parent: 1 + type: Transform + - links: + - 7192 + - 7218 + type: DeviceLinkSink + - uid: 7209 + components: + - pos: -53.5,74.5 + parent: 1 + type: Transform + - links: + - 7192 + - 7218 + type: DeviceLinkSink + - uid: 7210 + components: + - pos: -53.5,75.5 + parent: 1 + type: Transform + - links: + - 7192 + - 7218 + type: DeviceLinkSink + - uid: 7211 + components: + - pos: -53.5,76.5 + parent: 1 + type: Transform + - links: + - 7192 + - 7218 + type: DeviceLinkSink + - uid: 7212 + components: + - pos: -49.5,71.5 + parent: 1 + type: Transform + - links: + - 7192 + - 7218 + type: DeviceLinkSink + - uid: 7213 + components: + - pos: -49.5,72.5 + parent: 1 + type: Transform + - links: + - 7192 + - 7218 + type: DeviceLinkSink + - uid: 7214 + components: + - pos: -49.5,73.5 + parent: 1 + type: Transform + - links: + - 7192 + - 7218 + type: DeviceLinkSink + - uid: 7215 + components: + - pos: -49.5,74.5 + parent: 1 + type: Transform + - links: + - 7192 + - 7218 + type: DeviceLinkSink + - uid: 7216 + components: + - pos: -49.5,75.5 + parent: 1 + type: Transform + - links: + - 7192 + - 7218 + type: DeviceLinkSink + - uid: 7217 + components: + - pos: -49.5,76.5 + parent: 1 + type: Transform + - links: + - 7192 + - 7218 + type: DeviceLinkSink + - uid: 13360 + components: + - pos: -82.5,51.5 + parent: 1 + type: Transform + - links: + - 13361 + type: DeviceLinkSink + - uid: 13366 + components: + - pos: -73.5,57.5 + parent: 1 + type: Transform + - links: + - 13367 + type: DeviceLinkSink + - uid: 13817 + components: + - pos: -35.5,-14.5 + parent: 1 + type: Transform + - links: + - 13821 + type: DeviceLinkSink + - uid: 13818 + components: + - pos: -35.5,-11.5 + parent: 1 + type: Transform + - links: + - 13821 + type: DeviceLinkSink + - uid: 13819 + components: + - pos: -31.5,-11.5 + parent: 1 + type: Transform + - links: + - 13822 + type: DeviceLinkSink + - uid: 13820 + components: + - pos: -31.5,-14.5 + parent: 1 + type: Transform + - links: + - 13822 + type: DeviceLinkSink +- proto: BlastDoorOpen + entities: + - uid: 15173 + components: + - pos: 13.5,53.5 + parent: 1 + type: Transform + - links: + - 15185 + type: DeviceLinkSink + - uid: 15174 + components: + - pos: 14.5,53.5 + parent: 1 + type: Transform + - links: + - 15185 + type: DeviceLinkSink + - uid: 15175 + components: + - pos: 15.5,53.5 + parent: 1 + type: Transform + - links: + - 15185 + type: DeviceLinkSink + - uid: 15176 + components: + - pos: 16.5,53.5 + parent: 1 + type: Transform + - links: + - 15185 + type: DeviceLinkSink + - uid: 15177 + components: + - pos: 17.5,53.5 + parent: 1 + type: Transform + - links: + - 15185 + type: DeviceLinkSink + - uid: 15178 + components: + - pos: 18.5,53.5 + parent: 1 + type: Transform + - links: + - 15185 + type: DeviceLinkSink + - uid: 15179 + components: + - pos: 19.5,53.5 + parent: 1 + type: Transform + - links: + - 15185 + type: DeviceLinkSink + - uid: 15180 + components: + - pos: 19.5,52.5 + parent: 1 + type: Transform + - links: + - 15185 + type: DeviceLinkSink + - uid: 15181 + components: + - pos: 19.5,51.5 + parent: 1 + type: Transform + - links: + - 15185 + type: DeviceLinkSink + - uid: 15182 + components: + - pos: 19.5,50.5 + parent: 1 + type: Transform + - links: + - 15185 + type: DeviceLinkSink + - uid: 15183 + components: + - pos: 19.5,49.5 + parent: 1 + type: Transform + - links: + - 15185 + type: DeviceLinkSink + - uid: 15184 + components: + - pos: 19.5,48.5 + parent: 1 + type: Transform + - links: + - 15185 + type: DeviceLinkSink +- proto: Blunt + entities: + - uid: 14943 + components: + - pos: 23.683538,-11.353635 + parent: 1 + type: Transform +- proto: BookBase + entities: + - uid: 15231 + components: + - pos: 18.514118,48.62632 + parent: 1 + type: Transform +- proto: BookRandom + entities: + - uid: 3400 + components: + - pos: -26.002151,9.728267 + parent: 1 + type: Transform + - uid: 3402 + components: + - pos: -25.757227,9.715086 + parent: 1 + type: Transform + - uid: 3403 + components: + - pos: -26.484095,9.587642 + parent: 1 + type: Transform + - uid: 3404 + components: + - pos: -27.526798,9.572017 + parent: 1 + type: Transform + - uid: 3405 + components: + - pos: -26.984095,9.728267 + parent: 1 + type: Transform +- proto: BooksBag + entities: + - uid: 3401 + components: + - pos: -25.267776,9.592309 + parent: 1 + type: Transform +- proto: BookshelfFilled + entities: + - uid: 912 + components: + - pos: 27.5,-0.5 + parent: 1 + type: Transform + - uid: 3036 + components: + - pos: -22.5,15.5 + parent: 1 + type: Transform + - uid: 3089 + components: + - pos: -25.5,13.5 + parent: 1 + type: Transform + - uid: 3090 + components: + - pos: -26.5,13.5 + parent: 1 + type: Transform + - uid: 3091 + components: + - pos: -24.5,11.5 + parent: 1 + type: Transform + - uid: 3092 + components: + - pos: -25.5,11.5 + parent: 1 + type: Transform + - uid: 3093 + components: + - pos: -26.5,11.5 + parent: 1 + type: Transform + - uid: 3094 + components: + - pos: -27.5,11.5 + parent: 1 + type: Transform + - uid: 3095 + components: + - pos: -28.5,11.5 + parent: 1 + type: Transform + - uid: 3098 + components: + - pos: -22.5,8.5 + parent: 1 + type: Transform + - uid: 3099 + components: + - pos: -22.5,9.5 + parent: 1 + type: Transform + - uid: 3100 + components: + - pos: -22.5,10.5 + parent: 1 + type: Transform + - uid: 3101 + components: + - pos: -22.5,11.5 + parent: 1 + type: Transform + - uid: 3102 + components: + - pos: -24.5,13.5 + parent: 1 + type: Transform + - uid: 5357 + components: + - pos: -50.5,-0.5 + parent: 1 + type: Transform + - uid: 6334 + components: + - pos: 13.5,52.5 + parent: 1 + type: Transform + - uid: 7721 + components: + - pos: -61.5,87.5 + parent: 1 + type: Transform +- proto: BoozeDispenser + entities: + - uid: 6337 + components: + - rot: 3.141592653589793 rad + pos: 14.5,50.5 + parent: 1 + type: Transform + - uid: 9739 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,39.5 + parent: 1 + type: Transform + - uid: 9740 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,36.5 + parent: 1 + type: Transform +- proto: BorgCharger + entities: + - uid: 77 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform +- proto: BoxBeaker + entities: + - uid: 261 + components: + - pos: -9.507762,2.683241 + parent: 1 + type: Transform +- proto: BoxBodyBag + entities: + - uid: 2352 + components: + - pos: 4.501326,17.543652 + parent: 1 + type: Transform + - uid: 15780 + components: + - pos: 4.42369,38.89373 + parent: 1 + type: Transform +- proto: BoxCardboard + entities: + - uid: 15368 + components: + - desc: A box of spare encryption keys. + name: spare encryption keys box + type: MetaData + - pos: 27.49369,23.624804 + parent: 1 + type: Transform + - containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 15369 + - 15370 + - 15371 + - 15372 + - 15373 + - 15374 + type: ContainerContainer +- proto: BoxFlashbang + entities: + - uid: 8008 + components: + - pos: -62.513317,50.638466 + parent: 1 + type: Transform +- proto: BoxFolderBlack + entities: + - uid: 309 + components: + - pos: -0.32900378,-4.3884926 + parent: 1 + type: Transform + - uid: 10950 + components: + - pos: -62.793716,39.585648 + parent: 1 + type: Transform + - uid: 12801 + components: + - rot: -1.5707963267948966 rad + pos: 4.444498,15.859739 + parent: 1 + type: Transform + - uid: 12802 + components: + - rot: -1.5707963267948966 rad + pos: 4.491373,15.625364 + parent: 1 + type: Transform +- proto: BoxFolderBlue + entities: + - uid: 310 + components: + - pos: -0.45400378,-4.4353676 + parent: 1 + type: Transform + - uid: 3701 + components: + - pos: -3.3766222,0.6332265 + parent: 1 + type: Transform + - uid: 7554 + components: + - pos: -19.563011,46.957428 + parent: 1 + type: Transform + - uid: 7555 + components: + - pos: -19.391136,46.754303 + parent: 1 + type: Transform + - uid: 10942 + components: + - pos: -61.137554,41.601273 + parent: 1 + type: Transform +- proto: BoxFolderRed + entities: + - uid: 311 + components: + - pos: -0.5790038,-4.4666176 + parent: 1 + type: Transform + - uid: 7988 + components: + - pos: -60.701515,58.61342 + parent: 1 + type: Transform + - uid: 10943 + components: + - pos: -63.62193,41.570023 + parent: 1 + type: Transform + - uid: 14295 + components: + - pos: -70.85199,49.55786 + parent: 1 + type: Transform +- proto: BoxFolderWhite + entities: + - uid: 2330 + components: + - pos: 8.338302,31.568537 + parent: 1 + type: Transform + - uid: 2331 + components: + - pos: 10.338302,26.224789 + parent: 1 + type: Transform + - uid: 2372 + components: + - rot: -1.5707963267948966 rad + pos: 11.49155,19.354616 + parent: 1 + type: Transform + - uid: 12782 + components: + - pos: 15.076297,31.544756 + parent: 1 + type: Transform +- proto: BoxFolderYellow + entities: + - uid: 3756 + components: + - pos: -46.603218,1.8100886 + parent: 1 + type: Transform + - uid: 3757 + components: + - pos: -46.571968,1.5132136 + parent: 1 + type: Transform + - uid: 4264 + components: + - pos: -45.621056,-6.4408264 + parent: 1 + type: Transform + - uid: 5516 + components: + - pos: -53.308907,-5.477154 + parent: 1 + type: Transform + - uid: 8997 + components: + - pos: -32.463276,-5.5537453 + parent: 1 + type: Transform + - uid: 9001 + components: + - pos: -32.69765,-5.3818703 + parent: 1 + type: Transform + - uid: 12031 + components: + - pos: -31.49165,-1.6362362 + parent: 1 + type: Transform + - uid: 15795 + components: + - pos: -70.32392,16.415482 + parent: 1 + type: Transform + - uid: 15796 + components: + - pos: -70.60517,16.399857 + parent: 1 + type: Transform +- proto: BoxHandcuff + entities: + - uid: 7993 + components: + - pos: -56.703358,58.661354 + parent: 1 + type: Transform + - uid: 7994 + components: + - pos: -63.575817,51.607216 + parent: 1 + type: Transform +- proto: BoxLatexGloves + entities: + - uid: 2365 + components: + - pos: 7.4180007,17.608612 + parent: 1 + type: Transform +- proto: BoxLethalshot + entities: + - uid: 8376 + components: + - pos: -41.582264,61.530586 + parent: 1 + type: Transform + - uid: 8377 + components: + - pos: -41.582264,61.530586 + parent: 1 + type: Transform +- proto: BoxMouthSwab + entities: + - uid: 2364 + components: + - pos: 6.4961257,16.733612 + parent: 1 + type: Transform +- proto: BoxMRE + entities: + - uid: 620 + components: + - pos: 20.242428,-8.30875 + parent: 1 + type: Transform +- proto: BoxSterileMask + entities: + - uid: 2363 + components: + - pos: 6.4805007,17.592987 + parent: 1 + type: Transform +- proto: BoxSyringe + entities: + - uid: 372 + components: + - pos: 5.09082,-11.326899 + parent: 1 + type: Transform +- proto: BoxZiptie + entities: + - uid: 7998 + components: + - pos: -63.419567,51.34159 + parent: 1 + type: Transform +- proto: BrigTimer + entities: + - uid: 4985 + components: + - pos: -56.5,52.5 + parent: 1 + type: Transform + - linkedPorts: + 7871: + - Start: Close + - Timer: AutoClose + - Timer: Open + type: DeviceLinkSource + - uid: 4986 + components: + - pos: -53.5,52.5 + parent: 1 + type: Transform + - linkedPorts: + 7872: + - Start: Close + - Timer: AutoClose + - Timer: Open + type: DeviceLinkSource + - uid: 4987 + components: + - pos: -50.5,52.5 + parent: 1 + type: Transform + - linkedPorts: + 7873: + - Start: Close + - Timer: AutoClose + - Timer: Open + type: DeviceLinkSource +- proto: Brutepack + entities: + - uid: 1990 + components: + - pos: -1.3334682,33.60299 + parent: 1 + type: Transform + - uid: 1991 + components: + - pos: -1.5990932,33.97799 + parent: 1 + type: Transform +- proto: Bucket + entities: + - uid: 6946 + components: + - pos: -42.23494,47.51451 + parent: 1 + type: Transform + - uid: 6947 + components: + - pos: -42.42244,47.655136 + parent: 1 + type: Transform +- proto: CableApcExtension + entities: + - uid: 388 + components: + - pos: -4.5,-0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 389 + components: + - pos: -5.5,-0.5 + parent: 1 + type: Transform + - uid: 390 + components: + - pos: -6.5,-0.5 + parent: 1 + type: Transform + - uid: 391 + components: + - pos: -7.5,-0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 392 + components: + - pos: -7.5,0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 393 + components: + - pos: -7.5,1.5 + parent: 1 + type: Transform + - uid: 394 + components: + - pos: -8.5,1.5 + parent: 1 + type: Transform + - uid: 395 + components: + - pos: -9.5,1.5 + parent: 1 + type: Transform + - uid: 396 + components: + - pos: -10.5,1.5 + parent: 1 + type: Transform + - uid: 397 + components: + - pos: -11.5,1.5 + parent: 1 + type: Transform + - uid: 398 + components: + - pos: -12.5,1.5 + parent: 1 + type: Transform + - uid: 399 + components: + - pos: -7.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 400 + components: + - pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 401 + components: + - pos: -9.5,-2.5 + parent: 1 + type: Transform + - uid: 402 + components: + - pos: -10.5,-2.5 + parent: 1 + type: Transform + - uid: 403 + components: + - pos: -11.5,-2.5 + parent: 1 + type: Transform + - uid: 404 + components: + - pos: -12.5,-2.5 + parent: 1 + type: Transform + - uid: 405 + components: + - pos: -8.5,-2.5 + parent: 1 + type: Transform + - uid: 406 + components: + - pos: -12.5,-3.5 + parent: 1 + type: Transform + - uid: 407 + components: + - pos: -12.5,-4.5 + parent: 1 + type: Transform + - uid: 408 + components: + - pos: -12.5,-5.5 + parent: 1 + type: Transform + - uid: 409 + components: + - pos: -12.5,-6.5 + parent: 1 + type: Transform + - uid: 410 + components: + - pos: -12.5,-7.5 + parent: 1 + type: Transform + - uid: 411 + components: + - pos: -12.5,-8.5 + parent: 1 + type: Transform + - uid: 412 + components: + - pos: -11.5,-8.5 + parent: 1 + type: Transform + - uid: 416 + components: + - pos: -9.5,-3.5 + parent: 1 + type: Transform + - uid: 417 + components: + - pos: -9.5,-4.5 + parent: 1 + type: Transform + - uid: 418 + components: + - pos: -4.5,-1.5 + parent: 1 + type: Transform + - uid: 419 + components: + - pos: -4.5,-2.5 + parent: 1 + type: Transform + - uid: 420 + components: + - pos: -4.5,-3.5 + parent: 1 + type: Transform + - uid: 421 + components: + - pos: -4.5,-4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 422 + components: + - pos: -3.5,-1.5 + parent: 1 + type: Transform + - uid: 423 + components: + - pos: -2.5,-1.5 + parent: 1 + type: Transform + - uid: 424 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 425 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 426 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 427 + components: + - pos: 1.5,-1.5 + parent: 1 + type: Transform + - uid: 428 + components: + - pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 429 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 430 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 431 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 432 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 433 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 434 + components: + - pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 435 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 436 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 437 + components: + - pos: 2.5,-8.5 + parent: 1 + type: Transform + - uid: 438 + components: + - pos: 2.5,-9.5 + parent: 1 + type: Transform + - uid: 439 + components: + - pos: 3.5,-9.5 + parent: 1 + type: Transform + - uid: 440 + components: + - pos: 4.5,-9.5 + parent: 1 + type: Transform + - uid: 441 + components: + - pos: 1.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 442 + components: + - pos: 1.5,-10.5 + parent: 1 + type: Transform + - uid: 443 + components: + - pos: 1.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 444 + components: + - pos: 1.5,-12.5 + parent: 1 + type: Transform + - uid: 445 + components: + - pos: 1.5,-13.5 + parent: 1 + type: Transform + - uid: 446 + components: + - pos: 1.5,-14.5 + parent: 1 + type: Transform + - uid: 447 + components: + - pos: 0.5,-10.5 + parent: 1 + type: Transform + - uid: 448 + components: + - pos: -0.5,-10.5 + parent: 1 + type: Transform + - uid: 449 + components: + - pos: -1.5,-10.5 + parent: 1 + type: Transform + - uid: 450 + components: + - pos: -2.5,-10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 451 + components: + - pos: -2.5,-11.5 + parent: 1 + type: Transform + - uid: 452 + components: + - pos: -3.5,-11.5 + parent: 1 + type: Transform + - uid: 453 + components: + - pos: -4.5,-11.5 + parent: 1 + type: Transform + - uid: 454 + components: + - pos: -4.5,-12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 455 + components: + - pos: -5.5,-12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 456 + components: + - pos: -6.5,-12.5 + parent: 1 + type: Transform + - uid: 457 + components: + - pos: -7.5,-12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 458 + components: + - pos: -8.5,-12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 459 + components: + - pos: -5.5,-13.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 460 + components: + - pos: -5.5,-14.5 + parent: 1 + type: Transform + - uid: 461 + components: + - pos: -5.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 464 + components: + - pos: 16.5,-10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 588 + components: + - pos: 18.5,-10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 932 + components: + - pos: 26.5,0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 933 + components: + - pos: 26.5,1.5 + parent: 1 + type: Transform + - uid: 934 + components: + - pos: 26.5,2.5 + parent: 1 + type: Transform + - uid: 935 + components: + - pos: 27.5,2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 936 + components: + - pos: 28.5,2.5 + parent: 1 + type: Transform + - uid: 940 + components: + - pos: 29.5,2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 941 + components: + - pos: 30.5,3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 942 + components: + - pos: 30.5,2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 943 + components: + - pos: 30.5,1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 984 + components: + - pos: 26.5,27.5 + parent: 1 + type: Transform + - uid: 986 + components: + - pos: 26.5,26.5 + parent: 1 + type: Transform + - uid: 1016 + components: + - pos: 27.5,24.5 + parent: 1 + type: Transform + - uid: 1017 + components: + - pos: 26.5,24.5 + parent: 1 + type: Transform + - uid: 1021 + components: + - pos: 26.5,25.5 + parent: 1 + type: Transform + - uid: 1022 + components: + - pos: 26.5,23.5 + parent: 1 + type: Transform + - uid: 1031 + components: + - pos: 29.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1032 + components: + - pos: 28.5,24.5 + parent: 1 + type: Transform + - uid: 1418 + components: + - pos: -24.5,-12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1422 + components: + - pos: 24.5,37.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1423 + components: + - pos: 21.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1425 + components: + - pos: 24.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1439 + components: + - pos: 20.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1440 + components: + - pos: 24.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1516 + components: + - pos: -13.5,-2.5 + parent: 1 + type: Transform + - uid: 1517 + components: + - pos: -14.5,-2.5 + parent: 1 + type: Transform + - uid: 1518 + components: + - pos: -15.5,-2.5 + parent: 1 + type: Transform + - uid: 1519 + components: + - pos: -16.5,-2.5 + parent: 1 + type: Transform + - uid: 1523 + components: + - pos: -16.5,-3.5 + parent: 1 + type: Transform + - uid: 1524 + components: + - pos: -16.5,-4.5 + parent: 1 + type: Transform + - uid: 1525 + components: + - pos: -16.5,-5.5 + parent: 1 + type: Transform + - uid: 1526 + components: + - pos: -16.5,-6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1655 + components: + - pos: 16.5,-5.5 + parent: 1 + type: Transform + - uid: 1658 + components: + - pos: 15.5,-6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1659 + components: + - pos: 15.5,-7.5 + parent: 1 + type: Transform + - uid: 1660 + components: + - pos: 15.5,-9.5 + parent: 1 + type: Transform + - uid: 1662 + components: + - pos: 15.5,-10.5 + parent: 1 + type: Transform + - uid: 1665 + components: + - pos: 17.5,-10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1683 + components: + - pos: 12.5,0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1684 + components: + - pos: 11.5,0.5 + parent: 1 + type: Transform + - uid: 1685 + components: + - pos: 10.5,0.5 + parent: 1 + type: Transform + - uid: 1686 + components: + - pos: 9.5,0.5 + parent: 1 + type: Transform + - uid: 1687 + components: + - pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 1688 + components: + - pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 1689 + components: + - pos: 10.5,-0.5 + parent: 1 + type: Transform + - uid: 1690 + components: + - pos: 10.5,-1.5 + parent: 1 + type: Transform + - uid: 1691 + components: + - pos: 10.5,-2.5 + parent: 1 + type: Transform + - uid: 1692 + components: + - pos: 9.5,-2.5 + parent: 1 + type: Transform + - uid: 1693 + components: + - pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 1694 + components: + - pos: 7.5,-2.5 + parent: 1 + type: Transform + - uid: 1695 + components: + - pos: 11.5,-2.5 + parent: 1 + type: Transform + - uid: 1696 + components: + - pos: 12.5,-2.5 + parent: 1 + type: Transform + - uid: 1697 + components: + - pos: 13.5,-2.5 + parent: 1 + type: Transform + - uid: 1698 + components: + - pos: 14.5,-2.5 + parent: 1 + type: Transform + - uid: 1699 + components: + - pos: 15.5,-2.5 + parent: 1 + type: Transform + - uid: 1700 + components: + - pos: 16.5,-2.5 + parent: 1 + type: Transform + - uid: 1701 + components: + - pos: 17.5,-2.5 + parent: 1 + type: Transform + - uid: 1702 + components: + - pos: 15.5,-1.5 + parent: 1 + type: Transform + - uid: 1703 + components: + - pos: 15.5,-0.5 + parent: 1 + type: Transform + - uid: 1704 + components: + - pos: 15.5,0.5 + parent: 1 + type: Transform + - uid: 1705 + components: + - pos: 15.5,1.5 + parent: 1 + type: Transform + - uid: 1706 + components: + - pos: 15.5,2.5 + parent: 1 + type: Transform + - uid: 1707 + components: + - pos: 15.5,3.5 + parent: 1 + type: Transform + - uid: 1708 + components: + - pos: 17.5,-1.5 + parent: 1 + type: Transform + - uid: 1709 + components: + - pos: 18.5,-1.5 + parent: 1 + type: Transform + - uid: 1710 + components: + - pos: 19.5,-1.5 + parent: 1 + type: Transform + - uid: 1711 + components: + - pos: 20.5,-1.5 + parent: 1 + type: Transform + - uid: 1712 + components: + - pos: 20.5,-0.5 + parent: 1 + type: Transform + - uid: 1713 + components: + - pos: 20.5,0.5 + parent: 1 + type: Transform + - uid: 1714 + components: + - pos: 20.5,1.5 + parent: 1 + type: Transform + - uid: 1715 + components: + - pos: 21.5,-1.5 + parent: 1 + type: Transform + - uid: 1716 + components: + - pos: 20.5,-2.5 + parent: 1 + type: Transform + - uid: 1717 + components: + - pos: 10.5,-3.5 + parent: 1 + type: Transform + - uid: 1718 + components: + - pos: 10.5,-4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1719 + components: + - pos: 10.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1720 + components: + - pos: 11.5,-5.5 + parent: 1 + type: Transform + - uid: 1721 + components: + - pos: 12.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1722 + components: + - pos: 13.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1723 + components: + - pos: 14.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1724 + components: + - pos: 15.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1725 + components: + - pos: 15.5,-8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1726 + components: + - pos: 17.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1727 + components: + - pos: 18.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1728 + components: + - pos: 19.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1729 + components: + - pos: 20.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1730 + components: + - pos: 21.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1731 + components: + - pos: 22.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1732 + components: + - pos: 23.5,-5.5 + parent: 1 + type: Transform + - uid: 1733 + components: + - pos: 24.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1734 + components: + - pos: 25.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1735 + components: + - pos: 26.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1736 + components: + - pos: 27.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1737 + components: + - pos: 28.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1738 + components: + - pos: 28.5,-6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1739 + components: + - pos: 28.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1740 + components: + - pos: 28.5,-8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1769 + components: + - pos: -61.5,-10.5 + parent: 1 + type: Transform + - uid: 1847 + components: + - pos: 10.5,1.5 + parent: 1 + type: Transform + - uid: 1848 + components: + - pos: 10.5,2.5 + parent: 1 + type: Transform + - uid: 1849 + components: + - pos: 10.5,3.5 + parent: 1 + type: Transform + - uid: 1850 + components: + - pos: 10.5,4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1851 + components: + - pos: 9.5,4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1852 + components: + - pos: 8.5,4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1853 + components: + - pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 1854 + components: + - pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 1855 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1860 + components: + - pos: -9.5,-12.5 + parent: 1 + type: Transform + - uid: 1861 + components: + - pos: -10.5,-12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1862 + components: + - pos: -11.5,-12.5 + parent: 1 + type: Transform + - uid: 1863 + components: + - pos: -12.5,-12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1864 + components: + - pos: -13.5,-12.5 + parent: 1 + type: Transform + - uid: 1865 + components: + - pos: -14.5,-12.5 + parent: 1 + type: Transform + - uid: 1866 + components: + - pos: -15.5,-12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1867 + components: + - pos: -16.5,-12.5 + parent: 1 + type: Transform + - uid: 1877 + components: + - pos: -17.5,-12.5 + parent: 1 + type: Transform + - uid: 1878 + components: + - pos: -17.5,-11.5 + parent: 1 + type: Transform + - uid: 2082 + components: + - pos: 1.5,29.5 + parent: 1 + type: Transform + - uid: 2083 + components: + - pos: 2.5,29.5 + parent: 1 + type: Transform + - uid: 2084 + components: + - pos: 3.5,29.5 + parent: 1 + type: Transform + - uid: 2085 + components: + - pos: 4.5,29.5 + parent: 1 + type: Transform + - uid: 2086 + components: + - pos: 5.5,29.5 + parent: 1 + type: Transform + - uid: 2087 + components: + - pos: 6.5,29.5 + parent: 1 + type: Transform + - uid: 2088 + components: + - pos: 7.5,29.5 + parent: 1 + type: Transform + - uid: 2089 + components: + - pos: 8.5,29.5 + parent: 1 + type: Transform + - uid: 2090 + components: + - pos: 9.5,29.5 + parent: 1 + type: Transform + - uid: 2091 + components: + - pos: 10.5,29.5 + parent: 1 + type: Transform + - uid: 2092 + components: + - pos: 11.5,29.5 + parent: 1 + type: Transform + - uid: 2093 + components: + - pos: 12.5,29.5 + parent: 1 + type: Transform + - uid: 2094 + components: + - pos: 4.5,30.5 + parent: 1 + type: Transform + - uid: 2095 + components: + - pos: 4.5,31.5 + parent: 1 + type: Transform + - uid: 2096 + components: + - pos: 4.5,32.5 + parent: 1 + type: Transform + - uid: 2097 + components: + - pos: 4.5,33.5 + parent: 1 + type: Transform + - uid: 2098 + components: + - pos: 4.5,34.5 + parent: 1 + type: Transform + - uid: 2099 + components: + - pos: 4.5,35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2100 + components: + - pos: 5.5,33.5 + parent: 1 + type: Transform + - uid: 2101 + components: + - pos: 6.5,33.5 + parent: 1 + type: Transform + - uid: 2105 + components: + - pos: 7.5,33.5 + parent: 1 + type: Transform + - uid: 2106 + components: + - pos: 8.5,33.5 + parent: 1 + type: Transform + - uid: 2107 + components: + - pos: 9.5,33.5 + parent: 1 + type: Transform + - uid: 2108 + components: + - pos: 8.5,34.5 + parent: 1 + type: Transform + - uid: 2109 + components: + - pos: 8.5,35.5 + parent: 1 + type: Transform + - uid: 2110 + components: + - pos: 8.5,36.5 + parent: 1 + type: Transform + - uid: 2111 + components: + - pos: 8.5,37.5 + parent: 1 + type: Transform + - uid: 2112 + components: + - pos: 11.5,33.5 + parent: 1 + type: Transform + - uid: 2113 + components: + - pos: 11.5,34.5 + parent: 1 + type: Transform + - uid: 2114 + components: + - pos: 11.5,35.5 + parent: 1 + type: Transform + - uid: 2115 + components: + - pos: 11.5,36.5 + parent: 1 + type: Transform + - uid: 2116 + components: + - pos: 11.5,37.5 + parent: 1 + type: Transform + - uid: 2117 + components: + - pos: 4.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2119 + components: + - pos: 4.5,37.5 + parent: 1 + type: Transform + - uid: 2120 + components: + - pos: 4.5,38.5 + parent: 1 + type: Transform + - uid: 2121 + components: + - pos: 3.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2122 + components: + - pos: 2.5,38.5 + parent: 1 + type: Transform + - uid: 2123 + components: + - pos: 1.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2124 + components: + - pos: 0.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2125 + components: + - pos: 1.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2126 + components: + - pos: 2.5,21.5 + parent: 1 + type: Transform + - uid: 2127 + components: + - pos: 3.5,21.5 + parent: 1 + type: Transform + - uid: 2128 + components: + - pos: 3.5,22.5 + parent: 1 + type: Transform + - uid: 2129 + components: + - pos: 3.5,23.5 + parent: 1 + type: Transform + - uid: 2130 + components: + - pos: 3.5,24.5 + parent: 1 + type: Transform + - uid: 2131 + components: + - pos: 3.5,25.5 + parent: 1 + type: Transform + - uid: 2132 + components: + - pos: 3.5,26.5 + parent: 1 + type: Transform + - uid: 2133 + components: + - pos: 3.5,27.5 + parent: 1 + type: Transform + - uid: 2134 + components: + - pos: 2.5,23.5 + parent: 1 + type: Transform + - uid: 2135 + components: + - pos: 4.5,25.5 + parent: 1 + type: Transform + - uid: 2138 + components: + - pos: 5.5,25.5 + parent: 1 + type: Transform + - uid: 2139 + components: + - pos: 6.5,25.5 + parent: 1 + type: Transform + - uid: 2140 + components: + - pos: 7.5,25.5 + parent: 1 + type: Transform + - uid: 2141 + components: + - pos: 8.5,25.5 + parent: 1 + type: Transform + - uid: 2142 + components: + - pos: 9.5,25.5 + parent: 1 + type: Transform + - uid: 2143 + components: + - pos: 9.5,24.5 + parent: 1 + type: Transform + - uid: 2144 + components: + - pos: 9.5,23.5 + parent: 1 + type: Transform + - uid: 2145 + components: + - pos: 9.5,22.5 + parent: 1 + type: Transform + - uid: 2146 + components: + - pos: 7.5,24.5 + parent: 1 + type: Transform + - uid: 2147 + components: + - pos: 7.5,23.5 + parent: 1 + type: Transform + - uid: 2148 + components: + - pos: 7.5,22.5 + parent: 1 + type: Transform + - uid: 2149 + components: + - pos: 3.5,20.5 + parent: 1 + type: Transform + - uid: 2150 + components: + - pos: 3.5,19.5 + parent: 1 + type: Transform + - uid: 2151 + components: + - pos: 3.5,18.5 + parent: 1 + type: Transform + - uid: 2152 + components: + - pos: 3.5,17.5 + parent: 1 + type: Transform + - uid: 2153 + components: + - pos: 3.5,16.5 + parent: 1 + type: Transform + - uid: 2154 + components: + - pos: 3.5,15.5 + parent: 1 + type: Transform + - uid: 2155 + components: + - pos: 2.5,16.5 + parent: 1 + type: Transform + - uid: 2156 + components: + - pos: 1.5,16.5 + parent: 1 + type: Transform + - uid: 2157 + components: + - pos: 0.5,16.5 + parent: 1 + type: Transform + - uid: 2158 + components: + - pos: -0.5,16.5 + parent: 1 + type: Transform + - uid: 2159 + components: + - pos: 4.5,19.5 + parent: 1 + type: Transform + - uid: 2160 + components: + - pos: 5.5,19.5 + parent: 1 + type: Transform + - uid: 2161 + components: + - pos: 6.5,19.5 + parent: 1 + type: Transform + - uid: 2162 + components: + - pos: 7.5,19.5 + parent: 1 + type: Transform + - uid: 2163 + components: + - pos: 8.5,19.5 + parent: 1 + type: Transform + - uid: 2164 + components: + - pos: 9.5,19.5 + parent: 1 + type: Transform + - uid: 2165 + components: + - pos: 10.5,19.5 + parent: 1 + type: Transform + - uid: 2166 + components: + - pos: 10.5,18.5 + parent: 1 + type: Transform + - uid: 2173 + components: + - pos: 10.5,17.5 + parent: 1 + type: Transform + - uid: 2174 + components: + - pos: 10.5,16.5 + parent: 1 + type: Transform + - uid: 2175 + components: + - pos: 10.5,15.5 + parent: 1 + type: Transform + - uid: 2176 + components: + - pos: 10.5,14.5 + parent: 1 + type: Transform + - uid: 2177 + components: + - pos: 10.5,13.5 + parent: 1 + type: Transform + - uid: 2178 + components: + - pos: 10.5,12.5 + parent: 1 + type: Transform + - uid: 2179 + components: + - pos: 9.5,15.5 + parent: 1 + type: Transform + - uid: 2180 + components: + - pos: 8.5,15.5 + parent: 1 + type: Transform + - uid: 2181 + components: + - pos: 7.5,15.5 + parent: 1 + type: Transform + - uid: 2185 + components: + - pos: 9.5,12.5 + parent: 1 + type: Transform + - uid: 2186 + components: + - pos: 8.5,12.5 + parent: 1 + type: Transform + - uid: 2187 + components: + - pos: 7.5,12.5 + parent: 1 + type: Transform + - uid: 2220 + components: + - pos: 12.5,28.5 + parent: 1 + type: Transform + - uid: 2221 + components: + - pos: 13.5,28.5 + parent: 1 + type: Transform + - uid: 2222 + components: + - pos: 14.5,28.5 + parent: 1 + type: Transform + - uid: 2223 + components: + - pos: 15.5,28.5 + parent: 1 + type: Transform + - uid: 2224 + components: + - pos: 15.5,29.5 + parent: 1 + type: Transform + - uid: 2225 + components: + - pos: 15.5,30.5 + parent: 1 + type: Transform + - uid: 2226 + components: + - pos: 15.5,31.5 + parent: 1 + type: Transform + - uid: 2227 + components: + - pos: 15.5,32.5 + parent: 1 + type: Transform + - uid: 2228 + components: + - pos: 16.5,32.5 + parent: 1 + type: Transform + - uid: 2229 + components: + - pos: 17.5,32.5 + parent: 1 + type: Transform + - uid: 2230 + components: + - pos: 18.5,32.5 + parent: 1 + type: Transform + - uid: 2231 + components: + - pos: 19.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2232 + components: + - pos: 19.5,31.5 + parent: 1 + type: Transform + - uid: 2233 + components: + - pos: 19.5,30.5 + parent: 1 + type: Transform + - uid: 2234 + components: + - pos: 19.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2241 + components: + - pos: 11.5,15.5 + parent: 1 + type: Transform + - uid: 2242 + components: + - pos: 12.5,15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2243 + components: + - pos: 13.5,15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2244 + components: + - pos: 13.5,16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2245 + components: + - pos: 13.5,17.5 + parent: 1 + type: Transform + - uid: 2246 + components: + - pos: 13.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2247 + components: + - pos: 6.5,12.5 + parent: 1 + type: Transform + - uid: 2248 + components: + - pos: 6.5,15.5 + parent: 1 + type: Transform + - uid: 2269 + components: + - pos: 1.5,23.5 + parent: 1 + type: Transform + - uid: 2270 + components: + - pos: 0.5,23.5 + parent: 1 + type: Transform + - uid: 2271 + components: + - pos: -0.5,23.5 + parent: 1 + type: Transform + - uid: 2272 + components: + - pos: -1.5,23.5 + parent: 1 + type: Transform + - uid: 2273 + components: + - pos: -2.5,23.5 + parent: 1 + type: Transform + - uid: 2274 + components: + - pos: -2.5,22.5 + parent: 1 + type: Transform + - uid: 2275 + components: + - pos: -2.5,21.5 + parent: 1 + type: Transform + - uid: 2276 + components: + - pos: -2.5,20.5 + parent: 1 + type: Transform + - uid: 2277 + components: + - pos: -2.5,19.5 + parent: 1 + type: Transform + - uid: 2278 + components: + - pos: -2.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2279 + components: + - pos: -2.5,25.5 + parent: 1 + type: Transform + - uid: 2280 + components: + - pos: -2.5,26.5 + parent: 1 + type: Transform + - uid: 2281 + components: + - pos: 0.5,24.5 + parent: 1 + type: Transform + - uid: 2282 + components: + - pos: 0.5,25.5 + parent: 1 + type: Transform + - uid: 2283 + components: + - pos: 0.5,26.5 + parent: 1 + type: Transform + - uid: 2284 + components: + - pos: 0.5,27.5 + parent: 1 + type: Transform + - uid: 2288 + components: + - pos: 0.5,29.5 + parent: 1 + type: Transform + - uid: 2289 + components: + - pos: -0.5,29.5 + parent: 1 + type: Transform + - uid: 2290 + components: + - pos: -1.5,29.5 + parent: 1 + type: Transform + - uid: 2291 + components: + - pos: -2.5,29.5 + parent: 1 + type: Transform + - uid: 2292 + components: + - pos: -3.5,29.5 + parent: 1 + type: Transform + - uid: 2293 + components: + - pos: -3.5,30.5 + parent: 1 + type: Transform + - uid: 2294 + components: + - pos: -3.5,31.5 + parent: 1 + type: Transform + - uid: 2295 + components: + - pos: -3.5,32.5 + parent: 1 + type: Transform + - uid: 2296 + components: + - pos: -3.5,33.5 + parent: 1 + type: Transform + - uid: 2297 + components: + - pos: -0.5,30.5 + parent: 1 + type: Transform + - uid: 2298 + components: + - pos: -0.5,31.5 + parent: 1 + type: Transform + - uid: 2299 + components: + - pos: -0.5,32.5 + parent: 1 + type: Transform + - uid: 2300 + components: + - pos: -0.5,33.5 + parent: 1 + type: Transform + - uid: 2399 + components: + - pos: 16.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2519 + components: + - pos: 22.5,10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2520 + components: + - pos: 22.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2521 + components: + - pos: 22.5,8.5 + parent: 1 + type: Transform + - uid: 2522 + components: + - pos: 22.5,7.5 + parent: 1 + type: Transform + - uid: 2523 + components: + - pos: 22.5,6.5 + parent: 1 + type: Transform + - uid: 2524 + components: + - pos: 21.5,6.5 + parent: 1 + type: Transform + - uid: 2525 + components: + - pos: 20.5,6.5 + parent: 1 + type: Transform + - uid: 2526 + components: + - pos: 19.5,6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2527 + components: + - pos: 18.5,6.5 + parent: 1 + type: Transform + - uid: 2528 + components: + - pos: 17.5,6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2529 + components: + - pos: 16.5,6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2530 + components: + - pos: 15.5,6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2531 + components: + - pos: 14.5,6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2532 + components: + - pos: 13.5,6.5 + parent: 1 + type: Transform + - uid: 2533 + components: + - pos: 22.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2534 + components: + - pos: 22.5,4.5 + parent: 1 + type: Transform + - uid: 2535 + components: + - pos: 22.5,3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2536 + components: + - pos: 17.5,7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2537 + components: + - pos: 17.5,8.5 + parent: 1 + type: Transform + - uid: 2538 + components: + - pos: 17.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2539 + components: + - pos: 17.5,10.5 + parent: 1 + type: Transform + - uid: 2540 + components: + - pos: 17.5,11.5 + parent: 1 + type: Transform + - uid: 2541 + components: + - pos: 17.5,12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2542 + components: + - pos: 22.5,11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2543 + components: + - pos: 22.5,12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2544 + components: + - pos: 22.5,13.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2545 + components: + - pos: 22.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2546 + components: + - pos: 22.5,15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2547 + components: + - pos: 22.5,16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2548 + components: + - pos: 22.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2549 + components: + - pos: 22.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2550 + components: + - pos: 22.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2551 + components: + - pos: 22.5,20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2552 + components: + - pos: 22.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2553 + components: + - pos: 22.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2554 + components: + - pos: 22.5,23.5 + parent: 1 + type: Transform + - uid: 2555 + components: + - pos: 22.5,24.5 + parent: 1 + type: Transform + - uid: 2556 + components: + - pos: 22.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2557 + components: + - pos: 23.5,6.5 + parent: 1 + type: Transform + - uid: 2558 + components: + - pos: 24.5,6.5 + parent: 1 + type: Transform + - uid: 2559 + components: + - pos: 25.5,6.5 + parent: 1 + type: Transform + - uid: 2560 + components: + - pos: 26.5,6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2561 + components: + - pos: 27.5,6.5 + parent: 1 + type: Transform + - uid: 2562 + components: + - pos: 27.5,7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2563 + components: + - pos: 27.5,8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2564 + components: + - pos: 27.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2565 + components: + - pos: 27.5,10.5 + parent: 1 + type: Transform + - uid: 2566 + components: + - pos: 28.5,8.5 + parent: 1 + type: Transform + - uid: 2567 + components: + - pos: 29.5,8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2568 + components: + - pos: 30.5,8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2569 + components: + - pos: 27.5,11.5 + parent: 1 + type: Transform + - uid: 2570 + components: + - pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 2571 + components: + - pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 2572 + components: + - pos: 23.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2573 + components: + - pos: 24.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2574 + components: + - pos: 25.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2575 + components: + - pos: 26.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2576 + components: + - pos: 27.5,14.5 + parent: 1 + type: Transform + - uid: 2577 + components: + - pos: 25.5,13.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2578 + components: + - pos: 25.5,12.5 + parent: 1 + type: Transform + - uid: 2579 + components: + - pos: 25.5,11.5 + parent: 1 + type: Transform + - uid: 2580 + components: + - pos: 23.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2581 + components: + - pos: 24.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2582 + components: + - pos: 25.5,18.5 + parent: 1 + type: Transform + - uid: 2583 + components: + - pos: 26.5,18.5 + parent: 1 + type: Transform + - uid: 2584 + components: + - pos: 27.5,18.5 + parent: 1 + type: Transform + - uid: 2585 + components: + - pos: 28.5,18.5 + parent: 1 + type: Transform + - uid: 2586 + components: + - pos: 29.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2587 + components: + - pos: 30.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2588 + components: + - pos: 26.5,19.5 + parent: 1 + type: Transform + - uid: 2594 + components: + - pos: 31.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2595 + components: + - pos: 31.5,8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2596 + components: + - pos: -7.5,4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2597 + components: + - pos: -7.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2598 + components: + - pos: -6.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2599 + components: + - pos: -5.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2600 + components: + - pos: -4.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2601 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2602 + components: + - pos: -2.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2603 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2604 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2605 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2606 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2607 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2608 + components: + - pos: -8.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2609 + components: + - pos: -9.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2610 + components: + - pos: -10.5,5.5 + parent: 1 + type: Transform + - uid: 2611 + components: + - pos: -11.5,5.5 + parent: 1 + type: Transform + - uid: 2612 + components: + - pos: -12.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2613 + components: + - pos: -13.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2614 + components: + - pos: -14.5,5.5 + parent: 1 + type: Transform + - uid: 2615 + components: + - pos: -15.5,5.5 + parent: 1 + type: Transform + - uid: 2616 + components: + - pos: -16.5,5.5 + parent: 1 + type: Transform + - uid: 2617 + components: + - pos: -16.5,4.5 + parent: 1 + type: Transform + - uid: 2618 + components: + - pos: -4.5,33.5 + parent: 1 + type: Transform + - uid: 2619 + components: + - pos: -5.5,33.5 + parent: 1 + type: Transform + - uid: 2620 + components: + - pos: -6.5,33.5 + parent: 1 + type: Transform + - uid: 2621 + components: + - pos: -7.5,33.5 + parent: 1 + type: Transform + - uid: 2622 + components: + - pos: -8.5,33.5 + parent: 1 + type: Transform + - uid: 2623 + components: + - pos: -8.5,32.5 + parent: 1 + type: Transform + - uid: 2624 + components: + - pos: -8.5,31.5 + parent: 1 + type: Transform + - uid: 2625 + components: + - pos: -8.5,30.5 + parent: 1 + type: Transform + - uid: 2626 + components: + - pos: -8.5,29.5 + parent: 1 + type: Transform + - uid: 2627 + components: + - pos: -8.5,28.5 + parent: 1 + type: Transform + - uid: 2628 + components: + - pos: -9.5,32.5 + parent: 1 + type: Transform + - uid: 2629 + components: + - pos: -10.5,32.5 + parent: 1 + type: Transform + - uid: 2630 + components: + - pos: -11.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2631 + components: + - pos: -12.5,32.5 + parent: 1 + type: Transform + - uid: 2699 + components: + - pos: -10.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2700 + components: + - pos: -11.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2701 + components: + - pos: -12.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2702 + components: + - pos: -12.5,16.5 + parent: 1 + type: Transform + - uid: 2703 + components: + - pos: -12.5,15.5 + parent: 1 + type: Transform + - uid: 2704 + components: + - pos: -12.5,14.5 + parent: 1 + type: Transform + - uid: 2705 + components: + - pos: -12.5,13.5 + parent: 1 + type: Transform + - uid: 2706 + components: + - pos: -12.5,12.5 + parent: 1 + type: Transform + - uid: 2707 + components: + - pos: -12.5,11.5 + parent: 1 + type: Transform + - uid: 2708 + components: + - pos: -12.5,10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2709 + components: + - pos: -12.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2710 + components: + - pos: -11.5,9.5 + parent: 1 + type: Transform + - uid: 2711 + components: + - pos: -10.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2712 + components: + - pos: -9.5,9.5 + parent: 1 + type: Transform + - uid: 2713 + components: + - pos: -8.5,9.5 + parent: 1 + type: Transform + - uid: 2714 + components: + - pos: -13.5,9.5 + parent: 1 + type: Transform + - uid: 2715 + components: + - pos: -14.5,9.5 + parent: 1 + type: Transform + - uid: 2716 + components: + - pos: -15.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2717 + components: + - pos: -16.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2718 + components: + - pos: -13.5,13.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2719 + components: + - pos: -14.5,13.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2720 + components: + - pos: -15.5,13.5 + parent: 1 + type: Transform + - uid: 2721 + components: + - pos: -16.5,13.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2722 + components: + - pos: -11.5,12.5 + parent: 1 + type: Transform + - uid: 2723 + components: + - pos: -10.5,12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2724 + components: + - pos: -9.5,12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2725 + components: + - pos: -8.5,12.5 + parent: 1 + type: Transform + - uid: 2726 + components: + - pos: -11.5,15.5 + parent: 1 + type: Transform + - uid: 2727 + components: + - pos: -10.5,15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2728 + components: + - pos: -9.5,15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2729 + components: + - pos: -8.5,15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2734 + components: + - pos: -12.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2735 + components: + - pos: -12.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2736 + components: + - pos: -12.5,20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2737 + components: + - pos: -12.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2738 + components: + - pos: -12.5,22.5 + parent: 1 + type: Transform + - uid: 2739 + components: + - pos: -12.5,23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2740 + components: + - pos: -12.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2741 + components: + - pos: -12.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2742 + components: + - pos: -12.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2743 + components: + - pos: -12.5,27.5 + parent: 1 + type: Transform + - uid: 2744 + components: + - pos: -12.5,28.5 + parent: 1 + type: Transform + - uid: 2745 + components: + - pos: -12.5,29.5 + parent: 1 + type: Transform + - uid: 2746 + components: + - pos: -9.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2747 + components: + - pos: -8.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2748 + components: + - pos: -7.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2778 + components: + - pos: -20.5,17.5 + parent: 1 + type: Transform + - uid: 2779 + components: + - pos: -20.5,16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2783 + components: + - pos: -21.5,16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2785 + components: + - pos: -19.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2793 + components: + - pos: -15.5,8.5 + parent: 1 + type: Transform + - uid: 2853 + components: + - pos: -13.5,28.5 + parent: 1 + type: Transform + - uid: 2854 + components: + - pos: -14.5,28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2855 + components: + - pos: -15.5,28.5 + parent: 1 + type: Transform + - uid: 2856 + components: + - pos: -16.5,28.5 + parent: 1 + type: Transform + - uid: 2857 + components: + - pos: -14.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2858 + components: + - pos: -16.5,29.5 + parent: 1 + type: Transform + - uid: 2859 + components: + - pos: -16.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2860 + components: + - pos: -17.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2861 + components: + - pos: -15.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2862 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3041 + components: + - pos: -16.5,27.5 + parent: 1 + type: Transform + - uid: 3042 + components: + - pos: -16.5,26.5 + parent: 1 + type: Transform + - uid: 3159 + components: + - pos: -29.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3174 + components: + - pos: -16.5,25.5 + parent: 1 + type: Transform + - uid: 3178 + components: + - pos: -16.5,24.5 + parent: 1 + type: Transform + - uid: 3212 + components: + - pos: -24.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3224 + components: + - pos: -19.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3225 + components: + - pos: -20.5,24.5 + parent: 1 + type: Transform + - uid: 3226 + components: + - pos: -20.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3227 + components: + - pos: -20.5,26.5 + parent: 1 + type: Transform + - uid: 3228 + components: + - pos: -21.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3229 + components: + - pos: -22.5,26.5 + parent: 1 + type: Transform + - uid: 3230 + components: + - pos: -23.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3231 + components: + - pos: -24.5,26.5 + parent: 1 + type: Transform + - uid: 3232 + components: + - pos: -24.5,27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3233 + components: + - pos: -24.5,28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3234 + components: + - pos: -24.5,29.5 + parent: 1 + type: Transform + - uid: 3235 + components: + - pos: -23.5,29.5 + parent: 1 + type: Transform + - uid: 3236 + components: + - pos: -20.5,23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3237 + components: + - pos: -21.5,23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3238 + components: + - pos: -22.5,23.5 + parent: 1 + type: Transform + - uid: 3239 + components: + - pos: -23.5,23.5 + parent: 1 + type: Transform + - uid: 3240 + components: + - pos: -24.5,23.5 + parent: 1 + type: Transform + - uid: 3241 + components: + - pos: -25.5,23.5 + parent: 1 + type: Transform + - uid: 3242 + components: + - pos: -26.5,23.5 + parent: 1 + type: Transform + - uid: 3243 + components: + - pos: -27.5,23.5 + parent: 1 + type: Transform + - uid: 3244 + components: + - pos: -28.5,23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3245 + components: + - pos: -29.5,23.5 + parent: 1 + type: Transform + - uid: 3246 + components: + - pos: -29.5,24.5 + parent: 1 + type: Transform + - uid: 3247 + components: + - pos: -29.5,25.5 + parent: 1 + type: Transform + - uid: 3248 + components: + - pos: -29.5,26.5 + parent: 1 + type: Transform + - uid: 3249 + components: + - pos: -29.5,27.5 + parent: 1 + type: Transform + - uid: 3250 + components: + - pos: -29.5,28.5 + parent: 1 + type: Transform + - uid: 3251 + components: + - pos: -30.5,28.5 + parent: 1 + type: Transform + - uid: 3252 + components: + - pos: -31.5,28.5 + parent: 1 + type: Transform + - uid: 3253 + components: + - pos: -32.5,28.5 + parent: 1 + type: Transform + - uid: 3254 + components: + - pos: -33.5,28.5 + parent: 1 + type: Transform + - uid: 3255 + components: + - pos: -30.5,25.5 + parent: 1 + type: Transform + - uid: 3256 + components: + - pos: -31.5,25.5 + parent: 1 + type: Transform + - uid: 3257 + components: + - pos: -32.5,25.5 + parent: 1 + type: Transform + - uid: 3258 + components: + - pos: -33.5,25.5 + parent: 1 + type: Transform + - uid: 3259 + components: + - pos: -34.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3260 + components: + - pos: -34.5,28.5 + parent: 1 + type: Transform + - uid: 3261 + components: + - pos: -24.5,18.5 + parent: 1 + type: Transform + - uid: 3262 + components: + - pos: -24.5,17.5 + parent: 1 + type: Transform + - uid: 3263 + components: + - pos: -24.5,16.5 + parent: 1 + type: Transform + - uid: 3264 + components: + - pos: -24.5,15.5 + parent: 1 + type: Transform + - uid: 3265 + components: + - pos: -25.5,15.5 + parent: 1 + type: Transform + - uid: 3266 + components: + - pos: -26.5,15.5 + parent: 1 + type: Transform + - uid: 3267 + components: + - pos: -27.5,15.5 + parent: 1 + type: Transform + - uid: 3268 + components: + - pos: -28.5,15.5 + parent: 1 + type: Transform + - uid: 3269 + components: + - pos: -25.5,18.5 + parent: 1 + type: Transform + - uid: 3270 + components: + - pos: -26.5,18.5 + parent: 1 + type: Transform + - uid: 3271 + components: + - pos: -27.5,18.5 + parent: 1 + type: Transform + - uid: 3272 + components: + - pos: -28.5,18.5 + parent: 1 + type: Transform + - uid: 3273 + components: + - pos: -23.5,16.5 + parent: 1 + type: Transform + - uid: 3274 + components: + - pos: -22.5,16.5 + parent: 1 + type: Transform + - uid: 3275 + components: + - pos: -23.5,15.5 + parent: 1 + type: Transform + - uid: 3276 + components: + - pos: -23.5,14.5 + parent: 1 + type: Transform + - uid: 3277 + components: + - pos: -23.5,13.5 + parent: 1 + type: Transform + - uid: 3278 + components: + - pos: -23.5,12.5 + parent: 1 + type: Transform + - uid: 3279 + components: + - pos: -23.5,11.5 + parent: 1 + type: Transform + - uid: 3280 + components: + - pos: -23.5,10.5 + parent: 1 + type: Transform + - uid: 3281 + components: + - pos: -23.5,9.5 + parent: 1 + type: Transform + - uid: 3282 + components: + - pos: -23.5,8.5 + parent: 1 + type: Transform + - uid: 3283 + components: + - pos: -24.5,8.5 + parent: 1 + type: Transform + - uid: 3284 + components: + - pos: -25.5,8.5 + parent: 1 + type: Transform + - uid: 3285 + components: + - pos: -26.5,8.5 + parent: 1 + type: Transform + - uid: 3286 + components: + - pos: -27.5,8.5 + parent: 1 + type: Transform + - uid: 3287 + components: + - pos: -28.5,8.5 + parent: 1 + type: Transform + - uid: 3288 + components: + - pos: -29.5,8.5 + parent: 1 + type: Transform + - uid: 3289 + components: + - pos: -30.5,8.5 + parent: 1 + type: Transform + - uid: 3290 + components: + - pos: -30.5,9.5 + parent: 1 + type: Transform + - uid: 3291 + components: + - pos: -30.5,10.5 + parent: 1 + type: Transform + - uid: 3292 + components: + - pos: -31.5,10.5 + parent: 1 + type: Transform + - uid: 3293 + components: + - pos: -31.5,10.5 + parent: 1 + type: Transform + - uid: 3294 + components: + - pos: -32.5,10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3295 + components: + - pos: -33.5,10.5 + parent: 1 + type: Transform + - uid: 3296 + components: + - pos: -33.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3297 + components: + - pos: -23.5,7.5 + parent: 1 + type: Transform + - uid: 3298 + components: + - pos: -23.5,6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3299 + components: + - pos: -23.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3300 + components: + - pos: -24.5,5.5 + parent: 1 + type: Transform + - uid: 3301 + components: + - pos: -25.5,5.5 + parent: 1 + type: Transform + - uid: 3302 + components: + - pos: -26.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3303 + components: + - pos: -27.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3304 + components: + - pos: -28.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3305 + components: + - pos: -29.5,5.5 + parent: 1 + type: Transform + - uid: 3306 + components: + - pos: -30.5,5.5 + parent: 1 + type: Transform + - uid: 3307 + components: + - pos: -31.5,5.5 + parent: 1 + type: Transform + - uid: 3308 + components: + - pos: -32.5,5.5 + parent: 1 + type: Transform + - uid: 3309 + components: + - pos: -33.5,5.5 + parent: 1 + type: Transform + - uid: 3310 + components: + - pos: -22.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3311 + components: + - pos: -21.5,5.5 + parent: 1 + type: Transform + - uid: 3312 + components: + - pos: -20.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3313 + components: + - pos: -19.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3314 + components: + - pos: -19.5,6.5 + parent: 1 + type: Transform + - uid: 3323 + components: + - pos: -42.5,-11.5 + parent: 1 + type: Transform + - uid: 3352 + components: + - pos: -42.5,-13.5 + parent: 1 + type: Transform + - uid: 3353 + components: + - pos: -43.5,-13.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3354 + components: + - pos: -47.5,-13.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3355 + components: + - pos: -42.5,-12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3359 + components: + - pos: -39.5,-12.5 + parent: 1 + type: Transform + - uid: 3479 + components: + - pos: 17.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3485 + components: + - pos: 21.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3531 + components: + - pos: -29.5,29.5 + parent: 1 + type: Transform + - uid: 3556 + components: + - pos: -42.5,-10.5 + parent: 1 + type: Transform + - uid: 3557 + components: + - pos: -39.5,-13.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3681 + components: + - pos: -39.5,-10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3702 + components: + - pos: -34.5,-6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3703 + components: + - pos: -48.5,-13.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3707 + components: + - pos: -42.5,-8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3709 + components: + - pos: -34.5,-10.5 + parent: 1 + type: Transform + - uid: 3711 + components: + - pos: -44.5,-13.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3712 + components: + - pos: -45.5,-13.5 + parent: 1 + type: Transform + - uid: 3713 + components: + - pos: -46.5,-13.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3777 + components: + - pos: -42.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3778 + components: + - pos: -41.5,-5.5 + parent: 1 + type: Transform + - uid: 3779 + components: + - pos: -40.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3780 + components: + - pos: -39.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3781 + components: + - pos: -38.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3782 + components: + - pos: -37.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3783 + components: + - pos: -40.5,-4.5 + parent: 1 + type: Transform + - uid: 3784 + components: + - pos: -40.5,-3.5 + parent: 1 + type: Transform + - uid: 3785 + components: + - pos: -40.5,-2.5 + parent: 1 + type: Transform + - uid: 3786 + components: + - pos: -40.5,-1.5 + parent: 1 + type: Transform + - uid: 3787 + components: + - pos: -40.5,-0.5 + parent: 1 + type: Transform + - uid: 3788 + components: + - pos: -40.5,0.5 + parent: 1 + type: Transform + - uid: 3789 + components: + - pos: -40.5,1.5 + parent: 1 + type: Transform + - uid: 3790 + components: + - pos: -40.5,2.5 + parent: 1 + type: Transform + - uid: 3791 + components: + - pos: -37.5,-4.5 + parent: 1 + type: Transform + - uid: 3792 + components: + - pos: -37.5,-3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3793 + components: + - pos: -37.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3794 + components: + - pos: -37.5,-1.5 + parent: 1 + type: Transform + - uid: 3795 + components: + - pos: -37.5,-0.5 + parent: 1 + type: Transform + - uid: 3796 + components: + - pos: -37.5,0.5 + parent: 1 + type: Transform + - uid: 3797 + components: + - pos: -37.5,1.5 + parent: 1 + type: Transform + - uid: 3798 + components: + - pos: -37.5,2.5 + parent: 1 + type: Transform + - uid: 3799 + components: + - pos: -36.5,-2.5 + parent: 1 + type: Transform + - uid: 3800 + components: + - pos: -35.5,-2.5 + parent: 1 + type: Transform + - uid: 3801 + components: + - pos: -34.5,-2.5 + parent: 1 + type: Transform + - uid: 3802 + components: + - pos: -33.5,-2.5 + parent: 1 + type: Transform + - uid: 3803 + components: + - pos: -32.5,-2.5 + parent: 1 + type: Transform + - uid: 3804 + components: + - pos: -32.5,-1.5 + parent: 1 + type: Transform + - uid: 3805 + components: + - pos: -32.5,-0.5 + parent: 1 + type: Transform + - uid: 3806 + components: + - pos: -32.5,0.5 + parent: 1 + type: Transform + - uid: 3807 + components: + - pos: -32.5,1.5 + parent: 1 + type: Transform + - uid: 3808 + components: + - pos: -32.5,2.5 + parent: 1 + type: Transform + - uid: 3809 + components: + - pos: -37.5,3.5 + parent: 1 + type: Transform + - uid: 3810 + components: + - pos: -37.5,4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3811 + components: + - pos: -37.5,5.5 + parent: 1 + type: Transform + - uid: 3812 + components: + - pos: -36.5,5.5 + parent: 1 + type: Transform + - uid: 3813 + components: + - pos: -35.5,5.5 + parent: 1 + type: Transform + - uid: 3814 + components: + - pos: -38.5,5.5 + parent: 1 + type: Transform + - uid: 3815 + components: + - pos: -39.5,5.5 + parent: 1 + type: Transform + - uid: 3816 + components: + - pos: -40.5,5.5 + parent: 1 + type: Transform + - uid: 3817 + components: + - pos: -41.5,-2.5 + parent: 1 + type: Transform + - uid: 3818 + components: + - pos: -42.5,-2.5 + parent: 1 + type: Transform + - uid: 3819 + components: + - pos: -43.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3820 + components: + - pos: -44.5,-2.5 + parent: 1 + type: Transform + - uid: 3821 + components: + - pos: -44.5,-3.5 + parent: 1 + type: Transform + - uid: 3822 + components: + - pos: -44.5,-4.5 + parent: 1 + type: Transform + - uid: 3823 + components: + - pos: -44.5,-5.5 + parent: 1 + type: Transform + - uid: 3824 + components: + - pos: -44.5,-6.5 + parent: 1 + type: Transform + - uid: 3825 + components: + - pos: -45.5,-2.5 + parent: 1 + type: Transform + - uid: 3826 + components: + - pos: -44.5,-1.5 + parent: 1 + type: Transform + - uid: 3827 + components: + - pos: -44.5,-0.5 + parent: 1 + type: Transform + - uid: 3828 + components: + - pos: -44.5,0.5 + parent: 1 + type: Transform + - uid: 3829 + components: + - pos: -44.5,1.5 + parent: 1 + type: Transform + - uid: 3830 + components: + - pos: -45.5,1.5 + parent: 1 + type: Transform + - uid: 3831 + components: + - pos: -39.5,-6.5 + parent: 1 + type: Transform + - uid: 3834 + components: + - pos: -39.5,-9.5 + parent: 1 + type: Transform + - uid: 3836 + components: + - pos: -39.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3838 + components: + - pos: -37.5,-6.5 + parent: 1 + type: Transform + - uid: 3839 + components: + - pos: -37.5,-7.5 + parent: 1 + type: Transform + - uid: 3845 + components: + - pos: -32.5,-3.5 + parent: 1 + type: Transform + - uid: 3847 + components: + - pos: -32.5,-12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3848 + components: + - pos: -32.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3849 + components: + - pos: -32.5,-10.5 + parent: 1 + type: Transform + - uid: 3850 + components: + - pos: -34.5,-12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3852 + components: + - pos: -33.5,-9.5 + parent: 1 + type: Transform + - uid: 3853 + components: + - pos: -33.5,-10.5 + parent: 1 + type: Transform + - uid: 3855 + components: + - pos: -40.5,-9.5 + parent: 1 + type: Transform + - uid: 3856 + components: + - pos: -41.5,-9.5 + parent: 1 + type: Transform + - uid: 3857 + components: + - pos: -42.5,-9.5 + parent: 1 + type: Transform + - uid: 3858 + components: + - pos: -43.5,-9.5 + parent: 1 + type: Transform + - uid: 3859 + components: + - pos: -44.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3860 + components: + - pos: -45.5,-9.5 + parent: 1 + type: Transform + - uid: 3861 + components: + - pos: -46.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3862 + components: + - pos: -47.5,-9.5 + parent: 1 + type: Transform + - uid: 3863 + components: + - pos: -47.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3864 + components: + - pos: -48.5,-2.5 + parent: 1 + type: Transform + - uid: 3866 + components: + - pos: -48.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3867 + components: + - pos: -48.5,-0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3868 + components: + - pos: -48.5,0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3869 + components: + - pos: -48.5,1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3870 + components: + - pos: -44.5,2.5 + parent: 1 + type: Transform + - uid: 3873 + components: + - pos: -27.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3874 + components: + - pos: -26.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3875 + components: + - pos: -26.5,-1.5 + parent: 1 + type: Transform + - uid: 3876 + components: + - pos: -26.5,-0.5 + parent: 1 + type: Transform + - uid: 3877 + components: + - pos: -26.5,0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3878 + components: + - pos: -26.5,1.5 + parent: 1 + type: Transform + - uid: 3879 + components: + - pos: -26.5,2.5 + parent: 1 + type: Transform + - uid: 3880 + components: + - pos: -25.5,2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3881 + components: + - pos: -25.5,0.5 + parent: 1 + type: Transform + - uid: 3882 + components: + - pos: -25.5,-1.5 + parent: 1 + type: Transform + - uid: 3883 + components: + - pos: -26.5,3.5 + parent: 1 + type: Transform + - uid: 3884 + components: + - pos: -26.5,-3.5 + parent: 1 + type: Transform + - uid: 3885 + components: + - pos: -26.5,-4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3886 + components: + - pos: -26.5,-5.5 + parent: 1 + type: Transform + - uid: 3887 + components: + - pos: -26.5,-6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3888 + components: + - pos: -26.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3890 + components: + - pos: -25.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3891 + components: + - pos: -24.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3892 + components: + - pos: -23.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3893 + components: + - pos: -22.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3894 + components: + - pos: -21.5,-7.5 + parent: 1 + type: Transform + - uid: 3895 + components: + - pos: -20.5,-7.5 + parent: 1 + type: Transform + - uid: 3896 + components: + - pos: -20.5,-8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3897 + components: + - pos: -20.5,-9.5 + parent: 1 + type: Transform + - uid: 3898 + components: + - pos: -20.5,-10.5 + parent: 1 + type: Transform + - uid: 3899 + components: + - pos: -20.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3900 + components: + - pos: -20.5,-12.5 + parent: 1 + type: Transform + - uid: 3901 + components: + - pos: -24.5,-8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3902 + components: + - pos: -24.5,-9.5 + parent: 1 + type: Transform + - uid: 4098 + components: + - pos: -21.5,-6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4254 + components: + - pos: -22.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4255 + components: + - pos: -21.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4256 + components: + - pos: -20.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4342 + components: + - pos: -41.5,12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4343 + components: + - pos: -41.5,13.5 + parent: 1 + type: Transform + - uid: 4344 + components: + - pos: -41.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4345 + components: + - pos: -41.5,11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4346 + components: + - pos: -41.5,10.5 + parent: 1 + type: Transform + - uid: 4347 + components: + - pos: -41.5,9.5 + parent: 1 + type: Transform + - uid: 4348 + components: + - pos: -41.5,8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4424 + components: + - pos: -41.5,7.5 + parent: 1 + type: Transform + - uid: 4425 + components: + - pos: -41.5,6.5 + parent: 1 + type: Transform + - uid: 4426 + components: + - pos: -41.5,5.5 + parent: 1 + type: Transform + - uid: 4427 + components: + - pos: -42.5,5.5 + parent: 1 + type: Transform + - uid: 4428 + components: + - pos: -43.5,5.5 + parent: 1 + type: Transform + - uid: 4429 + components: + - pos: -44.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4434 + components: + - pos: -50.5,7.5 + parent: 1 + type: Transform + - uid: 4435 + components: + - pos: -42.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4436 + components: + - pos: -43.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4437 + components: + - pos: -44.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4438 + components: + - pos: -45.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4439 + components: + - pos: -46.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4440 + components: + - pos: -47.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4441 + components: + - pos: -48.5,14.5 + parent: 1 + type: Transform + - uid: 4442 + components: + - pos: -49.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4443 + components: + - pos: -40.5,20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4444 + components: + - pos: -40.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4445 + components: + - pos: -41.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4446 + components: + - pos: -42.5,21.5 + parent: 1 + type: Transform + - uid: 4447 + components: + - pos: -43.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4448 + components: + - pos: -44.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4449 + components: + - pos: -45.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4450 + components: + - pos: -46.5,21.5 + parent: 1 + type: Transform + - uid: 4451 + components: + - pos: -47.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4452 + components: + - pos: -48.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4453 + components: + - pos: -49.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4454 + components: + - pos: -44.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4455 + components: + - pos: -44.5,23.5 + parent: 1 + type: Transform + - uid: 4456 + components: + - pos: -44.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4457 + components: + - pos: -44.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4458 + components: + - pos: -44.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4459 + components: + - pos: -44.5,27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4460 + components: + - pos: -39.5,21.5 + parent: 1 + type: Transform + - uid: 4461 + components: + - pos: -38.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4462 + components: + - pos: -37.5,21.5 + parent: 1 + type: Transform + - uid: 4463 + components: + - pos: -37.5,20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4464 + components: + - pos: -37.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4465 + components: + - pos: -37.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4466 + components: + - pos: -37.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4467 + components: + - pos: -37.5,16.5 + parent: 1 + type: Transform + - uid: 4468 + components: + - pos: -37.5,15.5 + parent: 1 + type: Transform + - uid: 4469 + components: + - pos: -37.5,14.5 + parent: 1 + type: Transform + - uid: 4470 + components: + - pos: -37.5,13.5 + parent: 1 + type: Transform + - uid: 4471 + components: + - pos: -37.5,12.5 + parent: 1 + type: Transform + - uid: 4472 + components: + - pos: -37.5,11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4473 + components: + - pos: -37.5,10.5 + parent: 1 + type: Transform + - uid: 4474 + components: + - pos: -37.5,9.5 + parent: 1 + type: Transform + - uid: 4475 + components: + - pos: -37.5,8.5 + parent: 1 + type: Transform + - uid: 4476 + components: + - pos: -37.5,22.5 + parent: 1 + type: Transform + - uid: 4477 + components: + - pos: -37.5,23.5 + parent: 1 + type: Transform + - uid: 4478 + components: + - pos: -37.5,24.5 + parent: 1 + type: Transform + - uid: 4479 + components: + - pos: -37.5,25.5 + parent: 1 + type: Transform + - uid: 4480 + components: + - pos: -37.5,26.5 + parent: 1 + type: Transform + - uid: 4481 + components: + - pos: -37.5,27.5 + parent: 1 + type: Transform + - uid: 4482 + components: + - pos: -37.5,28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4483 + components: + - pos: -37.5,29.5 + parent: 1 + type: Transform + - uid: 4484 + components: + - pos: -37.5,30.5 + parent: 1 + type: Transform + - uid: 4485 + components: + - pos: -42.5,20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4486 + components: + - pos: -42.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4487 + components: + - pos: -42.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4488 + components: + - pos: -45.5,20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4489 + components: + - pos: -45.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4490 + components: + - pos: -45.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4491 + components: + - pos: -48.5,20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4492 + components: + - pos: -48.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4493 + components: + - pos: -48.5,18.5 + parent: 1 + type: Transform + - uid: 4524 + components: + - pos: -56.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4543 + components: + - pos: -50.5,8.5 + parent: 1 + type: Transform + - uid: 4547 + components: + - pos: -47.5,11.5 + parent: 1 + type: Transform + - uid: 4548 + components: + - pos: -50.5,11.5 + parent: 1 + type: Transform + - uid: 4593 + components: + - pos: 21.5,37.5 + parent: 1 + type: Transform + - uid: 4599 + components: + - pos: -50.5,9.5 + parent: 1 + type: Transform + - uid: 4601 + components: + - pos: -49.5,9.5 + parent: 1 + type: Transform + - uid: 4608 + components: + - pos: -57.5,-8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4612 + components: + - pos: -46.5,27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4613 + components: + - pos: -47.5,27.5 + parent: 1 + type: Transform + - uid: 4614 + components: + - pos: -48.5,27.5 + parent: 1 + type: Transform + - uid: 4615 + components: + - pos: -49.5,27.5 + parent: 1 + type: Transform + - uid: 4616 + components: + - pos: -50.5,27.5 + parent: 1 + type: Transform + - uid: 4617 + components: + - pos: -51.5,27.5 + parent: 1 + type: Transform + - uid: 4618 + components: + - pos: -52.5,27.5 + parent: 1 + type: Transform + - uid: 4619 + components: + - pos: -53.5,27.5 + parent: 1 + type: Transform + - uid: 4620 + components: + - pos: -48.5,29.5 + parent: 1 + type: Transform + - uid: 4621 + components: + - pos: -48.5,28.5 + parent: 1 + type: Transform + - uid: 4622 + components: + - pos: -48.5,30.5 + parent: 1 + type: Transform + - uid: 4623 + components: + - pos: -48.5,31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4624 + components: + - pos: -48.5,32.5 + parent: 1 + type: Transform + - uid: 4625 + components: + - pos: -44.5,28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4626 + components: + - pos: -44.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4627 + components: + - pos: -44.5,30.5 + parent: 1 + type: Transform + - uid: 4628 + components: + - pos: -44.5,31.5 + parent: 1 + type: Transform + - uid: 4629 + components: + - pos: -44.5,32.5 + parent: 1 + type: Transform + - uid: 4630 + components: + - pos: -37.5,31.5 + parent: 1 + type: Transform + - uid: 4631 + components: + - pos: -37.5,32.5 + parent: 1 + type: Transform + - uid: 4632 + components: + - pos: -38.5,32.5 + parent: 1 + type: Transform + - uid: 4633 + components: + - pos: -39.5,32.5 + parent: 1 + type: Transform + - uid: 4634 + components: + - pos: -40.5,32.5 + parent: 1 + type: Transform + - uid: 4635 + components: + - pos: -43.5,32.5 + parent: 1 + type: Transform + - uid: 4636 + components: + - pos: -42.5,32.5 + parent: 1 + type: Transform + - uid: 4637 + components: + - pos: -29.5,31.5 + parent: 1 + type: Transform + - uid: 4638 + components: + - pos: -29.5,32.5 + parent: 1 + type: Transform + - uid: 4639 + components: + - pos: -47.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4640 + components: + - pos: -30.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4641 + components: + - pos: -31.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4642 + components: + - pos: -32.5,32.5 + parent: 1 + type: Transform + - uid: 4643 + components: + - pos: -33.5,32.5 + parent: 1 + type: Transform + - uid: 4644 + components: + - pos: -34.5,32.5 + parent: 1 + type: Transform + - uid: 4645 + components: + - pos: -35.5,32.5 + parent: 1 + type: Transform + - uid: 4646 + components: + - pos: -28.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4647 + components: + - pos: -27.5,32.5 + parent: 1 + type: Transform + - uid: 4648 + components: + - pos: -26.5,32.5 + parent: 1 + type: Transform + - uid: 4649 + components: + - pos: -25.5,32.5 + parent: 1 + type: Transform + - uid: 4650 + components: + - pos: -46.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4651 + components: + - pos: -49.5,32.5 + parent: 1 + type: Transform + - uid: 4652 + components: + - pos: -50.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4653 + components: + - pos: -51.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4654 + components: + - pos: -52.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4655 + components: + - pos: -53.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4656 + components: + - pos: -54.5,32.5 + parent: 1 + type: Transform + - uid: 4657 + components: + - pos: -55.5,32.5 + parent: 1 + type: Transform + - uid: 4658 + components: + - pos: -52.5,14.5 + parent: 1 + type: Transform + - uid: 4659 + components: + - pos: -53.5,14.5 + parent: 1 + type: Transform + - uid: 4660 + components: + - pos: -54.5,14.5 + parent: 1 + type: Transform + - uid: 4661 + components: + - pos: -55.5,14.5 + parent: 1 + type: Transform + - uid: 4662 + components: + - pos: -56.5,14.5 + parent: 1 + type: Transform + - uid: 4663 + components: + - pos: -57.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4664 + components: + - pos: -57.5,15.5 + parent: 1 + type: Transform + - uid: 4665 + components: + - pos: -57.5,15.5 + parent: 1 + type: Transform + - uid: 4666 + components: + - pos: -57.5,16.5 + parent: 1 + type: Transform + - uid: 4667 + components: + - pos: -57.5,17.5 + parent: 1 + type: Transform + - uid: 4668 + components: + - pos: -57.5,18.5 + parent: 1 + type: Transform + - uid: 4669 + components: + - pos: -57.5,19.5 + parent: 1 + type: Transform + - uid: 4670 + components: + - pos: -57.5,20.5 + parent: 1 + type: Transform + - uid: 4671 + components: + - pos: -57.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4672 + components: + - pos: -57.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4673 + components: + - pos: -57.5,23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4674 + components: + - pos: -57.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4675 + components: + - pos: -57.5,25.5 + parent: 1 + type: Transform + - uid: 4676 + components: + - pos: -56.5,32.5 + parent: 1 + type: Transform + - uid: 4677 + components: + - pos: -57.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4678 + components: + - pos: -57.5,31.5 + parent: 1 + type: Transform + - uid: 4679 + components: + - pos: -57.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4680 + components: + - pos: -57.5,29.5 + parent: 1 + type: Transform + - uid: 4681 + components: + - pos: -51.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4682 + components: + - pos: -53.5,15.5 + parent: 1 + type: Transform + - uid: 4683 + components: + - pos: -53.5,16.5 + parent: 1 + type: Transform + - uid: 4684 + components: + - pos: -53.5,17.5 + parent: 1 + type: Transform + - uid: 4685 + components: + - pos: -53.5,18.5 + parent: 1 + type: Transform + - uid: 4686 + components: + - pos: -53.5,19.5 + parent: 1 + type: Transform + - uid: 4687 + components: + - pos: -53.5,20.5 + parent: 1 + type: Transform + - uid: 4688 + components: + - pos: -57.5,13.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4689 + components: + - pos: -57.5,12.5 + parent: 1 + type: Transform + - uid: 4690 + components: + - pos: -57.5,11.5 + parent: 1 + type: Transform + - uid: 4691 + components: + - pos: -57.5,10.5 + parent: 1 + type: Transform + - uid: 4692 + components: + - pos: -57.5,9.5 + parent: 1 + type: Transform + - uid: 4693 + components: + - pos: -57.5,8.5 + parent: 1 + type: Transform + - uid: 4700 + components: + - pos: -45.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4701 + components: + - pos: -46.5,9.5 + parent: 1 + type: Transform + - uid: 4702 + components: + - pos: -47.5,9.5 + parent: 1 + type: Transform + - uid: 4704 + components: + - pos: -48.5,9.5 + parent: 1 + type: Transform + - uid: 4713 + components: + - pos: 20.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4714 + components: + - pos: 20.5,43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4715 + components: + - pos: 20.5,42.5 + parent: 1 + type: Transform + - uid: 4716 + components: + - pos: -47.5,5.5 + parent: 1 + type: Transform + - uid: 4717 + components: + - pos: -48.5,5.5 + parent: 1 + type: Transform + - uid: 4718 + components: + - pos: -46.5,5.5 + parent: 1 + type: Transform + - uid: 4719 + components: + - pos: -49.5,5.5 + parent: 1 + type: Transform + - uid: 4720 + components: + - pos: -50.5,5.5 + parent: 1 + type: Transform + - uid: 4721 + components: + - pos: -51.5,5.5 + parent: 1 + type: Transform + - uid: 4722 + components: + - pos: -52.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4723 + components: + - pos: -53.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4724 + components: + - pos: -54.5,5.5 + parent: 1 + type: Transform + - uid: 4725 + components: + - pos: -57.5,4.5 + parent: 1 + type: Transform + - uid: 4726 + components: + - pos: -57.5,5.5 + parent: 1 + type: Transform + - uid: 4727 + components: + - pos: -58.5,5.5 + parent: 1 + type: Transform + - uid: 4728 + components: + - pos: 20.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4731 + components: + - pos: 21.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4742 + components: + - pos: -73.5,-14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4759 + components: + - pos: -66.5,-9.5 + parent: 1 + type: Transform + - uid: 4783 + components: + - pos: -65.5,-13.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4785 + components: + - pos: -73.5,-11.5 + parent: 1 + type: Transform + - uid: 4786 + components: + - pos: -62.5,-10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4787 + components: + - pos: -63.5,-10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4788 + components: + - pos: -73.5,4.5 + parent: 1 + type: Transform + - uid: 4789 + components: + - pos: -73.5,-12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4790 + components: + - pos: -66.5,4.5 + parent: 1 + type: Transform + - uid: 4791 + components: + - pos: -66.5,-10.5 + parent: 1 + type: Transform + - uid: 4794 + components: + - pos: -65.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4795 + components: + - pos: -65.5,-12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4796 + components: + - pos: -73.5,-9.5 + parent: 1 + type: Transform + - uid: 4797 + components: + - pos: -67.5,-10.5 + parent: 1 + type: Transform + - uid: 4798 + components: + - pos: -68.5,-10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4806 + components: + - pos: -73.5,-13.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4811 + components: + - pos: -75.5,-10.5 + parent: 1 + type: Transform + - uid: 4812 + components: + - pos: -76.5,-10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4813 + components: + - pos: -73.5,-10.5 + parent: 1 + type: Transform + - uid: 4814 + components: + - pos: -74.5,-10.5 + parent: 1 + type: Transform + - uid: 4815 + components: + - pos: -77.5,-10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4842 + components: + - pos: -69.5,-10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4869 + components: + - pos: -71.5,-10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4870 + components: + - pos: -64.5,-10.5 + parent: 1 + type: Transform + - uid: 4872 + components: + - pos: -70.5,-10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4874 + components: + - pos: -65.5,-10.5 + parent: 1 + type: Transform + - uid: 4875 + components: + - pos: -72.5,-10.5 + parent: 1 + type: Transform + - uid: 4879 + components: + - pos: -57.5,-10.5 + parent: 1 + type: Transform + - uid: 4880 + components: + - pos: -58.5,-10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4881 + components: + - pos: -59.5,-10.5 + parent: 1 + type: Transform + - uid: 4904 + components: + - pos: -65.5,-14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4958 + components: + - pos: -60.5,-10.5 + parent: 1 + type: Transform + - uid: 5102 + components: + - pos: -55.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5106 + components: + - pos: -57.5,-9.5 + parent: 1 + type: Transform + - uid: 5127 + components: + - pos: -57.5,-7.5 + parent: 1 + type: Transform + - uid: 5128 + components: + - pos: -57.5,-6.5 + parent: 1 + type: Transform + - uid: 5129 + components: + - pos: -57.5,-5.5 + parent: 1 + type: Transform + - uid: 5130 + components: + - pos: -57.5,-4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5131 + components: + - pos: -57.5,-3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5132 + components: + - pos: -57.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5133 + components: + - pos: -57.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5134 + components: + - pos: -57.5,-0.5 + parent: 1 + type: Transform + - uid: 5135 + components: + - pos: -57.5,0.5 + parent: 1 + type: Transform + - uid: 5136 + components: + - pos: -57.5,1.5 + parent: 1 + type: Transform + - uid: 5137 + components: + - pos: -57.5,2.5 + parent: 1 + type: Transform + - uid: 5138 + components: + - pos: -57.5,3.5 + parent: 1 + type: Transform + - uid: 5139 + components: + - pos: -59.5,5.5 + parent: 1 + type: Transform + - uid: 5140 + components: + - pos: -60.5,5.5 + parent: 1 + type: Transform + - uid: 5141 + components: + - pos: -61.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5142 + components: + - pos: -62.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5143 + components: + - pos: -63.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5144 + components: + - pos: -64.5,5.5 + parent: 1 + type: Transform + - uid: 5145 + components: + - pos: -65.5,5.5 + parent: 1 + type: Transform + - uid: 5146 + components: + - pos: -66.5,5.5 + parent: 1 + type: Transform + - uid: 5147 + components: + - pos: -67.5,5.5 + parent: 1 + type: Transform + - uid: 5148 + components: + - pos: -68.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5149 + components: + - pos: -69.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5150 + components: + - pos: -70.5,5.5 + parent: 1 + type: Transform + - uid: 5151 + components: + - pos: -71.5,5.5 + parent: 1 + type: Transform + - uid: 5152 + components: + - pos: -72.5,5.5 + parent: 1 + type: Transform + - uid: 5153 + components: + - pos: -73.5,5.5 + parent: 1 + type: Transform + - uid: 5154 + components: + - pos: -74.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5155 + components: + - pos: -54.5,-7.5 + parent: 1 + type: Transform + - uid: 5156 + components: + - pos: -53.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5157 + components: + - pos: -52.5,-7.5 + parent: 1 + type: Transform + - uid: 5158 + components: + - pos: -52.5,-6.5 + parent: 1 + type: Transform + - uid: 5159 + components: + - pos: -52.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5160 + components: + - pos: -52.5,-4.5 + parent: 1 + type: Transform + - uid: 5161 + components: + - pos: -52.5,-3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5162 + components: + - pos: -52.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5163 + components: + - pos: -52.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5195 + components: + - pos: 16.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5205 + components: + - pos: -50.5,26.5 + parent: 1 + type: Transform + - uid: 5206 + components: + - pos: -50.5,25.5 + parent: 1 + type: Transform + - uid: 5207 + components: + - pos: -50.5,24.5 + parent: 1 + type: Transform + - uid: 5311 + components: + - pos: 16.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5312 + components: + - pos: 19.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5313 + components: + - pos: 16.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5314 + components: + - pos: 16.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5322 + components: + - pos: 24.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5378 + components: + - pos: -35.5,-6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5432 + components: + - pos: -21.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5448 + components: + - pos: -21.5,-4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5449 + components: + - pos: -21.5,-3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5450 + components: + - pos: -21.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5634 + components: + - pos: -54.5,9.5 + parent: 1 + type: Transform + - uid: 5661 + components: + - pos: -16.5,23.5 + parent: 1 + type: Transform + - uid: 5700 + components: + - pos: -30.5,23.5 + parent: 1 + type: Transform + - uid: 5701 + components: + - pos: -33.5,11.5 + parent: 1 + type: Transform + - uid: 5702 + components: + - pos: -33.5,12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5703 + components: + - pos: -33.5,13.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5704 + components: + - pos: -29.5,15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5705 + components: + - pos: -30.5,15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5773 + components: + - pos: -53.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5805 + components: + - pos: 15.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5806 + components: + - pos: 15.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6199 + components: + - pos: 16.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6203 + components: + - pos: 13.5,51.5 + parent: 1 + type: Transform + - uid: 6205 + components: + - pos: 15.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6206 + components: + - pos: 15.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6207 + components: + - pos: 13.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6208 + components: + - pos: 12.5,45.5 + parent: 1 + type: Transform + - uid: 6209 + components: + - pos: 11.5,45.5 + parent: 1 + type: Transform + - uid: 6210 + components: + - pos: 10.5,45.5 + parent: 1 + type: Transform + - uid: 6211 + components: + - pos: 15.5,43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6212 + components: + - pos: 8.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6214 + components: + - pos: 7.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6219 + components: + - pos: 9.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6220 + components: + - pos: 7.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6221 + components: + - pos: 7.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6222 + components: + - pos: 6.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6223 + components: + - pos: 7.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6224 + components: + - pos: 7.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6225 + components: + - pos: 7.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6227 + components: + - pos: 5.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6228 + components: + - pos: 4.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6229 + components: + - pos: 3.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6230 + components: + - pos: 3.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6231 + components: + - pos: 3.5,49.5 + parent: 1 + type: Transform + - uid: 6232 + components: + - pos: 3.5,50.5 + parent: 1 + type: Transform + - uid: 6233 + components: + - pos: 3.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6234 + components: + - pos: 2.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6235 + components: + - pos: 1.5,47.5 + parent: 1 + type: Transform + - uid: 6236 + components: + - pos: 0.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6237 + components: + - pos: -0.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6238 + components: + - pos: -0.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6239 + components: + - pos: -0.5,49.5 + parent: 1 + type: Transform + - uid: 6240 + components: + - pos: -0.5,50.5 + parent: 1 + type: Transform + - uid: 6241 + components: + - pos: -0.5,51.5 + parent: 1 + type: Transform + - uid: 6242 + components: + - pos: 16.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6246 + components: + - pos: 14.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6247 + components: + - pos: 13.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6248 + components: + - pos: 12.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6249 + components: + - pos: 11.5,40.5 + parent: 1 + type: Transform + - uid: 6250 + components: + - pos: 10.5,40.5 + parent: 1 + type: Transform + - uid: 6251 + components: + - pos: 15.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6252 + components: + - pos: 15.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6258 + components: + - pos: -52.5,9.5 + parent: 1 + type: Transform + - uid: 6260 + components: + - pos: -50.5,10.5 + parent: 1 + type: Transform + - uid: 6261 + components: + - pos: -47.5,10.5 + parent: 1 + type: Transform + - uid: 6262 + components: + - pos: -53.5,9.5 + parent: 1 + type: Transform + - uid: 6263 + components: + - pos: -51.5,9.5 + parent: 1 + type: Transform + - uid: 6271 + components: + - pos: 15.5,35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6273 + components: + - pos: 17.5,35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6274 + components: + - pos: 18.5,35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6276 + components: + - pos: 20.5,35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6278 + components: + - pos: 23.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6279 + components: + - pos: 23.5,35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6280 + components: + - pos: 9.5,40.5 + parent: 1 + type: Transform + - uid: 6281 + components: + - pos: 8.5,40.5 + parent: 1 + type: Transform + - uid: 6282 + components: + - pos: -1.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6283 + components: + - pos: -2.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6284 + components: + - pos: -2.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6285 + components: + - pos: -2.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6286 + components: + - pos: -2.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6287 + components: + - pos: -2.5,43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6288 + components: + - pos: -2.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6289 + components: + - pos: -3.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6290 + components: + - pos: -3.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6291 + components: + - pos: -3.5,40.5 + parent: 1 + type: Transform + - uid: 6293 + components: + - pos: -3.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6294 + components: + - pos: -3.5,37.5 + parent: 1 + type: Transform + - uid: 6295 + components: + - pos: -4.5,37.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6296 + components: + - pos: -5.5,37.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6297 + components: + - pos: -6.5,37.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6298 + components: + - pos: -7.5,37.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6299 + components: + - pos: -8.5,37.5 + parent: 1 + type: Transform + - uid: 6300 + components: + - pos: -9.5,37.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6301 + components: + - pos: -3.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6302 + components: + - pos: -4.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6315 + components: + - pos: 20.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6562 + components: + - pos: -4.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6563 + components: + - pos: -4.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6564 + components: + - pos: -4.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6565 + components: + - pos: -5.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6566 + components: + - pos: -6.5,55.5 + parent: 1 + type: Transform + - uid: 6567 + components: + - pos: -7.5,55.5 + parent: 1 + type: Transform + - uid: 6568 + components: + - pos: -8.5,55.5 + parent: 1 + type: Transform + - uid: 6569 + components: + - pos: -9.5,55.5 + parent: 1 + type: Transform + - uid: 6570 + components: + - pos: -10.5,55.5 + parent: 1 + type: Transform + - uid: 6571 + components: + - pos: -11.5,55.5 + parent: 1 + type: Transform + - uid: 6572 + components: + - pos: -12.5,55.5 + parent: 1 + type: Transform + - uid: 6573 + components: + - pos: -13.5,55.5 + parent: 1 + type: Transform + - uid: 6574 + components: + - pos: -14.5,55.5 + parent: 1 + type: Transform + - uid: 6575 + components: + - pos: -15.5,55.5 + parent: 1 + type: Transform + - uid: 6576 + components: + - pos: -16.5,55.5 + parent: 1 + type: Transform + - uid: 6577 + components: + - pos: -7.5,56.5 + parent: 1 + type: Transform + - uid: 6578 + components: + - pos: -7.5,57.5 + parent: 1 + type: Transform + - uid: 6579 + components: + - pos: -7.5,58.5 + parent: 1 + type: Transform + - uid: 6580 + components: + - pos: -7.5,59.5 + parent: 1 + type: Transform + - uid: 6581 + components: + - pos: -7.5,60.5 + parent: 1 + type: Transform + - uid: 6582 + components: + - pos: -16.5,54.5 + parent: 1 + type: Transform + - uid: 6583 + components: + - pos: -17.5,54.5 + parent: 1 + type: Transform + - uid: 6584 + components: + - pos: -18.5,54.5 + parent: 1 + type: Transform + - uid: 6585 + components: + - pos: -19.5,54.5 + parent: 1 + type: Transform + - uid: 6586 + components: + - pos: -20.5,54.5 + parent: 1 + type: Transform + - uid: 6587 + components: + - pos: -21.5,54.5 + parent: 1 + type: Transform + - uid: 6588 + components: + - pos: -22.5,54.5 + parent: 1 + type: Transform + - uid: 6589 + components: + - pos: -22.5,55.5 + parent: 1 + type: Transform + - uid: 6590 + components: + - pos: -15.5,56.5 + parent: 1 + type: Transform + - uid: 6591 + components: + - pos: -15.5,57.5 + parent: 1 + type: Transform + - uid: 6592 + components: + - pos: -15.5,58.5 + parent: 1 + type: Transform + - uid: 6593 + components: + - pos: -15.5,59.5 + parent: 1 + type: Transform + - uid: 6594 + components: + - pos: -15.5,60.5 + parent: 1 + type: Transform + - uid: 6595 + components: + - pos: -15.5,61.5 + parent: 1 + type: Transform + - uid: 6596 + components: + - pos: -15.5,62.5 + parent: 1 + type: Transform + - uid: 6597 + components: + - pos: -15.5,63.5 + parent: 1 + type: Transform + - uid: 6598 + components: + - pos: -15.5,64.5 + parent: 1 + type: Transform + - uid: 6599 + components: + - pos: -15.5,65.5 + parent: 1 + type: Transform + - uid: 6600 + components: + - pos: -16.5,64.5 + parent: 1 + type: Transform + - uid: 6601 + components: + - pos: -17.5,64.5 + parent: 1 + type: Transform + - uid: 6602 + components: + - pos: -18.5,64.5 + parent: 1 + type: Transform + - uid: 6603 + components: + - pos: -19.5,64.5 + parent: 1 + type: Transform + - uid: 6604 + components: + - pos: -16.5,60.5 + parent: 1 + type: Transform + - uid: 6605 + components: + - pos: -17.5,60.5 + parent: 1 + type: Transform + - uid: 6606 + components: + - pos: -18.5,60.5 + parent: 1 + type: Transform + - uid: 6607 + components: + - pos: -19.5,60.5 + parent: 1 + type: Transform + - uid: 6608 + components: + - pos: -20.5,60.5 + parent: 1 + type: Transform + - uid: 6609 + components: + - pos: -14.5,60.5 + parent: 1 + type: Transform + - uid: 6610 + components: + - pos: -13.5,60.5 + parent: 1 + type: Transform + - uid: 6611 + components: + - pos: -12.5,60.5 + parent: 1 + type: Transform + - uid: 6612 + components: + - pos: -14.5,64.5 + parent: 1 + type: Transform + - uid: 6613 + components: + - pos: -13.5,64.5 + parent: 1 + type: Transform + - uid: 6614 + components: + - pos: -12.5,64.5 + parent: 1 + type: Transform + - uid: 6615 + components: + - pos: -20.5,64.5 + parent: 1 + type: Transform + - uid: 7284 + components: + - pos: -43.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7401 + components: + - pos: 14.5,45.5 + parent: 1 + type: Transform + - uid: 7492 + components: + - pos: -3.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7744 + components: + - pos: -53.5,85.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7745 + components: + - pos: -52.5,85.5 + parent: 1 + type: Transform + - uid: 7746 + components: + - pos: -51.5,85.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7747 + components: + - pos: -51.5,86.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7748 + components: + - pos: -51.5,87.5 + parent: 1 + type: Transform + - uid: 7749 + components: + - pos: -51.5,88.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7750 + components: + - pos: -51.5,89.5 + parent: 1 + type: Transform + - uid: 7751 + components: + - pos: -51.5,84.5 + parent: 1 + type: Transform + - uid: 7752 + components: + - pos: -51.5,83.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7753 + components: + - pos: -51.5,82.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7754 + components: + - pos: -52.5,82.5 + parent: 1 + type: Transform + - uid: 7755 + components: + - pos: -50.5,81.5 + parent: 1 + type: Transform + - uid: 7756 + components: + - pos: -50.5,82.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7757 + components: + - pos: -52.5,79.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7758 + components: + - pos: -52.5,78.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7759 + components: + - pos: -52.5,80.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7760 + components: + - pos: -52.5,81.5 + parent: 1 + type: Transform + - uid: 7761 + components: + - pos: -50.5,80.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7762 + components: + - pos: -50.5,79.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7763 + components: + - pos: -50.5,78.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7764 + components: + - pos: -53.5,79.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7765 + components: + - pos: -52.5,89.5 + parent: 1 + type: Transform + - uid: 7766 + components: + - pos: -53.5,89.5 + parent: 1 + type: Transform + - uid: 7767 + components: + - pos: -54.5,89.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7768 + components: + - pos: -55.5,89.5 + parent: 1 + type: Transform + - uid: 7769 + components: + - pos: -56.5,89.5 + parent: 1 + type: Transform + - uid: 7770 + components: + - pos: -57.5,89.5 + parent: 1 + type: Transform + - uid: 7771 + components: + - pos: -58.5,89.5 + parent: 1 + type: Transform + - uid: 7772 + components: + - pos: -59.5,89.5 + parent: 1 + type: Transform + - uid: 7773 + components: + - pos: -52.5,83.5 + parent: 1 + type: Transform + - uid: 7774 + components: + - pos: -59.5,84.5 + parent: 1 + type: Transform + - uid: 7775 + components: + - pos: -53.5,83.5 + parent: 1 + type: Transform + - uid: 7776 + components: + - pos: -59.5,87.5 + parent: 1 + type: Transform + - uid: 7777 + components: + - pos: -54.5,83.5 + parent: 1 + type: Transform + - uid: 7778 + components: + - pos: -59.5,85.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7779 + components: + - pos: -55.5,83.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7780 + components: + - pos: -59.5,86.5 + parent: 1 + type: Transform + - uid: 7781 + components: + - pos: -56.5,83.5 + parent: 1 + type: Transform + - uid: 7782 + components: + - pos: -59.5,88.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7783 + components: + - pos: -57.5,83.5 + parent: 1 + type: Transform + - uid: 7784 + components: + - pos: -62.5,84.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7785 + components: + - pos: -58.5,83.5 + parent: 1 + type: Transform + - uid: 7786 + components: + - pos: -63.5,84.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7787 + components: + - pos: -59.5,83.5 + parent: 1 + type: Transform + - uid: 7788 + components: + - pos: -60.5,84.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7789 + components: + - pos: -61.5,84.5 + parent: 1 + type: Transform + - uid: 7790 + components: + - pos: -63.5,83.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7791 + components: + - pos: -63.5,85.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7792 + components: + - pos: -59.5,82.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7793 + components: + - pos: -60.5,82.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7794 + components: + - pos: -61.5,82.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7795 + components: + - pos: -58.5,82.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7796 + components: + - pos: -60.5,90.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7797 + components: + - pos: -59.5,90.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7798 + components: + - pos: -58.5,90.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7799 + components: + - pos: -51.5,90.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7800 + components: + - pos: -51.5,91.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7801 + components: + - pos: -50.5,88.5 + parent: 1 + type: Transform + - uid: 7802 + components: + - pos: -49.5,88.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7803 + components: + - pos: -49.5,87.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7804 + components: + - pos: -49.5,86.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7805 + components: + - pos: -49.5,85.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7806 + components: + - pos: -49.5,84.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7807 + components: + - pos: -49.5,83.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7920 + components: + - pos: -42.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8347 + components: + - pos: -56.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8348 + components: + - pos: -56.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8349 + components: + - pos: -56.5,53.5 + parent: 1 + type: Transform + - uid: 8378 + components: + - pos: -58.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8379 + components: + - pos: -57.5,56.5 + parent: 1 + type: Transform + - uid: 8380 + components: + - pos: -56.5,56.5 + parent: 1 + type: Transform + - uid: 8381 + components: + - pos: -55.5,56.5 + parent: 1 + type: Transform + - uid: 8382 + components: + - pos: -54.5,56.5 + parent: 1 + type: Transform + - uid: 8383 + components: + - pos: -54.5,55.5 + parent: 1 + type: Transform + - uid: 8384 + components: + - pos: -54.5,54.5 + parent: 1 + type: Transform + - uid: 8385 + components: + - pos: -50.5,49.5 + parent: 1 + type: Transform + - uid: 8386 + components: + - pos: -50.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8387 + components: + - pos: -51.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8388 + components: + - pos: -53.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8389 + components: + - pos: -53.5,53.5 + parent: 1 + type: Transform + - uid: 8390 + components: + - pos: -55.5,54.5 + parent: 1 + type: Transform + - uid: 8391 + components: + - pos: -56.5,54.5 + parent: 1 + type: Transform + - uid: 8392 + components: + - pos: -57.5,54.5 + parent: 1 + type: Transform + - uid: 8393 + components: + - pos: -58.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8394 + components: + - pos: -59.5,54.5 + parent: 1 + type: Transform + - uid: 8395 + components: + - pos: -60.5,54.5 + parent: 1 + type: Transform + - uid: 8396 + components: + - pos: -61.5,54.5 + parent: 1 + type: Transform + - uid: 8397 + components: + - pos: -62.5,54.5 + parent: 1 + type: Transform + - uid: 8398 + components: + - pos: -63.5,54.5 + parent: 1 + type: Transform + - uid: 8399 + components: + - pos: -64.5,54.5 + parent: 1 + type: Transform + - uid: 8400 + components: + - pos: -61.5,53.5 + parent: 1 + type: Transform + - uid: 8401 + components: + - pos: -61.5,52.5 + parent: 1 + type: Transform + - uid: 8402 + components: + - pos: -61.5,51.5 + parent: 1 + type: Transform + - uid: 8403 + components: + - pos: -61.5,50.5 + parent: 1 + type: Transform + - uid: 8404 + components: + - pos: -53.5,54.5 + parent: 1 + type: Transform + - uid: 8405 + components: + - pos: -52.5,54.5 + parent: 1 + type: Transform + - uid: 8406 + components: + - pos: -51.5,54.5 + parent: 1 + type: Transform + - uid: 8407 + components: + - pos: -50.5,54.5 + parent: 1 + type: Transform + - uid: 8408 + components: + - pos: -49.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8409 + components: + - pos: -48.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8410 + components: + - pos: -47.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8411 + components: + - pos: -47.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8412 + components: + - pos: -47.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8413 + components: + - pos: -47.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8414 + components: + - pos: -47.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8415 + components: + - pos: -50.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8416 + components: + - pos: -50.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8417 + components: + - pos: -50.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8418 + components: + - pos: -50.5,53.5 + parent: 1 + type: Transform + - uid: 8419 + components: + - pos: -53.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8420 + components: + - pos: -53.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8421 + components: + - pos: -53.5,49.5 + parent: 1 + type: Transform + - uid: 8422 + components: + - pos: -54.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8424 + components: + - pos: -57.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8425 + components: + - pos: -56.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8426 + components: + - pos: -48.5,43.5 + parent: 1 + type: Transform + - uid: 8427 + components: + - pos: -47.5,43.5 + parent: 1 + type: Transform + - uid: 8428 + components: + - pos: -47.5,42.5 + parent: 1 + type: Transform + - uid: 8429 + components: + - pos: -47.5,49.5 + parent: 1 + type: Transform + - uid: 8430 + components: + - pos: -56.5,50.5 + parent: 1 + type: Transform + - uid: 8431 + components: + - pos: -56.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8432 + components: + - pos: -53.5,56.5 + parent: 1 + type: Transform + - uid: 8433 + components: + - pos: -52.5,56.5 + parent: 1 + type: Transform + - uid: 8434 + components: + - pos: -51.5,56.5 + parent: 1 + type: Transform + - uid: 8435 + components: + - pos: -51.5,57.5 + parent: 1 + type: Transform + - uid: 8436 + components: + - pos: -51.5,58.5 + parent: 1 + type: Transform + - uid: 8437 + components: + - pos: -58.5,57.5 + parent: 1 + type: Transform + - uid: 8438 + components: + - pos: -59.5,57.5 + parent: 1 + type: Transform + - uid: 8439 + components: + - pos: -60.5,57.5 + parent: 1 + type: Transform + - uid: 8440 + components: + - pos: -49.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8441 + components: + - pos: -50.5,63.5 + parent: 1 + type: Transform + - uid: 8442 + components: + - pos: -51.5,63.5 + parent: 1 + type: Transform + - uid: 8443 + components: + - pos: -51.5,62.5 + parent: 1 + type: Transform + - uid: 8444 + components: + - pos: -51.5,61.5 + parent: 1 + type: Transform + - uid: 8445 + components: + - pos: -52.5,61.5 + parent: 1 + type: Transform + - uid: 8446 + components: + - pos: -53.5,61.5 + parent: 1 + type: Transform + - uid: 8447 + components: + - pos: -54.5,61.5 + parent: 1 + type: Transform + - uid: 8448 + components: + - pos: -55.5,61.5 + parent: 1 + type: Transform + - uid: 8449 + components: + - pos: -56.5,61.5 + parent: 1 + type: Transform + - uid: 8450 + components: + - pos: -57.5,61.5 + parent: 1 + type: Transform + - uid: 8451 + components: + - pos: -58.5,61.5 + parent: 1 + type: Transform + - uid: 8452 + components: + - pos: -59.5,61.5 + parent: 1 + type: Transform + - uid: 8453 + components: + - pos: -60.5,61.5 + parent: 1 + type: Transform + - uid: 8454 + components: + - pos: -61.5,61.5 + parent: 1 + type: Transform + - uid: 8455 + components: + - pos: -61.5,60.5 + parent: 1 + type: Transform + - uid: 8456 + components: + - pos: -62.5,60.5 + parent: 1 + type: Transform + - uid: 8457 + components: + - pos: -63.5,60.5 + parent: 1 + type: Transform + - uid: 8458 + components: + - pos: -63.5,59.5 + parent: 1 + type: Transform + - uid: 8459 + components: + - pos: -63.5,58.5 + parent: 1 + type: Transform + - uid: 8460 + components: + - pos: -50.5,61.5 + parent: 1 + type: Transform + - uid: 8461 + components: + - pos: -49.5,61.5 + parent: 1 + type: Transform + - uid: 8462 + components: + - pos: -48.5,61.5 + parent: 1 + type: Transform + - uid: 8463 + components: + - pos: -47.5,61.5 + parent: 1 + type: Transform + - uid: 8464 + components: + - pos: -47.5,60.5 + parent: 1 + type: Transform + - uid: 8465 + components: + - pos: -47.5,59.5 + parent: 1 + type: Transform + - uid: 8466 + components: + - pos: -47.5,58.5 + parent: 1 + type: Transform + - uid: 8467 + components: + - pos: -47.5,57.5 + parent: 1 + type: Transform + - uid: 8468 + components: + - pos: -51.5,64.5 + parent: 1 + type: Transform + - uid: 8469 + components: + - pos: -51.5,65.5 + parent: 1 + type: Transform + - uid: 8470 + components: + - pos: -50.5,65.5 + parent: 1 + type: Transform + - uid: 8471 + components: + - pos: -49.5,65.5 + parent: 1 + type: Transform + - uid: 8472 + components: + - pos: -48.5,65.5 + parent: 1 + type: Transform + - uid: 8473 + components: + - pos: -47.5,65.5 + parent: 1 + type: Transform + - uid: 8475 + components: + - pos: -46.5,65.5 + parent: 1 + type: Transform + - uid: 8476 + components: + - pos: -45.5,65.5 + parent: 1 + type: Transform + - uid: 8477 + components: + - pos: -44.5,65.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8478 + components: + - pos: -43.5,65.5 + parent: 1 + type: Transform + - uid: 8479 + components: + - pos: -42.5,65.5 + parent: 1 + type: Transform + - uid: 8480 + components: + - pos: -42.5,64.5 + parent: 1 + type: Transform + - uid: 8481 + components: + - pos: -42.5,63.5 + parent: 1 + type: Transform + - uid: 8482 + components: + - pos: -42.5,62.5 + parent: 1 + type: Transform + - uid: 8483 + components: + - pos: -52.5,65.5 + parent: 1 + type: Transform + - uid: 8484 + components: + - pos: -52.5,66.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8485 + components: + - pos: -52.5,67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8486 + components: + - pos: -52.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8487 + components: + - pos: -52.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8488 + components: + - pos: -50.5,66.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8489 + components: + - pos: -50.5,67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8490 + components: + - pos: -50.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8491 + components: + - pos: -50.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8492 + components: + - pos: -49.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8493 + components: + - pos: -48.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8494 + components: + - pos: -47.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8495 + components: + - pos: -55.5,62.5 + parent: 1 + type: Transform + - uid: 8496 + components: + - pos: -55.5,63.5 + parent: 1 + type: Transform + - uid: 8497 + components: + - pos: -55.5,64.5 + parent: 1 + type: Transform + - uid: 8498 + components: + - pos: -59.5,62.5 + parent: 1 + type: Transform + - uid: 8499 + components: + - pos: -59.5,63.5 + parent: 1 + type: Transform + - uid: 8500 + components: + - pos: -59.5,64.5 + parent: 1 + type: Transform + - uid: 8501 + components: + - pos: -59.5,65.5 + parent: 1 + type: Transform + - uid: 8502 + components: + - pos: -58.5,66.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8503 + components: + - pos: -59.5,66.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8519 + components: + - pos: -60.5,66.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8520 + components: + - pos: -61.5,66.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8521 + components: + - pos: -58.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8522 + components: + - pos: -56.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8523 + components: + - pos: -54.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8524 + components: + - pos: -53.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8525 + components: + - pos: -55.5,65.5 + parent: 1 + type: Transform + - uid: 8526 + components: + - pos: -53.5,64.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8527 + components: + - pos: -53.5,65.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8528 + components: + - pos: -56.5,66.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8529 + components: + - pos: -55.5,66.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8530 + components: + - pos: -54.5,66.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8531 + components: + - pos: -48.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8532 + components: + - pos: -47.5,63.5 + parent: 1 + type: Transform + - uid: 8533 + components: + - pos: -46.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8534 + components: + - pos: -55.5,57.5 + parent: 1 + type: Transform + - uid: 8535 + components: + - pos: -55.5,58.5 + parent: 1 + type: Transform + - uid: 8536 + components: + - pos: -55.5,59.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8537 + components: + - pos: -56.5,59.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8538 + components: + - pos: -54.5,59.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8539 + components: + - pos: -47.5,56.5 + parent: 1 + type: Transform + - uid: 8540 + components: + - pos: -48.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8541 + components: + - pos: -46.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9020 + components: + - pos: 19.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9346 + components: + - pos: -57.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9347 + components: + - pos: -57.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9348 + components: + - pos: -57.5,43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9349 + components: + - pos: -57.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9350 + components: + - pos: -57.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9351 + components: + - pos: -57.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9352 + components: + - pos: -57.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9353 + components: + - pos: -57.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9354 + components: + - pos: -57.5,37.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9355 + components: + - pos: -57.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9356 + components: + - pos: -57.5,35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9357 + components: + - pos: -56.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9358 + components: + - pos: -55.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9359 + components: + - pos: -54.5,39.5 + parent: 1 + type: Transform + - uid: 9360 + components: + - pos: -54.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9361 + components: + - pos: -54.5,41.5 + parent: 1 + type: Transform + - uid: 9362 + components: + - pos: -54.5,42.5 + parent: 1 + type: Transform + - uid: 9363 + components: + - pos: -54.5,43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9364 + components: + - pos: -53.5,43.5 + parent: 1 + type: Transform + - uid: 9365 + components: + - pos: -52.5,43.5 + parent: 1 + type: Transform + - uid: 9366 + components: + - pos: -51.5,43.5 + parent: 1 + type: Transform + - uid: 9367 + components: + - pos: -50.5,43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9368 + components: + - pos: -49.5,43.5 + parent: 1 + type: Transform + - uid: 9369 + components: + - pos: -53.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9370 + components: + - pos: -52.5,41.5 + parent: 1 + type: Transform + - uid: 9371 + components: + - pos: -52.5,40.5 + parent: 1 + type: Transform + - uid: 9372 + components: + - pos: -52.5,39.5 + parent: 1 + type: Transform + - uid: 9373 + components: + - pos: -52.5,38.5 + parent: 1 + type: Transform + - uid: 9374 + components: + - pos: -52.5,37.5 + parent: 1 + type: Transform + - uid: 9375 + components: + - pos: -52.5,36.5 + parent: 1 + type: Transform + - uid: 9376 + components: + - pos: -52.5,35.5 + parent: 1 + type: Transform + - uid: 9418 + components: + - pos: -31.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9419 + components: + - pos: -31.5,47.5 + parent: 1 + type: Transform + - uid: 9420 + components: + - pos: -31.5,46.5 + parent: 1 + type: Transform + - uid: 9421 + components: + - pos: -31.5,45.5 + parent: 1 + type: Transform + - uid: 9422 + components: + - pos: -31.5,44.5 + parent: 1 + type: Transform + - uid: 9423 + components: + - pos: -31.5,43.5 + parent: 1 + type: Transform + - uid: 9424 + components: + - pos: -30.5,46.5 + parent: 1 + type: Transform + - uid: 9425 + components: + - pos: -29.5,46.5 + parent: 1 + type: Transform + - uid: 9426 + components: + - pos: -28.5,46.5 + parent: 1 + type: Transform + - uid: 9427 + components: + - pos: -27.5,46.5 + parent: 1 + type: Transform + - uid: 9428 + components: + - pos: -32.5,43.5 + parent: 1 + type: Transform + - uid: 9429 + components: + - pos: -33.5,43.5 + parent: 1 + type: Transform + - uid: 9430 + components: + - pos: -34.5,43.5 + parent: 1 + type: Transform + - uid: 9431 + components: + - pos: -35.5,43.5 + parent: 1 + type: Transform + - uid: 9432 + components: + - pos: -36.5,43.5 + parent: 1 + type: Transform + - uid: 9433 + components: + - pos: -37.5,43.5 + parent: 1 + type: Transform + - uid: 9434 + components: + - pos: -38.5,43.5 + parent: 1 + type: Transform + - uid: 9435 + components: + - pos: -39.5,43.5 + parent: 1 + type: Transform + - uid: 9436 + components: + - pos: -40.5,43.5 + parent: 1 + type: Transform + - uid: 9437 + components: + - pos: -41.5,43.5 + parent: 1 + type: Transform + - uid: 9438 + components: + - pos: -42.5,43.5 + parent: 1 + type: Transform + - uid: 9439 + components: + - pos: -43.5,43.5 + parent: 1 + type: Transform + - uid: 9440 + components: + - pos: -44.5,43.5 + parent: 1 + type: Transform + - uid: 9441 + components: + - pos: -40.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9442 + components: + - pos: -40.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9443 + components: + - pos: -36.5,42.5 + parent: 1 + type: Transform + - uid: 9444 + components: + - pos: -36.5,44.5 + parent: 1 + type: Transform + - uid: 9445 + components: + - pos: -36.5,45.5 + parent: 1 + type: Transform + - uid: 9446 + components: + - pos: -36.5,46.5 + parent: 1 + type: Transform + - uid: 9447 + components: + - pos: -33.5,44.5 + parent: 1 + type: Transform + - uid: 9448 + components: + - pos: -33.5,45.5 + parent: 1 + type: Transform + - uid: 9449 + components: + - pos: -33.5,46.5 + parent: 1 + type: Transform + - uid: 9450 + components: + - pos: -44.5,44.5 + parent: 1 + type: Transform + - uid: 9451 + components: + - pos: -44.5,45.5 + parent: 1 + type: Transform + - uid: 9452 + components: + - pos: -44.5,46.5 + parent: 1 + type: Transform + - uid: 9453 + components: + - pos: -40.5,44.5 + parent: 1 + type: Transform + - uid: 9454 + components: + - pos: -40.5,45.5 + parent: 1 + type: Transform + - uid: 9455 + components: + - pos: -40.5,46.5 + parent: 1 + type: Transform + - uid: 9456 + components: + - pos: -40.5,47.5 + parent: 1 + type: Transform + - uid: 9457 + components: + - pos: -40.5,48.5 + parent: 1 + type: Transform + - uid: 9458 + components: + - pos: -40.5,49.5 + parent: 1 + type: Transform + - uid: 9459 + components: + - pos: -40.5,50.5 + parent: 1 + type: Transform + - uid: 9460 + components: + - pos: -41.5,50.5 + parent: 1 + type: Transform + - uid: 9461 + components: + - pos: -42.5,50.5 + parent: 1 + type: Transform + - uid: 9471 + components: + - pos: -41.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9472 + components: + - pos: -40.5,55.5 + parent: 1 + type: Transform + - uid: 9473 + components: + - pos: -39.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9474 + components: + - pos: -38.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9475 + components: + - pos: -37.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9476 + components: + - pos: -31.5,49.5 + parent: 1 + type: Transform + - uid: 9477 + components: + - pos: -31.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9478 + components: + - pos: -31.5,51.5 + parent: 1 + type: Transform + - uid: 9479 + components: + - pos: -31.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9480 + components: + - pos: -31.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9481 + components: + - pos: -31.5,54.5 + parent: 1 + type: Transform + - uid: 9482 + components: + - pos: -30.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9483 + components: + - pos: -29.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9484 + components: + - pos: -28.5,50.5 + parent: 1 + type: Transform + - uid: 9485 + components: + - pos: -27.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9486 + components: + - pos: -26.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9487 + components: + - pos: -25.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9488 + components: + - pos: -24.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9490 + components: + - pos: -18.5,53.5 + parent: 1 + type: Transform + - uid: 9491 + components: + - pos: -21.5,53.5 + parent: 1 + type: Transform + - uid: 9492 + components: + - pos: -12.5,54.5 + parent: 1 + type: Transform + - uid: 9493 + components: + - pos: -12.5,53.5 + parent: 1 + type: Transform + - uid: 9496 + components: + - pos: -23.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9497 + components: + - pos: -22.5,40.5 + parent: 1 + type: Transform + - uid: 9498 + components: + - pos: -21.5,40.5 + parent: 1 + type: Transform + - uid: 9499 + components: + - pos: -20.5,40.5 + parent: 1 + type: Transform + - uid: 9500 + components: + - pos: -20.5,39.5 + parent: 1 + type: Transform + - uid: 9501 + components: + - pos: -20.5,38.5 + parent: 1 + type: Transform + - uid: 9502 + components: + - pos: -20.5,37.5 + parent: 1 + type: Transform + - uid: 9503 + components: + - pos: -20.5,41.5 + parent: 1 + type: Transform + - uid: 9504 + components: + - pos: -20.5,42.5 + parent: 1 + type: Transform + - uid: 9505 + components: + - pos: -20.5,43.5 + parent: 1 + type: Transform + - uid: 9506 + components: + - pos: -20.5,44.5 + parent: 1 + type: Transform + - uid: 9507 + components: + - pos: -20.5,45.5 + parent: 1 + type: Transform + - uid: 9508 + components: + - pos: -20.5,46.5 + parent: 1 + type: Transform + - uid: 9509 + components: + - pos: -20.5,47.5 + parent: 1 + type: Transform + - uid: 9510 + components: + - pos: -20.5,48.5 + parent: 1 + type: Transform + - uid: 9511 + components: + - pos: -19.5,45.5 + parent: 1 + type: Transform + - uid: 9512 + components: + - pos: -18.5,45.5 + parent: 1 + type: Transform + - uid: 9513 + components: + - pos: -17.5,45.5 + parent: 1 + type: Transform + - uid: 9514 + components: + - pos: -16.5,45.5 + parent: 1 + type: Transform + - uid: 9515 + components: + - pos: -16.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9516 + components: + - pos: -16.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9517 + components: + - pos: -15.5,47.5 + parent: 1 + type: Transform + - uid: 9518 + components: + - pos: -14.5,47.5 + parent: 1 + type: Transform + - uid: 9519 + components: + - pos: -13.5,47.5 + parent: 1 + type: Transform + - uid: 9520 + components: + - pos: -12.5,47.5 + parent: 1 + type: Transform + - uid: 9521 + components: + - pos: -11.5,47.5 + parent: 1 + type: Transform + - uid: 9522 + components: + - pos: -10.5,47.5 + parent: 1 + type: Transform + - uid: 9523 + components: + - pos: -16.5,44.5 + parent: 1 + type: Transform + - uid: 9524 + components: + - pos: -16.5,43.5 + parent: 1 + type: Transform + - uid: 9525 + components: + - pos: -16.5,42.5 + parent: 1 + type: Transform + - uid: 9526 + components: + - pos: -16.5,41.5 + parent: 1 + type: Transform + - uid: 9527 + components: + - pos: -16.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9528 + components: + - pos: -16.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9529 + components: + - pos: -16.5,38.5 + parent: 1 + type: Transform + - uid: 9530 + components: + - pos: -16.5,37.5 + parent: 1 + type: Transform + - uid: 9531 + components: + - pos: -16.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9532 + components: + - pos: -24.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9533 + components: + - pos: -24.5,39.5 + parent: 1 + type: Transform + - uid: 9534 + components: + - pos: -24.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9535 + components: + - pos: -24.5,37.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9536 + components: + - pos: -24.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9537 + components: + - pos: -24.5,35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9538 + components: + - pos: -24.5,34.5 + parent: 1 + type: Transform + - uid: 9539 + components: + - pos: -16.5,35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9540 + components: + - pos: -16.5,34.5 + parent: 1 + type: Transform + - uid: 9541 + components: + - pos: -16.5,33.5 + parent: 1 + type: Transform + - uid: 9542 + components: + - pos: -16.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9558 + components: + - pos: -26.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9559 + components: + - pos: -27.5,38.5 + parent: 1 + type: Transform + - uid: 9560 + components: + - pos: -27.5,37.5 + parent: 1 + type: Transform + - uid: 9561 + components: + - pos: -28.5,37.5 + parent: 1 + type: Transform + - uid: 9562 + components: + - pos: -29.5,37.5 + parent: 1 + type: Transform + - uid: 9563 + components: + - pos: -30.5,37.5 + parent: 1 + type: Transform + - uid: 9564 + components: + - pos: -31.5,37.5 + parent: 1 + type: Transform + - uid: 9565 + components: + - pos: -32.5,37.5 + parent: 1 + type: Transform + - uid: 9566 + components: + - pos: -33.5,37.5 + parent: 1 + type: Transform + - uid: 9567 + components: + - pos: -34.5,37.5 + parent: 1 + type: Transform + - uid: 9568 + components: + - pos: -35.5,37.5 + parent: 1 + type: Transform + - uid: 9569 + components: + - pos: -36.5,37.5 + parent: 1 + type: Transform + - uid: 9570 + components: + - pos: -37.5,37.5 + parent: 1 + type: Transform + - uid: 9571 + components: + - pos: -38.5,37.5 + parent: 1 + type: Transform + - uid: 9572 + components: + - pos: -39.5,37.5 + parent: 1 + type: Transform + - uid: 9574 + components: + - pos: -41.5,37.5 + parent: 1 + type: Transform + - uid: 9575 + components: + - pos: -42.5,37.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9576 + components: + - pos: -43.5,37.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9577 + components: + - pos: -44.5,37.5 + parent: 1 + type: Transform + - uid: 9578 + components: + - pos: -32.5,38.5 + parent: 1 + type: Transform + - uid: 9579 + components: + - pos: -32.5,36.5 + parent: 1 + type: Transform + - uid: 9580 + components: + - pos: -36.5,38.5 + parent: 1 + type: Transform + - uid: 9581 + components: + - pos: -36.5,36.5 + parent: 1 + type: Transform + - uid: 9582 + components: + - pos: -36.5,35.5 + parent: 1 + type: Transform + - uid: 9583 + components: + - pos: -38.5,36.5 + parent: 1 + type: Transform + - uid: 9584 + components: + - pos: -38.5,35.5 + parent: 1 + type: Transform + - uid: 9585 + components: + - pos: -38.5,38.5 + parent: 1 + type: Transform + - uid: 9586 + components: + - pos: -32.5,35.5 + parent: 1 + type: Transform + - uid: 9640 + components: + - pos: -70.5,33.5 + parent: 1 + type: Transform + - uid: 10058 + components: + - pos: -15.5,14.5 + parent: 1 + type: Transform + - uid: 10071 + components: + - pos: 21.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10155 + components: + - pos: -51.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10264 + components: + - pos: -33.5,-8.5 + parent: 1 + type: Transform + - uid: 10269 + components: + - pos: -33.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10280 + components: + - pos: -33.5,-6.5 + parent: 1 + type: Transform + - uid: 10295 + components: + - pos: -34.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10397 + components: + - pos: -36.5,-6.5 + parent: 1 + type: Transform + - uid: 10399 + components: + - pos: -31.5,-6.5 + parent: 1 + type: Transform + - uid: 10404 + components: + - pos: -32.5,-6.5 + parent: 1 + type: Transform + - uid: 10410 + components: + - pos: 23.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10413 + components: + - pos: 24.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10414 + components: + - pos: 24.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10415 + components: + - pos: 17.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10424 + components: + - pos: 18.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10425 + components: + - pos: 19.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10429 + components: + - pos: 22.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10431 + components: + - pos: 16.5,37.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10432 + components: + - pos: 19.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10433 + components: + - pos: 24.5,43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10434 + components: + - pos: 24.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10435 + components: + - pos: 24.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10999 + components: + - pos: -65.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11000 + components: + - pos: -64.5,44.5 + parent: 1 + type: Transform + - uid: 11001 + components: + - pos: -63.5,44.5 + parent: 1 + type: Transform + - uid: 11002 + components: + - pos: -62.5,44.5 + parent: 1 + type: Transform + - uid: 11003 + components: + - pos: -61.5,44.5 + parent: 1 + type: Transform + - uid: 11004 + components: + - pos: -60.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11005 + components: + - pos: -59.5,44.5 + parent: 1 + type: Transform + - uid: 11006 + components: + - pos: -58.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11007 + components: + - pos: -57.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11008 + components: + - pos: -62.5,43.5 + parent: 1 + type: Transform + - uid: 11009 + components: + - pos: -62.5,42.5 + parent: 1 + type: Transform + - uid: 11010 + components: + - pos: -62.5,41.5 + parent: 1 + type: Transform + - uid: 11011 + components: + - pos: -62.5,40.5 + parent: 1 + type: Transform + - uid: 11012 + components: + - pos: -62.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11015 + components: + - pos: -66.5,44.5 + parent: 1 + type: Transform + - uid: 11016 + components: + - pos: -66.5,45.5 + parent: 1 + type: Transform + - uid: 11017 + components: + - pos: -66.5,46.5 + parent: 1 + type: Transform + - uid: 11018 + components: + - pos: -66.5,47.5 + parent: 1 + type: Transform + - uid: 11019 + components: + - pos: -67.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11020 + components: + - pos: -68.5,47.5 + parent: 1 + type: Transform + - uid: 11021 + components: + - pos: -69.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11022 + components: + - pos: -70.5,47.5 + parent: 1 + type: Transform + - uid: 11023 + components: + - pos: -66.5,43.5 + parent: 1 + type: Transform + - uid: 11024 + components: + - pos: -66.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11025 + components: + - pos: -66.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11026 + components: + - pos: -66.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11027 + components: + - pos: -67.5,40.5 + parent: 1 + type: Transform + - uid: 11028 + components: + - pos: -68.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11029 + components: + - pos: -69.5,40.5 + parent: 1 + type: Transform + - uid: 11030 + components: + - pos: -70.5,40.5 + parent: 1 + type: Transform + - uid: 11031 + components: + - pos: -71.5,40.5 + parent: 1 + type: Transform + - uid: 11032 + components: + - pos: -71.5,41.5 + parent: 1 + type: Transform + - uid: 11033 + components: + - pos: -71.5,42.5 + parent: 1 + type: Transform + - uid: 11034 + components: + - pos: -71.5,43.5 + parent: 1 + type: Transform + - uid: 11035 + components: + - pos: -71.5,44.5 + parent: 1 + type: Transform + - uid: 11036 + components: + - pos: -66.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11037 + components: + - pos: -66.5,49.5 + parent: 1 + type: Transform + - uid: 11038 + components: + - pos: -66.5,50.5 + parent: 1 + type: Transform + - uid: 11039 + components: + - pos: -67.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11040 + components: + - pos: -67.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11041 + components: + - pos: -67.5,52.5 + parent: 1 + type: Transform + - uid: 11042 + components: + - pos: -68.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11043 + components: + - pos: -69.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11044 + components: + - pos: -70.5,52.5 + parent: 1 + type: Transform + - uid: 11045 + components: + - pos: -71.5,52.5 + parent: 1 + type: Transform + - uid: 11046 + components: + - pos: -71.5,53.5 + parent: 1 + type: Transform + - uid: 11047 + components: + - pos: -71.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11048 + components: + - pos: -71.5,55.5 + parent: 1 + type: Transform + - uid: 11160 + components: + - pos: -75.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11161 + components: + - pos: -74.5,21.5 + parent: 1 + type: Transform + - uid: 11162 + components: + - pos: -73.5,21.5 + parent: 1 + type: Transform + - uid: 11163 + components: + - pos: -72.5,21.5 + parent: 1 + type: Transform + - uid: 11164 + components: + - pos: -71.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11165 + components: + - pos: -70.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11166 + components: + - pos: -69.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11173 + components: + - pos: -68.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11174 + components: + - pos: -67.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11322 + components: + - pos: -66.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11323 + components: + - pos: -65.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11324 + components: + - pos: -64.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11325 + components: + - pos: -74.5,22.5 + parent: 1 + type: Transform + - uid: 11326 + components: + - pos: -74.5,23.5 + parent: 1 + type: Transform + - uid: 11327 + components: + - pos: -74.5,24.5 + parent: 1 + type: Transform + - uid: 11328 + components: + - pos: -74.5,25.5 + parent: 1 + type: Transform + - uid: 11329 + components: + - pos: -75.5,25.5 + parent: 1 + type: Transform + - uid: 11330 + components: + - pos: -76.5,25.5 + parent: 1 + type: Transform + - uid: 11331 + components: + - pos: -77.5,25.5 + parent: 1 + type: Transform + - uid: 11332 + components: + - pos: -78.5,25.5 + parent: 1 + type: Transform + - uid: 11333 + components: + - pos: -79.5,25.5 + parent: 1 + type: Transform + - uid: 11334 + components: + - pos: -79.5,24.5 + parent: 1 + type: Transform + - uid: 11335 + components: + - pos: -79.5,23.5 + parent: 1 + type: Transform + - uid: 11336 + components: + - pos: -79.5,22.5 + parent: 1 + type: Transform + - uid: 11337 + components: + - pos: -79.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11338 + components: + - pos: -79.5,20.5 + parent: 1 + type: Transform + - uid: 11339 + components: + - pos: -79.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11340 + components: + - pos: -80.5,19.5 + parent: 1 + type: Transform + - uid: 11341 + components: + - pos: -81.5,19.5 + parent: 1 + type: Transform + - uid: 11342 + components: + - pos: -78.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11343 + components: + - pos: -77.5,19.5 + parent: 1 + type: Transform + - uid: 11344 + components: + - pos: -80.5,23.5 + parent: 1 + type: Transform + - uid: 11345 + components: + - pos: -81.5,23.5 + parent: 1 + type: Transform + - uid: 11346 + components: + - pos: -82.5,23.5 + parent: 1 + type: Transform + - uid: 11347 + components: + - pos: -83.5,23.5 + parent: 1 + type: Transform + - uid: 11348 + components: + - pos: -84.5,23.5 + parent: 1 + type: Transform + - uid: 11349 + components: + - pos: -84.5,22.5 + parent: 1 + type: Transform + - uid: 11350 + components: + - pos: -84.5,21.5 + parent: 1 + type: Transform + - uid: 11351 + components: + - pos: -84.5,20.5 + parent: 1 + type: Transform + - uid: 11352 + components: + - pos: -79.5,26.5 + parent: 1 + type: Transform + - uid: 11353 + components: + - pos: -79.5,27.5 + parent: 1 + type: Transform + - uid: 11354 + components: + - pos: -80.5,27.5 + parent: 1 + type: Transform + - uid: 11355 + components: + - pos: -81.5,27.5 + parent: 1 + type: Transform + - uid: 11356 + components: + - pos: -82.5,27.5 + parent: 1 + type: Transform + - uid: 11357 + components: + - pos: -83.5,27.5 + parent: 1 + type: Transform + - uid: 11358 + components: + - pos: -84.5,27.5 + parent: 1 + type: Transform + - uid: 11359 + components: + - pos: -84.5,28.5 + parent: 1 + type: Transform + - uid: 11360 + components: + - pos: -84.5,29.5 + parent: 1 + type: Transform + - uid: 11361 + components: + - pos: -84.5,30.5 + parent: 1 + type: Transform + - uid: 11362 + components: + - pos: -74.5,26.5 + parent: 1 + type: Transform + - uid: 11363 + components: + - pos: -74.5,27.5 + parent: 1 + type: Transform + - uid: 11364 + components: + - pos: -74.5,28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11365 + components: + - pos: -74.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11366 + components: + - pos: -74.5,20.5 + parent: 1 + type: Transform + - uid: 11367 + components: + - pos: -74.5,19.5 + parent: 1 + type: Transform + - uid: 11368 + components: + - pos: -74.5,18.5 + parent: 1 + type: Transform + - uid: 11369 + components: + - pos: -74.5,17.5 + parent: 1 + type: Transform + - uid: 11370 + components: + - pos: -74.5,16.5 + parent: 1 + type: Transform + - uid: 11371 + components: + - pos: -73.5,16.5 + parent: 1 + type: Transform + - uid: 11372 + components: + - pos: -72.5,16.5 + parent: 1 + type: Transform + - uid: 11373 + components: + - pos: -71.5,16.5 + parent: 1 + type: Transform + - uid: 11374 + components: + - pos: -70.5,16.5 + parent: 1 + type: Transform + - uid: 11375 + components: + - pos: -69.5,16.5 + parent: 1 + type: Transform + - uid: 11376 + components: + - pos: -60.5,6.5 + parent: 1 + type: Transform + - uid: 11377 + components: + - pos: -60.5,7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11378 + components: + - pos: -60.5,8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11379 + components: + - pos: -61.5,8.5 + parent: 1 + type: Transform + - uid: 11380 + components: + - pos: -62.5,8.5 + parent: 1 + type: Transform + - uid: 11381 + components: + - pos: -63.5,8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11382 + components: + - pos: -64.5,8.5 + parent: 1 + type: Transform + - uid: 11383 + components: + - pos: -65.5,8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11384 + components: + - pos: -66.5,8.5 + parent: 1 + type: Transform + - uid: 11385 + components: + - pos: -66.5,9.5 + parent: 1 + type: Transform + - uid: 11386 + components: + - pos: -66.5,10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11387 + components: + - pos: -66.5,11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11388 + components: + - pos: -66.5,12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11389 + components: + - pos: -66.5,13.5 + parent: 1 + type: Transform + - uid: 11390 + components: + - pos: -66.5,14.5 + parent: 1 + type: Transform + - uid: 11391 + components: + - pos: -66.5,15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11392 + components: + - pos: -66.5,16.5 + parent: 1 + type: Transform + - uid: 11393 + components: + - pos: -65.5,16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11394 + components: + - pos: -64.5,16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11395 + components: + - pos: -63.5,16.5 + parent: 1 + type: Transform + - uid: 11396 + components: + - pos: -68.5,35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11397 + components: + - pos: -68.5,34.5 + parent: 1 + type: Transform + - uid: 11398 + components: + - pos: -68.5,33.5 + parent: 1 + type: Transform + - uid: 11399 + components: + - pos: -67.5,33.5 + parent: 1 + type: Transform + - uid: 11400 + components: + - pos: -66.5,33.5 + parent: 1 + type: Transform + - uid: 11401 + components: + - pos: -65.5,33.5 + parent: 1 + type: Transform + - uid: 11402 + components: + - pos: -64.5,33.5 + parent: 1 + type: Transform + - uid: 11403 + components: + - pos: -64.5,31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11404 + components: + - pos: -63.5,32.5 + parent: 1 + type: Transform + - uid: 11405 + components: + - pos: -62.5,32.5 + parent: 1 + type: Transform + - uid: 11406 + components: + - pos: -61.5,32.5 + parent: 1 + type: Transform + - uid: 11407 + components: + - pos: -60.5,32.5 + parent: 1 + type: Transform + - uid: 11408 + components: + - pos: -64.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11409 + components: + - pos: -64.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11410 + components: + - pos: -64.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11411 + components: + - pos: -64.5,28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11412 + components: + - pos: -64.5,27.5 + parent: 1 + type: Transform + - uid: 11413 + components: + - pos: -65.5,27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11414 + components: + - pos: -66.5,27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11415 + components: + - pos: -69.5,34.5 + parent: 1 + type: Transform + - uid: 11416 + components: + - pos: -70.5,34.5 + parent: 1 + type: Transform + - uid: 11417 + components: + - pos: -71.5,34.5 + parent: 1 + type: Transform + - uid: 11418 + components: + - pos: -72.5,34.5 + parent: 1 + type: Transform + - uid: 11419 + components: + - pos: -73.5,34.5 + parent: 1 + type: Transform + - uid: 11420 + components: + - pos: -74.5,34.5 + parent: 1 + type: Transform + - uid: 11421 + components: + - pos: -74.5,33.5 + parent: 1 + type: Transform + - uid: 11422 + components: + - pos: -74.5,32.5 + parent: 1 + type: Transform + - uid: 11423 + components: + - pos: -74.5,31.5 + parent: 1 + type: Transform + - uid: 11424 + components: + - pos: -76.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11425 + components: + - pos: -77.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11426 + components: + - pos: -78.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11432 + components: + - pos: -78.5,37.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11433 + components: + - pos: -78.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11434 + components: + - pos: -78.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11435 + components: + - pos: -78.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11436 + components: + - pos: -78.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11437 + components: + - pos: -78.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11438 + components: + - pos: -78.5,43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11439 + components: + - pos: -78.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11440 + components: + - pos: -78.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11441 + components: + - pos: -78.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11442 + components: + - pos: -77.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11443 + components: + - pos: -77.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11445 + components: + - pos: -79.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11446 + components: + - pos: -80.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11447 + components: + - pos: -81.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11448 + components: + - pos: -82.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11449 + components: + - pos: -83.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11450 + components: + - pos: -84.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11451 + components: + - pos: -85.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11452 + components: + - pos: -85.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11453 + components: + - pos: -85.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11454 + components: + - pos: -85.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11455 + components: + - pos: -85.5,43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11456 + components: + - pos: -85.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11457 + components: + - pos: -85.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11458 + components: + - pos: -85.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11459 + components: + - pos: -85.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11460 + components: + - pos: -85.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11461 + components: + - pos: -85.5,37.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11462 + components: + - pos: -85.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11463 + components: + - pos: -85.5,35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11464 + components: + - pos: -85.5,34.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11465 + components: + - pos: -86.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11466 + components: + - pos: -87.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11467 + components: + - pos: -87.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11471 + components: + - pos: -87.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11472 + components: + - pos: -87.5,43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11473 + components: + - pos: -87.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11474 + components: + - pos: -87.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11476 + components: + - pos: -87.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11477 + components: + - pos: -87.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11478 + components: + - pos: -87.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11479 + components: + - pos: -87.5,37.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11480 + components: + - pos: -87.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11481 + components: + - pos: -87.5,35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11482 + components: + - pos: -87.5,34.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11483 + components: + - pos: -88.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11484 + components: + - pos: -89.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11485 + components: + - pos: -90.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11486 + components: + - pos: -91.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11487 + components: + - pos: -91.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11488 + components: + - pos: -91.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11490 + components: + - pos: -91.5,43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11491 + components: + - pos: -91.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11492 + components: + - pos: -91.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11493 + components: + - pos: -91.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11494 + components: + - pos: -91.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11495 + components: + - pos: -91.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11496 + components: + - pos: -91.5,37.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11497 + components: + - pos: -91.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11498 + components: + - pos: -91.5,35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11499 + components: + - pos: -91.5,34.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11500 + components: + - pos: -84.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11501 + components: + - pos: -84.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11502 + components: + - pos: -83.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11504 + components: + - pos: -82.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11505 + components: + - pos: -81.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11506 + components: + - pos: -80.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11507 + components: + - pos: -80.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11510 + components: + - pos: -84.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11512 + components: + - pos: -78.5,35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11514 + components: + - pos: -78.5,34.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11575 + components: + - pos: -40.5,37.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11903 + components: + - pos: 22.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11917 + components: + - pos: 18.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12039 + components: + - pos: -78.5,33.5 + parent: 1 + type: Transform + - uid: 12221 + components: + - pos: -78.5,32.5 + parent: 1 + type: Transform + - uid: 12432 + components: + - pos: -78.5,31.5 + parent: 1 + type: Transform + - uid: 12501 + components: + - pos: -78.5,30.5 + parent: 1 + type: Transform + - uid: 12502 + components: + - pos: -78.5,29.5 + parent: 1 + type: Transform + - uid: 12505 + components: + - pos: -82.5,33.5 + parent: 1 + type: Transform + - uid: 13035 + components: + - pos: -82.5,32.5 + parent: 1 + type: Transform + - uid: 13036 + components: + - pos: -82.5,31.5 + parent: 1 + type: Transform + - uid: 13037 + components: + - pos: -82.5,30.5 + parent: 1 + type: Transform + - uid: 13038 + components: + - pos: -82.5,29.5 + parent: 1 + type: Transform + - uid: 13331 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13332 + components: + - pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 13333 + components: + - pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 13334 + components: + - pos: -0.5,9.5 + parent: 1 + type: Transform + - uid: 13658 + components: + - pos: -51.5,36.5 + parent: 1 + type: Transform + - uid: 13659 + components: + - pos: -50.5,36.5 + parent: 1 + type: Transform + - uid: 13660 + components: + - pos: -49.5,36.5 + parent: 1 + type: Transform + - uid: 14005 + components: + - pos: -72.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14006 + components: + - pos: -73.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14039 + components: + - pos: -70.5,32.5 + parent: 1 + type: Transform + - uid: 14041 + components: + - pos: -70.5,31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14042 + components: + - pos: -70.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14043 + components: + - pos: -70.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14044 + components: + - pos: -70.5,28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14231 + components: + - pos: -73.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14232 + components: + - pos: -73.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15005 + components: + - pos: -74.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15006 + components: + - pos: -75.5,54.5 + parent: 1 + type: Transform + - uid: 15007 + components: + - pos: -76.5,54.5 + parent: 1 + type: Transform + - uid: 15050 + components: + - pos: -36.5,55.5 + parent: 1 + type: Transform + - uid: 15051 + components: + - pos: -35.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15052 + components: + - pos: -34.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15053 + components: + - pos: -33.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15054 + components: + - pos: -32.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15055 + components: + - pos: -31.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15056 + components: + - pos: -58.5,86.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15062 + components: + - pos: -46.5,-2.5 + parent: 1 + type: Transform + - uid: 15113 + components: + - pos: -31.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15237 + components: + - pos: 17.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15238 + components: + - pos: 17.5,48.5 + parent: 1 + type: Transform + - uid: 15239 + components: + - pos: 17.5,49.5 + parent: 1 + type: Transform + - uid: 15240 + components: + - pos: 17.5,50.5 + parent: 1 + type: Transform + - uid: 15241 + components: + - pos: 17.5,51.5 + parent: 1 + type: Transform + - uid: 15242 + components: + - pos: 16.5,51.5 + parent: 1 + type: Transform + - uid: 15243 + components: + - pos: 15.5,51.5 + parent: 1 + type: Transform + - uid: 15244 + components: + - pos: 14.5,51.5 + parent: 1 + type: Transform + - uid: 15245 + components: + - pos: 16.5,52.5 + parent: 1 + type: Transform + - uid: 15246 + components: + - pos: 13.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15247 + components: + - pos: 14.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15248 + components: + - pos: 15.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15249 + components: + - pos: 16.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15250 + components: + - pos: 17.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15251 + components: + - pos: 18.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15252 + components: + - pos: 19.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15253 + components: + - pos: 18.5,50.5 + parent: 1 + type: Transform + - uid: 15254 + components: + - pos: 19.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15255 + components: + - pos: 19.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15256 + components: + - pos: 19.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15257 + components: + - pos: 19.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15258 + components: + - pos: 19.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15282 + components: + - pos: 7.5,40.5 + parent: 1 + type: Transform + - uid: 15283 + components: + - pos: 7.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15284 + components: + - pos: 7.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15285 + components: + - pos: 7.5,43.5 + parent: 1 + type: Transform + - uid: 15286 + components: + - pos: 7.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15287 + components: + - pos: 7.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15288 + components: + - pos: 7.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15291 + components: + - pos: 10.5,33.5 + parent: 1 + type: Transform + - uid: 15380 + components: + - pos: -16.5,53.5 + parent: 1 + type: Transform + - uid: 15430 + components: + - pos: -41.5,63.5 + parent: 1 + type: Transform + - uid: 15431 + components: + - pos: -40.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15432 + components: + - pos: -42.5,61.5 + parent: 1 + type: Transform + - uid: 15433 + components: + - pos: -42.5,60.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15434 + components: + - pos: -42.5,66.5 + parent: 1 + type: Transform + - uid: 15517 + components: + - pos: -5.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15518 + components: + - pos: -5.5,-17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15519 + components: + - pos: -5.5,-18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15845 + components: + - pos: 19.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15870 + components: + - pos: 12.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15871 + components: + - pos: 11.5,51.5 + parent: 1 + type: Transform + - uid: 15890 + components: + - pos: -24.5,-10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15891 + components: + - pos: -24.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15951 + components: + - pos: -51.5,31.5 + parent: 1 + type: Transform + - uid: 15952 + components: + - pos: -51.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15953 + components: + - pos: -52.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15954 + components: + - pos: -53.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15955 + components: + - pos: -50.5,28.5 + parent: 1 + type: Transform + - uid: 15956 + components: + - pos: -50.5,29.5 + parent: 1 + type: Transform + - uid: 15957 + components: + - pos: -50.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15987 + components: + - pos: -8.5,8.5 + parent: 1 + type: Transform + - uid: 15988 + components: + - pos: -17.5,9.5 + parent: 1 + type: Transform +- proto: CableApcStack + entities: + - uid: 2887 + components: + - pos: 25.496317,-7.99954 + parent: 1 + type: Transform + - uid: 3422 + components: + - pos: -53.87841,29.69635 + parent: 1 + type: Transform + - uid: 5643 + components: + - pos: -25.946909,26.643772 + parent: 1 + type: Transform + - uid: 15535 + components: + - pos: -4.5217714,-18.557777 + parent: 1 + type: Transform + - uid: 15990 + components: + - pos: -7.4238524,8.228333 + parent: 1 + type: Transform +- proto: CableApcStack1 + entities: + - uid: 13667 + components: + - pos: -17.665174,-14.392005 + parent: 1 + type: Transform + - count: 5 + type: Stack +- proto: Cablecuffs + entities: + - uid: 2258 + components: + - pos: 0.18249932,43.256775 + parent: 1 + type: Transform + - uid: 12773 + components: + - pos: 20.44684,28.601988 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 560 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 561 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 562 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 563 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 564 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 565 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 566 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 567 + components: + - pos: 4.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 568 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 569 + components: + - pos: 4.5,-3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 570 + components: + - pos: 4.5,-4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 571 + components: + - pos: 4.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 572 + components: + - pos: 5.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 573 + components: + - pos: 6.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 574 + components: + - pos: 7.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 594 + components: + - pos: 8.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 595 + components: + - pos: 9.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 596 + components: + - pos: 10.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 597 + components: + - pos: 11.5,-5.5 + parent: 1 + type: Transform + - uid: 598 + components: + - pos: 11.5,-6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 599 + components: + - pos: 11.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 728 + components: + - pos: 12.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 729 + components: + - pos: 13.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 730 + components: + - pos: 14.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 731 + components: + - pos: 15.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 732 + components: + - pos: 16.5,-5.5 + parent: 1 + type: Transform + - uid: 733 + components: + - pos: 17.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 734 + components: + - pos: 18.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 735 + components: + - pos: 19.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 736 + components: + - pos: 20.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 737 + components: + - pos: 21.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 738 + components: + - pos: 22.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 739 + components: + - pos: 23.5,-5.5 + parent: 1 + type: Transform + - uid: 740 + components: + - pos: 24.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 741 + components: + - pos: 25.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 742 + components: + - pos: 26.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 743 + components: + - pos: 27.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 744 + components: + - pos: 28.5,-10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 745 + components: + - pos: 28.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 746 + components: + - pos: 18.5,-14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 747 + components: + - pos: 28.5,-8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 750 + components: + - pos: 19.5,-14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 751 + components: + - pos: 20.5,-14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 752 + components: + - pos: 21.5,-14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 753 + components: + - pos: 22.5,-14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 754 + components: + - pos: 23.5,-14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 755 + components: + - pos: 24.5,-14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 756 + components: + - pos: 25.5,-14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 757 + components: + - pos: 26.5,-14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 758 + components: + - pos: 27.5,-14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 759 + components: + - pos: 18.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 760 + components: + - pos: 19.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 761 + components: + - pos: 20.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 762 + components: + - pos: 21.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 763 + components: + - pos: 22.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 764 + components: + - pos: 23.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 765 + components: + - pos: 24.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 766 + components: + - pos: 25.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 767 + components: + - pos: 26.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 768 + components: + - pos: 27.5,-16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 769 + components: + - pos: 19.5,-18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 770 + components: + - pos: 20.5,-18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 771 + components: + - pos: 21.5,-18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 772 + components: + - pos: 22.5,-18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 773 + components: + - pos: 23.5,-18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 774 + components: + - pos: 24.5,-18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 775 + components: + - pos: 25.5,-18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 776 + components: + - pos: 26.5,-18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 777 + components: + - pos: 27.5,-18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 778 + components: + - pos: 19.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 779 + components: + - pos: 20.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 780 + components: + - pos: 21.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 781 + components: + - pos: 22.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 782 + components: + - pos: 23.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 783 + components: + - pos: 24.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 784 + components: + - pos: 25.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 785 + components: + - pos: 26.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 786 + components: + - pos: 27.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 787 + components: + - pos: 20.5,-22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 788 + components: + - pos: 21.5,-22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 789 + components: + - pos: 22.5,-22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 790 + components: + - pos: 23.5,-22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 791 + components: + - pos: 24.5,-22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 792 + components: + - pos: 25.5,-22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 793 + components: + - pos: 26.5,-22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 794 + components: + - pos: 27.5,-22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 795 + components: + - pos: 20.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 796 + components: + - pos: 21.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 797 + components: + - pos: 22.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 798 + components: + - pos: 23.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 799 + components: + - pos: 24.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 800 + components: + - pos: 25.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 801 + components: + - pos: 26.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 802 + components: + - pos: 27.5,-24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 857 + components: + - pos: 28.5,-27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 858 + components: + - pos: 28.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 859 + components: + - pos: 28.5,-25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 903 + components: + - pos: 27.5,-6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 904 + components: + - pos: 27.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 905 + components: + - pos: 27.5,-8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 924 + components: + - pos: 25.5,1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 925 + components: + - pos: 25.5,2.5 + parent: 1 + type: Transform + - uid: 926 + components: + - pos: 25.5,3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 927 + components: + - pos: 26.5,3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 928 + components: + - pos: 26.5,4.5 + parent: 1 + type: Transform + - uid: 929 + components: + - pos: 26.5,5.5 + parent: 1 + type: Transform + - uid: 988 + components: + - pos: 26.5,21.5 + parent: 1 + type: Transform + - uid: 990 + components: + - pos: 26.5,25.5 + parent: 1 + type: Transform + - uid: 991 + components: + - pos: 27.5,25.5 + parent: 1 + type: Transform + - uid: 992 + components: + - pos: 28.5,25.5 + parent: 1 + type: Transform + - uid: 993 + components: + - pos: 28.5,24.5 + parent: 1 + type: Transform + - uid: 1018 + components: + - pos: 26.5,22.5 + parent: 1 + type: Transform + - uid: 1029 + components: + - pos: 26.5,20.5 + parent: 1 + type: Transform + - uid: 1506 + components: + - pos: -18.5,20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1534 + components: + - pos: 25.5,5.5 + parent: 1 + type: Transform + - uid: 1535 + components: + - pos: 24.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1536 + components: + - pos: 23.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1537 + components: + - pos: 22.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1538 + components: + - pos: 21.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1539 + components: + - pos: 20.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1540 + components: + - pos: 19.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1541 + components: + - pos: 18.5,5.5 + parent: 1 + type: Transform + - uid: 1542 + components: + - pos: 17.5,5.5 + parent: 1 + type: Transform + - uid: 1543 + components: + - pos: 16.5,5.5 + parent: 1 + type: Transform + - uid: 1544 + components: + - pos: 15.5,5.5 + parent: 1 + type: Transform + - uid: 1545 + components: + - pos: 14.5,5.5 + parent: 1 + type: Transform + - uid: 1546 + components: + - pos: 13.5,5.5 + parent: 1 + type: Transform + - uid: 1547 + components: + - pos: 12.5,5.5 + parent: 1 + type: Transform + - uid: 1548 + components: + - pos: 11.5,5.5 + parent: 1 + type: Transform + - uid: 1549 + components: + - pos: 10.5,5.5 + parent: 1 + type: Transform + - uid: 1550 + components: + - pos: 9.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1551 + components: + - pos: 8.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1552 + components: + - pos: 7.5,5.5 + parent: 1 + type: Transform + - uid: 1553 + components: + - pos: 6.5,5.5 + parent: 1 + type: Transform + - uid: 1554 + components: + - pos: 5.5,5.5 + parent: 1 + type: Transform + - uid: 1555 + components: + - pos: 22.5,6.5 + parent: 1 + type: Transform + - uid: 1556 + components: + - pos: 22.5,7.5 + parent: 1 + type: Transform + - uid: 1557 + components: + - pos: 22.5,8.5 + parent: 1 + type: Transform + - uid: 1558 + components: + - pos: 22.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1559 + components: + - pos: 23.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1561 + components: + - pos: 3.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1562 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1563 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1564 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1565 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1566 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1567 + components: + - pos: -2.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1568 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1569 + components: + - pos: -4.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1570 + components: + - pos: -5.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1571 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1572 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1573 + components: + - pos: -5.5,8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1574 + components: + - pos: -5.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1575 + components: + - pos: -5.5,10.5 + parent: 1 + type: Transform + - uid: 1576 + components: + - pos: -5.5,11.5 + parent: 1 + type: Transform + - uid: 1577 + components: + - pos: -5.5,12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1578 + components: + - pos: -5.5,13.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1579 + components: + - pos: -5.5,14.5 + parent: 1 + type: Transform + - uid: 1580 + components: + - pos: -5.5,15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1581 + components: + - pos: -5.5,16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1582 + components: + - pos: -5.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1583 + components: + - pos: -6.5,17.5 + parent: 1 + type: Transform + - uid: 1584 + components: + - pos: -7.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1585 + components: + - pos: -8.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1586 + components: + - pos: -9.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1587 + components: + - pos: -9.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2401 + components: + - pos: -22.5,61.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2589 + components: + - pos: 28.5,23.5 + parent: 1 + type: Transform + - uid: 2777 + components: + - pos: -19.5,20.5 + parent: 1 + type: Transform + - uid: 2780 + components: + - pos: -20.5,20.5 + parent: 1 + type: Transform + - uid: 2784 + components: + - pos: -18.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2910 + components: + - pos: -13.5,20.5 + parent: 1 + type: Transform + - uid: 2921 + components: + - pos: 22.5,4.5 + parent: 1 + type: Transform + - uid: 2922 + components: + - pos: 22.5,3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2923 + components: + - pos: 22.5,2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2924 + components: + - pos: 22.5,1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2925 + components: + - pos: 23.5,1.5 + parent: 1 + type: Transform + - uid: 2926 + components: + - pos: 23.5,0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2927 + components: + - pos: 23.5,-0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2928 + components: + - pos: 23.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2929 + components: + - pos: 23.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2930 + components: + - pos: 23.5,-3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2931 + components: + - pos: 23.5,-4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2972 + components: + - pos: 25.5,24.5 + parent: 1 + type: Transform + - uid: 2973 + components: + - pos: 25.5,23.5 + parent: 1 + type: Transform + - uid: 2974 + components: + - pos: 26.5,23.5 + parent: 1 + type: Transform + - uid: 2978 + components: + - pos: 25.5,25.5 + parent: 1 + type: Transform + - uid: 3040 + components: + - pos: -20.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3331 + components: + - pos: -6.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3332 + components: + - pos: -6.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3333 + components: + - pos: -6.5,20.5 + parent: 1 + type: Transform + - uid: 3334 + components: + - pos: -6.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3335 + components: + - pos: -6.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3336 + components: + - pos: -6.5,23.5 + parent: 1 + type: Transform + - uid: 3337 + components: + - pos: -6.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3338 + components: + - pos: -6.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3339 + components: + - pos: -7.5,25.5 + parent: 1 + type: Transform + - uid: 3340 + components: + - pos: -8.5,25.5 + parent: 1 + type: Transform + - uid: 3341 + components: + - pos: -9.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3342 + components: + - pos: -10.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3343 + components: + - pos: -11.5,25.5 + parent: 1 + type: Transform + - uid: 3344 + components: + - pos: -12.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3345 + components: + - pos: -12.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3346 + components: + - pos: -12.5,23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3347 + components: + - pos: -12.5,22.5 + parent: 1 + type: Transform + - uid: 3348 + components: + - pos: -12.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3362 + components: + - pos: -12.5,20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3363 + components: + - pos: -12.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3364 + components: + - pos: -12.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3365 + components: + - pos: -12.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3366 + components: + - pos: -12.5,16.5 + parent: 1 + type: Transform + - uid: 3367 + components: + - pos: -12.5,15.5 + parent: 1 + type: Transform + - uid: 3368 + components: + - pos: -12.5,14.5 + parent: 1 + type: Transform + - uid: 3369 + components: + - pos: -12.5,13.5 + parent: 1 + type: Transform + - uid: 3370 + components: + - pos: -12.5,12.5 + parent: 1 + type: Transform + - uid: 3371 + components: + - pos: -12.5,11.5 + parent: 1 + type: Transform + - uid: 3372 + components: + - pos: -12.5,10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3373 + components: + - pos: -12.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3374 + components: + - pos: -12.5,8.5 + parent: 1 + type: Transform + - uid: 3375 + components: + - pos: -12.5,7.5 + parent: 1 + type: Transform + - uid: 3376 + components: + - pos: -12.5,6.5 + parent: 1 + type: Transform + - uid: 3377 + components: + - pos: -12.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3378 + components: + - pos: -11.5,5.5 + parent: 1 + type: Transform + - uid: 3379 + components: + - pos: -10.5,5.5 + parent: 1 + type: Transform + - uid: 3380 + components: + - pos: -9.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3381 + components: + - pos: -8.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3382 + components: + - pos: -7.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3383 + components: + - pos: -6.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3384 + components: + - pos: -12.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3385 + components: + - pos: -12.5,27.5 + parent: 1 + type: Transform + - uid: 3386 + components: + - pos: -12.5,28.5 + parent: 1 + type: Transform + - uid: 3387 + components: + - pos: -12.5,29.5 + parent: 1 + type: Transform + - uid: 3388 + components: + - pos: -12.5,30.5 + parent: 1 + type: Transform + - uid: 3389 + components: + - pos: -12.5,31.5 + parent: 1 + type: Transform + - uid: 3390 + components: + - pos: -12.5,32.5 + parent: 1 + type: Transform + - uid: 3477 + components: + - pos: -22.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3478 + components: + - pos: -22.5,60.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3907 + components: + - pos: -13.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3908 + components: + - pos: -14.5,5.5 + parent: 1 + type: Transform + - uid: 3909 + components: + - pos: -15.5,5.5 + parent: 1 + type: Transform + - uid: 3910 + components: + - pos: -16.5,5.5 + parent: 1 + type: Transform + - uid: 3911 + components: + - pos: -17.5,5.5 + parent: 1 + type: Transform + - uid: 3912 + components: + - pos: -18.5,5.5 + parent: 1 + type: Transform + - uid: 3913 + components: + - pos: -19.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3914 + components: + - pos: -20.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3915 + components: + - pos: -21.5,5.5 + parent: 1 + type: Transform + - uid: 3916 + components: + - pos: -22.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3917 + components: + - pos: -23.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3918 + components: + - pos: -24.5,5.5 + parent: 1 + type: Transform + - uid: 3919 + components: + - pos: -25.5,5.5 + parent: 1 + type: Transform + - uid: 3920 + components: + - pos: -26.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3921 + components: + - pos: -27.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3922 + components: + - pos: -28.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3923 + components: + - pos: -29.5,5.5 + parent: 1 + type: Transform + - uid: 3924 + components: + - pos: -30.5,5.5 + parent: 1 + type: Transform + - uid: 3925 + components: + - pos: -31.5,5.5 + parent: 1 + type: Transform + - uid: 3926 + components: + - pos: -32.5,5.5 + parent: 1 + type: Transform + - uid: 3927 + components: + - pos: -33.5,5.5 + parent: 1 + type: Transform + - uid: 3928 + components: + - pos: -34.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3929 + components: + - pos: -35.5,5.5 + parent: 1 + type: Transform + - uid: 3930 + components: + - pos: -36.5,5.5 + parent: 1 + type: Transform + - uid: 3931 + components: + - pos: -37.5,5.5 + parent: 1 + type: Transform + - uid: 3976 + components: + - pos: -15.5,4.5 + parent: 1 + type: Transform + - uid: 3977 + components: + - pos: -15.5,3.5 + parent: 1 + type: Transform + - uid: 3978 + components: + - pos: -15.5,2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3979 + components: + - pos: -15.5,1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3980 + components: + - pos: -16.5,1.5 + parent: 1 + type: Transform + - uid: 3981 + components: + - pos: -17.5,1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3982 + components: + - pos: -18.5,1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3983 + components: + - pos: -19.5,1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3984 + components: + - pos: -20.5,1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3985 + components: + - pos: -21.5,1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3986 + components: + - pos: -21.5,0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3987 + components: + - pos: -21.5,-0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3988 + components: + - pos: -21.5,-1.5 + parent: 1 + type: Transform + - uid: 3989 + components: + - pos: -21.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3990 + components: + - pos: -21.5,-3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3991 + components: + - pos: -21.5,-4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3992 + components: + - pos: -22.5,-4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3993 + components: + - pos: -23.5,-4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3994 + components: + - pos: -24.5,-4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3995 + components: + - pos: -24.5,-3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3996 + components: + - pos: -21.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3997 + components: + - pos: -21.5,-6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3998 + components: + - pos: -21.5,-7.5 + parent: 1 + type: Transform + - uid: 3999 + components: + - pos: -22.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4000 + components: + - pos: -23.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4001 + components: + - pos: -24.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4002 + components: + - pos: -25.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4003 + components: + - pos: -26.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4004 + components: + - pos: -26.5,-6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4005 + components: + - pos: -27.5,-6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4006 + components: + - pos: -28.5,-6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4007 + components: + - pos: -28.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4008 + components: + - pos: -28.5,-4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4009 + components: + - pos: -28.5,-3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4010 + components: + - pos: -28.5,-2.5 + parent: 1 + type: Transform + - uid: 4011 + components: + - pos: -28.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4012 + components: + - pos: -28.5,-0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4013 + components: + - pos: -28.5,0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4014 + components: + - pos: -28.5,1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4015 + components: + - pos: -28.5,2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4016 + components: + - pos: -28.5,3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4017 + components: + - pos: -28.5,4.5 + parent: 1 + type: Transform + - uid: 4018 + components: + - pos: -37.5,6.5 + parent: 1 + type: Transform + - uid: 4019 + components: + - pos: -37.5,7.5 + parent: 1 + type: Transform + - uid: 4020 + components: + - pos: -37.5,8.5 + parent: 1 + type: Transform + - uid: 4021 + components: + - pos: -37.5,9.5 + parent: 1 + type: Transform + - uid: 4022 + components: + - pos: -37.5,10.5 + parent: 1 + type: Transform + - uid: 4023 + components: + - pos: -37.5,11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4024 + components: + - pos: -37.5,12.5 + parent: 1 + type: Transform + - uid: 4025 + components: + - pos: -37.5,13.5 + parent: 1 + type: Transform + - uid: 4026 + components: + - pos: -37.5,14.5 + parent: 1 + type: Transform + - uid: 4027 + components: + - pos: -37.5,15.5 + parent: 1 + type: Transform + - uid: 4028 + components: + - pos: -37.5,16.5 + parent: 1 + type: Transform + - uid: 4029 + components: + - pos: -37.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4030 + components: + - pos: -37.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4031 + components: + - pos: -37.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4032 + components: + - pos: -37.5,20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4033 + components: + - pos: -37.5,21.5 + parent: 1 + type: Transform + - uid: 4034 + components: + - pos: -37.5,22.5 + parent: 1 + type: Transform + - uid: 4035 + components: + - pos: -37.5,23.5 + parent: 1 + type: Transform + - uid: 4036 + components: + - pos: -37.5,24.5 + parent: 1 + type: Transform + - uid: 4037 + components: + - pos: -37.5,25.5 + parent: 1 + type: Transform + - uid: 4038 + components: + - pos: -37.5,26.5 + parent: 1 + type: Transform + - uid: 4039 + components: + - pos: -37.5,27.5 + parent: 1 + type: Transform + - uid: 4040 + components: + - pos: -37.5,28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4041 + components: + - pos: -37.5,29.5 + parent: 1 + type: Transform + - uid: 4042 + components: + - pos: -37.5,30.5 + parent: 1 + type: Transform + - uid: 4043 + components: + - pos: -37.5,31.5 + parent: 1 + type: Transform + - uid: 4044 + components: + - pos: -37.5,32.5 + parent: 1 + type: Transform + - uid: 4045 + components: + - pos: -36.5,32.5 + parent: 1 + type: Transform + - uid: 4046 + components: + - pos: -35.5,32.5 + parent: 1 + type: Transform + - uid: 4047 + components: + - pos: -34.5,32.5 + parent: 1 + type: Transform + - uid: 4048 + components: + - pos: -33.5,32.5 + parent: 1 + type: Transform + - uid: 4049 + components: + - pos: -32.5,32.5 + parent: 1 + type: Transform + - uid: 4050 + components: + - pos: -31.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4051 + components: + - pos: -30.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4052 + components: + - pos: -29.5,32.5 + parent: 1 + type: Transform + - uid: 4053 + components: + - pos: -28.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4054 + components: + - pos: -27.5,32.5 + parent: 1 + type: Transform + - uid: 4055 + components: + - pos: -26.5,32.5 + parent: 1 + type: Transform + - uid: 4056 + components: + - pos: -25.5,32.5 + parent: 1 + type: Transform + - uid: 4057 + components: + - pos: -24.5,32.5 + parent: 1 + type: Transform + - uid: 4058 + components: + - pos: -23.5,32.5 + parent: 1 + type: Transform + - uid: 4059 + components: + - pos: -22.5,32.5 + parent: 1 + type: Transform + - uid: 4060 + components: + - pos: -21.5,32.5 + parent: 1 + type: Transform + - uid: 4061 + components: + - pos: -20.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4062 + components: + - pos: -19.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4063 + components: + - pos: -18.5,32.5 + parent: 1 + type: Transform + - uid: 4064 + components: + - pos: -17.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4065 + components: + - pos: -16.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4066 + components: + - pos: -15.5,32.5 + parent: 1 + type: Transform + - uid: 4067 + components: + - pos: -14.5,32.5 + parent: 1 + type: Transform + - uid: 4068 + components: + - pos: -13.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4378 + components: + - pos: -38.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4379 + components: + - pos: -39.5,21.5 + parent: 1 + type: Transform + - uid: 4380 + components: + - pos: -40.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4381 + components: + - pos: -41.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4382 + components: + - pos: -42.5,21.5 + parent: 1 + type: Transform + - uid: 4383 + components: + - pos: -43.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4384 + components: + - pos: -44.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4385 + components: + - pos: -45.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4386 + components: + - pos: -46.5,21.5 + parent: 1 + type: Transform + - uid: 4387 + components: + - pos: -47.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4388 + components: + - pos: -48.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4389 + components: + - pos: -49.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4390 + components: + - pos: -50.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4391 + components: + - pos: -50.5,20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4392 + components: + - pos: -50.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4393 + components: + - pos: -50.5,18.5 + parent: 1 + type: Transform + - uid: 4394 + components: + - pos: -50.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4395 + components: + - pos: -50.5,16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4396 + components: + - pos: -50.5,15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4397 + components: + - pos: -50.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4398 + components: + - pos: -49.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4399 + components: + - pos: -48.5,14.5 + parent: 1 + type: Transform + - uid: 4400 + components: + - pos: -47.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4401 + components: + - pos: -46.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4402 + components: + - pos: -45.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4403 + components: + - pos: -44.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4404 + components: + - pos: -43.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4405 + components: + - pos: -42.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4406 + components: + - pos: -41.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4407 + components: + - pos: -41.5,15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4408 + components: + - pos: -40.5,15.5 + parent: 1 + type: Transform + - uid: 4409 + components: + - pos: -44.5,13.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4410 + components: + - pos: -44.5,12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4411 + components: + - pos: -44.5,11.5 + parent: 1 + type: Transform + - uid: 4412 + components: + - pos: -44.5,10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4413 + components: + - pos: -44.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4414 + components: + - pos: -44.5,8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4415 + components: + - pos: -44.5,7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4416 + components: + - pos: -44.5,6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4417 + components: + - pos: -44.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4418 + components: + - pos: -43.5,5.5 + parent: 1 + type: Transform + - uid: 4419 + components: + - pos: -42.5,5.5 + parent: 1 + type: Transform + - uid: 4420 + components: + - pos: -41.5,5.5 + parent: 1 + type: Transform + - uid: 4421 + components: + - pos: -40.5,5.5 + parent: 1 + type: Transform + - uid: 4422 + components: + - pos: -39.5,5.5 + parent: 1 + type: Transform + - uid: 4423 + components: + - pos: -38.5,5.5 + parent: 1 + type: Transform + - uid: 4711 + components: + - pos: 15.5,37.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5181 + components: + - pos: -60.5,7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5186 + components: + - pos: -89.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5502 + components: + - pos: -16.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5504 + components: + - pos: -15.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5572 + components: + - pos: -20.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5575 + components: + - pos: -17.5,20.5 + parent: 1 + type: Transform + - uid: 5662 + components: + - pos: -15.5,20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5664 + components: + - pos: -14.5,20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5667 + components: + - pos: -16.5,20.5 + parent: 1 + type: Transform + - uid: 5678 + components: + - pos: -19.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5682 + components: + - pos: -20.5,17.5 + parent: 1 + type: Transform + - uid: 5721 + components: + - pos: -17.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6083 + components: + - pos: -16.5,33.5 + parent: 1 + type: Transform + - uid: 6084 + components: + - pos: -16.5,34.5 + parent: 1 + type: Transform + - uid: 6085 + components: + - pos: -16.5,35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6086 + components: + - pos: -16.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6087 + components: + - pos: -16.5,37.5 + parent: 1 + type: Transform + - uid: 6088 + components: + - pos: -16.5,38.5 + parent: 1 + type: Transform + - uid: 6089 + components: + - pos: -16.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6090 + components: + - pos: -16.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6091 + components: + - pos: -16.5,41.5 + parent: 1 + type: Transform + - uid: 6092 + components: + - pos: -16.5,42.5 + parent: 1 + type: Transform + - uid: 6093 + components: + - pos: -16.5,43.5 + parent: 1 + type: Transform + - uid: 6094 + components: + - pos: -16.5,44.5 + parent: 1 + type: Transform + - uid: 6095 + components: + - pos: -16.5,45.5 + parent: 1 + type: Transform + - uid: 6096 + components: + - pos: -16.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6097 + components: + - pos: -16.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6098 + components: + - pos: -16.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6099 + components: + - pos: -16.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6100 + components: + - pos: -16.5,50.5 + parent: 1 + type: Transform + - uid: 6101 + components: + - pos: -16.5,51.5 + parent: 1 + type: Transform + - uid: 6102 + components: + - pos: -15.5,51.5 + parent: 1 + type: Transform + - uid: 6103 + components: + - pos: -14.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6104 + components: + - pos: -13.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6105 + components: + - pos: -12.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6106 + components: + - pos: -11.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6107 + components: + - pos: -10.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6108 + components: + - pos: -9.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6109 + components: + - pos: -8.5,51.5 + parent: 1 + type: Transform + - uid: 6110 + components: + - pos: -7.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6111 + components: + - pos: -7.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6112 + components: + - pos: -7.5,49.5 + parent: 1 + type: Transform + - uid: 6113 + components: + - pos: -7.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6114 + components: + - pos: -7.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6115 + components: + - pos: -6.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6116 + components: + - pos: -5.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6117 + components: + - pos: -4.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6118 + components: + - pos: -3.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6119 + components: + - pos: -2.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6120 + components: + - pos: -1.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6121 + components: + - pos: -0.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6122 + components: + - pos: 0.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6123 + components: + - pos: 1.5,47.5 + parent: 1 + type: Transform + - uid: 6124 + components: + - pos: 2.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6125 + components: + - pos: 3.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6126 + components: + - pos: 4.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6127 + components: + - pos: 5.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6128 + components: + - pos: 6.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6129 + components: + - pos: 7.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6130 + components: + - pos: 7.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6131 + components: + - pos: 8.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6132 + components: + - pos: 9.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6133 + components: + - pos: 10.5,48.5 + parent: 1 + type: Transform + - uid: 6134 + components: + - pos: 11.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6135 + components: + - pos: 12.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6136 + components: + - pos: 13.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6137 + components: + - pos: 14.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6138 + components: + - pos: 15.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6139 + components: + - pos: 15.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6140 + components: + - pos: 15.5,46.5 + parent: 1 + type: Transform + - uid: 6141 + components: + - pos: 15.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6142 + components: + - pos: 16.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6143 + components: + - pos: 17.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6145 + components: + - pos: 18.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6146 + components: + - pos: 15.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6147 + components: + - pos: 15.5,43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6148 + components: + - pos: 15.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6149 + components: + - pos: 15.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6150 + components: + - pos: 15.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6151 + components: + - pos: 15.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6152 + components: + - pos: 15.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6155 + components: + - pos: 15.5,35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6156 + components: + - pos: 16.5,35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6157 + components: + - pos: 17.5,35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6158 + components: + - pos: 18.5,35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6159 + components: + - pos: 19.5,35.5 + parent: 1 + type: Transform + - uid: 6160 + components: + - pos: 20.5,35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6161 + components: + - pos: 21.5,35.5 + parent: 1 + type: Transform + - uid: 6162 + components: + - pos: 22.5,35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6163 + components: + - pos: 23.5,35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6164 + components: + - pos: 23.5,34.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6165 + components: + - pos: 23.5,33.5 + parent: 1 + type: Transform + - uid: 6166 + components: + - pos: 23.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6167 + components: + - pos: 23.5,31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6168 + components: + - pos: 23.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6169 + components: + - pos: 23.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6170 + components: + - pos: 23.5,28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6171 + components: + - pos: 23.5,27.5 + parent: 1 + type: Transform + - uid: 6172 + components: + - pos: 23.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6173 + components: + - pos: 23.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6174 + components: + - pos: 23.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6175 + components: + - pos: 23.5,23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6176 + components: + - pos: 23.5,22.5 + parent: 1 + type: Transform + - uid: 6177 + components: + - pos: 23.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6178 + components: + - pos: 23.5,20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6179 + components: + - pos: 23.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6180 + components: + - pos: 24.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6181 + components: + - pos: 25.5,19.5 + parent: 1 + type: Transform + - uid: 6182 + components: + - pos: 26.5,19.5 + parent: 1 + type: Transform + - uid: 6183 + components: + - pos: 26.5,18.5 + parent: 1 + type: Transform + - uid: 6184 + components: + - pos: 26.5,17.5 + parent: 1 + type: Transform + - uid: 6185 + components: + - pos: 26.5,16.5 + parent: 1 + type: Transform + - uid: 6186 + components: + - pos: 26.5,15.5 + parent: 1 + type: Transform + - uid: 6187 + components: + - pos: 26.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6188 + components: + - pos: 26.5,13.5 + parent: 1 + type: Transform + - uid: 6189 + components: + - pos: 26.5,12.5 + parent: 1 + type: Transform + - uid: 6190 + components: + - pos: 26.5,11.5 + parent: 1 + type: Transform + - uid: 6191 + components: + - pos: 26.5,10.5 + parent: 1 + type: Transform + - uid: 6192 + components: + - pos: 26.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6193 + components: + - pos: 26.5,8.5 + parent: 1 + type: Transform + - uid: 6194 + components: + - pos: 26.5,7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6195 + components: + - pos: 26.5,6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6265 + components: + - pos: 15.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6320 + components: + - pos: -20.5,64.5 + parent: 1 + type: Transform + - uid: 6526 + components: + - pos: -18.5,64.5 + parent: 1 + type: Transform + - uid: 6529 + components: + - pos: -16.5,52.5 + parent: 1 + type: Transform + - uid: 6530 + components: + - pos: -16.5,53.5 + parent: 1 + type: Transform + - uid: 6531 + components: + - pos: -16.5,54.5 + parent: 1 + type: Transform + - uid: 6532 + components: + - pos: -16.5,55.5 + parent: 1 + type: Transform + - uid: 6533 + components: + - pos: -15.5,55.5 + parent: 1 + type: Transform + - uid: 6534 + components: + - pos: -14.5,55.5 + parent: 1 + type: Transform + - uid: 6535 + components: + - pos: -13.5,55.5 + parent: 1 + type: Transform + - uid: 6536 + components: + - pos: -12.5,55.5 + parent: 1 + type: Transform + - uid: 6537 + components: + - pos: -11.5,55.5 + parent: 1 + type: Transform + - uid: 6538 + components: + - pos: -10.5,55.5 + parent: 1 + type: Transform + - uid: 6539 + components: + - pos: -9.5,55.5 + parent: 1 + type: Transform + - uid: 6540 + components: + - pos: -8.5,55.5 + parent: 1 + type: Transform + - uid: 6541 + components: + - pos: -7.5,55.5 + parent: 1 + type: Transform + - uid: 6542 + components: + - pos: -6.5,55.5 + parent: 1 + type: Transform + - uid: 6543 + components: + - pos: -5.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6544 + components: + - pos: -4.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6545 + components: + - pos: -3.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6546 + components: + - pos: -3.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6550 + components: + - pos: -3.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6551 + components: + - pos: -4.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6552 + components: + - pos: -4.5,58.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6553 + components: + - pos: -4.5,59.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6554 + components: + - pos: -4.5,60.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6555 + components: + - pos: -4.5,61.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6557 + components: + - pos: -5.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6558 + components: + - pos: -6.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6559 + components: + - pos: -7.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6560 + components: + - pos: -8.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6561 + components: + - pos: -9.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6616 + components: + - pos: -15.5,56.5 + parent: 1 + type: Transform + - uid: 6617 + components: + - pos: -15.5,57.5 + parent: 1 + type: Transform + - uid: 6618 + components: + - pos: -15.5,58.5 + parent: 1 + type: Transform + - uid: 6619 + components: + - pos: -15.5,59.5 + parent: 1 + type: Transform + - uid: 6620 + components: + - pos: -15.5,60.5 + parent: 1 + type: Transform + - uid: 6621 + components: + - pos: -15.5,61.5 + parent: 1 + type: Transform + - uid: 6622 + components: + - pos: -15.5,62.5 + parent: 1 + type: Transform + - uid: 6623 + components: + - pos: -15.5,63.5 + parent: 1 + type: Transform + - uid: 6624 + components: + - pos: -15.5,64.5 + parent: 1 + type: Transform + - uid: 6625 + components: + - pos: -14.5,64.5 + parent: 1 + type: Transform + - uid: 6626 + components: + - pos: -13.5,64.5 + parent: 1 + type: Transform + - uid: 6627 + components: + - pos: -12.5,64.5 + parent: 1 + type: Transform + - uid: 6628 + components: + - pos: -11.5,64.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6629 + components: + - pos: -12.5,65.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6630 + components: + - pos: -11.5,65.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6631 + components: + - pos: -12.5,66.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6632 + components: + - pos: -13.5,66.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6633 + components: + - pos: -13.5,67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6634 + components: + - pos: -14.5,67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6635 + components: + - pos: -15.5,67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6636 + components: + - pos: -16.5,67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6637 + components: + - pos: -17.5,67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6638 + components: + - pos: -18.5,67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6639 + components: + - pos: -19.5,67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6640 + components: + - pos: -19.5,66.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6641 + components: + - pos: -20.5,66.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6642 + components: + - pos: -20.5,65.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6643 + components: + - pos: -21.5,65.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6644 + components: + - pos: -21.5,64.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7285 + components: + - pos: -43.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7587 + components: + - pos: -19.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7588 + components: + - pos: -20.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7589 + components: + - pos: -21.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7590 + components: + - pos: -22.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7591 + components: + - pos: -23.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7592 + components: + - pos: -24.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7593 + components: + - pos: -25.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7594 + components: + - pos: -17.5,51.5 + parent: 1 + type: Transform + - uid: 7595 + components: + - pos: -24.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7596 + components: + - pos: -24.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7597 + components: + - pos: -24.5,48.5 + parent: 1 + type: Transform + - uid: 7598 + components: + - pos: -24.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7599 + components: + - pos: -24.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7600 + components: + - pos: -24.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7601 + components: + - pos: -24.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7602 + components: + - pos: -24.5,43.5 + parent: 1 + type: Transform + - uid: 7603 + components: + - pos: -24.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7604 + components: + - pos: -24.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7605 + components: + - pos: -24.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7606 + components: + - pos: -24.5,39.5 + parent: 1 + type: Transform + - uid: 7607 + components: + - pos: -24.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7608 + components: + - pos: -24.5,37.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7609 + components: + - pos: -24.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7610 + components: + - pos: -24.5,35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7611 + components: + - pos: -24.5,34.5 + parent: 1 + type: Transform + - uid: 7612 + components: + - pos: -24.5,33.5 + parent: 1 + type: Transform + - uid: 7613 + components: + - pos: -26.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7614 + components: + - pos: -27.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7615 + components: + - pos: -28.5,50.5 + parent: 1 + type: Transform + - uid: 7616 + components: + - pos: -29.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7617 + components: + - pos: -30.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7618 + components: + - pos: -31.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7619 + components: + - pos: -32.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7620 + components: + - pos: -32.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7621 + components: + - pos: -32.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7622 + components: + - pos: -32.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7623 + components: + - pos: -32.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7624 + components: + - pos: -32.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7625 + components: + - pos: -33.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7626 + components: + - pos: -34.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7627 + components: + - pos: -34.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7628 + components: + - pos: -34.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7629 + components: + - pos: -35.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7630 + components: + - pos: -35.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7631 + components: + - pos: -36.5,55.5 + parent: 1 + type: Transform + - uid: 7632 + components: + - pos: -37.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7633 + components: + - pos: -38.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7634 + components: + - pos: -39.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7635 + components: + - pos: -40.5,55.5 + parent: 1 + type: Transform + - uid: 7636 + components: + - pos: -41.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7650 + components: + - pos: -47.5,47.5 + parent: 1 + type: Transform + - uid: 7651 + components: + - pos: -47.5,46.5 + parent: 1 + type: Transform + - uid: 7652 + components: + - pos: -47.5,45.5 + parent: 1 + type: Transform + - uid: 7653 + components: + - pos: -47.5,44.5 + parent: 1 + type: Transform + - uid: 7654 + components: + - pos: -47.5,43.5 + parent: 1 + type: Transform + - uid: 7655 + components: + - pos: -47.5,42.5 + parent: 1 + type: Transform + - uid: 7656 + components: + - pos: -47.5,41.5 + parent: 1 + type: Transform + - uid: 7657 + components: + - pos: -47.5,40.5 + parent: 1 + type: Transform + - uid: 7658 + components: + - pos: -47.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7659 + components: + - pos: -47.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7660 + components: + - pos: -47.5,37.5 + parent: 1 + type: Transform + - uid: 7661 + components: + - pos: -47.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7662 + components: + - pos: -47.5,35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7663 + components: + - pos: -47.5,34.5 + parent: 1 + type: Transform + - uid: 7664 + components: + - pos: -47.5,33.5 + parent: 1 + type: Transform + - uid: 7665 + components: + - pos: -47.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7666 + components: + - pos: -46.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7667 + components: + - pos: -45.5,32.5 + parent: 1 + type: Transform + - uid: 7668 + components: + - pos: -44.5,32.5 + parent: 1 + type: Transform + - uid: 7669 + components: + - pos: -43.5,32.5 + parent: 1 + type: Transform + - uid: 7670 + components: + - pos: -42.5,32.5 + parent: 1 + type: Transform + - uid: 7671 + components: + - pos: -41.5,32.5 + parent: 1 + type: Transform + - uid: 7672 + components: + - pos: -40.5,32.5 + parent: 1 + type: Transform + - uid: 7673 + components: + - pos: -39.5,32.5 + parent: 1 + type: Transform + - uid: 7674 + components: + - pos: -38.5,32.5 + parent: 1 + type: Transform + - uid: 7675 + components: + - pos: -48.5,32.5 + parent: 1 + type: Transform + - uid: 7676 + components: + - pos: -49.5,32.5 + parent: 1 + type: Transform + - uid: 7677 + components: + - pos: -50.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7678 + components: + - pos: -51.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7679 + components: + - pos: -52.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7680 + components: + - pos: -53.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7681 + components: + - pos: -54.5,32.5 + parent: 1 + type: Transform + - uid: 7682 + components: + - pos: -55.5,32.5 + parent: 1 + type: Transform + - uid: 7683 + components: + - pos: -56.5,32.5 + parent: 1 + type: Transform + - uid: 7684 + components: + - pos: -57.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7685 + components: + - pos: -57.5,33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7686 + components: + - pos: -57.5,34.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7687 + components: + - pos: -57.5,35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7688 + components: + - pos: -57.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7689 + components: + - pos: -57.5,37.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7690 + components: + - pos: -57.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7691 + components: + - pos: -57.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7692 + components: + - pos: -57.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7693 + components: + - pos: -57.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7694 + components: + - pos: -57.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7695 + components: + - pos: -57.5,43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7696 + components: + - pos: -57.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7697 + components: + - pos: -57.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7698 + components: + - pos: -57.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7699 + components: + - pos: -57.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7700 + components: + - pos: -56.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7701 + components: + - pos: -55.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7702 + components: + - pos: -54.5,47.5 + parent: 1 + type: Transform + - uid: 7703 + components: + - pos: -53.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7704 + components: + - pos: -52.5,47.5 + parent: 1 + type: Transform + - uid: 7705 + components: + - pos: -51.5,47.5 + parent: 1 + type: Transform + - uid: 7706 + components: + - pos: -50.5,47.5 + parent: 1 + type: Transform + - uid: 7707 + components: + - pos: -49.5,47.5 + parent: 1 + type: Transform + - uid: 7708 + components: + - pos: -48.5,47.5 + parent: 1 + type: Transform + - uid: 7720 + components: + - pos: -58.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7884 + components: + - pos: -44.5,55.5 + parent: 1 + type: Transform + - uid: 7885 + components: + - pos: -44.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7886 + components: + - pos: -44.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7887 + components: + - pos: -44.5,52.5 + parent: 1 + type: Transform + - uid: 7888 + components: + - pos: -44.5,51.5 + parent: 1 + type: Transform + - uid: 7889 + components: + - pos: -44.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7890 + components: + - pos: -44.5,49.5 + parent: 1 + type: Transform + - uid: 7891 + components: + - pos: -45.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7892 + components: + - pos: -46.5,49.5 + parent: 1 + type: Transform + - uid: 7893 + components: + - pos: -47.5,49.5 + parent: 1 + type: Transform + - uid: 7894 + components: + - pos: -47.5,48.5 + parent: 1 + type: Transform + - uid: 8474 + components: + - pos: -58.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8504 + components: + - pos: -58.5,18.5 + parent: 1 + type: Transform + - uid: 8505 + components: + - pos: -57.5,18.5 + parent: 1 + type: Transform + - uid: 8506 + components: + - pos: -57.5,19.5 + parent: 1 + type: Transform + - uid: 8507 + components: + - pos: -57.5,20.5 + parent: 1 + type: Transform + - uid: 8508 + components: + - pos: -57.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8509 + components: + - pos: -57.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8510 + components: + - pos: -57.5,23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8511 + components: + - pos: -57.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8512 + components: + - pos: -57.5,25.5 + parent: 1 + type: Transform + - uid: 8513 + components: + - pos: -57.5,26.5 + parent: 1 + type: Transform + - uid: 8514 + components: + - pos: -57.5,27.5 + parent: 1 + type: Transform + - uid: 8515 + components: + - pos: -57.5,28.5 + parent: 1 + type: Transform + - uid: 8516 + components: + - pos: -57.5,29.5 + parent: 1 + type: Transform + - uid: 8517 + components: + - pos: -57.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8518 + components: + - pos: -57.5,31.5 + parent: 1 + type: Transform + - uid: 8548 + components: + - pos: -57.5,17.5 + parent: 1 + type: Transform + - uid: 8549 + components: + - pos: -57.5,16.5 + parent: 1 + type: Transform + - uid: 8550 + components: + - pos: -57.5,15.5 + parent: 1 + type: Transform + - uid: 8551 + components: + - pos: -57.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8552 + components: + - pos: -57.5,13.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8553 + components: + - pos: -57.5,12.5 + parent: 1 + type: Transform + - uid: 8554 + components: + - pos: -57.5,11.5 + parent: 1 + type: Transform + - uid: 8555 + components: + - pos: -57.5,10.5 + parent: 1 + type: Transform + - uid: 8556 + components: + - pos: -57.5,9.5 + parent: 1 + type: Transform + - uid: 8557 + components: + - pos: -57.5,8.5 + parent: 1 + type: Transform + - uid: 8558 + components: + - pos: -57.5,7.5 + parent: 1 + type: Transform + - uid: 8559 + components: + - pos: -57.5,6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8560 + components: + - pos: -57.5,5.5 + parent: 1 + type: Transform + - uid: 8561 + components: + - pos: -56.5,5.5 + parent: 1 + type: Transform + - uid: 8562 + components: + - pos: -55.5,5.5 + parent: 1 + type: Transform + - uid: 8563 + components: + - pos: -54.5,5.5 + parent: 1 + type: Transform + - uid: 8564 + components: + - pos: -53.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8565 + components: + - pos: -52.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8566 + components: + - pos: -51.5,5.5 + parent: 1 + type: Transform + - uid: 8567 + components: + - pos: -50.5,5.5 + parent: 1 + type: Transform + - uid: 8568 + components: + - pos: -49.5,5.5 + parent: 1 + type: Transform + - uid: 8569 + components: + - pos: -48.5,5.5 + parent: 1 + type: Transform + - uid: 8570 + components: + - pos: -47.5,5.5 + parent: 1 + type: Transform + - uid: 8571 + components: + - pos: -46.5,5.5 + parent: 1 + type: Transform + - uid: 8572 + components: + - pos: -45.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8929 + components: + - pos: -42.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9061 + components: + - pos: -17.5,64.5 + parent: 1 + type: Transform + - uid: 9201 + components: + - pos: -64.5,36.5 + parent: 1 + type: Transform + - uid: 9308 + components: + - pos: -69.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9309 + components: + - pos: -69.5,28.5 + parent: 1 + type: Transform + - uid: 9489 + components: + - pos: -18.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9606 + components: + - pos: -80.5,27.5 + parent: 1 + type: Transform + - uid: 9607 + components: + - pos: -79.5,27.5 + parent: 1 + type: Transform + - uid: 9854 + components: + - pos: -69.5,23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9859 + components: + - pos: -69.5,27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9860 + components: + - pos: -79.5,26.5 + parent: 1 + type: Transform + - uid: 9914 + components: + - pos: -21.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9977 + components: + - pos: -22.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9978 + components: + - pos: -19.5,64.5 + parent: 1 + type: Transform + - uid: 9998 + components: + - pos: -59.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9999 + components: + - pos: -60.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10000 + components: + - pos: -61.5,47.5 + parent: 1 + type: Transform + - uid: 10001 + components: + - pos: -62.5,47.5 + parent: 1 + type: Transform + - uid: 10002 + components: + - pos: -63.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10003 + components: + - pos: -64.5,47.5 + parent: 1 + type: Transform + - uid: 10004 + components: + - pos: -65.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10005 + components: + - pos: -66.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10006 + components: + - pos: -66.5,49.5 + parent: 1 + type: Transform + - uid: 10008 + components: + - pos: -66.5,50.5 + parent: 1 + type: Transform + - uid: 10009 + components: + - pos: -67.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10010 + components: + - pos: -67.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10011 + components: + - pos: -67.5,52.5 + parent: 1 + type: Transform + - uid: 10012 + components: + - pos: -67.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10013 + components: + - pos: -67.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10014 + components: + - pos: -67.5,55.5 + parent: 1 + type: Transform + - uid: 10015 + components: + - pos: -67.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10016 + components: + - pos: -67.5,57.5 + parent: 1 + type: Transform + - uid: 10017 + components: + - pos: -66.5,57.5 + parent: 1 + type: Transform + - uid: 10018 + components: + - pos: -65.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10019 + components: + - pos: -65.5,58.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10020 + components: + - pos: -65.5,59.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10023 + components: + - pos: -60.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10024 + components: + - pos: -60.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10025 + components: + - pos: -60.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10026 + components: + - pos: -65.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10027 + components: + - pos: -66.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10028 + components: + - pos: -66.5,37.5 + parent: 1 + type: Transform + - uid: 10029 + components: + - pos: -66.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10030 + components: + - pos: -66.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10031 + components: + - pos: -66.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10032 + components: + - pos: -66.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10033 + components: + - pos: -66.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10034 + components: + - pos: -66.5,43.5 + parent: 1 + type: Transform + - uid: 10035 + components: + - pos: -66.5,44.5 + parent: 1 + type: Transform + - uid: 10036 + components: + - pos: -60.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10037 + components: + - pos: -60.5,35.5 + parent: 1 + type: Transform + - uid: 10038 + components: + - pos: -60.5,34.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10039 + components: + - pos: -60.5,33.5 + parent: 1 + type: Transform + - uid: 10040 + components: + - pos: -60.5,32.5 + parent: 1 + type: Transform + - uid: 10042 + components: + - pos: -60.5,31.5 + parent: 1 + type: Transform + - uid: 10043 + components: + - pos: -60.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10045 + components: + - pos: -60.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10047 + components: + - pos: -60.5,28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10077 + components: + - pos: -60.5,27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10078 + components: + - pos: -60.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10079 + components: + - pos: -60.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10090 + components: + - pos: -60.5,24.5 + parent: 1 + type: Transform + - uid: 10091 + components: + - pos: -60.5,23.5 + parent: 1 + type: Transform + - uid: 10096 + components: + - pos: -60.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10097 + components: + - pos: -60.5,21.5 + parent: 1 + type: Transform + - uid: 10098 + components: + - pos: -60.5,20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10104 + components: + - pos: -61.5,17.5 + parent: 1 + type: Transform + - uid: 10105 + components: + - pos: -62.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10106 + components: + - pos: -63.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10107 + components: + - pos: -64.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10108 + components: + - pos: -65.5,17.5 + parent: 1 + type: Transform + - uid: 10109 + components: + - pos: -66.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10110 + components: + - pos: -66.5,16.5 + parent: 1 + type: Transform + - uid: 10111 + components: + - pos: -66.5,15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10112 + components: + - pos: -66.5,14.5 + parent: 1 + type: Transform + - uid: 10113 + components: + - pos: -66.5,13.5 + parent: 1 + type: Transform + - uid: 10114 + components: + - pos: -66.5,12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10115 + components: + - pos: -66.5,11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10116 + components: + - pos: -66.5,10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10117 + components: + - pos: -66.5,9.5 + parent: 1 + type: Transform + - uid: 10118 + components: + - pos: -66.5,8.5 + parent: 1 + type: Transform + - uid: 10119 + components: + - pos: -65.5,8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10120 + components: + - pos: -64.5,8.5 + parent: 1 + type: Transform + - uid: 10121 + components: + - pos: -63.5,8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10122 + components: + - pos: -62.5,8.5 + parent: 1 + type: Transform + - uid: 10123 + components: + - pos: -61.5,8.5 + parent: 1 + type: Transform + - uid: 10124 + components: + - pos: -60.5,8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10125 + components: + - pos: -59.5,32.5 + parent: 1 + type: Transform + - uid: 10126 + components: + - pos: -62.5,36.5 + parent: 1 + type: Transform + - uid: 10130 + components: + - pos: -66.5,47.5 + parent: 1 + type: Transform + - uid: 10131 + components: + - pos: -61.5,36.5 + parent: 1 + type: Transform + - uid: 10132 + components: + - pos: -66.5,45.5 + parent: 1 + type: Transform + - uid: 10133 + components: + - pos: -66.5,46.5 + parent: 1 + type: Transform + - uid: 10134 + components: + - pos: -63.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10135 + components: + - pos: -63.5,35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10136 + components: + - pos: -63.5,34.5 + parent: 1 + type: Transform + - uid: 10137 + components: + - pos: -63.5,33.5 + parent: 1 + type: Transform + - uid: 10138 + components: + - pos: -63.5,32.5 + parent: 1 + type: Transform + - uid: 10139 + components: + - pos: -62.5,32.5 + parent: 1 + type: Transform + - uid: 10140 + components: + - pos: -61.5,32.5 + parent: 1 + type: Transform + - uid: 10150 + components: + - pos: -65.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10151 + components: + - pos: -66.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10152 + components: + - pos: -67.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10153 + components: + - pos: -68.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10154 + components: + - pos: -69.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10156 + components: + - pos: -70.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10157 + components: + - pos: -64.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10161 + components: + - pos: -70.5,31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10162 + components: + - pos: -71.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10163 + components: + - pos: -70.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10168 + components: + - pos: -70.5,28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10169 + components: + - pos: -71.5,31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10170 + components: + - pos: -71.5,28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10174 + components: + - pos: -69.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10177 + components: + - pos: -71.5,31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10178 + components: + - pos: -71.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10179 + components: + - pos: -70.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10180 + components: + - pos: -69.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10181 + components: + - pos: -71.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10182 + components: + - pos: -72.5,21.5 + parent: 1 + type: Transform + - uid: 10183 + components: + - pos: -73.5,21.5 + parent: 1 + type: Transform + - uid: 10184 + components: + - pos: -74.5,21.5 + parent: 1 + type: Transform + - uid: 10185 + components: + - pos: -74.5,22.5 + parent: 1 + type: Transform + - uid: 10186 + components: + - pos: -74.5,23.5 + parent: 1 + type: Transform + - uid: 10187 + components: + - pos: -74.5,24.5 + parent: 1 + type: Transform + - uid: 10188 + components: + - pos: -75.5,24.5 + parent: 1 + type: Transform + - uid: 10189 + components: + - pos: -76.5,24.5 + parent: 1 + type: Transform + - uid: 10190 + components: + - pos: -77.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10191 + components: + - pos: -78.5,24.5 + parent: 1 + type: Transform + - uid: 10192 + components: + - pos: -78.5,26.5 + parent: 1 + type: Transform + - uid: 10193 + components: + - pos: -77.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10194 + components: + - pos: -76.5,26.5 + parent: 1 + type: Transform + - uid: 10195 + components: + - pos: -75.5,26.5 + parent: 1 + type: Transform + - uid: 10196 + components: + - pos: -74.5,26.5 + parent: 1 + type: Transform + - uid: 10197 + components: + - pos: -74.5,25.5 + parent: 1 + type: Transform + - uid: 10198 + components: + - pos: -81.5,27.5 + parent: 1 + type: Transform + - uid: 10199 + components: + - pos: -82.5,27.5 + parent: 1 + type: Transform + - uid: 10200 + components: + - pos: -83.5,27.5 + parent: 1 + type: Transform + - uid: 10201 + components: + - pos: -84.5,27.5 + parent: 1 + type: Transform + - uid: 10202 + components: + - pos: -79.5,24.5 + parent: 1 + type: Transform + - uid: 10203 + components: + - pos: -80.5,24.5 + parent: 1 + type: Transform + - uid: 10204 + components: + - pos: -80.5,25.5 + parent: 1 + type: Transform + - uid: 10205 + components: + - pos: -81.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10206 + components: + - pos: -82.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10208 + components: + - pos: -84.5,28.5 + parent: 1 + type: Transform + - uid: 10209 + components: + - pos: -84.5,29.5 + parent: 1 + type: Transform + - uid: 10210 + components: + - pos: -84.5,30.5 + parent: 1 + type: Transform + - uid: 10211 + components: + - pos: -85.5,30.5 + parent: 1 + type: Transform + - uid: 10212 + components: + - pos: -86.5,30.5 + parent: 1 + type: Transform + - uid: 10225 + components: + - pos: -71.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10227 + components: + - pos: -71.5,33.5 + parent: 1 + type: Transform + - uid: 10228 + components: + - pos: -71.5,34.5 + parent: 1 + type: Transform + - uid: 10229 + components: + - pos: -70.5,34.5 + parent: 1 + type: Transform + - uid: 10230 + components: + - pos: -69.5,34.5 + parent: 1 + type: Transform + - uid: 10232 + components: + - pos: -68.5,34.5 + parent: 1 + type: Transform + - uid: 10233 + components: + - pos: -67.5,34.5 + parent: 1 + type: Transform + - uid: 10236 + components: + - pos: -66.5,34.5 + parent: 1 + type: Transform + - uid: 10238 + components: + - pos: -65.5,34.5 + parent: 1 + type: Transform + - uid: 10239 + components: + - pos: -64.5,34.5 + parent: 1 + type: Transform + - uid: 10245 + components: + - pos: -69.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10252 + components: + - pos: -69.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10262 + components: + - pos: -60.5,6.5 + parent: 1 + type: Transform + - uid: 10263 + components: + - pos: -60.5,5.5 + parent: 1 + type: Transform + - uid: 10265 + components: + - pos: -59.5,5.5 + parent: 1 + type: Transform + - uid: 10266 + components: + - pos: -58.5,5.5 + parent: 1 + type: Transform + - uid: 10418 + components: + - pos: -16.5,64.5 + parent: 1 + type: Transform + - uid: 10549 + components: + - pos: -85.5,27.5 + parent: 1 + type: Transform + - uid: 10550 + components: + - pos: -85.5,20.5 + parent: 1 + type: Transform + - uid: 10551 + components: + - pos: -86.5,20.5 + parent: 1 + type: Transform + - uid: 10552 + components: + - pos: -87.5,20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10553 + components: + - pos: -85.5,23.5 + parent: 1 + type: Transform + - uid: 10554 + components: + - pos: -84.5,23.5 + parent: 1 + type: Transform + - uid: 10555 + components: + - pos: -84.5,22.5 + parent: 1 + type: Transform + - uid: 10556 + components: + - pos: -84.5,21.5 + parent: 1 + type: Transform + - uid: 10557 + components: + - pos: -84.5,20.5 + parent: 1 + type: Transform + - uid: 10558 + components: + - pos: -86.5,23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10559 + components: + - pos: -86.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10560 + components: + - pos: -86.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10561 + components: + - pos: -86.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10562 + components: + - pos: -86.5,27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10563 + components: + - pos: -88.5,20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10564 + components: + - pos: -88.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10565 + components: + - pos: -90.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10566 + components: + - pos: -91.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10567 + components: + - pos: -92.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10568 + components: + - pos: -93.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10569 + components: + - pos: -94.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10570 + components: + - pos: -94.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10571 + components: + - pos: -95.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10572 + components: + - pos: -96.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10573 + components: + - pos: -96.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10574 + components: + - pos: -97.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10576 + components: + - pos: -98.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10577 + components: + - pos: -98.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10578 + components: + - pos: -99.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10579 + components: + - pos: -100.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10581 + components: + - pos: -87.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10582 + components: + - pos: -88.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10583 + components: + - pos: -88.5,31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10584 + components: + - pos: -89.5,31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10585 + components: + - pos: -90.5,31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10586 + components: + - pos: -91.5,31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10587 + components: + - pos: -92.5,31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10588 + components: + - pos: -93.5,31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10589 + components: + - pos: -94.5,31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10590 + components: + - pos: -94.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10591 + components: + - pos: -95.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10592 + components: + - pos: -96.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10593 + components: + - pos: -96.5,31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10594 + components: + - pos: -97.5,31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10595 + components: + - pos: -98.5,31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10596 + components: + - pos: -98.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10597 + components: + - pos: -99.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10598 + components: + - pos: -100.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10706 + components: + - pos: -74.5,20.5 + parent: 1 + type: Transform + - uid: 10707 + components: + - pos: -74.5,19.5 + parent: 1 + type: Transform + - uid: 10708 + components: + - pos: -74.5,18.5 + parent: 1 + type: Transform + - uid: 10709 + components: + - pos: -74.5,17.5 + parent: 1 + type: Transform + - uid: 10710 + components: + - pos: -74.5,16.5 + parent: 1 + type: Transform + - uid: 10711 + components: + - pos: -74.5,15.5 + parent: 1 + type: Transform + - uid: 10714 + components: + - pos: -63.5,31.5 + parent: 1 + type: Transform + - uid: 10715 + components: + - pos: -63.5,30.5 + parent: 1 + type: Transform + - uid: 10716 + components: + - pos: -63.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10717 + components: + - pos: -63.5,28.5 + parent: 1 + type: Transform + - uid: 10724 + components: + - pos: -63.5,27.5 + parent: 1 + type: Transform + - uid: 10895 + components: + - pos: -14.5,60.5 + parent: 1 + type: Transform + - uid: 10896 + components: + - pos: -13.5,60.5 + parent: 1 + type: Transform + - uid: 10897 + components: + - pos: -12.5,60.5 + parent: 1 + type: Transform + - uid: 10898 + components: + - pos: -11.5,60.5 + parent: 1 + type: Transform + - uid: 12834 + components: + - pos: 21.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12835 + components: + - pos: 22.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12836 + components: + - pos: 20.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12837 + components: + - pos: 19.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12838 + components: + - pos: 18.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12839 + components: + - pos: 17.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12840 + components: + - pos: 16.5,26.5 + parent: 1 + type: Transform + - uid: 12841 + components: + - pos: 15.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12842 + components: + - pos: 14.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12843 + components: + - pos: 14.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12844 + components: + - pos: 14.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12845 + components: + - pos: 14.5,23.5 + parent: 1 + type: Transform + - uid: 12846 + components: + - pos: 14.5,22.5 + parent: 1 + type: Transform + - uid: 12847 + components: + - pos: 14.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12848 + components: + - pos: 14.5,20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12849 + components: + - pos: 14.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12850 + components: + - pos: 14.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12851 + components: + - pos: 14.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12860 + components: + - pos: 14.5,16.5 + parent: 1 + type: Transform + - uid: 12861 + components: + - pos: 14.5,15.5 + parent: 1 + type: Transform + - uid: 12862 + components: + - pos: 14.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12863 + components: + - pos: 14.5,13.5 + parent: 1 + type: Transform + - uid: 12864 + components: + - pos: 14.5,12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12865 + components: + - pos: 14.5,11.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12866 + components: + - pos: 14.5,10.5 + parent: 1 + type: Transform + - uid: 12867 + components: + - pos: 14.5,9.5 + parent: 1 + type: Transform + - uid: 12868 + components: + - pos: 13.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12869 + components: + - pos: 12.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12870 + components: + - pos: 11.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12871 + components: + - pos: 10.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12872 + components: + - pos: 9.5,9.5 + parent: 1 + type: Transform + - uid: 12873 + components: + - pos: 8.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12874 + components: + - pos: 7.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12875 + components: + - pos: 6.5,9.5 + parent: 1 + type: Transform + - uid: 12876 + components: + - pos: 5.5,9.5 + parent: 1 + type: Transform + - uid: 12877 + components: + - pos: 4.5,9.5 + parent: 1 + type: Transform + - uid: 12878 + components: + - pos: 3.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12879 + components: + - pos: 3.5,10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12880 + components: + - pos: 3.5,11.5 + parent: 1 + type: Transform + - uid: 12881 + components: + - pos: 3.5,12.5 + parent: 1 + type: Transform + - uid: 12882 + components: + - pos: 2.5,12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12883 + components: + - pos: 1.5,12.5 + parent: 1 + type: Transform + - uid: 12884 + components: + - pos: 0.5,12.5 + parent: 1 + type: Transform + - uid: 12885 + components: + - pos: -0.5,12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12886 + components: + - pos: -1.5,12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12887 + components: + - pos: -2.5,12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12888 + components: + - pos: -3.5,12.5 + parent: 1 + type: Transform + - uid: 12889 + components: + - pos: -4.5,12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15013 + components: + - pos: -71.5,27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15014 + components: + - pos: -71.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15015 + components: + - pos: -71.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15233 + components: + - pos: 17.5,46.5 + parent: 1 + type: Transform + - uid: 15327 + components: + - pos: -69.5,20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15328 + components: + - pos: -69.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15329 + components: + - pos: -69.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15330 + components: + - pos: -70.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15331 + components: + - pos: -68.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15332 + components: + - pos: -73.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15405 + components: + - pos: -36.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15406 + components: + - pos: -36.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15407 + components: + - pos: -36.5,58.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15408 + components: + - pos: -36.5,59.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15409 + components: + - pos: -36.5,60.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15410 + components: + - pos: -36.5,61.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15411 + components: + - pos: -36.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15412 + components: + - pos: -36.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15413 + components: + - pos: -36.5,64.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15414 + components: + - pos: -36.5,65.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15415 + components: + - pos: -36.5,66.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15416 + components: + - pos: -36.5,67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15417 + components: + - pos: -36.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15418 + components: + - pos: -36.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15419 + components: + - pos: -37.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15420 + components: + - pos: -38.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15421 + components: + - pos: -39.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15422 + components: + - pos: -40.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15423 + components: + - pos: -41.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15424 + components: + - pos: -42.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15425 + components: + - pos: -43.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15426 + components: + - pos: -44.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15462 + components: + - pos: -44.5,58.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15463 + components: + - pos: -41.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15466 + components: + - pos: -37.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15468 + components: + - pos: -38.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15469 + components: + - pos: -40.5,58.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15470 + components: + - pos: -38.5,59.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15471 + components: + - pos: -39.5,58.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15476 + components: + - pos: -43.5,58.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15477 + components: + - pos: -41.5,58.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15479 + components: + - pos: -38.5,58.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15485 + components: + - pos: -43.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15486 + components: + - pos: -42.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15811 + components: + - pos: -11.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15812 + components: + - pos: -10.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15813 + components: + - pos: -10.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound +- proto: CableHVStack + entities: + - uid: 2889 + components: + - pos: 22.480692,-7.43704 + parent: 1 + type: Transform + - uid: 3427 + components: + - pos: -54.44091,29.7276 + parent: 1 + type: Transform + - uid: 8239 + components: + - pos: -7.5488524,8.322083 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 497 + components: + - pos: 7.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 498 + components: + - pos: 6.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 503 + components: + - pos: 5.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 504 + components: + - pos: 4.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 533 + components: + - pos: 3.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 534 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 535 + components: + - pos: 1.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 537 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 538 + components: + - pos: -0.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 539 + components: + - pos: -1.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 540 + components: + - pos: -2.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 541 + components: + - pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 542 + components: + - pos: -4.5,-5.5 + parent: 1 + type: Transform + - uid: 543 + components: + - pos: -4.5,-4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 544 + components: + - pos: -4.5,-3.5 + parent: 1 + type: Transform + - uid: 545 + components: + - pos: -4.5,-2.5 + parent: 1 + type: Transform + - uid: 546 + components: + - pos: -4.5,-1.5 + parent: 1 + type: Transform + - uid: 547 + components: + - pos: -4.5,-0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 548 + components: + - pos: -1.5,-6.5 + parent: 1 + type: Transform + - uid: 549 + components: + - pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 550 + components: + - pos: -1.5,-8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 551 + components: + - pos: -1.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 552 + components: + - pos: -1.5,-10.5 + parent: 1 + type: Transform + - uid: 553 + components: + - pos: -0.5,-10.5 + parent: 1 + type: Transform + - uid: 554 + components: + - pos: 0.5,-10.5 + parent: 1 + type: Transform + - uid: 555 + components: + - pos: 1.5,-10.5 + parent: 1 + type: Transform + - uid: 556 + components: + - pos: 2.5,-10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 557 + components: + - pos: 2.5,-9.5 + parent: 1 + type: Transform + - uid: 558 + components: + - pos: 2.5,-8.5 + parent: 1 + type: Transform + - uid: 559 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 600 + components: + - pos: 8.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 601 + components: + - pos: 9.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 602 + components: + - pos: 10.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 603 + components: + - pos: 11.5,-5.5 + parent: 1 + type: Transform + - uid: 604 + components: + - pos: 11.5,-6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 605 + components: + - pos: 11.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 931 + components: + - pos: 25.5,1.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 938 + components: + - pos: 26.5,1.5 + parent: 1 + type: Transform + - uid: 939 + components: + - pos: 26.5,0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1014 + components: + - pos: 28.5,23.5 + parent: 1 + type: Transform + - uid: 1015 + components: + - pos: 28.5,24.5 + parent: 1 + type: Transform + - uid: 1508 + components: + - pos: -15.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1509 + components: + - pos: -16.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1510 + components: + - pos: -17.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1643 + components: + - pos: 29.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1675 + components: + - pos: 10.5,-4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1676 + components: + - pos: 10.5,-3.5 + parent: 1 + type: Transform + - uid: 1677 + components: + - pos: 10.5,-2.5 + parent: 1 + type: Transform + - uid: 1678 + components: + - pos: 10.5,-1.5 + parent: 1 + type: Transform + - uid: 1679 + components: + - pos: 10.5,-0.5 + parent: 1 + type: Transform + - uid: 1680 + components: + - pos: 10.5,0.5 + parent: 1 + type: Transform + - uid: 1681 + components: + - pos: 11.5,0.5 + parent: 1 + type: Transform + - uid: 1682 + components: + - pos: 12.5,0.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2188 + components: + - pos: -4.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2189 + components: + - pos: -3.5,17.5 + parent: 1 + type: Transform + - uid: 2190 + components: + - pos: -3.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2191 + components: + - pos: -3.5,19.5 + parent: 1 + type: Transform + - uid: 2192 + components: + - pos: -3.5,20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2193 + components: + - pos: -3.5,21.5 + parent: 1 + type: Transform + - uid: 2194 + components: + - pos: -3.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2195 + components: + - pos: -3.5,23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2196 + components: + - pos: -2.5,23.5 + parent: 1 + type: Transform + - uid: 2197 + components: + - pos: -1.5,23.5 + parent: 1 + type: Transform + - uid: 2198 + components: + - pos: -0.5,23.5 + parent: 1 + type: Transform + - uid: 2199 + components: + - pos: 0.5,23.5 + parent: 1 + type: Transform + - uid: 2200 + components: + - pos: 1.5,23.5 + parent: 1 + type: Transform + - uid: 2201 + components: + - pos: 2.5,23.5 + parent: 1 + type: Transform + - uid: 2202 + components: + - pos: 3.5,23.5 + parent: 1 + type: Transform + - uid: 2203 + components: + - pos: 3.5,22.5 + parent: 1 + type: Transform + - uid: 2204 + components: + - pos: 3.5,21.5 + parent: 1 + type: Transform + - uid: 2205 + components: + - pos: 2.5,21.5 + parent: 1 + type: Transform + - uid: 2206 + components: + - pos: 1.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2207 + components: + - pos: 4.5,23.5 + parent: 1 + type: Transform + - uid: 2208 + components: + - pos: 4.5,24.5 + parent: 1 + type: Transform + - uid: 2209 + components: + - pos: 4.5,25.5 + parent: 1 + type: Transform + - uid: 2210 + components: + - pos: 4.5,26.5 + parent: 1 + type: Transform + - uid: 2211 + components: + - pos: 4.5,27.5 + parent: 1 + type: Transform + - uid: 2212 + components: + - pos: 4.5,28.5 + parent: 1 + type: Transform + - uid: 2213 + components: + - pos: 4.5,29.5 + parent: 1 + type: Transform + - uid: 2214 + components: + - pos: 4.5,30.5 + parent: 1 + type: Transform + - uid: 2215 + components: + - pos: 4.5,31.5 + parent: 1 + type: Transform + - uid: 2216 + components: + - pos: 4.5,32.5 + parent: 1 + type: Transform + - uid: 2217 + components: + - pos: 4.5,33.5 + parent: 1 + type: Transform + - uid: 2218 + components: + - pos: 4.5,34.5 + parent: 1 + type: Transform + - uid: 2219 + components: + - pos: 4.5,35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2516 + components: + - pos: 23.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2517 + components: + - pos: 22.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2518 + components: + - pos: 22.5,10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2687 + components: + - pos: -5.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2688 + components: + - pos: -6.5,17.5 + parent: 1 + type: Transform + - uid: 2689 + components: + - pos: -7.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2690 + components: + - pos: -8.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2691 + components: + - pos: -9.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2692 + components: + - pos: -9.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2698 + components: + - pos: -10.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2802 + components: + - pos: -18.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2808 + components: + - pos: -19.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2938 + components: + - pos: -20.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3223 + components: + - pos: -20.5,20.5 + parent: 1 + type: Transform + - uid: 3324 + components: + - pos: -20.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3325 + components: + - pos: -21.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3326 + components: + - pos: -22.5,21.5 + parent: 1 + type: Transform + - uid: 3327 + components: + - pos: -23.5,21.5 + parent: 1 + type: Transform + - uid: 3328 + components: + - pos: -24.5,21.5 + parent: 1 + type: Transform + - uid: 3329 + components: + - pos: -24.5,20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3330 + components: + - pos: -24.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3682 + components: + - pos: -31.5,-6.5 + parent: 1 + type: Transform + - uid: 3854 + components: + - pos: -38.5,-6.5 + parent: 1 + type: Transform + - uid: 3934 + components: + - pos: -24.5,-3.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3935 + components: + - pos: -24.5,-4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3936 + components: + - pos: -23.5,-4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3937 + components: + - pos: -22.5,-4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3938 + components: + - pos: -21.5,-4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3939 + components: + - pos: -21.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3940 + components: + - pos: -21.5,-6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3941 + components: + - pos: -21.5,-7.5 + parent: 1 + type: Transform + - uid: 3942 + components: + - pos: -22.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3943 + components: + - pos: -23.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3944 + components: + - pos: -24.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3945 + components: + - pos: -25.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3946 + components: + - pos: -26.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3947 + components: + - pos: -26.5,-6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3948 + components: + - pos: -26.5,-5.5 + parent: 1 + type: Transform + - uid: 3949 + components: + - pos: -26.5,-4.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3950 + components: + - pos: -26.5,-3.5 + parent: 1 + type: Transform + - uid: 3951 + components: + - pos: -26.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3952 + components: + - pos: -27.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3953 + components: + - pos: -27.5,-6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3954 + components: + - pos: -28.5,-6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3955 + components: + - pos: -29.5,-6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3956 + components: + - pos: -30.5,-6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3957 + components: + - pos: -37.5,-6.5 + parent: 1 + type: Transform + - uid: 3973 + components: + - pos: -40.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3974 + components: + - pos: -41.5,-5.5 + parent: 1 + type: Transform + - uid: 3975 + components: + - pos: -42.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4284 + components: + - pos: -41.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4328 + components: + - pos: -40.5,15.5 + parent: 1 + type: Transform + - uid: 4329 + components: + - pos: -41.5,15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4349 + components: + - pos: -41.5,13.5 + parent: 1 + type: Transform + - uid: 4350 + components: + - pos: -41.5,12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4351 + components: + - pos: -42.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4352 + components: + - pos: -43.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4353 + components: + - pos: -44.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4354 + components: + - pos: -45.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4355 + components: + - pos: -46.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4356 + components: + - pos: -47.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4357 + components: + - pos: -48.5,14.5 + parent: 1 + type: Transform + - uid: 4358 + components: + - pos: -49.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4359 + components: + - pos: -50.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4360 + components: + - pos: -50.5,15.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4361 + components: + - pos: -50.5,16.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4362 + components: + - pos: -50.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4363 + components: + - pos: -50.5,18.5 + parent: 1 + type: Transform + - uid: 4364 + components: + - pos: -50.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4365 + components: + - pos: -50.5,20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4366 + components: + - pos: -50.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4367 + components: + - pos: -49.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4368 + components: + - pos: -48.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4369 + components: + - pos: -47.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4370 + components: + - pos: -46.5,21.5 + parent: 1 + type: Transform + - uid: 4371 + components: + - pos: -45.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4372 + components: + - pos: -44.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4373 + components: + - pos: -43.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4374 + components: + - pos: -42.5,21.5 + parent: 1 + type: Transform + - uid: 4375 + components: + - pos: -41.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4376 + components: + - pos: -40.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4377 + components: + - pos: -40.5,20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4432 + components: + - pos: -46.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4570 + components: + - pos: -44.5,27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4602 + components: + - pos: -44.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4603 + components: + - pos: -44.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4604 + components: + - pos: -44.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4605 + components: + - pos: -44.5,23.5 + parent: 1 + type: Transform + - uid: 4606 + components: + - pos: -45.5,27.5 + parent: 1 + type: Transform + - uid: 4607 + components: + - pos: -46.5,27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4609 + components: + - pos: -51.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4694 + components: + - pos: -45.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4695 + components: + - pos: -44.5,13.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4696 + components: + - pos: -44.5,12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4697 + components: + - pos: -44.5,11.5 + parent: 1 + type: Transform + - uid: 4698 + components: + - pos: -44.5,10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4699 + components: + - pos: -44.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4739 + components: + - pos: -46.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4740 + components: + - pos: -46.5,23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5047 + components: + - pos: -88.5,20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5079 + components: + - pos: -40.5,-6.5 + parent: 1 + type: Transform + - uid: 5080 + components: + - pos: -40.5,-7.5 + parent: 1 + type: Transform + - uid: 5081 + components: + - pos: -40.5,-8.5 + parent: 1 + type: Transform + - uid: 5082 + components: + - pos: -40.5,-9.5 + parent: 1 + type: Transform + - uid: 5083 + components: + - pos: -41.5,-9.5 + parent: 1 + type: Transform + - uid: 5084 + components: + - pos: -42.5,-9.5 + parent: 1 + type: Transform + - uid: 5085 + components: + - pos: -43.5,-9.5 + parent: 1 + type: Transform + - uid: 5086 + components: + - pos: -44.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5087 + components: + - pos: -45.5,-9.5 + parent: 1 + type: Transform + - uid: 5088 + components: + - pos: -46.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5089 + components: + - pos: -47.5,-9.5 + parent: 1 + type: Transform + - uid: 5090 + components: + - pos: -48.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5091 + components: + - pos: -49.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5092 + components: + - pos: -50.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5093 + components: + - pos: -51.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5094 + components: + - pos: -52.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5095 + components: + - pos: -53.5,-9.5 + parent: 1 + type: Transform + - uid: 5096 + components: + - pos: -54.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5097 + components: + - pos: -55.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5098 + components: + - pos: -56.5,-9.5 + parent: 1 + type: Transform + - uid: 5099 + components: + - pos: -56.5,-8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5100 + components: + - pos: -56.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5101 + components: + - pos: -55.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5588 + components: + - pos: -44.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5589 + components: + - pos: -46.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5807 + components: + - pos: 17.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6200 + components: + - pos: 18.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6201 + components: + - pos: 17.5,46.5 + parent: 1 + type: Transform + - uid: 6202 + components: + - pos: 16.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6213 + components: + - pos: 17.5,48.5 + parent: 1 + type: Transform + - uid: 6215 + components: + - pos: 16.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6216 + components: + - pos: 17.5,49.5 + parent: 1 + type: Transform + - uid: 6217 + components: + - pos: 16.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6547 + components: + - pos: -3.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6548 + components: + - pos: -4.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6549 + components: + - pos: -4.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7096 + components: + - pos: -20.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7808 + components: + - pos: -53.5,85.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7809 + components: + - pos: -52.5,85.5 + parent: 1 + type: Transform + - uid: 7810 + components: + - pos: -51.5,85.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7811 + components: + - pos: -50.5,85.5 + parent: 1 + type: Transform + - uid: 7812 + components: + - pos: -50.5,84.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7813 + components: + - pos: -50.5,83.5 + parent: 1 + type: Transform + - uid: 7814 + components: + - pos: -50.5,82.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7815 + components: + - pos: -50.5,81.5 + parent: 1 + type: Transform + - uid: 7816 + components: + - pos: -50.5,80.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7817 + components: + - pos: -50.5,79.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7818 + components: + - pos: -50.5,78.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7819 + components: + - pos: -50.5,77.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7820 + components: + - pos: -50.5,76.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7821 + components: + - pos: -50.5,75.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7822 + components: + - pos: -50.5,74.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7823 + components: + - pos: -50.5,73.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7824 + components: + - pos: -50.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7825 + components: + - pos: -50.5,71.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7826 + components: + - pos: -50.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7827 + components: + - pos: -50.5,69.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7828 + components: + - pos: -50.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7829 + components: + - pos: -50.5,67.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7830 + components: + - pos: -50.5,66.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7831 + components: + - pos: -50.5,65.5 + parent: 1 + type: Transform + - uid: 7832 + components: + - pos: -50.5,64.5 + parent: 1 + type: Transform + - uid: 7836 + components: + - pos: -50.5,63.5 + parent: 1 + type: Transform + - uid: 7841 + components: + - pos: -50.5,62.5 + parent: 1 + type: Transform + - uid: 7844 + components: + - pos: -49.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7845 + components: + - pos: -50.5,61.5 + parent: 1 + type: Transform + - uid: 7847 + components: + - pos: -50.5,59.5 + parent: 1 + type: Transform + - uid: 7848 + components: + - pos: -50.5,58.5 + parent: 1 + type: Transform + - uid: 7850 + components: + - pos: -50.5,57.5 + parent: 1 + type: Transform + - uid: 7851 + components: + - pos: -50.5,56.5 + parent: 1 + type: Transform + - uid: 7852 + components: + - pos: -51.5,56.5 + parent: 1 + type: Transform + - uid: 7853 + components: + - pos: -52.5,56.5 + parent: 1 + type: Transform + - uid: 7854 + components: + - pos: -53.5,56.5 + parent: 1 + type: Transform + - uid: 7855 + components: + - pos: -54.5,56.5 + parent: 1 + type: Transform + - uid: 7856 + components: + - pos: -55.5,56.5 + parent: 1 + type: Transform + - uid: 7857 + components: + - pos: -56.5,56.5 + parent: 1 + type: Transform + - uid: 7858 + components: + - pos: -57.5,56.5 + parent: 1 + type: Transform + - uid: 7859 + components: + - pos: -58.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8780 + components: + - pos: -50.5,60.5 + parent: 1 + type: Transform + - uid: 8942 + components: + - pos: -51.5,60.5 + parent: 1 + type: Transform + - uid: 8943 + components: + - pos: -52.5,60.5 + parent: 1 + type: Transform + - uid: 8944 + components: + - pos: -53.5,60.5 + parent: 1 + type: Transform + - uid: 8945 + components: + - pos: -54.5,60.5 + parent: 1 + type: Transform + - uid: 8946 + components: + - pos: -55.5,60.5 + parent: 1 + type: Transform + - uid: 8947 + components: + - pos: -56.5,60.5 + parent: 1 + type: Transform + - uid: 8948 + components: + - pos: -57.5,60.5 + parent: 1 + type: Transform + - uid: 8949 + components: + - pos: -58.5,60.5 + parent: 1 + type: Transform + - uid: 8950 + components: + - pos: -59.5,60.5 + parent: 1 + type: Transform + - uid: 8951 + components: + - pos: -60.5,60.5 + parent: 1 + type: Transform + - uid: 8952 + components: + - pos: -61.5,60.5 + parent: 1 + type: Transform + - uid: 8953 + components: + - pos: -62.5,60.5 + parent: 1 + type: Transform + - uid: 8954 + components: + - pos: -63.5,60.5 + parent: 1 + type: Transform + - uid: 8955 + components: + - pos: -63.5,59.5 + parent: 1 + type: Transform + - uid: 8956 + components: + - pos: -63.5,58.5 + parent: 1 + type: Transform + - uid: 8957 + components: + - pos: -63.5,57.5 + parent: 1 + type: Transform + - uid: 8958 + components: + - pos: -64.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8959 + components: + - pos: -65.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9381 + components: + - pos: -35.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9382 + components: + - pos: -34.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9383 + components: + - pos: -34.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9384 + components: + - pos: -34.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9385 + components: + - pos: -33.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9386 + components: + - pos: -32.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9387 + components: + - pos: -32.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9388 + components: + - pos: -32.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9389 + components: + - pos: -32.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9390 + components: + - pos: -32.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9391 + components: + - pos: -32.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9392 + components: + - pos: -31.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9393 + components: + - pos: -31.5,49.5 + parent: 1 + type: Transform + - uid: 9394 + components: + - pos: -31.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9396 + components: + - pos: -30.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9397 + components: + - pos: -29.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9398 + components: + - pos: -28.5,50.5 + parent: 1 + type: Transform + - uid: 9399 + components: + - pos: -27.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9400 + components: + - pos: -26.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9401 + components: + - pos: -25.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9402 + components: + - pos: -24.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9403 + components: + - pos: -24.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9404 + components: + - pos: -24.5,48.5 + parent: 1 + type: Transform + - uid: 9405 + components: + - pos: -24.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9406 + components: + - pos: -24.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9407 + components: + - pos: -24.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9408 + components: + - pos: -24.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9409 + components: + - pos: -24.5,43.5 + parent: 1 + type: Transform + - uid: 9410 + components: + - pos: -24.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9411 + components: + - pos: -24.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9412 + components: + - pos: -24.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9413 + components: + - pos: -24.5,39.5 + parent: 1 + type: Transform + - uid: 9414 + components: + - pos: -24.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9415 + components: + - pos: -25.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9416 + components: + - pos: -26.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9495 + components: + - pos: -23.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9642 + components: + - pos: -20.5,23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9643 + components: + - pos: -21.5,23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9644 + components: + - pos: -21.5,23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9645 + components: + - pos: -22.5,23.5 + parent: 1 + type: Transform + - uid: 9646 + components: + - pos: -23.5,23.5 + parent: 1 + type: Transform + - uid: 9647 + components: + - pos: -24.5,23.5 + parent: 1 + type: Transform + - uid: 9648 + components: + - pos: -25.5,23.5 + parent: 1 + type: Transform + - uid: 9649 + components: + - pos: -26.5,23.5 + parent: 1 + type: Transform + - uid: 9650 + components: + - pos: -27.5,23.5 + parent: 1 + type: Transform + - uid: 9651 + components: + - pos: -28.5,23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9652 + components: + - pos: -29.5,23.5 + parent: 1 + type: Transform + - uid: 9653 + components: + - pos: -29.5,24.5 + parent: 1 + type: Transform + - uid: 9654 + components: + - pos: -29.5,25.5 + parent: 1 + type: Transform + - uid: 9655 + components: + - pos: -29.5,26.5 + parent: 1 + type: Transform + - uid: 9656 + components: + - pos: -29.5,27.5 + parent: 1 + type: Transform + - uid: 9657 + components: + - pos: -29.5,28.5 + parent: 1 + type: Transform + - uid: 9658 + components: + - pos: -29.5,29.5 + parent: 1 + type: Transform + - uid: 9659 + components: + - pos: -29.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10021 + components: + - pos: -65.5,58.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10022 + components: + - pos: -65.5,59.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10213 + components: + - pos: -79.5,27.5 + parent: 1 + type: Transform + - uid: 10214 + components: + - pos: -80.5,27.5 + parent: 1 + type: Transform + - uid: 10215 + components: + - pos: -81.5,27.5 + parent: 1 + type: Transform + - uid: 10217 + components: + - pos: -82.5,27.5 + parent: 1 + type: Transform + - uid: 10218 + components: + - pos: -83.5,27.5 + parent: 1 + type: Transform + - uid: 10219 + components: + - pos: -84.5,27.5 + parent: 1 + type: Transform + - uid: 10220 + components: + - pos: -84.5,28.5 + parent: 1 + type: Transform + - uid: 10221 + components: + - pos: -84.5,29.5 + parent: 1 + type: Transform + - uid: 10222 + components: + - pos: -84.5,30.5 + parent: 1 + type: Transform + - uid: 10223 + components: + - pos: -85.5,30.5 + parent: 1 + type: Transform + - uid: 10224 + components: + - pos: -86.5,30.5 + parent: 1 + type: Transform + - uid: 10237 + components: + - pos: -39.5,-6.5 + parent: 1 + type: Transform + - uid: 10271 + components: + - pos: -35.5,-6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10277 + components: + - pos: -34.5,-6.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10285 + components: + - pos: -33.5,-6.5 + parent: 1 + type: Transform + - uid: 10288 + components: + - pos: -32.5,-6.5 + parent: 1 + type: Transform + - uid: 10298 + components: + - pos: -36.5,-6.5 + parent: 1 + type: Transform + - uid: 10318 + components: + - pos: -20.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10320 + components: + - pos: -20.5,17.5 + parent: 1 + type: Transform + - uid: 10430 + components: + - pos: -42.5,-8.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10522 + components: + - pos: -87.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10523 + components: + - pos: -88.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10524 + components: + - pos: -79.5,26.5 + parent: 1 + type: Transform + - uid: 10525 + components: + - pos: -79.5,25.5 + parent: 1 + type: Transform + - uid: 10526 + components: + - pos: -79.5,24.5 + parent: 1 + type: Transform + - uid: 10527 + components: + - pos: -79.5,23.5 + parent: 1 + type: Transform + - uid: 10528 + components: + - pos: -80.5,23.5 + parent: 1 + type: Transform + - uid: 10529 + components: + - pos: -81.5,23.5 + parent: 1 + type: Transform + - uid: 10530 + components: + - pos: -82.5,23.5 + parent: 1 + type: Transform + - uid: 10531 + components: + - pos: -83.5,23.5 + parent: 1 + type: Transform + - uid: 10532 + components: + - pos: -84.5,23.5 + parent: 1 + type: Transform + - uid: 10533 + components: + - pos: -84.5,22.5 + parent: 1 + type: Transform + - uid: 10534 + components: + - pos: -84.5,21.5 + parent: 1 + type: Transform + - uid: 10537 + components: + - pos: -84.5,20.5 + parent: 1 + type: Transform + - uid: 10546 + components: + - pos: -85.5,20.5 + parent: 1 + type: Transform + - uid: 10547 + components: + - pos: -86.5,20.5 + parent: 1 + type: Transform + - uid: 10548 + components: + - pos: -87.5,20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10617 + components: + - pos: -101.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10618 + components: + - pos: -93.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10619 + components: + - pos: -93.5,33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10620 + components: + - pos: -101.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10621 + components: + - pos: -101.5,33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10622 + components: + - pos: -104.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10623 + components: + - pos: -105.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10624 + components: + - pos: -105.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10625 + components: + - pos: -105.5,31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10626 + components: + - pos: -105.5,28.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10627 + components: + - pos: -105.5,27.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10628 + components: + - pos: -105.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10629 + components: + - pos: -105.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10630 + components: + - pos: -105.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10631 + components: + - pos: -105.5,23.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10632 + components: + - pos: -105.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10633 + components: + - pos: -105.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10634 + components: + - pos: -105.5,20.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10635 + components: + - pos: -105.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10636 + components: + - pos: -104.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10637 + components: + - pos: -101.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10638 + components: + - pos: -93.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10639 + components: + - pos: -93.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10640 + components: + - pos: -90.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10641 + components: + - pos: -90.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10642 + components: + - pos: -89.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10643 + components: + - pos: -89.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10981 + components: + - pos: -66.5,57.5 + parent: 1 + type: Transform + - uid: 10982 + components: + - pos: -67.5,57.5 + parent: 1 + type: Transform + - uid: 10983 + components: + - pos: -67.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10984 + components: + - pos: -67.5,55.5 + parent: 1 + type: Transform + - uid: 10985 + components: + - pos: -67.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10986 + components: + - pos: -67.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10987 + components: + - pos: -67.5,52.5 + parent: 1 + type: Transform + - uid: 10988 + components: + - pos: -67.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10989 + components: + - pos: -67.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10990 + components: + - pos: -66.5,50.5 + parent: 1 + type: Transform + - uid: 10991 + components: + - pos: -66.5,49.5 + parent: 1 + type: Transform + - uid: 10992 + components: + - pos: -66.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10993 + components: + - pos: -66.5,47.5 + parent: 1 + type: Transform + - uid: 10994 + components: + - pos: -66.5,46.5 + parent: 1 + type: Transform + - uid: 10995 + components: + - pos: -66.5,45.5 + parent: 1 + type: Transform + - uid: 10996 + components: + - pos: -66.5,44.5 + parent: 1 + type: Transform + - uid: 10997 + components: + - pos: -65.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11064 + components: + - pos: -71.5,34.5 + parent: 1 + type: Transform + - uid: 11065 + components: + - pos: -70.5,34.5 + parent: 1 + type: Transform + - uid: 11066 + components: + - pos: -69.5,34.5 + parent: 1 + type: Transform + - uid: 11067 + components: + - pos: -68.5,34.5 + parent: 1 + type: Transform + - uid: 11068 + components: + - pos: -68.5,35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11069 + components: + - pos: -72.5,34.5 + parent: 1 + type: Transform + - uid: 11070 + components: + - pos: -73.5,34.5 + parent: 1 + type: Transform + - uid: 11071 + components: + - pos: -74.5,34.5 + parent: 1 + type: Transform + - uid: 11072 + components: + - pos: -75.5,34.5 + parent: 1 + type: Transform + - uid: 11073 + components: + - pos: -76.5,34.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11074 + components: + - pos: -76.5,35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11075 + components: + - pos: -76.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11076 + components: + - pos: -73.5,33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11077 + components: + - pos: -73.5,33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11078 + components: + - pos: -73.5,32.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11079 + components: + - pos: -73.5,31.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11080 + components: + - pos: -73.5,30.5 + parent: 1 + type: Transform + - uid: 11081 + components: + - pos: -73.5,29.5 + parent: 1 + type: Transform + - uid: 11082 + components: + - pos: -73.5,28.5 + parent: 1 + type: Transform + - uid: 11085 + components: + - pos: -73.5,27.5 + parent: 1 + type: Transform + - uid: 11091 + components: + - pos: -73.5,26.5 + parent: 1 + type: Transform + - uid: 11114 + components: + - pos: -73.5,25.5 + parent: 1 + type: Transform + - uid: 11116 + components: + - pos: -73.5,24.5 + parent: 1 + type: Transform + - uid: 11120 + components: + - pos: -73.5,23.5 + parent: 1 + type: Transform + - uid: 11121 + components: + - pos: -73.5,22.5 + parent: 1 + type: Transform + - uid: 11157 + components: + - pos: -73.5,21.5 + parent: 1 + type: Transform + - uid: 11158 + components: + - pos: -74.5,21.5 + parent: 1 + type: Transform + - uid: 11159 + components: + - pos: -75.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14947 + components: + - pos: -72.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14948 + components: + - pos: -71.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14949 + components: + - pos: -71.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15235 + components: + - pos: 17.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15236 + components: + - pos: 16.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound +- proto: CableMVStack + entities: + - uid: 2888 + components: + - pos: 25.496317,-8.37454 + parent: 1 + type: Transform + - uid: 3424 + components: + - pos: -54.175285,29.57135 + parent: 1 + type: Transform + - uid: 15989 + components: + - pos: -7.5488524,8.259583 + parent: 1 + type: Transform +- proto: CableTerminal + entities: + - uid: 906 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-8.5 + parent: 1 + type: Transform + - uid: 930 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,3.5 + parent: 1 + type: Transform + - uid: 1028 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,23.5 + parent: 1 + type: Transform + - uid: 10167 + components: + - rot: -1.5707963267948966 rad + pos: -70.5,29.5 + parent: 1 + type: Transform + - uid: 10171 + components: + - rot: -1.5707963267948966 rad + pos: -70.5,31.5 + parent: 1 + type: Transform + - uid: 10173 + components: + - rot: -1.5707963267948966 rad + pos: -70.5,30.5 + parent: 1 + type: Transform + - uid: 10175 + components: + - rot: -1.5707963267948966 rad + pos: -70.5,28.5 + parent: 1 + type: Transform +- proto: CannabisSeeds + entities: + - uid: 29 + components: + - pos: -37.356266,49.664383 + parent: 1 + type: Transform + - uid: 65 + components: + - pos: -37.481266,49.508133 + parent: 1 + type: Transform +- proto: Carpet + entities: + - uid: 1799 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-0.5 + parent: 1 + type: Transform + - uid: 1800 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,0.5 + parent: 1 + type: Transform + - uid: 1801 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,1.5 + parent: 1 + type: Transform + - uid: 1802 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,2.5 + parent: 1 + type: Transform + - uid: 1803 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,3.5 + parent: 1 + type: Transform + - uid: 1804 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,3.5 + parent: 1 + type: Transform + - uid: 1805 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,3.5 + parent: 1 + type: Transform + - uid: 1806 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,3.5 + parent: 1 + type: Transform + - uid: 1807 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,3.5 + parent: 1 + type: Transform + - uid: 5916 + components: + - pos: -7.5,44.5 + parent: 1 + type: Transform + - uid: 5917 + components: + - pos: -7.5,43.5 + parent: 1 + type: Transform + - uid: 5918 + components: + - pos: -7.5,42.5 + parent: 1 + type: Transform + - uid: 5919 + components: + - pos: -7.5,41.5 + parent: 1 + type: Transform + - uid: 5920 + components: + - pos: -7.5,40.5 + parent: 1 + type: Transform + - uid: 5921 + components: + - pos: -7.5,39.5 + parent: 1 + type: Transform + - uid: 5922 + components: + - pos: -8.5,40.5 + parent: 1 + type: Transform + - uid: 5923 + components: + - pos: -9.5,40.5 + parent: 1 + type: Transform + - uid: 5924 + components: + - pos: -6.5,40.5 + parent: 1 + type: Transform + - uid: 5925 + components: + - pos: -5.5,40.5 + parent: 1 + type: Transform + - uid: 8933 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,63.5 + parent: 1 + type: Transform + - uid: 8934 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,64.5 + parent: 1 + type: Transform + - uid: 8935 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,65.5 + parent: 1 + type: Transform + - uid: 8936 + components: + - rot: 1.5707963267948966 rad + pos: -60.5,63.5 + parent: 1 + type: Transform + - uid: 8937 + components: + - rot: 1.5707963267948966 rad + pos: -60.5,64.5 + parent: 1 + type: Transform + - uid: 8938 + components: + - rot: 1.5707963267948966 rad + pos: -60.5,65.5 + parent: 1 + type: Transform + - uid: 8939 + components: + - rot: 1.5707963267948966 rad + pos: -61.5,63.5 + parent: 1 + type: Transform + - uid: 8940 + components: + - rot: 1.5707963267948966 rad + pos: -61.5,64.5 + parent: 1 + type: Transform + - uid: 8941 + components: + - rot: 1.5707963267948966 rad + pos: -61.5,65.5 + parent: 1 + type: Transform + - uid: 12611 + components: + - pos: 15.5,-1.5 + parent: 1 + type: Transform + - uid: 12612 + components: + - pos: 15.5,-2.5 + parent: 1 + type: Transform +- proto: CarpetBlack + entities: + - uid: 3499 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,9.5 + parent: 1 + type: Transform + - uid: 4703 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,9.5 + parent: 1 + type: Transform + - uid: 4706 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,9.5 + parent: 1 + type: Transform +- proto: CarpetBlue + entities: + - uid: 7530 + components: + - pos: -22.5,47.5 + parent: 1 + type: Transform + - uid: 7531 + components: + - pos: -22.5,45.5 + parent: 1 + type: Transform + - uid: 7532 + components: + - pos: -21.5,45.5 + parent: 1 + type: Transform + - uid: 7533 + components: + - pos: -22.5,46.5 + parent: 1 + type: Transform + - uid: 7534 + components: + - pos: -21.5,47.5 + parent: 1 + type: Transform + - uid: 7535 + components: + - pos: -21.5,46.5 + parent: 1 + type: Transform + - uid: 12785 + components: + - pos: 14.5,30.5 + parent: 1 + type: Transform + - uid: 12786 + components: + - pos: 14.5,31.5 + parent: 1 + type: Transform + - uid: 12787 + components: + - pos: 14.5,32.5 + parent: 1 + type: Transform + - uid: 12788 + components: + - pos: 15.5,30.5 + parent: 1 + type: Transform + - uid: 12789 + components: + - pos: 15.5,31.5 + parent: 1 + type: Transform + - uid: 12790 + components: + - pos: 15.5,32.5 + parent: 1 + type: Transform + - uid: 12791 + components: + - pos: 16.5,30.5 + parent: 1 + type: Transform + - uid: 12792 + components: + - pos: 16.5,31.5 + parent: 1 + type: Transform + - uid: 12793 + components: + - pos: 16.5,32.5 + parent: 1 + type: Transform +- proto: CarpetChapel + entities: + - uid: 1774 + components: + - pos: 13.5,-0.5 + parent: 1 + type: Transform + - uid: 1775 + components: + - pos: 13.5,1.5 + parent: 1 + type: Transform + - uid: 1776 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,2.5 + parent: 1 + type: Transform + - uid: 1777 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,0.5 + parent: 1 + type: Transform + - uid: 1780 + components: + - rot: 3.141592653589793 rad + pos: 14.5,0.5 + parent: 1 + type: Transform + - uid: 1781 + components: + - rot: 3.141592653589793 rad + pos: 14.5,2.5 + parent: 1 + type: Transform + - uid: 1782 + components: + - rot: 3.141592653589793 rad + pos: 17.5,2.5 + parent: 1 + type: Transform + - uid: 1783 + components: + - rot: 3.141592653589793 rad + pos: 17.5,0.5 + parent: 1 + type: Transform + - uid: 1784 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-1.5 + parent: 1 + type: Transform + - uid: 1785 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-2.5 + parent: 1 + type: Transform + - uid: 1786 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-0.5 + parent: 1 + type: Transform + - uid: 1787 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,1.5 + parent: 1 + type: Transform + - uid: 1788 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,1.5 + parent: 1 + type: Transform + - uid: 1789 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-0.5 + parent: 1 + type: Transform + - uid: 1791 + components: + - pos: 16.5,-2.5 + parent: 1 + type: Transform + - uid: 1792 + components: + - pos: 16.5,-0.5 + parent: 1 + type: Transform + - uid: 1793 + components: + - pos: 16.5,1.5 + parent: 1 + type: Transform + - uid: 1794 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,2.5 + parent: 1 + type: Transform + - uid: 1795 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,0.5 + parent: 1 + type: Transform + - uid: 1796 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-1.5 + parent: 1 + type: Transform + - uid: 12607 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 1 + type: Transform + - uid: 12608 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-1.5 + parent: 1 + type: Transform + - uid: 12609 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-2.5 + parent: 1 + type: Transform + - uid: 12610 + components: + - pos: 13.5,-2.5 + parent: 1 + type: Transform +- proto: CarpetGreen + entities: + - uid: 14438 + components: + - pos: -71.5,8.5 + parent: 1 + type: Transform + - uid: 14439 + components: + - pos: -71.5,9.5 + parent: 1 + type: Transform + - uid: 14440 + components: + - pos: -71.5,10.5 + parent: 1 + type: Transform + - uid: 14441 + components: + - pos: -71.5,11.5 + parent: 1 + type: Transform + - uid: 14442 + components: + - pos: -71.5,12.5 + parent: 1 + type: Transform + - uid: 14443 + components: + - pos: -71.5,13.5 + parent: 1 + type: Transform + - uid: 14444 + components: + - pos: -70.5,8.5 + parent: 1 + type: Transform + - uid: 14445 + components: + - pos: -70.5,9.5 + parent: 1 + type: Transform + - uid: 14446 + components: + - pos: -70.5,10.5 + parent: 1 + type: Transform + - uid: 14447 + components: + - pos: -70.5,11.5 + parent: 1 + type: Transform + - uid: 14448 + components: + - pos: -70.5,12.5 + parent: 1 + type: Transform + - uid: 14449 + components: + - pos: -70.5,13.5 + parent: 1 + type: Transform + - uid: 14450 + components: + - pos: -72.5,9.5 + parent: 1 + type: Transform + - uid: 14451 + components: + - pos: -69.5,9.5 + parent: 1 + type: Transform +- proto: CarpetOrange + entities: + - uid: 4082 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-4.5 + parent: 1 + type: Transform + - uid: 4083 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-3.5 + parent: 1 + type: Transform + - uid: 4085 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-4.5 + parent: 1 + type: Transform + - uid: 4086 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-3.5 + parent: 1 + type: Transform + - uid: 4087 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-2.5 + parent: 1 + type: Transform + - uid: 4088 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-4.5 + parent: 1 + type: Transform + - uid: 4089 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-3.5 + parent: 1 + type: Transform + - uid: 4090 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-2.5 + parent: 1 + type: Transform + - uid: 14216 + components: + - pos: -69.5,15.5 + parent: 1 + type: Transform + - uid: 14217 + components: + - pos: -69.5,16.5 + parent: 1 + type: Transform + - uid: 14219 + components: + - pos: -68.5,15.5 + parent: 1 + type: Transform + - uid: 14220 + components: + - pos: -68.5,16.5 + parent: 1 + type: Transform +- proto: CarpetPurple + entities: + - uid: 2471 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 2472 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 2473 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 2474 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 2475 + components: + - pos: -16.5,-5.5 + parent: 1 + type: Transform + - uid: 2476 + components: + - pos: -16.5,-4.5 + parent: 1 + type: Transform + - uid: 2477 + components: + - pos: -16.5,-3.5 + parent: 1 + type: Transform + - uid: 2478 + components: + - pos: -17.5,-5.5 + parent: 1 + type: Transform + - uid: 2479 + components: + - pos: -17.5,-4.5 + parent: 1 + type: Transform + - uid: 2480 + components: + - pos: -17.5,-3.5 + parent: 1 + type: Transform + - uid: 2481 + components: + - pos: -18.5,-5.5 + parent: 1 + type: Transform + - uid: 2482 + components: + - pos: -18.5,-4.5 + parent: 1 + type: Transform + - uid: 2483 + components: + - pos: -18.5,-3.5 + parent: 1 + type: Transform + - uid: 9749 + components: + - pos: -38.5,38.5 + parent: 1 + type: Transform + - uid: 9759 + components: + - pos: -38.5,37.5 + parent: 1 + type: Transform + - uid: 9760 + components: + - pos: -38.5,36.5 + parent: 1 + type: Transform + - uid: 9761 + components: + - pos: -37.5,38.5 + parent: 1 + type: Transform + - uid: 9762 + components: + - pos: -37.5,37.5 + parent: 1 + type: Transform + - uid: 9763 + components: + - pos: -37.5,36.5 + parent: 1 + type: Transform + - uid: 9764 + components: + - pos: -36.5,38.5 + parent: 1 + type: Transform + - uid: 9765 + components: + - pos: -36.5,37.5 + parent: 1 + type: Transform + - uid: 9766 + components: + - pos: -36.5,36.5 + parent: 1 + type: Transform +- proto: Catwalk + entities: + - uid: 5 + components: + - pos: -86.5,46.5 + parent: 1 + type: Transform + - uid: 118 + components: + - pos: -86.5,33.5 + parent: 1 + type: Transform + - uid: 120 + components: + - pos: -86.5,35.5 + parent: 1 + type: Transform + - uid: 126 + components: + - pos: -86.5,37.5 + parent: 1 + type: Transform + - uid: 519 + components: + - pos: -86.5,38.5 + parent: 1 + type: Transform + - uid: 520 + components: + - pos: -86.5,36.5 + parent: 1 + type: Transform + - uid: 521 + components: + - pos: -86.5,34.5 + parent: 1 + type: Transform + - uid: 721 + components: + - pos: 19.5,-19.5 + parent: 1 + type: Transform + - uid: 861 + components: + - pos: 18.5,-15.5 + parent: 1 + type: Transform + - uid: 862 + components: + - pos: 19.5,-15.5 + parent: 1 + type: Transform + - uid: 863 + components: + - pos: 20.5,-15.5 + parent: 1 + type: Transform + - uid: 864 + components: + - pos: 21.5,-15.5 + parent: 1 + type: Transform + - uid: 865 + components: + - pos: 22.5,-15.5 + parent: 1 + type: Transform + - uid: 866 + components: + - pos: 23.5,-15.5 + parent: 1 + type: Transform + - uid: 867 + components: + - pos: 24.5,-15.5 + parent: 1 + type: Transform + - uid: 868 + components: + - pos: 25.5,-15.5 + parent: 1 + type: Transform + - uid: 869 + components: + - pos: 26.5,-15.5 + parent: 1 + type: Transform + - uid: 870 + components: + - pos: 27.5,-15.5 + parent: 1 + type: Transform + - uid: 871 + components: + - pos: 28.5,-15.5 + parent: 1 + type: Transform + - uid: 872 + components: + - pos: 20.5,-19.5 + parent: 1 + type: Transform + - uid: 873 + components: + - pos: 21.5,-19.5 + parent: 1 + type: Transform + - uid: 874 + components: + - pos: 22.5,-19.5 + parent: 1 + type: Transform + - uid: 875 + components: + - pos: 23.5,-19.5 + parent: 1 + type: Transform + - uid: 876 + components: + - pos: 24.5,-19.5 + parent: 1 + type: Transform + - uid: 877 + components: + - pos: 25.5,-19.5 + parent: 1 + type: Transform + - uid: 878 + components: + - pos: 26.5,-19.5 + parent: 1 + type: Transform + - uid: 879 + components: + - pos: 27.5,-19.5 + parent: 1 + type: Transform + - uid: 880 + components: + - pos: 28.5,-19.5 + parent: 1 + type: Transform + - uid: 882 + components: + - pos: 20.5,-23.5 + parent: 1 + type: Transform + - uid: 883 + components: + - pos: 21.5,-23.5 + parent: 1 + type: Transform + - uid: 884 + components: + - pos: 22.5,-23.5 + parent: 1 + type: Transform + - uid: 885 + components: + - pos: 23.5,-23.5 + parent: 1 + type: Transform + - uid: 886 + components: + - pos: 24.5,-23.5 + parent: 1 + type: Transform + - uid: 887 + components: + - pos: 25.5,-23.5 + parent: 1 + type: Transform + - uid: 888 + components: + - pos: 26.5,-23.5 + parent: 1 + type: Transform + - uid: 889 + components: + - pos: 27.5,-23.5 + parent: 1 + type: Transform + - uid: 890 + components: + - pos: 28.5,-23.5 + parent: 1 + type: Transform + - uid: 891 + components: + - pos: 28.5,-24.5 + parent: 1 + type: Transform + - uid: 892 + components: + - pos: 28.5,-22.5 + parent: 1 + type: Transform + - uid: 893 + components: + - pos: 28.5,-21.5 + parent: 1 + type: Transform + - uid: 894 + components: + - pos: 28.5,-20.5 + parent: 1 + type: Transform + - uid: 895 + components: + - pos: 28.5,-18.5 + parent: 1 + type: Transform + - uid: 896 + components: + - pos: 28.5,-17.5 + parent: 1 + type: Transform + - uid: 897 + components: + - pos: 28.5,-16.5 + parent: 1 + type: Transform + - uid: 898 + components: + - pos: 28.5,-14.5 + parent: 1 + type: Transform + - uid: 899 + components: + - pos: 28.5,-13.5 + parent: 1 + type: Transform + - uid: 900 + components: + - pos: 28.5,-12.5 + parent: 1 + type: Transform + - uid: 901 + components: + - pos: 28.5,-11.5 + parent: 1 + type: Transform + - uid: 902 + components: + - pos: 28.5,-10.5 + parent: 1 + type: Transform + - uid: 2010 + components: + - pos: -5.5,16.5 + parent: 1 + type: Transform + - uid: 2011 + components: + - pos: -5.5,15.5 + parent: 1 + type: Transform + - uid: 2890 + components: + - pos: 28.5,-5.5 + parent: 1 + type: Transform + - uid: 2892 + components: + - pos: 26.5,-5.5 + parent: 1 + type: Transform + - uid: 2894 + components: + - pos: 24.5,-5.5 + parent: 1 + type: Transform + - uid: 2896 + components: + - pos: 22.5,-5.5 + parent: 1 + type: Transform + - uid: 2897 + components: + - pos: 21.5,-5.5 + parent: 1 + type: Transform + - uid: 2898 + components: + - pos: 20.5,-5.5 + parent: 1 + type: Transform + - uid: 2899 + components: + - pos: 19.5,-5.5 + parent: 1 + type: Transform + - uid: 2901 + components: + - pos: 17.5,-5.5 + parent: 1 + type: Transform + - uid: 2903 + components: + - pos: 15.5,-5.5 + parent: 1 + type: Transform + - uid: 2904 + components: + - pos: 14.5,-5.5 + parent: 1 + type: Transform + - uid: 2906 + components: + - pos: 12.5,-5.5 + parent: 1 + type: Transform + - uid: 2908 + components: + - pos: 10.5,-5.5 + parent: 1 + type: Transform + - uid: 2909 + components: + - pos: 5.5,-5.5 + parent: 1 + type: Transform + - uid: 2911 + components: + - pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 2913 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 2915 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 2916 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 2918 + components: + - pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 2920 + components: + - pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 2932 + components: + - pos: 23.5,-4.5 + parent: 1 + type: Transform + - uid: 2933 + components: + - pos: 23.5,-3.5 + parent: 1 + type: Transform + - uid: 2935 + components: + - pos: 23.5,-1.5 + parent: 1 + type: Transform + - uid: 2937 + components: + - pos: 23.5,0.5 + parent: 1 + type: Transform + - uid: 2939 + components: + - pos: 22.5,1.5 + parent: 1 + type: Transform + - uid: 2940 + components: + - pos: 22.5,2.5 + parent: 1 + type: Transform + - uid: 3889 + components: + - pos: -28.5,2.5 + parent: 1 + type: Transform + - uid: 4762 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 1 + type: Transform + - uid: 4763 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 + type: Transform + - uid: 4764 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-6.5 + parent: 1 + type: Transform + - uid: 4765 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-4.5 + parent: 1 + type: Transform + - uid: 4766 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-4.5 + parent: 1 + type: Transform + - uid: 4767 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-4.5 + parent: 1 + type: Transform + - uid: 4768 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-2.5 + parent: 1 + type: Transform + - uid: 4771 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-8.5 + parent: 1 + type: Transform + - uid: 4772 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-7.5 + parent: 1 + type: Transform + - uid: 4773 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-8.5 + parent: 1 + type: Transform + - uid: 4774 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-8.5 + parent: 1 + type: Transform + - uid: 5026 + components: + - pos: -66.5,11.5 + parent: 1 + type: Transform + - uid: 5033 + components: + - pos: -60.5,8.5 + parent: 1 + type: Transform + - uid: 5039 + components: + - pos: -67.5,9.5 + parent: 1 + type: Transform + - uid: 5040 + components: + - pos: -62.5,8.5 + parent: 1 + type: Transform + - uid: 5053 + components: + - pos: -65.5,8.5 + parent: 1 + type: Transform + - uid: 5189 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-2.5 + parent: 1 + type: Transform + - uid: 5246 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-8.5 + parent: 1 + type: Transform + - uid: 5247 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,0.5 + parent: 1 + type: Transform + - uid: 5370 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,0.5 + parent: 1 + type: Transform + - uid: 5371 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-6.5 + parent: 1 + type: Transform + - uid: 5372 + components: + - pos: -28.5,-0.5 + parent: 1 + type: Transform + - uid: 5373 + components: + - pos: -28.5,-1.5 + parent: 1 + type: Transform + - uid: 5375 + components: + - pos: -28.5,-3.5 + parent: 1 + type: Transform + - uid: 5376 + components: + - pos: -28.5,-4.5 + parent: 1 + type: Transform + - uid: 5377 + components: + - pos: -28.5,-5.5 + parent: 1 + type: Transform + - uid: 5381 + components: + - pos: -26.5,-6.5 + parent: 1 + type: Transform + - uid: 5383 + components: + - pos: -25.5,-7.5 + parent: 1 + type: Transform + - uid: 5384 + components: + - pos: -24.5,-7.5 + parent: 1 + type: Transform + - uid: 5386 + components: + - pos: -22.5,-7.5 + parent: 1 + type: Transform + - uid: 5388 + components: + - pos: -21.5,-6.5 + parent: 1 + type: Transform + - uid: 5390 + components: + - pos: -21.5,-4.5 + parent: 1 + type: Transform + - uid: 5391 + components: + - pos: -21.5,-3.5 + parent: 1 + type: Transform + - uid: 5394 + components: + - pos: -21.5,-0.5 + parent: 1 + type: Transform + - uid: 5396 + components: + - pos: -21.5,1.5 + parent: 1 + type: Transform + - uid: 5398 + components: + - pos: -19.5,1.5 + parent: 1 + type: Transform + - uid: 5399 + components: + - pos: -18.5,1.5 + parent: 1 + type: Transform + - uid: 5400 + components: + - pos: -17.5,1.5 + parent: 1 + type: Transform + - uid: 5402 + components: + - pos: -15.5,1.5 + parent: 1 + type: Transform + - uid: 5466 + components: + - pos: -48.5,1.5 + parent: 1 + type: Transform + - uid: 5468 + components: + - pos: -48.5,-0.5 + parent: 1 + type: Transform + - uid: 5469 + components: + - pos: -48.5,-1.5 + parent: 1 + type: Transform + - uid: 5471 + components: + - pos: -48.5,-3.5 + parent: 1 + type: Transform + - uid: 5474 + components: + - pos: -48.5,-6.5 + parent: 1 + type: Transform + - uid: 5475 + components: + - pos: -48.5,-7.5 + parent: 1 + type: Transform + - uid: 5479 + components: + - pos: -52.5,-9.5 + parent: 1 + type: Transform + - uid: 5480 + components: + - pos: -51.5,-9.5 + parent: 1 + type: Transform + - uid: 5482 + components: + - pos: -49.5,-9.5 + parent: 1 + type: Transform + - uid: 5483 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,2.5 + parent: 1 + type: Transform + - uid: 5484 + components: + - pos: -47.5,-9.5 + parent: 1 + type: Transform + - uid: 5485 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,1.5 + parent: 1 + type: Transform + - uid: 5486 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,19.5 + parent: 1 + type: Transform + - uid: 5487 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,17.5 + parent: 1 + type: Transform + - uid: 5488 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,17.5 + parent: 1 + type: Transform + - uid: 5489 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,18.5 + parent: 1 + type: Transform + - uid: 5491 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,20.5 + parent: 1 + type: Transform + - uid: 5492 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,20.5 + parent: 1 + type: Transform + - uid: 5562 + components: + - pos: -41.5,15.5 + parent: 1 + type: Transform + - uid: 5563 + components: + - pos: -41.5,14.5 + parent: 1 + type: Transform + - uid: 5564 + components: + - pos: -43.5,14.5 + parent: 1 + type: Transform + - uid: 5566 + components: + - pos: -45.5,14.5 + parent: 1 + type: Transform + - uid: 5567 + components: + - pos: -46.5,14.5 + parent: 1 + type: Transform + - uid: 5568 + components: + - pos: -47.5,14.5 + parent: 1 + type: Transform + - uid: 5571 + components: + - pos: -50.5,14.5 + parent: 1 + type: Transform + - uid: 5573 + components: + - pos: -50.5,16.5 + parent: 1 + type: Transform + - uid: 5574 + components: + - pos: -50.5,17.5 + parent: 1 + type: Transform + - uid: 5576 + components: + - pos: -50.5,19.5 + parent: 1 + type: Transform + - uid: 5578 + components: + - pos: -50.5,21.5 + parent: 1 + type: Transform + - uid: 5580 + components: + - pos: -48.5,21.5 + parent: 1 + type: Transform + - uid: 5581 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,12.5 + parent: 1 + type: Transform + - uid: 5582 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,14.5 + parent: 1 + type: Transform + - uid: 5583 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,11.5 + parent: 1 + type: Transform + - uid: 5584 + components: + - pos: -44.5,21.5 + parent: 1 + type: Transform + - uid: 5585 + components: + - pos: -43.5,21.5 + parent: 1 + type: Transform + - uid: 5587 + components: + - pos: -41.5,21.5 + parent: 1 + type: Transform + - uid: 5590 + components: + - pos: -44.5,22.5 + parent: 1 + type: Transform + - uid: 5592 + components: + - pos: -44.5,24.5 + parent: 1 + type: Transform + - uid: 5593 + components: + - pos: -44.5,25.5 + parent: 1 + type: Transform + - uid: 5595 + components: + - pos: -44.5,27.5 + parent: 1 + type: Transform + - uid: 5627 + components: + - pos: -44.5,13.5 + parent: 1 + type: Transform + - uid: 5628 + components: + - pos: -44.5,12.5 + parent: 1 + type: Transform + - uid: 5630 + components: + - pos: -44.5,10.5 + parent: 1 + type: Transform + - uid: 5631 + components: + - pos: -44.5,9.5 + parent: 1 + type: Transform + - uid: 5654 + components: + - pos: -33.5,9.5 + parent: 1 + type: Transform + - uid: 5657 + components: + - pos: -33.5,12.5 + parent: 1 + type: Transform + - uid: 5658 + components: + - pos: -33.5,13.5 + parent: 1 + type: Transform + - uid: 5660 + components: + - pos: -31.5,13.5 + parent: 1 + type: Transform + - uid: 5663 + components: + - pos: -30.5,15.5 + parent: 1 + type: Transform + - uid: 5665 + components: + - pos: -30.5,17.5 + parent: 1 + type: Transform + - uid: 5666 + components: + - pos: -30.5,20.5 + parent: 1 + type: Transform + - uid: 5669 + components: + - pos: -28.5,21.5 + parent: 1 + type: Transform + - uid: 5671 + components: + - pos: -26.5,21.5 + parent: 1 + type: Transform + - uid: 5672 + components: + - pos: -25.5,21.5 + parent: 1 + type: Transform + - uid: 5674 + components: + - pos: -23.5,21.5 + parent: 1 + type: Transform + - uid: 5676 + components: + - pos: -21.5,21.5 + parent: 1 + type: Transform + - uid: 5677 + components: + - pos: -20.5,21.5 + parent: 1 + type: Transform + - uid: 5683 + components: + - pos: -20.5,22.5 + parent: 1 + type: Transform + - uid: 5685 + components: + - pos: -20.5,24.5 + parent: 1 + type: Transform + - uid: 5687 + components: + - pos: -20.5,26.5 + parent: 1 + type: Transform + - uid: 5689 + components: + - pos: -19.5,19.5 + parent: 1 + type: Transform + - uid: 5691 + components: + - pos: -19.5,17.5 + parent: 1 + type: Transform + - uid: 5693 + components: + - pos: -19.5,15.5 + parent: 1 + type: Transform + - uid: 5694 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,21.5 + parent: 1 + type: Transform + - uid: 5695 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,20.5 + parent: 1 + type: Transform + - uid: 5696 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,23.5 + parent: 1 + type: Transform + - uid: 5697 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,10.5 + parent: 1 + type: Transform + - uid: 5698 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,15.5 + parent: 1 + type: Transform + - uid: 5699 + components: + - pos: -19.5,9.5 + parent: 1 + type: Transform + - uid: 5714 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,17.5 + parent: 1 + type: Transform + - uid: 5715 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,16.5 + parent: 1 + type: Transform + - uid: 5758 + components: + - pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 5761 + components: + - pos: -5.5,12.5 + parent: 1 + type: Transform + - uid: 5762 + components: + - pos: -5.5,13.5 + parent: 1 + type: Transform + - uid: 5767 + components: + - pos: -6.5,17.5 + parent: 1 + type: Transform + - uid: 5769 + components: + - pos: -6.5,19.5 + parent: 1 + type: Transform + - uid: 5771 + components: + - pos: -6.5,21.5 + parent: 1 + type: Transform + - uid: 5772 + components: + - pos: -6.5,22.5 + parent: 1 + type: Transform + - uid: 5774 + components: + - pos: -6.5,24.5 + parent: 1 + type: Transform + - uid: 5775 + components: + - pos: -6.5,25.5 + parent: 1 + type: Transform + - uid: 5778 + components: + - pos: -9.5,25.5 + parent: 1 + type: Transform + - uid: 6292 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,38.5 + parent: 1 + type: Transform + - uid: 7122 + components: + - pos: -48.5,68.5 + parent: 1 + type: Transform + - uid: 7225 + components: + - pos: -55.5,80.5 + parent: 1 + type: Transform + - uid: 7227 + components: + - pos: -54.5,79.5 + parent: 1 + type: Transform + - uid: 7240 + components: + - pos: -53.5,80.5 + parent: 1 + type: Transform + - uid: 7346 + components: + - pos: -52.5,69.5 + parent: 1 + type: Transform + - uid: 7348 + components: + - pos: -52.5,67.5 + parent: 1 + type: Transform + - uid: 7349 + components: + - pos: -50.5,68.5 + parent: 1 + type: Transform + - uid: 7351 + components: + - pos: -50.5,69.5 + parent: 1 + type: Transform + - uid: 7353 + components: + - pos: -51.5,68.5 + parent: 1 + type: Transform + - uid: 7354 + components: + - pos: -50.5,67.5 + parent: 1 + type: Transform + - uid: 7355 + components: + - pos: -49.5,68.5 + parent: 1 + type: Transform + - uid: 7358 + components: + - pos: -48.5,67.5 + parent: 1 + type: Transform + - uid: 7360 + components: + - pos: -47.5,67.5 + parent: 1 + type: Transform + - uid: 7361 + components: + - pos: -46.5,68.5 + parent: 1 + type: Transform + - uid: 7363 + components: + - pos: -50.5,70.5 + parent: 1 + type: Transform + - uid: 7366 + components: + - pos: -50.5,71.5 + parent: 1 + type: Transform + - uid: 7367 + components: + - pos: -52.5,76.5 + parent: 1 + type: Transform + - uid: 7402 + components: + - pos: 15.5,48.5 + parent: 1 + type: Transform + - uid: 7403 + components: + - pos: 15.5,47.5 + parent: 1 + type: Transform + - uid: 7404 + components: + - pos: -50.5,73.5 + parent: 1 + type: Transform + - uid: 7405 + components: + - pos: 15.5,45.5 + parent: 1 + type: Transform + - uid: 7406 + components: + - pos: 15.5,44.5 + parent: 1 + type: Transform + - uid: 7407 + components: + - pos: 15.5,43.5 + parent: 1 + type: Transform + - uid: 7409 + components: + - pos: 15.5,41.5 + parent: 1 + type: Transform + - uid: 7411 + components: + - pos: 15.5,39.5 + parent: 1 + type: Transform + - uid: 7412 + components: + - pos: -50.5,75.5 + parent: 1 + type: Transform + - uid: 7415 + components: + - pos: 15.5,35.5 + parent: 1 + type: Transform + - uid: 7416 + components: + - pos: -50.5,76.5 + parent: 1 + type: Transform + - uid: 7417 + components: + - pos: 17.5,35.5 + parent: 1 + type: Transform + - uid: 7418 + components: + - pos: 18.5,35.5 + parent: 1 + type: Transform + - uid: 7419 + components: + - pos: -50.5,77.5 + parent: 1 + type: Transform + - uid: 7420 + components: + - pos: 20.5,35.5 + parent: 1 + type: Transform + - uid: 7421 + components: + - pos: -52.5,70.5 + parent: 1 + type: Transform + - uid: 7422 + components: + - pos: -52.5,71.5 + parent: 1 + type: Transform + - uid: 7423 + components: + - pos: 23.5,35.5 + parent: 1 + type: Transform + - uid: 7424 + components: + - pos: 23.5,34.5 + parent: 1 + type: Transform + - uid: 7426 + components: + - pos: 23.5,32.5 + parent: 1 + type: Transform + - uid: 7427 + components: + - pos: 23.5,31.5 + parent: 1 + type: Transform + - uid: 7428 + components: + - pos: -52.5,73.5 + parent: 1 + type: Transform + - uid: 7429 + components: + - pos: -52.5,74.5 + parent: 1 + type: Transform + - uid: 7430 + components: + - pos: 23.5,28.5 + parent: 1 + type: Transform + - uid: 7432 + components: + - pos: 23.5,26.5 + parent: 1 + type: Transform + - uid: 7434 + components: + - pos: 23.5,24.5 + parent: 1 + type: Transform + - uid: 7435 + components: + - pos: 23.5,23.5 + parent: 1 + type: Transform + - uid: 7436 + components: + - pos: -52.5,77.5 + parent: 1 + type: Transform + - uid: 7437 + components: + - pos: 14.5,40.5 + parent: 1 + type: Transform + - uid: 7439 + components: + - pos: 12.5,40.5 + parent: 1 + type: Transform + - uid: 7445 + components: + - pos: 7.5,41.5 + parent: 1 + type: Transform + - uid: 7446 + components: + - pos: 7.5,42.5 + parent: 1 + type: Transform + - uid: 7449 + components: + - pos: 7.5,45.5 + parent: 1 + type: Transform + - uid: 7450 + components: + - pos: 7.5,46.5 + parent: 1 + type: Transform + - uid: 7452 + components: + - pos: -53.5,79.5 + parent: 1 + type: Transform + - uid: 7453 + components: + - pos: 13.5,48.5 + parent: 1 + type: Transform + - uid: 7454 + components: + - pos: 12.5,48.5 + parent: 1 + type: Transform + - uid: 7455 + components: + - pos: 11.5,48.5 + parent: 1 + type: Transform + - uid: 7456 + components: + - pos: -52.5,78.5 + parent: 1 + type: Transform + - uid: 7457 + components: + - pos: 9.5,48.5 + parent: 1 + type: Transform + - uid: 7459 + components: + - pos: 7.5,48.5 + parent: 1 + type: Transform + - uid: 7460 + components: + - pos: 6.5,47.5 + parent: 1 + type: Transform + - uid: 7462 + components: + - pos: 4.5,47.5 + parent: 1 + type: Transform + - uid: 7463 + components: + - pos: 3.5,47.5 + parent: 1 + type: Transform + - uid: 7464 + components: + - pos: 2.5,47.5 + parent: 1 + type: Transform + - uid: 7466 + components: + - pos: 0.5,47.5 + parent: 1 + type: Transform + - uid: 7467 + components: + - pos: -51.5,79.5 + parent: 1 + type: Transform + - uid: 7469 + components: + - pos: -2.5,47.5 + parent: 1 + type: Transform + - uid: 7470 + components: + - pos: -3.5,47.5 + parent: 1 + type: Transform + - uid: 7471 + components: + - pos: -50.5,79.5 + parent: 1 + type: Transform + - uid: 7472 + components: + - pos: -5.5,47.5 + parent: 1 + type: Transform + - uid: 7473 + components: + - pos: -50.5,80.5 + parent: 1 + type: Transform + - uid: 7474 + components: + - pos: -7.5,47.5 + parent: 1 + type: Transform + - uid: 7475 + components: + - pos: -7.5,48.5 + parent: 1 + type: Transform + - uid: 7477 + components: + - pos: -7.5,50.5 + parent: 1 + type: Transform + - uid: 7478 + components: + - pos: -52.5,80.5 + parent: 1 + type: Transform + - uid: 7479 + components: + - pos: -10.5,51.5 + parent: 1 + type: Transform + - uid: 7480 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,36.5 + parent: 1 + type: Transform + - uid: 7481 + components: + - pos: -12.5,51.5 + parent: 1 + type: Transform + - uid: 7482 + components: + - pos: -13.5,51.5 + parent: 1 + type: Transform + - uid: 7483 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,49.5 + parent: 1 + type: Transform + - uid: 7484 + components: + - pos: -9.5,51.5 + parent: 1 + type: Transform + - uid: 7485 + components: + - pos: -2.5,46.5 + parent: 1 + type: Transform + - uid: 7486 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,50.5 + parent: 1 + type: Transform + - uid: 7487 + components: + - pos: -2.5,44.5 + parent: 1 + type: Transform + - uid: 7488 + components: + - pos: -2.5,43.5 + parent: 1 + type: Transform + - uid: 7489 + components: + - pos: -2.5,42.5 + parent: 1 + type: Transform + - uid: 7490 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,46.5 + parent: 1 + type: Transform + - uid: 7491 + components: + - pos: -2.5,40.5 + parent: 1 + type: Transform + - uid: 7493 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,54.5 + parent: 1 + type: Transform + - uid: 7494 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,39.5 + parent: 1 + type: Transform + - uid: 7495 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,47.5 + parent: 1 + type: Transform + - uid: 7496 + components: + - pos: -4.5,37.5 + parent: 1 + type: Transform + - uid: 7497 + components: + - pos: -5.5,37.5 + parent: 1 + type: Transform + - uid: 7498 + components: + - pos: -6.5,37.5 + parent: 1 + type: Transform + - uid: 7499 + components: + - pos: -7.5,37.5 + parent: 1 + type: Transform + - uid: 7500 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,46.5 + parent: 1 + type: Transform + - uid: 7501 + components: + - pos: -9.5,37.5 + parent: 1 + type: Transform + - uid: 7502 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,36.5 + parent: 1 + type: Transform + - uid: 7503 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,43.5 + parent: 1 + type: Transform + - uid: 7504 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,34.5 + parent: 1 + type: Transform + - uid: 7505 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,20.5 + parent: 1 + type: Transform + - uid: 7506 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,19.5 + parent: 1 + type: Transform + - uid: 7507 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,34.5 + parent: 1 + type: Transform + - uid: 7508 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,25.5 + parent: 1 + type: Transform + - uid: 7637 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,32.5 + parent: 1 + type: Transform + - uid: 7638 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,36.5 + parent: 1 + type: Transform + - uid: 7639 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,39.5 + parent: 1 + type: Transform + - uid: 7833 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,40.5 + parent: 1 + type: Transform + - uid: 7834 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,39.5 + parent: 1 + type: Transform + - uid: 7835 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,40.5 + parent: 1 + type: Transform + - uid: 7837 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,45.5 + parent: 1 + type: Transform + - uid: 7838 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,46.5 + parent: 1 + type: Transform + - uid: 7839 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,46.5 + parent: 1 + type: Transform + - uid: 7840 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,42.5 + parent: 1 + type: Transform + - uid: 7849 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,48.5 + parent: 1 + type: Transform + - uid: 7918 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,55.5 + parent: 1 + type: Transform + - uid: 8325 + components: + - pos: -86.5,41.5 + parent: 1 + type: Transform + - uid: 8326 + components: + - pos: -86.5,42.5 + parent: 1 + type: Transform + - uid: 8546 + components: + - pos: -86.5,43.5 + parent: 1 + type: Transform + - uid: 8547 + components: + - pos: -86.5,44.5 + parent: 1 + type: Transform + - uid: 8577 + components: + - pos: -86.5,45.5 + parent: 1 + type: Transform + - uid: 8616 + components: + - pos: -86.5,40.5 + parent: 1 + type: Transform + - uid: 8617 + components: + - pos: -86.5,39.5 + parent: 1 + type: Transform + - uid: 9911 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-17.5 + parent: 1 + type: Transform + - uid: 10146 + components: + - pos: -70.5,31.5 + parent: 1 + type: Transform + - uid: 10176 + components: + - pos: -71.5,31.5 + parent: 1 + type: Transform + - uid: 10226 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,53.5 + parent: 1 + type: Transform + - uid: 10247 + components: + - rot: -1.5707963267948966 rad + pos: -70.5,28.5 + parent: 1 + type: Transform + - uid: 10248 + components: + - rot: -1.5707963267948966 rad + pos: -70.5,29.5 + parent: 1 + type: Transform + - uid: 10250 + components: + - rot: -1.5707963267948966 rad + pos: -70.5,30.5 + parent: 1 + type: Transform + - uid: 10255 + components: + - rot: -1.5707963267948966 rad + pos: -71.5,28.5 + parent: 1 + type: Transform + - uid: 10257 + components: + - rot: -1.5707963267948966 rad + pos: -71.5,29.5 + parent: 1 + type: Transform + - uid: 10259 + components: + - rot: -1.5707963267948966 rad + pos: -71.5,30.5 + parent: 1 + type: Transform + - uid: 10267 + components: + - rot: -1.5707963267948966 rad + pos: -87.5,20.5 + parent: 1 + type: Transform + - uid: 10268 + components: + - rot: -1.5707963267948966 rad + pos: -87.5,21.5 + parent: 1 + type: Transform + - uid: 10270 + components: + - rot: -1.5707963267948966 rad + pos: -87.5,22.5 + parent: 1 + type: Transform + - uid: 10272 + components: + - rot: -1.5707963267948966 rad + pos: -87.5,23.5 + parent: 1 + type: Transform + - uid: 10273 + components: + - rot: -1.5707963267948966 rad + pos: -87.5,24.5 + parent: 1 + type: Transform + - uid: 10274 + components: + - rot: -1.5707963267948966 rad + pos: -87.5,25.5 + parent: 1 + type: Transform + - uid: 10275 + components: + - rot: -1.5707963267948966 rad + pos: -87.5,26.5 + parent: 1 + type: Transform + - uid: 10276 + components: + - rot: -1.5707963267948966 rad + pos: -87.5,27.5 + parent: 1 + type: Transform + - uid: 10279 + components: + - rot: -1.5707963267948966 rad + pos: -87.5,28.5 + parent: 1 + type: Transform + - uid: 10281 + components: + - rot: -1.5707963267948966 rad + pos: -87.5,29.5 + parent: 1 + type: Transform + - uid: 10282 + components: + - rot: -1.5707963267948966 rad + pos: -87.5,30.5 + parent: 1 + type: Transform + - uid: 10283 + components: + - rot: -1.5707963267948966 rad + pos: -88.5,20.5 + parent: 1 + type: Transform + - uid: 10284 + components: + - rot: -1.5707963267948966 rad + pos: -88.5,21.5 + parent: 1 + type: Transform + - uid: 10286 + components: + - rot: -1.5707963267948966 rad + pos: -88.5,22.5 + parent: 1 + type: Transform + - uid: 10287 + components: + - rot: -1.5707963267948966 rad + pos: -88.5,23.5 + parent: 1 + type: Transform + - uid: 10289 + components: + - rot: -1.5707963267948966 rad + pos: -88.5,24.5 + parent: 1 + type: Transform + - uid: 10290 + components: + - rot: -1.5707963267948966 rad + pos: -88.5,25.5 + parent: 1 + type: Transform + - uid: 10291 + components: + - rot: -1.5707963267948966 rad + pos: -88.5,26.5 + parent: 1 + type: Transform + - uid: 10293 + components: + - rot: -1.5707963267948966 rad + pos: -88.5,27.5 + parent: 1 + type: Transform + - uid: 10294 + components: + - rot: -1.5707963267948966 rad + pos: -88.5,28.5 + parent: 1 + type: Transform + - uid: 10296 + components: + - rot: -1.5707963267948966 rad + pos: -88.5,29.5 + parent: 1 + type: Transform + - uid: 10297 + components: + - rot: -1.5707963267948966 rad + pos: -88.5,30.5 + parent: 1 + type: Transform + - uid: 10299 + components: + - rot: -1.5707963267948966 rad + pos: -100.5,32.5 + parent: 1 + type: Transform + - uid: 10300 + components: + - rot: -1.5707963267948966 rad + pos: -100.5,31.5 + parent: 1 + type: Transform + - uid: 10301 + components: + - rot: -1.5707963267948966 rad + pos: -99.5,32.5 + parent: 1 + type: Transform + - uid: 10303 + components: + - rot: -1.5707963267948966 rad + pos: -99.5,31.5 + parent: 1 + type: Transform + - uid: 10304 + components: + - rot: -1.5707963267948966 rad + pos: -98.5,32.5 + parent: 1 + type: Transform + - uid: 10305 + components: + - rot: -1.5707963267948966 rad + pos: -98.5,31.5 + parent: 1 + type: Transform + - uid: 10307 + components: + - rot: -1.5707963267948966 rad + pos: -96.5,32.5 + parent: 1 + type: Transform + - uid: 10309 + components: + - rot: -1.5707963267948966 rad + pos: -96.5,31.5 + parent: 1 + type: Transform + - uid: 10310 + components: + - rot: -1.5707963267948966 rad + pos: -95.5,32.5 + parent: 1 + type: Transform + - uid: 10311 + components: + - rot: -1.5707963267948966 rad + pos: -95.5,31.5 + parent: 1 + type: Transform + - uid: 10313 + components: + - rot: -1.5707963267948966 rad + pos: -94.5,32.5 + parent: 1 + type: Transform + - uid: 10314 + components: + - rot: -1.5707963267948966 rad + pos: -94.5,31.5 + parent: 1 + type: Transform + - uid: 10319 + components: + - pos: -41.5,55.5 + parent: 1 + type: Transform + - uid: 10321 + components: + - pos: -39.5,55.5 + parent: 1 + type: Transform + - uid: 10322 + components: + - pos: -38.5,55.5 + parent: 1 + type: Transform + - uid: 10323 + components: + - pos: -37.5,55.5 + parent: 1 + type: Transform + - uid: 10324 + components: + - rot: -1.5707963267948966 rad + pos: -93.5,22.5 + parent: 1 + type: Transform + - uid: 10325 + components: + - pos: -35.5,55.5 + parent: 1 + type: Transform + - uid: 10326 + components: + - rot: -1.5707963267948966 rad + pos: -93.5,23.5 + parent: 1 + type: Transform + - uid: 10327 + components: + - pos: -33.5,55.5 + parent: 1 + type: Transform + - uid: 10328 + components: + - pos: -32.5,55.5 + parent: 1 + type: Transform + - uid: 10329 + components: + - pos: -32.5,54.5 + parent: 1 + type: Transform + - uid: 10330 + components: + - rot: -1.5707963267948966 rad + pos: -93.5,24.5 + parent: 1 + type: Transform + - uid: 10331 + components: + - pos: -32.5,52.5 + parent: 1 + type: Transform + - uid: 10332 + components: + - pos: -32.5,51.5 + parent: 1 + type: Transform + - uid: 10333 + components: + - pos: -32.5,50.5 + parent: 1 + type: Transform + - uid: 10334 + components: + - pos: -31.5,50.5 + parent: 1 + type: Transform + - uid: 10335 + components: + - rot: -1.5707963267948966 rad + pos: -93.5,25.5 + parent: 1 + type: Transform + - uid: 10336 + components: + - pos: -29.5,50.5 + parent: 1 + type: Transform + - uid: 10338 + components: + - pos: -27.5,50.5 + parent: 1 + type: Transform + - uid: 10339 + components: + - pos: -26.5,50.5 + parent: 1 + type: Transform + - uid: 10340 + components: + - pos: -25.5,50.5 + parent: 1 + type: Transform + - uid: 10341 + components: + - rot: -1.5707963267948966 rad + pos: -93.5,26.5 + parent: 1 + type: Transform + - uid: 10342 + components: + - pos: -24.5,51.5 + parent: 1 + type: Transform + - uid: 10345 + components: + - pos: -21.5,51.5 + parent: 1 + type: Transform + - uid: 10346 + components: + - pos: -20.5,51.5 + parent: 1 + type: Transform + - uid: 10348 + components: + - pos: -24.5,49.5 + parent: 1 + type: Transform + - uid: 10350 + components: + - pos: -24.5,47.5 + parent: 1 + type: Transform + - uid: 10351 + components: + - pos: -24.5,46.5 + parent: 1 + type: Transform + - uid: 10353 + components: + - pos: -24.5,44.5 + parent: 1 + type: Transform + - uid: 10355 + components: + - pos: -24.5,42.5 + parent: 1 + type: Transform + - uid: 10356 + components: + - pos: -24.5,41.5 + parent: 1 + type: Transform + - uid: 10359 + components: + - pos: -24.5,38.5 + parent: 1 + type: Transform + - uid: 10360 + components: + - pos: -24.5,37.5 + parent: 1 + type: Transform + - uid: 10464 + components: + - rot: -1.5707963267948966 rad + pos: -93.5,27.5 + parent: 1 + type: Transform + - uid: 10465 + components: + - rot: -1.5707963267948966 rad + pos: -93.5,28.5 + parent: 1 + type: Transform + - uid: 10477 + components: + - rot: -1.5707963267948966 rad + pos: -94.5,29.5 + parent: 1 + type: Transform + - uid: 10478 + components: + - rot: -1.5707963267948966 rad + pos: -95.5,29.5 + parent: 1 + type: Transform + - uid: 10479 + components: + - rot: -1.5707963267948966 rad + pos: -96.5,29.5 + parent: 1 + type: Transform + - uid: 10480 + components: + - rot: -1.5707963267948966 rad + pos: -97.5,29.5 + parent: 1 + type: Transform + - uid: 10481 + components: + - rot: -1.5707963267948966 rad + pos: -98.5,29.5 + parent: 1 + type: Transform + - uid: 10482 + components: + - rot: -1.5707963267948966 rad + pos: -99.5,29.5 + parent: 1 + type: Transform + - uid: 10483 + components: + - rot: -1.5707963267948966 rad + pos: -100.5,29.5 + parent: 1 + type: Transform + - uid: 10484 + components: + - rot: -1.5707963267948966 rad + pos: -101.5,28.5 + parent: 1 + type: Transform + - uid: 10485 + components: + - rot: -1.5707963267948966 rad + pos: -101.5,27.5 + parent: 1 + type: Transform + - uid: 10486 + components: + - rot: -1.5707963267948966 rad + pos: -101.5,26.5 + parent: 1 + type: Transform + - uid: 10487 + components: + - rot: -1.5707963267948966 rad + pos: -101.5,25.5 + parent: 1 + type: Transform + - uid: 10488 + components: + - rot: -1.5707963267948966 rad + pos: -101.5,24.5 + parent: 1 + type: Transform + - uid: 10489 + components: + - rot: -1.5707963267948966 rad + pos: -101.5,23.5 + parent: 1 + type: Transform + - uid: 10490 + components: + - rot: -1.5707963267948966 rad + pos: -101.5,22.5 + parent: 1 + type: Transform + - uid: 10491 + components: + - rot: -1.5707963267948966 rad + pos: -100.5,21.5 + parent: 1 + type: Transform + - uid: 10492 + components: + - rot: -1.5707963267948966 rad + pos: -99.5,21.5 + parent: 1 + type: Transform + - uid: 10493 + components: + - rot: -1.5707963267948966 rad + pos: -98.5,21.5 + parent: 1 + type: Transform + - uid: 10494 + components: + - rot: -1.5707963267948966 rad + pos: -97.5,21.5 + parent: 1 + type: Transform + - uid: 10495 + components: + - rot: -1.5707963267948966 rad + pos: -96.5,21.5 + parent: 1 + type: Transform + - uid: 10496 + components: + - rot: -1.5707963267948966 rad + pos: -95.5,21.5 + parent: 1 + type: Transform + - uid: 10497 + components: + - rot: -1.5707963267948966 rad + pos: -94.5,21.5 + parent: 1 + type: Transform + - uid: 10499 + components: + - rot: -1.5707963267948966 rad + pos: -100.5,18.5 + parent: 1 + type: Transform + - uid: 10500 + components: + - rot: -1.5707963267948966 rad + pos: -99.5,19.5 + parent: 1 + type: Transform + - uid: 10501 + components: + - rot: -1.5707963267948966 rad + pos: -99.5,18.5 + parent: 1 + type: Transform + - uid: 10502 + components: + - rot: -1.5707963267948966 rad + pos: -98.5,19.5 + parent: 1 + type: Transform + - uid: 10503 + components: + - rot: -1.5707963267948966 rad + pos: -98.5,18.5 + parent: 1 + type: Transform + - uid: 10504 + components: + - rot: -1.5707963267948966 rad + pos: -96.5,19.5 + parent: 1 + type: Transform + - uid: 10505 + components: + - rot: -1.5707963267948966 rad + pos: -96.5,18.5 + parent: 1 + type: Transform + - uid: 10506 + components: + - rot: -1.5707963267948966 rad + pos: -95.5,19.5 + parent: 1 + type: Transform + - uid: 10507 + components: + - rot: -1.5707963267948966 rad + pos: -95.5,18.5 + parent: 1 + type: Transform + - uid: 10508 + components: + - rot: -1.5707963267948966 rad + pos: -94.5,19.5 + parent: 1 + type: Transform + - uid: 10509 + components: + - rot: -1.5707963267948966 rad + pos: -94.5,18.5 + parent: 1 + type: Transform + - uid: 10510 + components: + - rot: -1.5707963267948966 rad + pos: -105.5,30.5 + parent: 1 + type: Transform + - uid: 10511 + components: + - rot: -1.5707963267948966 rad + pos: -105.5,30.5 + parent: 1 + type: Transform + - uid: 10512 + components: + - rot: -1.5707963267948966 rad + pos: -105.5,29.5 + parent: 1 + type: Transform + - uid: 10513 + components: + - rot: -1.5707963267948966 rad + pos: -105.5,28.5 + parent: 1 + type: Transform + - uid: 10514 + components: + - rot: -1.5707963267948966 rad + pos: -105.5,27.5 + parent: 1 + type: Transform + - uid: 10515 + components: + - rot: -1.5707963267948966 rad + pos: -105.5,26.5 + parent: 1 + type: Transform + - uid: 10516 + components: + - rot: -1.5707963267948966 rad + pos: -105.5,25.5 + parent: 1 + type: Transform + - uid: 10517 + components: + - rot: -1.5707963267948966 rad + pos: -105.5,24.5 + parent: 1 + type: Transform + - uid: 10518 + components: + - rot: -1.5707963267948966 rad + pos: -105.5,23.5 + parent: 1 + type: Transform + - uid: 10519 + components: + - rot: -1.5707963267948966 rad + pos: -105.5,22.5 + parent: 1 + type: Transform + - uid: 10520 + components: + - rot: -1.5707963267948966 rad + pos: -105.5,21.5 + parent: 1 + type: Transform + - uid: 10521 + components: + - rot: -1.5707963267948966 rad + pos: -105.5,20.5 + parent: 1 + type: Transform + - uid: 10580 + components: + - rot: -1.5707963267948966 rad + pos: -100.5,19.5 + parent: 1 + type: Transform + - uid: 12804 + components: + - pos: -2.5,12.5 + parent: 1 + type: Transform + - uid: 12805 + components: + - pos: -3.5,13.5 + parent: 1 + type: Transform + - uid: 12806 + components: + - pos: -0.5,12.5 + parent: 1 + type: Transform + - uid: 12807 + components: + - pos: 3.5,12.5 + parent: 1 + type: Transform + - uid: 12808 + components: + - pos: 4.5,11.5 + parent: 1 + type: Transform + - uid: 12809 + components: + - pos: 4.5,10.5 + parent: 1 + type: Transform + - uid: 12810 + components: + - pos: 3.5,9.5 + parent: 1 + type: Transform + - uid: 12811 + components: + - pos: 6.5,8.5 + parent: 1 + type: Transform + - uid: 12812 + components: + - pos: 10.5,9.5 + parent: 1 + type: Transform + - uid: 12813 + components: + - pos: 12.5,9.5 + parent: 1 + type: Transform + - uid: 12814 + components: + - pos: 12.5,8.5 + parent: 1 + type: Transform + - uid: 12815 + components: + - pos: 8.5,9.5 + parent: 1 + type: Transform + - uid: 12816 + components: + - pos: 7.5,8.5 + parent: 1 + type: Transform + - uid: 12817 + components: + - pos: 14.5,9.5 + parent: 1 + type: Transform + - uid: 12818 + components: + - pos: 13.5,12.5 + parent: 1 + type: Transform + - uid: 12819 + components: + - pos: 13.5,13.5 + parent: 1 + type: Transform + - uid: 12820 + components: + - pos: 13.5,15.5 + parent: 1 + type: Transform + - uid: 12821 + components: + - pos: 14.5,17.5 + parent: 1 + type: Transform + - uid: 12822 + components: + - pos: 14.5,18.5 + parent: 1 + type: Transform + - uid: 12823 + components: + - pos: 13.5,21.5 + parent: 1 + type: Transform + - uid: 12824 + components: + - pos: 12.5,22.5 + parent: 1 + type: Transform + - uid: 12825 + components: + - pos: 15.5,23.5 + parent: 1 + type: Transform + - uid: 12826 + components: + - pos: 14.5,25.5 + parent: 1 + type: Transform + - uid: 12827 + components: + - pos: 15.5,26.5 + parent: 1 + type: Transform + - uid: 12828 + components: + - pos: 17.5,25.5 + parent: 1 + type: Transform + - uid: 12829 + components: + - pos: 14.5,24.5 + parent: 1 + type: Transform + - uid: 12830 + components: + - pos: 15.5,24.5 + parent: 1 + type: Transform + - uid: 12831 + components: + - pos: 18.5,26.5 + parent: 1 + type: Transform + - uid: 12832 + components: + - pos: 20.5,25.5 + parent: 1 + type: Transform + - uid: 12833 + components: + - pos: 21.5,26.5 + parent: 1 + type: Transform + - uid: 13917 + components: + - pos: -3.5,-20.5 + parent: 1 + type: Transform + - uid: 14250 + components: + - pos: -67.5,50.5 + parent: 1 + type: Transform + - uid: 14251 + components: + - pos: -67.5,54.5 + parent: 1 + type: Transform + - uid: 14252 + components: + - pos: -67.5,56.5 + parent: 1 + type: Transform + - uid: 14253 + components: + - pos: -66.5,57.5 + parent: 1 + type: Transform + - uid: 14254 + components: + - pos: -75.5,52.5 + parent: 1 + type: Transform + - uid: 14255 + components: + - pos: -75.5,50.5 + parent: 1 + type: Transform + - uid: 14256 + components: + - pos: -74.5,47.5 + parent: 1 + type: Transform + - uid: 14257 + components: + - pos: -74.5,46.5 + parent: 1 + type: Transform + - uid: 14258 + components: + - pos: -75.5,45.5 + parent: 1 + type: Transform + - uid: 14259 + components: + - pos: -75.5,42.5 + parent: 1 + type: Transform + - uid: 14260 + components: + - pos: -74.5,41.5 + parent: 1 + type: Transform + - uid: 14261 + components: + - pos: -75.5,43.5 + parent: 1 + type: Transform + - uid: 14262 + components: + - pos: -74.5,44.5 + parent: 1 + type: Transform + - uid: 14263 + components: + - pos: -75.5,40.5 + parent: 1 + type: Transform + - uid: 14264 + components: + - pos: -75.5,38.5 + parent: 1 + type: Transform + - uid: 14265 + components: + - pos: -74.5,38.5 + parent: 1 + type: Transform + - uid: 14266 + components: + - pos: -71.5,37.5 + parent: 1 + type: Transform + - uid: 14267 + components: + - pos: -67.5,37.5 + parent: 1 + type: Transform + - uid: 14268 + components: + - pos: -67.5,36.5 + parent: 1 + type: Transform + - uid: 14269 + components: + - pos: -65.5,36.5 + parent: 1 + type: Transform + - uid: 14270 + components: + - pos: -61.5,35.5 + parent: 1 + type: Transform + - uid: 14271 + components: + - pos: -66.5,40.5 + parent: 1 + type: Transform + - uid: 14272 + components: + - pos: -67.5,41.5 + parent: 1 + type: Transform + - uid: 14273 + components: + - pos: -66.5,42.5 + parent: 1 + type: Transform + - uid: 14274 + components: + - pos: -67.5,43.5 + parent: 1 + type: Transform + - uid: 14275 + components: + - pos: -67.5,44.5 + parent: 1 + type: Transform + - uid: 14276 + components: + - pos: -63.5,47.5 + parent: 1 + type: Transform + - uid: 14277 + components: + - pos: -62.5,47.5 + parent: 1 + type: Transform + - uid: 14278 + components: + - pos: -61.5,48.5 + parent: 1 + type: Transform + - uid: 14559 + components: + - pos: -67.5,13.5 + parent: 1 + type: Transform + - uid: 14560 + components: + - pos: -66.5,12.5 + parent: 1 + type: Transform + - uid: 14562 + components: + - pos: -65.5,17.5 + parent: 1 + type: Transform + - uid: 14563 + components: + - pos: -62.5,16.5 + parent: 1 + type: Transform + - uid: 14564 + components: + - pos: -61.5,17.5 + parent: 1 + type: Transform + - uid: 14565 + components: + - pos: -60.5,21.5 + parent: 1 + type: Transform + - uid: 14566 + components: + - pos: -60.5,19.5 + parent: 1 + type: Transform + - uid: 14567 + components: + - pos: -61.5,23.5 + parent: 1 + type: Transform + - uid: 14568 + components: + - pos: -60.5,25.5 + parent: 1 + type: Transform + - uid: 14569 + components: + - pos: -60.5,27.5 + parent: 1 + type: Transform + - uid: 14570 + components: + - pos: -60.5,26.5 + parent: 1 + type: Transform + - uid: 14571 + components: + - pos: -61.5,29.5 + parent: 1 + type: Transform + - uid: 14572 + components: + - pos: -61.5,21.5 + parent: 1 + type: Transform + - uid: 14573 + components: + - pos: -64.5,17.5 + parent: 1 + type: Transform + - uid: 14574 + components: + - pos: -44.5,53.5 + parent: 1 + type: Transform + - uid: 14575 + components: + - pos: -44.5,51.5 + parent: 1 + type: Transform + - uid: 14576 + components: + - pos: -44.5,50.5 + parent: 1 + type: Transform + - uid: 15146 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,45.5 + parent: 1 + type: Transform + - uid: 15225 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,37.5 + parent: 1 + type: Transform + - uid: 15227 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,43.5 + parent: 1 + type: Transform + - uid: 15228 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,42.5 + parent: 1 + type: Transform + - uid: 15229 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,42.5 + parent: 1 + type: Transform + - uid: 15230 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,44.5 + parent: 1 + type: Transform + - uid: 15454 + components: + - pos: -37.5,61.5 + parent: 1 + type: Transform + - uid: 15455 + components: + - pos: -42.5,68.5 + parent: 1 + type: Transform + - uid: 15458 + components: + - pos: -38.5,64.5 + parent: 1 + type: Transform + - uid: 15459 + components: + - pos: -37.5,67.5 + parent: 1 + type: Transform + - uid: 15460 + components: + - pos: -38.5,58.5 + parent: 1 + type: Transform + - uid: 15461 + components: + - pos: -44.5,57.5 + parent: 1 + type: Transform + - uid: 15472 + components: + - pos: -42.5,58.5 + parent: 1 + type: Transform + - uid: 15473 + components: + - pos: -40.5,57.5 + parent: 1 + type: Transform + - uid: 15474 + components: + - pos: -39.5,58.5 + parent: 1 + type: Transform + - uid: 15478 + components: + - pos: -43.5,58.5 + parent: 1 + type: Transform + - uid: 15480 + components: + - pos: -41.5,57.5 + parent: 1 + type: Transform + - uid: 15481 + components: + - pos: -39.5,57.5 + parent: 1 + type: Transform + - uid: 15482 + components: + - pos: -41.5,58.5 + parent: 1 + type: Transform + - uid: 15483 + components: + - pos: -43.5,57.5 + parent: 1 + type: Transform + - uid: 15487 + components: + - pos: -39.5,68.5 + parent: 1 + type: Transform + - uid: 15491 + components: + - pos: -38.5,57.5 + parent: 1 + type: Transform + - uid: 15492 + components: + - pos: -37.5,58.5 + parent: 1 + type: Transform + - uid: 15493 + components: + - pos: -37.5,59.5 + parent: 1 + type: Transform + - uid: 15495 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-18.5 + parent: 1 + type: Transform + - uid: 15501 + components: + - pos: -5.5,-19.5 + parent: 1 + type: Transform + - uid: 15505 + components: + - pos: -1.5,-20.5 + parent: 1 + type: Transform + - uid: 15506 + components: + - pos: -0.5,-20.5 + parent: 1 + type: Transform + - uid: 15507 + components: + - pos: 1.5,-20.5 + parent: 1 + type: Transform + - uid: 15508 + components: + - pos: 3.5,-20.5 + parent: 1 + type: Transform + - uid: 15509 + components: + - pos: 5.5,-20.5 + parent: 1 + type: Transform + - uid: 15520 + components: + - pos: -5.5,-20.5 + parent: 1 + type: Transform + - uid: 15521 + components: + - pos: -4.5,-20.5 + parent: 1 + type: Transform + - uid: 15522 + components: + - pos: -2.5,-20.5 + parent: 1 + type: Transform + - uid: 15523 + components: + - pos: 0.5,-20.5 + parent: 1 + type: Transform + - uid: 15524 + components: + - pos: 2.5,-20.5 + parent: 1 + type: Transform + - uid: 15525 + components: + - pos: 4.5,-20.5 + parent: 1 + type: Transform + - uid: 15526 + components: + - pos: 6.5,-20.5 + parent: 1 + type: Transform + - uid: 15551 + components: + - pos: 8.5,-18.5 + parent: 1 + type: Transform + - uid: 15552 + components: + - pos: 8.5,-19.5 + parent: 1 + type: Transform + - uid: 15553 + components: + - pos: 9.5,-18.5 + parent: 1 + type: Transform + - uid: 15554 + components: + - pos: 9.5,-19.5 + parent: 1 + type: Transform + - uid: 15555 + components: + - pos: 10.5,-18.5 + parent: 1 + type: Transform + - uid: 15556 + components: + - pos: 10.5,-19.5 + parent: 1 + type: Transform + - uid: 15816 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-20.5 + parent: 1 + type: Transform + - uid: 15879 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-20.5 + parent: 1 + type: Transform + - uid: 15880 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-18.5 + parent: 1 + type: Transform + - uid: 15881 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-17.5 + parent: 1 + type: Transform + - uid: 15882 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-18.5 + parent: 1 + type: Transform + - uid: 15883 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-19.5 + parent: 1 + type: Transform + - uid: 15884 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-17.5 + parent: 1 + type: Transform + - uid: 15885 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-17.5 + parent: 1 + type: Transform + - uid: 15886 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-17.5 + parent: 1 + type: Transform + - uid: 15887 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-20.5 + parent: 1 + type: Transform + - uid: 15889 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-17.5 + parent: 1 + type: Transform + - uid: 15893 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-20.5 + parent: 1 + type: Transform + - uid: 15897 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-19.5 + parent: 1 + type: Transform + - uid: 15902 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-17.5 + parent: 1 + type: Transform + - uid: 15903 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-18.5 + parent: 1 + type: Transform + - uid: 15904 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-19.5 + parent: 1 + type: Transform + - uid: 15905 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-20.5 + parent: 1 + type: Transform + - uid: 15907 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-20.5 + parent: 1 + type: Transform +- proto: Chair + entities: + - uid: 169 + components: + - pos: -51.5,49.5 + parent: 1 + type: Transform + - uid: 913 + components: + - pos: 28.5,-0.5 + parent: 1 + type: Transform + - uid: 1529 + components: + - pos: -17.5,-3.5 + parent: 1 + type: Transform + - uid: 1530 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-4.5 + parent: 1 + type: Transform + - uid: 1902 + components: + - rot: 3.141592653589793 rad + pos: -51.5,47.5 + parent: 1 + type: Transform + - uid: 2070 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,42.5 + parent: 1 + type: Transform + - uid: 2639 + components: + - pos: -9.5,29.5 + parent: 1 + type: Transform + - uid: 2979 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,21.5 + parent: 1 + type: Transform + - uid: 2980 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,20.5 + parent: 1 + type: Transform + - uid: 2981 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,19.5 + parent: 1 + type: Transform + - uid: 2982 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,17.5 + parent: 1 + type: Transform + - uid: 2983 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,15.5 + parent: 1 + type: Transform + - uid: 2984 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,14.5 + parent: 1 + type: Transform + - uid: 2985 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,13.5 + parent: 1 + type: Transform + - uid: 2986 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,12.5 + parent: 1 + type: Transform + - uid: 2987 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,11.5 + parent: 1 + type: Transform + - uid: 2988 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,9.5 + parent: 1 + type: Transform + - uid: 3649 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,3.5 + parent: 1 + type: Transform + - uid: 3650 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,2.5 + parent: 1 + type: Transform + - uid: 3651 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,1.5 + parent: 1 + type: Transform + - uid: 3652 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,0.5 + parent: 1 + type: Transform + - uid: 3729 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-4.5 + parent: 1 + type: Transform + - uid: 4141 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,28.5 + parent: 1 + type: Transform + - uid: 4142 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,28.5 + parent: 1 + type: Transform + - uid: 4143 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,28.5 + parent: 1 + type: Transform + - uid: 4144 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,28.5 + parent: 1 + type: Transform + - uid: 4145 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,27.5 + parent: 1 + type: Transform + - uid: 4146 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,27.5 + parent: 1 + type: Transform + - uid: 4147 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,27.5 + parent: 1 + type: Transform + - uid: 4148 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,25.5 + parent: 1 + type: Transform + - uid: 4149 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,25.5 + parent: 1 + type: Transform + - uid: 4150 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,25.5 + parent: 1 + type: Transform + - uid: 4151 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,24.5 + parent: 1 + type: Transform + - uid: 4152 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,24.5 + parent: 1 + type: Transform + - uid: 4153 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,24.5 + parent: 1 + type: Transform + - uid: 4154 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,24.5 + parent: 1 + type: Transform + - uid: 4155 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,26.5 + parent: 1 + type: Transform + - uid: 4156 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,26.5 + parent: 1 + type: Transform + - uid: 4157 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,26.5 + parent: 1 + type: Transform + - uid: 4158 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,26.5 + parent: 1 + type: Transform + - uid: 5266 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,13.5 + parent: 1 + type: Transform + - uid: 5267 + components: + - pos: -53.5,14.5 + parent: 1 + type: Transform + - uid: 5409 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-8.5 + parent: 1 + type: Transform + - uid: 5680 + components: + - rot: 3.141592653589793 rad + pos: -31.5,12.5 + parent: 1 + type: Transform + - uid: 5719 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,14.5 + parent: 1 + type: Transform + - uid: 7303 + components: + - rot: -1.5707963267948966 rad + pos: -60.5,88.5 + parent: 1 + type: Transform + - uid: 7313 + components: + - rot: 3.141592653589793 rad + pos: -59.5,88.5 + parent: 1 + type: Transform + - uid: 7538 + components: + - rot: 3.141592653589793 rad + pos: -22.5,45.5 + parent: 1 + type: Transform + - uid: 7540 + components: + - rot: 3.141592653589793 rad + pos: -21.5,45.5 + parent: 1 + type: Transform + - uid: 7642 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,82.5 + parent: 1 + type: Transform + - uid: 7643 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,88.5 + parent: 1 + type: Transform + - uid: 7909 + components: + - pos: -47.5,60.5 + parent: 1 + type: Transform + - uid: 7911 + components: + - pos: -48.5,60.5 + parent: 1 + type: Transform + - uid: 7982 + components: + - rot: -1.5707963267948966 rad + pos: -59.5,58.5 + parent: 1 + type: Transform + - uid: 7983 + components: + - rot: 1.5707963267948966 rad + pos: -61.5,58.5 + parent: 1 + type: Transform + - uid: 9223 + components: + - pos: -63.5,42.5 + parent: 1 + type: Transform + - uid: 9776 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,35.5 + parent: 1 + type: Transform + - uid: 10100 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,41.5 + parent: 1 + type: Transform + - uid: 10883 + components: + - rot: 3.141592653589793 rad + pos: -9.5,54.5 + parent: 1 + type: Transform + - uid: 12795 + components: + - rot: 3.141592653589793 rad + pos: 15.5,30.5 + parent: 1 + type: Transform + - uid: 12906 + components: + - rot: 3.141592653589793 rad + pos: 12.5,8.5 + parent: 1 + type: Transform + - uid: 13837 + components: + - rot: 3.141592653589793 rad + pos: -43.5,54.5 + parent: 1 + type: Transform + - uid: 14242 + components: + - rot: 3.141592653589793 rad + pos: -69.5,51.5 + parent: 1 + type: Transform + - uid: 14247 + components: + - rot: -1.5707963267948966 rad + pos: -66.5,43.5 + parent: 1 + type: Transform + - uid: 14248 + components: + - pos: -63.5,48.5 + parent: 1 + type: Transform + - uid: 14289 + components: + - rot: 3.141592653589793 rad + pos: -70.5,48.5 + parent: 1 + type: Transform + - uid: 14587 + components: + - rot: 1.5707963267948966 rad + pos: -61.5,24.5 + parent: 1 + type: Transform + - uid: 14592 + components: + - rot: 1.5707963267948966 rad + pos: -67.5,11.5 + parent: 1 + type: Transform + - uid: 15057 + components: + - pos: -3.5,34.5 + parent: 1 + type: Transform + - uid: 15058 + components: + - pos: -2.5,34.5 + parent: 1 + type: Transform + - uid: 15059 + components: + - rot: 3.141592653589793 rad + pos: -2.5,29.5 + parent: 1 + type: Transform + - uid: 15060 + components: + - rot: 3.141592653589793 rad + pos: -1.5,29.5 + parent: 1 + type: Transform +- proto: ChairCursed + entities: + - uid: 9773 + components: + - rot: 3.141592653589793 rad + pos: -44.5,35.5 + parent: 1 + type: Transform + - uid: 9778 + components: + - rot: 3.141592653589793 rad + pos: -36.5,36.5 + parent: 1 + type: Transform +- proto: ChairFolding + entities: + - uid: 281 + components: + - pos: -14.5,-13.5 + parent: 1 + type: Transform + - uid: 286 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-13.5 + parent: 1 + type: Transform + - uid: 343 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-11.5 + parent: 1 + type: Transform + - uid: 344 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-11.5 + parent: 1 + type: Transform + - uid: 593 + components: + - rot: 3.141592653589793 rad + pos: -54.5,47.5 + parent: 1 + type: Transform + - uid: 1532 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-5.5 + parent: 1 + type: Transform + - uid: 1817 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-0.5 + parent: 1 + type: Transform + - uid: 1818 + components: + - rot: 3.141592653589793 rad + pos: 14.5,0.5 + parent: 1 + type: Transform + - uid: 1819 + components: + - rot: 3.141592653589793 rad + pos: 14.5,1.5 + parent: 1 + type: Transform + - uid: 1820 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-2.5 + parent: 1 + type: Transform + - uid: 1821 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-0.5 + parent: 1 + type: Transform + - uid: 1822 + components: + - rot: 3.141592653589793 rad + pos: 16.5,0.5 + parent: 1 + type: Transform + - uid: 1823 + components: + - rot: 3.141592653589793 rad + pos: 16.5,1.5 + parent: 1 + type: Transform + - uid: 1824 + components: + - rot: 3.141592653589793 rad + pos: 13.5,0.5 + parent: 1 + type: Transform + - uid: 1825 + components: + - rot: 3.141592653589793 rad + pos: 13.5,1.5 + parent: 1 + type: Transform + - uid: 1826 + components: + - rot: 3.141592653589793 rad + pos: 17.5,0.5 + parent: 1 + type: Transform + - uid: 1827 + components: + - rot: 3.141592653589793 rad + pos: 17.5,1.5 + parent: 1 + type: Transform + - uid: 2268 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,19.5 + parent: 1 + type: Transform + - uid: 2285 + components: + - pos: 17.5,20.5 + parent: 1 + type: Transform + - uid: 2286 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,19.5 + parent: 1 + type: Transform + - uid: 2287 + components: + - rot: 3.141592653589793 rad + pos: 17.5,18.5 + parent: 1 + type: Transform + - uid: 2502 + components: + - pos: 16.5,13.5 + parent: 1 + type: Transform + - uid: 2503 + components: + - pos: 17.5,13.5 + parent: 1 + type: Transform + - uid: 2504 + components: + - pos: 18.5,13.5 + parent: 1 + type: Transform + - uid: 2505 + components: + - rot: 3.141592653589793 rad + pos: 16.5,10.5 + parent: 1 + type: Transform + - uid: 2506 + components: + - pos: 17.5,9.5 + parent: 1 + type: Transform + - uid: 2507 + components: + - rot: 3.141592653589793 rad + pos: 18.5,10.5 + parent: 1 + type: Transform + - uid: 2641 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,28.5 + parent: 1 + type: Transform + - uid: 2804 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,14.5 + parent: 1 + type: Transform + - uid: 2805 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,9.5 + parent: 1 + type: Transform + - uid: 2891 + components: + - pos: 6.5,-4.5 + parent: 1 + type: Transform + - uid: 3187 + components: + - pos: -26.5,18.5 + parent: 1 + type: Transform + - uid: 3188 + components: + - pos: -27.5,18.5 + parent: 1 + type: Transform + - uid: 3189 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,17.5 + parent: 1 + type: Transform + - uid: 3190 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,16.5 + parent: 1 + type: Transform + - uid: 3191 + components: + - rot: 3.141592653589793 rad + pos: -27.5,15.5 + parent: 1 + type: Transform + - uid: 3192 + components: + - rot: 3.141592653589793 rad + pos: -26.5,15.5 + parent: 1 + type: Transform + - uid: 3193 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,17.5 + parent: 1 + type: Transform + - uid: 3194 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,16.5 + parent: 1 + type: Transform + - uid: 3728 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-3.5 + parent: 1 + type: Transform + - uid: 5268 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,13.5 + parent: 1 + type: Transform + - uid: 5408 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-8.5 + parent: 1 + type: Transform + - uid: 5618 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,14.5 + parent: 1 + type: Transform + - uid: 5716 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,23.5 + parent: 1 + type: Transform + - uid: 5910 + components: + - pos: -9.5,42.5 + parent: 1 + type: Transform + - uid: 5912 + components: + - pos: -8.5,43.5 + parent: 1 + type: Transform + - uid: 5913 + components: + - pos: -9.5,43.5 + parent: 1 + type: Transform + - uid: 5914 + components: + - pos: -6.5,43.5 + parent: 1 + type: Transform + - uid: 5915 + components: + - pos: -5.5,43.5 + parent: 1 + type: Transform + - uid: 5927 + components: + - pos: -8.5,42.5 + parent: 1 + type: Transform + - uid: 5928 + components: + - pos: -8.5,41.5 + parent: 1 + type: Transform + - uid: 5929 + components: + - pos: -9.5,41.5 + parent: 1 + type: Transform + - uid: 5930 + components: + - pos: -6.5,42.5 + parent: 1 + type: Transform + - uid: 5931 + components: + - pos: -6.5,41.5 + parent: 1 + type: Transform + - uid: 5932 + components: + - pos: -5.5,41.5 + parent: 1 + type: Transform + - uid: 5933 + components: + - pos: -5.5,42.5 + parent: 1 + type: Transform + - uid: 6218 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,45.5 + parent: 1 + type: Transform + - uid: 7941 + components: + - pos: -54.5,65.5 + parent: 1 + type: Transform + - uid: 7942 + components: + - rot: 3.141592653589793 rad + pos: -54.5,63.5 + parent: 1 + type: Transform + - uid: 9779 + components: + - pos: -37.5,38.5 + parent: 1 + type: Transform + - uid: 9923 + components: + - rot: 1.5707963267948966 rad + pos: -64.5,12.5 + parent: 1 + type: Transform + - uid: 9938 + components: + - rot: 1.5707963267948966 rad + pos: -64.5,13.5 + parent: 1 + type: Transform + - uid: 9940 + components: + - rot: -1.5707963267948966 rad + pos: -69.5,26.5 + parent: 1 + type: Transform + - uid: 9942 + components: + - rot: 1.5707963267948966 rad + pos: -64.5,11.5 + parent: 1 + type: Transform + - uid: 10101 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,28.5 + parent: 1 + type: Transform + - uid: 10844 + components: + - pos: -60.5,42.5 + parent: 1 + type: Transform + - uid: 10881 + components: + - pos: -10.5,56.5 + parent: 1 + type: Transform + - uid: 12905 + components: + - rot: 3.141592653589793 rad + pos: 6.5,8.5 + parent: 1 + type: Transform + - uid: 13838 + components: + - rot: 3.141592653589793 rad + pos: -42.5,54.5 + parent: 1 + type: Transform + - uid: 14241 + components: + - rot: 3.141592653589793 rad + pos: -71.5,51.5 + parent: 1 + type: Transform + - uid: 14317 + components: + - rot: 3.141592653589793 rad + pos: -67.5,36.5 + parent: 1 + type: Transform + - uid: 14318 + components: + - rot: 1.5707963267948966 rad + pos: -75.5,37.5 + parent: 1 + type: Transform + - uid: 14458 + components: + - pos: -72.5,10.5 + parent: 1 + type: Transform + - uid: 14459 + components: + - pos: -72.5,11.5 + parent: 1 + type: Transform + - uid: 14460 + components: + - pos: -72.5,12.5 + parent: 1 + type: Transform + - uid: 14461 + components: + - pos: -72.5,13.5 + parent: 1 + type: Transform + - uid: 14462 + components: + - pos: -69.5,13.5 + parent: 1 + type: Transform + - uid: 14463 + components: + - pos: -69.5,11.5 + parent: 1 + type: Transform + - uid: 14464 + components: + - pos: -69.5,10.5 + parent: 1 + type: Transform + - uid: 14581 + components: + - rot: -1.5707963267948966 rad + pos: -60.5,20.5 + parent: 1 + type: Transform + - uid: 15072 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,17.5 + parent: 1 + type: Transform +- proto: ChairFoldingSpawnFolded + entities: + - uid: 2508 + components: + - rot: 3.141592653589793 rad + pos: 19.527164,13.664964 + parent: 1 + type: Transform + - uid: 2509 + components: + - rot: 3.141592653589793 rad + pos: 19.527164,13.664964 + parent: 1 + type: Transform + - uid: 2510 + components: + - rot: 3.141592653589793 rad + pos: 19.527164,13.711839 + parent: 1 + type: Transform + - uid: 2511 + components: + - rot: 3.141592653589793 rad + pos: 19.527164,13.758714 + parent: 1 + type: Transform + - uid: 2643 + components: + - rot: -1.5707963267948966 rad + pos: -9.868263,27.709732 + parent: 1 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 271 + components: + - rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 272 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 338 + components: + - pos: -10.5,-4.5 + parent: 1 + type: Transform + - uid: 339 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-2.5 + parent: 1 + type: Transform + - uid: 914 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-1.5 + parent: 1 + type: Transform + - uid: 1531 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-4.5 + parent: 1 + type: Transform + - uid: 1904 + components: + - pos: -54.5,49.5 + parent: 1 + type: Transform + - uid: 2642 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,28.5 + parent: 1 + type: Transform + - uid: 2803 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,13.5 + parent: 1 + type: Transform + - uid: 2846 + components: + - rot: 3.141592653589793 rad + pos: -16.5,28.5 + parent: 1 + type: Transform + - uid: 3316 + components: + - pos: -15.5,26.5 + parent: 1 + type: Transform + - uid: 3688 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,1.5 + parent: 1 + type: Transform + - uid: 3730 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-3.5 + parent: 1 + type: Transform + - uid: 3744 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,1.5 + parent: 1 + type: Transform + - uid: 3765 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,1.5 + parent: 1 + type: Transform + - uid: 4558 + components: + - pos: 22.5,39.5 + parent: 1 + type: Transform + - uid: 4577 + components: + - pos: 22.5,41.5 + parent: 1 + type: Transform + - uid: 5358 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,-1.5 + parent: 1 + type: Transform + - uid: 5359 + components: + - pos: -53.5,-4.5 + parent: 1 + type: Transform + - uid: 5616 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,28.5 + parent: 1 + type: Transform + - uid: 5808 + components: + - rot: 3.141592653589793 rad + pos: -26.5,8.5 + parent: 1 + type: Transform + - uid: 7539 + components: + - pos: -21.5,47.5 + parent: 1 + type: Transform + - uid: 7563 + components: + - pos: -19.5,37.5 + parent: 1 + type: Transform + - uid: 7907 + components: + - pos: -47.5,57.5 + parent: 1 + type: Transform + - uid: 7908 + components: + - rot: 3.141592653589793 rad + pos: -47.5,62.5 + parent: 1 + type: Transform + - uid: 7910 + components: + - rot: 3.141592653589793 rad + pos: -47.5,58.5 + parent: 1 + type: Transform + - uid: 7932 + components: + - rot: -1.5707963267948966 rad + pos: -59.5,64.5 + parent: 1 + type: Transform + - uid: 7980 + components: + - rot: 3.141592653589793 rad + pos: -54.5,57.5 + parent: 1 + type: Transform + - uid: 7981 + components: + - rot: 3.141592653589793 rad + pos: -56.5,57.5 + parent: 1 + type: Transform + - uid: 10460 + components: + - rot: -1.5707963267948966 rad + pos: -69.5,16.5 + parent: 1 + type: Transform + - uid: 10879 + components: + - rot: 3.141592653589793 rad + pos: -8.5,54.5 + parent: 1 + type: Transform + - uid: 10889 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,60.5 + parent: 1 + type: Transform + - uid: 10890 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,61.5 + parent: 1 + type: Transform + - uid: 12024 + components: + - rot: 1.5707963267948966 rad + pos: -71.5,16.5 + parent: 1 + type: Transform + - uid: 13320 + components: + - pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 14204 + components: + - pos: -65.5,26.5 + parent: 1 + type: Transform +- proto: ChairOfficeLight + entities: + - uid: 499 + components: + - rot: 3.141592653589793 rad + pos: -57.5,47.5 + parent: 1 + type: Transform + - uid: 1968 + components: + - rot: 3.141592653589793 rad + pos: -0.5,27.5 + parent: 1 + type: Transform + - uid: 1969 + components: + - rot: 3.141592653589793 rad + pos: -2.5,26.5 + parent: 1 + type: Transform + - uid: 1970 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,25.5 + parent: 1 + type: Transform + - uid: 1972 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,25.5 + parent: 1 + type: Transform + - uid: 1979 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,33.5 + parent: 1 + type: Transform + - uid: 2066 + components: + - pos: 7.5,23.5 + parent: 1 + type: Transform + - uid: 2067 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,25.5 + parent: 1 + type: Transform + - uid: 2359 + components: + - rot: 3.141592653589793 rad + pos: 7.5,16.5 + parent: 1 + type: Transform + - uid: 2360 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,18.5 + parent: 1 + type: Transform + - uid: 2806 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,9.5 + parent: 1 + type: Transform + - uid: 4567 + components: + - pos: 18.5,43.5 + parent: 1 + type: Transform + - uid: 4568 + components: + - pos: 22.5,43.5 + parent: 1 + type: Transform + - uid: 5326 + components: + - pos: 17.5,41.5 + parent: 1 + type: Transform + - uid: 5617 + components: + - pos: -41.5,24.5 + parent: 1 + type: Transform + - uid: 10880 + components: + - rot: 3.141592653589793 rad + pos: -10.5,54.5 + parent: 1 + type: Transform + - uid: 10882 + components: + - pos: -9.5,56.5 + parent: 1 + type: Transform + - uid: 12794 + components: + - pos: 15.5,32.5 + parent: 1 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 10878 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,55.5 + parent: 1 + type: Transform + - uid: 10891 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,64.5 + parent: 1 + type: Transform + - uid: 10892 + components: + - rot: 3.141592653589793 rad + pos: -16.5,65.5 + parent: 1 + type: Transform + - uid: 10893 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,64.5 + parent: 1 + type: Transform +- proto: ChairRitual + entities: + - uid: 9774 + components: + - pos: -38.5,38.5 + parent: 1 + type: Transform +- proto: ChairWood + entities: + - uid: 1905 + components: + - pos: -57.5,49.5 + parent: 1 + type: Transform + - uid: 2995 + components: + - pos: 24.5,15.5 + parent: 1 + type: Transform + - uid: 2996 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,14.5 + parent: 1 + type: Transform + - uid: 2997 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,14.5 + parent: 1 + type: Transform + - uid: 2998 + components: + - rot: 3.141592653589793 rad + pos: 24.5,13.5 + parent: 1 + type: Transform + - uid: 3731 + components: + - pos: -45.5,-2.5 + parent: 1 + type: Transform + - uid: 5269 + components: + - rot: 3.141592653589793 rad + pos: -53.5,12.5 + parent: 1 + type: Transform + - uid: 9772 + components: + - pos: -44.5,37.5 + parent: 1 + type: Transform + - uid: 9775 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,35.5 + parent: 1 + type: Transform + - uid: 9777 + components: + - rot: 3.141592653589793 rad + pos: -38.5,36.5 + parent: 1 + type: Transform + - uid: 9780 + components: + - rot: 3.141592653589793 rad + pos: -37.5,36.5 + parent: 1 + type: Transform + - uid: 9781 + components: + - pos: -36.5,38.5 + parent: 1 + type: Transform + - uid: 10459 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,42.5 + parent: 1 + type: Transform + - uid: 10461 + components: + - pos: -27.5,42.5 + parent: 1 + type: Transform + - uid: 10934 + components: + - pos: -61.5,45.5 + parent: 1 + type: Transform + - uid: 10966 + components: + - pos: -72.5,42.5 + parent: 1 + type: Transform + - uid: 10967 + components: + - rot: 3.141592653589793 rad + pos: -72.5,40.5 + parent: 1 + type: Transform + - uid: 10968 + components: + - rot: 1.5707963267948966 rad + pos: -71.5,39.5 + parent: 1 + type: Transform + - uid: 10969 + components: + - rot: -1.5707963267948966 rad + pos: -69.5,39.5 + parent: 1 + type: Transform +- proto: chem_master + entities: + - uid: 13 + components: + - pos: -2.5,27.5 + parent: 1 + type: Transform + - uid: 14 + components: + - pos: -4.5,25.5 + parent: 1 + type: Transform +- proto: ChemistryHotplate + entities: + - uid: 1967 + components: + - pos: 0.5,27.5 + parent: 1 + type: Transform +- proto: ChessBoard + entities: + - uid: 345 + components: + - rot: -1.5707963267948966 rad + pos: -8.494302,-11.401604 + parent: 1 + type: Transform + - uid: 6343 + components: + - rot: 3.141592653589793 rad + pos: -0.51219857,51.59928 + parent: 1 + type: Transform +- proto: ChurchOrganInstrument + entities: + - uid: 1816 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-2.5 + parent: 1 + type: Transform +- proto: Cigarette + entities: + - uid: 10971 + components: + - pos: -72.28104,41.642494 + parent: 1 + type: Transform + - uid: 10972 + components: + - pos: -72.67166,41.923744 + parent: 1 + type: Transform + - uid: 10973 + components: + - pos: -70.29666,39.954994 + parent: 1 + type: Transform + - uid: 10974 + components: + - pos: -70.68729,39.56437 + parent: 1 + type: Transform +- proto: CigarGoldCase + entities: + - uid: 10914 + components: + - pos: -7.7008357,61.63202 + parent: 1 + type: Transform +- proto: CircuitImprinterMachineCircuitboard + entities: + - uid: 258 + components: + - pos: -11.474969,-1.4294147 + parent: 1 + type: Transform +- proto: ClosetBase + entities: + - uid: 630 + components: + - pos: 8.5,-1.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 631 + components: + - pos: 7.5,0.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 6325 + components: + - pos: 8.5,52.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: ClosetChefFilled + entities: + - uid: 6935 + components: + - pos: -31.5,47.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 294 + components: + - pos: -13.5,2.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 908 + components: + - pos: 29.5,-7.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 1142 + components: + - pos: 1.5,19.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 1151 + components: + - pos: 1.5,20.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 2942 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 2943 + components: + - pos: 1.5,-4.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 2945 + components: + - pos: 23.5,2.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 2949 + components: + - pos: 15.5,-4.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 2964 + components: + - pos: 21.5,11.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 3321 + components: + - pos: -16.5,19.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5274 + components: + - pos: -55.5,35.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5277 + components: + - pos: -55.5,36.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5385 + components: + - pos: -54.5,-10.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5403 + components: + - pos: -29.5,2.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5404 + components: + - pos: -15.5,-7.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5414 + components: + - pos: -15.5,0.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5498 + components: + - pos: -53.5,2.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5605 + components: + - pos: -44.5,15.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5608 + components: + - pos: -45.5,27.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5710 + components: + - pos: -34.5,10.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5729 + components: + - pos: -20.5,10.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5779 + components: + - pos: -4.5,10.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5782 + components: + - pos: -9.5,24.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10369 + components: + - pos: -30.5,49.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10376 + components: + - pos: -20.5,50.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10379 + components: + - pos: -25.5,37.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10381 + components: + - pos: -9.5,36.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10384 + components: + - pos: -8.5,48.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10385 + components: + - pos: 6.5,39.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 12891 + components: + - pos: 15.5,23.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 14235 + components: + - pos: -70.5,56.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 14236 + components: + - pos: -60.5,48.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 14244 + components: + - pos: -66.5,40.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 14582 + components: + - pos: -61.5,29.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 15967 + components: + - pos: -72.5,-9.5 + parent: 1 + type: Transform + - uid: 15971 + components: + - pos: -65.5,-9.5 + parent: 1 + type: Transform +- proto: ClosetFireFilled + entities: + - uid: 295 + components: + - pos: -13.5,1.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 296 + components: + - pos: -13.5,0.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 2917 + components: + - pos: -15.5,19.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 2941 + components: + - pos: 5.5,1.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 2944 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 2948 + components: + - pos: 14.5,-4.5 + parent: 1 + type: Transform + - open: True + removedMasks: 20 + type: EntityStorage + - uid: 2965 + components: + - pos: 21.5,12.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5389 + components: + - pos: -53.5,-10.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5405 + components: + - pos: -29.5,1.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5406 + components: + - pos: -15.5,-8.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5415 + components: + - pos: -16.5,0.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5497 + components: + - pos: -54.5,2.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5604 + components: + - pos: -43.5,15.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5607 + components: + - pos: -45.5,28.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5708 + components: + - pos: -34.5,9.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5731 + components: + - pos: -20.5,9.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5780 + components: + - pos: -4.5,9.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5783 + components: + - pos: -8.5,24.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10368 + components: + - pos: -31.5,49.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10377 + components: + - pos: -19.5,50.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10380 + components: + - pos: -25.5,38.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10382 + components: + - pos: -8.5,36.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10386 + components: + - pos: 7.5,39.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10800 + components: + - pos: -8.5,49.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 12890 + components: + - pos: 15.5,22.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 14237 + components: + - pos: -61.5,48.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 14243 + components: + - pos: -66.5,39.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 14583 + components: + - pos: -61.5,28.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 15963 + components: + - pos: -74.5,-9.5 + parent: 1 + type: Transform + - uid: 15977 + components: + - pos: -67.5,-9.5 + parent: 1 + type: Transform +- proto: ClosetJanitorFilled + entities: + - uid: 7071 + components: + - pos: -50.5,38.5 + parent: 1 + type: Transform + - contents: + - maxAmount: 1 + amount: 1 + orGroup: null + prob: 0.01 + id: WeaponPistolMk58 + - maxAmount: 1 + amount: 2 + orGroup: null + prob: 1 + id: MopItem + - maxAmount: 1 + amount: 2 + orGroup: null + prob: 1 + id: BoxMousetrap + - maxAmount: 1 + amount: 3 + orGroup: null + prob: 1 + id: WetFloorSign + - maxAmount: 1 + amount: 2 + orGroup: null + prob: 1 + id: TrashBag + - maxAmount: 1 + amount: 1 + orGroup: null + prob: 1 + id: LightReplacer + - maxAmount: 1 + amount: 1 + orGroup: null + prob: 1 + id: BoxLightMixed + - maxAmount: 1 + amount: 1 + orGroup: null + prob: 1 + id: Holoprojector + - maxAmount: 1 + amount: 2 + orGroup: null + prob: 1 + id: SoapNT + - maxAmount: 1 + amount: 2 + orGroup: null + prob: 1 + id: FlashlightLantern + type: StorageFill + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15049 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: ClosetL3VirologyFilled + entities: + - uid: 1150 + components: + - pos: 6.5,20.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 1181 + components: + - pos: 7.5,20.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 1114 + components: + - pos: -23.5,-6.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 2807 + components: + - pos: -9.5,12.5 + parent: 1 + type: Transform + - uid: 2914 + components: + - pos: -17.5,19.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 2946 + components: + - pos: 24.5,-0.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 2947 + components: + - pos: 13.5,-4.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 2953 + components: + - pos: 26.5,-4.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 2954 + components: + - pos: 3.5,-4.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 2966 + components: + - pos: 21.5,13.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5364 + components: + - pos: -54.5,-0.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5392 + components: + - pos: -52.5,-10.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5413 + components: + - pos: -29.5,0.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5422 + components: + - pos: -17.5,0.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5499 + components: + - pos: -52.5,2.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 1.7459902 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5606 + components: + - pos: -45.5,15.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5609 + components: + - pos: -45.5,26.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5709 + components: + - pos: -34.5,11.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5733 + components: + - pos: -20.5,11.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5735 + components: + - pos: -20.5,28.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5781 + components: + - pos: -4.5,11.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10363 + components: + - pos: -38.5,54.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10367 + components: + - pos: -37.5,54.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10378 + components: + - pos: -21.5,50.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10393 + components: + - pos: 6.5,43.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10394 + components: + - pos: 6.5,42.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10408 + components: + - pos: 22.5,30.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10474 + components: + - pos: -54.5,44.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10802 + components: + - pos: -8.5,50.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 12892 + components: + - pos: 15.5,24.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 12900 + components: + - pos: 14.5,8.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 12901 + components: + - pos: 3.5,8.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 14234 + components: + - pos: -69.5,56.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 14238 + components: + - pos: -62.5,48.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 14314 + components: + - pos: -74.5,47.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 14584 + components: + - pos: -61.5,27.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 15068 + components: + - pos: -28.5,20.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 15915 + components: + - pos: 14.5,34.5 + parent: 1 + type: Transform + - uid: 15931 + components: + - pos: 20.5,43.5 + parent: 1 + type: Transform +- proto: ClosetToolFilled + entities: + - uid: 1118 + components: + - pos: -24.5,-6.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: ClothingBackpackClown + entities: + - uid: 4232 + components: + - pos: -40.570293,28.017475 + parent: 1 + type: Transform +- proto: ClothingBeltUtility + entities: + - uid: 5650 + components: + - pos: -23.493784,26.550022 + parent: 1 + type: Transform +- proto: ClothingEyesGlassesSunglasses + entities: + - uid: 9736 + components: + - pos: -27.635717,35.723694 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesBoxingBlue + entities: + - uid: 14361 + components: + - pos: -60.445595,14.632732 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesBoxingGreen + entities: + - uid: 14362 + components: + - pos: -60.42997,10.429607 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesBoxingRed + entities: + - uid: 14363 + components: + - pos: -62.33622,10.476482 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesBoxingYellow + entities: + - uid: 14364 + components: + - pos: -62.30497,14.523357 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesColorBlack + entities: + - uid: 14935 + components: + - pos: -59.51448,91.46834 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesColorGray + entities: + - uid: 5938 + components: + - desc: These specially insulated grey gloves belong to the king of tiders. A small tag is inscribed with the initials, "H.M." + name: grey gloves of the tider king + type: MetaData + - pos: -7.521523,39.691025 + parent: 1 + type: Transform + - type: Insulated +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 611 + components: + - pos: -26.510632,26.559929 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 12776 + components: + - pos: 15.627547,28.610893 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesPowerglove + entities: + - uid: 14936 + components: + - pos: -76.52277,13.482821 + parent: 1 + type: Transform +- proto: ClothingHeadHatAnimalMonkey + entities: + - uid: 917 + components: + - pos: 27.553495,-1.4451299 + parent: 1 + type: Transform +- proto: ClothingHeadHatCone + entities: + - uid: 717 + components: + - pos: 24.462656,-1.4106827 + parent: 1 + type: Transform + - uid: 718 + components: + - pos: 24.447031,-2.4575577 + parent: 1 + type: Transform + - uid: 719 + components: + - pos: 24.462656,-3.4575577 + parent: 1 + type: Transform +- proto: ClothingHeadHatFedoraBrown + entities: + - uid: 12916 + components: + - pos: 3.488522,44.563385 + parent: 1 + type: Transform +- proto: ClothingHeadHatHairflower + entities: + - uid: 10873 + components: + - pos: -22.049007,53.739006 + parent: 1 + type: Transform +- proto: ClothingHeadHatHoodCulthood + entities: + - uid: 1836 + components: + - pos: 20.792824,-2.5214906 + parent: 1 + type: Transform +- proto: ClothingHeadHelmetEVA + entities: + - uid: 5443 + components: + - pos: -6.6627684,-13.319158 + parent: 1 + type: Transform +- proto: ClothingHeadHelmetSyndicate + entities: + - uid: 15279 + components: + - pos: -57.70341,92.69456 + parent: 1 + type: Transform +- proto: ClothingMaskBreathMedical + entities: + - uid: 12777 + components: + - pos: 16.513798,28.576006 + parent: 1 + type: Transform +- proto: ClothingMaskClown + entities: + - uid: 2306 + components: + - pos: 19.76093,15.739809 + parent: 1 + type: Transform + - uid: 2788 + components: + - pos: -25.506933,57.41912 + parent: 1 + type: Transform +- proto: ClothingMaskGas + entities: + - uid: 323 + components: + - pos: -4.562405,-5.3679457 + parent: 1 + type: Transform + - uid: 332 + components: + - pos: -4.156155,-5.3366957 + parent: 1 + type: Transform + - uid: 7378 + components: + - desc: A face-covering mask that resembles the icon of greytide worldwide. + name: face of the tider + type: MetaData + - pos: -5.3370404,44.58554 + parent: 1 + type: Transform + - uid: 7379 + components: + - desc: A face-covering mask that resembles the icon of greytide worldwide. + name: face of the tider + type: MetaData + - pos: -6.630641,44.601288 + parent: 1 + type: Transform + - uid: 7380 + components: + - desc: A face-covering mask that resembles the icon of greytide worldwide. + name: face of the tider + type: MetaData + - pos: -6.224393,44.64804 + parent: 1 + type: Transform + - uid: 7381 + components: + - desc: A face-covering mask that resembles the icon of greytide worldwide. + name: face of the tider + type: MetaData + - pos: -5.8370404,44.632416 + parent: 1 + type: Transform +- proto: ClothingNeckAromanticPin + entities: + - uid: 10536 + components: + - pos: -25.61458,26.466957 + parent: 1 + type: Transform +- proto: ClothingNeckBling + entities: + - uid: 10875 + components: + - pos: -22.564632,53.645256 + parent: 1 + type: Transform +- proto: ClothingNeckHeadphones + entities: + - uid: 10545 + components: + - pos: -53.41692,13.576396 + parent: 1 + type: Transform +- proto: ClothingNeckIntersexPin + entities: + - uid: 10539 + components: + - pos: 28.525753,9.397884 + parent: 1 + type: Transform +- proto: ClothingNeckLesbianPin + entities: + - uid: 10540 + components: + - pos: 6.5544667,-2.4496374 + parent: 1 + type: Transform +- proto: ClothingNeckLGBTPin + entities: + - uid: 10535 + components: + - pos: -34.543724,28.416185 + parent: 1 + type: Transform +- proto: ClothingNeckMantleCap + entities: + - uid: 5004 + components: + - pos: -5.5015035,61.615753 + parent: 1 + type: Transform +- proto: ClothingNeckMantleCE + entities: + - uid: 3543 + components: + - pos: -68.46455,16.578547 + parent: 1 + type: Transform +- proto: ClothingNeckMantleHOP + entities: + - uid: 5395 + components: + - pos: -21.824865,46.548195 + parent: 1 + type: Transform +- proto: ClothingNeckMantleHOS + entities: + - uid: 7085 + components: + - pos: -60.468678,63.752388 + parent: 1 + type: Transform +- proto: ClothingNeckMantleRD + entities: + - uid: 3698 + components: + - flags: InContainer + type: MetaData + - parent: 245 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingNeckNonBinaryPin + entities: + - uid: 10541 + components: + - pos: -27.46916,-8.556879 + parent: 1 + type: Transform +- proto: ClothingNeckStethoscope + entities: + - uid: 2329 + components: + - pos: 10.447677,31.662287 + parent: 1 + type: Transform +- proto: ClothingNeckTransPin + entities: + - uid: 10543 + components: + - pos: -54.52713,17.537136 + parent: 1 + type: Transform +- proto: ClothingOuterHardsuitEVA + entities: + - uid: 5444 + components: + - pos: -6.5221434,-13.381658 + parent: 1 + type: Transform +- proto: ClothingOuterHardsuitSyndicate + entities: + - uid: 15280 + components: + - pos: -57.469036,92.47581 + parent: 1 + type: Transform +- proto: ClothingOuterRobesCult + entities: + - uid: 1837 + components: + - pos: 20.402199,-2.4433656 + parent: 1 + type: Transform +- proto: ClothingOuterSuitMonkey + entities: + - uid: 916 + components: + - pos: 27.147245,-2.3826299 + parent: 1 + type: Transform +- proto: ClothingShoesBootsCombatFilled + entities: + - uid: 15494 + components: + - pos: -35.545906,68.57638 + parent: 1 + type: Transform +- proto: ClothingShoesBootsMag + entities: + - uid: 7382 + components: + - pos: -12.423142,46.687256 + parent: 1 + type: Transform + - uid: 7383 + components: + - pos: -12.595017,46.437256 + parent: 1 + type: Transform + - uid: 7384 + components: + - pos: -13.391892,46.687256 + parent: 1 + type: Transform + - uid: 7385 + components: + - pos: -13.579392,46.45288 + parent: 1 + type: Transform + - uid: 14163 + components: + - pos: -77.410675,42.617188 + parent: 1 + type: Transform +- proto: ClothingShoesBootsPerformer + entities: + - uid: 10959 + components: + - pos: -72.29666,45.642494 + parent: 1 + type: Transform +- proto: ClothingShoesWizard + entities: + - uid: 6833 + components: + - pos: -36.71934,52.678024 + parent: 1 + type: Transform + - uid: 6834 + components: + - pos: -36.359966,52.553024 + parent: 1 + type: Transform +- proto: ClothingUniformJumpskirtJanimaid + entities: + - uid: 6979 + components: + - flags: InContainer + type: MetaData + - parent: 7028 + type: Transform + - canCollide: False + type: Physics +- proto: ClothingUniformJumpskirtPerformer + entities: + - uid: 10960 + components: + - pos: -72.56229,45.579994 + parent: 1 + type: Transform +- proto: ClothingUniformJumpsuitAncient + entities: + - uid: 5559 + components: + - pos: -45.64481,17.603561 + parent: 1 + type: Transform + - uid: 15103 + components: + - pos: -45.285435,17.619186 + parent: 1 + type: Transform +- proto: ComfyChair + entities: + - uid: 6341 + components: + - pos: -0.5,52.5 + parent: 1 + type: Transform + - uid: 6342 + components: + - rot: 3.141592653589793 rad + pos: -0.5,50.5 + parent: 1 + type: Transform + - uid: 7537 + components: + - pos: -22.5,47.5 + parent: 1 + type: Transform + - uid: 7931 + components: + - rot: 1.5707963267948966 rad + pos: -61.5,64.5 + parent: 1 + type: Transform + - uid: 7933 + components: + - rot: -1.5707963267948966 rad + pos: -58.5,65.5 + parent: 1 + type: Transform + - uid: 10877 + components: + - pos: -8.5,56.5 + parent: 1 + type: Transform + - uid: 10905 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,61.5 + parent: 1 + type: Transform + - uid: 15162 + components: + - rot: 3.141592653589793 rad + pos: 16.5,52.5 + parent: 1 + type: Transform + - uid: 15163 + components: + - rot: 3.141592653589793 rad + pos: 18.5,52.5 + parent: 1 + type: Transform +- proto: CommsComputerCircuitboard + entities: + - uid: 15958 + components: + - pos: -49.44898,25.317516 + parent: 1 + type: Transform +- proto: ComputerAnalysisConsole + entities: + - uid: 341 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-11.5 + parent: 1 + type: Transform + - linkedPorts: + 347: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver + type: DeviceLinkSource +- proto: ComputerBroken + entities: + - uid: 591 + components: + - pos: 13.5,-7.5 + parent: 1 + type: Transform + - uid: 5324 + components: + - rot: 3.141592653589793 rad + pos: 22.5,38.5 + parent: 1 + type: Transform + - uid: 9069 + components: + - rot: 3.141592653589793 rad + pos: 18.5,42.5 + parent: 1 + type: Transform + - uid: 9080 + components: + - rot: 3.141592653589793 rad + pos: 17.5,40.5 + parent: 1 + type: Transform +- proto: ComputerCargoBounty + entities: + - uid: 8995 + components: + - pos: -33.5,-5.5 + parent: 1 + type: Transform +- proto: ComputerCargoOrders + entities: + - uid: 3619 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,1.5 + parent: 1 + type: Transform + - uid: 3746 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-7.5 + parent: 1 + type: Transform +- proto: ComputerCargoShuttle + entities: + - uid: 3618 + components: + - pos: -39.5,-1.5 + parent: 1 + type: Transform +- proto: ComputerComms + entities: + - uid: 10884 + components: + - pos: -16.5,66.5 + parent: 1 + type: Transform + - uid: 13767 + components: + - rot: 3.141592653589793 rad + pos: -8.5,59.5 + parent: 1 + type: Transform +- proto: ComputerCrewMonitoring + entities: + - uid: 1973 + components: + - pos: -0.5,34.5 + parent: 1 + type: Transform + - uid: 10886 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,64.5 + parent: 1 + type: Transform +- proto: ComputerCriminalRecords + entities: + - uid: 2992 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,58.5 + parent: 1 + type: Transform +- proto: ComputerFrame + entities: + - uid: 1324 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,38.5 + parent: 1 + type: Transform + - uid: 9067 + components: + - rot: 3.141592653589793 rad + pos: 22.5,40.5 + parent: 1 + type: Transform + - uid: 9974 + components: + - rot: 1.5707963267948966 rad + pos: -82.5,26.5 + parent: 1 + type: Transform +- proto: ComputerId + entities: + - uid: 7562 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,37.5 + parent: 1 + type: Transform + - uid: 10885 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,64.5 + parent: 1 + type: Transform +- proto: ComputerMedicalRecords + entities: + - uid: 1980 + components: + - pos: 0.5,34.5 + parent: 1 + type: Transform +- proto: ComputerPowerMonitoring + entities: + - uid: 10712 + components: + - rot: 3.141592653589793 rad + pos: -74.5,15.5 + parent: 1 + type: Transform + - uid: 10713 + components: + - rot: -1.5707963267948966 rad + pos: -63.5,27.5 + parent: 1 + type: Transform + - uid: 10894 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,60.5 + parent: 1 + type: Transform +- proto: ComputerRadar + entities: + - uid: 10705 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,-13.5 + parent: 1 + type: Transform + - uid: 10887 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,61.5 + parent: 1 + type: Transform +- proto: ComputerResearchAndDevelopment + entities: + - uid: 248 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 251 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,2.5 + parent: 1 + type: Transform +- proto: ComputerSalvageExpedition + entities: + - uid: 10739 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-3.5 + parent: 1 + type: Transform +- proto: ComputerShuttleCargo + entities: + - uid: 3673 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-10.5 + parent: 1 + type: Transform +- proto: ComputerSolarControl + entities: + - uid: 907 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-8.5 + parent: 1 + type: Transform +- proto: ComputerStationRecords + entities: + - uid: 10899 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,61.5 + parent: 1 + type: Transform +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 7956 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,57.5 + parent: 1 + type: Transform + - uid: 7979 + components: + - pos: -54.5,58.5 + parent: 1 + type: Transform + - uid: 10888 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,60.5 + parent: 1 + type: Transform + - uid: 13086 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + type: Transform +- proto: ComputerTechnologyDiskTerminal + entities: + - uid: 234 + components: + - pos: -9.5,-5.5 + parent: 1 + type: Transform +- proto: ContainmentFieldGenerator + entities: + - uid: 9985 + components: + - rot: -1.5707963267948966 rad + pos: -82.5,18.5 + parent: 1 + type: Transform + - uid: 9986 + components: + - rot: -1.5707963267948966 rad + pos: -81.5,18.5 + parent: 1 + type: Transform + - uid: 9987 + components: + - rot: -1.5707963267948966 rad + pos: -80.5,18.5 + parent: 1 + type: Transform + - uid: 9988 + components: + - rot: -1.5707963267948966 rad + pos: -79.5,18.5 + parent: 1 + type: Transform + - uid: 10644 + components: + - pos: -93.5,21.5 + parent: 1 + type: Transform + - uid: 10645 + components: + - pos: -93.5,29.5 + parent: 1 + type: Transform + - uid: 10646 + components: + - pos: -101.5,29.5 + parent: 1 + type: Transform + - uid: 10647 + components: + - pos: -101.5,21.5 + parent: 1 + type: Transform +- proto: ConveyorBelt + entities: + - uid: 6789 + components: + - pos: -39.5,-8.5 + parent: 1 + type: Transform + - links: + - 13842 + - 13843 + type: DeviceLinkSink + - uid: 6793 + components: + - pos: -39.5,-9.5 + parent: 1 + type: Transform + - links: + - 13842 + - 13843 + type: DeviceLinkSink + - uid: 7282 + components: + - pos: -39.5,-7.5 + parent: 1 + type: Transform + - links: + - 13842 + - 13843 + type: DeviceLinkSink + - uid: 13825 + components: + - pos: -35.5,-14.5 + parent: 1 + type: Transform + - links: + - 13823 + type: DeviceLinkSink + - uid: 13826 + components: + - pos: -35.5,-13.5 + parent: 1 + type: Transform + - links: + - 13823 + type: DeviceLinkSink + - uid: 13827 + components: + - pos: -35.5,-12.5 + parent: 1 + type: Transform + - links: + - 13823 + type: DeviceLinkSink + - uid: 13828 + components: + - pos: -35.5,-11.5 + parent: 1 + type: Transform + - links: + - 13823 + type: DeviceLinkSink + - uid: 13829 + components: + - pos: -35.5,-10.5 + parent: 1 + type: Transform + - links: + - 13823 + type: DeviceLinkSink + - uid: 13830 + components: + - pos: -31.5,-14.5 + parent: 1 + type: Transform + - links: + - 13824 + type: DeviceLinkSink + - uid: 13831 + components: + - pos: -31.5,-13.5 + parent: 1 + type: Transform + - links: + - 13824 + type: DeviceLinkSink + - uid: 13832 + components: + - pos: -31.5,-12.5 + parent: 1 + type: Transform + - links: + - 13824 + type: DeviceLinkSink + - uid: 13833 + components: + - pos: -31.5,-11.5 + parent: 1 + type: Transform + - links: + - 13824 + type: DeviceLinkSink + - uid: 13834 + components: + - pos: -31.5,-10.5 + parent: 1 + type: Transform + - links: + - 13824 + type: DeviceLinkSink + - uid: 14225 + components: + - rot: 3.141592653589793 rad + pos: -73.5,53.5 + parent: 1 + type: Transform + - links: + - 14233 + type: DeviceLinkSink + - uid: 14226 + components: + - rot: 3.141592653589793 rad + pos: -73.5,54.5 + parent: 1 + type: Transform + - links: + - 14233 + type: DeviceLinkSink + - uid: 14227 + components: + - rot: 3.141592653589793 rad + pos: -73.5,55.5 + parent: 1 + type: Transform + - links: + - 14233 + type: DeviceLinkSink + - uid: 14228 + components: + - rot: 3.141592653589793 rad + pos: -73.5,56.5 + parent: 1 + type: Transform + - links: + - 14233 + type: DeviceLinkSink + - uid: 14229 + components: + - rot: 3.141592653589793 rad + pos: -73.5,57.5 + parent: 1 + type: Transform + - links: + - 14233 + type: DeviceLinkSink + - uid: 14230 + components: + - rot: 3.141592653589793 rad + pos: -73.5,58.5 + parent: 1 + type: Transform + - links: + - 14233 + type: DeviceLinkSink +- proto: CowToolboxFilled + entities: + - uid: 14933 + components: + - pos: -92.450035,40.48285 + parent: 1 + type: Transform +- proto: CrateAirlockKit + entities: + - uid: 9079 + components: + - pos: 5.5,-19.5 + parent: 1 + type: Transform +- proto: CrateArtifactContainer + entities: + - uid: 349 + components: + - pos: 5.5,-8.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateEmptySpawner + entities: + - uid: 15654 + components: + - pos: -39.5,-3.5 + parent: 1 + type: Transform + - uid: 15655 + components: + - pos: -37.5,-5.5 + parent: 1 + type: Transform + - uid: 15656 + components: + - pos: -41.5,-11.5 + parent: 1 + type: Transform + - uid: 15658 + components: + - pos: -21.5,-0.5 + parent: 1 + type: Transform + - uid: 15659 + components: + - pos: 22.5,-4.5 + parent: 1 + type: Transform + - uid: 15663 + components: + - pos: 2.5,46.5 + parent: 1 + type: Transform + - uid: 15664 + components: + - pos: -5.5,36.5 + parent: 1 + type: Transform + - uid: 15733 + components: + - pos: -26.5,49.5 + parent: 1 + type: Transform + - uid: 15781 + components: + - pos: -75.5,39.5 + parent: 1 + type: Transform +- proto: CrateEngineeringAMEJar + entities: + - uid: 9074 + components: + - pos: -76.5,22.5 + parent: 1 + type: Transform + - uid: 10659 + components: + - pos: -69.5,23.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateEngineeringAMEShielding + entities: + - uid: 10657 + components: + - pos: -71.5,23.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10658 + components: + - pos: -70.5,23.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateEngineeringCableBulk + entities: + - uid: 10145 + components: + - pos: -69.5,25.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 10723 + components: + - pos: -63.5,26.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateFilledSpawner + entities: + - uid: 1469 + components: + - pos: -44.5,17.5 + parent: 1 + type: Transform + - uid: 3222 + components: + - pos: -7.5,12.5 + parent: 1 + type: Transform + - uid: 3629 + components: + - pos: -28.5,40.5 + parent: 1 + type: Transform + - uid: 5556 + components: + - pos: -42.5,17.5 + parent: 1 + type: Transform + - uid: 15652 + components: + - pos: -43.5,-10.5 + parent: 1 + type: Transform + - uid: 15653 + components: + - pos: -34.5,-5.5 + parent: 1 + type: Transform + - uid: 15657 + components: + - pos: -26.5,-8.5 + parent: 1 + type: Transform + - uid: 15660 + components: + - pos: 22.5,32.5 + parent: 1 + type: Transform +- proto: CrateFreezer + entities: + - uid: 2303 + components: + - pos: -28.5,44.5 + parent: 1 + type: Transform + - uid: 4236 + components: + - pos: -27.5,44.5 + parent: 1 + type: Transform +- proto: CrateFunATV + entities: + - uid: 1421 + components: + - pos: -24.5,-12.5 + parent: 1 + type: Transform +- proto: CrateMaterialGlass + entities: + - uid: 4734 + components: + - pos: 12.5,-19.5 + parent: 1 + type: Transform + - uid: 9981 + components: + - pos: -82.5,19.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 15895 + components: + - pos: 12.5,-18.5 + parent: 1 + type: Transform +- proto: CrateMaterialSteel + entities: + - uid: 9980 + components: + - pos: -82.5,20.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 15557 + components: + - pos: 10.5,-20.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 220.53748 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 15558 + components: + - pos: 9.5,-20.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 220.53748 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateNPCCow + entities: + - uid: 6919 + components: + - pos: -34.5,42.5 + parent: 1 + type: Transform + - air: + volume: 800 + immutable: False + temperature: 293.1499 + moles: + - 11.733055 + - 44.138634 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateScience + entities: + - uid: 7398 + components: + - pos: 11.5,50.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 7074 + components: + - pos: -53.5,35.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7565 + - 7136 + - 7134 + - 7133 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: CrateTrashCart + entities: + - uid: 1405 + components: + - pos: 0.5,31.5 + parent: 1 + type: Transform + - uid: 2302 + components: + - pos: -39.5,35.5 + parent: 1 + type: Transform + - uid: 2637 + components: + - pos: -20.5,53.5 + parent: 1 + type: Transform + - uid: 4072 + components: + - pos: -34.5,7.5 + parent: 1 + type: Transform + - uid: 4073 + components: + - pos: -61.5,31.5 + parent: 1 + type: Transform +- proto: CrateTrashCartJani + entities: + - uid: 5642 + components: + - pos: -50.5,35.5 + parent: 1 + type: Transform +- proto: CrayonMime + entities: + - uid: 4216 + components: + - pos: -40.465607,23.673563 + parent: 1 + type: Transform +- proto: Crematorium + entities: + - uid: 1828 + components: + - pos: 20.5,2.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrewMonitoringServer + entities: + - uid: 1065 + components: + - pos: -1.5,17.5 + parent: 1 + type: Transform +- proto: CrewMonitoringServerMachineCircuitboard + entities: + - uid: 14167 + components: + - pos: -49.521305,24.4048 + parent: 1 + type: Transform +- proto: Crowbar + entities: + - uid: 375 + components: + - pos: 2.5126948,-11.447319 + parent: 1 + type: Transform + - uid: 2376 + components: + - pos: 4.494688,39.490654 + parent: 1 + type: Transform + - uid: 5649 + components: + - pos: -24.42766,29.496252 + parent: 1 + type: Transform +- proto: CryoPod + entities: + - uid: 1333 + components: + - pos: 9.5,36.5 + parent: 1 + type: Transform +- proto: Defibrillator + entities: + - uid: 15776 + components: + - pos: 4.440308,37.660927 + parent: 1 + type: Transform +- proto: DefibrillatorCabinetFilled + entities: + - uid: 1962 + components: + - rot: 3.141592653589793 rad + pos: 7.5,27.5 + parent: 1 + type: Transform + - uid: 2373 + components: + - rot: 3.141592653589793 rad + pos: 10.5,21.5 + parent: 1 + type: Transform + - uid: 2374 + components: + - pos: -4.5,35.5 + parent: 1 + type: Transform + - uid: 2375 + components: + - rot: 3.141592653589793 rad + pos: 7.5,32.5 + parent: 1 + type: Transform + - uid: 5011 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 5013 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,19.5 + parent: 1 + type: Transform + - uid: 5014 + components: + - rot: 3.141592653589793 rad + pos: -49.5,30.5 + parent: 1 + type: Transform + - uid: 5054 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,16.5 + parent: 1 + type: Transform + - uid: 15779 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,-8.5 + parent: 1 + type: Transform +- proto: DeployableBarrier + entities: + - uid: 7962 + components: + - anchored: False + pos: -65.5,52.5 + parent: 1 + type: Transform + - uid: 7972 + components: + - anchored: False + pos: -65.5,53.5 + parent: 1 + type: Transform + - uid: 8019 + components: + - anchored: False + pos: -64.5,53.5 + parent: 1 + type: Transform + - uid: 8020 + components: + - anchored: False + pos: -64.5,52.5 + parent: 1 + type: Transform +- proto: DeskBell + entities: + - uid: 4988 + components: + - pos: -47.244946,56.398804 + parent: 1 + type: Transform + - uid: 4989 + components: + - pos: -45.550537,43.981125 + parent: 1 + type: Transform + - uid: 4990 + components: + - pos: -39.378662,43.49675 + parent: 1 + type: Transform + - uid: 4991 + components: + - pos: -36.738037,41.679382 + parent: 1 + type: Transform + - uid: 4992 + components: + - pos: -33.70732,38.156784 + parent: 1 + type: Transform + - uid: 4993 + components: + - pos: -24.25037,9.298397 + parent: 1 + type: Transform + - uid: 4994 + components: + - pos: -36.891582,2.4105499 + parent: 1 + type: Transform + - uid: 4995 + components: + - pos: -7.7214417,3.4652395 + parent: 1 + type: Transform + - uid: 4997 + components: + - pos: -10.2346735,11.798739 + parent: 1 + type: Transform + - uid: 4998 + components: + - pos: -0.23595914,28.693384 + parent: 1 + type: Transform + - uid: 4999 + components: + - pos: -1.0953342,32.52913 + parent: 1 + type: Transform + - uid: 5000 + components: + - pos: -19.786932,36.45546 + parent: 1 + type: Transform + - uid: 5001 + components: + - pos: -54.116062,17.501276 + parent: 1 + type: Transform + - uid: 5003 + components: + - pos: -0.74886024,7.6462955 + parent: 1 + type: Transform +- proto: DiseaseDiagnoser + entities: + - uid: 2362 + components: + - pos: 11.5,16.5 + parent: 1 + type: Transform +- proto: DisposalBend + entities: + - uid: 8668 + components: + - rot: 3.141592653589793 rad + pos: -50.5,55.5 + parent: 1 + type: Transform + - uid: 8669 + components: + - pos: -48.5,55.5 + parent: 1 + type: Transform + - uid: 8670 + components: + - pos: -50.5,65.5 + parent: 1 + type: Transform + - uid: 12920 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,23.5 + parent: 1 + type: Transform + - uid: 12921 + components: + - rot: 3.141592653589793 rad + pos: 3.5,14.5 + parent: 1 + type: Transform + - uid: 12946 + components: + - pos: 11.5,19.5 + parent: 1 + type: Transform + - uid: 12947 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,29.5 + parent: 1 + type: Transform + - uid: 13154 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-2.5 + parent: 1 + type: Transform + - uid: 13155 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 13244 + components: + - rot: 3.141592653589793 rad + pos: -57.5,-10.5 + parent: 1 + type: Transform + - uid: 13271 + components: + - rot: 3.141592653589793 rad + pos: -56.5,32.5 + parent: 1 + type: Transform + - uid: 13284 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,15.5 + parent: 1 + type: Transform + - uid: 13324 + components: + - rot: 3.141592653589793 rad + pos: -2.5,29.5 + parent: 1 + type: Transform + - uid: 13325 + components: + - pos: -2.5,30.5 + parent: 1 + type: Transform + - uid: 13388 + components: + - pos: -3.5,31.5 + parent: 1 + type: Transform + - uid: 13389 + components: + - rot: 3.141592653589793 rad + pos: -6.5,31.5 + parent: 1 + type: Transform + - uid: 13390 + components: + - pos: -6.5,32.5 + parent: 1 + type: Transform + - uid: 13397 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,30.5 + parent: 1 + type: Transform + - uid: 13446 + components: + - rot: 3.141592653589793 rad + pos: -26.5,28.5 + parent: 1 + type: Transform + - uid: 13447 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,28.5 + parent: 1 + type: Transform + - uid: 13473 + components: + - rot: 3.141592653589793 rad + pos: -20.5,42.5 + parent: 1 + type: Transform + - uid: 13474 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,45.5 + parent: 1 + type: Transform + - uid: 13495 + components: + - pos: -17.5,59.5 + parent: 1 + type: Transform + - uid: 13496 + components: + - rot: 3.141592653589793 rad + pos: -17.5,55.5 + parent: 1 + type: Transform + - uid: 13497 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,55.5 + parent: 1 + type: Transform + - uid: 13516 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,20.5 + parent: 1 + type: Transform + - uid: 13531 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,40.5 + parent: 1 + type: Transform + - uid: 13532 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,40.5 + parent: 1 + type: Transform + - uid: 13535 + components: + - pos: -37.5,42.5 + parent: 1 + type: Transform + - uid: 13538 + components: + - pos: -56.5,33.5 + parent: 1 + type: Transform + - uid: 13542 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,46.5 + parent: 1 + type: Transform + - uid: 13555 + components: + - pos: -57.5,47.5 + parent: 1 + type: Transform + - uid: 13557 + components: + - rot: 3.141592653589793 rad + pos: -66.5,47.5 + parent: 1 + type: Transform + - uid: 13558 + components: + - pos: -66.5,50.5 + parent: 1 + type: Transform + - uid: 13559 + components: + - rot: 3.141592653589793 rad + pos: -67.5,50.5 + parent: 1 + type: Transform + - uid: 13561 + components: + - pos: -67.5,52.5 + parent: 1 + type: Transform + - uid: 13562 + components: + - pos: -70.5,54.5 + parent: 1 + type: Transform + - uid: 13563 + components: + - rot: 3.141592653589793 rad + pos: -70.5,52.5 + parent: 1 + type: Transform + - uid: 13592 + components: + - pos: -64.5,33.5 + parent: 1 + type: Transform + - uid: 13593 + components: + - rot: 3.141592653589793 rad + pos: -64.5,28.5 + parent: 1 + type: Transform + - uid: 13594 + components: + - rot: 1.5707963267948966 rad + pos: -73.5,33.5 + parent: 1 + type: Transform +- proto: DisposalJunction + entities: + - uid: 8673 + components: + - pos: -50.5,58.5 + parent: 1 + type: Transform + - uid: 12951 + components: + - rot: 3.141592653589793 rad + pos: 3.5,19.5 + parent: 1 + type: Transform + - uid: 13156 + components: + - rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 13187 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,5.5 + parent: 1 + type: Transform + - uid: 13204 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,5.5 + parent: 1 + type: Transform + - uid: 13245 + components: + - rot: 3.141592653589793 rad + pos: -57.5,5.5 + parent: 1 + type: Transform + - uid: 13283 + components: + - rot: 3.141592653589793 rad + pos: -57.5,46.5 + parent: 1 + type: Transform + - uid: 13287 + components: + - rot: 3.141592653589793 rad + pos: -57.5,15.5 + parent: 1 + type: Transform + - uid: 13296 + components: + - rot: 3.141592653589793 rad + pos: -57.5,37.5 + parent: 1 + type: Transform + - uid: 13326 + components: + - rot: 3.141592653589793 rad + pos: -3.5,30.5 + parent: 1 + type: Transform + - uid: 13425 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,32.5 + parent: 1 + type: Transform + - uid: 13455 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,32.5 + parent: 1 + type: Transform + - uid: 13476 + components: + - pos: -16.5,45.5 + parent: 1 + type: Transform + - uid: 13530 + components: + - pos: -38.5,39.5 + parent: 1 + type: Transform + - uid: 13539 + components: + - rot: 3.141592653589793 rad + pos: -57.5,33.5 + parent: 1 + type: Transform + - uid: 13545 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,46.5 + parent: 1 + type: Transform +- proto: DisposalJunctionFlipped + entities: + - uid: 12953 + components: + - rot: 3.141592653589793 rad + pos: 3.5,23.5 + parent: 1 + type: Transform + - uid: 12954 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,29.5 + parent: 1 + type: Transform + - uid: 13108 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,5.5 + parent: 1 + type: Transform + - uid: 13132 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,5.5 + parent: 1 + type: Transform + - uid: 13157 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,5.5 + parent: 1 + type: Transform + - uid: 13288 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,5.5 + parent: 1 + type: Transform + - uid: 13396 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,32.5 + parent: 1 + type: Transform + - uid: 13443 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,32.5 + parent: 1 + type: Transform + - uid: 13454 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,32.5 + parent: 1 + type: Transform + - uid: 13517 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,32.5 + parent: 1 + type: Transform + - uid: 13540 + components: + - rot: 3.141592653589793 rad + pos: -57.5,32.5 + parent: 1 + type: Transform + - uid: 13547 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,46.5 + parent: 1 + type: Transform +- proto: DisposalPipe + entities: + - uid: 582 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-11.5 + parent: 1 + type: Transform + - uid: 1591 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-11.5 + parent: 1 + type: Transform + - uid: 1592 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-11.5 + parent: 1 + type: Transform + - uid: 1593 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-11.5 + parent: 1 + type: Transform + - uid: 5318 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,5.5 + parent: 1 + type: Transform + - uid: 8653 + components: + - pos: -50.5,57.5 + parent: 1 + type: Transform + - uid: 8654 + components: + - pos: -50.5,56.5 + parent: 1 + type: Transform + - uid: 8655 + components: + - pos: -50.5,60.5 + parent: 1 + type: Transform + - uid: 8656 + components: + - pos: -50.5,61.5 + parent: 1 + type: Transform + - uid: 8657 + components: + - pos: -50.5,62.5 + parent: 1 + type: Transform + - uid: 8658 + components: + - pos: -50.5,63.5 + parent: 1 + type: Transform + - uid: 8659 + components: + - pos: -50.5,64.5 + parent: 1 + type: Transform + - uid: 8660 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,55.5 + parent: 1 + type: Transform + - uid: 8661 + components: + - rot: 3.141592653589793 rad + pos: -48.5,54.5 + parent: 1 + type: Transform + - uid: 8662 + components: + - rot: 3.141592653589793 rad + pos: -48.5,53.5 + parent: 1 + type: Transform + - uid: 8663 + components: + - rot: 3.141592653589793 rad + pos: -48.5,52.5 + parent: 1 + type: Transform + - uid: 8664 + components: + - rot: 3.141592653589793 rad + pos: -48.5,51.5 + parent: 1 + type: Transform + - uid: 8665 + components: + - rot: 3.141592653589793 rad + pos: -48.5,50.5 + parent: 1 + type: Transform + - uid: 8666 + components: + - rot: 3.141592653589793 rad + pos: -48.5,49.5 + parent: 1 + type: Transform + - uid: 8667 + components: + - rot: 3.141592653589793 rad + pos: -48.5,48.5 + parent: 1 + type: Transform + - uid: 11148 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,46.5 + parent: 1 + type: Transform + - uid: 12922 + components: + - rot: 3.141592653589793 rad + pos: 3.5,15.5 + parent: 1 + type: Transform + - uid: 12923 + components: + - rot: 3.141592653589793 rad + pos: 3.5,16.5 + parent: 1 + type: Transform + - uid: 12924 + components: + - rot: 3.141592653589793 rad + pos: 3.5,17.5 + parent: 1 + type: Transform + - uid: 12925 + components: + - rot: 3.141592653589793 rad + pos: 3.5,18.5 + parent: 1 + type: Transform + - uid: 12926 + components: + - rot: 3.141592653589793 rad + pos: 3.5,20.5 + parent: 1 + type: Transform + - uid: 12927 + components: + - rot: 3.141592653589793 rad + pos: 3.5,21.5 + parent: 1 + type: Transform + - uid: 12928 + components: + - rot: 3.141592653589793 rad + pos: 3.5,22.5 + parent: 1 + type: Transform + - uid: 12929 + components: + - rot: 3.141592653589793 rad + pos: 3.5,24.5 + parent: 1 + type: Transform + - uid: 12930 + components: + - rot: 3.141592653589793 rad + pos: 3.5,25.5 + parent: 1 + type: Transform + - uid: 12931 + components: + - rot: 3.141592653589793 rad + pos: 3.5,26.5 + parent: 1 + type: Transform + - uid: 12932 + components: + - rot: 3.141592653589793 rad + pos: 3.5,27.5 + parent: 1 + type: Transform + - uid: 12933 + components: + - rot: 3.141592653589793 rad + pos: 3.5,28.5 + parent: 1 + type: Transform + - uid: 12934 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,29.5 + parent: 1 + type: Transform + - uid: 12935 + components: + - pos: 11.5,15.5 + parent: 1 + type: Transform + - uid: 12936 + components: + - pos: 11.5,16.5 + parent: 1 + type: Transform + - uid: 12937 + components: + - pos: 11.5,17.5 + parent: 1 + type: Transform + - uid: 12938 + components: + - pos: 11.5,18.5 + parent: 1 + type: Transform + - uid: 12939 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,19.5 + parent: 1 + type: Transform + - uid: 12940 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,19.5 + parent: 1 + type: Transform + - uid: 12941 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,19.5 + parent: 1 + type: Transform + - uid: 12942 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,19.5 + parent: 1 + type: Transform + - uid: 12943 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,19.5 + parent: 1 + type: Transform + - uid: 12944 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,19.5 + parent: 1 + type: Transform + - uid: 12945 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,19.5 + parent: 1 + type: Transform + - uid: 12948 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,29.5 + parent: 1 + type: Transform + - uid: 12949 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,23.5 + parent: 1 + type: Transform + - uid: 12950 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,23.5 + parent: 1 + type: Transform + - uid: 13109 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,5.5 + parent: 1 + type: Transform + - uid: 13110 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,5.5 + parent: 1 + type: Transform + - uid: 13111 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,5.5 + parent: 1 + type: Transform + - uid: 13112 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,5.5 + parent: 1 + type: Transform + - uid: 13113 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,5.5 + parent: 1 + type: Transform + - uid: 13114 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,5.5 + parent: 1 + type: Transform + - uid: 13115 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,5.5 + parent: 1 + type: Transform + - uid: 13116 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,5.5 + parent: 1 + type: Transform + - uid: 13117 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,5.5 + parent: 1 + type: Transform + - uid: 13118 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,5.5 + parent: 1 + type: Transform + - uid: 13119 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,5.5 + parent: 1 + type: Transform + - uid: 13120 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,5.5 + parent: 1 + type: Transform + - uid: 13121 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,5.5 + parent: 1 + type: Transform + - uid: 13122 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,5.5 + parent: 1 + type: Transform + - uid: 13123 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,5.5 + parent: 1 + type: Transform + - uid: 13124 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-2.5 + parent: 1 + type: Transform + - uid: 13125 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-1.5 + parent: 1 + type: Transform + - uid: 13126 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-0.5 + parent: 1 + type: Transform + - uid: 13127 + components: + - rot: 3.141592653589793 rad + pos: 11.5,0.5 + parent: 1 + type: Transform + - uid: 13128 + components: + - rot: 3.141592653589793 rad + pos: 11.5,1.5 + parent: 1 + type: Transform + - uid: 13129 + components: + - rot: 3.141592653589793 rad + pos: 11.5,2.5 + parent: 1 + type: Transform + - uid: 13130 + components: + - rot: 3.141592653589793 rad + pos: 11.5,3.5 + parent: 1 + type: Transform + - uid: 13131 + components: + - rot: 3.141592653589793 rad + pos: 11.5,4.5 + parent: 1 + type: Transform + - uid: 13134 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,5.5 + parent: 1 + type: Transform + - uid: 13135 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,5.5 + parent: 1 + type: Transform + - uid: 13136 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,5.5 + parent: 1 + type: Transform + - uid: 13137 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,5.5 + parent: 1 + type: Transform + - uid: 13138 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,5.5 + parent: 1 + type: Transform + - uid: 13139 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 + type: Transform + - uid: 13140 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 13141 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,5.5 + parent: 1 + type: Transform + - uid: 13142 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 13143 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 13144 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 13145 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 13146 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 13147 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 13148 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 13149 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1 + type: Transform + - uid: 13150 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 1 + type: Transform + - uid: 13151 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,5.5 + parent: 1 + type: Transform + - uid: 13158 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-2.5 + parent: 1 + type: Transform + - uid: 13159 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 1 + type: Transform + - uid: 13160 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-2.5 + parent: 1 + type: Transform + - uid: 13161 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-2.5 + parent: 1 + type: Transform + - uid: 13162 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-2.5 + parent: 1 + type: Transform + - uid: 13163 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 1 + type: Transform + - uid: 13164 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-2.5 + parent: 1 + type: Transform + - uid: 13165 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-2.5 + parent: 1 + type: Transform + - uid: 13166 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 1 + type: Transform + - uid: 13167 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-2.5 + parent: 1 + type: Transform + - uid: 13168 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 1 + type: Transform + - uid: 13169 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-0.5 + parent: 1 + type: Transform + - uid: 13170 + components: + - rot: 3.141592653589793 rad + pos: -7.5,0.5 + parent: 1 + type: Transform + - uid: 13171 + components: + - rot: 3.141592653589793 rad + pos: -7.5,1.5 + parent: 1 + type: Transform + - uid: 13172 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,2.5 + parent: 1 + type: Transform + - uid: 13173 + components: + - pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 13174 + components: + - pos: -7.5,4.5 + parent: 1 + type: Transform + - uid: 13175 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,5.5 + parent: 1 + type: Transform + - uid: 13176 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,5.5 + parent: 1 + type: Transform + - uid: 13177 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,5.5 + parent: 1 + type: Transform + - uid: 13178 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,5.5 + parent: 1 + type: Transform + - uid: 13179 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,5.5 + parent: 1 + type: Transform + - uid: 13180 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,5.5 + parent: 1 + type: Transform + - uid: 13181 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,5.5 + parent: 1 + type: Transform + - uid: 13182 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,5.5 + parent: 1 + type: Transform + - uid: 13183 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,5.5 + parent: 1 + type: Transform + - uid: 13184 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,5.5 + parent: 1 + type: Transform + - uid: 13185 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,5.5 + parent: 1 + type: Transform + - uid: 13186 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,5.5 + parent: 1 + type: Transform + - uid: 13189 + components: + - pos: -20.5,6.5 + parent: 1 + type: Transform + - uid: 13190 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,5.5 + parent: 1 + type: Transform + - uid: 13191 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,5.5 + parent: 1 + type: Transform + - uid: 13192 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,5.5 + parent: 1 + type: Transform + - uid: 13193 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,5.5 + parent: 1 + type: Transform + - uid: 13194 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,5.5 + parent: 1 + type: Transform + - uid: 13195 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,5.5 + parent: 1 + type: Transform + - uid: 13196 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,5.5 + parent: 1 + type: Transform + - uid: 13197 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,5.5 + parent: 1 + type: Transform + - uid: 13198 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,5.5 + parent: 1 + type: Transform + - uid: 13199 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,5.5 + parent: 1 + type: Transform + - uid: 13200 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,5.5 + parent: 1 + type: Transform + - uid: 13201 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,5.5 + parent: 1 + type: Transform + - uid: 13202 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,5.5 + parent: 1 + type: Transform + - uid: 13203 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,5.5 + parent: 1 + type: Transform + - uid: 13205 + components: + - rot: 3.141592653589793 rad + pos: -35.5,6.5 + parent: 1 + type: Transform + - uid: 13207 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,5.5 + parent: 1 + type: Transform + - uid: 13208 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,5.5 + parent: 1 + type: Transform + - uid: 13209 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,5.5 + parent: 1 + type: Transform + - uid: 13210 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,5.5 + parent: 1 + type: Transform + - uid: 13211 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,5.5 + parent: 1 + type: Transform + - uid: 13212 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,5.5 + parent: 1 + type: Transform + - uid: 13213 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,5.5 + parent: 1 + type: Transform + - uid: 13214 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,5.5 + parent: 1 + type: Transform + - uid: 13215 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,5.5 + parent: 1 + type: Transform + - uid: 13216 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,5.5 + parent: 1 + type: Transform + - uid: 13217 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,5.5 + parent: 1 + type: Transform + - uid: 13219 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,5.5 + parent: 1 + type: Transform + - uid: 13220 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,5.5 + parent: 1 + type: Transform + - uid: 13222 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,5.5 + parent: 1 + type: Transform + - uid: 13223 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,5.5 + parent: 1 + type: Transform + - uid: 13224 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,5.5 + parent: 1 + type: Transform + - uid: 13225 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,5.5 + parent: 1 + type: Transform + - uid: 13226 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,5.5 + parent: 1 + type: Transform + - uid: 13227 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,5.5 + parent: 1 + type: Transform + - uid: 13228 + components: + - rot: 3.141592653589793 rad + pos: -57.5,-9.5 + parent: 1 + type: Transform + - uid: 13229 + components: + - rot: 3.141592653589793 rad + pos: -57.5,-8.5 + parent: 1 + type: Transform + - uid: 13230 + components: + - rot: 3.141592653589793 rad + pos: -57.5,-7.5 + parent: 1 + type: Transform + - uid: 13231 + components: + - rot: 3.141592653589793 rad + pos: -57.5,-6.5 + parent: 1 + type: Transform + - uid: 13232 + components: + - rot: 3.141592653589793 rad + pos: -57.5,-5.5 + parent: 1 + type: Transform + - uid: 13233 + components: + - rot: 3.141592653589793 rad + pos: -57.5,-4.5 + parent: 1 + type: Transform + - uid: 13234 + components: + - rot: 3.141592653589793 rad + pos: -57.5,-3.5 + parent: 1 + type: Transform + - uid: 13235 + components: + - rot: 3.141592653589793 rad + pos: -57.5,-2.5 + parent: 1 + type: Transform + - uid: 13236 + components: + - rot: 3.141592653589793 rad + pos: -57.5,-1.5 + parent: 1 + type: Transform + - uid: 13237 + components: + - rot: 3.141592653589793 rad + pos: -57.5,-0.5 + parent: 1 + type: Transform + - uid: 13238 + components: + - rot: 3.141592653589793 rad + pos: -57.5,0.5 + parent: 1 + type: Transform + - uid: 13239 + components: + - rot: 3.141592653589793 rad + pos: -57.5,1.5 + parent: 1 + type: Transform + - uid: 13240 + components: + - rot: 3.141592653589793 rad + pos: -57.5,2.5 + parent: 1 + type: Transform + - uid: 13241 + components: + - rot: 3.141592653589793 rad + pos: -57.5,3.5 + parent: 1 + type: Transform + - uid: 13242 + components: + - rot: 3.141592653589793 rad + pos: -57.5,4.5 + parent: 1 + type: Transform + - uid: 13246 + components: + - rot: 3.141592653589793 rad + pos: -57.5,6.5 + parent: 1 + type: Transform + - uid: 13247 + components: + - rot: 3.141592653589793 rad + pos: -57.5,7.5 + parent: 1 + type: Transform + - uid: 13248 + components: + - rot: 3.141592653589793 rad + pos: -57.5,8.5 + parent: 1 + type: Transform + - uid: 13249 + components: + - rot: 3.141592653589793 rad + pos: -57.5,9.5 + parent: 1 + type: Transform + - uid: 13250 + components: + - rot: 3.141592653589793 rad + pos: -57.5,10.5 + parent: 1 + type: Transform + - uid: 13251 + components: + - rot: 3.141592653589793 rad + pos: -57.5,11.5 + parent: 1 + type: Transform + - uid: 13252 + components: + - rot: 3.141592653589793 rad + pos: -57.5,12.5 + parent: 1 + type: Transform + - uid: 13253 + components: + - rot: 3.141592653589793 rad + pos: -57.5,13.5 + parent: 1 + type: Transform + - uid: 13254 + components: + - rot: 3.141592653589793 rad + pos: -57.5,14.5 + parent: 1 + type: Transform + - uid: 13255 + components: + - rot: 3.141592653589793 rad + pos: -57.5,16.5 + parent: 1 + type: Transform + - uid: 13256 + components: + - rot: 3.141592653589793 rad + pos: -57.5,17.5 + parent: 1 + type: Transform + - uid: 13257 + components: + - rot: 3.141592653589793 rad + pos: -57.5,18.5 + parent: 1 + type: Transform + - uid: 13258 + components: + - rot: 3.141592653589793 rad + pos: -57.5,19.5 + parent: 1 + type: Transform + - uid: 13259 + components: + - rot: 3.141592653589793 rad + pos: -57.5,20.5 + parent: 1 + type: Transform + - uid: 13260 + components: + - rot: 3.141592653589793 rad + pos: -57.5,21.5 + parent: 1 + type: Transform + - uid: 13261 + components: + - rot: 3.141592653589793 rad + pos: -57.5,22.5 + parent: 1 + type: Transform + - uid: 13262 + components: + - rot: 3.141592653589793 rad + pos: -57.5,23.5 + parent: 1 + type: Transform + - uid: 13263 + components: + - rot: 3.141592653589793 rad + pos: -57.5,24.5 + parent: 1 + type: Transform + - uid: 13264 + components: + - rot: 3.141592653589793 rad + pos: -57.5,25.5 + parent: 1 + type: Transform + - uid: 13265 + components: + - rot: 3.141592653589793 rad + pos: -57.5,26.5 + parent: 1 + type: Transform + - uid: 13266 + components: + - rot: 3.141592653589793 rad + pos: -57.5,27.5 + parent: 1 + type: Transform + - uid: 13267 + components: + - rot: 3.141592653589793 rad + pos: -57.5,28.5 + parent: 1 + type: Transform + - uid: 13268 + components: + - rot: 3.141592653589793 rad + pos: -57.5,29.5 + parent: 1 + type: Transform + - uid: 13269 + components: + - rot: 3.141592653589793 rad + pos: -57.5,30.5 + parent: 1 + type: Transform + - uid: 13270 + components: + - rot: 3.141592653589793 rad + pos: -57.5,31.5 + parent: 1 + type: Transform + - uid: 13272 + components: + - rot: 3.141592653589793 rad + pos: -57.5,34.5 + parent: 1 + type: Transform + - uid: 13273 + components: + - rot: 3.141592653589793 rad + pos: -57.5,35.5 + parent: 1 + type: Transform + - uid: 13274 + components: + - rot: 3.141592653589793 rad + pos: -57.5,36.5 + parent: 1 + type: Transform + - uid: 13275 + components: + - rot: 3.141592653589793 rad + pos: -57.5,38.5 + parent: 1 + type: Transform + - uid: 13276 + components: + - rot: 3.141592653589793 rad + pos: -57.5,39.5 + parent: 1 + type: Transform + - uid: 13277 + components: + - rot: 3.141592653589793 rad + pos: -57.5,40.5 + parent: 1 + type: Transform + - uid: 13278 + components: + - rot: 3.141592653589793 rad + pos: -57.5,41.5 + parent: 1 + type: Transform + - uid: 13279 + components: + - rot: 3.141592653589793 rad + pos: -57.5,42.5 + parent: 1 + type: Transform + - uid: 13280 + components: + - rot: 3.141592653589793 rad + pos: -57.5,43.5 + parent: 1 + type: Transform + - uid: 13281 + components: + - rot: 3.141592653589793 rad + pos: -57.5,44.5 + parent: 1 + type: Transform + - uid: 13282 + components: + - rot: 3.141592653589793 rad + pos: -57.5,45.5 + parent: 1 + type: Transform + - uid: 13286 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,15.5 + parent: 1 + type: Transform + - uid: 13290 + components: + - rot: 3.141592653589793 rad + pos: -49.5,4.5 + parent: 1 + type: Transform + - uid: 13295 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,37.5 + parent: 1 + type: Transform + - uid: 13328 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,29.5 + parent: 1 + type: Transform + - uid: 13329 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,29.5 + parent: 1 + type: Transform + - uid: 13330 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,29.5 + parent: 1 + type: Transform + - uid: 13374 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,47.5 + parent: 1 + type: Transform + - uid: 13375 + components: + - rot: 1.5707963267948966 rad + pos: -60.5,47.5 + parent: 1 + type: Transform + - uid: 13376 + components: + - rot: 1.5707963267948966 rad + pos: -61.5,47.5 + parent: 1 + type: Transform + - uid: 13377 + components: + - rot: 1.5707963267948966 rad + pos: -62.5,47.5 + parent: 1 + type: Transform + - uid: 13378 + components: + - rot: 1.5707963267948966 rad + pos: -63.5,47.5 + parent: 1 + type: Transform + - uid: 13379 + components: + - rot: 1.5707963267948966 rad + pos: -64.5,47.5 + parent: 1 + type: Transform + - uid: 13380 + components: + - rot: 1.5707963267948966 rad + pos: -65.5,47.5 + parent: 1 + type: Transform + - uid: 13381 + components: + - pos: -66.5,48.5 + parent: 1 + type: Transform + - uid: 13382 + components: + - pos: -66.5,49.5 + parent: 1 + type: Transform + - uid: 13383 + components: + - rot: 3.141592653589793 rad + pos: -67.5,51.5 + parent: 1 + type: Transform + - uid: 13384 + components: + - rot: 1.5707963267948966 rad + pos: -68.5,52.5 + parent: 1 + type: Transform + - uid: 13385 + components: + - rot: 1.5707963267948966 rad + pos: -69.5,52.5 + parent: 1 + type: Transform + - uid: 13386 + components: + - pos: -70.5,53.5 + parent: 1 + type: Transform + - uid: 13387 + components: + - rot: -1.5707963267948966 rad + pos: -71.5,54.5 + parent: 1 + type: Transform + - uid: 13391 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,31.5 + parent: 1 + type: Transform + - uid: 13392 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,31.5 + parent: 1 + type: Transform + - uid: 13393 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,32.5 + parent: 1 + type: Transform + - uid: 13394 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,30.5 + parent: 1 + type: Transform + - uid: 13395 + components: + - rot: 3.141592653589793 rad + pos: -8.5,31.5 + parent: 1 + type: Transform + - uid: 13399 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,32.5 + parent: 1 + type: Transform + - uid: 13400 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,32.5 + parent: 1 + type: Transform + - uid: 13401 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,32.5 + parent: 1 + type: Transform + - uid: 13402 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,32.5 + parent: 1 + type: Transform + - uid: 13403 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,32.5 + parent: 1 + type: Transform + - uid: 13404 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,32.5 + parent: 1 + type: Transform + - uid: 13405 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,32.5 + parent: 1 + type: Transform + - uid: 13406 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,32.5 + parent: 1 + type: Transform + - uid: 13407 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,32.5 + parent: 1 + type: Transform + - uid: 13408 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,32.5 + parent: 1 + type: Transform + - uid: 13409 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,32.5 + parent: 1 + type: Transform + - uid: 13410 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,32.5 + parent: 1 + type: Transform + - uid: 13411 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,32.5 + parent: 1 + type: Transform + - uid: 13412 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,32.5 + parent: 1 + type: Transform + - uid: 13413 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,32.5 + parent: 1 + type: Transform + - uid: 13414 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,32.5 + parent: 1 + type: Transform + - uid: 13415 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,32.5 + parent: 1 + type: Transform + - uid: 13416 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,32.5 + parent: 1 + type: Transform + - uid: 13417 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,32.5 + parent: 1 + type: Transform + - uid: 13418 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,32.5 + parent: 1 + type: Transform + - uid: 13419 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,32.5 + parent: 1 + type: Transform + - uid: 13420 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,32.5 + parent: 1 + type: Transform + - uid: 13421 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,32.5 + parent: 1 + type: Transform + - uid: 13422 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,32.5 + parent: 1 + type: Transform + - uid: 13423 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,32.5 + parent: 1 + type: Transform + - uid: 13424 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,32.5 + parent: 1 + type: Transform + - uid: 13426 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,32.5 + parent: 1 + type: Transform + - uid: 13427 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,32.5 + parent: 1 + type: Transform + - uid: 13428 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,32.5 + parent: 1 + type: Transform + - uid: 13429 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,32.5 + parent: 1 + type: Transform + - uid: 13430 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,32.5 + parent: 1 + type: Transform + - uid: 13431 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,32.5 + parent: 1 + type: Transform + - uid: 13432 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,32.5 + parent: 1 + type: Transform + - uid: 13433 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,32.5 + parent: 1 + type: Transform + - uid: 13434 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,32.5 + parent: 1 + type: Transform + - uid: 13435 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,32.5 + parent: 1 + type: Transform + - uid: 13436 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,32.5 + parent: 1 + type: Transform + - uid: 13437 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,32.5 + parent: 1 + type: Transform + - uid: 13438 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,32.5 + parent: 1 + type: Transform + - uid: 13439 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,32.5 + parent: 1 + type: Transform + - uid: 13440 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,32.5 + parent: 1 + type: Transform + - uid: 13441 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,32.5 + parent: 1 + type: Transform + - uid: 13442 + components: + - pos: -45.5,31.5 + parent: 1 + type: Transform + - uid: 13448 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,28.5 + parent: 1 + type: Transform + - uid: 13449 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,28.5 + parent: 1 + type: Transform + - uid: 13450 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,28.5 + parent: 1 + type: Transform + - uid: 13451 + components: + - rot: 3.141592653589793 rad + pos: -22.5,29.5 + parent: 1 + type: Transform + - uid: 13452 + components: + - rot: 3.141592653589793 rad + pos: -22.5,31.5 + parent: 1 + type: Transform + - uid: 13453 + components: + - rot: 3.141592653589793 rad + pos: -22.5,30.5 + parent: 1 + type: Transform + - uid: 13456 + components: + - rot: 3.141592653589793 rad + pos: -16.5,33.5 + parent: 1 + type: Transform + - uid: 13457 + components: + - rot: 3.141592653589793 rad + pos: -16.5,34.5 + parent: 1 + type: Transform + - uid: 13458 + components: + - rot: 3.141592653589793 rad + pos: -16.5,35.5 + parent: 1 + type: Transform + - uid: 13459 + components: + - rot: 3.141592653589793 rad + pos: -16.5,36.5 + parent: 1 + type: Transform + - uid: 13460 + components: + - rot: 3.141592653589793 rad + pos: -16.5,37.5 + parent: 1 + type: Transform + - uid: 13461 + components: + - rot: 3.141592653589793 rad + pos: -16.5,38.5 + parent: 1 + type: Transform + - uid: 13462 + components: + - rot: 3.141592653589793 rad + pos: -16.5,39.5 + parent: 1 + type: Transform + - uid: 13463 + components: + - rot: 3.141592653589793 rad + pos: -16.5,40.5 + parent: 1 + type: Transform + - uid: 13464 + components: + - rot: 3.141592653589793 rad + pos: -16.5,41.5 + parent: 1 + type: Transform + - uid: 13465 + components: + - rot: 3.141592653589793 rad + pos: -16.5,42.5 + parent: 1 + type: Transform + - uid: 13466 + components: + - rot: 3.141592653589793 rad + pos: -16.5,43.5 + parent: 1 + type: Transform + - uid: 13467 + components: + - rot: 3.141592653589793 rad + pos: -16.5,44.5 + parent: 1 + type: Transform + - uid: 13468 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,45.5 + parent: 1 + type: Transform + - uid: 13469 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,45.5 + parent: 1 + type: Transform + - uid: 13470 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,45.5 + parent: 1 + type: Transform + - uid: 13471 + components: + - pos: -20.5,44.5 + parent: 1 + type: Transform + - uid: 13472 + components: + - pos: -20.5,43.5 + parent: 1 + type: Transform + - uid: 13477 + components: + - pos: -16.5,46.5 + parent: 1 + type: Transform + - uid: 13478 + components: + - pos: -16.5,47.5 + parent: 1 + type: Transform + - uid: 13479 + components: + - pos: -16.5,48.5 + parent: 1 + type: Transform + - uid: 13480 + components: + - pos: -16.5,49.5 + parent: 1 + type: Transform + - uid: 13481 + components: + - pos: -16.5,50.5 + parent: 1 + type: Transform + - uid: 13482 + components: + - pos: -16.5,51.5 + parent: 1 + type: Transform + - uid: 13483 + components: + - pos: -16.5,52.5 + parent: 1 + type: Transform + - uid: 13484 + components: + - pos: -16.5,53.5 + parent: 1 + type: Transform + - uid: 13485 + components: + - pos: -16.5,54.5 + parent: 1 + type: Transform + - uid: 13486 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,55.5 + parent: 1 + type: Transform + - uid: 13487 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,55.5 + parent: 1 + type: Transform + - uid: 13488 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,55.5 + parent: 1 + type: Transform + - uid: 13489 + components: + - rot: 3.141592653589793 rad + pos: -12.5,56.5 + parent: 1 + type: Transform + - uid: 13490 + components: + - rot: 3.141592653589793 rad + pos: -17.5,56.5 + parent: 1 + type: Transform + - uid: 13491 + components: + - rot: 3.141592653589793 rad + pos: -17.5,57.5 + parent: 1 + type: Transform + - uid: 13492 + components: + - rot: 3.141592653589793 rad + pos: -17.5,58.5 + parent: 1 + type: Transform + - uid: 13493 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,59.5 + parent: 1 + type: Transform + - uid: 13494 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,59.5 + parent: 1 + type: Transform + - uid: 13504 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,20.5 + parent: 1 + type: Transform + - uid: 13505 + components: + - pos: -37.5,21.5 + parent: 1 + type: Transform + - uid: 13506 + components: + - pos: -37.5,22.5 + parent: 1 + type: Transform + - uid: 13507 + components: + - pos: -37.5,23.5 + parent: 1 + type: Transform + - uid: 13508 + components: + - pos: -37.5,24.5 + parent: 1 + type: Transform + - uid: 13509 + components: + - pos: -37.5,25.5 + parent: 1 + type: Transform + - uid: 13510 + components: + - pos: -37.5,26.5 + parent: 1 + type: Transform + - uid: 13511 + components: + - pos: -37.5,27.5 + parent: 1 + type: Transform + - uid: 13512 + components: + - pos: -37.5,28.5 + parent: 1 + type: Transform + - uid: 13513 + components: + - pos: -37.5,29.5 + parent: 1 + type: Transform + - uid: 13514 + components: + - pos: -37.5,30.5 + parent: 1 + type: Transform + - uid: 13515 + components: + - pos: -37.5,31.5 + parent: 1 + type: Transform + - uid: 13519 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,39.5 + parent: 1 + type: Transform + - uid: 13520 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,39.5 + parent: 1 + type: Transform + - uid: 13521 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,39.5 + parent: 1 + type: Transform + - uid: 13522 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,39.5 + parent: 1 + type: Transform + - uid: 13523 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,39.5 + parent: 1 + type: Transform + - uid: 13524 + components: + - pos: -38.5,38.5 + parent: 1 + type: Transform + - uid: 13525 + components: + - pos: -38.5,37.5 + parent: 1 + type: Transform + - uid: 13526 + components: + - pos: -38.5,36.5 + parent: 1 + type: Transform + - uid: 13527 + components: + - pos: -38.5,35.5 + parent: 1 + type: Transform + - uid: 13528 + components: + - pos: -38.5,34.5 + parent: 1 + type: Transform + - uid: 13529 + components: + - pos: -38.5,33.5 + parent: 1 + type: Transform + - uid: 13537 + components: + - pos: -37.5,41.5 + parent: 1 + type: Transform + - uid: 13541 + components: + - rot: 3.141592653589793 rad + pos: -49.5,45.5 + parent: 1 + type: Transform + - uid: 13543 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,46.5 + parent: 1 + type: Transform + - uid: 13544 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,46.5 + parent: 1 + type: Transform + - uid: 13548 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,46.5 + parent: 1 + type: Transform + - uid: 13549 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,46.5 + parent: 1 + type: Transform + - uid: 13550 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,46.5 + parent: 1 + type: Transform + - uid: 13551 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,46.5 + parent: 1 + type: Transform + - uid: 13552 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,46.5 + parent: 1 + type: Transform + - uid: 13553 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,46.5 + parent: 1 + type: Transform + - uid: 13554 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,46.5 + parent: 1 + type: Transform + - uid: 13556 + components: + - rot: -1.5707963267948966 rad + pos: -72.5,54.5 + parent: 1 + type: Transform + - uid: 13560 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,47.5 + parent: 1 + type: Transform + - uid: 13564 + components: + - rot: 3.141592653589793 rad + pos: -73.5,20.5 + parent: 1 + type: Transform + - uid: 13565 + components: + - rot: 3.141592653589793 rad + pos: -73.5,21.5 + parent: 1 + type: Transform + - uid: 13566 + components: + - rot: 3.141592653589793 rad + pos: -73.5,22.5 + parent: 1 + type: Transform + - uid: 13567 + components: + - rot: 3.141592653589793 rad + pos: -73.5,23.5 + parent: 1 + type: Transform + - uid: 13568 + components: + - rot: 3.141592653589793 rad + pos: -73.5,24.5 + parent: 1 + type: Transform + - uid: 13569 + components: + - rot: 3.141592653589793 rad + pos: -73.5,25.5 + parent: 1 + type: Transform + - uid: 13570 + components: + - rot: 3.141592653589793 rad + pos: -73.5,26.5 + parent: 1 + type: Transform + - uid: 13571 + components: + - rot: 3.141592653589793 rad + pos: -73.5,27.5 + parent: 1 + type: Transform + - uid: 13572 + components: + - rot: 3.141592653589793 rad + pos: -73.5,28.5 + parent: 1 + type: Transform + - uid: 13573 + components: + - rot: 3.141592653589793 rad + pos: -73.5,29.5 + parent: 1 + type: Transform + - uid: 13574 + components: + - rot: 3.141592653589793 rad + pos: -73.5,30.5 + parent: 1 + type: Transform + - uid: 13575 + components: + - rot: 3.141592653589793 rad + pos: -73.5,31.5 + parent: 1 + type: Transform + - uid: 13576 + components: + - rot: 3.141592653589793 rad + pos: -73.5,32.5 + parent: 1 + type: Transform + - uid: 13577 + components: + - rot: 1.5707963267948966 rad + pos: -72.5,33.5 + parent: 1 + type: Transform + - uid: 13578 + components: + - rot: 1.5707963267948966 rad + pos: -71.5,33.5 + parent: 1 + type: Transform + - uid: 13579 + components: + - rot: 1.5707963267948966 rad + pos: -70.5,33.5 + parent: 1 + type: Transform + - uid: 13580 + components: + - rot: 1.5707963267948966 rad + pos: -69.5,33.5 + parent: 1 + type: Transform + - uid: 13581 + components: + - rot: 1.5707963267948966 rad + pos: -68.5,33.5 + parent: 1 + type: Transform + - uid: 13582 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,32.5 + parent: 1 + type: Transform + - uid: 13583 + components: + - rot: 1.5707963267948966 rad + pos: -67.5,33.5 + parent: 1 + type: Transform + - uid: 13584 + components: + - rot: 1.5707963267948966 rad + pos: -66.5,33.5 + parent: 1 + type: Transform + - uid: 13585 + components: + - rot: 1.5707963267948966 rad + pos: -65.5,33.5 + parent: 1 + type: Transform + - uid: 13586 + components: + - rot: -1.5707963267948966 rad + pos: -63.5,32.5 + parent: 1 + type: Transform + - uid: 13587 + components: + - rot: -1.5707963267948966 rad + pos: -62.5,32.5 + parent: 1 + type: Transform + - uid: 13588 + components: + - rot: -1.5707963267948966 rad + pos: -61.5,32.5 + parent: 1 + type: Transform + - uid: 13589 + components: + - rot: -1.5707963267948966 rad + pos: -60.5,32.5 + parent: 1 + type: Transform + - uid: 13590 + components: + - rot: -1.5707963267948966 rad + pos: -59.5,32.5 + parent: 1 + type: Transform + - uid: 13595 + components: + - pos: -64.5,29.5 + parent: 1 + type: Transform + - uid: 13596 + components: + - pos: -64.5,30.5 + parent: 1 + type: Transform + - uid: 13597 + components: + - pos: -64.5,31.5 + parent: 1 + type: Transform + - uid: 13612 + components: + - rot: 3.141592653589793 rad + pos: -48.5,47.5 + parent: 1 + type: Transform + - uid: 15061 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,29.5 + parent: 1 + type: Transform + - uid: 15167 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,50.5 + parent: 1 + type: Transform + - uid: 15168 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,50.5 + parent: 1 + type: Transform + - uid: 15169 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,50.5 + parent: 1 + type: Transform + - uid: 15171 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,50.5 + parent: 1 + type: Transform +- proto: DisposalTrunk + entities: + - uid: 589 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-11.5 + parent: 1 + type: Transform + - uid: 8671 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,65.5 + parent: 1 + type: Transform + - uid: 8672 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,58.5 + parent: 1 + type: Transform + - uid: 12917 + components: + - pos: 5.5,30.5 + parent: 1 + type: Transform + - uid: 12918 + components: + - rot: 3.141592653589793 rad + pos: 11.5,14.5 + parent: 1 + type: Transform + - uid: 12919 + components: + - rot: 3.141592653589793 rad + pos: 0.5,22.5 + parent: 1 + type: Transform + - uid: 12952 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,14.5 + parent: 1 + type: Transform + - uid: 13106 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,5.5 + parent: 1 + type: Transform + - uid: 13107 + components: + - rot: 3.141592653589793 rad + pos: 23.5,4.5 + parent: 1 + type: Transform + - uid: 13133 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-3.5 + parent: 1 + type: Transform + - uid: 13152 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 13153 + components: + - pos: -18.5,-1.5 + parent: 1 + type: Transform + - uid: 13188 + components: + - pos: -20.5,7.5 + parent: 1 + type: Transform + - uid: 13206 + components: + - pos: -35.5,7.5 + parent: 1 + type: Transform + - uid: 13243 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,-10.5 + parent: 1 + type: Transform + - uid: 13285 + components: + - pos: -55.5,16.5 + parent: 1 + type: Transform + - uid: 13289 + components: + - rot: 3.141592653589793 rad + pos: -49.5,3.5 + parent: 1 + type: Transform + - uid: 13294 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,37.5 + parent: 1 + type: Transform + - uid: 13327 + components: + - rot: 3.141592653589793 rad + pos: -3.5,29.5 + parent: 1 + type: Transform + - uid: 13398 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,30.5 + parent: 1 + type: Transform + - uid: 13444 + components: + - rot: 3.141592653589793 rad + pos: -45.5,30.5 + parent: 1 + type: Transform + - uid: 13445 + components: + - pos: -26.5,29.5 + parent: 1 + type: Transform + - uid: 13475 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,42.5 + parent: 1 + type: Transform + - uid: 13498 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,59.5 + parent: 1 + type: Transform + - uid: 13499 + components: + - pos: -12.5,57.5 + parent: 1 + type: Transform + - uid: 13503 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,20.5 + parent: 1 + type: Transform + - uid: 13518 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,39.5 + parent: 1 + type: Transform + - uid: 13533 + components: + - pos: -44.5,47.5 + parent: 1 + type: Transform + - uid: 13534 + components: + - rot: 3.141592653589793 rad + pos: -49.5,44.5 + parent: 1 + type: Transform + - uid: 13536 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,42.5 + parent: 1 + type: Transform + - uid: 13598 + components: + - rot: -1.5707963267948966 rad + pos: -63.5,28.5 + parent: 1 + type: Transform + - uid: 13599 + components: + - rot: 3.141592653589793 rad + pos: -73.5,19.5 + parent: 1 + type: Transform + - uid: 15039 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-11.5 + parent: 1 + type: Transform + - uid: 15170 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,50.5 + parent: 1 + type: Transform +- proto: DisposalUnit + entities: + - uid: 249 + components: + - pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 337 + components: + - pos: -18.5,-1.5 + parent: 1 + type: Transform + - uid: 1090 + components: + - pos: 11.5,-3.5 + parent: 1 + type: Transform + - uid: 1091 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 1155 + components: + - pos: 4.5,14.5 + parent: 1 + type: Transform + - uid: 1944 + components: + - pos: 0.5,22.5 + parent: 1 + type: Transform + - uid: 2033 + components: + - pos: 5.5,30.5 + parent: 1 + type: Transform + - uid: 2118 + components: + - pos: -3.5,29.5 + parent: 1 + type: Transform + - uid: 2136 + components: + - pos: 28.5,5.5 + parent: 1 + type: Transform + - uid: 2137 + components: + - pos: 23.5,4.5 + parent: 1 + type: Transform + - uid: 2351 + components: + - pos: 11.5,14.5 + parent: 1 + type: Transform + - uid: 3653 + components: + - pos: -41.5,-6.5 + parent: 1 + type: Transform + - uid: 3654 + components: + - pos: -46.5,-1.5 + parent: 1 + type: Transform + - uid: 4166 + components: + - pos: -20.5,7.5 + parent: 1 + type: Transform + - uid: 4168 + components: + - pos: -35.5,7.5 + parent: 1 + type: Transform + - uid: 5264 + components: + - pos: -55.5,16.5 + parent: 1 + type: Transform + - uid: 5525 + components: + - pos: -56.5,-10.5 + parent: 1 + type: Transform + - uid: 5526 + components: + - pos: -49.5,3.5 + parent: 1 + type: Transform + - uid: 5527 + components: + - pos: -39.5,20.5 + parent: 1 + type: Transform + - uid: 5528 + components: + - pos: -45.5,30.5 + parent: 1 + type: Transform + - uid: 5529 + components: + - pos: -10.5,30.5 + parent: 1 + type: Transform + - uid: 5531 + components: + - pos: -26.5,29.5 + parent: 1 + type: Transform + - uid: 6936 + components: + - pos: -38.5,42.5 + parent: 1 + type: Transform + - uid: 6937 + components: + - pos: -44.5,39.5 + parent: 1 + type: Transform + - uid: 6938 + components: + - pos: -44.5,47.5 + parent: 1 + type: Transform + - uid: 7091 + components: + - pos: -49.5,44.5 + parent: 1 + type: Transform + - uid: 7092 + components: + - pos: -55.5,37.5 + parent: 1 + type: Transform + - uid: 7559 + components: + - pos: -19.5,42.5 + parent: 1 + type: Transform + - uid: 7977 + components: + - pos: -51.5,58.5 + parent: 1 + type: Transform + - uid: 8652 + components: + - pos: -51.5,65.5 + parent: 1 + type: Transform + - uid: 11053 + components: + - pos: -73.5,19.5 + parent: 1 + type: Transform + - uid: 11054 + components: + - pos: -63.5,28.5 + parent: 1 + type: Transform + - uid: 13501 + components: + - pos: -20.5,59.5 + parent: 1 + type: Transform + - uid: 13502 + components: + - pos: -12.5,57.5 + parent: 1 + type: Transform + - uid: 15019 + components: + - pos: 14.5,-11.5 + parent: 1 + type: Transform + - uid: 15172 + components: + - pos: 16.5,50.5 + parent: 1 + type: Transform +- proto: DisposalYJunction + entities: + - uid: 13500 + components: + - pos: -16.5,55.5 + parent: 1 + type: Transform + - uid: 13591 + components: + - rot: 1.5707963267948966 rad + pos: -64.5,32.5 + parent: 1 + type: Transform +- proto: DogBed + entities: + - uid: 7574 + components: + - pos: -22.5,37.5 + parent: 1 + type: Transform + - uid: 10906 + components: + - pos: -9.5,59.5 + parent: 1 + type: Transform +- proto: DonkpocketBoxSpawner + entities: + - uid: 4730 + components: + - pos: -27.5,52.5 + parent: 1 + type: Transform +- proto: DoorElectronics + entities: + - uid: 5536 + components: + - pos: -47.419823,29.691675 + parent: 1 + type: Transform + - uid: 5537 + components: + - pos: -47.560448,29.48855 + parent: 1 + type: Transform + - uid: 5538 + components: + - pos: -47.451073,29.30105 + parent: 1 + type: Transform +- proto: Dresser + entities: + - uid: 10902 + components: + - pos: -5.5,61.5 + parent: 1 + type: Transform +- proto: DrinkBottleBeer + entities: + - uid: 9735 + components: + - pos: -27.588842,35.58307 + parent: 1 + type: Transform + - uid: 9737 + components: + - pos: -27.416967,35.64557 + parent: 1 + type: Transform + - uid: 9738 + components: + - pos: -27.229467,35.567444 + parent: 1 + type: Transform +- proto: DrinkBottleWhiskey + entities: + - uid: 14287 + components: + - pos: -72.49934,47.622665 + parent: 1 + type: Transform +- proto: DrinkChangelingStingCan + entities: + - uid: 5804 + components: + - pos: -9.689642,21.037588 + parent: 1 + type: Transform +- proto: DrinkCreamCarton + entities: + - uid: 5275 + components: + - pos: -53.020008,21.71115 + parent: 1 + type: Transform +- proto: DrinkGlass + entities: + - uid: 5271 + components: + - pos: -53.816883,21.552088 + parent: 1 + type: Transform + - uid: 5272 + components: + - pos: -53.645008,21.708338 + parent: 1 + type: Transform + - uid: 5273 + components: + - pos: -53.488758,21.552088 + parent: 1 + type: Transform + - uid: 15222 + components: + - pos: 17.303202,52.65593 + parent: 1 + type: Transform + - uid: 15223 + components: + - pos: 17.678202,52.59343 + parent: 1 + type: Transform +- proto: DrinkGoldenCup + entities: + - uid: 2307 + components: + - pos: -23.533527,57.548485 + parent: 1 + type: Transform +- proto: DrinkGoldschlagerBottleFull + entities: + - uid: 2311 + components: + - pos: -23.517902,54.40786 + parent: 1 + type: Transform +- proto: DrinkGreenTea + entities: + - uid: 4546 + components: + - pos: -49.110718,9.835719 + parent: 1 + type: Transform + - uid: 4549 + components: + - pos: -49.160065,9.422353 + parent: 1 + type: Transform + - uid: 5344 + components: + - pos: -49.821003,9.391103 + parent: 1 + type: Transform + - uid: 6153 + components: + - pos: -49.876343,9.820094 + parent: 1 + type: Transform +- proto: DrinkHotCoffee + entities: + - uid: 4562 + components: + - pos: 23.475533,38.452827 + parent: 1 + type: Transform + - uid: 15084 + components: + - pos: -15.376344,24.974894 + parent: 1 + type: Transform + - uid: 15101 + components: + - pos: -15.688844,24.678019 + parent: 1 + type: Transform +- proto: DrinkMilkCarton + entities: + - uid: 6957 + components: + - pos: -35.398277,47.715622 + parent: 1 + type: Transform + - uid: 6958 + components: + - pos: -32.460777,42.668747 + parent: 1 + type: Transform +- proto: DrinkMugBlack + entities: + - uid: 269 + components: + - pos: -17.654377,-4.445471 + parent: 1 + type: Transform + - uid: 7964 + components: + - pos: -54.71723,64.74812 + parent: 1 + type: Transform +- proto: DrinkMugBlue + entities: + - uid: 7948 + components: + - pos: -54.232857,64.76375 + parent: 1 + type: Transform +- proto: DrinkMugHeart + entities: + - uid: 1489 + components: + - pos: 23.29282,42.502815 + parent: 1 + type: Transform +- proto: DrinkMugMetal + entities: + - uid: 7949 + components: + - pos: -47.25018,59.484123 + parent: 1 + type: Transform +- proto: DrinkMugOne + entities: + - uid: 270 + components: + - pos: -17.310627,-4.257971 + parent: 1 + type: Transform + - uid: 14941 + components: + - pos: -54.474243,-12.528257 + parent: 1 + type: Transform +- proto: DrinkMugRed + entities: + - uid: 9936 + components: + - pos: -54.27973,64.43562 + parent: 1 + type: Transform + - uid: 15102 + components: + - pos: -15.313844,24.521769 + parent: 1 + type: Transform +- proto: DrinkTeacup + entities: + - uid: 2999 + components: + - pos: 24.668903,14.540461 + parent: 1 + type: Transform + - uid: 3000 + components: + - pos: 24.262653,14.759211 + parent: 1 + type: Transform +- proto: DrinkWaterJug + entities: + - uid: 577 + components: + - pos: 19.083464,-11.315445 + parent: 1 + type: Transform +- proto: DrinkWhiskeyBottleFull + entities: + - uid: 7935 + components: + - pos: -58.33147,64.88806 + parent: 1 + type: Transform + - uid: 10977 + components: + - pos: -70.71854,40.09562 + parent: 1 + type: Transform + - uid: 14211 + components: + - pos: -72.32807,15.938257 + parent: 1 + type: Transform + - uid: 14284 + components: + - pos: -72.70246,47.903915 + parent: 1 + type: Transform +- proto: DrinkWhiskeyColaGlass + entities: + - uid: 7936 + components: + - pos: -58.70647,64.85681 + parent: 1 + type: Transform +- proto: DrinkWhiskeyGlass + entities: + - uid: 10975 + components: + - pos: -72.39041,41.78312 + parent: 1 + type: Transform + - uid: 10976 + components: + - pos: -70.37479,39.56437 + parent: 1 + type: Transform + - uid: 14212 + components: + - pos: -72.81245,15.797632 + parent: 1 + type: Transform + - uid: 14285 + components: + - pos: -72.34309,47.685165 + parent: 1 + type: Transform +- proto: DrinkWineBottleFull + entities: + - uid: 1815 + components: + - pos: 16.737038,3.7859516 + parent: 1 + type: Transform +- proto: DrinkWineGlass + entities: + - uid: 1814 + components: + - pos: 16.440163,3.6297016 + parent: 1 + type: Transform + - uid: 6338 + components: + - pos: 2.5328588,49.783806 + parent: 1 + type: Transform +- proto: Dropper + entities: + - uid: 1953 + components: + - pos: -4.4894724,20.885618 + parent: 1 + type: Transform + - uid: 1954 + components: + - pos: -4.4894724,20.666868 + parent: 1 + type: Transform + - uid: 1955 + components: + - pos: -4.4894724,20.463743 + parent: 1 + type: Transform +- proto: ElectricGuitarInstrument + entities: + - uid: 4138 + components: + - pos: -22.497261,24.539072 + parent: 1 + type: Transform +- proto: EmergencyLight + entities: + - uid: 2592 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 3665 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-13.5 + parent: 1 + type: Transform + - uid: 4600 + components: + - pos: -48.5,6.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 4890 + components: + - rot: 3.141592653589793 rad + pos: -71.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 11062 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,-3.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14864 + components: + - rot: -1.5707963267948966 rad + pos: -77.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14865 + components: + - rot: 3.141592653589793 rad + pos: -80.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14866 + components: + - rot: 1.5707963267948966 rad + pos: -74.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14867 + components: + - rot: 1.5707963267948966 rad + pos: -67.5,29.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14868 + components: + - rot: 3.141592653589793 rad + pos: -59.5,31.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14869 + components: + - rot: -1.5707963267948966 rad + pos: -79.5,23.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14870 + components: + - pos: -68.5,23.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14871 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14872 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14873 + components: + - rot: 3.141592653589793 rad + pos: -50.5,31.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14874 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14875 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,8.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14876 + components: + - pos: -68.5,6.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14879 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,3.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14880 + components: + - pos: -35.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14882 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,15.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14883 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14884 + components: + - pos: -33.5,33.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14885 + components: + - rot: 3.141592653589793 rad + pos: -39.5,35.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14886 + components: + - pos: -35.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14887 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14888 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,52.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14889 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14890 + components: + - pos: -20.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14891 + components: + - rot: 3.141592653589793 rad + pos: -20.5,31.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14892 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,27.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14893 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14894 + components: + - pos: -11.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14895 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14896 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14897 + components: + - rot: 3.141592653589793 rad + pos: -18.5,62.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14898 + components: + - pos: -9.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14899 + components: + - rot: 3.141592653589793 rad + pos: -9.5,27.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14900 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14901 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,10.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14902 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,12.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14903 + components: + - pos: -25.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14904 + components: + - rot: 3.141592653589793 rad + pos: -19.5,4.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14905 + components: + - rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14906 + components: + - pos: 7.5,6.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14907 + components: + - rot: 3.141592653589793 rad + pos: 20.5,4.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14908 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14909 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14910 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,13.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14911 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,1.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14912 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14913 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14914 + components: + - pos: -16.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14915 + components: + - pos: -12.5,-10.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14916 + components: + - pos: 2.5,-8.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14917 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14954 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,55.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14955 + components: + - pos: -46.5,65.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14956 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,63.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14957 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,64.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14958 + components: + - rot: 3.141592653589793 rad + pos: -59.5,60.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14959 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,56.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14960 + components: + - rot: 1.5707963267948966 rad + pos: -65.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14961 + components: + - pos: -52.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 14962 + components: + - rot: 1.5707963267948966 rad + pos: -64.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 15309 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,23.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 15310 + components: + - pos: -1.5,34.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 15311 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 15312 + components: + - pos: 8.5,37.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 15313 + components: + - rot: 3.141592653589793 rad + pos: 9.5,28.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 15314 + components: + - rot: 3.141592653589793 rad + pos: 8.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 15315 + components: + - pos: 7.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 15316 + components: + - rot: 3.141592653589793 rad + pos: 1.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight +- proto: Emitter + entities: + - uid: 9982 + components: + - rot: 3.141592653589793 rad + pos: -78.5,18.5 + parent: 1 + type: Transform + - uid: 9983 + components: + - rot: 3.141592653589793 rad + pos: -77.5,18.5 + parent: 1 + type: Transform + - uid: 9984 + components: + - rot: 3.141592653589793 rad + pos: -76.5,18.5 + parent: 1 + type: Transform + - uid: 10609 + components: + - rot: -1.5707963267948966 rad + pos: -90.5,21.5 + parent: 1 + type: Transform + - uid: 10610 + components: + - rot: -1.5707963267948966 rad + pos: -90.5,29.5 + parent: 1 + type: Transform + - uid: 10611 + components: + - rot: 1.5707963267948966 rad + pos: -104.5,21.5 + parent: 1 + type: Transform + - uid: 10612 + components: + - rot: 3.141592653589793 rad + pos: -93.5,18.5 + parent: 1 + type: Transform + - uid: 10613 + components: + - rot: 3.141592653589793 rad + pos: -101.5,18.5 + parent: 1 + type: Transform + - uid: 10614 + components: + - rot: 1.5707963267948966 rad + pos: -104.5,29.5 + parent: 1 + type: Transform + - uid: 10615 + components: + - pos: -101.5,32.5 + parent: 1 + type: Transform + - uid: 10616 + components: + - pos: -93.5,32.5 + parent: 1 + type: Transform +- proto: EncryptionKeyCargo + entities: + - uid: 15348 + components: + - flags: InContainer + type: MetaData + - parent: 15347 + type: Transform + - canCollide: False + type: Physics + - uid: 15374 + components: + - flags: InContainer + type: MetaData + - parent: 15368 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyCommand + entities: + - uid: 15337 + components: + - flags: InContainer + type: MetaData + - parent: 15336 + type: Transform + - canCollide: False + type: Physics + - uid: 15369 + components: + - flags: InContainer + type: MetaData + - parent: 15368 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyCommon + entities: + - uid: 2591 + components: + - flags: InContainer + type: MetaData + - parent: 2590 + type: Transform + - canCollide: False + type: Physics + - uid: 15366 + components: + - pos: 27.658451,23.492924 + parent: 1 + type: Transform +- proto: EncryptionKeyEngineering + entities: + - uid: 15339 + components: + - flags: InContainer + type: MetaData + - parent: 15338 + type: Transform + - canCollide: False + type: Physics + - uid: 15371 + components: + - flags: InContainer + type: MetaData + - parent: 15368 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyMedical + entities: + - uid: 15341 + components: + - flags: InContainer + type: MetaData + - parent: 15340 + type: Transform + - canCollide: False + type: Physics + - uid: 15372 + components: + - flags: InContainer + type: MetaData + - parent: 15368 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyMedicalScience + entities: + - uid: 15342 + components: + - flags: InContainer + type: MetaData + - parent: 15340 + type: Transform + - canCollide: False + type: Physics + - uid: 15345 + components: + - flags: InContainer + type: MetaData + - parent: 15343 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyRobo + entities: + - uid: 15346 + components: + - flags: InContainer + type: MetaData + - parent: 15343 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyScience + entities: + - uid: 15344 + components: + - flags: InContainer + type: MetaData + - parent: 15343 + type: Transform + - canCollide: False + type: Physics + - uid: 15373 + components: + - flags: InContainer + type: MetaData + - parent: 15368 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeySecurity + entities: + - uid: 983 + components: + - flags: InContainer + type: MetaData + - parent: 982 + type: Transform + - canCollide: False + type: Physics + - uid: 15370 + components: + - flags: InContainer + type: MetaData + - parent: 15368 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyService + entities: + - uid: 1027 + components: + - flags: InContainer + type: MetaData + - parent: 1026 + type: Transform + - canCollide: False + type: Physics + - uid: 15367 + components: + - pos: 27.345951,23.492924 + parent: 1 + type: Transform +- proto: Error + entities: + - uid: 3615 + components: + - pos: -28.521805,-11.50697 + parent: 1 + type: Transform +- proto: EuphoniumInstrument + entities: + - uid: 6336 + components: + - pos: 14.586781,52.45568 + parent: 1 + type: Transform +- proto: ExosuitFabricator + entities: + - uid: 240 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform +- proto: ExtinguisherCabinet + entities: + - uid: 2843 + components: + - pos: -18.5,30.5 + parent: 1 + type: Transform + - uid: 3971 + components: + - rot: 3.141592653589793 rad + pos: -69.5,7.5 + parent: 1 + type: Transform + - uid: 4746 + components: + - rot: 3.141592653589793 rad + pos: -67.5,-12.5 + parent: 1 + type: Transform + - uid: 12036 + components: + - pos: -46.5,-10.5 + parent: 1 + type: Transform + - uid: 12037 + components: + - pos: -35.5,-4.5 + parent: 1 + type: Transform + - uid: 12038 + components: + - pos: -55.5,9.5 + parent: 1 + type: Transform + - uid: 12220 + components: + - pos: -55.5,29.5 + parent: 1 + type: Transform + - uid: 13655 + components: + - pos: -39.5,47.5 + parent: 1 + type: Transform + - uid: 13682 + components: + - pos: -35.5,34.5 + parent: 1 + type: Transform + - uid: 13683 + components: + - pos: -26.5,44.5 + parent: 1 + type: Transform + - uid: 13684 + components: + - pos: -27.5,29.5 + parent: 1 + type: Transform + - uid: 13764 + components: + - pos: -39.5,22.5 + parent: 1 + type: Transform + - uid: 13792 + components: + - pos: -35.5,9.5 + parent: 1 + type: Transform + - uid: 13793 + components: + - pos: -55.5,-1.5 + parent: 1 + type: Transform + - uid: 13796 + components: + - pos: -26.5,-9.5 + parent: 1 + type: Transform + - uid: 13797 + components: + - pos: -19.5,-2.5 + parent: 1 + type: Transform + - uid: 13798 + components: + - pos: 6.5,-9.5 + parent: 1 + type: Transform + - uid: 13799 + components: + - pos: -18.5,-12.5 + parent: 1 + type: Transform + - uid: 13800 + components: + - pos: -7.5,-3.5 + parent: 1 + type: Transform + - uid: 13801 + components: + - pos: -14.5,11.5 + parent: 1 + type: Transform + - uid: 13802 + components: + - pos: -10.5,23.5 + parent: 1 + type: Transform + - uid: 13804 + components: + - pos: -25.5,14.5 + parent: 1 + type: Transform + - uid: 13805 + components: + - pos: -2.5,35.5 + parent: 1 + type: Transform + - uid: 13810 + components: + - pos: 29.5,17.5 + parent: 1 + type: Transform + - uid: 13811 + components: + - pos: 18.5,0.5 + parent: 1 + type: Transform + - uid: 13812 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform +- proto: ExtinguisherCabinetFilled + entities: + - uid: 15292 + components: + - pos: -2.5,18.5 + parent: 1 + type: Transform + - uid: 15293 + components: + - pos: 1.5,18.5 + parent: 1 + type: Transform + - uid: 15294 + components: + - pos: 5.5,15.5 + parent: 1 + type: Transform + - uid: 15295 + components: + - pos: 8.5,27.5 + parent: 1 + type: Transform + - uid: 15296 + components: + - pos: 5.5,36.5 + parent: 1 + type: Transform + - uid: 15297 + components: + - pos: -19.5,56.5 + parent: 1 + type: Transform + - uid: 15298 + components: + - pos: -18.5,61.5 + parent: 1 + type: Transform + - uid: 15299 + components: + - pos: -9.5,58.5 + parent: 1 + type: Transform + - uid: 15300 + components: + - pos: -60.5,56.5 + parent: 1 + type: Transform + - uid: 15301 + components: + - pos: -53.5,59.5 + parent: 1 + type: Transform + - uid: 15302 + components: + - pos: -45.5,55.5 + parent: 1 + type: Transform + - uid: 15304 + components: + - pos: -53.5,67.5 + parent: 1 + type: Transform + - uid: 15305 + components: + - pos: -57.5,63.5 + parent: 1 + type: Transform + - uid: 15306 + components: + - pos: -56.5,88.5 + parent: 1 + type: Transform + - uid: 15307 + components: + - pos: -62.5,82.5 + parent: 1 + type: Transform + - uid: 15308 + components: + - pos: -49.5,82.5 + parent: 1 + type: Transform + - uid: 15317 + components: + - rot: 1.5707963267948966 rad + pos: -75.5,19.5 + parent: 1 + type: Transform + - uid: 15318 + components: + - rot: 1.5707963267948966 rad + pos: -83.5,22.5 + parent: 1 + type: Transform + - uid: 15319 + components: + - rot: 1.5707963267948966 rad + pos: -75.5,31.5 + parent: 1 + type: Transform + - uid: 15320 + components: + - rot: 1.5707963267948966 rad + pos: -76.5,42.5 + parent: 1 + type: Transform + - uid: 15321 + components: + - rot: 1.5707963267948966 rad + pos: -65.5,29.5 + parent: 1 + type: Transform + - uid: 15322 + components: + - rot: 1.5707963267948966 rad + pos: -66.5,18.5 + parent: 1 + type: Transform + - uid: 15323 + components: + - rot: 1.5707963267948966 rad + pos: -62.5,46.5 + parent: 1 + type: Transform + - uid: 15324 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,38.5 + parent: 1 + type: Transform + - uid: 15325 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,48.5 + parent: 1 + type: Transform + - uid: 15326 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,38.5 + parent: 1 + type: Transform +- proto: FaxMachineBase + entities: + - uid: 303 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform + - name: Science + type: FaxMachine + - uid: 586 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform + - name: RD Office + type: FaxMachine + - uid: 2320 + components: + - pos: 10.5,25.5 + parent: 1 + type: Transform + - name: Medical + type: FaxMachine + - uid: 3745 + components: + - pos: -46.5,2.5 + parent: 1 + type: Transform + - name: Cargo + type: FaxMachine + - uid: 5809 + components: + - pos: -28.5,13.5 + parent: 1 + type: Transform + - name: Library + type: FaxMachine + - uid: 7545 + components: + - pos: -19.5,48.5 + parent: 1 + type: Transform + - name: HoP Office + type: FaxMachine + - uid: 7989 + components: + - pos: -55.5,58.5 + parent: 1 + type: Transform + - name: Security + type: FaxMachine + - uid: 10803 + components: + - pos: -36.5,37.5 + parent: 1 + type: Transform + - name: Bar + type: FaxMachine + - uid: 10901 + components: + - pos: -10.5,55.5 + parent: 1 + type: Transform + - name: Bridge + type: FaxMachine + - uid: 13602 + components: + - pos: -64.5,25.5 + parent: 1 + type: Transform + - name: Engineering + type: FaxMachine +- proto: FaxMachineCaptain + entities: + - uid: 10900 + components: + - pos: -6.5,61.5 + parent: 1 + type: Transform +- proto: FigureSpawner + entities: + - uid: 3516 + components: + - pos: -19.5,-10.5 + parent: 1 + type: Transform + - uid: 5546 + components: + - pos: -52.5,27.5 + parent: 1 + type: Transform +- proto: filingCabinetDrawer + entities: + - uid: 5509 + components: + - pos: -43.5,0.5 + parent: 1 + type: Transform + - uid: 7397 + components: + - pos: 11.5,52.5 + parent: 1 + type: Transform +- proto: filingCabinetTall + entities: + - uid: 5507 + components: + - pos: -52.5,-0.5 + parent: 1 + type: Transform + - uid: 7541 + components: + - pos: -22.5,44.5 + parent: 1 + type: Transform +- proto: FireAlarm + entities: + - uid: 318 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,0.5 + parent: 1 + type: Transform + - devices: + - 1749 + - 1741 + - 1747 + - 1750 + - 14970 + type: DeviceList + - uid: 4747 + components: + - rot: 3.141592653589793 rad + pos: -63.5,-12.5 + parent: 1 + type: Transform + - devices: + - 4912 + - 4913 + - 4126 + type: DeviceList + - uid: 8961 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,58.5 + parent: 1 + type: Transform + - devices: + - 8573 + - 8574 + - 8578 + - 8576 + - 8575 + type: DeviceList + - uid: 8963 + components: + - pos: -48.5,66.5 + parent: 1 + type: Transform + - devices: + - 8579 + - 8580 + - 8581 + - 5726 + - 5723 + - 8543 + - 8542 + - 8544 + - 8545 + - 8849 + - 8844 + - 8848 + - 8843 + - 8758 + - 8845 + - 8842 + - 8846 + - 8760 + - 8847 + - 8759 + type: DeviceList + - uid: 8964 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,87.5 + parent: 1 + type: Transform + - devices: + - 5742 + - 5579 + - 5501 + - 5496 + type: DeviceList + - uid: 8966 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,87.5 + parent: 1 + type: Transform + - devices: + - 5742 + - 5579 + - 5501 + - 5496 + type: DeviceList + - uid: 10691 + components: + - rot: 1.5707963267948966 rad + pos: -75.5,22.5 + parent: 1 + type: Transform + - devices: + - 14304 + - 14302 + - 10686 + - 10687 + - 14303 + - 10684 + - 10685 + - 10682 + - 10683 + type: DeviceList + - uid: 13041 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,44.5 + parent: 1 + type: Transform + - devices: + - 7995 + - 7996 + - 7997 + - 8003 + - 8002 + - 8001 + - 8573 + - 8574 + type: DeviceList + - uid: 13046 + components: + - rot: 3.141592653589793 rad + pos: -46.5,30.5 + parent: 1 + type: Transform + - devices: + - 5240 + - 5241 + - 5242 + - 7995 + - 7996 + - 7997 + - 5233 + - 5232 + - 5231 + type: DeviceList + - uid: 13050 + components: + - pos: -67.5,7.5 + parent: 1 + type: Transform + - devices: + - 5213 + - 5214 + - 5215 + - 11812 + - 11813 + - 11811 + - 11814 + type: DeviceList + - uid: 13052 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,-4.5 + parent: 1 + type: Transform + - devices: + - 5216 + - 5217 + - 5218 + type: DeviceList + - uid: 13056 + components: + - pos: -39.5,7.5 + parent: 1 + type: Transform + - devices: + - 4112 + - 4111 + - 4110 + - 4114 + - 4115 + - 4116 + - 4109 + - 4108 + - 4107 + type: DeviceList + - uid: 13059 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-1.5 + parent: 1 + type: Transform + - devices: + - 3718 + - 3719 + - 3720 + - 3721 + - 3722 + - 3723 + - 3724 + - 3717 + - 3716 + - 3726 + type: DeviceList + - uid: 13060 + components: + - pos: -22.5,7.5 + parent: 1 + type: Transform + - devices: + - 1766 + - 1765 + - 1764 + - 4107 + - 4108 + - 4109 + type: DeviceList + - uid: 13062 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,17.5 + parent: 1 + type: Transform + - devices: + - 4114 + - 4115 + - 4116 + - 4117 + - 4118 + - 4119 + - 4120 + - 4121 + - 4122 + - 4123 + - 5227 + - 5226 + - 5225 + type: DeviceList + - uid: 13064 + components: + - pos: -39.5,40.5 + parent: 1 + type: Transform + - devices: + - 5233 + - 5232 + - 5231 + - 5225 + - 5226 + - 5227 + - 5228 + - 5229 + - 5230 + - 9786 + - 9787 + - 9788 + - 9789 + - 9784 + - 9785 + type: DeviceList + - uid: 13066 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,44.5 + parent: 1 + type: Transform + - devices: + - 9784 + - 9785 + - 9790 + - 9791 + - 9792 + - 9793 + type: DeviceList + - uid: 13068 + components: + - pos: -28.5,34.5 + parent: 1 + type: Transform + - devices: + - 5228 + - 5229 + - 5230 + - 5234 + - 5235 + - 5236 + type: DeviceList + - uid: 13070 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,41.5 + parent: 1 + type: Transform + - devices: + - 9790 + - 9791 + - 9793 + - 9792 + type: DeviceList + - uid: 13072 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,41.5 + parent: 1 + type: Transform + - devices: + - 5237 + - 5238 + - 5239 + type: DeviceList + - uid: 13075 + components: + - pos: -21.5,43.5 + parent: 1 + type: Transform + - devices: + - 9819 + type: DeviceList + - uid: 13078 + components: + - pos: -11.5,34.5 + parent: 1 + type: Transform + - devices: + - 5237 + - 5238 + - 5239 + - 12259 + - 12255 + - 12256 + - 12260 + - 12273 + - 12272 + - 3064 + - 3122 + - 2814 + - 2881 + - 3175 + - 3176 + - 3177 + - 2866 + - 2865 + type: DeviceList + - uid: 13080 + components: + - pos: -14.5,58.5 + parent: 1 + type: Transform + - devices: + - 6496 + - 6497 + - 9808 + - 6498 + - 6499 + - 6500 + - 6501 + - 6502 + - 6503 + - 6504 + type: DeviceList + - uid: 13097 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,18.5 + parent: 1 + type: Transform + - devices: + - 1763 + - 1762 + - 1761 + - 3177 + - 3176 + - 3175 + type: DeviceList + - uid: 13098 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - devices: + - 1758 + - 1759 + - 1760 + - 1768 + - 1767 + - 1753 + - 1752 + type: DeviceList + - uid: 13101 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 1 + type: Transform + - devices: + - 1752 + - 1753 + type: DeviceList + - uid: 13102 + components: + - pos: 20.5,7.5 + parent: 1 + type: Transform + - devices: + - 1767 + - 1768 + - 1755 + - 1754 + type: DeviceList + - uid: 13104 + components: + - rot: 3.141592653589793 rad + pos: 27.5,4.5 + parent: 1 + type: Transform + - devices: + - 1755 + - 1754 + type: DeviceList + - uid: 13300 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,34.5 + parent: 1 + type: Transform + - devices: + - 2055 + - 2868 + - 2867 + - 2869 + - 13306 + - 13305 + - 2052 + - 2051 + - 13309 + - 13308 + - 13307 + - 2053 + - 2054 + - 15082 + - 15083 + type: DeviceList + - uid: 13303 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,21.5 + parent: 1 + type: Transform + - devices: + - 13301 + - 13302 + - 2051 + - 2052 + - 2880 + - 2878 + - 2879 + - 2869 + - 2870 + - 13307 + - 13308 + - 13309 + - 15079 + - 15080 + - 15081 + type: DeviceList + - uid: 14298 + components: + - rot: -1.5707963267948966 rad + pos: -76.5,37.5 + parent: 1 + type: Transform + - devices: + - 10676 + - 10675 + - 10674 + - 10673 + - 10672 + - 10671 + - 10670 + - 10669 + - 10668 + - 10667 + - 10666 + type: DeviceList + - uid: 14299 + components: + - rot: -1.5707963267948966 rad + pos: -72.5,31.5 + parent: 1 + type: Transform + - devices: + - 10685 + - 10684 + - 10688 + - 10689 + type: DeviceList + - uid: 14305 + components: + - rot: -1.5707963267948966 rad + pos: -72.5,25.5 + parent: 1 + type: Transform + - devices: + - 14303 + - 10686 + - 10687 + - 10684 + - 10685 + type: DeviceList + - uid: 14306 + components: + - pos: -80.5,28.5 + parent: 1 + type: Transform + - devices: + - 14303 + - 10683 + - 10682 + type: DeviceList +- proto: FireAxeCabinet + entities: + - uid: 1667 + components: + - pos: 14.5,-6.5 + parent: 1 + type: Transform +- proto: FireAxeCabinetFilled + entities: + - uid: 13766 + components: + - pos: -10.5,58.5 + parent: 1 + type: Transform + - uid: 15145 + components: + - rot: -1.5707963267948966 rad + pos: -75.5,33.5 + parent: 1 + type: Transform +- proto: Firelock + entities: + - uid: 1742 + components: + - pos: 22.5,1.5 + parent: 1 + type: Transform + - uid: 1743 + components: + - pos: 23.5,1.5 + parent: 1 + type: Transform + - uid: 1744 + components: + - pos: 20.5,-5.5 + parent: 1 + type: Transform + - uid: 1745 + components: + - pos: 20.5,-4.5 + parent: 1 + type: Transform + - uid: 1746 + components: + - pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 3491 + components: + - pos: -21.5,-5.5 + parent: 1 + type: Transform + - uid: 5423 + components: + - pos: -29.5,-3.5 + parent: 1 + type: Transform + - uid: 5433 + components: + - pos: -28.5,-3.5 + parent: 1 + type: Transform + - uid: 5460 + components: + - pos: -20.5,-5.5 + parent: 1 + type: Transform + - uid: 5464 + components: + - pos: -49.5,-10.5 + parent: 1 + type: Transform + - uid: 5465 + components: + - pos: -49.5,-9.5 + parent: 1 + type: Transform + - uid: 5596 + components: + - pos: -20.5,15.5 + parent: 1 + type: Transform + - uid: 5736 + components: + - pos: -21.5,20.5 + parent: 1 + type: Transform + - uid: 5751 + components: + - pos: -19.5,15.5 + parent: 1 + type: Transform + - uid: 7511 + components: + - pos: -32.5,51.5 + parent: 1 + type: Transform + - uid: 7570 + components: + - pos: 11.5,8.5 + parent: 1 + type: Transform + - uid: 8278 + components: + - pos: -30.5,14.5 + parent: 1 + type: Transform + - uid: 8992 + components: + - rot: 3.141592653589793 rad + pos: 20.5,35.5 + parent: 1 + type: Transform + - uid: 9002 + components: + - rot: 3.141592653589793 rad + pos: 20.5,34.5 + parent: 1 + type: Transform + - uid: 9802 + components: + - pos: -31.5,51.5 + parent: 1 + type: Transform + - uid: 9803 + components: + - pos: -25.5,42.5 + parent: 1 + type: Transform + - uid: 9804 + components: + - pos: -24.5,42.5 + parent: 1 + type: Transform + - uid: 9809 + components: + - pos: -5.5,46.5 + parent: 1 + type: Transform + - uid: 9810 + components: + - pos: -5.5,47.5 + parent: 1 + type: Transform + - uid: 9811 + components: + - pos: 12.5,40.5 + parent: 1 + type: Transform + - uid: 9812 + components: + - pos: 12.5,39.5 + parent: 1 + type: Transform + - uid: 9813 + components: + - pos: 14.5,44.5 + parent: 1 + type: Transform + - uid: 9814 + components: + - pos: 15.5,44.5 + parent: 1 + type: Transform + - uid: 9815 + components: + - pos: -3.5,38.5 + parent: 1 + type: Transform + - uid: 9816 + components: + - pos: -2.5,38.5 + parent: 1 + type: Transform + - uid: 9912 + components: + - pos: 16.5,37.5 + parent: 1 + type: Transform + - uid: 14189 + components: + - pos: -73.5,37.5 + parent: 1 + type: Transform + - uid: 14190 + components: + - pos: -64.5,47.5 + parent: 1 + type: Transform + - uid: 14191 + components: + - pos: -64.5,47.5 + parent: 1 + type: Transform + - uid: 14192 + components: + - pos: -64.5,48.5 + parent: 1 + type: Transform + - uid: 14193 + components: + - pos: -67.5,38.5 + parent: 1 + type: Transform + - uid: 14194 + components: + - pos: -66.5,38.5 + parent: 1 + type: Transform + - uid: 14195 + components: + - pos: -62.5,17.5 + parent: 1 + type: Transform + - uid: 14196 + components: + - pos: -62.5,16.5 + parent: 1 + type: Transform + - uid: 14965 + components: + - pos: 16.5,25.5 + parent: 1 + type: Transform + - uid: 14966 + components: + - pos: 16.5,26.5 + parent: 1 + type: Transform + - uid: 14968 + components: + - pos: 11.5,9.5 + parent: 1 + type: Transform + - uid: 14969 + components: + - pos: -1.5,12.5 + parent: 1 + type: Transform + - uid: 14975 + components: + - pos: -6.5,18.5 + parent: 1 + type: Transform + - uid: 15040 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-5.5 + parent: 1 + type: Transform + - uid: 15063 + components: + - pos: -44.5,12.5 + parent: 1 + type: Transform + - uid: 15064 + components: + - pos: -50.5,16.5 + parent: 1 + type: Transform + - uid: 15065 + components: + - pos: -45.5,22.5 + parent: 1 + type: Transform + - uid: 15066 + components: + - pos: -44.5,22.5 + parent: 1 + type: Transform + - uid: 15069 + components: + - pos: -21.5,21.5 + parent: 1 + type: Transform + - uid: 15070 + components: + - pos: -20.5,22.5 + parent: 1 + type: Transform + - uid: 15071 + components: + - pos: -19.5,22.5 + parent: 1 + type: Transform + - uid: 15104 + components: + - pos: -23.5,50.5 + parent: 1 + type: Transform + - uid: 15105 + components: + - pos: -23.5,51.5 + parent: 1 + type: Transform + - uid: 15289 + components: + - pos: 22.5,20.5 + parent: 1 + type: Transform + - uid: 15290 + components: + - pos: 23.5,20.5 + parent: 1 + type: Transform + - uid: 15849 + components: + - pos: 16.5,38.5 + parent: 1 + type: Transform +- proto: FirelockEdge + entities: + - uid: 219 + components: + - pos: -5.5,-13.5 + parent: 1 + type: Transform + - uid: 285 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-12.5 + parent: 1 + type: Transform + - uid: 1747 + components: + - pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 1748 + components: + - pos: 28.5,-5.5 + parent: 1 + type: Transform + - uid: 1750 + components: + - pos: -16.5,-5.5 + parent: 1 + type: Transform + - uid: 2051 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,24.5 + parent: 1 + type: Transform + - uid: 2052 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,25.5 + parent: 1 + type: Transform + - uid: 2053 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,33.5 + parent: 1 + type: Transform + - uid: 2054 + components: + - rot: 3.141592653589793 rad + pos: 3.5,34.5 + parent: 1 + type: Transform + - uid: 2055 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,33.5 + parent: 1 + type: Transform + - uid: 2865 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,33.5 + parent: 1 + type: Transform + - uid: 2866 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,31.5 + parent: 1 + type: Transform + - uid: 2870 + components: + - pos: -3.5,19.5 + parent: 1 + type: Transform + - uid: 2881 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,27.5 + parent: 1 + type: Transform + - uid: 3544 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-9.5 + parent: 1 + type: Transform + - uid: 3554 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-9.5 + parent: 1 + type: Transform + - uid: 3672 + components: + - rot: 3.141592653589793 rad + pos: -35.5,-8.5 + parent: 1 + type: Transform + - uid: 3674 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-8.5 + parent: 1 + type: Transform + - uid: 3677 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-8.5 + parent: 1 + type: Transform + - uid: 3740 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-8.5 + parent: 1 + type: Transform + - uid: 3770 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-8.5 + parent: 1 + type: Transform + - uid: 3970 + components: + - rot: -1.5707963267948966 rad + pos: -75.5,-10.5 + parent: 1 + type: Transform + - uid: 4117 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,23.5 + parent: 1 + type: Transform + - uid: 4118 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,24.5 + parent: 1 + type: Transform + - uid: 4119 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,25.5 + parent: 1 + type: Transform + - uid: 4120 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,26.5 + parent: 1 + type: Transform + - uid: 4121 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,27.5 + parent: 1 + type: Transform + - uid: 4122 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,28.5 + parent: 1 + type: Transform + - uid: 4123 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,29.5 + parent: 1 + type: Transform + - uid: 5461 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-10.5 + parent: 1 + type: Transform + - uid: 5496 + components: + - pos: -50.5,82.5 + parent: 1 + type: Transform + - uid: 5501 + components: + - pos: -52.5,82.5 + parent: 1 + type: Transform + - uid: 5579 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,83.5 + parent: 1 + type: Transform + - uid: 5723 + components: + - rot: 3.141592653589793 rad + pos: -52.5,65.5 + parent: 1 + type: Transform + - uid: 5726 + components: + - rot: 3.141592653589793 rad + pos: -50.5,65.5 + parent: 1 + type: Transform + - uid: 5742 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,89.5 + parent: 1 + type: Transform + - uid: 6496 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,54.5 + parent: 1 + type: Transform + - uid: 6497 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,55.5 + parent: 1 + type: Transform + - uid: 6498 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,59.5 + parent: 1 + type: Transform + - uid: 6499 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,60.5 + parent: 1 + type: Transform + - uid: 6500 + components: + - rot: 3.141592653589793 rad + pos: -15.5,61.5 + parent: 1 + type: Transform + - uid: 6501 + components: + - rot: 3.141592653589793 rad + pos: -16.5,61.5 + parent: 1 + type: Transform + - uid: 6502 + components: + - rot: 3.141592653589793 rad + pos: -17.5,61.5 + parent: 1 + type: Transform + - uid: 6503 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,60.5 + parent: 1 + type: Transform + - uid: 6504 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,59.5 + parent: 1 + type: Transform + - uid: 6505 + components: + - rot: 3.141592653589793 rad + pos: -17.5,57.5 + parent: 1 + type: Transform + - uid: 6506 + components: + - rot: 3.141592653589793 rad + pos: -15.5,57.5 + parent: 1 + type: Transform + - uid: 8544 + components: + - rot: 3.141592653589793 rad + pos: -52.5,58.5 + parent: 1 + type: Transform + - uid: 8545 + components: + - rot: 3.141592653589793 rad + pos: -50.5,58.5 + parent: 1 + type: Transform + - uid: 8573 + components: + - rot: 3.141592653589793 rad + pos: -48.5,51.5 + parent: 1 + type: Transform + - uid: 8574 + components: + - rot: 3.141592653589793 rad + pos: -46.5,51.5 + parent: 1 + type: Transform + - uid: 8575 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,53.5 + parent: 1 + type: Transform + - uid: 8576 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,55.5 + parent: 1 + type: Transform + - uid: 9784 + components: + - pos: -36.5,41.5 + parent: 1 + type: Transform + - uid: 9785 + components: + - pos: -35.5,41.5 + parent: 1 + type: Transform + - uid: 9786 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,38.5 + parent: 1 + type: Transform + - uid: 9787 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,37.5 + parent: 1 + type: Transform + - uid: 9788 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,36.5 + parent: 1 + type: Transform + - uid: 9789 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,35.5 + parent: 1 + type: Transform + - uid: 9790 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,43.5 + parent: 1 + type: Transform + - uid: 9791 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,44.5 + parent: 1 + type: Transform + - uid: 9792 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,45.5 + parent: 1 + type: Transform + - uid: 9793 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,46.5 + parent: 1 + type: Transform + - uid: 9808 + components: + - rot: 3.141592653589793 rad + pos: -7.5,57.5 + parent: 1 + type: Transform + - uid: 9850 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,36.5 + parent: 1 + type: Transform + - uid: 9851 + components: + - rot: 3.141592653589793 rad + pos: -31.5,55.5 + parent: 1 + type: Transform + - uid: 10666 + components: + - rot: 1.5707963267948966 rad + pos: -76.5,35.5 + parent: 1 + type: Transform + - uid: 10667 + components: + - rot: 1.5707963267948966 rad + pos: -76.5,34.5 + parent: 1 + type: Transform + - uid: 10668 + components: + - rot: 3.141592653589793 rad + pos: -76.5,33.5 + parent: 1 + type: Transform + - uid: 10669 + components: + - rot: 3.141592653589793 rad + pos: -77.5,33.5 + parent: 1 + type: Transform + - uid: 10670 + components: + - rot: 3.141592653589793 rad + pos: -78.5,33.5 + parent: 1 + type: Transform + - uid: 10671 + components: + - rot: 3.141592653589793 rad + pos: -79.5,33.5 + parent: 1 + type: Transform + - uid: 10672 + components: + - rot: 3.141592653589793 rad + pos: -80.5,33.5 + parent: 1 + type: Transform + - uid: 10673 + components: + - rot: 3.141592653589793 rad + pos: -81.5,33.5 + parent: 1 + type: Transform + - uid: 10674 + components: + - rot: 3.141592653589793 rad + pos: -82.5,33.5 + parent: 1 + type: Transform + - uid: 10675 + components: + - rot: 3.141592653589793 rad + pos: -83.5,33.5 + parent: 1 + type: Transform + - uid: 10676 + components: + - rot: 3.141592653589793 rad + pos: -84.5,33.5 + parent: 1 + type: Transform + - uid: 10682 + components: + - rot: 3.141592653589793 rad + pos: -84.5,27.5 + parent: 1 + type: Transform + - uid: 10683 + components: + - pos: -84.5,23.5 + parent: 1 + type: Transform + - uid: 10860 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,51.5 + parent: 1 + type: Transform + - uid: 13301 + components: + - pos: 3.5,19.5 + parent: 1 + type: Transform + - uid: 13302 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,19.5 + parent: 1 + type: Transform + - uid: 13305 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,28.5 + parent: 1 + type: Transform + - uid: 13306 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,29.5 + parent: 1 + type: Transform + - uid: 14816 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,51.5 + parent: 1 + type: Transform + - uid: 14970 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 1 + type: Transform + - uid: 14974 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 1 + type: Transform + - uid: 15079 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,16.5 + parent: 1 + type: Transform + - uid: 15080 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,15.5 + parent: 1 + type: Transform + - uid: 15081 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,22.5 + parent: 1 + type: Transform + - uid: 15082 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,35.5 + parent: 1 + type: Transform + - uid: 15083 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,40.5 + parent: 1 + type: Transform +- proto: FirelockElectronics + entities: + - uid: 5541 + components: + - pos: -47.513573,27.566675 + parent: 1 + type: Transform + - uid: 5542 + components: + - pos: -47.372948,27.847925 + parent: 1 + type: Transform +- proto: FirelockGlass + entities: + - uid: 1741 + components: + - pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 1749 + components: + - pos: -10.5,1.5 + parent: 1 + type: Transform + - uid: 1752 + components: + - pos: 10.5,3.5 + parent: 1 + type: Transform + - uid: 1753 + components: + - pos: 11.5,3.5 + parent: 1 + type: Transform + - uid: 1754 + components: + - pos: 24.5,6.5 + parent: 1 + type: Transform + - uid: 1755 + components: + - pos: 24.5,5.5 + parent: 1 + type: Transform + - uid: 1758 + components: + - pos: -10.5,6.5 + parent: 1 + type: Transform + - uid: 1759 + components: + - pos: -10.5,5.5 + parent: 1 + type: Transform + - uid: 1760 + components: + - pos: -10.5,4.5 + parent: 1 + type: Transform + - uid: 1761 + components: + - pos: -11.5,7.5 + parent: 1 + type: Transform + - uid: 1762 + components: + - pos: -12.5,7.5 + parent: 1 + type: Transform + - uid: 1763 + components: + - pos: -13.5,7.5 + parent: 1 + type: Transform + - uid: 1764 + components: + - pos: -14.5,6.5 + parent: 1 + type: Transform + - uid: 1765 + components: + - pos: -14.5,5.5 + parent: 1 + type: Transform + - uid: 1766 + components: + - pos: -14.5,4.5 + parent: 1 + type: Transform + - uid: 1767 + components: + - pos: 12.5,6.5 + parent: 1 + type: Transform + - uid: 1768 + components: + - pos: 12.5,5.5 + parent: 1 + type: Transform + - uid: 2814 + components: + - pos: -14.5,33.5 + parent: 1 + type: Transform + - uid: 2867 + components: + - pos: 1.5,29.5 + parent: 1 + type: Transform + - uid: 2868 + components: + - pos: 1.5,30.5 + parent: 1 + type: Transform + - uid: 2869 + components: + - pos: -0.5,28.5 + parent: 1 + type: Transform + - uid: 2878 + components: + - pos: 1.5,25.5 + parent: 1 + type: Transform + - uid: 2879 + components: + - pos: 1.5,26.5 + parent: 1 + type: Transform + - uid: 2880 + components: + - pos: 1.5,23.5 + parent: 1 + type: Transform + - uid: 3064 + components: + - pos: -14.5,31.5 + parent: 1 + type: Transform + - uid: 3122 + components: + - pos: -14.5,32.5 + parent: 1 + type: Transform + - uid: 3175 + components: + - pos: -13.5,26.5 + parent: 1 + type: Transform + - uid: 3176 + components: + - pos: -12.5,26.5 + parent: 1 + type: Transform + - uid: 3177 + components: + - pos: -11.5,26.5 + parent: 1 + type: Transform + - uid: 3716 + components: + - pos: -41.5,-0.5 + parent: 1 + type: Transform + - uid: 3717 + components: + - pos: -40.5,-0.5 + parent: 1 + type: Transform + - uid: 3718 + components: + - pos: -39.5,0.5 + parent: 1 + type: Transform + - uid: 3719 + components: + - pos: -39.5,1.5 + parent: 1 + type: Transform + - uid: 3720 + components: + - pos: -38.5,2.5 + parent: 1 + type: Transform + - uid: 3721 + components: + - pos: -37.5,2.5 + parent: 1 + type: Transform + - uid: 3722 + components: + - pos: -36.5,2.5 + parent: 1 + type: Transform + - uid: 3723 + components: + - pos: -35.5,1.5 + parent: 1 + type: Transform + - uid: 3724 + components: + - pos: -35.5,0.5 + parent: 1 + type: Transform + - uid: 3725 + components: + - pos: -32.5,-0.5 + parent: 1 + type: Transform + - uid: 3726 + components: + - pos: -35.5,-2.5 + parent: 1 + type: Transform + - uid: 4107 + components: + - pos: -30.5,4.5 + parent: 1 + type: Transform + - uid: 4108 + components: + - pos: -30.5,5.5 + parent: 1 + type: Transform + - uid: 4109 + components: + - pos: -30.5,6.5 + parent: 1 + type: Transform + - uid: 4110 + components: + - pos: -42.5,4.5 + parent: 1 + type: Transform + - uid: 4111 + components: + - pos: -42.5,5.5 + parent: 1 + type: Transform + - uid: 4112 + components: + - pos: -42.5,6.5 + parent: 1 + type: Transform + - uid: 4114 + components: + - pos: -38.5,8.5 + parent: 1 + type: Transform + - uid: 4115 + components: + - pos: -37.5,8.5 + parent: 1 + type: Transform + - uid: 4116 + components: + - pos: -36.5,8.5 + parent: 1 + type: Transform + - uid: 4126 + components: + - pos: -59.5,-11.5 + parent: 1 + type: Transform + - uid: 4912 + components: + - pos: -59.5,-9.5 + parent: 1 + type: Transform + - uid: 4913 + components: + - pos: -59.5,-10.5 + parent: 1 + type: Transform + - uid: 5210 + components: + - pos: -55.5,4.5 + parent: 1 + type: Transform + - uid: 5211 + components: + - pos: -55.5,5.5 + parent: 1 + type: Transform + - uid: 5212 + components: + - pos: -55.5,6.5 + parent: 1 + type: Transform + - uid: 5213 + components: + - pos: -59.5,6.5 + parent: 1 + type: Transform + - uid: 5214 + components: + - pos: -59.5,5.5 + parent: 1 + type: Transform + - uid: 5215 + components: + - pos: -59.5,4.5 + parent: 1 + type: Transform + - uid: 5216 + components: + - pos: -58.5,3.5 + parent: 1 + type: Transform + - uid: 5217 + components: + - pos: -57.5,3.5 + parent: 1 + type: Transform + - uid: 5218 + components: + - pos: -56.5,3.5 + parent: 1 + type: Transform + - uid: 5219 + components: + - pos: -58.5,7.5 + parent: 1 + type: Transform + - uid: 5220 + components: + - pos: -57.5,7.5 + parent: 1 + type: Transform + - uid: 5221 + components: + - pos: -56.5,7.5 + parent: 1 + type: Transform + - uid: 5225 + components: + - pos: -38.5,30.5 + parent: 1 + type: Transform + - uid: 5226 + components: + - pos: -37.5,30.5 + parent: 1 + type: Transform + - uid: 5227 + components: + - pos: -36.5,30.5 + parent: 1 + type: Transform + - uid: 5228 + components: + - pos: -35.5,31.5 + parent: 1 + type: Transform + - uid: 5229 + components: + - pos: -35.5,32.5 + parent: 1 + type: Transform + - uid: 5230 + components: + - pos: -35.5,33.5 + parent: 1 + type: Transform + - uid: 5231 + components: + - pos: -39.5,31.5 + parent: 1 + type: Transform + - uid: 5232 + components: + - pos: -39.5,32.5 + parent: 1 + type: Transform + - uid: 5233 + components: + - pos: -39.5,33.5 + parent: 1 + type: Transform + - uid: 5234 + components: + - pos: -18.5,31.5 + parent: 1 + type: Transform + - uid: 5235 + components: + - pos: -18.5,32.5 + parent: 1 + type: Transform + - uid: 5236 + components: + - pos: -18.5,33.5 + parent: 1 + type: Transform + - uid: 5237 + components: + - pos: -17.5,34.5 + parent: 1 + type: Transform + - uid: 5238 + components: + - pos: -16.5,34.5 + parent: 1 + type: Transform + - uid: 5239 + components: + - pos: -15.5,34.5 + parent: 1 + type: Transform + - uid: 5240 + components: + - pos: -55.5,31.5 + parent: 1 + type: Transform + - uid: 5241 + components: + - pos: -55.5,32.5 + parent: 1 + type: Transform + - uid: 5242 + components: + - pos: -55.5,33.5 + parent: 1 + type: Transform + - uid: 5243 + components: + - pos: -56.5,30.5 + parent: 1 + type: Transform + - uid: 5244 + components: + - pos: -57.5,30.5 + parent: 1 + type: Transform + - uid: 5245 + components: + - pos: -58.5,30.5 + parent: 1 + type: Transform + - uid: 7995 + components: + - pos: -48.5,34.5 + parent: 1 + type: Transform + - uid: 7996 + components: + - pos: -47.5,34.5 + parent: 1 + type: Transform + - uid: 7997 + components: + - pos: -46.5,34.5 + parent: 1 + type: Transform + - uid: 8001 + components: + - pos: -58.5,34.5 + parent: 1 + type: Transform + - uid: 8002 + components: + - pos: -57.5,34.5 + parent: 1 + type: Transform + - uid: 8003 + components: + - pos: -56.5,34.5 + parent: 1 + type: Transform + - uid: 8542 + components: + - pos: -53.5,61.5 + parent: 1 + type: Transform + - uid: 8543 + components: + - pos: -53.5,60.5 + parent: 1 + type: Transform + - uid: 8578 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,56.5 + parent: 1 + type: Transform + - uid: 8579 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,63.5 + parent: 1 + type: Transform + - uid: 8580 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,64.5 + parent: 1 + type: Transform + - uid: 8581 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,65.5 + parent: 1 + type: Transform + - uid: 9819 + components: + - pos: -19.5,36.5 + parent: 1 + type: Transform + - uid: 10684 + components: + - pos: -74.5,27.5 + parent: 1 + type: Transform + - uid: 10685 + components: + - pos: -73.5,27.5 + parent: 1 + type: Transform + - uid: 10686 + components: + - pos: -74.5,23.5 + parent: 1 + type: Transform + - uid: 10687 + components: + - pos: -73.5,23.5 + parent: 1 + type: Transform + - uid: 10688 + components: + - pos: -65.5,33.5 + parent: 1 + type: Transform + - uid: 10689 + components: + - pos: -65.5,34.5 + parent: 1 + type: Transform + - uid: 13307 + components: + - pos: 2.5,27.5 + parent: 1 + type: Transform + - uid: 13308 + components: + - pos: 3.5,27.5 + parent: 1 + type: Transform + - uid: 13309 + components: + - pos: 4.5,27.5 + parent: 1 + type: Transform + - uid: 14302 + components: + - rot: 1.5707963267948966 rad + pos: -72.5,21.5 + parent: 1 + type: Transform + - uid: 14303 + components: + - rot: 1.5707963267948966 rad + pos: -77.5,25.5 + parent: 1 + type: Transform + - uid: 14304 + components: + - rot: 1.5707963267948966 rad + pos: -74.5,18.5 + parent: 1 + type: Transform + - uid: 14817 + components: + - rot: 3.141592653589793 rad + pos: -16.5,52.5 + parent: 1 + type: Transform + - uid: 15376 + components: + - rot: 3.141592653589793 rad + pos: 19.5,7.5 + parent: 1 + type: Transform + - uid: 15378 + components: + - rot: 3.141592653589793 rad + pos: 26.5,22.5 + parent: 1 + type: Transform + - uid: 15379 + components: + - rot: 3.141592653589793 rad + pos: 26.5,4.5 + parent: 1 + type: Transform + - uid: 15649 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,1.5 + parent: 1 + type: Transform +- proto: Fireplace + entities: + - uid: 3032 + components: + - pos: -23.5,18.5 + parent: 1 + type: Transform + - uid: 5356 + components: + - pos: -51.5,-0.5 + parent: 1 + type: Transform +- proto: Flash + entities: + - uid: 2851 + components: + - pos: -16.489683,29.613209 + parent: 1 + type: Transform + - uid: 10916 + components: + - pos: -12.483002,63.566193 + parent: 1 + type: Transform +- proto: FlashlightLantern + entities: + - uid: 4103 + components: + - pos: -33.652264,-1.2000351 + parent: 1 + type: Transform + - uid: 4104 + components: + - pos: -33.44914,-1.4031601 + parent: 1 + type: Transform +- proto: FlashlightSeclite + entities: + - uid: 2842 + components: + - pos: -17.543365,26.708624 + parent: 1 + type: Transform + - uid: 3315 + components: + - pos: -17.49649,26.396124 + parent: 1 + type: Transform + - uid: 13335 + components: + - pos: -0.51456356,10.706236 + parent: 1 + type: Transform + - uid: 13336 + components: + - pos: -0.48331353,10.346861 + parent: 1 + type: Transform +- proto: Floodlight + entities: + - uid: 15527 + components: + - pos: 7.5332904,-17.502348 + parent: 1 + type: Transform +- proto: FloorDrain + entities: + - uid: 1981 + components: + - pos: -2.5,25.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 6928 + components: + - pos: -28.5,46.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 10144 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,36.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures +- proto: FloraTree01 + entities: + - uid: 5652 + components: + - pos: -31.673817,19.688118 + parent: 1 + type: Transform + - uid: 7525 + components: + - pos: -11.963879,39.845062 + parent: 1 + type: Transform +- proto: FloraTree02 + entities: + - uid: 7523 + components: + - pos: -12.854504,35.595062 + parent: 1 + type: Transform +- proto: FloraTree03 + entities: + - uid: 5651 + components: + - pos: -34.080067,20.500618 + parent: 1 + type: Transform +- proto: FloraTree04 + entities: + - uid: 5653 + components: + - pos: -33.986317,15.672493 + parent: 1 + type: Transform +- proto: FloraTree05 + entities: + - uid: 7526 + components: + - pos: -13.010754,43.235687 + parent: 1 + type: Transform +- proto: FloraTreeStump + entities: + - uid: 15850 + components: + - pos: 20.438618,40.115738 + parent: 1 + type: Transform +- proto: FluteInstrument + entities: + - uid: 14705 + components: + - pos: -4.5521817,51.503952 + parent: 1 + type: Transform +- proto: FoamBlade + entities: + - uid: 5803 + components: + - desc: A highly detailed replica of a real armblade. + type: MetaData + - pos: -9.533392,20.561493 + parent: 1 + type: Transform +- proto: FoodBowlBigTrash + entities: + - uid: 1873 + components: + - pos: -35.01638,3.9468641 + parent: 1 + type: Transform +- proto: FoodBoxDonkpocketBerry + entities: + - uid: 7947 + components: + - pos: -54.482857,64.65437 + parent: 1 + type: Transform +- proto: FoodBoxDonut + entities: + - uid: 15100 + components: + - pos: -15.485719,25.584269 + parent: 1 + type: Transform +- proto: FoodCakeSpaceman + entities: + - uid: 13835 + components: + - pos: -4.5029564,53.587227 + parent: 1 + type: Transform +- proto: FoodCheese + entities: + - uid: 5801 + components: + - pos: -9.517767,22.3806 + parent: 1 + type: Transform +- proto: FoodDonutJellySpaceman + entities: + - uid: 14938 + components: + - pos: -111.48177,18.535988 + parent: 1 + type: Transform +- proto: FoodMealSashimi + entities: + - uid: 6056 + components: + - pos: -48.5126,9.614483 + parent: 1 + type: Transform +- proto: FoodPieBananaCream + entities: + - uid: 4240 + components: + - pos: -41.421516,28.723614 + parent: 1 + type: Transform +- proto: FoodPlateSmallTrash + entities: + - uid: 2640 + components: + - pos: -35.54763,4.040614 + parent: 1 + type: Transform + - uid: 2886 + components: + - pos: -36.188255,4.056239 + parent: 1 + type: Transform + - uid: 4237 + components: + - pos: -35.29763,3.4937391 + parent: 1 + type: Transform +- proto: FoodPlateTrash + entities: + - uid: 1527 + components: + - pos: -35.73513,3.8687391 + parent: 1 + type: Transform +- proto: FoodSoupEyeball + entities: + - uid: 15186 + components: + - pos: 4.4872284,54.545197 + parent: 1 + type: Transform +- proto: FoodSoupStew + entities: + - uid: 5598 + components: + - pos: -49.501343,9.695094 + parent: 1 + type: Transform +- proto: FoodTinBeans + entities: + - uid: 1528 + components: + - pos: 10.541792,-13.39496 + parent: 1 + type: Transform +- proto: ForensicPad + entities: + - uid: 12914 + components: + - pos: 1.5309631,43.363426 + parent: 1 + type: Transform + - uid: 12915 + components: + - pos: 2.583364,43.44034 + parent: 1 + type: Transform +- proto: GasAnalyzer + entities: + - uid: 15550 + components: + - pos: 11.778922,-20.456448 + parent: 1 + type: Transform +- proto: GasCanisterBrokenBase + entities: + - uid: 370 + components: + - pos: 0.5,-15.5 + parent: 1 + type: Transform +- proto: GasFilterFlipped + entities: + - uid: 2397 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,35.5 + parent: 1 + type: Transform +- proto: GasMinerCarbonDioxide + entities: + - uid: 10841 + components: + - rot: -1.5707963267948966 rad + pos: -89.5,39.5 + parent: 1 + type: Transform +- proto: GasMinerNitrogen + entities: + - uid: 10840 + components: + - rot: -1.5707963267948966 rad + pos: -89.5,37.5 + parent: 1 + type: Transform + - maxExternalPressure: 4000 + type: GasMiner +- proto: GasMinerOxygen + entities: + - uid: 10839 + components: + - rot: -1.5707963267948966 rad + pos: -89.5,35.5 + parent: 1 + type: Transform + - maxExternalPressure: 4000 + type: GasMiner +- proto: GasMinerPlasma + entities: + - uid: 10842 + components: + - pos: -89.5,43.5 + parent: 1 + type: Transform +- proto: GasOutletInjector + entities: + - uid: 13633 + components: + - rot: 1.5707963267948966 rad + pos: -88.5,35.5 + parent: 1 + type: Transform + - uid: 13634 + components: + - rot: 1.5707963267948966 rad + pos: -88.5,37.5 + parent: 1 + type: Transform + - uid: 13635 + components: + - rot: 1.5707963267948966 rad + pos: -88.5,39.5 + parent: 1 + type: Transform + - uid: 13636 + components: + - rot: 1.5707963267948966 rad + pos: -88.5,41.5 + parent: 1 + type: Transform + - uid: 13637 + components: + - rot: 1.5707963267948966 rad + pos: -88.5,43.5 + parent: 1 + type: Transform + - uid: 13638 + components: + - rot: 1.5707963267948966 rad + pos: -88.5,45.5 + parent: 1 + type: Transform +- proto: GasPassiveVent + entities: + - uid: 364 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-14.5 + parent: 1 + type: Transform + - uid: 365 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-14.5 + parent: 1 + type: Transform + - uid: 13627 + components: + - pos: -90.5,45.5 + parent: 1 + type: Transform + - uid: 13628 + components: + - pos: -90.5,43.5 + parent: 1 + type: Transform + - uid: 13629 + components: + - pos: -90.5,41.5 + parent: 1 + type: Transform + - uid: 13630 + components: + - pos: -90.5,39.5 + parent: 1 + type: Transform + - uid: 13631 + components: + - pos: -90.5,37.5 + parent: 1 + type: Transform + - uid: 13632 + components: + - pos: -90.5,35.5 + parent: 1 + type: Transform + - uid: 13858 + components: + - pos: -84.5,48.5 + parent: 1 + type: Transform + - uid: 13859 + components: + - pos: -83.5,50.5 + parent: 1 + type: Transform + - uid: 13860 + components: + - pos: -81.5,50.5 + parent: 1 + type: Transform + - uid: 13916 + components: + - rot: 1.5707963267948966 rad + pos: -86.5,33.5 + parent: 1 + type: Transform +- proto: GasPipeBend + entities: + - uid: 2385 + components: + - rot: 3.141592653589793 rad + pos: 6.5,35.5 + parent: 1 + type: Transform + - uid: 2387 + components: + - pos: 11.5,35.5 + parent: 1 + type: Transform + - uid: 2388 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,34.5 + parent: 1 + type: Transform + - uid: 2389 + components: + - rot: 3.141592653589793 rad + pos: 9.5,34.5 + parent: 1 + type: Transform + - uid: 2390 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,36.5 + parent: 1 + type: Transform + - uid: 2391 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,36.5 + parent: 1 + type: Transform + - uid: 2419 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2420 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2457 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2458 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2460 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2463 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 3016 + components: + - rot: 3.141592653589793 rad + pos: 2.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 3017 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 3018 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3687 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5387 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8693 + components: + - pos: -46.5,55.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8746 + components: + - pos: -56.5,57.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8752 + components: + - rot: 1.5707963267948966 rad + pos: -61.5,55.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8753 + components: + - rot: 1.5707963267948966 rad + pos: -60.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8767 + components: + - pos: -55.5,58.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8926 + components: + - pos: -52.5,88.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8927 + components: + - pos: -50.5,89.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8931 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,88.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8932 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,89.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10796 + components: + - pos: 10.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10797 + components: + - pos: 9.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11126 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11221 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11222 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,43.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11227 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11228 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,46.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11279 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11287 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11288 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11312 + components: + - rot: 3.141592653589793 rad + pos: -52.5,35.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11534 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11649 + components: + - rot: 3.141592653589793 rad + pos: -33.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11679 + components: + - rot: -1.5707963267948966 rad + pos: -57.5,30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11680 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11788 + components: + - pos: -57.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11820 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12186 + components: + - rot: 3.141592653589793 rad + pos: -19.5,35.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12189 + components: + - pos: -19.5,38.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12217 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12319 + components: + - rot: 3.141592653589793 rad + pos: -13.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12370 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12371 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12372 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12373 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12399 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12400 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12401 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12402 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12554 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12726 + components: + - pos: -1.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12727 + components: + - pos: -2.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12728 + components: + - rot: 3.141592653589793 rad + pos: -2.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12729 + components: + - rot: 3.141592653589793 rad + pos: -1.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12743 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12751 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12752 + components: + - pos: 11.5,16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13014 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,55.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 13015 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,54.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13719 + components: + - rot: 3.141592653589793 rad + pos: -90.5,34.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13720 + components: + - rot: 3.141592653589793 rad + pos: -90.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13721 + components: + - rot: 3.141592653589793 rad + pos: -90.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13722 + components: + - rot: 3.141592653589793 rad + pos: -90.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13725 + components: + - rot: 3.141592653589793 rad + pos: -90.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13730 + components: + - rot: 3.141592653589793 rad + pos: -90.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13862 + components: + - pos: -82.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13863 + components: + - rot: 3.141592653589793 rad + pos: -83.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13983 + components: + - pos: -66.5,50.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13984 + components: + - pos: -67.5,52.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13985 + components: + - rot: 3.141592653589793 rad + pos: -67.5,50.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13997 + components: + - pos: -61.5,48.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14021 + components: + - pos: -72.5,34.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14022 + components: + - pos: -71.5,35.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14023 + components: + - rot: 3.141592653589793 rad + pos: -72.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14024 + components: + - rot: 3.141592653589793 rad + pos: -71.5,34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14054 + components: + - rot: 3.141592653589793 rad + pos: -74.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14055 + components: + - rot: 3.141592653589793 rad + pos: -73.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14106 + components: + - rot: 3.141592653589793 rad + pos: -71.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14107 + components: + - rot: 3.141592653589793 rad + pos: -70.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14108 + components: + - rot: 1.5707963267948966 rad + pos: -71.5,23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14133 + components: + - pos: -64.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14134 + components: + - pos: -63.5,34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14135 + components: + - rot: -1.5707963267948966 rad + pos: -63.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14136 + components: + - rot: -1.5707963267948966 rad + pos: -64.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound +- proto: GasPipeFourway + entities: + - uid: 2386 + components: + - pos: 9.5,35.5 + parent: 1 + type: Transform + - uid: 2685 + components: + - pos: 2.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8692 + components: + - pos: -47.5,55.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8781 + components: + - pos: -52.5,61.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10234 + components: + - pos: -40.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11083 + components: + - pos: -56.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11084 + components: + - pos: -57.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11189 + components: + - pos: -41.5,44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11278 + components: + - pos: -48.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11532 + components: + - pos: -38.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11533 + components: + - pos: -36.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11559 + components: + - pos: -36.5,37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11560 + components: + - pos: -38.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11759 + components: + - pos: -58.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11761 + components: + - pos: -56.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11940 + components: + - pos: -41.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11941 + components: + - pos: -40.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11974 + components: + - pos: -44.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11975 + components: + - pos: -43.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12052 + components: + - pos: -38.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12053 + components: + - pos: -36.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12094 + components: + - pos: -23.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12191 + components: + - pos: -17.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12192 + components: + - pos: -15.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12298 + components: + - pos: -13.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12299 + components: + - pos: -11.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12349 + components: + - pos: -9.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12423 + components: + - pos: -11.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12427 + components: + - pos: -11.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12647 + components: + - pos: 26.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12970 + components: + - pos: -17.5,54.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12971 + components: + - pos: -15.5,55.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 354 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-10.5 + parent: 1 + type: Transform + - uid: 355 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-11.5 + parent: 1 + type: Transform + - uid: 356 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 357 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-13.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 358 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-13.5 + parent: 1 + type: Transform + - uid: 359 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-12.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 360 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-11.5 + parent: 1 + type: Transform + - uid: 361 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-10.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1213 + components: + - rot: 3.141592653589793 rad + pos: -0.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1228 + components: + - rot: 3.141592653589793 rad + pos: -0.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1242 + components: + - rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1248 + components: + - rot: 3.141592653589793 rad + pos: 0.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1329 + components: + - rot: 3.141592653589793 rad + pos: -0.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1369 + components: + - rot: 3.141592653589793 rad + pos: -0.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1513 + components: + - rot: 3.141592653589793 rad + pos: -17.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1771 + components: + - rot: 1.5707963267948966 rad + pos: -64.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1772 + components: + - rot: 1.5707963267948966 rad + pos: -71.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1773 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1779 + components: + - rot: 3.141592653589793 rad + pos: 15.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1790 + components: + - rot: 3.141592653589793 rad + pos: 14.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1797 + components: + - rot: 3.141592653589793 rad + pos: 14.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1798 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2392 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,36.5 + parent: 1 + type: Transform + - uid: 2393 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,34.5 + parent: 1 + type: Transform + - uid: 2395 + components: + - rot: 3.141592653589793 rad + pos: 6.5,36.5 + parent: 1 + type: Transform + - uid: 2403 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2404 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2405 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2406 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2407 + components: + - rot: 3.141592653589793 rad + pos: 4.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2412 + components: + - rot: 3.141592653589793 rad + pos: 4.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2413 + components: + - rot: 3.141592653589793 rad + pos: 4.5,35.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 2414 + components: + - rot: 3.141592653589793 rad + pos: 4.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 2415 + components: + - rot: 3.141592653589793 rad + pos: 2.5,30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2417 + components: + - rot: 3.141592653589793 rad + pos: 2.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2426 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2427 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2428 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2429 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2430 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,34.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 2431 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,34.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2434 + components: + - pos: 3.5,35.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2435 + components: + - pos: 3.5,36.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2436 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2437 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2438 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2439 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2440 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2441 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2442 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2443 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2444 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2445 + components: + - rot: 3.141592653589793 rad + pos: 8.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2446 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2447 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2448 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2449 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2450 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2451 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 2452 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2453 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2454 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2455 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2456 + components: + - rot: 3.141592653589793 rad + pos: 15.5,30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2462 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2464 + components: + - pos: 15.5,31.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2465 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2466 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2467 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2468 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2469 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 2470 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2484 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 2675 + components: + - pos: 2.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2676 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2677 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2678 + components: + - rot: 3.141592653589793 rad + pos: 2.5,26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2679 + components: + - rot: 3.141592653589793 rad + pos: 4.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2680 + components: + - rot: 3.141592653589793 rad + pos: 4.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2681 + components: + - rot: 3.141592653589793 rad + pos: 4.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2682 + components: + - rot: 3.141592653589793 rad + pos: 2.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2775 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2864 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2871 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2872 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2873 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2874 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2875 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2876 + components: + - pos: 2.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2877 + components: + - pos: 4.5,22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2895 + components: + - pos: -15.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2902 + components: + - rot: 3.141592653589793 rad + pos: -15.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2919 + components: + - pos: -15.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3003 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 3004 + components: + - pos: 4.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3005 + components: + - pos: 3.5,18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 3006 + components: + - pos: 4.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 3007 + components: + - pos: 3.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 3008 + components: + - pos: 4.5,17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3009 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 3010 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3011 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3012 + components: + - rot: 3.141592653589793 rad + pos: 4.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3013 + components: + - rot: 3.141592653589793 rad + pos: 2.5,21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 3014 + components: + - rot: 3.141592653589793 rad + pos: 2.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 3015 + components: + - rot: 3.141592653589793 rad + pos: 4.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3025 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 3179 + components: + - pos: -17.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 3319 + components: + - pos: -17.5,26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 3320 + components: + - pos: -15.5,26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3349 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3350 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3351 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 3356 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 3357 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 3360 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3551 + components: + - pos: -40.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3559 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 3563 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 3571 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3574 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3617 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 3631 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 3657 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 3683 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3704 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3715 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3840 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 3844 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3846 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3851 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 3960 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 3961 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 4106 + components: + - rot: 1.5707963267948966 rad + pos: -60.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4265 + components: + - rot: 1.5707963267948966 rad + pos: -60.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 4752 + components: + - pos: -64.5,-10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4753 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 4755 + components: + - rot: 1.5707963267948966 rad + pos: -61.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4775 + components: + - rot: 1.5707963267948966 rad + pos: -65.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4776 + components: + - rot: 1.5707963267948966 rad + pos: -66.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4777 + components: + - rot: 1.5707963267948966 rad + pos: -67.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4778 + components: + - rot: 1.5707963267948966 rad + pos: -68.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4779 + components: + - rot: 1.5707963267948966 rad + pos: -69.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4780 + components: + - rot: 1.5707963267948966 rad + pos: -70.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4781 + components: + - rot: 1.5707963267948966 rad + pos: -73.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4803 + components: + - rot: 1.5707963267948966 rad + pos: -62.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4804 + components: + - rot: 1.5707963267948966 rad + pos: -63.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4808 + components: + - rot: 3.141592653589793 rad + pos: -57.5,-10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4877 + components: + - rot: 1.5707963267948966 rad + pos: -71.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4878 + components: + - rot: 1.5707963267948966 rad + pos: -72.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4914 + components: + - rot: 1.5707963267948966 rad + pos: -69.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4915 + components: + - rot: 1.5707963267948966 rad + pos: -70.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4916 + components: + - rot: 1.5707963267948966 rad + pos: -61.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 4917 + components: + - rot: 1.5707963267948966 rad + pos: -62.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4918 + components: + - rot: 1.5707963267948966 rad + pos: -63.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4919 + components: + - rot: 1.5707963267948966 rad + pos: -67.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 4920 + components: + - rot: 1.5707963267948966 rad + pos: -72.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 4921 + components: + - rot: 1.5707963267948966 rad + pos: -73.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 4931 + components: + - rot: 3.141592653589793 rad + pos: -58.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 4957 + components: + - rot: 1.5707963267948966 rad + pos: -66.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 4974 + components: + - rot: 1.5707963267948966 rad + pos: -68.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4975 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5317 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,6.5 + parent: 1 + type: Transform + - uid: 5350 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,6.5 + parent: 1 + type: Transform + - uid: 5393 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5397 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5401 + components: + - pos: -42.5,-11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5462 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5690 + components: + - pos: -17.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5764 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5765 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5789 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5790 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 6253 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,4.5 + parent: 1 + type: Transform + - uid: 7441 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 7442 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8674 + components: + - pos: -46.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8675 + components: + - pos: -46.5,49.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8676 + components: + - pos: -46.5,50.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8677 + components: + - pos: -46.5,51.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8678 + components: + - pos: -46.5,52.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8679 + components: + - pos: -46.5,53.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8680 + components: + - pos: -46.5,54.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8681 + components: + - pos: -48.5,48.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8682 + components: + - pos: -48.5,49.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8683 + components: + - pos: -48.5,50.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8684 + components: + - pos: -48.5,51.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8685 + components: + - pos: -48.5,52.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8687 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,55.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8688 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,55.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8689 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8694 + components: + - pos: -47.5,56.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8695 + components: + - pos: -47.5,57.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8696 + components: + - pos: -47.5,58.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8701 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8703 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8705 + components: + - rot: -1.5707963267948966 rad + pos: -57.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8706 + components: + - rot: -1.5707963267948966 rad + pos: -58.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8707 + components: + - rot: 3.141592653589793 rad + pos: -51.5,54.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8708 + components: + - rot: 3.141592653589793 rad + pos: -51.5,53.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8709 + components: + - rot: 3.141592653589793 rad + pos: -51.5,52.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8710 + components: + - rot: 3.141592653589793 rad + pos: -51.5,51.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8711 + components: + - rot: 3.141592653589793 rad + pos: -50.5,52.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8712 + components: + - rot: 3.141592653589793 rad + pos: -50.5,51.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8713 + components: + - rot: 3.141592653589793 rad + pos: -53.5,52.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8714 + components: + - rot: 3.141592653589793 rad + pos: -53.5,51.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8715 + components: + - rot: 3.141592653589793 rad + pos: -54.5,52.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8716 + components: + - rot: 3.141592653589793 rad + pos: -54.5,51.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8717 + components: + - rot: 3.141592653589793 rad + pos: -56.5,52.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8718 + components: + - rot: 3.141592653589793 rad + pos: -56.5,51.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8719 + components: + - rot: 3.141592653589793 rad + pos: -57.5,52.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8720 + components: + - rot: 3.141592653589793 rad + pos: -57.5,51.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8721 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,55.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8723 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,55.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8725 + components: + - pos: -55.5,54.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8726 + components: + - pos: -55.5,55.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8728 + components: + - pos: -55.5,57.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8729 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,58.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8730 + components: + - rot: -1.5707963267948966 rad + pos: -57.5,58.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8731 + components: + - rot: -1.5707963267948966 rad + pos: -58.5,58.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8732 + components: + - rot: -1.5707963267948966 rad + pos: -59.5,58.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8737 + components: + - rot: 3.141592653589793 rad + pos: -54.5,54.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8738 + components: + - rot: 3.141592653589793 rad + pos: -54.5,53.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8739 + components: + - rot: 3.141592653589793 rad + pos: -57.5,54.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8740 + components: + - rot: 3.141592653589793 rad + pos: -57.5,53.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8741 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,55.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8742 + components: + - rot: 3.141592653589793 rad + pos: -56.5,56.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8743 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,57.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8744 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,57.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8745 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,57.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8747 + components: + - rot: -1.5707963267948966 rad + pos: -59.5,55.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8748 + components: + - rot: -1.5707963267948966 rad + pos: -60.5,55.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8749 + components: + - rot: 3.141592653589793 rad + pos: -61.5,54.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8750 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8751 + components: + - pos: -61.5,53.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8768 + components: + - rot: 3.141592653589793 rad + pos: -52.5,54.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8769 + components: + - rot: 3.141592653589793 rad + pos: -52.5,55.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8770 + components: + - rot: 3.141592653589793 rad + pos: -52.5,56.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8771 + components: + - rot: 3.141592653589793 rad + pos: -52.5,57.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8772 + components: + - rot: 3.141592653589793 rad + pos: -52.5,58.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8773 + components: + - rot: 3.141592653589793 rad + pos: -52.5,59.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8774 + components: + - rot: 3.141592653589793 rad + pos: -50.5,56.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8775 + components: + - rot: 3.141592653589793 rad + pos: -50.5,57.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8776 + components: + - rot: 3.141592653589793 rad + pos: -50.5,58.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8777 + components: + - rot: 3.141592653589793 rad + pos: -50.5,59.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8786 + components: + - pos: -52.5,60.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8789 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,61.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8790 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,61.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8791 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,61.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8792 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,61.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8794 + components: + - rot: 3.141592653589793 rad + pos: -52.5,63.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8795 + components: + - rot: 3.141592653589793 rad + pos: -52.5,64.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8796 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,65.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8797 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,65.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8798 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,65.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8799 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,65.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8800 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,65.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8801 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,65.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8802 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,65.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8803 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,65.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8804 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,65.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8805 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,64.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8806 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,64.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8807 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,64.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8808 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,64.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8809 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,64.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8810 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,64.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8811 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,64.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8812 + components: + - pos: -50.5,65.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8813 + components: + - pos: -50.5,66.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8815 + components: + - pos: -52.5,66.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8816 + components: + - pos: -52.5,67.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8818 + components: + - pos: -50.5,61.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8819 + components: + - pos: -50.5,62.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8820 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,60.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8821 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,60.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8822 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,60.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8823 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,60.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8824 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,61.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8825 + components: + - rot: 3.141592653589793 rad + pos: -54.5,62.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8826 + components: + - rot: 3.141592653589793 rad + pos: -54.5,63.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8827 + components: + - rot: 3.141592653589793 rad + pos: -55.5,61.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8828 + components: + - rot: 3.141592653589793 rad + pos: -55.5,62.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8829 + components: + - rot: 3.141592653589793 rad + pos: -55.5,63.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8830 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,60.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8831 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,60.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8832 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,60.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8833 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,61.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8834 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,61.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8835 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,61.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8836 + components: + - pos: -58.5,62.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8837 + components: + - pos: -58.5,63.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8838 + components: + - pos: -59.5,61.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8839 + components: + - pos: -59.5,62.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8840 + components: + - pos: -59.5,63.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8841 + components: + - rot: -1.5707963267948966 rad + pos: -59.5,61.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8851 + components: + - rot: 3.141592653589793 rad + pos: -52.5,68.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8852 + components: + - rot: 3.141592653589793 rad + pos: -52.5,69.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8853 + components: + - rot: 3.141592653589793 rad + pos: -52.5,70.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8854 + components: + - rot: 3.141592653589793 rad + pos: -52.5,71.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8855 + components: + - rot: 3.141592653589793 rad + pos: -52.5,72.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8856 + components: + - rot: 3.141592653589793 rad + pos: -52.5,73.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8857 + components: + - rot: 3.141592653589793 rad + pos: -52.5,74.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8858 + components: + - rot: 3.141592653589793 rad + pos: -52.5,75.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8859 + components: + - rot: 3.141592653589793 rad + pos: -52.5,76.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8860 + components: + - rot: 3.141592653589793 rad + pos: -52.5,77.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8861 + components: + - rot: 3.141592653589793 rad + pos: -52.5,78.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8862 + components: + - rot: 3.141592653589793 rad + pos: -52.5,79.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8863 + components: + - rot: 3.141592653589793 rad + pos: -52.5,80.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8864 + components: + - rot: 3.141592653589793 rad + pos: -50.5,68.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8865 + components: + - rot: 3.141592653589793 rad + pos: -50.5,68.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8866 + components: + - rot: 3.141592653589793 rad + pos: -50.5,69.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8867 + components: + - rot: 3.141592653589793 rad + pos: -50.5,70.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8868 + components: + - rot: 3.141592653589793 rad + pos: -50.5,71.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8869 + components: + - rot: 3.141592653589793 rad + pos: -50.5,72.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8870 + components: + - rot: 3.141592653589793 rad + pos: -50.5,73.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8871 + components: + - rot: 3.141592653589793 rad + pos: -50.5,74.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8872 + components: + - rot: 3.141592653589793 rad + pos: -50.5,75.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8873 + components: + - rot: 3.141592653589793 rad + pos: -50.5,76.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8874 + components: + - rot: 3.141592653589793 rad + pos: -50.5,77.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8875 + components: + - rot: 3.141592653589793 rad + pos: -50.5,78.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8876 + components: + - rot: 3.141592653589793 rad + pos: -50.5,79.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8877 + components: + - rot: 3.141592653589793 rad + pos: -52.5,81.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8878 + components: + - rot: 3.141592653589793 rad + pos: -52.5,82.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8879 + components: + - rot: 3.141592653589793 rad + pos: -50.5,81.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8880 + components: + - rot: 3.141592653589793 rad + pos: -50.5,82.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8889 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,84.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8890 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,84.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8891 + components: + - pos: -52.5,83.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8892 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,84.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8893 + components: + - rot: -1.5707963267948966 rad + pos: -57.5,84.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8894 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,83.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8895 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,83.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8896 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,83.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8897 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,83.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8898 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,83.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8899 + components: + - rot: -1.5707963267948966 rad + pos: -57.5,83.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8900 + components: + - rot: 3.141592653589793 rad + pos: -50.5,85.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8901 + components: + - rot: 3.141592653589793 rad + pos: -50.5,86.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8902 + components: + - rot: 3.141592653589793 rad + pos: -50.5,87.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8903 + components: + - rot: 3.141592653589793 rad + pos: -50.5,88.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8904 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,89.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8905 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,89.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8906 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,89.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8907 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,89.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8908 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,89.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8909 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,89.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8910 + components: + - pos: -58.5,88.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8919 + components: + - rot: 3.141592653589793 rad + pos: -52.5,86.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8920 + components: + - rot: 3.141592653589793 rad + pos: -52.5,87.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8921 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,88.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8922 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,88.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8923 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,88.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 9573 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10054 + components: + - rot: 3.141592653589793 rad + pos: 10.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10072 + components: + - pos: 10.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10235 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10240 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10241 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10312 + components: + - pos: -11.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10347 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10704 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11087 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11088 + components: + - pos: -57.5,31.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11089 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11090 + components: + - rot: 3.141592653589793 rad + pos: -56.5,32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11092 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11097 + components: + - rot: -1.5707963267948966 rad + pos: -57.5,37.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11098 + components: + - rot: -1.5707963267948966 rad + pos: -57.5,43.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11099 + components: + - rot: 3.141592653589793 rad + pos: -57.5,37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11100 + components: + - rot: 3.141592653589793 rad + pos: -57.5,43.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11101 + components: + - rot: 3.141592653589793 rad + pos: -56.5,44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11102 + components: + - rot: 3.141592653589793 rad + pos: -56.5,38.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11104 + components: + - rot: 3.141592653589793 rad + pos: -57.5,34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11105 + components: + - rot: 3.141592653589793 rad + pos: -57.5,35.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11106 + components: + - rot: 3.141592653589793 rad + pos: -57.5,36.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11107 + components: + - rot: 3.141592653589793 rad + pos: -56.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11108 + components: + - rot: 3.141592653589793 rad + pos: -56.5,34.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11109 + components: + - rot: 3.141592653589793 rad + pos: -56.5,35.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11110 + components: + - rot: 3.141592653589793 rad + pos: -56.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11111 + components: + - rot: 3.141592653589793 rad + pos: -57.5,39.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11112 + components: + - rot: 3.141592653589793 rad + pos: -57.5,40.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11113 + components: + - rot: 3.141592653589793 rad + pos: -57.5,41.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11115 + components: + - rot: 3.141592653589793 rad + pos: -56.5,40.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11117 + components: + - rot: 3.141592653589793 rad + pos: -56.5,42.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11118 + components: + - rot: 3.141592653589793 rad + pos: -56.5,39.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11127 + components: + - pos: -56.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11128 + components: + - pos: -57.5,45.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11129 + components: + - pos: -57.5,46.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11130 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11131 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11132 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11133 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11135 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11136 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11138 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11139 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11140 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11141 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11142 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11143 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11144 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11149 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11150 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11151 + components: + - pos: -48.5,47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11152 + components: + - rot: 3.141592653589793 rad + pos: -46.5,46.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11153 + components: + - rot: 3.141592653589793 rad + pos: -46.5,45.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11154 + components: + - rot: 3.141592653589793 rad + pos: -46.5,44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11155 + components: + - rot: 3.141592653589793 rad + pos: -48.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11170 + components: + - pos: -48.5,43.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11171 + components: + - pos: -48.5,42.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11176 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11177 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11178 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11179 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,43.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11180 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,43.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11181 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,43.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11182 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11183 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11186 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11187 + components: + - rot: 3.141592653589793 rad + pos: -41.5,43.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11188 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,43.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11190 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,43.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11191 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,43.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11193 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11194 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11195 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11197 + components: + - rot: 3.141592653589793 rad + pos: -40.5,44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11198 + components: + - rot: 3.141592653589793 rad + pos: -40.5,45.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11199 + components: + - rot: 3.141592653589793 rad + pos: -40.5,46.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11200 + components: + - rot: 3.141592653589793 rad + pos: -40.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11201 + components: + - rot: 3.141592653589793 rad + pos: -40.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11202 + components: + - rot: 3.141592653589793 rad + pos: -41.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11203 + components: + - rot: 3.141592653589793 rad + pos: -41.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11204 + components: + - rot: 3.141592653589793 rad + pos: -41.5,47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11205 + components: + - rot: 3.141592653589793 rad + pos: -41.5,48.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11206 + components: + - rot: 3.141592653589793 rad + pos: -41.5,49.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11207 + components: + - rot: 3.141592653589793 rad + pos: -40.5,49.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11210 + components: + - pos: -46.5,41.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11213 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,43.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11214 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,43.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11215 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11216 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11217 + components: + - rot: 3.141592653589793 rad + pos: -36.5,43.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11218 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,43.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11219 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,43.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11220 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11225 + components: + - pos: -32.5,45.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11226 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11229 + components: + - pos: -33.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11230 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11231 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11232 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11233 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,46.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11234 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,46.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11241 + components: + - rot: 3.141592653589793 rad + pos: -46.5,40.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11242 + components: + - rot: 3.141592653589793 rad + pos: -46.5,39.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11243 + components: + - rot: 3.141592653589793 rad + pos: -46.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11244 + components: + - rot: 3.141592653589793 rad + pos: -46.5,37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11245 + components: + - rot: 3.141592653589793 rad + pos: -48.5,40.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11246 + components: + - rot: 3.141592653589793 rad + pos: -48.5,39.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11247 + components: + - rot: 3.141592653589793 rad + pos: -48.5,38.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11248 + components: + - rot: 3.141592653589793 rad + pos: -48.5,37.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11249 + components: + - rot: 3.141592653589793 rad + pos: -48.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11250 + components: + - rot: 3.141592653589793 rad + pos: -46.5,35.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11251 + components: + - rot: 3.141592653589793 rad + pos: -48.5,34.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11252 + components: + - rot: 3.141592653589793 rad + pos: -46.5,34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11253 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11254 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11255 + components: + - rot: 3.141592653589793 rad + pos: -54.5,32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11256 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11257 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11259 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11260 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11261 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11262 + components: + - pos: -50.5,32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11263 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11264 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11265 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11273 + components: + - rot: 3.141592653589793 rad + pos: -51.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11275 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11276 + components: + - pos: -48.5,32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11277 + components: + - pos: -48.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11281 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11282 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11283 + components: + - rot: 3.141592653589793 rad + pos: -47.5,31.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11284 + components: + - rot: 3.141592653589793 rad + pos: -47.5,30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11285 + components: + - rot: 3.141592653589793 rad + pos: -48.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11286 + components: + - rot: 3.141592653589793 rad + pos: -47.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11289 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11290 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11291 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11292 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11295 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11296 + components: + - rot: 3.141592653589793 rad + pos: -51.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11297 + components: + - rot: 3.141592653589793 rad + pos: -51.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11298 + components: + - rot: 3.141592653589793 rad + pos: -50.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11299 + components: + - rot: 3.141592653589793 rad + pos: -51.5,26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11300 + components: + - rot: 3.141592653589793 rad + pos: -50.5,26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11301 + components: + - rot: 3.141592653589793 rad + pos: -51.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11302 + components: + - rot: 3.141592653589793 rad + pos: -50.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11307 + components: + - rot: 3.141592653589793 rad + pos: -51.5,34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11309 + components: + - rot: 3.141592653589793 rad + pos: -50.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11310 + components: + - rot: 3.141592653589793 rad + pos: -50.5,34.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11311 + components: + - rot: 3.141592653589793 rad + pos: -50.5,35.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11313 + components: + - rot: 3.141592653589793 rad + pos: -52.5,36.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11314 + components: + - rot: 3.141592653589793 rad + pos: -52.5,37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11315 + components: + - rot: 3.141592653589793 rad + pos: -52.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11316 + components: + - rot: 3.141592653589793 rad + pos: -52.5,39.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11489 + components: + - rot: -1.5707963267948966 rad + pos: -58.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11520 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11521 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11522 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11523 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11524 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11525 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11526 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11527 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11528 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11529 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11530 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11531 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11535 + components: + - pos: -36.5,34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11537 + components: + - rot: 3.141592653589793 rad + pos: -38.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11538 + components: + - rot: 3.141592653589793 rad + pos: -38.5,34.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11539 + components: + - rot: 3.141592653589793 rad + pos: -38.5,35.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11540 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11541 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11542 + components: + - pos: -36.5,35.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11544 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11545 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11546 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11547 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11548 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11549 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11550 + components: + - rot: 3.141592653589793 rad + pos: -36.5,31.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11551 + components: + - rot: 3.141592653589793 rad + pos: -36.5,30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11552 + components: + - rot: 3.141592653589793 rad + pos: -36.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11553 + components: + - rot: 3.141592653589793 rad + pos: -38.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11554 + components: + - rot: 3.141592653589793 rad + pos: -38.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11561 + components: + - rot: 3.141592653589793 rad + pos: -36.5,36.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11562 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11563 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11564 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11565 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11566 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11567 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11568 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11569 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11570 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11571 + components: + - pos: -38.5,39.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11572 + components: + - pos: -36.5,39.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11573 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11574 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11576 + components: + - pos: -38.5,38.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11577 + components: + - pos: -36.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11578 + components: + - pos: -38.5,37.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11581 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11582 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11583 + components: + - pos: -31.5,37.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11584 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11585 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11586 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11587 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11588 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11589 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11590 + components: + - rot: 3.141592653589793 rad + pos: -31.5,38.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11591 + components: + - rot: 3.141592653589793 rad + pos: -32.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11609 + components: + - rot: 3.141592653589793 rad + pos: -38.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11610 + components: + - rot: 3.141592653589793 rad + pos: -36.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11611 + components: + - rot: 3.141592653589793 rad + pos: -36.5,26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11612 + components: + - rot: 3.141592653589793 rad + pos: -36.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11613 + components: + - rot: 3.141592653589793 rad + pos: -38.5,26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11615 + components: + - rot: 3.141592653589793 rad + pos: -38.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11617 + components: + - rot: 3.141592653589793 rad + pos: -36.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11618 + components: + - rot: 3.141592653589793 rad + pos: -36.5,21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11619 + components: + - rot: 3.141592653589793 rad + pos: -38.5,22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11620 + components: + - rot: 3.141592653589793 rad + pos: -38.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11621 + components: + - rot: 3.141592653589793 rad + pos: -38.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11622 + components: + - rot: 3.141592653589793 rad + pos: -38.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11623 + components: + - rot: 3.141592653589793 rad + pos: -38.5,17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11624 + components: + - rot: 3.141592653589793 rad + pos: -38.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11625 + components: + - rot: 3.141592653589793 rad + pos: -38.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11626 + components: + - rot: 3.141592653589793 rad + pos: -38.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11627 + components: + - rot: 3.141592653589793 rad + pos: -36.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11628 + components: + - rot: 3.141592653589793 rad + pos: -36.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11629 + components: + - rot: 3.141592653589793 rad + pos: -36.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11630 + components: + - rot: 3.141592653589793 rad + pos: -36.5,16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11631 + components: + - rot: 3.141592653589793 rad + pos: -36.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11632 + components: + - rot: 3.141592653589793 rad + pos: -36.5,18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11633 + components: + - rot: 3.141592653589793 rad + pos: -36.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11634 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11635 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11636 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11637 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11638 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11639 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11648 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11650 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11651 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11652 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11653 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11654 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11655 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11656 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11657 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11658 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11659 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11660 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11661 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11663 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11664 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11665 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11666 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11667 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11668 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11669 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11671 + components: + - pos: -34.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11672 + components: + - pos: -34.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11673 + components: + - pos: -34.5,26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11674 + components: + - pos: -33.5,26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11683 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11684 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11685 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11686 + components: + - rot: -1.5707963267948966 rad + pos: -57.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11687 + components: + - rot: 3.141592653589793 rad + pos: -58.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11688 + components: + - rot: 3.141592653589793 rad + pos: -58.5,26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11690 + components: + - rot: 3.141592653589793 rad + pos: -58.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11691 + components: + - rot: 3.141592653589793 rad + pos: -58.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11693 + components: + - rot: 3.141592653589793 rad + pos: -56.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11694 + components: + - rot: 3.141592653589793 rad + pos: -56.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11695 + components: + - rot: 3.141592653589793 rad + pos: -56.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11696 + components: + - rot: 3.141592653589793 rad + pos: -56.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11699 + components: + - rot: 3.141592653589793 rad + pos: -56.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11708 + components: + - rot: 3.141592653589793 rad + pos: -53.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11709 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11710 + components: + - pos: -56.5,23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11711 + components: + - pos: -56.5,22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11712 + components: + - pos: -56.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11713 + components: + - pos: -56.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11714 + components: + - pos: -56.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11715 + components: + - pos: -58.5,18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11716 + components: + - pos: -58.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11717 + components: + - pos: -58.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11718 + components: + - pos: -58.5,21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11719 + components: + - pos: -58.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11720 + components: + - pos: -58.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11721 + components: + - pos: -56.5,17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11722 + components: + - pos: -56.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11723 + components: + - pos: -58.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11724 + components: + - pos: -58.5,16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11725 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11726 + components: + - rot: -1.5707963267948966 rad + pos: -57.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11727 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11728 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11729 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11730 + components: + - rot: 3.141592653589793 rad + pos: -58.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11731 + components: + - rot: 3.141592653589793 rad + pos: -58.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11732 + components: + - rot: 3.141592653589793 rad + pos: -56.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11733 + components: + - rot: 3.141592653589793 rad + pos: -56.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11734 + components: + - rot: 3.141592653589793 rad + pos: -56.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11735 + components: + - rot: 3.141592653589793 rad + pos: -56.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11736 + components: + - rot: 3.141592653589793 rad + pos: -58.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11737 + components: + - rot: 3.141592653589793 rad + pos: -58.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11738 + components: + - rot: 3.141592653589793 rad + pos: -58.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11739 + components: + - rot: 3.141592653589793 rad + pos: -56.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11740 + components: + - rot: 3.141592653589793 rad + pos: -56.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11741 + components: + - rot: 3.141592653589793 rad + pos: -54.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11742 + components: + - rot: 3.141592653589793 rad + pos: -54.5,17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11743 + components: + - rot: 3.141592653589793 rad + pos: -54.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11744 + components: + - rot: 3.141592653589793 rad + pos: -53.5,16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11745 + components: + - rot: 3.141592653589793 rad + pos: -53.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11746 + components: + - rot: 3.141592653589793 rad + pos: -53.5,18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11762 + components: + - rot: 3.141592653589793 rad + pos: -56.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11763 + components: + - rot: 3.141592653589793 rad + pos: -56.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11765 + components: + - rot: 3.141592653589793 rad + pos: -58.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11766 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11767 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11768 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11769 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11770 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11771 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11772 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11773 + components: + - pos: -56.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11774 + components: + - pos: -56.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11775 + components: + - pos: -56.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11776 + components: + - pos: -58.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11777 + components: + - pos: -58.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11778 + components: + - pos: -58.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11779 + components: + - pos: -58.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11780 + components: + - rot: -1.5707963267948966 rad + pos: -57.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11781 + components: + - rot: -1.5707963267948966 rad + pos: -58.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11782 + components: + - rot: -1.5707963267948966 rad + pos: -59.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11783 + components: + - rot: -1.5707963267948966 rad + pos: -60.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11784 + components: + - rot: -1.5707963267948966 rad + pos: -61.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11785 + components: + - rot: -1.5707963267948966 rad + pos: -59.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11786 + components: + - rot: -1.5707963267948966 rad + pos: -60.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11787 + components: + - rot: -1.5707963267948966 rad + pos: -61.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11791 + components: + - rot: 1.5707963267948966 rad + pos: -62.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11792 + components: + - rot: 1.5707963267948966 rad + pos: -63.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11793 + components: + - rot: 1.5707963267948966 rad + pos: -64.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11794 + components: + - rot: 1.5707963267948966 rad + pos: -65.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11795 + components: + - rot: 1.5707963267948966 rad + pos: -66.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11796 + components: + - rot: 1.5707963267948966 rad + pos: -62.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11797 + components: + - rot: 1.5707963267948966 rad + pos: -63.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11798 + components: + - rot: 1.5707963267948966 rad + pos: -64.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11799 + components: + - rot: 1.5707963267948966 rad + pos: -65.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11800 + components: + - rot: 1.5707963267948966 rad + pos: -67.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11801 + components: + - rot: 1.5707963267948966 rad + pos: -68.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11802 + components: + - rot: 1.5707963267948966 rad + pos: -69.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11803 + components: + - rot: 1.5707963267948966 rad + pos: -70.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11804 + components: + - rot: 1.5707963267948966 rad + pos: -71.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11805 + components: + - rot: 1.5707963267948966 rad + pos: -68.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11806 + components: + - rot: 1.5707963267948966 rad + pos: -69.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11807 + components: + - rot: 1.5707963267948966 rad + pos: -70.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11808 + components: + - rot: 1.5707963267948966 rad + pos: -71.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11809 + components: + - rot: 1.5707963267948966 rad + pos: -72.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11810 + components: + - rot: 1.5707963267948966 rad + pos: -72.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11822 + components: + - pos: -58.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11823 + components: + - pos: -58.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11824 + components: + - pos: -56.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11825 + components: + - pos: -56.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11826 + components: + - pos: -56.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11827 + components: + - pos: -58.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11828 + components: + - pos: -58.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11829 + components: + - pos: -58.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11830 + components: + - pos: -58.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11831 + components: + - pos: -56.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11832 + components: + - pos: -56.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11833 + components: + - rot: -1.5707963267948966 rad + pos: -57.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11834 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11835 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11836 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11837 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11838 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11839 + components: + - rot: 3.141592653589793 rad + pos: -56.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11844 + components: + - rot: -1.5707963267948966 rad + pos: -58.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11845 + components: + - rot: 3.141592653589793 rad + pos: -58.5,-9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11846 + components: + - rot: 3.141592653589793 rad + pos: -56.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11847 + components: + - rot: 3.141592653589793 rad + pos: -56.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11848 + components: + - rot: 3.141592653589793 rad + pos: -58.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11890 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11891 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11892 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11893 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11922 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11923 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11924 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11927 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11928 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11929 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11930 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11931 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11932 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11933 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11935 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11936 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11937 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11938 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11939 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11942 + components: + - rot: 3.141592653589793 rad + pos: -40.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11943 + components: + - rot: 3.141592653589793 rad + pos: -40.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11944 + components: + - rot: 3.141592653589793 rad + pos: -40.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11945 + components: + - rot: 3.141592653589793 rad + pos: -40.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11946 + components: + - rot: 3.141592653589793 rad + pos: -41.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11947 + components: + - rot: 3.141592653589793 rad + pos: -41.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11950 + components: + - pos: -41.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11951 + components: + - pos: -41.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11953 + components: + - pos: -40.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11956 + components: + - pos: -41.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11957 + components: + - pos: -41.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11958 + components: + - pos: -40.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11959 + components: + - pos: -41.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11960 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11962 + components: + - pos: -40.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11963 + components: + - pos: -40.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11964 + components: + - rot: 3.141592653589793 rad + pos: -41.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11965 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11966 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11967 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11976 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11977 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11978 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11979 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11980 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11981 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11982 + components: + - pos: -43.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11983 + components: + - pos: -43.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11984 + components: + - pos: -43.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11985 + components: + - pos: -44.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11986 + components: + - pos: -44.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11987 + components: + - pos: -44.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11988 + components: + - pos: -43.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11989 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11990 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11991 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11992 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11993 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12004 + components: + - pos: -37.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12005 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12006 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12007 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12008 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12010 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12011 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12012 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12013 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12014 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12019 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12021 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12040 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12041 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12042 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12043 + components: + - pos: -38.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12044 + components: + - pos: -38.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12045 + components: + - pos: -38.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12046 + components: + - pos: -38.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12047 + components: + - pos: -38.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12048 + components: + - pos: -38.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12049 + components: + - pos: -38.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12050 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12051 + components: + - rot: 3.141592653589793 rad + pos: -38.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12054 + components: + - rot: 3.141592653589793 rad + pos: -36.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12055 + components: + - rot: 3.141592653589793 rad + pos: -36.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12056 + components: + - rot: 3.141592653589793 rad + pos: -36.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12057 + components: + - rot: 3.141592653589793 rad + pos: -36.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12058 + components: + - rot: 3.141592653589793 rad + pos: -36.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12059 + components: + - rot: 3.141592653589793 rad + pos: -36.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12060 + components: + - rot: 3.141592653589793 rad + pos: -36.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12061 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12062 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12065 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12066 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12067 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12068 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12069 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12070 + components: + - pos: -32.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12071 + components: + - pos: -32.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12072 + components: + - pos: -32.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12073 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12074 + components: + - rot: 3.141592653589793 rad + pos: -33.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12075 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12076 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12081 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12082 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12083 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12084 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12085 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12086 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12087 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12088 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12089 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12090 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12091 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12092 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12095 + components: + - rot: 3.141592653589793 rad + pos: -25.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12096 + components: + - rot: 3.141592653589793 rad + pos: -25.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12097 + components: + - rot: 3.141592653589793 rad + pos: -25.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12098 + components: + - rot: 3.141592653589793 rad + pos: -25.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12099 + components: + - rot: 3.141592653589793 rad + pos: -23.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12102 + components: + - rot: 3.141592653589793 rad + pos: -23.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12103 + components: + - rot: 3.141592653589793 rad + pos: -23.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12104 + components: + - rot: 3.141592653589793 rad + pos: -25.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12105 + components: + - rot: 3.141592653589793 rad + pos: -23.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12108 + components: + - rot: 3.141592653589793 rad + pos: -25.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12109 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12110 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12111 + components: + - pos: -25.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12112 + components: + - pos: -25.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12113 + components: + - pos: -25.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12114 + components: + - pos: -23.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12115 + components: + - pos: -23.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12116 + components: + - pos: -23.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12117 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12118 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12119 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12120 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12121 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12122 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12123 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12124 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12125 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12126 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12134 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12135 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12136 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12137 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12138 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12141 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12142 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12143 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12144 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12145 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12146 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12147 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12148 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12149 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12150 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12151 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12152 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12153 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12154 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12155 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12156 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12157 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12158 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12159 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12160 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12161 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12162 + components: + - rot: 3.141592653589793 rad + pos: -22.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12163 + components: + - rot: 3.141592653589793 rad + pos: -22.5,31.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12164 + components: + - rot: 3.141592653589793 rad + pos: -22.5,30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12165 + components: + - rot: 3.141592653589793 rad + pos: -22.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12166 + components: + - rot: 3.141592653589793 rad + pos: -24.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12167 + components: + - rot: 3.141592653589793 rad + pos: -24.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12176 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12177 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12178 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12179 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12180 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12181 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12182 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12183 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,35.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12184 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,35.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12185 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,35.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12187 + components: + - rot: 3.141592653589793 rad + pos: -19.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12188 + components: + - rot: 3.141592653589793 rad + pos: -19.5,37.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12193 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12194 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12195 + components: + - pos: -17.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12196 + components: + - pos: -17.5,31.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12197 + components: + - pos: -17.5,30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12198 + components: + - pos: -17.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12199 + components: + - pos: -15.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12200 + components: + - pos: -15.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12203 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12204 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12205 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12206 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12207 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12210 + components: + - rot: 3.141592653589793 rad + pos: -15.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12211 + components: + - rot: 3.141592653589793 rad + pos: -15.5,34.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12213 + components: + - rot: 3.141592653589793 rad + pos: -15.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12214 + components: + - rot: 3.141592653589793 rad + pos: -17.5,34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12215 + components: + - rot: 3.141592653589793 rad + pos: -17.5,35.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12216 + components: + - rot: 3.141592653589793 rad + pos: -17.5,36.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12226 + components: + - rot: 3.141592653589793 rad + pos: -17.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12227 + components: + - rot: 3.141592653589793 rad + pos: -17.5,39.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12228 + components: + - rot: 3.141592653589793 rad + pos: -17.5,40.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12229 + components: + - rot: 3.141592653589793 rad + pos: -17.5,41.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12230 + components: + - rot: 3.141592653589793 rad + pos: -17.5,42.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12231 + components: + - rot: 3.141592653589793 rad + pos: -17.5,43.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12232 + components: + - rot: 3.141592653589793 rad + pos: -15.5,37.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12233 + components: + - rot: 3.141592653589793 rad + pos: -15.5,39.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12234 + components: + - rot: 3.141592653589793 rad + pos: -15.5,40.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12235 + components: + - rot: 3.141592653589793 rad + pos: -15.5,41.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12236 + components: + - rot: 3.141592653589793 rad + pos: -15.5,42.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12237 + components: + - rot: 3.141592653589793 rad + pos: -15.5,43.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12238 + components: + - rot: 3.141592653589793 rad + pos: -15.5,44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12241 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,45.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12242 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12243 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12244 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12245 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12246 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,45.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12248 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12249 + components: + - rot: 3.141592653589793 rad + pos: -20.5,44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12250 + components: + - rot: 3.141592653589793 rad + pos: -20.5,43.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12251 + components: + - rot: 3.141592653589793 rad + pos: -20.5,42.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12252 + components: + - rot: 3.141592653589793 rad + pos: -20.5,41.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12253 + components: + - rot: 3.141592653589793 rad + pos: -20.5,40.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12254 + components: + - rot: 3.141592653589793 rad + pos: -17.5,46.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12264 + components: + - pos: -15.5,47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12265 + components: + - pos: -17.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12266 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12267 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12268 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12269 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12270 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,48.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12271 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,48.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12274 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12275 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12276 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12277 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12278 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12279 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12280 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12281 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12282 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12283 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12284 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12285 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12286 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12287 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12288 + components: + - rot: 3.141592653589793 rad + pos: -13.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12289 + components: + - rot: 3.141592653589793 rad + pos: -13.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12290 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12291 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12292 + components: + - pos: -11.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12293 + components: + - pos: -11.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12300 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12301 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12302 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12303 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12304 + components: + - rot: 3.141592653589793 rad + pos: -11.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12305 + components: + - rot: 3.141592653589793 rad + pos: -11.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12306 + components: + - rot: 3.141592653589793 rad + pos: -13.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12307 + components: + - rot: 3.141592653589793 rad + pos: -13.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12308 + components: + - rot: 3.141592653589793 rad + pos: -11.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12309 + components: + - rot: 3.141592653589793 rad + pos: -13.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12312 + components: + - pos: -11.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12313 + components: + - pos: -11.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12314 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12315 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12316 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12317 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12318 + components: + - rot: 3.141592653589793 rad + pos: -13.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12322 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12325 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12326 + components: + - rot: 3.141592653589793 rad + pos: -8.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12327 + components: + - rot: 3.141592653589793 rad + pos: -9.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12328 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12329 + components: + - rot: 3.141592653589793 rad + pos: -8.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12330 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12335 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12336 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12337 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12338 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12339 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12340 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12342 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12343 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12344 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12345 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12346 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12347 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12348 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12350 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12351 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12356 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12357 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12358 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12359 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12360 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12361 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12362 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12363 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12364 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12365 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12369 + components: + - pos: -15.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12374 + components: + - pos: -16.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12375 + components: + - pos: -16.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12376 + components: + - pos: -17.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12377 + components: + - pos: -17.5,-10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12378 + components: + - pos: -2.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12380 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12382 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12385 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12386 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12387 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12388 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12389 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12390 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12391 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12392 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12393 + components: + - pos: -1.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12394 + components: + - pos: -1.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12395 + components: + - pos: -1.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12396 + components: + - pos: -1.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12397 + components: + - pos: -1.5,-9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12403 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12404 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12405 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12406 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12407 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12408 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12409 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12410 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12411 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12412 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12424 + components: + - pos: -13.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12425 + components: + - pos: -13.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12426 + components: + - pos: -11.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12428 + components: + - pos: -11.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12430 + components: + - pos: -11.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12431 + components: + - pos: -11.5,16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12433 + components: + - pos: -13.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12434 + components: + - pos: -13.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12435 + components: + - pos: -13.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12436 + components: + - pos: -13.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12437 + components: + - pos: -13.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12438 + components: + - pos: -13.5,17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12439 + components: + - pos: -13.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12440 + components: + - pos: -11.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12441 + components: + - pos: -11.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12442 + components: + - pos: -11.5,21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12443 + components: + - pos: -11.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12444 + components: + - pos: -11.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12445 + components: + - pos: -11.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12446 + components: + - pos: -11.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12447 + components: + - pos: -11.5,26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12448 + components: + - pos: -13.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12449 + components: + - pos: -13.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12450 + components: + - pos: -13.5,22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12451 + components: + - pos: -13.5,23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12452 + components: + - pos: -13.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12453 + components: + - pos: -13.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12454 + components: + - pos: -13.5,26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12455 + components: + - pos: -13.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12456 + components: + - pos: -11.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12457 + components: + - pos: -11.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12458 + components: + - pos: -11.5,30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12459 + components: + - pos: -11.5,31.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12460 + components: + - pos: -11.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12461 + components: + - pos: -13.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12462 + components: + - pos: -13.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12463 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12464 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12465 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12466 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12467 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12468 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12469 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12470 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12471 + components: + - rot: 3.141592653589793 rad + pos: -7.5,31.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12472 + components: + - rot: 3.141592653589793 rad + pos: -7.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12473 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12474 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12477 + components: + - rot: 3.141592653589793 rad + pos: -8.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12478 + components: + - rot: 3.141592653589793 rad + pos: -7.5,30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12479 + components: + - rot: 3.141592653589793 rad + pos: -7.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12480 + components: + - rot: 3.141592653589793 rad + pos: -8.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12489 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12490 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12491 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12492 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12493 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12494 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12495 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12496 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12497 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12498 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12499 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12500 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12511 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12519 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12520 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12521 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12522 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12523 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12524 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12525 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12526 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12527 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12528 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12529 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12531 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12532 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12533 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12534 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12535 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12536 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12537 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12539 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12540 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12541 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12542 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12543 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12544 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12545 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12546 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12547 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12548 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12549 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12550 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12551 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12552 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12553 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12555 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12556 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12557 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12558 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12559 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12560 + components: + - pos: 10.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12561 + components: + - pos: 10.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12562 + components: + - pos: 10.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12563 + components: + - pos: 10.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12564 + components: + - pos: 11.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12565 + components: + - pos: 11.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12568 + components: + - pos: 10.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12571 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12572 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12573 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12574 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12575 + components: + - rot: 3.141592653589793 rad + pos: 10.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12576 + components: + - rot: 3.141592653589793 rad + pos: 11.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12577 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12578 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12579 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12580 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12581 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12590 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12591 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12592 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12594 + components: + - rot: 3.141592653589793 rad + pos: 15.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12597 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12598 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12599 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12600 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12601 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12602 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12603 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12604 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12613 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12614 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12617 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12618 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12619 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12620 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12621 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12622 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12623 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12624 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12625 + components: + - pos: 17.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12626 + components: + - pos: 17.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12627 + components: + - pos: 17.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12628 + components: + - pos: 17.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12629 + components: + - pos: 19.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12630 + components: + - pos: 19.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12631 + components: + - pos: 19.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12632 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12633 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12634 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12637 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12638 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12639 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12640 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12641 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12642 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12643 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12644 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12646 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12648 + components: + - pos: 26.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12649 + components: + - pos: 26.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12650 + components: + - pos: 25.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12660 + components: + - rot: 3.141592653589793 rad + pos: 27.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12661 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12664 + components: + - pos: 26.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12671 + components: + - pos: 26.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12672 + components: + - pos: 26.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12673 + components: + - pos: 26.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12674 + components: + - pos: 26.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12675 + components: + - pos: 26.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12676 + components: + - pos: 26.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12677 + components: + - pos: 26.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12678 + components: + - pos: 26.5,21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12679 + components: + - pos: 26.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12680 + components: + - pos: 26.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12681 + components: + - pos: 27.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12682 + components: + - pos: 27.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12683 + components: + - pos: 27.5,22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12684 + components: + - pos: 27.5,23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12685 + components: + - pos: 27.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12686 + components: + - pos: 27.5,17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12687 + components: + - pos: 27.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12688 + components: + - pos: 27.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12689 + components: + - pos: 27.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12690 + components: + - pos: 27.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12691 + components: + - pos: 27.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12692 + components: + - pos: 27.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12693 + components: + - pos: 27.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12694 + components: + - pos: 27.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12695 + components: + - pos: 27.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12696 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12697 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12698 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12699 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12700 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12701 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12702 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12703 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12704 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12705 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12706 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12707 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12718 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12719 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12722 + components: + - rot: 3.141592653589793 rad + pos: -3.5,32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12723 + components: + - rot: 3.141592653589793 rad + pos: -3.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12724 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12725 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12730 + components: + - rot: 3.141592653589793 rad + pos: -1.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12731 + components: + - rot: 3.141592653589793 rad + pos: -1.5,31.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12732 + components: + - rot: 3.141592653589793 rad + pos: -1.5,30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12733 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12734 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12738 + components: + - rot: 3.141592653589793 rad + pos: 10.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12739 + components: + - rot: 3.141592653589793 rad + pos: 9.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12740 + components: + - rot: 3.141592653589793 rad + pos: 10.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12741 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12742 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12744 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12745 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12746 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12749 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12750 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12753 + components: + - pos: 8.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12754 + components: + - pos: 8.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12755 + components: + - pos: 6.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12756 + components: + - pos: 6.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12757 + components: + - pos: 11.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12758 + components: + - pos: 11.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12852 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12853 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12854 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12855 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12856 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12857 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12960 + components: + - pos: -17.5,49.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12961 + components: + - pos: -17.5,50.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12962 + components: + - pos: -17.5,51.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12963 + components: + - pos: -17.5,52.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12964 + components: + - pos: -17.5,53.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12965 + components: + - pos: -15.5,49.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12966 + components: + - pos: -15.5,50.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12967 + components: + - pos: -15.5,51.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12968 + components: + - pos: -15.5,52.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12969 + components: + - pos: -15.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12972 + components: + - pos: -15.5,54.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12973 + components: + - pos: -17.5,55.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12975 + components: + - pos: -15.5,56.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12977 + components: + - rot: 3.141592653589793 rad + pos: -17.5,57.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12978 + components: + - rot: 3.141592653589793 rad + pos: -17.5,58.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12979 + components: + - rot: 3.141592653589793 rad + pos: -15.5,58.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12982 + components: + - rot: 3.141592653589793 rad + pos: -15.5,59.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12983 + components: + - rot: 3.141592653589793 rad + pos: -17.5,60.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12984 + components: + - rot: 3.141592653589793 rad + pos: -17.5,61.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12985 + components: + - rot: 3.141592653589793 rad + pos: -17.5,62.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12986 + components: + - rot: 3.141592653589793 rad + pos: -15.5,61.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12987 + components: + - rot: 3.141592653589793 rad + pos: -15.5,62.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12988 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,54.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12989 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,54.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12990 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,54.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12991 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,54.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12992 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,55.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12993 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,55.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12994 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,55.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12995 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,55.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12996 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,55.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12997 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,55.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12998 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,55.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12999 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,55.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13000 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,55.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 13001 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,54.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13002 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,54.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13003 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,54.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13009 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,55.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 13017 + components: + - pos: -12.5,54.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 13018 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,54.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13019 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,54.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13020 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,54.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13021 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,54.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13022 + components: + - rot: 3.141592653589793 rad + pos: -7.5,55.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13023 + components: + - rot: 3.141592653589793 rad + pos: -7.5,56.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13024 + components: + - rot: 3.141592653589793 rad + pos: -7.5,57.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13025 + components: + - rot: 3.141592653589793 rad + pos: -7.5,58.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13026 + components: + - rot: 3.141592653589793 rad + pos: -7.5,59.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13027 + components: + - rot: 3.141592653589793 rad + pos: -8.5,56.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 13028 + components: + - rot: 3.141592653589793 rad + pos: -8.5,57.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 13029 + components: + - rot: 3.141592653589793 rad + pos: -8.5,58.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13030 + components: + - rot: 3.141592653589793 rad + pos: -8.5,59.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 13639 + components: + - rot: 1.5707963267948966 rad + pos: -89.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13640 + components: + - rot: 1.5707963267948966 rad + pos: -88.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13641 + components: + - rot: 1.5707963267948966 rad + pos: -87.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13642 + components: + - rot: 1.5707963267948966 rad + pos: -86.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13643 + components: + - rot: 1.5707963267948966 rad + pos: -85.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13644 + components: + - rot: 1.5707963267948966 rad + pos: -87.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13645 + components: + - rot: 1.5707963267948966 rad + pos: -86.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13646 + components: + - rot: 1.5707963267948966 rad + pos: -85.5,45.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13647 + components: + - rot: 1.5707963267948966 rad + pos: -87.5,43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13648 + components: + - rot: 1.5707963267948966 rad + pos: -86.5,43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13649 + components: + - rot: 1.5707963267948966 rad + pos: -85.5,43.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13650 + components: + - rot: 1.5707963267948966 rad + pos: -89.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13651 + components: + - rot: 1.5707963267948966 rad + pos: -88.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13652 + components: + - rot: 1.5707963267948966 rad + pos: -87.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13653 + components: + - rot: 1.5707963267948966 rad + pos: -86.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13654 + components: + - rot: 1.5707963267948966 rad + pos: -85.5,42.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13656 + components: + - rot: 1.5707963267948966 rad + pos: -87.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13668 + components: + - rot: 1.5707963267948966 rad + pos: -86.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13670 + components: + - rot: 1.5707963267948966 rad + pos: -85.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13677 + components: + - rot: 1.5707963267948966 rad + pos: -89.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13678 + components: + - rot: 1.5707963267948966 rad + pos: -88.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13679 + components: + - rot: 1.5707963267948966 rad + pos: -87.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13680 + components: + - rot: 1.5707963267948966 rad + pos: -86.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13681 + components: + - rot: 1.5707963267948966 rad + pos: -85.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13685 + components: + - rot: 1.5707963267948966 rad + pos: -87.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13686 + components: + - rot: 1.5707963267948966 rad + pos: -86.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13687 + components: + - rot: 1.5707963267948966 rad + pos: -85.5,39.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13688 + components: + - rot: 1.5707963267948966 rad + pos: -89.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13689 + components: + - rot: 1.5707963267948966 rad + pos: -88.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13690 + components: + - rot: 1.5707963267948966 rad + pos: -87.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13691 + components: + - rot: 1.5707963267948966 rad + pos: -86.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13692 + components: + - rot: 1.5707963267948966 rad + pos: -85.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13693 + components: + - rot: 1.5707963267948966 rad + pos: -87.5,37.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13694 + components: + - rot: 1.5707963267948966 rad + pos: -86.5,37.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13695 + components: + - rot: 1.5707963267948966 rad + pos: -85.5,37.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13696 + components: + - rot: 1.5707963267948966 rad + pos: -89.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13697 + components: + - rot: 1.5707963267948966 rad + pos: -88.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13698 + components: + - rot: 1.5707963267948966 rad + pos: -87.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13702 + components: + - rot: 1.5707963267948966 rad + pos: -86.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13703 + components: + - rot: 1.5707963267948966 rad + pos: -85.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13711 + components: + - rot: 1.5707963267948966 rad + pos: -87.5,35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13712 + components: + - rot: 1.5707963267948966 rad + pos: -86.5,35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13713 + components: + - rot: 1.5707963267948966 rad + pos: -85.5,35.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13714 + components: + - rot: 1.5707963267948966 rad + pos: -89.5,34.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13715 + components: + - rot: 1.5707963267948966 rad + pos: -88.5,34.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13716 + components: + - rot: 1.5707963267948966 rad + pos: -87.5,34.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13717 + components: + - rot: 1.5707963267948966 rad + pos: -86.5,34.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13718 + components: + - rot: 1.5707963267948966 rad + pos: -85.5,34.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13779 + components: + - pos: -84.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13857 + components: + - rot: 3.141592653589793 rad + pos: -84.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13864 + components: + - rot: 3.141592653589793 rad + pos: -83.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13865 + components: + - rot: 3.141592653589793 rad + pos: -83.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13866 + components: + - rot: 3.141592653589793 rad + pos: -81.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13867 + components: + - rot: 3.141592653589793 rad + pos: -81.5,48.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13868 + components: + - rot: 3.141592653589793 rad + pos: -81.5,47.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13915 + components: + - rot: -1.5707963267948966 rad + pos: -85.5,33.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13936 + components: + - rot: -1.5707963267948966 rad + pos: -76.5,35.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13937 + components: + - rot: -1.5707963267948966 rad + pos: -77.5,34.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13938 + components: + - rot: -1.5707963267948966 rad + pos: -75.5,35.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13939 + components: + - rot: -1.5707963267948966 rad + pos: -75.5,34.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 13940 + components: + - rot: -1.5707963267948966 rad + pos: -74.5,35.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13942 + components: + - rot: 3.141592653589793 rad + pos: -77.5,34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13943 + components: + - rot: 3.141592653589793 rad + pos: -76.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 13944 + components: + - rot: 3.141592653589793 rad + pos: -77.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13945 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,41.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13946 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,43.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13947 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,43.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13948 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13949 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13952 + components: + - rot: 1.5707963267948966 rad + pos: -60.5,43.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13953 + components: + - pos: -61.5,44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 13954 + components: + - rot: -1.5707963267948966 rad + pos: -61.5,44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13955 + components: + - rot: -1.5707963267948966 rad + pos: -60.5,44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13956 + components: + - rot: 3.141592653589793 rad + pos: -62.5,43.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13957 + components: + - rot: 3.141592653589793 rad + pos: -62.5,42.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13958 + components: + - rot: 3.141592653589793 rad + pos: -61.5,42.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 13959 + components: + - rot: 3.141592653589793 rad + pos: -62.5,41.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13960 + components: + - rot: 3.141592653589793 rad + pos: -61.5,41.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 13965 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13966 + components: + - rot: 1.5707963267948966 rad + pos: -60.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13967 + components: + - rot: 1.5707963267948966 rad + pos: -61.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13968 + components: + - rot: 1.5707963267948966 rad + pos: -62.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13969 + components: + - rot: 1.5707963267948966 rad + pos: -63.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13970 + components: + - rot: 1.5707963267948966 rad + pos: -64.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13971 + components: + - pos: -66.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13973 + components: + - rot: 1.5707963267948966 rad + pos: -67.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13974 + components: + - rot: 1.5707963267948966 rad + pos: -68.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13975 + components: + - rot: 1.5707963267948966 rad + pos: -69.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13976 + components: + - pos: -66.5,49.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13977 + components: + - rot: 1.5707963267948966 rad + pos: -65.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13978 + components: + - pos: -67.5,51.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13979 + components: + - rot: -1.5707963267948966 rad + pos: -68.5,52.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13980 + components: + - rot: -1.5707963267948966 rad + pos: -69.5,52.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13986 + components: + - pos: -61.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13987 + components: + - pos: -61.5,47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 13988 + components: + - rot: -1.5707963267948966 rad + pos: -62.5,48.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13989 + components: + - rot: -1.5707963267948966 rad + pos: -63.5,48.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 13990 + components: + - rot: -1.5707963267948966 rad + pos: -64.5,48.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13991 + components: + - rot: -1.5707963267948966 rad + pos: -65.5,48.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 13992 + components: + - rot: -1.5707963267948966 rad + pos: -66.5,48.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13993 + components: + - rot: -1.5707963267948966 rad + pos: -67.5,48.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13994 + components: + - rot: -1.5707963267948966 rad + pos: -68.5,48.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13995 + components: + - rot: -1.5707963267948966 rad + pos: -69.5,48.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14013 + components: + - pos: -73.5,34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14014 + components: + - pos: -73.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14015 + components: + - pos: -73.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14016 + components: + - pos: -73.5,31.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14017 + components: + - pos: -74.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14018 + components: + - pos: -74.5,32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14019 + components: + - pos: -74.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14020 + components: + - rot: -1.5707963267948966 rad + pos: -73.5,34.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14025 + components: + - rot: 1.5707963267948966 rad + pos: -72.5,35.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14026 + components: + - rot: 1.5707963267948966 rad + pos: -71.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14027 + components: + - pos: -70.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14028 + components: + - rot: -1.5707963267948966 rad + pos: -70.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14032 + components: + - rot: 3.141592653589793 rad + pos: -70.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14033 + components: + - rot: 3.141592653589793 rad + pos: -70.5,31.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14034 + components: + - rot: 3.141592653589793 rad + pos: -70.5,30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14035 + components: + - rot: 1.5707963267948966 rad + pos: -69.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14036 + components: + - rot: 1.5707963267948966 rad + pos: -68.5,34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14056 + components: + - pos: -74.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14057 + components: + - pos: -74.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14058 + components: + - pos: -74.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14059 + components: + - pos: -74.5,26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14060 + components: + - pos: -73.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14061 + components: + - pos: -73.5,26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14062 + components: + - pos: -73.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14063 + components: + - pos: -73.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14064 + components: + - pos: -73.5,30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14065 + components: + - pos: -74.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14066 + components: + - pos: -74.5,23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14067 + components: + - pos: -74.5,22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14068 + components: + - pos: -73.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14069 + components: + - pos: -73.5,21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14070 + components: + - rot: -1.5707963267948966 rad + pos: -73.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14071 + components: + - pos: -73.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14072 + components: + - pos: -73.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14073 + components: + - pos: -73.5,18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14074 + components: + - rot: -1.5707963267948966 rad + pos: -72.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14075 + components: + - rot: -1.5707963267948966 rad + pos: -72.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14076 + components: + - rot: -1.5707963267948966 rad + pos: -74.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14077 + components: + - rot: -1.5707963267948966 rad + pos: -75.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14078 + components: + - rot: -1.5707963267948966 rad + pos: -75.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14079 + components: + - rot: 3.141592653589793 rad + pos: -74.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14080 + components: + - rot: 3.141592653589793 rad + pos: -74.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14081 + components: + - rot: 3.141592653589793 rad + pos: -74.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14082 + components: + - rot: 3.141592653589793 rad + pos: -74.5,17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14083 + components: + - rot: 1.5707963267948966 rad + pos: -73.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14084 + components: + - rot: 1.5707963267948966 rad + pos: -72.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14085 + components: + - rot: 1.5707963267948966 rad + pos: -72.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14088 + components: + - rot: 3.141592653589793 rad + pos: -70.5,21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14089 + components: + - rot: -1.5707963267948966 rad + pos: -70.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14090 + components: + - rot: -1.5707963267948966 rad + pos: -69.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14091 + components: + - rot: -1.5707963267948966 rad + pos: -68.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14092 + components: + - rot: -1.5707963267948966 rad + pos: -67.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14093 + components: + - rot: -1.5707963267948966 rad + pos: -69.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14094 + components: + - rot: -1.5707963267948966 rad + pos: -68.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14095 + components: + - rot: -1.5707963267948966 rad + pos: -67.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14096 + components: + - rot: -1.5707963267948966 rad + pos: -71.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14097 + components: + - rot: 3.141592653589793 rad + pos: -71.5,22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14098 + components: + - rot: -1.5707963267948966 rad + pos: -70.5,23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14099 + components: + - rot: -1.5707963267948966 rad + pos: -69.5,23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14100 + components: + - rot: -1.5707963267948966 rad + pos: -68.5,23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14101 + components: + - rot: -1.5707963267948966 rad + pos: -67.5,23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14102 + components: + - rot: -1.5707963267948966 rad + pos: -69.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14103 + components: + - rot: -1.5707963267948966 rad + pos: -68.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14104 + components: + - rot: -1.5707963267948966 rad + pos: -67.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14105 + components: + - rot: 3.141592653589793 rad + pos: -71.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14117 + components: + - rot: -1.5707963267948966 rad + pos: -67.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14118 + components: + - rot: -1.5707963267948966 rad + pos: -66.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14119 + components: + - rot: -1.5707963267948966 rad + pos: -65.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14120 + components: + - rot: -1.5707963267948966 rad + pos: -67.5,34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14121 + components: + - rot: -1.5707963267948966 rad + pos: -66.5,34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14122 + components: + - rot: -1.5707963267948966 rad + pos: -65.5,34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14123 + components: + - rot: -1.5707963267948966 rad + pos: -64.5,34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14124 + components: + - rot: 3.141592653589793 rad + pos: -63.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14125 + components: + - rot: 3.141592653589793 rad + pos: -64.5,32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14126 + components: + - rot: 3.141592653589793 rad + pos: -64.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14127 + components: + - rot: 3.141592653589793 rad + pos: -63.5,31.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14128 + components: + - rot: 3.141592653589793 rad + pos: -63.5,30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14129 + components: + - rot: 3.141592653589793 rad + pos: -64.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14130 + components: + - rot: 3.141592653589793 rad + pos: -63.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14131 + components: + - rot: 3.141592653589793 rad + pos: -63.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14132 + components: + - rot: 1.5707963267948966 rad + pos: -64.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14139 + components: + - rot: 1.5707963267948966 rad + pos: -63.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14140 + components: + - rot: 1.5707963267948966 rad + pos: -62.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14142 + components: + - rot: 1.5707963267948966 rad + pos: -60.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14143 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14144 + components: + - rot: 1.5707963267948966 rad + pos: -62.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14145 + components: + - rot: 1.5707963267948966 rad + pos: -61.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14147 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14150 + components: + - rot: 1.5707963267948966 rad + pos: -76.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14151 + components: + - rot: 1.5707963267948966 rad + pos: -77.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14152 + components: + - rot: 1.5707963267948966 rad + pos: -78.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14153 + components: + - rot: 1.5707963267948966 rad + pos: -79.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14154 + components: + - rot: 1.5707963267948966 rad + pos: -76.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14155 + components: + - rot: 1.5707963267948966 rad + pos: -77.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14156 + components: + - rot: 1.5707963267948966 rad + pos: -78.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14157 + components: + - rot: 1.5707963267948966 rad + pos: -79.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14162 + components: + - rot: 3.141592653589793 rad + pos: -61.5,32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14205 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15864 + components: + - pos: 7.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: AmbientSound +- proto: GasPipeTJunction + entities: + - uid: 1778 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2256 + components: + - rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2257 + components: + - rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 2394 + components: + - rot: 3.141592653589793 rad + pos: 7.5,35.5 + parent: 1 + type: Transform + - uid: 2411 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2416 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,31.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2418 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2421 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2422 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2423 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2424 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2425 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,34.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2459 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2461 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2485 + components: + - rot: 3.141592653589793 rad + pos: 8.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2486 + components: + - rot: 3.141592653589793 rad + pos: 9.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2683 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2684 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2686 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2863 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3001 + components: + - pos: 3.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 3002 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3558 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 3706 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3708 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4782 + components: + - pos: -64.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4784 + components: + - rot: -1.5707963267948966 rad + pos: -58.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4805 + components: + - pos: -65.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 7846 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,60.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8691 + components: + - pos: -48.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8698 + components: + - pos: -50.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8699 + components: + - pos: -53.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8700 + components: + - pos: -56.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8702 + components: + - rot: 3.141592653589793 rad + pos: -52.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8704 + components: + - rot: 3.141592653589793 rad + pos: -55.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8722 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,56.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8724 + components: + - rot: 3.141592653589793 rad + pos: -56.5,55.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8727 + components: + - rot: 3.141592653589793 rad + pos: -53.5,55.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8733 + components: + - pos: -54.5,55.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8734 + components: + - pos: -51.5,55.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8735 + components: + - pos: -57.5,55.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8736 + components: + - rot: 3.141592653589793 rad + pos: -50.5,55.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8782 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,65.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8783 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,64.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8784 + components: + - rot: 3.141592653589793 rad + pos: -55.5,60.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8785 + components: + - rot: 3.141592653589793 rad + pos: -54.5,61.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8787 + components: + - rot: 3.141592653589793 rad + pos: -58.5,61.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8788 + components: + - rot: 3.141592653589793 rad + pos: -59.5,60.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8793 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,63.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8814 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,67.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8817 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,62.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8850 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,80.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8911 + components: + - rot: 3.141592653589793 rad + pos: -54.5,83.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8912 + components: + - pos: -55.5,84.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8913 + components: + - pos: -55.5,89.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8914 + components: + - rot: 3.141592653589793 rad + pos: -54.5,88.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8915 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,83.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8916 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,84.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8917 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,85.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8918 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,84.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10050 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10083 + components: + - rot: 3.141592653589793 rad + pos: 6.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10084 + components: + - pos: 7.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10231 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10244 + components: + - pos: -39.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10306 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10308 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10953 + components: + - rot: -1.5707963267948966 rad + pos: -57.5,42.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10954 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,41.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11086 + components: + - rot: -1.5707963267948966 rad + pos: -57.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11093 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,37.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11094 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,43.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11095 + components: + - rot: -1.5707963267948966 rad + pos: -57.5,44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11096 + components: + - rot: -1.5707963267948966 rad + pos: -57.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11103 + components: + - rot: 3.141592653589793 rad + pos: -58.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11125 + components: + - pos: -57.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11134 + components: + - pos: -52.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11137 + components: + - rot: 3.141592653589793 rad + pos: -53.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11147 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11156 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11167 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,41.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11168 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,42.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11169 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,43.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11184 + components: + - pos: -42.5,43.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11185 + components: + - rot: 3.141592653589793 rad + pos: -40.5,43.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11211 + components: + - pos: -36.5,44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11212 + components: + - pos: -35.5,43.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11223 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11224 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11258 + components: + - rot: 3.141592653589793 rad + pos: -54.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11266 + components: + - rot: 3.141592653589793 rad + pos: -51.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11267 + components: + - rot: 3.141592653589793 rad + pos: -50.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11268 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,35.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11269 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,36.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11271 + components: + - rot: 3.141592653589793 rad + pos: -53.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11274 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11280 + components: + - rot: 3.141592653589793 rad + pos: -46.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11293 + components: + - pos: -50.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11294 + components: + - pos: -51.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11308 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,35.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11518 + components: + - rot: 3.141592653589793 rad + pos: -43.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11519 + components: + - pos: -42.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11536 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11543 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11579 + components: + - rot: 3.141592653589793 rad + pos: -32.5,37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11580 + components: + - rot: 3.141592653589793 rad + pos: -31.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11601 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11602 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11603 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11604 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11605 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11606 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11607 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11608 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11614 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11616 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11662 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11670 + components: + - rot: 3.141592653589793 rad + pos: -34.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11681 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11682 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11689 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11692 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11700 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11701 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11702 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11703 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11704 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11705 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11706 + components: + - rot: 3.141592653589793 rad + pos: -53.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11707 + components: + - rot: 3.141592653589793 rad + pos: -54.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11757 + components: + - rot: 3.141592653589793 rad + pos: -67.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11758 + components: + - pos: -66.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11760 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11764 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11815 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11816 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11817 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11818 + components: + - pos: -57.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11819 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11888 + components: + - rot: 3.141592653589793 rad + pos: -49.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11889 + components: + - pos: -48.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11952 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11954 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11955 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11961 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12002 + components: + - pos: -37.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12003 + components: + - pos: -36.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12077 + components: + - pos: -33.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12078 + components: + - pos: -32.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12093 + components: + - rot: 3.141592653589793 rad + pos: -25.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12100 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12101 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12106 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12107 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12133 + components: + - rot: 3.141592653589793 rad + pos: -24.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12168 + components: + - pos: -24.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12169 + components: + - pos: -22.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12170 + components: + - rot: 3.141592653589793 rad + pos: -31.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12171 + components: + - pos: -30.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12201 + components: + - pos: -13.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12202 + components: + - pos: -11.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12208 + components: + - pos: -16.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12209 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12212 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,35.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12222 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12223 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,38.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12224 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12225 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12239 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12240 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,45.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12247 + components: + - pos: -20.5,45.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12262 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12263 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,48.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12294 + components: + - rot: 3.141592653589793 rad + pos: -17.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12295 + components: + - pos: -16.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12310 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12311 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12323 + components: + - pos: -9.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12324 + components: + - pos: -8.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12333 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12334 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12341 + components: + - pos: -15.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12366 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12367 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12368 + components: + - pos: -1.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12398 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12417 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12418 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12419 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12420 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12421 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12422 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12429 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12475 + components: + - pos: -8.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12476 + components: + - pos: -7.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12513 + components: + - pos: -6.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12514 + components: + - rot: 3.141592653589793 rad + pos: -5.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12515 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12516 + components: + - rot: 3.141592653589793 rad + pos: 5.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12517 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12518 + components: + - pos: 10.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12530 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12538 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12566 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12567 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12569 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12570 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12593 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12615 + components: + - rot: 3.141592653589793 rad + pos: 19.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12616 + components: + - rot: 3.141592653589793 rad + pos: 17.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12635 + components: + - pos: 20.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12636 + components: + - rot: 3.141592653589793 rad + pos: 21.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12645 + components: + - pos: 25.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12659 + components: + - rot: 3.141592653589793 rad + pos: 27.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12662 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12663 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12665 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12666 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12667 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12668 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12669 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12670 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12720 + components: + - rot: 3.141592653589793 rad + pos: -4.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12721 + components: + - rot: 3.141592653589793 rad + pos: -3.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12737 + components: + - pos: 9.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12747 + components: + - rot: 3.141592653589793 rad + pos: 9.5,16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12748 + components: + - pos: 8.5,16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12974 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,56.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12976 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,57.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12980 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,59.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12981 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,60.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 13008 + components: + - pos: -12.5,55.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 13016 + components: + - pos: -11.5,54.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13546 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 13905 + components: + - pos: -77.5,35.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13909 + components: + - pos: -76.5,34.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13941 + components: + - pos: -74.5,34.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 13950 + components: + - rot: 1.5707963267948966 rad + pos: -62.5,44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13951 + components: + - rot: 1.5707963267948966 rad + pos: -61.5,43.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 13963 + components: + - rot: 1.5707963267948966 rad + pos: -61.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 13972 + components: + - rot: 3.141592653589793 rad + pos: -66.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14012 + components: + - pos: -73.5,35.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14029 + components: + - pos: -70.5,34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14030 + components: + - pos: -69.5,34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14031 + components: + - rot: 3.141592653589793 rad + pos: -68.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14048 + components: + - rot: 1.5707963267948966 rad + pos: -74.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14049 + components: + - rot: -1.5707963267948966 rad + pos: -73.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14050 + components: + - rot: -1.5707963267948966 rad + pos: -74.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14051 + components: + - rot: -1.5707963267948966 rad + pos: -73.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14052 + components: + - rot: 1.5707963267948966 rad + pos: -74.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14053 + components: + - rot: 1.5707963267948966 rad + pos: -73.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14086 + components: + - rot: -1.5707963267948966 rad + pos: -71.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14087 + components: + - pos: -70.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14137 + components: + - rot: 1.5707963267948966 rad + pos: -64.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 14138 + components: + - rot: 1.5707963267948966 rad + pos: -63.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14141 + components: + - rot: 3.141592653589793 rad + pos: -61.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14146 + components: + - rot: 3.141592653589793 rad + pos: -60.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 366 + components: + - pos: 0.5,-8.5 + parent: 1 + type: Transform + - uid: 367 + components: + - pos: 2.5,-8.5 + parent: 1 + type: Transform + - uid: 1417 + components: + - pos: 12.5,37.5 + parent: 1 + type: Transform + - uid: 2398 + components: + - pos: 6.5,37.5 + parent: 1 + type: Transform + - uid: 15136 + components: + - rot: -1.5707963267948966 rad + pos: -77.5,38.5 + parent: 1 + type: Transform + - uid: 15137 + components: + - rot: -1.5707963267948966 rad + pos: -77.5,37.5 + parent: 1 + type: Transform + - uid: 15138 + components: + - rot: -1.5707963267948966 rad + pos: -77.5,36.5 + parent: 1 + type: Transform +- proto: GasPressurePump + entities: + - uid: 362 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-9.5 + parent: 1 + type: Transform + - uid: 363 + components: + - pos: 2.5,-9.5 + parent: 1 + type: Transform + - uid: 2396 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,35.5 + parent: 1 + type: Transform + - uid: 13904 + components: + - rot: -1.5707963267948966 rad + pos: -78.5,34.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 13908 + components: + - rot: 1.5707963267948966 rad + pos: -78.5,35.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15139 + components: + - rot: -1.5707963267948966 rad + pos: -78.5,36.5 + parent: 1 + type: Transform + - uid: 15140 + components: + - rot: -1.5707963267948966 rad + pos: -78.5,37.5 + parent: 1 + type: Transform + - uid: 15141 + components: + - rot: -1.5707963267948966 rad + pos: -78.5,38.5 + parent: 1 + type: Transform +- proto: GasRecyclerMachineCircuitboard + entities: + - uid: 15375 + components: + - pos: -52.478607,23.323547 + parent: 1 + type: Transform +- proto: GasThermoMachineFreezer + entities: + - uid: 2384 + components: + - pos: 7.5,36.5 + parent: 1 + type: Transform + - uid: 13921 + components: + - pos: -77.5,39.5 + parent: 1 + type: Transform + - uid: 13922 + components: + - pos: -77.5,40.5 + parent: 1 + type: Transform +- proto: GasThermoMachineHeater + entities: + - uid: 13923 + components: + - pos: -77.5,41.5 + parent: 1 + type: Transform +- proto: GasValve + entities: + - uid: 13756 + components: + - rot: -1.5707963267948966 rad + pos: -84.5,33.5 + parent: 1 + type: Transform + - open: False + type: GasValve + - enabled: False + type: AmbientSound +- proto: GasVentPump + entities: + - uid: 1331 + components: + - pos: 0.5,9.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2102 + components: + - pos: -4.5,34.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2666 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,31.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2670 + components: + - pos: 3.5,37.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2671 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,33.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2672 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,29.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2673 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,32.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2674 + components: + - pos: 8.5,30.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 3019 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,25.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 3020 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,16.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 3021 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,22.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 3573 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-11.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 4749 + components: + - rot: 3.141592653589793 rad + pos: -58.5,-11.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 4800 + components: + - rot: 3.141592653589793 rad + pos: -65.5,-11.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 4802 + components: + - rot: 1.5707963267948966 rad + pos: -74.5,-10.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5688 + components: + - rot: 3.141592653589793 rad + pos: -17.5,23.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5692 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,27.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8686 + components: + - rot: 3.141592653589793 rad + pos: -47.5,54.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8697 + components: + - pos: -47.5,59.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8761 + components: + - rot: 3.141592653589793 rad + pos: -51.5,50.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8762 + components: + - rot: 3.141592653589793 rad + pos: -54.5,50.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8763 + components: + - rot: 3.141592653589793 rad + pos: -57.5,50.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8764 + components: + - rot: 3.141592653589793 rad + pos: -61.5,52.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8765 + components: + - rot: 1.5707963267948966 rad + pos: -60.5,57.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8779 + components: + - pos: -53.5,56.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8845 + components: + - rot: 1.5707963267948966 rad + pos: -60.5,60.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8846 + components: + - pos: -59.5,64.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8847 + components: + - pos: -55.5,64.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8848 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,63.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8849 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,64.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8881 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,67.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8882 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,80.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8883 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,84.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8885 + components: + - pos: -54.5,84.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8887 + components: + - rot: 3.141592653589793 rad + pos: -55.5,88.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8928 + components: + - rot: 3.141592653589793 rad + pos: -58.5,87.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8967 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,83.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10258 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-6.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10337 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-2.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10703 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,-12.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10805 + components: + - pos: 6.5,20.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10955 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,42.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11119 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,38.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11124 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,33.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11145 + components: + - rot: 3.141592653589793 rad + pos: -52.5,46.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11172 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,42.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11192 + components: + - rot: 3.141592653589793 rad + pos: -42.5,42.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11208 + components: + - pos: -40.5,50.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11238 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,46.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11239 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,44.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11240 + components: + - rot: 3.141592653589793 rad + pos: -35.5,42.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11272 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,36.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11304 + components: + - rot: 3.141592653589793 rad + pos: -50.5,24.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11306 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,28.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11317 + components: + - pos: -52.5,40.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11318 + components: + - pos: -51.5,36.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11321 + components: + - pos: -53.5,33.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11557 + components: + - rot: 3.141592653589793 rad + pos: -42.5,32.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11558 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,32.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11592 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,37.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11593 + components: + - pos: -36.5,40.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11594 + components: + - pos: -32.5,39.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11595 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,37.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11640 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,28.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11641 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,20.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11642 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,12.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11647 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,24.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11676 + components: + - pos: -34.5,27.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11677 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,23.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11698 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,24.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11752 + components: + - rot: -1.5707963267948966 rad + pos: -57.5,27.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11753 + components: + - rot: -1.5707963267948966 rad + pos: -57.5,17.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11754 + components: + - rot: -1.5707963267948966 rad + pos: -57.5,11.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11755 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,14.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11756 + components: + - pos: -53.5,19.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11790 + components: + - rot: 3.141592653589793 rad + pos: -57.5,4.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11813 + components: + - rot: 1.5707963267948966 rad + pos: -73.5,6.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11814 + components: + - rot: 3.141592653589793 rad + pos: -66.5,5.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11840 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,-6.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11841 + components: + - rot: -1.5707963267948966 rad + pos: -57.5,-1.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11926 + components: + - rot: 3.141592653589793 rad + pos: -48.5,5.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11948 + components: + - pos: -41.5,9.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11968 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,3.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11969 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,1.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11996 + components: + - pos: -44.5,1.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11997 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-2.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11998 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-6.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12016 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-4.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12063 + components: + - rot: 3.141592653589793 rad + pos: -36.5,3.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12079 + components: + - rot: 3.141592653589793 rad + pos: -32.5,2.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12130 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,12.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12131 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,8.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12132 + components: + - pos: -23.5,16.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12139 + components: + - rot: 3.141592653589793 rad + pos: -23.5,5.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12172 + components: + - rot: 3.141592653589793 rad + pos: -30.5,32.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12174 + components: + - rot: 3.141592653589793 rad + pos: -22.5,28.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12218 + components: + - rot: 3.141592653589793 rad + pos: -16.5,32.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12255 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,37.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12256 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,44.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12257 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,45.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12258 + components: + - rot: 3.141592653589793 rad + pos: -20.5,39.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12273 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,47.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12296 + components: + - rot: 3.141592653589793 rad + pos: -16.5,5.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12321 + components: + - rot: 3.141592653589793 rad + pos: -11.5,0.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12332 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12353 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12354 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-4.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12383 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12413 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12414 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12415 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-12.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12485 + components: + - rot: 3.141592653589793 rad + pos: -7.5,28.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12486 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,27.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12487 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,18.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12488 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,10.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12506 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,12.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12507 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,9.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12508 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,9.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12509 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,12.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12510 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,14.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12582 + components: + - rot: 3.141592653589793 rad + pos: -6.5,5.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12583 + components: + - rot: 3.141592653589793 rad + pos: 4.5,5.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12584 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,1.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12585 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12596 + components: + - pos: 15.5,2.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12605 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-2.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12655 + components: + - pos: 19.5,10.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12656 + components: + - rot: 3.141592653589793 rad + pos: 20.5,5.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12657 + components: + - rot: 3.141592653589793 rad + pos: 26.5,3.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12658 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,6.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12708 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,8.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12709 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,10.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12710 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,12.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12711 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,16.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12712 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,18.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12713 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,20.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12714 + components: + - pos: 26.5,24.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12762 + components: + - rot: 3.141592653589793 rad + pos: 6.5,13.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12763 + components: + - rot: 3.141592653589793 rad + pos: 8.5,13.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12764 + components: + - rot: 3.141592653589793 rad + pos: 11.5,13.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12765 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,18.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12859 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,25.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13010 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,54.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13011 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,56.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13012 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,59.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13013 + components: + - pos: -17.5,63.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13031 + components: + - rot: 3.141592653589793 rad + pos: -11.5,53.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13032 + components: + - pos: -7.5,60.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13961 + components: + - rot: 3.141592653589793 rad + pos: -62.5,40.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13962 + components: + - pos: -62.5,45.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13981 + components: + - rot: 1.5707963267948966 rad + pos: -70.5,47.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13982 + components: + - rot: 1.5707963267948966 rad + pos: -70.5,52.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14038 + components: + - rot: 3.141592653589793 rad + pos: -69.5,33.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14040 + components: + - rot: 3.141592653589793 rad + pos: -70.5,29.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14046 + components: + - rot: 3.141592653589793 rad + pos: -77.5,32.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14109 + components: + - rot: -1.5707963267948966 rad + pos: -66.5,20.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14111 + components: + - rot: -1.5707963267948966 rad + pos: -66.5,22.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14112 + components: + - rot: -1.5707963267948966 rad + pos: -71.5,17.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14116 + components: + - rot: 1.5707963267948966 rad + pos: -74.5,29.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14149 + components: + - rot: 1.5707963267948966 rad + pos: -65.5,27.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14158 + components: + - rot: 1.5707963267948966 rad + pos: -80.5,24.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14161 + components: + - pos: -60.5,33.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 1064 + components: + - pos: -0.5,9.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2487 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,32.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2488 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,34.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2489 + components: + - pos: 4.5,37.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2490 + components: + - pos: 9.5,30.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2491 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,30.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2492 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,31.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2900 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,28.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2912 + components: + - rot: 3.141592653589793 rad + pos: -15.5,23.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3022 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,23.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3023 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,24.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3024 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,15.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3739 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-3.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3837 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-7.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3959 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-11.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3967 + components: + - rot: 3.141592653589793 rad + pos: -64.5,-11.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4750 + components: + - rot: 1.5707963267948966 rad + pos: -74.5,-9.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4807 + components: + - rot: 3.141592653589793 rad + pos: -57.5,-11.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8690 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,53.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8754 + components: + - rot: 3.141592653589793 rad + pos: -50.5,50.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8755 + components: + - rot: 3.141592653589793 rad + pos: -53.5,50.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8756 + components: + - rot: 3.141592653589793 rad + pos: -56.5,50.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8757 + components: + - rot: 3.141592653589793 rad + pos: -60.5,52.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8758 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,61.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8759 + components: + - pos: -54.5,64.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8760 + components: + - pos: -58.5,64.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8766 + components: + - rot: 1.5707963267948966 rad + pos: -60.5,58.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8778 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,56.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8842 + components: + - rot: 1.5707963267948966 rad + pos: -60.5,61.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8843 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,62.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8844 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,65.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8884 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,85.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8886 + components: + - rot: 3.141592653589793 rad + pos: -55.5,83.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8888 + components: + - pos: -54.5,89.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8924 + components: + - rot: 3.141592653589793 rad + pos: -57.5,87.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8925 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,84.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10798 + components: + - rot: 3.141592653589793 rad + pos: 7.5,19.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10956 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,41.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11122 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,37.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11123 + components: + - pos: -58.5,32.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11146 + components: + - pos: -53.5,47.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11175 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,41.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11196 + components: + - rot: 3.141592653589793 rad + pos: -41.5,42.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11209 + components: + - pos: -41.5,50.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11235 + components: + - rot: 3.141592653589793 rad + pos: -36.5,42.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11236 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,45.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11237 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,47.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11270 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,35.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11303 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,29.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11305 + components: + - rot: 3.141592653589793 rad + pos: -51.5,24.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11319 + components: + - pos: -50.5,36.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11320 + components: + - pos: -54.5,33.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11555 + components: + - pos: -43.5,32.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11556 + components: + - pos: -37.5,33.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11596 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,36.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11597 + components: + - pos: -38.5,40.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11598 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,36.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11599 + components: + - pos: -31.5,39.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11643 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,27.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11644 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,21.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11645 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,13.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11646 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,23.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11675 + components: + - pos: -33.5,27.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11678 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,24.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11697 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,25.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11747 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,26.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11748 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,18.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11749 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,10.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11750 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,15.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11751 + components: + - pos: -54.5,19.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11789 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,5.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11811 + components: + - pos: -67.5,5.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11812 + components: + - rot: 1.5707963267948966 rad + pos: -73.5,4.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11842 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,-2.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11843 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,-5.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11925 + components: + - pos: -49.5,5.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11949 + components: + - pos: -40.5,9.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11970 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,2.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11971 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,0.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11999 + components: + - pos: -43.5,1.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12000 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-6.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12001 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-3.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12018 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-4.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12064 + components: + - rot: 3.141592653589793 rad + pos: -38.5,3.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12080 + components: + - rot: 3.141592653589793 rad + pos: -33.5,2.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12127 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,9.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12128 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,11.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12129 + components: + - pos: -25.5,16.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12140 + components: + - pos: -24.5,5.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12173 + components: + - pos: -31.5,32.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12175 + components: + - rot: 3.141592653589793 rad + pos: -24.5,28.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12190 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,38.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12219 + components: + - rot: 3.141592653589793 rad + pos: -16.5,31.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12259 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,38.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12260 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,45.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12261 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,46.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12272 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,48.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12297 + components: + - pos: -17.5,5.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12320 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,0.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12331 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12352 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-3.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12355 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-4.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12381 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12384 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-11.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12416 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12481 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,28.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12482 + components: + - rot: 3.141592653589793 rad + pos: -8.5,28.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12483 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,19.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12484 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,11.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12586 + components: + - pos: -5.5,5.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12587 + components: + - pos: 5.5,5.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12588 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12589 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12595 + components: + - pos: 14.5,2.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12606 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-1.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12651 + components: + - pos: 17.5,10.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12652 + components: + - pos: 21.5,6.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12653 + components: + - rot: 3.141592653589793 rad + pos: 25.5,3.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12654 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,5.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12715 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,11.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12716 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,19.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12717 + components: + - pos: 27.5,24.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12736 + components: + - pos: -3.5,34.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12759 + components: + - rot: 3.141592653589793 rad + pos: 7.5,13.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12760 + components: + - rot: 3.141592653589793 rad + pos: 9.5,13.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12761 + components: + - rot: 3.141592653589793 rad + pos: 10.5,13.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12766 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,17.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12858 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,26.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 13004 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,55.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 13005 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,57.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 13006 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,60.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 13007 + components: + - pos: -15.5,63.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 13033 + components: + - pos: -8.5,60.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 13034 + components: + - rot: 3.141592653589793 rad + pos: -12.5,53.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 13964 + components: + - rot: 3.141592653589793 rad + pos: -61.5,40.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 13996 + components: + - rot: -1.5707963267948966 rad + pos: -60.5,45.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 13998 + components: + - rot: 1.5707963267948966 rad + pos: -70.5,48.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14045 + components: + - pos: -68.5,34.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14047 + components: + - rot: 3.141592653589793 rad + pos: -76.5,32.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14110 + components: + - rot: -1.5707963267948966 rad + pos: -66.5,23.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14113 + components: + - rot: -1.5707963267948966 rad + pos: -71.5,16.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14114 + components: + - rot: -1.5707963267948966 rad + pos: -66.5,19.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14115 + components: + - rot: -1.5707963267948966 rad + pos: -73.5,30.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14148 + components: + - rot: 1.5707963267948966 rad + pos: -65.5,28.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14159 + components: + - rot: 1.5707963267948966 rad + pos: -80.5,25.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14160 + components: + - pos: -61.5,33.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor +- proto: GeneratorBasic + entities: + - uid: 6144 + components: + - pos: 17.5,46.5 + parent: 1 + type: Transform +- proto: Girder + entities: + - uid: 54 + components: + - pos: 3.5,-3.5 + parent: 1 + type: Transform + - uid: 110 + components: + - pos: -21.5,-12.5 + parent: 1 + type: Transform + - uid: 179 + components: + - pos: 3.5,-6.5 + parent: 1 + type: Transform + - uid: 182 + components: + - pos: 8.5,-6.5 + parent: 1 + type: Transform + - uid: 191 + components: + - pos: 1.5,-7.5 + parent: 1 + type: Transform + - uid: 488 + components: + - pos: 9.5,-3.5 + parent: 1 + type: Transform + - uid: 514 + components: + - pos: 14.5,-3.5 + parent: 1 + type: Transform + - uid: 515 + components: + - pos: 22.5,-6.5 + parent: 1 + type: Transform + - uid: 585 + components: + - pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 648 + components: + - pos: 18.5,-3.5 + parent: 1 + type: Transform + - uid: 655 + components: + - pos: 22.5,0.5 + parent: 1 + type: Transform + - uid: 1044 + components: + - pos: 15.5,11.5 + parent: 1 + type: Transform + - uid: 1048 + components: + - pos: 15.5,7.5 + parent: 1 + type: Transform + - uid: 1049 + components: + - pos: 21.5,14.5 + parent: 1 + type: Transform + - uid: 1086 + components: + - pos: -22.5,-2.5 + parent: 1 + type: Transform + - uid: 1105 + components: + - pos: -22.5,1.5 + parent: 1 + type: Transform + - uid: 1128 + components: + - pos: -20.5,3.5 + parent: 1 + type: Transform + - uid: 1130 + components: + - pos: -30.5,-0.5 + parent: 1 + type: Transform + - uid: 1134 + components: + - pos: 8.5,7.5 + parent: 1 + type: Transform + - uid: 1139 + components: + - pos: 9.5,7.5 + parent: 1 + type: Transform + - uid: 1174 + components: + - pos: 13.5,23.5 + parent: 1 + type: Transform + - uid: 1175 + components: + - pos: 21.5,22.5 + parent: 1 + type: Transform + - uid: 1200 + components: + - pos: 16.5,21.5 + parent: 1 + type: Transform + - uid: 1305 + components: + - pos: 21.5,33.5 + parent: 1 + type: Transform + - uid: 1381 + components: + - pos: -1.5,44.5 + parent: 1 + type: Transform + - uid: 1416 + components: + - pos: 13.5,38.5 + parent: 1 + type: Transform + - uid: 1470 + components: + - pos: -7.5,19.5 + parent: 1 + type: Transform + - uid: 1476 + components: + - pos: -10.5,24.5 + parent: 1 + type: Transform + - uid: 2059 + components: + - pos: 17.5,24.5 + parent: 1 + type: Transform + - uid: 2305 + components: + - pos: -23.5,4.5 + parent: 1 + type: Transform + - uid: 3034 + components: + - pos: -21.5,14.5 + parent: 1 + type: Transform + - uid: 3049 + components: + - pos: -27.5,25.5 + parent: 1 + type: Transform + - uid: 3070 + components: + - pos: -29.5,19.5 + parent: 1 + type: Transform + - uid: 3109 + components: + - pos: -32.5,11.5 + parent: 1 + type: Transform + - uid: 3151 + components: + - pos: -32.5,22.5 + parent: 1 + type: Transform + - uid: 3160 + components: + - pos: -31.5,17.5 + parent: 1 + type: Transform + - uid: 3461 + components: + - pos: -29.5,3.5 + parent: 1 + type: Transform + - uid: 3464 + components: + - pos: -24.5,3.5 + parent: 1 + type: Transform + - uid: 3517 + components: + - pos: -62.5,6.5 + parent: 1 + type: Transform + - uid: 3518 + components: + - pos: -64.5,6.5 + parent: 1 + type: Transform + - uid: 3522 + components: + - pos: -58.5,17.5 + parent: 1 + type: Transform + - uid: 3596 + components: + - pos: -47.5,-5.5 + parent: 1 + type: Transform + - uid: 3614 + components: + - pos: -53.5,-8.5 + parent: 1 + type: Transform + - uid: 3732 + components: + - pos: -32.5,6.5 + parent: 1 + type: Transform + - uid: 3733 + components: + - pos: -58.5,23.5 + parent: 1 + type: Transform + - uid: 3734 + components: + - pos: -58.5,46.5 + parent: 1 + type: Transform + - uid: 3865 + components: + - pos: -51.5,3.5 + parent: 1 + type: Transform + - uid: 4165 + components: + - pos: -38.5,16.5 + parent: 1 + type: Transform + - uid: 4172 + components: + - pos: -40.5,19.5 + parent: 1 + type: Transform + - uid: 4193 + components: + - pos: -43.5,22.5 + parent: 1 + type: Transform + - uid: 4197 + components: + - pos: -45.5,29.5 + parent: 1 + type: Transform + - uid: 4292 + components: + - pos: -46.5,16.5 + parent: 1 + type: Transform + - uid: 4294 + components: + - pos: -43.5,16.5 + parent: 1 + type: Transform + - uid: 4297 + components: + - pos: -43.5,18.5 + parent: 1 + type: Transform + - uid: 4303 + components: + - pos: -49.5,19.5 + parent: 1 + type: Transform + - uid: 4501 + components: + - pos: -49.5,-6.5 + parent: 1 + type: Transform + - uid: 4502 + components: + - pos: -49.5,-3.5 + parent: 1 + type: Transform + - uid: 4512 + components: + - pos: -50.5,-8.5 + parent: 1 + type: Transform + - uid: 4518 + components: + - pos: -55.5,-0.5 + parent: 1 + type: Transform + - uid: 5490 + components: + - pos: -55.5,-10.5 + parent: 1 + type: Transform + - uid: 5875 + components: + - pos: -4.5,45.5 + parent: 1 + type: Transform + - uid: 6731 + components: + - pos: -29.5,41.5 + parent: 1 + type: Transform + - uid: 6959 + components: + - pos: -33.5,53.5 + parent: 1 + type: Transform + - uid: 7030 + components: + - pos: -54.5,45.5 + parent: 1 + type: Transform + - uid: 7031 + components: + - pos: -51.5,45.5 + parent: 1 + type: Transform + - uid: 7037 + components: + - pos: -55.5,41.5 + parent: 1 + type: Transform + - uid: 7058 + components: + - pos: -53.5,40.5 + parent: 1 + type: Transform + - uid: 7062 + components: + - pos: -50.5,42.5 + parent: 1 + type: Transform + - uid: 9185 + components: + - pos: -74.5,50.5 + parent: 1 + type: Transform + - uid: 9219 + components: + - pos: -59.5,39.5 + parent: 1 + type: Transform + - uid: 9245 + components: + - pos: -70.5,38.5 + parent: 1 + type: Transform + - uid: 9901 + components: + - pos: -59.5,22.5 + parent: 1 + type: Transform + - uid: 9926 + components: + - pos: -65.5,9.5 + parent: 1 + type: Transform + - uid: 10845 + components: + - pos: -63.5,38.5 + parent: 1 + type: Transform + - uid: 13344 + components: + - pos: -2.5,13.5 + parent: 1 + type: Transform + - uid: 15187 + components: + - pos: -68.5,48.5 + parent: 1 + type: Transform +- proto: GravityGenerator + entities: + - uid: 920 + components: + - pos: 28.5,2.5 + parent: 1 + type: Transform + - charge: 100 + type: GravityGenerator + - radius: 175.75 + type: PointLight +- proto: GrenadeFlashBang + entities: + - uid: 8009 + components: + - pos: -61.810192,50.638466 + parent: 1 + type: Transform + - uid: 8010 + components: + - pos: -61.950817,50.700966 + parent: 1 + type: Transform + - uid: 8011 + components: + - pos: -61.997692,50.59159 + parent: 1 + type: Transform +- proto: Grille + entities: + - uid: 28 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 37 + components: + - pos: -8.5,3.5 + parent: 1 + type: Transform + - uid: 41 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-5.5 + parent: 1 + type: Transform + - uid: 67 + components: + - pos: -7.5,-5.5 + parent: 1 + type: Transform + - uid: 68 + components: + - pos: -7.5,-4.5 + parent: 1 + type: Transform + - uid: 69 + components: + - pos: -6.5,3.5 + parent: 1 + type: Transform + - uid: 212 + components: + - pos: 2.5,-12.5 + parent: 1 + type: Transform + - uid: 213 + components: + - pos: 0.5,-12.5 + parent: 1 + type: Transform + - uid: 609 + components: + - rot: 3.141592653589793 rad + pos: -25.5,30.5 + parent: 1 + type: Transform + - uid: 711 + components: + - pos: 30.5,1.5 + parent: 1 + type: Transform + - uid: 712 + components: + - pos: 30.5,2.5 + parent: 1 + type: Transform + - uid: 713 + components: + - pos: 30.5,3.5 + parent: 1 + type: Transform + - uid: 946 + components: + - rot: 3.141592653589793 rad + pos: 29.5,6.5 + parent: 1 + type: Transform + - uid: 947 + components: + - rot: 3.141592653589793 rad + pos: 29.5,5.5 + parent: 1 + type: Transform + - uid: 953 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,17.5 + parent: 1 + type: Transform + - uid: 954 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,17.5 + parent: 1 + type: Transform + - uid: 975 + components: + - rot: 3.141592653589793 rad + pos: 29.5,14.5 + parent: 1 + type: Transform + - uid: 976 + components: + - rot: 3.141592653589793 rad + pos: 29.5,13.5 + parent: 1 + type: Transform + - uid: 977 + components: + - rot: 3.141592653589793 rad + pos: 29.5,12.5 + parent: 1 + type: Transform + - uid: 978 + components: + - rot: 3.141592653589793 rad + pos: 29.5,20.5 + parent: 1 + type: Transform + - uid: 979 + components: + - rot: 3.141592653589793 rad + pos: 29.5,21.5 + parent: 1 + type: Transform + - uid: 1052 + components: + - pos: 18.5,7.5 + parent: 1 + type: Transform + - uid: 1054 + components: + - pos: 16.5,7.5 + parent: 1 + type: Transform + - uid: 1066 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-4.5 + parent: 1 + type: Transform + - uid: 1067 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-3.5 + parent: 1 + type: Transform + - uid: 1068 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-1.5 + parent: 1 + type: Transform + - uid: 1264 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,24.5 + parent: 1 + type: Transform + - uid: 1269 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,28.5 + parent: 1 + type: Transform + - uid: 1290 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,28.5 + parent: 1 + type: Transform + - uid: 1303 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,28.5 + parent: 1 + type: Transform + - uid: 1316 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,31.5 + parent: 1 + type: Transform + - uid: 1317 + components: + - pos: 5.5,23.5 + parent: 1 + type: Transform + - uid: 1318 + components: + - pos: 11.5,27.5 + parent: 1 + type: Transform + - uid: 1342 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,29.5 + parent: 1 + type: Transform + - uid: 1343 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,30.5 + parent: 1 + type: Transform + - uid: 1345 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,32.5 + parent: 1 + type: Transform + - uid: 1347 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,34.5 + parent: 1 + type: Transform + - uid: 1360 + components: + - pos: 5.5,22.5 + parent: 1 + type: Transform + - uid: 1403 + components: + - pos: -44.5,65.5 + parent: 1 + type: Transform + - uid: 1424 + components: + - pos: 16.5,43.5 + parent: 1 + type: Transform + - uid: 1631 + components: + - pos: 12.5,27.5 + parent: 1 + type: Transform + - uid: 1869 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-15.5 + parent: 1 + type: Transform + - uid: 1870 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-15.5 + parent: 1 + type: Transform + - uid: 1871 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-15.5 + parent: 1 + type: Transform + - uid: 1887 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,30.5 + parent: 1 + type: Transform + - uid: 1890 + components: + - pos: 13.5,29.5 + parent: 1 + type: Transform + - uid: 1894 + components: + - pos: 5.5,26.5 + parent: 1 + type: Transform + - uid: 2820 + components: + - rot: 3.141592653589793 rad + pos: -14.5,24.5 + parent: 1 + type: Transform + - uid: 2822 + components: + - rot: 3.141592653589793 rad + pos: -14.5,28.5 + parent: 1 + type: Transform + - uid: 2831 + components: + - rot: 3.141592653589793 rad + pos: -17.5,30.5 + parent: 1 + type: Transform + - uid: 2832 + components: + - rot: 3.141592653589793 rad + pos: -16.5,30.5 + parent: 1 + type: Transform + - uid: 2833 + components: + - pos: -15.5,30.5 + parent: 1 + type: Transform + - uid: 2834 + components: + - rot: 3.141592653589793 rad + pos: -14.5,29.5 + parent: 1 + type: Transform + - uid: 2839 + components: + - rot: 3.141592653589793 rad + pos: -14.5,23.5 + parent: 1 + type: Transform + - uid: 3085 + components: + - pos: -25.5,7.5 + parent: 1 + type: Transform + - uid: 3086 + components: + - pos: -26.5,7.5 + parent: 1 + type: Transform + - uid: 3087 + components: + - pos: -27.5,7.5 + parent: 1 + type: Transform + - uid: 3132 + components: + - pos: -26.5,30.5 + parent: 1 + type: Transform + - uid: 3135 + components: + - pos: -23.5,30.5 + parent: 1 + type: Transform + - uid: 3150 + components: + - pos: -34.5,22.5 + parent: 1 + type: Transform + - uid: 3322 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-14.5 + parent: 1 + type: Transform + - uid: 3429 + components: + - pos: -35.5,21.5 + parent: 1 + type: Transform + - uid: 3431 + components: + - pos: -35.5,19.5 + parent: 1 + type: Transform + - uid: 3432 + components: + - pos: -35.5,18.5 + parent: 1 + type: Transform + - uid: 3433 + components: + - pos: -35.5,20.5 + parent: 1 + type: Transform + - uid: 3434 + components: + - pos: -35.5,16.5 + parent: 1 + type: Transform + - uid: 3435 + components: + - pos: -35.5,15.5 + parent: 1 + type: Transform + - uid: 3444 + components: + - pos: -20.5,36.5 + parent: 1 + type: Transform + - uid: 3452 + components: + - pos: -14.5,46.5 + parent: 1 + type: Transform + - uid: 3456 + components: + - pos: -22.5,36.5 + parent: 1 + type: Transform + - uid: 3457 + components: + - pos: -21.5,36.5 + parent: 1 + type: Transform + - uid: 3555 + components: + - pos: -37.5,-8.5 + parent: 1 + type: Transform + - uid: 3588 + components: + - pos: -42.5,-7.5 + parent: 1 + type: Transform + - uid: 3589 + components: + - pos: -42.5,-6.5 + parent: 1 + type: Transform + - uid: 3593 + components: + - pos: -42.5,-4.5 + parent: 1 + type: Transform + - uid: 3594 + components: + - pos: -42.5,-3.5 + parent: 1 + type: Transform + - uid: 3595 + components: + - pos: -42.5,-1.5 + parent: 1 + type: Transform + - uid: 3613 + components: + - rot: 3.141592653589793 rad + pos: -53.5,3.5 + parent: 1 + type: Transform + - uid: 3630 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-14.5 + parent: 1 + type: Transform + - uid: 3642 + components: + - pos: -38.5,-0.5 + parent: 1 + type: Transform + - uid: 3643 + components: + - pos: -36.5,-0.5 + parent: 1 + type: Transform + - uid: 3644 + components: + - pos: -44.5,3.5 + parent: 1 + type: Transform + - uid: 3685 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-0.5 + parent: 1 + type: Transform + - uid: 3686 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-14.5 + parent: 1 + type: Transform + - uid: 3775 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-13.5 + parent: 1 + type: Transform + - uid: 3841 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-4.5 + parent: 1 + type: Transform + - uid: 3842 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-4.5 + parent: 1 + type: Transform + - uid: 3843 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-4.5 + parent: 1 + type: Transform + - uid: 3905 + components: + - pos: -59.5,10.5 + parent: 1 + type: Transform + - uid: 3962 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-14.5 + parent: 1 + type: Transform + - uid: 3972 + components: + - rot: 3.141592653589793 rad + pos: -61.5,-12.5 + parent: 1 + type: Transform + - uid: 4099 + components: + - rot: 3.141592653589793 rad + pos: -62.5,-12.5 + parent: 1 + type: Transform + - uid: 4306 + components: + - pos: -48.5,25.5 + parent: 1 + type: Transform + - uid: 4312 + components: + - pos: -46.5,25.5 + parent: 1 + type: Transform + - uid: 4314 + components: + - pos: -48.5,23.5 + parent: 1 + type: Transform + - uid: 4315 + components: + - pos: -48.5,24.5 + parent: 1 + type: Transform + - uid: 4316 + components: + - pos: -46.5,23.5 + parent: 1 + type: Transform + - uid: 4317 + components: + - pos: -46.5,24.5 + parent: 1 + type: Transform + - uid: 4735 + components: + - pos: -25.5,64.5 + parent: 1 + type: Transform + - uid: 4748 + components: + - pos: -74.5,7.5 + parent: 1 + type: Transform + - uid: 4757 + components: + - pos: -38.5,-8.5 + parent: 1 + type: Transform + - uid: 4760 + components: + - rot: 3.141592653589793 rad + pos: -60.5,-12.5 + parent: 1 + type: Transform + - uid: 4816 + components: + - pos: -65.5,-13.5 + parent: 1 + type: Transform + - uid: 4827 + components: + - pos: -59.5,2.5 + parent: 1 + type: Transform + - uid: 4828 + components: + - pos: -59.5,1.5 + parent: 1 + type: Transform + - uid: 4829 + components: + - pos: -59.5,0.5 + parent: 1 + type: Transform + - uid: 4830 + components: + - pos: -59.5,-0.5 + parent: 1 + type: Transform + - uid: 4831 + components: + - pos: -59.5,-1.5 + parent: 1 + type: Transform + - uid: 4832 + components: + - pos: -59.5,-2.5 + parent: 1 + type: Transform + - uid: 4833 + components: + - pos: -59.5,-3.5 + parent: 1 + type: Transform + - uid: 4834 + components: + - pos: -59.5,-4.5 + parent: 1 + type: Transform + - uid: 4835 + components: + - pos: -59.5,-5.5 + parent: 1 + type: Transform + - uid: 4836 + components: + - pos: -59.5,-6.5 + parent: 1 + type: Transform + - uid: 4853 + components: + - pos: -75.5,3.5 + parent: 1 + type: Transform + - uid: 4857 + components: + - pos: -71.5,3.5 + parent: 1 + type: Transform + - uid: 4858 + components: + - pos: -70.5,3.5 + parent: 1 + type: Transform + - uid: 4859 + components: + - pos: -69.5,3.5 + parent: 1 + type: Transform + - uid: 4860 + components: + - pos: -68.5,3.5 + parent: 1 + type: Transform + - uid: 4864 + components: + - pos: -64.5,3.5 + parent: 1 + type: Transform + - uid: 4865 + components: + - pos: -63.5,3.5 + parent: 1 + type: Transform + - uid: 4866 + components: + - pos: -62.5,3.5 + parent: 1 + type: Transform + - uid: 4867 + components: + - pos: -61.5,3.5 + parent: 1 + type: Transform + - uid: 4868 + components: + - pos: -60.5,3.5 + parent: 1 + type: Transform + - uid: 4884 + components: + - pos: -73.5,-13.5 + parent: 1 + type: Transform + - uid: 4889 + components: + - pos: -59.5,-7.5 + parent: 1 + type: Transform + - uid: 4894 + components: + - rot: 3.141592653589793 rad + pos: -57.5,-12.5 + parent: 1 + type: Transform + - uid: 4895 + components: + - pos: -64.5,-8.5 + parent: 1 + type: Transform + - uid: 4898 + components: + - pos: -73.5,-14.5 + parent: 1 + type: Transform + - uid: 4899 + components: + - rot: 3.141592653589793 rad + pos: -69.5,-12.5 + parent: 1 + type: Transform + - uid: 4900 + components: + - rot: 3.141592653589793 rad + pos: -68.5,-12.5 + parent: 1 + type: Transform + - uid: 4902 + components: + - pos: -61.5,-8.5 + parent: 1 + type: Transform + - uid: 4908 + components: + - pos: -69.5,-8.5 + parent: 1 + type: Transform + - uid: 4909 + components: + - pos: -68.5,-8.5 + parent: 1 + type: Transform + - uid: 4910 + components: + - pos: -63.5,-8.5 + parent: 1 + type: Transform + - uid: 4925 + components: + - pos: -62.5,-8.5 + parent: 1 + type: Transform + - uid: 4926 + components: + - rot: 3.141592653589793 rad + pos: -70.5,-12.5 + parent: 1 + type: Transform + - uid: 4932 + components: + - pos: -65.5,-14.5 + parent: 1 + type: Transform + - uid: 4934 + components: + - pos: -75.5,-8.5 + parent: 1 + type: Transform + - uid: 4944 + components: + - rot: 3.141592653589793 rad + pos: -58.5,-12.5 + parent: 1 + type: Transform + - uid: 4971 + components: + - pos: -70.5,-8.5 + parent: 1 + type: Transform + - uid: 4976 + components: + - pos: -71.5,-8.5 + parent: 1 + type: Transform + - uid: 4977 + components: + - pos: -60.5,-8.5 + parent: 1 + type: Transform + - uid: 5074 + components: + - pos: -76.5,4.5 + parent: 1 + type: Transform + - uid: 5075 + components: + - pos: -76.5,5.5 + parent: 1 + type: Transform + - uid: 5076 + components: + - pos: -76.5,6.5 + parent: 1 + type: Transform + - uid: 5175 + components: + - pos: -75.5,7.5 + parent: 1 + type: Transform + - uid: 5248 + components: + - pos: -47.5,-11.5 + parent: 1 + type: Transform + - uid: 5249 + components: + - pos: -49.5,-11.5 + parent: 1 + type: Transform + - uid: 5252 + components: + - pos: -55.5,18.5 + parent: 1 + type: Transform + - uid: 5280 + components: + - pos: -55.5,19.5 + parent: 1 + type: Transform + - uid: 5316 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,14.5 + parent: 1 + type: Transform + - uid: 5340 + components: + - pos: -25.5,65.5 + parent: 1 + type: Transform + - uid: 5341 + components: + - pos: -17.5,70.5 + parent: 1 + type: Transform + - uid: 5823 + components: + - pos: -18.5,46.5 + parent: 1 + type: Transform + - uid: 5836 + components: + - pos: -18.5,47.5 + parent: 1 + type: Transform + - uid: 5861 + components: + - pos: -14.5,44.5 + parent: 1 + type: Transform + - uid: 5862 + components: + - pos: -14.5,43.5 + parent: 1 + type: Transform + - uid: 5864 + components: + - pos: -14.5,41.5 + parent: 1 + type: Transform + - uid: 5866 + components: + - pos: -14.5,39.5 + parent: 1 + type: Transform + - uid: 5867 + components: + - pos: -14.5,38.5 + parent: 1 + type: Transform + - uid: 5869 + components: + - pos: -14.5,36.5 + parent: 1 + type: Transform + - uid: 5870 + components: + - pos: -14.5,35.5 + parent: 1 + type: Transform + - uid: 5901 + components: + - pos: -14.5,49.5 + parent: 1 + type: Transform + - uid: 5963 + components: + - pos: -1.5,54.5 + parent: 1 + type: Transform + - uid: 5964 + components: + - pos: -0.5,54.5 + parent: 1 + type: Transform + - uid: 5965 + components: + - pos: 0.5,54.5 + parent: 1 + type: Transform + - uid: 5966 + components: + - pos: -2.5,53.5 + parent: 1 + type: Transform + - uid: 5967 + components: + - pos: -2.5,52.5 + parent: 1 + type: Transform + - uid: 5968 + components: + - pos: -2.5,51.5 + parent: 1 + type: Transform + - uid: 5969 + components: + - pos: -2.5,50.5 + parent: 1 + type: Transform + - uid: 5970 + components: + - pos: -2.5,49.5 + parent: 1 + type: Transform + - uid: 6012 + components: + - pos: -24.5,67.5 + parent: 1 + type: Transform + - uid: 6013 + components: + - pos: -16.5,70.5 + parent: 1 + type: Transform + - uid: 6043 + components: + - pos: 16.5,53.5 + parent: 1 + type: Transform + - uid: 6044 + components: + - pos: 15.5,53.5 + parent: 1 + type: Transform + - uid: 6045 + components: + - pos: 14.5,53.5 + parent: 1 + type: Transform + - uid: 6046 + components: + - pos: 13.5,53.5 + parent: 1 + type: Transform + - uid: 6257 + components: + - pos: -14.5,70.5 + parent: 1 + type: Transform + - uid: 6275 + components: + - pos: -25.5,62.5 + parent: 1 + type: Transform + - uid: 6319 + components: + - pos: 24.5,38.5 + parent: 1 + type: Transform + - uid: 6321 + components: + - pos: 24.5,40.5 + parent: 1 + type: Transform + - uid: 6322 + components: + - pos: 24.5,41.5 + parent: 1 + type: Transform + - uid: 6323 + components: + - pos: -11.5,70.5 + parent: 1 + type: Transform + - uid: 6352 + components: + - rot: 3.141592653589793 rad + pos: -13.5,54.5 + parent: 1 + type: Transform + - uid: 6355 + components: + - rot: 3.141592653589793 rad + pos: -13.5,56.5 + parent: 1 + type: Transform + - uid: 6356 + components: + - rot: 3.141592653589793 rad + pos: -13.5,53.5 + parent: 1 + type: Transform + - uid: 6358 + components: + - rot: 3.141592653589793 rad + pos: -13.5,57.5 + parent: 1 + type: Transform + - uid: 6389 + components: + - rot: 3.141592653589793 rad + pos: -16.5,58.5 + parent: 1 + type: Transform + - uid: 6408 + components: + - pos: -9.5,62.5 + parent: 1 + type: Transform + - uid: 6409 + components: + - pos: -8.5,62.5 + parent: 1 + type: Transform + - uid: 6410 + components: + - pos: -7.5,62.5 + parent: 1 + type: Transform + - uid: 6411 + components: + - pos: -6.5,62.5 + parent: 1 + type: Transform + - uid: 6412 + components: + - pos: -5.5,62.5 + parent: 1 + type: Transform + - uid: 6414 + components: + - pos: -4.5,61.5 + parent: 1 + type: Transform + - uid: 6415 + components: + - pos: -4.5,60.5 + parent: 1 + type: Transform + - uid: 6458 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,64.5 + parent: 1 + type: Transform + - uid: 6459 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,65.5 + parent: 1 + type: Transform + - uid: 6460 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,65.5 + parent: 1 + type: Transform + - uid: 6461 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,66.5 + parent: 1 + type: Transform + - uid: 6462 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,66.5 + parent: 1 + type: Transform + - uid: 6463 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,67.5 + parent: 1 + type: Transform + - uid: 6464 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,67.5 + parent: 1 + type: Transform + - uid: 6465 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,67.5 + parent: 1 + type: Transform + - uid: 6466 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,67.5 + parent: 1 + type: Transform + - uid: 6467 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,67.5 + parent: 1 + type: Transform + - uid: 6468 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,67.5 + parent: 1 + type: Transform + - uid: 6469 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,67.5 + parent: 1 + type: Transform + - uid: 6470 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,66.5 + parent: 1 + type: Transform + - uid: 6471 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,66.5 + parent: 1 + type: Transform + - uid: 6472 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,65.5 + parent: 1 + type: Transform + - uid: 6473 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,65.5 + parent: 1 + type: Transform + - uid: 6474 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,64.5 + parent: 1 + type: Transform + - uid: 6653 + components: + - pos: -18.5,48.5 + parent: 1 + type: Transform + - uid: 6669 + components: + - pos: -13.5,70.5 + parent: 1 + type: Transform + - uid: 6670 + components: + - pos: -10.5,69.5 + parent: 1 + type: Transform + - uid: 6671 + components: + - pos: -1.5,62.5 + parent: 1 + type: Transform + - uid: 6673 + components: + - pos: -1.5,60.5 + parent: 1 + type: Transform + - uid: 6674 + components: + - pos: -1.5,59.5 + parent: 1 + type: Transform + - uid: 6675 + components: + - pos: -3.5,65.5 + parent: 1 + type: Transform + - uid: 6678 + components: + - pos: -22.5,69.5 + parent: 1 + type: Transform + - uid: 6685 + components: + - pos: -22.5,60.5 + parent: 1 + type: Transform + - uid: 6686 + components: + - pos: -22.5,61.5 + parent: 1 + type: Transform + - uid: 6687 + components: + - pos: -22.5,62.5 + parent: 1 + type: Transform + - uid: 6757 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,34.5 + parent: 1 + type: Transform + - uid: 6758 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,34.5 + parent: 1 + type: Transform + - uid: 6760 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,34.5 + parent: 1 + type: Transform + - uid: 6783 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,48.5 + parent: 1 + type: Transform + - uid: 6791 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,41.5 + parent: 1 + type: Transform + - uid: 6811 + components: + - pos: -41.5,53.5 + parent: 1 + type: Transform + - uid: 6816 + components: + - pos: -40.5,53.5 + parent: 1 + type: Transform + - uid: 6821 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,48.5 + parent: 1 + type: Transform + - uid: 6984 + components: + - pos: -48.5,56.5 + parent: 1 + type: Transform + - uid: 6985 + components: + - pos: -46.5,56.5 + parent: 1 + type: Transform + - uid: 6989 + components: + - pos: -57.5,48.5 + parent: 1 + type: Transform + - uid: 6990 + components: + - pos: -56.5,48.5 + parent: 1 + type: Transform + - uid: 6991 + components: + - pos: -54.5,48.5 + parent: 1 + type: Transform + - uid: 6992 + components: + - pos: -53.5,48.5 + parent: 1 + type: Transform + - uid: 6993 + components: + - pos: -51.5,48.5 + parent: 1 + type: Transform + - uid: 6994 + components: + - pos: -50.5,48.5 + parent: 1 + type: Transform + - uid: 6995 + components: + - pos: -50.5,52.5 + parent: 1 + type: Transform + - uid: 6996 + components: + - pos: -53.5,52.5 + parent: 1 + type: Transform + - uid: 6997 + components: + - pos: -56.5,52.5 + parent: 1 + type: Transform + - uid: 7004 + components: + - pos: -54.5,59.5 + parent: 1 + type: Transform + - uid: 7005 + components: + - pos: -55.5,59.5 + parent: 1 + type: Transform + - uid: 7006 + components: + - pos: -56.5,59.5 + parent: 1 + type: Transform + - uid: 7014 + components: + - pos: -48.5,63.5 + parent: 1 + type: Transform + - uid: 7029 + components: + - rot: 3.141592653589793 rad + pos: -52.5,45.5 + parent: 1 + type: Transform + - uid: 7095 + components: + - pos: -23.5,68.5 + parent: 1 + type: Transform + - uid: 7113 + components: + - pos: -46.5,63.5 + parent: 1 + type: Transform + - uid: 7151 + components: + - pos: -53.5,63.5 + parent: 1 + type: Transform + - uid: 7152 + components: + - pos: -53.5,64.5 + parent: 1 + type: Transform + - uid: 7153 + components: + - pos: -53.5,65.5 + parent: 1 + type: Transform + - uid: 7162 + components: + - pos: -58.5,62.5 + parent: 1 + type: Transform + - uid: 7165 + components: + - pos: -61.5,66.5 + parent: 1 + type: Transform + - uid: 7166 + components: + - pos: -60.5,66.5 + parent: 1 + type: Transform + - uid: 7167 + components: + - pos: -59.5,66.5 + parent: 1 + type: Transform + - uid: 7168 + components: + - pos: -58.5,66.5 + parent: 1 + type: Transform + - uid: 7173 + components: + - pos: -56.5,66.5 + parent: 1 + type: Transform + - uid: 7174 + components: + - pos: -55.5,66.5 + parent: 1 + type: Transform + - uid: 7175 + components: + - pos: -54.5,66.5 + parent: 1 + type: Transform + - uid: 7179 + components: + - pos: -56.5,62.5 + parent: 1 + type: Transform + - uid: 7180 + components: + - pos: -54.5,62.5 + parent: 1 + type: Transform + - uid: 7238 + components: + - pos: -58.5,54.5 + parent: 1 + type: Transform + - uid: 7242 + components: + - pos: -49.5,54.5 + parent: 1 + type: Transform + - uid: 7255 + components: + - pos: -49.5,83.5 + parent: 1 + type: Transform + - uid: 7256 + components: + - pos: -49.5,84.5 + parent: 1 + type: Transform + - uid: 7257 + components: + - pos: -49.5,85.5 + parent: 1 + type: Transform + - uid: 7258 + components: + - pos: -49.5,86.5 + parent: 1 + type: Transform + - uid: 7259 + components: + - pos: -49.5,87.5 + parent: 1 + type: Transform + - uid: 7260 + components: + - pos: -49.5,88.5 + parent: 1 + type: Transform + - uid: 7271 + components: + - pos: -51.5,91.5 + parent: 1 + type: Transform + - uid: 7301 + components: + - pos: -58.5,82.5 + parent: 1 + type: Transform + - uid: 7307 + components: + - pos: -59.5,90.5 + parent: 1 + type: Transform + - uid: 7308 + components: + - pos: -60.5,90.5 + parent: 1 + type: Transform + - uid: 7312 + components: + - pos: -61.5,82.5 + parent: 1 + type: Transform + - uid: 7318 + components: + - pos: -63.5,83.5 + parent: 1 + type: Transform + - uid: 7319 + components: + - pos: -62.5,88.5 + parent: 1 + type: Transform + - uid: 7374 + components: + - pos: -10.5,70.5 + parent: 1 + type: Transform + - uid: 7375 + components: + - pos: -5.5,65.5 + parent: 1 + type: Transform + - uid: 7376 + components: + - pos: -1.5,63.5 + parent: 1 + type: Transform + - uid: 7377 + components: + - pos: -6.5,65.5 + parent: 1 + type: Transform + - uid: 7413 + components: + - pos: -1.5,64.5 + parent: 1 + type: Transform + - uid: 7512 + components: + - pos: -9.5,69.5 + parent: 1 + type: Transform + - uid: 7513 + components: + - pos: -9.5,68.5 + parent: 1 + type: Transform + - uid: 7516 + components: + - pos: -7.5,65.5 + parent: 1 + type: Transform + - uid: 7712 + components: + - pos: -63.5,84.5 + parent: 1 + type: Transform + - uid: 7715 + components: + - pos: -58.5,90.5 + parent: 1 + type: Transform + - uid: 7728 + components: + - pos: -59.5,82.5 + parent: 1 + type: Transform + - uid: 7729 + components: + - pos: -60.5,82.5 + parent: 1 + type: Transform + - uid: 7740 + components: + - pos: -63.5,85.5 + parent: 1 + type: Transform + - uid: 7862 + components: + - pos: -47.5,52.5 + parent: 1 + type: Transform + - uid: 8084 + components: + - pos: -8.5,68.5 + parent: 1 + type: Transform + - uid: 8115 + components: + - pos: -24.5,68.5 + parent: 1 + type: Transform + - uid: 8289 + components: + - pos: -22.5,70.5 + parent: 1 + type: Transform + - uid: 8290 + components: + - pos: -19.5,70.5 + parent: 1 + type: Transform + - uid: 8970 + components: + - pos: -55.5,74.5 + parent: 1 + type: Transform + - uid: 8972 + components: + - pos: -55.5,69.5 + parent: 1 + type: Transform + - uid: 8973 + components: + - pos: -55.5,70.5 + parent: 1 + type: Transform + - uid: 8975 + components: + - pos: -55.5,72.5 + parent: 1 + type: Transform + - uid: 8976 + components: + - pos: -23.5,69.5 + parent: 1 + type: Transform + - uid: 8977 + components: + - pos: -55.5,75.5 + parent: 1 + type: Transform + - uid: 8981 + components: + - pos: -107.5,22.5 + parent: 1 + type: Transform + - uid: 8986 + components: + - pos: -65.5,82.5 + parent: 1 + type: Transform + - uid: 8988 + components: + - pos: -65.5,84.5 + parent: 1 + type: Transform + - uid: 8989 + components: + - pos: -65.5,85.5 + parent: 1 + type: Transform + - uid: 8991 + components: + - pos: -65.5,87.5 + parent: 1 + type: Transform + - uid: 8993 + components: + - pos: -64.5,88.5 + parent: 1 + type: Transform + - uid: 8994 + components: + - pos: -64.5,89.5 + parent: 1 + type: Transform + - uid: 9023 + components: + - pos: -47.5,77.5 + parent: 1 + type: Transform + - uid: 9024 + components: + - pos: -47.5,76.5 + parent: 1 + type: Transform + - uid: 9026 + components: + - pos: -47.5,74.5 + parent: 1 + type: Transform + - uid: 9028 + components: + - pos: -46.5,71.5 + parent: 1 + type: Transform + - uid: 9029 + components: + - pos: -45.5,71.5 + parent: 1 + type: Transform + - uid: 9030 + components: + - pos: -44.5,71.5 + parent: 1 + type: Transform + - uid: 9032 + components: + - pos: -42.5,71.5 + parent: 1 + type: Transform + - uid: 9048 + components: + - pos: -32.5,62.5 + parent: 1 + type: Transform + - uid: 9050 + components: + - pos: -30.5,62.5 + parent: 1 + type: Transform + - uid: 9051 + components: + - pos: -29.5,62.5 + parent: 1 + type: Transform + - uid: 9091 + components: + - pos: 0.5,56.5 + parent: 1 + type: Transform + - uid: 9092 + components: + - pos: 1.5,56.5 + parent: 1 + type: Transform + - uid: 9094 + components: + - pos: 3.5,56.5 + parent: 1 + type: Transform + - uid: 9095 + components: + - pos: 10.5,55.5 + parent: 1 + type: Transform + - uid: 9096 + components: + - pos: 5.5,56.5 + parent: 1 + type: Transform + - uid: 9097 + components: + - pos: 7.5,55.5 + parent: 1 + type: Transform + - uid: 9099 + components: + - pos: 9.5,55.5 + parent: 1 + type: Transform + - uid: 9102 + components: + - pos: 12.5,55.5 + parent: 1 + type: Transform + - uid: 9103 + components: + - pos: 13.5,55.5 + parent: 1 + type: Transform + - uid: 9188 + components: + - rot: 1.5707963267948966 rad + pos: -70.5,57.5 + parent: 1 + type: Transform + - uid: 9296 + components: + - rot: 1.5707963267948966 rad + pos: -63.5,29.5 + parent: 1 + type: Transform + - uid: 9323 + components: + - pos: -67.5,32.5 + parent: 1 + type: Transform + - uid: 9626 + components: + - pos: -72.5,22.5 + parent: 1 + type: Transform + - uid: 9627 + components: + - pos: -71.5,32.5 + parent: 1 + type: Transform + - uid: 9628 + components: + - pos: -64.5,24.5 + parent: 1 + type: Transform + - uid: 9629 + components: + - pos: -65.5,24.5 + parent: 1 + type: Transform + - uid: 9630 + components: + - pos: -66.5,24.5 + parent: 1 + type: Transform + - uid: 9663 + components: + - pos: -72.5,20.5 + parent: 1 + type: Transform + - uid: 9681 + components: + - pos: -77.5,26.5 + parent: 1 + type: Transform + - uid: 9683 + components: + - pos: -77.5,24.5 + parent: 1 + type: Transform + - uid: 9684 + components: + - pos: -80.5,47.5 + parent: 1 + type: Transform + - uid: 9701 + components: + - pos: -86.5,23.5 + parent: 1 + type: Transform + - uid: 9702 + components: + - pos: -86.5,24.5 + parent: 1 + type: Transform + - uid: 9703 + components: + - pos: -86.5,25.5 + parent: 1 + type: Transform + - uid: 9704 + components: + - pos: -86.5,26.5 + parent: 1 + type: Transform + - uid: 9705 + components: + - pos: -86.5,27.5 + parent: 1 + type: Transform + - uid: 9821 + components: + - pos: -79.5,47.5 + parent: 1 + type: Transform + - uid: 9855 + components: + - pos: -69.5,18.5 + parent: 1 + type: Transform + - uid: 9856 + components: + - pos: -68.5,18.5 + parent: 1 + type: Transform + - uid: 9875 + components: + - pos: -81.5,47.5 + parent: 1 + type: Transform + - uid: 9876 + components: + - pos: -82.5,47.5 + parent: 1 + type: Transform + - uid: 9877 + components: + - pos: -83.5,47.5 + parent: 1 + type: Transform + - uid: 9878 + components: + - pos: -84.5,47.5 + parent: 1 + type: Transform + - uid: 9879 + components: + - pos: -85.5,47.5 + parent: 1 + type: Transform + - uid: 9880 + components: + - pos: -85.5,46.5 + parent: 1 + type: Transform + - uid: 9881 + components: + - pos: -85.5,45.5 + parent: 1 + type: Transform + - uid: 9882 + components: + - pos: -85.5,44.5 + parent: 1 + type: Transform + - uid: 9883 + components: + - pos: -85.5,43.5 + parent: 1 + type: Transform + - uid: 9884 + components: + - pos: -85.5,42.5 + parent: 1 + type: Transform + - uid: 9885 + components: + - pos: -85.5,41.5 + parent: 1 + type: Transform + - uid: 9886 + components: + - pos: -85.5,40.5 + parent: 1 + type: Transform + - uid: 9887 + components: + - pos: -85.5,39.5 + parent: 1 + type: Transform + - uid: 9888 + components: + - pos: -85.5,38.5 + parent: 1 + type: Transform + - uid: 9889 + components: + - pos: -85.5,37.5 + parent: 1 + type: Transform + - uid: 9890 + components: + - pos: -85.5,36.5 + parent: 1 + type: Transform + - uid: 9891 + components: + - pos: -85.5,35.5 + parent: 1 + type: Transform + - uid: 9892 + components: + - pos: -85.5,34.5 + parent: 1 + type: Transform + - uid: 9903 + components: + - rot: 3.141592653589793 rad + pos: -59.5,25.5 + parent: 1 + type: Transform + - uid: 10143 + components: + - pos: -73.5,18.5 + parent: 1 + type: Transform + - uid: 10158 + components: + - pos: -70.5,18.5 + parent: 1 + type: Transform + - uid: 10160 + components: + - pos: -69.5,27.5 + parent: 1 + type: Transform + - uid: 10164 + components: + - pos: -69.5,24.5 + parent: 1 + type: Transform + - uid: 10246 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-4.5 + parent: 1 + type: Transform + - uid: 10349 + components: + - pos: -49.5,-14.5 + parent: 1 + type: Transform + - uid: 10361 + components: + - pos: -42.5,-14.5 + parent: 1 + type: Transform + - uid: 10412 + components: + - pos: 23.5,36.5 + parent: 1 + type: Transform + - uid: 10758 + components: + - rot: -1.5707963267948966 rad + pos: -81.5,49.5 + parent: 1 + type: Transform + - uid: 10759 + components: + - rot: -1.5707963267948966 rad + pos: -83.5,49.5 + parent: 1 + type: Transform + - uid: 10761 + components: + - rot: -1.5707963267948966 rad + pos: -82.5,49.5 + parent: 1 + type: Transform + - uid: 10762 + components: + - rot: -1.5707963267948966 rad + pos: -80.5,50.5 + parent: 1 + type: Transform + - uid: 10833 + components: + - rot: -1.5707963267948966 rad + pos: -87.5,45.5 + parent: 1 + type: Transform + - uid: 10834 + components: + - rot: -1.5707963267948966 rad + pos: -87.5,43.5 + parent: 1 + type: Transform + - uid: 10835 + components: + - rot: -1.5707963267948966 rad + pos: -87.5,41.5 + parent: 1 + type: Transform + - uid: 10836 + components: + - rot: -1.5707963267948966 rad + pos: -87.5,39.5 + parent: 1 + type: Transform + - uid: 10837 + components: + - rot: -1.5707963267948966 rad + pos: -87.5,37.5 + parent: 1 + type: Transform + - uid: 10838 + components: + - rot: -1.5707963267948966 rad + pos: -87.5,35.5 + parent: 1 + type: Transform + - uid: 10926 + components: + - pos: -63.5,43.5 + parent: 1 + type: Transform + - uid: 10927 + components: + - pos: -64.5,43.5 + parent: 1 + type: Transform + - uid: 10928 + components: + - pos: -60.5,43.5 + parent: 1 + type: Transform + - uid: 10930 + components: + - pos: -61.5,43.5 + parent: 1 + type: Transform + - uid: 10957 + components: + - pos: -57.5,68.5 + parent: 1 + type: Transform + - uid: 11509 + components: + - rot: 1.5707963267948966 rad + pos: -84.5,50.5 + parent: 1 + type: Transform + - uid: 13752 + components: + - pos: -85.5,33.5 + parent: 1 + type: Transform + - uid: 13845 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-12.5 + parent: 1 + type: Transform + - uid: 13848 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,9.5 + parent: 1 + type: Transform + - uid: 13849 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,9.5 + parent: 1 + type: Transform + - uid: 14209 + components: + - pos: -43.5,-14.5 + parent: 1 + type: Transform + - uid: 14467 + components: + - pos: -59.5,68.5 + parent: 1 + type: Transform + - uid: 14469 + components: + - pos: -61.5,68.5 + parent: 1 + type: Transform + - uid: 14470 + components: + - pos: -62.5,68.5 + parent: 1 + type: Transform + - uid: 14602 + components: + - pos: -107.5,24.5 + parent: 1 + type: Transform + - uid: 14603 + components: + - pos: -107.5,25.5 + parent: 1 + type: Transform + - uid: 14606 + components: + - pos: -107.5,28.5 + parent: 1 + type: Transform + - uid: 14610 + components: + - pos: -109.5,34.5 + parent: 1 + type: Transform + - uid: 14612 + components: + - pos: -107.5,34.5 + parent: 1 + type: Transform + - uid: 14613 + components: + - pos: -107.5,35.5 + parent: 1 + type: Transform + - uid: 14614 + components: + - pos: -106.5,35.5 + parent: 1 + type: Transform + - uid: 14616 + components: + - pos: -101.5,35.5 + parent: 1 + type: Transform + - uid: 14617 + components: + - pos: -100.5,35.5 + parent: 1 + type: Transform + - uid: 14619 + components: + - pos: -98.5,35.5 + parent: 1 + type: Transform + - uid: 14620 + components: + - pos: -97.5,35.5 + parent: 1 + type: Transform + - uid: 14622 + components: + - pos: -94.5,35.5 + parent: 1 + type: Transform + - uid: 14624 + components: + - pos: -94.5,37.5 + parent: 1 + type: Transform + - uid: 14625 + components: + - pos: -94.5,38.5 + parent: 1 + type: Transform + - uid: 14626 + components: + - pos: -94.5,39.5 + parent: 1 + type: Transform + - uid: 14630 + components: + - pos: -94.5,43.5 + parent: 1 + type: Transform + - uid: 14632 + components: + - pos: -94.5,45.5 + parent: 1 + type: Transform + - uid: 14633 + components: + - pos: -94.5,46.5 + parent: 1 + type: Transform + - uid: 14636 + components: + - pos: -92.5,49.5 + parent: 1 + type: Transform + - uid: 14638 + components: + - pos: -90.5,49.5 + parent: 1 + type: Transform + - uid: 14639 + components: + - pos: -89.5,49.5 + parent: 1 + type: Transform + - uid: 14640 + components: + - pos: -88.5,49.5 + parent: 1 + type: Transform + - uid: 14642 + components: + - pos: -87.5,51.5 + parent: 1 + type: Transform + - uid: 14643 + components: + - pos: -87.5,52.5 + parent: 1 + type: Transform + - uid: 14645 + components: + - pos: -85.5,54.5 + parent: 1 + type: Transform + - uid: 14647 + components: + - pos: -83.5,54.5 + parent: 1 + type: Transform + - uid: 14648 + components: + - pos: -82.5,54.5 + parent: 1 + type: Transform + - uid: 14649 + components: + - pos: -81.5,57.5 + parent: 1 + type: Transform + - uid: 14650 + components: + - pos: -80.5,57.5 + parent: 1 + type: Transform + - uid: 14651 + components: + - pos: -68.5,62.5 + parent: 1 + type: Transform + - uid: 14653 + components: + - pos: -78.5,60.5 + parent: 1 + type: Transform + - uid: 14654 + components: + - pos: -77.5,60.5 + parent: 1 + type: Transform + - uid: 14656 + components: + - pos: -75.5,60.5 + parent: 1 + type: Transform + - uid: 14658 + components: + - pos: -73.5,60.5 + parent: 1 + type: Transform + - uid: 14660 + components: + - pos: -70.5,60.5 + parent: 1 + type: Transform + - uid: 14662 + components: + - pos: -67.5,62.5 + parent: 1 + type: Transform + - uid: 14664 + components: + - pos: -64.5,63.5 + parent: 1 + type: Transform + - uid: 14666 + components: + - pos: -64.5,65.5 + parent: 1 + type: Transform + - uid: 14667 + components: + - pos: -64.5,66.5 + parent: 1 + type: Transform + - uid: 14672 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,-13.5 + parent: 1 + type: Transform + - uid: 14673 + components: + - pos: -104.5,15.5 + parent: 1 + type: Transform + - uid: 14674 + components: + - pos: -103.5,15.5 + parent: 1 + type: Transform + - uid: 14676 + components: + - pos: -101.5,15.5 + parent: 1 + type: Transform + - uid: 14680 + components: + - pos: -94.5,15.5 + parent: 1 + type: Transform + - uid: 14681 + components: + - pos: -93.5,15.5 + parent: 1 + type: Transform + - uid: 14683 + components: + - pos: -91.5,15.5 + parent: 1 + type: Transform + - uid: 14684 + components: + - pos: -90.5,15.5 + parent: 1 + type: Transform + - uid: 14687 + components: + - pos: -85.5,14.5 + parent: 1 + type: Transform + - uid: 14688 + components: + - pos: -84.5,14.5 + parent: 1 + type: Transform + - uid: 14689 + components: + - pos: -83.5,14.5 + parent: 1 + type: Transform + - uid: 14691 + components: + - pos: -81.5,14.5 + parent: 1 + type: Transform + - uid: 14693 + components: + - pos: -78.5,13.5 + parent: 1 + type: Transform + - uid: 14695 + components: + - pos: -78.5,11.5 + parent: 1 + type: Transform + - uid: 14696 + components: + - pos: -78.5,10.5 + parent: 1 + type: Transform + - uid: 14698 + components: + - pos: -79.5,3.5 + parent: 1 + type: Transform + - uid: 14700 + components: + - pos: -79.5,4.5 + parent: 1 + type: Transform + - uid: 14702 + components: + - pos: -79.5,6.5 + parent: 1 + type: Transform + - uid: 14706 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,-13.5 + parent: 1 + type: Transform + - uid: 14707 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-13.5 + parent: 1 + type: Transform + - uid: 14714 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-17.5 + parent: 1 + type: Transform + - uid: 14716 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-17.5 + parent: 1 + type: Transform + - uid: 14717 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-17.5 + parent: 1 + type: Transform + - uid: 14718 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-17.5 + parent: 1 + type: Transform + - uid: 14720 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-17.5 + parent: 1 + type: Transform + - uid: 14722 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-18.5 + parent: 1 + type: Transform + - uid: 14723 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-18.5 + parent: 1 + type: Transform + - uid: 14724 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-18.5 + parent: 1 + type: Transform + - uid: 14726 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-18.5 + parent: 1 + type: Transform + - uid: 14727 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-14.5 + parent: 1 + type: Transform + - uid: 14729 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-16.5 + parent: 1 + type: Transform + - uid: 14731 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-18.5 + parent: 1 + type: Transform + - uid: 14732 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-18.5 + parent: 1 + type: Transform + - uid: 14734 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-20.5 + parent: 1 + type: Transform + - uid: 14735 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-21.5 + parent: 1 + type: Transform + - uid: 14737 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-22.5 + parent: 1 + type: Transform + - uid: 14738 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-24.5 + parent: 1 + type: Transform + - uid: 14741 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-26.5 + parent: 1 + type: Transform + - uid: 14742 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-28.5 + parent: 1 + type: Transform + - uid: 14743 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-26.5 + parent: 1 + type: Transform + - uid: 14745 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-26.5 + parent: 1 + type: Transform + - uid: 14747 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-26.5 + parent: 1 + type: Transform + - uid: 14750 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-26.5 + parent: 1 + type: Transform + - uid: 14752 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-28.5 + parent: 1 + type: Transform + - uid: 14753 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-29.5 + parent: 1 + type: Transform + - uid: 14755 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-29.5 + parent: 1 + type: Transform + - uid: 14757 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-29.5 + parent: 1 + type: Transform + - uid: 14758 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-11.5 + parent: 1 + type: Transform + - uid: 14759 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-26.5 + parent: 1 + type: Transform + - uid: 14760 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-25.5 + parent: 1 + type: Transform + - uid: 14763 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-22.5 + parent: 1 + type: Transform + - uid: 14765 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-20.5 + parent: 1 + type: Transform + - uid: 14766 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-19.5 + parent: 1 + type: Transform + - uid: 14768 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-17.5 + parent: 1 + type: Transform + - uid: 14769 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-16.5 + parent: 1 + type: Transform + - uid: 14771 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-14.5 + parent: 1 + type: Transform + - uid: 14774 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-11.5 + parent: 1 + type: Transform + - uid: 14776 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-11.5 + parent: 1 + type: Transform + - uid: 14777 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-11.5 + parent: 1 + type: Transform + - uid: 14780 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-0.5 + parent: 1 + type: Transform + - uid: 14783 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-3.5 + parent: 1 + type: Transform + - uid: 14784 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-4.5 + parent: 1 + type: Transform + - uid: 14787 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-7.5 + parent: 1 + type: Transform + - uid: 14788 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-8.5 + parent: 1 + type: Transform + - uid: 14789 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-9.5 + parent: 1 + type: Transform + - uid: 14791 + components: + - rot: 3.141592653589793 rad + pos: 14.5,55.5 + parent: 1 + type: Transform + - uid: 14792 + components: + - rot: 3.141592653589793 rad + pos: 15.5,55.5 + parent: 1 + type: Transform + - uid: 14794 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,54.5 + parent: 1 + type: Transform + - uid: 14796 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,53.5 + parent: 1 + type: Transform + - uid: 14797 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,55.5 + parent: 1 + type: Transform + - uid: 14799 + components: + - rot: 3.141592653589793 rad + pos: 21.5,46.5 + parent: 1 + type: Transform + - uid: 14800 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,55.5 + parent: 1 + type: Transform + - uid: 14801 + components: + - rot: 3.141592653589793 rad + pos: 23.5,46.5 + parent: 1 + type: Transform + - uid: 14802 + components: + - rot: 3.141592653589793 rad + pos: 24.5,46.5 + parent: 1 + type: Transform + - uid: 14804 + components: + - rot: 3.141592653589793 rad + pos: 26.5,44.5 + parent: 1 + type: Transform + - uid: 14805 + components: + - rot: 3.141592653589793 rad + pos: 26.5,43.5 + parent: 1 + type: Transform + - uid: 14806 + components: + - rot: 3.141592653589793 rad + pos: 26.5,42.5 + parent: 1 + type: Transform + - uid: 14808 + components: + - rot: 3.141592653589793 rad + pos: 26.5,40.5 + parent: 1 + type: Transform + - uid: 14809 + components: + - rot: 3.141592653589793 rad + pos: 26.5,37.5 + parent: 1 + type: Transform + - uid: 14810 + components: + - rot: 3.141592653589793 rad + pos: 26.5,36.5 + parent: 1 + type: Transform + - uid: 14812 + components: + - rot: 3.141592653589793 rad + pos: 26.5,34.5 + parent: 1 + type: Transform + - uid: 14813 + components: + - rot: 3.141592653589793 rad + pos: 26.5,33.5 + parent: 1 + type: Transform + - uid: 14815 + components: + - rot: 3.141592653589793 rad + pos: 26.5,31.5 + parent: 1 + type: Transform + - uid: 14831 + components: + - pos: 10.5,-15.5 + parent: 1 + type: Transform + - uid: 14833 + components: + - pos: 9.5,-15.5 + parent: 1 + type: Transform + - uid: 15011 + components: + - pos: 12.5,-13.5 + parent: 1 + type: Transform + - uid: 15147 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,51.5 + parent: 1 + type: Transform + - uid: 15148 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,50.5 + parent: 1 + type: Transform + - uid: 15149 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,49.5 + parent: 1 + type: Transform + - uid: 15154 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,53.5 + parent: 1 + type: Transform + - uid: 15155 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,53.5 + parent: 1 + type: Transform + - uid: 15156 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,53.5 + parent: 1 + type: Transform + - uid: 15157 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,52.5 + parent: 1 + type: Transform + - uid: 15158 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,51.5 + parent: 1 + type: Transform + - uid: 15159 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,50.5 + parent: 1 + type: Transform + - uid: 15160 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,49.5 + parent: 1 + type: Transform + - uid: 15161 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,48.5 + parent: 1 + type: Transform + - uid: 15350 + components: + - pos: 28.5,32.5 + parent: 1 + type: Transform + - uid: 15352 + components: + - pos: 30.5,32.5 + parent: 1 + type: Transform + - uid: 15353 + components: + - pos: 31.5,32.5 + parent: 1 + type: Transform + - uid: 15354 + components: + - pos: 32.5,32.5 + parent: 1 + type: Transform + - uid: 15355 + components: + - pos: 32.5,31.5 + parent: 1 + type: Transform + - uid: 15357 + components: + - pos: 32.5,29.5 + parent: 1 + type: Transform + - uid: 15358 + components: + - pos: 32.5,27.5 + parent: 1 + type: Transform + - uid: 15360 + components: + - pos: 32.5,25.5 + parent: 1 + type: Transform + - uid: 15362 + components: + - pos: 32.5,23.5 + parent: 1 + type: Transform + - uid: 15363 + components: + - pos: 32.5,22.5 + parent: 1 + type: Transform + - uid: 15386 + components: + - pos: -44.5,69.5 + parent: 1 + type: Transform + - uid: 15387 + components: + - pos: -43.5,69.5 + parent: 1 + type: Transform + - uid: 15388 + components: + - pos: -42.5,69.5 + parent: 1 + type: Transform + - uid: 15389 + components: + - pos: -41.5,69.5 + parent: 1 + type: Transform + - uid: 15390 + components: + - pos: -40.5,69.5 + parent: 1 + type: Transform + - uid: 15391 + components: + - pos: -39.5,69.5 + parent: 1 + type: Transform + - uid: 15392 + components: + - pos: -38.5,69.5 + parent: 1 + type: Transform + - uid: 15393 + components: + - pos: -37.5,69.5 + parent: 1 + type: Transform + - uid: 15394 + components: + - pos: -36.5,69.5 + parent: 1 + type: Transform + - uid: 15395 + components: + - pos: -36.5,68.5 + parent: 1 + type: Transform + - uid: 15396 + components: + - pos: -36.5,67.5 + parent: 1 + type: Transform + - uid: 15397 + components: + - pos: -36.5,66.5 + parent: 1 + type: Transform + - uid: 15398 + components: + - pos: -36.5,65.5 + parent: 1 + type: Transform + - uid: 15399 + components: + - pos: -36.5,64.5 + parent: 1 + type: Transform + - uid: 15400 + components: + - pos: -36.5,63.5 + parent: 1 + type: Transform + - uid: 15401 + components: + - pos: -36.5,62.5 + parent: 1 + type: Transform + - uid: 15402 + components: + - pos: -36.5,61.5 + parent: 1 + type: Transform + - uid: 15403 + components: + - pos: -36.5,60.5 + parent: 1 + type: Transform + - uid: 15404 + components: + - pos: -36.5,59.5 + parent: 1 + type: Transform + - uid: 15436 + components: + - rot: 3.141592653589793 rad + pos: -34.5,62.5 + parent: 1 + type: Transform + - uid: 15437 + components: + - rot: 3.141592653589793 rad + pos: -34.5,63.5 + parent: 1 + type: Transform + - uid: 15438 + components: + - rot: 3.141592653589793 rad + pos: -34.5,64.5 + parent: 1 + type: Transform + - uid: 15441 + components: + - rot: 3.141592653589793 rad + pos: -34.5,67.5 + parent: 1 + type: Transform + - uid: 15442 + components: + - rot: 3.141592653589793 rad + pos: -34.5,68.5 + parent: 1 + type: Transform + - uid: 15444 + components: + - rot: 3.141592653589793 rad + pos: -34.5,70.5 + parent: 1 + type: Transform + - uid: 15445 + components: + - rot: 3.141592653589793 rad + pos: -34.5,71.5 + parent: 1 + type: Transform + - uid: 15446 + components: + - rot: 3.141592653589793 rad + pos: -35.5,71.5 + parent: 1 + type: Transform + - uid: 15448 + components: + - rot: 3.141592653589793 rad + pos: -37.5,71.5 + parent: 1 + type: Transform + - uid: 15449 + components: + - rot: 3.141592653589793 rad + pos: -38.5,71.5 + parent: 1 + type: Transform + - uid: 15451 + components: + - rot: 3.141592653589793 rad + pos: -40.5,71.5 + parent: 1 + type: Transform + - uid: 15452 + components: + - rot: 3.141592653589793 rad + pos: -41.5,71.5 + parent: 1 + type: Transform + - uid: 15453 + components: + - rot: 3.141592653589793 rad + pos: -34.5,60.5 + parent: 1 + type: Transform + - uid: 15464 + components: + - pos: -42.5,57.5 + parent: 1 + type: Transform + - uid: 15465 + components: + - pos: -40.5,58.5 + parent: 1 + type: Transform + - uid: 15467 + components: + - pos: -37.5,57.5 + parent: 1 + type: Transform + - uid: 15475 + components: + - pos: -44.5,58.5 + parent: 1 + type: Transform + - uid: 15484 + components: + - pos: -38.5,59.5 + parent: 1 + type: Transform + - uid: 15510 + components: + - pos: -1.5,-22.5 + parent: 1 + type: Transform + - uid: 15513 + components: + - pos: -6.5,-22.5 + parent: 1 + type: Transform + - uid: 15514 + components: + - pos: -7.5,-21.5 + parent: 1 + type: Transform + - uid: 15515 + components: + - pos: -7.5,-19.5 + parent: 1 + type: Transform + - uid: 15528 + components: + - pos: -0.5,-22.5 + parent: 1 + type: Transform + - uid: 15529 + components: + - pos: -3.5,-22.5 + parent: 1 + type: Transform + - uid: 15530 + components: + - pos: -5.5,-22.5 + parent: 1 + type: Transform + - uid: 15531 + components: + - pos: -7.5,-22.5 + parent: 1 + type: Transform + - uid: 15533 + components: + - pos: 2.5,-22.5 + parent: 1 + type: Transform + - uid: 15534 + components: + - pos: 3.5,-22.5 + parent: 1 + type: Transform + - uid: 15536 + components: + - pos: 5.5,-22.5 + parent: 1 + type: Transform + - uid: 15537 + components: + - pos: 6.5,-22.5 + parent: 1 + type: Transform + - uid: 15538 + components: + - pos: 7.5,-22.5 + parent: 1 + type: Transform + - uid: 15540 + components: + - pos: 10.5,-22.5 + parent: 1 + type: Transform + - uid: 15541 + components: + - pos: 11.5,-22.5 + parent: 1 + type: Transform + - uid: 15543 + components: + - pos: 13.5,-22.5 + parent: 1 + type: Transform + - uid: 15544 + components: + - pos: 14.5,-22.5 + parent: 1 + type: Transform + - uid: 15545 + components: + - pos: 14.5,-21.5 + parent: 1 + type: Transform + - uid: 15938 + components: + - pos: 17.5,-11.5 + parent: 1 + type: Transform + - uid: 15948 + components: + - pos: -52.5,30.5 + parent: 1 + type: Transform + - uid: 15949 + components: + - pos: -53.5,30.5 + parent: 1 + type: Transform + - uid: 15950 + components: + - pos: -51.5,30.5 + parent: 1 + type: Transform + - uid: 15976 + components: + - rot: 3.141592653589793 rad + pos: -24.5,30.5 + parent: 1 + type: Transform +- proto: GrilleBroken + entities: + - uid: 1053 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,7.5 + parent: 1 + type: Transform + - uid: 1138 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,7.5 + parent: 1 + type: Transform + - uid: 3154 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,22.5 + parent: 1 + type: Transform + - uid: 3430 + components: + - pos: -35.5,17.5 + parent: 1 + type: Transform + - uid: 4127 + components: + - pos: -59.5,11.5 + parent: 1 + type: Transform + - uid: 4508 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,3.5 + parent: 1 + type: Transform + - uid: 4565 + components: + - rot: 3.141592653589793 rad + pos: 16.5,42.5 + parent: 1 + type: Transform + - uid: 4566 + components: + - pos: 16.5,42.5 + parent: 1 + type: Transform + - uid: 4705 + components: + - rot: 3.141592653589793 rad + pos: -59.5,13.5 + parent: 1 + type: Transform + - uid: 5319 + components: + - rot: -1.5707963267948966 rad + pos: -59.5,13.5 + parent: 1 + type: Transform + - uid: 5327 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,42.5 + parent: 1 + type: Transform + - uid: 5332 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,42.5 + parent: 1 + type: Transform + - uid: 6011 + components: + - rot: 3.141592653589793 rad + pos: -25.5,63.5 + parent: 1 + type: Transform + - uid: 6277 + components: + - pos: -18.5,70.5 + parent: 1 + type: Transform + - uid: 6672 + components: + - pos: -1.5,61.5 + parent: 1 + type: Transform + - uid: 6676 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,65.5 + parent: 1 + type: Transform + - uid: 7032 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,45.5 + parent: 1 + type: Transform + - uid: 7414 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,70.5 + parent: 1 + type: Transform + - uid: 7521 + components: + - pos: -14.5,37.5 + parent: 1 + type: Transform + - uid: 7522 + components: + - rot: 3.141592653589793 rad + pos: -14.5,40.5 + parent: 1 + type: Transform + - uid: 7524 + components: + - rot: 3.141592653589793 rad + pos: -14.5,42.5 + parent: 1 + type: Transform + - uid: 8068 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,65.5 + parent: 1 + type: Transform + - uid: 8287 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,70.5 + parent: 1 + type: Transform + - uid: 8288 + components: + - rot: 3.141592653589793 rad + pos: -8.5,67.5 + parent: 1 + type: Transform + - uid: 8974 + components: + - pos: 11.5,55.5 + parent: 1 + type: Transform + - uid: 8979 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,56.5 + parent: 1 + type: Transform + - uid: 8984 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,55.5 + parent: 1 + type: Transform + - uid: 8985 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,62.5 + parent: 1 + type: Transform + - uid: 8987 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,56.5 + parent: 1 + type: Transform + - uid: 8990 + components: + - pos: 2.5,56.5 + parent: 1 + type: Transform + - uid: 9031 + components: + - pos: -31.5,62.5 + parent: 1 + type: Transform + - uid: 9049 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,71.5 + parent: 1 + type: Transform + - uid: 9052 + components: + - rot: 3.141592653589793 rad + pos: -47.5,73.5 + parent: 1 + type: Transform + - uid: 9053 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,75.5 + parent: 1 + type: Transform + - uid: 9054 + components: + - pos: -47.5,78.5 + parent: 1 + type: Transform + - uid: 9056 + components: + - rot: 1.5707963267948966 rad + pos: -65.5,86.5 + parent: 1 + type: Transform + - uid: 9064 + components: + - pos: -65.5,88.5 + parent: 1 + type: Transform + - uid: 9078 + components: + - rot: -1.5707963267948966 rad + pos: -64.5,90.5 + parent: 1 + type: Transform + - uid: 9081 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,71.5 + parent: 1 + type: Transform + - uid: 9083 + components: + - pos: -43.5,71.5 + parent: 1 + type: Transform + - uid: 9084 + components: + - pos: -65.5,83.5 + parent: 1 + type: Transform + - uid: 9085 + components: + - pos: -55.5,76.5 + parent: 1 + type: Transform + - uid: 9093 + components: + - rot: 3.141592653589793 rad + pos: -58.5,68.5 + parent: 1 + type: Transform + - uid: 9098 + components: + - pos: -60.5,68.5 + parent: 1 + type: Transform + - uid: 9100 + components: + - rot: 1.5707963267948966 rad + pos: -63.5,68.5 + parent: 1 + type: Transform + - uid: 9902 + components: + - rot: 3.141592653589793 rad + pos: -59.5,24.5 + parent: 1 + type: Transform + - uid: 9979 + components: + - rot: 3.141592653589793 rad + pos: -59.5,11.5 + parent: 1 + type: Transform + - uid: 10411 + components: + - pos: 22.5,36.5 + parent: 1 + type: Transform + - uid: 10416 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,36.5 + parent: 1 + type: Transform + - uid: 10427 + components: + - rot: 3.141592653589793 rad + pos: 22.5,36.5 + parent: 1 + type: Transform + - uid: 10428 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,36.5 + parent: 1 + type: Transform + - uid: 14601 + components: + - pos: -107.5,23.5 + parent: 1 + type: Transform + - uid: 14604 + components: + - pos: -107.5,29.5 + parent: 1 + type: Transform + - uid: 14605 + components: + - pos: -107.5,26.5 + parent: 1 + type: Transform + - uid: 14607 + components: + - rot: 1.5707963267948966 rad + pos: -107.5,27.5 + parent: 1 + type: Transform + - uid: 14608 + components: + - pos: -99.5,35.5 + parent: 1 + type: Transform + - uid: 14609 + components: + - rot: -1.5707963267948966 rad + pos: -105.5,35.5 + parent: 1 + type: Transform + - uid: 14611 + components: + - rot: 1.5707963267948966 rad + pos: -110.5,34.5 + parent: 1 + type: Transform + - uid: 14615 + components: + - rot: 1.5707963267948966 rad + pos: -102.5,35.5 + parent: 1 + type: Transform + - uid: 14618 + components: + - rot: 3.141592653589793 rad + pos: -94.5,36.5 + parent: 1 + type: Transform + - uid: 14621 + components: + - rot: -1.5707963267948966 rad + pos: -96.5,35.5 + parent: 1 + type: Transform + - uid: 14623 + components: + - pos: -94.5,40.5 + parent: 1 + type: Transform + - uid: 14627 + components: + - rot: 3.141592653589793 rad + pos: -94.5,42.5 + parent: 1 + type: Transform + - uid: 14628 + components: + - rot: 1.5707963267948966 rad + pos: -82.5,57.5 + parent: 1 + type: Transform + - uid: 14629 + components: + - pos: -94.5,44.5 + parent: 1 + type: Transform + - uid: 14631 + components: + - rot: 1.5707963267948966 rad + pos: -86.5,14.5 + parent: 1 + type: Transform + - uid: 14634 + components: + - pos: -94.5,47.5 + parent: 1 + type: Transform + - uid: 14635 + components: + - rot: 1.5707963267948966 rad + pos: -93.5,49.5 + parent: 1 + type: Transform + - uid: 14637 + components: + - rot: -1.5707963267948966 rad + pos: -91.5,49.5 + parent: 1 + type: Transform + - uid: 14641 + components: + - rot: -1.5707963267948966 rad + pos: -87.5,49.5 + parent: 1 + type: Transform + - uid: 14644 + components: + - rot: -1.5707963267948966 rad + pos: -84.5,54.5 + parent: 1 + type: Transform + - uid: 14646 + components: + - pos: -86.5,54.5 + parent: 1 + type: Transform + - uid: 14652 + components: + - rot: -1.5707963267948966 rad + pos: -74.5,60.5 + parent: 1 + type: Transform + - uid: 14655 + components: + - pos: -76.5,60.5 + parent: 1 + type: Transform + - uid: 14657 + components: + - rot: 1.5707963267948966 rad + pos: -79.5,60.5 + parent: 1 + type: Transform + - uid: 14659 + components: + - rot: -1.5707963267948966 rad + pos: -69.5,60.5 + parent: 1 + type: Transform + - uid: 14661 + components: + - pos: -71.5,60.5 + parent: 1 + type: Transform + - uid: 14663 + components: + - rot: -1.5707963267948966 rad + pos: -66.5,62.5 + parent: 1 + type: Transform + - uid: 14665 + components: + - rot: 1.5707963267948966 rad + pos: -64.5,64.5 + parent: 1 + type: Transform + - uid: 14668 + components: + - rot: -1.5707963267948966 rad + pos: -79.5,57.5 + parent: 1 + type: Transform + - uid: 14669 + components: + - rot: -1.5707963267948966 rad + pos: -81.5,54.5 + parent: 1 + type: Transform + - uid: 14670 + components: + - pos: -108.5,34.5 + parent: 1 + type: Transform + - uid: 14671 + components: + - rot: 3.141592653589793 rad + pos: -87.5,50.5 + parent: 1 + type: Transform + - uid: 14677 + components: + - rot: 1.5707963267948966 rad + pos: -102.5,15.5 + parent: 1 + type: Transform + - uid: 14678 + components: + - rot: 1.5707963267948966 rad + pos: -105.5,15.5 + parent: 1 + type: Transform + - uid: 14679 + components: + - rot: -1.5707963267948966 rad + pos: -100.5,15.5 + parent: 1 + type: Transform + - uid: 14682 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-11.5 + parent: 1 + type: Transform + - uid: 14685 + components: + - rot: 1.5707963267948966 rad + pos: -95.5,15.5 + parent: 1 + type: Transform + - uid: 14686 + components: + - rot: -1.5707963267948966 rad + pos: -89.5,15.5 + parent: 1 + type: Transform + - uid: 14690 + components: + - rot: 1.5707963267948966 rad + pos: -92.5,15.5 + parent: 1 + type: Transform + - uid: 14692 + components: + - rot: 3.141592653589793 rad + pos: -82.5,14.5 + parent: 1 + type: Transform + - uid: 14694 + components: + - rot: 1.5707963267948966 rad + pos: -78.5,12.5 + parent: 1 + type: Transform + - uid: 14697 + components: + - rot: 3.141592653589793 rad + pos: -78.5,9.5 + parent: 1 + type: Transform + - uid: 14699 + components: + - rot: -1.5707963267948966 rad + pos: -80.5,14.5 + parent: 1 + type: Transform + - uid: 14701 + components: + - pos: -79.5,5.5 + parent: 1 + type: Transform + - uid: 14703 + components: + - rot: 1.5707963267948966 rad + pos: -79.5,7.5 + parent: 1 + type: Transform + - uid: 14709 + components: + - anchored: False + rot: 1.5707963267948966 rad + pos: -55.060143,-12.660082 + parent: 5005 + type: Transform + - bodyType: Dynamic + type: Physics + - uid: 14715 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-18.5 + parent: 1 + type: Transform + - uid: 14719 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-18.5 + parent: 1 + type: Transform + - uid: 14721 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-17.5 + parent: 1 + type: Transform + - uid: 14725 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-17.5 + parent: 1 + type: Transform + - uid: 14728 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-29.5 + parent: 1 + type: Transform + - uid: 14730 + components: + - pos: 26.5,-27.5 + parent: 1 + type: Transform + - uid: 14733 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-15.5 + parent: 1 + type: Transform + - uid: 14736 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-27.5 + parent: 1 + type: Transform + - uid: 14739 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-12.5 + parent: 1 + type: Transform + - uid: 14740 + components: + - pos: 30.5,-24.5 + parent: 1 + type: Transform + - uid: 14744 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-23.5 + parent: 1 + type: Transform + - uid: 14746 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-21.5 + parent: 1 + type: Transform + - uid: 14748 + components: + - pos: 17.5,-19.5 + parent: 1 + type: Transform + - uid: 14749 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-22.5 + parent: 1 + type: Transform + - uid: 14751 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-18.5 + parent: 1 + type: Transform + - uid: 14754 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-23.5 + parent: 1 + type: Transform + - uid: 14756 + components: + - pos: 30.5,-15.5 + parent: 1 + type: Transform + - uid: 14761 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-29.5 + parent: 1 + type: Transform + - uid: 14762 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-26.5 + parent: 1 + type: Transform + - uid: 14764 + components: + - pos: 30.5,-13.5 + parent: 1 + type: Transform + - uid: 14767 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-25.5 + parent: 1 + type: Transform + - uid: 14770 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-26.5 + parent: 1 + type: Transform + - uid: 14772 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-26.5 + parent: 1 + type: Transform + - uid: 14773 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-26.5 + parent: 1 + type: Transform + - uid: 14775 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-17.5 + parent: 1 + type: Transform + - uid: 14778 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-11.5 + parent: 1 + type: Transform + - uid: 14781 + components: + - pos: 32.5,-6.5 + parent: 1 + type: Transform + - uid: 14782 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-10.5 + parent: 1 + type: Transform + - uid: 14785 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-5.5 + parent: 1 + type: Transform + - uid: 14786 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-2.5 + parent: 1 + type: Transform + - uid: 14790 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-1.5 + parent: 1 + type: Transform + - uid: 14795 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,46.5 + parent: 1 + type: Transform + - uid: 14798 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,55.5 + parent: 1 + type: Transform + - uid: 14803 + components: + - pos: 26.5,45.5 + parent: 1 + type: Transform + - uid: 14807 + components: + - rot: 3.141592653589793 rad + pos: 26.5,41.5 + parent: 1 + type: Transform + - uid: 14811 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,35.5 + parent: 1 + type: Transform + - uid: 14814 + components: + - pos: 26.5,32.5 + parent: 1 + type: Transform + - uid: 15150 + components: + - rot: 3.141592653589793 rad + pos: 21.5,48.5 + parent: 1 + type: Transform + - uid: 15151 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,52.5 + parent: 1 + type: Transform + - uid: 15152 + components: + - pos: 21.5,55.5 + parent: 1 + type: Transform + - uid: 15153 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,55.5 + parent: 1 + type: Transform + - uid: 15351 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,32.5 + parent: 1 + type: Transform + - uid: 15356 + components: + - rot: 3.141592653589793 rad + pos: 32.5,30.5 + parent: 1 + type: Transform + - uid: 15359 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,26.5 + parent: 1 + type: Transform + - uid: 15361 + components: + - pos: 32.5,24.5 + parent: 1 + type: Transform + - uid: 15364 + components: + - rot: 3.141592653589793 rad + pos: 32.5,21.5 + parent: 1 + type: Transform + - uid: 15435 + components: + - pos: -34.5,61.5 + parent: 1 + type: Transform + - uid: 15439 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,65.5 + parent: 1 + type: Transform + - uid: 15440 + components: + - rot: 3.141592653589793 rad + pos: -34.5,66.5 + parent: 1 + type: Transform + - uid: 15443 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,69.5 + parent: 1 + type: Transform + - uid: 15447 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,71.5 + parent: 1 + type: Transform + - uid: 15450 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,71.5 + parent: 1 + type: Transform + - uid: 15504 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-22.5 + parent: 1 + type: Transform + - uid: 15511 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-22.5 + parent: 1 + type: Transform + - uid: 15512 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-22.5 + parent: 1 + type: Transform + - uid: 15532 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-20.5 + parent: 1 + type: Transform + - uid: 15539 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-22.5 + parent: 1 + type: Transform + - uid: 15542 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-22.5 + parent: 1 + type: Transform + - uid: 15546 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-20.5 + parent: 1 + type: Transform + - uid: 15851 + components: + - pos: 24.5,39.5 + parent: 1 + type: Transform +- proto: Handcuffs + entities: + - uid: 10917 + components: + - pos: -13.576752,65.56619 + parent: 1 + type: Transform +- proto: HandheldGPSBasic + entities: + - uid: 15784 + components: + - pos: -37.37278,-10.030424 + parent: 1 + type: Transform + - uid: 15785 + components: + - pos: -37.607155,-10.327299 + parent: 1 + type: Transform +- proto: HandheldHealthAnalyzer + entities: + - uid: 373 + components: + - pos: 5.543945,-11.373774 + parent: 1 + type: Transform +- proto: HarpInstrument + entities: + - uid: 6335 + components: + - pos: 15.5,52.5 + parent: 1 + type: Transform +- proto: HeadSkeleton + entities: + - uid: 6645 + components: + - flags: SessionSpecific + name: captain's skull + type: MetaData + - pos: -14.534092,66.507454 + parent: 1 + type: Transform + - baseSprintSpeed: 2.5 + type: MovementSpeedModifier + - type: GhostTakeoverAvailable + - type: MindContainer + - type: InputMover + - type: MobMover + - type: MovementAlwaysTouching + - type: CanEscapeInventory +- proto: HighSecArmoryLocked + entities: + - uid: 6682 + components: + - pos: -44.5,62.5 + parent: 1 + type: Transform + - uid: 7869 + components: + - pos: -44.5,64.5 + parent: 1 + type: Transform +- proto: HighSecCommandLocked + entities: + - uid: 2752 + components: + - pos: 26.5,4.5 + parent: 1 + type: Transform + - uid: 2970 + components: + - pos: 26.5,22.5 + parent: 1 + type: Transform + - uid: 6196 + components: + - pos: 10.5,41.5 + parent: 1 + type: Transform + - uid: 6396 + components: + - pos: -19.5,54.5 + parent: 1 + type: Transform +- proto: HospitalCurtainsOpen + entities: + - uid: 1404 + components: + - pos: 10.5,30.5 + parent: 1 + type: Transform + - uid: 1406 + components: + - pos: 11.5,30.5 + parent: 1 + type: Transform + - uid: 1407 + components: + - pos: 12.5,30.5 + parent: 1 + type: Transform + - uid: 1896 + components: + - pos: 7.5,30.5 + parent: 1 + type: Transform + - uid: 1897 + components: + - pos: 8.5,30.5 + parent: 1 + type: Transform + - uid: 1908 + components: + - pos: 9.5,30.5 + parent: 1 + type: Transform + - uid: 15349 + components: + - pos: -5.5,58.5 + parent: 1 + type: Transform +- proto: hydroponicsSoil + entities: + - uid: 7306 + components: + - pos: -62.5,83.5 + parent: 1 + type: Transform + - uid: 7311 + components: + - pos: -62.5,85.5 + parent: 1 + type: Transform + - uid: 7326 + components: + - pos: -62.5,84.5 + parent: 1 + type: Transform +- proto: HydroponicsToolClippers + entities: + - uid: 6951 + components: + - pos: -42.941048,47.547256 + parent: 1 + type: Transform +- proto: HydroponicsToolMiniHoe + entities: + - uid: 6939 + components: + - pos: -42.847298,47.547256 + parent: 1 + type: Transform + - uid: 7724 + components: + - pos: -60.46126,83.48959 + parent: 1 + type: Transform +- proto: HydroponicsToolSpade + entities: + - uid: 7725 + components: + - pos: -61.46126,88.67473 + parent: 1 + type: Transform +- proto: hydroponicsTray + entities: + - uid: 185 + components: + - pos: -41.5,52.5 + parent: 1 + type: Transform + - uid: 186 + components: + - pos: -42.5,52.5 + parent: 1 + type: Transform + - uid: 6860 + components: + - pos: -43.5,45.5 + parent: 1 + type: Transform + - uid: 6861 + components: + - pos: -43.5,44.5 + parent: 1 + type: Transform + - uid: 6862 + components: + - pos: -43.5,43.5 + parent: 1 + type: Transform + - uid: 6863 + components: + - pos: -42.5,45.5 + parent: 1 + type: Transform + - uid: 6864 + components: + - pos: -42.5,44.5 + parent: 1 + type: Transform + - uid: 6865 + components: + - pos: -42.5,43.5 + parent: 1 + type: Transform + - uid: 6866 + components: + - pos: -41.5,45.5 + parent: 1 + type: Transform + - uid: 6867 + components: + - pos: -41.5,44.5 + parent: 1 + type: Transform + - uid: 6868 + components: + - pos: -41.5,43.5 + parent: 1 + type: Transform + - uid: 6869 + components: + - pos: -44.5,41.5 + parent: 1 + type: Transform + - uid: 6870 + components: + - pos: -43.5,41.5 + parent: 1 + type: Transform + - uid: 6871 + components: + - pos: -42.5,41.5 + parent: 1 + type: Transform + - uid: 6872 + components: + - pos: -41.5,41.5 + parent: 1 + type: Transform +- proto: InflatableDoor + entities: + - uid: 290 + components: + - pos: -1.5,-6.5 + parent: 1 + type: Transform + - uid: 2252 + components: + - pos: -63.5,7.5 + parent: 1 + type: Transform + - uid: 2828 + components: + - pos: -27.5,28.5 + parent: 1 + type: Transform + - uid: 2967 + components: + - pos: 23.5,21.5 + parent: 1 + type: Transform + - uid: 2968 + components: + - pos: 22.5,21.5 + parent: 1 + type: Transform + - uid: 7945 + components: + - pos: -35.5,12.5 + parent: 1 + type: Transform +- proto: InflatableWall + entities: + - uid: 477 + components: + - pos: 5.5,-1.5 + parent: 1 + type: Transform + - uid: 681 + components: + - pos: 25.5,-2.5 + parent: 1 + type: Transform + - uid: 691 + components: + - pos: 21.5,-4.5 + parent: 1 + type: Transform + - uid: 692 + components: + - pos: 21.5,-5.5 + parent: 1 + type: Transform + - uid: 693 + components: + - pos: 23.5,0.5 + parent: 1 + type: Transform + - uid: 1000 + components: + - pos: 20.5,12.5 + parent: 1 + type: Transform + - uid: 1191 + components: + - pos: 15.5,16.5 + parent: 1 + type: Transform + - uid: 3044 + components: + - pos: -21.5,28.5 + parent: 1 + type: Transform + - uid: 3045 + components: + - pos: -21.5,29.5 + parent: 1 + type: Transform + - uid: 3117 + components: + - pos: -27.5,27.5 + parent: 1 + type: Transform + - uid: 3118 + components: + - pos: -32.5,30.5 + parent: 1 + type: Transform + - uid: 3144 + components: + - pos: -33.5,30.5 + parent: 1 + type: Transform + - uid: 3146 + components: + - pos: -34.5,14.5 + parent: 1 + type: Transform + - uid: 3164 + components: + - pos: -28.5,22.5 + parent: 1 + type: Transform + - uid: 4523 + components: + - pos: -55.5,-5.5 + parent: 1 + type: Transform + - uid: 4527 + components: + - pos: -50.5,0.5 + parent: 1 + type: Transform + - uid: 5177 + components: + - pos: -62.5,7.5 + parent: 1 + type: Transform + - uid: 5184 + components: + - pos: -65.5,7.5 + parent: 1 + type: Transform + - uid: 5185 + components: + - pos: -64.5,7.5 + parent: 1 + type: Transform + - uid: 7569 + components: + - pos: -35.5,11.5 + parent: 1 + type: Transform +- proto: InflatableWallStack1 + entities: + - uid: 335 + components: + - pos: -82.4705,30.370302 + parent: 1 + type: Transform + - uid: 7229 + components: + - pos: -82.4705,30.370302 + parent: 1 + type: Transform + - uid: 10734 + components: + - pos: -82.4705,30.370302 + parent: 1 + type: Transform +- proto: IngotGold + entities: + - uid: 10870 + components: + - pos: -20.428497,57.597878 + parent: 1 + type: Transform +- proto: IntercomAll + entities: + - uid: 8604 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,37.5 + parent: 1 + type: Transform + - uid: 8605 + components: + - rot: 3.141592653589793 rad + pos: -6.5,58.5 + parent: 1 + type: Transform +- proto: IntercomCommand + entities: + - uid: 8606 + components: + - rot: 3.141592653589793 rad + pos: -14.5,61.5 + parent: 1 + type: Transform + - uid: 8607 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,53.5 + parent: 1 + type: Transform + - uid: 8608 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,55.5 + parent: 1 + type: Transform +- proto: IntercomCommon + entities: + - uid: 4801 + components: + - rot: 3.141592653589793 rad + pos: -73.5,-12.5 + parent: 1 + type: Transform + - uid: 8609 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,48.5 + parent: 1 + type: Transform + - uid: 8610 + components: + - rot: 3.141592653589793 rad + pos: -8.5,26.5 + parent: 1 + type: Transform + - uid: 8611 + components: + - pos: -27.5,34.5 + parent: 1 + type: Transform + - uid: 8612 + components: + - rot: 3.141592653589793 rad + pos: -35.5,22.5 + parent: 1 + type: Transform + - uid: 8613 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,39.5 + parent: 1 + type: Transform + - uid: 8614 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,28.5 + parent: 1 + type: Transform + - uid: 8615 + components: + - rot: 3.141592653589793 rad + pos: -53.5,11.5 + parent: 1 + type: Transform + - uid: 8618 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,12.5 + parent: 1 + type: Transform + - uid: 8619 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,10.5 + parent: 1 + type: Transform + - uid: 8620 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,16.5 + parent: 1 + type: Transform + - uid: 8621 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 8622 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,1.5 + parent: 1 + type: Transform + - uid: 8623 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,15.5 + parent: 1 + type: Transform +- proto: IntercomEngineering + entities: + - uid: 14171 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,34.5 + parent: 1 + type: Transform + - uid: 14172 + components: + - rot: 1.5707963267948966 rad + pos: -68.5,26.5 + parent: 1 + type: Transform + - uid: 14173 + components: + - pos: -81.5,28.5 + parent: 1 + type: Transform + - uid: 14174 + components: + - rot: -1.5707963267948966 rad + pos: -75.5,32.5 + parent: 1 + type: Transform + - uid: 14175 + components: + - rot: 3.141592653589793 rad + pos: -65.5,18.5 + parent: 1 + type: Transform + - uid: 14176 + components: + - rot: -1.5707963267948966 rad + pos: -67.5,16.5 + parent: 1 + type: Transform + - uid: 14177 + components: + - rot: -1.5707963267948966 rad + pos: -72.5,29.5 + parent: 1 + type: Transform +- proto: IntercomMedical + entities: + - uid: 8629 + components: + - pos: -3.5,35.5 + parent: 1 + type: Transform + - uid: 8630 + components: + - rot: 3.141592653589793 rad + pos: 1.5,35.5 + parent: 1 + type: Transform + - uid: 8632 + components: + - rot: 3.141592653589793 rad + pos: 9.5,27.5 + parent: 1 + type: Transform + - uid: 8633 + components: + - rot: 3.141592653589793 rad + pos: 9.5,21.5 + parent: 1 + type: Transform + - uid: 8634 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,18.5 + parent: 1 + type: Transform + - uid: 8635 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,21.5 + parent: 1 + type: Transform + - uid: 15134 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,35.5 + parent: 1 + type: Transform +- proto: IntercomScience + entities: + - uid: 8624 + components: + - rot: 3.141592653589793 rad + pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 8625 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-3.5 + parent: 1 + type: Transform + - uid: 8626 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 8627 + components: + - pos: 0.5,-7.5 + parent: 1 + type: Transform + - uid: 8628 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-11.5 + parent: 1 + type: Transform +- proto: IntercomSecurity + entities: + - uid: 8643 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,51.5 + parent: 1 + type: Transform + - uid: 8644 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,58.5 + parent: 1 + type: Transform + - uid: 8645 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,64.5 + parent: 1 + type: Transform + - uid: 8646 + components: + - rot: 1.5707963267948966 rad + pos: -62.5,64.5 + parent: 1 + type: Transform + - uid: 8647 + components: + - rot: -1.5707963267948966 rad + pos: -58.5,51.5 + parent: 1 + type: Transform + - uid: 8649 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,85.5 + parent: 1 + type: Transform + - uid: 8650 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,57.5 + parent: 1 + type: Transform +- proto: IntercomService + entities: + - uid: 8639 + components: + - pos: -34.5,41.5 + parent: 1 + type: Transform + - uid: 8640 + components: + - pos: -28.5,48.5 + parent: 1 + type: Transform + - uid: 8641 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,45.5 + parent: 1 + type: Transform + - uid: 8642 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,51.5 + parent: 1 + type: Transform +- proto: IntercomSupply + entities: + - uid: 8636 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,2.5 + parent: 1 + type: Transform + - uid: 8637 + components: + - pos: -41.5,-8.5 + parent: 1 + type: Transform + - uid: 8638 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-8.5 + parent: 1 + type: Transform +- proto: JanitorialTrolley + entities: + - uid: 7100 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,37.5 + parent: 1 + type: Transform +- proto: KitchenKnife + entities: + - uid: 6953 + components: + - pos: -36.41309,45.528122 + parent: 1 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 6906 + components: + - pos: -33.5,42.5 + parent: 1 + type: Transform + - uid: 6907 + components: + - pos: -36.5,47.5 + parent: 1 + type: Transform + - uid: 7320 + components: + - pos: -61.5,89.5 + parent: 1 + type: Transform + - uid: 7944 + components: + - pos: -56.5,63.5 + parent: 1 + type: Transform +- proto: KitchenReagentGrinder + entities: + - uid: 1951 + components: + - pos: -4.5,24.5 + parent: 1 + type: Transform + - uid: 6908 + components: + - pos: -34.5,45.5 + parent: 1 + type: Transform + - uid: 7722 + components: + - pos: -58.5,89.5 + parent: 1 + type: Transform +- proto: KitchenSpike + entities: + - uid: 2304 + components: + - pos: -76.5,55.5 + parent: 1 + type: Transform + - uid: 6924 + components: + - pos: -27.5,46.5 + parent: 1 + type: Transform + - uid: 6925 + components: + - pos: -27.5,47.5 + parent: 1 + type: Transform +- proto: Lamp + entities: + - uid: 3199 + components: + - pos: -27.497456,17.876417 + parent: 1 + type: Transform + - uid: 3748 + components: + - pos: -45.525093,-7.0754695 + parent: 1 + type: Transform + - uid: 3750 + components: + - pos: -46.478218,0.9660685 + parent: 1 + type: Transform + - uid: 4559 + components: + - rot: 3.141592653589793 rad + pos: 18.546034,40.734077 + parent: 1 + type: Transform + - uid: 4560 + components: + - rot: 3.141592653589793 rad + pos: 23.577284,40.655952 + parent: 1 + type: Transform + - uid: 4569 + components: + - rot: 3.141592653589793 rad + pos: 17.514784,42.687202 + parent: 1 + type: Transform + - uid: 4708 + components: + - pos: -32.32265,-5.1474953 + parent: 1 + type: Transform + - uid: 7556 + components: + - pos: -22.548872,46.863678 + parent: 1 + type: Transform + - uid: 7940 + components: + - pos: -60.466248,63.997437 + parent: 1 + type: Transform + - uid: 10944 + components: + - pos: -60.49684,41.882523 + parent: 1 + type: Transform + - uid: 10945 + components: + - pos: -63.449966,40.007523 + parent: 1 + type: Transform + - uid: 12032 + components: + - pos: -31.488277,-3.1049178 + parent: 1 + type: Transform + - uid: 12783 + components: + - pos: 14.50122,31.915655 + parent: 1 + type: Transform + - uid: 14290 + components: + - pos: -71.492615,49.83911 + parent: 1 + type: Transform + - uid: 15788 + components: + - pos: -38.52308,-9.139799 + parent: 1 + type: Transform + - uid: 15797 + components: + - pos: -70.46455,15.962357 + parent: 1 + type: Transform +- proto: LampBanana + entities: + - uid: 4231 + components: + - pos: -40.489174,28.7831 + parent: 1 + type: Transform +- proto: LampGold + entities: + - uid: 2751 + components: + - pos: 21.502605,-1.9941196 + parent: 1 + type: Transform + - uid: 3197 + components: + - pos: -31.497456,9.898998 + parent: 1 + type: Transform + - uid: 3198 + components: + - pos: -24.497456,9.867748 + parent: 1 + type: Transform + - uid: 5510 + components: + - pos: -53.465157,-0.32265806 + parent: 1 + type: Transform + - uid: 5511 + components: + - pos: -54.496407,-5.055279 + parent: 1 + type: Transform + - uid: 7399 + components: + - pos: 9.4932995,46.83763 + parent: 1 + type: Transform +- proto: LandMineExplosive + entities: + - uid: 15456 + components: + - pos: -42.49931,68.53585 + parent: 1 + type: Transform + - uid: 15457 + components: + - pos: -37.49931,61.461067 + parent: 1 + type: Transform + - uid: 15488 + components: + - pos: -38.49931,64.50794 + parent: 1 + type: Transform + - uid: 15489 + components: + - pos: -37.483685,67.49232 + parent: 1 + type: Transform + - uid: 15490 + components: + - pos: -39.483685,68.52357 + parent: 1 + type: Transform +- proto: Lantern + entities: + - uid: 621 + components: + - pos: 19.562792,-8.525764 + parent: 1 + type: Transform + - containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 15037 + type: ContainerContainer +- proto: LargeBeaker + entities: + - uid: 1988 + components: + - pos: -0.2943699,22.171614 + parent: 1 + type: Transform +- proto: LauncherCreamPie + entities: + - uid: 4241 + components: + - pos: -42.484016,28.536114 + parent: 1 + type: Transform +- proto: LockerAtmosphericsFilledHardsuit + entities: + - uid: 137 + components: + - pos: -79.5,29.5 + parent: 1 + type: Transform + - uid: 143 + components: + - pos: -80.5,29.5 + parent: 1 + type: Transform + - uid: 580 + components: + - pos: -81.5,29.5 + parent: 1 + type: Transform +- proto: LockerBoozeFilled + entities: + - uid: 9732 + components: + - pos: -28.5,35.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 9733 + components: + - pos: -28.5,38.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerBotanistFilled + entities: + - uid: 5788 + components: + - pos: -39.5,52.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5794 + components: + - pos: -40.5,52.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerCaptainFilledHardsuit + entities: + - uid: 187 + components: + - pos: -9.5,61.5 + parent: 1 + type: Transform +- proto: LockerChemistryFilled + entities: + - uid: 1946 + components: + - pos: -2.5,19.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 1947 + components: + - pos: -1.5,19.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerChiefEngineerFilled + entities: + - uid: 10725 + components: + - pos: -68.5,15.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerChiefMedicalOfficerFilledHardsuit + entities: + - uid: 62 + components: + - pos: 14.5,32.5 + parent: 1 + type: Transform +- proto: LockerDetectiveFilled + entities: + - uid: 14281 + components: + - pos: -69.5,49.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerEngineerFilledHardsuit + entities: + - uid: 188 + components: + - pos: -67.5,31.5 + parent: 1 + type: Transform + - uid: 189 + components: + - pos: -67.5,30.5 + parent: 1 + type: Transform + - uid: 218 + components: + - pos: -67.5,29.5 + parent: 1 + type: Transform + - uid: 247 + components: + - pos: -67.5,28.5 + parent: 1 + type: Transform + - uid: 298 + components: + - pos: -67.5,27.5 + parent: 1 + type: Transform +- proto: LockerEvidence + entities: + - uid: 7425 + components: + - pos: -50.5,84.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 7433 + components: + - pos: -50.5,83.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 8013 + components: + - pos: -55.5,53.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 8651 + components: + - pos: -52.5,53.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerFreezer + entities: + - uid: 6929 + components: + - pos: -29.5,44.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 7536 + components: + - pos: -22.5,48.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerHeadOfSecurityFilled + entities: + - uid: 7934 + components: + - pos: -61.5,63.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerMedicalFilled + entities: + - uid: 2024 + components: + - pos: 6.5,26.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 2028 + components: + - pos: 7.5,26.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 2029 + components: + - pos: 8.5,26.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 2030 + components: + - pos: 9.5,26.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerQuarterMasterFilled + entities: + - uid: 3668 + components: + - pos: -43.5,-6.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerResearchDirectorFilled + entities: + - uid: 245 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 1.7459902 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3698 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerSalvageSpecialistFilledHardsuit + entities: + - uid: 299 + components: + - pos: -43.5,-13.5 + parent: 1 + type: Transform + - uid: 300 + components: + - pos: -42.5,-13.5 + parent: 1 + type: Transform + - uid: 301 + components: + - pos: -41.5,-13.5 + parent: 1 + type: Transform +- proto: LockerScienceFilled + entities: + - uid: 231 + components: + - pos: -6.5,-4.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 232 + components: + - pos: -6.5,-3.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 243 + components: + - pos: -8.5,-4.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 244 + components: + - pos: -8.5,-3.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerSecurityFilled + entities: + - uid: 1923 + components: + - pos: -63.5,55.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 1924 + components: + - pos: -65.5,55.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 1925 + components: + - pos: -62.5,55.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 7904 + components: + - pos: -64.5,55.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 7975 + components: + - pos: -57.5,58.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerWardenFilledHardsuit + entities: + - uid: 4163 + components: + - pos: -46.5,57.5 + parent: 1 + type: Transform +- proto: MachineAnomalyGenerator + entities: + - uid: 1859 + components: + - pos: -14.5,-11.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound +- proto: MachineAnomalyVessel + entities: + - uid: 587 + components: + - pos: -11.5,-10.5 + parent: 1 + type: Transform +- proto: MachineAPE + entities: + - uid: 312 + components: + - pos: -11.5,-13.5 + parent: 1 + type: Transform + - uid: 321 + components: + - pos: -11.5,-14.5 + parent: 1 + type: Transform +- proto: MachineArtifactAnalyzer + entities: + - uid: 347 + components: + - pos: 1.5,-14.5 + parent: 1 + type: Transform + - links: + - 341 + type: DeviceLinkSink +- proto: MachineFrame + entities: + - uid: 253 + components: + - pos: -5.5,0.5 + parent: 1 + type: Transform + - uid: 1356 + components: + - pos: 0.5,37.5 + parent: 1 + type: Transform + - uid: 1401 + components: + - pos: 0.5,39.5 + parent: 1 + type: Transform + - uid: 1940 + components: + - pos: -4.5,22.5 + parent: 1 + type: Transform + - uid: 1952 + components: + - pos: -4.5,23.5 + parent: 1 + type: Transform + - uid: 2041 + components: + - pos: 4.5,36.5 + parent: 1 + type: Transform + - uid: 9968 + components: + - pos: -84.5,26.5 + parent: 1 + type: Transform + - uid: 9969 + components: + - pos: -84.5,25.5 + parent: 1 + type: Transform + - uid: 9970 + components: + - pos: -84.5,24.5 + parent: 1 + type: Transform + - uid: 9971 + components: + - pos: -83.5,25.5 + parent: 1 + type: Transform + - uid: 9972 + components: + - pos: -82.5,25.5 + parent: 1 + type: Transform + - uid: 9973 + components: + - pos: -81.5,25.5 + parent: 1 + type: Transform + - uid: 13661 + components: + - pos: -12.5,-14.5 + parent: 1 + type: Transform +- proto: MachineParticleAcceleratorEmitterForeCircuitboard + entities: + - uid: 9961 + components: + - pos: -81.52008,22.452606 + parent: 1 + type: Transform +- proto: MachineParticleAcceleratorEmitterPortCircuitboard + entities: + - uid: 9964 + components: + - pos: -81.02008,22.515106 + parent: 1 + type: Transform +- proto: MachineParticleAcceleratorEmitterStarboardCircuitboard + entities: + - uid: 9962 + components: + - pos: -80.98883,22.780731 + parent: 1 + type: Transform +- proto: MachineParticleAcceleratorEndCapCircuitboard + entities: + - uid: 9965 + components: + - pos: -80.45758,22.765106 + parent: 1 + type: Transform +- proto: MachineParticleAcceleratorFuelChamberCircuitboard + entities: + - uid: 9966 + components: + - pos: -80.473206,22.483856 + parent: 1 + type: Transform +- proto: MachineParticleAcceleratorPowerBoxCircuitboard + entities: + - uid: 9967 + components: + - pos: -81.004456,22.608856 + parent: 1 + type: Transform +- proto: MagazinePistol + entities: + - uid: 8359 + components: + - pos: -42.709877,61.49391 + parent: 1 + type: Transform + - uid: 8364 + components: + - pos: -42.491127,61.49391 + parent: 1 + type: Transform + - uid: 8365 + components: + - pos: -42.631752,61.49391 + parent: 1 + type: Transform + - uid: 8372 + components: + - pos: -42.381752,61.49391 + parent: 1 + type: Transform + - uid: 8375 + components: + - pos: -42.288002,61.49391 + parent: 1 + type: Transform +- proto: MagazinePistolSubMachineGunTopMounted + entities: + - uid: 7938 + components: + - pos: -60.513123,64.48181 + parent: 1 + type: Transform + - uid: 7939 + components: + - pos: -60.513123,64.48181 + parent: 1 + type: Transform +- proto: MagazineRifle + entities: + - uid: 8360 + components: + - pos: -41.301014,62.60871 + parent: 1 + type: Transform + - uid: 8361 + components: + - pos: -41.363514,62.60871 + parent: 1 + type: Transform + - uid: 8362 + components: + - pos: -41.44164,62.60871 + parent: 1 + type: Transform + - uid: 8363 + components: + - pos: -41.56664,62.60871 + parent: 1 + type: Transform +- proto: MagazineRifleRubber + entities: + - uid: 8366 + components: + - pos: -41.301014,62.13996 + parent: 1 + type: Transform + - uid: 8367 + components: + - pos: -41.363514,62.13996 + parent: 1 + type: Transform + - uid: 8368 + components: + - pos: -41.47289,62.13996 + parent: 1 + type: Transform + - uid: 8369 + components: + - pos: -41.582264,62.13996 + parent: 1 + type: Transform +- proto: MailingUnitElectronics + entities: + - uid: 5543 + components: + - pos: -54.399563,27.347925 + parent: 1 + type: Transform + - uid: 5544 + components: + - pos: -54.524563,27.55105 + parent: 1 + type: Transform +- proto: MaintenanceFluffSpawner + entities: + - uid: 257 + components: + - pos: -13.5,-7.5 + parent: 1 + type: Transform + - uid: 2956 + components: + - pos: 28.5,-4.5 + parent: 1 + type: Transform + - uid: 2957 + components: + - pos: 29.5,-4.5 + parent: 1 + type: Transform + - uid: 2963 + components: + - pos: 7.5,-4.5 + parent: 1 + type: Transform + - uid: 5435 + components: + - pos: -18.5,0.5 + parent: 1 + type: Transform + - uid: 5447 + components: + - pos: -17.5,-7.5 + parent: 1 + type: Transform + - uid: 5594 + components: + - pos: -31.5,12.5 + parent: 1 + type: Transform + - uid: 5612 + components: + - pos: -45.5,25.5 + parent: 1 + type: Transform + - uid: 5622 + components: + - pos: -46.5,15.5 + parent: 1 + type: Transform + - uid: 5623 + components: + - pos: -47.5,15.5 + parent: 1 + type: Transform + - uid: 5624 + components: + - pos: -41.5,13.5 + parent: 1 + type: Transform + - uid: 5745 + components: + - pos: -34.5,13.5 + parent: 1 + type: Transform + - uid: 5747 + components: + - pos: -20.5,14.5 + parent: 1 + type: Transform + - uid: 5791 + components: + - pos: -7.5,22.5 + parent: 1 + type: Transform + - uid: 5792 + components: + - pos: -3.5,14.5 + parent: 1 + type: Transform + - uid: 5797 + components: + - pos: -14.5,10.5 + parent: 1 + type: Transform + - uid: 5798 + components: + - pos: -14.5,13.5 + parent: 1 + type: Transform + - uid: 5799 + components: + - pos: -10.5,14.5 + parent: 1 + type: Transform + - uid: 10375 + components: + - pos: -28.5,49.5 + parent: 1 + type: Transform + - uid: 10401 + components: + - pos: -3.5,42.5 + parent: 1 + type: Transform + - uid: 10402 + components: + - pos: -3.5,43.5 + parent: 1 + type: Transform + - uid: 10406 + components: + - pos: 22.5,28.5 + parent: 1 + type: Transform + - uid: 10463 + components: + - pos: -27.5,40.5 + parent: 1 + type: Transform + - uid: 12910 + components: + - pos: 6.5,8.5 + parent: 1 + type: Transform + - uid: 12911 + components: + - pos: 12.5,8.5 + parent: 1 + type: Transform + - uid: 13840 + components: + - pos: -42.5,54.5 + parent: 1 + type: Transform + - uid: 14321 + components: + - pos: -66.5,41.5 + parent: 1 + type: Transform + - uid: 14322 + components: + - pos: -66.5,43.5 + parent: 1 + type: Transform + - uid: 14326 + components: + - pos: -73.5,51.5 + parent: 1 + type: Transform + - uid: 14327 + components: + - pos: -71.5,51.5 + parent: 1 + type: Transform + - uid: 14328 + components: + - pos: -75.5,37.5 + parent: 1 + type: Transform + - uid: 14409 + components: + - pos: -69.5,26.5 + parent: 1 + type: Transform + - uid: 14593 + components: + - pos: -67.5,10.5 + parent: 1 + type: Transform + - uid: 14599 + components: + - pos: -61.5,24.5 + parent: 1 + type: Transform + - uid: 14600 + components: + - pos: -61.5,26.5 + parent: 1 + type: Transform +- proto: MaintenancePlantSpawner + entities: + - uid: 9010 + components: + - pos: -21.5,0.5 + parent: 1 + type: Transform + - uid: 9013 + components: + - pos: -66.5,50.5 + parent: 1 + type: Transform + - uid: 9014 + components: + - pos: 8.5,39.5 + parent: 1 + type: Transform + - uid: 9016 + components: + - pos: 29.5,-5.5 + parent: 1 + type: Transform +- proto: MaintenanceToolSpawner + entities: + - uid: 2072 + components: + - pos: -3.5,15.5 + parent: 1 + type: Transform + - uid: 2955 + components: + - pos: 27.5,-4.5 + parent: 1 + type: Transform + - uid: 2962 + components: + - pos: 6.5,-4.5 + parent: 1 + type: Transform + - uid: 3318 + components: + - rot: 3.141592653589793 rad + pos: -18.5,16.5 + parent: 1 + type: Transform + - uid: 4199 + components: + - pos: -8.5,12.5 + parent: 1 + type: Transform + - uid: 5431 + components: + - pos: -29.5,-2.5 + parent: 1 + type: Transform + - uid: 5434 + components: + - pos: -18.5,-7.5 + parent: 1 + type: Transform + - uid: 5436 + components: + - pos: -19.5,0.5 + parent: 1 + type: Transform + - uid: 5441 + components: + - pos: -23.5,-3.5 + parent: 1 + type: Transform + - uid: 5503 + components: + - pos: -51.5,2.5 + parent: 1 + type: Transform + - uid: 5506 + components: + - pos: -52.5,-5.5 + parent: 1 + type: Transform + - uid: 5522 + components: + - pos: -47.5,-8.5 + parent: 1 + type: Transform + - uid: 5560 + components: + - pos: -40.5,18.5 + parent: 1 + type: Transform + - uid: 5561 + components: + - pos: -40.5,17.5 + parent: 1 + type: Transform + - uid: 5619 + components: + - pos: -40.5,13.5 + parent: 1 + type: Transform + - uid: 5620 + components: + - pos: -43.5,13.5 + parent: 1 + type: Transform + - uid: 5626 + components: + - pos: -45.5,23.5 + parent: 1 + type: Transform + - uid: 5737 + components: + - pos: -20.5,29.5 + parent: 1 + type: Transform + - uid: 5748 + components: + - pos: -20.5,13.5 + parent: 1 + type: Transform + - uid: 5795 + components: + - pos: -10.5,12.5 + parent: 1 + type: Transform + - uid: 5796 + components: + - pos: -14.5,8.5 + parent: 1 + type: Transform + - uid: 6226 + components: + - pos: 18.5,45.5 + parent: 1 + type: Transform + - uid: 7520 + components: + - pos: -29.5,55.5 + parent: 1 + type: Transform + - uid: 10374 + components: + - pos: -29.5,49.5 + parent: 1 + type: Transform + - uid: 10390 + components: + - pos: -1.5,45.5 + parent: 1 + type: Transform + - uid: 10392 + components: + - pos: 6.5,48.5 + parent: 1 + type: Transform + - uid: 10409 + components: + - pos: 22.5,27.5 + parent: 1 + type: Transform + - uid: 10801 + components: + - pos: -8.5,46.5 + parent: 1 + type: Transform + - uid: 12907 + components: + - pos: 4.5,8.5 + parent: 1 + type: Transform + - uid: 12908 + components: + - pos: 13.5,8.5 + parent: 1 + type: Transform + - uid: 13839 + components: + - pos: -43.5,54.5 + parent: 1 + type: Transform + - uid: 14320 + components: + - pos: -66.5,42.5 + parent: 1 + type: Transform + - uid: 14323 + components: + - pos: -63.5,48.5 + parent: 1 + type: Transform + - uid: 14324 + components: + - pos: -72.5,51.5 + parent: 1 + type: Transform + - uid: 14329 + components: + - pos: -61.5,35.5 + parent: 1 + type: Transform + - uid: 14594 + components: + - pos: -67.5,11.5 + parent: 1 + type: Transform + - uid: 14595 + components: + - pos: -67.5,13.5 + parent: 1 + type: Transform + - uid: 14597 + components: + - pos: -60.5,20.5 + parent: 1 + type: Transform + - uid: 14598 + components: + - pos: -61.5,25.5 + parent: 1 + type: Transform + - uid: 15928 + components: + - pos: 18.5,40.5 + parent: 1 + type: Transform + - uid: 15929 + components: + - pos: 23.5,40.5 + parent: 1 + type: Transform + - uid: 15930 + components: + - pos: 23.5,38.5 + parent: 1 + type: Transform +- proto: MaintenanceWeaponSpawner + entities: + - uid: 919 + components: + - pos: 29.5,-0.5 + parent: 1 + type: Transform + - uid: 2060 + components: + - pos: -0.5,42.5 + parent: 1 + type: Transform + - uid: 2789 + components: + - pos: -25.5,55.5 + parent: 1 + type: Transform + - uid: 2882 + components: + - pos: -8.5,11.5 + parent: 1 + type: Transform + - uid: 5430 + components: + - pos: -27.5,-4.5 + parent: 1 + type: Transform + - uid: 5558 + components: + - pos: -47.5,17.5 + parent: 1 + type: Transform + - uid: 5746 + components: + - pos: -30.5,12.5 + parent: 1 + type: Transform + - uid: 5752 + components: + - pos: -22.5,20.5 + parent: 1 + type: Transform + - uid: 5793 + components: + - pos: -7.5,23.5 + parent: 1 + type: Transform + - uid: 10373 + components: + - pos: -27.5,49.5 + parent: 1 + type: Transform + - uid: 10400 + components: + - pos: -3.5,41.5 + parent: 1 + type: Transform + - uid: 10407 + components: + - pos: 22.5,29.5 + parent: 1 + type: Transform + - uid: 12909 + components: + - pos: 5.5,8.5 + parent: 1 + type: Transform + - uid: 14319 + components: + - pos: -74.5,46.5 + parent: 1 + type: Transform + - uid: 14325 + components: + - pos: -69.5,51.5 + parent: 1 + type: Transform + - uid: 14596 + components: + - pos: -60.5,19.5 + parent: 1 + type: Transform + - uid: 15073 + components: + - pos: -20.5,17.5 + parent: 1 + type: Transform + - uid: 15561 + components: + - pos: 6.5,-16.5 + parent: 1 + type: Transform + - uid: 15562 + components: + - pos: 9.5,-16.5 + parent: 1 + type: Transform + - uid: 15842 + components: + - pos: -25.5,53.5 + parent: 1 + type: Transform + - uid: 15843 + components: + - pos: -29.5,54.5 + parent: 1 + type: Transform + - uid: 15911 + components: + - pos: -47.5,17.5 + parent: 1 + type: Transform + - uid: 15926 + components: + - pos: 17.5,42.5 + parent: 1 + type: Transform + - uid: 15927 + components: + - pos: 23.5,42.5 + parent: 1 + type: Transform +- proto: MaterialCloth + entities: + - uid: 7577 + components: + - pos: -19.514711,41.515976 + parent: 1 + type: Transform +- proto: MaterialHideBear + entities: + - uid: 14939 + components: + - pos: 4.5405226,-14.581865 + parent: 1 + type: Transform +- proto: MaterialReclaimer + entities: + - uid: 15799 + components: + - pos: -37.5,-12.5 + parent: 1 + type: Transform +- proto: MaterialWoodPlank + entities: + - uid: 15937 + components: + - pos: 19.58975,42.76493 + parent: 1 + type: Transform +- proto: MedkitAdvancedFilled + entities: + - uid: 2319 + components: + - pos: 10.517079,26.601435 + parent: 1 + type: Transform +- proto: MedkitBruteFilled + entities: + - uid: 14852 + components: + - pos: 6.488601,22.996218 + parent: 1 + type: Transform +- proto: MedkitBurnFilled + entities: + - uid: 2317 + components: + - pos: 8.532704,22.570185 + parent: 1 + type: Transform +- proto: MedkitCombatFilled + entities: + - uid: 7518 + components: + - pos: -25.498947,54.62378 + parent: 1 + type: Transform +- proto: MedkitFilled + entities: + - uid: 1989 + components: + - pos: -1.4897182,32.72799 + parent: 1 + type: Transform + - uid: 2313 + components: + - pos: 6.532705,22.632685 + parent: 1 + type: Transform + - uid: 10915 + components: + - pos: -20.50132,63.5821 + parent: 1 + type: Transform +- proto: MedkitOxygenFilled + entities: + - uid: 2315 + components: + - pos: 7.876455,22.58581 + parent: 1 + type: Transform + - uid: 10921 + components: + - pos: -11.50255,62.54268 + parent: 1 + type: Transform +- proto: MedkitRadiationFilled + entities: + - uid: 2314 + components: + - pos: 7.20458,22.58581 + parent: 1 + type: Transform +- proto: MedkitToxinFilled + entities: + - uid: 2316 + components: + - pos: 6.48583,23.46081 + parent: 1 + type: Transform +- proto: MetalDoor + entities: + - uid: 1663 + components: + - pos: 17.5,-10.5 + parent: 1 + type: Transform +- proto: MicroManipulatorStockPart + entities: + - uid: 260 + components: + - pos: -10.438767,-5.4789715 + parent: 1 + type: Transform +- proto: Mirror + entities: + - uid: 4076 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,0.5 + parent: 1 + type: Transform + - uid: 4077 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,1.5 + parent: 1 + type: Transform + - uid: 4078 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-0.5 + parent: 1 + type: Transform + - uid: 7089 + components: + - pos: -51.5,42.5 + parent: 1 + type: Transform +- proto: MonkeyCubeBox + entities: + - uid: 371 + components: + - pos: 4.52832,-11.326899 + parent: 1 + type: Transform +- proto: MopBucket + entities: + - uid: 5302 + components: + - pos: -54.5,23.5 + parent: 1 + type: Transform + - uid: 7098 + components: + - pos: -51.5,38.5 + parent: 1 + type: Transform +- proto: MopItem + entities: + - uid: 5303 + components: + - pos: -54.5,23.5 + parent: 1 + type: Transform + - uid: 7099 + components: + - pos: -51.5,38.5 + parent: 1 + type: Transform +- proto: Morgue + entities: + - uid: 1063 + components: + - rot: 3.141592653589793 rad + pos: 1.5,14.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 1143 + components: + - pos: -0.5,17.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 1156 + components: + - rot: 3.141592653589793 rad + pos: 0.5,14.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 1157 + components: + - rot: 3.141592653589793 rad + pos: -0.5,14.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 1246 + components: + - pos: 0.5,17.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 1413 + components: + - pos: 2.5,17.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 1614 + components: + - pos: 1.5,17.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 1616 + components: + - rot: 3.141592653589793 rad + pos: -1.5,14.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 1622 + components: + - rot: 3.141592653589793 rad + pos: 2.5,14.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 1829 + components: + - pos: 19.5,2.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: MouseTimedSpawner + entities: + - uid: 14186 + components: + - pos: 9.5,9.5 + parent: 1 + type: Transform + - uid: 14187 + components: + - pos: 7.5,46.5 + parent: 1 + type: Transform + - uid: 14188 + components: + - pos: -44.5,14.5 + parent: 1 + type: Transform + - uid: 14937 + components: + - pos: -74.5,45.5 + parent: 1 + type: Transform + - uid: 15048 + components: + - pos: -66.5,8.5 + parent: 1 + type: Transform +- proto: Multitool + entities: + - uid: 374 + components: + - pos: 2.4814448,-11.369194 + parent: 1 + type: Transform + - uid: 5647 + components: + - pos: -24.502523,29.558752 + parent: 1 + type: Transform +- proto: NitrogenCanister + entities: + - uid: 333 + components: + - pos: -76.5,29.5 + parent: 1 + type: Transform + - uid: 5470 + components: + - pos: -48.5,17.5 + parent: 1 + type: Transform + - uid: 5591 + components: + - pos: -3.5,36.5 + parent: 1 + type: Transform + - uid: 5675 + components: + - pos: -25.5,20.5 + parent: 1 + type: Transform + - uid: 7202 + components: + - pos: -77.5,29.5 + parent: 1 + type: Transform + - uid: 8930 + components: + - pos: 5.5,-4.5 + parent: 1 + type: Transform + - uid: 9468 + components: + - pos: 22.5,24.5 + parent: 1 + type: Transform + - uid: 10094 + components: + - pos: 14.5,42.5 + parent: 1 + type: Transform + - uid: 10099 + components: + - pos: -41.5,54.5 + parent: 1 + type: Transform + - uid: 12894 + components: + - pos: 14.5,14.5 + parent: 1 + type: Transform + - uid: 14334 + components: + - pos: -75.5,41.5 + parent: 1 + type: Transform + - uid: 14578 + components: + - pos: -60.5,17.5 + parent: 1 + type: Transform +- proto: NitrogenTank + entities: + - uid: 14199 + components: + - pos: -77.535675,42.554688 + parent: 1 + type: Transform +- proto: NuclearBomb + entities: + - uid: 10854 + components: + - pos: -23.5,56.5 + parent: 1 + type: Transform +- proto: NuclearBombKeg + entities: + - uid: 6316 + components: + - pos: 10.5,43.5 + parent: 1 + type: Transform +- proto: NukeDiskFake + entities: + - uid: 6318 + components: + - desc: A crude replication of a real nuclear authentication disk. You could tell this thing was fake from a mile away. + name: flimsy nuclear authentication disk + type: MetaData + - pos: 12.55704,43.506477 + parent: 1 + type: Transform +- proto: Ointment + entities: + - uid: 1992 + components: + - pos: 0.44623998,32.749245 + parent: 1 + type: Transform + - uid: 1993 + components: + - pos: -0.053760022,32.561745 + parent: 1 + type: Transform + - uid: 1994 + components: + - pos: -0.67876005,32.63987 + parent: 1 + type: Transform + - uid: 2379 + components: + - pos: 9.117954,33.567314 + parent: 1 + type: Transform + - uid: 2380 + components: + - pos: 9.508579,33.64544 + parent: 1 + type: Transform + - uid: 2381 + components: + - pos: 9.930454,33.52044 + parent: 1 + type: Transform +- proto: OperatingTable + entities: + - uid: 12771 + components: + - pos: 19.5,30.5 + parent: 1 + type: Transform +- proto: OreProcessor + entities: + - uid: 3530 + components: + - pos: -34.5,-1.5 + parent: 1 + type: Transform +- proto: OreProcessorMachineCircuitboard + entities: + - uid: 5553 + components: + - pos: -49.433533,23.561655 + parent: 1 + type: Transform +- proto: OrganHumanBrain + entities: + - uid: 9284 + components: + - pos: 20.599104,32.811195 + parent: 1 + type: Transform +- proto: OrganHumanEyes + entities: + - uid: 9285 + components: + - pos: 19.520979,30.326818 + parent: 1 + type: Transform +- proto: OrganHumanHeart + entities: + - uid: 5800 + components: + - pos: -9.314642,21.506338 + parent: 1 + type: Transform + - uid: 9241 + components: + - pos: 18.986782,28.61476 + parent: 1 + type: Transform +- proto: OrganHumanKidneys + entities: + - uid: 9286 + components: + - pos: 20.630354,32.467445 + parent: 1 + type: Transform +- proto: OrganHumanLiver + entities: + - uid: 9287 + components: + - pos: 20.286604,32.561195 + parent: 1 + type: Transform +- proto: OrganHumanTongue + entities: + - uid: 9283 + components: + - pos: 18.880354,28.451818 + parent: 1 + type: Transform +- proto: OxygenCanister + entities: + - uid: 5656 + components: + - pos: -4.5,36.5 + parent: 1 + type: Transform + - uid: 5670 + components: + - pos: -26.5,20.5 + parent: 1 + type: Transform + - uid: 6069 + components: + - pos: -76.5,30.5 + parent: 1 + type: Transform + - uid: 6071 + components: + - pos: -11.5,46.5 + parent: 1 + type: Transform + - uid: 6968 + components: + - pos: -32.5,57.5 + parent: 1 + type: Transform + - uid: 7193 + components: + - pos: -77.5,30.5 + parent: 1 + type: Transform + - uid: 9266 + components: + - pos: 18.5,-4.5 + parent: 1 + type: Transform + - uid: 9378 + components: + - pos: 22.5,23.5 + parent: 1 + type: Transform + - uid: 10092 + components: + - pos: 14.5,41.5 + parent: 1 + type: Transform + - uid: 10093 + components: + - pos: -48.5,18.5 + parent: 1 + type: Transform + - uid: 10129 + components: + - pos: -40.5,54.5 + parent: 1 + type: Transform + - uid: 12893 + components: + - pos: 14.5,13.5 + parent: 1 + type: Transform + - uid: 14170 + components: + - pos: -77.5,49.5 + parent: 1 + type: Transform + - uid: 14333 + components: + - pos: -75.5,40.5 + parent: 1 + type: Transform + - uid: 14577 + components: + - pos: -60.5,16.5 + parent: 1 + type: Transform + - uid: 15800 + components: + - pos: -49.5,-12.5 + parent: 1 + type: Transform +- proto: PaintingAmogusTriptych + entities: + - uid: 6326 + components: + - pos: 3.5,53.5 + parent: 1 + type: Transform +- proto: PaintingEmpty + entities: + - uid: 6327 + components: + - pos: 2.5,53.5 + parent: 1 + type: Transform +- proto: PaintingSkeletonBoof + entities: + - uid: 6328 + components: + - pos: 4.5,53.5 + parent: 1 + type: Transform +- proto: Paper + entities: + - uid: 304 + components: + - pos: -0.48525378,-4.0916176 + parent: 1 + type: Transform + - uid: 305 + components: + - pos: -0.39150378,-4.0916176 + parent: 1 + type: Transform + - uid: 306 + components: + - pos: -0.32900378,-4.0916176 + parent: 1 + type: Transform + - uid: 307 + components: + - pos: -0.5790038,-4.0916176 + parent: 1 + type: Transform + - uid: 308 + components: + - pos: -0.6571288,-4.0916176 + parent: 1 + type: Transform + - uid: 2402 + components: + - name: hastily scribbled note + type: MetaData + - pos: 10.220547,33.42669 + parent: 1 + type: Transform + - content: > + <100K + + 101.3kPa + + filter co2/n20 + type: Paper + - uid: 4221 + components: + - pos: -42.30462,24.611063 + parent: 1 + type: Transform + - uid: 4222 + components: + - pos: -42.46087,24.611063 + parent: 1 + type: Transform + - uid: 4223 + components: + - pos: -42.58587,24.564188 + parent: 1 + type: Transform + - uid: 4224 + components: + - pos: -42.632744,24.548563 + parent: 1 + type: Transform + - uid: 4225 + components: + - pos: -42.64837,24.517313 + parent: 1 + type: Transform + - uid: 4226 + components: + - pos: -42.476494,24.564188 + parent: 1 + type: Transform + - uid: 4227 + components: + - pos: -42.382744,24.579813 + parent: 1 + type: Transform + - uid: 4228 + components: + - pos: -42.49212,24.579813 + parent: 1 + type: Transform + - uid: 4229 + components: + - pos: -42.67962,24.501688 + parent: 1 + type: Transform + - uid: 7221 + components: + - pos: -3.6578722,0.5394765 + parent: 1 + type: Transform + - uid: 7222 + components: + - pos: -3.5953722,0.5394765 + parent: 1 + type: Transform + - uid: 7223 + components: + - pos: -3.5328722,0.5394765 + parent: 1 + type: Transform + - uid: 7292 + components: + - pos: -60.664387,89.61223 + parent: 1 + type: Transform + - uid: 7297 + components: + - pos: -60.27376,89.67473 + parent: 1 + type: Transform + - uid: 7309 + components: + - pos: -60.601887,89.58098 + parent: 1 + type: Transform + - uid: 7710 + components: + - pos: -60.74251,89.67473 + parent: 1 + type: Transform + - uid: 7726 + components: + - pos: -60.414387,89.61223 + parent: 1 + type: Transform + - uid: 7919 + components: + - pos: -3.4703722,0.5238515 + parent: 1 + type: Transform +- proto: PaperCaptainsThoughts + entities: + - uid: 10908 + components: + - pos: -7.0289607,61.72577 + parent: 1 + type: Transform + - uid: 10909 + components: + - pos: -7.2008357,61.74714 + parent: 1 + type: Transform + - uid: 10910 + components: + - pos: -7.2320857,61.62214 + parent: 1 + type: Transform + - uid: 10911 + components: + - pos: -7.2164607,61.59089 + parent: 1 + type: Transform + - uid: 10912 + components: + - pos: -7.0602107,61.575264 + parent: 1 + type: Transform + - uid: 10913 + components: + - pos: -7.0602107,61.575264 + parent: 1 + type: Transform +- proto: PaperDoor + entities: + - uid: 4710 + components: + - rot: 3.141592653589793 rad + pos: -50.5,11.5 + parent: 1 + type: Transform + - uid: 5459 + components: + - rot: 3.141592653589793 rad + pos: -53.5,10.5 + parent: 1 + type: Transform + - uid: 6255 + components: + - rot: 3.141592653589793 rad + pos: -53.5,8.5 + parent: 1 + type: Transform + - uid: 6668 + components: + - rot: 3.141592653589793 rad + pos: -50.5,7.5 + parent: 1 + type: Transform + - uid: 10445 + components: + - rot: 3.141592653589793 rad + pos: -47.5,11.5 + parent: 1 + type: Transform +- proto: PaperOffice + entities: + - uid: 2321 + components: + - pos: 10.666427,26.233912 + parent: 1 + type: Transform + - uid: 2322 + components: + - pos: 10.338302,26.233912 + parent: 1 + type: Transform + - uid: 2323 + components: + - pos: 10.275802,26.218287 + parent: 1 + type: Transform + - uid: 2324 + components: + - pos: 10.463302,26.218287 + parent: 1 + type: Transform + - uid: 2325 + components: + - pos: 10.494552,26.218287 + parent: 1 + type: Transform + - uid: 2326 + components: + - pos: 8.353927,31.631037 + parent: 1 + type: Transform + - uid: 2327 + components: + - pos: 8.447677,31.584162 + parent: 1 + type: Transform + - uid: 2328 + components: + - pos: 8.494552,31.584162 + parent: 1 + type: Transform + - uid: 2367 + components: + - rot: -1.5707963267948966 rad + pos: 11.600925,18.432741 + parent: 1 + type: Transform + - uid: 2368 + components: + - rot: -1.5707963267948966 rad + pos: 11.42905,18.682741 + parent: 1 + type: Transform + - uid: 2369 + components: + - rot: -1.5707963267948966 rad + pos: 11.382175,18.698366 + parent: 1 + type: Transform + - uid: 2370 + components: + - rot: -1.5707963267948966 rad + pos: 11.67905,18.729616 + parent: 1 + type: Transform + - uid: 2371 + components: + - rot: -1.5707963267948966 rad + pos: 11.507175,18.479616 + parent: 1 + type: Transform + - uid: 3204 + components: + - pos: -26.966206,17.360792 + parent: 1 + type: Transform + - uid: 3205 + components: + - pos: -27.028706,17.329542 + parent: 1 + type: Transform + - uid: 3206 + components: + - pos: -27.091206,17.220167 + parent: 1 + type: Transform + - uid: 3207 + components: + - pos: -26.76308,17.157667 + parent: 1 + type: Transform + - uid: 3208 + components: + - pos: -27.028706,17.188917 + parent: 1 + type: Transform + - uid: 3209 + components: + - pos: -27.16933,17.173292 + parent: 1 + type: Transform + - uid: 3578 + components: + - pos: -70.33955,16.634232 + parent: 1 + type: Transform + - uid: 3751 + components: + - pos: -46.321968,1.8882136 + parent: 1 + type: Transform + - uid: 3752 + components: + - pos: -46.446968,1.7632136 + parent: 1 + type: Transform + - uid: 3753 + components: + - pos: -46.478218,1.6850886 + parent: 1 + type: Transform + - uid: 3754 + components: + - pos: -46.368843,1.5913386 + parent: 1 + type: Transform + - uid: 3755 + components: + - pos: -46.337593,1.5757136 + parent: 1 + type: Transform + - uid: 4259 + components: + - pos: -45.35543,-6.2845764 + parent: 1 + type: Transform + - uid: 4260 + components: + - pos: -45.38668,-6.3470764 + parent: 1 + type: Transform + - uid: 4261 + components: + - pos: -45.38668,-6.3939514 + parent: 1 + type: Transform + - uid: 4262 + components: + - pos: -45.23043,-6.5502014 + parent: 1 + type: Transform + - uid: 4263 + components: + - pos: -45.48043,-6.6127014 + parent: 1 + type: Transform + - uid: 5512 + components: + - pos: -53.91828,-5.305279 + parent: 1 + type: Transform + - uid: 5513 + components: + - pos: -53.808907,-5.305279 + parent: 1 + type: Transform + - uid: 5514 + components: + - pos: -53.715157,-5.320904 + parent: 1 + type: Transform + - uid: 5515 + components: + - pos: -53.621407,-5.320904 + parent: 1 + type: Transform + - uid: 5810 + components: + - pos: -27.736298,13.6788025 + parent: 1 + type: Transform + - uid: 5811 + components: + - pos: -27.689423,13.6631775 + parent: 1 + type: Transform + - uid: 5812 + components: + - pos: -27.564423,13.6006775 + parent: 1 + type: Transform + - uid: 5813 + components: + - pos: -27.376923,13.5069275 + parent: 1 + type: Transform + - uid: 5814 + components: + - pos: -27.267548,13.4913025 + parent: 1 + type: Transform + - uid: 5815 + components: + - pos: -27.455048,13.5850525 + parent: 1 + type: Transform + - uid: 7546 + components: + - pos: -19.594261,47.957428 + parent: 1 + type: Transform + - uid: 7547 + components: + - pos: -19.578636,47.926178 + parent: 1 + type: Transform + - uid: 7548 + components: + - pos: -19.531761,47.894928 + parent: 1 + type: Transform + - uid: 7549 + components: + - pos: -19.500511,47.848053 + parent: 1 + type: Transform + - uid: 7550 + components: + - pos: -19.359886,48.051178 + parent: 1 + type: Transform + - uid: 7551 + components: + - pos: -19.500511,47.785553 + parent: 1 + type: Transform + - uid: 7552 + components: + - pos: -19.516136,47.676178 + parent: 1 + type: Transform + - uid: 7553 + components: + - pos: -19.469261,47.582428 + parent: 1 + type: Transform + - uid: 7578 + components: + - pos: -19.295961,40.5316 + parent: 1 + type: Transform + - uid: 7579 + components: + - pos: -19.639711,40.484726 + parent: 1 + type: Transform + - uid: 7580 + components: + - pos: -19.545961,40.4691 + parent: 1 + type: Transform + - uid: 7581 + components: + - pos: -19.436586,40.37535 + parent: 1 + type: Transform + - uid: 7582 + components: + - pos: -19.420961,40.31285 + parent: 1 + type: Transform + - uid: 7950 + components: + - pos: -47.78143,59.577873 + parent: 1 + type: Transform + - uid: 7951 + components: + - pos: -47.734554,59.577873 + parent: 1 + type: Transform + - uid: 7952 + components: + - pos: -47.71893,59.577873 + parent: 1 + type: Transform + - uid: 7953 + components: + - pos: -47.672054,59.577873 + parent: 1 + type: Transform + - uid: 7985 + components: + - pos: -60.29884,58.597794 + parent: 1 + type: Transform + - uid: 7986 + components: + - pos: -60.314465,58.597794 + parent: 1 + type: Transform + - uid: 7987 + components: + - pos: -60.33009,58.597794 + parent: 1 + type: Transform + - uid: 7990 + components: + - pos: -56.078358,58.626472 + parent: 1 + type: Transform + - uid: 7991 + components: + - pos: -56.172108,58.532722 + parent: 1 + type: Transform + - uid: 7992 + components: + - pos: -56.234608,58.595222 + parent: 1 + type: Transform + - uid: 10936 + components: + - pos: -63.356304,41.570023 + parent: 1 + type: Transform + - uid: 10937 + components: + - pos: -63.40318,41.570023 + parent: 1 + type: Transform + - uid: 10938 + components: + - pos: -63.450054,41.570023 + parent: 1 + type: Transform + - uid: 10939 + components: + - pos: -61.55943,41.601273 + parent: 1 + type: Transform + - uid: 10940 + components: + - pos: -61.512554,41.601273 + parent: 1 + type: Transform + - uid: 10941 + components: + - pos: -61.46568,41.585648 + parent: 1 + type: Transform + - uid: 10946 + components: + - pos: -62.24684,39.585648 + parent: 1 + type: Transform + - uid: 10947 + components: + - pos: -62.30934,39.585648 + parent: 1 + type: Transform + - uid: 10948 + components: + - pos: -62.356216,39.585648 + parent: 1 + type: Transform + - uid: 10949 + components: + - pos: -62.37184,39.585648 + parent: 1 + type: Transform + - uid: 12026 + components: + - pos: -31.597652,-1.4642928 + parent: 1 + type: Transform + - uid: 12027 + components: + - pos: -31.503902,-1.4955428 + parent: 1 + type: Transform + - uid: 12028 + components: + - pos: -31.378902,-1.5892928 + parent: 1 + type: Transform + - uid: 12029 + components: + - pos: -31.5229,-1.5424862 + parent: 1 + type: Transform + - uid: 12030 + components: + - pos: -31.4604,-1.5424862 + parent: 1 + type: Transform + - uid: 12778 + components: + - pos: 15.279422,31.607256 + parent: 1 + type: Transform + - uid: 12779 + components: + - pos: 15.404422,31.59163 + parent: 1 + type: Transform + - uid: 12780 + components: + - pos: 15.576297,31.59163 + parent: 1 + type: Transform + - uid: 12781 + components: + - pos: 15.670047,31.59163 + parent: 1 + type: Transform + - uid: 12796 + components: + - rot: -1.5707963267948966 rad + pos: 4.4957075,16.929403 + parent: 1 + type: Transform + - uid: 12797 + components: + - rot: -1.5707963267948966 rad + pos: 4.4957075,16.710653 + parent: 1 + type: Transform + - uid: 12798 + components: + - rot: -1.5707963267948966 rad + pos: 4.4957075,16.679403 + parent: 1 + type: Transform + - uid: 12799 + components: + - rot: -1.5707963267948966 rad + pos: 4.4800825,16.445028 + parent: 1 + type: Transform + - uid: 12800 + components: + - rot: -1.5707963267948966 rad + pos: 4.4800825,16.320028 + parent: 1 + type: Transform + - uid: 14202 + components: + - pos: -70.4958,16.634232 + parent: 1 + type: Transform + - uid: 14291 + components: + - pos: -70.305115,49.635986 + parent: 1 + type: Transform + - uid: 14292 + components: + - pos: -70.430115,49.635986 + parent: 1 + type: Transform + - uid: 14293 + components: + - pos: -70.492615,49.635986 + parent: 1 + type: Transform + - uid: 14294 + components: + - pos: -70.492615,49.635986 + parent: 1 + type: Transform + - uid: 15793 + components: + - pos: -70.58955,16.634232 + parent: 1 + type: Transform + - uid: 15794 + components: + - pos: -70.69892,16.649857 + parent: 1 + type: Transform +- proto: ParticleAcceleratorComputerCircuitboard + entities: + - uid: 9960 + components: + - pos: -81.535706,22.686981 + parent: 1 + type: Transform +- proto: PartRodMetal + entities: + - uid: 7340 + components: + - pos: -82.48612,29.602036 + parent: 1 + type: Transform + - uid: 7392 + components: + - pos: -82.48612,29.602036 + parent: 1 + type: Transform + - uid: 13607 + components: + - pos: -65.40672,25.564983 + parent: 1 + type: Transform + - uid: 13620 + components: + - pos: -65.40672,25.564983 + parent: 1 + type: Transform + - uid: 15783 + components: + - pos: -43.49778,-9.467924 + parent: 1 + type: Transform + - uid: 15892 + components: + - pos: 8.487601,-20.49545 + parent: 1 + type: Transform + - uid: 15894 + components: + - pos: 8.690726,-20.636074 + parent: 1 + type: Transform +- proto: Pen + entities: + - uid: 7386 + components: + - pos: -3.2828722,0.5082265 + parent: 1 + type: Transform + - uid: 7649 + components: + - rot: -1.5707963267948966 rad + pos: -59.14876,89.51848 + parent: 1 + type: Transform + - uid: 7709 + components: + - rot: -1.5707963267948966 rad + pos: -59.789387,89.70598 + parent: 1 + type: Transform + - uid: 15232 + components: + - pos: 18.717243,48.360695 + parent: 1 + type: Transform +- proto: PenHop + entities: + - uid: 7557 + components: + - pos: -21.314497,46.738678 + parent: 1 + type: Transform +- proto: PersonalAI + entities: + - uid: 8602 + components: + - flags: SessionSpecific + type: MetaData + - pos: -27.47025,16.628725 + parent: 1 + type: Transform + - uid: 8603 + components: + - flags: SessionSpecific + type: MetaData + - pos: -53.50901,17.553663 + parent: 1 + type: Transform + - uid: 15099 + components: + - flags: SessionSpecific + type: MetaData + - pos: -18.48621,65.98919 + parent: 1 + type: Transform +- proto: PhoneInstrument + entities: + - uid: 10544 + components: + - pos: -9.507111,55.584892 + parent: 1 + type: Transform +- proto: PianoInstrument + entities: + - uid: 4137 + components: + - rot: 3.141592653589793 rad + pos: -29.5,27.5 + parent: 1 + type: Transform +- proto: Pickaxe + entities: + - uid: 15278 + components: + - pos: -55.437958,92.56956 + parent: 1 + type: Transform + - uid: 15786 + components: + - pos: -42.607155,-9.499174 + parent: 1 + type: Transform + - uid: 15787 + components: + - pos: -42.37278,-9.467924 + parent: 1 + type: Transform +- proto: PillCanister + entities: + - uid: 1985 + components: + - pos: -3.7625957,27.657993 + parent: 1 + type: Transform + - uid: 1986 + components: + - pos: -3.3094707,27.611118 + parent: 1 + type: Transform + - uid: 1987 + components: + - pos: -3.5125957,27.501743 + parent: 1 + type: Transform +- proto: PinpointerNuclear + entities: + - uid: 10874 + components: + - pos: -21.536793,53.579475 + parent: 1 + type: Transform +- proto: PlantBag + entities: + - uid: 6950 + components: + - pos: -43.550423,47.547256 + parent: 1 + type: Transform +- proto: PlasmaDoor + entities: + - uid: 500 + components: + - pos: 8.5,-15.5 + parent: 1 + type: Transform +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 493 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-14.5 + parent: 1 + type: Transform + - uid: 1911 + components: + - pos: 10.5,-14.5 + parent: 1 + type: Transform + - uid: 1914 + components: + - pos: 9.5,-14.5 + parent: 1 + type: Transform + - uid: 1915 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-12.5 + parent: 1 + type: Transform + - uid: 2730 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,57.5 + parent: 1 + type: Transform + - uid: 2787 + components: + - pos: -25.5,57.5 + parent: 1 + type: Transform + - uid: 14821 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-12.5 + parent: 1 + type: Transform + - uid: 14823 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-12.5 + parent: 1 + type: Transform + - uid: 14824 + components: + - pos: 10.5,-13.5 + parent: 1 + type: Transform + - uid: 14825 + components: + - pos: 11.5,-14.5 + parent: 1 + type: Transform + - uid: 14830 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-12.5 + parent: 1 + type: Transform + - uid: 14838 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-14.5 + parent: 1 + type: Transform + - uid: 14842 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-13.5 + parent: 1 + type: Transform + - uid: 14844 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-13.5 + parent: 1 + type: Transform + - uid: 14846 + components: + - pos: 7.5,-14.5 + parent: 1 + type: Transform + - uid: 14847 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-13.5 + parent: 1 + type: Transform + - uid: 14848 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-13.5 + parent: 1 + type: Transform + - uid: 14849 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-13.5 + parent: 1 + type: Transform + - uid: 14850 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 1 + type: Transform + - uid: 14851 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-12.5 + parent: 1 + type: Transform + - uid: 14921 + components: + - rot: 3.141592653589793 rad + pos: -25.5,57.5 + parent: 1 + type: Transform + - uid: 14922 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,57.5 + parent: 1 + type: Transform + - uid: 15018 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-13.5 + parent: 1 + type: Transform +- proto: PlasmaTank + entities: + - uid: 14197 + components: + - pos: -77.7388,42.76258 + parent: 1 + type: Transform +- proto: PlasmaTankFilled + entities: + - uid: 9975 + components: + - pos: -82.50182,22.490105 + parent: 1 + type: Transform +- proto: PlasticFlapsAirtightClear + entities: + - uid: 15 + components: + - pos: -73.5,57.5 + parent: 1 + type: Transform + - uid: 3570 + components: + - pos: -35.5,-14.5 + parent: 1 + type: Transform + - uid: 3670 + components: + - pos: -39.5,-8.5 + parent: 1 + type: Transform + - uid: 4758 + components: + - pos: -35.5,-11.5 + parent: 1 + type: Transform + - uid: 10357 + components: + - pos: -31.5,-14.5 + parent: 1 + type: Transform + - uid: 10358 + components: + - pos: -31.5,-11.5 + parent: 1 + type: Transform +- proto: PlushieLizard + entities: + - uid: 14454 + components: + - pos: -71.541916,8.668143 + parent: 1 + type: Transform +- proto: PlushieNuke + entities: + - uid: 1414 + components: + - pos: 25.470646,41.49849 + parent: 1 + type: Transform +- proto: PlushieSpaceLizard + entities: + - uid: 4709 + components: + - pos: -92.400795,47.3703 + parent: 1 + type: Transform +- proto: PortableGeneratorSuperPacman + entities: + - uid: 6264 + components: + - pos: -3.5,55.5 + parent: 1 + type: Transform +- proto: PortableGeneratorSuperPacmanMachineCircuitboard + entities: + - uid: 1491 + components: + - pos: -49.48023,25.725746 + parent: 1 + type: Transform + - uid: 15959 + components: + - pos: -49.464603,25.631996 + parent: 1 + type: Transform +- proto: PortableScrubber + entities: + - uid: 12379 + components: + - pos: 5.5,-10.5 + parent: 1 + type: Transform + - uid: 15142 + components: + - pos: -77.5,38.5 + parent: 1 + type: Transform + - uid: 15143 + components: + - pos: -77.5,37.5 + parent: 1 + type: Transform + - uid: 15144 + components: + - pos: -77.5,36.5 + parent: 1 + type: Transform +- proto: PortableScrubberMachineCircuitBoard + entities: + - uid: 5554 + components: + - pos: -52.480408,23.530405 + parent: 1 + type: Transform +- proto: PosterContrabandClown + entities: + - uid: 4235 + components: + - pos: -39.5,27.5 + parent: 1 + type: Transform +- proto: PosterContrabandGreyTide + entities: + - uid: 5911 + components: + - pos: -7.5,38.5 + parent: 1 + type: Transform +- proto: PosterContrabandLamarr + entities: + - uid: 319 + components: + - pos: -4.5,1.5 + parent: 1 + type: Transform +- proto: PosterContrabandMissingGloves + entities: + - uid: 10085 + components: + - pos: -24.5,25.5 + parent: 1 + type: Transform +- proto: PosterContrabandWehWatches + entities: + - uid: 10419 + components: + - rot: 1.5707963267948966 rad + pos: -61.5,9.5 + parent: 1 + type: Transform +- proto: PosterLegit50thAnniversaryVintageReprint + entities: + - uid: 10080 + components: + - pos: -12.5,-0.5 + parent: 1 + type: Transform +- proto: PosterLegitHereForYourSafety + entities: + - uid: 10060 + components: + - pos: -18.5,28.5 + parent: 1 + type: Transform +- proto: PosterLegitJustAWeekAway + entities: + - uid: 10089 + components: + - pos: -49.5,16.5 + parent: 1 + type: Transform +- proto: PosterLegitLoveIan + entities: + - uid: 10086 + components: + - pos: -23.5,39.5 + parent: 1 + type: Transform + - uid: 10087 + components: + - pos: -18.5,40.5 + parent: 1 + type: Transform +- proto: PosterLegitPDAAd + entities: + - uid: 4550 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,36.5 + parent: 1 + type: Transform +- proto: PosterLegitScience + entities: + - uid: 10081 + components: + - pos: -12.5,-9.5 + parent: 1 + type: Transform +- proto: PosterMapPacked + entities: + - uid: 6314 + components: + - pos: 7.5,53.5 + parent: 1 + type: Transform +- proto: PottedPlant1 + entities: + - uid: 4556 + components: + - pos: 23.5,37.5 + parent: 1 + type: Transform +- proto: PottedPlant27 + entities: + - uid: 71 + components: + - pos: 12.5,25.5 + parent: 1 + type: Transform + - uid: 80 + components: + - pos: 12.5,26.5 + parent: 1 + type: Transform +- proto: PottedPlantRandom + entities: + - uid: 277 + components: + - pos: -13.5,-5.5 + parent: 1 + type: Transform + - uid: 278 + components: + - pos: -0.5,-2.5 + parent: 1 + type: Transform + - uid: 297 + components: + - pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 918 + components: + - pos: 26.5,-0.5 + parent: 1 + type: Transform + - uid: 1520 + components: + - pos: -15.5,-1.5 + parent: 1 + type: Transform + - uid: 1522 + components: + - pos: -15.5,-5.5 + parent: 1 + type: Transform + - uid: 1594 + components: + - pos: 13.5,-10.5 + parent: 1 + type: Transform + - uid: 2103 + components: + - pos: -4.5,29.5 + parent: 1 + type: Transform + - uid: 2664 + components: + - pos: -6.5,34.5 + parent: 1 + type: Transform + - uid: 3735 + components: + - pos: -43.5,-4.5 + parent: 1 + type: Transform + - uid: 3736 + components: + - pos: -36.5,-1.5 + parent: 1 + type: Transform + - uid: 3737 + components: + - pos: -34.5,2.5 + parent: 1 + type: Transform + - uid: 5265 + components: + - pos: -55.5,12.5 + parent: 1 + type: Transform + - uid: 5362 + components: + - pos: -50.5,-7.5 + parent: 1 + type: Transform + - uid: 5363 + components: + - pos: -50.5,-2.5 + parent: 1 + type: Transform + - uid: 7461 + components: + - pos: -52.5,90.5 + parent: 1 + type: Transform + - uid: 7465 + components: + - pos: -50.5,90.5 + parent: 1 + type: Transform + - uid: 7558 + components: + - pos: -19.5,44.5 + parent: 1 + type: Transform + - uid: 9771 + components: + - pos: -37.5,33.5 + parent: 1 + type: Transform + - uid: 10063 + components: + - pos: -39.5,39.5 + parent: 1 + type: Transform + - uid: 11056 + components: + - pos: -71.5,15.5 + parent: 1 + type: Transform + - uid: 11057 + components: + - pos: -69.5,31.5 + parent: 1 + type: Transform + - uid: 12735 + components: + - pos: -4.5,34.5 + parent: 1 + type: Transform + - uid: 12955 + components: + - pos: 4.5,21.5 + parent: 1 + type: Transform + - uid: 12956 + components: + - pos: 2.5,34.5 + parent: 1 + type: Transform + - uid: 12957 + components: + - pos: 4.5,34.5 + parent: 1 + type: Transform + - uid: 12958 + components: + - pos: 12.5,33.5 + parent: 1 + type: Transform + - uid: 12959 + components: + - pos: -0.5,40.5 + parent: 1 + type: Transform + - uid: 13081 + components: + - pos: -0.5,36.5 + parent: 1 + type: Transform + - uid: 13087 + components: + - pos: -2.5,8.5 + parent: 1 + type: Transform + - uid: 13088 + components: + - pos: 1.5,10.5 + parent: 1 + type: Transform + - uid: 14881 + components: + - pos: -9.5,30.5 + parent: 1 + type: Transform +- proto: PottedPlantRandomPlastic + entities: + - uid: 6835 + components: + - pos: -37.5,51.5 + parent: 1 + type: Transform + - uid: 6836 + components: + - pos: -36.5,51.5 + parent: 1 + type: Transform + - uid: 6837 + components: + - pos: -35.5,51.5 + parent: 1 + type: Transform + - uid: 6838 + components: + - pos: -34.5,51.5 + parent: 1 + type: Transform + - uid: 6839 + components: + - pos: -34.5,50.5 + parent: 1 + type: Transform + - uid: 6840 + components: + - pos: -35.5,50.5 + parent: 1 + type: Transform + - uid: 6841 + components: + - pos: -36.5,50.5 + parent: 1 + type: Transform + - uid: 6842 + components: + - pos: -37.5,50.5 + parent: 1 + type: Transform + - uid: 6843 + components: + - pos: -36.5,49.5 + parent: 1 + type: Transform + - uid: 6844 + components: + - pos: -35.5,49.5 + parent: 1 + type: Transform + - uid: 13082 + components: + - pos: 6.5,15.5 + parent: 1 + type: Transform +- proto: PottedPlantRD + entities: + - uid: 276 + components: + - pos: -10.5,-1.5 + parent: 1 + type: Transform +- proto: PowerCellMedium + entities: + - uid: 15789 + components: + - pos: -37.797993,-9.327299 + parent: 1 + type: Transform + - uid: 15790 + components: + - pos: -37.454243,-9.483549 + parent: 1 + type: Transform +- proto: PowerCellMicroreactor + entities: + - uid: 15037 + components: + - flags: InContainer + type: MetaData + - parent: 621 + type: Transform + - canCollide: False + type: Physics +- proto: PowerCellRecharger + entities: + - uid: 314 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 2253 + components: + - pos: -1.5,34.5 + parent: 1 + type: Transform + - uid: 2254 + components: + - pos: -21.5,59.5 + parent: 1 + type: Transform + - uid: 2255 + components: + - pos: -33.5,38.5 + parent: 1 + type: Transform + - uid: 3958 + components: + - pos: 10.5,24.5 + parent: 1 + type: Transform + - uid: 7189 + components: + - pos: -37.5,-13.5 + parent: 1 + type: Transform + - uid: 7946 + components: + - pos: -56.5,64.5 + parent: 1 + type: Transform + - uid: 13337 + components: + - pos: -2.5,10.5 + parent: 1 + type: Transform + - uid: 13339 + components: + - pos: -39.5,0.5 + parent: 1 + type: Transform + - uid: 13340 + components: + - pos: -31.5,-2.5 + parent: 1 + type: Transform + - uid: 13341 + components: + - pos: -24.5,8.5 + parent: 1 + type: Transform + - uid: 13343 + components: + - pos: -52.5,17.5 + parent: 1 + type: Transform + - uid: 15972 + components: + - pos: -10.5,8.5 + parent: 1 + type: Transform +- proto: Poweredlight + entities: + - uid: 381 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 382 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-5.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 383 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 384 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 385 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 386 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 387 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1020 + components: + - pos: 26.5,28.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1533 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-3.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1838 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1839 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1840 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1841 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1842 + components: + - pos: 7.5,-1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1843 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2009 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,38.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2012 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,22.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2015 + components: + - rot: 3.141592653589793 rad + pos: 11.5,33.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2018 + components: + - pos: 7.5,37.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2073 + components: + - pos: 6.5,20.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2074 + components: + - pos: 8.5,26.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2075 + components: + - rot: 3.141592653589793 rad + pos: -0.5,14.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2076 + components: + - pos: 2.5,17.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2077 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,17.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2078 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,14.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2079 + components: + - rot: 3.141592653589793 rad + pos: 11.5,11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2408 + components: + - rot: 3.141592653589793 rad + pos: -2.5,19.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2409 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,23.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2410 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,27.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2432 + components: + - rot: 3.141592653589793 rad + pos: -3.5,29.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2433 + components: + - pos: -0.5,34.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2754 + components: + - rot: 3.141592653589793 rad + pos: -9.5,4.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2756 + components: + - rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2757 + components: + - pos: 13.5,6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2758 + components: + - rot: 3.141592653589793 rad + pos: 21.5,4.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2759 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2760 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,17.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2809 + components: + - rot: 3.141592653589793 rad + pos: -18.5,3.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2811 + components: + - pos: -12.5,33.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2812 + components: + - rot: 3.141592653589793 rad + pos: -8.5,27.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2971 + components: + - rot: 3.141592653589793 rad + pos: 27.5,23.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3210 + components: + - rot: 3.141592653589793 rad + pos: -27.5,4.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3407 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,10.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3409 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3410 + components: + - rot: 3.141592653589793 rad + pos: -27.5,15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3411 + components: + - pos: -24.5,18.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3486 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-13.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 3696 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-7.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3767 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3768 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,2.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3769 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-3.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3771 + components: + - pos: -43.5,-1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3772 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3773 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-7.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3833 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-12.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3871 + components: + - rot: 3.141592653589793 rad + pos: -45.5,4.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4242 + components: + - rot: 3.141592653589793 rad + pos: -24.5,26.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4243 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,26.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4244 + components: + - pos: -34.5,29.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4245 + components: + - rot: 3.141592653589793 rad + pos: -31.5,23.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4246 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,25.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4247 + components: + - rot: 3.141592653589793 rad + pos: -33.5,15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4248 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,21.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4249 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,19.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4250 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4252 + components: + - rot: 3.141592653589793 rad + pos: -29.5,31.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4743 + components: + - rot: -1.5707963267948966 rad + pos: -79.5,-11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4769 + components: + - rot: 3.141592653589793 rad + pos: -63.5,-11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4770 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4905 + components: + - rot: 1.5707963267948966 rad + pos: -74.5,-14.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4906 + components: + - rot: -1.5707963267948966 rad + pos: -64.5,-14.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4980 + components: + - rot: -1.5707963267948966 rad + pos: -79.5,-9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4983 + components: + - pos: -74.5,-9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5191 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,-2.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5192 + components: + - rot: 3.141592653589793 rad + pos: -74.5,4.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5193 + components: + - pos: -67.5,6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5194 + components: + - rot: 3.141592653589793 rad + pos: -59.5,4.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5196 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5197 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,14.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5198 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,19.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5200 + components: + - rot: 3.141592653589793 rad + pos: -54.5,31.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5201 + components: + - rot: 3.141592653589793 rad + pos: -43.5,30.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5202 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,28.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5203 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,28.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5204 + components: + - pos: -51.5,25.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5337 + components: + - rot: 3.141592653589793 rad + pos: -54.5,4.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8582 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,63.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8584 + components: + - pos: -47.5,65.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8585 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,62.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8586 + components: + - rot: 3.141592653589793 rad + pos: -60.5,60.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8587 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,64.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8588 + components: + - rot: -1.5707963267948966 rad + pos: -58.5,64.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8589 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,59.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8590 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,53.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8591 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,57.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8592 + components: + - rot: 3.141592653589793 rad + pos: -55.5,53.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8593 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,58.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8594 + components: + - rot: 3.141592653589793 rad + pos: -60.5,63.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8595 + components: + - pos: -62.5,55.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8596 + components: + - rot: 3.141592653589793 rad + pos: -61.5,50.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9260 + components: + - rot: 3.141592653589793 rad + pos: -50.5,46.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9377 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,38.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9543 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,38.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9544 + components: + - pos: -11.5,44.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9545 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,38.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9546 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,49.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9547 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,48.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9548 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,46.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9549 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,39.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9555 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,42.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9556 + components: + - pos: -33.5,47.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9557 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,46.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9587 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,54.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9588 + components: + - pos: -12.5,57.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9589 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,55.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9590 + components: + - rot: 3.141592653589793 rad + pos: -6.5,54.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9591 + components: + - rot: 3.141592653589793 rad + pos: -8.5,59.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9593 + components: + - rot: 3.141592653589793 rad + pos: -12.5,59.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9594 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,63.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9595 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,63.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9596 + components: + - rot: 3.141592653589793 rad + pos: -20.5,59.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11013 + components: + - rot: 1.5707963267948966 rad + pos: -64.5,40.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11014 + components: + - pos: -61.5,45.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 12774 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,30.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13323 + components: + - pos: -0.5,10.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13699 + components: + - rot: 3.141592653589793 rad + pos: -42.5,41.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13700 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,47.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13701 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,51.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13765 + components: + - rot: 3.141592653589793 rad + pos: -24.5,23.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13844 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13850 + components: + - pos: 30.5,10.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13851 + components: + - rot: 3.141592653589793 rad + pos: 30.5,16.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13853 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-2.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14210 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-11.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 14466 + components: + - rot: 3.141592653589793 rad + pos: -83.5,23.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14471 + components: + - pos: -79.5,27.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14473 + components: + - rot: -1.5707963267948966 rad + pos: -73.5,25.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14474 + components: + - rot: 3.141592653589793 rad + pos: -71.5,19.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14475 + components: + - rot: 3.141592653589793 rad + pos: -63.5,19.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14476 + components: + - pos: -67.5,23.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14477 + components: + - rot: 3.141592653589793 rad + pos: -71.5,15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14478 + components: + - rot: 1.5707963267948966 rad + pos: -74.5,31.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14479 + components: + - pos: -69.5,35.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14480 + components: + - rot: -1.5707963267948966 rad + pos: -63.5,31.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14481 + components: + - rot: 1.5707963267948966 rad + pos: -67.5,27.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14482 + components: + - rot: 1.5707963267948966 rad + pos: -61.5,31.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14483 + components: + - rot: -1.5707963267948966 rad + pos: -76.5,31.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14484 + components: + - rot: 1.5707963267948966 rad + pos: -82.5,31.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14485 + components: + - rot: -1.5707963267948966 rad + pos: -77.5,38.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14486 + components: + - rot: -1.5707963267948966 rad + pos: -77.5,44.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14487 + components: + - rot: 1.5707963267948966 rad + pos: -86.5,46.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14488 + components: + - rot: 1.5707963267948966 rad + pos: -86.5,42.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14489 + components: + - rot: 1.5707963267948966 rad + pos: -86.5,38.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14490 + components: + - rot: 1.5707963267948966 rad + pos: -86.5,34.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14491 + components: + - rot: 1.5707963267948966 rad + pos: -90.5,35.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14492 + components: + - rot: 1.5707963267948966 rad + pos: -90.5,37.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14493 + components: + - rot: 1.5707963267948966 rad + pos: -90.5,39.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14494 + components: + - rot: 1.5707963267948966 rad + pos: -90.5,41.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14495 + components: + - rot: 1.5707963267948966 rad + pos: -90.5,43.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14496 + components: + - rot: 1.5707963267948966 rad + pos: -90.5,45.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14497 + components: + - pos: -83.5,50.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14498 + components: + - pos: -81.5,50.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14855 + components: + - pos: 7.5,31.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14856 + components: + - pos: 11.5,31.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14857 + components: + - pos: 9.5,31.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredlightEmpty + entities: + - uid: 302 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,34.5 + parent: 1 + type: Transform + - uid: 340 + components: + - rot: 3.141592653589793 rad + pos: 5.5,28.5 + parent: 1 + type: Transform + - uid: 516 + components: + - pos: -35.5,7.5 + parent: 1 + type: Transform + - uid: 517 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,40.5 + parent: 1 + type: Transform +- proto: PoweredLightPostSmall + entities: + - uid: 15563 + components: + - pos: -1.5,-19.5 + parent: 1 + type: Transform + - uid: 15564 + components: + - pos: 7.5,-21.5 + parent: 1 + type: Transform + - uid: 15565 + components: + - pos: 13.5,-18.5 + parent: 1 + type: Transform +- proto: PoweredlightSodium + entities: + - uid: 3469 + components: + - pos: -50.5,-15.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 4596 + components: + - pos: 20.5,43.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 15427 + components: + - pos: -41.5,58.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 15428 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,63.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 15429 + components: + - rot: 3.141592653589793 rad + pos: -42.5,68.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredSmallLight + entities: + - uid: 10 + components: + - pos: -48.5,10.5 + parent: 1 + type: Transform + - uid: 282 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-12.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 377 + components: + - pos: 3.5,-8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 378 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 379 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 380 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-12.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 473 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,37.5 + parent: 1 + type: Transform + - uid: 509 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,38.5 + parent: 1 + type: Transform + - uid: 526 + components: + - pos: -41.5,39.5 + parent: 1 + type: Transform + - uid: 1656 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1657 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2237 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,18.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2238 + components: + - pos: 20.5,23.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2249 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,10.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2512 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2513 + components: + - pos: 22.5,9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2753 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,2.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2762 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2781 + components: + - pos: -8.5,9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2782 + components: + - pos: -8.5,15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2792 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,14.5 + parent: 1 + type: Transform + - uid: 2852 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,28.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2883 + components: + - pos: -16.5,10.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3317 + components: + - rot: 3.141592653589793 rad + pos: -16.5,22.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4075 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5328 + components: + - pos: -41.5,11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5329 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,14.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5335 + components: + - pos: -52.5,-4.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5336 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,-1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6307 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,51.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6308 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,51.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7101 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,36.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7102 + components: + - rot: 3.141592653589793 rad + pos: -51.5,40.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7713 + components: + - rot: 3.141592653589793 rad + pos: -55.5,88.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7714 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,86.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7730 + components: + - pos: -55.5,84.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7731 + components: + - pos: -61.5,89.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7732 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,84.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7733 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,89.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7741 + components: + - rot: 3.141592653589793 rad + pos: -62.5,83.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7742 + components: + - rot: -1.5707963267948966 rad + pos: -57.5,85.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8353 + components: + - pos: -51.5,68.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8583 + components: + - rot: 3.141592653589793 rad + pos: -51.5,79.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8597 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,50.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8598 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,50.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8599 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,50.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8600 + components: + - rot: 3.141592653589793 rad + pos: -60.5,57.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8971 + components: + - rot: 3.141592653589793 rad + pos: -79.5,18.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9257 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,42.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9592 + components: + - pos: -4.5,56.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9600 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,43.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9601 + components: + - rot: 3.141592653589793 rad + pos: -28.5,40.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9602 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,50.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10253 + components: + - rot: -1.5707963267948966 rad + pos: -69.5,26.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10254 + components: + - rot: -1.5707963267948966 rad + pos: -60.5,12.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10978 + components: + - rot: 1.5707963267948966 rad + pos: -72.5,40.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10979 + components: + - rot: -1.5707963267948966 rad + pos: -69.5,44.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10980 + components: + - rot: 3.141592653589793 rad + pos: -70.5,47.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 12775 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,30.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14003 + components: + - rot: -1.5707963267948966 rad + pos: -75.5,55.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14007 + components: + - rot: -1.5707963267948966 rad + pos: -69.5,54.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14009 + components: + - rot: -1.5707963267948966 rad + pos: -69.5,11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14468 + components: + - rot: -1.5707963267948966 rad + pos: -84.5,30.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14472 + components: + - rot: -1.5707963267948966 rad + pos: -84.5,20.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 15038 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-14.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 15224 + components: + - rot: -1.5707963267948966 rad + pos: -87.5,22.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 15226 + components: + - rot: -1.5707963267948966 rad + pos: -87.5,28.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredSmallLightEmpty + entities: + - uid: 4595 + components: + - rot: 3.141592653589793 rad + pos: 21.5,37.5 + parent: 1 + type: Transform +- proto: Protolathe + entities: + - uid: 254 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform +- proto: PuddleVomit + entities: + - uid: 79 + components: + - pos: -17.5,44.5 + parent: 1 + type: Transform + - uid: 7010 + components: + - pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 7126 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 7127 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 7128 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 7129 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 7130 + components: + - pos: -8.5,-0.5 + parent: 1 + type: Transform + - uid: 7131 + components: + - pos: -8.5,0.5 + parent: 1 + type: Transform + - uid: 7187 + components: + - pos: -9.5,0.5 + parent: 1 + type: Transform + - uid: 7228 + components: + - pos: -9.5,1.5 + parent: 1 + type: Transform + - uid: 7241 + components: + - pos: -8.5,1.5 + parent: 1 + type: Transform + - uid: 7341 + components: + - pos: -27.5,5.5 + parent: 1 + type: Transform + - uid: 7342 + components: + - pos: -28.5,5.5 + parent: 1 + type: Transform + - uid: 7395 + components: + - pos: -28.5,6.5 + parent: 1 + type: Transform + - uid: 7396 + components: + - pos: -29.5,6.5 + parent: 1 + type: Transform + - uid: 7400 + components: + - pos: -29.5,5.5 + parent: 1 + type: Transform +- proto: Rack + entities: + - uid: 7 + components: + - pos: -46.5,8.5 + parent: 1 + type: Transform + - uid: 8 + components: + - pos: -46.5,10.5 + parent: 1 + type: Transform + - uid: 11 + components: + - pos: -46.5,9.5 + parent: 1 + type: Transform + - uid: 1447 + components: + - pos: -17.5,10.5 + parent: 1 + type: Transform + - uid: 1466 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,9.5 + parent: 1 + type: Transform + - uid: 1832 + components: + - pos: 20.5,-2.5 + parent: 1 + type: Transform + - uid: 1876 + components: + - pos: -2.5,-9.5 + parent: 1 + type: Transform + - uid: 2071 + components: + - pos: -3.5,15.5 + parent: 1 + type: Transform + - uid: 2796 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,8.5 + parent: 1 + type: Transform + - uid: 2934 + components: + - rot: 3.141592653589793 rad + pos: -18.5,16.5 + parent: 1 + type: Transform + - uid: 2950 + components: + - pos: 27.5,-4.5 + parent: 1 + type: Transform + - uid: 3168 + components: + - pos: -23.5,55.5 + parent: 1 + type: Transform + - uid: 3511 + components: + - pos: -19.5,-13.5 + parent: 1 + type: Transform + - uid: 3512 + components: + - pos: -19.5,-14.5 + parent: 1 + type: Transform + - uid: 3656 + components: + - pos: -33.5,-1.5 + parent: 1 + type: Transform + - uid: 4334 + components: + - pos: -40.5,18.5 + parent: 1 + type: Transform + - uid: 4335 + components: + - pos: -40.5,17.5 + parent: 1 + type: Transform + - uid: 4336 + components: + - pos: -45.5,17.5 + parent: 1 + type: Transform + - uid: 4337 + components: + - pos: -47.5,17.5 + parent: 1 + type: Transform + - uid: 5290 + components: + - pos: -54.5,27.5 + parent: 1 + type: Transform + - uid: 5291 + components: + - pos: -53.5,27.5 + parent: 1 + type: Transform + - uid: 5292 + components: + - pos: -52.5,27.5 + parent: 1 + type: Transform + - uid: 5293 + components: + - pos: -52.5,25.5 + parent: 1 + type: Transform + - uid: 5294 + components: + - pos: -52.5,24.5 + parent: 1 + type: Transform + - uid: 5295 + components: + - pos: -52.5,23.5 + parent: 1 + type: Transform + - uid: 5296 + components: + - pos: -49.5,25.5 + parent: 1 + type: Transform + - uid: 5297 + components: + - pos: -49.5,24.5 + parent: 1 + type: Transform + - uid: 5298 + components: + - pos: -49.5,23.5 + parent: 1 + type: Transform + - uid: 5304 + components: + - pos: -54.5,25.5 + parent: 1 + type: Transform + - uid: 5426 + components: + - pos: -19.5,0.5 + parent: 1 + type: Transform + - uid: 5427 + components: + - pos: -18.5,-7.5 + parent: 1 + type: Transform + - uid: 5429 + components: + - pos: -27.5,-4.5 + parent: 1 + type: Transform + - uid: 5442 + components: + - pos: -6.5,-13.5 + parent: 1 + type: Transform + - uid: 5446 + components: + - pos: -17.5,-7.5 + parent: 1 + type: Transform + - uid: 5500 + components: + - pos: -51.5,2.5 + parent: 1 + type: Transform + - uid: 5519 + components: + - pos: -47.5,-8.5 + parent: 1 + type: Transform + - uid: 5599 + components: + - pos: -43.5,13.5 + parent: 1 + type: Transform + - uid: 5600 + components: + - pos: -40.5,13.5 + parent: 1 + type: Transform + - uid: 5625 + components: + - pos: -45.5,23.5 + parent: 1 + type: Transform + - uid: 5638 + components: + - pos: -23.5,26.5 + parent: 1 + type: Transform + - uid: 5727 + components: + - pos: -20.5,29.5 + parent: 1 + type: Transform + - uid: 5728 + components: + - pos: -20.5,13.5 + parent: 1 + type: Transform + - uid: 6068 + components: + - pos: -13.5,46.5 + parent: 1 + type: Transform + - uid: 6082 + components: + - pos: -12.5,46.5 + parent: 1 + type: Transform + - uid: 6317 + components: + - pos: 12.5,43.5 + parent: 1 + type: Transform + - uid: 7519 + components: + - pos: -29.5,55.5 + parent: 1 + type: Transform + - uid: 7573 + components: + - pos: -19.5,41.5 + parent: 1 + type: Transform + - uid: 7717 + components: + - pos: -60.5,83.5 + parent: 1 + type: Transform + - uid: 9104 + components: + - rot: 3.141592653589793 rad + pos: -72.5,45.5 + parent: 1 + type: Transform + - uid: 9295 + components: + - rot: 1.5707963267948966 rad + pos: -82.5,22.5 + parent: 1 + type: Transform + - uid: 9734 + components: + - pos: -27.5,35.5 + parent: 1 + type: Transform + - uid: 10372 + components: + - pos: -27.5,49.5 + parent: 1 + type: Transform + - uid: 10383 + components: + - pos: -8.5,46.5 + parent: 1 + type: Transform + - uid: 10389 + components: + - pos: -1.5,45.5 + parent: 1 + type: Transform + - uid: 10391 + components: + - pos: 6.5,48.5 + parent: 1 + type: Transform + - uid: 10405 + components: + - pos: 22.5,27.5 + parent: 1 + type: Transform + - uid: 10462 + components: + - pos: -27.5,40.5 + parent: 1 + type: Transform + - uid: 10862 + components: + - pos: -22.5,57.5 + parent: 1 + type: Transform + - uid: 10863 + components: + - pos: -21.5,57.5 + parent: 1 + type: Transform + - uid: 10864 + components: + - pos: -20.5,57.5 + parent: 1 + type: Transform + - uid: 10952 + components: + - rot: 3.141592653589793 rad + pos: -71.5,45.5 + parent: 1 + type: Transform + - uid: 12904 + components: + - pos: 13.5,8.5 + parent: 1 + type: Transform + - uid: 13085 + components: + - pos: -0.5,10.5 + parent: 1 + type: Transform + - uid: 13671 + components: + - pos: -53.5,44.5 + parent: 1 + type: Transform + - uid: 13673 + components: + - pos: -50.5,41.5 + parent: 1 + type: Transform + - uid: 13803 + components: + - pos: -17.5,26.5 + parent: 1 + type: Transform + - uid: 13929 + components: + - rot: 1.5707963267948966 rad + pos: -77.5,42.5 + parent: 1 + type: Transform + - uid: 14316 + components: + - rot: 3.141592653589793 rad + pos: -61.5,35.5 + parent: 1 + type: Transform + - uid: 14585 + components: + - rot: -1.5707963267948966 rad + pos: -61.5,26.5 + parent: 1 + type: Transform + - uid: 14591 + components: + - rot: 1.5707963267948966 rad + pos: -67.5,13.5 + parent: 1 + type: Transform + - uid: 14919 + components: + - pos: -17.5,14.5 + parent: 1 + type: Transform + - uid: 15650 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-9.5 + parent: 1 + type: Transform + - uid: 15651 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-9.5 + parent: 1 + type: Transform + - uid: 15981 + components: + - pos: -17.5,8.5 + parent: 1 + type: Transform +- proto: RadiationCollector + entities: + - uid: 10498 + components: + - pos: -100.5,32.5 + parent: 1 + type: Transform + - uid: 10575 + components: + - pos: -99.5,32.5 + parent: 1 + type: Transform + - uid: 10599 + components: + - pos: -96.5,18.5 + parent: 1 + type: Transform + - uid: 10600 + components: + - pos: -98.5,32.5 + parent: 1 + type: Transform + - uid: 10601 + components: + - pos: -96.5,32.5 + parent: 1 + type: Transform + - uid: 10602 + components: + - pos: -95.5,32.5 + parent: 1 + type: Transform + - uid: 10603 + components: + - pos: -94.5,32.5 + parent: 1 + type: Transform + - uid: 10604 + components: + - pos: -95.5,18.5 + parent: 1 + type: Transform + - uid: 10605 + components: + - pos: -94.5,18.5 + parent: 1 + type: Transform + - uid: 10606 + components: + - pos: -98.5,18.5 + parent: 1 + type: Transform + - uid: 10607 + components: + - pos: -99.5,18.5 + parent: 1 + type: Transform + - uid: 10608 + components: + - pos: -100.5,18.5 + parent: 1 + type: Transform +- proto: RadioHandheld + entities: + - uid: 15945 + components: + - pos: 20.868422,-8.021761 + parent: 1 + type: Transform + - uid: 15946 + components: + - pos: 20.649672,-8.146761 + parent: 1 + type: Transform +- proto: Railing + entities: + - uid: 1056 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,25.5 + parent: 1 + type: Transform + - uid: 1172 + components: + - pos: 22.5,31.5 + parent: 1 + type: Transform + - uid: 1265 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,27.5 + parent: 1 + type: Transform + - uid: 1266 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,28.5 + parent: 1 + type: Transform + - uid: 1615 + components: + - rot: 3.141592653589793 rad + pos: 22.5,22.5 + parent: 1 + type: Transform + - uid: 2632 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,29.5 + parent: 1 + type: Transform + - uid: 2634 + components: + - rot: 3.141592653589793 rad + pos: -9.5,30.5 + parent: 1 + type: Transform + - uid: 2635 + components: + - rot: 3.141592653589793 rad + pos: -6.5,30.5 + parent: 1 + type: Transform + - uid: 3129 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,28.5 + parent: 1 + type: Transform + - uid: 3130 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,26.5 + parent: 1 + type: Transform + - uid: 3413 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,27.5 + parent: 1 + type: Transform + - uid: 3414 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,25.5 + parent: 1 + type: Transform + - uid: 3415 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,24.5 + parent: 1 + type: Transform + - uid: 3416 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,23.5 + parent: 1 + type: Transform + - uid: 5260 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,16.5 + parent: 1 + type: Transform + - uid: 5261 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,12.5 + parent: 1 + type: Transform + - uid: 7045 + components: + - rot: 3.141592653589793 rad + pos: -50.5,37.5 + parent: 1 + type: Transform + - uid: 10128 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,54.5 + parent: 1 + type: Transform + - uid: 10395 + components: + - pos: 6.5,44.5 + parent: 1 + type: Transform + - uid: 10396 + components: + - rot: 3.141592653589793 rad + pos: 6.5,41.5 + parent: 1 + type: Transform + - uid: 10398 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,54.5 + parent: 1 + type: Transform + - uid: 10961 + components: + - pos: -72.5,43.5 + parent: 1 + type: Transform + - uid: 10962 + components: + - pos: -71.5,43.5 + parent: 1 + type: Transform + - uid: 10963 + components: + - pos: -70.5,43.5 + parent: 1 + type: Transform + - uid: 12896 + components: + - pos: 14.5,16.5 + parent: 1 + type: Transform + - uid: 12897 + components: + - rot: 3.141592653589793 rad + pos: 14.5,12.5 + parent: 1 + type: Transform + - uid: 14331 + components: + - pos: -75.5,43.5 + parent: 1 + type: Transform + - uid: 14332 + components: + - rot: 3.141592653589793 rad + pos: -75.5,39.5 + parent: 1 + type: Transform + - uid: 14356 + components: + - rot: -1.5707963267948966 rad + pos: -62.5,13.5 + parent: 1 + type: Transform + - uid: 14357 + components: + - rot: -1.5707963267948966 rad + pos: -62.5,12.5 + parent: 1 + type: Transform + - uid: 14358 + components: + - rot: -1.5707963267948966 rad + pos: -62.5,11.5 + parent: 1 + type: Transform + - uid: 14359 + components: + - rot: -1.5707963267948966 rad + pos: -62.5,10.5 + parent: 1 + type: Transform +- proto: RailingCorner + entities: + - uid: 2633 + components: + - rot: 3.141592653589793 rad + pos: -10.5,30.5 + parent: 1 + type: Transform + - uid: 7066 + components: + - rot: 3.141592653589793 rad + pos: -51.5,37.5 + parent: 1 + type: Transform +- proto: RandomArcade + entities: + - uid: 2493 + components: + - rot: 3.141592653589793 rad + pos: 17.5,12.5 + parent: 1 + type: Transform + - uid: 2494 + components: + - pos: 17.5,11.5 + parent: 1 + type: Transform + - uid: 2495 + components: + - pos: 18.5,11.5 + parent: 1 + type: Transform + - uid: 2496 + components: + - rot: 3.141592653589793 rad + pos: 18.5,12.5 + parent: 1 + type: Transform + - uid: 2497 + components: + - rot: 3.141592653589793 rad + pos: 16.5,12.5 + parent: 1 + type: Transform + - uid: 2498 + components: + - pos: 16.5,11.5 + parent: 1 + type: Transform + - uid: 2499 + components: + - rot: 3.141592653589793 rad + pos: 16.5,8.5 + parent: 1 + type: Transform + - uid: 2500 + components: + - rot: 3.141592653589793 rad + pos: 17.5,8.5 + parent: 1 + type: Transform + - uid: 2501 + components: + - rot: 3.141592653589793 rad + pos: 18.5,8.5 + parent: 1 + type: Transform + - uid: 3509 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-13.5 + parent: 1 + type: Transform + - uid: 3510 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-14.5 + parent: 1 + type: Transform + - uid: 9767 + components: + - pos: -41.5,39.5 + parent: 1 + type: Transform +- proto: RandomArtifactSpawner + entities: + - uid: 96 + components: + - pos: -4.5,-8.5 + parent: 1 + type: Transform + - uid: 346 + components: + - pos: 1.5,-14.5 + parent: 1 + type: Transform +- proto: RandomDrinkGlass + entities: + - uid: 915 + components: + - pos: 28.5,-1.5 + parent: 1 + type: Transform +- proto: RandomFoodSingle + entities: + - uid: 10809 + components: + - pos: -33.5,37.5 + parent: 1 + type: Transform +- proto: RandomInstruments + entities: + - uid: 4133 + components: + - pos: -26.5,24.5 + parent: 1 + type: Transform + - uid: 4134 + components: + - pos: -25.5,24.5 + parent: 1 + type: Transform + - uid: 4135 + components: + - pos: -24.5,24.5 + parent: 1 + type: Transform + - uid: 7324 + components: + - pos: -54.5,82.5 + parent: 1 + type: Transform + - uid: 7325 + components: + - pos: -54.5,88.5 + parent: 1 + type: Transform +- proto: RandomPainting + entities: + - uid: 14344 + components: + - pos: -78.5,55.5 + parent: 1 + type: Transform + - uid: 14843 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-11.5 + parent: 1 + type: Transform +- proto: RandomPosterAny + entities: + - uid: 1165 + components: + - pos: 20.5,27.5 + parent: 1 + type: Transform + - uid: 10068 + components: + - pos: -4.5,41.5 + parent: 1 + type: Transform + - uid: 10069 + components: + - pos: 5.5,48.5 + parent: 1 + type: Transform + - uid: 10070 + components: + - pos: 13.5,42.5 + parent: 1 + type: Transform + - uid: 10073 + components: + - pos: 25.5,-3.5 + parent: 1 + type: Transform + - uid: 10074 + components: + - pos: 12.5,-8.5 + parent: 1 + type: Transform + - uid: 10075 + components: + - pos: -22.5,-6.5 + parent: 1 + type: Transform + - uid: 10076 + components: + - pos: -49.5,-5.5 + parent: 1 + type: Transform + - uid: 10088 + components: + - pos: -46.5,22.5 + parent: 1 + type: Transform + - uid: 14348 + components: + - pos: -68.5,55.5 + parent: 1 + type: Transform + - uid: 14349 + components: + - pos: -68.5,43.5 + parent: 1 + type: Transform + - uid: 14350 + components: + - pos: -73.5,41.5 + parent: 1 + type: Transform + - uid: 14354 + components: + - pos: -65.5,13.5 + parent: 1 + type: Transform +- proto: RandomPosterContraband + entities: + - uid: 14347 + components: + - pos: -74.5,54.5 + parent: 1 + type: Transform +- proto: RandomPosterLegit + entities: + - uid: 1061 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 7323 + components: + - pos: -53.5,86.5 + parent: 1 + type: Transform + - uid: 8352 + components: + - rot: 3.141592653589793 rad + pos: -45.5,37.5 + parent: 1 + type: Transform + - uid: 10044 + components: + - pos: -54.5,34.5 + parent: 1 + type: Transform + - uid: 10046 + components: + - pos: -55.5,17.5 + parent: 1 + type: Transform + - uid: 10048 + components: + - pos: -68.5,7.5 + parent: 1 + type: Transform + - uid: 10049 + components: + - pos: -55.5,-2.5 + parent: 1 + type: Transform + - uid: 10051 + components: + - pos: -43.5,7.5 + parent: 1 + type: Transform + - uid: 10052 + components: + - pos: -27.5,3.5 + parent: 1 + type: Transform + - uid: 10053 + components: + - pos: -11.5,3.5 + parent: 1 + type: Transform + - uid: 10055 + components: + - pos: 14.5,4.5 + parent: 1 + type: Transform + - uid: 10056 + components: + - pos: 24.5,8.5 + parent: 1 + type: Transform + - uid: 10057 + components: + - pos: 29.5,19.5 + parent: 1 + type: Transform + - uid: 10059 + components: + - pos: -10.5,26.5 + parent: 1 + type: Transform + - uid: 10061 + components: + - pos: -49.5,41.5 + parent: 1 + type: Transform + - uid: 10062 + components: + - pos: -12.5,45.5 + parent: 1 + type: Transform + - uid: 10064 + components: + - pos: -39.5,25.5 + parent: 1 + type: Transform + - uid: 10065 + components: + - pos: -35.5,14.5 + parent: 1 + type: Transform + - uid: 10066 + components: + - pos: -30.5,30.5 + parent: 1 + type: Transform + - uid: 10067 + components: + - pos: -8.5,35.5 + parent: 1 + type: Transform + - uid: 14351 + components: + - pos: -62.5,37.5 + parent: 1 + type: Transform + - uid: 14352 + components: + - pos: -59.5,45.5 + parent: 1 + type: Transform + - uid: 14353 + components: + - pos: -59.5,28.5 + parent: 1 + type: Transform + - uid: 14355 + components: + - pos: -59.5,8.5 + parent: 1 + type: Transform +- proto: RandomSoap + entities: + - uid: 5305 + components: + - pos: -54.5,25.5 + parent: 1 + type: Transform + - uid: 5437 + components: + - pos: -23.5,-1.5 + parent: 1 + type: Transform + - uid: 5438 + components: + - pos: -23.5,0.5 + parent: 1 + type: Transform + - uid: 5439 + components: + - pos: -23.5,2.5 + parent: 1 + type: Transform + - uid: 7097 + components: + - pos: -50.5,40.5 + parent: 1 + type: Transform + - uid: 7739 + components: + - pos: -54.5,86.5 + parent: 1 + type: Transform +- proto: RandomSpawner + entities: + - uid: 259 + components: + - pos: -70.5,54.5 + parent: 1 + type: Transform + - uid: 287 + components: + - pos: -36.5,18.5 + parent: 1 + type: Transform + - uid: 1402 + components: + - pos: -72.5,56.5 + parent: 1 + type: Transform + - uid: 2308 + components: + - pos: -70.5,54.5 + parent: 1 + type: Transform + - uid: 2990 + components: + - pos: -71.5,52.5 + parent: 1 + type: Transform + - uid: 3481 + components: + - pos: -33.5,32.5 + parent: 1 + type: Transform + - uid: 3738 + components: + - pos: -34.5,33.5 + parent: 1 + type: Transform + - uid: 4074 + components: + - pos: -71.5,54.5 + parent: 1 + type: Transform + - uid: 4220 + components: + - pos: -36.5,17.5 + parent: 1 + type: Transform + - uid: 4732 + components: + - pos: 20.5,38.5 + parent: 1 + type: Transform + - uid: 4733 + components: + - pos: 17.5,43.5 + parent: 1 + type: Transform + - uid: 5547 + components: + - pos: -70.5,53.5 + parent: 1 + type: Transform + - uid: 5756 + components: + - pos: -57.5,60.5 + parent: 1 + type: Transform + - uid: 7393 + components: + - pos: -44.5,-13.5 + parent: 1 + type: Transform + - uid: 8025 + components: + - rot: 3.141592653589793 rad + pos: -40.5,51.5 + parent: 1 + type: Transform + - uid: 8026 + components: + - pos: -44.5,46.5 + parent: 1 + type: Transform + - uid: 8027 + components: + - pos: -40.5,43.5 + parent: 1 + type: Transform + - uid: 8028 + components: + - pos: -43.5,42.5 + parent: 1 + type: Transform + - uid: 8029 + components: + - pos: -37.5,43.5 + parent: 1 + type: Transform + - uid: 8030 + components: + - pos: -33.5,46.5 + parent: 1 + type: Transform + - uid: 8031 + components: + - pos: -31.5,44.5 + parent: 1 + type: Transform + - uid: 8033 + components: + - pos: -29.5,46.5 + parent: 1 + type: Transform + - uid: 8034 + components: + - pos: -28.5,41.5 + parent: 1 + type: Transform + - uid: 8035 + components: + - pos: -31.5,38.5 + parent: 1 + type: Transform + - uid: 8036 + components: + - pos: -32.5,40.5 + parent: 1 + type: Transform + - uid: 8037 + components: + - pos: -35.5,35.5 + parent: 1 + type: Transform + - uid: 8038 + components: + - pos: -42.5,37.5 + parent: 1 + type: Transform + - uid: 8039 + components: + - pos: -35.5,40.5 + parent: 1 + type: Transform + - uid: 8040 + components: + - pos: -36.5,28.5 + parent: 1 + type: Transform + - uid: 8041 + components: + - pos: -38.5,22.5 + parent: 1 + type: Transform + - uid: 8042 + components: + - pos: -37.5,16.5 + parent: 1 + type: Transform + - uid: 8043 + components: + - pos: -36.5,9.5 + parent: 1 + type: Transform + - uid: 8044 + components: + - pos: -38.5,5.5 + parent: 1 + type: Transform + - uid: 8045 + components: + - pos: -33.5,4.5 + parent: 1 + type: Transform + - uid: 8046 + components: + - pos: -32.5,1.5 + parent: 1 + type: Transform + - uid: 8047 + components: + - pos: -41.5,2.5 + parent: 1 + type: Transform + - uid: 8048 + components: + - pos: -48.5,5.5 + parent: 1 + type: Transform + - uid: 8049 + components: + - pos: -55.5,6.5 + parent: 1 + type: Transform + - uid: 8050 + components: + - pos: -57.5,4.5 + parent: 1 + type: Transform + - uid: 8051 + components: + - pos: -65.5,6.5 + parent: 1 + type: Transform + - uid: 8052 + components: + - pos: -70.5,5.5 + parent: 1 + type: Transform + - uid: 8053 + components: + - pos: -74.5,6.5 + parent: 1 + type: Transform + - uid: 8054 + components: + - pos: -56.5,-2.5 + parent: 1 + type: Transform + - uid: 8055 + components: + - pos: -58.5,1.5 + parent: 1 + type: Transform + - uid: 8056 + components: + - pos: -56.5,-8.5 + parent: 1 + type: Transform + - uid: 8060 + components: + - pos: -52.5,-7.5 + parent: 1 + type: Transform + - uid: 8061 + components: + - pos: -54.5,-2.5 + parent: 1 + type: Transform + - uid: 8062 + components: + - pos: -50.5,-1.5 + parent: 1 + type: Transform + - uid: 8063 + components: + - pos: -44.5,-4.5 + parent: 1 + type: Transform + - uid: 8064 + components: + - pos: -45.5,0.5 + parent: 1 + type: Transform + - uid: 8065 + components: + - pos: -37.5,-3.5 + parent: 1 + type: Transform + - uid: 8066 + components: + - pos: -41.5,-3.5 + parent: 1 + type: Transform + - uid: 8067 + components: + - pos: -32.5,-9.5 + parent: 1 + type: Transform + - uid: 8069 + components: + - pos: -38.5,-12.5 + parent: 1 + type: Transform + - uid: 8070 + components: + - pos: -41.5,-10.5 + parent: 1 + type: Transform + - uid: 8072 + components: + - pos: -26.5,-6.5 + parent: 1 + type: Transform + - uid: 8073 + components: + - pos: -29.5,-5.5 + parent: 1 + type: Transform + - uid: 8074 + components: + - pos: -25.5,-0.5 + parent: 1 + type: Transform + - uid: 8075 + components: + - pos: -28.5,2.5 + parent: 1 + type: Transform + - uid: 8076 + components: + - pos: -21.5,-8.5 + parent: 1 + type: Transform + - uid: 8077 + components: + - pos: -20.5,-4.5 + parent: 1 + type: Transform + - uid: 8078 + components: + - pos: -21.5,-1.5 + parent: 1 + type: Transform + - uid: 8079 + components: + - pos: -24.5,-7.5 + parent: 1 + type: Transform + - uid: 8080 + components: + - pos: -15.5,1.5 + parent: 1 + type: Transform + - uid: 8081 + components: + - pos: -16.5,-10.5 + parent: 1 + type: Transform + - uid: 8082 + components: + - pos: -12.5,-13.5 + parent: 1 + type: Transform + - uid: 8083 + components: + - pos: -20.5,-10.5 + parent: 1 + type: Transform + - uid: 8085 + components: + - pos: -24.5,-4.5 + parent: 1 + type: Transform + - uid: 8086 + components: + - pos: -31.5,6.5 + parent: 1 + type: Transform + - uid: 8087 + components: + - pos: -24.5,4.5 + parent: 1 + type: Transform + - uid: 8088 + components: + - pos: -19.5,6.5 + parent: 1 + type: Transform + - uid: 8089 + components: + - pos: -14.5,5.5 + parent: 1 + type: Transform + - uid: 8090 + components: + - pos: -8.5,4.5 + parent: 1 + type: Transform + - uid: 8091 + components: + - pos: -4.5,6.5 + parent: 1 + type: Transform + - uid: 8092 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 8093 + components: + - pos: 7.5,5.5 + parent: 1 + type: Transform + - uid: 8094 + components: + - pos: 13.5,6.5 + parent: 1 + type: Transform + - uid: 8095 + components: + - pos: 19.5,5.5 + parent: 1 + type: Transform + - uid: 8096 + components: + - pos: 26.5,6.5 + parent: 1 + type: Transform + - uid: 8097 + components: + - pos: 28.5,10.5 + parent: 1 + type: Transform + - uid: 8098 + components: + - pos: 25.5,14.5 + parent: 1 + type: Transform + - uid: 8099 + components: + - pos: 27.5,18.5 + parent: 1 + type: Transform + - uid: 8100 + components: + - pos: 26.5,21.5 + parent: 1 + type: Transform + - uid: 8101 + components: + - pos: 22.5,15.5 + parent: 1 + type: Transform + - uid: 8102 + components: + - pos: 19.5,16.5 + parent: 1 + type: Transform + - uid: 8103 + components: + - pos: 16.5,20.5 + parent: 1 + type: Transform + - uid: 8104 + components: + - pos: 19.5,23.5 + parent: 1 + type: Transform + - uid: 8105 + components: + - pos: 23.5,25.5 + parent: 1 + type: Transform + - uid: 8106 + components: + - pos: 22.5,33.5 + parent: 1 + type: Transform + - uid: 8107 + components: + - pos: 23.5,35.5 + parent: 1 + type: Transform + - uid: 8108 + components: + - pos: 14.5,35.5 + parent: 1 + type: Transform + - uid: 8110 + components: + - pos: 9.5,39.5 + parent: 1 + type: Transform + - uid: 8111 + components: + - pos: 7.5,43.5 + parent: 1 + type: Transform + - uid: 8112 + components: + - pos: 6.5,46.5 + parent: 1 + type: Transform + - uid: 8113 + components: + - pos: 14.5,48.5 + parent: 1 + type: Transform + - uid: 8116 + components: + - pos: 11.5,51.5 + parent: 1 + type: Transform + - uid: 8117 + components: + - pos: 6.5,50.5 + parent: 1 + type: Transform + - uid: 8118 + components: + - pos: 4.5,52.5 + parent: 1 + type: Transform + - uid: 8119 + components: + - pos: -1.5,49.5 + parent: 1 + type: Transform + - uid: 8120 + components: + - pos: -0.5,53.5 + parent: 1 + type: Transform + - uid: 8121 + components: + - pos: -0.5,47.5 + parent: 1 + type: Transform + - uid: 8122 + components: + - pos: -2.5,40.5 + parent: 1 + type: Transform + - uid: 8123 + components: + - pos: -6.5,36.5 + parent: 1 + type: Transform + - uid: 8124 + components: + - pos: -5.5,47.5 + parent: 1 + type: Transform + - uid: 8125 + components: + - pos: -10.5,51.5 + parent: 1 + type: Transform + - uid: 8126 + components: + - pos: -12.5,53.5 + parent: 1 + type: Transform + - uid: 8127 + components: + - pos: -8.5,57.5 + parent: 1 + type: Transform + - uid: 8128 + components: + - pos: -5.5,59.5 + parent: 1 + type: Transform + - uid: 8129 + components: + - pos: -13.5,60.5 + parent: 1 + type: Transform + - uid: 8130 + components: + - pos: -17.5,64.5 + parent: 1 + type: Transform + - uid: 8131 + components: + - pos: -20.5,61.5 + parent: 1 + type: Transform + - uid: 8132 + components: + - pos: -17.5,56.5 + parent: 1 + type: Transform + - uid: 8133 + components: + - pos: -14.5,53.5 + parent: 1 + type: Transform + - uid: 8134 + components: + - pos: -22.5,55.5 + parent: 1 + type: Transform + - uid: 8135 + components: + - pos: -17.5,49.5 + parent: 1 + type: Transform + - uid: 8136 + components: + - pos: -16.5,42.5 + parent: 1 + type: Transform + - uid: 8137 + components: + - pos: -15.5,46.5 + parent: 1 + type: Transform + - uid: 8138 + components: + - pos: -12.5,47.5 + parent: 1 + type: Transform + - uid: 8139 + components: + - pos: -10.5,48.5 + parent: 1 + type: Transform + - uid: 8140 + components: + - pos: -15.5,39.5 + parent: 1 + type: Transform + - uid: 8141 + components: + - pos: -17.5,35.5 + parent: 1 + type: Transform + - uid: 8142 + components: + - pos: -13.5,39.5 + parent: 1 + type: Transform + - uid: 8143 + components: + - pos: -11.5,42.5 + parent: 1 + type: Transform + - uid: 8144 + components: + - pos: -4.5,33.5 + parent: 1 + type: Transform + - uid: 8145 + components: + - pos: -0.5,30.5 + parent: 1 + type: Transform + - uid: 8146 + components: + - pos: 2.5,33.5 + parent: 1 + type: Transform + - uid: 8147 + components: + - pos: 2.5,37.5 + parent: 1 + type: Transform + - uid: 8148 + components: + - pos: 1.5,40.5 + parent: 1 + type: Transform + - uid: 8149 + components: + - pos: 0.5,36.5 + parent: 1 + type: Transform + - uid: 8150 + components: + - pos: 7.5,37.5 + parent: 1 + type: Transform + - uid: 8151 + components: + - pos: 11.5,34.5 + parent: 1 + type: Transform + - uid: 8152 + components: + - pos: 4.5,28.5 + parent: 1 + type: Transform + - uid: 8153 + components: + - pos: 2.5,24.5 + parent: 1 + type: Transform + - uid: 8154 + components: + - pos: 4.5,19.5 + parent: 1 + type: Transform + - uid: 8155 + components: + - pos: -1.5,16.5 + parent: 1 + type: Transform + - uid: 8156 + components: + - pos: 2.5,15.5 + parent: 1 + type: Transform + - uid: 8157 + components: + - pos: -1.5,20.5 + parent: 1 + type: Transform + - uid: 8158 + components: + - pos: -3.5,26.5 + parent: 1 + type: Transform + - uid: 8159 + components: + - pos: -1.5,22.5 + parent: 1 + type: Transform + - uid: 8160 + components: + - pos: 10.5,20.5 + parent: 1 + type: Transform + - uid: 8161 + components: + - pos: 7.5,15.5 + parent: 1 + type: Transform + - uid: 8162 + components: + - pos: 10.5,14.5 + parent: 1 + type: Transform + - uid: 8163 + components: + - pos: 7.5,12.5 + parent: 1 + type: Transform + - uid: 8164 + components: + - pos: 11.5,11.5 + parent: 1 + type: Transform + - uid: 8165 + components: + - pos: 9.5,23.5 + parent: 1 + type: Transform + - uid: 8166 + components: + - pos: 7.5,25.5 + parent: 1 + type: Transform + - uid: 8167 + components: + - pos: 8.5,29.5 + parent: 1 + type: Transform + - uid: 8168 + components: + - pos: 11.5,28.5 + parent: 1 + type: Transform + - uid: 8169 + components: + - pos: 14.5,30.5 + parent: 1 + type: Transform + - uid: 8171 + components: + - pos: 18.5,29.5 + parent: 1 + type: Transform + - uid: 8172 + components: + - pos: -8.5,33.5 + parent: 1 + type: Transform + - uid: 8173 + components: + - pos: -12.5,30.5 + parent: 1 + type: Transform + - uid: 8174 + components: + - pos: -7.5,27.5 + parent: 1 + type: Transform + - uid: 8175 + components: + - pos: -17.5,32.5 + parent: 1 + type: Transform + - uid: 8176 + components: + - pos: -11.5,26.5 + parent: 1 + type: Transform + - uid: 8177 + components: + - pos: -13.5,22.5 + parent: 1 + type: Transform + - uid: 8178 + components: + - pos: -11.5,19.5 + parent: 1 + type: Transform + - uid: 8179 + components: + - pos: -13.5,16.5 + parent: 1 + type: Transform + - uid: 8180 + components: + - pos: -11.5,12.5 + parent: 1 + type: Transform + - uid: 8181 + components: + - pos: -13.5,9.5 + parent: 1 + type: Transform + - uid: 8182 + components: + - pos: -5.5,10.5 + parent: 1 + type: Transform + - uid: 8183 + components: + - pos: -4.5,15.5 + parent: 1 + type: Transform + - uid: 8184 + components: + - pos: -6.5,20.5 + parent: 1 + type: Transform + - uid: 8185 + components: + - pos: -7.5,24.5 + parent: 1 + type: Transform + - uid: 8186 + components: + - pos: 1.5,12.5 + parent: 1 + type: Transform + - uid: 8187 + components: + - pos: 6.5,9.5 + parent: 1 + type: Transform + - uid: 8188 + components: + - pos: 14.5,9.5 + parent: 1 + type: Transform + - uid: 8189 + components: + - pos: 13.5,16.5 + parent: 1 + type: Transform + - uid: 8190 + components: + - pos: 13.5,21.5 + parent: 1 + type: Transform + - uid: 8192 + components: + - pos: 19.5,12.5 + parent: 1 + type: Transform + - uid: 8193 + components: + - pos: 16.5,9.5 + parent: 1 + type: Transform + - uid: 8194 + components: + - pos: 13.5,2.5 + parent: 1 + type: Transform + - uid: 8195 + components: + - pos: 16.5,-1.5 + parent: 1 + type: Transform + - uid: 8196 + components: + - pos: 19.5,1.5 + parent: 1 + type: Transform + - uid: 8197 + components: + - pos: 19.5,-1.5 + parent: 1 + type: Transform + - uid: 8198 + components: + - pos: 7.5,-2.5 + parent: 1 + type: Transform + - uid: 8199 + components: + - pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 8200 + components: + - pos: 11.5,-0.5 + parent: 1 + type: Transform + - uid: 8201 + components: + - pos: -18.5,-2.5 + parent: 1 + type: Transform + - uid: 8202 + components: + - pos: -15.5,-4.5 + parent: 1 + type: Transform + - uid: 8203 + components: + - pos: -13.5,-2.5 + parent: 1 + type: Transform + - uid: 8204 + components: + - pos: -12.5,-5.5 + parent: 1 + type: Transform + - uid: 8205 + components: + - pos: -11.5,-7.5 + parent: 1 + type: Transform + - uid: 8206 + components: + - pos: -9.5,-1.5 + parent: 1 + type: Transform + - uid: 8207 + components: + - pos: -11.5,2.5 + parent: 1 + type: Transform + - uid: 8208 + components: + - pos: -5.5,-1.5 + parent: 1 + type: Transform + - uid: 8210 + components: + - pos: -4.5,-4.5 + parent: 1 + type: Transform + - uid: 8211 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 8213 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 8216 + components: + - pos: -1.5,-9.5 + parent: 1 + type: Transform + - uid: 8217 + components: + - pos: -4.5,-12.5 + parent: 1 + type: Transform + - uid: 8218 + components: + - pos: -11.5,-11.5 + parent: 1 + type: Transform + - uid: 8219 + components: + - pos: 0.5,-8.5 + parent: 1 + type: Transform + - uid: 8220 + components: + - pos: 4.5,-10.5 + parent: 1 + type: Transform + - uid: 8221 + components: + - pos: 2.5,-15.5 + parent: 1 + type: Transform + - uid: 8222 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 8223 + components: + - pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 8225 + components: + - pos: 16.5,-5.5 + parent: 1 + type: Transform + - uid: 8226 + components: + - pos: 19.5,-4.5 + parent: 1 + type: Transform + - uid: 8227 + components: + - pos: 24.5,-5.5 + parent: 1 + type: Transform + - uid: 8228 + components: + - pos: 27.5,-2.5 + parent: 1 + type: Transform + - uid: 8229 + components: + - pos: 29.5,-1.5 + parent: 1 + type: Transform + - uid: 8230 + components: + - pos: 19.5,-8.5 + parent: 1 + type: Transform + - uid: 8231 + components: + - pos: 24.5,-7.5 + parent: 1 + type: Transform + - uid: 8232 + components: + - pos: 29.5,-8.5 + parent: 1 + type: Transform + - uid: 8233 + components: + - pos: 15.5,-11.5 + parent: 1 + type: Transform + - uid: 8234 + components: + - pos: 13.5,-8.5 + parent: 1 + type: Transform + - uid: 8237 + components: + - pos: -7.5,11.5 + parent: 1 + type: Transform + - uid: 8238 + components: + - pos: -15.5,14.5 + parent: 1 + type: Transform + - uid: 8241 + components: + - pos: -16.5,20.5 + parent: 1 + type: Transform + - uid: 8242 + components: + - pos: -20.5,16.5 + parent: 1 + type: Transform + - uid: 8243 + components: + - pos: -19.5,11.5 + parent: 1 + type: Transform + - uid: 8244 + components: + - pos: -20.5,12.5 + parent: 1 + type: Transform + - uid: 8245 + components: + - pos: -18.5,19.5 + parent: 1 + type: Transform + - uid: 8246 + components: + - pos: -25.5,21.5 + parent: 1 + type: Transform + - uid: 8247 + components: + - pos: -19.5,24.5 + parent: 1 + type: Transform + - uid: 8248 + components: + - pos: -19.5,27.5 + parent: 1 + type: Transform + - uid: 8249 + components: + - pos: -15.5,28.5 + parent: 1 + type: Transform + - uid: 8250 + components: + - pos: -16.5,25.5 + parent: 1 + type: Transform + - uid: 8251 + components: + - pos: -15.5,23.5 + parent: 1 + type: Transform + - uid: 8252 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform + - uid: 8253 + components: + - pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 8254 + components: + - pos: -28.5,8.5 + parent: 1 + type: Transform + - uid: 8255 + components: + - pos: -24.5,10.5 + parent: 1 + type: Transform + - uid: 8256 + components: + - pos: -27.5,12.5 + parent: 1 + type: Transform + - uid: 8257 + components: + - pos: -22.5,12.5 + parent: 1 + type: Transform + - uid: 8258 + components: + - pos: -25.5,16.5 + parent: 1 + type: Transform + - uid: 8259 + components: + - pos: -22.5,17.5 + parent: 1 + type: Transform + - uid: 8260 + components: + - pos: -28.5,18.5 + parent: 1 + type: Transform + - uid: 8261 + components: + - pos: -33.5,9.5 + parent: 1 + type: Transform + - uid: 8262 + components: + - pos: -30.5,13.5 + parent: 1 + type: Transform + - uid: 8263 + components: + - pos: -32.5,16.5 + parent: 1 + type: Transform + - uid: 8265 + components: + - pos: -32.5,20.5 + parent: 1 + type: Transform + - uid: 8266 + components: + - pos: -29.5,21.5 + parent: 1 + type: Transform + - uid: 8267 + components: + - pos: -28.5,24.5 + parent: 1 + type: Transform + - uid: 8268 + components: + - pos: -33.5,25.5 + parent: 1 + type: Transform + - uid: 8269 + components: + - pos: -32.5,28.5 + parent: 1 + type: Transform + - uid: 8270 + components: + - pos: -36.5,24.5 + parent: 1 + type: Transform + - uid: 8271 + components: + - pos: -30.5,29.5 + parent: 1 + type: Transform + - uid: 8272 + components: + - pos: -24.5,27.5 + parent: 1 + type: Transform + - uid: 8273 + components: + - pos: -26.5,28.5 + parent: 1 + type: Transform + - uid: 8274 + components: + - pos: -27.5,36.5 + parent: 1 + type: Transform + - uid: 8275 + components: + - pos: -42.5,27.5 + parent: 1 + type: Transform + - uid: 8276 + components: + - pos: -40.5,24.5 + parent: 1 + type: Transform + - uid: 8277 + components: + - pos: -44.5,27.5 + parent: 1 + type: Transform + - uid: 8279 + components: + - pos: -44.5,18.5 + parent: 1 + type: Transform + - uid: 8280 + components: + - pos: -41.5,18.5 + parent: 1 + type: Transform + - uid: 8281 + components: + - pos: -42.5,21.5 + parent: 1 + type: Transform + - uid: 8282 + components: + - pos: -50.5,21.5 + parent: 1 + type: Transform + - uid: 8283 + components: + - pos: -44.5,10.5 + parent: 1 + type: Transform + - uid: 8284 + components: + - pos: -48.5,14.5 + parent: 1 + type: Transform + - uid: 8285 + components: + - pos: -41.5,10.5 + parent: 1 + type: Transform + - uid: 8286 + components: + - pos: -41.5,15.5 + parent: 1 + type: Transform + - uid: 8291 + components: + - pos: -53.5,1.5 + parent: 1 + type: Transform + - uid: 8292 + components: + - pos: -48.5,1.5 + parent: 1 + type: Transform + - uid: 8293 + components: + - pos: -48.5,-3.5 + parent: 1 + type: Transform + - uid: 8294 + components: + - pos: -48.5,-7.5 + parent: 1 + type: Transform + - uid: 8295 + components: + - pos: -51.5,-9.5 + parent: 1 + type: Transform + - uid: 8296 + components: + - pos: -48.5,-10.5 + parent: 1 + type: Transform + - uid: 8297 + components: + - pos: -56.5,9.5 + parent: 1 + type: Transform + - uid: 8298 + components: + - pos: -57.5,14.5 + parent: 1 + type: Transform + - uid: 8299 + components: + - pos: -57.5,19.5 + parent: 1 + type: Transform + - uid: 8300 + components: + - pos: -56.5,24.5 + parent: 1 + type: Transform + - uid: 8301 + components: + - pos: -58.5,26.5 + parent: 1 + type: Transform + - uid: 8302 + components: + - pos: -57.5,30.5 + parent: 1 + type: Transform + - uid: 8303 + components: + - pos: -54.5,32.5 + parent: 1 + type: Transform + - uid: 8304 + components: + - pos: -49.5,32.5 + parent: 1 + type: Transform + - uid: 8305 + components: + - pos: -45.5,32.5 + parent: 1 + type: Transform + - uid: 8306 + components: + - pos: -41.5,31.5 + parent: 1 + type: Transform + - uid: 8307 + components: + - pos: -41.5,33.5 + parent: 1 + type: Transform + - uid: 8308 + components: + - pos: -48.5,35.5 + parent: 1 + type: Transform + - uid: 8309 + components: + - pos: -46.5,40.5 + parent: 1 + type: Transform + - uid: 8310 + components: + - pos: -47.5,44.5 + parent: 1 + type: Transform + - uid: 8311 + components: + - pos: -49.5,46.5 + parent: 1 + type: Transform + - uid: 8312 + components: + - pos: -46.5,51.5 + parent: 1 + type: Transform + - uid: 8313 + components: + - pos: -54.5,47.5 + parent: 1 + type: Transform + - uid: 8315 + components: + - pos: -57.5,44.5 + parent: 1 + type: Transform + - uid: 8316 + components: + - pos: -57.5,40.5 + parent: 1 + type: Transform + - uid: 8317 + components: + - pos: -56.5,39.5 + parent: 1 + type: Transform + - uid: 8318 + components: + - pos: -58.5,36.5 + parent: 1 + type: Transform + - uid: 8319 + components: + - pos: -52.5,43.5 + parent: 1 + type: Transform + - uid: 8320 + components: + - pos: -44.5,51.5 + parent: 1 + type: Transform + - uid: 8321 + components: + - pos: -40.5,55.5 + parent: 1 + type: Transform + - uid: 8322 + components: + - pos: -35.5,55.5 + parent: 1 + type: Transform + - uid: 8323 + components: + - pos: -32.5,52.5 + parent: 1 + type: Transform + - uid: 8327 + components: + - pos: -27.5,50.5 + parent: 1 + type: Transform + - uid: 8328 + components: + - pos: -28.5,54.5 + parent: 1 + type: Transform + - uid: 8329 + components: + - pos: -20.5,51.5 + parent: 1 + type: Transform + - uid: 8330 + components: + - pos: -25.5,47.5 + parent: 1 + type: Transform + - uid: 8331 + components: + - pos: -25.5,39.5 + parent: 1 + type: Transform + - uid: 8332 + components: + - pos: -24.5,42.5 + parent: 1 + type: Transform + - uid: 8333 + components: + - pos: -24.5,36.5 + parent: 1 + type: Transform + - uid: 8334 + components: + - pos: -22.5,39.5 + parent: 1 + type: Transform + - uid: 8335 + components: + - pos: -20.5,41.5 + parent: 1 + type: Transform + - uid: 8336 + components: + - pos: -21.5,44.5 + parent: 1 + type: Transform + - uid: 8337 + components: + - pos: -20.5,48.5 + parent: 1 + type: Transform + - uid: 8338 + components: + - pos: -21.5,31.5 + parent: 1 + type: Transform + - uid: 8339 + components: + - pos: -25.5,32.5 + parent: 1 + type: Transform + - uid: 8340 + components: + - pos: -20.5,35.5 + parent: 1 + type: Transform + - uid: 8341 + components: + - pos: -31.5,33.5 + parent: 1 + type: Transform + - uid: 8342 + components: + - pos: -34.5,31.5 + parent: 1 + type: Transform + - uid: 8343 + components: + - pos: -51.5,24.5 + parent: 1 + type: Transform + - uid: 8344 + components: + - pos: -49.5,27.5 + parent: 1 + type: Transform + - uid: 8345 + components: + - pos: -53.5,28.5 + parent: 1 + type: Transform + - uid: 8346 + components: + - pos: -33.5,-3.5 + parent: 1 + type: Transform + - uid: 9000 + components: + - pos: -32.5,-6.5 + parent: 1 + type: Transform + - uid: 9105 + components: + - pos: -57.5,84.5 + parent: 1 + type: Transform + - uid: 9106 + components: + - pos: -60.5,84.5 + parent: 1 + type: Transform + - uid: 9107 + components: + - pos: -59.5,87.5 + parent: 1 + type: Transform + - uid: 9108 + components: + - pos: -57.5,88.5 + parent: 1 + type: Transform + - uid: 9109 + components: + - pos: -54.5,89.5 + parent: 1 + type: Transform + - uid: 9110 + components: + - pos: -55.5,82.5 + parent: 1 + type: Transform + - uid: 9111 + components: + - pos: -55.5,86.5 + parent: 1 + type: Transform + - uid: 9112 + components: + - pos: -51.5,89.5 + parent: 1 + type: Transform + - uid: 9113 + components: + - pos: -52.5,85.5 + parent: 1 + type: Transform + - uid: 9114 + components: + - pos: -50.5,82.5 + parent: 1 + type: Transform + - uid: 9115 + components: + - pos: -54.5,79.5 + parent: 1 + type: Transform + - uid: 9116 + components: + - pos: -50.5,80.5 + parent: 1 + type: Transform + - uid: 9117 + components: + - pos: -52.5,76.5 + parent: 1 + type: Transform + - uid: 9118 + components: + - pos: -50.5,73.5 + parent: 1 + type: Transform + - uid: 9119 + components: + - pos: -52.5,72.5 + parent: 1 + type: Transform + - uid: 9120 + components: + - pos: -51.5,68.5 + parent: 1 + type: Transform + - uid: 9121 + components: + - pos: -47.5,67.5 + parent: 1 + type: Transform + - uid: 9122 + components: + - pos: -52.5,64.5 + parent: 1 + type: Transform + - uid: 9123 + components: + - pos: -50.5,60.5 + parent: 1 + type: Transform + - uid: 9125 + components: + - pos: -59.5,61.5 + parent: 1 + type: Transform + - uid: 9126 + components: + - pos: -61.5,65.5 + parent: 1 + type: Transform + - uid: 9127 + components: + - pos: -55.5,65.5 + parent: 1 + type: Transform + - uid: 9128 + components: + - pos: -54.5,63.5 + parent: 1 + type: Transform + - uid: 9130 + components: + - pos: -43.5,62.5 + parent: 1 + type: Transform + - uid: 9131 + components: + - pos: -42.5,64.5 + parent: 1 + type: Transform + - uid: 9132 + components: + - pos: -46.5,58.5 + parent: 1 + type: Transform + - uid: 9133 + components: + - pos: -48.5,61.5 + parent: 1 + type: Transform + - uid: 9134 + components: + - pos: -50.5,58.5 + parent: 1 + type: Transform + - uid: 9135 + components: + - pos: -55.5,55.5 + parent: 1 + type: Transform + - uid: 9136 + components: + - pos: -51.5,54.5 + parent: 1 + type: Transform + - uid: 9137 + components: + - pos: -59.5,55.5 + parent: 1 + type: Transform + - uid: 9138 + components: + - pos: -62.5,53.5 + parent: 1 + type: Transform + - uid: 9139 + components: + - pos: -59.5,51.5 + parent: 1 + type: Transform + - uid: 9140 + components: + - pos: -65.5,54.5 + parent: 1 + type: Transform + - uid: 9141 + components: + - pos: -50.5,50.5 + parent: 1 + type: Transform + - uid: 9142 + components: + - pos: -54.5,52.5 + parent: 1 + type: Transform + - uid: 9143 + components: + - pos: -53.5,49.5 + parent: 1 + type: Transform + - uid: 9144 + components: + - pos: -56.5,50.5 + parent: 1 + type: Transform + - uid: 9145 + components: + - pos: -46.5,54.5 + parent: 1 + type: Transform + - uid: 9282 + components: + - pos: 20.5,30.5 + parent: 1 + type: Transform + - uid: 14370 + components: + - pos: -72.5,54.5 + parent: 1 + type: Transform + - uid: 14371 + components: + - pos: -69.5,55.5 + parent: 1 + type: Transform + - uid: 14372 + components: + - pos: -70.5,51.5 + parent: 1 + type: Transform + - uid: 14373 + components: + - pos: -75.5,52.5 + parent: 1 + type: Transform + - uid: 14374 + components: + - pos: -75.5,47.5 + parent: 1 + type: Transform + - uid: 14375 + components: + - pos: -74.5,44.5 + parent: 1 + type: Transform + - uid: 14376 + components: + - pos: -74.5,39.5 + parent: 1 + type: Transform + - uid: 14377 + components: + - pos: -75.5,38.5 + parent: 1 + type: Transform + - uid: 14378 + components: + - pos: -69.5,41.5 + parent: 1 + type: Transform + - uid: 14379 + components: + - pos: -71.5,40.5 + parent: 1 + type: Transform + - uid: 14380 + components: + - pos: -71.5,44.5 + parent: 1 + type: Transform + - uid: 14381 + components: + - pos: -66.5,46.5 + parent: 1 + type: Transform + - uid: 14382 + components: + - pos: -62.5,47.5 + parent: 1 + type: Transform + - uid: 14383 + components: + - pos: -67.5,50.5 + parent: 1 + type: Transform + - uid: 14384 + components: + - pos: -67.5,55.5 + parent: 1 + type: Transform + - uid: 14385 + components: + - pos: -67.5,41.5 + parent: 1 + type: Transform + - uid: 14386 + components: + - pos: -66.5,38.5 + parent: 1 + type: Transform + - uid: 14387 + components: + - pos: -68.5,37.5 + parent: 1 + type: Transform + - uid: 14388 + components: + - pos: -62.5,36.5 + parent: 1 + type: Transform + - uid: 14389 + components: + - pos: -60.5,38.5 + parent: 1 + type: Transform + - uid: 14390 + components: + - pos: -63.5,40.5 + parent: 1 + type: Transform + - uid: 14391 + components: + - pos: -61.5,44.5 + parent: 1 + type: Transform + - uid: 14392 + components: + - pos: -63.5,44.5 + parent: 1 + type: Transform + - uid: 14394 + components: + - pos: -80.5,30.5 + parent: 1 + type: Transform + - uid: 14395 + components: + - pos: -77.5,32.5 + parent: 1 + type: Transform + - uid: 14396 + components: + - pos: -80.5,33.5 + parent: 1 + type: Transform + - uid: 14403 + components: + - pos: -74.5,35.5 + parent: 1 + type: Transform + - uid: 14404 + components: + - pos: -71.5,34.5 + parent: 1 + type: Transform + - uid: 14405 + components: + - pos: -66.5,33.5 + parent: 1 + type: Transform + - uid: 14406 + components: + - pos: -64.5,34.5 + parent: 1 + type: Transform + - uid: 14407 + components: + - pos: -64.5,27.5 + parent: 1 + type: Transform + - uid: 14408 + components: + - pos: -66.5,29.5 + parent: 1 + type: Transform + - uid: 14410 + components: + - pos: -70.5,29.5 + parent: 1 + type: Transform + - uid: 14411 + components: + - pos: -73.5,31.5 + parent: 1 + type: Transform + - uid: 14412 + components: + - pos: -74.5,26.5 + parent: 1 + type: Transform + - uid: 14413 + components: + - pos: -73.5,22.5 + parent: 1 + type: Transform + - uid: 14414 + components: + - pos: -74.5,19.5 + parent: 1 + type: Transform + - uid: 14415 + components: + - pos: -70.5,19.5 + parent: 1 + type: Transform + - uid: 14416 + components: + - pos: -67.5,23.5 + parent: 1 + type: Transform + - uid: 14417 + components: + - pos: -67.5,20.5 + parent: 1 + type: Transform + - uid: 14418 + components: + - pos: -64.5,21.5 + parent: 1 + type: Transform + - uid: 14419 + components: + - pos: -79.5,22.5 + parent: 1 + type: Transform + - uid: 14423 + components: + - pos: -80.5,19.5 + parent: 1 + type: Transform + - uid: 14424 + components: + - pos: -77.5,20.5 + parent: 1 + type: Transform + - uid: 14950 + components: + - pos: -70.5,25.5 + parent: 1 + type: Transform + - uid: 14967 + components: + - pos: 15.5,26.5 + parent: 1 + type: Transform + - uid: 15021 + components: + - pos: 11.5,-5.5 + parent: 1 + type: Transform + - uid: 15067 + components: + - pos: -44.5,21.5 + parent: 1 + type: Transform + - uid: 15075 + components: + - pos: -16.5,8.5 + parent: 1 + type: Transform + - uid: 15782 + components: + - pos: -44.5,-10.5 + parent: 1 + type: Transform + - uid: 15791 + components: + - pos: -47.5,64.5 + parent: 1 + type: Transform + - uid: 15846 + components: + - pos: 21.5,41.5 + parent: 1 + type: Transform + - uid: 15912 + components: + - pos: 16.5,34.5 + parent: 1 + type: Transform + - uid: 15916 + components: + - pos: 14.5,38.5 + parent: 1 + type: Transform +- proto: RCD + entities: + - uid: 13615 + components: + - pos: -73.40199,15.605122 + parent: 1 + type: Transform +- proto: RCDAmmo + entities: + - uid: 13616 + components: + - pos: -73.65199,15.448872 + parent: 1 + type: Transform + - uid: 13617 + components: + - pos: -73.54262,15.464497 + parent: 1 + type: Transform + - uid: 13618 + components: + - pos: -73.37074,15.464497 + parent: 1 + type: Transform +- proto: ReagentContainerFlour + entities: + - uid: 6954 + components: + - pos: -36.304527,44.574997 + parent: 1 + type: Transform + - uid: 6955 + components: + - pos: -33.757652,44.762497 + parent: 1 + type: Transform +- proto: ReagentContainerMilk + entities: + - uid: 5276 + components: + - pos: -52.395008,21.71115 + parent: 1 + type: Transform +- proto: ReagentContainerSugar + entities: + - uid: 6956 + components: + - pos: -35.288902,45.293747 + parent: 1 + type: Transform +- proto: Recycler + entities: + - uid: 14224 + components: + - rot: 3.141592653589793 rad + pos: -73.5,55.5 + parent: 1 + type: Transform + - links: + - 14233 + type: DeviceLinkSink +- proto: ReinforcedGirder + entities: + - uid: 128 + components: + - pos: -10.5,-13.5 + parent: 1 + type: Transform + - uid: 199 + components: + - pos: 2.5,-16.5 + parent: 1 + type: Transform + - uid: 208 + components: + - pos: 6.5,-7.5 + parent: 1 + type: Transform + - uid: 413 + components: + - pos: -10.5,-8.5 + parent: 1 + type: Transform + - uid: 3493 + components: + - pos: -30.5,51.5 + parent: 1 + type: Transform + - uid: 5533 + components: + - pos: -45.5,60.5 + parent: 1 + type: Transform +- proto: ReinforcedPlasmaWindow + entities: + - uid: 10827 + components: + - rot: -1.5707963267948966 rad + pos: -87.5,35.5 + parent: 1 + type: Transform + - uid: 10828 + components: + - rot: -1.5707963267948966 rad + pos: -87.5,37.5 + parent: 1 + type: Transform + - uid: 10829 + components: + - rot: -1.5707963267948966 rad + pos: -87.5,39.5 + parent: 1 + type: Transform + - uid: 10830 + components: + - rot: -1.5707963267948966 rad + pos: -87.5,41.5 + parent: 1 + type: Transform + - uid: 10831 + components: + - rot: -1.5707963267948966 rad + pos: -87.5,43.5 + parent: 1 + type: Transform + - uid: 10832 + components: + - rot: -1.5707963267948966 rad + pos: -87.5,45.5 + parent: 1 + type: Transform + - uid: 14832 + components: + - pos: 9.5,-15.5 + parent: 1 + type: Transform + - uid: 14834 + components: + - pos: 10.5,-15.5 + parent: 1 + type: Transform + - uid: 15009 + components: + - pos: 12.5,-13.5 + parent: 1 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 16 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 119 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-15.5 + parent: 1 + type: Transform + - uid: 121 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-15.5 + parent: 1 + type: Transform + - uid: 122 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-15.5 + parent: 1 + type: Transform + - uid: 194 + components: + - pos: 2.5,-12.5 + parent: 1 + type: Transform + - uid: 195 + components: + - pos: 0.5,-12.5 + parent: 1 + type: Transform + - uid: 708 + components: + - pos: 30.5,3.5 + parent: 1 + type: Transform + - uid: 709 + components: + - pos: 30.5,2.5 + parent: 1 + type: Transform + - uid: 710 + components: + - pos: 30.5,1.5 + parent: 1 + type: Transform + - uid: 944 + components: + - rot: 3.141592653589793 rad + pos: 29.5,5.5 + parent: 1 + type: Transform + - uid: 945 + components: + - rot: 3.141592653589793 rad + pos: 29.5,6.5 + parent: 1 + type: Transform + - uid: 965 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,17.5 + parent: 1 + type: Transform + - uid: 966 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,17.5 + parent: 1 + type: Transform + - uid: 972 + components: + - rot: 3.141592653589793 rad + pos: 29.5,12.5 + parent: 1 + type: Transform + - uid: 973 + components: + - rot: 3.141592653589793 rad + pos: 29.5,13.5 + parent: 1 + type: Transform + - uid: 974 + components: + - rot: 3.141592653589793 rad + pos: 29.5,14.5 + parent: 1 + type: Transform + - uid: 980 + components: + - rot: 3.141592653589793 rad + pos: 29.5,21.5 + parent: 1 + type: Transform + - uid: 981 + components: + - rot: 3.141592653589793 rad + pos: 29.5,20.5 + parent: 1 + type: Transform + - uid: 1263 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,24.5 + parent: 1 + type: Transform + - uid: 1270 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,28.5 + parent: 1 + type: Transform + - uid: 1271 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,28.5 + parent: 1 + type: Transform + - uid: 1272 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,28.5 + parent: 1 + type: Transform + - uid: 1886 + components: + - pos: 13.5,29.5 + parent: 1 + type: Transform + - uid: 2665 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-14.5 + parent: 1 + type: Transform + - uid: 2819 + components: + - pos: -14.5,23.5 + parent: 1 + type: Transform + - uid: 2821 + components: + - pos: -14.5,24.5 + parent: 1 + type: Transform + - uid: 2824 + components: + - pos: -14.5,28.5 + parent: 1 + type: Transform + - uid: 2825 + components: + - pos: -17.5,30.5 + parent: 1 + type: Transform + - uid: 2826 + components: + - pos: -14.5,29.5 + parent: 1 + type: Transform + - uid: 2830 + components: + - pos: -16.5,30.5 + parent: 1 + type: Transform + - uid: 2989 + components: + - pos: -44.5,65.5 + parent: 1 + type: Transform + - uid: 3358 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-12.5 + parent: 1 + type: Transform + - uid: 3455 + components: + - pos: -20.5,36.5 + parent: 1 + type: Transform + - uid: 3524 + components: + - pos: -49.5,-14.5 + parent: 1 + type: Transform + - uid: 3564 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-14.5 + parent: 1 + type: Transform + - uid: 3567 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-14.5 + parent: 1 + type: Transform + - uid: 3634 + components: + - pos: -47.5,-11.5 + parent: 1 + type: Transform + - uid: 3675 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-13.5 + parent: 1 + type: Transform + - uid: 3697 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-14.5 + parent: 1 + type: Transform + - uid: 3714 + components: + - pos: -42.5,-14.5 + parent: 1 + type: Transform + - uid: 4308 + components: + - pos: -48.5,23.5 + parent: 1 + type: Transform + - uid: 4309 + components: + - pos: -46.5,23.5 + parent: 1 + type: Transform + - uid: 4310 + components: + - pos: -46.5,24.5 + parent: 1 + type: Transform + - uid: 4311 + components: + - pos: -46.5,25.5 + parent: 1 + type: Transform + - uid: 4326 + components: + - pos: -48.5,25.5 + parent: 1 + type: Transform + - uid: 4532 + components: + - pos: -49.5,-11.5 + parent: 1 + type: Transform + - uid: 4540 + components: + - pos: -61.5,-8.5 + parent: 1 + type: Transform + - uid: 4541 + components: + - pos: -60.5,-8.5 + parent: 1 + type: Transform + - uid: 4576 + components: + - pos: -48.5,24.5 + parent: 1 + type: Transform + - uid: 4578 + components: + - pos: 22.5,36.5 + parent: 1 + type: Transform + - uid: 4592 + components: + - pos: 16.5,42.5 + parent: 1 + type: Transform + - uid: 4597 + components: + - pos: 23.5,36.5 + parent: 1 + type: Transform + - uid: 4598 + components: + - pos: 16.5,43.5 + parent: 1 + type: Transform + - uid: 4817 + components: + - pos: -59.5,-6.5 + parent: 1 + type: Transform + - uid: 4818 + components: + - pos: -59.5,-5.5 + parent: 1 + type: Transform + - uid: 4819 + components: + - pos: -59.5,-4.5 + parent: 1 + type: Transform + - uid: 4820 + components: + - pos: -59.5,-3.5 + parent: 1 + type: Transform + - uid: 4821 + components: + - pos: -59.5,-2.5 + parent: 1 + type: Transform + - uid: 4822 + components: + - pos: -59.5,-1.5 + parent: 1 + type: Transform + - uid: 4823 + components: + - pos: -59.5,-0.5 + parent: 1 + type: Transform + - uid: 4824 + components: + - pos: -59.5,0.5 + parent: 1 + type: Transform + - uid: 4825 + components: + - pos: -59.5,1.5 + parent: 1 + type: Transform + - uid: 4826 + components: + - pos: -59.5,2.5 + parent: 1 + type: Transform + - uid: 4837 + components: + - pos: -60.5,3.5 + parent: 1 + type: Transform + - uid: 4838 + components: + - pos: -61.5,3.5 + parent: 1 + type: Transform + - uid: 4839 + components: + - pos: -62.5,3.5 + parent: 1 + type: Transform + - uid: 4840 + components: + - pos: -63.5,3.5 + parent: 1 + type: Transform + - uid: 4841 + components: + - pos: -64.5,3.5 + parent: 1 + type: Transform + - uid: 4845 + components: + - pos: -68.5,3.5 + parent: 1 + type: Transform + - uid: 4846 + components: + - pos: -69.5,3.5 + parent: 1 + type: Transform + - uid: 4847 + components: + - pos: -70.5,3.5 + parent: 1 + type: Transform + - uid: 4848 + components: + - pos: -71.5,3.5 + parent: 1 + type: Transform + - uid: 4852 + components: + - pos: -75.5,3.5 + parent: 1 + type: Transform + - uid: 4863 + components: + - pos: -59.5,-7.5 + parent: 1 + type: Transform + - uid: 4882 + components: + - pos: -65.5,-13.5 + parent: 1 + type: Transform + - uid: 4891 + components: + - pos: -68.5,-8.5 + parent: 1 + type: Transform + - uid: 4892 + components: + - pos: -69.5,-8.5 + parent: 1 + type: Transform + - uid: 4893 + components: + - pos: -71.5,-8.5 + parent: 1 + type: Transform + - uid: 4903 + components: + - pos: -62.5,-8.5 + parent: 1 + type: Transform + - uid: 4911 + components: + - pos: -70.5,-8.5 + parent: 1 + type: Transform + - uid: 4922 + components: + - rot: 3.141592653589793 rad + pos: -70.5,-12.5 + parent: 1 + type: Transform + - uid: 4923 + components: + - rot: 3.141592653589793 rad + pos: -69.5,-12.5 + parent: 1 + type: Transform + - uid: 4930 + components: + - rot: 3.141592653589793 rad + pos: -60.5,-12.5 + parent: 1 + type: Transform + - uid: 4935 + components: + - rot: 3.141592653589793 rad + pos: -61.5,-12.5 + parent: 1 + type: Transform + - uid: 4937 + components: + - rot: 3.141592653589793 rad + pos: -58.5,-12.5 + parent: 1 + type: Transform + - uid: 4938 + components: + - pos: -65.5,-14.5 + parent: 1 + type: Transform + - uid: 4943 + components: + - rot: 3.141592653589793 rad + pos: -57.5,-12.5 + parent: 1 + type: Transform + - uid: 4946 + components: + - rot: 3.141592653589793 rad + pos: -62.5,-12.5 + parent: 1 + type: Transform + - uid: 4947 + components: + - pos: -75.5,-8.5 + parent: 1 + type: Transform + - uid: 4961 + components: + - pos: -63.5,-8.5 + parent: 1 + type: Transform + - uid: 4966 + components: + - pos: -64.5,-8.5 + parent: 1 + type: Transform + - uid: 4968 + components: + - rot: 3.141592653589793 rad + pos: -68.5,-12.5 + parent: 1 + type: Transform + - uid: 4978 + components: + - pos: -73.5,-14.5 + parent: 1 + type: Transform + - uid: 4982 + components: + - pos: -73.5,-13.5 + parent: 1 + type: Transform + - uid: 5069 + components: + - pos: -76.5,4.5 + parent: 1 + type: Transform + - uid: 5070 + components: + - pos: -76.5,5.5 + parent: 1 + type: Transform + - uid: 5071 + components: + - pos: -76.5,6.5 + parent: 1 + type: Transform + - uid: 5172 + components: + - pos: -75.5,7.5 + parent: 1 + type: Transform + - uid: 5174 + components: + - pos: -74.5,7.5 + parent: 1 + type: Transform + - uid: 5760 + components: + - pos: -50.5,48.5 + parent: 1 + type: Transform + - uid: 5763 + components: + - pos: -51.5,48.5 + parent: 1 + type: Transform + - uid: 5766 + components: + - pos: -53.5,48.5 + parent: 1 + type: Transform + - uid: 5768 + components: + - pos: -54.5,48.5 + parent: 1 + type: Transform + - uid: 5770 + components: + - pos: -56.5,48.5 + parent: 1 + type: Transform + - uid: 5820 + components: + - pos: -14.5,46.5 + parent: 1 + type: Transform + - uid: 5822 + components: + - pos: -18.5,46.5 + parent: 1 + type: Transform + - uid: 5827 + components: + - pos: -21.5,36.5 + parent: 1 + type: Transform + - uid: 5831 + components: + - pos: -18.5,47.5 + parent: 1 + type: Transform + - uid: 5832 + components: + - pos: -18.5,48.5 + parent: 1 + type: Transform + - uid: 5833 + components: + - pos: -22.5,36.5 + parent: 1 + type: Transform + - uid: 5900 + components: + - pos: -14.5,49.5 + parent: 1 + type: Transform + - uid: 5939 + components: + - pos: -2.5,49.5 + parent: 1 + type: Transform + - uid: 5949 + components: + - pos: -2.5,50.5 + parent: 1 + type: Transform + - uid: 5950 + components: + - pos: -2.5,51.5 + parent: 1 + type: Transform + - uid: 5951 + components: + - pos: -2.5,52.5 + parent: 1 + type: Transform + - uid: 5952 + components: + - pos: -2.5,53.5 + parent: 1 + type: Transform + - uid: 5960 + components: + - pos: -1.5,54.5 + parent: 1 + type: Transform + - uid: 5961 + components: + - pos: -0.5,54.5 + parent: 1 + type: Transform + - uid: 5962 + components: + - pos: 0.5,54.5 + parent: 1 + type: Transform + - uid: 6016 + components: + - pos: 16.5,53.5 + parent: 1 + type: Transform + - uid: 6017 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,51.5 + parent: 1 + type: Transform + - uid: 6018 + components: + - pos: 13.5,53.5 + parent: 1 + type: Transform + - uid: 6019 + components: + - pos: 14.5,53.5 + parent: 1 + type: Transform + - uid: 6020 + components: + - pos: 15.5,53.5 + parent: 1 + type: Transform + - uid: 6023 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,53.5 + parent: 1 + type: Transform + - uid: 6024 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,50.5 + parent: 1 + type: Transform + - uid: 6040 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,53.5 + parent: 1 + type: Transform + - uid: 6041 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,53.5 + parent: 1 + type: Transform + - uid: 6042 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,52.5 + parent: 1 + type: Transform + - uid: 6351 + components: + - rot: 3.141592653589793 rad + pos: -13.5,53.5 + parent: 1 + type: Transform + - uid: 6353 + components: + - rot: 3.141592653589793 rad + pos: -13.5,56.5 + parent: 1 + type: Transform + - uid: 6354 + components: + - rot: 3.141592653589793 rad + pos: -13.5,54.5 + parent: 1 + type: Transform + - uid: 6357 + components: + - rot: 3.141592653589793 rad + pos: -13.5,57.5 + parent: 1 + type: Transform + - uid: 6388 + components: + - rot: 3.141592653589793 rad + pos: -16.5,58.5 + parent: 1 + type: Transform + - uid: 6400 + components: + - pos: -4.5,60.5 + parent: 1 + type: Transform + - uid: 6401 + components: + - pos: -4.5,61.5 + parent: 1 + type: Transform + - uid: 6403 + components: + - pos: -5.5,62.5 + parent: 1 + type: Transform + - uid: 6404 + components: + - pos: -6.5,62.5 + parent: 1 + type: Transform + - uid: 6405 + components: + - pos: -7.5,62.5 + parent: 1 + type: Transform + - uid: 6406 + components: + - pos: -8.5,62.5 + parent: 1 + type: Transform + - uid: 6407 + components: + - pos: -9.5,62.5 + parent: 1 + type: Transform + - uid: 6435 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,64.5 + parent: 1 + type: Transform + - uid: 6436 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,65.5 + parent: 1 + type: Transform + - uid: 6437 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,65.5 + parent: 1 + type: Transform + - uid: 6438 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,66.5 + parent: 1 + type: Transform + - uid: 6439 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,66.5 + parent: 1 + type: Transform + - uid: 6440 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,67.5 + parent: 1 + type: Transform + - uid: 6441 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,67.5 + parent: 1 + type: Transform + - uid: 6442 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,67.5 + parent: 1 + type: Transform + - uid: 6443 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,67.5 + parent: 1 + type: Transform + - uid: 6444 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,67.5 + parent: 1 + type: Transform + - uid: 6445 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,67.5 + parent: 1 + type: Transform + - uid: 6446 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,67.5 + parent: 1 + type: Transform + - uid: 6447 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,66.5 + parent: 1 + type: Transform + - uid: 6448 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,66.5 + parent: 1 + type: Transform + - uid: 6449 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,65.5 + parent: 1 + type: Transform + - uid: 6450 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,65.5 + parent: 1 + type: Transform + - uid: 6451 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,64.5 + parent: 1 + type: Transform + - uid: 6454 + components: + - pos: -22.5,62.5 + parent: 1 + type: Transform + - uid: 6455 + components: + - pos: -22.5,61.5 + parent: 1 + type: Transform + - uid: 6456 + components: + - pos: -22.5,60.5 + parent: 1 + type: Transform + - uid: 6970 + components: + - pos: -56.5,59.5 + parent: 1 + type: Transform + - uid: 6971 + components: + - pos: -55.5,59.5 + parent: 1 + type: Transform + - uid: 6972 + components: + - pos: -54.5,59.5 + parent: 1 + type: Transform + - uid: 6982 + components: + - pos: -48.5,56.5 + parent: 1 + type: Transform + - uid: 6983 + components: + - pos: -46.5,56.5 + parent: 1 + type: Transform + - uid: 6986 + components: + - pos: -50.5,52.5 + parent: 1 + type: Transform + - uid: 6987 + components: + - pos: -53.5,52.5 + parent: 1 + type: Transform + - uid: 6988 + components: + - pos: -56.5,52.5 + parent: 1 + type: Transform + - uid: 7012 + components: + - pos: -46.5,63.5 + parent: 1 + type: Transform + - uid: 7013 + components: + - pos: -48.5,63.5 + parent: 1 + type: Transform + - uid: 7148 + components: + - pos: -53.5,63.5 + parent: 1 + type: Transform + - uid: 7149 + components: + - pos: -53.5,64.5 + parent: 1 + type: Transform + - uid: 7150 + components: + - pos: -53.5,65.5 + parent: 1 + type: Transform + - uid: 7154 + components: + - pos: -61.5,66.5 + parent: 1 + type: Transform + - uid: 7155 + components: + - pos: -60.5,66.5 + parent: 1 + type: Transform + - uid: 7156 + components: + - pos: -59.5,66.5 + parent: 1 + type: Transform + - uid: 7163 + components: + - pos: -58.5,62.5 + parent: 1 + type: Transform + - uid: 7164 + components: + - pos: -58.5,66.5 + parent: 1 + type: Transform + - uid: 7170 + components: + - pos: -56.5,66.5 + parent: 1 + type: Transform + - uid: 7171 + components: + - pos: -55.5,66.5 + parent: 1 + type: Transform + - uid: 7172 + components: + - pos: -54.5,66.5 + parent: 1 + type: Transform + - uid: 7177 + components: + - pos: -56.5,62.5 + parent: 1 + type: Transform + - uid: 7178 + components: + - pos: -54.5,62.5 + parent: 1 + type: Transform + - uid: 7237 + components: + - pos: -58.5,54.5 + parent: 1 + type: Transform + - uid: 7239 + components: + - pos: -49.5,54.5 + parent: 1 + type: Transform + - uid: 7249 + components: + - pos: -49.5,88.5 + parent: 1 + type: Transform + - uid: 7250 + components: + - pos: -49.5,87.5 + parent: 1 + type: Transform + - uid: 7251 + components: + - pos: -49.5,86.5 + parent: 1 + type: Transform + - uid: 7252 + components: + - pos: -49.5,85.5 + parent: 1 + type: Transform + - uid: 7253 + components: + - pos: -49.5,84.5 + parent: 1 + type: Transform + - uid: 7254 + components: + - pos: -49.5,83.5 + parent: 1 + type: Transform + - uid: 7262 + components: + - pos: -51.5,91.5 + parent: 1 + type: Transform + - uid: 7295 + components: + - pos: -62.5,88.5 + parent: 1 + type: Transform + - uid: 7305 + components: + - pos: -60.5,90.5 + parent: 1 + type: Transform + - uid: 7310 + components: + - pos: -58.5,90.5 + parent: 1 + type: Transform + - uid: 7315 + components: + - pos: -60.5,82.5 + parent: 1 + type: Transform + - uid: 7316 + components: + - pos: -63.5,85.5 + parent: 1 + type: Transform + - uid: 7321 + components: + - pos: -59.5,90.5 + parent: 1 + type: Transform + - uid: 7727 + components: + - pos: -58.5,82.5 + parent: 1 + type: Transform + - uid: 7734 + components: + - pos: -63.5,84.5 + parent: 1 + type: Transform + - uid: 7735 + components: + - pos: -63.5,83.5 + parent: 1 + type: Transform + - uid: 7736 + components: + - pos: -61.5,82.5 + parent: 1 + type: Transform + - uid: 7737 + components: + - pos: -59.5,82.5 + parent: 1 + type: Transform + - uid: 7861 + components: + - pos: -47.5,52.5 + parent: 1 + type: Transform + - uid: 8423 + components: + - pos: -57.5,48.5 + parent: 1 + type: Transform + - uid: 9033 + components: + - pos: -36.5,63.5 + parent: 1 + type: Transform + - uid: 9034 + components: + - pos: -36.5,66.5 + parent: 1 + type: Transform + - uid: 9035 + components: + - pos: -36.5,64.5 + parent: 1 + type: Transform + - uid: 9036 + components: + - pos: -36.5,65.5 + parent: 1 + type: Transform + - uid: 9037 + components: + - pos: -36.5,62.5 + parent: 1 + type: Transform + - uid: 9039 + components: + - pos: -36.5,68.5 + parent: 1 + type: Transform + - uid: 9040 + components: + - pos: -36.5,69.5 + parent: 1 + type: Transform + - uid: 9041 + components: + - pos: -37.5,69.5 + parent: 1 + type: Transform + - uid: 9042 + components: + - pos: -36.5,61.5 + parent: 1 + type: Transform + - uid: 9043 + components: + - pos: -38.5,69.5 + parent: 1 + type: Transform + - uid: 9044 + components: + - pos: -39.5,69.5 + parent: 1 + type: Transform + - uid: 9045 + components: + - pos: -36.5,67.5 + parent: 1 + type: Transform + - uid: 9046 + components: + - pos: -36.5,60.5 + parent: 1 + type: Transform + - uid: 9047 + components: + - pos: -36.5,59.5 + parent: 1 + type: Transform + - uid: 9190 + components: + - rot: 1.5707963267948966 rad + pos: -70.5,57.5 + parent: 1 + type: Transform + - uid: 9281 + components: + - rot: 1.5707963267948966 rad + pos: -67.5,32.5 + parent: 1 + type: Transform + - uid: 9302 + components: + - pos: -65.5,24.5 + parent: 1 + type: Transform + - uid: 9303 + components: + - pos: -64.5,24.5 + parent: 1 + type: Transform + - uid: 9306 + components: + - pos: -66.5,24.5 + parent: 1 + type: Transform + - uid: 9315 + components: + - rot: 1.5707963267948966 rad + pos: -63.5,29.5 + parent: 1 + type: Transform + - uid: 9342 + components: + - pos: -73.5,18.5 + parent: 1 + type: Transform + - uid: 9466 + components: + - pos: -72.5,22.5 + parent: 1 + type: Transform + - uid: 9619 + components: + - pos: -77.5,26.5 + parent: 1 + type: Transform + - uid: 9632 + components: + - pos: -71.5,32.5 + parent: 1 + type: Transform + - uid: 9661 + components: + - pos: -68.5,18.5 + parent: 1 + type: Transform + - uid: 9664 + components: + - pos: -69.5,18.5 + parent: 1 + type: Transform + - uid: 9665 + components: + - pos: -72.5,20.5 + parent: 1 + type: Transform + - uid: 9682 + components: + - pos: -77.5,24.5 + parent: 1 + type: Transform + - uid: 9696 + components: + - pos: -86.5,23.5 + parent: 1 + type: Transform + - uid: 9697 + components: + - pos: -86.5,24.5 + parent: 1 + type: Transform + - uid: 9698 + components: + - pos: -86.5,25.5 + parent: 1 + type: Transform + - uid: 9699 + components: + - pos: -86.5,26.5 + parent: 1 + type: Transform + - uid: 9700 + components: + - pos: -86.5,27.5 + parent: 1 + type: Transform + - uid: 9799 + components: + - pos: -82.5,47.5 + parent: 1 + type: Transform + - uid: 9824 + components: + - pos: -79.5,47.5 + parent: 1 + type: Transform + - uid: 9830 + components: + - pos: -84.5,47.5 + parent: 1 + type: Transform + - uid: 9831 + components: + - pos: -83.5,47.5 + parent: 1 + type: Transform + - uid: 9832 + components: + - pos: -81.5,47.5 + parent: 1 + type: Transform + - uid: 9833 + components: + - pos: -80.5,47.5 + parent: 1 + type: Transform + - uid: 9834 + components: + - pos: -85.5,47.5 + parent: 1 + type: Transform + - uid: 9835 + components: + - pos: -85.5,46.5 + parent: 1 + type: Transform + - uid: 9836 + components: + - pos: -85.5,45.5 + parent: 1 + type: Transform + - uid: 9837 + components: + - pos: -85.5,44.5 + parent: 1 + type: Transform + - uid: 9838 + components: + - pos: -85.5,43.5 + parent: 1 + type: Transform + - uid: 9839 + components: + - pos: -85.5,42.5 + parent: 1 + type: Transform + - uid: 9840 + components: + - pos: -85.5,41.5 + parent: 1 + type: Transform + - uid: 9841 + components: + - pos: -85.5,40.5 + parent: 1 + type: Transform + - uid: 9842 + components: + - pos: -85.5,39.5 + parent: 1 + type: Transform + - uid: 9843 + components: + - pos: -85.5,38.5 + parent: 1 + type: Transform + - uid: 9844 + components: + - pos: -85.5,37.5 + parent: 1 + type: Transform + - uid: 9845 + components: + - pos: -85.5,36.5 + parent: 1 + type: Transform + - uid: 9846 + components: + - pos: -85.5,35.5 + parent: 1 + type: Transform + - uid: 9847 + components: + - pos: -85.5,34.5 + parent: 1 + type: Transform + - uid: 9893 + components: + - pos: -85.5,33.5 + parent: 1 + type: Transform + - uid: 10159 + components: + - pos: -70.5,18.5 + parent: 1 + type: Transform + - uid: 10172 + components: + - pos: -69.5,24.5 + parent: 1 + type: Transform + - uid: 10242 + components: + - pos: -69.5,27.5 + parent: 1 + type: Transform + - uid: 10344 + components: + - pos: -43.5,-14.5 + parent: 1 + type: Transform + - uid: 10753 + components: + - rot: -1.5707963267948966 rad + pos: -83.5,49.5 + parent: 1 + type: Transform + - uid: 10756 + components: + - rot: -1.5707963267948966 rad + pos: -81.5,49.5 + parent: 1 + type: Transform + - uid: 10757 + components: + - rot: -1.5707963267948966 rad + pos: -80.5,50.5 + parent: 1 + type: Transform + - uid: 10760 + components: + - rot: -1.5707963267948966 rad + pos: -82.5,49.5 + parent: 1 + type: Transform + - uid: 11508 + components: + - rot: 1.5707963267948966 rad + pos: -84.5,50.5 + parent: 1 + type: Transform + - uid: 13846 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,9.5 + parent: 1 + type: Transform + - uid: 13847 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,9.5 + parent: 1 + type: Transform + - uid: 14528 + components: + - pos: -15.5,30.5 + parent: 1 + type: Transform + - uid: 14779 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,48.5 + parent: 1 + type: Transform + - uid: 14793 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,49.5 + parent: 1 + type: Transform + - uid: 14934 + components: + - pos: -40.5,69.5 + parent: 1 + type: Transform + - uid: 15036 + components: + - pos: -51.5,30.5 + parent: 1 + type: Transform + - uid: 15119 + components: + - pos: -53.5,30.5 + parent: 1 + type: Transform + - uid: 15382 + components: + - pos: -41.5,69.5 + parent: 1 + type: Transform + - uid: 15383 + components: + - pos: -42.5,69.5 + parent: 1 + type: Transform + - uid: 15384 + components: + - pos: -43.5,69.5 + parent: 1 + type: Transform + - uid: 15385 + components: + - pos: -44.5,69.5 + parent: 1 + type: Transform + - uid: 15836 + components: + - pos: -52.5,30.5 + parent: 1 + type: Transform +- proto: ResearchAndDevelopmentServer + entities: + - uid: 6943 + components: + - pos: -13.5,-8.5 + parent: 1 + type: Transform +- proto: RevolverCapGun + entities: + - uid: 2251 + components: + - rot: 1.5707963267948966 rad + pos: 0.88706434,42.793312 + parent: 1 + type: Transform +- proto: RubberStampApproved + entities: + - uid: 7583 + components: + - pos: -19.639711,39.734726 + parent: 1 + type: Transform +- proto: RubberStampClown + entities: + - uid: 4233 + components: + - pos: -41.031456,28.5956 + parent: 1 + type: Transform +- proto: RubberStampDenied + entities: + - uid: 7584 + components: + - pos: -19.389711,39.609726 + parent: 1 + type: Transform +- proto: RubberStampMime + entities: + - uid: 4218 + components: + - pos: -42.570244,23.611063 + parent: 1 + type: Transform +- proto: SalvageMagnet + entities: + - uid: 14223 + components: + - pos: -49.5,-15.5 + parent: 1 + type: Transform +- proto: Saw + entities: + - uid: 12803 + components: + - pos: 19.561224,28.58777 + parent: 1 + type: Transform +- proto: SaxophoneInstrument + entities: + - uid: 9326 + components: + - pos: -71.56229,45.50187 + parent: 1 + type: Transform +- proto: SecurityTechFab + entities: + - uid: 7917 + components: + - pos: -41.5,65.5 + parent: 1 + type: Transform +- proto: SeedExtractor + entities: + - uid: 6942 + components: + - pos: -41.5,49.5 + parent: 1 + type: Transform + - uid: 7723 + components: + - pos: -58.5,83.5 + parent: 1 + type: Transform +- proto: ShardGlass + entities: + - uid: 8324 + components: + - pos: 11.47951,24.442 + parent: 1 + type: Transform +- proto: SheetGlass + entities: + - uid: 262 + components: + - pos: -12.723352,-1.4051902 + parent: 1 + type: Transform + - uid: 263 + components: + - pos: -12.582727,-1.3895652 + parent: 1 + type: Transform + - uid: 326 + components: + - pos: -14.514996,-14.43877 + parent: 1 + type: Transform + - uid: 13605 + components: + - pos: -65.92235,25.549358 + parent: 1 + type: Transform + - uid: 13606 + components: + - pos: -65.92235,25.549358 + parent: 1 + type: Transform +- proto: SheetPlasma + entities: + - uid: 320 + components: + - pos: -17.481846,-13.543035 + parent: 1 + type: Transform + - uid: 10876 + components: + - pos: -22.475372,57.582253 + parent: 1 + type: Transform +- proto: SheetPlasteel + entities: + - uid: 13603 + components: + - pos: -66.25047,25.549358 + parent: 1 + type: Transform + - uid: 13604 + components: + - pos: -66.25047,25.549358 + parent: 1 + type: Transform +- proto: SheetPlastic + entities: + - uid: 264 + components: + - pos: -12.32629,-1.4051902 + parent: 1 + type: Transform + - uid: 265 + components: + - pos: -12.23254,-1.4051902 + parent: 1 + type: Transform +- proto: SheetSteel + entities: + - uid: 266 + components: + - pos: -11.498165,-5.4051905 + parent: 1 + type: Transform + - uid: 267 + components: + - pos: -11.016892,-5.4477215 + parent: 1 + type: Transform + - uid: 13600 + components: + - pos: -66.496956,25.561287 + parent: 1 + type: Transform + - uid: 13601 + components: + - pos: -66.496956,25.561287 + parent: 1 + type: Transform + - uid: 13610 + components: + - pos: -82.49008,29.604647 + parent: 1 + type: Transform + - uid: 13611 + components: + - pos: -82.49008,29.604647 + parent: 1 + type: Transform +- proto: SheetSteel1 + entities: + - uid: 268 + components: + - pos: 2.5175354,-1.5196886 + parent: 1 + type: Transform + - count: 10 + type: Stack +- proto: SheetUranium1 + entities: + - uid: 10865 + components: + - pos: -21.490997,57.551003 + parent: 1 + type: Transform + - uid: 10866 + components: + - pos: -21.490997,57.551003 + parent: 1 + type: Transform + - uid: 10867 + components: + - pos: -21.490997,57.551003 + parent: 1 + type: Transform + - uid: 10868 + components: + - pos: -21.490997,57.551003 + parent: 1 + type: Transform + - uid: 10869 + components: + - pos: -21.490997,57.551003 + parent: 1 + type: Transform +- proto: ShuttersNormal + entities: + - uid: 105 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - links: + - 523 + type: DeviceLinkSink + - uid: 215 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - links: + - 523 + type: DeviceLinkSink + - uid: 216 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform + - links: + - 523 + type: DeviceLinkSink + - uid: 1446 + components: + - pos: -10.5,11.5 + parent: 1 + type: Transform + - uid: 1487 + components: + - pos: -10.5,12.5 + parent: 1 + type: Transform + - uid: 4494 + components: + - pos: -48.5,20.5 + parent: 1 + type: Transform + - uid: 4495 + components: + - pos: -47.5,20.5 + parent: 1 + type: Transform + - uid: 4496 + components: + - pos: -45.5,19.5 + parent: 1 + type: Transform + - uid: 4497 + components: + - pos: -44.5,19.5 + parent: 1 + type: Transform + - uid: 4499 + components: + - pos: -41.5,19.5 + parent: 1 + type: Transform + - uid: 7075 + components: + - pos: -51.5,34.5 + parent: 1 + type: Transform + - links: + - 7077 + type: DeviceLinkSink + - uid: 7076 + components: + - pos: -50.5,34.5 + parent: 1 + type: Transform + - links: + - 7077 + type: DeviceLinkSink + - uid: 7468 + components: + - pos: -53.5,80.5 + parent: 1 + type: Transform + - uid: 7476 + components: + - pos: -53.5,79.5 + parent: 1 + type: Transform + - uid: 7719 + components: + - pos: -49.5,68.5 + parent: 1 + type: Transform + - uid: 7860 + components: + - pos: -49.5,67.5 + parent: 1 + type: Transform + - uid: 9955 + components: + - pos: -79.5,21.5 + parent: 1 + type: Transform +- proto: ShuttersNormalOpen + entities: + - uid: 4498 + components: + - pos: -42.5,19.5 + parent: 1 + type: Transform + - uid: 10698 + components: + - pos: -70.5,18.5 + parent: 1 + type: Transform + - links: + - 10701 + type: DeviceLinkSink + - uid: 10699 + components: + - pos: -69.5,18.5 + parent: 1 + type: Transform + - links: + - 10701 + type: DeviceLinkSink + - uid: 10700 + components: + - pos: -68.5,18.5 + parent: 1 + type: Transform + - links: + - 10701 + type: DeviceLinkSink +- proto: ShuttleConsoleCircuitboard + entities: + - uid: 15896 + components: + - pos: 11.536212,-16.49545 + parent: 1 + type: Transform +- proto: SignalButton + entities: + - uid: 351 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-12.5 + parent: 1 + type: Transform + - linkedPorts: + 42: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 615 + components: + - pos: 17.5,-7.5 + parent: 1 + type: Transform + - linkedPorts: + 590: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 7077 + components: + - rot: 3.141592653589793 rad + pos: -52.5,34.5 + parent: 1 + type: Transform + - linkedPorts: + 7075: + - Pressed: Toggle + 7076: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 7192 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,79.5 + parent: 1 + type: Transform + - linkedPorts: + 7211: + - Pressed: Toggle + 7210: + - Pressed: Toggle + 7209: + - Pressed: Toggle + 7208: + - Pressed: Toggle + 7207: + - Pressed: Toggle + 7204: + - Pressed: Toggle + 7212: + - Pressed: Toggle + 7213: + - Pressed: Toggle + 7214: + - Pressed: Toggle + 7215: + - Pressed: Toggle + 7216: + - Pressed: Toggle + 7217: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 7218 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,68.5 + parent: 1 + type: Transform + - linkedPorts: + 7204: + - Pressed: Toggle + 7207: + - Pressed: Toggle + 7208: + - Pressed: Toggle + 7209: + - Pressed: Toggle + 7210: + - Pressed: Toggle + 7211: + - Pressed: Toggle + 7217: + - Pressed: Toggle + 7216: + - Pressed: Toggle + 7215: + - Pressed: Toggle + 7214: + - Pressed: Toggle + 7213: + - Pressed: Toggle + 7212: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 10701 + components: + - pos: -71.5,18.5 + parent: 1 + type: Transform + - linkedPorts: + 10698: + - Pressed: Toggle + 10699: + - Pressed: Toggle + 10700: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 13361 + components: + - pos: -78.5,47.5 + parent: 1 + type: Transform + - linkedPorts: + 13360: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 13367 + components: + - pos: -71.5,57.5 + parent: 1 + type: Transform + - linkedPorts: + 13366: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 13821 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-9.5 + parent: 1 + type: Transform + - linkedPorts: + 13818: + - Pressed: Toggle + 13817: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 13822 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-9.5 + parent: 1 + type: Transform + - linkedPorts: + 13819: + - Pressed: Toggle + 13820: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 15185 + components: + - rot: 3.141592653589793 rad + pos: 18.5,48.5 + parent: 1 + type: Transform + - linkedPorts: + 15173: + - Pressed: Toggle + 15175: + - Pressed: Toggle + 15174: + - Pressed: Toggle + 15177: + - Pressed: Toggle + 15178: + - Pressed: Toggle + 15179: + - Pressed: Toggle + 15180: + - Pressed: Toggle + 15181: + - Pressed: Toggle + 15182: + - Pressed: Toggle + 15183: + - Pressed: Toggle + 15184: + - Pressed: Toggle + 15176: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SignAnomaly + entities: + - uid: 325 + components: + - pos: -0.5,-9.5 + parent: 1 + type: Transform +- proto: SignAnomaly2 + entities: + - uid: 324 + components: + - pos: -10.5,-11.5 + parent: 1 + type: Transform +- proto: SignBar + entities: + - uid: 7371 + components: + - pos: -33.5,39.5 + parent: 1 + type: Transform + - uid: 7372 + components: + - pos: -37.5,34.5 + parent: 1 + type: Transform +- proto: SignBio + entities: + - uid: 14343 + components: + - pos: -76.5,57.5 + parent: 1 + type: Transform +- proto: SignCargo + entities: + - uid: 3658 + components: + - pos: -39.5,2.5 + parent: 1 + type: Transform + - uid: 3659 + components: + - pos: -35.5,2.5 + parent: 1 + type: Transform +- proto: SignChem + entities: + - uid: 1906 + components: + - pos: -3.5,28.5 + parent: 1 + type: Transform + - uid: 1907 + components: + - pos: 1.5,27.5 + parent: 1 + type: Transform +- proto: SignCloning + entities: + - uid: 1350 + components: + - pos: 2.5,35.5 + parent: 1 + type: Transform +- proto: SignCryogenicsMed + entities: + - uid: 1207 + components: + - pos: 5.5,34.5 + parent: 1 + type: Transform + - uid: 1321 + components: + - pos: 5.5,32.5 + parent: 1 + type: Transform +- proto: SignDanger + entities: + - uid: 14836 + components: + - pos: 11.5,-15.5 + parent: 1 + type: Transform + - uid: 14840 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-12.5 + parent: 1 + type: Transform +- proto: SignDirectionalBar + entities: + - uid: 14501 + components: + - rot: 3.141592653589793 rad + pos: -59.490047,7.285572 + parent: 1 + type: Transform + - uid: 14507 + components: + - rot: 3.141592653589793 rad + pos: -39.450584,8.088224 + parent: 1 + type: Transform + - uid: 14525 + components: + - rot: 3.141592653589793 rad + pos: -14.487816,7.472787 + parent: 1 + type: Transform + - uid: 14530 + components: + - rot: -1.5707963267948966 rad + pos: -14.482212,30.621857 + parent: 1 + type: Transform + - uid: 14537 + components: + - rot: -1.5707963267948966 rad + pos: -18.473362,34.479904 + parent: 1 + type: Transform + - uid: 14547 + components: + - rot: 1.5707963267948966 rad + pos: -55.470596,30.735767 + parent: 1 + type: Transform +- proto: SignDirectionalBridge + entities: + - uid: 14517 + components: + - rot: 3.141592653589793 rad + pos: -14.488382,7.264183 + parent: 1 + type: Transform + - uid: 14518 + components: + - rot: 1.5707963267948966 rad + pos: -32.437344,7.701683 + parent: 1 + type: Transform + - uid: 14519 + components: + - rot: 1.5707963267948966 rad + pos: -55.473106,3.3110576 + parent: 1 + type: Transform + - uid: 14535 + components: + - rot: 3.141592653589793 rad + pos: -14.4896145,34.68303 + parent: 1 + type: Transform + - uid: 14540 + components: + - rot: 1.5707963267948966 rad + pos: -35.48712,30.33314 + parent: 1 + type: Transform + - uid: 14549 + components: + - rot: 1.5707963267948966 rad + pos: -55.470596,30.513163 + parent: 1 + type: Transform + - uid: 14552 + components: + - rot: 1.5707963267948966 rad + pos: -45.46681,34.272972 + parent: 1 + type: Transform + - uid: 14556 + components: + - pos: -49.482433,48.469536 + parent: 1 + type: Transform +- proto: SignDirectionalChapel + entities: + - uid: 14516 + components: + - rot: 1.5707963267948966 rad + pos: -10.488658,7.654808 + parent: 1 + type: Transform + - uid: 14520 + components: + - rot: 1.5707963267948966 rad + pos: -30.469654,3.3579326 + parent: 1 + type: Transform + - uid: 14521 + components: + - rot: 1.5707963267948966 rad + pos: -59.50527,3.7641826 + parent: 1 + type: Transform + - uid: 14527 + components: + - pos: 12.5,4.5 + parent: 1 + type: Transform +- proto: SignDirectionalEng + entities: + - uid: 14500 + components: + - rot: 3.141592653589793 rad + pos: -59.490047,7.504322 + parent: 1 + type: Transform + - uid: 14510 + components: + - rot: 3.141592653589793 rad + pos: -39.452663,8.478849 + parent: 1 + type: Transform + - uid: 14523 + components: + - rot: -1.5707963267948966 rad + pos: -14.487816,3.550912 + parent: 1 + type: Transform + - uid: 14533 + components: + - rot: -1.5707963267948966 rad + pos: -14.4896145,34.261154 + parent: 1 + type: Transform + - uid: 14545 + components: + - rot: -1.5707963267948966 rad + pos: -39.47286,34.276833 + parent: 1 + type: Transform + - uid: 14554 + components: + - rot: -1.5707963267948966 rad + pos: -45.482433,34.679222 + parent: 1 + type: Transform + - uid: 14555 + components: + - rot: -1.5707963267948966 rad + pos: -49.46681,48.26641 + parent: 1 + type: Transform +- proto: SignDirectionalEvac + entities: + - uid: 14505 + components: + - rot: 1.5707963267948966 rad + pos: -55.472736,3.7415338 + parent: 1 + type: Transform + - uid: 14513 + components: + - rot: 1.5707963267948966 rad + pos: -30.468357,3.5641694 + parent: 1 + type: Transform + - uid: 14514 + components: + - rot: 1.5707963267948966 rad + pos: -10.488658,7.248558 + parent: 1 + type: Transform + - uid: 14526 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,7.5 + parent: 1 + type: Transform + - uid: 14531 + components: + - pos: -14.474767,30.840607 + parent: 1 + type: Transform + - uid: 14542 + components: + - pos: -39.48712,30.567514 + parent: 1 + type: Transform +- proto: SignDirectionalGravity + entities: + - uid: 14506 + components: + - rot: 1.5707963267948966 rad + pos: -55.472736,3.5227838 + parent: 1 + type: Transform + - uid: 14512 + components: + - rot: 1.5707963267948966 rad + pos: -30.468357,3.7672944 + parent: 1 + type: Transform + - uid: 14532 + components: + - rot: 1.5707963267948966 rad + pos: -14.490392,7.668745 + parent: 1 + type: Transform + - uid: 14534 + components: + - pos: -14.4896145,34.46428 + parent: 1 + type: Transform + - uid: 14546 + components: + - pos: -39.47286,34.479958 + parent: 1 + type: Transform +- proto: SignDirectionalJanitor + entities: + - uid: 14561 + components: + - pos: -49.48419,37.304916 + parent: 1 + type: Transform +- proto: SignDirectionalMed + entities: + - uid: 14502 + components: + - rot: 1.5707963267948966 rad + pos: -55.48836,7.2415333 + parent: 1 + type: Transform + - uid: 14509 + components: + - rot: 1.5707963267948966 rad + pos: -32.43669,7.2913494 + parent: 1 + type: Transform + - uid: 14515 + components: + - rot: 3.141592653589793 rad + pos: -10.488658,7.451683 + parent: 1 + type: Transform + - uid: 14538 + components: + - rot: 1.5707963267948966 rad + pos: -35.48712,30.73939 + parent: 1 + type: Transform + - uid: 14550 + components: + - rot: 1.5707963267948966 rad + pos: -55.48622,34.45066 + parent: 1 + type: Transform + - uid: 14557 + components: + - pos: -49.482433,48.657036 + parent: 1 + type: Transform + - uid: 14558 + components: + - rot: 1.5707963267948966 rad + pos: -45.49806,34.875084 + parent: 1 + type: Transform +- proto: SignDirectionalSci + entities: + - uid: 2816 + components: + - pos: -14.4827,30.222769 + parent: 1 + type: Transform + - uid: 14503 + components: + - rot: 1.5707963267948966 rad + pos: -55.48836,7.4602833 + parent: 1 + type: Transform + - uid: 14511 + components: + - rot: 1.5707963267948966 rad + pos: -32.43541,7.4944744 + parent: 1 + type: Transform + - uid: 14539 + components: + - rot: 1.5707963267948966 rad + pos: -35.48712,30.55189 + parent: 1 + type: Transform + - uid: 14551 + components: + - pos: -55.472015,30.294413 + parent: 1 + type: Transform +- proto: SignDirectionalSec + entities: + - uid: 14499 + components: + - rot: 3.141592653589793 rad + pos: -59.490047,7.723072 + parent: 1 + type: Transform + - uid: 14508 + components: + - rot: 3.141592653589793 rad + pos: -39.450584,8.275724 + parent: 1 + type: Transform + - uid: 14522 + components: + - rot: -1.5707963267948966 rad + pos: -14.487816,3.769662 + parent: 1 + type: Transform + - uid: 14536 + components: + - rot: -1.5707963267948966 rad + pos: -18.473362,34.27678 + parent: 1 + type: Transform + - uid: 14541 + components: + - rot: -1.5707963267948966 rad + pos: -39.48712,30.348764 + parent: 1 + type: Transform + - uid: 14548 + components: + - rot: 3.141592653589793 rad + pos: -55.48622,34.247536 + parent: 1 + type: Transform + - uid: 14553 + components: + - rot: 3.141592653589793 rad + pos: -45.482433,34.476097 + parent: 1 + type: Transform +- proto: SignDirectionalSolar + entities: + - uid: 14544 + components: + - pos: 23.5,3.5 + parent: 1 + type: Transform +- proto: SignDirectionalSupply + entities: + - uid: 14504 + components: + - rot: 1.5707963267948966 rad + pos: -55.48836,7.6790333 + parent: 1 + type: Transform + - uid: 14524 + components: + - rot: -1.5707963267948966 rad + pos: -14.487816,3.363412 + parent: 1 + type: Transform + - uid: 14529 + components: + - pos: -14.482212,30.433353 + parent: 1 + type: Transform + - uid: 14543 + components: + - pos: -39.48712,30.77064 + parent: 1 + type: Transform +- proto: SignEVA + entities: + - uid: 7394 + components: + - pos: -14.5,49.5 + parent: 1 + type: Transform +- proto: SignLibrary + entities: + - uid: 3397 + components: + - pos: -24.5,7.5 + parent: 1 + type: Transform +- proto: SignMail + entities: + - uid: 15097 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-0.5 + parent: 1 + type: Transform + - uid: 15281 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,0.5 + parent: 1 + type: Transform +- proto: SignMedical + entities: + - uid: 1361 + components: + - pos: 5.5,27.5 + parent: 1 + type: Transform + - uid: 1903 + components: + - pos: 1.5,31.5 + parent: 1 + type: Transform +- proto: SignMorgue + entities: + - uid: 1149 + components: + - pos: 2.5,18.5 + parent: 1 + type: Transform +- proto: SignPrison + entities: + - uid: 7205 + components: + - pos: -51.5,70.5 + parent: 1 + type: Transform + - uid: 7331 + components: + - pos: -51.5,77.5 + parent: 1 + type: Transform +- proto: SignScience + entities: + - uid: 228 + components: + - pos: -9.5,3.5 + parent: 1 + type: Transform +- proto: SignSecureMedRed + entities: + - uid: 1596 + components: + - pos: 12.5,-12.5 + parent: 1 + type: Transform + - uid: 7440 + components: + - pos: 9.5,41.5 + parent: 1 + type: Transform + - uid: 14837 + components: + - pos: 7.5,-15.5 + parent: 1 + type: Transform + - uid: 14841 + components: + - pos: 8.5,-11.5 + parent: 1 + type: Transform + - uid: 15010 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-13.5 + parent: 1 + type: Transform + - uid: 15020 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-14.5 + parent: 1 + type: Transform +- proto: SignSpace + entities: + - uid: 5493 + components: + - pos: -53.5,78.5 + parent: 1 + type: Transform + - uid: 7329 + components: + - pos: -53.5,69.5 + parent: 1 + type: Transform + - uid: 7330 + components: + - pos: -49.5,69.5 + parent: 1 + type: Transform + - uid: 7333 + components: + - pos: -49.5,78.5 + parent: 1 + type: Transform +- proto: SignTelecomms + entities: + - uid: 9807 + components: + - pos: -40.5,7.5 + parent: 1 + type: Transform + - uid: 15381 + components: + - pos: 27.5,22.5 + parent: 1 + type: Transform +- proto: SignVirology + entities: + - uid: 1145 + components: + - pos: 5.5,20.5 + parent: 1 + type: Transform +- proto: SingularityGenerator + entities: + - uid: 9976 + components: + - pos: -77.5,22.5 + parent: 1 + type: Transform + - uid: 10648 + components: + - pos: -97.5,25.5 + parent: 1 + type: Transform +- proto: Sink + entities: + - uid: 4079 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,1.5 + parent: 1 + type: Transform + - uid: 4080 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,0.5 + parent: 1 + type: Transform + - uid: 4081 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-0.5 + parent: 1 + type: Transform +- proto: SinkStemlessWater + entities: + - uid: 7088 + components: + - pos: -51.5,41.5 + parent: 1 + type: Transform +- proto: SinkWide + entities: + - uid: 15008 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,44.5 + parent: 1 + type: Transform +- proto: SMESBasic + entities: + - uid: 749 + components: + - pos: 27.5,-7.5 + parent: 1 + type: Transform + - uid: 921 + components: + - pos: 25.5,3.5 + parent: 1 + type: Transform + - uid: 2761 + components: + - pos: 25.5,23.5 + parent: 1 + type: Transform + - uid: 10147 + components: + - pos: -71.5,28.5 + parent: 1 + type: Transform + - uid: 10148 + components: + - pos: -71.5,29.5 + parent: 1 + type: Transform + - uid: 10149 + components: + - pos: -71.5,30.5 + parent: 1 + type: Transform + - uid: 10165 + components: + - pos: -71.5,31.5 + parent: 1 + type: Transform +- proto: SMESMachineCircuitboard + entities: + - uid: 5551 + components: + - pos: -52.558533,24.686655 + parent: 1 + type: Transform + - uid: 5552 + components: + - pos: -52.386658,24.45228 + parent: 1 + type: Transform +- proto: SmokingPipe + entities: + - uid: 61 + components: + - pos: -34.59064,49.648758 + parent: 1 + type: Transform + - uid: 70 + components: + - pos: -34.481266,49.461258 + parent: 1 + type: Transform +- proto: soda_dispenser + entities: + - uid: 5270 + components: + - pos: -54.5,21.5 + parent: 1 + type: Transform + - uid: 9742 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,35.5 + parent: 1 + type: Transform + - uid: 15221 + components: + - rot: 3.141592653589793 rad + pos: 15.5,50.5 + parent: 1 + type: Transform +- proto: SolarAssemblyPart + entities: + - uid: 15982 + components: + - pos: -7.5718555,8.615294 + parent: 1 + type: Transform + - uid: 15983 + components: + - pos: -7.2749805,8.599669 + parent: 1 + type: Transform + - uid: 15984 + components: + - pos: -7.3374805,8.490294 + parent: 1 + type: Transform + - uid: 15985 + components: + - pos: -7.6812305,8.552794 + parent: 1 + type: Transform +- proto: SolarPanel + entities: + - uid: 803 + components: + - pos: 18.5,-14.5 + parent: 1 + type: Transform + - uid: 804 + components: + - pos: 19.5,-14.5 + parent: 1 + type: Transform + - uid: 805 + components: + - pos: 20.5,-14.5 + parent: 1 + type: Transform + - uid: 806 + components: + - pos: 21.5,-14.5 + parent: 1 + type: Transform + - uid: 807 + components: + - pos: 22.5,-14.5 + parent: 1 + type: Transform + - uid: 808 + components: + - pos: 23.5,-14.5 + parent: 1 + type: Transform + - uid: 809 + components: + - pos: 24.5,-14.5 + parent: 1 + type: Transform + - uid: 810 + components: + - pos: 25.5,-14.5 + parent: 1 + type: Transform + - uid: 811 + components: + - pos: 26.5,-14.5 + parent: 1 + type: Transform + - uid: 812 + components: + - pos: 27.5,-14.5 + parent: 1 + type: Transform + - uid: 813 + components: + - pos: 18.5,-16.5 + parent: 1 + type: Transform + - uid: 814 + components: + - pos: 19.5,-16.5 + parent: 1 + type: Transform + - uid: 815 + components: + - pos: 20.5,-16.5 + parent: 1 + type: Transform + - uid: 816 + components: + - pos: 21.5,-16.5 + parent: 1 + type: Transform + - uid: 817 + components: + - pos: 22.5,-16.5 + parent: 1 + type: Transform + - uid: 818 + components: + - pos: 23.5,-16.5 + parent: 1 + type: Transform + - uid: 819 + components: + - pos: 24.5,-16.5 + parent: 1 + type: Transform + - uid: 820 + components: + - pos: 25.5,-16.5 + parent: 1 + type: Transform + - uid: 821 + components: + - pos: 26.5,-16.5 + parent: 1 + type: Transform + - uid: 822 + components: + - pos: 27.5,-16.5 + parent: 1 + type: Transform + - uid: 823 + components: + - pos: 19.5,-18.5 + parent: 1 + type: Transform + - uid: 824 + components: + - pos: 20.5,-18.5 + parent: 1 + type: Transform + - uid: 825 + components: + - pos: 21.5,-18.5 + parent: 1 + type: Transform + - uid: 826 + components: + - pos: 22.5,-18.5 + parent: 1 + type: Transform + - uid: 827 + components: + - pos: 23.5,-18.5 + parent: 1 + type: Transform + - uid: 828 + components: + - pos: 24.5,-18.5 + parent: 1 + type: Transform + - uid: 829 + components: + - pos: 25.5,-18.5 + parent: 1 + type: Transform + - uid: 830 + components: + - pos: 26.5,-18.5 + parent: 1 + type: Transform + - uid: 831 + components: + - pos: 27.5,-18.5 + parent: 1 + type: Transform + - uid: 832 + components: + - pos: 19.5,-20.5 + parent: 1 + type: Transform + - uid: 833 + components: + - pos: 20.5,-20.5 + parent: 1 + type: Transform + - uid: 834 + components: + - pos: 21.5,-20.5 + parent: 1 + type: Transform + - uid: 835 + components: + - pos: 22.5,-20.5 + parent: 1 + type: Transform + - uid: 836 + components: + - pos: 23.5,-20.5 + parent: 1 + type: Transform + - uid: 837 + components: + - pos: 24.5,-20.5 + parent: 1 + type: Transform + - uid: 838 + components: + - pos: 25.5,-20.5 + parent: 1 + type: Transform + - uid: 839 + components: + - pos: 26.5,-20.5 + parent: 1 + type: Transform + - uid: 840 + components: + - pos: 27.5,-20.5 + parent: 1 + type: Transform + - uid: 841 + components: + - pos: 20.5,-22.5 + parent: 1 + type: Transform + - uid: 842 + components: + - pos: 21.5,-22.5 + parent: 1 + type: Transform + - uid: 843 + components: + - pos: 22.5,-22.5 + parent: 1 + type: Transform + - uid: 844 + components: + - pos: 23.5,-22.5 + parent: 1 + type: Transform + - uid: 845 + components: + - pos: 24.5,-22.5 + parent: 1 + type: Transform + - uid: 846 + components: + - pos: 25.5,-22.5 + parent: 1 + type: Transform + - uid: 847 + components: + - pos: 26.5,-22.5 + parent: 1 + type: Transform + - uid: 848 + components: + - pos: 27.5,-22.5 + parent: 1 + type: Transform + - uid: 849 + components: + - pos: 20.5,-24.5 + parent: 1 + type: Transform + - uid: 850 + components: + - pos: 21.5,-24.5 + parent: 1 + type: Transform + - uid: 851 + components: + - pos: 22.5,-24.5 + parent: 1 + type: Transform + - uid: 852 + components: + - pos: 23.5,-24.5 + parent: 1 + type: Transform + - uid: 853 + components: + - pos: 24.5,-24.5 + parent: 1 + type: Transform + - uid: 854 + components: + - pos: 25.5,-24.5 + parent: 1 + type: Transform + - uid: 855 + components: + - pos: 26.5,-24.5 + parent: 1 + type: Transform + - uid: 856 + components: + - pos: 27.5,-24.5 + parent: 1 + type: Transform +- proto: SolarTracker + entities: + - uid: 860 + components: + - pos: 28.5,-27.5 + parent: 1 + type: Transform +- proto: SolarTrackerElectronics + entities: + - uid: 15986 + components: + - pos: -7.5093555,8.3066 + parent: 1 + type: Transform +- proto: SpawnMobAlexander + entities: + - uid: 14184 + components: + - pos: -35.5,46.5 + parent: 1 + type: Transform +- proto: SpawnMobBandito + entities: + - uid: 14178 + components: + - pos: -8.5,-0.5 + parent: 1 + type: Transform +- proto: SpawnMobBear + entities: + - uid: 6324 + components: + - pos: 7.5,51.5 + parent: 1 + type: Transform +- proto: SpawnMobCatRuntime + entities: + - uid: 14180 + components: + - pos: 16.5,30.5 + parent: 1 + type: Transform +- proto: SpawnMobCorgi + entities: + - uid: 7575 + components: + - pos: -22.5,38.5 + parent: 1 + type: Transform +- proto: SpawnMobFoxRenault + entities: + - uid: 10907 + components: + - pos: -9.5,59.5 + parent: 1 + type: Transform +- proto: SpawnMobMcGriff + entities: + - uid: 14183 + components: + - pos: -46.5,59.5 + parent: 1 + type: Transform +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 14168 + components: + - pos: -31.5,37.5 + parent: 1 + type: Transform +- proto: SpawnMobMouse + entities: + - uid: 4996 + components: + - pos: 10.5,39.5 + parent: 1 + type: Transform + - uid: 15041 + components: + - pos: 7.5,-5.5 + parent: 1 + type: Transform + - uid: 15042 + components: + - pos: 22.5,1.5 + parent: 1 + type: Transform + - uid: 15043 + components: + - pos: 14.5,17.5 + parent: 1 + type: Transform + - uid: 15045 + components: + - pos: -7.5,46.5 + parent: 1 + type: Transform + - uid: 15046 + components: + - pos: -44.5,53.5 + parent: 1 + type: Transform + - uid: 15047 + components: + - pos: -66.5,48.5 + parent: 1 + type: Transform +- proto: SpawnMobPossumMorty + entities: + - uid: 14182 + components: + - pos: 14.5,-1.5 + parent: 1 + type: Transform +- proto: SpawnMobRaccoonMorticia + entities: + - uid: 14179 + components: + - pos: -38.5,-4.5 + parent: 1 + type: Transform +- proto: SpawnMobShiva + entities: + - uid: 3680 + components: + - pos: -60.5,65.5 + parent: 1 + type: Transform +- proto: SpawnMobSlothPaperwork + entities: + - uid: 14185 + components: + - pos: -24.5,12.5 + parent: 1 + type: Transform +- proto: SpawnMobWalter + entities: + - uid: 14181 + components: + - pos: -2.5,22.5 + parent: 1 + type: Transform +- proto: SpawnPointAssistant + entities: + - uid: 10824 + components: + - pos: -25.5,27.5 + parent: 1 + type: Transform + - uid: 10825 + components: + - pos: -24.5,28.5 + parent: 1 + type: Transform + - uid: 10826 + components: + - pos: -23.5,27.5 + parent: 1 + type: Transform +- proto: SpawnPointAtmos + entities: + - uid: 14433 + components: + - pos: -81.5,31.5 + parent: 1 + type: Transform + - uid: 14434 + components: + - pos: -80.5,31.5 + parent: 1 + type: Transform + - uid: 14435 + components: + - pos: -79.5,31.5 + parent: 1 + type: Transform +- proto: SpawnPointBartender + entities: + - uid: 9724 + components: + - pos: -31.5,36.5 + parent: 1 + type: Transform + - uid: 9725 + components: + - pos: -31.5,39.5 + parent: 1 + type: Transform +- proto: SpawnPointBotanist + entities: + - uid: 5179 + components: + - pos: -43.5,46.5 + parent: 1 + type: Transform + - uid: 8209 + components: + - pos: -41.5,46.5 + parent: 1 + type: Transform + - uid: 8212 + components: + - pos: -43.5,42.5 + parent: 1 + type: Transform + - uid: 10814 + components: + - pos: -41.5,42.5 + parent: 1 + type: Transform +- proto: SpawnPointCaptain + entities: + - uid: 6508 + components: + - pos: -7.5,60.5 + parent: 1 + type: Transform +- proto: SpawnPointCargoTechnician + entities: + - uid: 3660 + components: + - pos: -39.5,-4.5 + parent: 1 + type: Transform + - uid: 3661 + components: + - pos: -37.5,-4.5 + parent: 1 + type: Transform + - uid: 3662 + components: + - pos: -39.5,-6.5 + parent: 1 + type: Transform + - uid: 3663 + components: + - pos: -37.5,-6.5 + parent: 1 + type: Transform +- proto: SpawnPointChaplain + entities: + - uid: 10823 + components: + - pos: 20.5,-1.5 + parent: 1 + type: Transform +- proto: SpawnPointChef + entities: + - uid: 6933 + components: + - pos: -37.5,44.5 + parent: 1 + type: Transform + - uid: 6934 + components: + - pos: -37.5,45.5 + parent: 1 + type: Transform +- proto: SpawnPointChemist + entities: + - uid: 2182 + components: + - pos: -1.5,25.5 + parent: 1 + type: Transform + - uid: 2183 + components: + - pos: -2.5,23.5 + parent: 1 + type: Transform +- proto: SpawnPointChiefEngineer + entities: + - uid: 3695 + components: + - pos: -69.5,16.5 + parent: 1 + type: Transform +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 1314 + components: + - pos: 15.5,32.5 + parent: 1 + type: Transform +- proto: SpawnPointClown + entities: + - uid: 4188 + components: + - pos: -41.5,27.5 + parent: 1 + type: Transform +- proto: SpawnPointDetective + entities: + - uid: 14280 + components: + - pos: -70.5,48.5 + parent: 1 + type: Transform +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 11600 + components: + - pos: -20.5,38.5 + parent: 1 + type: Transform +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 9989 + components: + - pos: -61.5,64.5 + parent: 1 + type: Transform +- proto: SpawnPointJanitor + entities: + - uid: 7090 + components: + - pos: -51.5,40.5 + parent: 1 + type: Transform + - uid: 9723 + components: + - pos: -52.5,36.5 + parent: 1 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 4855 + components: + - pos: -73.5,5.5 + parent: 1 + type: Transform + - uid: 4861 + components: + - pos: -66.5,5.5 + parent: 1 + type: Transform +- proto: SpawnPointLawyer + entities: + - uid: 9997 + components: + - pos: -53.5,54.5 + parent: 1 + type: Transform +- proto: SpawnPointLibrarian + entities: + - uid: 3398 + components: + - pos: -30.5,9.5 + parent: 1 + type: Transform +- proto: SpawnPointMedicalDoctor + entities: + - uid: 14923 + components: + - pos: 7.5,24.5 + parent: 1 + type: Transform + - uid: 14924 + components: + - pos: 8.5,24.5 + parent: 1 + type: Transform + - uid: 14925 + components: + - pos: 9.5,24.5 + parent: 1 + type: Transform + - uid: 14926 + components: + - pos: 8.5,23.5 + parent: 1 + type: Transform +- proto: SpawnPointMedicalIntern + entities: + - uid: 14927 + components: + - pos: 3.5,31.5 + parent: 1 + type: Transform + - uid: 14928 + components: + - pos: 3.5,29.5 + parent: 1 + type: Transform + - uid: 14929 + components: + - pos: 3.5,24.5 + parent: 1 + type: Transform + - uid: 14930 + components: + - pos: 3.5,22.5 + parent: 1 + type: Transform +- proto: SpawnPointMime + entities: + - uid: 4215 + components: + - pos: -41.5,24.5 + parent: 1 + type: Transform +- proto: SpawnPointMusician + entities: + - uid: 4139 + components: + - pos: -24.5,23.5 + parent: 1 + type: Transform +- proto: SpawnPointObserver + entities: + - uid: 13776 + components: + - pos: -37.5,32.5 + parent: 1 + type: Transform +- proto: SpawnPointQuartermaster + entities: + - uid: 3667 + components: + - pos: -44.5,-7.5 + parent: 1 + type: Transform +- proto: SpawnPointResearchAssistant + entities: + - uid: 2169 + components: + - pos: -7.5,-0.5 + parent: 1 + type: Transform + - uid: 15107 + components: + - pos: -10.5,-3.5 + parent: 1 + type: Transform + - uid: 15108 + components: + - pos: -4.5,-3.5 + parent: 1 + type: Transform +- proto: SpawnPointResearchDirector + entities: + - uid: 2167 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 10343 + components: + - pos: -38.5,-11.5 + parent: 1 + type: Transform + - uid: 13813 + components: + - pos: -42.5,-11.5 + parent: 1 + type: Transform + - uid: 13814 + components: + - pos: -40.5,-11.5 + parent: 1 + type: Transform +- proto: SpawnPointScientist + entities: + - uid: 2168 + components: + - pos: -7.5,1.5 + parent: 1 + type: Transform + - uid: 2170 + components: + - pos: -11.5,-3.5 + parent: 1 + type: Transform + - uid: 2171 + components: + - pos: -16.5,-3.5 + parent: 1 + type: Transform + - uid: 2172 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform +- proto: SpawnPointSecurityCadet + entities: + - uid: 9994 + components: + - pos: -55.5,56.5 + parent: 1 + type: Transform + - uid: 9995 + components: + - pos: -53.5,56.5 + parent: 1 + type: Transform + - uid: 9996 + components: + - pos: -51.5,56.5 + parent: 1 + type: Transform +- proto: SpawnPointSecurityOfficer + entities: + - uid: 9990 + components: + - pos: -62.5,54.5 + parent: 1 + type: Transform + - uid: 9991 + components: + - pos: -62.5,52.5 + parent: 1 + type: Transform + - uid: 9992 + components: + - pos: -60.5,52.5 + parent: 1 + type: Transform + - uid: 9993 + components: + - pos: -60.5,54.5 + parent: 1 + type: Transform +- proto: SpawnPointServiceWorker + entities: + - uid: 6036 + components: + - pos: -35.5,43.5 + parent: 1 + type: Transform + - uid: 10216 + components: + - pos: -33.5,43.5 + parent: 1 + type: Transform +- proto: SpawnPointStationEngineer + entities: + - uid: 14426 + components: + - pos: -66.5,26.5 + parent: 1 + type: Transform + - uid: 14427 + components: + - pos: -66.5,28.5 + parent: 1 + type: Transform + - uid: 14428 + components: + - pos: -64.5,28.5 + parent: 1 + type: Transform + - uid: 14429 + components: + - pos: -64.5,26.5 + parent: 1 + type: Transform +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 14430 + components: + - pos: -67.5,33.5 + parent: 1 + type: Transform + - uid: 14431 + components: + - pos: -64.5,33.5 + parent: 1 + type: Transform + - uid: 14432 + components: + - pos: -64.5,31.5 + parent: 1 + type: Transform +- proto: SpawnPointWarden + entities: + - uid: 7958 + components: + - pos: -47.5,61.5 + parent: 1 + type: Transform +- proto: SpawnVehicleJanicart + entities: + - uid: 7067 + components: + - pos: -51.5,36.5 + parent: 1 + type: Transform +- proto: SpawnVehicleSecway + entities: + - uid: 7973 + components: + - pos: -61.5,55.5 + parent: 1 + type: Transform + - uid: 7974 + components: + - pos: -60.5,55.5 + parent: 1 + type: Transform +- proto: SpawnVendingMachineRestockFoodDrink + entities: + - uid: 13674 + components: + - pos: -50.5,41.5 + parent: 1 + type: Transform + - uid: 13675 + components: + - pos: -53.5,44.5 + parent: 1 + type: Transform +- proto: SpeedLoaderMagnum + entities: + - uid: 14951 + components: + - pos: -43.393112,61.308212 + parent: 1 + type: Transform + - uid: 14952 + components: + - pos: -43.099293,61.292587 + parent: 1 + type: Transform + - uid: 14953 + components: + - pos: -43.689987,61.308212 + parent: 1 + type: Transform +- proto: Spoon + entities: + - uid: 15910 + components: + - pos: -49.478313,9.54667 + parent: 1 + type: Transform +- proto: SprayBottleSpaceCleaner + entities: + - uid: 7133 + components: + - flags: InContainer + type: MetaData + - parent: 7074 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 7134 + components: + - flags: InContainer + type: MetaData + - parent: 7074 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 7136 + components: + - flags: InContainer + type: MetaData + - parent: 7074 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 7565 + components: + - flags: InContainer + type: MetaData + - parent: 7074 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: StasisBedMachineCircuitboard + entities: + - uid: 5548 + components: + - pos: -49.451916,24.552746 + parent: 1 + type: Transform +- proto: StatueVenusBlue + entities: + - uid: 5707 + components: + - pos: -32.5,17.5 + parent: 1 + type: Transform +- proto: StatueVenusRed + entities: + - uid: 5706 + components: + - pos: -34.5,18.5 + parent: 1 + type: Transform +- proto: Stool + entities: + - uid: 6 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,10.5 + parent: 1 + type: Transform + - uid: 9 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,8.5 + parent: 1 + type: Transform + - uid: 581 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,12.5 + parent: 1 + type: Transform + - uid: 583 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,12.5 + parent: 1 + type: Transform + - uid: 4140 + components: + - rot: 3.141592653589793 rad + pos: -29.5,26.5 + parent: 1 + type: Transform + - uid: 4169 + components: + - pos: -10.5,34.5 + parent: 1 + type: Transform + - uid: 4219 + components: + - pos: -7.5,34.5 + parent: 1 + type: Transform +- proto: StoolBar + entities: + - uid: 5262 + components: + - rot: 3.141592653589793 rad + pos: -54.5,16.5 + parent: 1 + type: Transform + - uid: 5263 + components: + - rot: 3.141592653589793 rad + pos: -53.5,16.5 + parent: 1 + type: Transform + - uid: 5281 + components: + - rot: 3.141592653589793 rad + pos: -52.5,16.5 + parent: 1 + type: Transform + - uid: 9743 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,38.5 + parent: 1 + type: Transform + - uid: 9744 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,37.5 + parent: 1 + type: Transform + - uid: 9745 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,36.5 + parent: 1 + type: Transform + - uid: 9746 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,35.5 + parent: 1 + type: Transform +- proto: StorageCanister + entities: + - uid: 369 + components: + - pos: 3.5,-8.5 + parent: 1 + type: Transform + - uid: 10737 + components: + - pos: -77.5,28.5 + parent: 1 + type: Transform + - uid: 10738 + components: + - pos: -76.5,28.5 + parent: 1 + type: Transform + - uid: 13924 + components: + - pos: -77.5,43.5 + parent: 1 + type: Transform + - uid: 13925 + components: + - pos: -77.5,44.5 + parent: 1 + type: Transform + - uid: 13926 + components: + - pos: -77.5,45.5 + parent: 1 + type: Transform +- proto: Stunbaton + entities: + - uid: 7999 + components: + - pos: -63.653942,50.74784 + parent: 1 + type: Transform + - uid: 8000 + components: + - pos: -63.450817,50.59159 + parent: 1 + type: Transform + - uid: 8004 + components: + - pos: -63.185192,50.544716 + parent: 1 + type: Transform +- proto: SubstationBasic + entities: + - uid: 606 + components: + - pos: 11.5,-7.5 + parent: 1 + type: Transform + - uid: 608 + components: + - pos: -15.5,17.5 + parent: 1 + type: Transform + - uid: 922 + components: + - pos: 25.5,1.5 + parent: 1 + type: Transform + - uid: 2515 + components: + - pos: 23.5,9.5 + parent: 1 + type: Transform + - uid: 2593 + components: + - pos: 28.5,23.5 + parent: 1 + type: Transform + - uid: 2693 + components: + - pos: -9.5,18.5 + parent: 1 + type: Transform + - uid: 3932 + components: + - pos: -24.5,-3.5 + parent: 1 + type: Transform + - uid: 4339 + components: + - pos: -40.5,15.5 + parent: 1 + type: Transform + - uid: 6198 + components: + - pos: 18.5,46.5 + parent: 1 + type: Transform + - uid: 6527 + components: + - pos: -3.5,56.5 + parent: 1 + type: Transform + - uid: 6812 + components: + - pos: -35.5,57.5 + parent: 1 + type: Transform + - uid: 9336 + components: + - pos: -71.5,25.5 + parent: 1 + type: Transform + - uid: 10141 + components: + - pos: -65.5,59.5 + parent: 1 + type: Transform + - uid: 10207 + components: + - pos: -79.5,27.5 + parent: 1 + type: Transform +- proto: SubstationMachineCircuitboard + entities: + - uid: 5549 + components: + - pos: -52.589783,25.717905 + parent: 1 + type: Transform + - uid: 5550 + components: + - pos: -52.433533,25.45228 + parent: 1 + type: Transform +- proto: SuitStorageCE + entities: + - uid: 3616 + components: + - pos: -68.5,17.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: SuitStorageEVA + entities: + - uid: 3552 + components: + - pos: -10.5,49.5 + parent: 1 + type: Transform + - uid: 3553 + components: + - pos: -13.5,49.5 + parent: 1 + type: Transform + - uid: 5467 + components: + - pos: -12.5,49.5 + parent: 1 + type: Transform + - uid: 7387 + components: + - pos: -11.5,49.5 + parent: 1 + type: Transform +- proto: SuitStorageEVAPrisoner + entities: + - uid: 7186 + components: + - pos: -47.5,68.5 + parent: 1 + type: Transform + - uid: 7391 + components: + - pos: -48.5,68.5 + parent: 1 + type: Transform + - uid: 7410 + components: + - pos: -55.5,79.5 + parent: 1 + type: Transform + - uid: 10735 + components: + - pos: -55.5,80.5 + parent: 1 + type: Transform + - uid: 10736 + components: + - pos: -46.5,68.5 + parent: 1 + type: Transform +- proto: SuitStorageHOS + entities: + - uid: 7344 + components: + - pos: -58.5,63.5 + parent: 1 + type: Transform +- proto: SuitStorageRD + entities: + - uid: 334 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform +- proto: SuitStorageSec + entities: + - uid: 5494 + components: + - pos: -41.5,64.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraCommand + entities: + - uid: 13732 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,37.5 + parent: 1 + type: Transform + - id: HoP Office Line + type: SurveillanceCamera + - uid: 13733 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,45.5 + parent: 1 + type: Transform + - id: HoP Office Backroom + type: SurveillanceCamera + - uid: 13734 + components: + - pos: -11.5,46.5 + parent: 1 + type: Transform + - id: EVA Room + type: SurveillanceCamera + - uid: 13735 + components: + - rot: 3.141592653589793 rad + pos: -15.5,51.5 + parent: 1 + type: Transform + - id: Bridge Entrance + type: SurveillanceCamera + - uid: 13736 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,56.5 + parent: 1 + type: Transform + - id: Bridge Reception + type: SurveillanceCamera + - uid: 13737 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,56.5 + parent: 1 + type: Transform + - id: Vault + type: SurveillanceCamera + - uid: 13738 + components: + - rot: 3.141592653589793 rad + pos: -9.5,57.5 + parent: 1 + type: Transform + - id: Meeting Room + type: SurveillanceCamera + - uid: 13739 + components: + - pos: -6.5,59.5 + parent: 1 + type: Transform + - id: Captain's Office + type: SurveillanceCamera + - uid: 13740 + components: + - pos: -14.5,62.5 + parent: 1 + type: Transform + - id: Bridge + type: SurveillanceCamera + - uid: 15365 + components: + - rot: 3.141592653589793 rad + pos: 27.5,28.5 + parent: 1 + type: Transform + - id: Telecomms + type: SurveillanceCamera +- proto: SurveillanceCameraEngineering + entities: + - uid: 2016 + components: + - rot: -1.5707963267948966 rad + pos: -61.5,33.5 + parent: 1 + type: Transform + - id: Entrance + type: SurveillanceCamera + - uid: 13723 + components: + - rot: 3.141592653589793 rad + pos: -51.5,29.5 + parent: 1 + type: Transform + - id: Storage + type: SurveillanceCamera + - uid: 13724 + components: + - pos: -50.5,23.5 + parent: 1 + type: Transform + - id: Tech Vault + type: SurveillanceCamera + - uid: 14858 + components: + - rot: -1.5707963267948966 rad + pos: -67.5,28.5 + parent: 1 + type: Transform + - id: Equipment Room + type: SurveillanceCamera + - uid: 14859 + components: + - rot: 1.5707963267948966 rad + pos: -69.5,29.5 + parent: 1 + type: Transform + - id: SMES + type: SurveillanceCamera + - uid: 14860 + components: + - pos: -80.5,29.5 + parent: 1 + type: Transform + - id: Atmospherics Equipment + type: SurveillanceCamera + - uid: 14861 + components: + - rot: 1.5707963267948966 rad + pos: -77.5,41.5 + parent: 1 + type: Transform + - id: Atmospherics + type: SurveillanceCamera + - uid: 14862 + components: + - rot: 3.141592653589793 rad + pos: -82.5,27.5 + parent: 1 + type: Transform + - id: PA Room + type: SurveillanceCamera + - uid: 14863 + components: + - pos: -66.5,19.5 + parent: 1 + type: Transform + - id: AME + type: SurveillanceCamera +- proto: SurveillanceCameraGeneral + entities: + - uid: 8969 + components: + - rot: 3.141592653589793 rad + pos: -31.5,29.5 + parent: 1 + type: Transform + - id: Theatre + type: SurveillanceCamera + - uid: 13727 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,13.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + id: Store Area + type: SurveillanceCamera + - uid: 13728 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,11.5 + parent: 1 + type: Transform + - id: Library + type: SurveillanceCamera + - uid: 13729 + components: + - rot: 3.141592653589793 rad + pos: -25.5,18.5 + parent: 1 + type: Transform + - id: Library Backroom + type: SurveillanceCamera + - uid: 13731 + components: + - pos: -24.5,26.5 + parent: 1 + type: Transform + - id: Tool Room + type: SurveillanceCamera + - uid: 13747 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,2.5 + parent: 1 + type: Transform + - id: Arrivals Corridor + type: SurveillanceCamera + - uid: 13748 + components: + - rot: 3.141592653589793 rad + pos: 14.5,6.5 + parent: 1 + type: Transform + - id: Evac Corridor + type: SurveillanceCamera + - uid: 13749 + components: + - pos: 13.5,-2.5 + parent: 1 + type: Transform + - id: Chapel + type: SurveillanceCamera + - uid: 13750 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,11.5 + parent: 1 + type: Transform + - id: Evac 2 + type: SurveillanceCamera + - uid: 13751 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,20.5 + parent: 1 + type: Transform + - id: Evac 1 + type: SurveillanceCamera +- proto: SurveillanceCameraMedical + entities: + - uid: 13090 + components: + - rot: 3.141592653589793 rad + pos: 0.5,17.5 + parent: 1 + type: Transform + - id: Morgue + type: SurveillanceCamera + - uid: 13091 + components: + - pos: 1.5,36.5 + parent: 1 + type: Transform + - id: Cloning + type: SurveillanceCamera + - uid: 13092 + components: + - rot: 3.141592653589793 rad + pos: 10.5,37.5 + parent: 1 + type: Transform + - id: Cryo + type: SurveillanceCamera + - uid: 13093 + components: + - pos: 10.5,28.5 + parent: 1 + type: Transform + - id: Ward + type: SurveillanceCamera + - uid: 13094 + components: + - pos: 9.5,22.5 + parent: 1 + type: Transform + - id: Equipment Room + type: SurveillanceCamera + - uid: 13095 + components: + - rot: 3.141592653589793 rad + pos: 8.5,17.5 + parent: 1 + type: Transform + - id: Virology + type: SurveillanceCamera + - uid: 13297 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,27.5 + parent: 1 + type: Transform + - id: Main Hall + type: SurveillanceCamera + - uid: 13759 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,24.5 + parent: 1 + type: Transform + - id: Chemistry + type: SurveillanceCamera + - uid: 13762 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,31.5 + parent: 1 + type: Transform + - id: Reception + type: SurveillanceCamera + - uid: 13763 + components: + - rot: 3.141592653589793 rad + pos: -11.5,33.5 + parent: 1 + type: Transform + - id: Entrance + type: SurveillanceCamera +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 4281 + components: + - pos: -40.5,8.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 4276 + components: + - pos: -42.5,9.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 4278 + components: + - pos: -40.5,11.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 4274 + components: + - pos: -42.5,11.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterScience + entities: + - uid: 4277 + components: + - pos: -42.5,8.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 4280 + components: + - pos: -40.5,9.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterService + entities: + - uid: 4275 + components: + - pos: -42.5,10.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 4279 + components: + - pos: -40.5,10.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraScience + entities: + - uid: 13704 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-1.5 + parent: 1 + type: Transform + - id: Main Area + type: SurveillanceCamera + - uid: 13705 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-8.5 + parent: 1 + type: Transform + - id: Xenoarch + type: SurveillanceCamera + - uid: 13706 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-10.5 + parent: 1 + type: Transform + - id: Anomaly Lab + type: SurveillanceCamera + - uid: 13707 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + type: Transform + - id: Robotics Room + type: SurveillanceCamera + - uid: 13726 + components: + - pos: -10.5,4.5 + parent: 1 + type: Transform + - id: Entrance + type: SurveillanceCamera +- proto: SurveillanceCameraSecurity + entities: + - uid: 9146 + components: + - rot: 3.141592653589793 rad + pos: -63.5,55.5 + parent: 1 + type: Transform + - id: Equipment Room + type: SurveillanceCamera + - uid: 9147 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,56.5 + parent: 1 + type: Transform + - id: Brig Area + type: SurveillanceCamera + - uid: 9148 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,50.5 + parent: 1 + type: Transform + - id: Entrance + type: SurveillanceCamera + - uid: 9149 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,60.5 + parent: 1 + type: Transform + - id: Warden's Office + type: SurveillanceCamera + - uid: 9150 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,64.5 + parent: 1 + type: Transform + - id: Breakroom + type: SurveillanceCamera + - uid: 9151 + components: + - pos: -51.5,60.5 + parent: 1 + type: Transform + - id: Main Hall + type: SurveillanceCamera + - uid: 9152 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,63.5 + parent: 1 + type: Transform + - id: Armory + type: SurveillanceCamera + - uid: 9153 + components: + - pos: -51.5,71.5 + parent: 1 + type: Transform + - id: Space Bridge + type: SurveillanceCamera + - uid: 9154 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,86.5 + parent: 1 + type: Transform + - id: Perma Hall + type: SurveillanceCamera + - uid: 9155 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,85.5 + parent: 1 + type: Transform + - id: Permabrig + type: SurveillanceCamera + - uid: 13089 + components: + - rot: 3.141592653589793 rad + pos: 0.5,10.5 + parent: 1 + type: Transform + - id: Evac Corridor Checkpoint + type: SurveillanceCamera + - uid: 13854 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,28.5 + parent: 1 + type: Transform + - id: Med Checkpoint + type: SurveillanceCamera +- proto: SurveillanceCameraService + entities: + - uid: 13741 + components: + - rot: 3.141592653589793 rad + pos: -28.5,47.5 + parent: 1 + type: Transform + - id: Freezer + type: SurveillanceCamera + - uid: 13742 + components: + - rot: 3.141592653589793 rad + pos: -35.5,47.5 + parent: 1 + type: Transform + - id: Kitchen + type: SurveillanceCamera + - uid: 13743 + components: + - pos: -42.5,41.5 + parent: 1 + type: Transform + - id: Botany + type: SurveillanceCamera + - uid: 13744 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,36.5 + parent: 1 + type: Transform + - id: Bar Right + type: SurveillanceCamera + - uid: 13745 + components: + - pos: -43.5,35.5 + parent: 1 + type: Transform + - id: Bar Left + type: SurveillanceCamera + - uid: 13746 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,51.5 + parent: 1 + type: Transform + - id: Botany Backroom + type: SurveillanceCamera +- proto: SurveillanceCameraSupply + entities: + - uid: 3835 + components: + - pos: -44.5,-13.5 + parent: 1 + type: Transform + - id: Salvage Bay + type: SurveillanceCamera + - uid: 6818 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-9.5 + parent: 1 + type: Transform + - id: Cargo Dock + type: SurveillanceCamera + - uid: 13708 + components: + - pos: -35.5,0.5 + parent: 1 + type: Transform + - id: Reception Area + type: SurveillanceCamera + - uid: 13709 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-5.5 + parent: 1 + type: Transform + - id: Cargo Bay + type: SurveillanceCamera +- proto: SurveillanceWirelessCameraMovableEntertainment + entities: + - uid: 8350 + components: + - rot: 3.141592653589793 rad + pos: -29.5,23.5 + parent: 1 + type: Transform +- proto: Syringe + entities: + - uid: 1963 + components: + - pos: -0.47509155,19.63882 + parent: 1 + type: Transform + - uid: 1964 + components: + - pos: -0.4652393,20.229368 + parent: 1 + type: Transform + - uid: 12770 + components: + - desc: A suspicious looking syringe. + name: suspicious syringe + type: MetaData + - pos: 19.469204,28.644407 + parent: 1 + type: Transform + - tags: [] + type: Tag + - solutions: + injector: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 15 + reagents: + - Quantity: 15 + ReagentId: Hyronalin + type: SolutionContainerManager +- proto: Table + entities: + - uid: 64 + components: + - pos: 8.5,31.5 + parent: 1 + type: Transform + - uid: 230 + components: + - pos: -11.5,-5.5 + parent: 1 + type: Transform + - uid: 233 + components: + - pos: -10.5,-5.5 + parent: 1 + type: Transform + - uid: 235 + components: + - pos: -13.5,-1.5 + parent: 1 + type: Transform + - uid: 236 + components: + - pos: -12.5,-1.5 + parent: 1 + type: Transform + - uid: 237 + components: + - pos: -11.5,-1.5 + parent: 1 + type: Transform + - uid: 239 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 241 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 250 + components: + - pos: -9.5,2.5 + parent: 1 + type: Transform + - uid: 273 + components: + - pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 279 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 280 + components: + - pos: -0.5,-4.5 + parent: 1 + type: Transform + - uid: 284 + components: + - pos: -17.5,-13.5 + parent: 1 + type: Transform + - uid: 288 + components: + - pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 289 + components: + - pos: -4.5,-5.5 + parent: 1 + type: Transform + - uid: 322 + components: + - pos: -14.5,-14.5 + parent: 1 + type: Transform + - uid: 328 + components: + - pos: -16.5,-14.5 + parent: 1 + type: Transform + - uid: 329 + components: + - pos: -15.5,-14.5 + parent: 1 + type: Transform + - uid: 330 + components: + - pos: -17.5,-14.5 + parent: 1 + type: Transform + - uid: 350 + components: + - pos: 5.5,-11.5 + parent: 1 + type: Transform + - uid: 352 + components: + - pos: 4.5,-11.5 + parent: 1 + type: Transform + - uid: 353 + components: + - pos: 2.5,-11.5 + parent: 1 + type: Transform + - uid: 578 + components: + - pos: 12.5,31.5 + parent: 1 + type: Transform + - uid: 579 + components: + - pos: 10.5,31.5 + parent: 1 + type: Transform + - uid: 923 + components: + - pos: 25.5,2.5 + parent: 1 + type: Transform + - uid: 1619 + components: + - rot: 3.141592653589793 rad + pos: 4.5,16.5 + parent: 1 + type: Transform + - uid: 1621 + components: + - rot: 3.141592653589793 rad + pos: 4.5,15.5 + parent: 1 + type: Transform + - uid: 1623 + components: + - rot: 3.141592653589793 rad + pos: 4.5,17.5 + parent: 1 + type: Transform + - uid: 1634 + components: + - pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 1668 + components: + - pos: 16.5,-7.5 + parent: 1 + type: Transform + - uid: 1669 + components: + - pos: 16.5,-8.5 + parent: 1 + type: Transform + - uid: 1872 + components: + - pos: 25.5,-7.5 + parent: 1 + type: Transform + - uid: 1874 + components: + - pos: 22.5,-7.5 + parent: 1 + type: Transform + - uid: 1948 + components: + - pos: 1.5,25.5 + parent: 1 + type: Transform + - uid: 1949 + components: + - pos: 1.5,26.5 + parent: 1 + type: Transform + - uid: 1950 + components: + - pos: -0.5,28.5 + parent: 1 + type: Transform + - uid: 2019 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 2020 + components: + - pos: 6.5,23.5 + parent: 1 + type: Transform + - uid: 2021 + components: + - pos: 6.5,22.5 + parent: 1 + type: Transform + - uid: 2022 + components: + - pos: 7.5,22.5 + parent: 1 + type: Transform + - uid: 2023 + components: + - pos: 8.5,22.5 + parent: 1 + type: Transform + - uid: 2025 + components: + - pos: 10.5,26.5 + parent: 1 + type: Transform + - uid: 2026 + components: + - pos: 10.5,25.5 + parent: 1 + type: Transform + - uid: 2027 + components: + - pos: 10.5,24.5 + parent: 1 + type: Transform + - uid: 2038 + components: + - pos: 8.5,33.5 + parent: 1 + type: Transform + - uid: 2039 + components: + - pos: 9.5,33.5 + parent: 1 + type: Transform + - uid: 2040 + components: + - pos: 10.5,33.5 + parent: 1 + type: Transform + - uid: 2042 + components: + - pos: 4.5,37.5 + parent: 1 + type: Transform + - uid: 2043 + components: + - pos: 4.5,38.5 + parent: 1 + type: Transform + - uid: 2044 + components: + - pos: 4.5,39.5 + parent: 1 + type: Transform + - uid: 2353 + components: + - pos: 11.5,19.5 + parent: 1 + type: Transform + - uid: 2354 + components: + - pos: 11.5,18.5 + parent: 1 + type: Transform + - uid: 2355 + components: + - pos: 8.5,17.5 + parent: 1 + type: Transform + - uid: 2356 + components: + - pos: 7.5,17.5 + parent: 1 + type: Transform + - uid: 2357 + components: + - pos: 6.5,17.5 + parent: 1 + type: Transform + - uid: 2358 + components: + - pos: 6.5,16.5 + parent: 1 + type: Transform + - uid: 2636 + components: + - pos: -9.5,28.5 + parent: 1 + type: Transform + - uid: 2765 + components: + - pos: -14.5,8.5 + parent: 1 + type: Transform + - uid: 2766 + components: + - pos: -14.5,9.5 + parent: 1 + type: Transform + - uid: 2767 + components: + - pos: -14.5,10.5 + parent: 1 + type: Transform + - uid: 2768 + components: + - pos: -10.5,8.5 + parent: 1 + type: Transform + - uid: 2769 + components: + - pos: -10.5,9.5 + parent: 1 + type: Transform + - uid: 2770 + components: + - pos: -10.5,11.5 + parent: 1 + type: Transform + - uid: 2771 + components: + - pos: -10.5,12.5 + parent: 1 + type: Transform + - uid: 2773 + components: + - pos: -14.5,13.5 + parent: 1 + type: Transform + - uid: 2774 + components: + - pos: -14.5,14.5 + parent: 1 + type: Transform + - uid: 2776 + components: + - pos: -10.5,15.5 + parent: 1 + type: Transform + - uid: 2840 + components: + - pos: -16.5,29.5 + parent: 1 + type: Transform + - uid: 2841 + components: + - pos: -15.5,29.5 + parent: 1 + type: Transform + - uid: 2845 + components: + - pos: -15.5,24.5 + parent: 1 + type: Transform + - uid: 2885 + components: + - pos: 25.5,-8.5 + parent: 1 + type: Transform + - uid: 2951 + components: + - pos: 29.5,-4.5 + parent: 1 + type: Transform + - uid: 2952 + components: + - pos: 28.5,-4.5 + parent: 1 + type: Transform + - uid: 2958 + components: + - pos: 8.5,-4.5 + parent: 1 + type: Transform + - uid: 2959 + components: + - pos: 7.5,-4.5 + parent: 1 + type: Transform + - uid: 3038 + components: + - pos: -15.5,25.5 + parent: 1 + type: Transform + - uid: 3507 + components: + - pos: -21.5,-10.5 + parent: 1 + type: Transform + - uid: 3508 + components: + - pos: -21.5,-11.5 + parent: 1 + type: Transform + - uid: 3515 + components: + - pos: -19.5,-10.5 + parent: 1 + type: Transform + - uid: 3532 + components: + - pos: -39.5,1.5 + parent: 1 + type: Transform + - uid: 3534 + components: + - pos: -39.5,0.5 + parent: 1 + type: Transform + - uid: 3535 + components: + - pos: -38.5,2.5 + parent: 1 + type: Transform + - uid: 3536 + components: + - pos: -37.5,2.5 + parent: 1 + type: Transform + - uid: 3545 + components: + - pos: -36.5,2.5 + parent: 1 + type: Transform + - uid: 3546 + components: + - pos: -35.5,1.5 + parent: 1 + type: Transform + - uid: 3547 + components: + - pos: -35.5,0.5 + parent: 1 + type: Transform + - uid: 3671 + components: + - pos: -42.5,1.5 + parent: 1 + type: Transform + - uid: 3741 + components: + - pos: -46.5,2.5 + parent: 1 + type: Transform + - uid: 3742 + components: + - pos: -46.5,1.5 + parent: 1 + type: Transform + - uid: 3743 + components: + - pos: -46.5,0.5 + parent: 1 + type: Transform + - uid: 4128 + components: + - pos: -26.5,24.5 + parent: 1 + type: Transform + - uid: 4129 + components: + - pos: -25.5,24.5 + parent: 1 + type: Transform + - uid: 4130 + components: + - pos: -24.5,24.5 + parent: 1 + type: Transform + - uid: 4131 + components: + - pos: -23.5,24.5 + parent: 1 + type: Transform + - uid: 4132 + components: + - pos: -22.5,24.5 + parent: 1 + type: Transform + - uid: 4207 + components: + - pos: -42.5,23.5 + parent: 1 + type: Transform + - uid: 4208 + components: + - pos: -41.5,23.5 + parent: 1 + type: Transform + - uid: 4209 + components: + - pos: -40.5,23.5 + parent: 1 + type: Transform + - uid: 4210 + components: + - pos: -42.5,24.5 + parent: 1 + type: Transform + - uid: 4211 + components: + - pos: -42.5,28.5 + parent: 1 + type: Transform + - uid: 4212 + components: + - pos: -41.5,28.5 + parent: 1 + type: Transform + - uid: 4213 + components: + - pos: -40.5,28.5 + parent: 1 + type: Transform + - uid: 4214 + components: + - pos: -40.5,27.5 + parent: 1 + type: Transform + - uid: 4557 + components: + - pos: 23.5,40.5 + parent: 1 + type: Transform + - uid: 5250 + components: + - pos: -53.5,17.5 + parent: 1 + type: Transform + - uid: 5251 + components: + - pos: -54.5,17.5 + parent: 1 + type: Transform + - uid: 5256 + components: + - pos: -54.5,21.5 + parent: 1 + type: Transform + - uid: 5257 + components: + - pos: -53.5,21.5 + parent: 1 + type: Transform + - uid: 5258 + components: + - pos: -52.5,21.5 + parent: 1 + type: Transform + - uid: 5259 + components: + - pos: -53.5,13.5 + parent: 1 + type: Transform + - uid: 5278 + components: + - pos: -52.5,17.5 + parent: 1 + type: Transform + - uid: 5283 + components: + - pos: -54.5,29.5 + parent: 1 + type: Transform + - uid: 5284 + components: + - pos: -53.5,29.5 + parent: 1 + type: Transform + - uid: 5285 + components: + - pos: -52.5,29.5 + parent: 1 + type: Transform + - uid: 5286 + components: + - pos: -51.5,29.5 + parent: 1 + type: Transform + - uid: 5287 + components: + - pos: -47.5,29.5 + parent: 1 + type: Transform + - uid: 5288 + components: + - pos: -47.5,28.5 + parent: 1 + type: Transform + - uid: 5289 + components: + - pos: -47.5,27.5 + parent: 1 + type: Transform + - uid: 5325 + components: + - pos: 23.5,38.5 + parent: 1 + type: Transform + - uid: 5339 + components: + - pos: 23.5,42.5 + parent: 1 + type: Transform + - uid: 5407 + components: + - pos: -28.5,-8.5 + parent: 1 + type: Transform + - uid: 5424 + components: + - pos: -18.5,0.5 + parent: 1 + type: Transform + - uid: 5425 + components: + - pos: -29.5,-2.5 + parent: 1 + type: Transform + - uid: 5440 + components: + - pos: -23.5,-3.5 + parent: 1 + type: Transform + - uid: 5520 + components: + - pos: -47.5,-6.5 + parent: 1 + type: Transform + - uid: 5521 + components: + - pos: -47.5,-7.5 + parent: 1 + type: Transform + - uid: 5601 + components: + - pos: -41.5,13.5 + parent: 1 + type: Transform + - uid: 5602 + components: + - pos: -46.5,15.5 + parent: 1 + type: Transform + - uid: 5603 + components: + - pos: -47.5,15.5 + parent: 1 + type: Transform + - uid: 5610 + components: + - pos: -45.5,25.5 + parent: 1 + type: Transform + - uid: 5611 + components: + - pos: -45.5,24.5 + parent: 1 + type: Transform + - uid: 5635 + components: + - pos: -26.5,26.5 + parent: 1 + type: Transform + - uid: 5636 + components: + - pos: -25.5,26.5 + parent: 1 + type: Transform + - uid: 5637 + components: + - pos: -24.5,26.5 + parent: 1 + type: Transform + - uid: 5639 + components: + - pos: -24.5,29.5 + parent: 1 + type: Transform + - uid: 5713 + components: + - pos: -22.5,20.5 + parent: 1 + type: Transform + - uid: 5717 + components: + - pos: -30.5,12.5 + parent: 1 + type: Transform + - uid: 5718 + components: + - pos: -34.5,13.5 + parent: 1 + type: Transform + - uid: 5720 + components: + - pos: -20.5,14.5 + parent: 1 + type: Transform + - uid: 5784 + components: + - pos: -7.5,22.5 + parent: 1 + type: Transform + - uid: 6329 + components: + - pos: 9.5,46.5 + parent: 1 + type: Transform + - uid: 6330 + components: + - pos: -0.5,51.5 + parent: 1 + type: Transform + - uid: 6512 + components: + - pos: -18.5,66.5 + parent: 1 + type: Transform + - uid: 6513 + components: + - pos: -17.5,66.5 + parent: 1 + type: Transform + - uid: 6514 + components: + - pos: -18.5,65.5 + parent: 1 + type: Transform + - uid: 6515 + components: + - pos: -19.5,65.5 + parent: 1 + type: Transform + - uid: 6516 + components: + - pos: -15.5,66.5 + parent: 1 + type: Transform + - uid: 6517 + components: + - pos: -14.5,66.5 + parent: 1 + type: Transform + - uid: 6518 + components: + - pos: -14.5,65.5 + parent: 1 + type: Transform + - uid: 6519 + components: + - pos: -13.5,65.5 + parent: 1 + type: Transform + - uid: 6520 + components: + - pos: -12.5,63.5 + parent: 1 + type: Transform + - uid: 6521 + components: + - pos: -20.5,63.5 + parent: 1 + type: Transform + - uid: 6522 + components: + - pos: -21.5,62.5 + parent: 1 + type: Transform + - uid: 6523 + components: + - pos: -21.5,59.5 + parent: 1 + type: Transform + - uid: 6524 + components: + - pos: -11.5,62.5 + parent: 1 + type: Transform + - uid: 6525 + components: + - pos: -11.5,59.5 + parent: 1 + type: Transform + - uid: 6890 + components: + - pos: -45.5,42.5 + parent: 1 + type: Transform + - uid: 6891 + components: + - pos: -45.5,43.5 + parent: 1 + type: Transform + - uid: 6892 + components: + - pos: -45.5,44.5 + parent: 1 + type: Transform + - uid: 6893 + components: + - pos: -39.5,43.5 + parent: 1 + type: Transform + - uid: 6894 + components: + - pos: -39.5,44.5 + parent: 1 + type: Transform + - uid: 6895 + components: + - pos: -39.5,45.5 + parent: 1 + type: Transform + - uid: 6896 + components: + - pos: -39.5,46.5 + parent: 1 + type: Transform + - uid: 6897 + components: + - pos: -36.5,41.5 + parent: 1 + type: Transform + - uid: 6898 + components: + - pos: -35.5,41.5 + parent: 1 + type: Transform + - uid: 6909 + components: + - pos: -36.5,45.5 + parent: 1 + type: Transform + - uid: 6910 + components: + - pos: -36.5,44.5 + parent: 1 + type: Transform + - uid: 6911 + components: + - pos: -35.5,45.5 + parent: 1 + type: Transform + - uid: 6912 + components: + - pos: -35.5,44.5 + parent: 1 + type: Transform + - uid: 6913 + components: + - pos: -34.5,45.5 + parent: 1 + type: Transform + - uid: 6914 + components: + - pos: -34.5,44.5 + parent: 1 + type: Transform + - uid: 6915 + components: + - pos: -37.5,47.5 + parent: 1 + type: Transform + - uid: 6916 + components: + - pos: -36.5,47.5 + parent: 1 + type: Transform + - uid: 6917 + components: + - pos: -35.5,47.5 + parent: 1 + type: Transform + - uid: 6920 + components: + - pos: -33.5,42.5 + parent: 1 + type: Transform + - uid: 6921 + components: + - pos: -32.5,42.5 + parent: 1 + type: Transform + - uid: 6922 + components: + - pos: -33.5,44.5 + parent: 1 + type: Transform + - uid: 6923 + components: + - pos: -33.5,45.5 + parent: 1 + type: Transform + - uid: 7073 + components: + - pos: -53.5,36.5 + parent: 1 + type: Transform + - uid: 7296 + components: + - pos: -59.5,89.5 + parent: 1 + type: Transform + - uid: 7298 + components: + - pos: -61.5,88.5 + parent: 1 + type: Transform + - uid: 7302 + components: + - pos: -61.5,89.5 + parent: 1 + type: Transform + - uid: 7438 + components: + - pos: -50.5,88.5 + parent: 1 + type: Transform + - uid: 7443 + components: + - pos: -50.5,89.5 + parent: 1 + type: Transform + - uid: 7564 + components: + - pos: -19.5,36.5 + parent: 1 + type: Transform + - uid: 7571 + components: + - pos: -19.5,39.5 + parent: 1 + type: Transform + - uid: 7572 + components: + - pos: -19.5,40.5 + parent: 1 + type: Transform + - uid: 7640 + components: + - pos: -54.5,82.5 + parent: 1 + type: Transform + - uid: 7641 + components: + - pos: -54.5,88.5 + parent: 1 + type: Transform + - uid: 7711 + components: + - pos: -58.5,89.5 + parent: 1 + type: Transform + - uid: 7738 + components: + - pos: -60.5,89.5 + parent: 1 + type: Transform + - uid: 7902 + components: + - pos: -47.5,56.5 + parent: 1 + type: Transform + - uid: 7903 + components: + - pos: -47.5,63.5 + parent: 1 + type: Transform + - uid: 7905 + components: + - pos: -48.5,59.5 + parent: 1 + type: Transform + - uid: 7906 + components: + - pos: -47.5,59.5 + parent: 1 + type: Transform + - uid: 7960 + components: + - pos: -55.5,58.5 + parent: 1 + type: Transform + - uid: 7961 + components: + - pos: -56.5,58.5 + parent: 1 + type: Transform + - uid: 7963 + components: + - pos: -53.5,58.5 + parent: 1 + type: Transform + - uid: 7967 + components: + - pos: -60.5,50.5 + parent: 1 + type: Transform + - uid: 7968 + components: + - pos: -61.5,50.5 + parent: 1 + type: Transform + - uid: 7969 + components: + - pos: -62.5,50.5 + parent: 1 + type: Transform + - uid: 7970 + components: + - pos: -63.5,50.5 + parent: 1 + type: Transform + - uid: 7971 + components: + - pos: -63.5,51.5 + parent: 1 + type: Transform + - uid: 7984 + components: + - pos: -60.5,58.5 + parent: 1 + type: Transform + - uid: 8170 + components: + - pos: 20.5,32.5 + parent: 1 + type: Transform + - uid: 9006 + components: + - pos: -32.5,-5.5 + parent: 1 + type: Transform + - uid: 9070 + components: + - pos: 17.5,42.5 + parent: 1 + type: Transform + - uid: 9082 + components: + - pos: 18.5,40.5 + parent: 1 + type: Transform + - uid: 9226 + components: + - pos: -63.5,41.5 + parent: 1 + type: Transform + - uid: 9274 + components: + - pos: -60.5,41.5 + parent: 1 + type: Transform + - uid: 9948 + components: + - rot: 1.5707963267948966 rad + pos: -64.5,14.5 + parent: 1 + type: Transform + - uid: 9949 + components: + - rot: 1.5707963267948966 rad + pos: -81.5,22.5 + parent: 1 + type: Transform + - uid: 9950 + components: + - rot: 1.5707963267948966 rad + pos: -80.5,22.5 + parent: 1 + type: Transform + - uid: 10095 + components: + - pos: -13.5,-7.5 + parent: 1 + type: Transform + - uid: 10362 + components: + - pos: -3.5,43.5 + parent: 1 + type: Transform + - uid: 10366 + components: + - pos: -3.5,42.5 + parent: 1 + type: Transform + - uid: 10370 + components: + - pos: -29.5,49.5 + parent: 1 + type: Transform + - uid: 10371 + components: + - pos: -28.5,49.5 + parent: 1 + type: Transform + - uid: 10403 + components: + - pos: 22.5,29.5 + parent: 1 + type: Transform + - uid: 10719 + components: + - rot: -1.5707963267948966 rad + pos: -66.5,25.5 + parent: 1 + type: Transform + - uid: 10720 + components: + - rot: -1.5707963267948966 rad + pos: -65.5,25.5 + parent: 1 + type: Transform + - uid: 10721 + components: + - rot: -1.5707963267948966 rad + pos: -64.5,25.5 + parent: 1 + type: Transform + - uid: 10722 + components: + - rot: -1.5707963267948966 rad + pos: -63.5,25.5 + parent: 1 + type: Transform + - uid: 10731 + components: + - rot: -1.5707963267948966 rad + pos: -82.5,29.5 + parent: 1 + type: Transform + - uid: 10732 + components: + - rot: -1.5707963267948966 rad + pos: -82.5,30.5 + parent: 1 + type: Transform + - uid: 10733 + components: + - rot: -1.5707963267948966 rad + pos: -82.5,31.5 + parent: 1 + type: Transform + - uid: 10851 + components: + - pos: -61.5,41.5 + parent: 1 + type: Transform + - uid: 12512 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,14.5 + parent: 1 + type: Transform + - uid: 12767 + components: + - pos: 18.5,28.5 + parent: 1 + type: Transform + - uid: 12768 + components: + - pos: 19.5,28.5 + parent: 1 + type: Transform + - uid: 12769 + components: + - pos: 20.5,28.5 + parent: 1 + type: Transform + - uid: 12902 + components: + - pos: 4.5,8.5 + parent: 1 + type: Transform + - uid: 12903 + components: + - pos: 5.5,8.5 + parent: 1 + type: Transform + - uid: 13083 + components: + - pos: -2.5,10.5 + parent: 1 + type: Transform + - uid: 13084 + components: + - pos: -1.5,10.5 + parent: 1 + type: Transform + - uid: 14239 + components: + - pos: -73.5,51.5 + parent: 1 + type: Transform + - uid: 14240 + components: + - pos: -72.5,51.5 + parent: 1 + type: Transform + - uid: 14245 + components: + - rot: 3.141592653589793 rad + pos: -66.5,41.5 + parent: 1 + type: Transform + - uid: 14246 + components: + - rot: 3.141592653589793 rad + pos: -66.5,42.5 + parent: 1 + type: Transform + - uid: 14315 + components: + - rot: 3.141592653589793 rad + pos: -74.5,46.5 + parent: 1 + type: Transform + - uid: 14580 + components: + - pos: -60.5,19.5 + parent: 1 + type: Transform + - uid: 14586 + components: + - rot: -1.5707963267948966 rad + pos: -61.5,25.5 + parent: 1 + type: Transform + - uid: 14590 + components: + - rot: 1.5707963267948966 rad + pos: -67.5,10.5 + parent: 1 + type: Transform + - uid: 15110 + components: + - pos: 14.5,-7.5 + parent: 1 + type: Transform + - uid: 15547 + components: + - pos: 11.5,-20.5 + parent: 1 + type: Transform + - uid: 15548 + components: + - pos: 12.5,-20.5 + parent: 1 + type: Transform +- proto: TableCarpet + entities: + - uid: 6782 + components: + - pos: -37.5,52.5 + parent: 1 + type: Transform + - uid: 6822 + components: + - pos: -36.5,52.5 + parent: 1 + type: Transform + - uid: 6823 + components: + - pos: -35.5,52.5 + parent: 1 + type: Transform + - uid: 6824 + components: + - pos: -34.5,52.5 + parent: 1 + type: Transform +- proto: TableFrame + entities: + - uid: 1934 + components: + - pos: -4.5,21.5 + parent: 1 + type: Transform + - uid: 1939 + components: + - pos: -4.5,24.5 + parent: 1 + type: Transform + - uid: 7140 + components: + - pos: -64.5,41.5 + parent: 1 + type: Transform + - uid: 7514 + components: + - pos: -25.5,55.5 + parent: 1 + type: Transform + - uid: 7515 + components: + - pos: -25.5,54.5 + parent: 1 + type: Transform + - uid: 10923 + components: + - pos: -61.5,39.5 + parent: 1 + type: Transform +- proto: TableGlass + entities: + - uid: 342 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-11.5 + parent: 1 + type: Transform + - uid: 1935 + components: + - pos: -3.5,27.5 + parent: 1 + type: Transform + - uid: 1937 + components: + - pos: 0.5,27.5 + parent: 1 + type: Transform + - uid: 1938 + components: + - pos: -4.5,20.5 + parent: 1 + type: Transform + - uid: 1941 + components: + - pos: -0.5,19.5 + parent: 1 + type: Transform + - uid: 1942 + components: + - pos: -0.5,22.5 + parent: 1 + type: Transform + - uid: 1943 + components: + - pos: -0.5,20.5 + parent: 1 + type: Transform + - uid: 1945 + components: + - pos: -0.5,21.5 + parent: 1 + type: Transform + - uid: 2035 + components: + - pos: 15.5,28.5 + parent: 1 + type: Transform + - uid: 2036 + components: + - pos: 16.5,28.5 + parent: 1 + type: Transform +- proto: TableReinforced + entities: + - uid: 1327 + components: + - pos: 10.5,-13.5 + parent: 1 + type: Transform + - uid: 2969 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,23.5 + parent: 1 + type: Transform + - uid: 7912 + components: + - pos: -43.5,61.5 + parent: 1 + type: Transform + - uid: 7913 + components: + - pos: -42.5,61.5 + parent: 1 + type: Transform + - uid: 7914 + components: + - pos: -41.5,61.5 + parent: 1 + type: Transform + - uid: 7915 + components: + - pos: -41.5,62.5 + parent: 1 + type: Transform + - uid: 7916 + components: + - pos: -41.5,63.5 + parent: 1 + type: Transform + - uid: 10857 + components: + - pos: -23.5,54.5 + parent: 1 + type: Transform + - uid: 10858 + components: + - pos: -23.5,53.5 + parent: 1 + type: Transform + - uid: 10859 + components: + - pos: -22.5,53.5 + parent: 1 + type: Transform + - uid: 14818 + components: + - pos: -21.5,53.5 + parent: 1 + type: Transform +- proto: TableReinforcedGlass + entities: + - uid: 6940 + components: + - pos: -42.5,47.5 + parent: 1 + type: Transform + - uid: 6948 + components: + - pos: -43.5,47.5 + parent: 1 + type: Transform +- proto: TableStone + entities: + - uid: 1808 + components: + - pos: 13.5,3.5 + parent: 1 + type: Transform + - uid: 1809 + components: + - pos: 14.5,3.5 + parent: 1 + type: Transform + - uid: 1811 + components: + - pos: 16.5,3.5 + parent: 1 + type: Transform + - uid: 1812 + components: + - pos: 17.5,3.5 + parent: 1 + type: Transform +- proto: TableWood + entities: + - uid: 246 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 628 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 629 + components: + - pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 910 + components: + - pos: 27.5,-1.5 + parent: 1 + type: Transform + - uid: 911 + components: + - pos: 28.5,-1.5 + parent: 1 + type: Transform + - uid: 1279 + components: + - pos: 14.5,31.5 + parent: 1 + type: Transform + - uid: 1313 + components: + - pos: 15.5,31.5 + parent: 1 + type: Transform + - uid: 1521 + components: + - pos: -17.5,-4.5 + parent: 1 + type: Transform + - uid: 1833 + components: + - pos: 21.5,-2.5 + parent: 1 + type: Transform + - uid: 1834 + components: + - pos: 21.5,-1.5 + parent: 1 + type: Transform + - uid: 1974 + components: + - pos: -1.5,34.5 + parent: 1 + type: Transform + - uid: 1975 + components: + - pos: -1.5,33.5 + parent: 1 + type: Transform + - uid: 1976 + components: + - pos: -1.5,32.5 + parent: 1 + type: Transform + - uid: 1977 + components: + - pos: -0.5,32.5 + parent: 1 + type: Transform + - uid: 1978 + components: + - pos: 0.5,32.5 + parent: 1 + type: Transform + - uid: 2260 + components: + - pos: 16.5,15.5 + parent: 1 + type: Transform + - uid: 2261 + components: + - pos: 17.5,15.5 + parent: 1 + type: Transform + - uid: 2262 + components: + - pos: 18.5,15.5 + parent: 1 + type: Transform + - uid: 2263 + components: + - pos: 19.5,15.5 + parent: 1 + type: Transform + - uid: 2264 + components: + - pos: 20.5,15.5 + parent: 1 + type: Transform + - uid: 2265 + components: + - pos: 17.5,19.5 + parent: 1 + type: Transform + - uid: 2991 + components: + - pos: 24.5,14.5 + parent: 1 + type: Transform + - uid: 3096 + components: + - pos: -27.5,13.5 + parent: 1 + type: Transform + - uid: 3097 + components: + - pos: -28.5,13.5 + parent: 1 + type: Transform + - uid: 3103 + components: + - pos: -27.5,9.5 + parent: 1 + type: Transform + - uid: 3104 + components: + - pos: -26.5,9.5 + parent: 1 + type: Transform + - uid: 3105 + components: + - pos: -25.5,9.5 + parent: 1 + type: Transform + - uid: 3106 + components: + - pos: -24.5,9.5 + parent: 1 + type: Transform + - uid: 3107 + components: + - pos: -24.5,8.5 + parent: 1 + type: Transform + - uid: 3183 + components: + - pos: -27.5,17.5 + parent: 1 + type: Transform + - uid: 3185 + components: + - pos: -26.5,17.5 + parent: 1 + type: Transform + - uid: 3186 + components: + - pos: -26.5,16.5 + parent: 1 + type: Transform + - uid: 3196 + components: + - pos: -31.5,9.5 + parent: 1 + type: Transform + - uid: 3201 + components: + - pos: -27.5,16.5 + parent: 1 + type: Transform + - uid: 3572 + components: + - rot: 1.5707963267948966 rad + pos: -72.5,15.5 + parent: 1 + type: Transform + - uid: 3575 + components: + - pos: -31.5,-1.5 + parent: 1 + type: Transform + - uid: 3577 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-3.5 + parent: 1 + type: Transform + - uid: 3584 + components: + - rot: 1.5707963267948966 rad + pos: -70.5,15.5 + parent: 1 + type: Transform + - uid: 3692 + components: + - pos: -37.5,-9.5 + parent: 1 + type: Transform + - uid: 3727 + components: + - pos: -45.5,-3.5 + parent: 1 + type: Transform + - uid: 3747 + components: + - pos: -45.5,-7.5 + parent: 1 + type: Transform + - uid: 3749 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-6.5 + parent: 1 + type: Transform + - uid: 5342 + components: + - rot: 3.141592653589793 rad + pos: -50.5,9.5 + parent: 1 + type: Transform + - uid: 5343 + components: + - rot: 3.141592653589793 rad + pos: -48.5,9.5 + parent: 1 + type: Transform + - uid: 5351 + components: + - pos: -54.5,-5.5 + parent: 1 + type: Transform + - uid: 5352 + components: + - pos: -53.5,-5.5 + parent: 1 + type: Transform + - uid: 5353 + components: + - pos: -52.5,-5.5 + parent: 1 + type: Transform + - uid: 5354 + components: + - pos: -53.5,-0.5 + parent: 1 + type: Transform + - uid: 5355 + components: + - pos: -53.5,-1.5 + parent: 1 + type: Transform + - uid: 6077 + components: + - rot: 3.141592653589793 rad + pos: -49.5,9.5 + parent: 1 + type: Transform + - uid: 6243 + components: + - pos: -9.5,44.5 + parent: 1 + type: Transform + - uid: 6244 + components: + - pos: -8.5,44.5 + parent: 1 + type: Transform + - uid: 6245 + components: + - pos: -6.5,44.5 + parent: 1 + type: Transform + - uid: 6331 + components: + - pos: 2.5,49.5 + parent: 1 + type: Transform + - uid: 6332 + components: + - pos: 15.5,50.5 + parent: 1 + type: Transform + - uid: 6333 + components: + - pos: 14.5,50.5 + parent: 1 + type: Transform + - uid: 6510 + components: + - pos: -6.5,61.5 + parent: 1 + type: Transform + - uid: 6511 + components: + - pos: -7.5,61.5 + parent: 1 + type: Transform + - uid: 6646 + components: + - pos: -10.5,55.5 + parent: 1 + type: Transform + - uid: 6647 + components: + - pos: -9.5,55.5 + parent: 1 + type: Transform + - uid: 6648 + components: + - pos: -8.5,55.5 + parent: 1 + type: Transform + - uid: 6899 + components: + - pos: -33.5,38.5 + parent: 1 + type: Transform + - uid: 6901 + components: + - pos: -33.5,36.5 + parent: 1 + type: Transform + - uid: 6902 + components: + - pos: -33.5,35.5 + parent: 1 + type: Transform + - uid: 7357 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 7373 + components: + - pos: -5.5,44.5 + parent: 1 + type: Transform + - uid: 7388 + components: + - pos: -37.5,-10.5 + parent: 1 + type: Transform + - uid: 7528 + components: + - pos: -22.5,46.5 + parent: 1 + type: Transform + - uid: 7529 + components: + - pos: -21.5,46.5 + parent: 1 + type: Transform + - uid: 7542 + components: + - pos: -19.5,47.5 + parent: 1 + type: Transform + - uid: 7543 + components: + - pos: -19.5,48.5 + parent: 1 + type: Transform + - uid: 7544 + components: + - pos: -19.5,46.5 + parent: 1 + type: Transform + - uid: 7924 + components: + - pos: -54.5,64.5 + parent: 1 + type: Transform + - uid: 7925 + components: + - pos: -56.5,63.5 + parent: 1 + type: Transform + - uid: 7926 + components: + - pos: -56.5,64.5 + parent: 1 + type: Transform + - uid: 7927 + components: + - pos: -60.5,64.5 + parent: 1 + type: Transform + - uid: 7928 + components: + - pos: -60.5,63.5 + parent: 1 + type: Transform + - uid: 7929 + components: + - pos: -58.5,64.5 + parent: 1 + type: Transform + - uid: 8071 + components: + - rot: 1.5707963267948966 rad + pos: -70.5,16.5 + parent: 1 + type: Transform + - uid: 9728 + components: + - pos: -30.5,39.5 + parent: 1 + type: Transform + - uid: 9729 + components: + - pos: -30.5,38.5 + parent: 1 + type: Transform + - uid: 9730 + components: + - pos: -30.5,36.5 + parent: 1 + type: Transform + - uid: 9731 + components: + - pos: -30.5,35.5 + parent: 1 + type: Transform + - uid: 9747 + components: + - pos: -41.5,35.5 + parent: 1 + type: Transform + - uid: 9748 + components: + - pos: -44.5,36.5 + parent: 1 + type: Transform + - uid: 9750 + components: + - pos: -38.5,37.5 + parent: 1 + type: Transform + - uid: 9751 + components: + - pos: -37.5,37.5 + parent: 1 + type: Transform + - uid: 9752 + components: + - pos: -36.5,37.5 + parent: 1 + type: Transform + - uid: 9770 + components: + - pos: -38.5,40.5 + parent: 1 + type: Transform + - uid: 10256 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-2.5 + parent: 1 + type: Transform + - uid: 10702 + components: + - rot: -1.5707963267948966 rad + pos: -68.5,16.5 + parent: 1 + type: Transform + - uid: 10853 + components: + - pos: -63.5,39.5 + parent: 1 + type: Transform + - uid: 10922 + components: + - pos: -62.5,39.5 + parent: 1 + type: Transform + - uid: 10964 + components: + - pos: -72.5,41.5 + parent: 1 + type: Transform + - uid: 10965 + components: + - pos: -70.5,39.5 + parent: 1 + type: Transform + - uid: 14000 + components: + - pos: -70.5,45.5 + parent: 1 + type: Transform + - uid: 14001 + components: + - pos: -69.5,45.5 + parent: 1 + type: Transform + - uid: 14203 + components: + - rot: 1.5707963267948966 rad + pos: -73.5,15.5 + parent: 1 + type: Transform + - uid: 14206 + components: + - pos: -37.5,-13.5 + parent: 1 + type: Transform + - uid: 14282 + components: + - pos: -71.5,49.5 + parent: 1 + type: Transform + - uid: 14283 + components: + - pos: -70.5,49.5 + parent: 1 + type: Transform + - uid: 14288 + components: + - pos: -72.5,47.5 + parent: 1 + type: Transform + - uid: 15012 + components: + - pos: 18.5,48.5 + parent: 1 + type: Transform + - uid: 15093 + components: + - pos: -38.5,-9.5 + parent: 1 + type: Transform + - uid: 15220 + components: + - pos: 17.5,52.5 + parent: 1 + type: Transform +- proto: TelecomServer + entities: + - uid: 982 + components: + - pos: 26.5,28.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 983 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 1026 + components: + - pos: 25.5,26.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 1027 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 2590 + components: + - pos: 25.5,25.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 2591 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 15336 + components: + - pos: 25.5,28.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 15337 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 15338 + components: + - pos: 27.5,28.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 15339 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 15340 + components: + - pos: 28.5,28.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 15341 + - 15342 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 15343 + components: + - pos: 28.5,26.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 15344 + - 15345 + - 15346 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 15347 + components: + - pos: 28.5,25.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 15348 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer +- proto: TintedWindow + entities: + - uid: 530 + components: + - pos: -42.5,-6.5 + parent: 1 + type: Transform + - uid: 536 + components: + - pos: -42.5,-7.5 + parent: 1 + type: Transform + - uid: 1325 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,31.5 + parent: 1 + type: Transform + - uid: 1397 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,30.5 + parent: 1 + type: Transform + - uid: 1664 + components: + - pos: 17.5,-11.5 + parent: 1 + type: Transform +- proto: ToiletDirtyWater + entities: + - uid: 1666 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-10.5 + parent: 1 + type: Transform + - uid: 4069 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-1.5 + parent: 1 + type: Transform + - uid: 4070 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,0.5 + parent: 1 + type: Transform + - uid: 4071 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,2.5 + parent: 1 + type: Transform +- proto: ToiletEmpty + entities: + - uid: 7028 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,40.5 + parent: 1 + type: Transform + - containers: + stash: !type:ContainerSlot + showEnts: False + occludes: True + ent: 6979 + type: ContainerContainer + - uid: 7135 + components: + - pos: -64.5,42.5 + parent: 1 + type: Transform + - uid: 7322 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,86.5 + parent: 1 + type: Transform + - uid: 9954 + components: + - pos: -61.5,42.5 + parent: 1 + type: Transform + - uid: 10848 + components: + - rot: 3.141592653589793 rad + pos: -62.5,38.5 + parent: 1 + type: Transform + - uid: 10931 + components: + - pos: -64.5,45.5 + parent: 1 + type: Transform + - uid: 10932 + components: + - pos: -63.5,45.5 + parent: 1 + type: Transform + - uid: 10933 + components: + - pos: -60.5,45.5 + parent: 1 + type: Transform + - uid: 10951 + components: + - rot: 3.141592653589793 rad + pos: -64.5,39.5 + parent: 1 + type: Transform +- proto: ToolboxElectricalFilled + entities: + - uid: 5646 + components: + - pos: -25.110394,26.456669 + parent: 1 + type: Transform + - uid: 5840 + components: + - pos: -82.51737,30.870302 + parent: 1 + type: Transform + - uid: 13608 + components: + - pos: -63.54383,25.748787 + parent: 1 + type: Transform + - uid: 15549 + components: + - pos: 12.466422,-20.487698 + parent: 1 + type: Transform +- proto: ToolboxEmergencyFilled + entities: + - uid: 5645 + components: + - pos: -24.587534,26.550022 + parent: 1 + type: Transform + - uid: 10919 + components: + - pos: -21.512825,62.627495 + parent: 1 + type: Transform +- proto: ToolboxGoldFilled + entities: + - uid: 10871 + components: + - pos: -23.241955,53.59838 + parent: 1 + type: Transform +- proto: ToolboxMechanical + entities: + - uid: 4736 + components: + - pos: -8.936694,44.61425 + parent: 1 + type: Transform + - uid: 4738 + components: + - pos: -9.577319,44.598625 + parent: 1 + type: Transform + - uid: 5002 + components: + - pos: -8.436694,44.55175 + parent: 1 + type: Transform +- proto: ToolboxMechanicalFilled + entities: + - uid: 5641 + components: + - pos: -7.51254,9.424052 + parent: 1 + type: Transform + - uid: 5644 + components: + - pos: -25.165659,26.690647 + parent: 1 + type: Transform + - uid: 6065 + components: + - pos: -82.51737,30.995302 + parent: 1 + type: Transform + - uid: 10920 + components: + - pos: -11.49985,59.57393 + parent: 1 + type: Transform + - uid: 13609 + components: + - pos: -63.528206,25.389412 + parent: 1 + type: Transform + - uid: 15560 + components: + - pos: 12.466422,-20.253323 + parent: 1 + type: Transform +- proto: ToyDeathRipley + entities: + - uid: 3184 + components: + - pos: -26.45058,17.657667 + parent: 1 + type: Transform +- proto: ToyDurand + entities: + - uid: 3203 + components: + - pos: -27.13808,16.704542 + parent: 1 + type: Transform +- proto: ToyFireRipley + entities: + - uid: 3202 + components: + - pos: -26.466206,16.876417 + parent: 1 + type: Transform +- proto: ToyHonk + entities: + - uid: 3200 + components: + - pos: -27.54433,17.142042 + parent: 1 + type: Transform +- proto: ToyIan + entities: + - uid: 7576 + components: + - pos: -22.170961,37.297226 + parent: 1 + type: Transform +- proto: ToySkeleton + entities: + - uid: 15121 + components: + - pos: -4.60635,49.548958 + parent: 1 + type: Transform +- proto: ToySpawner + entities: + - uid: 3513 + components: + - pos: -19.5,-13.5 + parent: 1 + type: Transform + - uid: 3514 + components: + - pos: -19.5,-14.5 + parent: 1 + type: Transform + - uid: 5032 + components: + - pos: -31.5,25.5 + parent: 1 + type: Transform + - uid: 5046 + components: + - pos: -33.5,28.5 + parent: 1 + type: Transform + - uid: 15942 + components: + - pos: 18.5,-8.5 + parent: 1 + type: Transform +- proto: TrashBananaPeel + entities: + - uid: 1415 + components: + - pos: -37.219505,3.4937391 + parent: 1 + type: Transform + - uid: 1813 + components: + - pos: -47.903706,6.478619 + parent: 1 + type: Transform + - uid: 2259 + components: + - pos: -52.19529,31.223146 + parent: 1 + type: Transform + - uid: 2301 + components: + - pos: -34.750755,3.5093641 + parent: 1 + type: Transform + - uid: 2638 + components: + - pos: -58.333614,39.9851 + parent: 1 + type: Transform + - uid: 2660 + components: + - pos: -24.719154,34.580376 + parent: 1 + type: Transform + - uid: 2662 + components: + - pos: -46.437923,43.313522 + parent: 1 + type: Transform + - uid: 4161 + components: + - pos: -57.03674,38.469475 + parent: 1 + type: Transform + - uid: 15123 + components: + - pos: -42.080788,28.835457 + parent: 1 + type: Transform + - uid: 15124 + components: + - pos: -42.158913,28.601082 + parent: 1 + type: Transform + - uid: 15125 + components: + - pos: -42.237038,28.413582 + parent: 1 + type: Transform +- proto: TrashBananaPeelExplosive + entities: + - uid: 2791 + components: + - pos: -26.575481,55.467476 + parent: 1 + type: Transform + - uid: 15837 + components: + - pos: -29.528606,53.2956 + parent: 1 + type: Transform +- proto: trayScanner + entities: + - uid: 15559 + components: + - pos: 11.419547,-20.393948 + parent: 1 + type: Transform +- proto: TromboneInstrument + entities: + - uid: 10958 + components: + - pos: -69.56805,45.607796 + parent: 1 + type: Transform +- proto: TrumpetInstrument + entities: + - uid: 9676 + components: + - pos: -70.39617,45.607796 + parent: 1 + type: Transform +- proto: TwoWayLever + entities: + - uid: 523 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - linkedPorts: + 105: + - Left: Open + - Right: Open + - Middle: Close + 216: + - Left: Open + - Right: Open + - Middle: Close + 215: + - Left: Open + - Right: Open + - Middle: Close + type: DeviceLinkSource + - uid: 13823 + components: + - pos: -35.5,-8.5 + parent: 1 + type: Transform + - linkedPorts: + 13829: + - Left: Forward + - Right: Reverse + - Middle: Off + 13828: + - Left: Forward + - Right: Reverse + - Middle: Off + 13827: + - Left: Forward + - Right: Reverse + - Middle: Off + 13826: + - Left: Forward + - Right: Reverse + - Middle: Off + 13825: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 13824 + components: + - pos: -31.5,-8.5 + parent: 1 + type: Transform + - linkedPorts: + 13834: + - Left: Forward + - Right: Reverse + - Middle: Off + 13833: + - Left: Forward + - Right: Reverse + - Middle: Off + 13832: + - Left: Forward + - Right: Reverse + - Middle: Off + 13831: + - Left: Forward + - Right: Reverse + - Middle: Off + 13830: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 13842 + components: + - pos: -41.5,-9.5 + parent: 1 + type: Transform + - linkedPorts: + 6793: + - Left: Forward + - Right: Reverse + - Middle: Off + 6789: + - Left: Forward + - Right: Reverse + - Middle: Off + 7282: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 13843 + components: + - pos: -38.5,-7.5 + parent: 1 + type: Transform + - linkedPorts: + 7282: + - Left: Forward + - Right: Reverse + - Middle: Off + 6789: + - Left: Forward + - Right: Reverse + - Middle: Off + 6793: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 14233 + components: + - pos: -70.5,55.5 + parent: 1 + type: Transform + - linkedPorts: + 14225: + - Left: Forward + - Right: Reverse + - Middle: Off + 14226: + - Left: Forward + - Right: Reverse + - Middle: Off + 14224: + - Left: Forward + - Right: Reverse + - Middle: Off + 14227: + - Left: Forward + - Right: Reverse + - Middle: Off + 14228: + - Left: Forward + - Right: Reverse + - Middle: Off + 14229: + - Left: Forward + - Right: Reverse + - Middle: Off + 14230: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource +- proto: UniformPrinter + entities: + - uid: 7560 + components: + - pos: -21.5,42.5 + parent: 1 + type: Transform +- proto: UniformShortsRed + entities: + - uid: 14365 + components: + - pos: -64.695595,14.460857 + parent: 1 + type: Transform + - uid: 14366 + components: + - pos: -64.24247,14.460857 + parent: 1 + type: Transform +- proto: UniformShortsRedWithTop + entities: + - uid: 14367 + components: + - pos: -64.601845,14.679607 + parent: 1 + type: Transform + - uid: 14368 + components: + - pos: -64.42997,14.679607 + parent: 1 + type: Transform +- proto: UprightPianoInstrument + entities: + - uid: 6705 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,42.5 + parent: 1 + type: Transform +- proto: UraniumWindow + entities: + - uid: 2696 + components: + - rot: 3.141592653589793 rad + pos: -24.5,30.5 + parent: 1 + type: Transform +- proto: Vaccinator + entities: + - uid: 2361 + components: + - pos: 11.5,17.5 + parent: 1 + type: Transform +- proto: VehicleKeyATV + entities: + - uid: 3519 + components: + - pos: -21.491938,-11.581937 + parent: 1 + type: Transform +- proto: VehicleKeyJanicart + entities: + - uid: 4162 + components: + - pos: -53.425735,36.403816 + parent: 1 + type: Transform + - uid: 15049 + components: + - flags: InContainer + type: MetaData + - parent: 7071 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: VehicleKeySecway + entities: + - uid: 8021 + components: + - pos: -63.41839,50.781906 + parent: 1 + type: Transform + - uid: 8022 + components: + - pos: -63.652763,50.594406 + parent: 1 + type: Transform +- proto: VehicleKeySkeleton + entities: + - uid: 15122 + components: + - pos: -4.309475,49.548958 + parent: 1 + type: Transform +- proto: VendingBarDrobe + entities: + - uid: 9726 + components: + - flags: SessionSpecific + type: MetaData + - pos: -27.5,38.5 + parent: 1 + type: Transform +- proto: VendingMachineAtmosDrobe + entities: + - uid: 133 + components: + - flags: SessionSpecific + type: MetaData + - pos: -84.5,32.5 + parent: 1 + type: Transform +- proto: VendingMachineBooze + entities: + - uid: 6339 + components: + - flags: SessionSpecific + type: MetaData + - pos: 13.5,50.5 + parent: 1 + type: Transform + - uid: 9727 + components: + - flags: SessionSpecific + type: MetaData + - pos: -30.5,40.5 + parent: 1 + type: Transform + - uid: 10103 + components: + - flags: SessionSpecific + type: MetaData + - pos: 4.5,49.5 + parent: 1 + type: Transform +- proto: VendingMachineCargoDrobe + entities: + - uid: 3655 + components: + - flags: SessionSpecific + type: MetaData + - pos: -41.5,-7.5 + parent: 1 + type: Transform +- proto: VendingMachineCart + entities: + - uid: 7561 + components: + - flags: SessionSpecific + type: MetaData + - pos: -22.5,42.5 + parent: 1 + type: Transform +- proto: VendingMachineChapel + entities: + - uid: 1835 + components: + - flags: SessionSpecific + type: MetaData + - pos: 19.5,-0.5 + parent: 1 + type: Transform +- proto: VendingMachineChefDrobe + entities: + - uid: 6930 + components: + - flags: SessionSpecific + type: MetaData + - pos: -31.5,42.5 + parent: 1 + type: Transform +- proto: VendingMachineChefvend + entities: + - uid: 6931 + components: + - flags: SessionSpecific + type: MetaData + - pos: -38.5,47.5 + parent: 1 + type: Transform +- proto: VendingMachineChemDrobe + entities: + - uid: 1928 + components: + - flags: SessionSpecific + type: MetaData + - pos: -4.5,19.5 + parent: 1 + type: Transform +- proto: VendingMachineChemicals + entities: + - uid: 527 + components: + - flags: SessionSpecific + type: MetaData + - pos: -4.5,26.5 + parent: 1 + type: Transform +- proto: VendingMachineCigs + entities: + - uid: 2661 + components: + - flags: SessionSpecific + type: MetaData + - pos: -9.5,34.5 + parent: 1 + type: Transform + - uid: 4159 + components: + - flags: SessionSpecific + type: MetaData + - pos: -31.5,23.5 + parent: 1 + type: Transform + - uid: 4160 + components: + - flags: SessionSpecific + type: MetaData + - pos: 19.5,4.5 + parent: 1 + type: Transform + - uid: 4164 + components: + - flags: SessionSpecific + type: MetaData + - pos: -18.5,3.5 + parent: 1 + type: Transform + - uid: 10970 + components: + - flags: SessionSpecific + type: MetaData + - pos: -72.5,39.5 + parent: 1 + type: Transform + - uid: 14249 + components: + - flags: SessionSpecific + type: MetaData + - pos: -65.5,50.5 + parent: 1 + type: Transform +- proto: VendingMachineClothing + entities: + - uid: 4238 + components: + - flags: SessionSpecific + type: MetaData + - pos: -6.5,28.5 + parent: 1 + type: Transform +- proto: VendingMachineCola + entities: + - uid: 4167 + components: + - flags: SessionSpecific + type: MetaData + - pos: -4.5,7.5 + parent: 1 + type: Transform +- proto: VendingMachineCondiments + entities: + - uid: 13669 + components: + - flags: SessionSpecific + type: MetaData + - pos: -38.5,40.5 + parent: 1 + type: Transform +- proto: VendingMachineDetDrobe + entities: + - uid: 14279 + components: + - flags: SessionSpecific + type: MetaData + - pos: -72.5,49.5 + parent: 1 + type: Transform +- proto: VendingMachineDinnerware + entities: + - uid: 6932 + components: + - flags: SessionSpecific + type: MetaData + - pos: -33.5,47.5 + parent: 1 + type: Transform +- proto: VendingMachineDiscount + entities: + - uid: 2663 + components: + - flags: SessionSpecific + type: MetaData + - pos: -8.5,34.5 + parent: 1 + type: Transform +- proto: VendingMachineDonut + entities: + - uid: 7943 + components: + - flags: SessionSpecific + type: MetaData + - pos: -56.5,65.5 + parent: 1 + type: Transform +- proto: VendingMachineEngiDrobe + entities: + - uid: 10749 + components: + - flags: SessionSpecific + type: MetaData + - pos: -67.5,25.5 + parent: 1 + type: Transform +- proto: VendingMachineEngivend + entities: + - uid: 10007 + components: + - flags: SessionSpecific + type: MetaData + - pos: -71.5,35.5 + parent: 1 + type: Transform +- proto: VendingMachineGames + entities: + - uid: 3195 + components: + - flags: SessionSpecific + type: MetaData + - pos: -22.5,18.5 + parent: 1 + type: Transform +- proto: VendingMachineHappyHonk + entities: + - uid: 6918 + components: + - flags: SessionSpecific + type: MetaData + - pos: -34.5,47.5 + parent: 1 + type: Transform +- proto: VendingMachineHydrobe + entities: + - uid: 5738 + components: + - flags: SessionSpecific + type: MetaData + - pos: -39.5,49.5 + parent: 1 + type: Transform +- proto: VendingMachineJaniDrobe + entities: + - uid: 7072 + components: + - flags: SessionSpecific + type: MetaData + - pos: -53.5,37.5 + parent: 1 + type: Transform +- proto: VendingMachineLawDrobe + entities: + - uid: 14296 + components: + - flags: SessionSpecific + type: MetaData + - pos: -64.5,38.5 + parent: 1 + type: Transform +- proto: VendingMachineMedical + entities: + - uid: 2031 + components: + - flags: SessionSpecific + type: MetaData + - pos: 5.5,31.5 + parent: 1 + type: Transform +- proto: VendingMachineMediDrobe + entities: + - uid: 2064 + components: + - flags: SessionSpecific + type: MetaData + - pos: 10.5,23.5 + parent: 1 + type: Transform +- proto: VendingMachineNutri + entities: + - uid: 6941 + components: + - flags: SessionSpecific + type: MetaData + - pos: -42.5,49.5 + parent: 1 + type: Transform +- proto: VendingMachineRestockBooze + entities: + - uid: 13676 + components: + - pos: -27.467127,35.556686 + parent: 1 + type: Transform +- proto: VendingMachineRoboDrobe + entities: + - uid: 238 + components: + - flags: SessionSpecific + type: MetaData + - pos: 1.5,-2.5 + parent: 1 + type: Transform +- proto: VendingMachineSalvage + entities: + - uid: 15798 + components: + - flags: SessionSpecific + type: MetaData + - pos: -37.5,-11.5 + parent: 1 + type: Transform +- proto: VendingMachineSciDrobe + entities: + - uid: 242 + components: + - flags: SessionSpecific + type: MetaData + - pos: -6.5,-5.5 + parent: 1 + type: Transform +- proto: VendingMachineSec + entities: + - uid: 7966 + components: + - flags: SessionSpecific + type: MetaData + - pos: -59.5,50.5 + parent: 1 + type: Transform +- proto: VendingMachineSecDrobe + entities: + - uid: 8023 + components: + - flags: SessionSpecific + type: MetaData + - pos: -61.5,61.5 + parent: 1 + type: Transform +- proto: VendingMachineSeeds + entities: + - uid: 5734 + components: + - flags: SessionSpecific + type: MetaData + - pos: -39.5,50.5 + parent: 1 + type: Transform +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 7716 + components: + - flags: SessionSpecific + type: MetaData + - pos: -59.5,83.5 + parent: 1 + type: Transform +- proto: VendingMachineSmartFridge + entities: + - uid: 1936 + components: + - flags: SessionSpecific + type: MetaData + - pos: -4.5,27.5 + parent: 1 + type: Transform +- proto: VendingMachineSustenance + entities: + - uid: 3488 + components: + - flags: SessionSpecific + type: MetaData + - pos: -61.5,83.5 + parent: 1 + type: Transform +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 9210 + components: + - flags: SessionSpecific + type: MetaData + - pos: -69.5,35.5 + parent: 1 + type: Transform +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 6070 + components: + - flags: SessionSpecific + type: MetaData + - pos: -10.5,46.5 + parent: 1 + type: Transform +- proto: VendingMachineTheater + entities: + - uid: 8968 + components: + - flags: SessionSpecific + type: MetaData + - pos: -32.5,23.5 + parent: 1 + type: Transform +- proto: VendingMachineVendomat + entities: + - uid: 5640 + components: + - flags: SessionSpecific + type: MetaData + - pos: -23.5,29.5 + parent: 1 + type: Transform + - uid: 15120 + components: + - flags: SessionSpecific + type: MetaData + - pos: -51.5,27.5 + parent: 1 + type: Transform +- proto: VendingMachineViroDrobe + entities: + - uid: 1144 + components: + - flags: SessionSpecific + type: MetaData + - pos: 11.5,20.5 + parent: 1 + type: Transform +- proto: VendingMachineWallMedical + entities: + - uid: 2034 + components: + - flags: SessionSpecific + type: MetaData + - pos: 17.5,29.5 + parent: 1 + type: Transform +- proto: VendingMachineWinter + entities: + - uid: 4217 + components: + - flags: SessionSpecific + type: MetaData + - pos: -6.5,27.5 + parent: 1 + type: Transform +- proto: VendingMachineYouTool + entities: + - uid: 5346 + components: + - flags: SessionSpecific + type: MetaData + - pos: -25.5,29.5 + parent: 1 + type: Transform + - uid: 11049 + components: + - flags: SessionSpecific + type: MetaData + - pos: -72.5,35.5 + parent: 1 + type: Transform +- proto: WallmountTelevision + entities: + - uid: 8351 + components: + - pos: -43.5,40.5 + parent: 1 + type: Transform +- proto: WallReinforced + entities: + - uid: 12 + components: + - pos: -4.5,62.5 + parent: 1 + type: Transform + - uid: 116 + components: + - pos: -4.5,58.5 + parent: 1 + type: Transform + - uid: 149 + components: + - pos: 4.5,-12.5 + parent: 1 + type: Transform + - uid: 164 + components: + - pos: -0.5,-14.5 + parent: 1 + type: Transform + - uid: 168 + components: + - pos: 6.5,-11.5 + parent: 1 + type: Transform + - uid: 172 + components: + - pos: 3.5,-7.5 + parent: 1 + type: Transform + - uid: 196 + components: + - pos: 6.5,-9.5 + parent: 1 + type: Transform + - uid: 198 + components: + - pos: 3.5,-12.5 + parent: 1 + type: Transform + - uid: 201 + components: + - pos: 6.5,-12.5 + parent: 1 + type: Transform + - uid: 202 + components: + - pos: 6.5,-10.5 + parent: 1 + type: Transform + - uid: 203 + components: + - pos: 5.5,-7.5 + parent: 1 + type: Transform + - uid: 204 + components: + - pos: 1.5,-16.5 + parent: 1 + type: Transform + - uid: 206 + components: + - pos: -0.5,-9.5 + parent: 1 + type: Transform + - uid: 207 + components: + - pos: 5.5,-12.5 + parent: 1 + type: Transform + - uid: 518 + components: + - pos: 14.5,-6.5 + parent: 1 + type: Transform + - uid: 522 + components: + - pos: -4.5,59.5 + parent: 1 + type: Transform + - uid: 674 + components: + - pos: 28.5,4.5 + parent: 1 + type: Transform + - uid: 676 + components: + - pos: 27.5,0.5 + parent: 1 + type: Transform + - uid: 678 + components: + - pos: 26.5,0.5 + parent: 1 + type: Transform + - uid: 694 + components: + - pos: 24.5,1.5 + parent: 1 + type: Transform + - uid: 703 + components: + - pos: 25.5,4.5 + parent: 1 + type: Transform + - uid: 704 + components: + - pos: 27.5,4.5 + parent: 1 + type: Transform + - uid: 705 + components: + - pos: 24.5,3.5 + parent: 1 + type: Transform + - uid: 707 + components: + - pos: 30.5,4.5 + parent: 1 + type: Transform + - uid: 948 + components: + - rot: 3.141592653589793 rad + pos: 29.5,7.5 + parent: 1 + type: Transform + - uid: 949 + components: + - rot: 3.141592653589793 rad + pos: 30.5,7.5 + parent: 1 + type: Transform + - uid: 950 + components: + - rot: 3.141592653589793 rad + pos: 31.5,7.5 + parent: 1 + type: Transform + - uid: 951 + components: + - rot: 3.141592653589793 rad + pos: 32.5,7.5 + parent: 1 + type: Transform + - uid: 952 + components: + - rot: 3.141592653589793 rad + pos: 29.5,9.5 + parent: 1 + type: Transform + - uid: 955 + components: + - rot: 3.141592653589793 rad + pos: 32.5,9.5 + parent: 1 + type: Transform + - uid: 956 + components: + - rot: 3.141592653589793 rad + pos: 29.5,11.5 + parent: 1 + type: Transform + - uid: 957 + components: + - rot: 3.141592653589793 rad + pos: 30.5,11.5 + parent: 1 + type: Transform + - uid: 958 + components: + - rot: 3.141592653589793 rad + pos: 31.5,11.5 + parent: 1 + type: Transform + - uid: 959 + components: + - rot: 3.141592653589793 rad + pos: 32.5,11.5 + parent: 1 + type: Transform + - uid: 960 + components: + - rot: 3.141592653589793 rad + pos: 29.5,15.5 + parent: 1 + type: Transform + - uid: 961 + components: + - rot: 3.141592653589793 rad + pos: 30.5,15.5 + parent: 1 + type: Transform + - uid: 962 + components: + - rot: 3.141592653589793 rad + pos: 31.5,15.5 + parent: 1 + type: Transform + - uid: 963 + components: + - rot: 3.141592653589793 rad + pos: 32.5,15.5 + parent: 1 + type: Transform + - uid: 964 + components: + - rot: 3.141592653589793 rad + pos: 29.5,17.5 + parent: 1 + type: Transform + - uid: 967 + components: + - rot: 3.141592653589793 rad + pos: 32.5,17.5 + parent: 1 + type: Transform + - uid: 968 + components: + - rot: 3.141592653589793 rad + pos: 29.5,19.5 + parent: 1 + type: Transform + - uid: 969 + components: + - rot: 3.141592653589793 rad + pos: 30.5,19.5 + parent: 1 + type: Transform + - uid: 970 + components: + - rot: 3.141592653589793 rad + pos: 31.5,19.5 + parent: 1 + type: Transform + - uid: 971 + components: + - rot: 3.141592653589793 rad + pos: 32.5,19.5 + parent: 1 + type: Transform + - uid: 1926 + components: + - pos: -55.5,48.5 + parent: 1 + type: Transform + - uid: 1927 + components: + - pos: -55.5,49.5 + parent: 1 + type: Transform + - uid: 1958 + components: + - pos: -55.5,50.5 + parent: 1 + type: Transform + - uid: 1982 + components: + - pos: -55.5,51.5 + parent: 1 + type: Transform + - uid: 1983 + components: + - pos: -55.5,52.5 + parent: 1 + type: Transform + - uid: 1984 + components: + - pos: -52.5,49.5 + parent: 1 + type: Transform + - uid: 1997 + components: + - pos: -52.5,48.5 + parent: 1 + type: Transform + - uid: 1998 + components: + - pos: -52.5,50.5 + parent: 1 + type: Transform + - uid: 1999 + components: + - pos: -52.5,51.5 + parent: 1 + type: Transform + - uid: 2000 + components: + - pos: -52.5,52.5 + parent: 1 + type: Transform + - uid: 2001 + components: + - pos: -49.5,51.5 + parent: 1 + type: Transform + - uid: 2002 + components: + - pos: -49.5,52.5 + parent: 1 + type: Transform + - uid: 2003 + components: + - pos: -49.5,48.5 + parent: 1 + type: Transform + - uid: 2004 + components: + - pos: -49.5,49.5 + parent: 1 + type: Transform + - uid: 2005 + components: + - pos: -49.5,50.5 + parent: 1 + type: Transform + - uid: 2656 + components: + - pos: -18.5,37.5 + parent: 1 + type: Transform + - uid: 2657 + components: + - pos: -18.5,38.5 + parent: 1 + type: Transform + - uid: 2658 + components: + - pos: -18.5,39.5 + parent: 1 + type: Transform + - uid: 2659 + components: + - pos: -18.5,40.5 + parent: 1 + type: Transform + - uid: 3440 + components: + - pos: -18.5,42.5 + parent: 1 + type: Transform + - uid: 3441 + components: + - pos: -18.5,41.5 + parent: 1 + type: Transform + - uid: 3443 + components: + - pos: -23.5,44.5 + parent: 1 + type: Transform + - uid: 3447 + components: + - pos: -23.5,40.5 + parent: 1 + type: Transform + - uid: 3449 + components: + - pos: -23.5,42.5 + parent: 1 + type: Transform + - uid: 3451 + components: + - pos: -23.5,48.5 + parent: 1 + type: Transform + - uid: 4200 + components: + - pos: -51.5,22.5 + parent: 1 + type: Transform + - uid: 4313 + components: + - pos: -49.5,26.5 + parent: 1 + type: Transform + - uid: 4319 + components: + - pos: -52.5,26.5 + parent: 1 + type: Transform + - uid: 4320 + components: + - pos: -53.5,26.5 + parent: 1 + type: Transform + - uid: 4321 + components: + - pos: -53.5,25.5 + parent: 1 + type: Transform + - uid: 4325 + components: + - pos: -52.5,22.5 + parent: 1 + type: Transform + - uid: 4327 + components: + - pos: -51.5,26.5 + parent: 1 + type: Transform + - uid: 4330 + components: + - pos: -49.5,22.5 + parent: 1 + type: Transform + - uid: 4331 + components: + - pos: -50.5,22.5 + parent: 1 + type: Transform + - uid: 4332 + components: + - pos: -47.5,22.5 + parent: 1 + type: Transform + - uid: 4333 + components: + - pos: -53.5,22.5 + parent: 1 + type: Transform + - uid: 4542 + components: + - pos: -48.5,22.5 + parent: 1 + type: Transform + - uid: 4572 + components: + - pos: -46.5,26.5 + parent: 1 + type: Transform + - uid: 4573 + components: + - pos: -47.5,26.5 + parent: 1 + type: Transform + - uid: 4574 + components: + - pos: -48.5,26.5 + parent: 1 + type: Transform + - uid: 4583 + components: + - pos: -46.5,22.5 + parent: 1 + type: Transform + - uid: 4584 + components: + - pos: -53.5,24.5 + parent: 1 + type: Transform + - uid: 4585 + components: + - pos: -53.5,23.5 + parent: 1 + type: Transform + - uid: 4744 + components: + - rot: 3.141592653589793 rad + pos: -59.5,-12.5 + parent: 1 + type: Transform + - uid: 4792 + components: + - pos: -72.5,2.5 + parent: 1 + type: Transform + - uid: 4793 + components: + - pos: -74.5,2.5 + parent: 1 + type: Transform + - uid: 4799 + components: + - pos: -59.5,3.5 + parent: 1 + type: Transform + - uid: 4809 + components: + - pos: -67.5,2.5 + parent: 1 + type: Transform + - uid: 4810 + components: + - pos: -65.5,2.5 + parent: 1 + type: Transform + - uid: 4843 + components: + - pos: -65.5,3.5 + parent: 1 + type: Transform + - uid: 4849 + components: + - pos: -74.5,3.5 + parent: 1 + type: Transform + - uid: 4856 + components: + - pos: -72.5,3.5 + parent: 1 + type: Transform + - uid: 4862 + components: + - rot: 3.141592653589793 rad + pos: -75.5,-13.5 + parent: 1 + type: Transform + - uid: 4873 + components: + - pos: -67.5,3.5 + parent: 1 + type: Transform + - uid: 4883 + components: + - rot: 3.141592653589793 rad + pos: -73.5,-15.5 + parent: 1 + type: Transform + - uid: 4885 + components: + - rot: 3.141592653589793 rad + pos: -71.5,-12.5 + parent: 1 + type: Transform + - uid: 4886 + components: + - rot: 3.141592653589793 rad + pos: -71.5,-13.5 + parent: 1 + type: Transform + - uid: 4887 + components: + - rot: 3.141592653589793 rad + pos: -67.5,-12.5 + parent: 1 + type: Transform + - uid: 4888 + components: + - rot: 3.141592653589793 rad + pos: -67.5,-13.5 + parent: 1 + type: Transform + - uid: 4896 + components: + - rot: 3.141592653589793 rad + pos: -75.5,-12.5 + parent: 1 + type: Transform + - uid: 4897 + components: + - rot: 3.141592653589793 rad + pos: -65.5,-15.5 + parent: 1 + type: Transform + - uid: 4901 + components: + - rot: 3.141592653589793 rad + pos: -63.5,-14.5 + parent: 1 + type: Transform + - uid: 4907 + components: + - pos: -59.5,-8.5 + parent: 1 + type: Transform + - uid: 4924 + components: + - rot: 3.141592653589793 rad + pos: -63.5,-12.5 + parent: 1 + type: Transform + - uid: 4927 + components: + - rot: 3.141592653589793 rad + pos: -63.5,-13.5 + parent: 1 + type: Transform + - uid: 4928 + components: + - rot: 3.141592653589793 rad + pos: -67.5,-15.5 + parent: 1 + type: Transform + - uid: 4929 + components: + - rot: 3.141592653589793 rad + pos: -65.5,-12.5 + parent: 1 + type: Transform + - uid: 4933 + components: + - rot: 3.141592653589793 rad + pos: -75.5,-14.5 + parent: 1 + type: Transform + - uid: 4936 + components: + - rot: 3.141592653589793 rad + pos: -75.5,-15.5 + parent: 1 + type: Transform + - uid: 4939 + components: + - rot: 3.141592653589793 rad + pos: -73.5,-12.5 + parent: 1 + type: Transform + - uid: 4940 + components: + - pos: -76.5,-8.5 + parent: 1 + type: Transform + - uid: 4941 + components: + - pos: -76.5,-12.5 + parent: 1 + type: Transform + - uid: 4942 + components: + - pos: -76.5,-9.5 + parent: 1 + type: Transform + - uid: 4945 + components: + - pos: -76.5,-11.5 + parent: 1 + type: Transform + - uid: 4948 + components: + - pos: -77.5,-11.5 + parent: 1 + type: Transform + - uid: 4949 + components: + - pos: -78.5,-11.5 + parent: 1 + type: Transform + - uid: 4950 + components: + - pos: -74.5,-8.5 + parent: 1 + type: Transform + - uid: 4953 + components: + - pos: -72.5,-7.5 + parent: 1 + type: Transform + - uid: 4954 + components: + - pos: -67.5,-8.5 + parent: 1 + type: Transform + - uid: 4955 + components: + - pos: -74.5,-7.5 + parent: 1 + type: Transform + - uid: 4956 + components: + - pos: -72.5,-8.5 + parent: 1 + type: Transform + - uid: 4959 + components: + - pos: -65.5,-8.5 + parent: 1 + type: Transform + - uid: 4960 + components: + - pos: -65.5,-7.5 + parent: 1 + type: Transform + - uid: 4962 + components: + - pos: -77.5,-9.5 + parent: 1 + type: Transform + - uid: 4963 + components: + - pos: -67.5,-7.5 + parent: 1 + type: Transform + - uid: 4965 + components: + - pos: -78.5,-9.5 + parent: 1 + type: Transform + - uid: 4967 + components: + - rot: 3.141592653589793 rad + pos: -63.5,-15.5 + parent: 1 + type: Transform + - uid: 4969 + components: + - rot: 3.141592653589793 rad + pos: -71.5,-15.5 + parent: 1 + type: Transform + - uid: 4970 + components: + - rot: 3.141592653589793 rad + pos: -71.5,-14.5 + parent: 1 + type: Transform + - uid: 4979 + components: + - rot: 3.141592653589793 rad + pos: -67.5,-14.5 + parent: 1 + type: Transform + - uid: 5072 + components: + - rot: -1.5707963267948966 rad + pos: -76.5,7.5 + parent: 1 + type: Transform + - uid: 5073 + components: + - pos: -76.5,3.5 + parent: 1 + type: Transform + - uid: 5472 + components: + - rot: 3.141592653589793 rad + pos: -49.5,69.5 + parent: 1 + type: Transform + - uid: 5473 + components: + - pos: -64.5,49.5 + parent: 1 + type: Transform + - uid: 5476 + components: + - rot: 3.141592653589793 rad + pos: -53.5,69.5 + parent: 1 + type: Transform + - uid: 5478 + components: + - pos: -64.5,51.5 + parent: 1 + type: Transform + - uid: 5686 + components: + - pos: -56.5,79.5 + parent: 1 + type: Transform + - uid: 5750 + components: + - pos: -45.5,56.5 + parent: 1 + type: Transform + - uid: 5754 + components: + - rot: 3.141592653589793 rad + pos: -45.5,68.5 + parent: 1 + type: Transform + - uid: 5776 + components: + - pos: -64.5,50.5 + parent: 1 + type: Transform + - uid: 5777 + components: + - pos: -58.5,56.5 + parent: 1 + type: Transform + - uid: 5785 + components: + - pos: -58.5,49.5 + parent: 1 + type: Transform + - uid: 5816 + components: + - pos: -23.5,47.5 + parent: 1 + type: Transform + - uid: 5817 + components: + - pos: -23.5,37.5 + parent: 1 + type: Transform + - uid: 5818 + components: + - pos: -23.5,38.5 + parent: 1 + type: Transform + - uid: 5821 + components: + - pos: -19.5,43.5 + parent: 1 + type: Transform + - uid: 5824 + components: + - pos: -19.5,49.5 + parent: 1 + type: Transform + - uid: 5826 + components: + - pos: -21.5,49.5 + parent: 1 + type: Transform + - uid: 5829 + components: + - pos: -22.5,43.5 + parent: 1 + type: Transform + - uid: 5834 + components: + - pos: -18.5,44.5 + parent: 1 + type: Transform + - uid: 5902 + components: + - pos: -22.5,49.5 + parent: 1 + type: Transform + - uid: 5904 + components: + - pos: -15.5,52.5 + parent: 1 + type: Transform + - uid: 5905 + components: + - pos: -18.5,52.5 + parent: 1 + type: Transform + - uid: 5947 + components: + - pos: -17.5,52.5 + parent: 1 + type: Transform + - uid: 6349 + components: + - rot: 3.141592653589793 rad + pos: -4.5,57.5 + parent: 1 + type: Transform + - uid: 6350 + components: + - rot: 3.141592653589793 rad + pos: -5.5,57.5 + parent: 1 + type: Transform + - uid: 6359 + components: + - pos: -6.5,57.5 + parent: 1 + type: Transform + - uid: 6360 + components: + - rot: 3.141592653589793 rad + pos: -6.5,58.5 + parent: 1 + type: Transform + - uid: 6361 + components: + - rot: 3.141592653589793 rad + pos: -8.5,58.5 + parent: 1 + type: Transform + - uid: 6362 + components: + - rot: 3.141592653589793 rad + pos: -9.5,58.5 + parent: 1 + type: Transform + - uid: 6363 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,58.5 + parent: 1 + type: Transform + - uid: 6368 + components: + - rot: 3.141592653589793 rad + pos: -19.5,53.5 + parent: 1 + type: Transform + - uid: 6369 + components: + - rot: 3.141592653589793 rad + pos: -19.5,55.5 + parent: 1 + type: Transform + - uid: 6370 + components: + - rot: 3.141592653589793 rad + pos: -19.5,56.5 + parent: 1 + type: Transform + - uid: 6371 + components: + - rot: 3.141592653589793 rad + pos: -19.5,57.5 + parent: 1 + type: Transform + - uid: 6374 + components: + - rot: 3.141592653589793 rad + pos: -21.5,58.5 + parent: 1 + type: Transform + - uid: 6375 + components: + - rot: 3.141592653589793 rad + pos: -22.5,58.5 + parent: 1 + type: Transform + - uid: 6376 + components: + - rot: 3.141592653589793 rad + pos: -23.5,58.5 + parent: 1 + type: Transform + - uid: 6378 + components: + - rot: 3.141592653589793 rad + pos: -24.5,57.5 + parent: 1 + type: Transform + - uid: 6379 + components: + - rot: 3.141592653589793 rad + pos: -24.5,56.5 + parent: 1 + type: Transform + - uid: 6380 + components: + - rot: 3.141592653589793 rad + pos: -24.5,55.5 + parent: 1 + type: Transform + - uid: 6381 + components: + - rot: 3.141592653589793 rad + pos: -24.5,54.5 + parent: 1 + type: Transform + - uid: 6382 + components: + - rot: 3.141592653589793 rad + pos: -23.5,52.5 + parent: 1 + type: Transform + - uid: 6383 + components: + - rot: 3.141592653589793 rad + pos: -22.5,52.5 + parent: 1 + type: Transform + - uid: 6384 + components: + - rot: 3.141592653589793 rad + pos: -21.5,52.5 + parent: 1 + type: Transform + - uid: 6385 + components: + - rot: 3.141592653589793 rad + pos: -20.5,52.5 + parent: 1 + type: Transform + - uid: 6386 + components: + - rot: 3.141592653589793 rad + pos: -24.5,53.5 + parent: 1 + type: Transform + - uid: 6387 + components: + - rot: 3.141592653589793 rad + pos: -24.5,52.5 + parent: 1 + type: Transform + - uid: 6390 + components: + - rot: 3.141592653589793 rad + pos: -14.5,58.5 + parent: 1 + type: Transform + - uid: 6391 + components: + - rot: 3.141592653589793 rad + pos: -18.5,58.5 + parent: 1 + type: Transform + - uid: 6429 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,62.5 + parent: 1 + type: Transform + - uid: 6430 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,61.5 + parent: 1 + type: Transform + - uid: 6431 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,60.5 + parent: 1 + type: Transform + - uid: 6432 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,59.5 + parent: 1 + type: Transform + - uid: 6433 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,63.5 + parent: 1 + type: Transform + - uid: 6434 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,63.5 + parent: 1 + type: Transform + - uid: 6452 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,63.5 + parent: 1 + type: Transform + - uid: 6453 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,63.5 + parent: 1 + type: Transform + - uid: 6457 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,59.5 + parent: 1 + type: Transform + - uid: 6494 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,61.5 + parent: 1 + type: Transform + - uid: 6495 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,61.5 + parent: 1 + type: Transform + - uid: 6654 + components: + - pos: -21.5,43.5 + parent: 1 + type: Transform + - uid: 6805 + components: + - pos: -62.5,57.5 + parent: 1 + type: Transform + - uid: 6806 + components: + - pos: -58.5,50.5 + parent: 1 + type: Transform + - uid: 6813 + components: + - pos: -61.5,56.5 + parent: 1 + type: Transform + - uid: 6814 + components: + - pos: -58.5,51.5 + parent: 1 + type: Transform + - uid: 6815 + components: + - pos: -60.5,56.5 + parent: 1 + type: Transform + - uid: 6817 + components: + - pos: -58.5,52.5 + parent: 1 + type: Transform + - uid: 6819 + components: + - pos: -59.5,56.5 + parent: 1 + type: Transform + - uid: 6858 + components: + - pos: -59.5,49.5 + parent: 1 + type: Transform + - uid: 6859 + components: + - pos: -60.5,49.5 + parent: 1 + type: Transform + - uid: 6873 + components: + - pos: -61.5,49.5 + parent: 1 + type: Transform + - uid: 6874 + components: + - pos: -62.5,49.5 + parent: 1 + type: Transform + - uid: 6875 + components: + - pos: -63.5,49.5 + parent: 1 + type: Transform + - uid: 6876 + components: + - pos: -58.5,48.5 + parent: 1 + type: Transform + - uid: 6877 + components: + - pos: -62.5,56.5 + parent: 1 + type: Transform + - uid: 6878 + components: + - pos: -62.5,58.5 + parent: 1 + type: Transform + - uid: 6882 + components: + - pos: -62.5,59.5 + parent: 1 + type: Transform + - uid: 6944 + components: + - pos: -58.5,58.5 + parent: 1 + type: Transform + - uid: 6952 + components: + - pos: -61.5,59.5 + parent: 1 + type: Transform + - uid: 6969 + components: + - pos: -57.5,59.5 + parent: 1 + type: Transform + - uid: 6973 + components: + - pos: -51.5,59.5 + parent: 1 + type: Transform + - uid: 6974 + components: + - pos: -53.5,66.5 + parent: 1 + type: Transform + - uid: 6975 + components: + - pos: -45.5,58.5 + parent: 1 + type: Transform + - uid: 6976 + components: + - pos: -45.5,57.5 + parent: 1 + type: Transform + - uid: 6977 + components: + - pos: -49.5,56.5 + parent: 1 + type: Transform + - uid: 6978 + components: + - pos: -49.5,57.5 + parent: 1 + type: Transform + - uid: 6980 + components: + - pos: -49.5,58.5 + parent: 1 + type: Transform + - uid: 6981 + components: + - pos: -49.5,59.5 + parent: 1 + type: Transform + - uid: 6998 + components: + - pos: -60.5,59.5 + parent: 1 + type: Transform + - uid: 6999 + components: + - pos: -59.5,59.5 + parent: 1 + type: Transform + - uid: 7000 + components: + - pos: -58.5,59.5 + parent: 1 + type: Transform + - uid: 7001 + components: + - pos: -64.5,56.5 + parent: 1 + type: Transform + - uid: 7002 + components: + - pos: -63.5,56.5 + parent: 1 + type: Transform + - uid: 7003 + components: + - pos: -53.5,59.5 + parent: 1 + type: Transform + - uid: 7007 + components: + - pos: -45.5,59.5 + parent: 1 + type: Transform + - uid: 7008 + components: + - pos: -42.5,66.5 + parent: 1 + type: Transform + - uid: 7009 + components: + - pos: -43.5,66.5 + parent: 1 + type: Transform + - uid: 7011 + components: + - pos: -45.5,63.5 + parent: 1 + type: Transform + - uid: 7015 + components: + - pos: -49.5,63.5 + parent: 1 + type: Transform + - uid: 7016 + components: + - pos: -41.5,59.5 + parent: 1 + type: Transform + - uid: 7017 + components: + - pos: -39.5,59.5 + parent: 1 + type: Transform + - uid: 7018 + components: + - pos: -40.5,60.5 + parent: 1 + type: Transform + - uid: 7019 + components: + - pos: -39.5,61.5 + parent: 1 + type: Transform + - uid: 7020 + components: + - pos: -39.5,62.5 + parent: 1 + type: Transform + - uid: 7021 + components: + - pos: -40.5,59.5 + parent: 1 + type: Transform + - uid: 7022 + components: + - pos: -39.5,60.5 + parent: 1 + type: Transform + - uid: 7023 + components: + - pos: -43.5,60.5 + parent: 1 + type: Transform + - uid: 7024 + components: + - pos: -42.5,59.5 + parent: 1 + type: Transform + - uid: 7025 + components: + - pos: -45.5,66.5 + parent: 1 + type: Transform + - uid: 7026 + components: + - pos: -41.5,60.5 + parent: 1 + type: Transform + - uid: 7078 + components: + - pos: -39.5,63.5 + parent: 1 + type: Transform + - uid: 7079 + components: + - pos: -39.5,64.5 + parent: 1 + type: Transform + - uid: 7080 + components: + - pos: -40.5,62.5 + parent: 1 + type: Transform + - uid: 7081 + components: + - pos: -40.5,63.5 + parent: 1 + type: Transform + - uid: 7082 + components: + - pos: -42.5,60.5 + parent: 1 + type: Transform + - uid: 7083 + components: + - pos: -41.5,66.5 + parent: 1 + type: Transform + - uid: 7084 + components: + - pos: -41.5,67.5 + parent: 1 + type: Transform + - uid: 7086 + components: + - pos: -40.5,67.5 + parent: 1 + type: Transform + - uid: 7103 + components: + - pos: -40.5,64.5 + parent: 1 + type: Transform + - uid: 7104 + components: + - pos: -40.5,65.5 + parent: 1 + type: Transform + - uid: 7105 + components: + - pos: -40.5,66.5 + parent: 1 + type: Transform + - uid: 7106 + components: + - pos: -42.5,67.5 + parent: 1 + type: Transform + - uid: 7108 + components: + - pos: -43.5,67.5 + parent: 1 + type: Transform + - uid: 7109 + components: + - pos: -44.5,66.5 + parent: 1 + type: Transform + - uid: 7110 + components: + - pos: -44.5,67.5 + parent: 1 + type: Transform + - uid: 7111 + components: + - pos: -44.5,59.5 + parent: 1 + type: Transform + - uid: 7112 + components: + - pos: -49.5,60.5 + parent: 1 + type: Transform + - uid: 7114 + components: + - pos: -39.5,65.5 + parent: 1 + type: Transform + - uid: 7115 + components: + - pos: -39.5,66.5 + parent: 1 + type: Transform + - uid: 7116 + components: + - pos: -39.5,67.5 + parent: 1 + type: Transform + - uid: 7117 + components: + - pos: -40.5,61.5 + parent: 1 + type: Transform + - uid: 7118 + components: + - pos: -44.5,60.5 + parent: 1 + type: Transform + - uid: 7119 + components: + - pos: -43.5,59.5 + parent: 1 + type: Transform + - uid: 7120 + components: + - pos: -47.5,66.5 + parent: 1 + type: Transform + - uid: 7121 + components: + - pos: -48.5,66.5 + parent: 1 + type: Transform + - uid: 7123 + components: + - pos: -46.5,66.5 + parent: 1 + type: Transform + - uid: 7124 + components: + - pos: -49.5,66.5 + parent: 1 + type: Transform + - uid: 7125 + components: + - pos: -49.5,62.5 + parent: 1 + type: Transform + - uid: 7132 + components: + - pos: -59.5,48.5 + parent: 1 + type: Transform + - uid: 7142 + components: + - pos: -62.5,62.5 + parent: 1 + type: Transform + - uid: 7143 + components: + - pos: -62.5,63.5 + parent: 1 + type: Transform + - uid: 7144 + components: + - pos: -62.5,64.5 + parent: 1 + type: Transform + - uid: 7145 + components: + - pos: -62.5,65.5 + parent: 1 + type: Transform + - uid: 7146 + components: + - pos: -62.5,66.5 + parent: 1 + type: Transform + - uid: 7147 + components: + - pos: -53.5,62.5 + parent: 1 + type: Transform + - uid: 7157 + components: + - pos: -57.5,65.5 + parent: 1 + type: Transform + - uid: 7158 + components: + - pos: -57.5,64.5 + parent: 1 + type: Transform + - uid: 7159 + components: + - pos: -57.5,63.5 + parent: 1 + type: Transform + - uid: 7160 + components: + - pos: -61.5,62.5 + parent: 1 + type: Transform + - uid: 7161 + components: + - pos: -60.5,62.5 + parent: 1 + type: Transform + - uid: 7169 + components: + - pos: -57.5,66.5 + parent: 1 + type: Transform + - uid: 7176 + components: + - pos: -57.5,62.5 + parent: 1 + type: Transform + - uid: 7181 + components: + - rot: 3.141592653589793 rad + pos: -53.5,70.5 + parent: 1 + type: Transform + - uid: 7182 + components: + - rot: 3.141592653589793 rad + pos: -48.5,69.5 + parent: 1 + type: Transform + - uid: 7183 + components: + - rot: 3.141592653589793 rad + pos: -47.5,69.5 + parent: 1 + type: Transform + - uid: 7184 + components: + - rot: 3.141592653589793 rad + pos: -46.5,69.5 + parent: 1 + type: Transform + - uid: 7185 + components: + - rot: 3.141592653589793 rad + pos: -45.5,69.5 + parent: 1 + type: Transform + - uid: 7190 + components: + - rot: 3.141592653589793 rad + pos: -49.5,77.5 + parent: 1 + type: Transform + - uid: 7191 + components: + - pos: -51.5,66.5 + parent: 1 + type: Transform + - uid: 7194 + components: + - rot: 3.141592653589793 rad + pos: -49.5,70.5 + parent: 1 + type: Transform + - uid: 7195 + components: + - rot: 3.141592653589793 rad + pos: -51.5,70.5 + parent: 1 + type: Transform + - uid: 7197 + components: + - rot: 3.141592653589793 rad + pos: -53.5,68.5 + parent: 1 + type: Transform + - uid: 7198 + components: + - rot: 3.141592653589793 rad + pos: -51.5,77.5 + parent: 1 + type: Transform + - uid: 7200 + components: + - rot: 3.141592653589793 rad + pos: -53.5,67.5 + parent: 1 + type: Transform + - uid: 7201 + components: + - rot: 3.141592653589793 rad + pos: -53.5,77.5 + parent: 1 + type: Transform + - uid: 7224 + components: + - pos: -56.5,78.5 + parent: 1 + type: Transform + - uid: 7226 + components: + - pos: -56.5,80.5 + parent: 1 + type: Transform + - uid: 7230 + components: + - pos: -49.5,81.5 + parent: 1 + type: Transform + - uid: 7231 + components: + - pos: -49.5,80.5 + parent: 1 + type: Transform + - uid: 7232 + components: + - pos: -49.5,79.5 + parent: 1 + type: Transform + - uid: 7233 + components: + - pos: -49.5,78.5 + parent: 1 + type: Transform + - uid: 7234 + components: + - pos: -56.5,81.5 + parent: 1 + type: Transform + - uid: 7235 + components: + - pos: -53.5,81.5 + parent: 1 + type: Transform + - uid: 7236 + components: + - pos: -51.5,81.5 + parent: 1 + type: Transform + - uid: 7243 + components: + - pos: -55.5,81.5 + parent: 1 + type: Transform + - uid: 7245 + components: + - pos: -49.5,82.5 + parent: 1 + type: Transform + - uid: 7246 + components: + - pos: -49.5,90.5 + parent: 1 + type: Transform + - uid: 7247 + components: + - pos: -49.5,89.5 + parent: 1 + type: Transform + - uid: 7248 + components: + - pos: -49.5,91.5 + parent: 1 + type: Transform + - uid: 7261 + components: + - pos: -50.5,91.5 + parent: 1 + type: Transform + - uid: 7263 + components: + - pos: -52.5,91.5 + parent: 1 + type: Transform + - uid: 7264 + components: + - pos: -53.5,91.5 + parent: 1 + type: Transform + - uid: 7265 + components: + - pos: -53.5,90.5 + parent: 1 + type: Transform + - uid: 7266 + components: + - pos: -56.5,87.5 + parent: 1 + type: Transform + - uid: 7267 + components: + - pos: -56.5,85.5 + parent: 1 + type: Transform + - uid: 7268 + components: + - pos: -55.5,85.5 + parent: 1 + type: Transform + - uid: 7269 + components: + - pos: -53.5,84.5 + parent: 1 + type: Transform + - uid: 7270 + components: + - pos: -53.5,82.5 + parent: 1 + type: Transform + - uid: 7272 + components: + - pos: -53.5,88.5 + parent: 1 + type: Transform + - uid: 7273 + components: + - pos: -54.5,87.5 + parent: 1 + type: Transform + - uid: 7274 + components: + - pos: -53.5,87.5 + parent: 1 + type: Transform + - uid: 7277 + components: + - pos: -54.5,85.5 + parent: 1 + type: Transform + - uid: 7278 + components: + - pos: -55.5,87.5 + parent: 1 + type: Transform + - uid: 7279 + components: + - pos: -53.5,85.5 + parent: 1 + type: Transform + - uid: 7280 + components: + - pos: -56.5,82.5 + parent: 1 + type: Transform + - uid: 7281 + components: + - pos: -56.5,84.5 + parent: 1 + type: Transform + - uid: 7283 + components: + - pos: -56.5,88.5 + parent: 1 + type: Transform + - uid: 7286 + components: + - pos: -56.5,90.5 + parent: 1 + type: Transform + - uid: 7287 + components: + - pos: -56.5,91.5 + parent: 1 + type: Transform + - uid: 7289 + components: + - pos: -54.5,91.5 + parent: 1 + type: Transform + - uid: 7290 + components: + - pos: -62.5,90.5 + parent: 1 + type: Transform + - uid: 7291 + components: + - pos: -62.5,89.5 + parent: 1 + type: Transform + - uid: 7293 + components: + - pos: -62.5,86.5 + parent: 1 + type: Transform + - uid: 7294 + components: + - pos: -63.5,86.5 + parent: 1 + type: Transform + - uid: 7299 + components: + - pos: -62.5,82.5 + parent: 1 + type: Transform + - uid: 7300 + components: + - pos: -62.5,87.5 + parent: 1 + type: Transform + - uid: 7314 + components: + - pos: -51.5,78.5 + parent: 1 + type: Transform + - uid: 7317 + components: + - pos: -63.5,82.5 + parent: 1 + type: Transform + - uid: 7327 + components: + - pos: -57.5,82.5 + parent: 1 + type: Transform + - uid: 7328 + components: + - pos: -57.5,90.5 + parent: 1 + type: Transform + - uid: 7332 + components: + - pos: -55.5,78.5 + parent: 1 + type: Transform + - uid: 7338 + components: + - pos: -54.5,78.5 + parent: 1 + type: Transform + - uid: 7339 + components: + - pos: -53.5,78.5 + parent: 1 + type: Transform + - uid: 7362 + components: + - pos: -45.5,67.5 + parent: 1 + type: Transform + - uid: 7646 + components: + - pos: -44.5,63.5 + parent: 1 + type: Transform + - uid: 7648 + components: + - pos: -44.5,61.5 + parent: 1 + type: Transform + - uid: 7718 + components: + - pos: -61.5,90.5 + parent: 1 + type: Transform + - uid: 7898 + components: + - pos: -51.5,69.5 + parent: 1 + type: Transform + - uid: 7976 + components: + - pos: -66.5,52.5 + parent: 1 + type: Transform + - uid: 7978 + components: + - pos: -66.5,51.5 + parent: 1 + type: Transform + - uid: 8012 + components: + - pos: -65.5,51.5 + parent: 1 + type: Transform + - uid: 8014 + components: + - pos: -66.5,53.5 + parent: 1 + type: Transform + - uid: 8015 + components: + - pos: -66.5,54.5 + parent: 1 + type: Transform + - uid: 8016 + components: + - pos: -66.5,55.5 + parent: 1 + type: Transform + - uid: 8017 + components: + - pos: -66.5,56.5 + parent: 1 + type: Transform + - uid: 8018 + components: + - pos: -65.5,56.5 + parent: 1 + type: Transform + - uid: 9334 + components: + - rot: 1.5707963267948966 rad + pos: -65.5,29.5 + parent: 1 + type: Transform + - uid: 10718 + components: + - rot: -1.5707963267948966 rad + pos: -84.5,49.5 + parent: 1 + type: Transform + - uid: 10750 + components: + - rot: -1.5707963267948966 rad + pos: -80.5,49.5 + parent: 1 + type: Transform + - uid: 10751 + components: + - rot: -1.5707963267948966 rad + pos: -80.5,51.5 + parent: 1 + type: Transform + - uid: 10752 + components: + - rot: -1.5707963267948966 rad + pos: -81.5,51.5 + parent: 1 + type: Transform + - uid: 10754 + components: + - rot: -1.5707963267948966 rad + pos: -83.5,51.5 + parent: 1 + type: Transform + - uid: 10755 + components: + - rot: -1.5707963267948966 rad + pos: -84.5,51.5 + parent: 1 + type: Transform + - uid: 10763 + components: + - rot: -1.5707963267948966 rad + pos: -87.5,46.5 + parent: 1 + type: Transform + - uid: 10764 + components: + - rot: -1.5707963267948966 rad + pos: -88.5,46.5 + parent: 1 + type: Transform + - uid: 10765 + components: + - rot: -1.5707963267948966 rad + pos: -89.5,46.5 + parent: 1 + type: Transform + - uid: 10766 + components: + - rot: -1.5707963267948966 rad + pos: -90.5,46.5 + parent: 1 + type: Transform + - uid: 10767 + components: + - rot: -1.5707963267948966 rad + pos: -91.5,46.5 + parent: 1 + type: Transform + - uid: 10768 + components: + - rot: -1.5707963267948966 rad + pos: -91.5,45.5 + parent: 1 + type: Transform + - uid: 10769 + components: + - rot: -1.5707963267948966 rad + pos: -91.5,44.5 + parent: 1 + type: Transform + - uid: 10770 + components: + - rot: -1.5707963267948966 rad + pos: -91.5,43.5 + parent: 1 + type: Transform + - uid: 10771 + components: + - rot: -1.5707963267948966 rad + pos: -91.5,42.5 + parent: 1 + type: Transform + - uid: 10772 + components: + - rot: -1.5707963267948966 rad + pos: -91.5,41.5 + parent: 1 + type: Transform + - uid: 10773 + components: + - rot: -1.5707963267948966 rad + pos: -91.5,40.5 + parent: 1 + type: Transform + - uid: 10774 + components: + - rot: -1.5707963267948966 rad + pos: -91.5,39.5 + parent: 1 + type: Transform + - uid: 10775 + components: + - rot: -1.5707963267948966 rad + pos: -91.5,38.5 + parent: 1 + type: Transform + - uid: 10776 + components: + - rot: -1.5707963267948966 rad + pos: -91.5,37.5 + parent: 1 + type: Transform + - uid: 10777 + components: + - rot: -1.5707963267948966 rad + pos: -91.5,36.5 + parent: 1 + type: Transform + - uid: 10778 + components: + - rot: -1.5707963267948966 rad + pos: -91.5,35.5 + parent: 1 + type: Transform + - uid: 10779 + components: + - rot: -1.5707963267948966 rad + pos: -91.5,34.5 + parent: 1 + type: Transform + - uid: 10780 + components: + - rot: -1.5707963267948966 rad + pos: -90.5,34.5 + parent: 1 + type: Transform + - uid: 10781 + components: + - rot: -1.5707963267948966 rad + pos: -89.5,34.5 + parent: 1 + type: Transform + - uid: 10782 + components: + - rot: -1.5707963267948966 rad + pos: -88.5,34.5 + parent: 1 + type: Transform + - uid: 10783 + components: + - rot: -1.5707963267948966 rad + pos: -87.5,34.5 + parent: 1 + type: Transform + - uid: 10784 + components: + - rot: -1.5707963267948966 rad + pos: -90.5,36.5 + parent: 1 + type: Transform + - uid: 10785 + components: + - rot: -1.5707963267948966 rad + pos: -89.5,36.5 + parent: 1 + type: Transform + - uid: 10786 + components: + - rot: -1.5707963267948966 rad + pos: -88.5,36.5 + parent: 1 + type: Transform + - uid: 10787 + components: + - rot: -1.5707963267948966 rad + pos: -87.5,36.5 + parent: 1 + type: Transform + - uid: 10788 + components: + - rot: -1.5707963267948966 rad + pos: -90.5,38.5 + parent: 1 + type: Transform + - uid: 10789 + components: + - rot: -1.5707963267948966 rad + pos: -89.5,38.5 + parent: 1 + type: Transform + - uid: 10790 + components: + - rot: -1.5707963267948966 rad + pos: -88.5,38.5 + parent: 1 + type: Transform + - uid: 10791 + components: + - rot: -1.5707963267948966 rad + pos: -87.5,38.5 + parent: 1 + type: Transform + - uid: 10792 + components: + - rot: -1.5707963267948966 rad + pos: -90.5,40.5 + parent: 1 + type: Transform + - uid: 10793 + components: + - rot: -1.5707963267948966 rad + pos: -89.5,40.5 + parent: 1 + type: Transform + - uid: 10794 + components: + - rot: -1.5707963267948966 rad + pos: -88.5,40.5 + parent: 1 + type: Transform + - uid: 10795 + components: + - rot: -1.5707963267948966 rad + pos: -87.5,40.5 + parent: 1 + type: Transform + - uid: 10815 + components: + - rot: -1.5707963267948966 rad + pos: -90.5,42.5 + parent: 1 + type: Transform + - uid: 10816 + components: + - rot: -1.5707963267948966 rad + pos: -89.5,42.5 + parent: 1 + type: Transform + - uid: 10817 + components: + - rot: -1.5707963267948966 rad + pos: -88.5,42.5 + parent: 1 + type: Transform + - uid: 10818 + components: + - rot: -1.5707963267948966 rad + pos: -87.5,42.5 + parent: 1 + type: Transform + - uid: 10819 + components: + - rot: -1.5707963267948966 rad + pos: -90.5,44.5 + parent: 1 + type: Transform + - uid: 10820 + components: + - rot: -1.5707963267948966 rad + pos: -89.5,44.5 + parent: 1 + type: Transform + - uid: 10821 + components: + - rot: -1.5707963267948966 rad + pos: -88.5,44.5 + parent: 1 + type: Transform + - uid: 10822 + components: + - rot: -1.5707963267948966 rad + pos: -87.5,44.5 + parent: 1 + type: Transform +- proto: WallSolid + entities: + - uid: 2 + components: + - pos: -4.5,-14.5 + parent: 1 + type: Transform + - uid: 3 + components: + - pos: -6.5,-16.5 + parent: 1 + type: Transform + - uid: 20 + components: + - pos: -12.5,-0.5 + parent: 1 + type: Transform + - uid: 21 + components: + - pos: -10.5,0.5 + parent: 1 + type: Transform + - uid: 22 + components: + - pos: -10.5,2.5 + parent: 1 + type: Transform + - uid: 23 + components: + - pos: -13.5,3.5 + parent: 1 + type: Transform + - uid: 24 + components: + - pos: -14.5,1.5 + parent: 1 + type: Transform + - uid: 26 + components: + - pos: -7.5,-3.5 + parent: 1 + type: Transform + - uid: 27 + components: + - pos: -10.5,3.5 + parent: 1 + type: Transform + - uid: 31 + components: + - pos: -14.5,-0.5 + parent: 1 + type: Transform + - uid: 34 + components: + - pos: -14.5,3.5 + parent: 1 + type: Transform + - uid: 35 + components: + - pos: -9.5,3.5 + parent: 1 + type: Transform + - uid: 43 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 45 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 47 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 48 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform + - uid: 50 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform + - uid: 53 + components: + - pos: 3.5,-2.5 + parent: 1 + type: Transform + - uid: 55 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 58 + components: + - pos: -8.5,-6.5 + parent: 1 + type: Transform + - uid: 60 + components: + - pos: -9.5,-6.5 + parent: 1 + type: Transform + - uid: 73 + components: + - pos: -10.5,-10.5 + parent: 1 + type: Transform + - uid: 76 + components: + - pos: -6.5,-6.5 + parent: 1 + type: Transform + - uid: 81 + components: + - pos: 30.5,-1.5 + parent: 1 + type: Transform + - uid: 82 + components: + - pos: 30.5,-2.5 + parent: 1 + type: Transform + - uid: 85 + components: + - pos: 0.5,-6.5 + parent: 1 + type: Transform + - uid: 86 + components: + - pos: -5.5,-6.5 + parent: 1 + type: Transform + - uid: 88 + components: + - pos: -3.5,-6.5 + parent: 1 + type: Transform + - uid: 113 + components: + - pos: -18.5,-12.5 + parent: 1 + type: Transform + - uid: 117 + components: + - pos: -39.5,53.5 + parent: 1 + type: Transform + - uid: 124 + components: + - pos: -10.5,-11.5 + parent: 1 + type: Transform + - uid: 125 + components: + - pos: -8.5,-13.5 + parent: 1 + type: Transform + - uid: 175 + components: + - pos: 11.5,-8.5 + parent: 1 + type: Transform + - uid: 176 + components: + - pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 178 + components: + - pos: 2.5,-6.5 + parent: 1 + type: Transform + - uid: 183 + components: + - pos: 9.5,-6.5 + parent: 1 + type: Transform + - uid: 190 + components: + - pos: -0.5,-15.5 + parent: 1 + type: Transform + - uid: 192 + components: + - pos: -0.5,-11.5 + parent: 1 + type: Transform + - uid: 205 + components: + - pos: 0.5,-7.5 + parent: 1 + type: Transform + - uid: 209 + components: + - pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 214 + components: + - pos: -18.5,-14.5 + parent: 1 + type: Transform + - uid: 462 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 463 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 465 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + type: Transform + - uid: 466 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 + type: Transform + - uid: 468 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 469 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 472 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 478 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 482 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 483 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 485 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,1.5 + parent: 1 + type: Transform + - uid: 486 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 1 + type: Transform + - uid: 487 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 1 + type: Transform + - uid: 491 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-4.5 + parent: 1 + type: Transform + - uid: 492 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-3.5 + parent: 1 + type: Transform + - uid: 496 + components: + - pos: 10.5,-6.5 + parent: 1 + type: Transform + - uid: 502 + components: + - pos: 10.5,-7.5 + parent: 1 + type: Transform + - uid: 512 + components: + - pos: 15.5,-3.5 + parent: 1 + type: Transform + - uid: 525 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,17.5 + parent: 1 + type: Transform + - uid: 528 + components: + - pos: 13.5,-6.5 + parent: 1 + type: Transform + - uid: 531 + components: + - pos: 12.5,-7.5 + parent: 1 + type: Transform + - uid: 575 + components: + - pos: 10.5,-8.5 + parent: 1 + type: Transform + - uid: 584 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 610 + components: + - rot: 3.141592653589793 rad + pos: -15.5,16.5 + parent: 1 + type: Transform + - uid: 613 + components: + - pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 614 + components: + - pos: -16.5,16.5 + parent: 1 + type: Transform + - uid: 619 + components: + - pos: -4.5,-0.5 + parent: 1 + type: Transform + - uid: 632 + components: + - pos: 12.5,0.5 + parent: 1 + type: Transform + - uid: 634 + components: + - pos: 12.5,2.5 + parent: 1 + type: Transform + - uid: 635 + components: + - pos: 12.5,3.5 + parent: 1 + type: Transform + - uid: 636 + components: + - pos: 14.5,4.5 + parent: 1 + type: Transform + - uid: 638 + components: + - pos: 12.5,4.5 + parent: 1 + type: Transform + - uid: 639 + components: + - pos: 15.5,4.5 + parent: 1 + type: Transform + - uid: 641 + components: + - pos: 18.5,3.5 + parent: 1 + type: Transform + - uid: 642 + components: + - pos: 18.5,2.5 + parent: 1 + type: Transform + - uid: 643 + components: + - pos: 22.5,-2.5 + parent: 1 + type: Transform + - uid: 644 + components: + - pos: 18.5,0.5 + parent: 1 + type: Transform + - uid: 646 + components: + - pos: 19.5,3.5 + parent: 1 + type: Transform + - uid: 647 + components: + - pos: 18.5,-2.5 + parent: 1 + type: Transform + - uid: 649 + components: + - pos: 17.5,-3.5 + parent: 1 + type: Transform + - uid: 651 + components: + - pos: 21.5,3.5 + parent: 1 + type: Transform + - uid: 654 + components: + - pos: 21.5,0.5 + parent: 1 + type: Transform + - uid: 656 + components: + - pos: 22.5,-0.5 + parent: 1 + type: Transform + - uid: 659 + components: + - pos: 20.5,-3.5 + parent: 1 + type: Transform + - uid: 660 + components: + - pos: 26.5,-6.5 + parent: 1 + type: Transform + - uid: 662 + components: + - pos: 22.5,-3.5 + parent: 1 + type: Transform + - uid: 664 + components: + - pos: 23.5,-6.5 + parent: 1 + type: Transform + - uid: 665 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 666 + components: + - pos: 26.5,-7.5 + parent: 1 + type: Transform + - uid: 667 + components: + - pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 668 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 669 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 670 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 671 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 672 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 677 + components: + - pos: 24.5,0.5 + parent: 1 + type: Transform + - uid: 680 + components: + - pos: 25.5,-1.5 + parent: 1 + type: Transform + - uid: 682 + components: + - pos: 25.5,-3.5 + parent: 1 + type: Transform + - uid: 685 + components: + - pos: 28.5,-3.5 + parent: 1 + type: Transform + - uid: 688 + components: + - pos: 27.5,-6.5 + parent: 1 + type: Transform + - uid: 695 + components: + - pos: 25.5,0.5 + parent: 1 + type: Transform + - uid: 697 + components: + - pos: 29.5,0.5 + parent: 1 + type: Transform + - uid: 698 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 700 + components: + - pos: 18.5,4.5 + parent: 1 + type: Transform + - uid: 701 + components: + - pos: 23.5,3.5 + parent: 1 + type: Transform + - uid: 702 + components: + - pos: 24.5,4.5 + parent: 1 + type: Transform + - uid: 706 + components: + - pos: 29.5,4.5 + parent: 1 + type: Transform + - uid: 714 + components: + - pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 715 + components: + - pos: -10.5,-6.5 + parent: 1 + type: Transform + - uid: 716 + components: + - pos: -11.5,-6.5 + parent: 1 + type: Transform + - uid: 722 + components: + - pos: -10.5,-7.5 + parent: 1 + type: Transform + - uid: 723 + components: + - pos: -13.5,-6.5 + parent: 1 + type: Transform + - uid: 724 + components: + - pos: -11.5,-9.5 + parent: 1 + type: Transform + - uid: 725 + components: + - pos: -12.5,-9.5 + parent: 1 + type: Transform + - uid: 726 + components: + - pos: -13.5,-9.5 + parent: 1 + type: Transform + - uid: 727 + components: + - pos: -14.5,-9.5 + parent: 1 + type: Transform + - uid: 881 + components: + - pos: 15.5,14.5 + parent: 1 + type: Transform + - uid: 985 + components: + - pos: -14.5,-8.5 + parent: 1 + type: Transform + - uid: 987 + components: + - pos: -14.5,-7.5 + parent: 1 + type: Transform + - uid: 989 + components: + - pos: -14.5,-6.5 + parent: 1 + type: Transform + - uid: 994 + components: + - pos: -10.5,-15.5 + parent: 1 + type: Transform + - uid: 996 + components: + - pos: -12.5,-15.5 + parent: 1 + type: Transform + - uid: 997 + components: + - pos: -11.5,-15.5 + parent: 1 + type: Transform + - uid: 998 + components: + - rot: 3.141592653589793 rad + pos: 24.5,20.5 + parent: 1 + type: Transform + - uid: 1001 + components: + - pos: 20.5,13.5 + parent: 1 + type: Transform + - uid: 1002 + components: + - pos: 20.5,14.5 + parent: 1 + type: Transform + - uid: 1004 + components: + - pos: -10.5,-14.5 + parent: 1 + type: Transform + - uid: 1005 + components: + - pos: 17.5,14.5 + parent: 1 + type: Transform + - uid: 1006 + components: + - pos: 16.5,14.5 + parent: 1 + type: Transform + - uid: 1007 + components: + - rot: 3.141592653589793 rad + pos: 24.5,10.5 + parent: 1 + type: Transform + - uid: 1008 + components: + - rot: 3.141592653589793 rad + pos: 24.5,9.5 + parent: 1 + type: Transform + - uid: 1010 + components: + - rot: 3.141592653589793 rad + pos: 24.5,7.5 + parent: 1 + type: Transform + - uid: 1011 + components: + - pos: -10.5,-9.5 + parent: 1 + type: Transform + - uid: 1012 + components: + - pos: -6.5,-17.5 + parent: 1 + type: Transform + - uid: 1013 + components: + - pos: -4.5,-16.5 + parent: 1 + type: Transform + - uid: 1030 + components: + - pos: -4.5,-15.5 + parent: 1 + type: Transform + - uid: 1035 + components: + - pos: 21.5,10.5 + parent: 1 + type: Transform + - uid: 1036 + components: + - pos: 20.5,10.5 + parent: 1 + type: Transform + - uid: 1038 + components: + - pos: 20.5,8.5 + parent: 1 + type: Transform + - uid: 1039 + components: + - pos: 20.5,7.5 + parent: 1 + type: Transform + - uid: 1041 + components: + - pos: 23.5,7.5 + parent: 1 + type: Transform + - uid: 1043 + components: + - pos: 15.5,10.5 + parent: 1 + type: Transform + - uid: 1045 + components: + - pos: 1.5,41.5 + parent: 1 + type: Transform + - uid: 1046 + components: + - pos: -4.5,-17.5 + parent: 1 + type: Transform + - uid: 1047 + components: + - pos: 15.5,8.5 + parent: 1 + type: Transform + - uid: 1050 + components: + - pos: 21.5,15.5 + parent: 1 + type: Transform + - uid: 1057 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,18.5 + parent: 1 + type: Transform + - uid: 1060 + components: + - pos: 6.5,7.5 + parent: 1 + type: Transform + - uid: 1062 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,23.5 + parent: 1 + type: Transform + - uid: 1071 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-6.5 + parent: 1 + type: Transform + - uid: 1074 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-5.5 + parent: 1 + type: Transform + - uid: 1075 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,3.5 + parent: 1 + type: Transform + - uid: 1076 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-3.5 + parent: 1 + type: Transform + - uid: 1078 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-1.5 + parent: 1 + type: Transform + - uid: 1081 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 1 + type: Transform + - uid: 1083 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 1 + type: Transform + - uid: 1084 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,2.5 + parent: 1 + type: Transform + - uid: 1087 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,3.5 + parent: 1 + type: Transform + - uid: 1093 + components: + - pos: -15.5,-9.5 + parent: 1 + type: Transform + - uid: 1095 + components: + - pos: -18.5,-11.5 + parent: 1 + type: Transform + - uid: 1097 + components: + - pos: -19.5,-9.5 + parent: 1 + type: Transform + - uid: 1098 + components: + - pos: -6.5,-15.5 + parent: 1 + type: Transform + - uid: 1099 + components: + - pos: -21.5,-9.5 + parent: 1 + type: Transform + - uid: 1100 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,2.5 + parent: 1 + type: Transform + - uid: 1103 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-0.5 + parent: 1 + type: Transform + - uid: 1104 + components: + - pos: -22.5,-1.5 + parent: 1 + type: Transform + - uid: 1108 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-2.5 + parent: 1 + type: Transform + - uid: 1111 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-2.5 + parent: 1 + type: Transform + - uid: 1113 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-3.5 + parent: 1 + type: Transform + - uid: 1115 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-5.5 + parent: 1 + type: Transform + - uid: 1119 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-0.5 + parent: 1 + type: Transform + - uid: 1121 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-2.5 + parent: 1 + type: Transform + - uid: 1123 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-0.5 + parent: 1 + type: Transform + - uid: 1124 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,0.5 + parent: 1 + type: Transform + - uid: 1125 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,1.5 + parent: 1 + type: Transform + - uid: 1127 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,3.5 + parent: 1 + type: Transform + - uid: 1129 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,3.5 + parent: 1 + type: Transform + - uid: 1131 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,3.5 + parent: 1 + type: Transform + - uid: 1132 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,1.5 + parent: 1 + type: Transform + - uid: 1135 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,7.5 + parent: 1 + type: Transform + - uid: 1136 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,7.5 + parent: 1 + type: Transform + - uid: 1141 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,7.5 + parent: 1 + type: Transform + - uid: 1152 + components: + - pos: 19.5,24.5 + parent: 1 + type: Transform + - uid: 1154 + components: + - pos: 2.5,35.5 + parent: 1 + type: Transform + - uid: 1160 + components: + - pos: 9.5,21.5 + parent: 1 + type: Transform + - uid: 1171 + components: + - pos: 12.5,23.5 + parent: 1 + type: Transform + - uid: 1177 + components: + - pos: 13.5,24.5 + parent: 1 + type: Transform + - uid: 1180 + components: + - pos: 11.5,10.5 + parent: 1 + type: Transform + - uid: 1182 + components: + - pos: 12.5,-6.5 + parent: 1 + type: Transform + - uid: 1183 + components: + - pos: 14.5,-12.5 + parent: 1 + type: Transform + - uid: 1184 + components: + - pos: 13.5,-12.5 + parent: 1 + type: Transform + - uid: 1185 + components: + - pos: 16.5,-12.5 + parent: 1 + type: Transform + - uid: 1186 + components: + - pos: 12.5,-9.5 + parent: 1 + type: Transform + - uid: 1187 + components: + - pos: 12.5,-11.5 + parent: 1 + type: Transform + - uid: 1188 + components: + - pos: 12.5,-10.5 + parent: 1 + type: Transform + - uid: 1194 + components: + - pos: 15.5,-12.5 + parent: 1 + type: Transform + - uid: 1195 + components: + - pos: 17.5,-6.5 + parent: 1 + type: Transform + - uid: 1196 + components: + - pos: 17.5,-12.5 + parent: 1 + type: Transform + - uid: 1197 + components: + - pos: 21.5,28.5 + parent: 1 + type: Transform + - uid: 1198 + components: + - pos: 20.5,-9.5 + parent: 1 + type: Transform + - uid: 1199 + components: + - pos: 13.5,34.5 + parent: 1 + type: Transform + - uid: 1201 + components: + - pos: 19.5,33.5 + parent: 1 + type: Transform + - uid: 1202 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,17.5 + parent: 1 + type: Transform + - uid: 1204 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 1205 + components: + - pos: -1.5,13.5 + parent: 1 + type: Transform + - uid: 1206 + components: + - pos: 4.5,41.5 + parent: 1 + type: Transform + - uid: 1209 + components: + - pos: 18.5,-12.5 + parent: 1 + type: Transform + - uid: 1210 + components: + - pos: -0.5,13.5 + parent: 1 + type: Transform + - uid: 1212 + components: + - pos: 16.5,22.5 + parent: 1 + type: Transform + - uid: 1214 + components: + - pos: 5.5,20.5 + parent: 1 + type: Transform + - uid: 1215 + components: + - pos: 19.5,-12.5 + parent: 1 + type: Transform + - uid: 1216 + components: + - pos: 20.5,-12.5 + parent: 1 + type: Transform + - uid: 1217 + components: + - pos: 20.5,-10.5 + parent: 1 + type: Transform + - uid: 1218 + components: + - pos: 18.5,-9.5 + parent: 1 + type: Transform + - uid: 1219 + components: + - pos: 21.5,-9.5 + parent: 1 + type: Transform + - uid: 1220 + components: + - pos: 27.5,-9.5 + parent: 1 + type: Transform + - uid: 1221 + components: + - pos: 30.5,-6.5 + parent: 1 + type: Transform + - uid: 1222 + components: + - pos: 22.5,-9.5 + parent: 1 + type: Transform + - uid: 1224 + components: + - pos: 5.5,10.5 + parent: 1 + type: Transform + - uid: 1226 + components: + - pos: 4.5,13.5 + parent: 1 + type: Transform + - uid: 1227 + components: + - pos: 5.5,12.5 + parent: 1 + type: Transform + - uid: 1231 + components: + - pos: 6.5,10.5 + parent: 1 + type: Transform + - uid: 1232 + components: + - pos: 23.5,-9.5 + parent: 1 + type: Transform + - uid: 1235 + components: + - pos: 9.5,10.5 + parent: 1 + type: Transform + - uid: 1238 + components: + - pos: 10.5,32.5 + parent: 1 + type: Transform + - uid: 1239 + components: + - pos: 5.5,15.5 + parent: 1 + type: Transform + - uid: 1243 + components: + - pos: 2.5,18.5 + parent: 1 + type: Transform + - uid: 1244 + components: + - pos: 24.5,-9.5 + parent: 1 + type: Transform + - uid: 1245 + components: + - pos: 25.5,-9.5 + parent: 1 + type: Transform + - uid: 1251 + components: + - pos: 26.5,-9.5 + parent: 1 + type: Transform + - uid: 1252 + components: + - pos: 30.5,-3.5 + parent: 1 + type: Transform + - uid: 1253 + components: + - pos: 30.5,-0.5 + parent: 1 + type: Transform + - uid: 1254 + components: + - pos: 30.5,0.5 + parent: 1 + type: Transform + - uid: 1255 + components: + - pos: 30.5,-4.5 + parent: 1 + type: Transform + - uid: 1256 + components: + - pos: 29.5,-9.5 + parent: 1 + type: Transform + - uid: 1257 + components: + - pos: 30.5,-9.5 + parent: 1 + type: Transform + - uid: 1258 + components: + - pos: 30.5,-8.5 + parent: 1 + type: Transform + - uid: 1259 + components: + - pos: 30.5,-7.5 + parent: 1 + type: Transform + - uid: 1260 + components: + - pos: 30.5,-5.5 + parent: 1 + type: Transform + - uid: 1261 + components: + - pos: 29.5,22.5 + parent: 1 + type: Transform + - uid: 1262 + components: + - pos: 29.5,27.5 + parent: 1 + type: Transform + - uid: 1267 + components: + - pos: 29.5,23.5 + parent: 1 + type: Transform + - uid: 1268 + components: + - pos: 24.5,25.5 + parent: 1 + type: Transform + - uid: 1273 + components: + - pos: 24.5,24.5 + parent: 1 + type: Transform + - uid: 1274 + components: + - pos: 24.5,23.5 + parent: 1 + type: Transform + - uid: 1275 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,38.5 + parent: 1 + type: Transform + - uid: 1278 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,31.5 + parent: 1 + type: Transform + - uid: 1280 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,35.5 + parent: 1 + type: Transform + - uid: 1282 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,35.5 + parent: 1 + type: Transform + - uid: 1285 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,35.5 + parent: 1 + type: Transform + - uid: 1288 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,38.5 + parent: 1 + type: Transform + - uid: 1292 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,38.5 + parent: 1 + type: Transform + - uid: 1294 + components: + - pos: 5.5,34.5 + parent: 1 + type: Transform + - uid: 1295 + components: + - pos: 5.5,32.5 + parent: 1 + type: Transform + - uid: 1299 + components: + - pos: 17.5,31.5 + parent: 1 + type: Transform + - uid: 1302 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,33.5 + parent: 1 + type: Transform + - uid: 1306 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,32.5 + parent: 1 + type: Transform + - uid: 1309 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,29.5 + parent: 1 + type: Transform + - uid: 1310 + components: + - pos: 24.5,22.5 + parent: 1 + type: Transform + - uid: 1312 + components: + - pos: 5.5,37.5 + parent: 1 + type: Transform + - uid: 1326 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,38.5 + parent: 1 + type: Transform + - uid: 1334 + components: + - pos: 5.5,27.5 + parent: 1 + type: Transform + - uid: 1337 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,26.5 + parent: 1 + type: Transform + - uid: 1339 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,26.5 + parent: 1 + type: Transform + - uid: 1349 + components: + - pos: 0.5,41.5 + parent: 1 + type: Transform + - uid: 1358 + components: + - pos: -2.5,15.5 + parent: 1 + type: Transform + - uid: 1359 + components: + - pos: 12.5,20.5 + parent: 1 + type: Transform + - uid: 1362 + components: + - pos: 6.5,18.5 + parent: 1 + type: Transform + - uid: 1364 + components: + - pos: 12.5,18.5 + parent: 1 + type: Transform + - uid: 1366 + components: + - pos: 12.5,13.5 + parent: 1 + type: Transform + - uid: 1368 + components: + - pos: 8.5,32.5 + parent: 1 + type: Transform + - uid: 1374 + components: + - pos: -1.5,38.5 + parent: 1 + type: Transform + - uid: 1376 + components: + - pos: -1.5,36.5 + parent: 1 + type: Transform + - uid: 1378 + components: + - pos: -1.5,41.5 + parent: 1 + type: Transform + - uid: 1380 + components: + - pos: -1.5,43.5 + parent: 1 + type: Transform + - uid: 1384 + components: + - pos: 1.5,44.5 + parent: 1 + type: Transform + - uid: 1385 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,45.5 + parent: 1 + type: Transform + - uid: 1386 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,45.5 + parent: 1 + type: Transform + - uid: 1388 + components: + - pos: 5.5,44.5 + parent: 1 + type: Transform + - uid: 1390 + components: + - pos: 5.5,42.5 + parent: 1 + type: Transform + - uid: 1393 + components: + - pos: 16.5,24.5 + parent: 1 + type: Transform + - uid: 1395 + components: + - pos: 24.5,26.5 + parent: 1 + type: Transform + - uid: 1396 + components: + - pos: 27.5,29.5 + parent: 1 + type: Transform + - uid: 1398 + components: + - pos: 6.5,21.5 + parent: 1 + type: Transform + - uid: 1399 + components: + - pos: 29.5,26.5 + parent: 1 + type: Transform + - uid: 1400 + components: + - pos: 17.5,29.5 + parent: 1 + type: Transform + - uid: 1408 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,45.5 + parent: 1 + type: Transform + - uid: 1409 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,45.5 + parent: 1 + type: Transform + - uid: 1420 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,44.5 + parent: 1 + type: Transform + - uid: 1426 + components: + - pos: -3.5,10.5 + parent: 1 + type: Transform + - uid: 1427 + components: + - pos: -3.5,9.5 + parent: 1 + type: Transform + - uid: 1428 + components: + - pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 1429 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 1430 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 1431 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 1432 + components: + - pos: -3.5,11.5 + parent: 1 + type: Transform + - uid: 1433 + components: + - pos: 13.5,33.5 + parent: 1 + type: Transform + - uid: 1434 + components: + - pos: 17.5,28.5 + parent: 1 + type: Transform + - uid: 1435 + components: + - pos: 17.5,30.5 + parent: 1 + type: Transform + - uid: 1436 + components: + - pos: 16.5,33.5 + parent: 1 + type: Transform + - uid: 1441 + components: + - pos: -2.5,18.5 + parent: 1 + type: Transform + - uid: 1442 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,7.5 + parent: 1 + type: Transform + - uid: 1443 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,16.5 + parent: 1 + type: Transform + - uid: 1444 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,16.5 + parent: 1 + type: Transform + - uid: 1449 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,14.5 + parent: 1 + type: Transform + - uid: 1450 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,13.5 + parent: 1 + type: Transform + - uid: 1453 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,10.5 + parent: 1 + type: Transform + - uid: 1455 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,8.5 + parent: 1 + type: Transform + - uid: 1456 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,7.5 + parent: 1 + type: Transform + - uid: 1457 + components: + - pos: -1.5,18.5 + parent: 1 + type: Transform + - uid: 1458 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,7.5 + parent: 1 + type: Transform + - uid: 1460 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,10.5 + parent: 1 + type: Transform + - uid: 1461 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,10.5 + parent: 1 + type: Transform + - uid: 1462 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,10.5 + parent: 1 + type: Transform + - uid: 1464 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,13.5 + parent: 1 + type: Transform + - uid: 1465 + components: + - pos: -0.5,18.5 + parent: 1 + type: Transform + - uid: 1467 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,13.5 + parent: 1 + type: Transform + - uid: 1468 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,20.5 + parent: 1 + type: Transform + - uid: 1471 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,19.5 + parent: 1 + type: Transform + - uid: 1472 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,19.5 + parent: 1 + type: Transform + - uid: 1475 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,23.5 + parent: 1 + type: Transform + - uid: 1477 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,23.5 + parent: 1 + type: Transform + - uid: 1478 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,23.5 + parent: 1 + type: Transform + - uid: 1480 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,21.5 + parent: 1 + type: Transform + - uid: 1482 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,19.5 + parent: 1 + type: Transform + - uid: 1484 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,17.5 + parent: 1 + type: Transform + - uid: 1485 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,7.5 + parent: 1 + type: Transform + - uid: 1492 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,10.5 + parent: 1 + type: Transform + - uid: 1493 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,11.5 + parent: 1 + type: Transform + - uid: 1494 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,11.5 + parent: 1 + type: Transform + - uid: 1496 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,11.5 + parent: 1 + type: Transform + - uid: 1497 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,11.5 + parent: 1 + type: Transform + - uid: 1503 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,14.5 + parent: 1 + type: Transform + - uid: 1511 + components: + - pos: -14.5,18.5 + parent: 1 + type: Transform + - uid: 1560 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,8.5 + parent: 1 + type: Transform + - uid: 1589 + components: + - pos: 0.5,18.5 + parent: 1 + type: Transform + - uid: 1590 + components: + - pos: -4.5,18.5 + parent: 1 + type: Transform + - uid: 1595 + components: + - pos: 0.5,19.5 + parent: 1 + type: Transform + - uid: 1624 + components: + - pos: 0.5,20.5 + parent: 1 + type: Transform + - uid: 1626 + components: + - pos: 11.5,21.5 + parent: 1 + type: Transform + - uid: 1628 + components: + - pos: 7.5,27.5 + parent: 1 + type: Transform + - uid: 1661 + components: + - pos: 0.5,21.5 + parent: 1 + type: Transform + - uid: 1670 + components: + - pos: 1.5,21.5 + parent: 1 + type: Transform + - uid: 1671 + components: + - pos: 1.5,11.5 + parent: 1 + type: Transform + - uid: 1673 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 1751 + components: + - pos: -5.5,20.5 + parent: 1 + type: Transform + - uid: 1844 + components: + - pos: -5.5,19.5 + parent: 1 + type: Transform + - uid: 1845 + components: + - pos: -5.5,18.5 + parent: 1 + type: Transform + - uid: 1857 + components: + - pos: -5.5,26.5 + parent: 1 + type: Transform + - uid: 1858 + components: + - pos: -5.5,25.5 + parent: 1 + type: Transform + - uid: 1875 + components: + - pos: -5.5,24.5 + parent: 1 + type: Transform + - uid: 1879 + components: + - pos: -5.5,23.5 + parent: 1 + type: Transform + - uid: 1880 + components: + - pos: -5.5,22.5 + parent: 1 + type: Transform + - uid: 1882 + components: + - pos: -5.5,21.5 + parent: 1 + type: Transform + - uid: 1883 + components: + - pos: 19.5,27.5 + parent: 1 + type: Transform + - uid: 1884 + components: + - pos: 20.5,27.5 + parent: 1 + type: Transform + - uid: 1888 + components: + - pos: 1.5,27.5 + parent: 1 + type: Transform + - uid: 1893 + components: + - pos: 10.5,27.5 + parent: 1 + type: Transform + - uid: 1895 + components: + - pos: 2.5,13.5 + parent: 1 + type: Transform + - uid: 1899 + components: + - pos: 8.5,20.5 + parent: 1 + type: Transform + - uid: 1929 + components: + - pos: 1.5,28.5 + parent: 1 + type: Transform + - uid: 1930 + components: + - pos: -3.5,28.5 + parent: 1 + type: Transform + - uid: 1931 + components: + - pos: -4.5,28.5 + parent: 1 + type: Transform + - uid: 1932 + components: + - pos: 13.5,32.5 + parent: 1 + type: Transform + - uid: 1933 + components: + - pos: 13.5,31.5 + parent: 1 + type: Transform + - uid: 1956 + components: + - pos: 13.5,30.5 + parent: 1 + type: Transform + - uid: 1957 + components: + - pos: 17.5,33.5 + parent: 1 + type: Transform + - uid: 1965 + components: + - pos: 13.5,27.5 + parent: 1 + type: Transform + - uid: 1966 + components: + - pos: 16.5,27.5 + parent: 1 + type: Transform + - uid: 2013 + components: + - pos: -30.5,53.5 + parent: 1 + type: Transform + - uid: 2014 + components: + - pos: 24.5,36.5 + parent: 1 + type: Transform + - uid: 2032 + components: + - pos: 5.5,18.5 + parent: 1 + type: Transform + - uid: 2045 + components: + - pos: 24.5,35.5 + parent: 1 + type: Transform + - uid: 2047 + components: + - pos: 24.5,34.5 + parent: 1 + type: Transform + - uid: 2048 + components: + - pos: 24.5,33.5 + parent: 1 + type: Transform + - uid: 2049 + components: + - pos: 24.5,32.5 + parent: 1 + type: Transform + - uid: 2056 + components: + - pos: 24.5,31.5 + parent: 1 + type: Transform + - uid: 2057 + components: + - pos: 24.5,30.5 + parent: 1 + type: Transform + - uid: 2058 + components: + - pos: 15.5,21.5 + parent: 1 + type: Transform + - uid: 2061 + components: + - pos: 24.5,29.5 + parent: 1 + type: Transform + - uid: 2068 + components: + - pos: 5.5,17.5 + parent: 1 + type: Transform + - uid: 2069 + components: + - pos: 24.5,28.5 + parent: 1 + type: Transform + - uid: 2104 + components: + - pos: 24.5,27.5 + parent: 1 + type: Transform + - uid: 2184 + components: + - pos: 20.5,44.5 + parent: 1 + type: Transform + - uid: 2235 + components: + - pos: 18.5,21.5 + parent: 1 + type: Transform + - uid: 2236 + components: + - pos: 19.5,21.5 + parent: 1 + type: Transform + - uid: 2250 + components: + - pos: 24.5,37.5 + parent: 1 + type: Transform + - uid: 2318 + components: + - pos: -16.5,-15.5 + parent: 1 + type: Transform + - uid: 2332 + components: + - pos: 20.5,-11.5 + parent: 1 + type: Transform + - uid: 2366 + components: + - pos: 13.5,-11.5 + parent: 1 + type: Transform + - uid: 2377 + components: + - pos: 17.5,-8.5 + parent: 1 + type: Transform + - uid: 2646 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,35.5 + parent: 1 + type: Transform + - uid: 2647 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,35.5 + parent: 1 + type: Transform + - uid: 2651 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,34.5 + parent: 1 + type: Transform + - uid: 2652 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,35.5 + parent: 1 + type: Transform + - uid: 2653 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,34.5 + parent: 1 + type: Transform + - uid: 2654 + components: + - pos: -18.5,34.5 + parent: 1 + type: Transform + - uid: 2655 + components: + - pos: 9.5,53.5 + parent: 1 + type: Transform + - uid: 2668 + components: + - pos: -18.5,-15.5 + parent: 1 + type: Transform + - uid: 2669 + components: + - pos: 15.5,33.5 + parent: 1 + type: Transform + - uid: 2732 + components: + - pos: -15.5,18.5 + parent: 1 + type: Transform + - uid: 2733 + components: + - pos: -14.5,17.5 + parent: 1 + type: Transform + - uid: 2749 + components: + - pos: 14.5,33.5 + parent: 1 + type: Transform + - uid: 2755 + components: + - pos: 17.5,27.5 + parent: 1 + type: Transform + - uid: 2763 + components: + - pos: 15.5,27.5 + parent: 1 + type: Transform + - uid: 2764 + components: + - pos: 14.5,27.5 + parent: 1 + type: Transform + - uid: 2772 + components: + - pos: -2.5,11.5 + parent: 1 + type: Transform + - uid: 2795 + components: + - pos: -1.5,11.5 + parent: 1 + type: Transform + - uid: 2797 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 2810 + components: + - pos: 0.5,11.5 + parent: 1 + type: Transform + - uid: 2815 + components: + - pos: 2.5,10.5 + parent: 1 + type: Transform + - uid: 2817 + components: + - pos: 2.5,11.5 + parent: 1 + type: Transform + - uid: 2818 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 2823 + components: + - pos: -0.5,11.5 + parent: 1 + type: Transform + - uid: 2827 + components: + - pos: -46.5,-14.5 + parent: 1 + type: Transform + - uid: 2829 + components: + - rot: 3.141592653589793 rad + pos: -20.5,30.5 + parent: 1 + type: Transform + - uid: 2835 + components: + - pos: -18.5,36.5 + parent: 1 + type: Transform + - uid: 2836 + components: + - pos: -14.5,22.5 + parent: 1 + type: Transform + - uid: 2838 + components: + - pos: -14.5,25.5 + parent: 1 + type: Transform + - uid: 2844 + components: + - pos: -14.5,30.5 + parent: 1 + type: Transform + - uid: 2849 + components: + - pos: -18.5,30.5 + parent: 1 + type: Transform + - uid: 2850 + components: + - pos: -14.5,21.5 + parent: 1 + type: Transform + - uid: 2893 + components: + - pos: -18.5,22.5 + parent: 1 + type: Transform + - uid: 2960 + components: + - pos: -18.5,28.5 + parent: 1 + type: Transform + - uid: 2961 + components: + - pos: -15.5,21.5 + parent: 1 + type: Transform + - uid: 2975 + components: + - pos: -18.5,21.5 + parent: 1 + type: Transform + - uid: 2976 + components: + - pos: 28.5,29.5 + parent: 1 + type: Transform + - uid: 2977 + components: + - pos: 29.5,29.5 + parent: 1 + type: Transform + - uid: 3026 + components: + - pos: -20.5,8.5 + parent: 1 + type: Transform + - uid: 3030 + components: + - pos: -21.5,10.5 + parent: 1 + type: Transform + - uid: 3031 + components: + - pos: -21.5,11.5 + parent: 1 + type: Transform + - uid: 3033 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,13.5 + parent: 1 + type: Transform + - uid: 3035 + components: + - pos: -21.5,15.5 + parent: 1 + type: Transform + - uid: 3037 + components: + - pos: -21.5,17.5 + parent: 1 + type: Transform + - uid: 3043 + components: + - pos: -21.5,19.5 + parent: 1 + type: Transform + - uid: 3048 + components: + - pos: -27.5,26.5 + parent: 1 + type: Transform + - uid: 3050 + components: + - pos: -23.5,25.5 + parent: 1 + type: Transform + - uid: 3051 + components: + - pos: -21.5,27.5 + parent: 1 + type: Transform + - uid: 3053 + components: + - pos: -22.5,7.5 + parent: 1 + type: Transform + - uid: 3054 + components: + - pos: -24.5,7.5 + parent: 1 + type: Transform + - uid: 3056 + components: + - pos: -29.5,7.5 + parent: 1 + type: Transform + - uid: 3059 + components: + - pos: -29.5,10.5 + parent: 1 + type: Transform + - uid: 3063 + components: + - pos: -29.5,14.5 + parent: 1 + type: Transform + - uid: 3065 + components: + - pos: -29.5,16.5 + parent: 1 + type: Transform + - uid: 3068 + components: + - pos: -25.5,14.5 + parent: 1 + type: Transform + - uid: 3069 + components: + - pos: -28.5,19.5 + parent: 1 + type: Transform + - uid: 3072 + components: + - pos: -28.5,14.5 + parent: 1 + type: Transform + - uid: 3074 + components: + - pos: -22.5,19.5 + parent: 1 + type: Transform + - uid: 3076 + components: + - pos: -24.5,19.5 + parent: 1 + type: Transform + - uid: 3077 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,19.5 + parent: 1 + type: Transform + - uid: 3079 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,18.5 + parent: 1 + type: Transform + - uid: 3081 + components: + - pos: -22.5,14.5 + parent: 1 + type: Transform + - uid: 3108 + components: + - pos: -31.5,11.5 + parent: 1 + type: Transform + - uid: 3110 + components: + - pos: -27.5,30.5 + parent: 1 + type: Transform + - uid: 3113 + components: + - pos: -32.5,7.5 + parent: 1 + type: Transform + - uid: 3114 + components: + - pos: -31.5,7.5 + parent: 1 + type: Transform + - uid: 3120 + components: + - pos: -21.5,25.5 + parent: 1 + type: Transform + - uid: 3123 + components: + - pos: -21.5,22.5 + parent: 1 + type: Transform + - uid: 3125 + components: + - pos: -23.5,22.5 + parent: 1 + type: Transform + - uid: 3126 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,22.5 + parent: 1 + type: Transform + - uid: 3128 + components: + - pos: -24.5,25.5 + parent: 1 + type: Transform + - uid: 3138 + components: + - pos: -27.5,22.5 + parent: 1 + type: Transform + - uid: 3141 + components: + - pos: -29.5,30.5 + parent: 1 + type: Transform + - uid: 3142 + components: + - pos: -30.5,30.5 + parent: 1 + type: Transform + - uid: 3143 + components: + - pos: -31.5,30.5 + parent: 1 + type: Transform + - uid: 3148 + components: + - pos: -30.5,22.5 + parent: 1 + type: Transform + - uid: 3149 + components: + - pos: -31.5,22.5 + parent: 1 + type: Transform + - uid: 3153 + components: + - pos: -35.5,30.5 + parent: 1 + type: Transform + - uid: 3155 + components: + - pos: -35.5,22.5 + parent: 1 + type: Transform + - uid: 3156 + components: + - pos: -31.5,21.5 + parent: 1 + type: Transform + - uid: 3162 + components: + - pos: -31.5,15.5 + parent: 1 + type: Transform + - uid: 3163 + components: + - pos: -31.5,14.5 + parent: 1 + type: Transform + - uid: 3165 + components: + - pos: -33.5,14.5 + parent: 1 + type: Transform + - uid: 3170 + components: + - pos: 25.5,22.5 + parent: 1 + type: Transform + - uid: 3171 + components: + - pos: -35.5,8.5 + parent: 1 + type: Transform + - uid: 3172 + components: + - pos: -35.5,9.5 + parent: 1 + type: Transform + - uid: 3182 + components: + - pos: -34.5,8.5 + parent: 1 + type: Transform + - uid: 3214 + components: + - pos: -39.5,17.5 + parent: 1 + type: Transform + - uid: 3216 + components: + - pos: -39.5,14.5 + parent: 1 + type: Transform + - uid: 3218 + components: + - pos: -39.5,7.5 + parent: 1 + type: Transform + - uid: 3219 + components: + - pos: -43.5,7.5 + parent: 1 + type: Transform + - uid: 3221 + components: + - pos: -42.5,7.5 + parent: 1 + type: Transform + - uid: 3361 + components: + - pos: -40.5,7.5 + parent: 1 + type: Transform + - uid: 3408 + components: + - pos: -33.5,-14.5 + parent: 1 + type: Transform + - uid: 3421 + components: + - pos: -35.5,14.5 + parent: 1 + type: Transform + - uid: 3436 + components: + - pos: -39.5,9.5 + parent: 1 + type: Transform + - uid: 3438 + components: + - pos: -39.5,11.5 + parent: 1 + type: Transform + - uid: 3439 + components: + - pos: -39.5,12.5 + parent: 1 + type: Transform + - uid: 3442 + components: + - pos: -18.5,43.5 + parent: 1 + type: Transform + - uid: 3445 + components: + - pos: -23.5,45.5 + parent: 1 + type: Transform + - uid: 3450 + components: + - pos: -23.5,43.5 + parent: 1 + type: Transform + - uid: 3459 + components: + - pos: -30.5,3.5 + parent: 1 + type: Transform + - uid: 3460 + components: + - pos: -30.5,2.5 + parent: 1 + type: Transform + - uid: 3462 + components: + - pos: -30.5,0.5 + parent: 1 + type: Transform + - uid: 3466 + components: + - pos: -30.5,-3.5 + parent: 1 + type: Transform + - uid: 3467 + components: + - pos: -30.5,-4.5 + parent: 1 + type: Transform + - uid: 3470 + components: + - pos: -29.5,-9.5 + parent: 1 + type: Transform + - uid: 3472 + components: + - pos: -30.5,-9.5 + parent: 1 + type: Transform + - uid: 3482 + components: + - pos: -24.5,-14.5 + parent: 1 + type: Transform + - uid: 3483 + components: + - pos: -25.5,-14.5 + parent: 1 + type: Transform + - uid: 3484 + components: + - pos: -26.5,-14.5 + parent: 1 + type: Transform + - uid: 3487 + components: + - pos: -22.5,-15.5 + parent: 1 + type: Transform + - uid: 3489 + components: + - pos: -20.5,-15.5 + parent: 1 + type: Transform + - uid: 3490 + components: + - pos: -30.5,-11.5 + parent: 1 + type: Transform + - uid: 3495 + components: + - pos: -30.5,-12.5 + parent: 1 + type: Transform + - uid: 3497 + components: + - pos: -28.5,-13.5 + parent: 1 + type: Transform + - uid: 3498 + components: + - pos: -30.5,-13.5 + parent: 1 + type: Transform + - uid: 3501 + components: + - pos: -27.5,-13.5 + parent: 1 + type: Transform + - uid: 3502 + components: + - pos: -43.5,-8.5 + parent: 1 + type: Transform + - uid: 3503 + components: + - pos: -19.5,-12.5 + parent: 1 + type: Transform + - uid: 3520 + components: + - pos: -39.5,2.5 + parent: 1 + type: Transform + - uid: 3523 + components: + - pos: -42.5,2.5 + parent: 1 + type: Transform + - uid: 3526 + components: + - pos: -35.5,-0.5 + parent: 1 + type: Transform + - uid: 3529 + components: + - pos: -31.5,-0.5 + parent: 1 + type: Transform + - uid: 3533 + components: + - pos: -42.5,-0.5 + parent: 1 + type: Transform + - uid: 3537 + components: + - pos: -43.5,3.5 + parent: 1 + type: Transform + - uid: 3538 + components: + - pos: -44.5,-8.5 + parent: 1 + type: Transform + - uid: 3539 + components: + - pos: -45.5,-8.5 + parent: 1 + type: Transform + - uid: 3540 + components: + - pos: -46.5,-7.5 + parent: 1 + type: Transform + - uid: 3541 + components: + - pos: -46.5,-8.5 + parent: 1 + type: Transform + - uid: 3542 + components: + - pos: -46.5,-6.5 + parent: 1 + type: Transform + - uid: 3550 + components: + - pos: -35.5,-3.5 + parent: 1 + type: Transform + - uid: 3560 + components: + - pos: -36.5,-10.5 + parent: 1 + type: Transform + - uid: 3561 + components: + - pos: -36.5,-9.5 + parent: 1 + type: Transform + - uid: 3562 + components: + - pos: -36.5,-8.5 + parent: 1 + type: Transform + - uid: 3579 + components: + - pos: -46.5,-5.5 + parent: 1 + type: Transform + - uid: 3580 + components: + - pos: -42.5,-8.5 + parent: 1 + type: Transform + - uid: 3581 + components: + - pos: -45.5,-5.5 + parent: 1 + type: Transform + - uid: 3583 + components: + - pos: -49.5,2.5 + parent: 1 + type: Transform + - uid: 3585 + components: + - pos: -43.5,-5.5 + parent: 1 + type: Transform + - uid: 3587 + components: + - pos: -42.5,-5.5 + parent: 1 + type: Transform + - uid: 3590 + components: + - pos: -48.5,-11.5 + parent: 1 + type: Transform + - uid: 3598 + components: + - pos: -47.5,-3.5 + parent: 1 + type: Transform + - uid: 3599 + components: + - pos: -50.5,3.5 + parent: 1 + type: Transform + - uid: 3600 + components: + - pos: -47.5,-1.5 + parent: 1 + type: Transform + - uid: 3601 + components: + - pos: -47.5,-0.5 + parent: 1 + type: Transform + - uid: 3604 + components: + - pos: -47.5,2.5 + parent: 1 + type: Transform + - uid: 3605 + components: + - pos: -47.5,3.5 + parent: 1 + type: Transform + - uid: 3606 + components: + - pos: -46.5,3.5 + parent: 1 + type: Transform + - uid: 3611 + components: + - pos: -43.5,-0.5 + parent: 1 + type: Transform + - uid: 3628 + components: + - pos: -46.5,-11.5 + parent: 1 + type: Transform + - uid: 3632 + components: + - pos: -38.5,-14.5 + parent: 1 + type: Transform + - uid: 3645 + components: + - pos: -36.5,-14.5 + parent: 1 + type: Transform + - uid: 3647 + components: + - pos: -36.5,-11.5 + parent: 1 + type: Transform + - uid: 3676 + components: + - pos: -44.5,-14.5 + parent: 1 + type: Transform + - uid: 3678 + components: + - pos: -33.5,-11.5 + parent: 1 + type: Transform + - uid: 3684 + components: + - pos: -30.5,-14.5 + parent: 1 + type: Transform + - uid: 3690 + components: + - pos: -39.5,8.5 + parent: 1 + type: Transform + - uid: 3691 + components: + - pos: -43.5,8.5 + parent: 1 + type: Transform + - uid: 3699 + components: + - pos: -43.5,11.5 + parent: 1 + type: Transform + - uid: 3700 + components: + - pos: -43.5,12.5 + parent: 1 + type: Transform + - uid: 3705 + components: + - pos: -35.5,-4.5 + parent: 1 + type: Transform + - uid: 3766 + components: + - pos: -42.5,12.5 + parent: 1 + type: Transform + - uid: 3832 + components: + - pos: -41.5,12.5 + parent: 1 + type: Transform + - uid: 3903 + components: + - pos: -40.5,12.5 + parent: 1 + type: Transform + - uid: 3904 + components: + - pos: 29.5,28.5 + parent: 1 + type: Transform + - uid: 3963 + components: + - pos: 8.5,53.5 + parent: 1 + type: Transform + - uid: 3964 + components: + - pos: -50.5,-11.5 + parent: 1 + type: Transform + - uid: 4084 + components: + - pos: -51.5,-11.5 + parent: 1 + type: Transform + - uid: 4091 + components: + - pos: -52.5,-11.5 + parent: 1 + type: Transform + - uid: 4093 + components: + - pos: -54.5,-11.5 + parent: 1 + type: Transform + - uid: 4094 + components: + - pos: -55.5,-11.5 + parent: 1 + type: Transform + - uid: 4095 + components: + - pos: -56.5,-11.5 + parent: 1 + type: Transform + - uid: 4096 + components: + - pos: 10.5,53.5 + parent: 1 + type: Transform + - uid: 4097 + components: + - pos: 16.5,40.5 + parent: 1 + type: Transform + - uid: 4113 + components: + - pos: -56.5,-12.5 + parent: 1 + type: Transform + - uid: 4124 + components: + - pos: -73.5,7.5 + parent: 1 + type: Transform + - uid: 4136 + components: + - pos: -36.5,-13.5 + parent: 1 + type: Transform + - uid: 4170 + components: + - pos: -39.5,18.5 + parent: 1 + type: Transform + - uid: 4173 + components: + - pos: -40.5,20.5 + parent: 1 + type: Transform + - uid: 4177 + components: + - pos: -39.5,25.5 + parent: 1 + type: Transform + - uid: 4179 + components: + - pos: -39.5,27.5 + parent: 1 + type: Transform + - uid: 4180 + components: + - pos: -39.5,28.5 + parent: 1 + type: Transform + - uid: 4182 + components: + - pos: -39.5,30.5 + parent: 1 + type: Transform + - uid: 4184 + components: + - pos: -41.5,29.5 + parent: 1 + type: Transform + - uid: 4186 + components: + - pos: -43.5,29.5 + parent: 1 + type: Transform + - uid: 4187 + components: + - pos: -43.5,28.5 + parent: 1 + type: Transform + - uid: 4190 + components: + - pos: -43.5,25.5 + parent: 1 + type: Transform + - uid: 4192 + components: + - pos: -43.5,23.5 + parent: 1 + type: Transform + - uid: 4195 + components: + - pos: -41.5,22.5 + parent: 1 + type: Transform + - uid: 4196 + components: + - pos: -40.5,22.5 + parent: 1 + type: Transform + - uid: 4202 + components: + - pos: -50.5,30.5 + parent: 1 + type: Transform + - uid: 4203 + components: + - pos: -18.5,24.5 + parent: 1 + type: Transform + - uid: 4205 + components: + - pos: -51.5,20.5 + parent: 1 + type: Transform + - uid: 4206 + components: + - pos: -47.5,30.5 + parent: 1 + type: Transform + - uid: 4239 + components: + - pos: -44.5,56.5 + parent: 1 + type: Transform + - uid: 4253 + components: + - pos: -18.5,27.5 + parent: 1 + type: Transform + - uid: 4266 + components: + - pos: -17.5,21.5 + parent: 1 + type: Transform + - uid: 4267 + components: + - pos: 17.5,-7.5 + parent: 1 + type: Transform + - uid: 4269 + components: + - pos: -23.5,39.5 + parent: 1 + type: Transform + - uid: 4270 + components: + - pos: -20.5,49.5 + parent: 1 + type: Transform + - uid: 4271 + components: + - pos: -23.5,35.5 + parent: 1 + type: Transform + - uid: 4273 + components: + - pos: -9.5,45.5 + parent: 1 + type: Transform + - uid: 4282 + components: + - pos: -10.5,45.5 + parent: 1 + type: Transform + - uid: 4283 + components: + - pos: -43.5,17.5 + parent: 1 + type: Transform + - uid: 4286 + components: + - pos: -43.5,19.5 + parent: 1 + type: Transform + - uid: 4287 + components: + - pos: -42.5,16.5 + parent: 1 + type: Transform + - uid: 4289 + components: + - pos: -40.5,16.5 + parent: 1 + type: Transform + - uid: 4290 + components: + - pos: -44.5,16.5 + parent: 1 + type: Transform + - uid: 4291 + components: + - pos: -45.5,16.5 + parent: 1 + type: Transform + - uid: 4293 + components: + - pos: -49.5,20.5 + parent: 1 + type: Transform + - uid: 4295 + components: + - pos: -49.5,18.5 + parent: 1 + type: Transform + - uid: 4296 + components: + - pos: -49.5,17.5 + parent: 1 + type: Transform + - uid: 4298 + components: + - pos: -48.5,16.5 + parent: 1 + type: Transform + - uid: 4299 + components: + - pos: -47.5,16.5 + parent: 1 + type: Transform + - uid: 4301 + components: + - pos: -46.5,18.5 + parent: 1 + type: Transform + - uid: 4305 + components: + - pos: -42.5,13.5 + parent: 1 + type: Transform + - uid: 4324 + components: + - pos: -51.5,16.5 + parent: 1 + type: Transform + - uid: 4430 + components: + - pos: -11.5,45.5 + parent: 1 + type: Transform + - uid: 4431 + components: + - pos: -12.5,45.5 + parent: 1 + type: Transform + - uid: 4433 + components: + - pos: -14.5,45.5 + parent: 1 + type: Transform + - uid: 4500 + components: + - pos: -49.5,-1.5 + parent: 1 + type: Transform + - uid: 4506 + components: + - pos: -49.5,-7.5 + parent: 1 + type: Transform + - uid: 4509 + components: + - pos: -54.5,3.5 + parent: 1 + type: Transform + - uid: 4510 + components: + - pos: -55.5,3.5 + parent: 1 + type: Transform + - uid: 4511 + components: + - pos: -49.5,0.5 + parent: 1 + type: Transform + - uid: 4513 + components: + - pos: -51.5,0.5 + parent: 1 + type: Transform + - uid: 4516 + components: + - pos: -54.5,0.5 + parent: 1 + type: Transform + - uid: 4519 + components: + - pos: -55.5,-1.5 + parent: 1 + type: Transform + - uid: 4521 + components: + - pos: -55.5,-3.5 + parent: 1 + type: Transform + - uid: 4522 + components: + - pos: -55.5,-4.5 + parent: 1 + type: Transform + - uid: 4525 + components: + - pos: -55.5,-7.5 + parent: 1 + type: Transform + - uid: 4526 + components: + - pos: -55.5,-8.5 + parent: 1 + type: Transform + - uid: 4529 + components: + - pos: -52.5,-8.5 + parent: 1 + type: Transform + - uid: 4533 + components: + - pos: -9.5,48.5 + parent: 1 + type: Transform + - uid: 4534 + components: + - pos: -13.5,45.5 + parent: 1 + type: Transform + - uid: 4535 + components: + - pos: -9.5,50.5 + parent: 1 + type: Transform + - uid: 4536 + components: + - pos: -9.5,49.5 + parent: 1 + type: Transform + - uid: 4537 + components: + - pos: -6.5,52.5 + parent: 1 + type: Transform + - uid: 4538 + components: + - pos: -10.5,50.5 + parent: 1 + type: Transform + - uid: 4539 + components: + - pos: -14.5,50.5 + parent: 1 + type: Transform + - uid: 4544 + components: + - pos: -13.5,50.5 + parent: 1 + type: Transform + - uid: 4545 + components: + - pos: -12.5,50.5 + parent: 1 + type: Transform + - uid: 4551 + components: + - pos: -55.5,28.5 + parent: 1 + type: Transform + - uid: 4553 + components: + - pos: -55.5,30.5 + parent: 1 + type: Transform + - uid: 4554 + components: + - pos: -54.5,30.5 + parent: 1 + type: Transform + - uid: 4563 + components: + - pos: -30.5,57.5 + parent: 1 + type: Transform + - uid: 4564 + components: + - pos: -30.5,58.5 + parent: 1 + type: Transform + - uid: 4571 + components: + - pos: -46.5,27.5 + parent: 1 + type: Transform + - uid: 4575 + components: + - pos: -51.5,19.5 + parent: 1 + type: Transform + - uid: 4579 + components: + - pos: -55.5,22.5 + parent: 1 + type: Transform + - uid: 4581 + components: + - pos: -46.5,29.5 + parent: 1 + type: Transform + - uid: 4586 + components: + - pos: -55.5,26.5 + parent: 1 + type: Transform + - uid: 4587 + components: + - pos: -55.5,25.5 + parent: 1 + type: Transform + - uid: 4594 + components: + - pos: -11.5,50.5 + parent: 1 + type: Transform + - uid: 4707 + components: + - pos: -9.5,46.5 + parent: 1 + type: Transform + - uid: 4712 + components: + - pos: -6.5,49.5 + parent: 1 + type: Transform + - uid: 4737 + components: + - pos: -5.5,54.5 + parent: 1 + type: Transform + - uid: 4981 + components: + - pos: -6.5,48.5 + parent: 1 + type: Transform + - uid: 5006 + components: + - pos: -32.5,56.5 + parent: 1 + type: Transform + - uid: 5007 + components: + - pos: -33.5,56.5 + parent: 1 + type: Transform + - uid: 5009 + components: + - pos: -33.5,57.5 + parent: 1 + type: Transform + - uid: 5012 + components: + - pos: -6.5,53.5 + parent: 1 + type: Transform + - uid: 5015 + components: + - pos: -32.5,58.5 + parent: 1 + type: Transform + - uid: 5016 + components: + - pos: -4.5,54.5 + parent: 1 + type: Transform + - uid: 5017 + components: + - pos: -3.5,54.5 + parent: 1 + type: Transform + - uid: 5018 + components: + - pos: -12.5,52.5 + parent: 1 + type: Transform + - uid: 5019 + components: + - pos: -9.5,52.5 + parent: 1 + type: Transform + - uid: 5020 + components: + - pos: -8.5,52.5 + parent: 1 + type: Transform + - uid: 5021 + components: + - pos: -4.5,48.5 + parent: 1 + type: Transform + - uid: 5022 + components: + - pos: -14.5,52.5 + parent: 1 + type: Transform + - uid: 5023 + components: + - pos: -6.5,51.5 + parent: 1 + type: Transform + - uid: 5024 + components: + - pos: -6.5,50.5 + parent: 1 + type: Transform + - uid: 5025 + components: + - pos: -5.5,53.5 + parent: 1 + type: Transform + - uid: 5027 + components: + - pos: -5.5,48.5 + parent: 1 + type: Transform + - uid: 5028 + components: + - pos: -11.5,52.5 + parent: 1 + type: Transform + - uid: 5029 + components: + - pos: -13.5,52.5 + parent: 1 + type: Transform + - uid: 5030 + components: + - pos: -7.5,52.5 + parent: 1 + type: Transform + - uid: 5031 + components: + - pos: -3.5,48.5 + parent: 1 + type: Transform + - uid: 5034 + components: + - pos: -2.5,48.5 + parent: 1 + type: Transform + - uid: 5035 + components: + - pos: -18.5,49.5 + parent: 1 + type: Transform + - uid: 5036 + components: + - pos: -10.5,52.5 + parent: 1 + type: Transform + - uid: 5037 + components: + - pos: -2.5,54.5 + parent: 1 + type: Transform + - uid: 5038 + components: + - pos: 1.5,54.5 + parent: 1 + type: Transform + - uid: 5041 + components: + - pos: 1.5,53.5 + parent: 1 + type: Transform + - uid: 5042 + components: + - pos: 10.5,44.5 + parent: 1 + type: Transform + - uid: 5043 + components: + - pos: 9.5,44.5 + parent: 1 + type: Transform + - uid: 5044 + components: + - pos: 12.5,44.5 + parent: 1 + type: Transform + - uid: 5048 + components: + - pos: -35.5,58.5 + parent: 1 + type: Transform + - uid: 5049 + components: + - pos: 8.5,42.5 + parent: 1 + type: Transform + - uid: 5050 + components: + - pos: 13.5,42.5 + parent: 1 + type: Transform + - uid: 5051 + components: + - pos: 13.5,41.5 + parent: 1 + type: Transform + - uid: 5052 + components: + - pos: 12.5,41.5 + parent: 1 + type: Transform + - uid: 5055 + components: + - pos: 11.5,41.5 + parent: 1 + type: Transform + - uid: 5056 + components: + - pos: 13.5,44.5 + parent: 1 + type: Transform + - uid: 5057 + components: + - pos: 22.5,44.5 + parent: 1 + type: Transform + - uid: 5058 + components: + - pos: 9.5,41.5 + parent: 1 + type: Transform + - uid: 5059 + components: + - pos: 8.5,41.5 + parent: 1 + type: Transform + - uid: 5060 + components: + - pos: 21.5,44.5 + parent: 1 + type: Transform + - uid: 5061 + components: + - pos: 2.5,53.5 + parent: 1 + type: Transform + - uid: 5062 + components: + - pos: 3.5,53.5 + parent: 1 + type: Transform + - uid: 5063 + components: + - pos: 4.5,53.5 + parent: 1 + type: Transform + - uid: 5064 + components: + - pos: 5.5,53.5 + parent: 1 + type: Transform + - uid: 5065 + components: + - pos: 6.5,53.5 + parent: 1 + type: Transform + - uid: 5066 + components: + - pos: 7.5,53.5 + parent: 1 + type: Transform + - uid: 5067 + components: + - pos: 11.5,53.5 + parent: 1 + type: Transform + - uid: 5068 + components: + - pos: 12.5,53.5 + parent: 1 + type: Transform + - uid: 5077 + components: + - pos: -61.5,7.5 + parent: 1 + type: Transform + - uid: 5078 + components: + - pos: 16.5,49.5 + parent: 1 + type: Transform + - uid: 5104 + components: + - pos: 16.5,48.5 + parent: 1 + type: Transform + - uid: 5105 + components: + - pos: 18.5,47.5 + parent: 1 + type: Transform + - uid: 5107 + components: + - pos: 17.5,47.5 + parent: 1 + type: Transform + - uid: 5108 + components: + - pos: 12.5,52.5 + parent: 1 + type: Transform + - uid: 5109 + components: + - pos: 13.5,49.5 + parent: 1 + type: Transform + - uid: 5110 + components: + - pos: 14.5,49.5 + parent: 1 + type: Transform + - uid: 5111 + components: + - pos: 15.5,49.5 + parent: 1 + type: Transform + - uid: 5112 + components: + - pos: 12.5,49.5 + parent: 1 + type: Transform + - uid: 5113 + components: + - pos: 12.5,51.5 + parent: 1 + type: Transform + - uid: 5114 + components: + - pos: 12.5,50.5 + parent: 1 + type: Transform + - uid: 5115 + components: + - pos: 8.5,43.5 + parent: 1 + type: Transform + - uid: 5116 + components: + - pos: 8.5,44.5 + parent: 1 + type: Transform + - uid: 5117 + components: + - pos: 11.5,44.5 + parent: 1 + type: Transform + - uid: 5118 + components: + - pos: 13.5,43.5 + parent: 1 + type: Transform + - uid: 5119 + components: + - pos: 23.5,44.5 + parent: 1 + type: Transform + - uid: 5120 + components: + - pos: 24.5,44.5 + parent: 1 + type: Transform + - uid: 5121 + components: + - pos: 24.5,43.5 + parent: 1 + type: Transform + - uid: 5122 + components: + - pos: 24.5,42.5 + parent: 1 + type: Transform + - uid: 5123 + components: + - pos: 16.5,47.5 + parent: 1 + type: Transform + - uid: 5124 + components: + - pos: 19.5,-9.5 + parent: 1 + type: Transform + - uid: 5125 + components: + - pos: 19.5,46.5 + parent: 1 + type: Transform + - uid: 5126 + components: + - pos: 19.5,44.5 + parent: 1 + type: Transform + - uid: 5164 + components: + - pos: 19.5,45.5 + parent: 1 + type: Transform + - uid: 5165 + components: + - pos: 19.5,47.5 + parent: 1 + type: Transform + - uid: 5166 + components: + - pos: 16.5,39.5 + parent: 1 + type: Transform + - uid: 5168 + components: + - pos: 18.5,36.5 + parent: 1 + type: Transform + - uid: 5169 + components: + - pos: 16.5,41.5 + parent: 1 + type: Transform + - uid: 5171 + components: + - pos: -2.5,57.5 + parent: 1 + type: Transform + - uid: 5173 + components: + - pos: -2.5,56.5 + parent: 1 + type: Transform + - uid: 5176 + components: + - rot: -1.5707963267948966 rad + pos: -70.5,7.5 + parent: 1 + type: Transform + - uid: 5178 + components: + - rot: -1.5707963267948966 rad + pos: -68.5,7.5 + parent: 1 + type: Transform + - uid: 5180 + components: + - rot: -1.5707963267948966 rad + pos: -66.5,7.5 + parent: 1 + type: Transform + - uid: 5183 + components: + - pos: -59.5,7.5 + parent: 1 + type: Transform + - uid: 5187 + components: + - pos: -2.5,55.5 + parent: 1 + type: Transform + - uid: 5188 + components: + - pos: -3.5,57.5 + parent: 1 + type: Transform + - uid: 5199 + components: + - pos: -23.5,49.5 + parent: 1 + type: Transform + - uid: 5209 + components: + - pos: -26.5,56.5 + parent: 1 + type: Transform + - uid: 5222 + components: + - pos: -27.5,56.5 + parent: 1 + type: Transform + - uid: 5224 + components: + - pos: -29.5,56.5 + parent: 1 + type: Transform + - uid: 5255 + components: + - pos: -55.5,21.5 + parent: 1 + type: Transform + - uid: 5307 + components: + - pos: -53.5,-3.5 + parent: 1 + type: Transform + - uid: 5309 + components: + - pos: -50.5,-3.5 + parent: 1 + type: Transform + - uid: 5320 + components: + - pos: -30.5,56.5 + parent: 1 + type: Transform + - uid: 5330 + components: + - pos: 18.5,-6.5 + parent: 1 + type: Transform + - uid: 5331 + components: + - pos: -62.5,35.5 + parent: 1 + type: Transform + - uid: 5333 + components: + - pos: 20.5,-6.5 + parent: 1 + type: Transform + - uid: 5334 + components: + - pos: 21.5,-6.5 + parent: 1 + type: Transform + - uid: 5345 + components: + - pos: 21.5,-7.5 + parent: 1 + type: Transform + - uid: 5349 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,9.5 + parent: 1 + type: Transform + - uid: 5360 + components: + - pos: -36.5,57.5 + parent: 1 + type: Transform + - uid: 5361 + components: + - pos: -36.5,56.5 + parent: 1 + type: Transform + - uid: 5374 + components: + - pos: -46.5,-10.5 + parent: 1 + type: Transform + - uid: 5379 + components: + - pos: 19.5,36.5 + parent: 1 + type: Transform + - uid: 5380 + components: + - pos: 21.5,-8.5 + parent: 1 + type: Transform + - uid: 5412 + components: + - pos: -23.5,-5.5 + parent: 1 + type: Transform + - uid: 5428 + components: + - pos: -73.5,13.5 + parent: 1 + type: Transform + - uid: 5455 + components: + - pos: -73.5,12.5 + parent: 1 + type: Transform + - uid: 5505 + components: + - pos: -73.5,11.5 + parent: 1 + type: Transform + - uid: 5508 + components: + - pos: 21.5,36.5 + parent: 1 + type: Transform + - uid: 5523 + components: + - pos: -40.5,56.5 + parent: 1 + type: Transform + - uid: 5530 + components: + - pos: -42.5,56.5 + parent: 1 + type: Transform + - uid: 5557 + components: + - pos: -77.5,52.5 + parent: 1 + type: Transform + - uid: 5597 + components: + - pos: -76.5,52.5 + parent: 1 + type: Transform + - uid: 5621 + components: + - pos: -76.5,53.5 + parent: 1 + type: Transform + - uid: 5629 + components: + - pos: -75.5,53.5 + parent: 1 + type: Transform + - uid: 5632 + components: + - pos: -74.5,57.5 + parent: 1 + type: Transform + - uid: 5633 + components: + - pos: -72.5,36.5 + parent: 1 + type: Transform + - uid: 5659 + components: + - pos: -70.5,36.5 + parent: 1 + type: Transform + - uid: 5668 + components: + - pos: -67.5,35.5 + parent: 1 + type: Transform + - uid: 5679 + components: + - pos: -66.5,35.5 + parent: 1 + type: Transform + - uid: 5681 + components: + - pos: -73.5,36.5 + parent: 1 + type: Transform + - uid: 5722 + components: + - pos: -43.5,49.5 + parent: 1 + type: Transform + - uid: 5724 + components: + - pos: -44.5,48.5 + parent: 1 + type: Transform + - uid: 5730 + components: + - pos: -68.5,36.5 + parent: 1 + type: Transform + - uid: 5732 + components: + - pos: -64.5,58.5 + parent: 1 + type: Transform + - uid: 5749 + components: + - pos: -62.5,27.5 + parent: 1 + type: Transform + - uid: 5753 + components: + - pos: -45.5,55.5 + parent: 1 + type: Transform + - uid: 5757 + components: + - pos: -76.5,42.5 + parent: 1 + type: Transform + - uid: 5759 + components: + - pos: -45.5,50.5 + parent: 1 + type: Transform + - uid: 5802 + components: + - pos: -76.5,38.5 + parent: 1 + type: Transform + - uid: 5819 + components: + - pos: -76.5,37.5 + parent: 1 + type: Transform + - uid: 5825 + components: + - pos: -76.5,40.5 + parent: 1 + type: Transform + - uid: 5828 + components: + - pos: -76.5,39.5 + parent: 1 + type: Transform + - uid: 5830 + components: + - pos: -76.5,46.5 + parent: 1 + type: Transform + - uid: 5839 + components: + - pos: -10.5,38.5 + parent: 1 + type: Transform + - uid: 5841 + components: + - pos: -10.5,40.5 + parent: 1 + type: Transform + - uid: 5842 + components: + - pos: -10.5,41.5 + parent: 1 + type: Transform + - uid: 5844 + components: + - pos: -10.5,43.5 + parent: 1 + type: Transform + - uid: 5846 + components: + - pos: -76.5,45.5 + parent: 1 + type: Transform + - uid: 5847 + components: + - pos: -76.5,47.5 + parent: 1 + type: Transform + - uid: 5848 + components: + - pos: -76.5,44.5 + parent: 1 + type: Transform + - uid: 5849 + components: + - pos: -76.5,43.5 + parent: 1 + type: Transform + - uid: 5850 + components: + - pos: -76.5,49.5 + parent: 1 + type: Transform + - uid: 5853 + components: + - pos: -6.5,38.5 + parent: 1 + type: Transform + - uid: 5855 + components: + - pos: -76.5,50.5 + parent: 1 + type: Transform + - uid: 5858 + components: + - pos: -4.5,40.5 + parent: 1 + type: Transform + - uid: 5863 + components: + - pos: -7.5,38.5 + parent: 1 + type: Transform + - uid: 5865 + components: + - pos: -9.5,38.5 + parent: 1 + type: Transform + - uid: 5871 + components: + - pos: -4.5,41.5 + parent: 1 + type: Transform + - uid: 5873 + components: + - pos: -4.5,43.5 + parent: 1 + type: Transform + - uid: 5876 + components: + - pos: -5.5,45.5 + parent: 1 + type: Transform + - uid: 5880 + components: + - pos: -74.5,53.5 + parent: 1 + type: Transform + - uid: 5881 + components: + - pos: -74.5,55.5 + parent: 1 + type: Transform + - uid: 5882 + components: + - pos: -74.5,56.5 + parent: 1 + type: Transform + - uid: 5883 + components: + - pos: -76.5,36.5 + parent: 1 + type: Transform + - uid: 5884 + components: + - pos: -75.5,36.5 + parent: 1 + type: Transform + - uid: 5885 + components: + - pos: -71.5,36.5 + parent: 1 + type: Transform + - uid: 5886 + components: + - pos: -62.5,30.5 + parent: 1 + type: Transform + - uid: 5887 + components: + - pos: -62.5,31.5 + parent: 1 + type: Transform + - uid: 5888 + components: + - pos: -62.5,28.5 + parent: 1 + type: Transform + - uid: 5889 + components: + - pos: -62.5,29.5 + parent: 1 + type: Transform + - uid: 5890 + components: + - pos: -71.5,24.5 + parent: 1 + type: Transform + - uid: 5891 + components: + - pos: -72.5,25.5 + parent: 1 + type: Transform + - uid: 5892 + components: + - pos: -68.5,25.5 + parent: 1 + type: Transform + - uid: 5893 + components: + - pos: -62.5,26.5 + parent: 1 + type: Transform + - uid: 5894 + components: + - pos: -68.5,27.5 + parent: 1 + type: Transform + - uid: 5895 + components: + - pos: -68.5,26.5 + parent: 1 + type: Transform + - uid: 5896 + components: + - pos: -68.5,31.5 + parent: 1 + type: Transform + - uid: 5897 + components: + - pos: -68.5,30.5 + parent: 1 + type: Transform + - uid: 5898 + components: + - pos: -68.5,29.5 + parent: 1 + type: Transform + - uid: 5899 + components: + - pos: -18.5,50.5 + parent: 1 + type: Transform + - uid: 5903 + components: + - pos: -67.5,24.5 + parent: 1 + type: Transform + - uid: 5906 + components: + - pos: -68.5,28.5 + parent: 1 + type: Transform + - uid: 5907 + components: + - pos: -63.5,24.5 + parent: 1 + type: Transform + - uid: 5908 + components: + - pos: -62.5,33.5 + parent: 1 + type: Transform + - uid: 5909 + components: + - pos: -62.5,25.5 + parent: 1 + type: Transform + - uid: 5940 + components: + - pos: -62.5,34.5 + parent: 1 + type: Transform + - uid: 5941 + components: + - pos: -62.5,24.5 + parent: 1 + type: Transform + - uid: 5942 + components: + - pos: -68.5,32.5 + parent: 1 + type: Transform + - uid: 5943 + components: + - pos: -65.5,32.5 + parent: 1 + type: Transform + - uid: 5944 + components: + - pos: -68.5,24.5 + parent: 1 + type: Transform + - uid: 5945 + components: + - pos: -78.5,27.5 + parent: 1 + type: Transform + - uid: 5946 + components: + - pos: -79.5,28.5 + parent: 1 + type: Transform + - uid: 5948 + components: + - pos: -81.5,28.5 + parent: 1 + type: Transform + - uid: 5953 + components: + - pos: -75.5,21.5 + parent: 1 + type: Transform + - uid: 5954 + components: + - pos: 1.5,48.5 + parent: 1 + type: Transform + - uid: 5956 + components: + - pos: 1.5,50.5 + parent: 1 + type: Transform + - uid: 5959 + components: + - pos: -75.5,19.5 + parent: 1 + type: Transform + - uid: 5971 + components: + - pos: -75.5,18.5 + parent: 1 + type: Transform + - uid: 5973 + components: + - pos: 0.5,48.5 + parent: 1 + type: Transform + - uid: 5974 + components: + - pos: -75.5,17.5 + parent: 1 + type: Transform + - uid: 5975 + components: + - pos: -75.5,23.5 + parent: 1 + type: Transform + - uid: 5976 + components: + - pos: -77.5,23.5 + parent: 1 + type: Transform + - uid: 5977 + components: + - pos: -78.5,23.5 + parent: 1 + type: Transform + - uid: 5978 + components: + - pos: -64.5,59.5 + parent: 1 + type: Transform + - uid: 5980 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,47.5 + parent: 1 + type: Transform + - uid: 5982 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,47.5 + parent: 1 + type: Transform + - uid: 5983 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,47.5 + parent: 1 + type: Transform + - uid: 5985 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,47.5 + parent: 1 + type: Transform + - uid: 5988 + components: + - pos: -78.5,22.5 + parent: 1 + type: Transform + - uid: 5989 + components: + - pos: -78.5,21.5 + parent: 1 + type: Transform + - uid: 5990 + components: + - pos: -80.5,21.5 + parent: 1 + type: Transform + - uid: 5991 + components: + - pos: -72.5,24.5 + parent: 1 + type: Transform + - uid: 5992 + components: + - pos: -72.5,30.5 + parent: 1 + type: Transform + - uid: 5993 + components: + - pos: -78.5,28.5 + parent: 1 + type: Transform + - uid: 5994 + components: + - pos: -80.5,28.5 + parent: 1 + type: Transform + - uid: 5995 + components: + - pos: -72.5,29.5 + parent: 1 + type: Transform + - uid: 5997 + components: + - pos: -72.5,31.5 + parent: 1 + type: Transform + - uid: 5999 + components: + - pos: 5.5,48.5 + parent: 1 + type: Transform + - uid: 6000 + components: + - pos: -66.5,18.5 + parent: 1 + type: Transform + - uid: 6001 + components: + - pos: -72.5,19.5 + parent: 1 + type: Transform + - uid: 6002 + components: + - pos: -63.5,18.5 + parent: 1 + type: Transform + - uid: 6003 + components: + - pos: -72.5,18.5 + parent: 1 + type: Transform + - uid: 6004 + components: + - pos: 6.5,49.5 + parent: 1 + type: Transform + - uid: 6005 + components: + - pos: 5.5,51.5 + parent: 1 + type: Transform + - uid: 6007 + components: + - pos: 5.5,49.5 + parent: 1 + type: Transform + - uid: 6009 + components: + - pos: -72.5,23.5 + parent: 1 + type: Transform + - uid: 6010 + components: + - pos: -70.5,27.5 + parent: 1 + type: Transform + - uid: 6014 + components: + - pos: -71.5,18.5 + parent: 1 + type: Transform + - uid: 6015 + components: + - pos: -81.5,21.5 + parent: 1 + type: Transform + - uid: 6021 + components: + - pos: -82.5,21.5 + parent: 1 + type: Transform + - uid: 6022 + components: + - pos: -86.5,22.5 + parent: 1 + type: Transform + - uid: 6025 + components: + - pos: -85.5,22.5 + parent: 1 + type: Transform + - uid: 6026 + components: + - pos: 8.5,49.5 + parent: 1 + type: Transform + - uid: 6028 + components: + - pos: -77.5,27.5 + parent: 1 + type: Transform + - uid: 6029 + components: + - pos: 11.5,49.5 + parent: 1 + type: Transform + - uid: 6030 + components: + - pos: -83.5,21.5 + parent: 1 + type: Transform + - uid: 6031 + components: + - pos: -83.5,22.5 + parent: 1 + type: Transform + - uid: 6032 + components: + - pos: -75.5,20.5 + parent: 1 + type: Transform + - uid: 6033 + components: + - pos: -64.5,18.5 + parent: 1 + type: Transform + - uid: 6034 + components: + - pos: 9.5,52.5 + parent: 1 + type: Transform + - uid: 6035 + components: + - pos: 9.5,51.5 + parent: 1 + type: Transform + - uid: 6037 + components: + - pos: -65.5,18.5 + parent: 1 + type: Transform + - uid: 6038 + components: + - pos: -62.5,23.5 + parent: 1 + type: Transform + - uid: 6039 + components: + - pos: -76.5,23.5 + parent: 1 + type: Transform + - uid: 6047 + components: + - pos: -75.5,22.5 + parent: 1 + type: Transform + - uid: 6048 + components: + - pos: -62.5,22.5 + parent: 1 + type: Transform + - uid: 6049 + components: + - pos: -62.5,21.5 + parent: 1 + type: Transform + - uid: 6050 + components: + - pos: -62.5,20.5 + parent: 1 + type: Transform + - uid: 6051 + components: + - pos: -62.5,19.5 + parent: 1 + type: Transform + - uid: 6052 + components: + - pos: -62.5,18.5 + parent: 1 + type: Transform + - uid: 6053 + components: + - pos: -67.5,18.5 + parent: 1 + type: Transform + - uid: 6054 + components: + - pos: -72.5,32.5 + parent: 1 + type: Transform + - uid: 6055 + components: + - pos: -73.5,10.5 + parent: 1 + type: Transform + - uid: 6057 + components: + - pos: -75.5,57.5 + parent: 1 + type: Transform + - uid: 6059 + components: + - pos: -76.5,57.5 + parent: 1 + type: Transform + - uid: 6060 + components: + - pos: -77.5,57.5 + parent: 1 + type: Transform + - uid: 6061 + components: + - pos: -78.5,57.5 + parent: 1 + type: Transform + - uid: 6062 + components: + - pos: -78.5,56.5 + parent: 1 + type: Transform + - uid: 6063 + components: + - pos: -78.5,52.5 + parent: 1 + type: Transform + - uid: 6064 + components: + - pos: -78.5,53.5 + parent: 1 + type: Transform + - uid: 6079 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,44.5 + parent: 1 + type: Transform + - uid: 6254 + components: + - pos: -78.5,55.5 + parent: 1 + type: Transform + - uid: 6256 + components: + - pos: -78.5,54.5 + parent: 1 + type: Transform + - uid: 6266 + components: + - pos: -82.5,28.5 + parent: 1 + type: Transform + - uid: 6267 + components: + - pos: -83.5,28.5 + parent: 1 + type: Transform + - uid: 6268 + components: + - pos: -86.5,28.5 + parent: 1 + type: Transform + - uid: 6269 + components: + - pos: -85.5,28.5 + parent: 1 + type: Transform + - uid: 6270 + components: + - pos: -76.5,17.5 + parent: 1 + type: Transform + - uid: 6303 + components: + - pos: -78.5,17.5 + parent: 1 + type: Transform + - uid: 6304 + components: + - pos: -77.5,17.5 + parent: 1 + type: Transform + - uid: 6305 + components: + - pos: -79.5,17.5 + parent: 1 + type: Transform + - uid: 6306 + components: + - pos: -80.5,17.5 + parent: 1 + type: Transform + - uid: 6309 + components: + - pos: -81.5,17.5 + parent: 1 + type: Transform + - uid: 6310 + components: + - pos: -82.5,17.5 + parent: 1 + type: Transform + - uid: 6311 + components: + - pos: -83.5,17.5 + parent: 1 + type: Transform + - uid: 6312 + components: + - pos: -83.5,18.5 + parent: 1 + type: Transform + - uid: 6340 + components: + - pos: -83.5,20.5 + parent: 1 + type: Transform + - uid: 6344 + components: + - rot: 3.141592653589793 rad + pos: -5.5,56.5 + parent: 1 + type: Transform + - uid: 6345 + components: + - pos: -83.5,19.5 + parent: 1 + type: Transform + - uid: 6346 + components: + - pos: -83.5,29.5 + parent: 1 + type: Transform + - uid: 6347 + components: + - pos: -83.5,30.5 + parent: 1 + type: Transform + - uid: 6348 + components: + - pos: -83.5,31.5 + parent: 1 + type: Transform + - uid: 6366 + components: + - rot: 3.141592653589793 rad + pos: -13.5,58.5 + parent: 1 + type: Transform + - uid: 6367 + components: + - pos: -84.5,31.5 + parent: 1 + type: Transform + - uid: 6373 + components: + - rot: 3.141592653589793 rad + pos: -20.5,58.5 + parent: 1 + type: Transform + - uid: 6377 + components: + - pos: -85.5,31.5 + parent: 1 + type: Transform + - uid: 6398 + components: + - pos: -86.5,31.5 + parent: 1 + type: Transform + - uid: 6399 + components: + - pos: -86.5,29.5 + parent: 1 + type: Transform + - uid: 6402 + components: + - pos: -84.5,19.5 + parent: 1 + type: Transform + - uid: 6413 + components: + - pos: -85.5,19.5 + parent: 1 + type: Transform + - uid: 6416 + components: + - pos: -86.5,19.5 + parent: 1 + type: Transform + - uid: 6417 + components: + - pos: -86.5,21.5 + parent: 1 + type: Transform + - uid: 6418 + components: + - pos: -75.5,31.5 + parent: 1 + type: Transform + - uid: 6419 + components: + - pos: -75.5,32.5 + parent: 1 + type: Transform + - uid: 6420 + components: + - pos: -64.5,35.5 + parent: 1 + type: Transform + - uid: 6421 + components: + - pos: -75.5,30.5 + parent: 1 + type: Transform + - uid: 6422 + components: + - pos: -75.5,27.5 + parent: 1 + type: Transform + - uid: 6423 + components: + - pos: -75.5,28.5 + parent: 1 + type: Transform + - uid: 6424 + components: + - pos: 27.5,22.5 + parent: 1 + type: Transform + - uid: 6425 + components: + - pos: 28.5,22.5 + parent: 1 + type: Transform + - uid: 6426 + components: + - pos: -75.5,29.5 + parent: 1 + type: Transform + - uid: 6427 + components: + - pos: -76.5,27.5 + parent: 1 + type: Transform + - uid: 6428 + components: + - pos: -78.5,47.5 + parent: 1 + type: Transform + - uid: 6475 + components: + - pos: -77.5,50.5 + parent: 1 + type: Transform + - uid: 6476 + components: + - pos: -78.5,49.5 + parent: 1 + type: Transform + - uid: 6477 + components: + - pos: -78.5,50.5 + parent: 1 + type: Transform + - uid: 6478 + components: + - pos: -78.5,51.5 + parent: 1 + type: Transform + - uid: 6479 + components: + - pos: -73.5,9.5 + parent: 1 + type: Transform + - uid: 6480 + components: + - pos: -73.5,8.5 + parent: 1 + type: Transform + - uid: 6481 + components: + - pos: -76.5,41.5 + parent: 1 + type: Transform + - uid: 6482 + components: + - pos: -72.5,28.5 + parent: 1 + type: Transform + - uid: 6483 + components: + - pos: -72.5,27.5 + parent: 1 + type: Transform + - uid: 6484 + components: + - pos: -75.5,16.5 + parent: 1 + type: Transform + - uid: 6485 + components: + - pos: -75.5,15.5 + parent: 1 + type: Transform + - uid: 6486 + components: + - pos: -75.5,14.5 + parent: 1 + type: Transform + - uid: 6487 + components: + - pos: -74.5,14.5 + parent: 1 + type: Transform + - uid: 6488 + components: + - pos: -73.5,14.5 + parent: 1 + type: Transform + - uid: 6489 + components: + - pos: -72.5,14.5 + parent: 1 + type: Transform + - uid: 6490 + components: + - pos: -71.5,14.5 + parent: 1 + type: Transform + - uid: 6491 + components: + - pos: -70.5,14.5 + parent: 1 + type: Transform + - uid: 6492 + components: + - pos: -69.5,14.5 + parent: 1 + type: Transform + - uid: 6493 + components: + - pos: -68.5,14.5 + parent: 1 + type: Transform + - uid: 6509 + components: + - pos: -67.5,14.5 + parent: 1 + type: Transform + - uid: 6556 + components: + - pos: -67.5,15.5 + parent: 1 + type: Transform + - uid: 6649 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,47.5 + parent: 1 + type: Transform + - uid: 6650 + components: + - pos: -67.5,16.5 + parent: 1 + type: Transform + - uid: 6662 + components: + - pos: -67.5,17.5 + parent: 1 + type: Transform + - uid: 6663 + components: + - pos: -85.5,32.5 + parent: 1 + type: Transform + - uid: 6664 + components: + - pos: -26.5,57.5 + parent: 1 + type: Transform + - uid: 6665 + components: + - pos: -75.5,33.5 + parent: 1 + type: Transform + - uid: 6666 + components: + - pos: -74.5,36.5 + parent: 1 + type: Transform + - uid: 6667 + components: + - pos: -68.5,35.5 + parent: 1 + type: Transform + - uid: 6677 + components: + - pos: -64.5,60.5 + parent: 1 + type: Transform + - uid: 6679 + components: + - pos: -64.5,61.5 + parent: 1 + type: Transform + - uid: 6680 + components: + - pos: -63.5,61.5 + parent: 1 + type: Transform + - uid: 6681 + components: + - pos: -62.5,61.5 + parent: 1 + type: Transform + - uid: 6683 + components: + - pos: -68.5,57.5 + parent: 1 + type: Transform + - uid: 6684 + components: + - pos: -67.5,58.5 + parent: 1 + type: Transform + - uid: 6688 + components: + - pos: -71.5,27.5 + parent: 1 + type: Transform + - uid: 6689 + components: + - pos: -70.5,24.5 + parent: 1 + type: Transform + - uid: 6690 + components: + - pos: -65.5,35.5 + parent: 1 + type: Transform + - uid: 6691 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,48.5 + parent: 1 + type: Transform + - uid: 6692 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,48.5 + parent: 1 + type: Transform + - uid: 6694 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,48.5 + parent: 1 + type: Transform + - uid: 6697 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,48.5 + parent: 1 + type: Transform + - uid: 6700 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,46.5 + parent: 1 + type: Transform + - uid: 6702 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,44.5 + parent: 1 + type: Transform + - uid: 6707 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,39.5 + parent: 1 + type: Transform + - uid: 6708 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,38.5 + parent: 1 + type: Transform + - uid: 6712 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,34.5 + parent: 1 + type: Transform + - uid: 6713 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,35.5 + parent: 1 + type: Transform + - uid: 6715 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,34.5 + parent: 1 + type: Transform + - uid: 6716 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,34.5 + parent: 1 + type: Transform + - uid: 6717 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,34.5 + parent: 1 + type: Transform + - uid: 6720 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,39.5 + parent: 1 + type: Transform + - uid: 6721 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,38.5 + parent: 1 + type: Transform + - uid: 6723 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,40.5 + parent: 1 + type: Transform + - uid: 6725 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,39.5 + parent: 1 + type: Transform + - uid: 6726 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,40.5 + parent: 1 + type: Transform + - uid: 6727 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,34.5 + parent: 1 + type: Transform + - uid: 6728 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,34.5 + parent: 1 + type: Transform + - uid: 6729 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,34.5 + parent: 1 + type: Transform + - uid: 6734 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,41.5 + parent: 1 + type: Transform + - uid: 6736 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,43.5 + parent: 1 + type: Transform + - uid: 6737 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,41.5 + parent: 1 + type: Transform + - uid: 6738 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,42.5 + parent: 1 + type: Transform + - uid: 6742 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,40.5 + parent: 1 + type: Transform + - uid: 6745 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,40.5 + parent: 1 + type: Transform + - uid: 6747 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,39.5 + parent: 1 + type: Transform + - uid: 6751 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,35.5 + parent: 1 + type: Transform + - uid: 6752 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,34.5 + parent: 1 + type: Transform + - uid: 6759 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,34.5 + parent: 1 + type: Transform + - uid: 6762 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,34.5 + parent: 1 + type: Transform + - uid: 6763 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,34.5 + parent: 1 + type: Transform + - uid: 6765 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,40.5 + parent: 1 + type: Transform + - uid: 6767 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,43.5 + parent: 1 + type: Transform + - uid: 6769 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,45.5 + parent: 1 + type: Transform + - uid: 6770 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,47.5 + parent: 1 + type: Transform + - uid: 6771 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,48.5 + parent: 1 + type: Transform + - uid: 6774 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,48.5 + parent: 1 + type: Transform + - uid: 6775 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,48.5 + parent: 1 + type: Transform + - uid: 6778 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,52.5 + parent: 1 + type: Transform + - uid: 6779 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,51.5 + parent: 1 + type: Transform + - uid: 6781 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,42.5 + parent: 1 + type: Transform + - uid: 6785 + components: + - pos: -69.5,36.5 + parent: 1 + type: Transform + - uid: 6786 + components: + - pos: 17.5,36.5 + parent: 1 + type: Transform + - uid: 6788 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,47.5 + parent: 1 + type: Transform + - uid: 6792 + components: + - pos: -23.5,-9.5 + parent: 1 + type: Transform + - uid: 6795 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,53.5 + parent: 1 + type: Transform + - uid: 6796 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,53.5 + parent: 1 + type: Transform + - uid: 6798 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,53.5 + parent: 1 + type: Transform + - uid: 6799 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,53.5 + parent: 1 + type: Transform + - uid: 6801 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,51.5 + parent: 1 + type: Transform + - uid: 6803 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,49.5 + parent: 1 + type: Transform + - uid: 6804 + components: + - pos: -26.5,-9.5 + parent: 1 + type: Transform + - uid: 6809 + components: + - pos: -66.5,58.5 + parent: 1 + type: Transform + - uid: 6810 + components: + - pos: -26.5,-11.5 + parent: 1 + type: Transform + - uid: 6826 + components: + - pos: -26.5,52.5 + parent: 1 + type: Transform + - uid: 6827 + components: + - pos: -27.5,51.5 + parent: 1 + type: Transform + - uid: 6828 + components: + - pos: -29.5,51.5 + parent: 1 + type: Transform + - uid: 6829 + components: + - pos: -30.5,54.5 + parent: 1 + type: Transform + - uid: 6830 + components: + - pos: 16.5,36.5 + parent: 1 + type: Transform + - uid: 6831 + components: + - pos: 20.5,36.5 + parent: 1 + type: Transform + - uid: 6832 + components: + - pos: -66.5,59.5 + parent: 1 + type: Transform + - uid: 6845 + components: + - pos: -66.5,60.5 + parent: 1 + type: Transform + - uid: 6846 + components: + - pos: -65.5,60.5 + parent: 1 + type: Transform + - uid: 6847 + components: + - pos: -68.5,58.5 + parent: 1 + type: Transform + - uid: 6848 + components: + - pos: -69.5,57.5 + parent: 1 + type: Transform + - uid: 6849 + components: + - pos: -71.5,57.5 + parent: 1 + type: Transform + - uid: 6851 + components: + - pos: -72.5,57.5 + parent: 1 + type: Transform + - uid: 6887 + components: + - pos: -22.5,-10.5 + parent: 1 + type: Transform + - uid: 6960 + components: + - pos: -43.5,53.5 + parent: 1 + type: Transform + - uid: 7033 + components: + - pos: -55.5,45.5 + parent: 1 + type: Transform + - uid: 7034 + components: + - pos: -55.5,44.5 + parent: 1 + type: Transform + - uid: 7036 + components: + - pos: -55.5,42.5 + parent: 1 + type: Transform + - uid: 7038 + components: + - pos: -55.5,40.5 + parent: 1 + type: Transform + - uid: 7040 + components: + - pos: -55.5,38.5 + parent: 1 + type: Transform + - uid: 7041 + components: + - pos: -54.5,34.5 + parent: 1 + type: Transform + - uid: 7043 + components: + - pos: -54.5,37.5 + parent: 1 + type: Transform + - uid: 7047 + components: + - pos: -52.5,34.5 + parent: 1 + type: Transform + - uid: 7048 + components: + - pos: -53.5,34.5 + parent: 1 + type: Transform + - uid: 7050 + components: + - pos: -49.5,35.5 + parent: 1 + type: Transform + - uid: 7053 + components: + - pos: -49.5,38.5 + parent: 1 + type: Transform + - uid: 7056 + components: + - pos: -49.5,41.5 + parent: 1 + type: Transform + - uid: 7057 + components: + - pos: -49.5,42.5 + parent: 1 + type: Transform + - uid: 7059 + components: + - pos: -51.5,42.5 + parent: 1 + type: Transform + - uid: 7061 + components: + - pos: -53.5,42.5 + parent: 1 + type: Transform + - uid: 7064 + components: + - pos: -53.5,39.5 + parent: 1 + type: Transform + - uid: 7065 + components: + - pos: -53.5,38.5 + parent: 1 + type: Transform + - uid: 7068 + components: + - pos: -50.5,39.5 + parent: 1 + type: Transform + - uid: 7107 + components: + - pos: -22.5,-9.5 + parent: 1 + type: Transform + - uid: 7137 + components: + - pos: -26.5,-10.5 + parent: 1 + type: Transform + - uid: 7138 + components: + - rot: -1.5707963267948966 rad + pos: -65.5,41.5 + parent: 1 + type: Transform + - uid: 7139 + components: + - pos: -25.5,-9.5 + parent: 1 + type: Transform + - uid: 7141 + components: + - rot: 1.5707963267948966 rad + pos: -67.5,48.5 + parent: 1 + type: Transform + - uid: 7188 + components: + - pos: -30.5,52.5 + parent: 1 + type: Transform + - uid: 7389 + components: + - pos: -30.5,55.5 + parent: 1 + type: Transform + - uid: 7390 + components: + - pos: -28.5,51.5 + parent: 1 + type: Transform + - uid: 7408 + components: + - pos: -25.5,52.5 + parent: 1 + type: Transform + - uid: 7517 + components: + - pos: -69.5,32.5 + parent: 1 + type: Transform + - uid: 7923 + components: + - pos: -50.5,-14.5 + parent: 1 + type: Transform + - uid: 8059 + components: + - pos: 26.5,29.5 + parent: 1 + type: Transform + - uid: 8109 + components: + - pos: -24.5,58.5 + parent: 1 + type: Transform + - uid: 8114 + components: + - pos: 17.5,-9.5 + parent: 1 + type: Transform + - uid: 8191 + components: + - pos: 25.5,29.5 + parent: 1 + type: Transform + - uid: 8214 + components: + - pos: 29.5,25.5 + parent: 1 + type: Transform + - uid: 8215 + components: + - pos: 29.5,24.5 + parent: 1 + type: Transform + - uid: 8224 + components: + - pos: -74.5,54.5 + parent: 1 + type: Transform + - uid: 8235 + components: + - pos: 12.5,-8.5 + parent: 1 + type: Transform + - uid: 8240 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,17.5 + parent: 1 + type: Transform + - uid: 8264 + components: + - pos: -42.5,53.5 + parent: 1 + type: Transform + - uid: 9157 + components: + - rot: 1.5707963267948966 rad + pos: -67.5,46.5 + parent: 1 + type: Transform + - uid: 9159 + components: + - rot: 1.5707963267948966 rad + pos: -68.5,49.5 + parent: 1 + type: Transform + - uid: 9161 + components: + - rot: 1.5707963267948966 rad + pos: -68.5,51.5 + parent: 1 + type: Transform + - uid: 9163 + components: + - pos: -69.5,46.5 + parent: 1 + type: Transform + - uid: 9166 + components: + - rot: 1.5707963267948966 rad + pos: -68.5,56.5 + parent: 1 + type: Transform + - uid: 9177 + components: + - rot: 1.5707963267948966 rad + pos: -72.5,46.5 + parent: 1 + type: Transform + - uid: 9179 + components: + - rot: 1.5707963267948966 rad + pos: -73.5,47.5 + parent: 1 + type: Transform + - uid: 9181 + components: + - rot: 1.5707963267948966 rad + pos: -73.5,49.5 + parent: 1 + type: Transform + - uid: 9182 + components: + - rot: 1.5707963267948966 rad + pos: -72.5,50.5 + parent: 1 + type: Transform + - uid: 9184 + components: + - rot: 1.5707963267948966 rad + pos: -70.5,50.5 + parent: 1 + type: Transform + - uid: 9191 + components: + - rot: 1.5707963267948966 rad + pos: -73.5,50.5 + parent: 1 + type: Transform + - uid: 9193 + components: + - rot: 1.5707963267948966 rad + pos: -74.5,51.5 + parent: 1 + type: Transform + - uid: 9194 + components: + - rot: 1.5707963267948966 rad + pos: -73.5,38.5 + parent: 1 + type: Transform + - uid: 9202 + components: + - rot: -1.5707963267948966 rad + pos: -65.5,44.5 + parent: 1 + type: Transform + - uid: 9206 + components: + - rot: -1.5707963267948966 rad + pos: -62.5,46.5 + parent: 1 + type: Transform + - uid: 9207 + components: + - rot: -1.5707963267948966 rad + pos: -65.5,43.5 + parent: 1 + type: Transform + - uid: 9213 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,45.5 + parent: 1 + type: Transform + - uid: 9216 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,42.5 + parent: 1 + type: Transform + - uid: 9218 + components: + - rot: -1.5707963267948966 rad + pos: -60.5,46.5 + parent: 1 + type: Transform + - uid: 9220 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,38.5 + parent: 1 + type: Transform + - uid: 9221 + components: + - pos: -59.5,37.5 + parent: 1 + type: Transform + - uid: 9225 + components: + - rot: -1.5707963267948966 rad + pos: -65.5,37.5 + parent: 1 + type: Transform + - uid: 9230 + components: + - rot: 1.5707963267948966 rad + pos: -73.5,45.5 + parent: 1 + type: Transform + - uid: 9232 + components: + - rot: 1.5707963267948966 rad + pos: -68.5,42.5 + parent: 1 + type: Transform + - uid: 9233 + components: + - rot: 1.5707963267948966 rad + pos: -68.5,43.5 + parent: 1 + type: Transform + - uid: 9235 + components: + - pos: -68.5,45.5 + parent: 1 + type: Transform + - uid: 9236 + components: + - rot: 1.5707963267948966 rad + pos: -73.5,43.5 + parent: 1 + type: Transform + - uid: 9237 + components: + - pos: -68.5,45.5 + parent: 1 + type: Transform + - uid: 9238 + components: + - rot: 1.5707963267948966 rad + pos: -73.5,41.5 + parent: 1 + type: Transform + - uid: 9240 + components: + - rot: 1.5707963267948966 rad + pos: -68.5,39.5 + parent: 1 + type: Transform + - uid: 9243 + components: + - pos: -68.5,38.5 + parent: 1 + type: Transform + - uid: 9244 + components: + - rot: 1.5707963267948966 rad + pos: -71.5,38.5 + parent: 1 + type: Transform + - uid: 9270 + components: + - rot: -1.5707963267948966 rad + pos: -65.5,38.5 + parent: 1 + type: Transform + - uid: 9276 + components: + - rot: -1.5707963267948966 rad + pos: -65.5,46.5 + parent: 1 + type: Transform + - uid: 9277 + components: + - rot: -1.5707963267948966 rad + pos: -64.5,46.5 + parent: 1 + type: Transform + - uid: 9278 + components: + - rot: -1.5707963267948966 rad + pos: -61.5,37.5 + parent: 1 + type: Transform + - uid: 9279 + components: + - rot: -1.5707963267948966 rad + pos: -62.5,37.5 + parent: 1 + type: Transform + - uid: 9280 + components: + - rot: -1.5707963267948966 rad + pos: -63.5,37.5 + parent: 1 + type: Transform + - uid: 9289 + components: + - pos: -59.5,35.5 + parent: 1 + type: Transform + - uid: 9290 + components: + - pos: -59.5,34.5 + parent: 1 + type: Transform + - uid: 9291 + components: + - pos: -61.5,34.5 + parent: 1 + type: Transform + - uid: 9299 + components: + - pos: -61.5,30.5 + parent: 1 + type: Transform + - uid: 9895 + components: + - pos: -72.5,7.5 + parent: 1 + type: Transform + - uid: 9896 + components: + - pos: -71.5,7.5 + parent: 1 + type: Transform + - uid: 9898 + components: + - pos: -59.5,28.5 + parent: 1 + type: Transform + - uid: 9900 + components: + - pos: -59.5,26.5 + parent: 1 + type: Transform + - uid: 9904 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,40.5 + parent: 1 + type: Transform + - uid: 9905 + components: + - pos: -59.5,21.5 + parent: 1 + type: Transform + - uid: 9907 + components: + - pos: -59.5,19.5 + parent: 1 + type: Transform + - uid: 9908 + components: + - pos: -59.5,18.5 + parent: 1 + type: Transform + - uid: 9909 + components: + - pos: -59.5,15.5 + parent: 1 + type: Transform + - uid: 9910 + components: + - pos: -59.5,16.5 + parent: 1 + type: Transform + - uid: 9917 + components: + - pos: -59.5,9.5 + parent: 1 + type: Transform + - uid: 9918 + components: + - pos: -59.5,8.5 + parent: 1 + type: Transform + - uid: 9919 + components: + - pos: -68.5,13.5 + parent: 1 + type: Transform + - uid: 9921 + components: + - pos: -68.5,11.5 + parent: 1 + type: Transform + - uid: 9922 + components: + - pos: -68.5,10.5 + parent: 1 + type: Transform + - uid: 9924 + components: + - pos: -68.5,8.5 + parent: 1 + type: Transform + - uid: 9927 + components: + - pos: -62.5,9.5 + parent: 1 + type: Transform + - uid: 9929 + components: + - pos: -64.5,9.5 + parent: 1 + type: Transform + - uid: 9933 + components: + - pos: -65.5,12.5 + parent: 1 + type: Transform + - uid: 9934 + components: + - pos: -65.5,13.5 + parent: 1 + type: Transform + - uid: 9935 + components: + - pos: -65.5,14.5 + parent: 1 + type: Transform + - uid: 9937 + components: + - pos: -64.5,15.5 + parent: 1 + type: Transform + - uid: 9939 + components: + - pos: -62.5,15.5 + parent: 1 + type: Transform + - uid: 9941 + components: + - pos: -60.5,15.5 + parent: 1 + type: Transform + - uid: 10315 + components: + - pos: -16.5,18.5 + parent: 1 + type: Transform + - uid: 10316 + components: + - pos: -17.5,18.5 + parent: 1 + type: Transform + - uid: 10317 + components: + - pos: -17.5,16.5 + parent: 1 + type: Transform + - uid: 10436 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,13.5 + parent: 1 + type: Transform + - uid: 10437 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,13.5 + parent: 1 + type: Transform + - uid: 10438 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,13.5 + parent: 1 + type: Transform + - uid: 10439 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,7.5 + parent: 1 + type: Transform + - uid: 10442 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,13.5 + parent: 1 + type: Transform + - uid: 10444 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,12.5 + parent: 1 + type: Transform + - uid: 10447 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,10.5 + parent: 1 + type: Transform + - uid: 10448 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,11.5 + parent: 1 + type: Transform + - uid: 10449 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,8.5 + parent: 1 + type: Transform + - uid: 10451 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,8.5 + parent: 1 + type: Transform + - uid: 10452 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,13.5 + parent: 1 + type: Transform + - uid: 10454 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,11.5 + parent: 1 + type: Transform + - uid: 10455 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,11.5 + parent: 1 + type: Transform + - uid: 10457 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,7.5 + parent: 1 + type: Transform + - uid: 10458 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,9.5 + parent: 1 + type: Transform + - uid: 11052 + components: + - rot: 1.5707963267948966 rad + pos: -76.5,51.5 + parent: 1 + type: Transform + - uid: 11886 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,12.5 + parent: 1 + type: Transform + - uid: 11887 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,11.5 + parent: 1 + type: Transform + - uid: 14010 + components: + - pos: -68.5,9.5 + parent: 1 + type: Transform +- proto: WallSolidRust + entities: + - uid: 17 + components: + - pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 18 + components: + - pos: -14.5,0.5 + parent: 1 + type: Transform + - uid: 19 + components: + - pos: -13.5,-0.5 + parent: 1 + type: Transform + - uid: 25 + components: + - pos: 5.5,-6.5 + parent: 1 + type: Transform + - uid: 30 + components: + - pos: -11.5,-0.5 + parent: 1 + type: Transform + - uid: 32 + components: + - pos: -10.5,-0.5 + parent: 1 + type: Transform + - uid: 33 + components: + - pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 40 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform + - uid: 44 + components: + - pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 46 + components: + - pos: -11.5,3.5 + parent: 1 + type: Transform + - uid: 49 + components: + - pos: 1.5,-6.5 + parent: 1 + type: Transform + - uid: 51 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 52 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 56 + components: + - pos: 4.5,-6.5 + parent: 1 + type: Transform + - uid: 83 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 109 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-10.5 + parent: 1 + type: Transform + - uid: 115 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-13.5 + parent: 1 + type: Transform + - uid: 173 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 181 + components: + - pos: -14.5,2.5 + parent: 1 + type: Transform + - uid: 193 + components: + - pos: -0.5,-12.5 + parent: 1 + type: Transform + - uid: 197 + components: + - pos: 3.5,-13.5 + parent: 1 + type: Transform + - uid: 467 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 470 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 476 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-3.5 + parent: 1 + type: Transform + - uid: 479 + components: + - pos: 9.5,-4.5 + parent: 1 + type: Transform + - uid: 480 + components: + - pos: 13.5,-3.5 + parent: 1 + type: Transform + - uid: 481 + components: + - pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 484 + components: + - pos: 9.5,2.5 + parent: 1 + type: Transform + - uid: 489 + components: + - pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 490 + components: + - pos: 12.5,-4.5 + parent: 1 + type: Transform + - uid: 513 + components: + - pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 529 + components: + - pos: 16.5,-6.5 + parent: 1 + type: Transform + - uid: 576 + components: + - pos: 7.5,-6.5 + parent: 1 + type: Transform + - uid: 618 + components: + - pos: -4.5,0.5 + parent: 1 + type: Transform + - uid: 633 + components: + - pos: 18.5,1.5 + parent: 1 + type: Transform + - uid: 637 + components: + - pos: 16.5,4.5 + parent: 1 + type: Transform + - uid: 640 + components: + - pos: 13.5,4.5 + parent: 1 + type: Transform + - uid: 645 + components: + - pos: 16.5,-3.5 + parent: 1 + type: Transform + - uid: 650 + components: + - pos: 20.5,3.5 + parent: 1 + type: Transform + - uid: 652 + components: + - pos: 21.5,2.5 + parent: 1 + type: Transform + - uid: 653 + components: + - pos: 21.5,1.5 + parent: 1 + type: Transform + - uid: 657 + components: + - pos: 12.5,1.5 + parent: 1 + type: Transform + - uid: 658 + components: + - pos: 21.5,-3.5 + parent: 1 + type: Transform + - uid: 661 + components: + - pos: 22.5,-1.5 + parent: 1 + type: Transform + - uid: 663 + components: + - pos: 18.5,-0.5 + parent: 1 + type: Transform + - uid: 673 + components: + - pos: 25.5,-6.5 + parent: 1 + type: Transform + - uid: 675 + components: + - pos: 24.5,2.5 + parent: 1 + type: Transform + - uid: 679 + components: + - pos: 25.5,-0.5 + parent: 1 + type: Transform + - uid: 683 + components: + - pos: 27.5,-3.5 + parent: 1 + type: Transform + - uid: 684 + components: + - pos: 29.5,-3.5 + parent: 1 + type: Transform + - uid: 686 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 687 + components: + - pos: 26.5,-3.5 + parent: 1 + type: Transform + - uid: 689 + components: + - pos: 29.5,-6.5 + parent: 1 + type: Transform + - uid: 690 + components: + - pos: 26.5,-8.5 + parent: 1 + type: Transform + - uid: 696 + components: + - pos: 28.5,0.5 + parent: 1 + type: Transform + - uid: 699 + components: + - pos: 17.5,4.5 + parent: 1 + type: Transform + - uid: 995 + components: + - pos: 24.5,21.5 + parent: 1 + type: Transform + - uid: 999 + components: + - pos: 20.5,11.5 + parent: 1 + type: Transform + - uid: 1003 + components: + - pos: 21.5,27.5 + parent: 1 + type: Transform + - uid: 1009 + components: + - pos: 20.5,9.5 + parent: 1 + type: Transform + - uid: 1033 + components: + - pos: 23.5,10.5 + parent: 1 + type: Transform + - uid: 1034 + components: + - pos: 24.5,8.5 + parent: 1 + type: Transform + - uid: 1037 + components: + - pos: 22.5,10.5 + parent: 1 + type: Transform + - uid: 1040 + components: + - pos: 21.5,7.5 + parent: 1 + type: Transform + - uid: 1042 + components: + - pos: 20.5,33.5 + parent: 1 + type: Transform + - uid: 1055 + components: + - pos: 21.5,20.5 + parent: 1 + type: Transform + - uid: 1058 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 1059 + components: + - pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 1069 + components: + - pos: -16.5,-0.5 + parent: 1 + type: Transform + - uid: 1070 + components: + - pos: -18.5,2.5 + parent: 1 + type: Transform + - uid: 1072 + components: + - pos: -16.5,2.5 + parent: 1 + type: Transform + - uid: 1073 + components: + - pos: -19.5,-6.5 + parent: 1 + type: Transform + - uid: 1077 + components: + - pos: -19.5,2.5 + parent: 1 + type: Transform + - uid: 1079 + components: + - pos: -21.5,3.5 + parent: 1 + type: Transform + - uid: 1080 + components: + - pos: -19.5,-0.5 + parent: 1 + type: Transform + - uid: 1082 + components: + - pos: -18.5,-0.5 + parent: 1 + type: Transform + - uid: 1085 + components: + - pos: -19.5,-2.5 + parent: 1 + type: Transform + - uid: 1088 + components: + - pos: -19.5,-4.5 + parent: 1 + type: Transform + - uid: 1089 + components: + - pos: -18.5,-6.5 + parent: 1 + type: Transform + - uid: 1092 + components: + - pos: -16.5,-9.5 + parent: 1 + type: Transform + - uid: 1096 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-9.5 + parent: 1 + type: Transform + - uid: 1101 + components: + - pos: -23.5,1.5 + parent: 1 + type: Transform + - uid: 1102 + components: + - pos: -22.5,0.5 + parent: 1 + type: Transform + - uid: 1106 + components: + - pos: -22.5,-3.5 + parent: 1 + type: Transform + - uid: 1107 + components: + - pos: -15.5,-6.5 + parent: 1 + type: Transform + - uid: 1109 + components: + - pos: -22.5,-6.5 + parent: 1 + type: Transform + - uid: 1110 + components: + - pos: -22.5,-5.5 + parent: 1 + type: Transform + - uid: 1112 + components: + - pos: -25.5,-2.5 + parent: 1 + type: Transform + - uid: 1116 + components: + - pos: -25.5,-6.5 + parent: 1 + type: Transform + - uid: 1117 + components: + - pos: -25.5,-4.5 + parent: 1 + type: Transform + - uid: 1120 + components: + - pos: -27.5,-1.5 + parent: 1 + type: Transform + - uid: 1122 + components: + - pos: -27.5,2.5 + parent: 1 + type: Transform + - uid: 1126 + components: + - pos: -27.5,-3.5 + parent: 1 + type: Transform + - uid: 1133 + components: + - pos: -24.5,-0.5 + parent: 1 + type: Transform + - uid: 1137 + components: + - pos: 11.5,7.5 + parent: 1 + type: Transform + - uid: 1140 + components: + - pos: 14.5,7.5 + parent: 1 + type: Transform + - uid: 1146 + components: + - pos: 18.5,24.5 + parent: 1 + type: Transform + - uid: 1158 + components: + - pos: 8.5,21.5 + parent: 1 + type: Transform + - uid: 1159 + components: + - pos: 8.5,18.5 + parent: 1 + type: Transform + - uid: 1161 + components: + - pos: 18.5,27.5 + parent: 1 + type: Transform + - uid: 1162 + components: + - pos: 21.5,30.5 + parent: 1 + type: Transform + - uid: 1163 + components: + - pos: 13.5,26.5 + parent: 1 + type: Transform + - uid: 1164 + components: + - pos: 15.5,19.5 + parent: 1 + type: Transform + - uid: 1166 + components: + - pos: 15.5,15.5 + parent: 1 + type: Transform + - uid: 1167 + components: + - pos: 7.5,18.5 + parent: 1 + type: Transform + - uid: 1168 + components: + - pos: 21.5,21.5 + parent: 1 + type: Transform + - uid: 1169 + components: + - pos: 12.5,10.5 + parent: 1 + type: Transform + - uid: 1170 + components: + - pos: 21.5,24.5 + parent: 1 + type: Transform + - uid: 1173 + components: + - pos: 11.5,23.5 + parent: 1 + type: Transform + - uid: 1176 + components: + - pos: 12.5,12.5 + parent: 1 + type: Transform + - uid: 1178 + components: + - pos: 15.5,12.5 + parent: 1 + type: Transform + - uid: 1179 + components: + - pos: 21.5,31.5 + parent: 1 + type: Transform + - uid: 1190 + components: + - pos: 7.5,21.5 + parent: 1 + type: Transform + - uid: 1192 + components: + - pos: -0.5,41.5 + parent: 1 + type: Transform + - uid: 1193 + components: + - pos: 10.5,38.5 + parent: 1 + type: Transform + - uid: 1203 + components: + - pos: 15.5,20.5 + parent: 1 + type: Transform + - uid: 1208 + components: + - pos: 1.5,18.5 + parent: 1 + type: Transform + - uid: 1211 + components: + - pos: 4.5,18.5 + parent: 1 + type: Transform + - uid: 1223 + components: + - pos: 16.5,23.5 + parent: 1 + type: Transform + - uid: 1230 + components: + - pos: 12.5,19.5 + parent: 1 + type: Transform + - uid: 1233 + components: + - pos: 10.5,10.5 + parent: 1 + type: Transform + - uid: 1234 + components: + - pos: 8.5,10.5 + parent: 1 + type: Transform + - uid: 1236 + components: + - pos: 7.5,10.5 + parent: 1 + type: Transform + - uid: 1237 + components: + - pos: 20.5,24.5 + parent: 1 + type: Transform + - uid: 1241 + components: + - pos: 21.5,19.5 + parent: 1 + type: Transform + - uid: 1247 + components: + - pos: 15.5,13.5 + parent: 1 + type: Transform + - uid: 1249 + components: + - pos: 1.5,35.5 + parent: 1 + type: Transform + - uid: 1276 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,32.5 + parent: 1 + type: Transform + - uid: 1277 + components: + - pos: 1.5,32.5 + parent: 1 + type: Transform + - uid: 1281 + components: + - pos: -0.5,35.5 + parent: 1 + type: Transform + - uid: 1283 + components: + - pos: -2.5,35.5 + parent: 1 + type: Transform + - uid: 1284 + components: + - pos: -3.5,35.5 + parent: 1 + type: Transform + - uid: 1286 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,35.5 + parent: 1 + type: Transform + - uid: 1287 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,32.5 + parent: 1 + type: Transform + - uid: 1289 + components: + - pos: 11.5,38.5 + parent: 1 + type: Transform + - uid: 1291 + components: + - pos: 1.5,34.5 + parent: 1 + type: Transform + - uid: 1293 + components: + - pos: 6.5,38.5 + parent: 1 + type: Transform + - uid: 1296 + components: + - pos: 13.5,37.5 + parent: 1 + type: Transform + - uid: 1297 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,35.5 + parent: 1 + type: Transform + - uid: 1298 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,32.5 + parent: 1 + type: Transform + - uid: 1300 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,36.5 + parent: 1 + type: Transform + - uid: 1301 + components: + - pos: 15.5,9.5 + parent: 1 + type: Transform + - uid: 1304 + components: + - pos: 18.5,14.5 + parent: 1 + type: Transform + - uid: 1307 + components: + - pos: 19.5,14.5 + parent: 1 + type: Transform + - uid: 1308 + components: + - pos: 21.5,16.5 + parent: 1 + type: Transform + - uid: 1311 + components: + - pos: 8.5,38.5 + parent: 1 + type: Transform + - uid: 1315 + components: + - pos: 15.5,17.5 + parent: 1 + type: Transform + - uid: 1322 + components: + - pos: 13.5,36.5 + parent: 1 + type: Transform + - uid: 1328 + components: + - pos: 10.5,21.5 + parent: 1 + type: Transform + - uid: 1330 + components: + - pos: 12.5,11.5 + parent: 1 + type: Transform + - uid: 1332 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,32.5 + parent: 1 + type: Transform + - uid: 1335 + components: + - pos: 12.5,14.5 + parent: 1 + type: Transform + - uid: 1338 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,26.5 + parent: 1 + type: Transform + - uid: 1346 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,26.5 + parent: 1 + type: Transform + - uid: 1348 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,26.5 + parent: 1 + type: Transform + - uid: 1355 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,32.5 + parent: 1 + type: Transform + - uid: 1357 + components: + - pos: 12.5,17.5 + parent: 1 + type: Transform + - uid: 1363 + components: + - pos: 12.5,16.5 + parent: 1 + type: Transform + - uid: 1367 + components: + - pos: 4.5,35.5 + parent: 1 + type: Transform + - uid: 1370 + components: + - pos: -2.5,17.5 + parent: 1 + type: Transform + - uid: 1373 + components: + - pos: 3.5,45.5 + parent: 1 + type: Transform + - uid: 1375 + components: + - pos: 0.5,44.5 + parent: 1 + type: Transform + - uid: 1377 + components: + - pos: 5.5,43.5 + parent: 1 + type: Transform + - uid: 1379 + components: + - pos: 5.5,41.5 + parent: 1 + type: Transform + - uid: 1382 + components: + - pos: -1.5,42.5 + parent: 1 + type: Transform + - uid: 1383 + components: + - pos: -0.5,44.5 + parent: 1 + type: Transform + - uid: 1387 + components: + - pos: -1.5,40.5 + parent: 1 + type: Transform + - uid: 1389 + components: + - pos: -1.5,39.5 + parent: 1 + type: Transform + - uid: 1391 + components: + - pos: -1.5,37.5 + parent: 1 + type: Transform + - uid: 1392 + components: + - pos: 5.5,39.5 + parent: 1 + type: Transform + - uid: 1394 + components: + - pos: 5.5,21.5 + parent: 1 + type: Transform + - uid: 1419 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,46.5 + parent: 1 + type: Transform + - uid: 1445 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,22.5 + parent: 1 + type: Transform + - uid: 1448 + components: + - pos: -6.5,9.5 + parent: 1 + type: Transform + - uid: 1451 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,13.5 + parent: 1 + type: Transform + - uid: 1452 + components: + - pos: -6.5,11.5 + parent: 1 + type: Transform + - uid: 1454 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,12.5 + parent: 1 + type: Transform + - uid: 1459 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,7.5 + parent: 1 + type: Transform + - uid: 1463 + components: + - pos: -6.5,15.5 + parent: 1 + type: Transform + - uid: 1473 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,18.5 + parent: 1 + type: Transform + - uid: 1474 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,16.5 + parent: 1 + type: Transform + - uid: 1479 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,21.5 + parent: 1 + type: Transform + - uid: 1481 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,20.5 + parent: 1 + type: Transform + - uid: 1483 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,22.5 + parent: 1 + type: Transform + - uid: 1486 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,8.5 + parent: 1 + type: Transform + - uid: 1488 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,7.5 + parent: 1 + type: Transform + - uid: 1490 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,7.5 + parent: 1 + type: Transform + - uid: 1495 + components: + - pos: -18.5,12.5 + parent: 1 + type: Transform + - uid: 1499 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,13.5 + parent: 1 + type: Transform + - uid: 1500 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,10.5 + parent: 1 + type: Transform + - uid: 1501 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,15.5 + parent: 1 + type: Transform + - uid: 1502 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,15.5 + parent: 1 + type: Transform + - uid: 1504 + components: + - pos: -18.5,13.5 + parent: 1 + type: Transform + - uid: 1505 + components: + - pos: -18.5,9.5 + parent: 1 + type: Transform + - uid: 1507 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,7.5 + parent: 1 + type: Transform + - uid: 1512 + components: + - pos: -14.5,16.5 + parent: 1 + type: Transform + - uid: 1588 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,11.5 + parent: 1 + type: Transform + - uid: 1627 + components: + - pos: 9.5,27.5 + parent: 1 + type: Transform + - uid: 1630 + components: + - pos: 6.5,27.5 + parent: 1 + type: Transform + - uid: 1633 + components: + - pos: -2.5,14.5 + parent: 1 + type: Transform + - uid: 1846 + components: + - pos: -5.5,28.5 + parent: 1 + type: Transform + - uid: 1856 + components: + - pos: -5.5,27.5 + parent: 1 + type: Transform + - uid: 1868 + components: + - pos: -6.5,35.5 + parent: 1 + type: Transform + - uid: 1881 + components: + - pos: 13.5,25.5 + parent: 1 + type: Transform + - uid: 1885 + components: + - pos: 1.5,22.5 + parent: 1 + type: Transform + - uid: 1889 + components: + - pos: 2.5,41.5 + parent: 1 + type: Transform + - uid: 1891 + components: + - pos: 3.5,41.5 + parent: 1 + type: Transform + - uid: 1892 + components: + - pos: 8.5,27.5 + parent: 1 + type: Transform + - uid: 1900 + components: + - pos: 12.5,21.5 + parent: 1 + type: Transform + - uid: 2006 + components: + - pos: -45.5,52.5 + parent: 1 + type: Transform + - uid: 2007 + components: + - pos: -45.5,51.5 + parent: 1 + type: Transform + - uid: 2046 + components: + - pos: 17.5,21.5 + parent: 1 + type: Transform + - uid: 2644 + components: + - pos: -19.5,30.5 + parent: 1 + type: Transform + - uid: 2645 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,35.5 + parent: 1 + type: Transform + - uid: 2648 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,35.5 + parent: 1 + type: Transform + - uid: 2649 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,34.5 + parent: 1 + type: Transform + - uid: 2650 + components: + - pos: -12.5,34.5 + parent: 1 + type: Transform + - uid: 2667 + components: + - pos: -17.5,-15.5 + parent: 1 + type: Transform + - uid: 2813 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,19.5 + parent: 1 + type: Transform + - uid: 2837 + components: + - pos: -14.5,26.5 + parent: 1 + type: Transform + - uid: 2936 + components: + - pos: -18.5,23.5 + parent: 1 + type: Transform + - uid: 3027 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,7.5 + parent: 1 + type: Transform + - uid: 3028 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,8.5 + parent: 1 + type: Transform + - uid: 3029 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,9.5 + parent: 1 + type: Transform + - uid: 3039 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,19.5 + parent: 1 + type: Transform + - uid: 3046 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,25.5 + parent: 1 + type: Transform + - uid: 3052 + components: + - pos: -21.5,30.5 + parent: 1 + type: Transform + - uid: 3055 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,7.5 + parent: 1 + type: Transform + - uid: 3057 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,9.5 + parent: 1 + type: Transform + - uid: 3058 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,14.5 + parent: 1 + type: Transform + - uid: 3060 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,11.5 + parent: 1 + type: Transform + - uid: 3061 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,12.5 + parent: 1 + type: Transform + - uid: 3062 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,14.5 + parent: 1 + type: Transform + - uid: 3066 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,18.5 + parent: 1 + type: Transform + - uid: 3067 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,13.5 + parent: 1 + type: Transform + - uid: 3071 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,19.5 + parent: 1 + type: Transform + - uid: 3073 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,14.5 + parent: 1 + type: Transform + - uid: 3075 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,19.5 + parent: 1 + type: Transform + - uid: 3078 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,17.5 + parent: 1 + type: Transform + - uid: 3080 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,9.5 + parent: 1 + type: Transform + - uid: 3111 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,8.5 + parent: 1 + type: Transform + - uid: 3112 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,7.5 + parent: 1 + type: Transform + - uid: 3115 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,11.5 + parent: 1 + type: Transform + - uid: 3116 + components: + - pos: -27.5,29.5 + parent: 1 + type: Transform + - uid: 3119 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,25.5 + parent: 1 + type: Transform + - uid: 3121 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,24.5 + parent: 1 + type: Transform + - uid: 3124 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,22.5 + parent: 1 + type: Transform + - uid: 3127 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,25.5 + parent: 1 + type: Transform + - uid: 3136 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,22.5 + parent: 1 + type: Transform + - uid: 3137 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,22.5 + parent: 1 + type: Transform + - uid: 3139 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,24.5 + parent: 1 + type: Transform + - uid: 3140 + components: + - pos: -34.5,30.5 + parent: 1 + type: Transform + - uid: 3145 + components: + - pos: -10.5,36.5 + parent: 1 + type: Transform + - uid: 3147 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,14.5 + parent: 1 + type: Transform + - uid: 3152 + components: + - pos: -28.5,30.5 + parent: 1 + type: Transform + - uid: 3157 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-1.5 + parent: 1 + type: Transform + - uid: 3158 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-0.5 + parent: 1 + type: Transform + - uid: 3166 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,22.5 + parent: 1 + type: Transform + - uid: 3167 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,10.5 + parent: 1 + type: Transform + - uid: 3169 + components: + - pos: -46.5,19.5 + parent: 1 + type: Transform + - uid: 3213 + components: + - pos: -42.5,15.5 + parent: 1 + type: Transform + - uid: 3215 + components: + - pos: -39.5,19.5 + parent: 1 + type: Transform + - uid: 3217 + components: + - pos: -39.5,16.5 + parent: 1 + type: Transform + - uid: 3420 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,13.5 + parent: 1 + type: Transform + - uid: 3437 + components: + - pos: -39.5,10.5 + parent: 1 + type: Transform + - uid: 3446 + components: + - pos: -23.5,46.5 + parent: 1 + type: Transform + - uid: 3453 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,34.5 + parent: 1 + type: Transform + - uid: 3463 + components: + - pos: -30.5,-2.5 + parent: 1 + type: Transform + - uid: 3465 + components: + - pos: -30.5,-1.5 + parent: 1 + type: Transform + - uid: 3468 + components: + - pos: -30.5,-5.5 + parent: 1 + type: Transform + - uid: 3471 + components: + - pos: -30.5,-7.5 + parent: 1 + type: Transform + - uid: 3473 + components: + - pos: -30.5,1.5 + parent: 1 + type: Transform + - uid: 3474 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-9.5 + parent: 1 + type: Transform + - uid: 3475 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-10.5 + parent: 1 + type: Transform + - uid: 3492 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-9.5 + parent: 1 + type: Transform + - uid: 3494 + components: + - pos: -29.5,-13.5 + parent: 1 + type: Transform + - uid: 3500 + components: + - pos: -26.5,-13.5 + parent: 1 + type: Transform + - uid: 3521 + components: + - pos: -35.5,2.5 + parent: 1 + type: Transform + - uid: 3525 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,0.5 + parent: 1 + type: Transform + - uid: 3528 + components: + - pos: -33.5,-0.5 + parent: 1 + type: Transform + - uid: 3548 + components: + - pos: -30.5,-8.5 + parent: 1 + type: Transform + - uid: 3582 + components: + - pos: -41.5,-8.5 + parent: 1 + type: Transform + - uid: 3597 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,-4.5 + parent: 1 + type: Transform + - uid: 3602 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,0.5 + parent: 1 + type: Transform + - uid: 3603 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,3.5 + parent: 1 + type: Transform + - uid: 3607 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,1.5 + parent: 1 + type: Transform + - uid: 3609 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-0.5 + parent: 1 + type: Transform + - uid: 3610 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,-0.5 + parent: 1 + type: Transform + - uid: 3612 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,2.5 + parent: 1 + type: Transform + - uid: 3633 + components: + - pos: -45.5,-14.5 + parent: 1 + type: Transform + - uid: 3648 + components: + - pos: -37.5,-14.5 + parent: 1 + type: Transform + - uid: 3689 + components: + - pos: -16.5,21.5 + parent: 1 + type: Transform + - uid: 3693 + components: + - pos: -43.5,9.5 + parent: 1 + type: Transform + - uid: 3694 + components: + - pos: -43.5,10.5 + parent: 1 + type: Transform + - uid: 4092 + components: + - pos: -53.5,-11.5 + parent: 1 + type: Transform + - uid: 4125 + components: + - pos: -36.5,-12.5 + parent: 1 + type: Transform + - uid: 4171 + components: + - pos: -39.5,15.5 + parent: 1 + type: Transform + - uid: 4174 + components: + - pos: -39.5,26.5 + parent: 1 + type: Transform + - uid: 4175 + components: + - pos: -39.5,29.5 + parent: 1 + type: Transform + - uid: 4178 + components: + - pos: -39.5,22.5 + parent: 1 + type: Transform + - uid: 4181 + components: + - pos: -43.5,26.5 + parent: 1 + type: Transform + - uid: 4183 + components: + - pos: -42.5,22.5 + parent: 1 + type: Transform + - uid: 4185 + components: + - pos: -43.5,24.5 + parent: 1 + type: Transform + - uid: 4189 + components: + - pos: -39.5,23.5 + parent: 1 + type: Transform + - uid: 4191 + components: + - pos: -40.5,29.5 + parent: 1 + type: Transform + - uid: 4194 + components: + - pos: -42.5,29.5 + parent: 1 + type: Transform + - uid: 4198 + components: + - pos: -49.5,30.5 + parent: 1 + type: Transform + - uid: 4204 + components: + - pos: -51.5,18.5 + parent: 1 + type: Transform + - uid: 4251 + components: + - pos: -18.5,26.5 + parent: 1 + type: Transform + - uid: 4268 + components: + - pos: -18.5,25.5 + parent: 1 + type: Transform + - uid: 4272 + components: + - pos: -23.5,36.5 + parent: 1 + type: Transform + - uid: 4285 + components: + - pos: -41.5,16.5 + parent: 1 + type: Transform + - uid: 4288 + components: + - pos: -46.5,17.5 + parent: 1 + type: Transform + - uid: 4300 + components: + - pos: -46.5,20.5 + parent: 1 + type: Transform + - uid: 4302 + components: + - pos: -49.5,16.5 + parent: 1 + type: Transform + - uid: 4304 + components: + - pos: -39.5,13.5 + parent: 1 + type: Transform + - uid: 4307 + components: + - pos: -55.5,23.5 + parent: 1 + type: Transform + - uid: 4318 + components: + - pos: -51.5,21.5 + parent: 1 + type: Transform + - uid: 4322 + components: + - pos: -51.5,17.5 + parent: 1 + type: Transform + - uid: 4323 + components: + - pos: -51.5,14.5 + parent: 1 + type: Transform + - uid: 4503 + components: + - pos: -49.5,-4.5 + parent: 1 + type: Transform + - uid: 4504 + components: + - pos: -49.5,-5.5 + parent: 1 + type: Transform + - uid: 4505 + components: + - pos: -49.5,-2.5 + parent: 1 + type: Transform + - uid: 4507 + components: + - pos: -49.5,-8.5 + parent: 1 + type: Transform + - uid: 4514 + components: + - pos: -55.5,0.5 + parent: 1 + type: Transform + - uid: 4515 + components: + - pos: -54.5,-8.5 + parent: 1 + type: Transform + - uid: 4517 + components: + - pos: -52.5,0.5 + parent: 1 + type: Transform + - uid: 4520 + components: + - pos: -55.5,-2.5 + parent: 1 + type: Transform + - uid: 4528 + components: + - pos: -49.5,-0.5 + parent: 1 + type: Transform + - uid: 4530 + components: + - pos: -51.5,-8.5 + parent: 1 + type: Transform + - uid: 4531 + components: + - pos: -53.5,0.5 + parent: 1 + type: Transform + - uid: 4552 + components: + - pos: -55.5,29.5 + parent: 1 + type: Transform + - uid: 4555 + components: + - pos: -54.5,22.5 + parent: 1 + type: Transform + - uid: 4580 + components: + - pos: -46.5,30.5 + parent: 1 + type: Transform + - uid: 4582 + components: + - pos: -46.5,28.5 + parent: 1 + type: Transform + - uid: 4588 + components: + - pos: -54.5,26.5 + parent: 1 + type: Transform + - uid: 4589 + components: + - pos: -55.5,27.5 + parent: 1 + type: Transform + - uid: 4591 + components: + - pos: -55.5,17.5 + parent: 1 + type: Transform + - uid: 5008 + components: + - rot: 3.141592653589793 rad + pos: -42.5,3.5 + parent: 1 + type: Transform + - uid: 5010 + components: + - pos: -33.5,58.5 + parent: 1 + type: Transform + - uid: 5045 + components: + - pos: -34.5,58.5 + parent: 1 + type: Transform + - uid: 5167 + components: + - pos: -36.5,58.5 + parent: 1 + type: Transform + - uid: 5170 + components: + - pos: -26.5,51.5 + parent: 1 + type: Transform + - uid: 5182 + components: + - rot: -1.5707963267948966 rad + pos: -67.5,7.5 + parent: 1 + type: Transform + - uid: 5190 + components: + - pos: -19.5,52.5 + parent: 1 + type: Transform + - uid: 5208 + components: + - pos: -25.5,56.5 + parent: 1 + type: Transform + - uid: 5223 + components: + - pos: -28.5,56.5 + parent: 1 + type: Transform + - uid: 5306 + components: + - pos: -54.5,-3.5 + parent: 1 + type: Transform + - uid: 5308 + components: + - pos: -52.5,-3.5 + parent: 1 + type: Transform + - uid: 5310 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,2.5 + parent: 1 + type: Transform + - uid: 5410 + components: + - pos: -37.5,56.5 + parent: 1 + type: Transform + - uid: 5411 + components: + - pos: -24.5,-5.5 + parent: 1 + type: Transform + - uid: 5452 + components: + - pos: -38.5,56.5 + parent: 1 + type: Transform + - uid: 5495 + components: + - pos: -39.5,56.5 + parent: 1 + type: Transform + - uid: 5524 + components: + - pos: -41.5,56.5 + parent: 1 + type: Transform + - uid: 5532 + components: + - pos: -43.5,56.5 + parent: 1 + type: Transform + - uid: 5725 + components: + - pos: -43.5,48.5 + parent: 1 + type: Transform + - uid: 5755 + components: + - pos: -45.5,53.5 + parent: 1 + type: Transform + - uid: 5837 + components: + - pos: -10.5,39.5 + parent: 1 + type: Transform + - uid: 5838 + components: + - pos: -8.5,38.5 + parent: 1 + type: Transform + - uid: 5843 + components: + - pos: -10.5,44.5 + parent: 1 + type: Transform + - uid: 5845 + components: + - pos: -6.5,45.5 + parent: 1 + type: Transform + - uid: 5854 + components: + - pos: -5.5,38.5 + parent: 1 + type: Transform + - uid: 5859 + components: + - pos: -10.5,42.5 + parent: 1 + type: Transform + - uid: 5868 + components: + - pos: -4.5,38.5 + parent: 1 + type: Transform + - uid: 5872 + components: + - pos: -4.5,39.5 + parent: 1 + type: Transform + - uid: 5874 + components: + - pos: -4.5,44.5 + parent: 1 + type: Transform + - uid: 5877 + components: + - pos: -4.5,42.5 + parent: 1 + type: Transform + - uid: 5879 + components: + - pos: -8.5,45.5 + parent: 1 + type: Transform + - uid: 5955 + components: + - rot: 3.141592653589793 rad + pos: 2.5,48.5 + parent: 1 + type: Transform + - uid: 5957 + components: + - rot: 3.141592653589793 rad + pos: 1.5,51.5 + parent: 1 + type: Transform + - uid: 5958 + components: + - rot: 3.141592653589793 rad + pos: 1.5,52.5 + parent: 1 + type: Transform + - uid: 5972 + components: + - rot: 3.141592653589793 rad + pos: 4.5,48.5 + parent: 1 + type: Transform + - uid: 5979 + components: + - rot: 3.141592653589793 rad + pos: 9.5,49.5 + parent: 1 + type: Transform + - uid: 5981 + components: + - rot: 3.141592653589793 rad + pos: 13.5,46.5 + parent: 1 + type: Transform + - uid: 5984 + components: + - rot: 3.141592653589793 rad + pos: 11.5,47.5 + parent: 1 + type: Transform + - uid: 5986 + components: + - rot: 3.141592653589793 rad + pos: 10.5,47.5 + parent: 1 + type: Transform + - uid: 5987 + components: + - rot: 3.141592653589793 rad + pos: 8.5,46.5 + parent: 1 + type: Transform + - uid: 5996 + components: + - rot: 3.141592653589793 rad + pos: 5.5,52.5 + parent: 1 + type: Transform + - uid: 5998 + components: + - rot: 3.141592653589793 rad + pos: 5.5,50.5 + parent: 1 + type: Transform + - uid: 6006 + components: + - rot: 3.141592653589793 rad + pos: 1.5,49.5 + parent: 1 + type: Transform + - uid: 6008 + components: + - rot: 3.141592653589793 rad + pos: 9.5,50.5 + parent: 1 + type: Transform + - uid: 6027 + components: + - rot: 3.141592653589793 rad + pos: 8.5,45.5 + parent: 1 + type: Transform + - uid: 6066 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,44.5 + parent: 1 + type: Transform + - uid: 6364 + components: + - rot: 3.141592653589793 rad + pos: -11.5,58.5 + parent: 1 + type: Transform + - uid: 6365 + components: + - rot: 3.141592653589793 rad + pos: -12.5,58.5 + parent: 1 + type: Transform + - uid: 6372 + components: + - rot: 3.141592653589793 rad + pos: -19.5,58.5 + parent: 1 + type: Transform + - uid: 6695 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,43.5 + parent: 1 + type: Transform + - uid: 6696 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,42.5 + parent: 1 + type: Transform + - uid: 6698 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,48.5 + parent: 1 + type: Transform + - uid: 6699 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,48.5 + parent: 1 + type: Transform + - uid: 6701 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,48.5 + parent: 1 + type: Transform + - uid: 6703 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,48.5 + parent: 1 + type: Transform + - uid: 6704 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,48.5 + parent: 1 + type: Transform + - uid: 6706 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,40.5 + parent: 1 + type: Transform + - uid: 6709 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,37.5 + parent: 1 + type: Transform + - uid: 6711 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,35.5 + parent: 1 + type: Transform + - uid: 6714 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,52.5 + parent: 1 + type: Transform + - uid: 6718 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,36.5 + parent: 1 + type: Transform + - uid: 6719 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,35.5 + parent: 1 + type: Transform + - uid: 6722 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,39.5 + parent: 1 + type: Transform + - uid: 6724 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,39.5 + parent: 1 + type: Transform + - uid: 6730 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,34.5 + parent: 1 + type: Transform + - uid: 6732 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,41.5 + parent: 1 + type: Transform + - uid: 6733 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,41.5 + parent: 1 + type: Transform + - uid: 6735 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,41.5 + parent: 1 + type: Transform + - uid: 6739 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,43.5 + parent: 1 + type: Transform + - uid: 6740 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,40.5 + parent: 1 + type: Transform + - uid: 6741 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,38.5 + parent: 1 + type: Transform + - uid: 6743 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,44.5 + parent: 1 + type: Transform + - uid: 6744 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,37.5 + parent: 1 + type: Transform + - uid: 6746 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,34.5 + parent: 1 + type: Transform + - uid: 6748 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,41.5 + parent: 1 + type: Transform + - uid: 6749 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,41.5 + parent: 1 + type: Transform + - uid: 6750 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,40.5 + parent: 1 + type: Transform + - uid: 6756 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,40.5 + parent: 1 + type: Transform + - uid: 6761 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,34.5 + parent: 1 + type: Transform + - uid: 6764 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,34.5 + parent: 1 + type: Transform + - uid: 6766 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,36.5 + parent: 1 + type: Transform + - uid: 6768 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,43.5 + parent: 1 + type: Transform + - uid: 6772 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,51.5 + parent: 1 + type: Transform + - uid: 6773 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,52.5 + parent: 1 + type: Transform + - uid: 6776 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,50.5 + parent: 1 + type: Transform + - uid: 6777 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,53.5 + parent: 1 + type: Transform + - uid: 6780 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,47.5 + parent: 1 + type: Transform + - uid: 6787 + components: + - pos: -45.5,48.5 + parent: 1 + type: Transform + - uid: 6790 + components: + - pos: -45.5,45.5 + parent: 1 + type: Transform + - uid: 6797 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,48.5 + parent: 1 + type: Transform + - uid: 6800 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,49.5 + parent: 1 + type: Transform + - uid: 6802 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,50.5 + parent: 1 + type: Transform + - uid: 6825 + components: + - pos: -26.5,-12.5 + parent: 1 + type: Transform + - uid: 6850 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,56.5 + parent: 1 + type: Transform + - uid: 6852 + components: + - pos: -19.5,-15.5 + parent: 1 + type: Transform + - uid: 6853 + components: + - pos: -22.5,-14.5 + parent: 1 + type: Transform + - uid: 6854 + components: + - pos: -23.5,-14.5 + parent: 1 + type: Transform + - uid: 6855 + components: + - pos: -21.5,-15.5 + parent: 1 + type: Transform + - uid: 6856 + components: + - pos: -22.5,-11.5 + parent: 1 + type: Transform + - uid: 6857 + components: + - pos: -22.5,-13.5 + parent: 1 + type: Transform + - uid: 6900 + components: + - pos: -22.5,-12.5 + parent: 1 + type: Transform + - uid: 6961 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,48.5 + parent: 1 + type: Transform + - uid: 7027 + components: + - pos: -49.5,39.5 + parent: 1 + type: Transform + - uid: 7035 + components: + - pos: -55.5,43.5 + parent: 1 + type: Transform + - uid: 7039 + components: + - pos: -51.5,39.5 + parent: 1 + type: Transform + - uid: 7042 + components: + - pos: -54.5,38.5 + parent: 1 + type: Transform + - uid: 7044 + components: + - pos: -54.5,35.5 + parent: 1 + type: Transform + - uid: 7049 + components: + - pos: -54.5,36.5 + parent: 1 + type: Transform + - uid: 7052 + components: + - pos: -50.5,45.5 + parent: 1 + type: Transform + - uid: 7054 + components: + - pos: -52.5,42.5 + parent: 1 + type: Transform + - uid: 7055 + components: + - pos: -50.5,44.5 + parent: 1 + type: Transform + - uid: 7060 + components: + - pos: -49.5,40.5 + parent: 1 + type: Transform + - uid: 7069 + components: + - pos: -55.5,34.5 + parent: 1 + type: Transform + - uid: 7070 + components: + - pos: -49.5,34.5 + parent: 1 + type: Transform + - uid: 7087 + components: + - pos: -49.5,37.5 + parent: 1 + type: Transform + - uid: 7244 + components: + - pos: -54.5,81.5 + parent: 1 + type: Transform + - uid: 7275 + components: + - pos: -53.5,86.5 + parent: 1 + type: Transform + - uid: 7288 + components: + - pos: -55.5,91.5 + parent: 1 + type: Transform + - uid: 7566 + components: + - pos: -64.5,37.5 + parent: 1 + type: Transform + - uid: 7567 + components: + - pos: -65.5,45.5 + parent: 1 + type: Transform + - uid: 7568 + components: + - pos: -59.5,43.5 + parent: 1 + type: Transform + - uid: 7921 + components: + - pos: -50.5,-13.5 + parent: 1 + type: Transform + - uid: 7922 + components: + - pos: -50.5,-12.5 + parent: 1 + type: Transform + - uid: 8057 + components: + - pos: -26.5,58.5 + parent: 1 + type: Transform + - uid: 8058 + components: + - pos: -25.5,58.5 + parent: 1 + type: Transform + - uid: 8314 + components: + - rot: 3.141592653589793 rad + pos: -69.5,7.5 + parent: 1 + type: Transform + - uid: 9160 + components: + - pos: -68.5,53.5 + parent: 1 + type: Transform + - uid: 9164 + components: + - pos: -68.5,50.5 + parent: 1 + type: Transform + - uid: 9165 + components: + - pos: -68.5,54.5 + parent: 1 + type: Transform + - uid: 9167 + components: + - pos: -71.5,50.5 + parent: 1 + type: Transform + - uid: 9168 + components: + - pos: -69.5,50.5 + parent: 1 + type: Transform + - uid: 9175 + components: + - pos: -68.5,46.5 + parent: 1 + type: Transform + - uid: 9176 + components: + - pos: -70.5,46.5 + parent: 1 + type: Transform + - uid: 9178 + components: + - pos: -71.5,46.5 + parent: 1 + type: Transform + - uid: 9180 + components: + - pos: -73.5,46.5 + parent: 1 + type: Transform + - uid: 9183 + components: + - pos: -73.5,42.5 + parent: 1 + type: Transform + - uid: 9192 + components: + - pos: -68.5,55.5 + parent: 1 + type: Transform + - uid: 9200 + components: + - pos: -73.5,48.5 + parent: 1 + type: Transform + - uid: 9205 + components: + - pos: -59.5,46.5 + parent: 1 + type: Transform + - uid: 9208 + components: + - pos: -65.5,40.5 + parent: 1 + type: Transform + - uid: 9215 + components: + - pos: -59.5,41.5 + parent: 1 + type: Transform + - uid: 9222 + components: + - pos: -61.5,46.5 + parent: 1 + type: Transform + - uid: 9228 + components: + - pos: -63.5,46.5 + parent: 1 + type: Transform + - uid: 9229 + components: + - pos: -69.5,38.5 + parent: 1 + type: Transform + - uid: 9231 + components: + - pos: -73.5,39.5 + parent: 1 + type: Transform + - uid: 9234 + components: + - pos: -68.5,44.5 + parent: 1 + type: Transform + - uid: 9239 + components: + - pos: -73.5,40.5 + parent: 1 + type: Transform + - uid: 9242 + components: + - pos: -68.5,41.5 + parent: 1 + type: Transform + - uid: 9269 + components: + - pos: -72.5,38.5 + parent: 1 + type: Transform + - uid: 9273 + components: + - pos: -65.5,42.5 + parent: 1 + type: Transform + - uid: 9275 + components: + - pos: -60.5,37.5 + parent: 1 + type: Transform + - uid: 9293 + components: + - pos: -65.5,39.5 + parent: 1 + type: Transform + - uid: 9301 + components: + - pos: -59.5,36.5 + parent: 1 + type: Transform + - uid: 9782 + components: + - rot: 3.141592653589793 rad + pos: -1.5,48.5 + parent: 1 + type: Transform + - uid: 9897 + components: + - pos: -59.5,20.5 + parent: 1 + type: Transform + - uid: 9899 + components: + - pos: -59.5,17.5 + parent: 1 + type: Transform + - uid: 9915 + components: + - pos: -60.5,9.5 + parent: 1 + type: Transform + - uid: 9916 + components: + - pos: -61.5,9.5 + parent: 1 + type: Transform + - uid: 9925 + components: + - pos: -63.5,9.5 + parent: 1 + type: Transform + - uid: 9928 + components: + - pos: -65.5,10.5 + parent: 1 + type: Transform + - uid: 9930 + components: + - pos: -65.5,11.5 + parent: 1 + type: Transform + - uid: 9931 + components: + - pos: -65.5,15.5 + parent: 1 + type: Transform + - uid: 9932 + components: + - pos: -61.5,15.5 + parent: 1 + type: Transform + - uid: 10440 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,13.5 + parent: 1 + type: Transform + - uid: 10441 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,11.5 + parent: 1 + type: Transform + - uid: 10450 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,10.5 + parent: 1 + type: Transform + - uid: 10453 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,13.5 + parent: 1 + type: Transform + - uid: 10456 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,11.5 + parent: 1 + type: Transform + - uid: 13310 + components: + - pos: 1.5,13.5 + parent: 1 + type: Transform + - uid: 13311 + components: + - pos: 0.5,13.5 + parent: 1 + type: Transform + - uid: 13312 + components: + - pos: 3.5,13.5 + parent: 1 + type: Transform + - uid: 13313 + components: + - pos: 5.5,14.5 + parent: 1 + type: Transform + - uid: 13314 + components: + - pos: 5.5,13.5 + parent: 1 + type: Transform + - uid: 13315 + components: + - pos: 5.5,16.5 + parent: 1 + type: Transform + - uid: 13316 + components: + - pos: 5.5,11.5 + parent: 1 + type: Transform + - uid: 14971 + components: + - pos: -59.5,27.5 + parent: 1 + type: Transform + - uid: 14972 + components: + - pos: -59.5,29.5 + parent: 1 + type: Transform + - uid: 14973 + components: + - pos: -59.5,30.5 + parent: 1 + type: Transform +- proto: WallVaultRock + entities: + - uid: 167 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 1 + type: Transform + - uid: 210 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-12.5 + parent: 1 + type: Transform + - uid: 211 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-11.5 + parent: 1 + type: Transform + - uid: 494 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-11.5 + parent: 1 + type: Transform + - uid: 524 + components: + - pos: 12.5,-12.5 + parent: 1 + type: Transform + - uid: 1920 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-11.5 + parent: 1 + type: Transform + - uid: 1921 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-13.5 + parent: 1 + type: Transform + - uid: 14822 + components: + - pos: 12.5,-14.5 + parent: 1 + type: Transform + - uid: 14827 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-15.5 + parent: 1 + type: Transform + - uid: 14828 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-14.5 + parent: 1 + type: Transform + - uid: 14829 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-15.5 + parent: 1 + type: Transform +- proto: WallWood + entities: + - uid: 3476 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,7.5 + parent: 1 + type: Transform + - uid: 3496 + components: + - rot: 3.141592653589793 rad + pos: -49.5,11.5 + parent: 1 + type: Transform + - uid: 5315 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,7.5 + parent: 1 + type: Transform + - uid: 5321 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,7.5 + parent: 1 + type: Transform + - uid: 5323 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,7.5 + parent: 1 + type: Transform + - uid: 5347 + components: + - rot: 3.141592653589793 rad + pos: -48.5,12.5 + parent: 1 + type: Transform + - uid: 5348 + components: + - rot: 3.141592653589793 rad + pos: -48.5,11.5 + parent: 1 + type: Transform + - uid: 5445 + components: + - rot: 3.141592653589793 rad + pos: -53.5,9.5 + parent: 1 + type: Transform + - uid: 6154 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,7.5 + parent: 1 + type: Transform + - uid: 10443 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,9.5 + parent: 1 + type: Transform + - uid: 10446 + components: + - rot: 3.141592653589793 rad + pos: -46.5,11.5 + parent: 1 + type: Transform + - uid: 11894 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,7.5 + parent: 1 + type: Transform + - uid: 13292 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,7.5 + parent: 1 + type: Transform + - uid: 14820 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,7.5 + parent: 1 + type: Transform +- proto: WardrobeCargoFilled + entities: + - uid: 3664 + components: + - pos: -43.5,2.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 15095 + components: + - pos: -44.5,2.5 + parent: 1 + type: Transform +- proto: WardrobeGreenFilled + entities: + - uid: 14456 + components: + - pos: -72.5,8.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 14457 + components: + - pos: -69.5,8.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: WardrobeGreyFilled + entities: + - uid: 5934 + components: + - pos: -6.5,39.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5935 + components: + - pos: -5.5,39.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5936 + components: + - pos: -8.5,39.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 5937 + components: + - pos: -9.5,39.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: WardrobePrisonFilled + entities: + - uid: 1913 + components: + - pos: -50.5,51.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 1917 + components: + - pos: -53.5,51.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 1919 + components: + - pos: -56.5,51.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 7350 + components: + - pos: -55.5,90.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 7359 + components: + - pos: -55.5,84.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.3523011 + - 12.611038 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: WarningCO2 + entities: + - uid: 13931 + components: + - rot: 1.5707963267948966 rad + pos: -87.5,38.5 + parent: 1 + type: Transform +- proto: WarningN2 + entities: + - uid: 13935 + components: + - rot: 1.5707963267948966 rad + pos: -87.5,36.5 + parent: 1 + type: Transform +- proto: WarningN2O + entities: + - uid: 13932 + components: + - rot: 1.5707963267948966 rad + pos: -87.5,40.5 + parent: 1 + type: Transform +- proto: WarningO2 + entities: + - uid: 13934 + components: + - rot: 1.5707963267948966 rad + pos: -87.5,34.5 + parent: 1 + type: Transform +- proto: WarningPlasma + entities: + - uid: 13933 + components: + - rot: 1.5707963267948966 rad + pos: -87.5,42.5 + parent: 1 + type: Transform +- proto: WarningWaste + entities: + - uid: 13930 + components: + - rot: 1.5707963267948966 rad + pos: -87.5,44.5 + parent: 1 + type: Transform +- proto: WarpPoint + entities: + - uid: 13298 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,25.5 + parent: 1 + type: Transform + - location: med + type: WarpPoint + - uid: 13777 + components: + - pos: -37.5,37.5 + parent: 1 + type: Transform + - location: bar + type: WarpPoint + - uid: 13783 + components: + - pos: -32.5,26.5 + parent: 1 + type: Transform + - location: theatre + type: WarpPoint + - uid: 13784 + components: + - pos: -21.5,40.5 + parent: 1 + type: Transform + - location: HoP + type: WarpPoint + - uid: 13785 + components: + - pos: -16.5,60.5 + parent: 1 + type: Transform + - location: bridge + type: WarpPoint + - uid: 13787 + components: + - pos: 27.5,13.5 + parent: 1 + type: Transform + - location: evac + type: WarpPoint + - uid: 13788 + components: + - pos: 15.5,-0.5 + parent: 1 + type: Transform + - location: chapel + type: WarpPoint + - uid: 13789 + components: + - pos: -7.5,-1.5 + parent: 1 + type: Transform + - location: sci + type: WarpPoint + - uid: 13790 + components: + - pos: -38.5,-5.5 + parent: 1 + type: Transform + - location: cargo + type: WarpPoint + - uid: 14931 + components: + - pos: -53.5,55.5 + parent: 1 + type: Transform + - location: sec + type: WarpPoint + - uid: 14932 + components: + - pos: -70.5,26.5 + parent: 1 + type: Transform + - location: eng + type: WarpPoint +- proto: WaterCooler + entities: + - uid: 331 + components: + - pos: -2.5,-5.5 + parent: 1 + type: Transform + - uid: 3088 + components: + - pos: -22.5,13.5 + parent: 1 + type: Transform + - uid: 8024 + components: + - pos: -60.5,61.5 + parent: 1 + type: Transform +- proto: WaterTank + entities: + - uid: 10388 + components: + - pos: -0.5,45.5 + parent: 1 + type: Transform +- proto: WaterTankFull + entities: + - uid: 78 + components: + - pos: -52.5,41.5 + parent: 1 + type: Transform + - uid: 3679 + components: + - pos: -51.5,-10.5 + parent: 1 + type: Transform + - uid: 5418 + components: + - pos: -29.5,-1.5 + parent: 1 + type: Transform + - uid: 5419 + components: + - pos: -21.5,2.5 + parent: 1 + type: Transform + - uid: 5420 + components: + - pos: 16.5,-4.5 + parent: 1 + type: Transform + - uid: 5614 + components: + - pos: -49.5,15.5 + parent: 1 + type: Transform + - uid: 5712 + components: + - pos: -24.5,20.5 + parent: 1 + type: Transform + - uid: 5741 + components: + - pos: -61.5,86.5 + parent: 1 + type: Transform + - uid: 5787 + components: + - pos: -7.5,21.5 + parent: 1 + type: Transform + - uid: 10365 + components: + - pos: -35.5,54.5 + parent: 1 + type: Transform + - uid: 10476 + components: + - pos: -52.5,44.5 + parent: 1 + type: Transform + - uid: 12899 + components: + - pos: 8.5,8.5 + parent: 1 + type: Transform + - uid: 12913 + components: + - pos: 19.5,25.5 + parent: 1 + type: Transform + - uid: 14308 + components: + - pos: -74.5,48.5 + parent: 1 + type: Transform + - uid: 14589 + components: + - pos: -67.5,9.5 + parent: 1 + type: Transform +- proto: WaterTankHighCapacity + entities: + - uid: 6945 + components: + - pos: -41.5,47.5 + parent: 1 + type: Transform +- proto: WaterVaporCanister + entities: + - uid: 368 + components: + - pos: 4.5,-8.5 + parent: 1 + type: Transform +- proto: WeaponCapacitorRecharger + entities: + - uid: 3134 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,10.5 + parent: 1 + type: Transform + - uid: 7965 + components: + - pos: -60.5,50.5 + parent: 1 + type: Transform + - uid: 9156 + components: + - rot: 3.141592653589793 rad + pos: -53.5,58.5 + parent: 1 + type: Transform + - uid: 10918 + components: + - pos: -17.5,66.5 + parent: 1 + type: Transform + - uid: 13338 + components: + - pos: -1.5,10.5 + parent: 1 + type: Transform +- proto: WeaponDisabler + entities: + - uid: 7954 + components: + - pos: -48.547054,59.421623 + parent: 1 + type: Transform + - uid: 8005 + components: + - pos: -61.153942,50.71659 + parent: 1 + type: Transform + - uid: 8006 + components: + - pos: -61.200817,50.52909 + parent: 1 + type: Transform + - uid: 8007 + components: + - pos: -61.372692,50.68534 + parent: 1 + type: Transform +- proto: WeaponFlareGun + entities: + - uid: 1672 + components: + - pos: 16.491018,-8.470055 + parent: 1 + type: Transform +- proto: WeaponLaserCarbine + entities: + - uid: 8357 + components: + - pos: -43.394764,61.749336 + parent: 1 + type: Transform + - uid: 8358 + components: + - pos: -43.31664,61.63996 + parent: 1 + type: Transform +- proto: WeaponPistolMk58 + entities: + - uid: 7955 + components: + - pos: -48.53143,59.640373 + parent: 1 + type: Transform + - uid: 8373 + components: + - pos: -42.53539,61.624336 + parent: 1 + type: Transform + - uid: 8374 + components: + - pos: -42.426014,61.54621 + parent: 1 + type: Transform +- proto: WeaponRifleLecter + entities: + - uid: 8354 + components: + - pos: -41.519764,63.624336 + parent: 1 + type: Transform + - uid: 8355 + components: + - pos: -41.488514,63.38996 + parent: 1 + type: Transform + - uid: 8356 + components: + - pos: -41.488514,63.13996 + parent: 1 + type: Transform +- proto: WeaponShotgunKammerer + entities: + - uid: 8370 + components: + - pos: -41.69164,61.686836 + parent: 1 + type: Transform + - uid: 8371 + components: + - pos: -41.62914,61.561836 + parent: 1 + type: Transform +- proto: WeaponSubMachineGunWt550 + entities: + - uid: 7937 + components: + - pos: -60.450623,64.62244 + parent: 1 + type: Transform +- proto: WeaponTurretSyndicateBroken + entities: + - uid: 15844 + components: + - pos: -27.5,54.5 + parent: 1 + type: Transform +- proto: WelderIndustrialAdvanced + entities: + - uid: 15838 + components: + - pos: -82.43898,31.548532 + parent: 1 + type: Transform +- proto: WeldingFuelTankFull + entities: + - uid: 3565 + components: + - pos: -50.5,-10.5 + parent: 1 + type: Transform + - uid: 5416 + components: + - pos: -20.5,2.5 + parent: 1 + type: Transform + - uid: 5417 + components: + - pos: -29.5,-0.5 + parent: 1 + type: Transform + - uid: 5421 + components: + - pos: 17.5,-4.5 + parent: 1 + type: Transform + - uid: 5613 + components: + - pos: -48.5,15.5 + parent: 1 + type: Transform + - uid: 5615 + components: + - pos: -50.5,29.5 + parent: 1 + type: Transform + - uid: 5711 + components: + - pos: -23.5,20.5 + parent: 1 + type: Transform + - uid: 5786 + components: + - pos: -7.5,20.5 + parent: 1 + type: Transform + - uid: 10364 + components: + - pos: -36.5,54.5 + parent: 1 + type: Transform + - uid: 10387 + components: + - pos: 0.5,45.5 + parent: 1 + type: Transform + - uid: 10475 + components: + - pos: -51.5,44.5 + parent: 1 + type: Transform + - uid: 11051 + components: + - pos: -70.5,35.5 + parent: 1 + type: Transform + - uid: 12898 + components: + - pos: 7.5,8.5 + parent: 1 + type: Transform + - uid: 12912 + components: + - pos: 20.5,25.5 + parent: 1 + type: Transform + - uid: 14307 + components: + - pos: -74.5,49.5 + parent: 1 + type: Transform + - uid: 14588 + components: + - pos: -67.5,8.5 + parent: 1 + type: Transform +- proto: Windoor + entities: + - uid: 275 + components: + - rot: 3.141592653589793 rad + pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 3758 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,0.5 + parent: 1 + type: Transform + - uid: 3759 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,1.5 + parent: 1 + type: Transform + - uid: 3760 + components: + - rot: 3.141592653589793 rad + pos: -38.5,2.5 + parent: 1 + type: Transform + - uid: 3761 + components: + - rot: 3.141592653589793 rad + pos: -37.5,2.5 + parent: 1 + type: Transform + - uid: 3762 + components: + - rot: 3.141592653589793 rad + pos: -36.5,2.5 + parent: 1 + type: Transform + - uid: 3763 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,1.5 + parent: 1 + type: Transform + - uid: 3764 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,0.5 + parent: 1 + type: Transform + - uid: 6963 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,44.5 + parent: 1 + type: Transform + - uid: 6964 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,43.5 + parent: 1 + type: Transform + - uid: 6965 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,42.5 + parent: 1 + type: Transform + - uid: 13999 + components: + - pos: -69.5,43.5 + parent: 1 + type: Transform + - uid: 14360 + components: + - rot: -1.5707963267948966 rad + pos: -62.5,14.5 + parent: 1 + type: Transform + - uid: 14826 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,1.5 + parent: 1 + type: Transform +- proto: WindoorChapelLocked + entities: + - uid: 1648 + components: + - pos: 20.5,0.5 + parent: 1 + type: Transform +- proto: WindoorHydroponicsLocked + entities: + - uid: 6888 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,42.5 + parent: 1 + type: Transform + - uid: 6889 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,43.5 + parent: 1 + type: Transform + - uid: 6962 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,44.5 + parent: 1 + type: Transform +- proto: WindoorKitchenHydroponicsLocked + entities: + - uid: 6883 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,46.5 + parent: 1 + type: Transform + - uid: 6884 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,45.5 + parent: 1 + type: Transform + - uid: 6885 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,44.5 + parent: 1 + type: Transform + - uid: 6886 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,43.5 + parent: 1 + type: Transform +- proto: WindoorKitchenLocked + entities: + - uid: 6904 + components: + - rot: 3.141592653589793 rad + pos: -36.5,41.5 + parent: 1 + type: Transform + - uid: 6905 + components: + - rot: 3.141592653589793 rad + pos: -35.5,41.5 + parent: 1 + type: Transform +- proto: WindoorSecure + entities: + - uid: 1652 + components: + - rot: 3.141592653589793 rad + pos: -0.5,28.5 + parent: 1 + type: Transform + - uid: 1653 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,26.5 + parent: 1 + type: Transform + - uid: 1654 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,25.5 + parent: 1 + type: Transform + - uid: 6655 + components: + - pos: -19.5,36.5 + parent: 1 + type: Transform + - uid: 6656 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,35.5 + parent: 1 + type: Transform + - uid: 6657 + components: + - rot: 3.141592653589793 rad + pos: -22.5,34.5 + parent: 1 + type: Transform + - uid: 7877 + components: + - pos: -47.5,56.5 + parent: 1 + type: Transform + - uid: 7878 + components: + - rot: 3.141592653589793 rad + pos: -47.5,63.5 + parent: 1 + type: Transform + - uid: 13321 + components: + - pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 13322 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 13370 + components: + - rot: 1.5707963267948966 rad + pos: -72.5,54.5 + parent: 1 + type: Transform +- proto: WindoorSecureArmoryLocked + entities: + - uid: 7874 + components: + - rot: 3.141592653589793 rad + pos: -47.5,56.5 + parent: 1 + type: Transform + - uid: 7875 + components: + - pos: -47.5,63.5 + parent: 1 + type: Transform +- proto: WindoorSecureCargoLocked + entities: + - uid: 3625 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,0.5 + parent: 1 + type: Transform + - uid: 3626 + components: + - pos: -38.5,2.5 + parent: 1 + type: Transform + - uid: 3627 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,1.5 + parent: 1 + type: Transform + - uid: 3635 + components: + - pos: -37.5,2.5 + parent: 1 + type: Transform + - uid: 3636 + components: + - pos: -36.5,2.5 + parent: 1 + type: Transform + - uid: 3637 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,1.5 + parent: 1 + type: Transform + - uid: 3638 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,0.5 + parent: 1 + type: Transform + - uid: 14713 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,1.5 + parent: 1 + type: Transform +- proto: WindoorSecureChemistryLocked + entities: + - uid: 1649 + components: + - pos: -0.5,28.5 + parent: 1 + type: Transform + - uid: 1650 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,26.5 + parent: 1 + type: Transform + - uid: 1651 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,25.5 + parent: 1 + type: Transform +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 2800 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,8.5 + parent: 1 + type: Transform + - uid: 13624 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,32.5 + parent: 1 + type: Transform +- proto: WindoorSecureHeadOfPersonnelLocked + entities: + - uid: 3458 + components: + - rot: 3.141592653589793 rad + pos: -19.5,36.5 + parent: 1 + type: Transform +- proto: WindoorSecureMedicalLocked + entities: + - uid: 2342 + components: + - rot: 3.141592653589793 rad + pos: 10.5,13.5 + parent: 1 + type: Transform + - uid: 2343 + components: + - rot: 3.141592653589793 rad + pos: 8.5,13.5 + parent: 1 + type: Transform + - uid: 2344 + components: + - rot: 3.141592653589793 rad + pos: 6.5,13.5 + parent: 1 + type: Transform + - uid: 2798 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,13.5 + parent: 1 + type: Transform +- proto: WindoorSecureScienceLocked + entities: + - uid: 220 + components: + - pos: -5.5,-14.5 + parent: 1 + type: Transform + - uid: 274 + components: + - pos: -7.5,3.5 + parent: 1 + type: Transform +- proto: WindoorSecureSecurityLocked + entities: + - uid: 5570 + components: + - pos: -16.5,24.5 + parent: 1 + type: Transform + - uid: 7871 + components: + - rot: 3.141592653589793 rad + pos: -57.5,52.5 + parent: 1 + type: Transform + - links: + - 4985 + type: DeviceLinkSink + - uid: 7872 + components: + - rot: 3.141592653589793 rad + pos: -54.5,52.5 + parent: 1 + type: Transform + - links: + - 4986 + type: DeviceLinkSink + - uid: 7873 + components: + - rot: 3.141592653589793 rad + pos: -51.5,52.5 + parent: 1 + type: Transform + - links: + - 4987 + type: DeviceLinkSink + - uid: 13318 + components: + - rot: 3.141592653589793 rad + pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 13319 + components: + - rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 15975 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,9.5 + parent: 1 + type: Transform +- proto: WindoorServiceLocked + entities: + - uid: 2799 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,14.5 + parent: 1 + type: Transform +- proto: WindoorTheatreLocked + entities: + - uid: 3417 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,29.5 + parent: 1 + type: Transform +- proto: Window + entities: + - uid: 4 + components: + - pos: -8.5,3.5 + parent: 1 + type: Transform + - uid: 36 + components: + - pos: -6.5,3.5 + parent: 1 + type: Transform + - uid: 39 + components: + - pos: -7.5,-4.5 + parent: 1 + type: Transform + - uid: 57 + components: + - pos: -7.5,-5.5 + parent: 1 + type: Transform + - uid: 66 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-4.5 + parent: 1 + type: Transform + - uid: 177 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-3.5 + parent: 1 + type: Transform + - uid: 180 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-5.5 + parent: 1 + type: Transform + - uid: 227 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-1.5 + parent: 1 + type: Transform + - uid: 1051 + components: + - pos: 18.5,7.5 + parent: 1 + type: Transform + - uid: 1250 + components: + - pos: 11.5,27.5 + parent: 1 + type: Transform + - uid: 1336 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,34.5 + parent: 1 + type: Transform + - uid: 1340 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,30.5 + parent: 1 + type: Transform + - uid: 1341 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,29.5 + parent: 1 + type: Transform + - uid: 1344 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,32.5 + parent: 1 + type: Transform + - uid: 1371 + components: + - pos: 5.5,23.5 + parent: 1 + type: Transform + - uid: 1372 + components: + - pos: 5.5,22.5 + parent: 1 + type: Transform + - uid: 1437 + components: + - rot: 3.141592653589793 rad + pos: 24.5,39.5 + parent: 1 + type: Transform + - uid: 1438 + components: + - rot: 3.141592653589793 rad + pos: 24.5,40.5 + parent: 1 + type: Transform + - uid: 1625 + components: + - pos: 12.5,27.5 + parent: 1 + type: Transform + - uid: 1635 + components: + - pos: 5.5,26.5 + parent: 1 + type: Transform + - uid: 3047 + components: + - pos: -26.5,30.5 + parent: 1 + type: Transform + - uid: 3082 + components: + - pos: -27.5,7.5 + parent: 1 + type: Transform + - uid: 3083 + components: + - pos: -26.5,7.5 + parent: 1 + type: Transform + - uid: 3084 + components: + - pos: -25.5,7.5 + parent: 1 + type: Transform + - uid: 3131 + components: + - pos: -23.5,30.5 + parent: 1 + type: Transform + - uid: 3423 + components: + - pos: -35.5,15.5 + parent: 1 + type: Transform + - uid: 3425 + components: + - pos: -35.5,18.5 + parent: 1 + type: Transform + - uid: 3426 + components: + - pos: -35.5,19.5 + parent: 1 + type: Transform + - uid: 3428 + components: + - pos: -35.5,21.5 + parent: 1 + type: Transform + - uid: 3549 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-0.5 + parent: 1 + type: Transform + - uid: 3568 + components: + - pos: -38.5,-8.5 + parent: 1 + type: Transform + - uid: 3576 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-4.5 + parent: 1 + type: Transform + - uid: 3586 + components: + - pos: -42.5,-4.5 + parent: 1 + type: Transform + - uid: 3591 + components: + - pos: -42.5,-3.5 + parent: 1 + type: Transform + - uid: 3592 + components: + - pos: -42.5,-1.5 + parent: 1 + type: Transform + - uid: 3608 + components: + - pos: -44.5,3.5 + parent: 1 + type: Transform + - uid: 3640 + components: + - pos: -38.5,-0.5 + parent: 1 + type: Transform + - uid: 3641 + components: + - pos: -36.5,-0.5 + parent: 1 + type: Transform + - uid: 3710 + components: + - pos: -37.5,-8.5 + parent: 1 + type: Transform + - uid: 3774 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-4.5 + parent: 1 + type: Transform + - uid: 5253 + components: + - pos: -55.5,18.5 + parent: 1 + type: Transform + - uid: 5254 + components: + - pos: -55.5,19.5 + parent: 1 + type: Transform + - uid: 5851 + components: + - pos: -14.5,44.5 + parent: 1 + type: Transform + - uid: 5852 + components: + - pos: -14.5,43.5 + parent: 1 + type: Transform + - uid: 5856 + components: + - pos: -14.5,39.5 + parent: 1 + type: Transform + - uid: 5857 + components: + - pos: -14.5,38.5 + parent: 1 + type: Transform + - uid: 5860 + components: + - pos: -14.5,35.5 + parent: 1 + type: Transform + - uid: 6272 + components: + - pos: -59.5,10.5 + parent: 1 + type: Transform + - uid: 6753 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,34.5 + parent: 1 + type: Transform + - uid: 6754 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,34.5 + parent: 1 + type: Transform + - uid: 6755 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,34.5 + parent: 1 + type: Transform + - uid: 6784 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,48.5 + parent: 1 + type: Transform + - uid: 6794 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,41.5 + parent: 1 + type: Transform + - uid: 6808 + components: + - pos: -40.5,53.5 + parent: 1 + type: Transform + - uid: 6820 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,48.5 + parent: 1 + type: Transform + - uid: 6949 + components: + - pos: -41.5,53.5 + parent: 1 + type: Transform + - uid: 9008 + components: + - rot: 3.141592653589793 rad + pos: 24.5,38.5 + parent: 1 + type: Transform + - uid: 9009 + components: + - rot: 3.141592653589793 rad + pos: 24.5,41.5 + parent: 1 + type: Transform + - uid: 9018 + components: + - pos: -59.5,11.5 + parent: 1 + type: Transform + - uid: 10249 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-4.5 + parent: 1 + type: Transform + - uid: 10251 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-4.5 + parent: 1 + type: Transform + - uid: 10924 + components: + - pos: -64.5,43.5 + parent: 1 + type: Transform + - uid: 10925 + components: + - pos: -63.5,43.5 + parent: 1 + type: Transform + - uid: 10929 + components: + - pos: -61.5,43.5 + parent: 1 + type: Transform + - uid: 11934 + components: + - pos: -59.5,13.5 + parent: 1 + type: Transform + - uid: 13054 + components: + - pos: -59.5,14.5 + parent: 1 + type: Transform +- proto: WindowDirectional + entities: + - uid: 1229 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,25.5 + parent: 1 + type: Transform + - uid: 1632 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,26.5 + parent: 1 + type: Transform + - uid: 1647 + components: + - pos: 19.5,0.5 + parent: 1 + type: Transform + - uid: 2695 + components: + - rot: 3.141592653589793 rad + pos: -25.5,30.5 + parent: 1 + type: Transform + - uid: 3133 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,15.5 + parent: 1 + type: Transform +- proto: WindowFrostedDirectional + entities: + - uid: 1225 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,30.5 + parent: 1 + type: Transform + - uid: 1410 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,31.5 + parent: 1 + type: Transform + - uid: 1411 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,30.5 + parent: 1 + type: Transform + - uid: 1412 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,31.5 + parent: 1 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 1023 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,3.5 + parent: 1 + type: Transform + - uid: 1024 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,2.5 + parent: 1 + type: Transform + - uid: 1025 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,1.5 + parent: 1 + type: Transform + - uid: 2309 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,57.5 + parent: 1 + type: Transform + - uid: 2310 + components: + - pos: -23.5,57.5 + parent: 1 + type: Transform + - uid: 2333 + components: + - rot: 3.141592653589793 rad + pos: 7.5,13.5 + parent: 1 + type: Transform + - uid: 2334 + components: + - rot: 3.141592653589793 rad + pos: 9.5,13.5 + parent: 1 + type: Transform + - uid: 2335 + components: + - rot: 3.141592653589793 rad + pos: 11.5,13.5 + parent: 1 + type: Transform + - uid: 2336 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,13.5 + parent: 1 + type: Transform + - uid: 2337 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,12.5 + parent: 1 + type: Transform + - uid: 2338 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,11.5 + parent: 1 + type: Transform + - uid: 2339 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,13.5 + parent: 1 + type: Transform + - uid: 2340 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,12.5 + parent: 1 + type: Transform + - uid: 2341 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,11.5 + parent: 1 + type: Transform + - uid: 2786 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,8.5 + parent: 1 + type: Transform + - uid: 2790 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,55.5 + parent: 1 + type: Transform + - uid: 2801 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,9.5 + parent: 1 + type: Transform + - uid: 2884 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,10.5 + parent: 1 + type: Transform + - uid: 4201 + components: + - rot: 3.141592653589793 rad + pos: -14.5,14.5 + parent: 1 + type: Transform + - uid: 4561 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,14.5 + parent: 1 + type: Transform + - uid: 4729 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,12.5 + parent: 1 + type: Transform + - uid: 5569 + components: + - pos: -17.5,24.5 + parent: 1 + type: Transform + - uid: 5684 + components: + - pos: -15.5,24.5 + parent: 1 + type: Transform + - uid: 6658 + components: + - rot: 3.141592653589793 rad + pos: -21.5,34.5 + parent: 1 + type: Transform + - uid: 6659 + components: + - rot: 3.141592653589793 rad + pos: -20.5,34.5 + parent: 1 + type: Transform + - uid: 6660 + components: + - rot: 3.141592653589793 rad + pos: -19.5,34.5 + parent: 1 + type: Transform + - uid: 13368 + components: + - rot: 1.5707963267948966 rad + pos: -72.5,56.5 + parent: 1 + type: Transform + - uid: 13369 + components: + - rot: 1.5707963267948966 rad + pos: -72.5,55.5 + parent: 1 + type: Transform + - uid: 13371 + components: + - rot: 1.5707963267948966 rad + pos: -72.5,53.5 + parent: 1 + type: Transform + - uid: 13372 + components: + - pos: -73.5,53.5 + parent: 1 + type: Transform + - uid: 13373 + components: + - pos: -72.5,53.5 + parent: 1 + type: Transform + - uid: 13625 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,33.5 + parent: 1 + type: Transform + - uid: 13626 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,31.5 + parent: 1 + type: Transform + - uid: 15126 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,34.5 + parent: 1 + type: Transform + - uid: 15127 + components: + - pos: -21.5,34.5 + parent: 1 + type: Transform + - uid: 15128 + components: + - pos: -20.5,34.5 + parent: 1 + type: Transform + - uid: 15129 + components: + - pos: -19.5,34.5 + parent: 1 + type: Transform + - uid: 15130 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,34.5 + parent: 1 + type: Transform + - uid: 15839 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,54.5 + parent: 1 + type: Transform + - uid: 15909 + components: + - pos: -25.5,54.5 + parent: 1 + type: Transform +- proto: Wrench + entities: + - uid: 376 + components: + - pos: 2.4658198,-11.416069 + parent: 1 + type: Transform + - uid: 2378 + components: + - pos: 8.571079,33.55169 + parent: 1 + type: Transform + - uid: 5648 + components: + - pos: -24.486898,29.543127 + parent: 1 + type: Transform +- proto: YellowOxygenTank + entities: + - uid: 14198 + components: + - pos: -77.3013,42.445312 + parent: 1 + type: Transform +... diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml index b453a43c99d..a2a9b75a138 100644 --- a/Resources/Maps/box.yml +++ b/Resources/Maps/box.yml @@ -3,45 +3,45 @@ meta: postmapinit: false tilemap: 0: Space - 4: FloorAsteroidCoarseSand0 - 5: FloorAsteroidCoarseSandDug - 15: FloorBar - 17: FloorBlue - 18: FloorBlueCircuit - 21: FloorCarpetClown - 22: FloorCarpetOffice - 25: FloorClown - 26: FloorDark - 30: FloorDarkMini - 35: FloorDarkPlastic - 38: FloorEighties - 41: FloorFreezer - 42: FloorGlass - 44: FloorGrass - 46: FloorGrassJungle - 52: FloorHydro - 53: FloorKitchen - 54: FloorLaundry - 55: FloorLino - 57: FloorMetalDiamond - 58: FloorMime - 64: FloorReinforced - 65: FloorReinforcedHardened - 66: FloorRockVault - 67: FloorShowroom - 69: FloorShuttleOrange - 75: FloorSteel - 77: FloorSteelCheckerLight - 80: FloorSteelDirty - 87: FloorTechMaint - 88: FloorTechMaint2 - 89: FloorTechMaint3 - 91: FloorWhite - 100: FloorWhitePlastic - 101: FloorWood - 102: FloorWoodTile - 103: Lattice - 104: Plating + 6: FloorAsteroidSand + 7: FloorAsteroidSandDug + 11: FloorBar + 13: FloorBlue + 14: FloorBlueCircuit + 17: FloorCarpetClown + 18: FloorCarpetOffice + 21: FloorClown + 22: FloorDark + 26: FloorDarkMini + 31: FloorDarkPlastic + 34: FloorEighties + 37: FloorFreezer + 38: FloorGlass + 40: FloorGrass + 42: FloorGrassJungle + 48: FloorHydro + 49: FloorKitchen + 50: FloorLaundry + 51: FloorLino + 53: FloorMetalDiamond + 54: FloorMime + 60: FloorReinforced + 61: FloorReinforcedHardened + 62: FloorRockVault + 63: FloorShowroom + 65: FloorShuttleOrange + 71: FloorSteel + 73: FloorSteelCheckerLight + 76: FloorSteelDirty + 83: FloorTechMaint + 84: FloorTechMaint2 + 85: FloorTechMaint3 + 87: FloorWhite + 96: FloorWhitePlastic + 97: FloorWood + 98: FloorWoodTile + 99: Lattice + 100: Plating entities: - proto: "" entities: @@ -71,307 +71,307 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: SwAAAWgAAAAaAAABGgAAARoAAAAaAAABGgAAAhoAAAAaAAABGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAAGgAAARoAAAIaAAAAHgAAABoAAAMaAAAAGgAAARoAAAFoAAAAGgAAAhoAAAISAAAAEgAAABIAAABLAAABaAAAABoAAAMaAAACGgAAAxoAAAAaAAAAGgAAAxoAAAEaAAADaAAAABoAAAMaAAAAEgAAAEsAAAISAAAASwAAA2gAAAAaAAADGgAAARoAAAMaAAADGgAAARoAAAIaAAADGgAAAmgAAAAaAAADEgAAABIAAAAaAAADGgAAAUsAAANoAAAAGgAAABoAAAIaAAABGgAAABoAAAIaAAABGgAAABoAAAJoAAAAGgAAAhIAAAASAAAAGgAAAhoAAANLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAFoAAAAaAAAAGgAAAAaAAADEgAAABIAAAAaAAAASwAAAUsAAANLAAABSwAAAGgAAABLAAABaAAAABoAAAIaAAABGgAAABoAAANoAAAAaAAAAGgAAABoAAAAGgAAAksAAABLAAADSwAAAksAAAJLAAAASwAAAEsAAAAaAAABGgAAAxoAAAMaAAADGgAAARoAAAIaAAACGgAAAhoAAABLAAAASwAAAUsAAANLAAAAaAAAAEsAAANoAAAAGgAAABoAAAAaAAADGgAAAxoAAAIaAAADGgAAAxoAAAEaAAABSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAMaAAAAGgAAABoAAAAaAAADGgAAAhoAAAAaAAAAGgAAAksAAANoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAaAAADGgAAAxoAAAIaAAAAGgAAAxoAAABLAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAGgAAABoAAAEaAAABGgAAARoAAAAaAAABSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAADSwAAAksAAANLAAACSwAAA0sAAAJLAAAASwAAAUsAAAJLAAAASwAAAUsAAAJLAAADSwAAA0sAAANLAAACSwAAAEsAAANLAAABSwAAA0sAAANLAAACSwAAA0sAAAJLAAABSwAAA0sAAAFLAAABSwAAAUsAAAJLAAABSwAAAUsAAABLAAACSwAAAEsAAAJLAAADSwAAAUsAAAJLAAACSwAAAksAAABLAAAASwAAA0sAAABLAAAASwAAAg== + tiles: RwAAAWQAAAAWAAABFgAAARYAAAAWAAABFgAAAhYAAAAWAAABFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABkAAAAFgAAARYAAAIWAAAAGgAAABYAAAMWAAAAFgAAARYAAAFkAAAAFgAAAhYAAAIOAAAADgAAAA4AAABHAAABZAAAABYAAAMWAAACFgAAAxYAAAAWAAAAFgAAAxYAAAEWAAADZAAAABYAAAMWAAAADgAAAEcAAAIOAAAARwAAA2QAAAAWAAADFgAAARYAAAMWAAADFgAAARYAAAIWAAADFgAAAmQAAAAWAAADDgAAAA4AAAAWAAADFgAAAUcAAANkAAAAFgAAABYAAAIWAAABFgAAABYAAAIWAAABFgAAABYAAAJkAAAAFgAAAg4AAAAOAAAAFgAAAhYAAANHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAFkAAAAZAAAAGQAAAAWAAADDgAAAA4AAAAWAAAARwAAAUcAAANHAAABRwAAAGQAAABHAAABZAAAABYAAAIWAAABFgAAABYAAANkAAAAZAAAAGQAAABkAAAAFgAAAkcAAABHAAADRwAAAkcAAAJHAAAARwAAAEcAAAAWAAABFgAAAxYAAAMWAAADFgAAARYAAAIWAAACFgAAAhYAAABHAAAARwAAAUcAAANHAAAAZAAAAEcAAANkAAAAFgAAABYAAAAWAAADFgAAAxYAAAIWAAADFgAAAxYAAAEWAAABRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAMWAAAAFgAAABYAAAAWAAADFgAAAhYAAAAWAAAAFgAAAkcAAANkAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAWAAADFgAAAxYAAAIWAAAAFgAAAxYAAABHAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAFgAAABYAAAEWAAABFgAAARYAAAAWAAABRwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAADRwAAAkcAAANHAAACRwAAA0cAAAJHAAAARwAAAUcAAAJHAAAARwAAAUcAAAJHAAADRwAAA0cAAANHAAACRwAAAEcAAANHAAABRwAAA0cAAANHAAACRwAAA0cAAAJHAAABRwAAA0cAAAFHAAABRwAAAUcAAAJHAAABRwAAAUcAAABHAAACRwAAAEcAAAJHAAADRwAAAUcAAAJHAAACRwAAAkcAAABHAAAARwAAA0cAAABHAAAARwAAAg== 0,0: ind: 0,0 - tiles: SwAAAksAAAFLAAABaAAAAGgAAABoAAAAaAAAABoAAABLAAAASwAAA2gAAABoAAAAKQAAAGgAAABoAAAAaAAAAEsAAABLAAACSwAAAGgAAAAAAAAAAAAAAGgAAAAaAAADSwAAA0sAAAJoAAAAQwAAAEMAAABDAAAAQwAAAEMAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAADaAAAAEMAAABDAAAAaAAAABEAAABoAAAASwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAmgAAABDAAAAQwAAAGgAAAARAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAFoAAAAQwAAAEMAAABoAAAAaAAAAGgAAABLAAAAaAAAAGgAAABoAAAAZQAAAGUAAAJlAAACZQAAAksAAABLAAACaAAAAEMAAABDAAAAQwAAAEMAAABDAAAASwAAAWgAAABoAAAAaAAAAGUAAANlAAABZQAAA2gAAABLAAADSwAAAGgAAABDAAAAQwAAAEMAAABDAAAAaAAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAANoAAAAaAAAACkAAABoAAAAaAAAAGgAAABLAAABaAAAAGgAAABoAAAAZQAAAWUAAANlAAAAZQAAAUsAAAJLAAAASwAAA0sAAAJLAAACSwAAAUsAAAFoAAAASwAAAWgAAABoAAAAaAAAAGUAAABlAAACZQAAAmgAAABLAAAASwAAAUsAAAFLAAAASwAAAksAAAJLAAACSwAAA0sAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAABLAAABSwAAA0sAAABLAAAASwAAAUsAAAJLAAAAaAAAAGgAAABoAAAAZQAAAWUAAABlAAACZQAAAksAAANLAAAASwAAAEsAAANLAAACSwAAAUsAAAJLAAADSwAAA2gAAABoAAAAaAAAAGUAAAJlAAADZQAAAWgAAABLAAABSwAAAEsAAABLAAADSwAAA0sAAANLAAACSwAAAksAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAFoAAAAaAAAAGUAAABoAAAAaAAAAGgAAABLAAADaAAAAGgAAABoAAAAFgAAABYAAAAWAAAAFgAAAEsAAAJLAAABaAAAAGUAAAFlAAACZQAAAGgAAAAVAAAASwAAAWgAAABoAAAAaAAAABYAAAAWAAAAFgAAAGgAAABLAAAASwAAAmgAAABlAAAAZQAAAGUAAANoAAAAFQAAAA== + tiles: RwAAAkcAAAFHAAABZAAAAGQAAABkAAAAZAAAABYAAABHAAAARwAAA2QAAABkAAAAJQAAAGQAAABkAAAAZAAAAEcAAABHAAACRwAAAGQAAAAAAAAAAAAAAGQAAAAWAAADRwAAA0cAAAJkAAAAPwAAAD8AAAA/AAAAPwAAAD8AAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAADZAAAAD8AAAA/AAAAZAAAAA0AAABkAAAARwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAAmQAAAA/AAAAPwAAAGQAAAANAAAAZAAAAEcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAAFkAAAAPwAAAD8AAABkAAAAZAAAAGQAAABHAAAAZAAAAGQAAABkAAAAYQAAAGEAAAJhAAACYQAAAkcAAABHAAACZAAAAD8AAAA/AAAAPwAAAD8AAAA/AAAARwAAAWQAAABkAAAAZAAAAGEAAANhAAABYQAAA2QAAABHAAADRwAAAGQAAAA/AAAAPwAAAD8AAAA/AAAAZAAAAEcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAANkAAAAZAAAACUAAABkAAAAZAAAAGQAAABHAAABZAAAAGQAAABkAAAAYQAAAWEAAANhAAAAYQAAAUcAAAJHAAAARwAAA0cAAAJHAAACRwAAAUcAAAFkAAAARwAAAWQAAABkAAAAZAAAAGEAAABhAAACYQAAAmQAAABHAAAARwAAAUcAAAFHAAAARwAAAkcAAAJHAAACRwAAA0cAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAABHAAABRwAAA0cAAABHAAAARwAAAUcAAAJHAAAAZAAAAGQAAABkAAAAYQAAAWEAAABhAAACYQAAAkcAAANHAAAARwAAAEcAAANHAAACRwAAAUcAAAJHAAADRwAAA2QAAABkAAAAZAAAAGEAAAJhAAADYQAAAWQAAABHAAABRwAAAEcAAABHAAADRwAAA0cAAANHAAACRwAAAkcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAAFkAAAAZAAAAGEAAABkAAAAZAAAAGQAAABHAAADZAAAAGQAAABkAAAAEgAAABIAAAASAAAAEgAAAEcAAAJHAAABZAAAAGEAAAFhAAACYQAAAGQAAAARAAAARwAAAWQAAABkAAAAZAAAABIAAAASAAAAEgAAAGQAAABHAAAARwAAAmQAAABhAAAAYQAAAGEAAANkAAAAEQAAAA== 0,-1: ind: 0,-1 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABlAAACZQAAA2UAAABlAAAAZQAAAmUAAAJlAAACGgAAAWgAAABLAAAASwAAARIAAAASAAAAGgAAAhoAAANoAAAAZQAAA2UAAAFlAAACZQAAAWUAAAFlAAADZQAAARoAAAJoAAAASwAAAEsAAANLAAACEgAAABoAAAAaAAAAaAAAAGUAAAFlAAACZQAAA2UAAAFlAAAAZQAAAGUAAAEaAAAAaAAAAEsAAABLAAAAGgAAARIAAAASAAAAGgAAAWgAAABlAAADZQAAAWUAAAJlAAABZQAAAmUAAABlAAADGgAAAWgAAABLAAADSwAAAxoAAAASAAAAEgAAABoAAAFoAAAAGgAAAxoAAAIaAAAAGgAAAhoAAAMaAAABGgAAABoAAAJoAAAASwAAAUsAAAMSAAAAEgAAABoAAABoAAAAaAAAAGgAAAAaAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAAAaAAAAGgAAABoAAAAaAAAABoAAAEaAAAAGgAAAxoAAABoAAAASwAAAGgAAABLAAADSwAAAUsAAABLAAAASwAAABoAAAAaAAAAGgAAAxoAAAIaAAABGgAAARoAAAAaAAAASwAAAksAAAJLAAABSwAAAEsAAANLAAACSwAAAksAAAEaAAACGgAAAhoAAAMaAAACGgAAABoAAAAaAAAAGgAAAGgAAABLAAABaAAAAEsAAABLAAABSwAAA0sAAAJLAAACGgAAAxoAAAIaAAABGgAAARoAAAEaAAADGgAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAARoAAAMaAAADGgAAARoAAAIaAAADaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAksAAAEaAAAAGgAAARoAAAMaAAACGgAAAmgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAANLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAA0sAAAJLAAABSwAAAksAAANLAAAASwAAAEsAAANLAAACSwAAAEsAAABLAAACSwAAAUsAAAFLAAACSwAAAUsAAABLAAACSwAAAEsAAANLAAAASwAAAUsAAABLAAADSwAAA0sAAAJLAAAASwAAAksAAABLAAADSwAAAksAAAJLAAAASwAAAksAAABLAAAASwAAA0sAAAFLAAACSwAAAksAAANLAAACSwAAA0sAAABLAAABSwAAA0sAAABLAAAASwAAAg== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABhAAACYQAAA2EAAABhAAAAYQAAAmEAAAJhAAACFgAAAWQAAABHAAAARwAAAQ4AAAAOAAAAFgAAAhYAAANkAAAAYQAAA2EAAAFhAAACYQAAAWEAAAFhAAADYQAAARYAAAJkAAAARwAAAEcAAANHAAACDgAAABYAAAAWAAAAZAAAAGEAAAFhAAACYQAAA2EAAAFhAAAAYQAAAGEAAAEWAAAAZAAAAEcAAABHAAAAFgAAAQ4AAAAOAAAAFgAAAWQAAABhAAADYQAAAWEAAAJhAAABYQAAAmEAAABhAAADFgAAAWQAAABHAAADRwAAAxYAAAAOAAAADgAAABYAAAFkAAAAFgAAAxYAAAIWAAAAFgAAAhYAAAMWAAABFgAAABYAAAJkAAAARwAAAUcAAAMOAAAADgAAABYAAABkAAAAZAAAAGQAAAAWAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAAAZAAAAGQAAABkAAAAZAAAABYAAAEWAAAAFgAAAxYAAABkAAAARwAAAGQAAABHAAADRwAAAUcAAABHAAAARwAAABYAAAAWAAAAFgAAAxYAAAIWAAABFgAAARYAAAAWAAAARwAAAkcAAAJHAAABRwAAAEcAAANHAAACRwAAAkcAAAEWAAACFgAAAhYAAAMWAAACFgAAABYAAAAWAAAAFgAAAGQAAABHAAABZAAAAEcAAABHAAABRwAAA0cAAAJHAAACFgAAAxYAAAIWAAABFgAAARYAAAEWAAADFgAAABYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAARYAAAMWAAADFgAAARYAAAIWAAADZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAAkcAAAEWAAAAFgAAARYAAAMWAAACFgAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAANHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAA0cAAAJHAAABRwAAAkcAAANHAAAARwAAAEcAAANHAAACRwAAAEcAAABHAAACRwAAAUcAAAFHAAACRwAAAUcAAABHAAACRwAAAEcAAANHAAAARwAAAUcAAABHAAADRwAAA0cAAAJHAAAARwAAAkcAAABHAAADRwAAAkcAAAJHAAAARwAAAkcAAABHAAAARwAAA0cAAAFHAAACRwAAAkcAAANHAAACRwAAA0cAAABHAAABRwAAA0cAAABHAAAARwAAAg== -1,0: ind: -1,0 - tiles: aAAAAGgAAABoAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAJLAAABSwAAAWgAAAAaAAABGgAAA0sAAAJLAAADSwAAARoAAAAaAAACaAAAAAAAAAAAAAAAaAAAAEsAAAJLAAADSwAAA0sAAAFoAAAAGgAAA2gAAABLAAAASwAAA0sAAAFoAAAAGgAAA2gAAABoAAAAaAAAAGgAAAAaAAADaAAAAEsAAABLAAACaAAAABoAAAJoAAAASwAAA0sAAAFLAAACaAAAABoAAABoAAAASwAAAksAAANoAAAAGgAAA2gAAABLAAACSwAAAGgAAAAaAAABGgAAAksAAAJLAAADSwAAAhoAAAMaAAAAaAAAAEsAAANLAAACaAAAABoAAABoAAAASwAAAksAAANoAAAAaAAAAGgAAABoAAAAGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAGgAAAmgAAAAaAAAAaAAAAEsAAABLAAABaAAAABoAAANLAAADSwAAA0sAAANLAAADSwAAABoAAAFoAAAASwAAAEsAAAFLAAACSwAAAmgAAABLAAABSwAAAmgAAAAaAAAASwAAAEsAAANLAAABSwAAA0sAAAMaAAAAaAAAAEsAAAFLAAADSwAAAksAAAFoAAAASwAAAEsAAAFoAAAASwAAAksAAAFLAAACSwAAA0sAAANLAAADSwAAA0sAAANLAAACSwAAA0sAAAJLAAADaAAAAEsAAABLAAABaAAAABoAAAMaAAAAGgAAAxoAAAAaAAAAGgAAABoAAAJoAAAASwAAAUsAAAFLAAAASwAAAWgAAABLAAADSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAABVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAFcAAABoAAAAaAAAAGUAAABlAAABZQAAA2gAAABoAAAAWAAAADcAAAA3AAAANwAAADcAAABoAAAASwAAA0sAAABoAAAAWAAAAGgAAABlAAADZQAAAGUAAAFoAAAAaAAAAGgAAAA3AAAANwAAADcAAAA3AAAAaAAAAEsAAAFLAAABaAAAAGUAAAJlAAAAZQAAAWUAAAFlAAAAaAAAAGUAAABlAAADNwAAADcAAAA3AAAANwAAAGgAAABLAAADSwAAAg== + tiles: ZAAAAGQAAABkAAAAZAAAAEcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAAJHAAABRwAAAWQAAAAWAAABFgAAA0cAAAJHAAADRwAAARYAAAAWAAACZAAAAAAAAAAAAAAAZAAAAEcAAAJHAAADRwAAA0cAAAFkAAAAFgAAA2QAAABHAAAARwAAA0cAAAFkAAAAFgAAA2QAAABkAAAAZAAAAGQAAAAWAAADZAAAAEcAAABHAAACZAAAABYAAAJkAAAARwAAA0cAAAFHAAACZAAAABYAAABkAAAARwAAAkcAAANkAAAAFgAAA2QAAABHAAACRwAAAGQAAAAWAAABFgAAAkcAAAJHAAADRwAAAhYAAAMWAAAAZAAAAEcAAANHAAACZAAAABYAAABkAAAARwAAAkcAAANkAAAAZAAAAGQAAABkAAAAFgAAAWQAAABkAAAAZAAAAGQAAABkAAAAFgAAAmQAAAAWAAAAZAAAAEcAAABHAAABZAAAABYAAANHAAADRwAAA0cAAANHAAADRwAAABYAAAFkAAAARwAAAEcAAAFHAAACRwAAAmQAAABHAAABRwAAAmQAAAAWAAAARwAAAEcAAANHAAABRwAAA0cAAAMWAAAAZAAAAEcAAAFHAAADRwAAAkcAAAFkAAAARwAAAEcAAAFkAAAARwAAAkcAAAFHAAACRwAAA0cAAANHAAADRwAAA0cAAANHAAACRwAAA0cAAAJHAAADZAAAAEcAAABHAAABZAAAABYAAAMWAAAAFgAAAxYAAAAWAAAAFgAAABYAAAJkAAAARwAAAUcAAAFHAAAARwAAAWQAAABHAAADRwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAABUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAFMAAABkAAAAZAAAAGEAAABhAAABYQAAA2QAAABkAAAAVAAAADMAAAAzAAAAMwAAADMAAABkAAAARwAAA0cAAABkAAAAVAAAAGQAAABhAAADYQAAAGEAAAFkAAAAZAAAAGQAAAAzAAAAMwAAADMAAAAzAAAAZAAAAEcAAAFHAAABZAAAAGEAAAJhAAAAYQAAAWEAAAFhAAAAZAAAAGEAAABhAAADMwAAADMAAAAzAAAAMwAAAGQAAABHAAADRwAAAg== 1,-1: ind: 1,-1 - tiles: SwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAVsAAABbAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAACSwAAAEsAAANLAAAASwAAAEsAAAFLAAABSwAAAEsAAABLAAADSwAAAEsAAABLAAAASwAAAUsAAAJLAAABSwAAA0sAAAFLAAAASwAAAUsAAANLAAADSwAAA0sAAAFLAAADSwAAAUsAAAJLAAADSwAAAUsAAABLAAAASwAAAEsAAAJLAAABSwAAAksAAANLAAADSwAAAksAAABLAAADSwAAAksAAAJLAAAASwAAA0sAAABLAAAASwAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAABoAAABoAAAAGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAAaAAAAGUAAABlAAADZQAAA2UAAANlAAACZQAAAWUAAABlAAADZQAAAWUAAABlAAAAZQAAAmUAAAFlAAAASwAAAWgAAABlAAAAZQAAAWUAAAFlAAAAZQAAAWUAAAFlAAADZQAAAWUAAAJlAAADZQAAAGUAAAFlAAACZQAAAksAAABoAAAAZQAAAWUAAAJlAAADZQAAAGUAAAJlAAADZQAAA2UAAABlAAADZQAAAWgAAABoAAAAGgAAAGgAAABLAAAAaAAAAGUAAANlAAAAZQAAA2UAAAJlAAAAZQAAAWUAAAFlAAADZQAAAmUAAANoAAAAGgAAARoAAAEaAAABSwAAAmgAAABlAAABZQAAAGUAAAJlAAACZQAAAiwAAAAsAAAAZQAAAGUAAANlAAAAaAAAABoAAAEaAAADGgAAAEsAAAJoAAAAZQAAAWUAAANlAAABZQAAAWUAAAEsAAAALAAAAGUAAANlAAADZQAAA2gAAAAaAAABGgAAARoAAANLAAACaAAAAGUAAABlAAADZQAAA2UAAANlAAADZQAAAWUAAAFlAAAAZQAAAmUAAABoAAAAGgAAARoAAAEaAAACSwAAA2gAAABlAAAAZQAAAmUAAABlAAADZQAAA2UAAAFlAAADZQAAA2UAAAJoAAAAaAAAABoAAAEaAAADGgAAAksAAABoAAAAZQAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAAGUAAABlAAAAZQAAAWgAAABoAAAAZQAAAWgAAABLAAABaAAAAGUAAAE3AAAANwAAADcAAAA3AAAANwAAADcAAABlAAABZQAAAWUAAAJlAAABZQAAAWUAAAFlAAADSwAAAmgAAABlAAADNwAAADcAAAA3AAAANwAAADcAAAA3AAAAZQAAAWUAAAJlAAABZQAAA2UAAAFlAAAAZQAAAw== + tiles: RwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAVcAAABXAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAACRwAAAEcAAANHAAAARwAAAEcAAAFHAAABRwAAAEcAAABHAAADRwAAAEcAAABHAAAARwAAAUcAAAJHAAABRwAAA0cAAAFHAAAARwAAAUcAAANHAAADRwAAA0cAAAFHAAADRwAAAUcAAAJHAAADRwAAAUcAAABHAAAARwAAAEcAAAJHAAABRwAAAkcAAANHAAADRwAAAkcAAABHAAADRwAAAkcAAAJHAAAARwAAA0cAAABHAAAARwAAAEcAAANkAAAAZAAAAGQAAABkAAAAZAAAABYAAABkAAAAFgAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAAZAAAAGEAAABhAAADYQAAA2EAAANhAAACYQAAAWEAAABhAAADYQAAAWEAAABhAAAAYQAAAmEAAAFhAAAARwAAAWQAAABhAAAAYQAAAWEAAAFhAAAAYQAAAWEAAAFhAAADYQAAAWEAAAJhAAADYQAAAGEAAAFhAAACYQAAAkcAAABkAAAAYQAAAWEAAAJhAAADYQAAAGEAAAJhAAADYQAAA2EAAABhAAADYQAAAWQAAABkAAAAFgAAAGQAAABHAAAAZAAAAGEAAANhAAAAYQAAA2EAAAJhAAAAYQAAAWEAAAFhAAADYQAAAmEAAANkAAAAFgAAARYAAAEWAAABRwAAAmQAAABhAAABYQAAAGEAAAJhAAACYQAAAigAAAAoAAAAYQAAAGEAAANhAAAAZAAAABYAAAEWAAADFgAAAEcAAAJkAAAAYQAAAWEAAANhAAABYQAAAWEAAAEoAAAAKAAAAGEAAANhAAADYQAAA2QAAAAWAAABFgAAARYAAANHAAACZAAAAGEAAABhAAADYQAAA2EAAANhAAADYQAAAWEAAAFhAAAAYQAAAmEAAABkAAAAFgAAARYAAAEWAAACRwAAA2QAAABhAAAAYQAAAmEAAABhAAADYQAAA2EAAAFhAAADYQAAA2EAAAJkAAAAZAAAABYAAAEWAAADFgAAAkcAAABkAAAAYQAAADMAAAAzAAAAMwAAADMAAAAzAAAAMwAAAGEAAABhAAAAYQAAAWQAAABkAAAAYQAAAWQAAABHAAABZAAAAGEAAAEzAAAAMwAAADMAAAAzAAAAMwAAADMAAABhAAABYQAAAWEAAAJhAAABYQAAAWEAAAFhAAADRwAAAmQAAABhAAADMwAAADMAAAAzAAAAMwAAADMAAAAzAAAAYQAAAWEAAAJhAAABYQAAA2EAAAFhAAAAYQAAAw== -2,-1: ind: -2,-1 - tiles: SwAAAUsAAAJLAAAAaAAAAFgAAAAaAAACSwAAA0sAAANLAAAASwAAAUsAAAFLAAABSwAAAmgAAABLAAADSwAAA0sAAABLAAAASwAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAJLAAAASwAAA0sAAANoAAAAVwAAAFcAAABoAAAAGgAAABoAAAMaAAACGgAAABoAAABoAAAASwAAAksAAAJLAAACSwAAAEsAAAJLAAACaAAAAFcAAABoAAAAaAAAABoAAAIaAAABGgAAARoAAAAaAAADaAAAAEsAAAJLAAAASwAAA0sAAAFLAAABSwAAAmgAAABXAAAAaAAAAGgAAAAaAAABGgAAAxoAAAEaAAADGgAAAksAAABLAAABSwAAAEsAAAJLAAACSwAAA0sAAAJoAAAAVwAAAGgAAABoAAAAGgAAAhoAAAAaAAACGgAAAxoAAAFoAAAASwAAAUsAAANLAAABaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAABoAAAMaAAACGgAAABoAAAEaAAADaAAAAEsAAABLAAABSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAABSwAAAksAAAFLAAACaAAAAEsAAAFLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAAFLAAADSwAAAGgAAABLAAACSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAFLAAADSwAAAksAAAFoAAAASwAAAksAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAABoAAAAaAAAAEsAAAJLAAABaAAAAGgAAABoAAAASwAAAEsAAAFLAAADSwAAA0sAAAJLAAAASwAAAUsAAANLAAAAaAAAAGgAAABLAAABSwAAAksAAAJLAAACSwAAA0sAAAJLAAAASwAAAEsAAAJLAAADSwAAA0sAAAJLAAABSwAAAksAAAJLAAAASwAAAksAAAFLAAAASwAAAEsAAAFLAAAASwAAAUsAAANLAAABSwAAA0sAAABLAAACSwAAAksAAAJLAAABSwAAAksAAANLAAACSwAAAEsAAAFLAAABSwAAAksAAABLAAAASwAAAEsAAANLAAABSwAAAUsAAAJLAAADSwAAAEsAAABLAAAASwAAAQ== + tiles: RwAAAUcAAAJHAAAAZAAAAFQAAAAWAAACRwAAA0cAAANHAAAARwAAAUcAAAFHAAABRwAAAmQAAABHAAADRwAAA0cAAABHAAAARwAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAAJHAAAARwAAA0cAAANkAAAAUwAAAFMAAABkAAAAFgAAABYAAAMWAAACFgAAABYAAABkAAAARwAAAkcAAAJHAAACRwAAAEcAAAJHAAACZAAAAFMAAABkAAAAZAAAABYAAAIWAAABFgAAARYAAAAWAAADZAAAAEcAAAJHAAAARwAAA0cAAAFHAAABRwAAAmQAAABTAAAAZAAAAGQAAAAWAAABFgAAAxYAAAEWAAADFgAAAkcAAABHAAABRwAAAEcAAAJHAAACRwAAA0cAAAJkAAAAUwAAAGQAAABkAAAAFgAAAhYAAAAWAAACFgAAAxYAAAFkAAAARwAAAUcAAANHAAABZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAABYAAAMWAAACFgAAABYAAAEWAAADZAAAAEcAAABHAAABRwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAABRwAAAkcAAAFHAAACZAAAAEcAAAFHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAEcAAAFHAAADRwAAAGQAAABHAAACRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAFHAAADRwAAAkcAAAFkAAAARwAAAkcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAGQAAABkAAAAZAAAAEcAAAJHAAABZAAAAGQAAABkAAAARwAAAEcAAAFHAAADRwAAA0cAAAJHAAAARwAAAUcAAANHAAAAZAAAAGQAAABHAAABRwAAAkcAAAJHAAACRwAAA0cAAAJHAAAARwAAAEcAAAJHAAADRwAAA0cAAAJHAAABRwAAAkcAAAJHAAAARwAAAkcAAAFHAAAARwAAAEcAAAFHAAAARwAAAUcAAANHAAABRwAAA0cAAABHAAACRwAAAkcAAAJHAAABRwAAAkcAAANHAAACRwAAAEcAAAFHAAABRwAAAkcAAABHAAAARwAAAEcAAANHAAABRwAAAUcAAAJHAAADRwAAAEcAAABHAAAARwAAAQ== -2,-2: ind: -2,-2 - tiles: SwAAAksAAANoAAAASwAAAEsAAAJLAAADSwAAAUsAAAJoAAAASwAAAEsAAAFLAAABSwAAAEsAAAFLAAADSwAAAksAAABLAAADSwAAA0sAAAJLAAAASwAAAEsAAAFLAAADSwAAAEsAAAFLAAABSwAAA0sAAABoAAAASwAAAksAAANLAAADSwAAAmgAAABLAAACSwAAA0sAAANLAAACSwAAAmgAAABLAAACSwAAAUsAAANLAAACaAAAAEsAAAJLAAACSwAAAEsAAANoAAAAaAAAAGgAAABoAAAASwAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAmUAAANlAAAAaAAAAEsAAAFLAAACSwAAA0sAAANLAAAAaAAAAEsAAAJLAAAASwAAAksAAAJoAAAASwAAAUsAAABlAAABZQAAAGgAAABLAAAASwAAA0sAAAJLAAACSwAAAEsAAAFLAAADSwAAAUsAAABLAAADaAAAAEsAAANLAAAAZQAAA2UAAAFoAAAASwAAA0sAAANLAAAASwAAAksAAABoAAAASwAAAEsAAANLAAAASwAAA2gAAABLAAAASwAAAGUAAABlAAACaAAAAEsAAABLAAABSwAAAEsAAANLAAACSwAAAEsAAAFLAAABSwAAAEsAAAFLAAACSwAAAksAAAJoAAAAaAAAAGgAAABLAAACSwAAAEsAAAJLAAACSwAAAGgAAABLAAABSwAAAUsAAABLAAADSwAAA0sAAAFLAAABSwAAAEsAAAJoAAAASwAAAksAAAFLAAABSwAAAUsAAANLAAABSwAAAUsAAANLAAACSwAAAGgAAABLAAABSwAAAEsAAAFLAAADSwAAAUsAAAFLAAAASwAAAUsAAAJLAAACaAAAAEsAAAJLAAAASwAAAEsAAABoAAAASwAAA0sAAAJLAAACSwAAAEsAAABLAAACSwAAAUsAAANoAAAAaAAAAGgAAABoAAAASwAAAWgAAABoAAAAaAAAAEsAAAJLAAAASwAAAUsAAAFoAAAASwAAA0sAAABLAAABSwAAAksAAAFLAAAASwAAAEsAAAJLAAADSwAAAGgAAABLAAAASwAAAUsAAABLAAABaAAAAGgAAABoAAAAGgAAAGgAAABoAAAASwAAAEsAAAFLAAADSwAAAEsAAAJLAAAASwAAAEsAAAFLAAABaAAAAGgAAABoAAAAWAAAABoAAANLAAABSwAAAEsAAANLAAACSwAAA0sAAABLAAAAaAAAAEsAAANLAAADSwAAAEsAAAJLAAADaAAAAFgAAAAaAAAAaAAAAGgAAABLAAABSwAAAksAAABLAAADSwAAAWgAAABLAAADSwAAAw== + tiles: RwAAAkcAAANkAAAARwAAAEcAAAJHAAADRwAAAUcAAAJkAAAARwAAAEcAAAFHAAABRwAAAEcAAAFHAAADRwAAAkcAAABHAAADRwAAA0cAAAJHAAAARwAAAEcAAAFHAAADRwAAAEcAAAFHAAABRwAAA0cAAABkAAAARwAAAkcAAANHAAADRwAAAmQAAABHAAACRwAAA0cAAANHAAACRwAAAmQAAABHAAACRwAAAUcAAANHAAACZAAAAEcAAAJHAAACRwAAAEcAAANkAAAAZAAAAGQAAABkAAAARwAAAEcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAmEAAANhAAAAZAAAAEcAAAFHAAACRwAAA0cAAANHAAAAZAAAAEcAAAJHAAAARwAAAkcAAAJkAAAARwAAAUcAAABhAAABYQAAAGQAAABHAAAARwAAA0cAAAJHAAACRwAAAEcAAAFHAAADRwAAAUcAAABHAAADZAAAAEcAAANHAAAAYQAAA2EAAAFkAAAARwAAA0cAAANHAAAARwAAAkcAAABkAAAARwAAAEcAAANHAAAARwAAA2QAAABHAAAARwAAAGEAAABhAAACZAAAAEcAAABHAAABRwAAAEcAAANHAAACRwAAAEcAAAFHAAABRwAAAEcAAAFHAAACRwAAAkcAAAJkAAAAZAAAAGQAAABHAAACRwAAAEcAAAJHAAACRwAAAGQAAABHAAABRwAAAUcAAABHAAADRwAAA0cAAAFHAAABRwAAAEcAAAJkAAAARwAAAkcAAAFHAAABRwAAAUcAAANHAAABRwAAAUcAAANHAAACRwAAAGQAAABHAAABRwAAAEcAAAFHAAADRwAAAUcAAAFHAAAARwAAAUcAAAJHAAACZAAAAEcAAAJHAAAARwAAAEcAAABkAAAARwAAA0cAAAJHAAACRwAAAEcAAABHAAACRwAAAUcAAANkAAAAZAAAAGQAAABkAAAARwAAAWQAAABkAAAAZAAAAEcAAAJHAAAARwAAAUcAAAFkAAAARwAAA0cAAABHAAABRwAAAkcAAAFHAAAARwAAAEcAAAJHAAADRwAAAGQAAABHAAAARwAAAUcAAABHAAABZAAAAGQAAABkAAAAFgAAAGQAAABkAAAARwAAAEcAAAFHAAADRwAAAEcAAAJHAAAARwAAAEcAAAFHAAABZAAAAGQAAABkAAAAVAAAABYAAANHAAABRwAAAEcAAANHAAACRwAAA0cAAABHAAAAZAAAAEcAAANHAAADRwAAAEcAAAJHAAADZAAAAFQAAAAWAAAAZAAAAGQAAABHAAABRwAAAkcAAABHAAADRwAAAWQAAABHAAADRwAAAw== 1,-2: ind: 1,-2 - tiles: SwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAmgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAFoAAAAGgAAAxoAAAIaAAAAGgAAABoAAABoAAAAWwAAAVsAAANbAAABWwAAAWgAAABbAAABWwAAAVsAAABLAAADaAAAABoAAAMaAAACGgAAAxoAAAMaAAADaAAAAFsAAAFbAAAAWwAAA1sAAANbAAACWwAAAFsAAAFbAAAASwAAA2gAAABoAAAAaAAAABoAAAJoAAAAaAAAAGgAAABbAAACWwAAAlsAAAJbAAAAWwAAAFsAAANbAAADWwAAAEsAAANbAAACWwAAA1sAAABbAAACWwAAAFsAAAJoAAAAWwAAAlsAAAFbAAACWwAAAGgAAABbAAAAWwAAAVsAAAFLAAADaAAAAFsAAAJbAAAAWwAAA1sAAAJbAAABaAAAAGgAAABbAAADWwAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAWgAAABbAAADWwAAA1sAAANbAAACWwAAAFsAAAFbAAAAWwAAA1sAAANbAAAAWwAAAVsAAANbAAACWwAAAEsAAABoAAAAWwAAAVsAAABbAAADWwAAAVsAAAJbAAADWwAAA1sAAAFbAAAAWwAAAlsAAAJbAAACWwAAA1sAAANLAAACaAAAAGgAAABbAAADaAAAAFsAAAFoAAAAaAAAAFsAAABbAAAAWwAAAFsAAABbAAABWwAAAVsAAAJbAAABSwAAA2gAAABLAAACSwAAAUsAAABLAAAASwAAAGgAAABbAAAAWwAAA1sAAABoAAAAaAAAAGgAAABbAAABaAAAAEsAAABoAAAASwAAAksAAABLAAADSwAAAksAAABoAAAAaAAAAFsAAAJbAAADaAAAAFsAAAJbAAADWwAAAlsAAAJLAAAAaAAAAEsAAABLAAAAWwAAAhoAAAEaAAACaAAAAFsAAANbAAABWwAAAVsAAAJbAAAAWwAAAlsAAAJbAAADSwAAA2gAAABbAAADWwAAAlsAAAMaAAAAGgAAAlsAAANbAAACWwAAAFsAAAFbAAAAWwAAAFsAAAFbAAADWwAAAksAAAJoAAAAGgAAABoAAAJbAAAAGgAAAhoAAANoAAAAWwAAA1sAAANbAAAAWwAAA1sAAABbAAADWwAAA1sAAANLAAAAaAAAABoAAAIaAAACWwAAARoAAAEaAAABWwAAA1sAAAJbAAACWwAAAVsAAABbAAAAWwAAAlsAAABbAAAASwAAAmgAAAAaAAABGgAAAFsAAAEaAAACGgAAAGgAAABbAAABWwAAAFsAAAJbAAACWwAAA1sAAABbAAADWwAAAQ== + tiles: RwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAmQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAFkAAAAFgAAAxYAAAIWAAAAFgAAABYAAABkAAAAVwAAAVcAAANXAAABVwAAAWQAAABXAAABVwAAAVcAAABHAAADZAAAABYAAAMWAAACFgAAAxYAAAMWAAADZAAAAFcAAAFXAAAAVwAAA1cAAANXAAACVwAAAFcAAAFXAAAARwAAA2QAAABkAAAAZAAAABYAAAJkAAAAZAAAAGQAAABXAAACVwAAAlcAAAJXAAAAVwAAAFcAAANXAAADVwAAAEcAAANXAAACVwAAA1cAAABXAAACVwAAAFcAAAJkAAAAVwAAAlcAAAFXAAACVwAAAGQAAABXAAAAVwAAAVcAAAFHAAADZAAAAFcAAAJXAAAAVwAAA1cAAAJXAAABZAAAAGQAAABXAAADVwAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAWQAAABXAAADVwAAA1cAAANXAAACVwAAAFcAAAFXAAAAVwAAA1cAAANXAAAAVwAAAVcAAANXAAACVwAAAEcAAABkAAAAVwAAAVcAAABXAAADVwAAAVcAAAJXAAADVwAAA1cAAAFXAAAAVwAAAlcAAAJXAAACVwAAA1cAAANHAAACZAAAAGQAAABXAAADZAAAAFcAAAFkAAAAZAAAAFcAAABXAAAAVwAAAFcAAABXAAABVwAAAVcAAAJXAAABRwAAA2QAAABHAAACRwAAAUcAAABHAAAARwAAAGQAAABXAAAAVwAAA1cAAABkAAAAZAAAAGQAAABXAAABZAAAAEcAAABkAAAARwAAAkcAAABHAAADRwAAAkcAAABkAAAAZAAAAFcAAAJXAAADZAAAAFcAAAJXAAADVwAAAlcAAAJHAAAAZAAAAEcAAABHAAAAVwAAAhYAAAEWAAACZAAAAFcAAANXAAABVwAAAVcAAAJXAAAAVwAAAlcAAAJXAAADRwAAA2QAAABXAAADVwAAAlcAAAMWAAAAFgAAAlcAAANXAAACVwAAAFcAAAFXAAAAVwAAAFcAAAFXAAADVwAAAkcAAAJkAAAAFgAAABYAAAJXAAAAFgAAAhYAAANkAAAAVwAAA1cAAANXAAAAVwAAA1cAAABXAAADVwAAA1cAAANHAAAAZAAAABYAAAIWAAACVwAAARYAAAEWAAABVwAAA1cAAAJXAAACVwAAAVcAAABXAAAAVwAAAlcAAABXAAAARwAAAmQAAAAWAAABFgAAAFcAAAEWAAACFgAAAGQAAABXAAABVwAAAFcAAAJXAAACVwAAA1cAAABXAAADVwAAAQ== 0,-2: ind: 0,-2 - tiles: SwAAAEsAAAJLAAACSwAAAEsAAABLAAAASwAAA0sAAANLAAADSwAAAksAAABLAAACSwAAAUsAAANLAAADSwAAAksAAANLAAABSwAAA0sAAAFLAAACSwAAA0sAAAFLAAADSwAAA0sAAANLAAABSwAAAksAAAFLAAABSwAAA0sAAAFLAAADSwAAAUsAAABLAAADSwAAAksAAAJLAAAASwAAAEsAAAFLAAADSwAAAUsAAAJLAAACSwAAAEsAAAJLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAksAAAFoAAAAZwAAAAAAAAAAAAAAaAAAABoAAAAaAAAAGgAAAGUAAAEaAAAAGgAAABoAAABoAAAASwAAAksAAABLAAAAaAAAAGgAAAAAAAAAAAAAAGgAAABlAAADZQAAA2UAAANlAAACZQAAAWUAAAFlAAAAaAAAAEsAAANLAAABSwAAA0sAAAJoAAAAAAAAAAAAAABoAAAAZQAAA2UAAAJlAAACZQAAA2UAAANlAAAAZQAAABoAAABLAAADSwAAAEsAAAFLAAABaAAAAGcAAABnAAAAaAAAABoAAAAaAAAAGgAAAGUAAAAaAAAAGgAAABoAAABoAAAASwAAAEsAAAJoAAAAaAAAAGgAAAAAAAAAAAAAAGgAAAAuAAAALgAAAC4AAABoAAAAaAAAAGgAAAAaAAADaAAAAEsAAANLAAABGgAAABoAAABoAAAAAAAAAGcAAABoAAAAZQAAAmUAAAJlAAADaAAAACkAAABoAAAAGgAAAGgAAABLAAACSwAAAhoAAAMaAAABaAAAAAAAAAAAAAAAaAAAAGUAAANlAAACZQAAAmgAAAApAAAAaAAAABoAAAFoAAAASwAAAksAAAAaAAADGgAAAWgAAAAAAAAAZwAAAGgAAABlAAACZQAAA2UAAAIpAAAAKQAAAGgAAAAaAAAAaAAAAEsAAABLAAACGgAAAhoAAANoAAAAZwAAAGgAAABoAAAAaAAAAGUAAAFoAAAAaAAAAGgAAABoAAAAGgAAAGgAAABLAAABSwAAAhoAAAIaAAAAaAAAAGcAAABoAAAAZQAAA2UAAAFlAAACZQAAAWUAAANlAAAAZQAAARoAAAFoAAAASwAAAksAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGUAAAFlAAABZQAAAmUAAAJlAAACZQAAA2UAAAIaAAADaAAAAEsAAAFLAAADGgAAAioAAAEaAAACGgAAAxoAAABlAAABZQAAAGUAAAFlAAABZQAAAWUAAANlAAABGgAAA2gAAABLAAACSwAAAQ== + tiles: RwAAAEcAAAJHAAACRwAAAEcAAABHAAAARwAAA0cAAANHAAADRwAAAkcAAABHAAACRwAAAUcAAANHAAADRwAAAkcAAANHAAABRwAAA0cAAAFHAAACRwAAA0cAAAFHAAADRwAAA0cAAANHAAABRwAAAkcAAAFHAAABRwAAA0cAAAFHAAADRwAAAUcAAABHAAADRwAAAkcAAAJHAAAARwAAAEcAAAFHAAADRwAAAUcAAAJHAAACRwAAAEcAAAJHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAAkcAAAFkAAAAYwAAAAAAAAAAAAAAZAAAABYAAAAWAAAAFgAAAGEAAAEWAAAAFgAAABYAAABkAAAARwAAAkcAAABHAAAAZAAAAGQAAAAAAAAAAAAAAGQAAABhAAADYQAAA2EAAANhAAACYQAAAWEAAAFhAAAAZAAAAEcAAANHAAABRwAAA0cAAAJkAAAAAAAAAAAAAABkAAAAYQAAA2EAAAJhAAACYQAAA2EAAANhAAAAYQAAABYAAABHAAADRwAAAEcAAAFHAAABZAAAAGMAAABjAAAAZAAAABYAAAAWAAAAFgAAAGEAAAAWAAAAFgAAABYAAABkAAAARwAAAEcAAAJkAAAAZAAAAGQAAAAAAAAAAAAAAGQAAAAqAAAAKgAAACoAAABkAAAAZAAAAGQAAAAWAAADZAAAAEcAAANHAAABFgAAABYAAABkAAAAAAAAAGMAAABkAAAAYQAAAmEAAAJhAAADZAAAACUAAABkAAAAFgAAAGQAAABHAAACRwAAAhYAAAMWAAABZAAAAAAAAAAAAAAAZAAAAGEAAANhAAACYQAAAmQAAAAlAAAAZAAAABYAAAFkAAAARwAAAkcAAAAWAAADFgAAAWQAAAAAAAAAYwAAAGQAAABhAAACYQAAA2EAAAIlAAAAJQAAAGQAAAAWAAAAZAAAAEcAAABHAAACFgAAAhYAAANkAAAAYwAAAGQAAABkAAAAZAAAAGEAAAFkAAAAZAAAAGQAAABkAAAAFgAAAGQAAABHAAABRwAAAhYAAAIWAAAAZAAAAGMAAABkAAAAYQAAA2EAAAFhAAACYQAAAWEAAANhAAAAYQAAARYAAAFkAAAARwAAAkcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGEAAAFhAAABYQAAAmEAAAJhAAACYQAAA2EAAAIWAAADZAAAAEcAAAFHAAADFgAAAiYAAAEWAAACFgAAAxYAAABhAAABYQAAAGEAAAFhAAABYQAAAWEAAANhAAABFgAAA2QAAABHAAACRwAAAQ== -1,-2: ind: -1,-2 - tiles: SwAAAUsAAABLAAAASwAAAksAAANLAAADSwAAAUsAAABLAAABSwAAAUsAAAJLAAACSwAAAksAAAFLAAADSwAAA0sAAAJLAAAASwAAAEsAAAFLAAAASwAAAUsAAABLAAADSwAAAUsAAAJLAAACSwAAA0sAAAJLAAAASwAAAUsAAAJLAAACSwAAA0sAAANLAAABSwAAAksAAAFLAAACSwAAAksAAABLAAACSwAAAEsAAABLAAAASwAAAEsAAANLAAACSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAADSwAAA2gAAAAaAAADZQAAAWUAAAJlAAABGgAAAWgAAAAAAAAAAAAAAGcAAABoAAAASwAAAUsAAABLAAADLAAAAEsAAABoAAAAGgAAAGUAAABlAAAAZQAAAxoAAANoAAAAAAAAAAAAAABoAAAAaAAAAEsAAANLAAABSwAAAiwAAABLAAABaAAAABoAAABlAAAAZQAAAGUAAAMaAAADaAAAAAAAAAAAAAAAaAAAAEsAAAFLAAADSwAAA0sAAAIsAAAASwAAAmgAAAAaAAADZQAAAGUAAAJlAAABGgAAA2gAAABnAAAAZwAAAGgAAABLAAAASwAAAksAAABLAAABLAAAAEsAAANoAAAAGgAAA2UAAABlAAABZQAAARoAAABoAAAAZwAAAAAAAABoAAAAaAAAAGgAAAAaAAACSwAAAUsAAAFLAAABSwAAAhoAAAFlAAADZQAAA2UAAAAaAAACaAAAAGcAAAAAAAAAaAAAABoAAAEaAAAAGgAAA0sAAANoAAAASwAAAWgAAAAaAAAAZQAAAGUAAANlAAAAGgAAA2gAAABnAAAAZwAAAGgAAAAaAAAAGgAAAxoAAAFLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGcAAABoAAAAGgAAARoAAAIaAAABSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAMaAAABGgAAAGgAAABnAAAAaAAAABoAAAIaAAACGgAAAksAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAGgAAARoAAAJoAAAAZwAAAGgAAAAaAAACGgAAAxoAAABLAAADaAAAABoAAAEaAAABGgAAAxoAAAMaAAAAGgAAABoAAAIaAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABSwAAAWgAAAAaAAADGgAAABoAAAIaAAAAGgAAARoAAAEaAAADGgAAARoAAAMaAAACGgAAASoAAAIaAAABKgAAAQ== + tiles: RwAAAUcAAABHAAAARwAAAkcAAANHAAADRwAAAUcAAABHAAABRwAAAUcAAAJHAAACRwAAAkcAAAFHAAADRwAAA0cAAAJHAAAARwAAAEcAAAFHAAAARwAAAUcAAABHAAADRwAAAUcAAAJHAAACRwAAA0cAAAJHAAAARwAAAUcAAAJHAAACRwAAA0cAAANHAAABRwAAAkcAAAFHAAACRwAAAkcAAABHAAACRwAAAEcAAABHAAAARwAAAEcAAANHAAACRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAABHAAADRwAAA2QAAAAWAAADYQAAAWEAAAJhAAABFgAAAWQAAAAAAAAAAAAAAGMAAABkAAAARwAAAUcAAABHAAADKAAAAEcAAABkAAAAFgAAAGEAAABhAAAAYQAAAxYAAANkAAAAAAAAAAAAAABkAAAAZAAAAEcAAANHAAABRwAAAigAAABHAAABZAAAABYAAABhAAAAYQAAAGEAAAMWAAADZAAAAAAAAAAAAAAAZAAAAEcAAAFHAAADRwAAA0cAAAIoAAAARwAAAmQAAAAWAAADYQAAAGEAAAJhAAABFgAAA2QAAABjAAAAYwAAAGQAAABHAAAARwAAAkcAAABHAAABKAAAAEcAAANkAAAAFgAAA2EAAABhAAABYQAAARYAAABkAAAAYwAAAAAAAABkAAAAZAAAAGQAAAAWAAACRwAAAUcAAAFHAAABRwAAAhYAAAFhAAADYQAAA2EAAAAWAAACZAAAAGMAAAAAAAAAZAAAABYAAAEWAAAAFgAAA0cAAANkAAAARwAAAWQAAAAWAAAAYQAAAGEAAANhAAAAFgAAA2QAAABjAAAAYwAAAGQAAAAWAAAAFgAAAxYAAAFHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAABkAAAAZAAAAGMAAABkAAAAFgAAARYAAAIWAAABRwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAMWAAABFgAAAGQAAABjAAAAZAAAABYAAAIWAAACFgAAAkcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAAAFgAAARYAAAJkAAAAYwAAAGQAAAAWAAACFgAAAxYAAABHAAADZAAAABYAAAEWAAABFgAAAxYAAAMWAAAAFgAAABYAAAIWAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAABRwAAAWQAAAAWAAADFgAAABYAAAIWAAAAFgAAARYAAAEWAAADFgAAARYAAAMWAAACFgAAASYAAAIWAAABJgAAAQ== -2,0: ind: -2,0 - tiles: GgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAABoAAABoAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAAaAAAAFcAAAAaAAAAaAAAAGgAAABoAAAAAAAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAEsAAABLAAAAaAAAAGgAAABoAAAAGgAAABoAAAFLAAADaAAAAGcAAABoAAAAaAAAAGgAAABoAAAASwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAABIAAAASAAAASwAAAmgAAAAAAAAAaAAAAGgAAABXAAAAaAAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAASAAAAEgAAAEsAAAJoAAAAZwAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAEsAAAJoAAAAaAAAAFcAAABoAAAAEgAAABIAAABLAAAAaAAAAAAAAABoAAAAaAAAAFcAAABoAAAAaAAAAEsAAAFoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABXAAAAaAAAAGgAAABLAAAAaAAAAGgAAABoAAAAVwAAAGgAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAVwAAAFcAAABoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAADkAAABoAAAAOQAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAADkAAAA5AAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAOQAAADkAAAA5AAAAOQAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: FgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAABYAAABkAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAZAAAAFMAAAAWAAAAZAAAAGQAAABkAAAAAAAAAGQAAABkAAAAZAAAAEcAAABkAAAAZAAAAEcAAABHAAAAZAAAAGQAAABkAAAAFgAAABYAAAFHAAADZAAAAGMAAABkAAAAZAAAAGQAAABkAAAARwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAA4AAAAOAAAARwAAAmQAAAAAAAAAZAAAAGQAAABTAAAAZAAAAEcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAOAAAADgAAAEcAAAJkAAAAYwAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAEcAAAJkAAAAZAAAAFMAAABkAAAADgAAAA4AAABHAAAAZAAAAAAAAABkAAAAZAAAAFMAAABkAAAAZAAAAEcAAAFkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABTAAAAZAAAAGQAAABHAAAAZAAAAGQAAABkAAAAUwAAAGQAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAUwAAAFMAAABkAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAADUAAABkAAAANQAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAADUAAAA1AAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAANQAAADUAAAA1AAAANQAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== -2,-3: ind: -2,-3 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGgAAABoAAAAaAAAAFcAAABoAAAAVwAAAFcAAABoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAABoAAAAZwAAAAAAAABnAAAAaAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAaAAAAGcAAAAAAAAAZwAAAGgAAABnAAAAAAAAAGgAAABoAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAANLAAACSwAAAksAAANLAAACaAAAAFcAAABXAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAABLAAAASwAAAUsAAAFLAAAASwAAAWgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAAASwAAAUsAAAFLAAAASwAAAUsAAAFoAAAAVwAAAFcAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAksAAANLAAACSwAAAksAAANLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABoAAAAaAAAAEsAAAFLAAADSwAAAEsAAANLAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGgAAABLAAABSwAAAksAAANLAAADSwAAAksAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAJLAAAASwAAA0sAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAGQAAABkAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGQAAABkAAAAZAAAAFMAAABkAAAAUwAAAFMAAABkAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAABkAAAAYwAAAAAAAABjAAAAZAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAZAAAAGMAAAAAAAAAYwAAAGQAAABjAAAAAAAAAGQAAABkAAAAUwAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAEcAAANHAAACRwAAAkcAAANHAAACZAAAAFMAAABTAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAABHAAAARwAAAUcAAAFHAAAARwAAAWQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAAARwAAAUcAAAFHAAAARwAAAUcAAAFkAAAAUwAAAFMAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAkcAAANHAAACRwAAAkcAAANHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABkAAAAZAAAAEcAAAFHAAADRwAAAEcAAANHAAAARwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGQAAABHAAABRwAAAkcAAANHAAADRwAAAkcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAJHAAAARwAAA0cAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== -1,-3: ind: -1,-3 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABLAAADSwAAAVcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAABAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAmgAAABLAAAASwAAAQAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAABLAAAASwAAAUsAAAIAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAANLAAAAaAAAAEsAAANLAAACAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAAASwAAA2gAAABLAAAASwAAAWcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAMAAAAAAAAAAGcAAAAAAAAAaAAAABoAAAAaAAAAGgAAABoAAAIaAAADGgAAAhoAAAEaAAAAaAAAAEsAAAJLAAAAZwAAAGgAAABoAAAAaAAAAGgAAAAaAAABGgAAABoAAAIaAAABGgAAABoAAAIaAAACGgAAAGgAAABLAAADSwAAAAAAAABoAAAAGgAAARoAAANoAAAAGgAAABoAAAAaAAACGgAAABoAAAIaAAADGgAAARoAAAFoAAAASwAAAksAAAJnAAAAaAAAABoAAAEaAAACGgAAAxoAAAMaAAACGgAAAxoAAAIaAAAAGgAAARoAAAAaAAACGgAAAksAAAFLAAABAAAAAGgAAAAaAAABGgAAAmgAAAAaAAACGgAAARoAAAEaAAABGgAAABoAAAEaAAACGgAAAmgAAABLAAAASwAAAGcAAABoAAAAaAAAAGgAAABoAAAAGgAAARoAAAEaAAADGgAAAhoAAAEaAAACGgAAABoAAAFoAAAASwAAA0sAAAAAAAAAAAAAAGcAAAAAAAAAaAAAABoAAAMaAAACGgAAAhoAAAIaAAAAGgAAABoAAAEaAAADaAAAAEsAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAg== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABHAAADRwAAAVMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAABAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAmQAAABHAAAARwAAAQAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAABHAAAARwAAAUcAAAIAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAANHAAAAZAAAAEcAAANHAAACAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAABHAAAARwAAA2QAAABHAAAARwAAAWMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAAMAAAAAAAAAAGMAAAAAAAAAZAAAABYAAAAWAAAAFgAAABYAAAIWAAADFgAAAhYAAAEWAAAAZAAAAEcAAAJHAAAAYwAAAGQAAABkAAAAZAAAAGQAAAAWAAABFgAAABYAAAIWAAABFgAAABYAAAIWAAACFgAAAGQAAABHAAADRwAAAAAAAABkAAAAFgAAARYAAANkAAAAFgAAABYAAAAWAAACFgAAABYAAAIWAAADFgAAARYAAAFkAAAARwAAAkcAAAJjAAAAZAAAABYAAAEWAAACFgAAAxYAAAMWAAACFgAAAxYAAAIWAAAAFgAAARYAAAAWAAACFgAAAkcAAAFHAAABAAAAAGQAAAAWAAABFgAAAmQAAAAWAAACFgAAARYAAAEWAAABFgAAABYAAAEWAAACFgAAAmQAAABHAAAARwAAAGMAAABkAAAAZAAAAGQAAABkAAAAFgAAARYAAAEWAAADFgAAAhYAAAEWAAACFgAAABYAAAFkAAAARwAAA0cAAAAAAAAAAAAAAGMAAAAAAAAAZAAAABYAAAMWAAACFgAAAhYAAAIWAAAAFgAAABYAAAEWAAADZAAAAEcAAABHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAg== 0,-3: ind: 0,-3 - tiles: SwAAAUsAAAFoAAAASwAAAksAAAFLAAAASwAAA0sAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAAAaAAAAEsAAAFoAAAASwAAAUsAAAFLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAGgAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAASwAAAEsAAAFoAAAASwAAA0sAAAFLAAADSwAAA0sAAAJoAAAAaAAAAGgAAABoAAAASwAAAUsAAAFLAAAAaAAAAEsAAANLAAAASwAAAEsAAAFLAAAASwAAA0sAAANLAAACaAAAAGgAAABoAAAAaAAAAEsAAANLAAABSwAAAGgAAABLAAADSwAAAksAAABLAAACSwAAAUsAAAJLAAADSwAAAWgAAABoAAAAaAAAAGgAAABLAAAASwAAAUsAAAJoAAAASwAAAUsAAANoAAAASwAAAksAAAFLAAACSwAAAksAAAJoAAAAaAAAAGgAAABoAAAASwAAAUsAAAJLAAADaAAAAEsAAABLAAACaAAAAEsAAAFLAAADSwAAA0sAAAFLAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAAASwAAAWgAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACaAAAAEsAAABLAAAASwAAAksAAABLAAABSwAAAmgAAABmAAAAZQAAAmUAAAFlAAABZgAAAWgAAABoAAAASwAAAGgAAABLAAABSwAAAUsAAANLAAADSwAAAksAAABoAAAAZgAAAWUAAANlAAABZQAAAWYAAANYAAAAaAAAAEsAAAFoAAAASwAAAEsAAABLAAADSwAAAEsAAABLAAAAaAAAADcAAAA3AAAANwAAABoAAAEaAAAAaAAAAGgAAABLAAAAaAAAAEsAAANLAAADSwAAAEsAAANLAAAASwAAAmgAAAA3AAAANwAAADcAAAAaAAACaAAAAGgAAABoAAAASwAAAWgAAABoAAAAaAAAAGgAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABlAAAAGgAAAWgAAAAaAAACGgAAAA== + tiles: RwAAAUcAAAFkAAAARwAAAkcAAAFHAAAARwAAA0cAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAAAZAAAAEcAAAFkAAAARwAAAUcAAAFHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAGQAAABHAAADZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABkAAAARwAAAEcAAAFkAAAARwAAA0cAAAFHAAADRwAAA0cAAAJkAAAAZAAAAGQAAABkAAAARwAAAUcAAAFHAAAAZAAAAEcAAANHAAAARwAAAEcAAAFHAAAARwAAA0cAAANHAAACZAAAAGQAAABkAAAAZAAAAEcAAANHAAABRwAAAGQAAABHAAADRwAAAkcAAABHAAACRwAAAUcAAAJHAAADRwAAAWQAAABkAAAAZAAAAGQAAABHAAAARwAAAUcAAAJkAAAARwAAAUcAAANkAAAARwAAAkcAAAFHAAACRwAAAkcAAAJkAAAAZAAAAGQAAABkAAAARwAAAUcAAAJHAAADZAAAAEcAAABHAAACZAAAAEcAAAFHAAADRwAAA0cAAAFHAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAAARwAAAWQAAABHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAARwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACZAAAAEcAAABHAAAARwAAAkcAAABHAAABRwAAAmQAAABiAAAAYQAAAmEAAAFhAAABYgAAAWQAAABkAAAARwAAAGQAAABHAAABRwAAAUcAAANHAAADRwAAAkcAAABkAAAAYgAAAWEAAANhAAABYQAAAWIAAANUAAAAZAAAAEcAAAFkAAAARwAAAEcAAABHAAADRwAAAEcAAABHAAAAZAAAADMAAAAzAAAAMwAAABYAAAEWAAAAZAAAAGQAAABHAAAAZAAAAEcAAANHAAADRwAAAEcAAANHAAAARwAAAmQAAAAzAAAAMwAAADMAAAAWAAACZAAAAGQAAABkAAAARwAAAWQAAABkAAAAZAAAAGQAAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAABhAAAAFgAAAWQAAAAWAAACFgAAAA== 1,-3: ind: 1,-3 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAEEAAABBAAAAQQAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABBAAAAQQAAAEEAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAEAAAABAAAAAQAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABAAAAAQAAAAEAAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAQAAAAEAAAABAAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGQAAAJkAAABZAAAAGQAAAFkAAABaAAAACkAAAApAAAAKQAAAGgAAABbAAADWwAAAlsAAABbAAABaAAAAGgAAABkAAADZAAAA2QAAANkAAADZAAAA0sAAAApAAAAKQAAACkAAABoAAAAWwAAAFsAAAJbAAACWwAAAWgAAABYAAAAZAAAAWQAAAJkAAADZAAAAmQAAANoAAAAKQAAACkAAAApAAAAaAAAAFsAAANLAAADSwAAAksAAAFYAAAAaAAAACMAAAIjAAABZAAAAiMAAAEjAAACaAAAACkAAAApAAAAKQAAAFsAAABbAAACSwAAAUsAAANLAAAAGgAAA2gAAAAjAAACIwAAAmQAAAAjAAACIwAAA2gAAABFAAAAKQAAACkAAABoAAAAWwAAAEsAAANLAAAASwAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAD0AAAA9AAAAPQAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAAA9AAAAPQAAAD0AAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAADwAAAA8AAAAPAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAAA8AAAAPAAAADwAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAPAAAADwAAAA8AAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGAAAAJgAAABYAAAAGAAAAFgAAABZAAAACUAAAAlAAAAJQAAAGQAAABXAAADVwAAAlcAAABXAAABZAAAAGQAAABgAAADYAAAA2AAAANgAAADYAAAA0cAAAAlAAAAJQAAACUAAABkAAAAVwAAAFcAAAJXAAACVwAAAWQAAABUAAAAYAAAAWAAAAJgAAADYAAAAmAAAANkAAAAJQAAACUAAAAlAAAAZAAAAFcAAANHAAADRwAAAkcAAAFUAAAAZAAAAB8AAAIfAAABYAAAAh8AAAEfAAACZAAAACUAAAAlAAAAJQAAAFcAAABXAAACRwAAAUcAAANHAAAAFgAAA2QAAAAfAAACHwAAAmAAAAAfAAACHwAAA2QAAABBAAAAJQAAACUAAABkAAAAVwAAAEcAAANHAAAARwAAAA== 1,0: ind: 1,0 - tiles: aAAAAGgAAAAPAAABaAAAADcAAAA3AAAANwAAADcAAAA3AAAAGgAAAhoAAAIaAAADaAAAAGUAAABlAAACZQAAA0MAAABDAAAAQwAAAGgAAABoAAAAGQAAAGgAAABoAAAAaAAAAGgAAAAPAAADaAAAAGgAAABlAAAAZQAAA2UAAAMRAAAAaAAAABEAAABoAAAAGQAAABkAAAAZAAAAaAAAAA8AAAAPAAAADwAAAw8AAAJoAAAAaAAAAGgAAABoAAAAEQAAAGgAAAARAAAAaAAAABkAAAAZAAAAGQAAAGgAAAAPAAAADwAAAg8AAAMPAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAA0sAAAFoAAAADwAAAQ8AAAMPAAADaAAAAGgAAABoAAAAaAAAAGgAAABDAAAAQwAAAEMAAABoAAAAOgAAADoAAAA6AAAASwAAAg8AAAIPAAAADwAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAEMAAABDAAAAaAAAADoAAAA6AAAAOgAAAGgAAAAPAAACDwAAAw8AAAJoAAAAaAAAAGgAAABoAAAAaAAAAEMAAABDAAAAQwAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAANLAAADaAAAAGgAAABAAAAAQAAAAEAAAABoAAAASwAAAmgAAABoAAAASwAAA0sAAAJLAAAASwAAAUsAAAFLAAACSwAAAUsAAAFoAAAAQAAAAEAAAABAAAAASwAAAEsAAAFoAAAASwAAAUsAAABLAAACSwAAAEsAAAFLAAAASwAAA0sAAANLAAAAaAAAAEAAAABAAAAAQAAAAEsAAABLAAACSwAAAUsAAAFLAAADGgAAABoAAAMaAAACGgAAAUsAAAFLAAADSwAAAUsAAAJAAAAAQAAAAEAAAABLAAACSwAAAUsAAAJLAAAASwAAAxoAAAEaAAADGgAAAxoAAABLAAABSwAAA0sAAABoAAAAQAAAAEAAAABAAAAASwAAAUsAAAJoAAAASwAAAUsAAAIaAAADGgAAAxoAAAMaAAADSwAAAUsAAABLAAABaAAAAEAAAABAAAAAQAAAABUAAABoAAAAaAAAAEsAAANLAAACGgAAABoAAAEaAAABGgAAAUsAAAJLAAACSwAAAksAAAJAAAAAQAAAAEAAAAAVAAAAFQAAAGgAAABLAAACSwAAA0sAAAFLAAACSwAAAUsAAABLAAACSwAAAUsAAABoAAAAQAAAAEAAAABAAAAAFQAAABUAAABoAAAASwAAAksAAAFLAAAASwAAAksAAAFLAAADSwAAAUsAAANLAAACaAAAAEAAAABAAAAAQAAAAA== + tiles: ZAAAAGQAAAALAAABZAAAADMAAAAzAAAAMwAAADMAAAAzAAAAFgAAAhYAAAIWAAADZAAAAGEAAABhAAACYQAAAz8AAAA/AAAAPwAAAGQAAABkAAAAFQAAAGQAAABkAAAAZAAAAGQAAAALAAADZAAAAGQAAABhAAAAYQAAA2EAAAMNAAAAZAAAAA0AAABkAAAAFQAAABUAAAAVAAAAZAAAAAsAAAALAAAACwAAAwsAAAJkAAAAZAAAAGQAAABkAAAADQAAAGQAAAANAAAAZAAAABUAAAAVAAAAFQAAAGQAAAALAAAACwAAAgsAAAMLAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAA0cAAAFkAAAACwAAAQsAAAMLAAADZAAAAGQAAABkAAAAZAAAAGQAAAA/AAAAPwAAAD8AAABkAAAANgAAADYAAAA2AAAARwAAAgsAAAILAAAACwAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAZAAAADYAAAA2AAAANgAAAGQAAAALAAACCwAAAwsAAAJkAAAAZAAAAGQAAABkAAAAZAAAAD8AAAA/AAAAPwAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAANHAAADZAAAAGQAAAA8AAAAPAAAADwAAABkAAAARwAAAmQAAABkAAAARwAAA0cAAAJHAAAARwAAAUcAAAFHAAACRwAAAUcAAAFkAAAAPAAAADwAAAA8AAAARwAAAEcAAAFkAAAARwAAAUcAAABHAAACRwAAAEcAAAFHAAAARwAAA0cAAANHAAAAZAAAADwAAAA8AAAAPAAAAEcAAABHAAACRwAAAUcAAAFHAAADFgAAABYAAAMWAAACFgAAAUcAAAFHAAADRwAAAUcAAAI8AAAAPAAAADwAAABHAAACRwAAAUcAAAJHAAAARwAAAxYAAAEWAAADFgAAAxYAAABHAAABRwAAA0cAAABkAAAAPAAAADwAAAA8AAAARwAAAUcAAAJkAAAARwAAAUcAAAIWAAADFgAAAxYAAAMWAAADRwAAAUcAAABHAAABZAAAADwAAAA8AAAAPAAAABEAAABkAAAAZAAAAEcAAANHAAACFgAAABYAAAEWAAABFgAAAUcAAAJHAAACRwAAAkcAAAI8AAAAPAAAADwAAAARAAAAEQAAAGQAAABHAAACRwAAA0cAAAFHAAACRwAAAUcAAABHAAACRwAAAUcAAABkAAAAPAAAADwAAAA8AAAAEQAAABEAAABkAAAARwAAAkcAAAFHAAAARwAAAkcAAAFHAAADRwAAAUcAAANHAAACZAAAADwAAAA8AAAAPAAAAA== 0,1: ind: 0,1 - tiles: SwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAFLAAABSwAAAksAAANLAAACSwAAA0sAAABLAAADSwAAAUsAAANoAAAAGgAAAhoAAAIaAAAAGgAAA0sAAAFLAAADSwAAAksAAAFLAAAASwAAAEsAAANLAAABSwAAAUsAAANLAAADSwAAARoAAAMaAAACGgAAAhoAAAJLAAAASwAAAEsAAABLAAACSwAAA0sAAAJLAAADSwAAAksAAAJLAAAASwAAA2gAAAAaAAAAGgAAABoAAAIaAAADaAAAAGgAAABoAAAAaAAAAEsAAAJoAAAASwAAA2gAAABoAAAAaAAAAGgAAABoAAAAGgAAAxoAAAMaAAACGgAAAGgAAAAaAAAAGgAAAxoAAAFLAAABSwAAAksAAANoAAAAGgAAARoAAAAaAAACaAAAAGgAAABoAAAAGgAAAmUAAAFoAAAAGgAAABoAAAMaAAACSwAAAUsAAABLAAADaAAAABoAAAEaAAABGgAAAGgAAABlAAADZQAAAWUAAAJlAAACaAAAABoAAAJoAAAAaAAAAEsAAAFoAAAASwAAAWgAAABoAAAASwAAAWgAAABoAAAAZQAAAWUAAABlAAABZQAAA0sAAANLAAAASwAAA0sAAAFLAAACSwAAAksAAABLAAABSwAAAUsAAAFLAAAAaAAAAGUAAAJlAAABZQAAAGUAAAJLAAABSwAAA0sAAAJLAAAASwAAAksAAAJLAAABSwAAA0sAAAJLAAAASwAAAksAAAFlAAACZQAAAmUAAABlAAABSwAAAUsAAABLAAADSwAAAEsAAAJLAAABSwAAAUsAAAFLAAADSwAAAEsAAABoAAAAZQAAAWUAAAFlAAACZQAAAWgAAABoAAAASwAAAGgAAABoAAAAaAAAAGgAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABDAAAAQwAAAEMAAABDAAAAQwAAAGgAAABLAAADSwAAAksAAAJLAAACSwAAAksAAAFLAAABSwAAAEsAAAFLAAABQwAAAEMAAABDAAAAQwAAAEMAAABDAAAASwAAAksAAANLAAADSwAAAEsAAAFLAAADSwAAAUsAAABLAAABSwAAAg== + tiles: RwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAAFHAAABRwAAAkcAAANHAAACRwAAA0cAAABHAAADRwAAAUcAAANkAAAAFgAAAhYAAAIWAAAAFgAAA0cAAAFHAAADRwAAAkcAAAFHAAAARwAAAEcAAANHAAABRwAAAUcAAANHAAADRwAAARYAAAMWAAACFgAAAhYAAAJHAAAARwAAAEcAAABHAAACRwAAA0cAAAJHAAADRwAAAkcAAAJHAAAARwAAA2QAAAAWAAAAFgAAABYAAAIWAAADZAAAAGQAAABkAAAAZAAAAEcAAAJkAAAARwAAA2QAAABkAAAAZAAAAGQAAABkAAAAFgAAAxYAAAMWAAACFgAAAGQAAAAWAAAAFgAAAxYAAAFHAAABRwAAAkcAAANkAAAAFgAAARYAAAAWAAACZAAAAGQAAABkAAAAFgAAAmEAAAFkAAAAFgAAABYAAAMWAAACRwAAAUcAAABHAAADZAAAABYAAAEWAAABFgAAAGQAAABhAAADYQAAAWEAAAJhAAACZAAAABYAAAJkAAAAZAAAAEcAAAFkAAAARwAAAWQAAABkAAAARwAAAWQAAABkAAAAYQAAAWEAAABhAAABYQAAA0cAAANHAAAARwAAA0cAAAFHAAACRwAAAkcAAABHAAABRwAAAUcAAAFHAAAAZAAAAGEAAAJhAAABYQAAAGEAAAJHAAABRwAAA0cAAAJHAAAARwAAAkcAAAJHAAABRwAAA0cAAAJHAAAARwAAAkcAAAFhAAACYQAAAmEAAABhAAABRwAAAUcAAABHAAADRwAAAEcAAAJHAAABRwAAAUcAAAFHAAADRwAAAEcAAABkAAAAYQAAAWEAAAFhAAACYQAAAWQAAABkAAAARwAAAGQAAABkAAAAZAAAAGQAAABHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAGQAAABHAAADRwAAAkcAAAJHAAACRwAAAkcAAAFHAAABRwAAAEcAAAFHAAABPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAARwAAAkcAAANHAAADRwAAAEcAAAFHAAADRwAAAUcAAABHAAABRwAAAg== -1,1: ind: -1,1 - tiles: aAAAAGUAAAFlAAACZQAAAmUAAAFlAAADaAAAAGUAAAJlAAAAZQAAAWUAAABlAAADZQAAA2gAAABLAAAASwAAAWgAAABlAAADZQAAA2UAAAJlAAACZQAAAWgAAABlAAADZQAAAWUAAAJlAAABZQAAAGUAAAFoAAAASwAAAUsAAANoAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAFoAAAAaAAAAEsAAAJLAAACSwAAAksAAANLAAADSwAAAksAAAJLAAAASwAAA0sAAAJLAAABSwAAAksAAAFLAAADSwAAA0sAAAFLAAAASwAAAEsAAABLAAABSwAAAEsAAANLAAACSwAAAksAAAJLAAAASwAAAEsAAABLAAACSwAAA0sAAAJLAAABSwAAAksAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAABSwAAAEsAAANLAAAASwAAAUsAAABLAAACSwAAA0sAAAJLAAABaAAAAEsAAABLAAADSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAAFoAAAAUAAAAFAAAABQAAAAaAAAAFAAAABQAAAAUAAAAGgAAABQAAAAUAAAAFAAAABoAAAASwAAA0sAAANLAAABaAAAAFAAAABQAAAAUAAAAGgAAABQAAAAUAAAAFAAAABoAAAAUAAAAFAAAABQAAAAaAAAAGgAAABLAAABaAAAAGgAAABoAAAASwAAAWgAAABoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABLAAACaAAAAGgAAABLAAABSwAAAksAAAJLAAABSwAAA0sAAAJLAAACSwAAAksAAANLAAABSwAAAksAAAFLAAACSwAAAEsAAAFoAAAASwAAA0sAAABLAAABSwAAAEsAAANLAAACSwAAA0sAAANLAAACSwAAA0sAAANLAAADSwAAAEsAAAFLAAADaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAEsAAAFLAAADaAAAAEsAAAJLAAADSwAAAksAAANLAAABSwAAAhoAAAIaAAAAGgAAAxoAAAAaAAAAaAAAABoAAAJDAAAAQwAAAEMAAABLAAABSwAAA2gAAABoAAAAaAAAAEsAAAAaAAABGgAAARoAAAAaAAADGgAAAGgAAABLAAADQwAAAEMAAABDAAAASwAAAUsAAABoAAAAQwAAAEMAAABDAAAAGgAAAhoAAAAaAAACGgAAABoAAABoAAAASwAAA0MAAABDAAAAQwAAAEsAAAFLAAAAaAAAAEMAAABDAAAAQwAAAA== + tiles: ZAAAAGEAAAFhAAACYQAAAmEAAAFhAAADZAAAAGEAAAJhAAAAYQAAAWEAAABhAAADYQAAA2QAAABHAAAARwAAAWQAAABhAAADYQAAA2EAAAJhAAACYQAAAWQAAABhAAADYQAAAWEAAAJhAAABYQAAAGEAAAFkAAAARwAAAUcAAANkAAAAZAAAAEcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAFkAAAAZAAAAEcAAAJHAAACRwAAAkcAAANHAAADRwAAAkcAAAJHAAAARwAAA0cAAAJHAAABRwAAAkcAAAFHAAADRwAAA0cAAAFHAAAARwAAAEcAAABHAAABRwAAAEcAAANHAAACRwAAAkcAAAJHAAAARwAAAEcAAABHAAACRwAAA0cAAAJHAAABRwAAAkcAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAABRwAAAEcAAANHAAAARwAAAUcAAABHAAACRwAAA0cAAAJHAAABZAAAAEcAAABHAAADRwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAAARwAAAEcAAAFkAAAATAAAAEwAAABMAAAAZAAAAEwAAABMAAAATAAAAGQAAABMAAAATAAAAEwAAABkAAAARwAAA0cAAANHAAABZAAAAEwAAABMAAAATAAAAGQAAABMAAAATAAAAEwAAABkAAAATAAAAEwAAABMAAAAZAAAAGQAAABHAAABZAAAAGQAAABkAAAARwAAAWQAAABkAAAAZAAAAEcAAABkAAAAZAAAAGQAAABHAAACZAAAAGQAAABHAAABRwAAAkcAAAJHAAABRwAAA0cAAAJHAAACRwAAAkcAAANHAAABRwAAAkcAAAFHAAACRwAAAEcAAAFkAAAARwAAA0cAAABHAAABRwAAAEcAAANHAAACRwAAA0cAAANHAAACRwAAA0cAAANHAAADRwAAAEcAAAFHAAADZAAAAGQAAABkAAAAZAAAABYAAABkAAAAZAAAAEcAAAFHAAADZAAAAEcAAAJHAAADRwAAAkcAAANHAAABRwAAAhYAAAIWAAAAFgAAAxYAAAAWAAAAZAAAABYAAAI/AAAAPwAAAD8AAABHAAABRwAAA2QAAABkAAAAZAAAAEcAAAAWAAABFgAAARYAAAAWAAADFgAAAGQAAABHAAADPwAAAD8AAAA/AAAARwAAAUcAAABkAAAAPwAAAD8AAAA/AAAAFgAAAhYAAAAWAAACFgAAABYAAABkAAAARwAAAz8AAAA/AAAAPwAAAEcAAAFHAAAAZAAAAD8AAAA/AAAAPwAAAA== 1,1: ind: 1,1 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABDAAAAaAAAAGgAAABoAAAAaAAAAEAAAABAAAAAQAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABDAAAAQwAAAEMAAABoAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAQwAAAEMAAABDAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAGgAAA2gAAABoAAAAaAAAAFcAAABoAAAAaAAAAEMAAABDAAAAQwAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAABoAAAMaAAAAGgAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAaAAAAGgAAABoAAANoAAAAVwAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAGgAAARoAAAIaAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAABoAAANoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABlAAABZQAAAWUAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZQAAAGUAAAFlAAACaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGUAAAJlAAADZQAAA2gAAABXAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGcAAABlAAACZQAAABoAAAFoAAAAVwAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABnAAAAZQAAA2UAAAAaAAABaAAAAFcAAABoAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABnAAAAZwAAAGcAAABLAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAASwAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAA/AAAAZAAAAGQAAABkAAAAZAAAADwAAAA8AAAAPAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAA/AAAAPwAAAD8AAABkAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAGQAAABkAAAAPwAAAD8AAAA/AAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAFgAAA2QAAABkAAAAZAAAAFMAAABkAAAAZAAAAD8AAAA/AAAAPwAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAAAAAABYAAAMWAAAAFgAAABYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAWAAAAFgAAABYAAANkAAAAUwAAAGQAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAFgAAARYAAAIWAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAABYAAANkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABhAAABYQAAAWEAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYQAAAGEAAAFhAAACZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGEAAAJhAAADYQAAA2QAAABTAAAAZAAAAFMAAABTAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGMAAABhAAACYQAAABYAAAFkAAAAUwAAAGQAAABTAAAAUwAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABjAAAAYQAAA2EAAAAWAAABZAAAAFMAAABkAAAAUwAAAFMAAABTAAAAUwAAAFMAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAFMAAABTAAAAUwAAAFMAAABTAAAAZAAAAGQAAABjAAAAYwAAAGMAAABHAAAARwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAARwAAAEcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAA== -1,2: ind: -1,2 - tiles: GgAAAxoAAAIaAAABGgAAARoAAAJoAAAASwAAA0sAAABLAAABSwAAAUsAAAJLAAABaAAAAEMAAABDAAAAQwAAAGgAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAmgAAABDAAAAQwAAAEMAAABLAAACSwAAAksAAAFLAAADSwAAAEsAAANLAAABSwAAAksAAABoAAAASwAAAksAAAFoAAAAaAAAAGgAAABoAAAASwAAAEsAAANLAAADSwAAAksAAABLAAABSwAAA0sAAABLAAACSwAAAUsAAANLAAAAaAAAABoAAAAaAAABGgAAAUsAAAFLAAABSwAAAksAAAJLAAADSwAAAUsAAAJLAAAASwAAAEsAAAJLAAACSwAAAWgAAAAaAAAASwAAA0sAAAJoAAAAaAAAAGgAAABoAAAAaAAAABoAAAJoAAAAaAAAAEsAAABLAAAASwAAAEsAAAJoAAAAGgAAA0sAAAFLAAAAAAAAAAAAAAAAAAAAaAAAABoAAAAaAAAAGgAAAmgAAABoAAAAaAAAAEsAAAJoAAAAaAAAABoAAANLAAADSwAAA2gAAABoAAAAaAAAAGgAAAAaAAABGgAAABoAAAMaAAABaAAAAEsAAAFLAAAASwAAAWgAAAAaAAAAGgAAAxoAAAFlAAADZQAAAmUAAAFoAAAAGgAAARoAAAEaAAABGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAA2UAAABlAAADaAAAABoAAAAaAAADGgAAABoAAAJoAAAASwAAA0sAAABLAAACaAAAAGgAAABoAAAAaAAAAGUAAABlAAADZQAAAWgAAABoAAAAGgAAA2gAAABoAAAAaAAAAGgAAABLAAACaAAAAGgAAABnAAAAZwAAAGcAAAAaAAABGgAAAhoAAAAaAAAAGgAAAhoAAAEaAAADGgAAAhoAAAAaAAAAGgAAABoAAABoAAAAZwAAAGcAAABnAAAAGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABaAAAAGcAAABnAAAAZwAAABoAAAIaAAABGgAAABoAAAIaAAACGgAAABoAAAEaAAADGgAAAhoAAAMaAAADGgAAAmgAAAAAAAAAAAAAAAAAAABoAAAAaAAAABoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAA2UAAABlAAABZQAAAWUAAAFoAAAASwAAAEsAAABLAAACSwAAAUsAAABLAAADaAAAACwAAAAaAAACLAAAAA== + tiles: FgAAAxYAAAIWAAABFgAAARYAAAJkAAAARwAAA0cAAABHAAABRwAAAUcAAAJHAAABZAAAAD8AAAA/AAAAPwAAAGQAAAAWAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAmQAAAA/AAAAPwAAAD8AAABHAAACRwAAAkcAAAFHAAADRwAAAEcAAANHAAABRwAAAkcAAABkAAAARwAAAkcAAAFkAAAAZAAAAGQAAABkAAAARwAAAEcAAANHAAADRwAAAkcAAABHAAABRwAAA0cAAABHAAACRwAAAUcAAANHAAAAZAAAABYAAAAWAAABFgAAAUcAAAFHAAABRwAAAkcAAAJHAAADRwAAAUcAAAJHAAAARwAAAEcAAAJHAAACRwAAAWQAAAAWAAAARwAAA0cAAAJkAAAAZAAAAGQAAABkAAAAZAAAABYAAAJkAAAAZAAAAEcAAABHAAAARwAAAEcAAAJkAAAAFgAAA0cAAAFHAAAAAAAAAAAAAAAAAAAAZAAAABYAAAAWAAAAFgAAAmQAAABkAAAAZAAAAEcAAAJkAAAAZAAAABYAAANHAAADRwAAA2QAAABkAAAAZAAAAGQAAAAWAAABFgAAABYAAAMWAAABZAAAAEcAAAFHAAAARwAAAWQAAAAWAAAAFgAAAxYAAAFhAAADYQAAAmEAAAFkAAAAFgAAARYAAAEWAAABFgAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAA2EAAABhAAADZAAAABYAAAAWAAADFgAAABYAAAJkAAAARwAAA0cAAABHAAACZAAAAGQAAABkAAAAZAAAAGEAAABhAAADYQAAAWQAAABkAAAAFgAAA2QAAABkAAAAZAAAAGQAAABHAAACZAAAAGQAAABjAAAAYwAAAGMAAAAWAAABFgAAAhYAAAAWAAAAFgAAAhYAAAEWAAADFgAAAhYAAAAWAAAAFgAAABYAAABkAAAAYwAAAGMAAABjAAAAFgAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAABZAAAAGMAAABjAAAAYwAAABYAAAIWAAABFgAAABYAAAIWAAACFgAAABYAAAEWAAADFgAAAhYAAAMWAAADFgAAAmQAAAAAAAAAAAAAAAAAAABkAAAAZAAAABYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAA2EAAABhAAABYQAAAWEAAAFkAAAARwAAAEcAAABHAAACRwAAAUcAAABHAAADZAAAACgAAAAWAAACKAAAAA== 0,2: ind: 0,2 - tiles: QwAAAEMAAABDAAAAQwAAAEMAAABoAAAASwAAAksAAAFLAAACSwAAA0sAAAFLAAAASwAAAUsAAAFLAAACSwAAA0MAAABDAAAAQwAAAEMAAABDAAAAaAAAAEsAAABLAAACSwAAAEsAAAJLAAADSwAAAEsAAAJLAAABSwAAAEsAAANoAAAASwAAAUsAAAJoAAAAaAAAAGgAAABoAAAAaAAAABoAAAFoAAAAaAAAAEsAAANLAAABSwAAAEsAAANLAAABGgAAA0sAAABLAAACSwAAA0sAAANoAAAAGgAAABoAAAAaAAACGgAAAmgAAABLAAADSwAAAUsAAAFLAAAASwAAA0sAAABLAAACSwAAAEsAAAFLAAAASwAAAhoAAAAaAAABGgAAAhoAAANoAAAAaAAAAGgAAABoAAAAGgAAAWgAAABLAAABSwAAAUsAAAFLAAADSwAAAUsAAAAaAAABGgAAARoAAAAaAAACGgAAA2gAAAAaAAAAGgAAAxoAAAMaAAAASwAAAksAAABLAAABSwAAAksAAANoAAAAGgAAAhoAAAMaAAAAGgAAAxoAAAFoAAAAZQAAA2UAAABlAAADZQAAABoAAAMaAAAAGgAAAxoAAAMaAAAAaAAAABoAAAMaAAAAGgAAABoAAAIaAAADaAAAAGUAAAFlAAABZQAAA2UAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABGgAAAhoAAAEaAAABGgAAAWgAAABlAAAAZQAAAmUAAAJlAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAEaAAACGgAAABoAAABoAAAAZQAAAmUAAAFlAAAAZQAAAmcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAGgAAARoAAAMsAAAAGgAAACwAAABoAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAA== + tiles: PwAAAD8AAAA/AAAAPwAAAD8AAABkAAAARwAAAkcAAAFHAAACRwAAA0cAAAFHAAAARwAAAUcAAAFHAAACRwAAAz8AAAA/AAAAPwAAAD8AAAA/AAAAZAAAAEcAAABHAAACRwAAAEcAAAJHAAADRwAAAEcAAAJHAAABRwAAAEcAAANkAAAARwAAAUcAAAJkAAAAZAAAAGQAAABkAAAAZAAAABYAAAFkAAAAZAAAAEcAAANHAAABRwAAAEcAAANHAAABFgAAA0cAAABHAAACRwAAA0cAAANkAAAAFgAAABYAAAAWAAACFgAAAmQAAABHAAADRwAAAUcAAAFHAAAARwAAA0cAAABHAAACRwAAAEcAAAFHAAAARwAAAhYAAAAWAAABFgAAAhYAAANkAAAAZAAAAGQAAABkAAAAFgAAAWQAAABHAAABRwAAAUcAAAFHAAADRwAAAUcAAAAWAAABFgAAARYAAAAWAAACFgAAA2QAAAAWAAAAFgAAAxYAAAMWAAAARwAAAkcAAABHAAABRwAAAkcAAANkAAAAFgAAAhYAAAMWAAAAFgAAAxYAAAFkAAAAYQAAA2EAAABhAAADYQAAABYAAAMWAAAAFgAAAxYAAAMWAAAAZAAAABYAAAMWAAAAFgAAABYAAAIWAAADZAAAAGEAAAFhAAABYQAAA2EAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAABFgAAAhYAAAEWAAABFgAAAWQAAABhAAAAYQAAAmEAAAJhAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAABYAAAEWAAACFgAAABYAAABkAAAAYQAAAmEAAAFhAAAAYQAAAmMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAFgAAARYAAAMoAAAAFgAAACgAAABkAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAA== 1,2: ind: 1,2 - tiles: SwAAA0sAAANLAAADSwAAAmgAAABDAAAAQwAAAEMAAABDAAAAQwAAAGgAAABnAAAAAAAAAGcAAAAAAAAAAAAAAEsAAAFLAAAASwAAAEsAAAFDAAAAQwAAAEMAAABDAAAAQwAAAEMAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABLAAABSwAAAEsAAAFLAAADaAAAAEMAAABDAAAAQwAAAEMAAABDAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAASwAAAEsAAAFLAAACSwAAAGgAAABDAAAAQwAAAEMAAABDAAAAQwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAASwAAAEsAAAJoAAAAQwAAAEMAAABDAAAAQwAAAEMAAABoAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAksAAANoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAGgAAABnAAAAZwAAAAAAAABoAAAASwAAAksAAABLAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGUAAAFoAAAAAAAAAGcAAAAAAAAAaAAAAEsAAABLAAAASwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABlAAABaAAAAAAAAABnAAAAZwAAAGgAAABLAAACSwAAAUsAAAJoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAWgAAAAAAAAAAAAAAAAAAABoAAAASwAAA0sAAANLAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAEsAAAFLAAACSwAAAmgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: RwAAA0cAAANHAAADRwAAAmQAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAGQAAABjAAAAAAAAAGMAAAAAAAAAAAAAAEcAAAFHAAAARwAAAEcAAAE/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABHAAABRwAAAEcAAAFHAAADZAAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAARwAAAEcAAAFHAAACRwAAAGQAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAARwAAAEcAAAJkAAAAPwAAAD8AAAA/AAAAPwAAAD8AAABkAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAWAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAkcAAANkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAGQAAABjAAAAYwAAAAAAAABkAAAARwAAAkcAAABHAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGEAAAFkAAAAAAAAAGMAAAAAAAAAZAAAAEcAAABHAAAARwAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABhAAABZAAAAAAAAABjAAAAYwAAAGQAAABHAAACRwAAAUcAAAJkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAWQAAAAAAAAAAAAAAAAAAABkAAAARwAAA0cAAANHAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAAEcAAAFHAAACRwAAAmQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,1: ind: 2,1 - tiles: QAAAAEAAAABAAAAAQAAAAEAAAABAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAA== + tiles: PAAAADwAAAA8AAAAPAAAADwAAAA8AAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAA== 2,0: ind: 2,0 - tiles: NwAAADcAAABoAAAAQwAAAEMAAABDAAAAQwAAAEMAAABDAAAAaAAAACwAAAAsAAAALAAAADQAAAA0AAAANAAAAGgAAAAaAAABaAAAAGgAAAAaAAACaAAAAEMAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAVwAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABXAAAAaAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEsAAANLAAACSwAAA2gAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABoAAAASwAAAUsAAANoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAaAAAAEsAAAJLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEsAAABLAAACSwAAAWgAAAAAAAAAZwAAAAAAAABoAAAAVwAAAGgAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAaAAAAFcAAABoAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABXAAAAaAAAAA== + tiles: MwAAADMAAABkAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAZAAAACgAAAAoAAAAKAAAADAAAAAwAAAAMAAAAGQAAAAWAAABZAAAAGQAAAAWAAACZAAAAD8AAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAGQAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAUwAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABTAAAAZAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAAEcAAANHAAACRwAAA2QAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAABkAAAARwAAAUcAAANkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAZAAAAEcAAAJHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAAEcAAABHAAACRwAAAWQAAAAAAAAAYwAAAAAAAABkAAAAUwAAAGQAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAZAAAAFMAAABkAAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABTAAAAZAAAAA== -2,1: ind: -2,1 - tiles: aAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAWAAAAGgAAABYAAAAaAAAAGUAAANoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAAUsAAAJLAAABSwAAAmUAAAJlAAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAAFLAAADSwAAAEsAAABoAAAAZQAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAABaAAAAEsAAAFoAAAAZQAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAksAAAJLAAACSwAAA2gAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAABLAAACSwAAAEsAAABlAAACaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAABSwAAAksAAANLAAADaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAAUsAAAJLAAACSwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAaAAAAA== + tiles: ZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAVAAAAGQAAABUAAAAZAAAAGEAAANkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAARwAAAUcAAAJHAAABRwAAAmEAAAJhAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEcAAAFHAAADRwAAAEcAAABkAAAAYQAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABHAAABZAAAAEcAAAFkAAAAYQAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAAkcAAAJHAAACRwAAA2QAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEcAAABHAAACRwAAAEcAAABhAAACZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABHAAABRwAAAkcAAANHAAADZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAARwAAAUcAAAJHAAACRwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAZAAAAA== -2,2: ind: -2,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAACkAAABoAAAANwAAADcAAABoAAAANwAAADcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAAApAAAAaAAAADcAAAA3AAAAaAAAADcAAAA3AAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAKQAAAGgAAAA3AAAANwAAAGgAAAA3AAAANwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAGgAAABoAAAIaAAACGgAAAxoAAAIaAAADGgAAAxoAAAMaAAADAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAGgAAAQAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAAAaAAABGgAAAhoAAAIaAAAAGgAAAhoAAAMaAAABGgAAARoAAAIAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAANwAAADcAAABoAAAANwAAADcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAADcAAAA3AAAAaAAAADcAAAA3AAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAACUAAABkAAAAMwAAADMAAABkAAAAMwAAADMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAAAlAAAAZAAAADMAAAAzAAAAZAAAADMAAAAzAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAAJQAAAGQAAAAzAAAAMwAAAGQAAAAzAAAAMwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAFgAAABYAAAIWAAACFgAAAxYAAAIWAAADFgAAAxYAAAMWAAADAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAABYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAAAFgAAAQAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAAAWAAABFgAAAhYAAAIWAAAAFgAAAhYAAAMWAAABFgAAARYAAAIAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAMwAAADMAAABkAAAAMwAAADMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAADMAAAAzAAAAZAAAADMAAAAzAAAAZAAAAA== 0,3: ind: 0,3 - tiles: GgAAAxoAAAAsAAAAGgAAACwAAABoAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAANLAAADSwAAA0sAAAJLAAACaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAACSwAAAksAAAFLAAAASwAAAWgAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAUsAAABLAAADSwAAA0sAAAFoAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: FgAAAxYAAAAoAAAAFgAAACgAAABkAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEcAAANHAAADRwAAA0cAAAJHAAACZAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHAAACRwAAAkcAAAFHAAAARwAAAWQAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAUcAAABHAAADRwAAA0cAAAFkAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,0: ind: -3,0 - tiles: aAAAAGgAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAUsAAAJLAAABSwAAAEsAAAFLAAABSwAAAksAAANLAAABaAAAAAAAAABnAAAAAAAAAGgAAABoAAAASwAAAUsAAAJLAAAASwAAA0sAAABLAAAASwAAAUsAAABLAAACSwAAA2gAAAAAAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAAASwAAAUsAAAFLAAABSwAAA0sAAAFLAAAASwAAAksAAAFoAAAAZwAAAGgAAABLAAABGgAAAmgAAABLAAADSwAAAksAAABLAAACSwAAAEsAAABLAAAASwAAAEsAAAJLAAADaAAAAAAAAABoAAAASwAAARIAAABoAAAASwAAAEsAAABLAAADSwAAAUsAAABLAAADSwAAA0sAAANLAAABSwAAAGgAAABnAAAAaAAAAEsAAAESAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGgAAABLAAADEgAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGcAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAAAAAAAAZwAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAZwAAAGcAAABnAAAAaAAAAGcAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAZwAAAGcAAABnAAAAaAAAAGcAAAAAAAAAaAAAAA== + tiles: ZAAAAGQAAABHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAUcAAAJHAAABRwAAAEcAAAFHAAABRwAAAkcAAANHAAABZAAAAAAAAABjAAAAAAAAAGQAAABkAAAARwAAAUcAAAJHAAAARwAAA0cAAABHAAAARwAAAUcAAABHAAACRwAAA2QAAAAAAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAAARwAAAUcAAAFHAAABRwAAA0cAAAFHAAAARwAAAkcAAAFkAAAAYwAAAGQAAABHAAABFgAAAmQAAABHAAADRwAAAkcAAABHAAACRwAAAEcAAABHAAAARwAAAEcAAAJHAAADZAAAAAAAAABkAAAARwAAAQ4AAABkAAAARwAAAEcAAABHAAADRwAAAUcAAABHAAADRwAAA0cAAANHAAABRwAAAGQAAABjAAAAZAAAAEcAAAEOAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGQAAABHAAADDgAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGMAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAAAAAAAAYwAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAYwAAAGMAAABjAAAAZAAAAGMAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAYwAAAGMAAABjAAAAZAAAAGMAAAAAAAAAZAAAAA== -3,1: ind: -3,1 - tiles: VwAAAFcAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAAAAAABoAAAAZwAAAAAAAAAAAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGUAAAJlAAADaAAAAGUAAAFlAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAGgAAABlAAAAZQAAA2gAAABoAAAAZQAAAWgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGUAAAFlAAACaAAAAGUAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGUAAABoAAAAaAAAAFcAAABoAAAAaAAAAGUAAABlAAAAaAAAAGgAAABoAAAAaAAAAGUAAAJoAAAAZQAAA2gAAABlAAAAaAAAAFcAAABXAAAAaAAAAGUAAAJoAAAAZQAAAmgAAABoAAAAZQAAAWUAAAFoAAAAZQAAAWgAAABoAAAAZQAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAA2UAAABlAAACaAAAAGUAAANoAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAZQAAA2UAAAFlAAADZQAAAWUAAANoAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: UwAAAFMAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAAAAAABkAAAAYwAAAAAAAAAAAAAAZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGEAAAJhAAADZAAAAGEAAAFhAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAAGQAAABhAAAAYQAAA2QAAABkAAAAYQAAAWQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGEAAAFhAAACZAAAAGEAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGEAAABkAAAAZAAAAFMAAABkAAAAZAAAAGEAAABhAAAAZAAAAGQAAABkAAAAZAAAAGEAAAJkAAAAYQAAA2QAAABhAAAAZAAAAFMAAABTAAAAZAAAAGEAAAJkAAAAYQAAAmQAAABkAAAAYQAAAWEAAAFkAAAAYQAAAWQAAABkAAAAYQAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAA2EAAABhAAACZAAAAGEAAANkAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAYQAAA2EAAAFhAAADYQAAAWEAAANkAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -4,1: ind: -4,1 - tiles: ZwAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABXAAAAaAAAAGgAAABnAAAAZwAAAGcAAABoAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAAVwAAAGgAAABXAAAAZwAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAFcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAA== + tiles: YwAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAUwAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAGQAAABTAAAAZAAAAGQAAABjAAAAYwAAAGMAAABkAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABkAAAAUwAAAGQAAABTAAAAYwAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAFMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAA== -4,0: ind: -4,0 - tiles: SwAAA0sAAAFLAAADSwAAA0sAAAJLAAACSwAAAksAAAJLAAAASwAAAEsAAAJoAAAAaAAAAGgAAABYAAAAaAAAAEsAAAFLAAACSwAAAUsAAAJLAAAASwAAAksAAANLAAAASwAAAksAAAJLAAAAaAAAAGgAAABXAAAAaAAAAFcAAABLAAABaAAAAGgAAABLAAABaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABXAAAASwAAA2gAAABLAAADSwAAAEsAAAFLAAAASwAAAUsAAAJoAAAAaAAAAGgAAABLAAABaAAAAGgAAABoAAAAVwAAAEsAAABoAAAASwAAAksAAABLAAACSwAAAEsAAABLAAABaAAAAGgAAABLAAABaAAAAEsAAAFoAAAAaAAAAFcAAABLAAABaAAAAEsAAANLAAABSwAAAksAAANLAAACSwAAAWgAAABoAAAASwAAAUsAAABoAAAAaAAAAGgAAABXAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAASwAAAWgAAABoAAAASwAAAGgAAABoAAAAaAAAAEsAAAFoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABXAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAFcAAABoAAAAaAAAAEsAAANoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABXAAAAVwAAAFcAAABYAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABXAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAFcAAABoAAAAaAAAAA== + tiles: RwAAA0cAAAFHAAADRwAAA0cAAAJHAAACRwAAAkcAAAJHAAAARwAAAEcAAAJkAAAAZAAAAGQAAABUAAAAZAAAAEcAAAFHAAACRwAAAUcAAAJHAAAARwAAAkcAAANHAAAARwAAAkcAAAJHAAAAZAAAAGQAAABTAAAAZAAAAFMAAABHAAABZAAAAGQAAABHAAABZAAAAEcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABTAAAARwAAA2QAAABHAAADRwAAAEcAAAFHAAAARwAAAUcAAAJkAAAAZAAAAGQAAABHAAABZAAAAGQAAABkAAAAUwAAAEcAAABkAAAARwAAAkcAAABHAAACRwAAAEcAAABHAAABZAAAAGQAAABHAAABZAAAAEcAAAFkAAAAZAAAAFMAAABHAAABZAAAAEcAAANHAAABRwAAAkcAAANHAAACRwAAAWQAAABkAAAARwAAAUcAAABkAAAAZAAAAGQAAABTAAAARwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAARwAAAWQAAABkAAAARwAAAGQAAABkAAAAZAAAAEcAAAFkAAAAUwAAAFMAAABTAAAAUwAAAGQAAABTAAAAZAAAAEcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAARwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAZAAAAFMAAABkAAAAZAAAAEcAAANkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAZAAAAGQAAABTAAAAUwAAAFMAAABUAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABTAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAFMAAABkAAAAZAAAAA== -5,0: ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANoAAAASwAAAksAAANLAAADSwAAAEsAAAJLAAABSwAAAksAAABLAAADSwAAA0sAAAFLAAACSwAAA0sAAAFLAAADaAAAAEsAAAFLAAACSwAAAksAAAFLAAADSwAAA0sAAAFLAAABSwAAAUsAAAJLAAABSwAAA0sAAAJLAAABSwAAA2gAAABLAAAASwAAAksAAABLAAABSwAAAEsAAANLAAABSwAAAksAAABLAAABSwAAA0sAAAJLAAAASwAAAksAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA2gAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAASwAAA0sAAAJLAAADaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAABLAAADSwAAA2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAACSwAAAUsAAANoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAksAAAFLAAADaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANkAAAARwAAAkcAAANHAAADRwAAAEcAAAJHAAABRwAAAkcAAABHAAADRwAAA0cAAAFHAAACRwAAA0cAAAFHAAADZAAAAEcAAAFHAAACRwAAAkcAAAFHAAADRwAAA0cAAAFHAAABRwAAAUcAAAJHAAABRwAAA0cAAAJHAAABRwAAA2QAAABHAAAARwAAAkcAAABHAAABRwAAAEcAAANHAAABRwAAAkcAAABHAAABRwAAA0cAAAJHAAAARwAAAkcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA2QAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAARwAAA0cAAAJHAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAABHAAADRwAAA2QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAACRwAAAUcAAANkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAAkcAAAFHAAADZAAAAA== -5,1: ind: -5,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAEsAAAFLAAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAAFLAAADSwAAA2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAAASwAAAUsAAAJoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAAEcAAAFHAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAAFHAAADRwAAA2QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAAARwAAAUcAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -6,0: ind: -6,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -5,-1: ind: -5,-1 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAABLAAAASwAAAWgAAABoAAAAaAAAAEsAAAFLAAAASwAAAWgAAABoAAAAaAAAAEsAAAJLAAABSwAAAEsAAABLAAABSwAAAEsAAANLAAABSwAAA0sAAAJLAAACSwAAA0sAAAFoAAAAaAAAAGgAAABLAAACSwAAA0sAAAFLAAACSwAAA0sAAAFLAAABSwAAAEsAAABLAAAASwAAAEsAAAJLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAA0sAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAAFLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAWgAAABLAAABSwAAA0sAAAJLAAADSwAAAUsAAAJLAAABSwAAAEsAAAFLAAACSwAAA0sAAABLAAACSwAAAEsAAAFoAAAASwAAAUsAAAJLAAADSwAAAUsAAAFLAAABSwAAA0sAAAFLAAAASwAAA0sAAABLAAADSwAAAksAAABLAAACaAAAAEsAAANLAAADSwAAAksAAAFLAAACSwAAA0sAAAJLAAABSwAAAEsAAABLAAACSwAAAUsAAAFLAAACSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAw== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAABHAAAARwAAAWQAAABkAAAAZAAAAEcAAAFHAAAARwAAAWQAAABkAAAAZAAAAEcAAAJHAAABRwAAAEcAAABHAAABRwAAAEcAAANHAAABRwAAA0cAAAJHAAACRwAAA0cAAAFkAAAAZAAAAGQAAABHAAACRwAAA0cAAAFHAAACRwAAA0cAAAFHAAABRwAAAEcAAABHAAAARwAAAEcAAAJHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAA0cAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABHAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAARwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAAFHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAWQAAABHAAABRwAAA0cAAAJHAAADRwAAAUcAAAJHAAABRwAAAEcAAAFHAAACRwAAA0cAAABHAAACRwAAAEcAAAFkAAAARwAAAUcAAAJHAAADRwAAAUcAAAFHAAABRwAAA0cAAAFHAAAARwAAA0cAAABHAAADRwAAAkcAAABHAAACZAAAAEcAAANHAAADRwAAAkcAAAFHAAACRwAAA0cAAAJHAAABRwAAAEcAAABHAAACRwAAAUcAAAFHAAACRwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAAw== -4,-1: ind: -4,-1 - tiles: SwAAAWgAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABEAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAEQAAAEsAAANoAAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABLAAADNwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAAaAAAAFcAAABXAAAAaAAAAGgAAAARAAAASwAAA2gAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAEsAAAJoAAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAABoAAAAQgAAAEIAAABCAAAAQgAAAGgAAABLAAADaAAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAAaAAAAEIAAABCAAAAQgAAAEIAAABoAAAASwAAAWgAAABoAAAAaAAAAGgAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQgAAAEIAAABCAAAAaAAAAEsAAAFLAAADSwAAA0sAAAJLAAADSwAAAUsAAABLAAABSwAAA0sAAAJLAAADaAAAAEIAAABCAAAAQgAAAGgAAABLAAABSwAAA0sAAABLAAAASwAAAEsAAANLAAABSwAAAEsAAABLAAABSwAAA2gAAABCAAAAQgAAAEIAAABoAAAASwAAA2gAAAA3AAAANwAAADcAAAA3AAAANwAAAGgAAAAaAAABSwAAA0sAAANoAAAAaAAAACMAAAFoAAAAaAAAAEsAAABoAAAANwAAADcAAAA3AAAANwAAADcAAABoAAAAGgAAA0sAAANLAAADSwAAAksAAAFLAAACSwAAAEsAAABLAAABaAAAADcAAAA3AAAANwAAADcAAAA3AAAAaAAAABoAAAFLAAABSwAAAksAAANLAAAASwAAAksAAAFLAAAASwAAAGgAAAA3AAAANwAAADcAAAA3AAAANwAAAGgAAAAaAAAASwAAAksAAABLAAAASwAAAUsAAAFLAAAASwAAAw== + tiles: RwAAAWQAAABTAAAAUwAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA0AAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAFMAAABTAAAAZAAAAGQAAABkAAAARwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAADQAAAEcAAANkAAAAMwAAADMAAAAzAAAAMwAAADMAAAAzAAAAMwAAADMAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABHAAADMwAAADMAAAAzAAAAMwAAADMAAAAzAAAAMwAAADMAAAAzAAAAZAAAAFMAAABTAAAAZAAAAGQAAAANAAAARwAAA2QAAAAzAAAAMwAAADMAAAAzAAAAMwAAADMAAAAzAAAAMwAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAEcAAAJkAAAAMwAAADMAAAAzAAAAMwAAADMAAAAzAAAAMwAAADMAAABkAAAAPgAAAD4AAAA+AAAAPgAAAGQAAABHAAADZAAAADMAAAAzAAAAMwAAADMAAAAzAAAAMwAAADMAAAAzAAAAZAAAAD4AAAA+AAAAPgAAAD4AAABkAAAARwAAAWQAAABkAAAAZAAAAGQAAABHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAPgAAAD4AAAA+AAAAZAAAAEcAAAFHAAADRwAAA0cAAAJHAAADRwAAAUcAAABHAAABRwAAA0cAAAJHAAADZAAAAD4AAAA+AAAAPgAAAGQAAABHAAABRwAAA0cAAABHAAAARwAAAEcAAANHAAABRwAAAEcAAABHAAABRwAAA2QAAAA+AAAAPgAAAD4AAABkAAAARwAAA2QAAAAzAAAAMwAAADMAAAAzAAAAMwAAAGQAAAAWAAABRwAAA0cAAANkAAAAZAAAAB8AAAFkAAAAZAAAAEcAAABkAAAAMwAAADMAAAAzAAAAMwAAADMAAABkAAAAFgAAA0cAAANHAAADRwAAAkcAAAFHAAACRwAAAEcAAABHAAABZAAAADMAAAAzAAAAMwAAADMAAAAzAAAAZAAAABYAAAFHAAABRwAAAkcAAANHAAAARwAAAkcAAAFHAAAARwAAAGQAAAAzAAAAMwAAADMAAAAzAAAAMwAAAGQAAAAWAAAARwAAAkcAAABHAAAARwAAAUcAAAFHAAAARwAAAw== -3,-1: ind: -3,-1 - tiles: aAAAAEMAAABDAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAASwAAAhEAAABDAAAAQwAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJoAAAAQwAAAEMAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAACSwAAABoAAAFoAAAAaAAAAGgAAABLAAADEQAAAEMAAABDAAAAaAAAADYAAAA2AAAANgAAAGgAAABLAAADSwAAAEsAAAAaAAAAaAAAAGgAAABoAAAASwAAAWgAAABDAAAAQwAAAGgAAAA2AAAANgAAADYAAABoAAAASwAAAEsAAAJLAAAAGgAAAmgAAABoAAAAaAAAAEsAAAARAAAAQwAAAEMAAABoAAAANgAAADYAAAA2AAAAaAAAAEsAAABLAAACSwAAABoAAANoAAAAaAAAAGgAAABLAAACaAAAAGgAAABDAAAAaAAAAEsAAABLAAADSwAAAEsAAANLAAAASwAAAksAAAMaAAAAaAAAAGgAAABoAAAAaAAAABoAAAJLAAABSwAAAEsAAAJLAAABSwAAAUsAAANLAAAASwAAAksAAAFLAAACGgAAAmgAAABoAAAAaAAAAGgAAAAaAAADSwAAAEsAAANLAAABSwAAAUsAAAJLAAAASwAAAksAAABLAAACSwAAAxoAAAFoAAAAaAAAAGgAAABoAAAAGgAAAUsAAAJLAAADSwAAAksAAAJLAAAASwAAAksAAAFLAAACSwAAAEsAAAIaAAADaAAAABYAAAAWAAAAFgAAABoAAABLAAACSwAAAEsAAANLAAACSwAAAksAAANLAAADSwAAA0sAAAJLAAABGgAAAmgAAAAWAAAAFgAAABYAAAAaAAABGgAAABoAAAAaAAABGgAAABoAAAAaAAADGgAAABoAAAEaAAADGgAAAxoAAANoAAAAFgAAABYAAAAWAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAWAAAAaAAAAEsAAAFLAAACSwAAA0sAAAFLAAABSwAAA0sAAABLAAACSwAAA0sAAANLAAADSwAAAUsAAANLAAAASwAAAksAAABLAAACSwAAAEsAAAFLAAACSwAAA0sAAANLAAADSwAAAUsAAAJLAAAASwAAAEsAAABLAAABSwAAA0sAAAFLAAADSwAAAksAAAJLAAAASwAAA0sAAABLAAAASwAAA0sAAAFLAAACSwAAAksAAABLAAAASwAAAEsAAABLAAABSwAAAA== + tiles: ZAAAAD8AAAA/AAAAZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAUwAAAGQAAABkAAAARwAAAg0AAAA/AAAAPwAAAGQAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJkAAAAPwAAAD8AAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAACRwAAABYAAAFkAAAAZAAAAGQAAABHAAADDQAAAD8AAAA/AAAAZAAAADIAAAAyAAAAMgAAAGQAAABHAAADRwAAAEcAAAAWAAAAZAAAAGQAAABkAAAARwAAAWQAAAA/AAAAPwAAAGQAAAAyAAAAMgAAADIAAABkAAAARwAAAEcAAAJHAAAAFgAAAmQAAABkAAAAZAAAAEcAAAANAAAAPwAAAD8AAABkAAAAMgAAADIAAAAyAAAAZAAAAEcAAABHAAACRwAAABYAAANkAAAAZAAAAGQAAABHAAACZAAAAGQAAAA/AAAAZAAAAEcAAABHAAADRwAAAEcAAANHAAAARwAAAkcAAAMWAAAAZAAAAGQAAABkAAAAZAAAABYAAAJHAAABRwAAAEcAAAJHAAABRwAAAUcAAANHAAAARwAAAkcAAAFHAAACFgAAAmQAAABkAAAAZAAAAGQAAAAWAAADRwAAAEcAAANHAAABRwAAAUcAAAJHAAAARwAAAkcAAABHAAACRwAAAxYAAAFkAAAAZAAAAGQAAABkAAAAFgAAAUcAAAJHAAADRwAAAkcAAAJHAAAARwAAAkcAAAFHAAACRwAAAEcAAAIWAAADZAAAABIAAAASAAAAEgAAABYAAABHAAACRwAAAEcAAANHAAACRwAAAkcAAANHAAADRwAAA0cAAAJHAAABFgAAAmQAAAASAAAAEgAAABIAAAAWAAABFgAAABYAAAAWAAABFgAAABYAAAAWAAADFgAAABYAAAEWAAADFgAAAxYAAANkAAAAEgAAABIAAAASAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAAAFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAASAAAAZAAAAEcAAAFHAAACRwAAA0cAAAFHAAABRwAAA0cAAABHAAACRwAAA0cAAANHAAADRwAAAUcAAANHAAAARwAAAkcAAABHAAACRwAAAEcAAAFHAAACRwAAA0cAAANHAAADRwAAAUcAAAJHAAAARwAAAEcAAABHAAABRwAAA0cAAAFHAAADRwAAAkcAAAJHAAAARwAAA0cAAABHAAAARwAAA0cAAAFHAAACRwAAAkcAAABHAAAARwAAAEcAAABHAAABRwAAAA== 3,0: ind: 3,0 - tiles: NAAAADQAAABoAAAAaAAAAGgAAABlAAACZQAAAWUAAABlAAABZQAAA2UAAAFoAAAAGgAAABoAAAEaAAAANwAAADQAAAA0AAAAaAAAAGgAAABoAAAAZQAAAWUAAAJlAAACZQAAAGUAAAFlAAACaAAAABoAAAAaAAABaAAAADcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAAFlAAABZQAAAGUAAAFlAAAAZQAAA2gAAAAaAAADGgAAAGgAAAA3AAAAAAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAABZQAAAmUAAABoAAAAaAAAAGgAAABoAAAANwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABnAAAAaAAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAFcAAABXAAAAaAAAAGgAAABXAAAAaAAAAEUAAABFAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAARQAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJbAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABoAAAAVwAAAGgAAABbAAACSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABXAAAAaAAAAFcAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: MAAAADAAAABkAAAAZAAAAGQAAABhAAACYQAAAWEAAABhAAABYQAAA2EAAAFkAAAAFgAAABYAAAEWAAAAMwAAADAAAAAwAAAAZAAAAGQAAABkAAAAYQAAAWEAAAJhAAACYQAAAGEAAAFhAAACZAAAABYAAAAWAAABZAAAADMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAAFhAAABYQAAAGEAAAFhAAAAYQAAA2QAAAAWAAADFgAAAGQAAAAzAAAAAAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAABYQAAAmEAAABkAAAAZAAAAGQAAABkAAAAMwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABjAAAAZAAAAFMAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAZAAAAFMAAABTAAAAZAAAAGQAAABTAAAAZAAAAEEAAABBAAAAZAAAAFMAAABTAAAAUwAAAFMAAABTAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAQQAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJXAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAFMAAABkAAAAUwAAAGQAAABXAAACRwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAUwAAAGQAAABTAAAAZAAAAFMAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== 2,-1: ind: 2,-1 - tiles: aAAAAFsAAABbAAACWwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAA2gAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAANLAAAASwAAA0sAAABLAAABSwAAAEsAAAJLAAAASwAAAksAAAJLAAABSwAAAksAAAFLAAAASwAAAksAAAFLAAACSwAAAksAAABLAAABSwAAA0sAAAJLAAADSwAAAksAAABLAAADSwAAAUsAAABLAAABSwAAAEsAAABLAAABSwAAA0sAAANLAAACSwAAAEsAAAJLAAABSwAAAksAAABLAAAASwAAAEsAAABLAAAASwAAAWgAAABLAAAASwAAAksAAAFLAAABSwAAAUsAAABLAAAASwAAA2gAAABoAAAASwAAA0sAAAJoAAAASwAAAUsAAAJoAAAAaAAAAGgAAAA1AAAANQAAADUAAAA1AAAAaAAAAGgAAABoAAAASwAAAUsAAAFLAAACaAAAAGgAAABLAAACGgAAAk0AAAFNAAAATQAAA00AAANNAAABTQAAAk0AAAJNAAADaAAAAEsAAANLAAABSwAAABoAAAEaAAADSwAAA2gAAABNAAACTQAAAk0AAAJNAAACTQAAAE0AAANNAAABTQAAAWgAAAAaAAACSwAAAUsAAAFLAAADSwAAAEsAAANlAAACTQAAAU0AAAJNAAADTQAAA00AAAJNAAACTQAAAU0AAAFoAAAAGgAAAUsAAANLAAADSwAAA0sAAANLAAACaAAAAE0AAANNAAADTQAAA00AAANNAAADTQAAAk0AAAFNAAADSwAAAhoAAAJLAAABSwAAAhoAAAAaAAABSwAAAhoAAAJNAAABTQAAAE0AAAJNAAADTQAAAk0AAABNAAAATQAAAUsAAAEaAAABSwAAAEsAAAEaAAADGgAAAEsAAANoAAAATQAAAE0AAAFNAAACTQAAAk0AAABNAAACTQAAAE0AAAJLAAAAGgAAAEsAAABLAAABSwAAAUsAAAFLAAACaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAANLAAABSwAAAksAAABLAAAASwAAAmgAAABoAAAAaAAAAEMAAABDAAAAQwAAAEMAAABDAAAAQwAAAGgAAAAaAAADGgAAARoAAAIaAAAAGgAAAhoAAANoAAAAaAAAAGgAAABDAAAAQwAAAEMAAABDAAAAQwAAAEMAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAANwAAADcAAABoAAAAQwAAAEMAAABDAAAAQwAAAEMAAABDAAAASwAAAiwAAAAsAAAALAAAADQAAAA0AAAANAAAAA== + tiles: ZAAAAFcAAABXAAACVwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAA2QAAABkAAAAZAAAAEcAAABHAAAARwAAAEcAAANHAAAARwAAA0cAAABHAAABRwAAAEcAAAJHAAAARwAAAkcAAAJHAAABRwAAAkcAAAFHAAAARwAAAkcAAAFHAAACRwAAAkcAAABHAAABRwAAA0cAAAJHAAADRwAAAkcAAABHAAADRwAAAUcAAABHAAABRwAAAEcAAABHAAABRwAAA0cAAANHAAACRwAAAEcAAAJHAAABRwAAAkcAAABHAAAARwAAAEcAAABHAAAARwAAAWQAAABHAAAARwAAAkcAAAFHAAABRwAAAUcAAABHAAAARwAAA2QAAABkAAAARwAAA0cAAAJkAAAARwAAAUcAAAJkAAAAZAAAAGQAAAAxAAAAMQAAADEAAAAxAAAAZAAAAGQAAABkAAAARwAAAUcAAAFHAAACZAAAAGQAAABHAAACFgAAAkkAAAFJAAAASQAAA0kAAANJAAABSQAAAkkAAAJJAAADZAAAAEcAAANHAAABRwAAABYAAAEWAAADRwAAA2QAAABJAAACSQAAAkkAAAJJAAACSQAAAEkAAANJAAABSQAAAWQAAAAWAAACRwAAAUcAAAFHAAADRwAAAEcAAANhAAACSQAAAUkAAAJJAAADSQAAA0kAAAJJAAACSQAAAUkAAAFkAAAAFgAAAUcAAANHAAADRwAAA0cAAANHAAACZAAAAEkAAANJAAADSQAAA0kAAANJAAADSQAAAkkAAAFJAAADRwAAAhYAAAJHAAABRwAAAhYAAAAWAAABRwAAAhYAAAJJAAABSQAAAEkAAAJJAAADSQAAAkkAAABJAAAASQAAAUcAAAEWAAABRwAAAEcAAAEWAAADFgAAAEcAAANkAAAASQAAAEkAAAFJAAACSQAAAkkAAABJAAACSQAAAEkAAAJHAAAAFgAAAEcAAABHAAABRwAAAUcAAAFHAAACZAAAAGQAAABkAAAAZAAAABYAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAANHAAABRwAAAkcAAABHAAAARwAAAmQAAABkAAAAZAAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAGQAAAAWAAADFgAAARYAAAIWAAAAFgAAAhYAAANkAAAAZAAAAGQAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAMwAAADMAAABkAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAARwAAAigAAAAoAAAAKAAAADAAAAAwAAAAMAAAAA== 3,1: ind: 3,1 - tiles: VwAAAFcAAABXAAAAVwAAAGgAAABXAAAAaAAAAFcAAABoAAAAVwAAAFcAAABoAAAAJgAAAGgAAAAmAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABXAAAAaAAAAFcAAABXAAAAaAAAACYAAAAmAAAAJgAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABXAAAAVwAAAGgAAAAmAAAAJgAAAGgAAABoAAAAVwAAAGgAAABnAAAAAAAAAAAAAABnAAAAaAAAAFcAAABoAAAAVwAAAFcAAABoAAAAJgAAACYAAABoAAAAaAAAAFcAAABoAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABXAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAaAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: UwAAAFMAAABTAAAAUwAAAGQAAABTAAAAZAAAAFMAAABkAAAAUwAAAFMAAABkAAAAIgAAAGQAAAAiAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAUwAAAGQAAABTAAAAZAAAAFMAAABTAAAAZAAAACIAAAAiAAAAIgAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABTAAAAUwAAAGQAAAAiAAAAIgAAAGQAAABkAAAAUwAAAGQAAABjAAAAAAAAAAAAAABjAAAAZAAAAFMAAABkAAAAUwAAAFMAAABkAAAAIgAAACIAAABkAAAAZAAAAFMAAABkAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABTAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAZAAAAAAAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 4,1: ind: 4,1 - tiles: GgAAAWgAAABoAAAANwAAADcAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAFoAAAANwAAADcAAAA3AAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAADNwAAAGgAAAA3AAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAGgAAAA3AAAANwAAADcAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAGgAAAmgAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAABoAAAFoAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAaAAADaAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: FgAAAWQAAABkAAAAMwAAADMAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAFkAAAAMwAAADMAAAAzAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAADMwAAAGQAAAAzAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAGQAAAAzAAAAMwAAADMAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAWAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAFgAAAmQAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAABYAAAFkAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAWAAADZAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 4,0: ind: 4,0 - tiles: NwAAADcAAAA3AAAAaAAAABoAAAEaAAAAGgAAAhoAAAIaAAADBQAAAAUAAABoAAAAZwAAAGcAAABnAAAAZwAAADcAAAA3AAAANwAAAGgAAAAaAAACGgAAAhoAAAIaAAAAGgAAAAUAAAAFAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAA3AAAANwAAADcAAAAaAAACGgAAAxoAAAMaAAACGgAAAhoAAAIFAAAABQAAAGgAAAAAAAAAAAAAAAAAAAAAAAAANwAAADcAAAA3AAAAaAAAABoAAAAaAAABGgAAABoAAAIaAAAABQAAAAUAAABoAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAARoAAAIaAAAAGgAAA2gAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAIaAAABGgAAAxoAAAEaAAAAGgAAA2gAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAFcAAABXAAAAVwAAAGgAAAAaAAADGgAAAhoAAAIaAAABaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAFcAAABoAAAAZwAAAGcAAAAAAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAUAAAAFAAAABQAAAAUAAAAGgAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAaAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABXAAAAVwAAAGgAAABQAAAAUAAAAFAAAABQAAAAaAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABoAAAAaAAAAFcAAABXAAAAaAAAAGgAAABXAAAAaAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: MwAAADMAAAAzAAAAZAAAABYAAAEWAAAAFgAAAhYAAAIWAAADBwAAAAcAAABkAAAAYwAAAGMAAABjAAAAYwAAADMAAAAzAAAAMwAAAGQAAAAWAAACFgAAAhYAAAIWAAAAFgAAAAcAAAAHAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAzAAAAMwAAADMAAAAWAAACFgAAAxYAAAMWAAACFgAAAhYAAAIHAAAABwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAMwAAADMAAAAzAAAAZAAAABYAAAAWAAABFgAAABYAAAIWAAAABwAAAAcAAABkAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAARYAAAIWAAAAFgAAA2QAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAIWAAABFgAAAxYAAAEWAAAAFgAAA2QAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAFMAAABTAAAAUwAAAGQAAAAWAAADFgAAAhYAAAIWAAABZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAFMAAABkAAAAZAAAAFMAAABkAAAAYwAAAGMAAAAAAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAGQAAABkAAAATAAAAEwAAABMAAAATAAAAGQAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAAZAAAAEwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABTAAAAUwAAAGQAAABMAAAATAAAAEwAAABMAAAAZAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABkAAAAZAAAAFMAAABTAAAAZAAAAGQAAABTAAAAZAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== 5,0: ind: 5,0 - tiles: ZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,-1: ind: 3,-1 - tiles: aAAAAGgAAABoAAAAaAAAABoAAAEaAAABGgAAAWgAAABoAAAAaAAAAEsAAABoAAAAaAAAAEsAAAJLAAADSwAAAEsAAANLAAAASwAAAUsAAANLAAADSwAAAEsAAAFLAAAASwAAA0sAAANLAAADSwAAA0sAAABLAAABSwAAAEsAAAJLAAAASwAAAEsAAABLAAAASwAAAUsAAAFLAAABSwAAAEsAAABLAAAASwAAAUsAAABLAAADSwAAAEsAAAFLAAADSwAAAUsAAAJLAAABSwAAAEsAAANLAAABSwAAAksAAAFLAAABSwAAAEsAAAJLAAACSwAAAEsAAAJLAAAASwAAA0sAAAJLAAAASwAAAUsAAAJLAAACSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAUsAAAJLAAAASwAAAEsAAABoAAAAZQAAAGUAAANlAAAAZQAAA2UAAABlAAADZQAAA2UAAABlAAAASwAAA0sAAAFLAAADSwAAAUsAAANLAAACZQAAAWUAAAJlAAADZQAAA2UAAANlAAACZQAAAWUAAAJlAAABZQAAAUsAAAMaAAADaAAAAEsAAAJLAAABSwAAAmUAAAFlAAADZQAAAWUAAAJlAAABZQAAAGUAAAFlAAABZQAAAmUAAAFLAAABGgAAAksAAANLAAAASwAAAmgAAABoAAAAZQAAAWUAAANlAAADZQAAAGUAAABlAAAAZQAAA2UAAAFlAAACSwAAABoAAABoAAAAaAAAAGgAAABlAAABZQAAAmUAAANlAAABZQAAAmUAAAJlAAAAZQAAAmUAAAFlAAADZQAAAUsAAAEaAAADaAAAAGgAAABoAAAAZQAAAGUAAAJlAAAAZQAAA2UAAABlAAABZQAAAGUAAAJlAAAAZQAAAmUAAAJLAAAAGgAAAWgAAABoAAAAaAAAAGUAAAFlAAACZQAAAGUAAABlAAADZQAAAWUAAAFoAAAAaAAAAGUAAABoAAAASwAAAxoAAAJoAAAAaAAAAGgAAABlAAABZQAAAWUAAAJlAAACZQAAAWUAAAJlAAABaAAAAGUAAANlAAAAZQAAAxoAAAMaAAABaAAAAGgAAABoAAAAZQAAAWUAAAFlAAACZQAAA2UAAAJlAAAAZQAAAWgAAABlAAACZQAAA2UAAABLAAAAaAAAAGgAAABoAAAAaAAAAGUAAANlAAAAZQAAA2UAAABlAAADZQAAAWgAAABoAAAAaAAAAGgAAABoAAAANAAAADQAAABoAAAAaAAAAGgAAABlAAACZQAAAWUAAABlAAACZQAAAWUAAABoAAAAGgAAAxoAAAFoAAAANwAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAABYAAAEWAAABFgAAAWQAAABkAAAAZAAAAEcAAABkAAAAZAAAAEcAAAJHAAADRwAAAEcAAANHAAAARwAAAUcAAANHAAADRwAAAEcAAAFHAAAARwAAA0cAAANHAAADRwAAA0cAAABHAAABRwAAAEcAAAJHAAAARwAAAEcAAABHAAAARwAAAUcAAAFHAAABRwAAAEcAAABHAAAARwAAAUcAAABHAAADRwAAAEcAAAFHAAADRwAAAUcAAAJHAAABRwAAAEcAAANHAAABRwAAAkcAAAFHAAABRwAAAEcAAAJHAAACRwAAAEcAAAJHAAAARwAAA0cAAAJHAAAARwAAAUcAAAJHAAACRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAUcAAAJHAAAARwAAAEcAAABkAAAAYQAAAGEAAANhAAAAYQAAA2EAAABhAAADYQAAA2EAAABhAAAARwAAA0cAAAFHAAADRwAAAUcAAANHAAACYQAAAWEAAAJhAAADYQAAA2EAAANhAAACYQAAAWEAAAJhAAABYQAAAUcAAAMWAAADZAAAAEcAAAJHAAABRwAAAmEAAAFhAAADYQAAAWEAAAJhAAABYQAAAGEAAAFhAAABYQAAAmEAAAFHAAABFgAAAkcAAANHAAAARwAAAmQAAABkAAAAYQAAAWEAAANhAAADYQAAAGEAAABhAAAAYQAAA2EAAAFhAAACRwAAABYAAABkAAAAZAAAAGQAAABhAAABYQAAAmEAAANhAAABYQAAAmEAAAJhAAAAYQAAAmEAAAFhAAADYQAAAUcAAAEWAAADZAAAAGQAAABkAAAAYQAAAGEAAAJhAAAAYQAAA2EAAABhAAABYQAAAGEAAAJhAAAAYQAAAmEAAAJHAAAAFgAAAWQAAABkAAAAZAAAAGEAAAFhAAACYQAAAGEAAABhAAADYQAAAWEAAAFkAAAAZAAAAGEAAABkAAAARwAAAxYAAAJkAAAAZAAAAGQAAABhAAABYQAAAWEAAAJhAAACYQAAAWEAAAJhAAABZAAAAGEAAANhAAAAYQAAAxYAAAMWAAABZAAAAGQAAABkAAAAYQAAAWEAAAFhAAACYQAAA2EAAAJhAAAAYQAAAWQAAABhAAACYQAAA2EAAABHAAAAZAAAAGQAAABkAAAAZAAAAGEAAANhAAAAYQAAA2EAAABhAAADYQAAAWQAAABkAAAAZAAAAGQAAABkAAAAMAAAADAAAABkAAAAZAAAAGQAAABhAAACYQAAAWEAAABhAAACYQAAAWEAAABkAAAAFgAAAxYAAAFkAAAAMwAAAA== -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAANLAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAANHAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAFcAAABoAAAAVwAAAGgAAABXAAAAVwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABXAAAAaAAAAFcAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAFcAAABoAAAAaAAAAGgAAABnAAAAaAAAAFcAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABXAAAAVwAAAFcAAABoAAAAVwAAAGgAAABoAAAAEQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAFMAAABkAAAAUwAAAGQAAABTAAAAUwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABTAAAAZAAAAFMAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAFMAAABkAAAAZAAAAGQAAABjAAAAZAAAAFMAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABTAAAAUwAAAGQAAABTAAAAUwAAAFMAAABkAAAAUwAAAGQAAABkAAAADQAAAA== -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAAUsAAAJLAAAASwAAAUsAAAFLAAABSwAAAGgAAABLAAAASwAAAgAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAABLAAABSwAAAEsAAANLAAADSwAAA0sAAAJLAAABSwAAAUsAAAMAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAADSwAAAEsAAAFLAAAASwAAAksAAABLAAAAaAAAAEsAAAFLAAACAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAAUsAAABLAAABSwAAA0sAAAFLAAACSwAAAmgAAABLAAADSwAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAAJLAAABSwAAAUsAAANLAAABSwAAAEsAAAFoAAAAZQAAAWUAAAEAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAACSwAAAksAAAFLAAABSwAAAUsAAANLAAACaAAAAGUAAANlAAACAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAAUsAAABLAAAASwAAAUsAAANLAAAASwAAAmgAAABlAAABZQAAAQAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAEsAAAFLAAADSwAAAUsAAAJLAAACSwAAAEsAAANoAAAAZQAAAGUAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABLAAAASwAAAksAAANLAAABSwAAAEsAAABLAAACaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAAksAAANLAAADSwAAAUsAAABLAAACSwAAAEsAAABLAAADSwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAEsAAABLAAADSwAAAEsAAAJLAAABSwAAAksAAABLAAADSwAAAksAAAIAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABLAAABSwAAAUsAAAJLAAADSwAAAksAAAJLAAACSwAAAUsAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAACSwAAAEsAAAJLAAAASwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAA0sAAAFLAAAASwAAAksAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAEQAAAEMAAABDAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAQ== + tiles: AAAAAAAAAAAAAAAAZAAAAGQAAABkAAAARwAAAUcAAAJHAAAARwAAAUcAAAFHAAABRwAAAGQAAABHAAAARwAAAgAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEcAAABHAAABRwAAAEcAAANHAAADRwAAA0cAAAJHAAABRwAAAUcAAAMAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABHAAADRwAAAEcAAAFHAAAARwAAAkcAAABHAAAAZAAAAEcAAAFHAAACAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAARwAAAUcAAABHAAABRwAAA0cAAAFHAAACRwAAAmQAAABHAAADRwAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEcAAAJHAAABRwAAAUcAAANHAAABRwAAAEcAAAFkAAAAYQAAAWEAAAEAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABHAAACRwAAAkcAAAFHAAABRwAAAUcAAANHAAACZAAAAGEAAANhAAACAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAARwAAAUcAAABHAAAARwAAAUcAAANHAAAARwAAAmQAAABhAAABYQAAAQAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAEcAAAFHAAADRwAAAUcAAAJHAAACRwAAAEcAAANkAAAAYQAAAGEAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABHAAAARwAAAkcAAANHAAABRwAAAEcAAABHAAACZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAARwAAAkcAAANHAAADRwAAAUcAAABHAAACRwAAAEcAAABHAAADRwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAEcAAABHAAADRwAAAEcAAAJHAAABRwAAAkcAAABHAAADRwAAAkcAAAIAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABHAAABRwAAAUcAAAJHAAADRwAAAkcAAAJHAAACRwAAAUcAAABHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAACRwAAAEcAAAJHAAAARwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAA0cAAAFHAAAARwAAAkcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAADQAAAD8AAAA/AAAAZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAQ== -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== -2,-4: ind: -2,-4 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABXAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAEgAAAGgAAABoAAAAVwAAAGgAAABLAAABSwAAAEsAAABLAAABSwAAAUsAAABoAAAAVwAAAGgAAABoAAAAaAAAABIAAABoAAAAaAAAAFcAAABoAAAASwAAAEsAAAJLAAAASwAAAUsAAAFLAAABaAAAAFcAAABoAAAAaAAAAGgAAAAaAAACaAAAAGgAAABoAAAAaAAAAEsAAAFLAAACSwAAAksAAAFLAAABSwAAAWgAAABXAAAAaAAAAGgAAABoAAAAGgAAADkAAABXAAAAVwAAAFcAAABLAAADSwAAAUsAAAJLAAABSwAAAUsAAAJoAAAAaAAAAGgAAABoAAAAaAAAABIAAABoAAAAaAAAAFcAAABXAAAASwAAAEsAAANLAAAASwAAAUsAAANLAAACaAAAAFcAAABoAAAAaAAAAGgAAAAaAAAAaAAAAGgAAABXAAAAVwAAAEsAAAJLAAAASwAAAEsAAAJLAAAASwAAAmgAAABXAAAAaAAAAGgAAABoAAAAGgAAAWgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAABIAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAAASAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABTAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAADgAAAGQAAABkAAAAUwAAAGQAAABHAAABRwAAAEcAAABHAAABRwAAAUcAAABkAAAAUwAAAGQAAABkAAAAZAAAAA4AAABkAAAAZAAAAFMAAABkAAAARwAAAEcAAAJHAAAARwAAAUcAAAFHAAABZAAAAFMAAABkAAAAZAAAAGQAAAAWAAACZAAAAGQAAABkAAAAZAAAAEcAAAFHAAACRwAAAkcAAAFHAAABRwAAAWQAAABTAAAAZAAAAGQAAABkAAAAFgAAADUAAABTAAAAUwAAAFMAAABHAAADRwAAAUcAAAJHAAABRwAAAUcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAA4AAABkAAAAZAAAAFMAAABTAAAARwAAAEcAAANHAAAARwAAAUcAAANHAAACZAAAAFMAAABkAAAAZAAAAGQAAAAWAAAAZAAAAGQAAABTAAAAUwAAAEcAAAJHAAAARwAAAEcAAAJHAAAARwAAAmQAAABTAAAAZAAAAGQAAABkAAAAFgAAAWQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAA4AAABkAAAAZAAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAAAOAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== -1,-4: ind: -1,-4 - tiles: aAAAAGgAAABAAAAAGgAAAhoAAAEaAAAAGgAAAVkAAAMaAAACGgAAARoAAAMaAAADGgAAAxoAAAEaAAABGgAAAmgAAABoAAAAGgAAABoAAAAaAAADGgAAAxoAAAFoAAAAGgAAAxoAAAEaAAABGgAAAhoAAAAaAAABGgAAARoAAAJoAAAAaAAAAEAAAABAAAAAaAAAAEAAAABAAAAAaAAAAEsAAANLAAADSwAAAGgAAABLAAACSwAAAEsAAAJLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAGgAAAhoAAAMSAAAAGgAAAhoAAAASAAAAaAAAABoAAABLAAACSwAAA0sAAABoAAAASwAAAUsAAAJLAAACSwAAABoAAAIaAAABEgAAABoAAAMaAAACEgAAAGgAAAAaAAACSwAAA0sAAANLAAACSwAAAksAAAFLAAACSwAAA0sAAAAaAAADGgAAAhIAAAAaAAAAGgAAABoAAAJoAAAAGgAAAEsAAABLAAACSwAAAWgAAABLAAABSwAAA0sAAAJLAAADGgAAARIAAAASAAAAEgAAABoAAAJoAAAAaAAAAGgAAABLAAACSwAAAksAAAJoAAAASwAAAksAAABLAAADSwAAABIAAAASAAAAEgAAABIAAAASAAAAGgAAAxoAAAEaAAADSwAAA0sAAAJLAAAAaAAAAEsAAABLAAACSwAAAEsAAAIaAAAAEgAAABIAAAASAAAAGgAAAWgAAABoAAAAaAAAAGgAAABLAAADaAAAAGgAAABLAAACSwAAA0sAAABLAAACGgAAABoAAAISAAAAGgAAAxoAAAIaAAACaAAAABoAAANLAAADSwAAAUsAAABoAAAASwAAAUsAAANLAAACSwAAAhoAAAIaAAAAEgAAABoAAAEaAAABEgAAAGgAAAAaAAABSwAAAUsAAABLAAADaAAAAGgAAABoAAAASwAAAUsAAAIaAAADGgAAAhIAAAAaAAADGgAAABIAAABoAAAAGgAAAWgAAABoAAAAaAAAAGgAAABXAAAAaAAAAEsAAAJLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABLAAADSwAAAA== + tiles: ZAAAAGQAAAA8AAAAFgAAAhYAAAEWAAAAFgAAAVUAAAMWAAACFgAAARYAAAMWAAADFgAAAxYAAAEWAAABFgAAAmQAAABkAAAAFgAAABYAAAAWAAADFgAAAxYAAAFkAAAAFgAAAxYAAAEWAAABFgAAAhYAAAAWAAABFgAAARYAAAJkAAAAZAAAADwAAAA8AAAAZAAAADwAAAA8AAAAZAAAAEcAAANHAAADRwAAAGQAAABHAAACRwAAAEcAAAJHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAFgAAAhYAAAMOAAAAFgAAAhYAAAAOAAAAZAAAABYAAABHAAACRwAAA0cAAABkAAAARwAAAUcAAAJHAAACRwAAABYAAAIWAAABDgAAABYAAAMWAAACDgAAAGQAAAAWAAACRwAAA0cAAANHAAACRwAAAkcAAAFHAAACRwAAA0cAAAAWAAADFgAAAg4AAAAWAAAAFgAAABYAAAJkAAAAFgAAAEcAAABHAAACRwAAAWQAAABHAAABRwAAA0cAAAJHAAADFgAAAQ4AAAAOAAAADgAAABYAAAJkAAAAZAAAAGQAAABHAAACRwAAAkcAAAJkAAAARwAAAkcAAABHAAADRwAAAA4AAAAOAAAADgAAAA4AAAAOAAAAFgAAAxYAAAEWAAADRwAAA0cAAAJHAAAAZAAAAEcAAABHAAACRwAAAEcAAAIWAAAADgAAAA4AAAAOAAAAFgAAAWQAAABkAAAAZAAAAGQAAABHAAADZAAAAGQAAABHAAACRwAAA0cAAABHAAACFgAAABYAAAIOAAAAFgAAAxYAAAIWAAACZAAAABYAAANHAAADRwAAAUcAAABkAAAARwAAAUcAAANHAAACRwAAAhYAAAIWAAAADgAAABYAAAEWAAABDgAAAGQAAAAWAAABRwAAAUcAAABHAAADZAAAAGQAAABkAAAARwAAAUcAAAIWAAADFgAAAg4AAAAWAAADFgAAAA4AAABkAAAAFgAAAWQAAABkAAAAZAAAAGQAAABTAAAAZAAAAEcAAAJHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABHAAADRwAAAA== 0,-4: ind: 0,-4 - tiles: aAAAAEsAAAJLAAAASwAAA0sAAAFLAAACSwAAAksAAANLAAABSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAksAAABLAAABSwAAAksAAABLAAABSwAAAksAAANoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAASwAAAksAAAFLAAADSwAAAksAAAJLAAACSwAAAksAAAFLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAACSwAAAksAAABLAAADSwAAA0sAAAFLAAADSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAACSwAAAEsAAAJLAAADSwAAAUsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA2gAAABoAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAJoAAAASwAAAksAAABLAAACSwAAAUsAAAFLAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAAASwAAAksAAAJLAAABSwAAAUsAAAJLAAABSwAAA0sAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAGgAAABLAAABSwAAAEsAAABLAAADSwAAA0sAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAWgAAABoAAAASwAAA0sAAAJLAAACSwAAA0sAAABLAAABSwAAA2gAAABoAAAAaAAAAGgAAABnAAAAZwAAAEsAAANoAAAASwAAAUsAAANLAAACSwAAAEsAAANLAAABSwAAAUsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACaAAAAEsAAAJLAAAASwAAAksAAAJLAAADSwAAAEsAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA2gAAABLAAADSwAAAEsAAAFLAAAASwAAA0sAAAFLAAADSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAA2gAAABLAAAAaAAAAEsAAAJLAAADSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAABoAAAASwAAA0sAAAFLAAAASwAAAksAAAFXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: ZAAAAEcAAAJHAAAARwAAA0cAAAFHAAACRwAAAkcAAANHAAABRwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAkcAAABHAAABRwAAAkcAAABHAAABRwAAAkcAAANkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAARwAAAkcAAAFHAAADRwAAAkcAAAJHAAACRwAAAkcAAAFHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAACRwAAAkcAAABHAAADRwAAA0cAAAFHAAADRwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAEcAAABHAAACRwAAAEcAAAJHAAADRwAAAUcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA2QAAABkAAAAZAAAAEcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAAJkAAAARwAAAkcAAABHAAACRwAAAUcAAAFHAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAAARwAAAkcAAAJHAAABRwAAAUcAAAJHAAABRwAAA0cAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAGQAAABHAAABRwAAAEcAAABHAAADRwAAA0cAAABHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAWQAAABkAAAARwAAA0cAAAJHAAACRwAAA0cAAABHAAABRwAAA2QAAABkAAAAZAAAAGQAAABjAAAAYwAAAEcAAANkAAAARwAAAUcAAANHAAACRwAAAEcAAANHAAABRwAAAUcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACZAAAAEcAAAJHAAAARwAAAkcAAAJHAAADRwAAAEcAAABHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA2QAAABHAAADRwAAAEcAAAFHAAAARwAAA0cAAAFHAAADRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABkAAAAZAAAAEcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAA2QAAABHAAAAZAAAAEcAAAJHAAADRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAABkAAAARwAAA0cAAAFHAAAARwAAAkcAAAFTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== 2,-3: ind: 2,-3 - tiles: aAAAAFgAAAAaAAAAGgAAARoAAAAaAAADGgAAA1sAAABbAAADWwAAAmgAAABbAAAAWwAAAFsAAAJbAAABaAAAAGgAAABoAAAAGgAAABoAAAAaAAAAGgAAA2gAAABbAAACWwAAAlsAAABoAAAAWwAAAlsAAAFbAAABWwAAAGgAAABoAAAAaAAAABoAAAAaAAADGgAAARoAAABoAAAAWwAAAFsAAABbAAABWwAAAFsAAAFbAAAAWwAAAFsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADaAAAAFsAAAJbAAACWwAAA2gAAABbAAABWwAAAFsAAANbAAAAaAAAAGgAAABoAAAAWwAAAFsAAAJbAAACWwAAAmgAAABbAAABWwAAAFsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAACMAAAMjAAACIwAAACMAAABoAAAAWwAAAlsAAANbAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAjAAABIwAAACMAAAAjAAACaAAAAFsAAAJbAAACWwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAIwAAACMAAAAjAAABIwAAA2gAAABbAAACWwAAA1sAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAACMAAAEjAAABIwAAASMAAAAaAAADWwAAAFsAAAFbAAACaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABbAAAAWwAAAlsAAANbAAADaAAAAFsAAABbAAABWwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAADWwAAA1sAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAAAWwAAAFsAAABbAAACWwAAAlsAAAJoAAAAWwAAAVsAAAJbAAAAWwAAAmgAAABNAAACTQAAAE0AAABNAAADWwAAAFsAAANbAAABWwAAAlsAAAFbAAABaAAAAFsAAAFbAAACWwAAA1sAAABbAAABTQAAA00AAANNAAACTQAAAEsAAANLAAACWwAAAlsAAAFbAAACWwAAAGgAAABbAAACWwAAA1sAAAFbAAABaAAAAE0AAABNAAACTQAAA00AAAJLAAADSwAAAGgAAABbAAACWwAAAWgAAABoAAAAWwAAAlsAAABbAAABWwAAAWgAAABNAAAATQAAAU0AAAJNAAABSwAAA0sAAANoAAAAWwAAAlsAAANbAAABWwAAAlsAAANbAAABWwAAAlsAAAJoAAAATQAAA00AAABNAAAATQAAAg== + tiles: ZAAAAFQAAAAWAAAAFgAAARYAAAAWAAADFgAAA1cAAABXAAADVwAAAmQAAABXAAAAVwAAAFcAAAJXAAABZAAAAGQAAABkAAAAFgAAABYAAAAWAAAAFgAAA2QAAABXAAACVwAAAlcAAABkAAAAVwAAAlcAAAFXAAABVwAAAGQAAABkAAAAZAAAABYAAAAWAAADFgAAARYAAABkAAAAVwAAAFcAAABXAAABVwAAAFcAAAFXAAAAVwAAAFcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADZAAAAFcAAAJXAAACVwAAA2QAAABXAAABVwAAAFcAAANXAAAAZAAAAGQAAABkAAAAVwAAAFcAAAJXAAACVwAAAmQAAABXAAABVwAAAFcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAB8AAAMfAAACHwAAAB8AAABkAAAAVwAAAlcAAANXAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAfAAABHwAAAB8AAAAfAAACZAAAAFcAAAJXAAACVwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAHwAAAB8AAAAfAAABHwAAA2QAAABXAAACVwAAA1cAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAB8AAAEfAAABHwAAAR8AAAAWAAADVwAAAFcAAAFXAAACZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABXAAAAVwAAAlcAAANXAAADZAAAAFcAAABXAAABVwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAADVwAAA1cAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAAAVwAAAFcAAABXAAACVwAAAlcAAAJkAAAAVwAAAVcAAAJXAAAAVwAAAmQAAABJAAACSQAAAEkAAABJAAADVwAAAFcAAANXAAABVwAAAlcAAAFXAAABZAAAAFcAAAFXAAACVwAAA1cAAABXAAABSQAAA0kAAANJAAACSQAAAEcAAANHAAACVwAAAlcAAAFXAAACVwAAAGQAAABXAAACVwAAA1cAAAFXAAABZAAAAEkAAABJAAACSQAAA0kAAAJHAAADRwAAAGQAAABXAAACVwAAAWQAAABkAAAAVwAAAlcAAABXAAABVwAAAWQAAABJAAAASQAAAUkAAAJJAAABRwAAA0cAAANkAAAAVwAAAlcAAANXAAABVwAAAlcAAANXAAABVwAAAlcAAAJkAAAASQAAA0kAAABJAAAASQAAAg== 2,-2: ind: 2,-2 - tiles: aAAAAGgAAABoAAAAWwAAAFsAAAJbAAACWwAAAlsAAABbAAADWwAAAVsAAABoAAAATQAAAE0AAABNAAADTQAAA1sAAAJbAAABaAAAAFsAAANbAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA2gAAABbAAAAWwAAA1sAAAFbAAABWwAAAmgAAABbAAACWwAAAlsAAAJbAAABaAAAAEsAAAJLAAAASwAAAEsAAAJoAAAAWwAAA1sAAAJbAAACWwAAAVsAAAJoAAAAWwAAAFsAAANbAAACWwAAAksAAABLAAADSwAAA0sAAAJLAAABaAAAAFsAAAFbAAABaAAAAFsAAABbAAADaAAAAFsAAAFbAAADWwAAAFsAAAFLAAADSwAAAEsAAABLAAABSwAAA1sAAANoAAAAaAAAAGgAAABbAAADWwAAAGgAAABbAAACWwAAAlsAAAFbAAABaAAAAEsAAAJLAAABSwAAAEsAAAFoAAAAWwAAAlsAAAJbAAADWwAAAlsAAAJoAAAAaAAAAFsAAABbAAADaAAAAGgAAABoAAAASwAAAUsAAABLAAABaAAAAFsAAABbAAABWwAAAlsAAAFbAAACWwAAAlsAAANbAAAAWwAAAFsAAANbAAABaAAAAEsAAAJLAAAASwAAAmgAAABbAAABWwAAAFsAAABbAAAAWwAAA1sAAANbAAAAWwAAAFsAAANbAAABWwAAA0sAAAFLAAABSwAAA0sAAAFoAAAAaAAAAGgAAABbAAACWwAAAFsAAANbAAACWwAAA1sAAABbAAACWwAAAlsAAANoAAAASwAAAUsAAAFLAAABVwAAAFsAAAFoAAAAWwAAAVsAAABoAAAAWwAAA1sAAABbAAAAaAAAABoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAAAWwAAAFsAAAFbAAACaAAAAGgAAAAaAAACaAAAAGgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABXAAAAWwAAAlsAAAFbAAABWwAAAGgAAAAaAAAAGgAAAxoAAAIaAAADWAAAAFgAAAAaAAABWAAAABoAAAJYAAAAaAAAAFsAAABbAAAAWwAAAVsAAAJoAAAAGgAAAxoAAAEaAAACGgAAAlgAAABYAAAAGgAAAVgAAAAaAAACWAAAABoAAANbAAABWwAAAVsAAANbAAABaAAAABoAAAAaAAACGgAAAWgAAABYAAAAWAAAABoAAANYAAAAGgAAAlgAAAAaAAACWwAAAFsAAAJbAAAAWwAAA2gAAAAaAAACGgAAARoAAABoAAAAGgAAAxoAAAMaAAABWAAAABoAAAJYAAAAGgAAAg== + tiles: ZAAAAGQAAABkAAAAVwAAAFcAAAJXAAACVwAAAlcAAABXAAADVwAAAVcAAABkAAAASQAAAEkAAABJAAADSQAAA1cAAAJXAAABZAAAAFcAAANXAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA2QAAABXAAAAVwAAA1cAAAFXAAABVwAAAmQAAABXAAACVwAAAlcAAAJXAAABZAAAAEcAAAJHAAAARwAAAEcAAAJkAAAAVwAAA1cAAAJXAAACVwAAAVcAAAJkAAAAVwAAAFcAAANXAAACVwAAAkcAAABHAAADRwAAA0cAAAJHAAABZAAAAFcAAAFXAAABZAAAAFcAAABXAAADZAAAAFcAAAFXAAADVwAAAFcAAAFHAAADRwAAAEcAAABHAAABRwAAA1cAAANkAAAAZAAAAGQAAABXAAADVwAAAGQAAABXAAACVwAAAlcAAAFXAAABZAAAAEcAAAJHAAABRwAAAEcAAAFkAAAAVwAAAlcAAAJXAAADVwAAAlcAAAJkAAAAZAAAAFcAAABXAAADZAAAAGQAAABkAAAARwAAAUcAAABHAAABZAAAAFcAAABXAAABVwAAAlcAAAFXAAACVwAAAlcAAANXAAAAVwAAAFcAAANXAAABZAAAAEcAAAJHAAAARwAAAmQAAABXAAABVwAAAFcAAABXAAAAVwAAA1cAAANXAAAAVwAAAFcAAANXAAABVwAAA0cAAAFHAAABRwAAA0cAAAFkAAAAZAAAAGQAAABXAAACVwAAAFcAAANXAAACVwAAA1cAAABXAAACVwAAAlcAAANkAAAARwAAAUcAAAFHAAABUwAAAFcAAAFkAAAAVwAAAVcAAABkAAAAVwAAA1cAAABXAAAAZAAAABYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAAAVwAAAFcAAAFXAAACZAAAAGQAAAAWAAACZAAAAGQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABTAAAAVwAAAlcAAAFXAAABVwAAAGQAAAAWAAAAFgAAAxYAAAIWAAADVAAAAFQAAAAWAAABVAAAABYAAAJUAAAAZAAAAFcAAABXAAAAVwAAAVcAAAJkAAAAFgAAAxYAAAEWAAACFgAAAlQAAABUAAAAFgAAAVQAAAAWAAACVAAAABYAAANXAAABVwAAAVcAAANXAAABZAAAABYAAAAWAAACFgAAAWQAAABUAAAAVAAAABYAAANUAAAAFgAAAlQAAAAWAAACVwAAAFcAAAJXAAAAVwAAA2QAAAAWAAACFgAAARYAAABkAAAAFgAAAxYAAAMWAAABVAAAABYAAAJUAAAAFgAAAg== 2,-4: ind: 2,-4 - tiles: VwAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAABZQAAAmUAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAZQAAA2UAAABlAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABXAAAAVwAAAGgAAABoAAAAWwAAAVsAAAFbAAACWwAAAGgAAABbAAADWwAAAGgAAABbAAAAWwAAAVcAAABXAAAAVwAAAGgAAABoAAAAaAAAAFsAAABbAAABWwAAAFsAAANoAAAAWwAAAVsAAANoAAAAWwAAAlsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAAAWwAAAVsAAABbAAAAaAAAAFsAAAJbAAADaAAAAFsAAABbAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAA1sAAANbAAAAWwAAAGgAAABbAAADaAAAAGgAAABoAAAAWwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAABbAAAAWwAAAFsAAABbAAACWwAAAVsAAANbAAABWwAAAVsAAABoAAAAaAAAAFsAAAJbAAADWwAAAlsAAAJbAAACWwAAAlsAAABbAAABWwAAAlsAAAFbAAADWwAAAlsAAAJbAAADaAAAAGgAAABbAAABWwAAAFsAAAFoAAAAaAAAAGgAAABbAAADaAAAAGgAAABoAAAAaAAAAEsAAANoAAAAaAAAAGgAAABoAAAAWwAAAVsAAAJbAAABWwAAAmgAAABbAAABWwAAAlsAAANoAAAASwAAAksAAABLAAABLAAAACwAAABoAAAAaAAAAFsAAANbAAABWwAAAFsAAAFoAAAAWwAAAFsAAAJbAAADaAAAACwAAAAsAAAALAAAACwAAAAsAAAAaAAAAGgAAABbAAABWwAAAFsAAAFbAAACaAAAAFsAAAFbAAABWwAAAWgAAAAsAAAALAAAACwAAAAsAAAALAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAMaAAADGgAAABoAAANoAAAAWwAAAlsAAAFbAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAGgAAAhoAAAIaAAAAaAAAAFsAAAJbAAABWwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: UwAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAABYQAAAmEAAABkAAAAZAAAAFMAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAYQAAA2EAAABhAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABTAAAAUwAAAGQAAABkAAAAVwAAAVcAAAFXAAACVwAAAGQAAABXAAADVwAAAGQAAABXAAAAVwAAAVMAAABTAAAAUwAAAGQAAABkAAAAZAAAAFcAAABXAAABVwAAAFcAAANkAAAAVwAAAVcAAANkAAAAVwAAAlcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAAAVwAAAVcAAABXAAAAZAAAAFcAAAJXAAADZAAAAFcAAABXAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAA1cAAANXAAAAVwAAAGQAAABXAAADZAAAAGQAAABkAAAAVwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAABXAAAAVwAAAFcAAABXAAACVwAAAVcAAANXAAABVwAAAVcAAABkAAAAZAAAAFcAAAJXAAADVwAAAlcAAAJXAAACVwAAAlcAAABXAAABVwAAAlcAAAFXAAADVwAAAlcAAAJXAAADZAAAAGQAAABXAAABVwAAAFcAAAFkAAAAZAAAAGQAAABXAAADZAAAAGQAAABkAAAAZAAAAEcAAANkAAAAZAAAAGQAAABkAAAAVwAAAVcAAAJXAAABVwAAAmQAAABXAAABVwAAAlcAAANkAAAARwAAAkcAAABHAAABKAAAACgAAABkAAAAZAAAAFcAAANXAAABVwAAAFcAAAFkAAAAVwAAAFcAAAJXAAADZAAAACgAAAAoAAAAKAAAACgAAAAoAAAAZAAAAGQAAABXAAABVwAAAFcAAAFXAAACZAAAAFcAAAFXAAABVwAAAWQAAAAoAAAAKAAAACgAAAAoAAAAKAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAMWAAADFgAAABYAAANkAAAAVwAAAlcAAAFXAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAAAFgAAAhYAAAIWAAAAZAAAAFcAAAJXAAABVwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== 3,-2: ind: 3,-2 - tiles: aAAAAGgAAABXAAAAaAAAABIAAAASAAAAaAAAABoAAAEaAAAAGgAAAWgAAABLAAABSwAAABoAAAAaAAAAGgAAAmgAAABoAAAAVwAAAGgAAAAaAAAAGgAAARoAAAIaAAACGgAAARoAAAJoAAAASwAAAEsAAAEaAAABGgAAABoAAABXAAAAaAAAAFcAAABoAAAAEgAAABIAAABoAAAAGgAAARoAAAIaAAABaAAAAEsAAANLAAAAGgAAAhoAAAAaAAADWwAAAFsAAANbAAABaAAAAGgAAABoAAAAaAAAABoAAANoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAFsAAAJbAAACWwAAA0sAAABLAAADWwAAAFsAAANbAAAAWwAAAlsAAAJbAAACWwAAA1sAAAJbAAACWwAAAVsAAAJbAAACWwAAAlsAAAJoAAAASwAAAlsAAAFbAAADWwAAAFsAAAJbAAABWwAAAFsAAANbAAADWwAAAFsAAANbAAACaAAAAFcAAABoAAAAaAAAAGgAAAAaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAAAaAAAAGgAAABoAAAAaAAAAFgAAAAaAAAAGgAAAhoAAAJYAAAAWwAAAlsAAANbAAABWwAAAlsAAAFbAAACWwAAAlsAAANXAAAAaAAAAGgAAABYAAAAGgAAARoAAAEaAAAAWAAAAFsAAABbAAAAWwAAAksAAAJLAAAASwAAA0sAAAFLAAADVwAAAGgAAABoAAAAWAAAAFgAAABYAAAAWAAAAFgAAABbAAACWwAAA1sAAABLAAAASwAAA0sAAANLAAADSwAAAlcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAANbAAABSwAAA0sAAANLAAADSwAAAUsAAAJXAAAAaAAAAGgAAAAaAAADGgAAARoAAAAaAAAAGgAAAGgAAABbAAABWwAAAEsAAAFLAAADSwAAAUsAAAJLAAADaAAAAGgAAABoAAAAGgAAAhIAAABLAAADEgAAABoAAANLAAACWwAAA1sAAANLAAAASwAAAksAAAFLAAACSwAAA2gAAABoAAAAaAAAABoAAAASAAAAEgAAABIAAAAaAAADSwAAAFsAAAFbAAADWwAAAVsAAAJbAAACWwAAAVsAAANoAAAAaAAAAGgAAAAaAAACEgAAAEsAAAASAAAAGgAAAEsAAABbAAABWwAAAlsAAABbAAACWwAAAlsAAAJbAAADaAAAAGgAAABXAAAAGgAAAhoAAAAaAAAAGgAAAhoAAAJoAAAAWwAAAFsAAAFbAAACaAAAAGgAAABbAAAAaAAAAA== + tiles: ZAAAAGQAAABTAAAAZAAAAA4AAAAOAAAAZAAAABYAAAEWAAAAFgAAAWQAAABHAAABRwAAABYAAAAWAAAAFgAAAmQAAABkAAAAUwAAAGQAAAAWAAAAFgAAARYAAAIWAAACFgAAARYAAAJkAAAARwAAAEcAAAEWAAABFgAAABYAAABTAAAAZAAAAFMAAABkAAAADgAAAA4AAABkAAAAFgAAARYAAAIWAAABZAAAAEcAAANHAAAAFgAAAhYAAAAWAAADVwAAAFcAAANXAAABZAAAAGQAAABkAAAAZAAAABYAAANkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABkAAAAZAAAAFcAAAJXAAACVwAAA0cAAABHAAADVwAAAFcAAANXAAAAVwAAAlcAAAJXAAACVwAAA1cAAAJXAAACVwAAAVcAAAJXAAACVwAAAlcAAAJkAAAARwAAAlcAAAFXAAADVwAAAFcAAAJXAAABVwAAAFcAAANXAAADVwAAAFcAAANXAAACZAAAAFMAAABkAAAAZAAAAGQAAAAWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAAAZAAAAGQAAABkAAAAZAAAAFQAAAAWAAAAFgAAAhYAAAJUAAAAVwAAAlcAAANXAAABVwAAAlcAAAFXAAACVwAAAlcAAANTAAAAZAAAAGQAAABUAAAAFgAAARYAAAEWAAAAVAAAAFcAAABXAAAAVwAAAkcAAAJHAAAARwAAA0cAAAFHAAADUwAAAGQAAABkAAAAVAAAAFQAAABUAAAAVAAAAFQAAABXAAACVwAAA1cAAABHAAAARwAAA0cAAANHAAADRwAAAlMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAANXAAABRwAAA0cAAANHAAADRwAAAUcAAAJTAAAAZAAAAGQAAAAWAAADFgAAARYAAAAWAAAAFgAAAGQAAABXAAABVwAAAEcAAAFHAAADRwAAAUcAAAJHAAADZAAAAGQAAABkAAAAFgAAAg4AAABHAAADDgAAABYAAANHAAACVwAAA1cAAANHAAAARwAAAkcAAAFHAAACRwAAA2QAAABkAAAAZAAAABYAAAAOAAAADgAAAA4AAAAWAAADRwAAAFcAAAFXAAADVwAAAVcAAAJXAAACVwAAAVcAAANkAAAAZAAAAGQAAAAWAAACDgAAAEcAAAAOAAAAFgAAAEcAAABXAAABVwAAAlcAAABXAAACVwAAAlcAAAJXAAADZAAAAGQAAABTAAAAFgAAAhYAAAAWAAAAFgAAAhYAAAJkAAAAVwAAAFcAAAFXAAACZAAAAGQAAABXAAAAZAAAAA== 4,-2: ind: 4,-2 - tiles: aAAAAFsAAABbAAAAWwAAA2gAAAAaAAABGgAAAxoAAAMaAAACGgAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAAAWwAAAVsAAAFoAAAAGgAAAksAAABLAAAASwAAAUsAAAMaAAAAaAAAAEAAAABAAAAAQAAAAEAAAABoAAAAWwAAAFsAAAJbAAADaAAAABoAAANLAAADSwAAAksAAANLAAADGgAAAGgAAABAAAAAQAAAAEAAAABAAAAAaAAAAFsAAAFbAAABWwAAAGgAAAAaAAAASwAAAEsAAANLAAAASwAAAhoAAABoAAAAQAAAAEAAAABAAAAAQAAAAFsAAABbAAAAWwAAAFsAAAFoAAAAGgAAAUsAAAFLAAABSwAAAEsAAAEaAAACaAAAAGgAAABoAAAAaAAAAGgAAABbAAAAWwAAAFsAAANbAAABaAAAABoAAAJLAAACSwAAAksAAANLAAACGgAAAGgAAABLAAAASwAAA2gAAABLAAAAaAAAAFsAAAJbAAADWwAAAGgAAAAaAAABGgAAAxoAAAIaAAABGgAAAxoAAAJoAAAASwAAA0sAAABLAAADSwAAAmgAAABbAAADWwAAA1sAAAJbAAAAWwAAAFsAAANbAAACWwAAAFsAAAFbAAAAaAAAAFsAAAFbAAAAWwAAAVsAAAJLAAACWwAAAlsAAAFbAAADWwAAAlsAAABbAAABWwAAAVsAAANbAAABWwAAAFsAAANbAAADWwAAAlsAAABbAAABaAAAAFsAAANbAAAAWwAAA1sAAANbAAABWwAAAVsAAAFbAAAAWwAAAVsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAABWwAAAVsAAAFoAAAAWwAAA1sAAAJbAAAAWwAAAlsAAANbAAABWwAAAlsAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAANoAAAAaAAAAEsAAABLAAABSwAAA1sAAABbAAADWwAAAmgAAABoAAAAaAAAAFcAAABoAAAAaAAAAFcAAAAaAAAAVwAAAGgAAABLAAAASwAAAUsAAABbAAAAWwAAAlsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAGgAAAVcAAABoAAAAWwAAAFsAAABbAAACWwAAA1sAAAJbAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAABoAAAJXAAAAaAAAAFsAAABbAAADWwAAA1sAAAFbAAACWwAAAmgAAABoAAAAaAAAAAAAAABnAAAAaAAAAGgAAAAaAAAAaAAAAGgAAABoAAAAWwAAAmgAAABoAAAAWwAAA1sAAAFoAAAAVwAAAGgAAABoAAAAaAAAAA== + tiles: ZAAAAFcAAABXAAAAVwAAA2QAAAAWAAABFgAAAxYAAAMWAAACFgAAABYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAAAVwAAAVcAAAFkAAAAFgAAAkcAAABHAAAARwAAAUcAAAMWAAAAZAAAADwAAAA8AAAAPAAAADwAAABkAAAAVwAAAFcAAAJXAAADZAAAABYAAANHAAADRwAAAkcAAANHAAADFgAAAGQAAAA8AAAAPAAAADwAAAA8AAAAZAAAAFcAAAFXAAABVwAAAGQAAAAWAAAARwAAAEcAAANHAAAARwAAAhYAAABkAAAAPAAAADwAAAA8AAAAPAAAAFcAAABXAAAAVwAAAFcAAAFkAAAAFgAAAUcAAAFHAAABRwAAAEcAAAEWAAACZAAAAGQAAABkAAAAZAAAAGQAAABXAAAAVwAAAFcAAANXAAABZAAAABYAAAJHAAACRwAAAkcAAANHAAACFgAAAGQAAABHAAAARwAAA2QAAABHAAAAZAAAAFcAAAJXAAADVwAAAGQAAAAWAAABFgAAAxYAAAIWAAABFgAAAxYAAAJkAAAARwAAA0cAAABHAAADRwAAAmQAAABXAAADVwAAA1cAAAJXAAAAVwAAAFcAAANXAAACVwAAAFcAAAFXAAAAZAAAAFcAAAFXAAAAVwAAAVcAAAJHAAACVwAAAlcAAAFXAAADVwAAAlcAAABXAAABVwAAAVcAAANXAAABVwAAAFcAAANXAAADVwAAAlcAAABXAAABZAAAAFcAAANXAAAAVwAAA1cAAANXAAABVwAAAVcAAAFXAAAAVwAAAVcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAABVwAAAVcAAAFkAAAAVwAAA1cAAAJXAAAAVwAAAlcAAANXAAABVwAAAlcAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAANkAAAAZAAAAEcAAABHAAABRwAAA1cAAABXAAADVwAAAmQAAABkAAAAZAAAAFMAAABkAAAAZAAAAFMAAAAWAAAAUwAAAGQAAABHAAAARwAAAUcAAABXAAAAVwAAAlcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAFgAAAVMAAABkAAAAVwAAAFcAAABXAAACVwAAA1cAAAJXAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAABYAAAJTAAAAZAAAAFcAAABXAAADVwAAA1cAAAFXAAACVwAAAmQAAABkAAAAZAAAAAAAAABjAAAAZAAAAGQAAAAWAAAAZAAAAGQAAABkAAAAVwAAAmQAAABkAAAAVwAAA1cAAAFkAAAAUwAAAGQAAABkAAAAZAAAAA== 5,-2: ind: 5,-2 - tiles: aAAAAGgAAABoAAAAaAAAAFcAAABoAAAAVwAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAAAAAAAAAAAAAEAAAABAAAAAQAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAAAAAAAAAAAABAAAAAQAAAAEAAAABoAAAAVwAAAGgAAABXAAAAaAAAAFcAAABoAAAAVwAAAFcAAABXAAAAVwAAAAAAAAAAAAAAQAAAAEAAAABAAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGgAAABoAAAASwAAAWgAAABXAAAAaAAAAFcAAABoAAAAVwAAAGgAAABXAAAAaAAAAFcAAABoAAAAAAAAAAAAAABLAAABaAAAAEsAAANoAAAAVwAAAGgAAABXAAAAaAAAAFcAAABoAAAAVwAAAFcAAABXAAAAVwAAAAAAAAAAAAAASwAAA0sAAAFLAAADaAAAAFcAAABoAAAAVwAAAGgAAABXAAAAaAAAAFcAAABXAAAAVwAAAFcAAAAAAAAAAAAAAFsAAAJbAAABWwAAAmgAAABXAAAAaAAAAFcAAABoAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAAAAAAAAAAAABbAAACWwAAAlsAAAFoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAVwAAAFcAAABoAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAUwAAAGQAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAAAAAAAAAAAAADwAAAA8AAAAPAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABTAAAAZAAAAGQAAABkAAAAAAAAAAAAAAA8AAAAPAAAADwAAABkAAAAUwAAAGQAAABTAAAAZAAAAFMAAABkAAAAUwAAAFMAAABTAAAAUwAAAAAAAAAAAAAAPAAAADwAAAA8AAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGQAAABkAAAARwAAAWQAAABTAAAAZAAAAFMAAABkAAAAUwAAAGQAAABTAAAAZAAAAFMAAABkAAAAAAAAAAAAAABHAAABZAAAAEcAAANkAAAAUwAAAGQAAABTAAAAZAAAAFMAAABkAAAAUwAAAFMAAABTAAAAUwAAAAAAAAAAAAAARwAAA0cAAAFHAAADZAAAAFMAAABkAAAAUwAAAGQAAABTAAAAZAAAAFMAAABTAAAAUwAAAFMAAAAAAAAAAAAAAFcAAAJXAAABVwAAAmQAAABTAAAAZAAAAFMAAABkAAAAUwAAAGQAAABTAAAAZAAAAGQAAABkAAAAAAAAAAAAAABXAAACVwAAAlcAAAFkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABkAAAAUwAAAFMAAABkAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 4,-3: ind: 4,-3 - tiles: aAAAAFsAAAFbAAAAWwAAA1sAAAJoAAAASwAAAUsAAANLAAABSwAAAUsAAABLAAABSwAAAEsAAAJLAAADVwAAAGgAAABbAAABWwAAA1sAAANbAAADaAAAAEsAAAJLAAABSwAAAEsAAAJLAAABSwAAAEsAAANLAAACSwAAAlcAAABoAAAAWwAAAVsAAAJbAAACWwAAAVsAAABbAAAAWwAAAFsAAAJbAAADWwAAAFsAAAFbAAACWwAAAFsAAANXAAAAaAAAAFsAAANbAAADWwAAAVsAAAJoAAAAWwAAA1sAAANbAAAAWwAAAFsAAANbAAABWwAAA1sAAAFbAAAAVwAAAGgAAABbAAACWwAAAFsAAANbAAABaAAAAEsAAABLAAADSwAAAksAAABLAAAASwAAAFsAAAJbAAADWwAAAFcAAABoAAAAWwAAAlsAAAFbAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAABWwAAAlsAAAFoAAAAaAAAAFsAAABbAAAAWwAAAGgAAABnAAAAQAAAAEAAAABAAAAAaAAAAEAAAABoAAAAWwAAAlsAAABLAAABaAAAAFsAAAJbAAACWwAAAlsAAANoAAAAZwAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAFsAAANbAAAASwAAAGgAAABoAAAAWwAAA1sAAABbAAABaAAAAGcAAABAAAAAQAAAAEAAAABoAAAAQAAAAGgAAABbAAAAWwAAAUsAAAFoAAAAaAAAAFsAAANbAAADWwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAVsAAAJbAAADaAAAAGgAAABbAAAAWwAAAVsAAAFoAAAAWwAAA1sAAANbAAAAWwAAA1sAAAFbAAADaAAAAEsAAABLAAACSwAAAGgAAABoAAAAWwAAAFsAAAFbAAAAWwAAAVsAAAJbAAAAWwAAA1sAAANbAAAAWwAAA2gAAABLAAAASwAAAksAAANLAAAAWwAAAFsAAAJbAAABWwAAAWgAAABbAAABWwAAAlsAAAJbAAABWwAAAVsAAABoAAAASwAAAksAAAFLAAADaAAAAGgAAABbAAABWwAAAFsAAAJoAAAAWwAAAFsAAANbAAABWwAAAlsAAANbAAADaAAAAEsAAANLAAACSwAAAmgAAABoAAAAWwAAAVsAAAJbAAACaAAAAFsAAABbAAADWwAAAlsAAABbAAAAWwAAAGgAAABLAAAASwAAAEsAAABoAAAAaAAAAFsAAAJbAAADWwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAJLAAAAaAAAAA== + tiles: ZAAAAFcAAAFXAAAAVwAAA1cAAAJkAAAARwAAAUcAAANHAAABRwAAAUcAAABHAAABRwAAAEcAAAJHAAADUwAAAGQAAABXAAABVwAAA1cAAANXAAADZAAAAEcAAAJHAAABRwAAAEcAAAJHAAABRwAAAEcAAANHAAACRwAAAlMAAABkAAAAVwAAAVcAAAJXAAACVwAAAVcAAABXAAAAVwAAAFcAAAJXAAADVwAAAFcAAAFXAAACVwAAAFcAAANTAAAAZAAAAFcAAANXAAADVwAAAVcAAAJkAAAAVwAAA1cAAANXAAAAVwAAAFcAAANXAAABVwAAA1cAAAFXAAAAUwAAAGQAAABXAAACVwAAAFcAAANXAAABZAAAAEcAAABHAAADRwAAAkcAAABHAAAARwAAAFcAAAJXAAADVwAAAFMAAABkAAAAVwAAAlcAAAFXAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAABVwAAAlcAAAFkAAAAZAAAAFcAAABXAAAAVwAAAGQAAABjAAAAPAAAADwAAAA8AAAAZAAAADwAAABkAAAAVwAAAlcAAABHAAABZAAAAFcAAAJXAAACVwAAAlcAAANkAAAAYwAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAAFcAAANXAAAARwAAAGQAAABkAAAAVwAAA1cAAABXAAABZAAAAGMAAAA8AAAAPAAAADwAAABkAAAAPAAAAGQAAABXAAAAVwAAAUcAAAFkAAAAZAAAAFcAAANXAAADVwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAVcAAAJXAAADZAAAAGQAAABXAAAAVwAAAVcAAAFkAAAAVwAAA1cAAANXAAAAVwAAA1cAAAFXAAADZAAAAEcAAABHAAACRwAAAGQAAABkAAAAVwAAAFcAAAFXAAAAVwAAAVcAAAJXAAAAVwAAA1cAAANXAAAAVwAAA2QAAABHAAAARwAAAkcAAANHAAAAVwAAAFcAAAJXAAABVwAAAWQAAABXAAABVwAAAlcAAAJXAAABVwAAAVcAAABkAAAARwAAAkcAAAFHAAADZAAAAGQAAABXAAABVwAAAFcAAAJkAAAAVwAAAFcAAANXAAABVwAAAlcAAANXAAADZAAAAEcAAANHAAACRwAAAmQAAABkAAAAVwAAAVcAAAJXAAACZAAAAFcAAABXAAADVwAAAlcAAABXAAAAVwAAAGQAAABHAAAARwAAAEcAAABkAAAAZAAAAFcAAAJXAAADVwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAAJHAAAAZAAAAA== 3,-3: ind: 3,-3 - tiles: VwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABLAAACSwAAAksAAAFLAAAASwAAAEsAAABLAAAASwAAAUsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJoAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAA1sAAAFbAAAAWwAAAVsAAAFbAAADWwAAAlsAAABbAAACWwAAAVsAAANbAAADWwAAAmgAAABoAAAAVwAAAFsAAANLAAADWwAAA0sAAANbAAADSwAAA1sAAAFLAAABWwAAA0sAAAJbAAAASwAAAFsAAAFoAAAAaAAAAGgAAABbAAABWwAAAFsAAAJbAAACWwAAAVsAAAJbAAADWwAAA1sAAANbAAABWwAAA1sAAAFbAAACaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAABLAAACaAAAABoAAAAaAAADGgAAARoAAAMaAAACGgAAABoAAABoAAAASwAAAUsAAAJLAAABSwAAAksAAABoAAAASwAAA2gAAABlAAADZQAAAWUAAABlAAABZQAAAWUAAANlAAABaAAAAEsAAAFLAAADSwAAAEsAAAFLAAADGgAAAEsAAAMaAAABZQAAA2UAAABlAAADZQAAAmUAAAJlAAADZQAAAGgAAABbAAACWwAAAlsAAAJbAAADWwAAAWgAAABLAAADaAAAAGUAAAJlAAABZQAAAmUAAABlAAAAZQAAAGUAAAJoAAAAWwAAAFsAAANbAAABWwAAA1sAAABoAAAASwAAAWgAAABlAAADZQAAAWUAAAFlAAACZQAAAWUAAANlAAAAaAAAAEsAAAFLAAADSwAAAksAAAJLAAADaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: UwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABHAAACRwAAAkcAAAFHAAAARwAAAEcAAABHAAAARwAAAUcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJkAAAARwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAA1cAAAFXAAAAVwAAAVcAAAFXAAADVwAAAlcAAABXAAACVwAAAVcAAANXAAADVwAAAmQAAABkAAAAUwAAAFcAAANHAAADVwAAA0cAAANXAAADRwAAA1cAAAFHAAABVwAAA0cAAAJXAAAARwAAAFcAAAFkAAAAZAAAAGQAAABXAAABVwAAAFcAAAJXAAACVwAAAVcAAAJXAAADVwAAA1cAAANXAAABVwAAA1cAAAFXAAACZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAGQAAABHAAACZAAAABYAAAAWAAADFgAAARYAAAMWAAACFgAAABYAAABkAAAARwAAAUcAAAJHAAABRwAAAkcAAABkAAAARwAAA2QAAABhAAADYQAAAWEAAABhAAABYQAAAWEAAANhAAABZAAAAEcAAAFHAAADRwAAAEcAAAFHAAADFgAAAEcAAAMWAAABYQAAA2EAAABhAAADYQAAAmEAAAJhAAADYQAAAGQAAABXAAACVwAAAlcAAAJXAAADVwAAAWQAAABHAAADZAAAAGEAAAJhAAABYQAAAmEAAABhAAAAYQAAAGEAAAJkAAAAVwAAAFcAAANXAAABVwAAA1cAAABkAAAARwAAAWQAAABhAAADYQAAAWEAAAFhAAACYQAAAWEAAANhAAAAZAAAAEcAAAFHAAADRwAAAkcAAAJHAAADZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== 4,-4: ind: 4,-4 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABXAAAAaAAAAFcAAABoAAAAaAAAAFcAAABoAAAAVwAAAFcAAABXAAAAaAAAAAAAAAAAAAAAaAAAAFcAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAFcAAABoAAAAaAAAAGgAAABXAAAAaAAAAFcAAAA1AAAAUAAAAGgAAAAaAAACGgAAAxoAAANoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAADUAAABoAAAAGgAAARoAAAEaAAADaAAAAFcAAABoAAAAVwAAAFcAAABoAAAAVwAAAGgAAABoAAAAUAAAADUAAAA1AAAAaAAAABoAAAAaAAAAGgAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACGgAAARoAAAEaAAABGgAAARoAAAEaAAACGgAAAGgAAABLAAADSwAAA0sAAANLAAACSwAAAEsAAANoAAAAGgAAABoAAAEaAAACGgAAAhoAAAIaAAABGgAAAhoAAABoAAAASwAAA0sAAABLAAABSwAAA0sAAABLAAADGgAAAhoAAAMaAAAAGgAAAxoAAAMaAAACGgAAABoAAAEaAAADaAAAAEsAAAJLAAAASwAAA0sAAANLAAAASwAAABoAAAAaAAADGgAAAhoAAANYAAAAWAAAAFgAAAAaAAACGgAAAWgAAABLAAADSwAAA0sAAAJLAAAASwAAAksAAAAaAAACGgAAAhoAAAMaAAABWAAAAFgAAABYAAAAGgAAARoAAANoAAAAaAAAAEsAAANoAAAAaAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAaAAAAFsAAAJbAAABWwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABTAAAAZAAAAFMAAABkAAAAZAAAAFMAAABkAAAAUwAAAFMAAABTAAAAZAAAAAAAAAAAAAAAZAAAAFMAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAFMAAABTAAAAZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAFMAAABkAAAAZAAAAGQAAABTAAAAZAAAAFMAAAAxAAAATAAAAGQAAAAWAAACFgAAAxYAAANkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAADEAAABkAAAAFgAAARYAAAEWAAADZAAAAFMAAABkAAAAUwAAAFMAAABkAAAAUwAAAGQAAABkAAAATAAAADEAAAAxAAAAZAAAABYAAAAWAAAAFgAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACFgAAARYAAAEWAAABFgAAARYAAAEWAAACFgAAAGQAAABHAAADRwAAA0cAAANHAAACRwAAAEcAAANkAAAAFgAAABYAAAEWAAACFgAAAhYAAAIWAAABFgAAAhYAAABkAAAARwAAA0cAAABHAAABRwAAA0cAAABHAAADFgAAAhYAAAMWAAAAFgAAAxYAAAMWAAACFgAAABYAAAEWAAADZAAAAEcAAAJHAAAARwAAA0cAAANHAAAARwAAABYAAAAWAAADFgAAAhYAAANUAAAAVAAAAFQAAAAWAAACFgAAAWQAAABHAAADRwAAA0cAAAJHAAAARwAAAkcAAAAWAAACFgAAAhYAAAMWAAABVAAAAFQAAABUAAAAFgAAARYAAANkAAAAZAAAAEcAAANkAAAAZAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAZAAAAFcAAAJXAAABVwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== 5,-3: ind: 5,-3 - tiles: VwAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFcAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABXAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAACSwAAA0sAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFcAAABoAAAAVwAAAGgAAABLAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAACSwAAAksAAABLAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAGgAAABXAAAAaAAAAEsAAANLAAADSwAAAmgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAA== + tiles: UwAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABTAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAACRwAAA0cAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAAABkAAAAUwAAAGQAAABHAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABHAAACRwAAAkcAAABHAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAGQAAABTAAAAZAAAAEcAAANHAAADRwAAAmQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAFMAAABTAAAAUwAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAA== 5,-4: ind: 5,-4 - tiles: aAAAAGgAAABXAAAAaAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABXAAAAaAAAAFcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABXAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFcAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAGgAAA2gAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAJoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAVwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAGQAAABTAAAAZAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABTAAAAZAAAAFMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABkAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABTAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAFMAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAFgAAA2QAAABkAAAAZAAAAFMAAABTAAAAUwAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAJkAAAAZAAAAFMAAABTAAAAUwAAAFMAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAUwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,-4: ind: 3,-4 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAABSwAAAksAAAJLAAAASwAAAEsAAANLAAABSwAAAmgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAA0sAAAFLAAACSwAAAUsAAAJLAAAASwAAAksAAAJoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAANLAAABSwAAAEsAAAJLAAACSwAAAEsAAAJLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABkAAAAUwAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAABRwAAAkcAAAJHAAAARwAAAEcAAANHAAABRwAAAmQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAA0cAAAFHAAACRwAAAUcAAAJHAAAARwAAAkcAAAJkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAANHAAABRwAAAEcAAAJHAAACRwAAAEcAAAJHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== 4,-1: ind: 4,-1 - tiles: SwAAAUsAAABLAAAASwAAA0sAAANLAAAASwAAA0sAAAFoAAAAaAAAAGgAAABoAAAASwAAA0sAAAJLAAADSwAAAUsAAANLAAADSwAAAEsAAAJLAAABSwAAAUsAAAFLAAABSwAAAUsAAANLAAABSwAAAEsAAABLAAAASwAAAUsAAAJLAAABSwAAAksAAAJLAAADSwAAA0sAAABLAAADSwAAAUsAAABLAAAASwAAAEsAAAFLAAADSwAAAksAAANLAAADSwAAA0sAAANLAAACSwAAAksAAABLAAADSwAAAUsAAANLAAACSwAAAksAAANLAAAASwAAAEsAAAFLAAACSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAADSwAAA0sAAANoAAAAGgAAARoAAAMaAAADGgAAABoAAAAaAAABGgAAABoAAAEaAAABaAAAAEsAAABLAAADSwAAA0sAAANLAAACGgAAARoAAAIaAAADGgAAARoAAAEaAAABGgAAABoAAAIaAAACGgAAAhoAAABLAAABSwAAAEsAAAJLAAAAaAAAABoAAAIaAAAAGgAAABoAAAMaAAAAGgAAARoAAAIaAAAAGgAAARoAAAEaAAAASwAAAksAAANLAAACSwAAAmgAAABoAAAAGgAAAEsAAABLAAADGgAAABoAAAEaAAABSwAAAksAAAMaAAABaAAAAEsAAANLAAADSwAAAksAAANoAAAAaAAAABoAAAFLAAAASwAAAhoAAAMaAAABGgAAAEsAAAJLAAACGgAAAWgAAABLAAAASwAAAEsAAAJLAAAASwAAAWgAAAAaAAADSwAAAUsAAAAaAAAAGgAAABoAAAJLAAAASwAAAxoAAAJoAAAASwAAA0sAAAJLAAAASwAAAksAAABoAAAAGgAAAksAAAJLAAADGgAAABoAAAMaAAADSwAAAUsAAAFoAAAAaAAAAGgAAABoAAAASwAAAGgAAABoAAAAaAAAABoAAANLAAABSwAAARoAAAAaAAAAGgAAAUsAAAJLAAABGgAAAhoAAAFoAAAASwAAAksAAAFLAAACSwAAAWgAAAAaAAAASwAAAUsAAAAaAAAAGgAAAxoAAABLAAABSwAAAGgAAABoAAAAaAAAAEsAAANLAAABSwAAAEsAAANoAAAAaAAAABoAAAJoAAAAGgAAAxoAAAAaAAABGgAAABoAAAEaAAADGgAAAWgAAABLAAAASwAAAUsAAAFLAAAANwAAADcAAAA3AAAAaAAAAGgAAAAaAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: RwAAAUcAAABHAAAARwAAA0cAAANHAAAARwAAA0cAAAFkAAAAZAAAAGQAAABkAAAARwAAA0cAAAJHAAADRwAAAUcAAANHAAADRwAAAEcAAAJHAAABRwAAAUcAAAFHAAABRwAAAUcAAANHAAABRwAAAEcAAABHAAAARwAAAUcAAAJHAAABRwAAAkcAAAJHAAADRwAAA0cAAABHAAADRwAAAUcAAABHAAAARwAAAEcAAAFHAAADRwAAAkcAAANHAAADRwAAA0cAAANHAAACRwAAAkcAAABHAAADRwAAAUcAAANHAAACRwAAAkcAAANHAAAARwAAAEcAAAFHAAACRwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAABHAAADRwAAA0cAAANkAAAAFgAAARYAAAMWAAADFgAAABYAAAAWAAABFgAAABYAAAEWAAABZAAAAEcAAABHAAADRwAAA0cAAANHAAACFgAAARYAAAIWAAADFgAAARYAAAEWAAABFgAAABYAAAIWAAACFgAAAhYAAABHAAABRwAAAEcAAAJHAAAAZAAAABYAAAIWAAAAFgAAABYAAAMWAAAAFgAAARYAAAIWAAAAFgAAARYAAAEWAAAARwAAAkcAAANHAAACRwAAAmQAAABkAAAAFgAAAEcAAABHAAADFgAAABYAAAEWAAABRwAAAkcAAAMWAAABZAAAAEcAAANHAAADRwAAAkcAAANkAAAAZAAAABYAAAFHAAAARwAAAhYAAAMWAAABFgAAAEcAAAJHAAACFgAAAWQAAABHAAAARwAAAEcAAAJHAAAARwAAAWQAAAAWAAADRwAAAUcAAAAWAAAAFgAAABYAAAJHAAAARwAAAxYAAAJkAAAARwAAA0cAAAJHAAAARwAAAkcAAABkAAAAFgAAAkcAAAJHAAADFgAAABYAAAMWAAADRwAAAUcAAAFkAAAAZAAAAGQAAABkAAAARwAAAGQAAABkAAAAZAAAABYAAANHAAABRwAAARYAAAAWAAAAFgAAAUcAAAJHAAABFgAAAhYAAAFkAAAARwAAAkcAAAFHAAACRwAAAWQAAAAWAAAARwAAAUcAAAAWAAAAFgAAAxYAAABHAAABRwAAAGQAAABkAAAAZAAAAEcAAANHAAABRwAAAEcAAANkAAAAZAAAABYAAAJkAAAAFgAAAxYAAAAWAAABFgAAABYAAAEWAAADFgAAAWQAAABHAAAARwAAAUcAAAFHAAAAMwAAADMAAAAzAAAAZAAAAGQAAAAWAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== 5,-1: ind: 5,-1 - tiles: aAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAADSwAAAUsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAEsAAAJLAAACaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAJLAAADSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAACSwAAAksAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAEsAAABLAAADaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAJLAAABSwAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAAASwAAAEsAAANoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAUsAAANLAAADaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAJLAAABSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAUsAAANLAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABLAAADSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAAASwAAA0sAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHAAADRwAAAUcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAEcAAAJHAAACZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEcAAAJHAAADRwAAAmQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHAAACRwAAAkcAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAEcAAABHAAADZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEcAAAJHAAABRwAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHAAAARwAAAEcAAANkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAUcAAANHAAADZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEcAAAJHAAABRwAAA2QAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAUcAAANHAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEcAAABHAAADRwAAAmQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHAAAARwAAA0cAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 4,-5: ind: 4,-5 - tiles: AAAAAGgAAABoAAAAAAAAAAAAAABoAAAAaAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAVwAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAVwAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAA== + tiles: AAAAAGQAAABkAAAAAAAAAAAAAABkAAAAZAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAUwAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAAUwAAAGQAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAA== 5,-5: ind: 5,-5 - tiles: AAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAFcAAABoAAAAZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAFMAAABkAAAAYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,-5: ind: 3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAABAAAAAQAAAEEAAAABAAAAAQAAAAEAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAQAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAEAAAABAAAAQQAAAAEAAACBAAAAgAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAQAAAIEAAACBAAAAgAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABXAAAAaAAAAFcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAVwAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAVwAAAFcAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAABgAAAAYAAAEGAAAABgAAAAYAAAAGAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAQAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAGAAAABgAAAQYAAAAGAAACBgAAAgAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAYAAAIGAAACBgAAAgAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABTAAAAZAAAAFMAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAUwAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAUwAAAFMAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAA== 2,-5: ind: 2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAANwAAADcAAAA3AAAANwAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABoAAAANwAAADcAAABoAAAANwAAADcAAAA3AAAANwAAADcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAANwAAAGgAAAA3AAAANwAAADcAAAA3AAAAaAAAADcAAABoAAAANwAAAAAAAABoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABXAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAZQAAAmgAAABoAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAMwAAADMAAAAzAAAAMwAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAABkAAAAMwAAADMAAABkAAAAMwAAADMAAAAzAAAAMwAAADMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAADMAAAAzAAAAMwAAADMAAAAzAAAAMwAAADMAAAAzAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAMwAAAGQAAAAzAAAAMwAAADMAAAAzAAAAZAAAADMAAABkAAAAMwAAAAAAAABkAAAAUwAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAUwAAAFMAAABTAAAAUwAAAGQAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAGQAAABTAAAAUwAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAYQAAAmQAAABkAAAAZAAAAA== 1,-5: ind: 1,-5 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAAAAAAGcAAABnAAAAaAAAAEEAAABBAAAAQQAAAGgAAABBAAAAQQAAAEEAAABoAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAGgAAABBAAAAQQAAAEEAAABoAAAAQQAAAEEAAABBAAAAaAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAABoAAAAQQAAAEEAAABBAAAAaAAAAEEAAABBAAAAQQAAAGgAAAAAAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAaAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAUwAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAZAAAAGQAAABkAAAAAAAAAGMAAABjAAAAZAAAAD0AAAA9AAAAPQAAAGQAAAA9AAAAPQAAAD0AAABkAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAGQAAAA9AAAAPQAAAD0AAABkAAAAPQAAAD0AAAA9AAAAZAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGMAAABkAAAAPQAAAD0AAAA9AAAAZAAAAD0AAAA9AAAAPQAAAGQAAAAAAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAZAAAAA== 1,-4: ind: 1,-4 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABBAAAAQQAAAEEAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAQQAAAEEAAABBAAAAaAAAAGcAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAEEAAABBAAAAQQAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAQQAAAEEAAABBAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAEEAAABBAAAAQQAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABBAAAAQQAAAEEAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAEEAAABBAAAAQQAAAGgAAABnAAAAaAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAAA9AAAAPQAAAD0AAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAPQAAAD0AAAA9AAAAZAAAAGMAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAD0AAAA9AAAAPQAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAPQAAAD0AAAA9AAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAD0AAAA9AAAAPQAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAAA9AAAAPQAAAD0AAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAD0AAAA9AAAAPQAAAGQAAABjAAAAZAAAAA== -1,-5: ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAmgAAABoAAAASwAAAUsAAABLAAADSwAAAksAAAFLAAABSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFoAAAAaAAAAEsAAABLAAAASwAAAUsAAAJLAAAASwAAAksAAAFoAAAASwAAAUsAAANLAAAASwAAA2gAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAUsAAANLAAABSwAAA0sAAABLAAAASwAAAmgAAABoAAAASwAAAksAAANLAAABSwAAAksAAABLAAAASwAAAWgAAABLAAADSwAAAksAAAFLAAAASwAAAksAAAFLAAABSwAAAEsAAAJLAAACSwAAAUsAAABLAAABSwAAAUsAAABoAAAASwAAAUsAAAFLAAABSwAAA2gAAABoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAAASwAAAEsAAAJoAAAASwAAAksAAANLAAAASwAAAksAAANLAAAASwAAAUsAAAJLAAACSwAAAksAAAFLAAADSwAAA0sAAAFLAAACSwAAAEsAAABLAAABSwAAA0sAAAJLAAADSwAAA0sAAANLAAAASwAAAUsAAAFLAAAASwAAAUsAAAFLAAABSwAAAksAAAJLAAABSwAAA0sAAABLAAACSwAAA0sAAANLAAACSwAAAEsAAANLAAAASwAAAEsAAAFLAAACSwAAA0sAAAJLAAADSwAAAksAAAFLAAABWAAAAGgAAABoAAAAWQAAAlkAAAFZAAABaAAAAGgAAABLAAACSwAAAEsAAAFLAAACSwAAAEsAAABLAAADSwAAA2gAAABoAAAAQAAAABoAAAIaAAACGgAAAkAAAABoAAAAaAAAAEsAAAJoAAAAaAAAAEsAAAJLAAAASwAAAEsAAAJoAAAAaAAAAEAAAAAaAAAAGgAAABoAAAJAAAAAaAAAAEsAAABLAAAASwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABAAAAAGgAAAxoAAAMaAAAAGgAAA2gAAAAaAAADGgAAAhoAAAIaAAADGgAAAxoAAAEaAAADGgAAAQ== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAEcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAmQAAABkAAAARwAAAUcAAABHAAADRwAAAkcAAAFHAAABRwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFkAAAAZAAAAEcAAABHAAAARwAAAUcAAAJHAAAARwAAAkcAAAFkAAAARwAAAUcAAANHAAAARwAAA2QAAABHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAUcAAANHAAABRwAAA0cAAABHAAAARwAAAmQAAABkAAAARwAAAkcAAANHAAABRwAAAkcAAABHAAAARwAAAWQAAABHAAADRwAAAkcAAAFHAAAARwAAAkcAAAFHAAABRwAAAEcAAAJHAAACRwAAAUcAAABHAAABRwAAAUcAAABkAAAARwAAAUcAAAFHAAABRwAAA2QAAABkAAAAZAAAAEcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAAARwAAAEcAAAJkAAAARwAAAkcAAANHAAAARwAAAkcAAANHAAAARwAAAUcAAAJHAAACRwAAAkcAAAFHAAADRwAAA0cAAAFHAAACRwAAAEcAAABHAAABRwAAA0cAAAJHAAADRwAAA0cAAANHAAAARwAAAUcAAAFHAAAARwAAAUcAAAFHAAABRwAAAkcAAAJHAAABRwAAA0cAAABHAAACRwAAA0cAAANHAAACRwAAAEcAAANHAAAARwAAAEcAAAFHAAACRwAAA0cAAAJHAAADRwAAAkcAAAFHAAABVAAAAGQAAABkAAAAVQAAAlUAAAFVAAABZAAAAGQAAABHAAACRwAAAEcAAAFHAAACRwAAAEcAAABHAAADRwAAA2QAAABkAAAAPAAAABYAAAIWAAACFgAAAjwAAABkAAAAZAAAAEcAAAJkAAAAZAAAAEcAAAJHAAAARwAAAEcAAAJkAAAAZAAAADwAAAAWAAAAFgAAABYAAAI8AAAAZAAAAEcAAABHAAAARwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAA8AAAAFgAAAxYAAAMWAAAAFgAAA2QAAAAWAAADFgAAAhYAAAIWAAADFgAAAxYAAAEWAAADFgAAAQ== -2,-5: ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABnAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAZwAAAGgAAABLAAACSwAAAmgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABoAAAASwAAA0sAAAAPAAAADwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJoAAAAaAAAAA8AAABoAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABXAAAAaAAAAGgAAABLAAABSwAAAGgAAAAPAAADaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAASwAAA0sAAABoAAAAaAAAAGgAAAAAAAAAaAAAAEsAAAJLAAACSwAAAUsAAAJLAAADaAAAAGgAAABZAAACaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGgAAABLAAACSwAAAksAAAFLAAACSwAAAGgAAABLAAAASwAAA2gAAABLAAABSwAAAWgAAABoAAAAZwAAAGcAAABoAAAASwAAAUsAAAJLAAACSwAAA0sAAAEaAAADSwAAA0sAAABLAAADSwAAAUsAAAFoAAAAaAAAAAAAAAAAAAAAaAAAABoAAAEaAAADGgAAAxoAAAIaAAACaAAAAEsAAAJLAAAAaAAAAEsAAAJLAAABaAAAAGgAAAAAAAAAAAAAAGgAAAAaAAABGgAAAhoAAAIaAAACGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAARoAAAMaAAABGgAAARoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAEaAAACGgAAABoAAAMaAAAAaAAAAGgAAABoAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAGgAAAhoAAAEaAAADGgAAAmgAAAAAAAAAaAAAAFcAAABoAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABjAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAYwAAAGQAAABHAAACRwAAAmQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABkAAAARwAAA0cAAAALAAAACwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJkAAAAZAAAAAsAAABkAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABTAAAAZAAAAGQAAABHAAABRwAAAGQAAAALAAADZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAARwAAA0cAAABkAAAAZAAAAGQAAAAAAAAAZAAAAEcAAAJHAAACRwAAAUcAAAJHAAADZAAAAGQAAABVAAACZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGQAAABHAAACRwAAAkcAAAFHAAACRwAAAGQAAABHAAAARwAAA2QAAABHAAABRwAAAWQAAABkAAAAYwAAAGMAAABkAAAARwAAAUcAAAJHAAACRwAAA0cAAAEWAAADRwAAA0cAAABHAAADRwAAAUcAAAFkAAAAZAAAAAAAAAAAAAAAZAAAABYAAAEWAAADFgAAAxYAAAIWAAACZAAAAEcAAAJHAAAAZAAAAEcAAAJHAAABZAAAAGQAAAAAAAAAAAAAAGQAAAAWAAABFgAAAhYAAAIWAAACFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAARYAAAMWAAABFgAAARYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAEWAAACFgAAABYAAAMWAAAAZAAAAGQAAABkAAAAUwAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAAAFgAAAhYAAAEWAAADFgAAAmQAAAAAAAAAZAAAAFMAAABkAAAAZAAAAA== -3,-4: ind: -3,-4 - tiles: AAAAAGgAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAFcAAABXAAAAVwAAAAAAAABoAAAAZwAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAaAAAAGcAAABoAAAAZwAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAZwAAAGgAAABnAAAAaAAAAAAAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAAAAAABoAAAAZwAAAGgAAABnAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAADkAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAA5AAAAOQAAADkAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: AAAAAGQAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAFMAAABTAAAAUwAAAAAAAABkAAAAYwAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAZAAAAGMAAABkAAAAYwAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAYwAAAGQAAABjAAAAZAAAAAAAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAAAAAABkAAAAYwAAAGQAAABjAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAADUAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAA1AAAANQAAADUAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAPAAAADwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAA8AAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAPAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== -3,-5: ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAA8AAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAABoAAAAZwAAAGgAAABnAAAAZwAAAAAAAABnAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGcAAABoAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABXAAAAAAAAAGgAAABnAAAAaAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAVwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAAsAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAABkAAAAYwAAAGQAAABjAAAAYwAAAAAAAABjAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGMAAABkAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABTAAAAAAAAAGQAAABjAAAAZAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAUwAAAA== 0,-5: ind: 0,-5 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABaAAAAEsAAABLAAACSwAAAUsAAANLAAABSwAAAEsAAANoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAABLAAAASwAAA0sAAANLAAADSwAAAUsAAABLAAACSwAAA1cAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAJLAAACSwAAAEsAAABLAAABSwAAAksAAAFLAAACSwAAAksAAAFXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAADSwAAAEsAAAFLAAACSwAAAEsAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAmgAAABLAAABSwAAA2gAAABoAAAAaAAAAEsAAAJLAAABaAAAAFcAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAANLAAABSwAAAksAAANLAAACSwAAA0sAAABLAAADSwAAAWgAAABXAAAAVwAAAFcAAABXAAAAVwAAAEsAAAJLAAAASwAAAksAAANLAAACSwAAAksAAAFLAAADSwAAAUsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAAFLAAADSwAAAUsAAAFLAAABSwAAA0sAAAJLAAACaAAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAUsAAAJLAAACSwAAAEsAAAFLAAACSwAAA0sAAANLAAACSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAABSwAAAEsAAABLAAABSwAAAksAAAJLAAACSwAAA0sAAABoAAAAaAAAAEEAAABBAAAAQQAAAGgAAABoAAAASwAAAksAAAJLAAAASwAAA0sAAANLAAABSwAAAEsAAANLAAABaAAAAGgAAABBAAAAQQAAAEEAAABoAAAAaAAAAGgAAABoAAAASwAAA2gAAABoAAAAaAAAAGgAAABLAAABaAAAAGgAAABoAAAAQQAAAEEAAABBAAAAaAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABZAAAAEcAAABHAAACRwAAAUcAAANHAAABRwAAAEcAAANkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAABHAAAARwAAA0cAAANHAAADRwAAAUcAAABHAAACRwAAA1MAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAJHAAACRwAAAEcAAABHAAABRwAAAkcAAAFHAAACRwAAAkcAAAFTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAADRwAAAEcAAAFHAAACRwAAAEcAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAmQAAABHAAABRwAAA2QAAABkAAAAZAAAAEcAAAJHAAABZAAAAFMAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAANHAAABRwAAAkcAAANHAAACRwAAA0cAAABHAAADRwAAAWQAAABTAAAAUwAAAFMAAABTAAAAUwAAAEcAAAJHAAAARwAAAkcAAANHAAACRwAAAkcAAAFHAAADRwAAAUcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAEcAAAFHAAADRwAAAUcAAAFHAAABRwAAA0cAAAJHAAACZAAAAGMAAABjAAAAYwAAAGMAAABjAAAARwAAAUcAAAJHAAACRwAAAEcAAAFHAAACRwAAA0cAAANHAAACRwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAABRwAAAEcAAABHAAABRwAAAkcAAAJHAAACRwAAA0cAAABkAAAAZAAAAD0AAAA9AAAAPQAAAGQAAABkAAAARwAAAkcAAAJHAAAARwAAA0cAAANHAAABRwAAAEcAAANHAAABZAAAAGQAAAA9AAAAPQAAAD0AAABkAAAAZAAAAGQAAABkAAAARwAAA2QAAABkAAAAZAAAAGQAAABHAAABZAAAAGQAAABkAAAAPQAAAD0AAAA9AAAAZAAAAA== 0,-6: ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGcAAABoAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABnAAAAaAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGcAAABXAAAAVwAAAEAAAABAAAAAQAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGMAAABkAAAAPAAAADwAAAA8AAAAPAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABjAAAAZAAAADwAAAA8AAAAPAAAADwAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAPAAAADwAAAA8AAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGMAAABTAAAAUwAAADwAAAA8AAAAPAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAA== -1,-6: ind: -1,-6 - tiles: AAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: AAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== 1,-6: ind: 1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAABIAAABoAAAAGgAAAWgAAAASAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAABoAAANoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAGgAAAhoAAAAaAAACaAAAABoAAAAaAAADGgAAAGgAAAAaAAABZwAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAABoAAAAaAAACGgAAAmgAAAAaAAAAGgAAABoAAABoAAAAGgAAAGcAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAaAAABGgAAAxoAAAEaAAACGgAAAxoAAAIaAAABGgAAAxoAAAIAAAAAZwAAAGcAAAAAAAAAAAAAAGgAAABoAAAAGgAAABoAAAAaAAACaAAAABoAAAIaAAABGgAAA2gAAAAaAAABAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABGgAAABoAAAFoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAMaAAAAGgAAAhoAAABoAAAAQAAAAEAAAABAAAAAaAAAAAAAAABnAAAAZwAAAGcAAABnAAAAaAAAABoAAAE3AAAANwAAADcAAAAaAAADaAAAAEAAAABAAAAAQAAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAAAaAAADNwAAADcAAAA3AAAAGgAAAhoAAANAAAAAQAAAAEAAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAGgAAATcAAAA3AAAANwAAABoAAAMaAAADQAAAAEAAAABAAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGgAAAAaAAADGgAAAxoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAA4AAABkAAAAFgAAAWQAAAAOAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAABYAAANkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAFgAAAhYAAAAWAAACZAAAABYAAAAWAAADFgAAAGQAAAAWAAABYwAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAABYAAAAWAAACFgAAAmQAAAAWAAAAFgAAABYAAABkAAAAFgAAAGMAAABjAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAWAAABFgAAAxYAAAEWAAACFgAAAxYAAAIWAAABFgAAAxYAAAIAAAAAYwAAAGMAAAAAAAAAAAAAAGQAAABkAAAAFgAAABYAAAAWAAACZAAAABYAAAIWAAABFgAAA2QAAAAWAAABAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAABFgAAABYAAAFkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAFgAAABYAAAMWAAAAFgAAAhYAAABkAAAAPAAAADwAAAA8AAAAZAAAAAAAAABjAAAAYwAAAGMAAABjAAAAZAAAABYAAAEzAAAAMwAAADMAAAAWAAADZAAAADwAAAA8AAAAPAAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAAAWAAADMwAAADMAAAAzAAAAFgAAAhYAAAM8AAAAPAAAADwAAABkAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAFgAAATMAAAAzAAAAMwAAABYAAAMWAAADPAAAADwAAAA8AAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAAAWAAADFgAAAxYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAABYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAA== 2,-6: ind: 2,-6 - tiles: aAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAABGgAAAmgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAhoAAAFoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAIaAAACaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAABGgAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAWgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAABFgAAAmQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAhYAAAFkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAIWAAACZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAABFgAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAWQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,-7: ind: 2,-7 - tiles: aAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,-8: ind: 2,-8 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,-7: ind: 1,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAEgAAABoAAANoAAAAEgAAAGgAAAAaAAABEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAABIAAAAaAAAAEgAAABIAAAASAAAAGgAAAxIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAASAAAAGgAAAxoAAAIaAAACGgAAAxoAAAESAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAEgAAABIAAAAaAAAAGgAAAhoAAAMSAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAJoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAGgAAAxoAAAAaAAACGgAAAxoAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAABoAAAIaAAABGgAAARoAAAEaAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAFoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAEgAAAGgAAAAaAAAAaAAAABIAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAABIAAABoAAAAGgAAAmgAAAASAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAAASAAAAaAAAABoAAANoAAAAEgAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAEgAAAGgAAAAaAAAAaAAAABIAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAABIAAABoAAAAGgAAAWgAAAASAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAAASAAAAaAAAABoAAAJoAAAAEgAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAEgAAAGgAAAAaAAAAaAAAABIAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAABIAAABoAAAAGgAAAWgAAAASAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAADgAAABYAAANkAAAADgAAAGQAAAAWAAABDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAA4AAAAWAAAADgAAAA4AAAAOAAAAFgAAAw4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAOAAAAFgAAAxYAAAIWAAACFgAAAxYAAAEOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAADgAAAA4AAAAWAAAAFgAAAhYAAAMOAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAJkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAFgAAAxYAAAAWAAACFgAAAxYAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAABYAAAIWAAABFgAAARYAAAEWAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAFkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAADgAAAGQAAAAWAAAAZAAAAA4AAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAA4AAABkAAAAFgAAAmQAAAAOAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAAAOAAAAZAAAABYAAANkAAAADgAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAADgAAAGQAAAAWAAAAZAAAAA4AAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAA4AAABkAAAAFgAAAWQAAAAOAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAAAOAAAAZAAAABYAAAJkAAAADgAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAADgAAAGQAAAAWAAAAZAAAAA4AAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAA4AAABkAAAAFgAAAWQAAAAOAAAAZAAAAA== 1,-8: ind: 1,-8 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAEgAAABoAAAMaAAAAGgAAAxoAAAAaAAABEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAABIAAAAaAAAAEgAAABIAAAASAAAAGgAAAhIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAAASAAAAGgAAAWgAAAASAAAAaAAAABoAAAESAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAAASAAAAGgAAAhoAAABoAAAAaAAAAGgAAAAaAAACGgAAAg== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAADgAAABYAAAMWAAAAFgAAAxYAAAAWAAABDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAA4AAAAWAAAADgAAAA4AAAAOAAAAFgAAAg4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAAAOAAAAFgAAAWQAAAAOAAAAZAAAABYAAAEOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAAAOAAAAFgAAAhYAAABkAAAAZAAAAGQAAAAWAAACFgAAAg== -2,-6: ind: -2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGcAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABnAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGMAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABjAAAAAAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAYwAAAAAAAAAAAAAAAAAAAA== -4,-4: ind: -4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGcAAABoAAAAZwAAAGgAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGMAAABkAAAAYwAAAGQAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -4,-5: ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAZwAAAGgAAABnAAAAaAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAYwAAAGQAAABjAAAAZAAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAA== -4,-3: ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -4,2: ind: -4,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,2: ind: -3,2 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,3: ind: -1,3 - tiles: ZQAAA2UAAAJlAAADZQAAAmUAAAJLAAACSwAAA0sAAABLAAAASwAAA0sAAAFLAAABaAAAACwAAAAaAAABLAAAAGUAAABlAAAAZQAAAGUAAABlAAABaAAAAEsAAANLAAABSwAAAksAAABLAAAASwAAA2gAAABLAAABSwAAAUsAAAJlAAADZQAAAmUAAAJlAAABZQAAAmgAAABLAAABSwAAAEsAAABLAAACSwAAAksAAANLAAACSwAAAEsAAAFLAAABZQAAA2UAAAJlAAACZQAAAWUAAANoAAAANgAAADYAAABLAAACSwAAAUsAAANLAAADaAAAAEsAAANLAAAASwAAAWUAAAJlAAAAZQAAAWUAAABlAAAAaAAAADYAAAA2AAAASwAAAUsAAAJLAAADSwAAAWgAAABoAAAAaAAAAGgAAAAaAAABGgAAARoAAAIaAAACGgAAAWgAAAA2AAAANgAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YQAAA2EAAAJhAAADYQAAAmEAAAJHAAACRwAAA0cAAABHAAAARwAAA0cAAAFHAAABZAAAACgAAAAWAAABKAAAAGEAAABhAAAAYQAAAGEAAABhAAABZAAAAEcAAANHAAABRwAAAkcAAABHAAAARwAAA2QAAABHAAABRwAAAUcAAAJhAAADYQAAAmEAAAJhAAABYQAAAmQAAABHAAABRwAAAEcAAABHAAACRwAAAkcAAANHAAACRwAAAEcAAAFHAAABYQAAA2EAAAJhAAACYQAAAWEAAANkAAAAMgAAADIAAABHAAACRwAAAUcAAANHAAADZAAAAEcAAANHAAAARwAAAWEAAAJhAAAAYQAAAWEAAABhAAAAZAAAADIAAAAyAAAARwAAAUcAAAJHAAADRwAAAWQAAABkAAAAZAAAAGQAAAAWAAABFgAAARYAAAIWAAACFgAAAWQAAAAyAAAAMgAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,3: ind: 1,3 - tiles: ZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,2: ind: 2,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,2: ind: 3,2 - tiles: AAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -2,3: ind: -2,3 - tiles: AAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAADcAAAA3AAAAaAAAADcAAAA3AAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAADMAAAAzAAAAZAAAADMAAAAzAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 5,-6: ind: 5,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 4,-6: ind: 4,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGgAAABoAAAAAAAAAAAAAABnAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGQAAABkAAAAAAAAAAAAAABjAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAA== -1,-7: ind: -1,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAA== 0,-7: ind: 0,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAA== 3,-6: ind: 3,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAQAAAIEAAABBAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAQAAAEEAAABBAAAAAQAAAIEAAACAAAAAGcAAAAAAAAAZwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAYAAAIGAAABBgAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAYAAAEGAAABBgAAAAYAAAIGAAACAAAAAGMAAAAAAAAAYwAAAA== -6,-1: ind: -6,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - bodyStatus: InAir @@ -395,49 +395,49 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 2577: 30,-34 - 2578: 32,-34 + 2512: 30,-34 + 2513: 32,-34 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 1169: -24,-18 - 1170: -24,-16 - 2783: 2,-64 - 2784: 2,-63 - 2785: 2,-62 - 2786: 2,-61 - 2787: 2,-60 - 3310: 2,-67 - 3311: 2,-66 - 3388: 66,-52 - 3389: 66,-51 - 3620: -23,-25 - 3621: -25,-25 + 1164: -24,-18 + 1165: -24,-16 + 2718: 2,-64 + 2719: 2,-63 + 2720: 2,-62 + 2721: 2,-61 + 2722: 2,-60 + 3245: 2,-67 + 3246: 2,-66 + 3323: 66,-52 + 3324: 66,-51 + 3555: -23,-25 + 3556: -25,-25 - node: color: '#FFFFFFFF' id: Arrows decals: - 1620: 73,-55 - 2896: 5,-49 - 2897: 6,-49 - 2898: 7,-49 - 2936: 3,-45 - 2977: -6,-76 - 3042: 4,-76 - 3384: 80,-54 - 3385: 79,-54 - 3386: 74,-54 - 3387: 72,-54 + 1562: 73,-55 + 2831: 5,-49 + 2832: 6,-49 + 2833: 7,-49 + 2871: 3,-45 + 2912: -6,-76 + 2977: 4,-76 + 3319: 80,-54 + 3320: 79,-54 + 3321: 74,-54 + 3322: 72,-54 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 2966: 9,-75 - 3622: -25,-27 - 3623: -23,-27 + 2901: 9,-75 + 3557: -25,-27 + 3558: -23,-27 - node: color: '#FFFFFFFF' id: ArrowsGreyscale @@ -447,23 +447,23 @@ entities: color: '#529CFF93' id: Bot decals: - 2939: 16,-79 - 2940: 16,-79 + 2874: 16,-79 + 2875: 16,-79 - node: color: '#DE3A3A96' id: Bot decals: - 2937: 13,-79 - 2938: 14,-79 + 2872: 13,-79 + 2873: 14,-79 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Bot decals: - 3312: 1,-72 - 3313: 9,-68 - 3314: 9,-67 - 3315: 5,-66 + 3247: 1,-72 + 3248: 9,-68 + 3249: 9,-67 + 3250: 5,-66 - node: color: '#FFFFFFFF' id: Bot @@ -497,113 +497,113 @@ entities: 701: 77,-33 713: 61,-21 714: 61,-23 - 1035: 81,-6 - 1036: 81,-4 - 1037: 81,-12 - 1038: 81,-14 - 1119: 63,-56 - 1120: 62,-56 - 1121: 61,-56 - 1122: 60,-56 - 1168: -23,-16 - 1173: -25,-18 - 1174: -25,-16 - 1264: 59,-38 - 1265: 59,-37 - 1266: 60,-37 - 1267: 60,-38 - 1268: 61,-38 - 1269: 61,-37 - 1270: 62,-37 - 1271: 62,-38 - 1615: 72,-58 - 1616: 72,-57 - 1617: 73,-58 - 1618: 74,-58 - 1619: 74,-57 - 2449: -73,8 - 2450: -74,8 - 2451: -75,8 - 2452: -76,8 - 2453: -73,-4 - 2454: -74,-4 - 2455: -75,-4 - 2456: -76,-4 - 2576: 33,-33 - 2591: 11,-45 - 2592: 10,-45 - 2593: 9,-45 - 2594: 9,-44 - 2595: 10,-44 - 2596: 11,-44 - 2597: 11,-43 - 2598: 9,-43 - 2599: 10,-43 - 2602: 14,-45 - 2603: 14,-44 - 2604: 14,-43 - 2778: 1,-64 - 2779: 1,-63 - 2780: 1,-62 - 2781: 1,-61 - 2782: 1,-60 - 2934: 6,-41 - 2935: 7,-41 - 2963: 5,-73 - 2964: 6,-73 - 2965: 7,-73 - 3210: -1,-63 - 3211: -1,-64 - 3308: 1,-67 - 3309: 1,-66 - 3378: 65,-52 - 3379: 65,-51 - 3380: 72,-55 - 3381: 74,-55 - 3382: 79,-55 - 3383: 80,-55 - 3391: 74,-44 - 3392: 73,-44 - 3446: 34,-47 - 3447: 34,-46 - 3448: 34,-50 - 3449: 34,-49 - 3450: 37,-50 - 3451: 37,-49 - 3452: 18,-84 - 3453: 14,-85 - 3454: 14,-86 - 3455: 14,-87 - 3503: 34,-44 - 3504: 35,-44 - 3505: 34,-39 - 3587: -35,-19 - 3588: -36,-19 - 3589: -37,-19 - 3590: -38,-19 - 3591: -37,-27 - 3592: -38,-27 - 3593: -39,-27 - 3594: -37,-25 - 3595: -38,-25 - 3596: -39,-25 - 3597: -37,-23 - 3598: -38,-23 - 3599: -39,-23 - 3609: -26,-32 - 3610: -27,-32 - 3611: -27,-34 - 3612: -27,-33 - 3613: -26,-33 - 3614: -26,-34 - 3615: -26,-35 - 3616: -27,-35 + 1031: 81,-6 + 1032: 81,-4 + 1033: 81,-12 + 1034: 81,-14 + 1114: 63,-56 + 1115: 62,-56 + 1116: 61,-56 + 1117: 60,-56 + 1163: -23,-16 + 1168: -25,-18 + 1169: -25,-16 + 1259: 59,-38 + 1260: 59,-37 + 1261: 60,-37 + 1262: 60,-38 + 1263: 61,-38 + 1264: 61,-37 + 1265: 62,-37 + 1266: 62,-38 + 1557: 72,-58 + 1558: 72,-57 + 1559: 73,-58 + 1560: 74,-58 + 1561: 74,-57 + 2384: -73,8 + 2385: -74,8 + 2386: -75,8 + 2387: -76,8 + 2388: -73,-4 + 2389: -74,-4 + 2390: -75,-4 + 2391: -76,-4 + 2511: 33,-33 + 2526: 11,-45 + 2527: 10,-45 + 2528: 9,-45 + 2529: 9,-44 + 2530: 10,-44 + 2531: 11,-44 + 2532: 11,-43 + 2533: 9,-43 + 2534: 10,-43 + 2537: 14,-45 + 2538: 14,-44 + 2539: 14,-43 + 2713: 1,-64 + 2714: 1,-63 + 2715: 1,-62 + 2716: 1,-61 + 2717: 1,-60 + 2869: 6,-41 + 2870: 7,-41 + 2898: 5,-73 + 2899: 6,-73 + 2900: 7,-73 + 3145: -1,-63 + 3146: -1,-64 + 3243: 1,-67 + 3244: 1,-66 + 3313: 65,-52 + 3314: 65,-51 + 3315: 72,-55 + 3316: 74,-55 + 3317: 79,-55 + 3318: 80,-55 + 3326: 74,-44 + 3327: 73,-44 + 3381: 34,-47 + 3382: 34,-46 + 3383: 34,-50 + 3384: 34,-49 + 3385: 37,-50 + 3386: 37,-49 + 3387: 18,-84 + 3388: 14,-85 + 3389: 14,-86 + 3390: 14,-87 + 3438: 34,-44 + 3439: 35,-44 + 3440: 34,-39 + 3522: -35,-19 + 3523: -36,-19 + 3524: -37,-19 + 3525: -38,-19 + 3526: -37,-27 + 3527: -38,-27 + 3528: -39,-27 + 3529: -37,-25 + 3530: -38,-25 + 3531: -39,-25 + 3532: -37,-23 + 3533: -38,-23 + 3534: -39,-23 + 3544: -26,-32 + 3545: -27,-32 + 3546: -27,-34 + 3547: -27,-33 + 3548: -26,-33 + 3549: -26,-34 + 3550: -26,-35 + 3551: -27,-35 - node: color: '#529CFF93' id: BotGreyscale decals: - 2941: 16,-79 - 2942: 17,-79 + 2876: 16,-79 + 2877: 17,-79 - node: color: '#FFFFFFFF' id: BotGreyscale @@ -611,885 +611,885 @@ entities: 408: -26,-69 409: -26,-68 410: -26,-67 - 1090: -1,-22 - 1091: -2,-21 - 1092: -1,-20 - 1093: 0,-21 - 1110: -2,-14 - 1111: 0,-14 + 1086: -1,-22 + 1087: -2,-21 + 1088: -1,-20 + 1089: 0,-21 + 1105: -2,-14 + 1106: 0,-14 - node: color: '#FFFFFFFF' id: BotLeft decals: - 1816: 55,-32 - 3468: 18,-71 - 3469: 17,-71 - 3470: 16,-71 - 3471: 15,-71 - 3606: -40,-28 - 3607: -39,-28 - 3608: -38,-28 + 1758: 55,-32 + 3403: 18,-71 + 3404: 17,-71 + 3405: 16,-71 + 3406: 15,-71 + 3541: -40,-28 + 3542: -39,-28 + 3543: -38,-28 - node: color: '#FFFFFFFF' id: BotLeftGreyscale decals: 406: -24,-67 - 1088: 0,-20 - 1089: -2,-22 + 1084: 0,-20 + 1085: -2,-22 - node: color: '#DE3A3A96' id: BotRight decals: - 1533: -9,41 - 1534: -9,40 - 1535: -9,39 + 1475: -9,41 + 1476: -9,40 + 1477: -9,39 - node: color: '#FFFFFFFF' id: BotRight decals: - 2600: 10,-42 - 2601: 10,-41 + 2535: 10,-42 + 2536: 10,-41 - node: color: '#FFFFFFFF' id: BotRightGreyscale decals: 407: -24,-69 - 1086: 0,-22 - 1087: -2,-20 + 1082: 0,-22 + 1083: -2,-20 - node: color: '#FFFFFFFF' id: BoxGreyscale decals: - 2605: 14,-42 - 2606: 14,-41 - 3472: 15,-81 + 2540: 14,-42 + 2541: 14,-41 + 3407: 15,-81 - node: color: '#FFFFFFFF' id: BrickTileDarkBox decals: - 2193: -3,-17 - 2194: -1,-17 - 2195: 1,-17 + 2134: -3,-17 + 2135: -1,-17 + 2136: 1,-17 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 3332: 11,-35 + 3267: 11,-35 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 3333: 11,-34 + 3268: 11,-34 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 3297: -6,-66 - 3298: -7,-66 - 3299: -8,-66 - 3325: 13,-36 - 3326: 11,-36 - 3329: 12,-36 - 3330: 10,-36 - 3331: 9,-36 + 3232: -6,-66 + 3233: -7,-66 + 3234: -8,-66 + 3260: 13,-36 + 3261: 11,-36 + 3264: 12,-36 + 3265: 10,-36 + 3266: 9,-36 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 3300: -8,-62 - 3301: -7,-62 - 3302: -6,-62 - 3303: -4,-62 - 3304: -3,-62 - 3305: -2,-62 - 3306: -1,-62 - 3323: 10,-35 - 3324: 9,-35 + 3235: -8,-62 + 3236: -7,-62 + 3237: -6,-62 + 3238: -4,-62 + 3239: -3,-62 + 3240: -2,-62 + 3241: -1,-62 + 3258: 10,-35 + 3259: 9,-35 - node: color: '#9FED584D' id: BrickTileSteelCornerNe decals: - 3420: 35,-46 + 3355: 35,-46 - node: color: '#D381C996' id: BrickTileSteelCornerNe decals: - 1595: 74,-51 + 1537: 74,-51 - node: color: '#EFB34196' id: BrickTileSteelCornerNe decals: - 3426: 35,-49 + 3361: 35,-49 - node: color: '#9FED584D' id: BrickTileSteelCornerNw decals: - 3421: 34,-46 + 3356: 34,-46 - node: color: '#D381C996' id: BrickTileSteelCornerNw decals: - 1592: 71,-51 - 1601: 78,-51 + 1534: 71,-51 + 1543: 78,-51 - node: color: '#EFB34196' id: BrickTileSteelCornerNw decals: - 3427: 34,-49 + 3362: 34,-49 - node: color: '#52B4E996' id: BrickTileSteelCornerSe decals: - 3337: 19,-34 + 3272: 19,-34 - node: color: '#9FED584D' id: BrickTileSteelCornerSe decals: - 3422: 35,-47 + 3357: 35,-47 - node: color: '#EFB34196' id: BrickTileSteelCornerSe decals: - 3425: 35,-50 + 3360: 35,-50 - node: color: '#52B4E996' id: BrickTileSteelCornerSw decals: - 3336: 21,-34 + 3271: 21,-34 - node: color: '#9FED584D' id: BrickTileSteelCornerSw decals: - 3423: 34,-47 + 3358: 34,-47 - node: color: '#EFB34196' id: BrickTileSteelCornerSw decals: - 3424: 34,-50 + 3359: 34,-50 - node: color: '#D381C996' id: BrickTileSteelInnerNe decals: - 1604: 74,-53 + 1546: 74,-53 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe decals: - 2552: 28,-36 + 2487: 28,-36 - node: color: '#D381C996' id: BrickTileSteelInnerNw decals: - 1605: 78,-53 + 1547: 78,-53 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 2551: 34,-36 + 2486: 34,-36 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: - 2587: 46,-53 + 2522: 46,-53 - node: color: '#52B4E996' id: BrickTileSteelLineE decals: - 3339: 19,-33 - 3428: 37,-50 - 3429: 37,-49 - 3430: 37,-47 - 3431: 37,-46 + 3274: 19,-33 + 3363: 37,-50 + 3364: 37,-49 + 3365: 37,-47 + 3366: 37,-46 - node: color: '#D381C996' id: BrickTileSteelLineE decals: - 1596: 74,-52 + 1538: 74,-52 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 2543: 28,-33 - 2544: 28,-34 - 2545: 28,-35 + 2478: 28,-33 + 2479: 28,-34 + 2480: 28,-35 - node: color: '#D381C996' id: BrickTileSteelLineN decals: - 1593: 72,-51 - 1594: 73,-51 - 1597: 75,-53 - 1598: 76,-53 - 1599: 77,-53 - 1602: 79,-51 - 1603: 80,-51 + 1535: 72,-51 + 1536: 73,-51 + 1539: 75,-53 + 1540: 76,-53 + 1541: 77,-53 + 1544: 79,-51 + 1545: 80,-51 - node: color: '#DE3A3A96' id: BrickTileSteelLineN decals: - 1493: -16,45 - 1494: -15,45 - 1495: -13,45 - 1496: -12,45 - 1497: -11,45 - 1498: -10,45 - 1499: -9,45 - 1500: -7,45 - 1501: -6,45 - 1502: -5,45 - 1503: -17,45 - 1504: -19,45 - 1505: -20,45 - 1506: -22,45 - 1507: -23,45 - 1508: -25,45 + 1435: -16,45 + 1436: -15,45 + 1437: -13,45 + 1438: -12,45 + 1439: -11,45 + 1440: -10,45 + 1441: -9,45 + 1442: -7,45 + 1443: -6,45 + 1444: -5,45 + 1445: -17,45 + 1446: -19,45 + 1447: -20,45 + 1448: -22,45 + 1449: -23,45 + 1450: -25,45 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 2546: 33,-36 - 2547: 32,-36 - 2548: 31,-36 - 2549: 30,-36 - 2550: 29,-36 + 2481: 33,-36 + 2482: 32,-36 + 2483: 31,-36 + 2484: 30,-36 + 2485: 29,-36 - node: color: '#52B4E996' id: BrickTileSteelLineS decals: - 3334: 22,-34 - 3335: 18,-34 + 3269: 22,-34 + 3270: 18,-34 - node: color: '#D381C996' id: BrickTileSteelLineS decals: - 1606: 72,-55 - 1607: 73,-55 - 1608: 74,-55 - 1609: 75,-55 - 1610: 76,-55 - 1611: 77,-55 - 1612: 78,-55 - 1613: 79,-55 - 1614: 80,-55 + 1548: 72,-55 + 1549: 73,-55 + 1550: 74,-55 + 1551: 75,-55 + 1552: 76,-55 + 1553: 77,-55 + 1554: 78,-55 + 1555: 79,-55 + 1556: 80,-55 - node: color: '#DE3A3A96' id: BrickTileSteelLineS decals: - 1484: -10,43 - 1485: -9,43 - 1486: -8,43 - 1487: -7,43 - 1488: -5,43 - 1489: -12,43 - 1490: -13,43 - 1491: -14,43 - 1492: -16,43 - 1509: -25,43 - 1510: -23,43 - 1511: -21,43 - 1512: -20,43 - 1513: -18,43 - 1514: -17,43 + 1426: -10,43 + 1427: -9,43 + 1428: -8,43 + 1429: -7,43 + 1430: -5,43 + 1431: -12,43 + 1432: -13,43 + 1433: -14,43 + 1434: -16,43 + 1451: -25,43 + 1452: -23,43 + 1453: -21,43 + 1454: -20,43 + 1455: -18,43 + 1456: -17,43 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 2584: 45,-53 - 2585: 44,-53 - 2586: 43,-53 + 2519: 45,-53 + 2520: 44,-53 + 2521: 43,-53 - node: color: '#52B4E996' id: BrickTileSteelLineW decals: - 3338: 21,-33 + 3273: 21,-33 - node: color: '#D381C996' id: BrickTileSteelLineW decals: - 1590: 71,-53 - 1591: 71,-52 - 1600: 78,-52 + 1532: 71,-53 + 1533: 71,-52 + 1542: 78,-52 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 2575: 34,-35 - 2583: 46,-54 - 3751: 45,-1 - 3752: 45,0 + 2510: 34,-35 + 2518: 46,-54 + 3685: 45,-1 + 3686: 45,0 - node: color: '#D4D4D428' id: BrickTileWhiteBox decals: - 2421: -16,-56 - 2422: -16,-52 + 2356: -16,-56 + 2357: -16,-52 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: - 1417: -7,-12 - 2258: -10,-14 - 2417: -6,-51 + 1363: -7,-12 + 2199: -10,-14 + 2352: -6,-51 - node: color: '#5299B43A' id: BrickTileWhiteCornerNe decals: - 3410: 37,-40 + 3345: 37,-40 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe decals: - 1813: 54,-24 - 2391: -15,-50 + 1755: 54,-24 + 2326: -15,-50 - node: color: '#9FED5896' id: BrickTileWhiteCornerNe decals: - 1397: 48,-4 + 1343: 48,-4 - node: color: '#D381C996' id: BrickTileWhiteCornerNe decals: - 1584: 70,-51 + 1526: 70,-51 - node: color: '#D4D4D496' id: BrickTileWhiteCornerNe decals: - 2405: -12,-57 + 2340: -12,-57 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNe decals: - 2401: -15,-57 + 2336: -15,-57 - node: color: '#EFB34196' id: BrickTileWhiteCornerNe decals: - 1626: -4,9 - 2397: -12,-50 - 2914: 7,-41 - 2987: -10,-73 - 3212: 9,-66 + 1568: -4,9 + 2332: -12,-50 + 2849: 7,-41 + 2922: -10,-73 + 3147: 9,-66 - node: color: '#FFEBAE96' id: BrickTileWhiteCornerNe decals: - 1748: 19,-21 + 1690: 19,-21 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: - 1411: -14,-12 - 2257: -11,-14 - 2416: -8,-51 + 1357: -14,-12 + 2198: -11,-14 + 2351: -8,-51 - node: color: '#5299B43A' id: BrickTileWhiteCornerNw decals: - 3411: 34,-40 + 3346: 34,-40 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw decals: - 1812: 52,-24 - 2390: -16,-50 + 1754: 52,-24 + 2325: -16,-50 - node: color: '#9FED5896' id: BrickTileWhiteCornerNw decals: - 1392: 43,-4 + 1338: 43,-4 - node: color: '#D4D4D496' id: BrickTileWhiteCornerNw decals: - 2404: -13,-57 + 2339: -13,-57 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNw decals: - 2400: -16,-57 + 2335: -16,-57 - node: color: '#EFB34196' id: BrickTileWhiteCornerNw decals: - 1625: -7,9 - 2396: -13,-50 - 2913: 3,-41 - 2988: -18,-73 - 3218: 1,-66 - 3223: -4,-67 - 3224: -8,-68 + 1567: -7,9 + 2331: -13,-50 + 2848: 3,-41 + 2923: -18,-73 + 3153: 1,-66 + 3158: -4,-67 + 3159: -8,-68 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe decals: - 1424: -7,-20 - 2259: -10,-16 - 2399: -15,-58 + 1370: -7,-20 + 2200: -10,-16 + 2334: -15,-58 - node: color: '#5299B43A' id: BrickTileWhiteCornerSe decals: - 3413: 37,-43 + 3348: 37,-43 - node: color: '#9FED5896' id: BrickTileWhiteCornerSe decals: - 2402: -12,-58 + 2337: -12,-58 - node: color: '#A4610696' id: BrickTileWhiteCornerSe decals: - 2395: -12,-51 + 2330: -12,-51 - node: color: '#D381C996' id: BrickTileWhiteCornerSe decals: - 2392: -15,-51 + 2327: -15,-51 - node: color: '#EFB34196' id: BrickTileWhiteCornerSe decals: - 2412: -6,-58 - 2921: 7,-45 - 2969: -5,-76 - 3002: -10,-77 + 2347: -6,-58 + 2856: 7,-45 + 2904: -5,-76 + 2937: -10,-77 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSw decals: - 1425: -9,-20 - 2260: -11,-16 - 2398: -16,-58 + 1371: -9,-20 + 2201: -11,-16 + 2333: -16,-58 - node: color: '#5299B43A' id: BrickTileWhiteCornerSw decals: - 3412: 34,-43 + 3347: 34,-43 - node: color: '#9FED5896' id: BrickTileWhiteCornerSw decals: - 2403: -13,-58 + 2338: -13,-58 - node: color: '#A4610696' id: BrickTileWhiteCornerSw decals: - 2394: -13,-51 + 2329: -13,-51 - node: color: '#D381C996' id: BrickTileWhiteCornerSw decals: - 2393: -16,-51 + 2328: -16,-51 - node: color: '#EFB34196' id: BrickTileWhiteCornerSw decals: - 1628: -7,6 - 2410: -8,-58 - 2910: 3,-45 - 2968: -8,-76 - 3001: -18,-77 + 1570: -7,6 + 2345: -8,-58 + 2845: 3,-45 + 2903: -8,-76 + 2936: -18,-77 - node: color: '#EFB34196' id: BrickTileWhiteInnerNe decals: - 1633: -4,6 + 1575: -4,6 - node: color: '#FFEBAE96' id: BrickTileWhiteInnerNe decals: - 1747: 19,-22 + 1689: 19,-22 - node: color: '#EFB34196' id: BrickTileWhiteInnerNw decals: - 3247: -4,-68 + 3182: -4,-68 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe decals: - 1649: -10,8 + 1591: -10,8 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSw decals: - 1427: -9,-18 - 1648: -14,8 + 1373: -9,-18 + 1590: -14,8 - node: color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 1418: -7,-13 - 1419: -7,-14 - 1420: -7,-15 - 1421: -7,-16 - 1422: -7,-18 - 1423: -7,-19 - 1650: -10,7 - 1651: -10,6 - 1656: -11,2 - 1657: -11,3 - 2261: -10,-15 - 2419: -6,-52 + 1364: -7,-13 + 1365: -7,-14 + 1366: -7,-15 + 1367: -7,-16 + 1368: -7,-18 + 1369: -7,-19 + 1592: -10,7 + 1593: -10,6 + 1598: -11,2 + 1599: -11,3 + 2202: -10,-15 + 2354: -6,-52 - node: color: '#5299B43A' id: BrickTileWhiteLineE decals: - 3416: 37,-42 - 3417: 37,-41 + 3351: 37,-42 + 3352: 37,-41 - node: color: '#52B4E996' id: BrickTileWhiteLineE decals: - 1811: 54,-25 + 1753: 54,-25 - node: color: '#9FED5896' id: BrickTileWhiteLineE decals: - 1398: 48,-5 - 1399: 48,-6 - 1400: 48,-7 - 1401: 48,-8 - 1402: 48,-9 + 1344: 48,-5 + 1345: 48,-6 + 1346: 48,-7 + 1347: 48,-8 + 1348: 48,-9 - node: color: '#A4610696' id: BrickTileWhiteLineE decals: - 1660: -11,1 - 2466: -27,-17 - 2469: -27,-18 - 2470: -27,-16 + 1602: -11,1 + 2401: -27,-17 + 2404: -27,-18 + 2405: -27,-16 - node: color: '#D381C996' id: BrickTileWhiteLineE decals: - 1581: 70,-54 - 1582: 70,-53 - 1583: 70,-52 + 1523: 70,-54 + 1524: 70,-53 + 1525: 70,-52 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 1661: -11,4 + 1603: -11,4 - node: color: '#EFB34196' id: BrickTileWhiteLineE decals: - 1631: -4,8 - 1632: -4,7 - 2413: -6,-56 - 2414: -6,-55 - 2415: -6,-54 - 2918: 7,-42 - 2919: 7,-43 - 2920: 7,-44 - 2970: -5,-73 - 2974: -5,-72 - 2996: -10,-74 - 2997: -10,-76 - 3235: 9,-70 - 3236: 9,-69 - 3237: 9,-68 - 3238: 9,-67 + 1573: -4,8 + 1574: -4,7 + 2348: -6,-56 + 2349: -6,-55 + 2350: -6,-54 + 2853: 7,-42 + 2854: 7,-43 + 2855: 7,-44 + 2905: -5,-73 + 2909: -5,-72 + 2931: -10,-74 + 2932: -10,-76 + 3170: 9,-70 + 3171: 9,-69 + 3172: 9,-68 + 3173: 9,-67 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 1412: -13,-12 - 1413: -12,-12 - 1414: -11,-12 - 1415: -10,-12 - 1416: -9,-12 - 1639: -9,8 - 1640: -10,8 - 1641: -11,8 - 1642: -12,8 - 1643: -14,8 - 1644: -13,8 - 1645: -15,8 - 2418: -7,-51 + 1358: -13,-12 + 1359: -12,-12 + 1360: -11,-12 + 1361: -10,-12 + 1362: -9,-12 + 1581: -9,8 + 1582: -10,8 + 1583: -11,8 + 1584: -12,8 + 1585: -14,8 + 1586: -13,8 + 1587: -15,8 + 2353: -7,-51 - node: color: '#5299B43A' id: BrickTileWhiteLineN decals: - 3408: 36,-40 - 3409: 35,-40 + 3343: 36,-40 + 3344: 35,-40 - node: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 1809: 53,-27 - 1814: 53,-24 + 1751: 53,-27 + 1756: 53,-24 - node: color: '#9FED5896' id: BrickTileWhiteLineN decals: - 1393: 44,-4 - 1394: 45,-4 - 1395: 46,-4 - 1396: 47,-4 - 1403: 46,-10 - 1404: 45,-10 + 1339: 44,-4 + 1340: 45,-4 + 1341: 46,-4 + 1342: 47,-4 + 1349: 46,-10 + 1350: 45,-10 - node: color: '#D381C996' id: BrickTileWhiteLineN decals: - 1238: 64,-27 - 1239: 60,-27 - 1240: 59,-27 - 1241: 58,-27 - 1242: 57,-27 - 1243: 56,-27 - 1244: 55,-27 - 1245: 54,-27 - 1252: 74,-26 - 1253: 73,-26 - 1254: 72,-26 - 1255: 71,-26 - 1256: 70,-26 - 1257: 69,-26 - 1258: 70,-44 - 1259: 71,-44 - 1260: 72,-44 - 1261: 73,-44 - 1262: 74,-44 - 1263: 75,-44 - 1585: 69,-51 - 1586: 68,-51 - 1587: 67,-51 - 1588: 65,-51 + 1233: 64,-27 + 1234: 60,-27 + 1235: 59,-27 + 1236: 58,-27 + 1237: 57,-27 + 1238: 56,-27 + 1239: 55,-27 + 1240: 54,-27 + 1247: 74,-26 + 1248: 73,-26 + 1249: 72,-26 + 1250: 71,-26 + 1251: 70,-26 + 1252: 69,-26 + 1253: 70,-44 + 1254: 71,-44 + 1255: 72,-44 + 1256: 73,-44 + 1257: 74,-44 + 1258: 75,-44 + 1527: 69,-51 + 1528: 68,-51 + 1529: 67,-51 + 1530: 65,-51 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 1461: -10,36 - 1462: -9,36 - 1463: -12,36 - 1464: -13,36 - 1465: -14,36 - 1466: -15,36 - 1467: -16,36 - 1468: -8,36 - 1469: -7,36 - 1470: -5,36 + 1403: -10,36 + 1404: -9,36 + 1405: -12,36 + 1406: -13,36 + 1407: -14,36 + 1408: -15,36 + 1409: -16,36 + 1410: -8,36 + 1411: -7,36 + 1412: -5,36 - node: color: '#EFB34196' id: BrickTileWhiteLineN decals: - 1629: -6,9 - 1630: -5,9 - 2915: 6,-41 - 2916: 5,-41 - 2917: 4,-41 - 2957: 7,-73 - 2958: 6,-73 - 2959: 5,-73 - 2983: -20,-69 - 2984: -21,-69 - 2989: -17,-73 - 2990: -16,-73 - 2991: -15,-73 - 2992: -14,-73 - 2993: -13,-73 - 2994: -12,-73 - 2995: -11,-73 - 3213: 7,-66 - 3214: 6,-66 - 3215: 5,-66 - 3216: 4,-66 - 3217: 2,-66 - 3219: 0,-67 - 3220: -1,-67 - 3221: -2,-67 - 3222: -3,-67 - 3245: -6,-68 - 3246: -5,-68 + 1571: -6,9 + 1572: -5,9 + 2850: 6,-41 + 2851: 5,-41 + 2852: 4,-41 + 2892: 7,-73 + 2893: 6,-73 + 2894: 5,-73 + 2918: -20,-69 + 2919: -21,-69 + 2924: -17,-73 + 2925: -16,-73 + 2926: -15,-73 + 2927: -14,-73 + 2928: -13,-73 + 2929: -12,-73 + 2930: -11,-73 + 3148: 7,-66 + 3149: 6,-66 + 3150: 5,-66 + 3151: 4,-66 + 3152: 2,-66 + 3154: 0,-67 + 3155: -1,-67 + 3156: -2,-67 + 3157: -3,-67 + 3180: -6,-68 + 3181: -5,-68 - node: color: '#FFEBAE96' id: BrickTileWhiteLineN decals: - 1744: 22,-22 - 1745: 21,-22 - 1746: 20,-22 - 1749: 18,-21 + 1686: 22,-22 + 1687: 21,-22 + 1688: 20,-22 + 1691: 18,-21 - node: color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 1428: -10,-18 - 1429: -11,-18 - 1430: -12,-18 - 1431: -13,-18 - 1646: -9,8 - 1647: -15,8 + 1374: -10,-18 + 1375: -11,-18 + 1376: -12,-18 + 1377: -13,-18 + 1588: -9,8 + 1589: -15,8 - node: color: '#5299B43A' id: BrickTileWhiteLineS decals: - 3414: 36,-43 - 3415: 35,-43 + 3349: 36,-43 + 3350: 35,-43 - node: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 2210: -11,26 - 2211: -10,26 - 2212: -9,26 + 2151: -11,26 + 2152: -10,26 + 2153: -9,26 - node: color: '#9FED5896' id: BrickTileWhiteLineS decals: - 2213: -7,26 - 2214: -6,26 - 2215: -5,26 + 2154: -7,26 + 2155: -6,26 + 2156: -5,26 - node: color: '#D381C996' id: BrickTileWhiteLineS decals: - 1228: 64,-28 - 1229: 63,-28 - 1230: 62,-28 - 1231: 60,-28 - 1232: 59,-28 - 1233: 58,-28 - 1234: 56,-28 - 1235: 57,-28 - 1236: 54,-28 - 1237: 53,-28 - 1247: 57,-25 - 1248: 58,-25 - 1249: 59,-25 - 1250: 60,-25 - 1251: 56,-25 + 1223: 64,-28 + 1224: 63,-28 + 1225: 62,-28 + 1226: 60,-28 + 1227: 59,-28 + 1228: 58,-28 + 1229: 56,-28 + 1230: 57,-28 + 1231: 54,-28 + 1232: 53,-28 + 1242: 57,-25 + 1243: 58,-25 + 1244: 59,-25 + 1245: 60,-25 + 1246: 56,-25 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 1475: -8,34 - 1476: -9,34 - 1477: -10,34 - 1478: -11,34 - 1479: -12,34 - 1480: -13,34 - 1481: -14,34 - 1482: -16,34 - 2219: -4,26 - 2220: 0,26 - 2221: -8,26 - 2222: -12,26 - 2223: -13,26 - 2224: 1,26 - 2225: 2,26 - 2226: 3,26 - 2227: 5,26 - 2228: 10,26 - 2229: 8,26 - 2230: 7,26 + 1417: -8,34 + 1418: -9,34 + 1419: -10,34 + 1420: -11,34 + 1421: -12,34 + 1422: -13,34 + 1423: -14,34 + 1424: -16,34 + 2160: -4,26 + 2161: 0,26 + 2162: -8,26 + 2163: -12,26 + 2164: -13,26 + 2165: 1,26 + 2166: 2,26 + 2167: 3,26 + 2168: 5,26 + 2169: 10,26 + 2170: 8,26 + 2171: 7,26 - node: color: '#EFB34196' id: BrickTileWhiteLineS decals: - 1627: -5,6 - 2216: -3,26 - 2217: -2,26 - 2218: -1,26 - 2411: -7,-58 - 2922: 6,-45 - 2923: 5,-45 - 2924: 4,-45 - 2960: 8,-76 - 2961: 6,-76 - 2962: 7,-76 - 2975: -6,-76 - 2976: -7,-76 - 2985: -20,-71 - 2986: -21,-71 - 3003: -11,-77 - 3004: -12,-77 - 3005: -13,-77 - 3006: -14,-77 - 3007: -15,-77 - 3008: -16,-77 - 3009: -17,-77 - 3225: -4,-71 - 3226: -3,-71 - 3227: -2,-71 - 3228: -1,-71 - 3229: 0,-71 - 3230: 1,-71 - 3231: 2,-71 - 3232: 5,-71 - 3233: 6,-71 - 3234: 7,-71 + 1569: -5,6 + 2157: -3,26 + 2158: -2,26 + 2159: -1,26 + 2346: -7,-58 + 2857: 6,-45 + 2858: 5,-45 + 2859: 4,-45 + 2895: 8,-76 + 2896: 6,-76 + 2897: 7,-76 + 2910: -6,-76 + 2911: -7,-76 + 2920: -20,-71 + 2921: -21,-71 + 2938: -11,-77 + 2939: -12,-77 + 2940: -13,-77 + 2941: -14,-77 + 2942: -15,-77 + 2943: -16,-77 + 2944: -17,-77 + 3160: -4,-71 + 3161: -3,-71 + 3162: -2,-71 + 3163: -1,-71 + 3164: 0,-71 + 3165: 1,-71 + 3166: 2,-71 + 3167: 5,-71 + 3168: 6,-71 + 3169: 7,-71 - node: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 1405: -14,-18 - 1406: -14,-17 - 1407: -14,-16 - 1408: -14,-15 - 1409: -14,-14 - 1410: -14,-13 - 1426: -9,-19 - 1652: -14,6 - 1653: -14,7 - 1654: -13,2 - 1655: -13,3 - 1957: -19,-13 - 1958: -19,-12 - 1959: -19,-11 - 1960: -19,-10 - 2420: -8,-52 - 2472: -19,-14 + 1351: -14,-18 + 1352: -14,-17 + 1353: -14,-16 + 1354: -14,-15 + 1355: -14,-14 + 1356: -14,-13 + 1372: -9,-19 + 1594: -14,6 + 1595: -14,7 + 1596: -13,2 + 1597: -13,3 + 1898: -19,-13 + 1899: -19,-12 + 1900: -19,-11 + 1901: -19,-10 + 2355: -8,-52 + 2407: -19,-14 - node: color: '#5299B43A' id: BrickTileWhiteLineW decals: - 3418: 34,-42 - 3419: 34,-41 + 3353: 34,-42 + 3354: 34,-41 - node: color: '#52B4E996' id: BrickTileWhiteLineW decals: - 1658: -13,4 - 1815: 52,-25 + 1600: -13,4 + 1757: 52,-25 - node: color: '#9FED5896' id: BrickTileWhiteLineW decals: - 1387: 43,-9 - 1388: 43,-8 - 1389: 43,-7 - 1390: 43,-6 - 1391: 43,-5 + 1333: 43,-9 + 1334: 43,-8 + 1335: 43,-7 + 1336: 43,-6 + 1337: 43,-5 - node: color: '#D381C996' id: BrickTileWhiteLineW decals: - 1659: -13,1 + 1601: -13,1 - node: color: '#EFB34196' id: BrickTileWhiteLineW decals: - 1624: -7,7 - 2407: -8,-55 - 2408: -8,-56 - 2409: -8,-57 - 2911: 3,-44 - 2912: 3,-42 - 2971: -8,-74 - 2972: -8,-73 - 2973: -8,-72 - 2998: -18,-74 - 2999: -18,-75 - 3000: -18,-76 + 1566: -7,7 + 2342: -8,-55 + 2343: -8,-56 + 2344: -8,-57 + 2846: 3,-44 + 2847: 3,-42 + 2906: -8,-74 + 2907: -8,-73 + 2908: -8,-72 + 2933: -18,-74 + 2934: -18,-75 + 2935: -18,-76 - node: color: '#FFFFFFFF' id: Busha3 decals: - 2200: 23.265696,-6.086069 + 2141: 23.265696,-6.086069 - node: color: '#FFFFFFFF' id: Bushb1 @@ -1499,18 +1499,18 @@ entities: color: '#FFFFFFFF' id: Bushc1 decals: - 2199: 23.78132,-6.836069 + 2140: 23.78132,-6.836069 - node: color: '#FFFFFFFF' id: Bushe3 decals: - 1451: 6.4905357,-24.138845 + 1393: 6.4905357,-24.138845 - node: color: '#FFFFFFFF' id: Bushe4 decals: 526: -15.010791,-24.240007 - 1452: 8.037411,-24.076345 + 1394: 8.037411,-24.076345 - node: color: '#FFFFFFFF' id: Bushg2 @@ -1525,28 +1525,28 @@ entities: color: '#FFFFFFFF' id: Bushi1 decals: - 1196: 44.560696,-52.296127 + 1191: 44.560696,-52.296127 - node: color: '#FFFFFFFF' id: Bushi3 decals: - 1197: 47.01382,-53.968002 + 1192: 47.01382,-53.968002 - node: color: '#FFFFFFFF' id: Bushj3 decals: - 1195: 45.623196,-52.499252 - 1453: 6.9749107,-24.013845 + 1190: 45.623196,-52.499252 + 1395: 6.9749107,-24.013845 - node: color: '#FFFFFFFF' id: Bushl4 decals: - 1449: 7.9749107,-24.107595 + 1391: 7.9749107,-24.107595 - node: color: '#FFFFFFFF' id: Bushm1 decals: - 1450: 6.1780357,-24.02947 + 1392: 6.1780357,-24.02947 - node: color: '#FFFFFFFF' id: Bushn1 @@ -1556,56 +1556,56 @@ entities: color: '#FFFFFFFF' id: Caution decals: - 1808: 66,-22 - 2581: 31,-34 - 2967: 9,-74 + 1750: 66,-22 + 2516: 31,-34 + 2902: 9,-74 - node: color: '#3B393B85' id: CheckerNESW decals: - 2887: 5,-50 - 2888: 6,-50 - 2889: 7,-50 - 2890: 5,-47 - 2891: 6,-47 - 2892: 7,-47 + 2822: 5,-50 + 2823: 6,-50 + 2824: 7,-50 + 2825: 5,-47 + 2826: 6,-47 + 2827: 7,-47 - node: color: '#52B4E996' id: CheckerNESW decals: 193: 43,-58 194: 47,-58 - 1301: 1,-48 - 1698: 43,-48 - 1699: 44,-48 - 1700: 45,-48 - 1701: 46,-48 - 1702: 46,-47 - 1703: 45,-47 - 1704: 44,-47 - 1705: 43,-47 - 1706: 43,-46 - 1707: 44,-46 - 1708: 45,-46 - 1709: 46,-46 - 1710: 46,-45 - 1711: 45,-45 - 1712: 44,-45 - 1713: 43,-45 - 1714: 42,-46 - 3495: 34,-44 - 3496: 35,-44 - 3497: 36,-44 - 3498: 37,-44 - 3499: 37,-39 - 3500: 36,-39 - 3501: 35,-39 - 3502: 34,-39 + 1296: 1,-48 + 1640: 43,-48 + 1641: 44,-48 + 1642: 45,-48 + 1643: 46,-48 + 1644: 46,-47 + 1645: 45,-47 + 1646: 44,-47 + 1647: 43,-47 + 1648: 43,-46 + 1649: 44,-46 + 1650: 45,-46 + 1651: 46,-46 + 1652: 46,-45 + 1653: 45,-45 + 1654: 44,-45 + 1655: 43,-45 + 1656: 42,-46 + 3430: 34,-44 + 3431: 35,-44 + 3432: 36,-44 + 3433: 37,-44 + 3434: 37,-39 + 3435: 36,-39 + 3436: 35,-39 + 3437: 34,-39 - node: color: '#92929B96' id: CheckerNESW decals: - 1365: 37,-7 + 1332: 37,-7 - node: color: '#9D9D97FF' id: CheckerNESW @@ -1635,33 +1635,33 @@ entities: color: '#9FED5896' id: CheckerNESW decals: - 3739: 45,-1 - 3740: 45,0 - 3741: 46,-1 - 3742: 46,0 - 3743: 47,-1 - 3744: 47,0 - 3745: 48,-1 - 3746: 48,0 - 3747: 48,1 - 3748: 49,1 - 3749: 49,0 - 3750: 49,-1 + 3673: 45,-1 + 3674: 45,0 + 3675: 46,-1 + 3676: 46,0 + 3677: 47,-1 + 3678: 47,0 + 3679: 48,-1 + 3680: 48,0 + 3681: 48,1 + 3682: 49,1 + 3683: 49,0 + 3684: 49,-1 - node: color: '#D381C996' id: CheckerNESW decals: 285: 68,-37 - 1673: 49,-28 - 1820: 61,-32 - 1821: 61,-31 - 1822: 61,-30 - 1823: 62,-30 - 1824: 63,-30 - 1825: 63,-31 - 1826: 62,-31 - 1827: 62,-32 - 1828: 63,-32 + 1615: 49,-28 + 1762: 61,-32 + 1763: 61,-31 + 1764: 61,-30 + 1765: 62,-30 + 1766: 63,-30 + 1767: 63,-31 + 1768: 62,-31 + 1769: 62,-32 + 1770: 63,-32 - node: color: '#D4D4D428' id: CheckerNESW @@ -1671,81 +1671,81 @@ entities: color: '#DE3A3A96' id: CheckerNESW decals: - 1299: 1,-50 - 1300: 1,-49 + 1294: 1,-50 + 1295: 1,-49 - node: color: '#EFB34196' id: CheckerNESW decals: 981: 1,-42 - 2899: 3,-50 - 2900: 3,-49 - 2901: 3,-48 - 2902: 3,-47 + 2834: 3,-50 + 2835: 3,-49 + 2836: 3,-48 + 2837: 3,-47 - node: color: '#EFCC4163' id: CheckerNESW decals: - 3186: -1,-65 - 3187: -2,-65 - 3188: -2,-64 - 3189: -1,-64 - 3190: -1,-63 - 3191: -2,-63 - 3192: -4,-63 - 3193: -3,-63 - 3194: -3,-64 - 3195: -4,-64 - 3196: -5,-64 - 3197: -5,-63 - 3198: -3,-65 - 3199: -4,-65 - 3200: -5,-65 - 3201: -6,-65 - 3202: -8,-65 - 3203: -7,-65 - 3204: -6,-64 - 3205: -7,-64 - 3206: -8,-64 - 3207: -8,-63 - 3208: -7,-63 - 3209: -6,-63 + 3121: -1,-65 + 3122: -2,-65 + 3123: -2,-64 + 3124: -1,-64 + 3125: -1,-63 + 3126: -2,-63 + 3127: -4,-63 + 3128: -3,-63 + 3129: -3,-64 + 3130: -4,-64 + 3131: -5,-64 + 3132: -5,-63 + 3133: -3,-65 + 3134: -4,-65 + 3135: -5,-65 + 3136: -6,-65 + 3137: -8,-65 + 3138: -7,-65 + 3139: -6,-64 + 3140: -7,-64 + 3141: -8,-64 + 3142: -8,-63 + 3143: -7,-63 + 3144: -6,-63 - node: color: '#FFEBAE96' id: CheckerNESW decals: - 1715: 21,-21 - 1716: 22,-21 - 1717: 22,-20 - 1718: 21,-20 - 1719: 21,-19 - 1720: 22,-19 - 1721: 22,-18 - 1722: 21,-18 - 1723: 21,-17 - 1724: 22,-17 - 1725: 19,-19 - 1726: 19,-18 - 1727: 18,-18 - 1728: 18,-19 - 1729: 18,-17 - 1730: 19,-17 + 1657: 21,-21 + 1658: 22,-21 + 1659: 22,-20 + 1660: 21,-20 + 1661: 21,-19 + 1662: 22,-19 + 1663: 22,-18 + 1664: 21,-18 + 1665: 21,-17 + 1666: 22,-17 + 1667: 19,-19 + 1668: 19,-18 + 1669: 18,-18 + 1670: 18,-19 + 1671: 18,-17 + 1672: 19,-17 - node: color: '#FFFFFFFF' id: CheckerNESW decals: - 3727: 45,-1 - 3728: 45,0 - 3729: 46,0 - 3730: 46,-1 - 3731: 47,-1 - 3732: 47,0 - 3733: 48,-1 - 3734: 48,0 - 3735: 49,-1 - 3736: 49,0 - 3737: 49,1 - 3738: 48,1 + 3661: 45,-1 + 3662: 45,0 + 3663: 46,0 + 3664: 46,-1 + 3665: 47,-1 + 3666: 47,0 + 3667: 48,-1 + 3668: 48,0 + 3669: 49,-1 + 3670: 49,0 + 3671: 49,1 + 3672: 48,1 - node: color: '#334E6DC8' id: CheckerNWSE @@ -1785,10 +1785,10 @@ entities: color: '#4A464A85' id: CheckerNWSE decals: - 2906: 3,-50 - 2907: 3,-49 - 2908: 3,-48 - 2909: 3,-47 + 2841: 3,-50 + 2842: 3,-49 + 2843: 3,-48 + 2844: 3,-47 - node: color: '#52B4E996' id: CheckerNWSE @@ -1803,37 +1803,37 @@ entities: 831: 31,-22 832: 32,-22 833: 32,-21 - 1773: 49,-38 - 1774: 49,-37 - 1775: 49,-36 - 1776: 49,-35 - 1777: 49,-34 - 3344: 38,-30 - 3345: 38,-29 - 3346: 38,-28 - 3347: 38,-27 - 3348: 39,-27 - 3349: 40,-27 - 3350: 41,-27 - 3351: 41,-28 - 3352: 40,-28 - 3353: 39,-28 - 3354: 39,-29 - 3355: 39,-30 - 3356: 40,-30 - 3357: 40,-29 - 3358: 41,-29 - 3359: 41,-30 - 3436: 40,-49 - 3437: 40,-48 - 3438: 40,-47 - 3439: 40,-46 - 3440: 40,-45 - 3441: 40,-44 - 3442: 40,-43 - 3443: 40,-42 - 3444: 40,-41 - 3445: 40,-40 + 1715: 49,-38 + 1716: 49,-37 + 1717: 49,-36 + 1718: 49,-35 + 1719: 49,-34 + 3279: 38,-30 + 3280: 38,-29 + 3281: 38,-28 + 3282: 38,-27 + 3283: 39,-27 + 3284: 40,-27 + 3285: 41,-27 + 3286: 41,-28 + 3287: 40,-28 + 3288: 39,-28 + 3289: 39,-29 + 3290: 39,-30 + 3291: 40,-30 + 3292: 40,-29 + 3293: 41,-29 + 3294: 41,-30 + 3371: 40,-49 + 3372: 40,-48 + 3373: 40,-47 + 3374: 40,-46 + 3375: 40,-45 + 3376: 40,-44 + 3377: 40,-43 + 3378: 40,-42 + 3379: 40,-41 + 3380: 40,-40 - node: color: '#9FED5896' id: CheckerNWSE @@ -1850,61 +1850,61 @@ entities: 769: 47,-59 770: 47,-60 771: 47,-61 - 3529: 3,-36 - 3530: 3,-35 - 3531: 4,-35 - 3532: 4,-36 - 3533: 5,-36 - 3534: 5,-35 - 3535: 6,-35 - 3536: 6,-36 + 3464: 3,-36 + 3465: 3,-35 + 3466: 4,-35 + 3467: 4,-36 + 3468: 5,-36 + 3469: 5,-35 + 3470: 6,-35 + 3471: 6,-36 - node: color: '#A4610696' id: CheckerNWSE decals: - 3547: -33,-31 - 3548: -33,-30 - 3549: -32,-30 - 3550: -32,-31 + 3482: -33,-31 + 3483: -33,-30 + 3484: -32,-30 + 3485: -32,-31 - node: color: '#D381C996' id: CheckerNWSE decals: - 1212: 82,-25 - 1213: 82,-24 - 1214: 81,-24 - 1215: 81,-25 - 1216: 80,-25 - 1217: 80,-24 - 1218: 79,-24 - 1219: 79,-25 - 1220: 78,-25 - 1221: 78,-24 - 1222: 77,-24 - 1223: 76,-24 - 1224: 76,-25 - 1225: 77,-25 + 1207: 82,-25 + 1208: 82,-24 + 1209: 81,-24 + 1210: 81,-25 + 1211: 80,-25 + 1212: 80,-24 + 1213: 79,-24 + 1214: 79,-25 + 1215: 78,-25 + 1216: 78,-24 + 1217: 77,-24 + 1218: 76,-24 + 1219: 76,-25 + 1220: 77,-25 - node: color: '#D4D4D496' id: CheckerNWSE decals: - 1296: 1,-50 - 1297: 1,-49 - 1298: 1,-48 + 1291: 1,-50 + 1292: 1,-49 + 1293: 1,-48 - node: color: '#EFB34196' id: CheckerNWSE decals: - 1634: -7,3 - 1635: -7,4 - 1636: -6,4 - 1637: -6,3 - 2884: 5,-50 - 2885: 6,-50 - 2886: 7,-50 - 2893: 7,-47 - 2894: 6,-47 - 2895: 5,-47 + 1576: -7,3 + 1577: -7,4 + 1578: -6,4 + 1579: -6,3 + 2819: 5,-50 + 2820: 6,-50 + 2821: 7,-50 + 2828: 7,-47 + 2829: 6,-47 + 2830: 5,-47 - node: color: '#FFFFFFFF' id: Delivery @@ -1937,102 +1937,102 @@ entities: 932: 25,-16 933: 26,-16 934: 27,-16 - 1031: 82,-14 - 1032: 82,-12 - 1033: 82,-6 - 1034: 82,-4 - 1171: -26,-18 - 1172: -26,-16 - 1175: 28,-30 - 1176: 28,-29 - 1177: 34,-30 - 1178: 34,-29 - 1179: 35,-27 - 1180: 36,-27 - 1181: 25,-27 - 1182: 26,-27 - 1183: 23,-26 - 1184: 23,-25 - 1185: 39,-38 - 1186: 40,-38 - 1187: 41,-38 - 2281: 14,-24 - 2282: 15,-24 - 2283: 16,-24 - 2284: 16,-11 - 2285: 15,-11 - 2286: 14,-11 - 2290: -10,-32 - 2291: -10,-31 - 2292: -10,-30 - 2293: -16,-21 - 2294: -17,-21 - 2295: -7,-3 - 2296: -7,-2 - 2297: -7,-1 - 2298: 5,-3 - 2299: 5,-2 - 2300: 5,-1 - 2473: -18,-21 - 2579: 30,-33 - 2580: 32,-33 - 2623: 0,-51 - 2624: -1,-51 - 2625: -2,-51 - 2636: 0,-34 - 2637: -1,-34 - 2638: -2,-34 - 2809: 8,-59 - 2810: 4,-59 - 2811: 3,-65 - 2812: 8,-65 - 2813: 3,-51 - 2814: 2,-57 - 2903: 3,-46 - 2904: 4,-49 - 2905: 4,-48 - 2943: -9,-71 - 2944: -9,-70 - 2945: -9,-69 - 2946: -19,-70 - 2978: -9,-75 - 2979: -8,-72 - 2980: -7,-72 - 2981: -6,-72 - 2982: -5,-72 - 3030: 8,-72 - 3031: 9,-72 - 3032: 4,-72 - 3033: 3,-72 - 3307: -1,-62 - 3390: 67,-54 - 3393: 70,-44 - 3394: 78,-42 - 3395: 78,-40 - 3583: -38,-20 - 3584: -37,-20 - 3585: -36,-20 - 3586: -35,-20 - 3600: -40,-27 - 3601: -40,-25 - 3602: -40,-23 - 3603: -38,-31 - 3604: -39,-31 - 3605: -40,-31 - 3617: -26,-39 - 3618: -27,-39 - 3619: -28,-39 - 3753: 87,-6 - 3754: 87,-4 - 3755: 87,-12 - 3756: 87,-14 - 3757: 83,-14 - 3758: 83,-12 - 3759: 83,-6 - 3760: 83,-4 - 3764: 9,-32 - 3765: 9,-31 - 3766: 9,-30 + 1027: 82,-14 + 1028: 82,-12 + 1029: 82,-6 + 1030: 82,-4 + 1166: -26,-18 + 1167: -26,-16 + 1170: 28,-30 + 1171: 28,-29 + 1172: 34,-30 + 1173: 34,-29 + 1174: 35,-27 + 1175: 36,-27 + 1176: 25,-27 + 1177: 26,-27 + 1178: 23,-26 + 1179: 23,-25 + 1180: 39,-38 + 1181: 40,-38 + 1182: 41,-38 + 2219: 14,-24 + 2220: 15,-24 + 2221: 16,-24 + 2222: 16,-11 + 2223: 15,-11 + 2224: 14,-11 + 2225: -10,-32 + 2226: -10,-31 + 2227: -10,-30 + 2228: -16,-21 + 2229: -17,-21 + 2230: -7,-3 + 2231: -7,-2 + 2232: -7,-1 + 2233: 5,-3 + 2234: 5,-2 + 2235: 5,-1 + 2408: -18,-21 + 2514: 30,-33 + 2515: 32,-33 + 2558: 0,-51 + 2559: -1,-51 + 2560: -2,-51 + 2571: 0,-34 + 2572: -1,-34 + 2573: -2,-34 + 2744: 8,-59 + 2745: 4,-59 + 2746: 3,-65 + 2747: 8,-65 + 2748: 3,-51 + 2749: 2,-57 + 2838: 3,-46 + 2839: 4,-49 + 2840: 4,-48 + 2878: -9,-71 + 2879: -9,-70 + 2880: -9,-69 + 2881: -19,-70 + 2913: -9,-75 + 2914: -8,-72 + 2915: -7,-72 + 2916: -6,-72 + 2917: -5,-72 + 2965: 8,-72 + 2966: 9,-72 + 2967: 4,-72 + 2968: 3,-72 + 3242: -1,-62 + 3325: 67,-54 + 3328: 70,-44 + 3329: 78,-42 + 3330: 78,-40 + 3518: -38,-20 + 3519: -37,-20 + 3520: -36,-20 + 3521: -35,-20 + 3535: -40,-27 + 3536: -40,-25 + 3537: -40,-23 + 3538: -38,-31 + 3539: -39,-31 + 3540: -40,-31 + 3552: -26,-39 + 3553: -27,-39 + 3554: -28,-39 + 3687: 87,-6 + 3688: 87,-4 + 3689: 87,-12 + 3690: 87,-14 + 3691: 83,-14 + 3692: 83,-12 + 3693: 83,-6 + 3694: 83,-4 + 3698: 9,-32 + 3699: 9,-31 + 3700: 9,-30 - node: cleanable: True color: '#474F52FF' @@ -2086,39 +2086,39 @@ entities: color: '#D4D4D4A4' id: Dirt decals: - 2851: 8,-62 - 2852: 8,-64 - 2853: 8,-61 - 2854: 5,-61 - 2855: 4,-61 - 2856: 4,-60 - 2857: 3,-61 - 2858: 3,-62 - 2859: 3,-64 - 2860: 2,-63 - 2861: 4,-58 - 2862: 3,-57 - 2863: 3,-56 - 2864: 3,-54 - 2865: 4,-53 - 2866: 5,-54 - 2867: 6,-54 - 2868: 8,-57 - 2869: 8,-58 - 2870: 8,-55 - 2871: 0,-57 - 2872: -1,-57 - 2873: -2,-55 - 2874: 0,-53 - 2875: 0,-54 - 2876: -2,-53 - 2877: 0,-52 - 2878: -2,-50 - 2879: -1,-49 - 2880: 0,-48 - 2881: -2,-47 - 2882: -1,-46 - 2883: -1,-45 + 2786: 8,-62 + 2787: 8,-64 + 2788: 8,-61 + 2789: 5,-61 + 2790: 4,-61 + 2791: 4,-60 + 2792: 3,-61 + 2793: 3,-62 + 2794: 3,-64 + 2795: 2,-63 + 2796: 4,-58 + 2797: 3,-57 + 2798: 3,-56 + 2799: 3,-54 + 2800: 4,-53 + 2801: 5,-54 + 2802: 6,-54 + 2803: 8,-57 + 2804: 8,-58 + 2805: 8,-55 + 2806: 0,-57 + 2807: -1,-57 + 2808: -2,-55 + 2809: 0,-53 + 2810: 0,-54 + 2811: -2,-53 + 2812: 0,-52 + 2813: -2,-50 + 2814: -1,-49 + 2815: 0,-48 + 2816: -2,-47 + 2817: -1,-46 + 2818: -1,-45 - node: color: '#FFFFFFFF' id: DirtHeavy @@ -2129,38 +2129,38 @@ entities: color: '#FFFFFFFF' id: DirtHeavy decals: - 2848: 4,-57 - 2849: -1,-55 - 2850: 8,-60 - 3101: 5,-69 - 3102: 6,-69 - 3103: 0,-70 - 3260: -7,-71 - 3261: -8,-71 - 3262: -7,-72 - 3263: -7,-73 - 3264: -6,-73 - 3265: -1,-72 - 3266: 0,-72 - 3640: -32,-22 - 3641: -36,-22 - 3642: -38,-24 - 3643: -36,-26 - 3644: -36,-29 - 3675: -27,-38 - 3676: -28,-36 - 3677: -28,-35 - 3678: -28,-34 - 3679: -25,-33 + 2783: 4,-57 + 2784: -1,-55 + 2785: 8,-60 + 3036: 5,-69 + 3037: 6,-69 + 3038: 0,-70 + 3195: -7,-71 + 3196: -8,-71 + 3197: -7,-72 + 3198: -7,-73 + 3199: -6,-73 + 3200: -1,-72 + 3201: 0,-72 + 3575: -32,-22 + 3576: -36,-22 + 3577: -38,-24 + 3578: -36,-26 + 3579: -36,-29 + 3610: -27,-38 + 3611: -28,-36 + 3612: -28,-35 + 3613: -28,-34 + 3614: -25,-33 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 3267: 1,-72 - 3268: 1,-71 - 3269: 4,-71 - 3270: 3,-66 + 3202: 1,-72 + 3203: 1,-71 + 3204: 4,-71 + 3205: 3,-66 - node: cleanable: True color: '#474F52FF' @@ -2211,218 +2211,218 @@ entities: 491: -32,-19 492: -31,-20 493: -25,-20 - 2247: -6,24 - 2248: -5,23 - 2249: -6,25 - 2250: -2,25 - 2251: -3,23 - 2252: -3,24 - 2253: -11,24 - 2254: -10,25 - 2255: -10,23 - 2256: -9,23 + 2188: -6,24 + 2189: -5,23 + 2190: -6,25 + 2191: -2,25 + 2192: -3,23 + 2193: -3,24 + 2194: -11,24 + 2195: -10,25 + 2196: -10,23 + 2197: -9,23 - node: cleanable: True color: '#FFFFFFFF' id: DirtLight decals: - 1049: -62,-5 - 1050: -61,-5 - 1051: -55,-3 - 1052: -57,1 - 1053: -64,2 - 1054: -47,-1 - 1055: -46,1 - 1056: -45,2 - 1057: -39,-1 - 1058: -38,-2 - 1059: -3,0 - 1060: -2,1 - 1061: -1,5 - 1062: -2,7 - 1063: -1,10 - 1064: 16,-12 - 1065: 19,-14 - 1066: 31,-13 - 1067: 44,-15 - 1068: 49,-14 - 1069: 60,-13 - 1070: 71,-14 - 1071: 1,-48 - 1072: 0,-47 - 1073: 5,-46 - 1074: 8,-61 - 1075: -7,-67 - 1076: -15,-73 - 1077: -17,-70 - 1078: -29,-39 - 1079: -27,-39 - 1080: -25,-37 - 1081: -38,-30 - 1082: -40,-31 - 1083: -41,-30 - 1084: -42,-25 - 1302: 11,-53 - 1303: 6,-49 - 1304: 7,-48 - 1305: -1,-42 - 1306: -2,-44 - 1307: 0,-45 - 1308: 0,-49 - 1309: 1,-45 - 1310: 0,-42 - 1311: -1,-38 - 1312: -2,-35 - 1313: -1,-35 - 1314: 0,-33 - 1315: 1,-32 - 1316: -2,-32 - 1536: -6,47 - 1537: -6,47 - 1538: -9,49 - 1539: -8,48 - 1540: -5,50 - 1541: -3,50 - 1542: 0,49 - 1543: 1,48 - 1544: 2,50 - 1545: 3,50 - 1546: -10,50 - 1547: -12,49 - 1548: -16,43 - 1549: -14,43 - 1550: -11,41 - 1551: -11,36 - 1552: -6,35 - 1553: -8,35 - 1554: -9,36 - 1555: -6,39 - 1557: -10,49 - 1558: -7,51 - 1559: -10,52 - 1560: 3,49 - 2815: -1,-50 - 2816: 0,-50 - 2817: -1,-51 - 2818: -1,-52 - 2819: -1,-53 - 2820: -1,-54 - 2821: 0,-56 - 2822: 1,-57 - 2823: 2,-57 - 2824: 3,-57 - 2825: 4,-57 - 2826: 4,-56 - 2827: 5,-54 - 2828: 3,-52 - 2829: 8,-57 - 2830: 8,-54 - 2831: 7,-54 - 2832: 4,-60 - 2833: 4,-61 - 2834: 3,-61 - 2835: 3,-63 - 2836: 8,-61 - 2837: 8,-63 - 2838: 8,-63 - 2839: 6,-61 - 3071: 4,-68 - 3072: 8,-68 - 3073: 8,-73 - 3074: 8,-75 - 3075: 9,-73 - 3076: 11,-74 - 3077: 11,-73 - 3078: 4,-74 - 3079: 3,-73 - 3080: 1,-74 - 3081: 0,-74 - 3082: -1,-73 - 3083: -3,-75 - 3084: -4,-74 - 3085: -4,-75 - 3086: -5,-74 - 3087: -6,-73 - 3088: -5,-69 - 3089: -4,-68 - 3090: -10,-70 - 3091: -11,-69 - 3092: -13,-70 - 3093: -15,-70 - 3094: -17,-69 - 3095: -10,-75 - 3096: -11,-76 - 3097: -13,-77 - 3098: 0,-70 - 3099: 1,-69 - 3100: 7,-68 - 3111: 7,-70 - 3112: 0,-69 - 3113: -1,-69 - 3114: -2,-70 - 3115: -7,-69 - 3116: -6,-68 - 3117: -5,-68 - 3118: -4,-69 - 3119: -4,-70 - 3271: 2,-67 - 3272: 3,-67 - 3273: 2,-66 - 3274: 5,-67 - 3275: 5,-67 - 3276: 4,-67 - 3277: 9,-70 - 3278: 9,-71 - 3279: 8,-71 - 3280: -4,-71 - 3281: -6,-71 - 3282: -8,-70 - 3283: -8,-69 - 3284: -7,-70 - 3285: -10,-71 - 3286: -12,-71 - 3624: -40,-30 - 3625: -41,-31 - 3626: -38,-30 - 3627: -38,-31 - 3628: -36,-31 - 3629: -38,-28 - 3630: -41,-27 - 3631: -38,-25 - 3632: -36,-26 - 3633: -39,-24 - 3634: -37,-22 - 3635: -35,-21 - 3636: -33,-21 - 3637: -33,-21 - 3638: -31,-22 - 3639: -29,-23 - 3685: -26,-35 - 3686: -26,-35 - 3687: -25,-35 - 3688: -27,-35 - 3689: -26,-33 - 3690: -27,-33 - 3691: -27,-31 - 3692: -28,-31 - 3693: -28,-32 - 3694: -29,-32 - 3695: -31,-31 - 3696: -30,-31 - 3697: -35,-31 - 3698: -26,-29 - 3699: -25,-30 - 3700: -25,-28 - 3701: -26,-28 - 3702: -28,-28 - 3703: -28,-27 - 3704: -28,-26 - 3705: -26,-25 - 3706: -25,-27 - 3707: -25,-27 - 3708: -23,-27 - 3709: -22,-27 - 3710: -21,-25 + 1045: -62,-5 + 1046: -61,-5 + 1047: -55,-3 + 1048: -57,1 + 1049: -64,2 + 1050: -47,-1 + 1051: -46,1 + 1052: -45,2 + 1053: -39,-1 + 1054: -38,-2 + 1055: -3,0 + 1056: -2,1 + 1057: -1,5 + 1058: -2,7 + 1059: -1,10 + 1060: 16,-12 + 1061: 19,-14 + 1062: 31,-13 + 1063: 44,-15 + 1064: 49,-14 + 1065: 60,-13 + 1066: 71,-14 + 1067: 1,-48 + 1068: 0,-47 + 1069: 5,-46 + 1070: 8,-61 + 1071: -7,-67 + 1072: -15,-73 + 1073: -17,-70 + 1074: -29,-39 + 1075: -27,-39 + 1076: -25,-37 + 1077: -38,-30 + 1078: -40,-31 + 1079: -41,-30 + 1080: -42,-25 + 1297: 11,-53 + 1298: 6,-49 + 1299: 7,-48 + 1300: -1,-42 + 1301: -2,-44 + 1302: 0,-45 + 1303: 0,-49 + 1304: 1,-45 + 1305: 0,-42 + 1306: -1,-38 + 1307: -2,-35 + 1308: -1,-35 + 1309: 0,-33 + 1310: 1,-32 + 1311: -2,-32 + 1478: -6,47 + 1479: -6,47 + 1480: -9,49 + 1481: -8,48 + 1482: -5,50 + 1483: -3,50 + 1484: 0,49 + 1485: 1,48 + 1486: 2,50 + 1487: 3,50 + 1488: -10,50 + 1489: -12,49 + 1490: -16,43 + 1491: -14,43 + 1492: -11,41 + 1493: -11,36 + 1494: -6,35 + 1495: -8,35 + 1496: -9,36 + 1497: -6,39 + 1499: -10,49 + 1500: -7,51 + 1501: -10,52 + 1502: 3,49 + 2750: -1,-50 + 2751: 0,-50 + 2752: -1,-51 + 2753: -1,-52 + 2754: -1,-53 + 2755: -1,-54 + 2756: 0,-56 + 2757: 1,-57 + 2758: 2,-57 + 2759: 3,-57 + 2760: 4,-57 + 2761: 4,-56 + 2762: 5,-54 + 2763: 3,-52 + 2764: 8,-57 + 2765: 8,-54 + 2766: 7,-54 + 2767: 4,-60 + 2768: 4,-61 + 2769: 3,-61 + 2770: 3,-63 + 2771: 8,-61 + 2772: 8,-63 + 2773: 8,-63 + 2774: 6,-61 + 3006: 4,-68 + 3007: 8,-68 + 3008: 8,-73 + 3009: 8,-75 + 3010: 9,-73 + 3011: 11,-74 + 3012: 11,-73 + 3013: 4,-74 + 3014: 3,-73 + 3015: 1,-74 + 3016: 0,-74 + 3017: -1,-73 + 3018: -3,-75 + 3019: -4,-74 + 3020: -4,-75 + 3021: -5,-74 + 3022: -6,-73 + 3023: -5,-69 + 3024: -4,-68 + 3025: -10,-70 + 3026: -11,-69 + 3027: -13,-70 + 3028: -15,-70 + 3029: -17,-69 + 3030: -10,-75 + 3031: -11,-76 + 3032: -13,-77 + 3033: 0,-70 + 3034: 1,-69 + 3035: 7,-68 + 3046: 7,-70 + 3047: 0,-69 + 3048: -1,-69 + 3049: -2,-70 + 3050: -7,-69 + 3051: -6,-68 + 3052: -5,-68 + 3053: -4,-69 + 3054: -4,-70 + 3206: 2,-67 + 3207: 3,-67 + 3208: 2,-66 + 3209: 5,-67 + 3210: 5,-67 + 3211: 4,-67 + 3212: 9,-70 + 3213: 9,-71 + 3214: 8,-71 + 3215: -4,-71 + 3216: -6,-71 + 3217: -8,-70 + 3218: -8,-69 + 3219: -7,-70 + 3220: -10,-71 + 3221: -12,-71 + 3559: -40,-30 + 3560: -41,-31 + 3561: -38,-30 + 3562: -38,-31 + 3563: -36,-31 + 3564: -38,-28 + 3565: -41,-27 + 3566: -38,-25 + 3567: -36,-26 + 3568: -39,-24 + 3569: -37,-22 + 3570: -35,-21 + 3571: -33,-21 + 3572: -33,-21 + 3573: -31,-22 + 3574: -29,-23 + 3620: -26,-35 + 3621: -26,-35 + 3622: -25,-35 + 3623: -27,-35 + 3624: -26,-33 + 3625: -27,-33 + 3626: -27,-31 + 3627: -28,-31 + 3628: -28,-32 + 3629: -29,-32 + 3630: -31,-31 + 3631: -30,-31 + 3632: -35,-31 + 3633: -26,-29 + 3634: -25,-30 + 3635: -25,-28 + 3636: -26,-28 + 3637: -28,-28 + 3638: -28,-27 + 3639: -28,-26 + 3640: -26,-25 + 3641: -25,-27 + 3642: -25,-27 + 3643: -23,-27 + 3644: -22,-27 + 3645: -21,-25 - node: cleanable: True zIndex: 1 @@ -2450,72 +2450,72 @@ entities: color: '#FFFFFFFF' id: DirtMedium decals: - 1556: -8,50 - 2840: 7,-61 - 2841: 4,-58 - 2842: 4,-54 - 2843: 3,-53 - 2844: 8,-56 - 2845: 0,-58 - 2846: -1,-58 - 2847: -1,-56 - 3104: -5,-70 - 3105: -6,-69 - 3106: -7,-68 - 3107: -1,-70 - 3108: 6,-70 - 3109: 6,-68 - 3110: 7,-69 - 3645: -37,-29 - 3646: -36,-28 - 3647: -36,-30 - 3648: -36,-27 - 3649: -37,-26 - 3650: -36,-25 - 3651: -36,-24 - 3652: -37,-24 - 3653: -36,-23 - 3654: -39,-22 - 3655: -41,-24 - 3656: -40,-24 - 3657: -41,-25 - 3658: -41,-26 - 3659: -32,-20 - 3660: -32,-19 - 3661: -34,-20 - 3662: -33,-20 - 3663: -28,-21 - 3664: -27,-23 - 3665: -26,-24 - 3666: -26,-26 - 3667: -27,-26 - 3668: -27,-27 - 3669: -27,-28 - 3670: -29,-37 - 3671: -29,-38 - 3672: -28,-38 - 3673: -26,-38 - 3674: -25,-36 - 3680: -28,-33 - 3681: -26,-36 - 3682: -27,-36 - 3683: -27,-33 - 3684: -28,-32 + 1498: -8,50 + 2775: 7,-61 + 2776: 4,-58 + 2777: 4,-54 + 2778: 3,-53 + 2779: 8,-56 + 2780: 0,-58 + 2781: -1,-58 + 2782: -1,-56 + 3039: -5,-70 + 3040: -6,-69 + 3041: -7,-68 + 3042: -1,-70 + 3043: 6,-70 + 3044: 6,-68 + 3045: 7,-69 + 3580: -37,-29 + 3581: -36,-28 + 3582: -36,-30 + 3583: -36,-27 + 3584: -37,-26 + 3585: -36,-25 + 3586: -36,-24 + 3587: -37,-24 + 3588: -36,-23 + 3589: -39,-22 + 3590: -41,-24 + 3591: -40,-24 + 3592: -41,-25 + 3593: -41,-26 + 3594: -32,-20 + 3595: -32,-19 + 3596: -34,-20 + 3597: -33,-20 + 3598: -28,-21 + 3599: -27,-23 + 3600: -26,-24 + 3601: -26,-26 + 3602: -27,-26 + 3603: -27,-27 + 3604: -27,-28 + 3605: -29,-37 + 3606: -29,-38 + 3607: -28,-38 + 3608: -26,-38 + 3609: -25,-36 + 3615: -28,-33 + 3616: -26,-36 + 3617: -27,-36 + 3618: -27,-33 + 3619: -28,-32 - node: color: '#FFFFFFFF' id: Flowersbr2 decals: - 2203: 23.65632,-6.414194 + 2144: 23.65632,-6.414194 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: - 1448: 7.3655357,-24.02947 + 1390: 7.3655357,-24.02947 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: - 1194: 43.154446,-52.983627 + 1189: 43.154446,-52.983627 - node: color: '#FFFFFFFF' id: Flowersy1 @@ -2525,46 +2525,46 @@ entities: color: '#FFFFFFFF' id: Flowersy3 decals: - 1193: 43.85757,-52.030502 + 1188: 43.85757,-52.030502 - node: color: '#FFFFFFFF' id: Flowersy4 decals: 527: -15.026416,-24.599382 - 1192: 46.216946,-53.983627 - 1447: 6.2405357,-24.09197 - 2202: 23.328196,-6.882944 + 1187: 46.216946,-53.983627 + 1389: 6.2405357,-24.09197 + 2143: 23.328196,-6.882944 - node: color: '#334E6D5A' id: FullTileOverlayGreyscale decals: - 2371: -1,-5 + 2306: -1,-5 - node: color: '#52B4E931' id: FullTileOverlayGreyscale decals: - 2380: 2,-5 + 2315: 2,-5 - node: color: '#52B4E937' id: FullTileOverlayGreyscale decals: - 3360: 42,-29 - 3361: 42,-28 - 3362: 43,-29 - 3363: 43,-28 - 3364: 44,-29 - 3365: 44,-28 - 3366: 45,-29 - 3367: 45,-28 - 3368: 46,-29 - 3369: 46,-28 - 3370: 45,-27 - 3371: 45,-26 - 3372: 45,-25 - 3373: 45,-24 - 3374: 44,-24 - 3375: 46,-24 - 3376: 46,-23 + 3295: 42,-29 + 3296: 42,-28 + 3297: 43,-29 + 3298: 43,-28 + 3299: 44,-29 + 3300: 44,-28 + 3301: 45,-29 + 3302: 45,-28 + 3303: 46,-29 + 3304: 46,-28 + 3305: 45,-27 + 3306: 45,-26 + 3307: 45,-25 + 3308: 45,-24 + 3309: 44,-24 + 3310: 46,-24 + 3311: 46,-23 - node: color: '#52B4E996' id: FullTileOverlayGreyscale @@ -2584,202 +2584,202 @@ entities: 926: 27,-16 927: 26,-16 928: 25,-16 - 2209: -10,25 + 2150: -10,25 - node: color: '#9FED5896' id: FullTileOverlayGreyscale decals: - 2208: -6,25 + 2149: -6,25 - node: color: '#A4610696' id: FullTileOverlayGreyscale decals: 458: -30,-31 - 1200: -21,-31 - 1201: -22,-31 + 1195: -21,-31 + 1196: -22,-31 - node: color: '#D381C934' id: FullTileOverlayGreyscale decals: - 2383: 6,-7 + 2318: 6,-7 - node: color: '#D381C996' id: FullTileOverlayGreyscale decals: - 1805: 65,-22 - 1806: 66,-22 - 1807: 67,-22 - 1855: 61,-41 - 1856: 59,-41 - 1857: 57,-41 - 1858: 55,-41 - 1859: 53,-41 - 3528: 5,-33 + 1747: 65,-22 + 1748: 66,-22 + 1749: 67,-22 + 1797: 61,-41 + 1798: 59,-41 + 1799: 57,-41 + 1800: 55,-41 + 1801: 53,-41 + 3463: 5,-33 - node: color: '#DE3A3A2B' id: FullTileOverlayGreyscale decals: - 2361: -8,-7 + 2296: -8,-7 - node: color: '#DE3A3A96' id: FullTileOverlayGreyscale decals: 1026: 77,-5 - 1152: 58,-16 - 1472: -8,37 - 1473: -7,37 - 1474: -5,37 + 1147: 58,-16 + 1414: -8,37 + 1415: -7,37 + 1416: -5,37 - node: color: '#EFB34131' id: FullTileOverlayGreyscale decals: - 2362: -4,-5 + 2297: -4,-5 - node: color: '#EFB34196' id: FullTileOverlayGreyscale decals: - 2207: -2,25 - 3239: 1,-72 - 3240: 0,-72 - 3241: -1,-72 - 3242: -2,-72 - 3243: -3,-72 + 2148: -2,25 + 3174: 1,-72 + 3175: 0,-72 + 3176: -1,-72 + 3177: -2,-72 + 3178: -3,-72 - node: color: '#EFCF412B' id: FullTileOverlayGreyscale decals: - 2659: 2,-61 - 2660: 2,-62 - 2661: 2,-63 - 2662: 2,-64 - 2663: 3,-64 - 2664: 3,-63 - 2665: 3,-62 - 2666: 3,-61 - 2667: 3,-60 - 2668: 2,-60 - 2669: 1,-60 - 2670: 1,-61 - 2671: 1,-62 - 2672: 1,-63 - 2673: 1,-64 - 2674: 4,-64 - 2675: 4,-63 - 2676: 4,-62 - 2677: 4,-61 - 2678: 4,-60 - 2679: 5,-60 - 2680: 5,-61 - 2681: 5,-62 - 2682: 5,-63 - 2683: 5,-64 - 2684: 6,-64 - 2685: 6,-63 - 2686: 6,-61 - 2687: 6,-62 - 2688: 6,-60 - 2689: 7,-60 - 2690: 8,-60 - 2691: 9,-60 - 2692: 9,-61 - 2693: 8,-61 - 2694: 7,-61 - 2695: 7,-62 - 2696: 8,-62 - 2697: 9,-62 - 2698: 9,-63 - 2699: 8,-63 - 2700: 7,-63 - 2701: 7,-64 - 2702: 8,-64 - 2703: 9,-64 - 2704: 8,-59 - 2705: 4,-59 - 2706: 4,-58 - 2707: 3,-58 - 2708: 5,-58 - 2709: 6,-58 - 2710: 7,-58 - 2711: 8,-58 - 2712: 9,-58 - 2713: 9,-57 - 2714: 8,-57 - 2715: 7,-57 - 2716: 5,-57 - 2717: 6,-57 - 2718: 4,-57 - 2719: 3,-57 - 2720: 3,-56 - 2721: 2,-57 - 2722: 4,-56 - 2723: 5,-56 - 2724: 6,-56 - 2725: 7,-56 - 2726: 8,-56 - 2727: 9,-56 - 2728: 9,-55 - 2729: 8,-55 - 2730: 7,-55 - 2731: 6,-55 - 2732: 5,-55 - 2733: 4,-55 - 2734: 3,-55 - 2735: 3,-54 - 2736: 4,-54 - 2737: 5,-54 - 2738: 6,-54 - 2739: 7,-54 - 2740: 8,-54 - 2741: 9,-54 - 2742: 9,-53 - 2743: 9,-52 - 2744: 8,-52 - 2745: 8,-53 - 2746: 7,-53 - 2747: 7,-52 - 2748: 6,-52 - 2749: 6,-53 - 2750: 5,-53 - 2751: 5,-52 - 2752: 4,-52 - 2753: 4,-53 - 2754: 3,-53 - 2755: 2,-53 - 2756: 2,-54 - 2757: 2,-52 - 2758: 3,-52 + 2594: 2,-61 + 2595: 2,-62 + 2596: 2,-63 + 2597: 2,-64 + 2598: 3,-64 + 2599: 3,-63 + 2600: 3,-62 + 2601: 3,-61 + 2602: 3,-60 + 2603: 2,-60 + 2604: 1,-60 + 2605: 1,-61 + 2606: 1,-62 + 2607: 1,-63 + 2608: 1,-64 + 2609: 4,-64 + 2610: 4,-63 + 2611: 4,-62 + 2612: 4,-61 + 2613: 4,-60 + 2614: 5,-60 + 2615: 5,-61 + 2616: 5,-62 + 2617: 5,-63 + 2618: 5,-64 + 2619: 6,-64 + 2620: 6,-63 + 2621: 6,-61 + 2622: 6,-62 + 2623: 6,-60 + 2624: 7,-60 + 2625: 8,-60 + 2626: 9,-60 + 2627: 9,-61 + 2628: 8,-61 + 2629: 7,-61 + 2630: 7,-62 + 2631: 8,-62 + 2632: 9,-62 + 2633: 9,-63 + 2634: 8,-63 + 2635: 7,-63 + 2636: 7,-64 + 2637: 8,-64 + 2638: 9,-64 + 2639: 8,-59 + 2640: 4,-59 + 2641: 4,-58 + 2642: 3,-58 + 2643: 5,-58 + 2644: 6,-58 + 2645: 7,-58 + 2646: 8,-58 + 2647: 9,-58 + 2648: 9,-57 + 2649: 8,-57 + 2650: 7,-57 + 2651: 5,-57 + 2652: 6,-57 + 2653: 4,-57 + 2654: 3,-57 + 2655: 3,-56 + 2656: 2,-57 + 2657: 4,-56 + 2658: 5,-56 + 2659: 6,-56 + 2660: 7,-56 + 2661: 8,-56 + 2662: 9,-56 + 2663: 9,-55 + 2664: 8,-55 + 2665: 7,-55 + 2666: 6,-55 + 2667: 5,-55 + 2668: 4,-55 + 2669: 3,-55 + 2670: 3,-54 + 2671: 4,-54 + 2672: 5,-54 + 2673: 6,-54 + 2674: 7,-54 + 2675: 8,-54 + 2676: 9,-54 + 2677: 9,-53 + 2678: 9,-52 + 2679: 8,-52 + 2680: 8,-53 + 2681: 7,-53 + 2682: 7,-52 + 2683: 6,-52 + 2684: 6,-53 + 2685: 5,-53 + 2686: 5,-52 + 2687: 4,-52 + 2688: 4,-53 + 2689: 3,-53 + 2690: 2,-53 + 2691: 2,-54 + 2692: 2,-52 + 2693: 3,-52 - node: color: '#FFFFFFFF' id: Grassa1 decals: - 1445: 7.2717857,-23.90447 - 1446: 6.2249107,-24.045095 - 1573: -3,48 + 1387: 7.2717857,-23.90447 + 1388: 6.2249107,-24.045095 + 1515: -3,48 - node: color: '#FFFFFFFF' id: Grassa2 decals: - 1568: 2,47 - 1569: 4,48 - 1580: -1,47 + 1510: 2,47 + 1511: 4,48 + 1522: -1,47 - node: color: '#FFFFFFFF' id: Grassa3 decals: - 1574: 2,48 + 1516: 2,48 - node: color: '#FFFFFFFF' id: Grassa5 decals: - 1570: 4,47 - 1571: -1,48 - 1572: -3,47 + 1512: 4,47 + 1513: -1,48 + 1514: -3,47 - node: color: '#FFFFFFFF' id: Grassb1 decals: 519: -14.995166,-26.943132 - 1198: 47.091946,-51.921127 + 1193: 47.091946,-51.921127 - node: color: '#FFFFFFFF' id: Grassb2 @@ -2789,62 +2789,62 @@ entities: color: '#FFFFFFFF' id: Grassb5 decals: - 1199: 42.85757,-51.827377 - 2201: 23.890696,-6.117319 + 1194: 42.85757,-51.827377 + 2142: 23.890696,-6.117319 - node: color: '#FFFFFFFF' id: Grassd1 decals: - 1191: 46.57632,-52.483627 - 3719: 42,0 + 1186: 46.57632,-52.483627 + 3653: 42,0 - node: color: '#FFFFFFFF' id: Grassd2 decals: - 1190: 44.04507,-52.733627 - 3718: 44,0 + 1185: 44.04507,-52.733627 + 3652: 44,0 - node: color: '#FFFFFFFF' id: Grassd3 decals: 516: -14.979541,-25.083757 - 1566: 2,48 - 3720: 43,0 + 1508: 2,48 + 3654: 43,0 - node: color: '#FFFFFFFF' id: Grasse1 decals: 515: -14.995166,-24.161882 - 1188: 46.42007,-53.327377 - 1189: 43.29507,-52.358627 - 1565: 2,47 - 1567: -3,48 - 2198: 23.90632,-6.523569 - 3716: 43,-1 + 1183: 46.42007,-53.327377 + 1184: 43.29507,-52.358627 + 1507: 2,47 + 1509: -3,48 + 2139: 23.90632,-6.523569 + 3650: 43,-1 - node: color: '#FFFFFFFF' id: Grasse2 decals: 514: -15.010791,-27.036882 - 1440: 6,-24 - 1441: 7,-24 - 1442: 8,-24 - 1562: 4,47 - 1563: -1,48 - 1579: -1,47 - 2197: 23.171946,-6.117319 - 3717: 42,-1 + 1382: 6,-24 + 1383: 7,-24 + 1384: 8,-24 + 1504: 4,47 + 1505: -1,48 + 1521: -1,47 + 2138: 23.171946,-6.117319 + 3651: 42,-1 - node: color: '#FFFFFFFF' id: Grasse3 decals: 517: -14.995166,-25.786882 - 1443: 8,-24 - 1444: 6.3967857,-23.96697 - 1561: 4,48 - 1564: -3,47 - 2196: 23.12507,-6.836069 - 3715: 44,-1 + 1385: 8,-24 + 1386: 6.3967857,-23.96697 + 1503: 4,48 + 1506: -3,47 + 2137: 23.12507,-6.836069 + 3649: 44,-1 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale @@ -2869,19 +2869,19 @@ entities: 822: 29,-24 823: 27,-24 838: 23,-25 - 1665: 49,-27 - 1692: 40,-23 - 2204: -4,28 - 2573: 34,-35 - 3340: 22,-35 - 3341: 21,-35 - 3342: 18,-35 - 3343: 19,-35 + 1607: 49,-27 + 1634: 40,-23 + 2145: -4,28 + 2508: 34,-35 + 3275: 22,-35 + 3276: 21,-35 + 3277: 18,-35 + 3278: 19,-35 - node: color: '#9D9D97FF' id: HalfTileOverlayGreyscale decals: - 1158: 62,-27 + 1153: 62,-27 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale @@ -2894,43 +2894,43 @@ entities: 779: 39,-56 1001: 35,-52 1002: 36,-52 - 2205: -3,28 + 2146: -3,28 - node: color: '#A4610696' id: HalfTileOverlayGreyscale decals: 217: -32,-11 - 1159: -24,-16 - 1160: -23,-16 - 1161: -22,-16 - 1162: -21,-16 - 2463: 5,28 - 2464: 28,-24 - 2465: 69,-18 - 3543: -32,-29 - 3544: -33,-29 + 1154: -24,-16 + 1155: -23,-16 + 1156: -22,-16 + 1157: -21,-16 + 2398: 5,28 + 2399: 28,-24 + 2400: 69,-18 + 3478: -32,-29 + 3479: -33,-29 - node: color: '#D381C996' id: HalfTileOverlayGreyscale decals: 902: 70,-18 903: 71,-18 - 1829: 63,-40 - 1830: 62,-40 - 1831: 61,-40 - 1832: 60,-40 - 1833: 59,-40 - 1834: 58,-40 - 1835: 57,-40 - 1836: 56,-40 - 1837: 55,-40 - 1838: 53,-40 - 1839: 52,-40 - 1840: 51,-40 - 3514: 6,-34 - 3515: 5,-34 - 3516: 4,-34 - 3517: 3,-34 + 1771: 63,-40 + 1772: 62,-40 + 1773: 61,-40 + 1774: 60,-40 + 1775: 59,-40 + 1776: 58,-40 + 1777: 57,-40 + 1778: 56,-40 + 1779: 55,-40 + 1780: 53,-40 + 1781: 52,-40 + 1782: 51,-40 + 3449: 6,-34 + 3450: 5,-34 + 3451: 4,-34 + 3452: 3,-34 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale @@ -2969,25 +2969,25 @@ entities: 1016: 79,-2 1017: 80,-2 1018: 81,-2 - 1151: 58,-17 - 1155: 60,-18 - 1156: 61,-18 - 1157: 62,-18 - 2235: 14,32 + 1146: 58,-17 + 1150: 60,-18 + 1151: 61,-18 + 1152: 62,-18 + 2176: 14,32 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale decals: - 2206: -2,28 - 2927: 5,-42 - 2928: 5,-44 - 2929: 5,-43 + 2147: -2,28 + 2862: 5,-42 + 2863: 5,-44 + 2864: 5,-43 - node: color: '#F5DB9E96' id: HalfTileOverlayGreyscale decals: - 1763: 20,-25 - 1764: 22,-25 + 1705: 20,-25 + 1706: 22,-25 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 @@ -3018,18 +3018,18 @@ entities: 814: 29,-19 815: 28,-19 816: 27,-19 - 1666: 49,-29 - 1684: 37,-25 - 1685: 38,-25 - 1686: 41,-25 - 2557: 29,-37 - 2558: 30,-37 - 2559: 31,-37 - 2560: 32,-37 - 2561: 33,-37 - 2562: 34,-37 - 2563: 35,-37 - 2564: 36,-37 + 1608: 49,-29 + 1626: 37,-25 + 1627: 38,-25 + 1628: 41,-25 + 2492: 29,-37 + 2493: 30,-37 + 2494: 31,-37 + 2495: 32,-37 + 2496: 33,-37 + 2497: 34,-37 + 2498: 35,-37 + 2499: 36,-37 - node: color: '#9D9D97FF' id: HalfTileOverlayGreyscale180 @@ -3041,10 +3041,10 @@ entities: color: '#9FED5828' id: HalfTileOverlayGreyscale180 decals: - 1575: 3,47 - 1576: 1,47 - 1577: 0,47 - 1578: -2,47 + 1517: 3,47 + 1518: 1,47 + 1519: 0,47 + 1520: -2,47 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale180 @@ -3055,8 +3055,8 @@ entities: color: '#A4610696' id: HalfTileOverlayGreyscale180 decals: - 3545: -33,-32 - 3546: -32,-32 + 3480: -33,-32 + 3481: -32,-32 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 @@ -3069,24 +3069,24 @@ entities: 914: 64,-16 915: 63,-16 916: 62,-16 - 1797: 51,-15 - 1798: 55,-15 - 1841: 51,-42 - 1842: 52,-42 - 1843: 53,-42 - 1844: 54,-42 - 1845: 55,-42 - 1846: 57,-42 - 1847: 59,-42 - 1848: 60,-42 - 1849: 62,-42 - 1850: 63,-42 - 1851: 61,-42 - 3506: 5,-32 - 3520: 3,-37 - 3521: 4,-37 - 3522: 6,-37 - 3523: 5,-37 + 1739: 51,-15 + 1740: 55,-15 + 1783: 51,-42 + 1784: 52,-42 + 1785: 53,-42 + 1786: 54,-42 + 1787: 55,-42 + 1788: 57,-42 + 1789: 59,-42 + 1790: 60,-42 + 1791: 62,-42 + 1792: 63,-42 + 1793: 61,-42 + 3441: 5,-32 + 3455: 3,-37 + 3456: 4,-37 + 3457: 6,-37 + 3458: 5,-37 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 @@ -3114,27 +3114,27 @@ entities: 1023: 79,-4 1024: 80,-4 1025: 81,-4 - 2233: 14,34 - 2238: 14,31 + 2174: 14,34 + 2179: 14,31 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale180 decals: 372: -2,23 - 3046: -2,-68 - 3047: -2,-69 - 3058: 2,-68 - 3059: 2,-70 + 2981: -2,-68 + 2982: -2,-69 + 2993: 2,-68 + 2994: 2,-70 - node: color: '#334E6D5A' id: HalfTileOverlayGreyscale270 decals: - 2369: -2,-6 + 2304: -2,-6 - node: color: '#52B4E931' id: HalfTileOverlayGreyscale270 decals: - 2382: 1,-6 + 2317: 1,-6 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 @@ -3161,17 +3161,17 @@ entities: 809: 34,-20 818: 34,-23 837: 18,-26 - 1141: 56,-24 - 1668: 48,-28 - 2553: 28,-33 - 2554: 28,-35 - 2555: 28,-36 - 2570: 35,-32 - 2571: 35,-33 - 2572: 35,-34 - 3433: 39,-49 - 3434: 39,-47 - 3435: 39,-46 + 1136: 56,-24 + 1610: 48,-28 + 2488: 28,-33 + 2489: 28,-35 + 2490: 28,-36 + 2505: 35,-32 + 2506: 35,-33 + 2507: 35,-34 + 3368: 39,-49 + 3369: 39,-47 + 3370: 39,-46 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 @@ -3201,7 +3201,7 @@ entities: 468: -42,-25 469: -42,-26 470: -42,-27 - 3537: -34,-30 + 3472: -34,-30 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 @@ -3209,9 +3209,9 @@ entities: 282: 65,-18 283: 65,-19 284: 65,-20 - 1861: 63,-41 - 3518: 2,-35 - 3519: 2,-36 + 1803: 63,-41 + 3453: 2,-35 + 3454: 2,-36 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 @@ -3227,30 +3227,30 @@ entities: 343: -9,30 427: -62,4 1020: 76,-3 - 1144: 57,-20 - 1145: 57,-19 - 1146: 57,-18 - 1525: -12,38 - 1526: -12,39 - 1527: -12,40 - 1528: -12,41 + 1139: 57,-20 + 1140: 57,-19 + 1141: 57,-18 + 1467: -12,38 + 1468: -12,39 + 1469: -12,40 + 1470: -12,41 - node: color: '#EFB34131' id: HalfTileOverlayGreyscale270 decals: - 2368: -5,-6 + 2303: -5,-6 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale270 decals: - 1095: -3,-25 - 1098: -2,-27 - 2766: 1,-62 + 1090: -3,-25 + 1093: -2,-27 + 2701: 1,-62 - node: color: '#334E6D5A' id: HalfTileOverlayGreyscale90 decals: - 2370: 0,-6 + 2305: 0,-6 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 @@ -3264,7 +3264,7 @@ entities: color: '#52B4E931' id: HalfTileOverlayGreyscale90 decals: - 2381: 3,-6 + 2316: 3,-6 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 @@ -3288,9 +3288,9 @@ entities: 806: 26,-21 807: 26,-20 817: 26,-23 - 1667: 50,-28 - 2568: 37,-36 - 2569: 36,-34 + 1609: 50,-28 + 2503: 37,-36 + 2504: 36,-34 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale90 @@ -3307,19 +3307,19 @@ entities: 221: -30,-14 222: -30,-13 223: -30,-12 - 1164: -20,-17 - 1165: -20,-18 - 1166: -20,-19 - 1167: -20,-20 - 3538: -31,-30 - 3565: -36,-32 - 3566: -36,-30 - 3567: -36,-29 - 3568: -36,-28 - 3569: -36,-27 - 3570: -36,-26 - 3571: -36,-25 - 3572: -36,-24 + 1159: -20,-17 + 1160: -20,-18 + 1161: -20,-19 + 1162: -20,-20 + 3473: -31,-30 + 3500: -36,-32 + 3501: -36,-30 + 3502: -36,-29 + 3503: -36,-28 + 3504: -36,-27 + 3505: -36,-26 + 3506: -36,-25 + 3507: -36,-24 - node: color: '#D381C996' id: HalfTileOverlayGreyscale90 @@ -3330,9 +3330,9 @@ entities: 286: 63,-20 287: 63,-21 288: 63,-22 - 1860: 51,-41 - 3512: 7,-36 - 3513: 7,-35 + 1802: 51,-41 + 3447: 7,-36 + 3448: 7,-35 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 @@ -3350,36 +3350,36 @@ entities: 205: -20,-31 426: -57,4 1019: 82,-3 - 1147: 63,-19 - 1529: -10,38 - 1530: -10,39 - 1531: -10,40 - 1532: -10,41 - 2234: 13,33 + 1142: 63,-19 + 1471: -10,38 + 1472: -10,39 + 1473: -10,40 + 1474: -10,41 + 2175: 13,33 - node: color: '#EFB34131' id: HalfTileOverlayGreyscale90 decals: - 2367: -3,-6 + 2302: -3,-6 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale90 decals: - 1099: 0,-27 - 2771: 9,-62 - 2925: 4,-43 - 2926: 4,-42 - 3043: -3,-70 - 3044: -3,-69 - 3048: -1,-69 - 3049: -1,-70 - 3050: 0,-70 - 3051: 0,-69 - 3055: 1,-70 - 3056: 1,-69 - 3060: 3,-70 - 3061: 3,-69 - 3070: 5,-69 + 1094: 0,-27 + 2706: 9,-62 + 2860: 4,-43 + 2861: 4,-42 + 2978: -3,-70 + 2979: -3,-69 + 2983: -1,-69 + 2984: -1,-70 + 2985: 0,-70 + 2986: 0,-69 + 2990: 1,-70 + 2991: 1,-69 + 2995: 3,-70 + 2996: 3,-69 + 3005: 5,-69 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -3405,7 +3405,7 @@ entities: color: '#334E6DC8' id: MiniTileWhiteLineW decals: - 2262: -11,-15 + 2203: -11,-15 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale @@ -3413,15 +3413,15 @@ entities: 561: 11,-8 562: 12,-8 563: 13,-8 - 2148: 27,-90 - 2149: 27,-91 - 2154: 31,-91 + 2089: 27,-90 + 2090: 27,-91 + 2095: 31,-91 - node: color: '#5299B43A' id: QuarterTileOverlayGreyscale decals: - 3400: 36,-43 - 3401: 37,-42 + 3335: 36,-43 + 3336: 37,-42 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale @@ -3431,46 +3431,46 @@ entities: 168: 35,-28 177: 29,-29 836: 18,-27 - 1142: 56,-25 - 1694: 37,-23 - 1961: -77,10 - 1962: -76,10 - 1963: -75,10 - 1964: -74,10 - 1965: -72,10 - 1966: -73,10 - 1967: -71,10 - 1968: -70,10 - 1969: -69,10 - 1970: -68,10 - 1971: -66,10 - 1972: -65,10 - 1985: -77,-14 - 1986: -76,-14 - 1987: -75,-14 - 1988: -74,-14 - 1989: -73,-14 - 1990: -72,-14 - 1991: -71,-14 - 1992: -70,-14 - 1993: -69,-14 - 1994: -68,-14 - 1995: -67,-14 - 1996: -66,-14 - 2429: -78,10 - 2430: -79,10 - 2574: 35,-35 + 1137: 56,-25 + 1636: 37,-23 + 1902: -77,10 + 1903: -76,10 + 1904: -75,10 + 1905: -74,10 + 1906: -72,10 + 1907: -73,10 + 1908: -71,10 + 1909: -70,10 + 1910: -69,10 + 1911: -68,10 + 1912: -66,10 + 1913: -65,10 + 1926: -77,-14 + 1927: -76,-14 + 1928: -75,-14 + 1929: -74,-14 + 1930: -73,-14 + 1931: -72,-14 + 1932: -71,-14 + 1933: -70,-14 + 1934: -69,-14 + 1935: -68,-14 + 1936: -67,-14 + 1937: -66,-14 + 2364: -78,10 + 2365: -79,10 + 2509: 35,-35 - node: color: '#79150096' id: QuarterTileOverlayGreyscale decals: - 2041: 75,-6 - 2042: 75,-7 - 2043: 75,-8 - 2044: 75,-9 - 2045: 75,-10 - 2046: 75,-11 - 2047: 75,-12 + 1982: 75,-6 + 1983: 75,-7 + 1984: 75,-8 + 1985: 75,-9 + 1986: 75,-10 + 1987: 75,-11 + 1988: 75,-12 - node: color: '#9D9D97FF' id: QuarterTileOverlayGreyscale @@ -3482,157 +3482,157 @@ entities: decals: 206: -31,-11 451: -29,-23 - 2474: -18,-22 - 2475: -18,-23 + 2409: -18,-22 + 2410: -18,-23 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale decals: 904: 72,-18 - 2500: -29,-35 - 2501: -29,-34 - 2502: -29,-33 - 2503: -29,-32 - 2504: -29,-31 - 2505: -29,-30 - 2506: -28,-30 - 2507: -27,-30 - 2523: -29,-36 + 2435: -29,-35 + 2436: -29,-34 + 2437: -29,-33 + 2438: -29,-32 + 2439: -29,-31 + 2440: -29,-30 + 2441: -28,-30 + 2442: -27,-30 + 2458: -29,-36 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale decals: - 1891: 14,-4 - 1892: 14,-5 - 1893: 14,-6 - 1894: 14,-7 - 1901: -3,1 - 1902: -4,1 - 1903: -4,0 - 1904: -4,-1 - 1905: -5,-1 - 1906: -6,-1 - 1907: -8,-1 - 1908: -9,-1 - 1909: -10,-1 - 1923: -2,10 - 1924: -2,9 - 1925: -2,8 - 1926: -2,7 - 1927: -2,6 - 1928: -2,5 - 1929: -2,4 - 1930: -2,3 - 2063: 18,-13 - 2064: 19,-13 - 2065: 20,-13 - 2066: 21,-13 - 2067: 23,-13 - 2068: 22,-13 - 2069: 24,-13 - 2070: 25,-13 - 2071: 26,-13 - 2072: 27,-13 - 2073: 28,-13 - 2074: 29,-13 - 2075: 30,-13 - 2076: 31,-13 - 2077: 32,-13 - 2078: 73,-13 - 2079: 72,-13 - 2080: 71,-13 - 2081: 70,-13 - 2082: 69,-13 - 2083: 68,-13 - 2084: 67,-13 - 2085: 66,-13 - 2086: 65,-13 - 2087: 64,-13 - 2088: 63,-13 - 2089: 62,-13 - 2090: 61,-13 - 2091: 60,-13 - 2092: 59,-13 - 2093: 58,-13 - 2094: 57,-13 - 2095: 56,-13 - 2096: 55,-13 - 2097: 54,-13 - 2098: -21,-1 - 2099: -22,-1 - 2100: -23,-1 - 2101: -24,-1 - 2102: -25,-1 - 2103: -28,-1 - 2104: -29,-1 - 2105: -27,-1 - 2106: -30,-1 - 2107: -31,-1 - 2114: -40,-1 - 2115: -41,-1 - 2118: -48,-1 - 2119: -49,-1 - 2120: -50,-1 - 2121: -51,-1 - 2122: -52,-1 - 2123: -62,1 - 2124: -61,1 - 2125: -60,1 - 2126: -59,1 - 2127: -58,1 - 2128: -57,1 - 2129: -56,1 - 2130: -55,1 - 2131: -54,1 - 2325: -18,-9 - 2326: -18,-8 - 2327: -18,-7 - 2328: -18,-6 - 2329: -18,-5 - 2330: -18,-4 - 3120: 19,12 - 3121: 19,13 - 3122: 19,14 - 3123: 19,15 - 3124: 20,15 - 3125: 21,15 - 3126: 22,15 - 3127: 23,15 - 3154: 8,17 - 3155: 8,16 - 3156: 8,15 - 3157: 8,14 - 3158: 8,13 - 3159: 8,12 - 3160: 8,10 - 3161: 8,11 - 3162: 8,9 - 3163: 8,8 - 3164: 8,7 - 3165: 8,6 - 3166: 8,5 - 3167: 8,4 - 3168: 8,3 - 3473: -47,-9 - 3474: -47,-8 - 3475: -47,-7 - 3476: -47,-6 - 3477: -46,-6 - 3478: -45,-6 - 3479: -44,-6 - 3480: -43,-6 + 1833: 14,-4 + 1834: 14,-5 + 1835: 14,-6 + 1836: 14,-7 + 1843: -3,1 + 1844: -4,1 + 1845: -4,0 + 1846: -4,-1 + 1847: -5,-1 + 1848: -6,-1 + 1849: -8,-1 + 1850: -9,-1 + 1851: -10,-1 + 1865: -2,10 + 1866: -2,9 + 1867: -2,8 + 1868: -2,7 + 1869: -2,6 + 1870: -2,5 + 1871: -2,4 + 1872: -2,3 + 2004: 18,-13 + 2005: 19,-13 + 2006: 20,-13 + 2007: 21,-13 + 2008: 23,-13 + 2009: 22,-13 + 2010: 24,-13 + 2011: 25,-13 + 2012: 26,-13 + 2013: 27,-13 + 2014: 28,-13 + 2015: 29,-13 + 2016: 30,-13 + 2017: 31,-13 + 2018: 32,-13 + 2019: 73,-13 + 2020: 72,-13 + 2021: 71,-13 + 2022: 70,-13 + 2023: 69,-13 + 2024: 68,-13 + 2025: 67,-13 + 2026: 66,-13 + 2027: 65,-13 + 2028: 64,-13 + 2029: 63,-13 + 2030: 62,-13 + 2031: 61,-13 + 2032: 60,-13 + 2033: 59,-13 + 2034: 58,-13 + 2035: 57,-13 + 2036: 56,-13 + 2037: 55,-13 + 2038: 54,-13 + 2039: -21,-1 + 2040: -22,-1 + 2041: -23,-1 + 2042: -24,-1 + 2043: -25,-1 + 2044: -28,-1 + 2045: -29,-1 + 2046: -27,-1 + 2047: -30,-1 + 2048: -31,-1 + 2055: -40,-1 + 2056: -41,-1 + 2059: -48,-1 + 2060: -49,-1 + 2061: -50,-1 + 2062: -51,-1 + 2063: -52,-1 + 2064: -62,1 + 2065: -61,1 + 2066: -60,1 + 2067: -59,1 + 2068: -58,1 + 2069: -57,1 + 2070: -56,1 + 2071: -55,1 + 2072: -54,1 + 2260: -18,-9 + 2261: -18,-8 + 2262: -18,-7 + 2263: -18,-6 + 2264: -18,-5 + 2265: -18,-4 + 3055: 19,12 + 3056: 19,13 + 3057: 19,14 + 3058: 19,15 + 3059: 20,15 + 3060: 21,15 + 3061: 22,15 + 3062: 23,15 + 3089: 8,17 + 3090: 8,16 + 3091: 8,15 + 3092: 8,14 + 3093: 8,13 + 3094: 8,12 + 3095: 8,10 + 3096: 8,11 + 3097: 8,9 + 3098: 8,8 + 3099: 8,7 + 3100: 8,6 + 3101: 8,5 + 3102: 8,4 + 3103: 8,3 + 3408: -47,-9 + 3409: -47,-8 + 3410: -47,-7 + 3411: -47,-6 + 3412: -46,-6 + 3413: -45,-6 + 3414: -44,-6 + 3415: -43,-6 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale decals: - 2033: 33,-12 - 2034: 34,-12 - 2035: 35,-12 - 2036: 36,-12 - 2037: 37,-12 - 2038: 38,-12 - 2039: 39,-12 - 2040: 40,-12 + 1974: 33,-12 + 1975: 34,-12 + 1976: 35,-12 + 1977: 36,-12 + 1978: 37,-12 + 1979: 38,-12 + 1980: 39,-12 + 1981: 40,-12 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale @@ -3682,9 +3682,9 @@ entities: 633: -2,14 634: -2,13 635: -2,12 - 1153: 57,-21 - 2237: 15,31 - 2239: 15,33 + 1148: 57,-21 + 2178: 15,31 + 2180: 15,33 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale @@ -3699,47 +3699,47 @@ entities: 993: 12,-43 994: 12,-42 995: 12,-41 - 2639: -4,-52 - 2640: -4,-53 - 2641: -4,-54 - 2642: -4,-55 - 2643: -4,-56 - 2644: -2,-52 - 2645: -3,-52 - 2759: 3,-60 - 2760: 2,-60 - 2761: 1,-60 - 2762: 1,-61 - 2772: 7,-60 - 2788: 3,-56 - 2793: 2,-53 - 2794: 2,-52 - 2931: 6,-44 - 2932: 6,-42 - 2933: 6,-43 - 3012: -18,-69 - 3013: -17,-69 - 3014: -16,-69 - 3015: -15,-69 - 3016: -14,-69 - 3017: -13,-69 - 3018: -12,-69 - 3019: -11,-69 - 3020: -10,-69 + 2574: -4,-52 + 2575: -4,-53 + 2576: -4,-54 + 2577: -4,-55 + 2578: -4,-56 + 2579: -2,-52 + 2580: -3,-52 + 2694: 3,-60 + 2695: 2,-60 + 2696: 1,-60 + 2697: 1,-61 + 2707: 7,-60 + 2723: 3,-56 + 2728: 2,-53 + 2729: 2,-52 + 2866: 6,-44 + 2867: 6,-42 + 2868: 6,-43 + 2947: -18,-69 + 2948: -17,-69 + 2949: -16,-69 + 2950: -15,-69 + 2951: -14,-69 + 2952: -13,-69 + 2953: -12,-69 + 2954: -11,-69 + 2955: -10,-69 - node: color: '#F5DB9E96' id: QuarterTileOverlayGreyscale decals: - 1753: 24,-17 - 1754: 24,-18 - 1755: 24,-19 - 1756: 24,-20 - 1757: 24,-21 + 1695: 24,-17 + 1696: 24,-18 + 1697: 24,-19 + 1698: 24,-20 + 1699: 24,-21 - node: color: '#FFEBAE96' id: QuarterTileOverlayGreyscale decals: - 1731: 18,-20 + 1673: 18,-20 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 @@ -3758,19 +3758,19 @@ entities: 578: -16,-14 579: -16,-13 580: -16,-12 - 2152: 29,-94 - 2153: 29,-93 - 2157: 25,-94 - 2158: 25,-93 - 2183: -9,-10 - 2184: -8,-10 - 2185: -7,-10 - 2186: -6,-10 - 2187: -6,-9 - 2188: -5,-9 - 2189: -4,-9 - 2190: -3,-9 - 2191: -2,-9 + 2093: 29,-94 + 2094: 29,-93 + 2098: 25,-94 + 2099: 25,-93 + 2124: -9,-10 + 2125: -8,-10 + 2126: -7,-10 + 2127: -6,-10 + 2128: -6,-9 + 2129: -5,-9 + 2130: -4,-9 + 2131: -3,-9 + 2132: -2,-9 - node: color: '#474F52FF' id: QuarterTileOverlayGreyscale180 @@ -3782,8 +3782,8 @@ entities: color: '#5299B43A' id: QuarterTileOverlayGreyscale180 decals: - 3402: 34,-41 - 3403: 35,-40 + 3337: 34,-41 + 3338: 35,-40 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 @@ -3805,9 +3805,9 @@ entities: 942: 42,-15 943: 43,-15 944: 41,-15 - 1683: 36,-25 - 1765: 39,-15 - 3316: 38,-15 + 1625: 36,-25 + 1707: 39,-15 + 3251: 38,-15 - node: color: '#9D9D97FF' id: QuarterTileOverlayGreyscale180 @@ -3847,94 +3847,94 @@ entities: color: '#9FED5896' id: QuarterTileOverlayGreyscale180 decals: - 3510: 3,-32 - 3511: 2,-32 + 3445: 3,-32 + 3446: 2,-32 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale180 decals: 207: -31,-17 453: -27,-28 - 3573: -36,-23 - 3574: -35,-23 - 3575: -34,-23 - 3576: -32,-23 - 3577: -31,-23 - 3578: -33,-23 + 3508: -36,-23 + 3509: -35,-23 + 3510: -34,-23 + 3511: -32,-23 + 3512: -31,-23 + 3513: -33,-23 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale180 decals: - 1800: 50,-15 - 1801: 57,-15 - 2517: -24,-34 - 2518: -24,-35 - 2519: -24,-36 - 2520: -24,-37 - 2521: -24,-38 - 2522: -24,-39 - 2524: -25,-39 - 2525: -26,-39 - 2526: -27,-39 - 2527: -28,-39 - 2528: -29,-39 - 3507: 4,-32 + 1742: 50,-15 + 1743: 57,-15 + 2452: -24,-34 + 2453: -24,-35 + 2454: -24,-36 + 2455: -24,-37 + 2456: -24,-38 + 2457: -24,-39 + 2459: -25,-39 + 2460: -26,-39 + 2461: -27,-39 + 2462: -28,-39 + 2463: -29,-39 + 3442: 4,-32 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale180 decals: - 1085: 59,-27 - 1878: 1,-3 - 1879: 2,-3 - 1880: 3,-3 - 1881: 4,-3 - 1882: 5,-3 - 1883: 6,-3 - 1884: 7,-3 - 1885: 8,-3 - 1886: 9,-3 - 1887: 10,-3 - 1888: 11,-3 - 1889: 12,-3 - 1890: 13,-3 - 2132: -54,1 - 2133: -54,0 - 2263: 16,-15 - 2264: 16,-16 - 2265: 16,-17 - 2266: 16,-19 - 2267: 16,-20 - 2268: 16,-18 - 2269: 16,-21 - 2270: 16,-22 - 2271: 16,-23 - 2321: 0,-32 - 2322: 1,-32 - 2324: 7,-32 - 3132: 27,8 - 3133: 27,9 + 1081: 59,-27 + 1820: 1,-3 + 1821: 2,-3 + 1822: 3,-3 + 1823: 4,-3 + 1824: 5,-3 + 1825: 6,-3 + 1826: 7,-3 + 1827: 8,-3 + 1828: 9,-3 + 1829: 10,-3 + 1830: 11,-3 + 1831: 12,-3 + 1832: 13,-3 + 2073: -54,1 + 2074: -54,0 + 2204: 16,-15 + 2205: 16,-16 + 2206: 16,-17 + 2207: 16,-19 + 2208: 16,-20 + 2209: 16,-18 + 2210: 16,-21 + 2211: 16,-22 + 2212: 16,-23 + 2256: 0,-32 + 2257: 1,-32 + 2259: 7,-32 + 3067: 27,8 + 3068: 27,9 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale180 decals: - 2021: -77,-6 - 2022: -76,-6 - 2023: -75,-6 - 2024: -74,-6 - 2025: -73,-6 - 2026: -72,-6 - 2027: -71,-6 - 2028: -70,-6 - 2029: -69,-6 - 2030: -68,-6 - 2031: -67,-6 - 2032: -66,-6 - 2059: 76,-16 - 2060: 77,-16 - 2061: 78,-16 - 2062: 79,-16 - 2425: -78,-6 - 2426: -79,-6 + 1962: -77,-6 + 1963: -76,-6 + 1964: -75,-6 + 1965: -74,-6 + 1966: -73,-6 + 1967: -72,-6 + 1968: -71,-6 + 1969: -70,-6 + 1970: -69,-6 + 1971: -68,-6 + 1972: -67,-6 + 1973: -66,-6 + 2000: 76,-16 + 2001: 77,-16 + 2002: 78,-16 + 2003: 79,-16 + 2360: -78,-6 + 2361: -79,-6 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 @@ -3967,40 +3967,40 @@ entities: 956: 0,-38 957: 0,-39 958: 0,-40 - 1123: 63,-58 - 1124: 62,-58 - 1125: 61,-58 - 1126: 60,-58 - 1127: 57,-58 - 1128: 59,-58 - 1129: 58,-58 - 1130: 56,-58 - 1131: 55,-58 - 2649: 0,-58 - 2650: 1,-58 - 2767: 9,-64 - 2768: 9,-63 - 2776: 5,-64 - 2777: 4,-64 - 2808: 5,-58 - 3021: -10,-71 - 3022: -11,-71 - 3023: -12,-71 - 3024: -13,-71 - 3025: -14,-71 - 3026: -15,-71 - 3027: -16,-71 - 3028: -17,-71 - 3029: -18,-71 - 3045: -3,-68 - 3052: -1,-68 - 3053: 0,-68 - 3057: 1,-68 - 3062: 3,-68 - 3066: 4,-70 - 3067: 4,-68 - 3068: 5,-70 - 3069: 5,-68 + 1118: 63,-58 + 1119: 62,-58 + 1120: 61,-58 + 1121: 60,-58 + 1122: 57,-58 + 1123: 59,-58 + 1124: 58,-58 + 1125: 56,-58 + 1126: 55,-58 + 2584: 0,-58 + 2585: 1,-58 + 2702: 9,-64 + 2703: 9,-63 + 2711: 5,-64 + 2712: 4,-64 + 2743: 5,-58 + 2956: -10,-71 + 2957: -11,-71 + 2958: -12,-71 + 2959: -13,-71 + 2960: -14,-71 + 2961: -15,-71 + 2962: -16,-71 + 2963: -17,-71 + 2964: -18,-71 + 2980: -3,-68 + 2987: -1,-68 + 2988: 0,-68 + 2992: 1,-68 + 2997: 3,-68 + 3001: 4,-70 + 3002: 4,-68 + 3003: 5,-70 + 3004: 5,-68 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 @@ -4016,25 +4016,25 @@ entities: 586: 14,-18 587: 14,-17 588: 14,-16 - 2150: 27,-94 - 2151: 27,-93 - 2155: 31,-94 - 2156: 31,-93 - 2174: 7,-10 - 2175: 6,-10 - 2176: 5,-10 - 2177: 4,-10 - 2178: 4,-9 - 2179: 3,-9 - 2180: 2,-9 - 2181: 1,-9 - 2182: 0,-9 + 2091: 27,-94 + 2092: 27,-93 + 2096: 31,-94 + 2097: 31,-93 + 2115: 7,-10 + 2116: 6,-10 + 2117: 5,-10 + 2118: 4,-10 + 2119: 4,-9 + 2120: 3,-9 + 2121: 2,-9 + 2122: 1,-9 + 2123: 0,-9 - node: color: '#5299B43A' id: QuarterTileOverlayGreyscale270 decals: - 3404: 36,-40 - 3405: 37,-41 + 3339: 36,-40 + 3340: 37,-41 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 @@ -4054,42 +4054,42 @@ entities: 950: 23,-15 951: 22,-15 952: 18,-15 - 1132: 63,-58 - 1133: 62,-58 - 1134: 61,-58 - 1135: 60,-58 - 1136: 59,-58 - 1137: 58,-58 - 1138: 57,-58 - 1139: 56,-58 - 1140: 55,-58 - 1143: 56,-23 - 1751: 26,-18 - 1973: -77,-6 - 1974: -76,-6 - 1975: -75,-6 - 1976: -74,-6 - 1977: -73,-6 - 1978: -72,-6 - 1979: -71,-6 - 1980: -70,-6 - 1981: -69,-6 - 1982: -68,-6 - 1983: -67,-6 - 1984: -66,-6 - 2423: -78,-6 - 2424: -79,-6 - 3711: 12,-32 - 3712: 11,-32 - 3713: 10,-32 + 1127: 63,-58 + 1128: 62,-58 + 1129: 61,-58 + 1130: 60,-58 + 1131: 59,-58 + 1132: 58,-58 + 1133: 57,-58 + 1134: 56,-58 + 1135: 55,-58 + 1138: 56,-23 + 1693: 26,-18 + 1914: -77,-6 + 1915: -76,-6 + 1916: -75,-6 + 1917: -74,-6 + 1918: -73,-6 + 1919: -72,-6 + 1920: -71,-6 + 1921: -70,-6 + 1922: -69,-6 + 1923: -68,-6 + 1924: -67,-6 + 1925: -66,-6 + 2358: -78,-6 + 2359: -79,-6 + 3646: 12,-32 + 3647: 11,-32 + 3648: 10,-32 - node: color: '#79150096' id: QuarterTileOverlayGreyscale270 decals: - 2055: 76,-16 - 2056: 77,-16 - 2057: 78,-16 - 2058: 79,-16 + 1996: 76,-16 + 1997: 77,-16 + 1998: 78,-16 + 1999: 79,-16 - node: color: '#9D9D97FF' id: QuarterTileOverlayGreyscale270 @@ -4130,8 +4130,8 @@ entities: 757: 38,-59 758: 38,-58 759: 38,-57 - 3509: 7,-32 - 3768: 8,-32 + 3444: 7,-32 + 3702: 8,-32 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale270 @@ -4151,106 +4151,106 @@ entities: 503: -18,-30 504: -18,-31 505: -18,-32 - 2471: -18,-15 - 2494: -29,-35 - 2495: -29,-34 - 2496: -29,-33 - 2497: -29,-32 - 2498: -29,-31 - 2499: -29,-30 - 2529: -29,-39 - 2530: -28,-39 - 2531: -27,-39 - 2532: -26,-39 - 2533: -25,-39 - 2534: -24,-39 + 2406: -18,-15 + 2429: -29,-35 + 2430: -29,-34 + 2431: -29,-33 + 2432: -29,-32 + 2433: -29,-31 + 2434: -29,-30 + 2464: -29,-39 + 2465: -28,-39 + 2466: -27,-39 + 2467: -26,-39 + 2468: -25,-39 + 2469: -24,-39 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale270 decals: - 1674: 50,-28 - 1675: 49,-27 - 1678: 50,-27 - 1799: 56,-15 - 1802: 59,-15 - 3508: 6,-32 + 1616: 50,-28 + 1617: 49,-27 + 1620: 50,-27 + 1741: 56,-15 + 1744: 59,-15 + 3443: 6,-32 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale270 decals: - 1862: -3,-3 - 1863: -4,-3 - 1864: -5,-3 - 1865: -6,-3 - 1866: -8,-3 - 1867: -9,-3 - 1868: -10,-3 - 1869: -12,-3 - 1870: -11,-3 - 1871: -13,-3 - 1872: -15,-3 - 1873: -14,-3 - 1931: 14,-20 - 1932: 14,-21 - 1933: 14,-22 - 1934: 14,-23 - 1935: 14,-28 - 1936: 14,-29 - 2134: -62,-6 - 2135: -61,-6 - 2136: -60,-6 - 2137: -59,-6 - 2138: -58,-6 - 2139: -57,-6 - 2140: -56,-6 - 2141: -55,-6 - 2142: -54,-6 - 2301: 13,-32 - 2302: 14,-32 - 2303: 15,-32 - 2304: 16,-32 - 2305: -17,-32 - 2306: -16,-32 - 2307: -15,-32 - 2308: -14,-32 - 2309: -13,-32 - 2310: -12,-32 - 2311: -11,-32 - 2312: -10,-32 - 2313: -9,-32 - 2314: -8,-32 - 2315: -7,-32 - 2316: -6,-32 - 2317: -5,-32 - 2318: -4,-32 - 2319: -3,-32 - 2320: -2,-32 - 2323: 2,-32 - 2482: 51,-12 - 2483: 51,-11 - 2484: 51,-10 - 2485: 51,-9 - 2489: 46,-12 - 3134: 23,8 - 3135: 22,8 - 3136: 21,8 - 3137: 20,8 - 3138: 20,9 - 3139: 19,9 - 3761: 14,-27 - 3762: 14,-26 - 3763: 14,-25 + 1804: -3,-3 + 1805: -4,-3 + 1806: -5,-3 + 1807: -6,-3 + 1808: -8,-3 + 1809: -9,-3 + 1810: -10,-3 + 1811: -12,-3 + 1812: -11,-3 + 1813: -13,-3 + 1814: -15,-3 + 1815: -14,-3 + 1873: 14,-20 + 1874: 14,-21 + 1875: 14,-22 + 1876: 14,-23 + 1877: 14,-28 + 1878: 14,-29 + 2075: -62,-6 + 2076: -61,-6 + 2077: -60,-6 + 2078: -59,-6 + 2079: -58,-6 + 2080: -57,-6 + 2081: -56,-6 + 2082: -55,-6 + 2083: -54,-6 + 2236: 13,-32 + 2237: 14,-32 + 2238: 15,-32 + 2239: 16,-32 + 2240: -17,-32 + 2241: -16,-32 + 2242: -15,-32 + 2243: -14,-32 + 2244: -13,-32 + 2245: -12,-32 + 2246: -11,-32 + 2247: -10,-32 + 2248: -9,-32 + 2249: -8,-32 + 2250: -7,-32 + 2251: -6,-32 + 2252: -5,-32 + 2253: -4,-32 + 2254: -3,-32 + 2255: -2,-32 + 2258: 2,-32 + 2417: 51,-12 + 2418: 51,-11 + 2419: 51,-10 + 2420: 51,-9 + 2424: 46,-12 + 3069: 23,8 + 3070: 22,8 + 3071: 21,8 + 3072: 20,8 + 3073: 20,9 + 3074: 19,9 + 3695: 14,-27 + 3696: 14,-26 + 3697: 14,-25 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale270 decals: - 2048: 75,-12 - 2049: 75,-11 - 2050: 75,-10 - 2051: 75,-9 - 2052: 75,-8 - 2053: 75,-7 - 2054: 75,-6 + 1989: 75,-12 + 1990: 75,-11 + 1991: 75,-10 + 1992: 75,-9 + 1993: 75,-8 + 1994: 75,-7 + 1995: 75,-6 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 @@ -4291,7 +4291,7 @@ entities: 655: 7,35 656: 8,35 657: 9,35 - 2236: 15,32 + 2177: 15,32 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 @@ -4312,28 +4312,28 @@ entities: 972: -2,-37 973: -2,-36 974: -2,-35 - 2646: -4,-58 - 2647: -3,-58 - 2648: -2,-58 - 2763: 2,-64 - 2764: 1,-64 - 2765: 1,-63 - 2774: 7,-64 - 2775: 6,-64 - 2789: 3,-55 - 2790: 3,-54 - 2791: 2,-54 - 2792: 2,-53 - 2807: 7,-58 - 3054: 0,-70 - 3063: 4,-69 + 2581: -4,-58 + 2582: -3,-58 + 2583: -2,-58 + 2698: 2,-64 + 2699: 1,-64 + 2700: 1,-63 + 2709: 7,-64 + 2710: 6,-64 + 2724: 3,-55 + 2725: 3,-54 + 2726: 2,-54 + 2727: 2,-53 + 2742: 7,-58 + 2989: 0,-70 + 2998: 4,-69 - node: color: '#F5DB9E96' id: QuarterTileOverlayGreyscale270 decals: - 1758: 21,-15 - 1759: 20,-15 - 1760: 19,-15 + 1700: 21,-15 + 1701: 20,-15 + 1702: 19,-15 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 @@ -4347,15 +4347,15 @@ entities: 839: -9,-30 840: -8,-30 841: -7,-30 - 2146: 29,-90 - 2147: 29,-91 - 2159: 25,-91 + 2087: 29,-90 + 2088: 29,-91 + 2100: 25,-91 - node: color: '#5299B43A' id: QuarterTileOverlayGreyscale90 decals: - 3406: 35,-43 - 3407: 34,-42 + 3341: 35,-43 + 3342: 34,-42 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 @@ -4367,12 +4367,12 @@ entities: 151: 41,-42 176: 27,-29 184: 29,-28 - 1202: 16,-28 - 1203: 16,-27 - 1693: 39,-23 - 1695: 36,-23 - 1752: 25,-19 - 2567: 36,-35 + 1197: 16,-28 + 1198: 16,-27 + 1635: 39,-23 + 1637: 36,-23 + 1694: 25,-19 + 2502: 36,-35 - node: color: '#9D9D97FF' id: QuarterTileOverlayGreyscale90 @@ -4383,192 +4383,192 @@ entities: id: QuarterTileOverlayGreyscale90 decals: 216: -33,-11 - 2508: -29,-30 - 2509: -28,-30 - 2510: -27,-30 - 2511: -24,-34 - 2512: -24,-35 - 2513: -24,-36 - 2514: -24,-37 - 2515: -24,-38 - 2516: -24,-39 - 3579: -31,-19 - 3580: -32,-19 - 3581: -33,-19 - 3582: -34,-19 + 2443: -29,-30 + 2444: -28,-30 + 2445: -27,-30 + 2446: -24,-34 + 2447: -24,-35 + 2448: -24,-36 + 2449: -24,-37 + 2450: -24,-38 + 2451: -24,-39 + 3514: -31,-19 + 3515: -32,-19 + 3516: -33,-19 + 3517: -34,-19 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale90 decals: 289: 63,-23 - 1676: 48,-28 - 1677: 49,-29 - 1679: 48,-29 + 1618: 48,-28 + 1619: 49,-29 + 1621: 48,-29 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale90 decals: - 1874: -16,-4 - 1875: -16,-5 - 1876: -16,-6 - 1877: -16,-7 - 1895: 4,-1 - 1896: 3,-1 - 1897: 2,-1 - 1898: 2,0 - 1899: 2,1 - 1900: 1,1 - 1910: -14,-1 - 1911: -15,-1 - 1912: -16,-1 - 1913: -17,-1 - 1914: -18,-1 - 1915: 0,3 - 1916: 0,4 - 1917: 0,5 - 1918: 0,6 - 1919: 0,7 - 1920: 0,8 - 1921: 0,9 - 1922: 0,10 - 1937: 13,-30 - 1938: 12,-30 - 1939: 11,-30 - 1941: 10,-30 - 1942: 7,-30 - 1943: 6,-30 - 1944: 5,-30 - 1945: 4,-30 - 1946: 3,-30 - 1947: 2,-30 - 1948: 1,-30 - 1949: -6,-30 - 1950: -5,-30 - 1951: -4,-30 - 1952: -11,-30 - 1953: -12,-30 - 1954: -13,-30 - 1955: -14,-30 - 1956: -15,-30 - 2108: -33,-1 - 2109: -34,-1 - 2110: -35,-1 - 2111: -37,-1 - 2112: -36,-1 - 2113: -38,-1 - 2116: -43,-1 - 2117: -44,-1 - 2143: -54,-6 - 2144: -54,-5 - 2145: -54,-4 - 2272: 16,-25 - 2273: 16,-26 - 2274: 16,-29 - 2275: 16,-30 - 2276: 16,-31 - 2277: 16,-32 - 2331: 10,-1 - 2332: 11,-1 - 2333: 12,-1 - 2334: 13,-1 - 2335: 14,-1 - 2336: 15,-1 - 2337: 16,-1 - 2338: 16,-2 - 2339: 16,-3 - 2340: 16,-4 - 2341: 16,-5 - 2342: 16,-6 - 2343: 16,-7 - 2344: 16,-8 - 2345: 16,-9 - 2346: 16,-10 - 2347: 16,-12 - 2348: 16,-13 - 2349: 9,-1 - 2350: 9,0 - 2351: 9,1 - 2352: 9,2 - 2353: 9,3 - 2354: 9,4 - 2355: 9,5 - 2356: 9,6 - 2476: 46,-12 - 2477: 47,-12 - 2478: 48,-12 - 2479: 49,-12 - 2480: 49,-13 - 2481: 50,-13 - 2486: 51,-9 - 2487: 52,-9 - 2488: 53,-9 - 2490: 45,-13 - 2491: 44,-13 - 2492: 43,-13 - 2493: 42,-13 - 3128: 25,15 - 3129: 26,15 - 3130: 27,15 - 3131: 27,14 - 3140: 17,12 - 3141: 16,12 - 3142: 15,12 - 3143: 14,12 - 3144: 13,12 - 3145: 12,12 - 3146: 11,12 - 3147: 10,12 - 3148: 9,12 - 3149: 9,13 - 3150: 9,14 - 3151: 9,15 - 3152: 9,16 - 3153: 9,17 - 3481: -42,-6 - 3482: -41,-6 - 3483: -40,-6 - 3484: -40,-6 - 3485: -39,-6 - 3486: -38,-6 - 3487: -38,-7 - 3488: -38,-8 - 3489: -38,-9 - 3490: -38,-10 - 3491: -38,-11 - 3492: -38,-12 - 3493: -38,-13 - 3494: -38,-14 - 3767: 8,-30 + 1816: -16,-4 + 1817: -16,-5 + 1818: -16,-6 + 1819: -16,-7 + 1837: 4,-1 + 1838: 3,-1 + 1839: 2,-1 + 1840: 2,0 + 1841: 2,1 + 1842: 1,1 + 1852: -14,-1 + 1853: -15,-1 + 1854: -16,-1 + 1855: -17,-1 + 1856: -18,-1 + 1857: 0,3 + 1858: 0,4 + 1859: 0,5 + 1860: 0,6 + 1861: 0,7 + 1862: 0,8 + 1863: 0,9 + 1864: 0,10 + 1879: 13,-30 + 1880: 12,-30 + 1881: 11,-30 + 1882: 10,-30 + 1883: 7,-30 + 1884: 6,-30 + 1885: 5,-30 + 1886: 4,-30 + 1887: 3,-30 + 1888: 2,-30 + 1889: 1,-30 + 1890: -6,-30 + 1891: -5,-30 + 1892: -4,-30 + 1893: -11,-30 + 1894: -12,-30 + 1895: -13,-30 + 1896: -14,-30 + 1897: -15,-30 + 2049: -33,-1 + 2050: -34,-1 + 2051: -35,-1 + 2052: -37,-1 + 2053: -36,-1 + 2054: -38,-1 + 2057: -43,-1 + 2058: -44,-1 + 2084: -54,-6 + 2085: -54,-5 + 2086: -54,-4 + 2213: 16,-25 + 2214: 16,-26 + 2215: 16,-29 + 2216: 16,-30 + 2217: 16,-31 + 2218: 16,-32 + 2266: 10,-1 + 2267: 11,-1 + 2268: 12,-1 + 2269: 13,-1 + 2270: 14,-1 + 2271: 15,-1 + 2272: 16,-1 + 2273: 16,-2 + 2274: 16,-3 + 2275: 16,-4 + 2276: 16,-5 + 2277: 16,-6 + 2278: 16,-7 + 2279: 16,-8 + 2280: 16,-9 + 2281: 16,-10 + 2282: 16,-12 + 2283: 16,-13 + 2284: 9,-1 + 2285: 9,0 + 2286: 9,1 + 2287: 9,2 + 2288: 9,3 + 2289: 9,4 + 2290: 9,5 + 2291: 9,6 + 2411: 46,-12 + 2412: 47,-12 + 2413: 48,-12 + 2414: 49,-12 + 2415: 49,-13 + 2416: 50,-13 + 2421: 51,-9 + 2422: 52,-9 + 2423: 53,-9 + 2425: 45,-13 + 2426: 44,-13 + 2427: 43,-13 + 2428: 42,-13 + 3063: 25,15 + 3064: 26,15 + 3065: 27,15 + 3066: 27,14 + 3075: 17,12 + 3076: 16,12 + 3077: 15,12 + 3078: 14,12 + 3079: 13,12 + 3080: 12,12 + 3081: 11,12 + 3082: 10,12 + 3083: 9,12 + 3084: 9,13 + 3085: 9,14 + 3086: 9,15 + 3087: 9,16 + 3088: 9,17 + 3416: -42,-6 + 3417: -41,-6 + 3418: -40,-6 + 3419: -40,-6 + 3420: -39,-6 + 3421: -38,-6 + 3422: -38,-7 + 3423: -38,-8 + 3424: -38,-9 + 3425: -38,-10 + 3426: -38,-11 + 3427: -38,-12 + 3428: -38,-13 + 3429: -38,-14 + 3701: 8,-30 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale90 decals: - 1997: -66,-14 - 1998: -67,-14 - 1999: -68,-14 - 2000: -69,-14 - 2001: -70,-14 - 2002: -71,-14 - 2003: -72,-14 - 2004: -73,-14 - 2005: -74,-14 - 2006: -75,-14 - 2007: -76,-14 - 2008: -77,-14 - 2009: -77,10 - 2010: -76,10 - 2011: -75,10 - 2012: -74,10 - 2013: -73,10 - 2014: -72,10 - 2015: -71,10 - 2016: -70,10 - 2017: -69,10 - 2018: -68,10 - 2019: -66,10 - 2020: -65,10 - 2427: -78,10 - 2428: -79,10 + 1938: -66,-14 + 1939: -67,-14 + 1940: -68,-14 + 1941: -69,-14 + 1942: -70,-14 + 1943: -71,-14 + 1944: -72,-14 + 1945: -73,-14 + 1946: -74,-14 + 1947: -75,-14 + 1948: -76,-14 + 1949: -77,-14 + 1950: -77,10 + 1951: -76,10 + 1952: -75,10 + 1953: -74,10 + 1954: -73,10 + 1955: -72,10 + 1956: -71,10 + 1957: -70,10 + 1958: -69,10 + 1959: -68,10 + 1960: -66,10 + 1961: -65,10 + 2362: -78,10 + 2363: -79,10 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 @@ -4604,8 +4604,8 @@ entities: 640: 0,16 641: 0,17 642: 0,18 - 1154: 59,-18 - 2240: 13,31 + 1149: 59,-18 + 2181: 13,31 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 @@ -4625,30 +4625,30 @@ entities: 988: 14,-43 989: 14,-42 990: 14,-41 - 2651: 1,-56 - 2652: 0,-56 - 2653: 0,-55 - 2654: 0,-54 - 2655: 0,-53 - 2656: 0,-52 - 2769: 9,-61 - 2770: 9,-60 - 2773: 5,-60 - 2795: 4,-52 - 2796: 5,-52 - 2797: 6,-52 - 2798: 7,-52 - 2799: 8,-52 - 2800: 9,-52 - 2801: 9,-53 - 2802: 9,-54 - 2803: 9,-55 - 2804: 9,-56 - 2805: 9,-57 - 2806: 9,-58 - 2930: 4,-44 - 3064: 4,-69 - 3065: 4,-70 + 2586: 1,-56 + 2587: 0,-56 + 2588: 0,-55 + 2589: 0,-54 + 2590: 0,-53 + 2591: 0,-52 + 2704: 9,-61 + 2705: 9,-60 + 2708: 5,-60 + 2730: 4,-52 + 2731: 5,-52 + 2732: 6,-52 + 2733: 7,-52 + 2734: 8,-52 + 2735: 9,-52 + 2736: 9,-53 + 2737: 9,-54 + 2738: 9,-55 + 2739: 9,-56 + 2740: 9,-57 + 2741: 9,-58 + 2865: 4,-44 + 2999: 4,-69 + 3000: 4,-70 - node: color: '#F9FFFEFF' id: Remains @@ -4658,67 +4658,67 @@ entities: color: '#FFFFFFFF' id: SpaceStationSign1 decals: - 1112: -4,-2 + 1107: -4,-2 - node: color: '#FFFFFFFF' id: SpaceStationSign2 decals: - 1113: -3,-2 + 1108: -3,-2 - node: color: '#FFFFFFFF' id: SpaceStationSign3 decals: - 1114: -2,-2 + 1109: -2,-2 - node: color: '#FFFFFFFF' id: SpaceStationSign4 decals: - 1115: -1,-2 + 1110: -1,-2 - node: color: '#FFFFFFFF' id: SpaceStationSign5 decals: - 1116: 0,-2 + 1111: 0,-2 - node: color: '#FFFFFFFF' id: SpaceStationSign6 decals: - 1117: 1,-2 + 1112: 1,-2 - node: color: '#FFFFFFFF' id: SpaceStationSign7 decals: - 1118: 2,-2 + 1113: 2,-2 - node: color: '#FFFFFFFF' id: StandClear decals: - 2539: -32,-38 + 2474: -32,-38 - node: color: '#334E6D5A' id: ThreeQuarterTileOverlayGreyscale decals: - 2374: 0,-7 - 2375: -2,-5 + 2309: 0,-7 + 2310: -2,-5 - node: color: '#5299B43A' id: ThreeQuarterTileOverlayGreyscale decals: - 3399: 36,-42 + 3334: 36,-42 - node: color: '#52B4E931' id: ThreeQuarterTileOverlayGreyscale decals: - 2376: 3,-7 - 2379: 1,-5 + 2311: 3,-7 + 2314: 1,-5 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: 359: -11,24 834: 18,-25 - 1669: 48,-27 - 1696: 37,-22 + 1611: 48,-27 + 1638: 37,-22 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale @@ -4730,35 +4730,35 @@ entities: id: ThreeQuarterTileOverlayGreyscale decals: 455: -30,-36 - 3540: -34,-29 + 3475: -34,-29 - node: color: '#D381C934' id: ThreeQuarterTileOverlayGreyscale decals: - 2384: 5,-7 + 2319: 5,-7 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale decals: - 3527: 2,-34 + 3462: 2,-34 - node: color: '#DE3A3A2B' id: ThreeQuarterTileOverlayGreyscale decals: - 2359: -9,-7 + 2294: -9,-7 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale decals: 421: -62,5 1010: 76,-2 - 1149: 57,-17 + 1144: 57,-17 - node: color: '#EFB34131' id: ThreeQuarterTileOverlayGreyscale decals: - 2363: -3,-7 - 2364: -5,-5 + 2298: -3,-7 + 2299: -5,-5 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale @@ -4768,17 +4768,17 @@ entities: color: '#5299B43A' id: ThreeQuarterTileOverlayGreyscale180 decals: - 3398: 35,-41 + 3333: 35,-41 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: 361: -9,23 790: 22,-28 - 1670: 50,-29 - 1687: 42,-25 - 1750: 25,-18 - 2565: 37,-37 + 1612: 50,-29 + 1629: 42,-25 + 1692: 25,-18 + 2500: 37,-37 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale180 @@ -4791,23 +4791,23 @@ entities: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale180 decals: - 3542: -31,-32 + 3477: -31,-32 - node: color: '#D381C934' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2385: 7,-8 + 2320: 7,-8 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale180 decals: 908: 71,-16 - 3526: 7,-37 + 3461: 7,-37 - node: color: '#DE3A3A2B' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2358: -7,-8 + 2293: -7,-8 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale180 @@ -4819,21 +4819,21 @@ entities: id: ThreeQuarterTileOverlayGreyscale180 decals: 368: -1,23 - 1096: 0,-28 - 3788: 1,-26 + 1091: 0,-28 + 3721: 1,-26 - node: color: '#5299B43A' id: ThreeQuarterTileOverlayGreyscale270 decals: - 3396: 36,-41 + 3331: 36,-41 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: 360: -11,23 - 1671: 48,-29 - 2556: 28,-37 - 3432: 39,-50 + 1613: 48,-29 + 2491: 28,-37 + 3367: 39,-50 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale270 @@ -4845,23 +4845,23 @@ entities: id: ThreeQuarterTileOverlayGreyscale270 decals: 454: -30,-39 - 3541: -34,-32 + 3476: -34,-32 - node: color: '#D381C934' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2387: 5,-8 + 2322: 5,-8 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale270 decals: 907: 61,-16 - 3525: 2,-37 + 3460: 2,-37 - node: color: '#DE3A3A2B' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2357: -9,-8 + 2292: -9,-8 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale270 @@ -4873,34 +4873,34 @@ entities: id: ThreeQuarterTileOverlayGreyscale270 decals: 369: -3,23 - 1097: -2,-28 - 3789: -3,-26 + 1092: -2,-28 + 3722: -3,-26 - node: color: '#334E6D5A' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2372: -2,-7 - 2373: 0,-5 + 2307: -2,-7 + 2308: 0,-5 - node: color: '#5299B43A' id: ThreeQuarterTileOverlayGreyscale90 decals: - 3397: 35,-42 + 3332: 35,-42 - node: color: '#52B4E931' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2377: 1,-7 - 2378: 3,-5 + 2312: 1,-7 + 2313: 3,-5 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: 358: -9,24 - 1672: 50,-27 - 1688: 42,-23 - 1697: 39,-22 - 2566: 37,-35 + 1614: 50,-27 + 1630: 42,-23 + 1639: 39,-22 + 2501: 37,-35 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale90 @@ -4912,37 +4912,37 @@ entities: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1163: -20,-16 - 3539: -31,-29 + 1158: -20,-16 + 3474: -31,-29 - node: color: '#D381C934' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2386: 7,-7 + 2321: 7,-7 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 3524: 7,-34 + 3459: 7,-34 - node: color: '#DE3A3A2B' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2360: -7,-7 + 2295: -7,-7 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale90 decals: 420: -57,5 1011: 82,-2 - 1148: 63,-18 - 1150: 59,-17 + 1143: 63,-18 + 1145: 59,-17 - node: color: '#EFB34131' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2365: -5,-7 - 2366: -3,-5 + 2300: -5,-7 + 2301: -3,-5 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale90 @@ -4952,7 +4952,7 @@ entities: color: '#FFFFFFFF' id: VentSmall decals: - 2582: 31,-35 + 2517: 31,-35 - node: color: '#FED83DFF' id: WarnBox @@ -4983,79 +4983,79 @@ entities: color: '#FFFFFFFF' id: WarnBox decals: - 1043: -69,-17 - 1044: -76,-17 - 1045: -67,-10 + 1039: -69,-17 + 1040: -76,-17 + 1041: -67,-10 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleNE decals: - 3320: 42,-18 + 3255: 42,-18 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleSE decals: - 3253: 9,-71 + 3188: 9,-71 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleSW decals: - 3254: -8,-71 + 3189: -8,-71 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 1736: 19,-19 + 1678: 19,-19 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 1743: 21,-21 + 1685: 21,-21 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNE decals: - 1337: 44,-21 - 1338: 46,-21 - 3322: 42,-21 + 1330: 44,-21 + 1331: 46,-21 + 3257: 42,-21 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNW decals: - 1335: 46,-21 - 1336: 44,-21 + 1328: 46,-21 + 1329: 44,-21 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 1104: -3,-30 - 1793: 51,-21 - 2459: -73,-4 - 3466: 13,-77 + 1099: -3,-30 + 1735: 51,-21 + 2394: -73,-4 + 3401: 13,-77 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: 707: 76,-42 - 1103: 1,-30 - 1227: 72,-22 - 1792: 55,-21 - 2433: -79,8 - 2436: -79,-6 - 2457: -69,-4 - 2458: -76,-4 - 3465: 17,-77 + 1098: 1,-30 + 1222: 72,-22 + 1734: 55,-21 + 2368: -79,8 + 2371: -79,-6 + 2392: -69,-4 + 2393: -76,-4 + 3400: 17,-77 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: 447: -41,-10 - 1664: -13,6 - 1791: 51,-17 - 2172: 22,-90 - 2462: -73,8 - 3290: -11,-65 - 3464: 13,-75 + 1606: -13,6 + 1733: 51,-17 + 2113: 22,-90 + 2397: -73,8 + 3225: -11,-65 + 3399: 13,-75 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW @@ -5064,30 +5064,30 @@ entities: 446: -38,-10 706: 76,-40 735: 72,-19 - 1663: -11,6 - 1790: 55,-17 - 2173: 34,-90 - 2432: -79,10 - 2435: -79,-4 - 2460: -69,8 - 2461: -76,8 - 3296: -13,-63 - 3467: 17,-75 + 1605: -11,6 + 1732: 55,-17 + 2114: 34,-90 + 2367: -79,10 + 2370: -79,-4 + 2395: -69,8 + 2396: -76,8 + 3231: -13,-63 + 3402: 17,-75 - node: color: '#FFFFFFFF' id: WarnEndGreyscaleN decals: - 3721: 46,-17 + 3655: 46,-17 - node: color: '#DE3A3A96' id: WarnFullGreyscale decals: - 2241: -2,41 - 2242: -1,41 - 2243: 0,41 - 2244: 1,41 - 2245: 2,41 - 2246: 3,41 + 2182: -2,41 + 2183: -1,41 + 2184: 0,41 + 2185: 1,41 + 2186: 2,41 + 2187: 3,41 - node: color: '#FFFFFFFF' id: WarnLineE @@ -5109,209 +5109,209 @@ entities: 920: 67,-20 921: 67,-19 922: 67,-18 - 1737: 19,-18 - 1738: 19,-17 - 1781: 51,-20 - 1782: 51,-19 - 1783: 51,-18 - 1817: 60,-32 - 1818: 60,-31 - 1819: 60,-30 - 2169: 22,-93 - 2170: 22,-92 - 2171: 22,-91 - 2621: 8,-49 - 2622: 8,-48 - 3287: -11,-67 - 3288: -11,-66 - 3462: 13,-76 + 1679: 19,-18 + 1680: 19,-17 + 1723: 51,-20 + 1724: 51,-19 + 1725: 51,-18 + 1759: 60,-32 + 1760: 60,-31 + 1761: 60,-30 + 2110: 22,-93 + 2111: 22,-92 + 2112: 22,-91 + 2556: 8,-49 + 2557: 8,-48 + 3222: -11,-67 + 3223: -11,-66 + 3397: 13,-76 - node: color: '#334E6DC8' id: WarnLineGreyscaleE decals: - 1434: -7,-17 - 1638: -9,8 + 1380: -7,-17 + 1580: -9,8 - node: color: '#52B4E996' id: WarnLineGreyscaleE decals: - 3377: 42,-24 + 3312: 42,-24 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleE decals: - 1325: 46,-20 - 1326: 46,-19 - 1327: 46,-18 - 1329: 44,-20 - 1330: 44,-19 - 1331: 44,-18 - 1332: 44,-17 - 3011: -10,-75 - 3318: 42,-20 - 3319: 42,-19 + 1319: 46,-20 + 1320: 46,-19 + 1321: 46,-18 + 1322: 44,-20 + 1323: 44,-19 + 1324: 44,-18 + 1325: 44,-17 + 2946: -10,-75 + 3253: 42,-20 + 3254: 42,-19 - node: color: '#334E6DC8' id: WarnLineGreyscaleN decals: - 1435: -8,-12 + 1381: -8,-12 - node: color: '#52B4E996' id: WarnLineGreyscaleN decals: - 1691: 41,-23 - 3317: 38,-22 + 1633: 41,-23 + 3252: 38,-22 - node: color: '#A4610696' id: WarnLineGreyscaleN decals: - 2468: -27,-16 + 2403: -27,-16 - node: color: '#D381C996' id: WarnLineGreyscaleN decals: - 1589: 66,-51 - 1854: 54,-40 + 1531: 66,-51 + 1796: 54,-40 - node: color: '#DE3A3A96' id: WarnLineGreyscaleN decals: - 1460: -11,36 - 1471: -6,36 - 1520: -8,45 - 1521: -14,45 - 1522: -18,45 - 1523: -21,45 - 1524: -24,45 - 2388: -8,27 - 2389: -9,27 + 1402: -11,36 + 1413: -6,36 + 1462: -8,45 + 1463: -14,45 + 1464: -18,45 + 1465: -21,45 + 1466: -24,45 + 2323: -8,27 + 2324: -9,27 - node: color: '#EFB34196' id: WarnLineGreyscaleN decals: - 3244: -7,-68 + 3179: -7,-68 - node: color: '#F5DB9E96' id: WarnLineGreyscaleN decals: - 1761: 19,-25 - 1762: 21,-25 + 1703: 19,-25 + 1704: 21,-25 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN decals: - 1333: 43,-21 - 1334: 45,-21 - 2629: -1,-52 - 2630: 0,-35 - 2631: -1,-35 - 2632: -2,-35 - 2657: 0,-52 - 2658: -2,-52 - 3038: 9,-73 - 3039: 8,-73 - 3040: 3,-73 - 3041: 4,-73 - 3169: 8,16 - 3170: 9,16 - 3248: 3,-66 - 3249: 8,-66 - 3321: 41,-18 + 1326: 43,-21 + 1327: 45,-21 + 2564: -1,-52 + 2565: 0,-35 + 2566: -1,-35 + 2567: -2,-35 + 2592: 0,-52 + 2593: -2,-52 + 2973: 9,-73 + 2974: 8,-73 + 2975: 3,-73 + 2976: 4,-73 + 3104: 8,16 + 3105: 9,16 + 3183: 3,-66 + 3184: 8,-66 + 3256: 41,-18 - node: color: '#334E6DC8' id: WarnLineGreyscaleS decals: - 1432: -14,-18 - 1433: -8,-20 - 2192: -1,-9 + 1378: -14,-18 + 1379: -8,-20 + 2133: -1,-9 - node: color: '#52B4E996' id: WarnLineGreyscaleS decals: - 1689: 40,-25 - 1690: 39,-25 + 1631: 40,-25 + 1632: 39,-25 - node: color: '#A4610696' id: WarnLineGreyscaleS decals: - 2467: -27,-18 + 2402: -27,-18 - node: color: '#D381C996' id: WarnLineGreyscaleS decals: - 1794: 54,-15 - 1795: 53,-15 - 1796: 52,-15 - 1803: 58,-15 - 1804: 66,-16 - 1852: 58,-42 - 1853: 56,-42 + 1736: 54,-15 + 1737: 53,-15 + 1738: 52,-15 + 1745: 58,-15 + 1746: 66,-16 + 1794: 58,-42 + 1795: 56,-42 - node: color: '#DE3A3A96' id: WarnLineGreyscaleS decals: - 1459: -11,43 - 1483: -15,34 - 1515: -19,43 - 1516: -22,43 - 1517: -24,43 - 1518: -15,43 - 1519: -6,43 - 2231: 6,26 - 2232: 4,26 + 1401: -11,43 + 1425: -15,34 + 1457: -19,43 + 1458: -22,43 + 1459: -24,43 + 1460: -15,43 + 1461: -6,43 + 2172: 6,26 + 2173: 4,26 - node: color: '#EFB34196' id: WarnLineGreyscaleS decals: - 1621: -6,6 - 1622: -4,6 + 1563: -6,6 + 1564: -4,6 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 2626: 0,-50 - 2627: -1,-50 - 2628: -2,-50 - 2633: 0,-33 - 2634: -1,-33 - 2635: -2,-33 - 3034: 9,-76 - 3035: 5,-76 - 3036: 4,-76 - 3037: 3,-76 - 3250: 3,-71 - 3251: 4,-71 - 3252: 8,-71 - 3257: -7,-71 - 3258: -6,-71 - 3259: -5,-71 - 3722: 46,-21 - 3723: 45,-21 - 3724: 44,-21 - 3725: 43,-21 - 3726: 42,-21 + 2561: 0,-50 + 2562: -1,-50 + 2563: -2,-50 + 2568: 0,-33 + 2569: -1,-33 + 2570: -2,-33 + 2969: 9,-76 + 2970: 5,-76 + 2971: 4,-76 + 2972: 3,-76 + 3185: 3,-71 + 3186: 4,-71 + 3187: 8,-71 + 3192: -7,-71 + 3193: -6,-71 + 3194: -5,-71 + 3656: 46,-21 + 3657: 45,-21 + 3658: 44,-21 + 3659: 43,-21 + 3660: 42,-21 - node: color: '#EFB34196' id: WarnLineGreyscaleW decals: - 1623: -7,8 + 1565: -7,8 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleW decals: - 1317: 44,-20 - 1318: 44,-19 - 1319: 44,-18 - 1320: 44,-17 - 1321: 46,-20 - 1322: 46,-19 - 1323: 46,-18 - 2540: 75,-15 - 2541: 75,-14 - 2542: 75,-13 - 3010: -8,-75 - 3255: -8,-69 - 3256: -8,-70 + 1312: 44,-20 + 1313: 44,-19 + 1314: 44,-18 + 1315: 44,-17 + 1316: 46,-20 + 1317: 46,-19 + 1318: 46,-18 + 2475: 75,-15 + 2476: 75,-14 + 2477: 75,-13 + 2945: -8,-75 + 3190: -8,-69 + 3191: -8,-70 - node: color: '#FFFFFFFF' id: WarnLineN @@ -5346,56 +5346,56 @@ entities: 780: 39,-54 781: 41,-54 906: 69,-19 - 1039: -73,-17 - 1040: -74,-17 - 1041: -72,-17 - 1042: -71,-17 - 1662: -12,6 - 1680: 50,-29 - 1681: 49,-29 - 1682: 48,-29 - 1732: 22,-21 - 1733: 21,-21 - 1734: 19,-19 - 1735: 18,-19 - 1787: 52,-17 - 1788: 53,-17 - 1789: 54,-17 - 2163: 33,-90 - 2164: 32,-90 - 2165: 31,-90 - 2166: 25,-90 - 2167: 24,-90 - 2168: 23,-90 - 2443: -70,8 - 2444: -71,8 - 2445: -72,8 - 2446: -77,8 - 2447: -78,8 - 2448: -79,8 - 2607: 14,-46 - 2608: 13,-46 - 2609: 12,-46 - 2610: 11,-46 - 2611: 10,-46 - 2612: 9,-46 - 2952: 1,-79 - 2953: 0,-79 - 2954: -1,-79 - 2955: -2,-79 - 2956: -3,-79 - 3171: 18,-87 - 3172: 17,-87 - 3173: 16,-87 - 3174: 15,-87 - 3175: 14,-87 - 3176: 13,-87 - 3177: 12,-87 - 3289: -10,-65 - 3295: -14,-63 - 3459: 14,-75 - 3460: 15,-75 - 3461: 16,-75 + 1035: -73,-17 + 1036: -74,-17 + 1037: -72,-17 + 1038: -71,-17 + 1604: -12,6 + 1622: 50,-29 + 1623: 49,-29 + 1624: 48,-29 + 1674: 22,-21 + 1675: 21,-21 + 1676: 19,-19 + 1677: 18,-19 + 1729: 52,-17 + 1730: 53,-17 + 1731: 54,-17 + 2104: 33,-90 + 2105: 32,-90 + 2106: 31,-90 + 2107: 25,-90 + 2108: 24,-90 + 2109: 23,-90 + 2378: -70,8 + 2379: -71,8 + 2380: -72,8 + 2381: -77,8 + 2382: -78,8 + 2383: -79,8 + 2542: 14,-46 + 2543: 13,-46 + 2544: 12,-46 + 2545: 11,-46 + 2546: 10,-46 + 2547: 9,-46 + 2887: 1,-79 + 2888: 0,-79 + 2889: -1,-79 + 2890: -2,-79 + 2891: -3,-79 + 3106: 18,-87 + 3107: 17,-87 + 3108: 16,-87 + 3109: 15,-87 + 3110: 14,-87 + 3111: 13,-87 + 3112: 12,-87 + 3224: -10,-65 + 3230: -14,-63 + 3394: 14,-75 + 3395: 15,-75 + 3396: 16,-75 - node: color: '#FFFFFFFF' id: WarnLineS @@ -5435,32 +5435,32 @@ entities: 917: 65,-20 918: 65,-19 919: 65,-18 - 1246: 53,-28 - 1739: 21,-17 - 1740: 21,-18 - 1741: 21,-19 - 1742: 21,-20 - 1778: 55,-20 - 1779: 55,-19 - 1780: 55,-18 - 1810: 53,-27 - 2160: 34,-93 - 2161: 34,-92 - 2162: 34,-91 - 2406: -8,-54 - 2431: -79,9 - 2434: -79,-5 - 2535: -30,-38 - 2536: -30,-37 - 2537: -30,-36 - 2538: -30,-39 - 2619: 8,-49 - 2620: 8,-48 - 3291: -13,-67 - 3292: -13,-66 - 3293: -13,-65 - 3294: -13,-64 - 3463: 17,-76 + 1241: 53,-28 + 1681: 21,-17 + 1682: 21,-18 + 1683: 21,-19 + 1684: 21,-20 + 1720: 55,-20 + 1721: 55,-19 + 1722: 55,-18 + 1752: 53,-27 + 2101: 34,-93 + 2102: 34,-92 + 2103: 34,-91 + 2341: -8,-54 + 2366: -79,9 + 2369: -79,-5 + 2470: -30,-38 + 2471: -30,-37 + 2472: -30,-36 + 2473: -30,-39 + 2554: 8,-49 + 2555: 8,-48 + 3226: -13,-67 + 3227: -13,-66 + 3228: -13,-65 + 3229: -13,-64 + 3398: 17,-76 - node: color: '#FFFFFFFF' id: WarnLineW @@ -5502,185 +5502,185 @@ entities: 782: 41,-52 783: 39,-52 905: 69,-22 - 1046: -33,3 - 1047: -32,3 - 1048: -31,3 - 1100: -1,-30 - 1101: 0,-30 - 1102: -2,-30 - 1105: 0,-25 - 1106: -1,-25 - 1107: -2,-25 - 1108: -3,-25 - 1109: 1,-25 - 1205: 76,-26 - 1206: 77,-26 - 1207: 78,-26 - 1208: 79,-26 - 1209: 80,-26 - 1210: 82,-26 - 1211: 81,-26 - 1226: 71,-22 - 1784: 54,-21 - 1785: 53,-21 - 1786: 52,-21 - 2437: -71,-4 - 2438: -72,-4 - 2439: -70,-4 - 2440: -78,-4 - 2441: -79,-4 - 2442: -77,-4 - 2613: 14,-46 - 2614: 13,-46 - 2615: 12,-46 - 2616: 11,-46 - 2617: 10,-46 - 2618: 9,-46 - 2947: -10,-63 - 2948: -11,-63 - 2949: -12,-63 - 2950: -13,-63 - 2951: -14,-63 - 3178: 13,-84 - 3179: 14,-84 - 3180: 15,-84 - 3181: 16,-84 - 3182: 17,-84 - 3183: 18,-84 - 3456: 14,-77 - 3457: 15,-77 - 3458: 16,-77 + 1042: -33,3 + 1043: -32,3 + 1044: -31,3 + 1095: -1,-30 + 1096: 0,-30 + 1097: -2,-30 + 1100: 0,-25 + 1101: -1,-25 + 1102: -2,-25 + 1103: -3,-25 + 1104: 1,-25 + 1200: 76,-26 + 1201: 77,-26 + 1202: 78,-26 + 1203: 79,-26 + 1204: 80,-26 + 1205: 82,-26 + 1206: 81,-26 + 1221: 71,-22 + 1726: 54,-21 + 1727: 53,-21 + 1728: 52,-21 + 2372: -71,-4 + 2373: -72,-4 + 2374: -70,-4 + 2375: -78,-4 + 2376: -79,-4 + 2377: -77,-4 + 2548: 14,-46 + 2549: 13,-46 + 2550: 12,-46 + 2551: 11,-46 + 2552: 10,-46 + 2553: 9,-46 + 2882: -10,-63 + 2883: -11,-63 + 2884: -12,-63 + 2885: -13,-63 + 2886: -14,-63 + 3113: 13,-84 + 3114: 14,-84 + 3115: 15,-84 + 3116: 16,-84 + 3117: 17,-84 + 3118: 18,-84 + 3391: 14,-77 + 3392: 15,-77 + 3393: 16,-77 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 3558: -31,-25 - 3774: 12,-26 + 3493: -31,-25 + 3707: 12,-26 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 3561: -34,-25 - 3781: 6,-26 + 3496: -34,-25 + 3714: 6,-26 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: - 2588: 12,-37 - 3775: 12,-27 + 2523: 12,-37 + 3708: 12,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: - 2589: 10,-37 - 3780: 6,-27 + 2524: 10,-37 + 3713: 6,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinEndN decals: - 3770: 9,-25 + 3704: 9,-25 - node: color: '#FFFFFFFF' id: WoodTrimThinEndS decals: - 3769: 9,-28 + 3703: 9,-28 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: - 3787: 9,-26 + 3720: 9,-26 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: - 3786: 9,-26 + 3719: 9,-26 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: - 3785: 9,-27 + 3718: 9,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 3784: 9,-27 + 3717: 9,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 1272: -8,15 - 1282: 11,-19 - 1283: 11,-18 - 1284: 11,-17 - 1285: 11,-16 - 1286: 11,-15 - 1287: 11,-14 - 1288: 11,-13 - 3327: 12,-36 - 3555: -31,-28 - 3556: -31,-27 - 3557: -31,-26 + 1267: -8,15 + 1277: 11,-19 + 1278: 11,-18 + 1279: 11,-17 + 1280: 11,-16 + 1281: 11,-15 + 1282: 11,-14 + 1283: 11,-13 + 3262: 12,-36 + 3490: -31,-28 + 3491: -31,-27 + 3492: -31,-26 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 1277: 16,37 - 1278: 15,37 - 1279: 14,37 - 1280: 13,37 - 1281: 12,37 - 1289: 11,-13 - 1290: 10,-13 - 1291: 9,-13 - 1292: 8,-13 - 1293: 7,-13 - 1294: 6,-13 - 1295: 5,-13 - 1766: 51,-38 - 1767: 52,-38 - 1768: 53,-38 - 1769: 54,-38 - 1770: 55,-38 - 1771: 56,-38 - 1772: 57,-38 - 3551: -34,-29 - 3552: -33,-29 - 3553: -32,-29 - 3554: -31,-29 - 3559: -32,-25 - 3560: -33,-25 - 3771: 10,-26 - 3772: 11,-26 - 3782: 7,-26 - 3783: 8,-26 + 1272: 16,37 + 1273: 15,37 + 1274: 14,37 + 1275: 13,37 + 1276: 12,37 + 1284: 11,-13 + 1285: 10,-13 + 1286: 9,-13 + 1287: 8,-13 + 1288: 7,-13 + 1289: 6,-13 + 1290: 5,-13 + 1708: 51,-38 + 1709: 52,-38 + 1710: 53,-38 + 1711: 54,-38 + 1712: 55,-38 + 1713: 56,-38 + 1714: 57,-38 + 3486: -34,-29 + 3487: -33,-29 + 3488: -32,-29 + 3489: -31,-29 + 3494: -32,-25 + 3495: -33,-25 + 3705: 10,-26 + 3706: 11,-26 + 3715: 7,-26 + 3716: 8,-26 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 1273: -7,16 - 1274: -6,16 - 1275: -5,16 - 1276: -4,16 - 1454: -12,53 - 1455: -13,53 - 1456: -14,53 - 1457: -15,53 - 1458: -16,53 - 2590: 11,-37 - 3776: 11,-27 - 3777: 10,-27 - 3778: 8,-27 - 3779: 7,-27 + 1268: -7,16 + 1269: -6,16 + 1270: -5,16 + 1271: -4,16 + 1396: -12,53 + 1397: -13,53 + 1398: -14,53 + 1399: -15,53 + 1400: -16,53 + 2525: 11,-37 + 3709: 11,-27 + 3710: 10,-27 + 3711: 8,-27 + 3712: 7,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 3184: 32,-1 - 3185: 32,0 - 3328: 10,-36 - 3562: -34,-28 - 3563: -34,-27 - 3564: -34,-26 + 3119: 32,-1 + 3120: 32,0 + 3263: 10,-36 + 3497: -34,-28 + 3498: -34,-27 + 3499: -34,-26 - node: color: '#FFFFFFFF' id: bushsnowa2 @@ -5700,7 +5700,7 @@ entities: color: '#A4610606' id: splatter decals: - 1204: 34.46607,8.395077 + 1199: 34.46607,8.395077 type: DecalGrid - version: 2 data: @@ -7293,6 +7293,7 @@ entities: 0: 65535 20,-5: 0: 29431 + 2: 8 21,-8: 0: 65535 21,-7: @@ -7540,12 +7541,16 @@ entities: 0: 65535 21,-4: 0: 13104 + 2: 52416 21,-3: 0: 12595 + 2: 204 21,-2: 0: 13105 + 2: 52416 21,-1: 0: 51 + 2: 204 16,-19: 0: 63244 16,-18: @@ -8430,8 +8435,8 @@ entities: id: docking46345 localAnchorB: -0.5,-1 localAnchorA: -66.5,22 - damping: 42.40093 - stiffness: 380.58987 + damping: 42.40094 + stiffness: 380.58997 type: Joint - type: OccluderTree - type: Shuttle @@ -8450,13 +8455,13 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAA== -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,0: ind: 0,0 - tiles: ZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== index: 1 type: MapGrid - type: Broadphase @@ -8482,8 +8487,8 @@ entities: id: docking46345 localAnchorB: -0.5,-1 localAnchorA: -66.5,22 - damping: 42.40093 - stiffness: 380.58987 + damping: 42.40094 + stiffness: 380.58997 type: Joint - type: OccluderTree - type: Shuttle @@ -10135,6 +10140,9 @@ entities: - pos: 16.5,13.5 parent: 8364 type: Transform + - links: + - 27664 + type: DeviceLinkSink - uid: 6413 components: - name: Dorm 5 @@ -10142,6 +10150,9 @@ entities: - pos: 12.5,13.5 parent: 8364 type: Transform + - links: + - 27663 + type: DeviceLinkSink - uid: 6414 components: - name: Dorm 4 @@ -10149,6 +10160,9 @@ entities: - pos: 7.5,14.5 parent: 8364 type: Transform + - links: + - 27662 + type: DeviceLinkSink - uid: 6415 components: - name: Dorm 3 @@ -10156,6 +10170,9 @@ entities: - pos: 7.5,11.5 parent: 8364 type: Transform + - links: + - 27661 + type: DeviceLinkSink - uid: 6416 components: - name: Dorm 2 @@ -10163,6 +10180,9 @@ entities: - pos: 7.5,8.5 parent: 8364 type: Transform + - links: + - 27660 + type: DeviceLinkSink - uid: 6417 components: - name: Dorm 1 @@ -10170,6 +10190,9 @@ entities: - pos: 7.5,5.5 parent: 8364 type: Transform + - links: + - 27659 + type: DeviceLinkSink - uid: 7533 components: - name: Bathroom @@ -10478,16 +10501,18 @@ entities: type: Transform - proto: AirlockChapelGlassLocked entities: - - uid: 10764 + - uid: 26881 components: - - name: Crematorium - type: MetaData - - pos: 62.5,0.5 + - pos: 67.5,2.5 parent: 8364 type: Transform - - uid: 26881 +- proto: AirlockChapelLocked + entities: + - uid: 10764 components: - - pos: 67.5,2.5 + - name: Chaplain Crematorium + type: MetaData + - pos: 62.5,0.5 parent: 8364 type: Transform - proto: AirlockChemistryLocked @@ -11627,7 +11652,7 @@ entities: - dockJointId: docking46345 dockedWith: 21828 type: Docking - - SecondsUntilStateChange: -65500.816 + - SecondsUntilStateChange: -66341.336 changeAirtight: False state: Opening type: Door @@ -11651,7 +11676,7 @@ entities: - dockJointId: docking46345 dockedWith: 562 type: Docking - - SecondsUntilStateChange: -65500.816 + - SecondsUntilStateChange: -66341.336 changeAirtight: False state: Opening type: Door @@ -16151,6 +16176,13 @@ entities: pos: -9.5,47.5 parent: 8364 type: Transform +- proto: BodyBag_Folded + entities: + - uid: 27686 + components: + - pos: 60.576424,0.7512084 + parent: 8364 + type: Transform - proto: BookAtmosAirAlarms entities: - uid: 21115 @@ -64519,6 +64551,53 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 27673 + components: + - pos: 8.5,-80.5 + parent: 8364 + type: Transform + - enabled: True + type: AmbientSound + - uid: 27674 + components: + - pos: 7.5,-80.5 + parent: 8364 + type: Transform + - enabled: True + type: AmbientSound + - uid: 27675 + components: + - pos: 6.5,-80.5 + parent: 8364 + type: Transform + - enabled: True + type: AmbientSound + - uid: 27676 + components: + - pos: -0.5,-79.5 + parent: 8364 + type: Transform + - enabled: True + type: AmbientSound + - uid: 27677 + components: + - pos: -0.5,-78.5 + parent: 8364 + type: Transform + - uid: 27678 + components: + - pos: -0.5,-77.5 + parent: 8364 + type: Transform + - enabled: True + type: AmbientSound + - uid: 27679 + components: + - pos: -0.5,-76.5 + parent: 8364 + type: Transform + - enabled: True + type: AmbientSound - proto: CableMVStack entities: - uid: 1697 @@ -71664,6 +71743,16 @@ entities: pos: 41.5,-17.5 parent: 8364 type: Transform + - uid: 27680 + components: + - pos: 0.5,28.5 + parent: 8364 + type: Transform + - uid: 27681 + components: + - pos: 1.5,28.5 + parent: 8364 + type: Transform - proto: ChairOfficeLight entities: - uid: 5220 @@ -77020,13 +77109,6 @@ entities: - pos: 66.39981,-80.5017 parent: 8364 type: Transform -- proto: ClothingShoesBootsPerformer - entities: - - uid: 5009 - components: - - pos: 25.47079,17.459995 - parent: 8364 - type: Transform - proto: ClothingShoesBootsWork entities: - uid: 11558 @@ -77076,13 +77158,6 @@ entities: - pos: 1.4697213,-22.60485 parent: 8364 type: Transform -- proto: ClothingUniformJumpskirtPerformer - entities: - - uid: 5010 - components: - - pos: 25.486416,17.491245 - parent: 8364 - type: Transform - proto: ClothingUniformJumpsuitEngineeringHazard entities: - uid: 1623 @@ -78372,6 +78447,28 @@ entities: - 0 - 0 type: EntityStorage +- proto: CrateCoffin + entities: + - uid: 21986 + components: + - pos: 74.5,5.5 + parent: 8364 + type: Transform + - uid: 27682 + components: + - pos: 73.5,5.5 + parent: 8364 + type: Transform + - uid: 27683 + components: + - pos: 73.5,1.5 + parent: 8364 + type: Transform + - uid: 27684 + components: + - pos: 73.5,2.5 + parent: 8364 + type: Transform - proto: CrateEmergencyRadiation entities: - uid: 19055 @@ -130911,6 +131008,11 @@ entities: - pos: 65.5,-53.5 parent: 8364 type: Transform + - uid: 27685 + components: + - pos: 65.50084,1.5970671 + parent: 8364 + type: Transform - proto: HarmonicaInstrument entities: - uid: 26569 @@ -131710,28 +131812,6 @@ entities: - pos: 63.59359,1.9265842 parent: 8364 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - containers: cellslot_cell_container: !type:ContainerSlot showEnts: False @@ -131764,28 +131844,6 @@ entities: - pos: 20.577366,3.8552704 parent: 8364 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - containers: cellslot_cell_container: !type:ContainerSlot showEnts: False @@ -131803,28 +131861,6 @@ entities: - pos: 27.55192,-19.472286 parent: 8364 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - containers: cellslot_cell_container: !type:ContainerSlot showEnts: False @@ -131840,28 +131876,6 @@ entities: - pos: 8.514107,-15.335099 parent: 8364 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - containers: cellslot_cell_container: !type:ContainerSlot showEnts: False @@ -131897,28 +131911,6 @@ entities: - pos: 12.51148,39.935867 parent: 8364 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - containers: cellslot_cell_container: !type:ContainerSlot showEnts: False @@ -131934,28 +131926,6 @@ entities: - pos: -5.4745197,14.875931 parent: 8364 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - containers: cellslot_cell_container: !type:ContainerSlot showEnts: False @@ -131971,28 +131941,6 @@ entities: - pos: -11.396871,17.955116 parent: 8364 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - containers: cellslot_cell_container: !type:ContainerSlot showEnts: False @@ -132023,28 +131971,6 @@ entities: - pos: 61.465347,-10.029866 parent: 8364 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - containers: cellslot_cell_container: !type:ContainerSlot showEnts: False @@ -132060,28 +131986,6 @@ entities: - pos: 57.47965,-10.061116 parent: 8364 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - containers: cellslot_cell_container: !type:ContainerSlot showEnts: False @@ -132097,28 +132001,6 @@ entities: - pos: -57.50557,-0.1837722 parent: 8364 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - containers: cellslot_cell_container: !type:ContainerSlot showEnts: False @@ -132134,28 +132016,6 @@ entities: - pos: -57.52329,-8.160038 parent: 8364 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - containers: cellslot_cell_container: !type:ContainerSlot showEnts: False @@ -137170,11 +137030,6 @@ entities: - pos: 9.5,30.5 parent: 8364 type: Transform - - uid: 21986 - components: - - pos: 74.5,5.5 - parent: 8364 - type: Transform - uid: 21987 components: - pos: 73.5,0.5 @@ -150607,6 +150462,66 @@ entities: 11334: - Pressed: Toggle type: DeviceLinkSource + - uid: 27659 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 8364 + type: Transform + - linkedPorts: + 6417: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 27660 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,9.5 + parent: 8364 + type: Transform + - linkedPorts: + 6416: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 27661 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,12.5 + parent: 8364 + type: Transform + - linkedPorts: + 6415: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 27662 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,15.5 + parent: 8364 + type: Transform + - linkedPorts: + 6414: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 27663 + components: + - rot: 3.141592653589793 rad + pos: 13.5,13.5 + parent: 8364 + type: Transform + - linkedPorts: + 6413: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 27664 + components: + - rot: 3.141592653589793 rad + pos: 17.5,13.5 + parent: 8364 + type: Transform + - linkedPorts: + 6412: + - Pressed: DoorBolt + type: DeviceLinkSource - proto: SignalSwitch entities: - uid: 8784 @@ -151407,6 +151322,54 @@ entities: - pos: 2.5,-72.5 parent: 8364 type: Transform +- proto: SignRedFive + entities: + - uid: 27669 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,13.5 + parent: 8364 + type: Transform +- proto: SignRedFour + entities: + - uid: 27668 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,15.5 + parent: 8364 + type: Transform +- proto: SignRedOne + entities: + - uid: 27665 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,6.5 + parent: 8364 + type: Transform +- proto: SignRedSix + entities: + - uid: 27670 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,13.5 + parent: 8364 + type: Transform +- proto: SignRedThree + entities: + - uid: 27667 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,12.5 + parent: 8364 + type: Transform +- proto: SignRedTwo + entities: + - uid: 27666 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,9.5 + parent: 8364 + type: Transform - proto: SignRND entities: - uid: 11318 @@ -153701,6 +153664,18 @@ entities: - pos: 30.5,-0.5 parent: 8364 type: Transform +- proto: SpawnPointBorg + entities: + - uid: 27671 + components: + - pos: 61.5,-22.5 + parent: 8364 + type: Transform + - uid: 27672 + components: + - pos: 61.5,-20.5 + parent: 8364 + type: Transform - proto: SpawnPointBotanist entities: - uid: 10532 @@ -159277,6 +159252,31 @@ entities: - pos: 59.5,-30.5 parent: 8364 type: Transform +- proto: TegCenter + entities: + - uid: 5009 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-75.5 + parent: 8364 + type: Transform +- proto: TegCirculator + entities: + - uid: 5010 + components: + - pos: 16.5,-75.5 + parent: 8364 + type: Transform + - color: '#FF3300FF' + type: PointLight + - uid: 27658 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-75.5 + parent: 8364 + type: Transform + - color: '#FF3300FF' + type: PointLight - proto: TelecomServer entities: - uid: 8908 diff --git a/Resources/Maps/cluster.yml b/Resources/Maps/cluster.yml index 5df1931b6b6..c58e130f8c5 100644 --- a/Resources/Maps/cluster.yml +++ b/Resources/Maps/cluster.yml @@ -1,43 +1,43 @@ meta: - format: 5 + format: 6 postmapinit: false tilemap: 0: Space 2: FloorArcadeBlue2 - 15: FloorBar - 18: FloorBlueCircuit - 19: FloorBoxing - 21: FloorCarpetClown - 26: FloorDark - 27: FloorDarkDiagonal - 30: FloorDarkMini - 31: FloorDarkMono - 33: FloorDarkPavement - 38: FloorEighties - 39: FloorElevatorShaft - 41: FloorFreezer - 42: FloorGlass - 45: FloorGrassDark - 52: FloorHydro - 54: FloorLaundry - 55: FloorLino - 58: FloorMime - 63: FloorRGlass - 64: FloorReinforced - 67: FloorShowroom - 75: FloorSteel - 78: FloorSteelDiagonal - 81: FloorSteelHerringbone - 83: FloorSteelMono - 87: FloorTechMaint - 91: FloorWhite - 92: FloorWhiteDiagonal - 94: FloorWhiteHerringbone - 95: FloorWhiteMini - 96: FloorWhiteMono - 101: FloorWood - 103: Lattice - 104: Plating + 11: FloorBar + 14: FloorBlueCircuit + 15: FloorBoxing + 17: FloorCarpetClown + 22: FloorDark + 23: FloorDarkDiagonal + 26: FloorDarkMini + 27: FloorDarkMono + 29: FloorDarkPavement + 34: FloorEighties + 35: FloorElevatorShaft + 37: FloorFreezer + 38: FloorGlass + 41: FloorGrassDark + 48: FloorHydro + 50: FloorLaundry + 51: FloorLino + 54: FloorMime + 59: FloorRGlass + 60: FloorReinforced + 63: FloorShowroom + 71: FloorSteel + 74: FloorSteelDiagonal + 77: FloorSteelHerringbone + 79: FloorSteelMono + 83: FloorTechMaint + 87: FloorWhite + 88: FloorWhiteDiagonal + 90: FloorWhiteHerringbone + 91: FloorWhiteMini + 92: FloorWhiteMono + 97: FloorWood + 99: Lattice + 100: Plating entities: - proto: "" entities: @@ -50,139 +50,184 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: WwAAAFsAAAFbAAABWwAAAVsAAABbAAADaAAAAEsAAAJLAAABSwAAA2gAAABoAAAAaAAAAGgAAAAaAAAAGgAAAlsAAAJcAAABXAAAAFwAAANcAAACWwAAAmgAAABLAAAASwAAAksAAANLAAAASwAAAEsAAAFLAAAASwAAAksAAAJbAAADXAAAA1wAAABcAAACXAAAA1sAAANbAAADSwAAAz8AAABLAAADSwAAAEsAAAFLAAACSwAAAEsAAANLAAAAWwAAA1sAAANbAAADWwAAAlsAAAJbAAABaAAAAEsAAANLAAACSwAAAksAAANLAAADSwAAAEsAAAFLAAADSwAAAWgAAABoAAAAaAAAAFsAAAFbAAACaAAAAGgAAABLAAADSwAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAACZQAAAmUAAAJlAAABZQAAAGUAAABoAAAASwAAAEsAAAJLAAAAaAAAAEsAAANLAAACaAAAAEsAAAJLAAACZQAAAGUAAANlAAADZQAAAmUAAAJlAAADaAAAAEsAAAM/AAAASwAAAGgAAABLAAABSwAAA2gAAABLAAADSwAAA2UAAABlAAABZQAAAWUAAAFlAAABZQAAAmgAAABLAAACSwAAA0sAAAJoAAAAaAAAAEsAAAJoAAAAaAAAAEsAAAEPAAACDwAAAw8AAAAPAAACDwAAAg8AAAAPAAACSwAAAEsAAAJLAAABaAAAAEsAAANLAAACSwAAAUsAAABLAAAAZQAAAWUAAAFlAAAADwAAAA8AAAEPAAADDwAAAUsAAAM/AAAASwAAA2gAAABLAAAASwAAA0sAAAJLAAABSwAAAmUAAABlAAABZQAAAg8AAAFlAAACZQAAAmgAAABLAAACSwAAA0sAAANoAAAASwAAAksAAANLAAAASwAAA0sAAAFlAAAAZQAAA2UAAAAPAAAAZQAAAGgAAABoAAAASwAAAUsAAABLAAABaAAAAEsAAAJLAAADaAAAAGgAAAAaAAACDwAAAg8AAAAPAAACDwAAAWgAAABoAAAASwAAAksAAAJLAAADSwAAAWgAAABLAAADSwAAAWgAAAAaAAACGgAAAQ8AAAEPAAACDwAAAmgAAABoAAAASwAAAEsAAAJLAAADPwAAAEsAAAJLAAAASwAAAEsAAAAaAAACGgAAAxoAAAJLAAADSwAAA0sAAAFLAAADSwAAAksAAAFLAAACSwAAAUsAAAFLAAABSwAAAUsAAABLAAACGgAAARoAAAIaAAAASwAAAD8AAABLAAACSwAAA0sAAAE/AAAASwAAA0sAAABLAAABSwAAAmgAAABLAAAASwAAA2gAAAAaAAAAGgAAAg== + tiles: VwAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAAAVwAAAAADZAAAAAAARwAAAAACRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAACVwAAAAACWAAAAAABWAAAAAAAWAAAAAADWAAAAAACVwAAAAACZAAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAACVwAAAAADWAAAAAADWAAAAAAAWAAAAAACWAAAAAADVwAAAAADVwAAAAADRwAAAAADOwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAACVwAAAAABZAAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAADRwAAAAADRwAAAAAARwAAAAABRwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABVwAAAAACZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAACYQAAAAACYQAAAAABYQAAAAAAYQAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAARwAAAAACRwAAAAACYQAAAAAAYQAAAAADYQAAAAADYQAAAAACYQAAAAACYQAAAAADZAAAAAAARwAAAAADOwAAAAAARwAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAARwAAAAADRwAAAAADYQAAAAAAYQAAAAABYQAAAAABYQAAAAABYQAAAAABYQAAAAACZAAAAAAARwAAAAACRwAAAAADRwAAAAACZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAARwAAAAABCwAAAAACCwAAAAADCwAAAAAACwAAAAACCwAAAAACCwAAAAAACwAAAAACRwAAAAAARwAAAAACRwAAAAABZAAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAAAYQAAAAABYQAAAAABYQAAAAAACwAAAAAACwAAAAABCwAAAAADCwAAAAABRwAAAAADOwAAAAAARwAAAAADZAAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAACYQAAAAAAYQAAAAABYQAAAAACCwAAAAABYQAAAAACYQAAAAACZAAAAAAARwAAAAACRwAAAAADRwAAAAADZAAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAADRwAAAAABYQAAAAAAYQAAAAADYQAAAAAACwAAAAAAYQAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAABZAAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAFgAAAAACCwAAAAACCwAAAAAACwAAAAACCwAAAAABZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAABZAAAAAAARwAAAAADRwAAAAABZAAAAAAAFgAAAAACFgAAAAABCwAAAAABCwAAAAACCwAAAAACZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAADOwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAAAFgAAAAACFgAAAAADFgAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAACFgAAAAABFgAAAAACFgAAAAAARwAAAAAAOwAAAAAARwAAAAACRwAAAAADRwAAAAABOwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAACZAAAAAAARwAAAAAARwAAAAADZAAAAAAAFgAAAAAAFgAAAAAC + version: 6 -1,0: ind: -1,0 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAABLAAACaAAAAGgAAABoAAAAaAAAAEsAAANLAAAASwAAAksAAAFLAAADSwAAAksAAANLAAADSwAAAksAAANLAAABSwAAAmgAAAApAAAAKQAAAGgAAABLAAACSwAAAksAAAFLAAABSwAAAUsAAAFLAAABSwAAAUsAAAFLAAABPwAAAEsAAAMpAAAAKQAAACkAAAApAAAASwAAAksAAAJLAAADSwAAAksAAAFLAAAASwAAA0sAAABLAAABSwAAA0sAAAFLAAABaAAAACkAAAApAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAACSwAAAmgAAABoAAAAaAAAAGgAAABcAAABXAAAA2gAAABbAAAAWwAAA2AAAANcAAACXAAAA2gAAABLAAAASwAAAEsAAAJoAAAAZQAAAmUAAANlAAACXAAAAlwAAAJoAAAAWwAAAlsAAAJgAAADXAAAAVwAAAJoAAAASwAAAD8AAABLAAABaAAAAGUAAAJlAAABZQAAAmAAAANgAAADaAAAAFsAAAJbAAABaAAAAGAAAAFgAAAAaAAAAEsAAABLAAACSwAAAWgAAABlAAADZQAAA2UAAAJbAAADWwAAAFsAAANbAAABWwAAAmgAAABbAAABWwAAAVsAAAJLAAACSwAAAUsAAAMPAAADDwAAAw8AAAEPAAABWwAAAFsAAAJbAAAAWwAAAVsAAAFgAAABWwAAAlsAAABbAAAASwAAAj8AAABLAAACDwAAAQ8AAAEPAAADDwAAAFsAAAJbAAAAWwAAAlsAAANbAAAAYAAAAlsAAAFbAAABWwAAAEsAAAFLAAAASwAAA2gAAABlAAACZQAAAg8AAABbAAADWwAAA1sAAANbAAABWwAAAmgAAABbAAAAWwAAAFsAAAFLAAADSwAAAEsAAAFoAAAAaAAAAGUAAAIPAAAAWwAAAWgAAABoAAAAYAAAAmgAAABoAAAAYAAAAGAAAAFoAAAASwAAAUsAAAFLAAABSwAAAGgAAABoAAAADwAAA1sAAAJoAAAAXwAAA18AAAFfAAABXwAAAV8AAAJfAAADaAAAAEsAAAE/AAAASwAAA0sAAABLAAAAaAAAAGgAAABbAAAAaAAAAF8AAABfAAACXwAAAF8AAANfAAAAXwAAAmgAAABLAAABSwAAAksAAABLAAACSwAAAEsAAAJLAAAAWwAAAGAAAAJfAAABXwAAAV8AAABfAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAABSwAAAz8AAABLAAACSwAAAQ== + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAACRwAAAAADRwAAAAADRwAAAAACRwAAAAADRwAAAAABRwAAAAACZAAAAAAAJQAAAAAAJQAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAABOwAAAAAARwAAAAADJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAABZAAAAAAAJQAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAWAAAAAABWAAAAAADZAAAAAAAVwAAAAAAVwAAAAADXAAAAAADWAAAAAACWAAAAAADZAAAAAAARwAAAAAARwAAAAAARwAAAAACZAAAAAAAYQAAAAACYQAAAAADYQAAAAACWAAAAAACWAAAAAACZAAAAAAAVwAAAAACVwAAAAACXAAAAAADWAAAAAABWAAAAAACZAAAAAAARwAAAAAAOwAAAAAARwAAAAABZAAAAAAAYQAAAAACYQAAAAABYQAAAAACXAAAAAADXAAAAAADZAAAAAAAVwAAAAACVwAAAAABZAAAAAAAXAAAAAABXAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAABZAAAAAAAYQAAAAADYQAAAAADYQAAAAACVwAAAAADVwAAAAAAVwAAAAADVwAAAAABVwAAAAACZAAAAAAAVwAAAAABVwAAAAABVwAAAAACRwAAAAACRwAAAAABRwAAAAADCwAAAAADCwAAAAADCwAAAAABCwAAAAABVwAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAABXAAAAAABVwAAAAACVwAAAAAAVwAAAAAARwAAAAACOwAAAAAARwAAAAACCwAAAAABCwAAAAABCwAAAAADCwAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAADVwAAAAAAXAAAAAACVwAAAAABVwAAAAABVwAAAAAARwAAAAABRwAAAAAARwAAAAADZAAAAAAAYQAAAAACYQAAAAACCwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAABVwAAAAACZAAAAAAAVwAAAAAAVwAAAAAAVwAAAAABRwAAAAADRwAAAAAARwAAAAABZAAAAAAAZAAAAAAAYQAAAAACCwAAAAAAVwAAAAABZAAAAAAAZAAAAAAAXAAAAAACZAAAAAAAZAAAAAAAXAAAAAAAXAAAAAABZAAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAACwAAAAADVwAAAAACZAAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAABWwAAAAACWwAAAAADZAAAAAAARwAAAAABOwAAAAAARwAAAAADRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAZAAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAWwAAAAACZAAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAAAVwAAAAAAXAAAAAACWwAAAAABWwAAAAABWwAAAAAAWwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAADOwAAAAAARwAAAAACRwAAAAAB + version: 6 -1,-1: ind: -1,-1 - tiles: UwAAAksAAAFoAAAASwAAAUsAAAAaAAADGgAAAxsAAAEbAAAAGwAAARsAAAIbAAAAaAAAAGgAAABoAAAAaAAAAFEAAANRAAADaAAAAEsAAABLAAADGgAAAhoAAAIbAAADGwAAARsAAAAbAAAAGwAAAWgAAABoAAAAaAAAAGgAAABRAAAAUQAAAmgAAABLAAABSwAAAhoAAAAaAAADEgAAAB4AAAESAAAAGwAAAhsAAANoAAAAaAAAAFcAAABoAAAAUQAAA1EAAANoAAAASwAAAUsAAAEaAAACGgAAARIAAAAeAAADEgAAABsAAAMbAAADaAAAAFcAAABoAAAAaAAAAFMAAAFLAAAAaAAAAEsAAAJLAAADGgAAARoAAAESAAAAHgAAARIAAAAbAAABGwAAAWgAAABXAAAAaAAAAGgAAABRAAAAUQAAAWgAAABLAAADSwAAAGgAAABoAAAAHwAAAh8AAAAfAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUQAAAFEAAANoAAAASwAAA0sAAAJoAAAASwAAA0sAAABLAAACSwAAAUsAAAFLAAACSwAAAUsAAANLAAABSwAAAFEAAABRAAADaAAAAEsAAAJLAAABaAAAAEsAAABLAAABSwAAAEsAAAM/AAAASwAAAUsAAAJLAAAASwAAAD8AAABoAAAAaAAAAGgAAABLAAABSwAAA2gAAABLAAADSwAAAEsAAAFLAAAASwAAAEsAAAFLAAAASwAAAEsAAAJLAAABSwAAA0sAAANLAAACSwAAAksAAABLAAABSwAAAksAAABLAAAASwAAAEsAAAFLAAACaAAAAGgAAABoAAAAaAAAAEsAAAFLAAABSwAAAksAAAJLAAAASwAAAksAAAFLAAAASwAAA0sAAANLAAACSwAAA2gAAAAhAAACIQAAAzQAAABLAAADSwAAA2gAAAAfAAABHwAAAGgAAAAfAAACHwAAA2gAAABLAAABSwAAAEsAAANoAAAAIQAAASEAAAI0AAAASwAAAUsAAAJoAAAAGgAAAxoAAAEaAAABGgAAAhoAAAFoAAAASwAAAj8AAABLAAAAaAAAADQAAAA0AAAANAAAAEsAAABLAAABaAAAABoAAAIqAAAAKgAAACoAAAAaAAACaAAAAEsAAANLAAAASwAAAh8AAAEhAAACIQAAAyEAAANLAAABSwAAA2gAAAAaAAACGgAAARoAAAAaAAABGgAAAmgAAABLAAADSwAAAEsAAABoAAAAIQAAAiEAAAMhAAABSwAAAUsAAABoAAAAGgAAAhoAAAISAAAAEgAAABIAAABoAAAASwAAAUsAAAJLAAADaAAAACEAAAMhAAAAaAAAAA== + tiles: TwAAAAACRwAAAAABZAAAAAAARwAAAAABRwAAAAAAFgAAAAADFgAAAAADFwAAAAABFwAAAAAAFwAAAAABFwAAAAACFwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATQAAAAADTQAAAAADZAAAAAAARwAAAAAARwAAAAADFgAAAAACFgAAAAACFwAAAAADFwAAAAABFwAAAAAAFwAAAAAAFwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATQAAAAAATQAAAAACZAAAAAAARwAAAAABRwAAAAACFgAAAAAAFgAAAAADDgAAAAAAGgAAAAABDgAAAAAAFwAAAAACFwAAAAADZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAATQAAAAADTQAAAAADZAAAAAAARwAAAAABRwAAAAABFgAAAAACFgAAAAABDgAAAAAAGgAAAAADDgAAAAAAFwAAAAADFwAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAATwAAAAABRwAAAAAAZAAAAAAARwAAAAACRwAAAAADFgAAAAABFgAAAAABDgAAAAAAGgAAAAABDgAAAAAAFwAAAAABFwAAAAABZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAATQAAAAAATQAAAAABZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAGwAAAAACGwAAAAAAGwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATQAAAAAATQAAAAADZAAAAAAARwAAAAADRwAAAAACZAAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAADRwAAAAABRwAAAAAATQAAAAAATQAAAAADZAAAAAAARwAAAAACRwAAAAABZAAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAADOwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAAAOwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAACRwAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAADZAAAAAAAHQAAAAACHQAAAAADMAAAAAAARwAAAAADRwAAAAADZAAAAAAAGwAAAAABGwAAAAAAZAAAAAAAGwAAAAACGwAAAAADZAAAAAAARwAAAAABRwAAAAAARwAAAAADZAAAAAAAHQAAAAABHQAAAAACMAAAAAAARwAAAAABRwAAAAACZAAAAAAAFgAAAAADFgAAAAABFgAAAAABFgAAAAACFgAAAAABZAAAAAAARwAAAAACOwAAAAAARwAAAAAAZAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAARwAAAAAARwAAAAABZAAAAAAAFgAAAAACJgAAAAAAJgAAAAAAJgAAAAAAFgAAAAACZAAAAAAARwAAAAADRwAAAAAARwAAAAACGwAAAAABHQAAAAACHQAAAAADHQAAAAADRwAAAAABRwAAAAADZAAAAAAAFgAAAAACFgAAAAABFgAAAAAAFgAAAAABFgAAAAACZAAAAAAARwAAAAADRwAAAAAARwAAAAAAZAAAAAAAHQAAAAACHQAAAAADHQAAAAABRwAAAAABRwAAAAAAZAAAAAAAFgAAAAACFgAAAAACDgAAAAAADgAAAAAADgAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAADZAAAAAAAHQAAAAADHQAAAAAAZAAAAAAA + version: 6 0,-1: ind: 0,-1 - tiles: SwAAAksAAAJLAAABaAAAAGUAAANlAAADZQAAAWgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAEsAAABLAAADSwAAAWgAAABlAAACZQAAAWUAAANoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABLAAAASwAAAUsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAABLAAADSwAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAUsAAAJLAAABaAAAAEsAAABLAAACSwAAAksAAAJoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAASwAAAksAAABLAAABSwAAA0sAAANLAAADSwAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAAASwAAAksAAABLAAABSwAAAUsAAABLAAAASwAAAEsAAAJLAAABSwAAAEsAAAFLAAABSwAAAWgAAABoAAAAUwAAAGgAAABoAAAAaAAAAEsAAABLAAADSwAAAD8AAABLAAAASwAAA0sAAAJLAAABPwAAAEsAAAFLAAACSwAAA0sAAAFLAAADaAAAAEsAAABLAAACSwAAA0sAAABLAAACSwAAAEsAAABLAAAASwAAAUsAAANLAAAASwAAAUsAAAJLAAAASwAAAFMAAABLAAACaAAAAGgAAABoAAAANAAAAGgAAABoAAAAaAAAAEsAAAFLAAAASwAAA0sAAABLAAACSwAAAEsAAAFTAAAASwAAASEAAAIhAAAAIQAAAzQAAAAhAAAAIQAAA2gAAABLAAAASwAAAksAAANLAAAASwAAA0sAAANLAAADaAAAAFMAAAEhAAABIQAAAyEAAAE0AAAAIQAAASEAAAFoAAAASwAAAUsAAANLAAAASwAAAksAAAJLAAAASwAAAWgAAABLAAABNAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAAEsAAAE/AAAASwAAA2gAAABoAAAAaAAAAGgAAABoAAAAEgAAACEAAAAhAAAAIQAAADQAAAAhAAAAIQAAA2gAAABLAAABSwAAAksAAANoAAAANAAAADQAAAA0AAAAaAAAAGgAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAABoAAAASwAAAksAAAFLAAACNAAAADQAAAA0AAAANAAAABoAAAMaAAABaAAAAGgAAABoAAAANAAAADQAAABoAAAAaAAAAEsAAANLAAAASwAAAGgAAAA0AAAANAAAADQAAAAaAAABGgAAAg== + tiles: RwAAAAACRwAAAAACRwAAAAABZAAAAAAAYQAAAAADYQAAAAADYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAABZAAAAAAAYQAAAAACYQAAAAABYQAAAAADZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAABZAAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAADRwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAABRwAAAAABZAAAAAAAZAAAAAAATwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAAAOwAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAABOwAAAAAARwAAAAABRwAAAAACRwAAAAADRwAAAAABRwAAAAADZAAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAAATwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAMAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAABTwAAAAAARwAAAAABHQAAAAACHQAAAAAAHQAAAAADMAAAAAAAHQAAAAAAHQAAAAADZAAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAADRwAAAAADRwAAAAADZAAAAAAATwAAAAABHQAAAAABHQAAAAADHQAAAAABMAAAAAAAHQAAAAABHQAAAAABZAAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAABZAAAAAAARwAAAAABMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAARwAAAAABOwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAADgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAMAAAAAAAHQAAAAAAHQAAAAADZAAAAAAARwAAAAABRwAAAAACRwAAAAADZAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAZAAAAAAAZAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAACMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAFgAAAAADFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAMAAAAAAAMAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAAAZAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAFgAAAAABFgAAAAAC + version: 6 -1,1: ind: -1,1 - tiles: WwAAAGgAAABfAAACXwAAAl8AAANfAAABaAAAAGgAAABoAAAAaAAAAEsAAAJLAAACSwAAA0sAAAFLAAAASwAAA2AAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAmgAAABLAAAASwAAA0sAAAFbAAAAWwAAAlsAAABbAAACXAAAA1wAAAFoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAlsAAANbAAAAWwAAA1wAAABcAAABaAAAAGgAAABXAAAAaAAAAGUAAAJlAAAAaAAAAGUAAANlAAABZQAAA1sAAAFbAAABWwAAA1sAAAFcAAACXAAAAGgAAABXAAAAaAAAAGgAAABlAAABZQAAAGUAAANlAAACZQAAAmUAAANbAAABWwAAAlsAAANbAAABXAAAAFwAAAJoAAAAaAAAAFcAAABoAAAAZQAAAmUAAAFoAAAAZQAAAmUAAABlAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAQAAAAEAAAABAAAAAQAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAMaAAACGgAAAEAAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAASAAAAGgAAAhoAAANAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAEsAAANLAAACSwAAA2gAAABoAAAAaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAASwAAAksAAABLAAAASwAAAEsAAABoAAAASwAAA0sAAANLAAABSwAAAUsAAAJLAAABaAAAAFcAAABoAAAAaAAAAEsAAAFLAAAASwAAAUsAAAFLAAAAaAAAAEsAAAJLAAABSwAAAksAAAJLAAADSwAAAWgAAABoAAAAaAAAAGgAAABLAAAASwAAA0sAAANLAAADSwAAAksAAAFLAAAASwAAA0sAAAJLAAACSwAAAksAAAJLAAADSwAAAksAAAFLAAACSwAAAEsAAANLAAADSwAAAUsAAAJoAAAASwAAA0sAAAFLAAABSwAAA0sAAAFLAAABaAAAAEsAAABLAAADaAAAAEsAAANLAAABSwAAAUsAAAFLAAABaAAAAEsAAAFLAAABSwAAAEsAAABLAAACSwAAAw== + tiles: VwAAAAAAZAAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAADXAAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACZAAAAAAARwAAAAAARwAAAAADRwAAAAABVwAAAAAAVwAAAAACVwAAAAAAVwAAAAACWAAAAAADWAAAAAABZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAADWAAAAAAAWAAAAAABZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYQAAAAACYQAAAAAAZAAAAAAAYQAAAAADYQAAAAABYQAAAAADVwAAAAABVwAAAAABVwAAAAADVwAAAAABWAAAAAACWAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAAAYQAAAAADYQAAAAACYQAAAAACYQAAAAADVwAAAAABVwAAAAACVwAAAAADVwAAAAABWAAAAAAAWAAAAAACZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYQAAAAACYQAAAAABZAAAAAAAYQAAAAACYQAAAAAAYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAACFgAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAADgAAAAAAFgAAAAACFgAAAAADPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAABZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAABRwAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAACZAAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAADRwAAAAABRwAAAAABZAAAAAAARwAAAAAARwAAAAADZAAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAABRwAAAAABZAAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAAD + version: 6 0,1: ind: 0,1 - tiles: SwAAAksAAANLAAAASwAAAEsAAAFLAAAASwAAAksAAAFLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAABaAAAAGgAAABLAAADaAAAAGgAAABLAAABSwAAAmgAAABXAAAAVwAAAGgAAABXAAAAaAAAAGgAAABlAAAAaAAAAGgAAABLAAACSwAAAUsAAANoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAVwAAAGgAAABoAAAAZQAAAmUAAABoAAAASwAAAksAAAJLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAABlAAABaAAAAGgAAABLAAADaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAABoAAAFoAAAAGgAAAxoAAABlAAADZQAAAGUAAABLAAABSwAAAUsAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAAAaAAAAGgAAAmgAAAAaAAADaAAAAGgAAABoAAAASwAAA0sAAAFLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAA0sAAAFLAAAASwAAAEsAAAFLAAACSwAAA2gAAABXAAAAaAAAAGgAAAAaAAACGgAAABoAAAEaAAAAaAAAAGgAAABLAAAASwAAAksAAAJLAAAASwAAAUsAAAJoAAAAaAAAAFcAAABoAAAAGgAAARoAAAIaAAACGgAAA2gAAABoAAAASwAAAUsAAAJLAAAASwAAAksAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADGgAAABoAAAJoAAAAGgAAAEsAAANLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAGgAAAxoAAAEaAAACaAAAAGgAAABLAAACSwAAA2gAAABlAAABZQAAA2UAAAFoAAAAaAAAAFcAAABoAAAAaAAAABoAAAIaAAAAGgAAAWgAAAAaAAADSwAAAEsAAAEaAAADZQAAAWUAAAJlAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAAAaAAAAGUAAAFlAAAAZQAAAWgAAABoAAAAVwAAAGgAAABoAAAAVwAAAGgAAABXAAAAVwAAAFcAAABLAAABSwAAAWgAAABlAAADZQAAAGUAAANoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABXAAAAaAAAAGgAAABXAAAASwAAAUsAAANoAAAAZQAAAGUAAABlAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAA== + tiles: RwAAAAACRwAAAAADRwAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAARwAAAAABRwAAAAACZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAABZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAFgAAAAADFgAAAAAAYQAAAAADYQAAAAAAYQAAAAAARwAAAAABRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAACZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAFgAAAAABFgAAAAACFgAAAAACFgAAAAADZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAACZAAAAAAAFgAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAFgAAAAADFgAAAAABFgAAAAACZAAAAAAAZAAAAAAARwAAAAACRwAAAAADZAAAAAAAYQAAAAABYQAAAAADYQAAAAABZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAABZAAAAAAAFgAAAAADRwAAAAAARwAAAAABFgAAAAADYQAAAAABYQAAAAACYQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAAZAAAAAAAYQAAAAABYQAAAAAAYQAAAAABZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAARwAAAAABRwAAAAABZAAAAAAAYQAAAAADYQAAAAAAYQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAABRwAAAAADZAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAA + version: 6 -2,0: ind: -2,0 - tiles: SwAAAksAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAACSwAAA0sAAAJLAAADSwAAA0sAAAJLAAACSwAAAksAAAFLAAAASwAAAksAAANLAAABSwAAAUsAAABLAAADSwAAAUsAAABLAAAASwAAAksAAAFLAAADSwAAAUsAAAJLAAABSwAAAUsAAAJLAAACSwAAAEsAAANLAAABSwAAAEsAAANLAAAASwAAAksAAANLAAADSwAAAUsAAANLAAABSwAAAUsAAAFLAAAASwAAAksAAANLAAAASwAAAmgAAABoAAAASwAAAUsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAABaAAAAGgAAABoAAAAaAAAAF4AAABeAAADXgAAAV4AAANoAAAAXAAAA1wAAAJoAAAAXAAAAFwAAANoAAAAZQAAAWgAAABXAAAAaAAAAGgAAABeAAACXgAAAV4AAABeAAAAaAAAAFwAAAFcAAACaAAAAFwAAANcAAADaAAAAGUAAAFoAAAAaAAAAFcAAABoAAAAXgAAAV4AAANeAAAAXgAAAGgAAABgAAADYAAAAGgAAABgAAABYAAAAWgAAABlAAADaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAYAAAA2gAAABoAAAAWwAAAFsAAAJbAAADWwAAAlsAAANbAAACZQAAAWgAAABXAAAAaAAAAGgAAABbAAADWwAAAlsAAANbAAACWwAAAFsAAANbAAADWwAAAVsAAANbAAADWwAAAWUAAABoAAAAaAAAAGgAAABoAAAAWwAAAlsAAAFbAAADWwAAA1sAAAJbAAADWwAAA1sAAABbAAADWwAAA1sAAABlAAAAaAAAAGgAAABXAAAAaAAAAFsAAABbAAABWwAAAFsAAANbAAABWwAAAVsAAAFbAAADWwAAAFsAAAFbAAACaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAAAfAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAADcAAABoAAAAVwAAAGgAAABoAAAAGwAAARsAAAIbAAACGwAAAhsAAANoAAAAGgAAAhoAAAEaAAABaAAAAFsAAAM3AAAAaAAAAFcAAABoAAAAaAAAABsAAAEbAAAAGwAAABsAAAAbAAADaAAAABoAAAMaAAACGgAAAGgAAABbAAACNwAAAGgAAABoAAAAaAAAAGgAAAAbAAAAGwAAAxsAAAAbAAADGwAAAGgAAAAaAAADGgAAAxoAAAIfAAAAWwAAAg== + tiles: RwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAABRwAAAAABRwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAADRwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAACZAAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAADZAAAAAAAWAAAAAADWAAAAAACZAAAAAAAWAAAAAAAWAAAAAADZAAAAAAAYQAAAAABZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAWgAAAAACWgAAAAABWgAAAAAAWgAAAAAAZAAAAAAAWAAAAAABWAAAAAACZAAAAAAAWAAAAAADWAAAAAADZAAAAAAAYQAAAAABZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAAAZAAAAAAAXAAAAAADXAAAAAAAZAAAAAAAXAAAAAABXAAAAAABZAAAAAAAYQAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXAAAAAADZAAAAAAAZAAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAADVwAAAAACYQAAAAABZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAACVwAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAADVwAAAAADVwAAAAABYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAADVwAAAAACVwAAAAADVwAAAAADVwAAAAAAVwAAAAADVwAAAAADVwAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAABVwAAAAADVwAAAAAAVwAAAAABVwAAAAACZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAMwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFwAAAAABFwAAAAACFwAAAAACFwAAAAACFwAAAAADZAAAAAAAFgAAAAACFgAAAAABFgAAAAABZAAAAAAAVwAAAAADMwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFwAAAAABFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAADZAAAAAAAFgAAAAADFgAAAAACFgAAAAAAZAAAAAAAVwAAAAACMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFwAAAAAAFwAAAAADFwAAAAAAFwAAAAADFwAAAAAAZAAAAAAAFgAAAAADFgAAAAADFgAAAAACGwAAAAAAVwAAAAAC + version: 6 1,0: ind: 1,0 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAABSwAAAEsAAANLAAAASwAAA0sAAANLAAABaAAAAEsAAABLAAABSwAAAEsAAABLAAABSwAAA0sAAAJLAAADSwAAA0sAAAFLAAADSwAAAEsAAAJLAAACSwAAA0sAAAFLAAAASwAAAUsAAABLAAACSwAAAEsAAAFLAAACSwAAA0sAAABLAAABSwAAAksAAABLAAABSwAAAUsAAAJLAAADSwAAAUsAAABLAAAASwAAAEsAAABLAAADSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAANoAAAASwAAAksAAAFLAAADSwAAAmgAAABlAAABZQAAAWUAAABlAAABaAAAAGgAAABoAAAAaAAAAEsAAANLAAABaAAAAEsAAABLAAAASwAAAUsAAANoAAAAZQAAA2UAAAJlAAAAZQAAAWgAAABXAAAAaAAAAGgAAABoAAAASwAAA2gAAABLAAADSwAAAUsAAAFLAAACaAAAAGgAAABlAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAUsAAANLAAACSwAAAUsAAABLAAACSwAAAEsAAANLAAADSwAAAUsAAABLAAABSwAAAEsAAANLAAAASwAAAUsAAAJLAAAASwAAAksAAAJLAAABSwAAA0sAAABLAAAASwAAAUsAAAJLAAAASwAAA0sAAAFLAAABSwAAA0sAAABLAAABSwAAAksAAAFLAAAASwAAAEsAAAJLAAAASwAAAUsAAAFLAAABSwAAAEsAAAFLAAADSwAAAksAAANoAAAAaAAAAGgAAABoAAAASwAAAksAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAAGgAAA2gAAABLAAADSwAAAEsAAABLAAACSwAAA0sAAAJoAAAAGgAAAxoAAAMaAAABGgAAAhoAAAJoAAAASwAAARoAAANoAAAASwAAAUsAAABLAAADSwAAAEsAAAJLAAAAaAAAABoAAAIaAAADGgAAARoAAAAaAAAAGgAAAksAAAMaAAAAaAAAAEsAAAJLAAACSwAAAUsAAAFLAAADSwAAAWgAAAAaAAAAGgAAABoAAAEaAAABGgAAAmgAAABLAAAAGgAAA2gAAABLAAACSwAAA0sAAANLAAABSwAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAg== + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAADRwAAAAABZAAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAADRwAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAACRwAAAAADRwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAACZAAAAAAAYQAAAAABYQAAAAABYQAAAAAAYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABZAAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAADZAAAAAAAYQAAAAADYQAAAAACYQAAAAAAYQAAAAABZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAACZAAAAAAAZAAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAADRwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAADRwAAAAAARwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAFgAAAAADZAAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAACZAAAAAAAFgAAAAADFgAAAAADFgAAAAABFgAAAAACFgAAAAACZAAAAAAARwAAAAABFgAAAAADZAAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAABFgAAAAAAFgAAAAAAFgAAAAACRwAAAAADFgAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAADRwAAAAABZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAABFgAAAAABFgAAAAACZAAAAAAARwAAAAAAFgAAAAADZAAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAC + version: 6 0,-2: ind: 0,-2 - tiles: SwAAA0sAAAJLAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAABSwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAEsAAAJoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAANLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAAASwAAAmgAAABLAAAASwAAAksAAAFoAAAASwAAAUsAAAJLAAACSwAAAUsAAAFLAAAASwAAAUsAAABLAAAASwAAAEsAAABoAAAASwAAAEsAAAFLAAACUwAAA0sAAANLAAAASwAAAEsAAAFLAAABSwAAAEsAAANLAAADSwAAAEsAAAJLAAABaAAAAEsAAAJLAAACSwAAA2gAAABLAAACSwAAAEsAAABLAAABSwAAAUsAAABLAAAASwAAAUsAAAFLAAACSwAAAWgAAABoAAAAUwAAA2gAAABoAAAAaAAAAFMAAAJTAAACaAAAAGgAAABLAAACSwAAA0sAAABLAAABSwAAAksAAAJLAAACSwAAA0sAAAJLAAADUwAAA0sAAABLAAABSwAAAUsAAAFoAAAASwAAAEsAAANLAAACSwAAA0sAAAFLAAADSwAAAEsAAAJLAAABSwAAAmgAAABLAAADSwAAAUsAAANLAAAAUwAAAUsAAAFLAAAASwAAAEsAAAJLAAACSwAAAEsAAANLAAACSwAAAUsAAANTAAADSwAAAEsAAANLAAACSwAAAFMAAANLAAABSwAAAUsAAABLAAADSwAAAksAAAJLAAABSwAAAUsAAANLAAAAUwAAAEsAAANLAAACSwAAA0sAAANoAAAASwAAA0sAAAFLAAABSwAAAksAAAFLAAABSwAAAUsAAAFLAAABSwAAAWgAAABLAAABSwAAAUsAAANLAAACaAAAAGgAAABoAAAAaAAAAEsAAANLAAAASwAAA2gAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAJLAAADSwAAAGgAAABoAAAAaAAAAFcAAABLAAABSwAAAUsAAABoAAAAZQAAAGUAAANlAAABZQAAAEsAAABLAAABSwAAAksAAANoAAAAaAAAAGgAAABXAAAASwAAAksAAABLAAABaAAAAGUAAABlAAABZQAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAA== + tiles: RwAAAAADRwAAAAACRwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAACZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAACZAAAAAAARwAAAAAARwAAAAACRwAAAAABZAAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAACTwAAAAADRwAAAAADRwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAACRwAAAAABZAAAAAAARwAAAAACRwAAAAACRwAAAAADZAAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAABZAAAAAAAZAAAAAAATwAAAAADZAAAAAAAZAAAAAAAZAAAAAAATwAAAAACTwAAAAACZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAADTwAAAAADRwAAAAAARwAAAAABRwAAAAABRwAAAAABZAAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAABRwAAAAADRwAAAAAARwAAAAACRwAAAAABRwAAAAACZAAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAAATwAAAAABRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAADTwAAAAADRwAAAAAARwAAAAADRwAAAAACRwAAAAAATwAAAAADRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAADRwAAAAAATwAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAADZAAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAABZAAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAABRwAAAAABRwAAAAAAZAAAAAAAYQAAAAAAYQAAAAADYQAAAAABYQAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAACRwAAAAAARwAAAAABZAAAAAAAYQAAAAAAYQAAAAABYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAA + version: 6 -2,1: ind: -2,1 - tiles: NwAAAGgAAABoAAAAVwAAAGgAAAAbAAAAGwAAAhsAAAEbAAADGwAAAGgAAAAaAAAAGgAAARoAAAFoAAAAWwAAAWgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGAAAABXAAAAaAAAAGgAAABXAAAAaAAAAFcAAABoAAAAVwAAAGgAAABXAAAAaAAAAFcAAABXAAAAaAAAAFsAAANbAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABbAAADWwAAAGgAAABoAAAAVwAAAFcAAABoAAAAWwAAAC0AAANbAAACWwAAAC0AAAFoAAAAVwAAAGgAAABoAAAAWwAAAlsAAAFXAAAAaAAAAGgAAABXAAAAaAAAAFsAAAJoAAAALQAAAmgAAABbAAAAaAAAAFcAAABXAAAAaAAAAFsAAAJbAAACaAAAAGgAAABXAAAAaAAAAGgAAAAtAAABWwAAAVsAAAItAAAALQAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAFcAAABoAAAALQAAA1sAAAFoAAAAWwAAAGgAAABoAAAAaAAAAFcAAABoAAAAVwAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABbAAAALQAAAy0AAANoAAAAaAAAAFcAAABoAAAAaAAAAFcAAABoAAAAVwAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABnAAAAaAAAAFcAAABoAAAAaAAAAFcAAABXAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAVwAAAGgAAABXAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: MwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAFwAAAAAAFwAAAAACFwAAAAABFwAAAAADFwAAAAAAZAAAAAAAFgAAAAAAFgAAAAABFgAAAAABZAAAAAAAVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAVwAAAAADVwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAVwAAAAADVwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAVwAAAAAAKQAAAAADVwAAAAACVwAAAAAAKQAAAAABZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAVwAAAAACVwAAAAABUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAVwAAAAACZAAAAAAAKQAAAAACZAAAAAAAVwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAVwAAAAACVwAAAAACZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAKQAAAAABVwAAAAABVwAAAAACKQAAAAAAKQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAKQAAAAADVwAAAAABZAAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAKQAAAAADKQAAAAADZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + version: 6 0,2: ind: 0,2 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABXAAAAVwAAAGgAAABoAAAAVwAAAGgAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABoAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -1,2: ind: -1,2 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAFLAAAASwAAAgAAAABnAAAAZwAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAZwAAAGcAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAAAAAABnAAAAZwAAAAAAAABnAAAAZwAAAGgAAABnAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGgAAABoAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAAAAAAAAAAABnAAAAZwAAAGcAAABoAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABoAAAAaAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGgAAABoAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAZwAAAAAAAABoAAAAaAAAAGgAAABLAAAASwAAAUsAAAJoAAAAGgAAAhoAAAIaAAABVwAAAAAAAABnAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAAksAAABLAAABGgAAARoAAAIaAAAAGgAAA1cAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAAASwAAA2gAAAAaAAADGgAAAxoAAAFXAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAWgAAABoAAAAaAAAAGgAAABXAAAAVwAAAA== + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAACAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAACZAAAAAAAFgAAAAACFgAAAAACFgAAAAABUwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAABFgAAAAABFgAAAAACFgAAAAAAFgAAAAADUwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAADZAAAAAAAFgAAAAADFgAAAAADFgAAAAABUwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAA + version: 6 -2,2: ind: -2,2 - tiles: ZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -2,-1: ind: -2,-1 - tiles: ZQAAAGUAAABlAAAAZQAAAGgAAABoAAAAaAAAAFcAAABoAAAAAAAAAGgAAABoAAAAaAAAAGgAAABTAAACUwAAAWgAAAAaAAADGgAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGcAAABoAAAAQAAAAEAAAABoAAAAUQAAAFMAAAAaAAADGgAAARoAAAFoAAAAGgAAA2gAAABXAAAAaAAAAGgAAABnAAAAaAAAAEAAAABAAAAAQAAAAFEAAAJRAAACGgAAAGgAAAAaAAABGgAAAhoAAAFoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABAAAAAQAAAAGgAAABRAAAAUwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAAAAAABoAAAAaAAAAGgAAABoAAAAUwAAA1MAAANXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABnAAAAaAAAAEAAAABAAAAAaAAAAFEAAAFTAAABaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAZwAAAGgAAABAAAAAQAAAAEAAAABRAAAAUQAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAQAAAAEAAAABoAAAAUQAAAlMAAAMbAAADGwAAAGgAAABLAAABSwAAAEsAAANLAAACSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAAGwAAAhsAAAMbAAABSwAAAUsAAANLAAAASwAAAEsAAAJLAAAASwAAAEsAAAFLAAABSwAAA0sAAAFLAAABSwAAAxsAAAAbAAADaAAAAEsAAABLAAABSwAAA0sAAAFLAAABSwAAA0sAAAFLAAADSwAAAEsAAABLAAADSwAAAEsAAAAbAAACGwAAAWgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAFLAAAAaAAAAGgAAABoAAAAGgAAAxoAAAMaAAADGgAAARoAAABoAAAAZQAAA2UAAAFlAAAAaAAAAEsAAANLAAAASwAAAlcAAABXAAAAaAAAABoAAAESAAAAHwAAAxIAAAAaAAABaAAAAGUAAANlAAAAZQAAAWUAAANLAAABSwAAA0sAAABXAAAAaAAAAGgAAAAaAAABHwAAAxIAAAAfAAACGgAAAGgAAABlAAABZQAAAWUAAAJoAAAASwAAAksAAANLAAAAaAAAAGgAAABoAAAAGgAAABIAAAAfAAACEgAAABoAAANoAAAAZQAAAmUAAANlAAABaAAAAEsAAAFLAAAASwAAAw== + tiles: YQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAACTwAAAAABZAAAAAAAFgAAAAADFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAATQAAAAAATwAAAAAAFgAAAAADFgAAAAABFgAAAAABZAAAAAAAFgAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAATQAAAAACTQAAAAACFgAAAAAAZAAAAAAAFgAAAAABFgAAAAACFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAATQAAAAAATwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAADTwAAAAADUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAATQAAAAABTwAAAAABZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAATQAAAAAATQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAATQAAAAACTwAAAAADFwAAAAADFwAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAFwAAAAACFwAAAAADFwAAAAABRwAAAAABRwAAAAADRwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAABRwAAAAABRwAAAAADFwAAAAAAFwAAAAADZAAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAABRwAAAAADRwAAAAABRwAAAAADRwAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAAAFwAAAAACFwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAADFgAAAAADFgAAAAABFgAAAAAAZAAAAAAAYQAAAAADYQAAAAABYQAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAACUwAAAAAAUwAAAAAAZAAAAAAAFgAAAAABDgAAAAAAGwAAAAADDgAAAAAAFgAAAAABZAAAAAAAYQAAAAADYQAAAAAAYQAAAAABYQAAAAADRwAAAAABRwAAAAADRwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAABGwAAAAADDgAAAAAAGwAAAAACFgAAAAAAZAAAAAAAYQAAAAABYQAAAAABYQAAAAACZAAAAAAARwAAAAACRwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAADgAAAAAAGwAAAAACDgAAAAAAFgAAAAADZAAAAAAAYQAAAAACYQAAAAADYQAAAAABZAAAAAAARwAAAAABRwAAAAAARwAAAAAD + version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAGgAAAAmAAAAJgAAACYAAAAVAAAAFQAAAGgAAAAfAAACGgAAAGgAAABLAAAASwAAAUsAAANLAAADaAAAAGgAAABoAAAAJgAAACYAAAAmAAAAFQAAABUAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAADoAAAA6AAAAOgAAABUAAAAVAAAAaAAAAGUAAABlAAACZQAAA2gAAABlAAACZQAAAWUAAAJoAAAAaAAAAGgAAAA6AAAAOgAAADoAAAAVAAAAFQAAAGgAAABlAAABZQAAAmUAAAJoAAAAZQAAA2UAAAFlAAAAaAAAAEMAAABoAAAAaAAAAGgAAABLAAADaAAAAGgAAABoAAAAaAAAAGUAAAFoAAAAaAAAAGgAAABlAAAAaAAAAGgAAABDAAAAaAAAAEsAAAJLAAABSwAAAEsAAAFLAAADSwAAA0sAAAFLAAADSwAAAUsAAABLAAAASwAAAUsAAABLAAAAQwAAAEMAAABLAAAASwAAA0sAAANLAAABSwAAAEsAAAJLAAACSwAAAEsAAAFLAAADSwAAAUsAAAJLAAABSwAAA0MAAABoAAAASwAAAksAAANLAAACSwAAAUsAAAJLAAABSwAAAksAAAJLAAABSwAAAEsAAANLAAAASwAAAUsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAA2AAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAADYAAAA2AAAANgAAADYAAAA2AAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAAA2AAAANgAAADYAAAA2AAAANgAAAGgAAABoAAAAVwAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAANgAAADYAAAA2AAAANgAAADYAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAE4AAAFOAAADaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABXAAAAaAAAAGgAAABOAAADTgAAAmgAAABoAAAAVwAAAFcAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAATgAAA04AAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAA== + tiles: AAAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAEQAAAAAAEQAAAAAAZAAAAAAAGwAAAAACFgAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAEQAAAAAAEQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAANgAAAAAANgAAAAAANgAAAAAAEQAAAAAAEQAAAAAAZAAAAAAAYQAAAAAAYQAAAAACYQAAAAADZAAAAAAAYQAAAAACYQAAAAABYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAANgAAAAAANgAAAAAANgAAAAAAEQAAAAAAEQAAAAAAZAAAAAAAYQAAAAABYQAAAAACYQAAAAACZAAAAAAAYQAAAAADYQAAAAABYQAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAABRwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAAAPwAAAAAAPwAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAABRwAAAAADPwAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAABRwAAAAACRwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAASgAAAAABSgAAAAADZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAASgAAAAADSgAAAAACZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAASgAAAAADSgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAA + version: 6 -2,-2: ind: -2,-2 - tiles: ZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAAAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAADcAAAA3AAAANwAAAGgAAAAAAAAAZwAAAAAAAABoAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAGgAAAA3AAAANwAAADcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAEMAAABoAAAAQwAAAGgAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABDAAAAaAAAAEMAAABoAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAQwAAAEMAAABDAAAAQwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAEMAAABDAAAAQwAAAEMAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAFcAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAVwAAAFcAAABoAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAFcAAABoAAAATgAAAk4AAABOAAACTgAAAE4AAAFlAAABZQAAAWgAAABlAAABaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAE4AAABOAAADTgAAA04AAAJOAAADaAAAAGUAAANoAAAAZQAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABOAAADTgAAAE4AAAFOAAAATgAAAg== + tiles: YwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAASgAAAAACSgAAAAAASgAAAAACSgAAAAAASgAAAAABYQAAAAABYQAAAAABZAAAAAAAYQAAAAABZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAASgAAAAAASgAAAAADSgAAAAADSgAAAAACSgAAAAADZAAAAAAAYQAAAAADZAAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAASgAAAAADSgAAAAAASgAAAAABSgAAAAAASgAAAAAC + version: 6 -3,-1: ind: -3,-1 - tiles: AAAAAGcAAAAAAAAAaAAAAE4AAANOAAACTgAAAk4AAAFoAAAAVwAAAGgAAABoAAAAaAAAAGUAAAJoAAAAZQAAAgAAAABnAAAAZwAAAGgAAABOAAABTgAAAU4AAANOAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAVwAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABXAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABXAAAAaAAAAGgAAAA3AAAANwAAADcAAABoAAAAaAAAAFcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAVwAAAGgAAABoAAAANwAAADcAAAA3AAAAaAAAAFcAAABoAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAA3AAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABlAAAAZQAAA2UAAANlAAAAZQAAAGUAAABoAAAAaAAAAFcAAABoAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAZQAAA2UAAAFlAAADZQAAAWUAAABlAAACaAAAAGgAAABXAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGUAAANlAAACZQAAA2UAAAJlAAABZQAAAmgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABlAAAAZQAAA2UAAAFlAAACZQAAAGUAAABoAAAAVwAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAZQAAAGUAAAFlAAACZQAAA2UAAANlAAABaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGUAAABlAAABZQAAAGUAAAFlAAABZQAAA2gAAABXAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABlAAABZQAAAWUAAANlAAAAZQAAAmUAAAJoAAAAaAAAAFcAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAZQAAAmUAAANlAAACZQAAAmUAAAFlAAACaAAAAGgAAABoAAAAaAAAAA== + tiles: AAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAASgAAAAADSgAAAAACSgAAAAACSgAAAAABZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACZAAAAAAAYQAAAAACAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAASgAAAAABSgAAAAABSgAAAAADSgAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYQAAAAAAYQAAAAADYQAAAAADYQAAAAAAYQAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYQAAAAADYQAAAAABYQAAAAADYQAAAAABYQAAAAAAYQAAAAACZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYQAAAAADYQAAAAACYQAAAAADYQAAAAACYQAAAAABYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYQAAAAAAYQAAAAADYQAAAAABYQAAAAACYQAAAAAAYQAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYQAAAAAAYQAAAAABYQAAAAACYQAAAAADYQAAAAADYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYQAAAAAAYQAAAAABYQAAAAAAYQAAAAABYQAAAAABYQAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYQAAAAABYQAAAAABYQAAAAADYQAAAAAAYQAAAAACYQAAAAACZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYQAAAAACYQAAAAADYQAAAAACYQAAAAACYQAAAAABYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + version: 6 1,1: ind: 1,1 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADGgAAARoAAABoAAAASwAAAmgAAABXAAAAaAAAAFcAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAGgAAAxoAAAEaAAABGgAAA0sAAANoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAIaAAABGgAAAWgAAABLAAADaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAaAAAAGgAAABXAAAAaAAAAGgAAABXAAAAaAAAAFcAAABoAAAAVwAAAGgAAABoAAAAaAAAAEsAAAJoAAAAGgAAA2gAAABXAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAVwAAAGgAAABLAAACGgAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAEsAAANLAAACaAAAAEsAAAFLAAADSwAAAksAAAFoAAAAaAAAABoAAAIaAAABaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAksAAANLAAADSwAAAEsAAABLAAADSwAAAxoAAAJoAAAAGgAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAFLAAAASwAAA0sAAAMaAAABaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAEsAAAFLAAADSwAAA0sAAABLAAACSwAAA0sAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAWgAAABLAAADSwAAA0sAAAJLAAACSwAAAWgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAABFgAAAAAAZAAAAAAARwAAAAACZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAABFgAAAAABFgAAAAADRwAAAAADZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAABZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAFgAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAACFgAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAABZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAADRwAAAAAARwAAAAAARwAAAAADRwAAAAADFgAAAAACZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAADFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAABZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + version: 6 2,0: ind: 2,0 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAADSwAAAEsAAABLAAABSwAAA0sAAAFLAAAASwAAAksAAABLAAABSwAAA0sAAANLAAACSwAAAmgAAABLAAADSwAAA0sAAAJLAAADSwAAA0sAAAJLAAABSwAAAUsAAAJLAAAASwAAAEsAAABLAAACSwAAAUsAAAFoAAAASwAAAUsAAABLAAADSwAAAEsAAAJLAAADSwAAAEsAAAJLAAADSwAAAksAAABLAAABSwAAAEsAAAFLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAACSwAAAksAAAFLAAAAaAAAAEsAAAFLAAABSwAAAmgAAABXAAAAaAAAAFcAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAksAAANoAAAAVwAAAGgAAABoAAAAVwAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAFcAAABoAAAASwAAAksAAAFLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAEsAAANLAAACSwAAA2gAAABLAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAEsAAAFoAAAASwAAA0sAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAASwAAAUsAAANLAAAAaAAAAEsAAABLAAABaAAAAGgAAAAaAAABGgAAARoAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAACSwAAAmgAAABLAAACSwAAAhoAAAMaAAABGgAAABoAAAMaAAAAaAAAAGgAAABXAAAAVwAAAGgAAABLAAAASwAAA0sAAANoAAAASwAAAEsAAANoAAAAaAAAABoAAAMaAAADGgAAAWgAAABoAAAAaAAAAFcAAABoAAAASwAAAUsAAABLAAABaAAAAEsAAANLAAABaAAAAGgAAAAaAAAAGgAAAxoAAAJoAAAAaAAAAGgAAABXAAAAaAAAAEsAAAFLAAABSwAAAGgAAABLAAAASwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABLAAADSwAAAUsAAABoAAAASwAAAUsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAASwAAAUsAAABLAAACaAAAAA== + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAACRwAAAAACZAAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAADRwAAAAADRwAAAAACRwAAAAABRwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAABZAAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAACZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAADZAAAAAAARwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAABZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAACZAAAAAAARwAAAAACRwAAAAACFgAAAAADFgAAAAABFgAAAAAAFgAAAAADFgAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAADZAAAAAAARwAAAAAARwAAAAADZAAAAAAAZAAAAAAAFgAAAAADFgAAAAADFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAABZAAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAAAZAAAAAAARwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAACZAAAAAAA + version: 6 2,1: ind: 2,1 - tiles: SwAAAEsAAANoAAAAaAAAAGgAAABXAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAJLAAABaAAAAEsAAABLAAAAaAAAAFcAAABoAAAAVwAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAEsAAABLAAAASwAAAWgAAABLAAACSwAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAUsAAAJoAAAASwAAAksAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAAAaAAAAEsAAAFLAAADSwAAA2gAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAA2gAAABLAAABSwAAAEsAAANoAAAAVwAAAGgAAABoAAAASwAAAksAAANLAAACSwAAAWgAAABLAAAASwAAAksAAAFoAAAASwAAAEsAAAJoAAAAaAAAAFcAAABXAAAAaAAAAEsAAABLAAADSwAAAEsAAANLAAADSwAAAEsAAANLAAAAaAAAAEsAAABLAAADUwAAA2gAAABoAAAAaAAAAGgAAABLAAAASwAAAksAAAJLAAABaAAAAEsAAAJLAAAASwAAA2gAAABLAAACSwAAA2gAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA2gAAABoAAAASwAAA0sAAANoAAAAaAAAAFcAAABoAAAAaAAAAEsAAAJLAAACSwAAAEsAAAFLAAAASwAAAksAAAFLAAAAaAAAAEsAAANLAAADaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAEsAAAMqAAAAKgAAAEsAAANLAAACSwAAAmgAAABLAAADSwAAAWgAAABoAAAAVwAAAGgAAABoAAAASwAAAksAAAJLAAACKgAAACoAAABLAAAASwAAA0sAAANoAAAASwAAAUsAAABoAAAAaAAAAFcAAABoAAAAaAAAAEsAAABLAAABSwAAAEsAAAFLAAACSwAAAksAAANLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAfAAACHwAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABoAAAAaAAAAFcAAABoAAAAZQAAA2UAAANlAAADGgAAAxoAAANlAAABZQAAA2UAAANoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGUAAAJlAAACZQAAAhoAAAEaAAACZQAAAmUAAABlAAACaAAAAA== + tiles: RwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAABZAAAAAAARwAAAAAARwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAABZAAAAAAARwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAACZAAAAAAARwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAADZAAAAAAARwAAAAABRwAAAAAARwAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAABZAAAAAAARwAAAAAARwAAAAACRwAAAAABZAAAAAAARwAAAAAARwAAAAACZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAADRwAAAAAAZAAAAAAARwAAAAAARwAAAAADTwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAABZAAAAAAARwAAAAACRwAAAAAARwAAAAADZAAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAARwAAAAADRwAAAAADZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAABRwAAAAAAZAAAAAAARwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAADJgAAAAAAJgAAAAAARwAAAAADRwAAAAACRwAAAAACZAAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAACJgAAAAAAJgAAAAAARwAAAAAARwAAAAADRwAAAAADZAAAAAAARwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAACGwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYQAAAAADYQAAAAADYQAAAAADFgAAAAADFgAAAAADYQAAAAABYQAAAAADYQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAACYQAAAAACFgAAAAABFgAAAAACYQAAAAACYQAAAAAAYQAAAAACZAAAAAAA + version: 6 2,2: ind: 2,2 - tiles: LQAAAWgAAABoAAAAaAAAAEsAAAFLAAADaAAAABoAAAIaAAABGgAAABoAAAEaAAABGgAAABoAAAEaAAAAaAAAAEsAAAItAAACaAAAAEsAAAJoAAAAaAAAAGgAAAAaAAABGgAAA2UAAABlAAADZQAAA2UAAAMaAAABGgAAAmgAAABoAAAALQAAAC0AAAMtAAABSwAAAC0AAAFoAAAAGgAAAhoAAANlAAACZQAAAGUAAABlAAAAGgAAABoAAANoAAAALQAAAi0AAANoAAAALQAAAksAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: KQAAAAABZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAAFgAAAAACFgAAAAABFgAAAAAAFgAAAAABFgAAAAABFgAAAAAAFgAAAAABFgAAAAAAZAAAAAAARwAAAAACKQAAAAACZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAADYQAAAAAAYQAAAAADYQAAAAADYQAAAAADFgAAAAABFgAAAAACZAAAAAAAZAAAAAAAKQAAAAAAKQAAAAADKQAAAAABRwAAAAAAKQAAAAABZAAAAAAAFgAAAAACFgAAAAADYQAAAAACYQAAAAAAYQAAAAAAYQAAAAAAFgAAAAAAFgAAAAADZAAAAAAAKQAAAAACKQAAAAADZAAAAAAAKQAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 1,2: ind: 1,2 - tiles: VwAAAGgAAABoAAAASwAAAmgAAABoAAAALQAAAWgAAAAtAAADaAAAAGgAAABoAAAASwAAAWgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABLAAADSwAAAGgAAAAtAAAAaAAAAC0AAAJLAAAALQAAA2gAAAAtAAACLQAAA0sAAANoAAAAaAAAAGgAAABLAAACLQAAAmgAAABLAAABLQAAAC0AAAMtAAABSwAAA2gAAAAtAAADSwAAAWgAAABoAAAAAAAAAGcAAABoAAAALQAAA0sAAAJoAAAALQAAAmgAAABoAAAASwAAAC0AAAJoAAAALQAAAGgAAABLAAACSwAAA2cAAABnAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGgAAABoAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: UwAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAKQAAAAABZAAAAAAAKQAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAKQAAAAAAZAAAAAAAKQAAAAACRwAAAAAAKQAAAAADZAAAAAAAKQAAAAACKQAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACKQAAAAACZAAAAAAARwAAAAABKQAAAAAAKQAAAAADKQAAAAABRwAAAAADZAAAAAAAKQAAAAADRwAAAAABZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAKQAAAAADRwAAAAACZAAAAAAAKQAAAAACZAAAAAAAZAAAAAAARwAAAAAAKQAAAAACZAAAAAAAKQAAAAAAZAAAAAAARwAAAAACRwAAAAADYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 1,-1: ind: 1,-1 - tiles: SwAAAksAAANLAAAASwAAAksAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAADSwAAASoAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAFcAAABLAAACSwAAAksAAAJLAAADSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABXAAAAUwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANTAAABSwAAAUsAAABLAAADSwAAAEsAAANLAAACSwAAAEsAAAJLAAADSwAAAEsAAANLAAAAUwAAAEsAAAFLAAACUwAAAEsAAABLAAACSwAAAksAAAFLAAACSwAAAEsAAAFLAAAASwAAAEsAAAJLAAACSwAAAlMAAAJLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUwAAA1MAAANoAAAAaAAAAGgAAABTAAADaAAAAGgAAABoAAAAaAAAAEsAAABoAAAASwAAAEsAAAJLAAABSwAAA0sAAANLAAACaAAAAEsAAAJLAAABSwAAAUsAAABLAAADaAAAAGgAAABLAAAAaAAAAEsAAAJLAAAASwAAA0sAAABLAAACSwAAA1MAAABLAAAASwAAAmgAAABLAAACSwAAAmgAAABXAAAASwAAA2gAAABLAAADSwAAACoAAAAqAAAASwAAAUsAAABoAAAASwAAA0sAAAJLAAACSwAAA0sAAAJoAAAAaAAAAFMAAABoAAAASwAAAUsAAAEqAAAAKgAAAEsAAABLAAACaAAAAEsAAAJLAAAASwAAA0sAAAJLAAADaAAAAGgAAABLAAAASwAAAUsAAAJLAAACSwAAAksAAAJLAAADSwAAAWgAAABLAAAASwAAAksAAABLAAACSwAAAmgAAABoAAAAEgAAABIAAABLAAADSwAAA0sAAAFLAAACSwAAAUsAAABoAAAASwAAAEsAAANLAAABSwAAA0sAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAGgAAABXAAAAaAAAAFcAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABXAAAAaAAAAFcAAABXAAAAaAAAAGgAAABXAAAAaAAAAFcAAABXAAAAaAAAAGgAAABXAAAAaAAAAGgAAABXAAAAVwAAAA== + tiles: RwAAAAACRwAAAAADRwAAAAAARwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAABJgAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAATwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADTwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAADRwAAAAAATwAAAAAARwAAAAABRwAAAAACTwAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAACRwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAACTwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAADTwAAAAADZAAAAAAAZAAAAAAAZAAAAAAATwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAADRwAAAAACZAAAAAAARwAAAAACRwAAAAABRwAAAAABRwAAAAAARwAAAAADZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAADTwAAAAAARwAAAAAARwAAAAACZAAAAAAARwAAAAACRwAAAAACZAAAAAAAUwAAAAAARwAAAAADZAAAAAAARwAAAAADRwAAAAAAJgAAAAAAJgAAAAAARwAAAAABRwAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAADRwAAAAACZAAAAAAAZAAAAAAATwAAAAAAZAAAAAAARwAAAAABRwAAAAABJgAAAAAAJgAAAAAARwAAAAAARwAAAAACZAAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAACRwAAAAADZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAACRwAAAAACRwAAAAADRwAAAAABZAAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAACZAAAAAAAZAAAAAAADgAAAAAADgAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAACRwAAAAABRwAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAA + version: 6 2,-1: ind: 2,-1 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAGcAAABnAAAAaAAAAGgAAABXAAAAVwAAAGgAAABXAAAAaAAAAFcAAABXAAAAaAAAAGgAAABXAAAAaAAAAGgAAABnAAAAZwAAAA== + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAA + version: 6 1,-2: ind: 1,-2 - tiles: AAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAEsAAAJLAAACSwAAA0sAAANLAAABSwAAAksAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABLAAACSwAAA0sAAAJLAAACSwAAAksAAABLAAABaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAASwAAA0sAAAJLAAACSwAAAksAAAJLAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAABnAAAAZwAAAEsAAABoAAAAaAAAAGgAAABTAAADUwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAZwAAAAAAAABLAAACaAAAAEsAAANLAAAASwAAAUsAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAAAAAAAASwAAA1MAAANLAAACSwAAAEsAAANLAAACSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAABnAAAAZwAAAEsAAANTAAABSwAAAEsAAABLAAABSwAAAUsAAANoAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAAAAAABLAAABaAAAAEsAAANLAAAASwAAAUsAAAFLAAACaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAVwAAAGgAAABoAAAAaAAAAEsAAAFoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAASwAAAQ== + tiles: AAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAACRwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAAARwAAAAABZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAACRwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAADTwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAARwAAAAACZAAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAARwAAAAADTwAAAAADRwAAAAACRwAAAAAARwAAAAADRwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAARwAAAAADTwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAARwAAAAABZAAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAABRwAAAAACZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAAB + version: 6 2,-2: ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAAFLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABLAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAASwAAAksAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAARwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAA + version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAACSwAAAEsAAAJoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAUsAAAFLAAADaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAAARwAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABRwAAAAABRwAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -1,-3: ind: -1,-3 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAUwAAAFMAAANTAAACUwAAAWgAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAB8AAAIaAAACaAAAAEsAAAJLAAACSwAAAksAAAFoAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAfAAACGgAAAhoAAAFLAAABSwAAAUsAAABLAAADSwAAAQ== + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAAATwAAAAADTwAAAAACTwAAAAABZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAGwAAAAACFgAAAAACZAAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAABZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAACFgAAAAACFgAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAAB + version: 6 3,-1: ind: 3,-1 - tiles: AAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 3,-2: ind: 3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -3,0: ind: -3,0 - tiles: AAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAAFlAAACaAAAAEsAAAJLAAAASwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAAJLAAADSwAAAksAAANLAAACSwAAAUsAAAJLAAAASwAAA0sAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAADSwAAA0sAAAJLAAACSwAAAEsAAABLAAAASwAAA0sAAAFLAAABAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAAksAAANLAAAASwAAA0sAAABLAAADSwAAA0sAAABLAAAASwAAAgAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAABLAAADSwAAAWgAAABoAAAAaAAAAGUAAANlAAADZQAAAWgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAACSwAAA0sAAANoAAAAZQAAAmUAAABlAAADZQAAAWUAAABlAAADAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAAUsAAAJLAAACaAAAAGUAAAJlAAACZQAAAGUAAAFlAAABZQAAAgAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAEsAAANLAAADSwAAAmgAAABlAAABZQAAA2UAAAFlAAACZQAAA2UAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABLAAADSwAAAUsAAANoAAAAZQAAA2UAAAJlAAADZQAAAmUAAAJlAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAAEsAAABLAAACaAAAAGUAAABlAAACZQAAAWUAAANlAAADZQAAAgAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAANLAAAASwAAA2gAAABlAAAAZQAAA2UAAANlAAABZQAAAmUAAAMAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAABSwAAA0sAAAFoAAAAZQAAAWUAAAJlAAABZQAAAWUAAANlAAADAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAA0sAAANLAAAAaAAAAGUAAAJoAAAAaAAAAGgAAABoAAAANwAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAGgAAABlAAACaAAAADcAAAA3AAAANwAAADcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAABSwAAA0sAAAJoAAAAaAAAAGgAAABoAAAAaAAAADcAAAA3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAA0sAAANLAAABaAAAAGgAAABXAAAAaAAAAB8AAAEaAAACNwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAACZAAAAAAARwAAAAACRwAAAAAARwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAAARwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAADYQAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAADZAAAAAAAYQAAAAACYQAAAAAAYQAAAAADYQAAAAABYQAAAAAAYQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAACZAAAAAAAYQAAAAACYQAAAAACYQAAAAAAYQAAAAABYQAAAAABYQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAACZAAAAAAAYQAAAAABYQAAAAADYQAAAAABYQAAAAACYQAAAAADYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAADZAAAAAAAYQAAAAADYQAAAAACYQAAAAADYQAAAAACYQAAAAACYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAACZAAAAAAAYQAAAAAAYQAAAAACYQAAAAABYQAAAAADYQAAAAADYQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAADZAAAAAAAYQAAAAAAYQAAAAADYQAAAAADYQAAAAABYQAAAAACYQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAABZAAAAAAAYQAAAAABYQAAAAACYQAAAAABYQAAAAABYQAAAAADYQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAAAZAAAAAAAYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAAAZAAAAAAAYQAAAAACZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAABZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAGwAAAAABFgAAAAACMwAAAAAA + version: 6 -3,1: ind: -3,1 - tiles: AAAAAAAAAAAAAAAAZwAAAAAAAABoAAAASwAAAksAAANLAAADaAAAAGgAAABoAAAAaAAAAB8AAAMaAAABNwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABLAAABaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABLAAABSwAAAksAAAJoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAASwAAA0sAAAFLAAACaAAAAGgAAABXAAAAaAAAAGgAAABXAAAAaAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAEsAAAFLAAACSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABLAAADSwAAAksAAAEfAAADHwAAAB8AAANoAAAAaAAAAFcAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAASwAAAUsAAAJLAAABHwAAAh8AAAEfAAACaAAAAFcAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAFcAAABXAAAASwAAAR8AAAEfAAABHwAAAWgAAABoAAAAaAAAAFcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABXAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAADFgAAAAABMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAACZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAACZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAABGwAAAAADGwAAAAAAGwAAAAADZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAABGwAAAAACGwAAAAABGwAAAAACZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAARwAAAAABGwAAAAABGwAAAAABGwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAA + version: 6 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAACcAAABoAAAAAgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAABnAAAAaAAAACcAAAAnAAAAAgAAAGgAAABoAAAAAgAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAnAAAAaAAAACcAAAACAAAAAgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAABoAAAAEwAAAxMAAAFoAAAAEwAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAFcAAABXAAAAAAAAAGcAAAAAAAAAaAAAABMAAABoAAAAaAAAABMAAAFoAAAAaAAAAFcAAABXAAAAaAAAAFcAAABoAAAAaAAAAAAAAABnAAAAZwAAAGgAAABoAAAAEwAAAhMAAAITAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAABoAAAAEwAAABMAAABoAAAAEwAAAmgAAABXAAAAVwAAAGgAAABlAAACaAAAAGgAAABlAAAAAAAAAGcAAAAAAAAAaAAAAE4AAABOAAABTgAAAk4AAABoAAAAaAAAAGgAAABoAAAAZQAAAWUAAANlAAAAZQAAAw== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAIwAAAAAAZAAAAAAAAgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAIwAAAAAAIwAAAAAAAgAAAAAAZAAAAAAAZAAAAAAAAgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAIwAAAAAAZAAAAAAAIwAAAAAAAgAAAAAAAgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAADwAAAAADDwAAAAABZAAAAAAADwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAADwAAAAAAZAAAAAAAZAAAAAAADwAAAAABZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAADwAAAAACDwAAAAACDwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAADwAAAAAADwAAAAAAZAAAAAAADwAAAAACZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAYQAAAAACZAAAAAAAZAAAAAAAYQAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAASgAAAAAASgAAAAABSgAAAAACSgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAADYQAAAAAAYQAAAAAD + version: 6 -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + version: 6 -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + version: 6 -3,2: ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,3: ind: 0,3 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAIaAAABGgAAAxoAAAFoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAABGgAAARoAAAMaAAACaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAEaAAABGgAAAWgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAIaAAAAGgAAABoAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAACGgAAAhoAAAEaAAADaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAARoAAAMaAAABGgAAAmgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAIaAAADGgAAARoAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAABFgAAAAADFgAAAAABZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAABFgAAAAADFgAAAAACZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAABFgAAAAABFgAAAAABZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAAAFgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAACFgAAAAABFgAAAAADZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAADFgAAAAABFgAAAAACZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAADFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -1,3: ind: -1,3 - tiles: AAAAAGcAAABnAAAAaAAAAGgAAABoAAAASwAAA0sAAABLAAACSwAAA0sAAAFLAAAASwAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAGgAAABoAAAASwAAA0sAAAJLAAAASwAAAUsAAAJLAAAASwAAAksAAAFLAAABaAAAABoAAAIAAAAAZwAAAAAAAABoAAAAaAAAAEsAAANLAAADSwAAAWgAAABoAAAAaAAAAEsAAABLAAAASwAAAGgAAAAaAAACAAAAAGcAAAAAAAAAaAAAAGgAAABLAAADSwAAAksAAAFoAAAASwAAAmgAAABLAAAASwAAAksAAANoAAAAGgAAAgAAAABnAAAAZwAAAGgAAABoAAAASwAAAksAAAFLAAACSwAAAUsAAABLAAAASwAAAksAAABLAAADGgAAAxoAAAEAAAAAZwAAAAAAAABoAAAAaAAAAEsAAAFLAAABSwAAAmgAAABLAAABaAAAAEsAAAFLAAADSwAAAmgAAAAaAAACAAAAAGcAAAAAAAAAaAAAAGgAAABLAAABSwAAAUsAAABoAAAAaAAAAGgAAABLAAABSwAAAksAAABoAAAAGgAAAgAAAABnAAAAZwAAAGgAAABoAAAASwAAAUsAAABLAAAASwAAAksAAAFLAAACSwAAAEsAAABLAAABaAAAABoAAAEAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABLAAAASwAAAksAAAJLAAABSwAAA0sAAANLAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAA== + tiles: AAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAABRwAAAAABZAAAAAAAFgAAAAACAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAAAZAAAAAAAFgAAAAACAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAABZAAAAAAARwAAAAACZAAAAAAARwAAAAAARwAAAAACRwAAAAADZAAAAAAAFgAAAAACAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAADFgAAAAADFgAAAAABAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAACZAAAAAAARwAAAAABZAAAAAAARwAAAAABRwAAAAADRwAAAAACZAAAAAAAFgAAAAACAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAAAZAAAAAAAFgAAAAACAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAABZAAAAAAAFgAAAAABAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAADRwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAA + version: 6 -2,-4: ind: -2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAZQAAAmUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGUAAAFlAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABlAAACZQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGUAAANlAAADZQAAAWUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABlAAADZQAAAWUAAAJlAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAZQAAA2UAAAJlAAACZQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYQAAAAACYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYQAAAAABYQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYQAAAAADYQAAAAADYQAAAAABYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYQAAAAADYQAAAAABYQAAAAACYQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYQAAAAADYQAAAAACYQAAAAACYQAAAAAA + version: 6 -1,-4: ind: -1,-4 - tiles: ZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGUAAANlAAACZQAAA2UAAABXAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABlAAADZQAAAGUAAABlAAACVwAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAACoAAAAqAAAAZQAAA1cAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACoAAAAqAAAAKgAAAGUAAANlAAACaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABlAAABZQAAAmUAAANlAAADZQAAAWgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAWUAAANlAAABZQAAAGUAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAADYQAAAAACYQAAAAADYQAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAADYQAAAAAAYQAAAAAAYQAAAAACUwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAYQAAAAADUwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAYQAAAAADYQAAAAACZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAABYQAAAAACYQAAAAADYQAAAAADYQAAAAABZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAABYQAAAAADYQAAAAABYQAAAAAAYQAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 3,2: ind: 3,2 - tiles: AAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 3,1: ind: 3,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 3,0: ind: 3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -1,4: ind: -1,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,4: ind: 0,4 - tiles: aAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 type: MapGrid - type: Broadphase - bodyStatus: InAir @@ -8091,7 +8136,7 @@ entities: type: Transform - uid: 6050 components: - - pos: -14.484429,-1.7459826 + - pos: -14.475516,-1.6162148 parent: 1 type: Transform - proto: BoxBeanbag @@ -8117,7 +8162,7 @@ entities: entities: - uid: 5306 components: - - pos: 21.500244,15.609039 + - pos: 21.502325,15.64172 parent: 1 type: Transform - proto: BoxFolderBase @@ -8387,7 +8432,7 @@ entities: entities: - uid: 5308 components: - - pos: 20.968994,15.609039 + - pos: 21.022184,15.646895 parent: 1 type: Transform - proto: BoxLatexGloves @@ -8482,7 +8527,7 @@ entities: type: Transform - uid: 6054 components: - - pos: -14.480633,-1.5970023 + - pos: -14.459891,-1.7880898 parent: 1 type: Transform - uid: 7183 @@ -8499,14 +8544,14 @@ entities: type: Transform - uid: 6049 components: - - pos: -14.484429,-1.3866076 + - pos: -14.459891,-1.9287148 parent: 1 type: Transform - proto: BoxZiptie entities: - uid: 5309 components: - - pos: 20.42212,15.624664 + - pos: 20.533396,15.646895 parent: 1 type: Transform - proto: BrbSign @@ -52944,25 +52989,6 @@ entities: - pos: -0.5,47.5 parent: 1 type: Transform -- proto: GeneratorPlasma - entities: - - uid: 2857 - components: - - pos: -11.5,-53.5 - parent: 1 - type: Transform -- proto: GeneratorUraniumMachineCircuitboard - entities: - - uid: 9515 - components: - - pos: -7.3825207,-32.322838 - parent: 1 - type: Transform - - uid: 9516 - components: - - pos: -7.6012707,-32.572838 - parent: 1 - type: Transform - proto: Girder entities: - uid: 1598 @@ -57967,11 +57993,6 @@ entities: type: Transform - proto: KitchenReagentGrinder entities: - - uid: 3820 - components: - - pos: -14.5,-0.5 - parent: 1 - type: Transform - uid: 4941 components: - pos: 27.5,24.5 @@ -57982,6 +58003,11 @@ entities: - pos: -10.5,16.5 parent: 1 type: Transform + - uid: 5914 + components: + - pos: -14.5,-1.5 + parent: 1 + type: Transform - uid: 5967 components: - pos: 5.5,3.5 @@ -58335,6 +58361,11 @@ entities: type: Transform - proto: LockerEngineerFilled entities: + - uid: 3797 + components: + - pos: 19.5,-3.5 + parent: 1 + type: Transform - uid: 6770 components: - pos: 23.5,-4.5 @@ -58490,6 +58521,11 @@ entities: - pos: -25.5,9.5 parent: 1 type: Transform + - uid: 5917 + components: + - pos: -23.5,9.5 + parent: 1 + type: Transform - uid: 12608 components: - pos: 21.5,5.5 @@ -58608,6 +58644,11 @@ entities: - pos: -16.5,-0.5 parent: 1 type: Transform + - uid: 5912 + components: + - pos: -15.5,-0.5 + parent: 1 + type: Transform - proto: LockerSecurityFilled entities: - uid: 764 @@ -60844,6 +60885,62 @@ entities: - slope: 0.32 intensity: 2 type: RadiationSource +- proto: PortableGeneratorJrPacman + entities: + - uid: 5965 + components: + - pos: 25.5,-8.5 + parent: 1 + type: Transform + - uid: 5987 + components: + - pos: 8.5,-14.5 + parent: 1 + type: Transform + - uid: 5988 + components: + - pos: -32.5,-10.5 + parent: 1 + type: Transform + - uid: 5989 + components: + - pos: -29.5,9.5 + parent: 1 + type: Transform + - uid: 6013 + components: + - pos: -7.5,19.5 + parent: 1 + type: Transform + - uid: 6067 + components: + - pos: 35.5,5.5 + parent: 1 + type: Transform +- proto: PortableGeneratorPacman + entities: + - uid: 2857 + components: + - pos: -11.5,-53.5 + parent: 1 + type: Transform + - uid: 5958 + components: + - pos: 25.5,-3.5 + parent: 1 + type: Transform +- proto: PortableGeneratorSuperPacmanMachineCircuitboard + entities: + - uid: 9515 + components: + - pos: -7.3825207,-32.322838 + parent: 1 + type: Transform + - uid: 9516 + components: + - pos: -7.6012707,-32.572838 + parent: 1 + type: Transform - proto: PortableScrubber entities: - uid: 12462 @@ -61158,11 +61255,6 @@ entities: - pos: 16.5,-20.5 parent: 1 type: Transform - - uid: 7181 - components: - - pos: 19.5,-3.5 - parent: 1 - type: Transform - uid: 7637 components: - pos: -39.5,18.5 @@ -69356,6 +69448,13 @@ entities: - pos: 2.5,6.5 parent: 1 type: Transform +- proto: SpawnPointBorg + entities: + - uid: 5913 + components: + - pos: -7.5,-12.5 + parent: 1 + type: Transform - proto: SpawnPointBotanist entities: - uid: 6038 @@ -69592,6 +69691,34 @@ entities: - pos: 13.5,9.5 parent: 1 type: Transform +- proto: SpawnPointSeniorEngineer + entities: + - uid: 5915 + components: + - pos: 19.5,-4.5 + parent: 1 + type: Transform +- proto: SpawnPointSeniorOfficer + entities: + - uid: 5916 + components: + - pos: 15.5,9.5 + parent: 1 + type: Transform +- proto: SpawnPointSeniorPhysician + entities: + - uid: 5923 + components: + - pos: -20.5,10.5 + parent: 1 + type: Transform +- proto: SpawnPointSeniorResearcher + entities: + - uid: 770 + components: + - pos: -16.5,-1.5 + parent: 1 + type: Transform - proto: SpawnPointServiceWorker entities: - uid: 7493 @@ -70639,12 +70766,6 @@ entities: pos: 20.5,15.5 parent: 1 type: Transform - - uid: 770 - components: - - rot: 3.141592653589793 rad - pos: 21.5,15.5 - parent: 1 - type: Transform - uid: 771 components: - pos: 16.5,13.5 @@ -70885,8 +71006,7 @@ entities: type: Transform - uid: 3812 components: - - rot: 1.5707963267948966 rad - pos: -14.5,-0.5 + - pos: 21.5,15.5 parent: 1 type: Transform - uid: 3813 @@ -73224,11 +73344,11 @@ entities: type: Transform - proto: VendingMachineSciDrobe entities: - - uid: 3797 + - uid: 3820 components: - flags: SessionSpecific type: MetaData - - pos: -15.5,-0.5 + - pos: -14.5,-0.5 parent: 1 type: Transform - proto: VendingMachineSec diff --git a/Resources/Maps/core.yml b/Resources/Maps/core.yml index 6d0856eb9dc..328400cd0b0 100644 --- a/Resources/Maps/core.yml +++ b/Resources/Maps/core.yml @@ -1,50 +1,49 @@ meta: - format: 5 + format: 6 postmapinit: false tilemap: 0: Space 2: FloorArcadeBlue2 - 4: FloorAsteroidCoarseSand0 - 10: FloorAsteroidSand - 12: FloorBar - 15: FloorBlueCircuit - 16: FloorBoxing - 17: FloorBrokenWood - 18: FloorCarpetClown - 20: FloorCave - 22: FloorClown - 23: FloorDark - 27: FloorDarkMini - 28: FloorDarkMono - 34: FloorDirt - 35: FloorEighties - 38: FloorFreezer - 40: FloorGold - 41: FloorGrass - 43: FloorGrassJungle - 45: FloorGreenCircuit - 47: FloorHydro - 48: FloorKitchen - 50: FloorLino - 53: FloorMime - 58: FloorRGlass - 59: FloorReinforced - 68: FloorSnow - 69: FloorSteel - 72: FloorSteelDirty - 73: FloorSteelHerringbone - 75: FloorSteelMono - 79: FloorTechMaint - 80: FloorTechMaint2 - 81: FloorTechMaint3 - 82: FloorWhite - 87: FloorWhiteMono - 90: FloorWhitePavementVertical - 91: FloorWhitePlastic - 92: FloorWood - 93: FloorWoodTile - 94: Lattice - 95: Plating + 6: FloorAsteroidSand + 11: FloorBar + 14: FloorBlueCircuit + 15: FloorBoxing + 16: FloorBrokenWood + 17: FloorCarpetClown + 19: FloorCave + 21: FloorClown + 22: FloorDark + 26: FloorDarkMini + 27: FloorDarkMono + 33: FloorDirt + 34: FloorEighties + 37: FloorFreezer + 39: FloorGold + 40: FloorGrass + 42: FloorGrassJungle + 44: FloorGreenCircuit + 48: FloorHydro + 49: FloorKitchen + 51: FloorLino + 54: FloorMime + 59: FloorRGlass + 60: FloorReinforced + 70: FloorSnow + 71: FloorSteel + 76: FloorSteelDirty + 77: FloorSteelHerringbone + 79: FloorSteelMono + 83: FloorTechMaint + 84: FloorTechMaint2 + 85: FloorTechMaint3 + 87: FloorWhite + 92: FloorWhiteMono + 95: FloorWhitePavementVertical + 96: FloorWhitePlastic + 97: FloorWood + 98: FloorWoodTile + 99: Lattice + 100: Plating entities: - proto: "" entities: @@ -58,226 +57,300 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: XgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABeAAAAXgAAAF8AAABfAAAAXwAAAFAAAABfAAAAOwAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAAAAAAAAAAAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF8AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAXwAAAF8AAABPAAAATwAAAF8AAAArAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF8AAABfAAAAUAAAAF8AAABfAAAARQAAAF4AAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABPAAAAXwAAAEUAAAJeAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABPAAAAUAAAAF8AAABFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAFEAAANPAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAACRQAAAEUAAAJfAAAAUAAAAF8AAABRAAABXwAAAF8AAABQAAAATwAAAF8AAABfAAAAUAAAAF8AAABFAAADRQAAAkUAAAJfAAAAUQAAAU8AAABPAAAAXwAAAFAAAABRAAADUQAAA08AAABfAAAAXwAAAF8AAABfAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABIAAAARQAAAEUAAAFIAAAASAAAAEUAAAFFAAADSAAAAEgAAABFAAADRQAAAkgAAABIAAAASAAAAEUAAAJIAAAASwAAA0sAAAFLAAAASwAAAUsAAAI6AAAASwAAA0sAAAFLAAADSwAAAksAAAFLAAAASwAAAksAAABLAAADSwAAAg== + tiles: YwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAPAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAKgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAACYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAVAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAVQAAAAADUwAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAACZAAAAAAAVAAAAAAAZAAAAAAAVQAAAAABZAAAAAAAZAAAAAAAVAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAACZAAAAAAAVQAAAAABUwAAAAAAUwAAAAAAZAAAAAAAVAAAAAAAVQAAAAADVQAAAAADUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAATAAAAAAARwAAAAAARwAAAAABTAAAAAAATAAAAAAARwAAAAABRwAAAAADTAAAAAAATAAAAAAARwAAAAADRwAAAAACTAAAAAAATAAAAAAATAAAAAAARwAAAAACTAAAAAAATwAAAAADTwAAAAABTwAAAAAATwAAAAABTwAAAAACOwAAAAAATwAAAAADTwAAAAABTwAAAAADTwAAAAACTwAAAAABTwAAAAAATwAAAAACTwAAAAAATwAAAAADTwAAAAAC + version: 6 0,-1: ind: 0,-1 - tiles: UAAAAFAAAABFAAADXwAAADsAAAA7AAAAOwAAAF8AAABFAAADSAAAAEUAAAJFAAACSAAAAEsAAABfAAAAXwAAAFAAAABQAAAASAAAAEUAAAE7AAAAOwAAADsAAABfAAAARQAAA0gAAABIAAAARQAAAkgAAABLAAAAXwAAABcAAAFQAAAAUAAAAEgAAABfAAAAOwAAADsAAAA7AAAAXwAAAEgAAABIAAAASAAAAEgAAABFAAABSwAAAl8AAAAXAAACRQAAA0gAAABFAAADXwAAADsAAAA7AAAAOwAAAF8AAAAXAAACSwAAAUsAAAFLAAAASwAAA0sAAABfAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAFAAAABfAAAAXwAAAF4AAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXwAAAF4AAABeAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAAAAAAAAAAAAAF8AAABfAAAAXwAAAFAAAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAAAAAAAAAAAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF4AAABeAAAAXwAAAF8AAABfAAAAUAAAAF8AAAA7AAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABeAAAAXgAAAF8AAABfAAAAXwAAAFAAAABfAAAAOwAAAA== + tiles: VAAAAAAAVAAAAAAARwAAAAADZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAARwAAAAADTAAAAAAARwAAAAACRwAAAAACTAAAAAAATwAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAVAAAAAAATAAAAAAARwAAAAABPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAARwAAAAADTAAAAAAATAAAAAAARwAAAAACTAAAAAAATwAAAAAAZAAAAAAAFgAAAAABVAAAAAAAVAAAAAAATAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAARwAAAAABTwAAAAACZAAAAAAAFgAAAAACRwAAAAADTAAAAAAARwAAAAADZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAFgAAAAACTwAAAAABTwAAAAABTwAAAAAATwAAAAADTwAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAPAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAPAAAAAAA + version: 6 -1,-1: ind: -1,-1 - tiles: TwAAAF8AAAAXAAABFwAAA0UAAAJIAAAARQAAAV8AAABfAAAAXwAAAF8AAABfAAAAUAAAAEUAAAFFAAACUAAAAFAAAABfAAAAFwAAAhcAAAFFAAACSAAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABFAAADRQAAAVAAAABfAAAAXwAAABcAAAAXAAADSAAAAEUAAAFIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAARQAAAkgAAABQAAAAXwAAAF8AAAAXAAADFwAAA0UAAAMXAAADFwAAAV8AAABfAAAAXwAAAF8AAABfAAAAUAAAAEUAAABIAAAARQAAAl8AAABfAAAAXwAAAF8AAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUQAAAl8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFEAAANfAAAAUAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABQAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXgAAAF4AAABfAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXwAAAE8AAABfAAAAUAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF8AAABQAAAAXwAAAFAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABfAAAAUAAAAF8AAABQAAAAXwAAAF8AAABfAAAAXgAAAF4AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAF4AAABeAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: UwAAAAAAZAAAAAAAFgAAAAABFgAAAAADRwAAAAACTAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAARwAAAAABRwAAAAACVAAAAAAAVAAAAAAAZAAAAAAAFgAAAAACFgAAAAABRwAAAAACTAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAARwAAAAADRwAAAAABVAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADTAAAAAAARwAAAAABTAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAARwAAAAACTAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAADRwAAAAADFgAAAAADFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAARwAAAAAATAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVQAAAAACZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVQAAAAADZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + version: 6 -1,0: ind: -1,0 - tiles: XwAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAF4AAABeAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF8AAABRAAAAXwAAAFAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABfAAAAUQAAAV8AAABQAAAAXwAAAF8AAABfAAAAAAAAAAAAAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXwAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABQAAAAUQAAAV8AAABfAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFEAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABfAAAAUQAAAV8AAABPAAAAUQAAAV8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXwAAAFEAAANfAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABQAAAAUAAAAF8AAABRAAACUAAAAFAAAABfAAAAXwAAAF8AAABfAAAATwAAAEUAAANFAAAAXwAAAF8AAABfAAAAXwAAAFEAAAFfAAAAXwAAAF8AAABfAAAAUAAAAFAAAABfAAAAXwAAAF8AAABfAAAARQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAA0UAAAJIAAAASAAAAEUAAABFAAADSAAAAEgAAABFAAABRQAAAkgAAABIAAAARQAAA0UAAAJIAAAASwAAAEsAAABLAAAASwAAAUsAAABLAAABSwAAAksAAANLAAACSwAAA0sAAAJLAAAASwAAA0sAAANLAAABSwAAAg== + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAVQAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAVQAAAAABZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAVQAAAAABZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAVQAAAAABZAAAAAAAUwAAAAAAVQAAAAABZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAVQAAAAADZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAVAAAAAAAVAAAAAAAZAAAAAAAVQAAAAACVAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAACTAAAAAAATAAAAAAARwAAAAAARwAAAAADTAAAAAAATAAAAAAARwAAAAABRwAAAAACTAAAAAAATAAAAAAARwAAAAADRwAAAAACTAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAABTwAAAAAATwAAAAABTwAAAAACTwAAAAADTwAAAAACTwAAAAADTwAAAAACTwAAAAAATwAAAAADTwAAAAADTwAAAAABTwAAAAAC + version: 6 -1,-2: ind: -1,-2 - tiles: RQAAAkUAAAFFAAAARQAAAkgAAABFAAADRQAAAkUAAANIAAAASAAAAEUAAANFAAADSAAAAEgAAABFAAABRQAAAksAAAJLAAACSwAAAUsAAANLAAABSwAAAUsAAAFLAAACSwAAA0sAAANLAAADSwAAAksAAANLAAADSwAAAksAAAJIAAAASAAAAEUAAAJFAAABRQAAAUUAAAFFAAACRQAAA0UAAANIAAAARQAAAEUAAAJFAAABSAAAAEgAAABFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJIAAAARQAAAUgAAABFAAADXwAAABcAAAIXAAABFwAAABcAAAEXAAAAXwAAAFwAAAEXAAABTwAAAF8AAABFAAADSAAAAEUAAABFAAABRQAAAl8AAAAXAAAAFwAAAxcAAAMXAAABFwAAAxcAAAJcAAACXwAAAF8AAABfAAAAFwAAAhcAAAAXAAADFwAAAxcAAAFfAAAAFwAAAhcAAAIXAAADFwAAAhcAAAEXAAADXAAAAV8AAABfAAAAXwAAAF8AAAAXAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAACFwAAAxcAAAFFAAADRQAAA0gAAABIAAAARQAAAEgAAABFAAABRQAAAUgAAABIAAAAXwAAAFEAAAJfAAAAFwAAARcAAAAXAAACSwAAAEsAAABLAAADOgAAAUsAAAFLAAAASwAAAzoAAAFLAAAAOgAAAV8AAAAXAAABXwAAABcAAAAXAAABFwAAA0UAAAFIAAAASAAAAEUAAANIAAAASAAAAEUAAAJFAAACRQAAAEgAAABfAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAABcAAAEXAAACXwAAAF8AAAAXAAABFwAAA0UAAAEXAAACFwAAAxcAAAAXAAABFwAAAxcAAAFfAAAAFwAAAxcAAAIXAAAAFwAAA18AAABfAAAAFwAAARcAAAFFAAACRQAAAEgAAABFAAACRQAAAkgAAABFAAACXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAABcAAAIXAAAARQAAA0UAAANIAAAARQAAA0gAAABFAAABRQAAAEUAAABFAAACSAAAAEgAAABFAAABTwAAAF8AAAAXAAABFwAAA0UAAABIAAAARQAAA0UAAABFAAACFwAAAUUAAABfAAAARQAAA0gAAABFAAADUAAAAA== + tiles: RwAAAAACRwAAAAABRwAAAAAARwAAAAACTAAAAAAARwAAAAADRwAAAAACRwAAAAADTAAAAAAATAAAAAAARwAAAAADRwAAAAADTAAAAAAATAAAAAAARwAAAAABRwAAAAACTwAAAAACTwAAAAACTwAAAAABTwAAAAADTwAAAAABTwAAAAABTwAAAAABTwAAAAACTwAAAAADTwAAAAADTwAAAAADTwAAAAACTwAAAAADTwAAAAADTwAAAAACTwAAAAACTAAAAAAATAAAAAAARwAAAAACRwAAAAABRwAAAAABRwAAAAABRwAAAAACRwAAAAADRwAAAAADTAAAAAAARwAAAAAARwAAAAACRwAAAAABTAAAAAAATAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACTAAAAAAARwAAAAABTAAAAAAARwAAAAADZAAAAAAAFgAAAAACFgAAAAABFgAAAAAAFgAAAAABFgAAAAAAZAAAAAAAYQAAAAABFgAAAAABUwAAAAAAZAAAAAAARwAAAAADTAAAAAAARwAAAAAARwAAAAABRwAAAAACZAAAAAAAFgAAAAAAFgAAAAADFgAAAAADFgAAAAABFgAAAAADFgAAAAACYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAADFgAAAAADFgAAAAABZAAAAAAAFgAAAAACFgAAAAACFgAAAAADFgAAAAACFgAAAAABFgAAAAADYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAABRwAAAAADRwAAAAADTAAAAAAATAAAAAAARwAAAAAATAAAAAAARwAAAAABRwAAAAABTAAAAAAATAAAAAAAZAAAAAAAVQAAAAACZAAAAAAAFgAAAAABFgAAAAAAFgAAAAACTwAAAAAATwAAAAAATwAAAAADOwAAAAABTwAAAAABTwAAAAAATwAAAAADOwAAAAABTwAAAAAAOwAAAAABZAAAAAAAFgAAAAABZAAAAAAAFgAAAAAAFgAAAAABFgAAAAADRwAAAAABTAAAAAAATAAAAAAARwAAAAADTAAAAAAATAAAAAAARwAAAAACRwAAAAACRwAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAABFgAAAAACZAAAAAAAZAAAAAAAFgAAAAABFgAAAAADRwAAAAABFgAAAAACFgAAAAADFgAAAAAAFgAAAAABFgAAAAADFgAAAAABZAAAAAAAFgAAAAADFgAAAAACFgAAAAAAFgAAAAADZAAAAAAAZAAAAAAAFgAAAAABFgAAAAABRwAAAAACRwAAAAAATAAAAAAARwAAAAACRwAAAAACTAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAFgAAAAACFgAAAAAARwAAAAADRwAAAAADTAAAAAAARwAAAAADTAAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAACTAAAAAAATAAAAAAARwAAAAABUwAAAAAAZAAAAAAAFgAAAAABFgAAAAADRwAAAAAATAAAAAAARwAAAAADRwAAAAAARwAAAAACFgAAAAABRwAAAAAAZAAAAAAARwAAAAADTAAAAAAARwAAAAADVAAAAAAA + version: 6 0,-2: ind: 0,-2 - tiles: SAAAAEgAAABFAAADSAAAAEUAAANfAAAARQAAA0UAAABFAAADRQAAAl8AAAAXAAAAFwAAARcAAAIXAAADFwAAAksAAABLAAABSwAAA0sAAAFFAAABXwAAAF8AAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAkgAAABLAAADRQAAA0gAAABFAAACRQAAAkgAAABIAAAARQAAAUUAAAFFAAAASAAAAEgAAABFAAACXwAAAF8AAABFAAADOgAAAEsAAAJLAAAAOgAAAUsAAAFLAAAAOgAAA0sAAABLAAABSwAAA0sAAAFLAAACSwAAAVwAAANfAAAARQAAAkUAAABIAAAARQAAAkUAAABFAAADSAAAAEgAAABFAAABRQAAAkgAAABIAAAARQAAAEUAAANcAAADXwAAABcAAAAXAAABFwAAABcAAAEXAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAA18AAAAXAAADFwAAAxcAAAEXAAAAFwAAA18AAAAXAAACFwAAA18AAABfAAAAXwAAABcAAAMXAAADXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADXwAAAF8AAABfAAAAFwAAAhcAAAEXAAACFwAAABcAAAAXAAABFwAAAl8AAABFAAABSAAAAEgAAABFAAABSAAAAEgAAAAXAAACXwAAABcAAAEXAAABFwAAAhcAAAEXAAAAFwAAAxcAAAFfAAAASwAAADoAAABLAAABOgAAAEsAAANLAAADFwAAAV8AAAAXAAABFwAAAxcAAAIXAAADFwAAAxcAAAAXAAACXwAAAEgAAABFAAABRQAAA0gAAABFAAAASwAAAxcAAAJfAAAAFwAAAhcAAAFQAAAAUAAAAFAAAAAXAAADFwAAAF8AAAAXAAACRQAAAkUAAABIAAAASAAAAEsAAAMXAAADXwAAABcAAAEXAAABUAAAAFAAAABQAAAAFwAAARcAAABfAAAAFwAAAEUAAAFFAAADRQAAAkgAAABLAAAARQAAAl8AAABfAAAAXwAAAF8AAABLAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADSwAAA0sAAABLAAACSwAAA0sAAAJLAAACSwAAAksAAANLAAABXwAAABcAAAJIAAAARQAAAkUAAAJfAAAAKwAAACsAAAArAAAARQAAAEUAAAJIAAAASAAAAEUAAAJIAAAASwAAAl8AAAAXAAAAUAAAAFAAAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAkUAAAJFAAACSAAAAEsAAAEXAAAAFwAAAA== + tiles: TAAAAAAATAAAAAAARwAAAAADTAAAAAAARwAAAAADZAAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAACZAAAAAAAFgAAAAAAFgAAAAABFgAAAAACFgAAAAADFgAAAAACTwAAAAAATwAAAAABTwAAAAADTwAAAAABRwAAAAABZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACTAAAAAAATwAAAAADRwAAAAADTAAAAAAARwAAAAACRwAAAAACTAAAAAAATAAAAAAARwAAAAABRwAAAAABRwAAAAAATAAAAAAATAAAAAAARwAAAAACZAAAAAAAZAAAAAAARwAAAAADOwAAAAAATwAAAAACTwAAAAAAOwAAAAABTwAAAAABTwAAAAAAOwAAAAADTwAAAAAATwAAAAABTwAAAAADTwAAAAABTwAAAAACTwAAAAABYQAAAAADZAAAAAAARwAAAAACRwAAAAAATAAAAAAARwAAAAACRwAAAAAARwAAAAADTAAAAAAATAAAAAAARwAAAAABRwAAAAACTAAAAAAATAAAAAAARwAAAAAARwAAAAADYQAAAAADZAAAAAAAFgAAAAAAFgAAAAABFgAAAAAAFgAAAAABFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADZAAAAAAAFgAAAAADFgAAAAADFgAAAAABFgAAAAAAFgAAAAADZAAAAAAAFgAAAAACFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAACFgAAAAAAFgAAAAAAFgAAAAABFgAAAAACZAAAAAAARwAAAAABTAAAAAAATAAAAAAARwAAAAABTAAAAAAATAAAAAAAFgAAAAACZAAAAAAAFgAAAAABFgAAAAABFgAAAAACFgAAAAABFgAAAAAAFgAAAAADFgAAAAABZAAAAAAATwAAAAAAOwAAAAAATwAAAAABOwAAAAAATwAAAAADTwAAAAADFgAAAAABZAAAAAAAFgAAAAABFgAAAAADFgAAAAACFgAAAAADFgAAAAADFgAAAAAAFgAAAAACZAAAAAAATAAAAAAARwAAAAABRwAAAAADTAAAAAAARwAAAAAATwAAAAADFgAAAAACZAAAAAAAFgAAAAACFgAAAAABVAAAAAAAVAAAAAAAVAAAAAAAFgAAAAADFgAAAAAAZAAAAAAAFgAAAAACRwAAAAACRwAAAAAATAAAAAAATAAAAAAATwAAAAADFgAAAAADZAAAAAAAFgAAAAABFgAAAAABVAAAAAAAVAAAAAAAVAAAAAAAFgAAAAABFgAAAAAAZAAAAAAAFgAAAAAARwAAAAABRwAAAAADRwAAAAACTAAAAAAATwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADTwAAAAADTwAAAAAATwAAAAACTwAAAAADTwAAAAACTwAAAAACTwAAAAACTwAAAAADTwAAAAABZAAAAAAAFgAAAAACTAAAAAAARwAAAAACRwAAAAACZAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARwAAAAAARwAAAAACTAAAAAAATAAAAAAARwAAAAACTAAAAAAATwAAAAACZAAAAAAAFgAAAAAAVAAAAAAAVAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAACTAAAAAAATwAAAAABFgAAAAAAFgAAAAAA + version: 6 1,-2: ind: 1,-2 - tiles: FwAAABcAAAIXAAABXwAAABcAAAAXAAABFwAAA18AAAAXAAACXAAAAVwAAANcAAAAXAAAAysAAAAXAAABFwAAAV8AAABfAAAAXwAAAF8AAAAXAAACFwAAARcAAAIXAAAAFwAAAlwAAAFcAAACXAAAAlwAAAJcAAABXAAAA1wAAABFAAADSAAAAEUAAANfAAAAFwAAABcAAAAXAAAAXwAAABcAAABcAAAAXAAAAVwAAABcAAACXwAAABcAAAAXAAADSwAAAEsAAANFAAACXwAAAEUAAAAXAAADFwAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFfAAAAXwAAAEgAAABLAAACSAAAAF8AAABFAAAASAAAAEUAAABfAAAAXAAAA1wAAANcAAABRQAAARcAAAAXAAACFwAAABcAAAJIAAAASwAAAUgAAABfAAAARQAAAkUAAAFFAAACXwAAAFwAAABcAAACXAAAA0UAAAEXAAABFwAAAxcAAAIXAAABRQAAAUsAAANFAAAAXwAAAEUAAABIAAAARQAAAF8AAABcAAABXAAAAVwAAAFFAAABFwAAARcAAAIXAAABFwAAAEgAAABLAAAASAAAAF8AAABfAAAARQAAAkUAAAFfAAAAWwAAAlsAAAJbAAABRQAAAEUAAAFfAAAAXwAAAF8AAABIAAAASwAAA0UAAAFfAAAARQAAAEgAAABIAAAAXwAAAF8AAABFAAADRQAAAkUAAAJFAAAASAAAAEgAAABIAAAARQAAAEsAAAJFAAAARQAAA0gAAABFAAAARQAAA0gAAABFAAABRQAAA0UAAANFAAADSAAAAEUAAAFFAAACRQAAA0UAAAFLAAAAOgAAAEsAAAJLAAABOgAAAEsAAANLAAAAOgAAAEsAAABLAAADSwAAAksAAANLAAAASwAAAksAAANIAAAASAAAAEgAAABFAAABSAAAAEgAAABFAAACRQAAAUUAAAFFAAABRQAAAUgAAABFAAACFwAAAEgAAABIAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAACRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAIXAAABXwAAAEUAAAFFAAADSAAAAEgAAAAXAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAARQAAAUUAAAAXAAABFwAAAV8AAABFAAABSAAAAEUAAAFFAAABFwAAA18AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAIXAAABFwAAARcAAAEXAAABFwAAARcAAAMXAAABXwAAAF8AAABPAAAAXwAAAF8AAABRAAABUQAAAw== + tiles: FgAAAAAAFgAAAAACFgAAAAABZAAAAAAAFgAAAAAAFgAAAAABFgAAAAADZAAAAAAAFgAAAAACYQAAAAABYQAAAAADYQAAAAAAYQAAAAADKgAAAAAAFgAAAAABFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAACFgAAAAAAFgAAAAACYQAAAAABYQAAAAACYQAAAAACYQAAAAACYQAAAAABYQAAAAADYQAAAAAARwAAAAADTAAAAAAARwAAAAADZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAZAAAAAAAFgAAAAAAYQAAAAAAYQAAAAABYQAAAAAAYQAAAAACZAAAAAAAFgAAAAAAFgAAAAADTwAAAAAATwAAAAADRwAAAAACZAAAAAAARwAAAAAAFgAAAAADFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAATAAAAAAATwAAAAACTAAAAAAAZAAAAAAARwAAAAAATAAAAAAARwAAAAAAZAAAAAAAYQAAAAADYQAAAAADYQAAAAABRwAAAAABFgAAAAAAFgAAAAACFgAAAAAAFgAAAAACTAAAAAAATwAAAAABTAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAACZAAAAAAAYQAAAAAAYQAAAAACYQAAAAADRwAAAAABFgAAAAABFgAAAAADFgAAAAACFgAAAAABRwAAAAABTwAAAAADRwAAAAAAZAAAAAAARwAAAAAATAAAAAAARwAAAAAAZAAAAAAAYQAAAAABYQAAAAABYQAAAAABRwAAAAABFgAAAAABFgAAAAACFgAAAAABFgAAAAAATAAAAAAATwAAAAAATAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABZAAAAAAAYAAAAAACYAAAAAACYAAAAAABRwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATwAAAAADRwAAAAABZAAAAAAARwAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAAATAAAAAAATAAAAAAATAAAAAAARwAAAAAATwAAAAACRwAAAAAARwAAAAADTAAAAAAARwAAAAAARwAAAAADTAAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAADTAAAAAAARwAAAAABRwAAAAACRwAAAAADRwAAAAABTwAAAAAAOwAAAAAATwAAAAACTwAAAAABOwAAAAAATwAAAAADTwAAAAAAOwAAAAAATwAAAAAATwAAAAADTwAAAAACTwAAAAADTwAAAAAATwAAAAACTwAAAAADTAAAAAAATAAAAAAATAAAAAAARwAAAAABTAAAAAAATAAAAAAARwAAAAACRwAAAAABRwAAAAABRwAAAAABRwAAAAABTAAAAAAARwAAAAACFgAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABZAAAAAAARwAAAAABRwAAAAADTAAAAAAATAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAAFgAAAAABFgAAAAABZAAAAAAARwAAAAABTAAAAAAARwAAAAABRwAAAAABFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAACFgAAAAABFgAAAAABFgAAAAABFgAAAAABFgAAAAABFgAAAAADFgAAAAABZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAVQAAAAABVQAAAAAD + version: 6 1,-1: ind: 1,-1 - tiles: XwAAAF8AAABfAAAAXwAAABcAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAAXAAAAFwAAA18AAABIAAAARQAAA18AAAAXAAADFwAAAhcAAAFfAAAAFwAAABcAAAFfAAAAXgAAAF8AAAAXAAADFwAAARcAAAFfAAAASAAAAEUAAAFfAAAAXwAAAF8AAABfAAAAXwAAABcAAAMXAAACXwAAAF4AAABfAAAAFwAAARcAAAEXAAACXwAAAEgAAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAABcAAAMXAAACFwAAAV8AAABIAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAUQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABfAAAATwAAAE8AAABfAAAAOwAAAF8AAAA7AAAAXwAAADsAAABfAAAAOwAAAF8AAAA7AAAAXwAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAADsAAABfAAAAOwAAAF8AAAA7AAAAXwAAADsAAABfAAAAOwAAAF8AAABeAAAAXgAAAF8AAABQAAAARQAAAw== + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAADZAAAAAAATAAAAAAARwAAAAADZAAAAAAAFgAAAAADFgAAAAACFgAAAAABZAAAAAAAFgAAAAAAFgAAAAABZAAAAAAAYwAAAAAAZAAAAAAAFgAAAAADFgAAAAABFgAAAAABZAAAAAAATAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAACZAAAAAAAYwAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAACZAAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAFgAAAAADFgAAAAACFgAAAAABZAAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAVQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAPAAAAAAAZAAAAAAAPAAAAAAAZAAAAAAAPAAAAAAAZAAAAAAAPAAAAAAAZAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAZAAAAAAAPAAAAAAAZAAAAAAAPAAAAAAAZAAAAAAAPAAAAAAAZAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAVAAAAAAARwAAAAAD + version: 6 -1,-3: ind: -1,-3 - tiles: AAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAATwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAAXAAADFwAAAhcAAAIXAAAAFwAAARcAAAJQAAAAXwAAAFAAAABfAAAAFwAAARcAAAIXAAAAFwAAAxcAAAEXAAADFwAAAhcAAAMXAAAAFwAAARcAAAIXAAABRQAAAl8AAABfAAAAXwAAABcAAAMXAAABFwAAABcAAAIXAAACFwAAARcAAABFAAACRQAAAEUAAAJFAAADRQAAA18AAABfAAAAUAAAAF8AAAAXAAACFwAAABcAAAAXAAADXwAAABcAAAMXAAADRQAAAkUAAANFAAADRQAAABcAAABfAAAARQAAAl8AAABfAAAAFwAAAxcAAAMXAAAAFwAAABcAAAMXAAADFwAAAF8AAABFAAADRQAAAF8AAABfAAAAXwAAAEUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkgAAABfAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAACFgAAAAACFgAAAAAAFgAAAAABFgAAAAACVAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAFgAAAAABFgAAAAACFgAAAAAAFgAAAAADFgAAAAABFgAAAAADFgAAAAACFgAAAAADFgAAAAAAFgAAAAABFgAAAAACFgAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAABFgAAAAAAFgAAAAACFgAAAAACFgAAAAABFgAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAAAFgAAAAADZAAAAAAAFgAAAAADFgAAAAADRwAAAAACRwAAAAADRwAAAAADRwAAAAAAFgAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAFgAAAAADFgAAAAADFgAAAAAAFgAAAAAAFgAAAAADFgAAAAADFgAAAAAAZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACTAAAAAAAZAAAAAAAZAAAAAAA + version: 6 0,-3: ind: 0,-3 - tiles: XgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAxcAAAFFAAABRQAAABcAAAEXAAAAXwAAABwAAAEcAAABHAAAABwAAABfAAAAFwAAAxcAAAAXAAABXwAAABcAAAEXAAACRQAAA0UAAAAXAAACFwAAAxcAAAEXAAACFwAAABcAAAIXAAAAXwAAABcAAAAPAAAAFwAAAV8AAAAXAAACFwAAAUUAAAJFAAACFwAAARcAAAJfAAAAHAAAABwAAAEcAAABHAAAA18AAAAXAAADFwAAARcAAABfAAAAFwAAARcAAAEXAAADFwAAAxcAAAMXAAAAXwAAABcAAAMXAAACFwAAAhcAAANfAAAAXgAAABcAAABeAAAAXwAAABcAAAMXAAACFwAAAxcAAAIXAAADFwAAAl8AAAAcAAADHAAAARwAAAEcAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAV8AAABfAAAAFwAAARcAAAEXAAAAFwAAAxcAAAAXAAADFwAAAxcAAAIXAAAAXwAAABcAAAEXAAADFwAAABcAAAAXAAADXwAAABcAAAIXAAADFwAAABcAAAFFAAABRQAAA0UAAABFAAACRQAAAF8AAAAXAAABFwAAARcAAAAXAAACFwAAAl8AAAAXAAADFwAAAhcAAAEXAAADFwAAAhcAAAAXAAACFwAAARcAAAFfAAAAFwAAAxcAAAMXAAACFwAAAxcAAAFfAAAAFwAAARcAAAEXAAAAFwAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAEXAAACFwAAAhcAAAAXAAACXwAAAF8AAABfAAAARQAAAl8AAABfAAAARQAAA0UAAAFFAAABRQAAAV8AAAAXAAADFwAAAhcAAAAXAAAAFwAAAw== + tiles: YwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAABRwAAAAABRwAAAAAAFgAAAAABFgAAAAAAZAAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAABZAAAAAAAFgAAAAABFgAAAAACRwAAAAADRwAAAAAAFgAAAAACFgAAAAADFgAAAAABFgAAAAACFgAAAAAAFgAAAAACFgAAAAAAZAAAAAAAFgAAAAAADgAAAAAAFgAAAAABZAAAAAAAFgAAAAACFgAAAAABRwAAAAACRwAAAAACFgAAAAABFgAAAAACZAAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAADZAAAAAAAFgAAAAADFgAAAAABFgAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAADFgAAAAADFgAAAAADFgAAAAAAZAAAAAAAFgAAAAADFgAAAAACFgAAAAACFgAAAAADZAAAAAAAYwAAAAAAFgAAAAAAYwAAAAAAZAAAAAAAFgAAAAADFgAAAAACFgAAAAADFgAAAAACFgAAAAADFgAAAAACZAAAAAAAGwAAAAADGwAAAAABGwAAAAABGwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAAAFgAAAAADFgAAAAAAFgAAAAADFgAAAAADFgAAAAACFgAAAAAAZAAAAAAAFgAAAAABFgAAAAADFgAAAAAAFgAAAAAAFgAAAAADZAAAAAAAFgAAAAACFgAAAAADFgAAAAAAFgAAAAABRwAAAAABRwAAAAADRwAAAAAARwAAAAACRwAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAAAFgAAAAACFgAAAAACZAAAAAAAFgAAAAADFgAAAAACFgAAAAABFgAAAAADFgAAAAACFgAAAAAAFgAAAAACFgAAAAABFgAAAAABZAAAAAAAFgAAAAADFgAAAAADFgAAAAACFgAAAAADFgAAAAABZAAAAAAAFgAAAAABFgAAAAABFgAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAACFgAAAAACFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAABZAAAAAAAFgAAAAADFgAAAAACFgAAAAAAFgAAAAAAFgAAAAAD + version: 6 1,-3: ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAPAAAADwAAAA8AAAAXAAACXwAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAADwAAABcAAAEPAAAAFwAAA18AAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXwAAAA8AAAAXAAAADwAAABcAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABcAAAAPAAAAFwAAAA8AAAAXAAACXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAACDwAAABcAAAMPAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA8AAAAXAAACDwAAAF8AAABfAAAAFwAAABcAAAEXAAACFwAAAhcAAAEXAAABFwAAAxcAAAAXAAAAFwAAA18AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAAXAAACFwAAAxcAAAEXAAAAFwAAARcAAAMXAAACFwAAAxcAAAEXAAABFwAAAxcAAAEXAAAAXwAAABcAAAIXAAACFwAAARcAAAEXAAACFwAAAxcAAAMXAAAAFwAAAxcAAAAXAAAAFwAAAhcAAAEXAAABFwAAA18AAAAXAAAAFwAAARcAAAMXAAACFwAAABcAAAAXAAABFwAAAxcAAAEXAAACFwAAABcAAAAXAAAAFwAAAF8AAABfAAAAFwAAAhcAAAEXAAACFwAAARcAAAAXAAABFwAAAxcAAAAXAAAAFwAAABcAAAIXAAABFwAAAxcAAAJfAAAAFwAAAxcAAAMXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAhcAAAAXAAAAFwAAAhcAAAMXAAADFwAAA18AAAAXAAABXAAAA1wAAAJcAAADXAAAAisAAAAXAAABFwAAAg== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAADgAAAAAADgAAAAAADgAAAAAAFgAAAAACZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAADgAAAAAAFgAAAAABDgAAAAAAFgAAAAADZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAADgAAAAAAFgAAAAAADgAAAAAAFgAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAFgAAAAAADgAAAAAAFgAAAAAADgAAAAAAFgAAAAACZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACDgAAAAAAFgAAAAADDgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAADgAAAAAAFgAAAAACDgAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAABFgAAAAACFgAAAAACFgAAAAABFgAAAAABFgAAAAADFgAAAAAAFgAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAACFgAAAAADFgAAAAABFgAAAAAAFgAAAAABFgAAAAADFgAAAAACFgAAAAADFgAAAAABFgAAAAABFgAAAAADFgAAAAABFgAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAABFgAAAAABFgAAAAACFgAAAAADFgAAAAADFgAAAAAAFgAAAAADFgAAAAAAFgAAAAAAFgAAAAACFgAAAAABFgAAAAABFgAAAAADZAAAAAAAFgAAAAAAFgAAAAABFgAAAAADFgAAAAACFgAAAAAAFgAAAAAAFgAAAAABFgAAAAADFgAAAAABFgAAAAACFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAACFgAAAAABFgAAAAAAFgAAAAABFgAAAAADFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAACFgAAAAABFgAAAAADFgAAAAACZAAAAAAAFgAAAAADFgAAAAADFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAAAFgAAAAACFgAAAAADFgAAAAADFgAAAAADZAAAAAAAFgAAAAABYQAAAAADYQAAAAACYQAAAAADYQAAAAACKgAAAAAAFgAAAAABFgAAAAAC + version: 6 -2,-1: ind: -2,-1 - tiles: XwAAAEgAAABFAAABNQAAADUAAABfAAAARQAAAEsAAAFIAAAAXwAAAFwAAANcAAABXAAAA1wAAAFcAAAAXwAAAF8AAABfAAAARQAAAl8AAABfAAAAXwAAAEUAAABLAAABRQAAA18AAABcAAADXAAAAlwAAAFcAAABXAAAA18AAABcAAABXAAAAlwAAANcAAAAFwAAABcAAABIAAAASwAAAkUAAAFfAAAAXAAAAFwAAAJcAAACXAAAAlwAAAJfAAAAOgAAABcAAAI6AAABFwAAABcAAAIXAAADSAAAAEsAAAFFAAABXwAAAFwAAABcAAADXAAAAVwAAAFcAAABXwAAAFwAAANcAAAAXAAAAlwAAAMXAAACFwAAAUUAAAJLAAADSAAAAF8AAABfAAAAXwAAAF8AAAAyAAAAXwAAAF8AAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABSwAAAUUAAABfAAAAFwAAARcAAAEyAAAAMgAAADIAAABfAAAAXAAAAlwAAAJfAAAAXwAAAF8AAABfAAAASAAAAEsAAANFAAAAXwAAABcAAAEXAAAAMgAAADIAAAAyAAAAXwAAAFwAAABcAAADXwAAAF8AAABfAAAAXwAAAEgAAABLAAABSAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAACXAAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAUgAAABfAAAAXAAAAFwAAANcAAADXAAAA1wAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAFFAAADXwAAAFwAAAJcAAACXAAAA1wAAAFcAAAAXwAAABcAAAAXAAADFwAAAxcAAAIXAAAAFwAAA0UAAANFAAACRQAAAV8AAABcAAAAXAAAA1wAAAFcAAABXAAAAl8AAAAXAAADSQAAAUkAAAIXAAAAFwAAARcAAAJFAAABSwAAA0gAAABfAAAAXwAAAFwAAAJfAAAAXwAAAF8AAABfAAAAFwAAAUkAAAJJAAABFwAAAhcAAAIXAAADRQAAA0sAAAJIAAAAXAAAAAwAAAAMAAACDAAAAQwAAAEMAAACDAAAARcAAAFJAAAASQAAABcAAAEXAAAAFwAAAUgAAABLAAAARQAAAlwAAABcAAACDAAAAwwAAAEMAAADDAAAAwwAAAAXAAAASQAAAEkAAAIXAAAAFwAAARcAAANIAAAASwAAAkUAAANcAAABXAAAAVwAAAJcAAAAXAAAA1wAAANcAAABSQAAAEkAAAJJAAABSQAAAEkAAAJJAAADRQAAAksAAAFIAAAAXAAAA1wAAAFcAAABXAAAA1wAAAJcAAAAXAAAAQ== + tiles: ZAAAAAAATAAAAAAARwAAAAABNgAAAAAANgAAAAAAZAAAAAAARwAAAAAATwAAAAABTAAAAAAAZAAAAAAAYQAAAAADYQAAAAABYQAAAAADYQAAAAABYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAATwAAAAABRwAAAAADZAAAAAAAYQAAAAADYQAAAAACYQAAAAABYQAAAAABYQAAAAADZAAAAAAAYQAAAAABYQAAAAACYQAAAAADYQAAAAAAFgAAAAAAFgAAAAAATAAAAAAATwAAAAACRwAAAAABZAAAAAAAYQAAAAAAYQAAAAACYQAAAAACYQAAAAACYQAAAAACZAAAAAAAOwAAAAAAFgAAAAACOwAAAAABFgAAAAAAFgAAAAACFgAAAAADTAAAAAAATwAAAAABRwAAAAABZAAAAAAAYQAAAAAAYQAAAAADYQAAAAABYQAAAAABYQAAAAABZAAAAAAAYQAAAAADYQAAAAAAYQAAAAACYQAAAAADFgAAAAACFgAAAAABRwAAAAACTwAAAAADTAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABTwAAAAABRwAAAAAAZAAAAAAAFgAAAAABFgAAAAABMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAYQAAAAACYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATwAAAAADRwAAAAAAZAAAAAAAFgAAAAABFgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAYQAAAAAAYQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATwAAAAABTAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABTAAAAAAAZAAAAAAAYQAAAAAAYQAAAAADYQAAAAADYQAAAAADYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAADZAAAAAAAYQAAAAACYQAAAAACYQAAAAADYQAAAAABYQAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAADFgAAAAACFgAAAAAAFgAAAAADRwAAAAADRwAAAAACRwAAAAABZAAAAAAAYQAAAAAAYQAAAAADYQAAAAABYQAAAAABYQAAAAACZAAAAAAAFgAAAAADTQAAAAABTQAAAAACFgAAAAAAFgAAAAABFgAAAAACRwAAAAABTwAAAAADTAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABTQAAAAACTQAAAAABFgAAAAACFgAAAAACFgAAAAADRwAAAAADTwAAAAACTAAAAAAAYQAAAAAACwAAAAAACwAAAAACCwAAAAABCwAAAAABCwAAAAACCwAAAAABFgAAAAABTQAAAAAATQAAAAAAFgAAAAABFgAAAAAAFgAAAAABTAAAAAAATwAAAAAARwAAAAACYQAAAAAAYQAAAAACCwAAAAADCwAAAAABCwAAAAADCwAAAAADCwAAAAAAFgAAAAAATQAAAAAATQAAAAACFgAAAAAAFgAAAAABFgAAAAADTAAAAAAATwAAAAACRwAAAAADYQAAAAABYQAAAAABYQAAAAACYQAAAAAAYQAAAAADYQAAAAADYQAAAAABTQAAAAAATQAAAAACTQAAAAABTQAAAAAATQAAAAACTQAAAAADRwAAAAACTwAAAAABTAAAAAAAYQAAAAADYQAAAAABYQAAAAABYQAAAAADYQAAAAACYQAAAAAAYQAAAAAB + version: 6 -2,-2: ind: -2,-2 - tiles: RQAAAxcAAAMXAAAAFwAAARcAAAFfAAAASAAAAEUAAAFFAAACRQAAAkgAAABIAAAARQAAAEUAAAFFAAAASAAAABcAAAMXAAACFwAAAxcAAAMXAAACXwAAAEUAAAFLAAADSwAAAEsAAABLAAAASwAAAksAAABLAAABSwAAA0sAAAJFAAABSAAAAEgAAABIAAAARQAAA18AAABFAAACSwAAAkgAAABIAAAARQAAA0UAAABIAAAASAAAAEUAAABFAAACEAAAABAAAAJLAAADSAAAAEgAAABfAAAARQAAAksAAAFIAAAARQAAAV8AAABfAAAARQAAAF8AAAAXAAAAXwAAABAAAAIQAAADSwAAAkgAAABIAAAAXwAAAEgAAABLAAADRQAAA0UAAABfAAAAFwAAARcAAAIXAAACFwAAABcAAAAQAAAAEAAAAksAAANLAAAASwAAAkUAAABIAAAASwAAAUUAAABFAAAAFwAAARcAAAAXAAADFwAAARcAAAEXAAABEAAAARAAAANLAAACSwAAAUsAAABFAAAASwAAAEsAAANIAAAARQAAARcAAAIXAAADFwAAABcAAAMXAAAAFwAAARAAAAAQAAABSwAAAUUAAAFFAAAAXwAAAEUAAAJLAAABSAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAQAAABEAAAA0sAAANFAAABRQAAAV8AAABIAAAASwAAA0gAAABfAAAAMgAAADIAAABfAAAAMgAAADIAAABfAAAASAAAAEgAAABIAAAARQAAA0UAAABfAAAASAAAAEsAAANFAAABXwAAADIAAAAyAAAAXwAAADIAAAAyAAAAXwAAABcAAAAXAAAAFwAAAxcAAAMXAAABXwAAAEUAAABLAAADFwAAAV8AAABfAAAAXAAAAF8AAABcAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAASwAAAkUAAABfAAAAXAAAAVwAAAFcAAAAXAAAAVwAAAFfAAAAUQAAAFAAAABfAAAAXwAAAE8AAABfAAAARQAAAEsAAAFIAAAAXwAAAFwAAAJcAAAAXAAAAlwAAAJcAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABLAAACSAAAAFwAAABcAAABXAAAA1wAAAFcAAACXAAAAl8AAABfAAAARQAAAEgAAAA1AAAANQAAAF8AAABIAAAASwAAAEUAAAFcAAAAXAAAAlwAAAFcAAACXAAAAFwAAAJfAAAAXwAAAEUAAANFAAADNQAAADUAAABfAAAARQAAAEsAAAJFAAABXwAAAF8AAABfAAAAXwAAAFwAAANfAAAAXwAAAA== + tiles: RwAAAAADFgAAAAADFgAAAAAAFgAAAAABFgAAAAABZAAAAAAATAAAAAAARwAAAAABRwAAAAACRwAAAAACTAAAAAAATAAAAAAARwAAAAAARwAAAAABRwAAAAAATAAAAAAAFgAAAAADFgAAAAACFgAAAAADFgAAAAADFgAAAAACZAAAAAAARwAAAAABTwAAAAADTwAAAAAATwAAAAAATwAAAAAATwAAAAACTwAAAAAATwAAAAABTwAAAAADTwAAAAACRwAAAAABTAAAAAAATAAAAAAATAAAAAAARwAAAAADZAAAAAAARwAAAAACTwAAAAACTAAAAAAATAAAAAAARwAAAAADRwAAAAAATAAAAAAATAAAAAAARwAAAAAARwAAAAACDwAAAAAADwAAAAACTwAAAAADTAAAAAAATAAAAAAAZAAAAAAARwAAAAACTwAAAAABTAAAAAAARwAAAAABZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAFgAAAAAAZAAAAAAADwAAAAACDwAAAAADTwAAAAACTAAAAAAATAAAAAAAZAAAAAAATAAAAAAATwAAAAADRwAAAAADRwAAAAAAZAAAAAAAFgAAAAABFgAAAAACFgAAAAACFgAAAAAAFgAAAAAADwAAAAAADwAAAAACTwAAAAADTwAAAAAATwAAAAACRwAAAAAATAAAAAAATwAAAAABRwAAAAAARwAAAAAAFgAAAAABFgAAAAAAFgAAAAADFgAAAAABFgAAAAABFgAAAAABDwAAAAABDwAAAAADTwAAAAACTwAAAAABTwAAAAAARwAAAAAATwAAAAAATwAAAAADTAAAAAAARwAAAAABFgAAAAACFgAAAAADFgAAAAAAFgAAAAADFgAAAAAAFgAAAAABDwAAAAAADwAAAAABTwAAAAABRwAAAAABRwAAAAAAZAAAAAAARwAAAAACTwAAAAABTAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAADwAAAAABDwAAAAADTwAAAAADRwAAAAABRwAAAAABZAAAAAAATAAAAAAATwAAAAADTAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAZAAAAAAATAAAAAAATAAAAAAATAAAAAAARwAAAAADRwAAAAAAZAAAAAAATAAAAAAATwAAAAADRwAAAAABZAAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAADFgAAAAADFgAAAAABZAAAAAAARwAAAAAATwAAAAADFgAAAAABZAAAAAAAZAAAAAAAYQAAAAAAZAAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAATwAAAAACRwAAAAAAZAAAAAAAYQAAAAABYQAAAAABYQAAAAAAYQAAAAABYQAAAAABZAAAAAAAVQAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAAATwAAAAABTAAAAAAAZAAAAAAAYQAAAAACYQAAAAAAYQAAAAACYQAAAAACYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATwAAAAACTAAAAAAAYQAAAAAAYQAAAAABYQAAAAADYQAAAAABYQAAAAACYQAAAAACZAAAAAAAZAAAAAAARwAAAAAATAAAAAAANgAAAAAANgAAAAAAZAAAAAAATAAAAAAATwAAAAAARwAAAAABYQAAAAAAYQAAAAACYQAAAAABYQAAAAACYQAAAAAAYQAAAAACZAAAAAAAZAAAAAAARwAAAAADRwAAAAADNgAAAAAANgAAAAAAZAAAAAAARwAAAAAATwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADZAAAAAAAZAAAAAAA + version: 6 1,0: ind: 1,0 - tiles: XwAAADsAAABfAAAAOwAAAF8AAAA7AAAAXwAAADsAAABfAAAAOwAAAF8AAABeAAAAXgAAAF8AAABPAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABfAAAAXwAAAEUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXwAAAFEAAAFFAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABRAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAErAAAAKwAAACsAAAArAAAAKwAAACsAAAArAAAARQAAAUUAAANIAAAASAAAAEUAAABFAAADSAAAAEgAAAAXAAABRQAAAkgAAABIAAAARQAAA0gAAABIAAAARQAAAUUAAABLAAACSwAAAEsAAAFLAAADSwAAAEsAAAFLAAABSwAAAksAAAFLAAACSwAAAksAAANLAAAASwAAAksAAANLAAACSwAAAEUAAAJIAAAASAAAAEUAAAFIAAAASAAAAEUAAANLAAABSAAAAEUAAAFIAAAASAAAAEUAAAFFAAAARQAAAkUAAAJIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASwAAAkgAAABFAAAARQAAA0gAAABIAAAARQAAAEUAAABIAAAASAAAAF8AAAAXAAADFwAAAlwAAABcAAABXAAAAUsAAANFAAADXwAAAEUAAAFIAAAASAAAAEUAAANFAAACRQAAAEUAAAFfAAAAFwAAABcAAAFcAAABXAAAAVwAAANLAAAASAAAAF8AAABFAAADSAAAAEUAAABFAAACRQAAAUUAAAFIAAAAXwAAABcAAAAXAAADXAAAAlwAAANcAAABSwAAAEgAAABfAAAARQAAAkgAAABFAAABSAAAAF8AAABfAAAARQAAAF8AAABcAAADXAAAA0gAAABcAAAAXAAAAksAAANFAAADXwAAAEUAAAFIAAAARQAAAUgAAABIAAAAFwAAAUgAAABIAAAASAAAAEgAAABIAAAASAAAAEgAAABLAAADSAAAAF8AAABFAAABRQAAAEUAAABIAAAASAAAAEUAAABFAAAARQAAAEUAAAJFAAACSAAAAEgAAABFAAAASwAAAEgAAABfAAAARQAAA0UAAAJFAAADRQAAAUUAAAJFAAACRQAAAUgAAABIAAAASAAAAEgAAABIAAAARQAAAA== + tiles: ZAAAAAAAPAAAAAAAZAAAAAAAPAAAAAAAZAAAAAAAPAAAAAAAZAAAAAAAPAAAAAAAZAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAUwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAVQAAAAABRwAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAVQAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARwAAAAABRwAAAAADTAAAAAAATAAAAAAARwAAAAAARwAAAAADTAAAAAAATAAAAAAAFgAAAAABRwAAAAACTAAAAAAATAAAAAAARwAAAAADTAAAAAAATAAAAAAARwAAAAABRwAAAAAATwAAAAACTwAAAAAATwAAAAABTwAAAAADTwAAAAAATwAAAAABTwAAAAABTwAAAAACTwAAAAABTwAAAAACTwAAAAACTwAAAAADTwAAAAAATwAAAAACTwAAAAADTwAAAAACTwAAAAAARwAAAAACTAAAAAAATAAAAAAARwAAAAABTAAAAAAATAAAAAAARwAAAAADTwAAAAABTAAAAAAARwAAAAABTAAAAAAATAAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAACTAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAACTAAAAAAARwAAAAAARwAAAAADTAAAAAAATAAAAAAARwAAAAAARwAAAAAATAAAAAAATAAAAAAAZAAAAAAAFgAAAAADFgAAAAACYQAAAAAAYQAAAAABYQAAAAABTwAAAAADRwAAAAADZAAAAAAARwAAAAABTAAAAAAATAAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAABZAAAAAAAFgAAAAAAFgAAAAABYQAAAAABYQAAAAABYQAAAAADTwAAAAAATAAAAAAAZAAAAAAARwAAAAADTAAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAABTAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADYQAAAAACYQAAAAADYQAAAAABTwAAAAAATAAAAAAAZAAAAAAARwAAAAACTAAAAAAARwAAAAABTAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAYQAAAAADYQAAAAADTAAAAAAAYQAAAAAAYQAAAAACTwAAAAADRwAAAAADZAAAAAAARwAAAAABTAAAAAAARwAAAAABTAAAAAAATAAAAAAAFgAAAAABTAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATwAAAAADTAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAAATAAAAAAATAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAACTAAAAAAATAAAAAAARwAAAAAATwAAAAAATAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAABRwAAAAACRwAAAAACRwAAAAABTAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAARwAAAAAA + version: 6 2,-1: ind: 2,-1 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABFAAABSwAAA0UAAAFfAAAAFwAAAkUAAABFAAABRQAAAkUAAANFAAABRQAAA1wAAAFcAAACXAAAAVwAAABfAAAARQAAAksAAAJIAAAAFwAAAhcAAAEXAAAAFwAAAxcAAAEXAAADFwAAAhcAAABcAAABXAAAAFwAAABcAAADXwAAAEUAAAFLAAACSAAAAF8AAAAXAAADFwAAAxcAAAEXAAAAFwAAARcAAAEXAAABXAAAAFwAAAJcAAACXAAAAV8AAABFAAACSwAAAEUAAABfAAAAFwAAARcAAAIXAAAAFwAAAxcAAAIXAAABFwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0sAAAJFAAACXwAAABcAAAEXAAAAFwAAAl8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXwAAAEgAAAA6AAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAxcAAAIXAAAAXwAAAF8AAABfAAAAXgAAAF8AAABIAAAASwAAA0gAAABIAAAASAAAAEgAAABFAAACFwAAAxcAAAAXAAADFwAAAzsAAAA7AAAAOwAAAF4AAABfAAAARQAAAUsAAAJFAAACRQAAAUUAAABIAAAARQAAA18AAABbAAABWwAAA1sAAAI7AAAAOwAAADsAAABeAAAAXwAAAEUAAAFLAAAARQAAA0gAAABFAAADRQAAAEUAAANFAAAAWwAAAFsAAAFbAAADXwAAAF8AAABfAAAAXgAAAF8AAABIAAAASwAAAkgAAABIAAAARQAAAEUAAABFAAAARQAAAFsAAABbAAACWwAAAV4AAABeAAAAXgAAAF4AAABfAAAASAAAADoAAABIAAAAFwAAAkUAAAFIAAAARQAAAkUAAAFbAAADWwAAAFsAAAJfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJLAAADSAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAEUAAAJFAAABOgAAAUUAAAFfAAAASAAAAEgAAABIAAAAFwAAARcAAAEXAAADFwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUsAAAFFAAACXwAAAEUAAANIAAAARQAAAxcAAAIXAAABFwAAABcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABLAAAASAAAAF8AAABFAAACSAAAAEUAAAMXAAADFwAAAxcAAAAXAAADRQAAA0gAAABFAAACSAAAAF8AAABFAAABSwAAAUgAAABfAAAARQAAAUUAAABFAAACFwAAAhcAAAAXAAABFwAAAg== + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABTwAAAAADRwAAAAABZAAAAAAAFgAAAAACRwAAAAAARwAAAAABRwAAAAACRwAAAAADRwAAAAABRwAAAAADYQAAAAABYQAAAAACYQAAAAABYQAAAAAAZAAAAAAARwAAAAACTwAAAAACTAAAAAAAFgAAAAACFgAAAAABFgAAAAAAFgAAAAADFgAAAAABFgAAAAADFgAAAAACFgAAAAAAYQAAAAABYQAAAAAAYQAAAAAAYQAAAAADZAAAAAAARwAAAAABTwAAAAACTAAAAAAAZAAAAAAADgAAAAAADgAAAAAADgAAAAAAFgAAAAAAFgAAAAABFgAAAAABFgAAAAABYQAAAAAAYQAAAAACYQAAAAACYQAAAAABZAAAAAAARwAAAAACTwAAAAAARwAAAAAAZAAAAAAADgAAAAAADgAAAAAADgAAAAAAFgAAAAADFgAAAAACFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADTwAAAAACRwAAAAACZAAAAAAAFgAAAAABFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAATAAAAAAAOwAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAACFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAATAAAAAAATwAAAAADTAAAAAAATAAAAAAATAAAAAAATAAAAAAARwAAAAACFgAAAAADFgAAAAAAFgAAAAADFgAAAAADPAAAAAAAPAAAAAAAPAAAAAAAYwAAAAAAZAAAAAAARwAAAAABTwAAAAACRwAAAAACRwAAAAABRwAAAAAATAAAAAAARwAAAAADZAAAAAAAYAAAAAABYAAAAAADYAAAAAACPAAAAAAAPAAAAAAAPAAAAAAAYwAAAAAAZAAAAAAARwAAAAABTwAAAAAARwAAAAADTAAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAAAYAAAAAAAYAAAAAABYAAAAAADZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAATAAAAAAATwAAAAACTAAAAAAATAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAYAAAAAAAYAAAAAACYAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAATAAAAAAAOwAAAAAATAAAAAAAFgAAAAACRwAAAAABTAAAAAAARwAAAAACRwAAAAABYAAAAAADYAAAAAAAYAAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACTwAAAAADTAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAACRwAAAAABOwAAAAABRwAAAAABZAAAAAAATAAAAAAATAAAAAAATAAAAAAAFgAAAAABFgAAAAABFgAAAAADFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABTwAAAAABRwAAAAACZAAAAAAARwAAAAADTAAAAAAARwAAAAADFgAAAAACFgAAAAABFgAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATwAAAAAATAAAAAAAZAAAAAAARwAAAAACTAAAAAAARwAAAAADFgAAAAADFgAAAAADFgAAAAAAFgAAAAADRwAAAAADTAAAAAAARwAAAAACTAAAAAAAZAAAAAAARwAAAAABTwAAAAABTAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAACFgAAAAACFgAAAAAAFgAAAAABFgAAAAAC + version: 6 2,-2: ind: 2,-2 - tiles: FwAAABcAAANfAAAAFwAAARcAAAIXAAADFwAAABcAAAJfAAAAXwAAAF8AAAAXAAABFwAAA18AAABfAAAAXwAAAFwAAAFcAAACXwAAABcAAAEXAAABFwAAAF8AAAAXAAABFwAAABcAAAMXAAACFwAAAV8AAABfAAAAXwAAAF8AAAAXAAACFwAAA18AAAAXAAABFwAAAhcAAANfAAAAFwAAAFAAAABQAAAAUAAAABcAAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAFFAAACXwAAABcAAANQAAAAUAAAAFAAAAAXAAAAXwAAAF4AAABfAAAATwAAABcAAAEXAAAAXwAAAEUAAAJFAAABSAAAAF8AAAAXAAAAUAAAAFAAAABQAAAAFwAAAV8AAABeAAAAXwAAAFAAAAAXAAABFwAAAl8AAABIAAAARQAAAkUAAABfAAAAFwAAABcAAAMXAAACFwAAAxcAAAJfAAAAXwAAAF8AAABRAAAAFwAAAhcAAANfAAAARQAAAUgAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAACgAAABfAAAAUQAAAkUAAAJfAAAAXwAAAEUAAABFAAABXwAAAF8AAABfAAAATwAAAFAAAABfAAAAUQAAAV8AAABfAAAAXwAAAF8AAABFAAADRQAAA18AAABIAAAARQAAAkgAAABfAAAAXwAAAF8AAABfAAAAUAAAAE8AAABfAAAATwAAAE8AAABfAAAASAAAAEUAAANFAAAARQAAA0UAAAFIAAAASAAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEsAAANLAAADSwAAAksAAANLAAAASwAAAksAAABFAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABFAAACSAAAAEgAAABFAAABRQAAAEgAAABLAAABRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAACsAAABFAAADSwAAA0gAAABfAAAADwAAAA8AAAAXAAACFwAAAxcAAAMXAAACFwAAAEUAAAJPAAAATwAAAF8AAAArAAAASAAAAEsAAANIAAAAXwAAABcAAAEXAAACFwAAABcAAAAXAAAAFwAAARcAAAFfAAAAXwAAAE8AAABfAAAAKwAAAEgAAABLAAACRQAAAV8AAAAPAAAADwAAABcAAAMXAAADFwAAARcAAAIXAAACXwAAAF8AAABfAAAAXwAAACsAAABFAAAASwAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAg== + tiles: FgAAAAAAFgAAAAADZAAAAAAAFgAAAAABFgAAAAACFgAAAAADFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAACZAAAAAAAFgAAAAABFgAAAAABFgAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAADFgAAAAACFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAADZAAAAAAAFgAAAAABFgAAAAACFgAAAAADZAAAAAAAFgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAFgAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAABRwAAAAACZAAAAAAAFgAAAAADVAAAAAAAVAAAAAAAVAAAAAAAFgAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAFgAAAAABFgAAAAAAZAAAAAAARwAAAAACRwAAAAABTAAAAAAAZAAAAAAAFgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAFgAAAAABZAAAAAAAYwAAAAAAZAAAAAAAVAAAAAAAFgAAAAABFgAAAAACZAAAAAAATAAAAAAARwAAAAACRwAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAACFgAAAAADFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAVQAAAAAAFgAAAAACFgAAAAADZAAAAAAARwAAAAABTAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAJwAAAAAAZAAAAAAAVQAAAAACRwAAAAACZAAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAVAAAAAAAZAAAAAAAVQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADZAAAAAAATAAAAAAARwAAAAACTAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAATAAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAABTAAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAADTwAAAAADTwAAAAACTwAAAAADTwAAAAAATwAAAAACTwAAAAAARwAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAARwAAAAACTAAAAAAATAAAAAAARwAAAAABRwAAAAAATAAAAAAATwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAKgAAAAAARwAAAAADTwAAAAADTAAAAAAAZAAAAAAADgAAAAAADgAAAAAAFgAAAAACFgAAAAADFgAAAAADFgAAAAACFgAAAAAARwAAAAACUwAAAAAAUwAAAAAAZAAAAAAAKgAAAAAATAAAAAAATwAAAAADTAAAAAAAZAAAAAAAFgAAAAABFgAAAAACFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAABFgAAAAABZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAKgAAAAAATAAAAAAATwAAAAACRwAAAAABZAAAAAAADgAAAAAADgAAAAAAFgAAAAADFgAAAAADFgAAAAABFgAAAAACFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAKgAAAAAARwAAAAAATwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAC + version: 6 2,0: ind: 2,0 - tiles: RQAAAkgAAABFAAACRQAAAEUAAAJFAAACSwAAAkUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJIAAAASAAAAEUAAAJFAAADRQAAAUsAAAFIAAAARQAAA0UAAANFAAADRQAAA14AAABeAAAAXgAAAF8AAABFAAADSAAAAEgAAABIAAAAXwAAAEgAAABLAAACRQAAAV8AAABIAAAASAAAAEUAAANeAAAAXgAAAF4AAABfAAAARQAAA0UAAAFIAAAARQAAAUUAAAFFAAADSwAAAkgAAABfAAAARQAAAUUAAAJFAAADXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAUsAAAFIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAkgAAABIAAAARQAAAkUAAANLAAADRQAAA1sAAAFbAAABWwAAA18AAABXAAAAVwAAA18AAABXAAABSwAAA0sAAABLAAADSwAAAksAAAFLAAACSwAAAEUAAANbAAACWwAAAVsAAABfAAAAVwAAAFcAAANfAAAAVwAAA0UAAANIAAAASAAAAEUAAAJIAAAASAAAAEUAAABIAAAAWwAAA1sAAAJbAAABXwAAAFsAAAFfAAAAXwAAAFsAAAJfAAAAXwAAAF8AAABFAAAAXwAAAEgAAABFAAADSAAAAEgAAABIAAAAWgAAAVcAAANbAAACWwAAA1sAAAJbAAACXwAAAF8AAABPAAAAXwAAAF8AAAAXAAAARQAAAkgAAABIAAAARQAAA1oAAAJXAAACWwAAAFcAAAJXAAACVwAAAF8AAABRAAADXwAAAE8AAABfAAAAXwAAAFsAAANfAAAAWwAAAFsAAABfAAAAXwAAAFsAAAI6AAACVwAAAlcAAANfAAAATwAAAF8AAABIAAAAXwAAAFsAAABbAAADWwAAAlsAAAFbAAADWwAAA18AAABbAAADVwAAA1cAAAFXAAADXwAAAF8AAAAXAAACTwAAAF8AAABbAAAAWwAAAVsAAANbAAADWwAAA1sAAAJXAAACWwAAAlsAAAJbAAADWwAAAl8AAABfAAAATwAAAF8AAABbAAADWwAAAFsAAANbAAACWwAAA1sAAABbAAACXwAAAFsAAAJfAAAAXwAAAFsAAAFfAAAAXwAAAEUAAANFAAABXwAAAFsAAABbAAACWwAAAlsAAAFbAAACFwAAAV8AAABXAAADVwAAAF8AAABXAAAAXwAAAE8AAABFAAAASAAAAF8AAABbAAACWwAAAFsAAANbAAAAOwAAADsAAABfAAAAVwAAAVcAAANfAAAAVwAAAg== + tiles: RwAAAAACTAAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAACTwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACTAAAAAAATAAAAAAARwAAAAACRwAAAAADRwAAAAABTwAAAAABTAAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAADYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAARwAAAAADTAAAAAAATAAAAAAATAAAAAAAZAAAAAAATAAAAAAATwAAAAACRwAAAAABZAAAAAAATAAAAAAATAAAAAAARwAAAAADYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAABTAAAAAAARwAAAAABRwAAAAABRwAAAAADTwAAAAACTAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAADYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABTwAAAAABTAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACTAAAAAAATAAAAAAARwAAAAACRwAAAAADTwAAAAADRwAAAAADYAAAAAABYAAAAAABYAAAAAADZAAAAAAAXAAAAAAAXAAAAAADZAAAAAAAXAAAAAABTwAAAAADTwAAAAAATwAAAAADTwAAAAACTwAAAAABTwAAAAACTwAAAAAARwAAAAADYAAAAAACYAAAAAABYAAAAAAAZAAAAAAAXAAAAAAAXAAAAAADZAAAAAAAXAAAAAADRwAAAAADTAAAAAAATAAAAAAARwAAAAACTAAAAAAATAAAAAAARwAAAAAATAAAAAAAYAAAAAADYAAAAAACYAAAAAABZAAAAAAAYAAAAAABZAAAAAAAZAAAAAAAYAAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAATAAAAAAARwAAAAADTAAAAAAATAAAAAAATAAAAAAAXwAAAAABXAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAACZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAAARwAAAAACTAAAAAAATAAAAAAARwAAAAADXwAAAAACXAAAAAACYAAAAAAAXAAAAAACXAAAAAACXAAAAAAAZAAAAAAAVQAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYAAAAAADZAAAAAAAYAAAAAAAYAAAAAAAZAAAAAAAZAAAAAAAYAAAAAACOwAAAAACXAAAAAACXAAAAAADZAAAAAAAUwAAAAAAZAAAAAAATAAAAAAAZAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAADZAAAAAAAYAAAAAADXAAAAAADXAAAAAABXAAAAAADZAAAAAAAZAAAAAAAFgAAAAACUwAAAAAAZAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAACXAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAACZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAACZAAAAAAAYAAAAAACZAAAAAAAZAAAAAAAYAAAAAABZAAAAAAAZAAAAAAARwAAAAADRwAAAAABZAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAACFgAAAAABZAAAAAAAXAAAAAADXAAAAAAAZAAAAAAAXAAAAAAAZAAAAAAAUwAAAAAARwAAAAAATAAAAAAAZAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAXAAAAAABXAAAAAADZAAAAAAAXAAAAAAC + version: 6 3,0: ind: 3,0 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAWwAAAFsAAANbAAACXwAAABcAAAAXAAADFwAAARcAAAJfAAAAWwAAAVsAAAJbAAAAWwAAAl8AAAAXAAACFwAAAxcAAAMXAAADWwAAAU8AAAAXAAADFwAAAxcAAAEXAAAAHAAAAlsAAANbAAADVwAAAVsAAAEcAAAAFwAAAhcAAAIXAAAAFwAAAhcAAAJfAAAAFwAAAxcAAAIXAAABFwAAAV8AAABbAAACWwAAAVcAAAFbAAACXwAAABcAAAIXAAAAFwAAAhcAAABbAAACUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAWwAAAVsAAAFXAAACWwAAAV8AAAAXAAADFwAAARcAAAAXAAACWwAAAlAAAABXAAADXwAAAFcAAABXAAAAXwAAAFsAAANbAAADVwAAAFsAAANfAAAAFwAAAxcAAAAXAAACFwAAAVsAAABfAAAAVwAAAl8AAABXAAABVwAAAF8AAABbAAADWwAAAlcAAAJbAAACXwAAAFsAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAWwAAAl8AAABfAAAAXwAAAFsAAANbAAAAWwAAAxwAAAEXAAACFwAAABcAAAEXAAABFwAAABcAAAFbAAADWwAAAFsAAANbAAACWwAAAF8AAABXAAABVwAAAFcAAABfAAAAWwAAARcAAAMXAAADFwAAAxcAAAAXAAADVwAAAFcAAABXAAADVwAAAFcAAAJXAAACVwAAAVcAAABbAAACWwAAAlsAAABQAAAAFwAAA1AAAAAXAAABUAAAAFcAAABXAAADVwAAADoAAAJbAAAAXwAAAFsAAANXAAAAWwAAAVsAAAJbAAABUAAAABcAAANQAAAAFwAAAlAAAABXAAACVwAAAlcAAAJXAAADVwAAA1cAAAFXAAAAVwAAAVsAAANbAAACWwAAA1AAAAAXAAACUAAAABcAAABQAAAAWwAAAlsAAABbAAAAWwAAA1sAAABfAAAAWwAAAVcAAANbAAAAXwAAAFsAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAWwAAAV8AAABfAAAAXwAAAFsAAAFXAAAAWwAAAF8AAAAXAAADFwAAAhcAAAMXAAADXwAAAFwAAANXAAADXwAAAFcAAAJXAAACXwAAAFsAAABbAAADVwAAAVsAAAFfAAAAWwAAA1sAAABbAAAAWwAAAV8AAABcAAAAVwAAAF8AAABXAAABVwAAA18AAABbAAADWwAAAFcAAABbAAADXwAAAFsAAAJbAAACWwAAAlsAAAFfAAAAXAAAAw== + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYAAAAAAAYAAAAAADYAAAAAACZAAAAAAAFgAAAAAAFgAAAAADFgAAAAABFgAAAAACZAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACZAAAAAAAFgAAAAACFgAAAAADFgAAAAADFgAAAAADYAAAAAABUwAAAAAAFgAAAAADFgAAAAADFgAAAAABFgAAAAAAGwAAAAACYAAAAAADYAAAAAADXAAAAAABYAAAAAABGwAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAACFgAAAAACZAAAAAAAFgAAAAADFgAAAAACFgAAAAABFgAAAAABZAAAAAAAYAAAAAACYAAAAAABXAAAAAABYAAAAAACZAAAAAAAFgAAAAACFgAAAAAAFgAAAAACFgAAAAAAYAAAAAACVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYAAAAAABYAAAAAABXAAAAAACYAAAAAABZAAAAAAAFgAAAAADFgAAAAABFgAAAAAAFgAAAAACYAAAAAACVAAAAAAAXAAAAAADZAAAAAAAXAAAAAAAXAAAAAAAZAAAAAAAYAAAAAADYAAAAAADXAAAAAAAYAAAAAADZAAAAAAAFgAAAAADFgAAAAAAFgAAAAACFgAAAAABYAAAAAAAZAAAAAAAXAAAAAACZAAAAAAAXAAAAAABXAAAAAAAZAAAAAAAYAAAAAADYAAAAAACXAAAAAACYAAAAAACZAAAAAAAYAAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYAAAAAACZAAAAAAAZAAAAAAAZAAAAAAAYAAAAAADYAAAAAAAYAAAAAADGwAAAAABFgAAAAACFgAAAAAAFgAAAAABFgAAAAABFgAAAAAAFgAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAZAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAZAAAAAAAYAAAAAABFgAAAAADFgAAAAADFgAAAAADFgAAAAAAFgAAAAADXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAACXAAAAAACXAAAAAABXAAAAAAAYAAAAAACYAAAAAACYAAAAAAAVAAAAAAAFgAAAAADVAAAAAAAFgAAAAABVAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAOwAAAAACYAAAAAAAZAAAAAAAYAAAAAADXAAAAAAAYAAAAAABYAAAAAACYAAAAAABVAAAAAAAFgAAAAADVAAAAAAAFgAAAAACVAAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAADXAAAAAADXAAAAAABXAAAAAAAXAAAAAABYAAAAAADYAAAAAACYAAAAAADVAAAAAAAFgAAAAACVAAAAAAAFgAAAAAAVAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAZAAAAAAAYAAAAAABXAAAAAADYAAAAAAAZAAAAAAAYAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYAAAAAABZAAAAAAAZAAAAAAAZAAAAAAAYAAAAAABXAAAAAAAYAAAAAAAZAAAAAAAFgAAAAADFgAAAAACFgAAAAADFgAAAAADZAAAAAAAYQAAAAADXAAAAAADZAAAAAAAXAAAAAACXAAAAAACZAAAAAAAYAAAAAAAYAAAAAADXAAAAAABYAAAAAABZAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABZAAAAAAAYQAAAAAAXAAAAAAAZAAAAAAAXAAAAAABXAAAAAADZAAAAAAAYAAAAAADYAAAAAAAXAAAAAAAYAAAAAADZAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABZAAAAAAAYQAAAAAD + version: 6 3,-1: ind: 3,-1 - tiles: XwAAAF8AAAAXAAAAXwAAAF8AAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAAxcAAABfAAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAXwAAAFAAAABeAAAAXgAAAF4AAAAXAAACFwAAAxcAAAIXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAMXAAAAFwAAAF8AAAAXAAACFwAAABcAAAAXAAACXwAAABcAAAJfAAAAXwAAAF8AAABfAAAAUAAAAF8AAAAXAAABFwAAABcAAAIXAAADFwAAABcAAAEXAAACFwAAAhcAAAAXAAACXwAAAE8AAABfAAAAXwAAAFEAAABfAAAAFwAAAhcAAAMXAAADFwAAAxcAAAIXAAABFwAAABcAAANfAAAAFwAAAF8AAABfAAAAXwAAAE8AAABQAAAAFwAAARcAAAAXAAABFwAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADFwAAAxcAAANfAAAAFwAAAxcAAAMXAAABFwAAA18AAAAXAAAAXwAAAE8AAABfAAAAXgAAAF4AAABfAAAAFwAAABcAAAAXAAADFwAAAhcAAAIXAAACFwAAAhcAAAIXAAACFwAAA18AAABRAAAAXwAAAF8AAABfAAAAXwAAABcAAAIXAAACFwAAAV8AAAAXAAAAFwAAARcAAAAXAAACXwAAABcAAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAAAXAAABFwAAAxcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAACXwAAAF8AAABfAAAAUAAAAFEAAABfAAAAFwAAARcAAAEXAAACXwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAF8AAABRAAABXwAAAFAAAABfAAAAFwAAAxcAAAAXAAAAFwAAA18AAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAIXAAADFwAAAxcAAAJfAAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAXwAAAF8AAABeAAAAXgAAAF4AAAAXAAADFwAAABcAAAAXAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAFwAAARcAAAAXAAABFwAAAl8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABRAAAATwAAAA== + tiles: ZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAVAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAFgAAAAACFgAAAAADFgAAAAACFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAAAFgAAAAACZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAACFgAAAAADFgAAAAAAFgAAAAABFgAAAAACFgAAAAACFgAAAAAAFgAAAAACZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAVQAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAADFgAAAAADFgAAAAACFgAAAAABFgAAAAAAFgAAAAADZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAVAAAAAAAFgAAAAABFgAAAAAAFgAAAAABFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAADFgAAAAADZAAAAAAAFgAAAAADFgAAAAADFgAAAAABFgAAAAADZAAAAAAAFgAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAADFgAAAAACFgAAAAACFgAAAAACFgAAAAACFgAAAAACFgAAAAACFgAAAAADZAAAAAAAVQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAABZAAAAAAAFgAAAAAAFgAAAAABFgAAAAAAFgAAAAACZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAFgAAAAABFgAAAAADFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAVQAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAACZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAVQAAAAABZAAAAAAAVAAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAAAFgAAAAADZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAADFgAAAAACZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAFgAAAAADFgAAAAAAFgAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAABFgAAAAACZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVQAAAAAAUwAAAAAA + version: 6 3,-2: ind: 3,-2 - tiles: XwAAAF8AAABRAAABRQAAAUUAAAFFAAAAXwAAAAQAAAIEAAAABAAAAgQAAAEEAAAABAAAAgQAAAIEAAABBAAAAF8AAABQAAAATwAAAFEAAAJFAAADRQAAAl8AAABeAAAAXwAAAF8AAAAEAAABBAAAAgQAAAEEAAAABAAAAgQAAABfAAAAUAAAAF8AAABQAAAARQAAAkUAAANfAAAARQAAAUUAAABfAAAABAAAAgQAAAAEAAACBAAAAQQAAAIEAAAAXwAAAF8AAABfAAAAUQAAAEUAAANFAAADXwAAAEUAAANFAAAAXwAAAAQAAAEEAAABBAAAAAQAAAIEAAABBAAAAl8AAABfAAAATwAAAFAAAABFAAABRQAAAl8AAABFAAADRQAAA18AAAAEAAABBAAAAQQAAAIEAAABBAAAAAQAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAAQAAAEEAAACXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXAAAAl8AAABfAAAAXwAAAEUAAAJFAAADRQAAAV8AAAAEAAACBAAAAl8AAABfAAAAXwAAAF8AAABfAAAAXQAAAhEAAAVRAAACTwAAAF8AAABFAAABRQAAA0UAAAJfAAAABAAAAAQAAABfAAAAXwAAAFAAAABfAAAAUAAAAFwAAABcAAAAXwAAAFEAAABfAAAAXwAAAF8AAABfAAAAXwAAAAQAAAEEAAAAXwAAAF8AAABfAAAAXwAAAF8AAABdAAACXAAAA18AAABQAAAAKwAAACsAAAArAAAAKwAAAF8AAAAEAAACBAAAAl8AAABeAAAAXgAAAF4AAABfAAAAEQAAAlwAAABcAAACUQAAACsAAAArAAAAKwAAACsAAABfAAAABAAAAgQAAAJfAAAAXwAAAF8AAABfAAAAXwAAAFwAAAJdAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAAQAAAEEAAABXwAAAFwAAANcAAABXAAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUQAAAFAAAABfAAAAXwAAABcAAANcAAACXAAAAlwAAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAFwAAABcAAAIXAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABRAAABXwAAAF8AAABRAAACXwAAABcAAAIXAAAAFwAAAF8AAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAABfAAAATwAAAF8AAABQAAAATwAAAA== + tiles: ZAAAAAAAZAAAAAAAVQAAAAABRwAAAAABRwAAAAABRwAAAAAAZAAAAAAABgAAAAACBgAAAAAABgAAAAACBgAAAAABBgAAAAAABgAAAAACBgAAAAACBgAAAAABBgAAAAAAZAAAAAAAVAAAAAAAUwAAAAAAVQAAAAACRwAAAAADRwAAAAACZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAABgAAAAABBgAAAAACBgAAAAABBgAAAAAABgAAAAACBgAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAVAAAAAAARwAAAAACRwAAAAADZAAAAAAARwAAAAABRwAAAAAAZAAAAAAABgAAAAACBgAAAAAABgAAAAACBgAAAAABBgAAAAACBgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVQAAAAAARwAAAAADRwAAAAADZAAAAAAARwAAAAADRwAAAAAAZAAAAAAABgAAAAABBgAAAAABBgAAAAAABgAAAAACBgAAAAABBgAAAAACZAAAAAAAZAAAAAAAUwAAAAAAVAAAAAAARwAAAAABRwAAAAACZAAAAAAARwAAAAADRwAAAAADZAAAAAAABgAAAAABBgAAAAABBgAAAAACBgAAAAABBgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAABBgAAAAACZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAABZAAAAAAABgAAAAACBgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYgAAAAACEAAAAAAFVQAAAAACUwAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAACZAAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAVAAAAAAAYQAAAAAAYQAAAAAAZAAAAAAAVQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAABBgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYgAAAAACYQAAAAADZAAAAAAAVAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAZAAAAAAABgAAAAACBgAAAAACZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAEAAAAAACYQAAAAAAYQAAAAACVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAZAAAAAAABgAAAAACBgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYgAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAABBgAAAAABZAAAAAAAYQAAAAADYQAAAAABYQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVQAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADYQAAAAACYQAAAAACYQAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAACFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVQAAAAABZAAAAAAAZAAAAAAAVQAAAAACZAAAAAAAFgAAAAACFgAAAAAAFgAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAVAAAAAAAUwAAAAAA + version: 6 2,1: ind: 2,1 - tiles: XwAAAF8AAABfAAAARQAAA18AAABbAAABWwAAAVsAAAJbAAACOwAAADsAAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAIXAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAACYAAAAXAAAAFwAAARcAAAMXAAADFwAAARcAAAEXAAACFwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAAAmAAAAFwAAARcAAABfAAAAFwAAAxcAAAAXAAACFwAAAhcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAAJgAAABcAAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAACYAAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAmAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAl8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAABPAAAAXwAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAACPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAJQAAAAAAFgAAAAAAFgAAAAABFgAAAAADFgAAAAADFgAAAAABFgAAAAABFgAAAAACFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAJQAAAAAAFgAAAAABFgAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAACFgAAAAACFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAJQAAAAAAFgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAJQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAVQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 3,1: ind: 3,1 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABbAAABWwAAAVcAAABbAAAAVwAAAFsAAAFbAAABWwAAA1sAAANfAAAAXwAAACYAAAAmAAAAJgAAACYAAABbAAACWwAAAVsAAAJXAAACWwAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAAmAAAAJgAAACYAAAAmAAAAJgAAACYAAABbAAAAVwAAAFsAAANXAAACWwAAAVsAAAJbAAABVwAAAVsAAAJbAAADJgAAAF8AAAAmAAAAJgAAAF8AAABfAAAAVwAAAVcAAANXAAACXwAAAF8AAABbAAACWwAAAl8AAABbAAADVwAAACYAAABfAAAAJgAAACYAAABfAAAAWwAAAFsAAAFbAAAAWwAAA1sAAABfAAAAXwAAAF8AAABfAAAAWwAAA1sAAAEmAAAAXwAAACYAAAAmAAAAXwAAAFsAAAJbAAAAWwAAAlsAAAJbAAAAXwAAAF8AAABPAAAAXwAAAFsAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABbAAABWwAAAF8AAABRAAADXwAAAFAAAABfAAAAXwAAAFEAAABRAAADTwAAAE8AAABfAAAAXwAAAE8AAABfAAAAWwAAAlsAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAABcAAAIXAAAAFwAAAl8AAABfAAAAXwAAAFAAAABfAAAATwAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAAAcAAAAHAAAAxwAAABfAAAAXwAAAFEAAABfAAAAXwAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAOgAAAToAAAA6AAAAXwAAAFEAAANRAAACXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAACgAAAAoAAAAKAAAAF8AAABQAAAATwAAAF8AAABPAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUQAAAl8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAE8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAUAAAAA== + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYAAAAAABYAAAAAABXAAAAAAAYAAAAAAAXAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADZAAAAAAAZAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAYAAAAAACYAAAAAABYAAAAAACXAAAAAACYAAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAYAAAAAAAXAAAAAAAYAAAAAADXAAAAAACYAAAAAABYAAAAAACYAAAAAABXAAAAAABYAAAAAACYAAAAAADJQAAAAAAZAAAAAAAJQAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAXAAAAAABXAAAAAADXAAAAAACZAAAAAAAZAAAAAAAYAAAAAACYAAAAAACZAAAAAAAYAAAAAADXAAAAAAAJQAAAAAAZAAAAAAAJQAAAAAAJQAAAAAAZAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYAAAAAADYAAAAAABJQAAAAAAZAAAAAAAJQAAAAAAJQAAAAAAZAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYAAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAYAAAAAABYAAAAAAAZAAAAAAAVQAAAAADZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAVQAAAAAAVQAAAAADUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYAAAAAACYAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAUwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAGwAAAAAAGwAAAAADGwAAAAAAZAAAAAAAZAAAAAAAVQAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAOwAAAAABOwAAAAAAOwAAAAAAZAAAAAAAVQAAAAADVQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAZAAAAAAAVAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVQAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAVAAAAAAA + version: 6 4,0: ind: 4,0 - tiles: XwAAAF8AAABdAAADXAAAAlwAAAFdAAABXAAAA10AAAJfAAAAXgAAAF8AAAAcAAACHAAAAF8AAABQAAAAUAAAAF8AAABfAAAAUQAAABEAAAJcAAADXAAAAhEAAAZPAAAAXwAAAF4AAABfAAAAHAAAARwAAAMcAAACXAAAAlwAAAFRAAABXwAAAF8AAABfAAAAXwAAAFEAAABcAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAAJcAAADUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABQAAAAUAAAAFEAAANfAAAAXwAAAFAAAABfAAAAXwAAAE8AAABfAAAAXwAAAFAAAABRAAADXwAAAF8AAABfAAAAUAAAAFAAAABRAAAAUQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAUAAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAhcAAABfAAAAXAAAAFAAAABfAAAAXAAAAlAAAABfAAAAUAAAAF8AAABfAAAAXwAAAFAAAABPAAAAXwAAAEUAAAMXAAAAXwAAAF8AAABcAAACXAAAAVwAAANcAAACXwAAAFEAAAFfAAAAXwAAAF8AAABfAAAATwAAAF8AAABFAAADFwAAAV8AAABcAAAAXAAAAlwAAAJcAAAAXAAAAV8AAABfAAAAUAAAAE8AAABfAAAAUQAAAV8AAABfAAAASAAAABcAAAFfAAAAXAAAAFwAAANfAAAAXAAAAFwAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAAAXAAACXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAF8AAABPAAAAXwAAAF8AAAAXAAADXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABfAAAAXwAAAFAAAABfAAAAFwAAA1wAAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABPAAAAXwAAABcAAAJcAAACXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAV8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAABfAAAAXwAAAA== + tiles: ZAAAAAAAZAAAAAAAYgAAAAADYQAAAAACYQAAAAABYgAAAAABYQAAAAADYgAAAAACZAAAAAAAYwAAAAAAZAAAAAAAGwAAAAACGwAAAAAAZAAAAAAAVAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAVQAAAAAAEAAAAAACYQAAAAADYQAAAAACEAAAAAAGUwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAGwAAAAABGwAAAAADGwAAAAACYQAAAAACYQAAAAABVQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVQAAAAAAYQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAADVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAVAAAAAAAVQAAAAADZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAVQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAVAAAAAAAVQAAAAAAVQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAVAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAAAZAAAAAAAYQAAAAAAVAAAAAAAZAAAAAAAYQAAAAACVAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAUwAAAAAAZAAAAAAARwAAAAADFgAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAABYQAAAAADYQAAAAACZAAAAAAAVQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAADFgAAAAABZAAAAAAAYQAAAAAAYQAAAAACYQAAAAACYQAAAAAAYQAAAAABZAAAAAAAZAAAAAAAVAAAAAAAUwAAAAAAZAAAAAAAVQAAAAABZAAAAAAAZAAAAAAATAAAAAAAFgAAAAABZAAAAAAAYQAAAAAAYQAAAAADZAAAAAAAYQAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAFgAAAAACZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAFgAAAAADYQAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAFgAAAAACYQAAAAACZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + version: 6 4,1: ind: 4,1 - tiles: XwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABFAAAASAAAABcAAAEXAAACFwAAARcAAAIXAAABFwAAAV8AAABeAAAAXgAAAF4AAAAAAAAAXwAAAF8AAABfAAAASAAAAEUAAABbAAADWwAAA1sAAANbAAACWwAAA1sAAABfAAAAXgAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAVwAAA1cAAANXAAABVwAAAFcAAAFbAAAAXwAAAF4AAAAAAAAAXgAAAAAAAABfAAAATwAAAF8AAABeAAAAXgAAAFsAAANbAAADWwAAAVsAAABbAAACWwAAAV8AAABeAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXgAAAAAAAABfAAAAWwAAAl8AAABfAAAAWwAAAV8AAABfAAAAXgAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAAF4AAAAAAAAAXwAAAFsAAABbAAAAXwAAAFsAAABbAAADXwAAAF4AAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABeAAAAAAAAAF8AAABbAAAAWwAAAF8AAABbAAABWwAAAl8AAABeAAAAXgAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAAF4AAAAAAAAAXwAAAFEAAABQAAAAXwAAAFEAAANfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABeAAAAAAAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUQAAAU8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABPAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAUQAAA18AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF8AAABcAAAAUQAAAFwAAAFfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXAAAAVwAAANfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAA== + tiles: ZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAATAAAAAAAFgAAAAABFgAAAAACFgAAAAABFgAAAAACFgAAAAABFgAAAAABZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAARwAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXAAAAAADXAAAAAADXAAAAAABXAAAAAAAXAAAAAABYAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAABZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYAAAAAACZAAAAAAAZAAAAAAAYAAAAAABZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYAAAAAAAYAAAAAAAZAAAAAAAYAAAAAAAYAAAAAADZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYAAAAAAAYAAAAAAAZAAAAAAAYAAAAAABYAAAAAACZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAVQAAAAAAVAAAAAAAZAAAAAAAVQAAAAADZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVQAAAAABUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYQAAAAAAVQAAAAAAYQAAAAABZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYQAAAAABYQAAAAADZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAA + version: 6 1,1: ind: 1,1 - tiles: RQAAAUgAAABfAAAARQAAA0gAAABFAAADRQAAA0UAAAFIAAAARQAAAkUAAANFAAABFwAAA0UAAABFAAADRQAAAF8AAABfAAAAXwAAAEUAAAFIAAAASAAAAEUAAANFAAAASAAAAEUAAAFfAAAAFwAAABcAAAIXAAACFwAAABcAAAIXAAADFwAAAF8AAABFAAACSAAAAEgAAABIAAAARQAAAEgAAABFAAADXwAAABcAAAIXAAAAFwAAABcAAAIXAAAAFwAAABcAAABfAAAARQAAAUUAAABFAAABRQAAA0UAAABFAAACRQAAAF8AAAAXAAADFwAAAhcAAAIXAAACFwAAAxcAAAMXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAhcAAAMXAAABFwAAABcAAAMXAAADFwAAAV8AAAAXAAADFwAAAF8AAABfAAAAXwAAABcAAAAXAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: RwAAAAABTAAAAAAAZAAAAAAARwAAAAADTAAAAAAARwAAAAADRwAAAAADRwAAAAABTAAAAAAARwAAAAACRwAAAAADRwAAAAABFgAAAAADRwAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABTAAAAAAATAAAAAAARwAAAAADRwAAAAAATAAAAAAARwAAAAABZAAAAAAAFgAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAACFgAAAAADFgAAAAAAZAAAAAAARwAAAAACTAAAAAAATAAAAAAATAAAAAAARwAAAAAATAAAAAAARwAAAAADZAAAAAAAFgAAAAACFgAAAAAAFgAAAAAAFgAAAAACFgAAAAAAFgAAAAAAFgAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAACRwAAAAAAZAAAAAAAFgAAAAADFgAAAAACFgAAAAACFgAAAAACFgAAAAADFgAAAAADFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAABFgAAAAAAFgAAAAADFgAAAAADFgAAAAABZAAAAAAAFgAAAAADFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,2: ind: 2,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -1,1: ind: -1,1 - tiles: FwAAAUgAAABFAAADRQAAAUgAAABIAAAARQAAAkgAAABIAAAARQAAA0UAAAFIAAAASAAAAEUAAABIAAAASAAAAF8AAABfAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABFAAADRQAAAkgAAABIAAAAFwAAAhcAAAAXAAABRQAAAkgAAABIAAAAFwAAAxcAAAAXAAACXwAAAF8AAABfAAAARQAAAEUAAAJIAAAARQAAAxcAAAIXAAAAFwAAAkUAAAJIAAAASAAAABcAAAEXAAADFwAAABcAAAAXAAADFwAAAF8AAABfAAAAXwAAABcAAAIXAAACFwAAAhcAAAFfAAAAXwAAAF8AAAAXAAADFwAAARcAAAI7AAAAOwAAADsAAAAXAAADFwAAAhcAAAEXAAADFwAAARcAAAMXAAAAFwAAABcAAAIXAAADFwAAABcAAAIXAAABFwAAABcAAAA7AAAAHAAAARcAAAAXAAADFwAAARcAAAEXAAABFwAAABcAAAMXAAACFwAAAxcAAAAXAAADFwAAAxcAAAAXAAACOwAAABcAAAMXAAADFwAAARcAAAIXAAAAFwAAAhcAAAAXAAACFwAAAhcAAAAXAAAAOgAAABcAAABFAAACRQAAABcAAAEXAAAAFwAAAxcAAAMXAAADFwAAAxcAAAIXAAAAFwAAAxcAAAIXAAADFwAAABcAAAMXAAAAOwAAADsAAAAXAAACFwAAAxcAAAIXAAACFwAAABcAAAMXAAAAFwAAAhcAAAMXAAAAFwAAAhcAAAM6AAAAFwAAATsAAAA7AAAAFwAAABcAAAEXAAACFwAAAxcAAAIXAAADFwAAABcAAAIXAAAAFwAAARcAAAEXAAACFwAAABcAAANfAAAAXwAAAF8AAABfAAAAFwAAAhcAAAAXAAABFwAAARcAAAIXAAABFwAAARcAAAEXAAAAFwAAARcAAAMXAAADXwAAAF8AAABfAAAAXwAAABcAAAMXAAADFwAAAxcAAAEXAAABFwAAABcAAAMXAAAAFwAAAxcAAAIXAAAAFwAAAE8AAABQAAAAXwAAAF8AAABQAAAAXwAAABcAAAMXAAACFwAAAxcAAAAXAAADFwAAAxcAAAAXAAAAFwAAABcAAABfAAAATwAAAFEAAAFfAAAAXwAAAF8AAAAXAAACFwAAAhcAAAEXAAACFwAAARcAAAEXAAADFwAAABcAAAEXAAADXwAAABcAAABfAAAAXwAAAFAAAABRAAADFwAAARcAAAEXAAADFwAAA0UAAAFFAAABFwAAAhcAAAMXAAAAFwAAAA== + tiles: FgAAAAABTAAAAAAARwAAAAADRwAAAAABTAAAAAAATAAAAAAARwAAAAACTAAAAAAATAAAAAAARwAAAAADRwAAAAABTAAAAAAATAAAAAAARwAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAADRwAAAAACTAAAAAAATAAAAAAAFgAAAAACFgAAAAAAFgAAAAABRwAAAAACTAAAAAAATAAAAAAAFgAAAAADFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACTAAAAAAARwAAAAADFgAAAAACFgAAAAAAFgAAAAACRwAAAAACTAAAAAAATAAAAAAAFgAAAAABFgAAAAADFgAAAAAAFgAAAAAAFgAAAAADFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAACFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAABFgAAAAACPAAAAAAAPAAAAAAAPAAAAAAAFgAAAAADFgAAAAACFgAAAAABFgAAAAADFgAAAAABFgAAAAADFgAAAAAAFgAAAAAAFgAAAAACFgAAAAADFgAAAAAAFgAAAAACFgAAAAABFgAAAAAAFgAAAAAAPAAAAAAAGwAAAAABFgAAAAAAFgAAAAADFgAAAAABFgAAAAABFgAAAAABFgAAAAAAFgAAAAADFgAAAAACFgAAAAADFgAAAAAAFgAAAAADFgAAAAADFgAAAAAAFgAAAAACPAAAAAAAFgAAAAADFgAAAAADFgAAAAABFgAAAAACFgAAAAAAFgAAAAACFgAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAAAOwAAAAAAFgAAAAAARwAAAAACRwAAAAAAFgAAAAABFgAAAAAAFgAAAAADFgAAAAADFgAAAAADFgAAAAADFgAAAAACFgAAAAAAFgAAAAADFgAAAAACFgAAAAADFgAAAAAAFgAAAAADFgAAAAAAPAAAAAAAPAAAAAAAFgAAAAACFgAAAAADFgAAAAACFgAAAAACFgAAAAAAFgAAAAADFgAAAAAAFgAAAAACFgAAAAADFgAAAAAAFgAAAAACFgAAAAADOwAAAAAAFgAAAAABPAAAAAAAPAAAAAAAFgAAAAAAFgAAAAABFgAAAAACFgAAAAADFgAAAAACFgAAAAADFgAAAAAAFgAAAAACFgAAAAAAFgAAAAABFgAAAAABFgAAAAACFgAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAABFgAAAAABFgAAAAACFgAAAAABFgAAAAABFgAAAAABFgAAAAAAFgAAAAABFgAAAAADFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAADFgAAAAADFgAAAAABFgAAAAABFgAAAAAAFgAAAAADFgAAAAAAFgAAAAADFgAAAAACFgAAAAAAFgAAAAAAUwAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAFgAAAAADFgAAAAACFgAAAAADFgAAAAAAFgAAAAADFgAAAAADFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAZAAAAAAAUwAAAAAAVQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAABFgAAAAACFgAAAAABFgAAAAABFgAAAAADFgAAAAAAFgAAAAABFgAAAAADZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAVQAAAAADFgAAAAABFgAAAAABFgAAAAADFgAAAAADRwAAAAABRwAAAAABFgAAAAACFgAAAAADFgAAAAAAFgAAAAAA + version: 6 0,1: ind: 0,1 - tiles: RQAAAEUAAAJFAAABSAAAAEgAAAA6AAAASAAAAEUAAANIAAAASAAAAEUAAANIAAAASAAAAEUAAAFIAAAASAAAAF8AAABfAAAAXwAAAF8AAABFAAABSAAAAEUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABSAAAAEgAAABfAAAAFwAAA18AAAAXAAACXwAAABcAAAAXAAAAFwAAARcAAAAXAAACFwAAAhcAAAMXAAACRQAAA0gAAABIAAAAXwAAABcAAAJIAAAAFwAAACsAAAAXAAADFwAAAhcAAAMXAAACFwAAAhcAAAMXAAADFwAAAxcAAAAXAAAAFwAAA18AAAAXAAADRQAAARcAAAErAAAAFwAAABcAAAIXAAACFwAAAhcAAAMXAAADFwAAABcAAAEXAAABFwAAARcAAAFfAAAAFwAAAkgAAAAXAAACKwAAABcAAAEXAAACFwAAAF8AAAAXAAADFwAAAhcAAAAXAAACFwAAABcAAAEXAAAAFwAAAxcAAAAXAAACFwAAAxcAAAIXAAADFwAAABcAAAFfAAAAXwAAAF8AAABfAAAAXwAAABcAAAEXAAACFwAAARcAAAIXAAACFwAAAhcAAAAXAAABFwAAAxcAAAMXAAACXwAAAF8AAABfAAAAAAAAAAAAAAAXAAAAFwAAABcAAAAXAAACFwAAAhcAAAIXAAABFwAAABcAAAMXAAACFwAAAV8AAABQAAAAXwAAAAAAAAAAAAAAFwAAAV8AAABfAAAAXwAAABcAAANfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAAAAAAAAAAAAABcAAAFIAAAASAAAAEUAAAJIAAAASAAAAF8AAABdAAADXQAAAV8AAABeAAAAXwAAAE8AAABfAAAAAAAAAAAAAAAXAAACRQAAA0gAAABIAAAASAAAAEUAAABFAAABXQAAAF0AAAFfAAAAXgAAAF8AAABfAAAAXwAAAAAAAAAAAAAAFwAAAUUAAABFAAADRQAAA0UAAAMXAAABXwAAABcAAAEXAAACXwAAAF4AAABfAAAAUQAAA18AAAAAAAAAAAAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAXAAABXwAAAFEAAAFfAAAAUAAAAE8AAABRAAAAUAAAAFAAAABfAAAATwAAAE8AAABQAAAAXwAAAAAAAAAAAAAAFwAAAl8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAA== + tiles: RwAAAAAARwAAAAACRwAAAAABTAAAAAAATAAAAAAAOwAAAAAATAAAAAAARwAAAAADTAAAAAAATAAAAAAARwAAAAADTAAAAAAATAAAAAAARwAAAAABTAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABTAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABTAAAAAAATAAAAAAAZAAAAAAAFgAAAAADZAAAAAAAFgAAAAACZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAABFgAAAAAAFgAAAAACFgAAAAACFgAAAAADFgAAAAACRwAAAAADTAAAAAAATAAAAAAAZAAAAAAAFgAAAAACTAAAAAAAFgAAAAAAKgAAAAAAFgAAAAADFgAAAAACFgAAAAADFgAAAAACFgAAAAACFgAAAAADFgAAAAADFgAAAAADFgAAAAAAFgAAAAAAFgAAAAADZAAAAAAAFgAAAAADRwAAAAABFgAAAAABKgAAAAAAFgAAAAAAFgAAAAACFgAAAAACFgAAAAACFgAAAAADFgAAAAADFgAAAAAAFgAAAAABFgAAAAABFgAAAAABFgAAAAABZAAAAAAAFgAAAAACTAAAAAAAFgAAAAACKgAAAAAAFgAAAAABFgAAAAACFgAAAAAAZAAAAAAAFgAAAAADFgAAAAACFgAAAAAAFgAAAAACFgAAAAAAFgAAAAABFgAAAAAAFgAAAAADFgAAAAAAFgAAAAACFgAAAAADFgAAAAACFgAAAAADFgAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAACFgAAAAABFgAAAAACFgAAAAACFgAAAAACFgAAAAAAFgAAAAABFgAAAAADFgAAAAADFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAACFgAAAAACFgAAAAACFgAAAAABFgAAAAAAFgAAAAADFgAAAAACFgAAAAABZAAAAAAAVAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABTAAAAAAATAAAAAAARwAAAAACTAAAAAAATAAAAAAAZAAAAAAAYgAAAAADYgAAAAABZAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACRwAAAAADTAAAAAAATAAAAAAATAAAAAAARwAAAAAARwAAAAABYgAAAAAAYgAAAAABZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABRwAAAAAARwAAAAADRwAAAAADRwAAAAADFgAAAAABZAAAAAAAFgAAAAABFgAAAAACZAAAAAAAYwAAAAAAZAAAAAAAVQAAAAADZAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABZAAAAAAAVQAAAAABZAAAAAAAVAAAAAAAUwAAAAAAVQAAAAAAVAAAAAAAVAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAVAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,-3: ind: 2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAF8AAAAEAAAABAAAAl8AAAAEAAAABAAAAQQAAAAEAAACAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAQAAAJfAAAABAAAAAQAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAFwAAARcAAAIXAAABFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAABcAAAIXAAACFwAAABcAAAIXAAACXwAAAC0AAAAtAAAALQAAABcAAAEXAAAAFwAAAF8AAABfAAAATwAAAFEAAAEXAAACFwAAARcAAAEXAAACFwAAAF8AAAAtAAAAFwAAAi0AAAAXAAAAFwAAAhcAAAJfAAAAXwAAAF8AAABfAAAAFwAAAhcAAAIXAAAAFwAAAxcAAABfAAAALQAAAC0AAAAtAAAAFwAAABcAAAAXAAACXwAAAF8AAABPAAAAXwAAABcAAAIXAAADFwAAAhcAAAAXAAABXwAAAF8AAAAXAAAAFwAAABcAAAEXAAAAFwAAA18AAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAAAXAAADFwAAARcAAAMXAAAAFwAAAhcAAAAXAAABFwAAAhcAAAJfAAAAXwAAAF8AAABfAAAAFwAAAxcAAAFfAAAAFwAAARcAAAAXAAACFwAAABcAAAEXAAABFwAAABcAAAIXAAADFwAAAF8AAABPAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAABgAAAAAABgAAAAACZAAAAAAABgAAAAAABgAAAAABBgAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAABgAAAAACZAAAAAAABgAAAAAABgAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAFgAAAAABFgAAAAACFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAACFgAAAAACZAAAAAAALAAAAAAALAAAAAAALAAAAAAAFgAAAAABFgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAVQAAAAABFgAAAAACFgAAAAABFgAAAAABFgAAAAACFgAAAAAAZAAAAAAALAAAAAAAFgAAAAACLAAAAAAAFgAAAAAAFgAAAAACFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAADFgAAAAAAZAAAAAAALAAAAAAALAAAAAAALAAAAAAAFgAAAAAAFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAACFgAAAAAAFgAAAAABZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAABFgAAAAAAFgAAAAADZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAABFgAAAAADFgAAAAAAFgAAAAACFgAAAAAAFgAAAAABFgAAAAACFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAABZAAAAAAAFgAAAAABFgAAAAAAFgAAAAACFgAAAAAAFgAAAAABFgAAAAABFgAAAAAAFgAAAAACFgAAAAADFgAAAAAAZAAAAAAAUwAAAAAAZAAAAAAA + version: 6 -2,1: ind: -2,1 - tiles: FwAAABcAAAMXAAAAXwAAAF8AAABfAAAASAAAAEUAAANIAAAARQAAAhcAAAAXAAACFwAAA0gAAAAXAAACFwAAAxcAAAMXAAABFwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAFEAAAFQAAAAXwAAAFEAAANfAAAAUQAAAF8AAABPAAAAXwAAAF8AAABQAAAAUQAAAU8AAABfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUQAAAl8AAAAXAAADFwAAAxcAAAMXAAADXwAAAF8AAABfAAAAFwAAABcAAAJcAAACXAAAAVwAAAJcAAADXwAAAFEAAANfAAAAFwAAABcAAAMXAAADFwAAAF8AAABPAAAAXwAAABcAAAE7AAAAXAAAAFwAAABcAAACXAAAAV8AAABfAAAAXwAAAFwAAAJcAAADXAAAAFwAAABfAAAAXwAAAF8AAAAXAAADOwAAAFwAAABQAAAARQAAA08AAABfAAAAXwAAAF8AAABcAAADXAAAAVwAAANcAAADXwAAAE8AAABfAAAAFwAAATsAAABfAAAAXwAAAFwAAAFcAAACXwAAAF8AAABfAAAAXAAAAlwAAABcAAABXAAAAl8AAABfAAAAXwAAABcAAAEXAAABTwAAAF8AAABcAAACXwAAAF8AAABRAAACXwAAAFwAAANcAAABXAAAAlwAAAJfAAAAUQAAAF8AAAAXAAABFwAAAlwAAAJIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAhcAAAFcAAAASAAAAEUAAAJfAAAAXwAAAFEAAANfAAAAXgAAAF4AAABeAAAAXgAAAF8AAABRAAAAXwAAAF8AAABfAAAAXAAAAUUAAAFPAAAAUAAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAABcAAADXAAAAVwAAABfAAAAUAAAAF8AAABfAAAAUAAAAFAAAABRAAACUAAAAE8AAABfAAAATwAAAFAAAABfAAAAXwAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAANFAAAARQAAARcAAAEXAAABXwAAAEgAAABIAAAASAAAAF8AAABeAAAAXgAAAF4AAABeAAAAAAAAAA== + tiles: FgAAAAAAFgAAAAADFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAARwAAAAADTAAAAAAARwAAAAACFgAAAAAAFgAAAAACFgAAAAADTAAAAAAAFgAAAAACFgAAAAADFgAAAAADFgAAAAABFgAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAVQAAAAABVAAAAAAAZAAAAAAAVQAAAAADZAAAAAAAVQAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAVQAAAAABUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVQAAAAACZAAAAAAAFgAAAAADFgAAAAADFgAAAAADFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAACYQAAAAACYQAAAAABYQAAAAACYQAAAAADZAAAAAAAVQAAAAADZAAAAAAAFgAAAAAAFgAAAAADFgAAAAADFgAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAFgAAAAABPAAAAAAAYQAAAAAAYQAAAAAAYQAAAAACYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAADYQAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADPAAAAAAAYQAAAAAAVAAAAAAARwAAAAADUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAABYQAAAAADYQAAAAADZAAAAAAAUwAAAAAAZAAAAAAAFgAAAAABPAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAAAYQAAAAABYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAABUwAAAAAAZAAAAAAAYQAAAAACZAAAAAAAZAAAAAAAVQAAAAACZAAAAAAAYQAAAAADYQAAAAABYQAAAAACYQAAAAACZAAAAAAAVQAAAAAAZAAAAAAAFgAAAAABFgAAAAACYQAAAAACTAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABYQAAAAAATAAAAAAARwAAAAACZAAAAAAAZAAAAAAAVQAAAAADZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAVQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABRwAAAAABUwAAAAAAVAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAADYQAAAAABYQAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAVAAAAAAAVQAAAAACVAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAVAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAABFgAAAAABFgAAAAABZAAAAAAATAAAAAAATAAAAAAATAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAA + version: 6 -1,2: ind: -1,2 - tiles: XwAAABcAAAEXAAABFwAAAhcAAAIXAAADFwAAAF4AAAAXAAACFwAAAEUAAABIAAAAXwAAABcAAAEXAAADFwAAAV8AAAAXAAADFwAAAxcAAAEXAAABFwAAA18AAABeAAAAXgAAABcAAAJIAAAAFwAAAl8AAAAXAAAAFwAAABcAAAJeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAAAXAAACFwAAAxcAAANfAAAAHAAAABwAAAAcAAADXgAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXwAAAE8AAABRAAAAXwAAABcAAAI6AAABFwAAAwAAAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF8AAABQAAAATwAAAF8AAAAXAAACOgAAABcAAAAAAAAAXwAAAF4AAABfAAAAXwAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAFwAAADoAAAAXAAACAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAFAAAABRAAABXwAAABcAAAIXAAADFwAAAwAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAXwAAABcAAAEAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAXAAABXwAAABcAAAMXAAACFwAAABcAAAEXAAACFwAAAxcAAAIXAAADAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABFAAAARQAAAUUAAAFFAAAARQAAA0UAAABFAAADRQAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF8AAABFAAADRQAAA0gAAABIAAAARQAAA0UAAABIAAAASAAAAEUAAAIAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABfAAAARQAAAUUAAAJIAAAARQAAAEgAAABFAAAASAAAAEgAAABFAAADAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXwAAAEUAAANFAAACSAAAAEUAAAFIAAAARQAAAkUAAAFFAAACRQAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAAJFAAABXwAAAEUAAAJFAAAARQAAA0UAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXwAAAEUAAABFAAACSAAAAEUAAABFAAAASAAAAEUAAAJFAAACAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABFAAADSAAAAEgAAABFAAAASAAAAEgAAABFAAADRQAAAA== + tiles: ZAAAAAAAFgAAAAABFgAAAAABFgAAAAACFgAAAAACFgAAAAADFgAAAAAAYwAAAAAAFgAAAAACFgAAAAAARwAAAAAATAAAAAAAZAAAAAAAFgAAAAABFgAAAAADFgAAAAABZAAAAAAAFgAAAAADFgAAAAADFgAAAAABFgAAAAABFgAAAAADZAAAAAAAYwAAAAAAYwAAAAAAFgAAAAACTAAAAAAAFgAAAAACZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAACYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAFgAAAAACFgAAAAADFgAAAAADZAAAAAAAGwAAAAAAGwAAAAAAGwAAAAADYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAVQAAAAAAZAAAAAAAFgAAAAACOwAAAAABFgAAAAADAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAVAAAAAAAUwAAAAAAZAAAAAAAFgAAAAACOwAAAAAAFgAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAFgAAAAAAOwAAAAAAFgAAAAACAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAVQAAAAABZAAAAAAAFgAAAAACFgAAAAADFgAAAAADAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAFgAAAAABAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABZAAAAAAAFgAAAAADFgAAAAACFgAAAAAAFgAAAAABFgAAAAACFgAAAAADFgAAAAACFgAAAAADAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAADTAAAAAAATAAAAAAARwAAAAADRwAAAAAATAAAAAAATAAAAAAARwAAAAACAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAABRwAAAAACTAAAAAAARwAAAAAATAAAAAAARwAAAAAATAAAAAAATAAAAAAARwAAAAADAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAACTAAAAAAARwAAAAABTAAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABZAAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAAARwAAAAACTAAAAAAARwAAAAAARwAAAAAATAAAAAAARwAAAAACRwAAAAACAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAADTAAAAAAATAAAAAAARwAAAAAATAAAAAAATAAAAAAARwAAAAADRwAAAAAA + version: 6 0,2: ind: 0,2 - tiles: XwAAAF8AAABfAAAAXwAAAF0AAANdAAABEQAAAFwAAAFfAAAAXgAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF8AAABPAAAAXwAAAF8AAAARAAAEXQAAAEQAAApEAAADXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABfAAAAUQAAAV8AAABfAAAAXAAAAEQAAAFEAAAFRAAABl8AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAFEAAABfAAAAXwAAAF0AAAJEAAAERAAACkQAAANfAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAEQAAAFEAAAEXwAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABRAAACUAAAAF8AAABPAAAAUQAAA18AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAXAAADHAAAARcAAAEXAAABFwAAAl8AAABPAAAAXwAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAFwAAARwAAAIcAAACFwAAABcAAAFfAAAAUQAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAABcAAAAcAAACFwAAAxcAAAEXAAACXwAAAFAAAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAXAAACFwAAAxcAAAAXAAAAFwAAAV8AAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAARwAAAIXAAADFwAAAxcAAANfAAAATwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAcAAABHAAAAhcAAAIXAAAAXwAAAFAAAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAADHAAAAxcAAAAXAAACFwAAAF8AAABRAAACXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAxcAAAAXAAACFwAAABcAAAJfAAAAUQAAAl8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYgAAAAADYgAAAAABEAAAAAAAYQAAAAABZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAEAAAAAAEYgAAAAAARgAAAAAKRgAAAAADZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAVQAAAAABZAAAAAAAZAAAAAAAYQAAAAAARgAAAAABRgAAAAAFRgAAAAAGZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAVQAAAAAAZAAAAAAAZAAAAAAAYgAAAAACRgAAAAAERgAAAAAKRgAAAAADZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARgAAAAABRgAAAAAEZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAVQAAAAACVAAAAAAAZAAAAAAAUwAAAAAAVQAAAAADZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAFgAAAAADGwAAAAABFgAAAAABFgAAAAABFgAAAAACZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAFgAAAAABGwAAAAACGwAAAAACFgAAAAAAFgAAAAABZAAAAAAAVQAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAFgAAAAAAGwAAAAACFgAAAAADFgAAAAABFgAAAAACZAAAAAAAVAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAADFgAAAAAAFgAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABGwAAAAACFgAAAAADFgAAAAADFgAAAAADZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAGwAAAAABGwAAAAACFgAAAAACFgAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADGwAAAAADFgAAAAAAFgAAAAACFgAAAAAAZAAAAAAAVQAAAAACZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAAAFgAAAAACFgAAAAAAFgAAAAACZAAAAAAAVQAAAAACZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -1,3: ind: -1,3 - tiles: AAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABFAAAARQAAAkUAAANFAAAARQAAAkUAAABFAAACXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABfAAAAFwAAABwAAAAcAAACSAAAABwAAAIcAAADFwAAA18AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAMXAAABFwAAAUgAAAAXAAABFwAAABcAAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAHAAAAhwAAAJFAAADHAAAAxwAAAFfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAACZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAFgAAAAAAGwAAAAAAGwAAAAACTAAAAAAAGwAAAAACGwAAAAADFgAAAAADZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAADFgAAAAABFgAAAAABTAAAAAAAFgAAAAABFgAAAAAAFgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAGwAAAAACGwAAAAACRwAAAAADGwAAAAADGwAAAAABZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,3: ind: 0,3 - tiles: FwAAAhwAAAEXAAAAFwAAARcAAANfAAAATwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAEcAAAAHAAAABcAAAAXAAABXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAHAAAAhcAAAAXAAACFwAAA18AAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: FgAAAAACGwAAAAABFgAAAAAAFgAAAAABFgAAAAADZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABGwAAAAAAGwAAAAAAFgAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAGwAAAAACFgAAAAAAFgAAAAACFgAAAAADZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -2,0: ind: -2,0 - tiles: RQAAAEUAAABFAAACOgAAAEUAAAE6AAAARQAAAksAAAJIAAAAXAAAA1wAAAFcAAACXAAAAFwAAABcAAABXAAAA0kAAABJAAABSQAAAUkAAANJAAABSQAAAEgAAABLAAABRQAAA1wAAABcAAADXAAAAlwAAAIXAAADFwAAAxcAAAIXAAACSQAAAEkAAAEXAAADFwAAARcAAAFIAAAASwAAAUUAAANcAAAAXAAAAVwAAABcAAADFwAAAhcAAAMXAAADFwAAAUkAAANJAAACFwAAABcAAAIXAAACRQAAAEsAAABIAAAAXAAAAlwAAAJcAAADXAAAARcAAAIXAAADFwAAABcAAANJAAABSQAAAxcAAABFAAADFwAAAUgAAABLAAAASAAAACsAAAArAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADSQAAA0kAAAAXAAAAFwAAAhcAAABIAAAASwAAAEUAAAErAAAAKwAAAF8AAAAmAAAAJgAAACYAAAAmAAAAFwAAAxcAAAMXAAABFwAAAxcAAAMXAAACSAAAAEsAAAFFAAABKwAAACsAAABfAAAAJgAAACYAAAAmAAAAJgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABLAAACRQAAAV8AAABfAAAAXwAAAF8AAAAmAAAAXwAAAF8AAAAvAAAAFwAAAS8AAAAXAAAAFwAAAV8AAABIAAAASwAAA0UAAAFfAAAAMAAAADAAAAAwAAAAUgAAAFIAAAAXAAABLwAAABcAAAEvAAAAFwAAARcAAANfAAAASAAAAEsAAANIAAAAXwAAADAAAAAwAAAAMAAAAFIAAABSAAABUgAAAy8AAAAXAAACLwAAABcAAAAXAAAAXwAAAEgAAABLAAADSAAAAF8AAAAwAAAAMAAAADAAAABSAAABUgAAA1IAAAEvAAAAFwAAAS8AAAAXAAABFwAAAF8AAABFAAABSwAAA0UAAAFfAAAAMAAAADAAAAAwAAAAUgAAAFIAAANSAAABFwAAABcAAAIXAAACFwAAAhcAAAIXAAADRQAAAUsAAAJFAAAAXwAAADAAAAAwAAAAMAAAAFIAAABSAAAAUgAAABcAAAIXAAABFwAAABcAAAAXAAABXwAAAEgAAABLAAABRQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAAAXAAABXwAAAF8AAABfAAAAXwAAAF8AAABIAAAASwAAAEUAAAFIAAAAFwAAARcAAAEXAAACRQAAA0gAAABFAAABFwAAABcAAAIXAAABXwAAAFAAAABfAAAASAAAAEsAAAFLAAAASwAAA0sAAAJLAAABSwAAAUsAAAJLAAAASwAAAw== + tiles: RwAAAAAARwAAAAAARwAAAAACOwAAAAAARwAAAAABOwAAAAAARwAAAAACTwAAAAACTAAAAAAAYQAAAAADYQAAAAABYQAAAAACYQAAAAAAYQAAAAAAYQAAAAABYQAAAAADTQAAAAAATQAAAAABTQAAAAABTQAAAAADTQAAAAABTQAAAAAATAAAAAAATwAAAAABRwAAAAADYQAAAAAAYQAAAAADYQAAAAACYQAAAAACFgAAAAADFgAAAAADFgAAAAACFgAAAAACTQAAAAAATQAAAAABFgAAAAADFgAAAAABFgAAAAABTAAAAAAATwAAAAABRwAAAAADYQAAAAAAYQAAAAABYQAAAAAAYQAAAAADFgAAAAACFgAAAAADFgAAAAADFgAAAAABTQAAAAADTQAAAAACFgAAAAAAFgAAAAACFgAAAAACRwAAAAAATwAAAAAATAAAAAAAYQAAAAACYQAAAAACYQAAAAADYQAAAAABFgAAAAACFgAAAAADFgAAAAAAFgAAAAADTQAAAAABTQAAAAADFgAAAAAARwAAAAADFgAAAAABTAAAAAAATwAAAAAATAAAAAAAKgAAAAAAKgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADTQAAAAADTQAAAAAAFgAAAAAAFgAAAAACFgAAAAAATAAAAAAATwAAAAAARwAAAAABKgAAAAAAKgAAAAAAZAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAFgAAAAADFgAAAAADFgAAAAABFgAAAAADFgAAAAADFgAAAAACTAAAAAAATwAAAAABRwAAAAABKgAAAAAAKgAAAAAAZAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAMAAAAAAAFgAAAAABMAAAAAAAFgAAAAAAFgAAAAABZAAAAAAATAAAAAAATwAAAAADRwAAAAABZAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAVwAAAAAAVwAAAAAAFgAAAAABMAAAAAAAFgAAAAABMAAAAAAAFgAAAAABFgAAAAADZAAAAAAATAAAAAAATwAAAAADTAAAAAAAZAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAVwAAAAAAVwAAAAABVwAAAAADMAAAAAAAFgAAAAACMAAAAAAAFgAAAAAAFgAAAAAAZAAAAAAATAAAAAAATwAAAAADTAAAAAAAZAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAVwAAAAABVwAAAAADVwAAAAABMAAAAAAAFgAAAAABMAAAAAAAFgAAAAABFgAAAAAAZAAAAAAARwAAAAABTwAAAAADRwAAAAABZAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAVwAAAAAAVwAAAAADVwAAAAABFgAAAAAAFgAAAAACFgAAAAACFgAAAAACFgAAAAACFgAAAAADRwAAAAABTwAAAAACRwAAAAAAZAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAFgAAAAACFgAAAAABFgAAAAAAFgAAAAAAFgAAAAABZAAAAAAATAAAAAAATwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATwAAAAAARwAAAAABTAAAAAAAFgAAAAABFgAAAAABFgAAAAACRwAAAAADTAAAAAAARwAAAAABFgAAAAAAFgAAAAACFgAAAAABZAAAAAAAVAAAAAAAZAAAAAAATAAAAAAATwAAAAABTwAAAAAATwAAAAADTwAAAAACTwAAAAABTwAAAAABTwAAAAACTwAAAAAATwAAAAAD + version: 6 -3,0: ind: -3,0 - tiles: SAAAAEgAAABFAAADRQAAAEgAAABIAAAARQAAA0gAAABFAAAAOgAAAEUAAAA6AAAARQAAA0UAAAJFAAADRQAAAEUAAAJFAAAASAAAAEgAAABFAAADRQAAAEUAAABFAAABSAAAAEkAAAJJAAABSQAAAkkAAAJJAAACSQAAAUkAAAEXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAkgAAAAXAAABFwAAARcAAAFJAAADSQAAAhcAAAAXAAAAFwAAAAIAAAACAAAAFwAAAV8AAABQAAAARQAAAkUAAABFAAAAFwAAAxcAAAAXAAADSQAAAEkAAAEXAAACFwAAAAIAAAACAAAAAgAAAF8AAABfAAAAXwAAAEUAAAFIAAAARQAAARcAAAMXAAADFwAAAkkAAANJAAACFwAAAxcAAAICAAAAAgAAAAIAAAAXAAAAXwAAAFEAAABFAAABSAAAAEUAAAIXAAADFwAAARcAAANJAAADSQAAAhcAAAIXAAADFwAAARcAAAMXAAACFwAAAV8AAABRAAAARQAAAUUAAABIAAAAFwAAARcAAAIXAAAAFwAAAhcAAAAXAAABFwAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAUQAAAl8AAABPAAAAXwAAAF8AAABfAAAAXwAAAC8AAAAXAAABXgAAAAAAAABeAAAAXgAAAF8AAABPAAAAUAAAAE8AAABPAAAAXwAAAFEAAANRAAABUAAAAF8AAAAvAAAAFwAAA14AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAALwAAABcAAANeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAEgAAABIAAAAXwAAAF8AAABfAAAAXwAAAC8AAAAXAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAFEAAAFFAAAARQAAAl8AAABRAAADXwAAAF8AAAAXAAADFwAAAV4AAABfAAAAXwAAAF8AAABfAAAARQAAA0gAAABFAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAFwAAABcAAAJeAAAAXgAAAF4AAABeAAAAXwAAAEUAAABFAAAARQAAAl8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAFwAAAw== + tiles: TAAAAAAATAAAAAAARwAAAAADRwAAAAAATAAAAAAATAAAAAAARwAAAAADTAAAAAAARwAAAAAAOwAAAAAARwAAAAAAOwAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAAARwAAAAACRwAAAAAATAAAAAAATAAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAABTAAAAAAATQAAAAACTQAAAAABTQAAAAACTQAAAAACTQAAAAACTQAAAAABTQAAAAABFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACTAAAAAAAFgAAAAABFgAAAAABFgAAAAABTQAAAAADTQAAAAACFgAAAAAAFgAAAAAAFgAAAAAAAgAAAAAAAgAAAAAAFgAAAAABZAAAAAAAVAAAAAAARwAAAAACRwAAAAAARwAAAAAAFgAAAAADFgAAAAAAFgAAAAADTQAAAAAATQAAAAABFgAAAAACFgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABTAAAAAAARwAAAAABFgAAAAADFgAAAAADFgAAAAACTQAAAAADTQAAAAACFgAAAAADFgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAAAZAAAAAAAVQAAAAAARwAAAAABTAAAAAAARwAAAAACFgAAAAADFgAAAAABFgAAAAADTQAAAAADTQAAAAACFgAAAAACFgAAAAADFgAAAAABFgAAAAADFgAAAAACFgAAAAABZAAAAAAAVQAAAAAARwAAAAABRwAAAAAATAAAAAAAFgAAAAABFgAAAAACFgAAAAAAFgAAAAACFgAAAAAAFgAAAAABFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVQAAAAACZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMAAAAAAAFgAAAAABYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAVAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAVQAAAAADVQAAAAABVAAAAAAAZAAAAAAAMAAAAAAAFgAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAMAAAAAAAFgAAAAADYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMAAAAAAAFgAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAVQAAAAABRwAAAAAARwAAAAACZAAAAAAAVQAAAAADZAAAAAAAZAAAAAAAFgAAAAADFgAAAAABYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADTAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAD + version: 6 -3,-1: ind: -3,-1 - tiles: RQAAAlwAAABcAAADXAAAAEUAAABRAAABXwAAACMAAAAjAAAAIwAAACMAAABfAAAAEgAAABIAAAASAAAAEgAAAFwAAABcAAADXAAAA1wAAAFFAAADTwAAAF8AAABfAAAAXwAAAEUAAAFfAAAAXwAAAF8AAAASAAAAEgAAAF8AAABFAAABRQAAAUUAAABFAAAARQAAAFEAAAFfAAAAXAAAAFwAAAJcAAAAXAAAAFwAAAFcAAABXAAAA1wAAAFcAAADUAAAAE8AAABRAAACXwAAAFAAAABfAAAAXwAAABcAAAM6AAABFwAAADoAAAEXAAADOgAAABcAAAM6AAAAFwAAAUUAAAJFAAADRQAAA0UAAANFAAAAXwAAAF8AAABcAAAAXAAAAFwAAAJcAAABXAAAA1wAAAJcAAADXAAAAVwAAAMpAAAAXwAAABcAAAAXAAAAFwAAAV8AAABfAAAAXwAAAEUAAAFfAAAAXwAAAF8AAABFAAACXwAAAF8AAABfAAAAKQAAAF8AAABcAAABXAAAAFwAAAFcAAADXwAAAFwAAABcAAACXAAAAV8AAABcAAADXAAAA1wAAANfAAAAXAAAAykAAAAXAAAAXAAAAVwAAAJcAAAAXAAAAV8AAABcAAACXAAAAVwAAABfAAAAXAAAA1wAAAFcAAAAXwAAAFwAAAMpAAAAXwAAAFwAAAJcAAACXAAAA1wAAAFfAAAAXAAAAlwAAABcAAAAXwAAAFwAAAFcAAAAXAAAAl8AAABcAAABXwAAAEUAAAJFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAARQAAAEUAAABIAAAARQAAAEUAAAJFAAAARQAAAxcAAAMXAAACFwAAARcAAAAXAAAAFwAAAxcAAAArAAAAKwAAACsAAAArAAAASwAAAkgAAABFAAACSAAAAEUAAAEXAAAAFwAAABcAAABJAAACSQAAARcAAAAXAAAARQAAAEUAAABFAAABRQAAAEsAAAJFAAADRQAAA0gAAABFAAAAFwAAAxcAAAMXAAAASQAAA0kAAAMXAAABFwAAAUkAAAJJAAABSQAAAUkAAAJLAAAASAAAAEUAAAFFAAABSAAAABcAAAAXAAABFwAAA0kAAANJAAADFwAAAhcAAAJFAAABRQAAAEUAAAFFAAAASwAAAkUAAAFFAAABRQAAA0gAAAAXAAAAFwAAAxcAAANJAAABSQAAABcAAAEXAAADKwAAACsAAAArAAAAKwAAAEsAAAJFAAADRQAAAUUAAAJFAAACSQAAA0kAAANJAAABSQAAAEkAAANJAAABSQAAAQ== + tiles: RwAAAAACYQAAAAAAYQAAAAADYQAAAAAARwAAAAAAVQAAAAABZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAYQAAAAAAYQAAAAADYQAAAAADYQAAAAABRwAAAAADUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAEQAAAAAAEQAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAAARwAAAAAAVQAAAAABZAAAAAAAYQAAAAAAYQAAAAACYQAAAAAAYQAAAAAAYQAAAAABYQAAAAABYQAAAAADYQAAAAABYQAAAAADVAAAAAAAUwAAAAAAVQAAAAACZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADOwAAAAABFgAAAAAAOwAAAAABFgAAAAADOwAAAAAAFgAAAAADOwAAAAAAFgAAAAABRwAAAAACRwAAAAADRwAAAAADRwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAAAYQAAAAACYQAAAAABYQAAAAADYQAAAAACYQAAAAADYQAAAAABYQAAAAADKAAAAAAAZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAKAAAAAAAZAAAAAAAYQAAAAABYQAAAAAAYQAAAAABYQAAAAADZAAAAAAAYQAAAAAAYQAAAAACYQAAAAABZAAAAAAAYQAAAAADYQAAAAADYQAAAAADZAAAAAAAYQAAAAADKAAAAAAAFgAAAAAAYQAAAAABYQAAAAACYQAAAAAAYQAAAAABZAAAAAAAYQAAAAACYQAAAAABYQAAAAAAZAAAAAAAYQAAAAADYQAAAAABYQAAAAAAZAAAAAAAYQAAAAADKAAAAAAAZAAAAAAAYQAAAAACYQAAAAACYQAAAAADYQAAAAABZAAAAAAAYQAAAAACYQAAAAAAYQAAAAAAZAAAAAAAYQAAAAABYQAAAAAAYQAAAAACZAAAAAAAYQAAAAABZAAAAAAARwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAARwAAAAAARwAAAAAATAAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAADFgAAAAADFgAAAAACFgAAAAABFgAAAAAAFgAAAAAAFgAAAAADFgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATwAAAAACTAAAAAAARwAAAAACTAAAAAAARwAAAAABFgAAAAAAFgAAAAAAFgAAAAAATQAAAAACTQAAAAABFgAAAAAAFgAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAAATwAAAAACRwAAAAADRwAAAAADTAAAAAAARwAAAAAAFgAAAAADFgAAAAADFgAAAAAATQAAAAADTQAAAAADFgAAAAABFgAAAAABTQAAAAACTQAAAAABTQAAAAABTQAAAAACTwAAAAAATAAAAAAARwAAAAABRwAAAAABTAAAAAAAFgAAAAAAFgAAAAABFgAAAAADTQAAAAADTQAAAAADFgAAAAACFgAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAAATwAAAAACRwAAAAABRwAAAAABRwAAAAADTAAAAAAAFgAAAAAAFgAAAAADFgAAAAADTQAAAAABTQAAAAAAFgAAAAABFgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATwAAAAACRwAAAAADRwAAAAABRwAAAAACRwAAAAACTQAAAAADTQAAAAADTQAAAAABTQAAAAAATQAAAAADTQAAAAABTQAAAAAB + version: 6 -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAFAAAABPAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAFwAAAxcAAAEXAAACFwAAARcAAAAXAAAAFwAAABcAAAIXAAACFwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAABXAAAA1wAAAAXAAACFwAAAhcAAAAXAAADFwAAARcAAAFfAAAAXwAAAF8AAABFAAABTwAAAF8AAABfAAAAXAAAAFwAAAFcAAAAXAAAAFwAAANcAAADXAAAAVwAAANcAAAAXwAAAF8AAABfAAAAXwAAAFEAAANfAAAAXwAAAFwAAAFcAAACXAAAAVwAAAJcAAADXAAAAlwAAANcAAAAXAAAAF8AAABfAAAAXwAAAE8AAABfAAAAUAAAAF8AAABcAAADXAAAAlwAAAFcAAACXAAAAVwAAAFcAAAAXAAAAVwAAANfAAAARQAAAkUAAAJFAAACXwAAAF8AAABfAAAAXAAAAlwAAAEXAAACFwAAAxcAAAMXAAABFwAAAhcAAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAEXAAABXwAAAF8AAAArAAAAKwAAACsAAAArAAAAKwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAFgAAAAADFgAAAAABFgAAAAACFgAAAAABFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAACFgAAAAACFgAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAADYQAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAADFgAAAAABFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABUwAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAABYQAAAAAAYQAAAAAAYQAAAAADYQAAAAADYQAAAAABYQAAAAADYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVQAAAAADZAAAAAAAZAAAAAAAYQAAAAABYQAAAAACYQAAAAABYQAAAAACYQAAAAADYQAAAAACYQAAAAADYQAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAYQAAAAADYQAAAAACYQAAAAABYQAAAAACYQAAAAABYQAAAAABYQAAAAAAYQAAAAABYQAAAAADZAAAAAAARwAAAAACRwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAABFgAAAAACFgAAAAADFgAAAAADFgAAAAABFgAAAAACFgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAABFgAAAAABZAAAAAAAZAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + version: 6 -3,1: ind: -3,1 - tiles: AAAAAF4AAAAAAAAAXwAAAEUAAAFFAAABSAAAAF8AAABfAAAAUQAAAk8AAABfAAAAXwAAAFEAAAFfAAAAFwAAAgAAAABeAAAAAAAAAF8AAABFAAAASAAAAEgAAABFAAACUQAAAVEAAANfAAAAXwAAAF8AAABfAAAAXwAAABcAAAAAAAAAXgAAAAAAAABfAAAARQAAAEUAAABFAAADXwAAAF8AAABfAAAAUQAAAl8AAABfAAAATwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAUAAAAFEAAANfAAAAXwAAAFEAAANfAAAAXwAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABfAAAAFwAAA1AAAABPAAAAUQAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAABeAAAAXwAAAF8AAAAUAAAEFAAABVAAAABfAAAAXwAAAFwAAANcAAACAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAAAXAAAAV8AAABfAAAAKAAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAARQAAAVAAAABfAAAAKAAAAFwAAAIoAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABcAAABXwAAAF8AAAAoAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABPAAAASAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABfAAAARQAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXwAAAFAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF8AAABfAAAAXAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABfAAAAXAAAAlwAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAABFwAAABcAAABfAAAASAAAAA== + tiles: AAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAARwAAAAABRwAAAAABTAAAAAAAZAAAAAAAZAAAAAAAVQAAAAACUwAAAAAAZAAAAAAAZAAAAAAAVQAAAAABZAAAAAAAFgAAAAACAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAARwAAAAAATAAAAAAATAAAAAAARwAAAAACVQAAAAABVQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAVQAAAAACZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAVAAAAAAAVQAAAAADZAAAAAAAZAAAAAAAVQAAAAADZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAADVAAAAAAAUwAAAAAAVQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAEwAAAAAEEwAAAAAFVAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAACAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAABZAAAAAAAZAAAAAAAJwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAARwAAAAABVAAAAAAAZAAAAAAAJwAAAAAAYQAAAAACJwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAAZAAAAAAAJwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAUwAAAAAATAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAVAAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYQAAAAACYQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAAAZAAAAAAATAAAAAAA + version: 6 -1,-4: ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + version: 6 -2,3: ind: -2,3 - tiles: AAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,-4: ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAgQAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAIEAAACXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAAABAAAAV4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABBAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAgQAAAJfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAACXwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAACBgAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAACBgAAAAACYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAACBgAAAAAABgAAAAABYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABBgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAACBgAAAAACZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAACZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAA + version: 6 -3,-2: ind: -3,-2 - tiles: XwAAAF8AAABfAAAAXwAAAEUAAABFAAABRQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAADRQAAAUUAAAFfAAAASwAAAEUAAAFIAAAASAAAAEUAAAJFAAABSwAAAEUAAAIXAAAAFwAAARcAAAIXAAACFwAAAxcAAAFFAAADXwAAAEsAAAFFAAABRQAAAkUAAANIAAAASAAAAEsAAAJFAAAAFwAAAUgAAABIAAAARQAAAEgAAABFAAACRQAAAF8AAABLAAADSAAAAEUAAAJIAAAARQAAA0UAAAJLAAABXwAAABcAAAJFAAADEAAAARAAAAAQAAAAEAAAAxcAAANfAAAASwAAAkUAAAMrAAAAKwAAACsAAABFAAADSwAAAl8AAAAXAAABSAAAABAAAAAQAAADEAAAAxAAAAIXAAAAXwAAAEsAAAJFAAACKwAAACsAAAArAAAARQAAAksAAANfAAAAFwAAAUgAAAAQAAACEAAAAhAAAAIQAAACFwAAAl8AAABLAAABRQAAAisAAAArAAAAKwAAAEUAAABLAAACXwAAABcAAAFFAAADEAAAABAAAAMQAAAAEAAAA18AAABfAAAASwAAA0UAAAErAAAAKwAAACsAAABFAAACSwAAAV8AAAAXAAADSAAAABAAAAAQAAAAEAAAABAAAAFFAAAASAAAAEsAAANFAAABKwAAACsAAAArAAAARQAAAUsAAABfAAAAFwAAAEUAAAEQAAABEAAAABAAAAEQAAAASAAAAEUAAANLAAADSAAAAEUAAAFFAAADRQAAAkgAAABLAAABRQAAARcAAAFIAAAASAAAAEgAAABIAAAARQAAA0sAAABLAAADSwAAAkgAAABFAAACSAAAAEUAAAJIAAAASwAAAkUAAAAXAAACFwAAAhcAAAAXAAACFwAAARcAAABIAAAASAAAAEUAAAAXAAAARQAAAEUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAV8AAABfAAAAXwAAAF8AAABPAAAAXwAAAFEAAANPAAAAXwAAAE8AAABPAAAAXwAAAFEAAABPAAAAXwAAAEUAAAMXAAAAFwAAABcAAABFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAFwAAAhcAAAIXAAADRQAAA1EAAABfAAAAIwAAACMAAAAjAAAAIwAAAF8AAAAWAAAAFgAAABYAAAAWAAAARQAAA1wAAABcAAACXAAAAkUAAABfAAAAXwAAACMAAAAjAAAAIwAAACMAAABfAAAAFgAAABYAAAAWAAAAFgAAAA== + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAABZAAAAAAATwAAAAAARwAAAAABTAAAAAAATAAAAAAARwAAAAACRwAAAAABTwAAAAAARwAAAAACFgAAAAAAFgAAAAABFgAAAAACFgAAAAACFgAAAAADFgAAAAABRwAAAAADZAAAAAAATwAAAAABRwAAAAABRwAAAAACRwAAAAADTAAAAAAATAAAAAAATwAAAAACRwAAAAAAFgAAAAABTAAAAAAATAAAAAAARwAAAAAATAAAAAAARwAAAAACRwAAAAAAZAAAAAAATwAAAAADTAAAAAAARwAAAAACTAAAAAAARwAAAAADRwAAAAACTwAAAAABZAAAAAAAFgAAAAACRwAAAAADDwAAAAABDwAAAAAADwAAAAAADwAAAAADFgAAAAADZAAAAAAATwAAAAACRwAAAAADKgAAAAAAKgAAAAAAKgAAAAAARwAAAAADTwAAAAACZAAAAAAAFgAAAAABTAAAAAAADwAAAAAADwAAAAADDwAAAAADDwAAAAACFgAAAAAAZAAAAAAATwAAAAACRwAAAAACKgAAAAAAKgAAAAAAKgAAAAAARwAAAAACTwAAAAADZAAAAAAAFgAAAAABTAAAAAAADwAAAAACDwAAAAACDwAAAAACDwAAAAACFgAAAAACZAAAAAAATwAAAAABRwAAAAACKgAAAAAAKgAAAAAAKgAAAAAARwAAAAAATwAAAAACZAAAAAAAFgAAAAABRwAAAAADDwAAAAAADwAAAAADDwAAAAAADwAAAAADZAAAAAAAZAAAAAAATwAAAAADRwAAAAABKgAAAAAAKgAAAAAAKgAAAAAARwAAAAACTwAAAAABZAAAAAAAFgAAAAADTAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAABRwAAAAAATAAAAAAATwAAAAADRwAAAAABKgAAAAAAKgAAAAAAKgAAAAAARwAAAAABTwAAAAAAZAAAAAAAFgAAAAAARwAAAAABDwAAAAABDwAAAAAADwAAAAABDwAAAAAATAAAAAAARwAAAAADTwAAAAADTAAAAAAARwAAAAABRwAAAAADRwAAAAACTAAAAAAATwAAAAABRwAAAAABFgAAAAABTAAAAAAATAAAAAAATAAAAAAATAAAAAAARwAAAAADTwAAAAAATwAAAAADTwAAAAACTAAAAAAARwAAAAACTAAAAAAARwAAAAACTAAAAAAATwAAAAACRwAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAACFgAAAAABFgAAAAAATAAAAAAATAAAAAAARwAAAAAAFgAAAAAARwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAVQAAAAADUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAVQAAAAAAUwAAAAAAZAAAAAAARwAAAAADFgAAAAAAFgAAAAAAFgAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAFgAAAAACFgAAAAACFgAAAAADRwAAAAADVQAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAARwAAAAADYQAAAAAAYQAAAAACYQAAAAACRwAAAAAAZAAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAA + version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABIAAAAOgAAAEgAAABfAAAAXAAAAlwAAANcAAACXAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAASAAAAEsAAAFIAAAAXwAAABcAAAJcAAABXAAAAFwAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAEUAAAE6AAADSAAAAEUAAAFFAAACRQAAAUUAAAFFAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABIAAAASwAAA0gAAABfAAAAXwAAAFEAAABfAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAASAAAADoAAABFAAABRQAAAEUAAANFAAADRQAAAkUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAEgAAABLAAAASAAAAF8AAAApAAAAKQAAACkAAAApAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABIAAAASwAAAEgAAABfAAAAKQAAACkAAAApAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAASAAAAEsAAANFAAAAXwAAACkAAAApAAAAKQAAACkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAABLAAADSAAAAF8AAAApAAAAKQAAACkAAAApAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABIAAAASwAAA0gAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAASAAAAEsAAAJIAAAASAAAAEUAAAJFAAAASAAAAEUAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAXwAAAEgAAAA6AAADSAAAAEsAAAMrAAAAKwAAACsAAAArAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABIAAAASwAAA0UAAAJLAAADRQAAAEUAAAJFAAADRQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAADoAAANIAAAASwAAA0kAAABJAAABSQAAA0kAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAEUAAAFLAAACRQAAAUsAAANFAAADRQAAAkUAAAFFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABFAAADOgAAAkgAAABLAAABKwAAACsAAAArAAAAKwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAATAAAAAAAOwAAAAAATAAAAAAAZAAAAAAAYQAAAAACYQAAAAADYQAAAAACYQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAATAAAAAAATwAAAAABTAAAAAAAZAAAAAAAFgAAAAACYQAAAAABYQAAAAAAYQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAABOwAAAAADTAAAAAAARwAAAAABRwAAAAACRwAAAAABRwAAAAABRwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAATAAAAAAATwAAAAADTAAAAAAAZAAAAAAAZAAAAAAAVQAAAAAAZAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAATAAAAAAAOwAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAATAAAAAAATwAAAAAATAAAAAAAZAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAATAAAAAAATwAAAAAATAAAAAAAZAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATwAAAAADRwAAAAAAZAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAATwAAAAADTAAAAAAAZAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATwAAAAADTAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATwAAAAACTAAAAAAATAAAAAAARwAAAAACRwAAAAAATAAAAAAARwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAATAAAAAAAOwAAAAADTAAAAAAATwAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAATAAAAAAATwAAAAADRwAAAAACTwAAAAADRwAAAAAARwAAAAACRwAAAAADRwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAAAOwAAAAADTAAAAAAATwAAAAADTQAAAAAATQAAAAABTQAAAAADTQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAABTwAAAAACRwAAAAABTwAAAAADRwAAAAADRwAAAAACRwAAAAABRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADOwAAAAACTAAAAAAATwAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + version: 6 -4,0: ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABIAAAASwAAAEgAAABFAAABSAAAAEgAAABFAAACRQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAASAAAAEUAAABFAAABSAAAABcAAABFAAABSAAAAEUAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEgAAABIAAAARQAAAl8AAABfAAAAXwAAAF8AAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAARQAAAl8AAABfAAAAFwAAAQIAAAACAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAASAAAAEgAAABFAAAAXwAAAF8AAAACAAAAAgAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAEUAAAFIAAAARQAAAF8AAAAXAAACAgAAAAIAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAhcAAAMXAAADFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATwAAAAAATAAAAAAARwAAAAABTAAAAAAATAAAAAAARwAAAAACRwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAARwAAAAAARwAAAAABTAAAAAAAFgAAAAAARwAAAAABTAAAAAAARwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAFgAAAAABAgAAAAAAAgAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAATAAAAAAATAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAABTAAAAAAARwAAAAAAZAAAAAAAFgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAADFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -3,-3: ind: -3,-3 - tiles: XgAAAAAAAABeAAAAXwAAAF4AAABeAAAAXgAAAF8AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAAxcAAAJfAAAARQAAAkgAAABFAAADRQAAAF8AAABeAAAAXgAAAF4AAABfAAAASAAAAEgAAABfAAAAFwAAARcAAAEXAAADXwAAAEUAAAFIAAAARQAAA0gAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAAAXwAAAEUAAABLAAADRQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABRAAADXwAAAF8AAABIAAAARQAAA18AAABFAAAASwAAAEgAAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAFEAAABfAAAARQAAAkUAAAJIAAAASAAAADoAAAJIAAAAXwAAAFEAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABLAAACSAAAAF8AAABfAAAAXwAAAFEAAAJfAAAAFwAAAUgAAABFAAAAFwAAAgQAAAJfAAAATwAAAF8AAABIAAAAOgAAAUgAAABfAAAATwAAAF8AAABfAAAAXwAAABcAAABFAAAASAAAABcAAABfAAAAXwAAAFEAAANfAAAARQAAAksAAABFAAADXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXAAAAlwAAAFcAAADXAAAAl8AAABfAAAAXwAAAEgAAAA6AAAASAAAAF8AAABRAAACXwAAAFEAAAFfAAAAXAAAA1wAAAFcAAADXAAAA18AAABfAAAAUAAAAF8AAABIAAAASwAAAkgAAABfAAAAXwAAAF8AAABPAAAAXwAAAFwAAAFcAAADXAAAAVwAAABcAAACXwAAAFEAAANfAAAASAAAADoAAABFAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAF8AAABfAAAAXwAAAEgAAABLAAABSAAAAF8AAABfAAAAXwAAAFEAAAFfAAAAUAAAAFEAAAJfAAAAXwAAAA== + tiles: YwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAACZAAAAAAARwAAAAACTAAAAAAARwAAAAADRwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAATAAAAAAATAAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAADZAAAAAAARwAAAAABTAAAAAAARwAAAAADTAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAAZAAAAAAARwAAAAAATwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVQAAAAADZAAAAAAAZAAAAAAATAAAAAAARwAAAAADZAAAAAAARwAAAAAATwAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVQAAAAAAZAAAAAAARwAAAAACRwAAAAACTAAAAAAATAAAAAAAOwAAAAACTAAAAAAAZAAAAAAAVQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATwAAAAACTAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVQAAAAACZAAAAAAAFgAAAAABTAAAAAAARwAAAAAAFgAAAAACBgAAAAACZAAAAAAAUwAAAAAAZAAAAAAATAAAAAAAOwAAAAABTAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAARwAAAAAATAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAVQAAAAADZAAAAAAARwAAAAACTwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAABYQAAAAADYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAOwAAAAAATAAAAAAAZAAAAAAAVQAAAAACZAAAAAAAVQAAAAABZAAAAAAAYQAAAAADYQAAAAABYQAAAAADYQAAAAADZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAATAAAAAAATwAAAAACTAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYQAAAAABYQAAAAADYQAAAAABYQAAAAAAYQAAAAACZAAAAAAAVQAAAAADZAAAAAAATAAAAAAAOwAAAAAARwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATwAAAAABTAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVQAAAAABZAAAAAAAVAAAAAAAVQAAAAACZAAAAAAAZAAAAAAA + version: 6 -4,-2: ind: -4,-2 - tiles: AAAAAAAAAABeAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEEAAABBAAAAAQAAAAEAAACXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAQAAAIEAAACBAAAAQQAAAEEAAACBAAAAF8AAAAyAAAAMgAAADIAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAEAAAABAAAAQQAAAEEAAABBAAAAQQAAAJfAAAAMgAAADIAAAAyAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAAABAAAAQQAAAEEAAACXwAAADIAAAAyAAAAMgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEEAAAABAAAAF8AAAAXAAAAFwAAAhcAAAIAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAAQAAAFfAAAAFwAAAxcAAAAXAAABAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAEEAAAAXwAAABcAAAAXAAACFwAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAABAAAAAQAAAAEAAABBAAAAl8AAABfAAAAFwAAABcAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0gAAABFAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABIAAAARQAAA0gAAABIAAAARQAAAEgAAABIAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAASAAAAEsAAAJLAAABSwAAAksAAABLAAACSwAAAUsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAEgAAABLAAACSAAAAEUAAANIAAAASAAAAEUAAANIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABFAAACOgAAAUgAAABFAAAARQAAAEUAAAFFAAACRQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAASAAAAEsAAABFAAAAXwAAAEUAAAJFAAABRQAAAEUAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAEgAAAA6AAADSAAAAF8AAABFAAABRQAAA0UAAAFFAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABFAAAASwAAA0gAAABfAAAAXAAAAlwAAANcAAABXAAAAg== + tiles: AAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAABBgAAAAABBgAAAAAABgAAAAAABgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAACBgAAAAABBgAAAAABBgAAAAACBgAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABBgAAAAABBgAAAAABBgAAAAABBgAAAAACZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAABgAAAAABBgAAAAABBgAAAAACZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAABBgAAAAAABgAAAAAAZAAAAAAAFgAAAAAAFgAAAAACFgAAAAACAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAAABgAAAAAABgAAAAABZAAAAAAAFgAAAAADFgAAAAAAFgAAAAABAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAABBgAAAAAAZAAAAAAAFgAAAAAAFgAAAAACFgAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAABBgAAAAACZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADTAAAAAAARwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAATAAAAAAARwAAAAADTAAAAAAATAAAAAAARwAAAAAATAAAAAAATAAAAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAATAAAAAAATwAAAAACTwAAAAABTwAAAAACTwAAAAAATwAAAAACTwAAAAABTwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAATAAAAAAATwAAAAACTAAAAAAARwAAAAADTAAAAAAATAAAAAAARwAAAAADTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAACOwAAAAABTAAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAATAAAAAAATwAAAAAARwAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAATAAAAAAAOwAAAAADTAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAAATwAAAAADTAAAAAAAZAAAAAAAYQAAAAACYQAAAAADYQAAAAABYQAAAAAC + version: 6 3,-3: ind: 3,-3 - tiles: XwAAAF8AAAAEAAAABAAAAAQAAAEEAAABBAAAAgQAAAEEAAACBAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAEEAAABXwAAAAQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAV8AAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAoAAAAEAAAABAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAACBAAAAAQAAAAEAAABBAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAABAAAAgQAAAAEAAAABAAAAQQAAAIEAAACBAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAQAAAAEAAAABAAAAQQAAAEEAAACBAAAAQQAAAIEAAACAAAAAA== + tiles: ZAAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAABBgAAAAABBgAAAAACBgAAAAABBgAAAAACBgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAABBgAAAAABZAAAAAAABgAAAAABBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABZAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAACBgAAAAAABgAAAAAABgAAAAABBgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAABgAAAAACBgAAAAAABgAAAAAABgAAAAABBgAAAAACBgAAAAACBgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAABBgAAAAABBgAAAAACBgAAAAABBgAAAAACBgAAAAACAAAAAAAA + version: 6 -4,-3: ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAgQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQQAAAEEAAABBAAAAgAAAAAAAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAQQAAAEEAAACBAAAAQQAAAIEAAAABAAAAgQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAQQAAAEEAAABBAAAAgQAAAAEAAABBAAAAl8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEEAAAABAAAAgQAAAEEAAACBAAAAAQAAAFfAAAAXAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAACBAAAAAQAAAAEAAACBAAAAAQAAAIEAAACXwAAAFwAAAMAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAEAAACBAAAAgQAAAAEAAAABAAAAAQAAAAEAAACBAAAAF8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAAABAAAAgQAAAAEAAACBAAAAAQAAAJfAAAAXAAAAw== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAABBgAAAAABBgAAAAABBgAAAAACAAAAAAAAAAAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAABBgAAAAABBgAAAAACBgAAAAABBgAAAAACBgAAAAAABgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAABBgAAAAABBgAAAAABBgAAAAACBgAAAAAABgAAAAABBgAAAAACZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAABBgAAAAAABgAAAAACBgAAAAABBgAAAAACBgAAAAAABgAAAAABZAAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAABgAAAAACBgAAAAAABgAAAAAABgAAAAACBgAAAAAABgAAAAACBgAAAAACZAAAAAAAYQAAAAADAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAACBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAACBgAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAACBgAAAAAABgAAAAACBgAAAAAABgAAAAACBgAAAAAABgAAAAACZAAAAAAAYQAAAAAD + version: 6 4,-1: ind: 4,-1 - tiles: XwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFEAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABRAAABXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABQAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABRAAACXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAARAAABXAAAA10AAABcAAAAXAAAA1wAAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABQAAAAUAAAAA== + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAVQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAVQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAEAAAAAABYQAAAAADYgAAAAAAYQAAAAAAYQAAAAADYQAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAVAAAAAAA + version: 6 4,-2: ind: 4,-2 - tiles: AAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAQAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAIEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAQQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUQAAAl8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAABBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAAABgAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAACBgAAAAABBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAVQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -3,-4: ind: -3,-4 - tiles: XwAAACsAAAArAAAAKwAAACsAAAArAAAAKwAAACsAAAArAAAAKwAAAF8AAABFAAADSwAAAEgAAABfAAAAXwAAAEgAAABFAAADRQAAA0gAAABFAAAARQAAAkgAAABFAAAASAAAAEUAAAFIAAAASAAAAEsAAABFAAABXwAAABcAAAJLAAABOgAAAjoAAABLAAACOgAAADoAAAA6AAAASwAAAToAAAM6AAACSwAAA0sAAANLAAABSAAAABcAAAIXAAAARQAAAEUAAAJFAAACSAAAAEUAAABFAAAASAAAAEUAAAFIAAAARQAAAEUAAABFAAAASAAAAEgAAABfAAAAFwAAARcAAAEXAAADFwAAAkUAAABIAAAARQAAAEgAAABFAAAAFwAAAhcAAAEXAAADFwAAARcAAAJFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAARcAAAAXAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXwAAABcAAAJfAAAAFwAAAV8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAABeAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXwAAAF4AAABeAAAAXgAAAF8AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF8AAABeAAAAXgAAAF4AAABfAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABfAAAAXgAAAF4AAABeAAAAXwAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXwAAAF4AAABeAAAAXgAAAF8AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF8AAABeAAAAXgAAAF4AAABfAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABfAAAAXgAAAF4AAABeAAAAXwAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXwAAAF4AAABeAAAAXgAAAF8AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAZAAAAAAARwAAAAADTwAAAAAATAAAAAAAZAAAAAAAZAAAAAAATAAAAAAARwAAAAADRwAAAAADTAAAAAAARwAAAAAARwAAAAACTAAAAAAARwAAAAAATAAAAAAARwAAAAABTAAAAAAATAAAAAAATwAAAAAARwAAAAABZAAAAAAAFgAAAAACTwAAAAABOwAAAAACOwAAAAAATwAAAAACOwAAAAAAOwAAAAAAOwAAAAAATwAAAAABOwAAAAADOwAAAAACTwAAAAADTwAAAAADTwAAAAABTAAAAAAAFgAAAAACFgAAAAAARwAAAAAARwAAAAACRwAAAAACTAAAAAAARwAAAAAARwAAAAAATAAAAAAARwAAAAABTAAAAAAARwAAAAAARwAAAAAARwAAAAAATAAAAAAATAAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAADFgAAAAACRwAAAAAATAAAAAAARwAAAAAATAAAAAAARwAAAAAAFgAAAAACFgAAAAABFgAAAAADFgAAAAABFgAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAACZAAAAAAAFgAAAAABZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -4,-4: ind: -4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFLAAAARQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAAAFwAAABcAAAIXAAADFwAAAl8AAABIAAAASwAAA0UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAAhcAAAIXAAAAFwAAAxcAAAEXAAAARQAAA0sAAAJLAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAIXAAABFwAAAxcAAAEXAAAAXwAAAEgAAABFAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAFwAAAxcAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABTwAAAAAARwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAACFgAAAAADFgAAAAACZAAAAAAATAAAAAAATwAAAAADRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAADFgAAAAABFgAAAAAARwAAAAADTwAAAAACTwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAADFgAAAAABFgAAAAAAZAAAAAAATAAAAAAARwAAAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAFgAAAAADFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -2,2: ind: -2,2 - tiles: SAAAAEgAAABFAAABRQAAAhcAAAAXAAACXwAAAEUAAANFAAABRQAAAl8AAABeAAAAAAAAAAAAAAAAAAAAAAAAABcAAAEXAAACFwAAABcAAAMXAAADXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAXAAABFwAAARcAAAIXAAABFwAAAxcAAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAFwAAABcAAAMXAAABFwAAAxcAAAMXAAADXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: TAAAAAAATAAAAAAARwAAAAABRwAAAAACFgAAAAAAFgAAAAACZAAAAAAARwAAAAADRwAAAAABRwAAAAACZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAACFgAAAAAAFgAAAAADFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAABFgAAAAACFgAAAAABFgAAAAADFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAADFgAAAAABFgAAAAADFgAAAAADFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -4,-5: ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAABcAAAIXAAAAFwAAABcAAAJfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAEXAAADFwAAARcAAAAXAAAAFwAAAhcAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAACFwAAARcAAAEXAAACFwAAAxcAAAIXAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAARcAAAAXAAACFwAAABcAAAEXAAADFwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAEXAAADFwAAAhcAAAMXAAACFwAAABcAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAABFwAAABcAAAIXAAADFwAAAV8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAAhcAAAEXAAACFwAAAxcAAAEXAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAAXAAABFwAAAhcAAAAXAAADXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAACFwAAARcAAAEXAAAAFwAAARcAAAMXAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAAhcAAANfAAAAFwAAARcAAAAXAAACFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAARQAAAkgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAAAXAAABRQAAAUsAAAJFAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAFwAAAkUAAANLAAABSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAABcAAAFFAAACSwAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAAAXAAAASAAAAEsAAAFFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABfAAAAFwAAAkUAAANLAAADSAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAAAFgAAAAACFgAAAAAAFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAABFgAAAAADFgAAAAABFgAAAAAAFgAAAAAAFgAAAAACFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAABFgAAAAACFgAAAAADFgAAAAACFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAACFgAAAAAAFgAAAAABFgAAAAADFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAABFgAAAAADFgAAAAACFgAAAAADFgAAAAACFgAAAAAAFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAACFgAAAAADFgAAAAABZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAACFgAAAAADFgAAAAABFgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAAAFgAAAAABFgAAAAACFgAAAAAAFgAAAAADZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAABFgAAAAAAFgAAAAABFgAAAAADFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAACFgAAAAADZAAAAAAAFgAAAAABFgAAAAAAFgAAAAACFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAARwAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAABRwAAAAABTwAAAAACRwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAFgAAAAACRwAAAAADTwAAAAABTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAFgAAAAABRwAAAAACTwAAAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAFgAAAAAATAAAAAAATwAAAAABRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAACRwAAAAADTwAAAAADTAAAAAAA + version: 6 -3,2: ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAABFwAAARcAAAJfAAAARQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAFwAAABcAAAAXAAADXwAAABcAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABwAAAAcAAACHAAAAV8AAAAXAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAACZAAAAAAARwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAADZAAAAAAAFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAGwAAAAAAGwAAAAACGwAAAAABZAAAAAAAFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 4,-3: ind: 4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -3,-5: ind: -3,-5 - tiles: XwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAABcAAAEXAAACFwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAAhcAAAMXAAAAFwAAARcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAIXAAADFwAAARcAAAEXAAABXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAADFwAAABcAAAEXAAABFwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAABcAAAMXAAACFwAAAhcAAANfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAFwAAABcAAAAXAAADXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAFwAAAhcAAAAXAAADFwAAA18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAXAAAAFwAAABcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAIXAAABFwAAAhcAAAEXAAABXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAACFwAAAhcAAAEXAAACXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAASAAAAEUAAABFAAABSAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAFLAAABRQAAARcAAANfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAASwAAAkgAAAAXAAADXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAASAAAAEsAAAFFAAAAFwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABLAAADRQAAAxcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAASwAAAEUAAAEXAAADXwAAAA== + tiles: ZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAACFgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAAAFgAAAAABFgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAABFgAAAAABFgAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAABFgAAAAABFgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAACFgAAAAACFgAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAADFgAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAACFgAAAAABFgAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAABFgAAAAACZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAATAAAAAAARwAAAAAARwAAAAABTAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAABTwAAAAABRwAAAAABFgAAAAADZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAATwAAAAACTAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAATAAAAAAATwAAAAABRwAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAATwAAAAADRwAAAAADFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATwAAAAAARwAAAAABFgAAAAADZAAAAAAA + version: 6 -2,-4: ind: -2,-4 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAIXAAABFwAAARcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAFwAAABcAAAEXAAADXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAARcAAAAXAAADFwAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAABFgAAAAABFgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAAFgAAAAABFgAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAAAFgAAAAADFgAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -2,-5: ind: -2,-5 - tiles: FwAAABcAAAFfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAEXAAABXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAABFwAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAhcAAANfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAIXAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAADFwAAA18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAhcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAMXAAADXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAABFwAAA18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAARcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: FgAAAAAAFgAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -4,-6: ind: -4,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAABcAAAMXAAADFwAAAxcAAAEXAAABXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAADFgAAAAADFgAAAAABFgAAAAABZAAAAAAA + version: 6 -2,-6: ind: -2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAABcAAANfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -3,-6: ind: -3,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAFwAAARcAAAMXAAACFwAAAQ== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAADFgAAAAACFgAAAAAB + version: 6 3,2: ind: 3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 4,2: ind: 4,2 - tiles: XwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 5,0: ind: 5,0 - tiles: UAAAAF8AAABFAAABSAAAAEUAAAJFAAACXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAANLAAADSAAAAEUAAANFAAACSAAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAASwAAAkUAAANIAAAARQAAAEgAAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAF8AAABIAAAARQAAA0UAAANFAAACXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAhcAAAAXAAABFwAAAhcAAAIXAAABXwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAFIAAAARQAAAUUAAAJFAAADSAAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAADSwAAAksAAAJLAAABSwAAAUgAAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAUsAAAFLAAABSwAAAEsAAAFIAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAFFAAABSAAAAEUAAABIAAAARQAAAEgAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAABFwAAAxcAAAMXAAACFwAAAxcAAAJfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAhcAAAIXAAACFwAAABcAAAAXAAABXwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAIXAAACFwAAABcAAAAXAAAAFwAAA18AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAACIAAAAiAAABXwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: VAAAAAAAZAAAAAAARwAAAAABTAAAAAAARwAAAAACRwAAAAACZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAADTwAAAAADTAAAAAAARwAAAAADRwAAAAACTAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAATwAAAAACRwAAAAADTAAAAAAARwAAAAAATAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAZAAAAAAATAAAAAAARwAAAAADRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAAAFgAAAAABFgAAAAACFgAAAAACFgAAAAABZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABTAAAAAAARwAAAAABRwAAAAACRwAAAAADTAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAADTwAAAAACTwAAAAACTwAAAAABTwAAAAABTAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAABTwAAAAABTwAAAAABTwAAAAAATwAAAAABTAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABRwAAAAABTAAAAAAARwAAAAAATAAAAAAARwAAAAAATAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAADFgAAAAADFgAAAAACFgAAAAADFgAAAAACZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAACFgAAAAACFgAAAAAAFgAAAAAAFgAAAAABZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAADZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAIQAAAAAAIQAAAAABZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 5,1: ind: 5,1 - tiles: XwAAACsAAAAiAAABXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAArAAAAIgAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAAAAKgAAAAAAIQAAAAABZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAKgAAAAAAIQAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,-4: ind: 2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAAQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAABAAAAgQAAAAEAAACBAAAAl8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAABAAAAQQAAAIEAAAABAAAAhsAAAFcAAABXAAAA1wAAAIAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAABXwAAAAQAAAAEAAABBAAAAgQAAAAbAAAAXAAAAFwAAAJcAAACAAAAAAAAAAAAAAAABAAAAgQAAAIEAAAABAAAAgQAAAAEAAACBAAAAQQAAAAEAAACBAAAAVwAAAJcAAABXAAAAQAAAAAAAAAAAAAAAAQAAAEEAAAABAAAAAQAAAAEAAACBAAAAgQAAAEEAAACBAAAAAQAAAIEAAAABAAAAgQAAAEAAAAAAAAAAAAAAAAEAAAABAAAAQQAAAAEAAAABAAAAAQAAAAEAAAABAAAAgQAAAIEAAACBAAAAQQAAAEEAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAQQAAAAEAAABBAAAAQQAAAAEAAACBAAAAQQAAAEEAAABBAAAAg== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAABBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAABgAAAAABBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAABgAAAAACBgAAAAAABgAAAAACBgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAABgAAAAABBgAAAAACBgAAAAAABgAAAAACGgAAAAABYQAAAAABYQAAAAADYQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAABgAAAAABZAAAAAAABgAAAAAABgAAAAABBgAAAAACBgAAAAAAGgAAAAAAYQAAAAAAYQAAAAACYQAAAAACAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAACBgAAAAAABgAAAAACBgAAAAAABgAAAAACBgAAAAABBgAAAAAABgAAAAACBgAAAAABYQAAAAACYQAAAAABYQAAAAABAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAABgAAAAAABgAAAAAABgAAAAACBgAAAAACBgAAAAABBgAAAAACBgAAAAAABgAAAAACBgAAAAAABgAAAAACBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAACBgAAAAACBgAAAAACBgAAAAABBgAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAAABgAAAAABBgAAAAAABgAAAAABBgAAAAABBgAAAAAABgAAAAACBgAAAAABBgAAAAABBgAAAAABBgAAAAAC + version: 6 3,-4: ind: 3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAACBAAAAQQAAAEEAAAABAAAAAQAAAIAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAAQAAAAEAAACBAAAAAQAAAEEAAACBAAAAV8AAAAEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAABBAAAAQQAAAIEAAACBAAAAgQAAABfAAAABAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAMEAAAAIgAAAiIAAAMiAAACBAAAAAQAAAEEAAAAXwAAAAQAAAIEAAAABAAAAQAAAAAAAAAAAAAAAAAAAABcAAABXAAAASsAAAAiAAAAIgAAACIAAAAEAAAABAAAAV8AAAAEAAACBAAAAQQAAAEAAAAAAAAAAAAAAAAAAAAAXAAAAgQAAAArAAAAKwAAACIAAAMEAAABBAAAAQQAAAIEAAABBAAAAAQAAAAEAAABBAAAAgAAAAAAAAAAAAAAAF8AAAAEAAABBAAAAisAAAArAAAABAAAAgQAAAEEAAABBAAAAgQAAAAEAAAABAAAAgQAAAAAAAAAAAAAAAAAAABfAAAABAAAAAQAAAAEAAACBAAAAAQAAAIEAAABBAAAAAQAAAEEAAABBAAAAQQAAAEEAAACBAAAAQAAAAAAAAAAXwAAAAQAAAIEAAAABAAAAgQAAAEEAAACBAAAAAQAAAIEAAAABAAAAgQAAAEEAAACBAAAAgQAAAEAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAACBgAAAAABBgAAAAABBgAAAAAABgAAAAAABgAAAAACAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAABgAAAAAABgAAAAACBgAAAAAABgAAAAABBgAAAAACBgAAAAABZAAAAAAABgAAAAACBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAACBgAAAAABBgAAAAABBgAAAAACBgAAAAACBgAAAAACBgAAAAAAZAAAAAAABgAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAADBgAAAAAAIQAAAAACIQAAAAADIQAAAAACBgAAAAAABgAAAAABBgAAAAAAZAAAAAAABgAAAAACBgAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAABYQAAAAABKgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAABgAAAAAABgAAAAABZAAAAAAABgAAAAACBgAAAAABBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAACBgAAAAAAKgAAAAAAKgAAAAAAIQAAAAADBgAAAAABBgAAAAABBgAAAAACBgAAAAABBgAAAAAABgAAAAAABgAAAAABBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAABgAAAAABBgAAAAACKgAAAAAAKgAAAAAABgAAAAACBgAAAAABBgAAAAABBgAAAAACBgAAAAAABgAAAAAABgAAAAACBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAACBgAAAAAABgAAAAACBgAAAAABBgAAAAAABgAAAAABBgAAAAABBgAAAAABBgAAAAABBgAAAAACBgAAAAABAAAAAAAAAAAAAAAAZAAAAAAABgAAAAACBgAAAAAABgAAAAACBgAAAAABBgAAAAACBgAAAAAABgAAAAACBgAAAAAABgAAAAACBgAAAAABBgAAAAACBgAAAAACBgAAAAABAAAAAAAAAAAAAAAA + version: 6 5,-1: ind: 5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAARcAAAIXAAACFwAAARcAAAIXAAACXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAABFgAAAAACFgAAAAACFgAAAAABFgAAAAACFgAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 1,-4: ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABXwAAAAQAAAEEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAACAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAABAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAgQAAAEEAAAABAAAAAQAAAFfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAABBAAAAQQAAAIEAAABXwAAAAQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAACBAAAAgQAAAEEAAACBAAAAl8AAAAEAAABBAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAQAAAIEAAAABAAAAAQAAAEEAAAABAAAAAQAAAIEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAgQAAAEEAAAABAAAAgQAAAEEAAACBAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAF8AAAAEAAAABAAAAgQAAAEEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAABZAAAAAAABgAAAAABBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAABgAAAAACBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAACBgAAAAABBgAAAAAABgAAAAAABgAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAABBgAAAAABBgAAAAABBgAAAAACBgAAAAABZAAAAAAABgAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAACBgAAAAACBgAAAAABBgAAAAACBgAAAAACZAAAAAAABgAAAAABBgAAAAACBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAAABgAAAAACBgAAAAAABgAAAAAABgAAAAABBgAAAAAABgAAAAAABgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAACBgAAAAABBgAAAAAABgAAAAACBgAAAAABBgAAAAACBgAAAAACBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAZAAAAAAABgAAAAAABgAAAAACBgAAAAABBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 5,2: ind: 5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 1,2: ind: 1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 type: MapGrid - type: Broadphase - - angularDamping: 0.05 + - bodyStatus: InAir + angularDamping: 0.05 linearDamping: 0.05 fixedRotation: False bodyType: Dynamic @@ -716,6 +789,9 @@ entities: 1455: 18,-44 2178: 79,15 2179: 78,15 + 2425: 41,-13 + 2426: 42,-13 + 2427: 43,-13 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS @@ -5902,19 +5978,24 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: XwAAABcAAAAXAAABFwAAARcAAAIXAAABFwAAABcAAAFfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAHAAAAToAAAA6AAAAOgAAABwAAAIcAAADXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAAV8AAAAXAAACFwAAAhcAAAMXAAACFwAAAV8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAFwAAAF8AAAAXAAACXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAABcAAAMXAAAAFwAAAxcAAAJfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAHAAAAhwAAAEcAAABHAAAABwAAAEcAAABHAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAcAAAAHAAAAhwAAABfAAAAHAAAAl8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAAAAFgAAAAAAFgAAAAABFgAAAAABFgAAAAACFgAAAAABFgAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAGwAAAAABOwAAAAAAOwAAAAAAOwAAAAAAGwAAAAACGwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAFgAAAAACFgAAAAACFgAAAAADFgAAAAACFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAAAFgAAAAADFgAAAAACZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAAAGwAAAAABGwAAAAABGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAGwAAAAAAGwAAAAACGwAAAAAAZAAAAAAAGwAAAAACZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAASwAAA0sAAANFAAADFwAAARcAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAASwAAAksAAABLAAABXwAAABcAAAMXAAACFwAAAl8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEsAAAJfAAAASwAAAUUAAABfAAAAFwAAARcAAAJfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAAASwAAAksAAABfAAAAFwAAAV4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAASwAAA0sAAANLAAAARQAAAhcAAAIXAAADFwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAXAAACXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAADSwAAAEsAAAJfAAAATwAAAE8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAV8AAABLAAADXwAAAE8AAABPAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABLAAABSwAAA18AAABFAAAASwAAAEUAAAFfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAABSwAAA0sAAABfAAAARQAAAl8AAABFAAABXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAEsAAABLAAACXwAAAEUAAANLAAAARQAAAV8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABLAAACSwAAAl8AAABfAAAAFwAAAV8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAATwAAAAADTwAAAAADRwAAAAADFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAATwAAAAACTwAAAAAATwAAAAABZAAAAAAAFgAAAAADFgAAAAACFgAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAATwAAAAACZAAAAAAATwAAAAABRwAAAAAAZAAAAAAAFgAAAAABFgAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAATwAAAAACTwAAAAAAZAAAAAAAFgAAAAABYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAATwAAAAADTwAAAAADTwAAAAAARwAAAAACFgAAAAACFgAAAAADFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAADTwAAAAAATwAAAAACZAAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAABZAAAAAAATwAAAAADZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAATwAAAAABTwAAAAADZAAAAAAARwAAAAAATwAAAAAARwAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAABTwAAAAADTwAAAAAAZAAAAAAARwAAAAACZAAAAAAARwAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAATwAAAAAATwAAAAACZAAAAAAARwAAAAADTwAAAAAARwAAAAABZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAATwAAAAACTwAAAAACZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAA + version: 6 type: MapGrid - type: Broadphase - - angularDamping: 0.05 + - bodyStatus: InAir + angularDamping: 0.05 linearDamping: 0.05 fixedRotation: False bodyType: Dynamic @@ -12117,6 +12198,24 @@ entities: - pos: -53.5,-38.5 parent: 2 type: Transform + - uid: 11327 + components: + - rot: 3.141592653589793 rad + pos: -39.5,21.5 + parent: 2 + type: Transform + - uid: 11328 + components: + - rot: 3.141592653589793 rad + pos: -35.5,21.5 + parent: 2 + type: Transform + - uid: 11329 + components: + - rot: 3.141592653589793 rad + pos: -36.5,21.5 + parent: 2 + type: Transform - uid: 17662 components: - pos: 58.5,-50.5 @@ -14303,6 +14402,18 @@ entities: pos: -33.5,22.5 parent: 2 type: Transform +- proto: BorgCharger + entities: + - uid: 5877 + components: + - pos: 32.5,-0.5 + parent: 2 + type: Transform + - uid: 7241 + components: + - pos: 47.5,-15.5 + parent: 2 + type: Transform - proto: BoxBeaker entities: - uid: 863 @@ -29922,6 +30033,16 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 19003 + components: + - pos: 47.5,-15.5 + parent: 2 + type: Transform + - uid: 19004 + components: + - pos: 47.5,-14.5 + parent: 2 + type: Transform - proto: CableApcStack entities: - uid: 3207 @@ -30122,7 +30243,7 @@ entities: type: AmbientSound - uid: 3244 components: - - pos: -31.5,34.5 + - pos: -30.5,33.5 parent: 2 type: Transform - uid: 3245 @@ -34430,6 +34551,16 @@ entities: - pos: 1.5,-14.5 parent: 2 type: Transform + - uid: 13708 + components: + - pos: -32.5,35.5 + parent: 2 + type: Transform + - uid: 13813 + components: + - pos: -32.5,34.5 + parent: 2 + type: Transform - uid: 14276 components: - pos: 1.5,-19.5 @@ -34666,6 +34797,62 @@ entities: - pos: 11.5,-24.5 parent: 2 type: Transform + - uid: 19064 + components: + - pos: -3.5,-9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19065 + components: + - pos: -3.5,-8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19066 + components: + - pos: 4.5,-9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19067 + components: + - pos: 4.5,-8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19068 + components: + - pos: 4.5,-10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19069 + components: + - pos: 3.5,-10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19070 + components: + - pos: 2.5,-10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19071 + components: + - pos: 1.5,-10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound - proto: CableHVStack entities: - uid: 3983 @@ -39465,6 +39652,363 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 19007 + components: + - pos: -1.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19008 + components: + - pos: 2.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19072 + components: + - pos: -6.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19073 + components: + - pos: -6.5,5.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19074 + components: + - pos: -6.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19075 + components: + - pos: -5.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19076 + components: + - pos: -4.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19077 + components: + - pos: -2.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19078 + components: + - pos: -1.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19079 + components: + - pos: -0.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19080 + components: + - pos: 0.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19081 + components: + - pos: 1.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19082 + components: + - pos: 2.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19083 + components: + - pos: 3.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19084 + components: + - pos: 4.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19085 + components: + - pos: 5.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19086 + components: + - pos: 6.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19087 + components: + - pos: 7.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19088 + components: + - pos: 7.5,5.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19089 + components: + - pos: 7.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19090 + components: + - pos: 7.5,2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19091 + components: + - pos: 7.5,1.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19092 + components: + - pos: 7.5,0.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19093 + components: + - pos: 7.5,-0.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19094 + components: + - pos: 7.5,-1.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19095 + components: + - pos: 7.5,-2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19096 + components: + - pos: 7.5,-3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19097 + components: + - pos: 7.5,-5.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19098 + components: + - pos: 7.5,-6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19099 + components: + - pos: 7.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19100 + components: + - pos: 6.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19101 + components: + - pos: 5.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19102 + components: + - pos: 3.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19103 + components: + - pos: 2.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19104 + components: + - pos: 1.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19105 + components: + - pos: 0.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19106 + components: + - pos: -0.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19107 + components: + - pos: -1.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19108 + components: + - pos: -2.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19109 + components: + - pos: -4.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19110 + components: + - pos: -5.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19111 + components: + - pos: -6.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19112 + components: + - pos: -6.5,-6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19113 + components: + - pos: -6.5,-5.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19114 + components: + - pos: -6.5,-3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19115 + components: + - pos: -6.5,-2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19116 + components: + - pos: -6.5,-1.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19117 + components: + - pos: -6.5,-0.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19118 + components: + - pos: -6.5,0.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19119 + components: + - pos: -6.5,1.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19120 + components: + - pos: -6.5,2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound - proto: CableMVStack entities: - uid: 4724 @@ -45552,12 +46096,6 @@ entities: pos: 32.5,3.5 parent: 2 type: Transform - - uid: 15869 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-0.5 - parent: 2 - type: Transform - uid: 16969 components: - rot: -1.5707963267948966 rad @@ -47305,6 +47843,18 @@ entities: - pos: -19.51768,-7.344324 parent: 2 type: Transform +- proto: ClothingHeadHatWelding + entities: + - uid: 18997 + components: + - pos: 53.39861,-8.337879 + parent: 2 + type: Transform + - uid: 18998 + components: + - pos: 53.414234,-10.384754 + parent: 2 + type: Transform - proto: ClothingHeadHatWeldingMaskFlame entities: - uid: 5917 @@ -49296,11 +49846,6 @@ entities: type: Transform - proto: CrateFilledSpawner entities: - - uid: 6234 - components: - - pos: -39.5,-32.5 - parent: 2 - type: Transform - uid: 6235 components: - pos: -11.5,1.5 @@ -49425,6 +49970,25 @@ entities: - pos: -18.5,-27.5 parent: 2 type: Transform +- proto: CrateTrashCart + entities: + - uid: 6234 + components: + - pos: -39.5,-32.5 + parent: 2 + type: Transform + - uid: 19006 + components: + - pos: 67.5,5.5 + parent: 2 + type: Transform +- proto: CrateTrashCartFilled + entities: + - uid: 16666 + components: + - pos: -12.5,7.5 + parent: 2 + type: Transform - proto: CrayonBox entities: - uid: 6259 @@ -55735,11 +56299,6 @@ entities: - pos: -49.5,-30.5 parent: 2 type: Transform - - uid: 7241 - components: - - pos: 47.5,-15.5 - parent: 2 - type: Transform - proto: filingCabinetRandom entities: - uid: 7242 @@ -61274,6 +61833,14 @@ entities: - pos: -30.270355,-15.919231 parent: 2 type: Transform +- proto: FoodCartHot + entities: + - uid: 19005 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,9.5 + parent: 2 + type: Transform - proto: FoodCondimentBottleEnzyme entities: - uid: 7742 @@ -83479,11 +84046,6 @@ entities: - pos: 49.5,-30.5 parent: 2 type: Transform - - uid: 10933 - components: - - pos: 13.5,-38.5 - parent: 2 - type: Transform - uid: 17800 components: - pos: 44.5,-52.5 @@ -83494,23 +84056,6 @@ entities: - pos: 75.5,1.5 parent: 2 type: Transform -- proto: GeneratorUranium - entities: - - uid: 10421 - components: - - pos: 4.5,-12.5 - parent: 2 - type: Transform - - uid: 10422 - components: - - pos: 5.5,-12.5 - parent: 2 - type: Transform - - uid: 10423 - components: - - pos: -5.5,32.5 - parent: 2 - type: Transform - proto: Girder entities: - uid: 10424 @@ -86775,6 +87320,12 @@ entities: - pos: 8.5,33.5 parent: 2 type: Transform + - uid: 15869 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,4.5 + parent: 2 + type: Transform - uid: 16775 components: - pos: -38.5,-21.5 @@ -87727,6 +88278,288 @@ entities: pos: 4.5,-12.5 parent: 18594 type: Transform + - uid: 19009 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,5.5 + parent: 2 + type: Transform + - uid: 19010 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,6.5 + parent: 2 + type: Transform + - uid: 19011 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,7.5 + parent: 2 + type: Transform + - uid: 19012 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,8.5 + parent: 2 + type: Transform + - uid: 19013 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,9.5 + parent: 2 + type: Transform + - uid: 19014 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,9.5 + parent: 2 + type: Transform + - uid: 19015 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,9.5 + parent: 2 + type: Transform + - uid: 19016 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,9.5 + parent: 2 + type: Transform + - uid: 19017 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,9.5 + parent: 2 + type: Transform + - uid: 19018 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,9.5 + parent: 2 + type: Transform + - uid: 19019 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,9.5 + parent: 2 + type: Transform + - uid: 19020 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,9.5 + parent: 2 + type: Transform + - uid: 19021 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 2 + type: Transform + - uid: 19022 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,9.5 + parent: 2 + type: Transform + - uid: 19023 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,9.5 + parent: 2 + type: Transform + - uid: 19024 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,9.5 + parent: 2 + type: Transform + - uid: 19025 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,9.5 + parent: 2 + type: Transform + - uid: 19026 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,9.5 + parent: 2 + type: Transform + - uid: 19027 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,8.5 + parent: 2 + type: Transform + - uid: 19028 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,7.5 + parent: 2 + type: Transform + - uid: 19029 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,6.5 + parent: 2 + type: Transform + - uid: 19030 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,5.5 + parent: 2 + type: Transform + - uid: 19031 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,4.5 + parent: 2 + type: Transform + - uid: 19032 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,3.5 + parent: 2 + type: Transform + - uid: 19033 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 2 + type: Transform + - uid: 19034 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 2 + type: Transform + - uid: 19035 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 2 + type: Transform + - uid: 19036 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 2 + type: Transform + - uid: 19037 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-7.5 + parent: 2 + type: Transform + - uid: 19038 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-9.5 + parent: 2 + type: Transform + - uid: 19039 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-10.5 + parent: 2 + type: Transform + - uid: 19040 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-10.5 + parent: 2 + type: Transform + - uid: 19041 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 2 + type: Transform + - uid: 19042 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 2 + type: Transform + - uid: 19043 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 2 + type: Transform + - uid: 19044 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 2 + type: Transform + - uid: 19045 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 2 + type: Transform + - uid: 19047 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-10.5 + parent: 2 + type: Transform + - uid: 19048 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-10.5 + parent: 2 + type: Transform + - uid: 19049 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-10.5 + parent: 2 + type: Transform + - uid: 19050 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-9.5 + parent: 2 + type: Transform + - uid: 19051 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-8.5 + parent: 2 + type: Transform + - uid: 19052 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-7.5 + parent: 2 + type: Transform + - uid: 19053 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-6.5 + parent: 2 + type: Transform + - uid: 19054 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 2 + type: Transform + - uid: 19055 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-4.5 + parent: 2 + type: Transform + - uid: 19056 + components: + - rot: 3.141592653589793 rad + pos: -9.5,3.5 + parent: 2 + type: Transform - proto: GrilleBroken entities: - uid: 4191 @@ -88645,7 +89478,7 @@ entities: - pos: 44.5,7.5 parent: 2 type: Transform - - SecondsUntilStateChange: -15489.894 + - SecondsUntilStateChange: -16276.885 state: Opening type: Door - uid: 11091 @@ -88653,7 +89486,7 @@ entities: - pos: 62.5,21.5 parent: 2 type: Transform - - SecondsUntilStateChange: -155240.47 + - SecondsUntilStateChange: -156027.45 state: Opening type: Door - uid: 11092 @@ -89370,7 +90203,7 @@ entities: pos: -51.494007,-16.12878 parent: 2 type: Transform -- proto: lantern +- proto: Lantern entities: - uid: 11195 components: @@ -89387,7 +90220,7 @@ entities: - pos: 81.50837,11.824523 parent: 2 type: Transform -- proto: lanternextrabright +- proto: LanternFlash entities: - uid: 17192 components: @@ -90240,6 +91073,13 @@ entities: - pos: 5.5,-4.5 parent: 18594 type: Transform +- proto: MagazinePistolSubMachineGunTopMounted + entities: + - uid: 19000 + components: + - pos: 2.7872424,27.431963 + parent: 2 + type: Transform - proto: MaintenanceFluffSpawner entities: - uid: 11260 @@ -90811,26 +91651,6 @@ entities: pos: -35.5,-38.5 parent: 2 type: Transform -- proto: MountainRock - entities: - - uid: 11327 - components: - - rot: 3.141592653589793 rad - pos: -39.5,21.5 - parent: 2 - type: Transform - - uid: 11328 - components: - - rot: 3.141592653589793 rad - pos: -35.5,21.5 - parent: 2 - type: Transform - - uid: 11329 - components: - - rot: 3.141592653589793 rad - pos: -36.5,21.5 - parent: 2 - type: Transform - proto: MouseTimedSpawner entities: - uid: 18060 @@ -91309,8 +92129,8 @@ entities: type: Transform - stampState: paper_stamp-syndicate stampedBy: - - stampedName: stamp-component-stamped-name-syndicate - stampedColor: '#850000' + - stampedColor: '#850000FF' + stampedName: stamp-component-stamped-name-syndicate content: >- Operative, i have succeeded in the mission and this is the remainder of the evidence. I am hiding it behind this wall and escaping ASAP. @@ -91815,6 +92635,47 @@ entities: - pos: -16.5,25.5 parent: 2 type: Transform +- proto: PortableGeneratorJrPacman + entities: + - uid: 18994 + components: + - pos: -36.5,19.5 + parent: 2 + type: Transform + - uid: 18995 + components: + - pos: 81.5,13.5 + parent: 2 + type: Transform + - uid: 18996 + components: + - pos: -37.5,-37.5 + parent: 2 + type: Transform +- proto: PortableGeneratorPacman + entities: + - uid: 10933 + components: + - pos: 13.5,-38.5 + parent: 2 + type: Transform +- proto: PortableGeneratorSuperPacman + entities: + - uid: 10421 + components: + - pos: 4.5,-12.5 + parent: 2 + type: Transform + - uid: 10422 + components: + - pos: 5.5,-12.5 + parent: 2 + type: Transform + - uid: 10423 + components: + - pos: -5.5,32.5 + parent: 2 + type: Transform - proto: PortableScrubber entities: - uid: 11481 @@ -97536,6 +98397,52 @@ entities: pos: -36.5,20.5 parent: 2 type: Transform + - uid: 19046 + components: + - pos: 10.5,-3.5 + parent: 2 + type: Transform + - uid: 19057 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,9.5 + parent: 2 + type: Transform + - uid: 19058 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,9.5 + parent: 2 + type: Transform + - uid: 19059 + components: + - rot: 3.141592653589793 rad + pos: 10.5,2.5 + parent: 2 + type: Transform + - uid: 19060 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 2 + type: Transform + - uid: 19061 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-10.5 + parent: 2 + type: Transform + - uid: 19062 + components: + - pos: -9.5,-3.5 + parent: 2 + type: Transform + - uid: 19063 + components: + - rot: 3.141592653589793 rad + pos: -9.5,2.5 + parent: 2 + type: Transform - proto: RailingCorner entities: - uid: 12308 @@ -106596,23 +107503,6 @@ entities: - pos: 53.600548,4.6664896 parent: 2 type: Transform -- proto: SyringeSpaceacillin - entities: - - uid: 5877 - components: - - pos: 53.553673,5.0883646 - parent: 2 - type: Transform - - uid: 13813 - components: - - pos: 53.538048,5.2758646 - parent: 2 - type: Transform - - uid: 18412 - components: - - pos: 65.51431,23.641582 - parent: 2 - type: Transform - proto: Table entities: - uid: 299 @@ -107247,11 +108137,6 @@ entities: - pos: -12.5,6.5 parent: 2 type: Transform - - uid: 13708 - components: - - pos: -12.5,7.5 - parent: 2 - type: Transform - uid: 13709 components: - pos: 12.5,12.5 @@ -124575,6 +125460,28 @@ entities: - pos: 31.419285,17.67041 parent: 2 type: Transform +- proto: WeaponLaserCarbine + entities: + - uid: 16667 + components: + - pos: -13.497845,21.377853 + parent: 2 + type: Transform + - uid: 18412 + components: + - pos: -13.48222,21.612228 + parent: 2 + type: Transform + - uid: 19001 + components: + - pos: -13.48222,21.237228 + parent: 2 + type: Transform + - uid: 19002 + components: + - pos: -13.48222,21.487228 + parent: 2 + type: Transform - proto: WeaponRevolverDeckard entities: - uid: 18967 @@ -124586,18 +125493,6 @@ entities: - canCollide: False type: Physics - type: InsideEntityStorage -- proto: WeaponShotgunEnforcer - entities: - - uid: 16666 - components: - - pos: -13.452698,21.675453 - parent: 2 - type: Transform - - uid: 16667 - components: - - pos: -13.468323,21.441078 - parent: 2 - type: Transform - proto: WeaponShotgunKammerer entities: - uid: 16702 @@ -124610,6 +125505,13 @@ entities: - pos: -13.437025,23.679188 parent: 2 type: Transform +- proto: WeaponSubMachineGunWt550 + entities: + - uid: 18999 + components: + - pos: 2.6934924,27.556963 + parent: 2 + type: Transform - proto: Welder entities: - uid: 16670 diff --git a/Resources/Maps/fland.yml b/Resources/Maps/fland.yml index 09aa8418941..db2cfbcce4e 100644 --- a/Resources/Maps/fland.yml +++ b/Resources/Maps/fland.yml @@ -5,50 +5,48 @@ tilemap: 0: Space 1: FloorArcadeBlue 2: FloorArcadeBlue2 - 10: FloorAsteroidSand - 11: FloorAsteroidSandPebbles - 12: FloorAsteroidSandRocks - 15: FloorBar - 17: FloorBlue - 18: FloorBlueCircuit - 21: FloorCarpetClown - 25: FloorClown - 26: FloorDark - 30: FloorDarkMini - 31: FloorDarkMono - 34: FloorDarkPavementVertical - 35: FloorDarkPlastic - 38: FloorEighties - 41: FloorFreezer - 42: FloorGlass - 43: FloorGold - 44: FloorGrass - 45: FloorGrassDark - 47: FloorGrassLight - 48: FloorGreenCircuit - 52: FloorHydro - 53: FloorKitchen - 54: FloorLaundry - 55: FloorLino - 57: FloorMetalDiamond - 62: FloorPlastic - 64: FloorReinforced - 65: FloorReinforcedHardened - 66: FloorRockVault - 69: FloorShuttleOrange - 73: FloorSilver - 75: FloorSteel - 80: FloorSteelDirty - 86: FloorSteelPavementVertical - 87: FloorTechMaint - 88: FloorTechMaint2 - 91: FloorWhite - 95: FloorWhiteMini - 100: FloorWhitePlastic - 101: FloorWood - 103: Lattice - 104: Plating - 105: PlatingAsteroid + 6: FloorAsteroidSand + 11: FloorBar + 13: FloorBlue + 14: FloorBlueCircuit + 17: FloorCarpetClown + 21: FloorClown + 22: FloorDark + 26: FloorDarkMini + 27: FloorDarkMono + 30: FloorDarkPavementVertical + 31: FloorDarkPlastic + 34: FloorEighties + 37: FloorFreezer + 38: FloorGlass + 39: FloorGold + 40: FloorGrass + 41: FloorGrassDark + 43: FloorGrassLight + 44: FloorGreenCircuit + 48: FloorHydro + 49: FloorKitchen + 50: FloorLaundry + 51: FloorLino + 53: FloorMetalDiamond + 58: FloorPlastic + 60: FloorReinforced + 61: FloorReinforcedHardened + 62: FloorRockVault + 65: FloorShuttleOrange + 69: FloorSilver + 71: FloorSteel + 76: FloorSteelDirty + 82: FloorSteelPavementVertical + 83: FloorTechMaint + 84: FloorTechMaint2 + 87: FloorWhite + 91: FloorWhiteMini + 96: FloorWhitePlastic + 97: FloorWood + 99: Lattice + 100: Plating + 101: PlatingAsteroid entities: - proto: "" entities: @@ -71,391 +69,391 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: VwAAAGgAAABXAAAAaAAAAFcAAABoAAAAJgAAACYAAAAmAAAAaAAAAGgAAABoAAAAGgAAAUsAAABLAAACSwAAAmgAAABoAAAAVwAAAGgAAABXAAAAaAAAACYAAAAmAAAAJgAAAGgAAABoAAAAaAAAABoAAAJLAAAASwAAA0sAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACSwAAAEsAAAFLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAksAAABLAAADSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAJLAAACSwAAAEsAAAIaAAABGgAAAxoAAAJoAAAASwAAAksAAABLAAABSwAAAEsAAAFoAAAAaAAAAGgAAAAaAAACSwAAA0sAAABLAAABGgAAABoAAAMaAAADVwAAAEsAAAFLAAABSwAAAEsAAANLAAACWAAAAGgAAABoAAAAGgAAAxoAAAMaAAAAGgAAAhoAAAEaAAADGgAAAmgAAABLAAADSwAAAUsAAANLAAACSwAAAGgAAABoAAAAaAAAABoAAAFoAAAAGgAAABoAAANoAAAAGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAAAaAAADGgAAAxoAAAMaAAABVwAAAEsAAAJLAAABSwAAAEsAAANLAAABSwAAAUsAAABXAAAASwAAA0sAAAJLAAABSwAAAEsAAABLAAADSwAAAFcAAABLAAABSwAAA0sAAAJLAAADSwAAAUsAAAFLAAACVwAAAEsAAAFLAAACSwAAA0sAAAFLAAACSwAAAEsAAAJXAAAASwAAAksAAAJLAAADSwAAAEsAAABLAAAASwAAAFcAAABLAAACSwAAA0sAAANLAAACSwAAAEsAAANLAAABaAAAAGgAAABoAAAAaAAAABoAAAIaAAADGgAAABoAAAJoAAAASwAAA0sAAAFLAAABSwAAAUsAAAJLAAAASwAAADcAAAA3AAAANwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAACSwAAAWgAAABlAAADZQAAAGUAAAA3AAAANwAAADcAAABoAAAAGgAAAxoAAAAaAAABGgAAAWgAAABLAAACSwAAAksAAAJlAAAAZQAAAzcAAAA3AAAANwAAADcAAAA3AAAAaAAAABoAAAMaAAAAGgAAABoAAABoAAAASwAAAksAAABLAAACZQAAA2UAAAA3AAAANwAAAA== + tiles: UwAAAGQAAABTAAAAZAAAAFMAAABkAAAAIgAAACIAAAAiAAAAZAAAAGQAAABkAAAAFgAAAUcAAABHAAACRwAAAmQAAABkAAAAUwAAAGQAAABTAAAAZAAAACIAAAAiAAAAIgAAAGQAAABkAAAAZAAAABYAAAJHAAAARwAAA0cAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACRwAAAEcAAAFHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAkcAAABHAAADRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAJHAAACRwAAAEcAAAIWAAABFgAAAxYAAAJkAAAARwAAAkcAAABHAAABRwAAAEcAAAFkAAAAZAAAAGQAAAAWAAACRwAAA0cAAABHAAABFgAAABYAAAMWAAADUwAAAEcAAAFHAAABRwAAAEcAAANHAAACVAAAAGQAAABkAAAAFgAAAxYAAAMWAAAAFgAAAhYAAAEWAAADFgAAAmQAAABHAAADRwAAAUcAAANHAAACRwAAAGQAAABkAAAAZAAAABYAAAFkAAAAFgAAABYAAANkAAAAFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAAAWAAADFgAAAxYAAAMWAAABUwAAAEcAAAJHAAABRwAAAEcAAANHAAABRwAAAUcAAABTAAAARwAAA0cAAAJHAAABRwAAAEcAAABHAAADRwAAAFMAAABHAAABRwAAA0cAAAJHAAADRwAAAUcAAAFHAAACUwAAAEcAAAFHAAACRwAAA0cAAAFHAAACRwAAAEcAAAJTAAAARwAAAkcAAAJHAAADRwAAAEcAAABHAAAARwAAAFMAAABHAAACRwAAA0cAAANHAAACRwAAAEcAAANHAAABZAAAAGQAAABkAAAAZAAAABYAAAIWAAADFgAAABYAAAJkAAAARwAAA0cAAAFHAAABRwAAAUcAAAJHAAAARwAAADMAAAAzAAAAMwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAACRwAAAWQAAABhAAADYQAAAGEAAAAzAAAAMwAAADMAAABkAAAAFgAAAxYAAAAWAAABFgAAAWQAAABHAAACRwAAAkcAAAJhAAAAYQAAAzMAAAAzAAAAMwAAADMAAAAzAAAAZAAAABYAAAMWAAAAFgAAABYAAABkAAAARwAAAkcAAABHAAACYQAAA2EAAAAzAAAAMwAAAA== 0,0: ind: 0,0 - tiles: NwAAAGUAAABlAAAASwAAAEsAAAFLAAAAGgAAAUsAAAFLAAACSwAAAEsAAAFLAAABaAAAABoAAAEaAAABaAAAADcAAABlAAAAaAAAAEsAAANLAAACSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADGgAAAmgAAABLAAADSwAAAksAAAAaAAABSwAAA0sAAABLAAAASwAAAEsAAANoAAAAGgAAAhoAAAJoAAAAaAAAAGgAAABoAAAASwAAAEsAAANLAAACGgAAAksAAAFLAAADSwAAAEsAAAFLAAADGgAAAxoAAAMaAAABWAAAAEsAAAJLAAACSwAAAEsAAAJLAAAASwAAARoAAABLAAACSwAAAEsAAAJLAAABSwAAAmgAAAAaAAACGgAAAmgAAABLAAAASwAAA0sAAAJLAAACSwAAAksAAAEaAAACaAAAAEsAAAFLAAAASwAAAEsAAAJoAAAAGgAAAxoAAAFoAAAASwAAAksAAAJLAAACSwAAA0sAAAJLAAAAGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAEsAAAJLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACaAAAABoAAAFLAAACUAAAABoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA2gAAAAaAAABSwAAAEsAAAIaAAACaAAAAGgAAABoAAAAaAAAAEsAAANoAAAAaAAAAGgAAABCAAAAGgAAAUsAAABoAAAAGgAAAEsAAANLAAADGgAAA1gAAABoAAAAaAAAAGgAAABoAAAAUAAAAGgAAABoAAAAQgAAABoAAAFLAAADaAAAABoAAAFQAAAASwAAARoAAABoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAEIAAAAaAAABSwAAAEsAAAMaAAAASwAAA1AAAAAaAAACGgAAAGgAAABoAAAAaAAAAGgAAABQAAAAaAAAAGgAAAAaAAADGgAAAksAAABoAAAAGgAAAhoAAAMaAAADGgAAABoAAANoAAAAaAAAAGgAAABoAAAAUAAAAGgAAABoAAAAGgAAAhoAAAFLAAABaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAMaAAAASwAAABoAAAJYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANoAAAAaAAAAGgAAABoAAAAGgAAAw== + tiles: MwAAAGEAAABhAAAARwAAAEcAAAFHAAAAFgAAAUcAAAFHAAACRwAAAEcAAAFHAAABZAAAABYAAAEWAAABZAAAADMAAABhAAAAZAAAAEcAAANHAAACRwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADFgAAAmQAAABHAAADRwAAAkcAAAAWAAABRwAAA0cAAABHAAAARwAAAEcAAANkAAAAFgAAAhYAAAJkAAAAZAAAAGQAAABkAAAARwAAAEcAAANHAAACFgAAAkcAAAFHAAADRwAAAEcAAAFHAAADFgAAAxYAAAMWAAABVAAAAEcAAAJHAAACRwAAAEcAAAJHAAAARwAAARYAAABHAAACRwAAAEcAAAJHAAABRwAAAmQAAAAWAAACFgAAAmQAAABHAAAARwAAA0cAAAJHAAACRwAAAkcAAAEWAAACZAAAAEcAAAFHAAAARwAAAEcAAAJkAAAAFgAAAxYAAAFkAAAARwAAAkcAAAJHAAACRwAAA0cAAAJHAAAAFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAEcAAAJHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACZAAAABYAAAFHAAACTAAAABYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA2QAAAAWAAABRwAAAEcAAAIWAAACZAAAAGQAAABkAAAAZAAAAEcAAANkAAAAZAAAAGQAAAA+AAAAFgAAAUcAAABkAAAAFgAAAEcAAANHAAADFgAAA1QAAABkAAAAZAAAAGQAAABkAAAATAAAAGQAAABkAAAAPgAAABYAAAFHAAADZAAAABYAAAFMAAAARwAAARYAAABkAAAAZAAAAEcAAABkAAAAZAAAAGQAAABkAAAAZAAAAD4AAAAWAAABRwAAAEcAAAMWAAAARwAAA0wAAAAWAAACFgAAAGQAAABkAAAAZAAAAGQAAABMAAAAZAAAAGQAAAAWAAADFgAAAkcAAABkAAAAFgAAAhYAAAMWAAADFgAAABYAAANkAAAAZAAAAGQAAABkAAAATAAAAGQAAABkAAAAFgAAAhYAAAFHAAABZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAMWAAAARwAAABYAAAJUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANkAAAAZAAAAGQAAABkAAAAFgAAAw== -1,0: ind: -1,0 - tiles: NwAAADcAAAA3AAAAaAAAABoAAAEaAAADGgAAAhoAAANoAAAASwAAAEsAAABLAAABZQAAAGUAAAI3AAAANwAAAGgAAABoAAAAaAAAAGgAAAAaAAABGgAAABoAAAAaAAABaAAAAEsAAABLAAABSwAAA2gAAABlAAABNwAAADcAAABoAAAAaAAAAGgAAABoAAAAGgAAARoAAAIaAAACGgAAAGgAAABLAAABSwAAAksAAAFoAAAAGgAAARoAAAMaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAASwAAAksAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAUsAAANLAAABSwAAAksAAAJLAAAASwAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAABoAAAJLAAABSwAAAEsAAAFLAAABSwAAAksAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADSwAAA0sAAABLAAACSwAAAEsAAABLAAACSwAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAZQAAABoAAAEaAAADGgAAAxoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAAAZQAAAmUAAABlAAACZQAAAGUAAAEaAAACaAAAABoAAAMaAAAAGgAAARoAAAAaAAACGgAAAGgAAABLAAABSwAAA2gAAAAaAAADGgAAAxoAAAEaAAABGgAAAmgAAAAaAAACGgAAABoAAAIaAAABGgAAAhoAAANoAAAASwAAAUsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAARoAAAIaAAABGgAAAhoAAAIaAAAAaAAAAEsAAANLAAABaAAAABoAAAEaAAABGgAAARoAAAMaAAACaAAAAGgAAABoAAAAGgAAAhoAAAFoAAAAaAAAAGgAAABLAAACSwAAAmgAAABlAAAAZQAAAmUAAANlAAAAZQAAAxoAAAEaAAACGgAAAhoAAAMaAAABGgAAAhoAAAMaAAADSwAAAEsAAAJlAAACZQAAAWUAAAJlAAAAZQAAAWUAAAMaAAACGgAAAxoAAAIaAAABGgAAAxoAAAEaAAAAGgAAA0sAAANLAAACKgAAAioAAAMqAAABKgAAASoAAABlAAACaAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAAGgAAABLAAACSwAAAA== + tiles: MwAAADMAAAAzAAAAZAAAABYAAAEWAAADFgAAAhYAAANkAAAARwAAAEcAAABHAAABYQAAAGEAAAIzAAAAMwAAAGQAAABkAAAAZAAAAGQAAAAWAAABFgAAABYAAAAWAAABZAAAAEcAAABHAAABRwAAA2QAAABhAAABMwAAADMAAABkAAAAZAAAAGQAAABkAAAAFgAAARYAAAIWAAACFgAAAGQAAABHAAABRwAAAkcAAAFkAAAAFgAAARYAAAMWAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAARwAAAkcAAABHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAUcAAANHAAABRwAAAkcAAAJHAAAARwAAAEcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAABYAAAJHAAABRwAAAEcAAAFHAAABRwAAAkcAAABHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADRwAAA0cAAABHAAACRwAAAEcAAABHAAACRwAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAYQAAABYAAAEWAAADFgAAAxYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAAAYQAAAmEAAABhAAACYQAAAGEAAAEWAAACZAAAABYAAAMWAAAAFgAAARYAAAAWAAACFgAAAGQAAABHAAABRwAAA2QAAAAWAAADFgAAAxYAAAEWAAABFgAAAmQAAAAWAAACFgAAABYAAAIWAAABFgAAAhYAAANkAAAARwAAAUcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAARYAAAIWAAABFgAAAhYAAAIWAAAAZAAAAEcAAANHAAABZAAAABYAAAEWAAABFgAAARYAAAMWAAACZAAAAGQAAABkAAAAFgAAAhYAAAFkAAAAZAAAAGQAAABHAAACRwAAAmQAAABhAAAAYQAAAmEAAANhAAAAYQAAAxYAAAEWAAACFgAAAhYAAAMWAAABFgAAAhYAAAMWAAADRwAAAEcAAAJhAAACYQAAAWEAAAJhAAAAYQAAAWEAAAMWAAACFgAAAxYAAAIWAAABFgAAAxYAAAEWAAAAFgAAA0cAAANHAAACJgAAAiYAAAMmAAABJgAAASYAAABhAAACZAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAGQAAABHAAACRwAAAA== 0,-1: ind: 0,-1 - tiles: GgAAAWgAAABoAAAAGgAAABoAAAMaAAABGgAAARoAAAMaAAAAGgAAA2gAAAAaAAAAGgAAABoAAAJXAAAAGgAAAhoAAAFoAAAAaAAAAGgAAABXAAAAVwAAAGgAAAAaAAADVwAAAGgAAABoAAAAGgAAAxoAAAEaAAAAaAAAABoAAAIaAAABGgAAAWgAAAAaAAACGgAAAxoAAAEaAAAAGgAAAhoAAAIaAAABaAAAAGgAAAAaAAACaAAAAGgAAABLAAADSwAAABoAAAFoAAAAGgAAAksAAANLAAAASwAAAksAAANLAAABGgAAAWgAAABLAAABSwAAA0sAAAFoAAAASwAAAUsAAAMaAAADaAAAABoAAABLAAACSwAAAksAAABLAAAASwAAAhoAAAFoAAAASwAAAksAAABLAAACaAAAAEsAAAJLAAAAGgAAAmgAAAAaAAABSwAAA0sAAANLAAACSwAAAksAAAEaAAACaAAAAEsAAANLAAABSwAAA2gAAABLAAABGgAAAhoAAANoAAAAGgAAAhoAAAAaAAACGgAAAxoAAAIaAAADGgAAA2gAAABLAAACSwAAAUsAAAFoAAAAGgAAAhoAAAFoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAABoAAAMaAAABaAAAABoAAAMaAAADGgAAAy8AAAAvAAACGgAAAhoAAAAvAAACGgAAAhoAAAMvAAAALwAAAWgAAAAaAAADaAAAAGgAAABoAAAASwAAAksAAABLAAAASwAAAksAAABLAAADVwAAAEsAAANLAAABSwAAAEsAAABLAAABSwAAA0sAAANLAAAASwAAAksAAAFLAAACSwAAA0sAAANLAAADSwAAAlcAAABLAAADSwAAAEsAAAJLAAAASwAAAEsAAAJLAAABSwAAA0sAAAFLAAACSwAAA0sAAANLAAADSwAAAEsAAAJXAAAASwAAA0sAAABLAAAASwAAAUsAAAFLAAADSwAAAksAAABLAAADSwAAA0sAAANLAAADSwAAAksAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAANlAAAAaAAAAEsAAAJLAAABSwAAAhoAAAJoAAAASwAAA0sAAABLAAACSwAAA2gAAAAaAAACGgAAAmgAAAA3AAAAZQAAAmUAAABLAAABSwAAAUsAAAEaAAADSwAAAEsAAAJLAAAASwAAAUsAAANoAAAAGgAAARoAAAJoAAAANwAAAGUAAAFlAAABSwAAAksAAANLAAADGgAAAEsAAANLAAAASwAAAUsAAAFLAAABGgAAABoAAAMaAAABWAAAAA== + tiles: FgAAAWQAAABkAAAAFgAAABYAAAMWAAABFgAAARYAAAMWAAAAFgAAA2QAAAAWAAAAFgAAABYAAAJTAAAAFgAAAhYAAAFkAAAAZAAAAGQAAABTAAAAUwAAAGQAAAAWAAADUwAAAGQAAABkAAAAFgAAAxYAAAEWAAAAZAAAABYAAAIWAAABFgAAAWQAAAAWAAACFgAAAxYAAAEWAAAAFgAAAhYAAAIWAAABZAAAAGQAAAAWAAACZAAAAGQAAABHAAADRwAAABYAAAFkAAAAFgAAAkcAAANHAAAARwAAAkcAAANHAAABFgAAAWQAAABHAAABRwAAA0cAAAFkAAAARwAAAUcAAAMWAAADZAAAABYAAABHAAACRwAAAkcAAABHAAAARwAAAhYAAAFkAAAARwAAAkcAAABHAAACZAAAAEcAAAJHAAAAFgAAAmQAAAAWAAABRwAAA0cAAANHAAACRwAAAkcAAAEWAAACZAAAAEcAAANHAAABRwAAA2QAAABHAAABFgAAAhYAAANkAAAAFgAAAhYAAAAWAAACFgAAAxYAAAIWAAADFgAAA2QAAABHAAACRwAAAUcAAAFkAAAAFgAAAhYAAAFkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAABYAAAMWAAABZAAAABYAAAMWAAADFgAAAysAAAArAAACFgAAAhYAAAArAAACFgAAAhYAAAMrAAAAKwAAAWQAAAAWAAADZAAAAGQAAABkAAAARwAAAkcAAABHAAAARwAAAkcAAABHAAADUwAAAEcAAANHAAABRwAAAEcAAABHAAABRwAAA0cAAANHAAAARwAAAkcAAAFHAAACRwAAA0cAAANHAAADRwAAAlMAAABHAAADRwAAAEcAAAJHAAAARwAAAEcAAAJHAAABRwAAA0cAAAFHAAACRwAAA0cAAANHAAADRwAAAEcAAAJTAAAARwAAA0cAAABHAAAARwAAAUcAAAFHAAADRwAAAkcAAABHAAADRwAAA0cAAANHAAADRwAAAkcAAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAANhAAAAZAAAAEcAAAJHAAABRwAAAhYAAAJkAAAARwAAA0cAAABHAAACRwAAA2QAAAAWAAACFgAAAmQAAAAzAAAAYQAAAmEAAABHAAABRwAAAUcAAAEWAAADRwAAAEcAAAJHAAAARwAAAUcAAANkAAAAFgAAARYAAAJkAAAAMwAAAGEAAAFhAAABRwAAAkcAAANHAAADFgAAAEcAAANHAAAARwAAAUcAAAFHAAABFgAAABYAAAMWAAABVAAAAA== -1,1: ind: -1,1 - tiles: KgAAAyoAAAMqAAAAKgAAAioAAABlAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAioAAAEqAAAAKgAAACoAAAEqAAADZQAAAmgAAAAPAAADDwAAAA8AAAMPAAADDwAAAmgAAAAsAAAASwAAAksAAAMqAAADKgAAACoAAAEqAAABKgAAAGUAAAFoAAAADwAAAw8AAAIPAAADDwAAAQ8AAAFoAAAAGgAAAksAAAFLAAAAKgAAAioAAAMqAAAAKgAAACoAAANlAAACaAAAAA8AAAIPAAADDwAAAQ8AAAMPAAAAaAAAABoAAAFLAAAASwAAAyoAAAAqAAACKgAAACoAAAAqAAAAZQAAAGgAAAAPAAADDwAAAg8AAAIPAAAADwAAAmgAAAAaAAACSwAAAEsAAAMqAAADKgAAACoAAAEqAAADKgAAAmUAAAJoAAAADwAAAw8AAAIPAAAADwAAAw8AAAJoAAAAGgAAAUsAAAFLAAAAZQAAAWUAAAFlAAACZQAAA2UAAAFlAAACaAAAAA8AAAEPAAABDwAAAw8AAAAPAAABaAAAABoAAABLAAABSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAPAAACDwAAAA8AAAAPAAADDwAAAGgAAABoAAAASwAAA0sAAAIaAAAAGgAAAxoAAAJoAAAADwAAAA8AAAEPAAABDwAAAQ8AAAAPAAADDwAAAA8AAAAaAAAAaAAAAEsAAANLAAACGgAAAhoAAAAaAAABGgAAAA8AAAIPAAADDwAAAg8AAANoAAAAGgAAAmgAAABoAAAAaAAAAGgAAABXAAAAVwAAABoAAAEaAAACGgAAA2gAAAAPAAABDwAAAw8AAAEPAAABaAAAACkAAAApAAAAKQAAACkAAABoAAAASwAAA0sAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAWgAAAApAAAAKQAAACkAAAApAAAAaAAAAEsAAAFLAAADZQAAAGUAAAFlAAAAZQAAAWgAAAAaAAACGgAAAhoAAAAaAAAAKQAAACkAAAApAAAAKQAAAGgAAABLAAACSwAAAjcAAAA3AAAANwAAAGUAAAEaAAABGgAAAxoAAAMaAAACaAAAACkAAAApAAAAKQAAACkAAABoAAAASwAAAUsAAANlAAAAZQAAAmUAAANlAAABaAAAABoAAAMaAAACGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAABGgAAAGgAAABoAAAAaAAAAGgAAAAaAAADGgAAAxoAAAIaAAAAGgAAAxoAAAEaAAACGgAAAWgAAABLAAACSwAAAw== + tiles: JgAAAyYAAAMmAAAAJgAAAiYAAABhAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAiYAAAEmAAAAJgAAACYAAAEmAAADYQAAAmQAAAALAAADCwAAAAsAAAMLAAADCwAAAmQAAAAoAAAARwAAAkcAAAMmAAADJgAAACYAAAEmAAABJgAAAGEAAAFkAAAACwAAAwsAAAILAAADCwAAAQsAAAFkAAAAFgAAAkcAAAFHAAAAJgAAAiYAAAMmAAAAJgAAACYAAANhAAACZAAAAAsAAAILAAADCwAAAQsAAAMLAAAAZAAAABYAAAFHAAAARwAAAyYAAAAmAAACJgAAACYAAAAmAAAAYQAAAGQAAAALAAADCwAAAgsAAAILAAAACwAAAmQAAAAWAAACRwAAAEcAAAMmAAADJgAAACYAAAEmAAADJgAAAmEAAAJkAAAACwAAAwsAAAILAAAACwAAAwsAAAJkAAAAFgAAAUcAAAFHAAAAYQAAAWEAAAFhAAACYQAAA2EAAAFhAAACZAAAAAsAAAELAAABCwAAAwsAAAALAAABZAAAABYAAABHAAABRwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAALAAACCwAAAAsAAAALAAADCwAAAGQAAABkAAAARwAAA0cAAAIWAAAAFgAAAxYAAAJkAAAACwAAAAsAAAELAAABCwAAAQsAAAALAAADCwAAAAsAAAAWAAAAZAAAAEcAAANHAAACFgAAAhYAAAAWAAABFgAAAAsAAAILAAADCwAAAgsAAANkAAAAFgAAAmQAAABkAAAAZAAAAGQAAABTAAAAUwAAABYAAAEWAAACFgAAA2QAAAALAAABCwAAAwsAAAELAAABZAAAACUAAAAlAAAAJQAAACUAAABkAAAARwAAA0cAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAWQAAAAlAAAAJQAAACUAAAAlAAAAZAAAAEcAAAFHAAADYQAAAGEAAAFhAAAAYQAAAWQAAAAWAAACFgAAAhYAAAAWAAAAJQAAACUAAAAlAAAAJQAAAGQAAABHAAACRwAAAjMAAAAzAAAAMwAAAGEAAAEWAAABFgAAAxYAAAMWAAACZAAAACUAAAAlAAAAJQAAACUAAABkAAAARwAAAUcAAANhAAAAYQAAAmEAAANhAAABZAAAABYAAAMWAAACFgAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAABFgAAAGQAAABkAAAAZAAAAGQAAAAWAAADFgAAAxYAAAIWAAAAFgAAAxYAAAEWAAACFgAAAWQAAABHAAACRwAAAw== 0,1: ind: 0,1 - tiles: SwAAAxoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAIaAAAAGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADGgAAARoAAAJoAAAAVwAAAGgAAABXAAAAaAAAAGUAAAJlAAACZQAAAWgAAABoAAAAaAAAAGgAAABoAAAASwAAABoAAAIaAAACaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAZQAAA2UAAAFoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAANlAAABaAAAAGgAAABoAAAAaAAAAGgAAABLAAADaAAAAEsAAABLAAACSwAAAksAAAFLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADSwAAAVcAAABLAAABSwAAA0sAAAFLAAABSwAAA1gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAksAAAJXAAAASwAAAksAAABLAAADSwAAAUsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAFLAAACaAAAAEsAAAJLAAABSwAAAksAAANLAAABaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAVwAAAGgAAABLAAADSwAAA0sAAABLAAABSwAAAhoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANoAAAASwAAAksAAAFLAAAASwAAA0sAAAEaAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAAaAAAAEsAAABLAAABSwAAAksAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAaAAAAGgAAABoAAAASwAAAlcAAABLAAAASwAAAUsAAAJLAAADSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANXAAAASwAAAksAAABLAAADSwAAA0sAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABaAAAAEsAAANLAAACSwAAAxoAAAJLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAGgAAARoAAAMaAAAAaAAAAA== + tiles: RwAAAxYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAIWAAAAFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADFgAAARYAAAJkAAAAUwAAAGQAAABTAAAAZAAAAGEAAAJhAAACYQAAAWQAAABkAAAAZAAAAGQAAABkAAAARwAAABYAAAIWAAACZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAYQAAA2EAAAFkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAANhAAABZAAAAGQAAABkAAAAZAAAAGQAAABHAAADZAAAAEcAAABHAAACRwAAAkcAAAFHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADRwAAAVMAAABHAAABRwAAA0cAAAFHAAABRwAAA1QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAkcAAAJTAAAARwAAAkcAAABHAAADRwAAAUcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAFHAAACZAAAAEcAAAJHAAABRwAAAkcAAANHAAABZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAUwAAAGQAAABHAAADRwAAA0cAAABHAAABRwAAAhYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANkAAAARwAAAkcAAAFHAAAARwAAA0cAAAEWAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAAZAAAAEcAAABHAAABRwAAAkcAAABHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAAZAAAAGQAAABkAAAARwAAAlMAAABHAAAARwAAAUcAAAJHAAADRwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANTAAAARwAAAkcAAABHAAADRwAAA0cAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABZAAAAEcAAANHAAACRwAAAxYAAAJHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAFgAAARYAAAMWAAAAZAAAAA== -2,1: ind: -2,1 - tiles: aAAAAGgAAABoAAAAZQAAAWUAAANoAAAAaAAAAFAAAABoAAAAGgAAARoAAAFlAAADKgAAACoAAAMqAAADKgAAA2gAAABlAAAAaAAAAGUAAANlAAABaAAAAGgAAABLAAAAaAAAABoAAAAaAAADZQAAAyoAAAEqAAADKgAAACoAAANlAAAAaAAAAGgAAABoAAAAZQAAAWgAAABoAAAASwAAAmgAAABoAAAAaAAAAGUAAAMqAAACKgAAAioAAAMqAAABZQAAAWgAAABoAAAAaAAAAGgAAABlAAAAaAAAAEsAAANLAAAAaAAAABoAAANlAAABKgAAAyoAAAEqAAACKgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAaAAAAFgAAABlAAAAZQAAAioAAAMqAAADKgAAASoAAABoAAAAVwAAAGgAAABoAAAAVwAAAFcAAABoAAAASwAAAlAAAABoAAAAZQAAAmUAAAEqAAADKgAAAyoAAAMqAAACaAAAAFcAAABoAAAAaAAAAGgAAABXAAAAaAAAAEsAAABLAAAAaAAAAGUAAANlAAADZQAAAGUAAAFlAAAAZQAAAmgAAABXAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAAAaAAACGgAAAhoAAAMaAAACWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAxoAAAMaAAABGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAMaAAADGgAAAhoAAANoAAAAaAAAAGgAAAA1AAAANQAAADUAAAA1AAAANQAAADUAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAACaAAAAGgAAABoAAAANQAAADUAAAA1AAAANQAAADUAAAA1AAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACZQAAA2gAAABYAAAAaAAAABoAAAFoAAAAaAAAAGgAAAAaAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAzcAAABLAAADSwAAAEsAAANLAAADSwAAAEsAAAEaAAABDwAAAQ8AAAIPAAACaAAAAGgAAABoAAAAWAAAABoAAABlAAACSwAAAEsAAANLAAACSwAAAUsAAANLAAACGgAAAQ8AAAEPAAAADwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: ZAAAAGQAAABkAAAAYQAAAWEAAANkAAAAZAAAAEwAAABkAAAAFgAAARYAAAFhAAADJgAAACYAAAMmAAADJgAAA2QAAABhAAAAZAAAAGEAAANhAAABZAAAAGQAAABHAAAAZAAAABYAAAAWAAADYQAAAyYAAAEmAAADJgAAACYAAANhAAAAZAAAAGQAAABkAAAAYQAAAWQAAABkAAAARwAAAmQAAABkAAAAZAAAAGEAAAMmAAACJgAAAiYAAAMmAAABYQAAAWQAAABkAAAAZAAAAGQAAABhAAAAZAAAAEcAAANHAAAAZAAAABYAAANhAAABJgAAAyYAAAEmAAACJgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAAZAAAAFQAAABhAAAAYQAAAiYAAAMmAAADJgAAASYAAABkAAAAUwAAAGQAAABkAAAAUwAAAFMAAABkAAAARwAAAkwAAABkAAAAYQAAAmEAAAEmAAADJgAAAyYAAAMmAAACZAAAAFMAAABkAAAAZAAAAGQAAABTAAAAZAAAAEcAAABHAAAAZAAAAGEAAANhAAADYQAAAGEAAAFhAAAAYQAAAmQAAABTAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAAAWAAACFgAAAhYAAAMWAAACVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAxYAAAMWAAABFgAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAMWAAADFgAAAhYAAANkAAAAZAAAAGQAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAACZAAAAGQAAABkAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACYQAAA2QAAABUAAAAZAAAABYAAAFkAAAAZAAAAGQAAAAWAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAzMAAABHAAADRwAAAEcAAANHAAADRwAAAEcAAAEWAAABCwAAAQsAAAILAAACZAAAAGQAAABkAAAAVAAAABYAAABhAAACRwAAAEcAAANHAAACRwAAAUcAAANHAAACFgAAAQsAAAELAAAACwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== -2,0: ind: -2,0 - tiles: PgAAAz4AAAA+AAACPgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAADcAAAA3AAAANwAAAD4AAAFLAAADSwAAAT4AAANkAAADaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAVwAAAGgAAABoAAAAWAAAAGgAAAA+AAABSwAAAEsAAAM+AAACZAAAA2gAAABoAAAAaAAAAGgAAABXAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAPgAAAksAAAFLAAADPgAAAWQAAAFoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAD4AAAEaAAADGgAAAj4AAAJkAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAARoAAAM+AAACZAAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAPgAAAz4AAAM+AAAAPgAAAmgAAABoAAAAaAAAAFsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAGQAAAJkAAACZAAAA2QAAANoAAAAaAAAAFsAAAJJAAAAWwAAA2gAAABoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAZAAAA2gAAABoAAAAaAAAAGgAAABJAAAAKwAAAEkAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZAAAAWgAAABoAAAAaAAAAGgAAABoAAAASQAAACsAAABJAAAAaAAAAGgAAABoAAAAZQAAAGUAAAJlAAAAZQAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAANJAAAAWwAAAWgAAABoAAAAaAAAAGUAAAIqAAAAKgAAAWUAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAADKgAAAioAAABlAAABUAAAAEsAAAJLAAADaAAAAGgAAABoAAAAUAAAAEsAAAJoAAAASwAAAmgAAABoAAAAZQAAACoAAAIqAAADZQAAA2gAAABLAAADUAAAAEsAAANLAAAASwAAA0sAAAJLAAADaAAAAGgAAABoAAAAaAAAAGUAAAJlAAADZQAAAWUAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAAAaAAADGgAAA2UAAANlAAAAZQAAAWUAAAJlAAADaAAAAGUAAAJoAAAAaAAAAGgAAABlAAABaAAAAGgAAABoAAAAGgAAAxoAAAJlAAADKgAAAyoAAAEqAAABKgAAAg== + tiles: OgAAAzoAAAA6AAACOgAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAADMAAAAzAAAAMwAAADoAAAFHAAADRwAAAToAAANgAAADZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAUwAAAGQAAABkAAAAVAAAAGQAAAA6AAABRwAAAEcAAAM6AAACYAAAA2QAAABkAAAAZAAAAGQAAABTAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAOgAAAkcAAAFHAAADOgAAAWAAAAFkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAADoAAAEWAAADFgAAAjoAAAJgAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAARYAAAM6AAACYAAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAOgAAAzoAAAM6AAAAOgAAAmQAAABkAAAAZAAAAFcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAGAAAAJgAAACYAAAA2AAAANkAAAAZAAAAFcAAAJFAAAAVwAAA2QAAABkAAAAUwAAAFMAAABTAAAAUwAAAGQAAABkAAAAYAAAA2QAAABkAAAAZAAAAGQAAABFAAAAJwAAAEUAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYAAAAWQAAABkAAAAZAAAAGQAAABkAAAARQAAACcAAABFAAAAZAAAAGQAAABkAAAAYQAAAGEAAAJhAAAAYQAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAANFAAAAVwAAAWQAAABkAAAAZAAAAGEAAAImAAAAJgAAAWEAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAADJgAAAiYAAABhAAABTAAAAEcAAAJHAAADZAAAAGQAAABkAAAATAAAAEcAAAJkAAAARwAAAmQAAABkAAAAYQAAACYAAAImAAADYQAAA2QAAABHAAADTAAAAEcAAANHAAAARwAAA0cAAAJHAAADZAAAAGQAAABkAAAAZAAAAGEAAAJhAAADYQAAAWEAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAGQAAAAWAAADFgAAA2EAAANhAAAAYQAAAWEAAAJhAAADZAAAAGEAAAJkAAAAZAAAAGQAAABhAAABZAAAAGQAAABkAAAAFgAAAxYAAAJhAAADJgAAAyYAAAEmAAABJgAAAg== -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABoAAAASwAAAUsAAAJLAAACGgAAAWgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAaAAAAEsAAAFLAAAASwAAAhoAAAFoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAGgAAABLAAADSwAAAksAAAFoAAAAaAAAAFgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABoAAAASwAAAEsAAABLAAADaAAAAEsAAAJQAAAASwAAAGgAAABoAAAAaAAAAGgAAABAAAAAQAAAAEAAAABAAAAAaAAAAEsAAAFLAAAASwAAAWgAAABLAAABSwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAUsAAAFoAAAAUAAAAEsAAABQAAAAaAAAAGgAAABoAAAAaAAAACwAAAAsAAAALAAAACwAAABoAAAASwAAAEsAAANLAAADaAAAAEsAAAJLAAAAGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAmgAAABoAAAAVwAAAGgAAABoAAAASwAAAUsAAABLAAADSwAAAEsAAANLAAABSwAAA1cAAABLAAABSwAAAEsAAAFXAAAASwAAAEsAAAJLAAACSwAAAksAAABLAAADSwAAAUsAAAFLAAADSwAAA0sAAABXAAAASwAAAUsAAAJLAAADVwAAAEsAAAJLAAAASwAAAksAAAFLAAADSwAAAUsAAAJLAAAASwAAAEsAAAFLAAADVwAAAEsAAANLAAABSwAAAVcAAABLAAACSwAAAUsAAANLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAEsAAAFLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAABoAAAM3AAAANwAAADcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAWAAAAGgAAAAaAAABNwAAADcAAAA3AAAAZAAAAmQAAAFkAAADZAAAAWQAAAJoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAjcAAAA3AAAANwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAGQAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAABkAAAARwAAAUcAAAJHAAACFgAAAWQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAZAAAAEcAAAFHAAAARwAAAhYAAAFkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAGQAAABHAAADRwAAAkcAAAFkAAAAZAAAAFQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAABkAAAARwAAAEcAAABHAAADZAAAAEcAAAJMAAAARwAAAGQAAABkAAAAZAAAAGQAAAA8AAAAPAAAADwAAAA8AAAAZAAAAEcAAAFHAAAARwAAAWQAAABHAAABRwAAAEcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAUcAAAFkAAAATAAAAEcAAABMAAAAZAAAAGQAAABkAAAAZAAAACgAAAAoAAAAKAAAACgAAABkAAAARwAAAEcAAANHAAADZAAAAEcAAAJHAAAAFgAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAAARwAAAmQAAABkAAAAUwAAAGQAAABkAAAARwAAAUcAAABHAAADRwAAAEcAAANHAAABRwAAA1MAAABHAAABRwAAAEcAAAFTAAAARwAAAEcAAAJHAAACRwAAAkcAAABHAAADRwAAAUcAAAFHAAADRwAAA0cAAABTAAAARwAAAUcAAAJHAAADUwAAAEcAAAJHAAAARwAAAkcAAAFHAAADRwAAAUcAAAJHAAAARwAAAEcAAAFHAAADUwAAAEcAAANHAAABRwAAAVMAAABHAAACRwAAAUcAAANHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAEcAAAFHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAABYAAAMzAAAAMwAAADMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAVAAAAGQAAAAWAAABMwAAADMAAAAzAAAAYAAAAmAAAAFgAAADYAAAAWAAAAJkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAjMAAAAzAAAAMwAAAA== -2,2: ind: -2,2 - tiles: GgAAARoAAAAaAAAASwAAA0sAAANLAAADGgAAAQ8AAAMPAAABDwAAAWgAAABoAAAAaAAAAGgAAABYAAAANAAAACwAAAAsAAAAaAAAAEsAAANLAAACSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAADQAAAAaAAABGgAAARoAAAFLAAABSwAAA0sAAANoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAAA0AAAAGgAAARoAAAAaAAABSwAAAksAAANLAAABaAAAAFcAAABoAAAAVwAAAGgAAABoAAAAaAAAAFcAAABoAAAANAAAABoAAAEaAAABGgAAAUsAAANLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAAAsAAAALAAAAGgAAABLAAAASwAAAWgAAABlAAADZQAAAGUAAAJlAAABZQAAAWgAAABoAAAAVwAAAGgAAAA0AAAAGgAAAxoAAAEaAAADSwAAAUsAAABoAAAAZQAAAWUAAAJlAAADZQAAAGUAAAFYAAAAaAAAAGgAAABYAAAANAAAAEsAAABLAAACSwAAAUsAAANLAAACaAAAAGUAAANlAAACGgAAAhoAAAMaAAAAaAAAAGgAAABoAAAAaAAAADQAAABLAAABSwAAAUsAAANLAAACSwAAAWgAAABlAAADZQAAARoAAAAaAAACGgAAAGgAAABoAAAAaAAAAGgAAAA0AAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAAZQAAA2UAAAMaAAACGgAAAxoAAABoAAAAaAAAAGgAAABoAAAANAAAAEsAAAFLAAADaAAAACwAAAAsAAAAaAAAAGUAAAJlAAADGgAAAhoAAAAaAAABaAAAAFgAAABoAAAAaAAAAGgAAABLAAACSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAGgAAAGgAAABoAAAAaAAAAGgAAAAaAAADGgAAARoAAABoAAAASwAAAksAAABXAAAASwAAAksAAABLAAAASwAAAksAAABLAAADSwAAA0sAAAFLAAADSwAAAEsAAABLAAADVwAAAEsAAAJLAAABVwAAAEsAAANLAAABSwAAAEsAAAJLAAADSwAAAksAAABLAAACSwAAA0sAAAFLAAACSwAAAFcAAABLAAAASwAAA1cAAABLAAACSwAAAksAAANLAAADSwAAAksAAAFLAAABSwAAAksAAAFLAAADSwAAAksAAANXAAAASwAAAUsAAABoAAAAaAAAAGUAAAJlAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: FgAAARYAAAAWAAAARwAAA0cAAANHAAADFgAAAQsAAAMLAAABCwAAAWQAAABkAAAAZAAAAGQAAABUAAAAMAAAACgAAAAoAAAAZAAAAEcAAANHAAACRwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAADAAAAAWAAABFgAAARYAAAFHAAABRwAAA0cAAANkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAAAwAAAAFgAAARYAAAAWAAABRwAAAkcAAANHAAABZAAAAFMAAABkAAAAUwAAAGQAAABkAAAAZAAAAFMAAABkAAAAMAAAABYAAAEWAAABFgAAAUcAAANHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAAAoAAAAKAAAAGQAAABHAAAARwAAAWQAAABhAAADYQAAAGEAAAJhAAABYQAAAWQAAABkAAAAUwAAAGQAAAAwAAAAFgAAAxYAAAEWAAADRwAAAUcAAABkAAAAYQAAAWEAAAJhAAADYQAAAGEAAAFUAAAAZAAAAGQAAABUAAAAMAAAAEcAAABHAAACRwAAAUcAAANHAAACZAAAAGEAAANhAAACFgAAAhYAAAMWAAAAZAAAAGQAAABkAAAAZAAAADAAAABHAAABRwAAAUcAAANHAAACRwAAAWQAAABhAAADYQAAARYAAAAWAAACFgAAAGQAAABkAAAAZAAAAGQAAAAwAAAARwAAAWQAAABkAAAAZAAAAGQAAABkAAAAYQAAA2EAAAMWAAACFgAAAxYAAABkAAAAZAAAAGQAAABkAAAAMAAAAEcAAAFHAAADZAAAACgAAAAoAAAAZAAAAGEAAAJhAAADFgAAAhYAAAAWAAABZAAAAFQAAABkAAAAZAAAAGQAAABHAAACRwAAAmQAAABkAAAAZAAAAGQAAABkAAAAFgAAAGQAAABkAAAAZAAAAGQAAAAWAAADFgAAARYAAABkAAAARwAAAkcAAABTAAAARwAAAkcAAABHAAAARwAAAkcAAABHAAADRwAAA0cAAAFHAAADRwAAAEcAAABHAAADUwAAAEcAAAJHAAABUwAAAEcAAANHAAABRwAAAEcAAAJHAAADRwAAAkcAAABHAAACRwAAA0cAAAFHAAACRwAAAFMAAABHAAAARwAAA1MAAABHAAACRwAAAkcAAANHAAADRwAAAkcAAAFHAAABRwAAAkcAAAFHAAADRwAAAkcAAANTAAAARwAAAUcAAABkAAAAZAAAAGEAAAJhAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== -1,2: ind: -1,2 - tiles: NAAAADQAAAA0AAAANAAAAFcAAAAaAAAAGgAAARoAAAEaAAADGgAAARoAAAAaAAAAGgAAABoAAANLAAABSwAAADQAAAA0AAAANAAAADQAAABoAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAI0AAAANAAAAGgAAABoAAAAaAAAAEsAAAFLAAADSwAAA0sAAABLAAADSwAAA0sAAAJLAAAAaAAAAEsAAAFLAAADNAAAADQAAABoAAAASwAAAksAAABLAAACSwAAAEsAAAFLAAADSwAAAksAAAJLAAABSwAAAGgAAABLAAACSwAAA0sAAANoAAAAaAAAABoAAAE0AAAAGgAAAxoAAAI0AAAAGgAAARoAAABLAAABSwAAAUsAAANoAAAASwAAAUsAAAE0AAAANAAAAGgAAAAaAAABNAAAABoAAAIaAAADNAAAAGgAAAAaAAAASwAAA0sAAANLAAABaAAAAEsAAAFLAAAANAAAADQAAABoAAAAGgAAATQAAAAaAAACGgAAAjQAAAAaAAABGgAAAEsAAANLAAACSwAAA2gAAABLAAACSwAAADQAAAA0AAAAGgAAAUsAAAJLAAABSwAAAksAAAFLAAAASwAAAksAAAFLAAADSwAAA0sAAAFoAAAASwAAAUsAAAE0AAAANAAAAGgAAABLAAABSwAAA0sAAABLAAABSwAAA0sAAAFLAAACSwAAAUsAAANLAAACaAAAAFcAAABXAAAANAAAADQAAABoAAAAGgAAAjQAAAAaAAACGgAAAjQAAAAaAAACaAAAACwAAAAsAAAALAAAAGgAAABLAAACSwAAATQAAAA0AAAAaAAAABoAAAM0AAAAGgAAARoAAAA0AAAAGgAAA2gAAAAsAAAALAAAACwAAABoAAAASwAAA0sAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAAASwAAA0sAAAJLAAAASwAAAksAAABLAAAASwAAAUsAAAJLAAADVwAAAEsAAAFLAAADSwAAAEsAAAJLAAABSwAAAUsAAABLAAABSwAAAUsAAAFLAAAASwAAA0sAAANLAAABSwAAAFcAAABLAAAASwAAAUsAAAJLAAABSwAAAksAAAFLAAABSwAAAEsAAAFLAAADSwAAAEsAAANLAAABSwAAAksAAAFXAAAASwAAAksAAAFLAAABSwAAAUsAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAACgAAAAoAAABoAAAAaAAAAEsAAABLAAACSwAAAmgAAABoAAAAVwAAAA== + tiles: MAAAADAAAAAwAAAAMAAAAFMAAAAWAAAAFgAAARYAAAEWAAADFgAAARYAAAAWAAAAFgAAABYAAANHAAABRwAAADAAAAAwAAAAMAAAADAAAABkAAAARwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAIwAAAAMAAAAGQAAABkAAAAZAAAAEcAAAFHAAADRwAAA0cAAABHAAADRwAAA0cAAAJHAAAAZAAAAEcAAAFHAAADMAAAADAAAABkAAAARwAAAkcAAABHAAACRwAAAEcAAAFHAAADRwAAAkcAAAJHAAABRwAAAGQAAABHAAACRwAAA0cAAANkAAAAZAAAABYAAAEwAAAAFgAAAxYAAAIwAAAAFgAAARYAAABHAAABRwAAAUcAAANkAAAARwAAAUcAAAEwAAAAMAAAAGQAAAAWAAABMAAAABYAAAIWAAADMAAAAGQAAAAWAAAARwAAA0cAAANHAAABZAAAAEcAAAFHAAAAMAAAADAAAABkAAAAFgAAATAAAAAWAAACFgAAAjAAAAAWAAABFgAAAEcAAANHAAACRwAAA2QAAABHAAACRwAAADAAAAAwAAAAFgAAAUcAAAJHAAABRwAAAkcAAAFHAAAARwAAAkcAAAFHAAADRwAAA0cAAAFkAAAARwAAAUcAAAEwAAAAMAAAAGQAAABHAAABRwAAA0cAAABHAAABRwAAA0cAAAFHAAACRwAAAUcAAANHAAACZAAAAFMAAABTAAAAMAAAADAAAABkAAAAFgAAAjAAAAAWAAACFgAAAjAAAAAWAAACZAAAACgAAAAoAAAAKAAAAGQAAABHAAACRwAAATAAAAAwAAAAZAAAABYAAAMwAAAAFgAAARYAAAAwAAAAFgAAA2QAAAAoAAAAKAAAACgAAABkAAAARwAAA0cAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAAARwAAA0cAAAJHAAAARwAAAkcAAABHAAAARwAAAUcAAAJHAAADUwAAAEcAAAFHAAADRwAAAEcAAAJHAAABRwAAAUcAAABHAAABRwAAAUcAAAFHAAAARwAAA0cAAANHAAABRwAAAFMAAABHAAAARwAAAUcAAAJHAAABRwAAAkcAAAFHAAABRwAAAEcAAAFHAAADRwAAAEcAAANHAAABRwAAAkcAAAFTAAAARwAAAkcAAAFHAAABRwAAAUcAAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAABgAAAAYAAABkAAAAZAAAAEcAAABHAAACRwAAAmQAAABkAAAAUwAAAA== 0,2: ind: 0,2 - tiles: SwAAAFcAAABLAAADSwAAAUsAAAJLAAABSwAAA0sAAAJLAAABSwAAAksAAAJLAAAASwAAA0sAAAJLAAACSwAAAksAAABXAAAASwAAA0sAAAJLAAABSwAAAksAAAFLAAACSwAAAEsAAAFLAAACSwAAA0sAAANLAAADSwAAAksAAABLAAABVwAAAEsAAABLAAACSwAAAksAAABLAAADSwAAA0sAAABLAAABSwAAAUsAAAFLAAAASwAAAEsAAANLAAACSwAAAmgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAACwAAAAsAAAAVwAAAFcAAABXAAAALAAAAEsAAANoAAAAGgAAA1cAAABXAAAAGgAAAhoAAAFXAAAAGgAAAGgAAABbAAAAGgAAAFsAAABbAAABWwAAA1sAAABLAAAAaAAAABoAAABXAAAAVwAAABoAAAAaAAACVwAAABoAAANoAAAAWwAAAFsAAAJbAAADWwAAAVsAAAJbAAABSwAAAmgAAAAaAAADVwAAAFcAAAAaAAADGgAAAVcAAAAaAAABaAAAAFsAAAJbAAABWwAAAVsAAAFbAAAAWwAAA0sAAANoAAAAGgAAA1cAAABXAAAAGgAAARoAAABXAAAAVwAAAGgAAABbAAABWwAAAVsAAANLAAADSwAAAEsAAABXAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAAWwAAAlsAAAJbAAAASwAAAFsAAABbAAAASwAAAGgAAABXAAAAVwAAAFcAAAAaAAACGgAAARoAAAMaAAABaAAAAFsAAANbAAACWwAAAUsAAAJbAAABWwAAA0sAAAFoAAAAaAAAAD4AAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAsAAAAZAAAA2QAAANoAAAAZAAAACwAAABLAAAAaAAAAFsAAANLAAABWwAAAlsAAAJbAAADWwAAAGgAAABbAAAAWwAAAVsAAAJbAAADWwAAAFsAAABbAAAASwAAA2gAAABbAAACSwAAA0sAAABLAAAASwAAAksAAANkAAABWwAAAFsAAANLAAAASwAAA0sAAAFLAAABSwAAAEsAAAJoAAAAWwAAA0sAAAJbAAAAWwAAA1sAAABbAAAAaAAAAFsAAANbAAACWwAAAlsAAANbAAACWwAAA1sAAAFLAAABaAAAAGgAAAA+AAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAksAAAJLAAAASwAAAksAAAFoAAAAWwAAAFsAAAJbAAADWwAAAVsAAABbAAAAGgAAAw== + tiles: RwAAAFMAAABHAAADRwAAAUcAAAJHAAABRwAAA0cAAAJHAAABRwAAAkcAAAJHAAAARwAAA0cAAAJHAAACRwAAAkcAAABTAAAARwAAA0cAAAJHAAABRwAAAkcAAAFHAAACRwAAAEcAAAFHAAACRwAAA0cAAANHAAADRwAAAkcAAABHAAABUwAAAEcAAABHAAACRwAAAkcAAABHAAADRwAAA0cAAABHAAABRwAAAUcAAAFHAAAARwAAAEcAAANHAAACRwAAAmQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAACgAAAAoAAAAUwAAAFMAAABTAAAAKAAAAEcAAANkAAAAFgAAA1MAAABTAAAAFgAAAhYAAAFTAAAAFgAAAGQAAABXAAAAFgAAAFcAAABXAAABVwAAA1cAAABHAAAAZAAAABYAAABTAAAAUwAAABYAAAAWAAACUwAAABYAAANkAAAAVwAAAFcAAAJXAAADVwAAAVcAAAJXAAABRwAAAmQAAAAWAAADUwAAAFMAAAAWAAADFgAAAVMAAAAWAAABZAAAAFcAAAJXAAABVwAAAVcAAAFXAAAAVwAAA0cAAANkAAAAFgAAA1MAAABTAAAAFgAAARYAAABTAAAAUwAAAGQAAABXAAABVwAAAVcAAANHAAADRwAAAEcAAABTAAAAZAAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABkAAAAVwAAAlcAAAJXAAAARwAAAFcAAABXAAAARwAAAGQAAABTAAAAUwAAAFMAAAAWAAACFgAAARYAAAMWAAABZAAAAFcAAANXAAACVwAAAUcAAAJXAAABVwAAA0cAAAFkAAAAZAAAADoAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAoAAAAYAAAA2AAAANkAAAAYAAAACgAAABHAAAAZAAAAFcAAANHAAABVwAAAlcAAAJXAAADVwAAAGQAAABXAAAAVwAAAVcAAAJXAAADVwAAAFcAAABXAAAARwAAA2QAAABXAAACRwAAA0cAAABHAAAARwAAAkcAAANgAAABVwAAAFcAAANHAAAARwAAA0cAAAFHAAABRwAAAEcAAAJkAAAAVwAAA0cAAAJXAAAAVwAAA1cAAABXAAAAZAAAAFcAAANXAAACVwAAAlcAAANXAAACVwAAA1cAAAFHAAABZAAAAGQAAAA6AAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAAkcAAAJHAAAARwAAAkcAAAFkAAAAVwAAAFcAAAJXAAADVwAAAVcAAABXAAAAFgAAAw== -2,3: ind: -2,3 - tiles: SwAAAUsAAANoAAAAZQAAAGUAAAJlAAABNwAAADcAAABoAAAAGgAAAGUAAABlAAABGgAAAxoAAANlAAABZQAAAUsAAANLAAADaAAAAGUAAAJlAAADZQAAAjcAAAA3AAAAaAAAAGUAAAJlAAABZQAAAGUAAABlAAAAZQAAAWUAAANLAAABaAAAAGgAAABlAAAAZQAAAmUAAAA3AAAANwAAAGgAAABlAAACZQAAAWUAAABlAAACZQAAAGUAAAJlAAADSwAAABoAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAGUAAANlAAABZQAAAWUAAAJlAAACZQAAA0sAAANLAAACaAAAAGUAAABlAAACZQAAAGUAAAFlAAABaAAAAGUAAANlAAAAZQAAA2UAAAJlAAAAZQAAAWUAAAJLAAACSwAAA2gAAABlAAACNwAAADcAAAA3AAAAZQAAAGgAAABlAAABZQAAA2UAAAFlAAADZQAAAWUAAANlAAADSwAAA0sAAAJoAAAAZQAAATcAAAA3AAAANwAAAGUAAABXAAAAGgAAAxoAAAAaAAABGgAAAxoAAAIaAAACGgAAA0sAAANLAAACaAAAAGUAAAI3AAAANwAAADcAAABlAAABVwAAABoAAAMaAAACGgAAAhoAAAIaAAADGgAAARoAAABLAAADSwAAAmgAAABlAAADNwAAADcAAAA3AAAAZQAAAmgAAAAaAAAAGgAAAhoAAAIaAAAAaAAAABoAAAIaAAADSwAAAksAAAFoAAAAZQAAATcAAAA3AAAANwAAAGUAAANoAAAAGgAAABoAAAMaAAABGgAAA2gAAABoAAAAaAAAAEsAAAFLAAADaAAAABoAAAFlAAABZQAAAmUAAANlAAADaAAAABoAAAMaAAADGgAAABoAAANoAAAAGgAAAhoAAAFoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAaAAAAGgAAABoAAAAaAAAABoAAAMaAAADVwAAAGgAAABXAAAAaAAAAGgAAABoAAAAZQAAA2UAAANlAAABZQAAA2UAAAFoAAAAZQAAAmUAAAMaAAACGgAAA1cAAABoAAAAVwAAAGgAAABoAAAAaAAAAGUAAAFlAAABZQAAAWUAAAJlAAABaAAAAGgAAABoAAAAGgAAABoAAABXAAAAaAAAAFcAAABoAAAAaAAAAGgAAABlAAABGgAAAxoAAAEaAAABZQAAAGgAAABlAAAAZQAAAxoAAAEaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABGgAAAQ== + tiles: RwAAAUcAAANkAAAAYQAAAGEAAAJhAAABMwAAADMAAABkAAAAFgAAAGEAAABhAAABFgAAAxYAAANhAAABYQAAAUcAAANHAAADZAAAAGEAAAJhAAADYQAAAjMAAAAzAAAAZAAAAGEAAAJhAAABYQAAAGEAAABhAAAAYQAAAWEAAANHAAABZAAAAGQAAABhAAAAYQAAAmEAAAAzAAAAMwAAAGQAAABhAAACYQAAAWEAAABhAAACYQAAAGEAAAJhAAADRwAAABYAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAAGEAAANhAAABYQAAAWEAAAJhAAACYQAAA0cAAANHAAACZAAAAGEAAABhAAACYQAAAGEAAAFhAAABZAAAAGEAAANhAAAAYQAAA2EAAAJhAAAAYQAAAWEAAAJHAAACRwAAA2QAAABhAAACMwAAADMAAAAzAAAAYQAAAGQAAABhAAABYQAAA2EAAAFhAAADYQAAAWEAAANhAAADRwAAA0cAAAJkAAAAYQAAATMAAAAzAAAAMwAAAGEAAABTAAAAFgAAAxYAAAAWAAABFgAAAxYAAAIWAAACFgAAA0cAAANHAAACZAAAAGEAAAIzAAAAMwAAADMAAABhAAABUwAAABYAAAMWAAACFgAAAhYAAAIWAAADFgAAARYAAABHAAADRwAAAmQAAABhAAADMwAAADMAAAAzAAAAYQAAAmQAAAAWAAAAFgAAAhYAAAIWAAAAZAAAABYAAAIWAAADRwAAAkcAAAFkAAAAYQAAATMAAAAzAAAAMwAAAGEAAANkAAAAFgAAABYAAAMWAAABFgAAA2QAAABkAAAAZAAAAEcAAAFHAAADZAAAABYAAAFhAAABYQAAAmEAAANhAAADZAAAABYAAAMWAAADFgAAABYAAANkAAAAFgAAAhYAAAFkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAAAWAAAAZAAAAGQAAABkAAAAZAAAABYAAAMWAAADUwAAAGQAAABTAAAAZAAAAGQAAABkAAAAYQAAA2EAAANhAAABYQAAA2EAAAFkAAAAYQAAAmEAAAMWAAACFgAAA1MAAABkAAAAUwAAAGQAAABkAAAAZAAAAGEAAAFhAAABYQAAAWEAAAJhAAABZAAAAGQAAABkAAAAFgAAABYAAABTAAAAZAAAAFMAAABkAAAAZAAAAGQAAABhAAABFgAAAxYAAAEWAAABYQAAAGQAAABhAAAAYQAAAxYAAAEWAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAABFgAAAQ== -1,3: ind: -1,3 - tiles: GgAAA2gAAAA3AAAANwAAAGgAAABlAAACZQAAAGUAAAJlAAACaAAAAEsAAAFLAAACSwAAAWgAAABbAAACWwAAA2UAAAE3AAAANwAAADcAAABoAAAAZQAAAhoAAAMaAAABZQAAAmgAAABXAAAAVwAAAFcAAABoAAAAWwAAA1sAAAJlAAADaAAAAGgAAABoAAAAaAAAAGUAAAAaAAADGgAAAGUAAABoAAAASwAAAUsAAABLAAAAaAAAAFsAAAJbAAACZQAAAzcAAAA3AAAANwAAAGgAAABlAAADZQAAAGUAAAJlAAAAaAAAAEsAAAJLAAAASwAAAWgAAABoAAAAWAAAAGUAAABoAAAANwAAADcAAABoAAAAZQAAA2UAAABlAAADZQAAAmgAAABLAAACSwAAAksAAAAaAAACaAAAAGgAAABlAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAASwAAAUsAAABLAAADGgAAA2gAAABoAAAAGgAAA1cAAAAaAAACGgAAAxoAAAAaAAADGgAAAhoAAAEaAAABVwAAAEsAAABLAAAASwAAAhoAAABoAAAAaAAAABoAAAFXAAAAGgAAABoAAAEaAAAAGgAAARoAAAAaAAADGgAAA1cAAABLAAAASwAAA0sAAAIaAAADWAAAAGgAAAAaAAABaAAAABoAAAEaAAADGgAAAxoAAAIaAAABGgAAAxoAAAFoAAAASwAAA0sAAAFLAAACaAAAAGgAAABYAAAAaAAAAGgAAABXAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAABSwAAAGgAAABbAAABWwAAAhoAAAAaAAADNwAAADcAAAA3AAAAGgAAARoAAAEaAAADGgAAAmgAAABLAAADSwAAAksAAANoAAAAWwAAAVsAAAAaAAACGgAAAjcAAAA3AAAANwAAABoAAAMaAAABGgAAABoAAAFoAAAASwAAA0sAAAFLAAACaAAAAFsAAABoAAAAGgAAAxoAAAA3AAAANwAAADcAAAAaAAADGgAAAxoAAAEaAAACaAAAAEsAAABLAAACSwAAAWgAAABbAAABWwAAABoAAAEaAAADNwAAAB8AAAM3AAAAGgAAARoAAAMaAAACGgAAAGgAAABLAAABSwAAAksAAANkAAAAWwAAAVsAAAAaAAAAGgAAAzcAAAA3AAAANwAAABoAAAAaAAABGgAAAhoAAABoAAAASwAAAUsAAAJLAAAAZAAAAlsAAANbAAADGgAAABoAAAM3AAAANwAAADcAAAAaAAACGgAAAhoAAAAaAAABaAAAAEsAAABLAAADSwAAA2QAAAFbAAADWwAAAw== + tiles: FgAAA2QAAAAzAAAAMwAAAGQAAABhAAACYQAAAGEAAAJhAAACZAAAAEcAAAFHAAACRwAAAWQAAABXAAACVwAAA2EAAAEzAAAAMwAAADMAAABkAAAAYQAAAhYAAAMWAAABYQAAAmQAAABTAAAAUwAAAFMAAABkAAAAVwAAA1cAAAJhAAADZAAAAGQAAABkAAAAZAAAAGEAAAAWAAADFgAAAGEAAABkAAAARwAAAUcAAABHAAAAZAAAAFcAAAJXAAACYQAAAzMAAAAzAAAAMwAAAGQAAABhAAADYQAAAGEAAAJhAAAAZAAAAEcAAAJHAAAARwAAAWQAAABkAAAAVAAAAGEAAABkAAAAMwAAADMAAABkAAAAYQAAA2EAAABhAAADYQAAAmQAAABHAAACRwAAAkcAAAAWAAACZAAAAGQAAABhAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAARwAAAUcAAABHAAADFgAAA2QAAABkAAAAFgAAA1MAAAAWAAACFgAAAxYAAAAWAAADFgAAAhYAAAEWAAABUwAAAEcAAABHAAAARwAAAhYAAABkAAAAZAAAABYAAAFTAAAAFgAAABYAAAEWAAAAFgAAARYAAAAWAAADFgAAA1MAAABHAAAARwAAA0cAAAIWAAADVAAAAGQAAAAWAAABZAAAABYAAAEWAAADFgAAAxYAAAIWAAABFgAAAxYAAAFkAAAARwAAA0cAAAFHAAACZAAAAGQAAABUAAAAZAAAAGQAAABTAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAABRwAAAGQAAABXAAABVwAAAhYAAAAWAAADMwAAADMAAAAzAAAAFgAAARYAAAEWAAADFgAAAmQAAABHAAADRwAAAkcAAANkAAAAVwAAAVcAAAAWAAACFgAAAjMAAAAzAAAAMwAAABYAAAMWAAABFgAAABYAAAFkAAAARwAAA0cAAAFHAAACZAAAAFcAAABkAAAAFgAAAxYAAAAzAAAAMwAAADMAAAAWAAADFgAAAxYAAAEWAAACZAAAAEcAAABHAAACRwAAAWQAAABXAAABVwAAABYAAAEWAAADMwAAABsAAAMzAAAAFgAAARYAAAMWAAACFgAAAGQAAABHAAABRwAAAkcAAANgAAAAVwAAAVcAAAAWAAAAFgAAAzMAAAAzAAAAMwAAABYAAAAWAAABFgAAAhYAAABkAAAARwAAAUcAAAJHAAAAYAAAAlcAAANXAAADFgAAABYAAAMzAAAAMwAAADMAAAAWAAACFgAAAhYAAAAWAAABZAAAAEcAAABHAAADRwAAA2AAAAFXAAADVwAAAw== 1,-1: ind: 1,-1 - tiles: GgAAABoAAAEaAAAAaAAAABoAAAIaAAADaAAAAEsAAAFLAAACSwAAAFcAAABLAAADSwAAA0sAAAFLAAABSwAAAxoAAAMaAAACGgAAAhoAAAIaAAABGgAAAGgAAABLAAABSwAAA0sAAABoAAAAaAAAAGgAAAAaAAADaAAAABoAAAFLAAAASwAAA0sAAABLAAAASwAAA0sAAANoAAAASwAAAUsAAAJLAAADaAAAABoAAAMaAAACGgAAAWgAAABoAAAASwAAAksAAANLAAABSwAAAUsAAAFLAAABaAAAAEsAAANLAAABSwAAAmgAAAAaAAABGgAAAxoAAANoAAAAaAAAAEsAAANLAAABSwAAAEsAAAJLAAADSwAAA2gAAABLAAACSwAAAUsAAABoAAAAGgAAARoAAAIaAAABaAAAAGgAAABLAAACSwAAAksAAABLAAACSwAAAEsAAANoAAAASwAAAUsAAABLAAAAaAAAABoAAAAaAAABGgAAABoAAAJoAAAAGgAAARoAAAAaAAADGgAAARoAAAEaAAADaAAAAEsAAAFLAAABSwAAAGgAAAAaAAAAGgAAAxoAAAMaAAADaAAAABoAAAMaAAABGgAAABoAAAMaAAABGgAAAxoAAAFLAAAASwAAA0sAAABoAAAAZQAAA2UAAAJlAAAAGgAAAGgAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAGUAAABlAAADZQAAARoAAABoAAAASwAAAksAAAJLAAABSwAAAEsAAAFLAAAASwAAAUsAAABLAAABSwAAAWgAAABlAAACZQAAAmUAAAIaAAABaAAAAEsAAABLAAACSwAAAksAAAFLAAAASwAAA0sAAANLAAADSwAAAUsAAANoAAAAGgAAARoAAAIaAAAAGgAAA2gAAABLAAAASwAAAUsAAAJLAAAASwAAA0sAAANLAAADSwAAA0sAAABLAAABaAAAABoAAAIaAAAAGgAAAhoAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAGgAAA2gAAABoAAAAaAAAABoAAAIaAAACGgAAAxoAAAEaAAADGgAAABoAAAFLAAACSwAAA0sAAAJLAAADSwAAAksAAAJLAAADSwAAAksAAAMaAAACGgAAABoAAAMaAAABGgAAAhoAAAMaAAACSwAAAEsAAABLAAACSwAAAksAAANLAAADSwAAAUsAAABLAAACGgAAARoAAAAvAAACGgAAABoAAAIaAAADGgAAAksAAAFLAAABSwAAAEsAAAJLAAAASwAAAksAAABLAAAASwAAAA== + tiles: FgAAABYAAAEWAAAAZAAAABYAAAIWAAADZAAAAEcAAAFHAAACRwAAAFMAAABHAAADRwAAA0cAAAFHAAABRwAAAxYAAAMWAAACFgAAAhYAAAIWAAABFgAAAGQAAABHAAABRwAAA0cAAABkAAAAZAAAAGQAAAAWAAADZAAAABYAAAFHAAAARwAAA0cAAABHAAAARwAAA0cAAANkAAAARwAAAUcAAAJHAAADZAAAABYAAAMWAAACFgAAAWQAAABkAAAARwAAAkcAAANHAAABRwAAAUcAAAFHAAABZAAAAEcAAANHAAABRwAAAmQAAAAWAAABFgAAAxYAAANkAAAAZAAAAEcAAANHAAABRwAAAEcAAAJHAAADRwAAA2QAAABHAAACRwAAAUcAAABkAAAAFgAAARYAAAIWAAABZAAAAGQAAABHAAACRwAAAkcAAABHAAACRwAAAEcAAANkAAAARwAAAUcAAABHAAAAZAAAABYAAAAWAAABFgAAABYAAAJkAAAAFgAAARYAAAAWAAADFgAAARYAAAEWAAADZAAAAEcAAAFHAAABRwAAAGQAAAAWAAAAFgAAAxYAAAMWAAADZAAAABYAAAMWAAABFgAAABYAAAMWAAABFgAAAxYAAAFHAAAARwAAA0cAAABkAAAAYQAAA2EAAAJhAAAAFgAAAGQAAAAWAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAGEAAABhAAADYQAAARYAAABkAAAARwAAAkcAAAJHAAABRwAAAEcAAAFHAAAARwAAAUcAAABHAAABRwAAAWQAAABhAAACYQAAAmEAAAIWAAABZAAAAEcAAABHAAACRwAAAkcAAAFHAAAARwAAA0cAAANHAAADRwAAAUcAAANkAAAAFgAAARYAAAIWAAAAFgAAA2QAAABHAAAARwAAAUcAAAJHAAAARwAAA0cAAANHAAADRwAAA0cAAABHAAABZAAAABYAAAIWAAAAFgAAAhYAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAGQAAABkAAAAFgAAA2QAAABkAAAAZAAAABYAAAIWAAACFgAAAxYAAAEWAAADFgAAABYAAAFHAAACRwAAA0cAAAJHAAADRwAAAkcAAAJHAAADRwAAAkcAAAMWAAACFgAAABYAAAMWAAABFgAAAhYAAAMWAAACRwAAAEcAAABHAAACRwAAAkcAAANHAAADRwAAAUcAAABHAAACFgAAARYAAAArAAACFgAAABYAAAIWAAADFgAAAkcAAAFHAAABRwAAAEcAAAJHAAAARwAAAkcAAABHAAAARwAAAA== -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZwAAAGcAAABoAAAAWwAAAWgAAABoAAAAWwAAAmgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAaAAAAGgAAABbAAACWwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAWgAAABoAAAAWwAAAmgAAABlAAAAZQAAAWUAAANoAAAAGgAAAGUAAAJLAAADSwAAAksAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAGUAAANlAAACaAAAAGUAAAJlAAAASwAAAEsAAAFLAAACWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAABlAAADZQAAA2UAAANlAAABZQAAAksAAAJLAAADSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAACZQAAAmUAAAJoAAAAZQAAAmUAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAA2UAAAFlAAAAaAAAAGUAAANlAAABaAAAAGgAAABQAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABLAAADaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAGgAAABLAAABSwAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAASwAAAksAAAJLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAIaAAABGgAAAWgAAABoAAAAaAAAAEsAAABoAAAAaAAAACYAAAAmAAAAJgAAAGgAAABoAAAAaAAAAGgAAAAaAAADGgAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAmAAAAJgAAACYAAABoAAAAaAAAAGgAAABoAAAAGgAAAWgAAAAaAAABaAAAAGgAAABXAAAAaAAAAFcAAABoAAAAJgAAACYAAAAmAAAAaAAAAGgAAABoAAAAGgAAABoAAAIaAAABGgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYwAAAGMAAABkAAAAVwAAAWQAAABkAAAAVwAAAmQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAZAAAAGQAAABXAAACVwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAWQAAABkAAAAVwAAAmQAAABhAAAAYQAAAWEAAANkAAAAFgAAAGEAAAJHAAADRwAAAkcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAAGEAAANhAAACZAAAAGEAAAJhAAAARwAAAEcAAAFHAAACVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAABhAAADYQAAA2EAAANhAAABYQAAAkcAAAJHAAADRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAACYQAAAmEAAAJkAAAAYQAAAmEAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAA2EAAAFhAAAAZAAAAGEAAANhAAABZAAAAGQAAABMAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABkAAAAZAAAAGQAAABHAAADZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAZAAAAGQAAABHAAABRwAAAEcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAARwAAAkcAAAJHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAIWAAABFgAAAWQAAABkAAAAZAAAAEcAAABkAAAAZAAAACIAAAAiAAAAIgAAAGQAAABkAAAAZAAAAGQAAAAWAAADFgAAABYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAiAAAAIgAAACIAAABkAAAAZAAAAGQAAABkAAAAFgAAAWQAAAAWAAABZAAAAGQAAABTAAAAZAAAAFMAAABkAAAAIgAAACIAAAAiAAAAZAAAAGQAAABkAAAAFgAAABYAAAIWAAABFgAAAA== 0,-2: ind: 0,-2 - tiles: AAAAAAAAAABnAAAAZwAAAGgAAAAaAAABGgAAAxoAAAIaAAADGgAAARoAAANoAAAAGgAAAhoAAAMaAAABGgAAAQAAAAAAAAAAZwAAAGcAAABoAAAAGgAAAhoAAAMaAAAAGgAAABoAAAIaAAACaAAAABoAAAAaAAABGgAAAhoAAAIAAAAAAAAAAGcAAABnAAAAaAAAABoAAAMaAAABGgAAAxoAAAEaAAAAGgAAAWgAAAAaAAACGgAAARoAAAMaAAADaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAANlAAACZQAAAWUAAABoAAAAGgAAAxoAAAEaAAABGgAAABoAAAEaAAACGgAAABoAAAEaAAABGgAAARoAAABlAAACZQAAAWUAAANlAAACaAAAABoAAAAaAAADGgAAAxoAAAEaAAAAGgAAABoAAAEaAAABGgAAARoAAAAaAAADZQAAAWUAAAMaAAABZQAAAlcAAAAaAAABSwAAAEsAAAFLAAADSwAAAUsAAANLAAACSwAAA0sAAAFLAAABGgAAA2UAAANlAAACZQAAAGUAAANoAAAAGgAAAUsAAANLAAAASwAAAksAAAFLAAABSwAAAksAAANLAAABSwAAAxoAAAJlAAADZQAAAWUAAAFlAAABaAAAABoAAANLAAABSwAAA0sAAAJLAAABSwAAA0sAAANLAAAASwAAAEsAAAIaAAADaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABSwAAAUsAAAFLAAADSwAAAUsAAAFLAAACSwAAAUsAAABLAAABGgAAA0sAAABLAAABSwAAAEsAAABXAAAAGgAAAUsAAAJLAAAASwAAAUsAAANLAAACSwAAAEsAAANLAAADSwAAAhoAAAFLAAAASwAAAEsAAAJLAAADVwAAABoAAAAaAAAAGgAAAxoAAAEaAAAAGgAAAhoAAAEaAAAAGgAAAxoAAAEaAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABXAAAAaAAAAGgAAAAaAAADGgAAARoAAAIaAAAAGgAAARoAAANoAAAAaAAAABoAAAAaAAABGgAAAhoAAAMaAAACGgAAABoAAANoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAGgAAABoAAAIaAAABGgAAAxoAAAIaAAAAaAAAABoAAAAaAAAAGgAAAWgAAAAaAAADGgAAAWgAAABoAAAAGgAAABoAAAAaAAAAGgAAAxoAAAEaAAABGgAAARoAAAAaAAADGgAAABoAAAJoAAAAGgAAAw== + tiles: AAAAAAAAAABjAAAAYwAAAGQAAAAWAAABFgAAAxYAAAIWAAADFgAAARYAAANkAAAAFgAAAhYAAAMWAAABFgAAAQAAAAAAAAAAYwAAAGMAAABkAAAAFgAAAhYAAAMWAAAAFgAAABYAAAIWAAACZAAAABYAAAAWAAABFgAAAhYAAAIAAAAAAAAAAGMAAABjAAAAZAAAABYAAAMWAAABFgAAAxYAAAEWAAAAFgAAAWQAAAAWAAACFgAAARYAAAMWAAADZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAANhAAACYQAAAWEAAABkAAAAFgAAAxYAAAEWAAABFgAAABYAAAEWAAACFgAAABYAAAEWAAABFgAAARYAAABhAAACYQAAAWEAAANhAAACZAAAABYAAAAWAAADFgAAAxYAAAEWAAAAFgAAABYAAAEWAAABFgAAARYAAAAWAAADYQAAAWEAAAMWAAABYQAAAlMAAAAWAAABRwAAAEcAAAFHAAADRwAAAUcAAANHAAACRwAAA0cAAAFHAAABFgAAA2EAAANhAAACYQAAAGEAAANkAAAAFgAAAUcAAANHAAAARwAAAkcAAAFHAAABRwAAAkcAAANHAAABRwAAAxYAAAJhAAADYQAAAWEAAAFhAAABZAAAABYAAANHAAABRwAAA0cAAAJHAAABRwAAA0cAAANHAAAARwAAAEcAAAIWAAADZAAAAGQAAABkAAAAZAAAAGQAAAAWAAABRwAAAUcAAAFHAAADRwAAAUcAAAFHAAACRwAAAUcAAABHAAABFgAAA0cAAABHAAABRwAAAEcAAABTAAAAFgAAAUcAAAJHAAAARwAAAUcAAANHAAACRwAAAEcAAANHAAADRwAAAhYAAAFHAAAARwAAAEcAAAJHAAADUwAAABYAAAAWAAAAFgAAAxYAAAEWAAAAFgAAAhYAAAEWAAAAFgAAAxYAAAEWAAAAFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABTAAAAZAAAAGQAAAAWAAADFgAAARYAAAIWAAAAFgAAARYAAANkAAAAZAAAABYAAAAWAAABFgAAAhYAAAMWAAACFgAAABYAAANkAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAAAFgAAABYAAAIWAAABFgAAAxYAAAIWAAAAZAAAABYAAAAWAAAAFgAAAWQAAAAWAAADFgAAAWQAAABkAAAAFgAAABYAAAAWAAAAFgAAAxYAAAEWAAABFgAAARYAAAAWAAADFgAAABYAAAJkAAAAFgAAAw== 1,-2: ind: 1,-2 - tiles: GgAAARoAAAMaAAADGgAAABoAAAIaAAACaAAAAGUAAABlAAADZQAAAGgAAABoAAAAZQAAAWUAAAJoAAAAVwAAABoAAAAaAAAAGgAAARoAAAEaAAACGgAAA2gAAABlAAADZQAAAmUAAANoAAAAZQAAAWgAAABlAAAAaAAAAFcAAAAaAAACGgAAAxoAAAIaAAADGgAAARoAAAFoAAAAaAAAAGUAAAFoAAAAaAAAAGgAAABlAAAAaAAAAGgAAABXAAAAaAAAAGgAAAAaAAAAGgAAAhoAAANoAAAAaAAAAGUAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAAAaAAACGgAAARoAAAAaAAABGgAAA2gAAABlAAACaAAAAGUAAANoAAAAGgAAAxoAAAIaAAABaAAAAGgAAAAaAAADGgAAAxoAAAEaAAADGgAAAxoAAABoAAAAaAAAAGUAAAJlAAACaAAAABoAAAAaAAABGgAAABoAAAJoAAAAaAAAAGgAAAAaAAAAGgAAAhoAAAAaAAABaAAAAGgAAABoAAAAZQAAAFgAAAAaAAACGgAAABoAAAAaAAACaAAAABoAAABoAAAAGgAAABoAAAAaAAABGgAAAGgAAABoAAAAWAAAAGgAAABoAAAAGgAAABoAAAEaAAACGgAAAGgAAAAaAAADaAAAAGgAAABoAAAAWAAAAGgAAABoAAAASwAAAksAAAFLAAABaAAAAEsAAANXAAAASwAAABoAAABoAAAAGgAAAmgAAABYAAAAWAAAAGgAAABoAAAAGgAAAksAAAJLAAADSwAAA2gAAABLAAAAVwAAAEsAAAAaAAADSwAAAhoAAANYAAAAaAAAAGgAAABoAAAAWAAAAEsAAANLAAADSwAAA0sAAABoAAAASwAAAFcAAABLAAAAGgAAAmgAAAAaAAABaAAAAFgAAABoAAAAWAAAAGgAAABLAAAASwAAAksAAABLAAACVwAAAFcAAABXAAAAVwAAABoAAAFoAAAAGgAAAWgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAJLAAACSwAAAFcAAABXAAAAVwAAAFcAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAEsAAANoAAAAaAAAAFcAAABoAAAAaAAAAGgAAAAaAAAAGgAAARoAAABoAAAANQAAADUAAAA1AAAASwAAA0sAAAFLAAACVwAAAEsAAABLAAADSwAAAksAAANLAAAAGgAAAhoAAAMaAAACaAAAADUAAAA1AAAANQAAAEsAAABLAAACSwAAAVcAAABLAAABSwAAAksAAAJLAAADSwAAAw== + tiles: FgAAARYAAAMWAAADFgAAABYAAAIWAAACZAAAAGEAAABhAAADYQAAAGQAAABkAAAAYQAAAWEAAAJkAAAAUwAAABYAAAAWAAAAFgAAARYAAAEWAAACFgAAA2QAAABhAAADYQAAAmEAAANkAAAAYQAAAWQAAABhAAAAZAAAAFMAAAAWAAACFgAAAxYAAAIWAAADFgAAARYAAAFkAAAAZAAAAGEAAAFkAAAAZAAAAGQAAABhAAAAZAAAAGQAAABTAAAAZAAAAGQAAAAWAAAAFgAAAhYAAANkAAAAZAAAAGEAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAAAWAAACFgAAARYAAAAWAAABFgAAA2QAAABhAAACZAAAAGEAAANkAAAAFgAAAxYAAAIWAAABZAAAAGQAAAAWAAADFgAAAxYAAAEWAAADFgAAAxYAAABkAAAAZAAAAGEAAAJhAAACZAAAABYAAAAWAAABFgAAABYAAAJkAAAAZAAAAGQAAAAWAAAAFgAAAhYAAAAWAAABZAAAAGQAAABkAAAAYQAAAFQAAAAWAAACFgAAABYAAAAWAAACZAAAABYAAABkAAAAFgAAABYAAAAWAAABFgAAAGQAAABkAAAAVAAAAGQAAABkAAAAFgAAABYAAAEWAAACFgAAAGQAAAAWAAADZAAAAGQAAABkAAAAVAAAAGQAAABkAAAARwAAAkcAAAFHAAABZAAAAEcAAANTAAAARwAAABYAAABkAAAAFgAAAmQAAABUAAAAVAAAAGQAAABkAAAAFgAAAkcAAAJHAAADRwAAA2QAAABHAAAAUwAAAEcAAAAWAAADRwAAAhYAAANUAAAAZAAAAGQAAABkAAAAVAAAAEcAAANHAAADRwAAA0cAAABkAAAARwAAAFMAAABHAAAAFgAAAmQAAAAWAAABZAAAAFQAAABkAAAAVAAAAGQAAABHAAAARwAAAkcAAABHAAACUwAAAFMAAABTAAAAUwAAABYAAAFkAAAAFgAAAWQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAAJHAAACRwAAAFMAAABTAAAAUwAAAFMAAAAWAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAAEcAAANkAAAAZAAAAFMAAABkAAAAZAAAAGQAAAAWAAAAFgAAARYAAABkAAAAMQAAADEAAAAxAAAARwAAA0cAAAFHAAACUwAAAEcAAABHAAADRwAAAkcAAANHAAAAFgAAAhYAAAMWAAACZAAAADEAAAAxAAAAMQAAAEcAAABHAAACRwAAAVMAAABHAAABRwAAAkcAAAJHAAADRwAAAw== -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAaAAAAGgAAABnAAAAZwAAAGgAAABoAAAAaAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGgAAABoAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAUsAAABXAAAASwAAAksAAAFLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAUsAAAFLAAABSwAAAUsAAABLAAAAVwAAAEsAAABLAAAASwAAAEsAAANLAAAASwAAA0sAAAJLAAACSwAAAksAAAFLAAADSwAAAUsAAAFLAAAASwAAAFcAAABLAAABSwAAAksAAAFLAAADSwAAAksAAANLAAABSwAAAEsAAAJLAAABSwAAAksAAAJLAAAASwAAA0sAAAFXAAAASwAAAUsAAANLAAADSwAAAUsAAAJLAAABSwAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAADSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAALAAAACwAAAAsAAAALAAAAGgAAABLAAADSwAAAEsAAANoAAAASwAAAksAAANLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAJLAAACaAAAAEsAAABLAAAAaAAAAFAAAABoAAAAaAAAAGgAAABAAAAAQAAAAEAAAABAAAAAaAAAAEsAAABLAAABSwAAAGgAAABLAAACSwAAAEsAAAJoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAGgAAABLAAAASwAAAUsAAABLAAACSwAAA2gAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABoAAAASwAAA0sAAAFLAAABaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAaAAAAEsAAABLAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAGgAAABLAAABSwAAAksAAABYAAAAaAAAAGgAAABXAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAZAAAAGQAAABjAAAAYwAAAGQAAABkAAAAZAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGQAAABkAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAUcAAABTAAAARwAAAkcAAAFHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAUcAAAFHAAABRwAAAUcAAABHAAAAUwAAAEcAAABHAAAARwAAAEcAAANHAAAARwAAA0cAAAJHAAACRwAAAkcAAAFHAAADRwAAAUcAAAFHAAAARwAAAFMAAABHAAABRwAAAkcAAAFHAAADRwAAAkcAAANHAAABRwAAAEcAAAJHAAABRwAAAkcAAAJHAAAARwAAA0cAAAFTAAAARwAAAUcAAANHAAADRwAAAUcAAAJHAAABRwAAAEcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAADRwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAKAAAACgAAAAoAAAAKAAAAGQAAABHAAADRwAAAEcAAANkAAAARwAAAkcAAANHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAAJHAAACZAAAAEcAAABHAAAAZAAAAEwAAABkAAAAZAAAAGQAAAA8AAAAPAAAADwAAAA8AAAAZAAAAEcAAABHAAABRwAAAGQAAABHAAACRwAAAEcAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAGQAAABHAAAARwAAAUcAAABHAAACRwAAA2QAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAABkAAAARwAAA0cAAAFHAAABZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAZAAAAEcAAABHAAAARwAAAmQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAGQAAABHAAABRwAAAkcAAABUAAAAZAAAAGQAAABTAAAAZAAAAA== -3,1: ind: -3,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAABoAAAANgAAAGgAAAA2AAAANgAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAAaAAAAGgAAABoAAAANgAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAACCgAAAGgAAABoAAAANgAAAGgAAAA2AAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAgoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAUKAAAACgAAAAoAAAAKAAAAaAAAACkAAABkAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAEaAAAAGgAAABoAAAAaAAAAGgAAAApAAAAZAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAABmgAAAARAAAAaAAAABEAAABoAAAAKQAAAGQAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAANoAAAAEQAAAGgAAAARAAAAaAAAACkAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAABaAAAACkAAAApAAAAKQAAACkAAAApAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAGgAAAApAAAAKQAAACkAAAApAAAAKQAAACkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAABoAAAAKQAAACkAAAApAAAAKQAAACkAAAApAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAaAAAACkAAAApAAAAaAAAABoAAAJoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACwAAA2gAAABoAAAAaAAAAGgAAABLAAACSwAAAUsAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAQoAAABoAAAAGgAAAksAAANLAAACSwAAA0sAAANLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAAASwAAAksAAANLAAADSwAAAQ== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAABkAAAAMgAAAGQAAAAyAAAAMgAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAAZAAAAGQAAABkAAAAMgAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAACBgAAAGQAAABkAAAAMgAAAGQAAAAyAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAgYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAUGAAAABgAAAAYAAAAGAAAAZAAAACUAAABgAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAEZAAAAGQAAABkAAAAZAAAAGQAAAAlAAAAYAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAABmQAAAANAAAAZAAAAA0AAABkAAAAJQAAAGAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAANkAAAADQAAAGQAAAANAAAAZAAAACUAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAABZAAAACUAAAAlAAAAJQAAACUAAAAlAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAGQAAAAlAAAAJQAAACUAAAAlAAAAJQAAACUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAABkAAAAJQAAACUAAAAlAAAAJQAAACUAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAZAAAACUAAAAlAAAAZAAAABYAAAJkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAA2QAAABkAAAAZAAAAGQAAABHAAACRwAAAUcAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAQYAAABkAAAAFgAAAkcAAANHAAACRwAAA0cAAANHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAAARwAAAkcAAANHAAADRwAAAQ== -3,-1: ind: -3,-1 - tiles: ZwAAAGgAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAGgAAABoAAAAaAAAAGgAAABAAAAAQAAAAEAAAABAAAAAZwAAAGgAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAGgAAABoAAAAaAAAAEsAAAJLAAACSwAAA0sAAAFnAAAAaAAAAGgAAABAAAAAQAAAAEAAAABAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAUsAAAFLAAABZwAAAGgAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABoAAAASwAAAksAAAJLAAACSwAAAUsAAAFLAAABSwAAAGcAAABoAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAaAAAAEsAAABLAAADSwAAAEsAAANLAAADSwAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABLAAABSwAAAksAAANLAAADSwAAAEsAAANLAAACaAAAAFcAAABXAAAAVwAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAVwAAAFcAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: YwAAAGQAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAAGQAAABkAAAAZAAAAGQAAAA8AAAAPAAAADwAAAA8AAAAYwAAAGQAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAAGQAAABkAAAAZAAAAEcAAAJHAAACRwAAA0cAAAFjAAAAZAAAAGQAAAA8AAAAPAAAADwAAAA8AAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAAUcAAAFHAAABYwAAAGQAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAABkAAAARwAAAkcAAAJHAAACRwAAAUcAAAFHAAABRwAAAGMAAABkAAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAZAAAAEcAAABHAAADRwAAAEcAAANHAAADRwAAAEcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABHAAABRwAAAkcAAANHAAADRwAAAEcAAANHAAACZAAAAFMAAABTAAAAUwAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABkAAAAUwAAAFMAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAABoAAAAaAAABGgAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAAAaAAABGgAAABoAAANoAAAAZwAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAGgAAARoAAAIaAAAAaAAAAGcAAABnAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAABoAAAIaAAADGgAAAmgAAABnAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAAAaAAAASwAAAUsAAAFLAAABSwAAAUsAAAJLAAADSwAAAksAAAFLAAACAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAGgAAA0sAAAFLAAACSwAAAksAAAJLAAABSwAAAEsAAAJLAAABSwAAAwAAAAAAAAAAAAAAAAAAAABnAAAAaAAAABoAAAJLAAAASwAAAUsAAAFLAAABSwAAAksAAAJLAAAASwAAAEsAAAIAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAksAAAFLAAADZwAAAGgAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAaAAAAGgAAABoAAAASwAAA0sAAAFLAAACSwAAAmcAAABoAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAGgAAABoAAAAaAAAAGgAAABAAAAAQAAAAEAAAABAAAAAZwAAAGgAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAABYAAAAWAAABFgAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAAAWAAABFgAAABYAAANkAAAAYwAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAFgAAARYAAAIWAAAAZAAAAGMAAABjAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAABYAAAIWAAADFgAAAmQAAABjAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAAAWAAAARwAAAUcAAAFHAAABRwAAAUcAAAJHAAADRwAAAkcAAAFHAAACAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAFgAAA0cAAAFHAAACRwAAAkcAAAJHAAABRwAAAEcAAAJHAAABRwAAAwAAAAAAAAAAAAAAAAAAAABjAAAAZAAAABYAAAJHAAAARwAAAUcAAAFHAAABRwAAAkcAAAJHAAAARwAAAEcAAAIAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAkcAAAFHAAADYwAAAGQAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAZAAAAGQAAABkAAAARwAAA0cAAAFHAAACRwAAAmMAAABkAAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAAGQAAABkAAAAZAAAAGQAAAA8AAAAPAAAADwAAAA8AAAAYwAAAGQAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,0: ind: -3,0 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAAZAAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFQAAAAaAAAAGgAAABLAAADSwAAAWgAAABoAAAAaAAAAGgAAABkAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAaAAAAGgAAABoAAAASwAAAGgAAABoAAAAZAAAAgAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGQAAAEAAAAAAAAAAAoAAAAMAAAGCgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaAAAAGgAAABoAAAAUAAAAGgAAABkAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAGgAAABoAAAAaAAAAEsAAANoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaAAAAGgAAABLAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACwAAAwoAAABoAAAAaAAAAGgAAABoAAAAUAAAAEsAAAFoAAAAZAAAA2cAAABnAAAAZwAAAGcAAABnAAAAaAAAAAoAAAAKAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAABaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAABoAAAASwAAAlAAAABoAAAASwAAAWgAAABoAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAaAAAAFAAAABLAAAASwAAAEsAAANQAAAASwAAAUsAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAADZQAAAw== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABkAAAAYAAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFMAAAAZAAAAGQAAABHAAADRwAAAWQAAABkAAAAZAAAAGQAAABgAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAAZAAAAGQAAABkAAAARwAAAGQAAABkAAAAYAAAAgAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGAAAAEAAAAAAAAAAAYAAAAGAAAGBgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZAAAAGQAAABkAAAATAAAAGQAAABgAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAGQAAABkAAAAZAAAAEcAAANkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAAYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZAAAAGQAAABHAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAwYAAABkAAAAZAAAAGQAAABkAAAATAAAAEcAAAFkAAAAYAAAA2MAAABjAAAAYwAAAGMAAABjAAAAZAAAAAYAAAAGAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAABZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAABkAAAARwAAAkwAAABkAAAARwAAAWQAAABkAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAZAAAAEwAAABHAAAARwAAAEcAAANMAAAARwAAAUcAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAADYQAAAw== -4,0: ind: -4,0 - tiles: ZwAAAAAAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABnAAAAAAAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YwAAAAAAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABjAAAAAAAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAA== -5,0: ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAACoAAANnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAACYAAANjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -5,-1: ind: -5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAA== -3,2: ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFcAAABXAAAAVwAAAEsAAAJLAAADGgAAAhoAAAEaAAADGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAmgAAAAsAAAALAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAVwAAAFcAAABXAAAASwAAAksAAAIaAAABGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAABGgAAAxoAAAEaAAABGgAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGgAAABLAAADSwAAARoAAAAaAAACGgAAAhoAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABoAAAASwAAA0sAAAJoAAAALAAAACwAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAaAAAAEsAAABLAAACGgAAAhoAAAMaAAACGgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAA0sAAABLAAACSwAAAksAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAVwAAAFcAAABXAAAASwAAA0sAAABLAAABSwAAAUsAAAFLAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADaAAAAGgAAABoAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABXAAAAVwAAAFcAAABLAAACSwAAA0sAAABoAAAASwAAAksAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAJLAAABaAAAAEsAAAJLAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAABSwAAAWgAAABLAAACSwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAAASwAAAEsAAANoAAAASwAAAEsAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAEsAAABoAAAAaAAAAEsAAANLAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAABLAAAASwAAAGgAAABLAAACSwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFMAAABTAAAAUwAAAEcAAAJHAAADFgAAAhYAAAEWAAADFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAmQAAAAoAAAAKAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAUwAAAFMAAABTAAAARwAAAkcAAAIWAAABFgAAABYAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAABFgAAAxYAAAEWAAABFgAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGQAAABHAAADRwAAARYAAAAWAAACFgAAAhYAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABkAAAARwAAA0cAAAJkAAAAKAAAACgAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAZAAAAEcAAABHAAACFgAAAhYAAAMWAAACFgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAA0cAAABHAAACRwAAAkcAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAUwAAAFMAAABTAAAARwAAA0cAAABHAAABRwAAAUcAAAFHAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADZAAAAGQAAABkAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABTAAAAUwAAAFMAAABHAAACRwAAA0cAAABkAAAARwAAAkcAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAAJHAAABZAAAAEcAAAJHAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAABRwAAAWQAAABHAAACRwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAAARwAAAEcAAANkAAAARwAAAEcAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAEcAAABkAAAAZAAAAEcAAANHAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAABHAAAARwAAAGQAAABHAAACRwAAAA== -3,3: ind: -3,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAABLAAACSwAAAUsAAABLAAABSwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAAASwAAA0sAAANoAAAASwAAAksAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAEsAAAFLAAABaAAAAGgAAABLAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADSwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAACSwAAA0sAAABLAAABSwAAA0sAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAywAAAAsAAAALAAAACwAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAAEsAAAALAAAACwAAAAsAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAAALAAAACwAAAAsAAAALAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAiwAAAAsAAAALAAAACwAAAAsAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAEsAAAIsAAAALAAAACwAAAAsAAAALAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAABSwAAAEsAAAJLAAACSwAAA0sAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAGgAAAxoAAAAaAAACaAAAAFgAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAD4AAANoAAAAaAAAAGgAAABXAAAAaAAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAPgAAAGgAAABoAAAAPgAAAD4AAANoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAKAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAABHAAACRwAAAUcAAABHAAABRwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAAARwAAA0cAAANkAAAARwAAAkcAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAAEcAAAFHAAABZAAAAGQAAABHAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADRwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAACRwAAA0cAAABHAAABRwAAA0cAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAAygAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAAEoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAAigAAAAoAAAAKAAAACgAAAAoAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAEcAAAIoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAABRwAAAEcAAAJHAAACRwAAA0cAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAFgAAAxYAAAAWAAACZAAAAFQAAABkAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAADoAAANkAAAAZAAAAGQAAABTAAAAZAAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAOgAAAGQAAABkAAAAOgAAADoAAANkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAGAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== -1,4: ind: -1,4 - tiles: GgAAADcAAAA3AAAANwAAADcAAAA3AAAAGgAAAxoAAAIaAAAAaAAAAEsAAABLAAACSwAAA2gAAABbAAACWwAAABoAAAA3AAAANwAAADcAAAA3AAAANwAAABoAAAAaAAACGgAAAGgAAABLAAABSwAAAksAAANoAAAAWAAAAGgAAAAaAAABNwAAADcAAAA3AAAANwAAADcAAAAaAAABGgAAABoAAAJoAAAASwAAAEsAAANLAAADaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAGgAAABoAAAAaAAAAGgAAAAaAAACaAAAAGgAAABoAAAAVwAAABoAAAJoAAAAGgAAABoAAAAaAAABGgAAARoAAAMaAAABGgAAAWgAAAAaAAACGgAAARoAAABoAAAAaAAAAGgAAAAaAAACaAAAABoAAAIaAAAAGgAAAxoAAAAaAAADGgAAAxoAAABoAAAAGgAAAxoAAAAaAAADWAAAAGgAAABoAAAAGgAAAmgAAAAaAAACGgAAARoAAAMaAAAAGgAAAhoAAAAaAAADaAAAABoAAAAaAAACGgAAAGgAAABoAAAAaAAAABoAAAFoAAAAaAAAAGgAAAAaAAACGgAAAhoAAAAaAAACGgAAAGgAAAAaAAAAGgAAABoAAAJoAAAANgAAAGgAAAAaAAAAGgAAARoAAAMaAAADGgAAARoAAAIaAAABGgAAAxoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAA2AAAAGgAAAhoAAAAaAAACaAAAABoAAAIaAAADGgAAABoAAAIaAAADaAAAAGgAAABoAAAAaAAAAGgAAAA2AAAANgAAABoAAAAaAAAAGgAAA2gAAAAaAAAAGgAAABoAAAIaAAABGgAAAWgAAABoAAAAaAAAAGgAAABoAAAANgAAAGgAAAAaAAACGgAAAhoAAAJoAAAAGgAAARoAAAIaAAACGgAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAARoAAAMaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAKAAAACgAAAGgAAABoAAAAaAAAAGgAAAAKAAAADAAABwoAAAAKAAAAZwAAAGgAAAAAAAAAAAAAAAAAAABoAAAACgAAAAoAAAAKAAAACgAAAAsAAAIKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAA== + tiles: FgAAADMAAAAzAAAAMwAAADMAAAAzAAAAFgAAAxYAAAIWAAAAZAAAAEcAAABHAAACRwAAA2QAAABXAAACVwAAABYAAAAzAAAAMwAAADMAAAAzAAAAMwAAABYAAAAWAAACFgAAAGQAAABHAAABRwAAAkcAAANkAAAAVAAAAGQAAAAWAAABMwAAADMAAAAzAAAAMwAAADMAAAAWAAABFgAAABYAAAJkAAAARwAAAEcAAANHAAADZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAGQAAABkAAAAZAAAAGQAAAAWAAACZAAAAGQAAABkAAAAUwAAABYAAAJkAAAAFgAAABYAAAAWAAABFgAAARYAAAMWAAABFgAAAWQAAAAWAAACFgAAARYAAABkAAAAZAAAAGQAAAAWAAACZAAAABYAAAIWAAAAFgAAAxYAAAAWAAADFgAAAxYAAABkAAAAFgAAAxYAAAAWAAADVAAAAGQAAABkAAAAFgAAAmQAAAAWAAACFgAAARYAAAMWAAAAFgAAAhYAAAAWAAADZAAAABYAAAAWAAACFgAAAGQAAABkAAAAZAAAABYAAAFkAAAAZAAAAGQAAAAWAAACFgAAAhYAAAAWAAACFgAAAGQAAAAWAAAAFgAAABYAAAJkAAAAMgAAAGQAAAAWAAAAFgAAARYAAAMWAAADFgAAARYAAAIWAAABFgAAAxYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAyAAAAFgAAAhYAAAAWAAACZAAAABYAAAIWAAADFgAAABYAAAIWAAADZAAAAGQAAABkAAAAZAAAAGQAAAAyAAAAMgAAABYAAAAWAAAAFgAAA2QAAAAWAAAAFgAAABYAAAIWAAABFgAAAWQAAABkAAAAZAAAAGQAAABkAAAAMgAAAGQAAAAWAAACFgAAAhYAAAJkAAAAFgAAARYAAAIWAAACFgAAABYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAARYAAAMWAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAGAAAABgAAAGQAAABkAAAAZAAAAGQAAAAGAAAABgAABwYAAAAGAAAAYwAAAGQAAAAAAAAAAAAAAAAAAABkAAAABgAAAAYAAAAGAAAABgAAAAYAAAIGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAA== -2,4: ind: -2,4 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAAAaAAAABoAAAEaAAACGgAAARoAAAAaAAABGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAAAaAAAAGgAAAhoAAAMaAAADGgAAAhoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAFoAAAAaAAAABoAAAMaAAAANwAAAGgAAAA3AAAANwAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAARoAAAMaAAABGgAAA2gAAABoAAAAGgAAAjcAAAA3AAAANwAAADcAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAAaAAAAGgAAARoAAAFoAAAAGgAAARoAAAA3AAAANwAAADcAAAA3AAAAaAAAAGgAAABoAAAAUAAAAGgAAAAaAAABGgAAABoAAAMaAAABaAAAABoAAAAaAAACNwAAADcAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANoAAAAGgAAARoAAAMaAAAAGgAAAWgAAAAaAAACGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADaAAAAGgAAABoAAAAGgAAA2gAAABoAAAAGgAAAhoAAAJAAAAAaAAAADkAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAGgAAAxoAAAEaAAAAGgAAAxoAAAAaAAADQAAAAGgAAAA5AAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAIaAAADGgAAAhoAAAMaAAACGgAAAkAAAABoAAAAOQAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAEaAAAAGgAAAhoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAA2gAAAAaAAABGgAAARoAAAEaAAACCgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaAAAABoAAAAaAAACGgAAAhoAAAAaAAADGgAAAAoAAABoAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAsAAAIMAAAGAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAALAAACCgAAAAoAAAAKAAAADAAAAwoAAAALAAACCgAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAAAZAAAABYAAAEWAAACFgAAARYAAAAWAAABFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAAAWAAAAFgAAAhYAAAMWAAADFgAAAhYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAFkAAAAZAAAABYAAAMWAAAAMwAAAGQAAAAzAAAAMwAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAARYAAAMWAAABFgAAA2QAAABkAAAAFgAAAjMAAAAzAAAAMwAAADMAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAAWAAAAFgAAARYAAAFkAAAAFgAAARYAAAAzAAAAMwAAADMAAAAzAAAAZAAAAGQAAABkAAAATAAAAGQAAAAWAAABFgAAABYAAAMWAAABZAAAABYAAAAWAAACMwAAADMAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANkAAAAFgAAARYAAAMWAAAAFgAAAWQAAAAWAAACFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADZAAAAGQAAABkAAAAFgAAA2QAAABkAAAAFgAAAhYAAAI8AAAAZAAAADUAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAFgAAAxYAAAEWAAAAFgAAAxYAAAAWAAADPAAAAGQAAAA1AAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAIWAAADFgAAAhYAAAMWAAACFgAAAjwAAABkAAAANQAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAEWAAAAFgAAAhYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAA2QAAAAWAAABFgAAARYAAAEWAAACBgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZAAAABYAAAAWAAACFgAAAhYAAAAWAAADFgAAAAYAAABkAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAIGAAAGAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAACBgAAAAYAAAAGAAAABgAAAwYAAAAGAAACBgAAAA== -3,4: ind: -3,4 - tiles: AAAAAAAAAABnAAAAAAAAAAAAAAAKAAAAaAAAAD4AAAE+AAADaAAAAGgAAAA+AAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAACgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAoAAAAKAAAACgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAKAAAACgAAAAoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAANwAAAAAAAAAAAAAAaAAAAAAAAAAAAAAACgAAAAoAAAAKAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAKAAAACgAAAAoAAAAAAAAACgAAAAoAAAAKAAAACgAAAGgAAABoAAAAaAAAAGgAAABLAAADaAAAAGgAAAA3AAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAABoAAAASwAAAFAAAABoAAAANwAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAALAAACCgAAAAoAAAAKAAAAaAAAAGgAAABoAAAAaAAAAGgAAAALAAADCgAAAAoAAAAKAAAACgAAAAoAAAALAAADCwAAAgoAAAAKAAAACgAAAAoAAAAKAAAACgAAAGgAAABAAAAACwAAAwoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAABoAAAAQAAAAAsAAAIKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaAAAAEAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAGgAAABoAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAsAAAMKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACwAAAQoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAGgAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAABoAAAAAAAAAA== + tiles: AAAAAAAAAABjAAAAAAAAAAAAAAAGAAAAZAAAADoAAAE6AAADZAAAAGQAAAA6AAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAABgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAYAAAAGAAAABgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAGAAAABgAAAAYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAMwAAAAAAAAAAAAAAZAAAAAAAAAAAAAAABgAAAAYAAAAGAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAGAAAABgAAAAYAAAAAAAAABgAAAAYAAAAGAAAABgAAAGQAAABkAAAAZAAAAGQAAABHAAADZAAAAGQAAAAzAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAABkAAAARwAAAEwAAABkAAAAMwAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAACBgAAAAYAAAAGAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAGAAADBgAAAAYAAAAGAAAABgAAAAYAAAAGAAADBgAAAgYAAAAGAAAABgAAAAYAAAAGAAAABgAAAGQAAAA8AAAABgAAAwYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAABkAAAAPAAAAAYAAAIGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZAAAADwAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAGQAAABkAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAMGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAQYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAGQAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAABkAAAAAAAAAA== -2,5: ind: -2,5 - tiles: AAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAACCwAAAwoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAACBgAAAwYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,5: ind: -3,5 - tiles: AAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAABoAAAAAAAAAAAAAAAKAAAACwAAAQoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAGgAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAABoAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAABoAAAACgAAAAoAAAAKAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAABkAAAAAAAAAAAAAAAGAAAABgAAAQYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZAAAAAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAGQAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAABkAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAAYAAABkAAAABgAAAAYAAAAGAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -4,4: ind: -4,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -4,3: ind: -4,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,3: ind: 0,3 - tiles: WwAAAmgAAABbAAABWwAAAFsAAABbAAABWwAAAFsAAAFkAAACWwAAAFsAAANbAAACWwAAAlsAAABbAAABWwAAAFsAAANkAAADWwAAA1sAAAFbAAABWwAAAFsAAAFbAAABZAAAAlsAAAMaAAABGgAAAhoAAAIaAAAAGgAAA1sAAAFbAAACaAAAAEsAAABLAAADSwAAAksAAABLAAAASwAAA2gAAABbAAADGgAAARoAAAMaAAACGgAAAxoAAAJbAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAA1sAAANbAAABWwAAAlsAAAFbAAACWwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAGgAAABoAAABkAAAAZAAAAGQAAABoAAAAWwAAA1sAAABbAAABaAAAAFgAAAApAAAAKQAAACkAAABoAAAAGgAAABoAAAAaAAAAZAAAAGQAAABkAAAAaAAAAFsAAABbAAABWwAAAGgAAABoAAAAKQAAACkAAAApAAAAGgAAABoAAAAaAAAAGgAAAGQAAABkAAAAZAAAAGgAAABbAAAAWwAAAVsAAAJoAAAAaAAAACkAAAApAAAAKQAAAGgAAAAaAAAAGgAAABoAAABkAAAAZAAAAGQAAABoAAAAaAAAAGgAAABoAAAAWwAAAWgAAAApAAAAKQAAACkAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAABbAAADWwAAAFsAAAFoAAAAKQAAACkAAAApAAAAaAAAABoAAAMaAAADGgAAAxoAAAMaAAABGgAAAGgAAABbAAAAWwAAAFsAAAFoAAAAaAAAACkAAAApAAAAKQAAAGgAAAAaAAACGgAAABoAAAMaAAAAGgAAABoAAAJoAAAAWwAAAlsAAABbAAADWwAAAWgAAABoAAAAZAAAA2gAAABoAAAAaAAAAGgAAABoAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAAFkAAAAWwAAAVsAAABbAAAAWwAAAlsAAABbAAACWwAAAFsAAAFbAAABWwAAAmQAAAFbAAABWwAAAFsAAANbAAADaAAAAFsAAANbAAADSwAAAksAAAFLAAADSwAAAksAAABLAAADSwAAAUsAAAA+AAABSwAAA0sAAAJLAAABWwAAAGQAAAJbAAACWwAAAVsAAANbAAADWwAAAlsAAABbAAABWwAAA1sAAAJbAAAAZAAAAFsAAANbAAABWwAAAw== + tiles: VwAAAmQAAABXAAABVwAAAFcAAABXAAABVwAAAFcAAAFgAAACVwAAAFcAAANXAAACVwAAAlcAAABXAAABVwAAAFcAAANgAAADVwAAA1cAAAFXAAABVwAAAFcAAAFXAAABYAAAAlcAAAMWAAABFgAAAhYAAAIWAAAAFgAAA1cAAAFXAAACZAAAAEcAAABHAAADRwAAAkcAAABHAAAARwAAA2QAAABXAAADFgAAARYAAAMWAAACFgAAAxYAAAJXAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAA1cAAANXAAABVwAAAlcAAAFXAAACVwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAAWAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAAAFgAAABYAAABgAAAAYAAAAGAAAABkAAAAVwAAA1cAAABXAAABZAAAAFQAAAAlAAAAJQAAACUAAABkAAAAFgAAABYAAAAWAAAAYAAAAGAAAABgAAAAZAAAAFcAAABXAAABVwAAAGQAAABkAAAAJQAAACUAAAAlAAAAFgAAABYAAAAWAAAAFgAAAGAAAABgAAAAYAAAAGQAAABXAAAAVwAAAVcAAAJkAAAAZAAAACUAAAAlAAAAJQAAAGQAAAAWAAAAFgAAABYAAABgAAAAYAAAAGAAAABkAAAAZAAAAGQAAABkAAAAVwAAAWQAAAAlAAAAJQAAACUAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAABXAAADVwAAAFcAAAFkAAAAJQAAACUAAAAlAAAAZAAAABYAAAMWAAADFgAAAxYAAAMWAAABFgAAAGQAAABXAAAAVwAAAFcAAAFkAAAAZAAAACUAAAAlAAAAJQAAAGQAAAAWAAACFgAAABYAAAMWAAAAFgAAABYAAAJkAAAAVwAAAlcAAABXAAADVwAAAWQAAABkAAAAYAAAA2QAAABkAAAAZAAAAGQAAABkAAAAFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAAFgAAAAVwAAAVcAAABXAAAAVwAAAlcAAABXAAACVwAAAFcAAAFXAAABVwAAAmAAAAFXAAABVwAAAFcAAANXAAADZAAAAFcAAANXAAADRwAAAkcAAAFHAAADRwAAAkcAAABHAAADRwAAAUcAAAA6AAABRwAAA0cAAAJHAAABVwAAAGAAAAJXAAACVwAAAVcAAANXAAADVwAAAlcAAABXAAABVwAAA1cAAAJXAAAAYAAAAFcAAANXAAABVwAAAw== 0,4: ind: 0,4 - tiles: WwAAA2gAAABYAAAAaAAAAGgAAABoAAAAaAAAAFsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAABaAAAAGgAAABoAAAAaAAAAGgAAAAvAAABWwAAABoAAABbAAABWwAAAmgAAABbAAACVwAAAEsAAAFLAAACSwAAAxoAAAFXAAAAaAAAAGgAAABoAAAAWwAAAlsAAANbAAACWwAAAVsAAAFoAAAAWwAAAmgAAAAZAAAAGQAAABkAAABLAAAAaAAAAGgAAABoAAAAaAAAAFsAAAJbAAAAWwAAA1sAAANbAAAAaAAAAFsAAAJoAAAAGQAAABkAAAAZAAAASwAAAVcAAABoAAAAaAAAAGgAAABbAAACWwAAAhoAAAJbAAABWwAAA2gAAABoAAAAaAAAAEsAAAJLAAABSwAAAksAAAJoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAAaAAABGgAAAhoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAADYAAABoAAAAaAAAAGgAAAAaAAABGgAAAhoAAAEaAAADWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAEaAAABGgAAA2gAAABoAAAAaAAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAKAAAACgAAAAoAAAAKAAAACgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAACgAAAAoAAAAKAAAACgAAAAoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAKAAAACgAAAAwAAAUMAAAFCgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAACgAAAAoAAAAMAAAGCgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAMAAADDAAAAwoAAAAKAAAAAAAAAA== + tiles: VwAAA2QAAABUAAAAZAAAAGQAAABkAAAAZAAAAFcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAABZAAAAGQAAABkAAAAZAAAAGQAAAArAAABVwAAABYAAABXAAABVwAAAmQAAABXAAACUwAAAEcAAAFHAAACRwAAAxYAAAFTAAAAZAAAAGQAAABkAAAAVwAAAlcAAANXAAACVwAAAVcAAAFkAAAAVwAAAmQAAAAVAAAAFQAAABUAAABHAAAAZAAAAGQAAABkAAAAZAAAAFcAAAJXAAAAVwAAA1cAAANXAAAAZAAAAFcAAAJkAAAAFQAAABUAAAAVAAAARwAAAVMAAABkAAAAZAAAAGQAAABXAAACVwAAAhYAAAJXAAABVwAAA2QAAABkAAAAZAAAAEcAAAJHAAABRwAAAkcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAAWAAABFgAAAhYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAADIAAABkAAAAZAAAAGQAAAAWAAABFgAAAhYAAAEWAAADVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAABYAAAEWAAABFgAAA2QAAABkAAAAZAAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAGAAAABgAAAAYAAAAGAAAABgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAABgAAAAYAAAAGAAAABgAAAAYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAGAAAABgAAAAYAAAUGAAAFBgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAABgAAAAYAAAAGAAAGBgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAADBgAAAwYAAAAGAAAAAAAAAA== 1,1: ind: 1,1 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAIaAAADGgAAAGgAAAAaAAADGgAAAhoAAAEaAAAAGgAAAGgAAAAaAAACGgAAARoAAAAaAAAAGgAAA2gAAAAaAAACSwAAAhoAAAFoAAAAGgAAAhoAAAEaAAADGgAAARoAAAJoAAAAGgAAA0sAAANLAAADSwAAABoAAAEaAAACGgAAAksAAAAaAAAAVwAAABoAAAMaAAAAGgAAAxoAAAEaAAACaAAAABoAAAAaAAAAGgAAARoAAAEaAAACaAAAABoAAABLAAAAGgAAAWgAAAAaAAAAGgAAABoAAAMaAAAAGgAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAGgAAARoAAAMaAAAAGgAAAhoAAAEaAAADGgAAARoAAABoAAAANwAAADcAAABoAAAAGgAAAEsAAAEaAAABaAAAABoAAAAaAAABGgAAABoAAAEaAAABGgAAABoAAAEaAAAAaAAAADcAAAA3AAAAGgAAARoAAAFLAAACGgAAAWgAAAAaAAAAGgAAAxoAAAIaAAAAGgAAARoAAAEaAAABGgAAAWgAAAA3AAAANwAAAGgAAAAaAAADSwAAARoAAABoAAAAGgAAABoAAAAaAAAAGgAAABoAAABoAAAAaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAGgAAAEsAAAAaAAACaAAAABoAAAMaAAACGgAAABoAAAAaAAADaAAAABoAAAIaAAADGgAAAxoAAAEaAAAAVwAAABoAAANLAAABGgAAAVcAAAAaAAAAGgAAABoAAAMaAAADGgAAAmgAAAAaAAACGgAAAxoAAAAaAAAAGgAAAFcAAAAaAAACSwAAAxoAAANoAAAAGgAAAxoAAAAaAAACGgAAABoAAAJoAAAAGgAAARoAAABoAAAAaAAAAGgAAABoAAAAGgAAAhoAAAIaAAABaAAAABoAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAVwAAAGgAAAAaAAACGgAAAGgAAAA1AAAANQAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABaAAAABoAAANXAAAAGgAAARoAAABoAAAANQAAADUAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAmgAAAAaAAADVwAAABoAAAMaAAAAaAAAADUAAAA1AAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAFcAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAIWAAADFgAAAGQAAAAWAAADFgAAAhYAAAEWAAAAFgAAAGQAAAAWAAACFgAAARYAAAAWAAAAFgAAA2QAAAAWAAACRwAAAhYAAAFkAAAAFgAAAhYAAAEWAAADFgAAARYAAAJkAAAAFgAAA0cAAANHAAADRwAAABYAAAEWAAACFgAAAkcAAAAWAAAAUwAAABYAAAMWAAAAFgAAAxYAAAEWAAACZAAAABYAAAAWAAAAFgAAARYAAAEWAAACZAAAABYAAABHAAAAFgAAAWQAAAAWAAAAFgAAABYAAAMWAAAAFgAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABkAAAAFgAAARYAAAMWAAAAFgAAAhYAAAEWAAADFgAAARYAAABkAAAAMwAAADMAAABkAAAAFgAAAEcAAAEWAAABZAAAABYAAAAWAAABFgAAABYAAAEWAAABFgAAABYAAAEWAAAAZAAAADMAAAAzAAAAFgAAARYAAAFHAAACFgAAAWQAAAAWAAAAFgAAAxYAAAIWAAAAFgAAARYAAAEWAAABFgAAAWQAAAAzAAAAMwAAAGQAAAAWAAADRwAAARYAAABkAAAAFgAAABYAAAAWAAAAFgAAABYAAABkAAAAZAAAABYAAAFkAAAAZAAAAGQAAABkAAAAFgAAAEcAAAAWAAACZAAAABYAAAMWAAACFgAAABYAAAAWAAADZAAAABYAAAIWAAADFgAAAxYAAAEWAAAAUwAAABYAAANHAAABFgAAAVMAAAAWAAAAFgAAABYAAAMWAAADFgAAAmQAAAAWAAACFgAAAxYAAAAWAAAAFgAAAFMAAAAWAAACRwAAAxYAAANkAAAAFgAAAxYAAAAWAAACFgAAABYAAAJkAAAAFgAAARYAAABkAAAAZAAAAGQAAABkAAAAFgAAAhYAAAIWAAABZAAAABYAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAUwAAAGQAAAAWAAACFgAAAGQAAAAxAAAAMQAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAABZAAAABYAAANTAAAAFgAAARYAAABkAAAAMQAAADEAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAmQAAAAWAAADUwAAABYAAAMWAAAAZAAAADEAAAAxAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAFMAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== 1,0: ind: 1,0 - tiles: GgAAARoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAIaAAABaAAAABoAAAIaAAAAGgAAAlcAAAAaAAAAaAAAABoAAAJoAAAAGgAAABoAAAJoAAAAGgAAARoAAAAaAAACGgAAA2gAAAAaAAADGgAAAhoAAAJXAAAAGgAAAGgAAAAaAAABaAAAABoAAAMaAAACaAAAABoAAAEaAAACGgAAAxoAAANoAAAAGgAAAhoAAAEaAAACVwAAABoAAANoAAAAGgAAA2gAAAAaAAABGgAAAGgAAAAaAAADGgAAA1gAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABXAAAAaAAAAFcAAABoAAAAaAAAAFcAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABLAAACSwAAA0sAAAFLAAACSwAAAUsAAANLAAABSwAAAksAAAFLAAACSwAAAEsAAAJLAAABaAAAAGgAAABYAAAASwAAAEsAAAFLAAACSwAAAUsAAANLAAAASwAAAUsAAABLAAADSwAAAEsAAANLAAACSwAAAWgAAABoAAAAaAAAAEsAAABLAAAASwAAARoAAAFLAAABSwAAA0sAAABLAAABSwAAA0sAAAFLAAAASwAAAksAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABXAAAAaAAAAFcAAABoAAAAGgAAAhoAAAMaAAACGgAAAhoAAAAaAAADaAAAAEsAAAJLAAABSwAAAmgAAAAaAAABGgAAABoAAAIaAAAAGgAAAxoAAAMaAAADGgAAAxoAAAIaAAACGgAAAFcAAABLAAADSwAAA0sAAANoAAAAGgAAARoAAAEaAAAAGgAAAxoAAAEaAAAAGgAAAhoAAAAaAAAAGgAAAxoAAANXAAAASwAAAUsAAABLAAABaAAAABoAAAEaAAACGgAAAhoAAAAaAAACGgAAAywAAAAsAAAAGgAAABoAAAIaAAABaAAAAEsAAANLAAAASwAAAWgAAAAaAAADGgAAARoAAAIaAAAAGgAAAxoAAAEaAAABGgAAABoAAAIaAAAAGgAAAlcAAABLAAADSwAAAUsAAAFoAAAAGgAAARoAAAIaAAACGgAAABoAAAIaAAADGgAAAhoAAAIaAAADGgAAAhoAAAIaAAABSwAAAksAAANLAAABaAAAABoAAAIaAAABGgAAARoAAAAaAAABGgAAAxoAAAIaAAAAGgAAAhoAAAMaAAAAaAAAAFcAAABoAAAAVwAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAA== + tiles: FgAAARYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAIWAAABZAAAABYAAAIWAAAAFgAAAlMAAAAWAAAAZAAAABYAAAJkAAAAFgAAABYAAAJkAAAAFgAAARYAAAAWAAACFgAAA2QAAAAWAAADFgAAAhYAAAJTAAAAFgAAAGQAAAAWAAABZAAAABYAAAMWAAACZAAAABYAAAEWAAACFgAAAxYAAANkAAAAFgAAAhYAAAEWAAACUwAAABYAAANkAAAAFgAAA2QAAAAWAAABFgAAAGQAAAAWAAADFgAAA1QAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABTAAAAZAAAAFMAAABkAAAAZAAAAFMAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABHAAACRwAAA0cAAAFHAAACRwAAAUcAAANHAAABRwAAAkcAAAFHAAACRwAAAEcAAAJHAAABZAAAAGQAAABUAAAARwAAAEcAAAFHAAACRwAAAUcAAANHAAAARwAAAUcAAABHAAADRwAAAEcAAANHAAACRwAAAWQAAABkAAAAZAAAAEcAAABHAAAARwAAARYAAAFHAAABRwAAA0cAAABHAAABRwAAA0cAAAFHAAAARwAAAkcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAGQAAABTAAAAZAAAAFMAAABkAAAAFgAAAhYAAAMWAAACFgAAAhYAAAAWAAADZAAAAEcAAAJHAAABRwAAAmQAAAAWAAABFgAAABYAAAIWAAAAFgAAAxYAAAMWAAADFgAAAxYAAAIWAAACFgAAAFMAAABHAAADRwAAA0cAAANkAAAAFgAAARYAAAEWAAAAFgAAAxYAAAEWAAAAFgAAAhYAAAAWAAAAFgAAAxYAAANTAAAARwAAAUcAAABHAAABZAAAABYAAAEWAAACFgAAAhYAAAAWAAACFgAAAygAAAAoAAAAFgAAABYAAAIWAAABZAAAAEcAAANHAAAARwAAAWQAAAAWAAADFgAAARYAAAIWAAAAFgAAAxYAAAEWAAABFgAAABYAAAIWAAAAFgAAAlMAAABHAAADRwAAAUcAAAFkAAAAFgAAARYAAAIWAAACFgAAABYAAAIWAAADFgAAAhYAAAIWAAADFgAAAhYAAAIWAAABRwAAAkcAAANHAAABZAAAABYAAAIWAAABFgAAARYAAAAWAAABFgAAAxYAAAIWAAAAFgAAAhYAAAMWAAAAZAAAAFMAAABkAAAAUwAAAGQAAABkAAAAUwAAAFMAAABkAAAAZAAAAA== 2,1: ind: 2,1 - tiles: GgAAAhoAAAFoAAAAGgAAABoAAAMaAAACGgAAAxoAAAFoAAAAaAAAAFcAAABoAAAAaAAAAFcAAABoAAAAVwAAABoAAAEaAAACaAAAABoAAAIaAAACGgAAAxoAAAAaAAABaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAAAaAAACGgAAAlcAAABlAAABZQAAA2UAAABlAAAAZQAAAmgAAABXAAAAVwAAAFcAAABXAAAAGgAAARoAAAEaAAACGgAAAhoAAAJoAAAAGgAAAmUAAAFlAAABZQAAA2UAAANoAAAAGgAAARoAAAMaAAADVwAAABoAAAAaAAADGgAAAxoAAAIaAAAAaAAAAGUAAAFlAAABZQAAAGUAAAFlAAABaAAAABoAAAAaAAADGgAAA1cAAAAaAAABGgAAARoAAAIaAAACSwAAAGgAAABlAAABZQAAAmUAAANlAAADZQAAA2gAAAAaAAAAGgAAAhoAAANXAAAAGgAAAxoAAAAaAAABGgAAAEsAAAJoAAAAZQAAAGUAAANlAAACZQAAA2UAAAFoAAAAGgAAAhoAAAIaAAABVwAAAFcAAAAaAAADVwAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGUAAAFoAAAAaAAAABoAAAIaAAAAGgAAAVcAAABXAAAAGgAAA1cAAAAaAAADaAAAABoAAAIaAAADaAAAAGUAAAFlAAADGgAAA2gAAAAaAAAAGgAAABoAAAJXAAAAGgAAABoAAAMaAAAAGgAAAhoAAAMaAAACGgAAA2gAAABlAAAAZQAAAmUAAANoAAAAGgAAABoAAAIaAAAAVwAAAFcAAABXAAAAVwAAABoAAAJoAAAAGgAAAhoAAABoAAAAGgAAABoAAAIaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: FgAAAhYAAAFkAAAAFgAAABYAAAMWAAACFgAAAxYAAAFkAAAAZAAAAFMAAABkAAAAZAAAAFMAAABkAAAAUwAAABYAAAEWAAACZAAAABYAAAIWAAACFgAAAxYAAAAWAAABZAAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAAAWAAACFgAAAlMAAABhAAABYQAAA2EAAABhAAAAYQAAAmQAAABTAAAAUwAAAFMAAABTAAAAFgAAARYAAAEWAAACFgAAAhYAAAJkAAAAFgAAAmEAAAFhAAABYQAAA2EAAANkAAAAFgAAARYAAAMWAAADUwAAABYAAAAWAAADFgAAAxYAAAIWAAAAZAAAAGEAAAFhAAABYQAAAGEAAAFhAAABZAAAABYAAAAWAAADFgAAA1MAAAAWAAABFgAAARYAAAIWAAACRwAAAGQAAABhAAABYQAAAmEAAANhAAADYQAAA2QAAAAWAAAAFgAAAhYAAANTAAAAFgAAAxYAAAAWAAABFgAAAEcAAAJkAAAAYQAAAGEAAANhAAACYQAAA2EAAAFkAAAAFgAAAhYAAAIWAAABUwAAAFMAAAAWAAADUwAAABYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGEAAAFkAAAAZAAAABYAAAIWAAAAFgAAAVMAAABTAAAAFgAAA1MAAAAWAAADZAAAABYAAAIWAAADZAAAAGEAAAFhAAADFgAAA2QAAAAWAAAAFgAAABYAAAJTAAAAFgAAABYAAAMWAAAAFgAAAhYAAAMWAAACFgAAA2QAAABhAAAAYQAAAmEAAANkAAAAFgAAABYAAAIWAAAAUwAAAFMAAABTAAAAUwAAABYAAAJkAAAAFgAAAhYAAABkAAAAFgAAABYAAAIWAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABkAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEwAAABkAAAAZAAAAFMAAABTAAAAUwAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== 2,0: ind: 2,0 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABGgAAAWgAAAAaAAAAGgAAABoAAAMaAAADaAAAABoAAANbAAAAWwAAAlsAAANbAAABWwAAA1cAAABoAAAAGgAAARoAAABoAAAAGgAAAxoAAAEaAAACGgAAAGgAAABbAAADWwAAAVsAAAFbAAADWwAAAVsAAAFXAAAAaAAAABoAAAMaAAACaAAAABoAAAAaAAAAGgAAAhoAAABoAAAAWwAAA1sAAABbAAABWwAAAVsAAANbAAABVwAAAGgAAABoAAAAVwAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAACwAAAAaAAABLAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAA0sAAAJLAAADSwAAAUsAAAFLAAAASwAAAFcAAAAaAAADGgAAAhoAAANoAAAAVwAAAFcAAABXAAAASwAAA0sAAAFLAAADSwAAAUsAAAJLAAADSwAAAEsAAANoAAAAGgAAARoAAAAaAAACaAAAAFcAAABXAAAAVwAAAEsAAABLAAAASwAAAksAAAFLAAADSwAAAUsAAANLAAABVwAAABoAAAIaAAACGgAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAFcAAABoAAAAaAAAABoAAAAaAAADKQAAABoAAANoAAAAGgAAABoAAAJoAAAAGgAAAhoAAAMaAAADGgAAAhoAAAAaAAAAGgAAAWgAAAApAAAAKQAAACkAAAAaAAAAaAAAABoAAAAaAAADaAAAABoAAAEaAAAAGgAAABoAAAEaAAACGgAAABoAAAJoAAAAGgAAAxoAAAApAAAAGgAAAmgAAABoAAAAaAAAAGgAAAAaAAACGgAAABoAAAAaAAACGgAAAhoAAAIaAAACaAAAABoAAAAaAAACKQAAABoAAAJoAAAAQAAAAEAAAABoAAAAaAAAAFcAAABoAAAAaAAAAFcAAABoAAAAVwAAAGgAAAApAAAAKQAAACkAAAAaAAAAVwAAABoAAAMaAAACaAAAABoAAAMaAAAAaAAAABoAAAMaAAAAaAAAABoAAABoAAAAGgAAABoAAAEpAAAAGgAAAWgAAAAaAAAAGgAAAmgAAAAaAAABGgAAAGgAAAAaAAADGgAAAGgAAAAaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAhoAAAFoAAAAGgAAABoAAANoAAAAGgAAAw== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAABFgAAAWQAAAAWAAAAFgAAABYAAAMWAAADZAAAABYAAANXAAAAVwAAAlcAAANXAAABVwAAA1MAAABkAAAAFgAAARYAAABkAAAAFgAAAxYAAAEWAAACFgAAAGQAAABXAAADVwAAAVcAAAFXAAADVwAAAVcAAAFTAAAAZAAAABYAAAMWAAACZAAAABYAAAAWAAAAFgAAAhYAAABkAAAAVwAAA1cAAABXAAABVwAAAVcAAANXAAABUwAAAGQAAABkAAAAUwAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAACgAAAAWAAABKAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAA0cAAAJHAAADRwAAAUcAAAFHAAAARwAAAFMAAAAWAAADFgAAAhYAAANkAAAAUwAAAFMAAABTAAAARwAAA0cAAAFHAAADRwAAAUcAAAJHAAADRwAAAEcAAANkAAAAFgAAARYAAAAWAAACZAAAAFMAAABTAAAAUwAAAEcAAABHAAAARwAAAkcAAAFHAAADRwAAAUcAAANHAAABUwAAABYAAAIWAAACFgAAAGQAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAZAAAAFMAAABkAAAAZAAAABYAAAAWAAADJQAAABYAAANkAAAAFgAAABYAAAJkAAAAFgAAAhYAAAMWAAADFgAAAhYAAAAWAAAAFgAAAWQAAAAlAAAAJQAAACUAAAAWAAAAZAAAABYAAAAWAAADZAAAABYAAAEWAAAAFgAAABYAAAEWAAACFgAAABYAAAJkAAAAFgAAAxYAAAAlAAAAFgAAAmQAAABkAAAAZAAAAGQAAAAWAAACFgAAABYAAAAWAAACFgAAAhYAAAIWAAACZAAAABYAAAAWAAACJQAAABYAAAJkAAAAPAAAADwAAABkAAAAZAAAAFMAAABkAAAAZAAAAFMAAABkAAAAUwAAAGQAAAAlAAAAJQAAACUAAAAWAAAAUwAAABYAAAMWAAACZAAAABYAAAMWAAAAZAAAABYAAAMWAAAAZAAAABYAAABkAAAAFgAAABYAAAElAAAAFgAAAWQAAAAWAAAAFgAAAmQAAAAWAAABFgAAAGQAAAAWAAADFgAAAGQAAAAWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAhYAAAFkAAAAFgAAABYAAANkAAAAFgAAAw== 2,-1: ind: 2,-1 - tiles: SwAAAEsAAAFLAAACVwAAAFsAAAFbAAACWwAAAVsAAABbAAABWwAAAlsAAANbAAAAWwAAAFsAAAFbAAACWwAAARoAAAEaAAAAGgAAAGgAAABbAAABWwAAAlsAAAFoAAAAWwAAAlsAAABbAAABWwAAAlsAAANbAAADWwAAAVsAAABYAAAAaAAAAGgAAABoAAAAaAAAABoAAAJoAAAAaAAAAFsAAABbAAACWwAAA1sAAAJbAAACaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAFcAAABoAAAAVwAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAFcAAABoAAAAGgAAAksAAABLAAAASwAAAEsAAAFLAAADSwAAAUsAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAANLAAABSwAAAEsAAABLAAABSwAAAEsAAAFLAAABaAAAAGgAAABoAAAAaAAAAGgAAABLAAAAaAAAAGgAAAAaAAAASwAAA0sAAAJLAAACSwAAAksAAABLAAACSwAAA1cAAABoAAAAaAAAAGgAAABLAAABSwAAAGgAAABoAAAAGgAAAksAAANLAAADSwAAAWgAAABoAAAAaAAAABoAAANXAAAAaAAAAGgAAABLAAABSwAAA0sAAAJLAAABaAAAABoAAANLAAACSwAAA0sAAABoAAAAZQAAA2UAAANlAAABaAAAAGgAAABoAAAASwAAAWgAAABLAAAASwAAAmgAAAAaAAACSwAAAEsAAANLAAADaAAAAGUAAAFlAAADZQAAA1cAAABoAAAAaAAAAEsAAAFLAAADSwAAAksAAAJoAAAAGgAAA0sAAAJLAAAASwAAAGgAAABlAAADZQAAA2UAAABoAAAAWAAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAABoAAABLAAACSwAAAEsAAABoAAAAZQAAAmUAAAFlAAACGgAAARoAAAAaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAFLAAADaAAAAGgAAABoAAAAGgAAAEsAAABLAAABSwAAA0sAAAJLAAAASwAAA0sAAABLAAAAVwAAAEsAAAJLAAABSwAAAEsAAABLAAABSwAAAEsAAAJLAAACSwAAA0sAAAFLAAAASwAAAksAAAFLAAACSwAAA1cAAABLAAADSwAAAksAAAFLAAABSwAAAUsAAABLAAADSwAAA0sAAAFLAAAASwAAAUsAAAFLAAADSwAAAUsAAAJXAAAASwAAA0sAAAFLAAAASwAAAEsAAANLAAAASwAAAA== + tiles: RwAAAEcAAAFHAAACUwAAAFcAAAFXAAACVwAAAVcAAABXAAABVwAAAlcAAANXAAAAVwAAAFcAAAFXAAACVwAAARYAAAEWAAAAFgAAAGQAAABXAAABVwAAAlcAAAFkAAAAVwAAAlcAAABXAAABVwAAAlcAAANXAAADVwAAAVcAAABUAAAAZAAAAGQAAABkAAAAZAAAABYAAAJkAAAAZAAAAFcAAABXAAACVwAAA1cAAAJXAAACZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAFMAAABkAAAAUwAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAFMAAABkAAAAFgAAAkcAAABHAAAARwAAAEcAAAFHAAADRwAAAUcAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAANHAAABRwAAAEcAAABHAAABRwAAAEcAAAFHAAABZAAAAGQAAABkAAAAZAAAAGQAAABHAAAAZAAAAGQAAAAWAAAARwAAA0cAAAJHAAACRwAAAkcAAABHAAACRwAAA1MAAABkAAAAZAAAAGQAAABHAAABRwAAAGQAAABkAAAAFgAAAkcAAANHAAADRwAAAWQAAABkAAAAZAAAABYAAANTAAAAZAAAAGQAAABHAAABRwAAA0cAAAJHAAABZAAAABYAAANHAAACRwAAA0cAAABkAAAAYQAAA2EAAANhAAABZAAAAGQAAABkAAAARwAAAWQAAABHAAAARwAAAmQAAAAWAAACRwAAAEcAAANHAAADZAAAAGEAAAFhAAADYQAAA1MAAABkAAAAZAAAAEcAAAFHAAADRwAAAkcAAAJkAAAAFgAAA0cAAAJHAAAARwAAAGQAAABhAAADYQAAA2EAAABkAAAAVAAAAGQAAABkAAAAZAAAAEcAAABkAAAAZAAAABYAAABHAAACRwAAAEcAAABkAAAAYQAAAmEAAAFhAAACFgAAARYAAAAWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAAFHAAADZAAAAGQAAABkAAAAFgAAAEcAAABHAAABRwAAA0cAAAJHAAAARwAAA0cAAABHAAAAUwAAAEcAAAJHAAABRwAAAEcAAABHAAABRwAAAEcAAAJHAAACRwAAA0cAAAFHAAAARwAAAkcAAAFHAAACRwAAA1MAAABHAAADRwAAAkcAAAFHAAABRwAAAUcAAABHAAADRwAAA0cAAAFHAAAARwAAAUcAAAFHAAADRwAAAUcAAAJTAAAARwAAA0cAAAFHAAAARwAAAEcAAANHAAAARwAAAA== 1,2: ind: 1,2 - tiles: SwAAAksAAANLAAAASwAAAksAAAJXAAAASwAAAksAAABLAAABSwAAAEsAAAFLAAACSwAAAEsAAANLAAACSwAAA0sAAANLAAACSwAAAksAAAFLAAAAVwAAAEsAAABLAAACSwAAAEsAAABLAAABSwAAAUsAAABLAAAASwAAA0sAAAFLAAACSwAAA0sAAAJLAAAASwAAAlcAAABLAAAASwAAAEsAAANLAAACSwAAAEsAAANLAAABSwAAAksAAAFLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAksAAANbAAACWwAAA1sAAABbAAAAGgAAAlsAAAJoAAAASwAAA0sAAABLAAADSwAAAWgAAABoAAAASwAAA0sAAAJLAAAAWwAAAlsAAABbAAACWwAAA1sAAAJbAAAAWAAAAEsAAAFLAAACSwAAAEsAAABYAAAAaAAAAEsAAAJLAAAASwAAAFsAAABbAAAAWwAAAFsAAABbAAADWwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAACWwAAAVsAAANbAAAAWwAAAlsAAAJoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABbAAACWwAAAVsAAAFoAAAASwAAAksAAANLAAAAWwAAA1sAAABbAAAAaAAAAFcAAABbAAABWwAAAlcAAABoAAAAWwAAAVsAAAJbAAADaAAAAEsAAABLAAACSwAAAFsAAAFbAAACWwAAA2gAAABXAAAAWwAAAVsAAABXAAAAaAAAACwAAAAsAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZAAAAGgAAABoAAAAVwAAAFsAAABbAAAAGgAAA2gAAABbAAAAWwAAAFsAAANbAAAAWwAAAVsAAAJbAAABWwAAA1sAAAJbAAAAWwAAAlsAAANbAAADWwAAAlsAAANbAAADSwAAAUsAAAJLAAABSwAAAEsAAANLAAABSwAAAksAAAJbAAACWwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAAJbAAAASwAAAlsAAANbAAAAWwAAAFsAAABbAAADWwAAAFsAAAJbAAAAWwAAAFsAAANbAAABWwAAAVsAAABoAAAAZAAAAT4AAANkAAAAaAAAAGgAAABkAAAAZAAAAmQAAAFoAAAAaAAAAFsAAABbAAACWwAAAVsAAAFoAAAAaAAAAFsAAAJLAAABWwAAAmgAAAAaAAADWwAAA1sAAANbAAACSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: RwAAAkcAAANHAAAARwAAAkcAAAJTAAAARwAAAkcAAABHAAABRwAAAEcAAAFHAAACRwAAAEcAAANHAAACRwAAA0cAAANHAAACRwAAAkcAAAFHAAAAUwAAAEcAAABHAAACRwAAAEcAAABHAAABRwAAAUcAAABHAAAARwAAA0cAAAFHAAACRwAAA0cAAAJHAAAARwAAAlMAAABHAAAARwAAAEcAAANHAAACRwAAAEcAAANHAAABRwAAAkcAAAFHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAkcAAANXAAACVwAAA1cAAABXAAAAFgAAAlcAAAJkAAAARwAAA0cAAABHAAADRwAAAWQAAABkAAAARwAAA0cAAAJHAAAAVwAAAlcAAABXAAACVwAAA1cAAAJXAAAAVAAAAEcAAAFHAAACRwAAAEcAAABUAAAAZAAAAEcAAAJHAAAARwAAAFcAAABXAAAAVwAAAFcAAABXAAADVwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAACVwAAAVcAAANXAAAAVwAAAlcAAAJkAAAAUwAAAFMAAABTAAAAUwAAAGQAAABXAAACVwAAAVcAAAFkAAAARwAAAkcAAANHAAAAVwAAA1cAAABXAAAAZAAAAFMAAABXAAABVwAAAlMAAABkAAAAVwAAAVcAAAJXAAADZAAAAEcAAABHAAACRwAAAFcAAAFXAAACVwAAA2QAAABTAAAAVwAAAVcAAABTAAAAZAAAACgAAAAoAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYAAAAGQAAABkAAAAUwAAAFcAAABXAAAAFgAAA2QAAABXAAAAVwAAAFcAAANXAAAAVwAAAVcAAAJXAAABVwAAA1cAAAJXAAAAVwAAAlcAAANXAAADVwAAAlcAAANXAAADRwAAAUcAAAJHAAABRwAAAEcAAANHAAABRwAAAkcAAAJXAAACVwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAAJXAAAARwAAAlcAAANXAAAAVwAAAFcAAABXAAADVwAAAFcAAAJXAAAAVwAAAFcAAANXAAABVwAAAVcAAABkAAAAYAAAAToAAANgAAAAZAAAAGQAAABgAAAAYAAAAmAAAAFkAAAAZAAAAFcAAABXAAACVwAAAVcAAAFkAAAAZAAAAFcAAAJHAAABVwAAAmQAAAAWAAADVwAAA1cAAANXAAACRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== 1,3: ind: 1,3 - tiles: ZAAAAlsAAAJLAAADWwAAAGgAAABLAAAAWwAAAFsAAAJbAAABSwAAA2gAAAA+AAAAPgAAAj4AAAE+AAAAaAAAAGQAAANbAAAASwAAAVsAAANoAAAAGgAAAVsAAAJbAAACWwAAAUsAAAA+AAABZAAAA2QAAABkAAAAZAAAAWgAAABoAAAAWwAAAUsAAABbAAADaAAAAEsAAABbAAADWwAAAVsAAABLAAAAPgAAA0AAAABAAAAAQAAAAEAAAABoAAAAaAAAAFsAAANLAAABWwAAA2gAAAAaAAACSwAAAUsAAAFLAAADSwAAAWgAAABAAAAAQAAAAEAAAABAAAAAaAAAAGgAAABbAAAASwAAAlsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAA0sAAAFbAAACaAAAAEsAAABLAAABSwAAAEsAAAJoAAAAGgAAARoAAAJoAAAAVwAAAFcAAABoAAAAWwAAAVsAAANLAAADWwAAAksAAABLAAACSwAAAUsAAABLAAADVwAAABoAAAAaAAACaAAAAGgAAABoAAAAaAAAAGgAAABbAAAASwAAAVsAAAJoAAAASwAAA0sAAABLAAADSwAAAGgAAAAaAAAAGgAAAGgAAABXAAAAVwAAAGgAAABoAAAAZAAAAj4AAAJkAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAAFLAAACWwAAA2gAAABLAAADSwAAAksAAAMaAAACGgAAABoAAAFoAAAAaAAAABIAAAASAAAAaAAAAFsAAABbAAABSwAAAVsAAAFLAAADSwAAAEsAAAJLAAADGgAAARoAAAEaAAADaAAAAGgAAABoAAAAEgAAAGgAAABoAAAAWwAAAksAAAFbAAADaAAAAEsAAANLAAACSwAAAhoAAAEaAAADGgAAAWgAAABoAAAAEgAAABIAAABoAAAAaAAAAFsAAABLAAAAWwAAAGgAAAAaAAAASwAAAUsAAAMaAAADGgAAAxoAAANoAAAAaAAAAGgAAABoAAAAaAAAAFsAAAFbAAACSwAAA1sAAABoAAAAaAAAABoAAAFoAAAAaAAAABoAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAUsAAANbAAAAGgAAAxoAAAEaAAACGgAAAmgAAABlAAACZQAAAGUAAAFoAAAAaAAAAGgAAABoAAAAWwAAAlsAAABbAAABWwAAAWgAAAAaAAAAGgAAAhoAAABoAAAAZQAAAGUAAANlAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: YAAAAlcAAAJHAAADVwAAAGQAAABHAAAAVwAAAFcAAAJXAAABRwAAA2QAAAA6AAAAOgAAAjoAAAE6AAAAZAAAAGAAAANXAAAARwAAAVcAAANkAAAAFgAAAVcAAAJXAAACVwAAAUcAAAA6AAABYAAAA2AAAABgAAAAYAAAAWQAAABkAAAAVwAAAUcAAABXAAADZAAAAEcAAABXAAADVwAAAVcAAABHAAAAOgAAAzwAAAA8AAAAPAAAADwAAABkAAAAZAAAAFcAAANHAAABVwAAA2QAAAAWAAACRwAAAUcAAAFHAAADRwAAAWQAAAA8AAAAPAAAADwAAAA8AAAAZAAAAGQAAABXAAAARwAAAlcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAA0cAAAFXAAACZAAAAEcAAABHAAABRwAAAEcAAAJkAAAAFgAAARYAAAJkAAAAUwAAAFMAAABkAAAAVwAAAVcAAANHAAADVwAAAkcAAABHAAACRwAAAUcAAABHAAADUwAAABYAAAAWAAACZAAAAGQAAABkAAAAZAAAAGQAAABXAAAARwAAAVcAAAJkAAAARwAAA0cAAABHAAADRwAAAGQAAAAWAAAAFgAAAGQAAABTAAAAUwAAAGQAAABkAAAAYAAAAjoAAAJgAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAAFHAAACVwAAA2QAAABHAAADRwAAAkcAAAMWAAACFgAAABYAAAFkAAAAZAAAAA4AAAAOAAAAZAAAAFcAAABXAAABRwAAAVcAAAFHAAADRwAAAEcAAAJHAAADFgAAARYAAAEWAAADZAAAAGQAAABkAAAADgAAAGQAAABkAAAAVwAAAkcAAAFXAAADZAAAAEcAAANHAAACRwAAAhYAAAEWAAADFgAAAWQAAABkAAAADgAAAA4AAABkAAAAZAAAAFcAAABHAAAAVwAAAGQAAAAWAAAARwAAAUcAAAMWAAADFgAAAxYAAANkAAAAZAAAAGQAAABkAAAAZAAAAFcAAAFXAAACRwAAA1cAAABkAAAAZAAAABYAAAFkAAAAZAAAABYAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAUcAAANXAAAAFgAAAxYAAAEWAAACFgAAAmQAAABhAAACYQAAAGEAAAFkAAAAZAAAAGQAAABkAAAAVwAAAlcAAABXAAABVwAAAWQAAAAWAAAAFgAAAhYAAABkAAAAYQAAAGEAAANhAAAAZAAAAGQAAABkAAAAZAAAAA== 1,4: ind: 1,4 - tiles: aAAAAFsAAABbAAAAWwAAAmgAAABoAAAAaAAAAGgAAABoAAAAGgAAARoAAAAaAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAABLAAABaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAJLAAABSwAAAWgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAksAAAJoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAADAAABwoAAAALAAADCwAAAwoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAMAAAECgAAAAsAAAMKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAMAAAECgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAFcAAABXAAAAVwAAAmQAAABkAAAAZAAAAGQAAABkAAAAFgAAARYAAAAWAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAABHAAABZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAAJHAAABRwAAAWQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAkcAAAJkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAABwYAAAAGAAADBgAAAwYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAYAAAAGAAAEBgAAAAYAAAMGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAEBgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,2: ind: 2,2 - tiles: SwAAA0sAAAFLAAACSwAAA1cAAABLAAAASwAAAksAAANLAAACSwAAAksAAANLAAADSwAAA0sAAANLAAAASwAAAUsAAAFLAAABSwAAA0sAAAJXAAAASwAAAUsAAANLAAACSwAAAEsAAANLAAACSwAAAEsAAABLAAACSwAAA0sAAABLAAADSwAAAUsAAAJLAAADVwAAAEsAAANLAAABSwAAAEsAAANLAAACSwAAAksAAABLAAACSwAAAksAAAJLAAACGgAAARoAAAIaAAADGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAhoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAaAAAABoAAANoAAAAWAAAABoAAAAaAAADaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGgAAAAaAAACaAAAAGgAAAAaAAADGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABoAAAAGgAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABlAAAAZQAAAzcAAAA3AAAANwAAAGgAAAAaAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAZQAAAmUAAAE3AAAANwAAADcAAABoAAAAaAAAAFsAAAFbAAAAWwAAA1sAAAFbAAADaAAAAGgAAABoAAAAaAAAAGUAAABlAAAANwAAADcAAAA3AAAAaAAAAFcAAABbAAABWwAAAVsAAANbAAAAWwAAAGgAAABoAAAAVwAAAGgAAABlAAADZQAAA2UAAAFlAAADZQAAAmgAAAAaAAADWwAAAFsAAABbAAAAWwAAA1sAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGUAAANlAAABZQAAAWgAAABoAAAAVwAAAFsAAAFbAAADWwAAAlsAAAFbAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAACWwAAAVsAAABbAAAAWwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAANoAAAAWwAAAmgAAABoAAAAaAAAAFAAAABoAAAAaAAAAFAAAABoAAAASwAAAmgAAABoAAAAaAAAAA== + tiles: RwAAA0cAAAFHAAACRwAAA1MAAABHAAAARwAAAkcAAANHAAACRwAAAkcAAANHAAADRwAAA0cAAANHAAAARwAAAUcAAAFHAAABRwAAA0cAAAJTAAAARwAAAUcAAANHAAACRwAAAEcAAANHAAACRwAAAEcAAABHAAACRwAAA0cAAABHAAADRwAAAUcAAAJHAAADUwAAAEcAAANHAAABRwAAAEcAAANHAAACRwAAAkcAAABHAAACRwAAAkcAAAJHAAACFgAAARYAAAIWAAADFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAhYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAZAAAABYAAANkAAAAVAAAABYAAAAWAAADZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGQAAAAWAAACZAAAAGQAAAAWAAADFgAAAWQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABkAAAAFgAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABhAAAAYQAAAzMAAAAzAAAAMwAAAGQAAAAWAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAYQAAAmEAAAEzAAAAMwAAADMAAABkAAAAZAAAAFcAAAFXAAAAVwAAA1cAAAFXAAADZAAAAGQAAABkAAAAZAAAAGEAAABhAAAAMwAAADMAAAAzAAAAZAAAAFMAAABXAAABVwAAAVcAAANXAAAAVwAAAGQAAABkAAAAUwAAAGQAAABhAAADYQAAA2EAAAFhAAADYQAAAmQAAAAWAAADVwAAAFcAAABXAAAAVwAAA1cAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGEAAANhAAABYQAAAWQAAABkAAAAUwAAAFcAAAFXAAADVwAAAlcAAAFXAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAACVwAAAVcAAABXAAAAVwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAANkAAAAVwAAAmQAAABkAAAAZAAAAEwAAABkAAAAZAAAAEwAAABkAAAARwAAAmQAAABkAAAAZAAAAA== 3,-1: ind: 3,-1 - tiles: WwAAA2gAAAAaAAABWwAAAlsAAAJbAAACWwAAAFsAAAMaAAADaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAGgAAAlsAAAFoAAAAGgAAAhoAAAIaAAABGgAAARoAAAIaAAAAGgAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAEaAAABGgAAARoAAAMaAAAAaAAAABoAAAIaAAAAGgAAAhoAAAJoAAAASwAAAUsAAAFLAAAASwAAAUsAAANLAAAASwAAAUsAAAFLAAABSwAAAFcAAABLAAACSwAAA0sAAAFLAAADVwAAAEsAAAJLAAADSwAAA0sAAABLAAAASwAAA0sAAANLAAAASwAAAksAAANXAAAASwAAAksAAAFLAAAASwAAAlcAAABLAAAASwAAA0sAAAFLAAABSwAAAUsAAANLAAABSwAAA0sAAAFLAAADVwAAAEsAAANLAAACSwAAAksAAAFXAAAASwAAAGgAAABoAAAAGgAAAGgAAABoAAAAaAAAAEsAAAFLAAABSwAAAWgAAABoAAAAaAAAAFcAAABoAAAAaAAAAEsAAAJlAAABZQAAAGUAAANlAAADZQAAAWgAAABLAAAASwAAA0sAAAJoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAGgAAARoAAAFlAAAAZQAAAmUAAAFoAAAASwAAAksAAAFLAAACaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAABoAAAIaAAADZQAAAWUAAAFlAAABaAAAAEsAAANLAAABSwAAAmgAAAAaAAABGgAAARoAAAEaAAACGgAAAGgAAABlAAABZQAAAmUAAAJlAAAAZQAAAGgAAABLAAAASwAAA0sAAABoAAAAGgAAAxoAAAEaAAAAGgAAAxoAAAJoAAAAaAAAAGgAAAAaAAACaAAAAGgAAABoAAAASwAAAUsAAAJLAAADaAAAABoAAAIaAAADGgAAAhoAAAMaAAACaAAAAEsAAANLAAABSwAAA0sAAABLAAADSwAAA0sAAANLAAABSwAAAGgAAAAaAAABGgAAAxoAAAIaAAACGgAAAmgAAABLAAACSwAAA0sAAAJLAAADSwAAAksAAABLAAAASwAAAUsAAANoAAAAGgAAAhoAAAIaAAABGgAAAhoAAAJoAAAASwAAAUsAAABLAAAASwAAAUsAAAFLAAABSwAAAUsAAABLAAADaAAAABoAAAIaAAAAGgAAAxoAAAMaAAADaAAAAA== + tiles: VwAAA2QAAAAWAAABVwAAAlcAAAJXAAACVwAAAFcAAAMWAAADZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAFgAAAlcAAAFkAAAAFgAAAhYAAAIWAAABFgAAARYAAAIWAAAAFgAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAABYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAEWAAABFgAAARYAAAMWAAAAZAAAABYAAAIWAAAAFgAAAhYAAAJkAAAARwAAAUcAAAFHAAAARwAAAUcAAANHAAAARwAAAUcAAAFHAAABRwAAAFMAAABHAAACRwAAA0cAAAFHAAADUwAAAEcAAAJHAAADRwAAA0cAAABHAAAARwAAA0cAAANHAAAARwAAAkcAAANTAAAARwAAAkcAAAFHAAAARwAAAlMAAABHAAAARwAAA0cAAAFHAAABRwAAAUcAAANHAAABRwAAA0cAAAFHAAADUwAAAEcAAANHAAACRwAAAkcAAAFTAAAARwAAAGQAAABkAAAAFgAAAGQAAABkAAAAZAAAAEcAAAFHAAABRwAAAWQAAABkAAAAZAAAAFMAAABkAAAAZAAAAEcAAAJhAAABYQAAAGEAAANhAAADYQAAAWQAAABHAAAARwAAA0cAAAJkAAAAZAAAAFMAAABTAAAAUwAAAGQAAABkAAAAFgAAARYAAAFhAAAAYQAAAmEAAAFkAAAARwAAAkcAAAFHAAACZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAABYAAAIWAAADYQAAAWEAAAFhAAABZAAAAEcAAANHAAABRwAAAmQAAAAWAAABFgAAARYAAAEWAAACFgAAAGQAAABhAAABYQAAAmEAAAJhAAAAYQAAAGQAAABHAAAARwAAA0cAAABkAAAAFgAAAxYAAAEWAAAAFgAAAxYAAAJkAAAAZAAAAGQAAAAWAAACZAAAAGQAAABkAAAARwAAAUcAAAJHAAADZAAAABYAAAIWAAADFgAAAhYAAAMWAAACZAAAAEcAAANHAAABRwAAA0cAAABHAAADRwAAA0cAAANHAAABRwAAAGQAAAAWAAABFgAAAxYAAAIWAAACFgAAAmQAAABHAAACRwAAA0cAAAJHAAADRwAAAkcAAABHAAAARwAAAUcAAANkAAAAFgAAAhYAAAIWAAABFgAAAhYAAAJkAAAARwAAAUcAAABHAAAARwAAAUcAAAFHAAABRwAAAUcAAABHAAADZAAAABYAAAIWAAAAFgAAAxYAAAMWAAADZAAAAA== 3,0: ind: 3,0 - tiles: aAAAAGgAAAAaAAAAGgAAAmgAAABoAAAASwAAAEsAAAJLAAABaAAAAGgAAABoAAAAGgAAAmgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAGgAAARoAAAAaAAAAaAAAAGgAAABXAAAAaAAAACwAAAAsAAAAaAAAAGgAAABLAAACSwAAAUsAAAFoAAAAaAAAABoAAAAaAAACGgAAAGgAAABoAAAAaAAAAGgAAAAaAAADGgAAAmgAAABoAAAAVgAAAlYAAABWAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABGgAAARoAAABoAAAAaAAAAFYAAAJWAAAAVgAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAIaAAABGgAAAhoAAAFWAAAAVgAAAVYAAAAsAAAASwAAAksAAABLAAAAaAAAABoAAAIaAAABaAAAABoAAAAaAAADGgAAAWgAAAAaAAAAVgAAAFYAAABWAAADLAAAAEsAAABLAAAASwAAAGgAAAAaAAACGgAAAmgAAAAsAAAASwAAAxoAAAFoAAAAGgAAAVYAAABWAAACVgAAAWgAAABoAAAASwAAAmgAAABoAAAAGgAAA0sAAAFoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABLAAABSwAAA0sAAAJoAAAASwAAAEsAAABLAAACSwAAAEsAAABLAAADGgAAARoAAAIaAAABGgAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAEsAAAJLAAACSwAAAksAAAFLAAAASwAAARoAAAEaAAACGgAAABoAAAFoAAAAaAAAAEsAAABLAAABSwAAAlcAAABLAAAASwAAAUsAAAJLAAAASwAAAksAAAMaAAAAGgAAAxoAAAAaAAAAaAAAAGgAAABLAAADSwAAAEsAAAJoAAAASwAAAEsAAAFLAAAASwAAAEsAAAFLAAACaAAAAGgAAABXAAAAaAAAAGgAAABoAAAASwAAAksAAANLAAAAVwAAAEsAAANLAAADSwAAA0sAAAJLAAAASwAAAxoAAANoAAAAGgAAABoAAANoAAAAaAAAAEsAAAJLAAAASwAAAWgAAABoAAAAaAAAAGgAAAAaAAADaAAAAGgAAAAaAAABaAAAABoAAAMaAAABaAAAAGgAAABLAAAASwAAAUsAAABoAAAAEQAAABEAAAApAAAAKQAAACkAAABoAAAAGgAAAGgAAAAaAAABGgAAA2gAAABoAAAASwAAAksAAAJLAAADaAAAAGgAAABoAAAAKQAAACkAAAApAAAAaAAAAA== + tiles: ZAAAAGQAAAAWAAAAFgAAAmQAAABkAAAARwAAAEcAAAJHAAABZAAAAGQAAABkAAAAFgAAAmQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAGQAAABkAAAAFgAAARYAAAAWAAAAZAAAAGQAAABTAAAAZAAAACgAAAAoAAAAZAAAAGQAAABHAAACRwAAAUcAAAFkAAAAZAAAABYAAAAWAAACFgAAAGQAAABkAAAAZAAAAGQAAAAWAAADFgAAAmQAAABkAAAAUgAAAlIAAABSAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAABFgAAARYAAABkAAAAZAAAAFIAAAJSAAAAUgAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAABYAAAIWAAABFgAAAhYAAAFSAAAAUgAAAVIAAAAoAAAARwAAAkcAAABHAAAAZAAAABYAAAIWAAABZAAAABYAAAAWAAADFgAAAWQAAAAWAAAAUgAAAFIAAABSAAADKAAAAEcAAABHAAAARwAAAGQAAAAWAAACFgAAAmQAAAAoAAAARwAAAxYAAAFkAAAAFgAAAVIAAABSAAACUgAAAWQAAABkAAAARwAAAmQAAABkAAAAFgAAA0cAAAFkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABHAAABRwAAA0cAAAJkAAAARwAAAEcAAABHAAACRwAAAEcAAABHAAADFgAAARYAAAIWAAABFgAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAEcAAAJHAAACRwAAAkcAAAFHAAAARwAAARYAAAEWAAACFgAAABYAAAFkAAAAZAAAAEcAAABHAAABRwAAAlMAAABHAAAARwAAAUcAAAJHAAAARwAAAkcAAAMWAAAAFgAAAxYAAAAWAAAAZAAAAGQAAABHAAADRwAAAEcAAAJkAAAARwAAAEcAAAFHAAAARwAAAEcAAAFHAAACZAAAAGQAAABTAAAAZAAAAGQAAABkAAAARwAAAkcAAANHAAAAUwAAAEcAAANHAAADRwAAA0cAAAJHAAAARwAAAxYAAANkAAAAFgAAABYAAANkAAAAZAAAAEcAAAJHAAAARwAAAWQAAABkAAAAZAAAAGQAAAAWAAADZAAAAGQAAAAWAAABZAAAABYAAAMWAAABZAAAAGQAAABHAAAARwAAAUcAAABkAAAADQAAAA0AAAAlAAAAJQAAACUAAABkAAAAFgAAAGQAAAAWAAABFgAAA2QAAABkAAAARwAAAkcAAAJHAAADZAAAAGQAAABkAAAAJQAAACUAAAAlAAAAZAAAAA== 3,1: ind: 3,1 - tiles: aAAAAGgAAABXAAAAaAAAAGgAAABoAAAASwAAAEsAAAFLAAAAaAAAABEAAAARAAAAKQAAACkAAAApAAAAaAAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAEsAAAJLAAACSwAAA2gAAABoAAAAaAAAACkAAAApAAAAKQAAAGgAAAAaAAABVwAAAFcAAABXAAAAaAAAAGgAAABLAAAASwAAAksAAAFoAAAAEQAAABEAAAApAAAAKQAAACkAAAApAAAAGgAAAFcAAABXAAAAVwAAAGgAAABoAAAASwAAAUsAAAJLAAACaAAAAGgAAABoAAAAaAAAACkAAAApAAAAaAAAABoAAABXAAAAVwAAAFcAAABoAAAAGgAAAEsAAAFLAAABSwAAABoAAABoAAAASwAAAWgAAABYAAAAaAAAAGgAAAAaAAABVwAAAFcAAABXAAAAaAAAABoAAAFLAAABSwAAAksAAAEaAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAIaAAABGgAAA2gAAAAaAAAASwAAA0sAAAJLAAABaAAAAGgAAABLAAAAaAAAAGgAAABoAAAASwAAABoAAAEaAAADGgAAABoAAANoAAAAGgAAAEsAAAFLAAADSwAAA2gAAABQAAAAaAAAAEsAAANoAAAAaAAAAGgAAAAaAAADGgAAAxoAAAEaAAACaAAAABoAAAFLAAABSwAAAksAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAABSwAAAGgAAAAaAAABPgAAAhoAAANoAAAAZQAAAmUAAAIpAAAAKQAAACkAAAApAAAAaAAAAGgAAABLAAABSwAAA0sAAANoAAAAGgAAAz4AAAAaAAABaAAAAGUAAABlAAACVwAAAGgAAAApAAAAKQAAAGgAAABoAAAASwAAAEsAAANLAAACVwAAAD4AAAE+AAACGgAAAmgAAABlAAADZQAAAykAAABoAAAAZAAAAWQAAAFoAAAAaAAAAEsAAANLAAABSwAAAmgAAAAaAAADPgAAARoAAAJoAAAAGgAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAUsAAABoAAAAGgAAAz4AAAM+AAACSwAAAxoAAAIaAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAANLAAABaAAAABoAAAA+AAAAGgAAAmgAAAAaAAAAGgAAAQ== + tiles: ZAAAAGQAAABTAAAAZAAAAGQAAABkAAAARwAAAEcAAAFHAAAAZAAAAA0AAAANAAAAJQAAACUAAAAlAAAAZAAAAFMAAABTAAAAUwAAAFMAAABkAAAAZAAAAEcAAAJHAAACRwAAA2QAAABkAAAAZAAAACUAAAAlAAAAJQAAAGQAAAAWAAABUwAAAFMAAABTAAAAZAAAAGQAAABHAAAARwAAAkcAAAFkAAAADQAAAA0AAAAlAAAAJQAAACUAAAAlAAAAFgAAAFMAAABTAAAAUwAAAGQAAABkAAAARwAAAUcAAAJHAAACZAAAAGQAAABkAAAAZAAAACUAAAAlAAAAZAAAABYAAABTAAAAUwAAAFMAAABkAAAAFgAAAEcAAAFHAAABRwAAABYAAABkAAAARwAAAWQAAABUAAAAZAAAAGQAAAAWAAABUwAAAFMAAABTAAAAZAAAABYAAAFHAAABRwAAAkcAAAEWAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAABYAAAIWAAABFgAAA2QAAAAWAAAARwAAA0cAAAJHAAABZAAAAGQAAABHAAAAZAAAAGQAAABkAAAARwAAABYAAAEWAAADFgAAABYAAANkAAAAFgAAAEcAAAFHAAADRwAAA2QAAABMAAAAZAAAAEcAAANkAAAAZAAAAGQAAAAWAAADFgAAAxYAAAEWAAACZAAAABYAAAFHAAABRwAAAkcAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAUwAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAABRwAAAGQAAAAWAAABOgAAAhYAAANkAAAAYQAAAmEAAAIlAAAAJQAAACUAAAAlAAAAZAAAAGQAAABHAAABRwAAA0cAAANkAAAAFgAAAzoAAAAWAAABZAAAAGEAAABhAAACUwAAAGQAAAAlAAAAJQAAAGQAAABkAAAARwAAAEcAAANHAAACUwAAADoAAAE6AAACFgAAAmQAAABhAAADYQAAAyUAAABkAAAAYAAAAWAAAAFkAAAAZAAAAEcAAANHAAABRwAAAmQAAAAWAAADOgAAARYAAAJkAAAAFgAAABYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAUcAAABkAAAAFgAAAzoAAAM6AAACRwAAAxYAAAIWAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAANHAAABZAAAABYAAAA6AAAAFgAAAmQAAAAWAAAAFgAAAQ== 3,2: ind: 3,2 - tiles: SwAAA0sAAAFLAAAASwAAA0sAAAJXAAAASwAAAUsAAABLAAAAVwAAAD4AAAA+AAAAGgAAAmgAAABlAAABZQAAAksAAANLAAAASwAAAEsAAANLAAAAVwAAAEsAAANLAAACSwAAAmgAAAAaAAAAPgAAAxoAAABoAAAAZQAAAmUAAABLAAACSwAAAksAAAFLAAADSwAAAFcAAABLAAABSwAAAUsAAABoAAAAGgAAAD4AAAEaAAADaAAAAGUAAANlAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACGgAAABoAAAMaAAADGgAAAhoAAAEaAAACaAAAAEsAAAFLAAABSwAAAmgAAABLAAADSwAAA0sAAAJoAAAAGgAAARoAAAJLAAADSwAAAUsAAABLAAAAGgAAAmgAAABLAAAASwAAA0sAAAFoAAAASwAAA0sAAAJLAAABaAAAAGgAAABoAAAASwAAAUsAAAJLAAACSwAAAhoAAANoAAAASwAAAksAAANLAAABSwAAAksAAAFLAAAASwAAAUsAAAFLAAACSwAAAksAAANLAAADSwAAAEsAAAEaAAAAGgAAAksAAAFLAAADSwAAAEsAAABLAAACSwAAAEsAAAFLAAABSwAAAEsAAAAaAAABGgAAAhoAAAMaAAADGgAAAGgAAABLAAADSwAAAksAAANLAAADSwAAAEsAAAJLAAACSwAAAUsAAANLAAACaAAAAGgAAAAaAAACaAAAAGgAAABoAAAAGgAAAhoAAANoAAAASwAAAUsAAAJoAAAAaAAAAGgAAABLAAADSwAAA1cAAABXAAAAGgAAAFcAAABXAAAAaAAAABoAAAIaAAACGgAAARoAAAMaAAACGgAAAxoAAAIaAAAAGgAAARoAAAIaAAABGgAAAhoAAAEaAAABGgAAAmgAAAAaAAACGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAAAaAAABVwAAAFcAAABoAAAAaAAAAFgAAABoAAAAZQAAA2UAAAJlAAACZQAAA2UAAABlAAABZQAAA2gAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAAFlAAABKgAAASoAAAEqAAABKgAAAioAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAADZQAAACoAAAMqAAADKgAAACoAAAAqAAACaAAAAGgAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAGUAAAEqAAAAKgAAACoAAAAqAAABKgAAAg== + tiles: RwAAA0cAAAFHAAAARwAAA0cAAAJTAAAARwAAAUcAAABHAAAAUwAAADoAAAA6AAAAFgAAAmQAAABhAAABYQAAAkcAAANHAAAARwAAAEcAAANHAAAAUwAAAEcAAANHAAACRwAAAmQAAAAWAAAAOgAAAxYAAABkAAAAYQAAAmEAAABHAAACRwAAAkcAAAFHAAADRwAAAFMAAABHAAABRwAAAUcAAABkAAAAFgAAADoAAAEWAAADZAAAAGEAAANhAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACFgAAABYAAAMWAAADFgAAAhYAAAEWAAACZAAAAEcAAAFHAAABRwAAAmQAAABHAAADRwAAA0cAAAJkAAAAFgAAARYAAAJHAAADRwAAAUcAAABHAAAAFgAAAmQAAABHAAAARwAAA0cAAAFkAAAARwAAA0cAAAJHAAABZAAAAGQAAABkAAAARwAAAUcAAAJHAAACRwAAAhYAAANkAAAARwAAAkcAAANHAAABRwAAAkcAAAFHAAAARwAAAUcAAAFHAAACRwAAAkcAAANHAAADRwAAAEcAAAEWAAAAFgAAAkcAAAFHAAADRwAAAEcAAABHAAACRwAAAEcAAAFHAAABRwAAAEcAAAAWAAABFgAAAhYAAAMWAAADFgAAAGQAAABHAAADRwAAAkcAAANHAAADRwAAAEcAAAJHAAACRwAAAUcAAANHAAACZAAAAGQAAAAWAAACZAAAAGQAAABkAAAAFgAAAhYAAANkAAAARwAAAUcAAAJkAAAAZAAAAGQAAABHAAADRwAAA1MAAABTAAAAFgAAAFMAAABTAAAAZAAAABYAAAIWAAACFgAAARYAAAMWAAACFgAAAxYAAAIWAAAAFgAAARYAAAIWAAABFgAAAhYAAAEWAAABFgAAAmQAAAAWAAACFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAAAWAAABUwAAAFMAAABkAAAAZAAAAFQAAABkAAAAYQAAA2EAAAJhAAACYQAAA2EAAABhAAABYQAAA2QAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAAFhAAABJgAAASYAAAEmAAABJgAAAiYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAADYQAAACYAAAMmAAADJgAAACYAAAAmAAACZAAAAGQAAABMAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAAGEAAAEmAAAAJgAAACYAAAAmAAABJgAAAg== 2,-2: ind: 2,-2 - tiles: VwAAAGgAAABCAAAAQgAAAGgAAABLAAADWwAAAEsAAAJoAAAAaAAAAEAAAABAAAAAQAAAAGgAAABoAAAASwAAATAAAAAaAAAAQgAAAEIAAAAaAAACSwAAAFsAAAJLAAABaAAAAGgAAABAAAAAQAAAAEAAAABoAAAAaAAAAEsAAAEwAAAAaAAAAEIAAABCAAAAaAAAAEsAAAJbAAABSwAAA2gAAABoAAAAQAAAAEAAAABAAAAAaAAAAGgAAABLAAABVwAAAGgAAABCAAAAQgAAAGgAAAA+AAABZAAAAD4AAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAPgAAAWgAAABoAAAAaAAAAGgAAABoAAAASwAAA1sAAANLAAADSwAAA0sAAAJLAAADSwAAAEsAAABLAAAASwAAA0sAAAFkAAAAZAAAAGQAAAJkAAADaAAAAEsAAAFbAAACWwAAAVsAAABbAAADWwAAAlsAAABbAAABWwAAAVsAAAFbAAABZAAAAWQAAAJkAAADZAAAAmgAAABLAAABSwAAAksAAAFLAAACSwAAAEsAAAFLAAADSwAAA0sAAABLAAAASwAAAWgAAABXAAAAVwAAAFcAAABoAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAASwAAAmgAAABLAAABaAAAAEsAAAJLAAAASwAAAksAAANLAAACSwAAAksAAANLAAABGgAAAGgAAABLAAABSwAAAUsAAABoAAAAPgAAAj4AAAA+AAABSwAAAksAAABLAAAASwAAAEsAAAFLAAAASwAAA0sAAAFoAAAASwAAAxoAAAJLAAABaAAAAD4AAAM+AAADPgAAA0sAAAJXAAAAVwAAAFcAAABXAAAAVwAAAEsAAAJLAAAAaAAAAEsAAAEaAAADSwAAA2gAAAA+AAADPgAAAD4AAABLAAADSwAAA0sAAABLAAAASwAAAksAAAJLAAAASwAAAmgAAABLAAAASwAAAEsAAABoAAAASwAAA2gAAABLAAABSwAAA0sAAABLAAAASwAAAksAAAJLAAADSwAAA0sAAAFoAAAAaAAAAEsAAAFoAAAAaAAAAEsAAAFLAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAACwAAABLAAADLAAAAGgAAABbAAADWwAAAlsAAANLAAADSwAAAUsAAANXAAAAWwAAAlsAAAFbAAAAWwAAAlsAAANbAAABWwAAA1sAAAFbAAADWwAAAlsAAANbAAAASwAAAEsAAANLAAABVwAAAFsAAABbAAAAWwAAAlsAAABbAAAAWwAAAlsAAAJbAAADWwAAAVsAAAJbAAADWwAAAw== + tiles: UwAAAGQAAAA+AAAAPgAAAGQAAABHAAADVwAAAEcAAAJkAAAAZAAAADwAAAA8AAAAPAAAAGQAAABkAAAARwAAASwAAAAWAAAAPgAAAD4AAAAWAAACRwAAAFcAAAJHAAABZAAAAGQAAAA8AAAAPAAAADwAAABkAAAAZAAAAEcAAAEsAAAAZAAAAD4AAAA+AAAAZAAAAEcAAAJXAAABRwAAA2QAAABkAAAAPAAAADwAAAA8AAAAZAAAAGQAAABHAAABUwAAAGQAAAA+AAAAPgAAAGQAAAA6AAABYAAAADoAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAOgAAAWQAAABkAAAAZAAAAGQAAABkAAAARwAAA1cAAANHAAADRwAAA0cAAAJHAAADRwAAAEcAAABHAAAARwAAA0cAAAFgAAAAYAAAAGAAAAJgAAADZAAAAEcAAAFXAAACVwAAAVcAAABXAAADVwAAAlcAAABXAAABVwAAAVcAAAFXAAABYAAAAWAAAAJgAAADYAAAAmQAAABHAAABRwAAAkcAAAFHAAACRwAAAEcAAAFHAAADRwAAA0cAAABHAAAARwAAAWQAAABTAAAAUwAAAFMAAABkAAAAZAAAAEcAAAJkAAAAZAAAAGQAAABkAAAARwAAAmQAAABHAAABZAAAAEcAAAJHAAAARwAAAkcAAANHAAACRwAAAkcAAANHAAABFgAAAGQAAABHAAABRwAAAUcAAABkAAAAOgAAAjoAAAA6AAABRwAAAkcAAABHAAAARwAAAEcAAAFHAAAARwAAA0cAAAFkAAAARwAAAxYAAAJHAAABZAAAADoAAAM6AAADOgAAA0cAAAJTAAAAUwAAAFMAAABTAAAAUwAAAEcAAAJHAAAAZAAAAEcAAAEWAAADRwAAA2QAAAA6AAADOgAAADoAAABHAAADRwAAA0cAAABHAAAARwAAAkcAAAJHAAAARwAAAmQAAABHAAAARwAAAEcAAABkAAAARwAAA2QAAABHAAABRwAAA0cAAABHAAAARwAAAkcAAAJHAAADRwAAA0cAAAFkAAAAZAAAAEcAAAFkAAAAZAAAAEcAAAFHAAAARwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAACgAAABHAAADKAAAAGQAAABXAAADVwAAAlcAAANHAAADRwAAAUcAAANTAAAAVwAAAlcAAAFXAAAAVwAAAlcAAANXAAABVwAAA1cAAAFXAAADVwAAAlcAAANXAAAARwAAAEcAAANHAAABUwAAAFcAAABXAAAAVwAAAlcAAABXAAAAVwAAAlcAAAJXAAADVwAAAVcAAAJXAAADVwAAAw== 3,-2: ind: 3,-2 - tiles: WwAAAEsAAAFoAAAAVwAAAFcAAABXAAAASwAAAUsAAAFLAAABSwAAARoAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAAFLAAAAaAAAAFcAAABXAAAAVwAAAEsAAANLAAACSwAAAEsAAANLAAAAaAAAAEAAAABAAAAAQAAAAGgAAABbAAACSwAAA2gAAABXAAAAVwAAAFcAAAAaAAAAQAAAAEsAAAJLAAACSwAAAGgAAABAAAAAQAAAAEAAAABoAAAAZAAAAT4AAAJoAAAAaAAAABoAAAFoAAAAaAAAAEsAAAJLAAACSwAAA0sAAAJoAAAAaAAAAEAAAABoAAAAaAAAAFsAAANLAAACSwAAA0sAAAFLAAAAGgAAA2gAAABLAAACSwAAAUsAAAJLAAACaAAAAEAAAABAAAAAQAAAAGgAAABbAAAAWwAAAFsAAAFbAAAAWwAAAUsAAABoAAAAQAAAAEAAAABLAAACSwAAAVcAAABAAAAAQAAAAEAAAABoAAAASwAAAEsAAANLAAACLAAAAFsAAAJLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAASwAAABbAAACSwAAAmgAAABXAAAAVwAAAGgAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABLAAADaAAAAEsAAAEsAAAAWwAAAEsAAAFXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA2gAAABLAAABSwAAAksAAAFLAAAAaAAAAFcAAABXAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAGgAAAUsAAAFoAAAAaAAAABoAAAAaAAADGgAAARoAAAEaAAABGgAAAxoAAABoAAAAVwAAAGgAAABoAAAAaAAAABoAAAFLAAADaAAAAGgAAAAaAAAAWwAAAVsAAAJbAAADWwAAAlsAAAEaAAADaAAAAFcAAABoAAAAaAAAAGgAAAAaAAAASwAAABoAAAJoAAAAGgAAAFsAAAJbAAACWwAAAVsAAAFbAAACGgAAAmgAAABXAAAAaAAAAGgAAABoAAAAGgAAAEsAAAFbAAABaAAAABoAAABbAAADSwAAA0sAAAFLAAABWwAAABoAAABoAAAAVwAAAGgAAABoAAAAaAAAABoAAAIaAAADWwAAA2gAAAAaAAADWwAAAUsAAABLAAACSwAAA1sAAAMaAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAGgAAAQ== + tiles: VwAAAEcAAAFkAAAAUwAAAFMAAABTAAAARwAAAUcAAAFHAAABRwAAARYAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAAFHAAAAZAAAAFMAAABTAAAAUwAAAEcAAANHAAACRwAAAEcAAANHAAAAZAAAADwAAAA8AAAAPAAAAGQAAABXAAACRwAAA2QAAABTAAAAUwAAAFMAAAAWAAAAPAAAAEcAAAJHAAACRwAAAGQAAAA8AAAAPAAAADwAAABkAAAAYAAAAToAAAJkAAAAZAAAABYAAAFkAAAAZAAAAEcAAAJHAAACRwAAA0cAAAJkAAAAZAAAADwAAABkAAAAZAAAAFcAAANHAAACRwAAA0cAAAFHAAAAFgAAA2QAAABHAAACRwAAAUcAAAJHAAACZAAAADwAAAA8AAAAPAAAAGQAAABXAAAAVwAAAFcAAAFXAAAAVwAAAUcAAABkAAAAPAAAADwAAABHAAACRwAAAVMAAAA8AAAAPAAAADwAAABkAAAARwAAAEcAAANHAAACKAAAAFcAAAJHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAASgAAABXAAACRwAAAmQAAABTAAAAUwAAAGQAAABTAAAAUwAAAFMAAABTAAAAZAAAAGQAAABHAAADZAAAAEcAAAEoAAAAVwAAAEcAAAFTAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA2QAAABHAAABRwAAAkcAAAFHAAAAZAAAAFMAAABTAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAABkAAAAZAAAAGQAAABHAAABZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAFgAAAUcAAAFkAAAAZAAAABYAAAAWAAADFgAAARYAAAEWAAABFgAAAxYAAABkAAAAUwAAAGQAAABkAAAAZAAAABYAAAFHAAADZAAAAGQAAAAWAAAAVwAAAVcAAAJXAAADVwAAAlcAAAEWAAADZAAAAFMAAABkAAAAZAAAAGQAAAAWAAAARwAAABYAAAJkAAAAFgAAAFcAAAJXAAACVwAAAVcAAAFXAAACFgAAAmQAAABTAAAAZAAAAGQAAABkAAAAFgAAAEcAAAFXAAABZAAAABYAAABXAAADRwAAA0cAAAFHAAABVwAAABYAAABkAAAAUwAAAGQAAABkAAAAZAAAABYAAAIWAAADVwAAA2QAAAAWAAADVwAAAUcAAABHAAACRwAAA1cAAAMWAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAFgAAAQ== 1,-3: ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAaAAAABoAAAFoAAAAGgAAAGgAAABLAAABSwAAAksAAAJLAAAASwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAGgAAAAaAAACaAAAABoAAAJoAAAASwAAAEsAAAFLAAADSwAAAUsAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAABoAAAAGgAAA2gAAAAaAAAAaAAAAGgAAABoAAAALAAAACwAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAGgAAAwoAAAAKAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAaAAADaAAAABoAAABoAAAAGgAAAxoAAAIaAAADaAAAABoAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAABoAAABoAAAAGgAAAxoAAAIaAAADaAAAABoAAAAaAAACGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGUAAAFoAAAAaAAAAGgAAABoAAAAWwAAAlcAAAAaAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGUAAAJoAAAAaAAAAGgAAABoAAAAaAAAAFsAAANoAAAADwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABbAAABaAAAABoAAABoAAAAaAAAAGgAAABnAAAAZwAAAAoAAABoAAAAZQAAA2UAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAoAAAAKAAAAaAAAAGUAAANoAAAAZQAAA2UAAABoAAAAQAAAAEAAAABAAAAAQAAAAGgAAABoAAAAaAAAAAoAAAAKAAAACgAAAGgAAABoAAAAaAAAAGUAAANoAAAAaAAAAEAAAABAAAAAQAAAAEAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAAFlAAADZQAAAWgAAABAAAAAQAAAAEAAAABAAAAAGgAAARoAAAIaAAABGgAAABoAAAIaAAADaAAAAGgAAABlAAABZQAAAWUAAAJoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAZAAAABYAAAFkAAAAFgAAAGQAAABHAAABRwAAAkcAAAJHAAAARwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAGQAAAAWAAACZAAAABYAAAJkAAAARwAAAEcAAAFHAAADRwAAAUcAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAABkAAAAFgAAA2QAAAAWAAAAZAAAAGQAAABkAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAFgAAAwYAAAAGAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAWAAADZAAAABYAAABkAAAAFgAAAxYAAAIWAAADZAAAABYAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAFgAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAABYAAABkAAAAFgAAAxYAAAIWAAADZAAAABYAAAAWAAACFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGEAAAFkAAAAZAAAAGQAAABkAAAAVwAAAlMAAAAWAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGEAAAJkAAAAZAAAAGQAAABkAAAAZAAAAFcAAANkAAAACwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABXAAABZAAAABYAAABkAAAAZAAAAGQAAABjAAAAYwAAAAYAAABkAAAAYQAAA2EAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAYAAAAGAAAAZAAAAGEAAANkAAAAYQAAA2EAAABkAAAAPAAAADwAAAA8AAAAPAAAAGQAAABkAAAAZAAAAAYAAAAGAAAABgAAAGQAAABkAAAAZAAAAGEAAANkAAAAZAAAADwAAAA8AAAAPAAAADwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAAFhAAADYQAAAWQAAAA8AAAAPAAAADwAAAA8AAAAFgAAARYAAAIWAAABFgAAABYAAAIWAAADZAAAAGQAAABhAAABYQAAAWEAAAJkAAAAZAAAAGQAAABkAAAAZAAAAA== 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAaAAABGgAAAxoAAAMaAAADGgAAAxoAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAVwAAAFcAAABXAAAAGgAAAhoAAAIaAAABGgAAARoAAAEaAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAABoAAAEaAAABGgAAAhoAAAAaAAABGgAAAWgAAABnAAAAZwAAAGcAAABoAAAAAAAAAGgAAABXAAAAVwAAAFcAAAAaAAAAGgAAAxoAAAEaAAACGgAAAxoAAAFoAAAAAAAAAAAAAAAAAAAAaAAAAAAAAABoAAAAaAAAAGgAAABoAAAAGgAAAhoAAAAaAAADGgAAARoAAAAaAAABaAAAAAoAAAAKAAAACgAAAGgAAAAAAAAAaAAAAGgAAABoAAAAaAAAABoAAAEaAAADGgAAARoAAAAaAAAAGgAAA2gAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAZwAAAGgAAAAaAAABGgAAAxoAAAEaAAABGgAAARoAAAFoAAAAGgAAARoAAAMaAAACGgAAAQ== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAWAAABFgAAAxYAAAMWAAADFgAAAxYAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAUwAAAFMAAABTAAAAFgAAAhYAAAIWAAABFgAAARYAAAEWAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAABYAAAEWAAABFgAAAhYAAAAWAAABFgAAAWQAAABjAAAAYwAAAGMAAABkAAAAAAAAAGQAAABTAAAAUwAAAFMAAAAWAAAAFgAAAxYAAAEWAAACFgAAAxYAAAFkAAAAAAAAAAAAAAAAAAAAZAAAAAAAAABkAAAAZAAAAGQAAABkAAAAFgAAAhYAAAAWAAADFgAAARYAAAAWAAABZAAAAAYAAAAGAAAABgAAAGQAAAAAAAAAZAAAAGQAAABkAAAAZAAAABYAAAEWAAADFgAAARYAAAAWAAAAFgAAA2QAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABjAAAAYwAAAGQAAAAWAAABFgAAAxYAAAEWAAABFgAAARYAAAFkAAAAFgAAARYAAAMWAAACFgAAAQ== 2,-3: ind: 2,-3 - tiles: SwAAAWgAAABYAAAAWwAAAEsAAAJLAAACSwAAA1sAAAJYAAAAaAAAAGgAAAAaAAADGgAAAxoAAAFXAAAAGgAAA0sAAAFoAAAAWAAAAFsAAAFbAAACWwAAAFsAAABbAAABWAAAAGgAAAAaAAADaAAAAGgAAABoAAAAVwAAAGgAAAAsAAAAaAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABoAAAAGgAAAGgAAAAaAAACaAAAAFcAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAABoAAAJoAAAAGgAAA2gAAABoAAAAaAAAABoAAANXAAAAGgAAAhoAAABoAAAAGgAAA2gAAAAaAAACGgAAARoAAAIaAAAAaAAAABoAAABoAAAAaAAAAEIAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACaAAAAGgAAABCAAAAGgAAAFcAAAAaAAABGgAAAxoAAAIaAAADaAAAABoAAAEaAAADGgAAAxoAAAJoAAAAaAAAAGgAAABoAAAAQgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEIAAAAaAAAAGgAAARoAAAMaAAABaAAAAEsAAAFLAAADSwAAAWgAAABLAAACSwAAAEsAAAFLAAADGgAAA2gAAABCAAAADwAAAQ8AAAMPAAADDwAAARoAAABLAAABWwAAA0sAAABLAAAASwAAAksAAANLAAADSwAAAxoAAANoAAAAQgAAABoAAAIaAAADGgAAABoAAAFoAAAASwAAA1sAAAFLAAAAaAAAAEsAAANLAAACSwAAAksAAAMaAAABaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABbAAABSwAAAWgAAABoAAAAaAAAAEsAAAFoAAAAaAAAAGgAAABoAAAAQAAAAEAAAABbAAADWwAAA2gAAABLAAAAWwAAAksAAABoAAAAGgAAAhoAAAMaAAADGgAAARoAAANoAAAASwAAA0AAAABAAAAAWwAAA1sAAABLAAABSwAAA1sAAAFLAAADaAAAABoAAAMaAAAAGgAAAxoAAAIaAAADSwAAAEsAAAFAAAAAQAAAAFsAAABbAAAAaAAAAEsAAANbAAACSwAAAWgAAAAaAAABGgAAAxoAAAEaAAADGgAAAGgAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABLAAAAWwAAAksAAABoAAAAGgAAARoAAAEaAAABGgAAAhoAAANoAAAASwAAAw== + tiles: RwAAAWQAAABUAAAAVwAAAEcAAAJHAAACRwAAA1cAAAJUAAAAZAAAAGQAAAAWAAADFgAAAxYAAAFTAAAAFgAAA0cAAAFkAAAAVAAAAFcAAAFXAAACVwAAAFcAAABXAAABVAAAAGQAAAAWAAADZAAAAGQAAABkAAAAUwAAAGQAAAAoAAAAZAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABkAAAAFgAAAGQAAAAWAAACZAAAAFMAAAAWAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAABYAAAJkAAAAFgAAA2QAAABkAAAAZAAAABYAAANTAAAAFgAAAhYAAABkAAAAFgAAA2QAAAAWAAACFgAAARYAAAIWAAAAZAAAABYAAABkAAAAZAAAAD4AAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACZAAAAGQAAAA+AAAAFgAAAFMAAAAWAAABFgAAAxYAAAIWAAADZAAAABYAAAEWAAADFgAAAxYAAAJkAAAAZAAAAGQAAABkAAAAPgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAD4AAAAWAAAAFgAAARYAAAMWAAABZAAAAEcAAAFHAAADRwAAAWQAAABHAAACRwAAAEcAAAFHAAADFgAAA2QAAAA+AAAACwAAAQsAAAMLAAADCwAAARYAAABHAAABVwAAA0cAAABHAAAARwAAAkcAAANHAAADRwAAAxYAAANkAAAAPgAAABYAAAIWAAADFgAAABYAAAFkAAAARwAAA1cAAAFHAAAAZAAAAEcAAANHAAACRwAAAkcAAAMWAAABZAAAABYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABXAAABRwAAAWQAAABkAAAAZAAAAEcAAAFkAAAAZAAAAGQAAABkAAAAPAAAADwAAABXAAADVwAAA2QAAABHAAAAVwAAAkcAAABkAAAAFgAAAhYAAAMWAAADFgAAARYAAANkAAAARwAAAzwAAAA8AAAAVwAAA1cAAABHAAABRwAAA1cAAAFHAAADZAAAABYAAAMWAAAAFgAAAxYAAAIWAAADRwAAAEcAAAE8AAAAPAAAAFcAAABXAAAAZAAAAEcAAANXAAACRwAAAWQAAAAWAAABFgAAAxYAAAEWAAADFgAAAGQAAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAABHAAAAVwAAAkcAAABkAAAAFgAAARYAAAEWAAABFgAAAhYAAANkAAAARwAAAw== 3,-3: ind: 3,-3 - tiles: GgAAABoAAAFoAAAAaAAAAFAAAABoAAAAaAAAAFAAAAAaAAABaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABGgAAAhoAAAEaAAADGgAAARoAAANoAAAAGgAAAhoAAAMaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEIAAABCAAAAQgAAAEIAAAAaAAAAGgAAA2gAAABYAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABCAAAAQgAAAEIAAABCAAAAGgAAABoAAAJoAAAAaAAAAFgAAABoAAAAaAAAAEAAAABAAAAAGgAAARoAAAJoAAAAQgAAAEIAAABCAAAAQgAAABoAAAIaAAADaAAAAFcAAABLAAADSwAAAxoAAAIaAAAAGgAAARoAAAIaAAAAaAAAAEIAAABCAAAAQgAAAGgAAABoAAAAaAAAAGgAAABXAAAASwAAA1cAAABoAAAAQAAAAEAAAABAAAAAGgAAAGgAAAAaAAADQgAAAEIAAABoAAAAZQAAAGUAAABoAAAAVwAAAEsAAAJXAAAAaAAAAEAAAABAAAAAQAAAABoAAANoAAAAQgAAAEIAAABCAAAAGgAAAWUAAAJlAAAAaAAAAFcAAABLAAAAVwAAAGgAAABAAAAAQAAAAEAAAAAaAAADaAAAAEIAAABCAAAAQgAAAGgAAABlAAAAZQAAA2gAAABXAAAASwAAA1cAAABoAAAAQAAAAEAAAABAAAAAGgAAAWgAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAEAAAABAAAAAQAAAABoAAABYAAAASwAAAUsAAANoAAAAVwAAAFcAAABXAAAAVwAAAFcAAABLAAABVwAAAGgAAABAAAAAQAAAAEAAAAAaAAAAaAAAAFsAAAFLAAACaAAAAFcAAABXAAAAVwAAAFcAAABXAAAASwAAA1cAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAAASwAAAksAAAFLAAACSwAAAksAAAFLAAADSwAAAEsAAABLAAACSwAAAGgAAABnAAAAaAAAAGcAAABoAAAAWwAAAEsAAANoAAAAGgAAAhoAAAEaAAABSwAAAUsAAABLAAADSwAAA0sAAANoAAAAZwAAAGcAAABnAAAAaAAAAA== + tiles: FgAAABYAAAFkAAAAZAAAAEwAAABkAAAAZAAAAEwAAAAWAAABZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAABFgAAAhYAAAEWAAADFgAAARYAAANkAAAAFgAAAhYAAAMWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAD4AAAA+AAAAPgAAAD4AAAAWAAAAFgAAA2QAAABUAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAA+AAAAPgAAAD4AAAA+AAAAFgAAABYAAAJkAAAAZAAAAFQAAABkAAAAZAAAADwAAAA8AAAAFgAAARYAAAJkAAAAPgAAAD4AAAA+AAAAPgAAABYAAAIWAAADZAAAAFMAAABHAAADRwAAAxYAAAIWAAAAFgAAARYAAAIWAAAAZAAAAD4AAAA+AAAAPgAAAGQAAABkAAAAZAAAAGQAAABTAAAARwAAA1MAAABkAAAAPAAAADwAAAA8AAAAFgAAAGQAAAAWAAADPgAAAD4AAABkAAAAYQAAAGEAAABkAAAAUwAAAEcAAAJTAAAAZAAAADwAAAA8AAAAPAAAABYAAANkAAAAPgAAAD4AAAA+AAAAFgAAAWEAAAJhAAAAZAAAAFMAAABHAAAAUwAAAGQAAAA8AAAAPAAAADwAAAAWAAADZAAAAD4AAAA+AAAAPgAAAGQAAABhAAAAYQAAA2QAAABTAAAARwAAA1MAAABkAAAAPAAAADwAAAA8AAAAFgAAAWQAAABHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABkAAAAZAAAADwAAAA8AAAAPAAAABYAAABUAAAARwAAAUcAAANkAAAAUwAAAFMAAABTAAAAUwAAAFMAAABHAAABUwAAAGQAAAA8AAAAPAAAADwAAAAWAAAAZAAAAFcAAAFHAAACZAAAAFMAAABTAAAAUwAAAFMAAABTAAAARwAAA1MAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAAARwAAAkcAAAFHAAACRwAAAkcAAAFHAAADRwAAAEcAAABHAAACRwAAAGQAAABjAAAAZAAAAGMAAABkAAAAVwAAAEcAAANkAAAAFgAAAhYAAAEWAAABRwAAAUcAAABHAAADRwAAA0cAAANkAAAAYwAAAGMAAABjAAAAZAAAAA== 4,-1: ind: 4,-1 - tiles: GgAAARoAAABoAAAAQgAAAEIAAABCAAAAVwAAAEsAAAJLAAABSwAAAUsAAAJLAAACSwAAAksAAAFLAAABSwAAABoAAAEaAAADaAAAAEIAAABCAAAAQgAAAGgAAABLAAACSwAAAUsAAAJLAAADSwAAAEsAAANLAAADSwAAAEsAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAASwAAAUsAAABLAAABSwAAAEsAAAFLAAADSwAAAksAAAJLAAACSwAAA0sAAAFLAAACSwAAAUsAAABLAAACaAAAAEsAAABLAAABSwAAAUsAAANLAAADSwAAAksAAABLAAADSwAAAEsAAAJLAAACSwAAAEsAAAJLAAACSwAAAmgAAABoAAAASwAAAGgAAABoAAAASwAAAUsAAANLAAACSwAAA0sAAABLAAABSwAAAUsAAABLAAACSwAAAEsAAAFoAAAASwAAAEsAAAJLAAABaAAAAEsAAAFLAAADSwAAAksAAABLAAADSwAAAUsAAANLAAABSwAAAEsAAAFLAAAASwAAA0sAAABLAAAASwAAAWgAAABLAAACSwAAAUsAAAJLAAADSwAAAksAAANLAAABSwAAAUsAAABLAAABSwAAA2gAAABLAAACSwAAA0sAAABoAAAASwAAAEsAAANLAAACSwAAAEsAAAFoAAAAaAAAAGgAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAA0sAAABLAAAASwAAA2gAAABoAAAAaAAAAGgAAABLAAADaAAAAGgAAABLAAACSwAAAksAAAJLAAACaAAAAEsAAAJLAAADSwAAAksAAAFoAAAAaAAAAEsAAABoAAAASwAAAGgAAABoAAAASwAAAksAAANLAAABaAAAAGgAAABLAAADSwAAAUsAAABLAAABaAAAAGgAAABoAAAASwAAA2gAAABoAAAAaAAAAEsAAANLAAADSwAAAWgAAABoAAAASwAAAksAAAFLAAACSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADGgAAABoAAANoAAAAaAAAAEsAAAFLAAACVwAAAFcAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAGgAAAhoAAAMaAAABaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAAaAAABGgAAABoAAABoAAAASwAAA0sAAABXAAAAVwAAAA== + tiles: FgAAARYAAABkAAAAPgAAAD4AAAA+AAAAUwAAAEcAAAJHAAABRwAAAUcAAAJHAAACRwAAAkcAAAFHAAABRwAAABYAAAEWAAADZAAAAD4AAAA+AAAAPgAAAGQAAABHAAACRwAAAUcAAAJHAAADRwAAAEcAAANHAAADRwAAAEcAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAARwAAAUcAAABHAAABRwAAAEcAAAFHAAADRwAAAkcAAAJHAAACRwAAA0cAAAFHAAACRwAAAUcAAABHAAACZAAAAEcAAABHAAABRwAAAUcAAANHAAADRwAAAkcAAABHAAADRwAAAEcAAAJHAAACRwAAAEcAAAJHAAACRwAAAmQAAABkAAAARwAAAGQAAABkAAAARwAAAUcAAANHAAACRwAAA0cAAABHAAABRwAAAUcAAABHAAACRwAAAEcAAAFkAAAARwAAAEcAAAJHAAABZAAAAEcAAAFHAAADRwAAAkcAAABHAAADRwAAAUcAAANHAAABRwAAAEcAAAFHAAAARwAAA0cAAABHAAAARwAAAWQAAABHAAACRwAAAUcAAAJHAAADRwAAAkcAAANHAAABRwAAAUcAAABHAAABRwAAA2QAAABHAAACRwAAA0cAAABkAAAARwAAAEcAAANHAAACRwAAAEcAAAFkAAAAZAAAAGQAAABHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAA0cAAABHAAAARwAAA2QAAABkAAAAZAAAAGQAAABHAAADZAAAAGQAAABHAAACRwAAAkcAAAJHAAACZAAAAEcAAAJHAAADRwAAAkcAAAFkAAAAZAAAAEcAAABkAAAARwAAAGQAAABkAAAARwAAAkcAAANHAAABZAAAAGQAAABHAAADRwAAAUcAAABHAAABZAAAAGQAAABkAAAARwAAA2QAAABkAAAAZAAAAEcAAANHAAADRwAAAWQAAABkAAAARwAAAkcAAAFHAAACRwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADFgAAABYAAANkAAAAZAAAAEcAAAFHAAACUwAAAFMAAABkAAAAZAAAAFMAAABTAAAAUwAAAGQAAABkAAAAFgAAAhYAAAMWAAABZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAAWAAABFgAAABYAAABkAAAARwAAA0cAAABTAAAAUwAAAA== -3,-3: ind: -3,-3 - tiles: CgAAAAoAAAAKAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAAASwAAAEsAAAFLAAAASwAAAEsAAAJLAAADSwAAAQsAAAMKAAAACgAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAABLAAAASwAAAksAAAFLAAABaAAAAEsAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAABoAAAJoAAAAGgAAAmgAAAAaAAADGgAAAxoAAAMaAAADGgAAAQAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAAAaAAABGgAAAhoAAANoAAAAGgAAABoAAAIaAAADGgAAABoAAAEAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAGgAAABoAAAEaAAADaAAAABoAAAIaAAAAGgAAAhoAAANoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAABoAAAMaAAABGgAAAmgAAAAaAAADGgAAAxoAAAMaAAABaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAaAAAAGgAAABoAAAEaAAABGgAAARoAAAAaAAADGgAAAmgAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAGgAAAxoAAAEaAAADaAAAABoAAAEaAAABGgAAARoAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAABoAAAEaAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAABoAAAAaAAACGgAAAxoAAANoAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAAAaAAACGgAAAhoAAAEaAAACaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAGgAAAxoAAAEaAAACGgAAA2gAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAABoAAAAaAAADGgAAAxoAAAFoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAGgAAAhoAAAEaAAADaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAABoAAAEaAAAAGgAAAWgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BgAAAAYAAAAGAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAAARwAAAEcAAAFHAAAARwAAAEcAAAJHAAADRwAAAQYAAAMGAAAABgAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAABHAAAARwAAAkcAAAFHAAABZAAAAEcAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAABYAAAJkAAAAFgAAAmQAAAAWAAADFgAAAxYAAAMWAAADFgAAAQAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAAAWAAABFgAAAhYAAANkAAAAFgAAABYAAAIWAAADFgAAABYAAAEAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAFgAAABYAAAEWAAADZAAAABYAAAIWAAAAFgAAAhYAAANkAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAABYAAAMWAAABFgAAAmQAAAAWAAADFgAAAxYAAAMWAAABZAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAWAAAAFgAAABYAAAEWAAABFgAAARYAAAAWAAADFgAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAFgAAAxYAAAEWAAADZAAAABYAAAEWAAABFgAAARYAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAABYAAAEWAAAAFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAABYAAAAWAAACFgAAAxYAAANkAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAAAWAAACFgAAAhYAAAEWAAACZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAFgAAAxYAAAEWAAACFgAAA2QAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAABYAAAAWAAADFgAAAxYAAAFkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAFgAAAhYAAAEWAAADZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAABYAAAEWAAAAFgAAAWQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAA== -2,-3: ind: -2,-3 - tiles: aAAAAGgAAABoAAAAaAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAARoAAAMaAAABaAAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAA2gAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAGgAAA2gAAABoAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAaAAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAGgAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABoAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAAAAAABnAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAAAAAAAAZwAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAAAAAAGcAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAAAAAABnAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAAAAAAAAZwAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAARYAAAMWAAABZAAAAAYAAAAGAAAABgAAAAYAAAAGAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAAAFgAAA2QAAAAGAAAABgAAAAYAAAAGAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAFgAAA2QAAABkAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAADwAAAA8AAAAZAAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAA8AAAAPAAAAGQAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAPAAAADwAAABkAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAAAAAABjAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAAAAAAAAYwAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAAAAAAGMAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAAAAAABjAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAAAAAAAAYwAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAA== -2,-4: ind: -2,-4 - tiles: aAAAAGcAAABnAAAAaAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABnAAAAZwAAAGgAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAACgAAAAoAAAAKAAAACgAAAAoAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAGMAAABjAAAAZAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABjAAAAYwAAAGQAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAABgAAAAYAAAAGAAAABgAAAAYAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,-4: ind: -3,-4 - tiles: aAAAAAAAAABnAAAAAAAAAGgAAAAKAAAAaAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAACgAAAGgAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAoAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAABLAAAASwAAAksAAAFLAAACaAAAAGgAAABoAAAAaAAAAGgAAAAKAAAAaAAAAEsAAAJLAAABSwAAAUsAAAFLAAACSwAAAksAAAFoAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAUsAAANLAAACSwAAAUsAAAJLAAADSwAAAUsAAANoAAAASwAAAUsAAABLAAADSwAAA0sAAABXAAAASwAAAksAAANLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAACSwAAAksAAABLAAAAVwAAAEsAAABLAAACSwAAAmgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAksAAAJoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABpAAAAaQAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAksAAAFLAAADaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAQoAAABoAAAAaAAAAGgAAABoAAAAGgAAAUsAAABLAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAA0sAAAJoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAaAAAAAoAAABoAAAAGgAAAxoAAAEaAAACSwAAAUsAAAJLAAADaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAAaAAAABoAAAEaAAAAGgAAAksAAANLAAADSwAAAmgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAGgAAAAaAAABGgAAARoAAANLAAADSwAAAUsAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAABoAAAAGgAAAxoAAAMaAAACSwAAAUsAAANLAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: ZAAAAAAAAABjAAAAAAAAAGQAAAAGAAAAZAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAABgAAAGQAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAYAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAABHAAAARwAAAkcAAAFHAAACZAAAAGQAAABkAAAAZAAAAGQAAAAGAAAAZAAAAEcAAAJHAAABRwAAAUcAAAFHAAACRwAAAkcAAAFkAAAARwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAUcAAANHAAACRwAAAUcAAAJHAAADRwAAAUcAAANkAAAARwAAAUcAAABHAAADRwAAA0cAAABTAAAARwAAAkcAAANHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAACRwAAAkcAAABHAAAAUwAAAEcAAABHAAACRwAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAkcAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABlAAAAZQAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAkcAAAFHAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAQYAAABkAAAAZAAAAGQAAABkAAAAFgAAAUcAAABHAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAA0cAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAZAAAAAYAAABkAAAAFgAAAxYAAAEWAAACRwAAAUcAAAJHAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAAZAAAABYAAAEWAAAAFgAAAkcAAANHAAADRwAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAGQAAAAWAAABFgAAARYAAANHAAADRwAAAUcAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAABkAAAAFgAAAxYAAAMWAAACRwAAAUcAAANHAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== -3,-5: ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAACgAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABpAAAAAAAAAGcAAAAAAAAAaQAAAAoAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAAABnAAAAAAAAAGkAAAAKAAAAaAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAABgAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABlAAAAAAAAAGMAAAAAAAAAZQAAAAYAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAAABjAAAAAAAAAGUAAAAGAAAAZAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== -2,-5: ind: -2,-5 - tiles: AAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGcAAABnAAAAZwAAAGgAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGcAAABnAAAAaAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGMAAABjAAAAYwAAAGQAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAAAAAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAAAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGMAAABjAAAAZAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,-6: ind: -3,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -2,-6: ind: -2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -4,-5: ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAA== -4,-4: ind: -4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAMAAAGCgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAwoAAAALAAACCgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAMKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAADAAAAQoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAADAAABgoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAaQAAAGkAAABoAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAALAAACaAAAAAoAAAAKAAAACwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAGkAAABpAAAAaQAAAGkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAABoAAAADAAABgoAAABpAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGkAAABpAAAAaAAAAAwAAAcKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAMAAAHDAAABgoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAACgAAAAwAAAYKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAACwAAAwoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAGBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAwYAAAAGAAACBgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAMGAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAQYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAABgYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAZQAAAGUAAABkAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAACZAAAAAYAAAAGAAAABgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAGUAAABlAAAAZQAAAGUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAABkAAAABgAABgYAAABlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGUAAABlAAAAZAAAAAYAAAcGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAGAAAHBgAABgYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAABgAAAAYAAAYGAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAABgAAAwYAAAAGAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAA== -4,-3: ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 4,-2: ind: 4,-2 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAEsAAANLAAABaAAAABoAAAMaAAACGgAAAhoAAAIaAAABGgAAAmgAAABXAAAAaAAAAGgAAABoAAAASwAAAUsAAABLAAADaAAAAFcAAABoAAAASwAAAUsAAANLAAADSwAAAksAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAACSwAAAUsAAABoAAAAGgAAAhoAAAIaAAACGgAAAEsAAAMaAAACaAAAAD4AAAJoAAAAVwAAAGgAAABLAAAASwAAAksAAAJLAAADaAAAABoAAAMaAAACGgAAAhoAAANLAAACGgAAAmgAAAA+AAACWAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADSwAAARoAAAFoAAAAaAAAAEsAAAFLAAABSwAAAEsAAABLAAABSwAAARoAAAAaAAABGgAAABoAAANoAAAAaAAAAFcAAABoAAAAaAAAABoAAAFXAAAAVwAAAFcAAABXAAAAVwAAAEsAAAAaAAADGgAAAhoAAAIaAAAAaAAAABoAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABLAAAAGgAAAhoAAAEaAAACGgAAAWgAAAAaAAADVwAAAFcAAABXAAAAVwAAAEsAAAJLAAACGgAAA0sAAANLAAACSwAAAhoAAAAaAAACGgAAAxoAAAJoAAAAGgAAAVcAAAAaAAABGgAAAhoAAAIaAAABGgAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAGgAAAhoAAAJoAAAAQgAAAEIAAABCAAAAaAAAABoAAAFLAAACSwAAAWgAAABLAAADSwAAAUsAAABLAAACSwAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAEcAAANHAAABZAAAABYAAAMWAAACFgAAAhYAAAIWAAABFgAAAmQAAABTAAAAZAAAAGQAAABkAAAARwAAAUcAAABHAAADZAAAAFMAAABkAAAARwAAAUcAAANHAAADRwAAAkcAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAACRwAAAUcAAABkAAAAFgAAAhYAAAIWAAACFgAAAEcAAAMWAAACZAAAADoAAAJkAAAAUwAAAGQAAABHAAAARwAAAkcAAAJHAAADZAAAABYAAAMWAAACFgAAAhYAAANHAAACFgAAAmQAAAA6AAACVAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADRwAAARYAAAFkAAAAZAAAAEcAAAFHAAABRwAAAEcAAABHAAABRwAAARYAAAAWAAABFgAAABYAAANkAAAAZAAAAFMAAABkAAAAZAAAABYAAAFTAAAAUwAAAFMAAABTAAAAUwAAAEcAAAAWAAADFgAAAhYAAAIWAAAAZAAAABYAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABHAAAAFgAAAhYAAAEWAAACFgAAAWQAAAAWAAADUwAAAFMAAABTAAAAUwAAAEcAAAJHAAACFgAAA0cAAANHAAACRwAAAhYAAAAWAAACFgAAAxYAAAJkAAAAFgAAAVMAAAAWAAABFgAAAhYAAAIWAAABFgAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAFgAAAhYAAAJkAAAAPgAAAD4AAAA+AAAAZAAAABYAAAFHAAACRwAAAWQAAABHAAADRwAAAUcAAABHAAACRwAAAA== 4,-3: ind: 4,-3 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAAFoAAAAZQAAA2UAAANlAAABNwAAADcAAAA3AAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAZQAAA2UAAABlAAAAZQAAAmUAAANlAAACaAAAADcAAAA3AAAANwAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABBAAAAQQAAAEEAAABoAAAAQQAAAEEAAABBAAAAaAAAAEEAAABBAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQQAAAEEAAABBAAAAaAAAAEEAAABBAAAAQQAAAGgAAABBAAAAQQAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEEAAABBAAAAQQAAAGgAAABBAAAAQQAAAEEAAABoAAAAQQAAAEEAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAAFkAAAAYQAAA2EAAANhAAABMwAAADMAAAAzAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAYQAAA2EAAABhAAAAYQAAAmEAAANhAAACZAAAADMAAAAzAAAAMwAAAGQAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAAA9AAAAPQAAAD0AAABkAAAAPQAAAD0AAAA9AAAAZAAAAD0AAAA9AAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAPQAAAD0AAAA9AAAAZAAAAD0AAAA9AAAAPQAAAGQAAAA9AAAAPQAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAD0AAAA9AAAAPQAAAGQAAAA9AAAAPQAAAD0AAABkAAAAPQAAAD0AAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== 4,0: ind: 4,0 - tiles: aAAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAABoAAAAaAAABGgAAABoAAANXAAAASwAAA0sAAABLAAAASwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADaAAAAFgAAABYAAAAWAAAABoAAAMaAAABGgAAAmgAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACGgAAARoAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAhoAAAIaAAADGgAAAhoAAAMaAAACGgAAABoAAAIaAAAAGgAAABoAAAJoAAAASwAAAksAAABLAAACaAAAAEsAAABLAAABXwAAAl8AAAFfAAACXwAAAF8AAANfAAADXwAAAl8AAAMeAAAAaAAAAGgAAABLAAACaAAAAEsAAABLAAACSwAAAV8AAAIRAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAHgAAAWgAAABLAAABSwAAAWgAAABoAAAASwAAAEsAAABfAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAB4AAAFoAAAAaAAAAGgAAABLAAAAaAAAAEsAAAFLAAAAXwAAAxEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAeAAAAaAAAAGgAAABLAAABSwAAAUsAAAFLAAABSwAAA18AAAIRAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAHgAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAJfAAAAXwAAAF8AAANfAAAAXwAAAl8AAAJfAAACXwAAAR4AAANoAAAAGgAAAmUAAANlAAABZQAAABoAAAFLAAACSwAAAEsAAABLAAABSwAAAksAAAFLAAACSwAAA0sAAAAaAAAAVwAAAGUAAABlAAACZQAAAioAAAAaAAABSwAAAksAAABLAAAASwAAAEsAAAJLAAABSwAAAUsAAABLAAAAGgAAAFcAAABlAAADZQAAAGUAAAAqAAADGgAAAksAAABLAAAASwAAAEsAAANLAAACSwAAAEsAAAJLAAAASwAAAxoAAAJXAAAAZQAAAmUAAABlAAAAKgAAAA== + tiles: ZAAAAGQAAABTAAAAUwAAAFMAAABkAAAAZAAAABYAAAAWAAABFgAAABYAAANTAAAARwAAA0cAAABHAAAARwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADZAAAAFQAAABUAAAAVAAAABYAAAMWAAABFgAAAmQAAABHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACFgAAARYAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAhYAAAIWAAADFgAAAhYAAAMWAAACFgAAABYAAAIWAAAAFgAAABYAAAJkAAAARwAAAkcAAABHAAACZAAAAEcAAABHAAABWwAAAlsAAAFbAAACWwAAAFsAAANbAAADWwAAAlsAAAMaAAAAZAAAAGQAAABHAAACZAAAAEcAAABHAAACRwAAAVsAAAINAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAAGgAAAWQAAABHAAABRwAAAWQAAABkAAAARwAAAEcAAABbAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAABoAAAFkAAAAZAAAAGQAAABHAAAAZAAAAEcAAAFHAAAAWwAAAw0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAAaAAAAZAAAAGQAAABHAAABRwAAAUcAAAFHAAABRwAAA1sAAAINAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAAGgAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAJbAAAAWwAAAFsAAANbAAAAWwAAAlsAAAJbAAACWwAAARoAAANkAAAAFgAAAmEAAANhAAABYQAAABYAAAFHAAACRwAAAEcAAABHAAABRwAAAkcAAAFHAAACRwAAA0cAAAAWAAAAUwAAAGEAAABhAAACYQAAAiYAAAAWAAABRwAAAkcAAABHAAAARwAAAEcAAAJHAAABRwAAAUcAAABHAAAAFgAAAFMAAABhAAADYQAAAGEAAAAmAAADFgAAAkcAAABHAAAARwAAAEcAAANHAAACRwAAAEcAAAJHAAAARwAAAxYAAAJTAAAAYQAAAmEAAABhAAAAJgAAAA== 4,1: ind: 4,1 - tiles: GgAAARoAAAMaAAABGgAAABoAAAMaAAAAGgAAARoAAAMaAAAAGgAAARoAAABoAAAAZQAAAGUAAAFlAAACZQAAA2gAAABoAAAAGgAAAGgAAABoAAAAaAAAADYAAAA2AAAANgAAAGgAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAAApAAAAKQAAACkAAAApAAAAKQAAAGgAAAA2AAAANgAAADYAAABoAAAAaAAAAFcAAABoAAAANwAAADcAAAA3AAAAZAAAA18AAANkAAAAXwAAAmQAAABoAAAANgAAADYAAAA2AAAAaAAAAGgAAABXAAAAaAAAADcAAAA3AAAANwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAFcAAABoAAAANwAAADcAAAA3AAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAADcAAAA3AAAANwAAAGgAAABoAAAAaAAAAGgAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAANwAAADcAAAA3AAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAADcAAAA3AAAANwAAABoAAAMaAAADGgAAAmgAAAAaAAABGgAAABoAAAFoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAGgAAARoAAABoAAAAGgAAAxoAAAAaAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAAaAAADGgAAAxoAAAMaAAACGgAAAmgAAABXAAAAVwAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAABoAAAE3AAAANwAAAGgAAAAaAAAAGgAAAhoAAANoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAAAaAAADNwAAADcAAABoAAAAaAAAABoAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAGgAAAjcAAAA3AAAAaAAAABoAAABlAAAAZQAAA2UAAANlAAACaAAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAAA== + tiles: FgAAARYAAAMWAAABFgAAABYAAAMWAAAAFgAAARYAAAMWAAAAFgAAARYAAABkAAAAYQAAAGEAAAFhAAACYQAAA2QAAABkAAAAFgAAAGQAAABkAAAAZAAAADIAAAAyAAAAMgAAAGQAAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAAAlAAAAJQAAACUAAAAlAAAAJQAAAGQAAAAyAAAAMgAAADIAAABkAAAAZAAAAFMAAABkAAAAMwAAADMAAAAzAAAAYAAAA1sAAANgAAAAWwAAAmAAAABkAAAAMgAAADIAAAAyAAAAZAAAAGQAAABTAAAAZAAAADMAAAAzAAAAMwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAZAAAAFMAAABkAAAAMwAAADMAAAAzAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAADMAAAAzAAAAMwAAAGQAAABkAAAAZAAAAGQAAABMAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAMwAAADMAAAAzAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAADMAAAAzAAAAMwAAABYAAAMWAAADFgAAAmQAAAAWAAABFgAAABYAAAFkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAAAFgAAARYAAABkAAAAFgAAAxYAAAAWAAAAZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAABYAAAAWAAADFgAAAxYAAAMWAAACFgAAAmQAAABTAAAAUwAAAGQAAABkAAAAZAAAAFMAAABTAAAAZAAAABYAAAEzAAAAMwAAAGQAAAAWAAAAFgAAAhYAAANkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAAAWAAADMwAAADMAAABkAAAAZAAAABYAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAFgAAAjMAAAAzAAAAZAAAABYAAABhAAAAYQAAA2EAAANhAAACZAAAADMAAAAzAAAAMwAAADMAAAAzAAAAMwAAAA== 2,-4: ind: 2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAMAAAGCgAAAAsAAAIKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAGgAAAA+AAAAPgAAAj4AAABoAAAAPgAAAQoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAABoAAAAPgAAAD4AAAM+AAADPgAAAz4AAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAD4AAAA+AAAALAAAAGgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAAA+AAADPgAAAUsAAAJoAAAAWAAAAFsAAABbAAADWwAAAFsAAAJbAAABWAAAAFgAAABXAAAAVwAAAFcAAABYAAAAPgAAAj4AAAFLAAACaAAAAFgAAABbAAACSwAAA0sAAAFLAAACWwAAA1gAAABoAAAAVwAAAFcAAABXAAAAaAAAAGgAAAA+AAAASwAAAGgAAABYAAAAWwAAAksAAAFYAAAASwAAA1sAAABYAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAGBgAAAAYAAAIGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAGQAAAA6AAAAOgAAAjoAAABkAAAAOgAAAQYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAABkAAAAOgAAADoAAAM6AAADOgAAAzoAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAADoAAAA6AAAAKAAAAGQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAAA6AAADOgAAAUcAAAJkAAAAVAAAAFcAAABXAAADVwAAAFcAAAJXAAABVAAAAFQAAABTAAAAUwAAAFMAAABUAAAAOgAAAjoAAAFHAAACZAAAAFQAAABXAAACRwAAA0cAAAFHAAACVwAAA1QAAABkAAAAUwAAAFMAAABTAAAAZAAAAGQAAAA6AAAARwAAAGQAAABUAAAAVwAAAkcAAAFUAAAARwAAA1cAAABUAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAA== 1,-4: ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAABoAAAAaAAAAFsAAANbAAAAWwAAA1sAAAFbAAACWwAAAVsAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAaAAAAFsAAABbAAACWwAAAVsAAAJbAAABWwAAAFsAAAJbAAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAGgAAABbAAABWwAAAVsAAABbAAADWwAAA1sAAABbAAACWwAAA2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAABoAAAAWwAAAlsAAABbAAAAWwAAAVsAAAJbAAADWwAAAFsAAANoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAFsAAANbAAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAGgAAAAaAAAAaAAAABoAAAJoAAAAaAAAAGgAAAAsAAAALAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAABoAAAAGgAAA2gAAAAaAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAABoAAANoAAAAGgAAAmgAAABXAAAAVwAAAFcAAABXAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAaAAACaAAAABoAAABoAAAASwAAAEsAAAFLAAAASwAAAEsAAAIAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAGgAAAmgAAAAaAAABVwAAAEsAAAFLAAABSwAAA0sAAAJLAAACAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAABoAAAFoAAAAGgAAAWgAAABLAAABSwAAAksAAANLAAACSwAAAw== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAABkAAAAZAAAAFcAAANXAAAAVwAAA1cAAAFXAAACVwAAAVcAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAZAAAAFcAAABXAAACVwAAAVcAAAJXAAABVwAAAFcAAAJXAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAGQAAABXAAABVwAAAVcAAABXAAADVwAAA1cAAABXAAACVwAAA2QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAABkAAAAVwAAAlcAAABXAAAAVwAAAVcAAAJXAAADVwAAAFcAAANkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAFcAAANXAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAGQAAAAWAAAAZAAAABYAAAJkAAAAZAAAAGQAAAAoAAAAKAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAABkAAAAFgAAA2QAAAAWAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAABYAAANkAAAAFgAAAmQAAABTAAAAUwAAAFMAAABTAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAWAAACZAAAABYAAABkAAAARwAAAEcAAAFHAAAARwAAAEcAAAIAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAFgAAAmQAAAAWAAABUwAAAEcAAAFHAAABRwAAA0cAAAJHAAACAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAABYAAAFkAAAAFgAAAWQAAABHAAABRwAAAkcAAANHAAACRwAAAw== 3,-4: ind: 3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAwAAAYKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAACgAAAAsAAAILAAADCgAAAAoAAABoAAAAaAAAAGgAAABoAAAAaAAAAAoAAAAKAAAACgAAAAoAAAAAAAAACgAAAAsAAAILAAACDAAABQoAAAAKAAAAaAAAABUAAAAVAAAAFQAAAGgAAAAKAAAACgAAAAoAAAAKAAAACwAAAwwAAAYLAAADCgAAAAoAAAAKAAAACgAAAGgAAAAVAAAAFQAAABUAAABoAAAACgAAAAoAAAAKAAAACgAAAAwAAAQKAAAACgAAAAoAAAAKAAAACgAAAAoAAABoAAAAFQAAABUAAAAVAAAAaAAAAAoAAAAKAAAACgAAAAoAAABoAAAAaAAAAGgAAABoAAAAaAAAAAoAAAAKAAAAaAAAABkAAAAZAAAAGQAAAGgAAABoAAAAaAAAAGgAAABoAAAAPgAAAj4AAAE+AAAAaAAAAGgAAAAKAAAACgAAAGgAAAAZAAAAGQAAABkAAABoAAAAVwAAAGgAAAApAAAAKQAAAD4AAAE+AAAAPgAAAD4AAAFoAAAACgAAAAoAAABoAAAAGQAAABkAAAAZAAAAWAAAAGgAAABoAAAAKQAAACkAAABoAAAAaAAAAGgAAABoAAAAaAAAAAoAAAAKAAAAaAAAABkAAAAZAAAAGQAAAGgAAABoAAAAaAAAACkAAAApAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAApAAAAKQAAAD4AAABoAAAAVwAAAGgAAABXAAAAaAAAAGgAAABQAAAAaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAKQAAAGgAAAA+AAAAaAAAAFcAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAAAaAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAANoAAAAUAAAAGgAAABXAAAAaAAAAGgAAABbAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAYGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAABgAAAAYAAAIGAAADBgAAAAYAAABkAAAAZAAAAGQAAABkAAAAZAAAAAYAAAAGAAAABgAAAAYAAAAAAAAABgAAAAYAAAIGAAACBgAABQYAAAAGAAAAZAAAABEAAAARAAAAEQAAAGQAAAAGAAAABgAAAAYAAAAGAAAABgAAAwYAAAYGAAADBgAAAAYAAAAGAAAABgAAAGQAAAARAAAAEQAAABEAAABkAAAABgAAAAYAAAAGAAAABgAAAAYAAAQGAAAABgAAAAYAAAAGAAAABgAAAAYAAABkAAAAEQAAABEAAAARAAAAZAAAAAYAAAAGAAAABgAAAAYAAABkAAAAZAAAAGQAAABkAAAAZAAAAAYAAAAGAAAAZAAAABUAAAAVAAAAFQAAAGQAAABkAAAAZAAAAGQAAABkAAAAOgAAAjoAAAE6AAAAZAAAAGQAAAAGAAAABgAAAGQAAAAVAAAAFQAAABUAAABkAAAAUwAAAGQAAAAlAAAAJQAAADoAAAE6AAAAOgAAADoAAAFkAAAABgAAAAYAAABkAAAAFQAAABUAAAAVAAAAVAAAAGQAAABkAAAAJQAAACUAAABkAAAAZAAAAGQAAABkAAAAZAAAAAYAAAAGAAAAZAAAABUAAAAVAAAAFQAAAGQAAABkAAAAZAAAACUAAAAlAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAlAAAAJQAAADoAAABkAAAAUwAAAGQAAABTAAAAZAAAAGQAAABMAAAAZAAAABYAAAFkAAAAZAAAAGQAAABkAAAAJQAAAGQAAAA6AAAAZAAAAFMAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAAAWAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAANkAAAATAAAAGQAAABTAAAAZAAAAGQAAABXAAAAZAAAAA== 4,-4: ind: 4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAsAAAMLAAADCwAAAQsAAAMKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAMAAAGDAAABgsAAAIKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAsAAAMKAAAACgAAAAoAAAAKAAAACgAAAAoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAwAAAcKAAAACgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAAJbAAABaAAAAGUAAAFoAAAAaAAAAGgAAAAMAAADCgAAAAoAAABoAAAAZQAAA2UAAABlAAADaAAAAFsAAAFbAAABWwAAAWgAAABoAAAAaAAAAGUAAAFoAAAACgAAAAoAAAAKAAAAaAAAAGUAAAJlAAADaAAAAGgAAABbAAABWwAAAVsAAAJoAAAAZQAAAWgAAABoAAAAaAAAAGgAAAAKAAAACgAAAGgAAABlAAACaAAAAGUAAAJoAAAAWwAAAVsAAABbAAAAaAAAAGUAAANoAAAAaAAAAGgAAABoAAAAaAAAAAoAAABoAAAAaAAAAGUAAAJoAAAAaAAAAFsAAABoAAAAWwAAA2gAAABlAAACaAAAAGgAAABlAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAGgAAABoAAAAWwAAAWgAAABoAAAAZQAAA2gAAABoAAAAZQAAAmUAAANlAAABZQAAAWUAAAFlAAACZQAAAmgAAABoAAAAaAAAAGgAAABbAAABaAAAAGgAAABlAAACaAAAAGUAAABoAAAAZQAAAmgAAABoAAAAZQAAAWUAAAFoAAAAZQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAMGAAADBgAAAQYAAAMGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAGBgAABgYAAAIGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAMGAAAABgAAAAYAAAAGAAAABgAAAAYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAYAAAcGAAAABgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAAJXAAABZAAAAGEAAAFkAAAAZAAAAGQAAAAGAAADBgAAAAYAAABkAAAAYQAAA2EAAABhAAADZAAAAFcAAAFXAAABVwAAAWQAAABkAAAAZAAAAGEAAAFkAAAABgAAAAYAAAAGAAAAZAAAAGEAAAJhAAADZAAAAGQAAABXAAABVwAAAVcAAAJkAAAAYQAAAWQAAABkAAAAZAAAAGQAAAAGAAAABgAAAGQAAABhAAACZAAAAGEAAAJkAAAAVwAAAVcAAABXAAAAZAAAAGEAAANkAAAAZAAAAGQAAABkAAAAZAAAAAYAAABkAAAAZAAAAGEAAAJkAAAAZAAAAFcAAABkAAAAVwAAA2QAAABhAAACZAAAAGQAAABhAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAAGQAAABkAAAAVwAAAWQAAABkAAAAYQAAA2QAAABkAAAAYQAAAmEAAANhAAABYQAAAWEAAAFhAAACYQAAAmQAAABkAAAAZAAAAGQAAABXAAABZAAAAGQAAABhAAACZAAAAGEAAABkAAAAYQAAAmQAAABkAAAAYQAAAWEAAAFkAAAAYQAAAA== 8,1: ind: 8,1 - tiles: aAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAKgAAAWcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAJgAAAWMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 5,-5: ind: 5,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 5,-4: ind: 5,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAABoAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAADAAAAQwAAAQKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAMAAAHCgAAAAsAAAMKAAAACgAAAAwAAAIMAAAEDAAABgwAAAUKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAMAAAHCgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAALAAADCwAAAgoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAsAAAMKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAACwAAAgoAAAAKAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAtAAABLQAAAC0AAAAtAAACLQAAAy0AAAItAAABLQAAAAoAAAAKAAAACgAAAGgAAABoAAAAaAAAAGUAAAJoAAAALQAAAC0AAAItAAADLQAAAS0AAAAtAAADLQAAAi0AAAEKAAAACgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAC0AAAItAAADLQAAAi0AAAMtAAABLQAAAC0AAAMtAAACCgAAAGgAAABoAAAAZQAAA2UAAABoAAAAZQAAAWgAAAAtAAAALQAAAS0AAAEtAAADLQAAAS0AAAEtAAABLQAAAmgAAABoAAAAZQAAAWUAAAFlAAABaAAAAGUAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAmgAAABlAAABaAAAAGgAAABlAAABaAAAAGgAAABlAAADZQAAA2UAAABlAAABZQAAA2UAAAJoAAAAZQAAA2UAAAFlAAABaAAAAGUAAAFoAAAAZQAAAWgAAABlAAABZQAAAmUAAANlAAACZQAAAGgAAABoAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAABkAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAQYAAAQGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAHBgAAAAYAAAMGAAAABgAAAAYAAAIGAAAEBgAABgYAAAUGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAHBgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAADBgAAAgYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAMGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAABgAAAgYAAAAGAAAAZAAAAGQAAABkAAAAZAAAAGQAAAApAAABKQAAACkAAAApAAACKQAAAykAAAIpAAABKQAAAAYAAAAGAAAABgAAAGQAAABkAAAAZAAAAGEAAAJkAAAAKQAAACkAAAIpAAADKQAAASkAAAApAAADKQAAAikAAAEGAAAABgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAACkAAAIpAAADKQAAAikAAAMpAAABKQAAACkAAAMpAAACBgAAAGQAAABkAAAAYQAAA2EAAABkAAAAYQAAAWQAAAApAAAAKQAAASkAAAEpAAADKQAAASkAAAEpAAABKQAAAmQAAABkAAAAYQAAAWEAAAFhAAABZAAAAGEAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAAmQAAABhAAABZAAAAGQAAABhAAABZAAAAGQAAABhAAADYQAAA2EAAABhAAABYQAAA2EAAAJkAAAAYQAAA2EAAAFhAAABZAAAAGEAAAFkAAAAYQAAAWQAAABhAAABYQAAAmEAAANhAAACYQAAAGQAAABkAAAAZAAAAA== 5,-3: ind: 5,-3 - tiles: ZQAAAmUAAAJlAAACZQAAAWUAAABoAAAAaAAAAGUAAANlAAABZQAAAWUAAANoAAAAZQAAAWUAAAFoAAAAaAAAAGUAAAFlAAAAZQAAA2UAAANlAAABZQAAAmgAAABlAAAAaAAAAGgAAABlAAACZQAAA2UAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAANXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQQAAAEEAAABBAAAAaAAAAGgAAABBAAAAaAAAAEsAAANLAAADVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEEAAABBAAAAQQAAAGgAAABoAAAAQQAAAGgAAABLAAABSwAAAlcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABBAAAAQQAAAEEAAABoAAAAaAAAAEEAAABoAAAASwAAAksAAANXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEEAAABBAAAAQQAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABBAAAAQQAAAEEAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQQAAAEEAAABBAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABBAAAAQQAAAEEAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQQAAAEEAAABBAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEEAAABBAAAAQQAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: YQAAAmEAAAJhAAACYQAAAWEAAABkAAAAZAAAAGEAAANhAAABYQAAAWEAAANkAAAAYQAAAWEAAAFkAAAAZAAAAGEAAAFhAAAAYQAAA2EAAANhAAABYQAAAmQAAABhAAAAZAAAAGQAAABhAAACYQAAA2EAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAANTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAPQAAAD0AAAA9AAAAZAAAAGQAAAA9AAAAZAAAAEcAAANHAAADUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAD0AAAA9AAAAPQAAAGQAAABkAAAAPQAAAGQAAABHAAABRwAAAlMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAA9AAAAPQAAAD0AAABkAAAAZAAAAD0AAABkAAAARwAAAkcAAANTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAD0AAAA9AAAAPQAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAA9AAAAPQAAAD0AAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAPQAAAD0AAAA9AAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAA9AAAAPQAAAD0AAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAPQAAAD0AAAA9AAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAD0AAAA9AAAAPQAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== 5,-2: ind: 5,-2 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAD4AAAM+AAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAA+AAACPgAAAmgAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAaAAAAFcAAAAaAAACaAAAABoAAAJLAAADSwAAA0sAAAJLAAACSwAAARoAAANoAAAASwAAAEsAAANQAAAAUAAAAEsAAAFXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAEsAAANLAAACSwAAAUsAAABLAAACVwAAAFcAAABoAAAAGgAAAksAAAFLAAADSwAAAksAAAJoAAAAGgAAA2gAAABLAAACSwAAAUsAAAJLAAADSwAAARoAAAIaAAABaAAAABoAAAMaAAAAGgAAARoAAAAaAAABaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAEAAAABAAAAAQAAAAEAAAABAAAAAaAAAABoAAAIaAAAAaAAAABoAAAIaAAADGgAAAmgAAABoAAAAQgAAAGgAAABAAAAAQAAAAEAAAABAAAAAQAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAADoAAAM6AAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAA6AAACOgAAAmQAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABTAAAAZAAAAFMAAAAWAAACZAAAABYAAAJHAAADRwAAA0cAAAJHAAACRwAAARYAAANkAAAARwAAAEcAAANMAAAATAAAAEcAAAFTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAEcAAANHAAACRwAAAUcAAABHAAACUwAAAFMAAABkAAAAFgAAAkcAAAFHAAADRwAAAkcAAAJkAAAAFgAAA2QAAABHAAACRwAAAUcAAAJHAAADRwAAARYAAAIWAAABZAAAABYAAAMWAAAAFgAAARYAAAAWAAABZAAAABYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAADwAAAA8AAAAPAAAADwAAAA8AAAAZAAAABYAAAIWAAAAZAAAABYAAAIWAAADFgAAAmQAAABkAAAAPgAAAGQAAAA8AAAAPAAAADwAAAA8AAAAPAAAAA== 5,-1: ind: 5,-1 - tiles: aAAAABoAAAAaAAADaAAAABoAAAIaAAADGgAAAWgAAABoAAAAQgAAAGgAAAAaAAABQAAAAEAAAABAAAAAQAAAAGgAAAAaAAAAGgAAAWgAAABoAAAAGgAAAWgAAABoAAAAaAAAAEIAAABoAAAAGgAAA1cAAABXAAAAVwAAAEAAAAAaAAACGgAAABoAAAEaAAACGgAAAhoAAAAaAAACaAAAAFcAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAABoAAAEaAAAAGgAAAxoAAAIaAAADGgAAAmgAAABCAAAAQgAAAEIAAABCAAAAQgAAAEIAAABCAAAAQgAAAGgAAAAaAAABGgAAARoAAAIaAAADGgAAARoAAANoAAAAQgAAAEIAAABCAAAAQgAAAEIAAABCAAAAQgAAAEIAAABoAAAAGgAAARoAAAIaAAACGgAAABoAAAMaAAADaAAAAEIAAABCAAAAQgAAAEIAAABCAAAAQgAAAEIAAABCAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQgAAAEIAAABCAAAAaAAAAGgAAABXAAAAaAAAAGgAAAAaAAACGgAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAEIAAABCAAAAQgAAAGgAAAAaAAABGgAAABoAAAFoAAAAGgAAABoAAAAaAAABaAAAABoAAAEaAAAAGgAAAWgAAABCAAAAQgAAAEIAAABoAAAAGgAAABoAAAAaAAADSwAAAUsAAANLAAAASwAAAWgAAAAaAAACGgAAARoAAAFXAAAAQgAAAEIAAABCAAAAaAAAABoAAABoAAAAaAAAAEsAAANLAAACSwAAAEsAAANXAAAAGgAAARoAAAAaAAADaAAAAEIAAABCAAAAQgAAAGgAAAAaAAADaAAAAGgAAABLAAADSwAAAUsAAABLAAADaAAAABoAAAMaAAABGgAAAlcAAABCAAAAQgAAAEIAAABoAAAAGgAAA2gAAABoAAAASwAAAUsAAANLAAAASwAAAWgAAABFAAAAGgAAAkUAAABoAAAAQgAAAEIAAABCAAAAaAAAABoAAAMaAAABGgAAAFcAAABXAAAAVwAAAEsAAABoAAAAaAAAAFcAAABoAAAAaAAAAEIAAABCAAAAQgAAAGgAAAAaAAAAGgAAAxoAAANoAAAAaAAAAGgAAABXAAAAaAAAABoAAAEaAAAAGgAAAGgAAABCAAAAQgAAAEIAAABoAAAAaAAAAFcAAABoAAAAVwAAAFcAAABXAAAASwAAAmgAAAAaAAACGgAAAGgAAABoAAAAQgAAAEIAAABCAAAAQgAAAEIAAABCAAAAQgAAAA== + tiles: ZAAAABYAAAAWAAADZAAAABYAAAIWAAADFgAAAWQAAABkAAAAPgAAAGQAAAAWAAABPAAAADwAAAA8AAAAPAAAAGQAAAAWAAAAFgAAAWQAAABkAAAAFgAAAWQAAABkAAAAZAAAAD4AAABkAAAAFgAAA1MAAABTAAAAUwAAADwAAAAWAAACFgAAABYAAAEWAAACFgAAAhYAAAAWAAACZAAAAFMAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABkAAAAZAAAABYAAAEWAAAAFgAAAxYAAAIWAAADFgAAAmQAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAGQAAAAWAAABFgAAARYAAAIWAAADFgAAARYAAANkAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAABkAAAAFgAAARYAAAIWAAACFgAAABYAAAMWAAADZAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAPgAAAD4AAAA+AAAAZAAAAGQAAABTAAAAZAAAAGQAAAAWAAACFgAAABYAAABkAAAAZAAAAGQAAABkAAAAZAAAAD4AAAA+AAAAPgAAAGQAAAAWAAABFgAAABYAAAFkAAAAFgAAABYAAAAWAAABZAAAABYAAAEWAAAAFgAAAWQAAAA+AAAAPgAAAD4AAABkAAAAFgAAABYAAAAWAAADRwAAAUcAAANHAAAARwAAAWQAAAAWAAACFgAAARYAAAFTAAAAPgAAAD4AAAA+AAAAZAAAABYAAABkAAAAZAAAAEcAAANHAAACRwAAAEcAAANTAAAAFgAAARYAAAAWAAADZAAAAD4AAAA+AAAAPgAAAGQAAAAWAAADZAAAAGQAAABHAAADRwAAAUcAAABHAAADZAAAABYAAAMWAAABFgAAAlMAAAA+AAAAPgAAAD4AAABkAAAAFgAAA2QAAABkAAAARwAAAUcAAANHAAAARwAAAWQAAABBAAAAFgAAAkEAAABkAAAAPgAAAD4AAAA+AAAAZAAAABYAAAMWAAABFgAAAFMAAABTAAAAUwAAAEcAAABkAAAAZAAAAFMAAABkAAAAZAAAAD4AAAA+AAAAPgAAAGQAAAAWAAAAFgAAAxYAAANkAAAAZAAAAGQAAABTAAAAZAAAABYAAAEWAAAAFgAAAGQAAAA+AAAAPgAAAD4AAABkAAAAZAAAAFMAAABkAAAAUwAAAFMAAABTAAAARwAAAmQAAAAWAAACFgAAAGQAAABkAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAA== 6,-4: ind: 6,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAAaQAAAGgAAABpAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAGkAAABoAAAAaQAAAAoAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAGkAAABpAAAAaQAAAGkAAABpAAAAaAAAAGkAAAAKAAAAAAAAAGcAAAAAAAAACgAAAAAAAAAAAAAACgAAAAoAAABpAAAAaAAAAGgAAABoAAAAaAAAAGgAAABpAAAACgAAAAAAAABnAAAAAAAAAAoAAAAMAAAFCgAAAAoAAAALAAADaQAAAGgAAABpAAAAaQAAAGkAAABpAAAAaQAAAAoAAAAAAAAAZwAAAAAAAAAKAAAACgAAAAoAAAALAAACCgAAAGkAAABoAAAAaQAAAAoAAAAKAAAACgAAAAsAAAEKAAAAAAAAAGcAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAABoAAAAaAAAAGgAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAABnAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaAAAAGgAAABoAAAACgAAAAoAAAAKAAAACwAAAQoAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAACgAAAAoAAAAAAAAAAAAAAGcAAAAAAAAAGgAAAxoAAAAaAAABaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAAoAAAAKAAAAAAAAAAAAAABnAAAAAAAAABoAAAMaAAADGgAAAWgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAAAKAAAACgAAAAAAAAAAAAAAZwAAAAAAAAAaAAAAGgAAAxoAAANoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAACgAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAGgAAABoAAAEaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAoAAAAAAAAAAAAAAAAAAABnAAAAAAAAABoAAAIaAAACGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAAAKAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAGgAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAACwAAAwoAAAAKAAAAAAAAAGcAAAAAAAAAGgAAARoAAAFoAAAAGgAAAmgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAAZQAAAGQAAABlAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAGUAAABkAAAAZQAAAAYAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAGUAAABlAAAAZQAAAGUAAABlAAAAZAAAAGUAAAAGAAAAAAAAAGMAAAAAAAAABgAAAAAAAAAAAAAABgAAAAYAAABlAAAAZAAAAGQAAABkAAAAZAAAAGQAAABlAAAABgAAAAAAAABjAAAAAAAAAAYAAAAGAAAFBgAAAAYAAAAGAAADZQAAAGQAAABlAAAAZQAAAGUAAABlAAAAZQAAAAYAAAAAAAAAYwAAAAAAAAAGAAAABgAAAAYAAAAGAAACBgAAAGUAAABkAAAAZQAAAAYAAAAGAAAABgAAAAYAAAEGAAAAAAAAAGMAAAAAAAAABgAAAAYAAAAGAAAABgAAAAYAAABkAAAAZAAAAGQAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAABjAAAAAAAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZAAAAGQAAABkAAAABgAAAAYAAAAGAAAABgAAAQYAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAABgAAAAYAAAAAAAAAAAAAAGMAAAAAAAAAFgAAAxYAAAAWAAABZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAAYAAAAGAAAAAAAAAAAAAABjAAAAAAAAABYAAAMWAAADFgAAAWQAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAAAGAAAABgAAAAAAAAAAAAAAYwAAAAAAAAAWAAAAFgAAAxYAAANkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAABgAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAFgAAABYAAAEWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAYAAAAAAAAAAAAAAAAAAABjAAAAAAAAABYAAAIWAAACFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAAAGAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAFgAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAABgAAAwYAAAAGAAAAAAAAAGMAAAAAAAAAFgAAARYAAAFkAAAAFgAAAmQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAA== 6,-5: ind: 6,-5 - tiles: ZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAGgAAABpAAAAAAAAAAAAAABnAAAAAAAAAA== + tiles: YwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAGQAAABlAAAAAAAAAAAAAABjAAAAAAAAAA== 6,-3: ind: 6,-3 - tiles: GgAAAmgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAAAAAABXAAAAaAAAAFcAAABXAAAAVwAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAFcAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABpAAAACgAAAAoAAAAKAAAADAAABQoAAAAAAAAAZwAAAAAAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaQAAAAoAAAAMAAAGCgAAAAoAAAAKAAAAAAAAAGcAAAAAAAAAVwAAAGgAAABXAAAAaAAAAFcAAABXAAAAaAAAAGkAAABpAAAAaQAAAAoAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGkAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABpAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAAAAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABpAAAAaQAAAGcAAABnAAAAZwAAAGcAAAAAAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaQAAAAoAAAAKAAAAaAAAAAAAAABnAAAAAAAAAA== + tiles: FgAAAmQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAAAAAABTAAAAZAAAAFMAAABTAAAAUwAAAGQAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAUwAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAFMAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABlAAAABgAAAAYAAAAGAAAABgAABQYAAAAAAAAAYwAAAAAAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZQAAAAYAAAAGAAAGBgAAAAYAAAAGAAAAAAAAAGMAAAAAAAAAUwAAAGQAAABTAAAAZAAAAFMAAABTAAAAZAAAAGUAAABlAAAAZQAAAAYAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGUAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABTAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABlAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAAAAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABlAAAAZQAAAGMAAABjAAAAYwAAAGMAAAAAAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZQAAAAYAAAAGAAAAZAAAAAAAAABjAAAAAAAAAA== 6,-2: ind: 6,-2 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGkAAABpAAAAaQAAAAoAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABpAAAACgAAAAoAAAAMAAAGAAAAAGcAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAACgAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAoAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAKAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAACgAAAGgAAABXAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAVAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAFLAAADaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAGgAAAksAAAJLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAFLAAACSwAAAEsAAANLAAADSwAAAUsAAABLAAABUAAAAEsAAAFLAAADSwAAAEsAAABQAAAASwAAAEsAAABLAAACaAAAAGgAAABLAAAASwAAAksAAANQAAAASwAAA0sAAAFLAAACSwAAA0sAAAJLAAABSwAAA0sAAAJoAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAPgAAAD4AAAE+AAADPgAAAD4AAAFoAAAAUAAAAEsAAAFoAAAAQAAAAEAAAABAAAAAQAAAAEAAAABoAAAAaAAAAD4AAAM+AAADPgAAAz4AAAE+AAACGgAAA0sAAABLAAAAWAAAAFcAAABXAAAAVwAAAFcAAABXAAAAWAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGUAAABlAAAAZQAAAAYAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABlAAAABgAAAAYAAAAGAAAGAAAAAGMAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAAAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAABgAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAYAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAGAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAABgAAAGQAAABTAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAUwAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAAFHAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAFgAAAkcAAAJHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAFHAAACRwAAAEcAAANHAAADRwAAAUcAAABHAAABTAAAAEcAAAFHAAADRwAAAEcAAABMAAAARwAAAEcAAABHAAACZAAAAGQAAABHAAAARwAAAkcAAANMAAAARwAAA0cAAAFHAAACRwAAA0cAAAJHAAABRwAAA0cAAAJkAAAARwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAARwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAOgAAADoAAAE6AAADOgAAADoAAAFkAAAATAAAAEcAAAFkAAAAPAAAADwAAAA8AAAAPAAAADwAAABkAAAAZAAAADoAAAM6AAADOgAAAzoAAAE6AAACFgAAA0cAAABHAAAAVAAAAFMAAABTAAAAUwAAAFMAAABTAAAAVAAAAA== 7,-2: ind: 7,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAADAAABAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAsAAAIKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAADAAABAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACwAAAwoAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAKAAAACgAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABAAAAAQAAAAEAAAABAAAAAQAAAAGgAAABoAAAACgAAAAoAAAAAAAAAaAAAABoAAAMaAAABGgAAABoAAAJoAAAAQAAAABoAAAEaAAACGgAAA0AAAABoAAAAaAAAAAoAAAALAAADAAAAAGgAAAAaAAABGgAAAxoAAAMaAAAAGgAAA0AAAAAaAAAAGgAAAhoAAAJAAAAAaAAAAGgAAAAKAAAADAAAAgwAAAdoAAAAGgAAABoAAAEaAAABGgAAAmgAAABAAAAAGgAAABoAAAMaAAABQAAAAGgAAABoAAAACwAAAgsAAAEKAAAAGgAAABoAAAFoAAAAaAAAAGgAAABoAAAAQAAAAEAAAABAAAAAQAAAAEAAAABoAAAAaAAAAAoAAAALAAACAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABLAAAAaAAAAFAAAABLAAACUAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAsAAAMAAAAAAAAAAAAAAAAAAAAASwAAAUsAAABLAAACSwAAAmgAAABoAAAAaAAAAFgAAABYAAAAaAAAAGgAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAACgAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAwAAAcAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAAAMAAAFAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAABAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAIGAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAABgAABAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAwYAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAGAAAABgAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAA8AAAAPAAAADwAAAA8AAAAPAAAAGQAAABkAAAABgAAAAYAAAAAAAAAZAAAABYAAAMWAAABFgAAABYAAAJkAAAAPAAAABYAAAEWAAACFgAAAzwAAABkAAAAZAAAAAYAAAAGAAADAAAAAGQAAAAWAAABFgAAAxYAAAMWAAAAFgAAAzwAAAAWAAAAFgAAAhYAAAI8AAAAZAAAAGQAAAAGAAAABgAAAgYAAAdkAAAAFgAAABYAAAEWAAABFgAAAmQAAAA8AAAAFgAAABYAAAMWAAABPAAAAGQAAABkAAAABgAAAgYAAAEGAAAAFgAAABYAAAFkAAAAZAAAAGQAAABkAAAAPAAAADwAAAA8AAAAPAAAADwAAABkAAAAZAAAAAYAAAAGAAACAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABHAAAAZAAAAEwAAABHAAACTAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAYAAAMAAAAAAAAAAAAAAAAAAAAARwAAAUcAAABHAAACRwAAAmQAAABkAAAAZAAAAFQAAABUAAAAZAAAAGQAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAABgAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAYAAAcAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAAAGAAAFAAAAAAAAAAAAAAAAAAAAAA== 7,-3: ind: 7,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAABnAAAAZwAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAZwAAAGcAAAAAAAAACgAAAAoAAAAKAAAACgAAAAwAAAIKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaAAAAGcAAABnAAAAZwAAAGgAAAAKAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAwAAAIKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAcMAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAABjAAAAYwAAAAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAYwAAAGMAAAAAAAAABgAAAAYAAAAGAAAABgAAAAYAAAIGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZAAAAGMAAABjAAAAYwAAAGQAAAAGAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAIGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAcGAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAA== 8,-2: ind: 8,-2 - tiles: CgAAAAoAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAsAAAIKAAAADAAABwoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAALAAADCgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAACgAAAAoAAAAMAAAHCgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BgAAAAYAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAIGAAAABgAABwYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAADBgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAABgAAAAYAAAAGAAAHBgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 8,-3: ind: 8,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAMAAABCgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAMAAABDAAAAgoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAwAAAYKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAABBgAAAgYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAYGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 7,-1: ind: 7,-1 - tiles: aAAAAGgAAABoAAAAaAAAAFgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAKAAAACgAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAACgAAAAoAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAKAAAADAAABwoAAAAKAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABnAAAAAAAAAGgAAABoAAAAWAAAAGgAAABoAAAACgAAAAoAAAALAAADCgAAAAoAAAAKAAAAAAAAAGcAAABoAAAAZwAAAGcAAABoAAAAaAAAAFgAAABoAAAAaAAAAAoAAAAKAAAACwAAAQsAAAMKAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAZwAAAGgAAABnAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAAAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAAAAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAACSwAAA0sAAANoAAAAZwAAAGgAAABnAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAWAAAAGgAAABQAAAASwAAAWgAAABLAAADaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAACaAAAAFAAAABLAAABSwAAA2gAAABnAAAAaAAAAGcAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAASwAAA1AAAABLAAACaAAAAEsAAAFoAAAAZwAAAGgAAAAAAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAEsAAABLAAADaAAAAGcAAABoAAAAAAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABLAAAAaAAAAEsAAABQAAAASwAAA2gAAABnAAAAaAAAAGcAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAASwAAAEsAAAFLAAADSwAAA0sAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAGAAAABgAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAABgAAAAYAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAGAAAABgAABwYAAAAGAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABjAAAAAAAAAGQAAABkAAAAVAAAAGQAAABkAAAABgAAAAYAAAAGAAADBgAAAAYAAAAGAAAAAAAAAGMAAABkAAAAYwAAAGMAAABkAAAAZAAAAFQAAABkAAAAZAAAAAYAAAAGAAAABgAAAQYAAAMGAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAYwAAAGQAAABjAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAAAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAAAAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAACRwAAA0cAAANkAAAAYwAAAGQAAABjAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAVAAAAGQAAABMAAAARwAAAWQAAABHAAADZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAACZAAAAEwAAABHAAABRwAAA2QAAABjAAAAZAAAAGMAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAARwAAA0wAAABHAAACZAAAAEcAAAFkAAAAYwAAAGQAAAAAAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAAEcAAABHAAADZAAAAGMAAABkAAAAAAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABHAAAAZAAAAEcAAABMAAAARwAAA2QAAABjAAAAZAAAAGMAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAARwAAAEcAAAFHAAADRwAAA0cAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAA== 6,-1: ind: 6,-1 - tiles: aAAAAD4AAAE+AAACPgAAAT4AAAI+AAADaAAAAEsAAAFLAAACaAAAAEAAAABAAAAAQAAAAEAAAABAAAAAaAAAAGgAAAA+AAABPgAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAPgAAAz4AAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAACMAAAAjAAABaAAAAGgAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAAAjAAABIwAAAWgAAABoAAAAZwAAAGcAAABoAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABnAAAAAAAAAAAAAABXAAAAIwAAAiMAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAABoAAAMaAAADGgAAAGgAAABoAAAAaAAAAAAAAABoAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAxoAAANoAAAAaAAAAGgAAAAAAAAAaAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAaAAABaAAAAGgAAABoAAAAZwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABoAAAAGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABnAAAAaAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAGgAAARoAAAMaAAACaAAAAGgAAABoAAAAAAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAABoAAAEaAAADGgAAAmgAAABoAAAAaAAAAAAAAABoAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: ZAAAADoAAAE6AAACOgAAAToAAAI6AAADZAAAAEcAAAFHAAACZAAAADwAAAA8AAAAPAAAADwAAAA8AAAAZAAAAGQAAAA6AAABOgAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAOgAAAzoAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAB8AAAAfAAABZAAAAGQAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAAAfAAABHwAAAWQAAABkAAAAYwAAAGMAAABkAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABjAAAAAAAAAAAAAABTAAAAHwAAAh8AAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAABYAAAMWAAADFgAAAGQAAABkAAAAZAAAAAAAAABkAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAWAAAAFgAAAxYAAANkAAAAZAAAAGQAAAAAAAAAZAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAWAAABZAAAAGQAAABkAAAAYwAAAGQAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABkAAAAFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAABYAAABkAAAAZAAAAGQAAABjAAAAZAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAFgAAARYAAAMWAAACZAAAAGQAAABkAAAAAAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAABYAAAEWAAADFgAAAmQAAABkAAAAZAAAAAAAAABkAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== 8,-1: ind: 8,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACwAAAwsAAAEKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAALAAACCgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAACgAAAAoAAAALAAABCgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAAoAAAAKAAAACwAAAgoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAACgAAAAoAAAAKAAAADAAABgoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAADAAAAwoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACwAAAwoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAwYAAAEGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAACBgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAABgAAAAYAAAAGAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAAYAAAAGAAAABgAAAgYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAABgAAAAYAAAAGAAAABgAABgYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAwYAAAAGAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAwYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 8,0: ind: 8,0 - tiles: CgAAAAoAAAAKAAAAaQAAAAsAAAIKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAGkAAAAMAAAECgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAABpAAAADAAABgoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAALAAADaQAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAMAAACCwAAAmkAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACwAAAmkAAABpAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAGkAAABpAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAILAAADCgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BgAAAAYAAAAGAAAAZQAAAAYAAAIGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAGUAAAAGAAAEBgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAABlAAAABgAABgYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAADZQAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAACBgAAAmUAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAmUAAABlAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAGUAAABlAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAIGAAADBgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 7,0: ind: 7,0 - tiles: ZwAAAGgAAABnAAAAZwAAAGgAAABoAAAAWAAAAGgAAABoAAAASwAAAEsAAAFoAAAASwAAAEsAAAJLAAAAaAAAAGgAAABoAAAAZwAAAAAAAABoAAAAaAAAAFgAAABoAAAAWAAAAEsAAANoAAAASwAAA1AAAABLAAADSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABLAAACaAAAAEsAAAJLAAACaAAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAASwAAAlAAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAWAAAAGgAAABYAAAAWAAAAFgAAABoAAAAaAAAAEsAAAFLAAACaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAASwAAAGgAAABoAAAAaAAAAGgAAAAKAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAABoAAAAaAAAAGgAAABoAAAAaQAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABYAAAAaAAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAAoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAKAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAEAAAAjAAADAgAAAAIAAAACAAAAAgAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAABAAAAIwAAAgIAAAACAAAAAgAAAAIAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAQAAACMAAAMCAAAAAgAAAAIAAAACAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAACwAAA2kAAAAKAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAAoAAABpAAAACwAAA2cAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAA== + tiles: YwAAAGQAAABjAAAAYwAAAGQAAABkAAAAVAAAAGQAAABkAAAARwAAAEcAAAFkAAAARwAAAEcAAAJHAAAAZAAAAGQAAABkAAAAYwAAAAAAAABkAAAAZAAAAFQAAABkAAAAVAAAAEcAAANkAAAARwAAA0wAAABHAAADRwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABHAAACZAAAAEcAAAJHAAACZAAAAEcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAARwAAAkwAAABHAAABZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAVAAAAGQAAABUAAAAVAAAAFQAAABkAAAAZAAAAEcAAAFHAAACZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAARwAAAGQAAABkAAAAZAAAAGQAAAAGAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAABkAAAAZAAAAGQAAABkAAAAZQAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAZAAAAEcAAANkAAAAZAAAAGQAAABkAAAAZAAAAAYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAGAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAEAAAAfAAADAgAAAAIAAAACAAAAAgAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAABAAAAHwAAAgIAAAACAAAAAgAAAAIAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAQAAAB8AAAMCAAAAAgAAAAIAAAACAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAABgAAA2UAAAAGAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAYAAABlAAAABgAAA2MAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAA== 6,0: ind: 6,0 - tiles: GgAAA2gAAABoAAAAaAAAAGgAAABnAAAAZwAAAGgAAABnAAAAAAAAAAAAAABnAAAAaAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAEaAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAGgAAABoAAAASwAAAUsAAABLAAADSwAAAksAAAJLAAAAaAAAAEsAAABLAAADSwAAAUsAAAJLAAACSwAAAEsAAAJLAAABSwAAAEsAAABLAAADSwAAAUsAAANLAAABaAAAAEsAAAFLAAADSwAAAUsAAABoAAAASwAAAUsAAANLAAABSwAAAUsAAAJLAAAAaAAAAEsAAAJLAAAASwAAAksAAANLAAABSwAAA0sAAANLAAACaAAAABoAAAIaAAABGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACGgAAARoAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABXAAAAaAAAAFcAAABoAAAAAQAAAAEAAABYAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABXAAAAaAAAAAEAAAABAAAAaAAAAGgAAABoAAAAaAAAAFAAAABQAAAASwAAA1AAAABLAAACaAAAAFcAAABoAAAAVwAAAGgAAAABAAAAAQAAAFgAAABYAAAAaAAAAGgAAABLAAACUAAAAEsAAABLAAADSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABLAAADSwAAAUsAAANoAAAASwAAAUsAAAJLAAABSwAAAUsAAABoAAAAWAAAAGgAAABoAAAAaAAAAFAAAABLAAABaAAAAEsAAANQAAAAaAAAAEsAAAJLAAABSwAAAEsAAAJLAAABSwAAAA== + tiles: FgAAA2QAAABkAAAAZAAAAGQAAABjAAAAYwAAAGQAAABjAAAAAAAAAAAAAABjAAAAZAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAEWAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAGQAAABkAAAARwAAAUcAAABHAAADRwAAAkcAAAJHAAAAZAAAAEcAAABHAAADRwAAAUcAAAJHAAACRwAAAEcAAAJHAAABRwAAAEcAAABHAAADRwAAAUcAAANHAAABZAAAAEcAAAFHAAADRwAAAUcAAABkAAAARwAAAUcAAANHAAABRwAAAUcAAAJHAAAAZAAAAEcAAAJHAAAARwAAAkcAAANHAAABRwAAA0cAAANHAAACZAAAABYAAAIWAAABFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACFgAAARYAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAGQAAABTAAAAZAAAAFMAAABkAAAAAQAAAAEAAABUAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABTAAAAZAAAAAEAAAABAAAAZAAAAGQAAABkAAAAZAAAAEwAAABMAAAARwAAA0wAAABHAAACZAAAAFMAAABkAAAAUwAAAGQAAAABAAAAAQAAAFQAAABUAAAAZAAAAGQAAABHAAACTAAAAEcAAABHAAADRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEwAAABHAAADRwAAAUcAAANkAAAARwAAAUcAAAJHAAABRwAAAUcAAABkAAAAVAAAAGQAAABkAAAAZAAAAEwAAABHAAABZAAAAEcAAANMAAAAZAAAAEcAAAJHAAABRwAAAEcAAAJHAAABRwAAAA== 5,0: ind: 5,0 - tiles: SwAAAksAAAJLAAADSwAAAFcAAAAaAAADGgAAAWgAAABoAAAAQgAAAGgAAABoAAAAaAAAAGgAAABoAAAAQgAAAEsAAAFLAAADSwAAAEsAAAJoAAAAGgAAAxoAAABoAAAAaAAAAEIAAAAjAAABIwAAAiMAAAEjAAADIwAAAkIAAABoAAAAaAAAAGgAAABYAAAAaAAAABoAAAAaAAAAaAAAAGgAAABCAAAAIwAAAyMAAAAjAAACIwAAAyMAAAJCAAAAWAAAAGgAAABoAAAAaAAAAGgAAAAaAAADGgAAABoAAABoAAAAQgAAAEIAAABCAAAAQgAAAEIAAABCAAAAQgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAAAaAAADGgAAARoAAAAaAAABGgAAARoAAAIaAAABGgAAABoAAAFoAAAASwAAAksAAABLAAABaAAAAGgAAABoAAAAGgAAARoAAAMaAAADGgAAARoAAAIaAAAAGgAAABoAAAMaAAAAaAAAAEsAAABLAAACSwAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAA2gAAABoAAAAGgAAAhoAAANoAAAAaAAAAGgAAAAaAAACGgAAAhoAAAMaAAAAGgAAAhoAAAMaAAAAGgAAAhoAAAJoAAAAGgAAAxoAAAMaAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAWUAAAFlAAADZQAAAGUAAAJlAAACZQAAAGUAAAFoAAAASwAAAksAAAJLAAAASwAAAksAAAFLAAADaAAAACoAAAMqAAABKgAAACoAAAAqAAACKgAAAGUAAAJlAAAAVwAAAEsAAANLAAACSwAAAEsAAANLAAADSwAAAmgAAAAqAAACKgAAACoAAAIqAAACKgAAASoAAANlAAABZQAAAlcAAABLAAACSwAAAUsAAANLAAAASwAAAUsAAAFYAAAAKgAAACoAAAIqAAADKgAAACoAAAIqAAABZQAAAGUAAAFXAAAASwAAAEsAAABLAAAASwAAAksAAAJLAAACaAAAAA== + tiles: RwAAAkcAAAJHAAADRwAAAFMAAAAWAAADFgAAAWQAAABkAAAAPgAAAGQAAABkAAAAZAAAAGQAAABkAAAAPgAAAEcAAAFHAAADRwAAAEcAAAJkAAAAFgAAAxYAAABkAAAAZAAAAD4AAAAfAAABHwAAAh8AAAEfAAADHwAAAj4AAABkAAAAZAAAAGQAAABUAAAAZAAAABYAAAAWAAAAZAAAAGQAAAA+AAAAHwAAAx8AAAAfAAACHwAAAx8AAAI+AAAAVAAAAGQAAABkAAAAZAAAAGQAAAAWAAADFgAAABYAAABkAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAAAWAAADFgAAARYAAAAWAAABFgAAARYAAAIWAAABFgAAABYAAAFkAAAARwAAAkcAAABHAAABZAAAAGQAAABkAAAAFgAAARYAAAMWAAADFgAAARYAAAIWAAAAFgAAABYAAAMWAAAAZAAAAEcAAABHAAACRwAAAGQAAABkAAAAZAAAABYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAA2QAAABkAAAAFgAAAhYAAANkAAAAZAAAAGQAAAAWAAACFgAAAhYAAAMWAAAAFgAAAhYAAAMWAAAAFgAAAhYAAAJkAAAAFgAAAxYAAAMWAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAAWEAAAFhAAADYQAAAGEAAAJhAAACYQAAAGEAAAFkAAAARwAAAkcAAAJHAAAARwAAAkcAAAFHAAADZAAAACYAAAMmAAABJgAAACYAAAAmAAACJgAAAGEAAAJhAAAAUwAAAEcAAANHAAACRwAAAEcAAANHAAADRwAAAmQAAAAmAAACJgAAACYAAAImAAACJgAAASYAAANhAAABYQAAAlMAAABHAAACRwAAAUcAAANHAAAARwAAAUcAAAFUAAAAJgAAACYAAAImAAADJgAAACYAAAImAAABYQAAAGEAAAFTAAAARwAAAEcAAABHAAAARwAAAkcAAAJHAAACZAAAAA== 7,1: ind: 7,1 - tiles: aAAAAGgAAABoAAAAaAAAAAoAAABpAAAADAAABGcAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABYAAAAaAAAAGgAAAAKAAAAaQAAAAoAAABnAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAASwAAA0sAAANoAAAACgAAAGkAAAAKAAAAZwAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAASwAAAksAAAJLAAAAaAAAAAoAAABpAAAACgAAAGcAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAKAAAAaQAAAAsAAANnAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAaAAAAGgAAABoAAAACgAAAGkAAAAKAAAAZwAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAZQAAAmUAAABoAAAACgAAAAoAAABpAAAACgAAAGcAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGUAAAFlAAADaAAAAAoAAAAKAAAAaQAAAGkAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAA3AAAAZQAAAmgAAAAKAAAACgAAAAoAAABpAAAAaQAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAANwAAAGUAAABoAAAACgAAAAoAAAAKAAAAaQAAAGkAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAADcAAABlAAADaAAAAAoAAAAKAAAACgAAAGkAAABpAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAAAKAAAACgAAAAoAAABpAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaQAAAGcAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGkAAABnAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABpAAAAZwAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaQAAAGcAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAAYAAABlAAAABgAABGMAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABUAAAAZAAAAGQAAAAGAAAAZQAAAAYAAABjAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAARwAAA0cAAANkAAAABgAAAGUAAAAGAAAAYwAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAARwAAAkcAAAJHAAAAZAAAAAYAAABlAAAABgAAAGMAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAGAAAAZQAAAAYAAANjAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAZAAAAGQAAABkAAAABgAAAGUAAAAGAAAAYwAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAYQAAAmEAAABkAAAABgAAAAYAAABlAAAABgAAAGMAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGEAAAFhAAADZAAAAAYAAAAGAAAAZQAAAGUAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAzAAAAYQAAAmQAAAAGAAAABgAAAAYAAABlAAAAZQAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAMwAAAGEAAABkAAAABgAAAAYAAAAGAAAAZQAAAGUAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAADMAAABhAAADZAAAAAYAAAAGAAAABgAAAGUAAABlAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAAAGAAAABgAAAAYAAABlAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZQAAAGMAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGUAAABjAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABlAAAAYwAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZQAAAGMAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAA== 6,1: ind: 6,1 - tiles: WAAAAFgAAABYAAAAaAAAAGgAAABLAAACSwAAAmgAAABLAAAAaAAAAEsAAANLAAACSwAAAEsAAAFLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAApAAAAKQAAACkAAAApAAAAKQAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAASwAAA0sAAANoAAAAKQAAACkAAAApAAAAKQAAACkAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAABSwAAAikAAAApAAAAKQAAACkAAAApAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA2gAAAApAAAAKQAAACkAAAApAAAAKQAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAANwAAADcAAAA3AAAANwAAAGgAAAA3AAAANwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAANwAAADcAAAA3AAAANwAAADcAAABoAAAANwAAADcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAACaAAAADcAAAA3AAAAZQAAAGUAAAE3AAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAA2UAAAM3AAAANwAAAGUAAABlAAABNwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAAJlAAADNwAAADcAAABlAAADZQAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAWUAAAFoAAAAaAAAAGgAAABoAAAAQAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAANlAAABaAAAAEAAAABAAAAAQAAAAEAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAwAAAAMAAAADAAAABAAAAAGgAAAmgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAMAAAADAAAAAwAAAAQAAAABoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAA== + tiles: VAAAAFQAAABUAAAAZAAAAGQAAABHAAACRwAAAmQAAABHAAAAZAAAAEcAAANHAAACRwAAAEcAAAFHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAlAAAAJQAAACUAAAAlAAAAJQAAAGQAAABTAAAAUwAAAFMAAABTAAAAUwAAAGQAAABkAAAARwAAA0cAAANkAAAAJQAAACUAAAAlAAAAJQAAACUAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAABRwAAAiUAAAAlAAAAJQAAACUAAAAlAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA2QAAAAlAAAAJQAAACUAAAAlAAAAJQAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAMwAAADMAAAAzAAAAMwAAAGQAAAAzAAAAMwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAMwAAADMAAAAzAAAAMwAAADMAAABkAAAAMwAAADMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAACZAAAADMAAAAzAAAAYQAAAGEAAAEzAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAA2EAAAMzAAAAMwAAAGEAAABhAAABMwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAAJhAAADMwAAADMAAABhAAADYQAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAAWEAAAFkAAAAZAAAAGQAAABkAAAAPAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAANhAAABZAAAADwAAAA8AAAAPAAAADwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAsAAAALAAAACwAAAA8AAAAFgAAAmQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAALAAAACwAAAAsAAAAPAAAABYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAA== 5,1: ind: 5,1 - tiles: ZQAAAWUAAANlAAADZQAAAGUAAABlAAACZQAAAWUAAAJoAAAASwAAAUsAAANLAAABSwAAAksAAABLAAAAaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAAA3AAAAZQAAAGUAAABlAAABNwAAADcAAAA3AAAANwAAAGgAAABXAAAANwAAADcAAAA3AAAANwAAAFcAAABoAAAAaAAAAGUAAABlAAABZQAAAmgAAAA3AAAANwAAADcAAABoAAAAVwAAADcAAAA3AAAANwAAADcAAAA3AAAAKQAAAGgAAABlAAABZQAAAGUAAANoAAAAaAAAAGgAAABoAAAAaAAAAFcAAAA3AAAANwAAADcAAAA3AAAANwAAACkAAAA3AAAAZQAAA2UAAABlAAAAZQAAA2UAAANlAAADZQAAA2gAAABXAAAANwAAADcAAAA3AAAANwAAAFcAAABoAAAAaAAAAGUAAAFlAAADZQAAAWgAAABlAAADZQAAA2UAAAFoAAAAVwAAADcAAAA3AAAANwAAADcAAABXAAAAaAAAAGgAAABlAAABZQAAAGUAAANoAAAAaAAAAGgAAABoAAAAaAAAAFcAAAA3AAAANwAAADcAAAA3AAAAVwAAAGgAAAA3AAAAZQAAA2UAAAJlAAABNwAAADcAAAA3AAAANwAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAABlAAACZQAAAWgAAAA3AAAANwAAADcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADSwAAA0sAAABLAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAEsAAABLAAABSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAJLAAACSwAAAUsAAAFoAAAAGgAAABoAAAEaAAAAGgAAAGgAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABoAAAASwAAAksAAAFLAAAAaAAAABoAAAAaAAAAGgAAARoAAAJoAAAAQAAAAEAAAABAAAAAMAAAADAAAAAwAAAAaAAAAEsAAABLAAADSwAAA2gAAABoAAAAaAAAABoAAAJoAAAAaAAAAGgAAABoAAAAQAAAADAAAAAwAAAAMAAAAA== + tiles: YQAAAWEAAANhAAADYQAAAGEAAABhAAACYQAAAWEAAAJkAAAARwAAAUcAAANHAAABRwAAAkcAAABHAAAAZAAAAGQAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAAAzAAAAYQAAAGEAAABhAAABMwAAADMAAAAzAAAAMwAAAGQAAABTAAAAMwAAADMAAAAzAAAAMwAAAFMAAABkAAAAZAAAAGEAAABhAAABYQAAAmQAAAAzAAAAMwAAADMAAABkAAAAUwAAADMAAAAzAAAAMwAAADMAAAAzAAAAJQAAAGQAAABhAAABYQAAAGEAAANkAAAAZAAAAGQAAABkAAAAZAAAAFMAAAAzAAAAMwAAADMAAAAzAAAAMwAAACUAAAAzAAAAYQAAA2EAAABhAAAAYQAAA2EAAANhAAADYQAAA2QAAABTAAAAMwAAADMAAAAzAAAAMwAAAFMAAABkAAAAZAAAAGEAAAFhAAADYQAAAWQAAABhAAADYQAAA2EAAAFkAAAAUwAAADMAAAAzAAAAMwAAADMAAABTAAAAZAAAAGQAAABhAAABYQAAAGEAAANkAAAAZAAAAGQAAABkAAAAZAAAAFMAAAAzAAAAMwAAADMAAAAzAAAAUwAAAGQAAAAzAAAAYQAAA2EAAAJhAAABMwAAADMAAAAzAAAAMwAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAABhAAACYQAAAWQAAAAzAAAAMwAAADMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADRwAAA0cAAABHAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAEcAAABHAAABRwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAJHAAACRwAAAUcAAAFkAAAAFgAAABYAAAEWAAAAFgAAAGQAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAABkAAAARwAAAkcAAAFHAAAAZAAAABYAAAAWAAAAFgAAARYAAAJkAAAAPAAAADwAAAA8AAAALAAAACwAAAAsAAAAZAAAAEcAAABHAAADRwAAA2QAAABkAAAAZAAAABYAAAJkAAAAZAAAAGQAAABkAAAAPAAAACwAAAAsAAAALAAAAA== 7,2: ind: 7,2 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaQAAAGcAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGkAAABnAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABXAAAAaAAAAAoAAAAKAAAACgAAAAoAAABpAAAAZwAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGgAAAAKAAAACgAAAAoAAAAKAAAAaQAAAGcAAABoAAAAZwAAAGgAAABnAAAAaAAAAGcAAABoAAAAZwAAAGgAAABoAAAACgAAAAoAAAAKAAAACwAAAmkAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAKAAAACgAAAAsAAAJpAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAACgAAAAwAAAYKAAAAaQAAAAoAAAAAAAAACgAAAAsAAAIKAAAAAAAAAAAAAAAAAAAAAAAAAFcAAABoAAAAaAAAAAoAAAAMAAAHCwAAAmkAAABpAAAAaQAAAGkAAAAKAAAADAAABAoAAAALAAABCgAAAAoAAABoAAAAaAAAAGgAAAAMAAAFCgAAAAoAAAAKAAAACgAAAAoAAABpAAAAaQAAAGkAAABpAAAAaQAAAGkAAABpAAAAaAAAAGgAAABoAAAACgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQAAAAEAAAABAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAADAAAAAwAAAAGgAAAhoAAAAaAAABGgAAARoAAAEaAAADMAAAADAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACGgAAAxoAAAMaAAACGgAAAhoAAAAaAAACGgAAAhoAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAEaAAACMAAAADAAAAAwAAAAMAAAADAAAAAaAAAAGgAAAQ== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZQAAAGMAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGUAAABjAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABTAAAAZAAAAAYAAAAGAAAABgAAAAYAAABlAAAAYwAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGQAAAAGAAAABgAAAAYAAAAGAAAAZQAAAGMAAABkAAAAYwAAAGQAAABjAAAAZAAAAGMAAABkAAAAYwAAAGQAAABkAAAABgAAAAYAAAAGAAAABgAAAmUAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAGAAAABgAAAAYAAAJlAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAABgAAAAYAAAYGAAAAZQAAAAYAAAAAAAAABgAAAAYAAAIGAAAAAAAAAAAAAAAAAAAAAAAAAFMAAABkAAAAZAAAAAYAAAAGAAAHBgAAAmUAAABlAAAAZQAAAGUAAAAGAAAABgAABAYAAAAGAAABBgAAAAYAAABkAAAAZAAAAGQAAAAGAAAFBgAAAAYAAAAGAAAABgAAAAYAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAZAAAAGQAAABkAAAABgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAPAAAADwAAAA8AAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAACwAAAAsAAAAFgAAAhYAAAAWAAABFgAAARYAAAEWAAADLAAAACwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACFgAAAxYAAAMWAAACFgAAAhYAAAAWAAACFgAAAhYAAAAWAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAABYAAAEWAAACLAAAACwAAAAsAAAALAAAACwAAAAWAAAAFgAAAQ== 6,2: ind: 6,2 - tiles: QAAAAEAAAABAAAAAQAAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABIAAAASAAAAEgAAAEAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAFcAAABXAAAAGgAAABoAAAIaAAACGgAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAAaAAADGgAAABoAAABoAAAAVwAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAxoAAAEaAAABGgAAAxoAAAEaAAADGgAAAxoAAAFoAAAACgAAAAoAAAAKAAAACgAAAAoAAABoAAAAaAAAABoAAAEaAAACGgAAAxoAAAMaAAACGgAAAxoAAAAaAAAAaAAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaAAAAGgAAAAaAAAAGgAAAhoAAAMaAAAAGgAAARoAAAEaAAADGgAAAmgAAAAKAAAACgAAAAoAAAAKAAAACgAAAGgAAABoAAAAGgAAAhoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAEaAAADaAAAABoAAAMaAAAAGgAAAhoAAAMaAAABGgAAARoAAAAaAAAAGgAAAhoAAABoAAAAGgAAAxoAAAAaAAAAGgAAAGgAAAAaAAADGgAAARIAAAASAAAAEgAAABoAAAMSAAAAEgAAABIAAAAaAAABGgAAAxoAAAAaAAACGgAAAhoAAANoAAAAGgAAAhoAAAMaAAACGgAAARoAAAIaAAACGgAAABoAAAIaAAADGgAAA2gAAAAaAAADGgAAABoAAAFoAAAAaAAAAGgAAABoAAAAGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABGgAAAmgAAAAaAAACGgAAAhoAAAIaAAADaAAAABoAAAMaAAACGgAAABoAAAEaAAACGgAAABoAAAFoAAAAGgAAAxoAAAFoAAAAGgAAAhIAAAASAAAAGgAAA2gAAAAaAAABGgAAARoAAAASAAAAEgAAABIAAAAaAAABaAAAAA== + tiles: PAAAADwAAAA8AAAAPAAAABYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA4AAAAOAAAADgAAADwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAZAAAAFMAAABTAAAAFgAAABYAAAIWAAACFgAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAAWAAADFgAAABYAAABkAAAAUwAAAGQAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAxYAAAEWAAABFgAAAxYAAAEWAAADFgAAAxYAAAFkAAAABgAAAAYAAAAGAAAABgAAAAYAAABkAAAAZAAAABYAAAEWAAACFgAAAxYAAAMWAAACFgAAAxYAAAAWAAAAZAAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZAAAAGQAAAAWAAAAFgAAAhYAAAMWAAAAFgAAARYAAAEWAAADFgAAAmQAAAAGAAAABgAAAAYAAAAGAAAABgAAAGQAAABkAAAAFgAAAhYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAEWAAADZAAAABYAAAMWAAAAFgAAAhYAAAMWAAABFgAAARYAAAAWAAAAFgAAAhYAAABkAAAAFgAAAxYAAAAWAAAAFgAAAGQAAAAWAAADFgAAAQ4AAAAOAAAADgAAABYAAAMOAAAADgAAAA4AAAAWAAABFgAAAxYAAAAWAAACFgAAAhYAAANkAAAAFgAAAhYAAAMWAAACFgAAARYAAAIWAAACFgAAABYAAAIWAAADFgAAA2QAAAAWAAADFgAAABYAAAFkAAAAZAAAAGQAAABkAAAAFgAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAABFgAAAmQAAAAWAAACFgAAAhYAAAIWAAADZAAAABYAAAMWAAACFgAAABYAAAEWAAACFgAAABYAAAFkAAAAFgAAAxYAAAFkAAAAFgAAAg4AAAAOAAAAFgAAA2QAAAAWAAABFgAAARYAAAAOAAAADgAAAA4AAAAWAAABZAAAAA== 8,2: ind: 8,2 - tiles: aAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGcAAABoAAAAZwAAAGgAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABpAAAAaQAAAGkAAAAKAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABpAAAAaQAAAAoAAAALAAACCgAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGkAAABpAAAACwAAAwoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaQAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGkAAAAMAAAFCgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABpAAAACgAAAAoAAAALAAADCgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAaAAAAGgAAABoAAAAaQAAAAoAAAAMAAAHCgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGkAAAALAAACCgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGMAAABkAAAAYwAAAGQAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABlAAAAZQAAAGUAAAAGAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABlAAAAZQAAAAYAAAAGAAACBgAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGUAAABlAAAABgAAAwYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZQAAAAYAAAAGAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGUAAAAGAAAFBgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABlAAAABgAAAAYAAAAGAAADBgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAZAAAAGQAAABkAAAAZQAAAAYAAAAGAAAHBgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGUAAAAGAAACBgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 8,3: ind: 8,3 - tiles: EgAAAGgAAABoAAAAaAAAAGkAAAALAAADCgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAABoAAAAaAAAAGgAAABpAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAaAAAAGgAAABoAAAAaQAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGkAAAALAAADCgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAABoAAAAaAAAAGgAAABpAAAACwAAAwoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaQAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGkAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABpAAAACgAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABpAAAAaQAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABpAAAAaQAAAAoAAAALAAACCgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGkAAABpAAAAaQAAAAoAAAAKAAAACwAAAwoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAALAAADCgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACwAAAQoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAQKAAAACgAAAAoAAAAKAAAAaAAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: DgAAAGQAAABkAAAAZAAAAGUAAAAGAAADBgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAABkAAAAZAAAAGQAAABlAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAZAAAAGQAAABkAAAAZQAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGUAAAAGAAADBgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAABkAAAAZAAAAGQAAABlAAAABgAAAwYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZQAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGUAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABlAAAABgAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABlAAAAZQAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABlAAAAZQAAAAYAAAAGAAACBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGUAAABlAAAAZQAAAAYAAAAGAAAABgAAAwYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAADBgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAQYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAQGAAAABgAAAAYAAAAGAAAAZAAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 7,3: ind: 7,3 - tiles: GgAAARoAAAIaAAACGgAAARoAAAFoAAAAGgAAARoAAAAaAAAAMAAAAGgAAABAAAAAaAAAAGgAAAAaAAACGgAAAhoAAAASAAAAEgAAABIAAAAaAAADGgAAAhoAAAMaAAACGgAAAzAAAABoAAAAQAAAABIAAABoAAAAGgAAAhoAAAIaAAACGgAAARoAAAEaAAABGgAAA2gAAAAaAAABGgAAAhoAAAIwAAAAaAAAAEAAAABoAAAAaAAAABoAAAEaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAhoAAAIaAAABMAAAADAAAAAwAAAAMAAAADAAAAAaAAAAGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAEaAAAAGgAAARoAAAIaAAACGgAAABoAAAIaAAABGgAAAhoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAwAAAAMAAAABoAAAMaAAABGgAAAhoAAAIaAAADGgAAATAAAAAwAAAACgAAAAoAAAAKAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQAAAAEAAAABAAAAAaAAAAGgAAABoAAAAaAAAAAoAAAAKAAAACgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAKAAAACgAAAAoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAACgAAAAoAAAAKAAAACgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAABpAAAAaQAAAGkAAABpAAAAaQAAAGkAAABpAAAAaQAAAGkAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAMAAAHCgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAsAAAILAAADaAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACwAAAwsAAAMMAAAHDAAABQwAAAQKAAAACgAAAAoAAAALAAADCwAAAQoAAAAKAAAACwAAAgoAAAAKAAAADAAABwoAAAALAAACCgAAAAoAAAAKAAAACgAAAAoAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAsAAAEKAAAACwAAAgoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAADAAABQ== + tiles: FgAAARYAAAIWAAACFgAAARYAAAFkAAAAFgAAARYAAAAWAAAALAAAAGQAAAA8AAAAZAAAAGQAAAAWAAACFgAAAhYAAAAOAAAADgAAAA4AAAAWAAADFgAAAhYAAAMWAAACFgAAAywAAABkAAAAPAAAAA4AAABkAAAAFgAAAhYAAAIWAAACFgAAARYAAAEWAAABFgAAA2QAAAAWAAABFgAAAhYAAAIsAAAAZAAAADwAAABkAAAAZAAAABYAAAEWAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAhYAAAIWAAABLAAAACwAAAAsAAAALAAAACwAAAAWAAAAFgAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAEWAAAAFgAAARYAAAIWAAACFgAAABYAAAIWAAABFgAAAhYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAsAAAALAAAABYAAAMWAAABFgAAAhYAAAIWAAADFgAAASwAAAAsAAAABgAAAAYAAAAGAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAPAAAADwAAAA8AAAAZAAAAGQAAABkAAAAZAAAAAYAAAAGAAAABgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAGAAAABgAAAAYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAABgAAAAYAAAAGAAAABgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAHBgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAIGAAADZAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAwYAAAMGAAAHBgAABQYAAAQGAAAABgAAAAYAAAAGAAADBgAAAQYAAAAGAAAABgAAAgYAAAAGAAAABgAABwYAAAAGAAACBgAAAAYAAAAGAAAABgAAAAYAAAAAAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAEGAAAABgAAAgYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAABQ== 8,4: ind: 8,4 - tiles: CgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BgAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 7,4: ind: 7,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAABQwAAAMKAAAACwAAAQoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAABQYAAAMGAAAABgAAAQYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAYAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 6,3: ind: 6,3 - tiles: GgAAABoAAANoAAAAGgAAAxIAAAASAAAAGgAAAGgAAAAaAAADGgAAARoAAAISAAAAEgAAABIAAAAaAAADaAAAABoAAAIaAAAAGgAAAhoAAAIaAAABGgAAABoAAAMaAAADGgAAAhoAAAAaAAACGgAAAhoAAAEaAAACGgAAARoAAAIaAAACGgAAAWgAAAAaAAADEgAAABIAAAAaAAAAaAAAABoAAAIaAAABGgAAARIAAAASAAAAEgAAABoAAAFoAAAAGgAAARoAAABoAAAAGgAAAhIAAAASAAAAGgAAAWgAAAAaAAAAGgAAARoAAAASAAAAEgAAABIAAAAaAAACaAAAABoAAAMaAAACaAAAABoAAAEaAAADGgAAARoAAAJoAAAAGgAAARoAAAMaAAACGgAAABoAAAAaAAACGgAAAGgAAAAaAAABGgAAAWgAAABoAAAAaAAAABoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAARoAAAFoAAAAGgAAAxoAAAIaAAACGgAAAhoAAAAaAAABGgAAABoAAAEaAAACGgAAABoAAAJoAAAACgAAABoAAAAaAAACaAAAABoAAAIaAAAAEgAAABIAAAASAAAAGgAAAxIAAAASAAAAEgAAABoAAAMaAAABaAAAAAoAAAAaAAACGgAAAGgAAAAaAAACGgAAABoAAAMaAAAAGgAAABoAAAMaAAAAGgAAABoAAAAaAAADGgAAA2gAAAAKAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAoAAAAKAAAACgAAAAoAAAALAAACCwAAAwoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAKAAAACgAAAAoAAAAKAAAACwAAAwoAAAAKAAAAAAAAAA== + tiles: FgAAABYAAANkAAAAFgAAAw4AAAAOAAAAFgAAAGQAAAAWAAADFgAAARYAAAIOAAAADgAAAA4AAAAWAAADZAAAABYAAAIWAAAAFgAAAhYAAAIWAAABFgAAABYAAAMWAAADFgAAAhYAAAAWAAACFgAAAhYAAAEWAAACFgAAARYAAAIWAAACFgAAAWQAAAAWAAADDgAAAA4AAAAWAAAAZAAAABYAAAIWAAABFgAAAQ4AAAAOAAAADgAAABYAAAFkAAAAFgAAARYAAABkAAAAFgAAAg4AAAAOAAAAFgAAAWQAAAAWAAAAFgAAARYAAAAOAAAADgAAAA4AAAAWAAACZAAAABYAAAMWAAACZAAAABYAAAEWAAADFgAAARYAAAJkAAAAFgAAARYAAAMWAAACFgAAABYAAAAWAAACFgAAAGQAAAAWAAABFgAAAWQAAABkAAAAZAAAABYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAARYAAAFkAAAAFgAAAxYAAAIWAAACFgAAAhYAAAAWAAABFgAAABYAAAEWAAACFgAAABYAAAJkAAAABgAAABYAAAAWAAACZAAAABYAAAIWAAAADgAAAA4AAAAOAAAAFgAAAw4AAAAOAAAADgAAABYAAAMWAAABZAAAAAYAAAAWAAACFgAAAGQAAAAWAAACFgAAABYAAAMWAAAAFgAAABYAAAMWAAAAFgAAABYAAAAWAAADFgAAA2QAAAAGAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAYAAAAGAAAABgAAAAYAAAAGAAACBgAAAwYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAGAAAABgAAAAYAAAAGAAAABgAAAwYAAAAGAAAAAAAAAA== 6,4: ind: 6,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAKAAAACgAAAAoAAAAMAAAFCgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAACgAAAAoAAAAKAAAACwAAAgoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAoAAAALAAABCwAAAwsAAAIKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAKAAAACwAAAwoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAALAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAGAAAABgAAAAYAAAAGAAAFBgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAABgAAAAYAAAAGAAAABgAAAgYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAYAAAAGAAABBgAAAwYAAAIGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAGAAAABgAAAwYAAAAGAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 5,3: ind: 5,3 - tiles: GgAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEAAAAAwAAAAMAAAADAAAABAAAAAaAAAAGgAAABoAAAAGgAAAmUAAAIaAAABNwAAADcAAABoAAAAaAAAAGgAAABAAAAAMAAAAEAAAAAwAAAAQAAAAGgAAABoAAAAaAAAABoAAAFlAAAAZQAAAjcAAAA3AAAAaAAAAGgAAABoAAAAQAAAADAAAAAwAAAAMAAAAEAAAABoAAAAaAAAAGgAAAAaAAACGgAAAhoAAAM3AAAANwAAAGgAAABoAAAAaAAAAEAAAABAAAAAQAAAAEAAAABAAAAAaAAAAGgAAABoAAAAGgAAAWgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAABoAAAAZAAAAGQAAANkAAACaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAA1cAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAABoAAAMaAAAAGgAAABoAAAIaAAABGgAAAxoAAAMaAAACGgAAARoAAAIaAAADGgAAAlcAAAAaAAADGgAAAGgAAAAaAAABGgAAARoAAAEaAAADGgAAARoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGgAAAAaAAACVwAAABoAAAAaAAACaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAGgAAA1cAAAAaAAADGgAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAABoAAANXAAAAGgAAA2gAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAAAaAAACVwAAABoAAAJoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAGgAAA1cAAAAaAAABaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAABoAAABXAAAAGgAAA2gAAAAAAAAAAAAAAA== + tiles: FgAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAADwAAAAsAAAALAAAACwAAAA8AAAAZAAAAGQAAABkAAAAFgAAAmEAAAIWAAABMwAAADMAAABkAAAAZAAAAGQAAAA8AAAALAAAADwAAAAsAAAAPAAAAGQAAABkAAAAZAAAABYAAAFhAAAAYQAAAjMAAAAzAAAAZAAAAGQAAABkAAAAPAAAACwAAAAsAAAALAAAADwAAABkAAAAZAAAAGQAAAAWAAACFgAAAhYAAAMzAAAAMwAAAGQAAABkAAAAZAAAADwAAAA8AAAAPAAAADwAAAA8AAAAZAAAAGQAAABkAAAAFgAAAWQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAABkAAAAYAAAAGAAAANgAAACZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAA1MAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAABYAAAMWAAAAFgAAABYAAAIWAAABFgAAAxYAAAMWAAACFgAAARYAAAIWAAADFgAAAlMAAAAWAAADFgAAAGQAAAAWAAABFgAAARYAAAEWAAADFgAAARYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGQAAAAWAAACUwAAABYAAAAWAAACZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAFgAAA1MAAAAWAAADFgAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAABYAAANTAAAAFgAAA2QAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAAAWAAACUwAAABYAAAJkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAFgAAA1MAAAAWAAABZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAABYAAABTAAAAFgAAA2QAAAAAAAAAAAAAAA== 5,4: ind: 5,4 - tiles: AAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAABoAAANXAAAAGgAAAWgAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAAAaAAADVwAAABoAAANoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAGgAAAlcAAAAaAAACaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAABoAAAFXAAAAGgAAAmgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAaAAAAVwAAABoAAAAaAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAGgAAAVcAAAAaAAADGgAAA2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAABoAAABXAAAAGgAAARoAAAJoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAABYAAANTAAAAFgAAAWQAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAAAWAAADUwAAABYAAANkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAFgAAAlMAAAAWAAACZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAABYAAAFTAAAAFgAAAmQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAWAAAAUwAAABYAAAAWAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAFgAAAVMAAAAWAAADFgAAA2QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAABYAAABTAAAAFgAAARYAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 5,2: ind: 5,2 - tiles: aAAAAEsAAANLAAAASwAAAlcAAAAaAAADGgAAAhoAAAIaAAACGgAAAhoAAANXAAAAQAAAAEAAAABAAAAAQAAAAGgAAABLAAACSwAAAksAAANoAAAAGgAAABoAAAIaAAADGgAAAGgAAABoAAAAaAAAABIAAAASAAAAEgAAABIAAABoAAAASwAAAEsAAANLAAADaAAAAGgAAAAaAAABGgAAAhoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAACSwAAAmgAAABoAAAAGgAAABoAAAEaAAACGgAAABoAAAEaAAACGgAAABoAAAFXAAAAGgAAA2gAAABLAAAASwAAAksAAANoAAAAaAAAABoAAAEaAAADGgAAA2gAAAAaAAADGgAAABoAAAEaAAADaAAAABoAAAFoAAAASwAAA0sAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAEsAAANLAAAASwAAAlcAAAAaAAAAGgAAAxoAAAMaAAACGgAAARoAAAIaAAAAGgAAABoAAAAaAAACGgAAAFcAAABLAAAASwAAAEsAAAFXAAAAGgAAARoAAAEaAAAAGgAAARoAAAIaAAACGgAAAxoAAAAaAAACGgAAABoAAABXAAAASwAAAUsAAABLAAAAVwAAABoAAAIaAAABGgAAAxoAAAMaAAACGgAAAhoAAAMaAAAAGgAAABoAAAAaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAGUAAABlAAADZQAAA2UAAAFoAAAALAAAACwAAAAsAAAAaAAAAFcAAABoAAAALAAAACwAAAAsAAAAaAAAABoAAAFlAAADZQAAA2UAAABlAAABaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACZQAAA2UAAAFlAAADZQAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAA2UAAANlAAAAZQAAAWUAAAJoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAABZQAAAmUAAANlAAACaAAAAGgAAABoAAAAQAAAAEAAAABAAAAAQAAAAEAAAABoAAAAaAAAAGgAAAAaAAACZQAAAhoAAAEaAAABGgAAA2gAAABoAAAAaAAAAEAAAAAwAAAAQAAAADAAAABAAAAAaAAAAGgAAABoAAAAGgAAAQ== + tiles: ZAAAAEcAAANHAAAARwAAAlMAAAAWAAADFgAAAhYAAAIWAAACFgAAAhYAAANTAAAAPAAAADwAAAA8AAAAPAAAAGQAAABHAAACRwAAAkcAAANkAAAAFgAAABYAAAIWAAADFgAAAGQAAABkAAAAZAAAAA4AAAAOAAAADgAAAA4AAABkAAAARwAAAEcAAANHAAADZAAAAGQAAAAWAAABFgAAAhYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAACRwAAAmQAAABkAAAAFgAAABYAAAEWAAACFgAAABYAAAEWAAACFgAAABYAAAFTAAAAFgAAA2QAAABHAAAARwAAAkcAAANkAAAAZAAAABYAAAEWAAADFgAAA2QAAAAWAAADFgAAABYAAAEWAAADZAAAABYAAAFkAAAARwAAA0cAAABHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAEcAAANHAAAARwAAAlMAAAAWAAAAFgAAAxYAAAMWAAACFgAAARYAAAIWAAAAFgAAABYAAAAWAAACFgAAAFMAAABHAAAARwAAAEcAAAFTAAAAFgAAARYAAAEWAAAAFgAAARYAAAIWAAACFgAAAxYAAAAWAAACFgAAABYAAABTAAAARwAAAUcAAABHAAAAUwAAABYAAAIWAAABFgAAAxYAAAMWAAACFgAAAhYAAAMWAAAAFgAAABYAAAAWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAGEAAABhAAADYQAAA2EAAAFkAAAAKAAAACgAAAAoAAAAZAAAAFMAAABkAAAAKAAAACgAAAAoAAAAZAAAABYAAAFhAAADYQAAA2EAAABhAAABZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACYQAAA2EAAAFhAAADYQAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAA2EAAANhAAAAYQAAAWEAAAJkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAABYQAAAmEAAANhAAACZAAAAGQAAABkAAAAPAAAADwAAAA8AAAAPAAAADwAAABkAAAAZAAAAGQAAAAWAAACYQAAAhYAAAEWAAABFgAAA2QAAABkAAAAZAAAADwAAAAsAAAAPAAAACwAAAA8AAAAZAAAAGQAAABkAAAAFgAAAQ== 4,3: ind: 4,3 - tiles: ZQAAAmUAAABoAAAAGgAAARoAAAMaAAACGgAAABoAAAJXAAAAVwAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAACwAAAAsAAAALAAAACwAAAAsAAAAVwAAAFcAAAAaAAABaAAAADcAAAA3AAAANwAAAGUAAAAaAAABGgAAAGgAAAAaAAACGgAAARoAAAIaAAADGgAAAlcAAABXAAAAGgAAAmgAAAA3AAAANwAAADcAAABlAAABGgAAARoAAAFoAAAAGgAAARoAAAIaAAACGgAAABoAAANXAAAAVwAAABoAAAJoAAAANwAAADcAAAA3AAAAZQAAAmgAAABoAAAAaAAAACwAAAAsAAAALAAAACwAAAAsAAAAVwAAAFcAAAAaAAACaAAAAGgAAABoAAAAaAAAAFcAAAAaAAADGgAAA2gAAAAaAAACGgAAARoAAAAaAAAAGgAAA1cAAABXAAAAGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAZQAAAWUAAANoAAAAGgAAAhoAAAEaAAABGgAAAxoAAAFXAAAAVwAAABoAAAJoAAAAaAAAAGgAAABXAAAAaAAAACoAAAFlAAABaAAAACwAAAAsAAAALAAAACwAAAAsAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAAAqAAAAZQAAAlcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAGgAAAWgAAAAaAAAAGgAAAhoAAAMaAAAAKgAAAGUAAABoAAAAGgAAABoAAAIaAAACGgAAAxoAAAFXAAAAVwAAABoAAAFoAAAAGgAAAxoAAAEaAAACGgAAAyoAAAJlAAABaAAAABoAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAqAAACZQAAA2gAAAAaAAACVwAAAFcAAABXAAAAVwAAAFcAAAAaAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAA2UAAAJoAAAAGgAAARoAAAJXAAAAVwAAAFcAAAAaAAAAGgAAA2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YQAAAmEAAABkAAAAFgAAARYAAAMWAAACFgAAABYAAAJTAAAAUwAAABYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAACgAAAAoAAAAKAAAACgAAAAoAAAAUwAAAFMAAAAWAAABZAAAADMAAAAzAAAAMwAAAGEAAAAWAAABFgAAAGQAAAAWAAACFgAAARYAAAIWAAADFgAAAlMAAABTAAAAFgAAAmQAAAAzAAAAMwAAADMAAABhAAABFgAAARYAAAFkAAAAFgAAARYAAAIWAAACFgAAABYAAANTAAAAUwAAABYAAAJkAAAAMwAAADMAAAAzAAAAYQAAAmQAAABkAAAAZAAAACgAAAAoAAAAKAAAACgAAAAoAAAAUwAAAFMAAAAWAAACZAAAAGQAAABkAAAAZAAAAFMAAAAWAAADFgAAA2QAAAAWAAACFgAAARYAAAAWAAAAFgAAA1MAAABTAAAAFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAYQAAAWEAAANkAAAAFgAAAhYAAAEWAAABFgAAAxYAAAFTAAAAUwAAABYAAAJkAAAAZAAAAGQAAABTAAAAZAAAACYAAAFhAAABZAAAACgAAAAoAAAAKAAAACgAAAAoAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAAAmAAAAYQAAAlMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAFgAAAWQAAAAWAAAAFgAAAhYAAAMWAAAAJgAAAGEAAABkAAAAFgAAABYAAAIWAAACFgAAAxYAAAFTAAAAUwAAABYAAAFkAAAAFgAAAxYAAAEWAAACFgAAAyYAAAJhAAABZAAAABYAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAmAAACYQAAA2QAAAAWAAACUwAAAFMAAABTAAAAUwAAAFMAAAAWAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAA2EAAAJkAAAAFgAAARYAAAJTAAAAUwAAAFMAAAAWAAAAFgAAA2QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 4,2: ind: 4,2 - tiles: GgAAAhoAAAAaAAABaAAAAGUAAAJlAAABZQAAA2UAAANlAAADaAAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAABoAAAIaAAACGgAAARoAAAJlAAABZQAAAGUAAAJlAAADZQAAAWgAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAAaAAAAGgAAARoAAANoAAAAZQAAAGUAAANlAAABZQAAAGUAAAFoAAAAZQAAAmUAAAJlAAADZQAAAWUAAAJlAAACGgAAAhoAAAIaAAAAaAAAAGUAAANlAAADZQAAAGUAAABlAAADaAAAAGUAAAEaAAADZQAAAWUAAANlAAADZQAAABoAAAAaAAACGgAAAWgAAABlAAACZQAAAWUAAAFlAAACZQAAAmgAAABoAAAAaAAAAGgAAABlAAAAZQAAA2UAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADaAAAAGgAAABoAAAAGgAAAhoAAAFoAAAAGgAAAWgAAABoAAAASwAAAUsAAAFLAAAASwAAA0sAAAJLAAACSwAAAUsAAAFLAAACSwAAAUsAAABLAAADSwAAA0sAAAFLAAABSwAAAUsAAANLAAADSwAAAEsAAAFLAAACSwAAAksAAAFLAAADSwAAAUsAAAJLAAABSwAAAksAAAFLAAABSwAAAksAAABLAAABSwAAAUsAAAJLAAABSwAAAksAAAFLAAAASwAAAksAAABLAAACSwAAAksAAABLAAAASwAAAEsAAANLAAABaAAAABoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAAaAAAAaAAAACwAAAAsAAAALAAAAGgAAAAaAAAAVwAAAFcAAAAaAAAAaAAAAGUAAABlAAAAZQAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAlcAAABXAAAAGgAAAmgAAABlAAADZQAAAWUAAAEaAAAAZQAAAWUAAABoAAAAGgAAARoAAAEaAAACaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAGgAAAxoAAAAaAAADSwAAAGUAAABlAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAABoAAAIaAAACGgAAAksAAANlAAADZQAAAWgAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAGgAAAmgAAAAaAAABGgAAARoAAAFlAAAAZQAAAmUAAAJoAAAAGgAAABoAAAMaAAABGgAAAxoAAANXAAAAVwAAABoAAAJoAAAAGgAAAhoAAAIaAAABZQAAAQ== + tiles: FgAAAhYAAAAWAAABZAAAAGEAAAJhAAABYQAAA2EAAANhAAADZAAAADMAAAAzAAAAMwAAADMAAAAzAAAAMwAAABYAAAIWAAACFgAAARYAAAJhAAABYQAAAGEAAAJhAAADYQAAAWQAAAAzAAAAMwAAADMAAAAzAAAAMwAAADMAAAAWAAAAFgAAARYAAANkAAAAYQAAAGEAAANhAAABYQAAAGEAAAFkAAAAYQAAAmEAAAJhAAADYQAAAWEAAAJhAAACFgAAAhYAAAIWAAAAZAAAAGEAAANhAAADYQAAAGEAAABhAAADZAAAAGEAAAEWAAADYQAAAWEAAANhAAADYQAAABYAAAAWAAACFgAAAWQAAABhAAACYQAAAWEAAAFhAAACYQAAAmQAAABkAAAAZAAAAGQAAABhAAAAYQAAA2EAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADZAAAAGQAAABkAAAAFgAAAhYAAAFkAAAAFgAAAWQAAABkAAAARwAAAUcAAAFHAAAARwAAA0cAAAJHAAACRwAAAUcAAAFHAAACRwAAAUcAAABHAAADRwAAA0cAAAFHAAABRwAAAUcAAANHAAADRwAAAEcAAAFHAAACRwAAAkcAAAFHAAADRwAAAUcAAAJHAAABRwAAAkcAAAFHAAABRwAAAkcAAABHAAABRwAAAUcAAAJHAAABRwAAAkcAAAFHAAAARwAAAkcAAABHAAACRwAAAkcAAABHAAAARwAAAEcAAANHAAABZAAAABYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAAWAAAAZAAAACgAAAAoAAAAKAAAAGQAAAAWAAAAUwAAAFMAAAAWAAAAZAAAAGEAAABhAAAAYQAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAlMAAABTAAAAFgAAAmQAAABhAAADYQAAAWEAAAEWAAAAYQAAAWEAAABkAAAAFgAAARYAAAEWAAACZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAFgAAAxYAAAAWAAADRwAAAGEAAABhAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAABYAAAIWAAACFgAAAkcAAANhAAADYQAAAWQAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAFgAAAmQAAAAWAAABFgAAARYAAAFhAAAAYQAAAmEAAAJkAAAAFgAAABYAAAMWAAABFgAAAxYAAANTAAAAUwAAABYAAAJkAAAAFgAAAhYAAAIWAAABYQAAAQ== 3,3: ind: 3,3 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAWUAAAJlAAACZQAAAmUAAANlAAADZQAAAwoAAAAKAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAEaAAACaAAAAGgAAAAMAAAGCgAAAAoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAEaAAAAGgAAABoAAAIaAAAACwAAAgoAAAAKAAAACgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACGgAAAhoAAAFoAAAAGgAAAQoAAAAKAAAACgAAAAoAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAAAKAAAACgAAAAoAAAAMAAAFaAAAAFAAAABoAAAASwAAAEsAAAFoAAAAGgAAAGUAAAFlAAADGgAAARoAAAIaAAABCgAAAAoAAAAKAAAACgAAAGgAAABoAAAAUAAAAEsAAAFoAAAAaAAAABoAAAJlAAABZQAAA2UAAANlAAADZQAAAgoAAAAKAAAACgAAAAoAAABoAAAAaAAAAEsAAABoAAAAaAAAAGgAAAAaAAABZQAAASoAAAMqAAAAIgAAAyoAAAEKAAAACgAAAAoAAAAKAAAAaAAAAEsAAABLAAAASwAAA2gAAABYAAAAGgAAA2UAAAIqAAAAKgAAAiIAAAMqAAAACgAAAAoAAAAKAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAABlAAABKgAAASoAAAASAAAAKgAAAwoAAAAKAAAACgAAAGgAAABLAAAASwAAAmgAAABQAAAASwAAAWgAAAAaAAAAZQAAACoAAAIqAAADKgAAAyoAAAEKAAAACgAAAAoAAABoAAAAaAAAAGgAAABLAAACSwAAAGgAAABoAAAAGgAAAWUAAAMqAAADKgAAACoAAAIqAAADaAAAAGgAAABoAAAAaAAAAFAAAABLAAAASwAAAGgAAABLAAAAaAAAABoAAAFlAAADZQAAAWUAAAJlAAAAZQAAAQ8AAAFoAAAAaAAAAGgAAABQAAAAUAAAAEsAAAJLAAABSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAPAAAADwAAA2gAAABoAAAASwAAAWgAAABLAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAA8AAAJYAAAASwAAAWgAAABLAAAAaAAAAFAAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAWEAAAJhAAACYQAAAmEAAANhAAADYQAAAwYAAAAGAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAABYAAAEWAAACZAAAAGQAAAAGAAAGBgAAAAYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAEWAAAAFgAAABYAAAIWAAAABgAAAgYAAAAGAAAABgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACFgAAAhYAAAFkAAAAFgAAAQYAAAAGAAAABgAAAAYAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAABYAAABkAAAAZAAAAGQAAAAGAAAABgAAAAYAAAAGAAAFZAAAAEwAAABkAAAARwAAAEcAAAFkAAAAFgAAAGEAAAFhAAADFgAAARYAAAIWAAABBgAAAAYAAAAGAAAABgAAAGQAAABkAAAATAAAAEcAAAFkAAAAZAAAABYAAAJhAAABYQAAA2EAAANhAAADYQAAAgYAAAAGAAAABgAAAAYAAABkAAAAZAAAAEcAAABkAAAAZAAAAGQAAAAWAAABYQAAASYAAAMmAAAAHgAAAyYAAAEGAAAABgAAAAYAAAAGAAAAZAAAAEcAAABHAAAARwAAA2QAAABUAAAAFgAAA2EAAAImAAAAJgAAAh4AAAMmAAAABgAAAAYAAAAGAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAABhAAABJgAAASYAAAAOAAAAJgAAAwYAAAAGAAAABgAAAGQAAABHAAAARwAAAmQAAABMAAAARwAAAWQAAAAWAAAAYQAAACYAAAImAAADJgAAAyYAAAEGAAAABgAAAAYAAABkAAAAZAAAAGQAAABHAAACRwAAAGQAAABkAAAAFgAAAWEAAAMmAAADJgAAACYAAAImAAADZAAAAGQAAABkAAAAZAAAAEwAAABHAAAARwAAAGQAAABHAAAAZAAAABYAAAFhAAADYQAAAWEAAAJhAAAAYQAAAQsAAAFkAAAAZAAAAGQAAABMAAAATAAAAEcAAAJHAAABRwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAALAAAACwAAA2QAAABkAAAARwAAAWQAAABHAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAsAAAJUAAAARwAAAWQAAABHAAAAZAAAAEwAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,3: ind: 2,3 - tiles: WwAAAFsAAAJoAAAAWwAAAFsAAAJoAAAAaAAAAGgAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAANbAAABaAAAAFsAAABbAAABaAAAAGgAAABoAAAAaAAAAGgAAAAKAAAACgAAAAoAAAALAAABCgAAAAoAAABbAAAAWwAAA2gAAABbAAACWwAAA2gAAABoAAAASwAAAGgAAAAKAAAACgAAAAoAAAALAAADCgAAAAoAAAAKAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABLAAADaAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAKAAAACgAAAAoAAAAKAAAACgAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAACgAAAAoAAAAKAAAACgAAAAoAAABoAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAAVwAAAGgAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAoAAAAKAAAACwAAAgoAAAAKAAAACgAAAGgAAABXAAAAaAAAAEsAAABLAAACSwAAAUsAAAFLAAABSwAAA2gAAAAKAAAACgAAAAoAAAAKAAAACwAAAQoAAABoAAAAVwAAAGgAAABLAAABSwAAA0sAAAFLAAABSwAAAUsAAAFoAAAACgAAAAoAAAAKAAAACgAAAAsAAAIKAAAAaAAAAFcAAABoAAAASwAAAksAAAJLAAADSwAAAksAAAFLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAJLAAADSwAAAWgAAABoAAAADwAAAWgAAABoAAAAaAAAAA8AAAFoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAA8AAAMPAAAADwAAAg8AAAEPAAACaAAAAGgAAABoAAAAaAAAAGgAAAAPAAAAaAAAAGgAAABoAAAADwAAAQ8AAAEPAAACaAAAAA8AAAAPAAACDwAAAQ== + tiles: VwAAAFcAAAJkAAAAVwAAAFcAAAJkAAAAZAAAAGQAAABMAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAANXAAABZAAAAFcAAABXAAABZAAAAGQAAABkAAAAZAAAAGQAAAAGAAAABgAAAAYAAAAGAAABBgAAAAYAAABXAAAAVwAAA2QAAABXAAACVwAAA2QAAABkAAAARwAAAGQAAAAGAAAABgAAAAYAAAAGAAADBgAAAAYAAAAGAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABHAAADZAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAGAAAABgAAAAYAAAAGAAAABgAAAGQAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAABgAAAAYAAAAGAAAABgAAAAYAAABkAAAAUwAAAGQAAABTAAAAZAAAAGQAAABkAAAAUwAAAGQAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAYAAAAGAAAABgAAAgYAAAAGAAAABgAAAGQAAABTAAAAZAAAAEcAAABHAAACRwAAAUcAAAFHAAABRwAAA2QAAAAGAAAABgAAAAYAAAAGAAAABgAAAQYAAABkAAAAUwAAAGQAAABHAAABRwAAA0cAAAFHAAABRwAAAUcAAAFkAAAABgAAAAYAAAAGAAAABgAAAAYAAAIGAAAAZAAAAFMAAABkAAAARwAAAkcAAAJHAAADRwAAAkcAAAFHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAJHAAADRwAAAWQAAABkAAAACwAAAWQAAABkAAAAZAAAAAsAAAFkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABkAAAAZAAAAGQAAABkAAAAZAAAAAsAAAMLAAAACwAAAgsAAAELAAACZAAAAGQAAABkAAAAZAAAAGQAAAALAAAAZAAAAGQAAABkAAAACwAAAQsAAAELAAACZAAAAAsAAAALAAACCwAAAQ== 3,4: ind: 3,4 - tiles: DwAAAGgAAABoAAAAaAAAAGgAAABLAAADaAAAAGgAAABLAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAACgAAAAoAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAA== + tiles: CwAAAGQAAABkAAAAZAAAAGQAAABHAAADZAAAAGQAAABHAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAABgAAAAYAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAA== 4,4: ind: 4,4 - tiles: ZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,4: ind: 2,4 - tiles: aAAAAGgAAABoAAAAaAAAAFgAAABoAAAADwAAAQ8AAAIPAAAADwAAA2gAAABoAAAAaAAAAA8AAAFoAAAADwAAAGgAAABoAAAAaAAAAGgAAABoAAAADwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAKAAAACgAAAAoAAAALAAADCwAAAQoAAAAKAAAACgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAsAAAIKAAAACgAAAAoAAAALAAADCwAAAQoAAAAKAAAACgAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAKAAAACgAAAGgAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAFQAAABkAAAACwAAAQsAAAILAAAACwAAA2QAAABkAAAAZAAAAAsAAAFkAAAACwAAAGQAAABkAAAAZAAAAGQAAABkAAAACwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAGAAAABgAAAAYAAAAGAAADBgAAAQYAAAAGAAAABgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAYAAAIGAAAABgAAAAYAAAAGAAADBgAAAQYAAAAGAAAABgAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAGAAAABgAAAGQAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== 6,-6: ind: 6,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAACoAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAACYAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAA== 7,-5: ind: 7,-5 - tiles: ZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,5: ind: 3,5 - tiles: ZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAKgAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAJgAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,5: ind: 2,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 4,5: ind: 4,5 - tiles: ZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,5: ind: 0,5 - tiles: AAAAAAoAAAAMAAAECgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAMAAAHCgAAAAoAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAwAAAUKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAABoAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAYAAAAGAAAEBgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAHBgAAAAYAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAUGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAABkAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,5: ind: 1,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,5: ind: -1,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - bodyStatus: InAir @@ -17425,34 +17423,64 @@ entities: type: Transform - uid: 29005 components: + - name: Dorm 5 + type: MetaData - pos: 80.5,18.5 parent: 13329 type: Transform + - links: + - 24281 + type: DeviceLinkSink - uid: 29006 components: + - name: Dorm 6 + type: MetaData - pos: 84.5,18.5 parent: 13329 type: Transform + - links: + - 24285 + type: DeviceLinkSink - uid: 29007 components: + - name: Dorm 4 + type: MetaData - pos: 84.5,21.5 parent: 13329 type: Transform + - links: + - 24284 + type: DeviceLinkSink - uid: 29008 components: + - name: Dorm 3 + type: MetaData - pos: 80.5,21.5 parent: 13329 type: Transform + - links: + - 24282 + type: DeviceLinkSink - uid: 29009 components: + - name: Dorm 1 + type: MetaData - pos: 80.5,24.5 parent: 13329 type: Transform + - links: + - 24277 + type: DeviceLinkSink - uid: 29010 components: + - name: Dorm 2 + type: MetaData - pos: 84.5,24.5 parent: 13329 type: Transform + - links: + - 24283 + type: DeviceLinkSink - uid: 29074 components: - pos: 74.5,17.5 @@ -80728,6 +80756,32 @@ entities: - pos: 80.5,-19.5 parent: 13329 type: Transform + - uid: 24477 + components: + - pos: 99.5,-5.5 + parent: 13329 + type: Transform + - enabled: True + type: AmbientSound + - uid: 24505 + components: + - pos: 98.5,-5.5 + parent: 13329 + type: Transform + - uid: 24657 + components: + - pos: 97.5,-5.5 + parent: 13329 + type: Transform + - enabled: True + type: AmbientSound + - uid: 24658 + components: + - pos: 96.5,-5.5 + parent: 13329 + type: Transform + - enabled: True + type: AmbientSound - uid: 24894 components: - pos: 60.5,-10.5 @@ -119763,55 +119817,11 @@ entities: - pos: 56.48937,-16.046814 parent: 13329 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - uid: 15528 components: - pos: 56.55187,-16.249939 parent: 13329 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - uid: 19986 components: - pos: 41.480545,-35.30919 @@ -119857,28 +119867,6 @@ entities: - pos: -42.514347,2.6634603 parent: 13329 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - uid: 32400 components: - pos: 35.394306,-5.3188667 @@ -119928,28 +119916,6 @@ entities: - pos: 132.84602,3.5240808 parent: 13329 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - proto: FloodlightBroken entities: - uid: 5413 @@ -169856,28 +169822,6 @@ entities: - pos: -11.291338,10.87907 parent: 13329 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - proto: LampGold entities: - uid: 1144 @@ -169915,28 +169859,6 @@ entities: - pos: -21.410488,56.800785 parent: 13329 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - uid: 10550 components: - pos: 37.57843,20.954947 @@ -184098,11 +184020,6 @@ entities: - pos: 76.5,22.5 parent: 13329 type: Transform - - uid: 29261 - components: - - pos: 78.5,26.5 - parent: 13329 - type: Transform - uid: 29262 components: - pos: 88.5,22.5 @@ -184471,6 +184388,11 @@ entities: - pos: -32.5,22.5 parent: 13329 type: Transform + - uid: 24755 + components: + - pos: 51.5,29.5 + parent: 13329 + type: Transform - uid: 29156 components: - pos: 66.5,19.5 @@ -191035,6 +190957,62 @@ entities: 35311: - Pressed: Toggle type: DeviceLinkSource +- proto: SignalButtonDirectional + entities: + - uid: 24277 + components: + - pos: 78.5,26.5 + parent: 13329 + type: Transform + - linkedPorts: + 29009: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 24281 + components: + - pos: 78.5,20.5 + parent: 13329 + type: Transform + - linkedPorts: + 29005: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 24282 + components: + - pos: 78.5,23.5 + parent: 13329 + type: Transform + - linkedPorts: + 29008: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 24283 + components: + - pos: 86.5,26.5 + parent: 13329 + type: Transform + - linkedPorts: + 29010: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 24284 + components: + - pos: 86.5,23.5 + parent: 13329 + type: Transform + - linkedPorts: + 29007: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 24285 + components: + - pos: 86.5,20.5 + parent: 13329 + type: Transform + - linkedPorts: + 29006: + - Pressed: DoorBolt + type: DeviceLinkSource - proto: SignAnomaly entities: - uid: 20083 @@ -192019,6 +191997,13 @@ entities: - pos: 122.5,-6.5 parent: 13329 type: Transform +- proto: SignRedFive + entities: + - uid: 24290 + components: + - pos: 80.5,19.5 + parent: 13329 + type: Transform - proto: SignRedFour entities: - uid: 10575 @@ -192032,6 +192017,11 @@ entities: - pos: 35.5,3.5 parent: 13329 type: Transform + - uid: 24289 + components: + - pos: 84.5,22.5 + parent: 13329 + type: Transform - proto: SignRedOne entities: - uid: 10579 @@ -192045,6 +192035,18 @@ entities: - pos: 26.5,3.5 parent: 13329 type: Transform + - uid: 24286 + components: + - pos: 80.5,25.5 + parent: 13329 + type: Transform +- proto: SignRedSix + entities: + - uid: 24344 + components: + - pos: 84.5,19.5 + parent: 13329 + type: Transform - proto: SignRedThree entities: - uid: 10584 @@ -192058,6 +192060,11 @@ entities: - pos: 32.5,3.5 parent: 13329 type: Transform + - uid: 24288 + components: + - pos: 80.5,22.5 + parent: 13329 + type: Transform - proto: SignRedTwo entities: - uid: 10585 @@ -192071,6 +192078,11 @@ entities: - pos: 29.5,3.5 parent: 13329 type: Transform + - uid: 24287 + components: + - pos: 84.5,25.5 + parent: 13329 + type: Transform - proto: SignRND entities: - uid: 15261 @@ -195718,6 +195730,18 @@ entities: - pos: -15.5,29.5 parent: 13329 type: Transform +- proto: SpawnPointBorg + entities: + - uid: 24412 + components: + - pos: 34.5,-21.5 + parent: 13329 + type: Transform + - uid: 24432 + components: + - pos: 36.5,-21.5 + parent: 13329 + type: Transform - proto: SpawnPointBotanist entities: - uid: 1779 @@ -196563,6 +196587,12 @@ entities: pos: 70.5,18.5 parent: 13329 type: Transform + - uid: 24756 + components: + - rot: -1.5707963267948966 rad + pos: 51.5,28.5 + parent: 13329 + type: Transform - uid: 26506 components: - rot: 1.5707963267948966 rad @@ -203543,6 +203573,31 @@ entities: - pos: 38.5,29.5 parent: 13329 type: Transform +- proto: TegCenter + entities: + - uid: 24280 + components: + - rot: 1.5707963267948966 rad + pos: 99.5,-36.5 + parent: 13329 + type: Transform +- proto: TegCirculator + entities: + - uid: 24278 + components: + - pos: 100.5,-36.5 + parent: 13329 + type: Transform + - color: '#FF3300FF' + type: PointLight + - uid: 24279 + components: + - rot: 3.141592653589793 rad + pos: 98.5,-36.5 + parent: 13329 + type: Transform + - color: '#FF3300FF' + type: PointLight - proto: TelecomServer entities: - uid: 13287 diff --git a/Resources/Maps/infiltrator.yml b/Resources/Maps/infiltrator.yml index f5d95a9d66e..0cba6c828b2 100644 --- a/Resources/Maps/infiltrator.yml +++ b/Resources/Maps/infiltrator.yml @@ -3769,28 +3769,6 @@ entities: - pos: -1.483297,-2.2444057 parent: 73 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - proto: LockerSyndicatePersonal entities: - uid: 692 @@ -4737,14 +4715,6 @@ entities: - pos: -4.5,-17.5 parent: 73 type: Transform -- proto: SyndicateComputerComms - entities: - - uid: 556 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 73 - type: Transform - proto: SyndieMiniBomb entities: - uid: 723 diff --git a/Resources/Maps/kettle.yml b/Resources/Maps/kettle.yml index b9acd22947c..65e64eedd4d 100644 --- a/Resources/Maps/kettle.yml +++ b/Resources/Maps/kettle.yml @@ -1,64 +1,64 @@ meta: - format: 5 + format: 6 postmapinit: false tilemap: 0: Space 1: FloorArcadeBlue 2: FloorArcadeBlue2 3: FloorArcadeRed - 4: FloorAsteroidCoarseSand0 - 5: FloorAsteroidCoarseSandDug - 14: FloorBlue - 15: FloorBlueCircuit - 18: FloorCarpetClown - 19: FloorCarpetOffice - 20: FloorCave - 22: FloorClown - 23: FloorDark - 24: FloorDarkDiagonal - 26: FloorDarkHerringbone - 27: FloorDarkMini - 28: FloorDarkMono - 29: FloorDarkOffset - 30: FloorDarkPavement - 31: FloorDarkPavementVertical - 32: FloorDarkPlastic - 34: FloorDirt - 35: FloorEighties - 38: FloorFreezer - 39: FloorGlass - 41: FloorGrass - 42: FloorGrassDark - 44: FloorGrassLight - 45: FloorGreenCircuit - 47: FloorHydro - 49: FloorLaundry - 50: FloorLino - 51: FloorLowDesert - 52: FloorMetalDiamond - 53: FloorMime - 54: FloorMono - 58: FloorRGlass - 59: FloorReinforced - 61: FloorShowroom - 68: FloorSnow - 69: FloorSteel - 70: FloorSteelDiagonal - 72: FloorSteelDirty - 74: FloorSteelMini - 75: FloorSteelMono - 76: FloorSteelOffset - 77: FloorSteelPavement - 79: FloorTechMaint - 82: FloorWhite - 83: FloorWhiteDiagonal - 84: FloorWhiteDiagonalMini - 86: FloorWhiteMini - 88: FloorWhiteOffset - 91: FloorWhitePlastic - 92: FloorWood - 94: Lattice - 95: Plating + 6: FloorAsteroidSand + 7: FloorAsteroidSandDug + 13: FloorBlue + 14: FloorBlueCircuit + 17: FloorCarpetClown + 18: FloorCarpetOffice + 19: FloorCave + 21: FloorClown + 22: FloorDark + 23: FloorDarkDiagonal + 25: FloorDarkHerringbone + 26: FloorDarkMini + 27: FloorDarkMono + 28: FloorDarkOffset + 29: FloorDarkPavement + 30: FloorDarkPavementVertical + 31: FloorDarkPlastic + 33: FloorDirt + 34: FloorEighties + 37: FloorFreezer + 38: FloorGlass + 40: FloorGrass + 41: FloorGrassDark + 43: FloorGrassLight + 44: FloorGreenCircuit + 48: FloorHydro + 50: FloorLaundry + 51: FloorLino + 52: FloorLowDesert + 53: FloorMetalDiamond + 54: FloorMime + 55: FloorMono + 59: FloorRGlass + 60: FloorReinforced + 63: FloorShowroom + 70: FloorSnow + 71: FloorSteel + 74: FloorSteelDiagonal + 76: FloorSteelDirty + 78: FloorSteelMini + 79: FloorSteelMono + 80: FloorSteelOffset + 81: FloorSteelPavement + 83: FloorTechMaint + 87: FloorWhite + 88: FloorWhiteDiagonal + 89: FloorWhiteDiagonalMini + 91: FloorWhiteMini + 93: FloorWhiteOffset + 96: FloorWhitePlastic + 97: FloorWood + 99: Lattice + 100: Plating entities: - proto: "" entities: @@ -71,343 +71,456 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: TwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAACRQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAAEUAAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAARQAAAEUAAABFAAADTwAAAF8AAABPAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAEUAAABFAAADRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAEUAAAEcAAADFwAAARwAAAITAAAAXwAAAF8AAAAtAAAALQAAAC0AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAFFAAACHAAAABcAAAAcAAABEwAAAF8AAABfAAAAXwAAAD0AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAACRQAAABcAAAMXAAACFwAAARMAAABfAAAAPQAAAD0AAAA9AAAAPQAAAD0AAABfAAAAXwAAAF8AAABFAAAARQAAAUUAAAFfAAAAXgAAAF8AAAATAAAAXwAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAXwAAAF8AAABfAAAARQAAA0UAAAFFAAAAXwAAAF4AAABeAAAAEwAAAF8AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAF8AAABfAAAAXwAAAEUAAABFAAADRQAAAV8AAABfAAAAAAAAAF8AAABfAAAAXwAAAF8AAAA9AAAAXwAAAF8AAABfAAAATwAAAF8AAABFAAABRQAAAEUAAAFFAAADXwAAAF8AAABFAAABRQAAAkUAAAJFAAADRQAAA0UAAAFFAAAARQAAAUUAAANFAAABRQAAA0UAAANFAAABRQAAAEUAAABFAAAARQAAA0UAAAJFAAAARQAAA0UAAAFFAAACRQAAAkUAAAJFAAABRQAAA0UAAAFFAAABRQAAAUUAAABFAAABRQAAAEUAAAJFAAAARQAAAEUAAAFFAAAARQAAAkUAAABFAAABRQAAAkUAAAFFAAACRQAAAEUAAANFAAAARQAAA0UAAANfAAAATwAAAF8AAABcAAABXwAAAF8AAABfAAAASwAAACoAAAMqAAACKgAAAksAAAJfAAAAXwAAAF8AAAAeAAACXwAAAF8AAABfAAAAXAAAAVwAAAFcAAAAXwAAAEsAAANLAAADSwAAAUsAAANLAAABXwAAAF4AAABfAAAAXwAAAA== + tiles: UwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAAARwAAAAAARwAAAAADUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAABGwAAAAADFgAAAAABGwAAAAACEgAAAAAAZAAAAAAAZAAAAAAALAAAAAAALAAAAAAALAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAACGwAAAAAAFgAAAAAAGwAAAAABEgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAAAFgAAAAADFgAAAAACFgAAAAABEgAAAAAAZAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAABZAAAAAAAYwAAAAAAZAAAAAAAEgAAAAAAZAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAEgAAAAAAZAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAADZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAADRwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAACRwAAAAACRwAAAAABRwAAAAADRwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAACRwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAADZAAAAAAAUwAAAAAAZAAAAAAAYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAATwAAAAAAKQAAAAADKQAAAAACKQAAAAACTwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAHQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAABYQAAAAAAZAAAAAAATwAAAAADTwAAAAADTwAAAAABTwAAAAADTwAAAAABZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAA + version: 6 0,-1: ind: 0,-1 - tiles: TwAAADIAAAAyAAAAMgAAADIAAAAyAAAAXwAAAFYAAAJfAAAAXAAAAV8AAAAbAAADGwAAAhsAAAJfAAAAXwAAAF8AAAAyAAAAMgAAADIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAGwAAARsAAAIbAAABXwAAAF8AAABfAAAAMgAAADIAAAAyAAAAXwAAABwAAAMcAAACHAAAARwAAAEcAAABXwAAABsAAAIbAAAAGwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAl8AAAAcAAACHwAAAB8AAAIfAAACHAAAA18AAAAbAAABXwAAAF8AAABfAAAAXwAAABwAAAAcAAADHAAAAxwAAAIcAAADHAAAABoAAAIfAAADGgAAABwAAAEcAAAAHAAAAxwAAAMcAAADHAAAAhwAAAIcAAACHgAAAR4AAAAeAAADHgAAAR4AAAMeAAABHwAAAB4AAAMeAAADHgAAAB4AAAIeAAADHgAAAhwAAAEcAAABHAAAAxwAAAMcAAADHAAAAhwAAAMcAAABHAAAAhwAAAIcAAACHAAAAxwAAAAcAAADHAAAAhwAAAAcAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAA0UAAAFFAAADRQAAA0UAAANFAAACRQAAAkUAAAJFAAAARQAAAEUAAAFFAAADRQAAAEUAAAFFAAADRQAAAkUAAAJFAAAARQAAA0UAAAJFAAACRQAAA0UAAABFAAACRQAAAEUAAAFFAAAARQAAAUUAAABFAAABRQAAAkUAAAJFAAAARQAAA0UAAAFFAAABRQAAAEUAAABFAAADRQAAAEUAAABFAAAARQAAA0UAAABFAAAARQAAAkUAAAMeAAACHgAAAB4AAAIeAAACXwAAAB4AAAMeAAAAHgAAAx4AAAIeAAACXwAAAB4AAAMeAAAAHgAAAx4AAAAeAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: UwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAWwAAAAACZAAAAAAAYQAAAAABZAAAAAAAGgAAAAADGgAAAAACGgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGgAAAAABGgAAAAACGgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAABGwAAAAABZAAAAAAAGgAAAAACGgAAAAAAGgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAGwAAAAACHgAAAAAAHgAAAAACHgAAAAACGwAAAAADZAAAAAAAGgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAADGwAAAAAAGQAAAAACHgAAAAADGQAAAAAAGwAAAAABGwAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAACGwAAAAACGwAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAABHgAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAACGwAAAAABGwAAAAABGwAAAAADGwAAAAADGwAAAAADGwAAAAACGwAAAAADGwAAAAABGwAAAAACGwAAAAACGwAAAAACGwAAAAADGwAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAADRwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAACRwAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAACZAAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAACHQAAAAACZAAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + version: 6 -1,0: ind: -1,0 - tiles: XwAAAF8AAABfAAAAXAAAAlwAAANcAAAAXwAAAF8AAABfAAAAXwAAADIAAABfAAAAXwAAAAAAAABeAAAAAAAAAF8AAABPAAAAXwAAAFwAAABcAAAAXAAAA1wAAAAyAAAAMgAAADIAAAAyAAAAMgAAAF8AAAAAAAAAXgAAAF4AAABfAAAATwAAAF8AAABcAAADXAAAAFwAAAJfAAAAMgAAADIAAAAyAAAAMgAAADIAAABfAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAAAyAAAAXwAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAF8AAABPAAAAXwAAAE8AAABPAAAAXwAAAF8AAABPAAAATwAAAE8AAABfAAAATwAAAF8AAABfAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAAAgAAAAIAAAAV8AAABfAAAAXwAAAF8AAABFAAABRQAAAUUAAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABcAAACXAAAA1wAAAJfAAAAXwAAAF8AAABfAAAARQAAAkUAAAFFAAACXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXAAAA1wAAAJcAAABXwAAAE8AAABfAAAAXwAAAEUAAAFFAAADRQAAAUUAAANFAAABRQAAAF8AAABfAAAAXwAAAFwAAABcAAADXAAAAl8AAABPAAAAXwAAAF8AAABFAAADRQAAAEUAAANFAAADRQAAAkUAAANFAAABXwAAAF8AAABcAAAAXAAAA1wAAANfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAFFAAADRQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAEUAAANfAAAAXwAAAF8AAABfAAAAXwAAACcAAAAnAAAAFwAAAhcAAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAABFwAAACcAAAAXAAAATwAAAF8AAABfAAAAXwAAAE8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAhcAAAMnAAAAFwAAA18AAABfAAAAXwAAAF8AAABPAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAADYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYQAAAAAAYQAAAAAAYQAAAAADYQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYQAAAAADYQAAAAAAYQAAAAACZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAHwAAAAAAHwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYQAAAAACYQAAAAADYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYQAAAAADYQAAAAACYQAAAAABZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAADRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAADYQAAAAACZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAADRwAAAAABZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAADYQAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAJgAAAAAAJgAAAAAAFgAAAAACFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAAAJgAAAAAAFgAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAADJgAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + version: 6 0,0: ind: 0,0 - tiles: AAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + version: 6 1,-1: ind: 1,-1 - tiles: TwAAAF8AAABFAAACRQAAAkUAAAJfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAHAAAAhwAAAInAAAAGwAAAF8AAABfAAAARQAAAkUAAAFFAAADXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAABwAAAMcAAABJwAAABsAAANfAAAAXwAAAEUAAAFFAAABRQAAAV8AAABfAAAATwAAAE8AAABfAAAATwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAAJPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAMcAAABRQAAA0UAAANFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAABHAAAAEUAAAJFAAACRQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAkUAAAFfAAAARQAAA0UAAAJFAAAARQAAAkUAAANFAAADRQAAA0UAAAJfAAAAXwAAAF4AAABfAAAARQAAA0UAAAFFAAAAXwAAAEUAAANMAAAATAAAAEwAAABMAAAATAAAAEwAAABFAAACXwAAAF8AAABeAAAAXwAAAEUAAAFFAAABRQAAAV8AAABFAAADTAAAAEwAAABMAAAATAAAAEwAAABMAAAARQAAAl8AAABfAAAAXwAAAF8AAABFAAAARQAAA0UAAABfAAAARQAAAkUAAABFAAAARQAAA0UAAANFAAABRQAAAEUAAANfAAAAXwAAAF8AAABFAAACRQAAAUUAAABFAAAAXwAAAF8AAABFAAACXwAAAF8AAABfAAAAXwAAAEUAAAJfAAAAXwAAAF8AAABFAAABRQAAAEUAAABFAAABRQAAAkUAAAJFAAAARQAAAkUAAAJFAAACRQAAA0UAAANFAAAARQAAA08AAABfAAAARQAAAEUAAAFFAAAARQAAAUUAAAJFAAAARQAAAEUAAAFFAAAARQAAA0UAAAFFAAABRQAAAUUAAABfAAAAXwAAAEUAAABFAAADRQAAA0UAAABFAAACRQAAAUUAAABFAAABRQAAA0UAAAFFAAADRQAAAkUAAABFAAACXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABFAAADXwAAAF8AAABfAAAAXwAAAEUAAANFAAACRQAAAV8AAABeAAAAXwAAAF4AAABfAAAAXwAAAE8AAABfAAAANgAAADYAAABKAAADSgAAAF8AAABFAAAARQAAAUUAAAFfAAAAAAAAAA== + tiles: UwAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAGwAAAAACGwAAAAACJgAAAAAAGgAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAGwAAAAADGwAAAAABJgAAAAAAGgAAAAADZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAACUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADGwAAAAABRwAAAAADRwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABGwAAAAAARwAAAAACRwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAABZAAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAAAZAAAAAAARwAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAARwAAAAACZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAABZAAAAAAARwAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAADRwAAAAADRwAAAAAARwAAAAADUwAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAADRwAAAAACRwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAABZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAANwAAAAAANwAAAAAATgAAAAADTgAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAABZAAAAAAAAAAAAAAA + version: 6 1,0: ind: 1,0 - tiles: XgAAAAAAAABfAAAAXwAAAE8AAABfAAAANgAAADYAAABKAAADSgAAA18AAABFAAABRQAAAEUAAAFfAAAAXgAAAF4AAAAAAAAAXwAAAF8AAABPAAAAXwAAADYAAAA2AAAASgAAA0oAAAFfAAAARQAAA0UAAABFAAADXwAAAF8AAABeAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAEUAAAFFAAADRQAAAEUAAAJFAAACXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABFAAADRQAAAEUAAAFFAAAARQAAAl4AAAAAAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAABFAAADRQAAAkUAAAFeAAAAAAAAAF8AAABfAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAEUAAAFfAAAARQAAAF8AAABFAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAANFAAAARQAAAUUAAANfAAAARQAAAF4AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABfAAAARQAAAEUAAAJFAAADRQAAA0UAAAJFAAABXwAAAEUAAAJeAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAACRQAAA0UAAANFAAABRQAAAkUAAAJFAAADRQAAAkUAAANFAAADXwAAAF8AAABfAAAAXwAAAEUAAANFAAAARQAAA0UAAANFAAABRQAAAEUAAAFFAAADRQAAAUUAAAFFAAADRQAAA18AAABfAAAAXwAAAF8AAABFAAACRQAAA0UAAANfAAAARQAAAUUAAAFFAAAARQAAAUUAAANFAAADXwAAAEUAAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAABFAAADXwAAAF8AAABfAAAAXwAAAF8AAABFAAABXwAAAF8AAABFAAABXwAAAF8AAABfAAAAXwAAAEUAAAFFAAADRQAAATsAAAAbAAAAHAAAABwAAAAcAAAAGwAAABcAAABPAAAARQAAA18AAABfAAAAXwAAAF8AAABFAAACRQAAAkUAAAI7AAAAGwAAAhsAAAIbAAAAGwAAABsAAAAXAAACTwAAAEUAAAJfAAAAXwAAAF8AAABfAAAARQAAA0UAAABFAAABOwAAABsAAAIbAAAAGwAAABsAAAMbAAAAFwAAARcAAAJFAAABXwAAAF8AAABfAAAAXwAAAEUAAAJFAAACTwAAAF8AAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAABfAAAARQAAAg== + tiles: YwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAANwAAAAAANwAAAAAATgAAAAADTgAAAAADZAAAAAAARwAAAAABRwAAAAAARwAAAAABZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAANwAAAAAANwAAAAAATgAAAAADTgAAAAABZAAAAAAARwAAAAADRwAAAAAARwAAAAADZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAACRwAAAAACYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAAARwAAAAACYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAACRwAAAAABYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAARwAAAAAAZAAAAAAARwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAABRwAAAAADZAAAAAAARwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAACRwAAAAABZAAAAAAARwAAAAACYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAABRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAADZAAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAABRwAAAAADRwAAAAADZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAABPAAAAAAAGgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGgAAAAAAFgAAAAAAUwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAACPAAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAAAGgAAAAAAFgAAAAACUwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAABPAAAAAAAGgAAAAACGgAAAAAAGgAAAAAAGgAAAAADGgAAAAAAFgAAAAABFgAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACUwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAARwAAAAAC + version: 6 -1,1: ind: -1,1 - tiles: JwAAACcAAAAXAAADFwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAEUAAAFfAAAAXwAAAF8AAABfAAAAXwAAACcAAAAnAAAAFwAAARcAAANcAAAAXAAAAF8AAABfAAAATwAAAF8AAABFAAADXwAAAF8AAABfAAAAXwAAAF8AAAAnAAAAJwAAABcAAAAXAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAJwAAACcAAAAXAAABFwAAAFwAAABcAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAABcAAAAXAAAAFwAAABcAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAAAXAAAAFwAAAhcAAAAXAAADXwAAAF8AAABIAAAAXwAAAEgAAABfAAAAXwAAAF8AAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAAAAAAAAAAABfAAAAXwAAADIAAAAyAAAAMgAAADIAAABfAAAASAAAAEgAAABfAAAASAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAF8AAAAyAAAAMgAAADIAAAAyAAAAXwAAAF8AAABIAAAASAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF8AAABfAAAAMgAAADIAAAAyAAAAMgAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAABfAAAAXwAAABsAAAAbAAACGwAAARsAAAJfAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAAAbAAADGwAAABsAAAEbAAABXwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXwAAABsAAAMbAAAAGwAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAADRQAAAkUAAABFAAACRQAAAEUAAANFAAAARQAAAEUAAANFAAABRQAAAEUAAABFAAAAHgAAAx4AAAJFAAADRQAAAkUAAAJFAAABRQAAAkUAAAFFAAAARQAAAEUAAABFAAADRQAAAkUAAAFFAAACRQAAA0UAAAFFAAADRQAAAEUAAANFAAACRQAAA0UAAABFAAACRQAAAkUAAAJFAAACRQAAAEUAAABFAAABRQAAAEUAAAJFAAABRQAAAQ== + tiles: JgAAAAAAJgAAAAAAFgAAAAADFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAJgAAAAAAJgAAAAAAFgAAAAABFgAAAAADYQAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAJgAAAAAAJgAAAAAAFgAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAJgAAAAAAJgAAAAAAFgAAAAABFgAAAAAAYQAAAAAAYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAFgAAAAAAFgAAAAACFgAAAAAAFgAAAAADZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAATAAAAAAATAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAGgAAAAAAGgAAAAACGgAAAAABGgAAAAACZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAGgAAAAADGgAAAAAAGgAAAAABGgAAAAABZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAGgAAAAADGgAAAAAAGgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAAAHQAAAAADHQAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAADRwAAAAABRwAAAAADRwAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAABRwAAAAAB + version: 6 0,1: ind: 0,1 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAB4AAABFAAAAHgAAAR4AAAAeAAADRQAAAkUAAAJFAAACHgAAAh4AAAAeAAACXwAAAF8AAABfAAAAXwAAAB4AAABFAAADRQAAAkUAAABFAAABRQAAAEUAAANFAAABRQAAAEUAAANFAAAARQAAAkUAAABFAAADRQAAAUUAAABFAAAARQAAA0UAAANFAAACRQAAA0UAAAFFAAABRQAAAEUAAANFAAADRQAAAkUAAAFFAAADRQAAAkUAAAFFAAABRQAAAw== + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHQAAAAAARwAAAAAAHQAAAAABHQAAAAAAHQAAAAADRwAAAAACRwAAAAACRwAAAAACHQAAAAACHQAAAAAAHQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHQAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAADRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAABRwAAAAADRwAAAAACRwAAAAABRwAAAAABRwAAAAAD + version: 6 1,1: ind: 1,1 - tiles: XwAAAF8AAABfAAAAXwAAAEUAAABFAAAATwAAAF8AAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAABfAAAARQAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAAE8AAABfAAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAXwAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAATwAAAE8AAABfAAAARQAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAEUAAAFfAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADXwAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAACXAAAA1wAAAJfAAAARQAAA18AAAAAAAAAAAAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXAAAA1wAAAFcAAABXwAAAEUAAANfAAAAAAAAAAAAAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABcAAABXAAAAVwAAAFcAAAAXAAAA18AAABFAAADXwAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAA1wAAAJcAAABXAAAA1wAAAFcAAABRQAAA14AAABeAAAAXgAAAF8AAABfAAAAXwAAADIAAAAyAAAAMgAAAFwAAANcAAADXAAAAFwAAAFcAAABXwAAAEUAAAFeAAAAXgAAAF4AAABfAAAAXwAAAF8AAAAyAAAAMgAAAF8AAABcAAADXAAAAlwAAAJcAAAAXAAAAF8AAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAANcAAABXAAAAVwAAABfAAAARQAAAB4AAAIeAAAAHgAAAF8AAABfAAAATwAAAE8AAABPAAAATwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAAARQAAAkUAAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABFAAADRQAAAkUAAAJFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAg== + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAAUwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAAUwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAARwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAABZAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAADYQAAAAACZAAAAAAARwAAAAADZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAABYQAAAAABZAAAAAAARwAAAAADZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAYQAAAAABYQAAAAABYQAAAAABYQAAAAAAYQAAAAADZAAAAAAARwAAAAADZAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADYQAAAAACYQAAAAABYQAAAAADYQAAAAABYQAAAAABRwAAAAADYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAYQAAAAADYQAAAAADYQAAAAAAYQAAAAABYQAAAAABZAAAAAAARwAAAAABYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAYQAAAAADYQAAAAACYQAAAAACYQAAAAAAYQAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAABYQAAAAABYQAAAAAAZAAAAAAARwAAAAAAHQAAAAACHQAAAAAAHQAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAC + version: 6 0,-2: ind: 0,-2 - tiles: EwAAABMAAAATAAAAEwAAAF8AAAAyAAAAMgAAADIAAAAyAAAAMgAAAF8AAAAYAAACGAAAARgAAAAYAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADHgAAAx4AAAIeAAACHgAAAB4AAAEeAAAAXwAAAB4AAAIeAAACHgAAAx4AAAMeAAAAHgAAARcAAAEeAAAARQAAAkUAAABFAAAARQAAAkUAAABFAAACRQAAAkUAAANFAAAARQAAAUUAAABFAAABRQAAA0UAAANFAAABRQAAAEUAAABFAAADRQAAAkUAAABFAAADRQAAAUUAAABFAAAARQAAAUUAAABFAAACRQAAAkUAAAFFAAABRQAAA0UAAABFAAACRQAAA0UAAAFFAAACRQAAA0UAAANFAAABRQAAAEUAAABFAAAARQAAAUUAAANFAAACRQAAAkUAAANFAAACTwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAAAyAAAAMgAAADIAAAAyAAAAMgAAAF8AAABbAAAAXwAAAFwAAAJcAAACXAAAA1wAAAJcAAAATwAAAF8AAABfAAAAMgAAADIAAAAyAAAAMgAAADIAAABfAAAAWwAAAl8AAABcAAADXAAAAlwAAABcAAADXAAAA18AAABPAAAAXwAAADIAAAAyAAAAMgAAADIAAAAyAAAAXwAAAFYAAANcAAACXAAAA18AAABfAAAAGwAAA18AAABfAAAATwAAAA== + tiles: EgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAFwAAAAACFwAAAAABFwAAAAAAFwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAZAAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAAAHQAAAAABFgAAAAABHQAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAADRwAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAACRwAAAAADRwAAAAACUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAYAAAAAAAZAAAAAAAYQAAAAACYQAAAAACYQAAAAADYQAAAAACYQAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAYAAAAAACZAAAAAAAYQAAAAADYQAAAAACYQAAAAAAYQAAAAADYQAAAAADZAAAAAAAUwAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAWwAAAAADYQAAAAACYQAAAAADZAAAAAAAZAAAAAAAGgAAAAADZAAAAAAAZAAAAAAAUwAAAAAA + version: 6 2,0: ind: 2,0 - tiles: AAAAAF4AAABfAAAANAAAADQAAAA0AAAAXwAAAB0AAAAdAAAAHQAAAF8AAABFAAACRQAAAUUAAABFAAABRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAcAAADXwAAABwAAAJfAAAARQAAA0UAAAJFAAADRQAAA0UAAAFFAAADRQAAAEUAAANFAAACRQAAA0UAAANFAAADRQAAAEUAAAJFAAABRQAAAUUAAANFAAABRQAAAkUAAAFFAAADRQAAA0UAAANFAAADRQAAAUUAAANFAAAARQAAAUUAAANFAAABRQAAAkUAAAJFAAADRQAAAEUAAABFAAAARQAAAUUAAAJFAAABRQAAAEUAAAJFAAADRQAAA0UAAAJFAAAARQAAAEUAAABFAAACRQAAA0UAAABFAAACRQAAAEUAAAJFAAACRQAAAF8AAABfAAAAXwAAAB4AAAMeAAABXwAAAB4AAAIeAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAANfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAEUAAANFAAACTwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABFAAACRQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAAAXwAAADsAAAA7AAAAOwAAADsAAAA7AAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAATwAAAE8AAABFAAAARQAAAl8AAAA7AAAAOwAAADsAAAA7AAAAOwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAEcAAAAFwAAAhcAAAEXAAABFwAAABcAAAMXAAADRQAAAkUAAAFFAAACXwAAADIAAAAyAAAAMgAAAEUAAANFAAABHAAAAxcAAAIXAAAAFwAAAxcAAAEXAAABFwAAAkUAAANFAAADRQAAAV8AAAAyAAAAMgAAADIAAABFAAACRQAAAxwAAAAXAAADFwAAAhcAAAAXAAADFwAAARcAAAFFAAAARQAAAUUAAAJfAAAAMgAAADIAAAAyAAAARQAAAEUAAABfAAAAOwAAADsAAAA7AAAAOwAAADsAAABfAAAARQAAAkUAAABFAAAAXwAAAF8AAAAyAAAAMgAAAA== + tiles: AAAAAAAAYwAAAAAAZAAAAAAANQAAAAAANQAAAAAANQAAAAAAZAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAADZAAAAAAAGwAAAAACZAAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAADRwAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAADRwAAAAADRwAAAAAARwAAAAACRwAAAAABRwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAABRwAAAAADRwAAAAADRwAAAAADRwAAAAADRwAAAAABRwAAAAADRwAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHQAAAAADHQAAAAABZAAAAAAAHQAAAAACHQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADRwAAAAACUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAARwAAAAAARwAAAAACZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABGwAAAAAAFgAAAAACFgAAAAABFgAAAAABFgAAAAAAFgAAAAADFgAAAAADRwAAAAACRwAAAAABRwAAAAACZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAARwAAAAADRwAAAAABGwAAAAADFgAAAAACFgAAAAAAFgAAAAADFgAAAAABFgAAAAABFgAAAAACRwAAAAADRwAAAAADRwAAAAABZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAARwAAAAACRwAAAAADGwAAAAAAFgAAAAADFgAAAAACFgAAAAAAFgAAAAADFgAAAAABFgAAAAABRwAAAAAARwAAAAABRwAAAAACZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAARwAAAAAARwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAA + version: 6 2,1: ind: 2,1 - tiles: RQAAAkUAAANfAAAAOwAAADsAAAA7AAAAOwAAADsAAABfAAAARQAAA0UAAABFAAABRQAAAV8AAAAyAAAAMgAAAEUAAAJFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAADRQAAAEUAAABfAAAAXwAAAEUAAAJFAAABRQAAAl8AAAAdAAAAHQAAAB0AAAAdAAAAXwAAAEUAAAJFAAAARQAAAEUAAANFAAADRQAAAEUAAAFFAAABRQAAAUUAAAJFAAADHQAAAB0AAAAdAAAAHQAAAEUAAAJFAAADRQAAA0UAAABFAAADRQAAAkUAAABfAAAAXwAAAEUAAAFFAAACRQAAAR0AAAAdAAAAHQAAAB0AAABFAAACRQAAA0UAAAFFAAADRQAAAUUAAAJFAAABXwAAAF8AAABFAAAARQAAAl8AAAAdAAAAHQAAAB0AAAAdAAAAXwAAAEUAAABFAAAARQAAAkUAAANFAAABRQAAAU8AAABPAAAARQAAAkUAAAFfAAAAXwAAAEUAAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAANFAAADRQAAAkUAAABfAAAAXwAAAEUAAABFAAACXwAAAEUAAABFAAABRQAAA18AAABFAAADRQAAA0UAAABFAAAARQAAAEUAAANFAAACTwAAAE8AAABFAAAARQAAAEUAAAFFAAAARQAAAUUAAANFAAADRQAAAkUAAANFAAAARQAAAEUAAAFFAAAARQAAAF8AAABfAAAARQAAAkUAAABFAAACRQAAAkUAAAJFAAACXwAAAF8AAABfAAAAXwAAAEUAAAJFAAACRQAAAUUAAANfAAAAXwAAAEUAAANFAAADXwAAAEUAAAFFAAADRQAAAkUAAABMAAAATAAAAF8AAABFAAABRQAAAEUAAAJFAAAARQAAAUUAAAJFAAADRQAAAV8AAABFAAACRQAAAEUAAAJfAAAATAAAAEwAAABfAAAARQAAAUUAAAJFAAAARQAAAkUAAAJFAAACRQAAA0UAAAJFAAAARQAAAkUAAABFAAAAXwAAAEwAAABMAAAARQAAAEUAAAFFAAAARQAAA0UAAAFFAAACRQAAAEUAAABFAAABRQAAAkUAAAJFAAABRQAAAkUAAABMAAAATAAAAF8AAABFAAABRQAAAUUAAAFFAAADRQAAAEUAAANFAAACRQAAAl8AAABFAAADRQAAAEUAAABFAAACTAAAAEwAAABfAAAARQAAAUUAAABFAAADRQAAAUUAAANFAAABRQAAAEUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAACFwAAAhcAAABfAAAAXwAAAA== + tiles: RwAAAAACRwAAAAADZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAABZAAAAAAAMwAAAAAAMwAAAAAARwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAACZAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAACRwAAAAADHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAAARwAAAAADRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAABHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAABZAAAAAAAZAAAAAAARwAAAAAARwAAAAACZAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAABUwAAAAAAUwAAAAAARwAAAAACRwAAAAABZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACZAAAAAAARwAAAAAARwAAAAABRwAAAAADZAAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAACUwAAAAAAUwAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAACRwAAAAADRwAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAADZAAAAAAAZAAAAAAARwAAAAADRwAAAAADZAAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAAAUAAAAAAAUAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAACRwAAAAADRwAAAAABZAAAAAAARwAAAAACRwAAAAAARwAAAAACZAAAAAAAUAAAAAAAUAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAAARwAAAAACRwAAAAAARwAAAAAAZAAAAAAAUAAAAAAAUAAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAABRwAAAAACRwAAAAAAUAAAAAAAUAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAADRwAAAAAARwAAAAADRwAAAAACRwAAAAACZAAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAACUAAAAAAAUAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAABRwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAAAZAAAAAAAZAAAAAAA + version: 6 2,-1: ind: 2,-1 - tiles: GwAAAxsAAANfAAAAXwAAAEUAAABFAAACRQAAAkUAAAFFAAACRQAAA0UAAANFAAACRQAAAEUAAAJFAAADXwAAABsAAAAbAAACGwAAAUUAAAJFAAAARQAAA0UAAAFFAAAARQAAAEUAAABFAAAARQAAAEUAAANFAAADRQAAADsAAABfAAAAXwAAAF8AAABFAAABRQAAAEUAAANFAAACRQAAAUUAAANFAAADRQAAAkUAAABFAAABRQAAAEUAAAM7AAAATwAAAF8AAABFAAACRQAAAEUAAAFFAAACRQAAAEUAAABFAAACRQAAAEUAAANFAAAARQAAAUUAAABFAAAAXwAAAE8AAABfAAAARQAAAUUAAAJFAAADRQAAA0UAAANFAAABRQAAA0UAAABFAAACRQAAA0UAAANFAAADRQAAAF8AAABPAAAAXwAAAEUAAAFFAAADRQAAAF8AAABfAAAARQAAAF8AAABFAAAAXwAAAF8AAABFAAACRQAAA0UAAAJfAAAATwAAAF8AAABFAAAARQAAAkUAAAFfAAAARQAAAUUAAAFLAAAARQAAAUUAAABfAAAARQAAAkUAAAJFAAABXwAAAF8AAABfAAAARQAAAkUAAAJFAAAAXwAAAEUAAABGAAADRgAAA0YAAABFAAACXwAAAEUAAABFAAABRQAAAlIAAABfAAAARQAAAEUAAAFFAAAARQAAAl8AAABFAAAARQAAA0UAAANFAAABRQAAA18AAABFAAAARQAAA0UAAAJfAAAAXwAAAEUAAANFAAACRQAAAkUAAANfAAAAXwAAAF8AAABfAAAARQAAAV8AAABfAAAARQAAAkUAAAFFAAABXwAAAF8AAABfAAAAXwAAAEUAAANFAAADRQAAAkUAAAJFAAACRQAAAkUAAAFFAAAARQAAAUUAAANFAAAARQAAAEUAAABPAAAATwAAAF8AAABFAAADRQAAAkUAAABFAAADRQAAA0UAAAFFAAAARQAAA0UAAABFAAABRQAAAkUAAAJFAAAATwAAAE8AAABPAAAARQAAAEUAAAJFAAADRQAAAkUAAANFAAAARQAAAkUAAAMXAAADFwAAAxcAAAIXAAADFwAAAV8AAABfAAAAXwAAAEUAAAFFAAACRQAAA0UAAAJFAAADRQAAAEUAAABFAAABFwAAARcAAAAXAAAAFwAAARcAAAAAAAAAXgAAAF8AAABPAAAATwAAAE8AAABfAAAAHAAAAV8AAAAcAAAAXwAAAF8AAABFAAACRQAAAkUAAANfAAAAAAAAAAAAAABfAAAANAAAADQAAAA0AAAAXwAAAB0AAAAdAAAAHQAAAF8AAABFAAACRQAAAEUAAANFAAABRQAAAQ== + tiles: GgAAAAADGgAAAAADZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAACRwAAAAADRwAAAAADRwAAAAACRwAAAAAARwAAAAACRwAAAAADZAAAAAAAGgAAAAAAGgAAAAACGgAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAADRwAAAAADRwAAAAACRwAAAAAARwAAAAABRwAAAAAARwAAAAADPAAAAAAAUwAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAAARwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAADRwAAAAADRwAAAAADRwAAAAABRwAAAAADRwAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAADRwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAACZAAAAAAAUwAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAABZAAAAAAARwAAAAABRwAAAAABTwAAAAAARwAAAAABRwAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAAAZAAAAAAARwAAAAAASgAAAAADSgAAAAADSgAAAAAARwAAAAACZAAAAAAARwAAAAAARwAAAAABRwAAAAACVwAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAACZAAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAADZAAAAAAARwAAAAAARwAAAAADRwAAAAACZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAAARwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAADRwAAAAAARwAAAAACRwAAAAADFgAAAAADFgAAAAADFgAAAAACFgAAAAADFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAADRwAAAAACRwAAAAADRwAAAAAARwAAAAAARwAAAAABFgAAAAABFgAAAAAAFgAAAAAAFgAAAAABFgAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAGwAAAAABZAAAAAAAGwAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAADZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAANQAAAAAANQAAAAAANQAAAAAAZAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAABRwAAAAAB + version: 6 -1,2: ind: -1,2 - tiles: GwAAABsAAAAbAAACGwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAABRQAAAV8AAABfAAAAXwAAABsAAAFfAAAAXwAAAF8AAABfAAAAXAAAA1wAAANcAAABXAAAAl8AAABFAAADRQAAAEUAAAFfAAAALwAAAA4AAAAXAAAAXwAAABcAAAEXAAAAXwAAAFwAAAM6AAAAOgAAAFwAAAFfAAAARQAAAkUAAABFAAADXwAAAA4AAAAvAAAARQAAA0UAAABFAAACRQAAAlwAAANcAAADOgAAADoAAABcAAAAXwAAAEUAAANFAAABRQAAAV8AAAAvAAAADgAAAEUAAAFFAAACRQAAAEUAAAJfAAAAXAAAAlwAAAJcAAAAXAAAAF8AAABFAAABRQAAA0UAAAFfAAAADgAAAC8AAABFAAADRQAAAkUAAANFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAJFAAABXwAAAC8AAAAOAAAARQAAA0UAAAJFAAAARQAAAEUAAAFFAAACRQAAAxcAAABfAAAAGwAAA0UAAANFAAADRQAAAV8AAAAOAAAALwAAAEUAAAJFAAADRQAAAkUAAABFAAADRQAAAEUAAAMXAAAAXwAAABsAAAFFAAADRQAAA0UAAANfAAAALwAAAA4AAABFAAABRQAAAEUAAANFAAABRQAAA0UAAANLAAAAXwAAAF8AAAAbAAABRQAAA0UAAAJFAAAAXwAAAF8AAABfAAAARQAAAEUAAAFFAAABRQAAAEUAAANFAAAASwAAAF8AAAAbAAABGwAAAEUAAAFFAAADRQAAAF8AAAAPAAAADwAAAF8AAABfAAAARQAAAUUAAANfAAAAXwAAAF8AAABfAAAAGwAAARsAAANFAAAARQAAAEUAAABfAAAADwAAAA8AAABFAAACRQAAA0UAAABFAAADRQAAAkUAAANFAAABRQAAAEUAAANFAAADRQAAAEUAAAFFAAAAFwAAAxsAAAEPAAAARQAAAkUAAAFFAAADRQAAAUUAAAFFAAADRQAAAEUAAABFAAADRQAAAEUAAAJFAAABRQAAAF8AAAAbAAABGwAAA0UAAABFAAADRQAAAUUAAAFFAAAARQAAAEUAAAJFAAACRQAAA0UAAAFFAAAARQAAAUUAAANfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAACXwAAAF8AAABfAAAAXwAAABsAAAMbAAABRQAAAkUAAAFFAAAALAAAASwAAAMsAAADRQAAAkUAAABFAAADRQAAAkUAAABFAAABRQAAAV8AAAAbAAACGwAAAEUAAABFAAACRQAAAiwAAAAsAAACLAAAAg== + tiles: GgAAAAAAGgAAAAAAGgAAAAACGgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAGgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAADYQAAAAABYQAAAAACZAAAAAAARwAAAAADRwAAAAAARwAAAAABZAAAAAAAMAAAAAAADQAAAAAAFgAAAAAAZAAAAAAAFgAAAAABFgAAAAAAZAAAAAAAYQAAAAADOwAAAAAAOwAAAAAAYQAAAAABZAAAAAAARwAAAAACRwAAAAAARwAAAAADZAAAAAAADQAAAAAAMAAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAACYQAAAAADYQAAAAADOwAAAAAAOwAAAAAAYQAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAABZAAAAAAAMAAAAAAADQAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAACZAAAAAAAYQAAAAACYQAAAAACYQAAAAAAYQAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAABZAAAAAAADQAAAAAAMAAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAABZAAAAAAAMAAAAAAADQAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAADFgAAAAAAZAAAAAAAGgAAAAADRwAAAAADRwAAAAADRwAAAAABZAAAAAAADQAAAAAAMAAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAADFgAAAAAAZAAAAAAAGgAAAAABRwAAAAADRwAAAAADRwAAAAADZAAAAAAAMAAAAAAADQAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAADTwAAAAAAZAAAAAAAZAAAAAAAGgAAAAABRwAAAAADRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAAATwAAAAAAZAAAAAAAGgAAAAABGgAAAAAARwAAAAABRwAAAAADRwAAAAAAZAAAAAAADgAAAAAADgAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGgAAAAABGgAAAAADRwAAAAAARwAAAAAARwAAAAAAZAAAAAAADgAAAAAADgAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAABRwAAAAAAFgAAAAADGgAAAAABDgAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAABRwAAAAABRwAAAAADRwAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAABRwAAAAAAZAAAAAAAGgAAAAABGgAAAAADRwAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGgAAAAADGgAAAAABRwAAAAACRwAAAAABRwAAAAAAKwAAAAABKwAAAAADKwAAAAADRwAAAAACRwAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAABRwAAAAABZAAAAAAAGgAAAAACGgAAAAAARwAAAAAARwAAAAACRwAAAAACKwAAAAAAKwAAAAACKwAAAAAC + version: 6 0,2: ind: 0,2 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAABoAAABfAAAAXwAAAF8AAABfAAAAXwAAAC8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAGgAAARoAAAEaAAAAGgAAAF8AAABeAAAAXgAAAAAAAAAOAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAAXwAAABoAAAAaAAACGgAAARoAAANfAAAAXgAAAAAAAAAAAAAALwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAAAaAAABGgAAAxoAAAEaAAAAXwAAAF4AAAAAAAAAAAAAAA4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAGgAAABoAAAIaAAACXwAAAF8AAABfAAAAXwAAAAAAAAAvAAAADgAAAC8AAAAOAAAAXwAAAE8AAABfAAAAXwAAABoAAAMaAAAAGgAAAl8AAAAaAAAAGgAAA18AAAAAAAAADgAAAC8AAAAOAAAALwAAAF8AAABPAAAAXwAAAF8AAAAaAAAAGgAAARoAAAAaAAABGgAAARoAAAFfAAAAAAAAAC8AAAAOAAAALwAAAA4AAABPAAAAXwAAAF8AAABfAAAAGgAAAxoAAAIaAAAAXwAAABoAAAEaAAADXwAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAADwAAAA8AAAAPAAAADwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAA8AAAAPAAAADwAAAA8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAPAAAADwAAAA8AAAAPAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAATwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAGwAAAxsAAAMbAAACGwAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAbAAAAGwAAARsAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABsAAAFfAAAAGwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAeAAAAHgAAAR4AAAFfAAAAHgAAAQ== + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGQAAAAABGQAAAAABGQAAAAAAGQAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAADQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAGQAAAAAAGQAAAAACGQAAAAABGQAAAAADZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGQAAAAABGQAAAAADGQAAAAABGQAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAADQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGQAAAAAAGQAAAAACGQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAMAAAAAAADQAAAAAAMAAAAAAADQAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAGQAAAAADGQAAAAAAGQAAAAACZAAAAAAAGQAAAAAAGQAAAAADZAAAAAAAAAAAAAAADQAAAAAAMAAAAAAADQAAAAAAMAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAGQAAAAAAGQAAAAABGQAAAAAAGQAAAAABGQAAAAABGQAAAAABZAAAAAAAAAAAAAAAMAAAAAAADQAAAAAAMAAAAAAADQAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGQAAAAADGQAAAAACGQAAAAAAZAAAAAAAGQAAAAABGQAAAAADZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAGgAAAAADGgAAAAADGgAAAAACGgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGgAAAAAAGgAAAAABGgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGgAAAAABZAAAAAAAGgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHQAAAAAAHQAAAAABHQAAAAABZAAAAAAAHQAAAAAB + version: 6 1,2: ind: 1,2 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAARQAAAQAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABQAAAEUAAAAFAAABRQAAARfAAAAXwAAAEUAAAEAAAAAAAAAAF4AAABfAAAAXwAAAEgAAABfAAAAXwAAABQAAAQaAAACGgAAAxoAAAIaAAAAFAAAAl8AAABFAAADAAAAAAAAAAAAAAAAXwAAAF8AAABIAAAAXwAAAF8AAAAUAAAAGgAAAhoAAAMaAAAAGgAAARQAAAJfAAAARQAAAwAAAAAAAAAAAAAAAF8AAABIAAAAXwAAAF8AAABfAAAAFAAABhoAAAEaAAABGgAAAxoAAAIUAAABXwAAAEUAAAEAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAABQAAAUaAAAAGgAAAxoAAAMaAAAAFAAAA18AAABFAAABAAAAAAAAAAAAAAAAXwAAAEgAAABfAAAASAAAAF8AAABfAAAAFAAAABQAAAQUAAACFAAAAl8AAABfAAAARQAAAgAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAHwAAAEUAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAFwAAAJcAAADXwAAAB8AAAJFAAACAAAAAAAAAAAAAAAAXwAAAF8AAABIAAAASAAAAF8AAABfAAAAXAAAAlwAAABfAAAAXwAAAF8AAAAfAAADRQAAAQAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAAFcAAACXwAAAFwAAANfAAAAXwAAAEUAAAMAAAAAAAAAAF4AAABfAAAAXwAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAABfAAAAXwAAAB8AAAJFAAACXwAAAF8AAABfAAAAXwAAAEgAAABfAAAAXwAAAF8AAABfAAAAXAAAA18AAABfAAAAXwAAAF8AAAAfAAACRQAAA18AAABfAAAAXwAAAEgAAABfAAAAXwAAAEUAAABfAAAAXwAAAF8AAABcAAADXwAAAFwAAAFfAAAAXwAAAEUAAABfAAAAXwAAAF8AAABIAAAAXwAAAF8AAABfAAAASAAAAF8AAABcAAADXAAAA1wAAANfAAAAXwAAAB8AAAJFAAADHgAAAB4AAAJfAAAAXwAAAF8AAABfAAAASAAAAEUAAABfAAAAXAAAA1wAAAFfAAAAXwAAAF8AAAAfAAACRQAAAw== + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAEwAAAAABEwAAAAAAEwAAAAAFEwAAAAAEZAAAAAAAZAAAAAAARwAAAAABAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAEwAAAAAEGQAAAAACGQAAAAADGQAAAAACGQAAAAAAEwAAAAACZAAAAAAARwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAEwAAAAAAGQAAAAACGQAAAAADGQAAAAAAGQAAAAABEwAAAAACZAAAAAAARwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAEwAAAAAGGQAAAAABGQAAAAABGQAAAAADGQAAAAACEwAAAAABZAAAAAAARwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAEwAAAAAFGQAAAAAAGQAAAAADGQAAAAADGQAAAAAAEwAAAAADZAAAAAAARwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAATAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAEwAAAAAAEwAAAAAEEwAAAAACEwAAAAACZAAAAAAAZAAAAAAARwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHgAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAADZAAAAAAAHgAAAAACRwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHgAAAAADRwAAAAABAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAACZAAAAAAAYQAAAAADZAAAAAAAZAAAAAAARwAAAAADAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAHgAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHgAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADZAAAAAAAYQAAAAABZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAYQAAAAADYQAAAAADYQAAAAADZAAAAAAAZAAAAAAAHgAAAAACRwAAAAADHQAAAAAAHQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAARwAAAAAAZAAAAAAAYQAAAAADYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAHgAAAAACRwAAAAAD + version: 6 2,2: ind: 2,2 - tiles: RQAAAkUAAAMXAAADFwAAARcAAAMXAAACFwAAAxcAAAEXAAACFwAAARcAAAEXAAAAFwAAAhcAAAAXAAADFwAAA0UAAAFFAAABXwAAABcAAAEXAAAAFwAAABcAAAAXAAABFwAAAxcAAAEXAAADHQAAAB0AAAAdAAAAHQAAABcAAANFAAAARQAAABcAAAMXAAABFwAAAxcAAAMXAAAAFwAAAxcAAAAXAAAAFwAAAx0AAAAdAAAAHQAAAB0AAAAXAAABRQAAA0UAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAAdAAAAHQAAAB0AAAAdAAAAFwAAAEUAAAJFAAAAXwAAAF4AAABeAAAAXgAAAF8AAABPAAAATwAAAF8AAAAXAAAAHQAAAB0AAAAdAAAAHQAAABcAAAFFAAADRQAAAl8AAABeAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAFwAAAxcAAAEXAAADFwAAARcAAAMXAAAARQAAAEUAAAJfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAEUAAABFAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAV8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAFfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAA18AAABeAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAANfAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAEUAAANFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABFAAADRQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAARQAAA0UAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAA== + tiles: RwAAAAACRwAAAAADFgAAAAADFgAAAAABFgAAAAADFgAAAAACFgAAAAADFgAAAAABFgAAAAACFgAAAAABFgAAAAABFgAAAAAAFgAAAAACFgAAAAAAFgAAAAADFgAAAAADRwAAAAABRwAAAAABZAAAAAAAFgAAAAABFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAABFgAAAAADFgAAAAABFgAAAAADHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAFgAAAAADRwAAAAAARwAAAAAAFgAAAAADFgAAAAABFgAAAAADFgAAAAADFgAAAAAAFgAAAAADFgAAAAAAFgAAAAAAFgAAAAADHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAFgAAAAABRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAFgAAAAAARwAAAAACRwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAFgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAFgAAAAABRwAAAAADRwAAAAACZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAABFgAAAAADFgAAAAABFgAAAAADFgAAAAAARwAAAAAARwAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAA + version: 6 3,2: ind: 3,2 - tiles: XwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAABAAAAQQAAAEEAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAQAAAEEAAABBAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAEAAAABAAAAgQAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAABAAAAQQAAAEEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAQAAAIEAAABBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAEAAACBAAAAgQAAAEEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAABAAAAQQAAAAEAAACBAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAQAAAEEAAAABAAAAQQAAAIEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAABgAAAAABBgAAAAABBgAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAABgAAAAABBgAAAAABBgAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAABgAAAAAABgAAAAACBgAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAABgAAAAABBgAAAAABBgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAABgAAAAACBgAAAAABBgAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAABgAAAAACBgAAAAACBgAAAAABBgAAAAACBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAABgAAAAABBgAAAAAABgAAAAACBgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAABgAAAAABBgAAAAAABgAAAAABBgAAAAACBgAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 3,1: ind: 3,1 - tiles: XwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAABPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 3,0: ind: 3,0 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEsAAABLAAAAXwAAAEUAAAJFAAACRQAAAUUAAABFAAADXwAAAF8AAAAeAAADHgAAAV8AAAAeAAACHgAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAkUAAAJFAAAARQAAA0UAAAJFAAABRQAAAkUAAABFAAACRQAAAUUAAABFAAAARQAAAUUAAABFAAACRQAAA0UAAANFAAABRQAAAkUAAABFAAAARQAAAEUAAAJFAAACRQAAAEUAAAFFAAADRQAAAUUAAAJFAAACRQAAAUUAAAJFAAABRQAAAkUAAAFFAAAARQAAAkUAAAFFAAADRQAAAEUAAAFFAAABRQAAAEUAAAJFAAABRQAAAUUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABPAAAAXwAAAF8AAABPAAAATwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAAATwAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAAARwAAAAADZAAAAAAAZAAAAAAAHQAAAAADHQAAAAABZAAAAAAAHQAAAAACHQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAACRwAAAAABRwAAAAACRwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAACRwAAAAABRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 3,-1: ind: 3,-1 - tiles: OwAAADsAAAA7AAAAOwAAADsAAABfAAAASwAAAEwAAABMAAAATAAAAEwAAABfAAAAXAAAAVwAAABcAAABXwAAADsAAAA7AAAAXwAAAF8AAABfAAAAXwAAAEsAAABMAAAATAAAAEwAAABMAAAAXwAAAFwAAANcAAACXAAAA18AAAA7AAAAOwAAAF8AAABFAAABRQAAAkUAAAJMAAAATAAAAEwAAABMAAAATAAAAF8AAABcAAABXAAAAlwAAABfAAAAOwAAADsAAABfAAAARQAAAUUAAAJFAAADTAAAAEwAAABMAAAAXwAAAF8AAABfAAAARQAAAV8AAABfAAAAXwAAADsAAAA7AAAAXwAAAEUAAABFAAADRQAAAEwAAABMAAAATAAAAF8AAAAUAAABFAAAABQAAAEUAAAEFAAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABMAAAATAAAAEwAAABfAAAAFAAAAhoAAAAaAAABGgAAAhQAAAVfAAAAVgAAAVYAAANWAAADIAAAASAAAAFfAAAATAAAAEwAAABMAAAARQAAAhQAAAAaAAACGgAAARoAAAIUAAAEXwAAAFYAAANWAAADVgAAASAAAAEgAAABIAAAAkwAAABMAAAATAAAAF8AAAAUAAAEGgAAARoAAAEaAAADFAAABF8AAABWAAAAVgAAAVYAAAEgAAABIAAAAF8AAABMAAAATAAAAEwAAABfAAAAFAAAAhQAAAYUAAACFAAABhQAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATAAAAEwAAABMAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAF8AAABFAAABTAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABfAAAAXwAAAF8AAABFAAABXwAAAF8AAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABFAAACXwAAAEUAAANfAAAAXwAAAF8AAABFAAACRQAAAEUAAANFAAAARQAAAUUAAAFFAAABRQAAAl8AAABFAAADRQAAA0UAAAFFAAABRQAAAV8AAABfAAAARQAAAkUAAAJFAAADRQAAAUUAAAJFAAABRQAAAEUAAAFfAAAARQAAAkUAAABFAAABRQAAAUUAAABfAAAAXwAAAEUAAAJFAAACRQAAAkUAAANFAAABRQAAAUUAAANFAAABXwAAAEUAAANFAAACRQAAAUUAAAJFAAADXwAAAA== + tiles: PAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAATwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAZAAAAAAAYQAAAAABYQAAAAAAYQAAAAABZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAZAAAAAAAYQAAAAADYQAAAAACYQAAAAADZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAZAAAAAAAYQAAAAABYQAAAAACYQAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAADUAAAAAAAUAAAAAAAUAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAZAAAAAAAEwAAAAABEwAAAAAAEwAAAAABEwAAAAAEEwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAZAAAAAAAEwAAAAACGQAAAAAAGQAAAAABGQAAAAACEwAAAAAFZAAAAAAAWwAAAAABWwAAAAADWwAAAAADHwAAAAABHwAAAAABZAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAARwAAAAACEwAAAAAAGQAAAAACGQAAAAABGQAAAAACEwAAAAAEZAAAAAAAWwAAAAADWwAAAAADWwAAAAABHwAAAAABHwAAAAABHwAAAAACUAAAAAAAUAAAAAAAUAAAAAAAZAAAAAAAEwAAAAAEGQAAAAABGQAAAAABGQAAAAADEwAAAAAEZAAAAAAAWwAAAAAAWwAAAAABWwAAAAABHwAAAAABHwAAAAAAZAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAZAAAAAAAEwAAAAACEwAAAAAGEwAAAAACEwAAAAAGEwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAZAAAAAAARwAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAACZAAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAABRwAAAAABZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAABZAAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAADRwAAAAABRwAAAAABRwAAAAADRwAAAAABZAAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAADZAAAAAAA + version: 6 4,0: ind: 4,0 - tiles: XgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAARQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAA0UAAAJFAAADRQAAAUUAAANFAAACRQAAA0UAAAJFAAABRQAAAUUAAAJFAAAARQAAAEUAAAJFAAACRQAAAEUAAAFFAAADRQAAAkUAAAJFAAAARQAAA0UAAABFAAABRQAAAkUAAABFAAADRQAAAEUAAABFAAAARQAAAUUAAAFFAAABRQAAA0UAAABFAAAARQAAAEUAAAFFAAACRQAAAEUAAAFFAAAARQAAA0UAAAFFAAACRQAAA0UAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAEUAAANFAAABXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE8AAABfAAAAXwAAAEUAAAFFAAAARQAAAkUAAAFFAAADRQAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABPAAAAXwAAAE8AAABFAAACRQAAAUUAAAFMAAAATAAAAEwAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAFFAAADTAAAACoAAAAqAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAACRQAAAkwAAABMAAAATAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAkUAAAJFAAAARQAAAkUAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABfAAAARQAAAEUAAAFFAAADRQAAAl8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAB8AAABFAAACRQAAAx8AAAFfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAAAfAAACRQAAAUUAAAMfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAHwAAA0UAAAJFAAACHwAAAV8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAB8AAANFAAAARQAAAB8AAANfAAAAXgAAAA== + tiles: YwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAADRwAAAAABRwAAAAADRwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAADRwAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAARwAAAAACRwAAAAABRwAAAAABUAAAAAAAUAAAAAAAUAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAADUAAAAAAAKQAAAAAAKQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAACUAAAAAAAUAAAAAAAUAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAAARwAAAAACRwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAHgAAAAAARwAAAAACRwAAAAADHgAAAAABZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAHgAAAAACRwAAAAABRwAAAAADHgAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAHgAAAAADRwAAAAACRwAAAAACHgAAAAABZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAHgAAAAADRwAAAAAARwAAAAAAHgAAAAADZAAAAAAAYwAAAAAA + version: 6 3,-3: ind: 3,-3 - tiles: RQAAAF8AAABfAAAAXwAAAEUAAANfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAEUAAAFFAAABRQAAA0UAAAJFAAADRQAAAl8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAqAAAAIgAAASoAAAFFAAADRQAAA0UAAAFfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAKgAAAyIAAAIqAAADRQAAAkUAAAFFAAABXwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAACoAAAMiAAACKgAAA0UAAANFAAAARQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABFAAACRQAAA0UAAANFAAABRQAAAkUAAAJfAAAAXAAAAFwAAANcAAADXAAAAFwAAAJfAAAAAAAAAF4AAAAAAAAARQAAAEUAAAJFAAADRQAAAUUAAABFAAACRQAAAVwAAABcAAADXAAAA1wAAABcAAABXwAAAAAAAABeAAAAAAAAAF8AAABfAAAARQAAAkUAAAFFAAACRQAAA18AAABcAAABXAAAAVwAAABcAAAAXAAAAl8AAAAAAAAAXgAAAAAAAABeAAAAXwAAAEUAAAJFAAADRQAAAUUAAANfAAAAXwAAAF8AAABcAAAAXAAAA1wAAABfAAAAAAAAAF4AAAAAAAAAXgAAAF8AAABFAAACRQAAAEUAAAJFAAADRQAAAUUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAAAAAABfAAAARQAAAUUAAAFFAAACRQAAAkUAAAFFAAABRQAAA18AAABUAAACVAAAAV8AAAAAAAAAXgAAAAAAAAAAAAAAXwAAAEUAAAJFAAABRQAAAUUAAAJFAAAARQAAAUUAAABSAAABVAAAA1QAAANfAAAAAAAAAF4AAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAANfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAAAAAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: RwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAACRwAAAAADRwAAAAACZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAIQAAAAABKQAAAAABRwAAAAADRwAAAAADRwAAAAABZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAKQAAAAADIQAAAAACKQAAAAADRwAAAAACRwAAAAABRwAAAAABZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAKQAAAAADIQAAAAACKQAAAAADRwAAAAADRwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAACRwAAAAACZAAAAAAAYQAAAAAAYQAAAAADYQAAAAADYQAAAAAAYQAAAAACZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAACRwAAAAABYQAAAAAAYQAAAAADYQAAAAADYQAAAAAAYQAAAAABZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAADZAAAAAAAYQAAAAABYQAAAAABYQAAAAAAYQAAAAAAYQAAAAACZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAADYQAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAADZAAAAAAAWQAAAAACWQAAAAABZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAABRwAAAAACRwAAAAAARwAAAAABRwAAAAAAVwAAAAABWQAAAAADWQAAAAADZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + version: 6 3,3: ind: 3,3 - tiles: XwAAAAQAAAAEAAAABAAAAgQAAAAEAAABBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAEAAACBAAAAAQAAAEEAAACBAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAABAAAAQQAAAEEAAACBAAAAAQAAAIEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAQAAAAEAAAABAAAAgQAAAEEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAACBAAAAAQAAAAEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAQAAAAEAAACBAAAAQQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAIEAAABBAAAAgQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAgQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAgQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAAAABgAAAAAABgAAAAAABgAAAAACBgAAAAAABgAAAAABBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAABgAAAAACBgAAAAAABgAAAAABBgAAAAACBgAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAABgAAAAABBgAAAAABBgAAAAACBgAAAAAABgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAACBgAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAACBgAAAAAABgAAAAAABgAAAAABBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAAABgAAAAAABgAAAAACBgAAAAABBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAACBgAAAAABBgAAAAACBgAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAAABgAAAAACBgAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,3: ind: 2,3 - tiles: RQAAAEUAAAAXAAAAFwAAAhcAAAEXAAACFwAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAEUAAANFAAAAXwAAABcAAAAXAAACFwAAAhcAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAA0UAAAIXAAACFwAAARcAAAAXAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAABFAAAAFwAAAhcAAAIXAAABFwAAA18AAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAQAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAEAAAATwAAAF8AAABPAAAATwAAAF8AAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAQAAAAEAAACBAAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAEAAACBAAAAQQAAABfAAAAXwAAAF8AAABcAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAgQAAAAEAAAAXwAAAF8AAABfAAAAXwAAAFwAAAFcAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAQAAAIEAAACBAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAEAAAABAAAAQQAAAJfAAAAXwAAAF8AAAAEAAAABAAAAgQAAAEEAAABBAAAAQQAAAAEAAAABAAAAAQAAAIEAAAABAAAAAQAAAAEAAAAXwAAAF8AAABfAAAABAAAAgQAAAEEAAACBAAAAQQAAAAEAAABBAAAAgQAAAAEAAABBAAAAAQAAAIEAAABBAAAAV8AAABfAAAAXwAAAAQAAAEEAAACBAAAAgQAAAAEAAABBAAAAQQAAAEEAAACBAAAAgQAAAIEAAACBAAAAgQAAAJfAAAAXwAAAF8AAAAEAAAABAAAAAQAAAEEAAABBAAAAAQAAAIEAAAABAAAAAQAAAAEAAABBAAAAQQAAAAEAAABTwAAAE8AAABfAAAABAAAAgQAAAEEAAACBAAAAQQAAAAEAAABBAAAAQQAAAEEAAABBAAAAgQAAAAEAAABAAAAAA== + tiles: RwAAAAAARwAAAAAAFgAAAAAAFgAAAAACFgAAAAABFgAAAAACFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAFgAAAAAAFgAAAAACFgAAAAACFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAACFgAAAAACFgAAAAABFgAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAAAFgAAAAACFgAAAAACFgAAAAABFgAAAAADZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAACBgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAACBgAAAAABBgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAACBgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAACBgAAAAACBgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAABBgAAAAACZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAACBgAAAAABBgAAAAABBgAAAAABBgAAAAAABgAAAAAABgAAAAAABgAAAAACBgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAACBgAAAAABBgAAAAACBgAAAAABBgAAAAAABgAAAAABBgAAAAACBgAAAAAABgAAAAABBgAAAAAABgAAAAACBgAAAAABBgAAAAABZAAAAAAAZAAAAAAAZAAAAAAABgAAAAABBgAAAAACBgAAAAACBgAAAAAABgAAAAABBgAAAAABBgAAAAABBgAAAAACBgAAAAACBgAAAAACBgAAAAACBgAAAAACBgAAAAACZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAABBgAAAAABBgAAAAAABgAAAAACBgAAAAAABgAAAAAABgAAAAAABgAAAAABBgAAAAABBgAAAAAABgAAAAABUwAAAAAAUwAAAAAAZAAAAAAABgAAAAACBgAAAAABBgAAAAACBgAAAAABBgAAAAAABgAAAAABBgAAAAABBgAAAAABBgAAAAABBgAAAAACBgAAAAAABgAAAAABAAAAAAAA + version: 6 1,3: ind: 1,3 - tiles: HgAAAB4AAAAeAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAABRQAAAEUAAAFFAAABRQAAA0UAAANFAAABRQAAAEUAAANFAAAARQAAAEUAAAJFAAAARQAAAEUAAANFAAAARQAAAUUAAAJFAAADRQAAAUUAAAFFAAADRQAAAEUAAANFAAABRQAAAkUAAABFAAADRQAAAEUAAANFAAACRQAAAEUAAANFAAACRQAAA0UAAABFAAABRQAAA0UAAANFAAAARQAAAUUAAANFAAABRQAAAkUAAABFAAADRQAAAl8AAABfAAAAHgAAAB4AAAIeAAABXwAAAF8AAABfAAAAXwAAAF8AAABLAAAARQAAAEUAAAJLAAADFwAAAF8AAAAbAAACXwAAAF8AAABfAAAAXwAAAF8AAABSAAABUgAAAlIAAAJfAAAASwAAAkUAAABFAAAASwAAAV8AAABfAAAAGwAAA18AAABFAAACRQAAAEUAAAMcAAABGwAAABsAAAIbAAACHAAAAEsAAAFFAAABRQAAA0sAAAJfAAAAXwAAABsAAAMXAAADRQAAAkUAAANFAAABHAAAABsAAAEbAAACGwAAARwAAANLAAAARQAAAkUAAANLAAADXwAAAF8AAAAbAAADFwAAA0UAAAFFAAACRQAAAV8AAABSAAABUgAAAVIAAAFfAAAASwAAAksAAAFLAAADSwAAA18AAABfAAAARQAAAl8AAABFAAABRQAAA0UAAANfAAAAXwAAAF8AAABfAAAAXwAAAFIAAAJSAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAARQAAAUUAAAFFAAABXwAAAFMAAANTAAAAUwAAA1MAAANTAAAAUwAAAVMAAAJTAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAACRQAAAl8AAABTAAACUwAAAFMAAANTAAACUwAAAlMAAABTAAAAUwAAAV8AAABfAAAAXgAAAF8AAABFAAACRQAAAEUAAAJFAAAAUwAAAVMAAAFTAAACUwAAAFMAAABTAAAAUwAAA1MAAABPAAAAXwAAAF4AAABfAAAARQAAAUUAAABFAAACXwAAAFMAAAFTAAAAUwAAAFMAAAFTAAAAUwAAAlMAAAFTAAADXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAAFfAAAAXwAAAF8AAABfAAAAXwAAAB8AAABFAAABRQAAAkUAAAEXAAACFwAAABcAAAAXAAACXwAAAFwAAAJcAAAAXAAAAlwAAABfAAAAXwAAAA== + tiles: HQAAAAAAHQAAAAAAHQAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAADRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAACRwAAAAADRwAAAAABRwAAAAABRwAAAAADRwAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAACZAAAAAAAZAAAAAAAHQAAAAAAHQAAAAACHQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAAARwAAAAAARwAAAAACTwAAAAADFgAAAAAAZAAAAAAAGgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABVwAAAAACVwAAAAACZAAAAAAATwAAAAACRwAAAAAARwAAAAAATwAAAAABZAAAAAAAZAAAAAAAGgAAAAADZAAAAAAARwAAAAACRwAAAAAARwAAAAADGwAAAAABGgAAAAAAGgAAAAACGgAAAAACGwAAAAAATwAAAAABRwAAAAABRwAAAAADTwAAAAACZAAAAAAAZAAAAAAAGgAAAAADFgAAAAADRwAAAAACRwAAAAADRwAAAAABGwAAAAAAGgAAAAABGgAAAAACGgAAAAABGwAAAAADTwAAAAAARwAAAAACRwAAAAADTwAAAAADZAAAAAAAZAAAAAAAGgAAAAADFgAAAAADRwAAAAABRwAAAAACRwAAAAABZAAAAAAAVwAAAAABVwAAAAABVwAAAAABZAAAAAAATwAAAAACTwAAAAABTwAAAAADTwAAAAADZAAAAAAAZAAAAAAARwAAAAACZAAAAAAARwAAAAABRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAABZAAAAAAAWAAAAAADWAAAAAAAWAAAAAADWAAAAAADWAAAAAAAWAAAAAABWAAAAAACWAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAACZAAAAAAAWAAAAAACWAAAAAAAWAAAAAADWAAAAAACWAAAAAACWAAAAAAAWAAAAAAAWAAAAAABZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAAAWAAAAAABWAAAAAABWAAAAAACWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAADWAAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAACZAAAAAAAWAAAAAABWAAAAAAAWAAAAAAAWAAAAAABWAAAAAAAWAAAAAACWAAAAAABWAAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHgAAAAAARwAAAAABRwAAAAACRwAAAAABFgAAAAACFgAAAAAAFgAAAAAAFgAAAAACZAAAAAAAYQAAAAACYQAAAAAAYQAAAAACYQAAAAAAZAAAAAAAZAAAAAAA + version: 6 0,3: ind: 0,3 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAeAAAAHgAAAh4AAAEeAAACHgAAA0UAAANFAAAARQAAAEUAAANFAAACRQAAAkUAAAFFAAADRQAAAUUAAABFAAADRQAAA0UAAANFAAACRQAAAkUAAANFAAACRQAAAUUAAAFFAAABRQAAAkUAAAFFAAADRQAAAUUAAABFAAADRQAAAUUAAAJFAAADRQAAA0UAAABFAAACRQAAAEUAAAFFAAABRQAAA0UAAANFAAADRQAAAEUAAAFFAAABRQAAAUUAAAFFAAACRQAAA0UAAABFAAACRQAAAx8AAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAABcAAAIfAAAAXwAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXwAAAEUAAAJFAAABNAAAADQAAAA0AAAAFwAAAV8AAABfAAAAXwAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABFAAAARQAAADQAAAA0AAAANAAAAEUAAAFFAAACRQAAA18AAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAABfAAAARQAAAkUAAAE0AAAANAAAADQAAABFAAADRQAAA0UAAABfAAAAXwAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAXwAAAEUAAAFFAAADGwAAAxsAAAAbAAACHAAAARwAAAAcAAADXwAAAF4AAABeAAAAAAAAAAAAAABeAAAAAAAAAF8AAABFAAACRQAAAUUAAAJFAAAARQAAADsAAAA7AAAAHAAAAl8AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABfAAAARQAAAkUAAABFAAACRQAAAkUAAAA7AAAAOwAAABwAAANfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAOwAAADsAAAAcAAADXwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABwAAAMcAAADHAAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXwAAAA8AAAAPAAAADwAAAF8AAABfAAAAXgAAAF4AAABfAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAAAAAAF8AAAAPAAAADwAAAA8AAAAbAAACGwAAAw== + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAADRwAAAAADRwAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAABRwAAAAADRwAAAAABRwAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAADRwAAAAABRwAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAADRwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAADRwAAAAADRwAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAACRwAAAAADRwAAAAAARwAAAAACRwAAAAADHgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAACHgAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAACRwAAAAABNQAAAAAANQAAAAAANQAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAARwAAAAAARwAAAAAANQAAAAAANQAAAAAANQAAAAAARwAAAAABRwAAAAACRwAAAAADZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAABNQAAAAAANQAAAAAANQAAAAAARwAAAAADRwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAARwAAAAABRwAAAAADGgAAAAADGgAAAAAAGgAAAAACGwAAAAABGwAAAAAAGwAAAAADZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAAARwAAAAAAPAAAAAAAPAAAAAAAGwAAAAACZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAACRwAAAAAAPAAAAAAAPAAAAAAAGwAAAAADZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAGwAAAAADZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAGwAAAAADGwAAAAADGwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAADgAAAAAADgAAAAAADgAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAADgAAAAAADgAAAAAADgAAAAAAGgAAAAACGgAAAAAD + version: 6 -2,-1: ind: -2,-1 - tiles: UgAAAVIAAAFfAAAAXwAAAF8AAABfAAAAFwAAAhcAAAIXAAAAFwAAABcAAABcAAABXAAAAVwAAAM6AAAAOgAAAFIAAANSAAACUgAAAVIAAAFSAAABFwAAAjoAAAAXAAABFwAAAzoAAAAXAAACXAAAA1wAAAFcAAAAOgAAADoAAAAYAAADGAAAAhgAAAAYAAACUgAAAxcAAAEXAAAAFwAAABcAAAMXAAACFwAAAVwAAANcAAADXAAAADoAAAA6AAAAGAAAAxgAAAEYAAAAGAAAA1IAAABfAAAAOgAAABcAAAIXAAAAOgAAABcAAAFcAAACXAAAAlwAAAI6AAAAOgAAABgAAAEYAAACGAAAABgAAABSAAACFwAAAhcAAAEXAAADFwAAAhcAAAIXAAAAFwAAA18AAABfAAAAXwAAABMAAABSAAABUgAAAlIAAAFSAAACUgAAAhcAAAE6AAAAFwAAAhcAAAA6AAAAFwAAARcAAAM6AAAAFwAAAV8AAAATAAAAFwAAARcAAAAXAAACFwAAAF8AAABfAAAAFwAAAhcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAFfAAAAEwAAADoAAAAXAAAAFwAAADoAAAAXAAADFwAAAzoAAAAXAAABFwAAAToAAAAXAAACFwAAAzoAAAAXAAADXwAAABMAAAAXAAACFwAAARcAAAAXAAADFwAAABcAAAAXAAABFwAAABcAAAEXAAACFwAAARcAAAMXAAADFwAAAV8AAAATAAAAOgAAABcAAAIXAAAAOgAAABcAAAAXAAADOgAAABcAAAMXAAAAOgAAABcAAAEXAAABOgAAABcAAAFfAAAAEwAAAF8AAABfAAAAFwAAAhcAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAABfAAAAXwAAAF8AAABFAAABRQAAAUUAAAJFAAABRQAAAUUAAAFFAAABRQAAAEUAAAJFAAAARQAAA0UAAAJFAAABRQAAAkUAAABFAAADRQAAAUUAAAFFAAADRQAAAEUAAANFAAABRQAAAkUAAAFFAAAARQAAAEUAAABFAAACRQAAA0UAAANFAAADRQAAAEUAAABFAAAARQAAAUUAAABFAAAARQAAAUUAAAJFAAACRQAAA0UAAANFAAADRQAAAEUAAAFFAAABRQAAAEUAAANfAAAAHgAAAB4AAAIeAAADXwAAAB4AAAIeAAAAXwAAAEUAAAFFAAACRQAAAF8AAAAeAAAAHgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAAUUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: VwAAAAABVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAAAFgAAAAAAYQAAAAABYQAAAAABYQAAAAADOwAAAAAAOwAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAABVwAAAAABFgAAAAACOwAAAAAAFgAAAAABFgAAAAADOwAAAAAAFgAAAAACYQAAAAADYQAAAAABYQAAAAAAOwAAAAAAOwAAAAAAFwAAAAADFwAAAAACFwAAAAAAFwAAAAACVwAAAAADFgAAAAABFgAAAAAAFgAAAAAAFgAAAAADFgAAAAACFgAAAAABYQAAAAADYQAAAAADYQAAAAAAOwAAAAAAOwAAAAAAFwAAAAADFwAAAAABFwAAAAAAFwAAAAADVwAAAAAAZAAAAAAAOwAAAAAAFgAAAAACFgAAAAAAOwAAAAAAFgAAAAABYQAAAAACYQAAAAACYQAAAAACOwAAAAAAOwAAAAAAFwAAAAABFwAAAAACFwAAAAAAFwAAAAAAVwAAAAACFgAAAAACFgAAAAABFgAAAAADFgAAAAACFgAAAAACFgAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAEgAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAACVwAAAAACFgAAAAABOwAAAAAAFgAAAAACFgAAAAAAOwAAAAAAFgAAAAABFgAAAAADOwAAAAAAFgAAAAABZAAAAAAAEgAAAAAAFgAAAAABFgAAAAAAFgAAAAACFgAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAABZAAAAAAAEgAAAAAAOwAAAAAAFgAAAAAAFgAAAAAAOwAAAAAAFgAAAAADFgAAAAADOwAAAAAAFgAAAAABFgAAAAABOwAAAAAAFgAAAAACFgAAAAADOwAAAAAAFgAAAAADZAAAAAAAEgAAAAAAFgAAAAACFgAAAAABFgAAAAAAFgAAAAADFgAAAAAAFgAAAAAAFgAAAAABFgAAAAAAFgAAAAABFgAAAAACFgAAAAABFgAAAAADFgAAAAADFgAAAAABZAAAAAAAEgAAAAAAOwAAAAAAFgAAAAACFgAAAAAAOwAAAAAAFgAAAAAAFgAAAAADOwAAAAAAFgAAAAADFgAAAAAAOwAAAAAAFgAAAAABFgAAAAABOwAAAAAAFgAAAAABZAAAAAAAEgAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAADRwAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAADRwAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAADRwAAAAADRwAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAADZAAAAAAAHQAAAAAAHQAAAAACHQAAAAADZAAAAAAAHQAAAAACHQAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAAAZAAAAAAAHQAAAAAAHQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + version: 6 -2,0: ind: -2,0 - tiles: XwAAAEUAAAJFAAADRQAAAEUAAABFAAAARQAAAl8AAABFAAAARQAAAUUAAAAsAAADLAAAAiwAAAFfAAAAXwAAAF8AAABFAAACTAAAAEwAAABMAAAATAAAAEUAAANFAAADRQAAAEUAAABFAAABLAAAAywAAAMsAAABXwAAAF8AAABfAAAARQAAAUwAAABMAAAATAAAAEwAAABFAAADXwAAAEUAAAJFAAACRQAAAiwAAAEsAAACLAAAAF8AAABfAAAAXwAAAEUAAAFMAAAATAAAAEwAAABMAAAARQAAA18AAABFAAACRQAAAUUAAAIsAAABLAAAAywAAABfAAAAXwAAAF8AAABFAAACTAAAAEwAAABMAAAATAAAAEUAAAJFAAAARQAAAkUAAAJFAAACXwAAACwAAAAsAAAAXwAAAF8AAABfAAAARQAAA0UAAAJFAAADRQAAA0UAAANFAAACXwAAAEUAAAFFAAABRQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAA0UAAAJPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABfAAAARQAAAEUAAAFFAAADXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAAARQAAAl8AAAAbAAADGwAAARsAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABFAAABRQAAAUUAAABfAAAAGwAAARsAAAIbAAACGwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAABFAAABXwAAABsAAAMbAAABGwAAAF8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXwAAAEUAAANFAAACRQAAA18AAAAbAAADGwAAAxsAAANfAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABFAAACRQAAAEUAAABfAAAAXwAAAB4AAAFfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAARQAAAEUAAAFFAAABXwAAABcAAAEXAAAAFwAAARcAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAEUAAABFAAACRQAAAV8AAABfAAAAFwAAABcAAAMnAAAAHAAAAw8AAAAXAAADTwAAAE8AAABfAAAAXgAAAF8AAABFAAADRQAAA0UAAAIeAAAAXwAAAF8AAAAXAAACJwAAAA== + tiles: ZAAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAAARwAAAAAARwAAAAACZAAAAAAARwAAAAAARwAAAAABRwAAAAAAKwAAAAADKwAAAAACKwAAAAABZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAAARwAAAAABKwAAAAADKwAAAAADKwAAAAABZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAARwAAAAADZAAAAAAARwAAAAACRwAAAAACRwAAAAACKwAAAAABKwAAAAACKwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAARwAAAAADZAAAAAAARwAAAAACRwAAAAABRwAAAAACKwAAAAABKwAAAAADKwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAACRwAAAAACZAAAAAAAKwAAAAAAKwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAADRwAAAAADRwAAAAACZAAAAAAARwAAAAABRwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAACUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAADZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAACZAAAAAAAGgAAAAADGgAAAAABGgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAABRwAAAAABRwAAAAAAZAAAAAAAGgAAAAABGgAAAAACGgAAAAACGgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAABZAAAAAAAGgAAAAADGgAAAAABGgAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAADZAAAAAAAGgAAAAADGgAAAAADGgAAAAADZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAHQAAAAABZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAABZAAAAAAAFgAAAAABFgAAAAAAFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAABZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADJgAAAAAAGwAAAAADDgAAAAAAFgAAAAADUwAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAACHQAAAAAAZAAAAAAAZAAAAAAAFgAAAAACJgAAAAAA + version: 6 -1,-2: ind: -1,-2 - tiles: XwAAAF8AAABfAAAAXwAAAFwAAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAFFAAABXwAAAEgAAABIAAAAXwAAAF8AAABcAAADXAAAAVwAAANcAAADXAAAA1wAAANcAAABXwAAAEUAAAJFAAABRQAAA18AAABfAAAAXwAAAF8AAABfAAAAXAAAAFwAAANcAAABXAAAAlwAAAJcAAADXAAAAF8AAABFAAACRQAAAkUAAABfAAAAXgAAAF4AAABeAAAAXwAAAFwAAAJcAAAAXAAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAJFAAAAXwAAAF4AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAJFAAACRQAAA0UAAAFFAAACRQAAAV8AAABeAAAAXwAAAF8AAABFAAACRQAAA0UAAAFFAAAARQAAAUUAAABFAAADRQAAA0UAAABFAAABRQAAAkUAAAFfAAAAXwAAAF8AAAAeAAACRQAAAUUAAANFAAAARQAAAkUAAANFAAADRQAAAkUAAAFFAAACRQAAA0UAAAFFAAABRQAAA0UAAAJFAAABRQAAAkUAAANFAAAARQAAA0UAAANFAAACRQAAA0UAAABFAAADRQAAAkUAAAFFAAACRQAAAEUAAABFAAABRQAAA0UAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAKgAAASoAAAMqAAAARQAAAkUAAABFAAACRQAAA0UAAABFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAACoAAAMqAAADKgAAAEUAAAFFAAADRQAAA0UAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAE8AAAAqAAADKgAAAyoAAAFFAAABRQAAAkUAAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAJFAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAADRQAAAl8AAABfAAAATwAAAF8AAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAA0UAAAJfAAAAXwAAAE8AAABfAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAANFAAADXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAADRQAAAF8AAABfAAAAXwAAAA== + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAABZAAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAABYQAAAAADYQAAAAADYQAAAAADYQAAAAADYQAAAAABZAAAAAAARwAAAAACRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAADYQAAAAABYQAAAAACYQAAAAACYQAAAAADYQAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYQAAAAACYQAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAABRwAAAAACRwAAAAABZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAABRwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAHQAAAAACRwAAAAABRwAAAAADRwAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAADRwAAAAABRwAAAAABRwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAADRwAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAADRwAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAKQAAAAABKQAAAAADKQAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAKQAAAAADKQAAAAADKQAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAKQAAAAADKQAAAAADKQAAAAABRwAAAAABRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAADZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + version: 6 -2,-2: ind: -2,-2 - tiles: UgAAA1IAAANSAAADUgAAAlIAAABSAAAAUgAAA1IAAAFSAAADUgAAAVIAAAJfAAAAXwAAAF8AAABfAAAAXwAAAFIAAANSAAADUgAAA1IAAABSAAAAUgAAA1IAAAFSAAADUgAAAVIAAABSAAADUgAAA1MAAANTAAABUwAAAFMAAAFSAAAAXwAAAF8AAABfAAAAUgAAAVIAAAFSAAAAUgAAAVIAAAFSAAADUgAAAFIAAABTAAAAUwAAAlMAAAJTAAABUgAAA1IAAANSAAABXwAAAFIAAAFSAAAAUgAAAVIAAAJSAAACUgAAAlIAAANfAAAAUwAAAVMAAAJTAAAAUwAAAFIAAANSAAACUgAAAF8AAABSAAAAUgAAAlIAAAFSAAABUgAAAFIAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAADUgAAAVIAAAJfAAAAUgAAAFIAAABSAAABUgAAA1IAAABSAAACUgAAAVIAAAFFAAACRQAAAEUAAANFAAABUgAAAVIAAANSAAABUgAAAVIAAAJSAAAAUgAAAFIAAAFSAAADUgAAAVIAAAFSAAACRQAAAEUAAABFAAAARQAAAF8AAABSAAADUgAAAF8AAABSAAABUgAAA1IAAANSAAACUgAAAlIAAAJSAAADUgAAAEUAAAFFAAADRQAAAEUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAALwAAABcAAAJfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAATwAAAE8AAABfAAAAXwAAABcAAAIvAAAAXwAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAvAAAAFwAAAV8AAABeAAAAXwAAAFwAAANcAAABXAAAABcAAAM6AAAAFwAAAiMAAAAjAAAAIwAAACMAAAAjAAAAFwAAAy8AAABfAAAAAAAAAF8AAABcAAAAXAAAAVwAAAMXAAABFwAAAhcAAANfAAAAIwAAACMAAAAjAAAAIwAAAC8AAAAXAAAAXwAAAAAAAABfAAAAXAAAA1wAAAFcAAADFwAAAzoAAAAXAAACXwAAAF8AAABfAAAAXwAAAF8AAAAXAAABLwAAAF8AAAAAAAAAXwAAABcAAAMXAAABFwAAABcAAAMXAAADFwAAA1wAAAFcAAACXAAAADoAAAA6AAAAUgAAA1IAAAJfAAAAXgAAAF8AAAAXAAABOgAAABcAAAIXAAABOgAAABcAAAFcAAADXAAAAlwAAAM6AAAAOgAAAA== + tiles: VwAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAABVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAABVwAAAAAAVwAAAAADVwAAAAADWAAAAAADWAAAAAABWAAAAAAAWAAAAAABVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAAAVwAAAAAAWAAAAAAAWAAAAAACWAAAAAACWAAAAAABVwAAAAADVwAAAAADVwAAAAABZAAAAAAAVwAAAAABVwAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAACVwAAAAADZAAAAAAAWAAAAAABWAAAAAACWAAAAAAAWAAAAAAAVwAAAAADVwAAAAACVwAAAAAAZAAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAABVwAAAAAAVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAADVwAAAAABVwAAAAACZAAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAACVwAAAAABVwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAABVwAAAAABVwAAAAADVwAAAAABVwAAAAABVwAAAAACVwAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAABVwAAAAABVwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAAAZAAAAAAAVwAAAAADVwAAAAAAZAAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAACVwAAAAACVwAAAAACVwAAAAADVwAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAMAAAAAAAFgAAAAACZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAACMAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMAAAAAAAFgAAAAABZAAAAAAAYwAAAAAAZAAAAAAAYQAAAAADYQAAAAABYQAAAAAAFgAAAAADOwAAAAAAFgAAAAACIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAFgAAAAADMAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYQAAAAAAYQAAAAABYQAAAAADFgAAAAABFgAAAAACFgAAAAADZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAMAAAAAAAFgAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYQAAAAADYQAAAAABYQAAAAADFgAAAAADOwAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABMAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAFgAAAAADFgAAAAABFgAAAAAAFgAAAAADFgAAAAADFgAAAAADYQAAAAABYQAAAAACYQAAAAAAOwAAAAAAOwAAAAAAVwAAAAADVwAAAAACZAAAAAAAYwAAAAAAZAAAAAAAFgAAAAABOwAAAAAAFgAAAAACFgAAAAABOwAAAAAAFgAAAAABYQAAAAADYQAAAAACYQAAAAADOwAAAAAAOwAAAAAA + version: 6 -3,-2: ind: -3,-2 - tiles: UgAAAlIAAAJSAAABUgAAAVIAAABSAAABUgAAAlIAAABSAAAAUgAAAVIAAAFSAAADUgAAAVIAAABSAAADUgAAAlIAAANSAAACUgAAA1IAAAJSAAABUgAAA1IAAANSAAACUgAAAlIAAAFSAAACUgAAAVIAAAJSAAADUgAAAFIAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAl8AAABfAAAAXwAAAFIAAAFfAAAAXwAAAF8AAABSAAACXwAAABgAAAAYAAADGAAAAhgAAAMYAAADXwAAAFYAAAAXAAABXwAAAFIAAAFSAAACUgAAAlIAAABSAAABUgAAAF8AAAAYAAABGAAAAhgAAAIYAAACGAAAAV8AAABWAAADFwAAA18AAABSAAADUgAAAlIAAABSAAAAUgAAAlIAAANfAAAAUgAAA1IAAAJSAAADUgAAA1IAAABSAAADVgAAABcAAANfAAAAUgAAAVIAAANSAAACUgAAAlIAAANSAAACXwAAAFIAAABSAAAAUgAAAFIAAANSAAACXwAAABcAAAJfAAAAXwAAAF8AAAAvAAAAXwAAAF8AAABSAAADUgAAAl8AAABSAAACUgAAA1IAAANSAAACUgAAA18AAABfAAAAXwAAAF8AAAAvAAAAFwAAAy8AAABfAAAAXwAAAF8AAABfAAAAUgAAA1IAAABSAAABXwAAAF8AAABfAAAAKgAAACoAAANfAAAAXwAAAC8AAAAXAAAALwAAABcAAAAvAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAqAAACKgAAASoAAAAqAAABFwAAAy8AAAAXAAABLwAAABcAAAAvAAAAFwAAA18AAABfAAAAXwAAAF8AAABfAAAAKgAAACoAAAMqAAAAKgAAAl8AAAAXAAADLwAAABcAAAAvAAAAFwAAAC8AAABfAAAAXwAAAF8AAABfAAAAXwAAACoAAAAiAAADIgAAAiIAAAIXAAABLwAAABcAAAEvAAAAFwAAAC8AAAAXAAABXwAAAF8AAABfAAAAXwAAAF8AAAAqAAABIgAAAiIAAAIiAAABFwAAABcAAAIvAAAAFwAAAi8AAAAXAAADLwAAAF8AAABfAAAAXwAAAF8AAABfAAAAKgAAASIAAAIqAAAAKgAAAF8AAAAvAAAAFwAAAC8AAAAXAAADLwAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAACoAAAEiAAADKgAAACoAAAFfAAAAFwAAAy8AAAAXAAAALwAAABcAAAEvAAAAAAAAAF4AAABfAAAAXwAAAF8AAAAXAAADFwAAABcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADXwAAAA== + tiles: VwAAAAACVwAAAAACVwAAAAABVwAAAAABVwAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAABVwAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAACVwAAAAADVwAAAAACVwAAAAABVwAAAAADVwAAAAADVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAABVwAAAAACVwAAAAADVwAAAAAAVwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACZAAAAAAAFwAAAAAAFwAAAAADFwAAAAACFwAAAAADFwAAAAADZAAAAAAAWwAAAAAAFgAAAAABZAAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAAAVwAAAAABVwAAAAAAZAAAAAAAFwAAAAABFwAAAAACFwAAAAACFwAAAAACFwAAAAABZAAAAAAAWwAAAAADFgAAAAADZAAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAAAVwAAAAACVwAAAAADZAAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAADVwAAAAAAVwAAAAADWwAAAAAAFgAAAAADZAAAAAAAVwAAAAABVwAAAAADVwAAAAACVwAAAAACVwAAAAADVwAAAAACZAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAACZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAMAAAAAAAZAAAAAAAZAAAAAAAVwAAAAADVwAAAAACZAAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMAAAAAAAFgAAAAADMAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAADVwAAAAAAVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAKQAAAAAAKQAAAAADZAAAAAAAZAAAAAAAMAAAAAAAFgAAAAAAMAAAAAAAFgAAAAAAMAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAKQAAAAACKQAAAAABKQAAAAAAKQAAAAABFgAAAAADMAAAAAAAFgAAAAABMAAAAAAAFgAAAAAAMAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAACZAAAAAAAFgAAAAADMAAAAAAAFgAAAAAAMAAAAAAAFgAAAAAAMAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAKQAAAAAAIQAAAAADIQAAAAACIQAAAAACFgAAAAABMAAAAAAAFgAAAAABMAAAAAAAFgAAAAAAMAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAKQAAAAABIQAAAAACIQAAAAACIQAAAAABFgAAAAAAFgAAAAACMAAAAAAAFgAAAAACMAAAAAAAFgAAAAADMAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAKQAAAAABIQAAAAACKQAAAAAAKQAAAAAAZAAAAAAAMAAAAAAAFgAAAAAAMAAAAAAAFgAAAAADMAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAKQAAAAABIQAAAAADKQAAAAAAKQAAAAABZAAAAAAAFgAAAAADMAAAAAAAFgAAAAAAMAAAAAAAFgAAAAABMAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADZAAAAAAA + version: 6 -3,-1: ind: -3,-1 - tiles: AAAAAAAAAABfAAAAXwAAAF8AAAAXAAAAFwAAAxcAAAFfAAAAJgAAACYAAAAmAAAAJgAAAF8AAABSAAADUgAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAA0UAAAFFAAABXwAAACYAAAAmAAAAJgAAACYAAABSAAADUgAAAlIAAAMAAAAAXgAAAF8AAABfAAAATwAAAEUAAANFAAACRQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAABgAAAAYAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAkUAAAJfAAAAUgAAAFIAAAMYAAAAGAAAARgAAAEYAAAAGAAAA18AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAFFAAACXwAAAFIAAANSAAADGAAAAxgAAAEYAAABGAAAARgAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAADRQAAAV8AAABSAAAAUgAAAVIAAABSAAADUgAAAlIAAABSAAAAXwAAAF8AAABfAAAATwAAAF8AAABFAAAARQAAA0UAAABfAAAAUgAAAlIAAANSAAACUgAAAF8AAAAXAAACXwAAAF8AAABfAAAAXwAAAE8AAABfAAAARQAAA0UAAAFFAAABXwAAAEoAAAFfAAAASgAAAF8AAABfAAAAFwAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAAARQAAAV8AAABKAAAASgAAAEoAAAJKAAADXwAAABcAAAIXAAACXwAAAF8AAABfAAAAXwAAAE8AAABFAAAARQAAAkUAAABfAAAASgAAAUoAAANKAAABSgAAA18AAAAXAAADFwAAAF8AAABfAAAATwAAAE8AAABfAAAARQAAAEUAAANFAAABRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAACRQAAA0UAAABFAAAARQAAAkUAAABFAAABRQAAA0UAAAFFAAAAXwAAAF8AAAAEAAABBAAAAV8AAABFAAADRQAAA0UAAANFAAABRQAAAkUAAAJFAAACRQAAAkUAAANFAAADRQAAAV8AAABfAAAABAAAAQQAAAFfAAAARQAAAEUAAANFAAACRQAAA0UAAAJFAAACRQAAA0UAAABFAAADRQAAAEUAAANfAAAAXwAAAAQAAAAEAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAQAAAEEAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAA== + tiles: AAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAABZAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAZAAAAAAAVwAAAAADVwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAABZAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAVwAAAAADVwAAAAACVwAAAAADAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAADRwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFwAAAAAAFwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAACZAAAAAAAVwAAAAAAVwAAAAADFwAAAAAAFwAAAAABFwAAAAABFwAAAAAAFwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAACZAAAAAAAVwAAAAADVwAAAAADFwAAAAADFwAAAAABFwAAAAABFwAAAAABFwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAABZAAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAAAZAAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAABZAAAAAAATgAAAAABZAAAAAAATgAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAABZAAAAAAATgAAAAAATgAAAAAATgAAAAACTgAAAAADZAAAAAAAFgAAAAACFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAAARwAAAAACRwAAAAAAZAAAAAAATgAAAAABTgAAAAADTgAAAAABTgAAAAADZAAAAAAAFgAAAAADFgAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAABgAAAAABBgAAAAABZAAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAABRwAAAAACRwAAAAACRwAAAAACRwAAAAACRwAAAAADRwAAAAADRwAAAAABZAAAAAAAZAAAAAAABgAAAAABBgAAAAABZAAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAADRwAAAAAARwAAAAADRwAAAAAARwAAAAADZAAAAAAAZAAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAABBgAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAA + version: 6 -2,1: ind: -2,1 - tiles: HAAAAA8AAAAXAAAATwAAAE8AAABfAAAAXwAAAF8AAABFAAADRQAAAUUAAAAeAAABHgAAAl8AAAAXAAABFwAAAxsAAAMbAAADFwAAAxcAAAAXAAADHAAAARwAAAMcAAABRQAAAUUAAANFAAACHgAAAx4AAABfAAAAFwAAAhcAAAIbAAAAGwAAARcAAAIXAAABFwAAAxwAAAIcAAABHAAAAkUAAAJFAAABRQAAAkUAAANFAAAAFwAAAhcAAAEXAAAAHAAAAQ8AAAAXAAABTwAAAE8AAABfAAAAXwAAAF8AAABFAAAARQAAAkUAAAFFAAAARQAAAxcAAAMXAAAAFwAAAhwAAAAPAAAAFwAAAE8AAABPAAAAXwAAAF4AAABfAAAARQAAA0UAAAJFAAABHgAAAx4AAAJfAAAAFwAAAhcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAEUAAANFAAADRQAAAx4AAAEeAAAAXwAAABcAAAEXAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABFAAACRQAAA0UAAAAeAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAAkUAAABFAAABXwAAADIAAAAyAAAAMgAAADIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAABRQAAAl8AAAAyAAAAMgAAADIAAAAyAAAAFwAAAhcAAAIXAAACFwAAAxcAAAMXAAAAFwAAAEUAAAJFAAADRQAAAEUAAAEbAAADGwAAAxsAAAEbAAADGwAAAhcAAAEXAAAAFwAAAhcAAAAXAAADFwAAARcAAABfAAAARQAAAUUAAABFAAACGwAAAhsAAAIbAAADGwAAAhsAAAMXAAADFwAAAxcAAABfAAAAFwAAAxcAAAAXAAABXwAAAEUAAAFFAAACRQAAABsAAAEbAAACGwAAAxsAAAIbAAADXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAA18AAABFAAADRQAAAUUAAAJfAAAAGwAAARsAAAEbAAAAXwAAAEUAAABFAAABRQAAAEUAAABFAAACRQAAAEUAAABFAAAARQAAA0UAAANFAAADRQAAAUUAAANFAAABRQAAAUUAAAFFAAACRQAAAUUAAANFAAABRQAAAEUAAABFAAAARQAAAEUAAANFAAADRQAAAUUAAABFAAABRQAAAUUAAABFAAABRQAAA0UAAAFFAAADRQAAAUUAAABFAAABRQAAAEUAAAFFAAABRQAAA0UAAABFAAACRQAAAUUAAABFAAABRQAAAg== + tiles: GwAAAAAADgAAAAAAFgAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAAAHQAAAAABHQAAAAACZAAAAAAAFgAAAAABFgAAAAADGgAAAAADGgAAAAADFgAAAAADFgAAAAAAFgAAAAADGwAAAAABGwAAAAADGwAAAAABRwAAAAABRwAAAAADRwAAAAACHQAAAAADHQAAAAAAZAAAAAAAFgAAAAACFgAAAAACGgAAAAAAGgAAAAABFgAAAAACFgAAAAABFgAAAAADGwAAAAACGwAAAAABGwAAAAACRwAAAAACRwAAAAABRwAAAAACRwAAAAADRwAAAAAAFgAAAAACFgAAAAABFgAAAAAAGwAAAAABDgAAAAAAFgAAAAABUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAADFgAAAAADFgAAAAAAFgAAAAACGwAAAAAADgAAAAAAFgAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAABHQAAAAADHQAAAAACZAAAAAAAFgAAAAACFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAADHQAAAAABHQAAAAAAZAAAAAAAFgAAAAABFgAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAAAHQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAABZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAACZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAFgAAAAACFgAAAAACFgAAAAACFgAAAAADFgAAAAADFgAAAAAAFgAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAABGgAAAAADGgAAAAADGgAAAAABGgAAAAADGgAAAAACFgAAAAABFgAAAAAAFgAAAAACFgAAAAAAFgAAAAADFgAAAAABFgAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAACGgAAAAACGgAAAAACGgAAAAADGgAAAAACGgAAAAADFgAAAAADFgAAAAADFgAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAABZAAAAAAARwAAAAABRwAAAAACRwAAAAAAGgAAAAABGgAAAAACGgAAAAADGgAAAAACGgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADZAAAAAAARwAAAAADRwAAAAABRwAAAAACZAAAAAAAGgAAAAABGgAAAAABGgAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAABRwAAAAADRwAAAAABRwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAADRwAAAAABRwAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAAC + version: 6 -3,-3: ind: -3,-3 - tiles: TwAAAF8AAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFgAAABYAAAAWAAAAFIAAANYAAAAWAAAAFgAAABfAAAAUgAAAFIAAANSAAAAUgAAAF8AAABfAAAAXwAAAF8AAABYAAAAWAAAAF8AAABSAAADXwAAAFgAAABYAAAAXwAAAFIAAAFYAAAAWAAAAFIAAAJfAAAAXwAAAF8AAABfAAAAWAAAAFgAAABYAAAAUgAAAlgAAABYAAAAWAAAAF8AAABSAAADWAAAAFgAAABSAAAAXwAAAF8AAABfAAAAXwAAAFgAAABYAAAAXwAAAFIAAABfAAAAWAAAAFgAAABfAAAAUgAAA1IAAANSAAABUgAAA18AAABPAAAAXwAAAF8AAABYAAAAWAAAAFgAAABSAAAAUgAAA1IAAAFSAAAAXwAAAF8AAABSAAADXwAAAF8AAABPAAAATwAAAF8AAABfAAAAWAAAAFgAAABfAAAAUgAAAVIAAABSAAACUgAAAl8AAABSAAABUgAAAlIAAANfAAAAXwAAAF8AAABfAAAAXwAAAFIAAAJSAAADUgAAAlIAAAFSAAAAUgAAAVIAAAJfAAAAUgAAA1IAAABSAAAAXwAAABcAAANfAAAATwAAAF8AAABcAAADXAAAAFwAAANSAAACUgAAAVIAAAJSAAADXwAAAF8AAABSAAABXwAAAF8AAAAXAAACXwAAAF8AAABfAAAAXAAAAVwAAABcAAACXwAAAFIAAAJSAAAAUgAAAFIAAAJSAAABUgAAAFIAAAFSAAADFwAAA18AAAAXAAADFwAAABcAAAEXAAACFwAAAF8AAABSAAABUgAAAFIAAABSAAADUgAAA1IAAAJSAAACUgAAAxcAAANfAAAAFwAAAxcAAAMXAAAAFwAAAhcAAABfAAAAUgAAAlIAAAFSAAABUgAAAVIAAABSAAADUgAAAlIAAAJfAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAA1IAAAFfAAAAXwAAAF8AAABSAAAAUgAAAVIAAAJSAAAAUgAAAlIAAAJSAAABUgAAAFIAAABSAAABUgAAAVIAAAFSAAAAUgAAAVIAAAFSAAACUgAAAg== + tiles: UwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAVwAAAAADXQAAAAAAXQAAAAAAXQAAAAAAZAAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAAAXQAAAAAAZAAAAAAAVwAAAAADZAAAAAAAXQAAAAAAXQAAAAAAZAAAAAAAVwAAAAABXQAAAAAAXQAAAAAAVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAVwAAAAACXQAAAAAAXQAAAAAAXQAAAAAAZAAAAAAAVwAAAAADXQAAAAAAXQAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAAAXQAAAAAAZAAAAAAAVwAAAAAAZAAAAAAAXQAAAAAAXQAAAAAAZAAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAAAZAAAAAAAZAAAAAAAVwAAAAADZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAXQAAAAAAXQAAAAAAZAAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAACZAAAAAAAVwAAAAABVwAAAAACVwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAABVwAAAAAAVwAAAAABVwAAAAACZAAAAAAAVwAAAAADVwAAAAAAVwAAAAAAZAAAAAAAFgAAAAADZAAAAAAAUwAAAAAAZAAAAAAAYQAAAAADYQAAAAAAYQAAAAADVwAAAAACVwAAAAABVwAAAAACVwAAAAADZAAAAAAAZAAAAAAAVwAAAAABZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAAAYQAAAAACZAAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAABVwAAAAADFgAAAAADZAAAAAAAFgAAAAADFgAAAAAAFgAAAAABFgAAAAACFgAAAAAAZAAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAACVwAAAAADFgAAAAADZAAAAAAAFgAAAAADFgAAAAADFgAAAAAAFgAAAAACFgAAAAAAZAAAAAAAVwAAAAACVwAAAAABVwAAAAABVwAAAAABVwAAAAAAVwAAAAADVwAAAAACVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAADVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAAAVwAAAAABVwAAAAABVwAAAAACVwAAAAAC + version: 6 -2,-3: ind: -2,-3 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAFwAAAxcAAAEXAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAABcAAAAXAAAAFwAAAk8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAB4AAAMeAAAAHgAAAB4AAAMXAAAAFwAAABcAAAJfAAAATwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAAAeAAAAHgAAAB4AAAEeAAACFwAAAxcAAAIXAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAHgAAADoAAAAeAAADHgAAAl8AAABfAAAAXwAAAF8AAAAXAAADFwAAAV8AAAAXAAABFwAAABcAAAMXAAAAXwAAAB4AAAMeAAAAMwAAADMAAANSAAACUgAAAlIAAABfAAAAFwAAAhcAAAMXAAADFwAAABcAAAMXAAAAFwAAAhcAAAEeAAACOgAAADMAAAQzAAAEUgAAAFIAAABSAAAAFwAAABcAAAIXAAAAFwAAARcAAAIXAAAAFwAAAxcAAAEXAAAAHgAAAR4AAAMzAAAEMwAABFIAAAFSAAAAUgAAAV8AAAAXAAADFwAAAhcAAAIXAAABFwAAARcAAAAXAAAAXwAAAB4AAAIeAAAALAAAASwAAABSAAACUgAAAlIAAANfAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAAXwAAAF8AAAAeAAADOgAAACwAAAEsAAADUgAAAlIAAANSAAABXwAAAFIAAANSAAABUgAAAVIAAABSAAADUgAAAFIAAAJfAAAAHgAAAh4AAAMsAAACLAAAAlIAAANSAAACUgAAAl8AAABSAAADUgAAA1IAAAFSAAADUgAAAVIAAABSAAADUgAAAB4AAAE6AAAAHgAAAR4AAAJSAAABXwAAAF8AAABfAAAAUgAAAFIAAABSAAABUgAAA1IAAAJSAAABUgAAAVIAAAEeAAADHgAAAB4AAAIeAAACUgAAAlIAAAJSAAAAUgAAA1IAAABSAAACUgAAAVIAAANSAAADUgAAAlIAAABfAAAAHgAAAzoAAAAeAAADHgAAAQ== + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAABFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAACUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADFgAAAAAAFgAAAAAAFgAAAAACZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACFgAAAAADFgAAAAACFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHQAAAAAAOwAAAAAAHQAAAAADHQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAABZAAAAAAAFgAAAAABFgAAAAAAFgAAAAADFgAAAAAAZAAAAAAAHQAAAAADHQAAAAAANAAAAAAANAAAAAADVwAAAAACVwAAAAACVwAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAADFgAAAAAAFgAAAAADFgAAAAAAFgAAAAACFgAAAAABHQAAAAACOwAAAAAANAAAAAAENAAAAAAEVwAAAAAAVwAAAAAAVwAAAAAAFgAAAAAAFgAAAAACFgAAAAAAFgAAAAABFgAAAAACFgAAAAAAFgAAAAADFgAAAAABFgAAAAAAHQAAAAABHQAAAAADNAAAAAAENAAAAAAEVwAAAAABVwAAAAAAVwAAAAABZAAAAAAAFgAAAAADFgAAAAACFgAAAAACFgAAAAABFgAAAAABFgAAAAAAFgAAAAAAZAAAAAAAHQAAAAACHQAAAAAAKwAAAAABKwAAAAAAVwAAAAACVwAAAAACVwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHQAAAAADOwAAAAAAKwAAAAABKwAAAAADVwAAAAACVwAAAAADVwAAAAABZAAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACZAAAAAAAHQAAAAACHQAAAAADKwAAAAACKwAAAAACVwAAAAADVwAAAAACVwAAAAACZAAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAADVwAAAAABVwAAAAAAVwAAAAADVwAAAAAAHQAAAAABOwAAAAAAHQAAAAABHQAAAAACVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAACVwAAAAABVwAAAAABVwAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAACVwAAAAACVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAADVwAAAAACVwAAAAAAZAAAAAAAHQAAAAADOwAAAAAAHQAAAAADHQAAAAAB + version: 6 -1,-3: ind: -1,-3 - tiles: XwAAAF8AAABfAAAAFgAAABYAAAAWAAAAFgAAABYAAABfAAAARQAAAkUAAANFAAACHwAAAFwAAABcAAABXAAAAk8AAABPAAAAXwAAABYAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAABRQAAAh8AAABcAAADXAAAA1wAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABFAAACRQAAAkUAAAMfAAADXAAAAFwAAABcAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAANFAAACHwAAAF8AAABfAAAAXwAAADoAAAAeAAAAHgAAAjoAAAAeAAABHgAAADoAAAAeAAAAHgAAAEUAAAFFAAABRQAAAB8AAABcAAAAXAAAAVwAAAEeAAABHgAAAB4AAAIeAAACHgAAAx4AAAMeAAACHgAAAx4AAANFAAABRQAAA0UAAAIfAAADXAAAAlwAAANcAAADOgAAAB4AAAIeAAABOgAAAB4AAAAeAAADOgAAAB4AAAEeAAABRQAAAUUAAANFAAABHwAAAVwAAAFcAAAAXAAAADMAAAAzAAAFKQAAACkAAAApAAAAKQAAAB4AAAIeAAADXwAAAEUAAAJFAAADRQAAAl8AAABfAAAAXwAAAF8AAAAzAAACMwAABSkAAAApAAAAKQAAACkAAAA6AAAAHgAAAl8AAABFAAACRQAAA0UAAAJfAAAAFwAAAhcAAAMXAAACMwAABTMAAAIpAAAAKQAAACkAAAApAAAAHgAAAh4AAABfAAAARQAAAkUAAABFAAAAXwAAABcAAAIXAAADFwAAACwAAAAsAAADRAAACUQAAAZEAAADRAAACx4AAAAeAAACXwAAAEUAAAFFAAAARQAAA18AAAAXAAADFwAAABcAAAEsAAAALAAAAkQAAAtEAAAERAAACUQAAAQ6AAAAHgAAAF8AAABFAAAARQAAAkUAAAFfAAAAXwAAABcAAAFfAAAALAAAASwAAAFEAAAJRAAACkQAAAxEAAAFHgAAAh4AAAFfAAAARQAAAEUAAAFFAAACTQAAAk0AAAJNAAABTQAAAzoAAAAeAAACHgAAAjoAAAAeAAADHgAAAjoAAAAeAAADHgAAA0UAAAJFAAABRQAAAE0AAABNAAADTQAAAU0AAAEeAAAAHgAAAx4AAAAeAAAAHgAAAR4AAAIeAAACHgAAAx4AAABFAAADRQAAAUUAAAJfAAAAXwAAAF8AAABfAAAAOgAAAB4AAAMeAAACOgAAAB4AAAEeAAACOgAAAB4AAAIeAAABRQAAAEUAAAFFAAACXwAAAEgAAABIAAAAXwAAAA== + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAACHgAAAAAAYQAAAAAAYQAAAAABYQAAAAACUwAAAAAAUwAAAAAAZAAAAAAAFQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAACHgAAAAAAYQAAAAADYQAAAAADYQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAACRwAAAAACRwAAAAADHgAAAAADYQAAAAAAYQAAAAAAYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAACHgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAOwAAAAAAHQAAAAAAHQAAAAACOwAAAAAAHQAAAAABHQAAAAAAOwAAAAAAHQAAAAAAHQAAAAAARwAAAAABRwAAAAABRwAAAAAAHgAAAAAAYQAAAAAAYQAAAAABYQAAAAABHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAADHQAAAAADRwAAAAABRwAAAAADRwAAAAACHgAAAAADYQAAAAACYQAAAAADYQAAAAADOwAAAAAAHQAAAAACHQAAAAABOwAAAAAAHQAAAAAAHQAAAAADOwAAAAAAHQAAAAABHQAAAAABRwAAAAABRwAAAAADRwAAAAABHgAAAAABYQAAAAABYQAAAAAAYQAAAAAANAAAAAAANAAAAAAFKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAHQAAAAACHQAAAAADZAAAAAAARwAAAAACRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAANAAAAAACNAAAAAAFKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAOwAAAAAAHQAAAAACZAAAAAAARwAAAAACRwAAAAADRwAAAAACZAAAAAAAFgAAAAACFgAAAAADFgAAAAACNAAAAAAFNAAAAAACKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAHQAAAAACHQAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAAAKwAAAAAAKwAAAAADRgAAAAAJRgAAAAAGRgAAAAADRgAAAAALHQAAAAAAHQAAAAACZAAAAAAARwAAAAABRwAAAAAARwAAAAADZAAAAAAAFgAAAAADFgAAAAAAFgAAAAABKwAAAAAAKwAAAAACRgAAAAALRgAAAAAERgAAAAAJRgAAAAAEOwAAAAAAHQAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAABZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAKwAAAAABKwAAAAABRgAAAAAJRgAAAAAKRgAAAAAMRgAAAAAFHQAAAAACHQAAAAABZAAAAAAARwAAAAAARwAAAAABRwAAAAACUQAAAAACUQAAAAACUQAAAAABUQAAAAADOwAAAAAAHQAAAAACHQAAAAACOwAAAAAAHQAAAAADHQAAAAACOwAAAAAAHQAAAAADHQAAAAADRwAAAAACRwAAAAABRwAAAAAAUQAAAAAAUQAAAAADUQAAAAABUQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAAARwAAAAADRwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAOwAAAAAAHQAAAAADHQAAAAACOwAAAAAAHQAAAAABHQAAAAACOwAAAAAAHQAAAAACHQAAAAABRwAAAAAARwAAAAABRwAAAAACZAAAAAAATAAAAAAATAAAAAAAZAAAAAAA + version: 6 1,-2: ind: 1,-2 - tiles: SAAAAEgAAABfAAAARQAAA0UAAANFAAADRQAAA0UAAANFAAADTAAAAEoAAABKAAAASgAAAUoAAABKAAADTAAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAUUAAANFAAADRQAAAkwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABeAAAAXgAAAF8AAABFAAAARQAAAUUAAAAdAAAAHQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAABfAAAARQAAAEUAAAFFAAABHQAAAB0AAABfAAAAFwAAARcAAAEXAAAAFwAAAxcAAAAXAAABFwAAA18AAABeAAAAXwAAAEUAAAJFAAACRQAAAx0AAAAdAAAAFwAAARcAAAMXAAAAFwAAAhcAAAEXAAACFwAAAhcAAAFfAAAAXwAAAF8AAABFAAABRQAAAkUAAABfAAAAXwAAAF8AAAAXAAACFwAAAxcAAAIXAAAAFwAAARcAAAIXAAABRQAAAkUAAABFAAABRQAAAUUAAANFAAACXwAAAF8AAABfAAAAFwAAAhcAAAIXAAAAFwAAAxcAAAMXAAADFwAAAEUAAAFFAAAARQAAAkUAAAJFAAACRQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAF8AAABFAAADRQAAA0UAAABFAAADRQAAAkUAAAFfAAAASwAAAUsAAAFLAAADSwAAA0sAAAMcAAADHAAAACcAAAAnAAAAXwAAAEUAAAFFAAACRQAAAEUAAAFFAAABXwAAAF8AAABLAAAARQAAAUUAAAFFAAACHAAAAxwAAANcAAABXAAAAV8AAABfAAAARQAAA0UAAANFAAADRQAAAR4AAABfAAAASwAAAkUAAAJFAAACRQAAABwAAAIcAAAAXAAAAlwAAAFfAAAAXwAAAEUAAAFFAAACRQAAA0UAAAEeAAAAHgAAA0sAAABLAAABSwAAAEsAAAEcAAABHAAAA1wAAAFcAAACXwAAAF8AAABFAAABRQAAAUUAAANFAAACHgAAAh4AAABLAAADSwAAA0sAAAFLAAAAHAAAAhwAAAJcAAAAXAAAAV8AAABfAAAARQAAAUUAAANFAAABRQAAAR4AAAJfAAAASwAAA0UAAAJFAAACRQAAARwAAAAcAAAAXAAAAlwAAAJfAAAAXwAAAEUAAABFAAACRQAAA0UAAABfAAAAXwAAAEsAAAJFAAAARQAAAUUAAAEcAAADHAAAAFwAAAFcAAACXwAAAF8AAABFAAABRQAAAEUAAANFAAAAXwAAAEsAAABLAAADSwAAAEsAAABLAAABHAAAAxwAAAInAAAAJwAAAA== + tiles: TAAAAAAATAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAADRwAAAAADRwAAAAADUAAAAAAATgAAAAAATgAAAAAATgAAAAABTgAAAAAATgAAAAADUAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAAAHAAAAAAAHAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAABHAAAAAAAHAAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAAAFgAAAAADFgAAAAAAFgAAAAABFgAAAAADZAAAAAAAYwAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAADHAAAAAAAHAAAAAAAFgAAAAABFgAAAAADFgAAAAAAFgAAAAACFgAAAAABFgAAAAACFgAAAAACFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAACFgAAAAAAFgAAAAABFgAAAAACFgAAAAABRwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAADFgAAAAADFgAAAAADFgAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAADRwAAAAACRwAAAAABZAAAAAAATwAAAAABTwAAAAABTwAAAAADTwAAAAADTwAAAAADGwAAAAADGwAAAAAAJgAAAAAAJgAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAATwAAAAAARwAAAAABRwAAAAABRwAAAAACGwAAAAADGwAAAAADYQAAAAABYQAAAAABZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAABHQAAAAAAZAAAAAAATwAAAAACRwAAAAACRwAAAAACRwAAAAAAGwAAAAACGwAAAAAAYQAAAAACYQAAAAABZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAADRwAAAAABHQAAAAAAHQAAAAADTwAAAAAATwAAAAABTwAAAAAATwAAAAABGwAAAAABGwAAAAADYQAAAAABYQAAAAACZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAACHQAAAAACHQAAAAAATwAAAAADTwAAAAADTwAAAAABTwAAAAAAGwAAAAACGwAAAAACYQAAAAAAYQAAAAABZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAABHQAAAAACZAAAAAAATwAAAAADRwAAAAACRwAAAAACRwAAAAABGwAAAAAAGwAAAAAAYQAAAAACYQAAAAACZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAAAZAAAAAAAZAAAAAAATwAAAAACRwAAAAAARwAAAAABRwAAAAABGwAAAAADGwAAAAAAYQAAAAABYQAAAAACZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAAAZAAAAAAATwAAAAAATwAAAAADTwAAAAAATwAAAAAATwAAAAABGwAAAAADGwAAAAACJgAAAAAAJgAAAAAA + version: 6 0,-3: ind: 0,-3 - tiles: XAAAA1wAAANfAAAAXwAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAAIAAAACAAAAAgAAAFwAAAJcAAAAXwAAAEgAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAACXAAAAE8AAABfAAAAXwAAAE8AAABfAAAAJgAAACYAAAAmAAAATwAAAF8AAABfAAAAXwAAAF8AAABbAAAAXwAAAF8AAABfAAAASAAAAF8AAABPAAAAXwAAACYAAAAmAAAAJgAAAF8AAABfAAAAXwAAAF8AAABfAAAAWwAAAlwAAAJcAAAATwAAAF8AAABfAAAAXwAAAF8AAAAmAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAFsAAABcAAABXAAAAF8AAABfAAAAXwAAAFYAAANSAAAAUgAAA1IAAAFWAAADXwAAAF8AAABPAAAATwAAAF8AAABbAAABXAAAAVwAAAJfAAAAXwAAAF8AAABfAAAAUgAAA1MAAAJSAAABXwAAAF8AAABfAAAATwAAAE8AAABfAAAAWwAAA18AAABfAAAAXwAAAE8AAABfAAAAVgAAAFIAAANTAAADUgAAA1YAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAlwAAANcAAAAXwAAAF8AAABSAAABUwAAAlIAAANfAAAAXwAAABIAAAASAAAAEgAAAF8AAAAjAAAAXwAAAF8AAABcAAAAXAAAAVwAAAJfAAAAUgAAA1MAAAFSAAADXwAAABIAAAASAAAAEgAAAF8AAABfAAAAIwAAABcAAANfAAAAXAAAAFwAAAFcAAAAXwAAAFIAAAFSAAADUgAAAF8AAAASAAAAEgAAABIAAABfAAAAIwAAACMAAABfAAAAXwAAAF8AAABcAAAAXwAAAF8AAABfAAAAUgAAAl8AAABfAAAAXwAAABIAAABfAAAAXwAAAF8AAABfAAAATQAAAk0AAAFNAAABTQAAA00AAANNAAADTQAAAU0AAAJNAAABTQAAAU0AAAJNAAABTQAAAk0AAAFNAAAATQAAA00AAABNAAACTQAAAU0AAAJNAAADTQAAAE0AAAFNAAADTQAAAk0AAANNAAACTQAAA00AAAFNAAACTQAAAE0AAAFfAAAAEwAAAF8AAABfAAAAXwAAAF8AAABfAAAAMgAAAF8AAABfAAAAXwAAAF8AAABfAAAAGAAAAF8AAABfAAAAEwAAABMAAAATAAAAEwAAAF8AAAAyAAAAMgAAADIAAAAyAAAAMgAAAF8AAAAYAAACGAAAAhgAAAIYAAADXwAAAA== + tiles: YQAAAAADYQAAAAADZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAYQAAAAACYQAAAAAAZAAAAAAATAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYAAAAAACYQAAAAACYQAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYAAAAAAAYQAAAAABYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAWwAAAAADVwAAAAAAVwAAAAADVwAAAAABWwAAAAADZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAYAAAAAABYQAAAAABYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAADWAAAAAACVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAYAAAAAADZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAWwAAAAAAVwAAAAADWAAAAAADVwAAAAADWwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAADYQAAAAAAZAAAAAAAZAAAAAAAVwAAAAABWAAAAAACVwAAAAADZAAAAAAAZAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAZAAAAAAAIgAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAABYQAAAAACZAAAAAAAVwAAAAADWAAAAAABVwAAAAADZAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAZAAAAAAAZAAAAAAAIgAAAAAAFgAAAAADZAAAAAAAYQAAAAAAYQAAAAABYQAAAAAAZAAAAAAAVwAAAAABVwAAAAADVwAAAAAAZAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAEQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUQAAAAACUQAAAAABUQAAAAABUQAAAAADUQAAAAADUQAAAAADUQAAAAABUQAAAAACUQAAAAABUQAAAAABUQAAAAACUQAAAAABUQAAAAACUQAAAAABUQAAAAAAUQAAAAADUQAAAAAAUQAAAAACUQAAAAABUQAAAAACUQAAAAADUQAAAAAAUQAAAAABUQAAAAADUQAAAAACUQAAAAADUQAAAAACUQAAAAADUQAAAAABUQAAAAACUQAAAAAAUQAAAAABZAAAAAAAEgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFwAAAAAAZAAAAAAAZAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAFwAAAAACFwAAAAACFwAAAAACFwAAAAADZAAAAAAA + version: 6 1,-3: ind: 1,-3 - tiles: AgAAAAIAAAACAAAARQAAAEUAAANFAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAAFFAAABRQAAAV8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABbAAACWwAAA18AAABFAAACRQAAAkUAAAJfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAFsAAABfAAAARQAAAEUAAANFAAABXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFsAAANbAAABWwAAA0UAAAFFAAACRQAAAl8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABbAAADWwAAA18AAABFAAAARQAAAEUAAAFfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAA1sAAAFfAAAARQAAAkUAAAFFAAACXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAABFAAACRQAAAl8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAIwAAAF8AAABFAAABRQAAAkUAAANfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAIwAAACMAAABfAAAARQAAAUUAAANFAAACXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACMAAAAjAAAAXwAAAEUAAABFAAADRQAAA18AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAXwAAAF8AAABFAAACRQAAAkUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATQAAA00AAABNAAACRQAAA0UAAABFAAACRQAAAkUAAANFAAACTAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAE0AAAFNAAABTQAAAkUAAAJFAAAARQAAAkUAAAFFAAACRQAAA0wAAABKAAABSgAAA0oAAANKAAACSgAAA0wAAAAxAAAAMQAAAF8AAABFAAADRQAAAkUAAABFAAAARQAAAioAAABMAAAASgAAAkoAAANKAAAASgAAAkoAAABMAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAADRQAAA0UAAAEqAAABTAAAAEoAAANKAAABSgAAAUoAAAFKAAADTAAAAA== + tiles: AgAAAAAAAgAAAAAAAgAAAAAARwAAAAAARwAAAAADRwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAABZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAADZAAAAAAARwAAAAACRwAAAAACRwAAAAACZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAABZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAABYAAAAAADRwAAAAABRwAAAAACRwAAAAACZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAADZAAAAAAARwAAAAAARwAAAAAARwAAAAABZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAABZAAAAAAARwAAAAACRwAAAAABRwAAAAACZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAACZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAADZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAIgAAAAAAIgAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAACZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAADZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUQAAAAADUQAAAAAAUQAAAAACRwAAAAADRwAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUQAAAAABUQAAAAABUQAAAAACRwAAAAACRwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAADUAAAAAAATgAAAAABTgAAAAADTgAAAAADTgAAAAACTgAAAAADUAAAAAAAMgAAAAAAMgAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAAARwAAAAACKQAAAAAAUAAAAAAATgAAAAACTgAAAAADTgAAAAAATgAAAAACTgAAAAAAUAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAABKQAAAAABUAAAAAAATgAAAAADTgAAAAABTgAAAAABTgAAAAABTgAAAAADUAAAAAAA + version: 6 -1,-5: ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -1,-4: ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF8AAABfAAAAFwAAABcAAAEXAAACFwAAAxcAAAFfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAAFwAAARcAAAIdAAAAHQAAAB0AAAAXAAAAFwAAA18AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAABcAAAIXAAADHQAAAB0AAAAdAAAAFwAAABcAAAFfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF8AAABfAAAAFwAAAhcAAAEXAAABFwAAAhcAAAFfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXwAAAF8AAAAXAAAAFwAAAxcAAAFfAAAAXwAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAAEUAAAFFAAADXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAEUAAAFFAAABRQAAA18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABFAAAARQAAAkUAAAFfAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAJFAAACXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFIAAANSAAACNQAAADUAAAA1AAAAXwAAAEUAAAJFAAADRQAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABSAAADUgAAAjUAAAA1AAAANQAAAF8AAABFAAABRQAAAUUAAAJfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABfAAAAUgAAAVIAAAM1AAAANQAAADUAAABFAAADRQAAA0UAAABFAAABTwAAAF8AAABfAAAAXwAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAADRQAAA18AAABfAAAAXwAAAF8AAABeAAAAXgAAAF8AAAAWAAAAFgAAABYAAAAWAAAAFgAAAEUAAAFFAAADRQAAA0UAAANfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABfAAAAFgAAABYAAAAWAAAAFgAAABYAAABfAAAARQAAAUUAAAJFAAADHwAAAV8AAABfAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAABFgAAAAACFgAAAAADFgAAAAABZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAABFgAAAAACHAAAAAAAHAAAAAAAHAAAAAAAFgAAAAAAFgAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAACFgAAAAADHAAAAAAAHAAAAAAAHAAAAAAAFgAAAAAAFgAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAABFgAAAAACFgAAAAABZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAABZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAADZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAVwAAAAADVwAAAAACNgAAAAAANgAAAAAANgAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAVwAAAAADVwAAAAACNgAAAAAANgAAAAAANgAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAVwAAAAABVwAAAAADNgAAAAAANgAAAAAANgAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAABUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAADHgAAAAABZAAAAAAAZAAAAAAAZAAAAAAA + version: 6 -4,-3: ind: -4,-3 - tiles: BAAAAgQAAAIEAAABBAAAAgQAAAIEAAACBAAAAgQAAAJfAAAAXwAAAE8AAABPAAAATwAAAE8AAABfAAAATwAAAF8AAABfAAAAXwAAAAQAAAIEAAABBAAAAAQAAAIEAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAAAEAAAABAAAAAQAAAIEAAAABAAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAF8AAABPAAAATwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAATwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAF8AAABfAAAAXwAAABcAAAFfAAAAXwAAAF8AAABIAAAASAAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAABFwAAAxcAAAIXAAAASAAAAEgAAABPAAAAXwAAAE8AAABPAAAATwAAAF8AAABPAAAAXwAAAF8AAABfAAAAFwAAABwAAAEXAAACHAAAAkgAAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAEXAAADFwAAAxcAAAFIAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAFwAAA18AAAAXAAABSAAAAEgAAABfAAAAXwAAAF8AAABPAAAAXwAAAEUAAAFFAAADRQAAAV8AAABSAAABUgAAAFIAAAJSAAAAUgAAAQ== + tiles: BgAAAAACBgAAAAACBgAAAAABBgAAAAACBgAAAAACBgAAAAACBgAAAAACBgAAAAACZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAACBgAAAAABBgAAAAAABgAAAAACBgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAACBgAAAAAABgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAADFgAAAAACFgAAAAAATAAAAAAATAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAGwAAAAABFgAAAAACGwAAAAACTAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAADFgAAAAADFgAAAAABTAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADZAAAAAAAFgAAAAABTAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAABZAAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAAAVwAAAAAB + version: 6 -4,-2: ind: -4,-2 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAEUAAAJGAAACRQAAAVIAAANSAAADUgAAAVIAAAJSAAACUgAAAgAAAAAAAAAAXwAAAF8AAABfAAAATwAAAF8AAABFAAACRQAAA0UAAANfAAAAUgAAAVIAAAFSAAABUgAAAFIAAAIEAAACBAAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAEoAAABfAAAABAAAAAQAAAFfAAAAXwAAAF8AAABfAAAARQAAAEUAAAJFAAABRQAAAUUAAABfAAAASgAAAkoAAABKAAADSgAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAACRgAAA0UAAABFAAAAXwAAAEoAAABKAAAASgAAA0oAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAUYAAABFAAACRQAAAF8AAABKAAACSgAAAUoAAANKAAABXwAAAF8AAABPAAAAXwAAAF8AAABfAAAARQAAAEUAAANGAAAARQAAA0UAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAEUAAABFAAADRQAAAEUAAANFAAADXwAAAE8AAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABPAAAAOgAAADoAAABPAAAABAAAAAQAAAFfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAGgAAADoAAAA6AAAAGgAAAwQAAAIEAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABoAAAIaAAAAGgAAABoAAAIFAAAABAAAAAQAAAAEAAABBAAAAAQAAAIEAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAAQAAAEEAAABBAAAAAQAAAIEAAAABAAAAQQAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAQAAAAEAAACBAAAAgQAAAEEAAABBAAAAgQAAAEEAAABXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAAAFAAAABAAAAAQAAAAFAAAABAAAAgQAAAIEAAABBAAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAgQAAAAEAAABBAAAAQQAAAEEAAAABAAAAAQAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAA== + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAACSgAAAAACRwAAAAABVwAAAAADVwAAAAADVwAAAAABVwAAAAACVwAAAAACVwAAAAACAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAADZAAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAAAVwAAAAACBgAAAAACBgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATgAAAAAAZAAAAAAABgAAAAAABgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAABRwAAAAAAZAAAAAAATgAAAAACTgAAAAAATgAAAAADTgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACSgAAAAADRwAAAAAARwAAAAAAZAAAAAAATgAAAAAATgAAAAAATgAAAAADTgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABSgAAAAAARwAAAAACRwAAAAAAZAAAAAAATgAAAAACTgAAAAABTgAAAAADTgAAAAABZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADSgAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAADZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAOwAAAAAAOwAAAAAAUwAAAAAABgAAAAAABgAAAAABZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGQAAAAAAOwAAAAAAOwAAAAAAGQAAAAADBgAAAAACBgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGQAAAAACGQAAAAAAGQAAAAAAGQAAAAACBwAAAAAABgAAAAAABgAAAAAABgAAAAABBgAAAAAABgAAAAACBgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAABBgAAAAABBgAAAAAABgAAAAACBgAAAAAABgAAAAABBgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAACBgAAAAACBgAAAAABBgAAAAABBgAAAAACBgAAAAABBgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAABwAAAAAABgAAAAAABgAAAAAABwAAAAAABgAAAAACBgAAAAACBgAAAAABBgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAACBgAAAAAABgAAAAABBgAAAAABBgAAAAABBgAAAAAABgAAAAAABgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAA + version: 6 -3,-4: ind: -3,-4 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAl8AAABfAAAAXwAAAF8AAABfAAAABAAAAQQAAAIEAAAABAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAQAAAFfAAAAXwAAAF8AAABfAAAAXwAAAAQAAAEEAAABBAAAAgUAAAAEAAABBAAAAQQAAAAcAAADHAAAAF8AAAAEAAABXwAAAF8AAABfAAAAXwAAAF8AAAAEAAABBAAAAgQAAAIEAAAABAAAAgQAAAEEAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAg== + tiles: YwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAABBgAAAAACBgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAABBgAAAAABBgAAAAACBwAAAAAABgAAAAABBgAAAAABBgAAAAAAGwAAAAADGwAAAAAAZAAAAAAABgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAABBgAAAAACBgAAAAACBgAAAAAABgAAAAACBgAAAAABBgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAC + version: 6 -4,-4: ind: -4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQQAAAEEAAABBAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAQAAAAEAAACBAAAAgQAAAIEAAACBAAAAgQAAAIEAAACBAAAAgQAAAAEAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEEAAABBAAAAQQAAAEEAAACBAAAAQQAAAIEAAABBAAAAgQAAAAEAAACBAAAAgQAAAIEAAACAAAAAAQAAAIEAAAABAAAAgQAAAAEAAABBAAAAAQAAAIEAAAABAAAAQQAAAAEAAACBAAAAQQAAAIEAAABXwAAAF8AAAAEAAABBAAAAQQAAAIEAAABBAAAAAQAAAIEAAACBAAAAAQAAAAEAAAABAAAAQQAAAAEAAABBAAAAF8AAABPAAAABAAAAgQAAAAEAAABBAAAAAQAAAIEAAAABAAAAQQAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAABBgAAAAABBgAAAAABBgAAAAACBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAAABgAAAAAABgAAAAACBgAAAAACBgAAAAACBgAAAAACBgAAAAACBgAAAAACBgAAAAACBgAAAAACBgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAABBgAAAAABBgAAAAABBgAAAAABBgAAAAACBgAAAAABBgAAAAACBgAAAAABBgAAAAACBgAAAAAABgAAAAACBgAAAAACBgAAAAACBgAAAAACAAAAAAAABgAAAAACBgAAAAAABgAAAAACBgAAAAAABgAAAAABBgAAAAAABgAAAAACBgAAAAAABgAAAAABBgAAAAAABgAAAAACBgAAAAABBgAAAAACBgAAAAABZAAAAAAAZAAAAAAABgAAAAABBgAAAAABBgAAAAACBgAAAAABBgAAAAAABgAAAAACBgAAAAACBgAAAAAABgAAAAAABgAAAAAABgAAAAABBgAAAAAABgAAAAABBgAAAAAAZAAAAAAAUwAAAAAABgAAAAACBgAAAAAABgAAAAABBgAAAAAABgAAAAACBgAAAAAABgAAAAABBgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + version: 6 0,-4: ind: 0,-4 - tiles: AAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAAIAAABeAAAAXgAAAF8AAABIAAAASAAAAEgAAABIAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAAACAAAAAAAAAF4AAABfAAAASAAAAEgAAABIAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABfAAAATwAAABwAAAMcAAADTwAAAF8AAAACAAAAAgAAAAIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAgAAAAIAAAACAAAAXwAAAF8AAABfAAAAXwAAAEgAAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAAXwAAAAIAAAACAAAAAgAAAA== + tiles: AAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAAgAAAAAAYwAAAAAAYwAAAAAAZAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAgAAAAAAAAAAAAAAYwAAAAAAZAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAUwAAAAAAGwAAAAADGwAAAAADUwAAAAAAZAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + version: 6 1,-4: ind: 1,-4 - tiles: XgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAFwAAAhcAAAMXAAABFwAAARcAAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAFwAAAhcAAAIXAAACFwAAABcAAAEXAAABFwAAA18AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAAXAAADFwAAABcAAAMXAAACFwAAAhcAAAFfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAFwAAARcAAAIXAAACFwAAAhcAAANfAAAAXwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAAkUAAABFAAABXwAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAFFAAADRQAAAV8AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAACRQAAAkUAAANfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAAUUAAANFAAACXwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAACAAAAXwAAAEUAAAJFAAAARQAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAgAAAF8AAABFAAABRQAAAEUAAAJfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAIAAAACAAAARQAAAkUAAANFAAADXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAACAAAAXwAAAEUAAAJFAAAARQAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAgAAAF8AAABFAAACRQAAA0UAAANfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAIAAABfAAAARQAAAUUAAANFAAACXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAABFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAACFgAAAAAAFgAAAAABFgAAAAABFgAAAAADZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAAAFgAAAAADFgAAAAACFgAAAAACFgAAAAABZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAACFgAAAAACFgAAAAACFgAAAAADZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAABZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAABZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAADZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAACZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAACZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAARwAAAAACRwAAAAADRwAAAAADZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAADZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAACZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,-2: ind: 2,-2 - tiles: HwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAnAAAAJwAAACcAAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXAAAA1wAAAJcAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFwAAANcAAABXAAAAV8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABcAAACXAAAAVwAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAFwAAABcAAAAXwAAADsAAAA7AAAAXwAAADsAAAA7AAAAXwAAADsAAAA7AAAAXwAAADsAAAA7AAAAXwAAAFwAAAJcAAADXAAAAV8AAAA7AAAAOwAAAF8AAAA7AAAAOwAAAF8AAAA7AAAAOwAAAF8AAAA7AAAAOwAAAF8AAABcAAAAXAAAAFwAAAFfAAAAXwAAAEUAAABfAAAAXwAAAEUAAABfAAAAXwAAAEUAAANfAAAAXwAAAEUAAANfAAAAJwAAACcAAAAnAAAAXwAAAEUAAAFFAAAARQAAAUUAAAJFAAADRQAAAEUAAABFAAABRQAAAUUAAANFAAADXwAAAA== + tiles: HgAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYQAAAAADYQAAAAACYQAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYQAAAAADYQAAAAABYQAAAAABZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYQAAAAACYQAAAAABYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYQAAAAACYQAAAAADYQAAAAABZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYQAAAAAAYQAAAAAAYQAAAAABZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAACRwAAAAADRwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAADZAAAAAAA + version: 6 2,-3: ind: 2,-3 - tiles: XgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAARQAAAl8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABfAAAARQAAAUUAAABFAAABRQAAAEUAAAJeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAEUAAABFAAADRQAAA0UAAAJFAAADXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABfAAAAXAAAAVwAAAFfAAAARQAAAkUAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAFwAAAJcAAADRQAAAEUAAAJFAAABXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABcAAABXAAAA18AAABFAAADRQAAAV4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAB8AAANfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAfAAADXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAHwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAAARwAAAAACYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAADYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYQAAAAABYQAAAAABZAAAAAAARwAAAAACRwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYQAAAAACYQAAAAADRwAAAAAARwAAAAACRwAAAAABYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYQAAAAABYQAAAAADZAAAAAAARwAAAAADRwAAAAABYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAHgAAAAADZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAHgAAAAADZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAHgAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 3,-2: ind: 3,-2 - tiles: AAAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABfAAAAFwAAABcAAAIXAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXwAAABcAAAIXAAACFwAAA18AAAA7AAAAOwAAADsAAAA7AAAAOwAAAF8AAABFAAADRQAAAl8AAABfAAAAXwAAAF8AAAAXAAADFwAAARcAAAIXAAAAOwAAADsAAAA7AAAAOwAAADsAAABfAAAATAAAAEwAAABMAAAATAAAAEwAAAAXAAADFwAAABcAAAIXAAACXwAAADsAAAA7AAAAOwAAADsAAAA7AAAAXwAAAEwAAABMAAAATAAAAEwAAABMAAAAFwAAAxcAAAMXAAAAFwAAA18AAABfAAAAXwAAADsAAABfAAAAXwAAAF8AAABMAAAATAAAAEwAAABMAAAATAAAAF8AAABfAAAAXwAAAF8AAABfAAAAOwAAADsAAAA7AAAAOwAAADsAAABfAAAASwAAAEwAAABMAAAATAAAAEwAAABfAAAAXAAAAVwAAABcAAADXwAAAA== + tiles: AAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAAAFgAAAAACFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAADZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAABFgAAAAACFgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAFgAAAAADFgAAAAAAFgAAAAACFgAAAAACZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAFgAAAAADFgAAAAADFgAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAATwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAZAAAAAAAYQAAAAABYQAAAAAAYQAAAAADZAAAAAAA + version: 6 4,-2: ind: 4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAADsAAAA7AAAAOwAAAF8AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsAAAMbAAABGwAAARsAAANfAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAAACUgAAAVIAAAJSAAAAXwAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAABsAAAEbAAADGwAAAhsAAANeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAA7AAAAOwAAADsAAABfAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAABGgAAAAABGgAAAAADZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAABGgAAAAADGgAAAAACGgAAAAADYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 4,-3: ind: 4,-3 - tiles: AAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,-4: ind: 2,-4 - tiles: XgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAFwAAAFcAAACXAAAAl8AAABcAAABXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABcAAABXAAAAFwAAANfAAAAXAAAAA== + tiles: YwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYQAAAAABYQAAAAACYQAAAAACZAAAAAAAYQAAAAABYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYQAAAAABYQAAAAAAYQAAAAADZAAAAAAAYQAAAAAA + version: 6 3,-4: ind: 3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABcAAACXAAAAV8AAABcAAADXAAAAVwAAAJfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXAAAA1wAAAJfAAAAXAAAAVwAAAJcAAABXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAACYQAAAAABZAAAAAAAYQAAAAADYQAAAAABYQAAAAACZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAADYQAAAAACZAAAAAAAYQAAAAABYQAAAAACYQAAAAABZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + version: 6 -2,2: ind: -2,2 - tiles: TwAAAF8AAABfAAAAXwAAAF8AAAAbAAACGwAAAxsAAAEbAAADGwAAAhsAAAJFAAABRQAAAUUAAAIbAAABGwAAA18AAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAGwAAAhsAAAIbAAADRQAAAUUAAAJFAAAAGwAAAxsAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAAARQAAAl8AAAAXAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAABFwAAAF8AAABFAAACRQAAAEUAAAJfAAAARQAAAV8AAABfAAAAXwAAAF8AAABLAAAASwAAAEsAAABLAAAARQAAAkUAAAJfAAAARQAAAUUAAABFAAACXwAAAEUAAAJfAAAAXwAAAF8AAABPAAAARQAAA0YAAAFGAAADRgAAAkYAAAFFAAACRQAAA0UAAABFAAABRQAAAF8AAABFAAABXwAAAF8AAABPAAAAXwAAAEUAAABGAAAARgAAAkYAAAFGAAACRQAAA0UAAAJFAAABRQAAAUUAAANfAAAARQAAA18AAABfAAAATwAAAF8AAABFAAAARQAAAUUAAAFFAAACRQAAA0UAAAJfAAAARQAAAEUAAAJFAAADRQAAAkUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAABFwAAA18AAABfAAAAXwAAAEUAAAJFAAABRQAAAEUAAAJFAAADXwAAAF8AAABfAAAAHgAAAh4AAAIeAAADHgAAAB4AAAAeAAAAHgAAAh4AAAFFAAABRQAAAUUAAAJfAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAeAAADRQAAAUUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAOwAAADsAAABfAAAAOwAAADsAAABfAAAAXwAAAEUAAANFAAABRQAAA0UAAAJFAAAAXwAAAF8AAABfAAAAXwAAADsAAAA7AAAAXwAAADsAAAA7AAAAXwAAAF8AAABFAAABRQAAA0UAAAJFAAADRQAAAl8AAABfAAAAXwAAAB4AAAEeAAAAHgAAAh4AAAEeAAACHgAAAx4AAANfAAAARQAAA0UAAAFFAAABRQAAAEUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAADRQAAAF8AAABfAAAATwAAAF8AAABfAAAAGwAAABsAAAAbAAABGwAAAhsAAAMbAAAAGwAAARwAAAJFAAACRQAAAEUAAAFfAAAARQAAAA== + tiles: UwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGgAAAAACGgAAAAADGgAAAAABGgAAAAADGgAAAAACGgAAAAACRwAAAAABRwAAAAABRwAAAAACGgAAAAABGgAAAAADZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGgAAAAACGgAAAAACGgAAAAADRwAAAAABRwAAAAACRwAAAAAAGgAAAAADGgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAACZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAACZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAARwAAAAACRwAAAAACZAAAAAAARwAAAAABRwAAAAAARwAAAAACZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAADSgAAAAABSgAAAAADSgAAAAACSgAAAAABRwAAAAACRwAAAAADRwAAAAAARwAAAAABRwAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAAASgAAAAAASgAAAAACSgAAAAABSgAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAABRwAAAAADZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAADRwAAAAACZAAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABRwAAAAABRwAAAAABRwAAAAACZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHQAAAAADRwAAAAABRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAADHQAAAAADZAAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAGgAAAAAAGgAAAAAAGgAAAAABGgAAAAACGgAAAAADGgAAAAAAGgAAAAABGwAAAAACRwAAAAACRwAAAAAARwAAAAABZAAAAAAARwAAAAAA + version: 6 -1,3: ind: -1,3 - tiles: RQAAAUUAAANFAAABRQAAAkUAAAFFAAADRQAAAF8AAAAXAAACGwAAAEUAAABFAAAARQAAACwAAAEsAAACLAAAAR4AAAAeAAABXwAAAB4AAAMeAAACHgAAAx4AAANFAAABXwAAABsAAABFAAADRQAAAUUAAAFFAAABRQAAAkUAAAE0AAAANAAAAF8AAAA0AAAANAAAADQAAAAeAAACRQAAAl8AAAAbAAABRQAAAEUAAABFAAABRQAAAkUAAANFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAHgAAAEUAAANfAAAAGwAAAkUAAAFFAAAARQAAA0UAAAFFAAACRQAAATQAAAA0AAAANAAAADQAAAA0AAAANAAAAB4AAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAeAAAAHgAAAR4AAAMeAAABHgAAAx4AAAAeAAACRQAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAARQAAA0UAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAEUAAAJFAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAAAcAAADHAAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAHAAAAjsAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXwAAABwAAAM7AAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAAAcAAAAOwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAHAAAABwAAAFeAAAAXgAAAF8AAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXwAAAF8AAABfAAAAXgAAAF4AAABfAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABfAAAAXgAAAA== + tiles: RwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAABRwAAAAADRwAAAAAAZAAAAAAAFgAAAAACGgAAAAAARwAAAAAARwAAAAAARwAAAAAAKwAAAAABKwAAAAACKwAAAAABHQAAAAAAHQAAAAABZAAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAADRwAAAAABZAAAAAAAGgAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAABRwAAAAACRwAAAAABNQAAAAAANQAAAAAAZAAAAAAANQAAAAAANQAAAAAANQAAAAAAHQAAAAACRwAAAAACZAAAAAAAGgAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHQAAAAAARwAAAAADZAAAAAAAGgAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAABNQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAHQAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAACRwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAGwAAAAADGwAAAAACYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAGwAAAAACPAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAGwAAAAADPAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAGwAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAGwAAAAAAGwAAAAABYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAA + version: 6 -2,3: ind: -2,3 - tiles: TwAAAF8AAABfAAAAGwAAAxsAAAMbAAAAGwAAARsAAAIbAAADGwAAAhwAAAFFAAABRQAAAEUAAAFfAAAARQAAAk8AAABfAAAAXwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAABsAAAIcAAADRQAAAkUAAANFAAACXwAAAB4AAAJfAAAAXwAAAF8AAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAAbAAACHAAAAUUAAAJFAAAARQAAAF8AAAAeAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAkUAAANfAAAAHgAAAE8AAABPAAAAXwAAAEUAAAFFAAAARQAAAEUAAAFFAAACRQAAAEUAAAJfAAAARQAAAEUAAAJFAAABXwAAAB4AAAJfAAAAXwAAAF8AAABFAAABRQAAA0UAAAJFAAABRQAAAUUAAAJFAAACRQAAAEUAAAJFAAAARQAAAV8AAAAeAAADXgAAAF4AAABfAAAARQAAAkUAAANFAAACRQAAAUUAAANFAAABRQAAAUUAAANFAAAARQAAAEUAAABfAAAAXwAAAAAAAABeAAAAXwAAABcAAAIXAAACTwAAAE8AAABPAAAAFwAAAxcAAAJfAAAAFwAAABcAAANfAAAAXwAAAF4AAAAAAAAAAAAAAF8AAAAXAAABFwAAAE8AAABPAAAATwAAABcAAAIXAAABXwAAABcAAAAXAAACXwAAAF4AAAAAAAAAXgAAAF4AAABfAAAAXwAAABcAAAJPAAAATwAAAE8AAAAXAAACXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF8AAAAXAAACTwAAAE8AAABPAAAAFwAAAV8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAARcAAAIXAAACFwAAARcAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF4AAABeAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: UwAAAAAAZAAAAAAAZAAAAAAAGgAAAAADGgAAAAADGgAAAAAAGgAAAAABGgAAAAACGgAAAAADGgAAAAACGwAAAAABRwAAAAABRwAAAAAARwAAAAABZAAAAAAARwAAAAACUwAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAGgAAAAACGwAAAAADRwAAAAACRwAAAAADRwAAAAACZAAAAAAAHQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAGgAAAAACGwAAAAABRwAAAAACRwAAAAAARwAAAAAAZAAAAAAAHQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAADZAAAAAAAHQAAAAAAUwAAAAAAUwAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAACZAAAAAAARwAAAAAARwAAAAACRwAAAAABZAAAAAAAHQAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAABRwAAAAABRwAAAAACRwAAAAACRwAAAAAARwAAAAACRwAAAAAARwAAAAABZAAAAAAAHQAAAAADYwAAAAAAYwAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAADRwAAAAABRwAAAAABRwAAAAADRwAAAAAARwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAFgAAAAACFgAAAAACUwAAAAAAUwAAAAAAUwAAAAAAFgAAAAADFgAAAAACZAAAAAAAFgAAAAAAFgAAAAADZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAABFgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAFgAAAAACFgAAAAABZAAAAAAAFgAAAAAAFgAAAAACZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAFgAAAAACUwAAAAAAUwAAAAAAUwAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAACUwAAAAAAUwAAAAAAUwAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAABFgAAAAACFgAAAAACFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + version: 6 -3,2: ind: -3,2 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABfAAAAXwAAAF8AAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAASAAAAEgAAABfAAAAXwAAAF8AAAAAAAAAXwAAAEgAAABIAAAAXwAAAF8AAABIAAAAXwAAAF8AAABfAAAASAAAAEgAAABIAAAAXwAAAEgAAABfAAAAAAAAAF8AAABIAAAASAAAAF8AAABIAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAF8AAABfAAAASAAAAEgAAABfAAAAXwAAAAAAAABfAAAAXwAAAEgAAABfAAAAXwAAAF8AAABfAAAASAAAAEgAAABfAAAASAAAAEgAAABfAAAAXwAAAF8AAAAAAAAAXwAAAEgAAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAABfAAAAAAAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAA== + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAATAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAATAAAAAAATAAAAAAAZAAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAAZAAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + version: 6 -3,3: ind: -3,3 - tiles: AAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAF8AAABIAAAAXwAAAEgAAABfAAAAXwAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXwAAAAEAAAABAAAAAQAAAF8AAABfAAAASAAAAF8AAABIAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAABAAAAAwAAAAMAAABfAAAAXwAAAEgAAABIAAAAXwAAAEgAAABIAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAwAAAAMAAAADAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: AAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAZAAAAAAAZAAAAAAATAAAAAAAZAAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAAZAAAAAAATAAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + version: 6 -3,1: ind: -3,1 - tiles: XwAAAF8AAABfAAAAXwAAAAQAAAEEAAABXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF8AAAAcAAAADwAAAF8AAABfAAAAXwAAAF8AAAAEAAAABAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAAHAAAARsAAANfAAAAXwAAAAQAAAEEAAAABAAAAgAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAABwAAAIbAAADXwAAAF8AAAAEAAABBQAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAcAAABDwAAAF8AAABfAAAABAAAAAQAAAJeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAA8AAABfAAAAXwAAAF8AAABfAAAABAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAATwAAAE8AAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAE8AAABfAAAAPQAAAD0AAAA9AAAASwAAAEsAAAA9AAAAPQAAAD0AAABfAAAAXwAAAE8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAD0AAAA9AAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAEUAAAJFAAAARQAAAkUAAAJFAAABRQAAAkUAAAJFAAADRQAAA0UAAAJFAAAARQAAA0UAAAJFAAADRQAAA0UAAANFAAACRQAAA0UAAAJFAAACRQAAAEUAAAJFAAABRQAAAUUAAAFFAAACRQAAAkUAAABFAAACRQAAAkUAAAFFAAABRQAAAUUAAAFFAAAARQAAAEUAAAFFAAADRQAAA0UAAABFAAACRQAAA0UAAABFAAACRQAAAEUAAABFAAACRQAAAg== + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAABBgAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAGwAAAAAADgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAGwAAAAABGgAAAAADZAAAAAAAZAAAAAAABgAAAAABBgAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAGwAAAAACGgAAAAADZAAAAAAAZAAAAAAABgAAAAABBwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAGwAAAAABDgAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAACYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAADgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAATwAAAAAATwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAADRwAAAAACRwAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAADRwAAAAADRwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAACRwAAAAABRwAAAAABRwAAAAABRwAAAAACRwAAAAACRwAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAACRwAAAAAC + version: 6 -4,-1: ind: -4,-1 - tiles: BAAAAgQAAAIEAAACBAAAAgQAAAAEAAABBQAAAAQAAABfAAAAXwAAAF8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAUAAAAEAAACBAAAAQQAAAEEAAAABAAAAAQAAAAEAAABXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAgQAAAAEAAACBAAAAAQAAAIEAAAABAAAAV8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAACBAAAAQQAAAIEAAAABAAAAAQAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAQAAAEEAAABBQAAAAQAAAEEAAABBQAAAAQAAAAEAAACXwAAAF8AAABfAAAARAAAAUQAAAJEAAAHRAAAA18AAAAEAAABBAAAAQQAAAAEAAABBAAAAAQAAAAEAAABBAAAAl8AAABfAAAAXwAAAEQAAAtEAAAJRAAACEQAAAZfAAAABAAAAQQAAAIFAAAABAAAAgQAAAEEAAABBAAAAAQAAAJfAAAAXwAAAF8AAABfAAAARAAAB0QAAAZEAAAJXwAAAAQAAAAEAAACBAAAAQQAAAIEAAACBAAAAAQAAAEEAAABXwAAAF8AAABPAAAAXwAAAEQAAABEAAAGRAAABF8AAAAEAAABBAAAAAQAAAAEAAAABAAAAAQAAAAFAAAABAAAAF8AAABfAAAATwAAAF8AAABEAAAERAAAAkQAAANfAAAABAAAAAQAAAEEAAACBAAAAQQAAAAEAAABBAAAAQQAAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAABAAAAQQAAAEEAAACBAAAAQQAAAAEAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAEAAAABAAAAgQAAAIEAAAABAAAAF8AAABfAAAATwAAAE8AAABPAAAATwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAABAAAAQQAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAQAAAAEAAABXwAAAFwAAABcAAACXAAAAVwAAANcAAADXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXwAAAF8AAABcAAAAXwAAAFwAAAJcAAACXAAAAl8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF8AAABcAAAAXAAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: BgAAAAACBgAAAAACBgAAAAACBgAAAAACBgAAAAAABgAAAAABBwAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABgAAAAACBgAAAAABBgAAAAABBgAAAAAABgAAAAAABgAAAAAABgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAACBgAAAAAABgAAAAACBgAAAAAABgAAAAACBgAAAAAABgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAABBgAAAAACBgAAAAABBgAAAAACBgAAAAAABgAAAAAABgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAABBgAAAAABBwAAAAAABgAAAAABBgAAAAABBwAAAAAABgAAAAAABgAAAAACZAAAAAAAZAAAAAAAZAAAAAAARgAAAAABRgAAAAACRgAAAAAHRgAAAAADZAAAAAAABgAAAAABBgAAAAABBgAAAAAABgAAAAABBgAAAAAABgAAAAAABgAAAAABBgAAAAACZAAAAAAAZAAAAAAAZAAAAAAARgAAAAALRgAAAAAJRgAAAAAIRgAAAAAGZAAAAAAABgAAAAABBgAAAAACBwAAAAAABgAAAAACBgAAAAABBgAAAAABBgAAAAAABgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARgAAAAAHRgAAAAAGRgAAAAAJZAAAAAAABgAAAAAABgAAAAACBgAAAAABBgAAAAACBgAAAAACBgAAAAAABgAAAAABBgAAAAABZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARgAAAAAARgAAAAAGRgAAAAAEZAAAAAAABgAAAAABBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABwAAAAAABgAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARgAAAAAERgAAAAACRgAAAAADZAAAAAAABgAAAAAABgAAAAABBgAAAAACBgAAAAABBgAAAAAABgAAAAABBgAAAAABBgAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAABBgAAAAACBgAAAAABBgAAAAAABgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAACBgAAAAACBgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAABgAAAAABBgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAABgAAAAAABgAAAAABZAAAAAAAYQAAAAAAYQAAAAACYQAAAAABYQAAAAADYQAAAAADZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAZAAAAAAAYQAAAAACYQAAAAACYQAAAAACZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYQAAAAAAYQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + version: 6 -2,4: ind: -2,4 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAF4AAAAAAAAAXgAAAF8AAABeAAAAAAAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAABfAAAAXgAAAF4AAABeAAAAXwAAAF4AAABeAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAA== + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAA + version: 6 -3,4: ind: -3,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF8AAABeAAAAXgAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABfAAAAXgAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXwAAAF4AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF8AAABeAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXgAAAF4AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXwAAAF4AAABeAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF8AAABeAAAAXgAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABfAAAAXgAAAF4AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXwAAAF4AAABeAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAABeAAAAXgAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABfAAAAXgAAAF4AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXwAAAF4AAABeAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF8AAABeAAAAXgAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABfAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF8AAABeAAAAXgAAAF4AAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAA + version: 6 -3,5: ind: -3,5 - tiles: AAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABfAAAAXgAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF4AAABeAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -2,5: ind: -2,5 - tiles: XgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAAAAAABfAAAAXwAAAF4AAABeAAAAXgAAAF8AAABeAAAAXgAAAF4AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -1,5: ind: -1,5 - tiles: XgAAAF4AAABfAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXwAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -1,4: ind: -1,4 - tiles: XgAAAF4AAABfAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF8AAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABfAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXwAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXwAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXwAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -4,0: ind: -4,0 - tiles: XgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAXgAAAF8AAABcAAABXAAAA1wAAANcAAADXAAAAF8AAABPAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABfAAAAXAAAA1wAAAFcAAACXAAAA1wAAANcAAAATwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXwAAAF8AAABcAAAAXAAAAVwAAAJcAAADXwAAAE8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABfAAAATwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAATwAAAA== + tiles: YwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYQAAAAABYQAAAAADYQAAAAADYQAAAAADYQAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYQAAAAADYQAAAAABYQAAAAACYQAAAAADYQAAAAADYQAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAABYQAAAAACYQAAAAADZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAUwAAAAAA + version: 6 -3,0: ind: -3,0 - tiles: XwAAAAQAAAEEAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAAAEAAAABAAAAQQAAAFeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAABAAAAQQAAAIEAAACBAAAAAQAAAIEAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAQQAAAIEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAATwAAAE8AAABPAAAAXwAAAAQAAAIEAAAABAAAAAQAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAE8AAABPAAAATwAAAF8AAAAEAAAABAAAAAQAAAIEAAABBAAAAQQAAABeAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAgQAAAIEAAABBAAAAQQAAAEEAAACBAAAAV4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAEAAABBAAAAQQAAAAEAAABBAAAAQQAAAIEAAABBAAAAQQAAAAEAAACBAAAAgQAAAJeAAAAXgAAAF8AAABfAAAABAAAAgQAAAIEAAAABAAAAgQAAAEEAAABBAAAAQQAAAAEAAABBAAAAAQAAAAEAAAAAAAAAAAAAABeAAAAXwAAAAQAAAIEAAACBAAAAAQAAAEFAAAABAAAAAQAAAEEAAACBAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAABAAAAgQAAAIEAAAABAAAAAQAAAEEAAAABAAAAAQAAAEEAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAQAAAIEAAACBAAAAAQAAAIEAAABBAAAAQQAAAAEAAACXgAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAQAAAEEAAAABAAAAQQAAAIEAAABBAAAAgAAAAAAAAAAAAAAAF8AAABfAAAADwAAAA== + tiles: ZAAAAAAABgAAAAABBgAAAAABYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAABgAAAAAABgAAAAABBgAAAAABYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAABgAAAAABBgAAAAACBgAAAAACBgAAAAAABgAAAAACBgAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAABBgAAAAACBgAAAAABBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAABgAAAAACBgAAAAAABgAAAAAABgAAAAACYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAACBgAAAAABBgAAAAABBgAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAACBgAAAAACBgAAAAABBgAAAAABBgAAAAABBgAAAAACBgAAAAABYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAABBgAAAAABBgAAAAAABgAAAAABBgAAAAABBgAAAAACBgAAAAABBgAAAAABBgAAAAAABgAAAAACBgAAAAACBgAAAAACYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAABgAAAAACBgAAAAACBgAAAAAABgAAAAACBgAAAAABBgAAAAABBgAAAAABBgAAAAAABgAAAAABBgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAABgAAAAACBgAAAAACBgAAAAAABgAAAAABBwAAAAAABgAAAAAABgAAAAABBgAAAAACBgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAABgAAAAACBgAAAAACBgAAAAAABgAAAAAABgAAAAABBgAAAAAABgAAAAAABgAAAAABBgAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAABgAAAAACBgAAAAACBgAAAAAABgAAAAACBgAAAAABBgAAAAABBgAAAAAABgAAAAACYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAABBgAAAAAABgAAAAABBgAAAAACBgAAAAABBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAADgAAAAAA + version: 6 -4,1: ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAFfAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAQAAAAEAAABXwAAAE8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAl8AAABPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAFfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAABBAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAQAAAEEAAAABAAAAQQAAAFfAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAEAAAABAAAAQQAAAIEAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEEAAACBAAAAl8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAQAAAAEAAACBAAAAQQAAABfAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAAQAAAIEAAABBAAAAQAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAQAAAIEAAABBAAAAQQAAAIAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAgQAAAEEAAAAAAAAAAAAAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAEUAAAFFAAADRQAAAUUAAAJFAAABRQAAAUUAAABFAAADRQAAAEUAAAMAAAAAXgAAAF4AAAAAAAAAAAAAAF8AAABFAAACRQAAAkUAAANFAAAARQAAAUUAAABFAAADRQAAA0UAAABFAAABXgAAAF4AAABeAAAAXgAAAF4AAABfAAAARQAAAUUAAANFAAABRQAAAUUAAAFFAAAARQAAAEUAAAJFAAACRQAAAQ== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAABgAAAAABZAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAABgAAAAAABgAAAAABZAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAACZAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAABZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAABBgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAABgAAAAABBgAAAAABZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABBgAAAAACBgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABBgAAAAACBgAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAACBgAAAAABBgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAABgAAAAABBgAAAAAABgAAAAACBgAAAAABBgAAAAABAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAABgAAAAACBgAAAAABBgAAAAABBgAAAAACAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAABgAAAAACBgAAAAABBgAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAADAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAAB + version: 6 -4,2: ind: -4,2 - tiles: AAAAAAAAAABeAAAAXgAAAF4AAABfAAAARQAAAUUAAAFFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAEUAAAJFAAABRQAAA18AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAA0UAAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARQAAA0UAAAJFAAACRQAAAUUAAABFAAABRQAAA0UAAABFAAABXwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAFFAAABRQAAAUUAAAFFAAADRQAAA0UAAABFAAADRQAAAV8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABFAAADRQAAAkwAAABMAAAATAAAAEwAAABMAAAARQAAAkUAAAJfAAAATwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAARQAAAUUAAANMAAAATAAAACoAAANMAAAATAAAAEUAAAFFAAACXwAAABwAAANfAAAAAAAAAAAAAAAAAAAAAAAAAEUAAANFAAAATAAAAEwAAAAqAAABTAAAAEwAAABFAAABRQAAAF8AAAAcAAACXwAAAAAAAAAAAAAAAAAAAAAAAABFAAACRQAAAUwAAABMAAAAKgAAA0wAAABMAAAARQAAAEUAAAFfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAAJMAAAATAAAACoAAAJMAAAATAAAAEUAAANFAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAJFAAABTAAAAEwAAAAqAAADTAAAAEwAAABFAAACRQAAAV8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABFAAADRQAAAUwAAABMAAAAKgAAAEwAAABMAAAARQAAAEUAAAFfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAARQAAAkUAAABMAAAATAAAAEwAAABMAAAATAAAAEUAAABFAAADXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAEUAAANFAAADRQAAAEUAAAFFAAABRQAAAkUAAANFAAACRQAAA18AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABFAAABRQAAAEUAAANFAAADRQAAAkUAAAFFAAABRQAAAUUAAANfAAAAHAAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAXAAAAXwAAAF8AAABFAAADRQAAAUUAAABFAAABXwAAABwAAABfAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAADZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAABZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAADRwAAAAADRwAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADRwAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAARwAAAAACRwAAAAACZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABRwAAAAADUAAAAAAAUAAAAAAAKQAAAAADUAAAAAAAUAAAAAAARwAAAAABRwAAAAACZAAAAAAAGwAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADRwAAAAAAUAAAAAAAUAAAAAAAKQAAAAABUAAAAAAAUAAAAAAARwAAAAABRwAAAAAAZAAAAAAAGwAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAABUAAAAAAAUAAAAAAAKQAAAAADUAAAAAAAUAAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAACUAAAAAAAUAAAAAAAKQAAAAACUAAAAAAAUAAAAAAARwAAAAADRwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAABUAAAAAAAUAAAAAAAKQAAAAADUAAAAAAAUAAAAAAARwAAAAACRwAAAAABZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADRwAAAAABUAAAAAAAUAAAAAAAKQAAAAAAUAAAAAAAUAAAAAAARwAAAAAARwAAAAABZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAARwAAAAAARwAAAAADZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAADRwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAABRwAAAAABRwAAAAABRwAAAAADZAAAAAAAGwAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAABZAAAAAAAGwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -4,3: ind: -4,3 - tiles: FwAAAhcAAAAXAAABFwAAA0UAAAFFAAADRQAAA0UAAABFAAADXwAAAE8AAABfAAAAAAAAAAAAAAAAAAAAAAAAABcAAAMXAAACFwAAAhcAAAFFAAAARQAAAkUAAABFAAACRQAAA18AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAXAAADFwAAAxcAAAMXAAABXwAAAEUAAAFFAAABRQAAA0UAAABFAAACXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAABcAAAAXAAADFwAAAV8AAABFAAADRQAAAkUAAANFAAABRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAV8AAABfAAAAXwAAABcAAAFfAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAAFwAAARcAAAMaAAACGgAAABoAAAMXAAACFwAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAMXAAACGgAAAhoAAAIaAAACFwAAAhcAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAFwAAAhcAAAMXAAADFwAAAhcAAANfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: FgAAAAACFgAAAAAAFgAAAAABFgAAAAADRwAAAAABRwAAAAADRwAAAAADRwAAAAAARwAAAAADZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAACFgAAAAACFgAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAADZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAADFgAAAAADFgAAAAABZAAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAAARwAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAAFgAAAAADFgAAAAABZAAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAADGQAAAAACGQAAAAAAGQAAAAADFgAAAAACFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAACGQAAAAACGQAAAAACGQAAAAACFgAAAAACFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAADFgAAAAACFgAAAAADZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,4: ind: 0,4 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAAAAAAF8AAAA9AAAAPQAAAD0AAAAbAAAAGwAAAQAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAPQAAAD0AAAA9AAAAGwAAAxsAAAMAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXwAAAD0AAAA9AAAAPQAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF8AAAA0AAAANAAAAB0AAAAdAAAAHQAAAB0AAAAdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABfAAAANAAAADQAAAAdAAAAHQAAAB0AAAAdAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXwAAADQAAAA0AAAAHQAAAB0AAAAdAAAAHQAAAB0AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF8AAAA0AAAANAAAAF8AAABfAAAAXwAAAB0AAAAdAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAF4AAABfAAAANAAAADQAAABfAAAAXgAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: YwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAGgAAAAAAGgAAAAABAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAGgAAAAADGgAAAAADAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAANQAAAAAANQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAANQAAAAAANQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAANQAAAAAANQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAANQAAAAAANQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAANQAAAAAANQAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + version: 6 1,4: ind: 1,4 - tiles: HAAAAx8AAANFAAABRQAAA0UAAAIXAAACFwAAAxcAAAMXAAADXwAAAFwAAAFcAAADXAAAA1wAAAJfAAAAXwAAAF8AAAAfAAAARQAAAEUAAABFAAACFwAAARcAAAEXAAADFwAAA18AAABcAAAAXAAAAFwAAAFcAAABXwAAAF8AAABfAAAAXwAAAEUAAAFFAAABRQAAAkUAAAJFAAAARQAAAUUAAAJfAAAAXAAAAVwAAANcAAADXAAAA18AAABfAAAAXgAAAF8AAABFAAADRQAAAEUAAAFFAAADRQAAAEUAAABFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAHAAAARwAAAFfAAAAXwAAAF8AAABFAAADRQAAAF8AAABFAAADRQAAAEUAAABFAAADTwAAAF8AAABfAAAAXwAAABsAAAMbAAADGwAAAxsAAABfAAAARQAAAkUAAANFAAACRQAAAEwAAABMAAAARQAAA18AAABPAAAAXwAAAF8AAAAXAAAAFwAAABcAAAAXAAAAXwAAAEUAAABFAAAAXwAAAEUAAABMAAAATAAAAEUAAAFfAAAAXwAAAF8AAABfAAAAFwAAARcAAAAXAAACFwAAAl8AAABFAAABRQAAAV8AAABFAAADRQAAA0UAAABFAAAAXwAAAF8AAAAdAAAAHQAAAB0AAAAdAAAAHAAAARwAAANfAAAAHAAAABwAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAHQAAAB0AAAAdAAAAHQAAABwAAAEcAAACXwAAABsAAAIbAAAAGwAAABsAAAAbAAADGwAAABsAAAMbAAADGwAAAx0AAAAdAAAAHQAAAB0AAAAcAAAAHAAAAF8AAAAbAAABGwAAAhsAAAMbAAADGwAAARsAAAMbAAADGwAAARsAAAIdAAAAXwAAAF8AAABfAAAAHAAAARwAAAJfAAAAGwAAABsAAAMbAAABGwAAABsAAAMbAAABGwAAAxsAAAAbAAABXwAAAF8AAABeAAAAXwAAABwAAAIcAAADXwAAABsAAAMbAAABGwAAARsAAAAbAAABXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAAAbAAACGwAAAV8AAABfAAAAXwAAAF8AAAA7AAAAOwAAADsAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAABfAAAAGwAAAhsAAAMcAAABHgAAAh4AAAAcAAAAOwAAADsAAAA7AAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAABsAAAIbAAACHAAAAh4AAAEeAAADHAAAATsAAAA7AAAAOwAAAA== + tiles: GwAAAAADHgAAAAADRwAAAAABRwAAAAADRwAAAAACFgAAAAACFgAAAAADFgAAAAADFgAAAAADZAAAAAAAYQAAAAABYQAAAAADYQAAAAADYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAHgAAAAAARwAAAAAARwAAAAAARwAAAAACFgAAAAABFgAAAAABFgAAAAADFgAAAAADZAAAAAAAYQAAAAAAYQAAAAAAYQAAAAABYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAACZAAAAAAAYQAAAAABYQAAAAADYQAAAAADYQAAAAADZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAGwAAAAABGwAAAAABZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAADUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGgAAAAADGgAAAAADGgAAAAADGgAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAAAUAAAAAAAUAAAAAAARwAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAZAAAAAAARwAAAAAARwAAAAAAZAAAAAAARwAAAAAAUAAAAAAAUAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAACFgAAAAACZAAAAAAARwAAAAABRwAAAAABZAAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAGwAAAAABGwAAAAADZAAAAAAAGwAAAAAAGwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAGwAAAAABGwAAAAACZAAAAAAAGgAAAAACGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAADGgAAAAAAGgAAAAADGgAAAAADGgAAAAADHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAGwAAAAAAGwAAAAAAZAAAAAAAGgAAAAABGgAAAAACGgAAAAADGgAAAAADGgAAAAABGgAAAAADGgAAAAADGgAAAAABGgAAAAACHAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAABGwAAAAACZAAAAAAAGgAAAAAAGgAAAAADGgAAAAABGgAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAAAGgAAAAABZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAGwAAAAACGwAAAAADZAAAAAAAGgAAAAADGgAAAAABGgAAAAABGgAAAAAAGgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGgAAAAACGgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAGgAAAAACGgAAAAADGwAAAAABHQAAAAACHQAAAAAAGwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAGgAAAAACGgAAAAACGwAAAAACHQAAAAABHQAAAAADGwAAAAABPAAAAAAAPAAAAAAAPAAAAAAA + version: 6 2,4: ind: 2,4 - tiles: TwAAAE8AAABfAAAABAAAAgQAAAEEAAABBAAAAQQAAAIEAAACBAAAAgQAAAEEAAABBAAAAV4AAAAAAAAAAAAAAE8AAABPAAAAXwAAAAQAAAEEAAACBAAAAgQAAAEEAAABBAAAAQQAAAIEAAABXgAAAAAAAABeAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAEAAABBAAAAQQAAAEEAAAABAAAAgQAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAARQAAAV8AAABfAAAABAAAAAQAAAIEAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAAXwAAAF8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAF8AAAAAAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAABfAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAXwAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: UwAAAAAAUwAAAAAAZAAAAAAABgAAAAACBgAAAAABBgAAAAABBgAAAAABBgAAAAACBgAAAAACBgAAAAACBgAAAAABBgAAAAABBgAAAAABYwAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAABgAAAAABBgAAAAACBgAAAAACBgAAAAABBgAAAAABBgAAAAABBgAAAAACBgAAAAABYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAABBgAAAAABBgAAAAABBgAAAAAABgAAAAACBgAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAARwAAAAABZAAAAAAAZAAAAAAABgAAAAAABgAAAAACBgAAAAACYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 4,-1: ind: 4,-1 - tiles: AAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAEUAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAANFAAACXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABFAAAARQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAABRQAAA0UAAANfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAAUUAAANFAAADXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAFFAAABRQAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAADRQAAAEUAAAJfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAEUAAAFFAAACXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAARQAAAl8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAEUAAAJfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAJFAAABXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF8AAABFAAADRQAAA18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAABRwAAAAADRwAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAABRwAAAAADRwAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAABRwAAAAABRwAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAADRwAAAAAARwAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 5,0: ind: 5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAF8AAABFAAABRQAAAl8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAFfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAAJFAAABRQAAAkUAAAFFAAACXwAAAE8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAkUAAABFAAACRQAAAkUAAAJFAAACRQAAAl8AAAAcAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAANFAAABRQAAAkUAAAFFAAADRQAAA0UAAANfAAAATwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAEUAAAFFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAkUAAAFFAAADRQAAAEUAAANfAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAABMAAAARQAAAEUAAAFFAAABXwAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAqAAADTAAAAEUAAAJFAAABRQAAA18AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAEwAAABFAAAARQAAA0UAAAFfAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAABRQAAAkUAAANFAAADXwAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAkUAAANFAAAARQAAAl8AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAB8AAABFAAACRQAAAx8AAAJfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAfAAAARQAAA0UAAAAfAAACXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAHwAAAEUAAANFAAABHwAAA18AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAB8AAABFAAAARQAAAB8AAAFfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAABRwAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAABRwAAAAACZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAACRwAAAAACZAAAAAAAGwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAABRwAAAAADRwAAAAADRwAAAAADZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAAARwAAAAADZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAARwAAAAAARwAAAAABRwAAAAABZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAADUAAAAAAARwAAAAACRwAAAAABRwAAAAADZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAARwAAAAAARwAAAAADRwAAAAABZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAADRwAAAAADZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAACZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAHgAAAAAARwAAAAACRwAAAAADHgAAAAACZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAHgAAAAAARwAAAAADRwAAAAAAHgAAAAACZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAHgAAAAAARwAAAAADRwAAAAABHgAAAAADZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAHgAAAAAARwAAAAAARwAAAAAAHgAAAAABZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 5,-1: ind: 5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAUUAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAABRQAAAl8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAA0UAAAIXAAADXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAJFAAADFwAAA18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAABRQAAAhcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAUUAAAMXAAADXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAABRQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAA0UAAANfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAFFAAACXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAACRQAAA18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAABRwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAACFgAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAADFgAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAABRwAAAAACFgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAABRwAAAAADFgAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAABRwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAABRwAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 4,1: ind: 4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXwAAAF8AAABFAAAARQAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 5,1: ind: 5,1 - tiles: XwAAAF8AAABFAAACRQAAAV8AAABfAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAAAAZAAAAAAARwAAAAACRwAAAAABZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -5,-2: ind: -5,-2 - tiles: XgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAABAAAAV4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAABAAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAQAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAV4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQQAAAFeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAABXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAAABAAAAA== + tiles: YwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAABgAAAAABYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAABgAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAABgAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAABYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAABBgAAAAABYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAABYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAABgAAAAAA + version: 6 -5,-3: ind: -5,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAQQAAAAEAAACBAAAAgQAAAEEAAABBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAACBAAAAQQAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABBAAAAgQAAAEEAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAAQAAAEEAAABBAAAAV8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAEAAABBAAAAAQAAAJfAAAASAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABBAAAAgQAAAIEAAAAXwAAAEgAAABIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAF8AAABfAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAAABAAAAAQAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAIEAAACXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAl8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAgQAAAJfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAEAAABXgAAAF8AAABIAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAASAAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXwAAAEgAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABIAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAASAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABBgAAAAAABgAAAAACBgAAAAACBgAAAAABBgAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAABgAAAAACBgAAAAABBgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABBgAAAAACBgAAAAABBgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAABgAAAAABBgAAAAABBgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAAABgAAAAABBgAAAAAABgAAAAACZAAAAAAATAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABBgAAAAACBgAAAAACBgAAAAAAZAAAAAAATAAAAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAACBgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAACBgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAAABgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAACBgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABYwAAAAAAZAAAAAAATAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAATAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAATAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAATAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAATAAAAAAA + version: 6 -5,2: ind: -5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAE8AAABPAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAATwAAAE8AAABPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAATwAAAE8AAABPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + version: 6 -5,3: ind: -5,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAE8AAABPAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -5,-1: ind: -5,-1 - tiles: XgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAEAAAABAAAAQQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAABBgAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -5,-4: ind: -5,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAAABAAAAgQAAAAEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAgQAAAIEAAAABAAAAQQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAgQAAAEEAAABBAAAAgQAAAEEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQQAAAAEAAAABAAAAQQAAAEEAAAABAAAAQ== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAABgAAAAACBgAAAAAABgAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAABBgAAAAACBgAAAAACBgAAAAAABgAAAAABBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAACBgAAAAABBgAAAAABBgAAAAACBgAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAABBgAAAAAABgAAAAAABgAAAAABBgAAAAABBgAAAAAABgAAAAAB + version: 6 -2,-4: ind: -2,-4 - tiles: XgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAABAAAAgQAAAEEAAACBAAAAQQAAAAAAAAAAAAAAAQAAAIEAAACBAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAQAAAAEAAABBAAAAQQAAAEEAAABBAAAAgQAAAAEAAAABAAAAQQAAAIEAAACBAAAAgQAAAIAAAAAAAAAAAAAAAAEAAACBAAAAQUAAAAEAAACBAAAAgQAAAAEAAACBAAAAgQAAAAFAAAABAAAAQQAAAAEAAABBAAAAQQAAABeAAAABAAAAgQAAAEEAAAABAAAAQQAAAIEAAAABAAAAQQAAAIEAAAABAAAAQQAAAEEAAACBAAAAQQAAAIEAAABBAAAAQ== + tiles: YwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAABgAAAAACBgAAAAABBgAAAAACBgAAAAABBgAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAACBgAAAAACBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAABgAAAAAABgAAAAABBgAAAAABBgAAAAABBgAAAAABBgAAAAACBgAAAAAABgAAAAAABgAAAAABBgAAAAACBgAAAAACBgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAABBwAAAAAABgAAAAACBgAAAAACBgAAAAAABgAAAAACBgAAAAACBgAAAAAABwAAAAAABgAAAAABBgAAAAAABgAAAAABBgAAAAABBgAAAAAAYwAAAAAABgAAAAACBgAAAAABBgAAAAAABgAAAAABBgAAAAACBgAAAAAABgAAAAABBgAAAAACBgAAAAAABgAAAAABBgAAAAABBgAAAAACBgAAAAABBgAAAAACBgAAAAABBgAAAAAB + version: 6 1,-5: ind: 1,-5 - tiles: AAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,-5: ind: 0,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAA + version: 6 1,-6: ind: 1,-6 - tiles: AAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF8AAAAtAAAAFwAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAIXAAABFwAAABcAAAAXAAAAFwAAARcAAAMXAAACFwAAARcAAAJfAAAARQAAAUUAAANFAAABXwAAABcAAAEXAAACFwAAAhcAAAMXAAABXAAAAlwAAABcAAACFwAAABcAAAEXAAAAXwAAAEUAAABFAAACRQAAA18AAAAXAAADFwAAA18AAABfAAAAFwAAAFwAAANcAAABXAAAAhcAAANfAAAAXwAAAF8AAABfAAAARQAAAUUAAAFfAAAAFwAAABcAAAIXAAACXwAAABcAAAJcAAADXAAAAFwAAAEXAAABXwAAABcAAAEXAAADXwAAAF8AAABfAAAAXwAAABcAAAEXAAAAFwAAA18AAAAXAAADFwAAABcAAAAXAAABFwAAAV8AAAAXAAACFwAAABcAAAAXAAACFwAAABcAAAAXAAACFwAAABcAAABfAAAAXwAAAF8AAAAXAAACXwAAAF8AAABfAAAAFwAAABcAAAAXAAACFwAAARcAAAAXAAADFwAAAxcAAAEXAAADFwAAAhcAAAAXAAABFwAAAhcAAAMXAAACFwAAAxcAAAAXAAADXwAAABcAAAAXAAACFwAAAhcAAAEXAAADFwAAABcAAAMXAAACFwAAABcAAAEXAAAAFwAAAhcAAAIXAAADFwAAAl8AAAAtAAAALQAAAC0AAAAtAAAALQAAAC0AAAAtAAAALQAAABcAAAMXAAABFwAAAy0AAAAtAAAALQAAAC0AAABfAAAALQAAAC0AAABfAAAAXwAAAF8AAAAtAAAALQAAAC0AAAAXAAADFwAAARcAAAAtAAAALQAAAC0AAAAtAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAF8AAABfAAAAFwAAAV8AAAAXAAACXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAALAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAABFgAAAAADFgAAAAACFgAAAAABFgAAAAACZAAAAAAARwAAAAABRwAAAAADRwAAAAABZAAAAAAAFgAAAAABFgAAAAACFgAAAAACFgAAAAADFgAAAAABYQAAAAACYQAAAAAAYQAAAAACFgAAAAAAFgAAAAABFgAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAADZAAAAAAAFgAAAAADFgAAAAADZAAAAAAAZAAAAAAAFgAAAAAAYQAAAAADYQAAAAABYQAAAAACFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABZAAAAAAAFgAAAAAAFgAAAAACFgAAAAACZAAAAAAAFgAAAAACYQAAAAADYQAAAAAAYQAAAAABFgAAAAABZAAAAAAAFgAAAAABFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAADZAAAAAAAFgAAAAADFgAAAAAAFgAAAAAAFgAAAAABFgAAAAABZAAAAAAAFgAAAAACFgAAAAAAFgAAAAAAFgAAAAACFgAAAAAAFgAAAAAAFgAAAAACFgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAACFgAAAAABFgAAAAAAFgAAAAADFgAAAAADFgAAAAABFgAAAAADFgAAAAACFgAAAAAAFgAAAAABFgAAAAACFgAAAAADFgAAAAACFgAAAAADFgAAAAAAFgAAAAADZAAAAAAAFgAAAAAAFgAAAAACFgAAAAACFgAAAAABFgAAAAADFgAAAAAAFgAAAAADFgAAAAACFgAAAAAAFgAAAAABFgAAAAAAFgAAAAACFgAAAAACFgAAAAADFgAAAAACZAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAFgAAAAADFgAAAAABFgAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAAZAAAAAAALAAAAAAALAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAALAAAAAAALAAAAAAALAAAAAAAFgAAAAADFgAAAAABFgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,-6: ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAC0AAAAXAAADFwAAAi0AAABfAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF8AAABfAAAAFwAAAhcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAATwAAABcAAAIXAAACFwAAAl8AAABFAAAARQAAAkUAAAJfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAE8AAAAXAAABFwAAAxcAAAFfAAAARQAAAEUAAANFAAACXwAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF8AAABPAAAAFwAAARcAAAAXAAACXwAAAEUAAAJFAAABXwAAAF8AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAATwAAABcAAAMXAAACFwAAAF8AAABfAAAAXwAAAF8AAAAXAAACAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAE8AAAAXAAAAFwAAABcAAAAXAAADFwAAAxcAAAMXAAABFwAAAQAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABPAAAAFwAAAhcAAAAXAAACFwAAABcAAAMXAAAAFwAAARcAAAIAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAATwAAABcAAAIXAAABFwAAABcAAAMXAAABFwAAAV8AAAAXAAACAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAALQAAAC0AAAAtAAAALQAAAC0AAABfAAAAFwAAAwAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAC0AAAAtAAAAXwAAAC0AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAtAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAALAAAAAAAFgAAAAADFgAAAAACLAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAFgAAAAACFgAAAAACFgAAAAACZAAAAAAARwAAAAAARwAAAAACRwAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAFgAAAAABFgAAAAADFgAAAAABZAAAAAAARwAAAAAARwAAAAADRwAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAFgAAAAABFgAAAAAAFgAAAAACZAAAAAAARwAAAAACRwAAAAABZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAFgAAAAADFgAAAAACFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAADFgAAAAADFgAAAAADFgAAAAABFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAFgAAAAACFgAAAAAAFgAAAAACFgAAAAAAFgAAAAADFgAAAAAAFgAAAAABFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAFgAAAAACFgAAAAABFgAAAAAAFgAAAAADFgAAAAABFgAAAAABZAAAAAAAFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAZAAAAAAAFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAALAAAAAAALAAAAAAAZAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAA + version: 6 2,-6: ind: 2,-6 - tiles: FwAAAy0AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAANfAAAAXwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAABTwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAE8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAABPAAAAXwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAATwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAA08AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAABPAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAATwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: FgAAAAADLAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,-7: ind: 0,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXwAAABcAAAIXAAADFwAAARcAAAAXAAAAFwAAABcAAAMXAAADAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXwAAAF8AAAAXAAAAFwAAARcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAAAtAAAAFwAAARcAAAEtAAAAXwAAAF4AAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAALQAAABcAAAEXAAAALQAAAF8AAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAC0AAAAXAAADFwAAAy0AAABfAAAAXgAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAABFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAADFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAABFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAALAAAAAAAFgAAAAABFgAAAAABLAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAALAAAAAAAFgAAAAABFgAAAAAALAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAALAAAAAAAFgAAAAADFgAAAAADLAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 1,-7: ind: 1,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAAAAAAAF4AAAAAAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAAAtAAAAFwAAARcAAAAXAAAAFwAAAhcAAAAXAAADFwAAAC0AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAALQAAABcAAAMXAAABFwAAARcAAAMXAAADFwAAARcAAAMtAAAAXwAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXgAAAC0AAAAXAAAAFwAAAF8AAABfAAAAXwAAABcAAAAXAAABLQAAAF8AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAtAAAAFwAAABcAAANfAAAALQAAAF8AAAAXAAABFwAAAi0AAABfAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAALQAAABcAAAIXAAAAUgAAAVIAAANSAAADFwAAABcAAAEtAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAABcAAAAXAAAAFwAAA18AAABfAAAAXwAAABcAAAEXAAACFwAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAABFwAAARcAAAAXAAADFwAAAhcAAAEXAAACFwAAAhcAAAAXAAAAFwAAABcAAAMXAAAAFwAAAxcAAAIXAAACFwAAAhcAAAItAAAALQAAAC0AAAAtAAAALQAAABcAAAEXAAADXwAAAF8AAABfAAAAXwAAAF8AAAAXAAABFwAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAABfAAAALQAAABcAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAXwAAAC0AAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAAAtAAAAFwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAALAAAAAAAFgAAAAABFgAAAAAAFgAAAAAAFgAAAAACFgAAAAAAFgAAAAADFgAAAAAALAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAALAAAAAAAFgAAAAADFgAAAAABFgAAAAABFgAAAAADFgAAAAADFgAAAAABFgAAAAADLAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAALAAAAAAAFgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAABLAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAALAAAAAAAFgAAAAAAFgAAAAADZAAAAAAALAAAAAAAZAAAAAAAFgAAAAABFgAAAAACLAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAFgAAAAACFgAAAAAAVwAAAAABVwAAAAADVwAAAAADFgAAAAAAFgAAAAABLAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAACFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAAAFgAAAAADFgAAAAACFgAAAAABFgAAAAACFgAAAAACFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAADFgAAAAAAFgAAAAADFgAAAAACFgAAAAACFgAAAAACFgAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAFgAAAAABFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAALAAAAAAAFgAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAALAAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAALAAAAAAAFgAAAAAA + version: 6 2,-7: ind: 2,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAABXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAA18AAABfAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAtAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAALQAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAS0AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAALAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAALAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABLAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 1,-8: ind: 1,-8 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,-8: ind: 0,-8 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAA + version: 6 -5,0: ind: -5,0 - tiles: AAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAA + version: 6 -5,1: ind: -5,1 - tiles: AAAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAA== + tiles: AAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + version: 6 2,-5: ind: 2,-5 - tiles: XgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 4,-4: ind: 4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,5: ind: 2,5 - tiles: XwAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 1,5: ind: 1,5 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,5: ind: 0,5 - tiles: AAAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 3,4: ind: 3,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -6,-2: ind: -6,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAA + version: 6 -6,-3: ind: -6,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAA + version: 6 -6,-1: ind: -6,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -3,-5: ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -4,-5: ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -2,-5: ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 type: MapGrid - type: Broadphase - - angularDamping: 0.05 + - bodyStatus: InAir + angularDamping: 0.05 linearDamping: 0.05 fixedRotation: False bodyType: Dynamic @@ -13912,18 +14025,6 @@ entities: - pos: -55.5,-29.5 parent: 82 type: Transform -- proto: SprayPainter - entities: - - uid: 11279 - components: - - pos: -27.825413,5.523837 - parent: 82 - type: Transform - - uid: 25478 - components: - - pos: 24.20533,-9.416981 - parent: 82 - type: Transform - proto: AirlockQuartermasterLocked entities: - uid: 10269 @@ -18724,7 +18825,7 @@ entities: - pos: 34.5,12.5 parent: 82 type: Transform - - SecondsUntilStateChange: -493809.1 + - SecondsUntilStateChange: -497304.16 state: Opening type: Door - links: @@ -18735,7 +18836,7 @@ entities: - pos: 34.5,14.5 parent: 82 type: Transform - - SecondsUntilStateChange: -493809.1 + - SecondsUntilStateChange: -497304.16 state: Opening type: Door - links: @@ -18762,7 +18863,7 @@ entities: - pos: 34.5,13.5 parent: 82 type: Transform - - SecondsUntilStateChange: -493809.1 + - SecondsUntilStateChange: -497304.16 state: Opening type: Door - links: @@ -18789,7 +18890,7 @@ entities: - pos: 53.5,-25.5 parent: 82 type: Transform - - SecondsUntilStateChange: -492074.03 + - SecondsUntilStateChange: -495569.1 state: Opening type: Door - links: @@ -18800,7 +18901,7 @@ entities: - pos: 53.5,-26.5 parent: 82 type: Transform - - SecondsUntilStateChange: -492074.03 + - SecondsUntilStateChange: -495569.1 state: Opening type: Door - links: @@ -18811,7 +18912,7 @@ entities: - pos: 53.5,-27.5 parent: 82 type: Transform - - SecondsUntilStateChange: -492074.03 + - SecondsUntilStateChange: -495569.1 state: Opening type: Door - links: @@ -18822,7 +18923,7 @@ entities: - pos: 53.5,-28.5 parent: 82 type: Transform - - SecondsUntilStateChange: -492074.03 + - SecondsUntilStateChange: -495569.1 state: Opening type: Door - links: @@ -18833,7 +18934,7 @@ entities: - pos: 53.5,-29.5 parent: 82 type: Transform - - SecondsUntilStateChange: -492074.03 + - SecondsUntilStateChange: -495569.1 state: Opening type: Door - links: @@ -18844,7 +18945,7 @@ entities: - pos: 53.5,-30.5 parent: 82 type: Transform - - SecondsUntilStateChange: -492074.03 + - SecondsUntilStateChange: -495569.1 state: Opening type: Door - links: @@ -18855,7 +18956,7 @@ entities: - pos: 56.5,-25.5 parent: 82 type: Transform - - SecondsUntilStateChange: -492074.03 + - SecondsUntilStateChange: -495569.1 state: Opening type: Door - links: @@ -18866,7 +18967,7 @@ entities: - pos: 56.5,-26.5 parent: 82 type: Transform - - SecondsUntilStateChange: -492074.03 + - SecondsUntilStateChange: -495569.1 state: Opening type: Door - links: @@ -18877,7 +18978,7 @@ entities: - pos: 56.5,-27.5 parent: 82 type: Transform - - SecondsUntilStateChange: -492074.03 + - SecondsUntilStateChange: -495569.1 state: Opening type: Door - links: @@ -18888,7 +18989,7 @@ entities: - pos: 56.5,-28.5 parent: 82 type: Transform - - SecondsUntilStateChange: -492074.03 + - SecondsUntilStateChange: -495569.1 state: Opening type: Door - links: @@ -18899,7 +19000,7 @@ entities: - pos: 56.5,-29.5 parent: 82 type: Transform - - SecondsUntilStateChange: -492074.03 + - SecondsUntilStateChange: -495569.1 state: Opening type: Door - links: @@ -18910,7 +19011,7 @@ entities: - pos: 56.5,-30.5 parent: 82 type: Transform - - SecondsUntilStateChange: -492074.03 + - SecondsUntilStateChange: -495569.1 state: Opening type: Door - links: @@ -18921,7 +19022,7 @@ entities: - pos: -21.5,50.5 parent: 82 type: Transform - - SecondsUntilStateChange: -432728.97 + - SecondsUntilStateChange: -436224.03 state: Opening type: Door - links: @@ -18932,7 +19033,7 @@ entities: - pos: -21.5,48.5 parent: 82 type: Transform - - SecondsUntilStateChange: -432728.97 + - SecondsUntilStateChange: -436224.03 state: Opening type: Door - links: @@ -18943,7 +19044,7 @@ entities: - pos: -21.5,49.5 parent: 82 type: Transform - - SecondsUntilStateChange: -432728.97 + - SecondsUntilStateChange: -436224.03 state: Opening type: Door - links: @@ -18954,7 +19055,7 @@ entities: - pos: -21.5,47.5 parent: 82 type: Transform - - SecondsUntilStateChange: -432728.97 + - SecondsUntilStateChange: -436224.03 state: Opening type: Door - links: @@ -19019,7 +19120,7 @@ entities: - pos: 23.5,14.5 parent: 82 type: Transform - - SecondsUntilStateChange: -493870.34 + - SecondsUntilStateChange: -497365.4 state: Closing type: Door - links: @@ -19030,7 +19131,7 @@ entities: - pos: 23.5,13.5 parent: 82 type: Transform - - SecondsUntilStateChange: -493870.34 + - SecondsUntilStateChange: -497365.4 state: Closing type: Door - links: @@ -19041,7 +19142,7 @@ entities: - pos: 23.5,12.5 parent: 82 type: Transform - - SecondsUntilStateChange: -493870.34 + - SecondsUntilStateChange: -497365.4 state: Closing type: Door - links: @@ -19371,6 +19472,48 @@ entities: pos: -16.5,-13.5 parent: 82 type: Transform +- proto: BorgCharger + entities: + - uid: 7999 + components: + - pos: 84.5,7.5 + parent: 82 + type: Transform + - uid: 22080 + components: + - pos: -29.5,0.5 + parent: 82 + type: Transform + - uid: 22149 + components: + - pos: 16.5,53.5 + parent: 82 + type: Transform + - uid: 22151 + components: + - pos: 16.5,54.5 + parent: 82 + type: Transform + - uid: 22152 + components: + - pos: 36.5,30.5 + parent: 82 + type: Transform + - uid: 22153 + components: + - pos: 26.5,-30.5 + parent: 82 + type: Transform + - uid: 22154 + components: + - pos: 22.5,-59.5 + parent: 82 + type: Transform + - uid: 22158 + components: + - pos: -54.5,50.5 + parent: 82 + type: Transform - proto: BoxBeaker entities: - uid: 3271 @@ -57052,6 +57195,16 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 22217 + components: + - pos: -24.5,57.5 + parent: 82 + type: Transform + - uid: 22228 + components: + - pos: -25.5,57.5 + parent: 82 + type: Transform - uid: 22658 components: - pos: 4.5,57.5 @@ -65250,12 +65403,6 @@ entities: pos: 84.5,9.5 parent: 82 type: Transform - - uid: 7999 - components: - - rot: -1.5707963267948966 rad - pos: 84.5,7.5 - parent: 82 - type: Transform - uid: 8000 components: - rot: 1.5707963267948966 rad @@ -72784,6 +72931,11 @@ entities: - 0 - 0 type: EntityStorage + - uid: 22166 + components: + - pos: 43.5,21.5 + parent: 82 + type: Transform - proto: CrateMaterialPlasteel entities: - uid: 6722 @@ -81367,7 +81519,7 @@ entities: entities: - uid: 6465 components: - - pos: -34.35063,-28.573547 + - pos: -34.646385,-28.166805 parent: 82 type: Transform - proto: EmergencyLight @@ -85895,26 +86047,6 @@ entities: - pos: -36.478657,44.624092 parent: 82 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: Objects/Tools/flashlight.rsi/flashlight.png - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - uid: 6809 components: - pos: -35.57489,40.472855 @@ -86135,7 +86267,7 @@ entities: entities: - uid: 22328 components: - - pos: 15.2337055,58.513683 + - pos: 15.421518,58.318207 parent: 82 type: Transform - proto: FoodCakeBirthdaySlice @@ -111654,64 +111786,6 @@ entities: - pos: -28.5,49.5 parent: 82 type: Transform -- proto: GeneratorPlasma - entities: - - uid: 6026 - components: - - pos: -27.5,49.5 - parent: 82 - type: Transform - - uid: 8074 - components: - - pos: -28.5,20.5 - parent: 82 - type: Transform - - uid: 9357 - components: - - pos: 14.5,-93.5 - parent: 82 - type: Transform - - uid: 9358 - components: - - pos: 14.5,-92.5 - parent: 82 - type: Transform - - uid: 9359 - components: - - pos: 26.5,-93.5 - parent: 82 - type: Transform - - uid: 9360 - components: - - pos: 26.5,-92.5 - parent: 82 - type: Transform - - uid: 15497 - components: - - pos: -63.5,-45.5 - parent: 82 - type: Transform -- proto: GeneratorPlasmaMachineCircuitboard - entities: - - uid: 4211 - components: - - pos: 8.69322,35.711548 - parent: 82 - type: Transform -- proto: GeneratorUranium - entities: - - uid: 6025 - components: - - pos: -27.5,50.5 - parent: 82 - type: Transform -- proto: GeneratorUraniumMachineCircuitboard - entities: - - uid: 4210 - components: - - pos: 8.69322,35.45877 - parent: 82 - type: Transform - proto: Girder entities: - uid: 4146 @@ -122399,7 +122473,7 @@ entities: - pos: -41.5,-42.5 parent: 82 type: Transform - - SecondsUntilStateChange: -380837.78 + - SecondsUntilStateChange: -384332.84 state: Opening type: Door - uid: 2822 @@ -122407,7 +122481,7 @@ entities: - pos: -41.5,-44.5 parent: 82 type: Transform - - SecondsUntilStateChange: -380835.56 + - SecondsUntilStateChange: -384330.62 state: Opening type: Door - uid: 8896 @@ -122416,7 +122490,7 @@ entities: pos: -39.5,-42.5 parent: 82 type: Transform - - SecondsUntilStateChange: -381009.8 + - SecondsUntilStateChange: -384504.88 state: Opening type: Door - uid: 15911 @@ -122425,7 +122499,7 @@ entities: pos: -39.5,-44.5 parent: 82 type: Transform - - SecondsUntilStateChange: -380834.84 + - SecondsUntilStateChange: -384329.9 state: Opening type: Door - uid: 16963 @@ -122453,7 +122527,7 @@ entities: - pos: -41.5,-40.5 parent: 82 type: Transform - - SecondsUntilStateChange: -380836.75 + - SecondsUntilStateChange: -384331.8 state: Opening type: Door - proto: HospitalCurtainsOpen @@ -126725,6 +126799,13 @@ entities: type: Transform - proto: PaperOffice entities: + - uid: 10996 + components: + - pos: -34.351803,-28.541927 + parent: 82 + type: Transform + - content: There's a drain in the morgue if you need it. + type: Paper - uid: 11176 components: - pos: -23.372032,-28.192993 @@ -127650,6 +127731,141 @@ entities: - pos: 49.5,-16.5 parent: 82 type: Transform +- proto: PortableGeneratorJrPacman + entities: + - uid: 286 + components: + - pos: -33.5,27.5 + parent: 82 + type: Transform + - uid: 20656 + components: + - pos: 28.5,-12.5 + parent: 82 + type: Transform + - uid: 22229 + components: + - pos: -35.5,-7.5 + parent: 82 + type: Transform + - uid: 22241 + components: + - pos: -42.5,-47.5 + parent: 82 + type: Transform + - uid: 22242 + components: + - pos: -53.5,-21.5 + parent: 82 + type: Transform + - uid: 22268 + components: + - pos: -47.5,-3.5 + parent: 82 + type: Transform + - uid: 22327 + components: + - pos: -8.5,-18.5 + parent: 82 + type: Transform + - uid: 22374 + components: + - pos: 15.5,-14.5 + parent: 82 + type: Transform + - uid: 22456 + components: + - pos: 61.5,8.5 + parent: 82 + type: Transform + - uid: 22467 + components: + - pos: 40.5,51.5 + parent: 82 + type: Transform + - uid: 22626 + components: + - pos: 32.5,63.5 + parent: 82 + type: Transform + - uid: 22627 + components: + - pos: -28.5,41.5 + parent: 82 + type: Transform + - uid: 22628 + components: + - pos: -27.5,41.5 + parent: 82 + type: Transform + - uid: 22629 + components: + - pos: -31.5,47.5 + parent: 82 + type: Transform + - uid: 22630 + components: + - pos: -49.5,52.5 + parent: 82 + type: Transform +- proto: PortableGeneratorPacman + entities: + - uid: 6026 + components: + - pos: -27.5,49.5 + parent: 82 + type: Transform + - uid: 8074 + components: + - pos: -28.5,20.5 + parent: 82 + type: Transform + - uid: 9357 + components: + - pos: 14.5,-93.5 + parent: 82 + type: Transform + - uid: 9358 + components: + - pos: 14.5,-92.5 + parent: 82 + type: Transform + - uid: 9359 + components: + - pos: 26.5,-93.5 + parent: 82 + type: Transform + - uid: 9360 + components: + - pos: 26.5,-92.5 + parent: 82 + type: Transform + - uid: 15497 + components: + - pos: -63.5,-45.5 + parent: 82 + type: Transform +- proto: PortableGeneratorPacmanMachineCircuitboard + entities: + - uid: 4211 + components: + - pos: 8.69322,35.711548 + parent: 82 + type: Transform +- proto: PortableGeneratorSuperPacman + entities: + - uid: 6025 + components: + - pos: -27.5,50.5 + parent: 82 + type: Transform +- proto: PortableGeneratorSuperPacmanMachineCircuitboard + entities: + - uid: 4210 + components: + - pos: 8.69322,35.45877 + parent: 82 + type: Transform - proto: PortableScrubber entities: - uid: 1215 @@ -132705,11 +132921,6 @@ entities: - pos: -52.5,-47.5 parent: 82 type: Transform - - uid: 20656 - components: - - pos: -33.5,27.5 - parent: 82 - type: Transform - uid: 20661 components: - pos: 26.5,19.5 @@ -134781,11 +134992,6 @@ entities: type: Transform - proto: RandomSpawner entities: - - uid: 286 - components: - - pos: 15.5,-14.5 - parent: 82 - type: Transform - uid: 2812 components: - pos: -46.5,4.5 @@ -140814,22 +141020,6 @@ entities: type: Transform - canCollide: False type: Physics -- proto: SheetPlasma1 - entities: - - uid: 16948 - components: - - pos: 17.613049,74.53184 - parent: 82 - type: Transform - - count: 10 - type: Stack - - uid: 25493 - components: - - pos: -35.59825,-28.447758 - parent: 82 - type: Transform - - count: 5 - type: Stack - proto: SheetPlasteel entities: - uid: 6439 @@ -140920,6 +141110,11 @@ entities: - pos: -9.4861355,27.619755 parent: 82 type: Transform + - uid: 11213 + components: + - pos: 42.746567,20.491737 + parent: 82 + type: Transform - uid: 11229 components: - pos: -30.483015,-34.43525 @@ -140988,7 +141183,7 @@ entities: - pos: 58.5,-6.5 parent: 82 type: Transform - - SecondsUntilStateChange: -376906.28 + - SecondsUntilStateChange: -380401.34 state: Opening type: Door - links: @@ -140999,7 +141194,7 @@ entities: - pos: 59.5,-6.5 parent: 82 type: Transform - - SecondsUntilStateChange: -376906.28 + - SecondsUntilStateChange: -380401.34 state: Opening type: Door - links: @@ -141011,7 +141206,7 @@ entities: pos: 3.5,-19.5 parent: 82 type: Transform - - SecondsUntilStateChange: -487941.72 + - SecondsUntilStateChange: -491436.78 state: Opening type: Door - links: @@ -141023,7 +141218,7 @@ entities: pos: 2.5,-19.5 parent: 82 type: Transform - - SecondsUntilStateChange: -487941.72 + - SecondsUntilStateChange: -491436.78 state: Opening type: Door - links: @@ -141034,7 +141229,7 @@ entities: - pos: 1.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -487941.72 + - SecondsUntilStateChange: -491436.78 state: Opening type: Door - links: @@ -141045,7 +141240,7 @@ entities: - pos: 2.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -487941.72 + - SecondsUntilStateChange: -491436.78 state: Opening type: Door - links: @@ -141056,7 +141251,7 @@ entities: - pos: 3.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -487941.72 + - SecondsUntilStateChange: -491436.78 state: Opening type: Door - links: @@ -141067,7 +141262,7 @@ entities: - pos: 5.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -487941.72 + - SecondsUntilStateChange: -491436.78 state: Opening type: Door - links: @@ -141078,7 +141273,7 @@ entities: - pos: 6.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -487941.72 + - SecondsUntilStateChange: -491436.78 state: Opening type: Door - links: @@ -141089,7 +141284,7 @@ entities: - pos: 7.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -487941.72 + - SecondsUntilStateChange: -491436.78 state: Opening type: Door - links: @@ -141100,7 +141295,7 @@ entities: - pos: 8.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -487941.72 + - SecondsUntilStateChange: -491436.78 state: Opening type: Door - links: @@ -141111,7 +141306,7 @@ entities: - pos: 9.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -487941.72 + - SecondsUntilStateChange: -491436.78 state: Opening type: Door - links: @@ -141122,7 +141317,7 @@ entities: - pos: 11.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -487941.72 + - SecondsUntilStateChange: -491436.78 state: Opening type: Door - links: @@ -141133,7 +141328,7 @@ entities: - pos: 12.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -487941.72 + - SecondsUntilStateChange: -491436.78 state: Opening type: Door - links: @@ -141144,7 +141339,7 @@ entities: - pos: 13.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -487941.72 + - SecondsUntilStateChange: -491436.78 state: Opening type: Door - links: @@ -141155,7 +141350,7 @@ entities: - pos: 14.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -487941.72 + - SecondsUntilStateChange: -491436.78 state: Opening type: Door - links: @@ -141167,7 +141362,7 @@ entities: pos: 16.5,-11.5 parent: 82 type: Transform - - SecondsUntilStateChange: -487941.72 + - SecondsUntilStateChange: -491436.78 state: Opening type: Door - links: @@ -141179,7 +141374,7 @@ entities: pos: 16.5,-10.5 parent: 82 type: Transform - - SecondsUntilStateChange: -487941.72 + - SecondsUntilStateChange: -491436.78 state: Opening type: Door - links: @@ -141191,7 +141386,7 @@ entities: pos: -1.5,-11.5 parent: 82 type: Transform - - SecondsUntilStateChange: -487941.72 + - SecondsUntilStateChange: -491436.78 state: Opening type: Door - links: @@ -141203,7 +141398,7 @@ entities: pos: -1.5,-10.5 parent: 82 type: Transform - - SecondsUntilStateChange: -487941.72 + - SecondsUntilStateChange: -491436.78 state: Opening type: Door - links: @@ -141215,7 +141410,7 @@ entities: pos: 25.5,64.5 parent: 82 type: Transform - - SecondsUntilStateChange: -388058.53 + - SecondsUntilStateChange: -391553.6 state: Opening type: Door - links: @@ -141250,7 +141445,7 @@ entities: - pos: 62.5,-6.5 parent: 82 type: Transform - - SecondsUntilStateChange: -376906.28 + - SecondsUntilStateChange: -380401.34 state: Opening type: Door - links: @@ -141261,7 +141456,7 @@ entities: - pos: -8.5,32.5 parent: 82 type: Transform - - SecondsUntilStateChange: -386750.44 + - SecondsUntilStateChange: -390245.5 state: Opening type: Door - links: @@ -141272,7 +141467,7 @@ entities: - pos: -9.5,32.5 parent: 82 type: Transform - - SecondsUntilStateChange: -386750.44 + - SecondsUntilStateChange: -390245.5 state: Opening type: Door - links: @@ -141283,7 +141478,7 @@ entities: - pos: -7.5,32.5 parent: 82 type: Transform - - SecondsUntilStateChange: -386750.44 + - SecondsUntilStateChange: -390245.5 state: Opening type: Door - links: @@ -141295,7 +141490,7 @@ entities: pos: -6.5,34.5 parent: 82 type: Transform - - SecondsUntilStateChange: -386750.44 + - SecondsUntilStateChange: -390245.5 state: Opening type: Door - links: @@ -141307,7 +141502,7 @@ entities: pos: -6.5,35.5 parent: 82 type: Transform - - SecondsUntilStateChange: -386750.44 + - SecondsUntilStateChange: -390245.5 state: Opening type: Door - links: @@ -141318,7 +141513,7 @@ entities: - pos: 60.5,-6.5 parent: 82 type: Transform - - SecondsUntilStateChange: -376906.28 + - SecondsUntilStateChange: -380401.34 state: Opening type: Door - links: @@ -141330,7 +141525,7 @@ entities: pos: 44.5,12.5 parent: 82 type: Transform - - SecondsUntilStateChange: -76247.664 + - SecondsUntilStateChange: -79742.74 state: Opening type: Door - links: @@ -141342,7 +141537,7 @@ entities: pos: 44.5,13.5 parent: 82 type: Transform - - SecondsUntilStateChange: -76247.664 + - SecondsUntilStateChange: -79742.74 state: Opening type: Door - links: @@ -141354,7 +141549,7 @@ entities: pos: -46.5,-34.5 parent: 82 type: Transform - - SecondsUntilStateChange: -379691.6 + - SecondsUntilStateChange: -383186.66 state: Opening type: Door - links: @@ -141366,7 +141561,7 @@ entities: pos: 12.5,-19.5 parent: 82 type: Transform - - SecondsUntilStateChange: -487941.72 + - SecondsUntilStateChange: -491436.78 state: Opening type: Door - links: @@ -141378,7 +141573,7 @@ entities: pos: 11.5,-19.5 parent: 82 type: Transform - - SecondsUntilStateChange: -487941.72 + - SecondsUntilStateChange: -491436.78 state: Opening type: Door - links: @@ -141390,7 +141585,7 @@ entities: pos: 10.5,-19.5 parent: 82 type: Transform - - SecondsUntilStateChange: -487941.72 + - SecondsUntilStateChange: -491436.78 state: Opening type: Door - links: @@ -141402,7 +141597,7 @@ entities: pos: 4.5,-19.5 parent: 82 type: Transform - - SecondsUntilStateChange: -487941.72 + - SecondsUntilStateChange: -491436.78 state: Opening type: Door - links: @@ -141413,7 +141608,7 @@ entities: - pos: 0.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -487941.72 + - SecondsUntilStateChange: -491436.78 state: Opening type: Door - links: @@ -141425,7 +141620,7 @@ entities: pos: 44.5,14.5 parent: 82 type: Transform - - SecondsUntilStateChange: -76247.664 + - SecondsUntilStateChange: -79742.74 state: Opening type: Door - links: @@ -141437,7 +141632,7 @@ entities: pos: -6.5,33.5 parent: 82 type: Transform - - SecondsUntilStateChange: -386750.44 + - SecondsUntilStateChange: -390245.5 state: Opening type: Door - links: @@ -141448,7 +141643,7 @@ entities: - pos: -10.5,32.5 parent: 82 type: Transform - - SecondsUntilStateChange: -386750.44 + - SecondsUntilStateChange: -390245.5 state: Opening type: Door - links: @@ -141460,7 +141655,7 @@ entities: pos: 25.5,65.5 parent: 82 type: Transform - - SecondsUntilStateChange: -388058.53 + - SecondsUntilStateChange: -391553.6 state: Opening type: Door - links: @@ -141471,7 +141666,7 @@ entities: - pos: 28.5,67.5 parent: 82 type: Transform - - SecondsUntilStateChange: -388058.53 + - SecondsUntilStateChange: -391553.6 state: Opening type: Door - links: @@ -141482,7 +141677,7 @@ entities: - pos: 27.5,67.5 parent: 82 type: Transform - - SecondsUntilStateChange: -388058.53 + - SecondsUntilStateChange: -391553.6 state: Opening type: Door - links: @@ -141493,7 +141688,7 @@ entities: - pos: 28.5,62.5 parent: 82 type: Transform - - SecondsUntilStateChange: -388058.53 + - SecondsUntilStateChange: -391553.6 state: Opening type: Door - links: @@ -141504,7 +141699,7 @@ entities: - pos: 26.5,62.5 parent: 82 type: Transform - - SecondsUntilStateChange: -388058.53 + - SecondsUntilStateChange: -391553.6 state: Opening type: Door - links: @@ -141515,7 +141710,7 @@ entities: - pos: 27.5,62.5 parent: 82 type: Transform - - SecondsUntilStateChange: -388058.53 + - SecondsUntilStateChange: -391553.6 state: Opening type: Door - links: @@ -141527,7 +141722,7 @@ entities: pos: -6.5,36.5 parent: 82 type: Transform - - SecondsUntilStateChange: -386750.44 + - SecondsUntilStateChange: -390245.5 state: Opening type: Door - links: @@ -141539,7 +141734,7 @@ entities: pos: -46.5,-35.5 parent: 82 type: Transform - - SecondsUntilStateChange: -379691.6 + - SecondsUntilStateChange: -383186.66 state: Opening type: Door - links: @@ -141550,7 +141745,7 @@ entities: - pos: -45.5,-33.5 parent: 82 type: Transform - - SecondsUntilStateChange: -379691.6 + - SecondsUntilStateChange: -383186.66 state: Opening type: Door - links: @@ -141561,7 +141756,7 @@ entities: - pos: -44.5,-33.5 parent: 82 type: Transform - - SecondsUntilStateChange: -379691.6 + - SecondsUntilStateChange: -383186.66 state: Opening type: Door - links: @@ -141572,7 +141767,7 @@ entities: - pos: -42.5,-33.5 parent: 82 type: Transform - - SecondsUntilStateChange: -379691.6 + - SecondsUntilStateChange: -383186.66 state: Opening type: Door - links: @@ -141583,7 +141778,7 @@ entities: - pos: -41.5,-33.5 parent: 82 type: Transform - - SecondsUntilStateChange: -379691.6 + - SecondsUntilStateChange: -383186.66 state: Opening type: Door - links: @@ -141594,7 +141789,7 @@ entities: - pos: 61.5,-6.5 parent: 82 type: Transform - - SecondsUntilStateChange: -376906.28 + - SecondsUntilStateChange: -380401.34 state: Opening type: Door - links: @@ -141606,7 +141801,7 @@ entities: pos: 57.5,-7.5 parent: 82 type: Transform - - SecondsUntilStateChange: -376906.28 + - SecondsUntilStateChange: -380401.34 state: Opening type: Door - links: @@ -141618,7 +141813,7 @@ entities: pos: 57.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -376906.28 + - SecondsUntilStateChange: -380401.34 state: Opening type: Door - links: @@ -141630,7 +141825,7 @@ entities: pos: 57.5,-10.5 parent: 82 type: Transform - - SecondsUntilStateChange: -376906.28 + - SecondsUntilStateChange: -380401.34 state: Opening type: Door - links: @@ -141642,7 +141837,7 @@ entities: pos: 57.5,-11.5 parent: 82 type: Transform - - SecondsUntilStateChange: -376906.28 + - SecondsUntilStateChange: -380401.34 state: Opening type: Door - links: @@ -141654,7 +141849,7 @@ entities: pos: 57.5,-9.5 parent: 82 type: Transform - - SecondsUntilStateChange: -376906.28 + - SecondsUntilStateChange: -380401.34 state: Opening type: Door - links: @@ -141666,7 +141861,7 @@ entities: pos: 59.5,-14.5 parent: 82 type: Transform - - SecondsUntilStateChange: -376906.28 + - SecondsUntilStateChange: -380401.34 state: Opening type: Door - links: @@ -141678,7 +141873,7 @@ entities: pos: 59.5,-15.5 parent: 82 type: Transform - - SecondsUntilStateChange: -376906.28 + - SecondsUntilStateChange: -380401.34 state: Opening type: Door - links: @@ -141857,7 +142052,7 @@ entities: - pos: -26.5,60.5 parent: 82 type: Transform - - SecondsUntilStateChange: -432742.3 + - SecondsUntilStateChange: -436237.38 state: Closing type: Door - links: @@ -141868,7 +142063,7 @@ entities: - pos: -24.5,60.5 parent: 82 type: Transform - - SecondsUntilStateChange: -432742.3 + - SecondsUntilStateChange: -436237.38 state: Closing type: Door - links: @@ -141879,7 +142074,7 @@ entities: - pos: -25.5,60.5 parent: 82 type: Transform - - SecondsUntilStateChange: -432742.3 + - SecondsUntilStateChange: -436237.38 state: Closing type: Door - links: @@ -141890,7 +142085,7 @@ entities: - pos: -23.5,60.5 parent: 82 type: Transform - - SecondsUntilStateChange: -432742.3 + - SecondsUntilStateChange: -436237.38 state: Closing type: Door - links: @@ -141901,7 +142096,7 @@ entities: - pos: -27.5,60.5 parent: 82 type: Transform - - SecondsUntilStateChange: -432742.3 + - SecondsUntilStateChange: -436237.38 state: Closing type: Door - links: @@ -145730,7 +145925,7 @@ entities: type: Transform - uid: 20343 components: - - pos: 43.898037,48.400093 + - pos: 43.942944,48.361805 parent: 82 type: Transform - uid: 20344 @@ -146421,6 +146616,34 @@ entities: - pos: 52.5,-1.5 parent: 82 type: Transform +- proto: SpawnPointSeniorEngineer + entities: + - uid: 22214 + components: + - pos: -13.5,37.5 + parent: 82 + type: Transform +- proto: SpawnPointSeniorOfficer + entities: + - uid: 22215 + components: + - pos: 62.5,-0.5 + parent: 82 + type: Transform +- proto: SpawnPointSeniorPhysician + entities: + - uid: 22216 + components: + - pos: -21.5,-30.5 + parent: 82 + type: Transform +- proto: SpawnPointSeniorResearcher + entities: + - uid: 22213 + components: + - pos: 24.5,60.5 + parent: 82 + type: Transform - proto: SpawnPointServiceWorker entities: - uid: 25328 @@ -146590,6 +146813,18 @@ entities: - pos: 2.5283194,37.75924 parent: 82 type: Transform +- proto: SprayPainter + entities: + - uid: 11279 + components: + - pos: -27.825413,5.523837 + parent: 82 + type: Transform + - uid: 25478 + components: + - pos: 24.20533,-9.416981 + parent: 82 + type: Transform - proto: StasisBedMachineCircuitboard entities: - uid: 4215 @@ -147956,13 +148191,6 @@ entities: - pos: -61.355446,-48.53664 parent: 82 type: Transform -- proto: SyringeSpaceacillin - entities: - - uid: 11213 - components: - - pos: -46.46559,-23.62904 - parent: 82 - type: Transform - proto: Table entities: - uid: 342 @@ -151262,11 +151490,6 @@ entities: - pos: -65.5,-41.5 parent: 82 type: Transform - - uid: 22678 - components: - - pos: 11.5,53.5 - parent: 82 - type: Transform - proto: UniformPrinter entities: - uid: 10843 @@ -151850,6 +152073,15 @@ entities: - pos: 11.5,58.5 parent: 82 type: Transform +- proto: VendingMachineRobotics + entities: + - uid: 16948 + components: + - flags: SessionSpecific + type: MetaData + - pos: 11.5,53.5 + parent: 82 + type: Transform - proto: VendingMachineSalvage entities: - uid: 6850 @@ -169076,11 +169308,6 @@ entities: pos: -17.5,11.5 parent: 82 type: Transform - - uid: 10996 - components: - - pos: -54.5,50.5 - parent: 82 - type: Transform - uid: 10997 components: - pos: -20.5,15.5 @@ -171642,6 +171869,71 @@ entities: type: Transform - proto: WindowFrostedDirectional entities: + - uid: 2188 + components: + - pos: -13.5,-37.5 + parent: 82 + type: Transform + - uid: 2514 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-41.5 + parent: 82 + type: Transform + - uid: 2540 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-43.5 + parent: 82 + type: Transform + - uid: 2603 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-39.5 + parent: 82 + type: Transform + - uid: 2608 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-38.5 + parent: 82 + type: Transform + - uid: 2836 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-43.5 + parent: 82 + type: Transform + - uid: 2837 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-43.5 + parent: 82 + type: Transform + - uid: 2838 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-41.5 + parent: 82 + type: Transform + - uid: 2839 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-41.5 + parent: 82 + type: Transform + - uid: 2849 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-41.5 + parent: 82 + type: Transform + - uid: 2852 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-41.5 + parent: 82 + type: Transform - uid: 3192 components: - rot: -1.5707963267948966 rad @@ -171654,6 +171946,98 @@ entities: pos: -39.5,-34.5 parent: 82 type: Transform + - uid: 3284 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-40.5 + parent: 82 + type: Transform + - uid: 3635 + components: + - rot: -1.5707963267948966 rad + pos: 51.5,-7.5 + parent: 82 + type: Transform + - uid: 3636 + components: + - rot: -1.5707963267948966 rad + pos: 51.5,-8.5 + parent: 82 + type: Transform + - uid: 3637 + components: + - rot: -1.5707963267948966 rad + pos: 51.5,-9.5 + parent: 82 + type: Transform + - uid: 11155 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-38.5 + parent: 82 + type: Transform + - uid: 11156 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-38.5 + parent: 82 + type: Transform + - uid: 11157 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-38.5 + parent: 82 + type: Transform + - uid: 11186 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-35.5 + parent: 82 + type: Transform + - uid: 11187 + components: + - pos: -12.5,-37.5 + parent: 82 + type: Transform + - uid: 11236 + components: + - pos: -11.5,-37.5 + parent: 82 + type: Transform + - uid: 11237 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-37.5 + parent: 82 + type: Transform + - uid: 11238 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-36.5 + parent: 82 + type: Transform + - uid: 11239 + components: + - pos: -10.5,-37.5 + parent: 82 + type: Transform + - uid: 12549 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-38.5 + parent: 82 + type: Transform + - uid: 17788 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-43.5 + parent: 82 + type: Transform + - uid: 20005 + components: + - pos: 59.5,-36.5 + parent: 82 + type: Transform - proto: WindowReinforcedDirectional entities: - uid: 2828 @@ -171978,165 +172362,6 @@ entities: pos: -33.5,19.5 parent: 82 type: Transform -- proto: WindowTintedDirectional - entities: - - uid: 2188 - components: - - pos: -13.5,-37.5 - parent: 82 - type: Transform - - uid: 2514 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-41.5 - parent: 82 - type: Transform - - uid: 2540 - components: - - rot: 3.141592653589793 rad - pos: -38.5,-43.5 - parent: 82 - type: Transform - - uid: 2603 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-39.5 - parent: 82 - type: Transform - - uid: 2608 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-38.5 - parent: 82 - type: Transform - - uid: 2836 - components: - - rot: 3.141592653589793 rad - pos: -42.5,-43.5 - parent: 82 - type: Transform - - uid: 2837 - components: - - rot: 3.141592653589793 rad - pos: -43.5,-43.5 - parent: 82 - type: Transform - - uid: 2838 - components: - - rot: 3.141592653589793 rad - pos: -42.5,-41.5 - parent: 82 - type: Transform - - uid: 2839 - components: - - rot: 3.141592653589793 rad - pos: -43.5,-41.5 - parent: 82 - type: Transform - - uid: 2849 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-41.5 - parent: 82 - type: Transform - - uid: 2852 - components: - - rot: 3.141592653589793 rad - pos: -38.5,-41.5 - parent: 82 - type: Transform - - uid: 3284 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-40.5 - parent: 82 - type: Transform - - uid: 3635 - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-7.5 - parent: 82 - type: Transform - - uid: 3636 - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-8.5 - parent: 82 - type: Transform - - uid: 3637 - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-9.5 - parent: 82 - type: Transform - - uid: 11155 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-38.5 - parent: 82 - type: Transform - - uid: 11156 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-38.5 - parent: 82 - type: Transform - - uid: 11157 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-38.5 - parent: 82 - type: Transform - - uid: 11186 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-35.5 - parent: 82 - type: Transform - - uid: 11187 - components: - - pos: -12.5,-37.5 - parent: 82 - type: Transform - - uid: 11236 - components: - - pos: -11.5,-37.5 - parent: 82 - type: Transform - - uid: 11237 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-37.5 - parent: 82 - type: Transform - - uid: 11238 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-36.5 - parent: 82 - type: Transform - - uid: 11239 - components: - - pos: -10.5,-37.5 - parent: 82 - type: Transform - - uid: 12549 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-38.5 - parent: 82 - type: Transform - - uid: 17788 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-43.5 - parent: 82 - type: Transform - - uid: 20005 - components: - - pos: 59.5,-36.5 - parent: 82 - type: Transform - proto: WoodDoor entities: - uid: 4245 @@ -172144,7 +172369,7 @@ entities: - pos: -11.5,17.5 parent: 82 type: Transform - - SecondsUntilStateChange: -557849.7 + - SecondsUntilStateChange: -561344.75 state: Opening type: Door - uid: 4246 @@ -172152,7 +172377,7 @@ entities: - pos: -11.5,19.5 parent: 82 type: Transform - - SecondsUntilStateChange: -557847.94 + - SecondsUntilStateChange: -561343 state: Opening type: Door - uid: 8013 diff --git a/Resources/Maps/marathon.yml b/Resources/Maps/marathon.yml index cd090805a9d..11c3025aa70 100644 --- a/Resources/Maps/marathon.yml +++ b/Resources/Maps/marathon.yml @@ -4,62 +4,61 @@ meta: tilemap: 0: Space 3: FloorArcadeRed - 10: FloorAsteroidSand - 11: FloorAsteroidSandPebbles - 13: FloorAsteroidSandRocksRed - 14: FloorAsteroidTile - 15: FloorBar - 17: FloorBlue - 18: FloorBlueCircuit - 25: FloorClown - 26: FloorDark - 29: FloorDarkHerringbone - 31: FloorDarkMono - 33: FloorDarkPavement - 34: FloorDarkPavementVertical - 35: FloorDarkPlastic - 38: FloorEighties - 41: FloorFreezer - 42: FloorGlass - 43: FloorGold - 44: FloorGrass - 45: FloorGrassDark - 46: FloorGrassJungle - 47: FloorGrassLight - 48: FloorGreenCircuit - 52: FloorHydro - 53: FloorKitchen - 54: FloorLaundry - 55: FloorLino - 58: FloorMime - 59: FloorMono - 61: FloorPlanetGrass - 62: FloorPlastic - 63: FloorRGlass - 64: FloorReinforced - 66: FloorRockVault - 67: FloorShowroom - 74: FloorSnow - 75: FloorSteel - 76: FloorSteelCheckerDark - 77: FloorSteelCheckerLight - 78: FloorSteelDiagonal - 80: FloorSteelDirty - 81: FloorSteelHerringbone - 82: FloorSteelMini - 85: FloorSteelPavement - 86: FloorSteelPavementVertical - 87: FloorTechMaint - 88: FloorTechMaint2 - 91: FloorWhite - 94: FloorWhiteHerringbone - 95: FloorWhiteMini - 96: FloorWhiteMono - 100: FloorWhitePlastic - 101: FloorWood - 103: Lattice - 104: Plating - 105: PlatingAsteroid + 6: FloorAsteroidSand + 8: FloorAsteroidSandRed + 10: FloorAsteroidTile + 11: FloorBar + 13: FloorBlue + 14: FloorBlueCircuit + 21: FloorClown + 22: FloorDark + 25: FloorDarkHerringbone + 27: FloorDarkMono + 29: FloorDarkPavement + 30: FloorDarkPavementVertical + 31: FloorDarkPlastic + 34: FloorEighties + 37: FloorFreezer + 38: FloorGlass + 39: FloorGold + 40: FloorGrass + 41: FloorGrassDark + 42: FloorGrassJungle + 43: FloorGrassLight + 44: FloorGreenCircuit + 48: FloorHydro + 49: FloorKitchen + 50: FloorLaundry + 51: FloorLino + 54: FloorMime + 55: FloorMono + 57: FloorPlanetGrass + 58: FloorPlastic + 59: FloorRGlass + 60: FloorReinforced + 62: FloorRockVault + 63: FloorShowroom + 70: FloorSnow + 71: FloorSteel + 72: FloorSteelCheckerDark + 73: FloorSteelCheckerLight + 74: FloorSteelDiagonal + 76: FloorSteelDirty + 77: FloorSteelHerringbone + 78: FloorSteelMini + 81: FloorSteelPavement + 82: FloorSteelPavementVertical + 83: FloorTechMaint + 84: FloorTechMaint2 + 87: FloorWhite + 90: FloorWhiteHerringbone + 91: FloorWhiteMini + 92: FloorWhiteMono + 96: FloorWhitePlastic + 97: FloorWood + 99: Lattice + 100: Plating + 101: PlatingAsteroid entities: - proto: "" entities: @@ -72,268 +71,268 @@ entities: - chunks: -1,0: ind: -1,0 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAUsAAABoAAAASwAAAEsAAAJLAAAASwAAA0sAAAFLAAABSwAAA0sAAAJLAAADSwAAAksAAAJLAAACSwAAAksAAAJLAAACSwAAA0sAAAFLAAADSwAAAEsAAABLAAACSwAAAUsAAAFLAAADSwAAA0sAAAJLAAACSwAAAUsAAAFLAAABSwAAAksAAAJLAAACSwAAAEsAAAJLAAADSwAAA0sAAANLAAAASwAAA0sAAABLAAACSwAAA0sAAANLAAABSwAAAUsAAANLAAADSwAAA0sAAANLAAACSwAAAUsAAANLAAACSwAAAmgAAABoAAAAaAAAAGgAAABLAAADSwAAAksAAAJLAAAASwAAA0sAAAFLAAABaAAAAEsAAAJLAAABSwAAA2gAAABNAAACTQAAA00AAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAASwAAAxoAAAFoAAAATQAAAU0AAABNAAAATQAAAE0AAAJoAAAASwAAABoAAAFLAAABGgAAAksAAAMaAAAASwAAAhoAAANLAAABGgAAAk0AAAFNAAACTQAAAk0AAAJNAAADaAAAABoAAANLAAABGgAAA0sAAAEaAAABSwAAAxoAAANLAAADGgAAAEsAAAFNAAADTQAAA00AAABNAAAATQAAAWgAAABLAAACGgAAAUsAAAAaAAACSwAAAxoAAAFLAAAAGgAAAksAAAIaAAADTQAAA00AAAJNAAABTQAAAU0AAAFoAAAAGgAAAUsAAAMaAAAASwAAAxoAAABLAAAAGgAAA0sAAAMaAAADSwAAAk0AAANNAAACTQAAAk0AAABNAAABaAAAAEsAAAIaAAABSwAAAxoAAANLAAACGgAAAksAAAIaAAABSwAAARoAAAFNAAAATQAAA00AAAJNAAADTQAAAWgAAAAaAAADSwAAARoAAAFLAAABGgAAAUsAAAIaAAAASwAAAxoAAAFLAAACaAAAAGgAAAAaAAACaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACaAAAABoAAAEaAAACGgAAABoAAAIaAAACGgAAAikAAABoAAAAGgAAARoAAAEaAAADGgAAABoAAAIaAAAAGgAAAGgAAABlAAACZQAAAmUAAAJlAAACZQAAAGUAAAIpAAAAaAAAABoAAAEaAAACGgAAARoAAAAaAAADGgAAABoAAAAaAAADZQAAAmUAAABlAAACZQAAA2UAAAFlAAACKQAAAGgAAABLAAABaAAAAGgAAAAaAAABaAAAAGgAAABoAAAAaAAAABoAAAIaAAABGgAAAhoAAAMaAAACGgAAAg== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAUcAAABkAAAARwAAAEcAAAJHAAAARwAAA0cAAAFHAAABRwAAA0cAAAJHAAADRwAAAkcAAAJHAAACRwAAAkcAAAJHAAACRwAAA0cAAAFHAAADRwAAAEcAAABHAAACRwAAAUcAAAFHAAADRwAAA0cAAAJHAAACRwAAAUcAAAFHAAABRwAAAkcAAAJHAAACRwAAAEcAAAJHAAADRwAAA0cAAANHAAAARwAAA0cAAABHAAACRwAAA0cAAANHAAABRwAAAUcAAANHAAADRwAAA0cAAANHAAACRwAAAUcAAANHAAACRwAAAmQAAABkAAAAZAAAAGQAAABHAAADRwAAAkcAAAJHAAAARwAAA0cAAAFHAAABZAAAAEcAAAJHAAABRwAAA2QAAABJAAACSQAAA0kAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAAARwAAAxYAAAFkAAAASQAAAUkAAABJAAAASQAAAEkAAAJkAAAARwAAABYAAAFHAAABFgAAAkcAAAMWAAAARwAAAhYAAANHAAABFgAAAkkAAAFJAAACSQAAAkkAAAJJAAADZAAAABYAAANHAAABFgAAA0cAAAEWAAABRwAAAxYAAANHAAADFgAAAEcAAAFJAAADSQAAA0kAAABJAAAASQAAAWQAAABHAAACFgAAAUcAAAAWAAACRwAAAxYAAAFHAAAAFgAAAkcAAAIWAAADSQAAA0kAAAJJAAABSQAAAUkAAAFkAAAAFgAAAUcAAAMWAAAARwAAAxYAAABHAAAAFgAAA0cAAAMWAAADRwAAAkkAAANJAAACSQAAAkkAAABJAAABZAAAAEcAAAIWAAABRwAAAxYAAANHAAACFgAAAkcAAAIWAAABRwAAARYAAAFJAAAASQAAA0kAAAJJAAADSQAAAWQAAAAWAAADRwAAARYAAAFHAAABFgAAAUcAAAIWAAAARwAAAxYAAAFHAAACZAAAAGQAAAAWAAACZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACZAAAABYAAAEWAAACFgAAABYAAAIWAAACFgAAAiUAAABkAAAAFgAAARYAAAEWAAADFgAAABYAAAIWAAAAFgAAAGQAAABhAAACYQAAAmEAAAJhAAACYQAAAGEAAAIlAAAAZAAAABYAAAEWAAACFgAAARYAAAAWAAADFgAAABYAAAAWAAADYQAAAmEAAABhAAACYQAAA2EAAAFhAAACJQAAAGQAAABHAAABZAAAAGQAAAAWAAABZAAAAGQAAABkAAAAZAAAABYAAAIWAAABFgAAAhYAAAMWAAACFgAAAg== 0,0: ind: 0,0 - tiles: SwAAA0sAAAFoAAAASwAAA0sAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABoAAAASwAAAUsAAABLAAADSwAAA0sAAABLAAAASwAAAksAAABLAAAASwAAAksAAAFLAAACSwAAAUsAAAFLAAAASwAAAEsAAABLAAADSwAAAEsAAAJLAAABSwAAAksAAABLAAAASwAAA0sAAANLAAAASwAAA0sAAAJLAAADSwAAA2gAAABLAAABSwAAAUsAAABLAAACSwAAAEsAAAFLAAABSwAAA0sAAAFLAAADSwAAAksAAABLAAACSwAAAEsAAAFoAAAAaAAAAEsAAANLAAACSwAAAUsAAAJLAAABSwAAA0sAAAJoAAAASwAAA0sAAANLAAADSwAAAEsAAAJLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAJoAAAAaAAAAEsAAAFLAAABSwAAAWgAAABYAAAAaAAAAGgAAABoAAAASwAAARoAAANLAAAAGgAAA0sAAAIaAAABSwAAA2gAAABLAAADSwAAA0sAAAFoAAAAaAAAAGgAAABoAAAAaAAAABoAAAFLAAACGgAAAEsAAAAaAAADSwAAAhoAAAJLAAACSwAAAEsAAANLAAADaAAAAGgAAABoAAAAaAAAAGgAAABLAAABGgAAAUsAAAMaAAAASwAAARoAAAJLAAABSwAAAksAAANLAAADSwAAAWgAAABXAAAAVwAAAFcAAABXAAAAGgAAAksAAAMaAAAAaAAAABoAAAFLAAABGgAAAGgAAABLAAADSwAAAksAAANoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAEaAAACSwAAA2gAAABLAAACGgAAAksAAAJoAAAASwAAA0sAAANLAAACaAAAABoAAAIaAAACGgAAAhoAAAIaAAADSwAAARoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAADSwAAAmgAAAAaAAADGgAAAxoAAAIaAAAAGgAAAGgAAAAaAAABaAAAABoAAAIaAAABGgAAA2gAAABLAAAASwAAAUsAAAJoAAAAGgAAAhoAAAAaAAAAGgAAAGUAAAFoAAAAGQAAABkAAAA6AAAAOgAAADoAAABoAAAASwAAAksAAAFLAAACaAAAAGgAAABoAAAAaAAAAGgAAABlAAADaAAAABkAAAAZAAAAGQAAADoAAAA6AAAAaAAAAEsAAABLAAABSwAAA2gAAAAaAAAAGgAAAxoAAAMaAAACGgAAAWgAAAAaAAACGgAAARoAAABoAAAAWAAAAGgAAABLAAAASwAAAEsAAABLAAABSwAAA0sAAAJLAAAAGgAAAA== + tiles: RwAAA0cAAAFkAAAARwAAA0cAAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAEcAAABkAAAARwAAAUcAAABHAAADRwAAA0cAAABHAAAARwAAAkcAAABHAAAARwAAAkcAAAFHAAACRwAAAUcAAAFHAAAARwAAAEcAAABHAAADRwAAAEcAAAJHAAABRwAAAkcAAABHAAAARwAAA0cAAANHAAAARwAAA0cAAAJHAAADRwAAA2QAAABHAAABRwAAAUcAAABHAAACRwAAAEcAAAFHAAABRwAAA0cAAAFHAAADRwAAAkcAAABHAAACRwAAAEcAAAFkAAAAZAAAAEcAAANHAAACRwAAAUcAAAJHAAABRwAAA0cAAAJkAAAARwAAA0cAAANHAAADRwAAAEcAAAJHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAJkAAAAZAAAAEcAAAFHAAABRwAAAWQAAABUAAAAZAAAAGQAAABkAAAARwAAARYAAANHAAAAFgAAA0cAAAIWAAABRwAAA2QAAABHAAADRwAAA0cAAAFkAAAAZAAAAGQAAABkAAAAZAAAABYAAAFHAAACFgAAAEcAAAAWAAADRwAAAhYAAAJHAAACRwAAAEcAAANHAAADZAAAAGQAAABkAAAAZAAAAGQAAABHAAABFgAAAUcAAAMWAAAARwAAARYAAAJHAAABRwAAAkcAAANHAAADRwAAAWQAAABTAAAAUwAAAFMAAABTAAAAFgAAAkcAAAMWAAAAZAAAABYAAAFHAAABFgAAAGQAAABHAAADRwAAAkcAAANkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAEWAAACRwAAA2QAAABHAAACFgAAAkcAAAJkAAAARwAAA0cAAANHAAACZAAAABYAAAIWAAACFgAAAhYAAAIWAAADRwAAARYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAADRwAAAmQAAAAWAAADFgAAAxYAAAIWAAAAFgAAAGQAAAAWAAABZAAAABYAAAIWAAABFgAAA2QAAABHAAAARwAAAUcAAAJkAAAAFgAAAhYAAAAWAAAAFgAAAGEAAAFkAAAAFQAAABUAAAA2AAAANgAAADYAAABkAAAARwAAAkcAAAFHAAACZAAAAGQAAABkAAAAZAAAAGQAAABhAAADZAAAABUAAAAVAAAAFQAAADYAAAA2AAAAZAAAAEcAAABHAAABRwAAA2QAAAAWAAAAFgAAAxYAAAMWAAACFgAAAWQAAAAWAAACFgAAARYAAABkAAAAVAAAAGQAAABHAAAARwAAAEcAAABHAAABRwAAA0cAAAJHAAAAFgAAAA== -1,-1: ind: -1,-1 - tiles: WwAAAVsAAABbAAABWwAAA1sAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAFsAAAFbAAABWwAAAFsAAANbAAACWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAACWwAAAlsAAABbAAAAWwAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAFsAAANbAAACWwAAAlsAAANoAAAAWwAAAVsAAAFbAAAAWwAAAEAAAABAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAANbAAAAWwAAAFsAAAJAAAAAQAAAAGgAAABoAAAAaAAAAGgAAABbAAADWwAAA1sAAAJbAAADWwAAAWgAAABbAAAAWwAAA1sAAAFbAAABWwAAA1sAAANoAAAAaAAAAGgAAABoAAAAWwAAAFsAAAJbAAACWwAAAFsAAAJbAAABWwAAA1sAAAJbAAADWwAAAlsAAAFbAAADaAAAAGgAAABoAAAAGgAAA1sAAABbAAACWwAAAFsAAAJbAAADaAAAAFsAAAJbAAACWwAAAFsAAAFbAAADWwAAAWgAAABoAAAAaAAAABoAAANoAAAAaAAAAGgAAABbAAABWwAAAmgAAABbAAABWwAAAFsAAABbAAACWwAAAGgAAABoAAAAaAAAAGgAAAAaAAAAWwAAA1sAAAJoAAAAWwAAAVsAAANoAAAAWwAAAFsAAANbAAAAWwAAAlsAAABoAAAAVwAAAGgAAABoAAAAGgAAAFsAAAFbAAAAWwAAA1sAAANbAAACaAAAAGgAAABbAAACaAAAAFsAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABbAAAAWwAAAlsAAANbAAABWwAAAlsAAAFbAAADWwAAAFsAAAJbAAACWwAAA2gAAABLAAABSwAAAksAAAFoAAAAaAAAAFsAAABbAAAAWwAAAlsAAAJbAAABWwAAA1sAAANbAAABWwAAAVsAAAFLAAADSwAAAUsAAAFLAAABSwAAAGgAAABbAAADWwAAAlsAAANbAAADWwAAA1sAAABbAAAAWwAAAVsAAANbAAADSwAAAEsAAANLAAADSwAAAksAAAFoAAAAWwAAA1sAAAJbAAABWwAAAFsAAABbAAADWwAAA1sAAAFbAAACWwAAAmgAAABLAAABSwAAA0sAAABoAAAAaAAAAFsAAABbAAABWwAAAFsAAAJbAAAAWwAAAFsAAAJoAAAAaAAAAGgAAABoAAAASwAAAUsAAAJLAAADaAAAAA== + tiles: VwAAAVcAAABXAAABVwAAA1cAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAUwAAAFcAAAFXAAABVwAAAFcAAANXAAACVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAACVwAAAlcAAABXAAAAVwAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAFcAAANXAAACVwAAAlcAAANkAAAAVwAAAVcAAAFXAAAAVwAAADwAAAA8AAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAANXAAAAVwAAAFcAAAI8AAAAPAAAAGQAAABkAAAAZAAAAGQAAABXAAADVwAAA1cAAAJXAAADVwAAAWQAAABXAAAAVwAAA1cAAAFXAAABVwAAA1cAAANkAAAAZAAAAGQAAABkAAAAVwAAAFcAAAJXAAACVwAAAFcAAAJXAAABVwAAA1cAAAJXAAADVwAAAlcAAAFXAAADZAAAAGQAAABkAAAAFgAAA1cAAABXAAACVwAAAFcAAAJXAAADZAAAAFcAAAJXAAACVwAAAFcAAAFXAAADVwAAAWQAAABkAAAAZAAAABYAAANkAAAAZAAAAGQAAABXAAABVwAAAmQAAABXAAABVwAAAFcAAABXAAACVwAAAGQAAABkAAAAZAAAAGQAAAAWAAAAVwAAA1cAAAJkAAAAVwAAAVcAAANkAAAAVwAAAFcAAANXAAAAVwAAAlcAAABkAAAAUwAAAGQAAABkAAAAFgAAAFcAAAFXAAAAVwAAA1cAAANXAAACZAAAAGQAAABXAAACZAAAAFcAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABXAAAAVwAAAlcAAANXAAABVwAAAlcAAAFXAAADVwAAAFcAAAJXAAACVwAAA2QAAABHAAABRwAAAkcAAAFkAAAAZAAAAFcAAABXAAAAVwAAAlcAAAJXAAABVwAAA1cAAANXAAABVwAAAVcAAAFHAAADRwAAAUcAAAFHAAABRwAAAGQAAABXAAADVwAAAlcAAANXAAADVwAAA1cAAABXAAAAVwAAAVcAAANXAAADRwAAAEcAAANHAAADRwAAAkcAAAFkAAAAVwAAA1cAAAJXAAABVwAAAFcAAABXAAADVwAAA1cAAAFXAAACVwAAAmQAAABHAAABRwAAA0cAAABkAAAAZAAAAFcAAABXAAABVwAAAFcAAAJXAAAAVwAAAFcAAAJkAAAAZAAAAGQAAABkAAAARwAAAUcAAAJHAAADZAAAAA== 0,-1: ind: 0,-1 - tiles: aAAAAGgAAABXAAAANwAAADcAAAA3AAAAaAAAAGUAAANlAAABZQAAAGgAAABLAAACSwAAAUsAAAEaAAAAaAAAAGgAAABoAAAAaAAAADcAAAA3AAAANwAAAGgAAABlAAADZQAAAWUAAABoAAAASwAAAksAAANLAAADGgAAAWgAAABoAAAAaAAAAFcAAAA3AAAANwAAADcAAABoAAAAZQAAAmUAAABlAAACaAAAAEsAAAFLAAACSwAAARoAAAJoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAEsAAANoAAAAaAAAAGgAAAAaAAACaAAAAGUAAANlAAADZQAAAi4AAABLAAAASwAAAEsAAABLAAAASwAAA0sAAABLAAAAGgAAAWgAAABoAAAAGgAAABoAAABlAAAAZQAAAGUAAAIhAAACSwAAAEsAAANLAAADSwAAAUsAAAFLAAAASwAAABoAAABLAAADGgAAARoAAAMaAAABZQAAA2UAAAJlAAADIQAAA0sAAABLAAACSwAAA0sAAAJLAAAASwAAAksAAAMaAAAAaAAAABoAAAMaAAADGgAAAWUAAABlAAACZQAAAiEAAANLAAABSwAAAEsAAAFoAAAASwAAAksAAABLAAABaAAAAGgAAAAaAAACGgAAAWgAAABlAAAAZQAAA2UAAAAuAAAASwAAAUsAAABLAAACaAAAAEsAAAJLAAABSwAAA0sAAANLAAABGgAAAxoAAANoAAAAZQAAAmUAAABlAAABLgAAAEsAAAFLAAACSwAAAWgAAABLAAAASwAAA0sAAAJLAAADSwAAAxoAAABoAAAAaAAAAGUAAABlAAABZQAAAWgAAABLAAACSwAAAksAAAFoAAAASwAAAksAAABLAAACSwAAA0sAAAMPAAACDwAAAw8AAAMuAAAAIQAAAS4AAAAuAAAASwAAA0sAAANLAAADaAAAAEsAAABLAAAASwAAAEsAAAFLAAABSwAAAUsAAAFLAAABSwAAA0sAAAFLAAACSwAAAksAAANLAAADSwAAAmgAAABLAAADSwAAAUsAAAJLAAAASwAAAksAAAJLAAABSwAAA0sAAANLAAABSwAAA0sAAAFLAAABSwAAAEsAAABoAAAASwAAAksAAABLAAADSwAAA0sAAABLAAABSwAAAUsAAANLAAAASwAAAUsAAABLAAABSwAAAksAAABLAAABaAAAAEsAAABLAAABSwAAAUsAAANLAAABaAAAAGgAAABoAAAASwAAAksAAAJLAAACSwAAARoAAAMaAAABGgAAA2gAAABLAAABSwAAAksAAANoAAAAaAAAAA== + tiles: ZAAAAGQAAABTAAAAMwAAADMAAAAzAAAAZAAAAGEAAANhAAABYQAAAGQAAABHAAACRwAAAUcAAAEWAAAAZAAAAGQAAABkAAAAZAAAADMAAAAzAAAAMwAAAGQAAABhAAADYQAAAWEAAABkAAAARwAAAkcAAANHAAADFgAAAWQAAABkAAAAZAAAAFMAAAAzAAAAMwAAADMAAABkAAAAYQAAAmEAAABhAAACZAAAAEcAAAFHAAACRwAAARYAAAJkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAEcAAANkAAAAZAAAAGQAAAAWAAACZAAAAGEAAANhAAADYQAAAioAAABHAAAARwAAAEcAAABHAAAARwAAA0cAAABHAAAAFgAAAWQAAABkAAAAFgAAABYAAABhAAAAYQAAAGEAAAIdAAACRwAAAEcAAANHAAADRwAAAUcAAAFHAAAARwAAABYAAABHAAADFgAAARYAAAMWAAABYQAAA2EAAAJhAAADHQAAA0cAAABHAAACRwAAA0cAAAJHAAAARwAAAkcAAAMWAAAAZAAAABYAAAMWAAADFgAAAWEAAABhAAACYQAAAh0AAANHAAABRwAAAEcAAAFkAAAARwAAAkcAAABHAAABZAAAAGQAAAAWAAACFgAAAWQAAABhAAAAYQAAA2EAAAAqAAAARwAAAUcAAABHAAACZAAAAEcAAAJHAAABRwAAA0cAAANHAAABFgAAAxYAAANkAAAAYQAAAmEAAABhAAABKgAAAEcAAAFHAAACRwAAAWQAAABHAAAARwAAA0cAAAJHAAADRwAAAxYAAABkAAAAZAAAAGEAAABhAAABYQAAAWQAAABHAAACRwAAAkcAAAFkAAAARwAAAkcAAABHAAACRwAAA0cAAAMLAAACCwAAAwsAAAMqAAAAHQAAASoAAAAqAAAARwAAA0cAAANHAAADZAAAAEcAAABHAAAARwAAAEcAAAFHAAABRwAAAUcAAAFHAAABRwAAA0cAAAFHAAACRwAAAkcAAANHAAADRwAAAmQAAABHAAADRwAAAUcAAAJHAAAARwAAAkcAAAJHAAABRwAAA0cAAANHAAABRwAAA0cAAAFHAAABRwAAAEcAAABkAAAARwAAAkcAAABHAAADRwAAA0cAAABHAAABRwAAAUcAAANHAAAARwAAAUcAAABHAAABRwAAAkcAAABHAAABZAAAAEcAAABHAAABRwAAAUcAAANHAAABZAAAAGQAAABkAAAARwAAAkcAAAJHAAACRwAAARYAAAMWAAABFgAAA2QAAABHAAABRwAAAkcAAANkAAAAZAAAAA== -2,0: ind: -2,0 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAGgAAABoAAAAaAAAAEsAAANoAAAAaAAAAEsAAAFLAAAASwAAA0sAAAJLAAADSwAAAEsAAAJLAAACSwAAAksAAANLAAACSwAAAksAAANLAAACSwAAAUsAAAFLAAADSwAAAksAAAFLAAACSwAAAUsAAAJLAAABSwAAAEsAAANLAAADSwAAA0sAAABLAAACSwAAAksAAAFLAAACSwAAAksAAABLAAAASwAAAUsAAABLAAACSwAAAEsAAAJLAAACSwAAAksAAAJLAAABSwAAAEsAAAJLAAADSwAAAUsAAAJLAAABaAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAAGgAAABLAAACSwAAA0sAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAABoAAAASwAAAEsAAAFLAAAAaAAAAE0AAAJNAAADGgAAARoAAAJoAAAAPgAAAj4AAAE+AAAAPgAAAT4AAAA+AAAASwAAAUsAAANLAAAASwAAAksAAANNAAABTQAAAB8AAAAaAAACaAAAADQAAAA+AAAAVQAAA1UAAANVAAADPgAAAmgAAABLAAAASwAAAEsAAAJoAAAATQAAAk0AAAEfAAAAGgAAAGgAAAA0AAAAPgAAAVUAAANVAAACVQAAAj4AAANoAAAAaAAAAGgAAABoAAAAaAAAAE0AAAFNAAABHwAAARoAAANoAAAANAAAAD4AAANVAAACVQAAAVUAAAM+AAACPgAAAEsAAANLAAAASwAAA2gAAABNAAAATQAAABoAAAEaAAADaAAAADQAAAA+AAABVQAAAVUAAAFVAAACPgAAAD4AAAFLAAABSwAAAEsAAABLAAABTQAAAU0AAAAaAAADaAAAAGgAAAA0AAAAPgAAA1UAAAFVAAACVQAAAD4AAAM+AAACSwAAAEsAAANLAAACaAAAAE0AAANNAAAAGgAAARoAAANoAAAAPgAAAD4AAAA+AAAAPgAAAT4AAAI+AAAANAAAADQAAAA0AAAANAAAAGgAAABoAAAAGgAAARoAAAAaAAADaAAAADQAAAA0AAAANAAAADQAAAA+AAAANAAAADQAAABoAAAAaAAAAGgAAABoAAAAKQAAACkAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAIQAAAWgAAABoAAAAaAAAACkAAAApAAAAKQAAACkAAAApAAAAaAAAAFcAAABoAAAANAAAADQAAAA0AAAANAAAACEAAAI0AAAANAAAAGgAAAApAAAAKQAAACkAAAApAAAAKQAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAGQAAABkAAAAZAAAAEcAAANkAAAAZAAAAEcAAAFHAAAARwAAA0cAAAJHAAADRwAAAEcAAAJHAAACRwAAAkcAAANHAAACRwAAAkcAAANHAAACRwAAAUcAAAFHAAADRwAAAkcAAAFHAAACRwAAAUcAAAJHAAABRwAAAEcAAANHAAADRwAAA0cAAABHAAACRwAAAkcAAAFHAAACRwAAAkcAAABHAAAARwAAAUcAAABHAAACRwAAAEcAAAJHAAACRwAAAkcAAAJHAAABRwAAAEcAAAJHAAADRwAAAUcAAAJHAAABZAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAGQAAABHAAACRwAAA0cAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAABkAAAARwAAAEcAAAFHAAAAZAAAAEkAAAJJAAADFgAAARYAAAJkAAAAOgAAAjoAAAE6AAAAOgAAAToAAAA6AAAARwAAAUcAAANHAAAARwAAAkcAAANJAAABSQAAABsAAAAWAAACZAAAADAAAAA6AAAAUQAAA1EAAANRAAADOgAAAmQAAABHAAAARwAAAEcAAAJkAAAASQAAAkkAAAEbAAAAFgAAAGQAAAAwAAAAOgAAAVEAAANRAAACUQAAAjoAAANkAAAAZAAAAGQAAABkAAAAZAAAAEkAAAFJAAABGwAAARYAAANkAAAAMAAAADoAAANRAAACUQAAAVEAAAM6AAACOgAAAEcAAANHAAAARwAAA2QAAABJAAAASQAAABYAAAEWAAADZAAAADAAAAA6AAABUQAAAVEAAAFRAAACOgAAADoAAAFHAAABRwAAAEcAAABHAAABSQAAAUkAAAAWAAADZAAAAGQAAAAwAAAAOgAAA1EAAAFRAAACUQAAADoAAAM6AAACRwAAAEcAAANHAAACZAAAAEkAAANJAAAAFgAAARYAAANkAAAAOgAAADoAAAA6AAAAOgAAAToAAAI6AAAAMAAAADAAAAAwAAAAMAAAAGQAAABkAAAAFgAAARYAAAAWAAADZAAAADAAAAAwAAAAMAAAADAAAAA6AAAAMAAAADAAAABkAAAAZAAAAGQAAABkAAAAJQAAACUAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAHQAAAWQAAABkAAAAZAAAACUAAAAlAAAAJQAAACUAAAAlAAAAZAAAAFMAAABkAAAAMAAAADAAAAAwAAAAMAAAAB0AAAIwAAAAMAAAAGQAAAAlAAAAJQAAACUAAAAlAAAAJQAAAA== 0,1: ind: 0,1 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAksAAANLAAABSwAAA0sAAAJLAAAAGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAASwAAAUsAAABLAAAASwAAA0sAAABLAAAASwAAAxoAAANoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAEsAAAFLAAACSwAAA2gAAABLAAADSwAAAksAAAEaAAAAGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAEsAAANoAAAAaAAAAEsAAANoAAAAaAAAABoAAAFoAAAASwAAA0sAAAIaAAABSwAAA0sAAABoAAAASwAAAUsAAAFLAAAAaAAAAEsAAANLAAADSwAAAmgAAAAaAAADaAAAAEsAAAIaAAACGgAAAxoAAANLAAACaAAAAEsAAANLAAACSwAAAGgAAABLAAACIwAAAEsAAAJLAAAAGgAAAxoAAAEaAAAAGgAAAhoAAAIaAAABGgAAAGgAAABLAAACSwAAAUsAAAJoAAAASwAAACMAAAJLAAABaAAAABoAAAJoAAAASwAAAEsAAAMaAAADSwAAAksAAANoAAAASwAAAksAAAFLAAACaAAAAEsAAAFLAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAABoAAAAaAAAAEsAAAFLAAACSwAAAWgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAANLAAAASwAAAksAAANLAAADSwAAA0sAAAJLAAACSwAAA0sAAAFLAAAASwAAAEsAAAJLAAADSwAAA0sAAAJLAAACSwAAAEsAAANLAAABSwAAA0sAAAJLAAADSwAAAD4AAAFLAAACSwAAAksAAABLAAAASwAAAksAAABLAAADSwAAA0sAAANLAAABSwAAAksAAAFLAAACSwAAAEsAAABLAAADSwAAAUsAAAJLAAAASwAAA0sAAABLAAABaAAAAGgAAABoAAAAaAAAAD4AAAJoAAAAaAAAAGgAAABLAAADSwAAAUsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAD4AAAA+AAABPgAAAj4AAAE+AAAAPgAAAGgAAABLAAADSwAAAksAAAJLAAACSwAAA2gAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAFLAAAASwAAAEsAAABoAAAAAAAAAGcAAABoAAAAZQAAAWUAAANlAAADZQAAA2UAAAJlAAACaAAAAGgAAABLAAAASwAAAUsAAAJLAAAAaAAAAAAAAABnAAAAaAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAAkcAAANHAAABRwAAA0cAAAJHAAAAFgAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAARwAAAUcAAABHAAAARwAAA0cAAABHAAAARwAAAxYAAANkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAEcAAAFHAAACRwAAA2QAAABHAAADRwAAAkcAAAEWAAAAFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAEcAAANkAAAAZAAAAEcAAANkAAAAZAAAABYAAAFkAAAARwAAA0cAAAIWAAABRwAAA0cAAABkAAAARwAAAUcAAAFHAAAAZAAAAEcAAANHAAADRwAAAmQAAAAWAAADZAAAAEcAAAIWAAACFgAAAxYAAANHAAACZAAAAEcAAANHAAACRwAAAGQAAABHAAACHwAAAEcAAAJHAAAAFgAAAxYAAAEWAAAAFgAAAhYAAAIWAAABFgAAAGQAAABHAAACRwAAAUcAAAJkAAAARwAAAB8AAAJHAAABZAAAABYAAAJkAAAARwAAAEcAAAMWAAADRwAAAkcAAANkAAAARwAAAkcAAAFHAAACZAAAAEcAAAFHAAAARwAAAWQAAABkAAAAZAAAAGQAAABkAAAARwAAAGQAAABkAAAAZAAAAEcAAAFHAAACRwAAAWQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAANHAAAARwAAAkcAAANHAAADRwAAA0cAAAJHAAACRwAAA0cAAAFHAAAARwAAAEcAAAJHAAADRwAAA0cAAAJHAAACRwAAAEcAAANHAAABRwAAA0cAAAJHAAADRwAAADoAAAFHAAACRwAAAkcAAABHAAAARwAAAkcAAABHAAADRwAAA0cAAANHAAABRwAAAkcAAAFHAAACRwAAAEcAAABHAAADRwAAAUcAAAJHAAAARwAAA0cAAABHAAABZAAAAGQAAABkAAAAZAAAADoAAAJkAAAAZAAAAGQAAABHAAADRwAAAUcAAAFkAAAAZAAAAGQAAABkAAAAZAAAADoAAAA6AAABOgAAAjoAAAE6AAAAOgAAAGQAAABHAAADRwAAAkcAAAJHAAACRwAAA2QAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAFHAAAARwAAAEcAAABkAAAAAAAAAGMAAABkAAAAYQAAAWEAAANhAAADYQAAA2EAAAJhAAACZAAAAGQAAABHAAAARwAAAUcAAAJHAAAAZAAAAAAAAABjAAAAZAAAAA== -1,1: ind: -1,1 - tiles: KQAAAGgAAABLAAACaAAAABoAAAFlAAAAZQAAAWgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAACkAAABLAAABSwAAAGgAAAAaAAABZQAAA2UAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJoAAAAGgAAAGUAAABlAAAAZQAAAWUAAANXAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAVwAAAFcAAABXAAAAaAAAABoAAAAaAAADGgAAARoAAAJoAAAAVwAAAGgAAABoAAAAGgAAAUsAAAJLAAABSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAANLAAAASwAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACSwAAAEsAAAJLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAksAAABLAAACSwAAAWgAAABoAAAAaAAAAC4AAAAtAAAALwAAAy4AAAAuAAAALwAAAy0AAAFoAAAAaAAAABoAAABLAAABSwAAAUsAAAJoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAmgAAABLAAAASwAAAUsAAAJLAAABSwAAAEsAAABLAAACSwAAAUsAAAJLAAABSwAAAEsAAAJLAAABSwAAAksAAANLAAABSwAAAEsAAABLAAABPgAAAUsAAAE+AAADPgAAAz4AAAM+AAADPgAAAEsAAAE+AAADSwAAA0sAAAFLAAAASwAAAksAAAJLAAACSwAAAksAAABLAAAASwAAAUsAAAJLAAAASwAAAUsAAAJLAAACSwAAAEsAAAFLAAADSwAAAEsAAAJLAAAAGgAAARoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADGgAAAmgAAABoAAAAPgAAABoAAAMaAAADaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAIwAAAxoAAANoAAAAPgAAAT4AAAIaAAACGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAEaAAAAaAAAAGgAAABoAAAAGgAAABoAAAJoAAAAGgAAABoAAAEaAAADGgAAARoAAAEaAAABGgAAAGgAAAAaAAADGgAAA2gAAAAaAAAAZQAAAw== + tiles: JQAAAGQAAABHAAACZAAAABYAAAFhAAAAYQAAAWQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAACUAAABHAAABRwAAAGQAAAAWAAABYQAAA2EAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJkAAAAFgAAAGEAAABhAAAAYQAAAWEAAANTAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAUwAAAFMAAABTAAAAZAAAABYAAAAWAAADFgAAARYAAAJkAAAAUwAAAGQAAABkAAAAFgAAAUcAAAJHAAABRwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAANHAAAARwAAAEcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACRwAAAEcAAAJHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAkcAAABHAAACRwAAAWQAAABkAAAAZAAAACoAAAApAAAAKwAAAyoAAAAqAAAAKwAAAykAAAFkAAAAZAAAABYAAABHAAABRwAAAUcAAAJkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAmQAAABHAAAARwAAAUcAAAJHAAABRwAAAEcAAABHAAACRwAAAUcAAAJHAAABRwAAAEcAAAJHAAABRwAAAkcAAANHAAABRwAAAEcAAABHAAABOgAAAUcAAAE6AAADOgAAAzoAAAM6AAADOgAAAEcAAAE6AAADRwAAA0cAAAFHAAAARwAAAkcAAAJHAAACRwAAAkcAAABHAAAARwAAAUcAAAJHAAAARwAAAUcAAAJHAAACRwAAAEcAAAFHAAADRwAAAEcAAAJHAAAAFgAAARYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADFgAAAmQAAABkAAAAOgAAABYAAAMWAAADZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAHwAAAxYAAANkAAAAOgAAAToAAAIWAAACFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAEWAAAAZAAAAGQAAABkAAAAFgAAABYAAAJkAAAAFgAAABYAAAEWAAADFgAAARYAAAEWAAABFgAAAGQAAAAWAAADFgAAA2QAAAAWAAAAYQAAAw== -2,1: ind: -2,1 - tiles: aAAAAFcAAABoAAAANAAAACEAAAIhAAADIQAAAiEAAAAhAAAANAAAAGgAAAApAAAAKQAAACkAAAApAAAAKQAAAGgAAABXAAAAaAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAABoAAAAaAAAAFgAAABoAAAAKQAAACkAAABoAAAAVwAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAFcAAABXAAAAVwAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAADZQAAAWgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAmUAAAJoAAAATgAAA04AAANOAAACTgAAAmgAAAApAAAAKQAAACkAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAAFlAAACaAAAAE4AAANOAAABTgAAAE4AAABoAAAAKQAAACkAAAApAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAPAAAAaAAAAGgAAABoAAAAaAAAAEsAAANoAAAAaAAAAGgAAAApAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAFLAAAASwAAAksAAAJLAAACSwAAAUsAAANLAAABSwAAA0sAAABLAAAASwAAAEsAAABLAAADSwAAAz4AAAJLAAABSwAAA0sAAABLAAADSwAAAz4AAAJLAAAASwAAAUsAAABLAAACSwAAAEsAAAJLAAACSwAAAUsAAABLAAAASwAAA0sAAAJLAAABSwAAAUsAAAJLAAADSwAAAUsAAABLAAABSwAAAEsAAANLAAAASwAAA0sAAABLAAABSwAAAmgAAABoAAAAaAAAAGgAAABoAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAABSwAAAksAAAFLAAADSwAAAUsAAAJLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAksAAABLAAADSwAAAEsAAAFLAAADSwAAAmgAAABoAAAAZQAAAWUAAAFlAAAAZQAAAmUAAAFoAAAASwAAAEsAAAJLAAACSwAAAEsAAAJLAAACSwAAA0sAAAFoAAAAaAAAAGUAAABlAAABZQAAAGUAAAFlAAADaAAAAA== + tiles: ZAAAAFMAAABkAAAAMAAAAB0AAAIdAAADHQAAAh0AAAAdAAAAMAAAAGQAAAAlAAAAJQAAACUAAAAlAAAAJQAAAGQAAABTAAAAZAAAADAAAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAABkAAAAZAAAAFQAAABkAAAAJQAAACUAAABkAAAAUwAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAFMAAABTAAAAUwAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAADYQAAAWQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAAmEAAAJkAAAASgAAA0oAAANKAAACSgAAAmQAAAAlAAAAJQAAACUAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAAFhAAACZAAAAEoAAANKAAABSgAAAEoAAABkAAAAJQAAACUAAAAlAAAAZAAAAGQAAABkAAAAZAAAAGQAAAALAAAAZAAAAGQAAABkAAAAZAAAAEcAAANkAAAAZAAAAGQAAAAlAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAAFHAAAARwAAAkcAAAJHAAACRwAAAUcAAANHAAABRwAAA0cAAABHAAAARwAAAEcAAABHAAADRwAAAzoAAAJHAAABRwAAA0cAAABHAAADRwAAAzoAAAJHAAAARwAAAUcAAABHAAACRwAAAEcAAAJHAAACRwAAAUcAAABHAAAARwAAA0cAAAJHAAABRwAAAUcAAAJHAAADRwAAAUcAAABHAAABRwAAAEcAAANHAAAARwAAA0cAAABHAAABRwAAAmQAAABkAAAAZAAAAGQAAABkAAAARwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAABRwAAAkcAAAFHAAADRwAAAUcAAAJHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAkcAAABHAAADRwAAAEcAAAFHAAADRwAAAmQAAABkAAAAYQAAAWEAAAFhAAAAYQAAAmEAAAFkAAAARwAAAEcAAAJHAAACRwAAAEcAAAJHAAACRwAAA0cAAAFkAAAAZAAAAGEAAABhAAABYQAAAGEAAAFhAAADZAAAAA== -3,0: ind: -3,0 - tiles: AAAAAGgAAABLAAACSwAAAmgAAAA3AAAANwAAADcAAAA3AAAANwAAAGgAAAAaAAADGgAAARoAAAAaAAABaAAAAAAAAABoAAAASwAAA0sAAAFoAAAANwAAADcAAAA3AAAANwAAADcAAABoAAAASwAAAUsAAABLAAADSwAAA0sAAAAAAAAAaAAAAEsAAABLAAACaAAAADcAAAA3AAAANwAAADcAAAA3AAAAaAAAAEsAAANLAAAASwAAA0sAAABLAAADAAAAAGgAAABLAAACSwAAA2gAAAA3AAAANwAAADcAAAA3AAAANwAAAGgAAABLAAACSwAAAUsAAAJLAAABSwAAAwAAAABoAAAASwAAAEsAAAJoAAAAaAAAAGgAAABLAAABaAAAAGgAAABoAAAASwAAAUsAAAJLAAAASwAAAksAAAAAAAAAaAAAAEsAAAJLAAADSwAAAUsAAABLAAABSwAAAUsAAABLAAACSwAAAksAAAJLAAAASwAAAWgAAAAaAAAAaAAAAGgAAABLAAABSwAAAksAAAJLAAACSwAAAEsAAANLAAABSwAAA0sAAABLAAADSwAAAUsAAANoAAAAGgAAA0sAAABLAAADSwAAA0sAAAFLAAABSwAAAksAAAJLAAABSwAAAEsAAANLAAABSwAAAUsAAANLAAAAGgAAARoAAAJLAAADSwAAA0sAAAJLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAADSwAAABoAAAAaAAABSwAAAWgAAABoAAAAaAAAAGgAAABLAAADSwAAAksAAABLAAACSwAAAmgAAABLAAADSwAAAUsAAABoAAAAGgAAA0sAAABYAAAAaAAAAEsAAANoAAAASwAAAEsAAABLAAACSwAAAUsAAAJLAAAASwAAAEsAAAJLAAABaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAADSwAAA0sAAAFLAAAAaAAAAEsAAAJLAAABSwAAAWgAAABoAAAAaAAAABoAAAIaAAADGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAksAAAFoAAAAGgAAAEsAAAFLAAADSwAAAUsAAAFLAAACSwAAAEsAAAJLAAABSwAAAksAAANLAAAASwAAAEsAAABLAAADaAAAABoAAABLAAACSwAAAksAAAFLAAADSwAAAUsAAAJLAAACSwAAAUsAAAFLAAAASwAAA0sAAANLAAACSwAAA2gAAABoAAAASwAAAUsAAABLAAACSwAAA0sAAANLAAADSwAAAEsAAAJLAAACSwAAAksAAAFLAAACSwAAAUsAAANYAAAAaAAAAA== + tiles: AAAAAGQAAABHAAACRwAAAmQAAAAzAAAAMwAAADMAAAAzAAAAMwAAAGQAAAAWAAADFgAAARYAAAAWAAABZAAAAAAAAABkAAAARwAAA0cAAAFkAAAAMwAAADMAAAAzAAAAMwAAADMAAABkAAAARwAAAUcAAABHAAADRwAAA0cAAAAAAAAAZAAAAEcAAABHAAACZAAAADMAAAAzAAAAMwAAADMAAAAzAAAAZAAAAEcAAANHAAAARwAAA0cAAABHAAADAAAAAGQAAABHAAACRwAAA2QAAAAzAAAAMwAAADMAAAAzAAAAMwAAAGQAAABHAAACRwAAAUcAAAJHAAABRwAAAwAAAABkAAAARwAAAEcAAAJkAAAAZAAAAGQAAABHAAABZAAAAGQAAABkAAAARwAAAUcAAAJHAAAARwAAAkcAAAAAAAAAZAAAAEcAAAJHAAADRwAAAUcAAABHAAABRwAAAUcAAABHAAACRwAAAkcAAAJHAAAARwAAAWQAAAAWAAAAZAAAAGQAAABHAAABRwAAAkcAAAJHAAACRwAAAEcAAANHAAABRwAAA0cAAABHAAADRwAAAUcAAANkAAAAFgAAA0cAAABHAAADRwAAA0cAAAFHAAABRwAAAkcAAAJHAAABRwAAAEcAAANHAAABRwAAAUcAAANHAAAAFgAAARYAAAJHAAADRwAAA0cAAAJHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAADRwAAABYAAAAWAAABRwAAAWQAAABkAAAAZAAAAGQAAABHAAADRwAAAkcAAABHAAACRwAAAmQAAABHAAADRwAAAUcAAABkAAAAFgAAA0cAAABUAAAAZAAAAEcAAANkAAAARwAAAEcAAABHAAACRwAAAUcAAAJHAAAARwAAAEcAAAJHAAABZAAAABYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAADRwAAA0cAAAFHAAAAZAAAAEcAAAJHAAABRwAAAWQAAABkAAAAZAAAABYAAAIWAAADFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAAkcAAAFkAAAAFgAAAEcAAAFHAAADRwAAAUcAAAFHAAACRwAAAEcAAAJHAAABRwAAAkcAAANHAAAARwAAAEcAAABHAAADZAAAABYAAABHAAACRwAAAkcAAAFHAAADRwAAAUcAAAJHAAACRwAAAUcAAAFHAAAARwAAA0cAAANHAAACRwAAA2QAAABkAAAARwAAAUcAAABHAAACRwAAA0cAAANHAAADRwAAAEcAAAJHAAACRwAAAkcAAAFHAAACRwAAAUcAAANUAAAAZAAAAA== -3,1: ind: -3,1 - tiles: aAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFoAAAAaAAAAGgAAABLAAACSwAAAUsAAAJoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABLAAAASwAAAUsAAAJLAAADSwAAA2gAAAAaAAAASwAAAksAAABLAAACGgAAAWgAAABoAAAAaAAAAFcAAABLAAACSwAAA0sAAANLAAAASwAAAksAAANoAAAAGgAAAUsAAAJLAAACSwAAAxoAAANoAAAAaAAAAGgAAABXAAAAaAAAAEsAAANLAAADSwAAA0sAAABLAAACaAAAABoAAAFLAAABSwAAAEsAAAMaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAA2UAAANlAAADZQAAAmUAAAJlAAADaAAAAEsAAAFLAAADSwAAAmgAAABlAAADaAAAAGgAAABoAAAAaAAAAGgAAABlAAAAZQAAAGUAAAFlAAADZQAAAGgAAABLAAADSwAAA0sAAABoAAAAZQAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAANLAAAAaAAAAGUAAANoAAAAaAAAAGgAAABXAAAAaAAAADsAAAA7AAAAOwAAADsAAAA7AAAAaAAAAEsAAABLAAACSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAABLAAAASwAAAEsAAABLAAAASwAAA2gAAABoAAAAaAAAAFcAAABoAAAAOwAAADsAAAA7AAAAOwAAADsAAABoAAAASwAAAEsAAABLAAABSwAAAUsAAAJoAAAAaAAAAGgAAABXAAAAaAAAADsAAAA7AAAAOwAAADsAAAA7AAAAaAAAAEsAAAJLAAABSwAAAEsAAAJLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAA0sAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGUAAABlAAAAZQAAAGUAAABoAAAALAAAACwAAABoAAAASwAAAEsAAAFLAAAAaAAAAEsAAABoAAAAaAAAAFgAAABlAAABZQAAAmUAAAFlAAADaAAAACwAAAAsAAAAaAAAAEsAAABLAAABSwAAAWgAAABLAAABaAAAAGgAAABoAAAAZQAAAWUAAAJlAAAAZQAAAGgAAAAsAAAALAAAAGgAAABLAAABSwAAA0sAAANoAAAASwAAAg== + tiles: ZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFkAAAAZAAAAGQAAABHAAACRwAAAUcAAAJkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABHAAAARwAAAUcAAAJHAAADRwAAA2QAAAAWAAAARwAAAkcAAABHAAACFgAAAWQAAABkAAAAZAAAAFMAAABHAAACRwAAA0cAAANHAAAARwAAAkcAAANkAAAAFgAAAUcAAAJHAAACRwAAAxYAAANkAAAAZAAAAGQAAABTAAAAZAAAAEcAAANHAAADRwAAA0cAAABHAAACZAAAABYAAAFHAAABRwAAAEcAAAMWAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAA2EAAANhAAADYQAAAmEAAAJhAAADZAAAAEcAAAFHAAADRwAAAmQAAABhAAADZAAAAGQAAABkAAAAZAAAAGQAAABhAAAAYQAAAGEAAAFhAAADYQAAAGQAAABHAAADRwAAA0cAAABkAAAAYQAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAANHAAAAZAAAAGEAAANkAAAAZAAAAGQAAABTAAAAZAAAADcAAAA3AAAANwAAADcAAAA3AAAAZAAAAEcAAABHAAACRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAABHAAAARwAAAEcAAABHAAAARwAAA2QAAABkAAAAZAAAAFMAAABkAAAANwAAADcAAAA3AAAANwAAADcAAABkAAAARwAAAEcAAABHAAABRwAAAUcAAAJkAAAAZAAAAGQAAABTAAAAZAAAADcAAAA3AAAANwAAADcAAAA3AAAAZAAAAEcAAAJHAAABRwAAAEcAAAJHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAA0cAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGEAAABhAAAAYQAAAGEAAABkAAAAKAAAACgAAABkAAAARwAAAEcAAAFHAAAAZAAAAEcAAABkAAAAZAAAAFQAAABhAAABYQAAAmEAAAFhAAADZAAAACgAAAAoAAAAZAAAAEcAAABHAAABRwAAAWQAAABHAAABZAAAAGQAAABkAAAAYQAAAWEAAAJhAAAAYQAAAGQAAAAoAAAAKAAAAGQAAABHAAABRwAAA0cAAANkAAAARwAAAg== -4,0: ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAGgAAABLAAADSwAAAksAAABLAAAASwAAAksAAABLAAADSwAAAUsAAANLAAADSwAAAUsAAAMAAAAAZwAAAAAAAABoAAAASwAAAUsAAANLAAADSwAAAUsAAAJLAAAASwAAAksAAABLAAACSwAAAEsAAABLAAACAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAASwAAAUsAAAFLAAABSwAAA0sAAAJLAAACSwAAAUsAAAJLAAABSwAAAwAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAEsAAAFLAAADSwAAAksAAAFLAAAASwAAAksAAANLAAAASwAAAUsAAAEAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAANLAAAASwAAAksAAAJLAAABSwAAAksAAAFLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAD4AAAJLAAADSwAAAEsAAAFLAAABSwAAAEsAAABLAAADSwAAAUsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAA+AAAASwAAAEsAAAAtAAABSwAAAS8AAABLAAAASwAAAEsAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAPgAAAEsAAAJLAAABSwAAAEsAAANLAAACSwAAAEsAAABLAAABSwAAAQ== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAGQAAABHAAADRwAAAkcAAABHAAAARwAAAkcAAABHAAADRwAAAUcAAANHAAADRwAAAUcAAAMAAAAAYwAAAAAAAABkAAAARwAAAUcAAANHAAADRwAAAUcAAAJHAAAARwAAAkcAAABHAAACRwAAAEcAAABHAAACAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAARwAAAUcAAAFHAAABRwAAA0cAAAJHAAACRwAAAUcAAAJHAAABRwAAAwAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAEcAAAFHAAADRwAAAkcAAAFHAAAARwAAAkcAAANHAAAARwAAAUcAAAEAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAANHAAAARwAAAkcAAAJHAAABRwAAAkcAAAFHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAADoAAAJHAAADRwAAAEcAAAFHAAABRwAAAEcAAABHAAADRwAAAUcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAA6AAAARwAAAEcAAAApAAABRwAAASsAAABHAAAARwAAAEcAAABHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAOgAAAEcAAAJHAAABRwAAAEcAAANHAAACRwAAAEcAAABHAAABRwAAAQ== -3,-1: ind: -3,-1 - tiles: aAAAABoAAAIaAAACGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAACwAAAAsAAAALAAAAGgAAAAaAAAAKgAAABoAAANoAAAAXgAAA14AAANoAAAAZAAAAj4AAAM+AAACPgAAA2QAAAAsAAAALAAAACwAAABoAAAAGgAAABoAAAIaAAACaAAAAF4AAABeAAAAZAAAAWQAAAE+AAABPgAAAD4AAAJkAAACLAAAACwAAAAsAAAAaAAAABoAAAMqAAAAGgAAA2gAAABoAAAAaAAAAGgAAABkAAAAZAAAAGQAAAJkAAAAZAAAAWgAAABoAAAAaAAAAGgAAAAaAAABGgAAAxoAAABoAAAAXgAAAV4AAANoAAAAZAAAA2QAAABkAAACZAAAA2QAAABoAAAAPgAAAT4AAABoAAAAaAAAABoAAAMaAAACaAAAAF4AAABeAAABZAAAA2QAAABkAAACZAAAAmQAAANkAAACPgAAAj4AAAE+AAAAaAAAAGgAAABLAAADSwAAAWgAAABoAAAAaAAAAGgAAABkAAAAZAAAAGQAAAJkAAADZAAAAWgAAAA+AAAAPgAAAGgAAABoAAAASwAAAEsAAAJYAAAAaAAAAGgAAABoAAAAZAAAAmQAAABkAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAACaAAAAFcAAABoAAAAaAAAAGQAAABkAAACZAAAAmgAAAA3AAAANwAAADcAAAA3AAAASwAAAUsAAABLAAADSwAAAmgAAABoAAAAaAAAAGgAAABkAAADZAAAAGQAAAJoAAAANwAAADcAAAA3AAAANwAAAEsAAABLAAADSwAAA0sAAAJLAAACaAAAAGgAAABoAAAAZQAAAGUAAAFlAAAAaAAAADcAAAA3AAAANwAAADcAAABLAAABSwAAA0sAAANLAAACSwAAAmgAAABoAAAAaAAAAGUAAABlAAACZQAAA2gAAAA3AAAANwAAADcAAAA3AAAAaAAAAGgAAABLAAACSwAAAUsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFoAAAAaAAAAAAAAABoAAAASwAAA0sAAANLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAACkAAAApAAAAKQAAAGgAAAAAAAAAaAAAAEsAAABLAAADGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAApAAAAKQAAACkAAABbAAADAAAAAGgAAABLAAABSwAAAmgAAABoAAAANwAAADcAAAA3AAAAaAAAAGgAAABoAAAAaAAAAEsAAAJoAAAAaAAAAA== + tiles: ZAAAABYAAAIWAAACFgAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAACgAAAAoAAAAKAAAAGQAAAAWAAAAJgAAABYAAANkAAAAWgAAA1oAAANkAAAAYAAAAjoAAAM6AAACOgAAA2AAAAAoAAAAKAAAACgAAABkAAAAFgAAABYAAAIWAAACZAAAAFoAAABaAAAAYAAAAWAAAAE6AAABOgAAADoAAAJgAAACKAAAACgAAAAoAAAAZAAAABYAAAMmAAAAFgAAA2QAAABkAAAAZAAAAGQAAABgAAAAYAAAAGAAAAJgAAAAYAAAAWQAAABkAAAAZAAAAGQAAAAWAAABFgAAAxYAAABkAAAAWgAAAVoAAANkAAAAYAAAA2AAAABgAAACYAAAA2AAAABkAAAAOgAAAToAAABkAAAAZAAAABYAAAMWAAACZAAAAFoAAABaAAABYAAAA2AAAABgAAACYAAAAmAAAANgAAACOgAAAjoAAAE6AAAAZAAAAGQAAABHAAADRwAAAWQAAABkAAAAZAAAAGQAAABgAAAAYAAAAGAAAAJgAAADYAAAAWQAAAA6AAAAOgAAAGQAAABkAAAARwAAAEcAAAJUAAAAZAAAAGQAAABkAAAAYAAAAmAAAABgAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAACZAAAAFMAAABkAAAAZAAAAGAAAABgAAACYAAAAmQAAAAzAAAAMwAAADMAAAAzAAAARwAAAUcAAABHAAADRwAAAmQAAABkAAAAZAAAAGQAAABgAAADYAAAAGAAAAJkAAAAMwAAADMAAAAzAAAAMwAAAEcAAABHAAADRwAAA0cAAAJHAAACZAAAAGQAAABkAAAAYQAAAGEAAAFhAAAAZAAAADMAAAAzAAAAMwAAADMAAABHAAABRwAAA0cAAANHAAACRwAAAmQAAABkAAAAZAAAAGEAAABhAAACYQAAA2QAAAAzAAAAMwAAADMAAAAzAAAAZAAAAGQAAABHAAACRwAAAUcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFkAAAAZAAAAAAAAABkAAAARwAAA0cAAANHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAACUAAAAlAAAAJQAAAGQAAAAAAAAAZAAAAEcAAABHAAADFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAlAAAAJQAAACUAAABXAAADAAAAAGQAAABHAAABRwAAAmQAAABkAAAAMwAAADMAAAAzAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJkAAAAZAAAAA== -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAGgAAABLAAADSwAAAksAAAJLAAABSwAAA0sAAANLAAABSwAAAksAAAFLAAABSwAAAksAAAIAAAAAZwAAAAAAAABoAAAASwAAAksAAANLAAADSwAAAksAAAJLAAADSwAAAEsAAAFLAAADSwAAAEsAAANLAAADAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAGQAAABHAAADRwAAAkcAAAJHAAABRwAAA0cAAANHAAABRwAAAkcAAAFHAAABRwAAAkcAAAIAAAAAYwAAAAAAAABkAAAARwAAAkcAAANHAAADRwAAAkcAAAJHAAADRwAAAEcAAAFHAAADRwAAAEcAAANHAAADAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -2,-1: ind: -2,-1 - tiles: LAAAAGgAAABXAAAAWwAAA1sAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAWAAAAJbAAADaAAAACwAAABoAAAAVwAAAFsAAABbAAAAaAAAAEsAAANbAAAAWwAAAlsAAANbAAACaAAAAFsAAANkAAADWwAAAFsAAAEsAAAAaAAAAGgAAABbAAAAaAAAAGgAAABLAAADYAAAAWAAAAJbAAACWwAAA1sAAANbAAAAZAAAA1sAAANoAAAAaAAAAGgAAABbAAADWwAAA1sAAAJoAAAASwAAAVsAAAJgAAADWwAAAlsAAANoAAAAWwAAAFsAAABbAAACaAAAAD4AAANoAAAAWwAAAGAAAAFbAAAAaAAAAGgAAABbAAACWwAAAWgAAABoAAAAaAAAAFsAAAFbAAACWwAAAWgAAAA+AAABPgAAA1sAAANbAAADWwAAA2gAAABbAAABWwAAA1sAAANbAAAAWwAAAWgAAABbAAACYAAAA1sAAAJbAAADPgAAAGgAAABbAAABWwAAAVsAAANbAAACZAAAAmQAAAJkAAACZAAAAGQAAAFbAAABWwAAAlsAAANbAAABWwAAA2gAAABoAAAAWwAAA1sAAABbAAACWwAAAWQAAANkAAABZAAAAGQAAAJkAAADWwAAAlsAAAFgAAACWwAAA1sAAAA3AAAAaAAAAFsAAAJgAAADWwAAAGgAAABLAAADSwAAAUsAAAFLAAADSwAAA2gAAABbAAAAWwAAAlsAAABoAAAANwAAAEsAAABbAAAAYAAAAlsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAlsAAABbAAACaAAAADcAAABoAAAAWwAAA1sAAABbAAACGgAAARoAAAEaAAACGgAAARoAAAIaAAACGgAAAlsAAABbAAABWwAAAVsAAAE3AAAAaAAAAGgAAABkAAABaAAAAGgAAAAaAAAAGgAAAxoAAAIaAAADGgAAA2gAAABbAAADWwAAAVsAAANoAAAAaAAAAGgAAABlAAADZQAAA2UAAANoAAAAGgAAAhoAAAIaAAACGgAAAhoAAAFoAAAAaAAAAEsAAANoAAAAaAAAAEwAAAJMAAADZQAAA2UAAAFlAAACaAAAABoAAAIaAAACGgAAAxoAAAMaAAADaAAAAEsAAANLAAACSwAAA0sAAABMAAADTAAAAGUAAANlAAADZQAAAmgAAAAaAAADGgAAARoAAAAaAAACGgAAAmgAAABLAAADSwAAA0sAAABLAAADTAAAA0wAAAJlAAACZQAAAmUAAAIaAAABGgAAARoAAAMaAAABGgAAABoAAAFoAAAASwAAAEsAAANLAAADSwAAAg== + tiles: KAAAAGQAAABTAAAAVwAAA1cAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAVwAAAJXAAADZAAAACgAAABkAAAAUwAAAFcAAABXAAAAZAAAAEcAAANXAAAAVwAAAlcAAANXAAACZAAAAFcAAANgAAADVwAAAFcAAAEoAAAAZAAAAGQAAABXAAAAZAAAAGQAAABHAAADXAAAAVwAAAJXAAACVwAAA1cAAANXAAAAYAAAA1cAAANkAAAAZAAAAGQAAABXAAADVwAAA1cAAAJkAAAARwAAAVcAAAJcAAADVwAAAlcAAANkAAAAVwAAAFcAAABXAAACZAAAADoAAANkAAAAVwAAAFwAAAFXAAAAZAAAAGQAAABXAAACVwAAAWQAAABkAAAAZAAAAFcAAAFXAAACVwAAAWQAAAA6AAABOgAAA1cAAANXAAADVwAAA2QAAABXAAABVwAAA1cAAANXAAAAVwAAAWQAAABXAAACXAAAA1cAAAJXAAADOgAAAGQAAABXAAABVwAAAVcAAANXAAACYAAAAmAAAAJgAAACYAAAAGAAAAFXAAABVwAAAlcAAANXAAABVwAAA2QAAABkAAAAVwAAA1cAAABXAAACVwAAAWAAAANgAAABYAAAAGAAAAJgAAADVwAAAlcAAAFcAAACVwAAA1cAAAAzAAAAZAAAAFcAAAJcAAADVwAAAGQAAABHAAADRwAAAUcAAAFHAAADRwAAA2QAAABXAAAAVwAAAlcAAABkAAAAMwAAAEcAAABXAAAAXAAAAlcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAlcAAABXAAACZAAAADMAAABkAAAAVwAAA1cAAABXAAACFgAAARYAAAEWAAACFgAAARYAAAIWAAACFgAAAlcAAABXAAABVwAAAVcAAAEzAAAAZAAAAGQAAABgAAABZAAAAGQAAAAWAAAAFgAAAxYAAAIWAAADFgAAA2QAAABXAAADVwAAAVcAAANkAAAAZAAAAGQAAABhAAADYQAAA2EAAANkAAAAFgAAAhYAAAIWAAACFgAAAhYAAAFkAAAAZAAAAEcAAANkAAAAZAAAAEgAAAJIAAADYQAAA2EAAAFhAAACZAAAABYAAAIWAAACFgAAAxYAAAMWAAADZAAAAEcAAANHAAACRwAAA0cAAABIAAADSAAAAGEAAANhAAADYQAAAmQAAAAWAAADFgAAARYAAAAWAAACFgAAAmQAAABHAAADRwAAA0cAAABHAAADSAAAA0gAAAJhAAACYQAAAmEAAAIWAAABFgAAARYAAAMWAAABFgAAABYAAAFkAAAARwAAAEcAAANHAAADRwAAAg== -2,2: ind: -2,2 - tiles: SwAAA0sAAAJLAAADSwAAAksAAABLAAAASwAAA0sAAABoAAAAaAAAAGUAAANlAAACZQAAASEAAAJlAAADaAAAAEsAAAJLAAABSwAAA0sAAANLAAAASwAAAEsAAAFLAAADaAAAAGgAAABoAAAAIwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAAAZQAAAWUAAANlAAADZQAAA2UAAABoAAAASwAAAksAAAJLAAAAaAAAADcAAAA3AAAANwAAADcAAABoAAAAZQAAAmUAAAFlAAAAZQAAAGUAAABlAAACaAAAAEsAAANLAAABSwAAAmgAAAA3AAAANwAAADcAAAA3AAAAaAAAAGUAAAJlAAAAZQAAAmUAAANlAAADZQAAA2gAAABLAAADSwAAA0sAAABoAAAAGgAAAhoAAAAaAAACGgAAABoAAAMaAAADGgAAAxoAAAAaAAAAGgAAABoAAAEaAAADGgAAARoAAAJoAAAAaAAAAGgAAAAjAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAMaAAACaAAAAF8AAAFeAAACXwAAAF8AAANoAAAAVwAAAGgAAABYAAAAGgAAAxoAAAIaAAACGgAAAB8AAAEaAAABGgAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAEaAAAAGgAAAmgAAAAfAAAAGgAAAGgAAABoAAAAGgAAARoAAAIaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA2gAAABoAAAAaAAAAEsAAAFLAAADaAAAABoAAAIaAAADGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAPgAAAD4AAAA+AAACZwAAAGgAAABLAAABSwAAAxoAAAIaAAABGgAAARoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAASwAAAUsAAAFoAAAAGgAAARoAAAIaAAADaAAAAFcAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABLAAADSwAAAEsAAAJYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAASwAAAUsAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAA== + tiles: RwAAA0cAAAJHAAADRwAAAkcAAABHAAAARwAAA0cAAABkAAAAZAAAAGEAAANhAAACYQAAAR0AAAJhAAADZAAAAEcAAAJHAAABRwAAA0cAAANHAAAARwAAAEcAAAFHAAADZAAAAGQAAABkAAAAHwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAAAYQAAAWEAAANhAAADYQAAA2EAAABkAAAARwAAAkcAAAJHAAAAZAAAADMAAAAzAAAAMwAAADMAAABkAAAAYQAAAmEAAAFhAAAAYQAAAGEAAABhAAACZAAAAEcAAANHAAABRwAAAmQAAAAzAAAAMwAAADMAAAAzAAAAZAAAAGEAAAJhAAAAYQAAAmEAAANhAAADYQAAA2QAAABHAAADRwAAA0cAAABkAAAAFgAAAhYAAAAWAAACFgAAABYAAAMWAAADFgAAAxYAAAAWAAAAFgAAABYAAAEWAAADFgAAARYAAAJkAAAAZAAAAGQAAAAfAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAMWAAACZAAAAFsAAAFaAAACWwAAAFsAAANkAAAAUwAAAGQAAABUAAAAFgAAAxYAAAIWAAACFgAAABsAAAEWAAABFgAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAEWAAAAFgAAAmQAAAAbAAAAFgAAAGQAAABkAAAAFgAAARYAAAIWAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA2QAAABkAAAAZAAAAEcAAAFHAAADZAAAABYAAAIWAAADFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAOgAAADoAAAA6AAACYwAAAGQAAABHAAABRwAAAxYAAAIWAAABFgAAARYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAARwAAAUcAAAFkAAAAFgAAARYAAAIWAAADZAAAAFMAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABHAAADRwAAAEcAAAJUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAARwAAAUcAAABHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAA== -3,2: ind: -3,2 - tiles: aAAAAGgAAABoAAAANwAAADcAAAA3AAAANwAAAGgAAAAsAAAALAAAAGgAAABLAAABSwAAAEsAAAFoAAAASwAAA2gAAABoAAAAaAAAADcAAAA3AAAANwAAADcAAABoAAAALAAAACwAAABoAAAASwAAA0sAAABLAAABaAAAAEsAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAAA3AAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAAASwAAAGgAAABoAAAASwAAA0sAAABLAAADSwAAA0sAAANLAAACSwAAAEsAAAJLAAACSwAAA0sAAABLAAABSwAAAEsAAANLAAABSwAAAksAAAFLAAAASwAAAksAAABLAAACSwAAAEsAAANLAAABSwAAAUsAAAJLAAAASwAAAEsAAAFLAAACSwAAA0sAAAFLAAAASwAAA0sAAABLAAAASwAAA0sAAAJLAAAASwAAAUsAAAFLAAACSwAAAUsAAANLAAABSwAAAUsAAAFLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADaAAAABoAAAJoAAAAGgAAA0sAAABLAAACaAAAAEsAAABLAAADSwAAA2gAAABLAAABSwAAA0sAAANoAAAAGgAAAksAAAIaAAADGgAAAxoAAANLAAADSwAAAGgAAABLAAABSwAAAEsAAANoAAAASwAAAUsAAABLAAADaAAAABoAAANLAAAAGgAAAhoAAAAaAAABSwAAA2gAAABoAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABLAAADaAAAAGgAAAAaAAAAaAAAABoAAAFoAAAAaAAAAEsAAANLAAADSwAAAUsAAABLAAABSwAAAEsAAAJLAAACSwAAAEsAAAJLAAAASwAAA0sAAAFLAAADSwAAAUsAAAJLAAACSwAAAEsAAAJLAAADSwAAA0sAAAFLAAACSwAAAEsAAAJLAAABSwAAAEsAAAFLAAAASwAAA0sAAAFLAAACSwAAAEsAAANLAAAASwAAAksAAANLAAACSwAAAksAAAJLAAAASwAAAEsAAAJLAAACSwAAA0sAAANLAAABSwAAAEsAAAFLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAmgAAABDAAAAQwAAAEMAAABDAAAAQwAAAEMAAABDAAAAQwAAAGgAAABLAAAASwAAA0sAAAFLAAAASwAAAEsAAAFoAAAAQwAAAEMAAABDAAAAQwAAAEMAAABDAAAAQwAAAEMAAABDAAAASwAAAEsAAANLAAABSwAAAw== + tiles: ZAAAAGQAAABkAAAAMwAAADMAAAAzAAAAMwAAAGQAAAAoAAAAKAAAAGQAAABHAAABRwAAAEcAAAFkAAAARwAAA2QAAABkAAAAZAAAADMAAAAzAAAAMwAAADMAAABkAAAAKAAAACgAAABkAAAARwAAA0cAAABHAAABZAAAAEcAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAAAzAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAAARwAAAGQAAABkAAAARwAAA0cAAABHAAADRwAAA0cAAANHAAACRwAAAEcAAAJHAAACRwAAA0cAAABHAAABRwAAAEcAAANHAAABRwAAAkcAAAFHAAAARwAAAkcAAABHAAACRwAAAEcAAANHAAABRwAAAUcAAAJHAAAARwAAAEcAAAFHAAACRwAAA0cAAAFHAAAARwAAA0cAAABHAAAARwAAA0cAAAJHAAAARwAAAUcAAAFHAAACRwAAAUcAAANHAAABRwAAAUcAAAFHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADZAAAABYAAAJkAAAAFgAAA0cAAABHAAACZAAAAEcAAABHAAADRwAAA2QAAABHAAABRwAAA0cAAANkAAAAFgAAAkcAAAIWAAADFgAAAxYAAANHAAADRwAAAGQAAABHAAABRwAAAEcAAANkAAAARwAAAUcAAABHAAADZAAAABYAAANHAAAAFgAAAhYAAAAWAAABRwAAA2QAAABkAAAAZAAAAEcAAAJkAAAAZAAAAGQAAABHAAADZAAAAGQAAAAWAAAAZAAAABYAAAFkAAAAZAAAAEcAAANHAAADRwAAAUcAAABHAAABRwAAAEcAAAJHAAACRwAAAEcAAAJHAAAARwAAA0cAAAFHAAADRwAAAUcAAAJHAAACRwAAAEcAAAJHAAADRwAAA0cAAAFHAAACRwAAAEcAAAJHAAABRwAAAEcAAAFHAAAARwAAA0cAAAFHAAACRwAAAEcAAANHAAAARwAAAkcAAANHAAACRwAAAkcAAAJHAAAARwAAAEcAAAJHAAACRwAAA0cAAANHAAABRwAAAEcAAAFHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAPwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAAARwAAAmQAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAGQAAABHAAAARwAAA0cAAAFHAAAARwAAAEcAAAFkAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAARwAAAEcAAANHAAABRwAAAw== -4,1: ind: -4,1 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAJLAAABSwAAAksAAAJLAAABSwAAAEsAAAFLAAADaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAEsAAABLAAADSwAAASwAAAAsAAAALAAAAEsAAANLAAACSwAAAxoAAAFnAAAAAAAAAGcAAAAAAAAAZwAAAGgAAABLAAABSwAAAksAAAMsAAAALAAAACwAAABLAAABSwAAAUsAAAMaAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAASwAAAksAAANLAAADLAAAACwAAAAsAAAASwAAAksAAANLAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAABSwAAAEsAAAFLAAABSwAAAUsAAAJLAAACSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAA+AAAASwAAAUsAAAJLAAABSwAAAksAAAJLAAAASwAAAEsAAAAaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAPgAAAEsAAAFLAAACLwAAAEsAAAIsAAAASwAAAUsAAABLAAABGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAD4AAAJLAAAASwAAAUsAAAFLAAAASwAAAUsAAAFLAAADSwAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAEsAAANLAAACSwAAA0sAAAFLAAADSwAAA0sAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAGgAAAxoAAAIaAAACGgAAAxoAAAAaAAADGgAAARoAAAAaAAABaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABlAAADZQAAAWUAAABlAAAAZQAAA2UAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAZQAAAGUAAAFlAAACZQAAAmUAAAFlAAACAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGUAAAJlAAABZQAAAGUAAABlAAABZQAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAAJHAAABRwAAAkcAAAJHAAABRwAAAEcAAAFHAAADZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAEcAAABHAAADRwAAASgAAAAoAAAAKAAAAEcAAANHAAACRwAAAxYAAAFjAAAAAAAAAGMAAAAAAAAAYwAAAGQAAABHAAABRwAAAkcAAAMoAAAAKAAAACgAAABHAAABRwAAAUcAAAMWAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAARwAAAkcAAANHAAADKAAAACgAAAAoAAAARwAAAkcAAANHAAAAFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAABRwAAAEcAAAFHAAABRwAAAUcAAAJHAAACRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAA6AAAARwAAAUcAAAJHAAABRwAAAkcAAAJHAAAARwAAAEcAAAAWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAOgAAAEcAAAFHAAACKwAAAEcAAAIoAAAARwAAAUcAAABHAAABFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAADoAAAJHAAAARwAAAUcAAAFHAAAARwAAAUcAAAFHAAADRwAAABYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAEcAAANHAAACRwAAA0cAAAFHAAADRwAAA0cAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAFgAAAxYAAAIWAAACFgAAAxYAAAAWAAADFgAAARYAAAAWAAABZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABhAAADYQAAAWEAAABhAAAAYQAAA2EAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAYQAAAGEAAAFhAAACYQAAAmEAAAFhAAACAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGEAAAJhAAABYQAAAGEAAABhAAABYQAAAA== -4,2: ind: -4,2 - tiles: AAAAAGcAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABXAAAAWAAAAGUAAAFlAAAAZQAAA2UAAANlAAABZQAAAgAAAAAAAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAVwAAAGgAAAAaAAACGgAAABoAAAEaAAABGgAAARoAAAIAAAAAZwAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAANoAAAAAAAAAGcAAABoAAAAaAAAAFcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAEsAAANLAAABSwAAAgAAAAAAAAAAaAAAAGgAAABXAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAACSwAAA0sAAAMAAAAAAAAAAGgAAABoAAAAVwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAWAAAAGgAAABLAAABAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAaAAAAGgAAABXAAAAaAAAAFAAAABQAAAAaAAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAAEsAAAMAAAAAAAAAAGgAAABoAAAAVwAAAGgAAABoAAAAUAAAAGgAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABAAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAUAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAVwAAAGgAAABoAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAUAAAAGgAAABXAAAAaAAAAFcAAABoAAAAaAAAAEsAAAJnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADAAAAAAAAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABnAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAASwAAAw== + tiles: AAAAAGMAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABTAAAAVAAAAGEAAAFhAAAAYQAAA2EAAANhAAABYQAAAgAAAAAAAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAUwAAAGQAAAAWAAACFgAAABYAAAEWAAABFgAAARYAAAIAAAAAYwAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAANkAAAAAAAAAGMAAABkAAAAZAAAAFMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAEcAAANHAAABRwAAAgAAAAAAAAAAZAAAAGQAAABTAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAACRwAAA0cAAAMAAAAAAAAAAGQAAABkAAAAUwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAVAAAAGQAAABHAAABAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAZAAAAGQAAABTAAAAZAAAAEwAAABMAAAAZAAAAGQAAABkAAAATAAAAGQAAABkAAAAZAAAAEcAAAMAAAAAAAAAAGQAAABkAAAAUwAAAGQAAABkAAAATAAAAGQAAABMAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABAAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAATAAAAEwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAUwAAAGQAAABkAAAARwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAATAAAAGQAAABTAAAAZAAAAFMAAABkAAAAZAAAAEcAAAJjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADAAAAAAAAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABjAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAARwAAAw== -4,3: ind: -4,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAASwAAAQAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAEsAAAIAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAANbAAAAWwAAA1sAAAJLAAABZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADWwAAA1sAAAJbAAAASwAAAwAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAlsAAAFbAAADWwAAAEsAAAEAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAABbAAABWwAAA1sAAANLAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAwAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAGgAAABoAAAMaAAAAaAAAAEsAAAEAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAaAAAAEsAAAJLAAABSwAAAEsAAABLAAAAZwAAAGgAAABoAAAAKwAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGgAAABLAAABSwAAAksAAAFLAAACSwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAAUsAAAJLAAABSwAAAksAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAASwAAA2gAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAASwAAAEsAAABLAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAEsAAAJLAAACSwAAA2gAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAAmgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABLAAABSwAAA0sAAANLAAACSwAAAg== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAARwAAAQAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAEcAAAIAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAANXAAAAVwAAA1cAAAJHAAABYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADVwAAA1cAAAJXAAAARwAAAwAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAlcAAAFXAAADVwAAAEcAAAEAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAABXAAABVwAAA1cAAANHAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAwAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAFgAAABYAAAMWAAAAZAAAAEcAAAEAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAZAAAAEcAAAJHAAABRwAAAEcAAABHAAAAYwAAAGQAAABkAAAAJwAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGQAAABHAAABRwAAAkcAAAFHAAACRwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAABkAAAARwAAAUcAAAJHAAABRwAAAkcAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAARwAAA2QAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAARwAAAEcAAABHAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAEcAAAJHAAACRwAAA2QAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABkAAAARwAAAmQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABHAAABRwAAA0cAAANHAAACRwAAAg== -3,3: ind: -3,3 - tiles: SwAAAEsAAAFoAAAAQwAAAEMAAABDAAAAQwAAAEMAAABDAAAAQwAAAEMAAABoAAAASwAAAUsAAABLAAACSwAAAEsAAANLAAACaAAAAEMAAABDAAAAQwAAAEMAAABDAAAAQwAAAEMAAABDAAAAaAAAAEsAAAFLAAADSwAAAUsAAABLAAADSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAA2gAAAAaAAACaAAAAGgAAABLAAACSwAAA0sAAANLAAACSwAAA0sAAAEaAAABGgAAAWgAAABoAAAAGgAAABoAAAIaAAAAGgAAABoAAABoAAAASwAAA0sAAABLAAABSwAAA0sAAAJLAAADGgAAAxoAAABoAAAAaAAAAGgAAABoAAAAQAAAAGgAAABoAAAAaAAAAEsAAAJLAAADSwAAA0sAAAJLAAACSwAAAxoAAAMaAAACaAAAAGgAAABAAAAAQAAAAEAAAABAAAAAQAAAAGgAAABLAAADSwAAAUsAAAFLAAACSwAAAEsAAAMaAAADGgAAAWgAAABoAAAAQAAAAEAAAABAAAAAQAAAAEAAAABoAAAASwAAAEsAAANLAAADSwAAAEsAAAJLAAAAaAAAAGgAAABoAAAAaAAAAEAAAABAAAAAQAAAAEAAAABAAAAAaAAAAEMAAABoAAAAaAAAAGgAAABLAAABSwAAA0sAAANLAAADaAAAAGgAAABAAAAAQAAAAEAAAABAAAAAQAAAAGgAAABDAAAAQwAAAEMAAABDAAAASwAAAUsAAABLAAABSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQwAAAEMAAABDAAAAQwAAAEsAAAFLAAACSwAAAUsAAAJoAAAAaAAAAEsAAANoAAAASwAAAEMAAABDAAAAaAAAAEMAAABDAAAAQwAAAEMAAABoAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAASwAAAmgAAABDAAAAQwAAACkAAABDAAAAQwAAAEMAAABDAAAASwAAAEsAAANLAAACaAAAACkAAABoAAAASwAAAWgAAABLAAACQwAAAEMAAABoAAAAQwAAAEMAAABDAAAAQwAAAEsAAAJLAAADSwAAAWgAAAApAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAWgAAABoAAAAKQAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAASwAAAksAAAFLAAACKQAAACkAAABoAAAAAAAAAAAAAABnAAAAZwAAAAAAAABnAAAAaAAAAGcAAABnAAAAZwAAAA== + tiles: RwAAAEcAAAFkAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAABkAAAARwAAAUcAAABHAAACRwAAAEcAAANHAAACZAAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAZAAAAEcAAAFHAAADRwAAAUcAAABHAAADRwAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAA2QAAAAWAAACZAAAAGQAAABHAAACRwAAA0cAAANHAAACRwAAA0cAAAEWAAABFgAAAWQAAABkAAAAFgAAABYAAAIWAAAAFgAAABYAAABkAAAARwAAA0cAAABHAAABRwAAA0cAAAJHAAADFgAAAxYAAABkAAAAZAAAAGQAAABkAAAAPAAAAGQAAABkAAAAZAAAAEcAAAJHAAADRwAAA0cAAAJHAAACRwAAAxYAAAMWAAACZAAAAGQAAAA8AAAAPAAAADwAAAA8AAAAPAAAAGQAAABHAAADRwAAAUcAAAFHAAACRwAAAEcAAAMWAAADFgAAAWQAAABkAAAAPAAAADwAAAA8AAAAPAAAADwAAABkAAAARwAAAEcAAANHAAADRwAAAEcAAAJHAAAAZAAAAGQAAABkAAAAZAAAADwAAAA8AAAAPAAAADwAAAA8AAAAZAAAAD8AAABkAAAAZAAAAGQAAABHAAABRwAAA0cAAANHAAADZAAAAGQAAAA8AAAAPAAAADwAAAA8AAAAPAAAAGQAAAA/AAAAPwAAAD8AAAA/AAAARwAAAUcAAABHAAABRwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAPwAAAD8AAAA/AAAAPwAAAEcAAAFHAAACRwAAAUcAAAJkAAAAZAAAAEcAAANkAAAARwAAAD8AAAA/AAAAZAAAAD8AAAA/AAAAPwAAAD8AAABkAAAARwAAAmQAAABkAAAAZAAAAGQAAABkAAAARwAAAmQAAAA/AAAAPwAAACUAAAA/AAAAPwAAAD8AAAA/AAAARwAAAEcAAANHAAACZAAAACUAAABkAAAARwAAAWQAAABHAAACPwAAAD8AAABkAAAAPwAAAD8AAAA/AAAAPwAAAEcAAAJHAAADRwAAAWQAAAAlAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAWQAAABkAAAAJQAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAARwAAAkcAAAFHAAACJQAAACUAAABkAAAAAAAAAAAAAABjAAAAYwAAAAAAAABjAAAAZAAAAGMAAABjAAAAYwAAAA== -2,3: ind: -2,3 - tiles: SwAAAUsAAABLAAACGgAAAGgAAAAaAAABGgAAAhoAAAMaAAAAGgAAAhoAAAFoAAAAZwAAAAAAAAAAAAAAAAAAAEsAAAFLAAABSwAAAhoAAAFoAAAAGgAAABoAAAIaAAABGgAAAhoAAAEaAAACaAAAAGcAAAAAAAAAAAAAAAAAAABLAAACSwAAAksAAAIaAAABGgAAARoAAAIaAAACGgAAAxoAAAIaAAAAGgAAA2gAAABnAAAAAAAAAAAAAAAAAAAASwAAA0sAAABLAAABGgAAAmgAAAAaAAADGgAAAxoAAAIaAAACGgAAAxoAAAFoAAAAZwAAAAAAAAAAAAAAAAAAAEsAAABLAAABSwAAAhoAAABoAAAAGgAAAhoAAAEaAAABGgAAABoAAAAaAAAAaAAAAGcAAAAAAAAAAAAAAAAAAABLAAACSwAAAUsAAANoAAAAaAAAAGgAAABlAAACZQAAAmUAAANlAAABZQAAAmgAAABoAAAAAAAAAAAAAAAAAAAASwAAAksAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAQwAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABDAAAAQwAAAEMAAABDAAAAQwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAEMAAABDAAAAQwAAAEMAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEMAAABDAAAAQwAAAEMAAABDAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABDAAAAQwAAAEMAAABDAAAAQwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAEMAAABDAAAAQwAAAEMAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: RwAAAUcAAABHAAACFgAAAGQAAAAWAAABFgAAAhYAAAMWAAAAFgAAAhYAAAFkAAAAYwAAAAAAAAAAAAAAAAAAAEcAAAFHAAABRwAAAhYAAAFkAAAAFgAAABYAAAIWAAABFgAAAhYAAAEWAAACZAAAAGMAAAAAAAAAAAAAAAAAAABHAAACRwAAAkcAAAIWAAABFgAAARYAAAIWAAACFgAAAxYAAAIWAAAAFgAAA2QAAABjAAAAAAAAAAAAAAAAAAAARwAAA0cAAABHAAABFgAAAmQAAAAWAAADFgAAAxYAAAIWAAACFgAAAxYAAAFkAAAAYwAAAAAAAAAAAAAAAAAAAEcAAABHAAABRwAAAhYAAABkAAAAFgAAAhYAAAEWAAABFgAAABYAAAAWAAAAZAAAAGMAAAAAAAAAAAAAAAAAAABHAAACRwAAAUcAAANkAAAAZAAAAGQAAABhAAACYQAAAmEAAANhAAABYQAAAmQAAABkAAAAAAAAAAAAAAAAAAAARwAAAkcAAABHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAPwAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,4: ind: -3,4 - tiles: SwAAAUsAAAFLAAAAKQAAACkAAABoAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAACSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAUsAAAA2AAAANgAAAGgAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAABLAAABNgAAADYAAABoAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAADQAAAA0AAAANAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAA0AAAANAAAADQAAABoAAAAAAAAAAAAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: RwAAAUcAAAFHAAAAJQAAACUAAABkAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAACRwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAUcAAAAyAAAAMgAAAGQAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAABHAAABMgAAADIAAABkAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAADAAAAAwAAAAMAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAwAAAAMAAAADAAAABkAAAAAAAAAAAAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -4,4: ind: -4,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABLAAABSwAAAUsAAAFLAAAASwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABoAAAASwAAA0sAAANLAAADSwAAAEsAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAEsAAANLAAABSwAAA0sAAANLAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABLAAAASwAAA0sAAABLAAACSwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAADQAAAA0AAAANAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGgAAAA0AAAANAAAADQAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABHAAABRwAAAUcAAAFHAAAARwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABkAAAARwAAA0cAAANHAAADRwAAAEcAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAEcAAANHAAABRwAAA0cAAANHAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABHAAAARwAAA0cAAABHAAACRwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAADAAAAAwAAAAMAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAGQAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,2: ind: -1,2 - tiles: GgAAARoAAAMaAAABNwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAABoAAAAaAAABGgAAAB8AAAIaAAADZQAAABoAAAMaAAABaAAAADcAAABlAAADZQAAA2UAAAFlAAAAZQAAAjcAAABoAAAAGgAAABoAAANoAAAAGgAAA2UAAAAaAAAAGgAAAWgAAAA3AAAAZQAAASoAAAIqAAACKgAAA2UAAAE3AAAAaAAAABoAAAEaAAACaAAAAGgAAAAaAAABGgAAAxoAAAFoAAAANwAAAGUAAAJlAAACZQAAAmUAAABlAAAANwAAAGgAAAAaAAAAGgAAAWgAAABlAAABZQAAAxoAAAIaAAABaAAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAABoAAAAGgAAAxoAAANoAAAAaAAAAGgAAAAaAAADGgAAAmgAAABoAAAAaAAAABoAAAIaAAACGgAAAGgAAABoAAAAaAAAABoAAAEaAAADGgAAA1cAAABoAAAAGgAAABoAAAAaAAACGgAAA2gAAABoAAAAGgAAAWgAAABoAAAAGgAAABoAAAMaAAAAGgAAA2gAAABXAAAAaAAAABoAAAMaAAADGgAAAxoAAAAaAAADGgAAARoAAAAaAAADGgAAARoAAAMaAAADGgAAAxoAAAJoAAAAaAAAAGgAAAAaAAACGgAAAB8AAAMaAAAAGgAAAhoAAAMaAAAAGgAAAhoAAAAaAAADHwAAARoAAAEaAAAAaAAAAGgAAABoAAAAGgAAAhoAAAMaAAAAGgAAAhoAAAAsAAAALAAAACwAAAAaAAADGgAAAxoAAAIaAAABGgAAA2gAAABoAAAAaAAAAGgAAAAaAAABGgAAARoAAAIaAAACGgAAABoAAAEaAAACGgAAABoAAAIaAAACGgAAAGgAAABoAAAAZwAAAGcAAABoAAAAGgAAABoAAAIaAAAAGgAAAhoAAAEfAAADGgAAAxoAAAIaAAACGgAAAhoAAAJoAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAGgAAARoAAAIaAAADGgAAAhoAAAEaAAADGgAAAWgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAaAAAABoAAAEaAAACGgAAAxoAAAEaAAACGgAAAxoAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAAAaAAACGgAAARoAAAMaAAADGgAAAxoAAAIaAAADaAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAZwAAAA== + tiles: FgAAARYAAAMWAAABMwAAADMAAAAzAAAAMwAAADMAAAAzAAAAMwAAABYAAAAWAAABFgAAABsAAAIWAAADYQAAABYAAAMWAAABZAAAADMAAABhAAADYQAAA2EAAAFhAAAAYQAAAjMAAABkAAAAFgAAABYAAANkAAAAFgAAA2EAAAAWAAAAFgAAAWQAAAAzAAAAYQAAASYAAAImAAACJgAAA2EAAAEzAAAAZAAAABYAAAEWAAACZAAAAGQAAAAWAAABFgAAAxYAAAFkAAAAMwAAAGEAAAJhAAACYQAAAmEAAABhAAAAMwAAAGQAAAAWAAAAFgAAAWQAAABhAAABYQAAAxYAAAIWAAABZAAAADMAAAAzAAAAMwAAADMAAAAzAAAAMwAAADMAAABkAAAAFgAAAxYAAANkAAAAZAAAAGQAAAAWAAADFgAAAmQAAABkAAAAZAAAABYAAAIWAAACFgAAAGQAAABkAAAAZAAAABYAAAEWAAADFgAAA1MAAABkAAAAFgAAABYAAAAWAAACFgAAA2QAAABkAAAAFgAAAWQAAABkAAAAFgAAABYAAAMWAAAAFgAAA2QAAABTAAAAZAAAABYAAAMWAAADFgAAAxYAAAAWAAADFgAAARYAAAAWAAADFgAAARYAAAMWAAADFgAAAxYAAAJkAAAAZAAAAGQAAAAWAAACFgAAABsAAAMWAAAAFgAAAhYAAAMWAAAAFgAAAhYAAAAWAAADGwAAARYAAAEWAAAAZAAAAGQAAABkAAAAFgAAAhYAAAMWAAAAFgAAAhYAAAAoAAAAKAAAACgAAAAWAAADFgAAAxYAAAIWAAABFgAAA2QAAABkAAAAZAAAAGQAAAAWAAABFgAAARYAAAIWAAACFgAAABYAAAEWAAACFgAAABYAAAIWAAACFgAAAGQAAABkAAAAYwAAAGMAAABkAAAAFgAAABYAAAIWAAAAFgAAAhYAAAEbAAADFgAAAxYAAAIWAAACFgAAAhYAAAJkAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAFgAAARYAAAIWAAADFgAAAhYAAAEWAAADFgAAAWQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAZAAAABYAAAEWAAACFgAAAxYAAAEWAAACFgAAAxYAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAAAWAAACFgAAARYAAAMWAAADFgAAAxYAAAIWAAADZAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAYwAAAA== 0,2: ind: 0,2 - tiles: ZQAAAWUAAABlAAADZQAAAmUAAANlAAAAaAAAAEsAAANLAAACSwAAAEsAAAJLAAAAaAAAAAAAAABnAAAAaAAAAGUAAABlAAABZQAAAmUAAAJlAAACZQAAASMAAABLAAADSwAAAksAAABLAAAASwAAA2gAAAAAAAAAZwAAAGgAAABoAAAAaAAAABoAAAIaAAADGgAAARoAAABoAAAASwAAAksAAANLAAACSwAAA0sAAABoAAAAAAAAAGcAAABoAAAAZQAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAADSwAAAUsAAABLAAABaAAAAGcAAABnAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAEsAAAJoAAAAaAAAAGgAAAAAAAAAZwAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABLAAABaAAAAGcAAABnAAAAAAAAAGcAAABoAAAAaAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAmgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAAAAAAAAAAAAAGgAAABLAAADSwAAAEsAAANLAAADSwAAA0sAAABLAAAASwAAA0sAAAJoAAAAZwAAAGgAAABoAAAAAAAAAGgAAABoAAAAaAAAABoAAAFoAAAAaAAAAGgAAABLAAABaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGcAAABoAAAAGgAAARoAAAMaAAABGgAAAhoAAANoAAAASwAAAUsAAABLAAAAaAAAAGgAAABnAAAAaAAAAGcAAAAAAAAAaAAAABoAAAIwAAAAMAAAADAAAAAaAAAAaAAAAEsAAABLAAAASwAAAGgAAABoAAAAZwAAAGgAAAAAAAAAAAAAAGgAAAAaAAACMAAAABoAAAAwAAAAGgAAAWgAAABXAAAAVwAAAFcAAABoAAAAaAAAAGcAAABoAAAAAAAAAAAAAABoAAAAGgAAADAAAAAwAAAAMAAAABoAAAFoAAAAVwAAAFcAAABXAAAAaAAAAAAAAABnAAAAaAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAAAAAAAAZwAAAGgAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAA== + tiles: YQAAAWEAAABhAAADYQAAAmEAAANhAAAAZAAAAEcAAANHAAACRwAAAEcAAAJHAAAAZAAAAAAAAABjAAAAZAAAAGEAAABhAAABYQAAAmEAAAJhAAACYQAAAR8AAABHAAADRwAAAkcAAABHAAAARwAAA2QAAAAAAAAAYwAAAGQAAABkAAAAZAAAABYAAAIWAAADFgAAARYAAABkAAAARwAAAkcAAANHAAACRwAAA0cAAABkAAAAAAAAAGMAAABkAAAAYQAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAADRwAAAUcAAABHAAABZAAAAGMAAABjAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAEcAAAJkAAAAZAAAAGQAAAAAAAAAYwAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABHAAABZAAAAGMAAABjAAAAAAAAAGMAAABkAAAAZAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAmQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAAAAAAAAAAAAAGQAAABHAAADRwAAAEcAAANHAAADRwAAA0cAAABHAAAARwAAA0cAAAJkAAAAYwAAAGQAAABkAAAAAAAAAGQAAABkAAAAZAAAABYAAAFkAAAAZAAAAGQAAABHAAABZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGMAAABkAAAAFgAAARYAAAMWAAABFgAAAhYAAANkAAAARwAAAUcAAABHAAAAZAAAAGQAAABjAAAAZAAAAGMAAAAAAAAAZAAAABYAAAIsAAAALAAAACwAAAAWAAAAZAAAAEcAAABHAAAARwAAAGQAAABkAAAAYwAAAGQAAAAAAAAAAAAAAGQAAAAWAAACLAAAABYAAAAsAAAAFgAAAWQAAABTAAAAUwAAAFMAAABkAAAAZAAAAGMAAABkAAAAAAAAAAAAAABkAAAAFgAAACwAAAAsAAAALAAAABYAAAFkAAAAUwAAAFMAAABTAAAAZAAAAAAAAABjAAAAZAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAGQAAAAAAAAAYwAAAGQAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAABkAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAA== -1,3: ind: -1,3 - tiles: AAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGgAAABoAAAAGgAAAWgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAIaAAAAGgAAAg== + tiles: AAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGQAAABkAAAAFgAAAWQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAIWAAAAFgAAAg== 1,1: ind: 1,1 - tiles: aAAAAGQAAABkAAACaAAAABoAAAAaAAADGgAAAhoAAANoAAAAZQAAAWUAAAJlAAAAZQAAA2UAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAhoAAAMaAAADaAAAAGgAAABoAAAAaAAAABoAAANoAAAAaAAAAEsAAABoAAAAZAAAAmQAAAJkAAADZAAAAksAAAFLAAADSwAAAUsAAABLAAABGgAAAxoAAAMaAAACGgAAAhoAAAMaAAADaAAAAGQAAAJkAAAAZAAAAWQAAABLAAADSwAAAEsAAANLAAACSwAAARoAAAEaAAABGgAAABoAAAAaAAADGgAAAhoAAAMaAAABGgAAAUsAAANLAAABSwAAA0sAAAJLAAADSwAAA0sAAAIaAAABGgAAAhoAAAMaAAAAGgAAABoAAAMaAAACGgAAARoAAAFLAAABSwAAAEsAAAJLAAACSwAAAEsAAAFLAAABWwAAAR8AAAMfAAAAHwAAAz4AAAI+AAABGgAAARoAAAIaAAAASwAAA0sAAABLAAAASwAAAUsAAAFLAAADSwAAA2gAAAAfAAABHwAAAB8AAAA+AAABPgAAARoAAAEaAAACGgAAAUsAAAFLAAADSwAAA0sAAAFLAAADSwAAA0sAAANoAAAAHwAAAR8AAAAfAAABPgAAAj4AAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAASwAAA0sAAAJLAAABSwAAAEsAAAFLAAACSwAAAEsAAAFLAAABaAAAAFsAAAJeAAADEQAAABEAAABoAAAAVwAAAEsAAAJLAAAASwAAA0sAAAJLAAAASwAAAEsAAAFLAAACSwAAAlsAAAJbAAABXwAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAksAAAJLAAAASwAAA0sAAABLAAADSwAAAksAAANoAAAAWwAAAV8AAAFoAAAAEQAAAGgAAAARAAAAaAAAAGgAAABYAAAAaAAAAGgAAABLAAAASwAAAUsAAAFoAAAAaAAAAFsAAANeAAACaAAAABEAAABoAAAAEQAAAGgAAABoAAAAVwAAAGgAAABoAAAASwAAA0sAAAJLAAABaAAAAFsAAANbAAADXwAAAF4AAAJfAAAAXwAAAF4AAAFoAAAAaAAAAFcAAABoAAAAWAAAAEsAAAFLAAABSwAAAmgAAABbAAADWwAAAl4AAABfAAABXgAAA14AAANfAAACaAAAAGgAAABXAAAAaAAAAGgAAABLAAACSwAAAUsAAAFoAAAAWwAAAFsAAANbAAABaAAAAFsAAABbAAABWwAAAQ== + tiles: ZAAAAGAAAABgAAACZAAAABYAAAAWAAADFgAAAhYAAANkAAAAYQAAAWEAAAJhAAAAYQAAA2EAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAhYAAAMWAAADZAAAAGQAAABkAAAAZAAAABYAAANkAAAAZAAAAEcAAABkAAAAYAAAAmAAAAJgAAADYAAAAkcAAAFHAAADRwAAAUcAAABHAAABFgAAAxYAAAMWAAACFgAAAhYAAAMWAAADZAAAAGAAAAJgAAAAYAAAAWAAAABHAAADRwAAAEcAAANHAAACRwAAARYAAAEWAAABFgAAABYAAAAWAAADFgAAAhYAAAMWAAABFgAAAUcAAANHAAABRwAAA0cAAAJHAAADRwAAA0cAAAIWAAABFgAAAhYAAAMWAAAAFgAAABYAAAMWAAACFgAAARYAAAFHAAABRwAAAEcAAAJHAAACRwAAAEcAAAFHAAABVwAAARsAAAMbAAAAGwAAAzoAAAI6AAABFgAAARYAAAIWAAAARwAAA0cAAABHAAAARwAAAUcAAAFHAAADRwAAA2QAAAAbAAABGwAAABsAAAA6AAABOgAAARYAAAEWAAACFgAAAUcAAAFHAAADRwAAA0cAAAFHAAADRwAAA0cAAANkAAAAGwAAARsAAAAbAAABOgAAAjoAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAARwAAA0cAAAJHAAABRwAAAEcAAAFHAAACRwAAAEcAAAFHAAABZAAAAFcAAAJaAAADDQAAAA0AAABkAAAAUwAAAEcAAAJHAAAARwAAA0cAAAJHAAAARwAAAEcAAAFHAAACRwAAAlcAAAJXAAABWwAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAkcAAAJHAAAARwAAA0cAAABHAAADRwAAAkcAAANkAAAAVwAAAVsAAAFkAAAADQAAAGQAAAANAAAAZAAAAGQAAABUAAAAZAAAAGQAAABHAAAARwAAAUcAAAFkAAAAZAAAAFcAAANaAAACZAAAAA0AAABkAAAADQAAAGQAAABkAAAAUwAAAGQAAABkAAAARwAAA0cAAAJHAAABZAAAAFcAAANXAAADWwAAAFoAAAJbAAAAWwAAAFoAAAFkAAAAZAAAAFMAAABkAAAAVAAAAEcAAAFHAAABRwAAAmQAAABXAAADVwAAAloAAABbAAABWgAAA1oAAANbAAACZAAAAGQAAABTAAAAZAAAAGQAAABHAAACRwAAAUcAAAFkAAAAVwAAAFcAAANXAAABZAAAAFcAAABXAAABVwAAAQ== 1,2: ind: 1,2 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAA0sAAAFoAAAAaAAAAFsAAANoAAAAaAAAAGgAAABoAAAAaAAAADcAAAA3AAAANwAAADcAAABLAAAASwAAA0sAAANLAAADSwAAA0sAAAJLAAACSwAAAWgAAABSAAACUgAAAVIAAAM3AAAANwAAADcAAABoAAAASwAAAUsAAAJLAAACSwAAAksAAAFLAAACSwAAA0sAAAJoAAAAUgAAAVIAAAFSAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAAASwAAAksAAAFLAAACSwAAAUsAAABLAAACaAAAAEsAAAFLAAACSwAAAGUAAABlAAABZQAAAmUAAABLAAADSwAAAksAAANLAAABSwAAAEsAAABLAAAASwAAAUsAAAFLAAABSwAAAksAAAFlAAACZQAAA2UAAAFoAAAASwAAAksAAABLAAABSwAAAEsAAANLAAABSwAAAksAAAJLAAABSwAAAUsAAAJLAAADaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAUsAAAFLAAABSwAAAUsAAABLAAAAaAAAAEsAAANLAAAASwAAA2UAAAFlAAABZQAAAWUAAANLAAAASwAAAksAAANLAAADSwAAAEsAAAFLAAAASwAAAWgAAABSAAAAUgAAA1IAAABlAAACZQAAAmUAAAFoAAAASwAAAksAAAFLAAABSwAAAksAAAJLAAABSwAAA0sAAAFoAAAAaAAAACkAAABoAAAAaAAAAGgAAABoAAAAaAAAADYAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAACkAAAApAAAAKQAAAFcAAABoAAAANgAAADYAAAA2AAAANgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAApAAAAKQAAACkAAABoAAAAWAAAADYAAAA2AAAANgAAADYAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAA2AAAANgAAADYAAAA2AAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAA0cAAAFkAAAAZAAAAFcAAANkAAAAZAAAAGQAAABkAAAAZAAAADMAAAAzAAAAMwAAADMAAABHAAAARwAAA0cAAANHAAADRwAAA0cAAAJHAAACRwAAAWQAAABOAAACTgAAAU4AAAMzAAAAMwAAADMAAABkAAAARwAAAUcAAAJHAAACRwAAAkcAAAFHAAACRwAAA0cAAAJkAAAATgAAAU4AAAFOAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAAARwAAAkcAAAFHAAACRwAAAUcAAABHAAACZAAAAEcAAAFHAAACRwAAAGEAAABhAAABYQAAAmEAAABHAAADRwAAAkcAAANHAAABRwAAAEcAAABHAAAARwAAAUcAAAFHAAABRwAAAkcAAAFhAAACYQAAA2EAAAFkAAAARwAAAkcAAABHAAABRwAAAEcAAANHAAABRwAAAkcAAAJHAAABRwAAAUcAAAJHAAADZAAAAGQAAABkAAAAZAAAAEcAAABHAAAARwAAAUcAAAFHAAABRwAAAUcAAABHAAAAZAAAAEcAAANHAAAARwAAA2EAAAFhAAABYQAAAWEAAANHAAAARwAAAkcAAANHAAADRwAAAEcAAAFHAAAARwAAAWQAAABOAAAATgAAA04AAABhAAACYQAAAmEAAAFkAAAARwAAAkcAAAFHAAABRwAAAkcAAAJHAAABRwAAA0cAAAFkAAAAZAAAACUAAABkAAAAZAAAAGQAAABkAAAAZAAAADIAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAACUAAAAlAAAAJQAAAFMAAABkAAAAMgAAADIAAAAyAAAAMgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAlAAAAJQAAACUAAABkAAAAVAAAADIAAAAyAAAAMgAAADIAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAyAAAAMgAAADIAAAAyAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAUwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAFMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAA== 2,2: ind: 2,2 - tiles: aAAAAEAAAABoAAAAGgAAAiEAAAIhAAAAIQAAACEAAAIhAAAAIQAAAyEAAAIaAAACaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAACEAAAAhAAADGgAAABoAAAEaAAABGgAAARoAAAIhAAACIQAAAGgAAABLAAAAGgAAA2gAAABSAAAAUgAAAmgAAAAhAAABGgAAAhoAAAIaAAADGgAAABoAAAIaAAADGgAAACEAAAEaAAABGgAAAUsAAANoAAAASwAAAEsAAAJLAAACIQAAABoAAAAaAAABGgAAAxoAAAIaAAADGgAAAhoAAAIhAAABaAAAAEsAAAAaAAACaAAAAEsAAAFLAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACSwAAAWgAAABLAAACSwAAAmgAAAAaAAABZQAAAWUAAANlAAABZQAAA2UAAANlAAABZQAAA2UAAAJoAAAASwAAABoAAANoAAAASwAAAksAAAAaAAABGgAAAWUAAABlAAACZQAAAmUAAANlAAAAZQAAAWUAAAJlAAABGgAAAhoAAAJLAAADaAAAAFIAAAJSAAAAaAAAABoAAABlAAABZQAAAWUAAAJlAAAAZQAAA2UAAABlAAABZQAAAGgAAABLAAACGgAAA2gAAABoAAAAaAAAAGgAAAAaAAADZQAAAWUAAABlAAABZQAAAGUAAAFlAAAAZQAAAWUAAAFoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABoAAAAGgAAAWUAAABlAAAAZQAAAmUAAAJlAAABZQAAA2UAAAMaAAACSwAAAUsAAABLAAABaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAGgAAABoAAAAZQAAAmgAAABlAAADZQAAAmUAAANoAAAAZQAAAGgAAABlAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAmgAAABoAAAAZQAAAmUAAANoAAAAaAAAAGUAAAFlAAACaAAAAGgAAABoAAAAaAAAAGUAAAFlAAADZQAAAGgAAABlAAABaAAAAGgAAABlAAABZQAAAWgAAABlAAABaAAAAGUAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAA== + tiles: ZAAAADwAAABkAAAAFgAAAh0AAAIdAAAAHQAAAB0AAAIdAAAAHQAAAx0AAAIWAAACZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAB0AAAAdAAADFgAAABYAAAEWAAABFgAAARYAAAIdAAACHQAAAGQAAABHAAAAFgAAA2QAAABOAAAATgAAAmQAAAAdAAABFgAAAhYAAAIWAAADFgAAABYAAAIWAAADFgAAAB0AAAEWAAABFgAAAUcAAANkAAAARwAAAEcAAAJHAAACHQAAABYAAAAWAAABFgAAAxYAAAIWAAADFgAAAhYAAAIdAAABZAAAAEcAAAAWAAACZAAAAEcAAAFHAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACRwAAAWQAAABHAAACRwAAAmQAAAAWAAABYQAAAWEAAANhAAABYQAAA2EAAANhAAABYQAAA2EAAAJkAAAARwAAABYAAANkAAAARwAAAkcAAAAWAAABFgAAAWEAAABhAAACYQAAAmEAAANhAAAAYQAAAWEAAAJhAAABFgAAAhYAAAJHAAADZAAAAE4AAAJOAAAAZAAAABYAAABhAAABYQAAAWEAAAJhAAAAYQAAA2EAAABhAAABYQAAAGQAAABHAAACFgAAA2QAAABkAAAAZAAAAGQAAAAWAAADYQAAAWEAAABhAAABYQAAAGEAAAFhAAAAYQAAAWEAAAFkAAAAZAAAAEcAAABkAAAAZAAAAGQAAABkAAAAFgAAAWEAAABhAAAAYQAAAmEAAAJhAAABYQAAA2EAAAMWAAACRwAAAUcAAABHAAABZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAAGQAAABkAAAAYQAAAmQAAABhAAADYQAAAmEAAANkAAAAYQAAAGQAAABhAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAAmQAAABkAAAAYQAAAmEAAANkAAAAZAAAAGEAAAFhAAACZAAAAGQAAABkAAAAZAAAAGEAAAFhAAADYQAAAGQAAABhAAABZAAAAGQAAABhAAABYQAAAWQAAABhAAABZAAAAGEAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAA== 2,1: ind: 2,1 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAAAaAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAABoAAAMaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAGgAAABQAAAAUAAAAGgAAAA+AAADaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAFcAAABXAAAAUAAAAFAAAABoAAAAPgAAAmgAAABXAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABXAAAAVwAAAFAAAABXAAAAaAAAAD4AAANoAAAAVwAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAUAAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAwAAAAMAAAADAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAMAAAADAAAAAwAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAADAAAAAwAAAAMAAABoAAAAaAAAAF4AAANfAAADaAAAACYAAAAmAAAAJgAAACYAAAAmAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAANfAAAAXgAAAmgAAAAmAAAAJgAAACYAAAAmAAAAJgAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAXwAAAV8AAAFoAAAAJgAAACYAAAAmAAAAJgAAACYAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAAAWAAAAFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAABYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAABYAAAMWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAGQAAABMAAAATAAAAGQAAAA6AAADZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAFMAAABTAAAATAAAAEwAAABkAAAAOgAAAmQAAABTAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABTAAAAUwAAAEwAAABTAAAAZAAAADoAAANkAAAAUwAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAATAAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAwAAAAMAAAADAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAMAAAADAAAAAwAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAADAAAAAwAAAAMAAABkAAAAZAAAAFoAAANbAAADZAAAACIAAAAiAAAAIgAAACIAAAAiAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAANbAAAAWgAAAmQAAAAiAAAAIgAAACIAAAAiAAAAIgAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABkAAAAWwAAAVsAAAFkAAAAIgAAACIAAAAiAAAAIgAAACIAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== 1,0: ind: 1,0 - tiles: SwAAAksAAANLAAAASwAAAEsAAAFLAAACaAAAAGUAAABlAAACZQAAAWUAAAJLAAABaAAAAEsAAAFLAAABSwAAA0sAAAJLAAACSwAAAksAAAJLAAACSwAAA2gAAABlAAADZQAAAmUAAAFlAAACSwAAAksAAAFLAAAASwAAAUsAAAFLAAACSwAAAksAAAFLAAABSwAAAksAAAJoAAAAZQAAAWUAAANlAAAAZQAAA0sAAAJoAAAASwAAAksAAABLAAABaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAAaAAABWwAAAlsAAANbAAABWwAAA1sAAANbAAAAGgAAAhoAAANXAAAAVwAAAGgAAABoAAAAaAAAABoAAAAaAAACGgAAA1sAAAFbAAABWwAAAlsAAABbAAABWwAAAhoAAAAaAAACaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABGgAAARoAAAJbAAADWwAAAksAAABLAAAASwAAAlsAAABoAAAAGgAAARoAAAAaAAACGgAAAxoAAAAaAAAAGgAAAhoAAAAaAAAAWwAAAFsAAAJLAAAASwAAA0sAAAFbAAABaAAAAGgAAAAaAAABGgAAAxoAAAMaAAAAGgAAABoAAAMaAAAAGgAAAVsAAAFbAAACWwAAAlsAAAFbAAAAWwAAAWgAAAAaAAADGgAAARoAAAMaAAACGgAAABoAAAAaAAADGgAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAGgAAAhoAAAIaAAACaAAAAGUAAAFlAAACZQAAAGUAAANlAAADaAAAAGgAAABoAAAAZAAAAVcAAABoAAAAGgAAAhoAAAIaAAACGgAAA2gAAABlAAABZQAAAWUAAABlAAACZQAAAWgAAAASAAAAGgAAAhoAAAIaAAABGgAAAhoAAAAaAAACGgAAAxoAAAJoAAAAZQAAA2UAAAJlAAACZQAAA2UAAAJoAAAAEgAAAA== + tiles: RwAAAkcAAANHAAAARwAAAEcAAAFHAAACZAAAAGEAAABhAAACYQAAAWEAAAJHAAABZAAAAEcAAAFHAAABRwAAA0cAAAJHAAACRwAAAkcAAAJHAAACRwAAA2QAAABhAAADYQAAAmEAAAFhAAACRwAAAkcAAAFHAAAARwAAAUcAAAFHAAACRwAAAkcAAAFHAAABRwAAAkcAAAJkAAAAYQAAAWEAAANhAAAAYQAAA0cAAAJkAAAARwAAAkcAAABHAAABZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAUwAAAGQAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAABYAAAAWAAABVwAAAlcAAANXAAABVwAAA1cAAANXAAAAFgAAAhYAAANTAAAAUwAAAGQAAABkAAAAZAAAABYAAAAWAAACFgAAA1cAAAFXAAABVwAAAlcAAABXAAABVwAAAhYAAAAWAAACZAAAAGQAAABkAAAAZAAAAGQAAAAWAAABFgAAARYAAAJXAAADVwAAAkcAAABHAAAARwAAAlcAAABkAAAAFgAAARYAAAAWAAACFgAAAxYAAAAWAAAAFgAAAhYAAAAWAAAAVwAAAFcAAAJHAAAARwAAA0cAAAFXAAABZAAAAGQAAAAWAAABFgAAAxYAAAMWAAAAFgAAABYAAAMWAAAAFgAAAVcAAAFXAAACVwAAAlcAAAFXAAAAVwAAAWQAAAAWAAADFgAAARYAAAMWAAACFgAAABYAAAAWAAADFgAAABYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAFgAAAhYAAAIWAAACZAAAAGEAAAFhAAACYQAAAGEAAANhAAADZAAAAGQAAABkAAAAYAAAAVMAAABkAAAAFgAAAhYAAAIWAAACFgAAA2QAAABhAAABYQAAAWEAAABhAAACYQAAAWQAAAAOAAAAFgAAAhYAAAIWAAABFgAAAhYAAAAWAAACFgAAAxYAAAJkAAAAYQAAA2EAAAJhAAACYQAAA2EAAAJkAAAADgAAAA== 1,-1: ind: 1,-1 - tiles: ZwAAAGgAAAAaAAAAGgAAARoAAAEaAAACGgAAAmgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAQAAAAEAAAABAAAAAQAAAAEAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEAAAABAAAAAQAAAAEAAAABAAAAAaAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAADaAAAAEsAAABLAAACSwAAA2gAAABLAAABSwAAAEsAAANLAAADSwAAAUsAAANLAAADSwAAA0sAAAFLAAAASwAAAksAAANLAAABSwAAA0sAAABLAAABSwAAAUsAAAFLAAADSwAAAUsAAAJLAAACSwAAAksAAAJLAAAAVwAAAFcAAABoAAAASwAAAEsAAAFLAAABaAAAAEsAAABLAAACSwAAAEsAAAJLAAAASwAAAUsAAAJLAAACSwAAAGgAAABoAAAAaAAAAEsAAAFLAAABSwAAAGgAAABoAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAAASwAAA2gAAABLAAACSwAAAEsAAABLAAACSwAAA0sAAABLAAABSwAAAEsAAAFLAAADSwAAAEsAAAFLAAACSwAAAEsAAAJLAAACSwAAA0sAAANLAAADSwAAAksAAABLAAACSwAAAEsAAAFLAAACSwAAAEsAAAFLAAABSwAAAUsAAANLAAACaAAAAEsAAAJLAAACSwAAA2gAAABLAAACSwAAAUsAAABLAAACSwAAAUsAAAJLAAAASwAAAEsAAAJLAAACSwAAAGgAAABLAAADSwAAAUsAAAJoAAAASwAAAUsAAANLAAAASwAAAUsAAAFLAAACSwAAA0sAAAJLAAACSwAAAUsAAAJoAAAASwAAA0sAAAJLAAACaAAAAEsAAABLAAABSwAAAksAAAFLAAADSwAAA0sAAAJLAAAASwAAAksAAABLAAABaAAAAEsAAAJLAAABSwAAAksAAAJLAAAASwAAAksAAABLAAAASwAAAksAAABLAAAASwAAAksAAAFLAAACSwAAAGgAAABLAAADSwAAAEsAAAJLAAACSwAAA0sAAAFLAAACSwAAAksAAAFLAAAASwAAAEsAAAFLAAACaAAAAGgAAABoAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAAaAAAAA== + tiles: YwAAAGQAAAAWAAAAFgAAARYAAAEWAAACFgAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAPAAAADwAAAA8AAAAPAAAADwAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAADwAAAA8AAAAPAAAADwAAAA8AAAAZAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAADZAAAAEcAAABHAAACRwAAA2QAAABHAAABRwAAAEcAAANHAAADRwAAAUcAAANHAAADRwAAA0cAAAFHAAAARwAAAkcAAANHAAABRwAAA0cAAABHAAABRwAAAUcAAAFHAAADRwAAAUcAAAJHAAACRwAAAkcAAAJHAAAAUwAAAFMAAABkAAAARwAAAEcAAAFHAAABZAAAAEcAAABHAAACRwAAAEcAAAJHAAAARwAAAUcAAAJHAAACRwAAAGQAAABkAAAAZAAAAEcAAAFHAAABRwAAAGQAAABkAAAARwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAAARwAAA2QAAABHAAACRwAAAEcAAABHAAACRwAAA0cAAABHAAABRwAAAEcAAAFHAAADRwAAAEcAAAFHAAACRwAAAEcAAAJHAAACRwAAA0cAAANHAAADRwAAAkcAAABHAAACRwAAAEcAAAFHAAACRwAAAEcAAAFHAAABRwAAAUcAAANHAAACZAAAAEcAAAJHAAACRwAAA2QAAABHAAACRwAAAUcAAABHAAACRwAAAUcAAAJHAAAARwAAAEcAAAJHAAACRwAAAGQAAABHAAADRwAAAUcAAAJkAAAARwAAAUcAAANHAAAARwAAAUcAAAFHAAACRwAAA0cAAAJHAAACRwAAAUcAAAJkAAAARwAAA0cAAAJHAAACZAAAAEcAAABHAAABRwAAAkcAAAFHAAADRwAAA0cAAAJHAAAARwAAAkcAAABHAAABZAAAAEcAAAJHAAABRwAAAkcAAAJHAAAARwAAAkcAAABHAAAARwAAAkcAAABHAAAARwAAAkcAAAFHAAACRwAAAGQAAABHAAADRwAAAEcAAAJHAAACRwAAA0cAAAFHAAACRwAAAkcAAAFHAAAARwAAAEcAAAFHAAACZAAAAGQAAABkAAAAZAAAAEcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAAZAAAAA== -1,-2: ind: -1,-2 - tiles: GgAAA2gAAABLAAADSwAAA0sAAANLAAAASwAAAEsAAANLAAADSwAAAksAAABoAAAAaAAAAEsAAAFoAAAAaAAAABoAAANoAAAASwAAAksAAAFLAAACSwAAA0sAAAJLAAABSwAAAEsAAAJLAAACaAAAAEsAAAFLAAACSwAAAksAAAAaAAADGgAAA0sAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAJLAAABSwAAAUsAAABLAAACGgAAA2gAAABLAAACSwAAA0sAAAFLAAACSwAAAUsAAANLAAACSwAAAEsAAAJoAAAASwAAA0sAAANLAAADSwAAAmgAAABoAAAASwAAAEsAAAFLAAABSwAAAksAAAFLAAABSwAAAEsAAABLAAAAaAAAAEsAAAFLAAACSwAAA0sAAABXAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAJLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAEsAAANLAAADSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAlsAAANbAAADWwAAAlsAAANoAAAAaAAAAGgAAABLAAACSwAAAUsAAAJoAAAAKQAAACkAAAApAAAAaAAAAGQAAABkAAAAWwAAAWQAAANkAAADaAAAAGgAAABoAAAASwAAAUsAAAJLAAABaAAAACkAAAApAAAAKQAAAGgAAABbAAABWwAAAVsAAAJbAAABWwAAAGgAAABoAAAAaAAAAEsAAANLAAACSwAAAmgAAAApAAAAKQAAACkAAAAaAAABGgAAAhoAAAAaAAADGgAAABoAAABYAAAAaAAAAGgAAABLAAAASwAAAUsAAAJLAAACKQAAACkAAAApAAAAaAAAABoAAAMaAAABGgAAAxoAAAEaAAADaAAAAGgAAABoAAAASwAAA0sAAAJLAAAASwAAASkAAAApAAAAKQAAAGgAAAAaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAADSwAAAksAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABGgAAAxoAAAFoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAWwAAAlsAAABbAAADWwAAAFsAAAMaAAADGgAAAhoAAAMaAAADaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAA== + tiles: FgAAA2QAAABHAAADRwAAA0cAAANHAAAARwAAAEcAAANHAAADRwAAAkcAAABkAAAAZAAAAEcAAAFkAAAAZAAAABYAAANkAAAARwAAAkcAAAFHAAACRwAAA0cAAAJHAAABRwAAAEcAAAJHAAACZAAAAEcAAAFHAAACRwAAAkcAAAAWAAADFgAAA0cAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAAJHAAABRwAAAUcAAABHAAACFgAAA2QAAABHAAACRwAAA0cAAAFHAAACRwAAAUcAAANHAAACRwAAAEcAAAJkAAAARwAAA0cAAANHAAADRwAAAmQAAABkAAAARwAAAEcAAAFHAAABRwAAAkcAAAFHAAABRwAAAEcAAABHAAAAZAAAAEcAAAFHAAACRwAAA0cAAABTAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAEcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAAJHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAEcAAANHAAADRwAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAlcAAANXAAADVwAAAlcAAANkAAAAZAAAAGQAAABHAAACRwAAAUcAAAJkAAAAJQAAACUAAAAlAAAAZAAAAGAAAABgAAAAVwAAAWAAAANgAAADZAAAAGQAAABkAAAARwAAAUcAAAJHAAABZAAAACUAAAAlAAAAJQAAAGQAAABXAAABVwAAAVcAAAJXAAABVwAAAGQAAABkAAAAZAAAAEcAAANHAAACRwAAAmQAAAAlAAAAJQAAACUAAAAWAAABFgAAAhYAAAAWAAADFgAAABYAAABUAAAAZAAAAGQAAABHAAAARwAAAUcAAAJHAAACJQAAACUAAAAlAAAAZAAAABYAAAMWAAABFgAAAxYAAAEWAAADZAAAAGQAAABkAAAARwAAA0cAAAJHAAAARwAAASUAAAAlAAAAJQAAAGQAAAAWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAADRwAAAkcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAABFgAAAxYAAAFkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAVwAAAlcAAABXAAADVwAAAFcAAAMWAAADFgAAAhYAAAMWAAADZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAUwAAAA== -2,-2: ind: -2,-2 - tiles: aAAAAGgAAABoAAAAaAAAAGUAAAFlAAADaAAAAGgAAABoAAAAaAAAAGUAAABoAAAAaAAAAGgAAAAaAAADGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAZQAAAmgAAABlAAACZQAAAWUAAAFoAAAAaAAAAGgAAABoAAAAGgAAAxoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAEaAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAAJbAAABaAAAAFsAAANbAAAAWwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABbAAAAWwAAA2gAAABbAAABWwAAAlsAAAJbAAACaAAAAGgAAABoAAAAaAAAAGgAAABbAAABWwAAAlsAAAJoAAAAWwAAAFsAAAJoAAAAWwAAA1sAAABbAAAAWwAAAWgAAABlAAACZQAAAWUAAAFkAAACWwAAA2QAAAFbAAACaAAAAFsAAAJoAAAAaAAAAFsAAAJbAAACWwAAAVsAAANoAAAAZQAAAmUAAABlAAABaAAAAFsAAAFbAAAAWwAAAGgAAABbAAADWwAAA1sAAAJbAAADWwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAAAZAAAAlsAAAIpAAAAWwAAAlsAAAFbAAADWwAAA1sAAAJoAAAAWwAAAVsAAAJbAAADWwAAAVsAAABoAAAAWwAAAVsAAAJbAAACaAAAACkAAABoAAAAWwAAA1sAAAJbAAAAaAAAAFsAAANbAAADWwAAAlsAAAJbAAADWwAAAlsAAAFkAAAAWwAAA2gAAABDAAAAaAAAAGgAAABbAAACaAAAAGgAAABbAAACWwAAA1sAAABbAAACWwAAAFsAAABbAAACZAAAAFsAAAJoAAAAaAAAAGgAAABXAAAAWwAAAlsAAAFoAAAAWwAAAFsAAABbAAACWwAAAlsAAAJoAAAAWwAAAlsAAABbAAADaAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGEAAAFhAAADZAAAAGQAAABkAAAAZAAAAGEAAABkAAAAZAAAAGQAAAAWAAADFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAYQAAAmQAAABhAAACYQAAAWEAAAFkAAAAZAAAAGQAAABkAAAAFgAAAxYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAEWAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAAJXAAABZAAAAFcAAANXAAAAVwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABXAAAAVwAAA2QAAABXAAABVwAAAlcAAAJXAAACZAAAAGQAAABkAAAAZAAAAGQAAABXAAABVwAAAlcAAAJkAAAAVwAAAFcAAAJkAAAAVwAAA1cAAABXAAAAVwAAAWQAAABhAAACYQAAAWEAAAFgAAACVwAAA2AAAAFXAAACZAAAAFcAAAJkAAAAZAAAAFcAAAJXAAACVwAAAVcAAANkAAAAYQAAAmEAAABhAAABZAAAAFcAAAFXAAAAVwAAAGQAAABXAAADVwAAA1cAAAJXAAADVwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAAAYAAAAlcAAAIlAAAAVwAAAlcAAAFXAAADVwAAA1cAAAJkAAAAVwAAAVcAAAJXAAADVwAAAVcAAABkAAAAVwAAAVcAAAJXAAACZAAAACUAAABkAAAAVwAAA1cAAAJXAAAAZAAAAFcAAANXAAADVwAAAlcAAAJXAAADVwAAAlcAAAFgAAAAVwAAA2QAAAA/AAAAZAAAAGQAAABXAAACZAAAAGQAAABXAAACVwAAA1cAAABXAAACVwAAAFcAAABXAAACYAAAAFcAAAJkAAAAZAAAAGQAAABTAAAAVwAAAlcAAAFkAAAAVwAAAFcAAABXAAACVwAAAlcAAAJkAAAAVwAAAlcAAABXAAADZAAAAA== -3,-2: ind: -3,-2 - tiles: ZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAGgAAAhoAAAEaAAACGgAAAxoAAAIaAAABGgAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAaAAABaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAAAAAAAAAAABnAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADGgAAAxoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAAAWwAAA2gAAAAaAAADGgAAABoAAAMaAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAFsAAANoAAAAaAAAABoAAAEaAAACGgAAAmgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAABbAAACaAAAAGgAAAAaAAACGgAAAhoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAGgAAABoAAAAGgAAASoAAAAaAAADaAAAAGUAAAFoAAAASgAAAmgAAABlAAACaAAAAGgAAABoAAAAWwAAAlsAAANbAAACaAAAABoAAAIaAAADGgAAAGgAAABKAAACaAAAAEoAAARKAAAKaAAAAGgAAABoAAAAaAAAAFsAAABbAAADWwAAAGgAAAAaAAADKgAAABoAAAJoAAAAZQAAAUoAAABKAAAISgAAAWgAAABoAAAAaAAAAGgAAAApAAAAKQAAAEMAAABoAAAAGgAAAhoAAAEaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQwAAACkAAAApAAAAaAAAABoAAAAqAAADGgAAA1gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: YwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAFgAAAhYAAAEWAAACFgAAAxYAAAIWAAABFgAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAWAAABZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAUwAAAGQAAABkAAAAAAAAAAAAAABjAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADFgAAAxYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAAAVwAAA2QAAAAWAAADFgAAABYAAAMWAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAFcAAANkAAAAZAAAABYAAAEWAAACFgAAAmQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAABXAAACZAAAAGQAAAAWAAACFgAAAhYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAGQAAABkAAAAFgAAASYAAAAWAAADZAAAAGEAAAFkAAAARgAAAmQAAABhAAACZAAAAGQAAABkAAAAVwAAAlcAAANXAAACZAAAABYAAAIWAAADFgAAAGQAAABGAAACZAAAAEYAAARGAAAKZAAAAGQAAABkAAAAZAAAAFcAAABXAAADVwAAAGQAAAAWAAADJgAAABYAAAJkAAAAYQAAAUYAAABGAAAIRgAAAWQAAABkAAAAZAAAAGQAAAAlAAAAJQAAAD8AAABkAAAAFgAAAhYAAAEWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAPwAAACUAAAAlAAAAZAAAABYAAAAmAAADFgAAA1QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== 0,-2: ind: 0,-2 - tiles: aAAAAEsAAAFoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAEsAAAJLAAABSwAAAksAAAFoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABLAAADSwAAAWgAAABoAAAAaAAAAGgAAABLAAACSwAAAEsAAAJLAAAASwAAAUsAAANLAAADSwAAA2gAAABLAAAASwAAA0sAAABLAAACaAAAAGgAAABoAAAASwAAA0sAAABLAAADSwAAAGgAAABLAAADSwAAAksAAABoAAAASwAAAEsAAAFLAAAASwAAAWgAAABoAAAAaAAAAEsAAANLAAAASwAAAksAAABoAAAASwAAAksAAAJLAAADaAAAAEsAAAJLAAACSwAAAUsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJoAAAAaAAAAEsAAABLAAACSwAAA2gAAABoAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAALAAAACwAAAAsAAAADgAAAGgAAABLAAAASwAAAEsAAAFoAAAASwAAAEsAAAJLAAACSwAAAEsAAAJXAAAAaAAAACwAAAAsAAAALAAAAA4AAABoAAAASwAAAksAAAFLAAABSwAAAEsAAABLAAABSwAAAEsAAABLAAAAVwAAAGgAAAAsAAAALAAAACwAAAAOAAAAaAAAAEsAAANLAAACSwAAA0sAAAFLAAADSwAAAksAAAJLAAADSwAAAFcAAABoAAAALAAAACwAAAAsAAAADgAAAGgAAABoAAAASwAAAmgAAABoAAAASwAAA0sAAAJLAAAASwAAAksAAAJXAAAAaAAAAGgAAABoAAAASwAAAWgAAABoAAAAGgAAABoAAAEaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAEsAAANLAAABSwAAAUsAAABLAAACSwAAA0sAAANLAAADSwAAAEsAAAFLAAACSwAAAmgAAABoAAAASwAAAEsAAABLAAACSwAAAUsAAABLAAADSwAAAEsAAAJLAAACSwAAA0sAAAFLAAAASwAAAUsAAAEaAAACaAAAAEsAAAFLAAADSwAAAksAAAJLAAADSwAAA0sAAABLAAADSwAAAEsAAAFLAAABSwAAA0sAAAJLAAACGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAACMAAAFoAAAAaAAAAEsAAANLAAABSwAAABoAAANoAAAAaAAAAGgAAABoAAAANwAAADcAAAA3AAAAaAAAAGUAAABlAAAAZQAAAGgAAABLAAABSwAAA0sAAAEaAAACaAAAAA== + tiles: ZAAAAEcAAAFkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAZAAAAEcAAAJHAAABRwAAAkcAAAFkAAAAZAAAAEcAAABkAAAAZAAAAGQAAABHAAADRwAAAWQAAABkAAAAZAAAAGQAAABHAAACRwAAAEcAAAJHAAAARwAAAUcAAANHAAADRwAAA2QAAABHAAAARwAAA0cAAABHAAACZAAAAGQAAABkAAAARwAAA0cAAABHAAADRwAAAGQAAABHAAADRwAAAkcAAABkAAAARwAAAEcAAAFHAAAARwAAAWQAAABkAAAAZAAAAEcAAANHAAAARwAAAkcAAABkAAAARwAAAkcAAAJHAAADZAAAAEcAAAJHAAACRwAAAUcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJkAAAAZAAAAEcAAABHAAACRwAAA2QAAABkAAAARwAAAEcAAABkAAAAZAAAAGQAAABkAAAAKAAAACgAAAAoAAAACgAAAGQAAABHAAAARwAAAEcAAAFkAAAARwAAAEcAAAJHAAACRwAAAEcAAAJTAAAAZAAAACgAAAAoAAAAKAAAAAoAAABkAAAARwAAAkcAAAFHAAABRwAAAEcAAABHAAABRwAAAEcAAABHAAAAUwAAAGQAAAAoAAAAKAAAACgAAAAKAAAAZAAAAEcAAANHAAACRwAAA0cAAAFHAAADRwAAAkcAAAJHAAADRwAAAFMAAABkAAAAKAAAACgAAAAoAAAACgAAAGQAAABkAAAARwAAAmQAAABkAAAARwAAA0cAAAJHAAAARwAAAkcAAAJTAAAAZAAAAGQAAABkAAAARwAAAWQAAABkAAAAFgAAABYAAAEWAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAEcAAANHAAABRwAAAUcAAABHAAACRwAAA0cAAANHAAADRwAAAEcAAAFHAAACRwAAAmQAAABkAAAARwAAAEcAAABHAAACRwAAAUcAAABHAAADRwAAAEcAAAJHAAACRwAAA0cAAAFHAAAARwAAAUcAAAEWAAACZAAAAEcAAAFHAAADRwAAAkcAAAJHAAADRwAAA0cAAABHAAADRwAAAEcAAAFHAAABRwAAA0cAAAJHAAACFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAB8AAAFkAAAAZAAAAEcAAANHAAABRwAAABYAAANkAAAAZAAAAGQAAABkAAAAMwAAADMAAAAzAAAAZAAAAGEAAABhAAAAYQAAAGQAAABHAAABRwAAA0cAAAEWAAACZAAAAA== 1,-2: ind: 1,-2 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAEAAAABAAAAAQAAAAGgAAABoAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAQAAAAEAAAABAAAAAaAAAAGgAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABAAAAAQAAAAEAAAABoAAAAaAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAEAAAABAAAAAQAAAAGgAAABoAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAQAAAAEAAAABAAAAAaAAAAGgAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAaAAAAGgAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABAAAAAGgAAAxoAAABAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAAAAAAAAAAAAAGcAAABoAAAAGgAAABoAAAIaAAAAGgAAAhoAAANoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAEAAAABAAAAAQAAAABoAAAEaAAADaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGgAAABAAAAAQAAAAEAAAAAaAAADGgAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAADwAAAA8AAAAPAAAAGQAAABkAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAPAAAADwAAAA8AAAAZAAAAGQAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAAA8AAAAPAAAADwAAABkAAAAZAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAADwAAAA8AAAAPAAAAGQAAABkAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAPAAAADwAAAA8AAAAZAAAAGQAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAWAAAAFgAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAAA8AAAAFgAAAxYAAAA8AAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAAAAAAAAAAAAAGMAAABkAAAAFgAAABYAAAIWAAAAFgAAAhYAAANkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAADwAAAA8AAAAPAAAABYAAAEWAAADZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGQAAAA8AAAAPAAAADwAAAAWAAADFgAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,-1: ind: 2,-1 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABLAAADSwAAAEsAAAJoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAABSwAAA0sAAAFLAAADaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAUsAAANLAAAASwAAAmgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABLAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAAASwAAAEsAAAJLAAACaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAA0sAAANLAAAASwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAANLAAADSwAAAksAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAADSwAAA0sAAAFLAAABaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAA0sAAABLAAACSwAAA2gAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAANLAAADSwAAAksAAAJoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAAASwAAAUsAAAJLAAACaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEcAAABHAAADRwAAAEcAAAJkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHAAABRwAAA0cAAAFHAAADZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAUcAAANHAAAARwAAAmQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEcAAABHAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHAAAARwAAAEcAAAJHAAACZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAA0cAAANHAAAARwAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEcAAANHAAADRwAAAkcAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHAAADRwAAA0cAAAFHAAABZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAA0cAAABHAAACRwAAA2QAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEcAAANHAAADRwAAAkcAAAJkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHAAAARwAAAUcAAAJHAAACZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,-3: ind: 0,-3 - tiles: aAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAARoAAAEaAAADGgAAAGgAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAIaAAACGgAAAhoAAAJoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAABGgAAAxoAAAMaAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAASwAAAEsAAABLAAADSwAAAWgAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAEsAAANLAAAASwAAAUsAAANoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABLAAADSwAAAEsAAAJLAAAAaAAAAGcAAABnAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAksAAANLAAACSwAAA2gAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAEsAAANLAAACSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAQAAAAEAAAABAAAAAaAAAAGcAAABoAAAASwAAAmgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABnAAAAaAAAAEAAAABAAAAAQAAAAGgAAABnAAAASwAAAksAAANLAAACaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAEsAAAFLAAABSwAAAEsAAAFoAAAAVwAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABLAAACSwAAAEsAAAJLAAAASwAAAVcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAJLAAABSwAAA2gAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: ZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAARYAAAEWAAADFgAAAGQAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAIWAAACFgAAAhYAAAJkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAABFgAAAxYAAAMWAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAARwAAAEcAAABHAAADRwAAAWQAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAEcAAANHAAAARwAAAUcAAANkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABHAAADRwAAAEcAAAJHAAAAZAAAAGMAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAARwAAAkcAAANHAAACRwAAA2QAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAEcAAANHAAACRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAPAAAADwAAAA8AAAAZAAAAGMAAABkAAAARwAAAmQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABjAAAAZAAAADwAAAA8AAAAPAAAAGQAAABjAAAARwAAAkcAAANHAAACZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAEcAAAFHAAABRwAAAEcAAAFkAAAAUwAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABHAAACRwAAAEcAAAJHAAAARwAAAVMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAJHAAABRwAAA2QAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== 1,-3: ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAEAAAABAAAAAQAAAAGgAAABoAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAQAAAAEAAAABAAAAAaAAAAGgAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAADwAAAA8AAAAPAAAAGQAAABkAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAPAAAADwAAAA8AAAAZAAAAGQAAAAAAAAAAAAAAA== -1,-3: ind: -1,-3 - tiles: aAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAEaAAABGgAAAxoAAAIaAAADGgAAARoAAAMaAAABGgAAABoAAAEaAAACGgAAABoAAABoAAAASwAAAGgAAABLAAABSwAAA0sAAAJLAAACSwAAAUsAAAJLAAADSwAAAksAAAJLAAAASwAAAUsAAAJLAAACaAAAAEsAAAJoAAAASwAAAUsAAAFLAAADSwAAAEsAAABLAAADSwAAAUsAAAJLAAADSwAAAEsAAANLAAABSwAAAWgAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAANLAAACSwAAAEsAAAFLAAAASwAAAEsAAAJLAAADSwAAAksAAAJLAAAASwAAA0sAAANLAAAASwAAA0sAAANLAAABSwAAAksAAABLAAABSwAAAT8AAAI/AAABPwAAAD8AAAA/AAAASwAAAksAAANLAAACSwAAA0sAAANLAAACSwAAAUsAAABLAAACSwAAAksAAANLAAADSwAAAksAAANLAAADSwAAA0sAAAJLAAABSwAAA0sAAABLAAABSwAAAmgAAABLAAABSwAAA0sAAABLAAADSwAAAksAAABLAAACSwAAA0sAAABLAAACSwAAA0sAAAJLAAABSwAAAmgAAABoAAAAGgAAAxoAAAAaAAAAaAAAAGgAAABoAAAAGgAAAmgAAABoAAAAaAAAABoAAAMaAAADGgAAAWgAAAAaAAADaAAAAGgAAAAaAAACaAAAAGgAAAAaAAADGgAAABoAAAAaAAAAGgAAA2gAAABoAAAASwAAAWgAAABoAAAAGgAAAmgAAAAaAAADGgAAAxoAAABoAAAAGgAAAxoAAAMaAAADGgAAARoAAAFoAAAASwAAA0sAAAJLAAAAaAAAABoAAAJoAAAAGgAAAhoAAAMaAAABaAAAABoAAANoAAAAaAAAAGgAAAAaAAAAaAAAAEsAAAE+AAABSwAAAWgAAABoAAAAaAAAABoAAAMaAAACGgAAAxoAAAEaAAAAGgAAARoAAAMaAAAAGgAAAWgAAABLAAACPgAAA0sAAAJLAAADGgAAA2gAAAAaAAABGgAAAhoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAABLAAAAaAAAAA== + tiles: ZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAEWAAABFgAAAxYAAAIWAAADFgAAARYAAAMWAAABFgAAABYAAAEWAAACFgAAABYAAABkAAAARwAAAGQAAABHAAABRwAAA0cAAAJHAAACRwAAAUcAAAJHAAADRwAAAkcAAAJHAAAARwAAAUcAAAJHAAACZAAAAEcAAAJkAAAARwAAAUcAAAFHAAADRwAAAEcAAABHAAADRwAAAUcAAAJHAAADRwAAAEcAAANHAAABRwAAAWQAAABHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAANHAAACRwAAAEcAAAFHAAAARwAAAEcAAAJHAAADRwAAAkcAAAJHAAAARwAAA0cAAANHAAAARwAAA0cAAANHAAABRwAAAkcAAABHAAABRwAAATsAAAI7AAABOwAAADsAAAA7AAAARwAAAkcAAANHAAACRwAAA0cAAANHAAACRwAAAUcAAABHAAACRwAAAkcAAANHAAADRwAAAkcAAANHAAADRwAAA0cAAAJHAAABRwAAA0cAAABHAAABRwAAAmQAAABHAAABRwAAA0cAAABHAAADRwAAAkcAAABHAAACRwAAA0cAAABHAAACRwAAA0cAAAJHAAABRwAAAmQAAABkAAAAFgAAAxYAAAAWAAAAZAAAAGQAAABkAAAAFgAAAmQAAABkAAAAZAAAABYAAAMWAAADFgAAAWQAAAAWAAADZAAAAGQAAAAWAAACZAAAAGQAAAAWAAADFgAAABYAAAAWAAAAFgAAA2QAAABkAAAARwAAAWQAAABkAAAAFgAAAmQAAAAWAAADFgAAAxYAAABkAAAAFgAAAxYAAAMWAAADFgAAARYAAAFkAAAARwAAA0cAAAJHAAAAZAAAABYAAAJkAAAAFgAAAhYAAAMWAAABZAAAABYAAANkAAAAZAAAAGQAAAAWAAAAZAAAAEcAAAE6AAABRwAAAWQAAABkAAAAZAAAABYAAAMWAAACFgAAAxYAAAEWAAAAFgAAARYAAAMWAAAAFgAAAWQAAABHAAACOgAAA0cAAAJHAAADFgAAA2QAAAAWAAABFgAAAhYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAABHAAAAZAAAAA== -2,-3: ind: -2,-3 - tiles: aAAAAGgAAABoAAAASwAAA2gAAABoAAAAQAAAAEAAAABAAAAAQAAAAGgAAABnAAAAaAAAABoAAAEaAAACGgAAA2gAAABoAAAASwAAAGgAAABLAAADaAAAAEAAAABAAAAAQAAAAGgAAABoAAAAZwAAAGgAAAAaAAAAGgAAABoAAAFoAAAAaAAAAGgAAABoAAAASwAAAmgAAABoAAAASwAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAABoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAksAAAFLAAAASwAAAUsAAAFoAAAASwAAAUsAAAFLAAACSwAAAmgAAABoAAAAaAAAAFcAAABXAAAAaAAAABoAAANLAAACSwAAAUsAAABLAAACaAAAAEsAAANLAAAASwAAA0sAAAJoAAAAaAAAAGgAAABXAAAAVwAAAGgAAAAaAAACSwAAAksAAAJLAAADSwAAAUsAAAFLAAACSwAAAEsAAANLAAABaAAAAGgAAABoAAAAVwAAAFcAAABYAAAASwAAAksAAAJLAAAASwAAA0sAAABLAAACSwAAAEsAAAJLAAACSwAAA2gAAABXAAAAVwAAAFcAAABXAAAAaAAAAEsAAANLAAADSwAAAksAAANLAAABaAAAAEsAAANLAAAASwAAA0sAAAJoAAAAaAAAAGgAAABXAAAAVwAAAGgAAAAaAAAAGgAAARoAAAAaAAABGgAAAWgAAABLAAACSwAAAksAAANLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAANLAAADSwAAAmgAAABoAAAAaAAAAGgAAABQAAAAaAAAAGgAAABQAAAAaAAAAFAAAABQAAAAaAAAAGgAAAAaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAaAAAAFAAAABoAAAAUAAAAGgAAAAaAAADGgAAARoAAAMaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFAAAABQAAAAaAAAAGgAAABoAAAAGgAAAxoAAAEaAAADGgAAA2gAAABoAAAAaAAAAGgAAABlAAABaAAAAGgAAABoAAAAaAAAAGgAAABlAAADaAAAABoAAAEaAAABGgAAARoAAAEaAAACaAAAAGgAAABoAAAAZQAAAWUAAANoAAAAZQAAAGUAAABoAAAAZQAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAADZQAAAGUAAAJoAAAAZQAAAGgAAABoAAAAaAAAAGgAAAAaAAAAGgAAAA== + tiles: ZAAAAGQAAABkAAAARwAAA2QAAABkAAAAPAAAADwAAAA8AAAAPAAAAGQAAABjAAAAZAAAABYAAAEWAAACFgAAA2QAAABkAAAARwAAAGQAAABHAAADZAAAADwAAAA8AAAAPAAAAGQAAABkAAAAYwAAAGQAAAAWAAAAFgAAABYAAAFkAAAAZAAAAGQAAABkAAAARwAAAmQAAABkAAAARwAAAEcAAANkAAAAZAAAAGQAAABkAAAAZAAAABYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAkcAAAFHAAAARwAAAUcAAAFkAAAARwAAAUcAAAFHAAACRwAAAmQAAABkAAAAZAAAAFMAAABTAAAAZAAAABYAAANHAAACRwAAAUcAAABHAAACZAAAAEcAAANHAAAARwAAA0cAAAJkAAAAZAAAAGQAAABTAAAAUwAAAGQAAAAWAAACRwAAAkcAAAJHAAADRwAAAUcAAAFHAAACRwAAAEcAAANHAAABZAAAAGQAAABkAAAAUwAAAFMAAABUAAAARwAAAkcAAAJHAAAARwAAA0cAAABHAAACRwAAAEcAAAJHAAACRwAAA2QAAABTAAAAUwAAAFMAAABTAAAAZAAAAEcAAANHAAADRwAAAkcAAANHAAABZAAAAEcAAANHAAAARwAAA0cAAAJkAAAAZAAAAGQAAABTAAAAUwAAAGQAAAAWAAAAFgAAARYAAAAWAAABFgAAAWQAAABHAAACRwAAAkcAAANHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAANHAAADRwAAAmQAAABkAAAAZAAAAGQAAABMAAAAZAAAAGQAAABMAAAAZAAAAEwAAABMAAAAZAAAAGQAAAAWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAAZAAAAEwAAABkAAAATAAAAGQAAAAWAAADFgAAARYAAAMWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAEwAAABMAAAAZAAAAGQAAABkAAAAFgAAAxYAAAEWAAADFgAAA2QAAABkAAAAZAAAAGQAAABhAAABZAAAAGQAAABkAAAAZAAAAGQAAABhAAADZAAAABYAAAEWAAABFgAAARYAAAEWAAACZAAAAGQAAABkAAAAYQAAAWEAAANkAAAAYQAAAGEAAABkAAAAYQAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAADYQAAAGEAAAJkAAAAYQAAAGQAAABkAAAAZAAAAGQAAAAWAAAAFgAAAA== -2,-4: ind: -2,-4 - tiles: SwAAA0sAAANLAAABaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAZwAAAEsAAAJLAAACSwAAAGgAAABoAAAAQgAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGcAAABoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABnAAAAGgAAA0sAAANLAAABaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAZwAAAGgAAABLAAADSwAAA2gAAABLAAAASwAAA0sAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABLAAAASwAAA0sAAAFLAAADSwAAAEsAAAJLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAASwAAAksAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABnAAAAZwAAAGgAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAZwAAAGcAAABnAAAAaAAAAGcAAAAAAAAAAAAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABnAAAAAAAAAAAAAABnAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAAAAAAAAAAAAAAAAAABoAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAEAAAABAAAAAQAAAAEAAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABAAAAAQAAAAEAAAABAAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQAAAAEAAAABAAAAAQAAAAGgAAABnAAAAaAAAABoAAAEaAAACGgAAAQ== + tiles: RwAAA0cAAANHAAABZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAYwAAAEcAAAJHAAACRwAAAGQAAABkAAAAPgAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGMAAABkAAAAZAAAAEcAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABjAAAAFgAAA0cAAANHAAABZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAYwAAAGQAAABHAAADRwAAA2QAAABHAAAARwAAA0cAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABHAAAARwAAA0cAAAFHAAADRwAAAEcAAAJHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAARwAAAkcAAABHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAZAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABjAAAAYwAAAGQAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAYwAAAGMAAABjAAAAZAAAAGMAAAAAAAAAAAAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABjAAAAAAAAAAAAAABjAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAAAAAAAAAAAAAAAAAABkAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAADwAAAA8AAAAPAAAADwAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAAA8AAAAPAAAADwAAAA8AAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAPAAAADwAAAA8AAAAPAAAAGQAAABjAAAAZAAAABYAAAEWAAACFgAAAQ== -1,-4: ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABAAAAAQAAAAEAAAABoAAAAQAAAAEAAAABAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAEAAAABAAAAAQAAAAEAAAABoAAAAaAAAAGgAAABAAAAAQAAAAEAAAABAAAAAaAAAAAAAAAAAAAAAZwAAAGgAAABAAAAAQAAAAEAAAABAAAAAaAAAAGgAAABoAAAAQAAAAEAAAABAAAAAQAAAAGgAAABnAAAAAAAAAGcAAABoAAAAQAAAAEAAAABAAAAAQAAAAGgAAABoAAAAaAAAAEAAAABAAAAAQAAAAEAAAABoAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAFoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAAA8AAAAPAAAADwAAABkAAAAPAAAADwAAAA8AAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAADwAAAA8AAAAPAAAADwAAABkAAAAZAAAAGQAAAA8AAAAPAAAADwAAAA8AAAAZAAAAAAAAAAAAAAAYwAAAGQAAAA8AAAAPAAAADwAAAA8AAAAZAAAAGQAAABkAAAAPAAAADwAAAA8AAAAPAAAAGQAAABjAAAAAAAAAGMAAABkAAAAPAAAADwAAAA8AAAAPAAAAGQAAABkAAAAZAAAADwAAAA8AAAAPAAAADwAAABkAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAFkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAABZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== 0,-4: ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAARoAAAFoAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAEaAAAAaAAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAACGgAAA2gAAABnAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAARoAAANoAAAAZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAMaAAADaAAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAADGgAAAmgAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAARoAAAJoAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAARYAAAFkAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAEWAAAAZAAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAACFgAAA2QAAABjAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAARYAAANkAAAAYwAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAMWAAADZAAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAADFgAAAmQAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAARYAAAJkAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -2,-5: ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAZwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAYwAAAA== -1,-5: ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -2,4: ind: -2,4 - tiles: aAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,-5: ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== 2,0: ind: 2,0 - tiles: aAAAAGUAAAJlAAADZQAAAWUAAAJoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABoAAAAZQAAAWUAAAFoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABlAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABlAAACaAAAAGUAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAGcAAABnAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAAAAAAAAZwAAABoAAAMaAAABaAAAAFsAAABbAAAAWwAAAFsAAANbAAAAWwAAAmgAAABoAAAAaAAAAFcAAABoAAAAAAAAAGcAAAAaAAACGgAAAFsAAAFbAAADWwAAAlsAAAFbAAACWwAAAVsAAAJoAAAAaAAAAFcAAABXAAAAaAAAAGcAAABnAAAAGgAAAxoAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAANbAAACaAAAAGgAAABoAAAAVwAAAGgAAAAAAAAAZwAAABoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAACWwAAAGgAAABoAAAAaAAAAFcAAABoAAAAAAAAAGcAAAAaAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAD4AAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAGgAAABoAAAFoAAAAQAAAAEAAAABAAAAAQAAAAGgAAAA+AAACPgAAA2gAAABoAAAAaAAAAGgAAAAAAAAAZwAAABoAAANoAAAAaAAAAEAAAABAAAAAQAAAAEAAAAA+AAACPgAAAD4AAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAaAAABEgAAAGgAAABAAAAAQAAAAEAAAABAAAAAaAAAAD4AAAI+AAABaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAGgAAAhIAAABoAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: ZAAAAGEAAAJhAAADYQAAAWEAAAJkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAABkAAAAYQAAAWEAAAFkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABhAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABhAAACZAAAAGEAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABkAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAZAAAAGMAAABjAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAAAAAAAAYwAAABYAAAMWAAABZAAAAFcAAABXAAAAVwAAAFcAAANXAAAAVwAAAmQAAABkAAAAZAAAAFMAAABkAAAAAAAAAGMAAAAWAAACFgAAAFcAAAFXAAADVwAAAlcAAAFXAAACVwAAAVcAAAJkAAAAZAAAAFMAAABTAAAAZAAAAGMAAABjAAAAFgAAAxYAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAANXAAACZAAAAGQAAABkAAAAUwAAAGQAAAAAAAAAYwAAABYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAACVwAAAGQAAABkAAAAZAAAAFMAAABkAAAAAAAAAGMAAAAWAAAAFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAADoAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAFgAAABYAAAFkAAAAPAAAADwAAAA8AAAAPAAAAGQAAAA6AAACOgAAA2QAAABkAAAAZAAAAGQAAAAAAAAAYwAAABYAAANkAAAAZAAAADwAAAA8AAAAPAAAADwAAAA6AAACOgAAADoAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAWAAABDgAAAGQAAAA8AAAAPAAAADwAAAA8AAAAZAAAADoAAAI6AAABZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAFgAAAg4AAABkAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== 2,-3: ind: 2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,-2: ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,-4: ind: 2,-4 - tiles: CgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAsAAAIKAAAADQAABw0AAAYNAAAHCgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAA0AAAYKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAACgAAAAoAAAAKAAAACgAAAA0AAAQNAAAHCgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAoAAAAKAAAACgAAAAoAAAANAAAECgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAADQAABgoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAANAAABDQAABAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAABoAAAACgAAAAoAAABpAAAACgAAAAoAAABoAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABpAAAAaQAAAGkAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAIGAAAACAAABwgAAAYIAAAHBgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAgAAAYGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAAAAAABgAAAAYAAAAGAAAABgAAAAgAAAQIAAAHBgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAAAAAAAYAAAAGAAAABgAAAAYAAAAIAAAEBgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAACAAABgYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAAAAAABgAAAAYAAAAGAAAABgAAAAYAAAAIAAABCAAABAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAABkAAAABgAAAAYAAABlAAAABgAAAAYAAABkAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABlAAAAZQAAAGUAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,3: ind: 1,3 - tiles: aAAAAGgAAABoAAAAaAAAAFcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABQAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAmUAAANoAAAAUAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGUAAANlAAACaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABlAAACZQAAAGgAAABQAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAFoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABMAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAmEAAANkAAAATAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGEAAANhAAACZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABhAAACYQAAAGQAAABMAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAAFkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,3: ind: 0,3 - tiles: ZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFcAAABXAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAFcAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGUAAABlAAAAZQAAA2gAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABlAAACZQAAAmUAAANoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGUAAAJlAAABaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAZQAAAGUAAAFlAAADZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABlAAAAZQAAAmUAAAJlAAADZQAAAQAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAZQAAAmUAAABlAAAAZQAAAWUAAAJnAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGUAAAJlAAAAZQAAAGgAAABlAAADaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABlAAADZQAAAWgAAAAaAAACGgAAAmgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGcAAABoAAAAZQAAAWUAAAFoAAAAGgAAABoAAABoAAAAGgAAAWgAAABoAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAxoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAA== + tiles: YwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFMAAABTAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAFMAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGEAAABhAAAAYQAAA2QAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABhAAACYQAAAmEAAANkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGEAAAJhAAABZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAYQAAAGEAAAFhAAADYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABhAAAAYQAAAmEAAAJhAAADYQAAAQAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAYQAAAmEAAABhAAAAYQAAAWEAAAJjAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGEAAAJhAAAAYQAAAGQAAABhAAADZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABhAAADYQAAAWQAAAAWAAACFgAAAmQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAGMAAABjAAAAAAAAAGMAAABkAAAAYQAAAWEAAAFkAAAAFgAAABYAAABkAAAAFgAAAWQAAABkAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAxYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAA== 3,2: ind: 3,2 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,1: ind: 3,1 - tiles: aAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAZwAAAGcAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABQAAAAVwAAAFcAAABXAAAAaAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAVwAAAFcAAABQAAAAUAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABoAAAAAAAAAGcAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAaAAAAFAAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAA== + tiles: ZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAYwAAAGMAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABMAAAAUwAAAFMAAABTAAAAZAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAUwAAAFMAAABMAAAATAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAEwAAABkAAAAAAAAAGMAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAZAAAAEwAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAA== 4,1: ind: 4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAACoAAANnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAACYAAANjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAA== 4,2: ind: 4,2 - tiles: aAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -5,2: ind: -5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAA== -5,3: ind: -5,3 - tiles: AAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -6,2: ind: -6,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAqAAACZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAmAAACYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAA== -6,3: ind: -6,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAA== -4,-2: ind: -4,-2 - tiles: CgAAAA4AAAAOAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAoAAAAOAAAADgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAKAAAADgAAAA4AAAAKAAAACgAAAAoAAAAKAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAACgAAAA4AAAAOAAAADgAAAA4AAAAKAAAACgAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAoAAAAOAAAADgAAAAoAAAAOAAAACgAAAAoAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAGgAAAhoAAABoAAAADgAAAAoAAAAKAAAAaAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAEsAAAFLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAEaAAAAGgAAA0sAAAFoAAAAGgAAARoAAAEaAAABaAAAAD8AAAE/AAABPwAAAT8AAAE/AAADPwAAAj8AAABLAAAAGgAAABoAAANLAAAAaAAAABoAAAIaAAABGgAAARoAAAEaAAADGgAAAhoAAAAaAAABGgAAABoAAAEaAAADGgAAAEsAAANLAAABGgAAARoAAAEaAAAAGgAAABoAAANoAAAAPwAAAj8AAAE/AAABPwAAAz8AAAE/AAABPwAAARoAAAEaAAADGgAAAhoAAAJoAAAAGgAAAhoAAAIaAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAEaAAADaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAA== + tiles: BgAAAAoAAAAKAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAYAAAAKAAAACgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAGAAAACgAAAAoAAAAGAAAABgAAAAYAAAAGAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAABgAAAAoAAAAKAAAACgAAAAoAAAAGAAAABgAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAYAAAAKAAAACgAAAAYAAAAKAAAABgAAAAYAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAFgAAAhYAAABkAAAACgAAAAYAAAAGAAAAZAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAEcAAAFHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAEWAAAAFgAAA0cAAAFkAAAAFgAAARYAAAEWAAABZAAAADsAAAE7AAABOwAAATsAAAE7AAADOwAAAjsAAABHAAAAFgAAABYAAANHAAAAZAAAABYAAAIWAAABFgAAARYAAAEWAAADFgAAAhYAAAAWAAABFgAAABYAAAEWAAADFgAAAEcAAANHAAABFgAAARYAAAEWAAAAFgAAABYAAANkAAAAOwAAAjsAAAE7AAABOwAAAzsAAAE7AAABOwAAARYAAAEWAAADFgAAAhYAAAJkAAAAFgAAAhYAAAIWAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAEWAAADZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAA== -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGgAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABoAAAAaAAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAAAKAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGQAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABkAAAAZAAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAAAGAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -5,-3: ind: -5,-3 - tiles: GgAAAhoAAAIaAAADGgAAAhoAAANoAAAACgAAAAoAAAAKAAAACgAAAGgAAABoAAAAGgAAA2gAAABoAAAAaAAAABoAAAMaAAABGgAAAhoAAAIaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAxoAAANoAAAAaAAAABoAAAIaAAAAGgAAAxoAAAIaAAABGgAAAxoAAAIOAAAADgAAAA4AAAAOAAAAGgAAABoAAAEaAAABGgAAAxoAAAAaAAADGgAAAhoAAAEaAAACGgAAARoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACGgAAA2gAAAAaAAAAGgAAAhoAAAMaAAADGgAAAxoAAAAaAAACaAAAAAoAAAAKAAAACgAAAAoAAABoAAAAGgAAAGgAAABoAAAAGgAAARoAAAAaAAAAGgAAABoAAABoAAAAaAAAAGgAAABpAAAACgAAAAoAAAAKAAAAaAAAABoAAAIaAAAAaAAAABoAAAMaAAADaAAAABoAAANoAAAAaAAAAGgAAABoAAAAaQAAAAoAAAAKAAAACgAAAGgAAABoAAAAGgAAABoAAAMaAAAAGgAAAzcAAAA3AAAANwAAAGgAAABoAAAAaAAAAGkAAAAKAAAACgAAAAoAAAAKAAAAaAAAABoAAAMaAAAAGgAAARoAAAA3AAAANwAAABoAAANoAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAGgAAABoAAAAaAAAABoAAAIaAAAANwAAADcAAAAaAAAAaAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAGgAAAAaAAADGgAAA2gAAABoAAAAaAAAAGgAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAABoAAAAaAAAAGgAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAABoAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAAaAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAAAKAAAACgAAAAoAAAAKAAAACgAAAA== + tiles: FgAAAhYAAAIWAAADFgAAAhYAAANkAAAABgAAAAYAAAAGAAAABgAAAGQAAABkAAAAFgAAA2QAAABkAAAAZAAAABYAAAMWAAABFgAAAhYAAAIWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAxYAAANkAAAAZAAAABYAAAIWAAAAFgAAAxYAAAIWAAABFgAAAxYAAAIKAAAACgAAAAoAAAAKAAAAFgAAABYAAAEWAAABFgAAAxYAAAAWAAADFgAAAhYAAAEWAAACFgAAARYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACFgAAA2QAAAAWAAAAFgAAAhYAAAMWAAADFgAAAxYAAAAWAAACZAAAAAYAAAAGAAAABgAAAAYAAABkAAAAFgAAAGQAAABkAAAAFgAAARYAAAAWAAAAFgAAABYAAABkAAAAZAAAAGQAAABlAAAABgAAAAYAAAAGAAAAZAAAABYAAAIWAAAAZAAAABYAAAMWAAADZAAAABYAAANkAAAAZAAAAGQAAABkAAAAZQAAAAYAAAAGAAAABgAAAGQAAABkAAAAFgAAABYAAAMWAAAAFgAAAzMAAAAzAAAAMwAAAGQAAABkAAAAZAAAAGUAAAAGAAAABgAAAAYAAAAGAAAAZAAAABYAAAMWAAAAFgAAARYAAAAzAAAAMwAAABYAAANkAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAGQAAABkAAAAZAAAABYAAAIWAAAAMwAAADMAAAAWAAAAZAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAGQAAAAWAAADFgAAA2QAAABkAAAAZAAAAGQAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAABkAAAAZAAAAGQAAAAAAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAABkAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAAZAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAAAGAAAABgAAAAYAAAAGAAAABgAAAA== -4,-3: ind: -4,-3 - tiles: aAAAABoAAAEaAAADaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAACgAAAA4AAAAKAAAAaAAAABoAAAEaAAAAGgAAARoAAAMaAAAAGgAAAmgAAAAaAAAAGgAAAhoAAAIaAAABaAAAAAoAAAAOAAAACgAAAGgAAAAaAAAAGgAAARoAAAMaAAABGgAAAxoAAAIaAAAAGgAAABoAAAMaAAADGgAAAmgAAAAKAAAADgAAAAoAAABoAAAAGgAAABoAAAEaAAAAGgAAAxoAAAIaAAACaAAAAGgAAAAaAAACGgAAAWgAAABoAAAACgAAAA4AAAAKAAAAaAAAABoAAAEaAAADGgAAABoAAAEaAAACGgAAAhoAAAFoAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAACgAAAGgAAAAaAAABGgAAABoAAAIaAAACGgAAARoAAAEaAAABaAAAAAoAAAAOAAAACgAAAAoAAAAKAAAACgAAAAoAAABoAAAAGgAAARoAAAAaAAACGgAAAxoAAAAaAAABaAAAAGgAAAAKAAAADgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaAAAABoAAAAaAAABGgAAAhoAAAIaAAAAGgAAABoAAANoAAAACgAAAA4AAAAOAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABGgAAAhoAAAEaAAAAGgAAABoAAAMaAAACaAAAAAoAAAAOAAAADgAAAGgAAABoAAAAaAAAAGcAAABnAAAAGgAAABoAAAEaAAABGgAAABoAAAIaAAAAaAAAAGgAAAAKAAAADgAAAA4AAABoAAAAaAAAAGgAAABnAAAAZwAAABoAAAIaAAADGgAAARoAAANoAAAAaAAAAGgAAAAKAAAACgAAAA4AAAAKAAAACgAAAGgAAABnAAAAAAAAAAAAAABoAAAAGgAAABoAAABoAAAAaAAAAAoAAAAKAAAACgAAAAoAAAAOAAAACgAAAAoAAABoAAAAZwAAAAAAAAAAAAAACgAAAA4AAAAOAAAACgAAAAoAAAAKAAAACgAAAA4AAAAOAAAADgAAAAoAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAoAAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAACgAAAAoAAAAKAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAKAAAADgAAAA4AAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAACgAAAA4AAAAOAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaAAAAGgAAABnAAAAZwAAAGcAAAAAAAAAAAAAAA== + tiles: ZAAAABYAAAEWAAADZAAAAGQAAABkAAAAZAAAABYAAABkAAAAZAAAAGQAAABkAAAABgAAAAoAAAAGAAAAZAAAABYAAAEWAAAAFgAAARYAAAMWAAAAFgAAAmQAAAAWAAAAFgAAAhYAAAIWAAABZAAAAAYAAAAKAAAABgAAAGQAAAAWAAAAFgAAARYAAAMWAAABFgAAAxYAAAIWAAAAFgAAABYAAAMWAAADFgAAAmQAAAAGAAAACgAAAAYAAABkAAAAFgAAABYAAAEWAAAAFgAAAxYAAAIWAAACZAAAAGQAAAAWAAACFgAAAWQAAABkAAAABgAAAAoAAAAGAAAAZAAAABYAAAEWAAADFgAAABYAAAEWAAACFgAAAhYAAAFkAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAABgAAAGQAAAAWAAABFgAAABYAAAIWAAACFgAAARYAAAEWAAABZAAAAAYAAAAKAAAABgAAAAYAAAAGAAAABgAAAAYAAABkAAAAFgAAARYAAAAWAAACFgAAAxYAAAAWAAABZAAAAGQAAAAGAAAACgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZAAAABYAAAAWAAABFgAAAhYAAAIWAAAAFgAAABYAAANkAAAABgAAAAoAAAAKAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAABFgAAAhYAAAEWAAAAFgAAABYAAAMWAAACZAAAAAYAAAAKAAAACgAAAGQAAABkAAAAZAAAAGMAAABjAAAAFgAAABYAAAEWAAABFgAAABYAAAIWAAAAZAAAAGQAAAAGAAAACgAAAAoAAABkAAAAZAAAAGQAAABjAAAAYwAAABYAAAIWAAADFgAAARYAAANkAAAAZAAAAGQAAAAGAAAABgAAAAoAAAAGAAAABgAAAGQAAABjAAAAAAAAAAAAAABkAAAAFgAAABYAAABkAAAAZAAAAAYAAAAGAAAABgAAAAYAAAAKAAAABgAAAAYAAABkAAAAYwAAAAAAAAAAAAAABgAAAAoAAAAKAAAABgAAAAYAAAAGAAAABgAAAAoAAAAKAAAACgAAAAYAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAYAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAABgAAAAYAAAAGAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAGAAAACgAAAAoAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZAAAAGQAAABjAAAAYwAAAAAAAAAAAAAABgAAAAoAAAAKAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZAAAAGQAAABjAAAAYwAAAGMAAAAAAAAAAAAAAA== -4,-4: ind: -4,-4 - tiles: VwAAAFcAAABoAAAAGgAAAhoAAAMaAAABGgAAAhoAAAAaAAAAGgAAAmgAAAAKAAAACgAAAAoAAAAKAAAAAAAAAFcAAABXAAAAaAAAABoAAAEaAAACGgAAABoAAAFoAAAAaAAAAGgAAABoAAAACgAAAAoAAAAKAAAACgAAAAAAAABoAAAAaAAAAGgAAABoAAAAGgAAARoAAAFoAAAAaAAAAGgAAABoAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAIQAAASEAAAMhAAADIQAAAiEAAAAhAAADIQAAAyEAAAMdAAADaAAAAGgAAABoAAAAaAAAAAoAAAAKAAAACgAAAFUAAAFVAAADVQAAAlUAAANVAAADVQAAA1UAAANRAAABIgAAARoAAANoAAAAaAAAAGgAAAAKAAAACgAAAAoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVgAAAyIAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAPQAAAT0AAAI9AAABPQAAAz0AAAA9AAABaAAAAFYAAAIiAAAAaAAAADcAAAA3AAAANwAAAGgAAAApAAAAaAAAAD0AAAA9AAABPQAAAz0AAAA9AAACPQAAAmgAAABWAAAAIgAAAjcAAAA3AAAANwAAADcAAAApAAAAKQAAAGgAAAA9AAADPQAAAD0AAAI9AAABPQAAAz0AAAJoAAAAVgAAACIAAANoAAAANwAAADcAAAA3AAAAaAAAACkAAABoAAAAPQAAAT0AAAE9AAAAPQAAAj0AAAI9AAABGgAAAVYAAAIiAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAD0AAAM9AAABPQAAAj0AAAE9AAAAPQAAA2gAAABWAAABIgAAAmgAAAA3AAAANwAAADcAAABoAAAAKQAAAGgAAAA9AAACPQAAAz0AAAM9AAABPQAAAz0AAAFoAAAAVgAAAyIAAAI3AAAANwAAADcAAAA3AAAAKQAAACkAAABoAAAAPQAAAT0AAAA9AAADPQAAAj0AAAI9AAAAaAAAAFYAAAIiAAACaAAAADcAAAA3AAAANwAAAGgAAAApAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABWAAACIgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABVAAACVQAAAVUAAABVAAAAVQAAAlUAAANVAAACUQAAAiIAAABoAAAAaAAAAGgAAAAOAAAADgAAAA4AAABoAAAAIQAAAiEAAAEhAAACIQAAAyEAAAIhAAADIQAAAyEAAAEdAAABaAAAAGgAAABoAAAACgAAAA4AAAAKAAAAaAAAAA== + tiles: UwAAAFMAAABkAAAAFgAAAhYAAAMWAAABFgAAAhYAAAAWAAAAFgAAAmQAAAAGAAAABgAAAAYAAAAGAAAAAAAAAFMAAABTAAAAZAAAABYAAAEWAAACFgAAABYAAAFkAAAAZAAAAGQAAABkAAAABgAAAAYAAAAGAAAABgAAAAAAAABkAAAAZAAAAGQAAABkAAAAFgAAARYAAAFkAAAAZAAAAGQAAABkAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAHQAAAR0AAAMdAAADHQAAAh0AAAAdAAADHQAAAx0AAAMZAAADZAAAAGQAAABkAAAAZAAAAAYAAAAGAAAABgAAAFEAAAFRAAADUQAAAlEAAANRAAADUQAAA1EAAANNAAABHgAAARYAAANkAAAAZAAAAGQAAAAGAAAABgAAAAYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUgAAAx4AAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAOQAAATkAAAI5AAABOQAAAzkAAAA5AAABZAAAAFIAAAIeAAAAZAAAADMAAAAzAAAAMwAAAGQAAAAlAAAAZAAAADkAAAA5AAABOQAAAzkAAAA5AAACOQAAAmQAAABSAAAAHgAAAjMAAAAzAAAAMwAAADMAAAAlAAAAJQAAAGQAAAA5AAADOQAAADkAAAI5AAABOQAAAzkAAAJkAAAAUgAAAB4AAANkAAAAMwAAADMAAAAzAAAAZAAAACUAAABkAAAAOQAAATkAAAE5AAAAOQAAAjkAAAI5AAABFgAAAVIAAAIeAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAADkAAAM5AAABOQAAAjkAAAE5AAAAOQAAA2QAAABSAAABHgAAAmQAAAAzAAAAMwAAADMAAABkAAAAJQAAAGQAAAA5AAACOQAAAzkAAAM5AAABOQAAAzkAAAFkAAAAUgAAAx4AAAIzAAAAMwAAADMAAAAzAAAAJQAAACUAAABkAAAAOQAAATkAAAA5AAADOQAAAjkAAAI5AAAAZAAAAFIAAAIeAAACZAAAADMAAAAzAAAAMwAAAGQAAAAlAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABSAAACHgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABRAAACUQAAAVEAAABRAAAAUQAAAlEAAANRAAACTQAAAh4AAABkAAAAZAAAAGQAAAAKAAAACgAAAAoAAABkAAAAHQAAAh0AAAEdAAACHQAAAx0AAAIdAAADHQAAAx0AAAEZAAABZAAAAGQAAABkAAAABgAAAAoAAAAGAAAAZAAAAA== -3,-3: ind: -3,-3 - tiles: ZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAhoAAAEaAAADZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABoAAAAQAAAAEAAAABAAAAAQAAAABoAAAEaAAAAGgAAAWcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAEAAAABAAAAAQAAAAEAAAAAaAAADGgAAABoAAAFnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABAAAAAQAAAAEAAAABAAAAAGgAAAxoAAAEaAAADZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAQAAAAEAAAABAAAAAQAAAABoAAAMaAAABGgAAAQ== + tiles: YwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAhYAAAEWAAADYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABkAAAAPAAAADwAAAA8AAAAPAAAABYAAAEWAAAAFgAAAWMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAADwAAAA8AAAAPAAAADwAAAAWAAADFgAAABYAAAFjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAAA8AAAAPAAAADwAAAA8AAAAFgAAAxYAAAEWAAADYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAPAAAADwAAAA8AAAAPAAAABYAAAMWAAABFgAAAQ== -5,-4: ind: -5,-4 - tiles: aAAAABoAAAIaAAACGgAAAhoAAAIaAAABGgAAAxoAAAAaAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAAAaAAACGgAAAxoAAAAaAAAAGgAAAxoAAAIaAAADGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAIaAAABGgAAARoAAAIaAAACGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACGgAAAxoAAAIaAAADGgAAAhoAAAEaAAAAGgAAAhoAAAIaAAACGgAAAWgAAAAdAAABIQAAASEAAAEhAAAAIQAAARoAAABoAAAAGgAAABoAAAAaAAACGgAAABoAAAAaAAABaAAAABoAAAJoAAAAIgAAAVEAAANVAAAAVQAAA1UAAAIaAAABaAAAABoAAAMaAAACGgAAARoAAAMaAAABGgAAAWgAAAAaAAACGgAAAiIAAABWAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAiAAACVgAAAGgAAAA9AAADPQAAADUAAAA1AAAANQAAADUAAAA1AAAAaAAAAGUAAAFlAAAAZQAAAmUAAAFoAAAAIgAAAVYAAABoAAAAPQAAAD0AAAI1AAAASwAAAEsAAAJLAAACSwAAAmgAAABlAAACZQAAA2UAAANlAAADaAAAACIAAAFWAAAAaAAAAD0AAAM9AAADaAAAAEsAAABLAAABSwAAAEsAAAMaAAAAZQAAAmUAAAJlAAABZQAAABoAAAEiAAAAVgAAARoAAAM9AAABPQAAATQAAABLAAACSwAAAEsAAABLAAADaAAAAGUAAABlAAAAZQAAAGUAAAJoAAAAIgAAAVYAAAJoAAAAPQAAAz0AAAA0AAAASwAAA0sAAAJLAAABSwAAAmgAAABlAAAAZQAAAGUAAAFlAAADaAAAACIAAAFWAAACaAAAAD0AAAA9AAADNAAAADQAAAA0AAAANAAAADQAAABoAAAAZQAAAmUAAANlAAADZQAAAmgAAAAiAAACVgAAAWgAAAA9AAAAPQAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAIgAAAFYAAAFoAAAAaAAAAGgAAAAaAAABGgAAAGgAAABoAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaAAAACIAAAJRAAABVQAAA1UAAABVAAADGgAAAhoAAAIaAAABaAAAAGgAAABoAAAACgAAAAoAAAAKAAAACgAAAGgAAAAdAAAAIQAAAiEAAAIhAAACIQAAAw== + tiles: ZAAAABYAAAIWAAACFgAAAhYAAAIWAAABFgAAAxYAAAAWAAAAZAAAAFMAAABTAAAAUwAAAFMAAABTAAAAZAAAAGQAAAAWAAACFgAAAxYAAAAWAAAAFgAAAxYAAAIWAAADFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAIWAAABFgAAARYAAAIWAAACFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACFgAAAxYAAAIWAAADFgAAAhYAAAEWAAAAFgAAAhYAAAIWAAACFgAAAWQAAAAZAAABHQAAAR0AAAEdAAAAHQAAARYAAABkAAAAFgAAABYAAAAWAAACFgAAABYAAAAWAAABZAAAABYAAAJkAAAAHgAAAU0AAANRAAAAUQAAA1EAAAIWAAABZAAAABYAAAMWAAACFgAAARYAAAMWAAABFgAAAWQAAAAWAAACFgAAAh4AAABSAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAeAAACUgAAAGQAAAA5AAADOQAAADEAAAAxAAAAMQAAADEAAAAxAAAAZAAAAGEAAAFhAAAAYQAAAmEAAAFkAAAAHgAAAVIAAABkAAAAOQAAADkAAAIxAAAARwAAAEcAAAJHAAACRwAAAmQAAABhAAACYQAAA2EAAANhAAADZAAAAB4AAAFSAAAAZAAAADkAAAM5AAADZAAAAEcAAABHAAABRwAAAEcAAAMWAAAAYQAAAmEAAAJhAAABYQAAABYAAAEeAAAAUgAAARYAAAM5AAABOQAAATAAAABHAAACRwAAAEcAAABHAAADZAAAAGEAAABhAAAAYQAAAGEAAAJkAAAAHgAAAVIAAAJkAAAAOQAAAzkAAAAwAAAARwAAA0cAAAJHAAABRwAAAmQAAABhAAAAYQAAAGEAAAFhAAADZAAAAB4AAAFSAAACZAAAADkAAAA5AAADMAAAADAAAAAwAAAAMAAAADAAAABkAAAAYQAAAmEAAANhAAADYQAAAmQAAAAeAAACUgAAAWQAAAA5AAAAOQAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAHgAAAFIAAAFkAAAAZAAAAGQAAAAWAAABFgAAAGQAAABkAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZAAAAB4AAAJNAAABUQAAA1EAAABRAAADFgAAAhYAAAIWAAABZAAAAGQAAABkAAAABgAAAAYAAAAGAAAABgAAAGQAAAAZAAAAHQAAAh0AAAIdAAACHQAAAw== -6,-4: ind: -6,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAABoAAAIaAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAaAAADGgAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAAaAAAABoAAAMaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAaAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAaAAACGgAAAg== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAABYAAAIWAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAWAAADFgAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAFgAAABYAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAAZAAAABYAAAMWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAYAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAWAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAWAAACFgAAAg== -6,-3: ind: -6,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAGgAAARoAAAIaAAADGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAGgAAABoAAAEaAAADGgAAABoAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAABoAAAMaAAABGgAAAxoAAAIaAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAaAAADGgAAABoAAAIaAAAAGgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAABoAAAAaAAACGgAAAhoAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAABoAAAMaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAaAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAGgAAAA3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAFgAAARYAAAIWAAADFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAFgAAABYAAAEWAAADFgAAABYAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAABYAAAMWAAABFgAAAxYAAAIWAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAWAAADFgAAABYAAAIWAAAAFgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAABYAAAAWAAACFgAAAhYAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAABYAAAMWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAZAAAADMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAGQAAAAzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -5,-5: ind: -5,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAABoAAAAaAAAAGgAAAAaAAAAGgAAAmgAAABoAAAAaAAAAAoAAAAKAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAKAAAAaAAAABoAAAIaAAAAGgAAABoAAAEaAAABGgAAAGgAAAAKAAAACgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABGgAAAhoAAAAaAAABGgAAABoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAABkAAAAZAAAAGQAAAAWAAAAFgAAAmQAAABkAAAAZAAAAAYAAAAGAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAGAAAAZAAAABYAAAIWAAAAFgAAABYAAAEWAAABFgAAAGQAAAAGAAAABgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAABFgAAAhYAAAAWAAABFgAAABYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== -4,-5: ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAGgAAABoAAAAaAAAAGgAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAGgAAABoAAAAGgAAABoAAANoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAABoAAAAGgAAABoAAAAaAAAAGgAAAhoAAAMaAAAAGgAAAWgAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAABoAAAEaAAAAGgAAAhoAAAAaAAACGgAAARoAAABoAAAACgAAAAoAAAAKAAAAAAAAAAAAAABXAAAAVwAAAGgAAAAaAAAAGgAAAxoAAAEaAAADGgAAARoAAAMaAAABaAAAAAoAAAAKAAAACgAAAAAAAAAAAAAAVwAAAFcAAABoAAAAGgAAARoAAAAaAAACGgAAAhoAAAIaAAABGgAAA2gAAAAKAAAACgAAAAoAAAAKAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAGQAAABkAAAAZAAAAGQAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAGQAAABkAAAAFgAAABYAAANkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAABkAAAAFgAAABYAAAAWAAAAFgAAAhYAAAMWAAAAFgAAAWQAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAABYAAAEWAAAAFgAAAhYAAAAWAAACFgAAARYAAABkAAAABgAAAAYAAAAGAAAAAAAAAAAAAABTAAAAUwAAAGQAAAAWAAAAFgAAAxYAAAEWAAADFgAAARYAAAMWAAABZAAAAAYAAAAGAAAABgAAAAAAAAAAAAAAUwAAAFMAAABkAAAAFgAAARYAAAAWAAACFgAAAhYAAAIWAAABFgAAA2QAAAAGAAAABgAAAAYAAAAGAAAAAAAAAA== -6,-5: ind: -6,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAA== -3,-4: ind: -3,-4 - tiles: AAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAGgAAAxIAAAAaAAAAEgAAABIAAAAaAAABEgAAABoAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAABoAAAISAAAAGgAAABIAAAASAAAAGgAAARIAAAAaAAACEgAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAAAaAAACEgAAABoAAAEaAAABGgAAABoAAAESAAAAGgAAA2gAAABoAAAAAAAAAAAAAABnAAAAZwAAAGcAAABoAAAAGgAAAhoAAAEaAAABEgAAABIAAAAaAAACGgAAARoAAAIaAAABGgAAAmcAAAAAAAAAAAAAAGcAAAAAAAAAaAAAABoAAAISAAAAGgAAARoAAAMaAAADGgAAARIAAAAaAAACaAAAAGgAAABnAAAAAAAAAAAAAABnAAAAAAAAAGgAAAAaAAABEgAAABoAAAESAAAAEgAAABoAAAASAAAAGgAAARIAAABoAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABoAAAAGgAAARIAAAAaAAADEgAAABIAAAAaAAABEgAAABoAAANoAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAFgAAAw4AAAAWAAAADgAAAA4AAAAWAAABDgAAABYAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAABYAAAIOAAAAFgAAAA4AAAAOAAAAFgAAAQ4AAAAWAAACDgAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAAAWAAACDgAAABYAAAEWAAABFgAAABYAAAEOAAAAFgAAA2QAAABkAAAAAAAAAAAAAABjAAAAYwAAAGMAAABkAAAAFgAAAhYAAAEWAAABDgAAAA4AAAAWAAACFgAAARYAAAIWAAABFgAAAmMAAAAAAAAAAAAAAGMAAAAAAAAAZAAAABYAAAIOAAAAFgAAARYAAAMWAAADFgAAAQ4AAAAWAAACZAAAAGQAAABjAAAAAAAAAAAAAABjAAAAAAAAAGQAAAAWAAABDgAAABYAAAEOAAAADgAAABYAAAAOAAAAFgAAAQ4AAABkAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABkAAAAFgAAAQ4AAAAWAAADDgAAAA4AAAAWAAABDgAAABYAAANkAAAAZAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAZAAAAA== 0,4: ind: 0,4 - tiles: GgAAAxoAAAFoAAAAaAAAAFcAAABXAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAABoAAAEaAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAaAAACGgAAAVcAAABXAAAAVwAAAFcAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAZwAAAAAAAABoAAAAVwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAGgAAAAAAAAAaAAAAFcAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAABnAAAAAAAAAGgAAABXAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAaAAAAAAAAABoAAAAVwAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAGcAAAAAAAAAaAAAAFcAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADcAAAA3AAAAVwAAAFcAAABXAAAAVwAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3AAAANwAAAGgAAABXAAAAVwAAAFcAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAACGgAAABoAAAMaAAACGgAAAmgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAABIAAAASAAAAQAAAABoAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: FgAAAxYAAAFkAAAAZAAAAFMAAABTAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAABYAAAEWAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAWAAACFgAAAVMAAABTAAAAUwAAAFMAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAYwAAAAAAAABkAAAAUwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAGQAAAAAAAAAZAAAAFMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAABjAAAAAAAAAGQAAABTAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAZAAAAAAAAABkAAAAUwAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAGMAAAAAAAAAZAAAAFMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADMAAAAzAAAAUwAAAFMAAABTAAAAUwAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAzAAAAMwAAAGQAAABTAAAAUwAAAFMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAACFgAAABYAAAMWAAACFgAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAA4AAAAOAAAAPAAAABYAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,4: ind: -1,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAEaAAACGgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADGgAAAxoAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAGgAAAhoAAAIaAAACAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFcAAABoAAAAAAAAAGcAAAAAAAAAaAAAABoAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABXAAAAaAAAAAAAAABoAAAAAAAAAGgAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAVwAAAGgAAAAAAAAAZwAAAAAAAABoAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAFcAAABoAAAAAAAAAGgAAAAAAAAAaAAAABoAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABXAAAAaAAAAAAAAABnAAAAAAAAAGgAAAAaAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAFcAAABXAAAAVwAAAFcAAAA3AAAANwAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABXAAAAVwAAAFcAAABoAAAANwAAADcAAAA3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAGgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAhoAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAGgAAABoAAAEaAAACGgAAARoAAAEaAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAABoAAABAAAAAEgAAABIAAAASAAAAEgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAEWAAACFgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADFgAAAxYAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAFMAAABTAAAAUwAAAFMAAABTAAAAFgAAAhYAAAIWAAACAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFMAAABkAAAAAAAAAGMAAAAAAAAAZAAAABYAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABTAAAAZAAAAAAAAABkAAAAAAAAAGQAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAUwAAAGQAAAAAAAAAYwAAAAAAAABkAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAFMAAABkAAAAAAAAAGQAAAAAAAAAZAAAABYAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABTAAAAZAAAAAAAAABjAAAAAAAAAGQAAAAWAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAFMAAABTAAAAUwAAAFMAAAAzAAAAMwAAADMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABTAAAAUwAAAFMAAABkAAAAMwAAADMAAAAzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAFgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAhYAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAFgAAABYAAAEWAAACFgAAARYAAAEWAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAABYAAAA8AAAADgAAAA4AAAAOAAAADgAAAA== -1,5: ind: -1,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAABoAAAMSAAAAEgAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAAAaAAAAEgAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAGgAAABIAAABoAAAAaAAAAGgAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAEAAAAASAAAAGgAAAxoAAAAaAAADGgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAAAaAAAAEgAAAGgAAABoAAAAEgAAABIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAGgAAAhIAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAABoAAAMSAAAAEgAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAAAaAAAAQAAAABIAAAASAAAAEgAAABIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAGgAAAxoAAAEaAAAAGgAAAxoAAAIaAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAABYAAAMOAAAADgAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAAAWAAAADgAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAFgAAAA4AAABkAAAAZAAAAGQAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAADwAAAAOAAAAFgAAAxYAAAAWAAADFgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAAAWAAAADgAAAGQAAABkAAAADgAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAFgAAAg4AAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAABYAAAMOAAAADgAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAAAWAAAAPAAAAA4AAAAOAAAADgAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAFgAAAxYAAAEWAAAAFgAAAxYAAAIWAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,5: ind: 0,5 - tiles: aAAAAGgAAAASAAAAEgAAABoAAAFoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAABIAAAAaAAABaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAASAAAAGgAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAhoAAAEaAAADEgAAAEAAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAABoAAAAaAAAABIAAAAaAAADaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAASAAAAGgAAA2gAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAASAAAAEgAAABoAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAAASAAAAEgAAAEAAAAAaAAACaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAABGgAAAWgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAGgAAARoAAANoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAGQAAAAOAAAADgAAABYAAAFkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAA4AAAAWAAABZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAOAAAAFgAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAhYAAAEWAAADDgAAADwAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAABkAAAAZAAAAA4AAAAWAAADZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAOAAAAFgAAA2QAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAOAAAADgAAABYAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAOAAAADgAAADwAAAAWAAACZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAFgAAABYAAAAWAAABFgAAAWQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAFgAAARYAAANkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,3: ind: 2,3 - tiles: AAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,-5: ind: 2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAA0AAAMKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAANAAAECgAAAAoAAAAKAAAACgAAAAsAAAILAAACCgAAAAoAAAAKAAAACgAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAABpAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAANAAADCgAAAAoAAAAKAAAAaQAAAAoAAAAKAAAACgAAAAsAAAMKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAADQAAAg0AAAZpAAAAaQAAAGkAAABpAAAAaQAAAAoAAAALAAADCgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAANAAAHCgAAAAoAAABpAAAACgAAAAoAAAALAAABCwAAAwoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaQAAAAoAAAANAAAECwAAAw0AAAcKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAA0AAAcNAAAFDQAABQoAAAANAAAECgAAAAoAAAAKAAAACgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAgAAAMGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAIAAAEBgAAAAYAAAAGAAAABgAAAAYAAAIGAAACBgAAAAYAAAAGAAAABgAAAAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAABlAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAIAAADBgAAAAYAAAAGAAAAZQAAAAYAAAAGAAAABgAAAAYAAAMGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAACAAAAggAAAZlAAAAZQAAAGUAAABlAAAAZQAAAAYAAAAGAAADBgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAIAAAHBgAAAAYAAABlAAAABgAAAAYAAAAGAAABBgAAAwYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZQAAAAYAAAAIAAAEBgAAAwgAAAcGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAgAAAcIAAAFCAAABQYAAAAIAAAEBgAAAAYAAAAGAAAABgAAAA== 1,-5: ind: 1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAA== 1,-4: ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,0: ind: 3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,4: ind: 1,4 - tiles: AAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -5,0: ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAA== -5,1: ind: -5,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - bodyStatus: InAir @@ -9111,16 +9110,25 @@ entities: - pos: 19.5,33.5 parent: 30 type: Transform + - links: + - 16041 + type: DeviceLinkSink - uid: 6414 components: - pos: 19.5,36.5 parent: 30 type: Transform + - links: + - 16042 + type: DeviceLinkSink - uid: 6415 components: - pos: 19.5,39.5 parent: 30 type: Transform + - links: + - 16116 + type: DeviceLinkSink - uid: 6494 components: - pos: 28.5,25.5 @@ -9952,28 +9960,28 @@ entities: type: Transform - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - - uid: 1564 + - uid: 16406 components: - rot: -1.5707963267948966 rad - pos: -64.5,15.5 + pos: -65.5,13.5 parent: 30 type: Transform - - uid: 7673 + - uid: 16407 components: - rot: -1.5707963267948966 rad - pos: -64.5,23.5 + pos: -65.5,15.5 parent: 30 type: Transform - - uid: 7674 + - uid: 16408 components: - rot: -1.5707963267948966 rad - pos: -64.5,21.5 + pos: -65.5,21.5 parent: 30 type: Transform - - uid: 8832 + - uid: 16409 components: - rot: -1.5707963267948966 rad - pos: -64.5,13.5 + pos: -65.5,23.5 parent: 30 type: Transform - proto: AirlockExternalGlassShuttleEscape @@ -11032,11 +11040,6 @@ entities: - pos: 32.5,13.5 parent: 30 type: Transform - - uid: 13338 - components: - - pos: 28.5,17.5 - parent: 30 - type: Transform - proto: AirlockResearchDirectorLocked entities: - uid: 12760 @@ -11046,6 +11049,13 @@ entities: - pos: 32.5,10.5 parent: 30 type: Transform + - uid: 12787 + components: + - name: RD Office + type: MetaData + - pos: 28.5,17.5 + parent: 30 + type: Transform - proto: AirlockSalvageGlassLocked entities: - uid: 1908 @@ -12821,26 +12831,6 @@ entities: - pos: -52.5,-3.5 parent: 30 type: Transform - - uid: 1145 - components: - - pos: -64.5,15.5 - parent: 30 - type: Transform - - uid: 1148 - components: - - pos: -64.5,23.5 - parent: 30 - type: Transform - - uid: 1149 - components: - - pos: -64.5,21.5 - parent: 30 - type: Transform - - uid: 1152 - components: - - pos: -64.5,13.5 - parent: 30 - type: Transform - uid: 3707 components: - pos: 25.5,43.5 @@ -12881,6 +12871,26 @@ entities: - pos: -59.5,-3.5 parent: 30 type: Transform + - uid: 16402 + components: + - pos: -65.5,23.5 + parent: 30 + type: Transform + - uid: 16403 + components: + - pos: -65.5,21.5 + parent: 30 + type: Transform + - uid: 16404 + components: + - pos: -65.5,15.5 + parent: 30 + type: Transform + - uid: 16405 + components: + - pos: -65.5,13.5 + parent: 30 + type: Transform - proto: AtmosFixBlockerMarker entities: - uid: 16997 @@ -49728,6 +49738,11 @@ entities: - pos: -73.5,44.5 parent: 30 type: Transform + - uid: 16418 + components: + - pos: -59.5,13.5 + parent: 30 + type: Transform - uid: 16427 components: - pos: -77.5,44.5 @@ -50048,11 +50063,46 @@ entities: - pos: -73.5,55.5 parent: 30 type: Transform + - uid: 16649 + components: + - pos: -60.5,13.5 + parent: 30 + type: Transform - uid: 16650 components: - pos: -73.5,45.5 parent: 30 type: Transform + - uid: 16651 + components: + - pos: -61.5,13.5 + parent: 30 + type: Transform + - uid: 16652 + components: + - pos: -62.5,13.5 + parent: 30 + type: Transform + - uid: 16653 + components: + - pos: -63.5,13.5 + parent: 30 + type: Transform + - uid: 16654 + components: + - pos: -64.5,13.5 + parent: 30 + type: Transform + - uid: 16658 + components: + - pos: -64.5,15.5 + parent: 30 + type: Transform + - uid: 16659 + components: + - pos: -63.5,15.5 + parent: 30 + type: Transform - uid: 16757 components: - pos: -46.5,21.5 @@ -50098,6 +50148,11 @@ entities: - pos: -46.5,19.5 parent: 30 type: Transform + - uid: 16767 + components: + - pos: -62.5,15.5 + parent: 30 + type: Transform - uid: 16900 components: - pos: -49.5,27.5 @@ -50138,6 +50193,11 @@ entities: - pos: -56.5,27.5 parent: 30 type: Transform + - uid: 16942 + components: + - pos: -61.5,15.5 + parent: 30 + type: Transform - uid: 16955 components: - pos: -60.5,32.5 @@ -50168,6 +50228,46 @@ entities: - pos: -60.5,37.5 parent: 30 type: Transform + - uid: 16984 + components: + - pos: -60.5,15.5 + parent: 30 + type: Transform + - uid: 16985 + components: + - pos: -59.5,15.5 + parent: 30 + type: Transform + - uid: 16986 + components: + - pos: -59.5,21.5 + parent: 30 + type: Transform + - uid: 16988 + components: + - pos: -60.5,21.5 + parent: 30 + type: Transform + - uid: 16989 + components: + - pos: -61.5,21.5 + parent: 30 + type: Transform + - uid: 17064 + components: + - pos: -62.5,21.5 + parent: 30 + type: Transform + - uid: 17069 + components: + - pos: -63.5,21.5 + parent: 30 + type: Transform + - uid: 17070 + components: + - pos: -64.5,21.5 + parent: 30 + type: Transform - uid: 17080 components: - pos: 73.5,30.5 @@ -50244,6 +50344,26 @@ entities: - pos: 74.5,30.5 parent: 30 type: Transform + - uid: 17117 + components: + - pos: -64.5,23.5 + parent: 30 + type: Transform + - uid: 17961 + components: + - pos: -63.5,23.5 + parent: 30 + type: Transform + - uid: 18058 + components: + - pos: -62.5,23.5 + parent: 30 + type: Transform + - uid: 18209 + components: + - pos: -61.5,23.5 + parent: 30 + type: Transform - uid: 18286 components: - rot: 1.5707963267948966 rad @@ -50316,6 +50436,16 @@ entities: pos: -38.5,-39.5 parent: 30 type: Transform + - uid: 18693 + components: + - pos: -60.5,23.5 + parent: 30 + type: Transform + - uid: 18694 + components: + - pos: -59.5,23.5 + parent: 30 + type: Transform - uid: 19591 components: - pos: -29.5,-39.5 @@ -55002,11 +55132,6 @@ entities: - pos: -52.504753,53.54799 parent: 30 type: Transform - - uid: 12785 - components: - - pos: 20.45908,19.4431 - parent: 30 - type: Transform - uid: 21252 components: - pos: -25.5,-0.5 @@ -55172,6 +55297,13 @@ entities: - pos: 6.677844,12.539545 parent: 30 type: Transform +- proto: ClothingHeadHatOrangesoft + entities: + - uid: 16397 + components: + - pos: -43.522255,67.5059 + parent: 30 + type: Transform - proto: ClothingHeadHatPaper entities: - uid: 10186 @@ -55909,7 +56041,7 @@ entities: entities: - uid: 15279 components: - - pos: -17.545338,13.157639 + - pos: -18.498985,14.240025 parent: 30 type: Transform - proto: ClothingShoesColorWhite @@ -57776,6 +57908,11 @@ entities: - EntityStorageComponent - entity_storage type: Construction + - uid: 7674 + components: + - pos: 17.5,18.5 + parent: 30 + type: Transform - proto: CrateNPCCow entities: - uid: 494 @@ -67970,10 +68107,10 @@ entities: type: Transform - proto: FoodCartCold entities: - - uid: 12815 + - uid: 4453 components: - rot: -1.5707963267948966 rad - pos: -17.5,17.5 + pos: -17.5,13.5 parent: 30 type: Transform - proto: FoodCartHot @@ -94646,6 +94783,11 @@ entities: - pos: -7.5,-5.5 parent: 30 type: Transform + - uid: 478 + components: + - pos: -64.5,12.5 + parent: 30 + type: Transform - uid: 706 components: - pos: -11.5,24.5 @@ -94816,6 +94958,11 @@ entities: - pos: -46.5,5.5 parent: 30 type: Transform + - uid: 898 + components: + - pos: -64.5,14.5 + parent: 30 + type: Transform - uid: 915 components: - pos: -55.5,6.5 @@ -98434,6 +98581,26 @@ entities: - pos: -66.5,44.5 parent: 30 type: Transform + - uid: 16398 + components: + - pos: -64.5,16.5 + parent: 30 + type: Transform + - uid: 16399 + components: + - pos: -64.5,20.5 + parent: 30 + type: Transform + - uid: 16400 + components: + - pos: -64.5,22.5 + parent: 30 + type: Transform + - uid: 16401 + components: + - pos: -64.5,24.5 + parent: 30 + type: Transform - uid: 16435 components: - pos: -91.5,43.5 @@ -101197,13 +101364,6 @@ entities: - pos: -11.5,-57.5 parent: 30 type: Transform -- proto: Hemostat - entities: - - uid: 12786 - components: - - pos: 17.505955,19.427475 - parent: 30 - type: Transform - proto: HighSecCommandLocked entities: - uid: 2128 @@ -101262,6 +101422,11 @@ entities: - pos: -20.5,-22.5 parent: 30 type: Transform + - uid: 13087 + components: + - pos: -43.5,64.5 + parent: 30 + type: Transform - uid: 21246 components: - pos: -20.5,-13.5 @@ -101272,7 +101437,7 @@ entities: - pos: -23.5,-11.5 parent: 30 type: Transform - - SecondsUntilStateChange: -5585.641 + - SecondsUntilStateChange: -6245.4434 state: Closing type: Door - uid: 21248 @@ -103221,6 +103386,18 @@ entities: - pos: -2.5235682,19.807577 parent: 30 type: Transform +- proto: JetpackSecurityFilled + entities: + - uid: 12815 + components: + - pos: -39.62777,56.71206 + parent: 30 + type: Transform + - uid: 12859 + components: + - pos: -39.62777,56.71206 + parent: 30 + type: Transform - proto: KitchenMicrowave entities: - uid: 483 @@ -103292,7 +103469,12 @@ entities: type: Transform - proto: KitchenSpike entities: - - uid: 478 + - uid: 1152 + components: + - pos: -20.5,14.5 + parent: 30 + type: Transform + - uid: 9724 components: - pos: -20.5,16.5 parent: 30 @@ -103304,28 +103486,6 @@ entities: - pos: -43.612717,31.902554 parent: 30 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - uid: 4953 components: - pos: -22.461006,36.440132 @@ -103420,55 +103580,11 @@ entities: - pos: 4.5292673,10.977108 parent: 30 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - uid: 4994 components: - pos: -21.514103,31.706543 parent: 30 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - uid: 5023 components: - pos: -19.477777,35.681534 @@ -103539,28 +103655,6 @@ entities: - pos: -57.92594,-62.49692 parent: 30 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - uid: 21670 components: - pos: -57.51036,-43.24328 @@ -105638,13 +105732,6 @@ entities: - pos: -9.512679,14.6846485 parent: 30 type: Transform -- proto: MonkeyCubeBox - entities: - - uid: 21704 - components: - - pos: 20.466301,18.680004 - parent: 30 - type: Transform - proto: MopBucket entities: - uid: 548 @@ -105878,6 +105965,12 @@ entities: - 0 - 0 type: EntityStorage + - uid: 8832 + components: + - rot: 3.141592653589793 rad + pos: 20.5,18.5 + parent: 30 + type: Transform - uid: 17631 components: - rot: 1.5707963267948966 rad @@ -108933,27 +109026,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 4438 - components: - - pos: 3.5,8.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4453 - components: - - pos: -0.5,15.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4454 - components: - - pos: -4.5,15.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 4783 components: - pos: -43.5,49.5 @@ -110555,14 +110627,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 13087 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,13.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 13363 components: - pos: 18.5,16.5 @@ -111088,6 +111152,12 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 3169 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,15.5 + parent: 30 + type: Transform - uid: 3196 components: - rot: -1.5707963267948966 rad @@ -111162,11 +111232,10 @@ entities: type: ApcPowerReceiver - uid: 4423 components: - - pos: -8.5,14.5 + - rot: -1.5707963267948966 rad + pos: 0.5,15.5 parent: 30 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 4425 components: - pos: -11.5,19.5 @@ -111196,6 +111265,12 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 4454 + components: + - rot: 3.141592653589793 rad + pos: -10.5,13.5 + parent: 30 + type: Transform - uid: 4810 components: - rot: 1.5707963267948966 rad @@ -111490,11 +111565,6 @@ entities: pos: -20.5,15.5 parent: 30 type: Transform - - uid: 10256 - components: - - pos: -12.5,14.5 - parent: 30 - type: Transform - uid: 10997 components: - rot: -1.5707963267948966 rad @@ -114167,6 +114237,11 @@ entities: - pos: -22.5,7.5 parent: 30 type: Transform + - uid: 479 + components: + - pos: -64.5,12.5 + parent: 30 + type: Transform - uid: 795 components: - pos: -33.5,-61.5 @@ -114462,6 +114537,16 @@ entities: - pos: -58.5,22.5 parent: 30 type: Transform + - uid: 1145 + components: + - pos: -64.5,14.5 + parent: 30 + type: Transform + - uid: 1148 + components: + - pos: -64.5,22.5 + parent: 30 + type: Transform - uid: 1206 components: - pos: -58.5,20.5 @@ -116332,6 +116417,11 @@ entities: - pos: 23.5,-16.5 parent: 30 type: Transform + - uid: 11438 + components: + - pos: -64.5,16.5 + parent: 30 + type: Transform - uid: 11602 components: - rot: 3.141592653589793 rad @@ -116432,6 +116522,16 @@ entities: - pos: 13.5,13.5 parent: 30 type: Transform + - uid: 12729 + components: + - pos: -64.5,24.5 + parent: 30 + type: Transform + - uid: 12730 + components: + - pos: -64.5,20.5 + parent: 30 + type: Transform - uid: 12803 components: - pos: -39.5,-32.5 @@ -117769,20 +117869,8 @@ entities: pos: 44.5,-18.5 parent: 30 type: Transform -- proto: Saw - entities: - - uid: 12782 - components: - - pos: 17.505955,18.59935 - parent: 30 - type: Transform - proto: Scalpel entities: - - uid: 12787 - components: - - pos: 17.45908,18.97435 - parent: 30 - type: Transform - uid: 21253 components: - pos: -25.5,-0.5 @@ -118258,6 +118346,14 @@ entities: - links: - 583 type: DeviceLinkSink + - uid: 899 + components: + - pos: 29.5,17.5 + parent: 30 + type: Transform + - links: + - 7673 + type: DeviceLinkSink - uid: 1076 components: - pos: -40.5,8.5 @@ -118353,6 +118449,14 @@ entities: - links: - 583 type: DeviceLinkSink + - uid: 4438 + components: + - pos: 27.5,17.5 + parent: 30 + type: Transform + - links: + - 7673 + type: DeviceLinkSink - uid: 4915 components: - pos: 1.5,5.5 @@ -118568,7 +118672,7 @@ entities: parent: 30 type: Transform - links: - - 12859 + - 7673 type: DeviceLinkSink - uid: 13075 components: @@ -118584,7 +118688,7 @@ entities: parent: 30 type: Transform - links: - - 12859 + - 7673 type: DeviceLinkSink - uid: 14352 components: @@ -118592,7 +118696,7 @@ entities: parent: 30 type: Transform - links: - - 12859 + - 7673 type: DeviceLinkSink - uid: 14355 components: @@ -118600,7 +118704,7 @@ entities: parent: 30 type: Transform - links: - - 12859 + - 7673 type: DeviceLinkSink - uid: 20394 components: @@ -119059,21 +119163,6 @@ entities: 12059: - Pressed: Toggle type: DeviceLinkSource - - uid: 12859 - components: - - pos: 30.5,13.5 - parent: 30 - type: Transform - - linkedPorts: - 14352: - - Pressed: Toggle - 14340: - - Pressed: Toggle - 14355: - - Pressed: Toggle - 12810: - - Pressed: Toggle - type: DeviceLinkSource - uid: 12915 components: - pos: 39.5,11.5 @@ -119242,6 +119331,58 @@ entities: 21722: - Pressed: Toggle type: DeviceLinkSource +- proto: SignalButtonDirectional + entities: + - uid: 7673 + components: + - rot: 3.141592653589793 rad + pos: 25.5,12.5 + parent: 30 + type: Transform + - linkedPorts: + 14355: + - Pressed: Toggle + 14340: + - Pressed: Toggle + 14352: + - Pressed: Toggle + 12810: + - Pressed: Toggle + 4438: + - Pressed: Toggle + 899: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 16041 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,34.5 + parent: 30 + type: Transform + - linkedPorts: + 6413: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 16042 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,37.5 + parent: 30 + type: Transform + - linkedPorts: + 6414: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 16116 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,40.5 + parent: 30 + type: Transform + - linkedPorts: + 6415: + - Pressed: DoorBolt + type: DeviceLinkSource - proto: SignArmory entities: - uid: 1927 @@ -120146,6 +120287,18 @@ entities: - pos: -40.5,-11.5 parent: 30 type: Transform + - uid: 16140 + components: + - pos: 19.5,34.5 + parent: 30 + type: Transform +- proto: SignRedThree + entities: + - uid: 16231 + components: + - pos: 19.5,40.5 + parent: 30 + type: Transform - proto: SignRedTwo entities: - uid: 6885 @@ -120153,6 +120306,11 @@ entities: - pos: -40.5,-14.5 parent: 30 type: Transform + - uid: 16141 + components: + - pos: 19.5,37.5 + parent: 30 + type: Transform - proto: SignRND entities: - uid: 13372 @@ -122252,6 +122410,18 @@ entities: - pos: -9.5,18.5 parent: 30 type: Transform +- proto: SpawnPointBorg + entities: + - uid: 2371 + components: + - pos: 22.5,20.5 + parent: 30 + type: Transform + - uid: 12786 + components: + - pos: 23.5,20.5 + parent: 30 + type: Transform - proto: SpawnPointBotanist entities: - uid: 503 @@ -122957,6 +123127,11 @@ entities: pos: 34.5,30.5 parent: 30 type: Transform + - uid: 13338 + components: + - pos: -44.5,64.5 + parent: 30 + type: Transform - uid: 16632 components: - pos: 12.5,59.5 @@ -125401,11 +125576,6 @@ entities: - pos: -11.5,-34.5 parent: 30 type: Transform - - uid: 11438 - components: - - pos: 17.5,18.5 - parent: 30 - type: Transform - uid: 11473 components: - pos: -36.5,0.5 @@ -125477,26 +125647,11 @@ entities: - pos: 25.5,31.5 parent: 30 type: Transform - - uid: 12729 - components: - - pos: 17.5,19.5 - parent: 30 - type: Transform - - uid: 12730 - components: - - pos: 20.5,18.5 - parent: 30 - type: Transform - uid: 12761 components: - pos: 33.5,11.5 parent: 30 type: Transform - - uid: 12781 - components: - - pos: 20.5,19.5 - parent: 30 - type: Transform - uid: 12833 components: - pos: 24.5,10.5 @@ -127334,6 +127489,31 @@ entities: pos: -40.5,59.5 parent: 30 type: Transform +- proto: TegCenter + entities: + - uid: 16040 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-50.5 + parent: 30 + type: Transform +- proto: TegCirculator + entities: + - uid: 15013 + components: + - pos: -6.5,-50.5 + parent: 30 + type: Transform + - color: '#FF3300FF' + type: PointLight + - uid: 16038 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-50.5 + parent: 30 + type: Transform + - color: '#FF3300FF' + type: PointLight - proto: TelecomServer entities: - uid: 22621 @@ -128320,11 +128500,11 @@ entities: type: Transform - proto: VendingMachineChefDrobe entities: - - uid: 479 + - uid: 1564 components: - flags: SessionSpecific type: MetaData - - pos: -20.5,14.5 + - pos: -17.5,17.5 parent: 30 type: Transform - proto: VendingMachineChefvend @@ -128542,13 +128722,6 @@ entities: type: Transform - proto: VendingMachineCola entities: - - uid: 2371 - components: - - flags: SessionSpecific - type: MetaData - - pos: -52.5,63.5 - parent: 30 - type: Transform - uid: 5415 components: - flags: SessionSpecific @@ -128860,6 +129033,13 @@ entities: - pos: -35.5,-9.5 parent: 30 type: Transform + - uid: 10256 + components: + - flags: SessionSpecific + type: MetaData + - pos: -52.5,63.5 + parent: 30 + type: Transform - proto: VendingMachineTankDispenserEngineering entities: - uid: 16634 @@ -129298,7 +129478,7 @@ entities: type: Transform - uid: 882 components: - - pos: -64.5,24.5 + - pos: -65.5,24.5 parent: 30 type: Transform - uid: 886 @@ -129311,19 +129491,9 @@ entities: - pos: -60.5,6.5 parent: 30 type: Transform - - uid: 898 - components: - - pos: -64.5,20.5 - parent: 30 - type: Transform - - uid: 899 - components: - - pos: -64.5,22.5 - parent: 30 - type: Transform - uid: 900 components: - - pos: -64.5,16.5 + - pos: -65.5,12.5 parent: 30 type: Transform - uid: 910 @@ -129432,6 +129602,11 @@ entities: - pos: -60.5,16.5 parent: 30 type: Transform + - uid: 1149 + components: + - pos: -65.5,16.5 + parent: 30 + type: Transform - uid: 1154 components: - pos: -58.5,25.5 @@ -130617,11 +130792,6 @@ entities: - pos: -42.5,63.5 parent: 30 type: Transform - - uid: 3169 - components: - - pos: -64.5,12.5 - parent: 30 - type: Transform - uid: 3524 components: - pos: -51.5,46.5 @@ -133744,11 +133914,6 @@ entities: pos: -7.5,-59.5 parent: 30 type: Transform - - uid: 9724 - components: - - pos: -64.5,14.5 - parent: 30 - type: Transform - uid: 9806 components: - pos: -51.5,-3.5 @@ -134835,6 +135000,21 @@ entities: - pos: 30.5,17.5 parent: 30 type: Transform + - uid: 12781 + components: + - pos: -65.5,20.5 + parent: 30 + type: Transform + - uid: 12782 + components: + - pos: -65.5,22.5 + parent: 30 + type: Transform + - uid: 12785 + components: + - pos: -65.5,14.5 + parent: 30 + type: Transform - uid: 12791 components: - pos: -39.5,-36.5 diff --git a/Resources/Maps/meta.yml b/Resources/Maps/meta.yml index a1e71473476..5b2afd3d71a 100644 --- a/Resources/Maps/meta.yml +++ b/Resources/Maps/meta.yml @@ -5,45 +5,45 @@ tilemap: 0: Space 2: FloorArcadeBlue2 3: FloorArcadeRed - 10: FloorAsteroidSand - 14: FloorAsteroidTile - 15: FloorBar - 18: FloorBlueCircuit - 21: FloorCarpetClown - 23: FloorCave - 25: FloorClown - 26: FloorDark - 38: FloorEighties - 41: FloorFreezer - 44: FloorGrass - 45: FloorGrassDark - 46: FloorGrassJungle - 48: FloorGreenCircuit - 52: FloorHydro - 54: FloorLaundry - 55: FloorLino - 57: FloorMetalDiamond - 58: FloorMime - 59: FloorMono - 62: FloorPlastic - 63: FloorRGlass - 64: FloorReinforced - 65: FloorReinforcedHardened - 67: FloorShowroom - 70: FloorShuttlePurple - 74: FloorSnow - 75: FloorSteel - 77: FloorSteelCheckerLight - 80: FloorSteelDirty - 83: FloorSteelMono - 85: FloorSteelPavement - 87: FloorTechMaint - 88: FloorTechMaint2 - 91: FloorWhite - 100: FloorWhitePlastic - 101: FloorWood - 103: Lattice - 104: Plating + 6: FloorAsteroidSand + 10: FloorAsteroidTile + 11: FloorBar + 14: FloorBlueCircuit + 17: FloorCarpetClown + 19: FloorCave + 21: FloorClown + 22: FloorDark + 34: FloorEighties + 37: FloorFreezer + 40: FloorGrass + 41: FloorGrassDark + 42: FloorGrassJungle + 44: FloorGreenCircuit + 48: FloorHydro + 50: FloorLaundry + 51: FloorLino + 53: FloorMetalDiamond + 54: FloorMime + 55: FloorMono + 58: FloorPlastic + 59: FloorRGlass + 60: FloorReinforced + 61: FloorReinforcedHardened + 63: FloorShowroom + 66: FloorShuttlePurple + 70: FloorSnow + 71: FloorSteel + 73: FloorSteelCheckerLight + 76: FloorSteelDirty + 79: FloorSteelMono + 81: FloorSteelPavement + 83: FloorTechMaint + 84: FloorTechMaint2 + 87: FloorWhite + 96: FloorWhitePlastic + 97: FloorWood + 99: Lattice + 100: Plating entities: - proto: "" entities: @@ -67,289 +67,289 @@ entities: - chunks: -1,0: ind: -1,0 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAARoAAAIaAAACGgAAAxoAAAIaAAABGgAAAxoAAAIaAAACGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAABoAAAEaAAAAGgAAAhoAAAEaAAADGgAAARoAAAEaAAAAGgAAAhoAAAFoAAAAaAAAAFcAAABoAAAAaAAAAGgAAAAaAAABGgAAABoAAAMaAAAAGgAAAhoAAAEaAAAAGgAAARoAAAIaAAACSwAAAWgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADGgAAARoAAAAaAAABGgAAABoAAAEaAAAAGgAAA0sAAANoAAAAVwAAAGgAAABoAAAAZwAAAGcAAABoAAAAGgAAAhoAAAMaAAADGgAAARoAAAIaAAADGgAAAxoAAABLAAADWAAAAGgAAABoAAAAaAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAWgAAABXAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAA0sAAAFLAAABSwAAAUsAAAFLAAACSwAAAUsAAAFLAAACSwAAAksAAANLAAABSwAAAUsAAAJLAAABSwAAA0sAAAJLAAABSwAAAksAAANLAAADSwAAAksAAANLAAABSwAAAEsAAANLAAAASwAAAksAAANLAAABSwAAAUsAAABLAAADSwAAAUsAAANLAAABSwAAAEsAAAFLAAAASwAAA0sAAABLAAADSwAAAUsAAANLAAADSwAAAUsAAAAaAAABGgAAABoAAAFoAAAAaAAAABoAAANoAAAAaAAAAEsAAAFLAAABSwAAAUsAAABLAAABSwAAAksAAANLAAACaAAAAGgAAABoAAAAaAAAABoAAAIaAAACGgAAAWgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAFLAAABaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAGgAAAWgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAEsAAABLAAACSwAAAmgAAABnAAAAaAAAAGgAAABoAAAAGgAAARoAAAIaAAADaAAAAGgAAABoAAAAZwAAAGgAAABLAAAASwAAAEsAAAAaAAAAAAAAAGgAAAAaAAABEgAAABIAAAAaAAAAEgAAABIAAAAaAAADaAAAAAAAAABoAAAASwAAA0sAAAJLAAABaAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAARYAAAIWAAACFgAAAxYAAAIWAAABFgAAAxYAAAIWAAACFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAABYAAAEWAAAAFgAAAhYAAAEWAAADFgAAARYAAAEWAAAAFgAAAhYAAAFkAAAAZAAAAFMAAABkAAAAZAAAAGQAAAAWAAABFgAAABYAAAMWAAAAFgAAAhYAAAEWAAAAFgAAARYAAAIWAAACRwAAAWQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADFgAAARYAAAAWAAABFgAAABYAAAEWAAAAFgAAA0cAAANkAAAAUwAAAGQAAABkAAAAYwAAAGMAAABkAAAAFgAAAhYAAAMWAAADFgAAARYAAAIWAAADFgAAAxYAAABHAAADVAAAAGQAAABkAAAAZAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAWQAAABTAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAA0cAAAFHAAABRwAAAUcAAAFHAAACRwAAAUcAAAFHAAACRwAAAkcAAANHAAABRwAAAUcAAAJHAAABRwAAA0cAAAJHAAABRwAAAkcAAANHAAADRwAAAkcAAANHAAABRwAAAEcAAANHAAAARwAAAkcAAANHAAABRwAAAUcAAABHAAADRwAAAUcAAANHAAABRwAAAEcAAAFHAAAARwAAA0cAAABHAAADRwAAAUcAAANHAAADRwAAAUcAAAAWAAABFgAAABYAAAFkAAAAZAAAABYAAANkAAAAZAAAAEcAAAFHAAABRwAAAUcAAABHAAABRwAAAkcAAANHAAACZAAAAGQAAABkAAAAZAAAABYAAAIWAAACFgAAAWQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAAFHAAABZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAFgAAAWQAAABkAAAAAAAAAAAAAAAAAAAAZAAAAEcAAABHAAACRwAAAmQAAABjAAAAZAAAAGQAAABkAAAAFgAAARYAAAIWAAADZAAAAGQAAABkAAAAYwAAAGQAAABHAAAARwAAAEcAAAAWAAAAAAAAAGQAAAAWAAABDgAAAA4AAAAWAAAADgAAAA4AAAAWAAADZAAAAAAAAABkAAAARwAAA0cAAAJHAAABZAAAAA== 0,0: ind: 0,0 - tiles: GgAAABoAAAIaAAAAGgAAARoAAAIaAAABaAAAABoAAAMaAAAAGgAAAhoAAAAaAAABaAAAAGgAAABoAAAASwAAAxoAAAMaAAACGgAAAhoAAAIaAAACaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAaAAAAGgAAABoAAAAaAAAAEsAAAMaAAACGgAAAxoAAAIaAAABGgAAAGgAAAApAAAAKQAAACkAAAAaAAAAGgAAAxoAAAAaAAACGgAAAGgAAABLAAABGgAAAhoAAAMaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAABlAAABLgAAAC4AAABoAAAASwAAAxoAAAIaAAABGgAAAGgAAABnAAAAZwAAAGgAAABlAAADZQAAAWUAAAJlAAADZQAAAmUAAABlAAAAaAAAAEsAAAFoAAAAaAAAAGgAAABoAAAAZwAAAAAAAABoAAAAZQAAAWUAAAJlAAAAZQAAAmUAAANlAAABZQAAAGgAAABLAAABZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAABoAAAEaAAACGgAAAhoAAAAaAAAAGgAAAhoAAABoAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAABSwAAAEsAAAFLAAAASwAAAksAAAFLAAAASwAAAUsAAAFLAAADSwAAAUsAAABLAAADSwAAAUsAAANLAAAASwAAA0sAAAJLAAADSwAAAksAAABLAAACSwAAAEsAAANLAAABSwAAAUsAAANLAAAASwAAAUsAAAJLAAACSwAAAUsAAABLAAACSwAAA0sAAAFLAAACSwAAAEsAAAJLAAACSwAAA0sAAANLAAABSwAAAksAAANLAAAASwAAAEsAAAJLAAADSwAAAksAAABoAAAAaAAAAGgAAAAaAAADaAAAAGgAAABoAAAAaAAAAEsAAABLAAAAaAAAAGgAAAAaAAACaAAAAGgAAABoAAAAaAAAABoAAAIaAAABGgAAAxoAAAIaAAACaAAAAEsAAAFLAAAASwAAAEsAAANoAAAAaAAAABoAAAIaAAABGgAAAhoAAAIaAAACGgAAAxoAAAMaAAACGgAAAmgAAABLAAADSwAAA0sAAAFLAAABSwAAAEsAAAIaAAADGgAAARoAAAMaAAACGgAAABoAAAMaAAAAGgAAAhoAAAAaAAABSwAAA0sAAANLAAAASwAAAksAAAFoAAAAGgAAAxoAAAAaAAACGgAAABoAAAMaAAAAGgAAAhoAAAIaAAABaAAAAEsAAAJLAAACSwAAAUsAAAJLAAABSwAAAA== + tiles: FgAAABYAAAIWAAAAFgAAARYAAAIWAAABZAAAABYAAAMWAAAAFgAAAhYAAAAWAAABZAAAAGQAAABkAAAARwAAAxYAAAMWAAACFgAAAhYAAAIWAAACZAAAAGQAAABkAAAAZAAAAGQAAAAWAAAAZAAAAGQAAABkAAAAZAAAAEcAAAMWAAACFgAAAxYAAAIWAAABFgAAAGQAAAAlAAAAJQAAACUAAAAWAAAAFgAAAxYAAAAWAAACFgAAAGQAAABHAAABFgAAAhYAAAMWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAABhAAABKgAAACoAAABkAAAARwAAAxYAAAIWAAABFgAAAGQAAABjAAAAYwAAAGQAAABhAAADYQAAAWEAAAJhAAADYQAAAmEAAABhAAAAZAAAAEcAAAFkAAAAZAAAAGQAAABkAAAAYwAAAAAAAABkAAAAYQAAAWEAAAJhAAAAYQAAAmEAAANhAAABYQAAAGQAAABHAAABYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAABYAAAEWAAACFgAAAhYAAAAWAAAAFgAAAhYAAABkAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAABRwAAAEcAAAFHAAAARwAAAkcAAAFHAAAARwAAAUcAAAFHAAADRwAAAUcAAABHAAADRwAAAUcAAANHAAAARwAAA0cAAAJHAAADRwAAAkcAAABHAAACRwAAAEcAAANHAAABRwAAAUcAAANHAAAARwAAAUcAAAJHAAACRwAAAUcAAABHAAACRwAAA0cAAAFHAAACRwAAAEcAAAJHAAACRwAAA0cAAANHAAABRwAAAkcAAANHAAAARwAAAEcAAAJHAAADRwAAAkcAAABkAAAAZAAAAGQAAAAWAAADZAAAAGQAAABkAAAAZAAAAEcAAABHAAAAZAAAAGQAAAAWAAACZAAAAGQAAABkAAAAZAAAABYAAAIWAAABFgAAAxYAAAIWAAACZAAAAEcAAAFHAAAARwAAAEcAAANkAAAAZAAAABYAAAIWAAABFgAAAhYAAAIWAAACFgAAAxYAAAMWAAACFgAAAmQAAABHAAADRwAAA0cAAAFHAAABRwAAAEcAAAIWAAADFgAAARYAAAMWAAACFgAAABYAAAMWAAAAFgAAAhYAAAAWAAABRwAAA0cAAANHAAAARwAAAkcAAAFkAAAAFgAAAxYAAAAWAAACFgAAABYAAAMWAAAAFgAAAhYAAAIWAAABZAAAAEcAAAJHAAACRwAAAUcAAAJHAAABRwAAAA== 0,-1: ind: 0,-1 - tiles: ZQAAAmUAAAFlAAACaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAAAaAAACSwAAAWUAAABlAAAAZQAAAWgAAAAAAAAAaAAAAEAAAAAwAAAAMAAAADAAAABAAAAAaAAAAAAAAABoAAAAGgAAAUsAAAFlAAABZQAAAWUAAABoAAAAAAAAAGgAAABAAAAAQAAAAEAAAABAAAAAQAAAAGgAAAAAAAAAaAAAABoAAABLAAABaAAAAGgAAABoAAAAaAAAAAAAAABoAAAAQAAAAEAAAABAAAAAQAAAAEAAAABoAAAAAAAAAGgAAAAaAAACSwAAAUsAAAFoAAAAZwAAAGgAAABnAAAAaAAAAGgAAABoAAAAGgAAAGgAAABoAAAAaAAAAGcAAABoAAAAGgAAAEsAAAFLAAACaAAAAGcAAABoAAAAAAAAAAAAAABnAAAAaAAAABoAAABoAAAAZwAAAAAAAAAAAAAAaAAAABoAAANLAAADSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAANLAAABSwAAAksAAAJLAAABSwAAAksAAAFLAAACSwAAAUsAAAFLAAABSwAAA0sAAANLAAADSwAAAksAAAJLAAADSwAAAUsAAAJLAAACSwAAAUsAAAJLAAAASwAAAEsAAABLAAAASwAAAksAAABLAAABSwAAAEsAAAJLAAACaAAAAGgAAABoAAAAGgAAAhoAAAJoAAAAaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAASwAAAjcAAAAaAAAAaAAAABoAAAIaAAACaAAAABoAAABlAAADZQAAAmUAAANlAAADZQAAAGgAAABoAAAAaAAAAEsAAAE3AAAAGgAAABoAAAEaAAAAGgAAABoAAAMaAAABZQAAA2UAAAJlAAACZQAAAmUAAAJoAAAAaAAAAGgAAABLAAAANwAAABoAAABoAAAAGgAAAhoAAANoAAAAGgAAAGUAAAJlAAACZQAAA2UAAANlAAACWAAAAGgAAABoAAAASwAAAWgAAAAaAAACaAAAABoAAAMaAAABaAAAABoAAAFlAAAAZQAAA2UAAANlAAABZQAAAWgAAABoAAAAaAAAAEsAAAFoAAAAaAAAAGgAAAAaAAABGgAAA2gAAABoAAAAZQAAAGUAAAFlAAAAZQAAA2UAAAJoAAAAaAAAAFgAAABLAAABGgAAAhoAAAAaAAAAGgAAAhoAAAEaAAADaAAAAGUAAABlAAACZQAAAmUAAAJlAAACaAAAAGgAAABoAAAASwAAAg== + tiles: YQAAAmEAAAFhAAACZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAAAWAAACRwAAAWEAAABhAAAAYQAAAWQAAAAAAAAAZAAAADwAAAAsAAAALAAAACwAAAA8AAAAZAAAAAAAAABkAAAAFgAAAUcAAAFhAAABYQAAAWEAAABkAAAAAAAAAGQAAAA8AAAAPAAAADwAAAA8AAAAPAAAAGQAAAAAAAAAZAAAABYAAABHAAABZAAAAGQAAABkAAAAZAAAAAAAAABkAAAAPAAAADwAAAA8AAAAPAAAADwAAABkAAAAAAAAAGQAAAAWAAACRwAAAUcAAAFkAAAAYwAAAGQAAABjAAAAZAAAAGQAAABkAAAAFgAAAGQAAABkAAAAZAAAAGMAAABkAAAAFgAAAEcAAAFHAAACZAAAAGMAAABkAAAAAAAAAAAAAABjAAAAZAAAABYAAABkAAAAYwAAAAAAAAAAAAAAZAAAABYAAANHAAADRwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAANHAAABRwAAAkcAAAJHAAABRwAAAkcAAAFHAAACRwAAAUcAAAFHAAABRwAAA0cAAANHAAADRwAAAkcAAAJHAAADRwAAAUcAAAJHAAACRwAAAUcAAAJHAAAARwAAAEcAAABHAAAARwAAAkcAAABHAAABRwAAAEcAAAJHAAACZAAAAGQAAABkAAAAFgAAAhYAAAJkAAAAZAAAABYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAARwAAAjMAAAAWAAAAZAAAABYAAAIWAAACZAAAABYAAABhAAADYQAAAmEAAANhAAADYQAAAGQAAABkAAAAZAAAAEcAAAEzAAAAFgAAABYAAAEWAAAAFgAAABYAAAMWAAABYQAAA2EAAAJhAAACYQAAAmEAAAJkAAAAZAAAAGQAAABHAAAAMwAAABYAAABkAAAAFgAAAhYAAANkAAAAFgAAAGEAAAJhAAACYQAAA2EAAANhAAACVAAAAGQAAABkAAAARwAAAWQAAAAWAAACZAAAABYAAAMWAAABZAAAABYAAAFhAAAAYQAAA2EAAANhAAABYQAAAWQAAABkAAAAZAAAAEcAAAFkAAAAZAAAAGQAAAAWAAABFgAAA2QAAABkAAAAYQAAAGEAAAFhAAAAYQAAA2EAAAJkAAAAZAAAAFQAAABHAAABFgAAAhYAAAAWAAAAFgAAAhYAAAEWAAADZAAAAGEAAABhAAACYQAAAmEAAAJhAAACZAAAAGQAAABkAAAARwAAAg== -1,-1: ind: -1,-1 - tiles: SwAAAxoAAANoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABlAAADZQAAA2UAAAFlAAADZQAAAmUAAABlAAABZQAAAUsAAAMaAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAZQAAAGUAAABlAAADZQAAAGUAAAJlAAADZQAAAWUAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGUAAAFlAAABZQAAAGUAAABlAAABZQAAAmUAAABlAAAASwAAABoAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAAJoAAAAaAAAAEsAAAAaAAACaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAZwAAAGgAAABLAAACSwAAAUsAAAJLAAADSwAAA0sAAAFLAAABGgAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGcAAABoAAAASwAAAksAAAJLAAACSwAAAUsAAAFLAAAASwAAA2gAAABoAAAAWAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAABSwAAAUsAAAJLAAAASwAAAEsAAABLAAABSwAAAUsAAAFLAAADSwAAA0sAAAFLAAADSwAAAksAAAJLAAADSwAAA0sAAANLAAABSwAAA0sAAABLAAACSwAAAUsAAANLAAAASwAAAUsAAABLAAACSwAAA0sAAAFLAAAASwAAA0sAAAJLAAADSwAAAEsAAANLAAABLAAAACwAAAAsAAAASwAAAGgAAABoAAAAGgAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAADSwAAAksAAAMaAAACaAAAABoAAAIaAAABaAAAABoAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACGgAAABoAAAEaAAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAAGgAAAGUAAAJlAAACZQAAAWUAAAFoAAAAGgAAAxoAAAJoAAAAGgAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAABoAAANlAAACZQAAAmUAAANlAAABGgAAABoAAAIaAAACaAAAABoAAABoAAAAaAAAAGgAAAAaAAADaAAAAGgAAAAaAAABZQAAAGUAAAFlAAABZQAAAmgAAAAaAAABGgAAA2gAAABoAAAAaAAAABoAAAEaAAADGgAAAxoAAAMaAAADaAAAABoAAAMaAAACGgAAAxoAAABoAAAAGgAAARoAAAEaAAACGgAAAhoAAAEaAAADGgAAARoAAAIaAAABGgAAAg== + tiles: RwAAAxYAAANkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABhAAADYQAAA2EAAAFhAAADYQAAAmEAAABhAAABYQAAAUcAAAMWAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAYQAAAGEAAABhAAADYQAAAGEAAAJhAAADYQAAAWEAAABHAAABZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGEAAAFhAAABYQAAAGEAAABhAAABYQAAAmEAAABhAAAARwAAABYAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAAJkAAAAZAAAAEcAAAAWAAACZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAYwAAAGQAAABHAAACRwAAAUcAAAJHAAADRwAAA0cAAAFHAAABFgAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGMAAABkAAAARwAAAkcAAAJHAAACRwAAAUcAAAFHAAAARwAAA2QAAABkAAAAVAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAABRwAAAUcAAAJHAAAARwAAAEcAAABHAAABRwAAAUcAAAFHAAADRwAAA0cAAAFHAAADRwAAAkcAAAJHAAADRwAAA0cAAANHAAABRwAAA0cAAABHAAACRwAAAUcAAANHAAAARwAAAUcAAABHAAACRwAAA0cAAAFHAAAARwAAA0cAAAJHAAADRwAAAEcAAANHAAABKAAAACgAAAAoAAAARwAAAGQAAABkAAAAFgAAABYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAADRwAAAkcAAAMWAAACZAAAABYAAAIWAAABZAAAABYAAAAzAAAAMwAAADMAAAAzAAAAMwAAADMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACFgAAABYAAAEWAAAAMwAAADMAAAAzAAAAMwAAADMAAAAzAAAAFgAAAGEAAAJhAAACYQAAAWEAAAFkAAAAFgAAAxYAAAJkAAAAFgAAADMAAAAzAAAAMwAAADMAAAAzAAAAMwAAABYAAANhAAACYQAAAmEAAANhAAABFgAAABYAAAIWAAACZAAAABYAAABkAAAAZAAAAGQAAAAWAAADZAAAAGQAAAAWAAABYQAAAGEAAAFhAAABYQAAAmQAAAAWAAABFgAAA2QAAABkAAAAZAAAABYAAAEWAAADFgAAAxYAAAMWAAADZAAAABYAAAMWAAACFgAAAxYAAABkAAAAFgAAARYAAAEWAAACFgAAAhYAAAEWAAADFgAAARYAAAIWAAABFgAAAg== -2,-1: ind: -2,-1 - tiles: GgAAAhoAAAMaAAADGgAAAGgAAAAaAAADGgAAAhoAAAJoAAAASwAAAksAAANLAAACaAAAABoAAAJLAAADSwAAAGgAAAAaAAACaAAAAGgAAABoAAAAaAAAABoAAANoAAAAaAAAAEsAAAFLAAACSwAAAmgAAAAaAAAASwAAAEsAAANlAAABZQAAA2UAAAJlAAACZQAAAmUAAAJlAAAAaAAAABoAAANLAAAASwAAAEsAAABoAAAAGgAAAEsAAANLAAACZQAAAmUAAABlAAAAZQAAAGUAAAJlAAAAZQAAAWgAAAAaAAADSwAAAUsAAAJLAAABaAAAABoAAABLAAABSwAAAmUAAANlAAACZQAAAmUAAAFlAAABZQAAAWUAAABoAAAAGgAAAUsAAAFLAAAASwAAAmgAAAAaAAAASwAAAksAAABlAAABZQAAAWUAAAJlAAACZQAAA2UAAABlAAABaAAAAGgAAABLAAACSwAAAEsAAAFoAAAAGgAAAUsAAANLAAAAZQAAAWUAAAFlAAACZQAAAWUAAANlAAABZQAAAmUAAAJoAAAASwAAAEsAAAJLAAABaAAAAGgAAABLAAABaAAAAGUAAANlAAABZQAAAGUAAANlAAABZQAAAWUAAAJlAAAAZQAAAUsAAANLAAAASwAAAksAAABLAAACSwAAA0sAAABlAAABZQAAA2UAAABlAAACZQAAAmUAAABlAAAAZQAAA2UAAAJLAAABSwAAA0sAAAFLAAADSwAAAksAAAFLAAADZQAAA2UAAAFlAAADZQAAAWUAAANlAAADZQAAA2UAAABoAAAASwAAAUsAAAFLAAADaAAAAGgAAABLAAADLAAAAGUAAANoAAAAaAAAABoAAANoAAAAaAAAABoAAAFoAAAAaAAAAEsAAAFLAAACSwAAAGgAAAAaAAAASwAAAUsAAANlAAABZQAAAmgAAAAaAAACGgAAAmgAAAAaAAACGgAAAGgAAABLAAADSwAAAUsAAAJoAAAAaAAAAGgAAABoAAAAZQAAA2UAAANoAAAAGgAAAxoAAAJoAAAAGgAAAhoAAANoAAAASwAAA0sAAAFLAAAAaAAAAGUAAABlAAACZQAAAWUAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAADSwAAABoAAABlAAABZQAAAmUAAABLAAACSwAAAksAAAFLAAABSwAAAUsAAAJLAAADSwAAAksAAAFLAAAASwAAA0sAAAJoAAAAZQAAA2UAAABlAAACSwAAAUsAAAFLAAACSwAAAksAAAJLAAACSwAAAEsAAABLAAADSwAAAEsAAAFLAAABaAAAAGUAAABlAAAAZQAAAg== + tiles: FgAAAhYAAAMWAAADFgAAAGQAAAAWAAADFgAAAhYAAAJkAAAARwAAAkcAAANHAAACZAAAABYAAAJHAAADRwAAAGQAAAAWAAACZAAAAGQAAABkAAAAZAAAABYAAANkAAAAZAAAAEcAAAFHAAACRwAAAmQAAAAWAAAARwAAAEcAAANhAAABYQAAA2EAAAJhAAACYQAAAmEAAAJhAAAAZAAAABYAAANHAAAARwAAAEcAAABkAAAAFgAAAEcAAANHAAACYQAAAmEAAABhAAAAYQAAAGEAAAJhAAAAYQAAAWQAAAAWAAADRwAAAUcAAAJHAAABZAAAABYAAABHAAABRwAAAmEAAANhAAACYQAAAmEAAAFhAAABYQAAAWEAAABkAAAAFgAAAUcAAAFHAAAARwAAAmQAAAAWAAAARwAAAkcAAABhAAABYQAAAWEAAAJhAAACYQAAA2EAAABhAAABZAAAAGQAAABHAAACRwAAAEcAAAFkAAAAFgAAAUcAAANHAAAAYQAAAWEAAAFhAAACYQAAAWEAAANhAAABYQAAAmEAAAJkAAAARwAAAEcAAAJHAAABZAAAAGQAAABHAAABZAAAAGEAAANhAAABYQAAAGEAAANhAAABYQAAAWEAAAJhAAAAYQAAAUcAAANHAAAARwAAAkcAAABHAAACRwAAA0cAAABhAAABYQAAA2EAAABhAAACYQAAAmEAAABhAAAAYQAAA2EAAAJHAAABRwAAA0cAAAFHAAADRwAAAkcAAAFHAAADYQAAA2EAAAFhAAADYQAAAWEAAANhAAADYQAAA2EAAABkAAAARwAAAUcAAAFHAAADZAAAAGQAAABHAAADKAAAAGEAAANkAAAAZAAAABYAAANkAAAAZAAAABYAAAFkAAAAZAAAAEcAAAFHAAACRwAAAGQAAAAWAAAARwAAAUcAAANhAAABYQAAAmQAAAAWAAACFgAAAmQAAAAWAAACFgAAAGQAAABHAAADRwAAAUcAAAJkAAAAZAAAAGQAAABkAAAAYQAAA2EAAANkAAAAFgAAAxYAAAJkAAAAFgAAAhYAAANkAAAARwAAA0cAAAFHAAAAZAAAAGEAAABhAAACYQAAAWEAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAADRwAAABYAAABhAAABYQAAAmEAAABHAAACRwAAAkcAAAFHAAABRwAAAUcAAAJHAAADRwAAAkcAAAFHAAAARwAAA0cAAAJkAAAAYQAAA2EAAABhAAACRwAAAUcAAAFHAAACRwAAAkcAAAJHAAACRwAAAEcAAABHAAADRwAAAEcAAAFHAAABZAAAAGEAAABhAAAAYQAAAg== -2,0: ind: -2,0 - tiles: SwAAAUsAAAFLAAABSwAAAksAAANLAAAASwAAAksAAAFLAAABSwAAAEsAAANLAAACaAAAAGUAAANlAAADZQAAAWgAAABoAAAAaAAAAGgAAABLAAABSwAAAmgAAABoAAAAaAAAAEsAAAJLAAAASwAAAGgAAAAaAAAAGgAAAhoAAAFLAAABSwAAAWgAAABLAAAASwAAAEsAAAFLAAACSwAAA2gAAABLAAACSwAAAUsAAANoAAAAaAAAAGgAAABoAAAASwAAAEsAAANLAAAASwAAAksAAABLAAABSwAAAEsAAAFoAAAASwAAAksAAANLAAADSwAAAGgAAABLAAACaAAAAEsAAANLAAACSwAAAUsAAAJLAAADSwAAAEsAAABLAAAASwAAAksAAABLAAAASwAAAUsAAANLAAACSwAAA0sAAAFLAAAASwAAAWgAAABLAAABSwAAAUsAAANLAAADSwAAAEsAAAFLAAACSwAAA0sAAANLAAACSwAAAGgAAABLAAABSwAAA0sAAAFoAAAASwAAAEsAAAJLAAACSwAAAksAAANoAAAASwAAAUsAAANLAAADSwAAAGgAAABLAAABSwAAAEsAAABLAAAAaAAAAEsAAAJLAAACSwAAAUsAAABLAAAAaAAAAEsAAANLAAAASwAAAWgAAABoAAAAaAAAAGgAAABLAAAASwAAAGgAAABLAAADSwAAAksAAABLAAACSwAAAGgAAABLAAABSwAAAUsAAANLAAADSwAAA0sAAAJLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAASwAAAksAAABLAAAASwAAAEsAAANLAAABSwAAA0sAAAFLAAACSwAAAksAAANoAAAAaAAAAGgAAABoAAAAWAAAAEsAAANLAAABSwAAAUsAAAFLAAAASwAAAksAAAFLAAACSwAAA0sAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAFoAAAASwAAA0sAAABLAAABSwAAA2gAAABoAAAAaAAAAEsAAAJLAAABSwAAA0sAAAFLAAAASwAAAUsAAANLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABLAAACSwAAAEsAAAFLAAAASwAAA0sAAABLAAAASwAAA2gAAABLAAABSwAAA2UAAANlAAACaAAAAGgAAABoAAAASwAAAEsAAAFLAAACSwAAA0sAAANLAAAASwAAA0sAAAFoAAAASwAAA0sAAAJlAAADZQAAA2gAAABoAAAAaAAAAEsAAAFLAAACSwAAAksAAAFLAAABSwAAAUsAAAFLAAABaAAAAA== + tiles: RwAAAUcAAAFHAAABRwAAAkcAAANHAAAARwAAAkcAAAFHAAABRwAAAEcAAANHAAACZAAAAGEAAANhAAADYQAAAWQAAABkAAAAZAAAAGQAAABHAAABRwAAAmQAAABkAAAAZAAAAEcAAAJHAAAARwAAAGQAAAAWAAAAFgAAAhYAAAFHAAABRwAAAWQAAABHAAAARwAAAEcAAAFHAAACRwAAA2QAAABHAAACRwAAAUcAAANkAAAAZAAAAGQAAABkAAAARwAAAEcAAANHAAAARwAAAkcAAABHAAABRwAAAEcAAAFkAAAARwAAAkcAAANHAAADRwAAAGQAAABHAAACZAAAAEcAAANHAAACRwAAAUcAAAJHAAADRwAAAEcAAABHAAAARwAAAkcAAABHAAAARwAAAUcAAANHAAACRwAAA0cAAAFHAAAARwAAAWQAAABHAAABRwAAAUcAAANHAAADRwAAAEcAAAFHAAACRwAAA0cAAANHAAACRwAAAGQAAABHAAABRwAAA0cAAAFkAAAARwAAAEcAAAJHAAACRwAAAkcAAANkAAAARwAAAUcAAANHAAADRwAAAGQAAABHAAABRwAAAEcAAABHAAAAZAAAAEcAAAJHAAACRwAAAUcAAABHAAAAZAAAAEcAAANHAAAARwAAAWQAAABkAAAAZAAAAGQAAABHAAAARwAAAGQAAABHAAADRwAAAkcAAABHAAACRwAAAGQAAABHAAABRwAAAUcAAANHAAADRwAAA0cAAAJHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAARwAAAkcAAABHAAAARwAAAEcAAANHAAABRwAAA0cAAAFHAAACRwAAAkcAAANkAAAAZAAAAGQAAABkAAAAVAAAAEcAAANHAAABRwAAAUcAAAFHAAAARwAAAkcAAAFHAAACRwAAA0cAAABHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAAFkAAAARwAAA0cAAABHAAABRwAAA2QAAABkAAAAZAAAAEcAAAJHAAABRwAAA0cAAAFHAAAARwAAAUcAAANHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABHAAACRwAAAEcAAAFHAAAARwAAA0cAAABHAAAARwAAA2QAAABHAAABRwAAA2EAAANhAAACZAAAAGQAAABkAAAARwAAAEcAAAFHAAACRwAAA0cAAANHAAAARwAAA0cAAAFkAAAARwAAA0cAAAJhAAADYQAAA2QAAABkAAAAZAAAAEcAAAFHAAACRwAAAkcAAAFHAAABRwAAAUcAAAFHAAABZAAAAA== 1,0: ind: 1,0 - tiles: SwAAAEsAAANoAAAAGgAAARoAAAAaAAACDwAAAg8AAAEPAAACDwAAAg8AAAEPAAAADwAAAg8AAAAaAAABGgAAAksAAANLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAADwAAAw8AAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAUsAAAJLAAADSwAAAUsAAAJLAAACSwAAA0sAAABLAAACSwAAAksAAABLAAACSwAAAEsAAAFLAAAASwAAA0sAAANLAAABSwAAA0sAAAJLAAAASwAAA0sAAANLAAAASwAAA0sAAAJLAAABSwAAAEsAAAJLAAACSwAAAEsAAANLAAACSwAAAUsAAABLAAADSwAAAksAAANLAAADSwAAAUsAAABLAAADSwAAAEsAAANLAAADSwAAAksAAANLAAACSwAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAGgAAAAaAAACGgAAAWgAAABYAAAAaAAAAGgAAABoAAAASwAAA0sAAAFoAAAASwAAAEsAAANLAAAASwAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAaAAAAEsAAABLAAABaAAAAEsAAABLAAABSwAAA0sAAAFLAAACaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAAAAAAGgAAABLAAAASwAAAGgAAABLAAADSwAAAUsAAABLAAACSwAAAmgAAABXAAAAVwAAAGgAAABoAAAAaAAAAAAAAABoAAAASwAAAUsAAAJoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABGgAAAVgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADGgAAA2gAAABLAAADSwAAAxoAAAAaAAADGgAAARoAAABoAAAAaAAAAEsAAANLAAAASwAAAksAAABLAAAASwAAAUsAAANLAAABSwAAA0sAAAFLAAABSwAAAUsAAAJLAAABaAAAAGgAAABLAAAASwAAAUsAAAJLAAAASwAAAUsAAANLAAADSwAAAksAAANLAAADSwAAAEsAAAJLAAABSwAAA2gAAAAVAAAASwAAAEsAAAFLAAABSwAAAUsAAAFLAAABSwAAAUsAAAJLAAAASwAAAUsAAABLAAADSwAAAEsAAABoAAAAFQAAAA== + tiles: RwAAAEcAAANkAAAAFgAAARYAAAAWAAACCwAAAgsAAAELAAACCwAAAgsAAAELAAAACwAAAgsAAAAWAAABFgAAAkcAAANHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAACwAAAwsAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAAUcAAAJHAAADRwAAAUcAAAJHAAACRwAAA0cAAABHAAACRwAAAkcAAABHAAACRwAAAEcAAAFHAAAARwAAA0cAAANHAAABRwAAA0cAAAJHAAAARwAAA0cAAANHAAAARwAAA0cAAAJHAAABRwAAAEcAAAJHAAACRwAAAEcAAANHAAACRwAAAUcAAABHAAADRwAAAkcAAANHAAADRwAAAUcAAABHAAADRwAAAEcAAANHAAADRwAAAkcAAANHAAACRwAAAGQAAABkAAAAZAAAAEcAAABkAAAAZAAAAGQAAAAWAAACFgAAAWQAAABUAAAAZAAAAGQAAABkAAAARwAAA0cAAAFkAAAARwAAAEcAAANHAAAARwAAAEcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAZAAAAEcAAABHAAABZAAAAEcAAABHAAABRwAAA0cAAAFHAAACZAAAAFMAAABTAAAAUwAAAGQAAABkAAAAAAAAAGQAAABHAAAARwAAAGQAAABHAAADRwAAAUcAAABHAAACRwAAAmQAAABTAAAAUwAAAGQAAABkAAAAZAAAAAAAAABkAAAARwAAAUcAAAJkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAABFgAAAVQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADFgAAA2QAAABHAAADRwAAAxYAAAAWAAADFgAAARYAAABkAAAAZAAAAEcAAANHAAAARwAAAkcAAABHAAAARwAAAUcAAANHAAABRwAAA0cAAAFHAAABRwAAAUcAAAJHAAABZAAAAGQAAABHAAAARwAAAUcAAAJHAAAARwAAAUcAAANHAAADRwAAAkcAAANHAAADRwAAAEcAAAJHAAABRwAAA2QAAAARAAAARwAAAEcAAAFHAAABRwAAAUcAAAFHAAABRwAAAUcAAAJHAAAARwAAAUcAAABHAAADRwAAAEcAAABkAAAAEQAAAA== 1,-1: ind: 1,-1 - tiles: SwAAAUsAAABLAAABNAAAAGgAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAABVAAADNAAAADQAAAA0AAAANAAAAEsAAAJLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAmgAAAAaAAACZQAAA2UAAAJlAAABZQAAAGUAAABoAAAATQAAAE0AAABNAAAATQAAAE0AAABNAAAASwAAA0sAAANoAAAAGgAAAWUAAAJlAAABZQAAA2UAAAFlAAADaAAAAE0AAABNAAAATQAAAE0AAABNAAAATQAAAEsAAANLAAACaAAAAGgAAABlAAABaAAAAGgAAABoAAAAaAAAAGgAAABNAAAATQAAAE0AAABNAAAATQAAAE0AAABLAAADSwAAAWgAAAAaAAACGgAAARoAAAEaAAAAGgAAAxoAAABoAAAATQAAAE0AAABNAAAATQAAAE0AAABNAAAASwAAAEsAAAFoAAAAGgAAAxoAAAMaAAABGgAAABoAAAAaAAACSwAAAE0AAABNAAAATQAAAE0AAABNAAAATQAAAEsAAABLAAABaAAAABoAAAAaAAACGgAAAhoAAAEaAAACGgAAAmgAAABLAAAAGgAAARoAAAIaAAAAGgAAAxoAAAJLAAADSwAAA2gAAAAaAAAAGgAAARoAAAAaAAACGgAAAxoAAAEaAAADDwAAAxoAAAAaAAACGgAAAhoAAAEaAAADSwAAAksAAAJoAAAAGgAAAxoAAAEaAAAAGgAAABoAAAIaAAABGgAAAw8AAAMPAAABDwAAAw8AAAIPAAABDwAAA0sAAABLAAAAaAAAABoAAAEaAAADGgAAAhoAAAMaAAABGgAAAhoAAAEPAAABDwAAAQ8AAAMPAAAADwAAAQ8AAABLAAADSwAAAGgAAAAPAAACDwAAAg8AAAEPAAABDwAAAg8AAAAPAAADDwAAAQ8AAAEPAAADDwAAAQ8AAAMPAAACSwAAAUsAAAEPAAADDwAAAg8AAAMPAAAADwAAAQ8AAAAPAAACDwAAAg8AAAMPAAAADwAAAQ8AAAIPAAACDwAAAUsAAABLAAAADwAAAw8AAAIPAAADDwAAAg8AAAIPAAAADwAAAw8AAAIPAAABDwAAAw8AAAMPAAABDwAAAw8AAABLAAAASwAAA2gAAAAPAAACDwAAAA8AAAMPAAABDwAAAA8AAAMPAAAADwAAAQ8AAAIPAAAADwAAAw8AAAAPAAADSwAAAEsAAAJoAAAAGgAAAhoAAAIaAAAADwAAAw8AAAMPAAABDwAAAw8AAAMPAAABDwAAAw8AAAEaAAAAGgAAAg== + tiles: RwAAAUcAAABHAAABMAAAAGQAAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAABRAAADMAAAADAAAAAwAAAAMAAAAEcAAAJHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAAmQAAAAWAAACYQAAA2EAAAJhAAABYQAAAGEAAABkAAAASQAAAEkAAABJAAAASQAAAEkAAABJAAAARwAAA0cAAANkAAAAFgAAAWEAAAJhAAABYQAAA2EAAAFhAAADZAAAAEkAAABJAAAASQAAAEkAAABJAAAASQAAAEcAAANHAAACZAAAAGQAAABhAAABZAAAAGQAAABkAAAAZAAAAGQAAABJAAAASQAAAEkAAABJAAAASQAAAEkAAABHAAADRwAAAWQAAAAWAAACFgAAARYAAAEWAAAAFgAAAxYAAABkAAAASQAAAEkAAABJAAAASQAAAEkAAABJAAAARwAAAEcAAAFkAAAAFgAAAxYAAAMWAAABFgAAABYAAAAWAAACRwAAAEkAAABJAAAASQAAAEkAAABJAAAASQAAAEcAAABHAAABZAAAABYAAAAWAAACFgAAAhYAAAEWAAACFgAAAmQAAABHAAAAFgAAARYAAAIWAAAAFgAAAxYAAAJHAAADRwAAA2QAAAAWAAAAFgAAARYAAAAWAAACFgAAAxYAAAEWAAADCwAAAxYAAAAWAAACFgAAAhYAAAEWAAADRwAAAkcAAAJkAAAAFgAAAxYAAAEWAAAAFgAAABYAAAIWAAABFgAAAwsAAAMLAAABCwAAAwsAAAILAAABCwAAA0cAAABHAAAAZAAAABYAAAEWAAADFgAAAhYAAAMWAAABFgAAAhYAAAELAAABCwAAAQsAAAMLAAAACwAAAQsAAABHAAADRwAAAGQAAAALAAACCwAAAgsAAAELAAABCwAAAgsAAAALAAADCwAAAQsAAAELAAADCwAAAQsAAAMLAAACRwAAAUcAAAELAAADCwAAAgsAAAMLAAAACwAAAQsAAAALAAACCwAAAgsAAAMLAAAACwAAAQsAAAILAAACCwAAAUcAAABHAAAACwAAAwsAAAILAAADCwAAAgsAAAILAAAACwAAAwsAAAILAAABCwAAAwsAAAMLAAABCwAAAwsAAABHAAAARwAAA2QAAAALAAACCwAAAAsAAAMLAAABCwAAAAsAAAMLAAAACwAAAQsAAAILAAAACwAAAwsAAAALAAADRwAAAEcAAAJkAAAAFgAAAhYAAAIWAAAACwAAAwsAAAMLAAABCwAAAwsAAAMLAAABCwAAAwsAAAEWAAAAFgAAAg== -1,-2: ind: -1,-2 - tiles: WwAAAVsAAAFbAAADWwAAAlsAAABbAAACWwAAAlsAAABbAAACWwAAA1sAAAFoAAAASwAAAUsAAAFLAAADaAAAAFsAAAJbAAADWwAAAVsAAABbAAAAaAAAAGgAAABoAAAAZAAAAmgAAABoAAAAaAAAAEsAAANLAAABSwAAAUsAAAFbAAAAWwAAA1sAAANbAAADWwAAA1sAAAFbAAADWwAAA1sAAAFbAAABWwAAAmgAAABLAAAASwAAAEsAAABoAAAAWwAAA1sAAAFbAAACWwAAAFsAAABoAAAAWwAAA1sAAAFbAAACWwAAAlsAAABoAAAASwAAA0sAAANLAAAAaAAAAGgAAABoAAAAaAAAAFsAAABbAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAWgAAABbAAADWwAAAmgAAABbAAADWwAAAVsAAAFbAAADWwAAAlsAAAFbAAACWwAAAGgAAABLAAADSwAAAUsAAABoAAAAWwAAAlsAAAFoAAAAWwAAA1sAAAFbAAABWwAAAFsAAABbAAABWwAAAVsAAANbAAADSwAAAUsAAAFLAAAAWwAAAVsAAAFbAAABaAAAAFsAAAFbAAABWwAAA1sAAAFbAAAAWwAAAFsAAAJbAAAAWwAAAksAAAJLAAADSwAAAFsAAAJbAAAAWwAAAmgAAABbAAABWwAAAVsAAAFbAAABWwAAAlsAAANbAAACWwAAAmgAAABLAAACSwAAA0sAAAFoAAAAWwAAAVsAAANoAAAAaAAAAGgAAABoAAAAWwAAAVsAAAJoAAAAaAAAAGgAAABoAAAASwAAAksAAANLAAADaAAAAGgAAABoAAAAaAAAAEsAAAFLAAADSwAAAEsAAAFLAAAASwAAAksAAAFLAAAASwAAAksAAANLAAADSwAAAUsAAABLAAABSwAAAEsAAABLAAAASwAAAEsAAAJLAAADSwAAAksAAABLAAABSwAAA0sAAANLAAAASwAAAUsAAAFLAAAASwAAA0sAAANLAAABSwAAAEsAAANLAAAASwAAA0sAAAFLAAABSwAAA0sAAAJLAAAASwAAAEsAAANLAAADSwAAAUsAAAJLAAAASwAAAEsAAABLAAADSwAAAEsAAAFLAAAASwAAAEsAAAFLAAAASwAAAksAAABLAAABSwAAAksAAANoAAAAaAAAAGgAAABYAAAAaAAAABoAAAIaAAADaAAAAGgAAABoAAAAZQAAA2gAAABoAAAAaAAAAGgAAABoAAAASwAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAACZQAAA2UAAANlAAACZQAAAmUAAAFlAAABZQAAAQ== + tiles: VwAAAVcAAAFXAAADVwAAAlcAAABXAAACVwAAAlcAAABXAAACVwAAA1cAAAFkAAAARwAAAUcAAAFHAAADZAAAAFcAAAJXAAADVwAAAVcAAABXAAAAZAAAAGQAAABkAAAAYAAAAmQAAABkAAAAZAAAAEcAAANHAAABRwAAAUcAAAFXAAAAVwAAA1cAAANXAAADVwAAA1cAAAFXAAADVwAAA1cAAAFXAAABVwAAAmQAAABHAAAARwAAAEcAAABkAAAAVwAAA1cAAAFXAAACVwAAAFcAAABkAAAAVwAAA1cAAAFXAAACVwAAAlcAAABkAAAARwAAA0cAAANHAAAAZAAAAGQAAABkAAAAZAAAAFcAAABXAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAAARwAAAWQAAABXAAADVwAAAmQAAABXAAADVwAAAVcAAAFXAAADVwAAAlcAAAFXAAACVwAAAGQAAABHAAADRwAAAUcAAABkAAAAVwAAAlcAAAFkAAAAVwAAA1cAAAFXAAABVwAAAFcAAABXAAABVwAAAVcAAANXAAADRwAAAUcAAAFHAAAAVwAAAVcAAAFXAAABZAAAAFcAAAFXAAABVwAAA1cAAAFXAAAAVwAAAFcAAAJXAAAAVwAAAkcAAAJHAAADRwAAAFcAAAJXAAAAVwAAAmQAAABXAAABVwAAAVcAAAFXAAABVwAAAlcAAANXAAACVwAAAmQAAABHAAACRwAAA0cAAAFkAAAAVwAAAVcAAANkAAAAZAAAAGQAAABkAAAAVwAAAVcAAAJkAAAAZAAAAGQAAABkAAAARwAAAkcAAANHAAADZAAAAGQAAABkAAAAZAAAAEcAAAFHAAADRwAAAEcAAAFHAAAARwAAAkcAAAFHAAAARwAAAkcAAANHAAADRwAAAUcAAABHAAABRwAAAEcAAABHAAAARwAAAEcAAAJHAAADRwAAAkcAAABHAAABRwAAA0cAAANHAAAARwAAAUcAAAFHAAAARwAAA0cAAANHAAABRwAAAEcAAANHAAAARwAAA0cAAAFHAAABRwAAA0cAAAJHAAAARwAAAEcAAANHAAADRwAAAUcAAAJHAAAARwAAAEcAAABHAAADRwAAAEcAAAFHAAAARwAAAEcAAAFHAAAARwAAAkcAAABHAAABRwAAAkcAAANkAAAAZAAAAGQAAABUAAAAZAAAABYAAAIWAAADZAAAAGQAAABkAAAAYQAAA2QAAABkAAAAZAAAAGQAAABkAAAARwAAABYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAACYQAAA2EAAANhAAACYQAAAmEAAAFhAAABYQAAAQ== 0,-2: ind: 0,-2 - tiles: SwAAADAAAAAwAAAAMAAAAEsAAANoAAAAWwAAAlsAAAEaAAAAaAAAAFsAAANbAAAASwAAARoAAANLAAABSwAAAEsAAAEwAAAAMAAAADAAAABLAAABaAAAAFsAAABbAAACWwAAA2gAAABbAAAAWwAAAUsAAAIaAAAASwAAAEsAAANLAAADMAAAADAAAAAwAAAASwAAAWgAAABbAAABWwAAAhoAAAJoAAAAWwAAAVsAAAFbAAACWwAAAFsAAABbAAACSwAAAUsAAABLAAACSwAAAEsAAAFoAAAAWwAAA1sAAAMaAAACaAAAAFsAAANbAAAAWwAAAVsAAAFbAAABWwAAA2gAAABLAAAASwAAAEsAAANoAAAAaAAAAFcAAABXAAAAaAAAAGgAAABLAAAASwAAAUsAAABoAAAAaAAAAGgAAABbAAAAWwAAAFsAAANbAAADWwAAA1sAAANbAAAAWwAAAVsAAAFoAAAASwAAAEsAAAJLAAADaAAAAGgAAABoAAAAWwAAAEsAAAFLAAADSwAAAUsAAABLAAABSwAAAlsAAAJbAAADaAAAAEsAAAJLAAABSwAAAWgAAAA5AAAAaAAAAFsAAAJLAAACSwAAAksAAAFLAAADSwAAA0sAAAJbAAAAWwAAAWgAAABLAAACSwAAAksAAANoAAAAOQAAAGgAAABbAAACWwAAAlsAAAFbAAACWwAAA1sAAABbAAAAWwAAAVsAAAFoAAAASwAAAEsAAAFLAAABaAAAADkAAABoAAAAaAAAAGgAAABoAAAAWwAAA1sAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAADSwAAAksAAAJLAAACSwAAA0sAAAJLAAADSwAAAWgAAAAaAAABGgAAAxoAAAIaAAABaAAAAGgAAABLAAADSwAAAksAAAJLAAADSwAAAEsAAAFLAAABSwAAAUsAAANLAAABSwAAAEsAAAFLAAAASwAAAksAAABLAAACSwAAA0sAAAJLAAAASwAAA0sAAAFLAAADSwAAAUsAAAJLAAABSwAAAEsAAAFLAAABSwAAAUsAAANLAAADSwAAAksAAANLAAABSwAAAUsAAABLAAAASwAAAksAAAFLAAACSwAAAEsAAANLAAACSwAAAksAAAJLAAABSwAAAEsAAAJlAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABZQAAA2UAAAJlAAADaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAAAaAAADSwAAAA== + tiles: RwAAACwAAAAsAAAALAAAAEcAAANkAAAAVwAAAlcAAAEWAAAAZAAAAFcAAANXAAAARwAAARYAAANHAAABRwAAAEcAAAEsAAAALAAAACwAAABHAAABZAAAAFcAAABXAAACVwAAA2QAAABXAAAAVwAAAUcAAAIWAAAARwAAAEcAAANHAAADLAAAACwAAAAsAAAARwAAAWQAAABXAAABVwAAAhYAAAJkAAAAVwAAAVcAAAFXAAACVwAAAFcAAABXAAACRwAAAUcAAABHAAACRwAAAEcAAAFkAAAAVwAAA1cAAAMWAAACZAAAAFcAAANXAAAAVwAAAVcAAAFXAAABVwAAA2QAAABHAAAARwAAAEcAAANkAAAAZAAAAFMAAABTAAAAZAAAAGQAAABHAAAARwAAAUcAAABkAAAAZAAAAGQAAABXAAAAVwAAAFcAAANXAAADVwAAA1cAAANXAAAAVwAAAVcAAAFkAAAARwAAAEcAAAJHAAADZAAAAGQAAABkAAAAVwAAAEcAAAFHAAADRwAAAUcAAABHAAABRwAAAlcAAAJXAAADZAAAAEcAAAJHAAABRwAAAWQAAAA1AAAAZAAAAFcAAAJHAAACRwAAAkcAAAFHAAADRwAAA0cAAAJXAAAAVwAAAWQAAABHAAACRwAAAkcAAANkAAAANQAAAGQAAABXAAACVwAAAlcAAAFXAAACVwAAA1cAAABXAAAAVwAAAVcAAAFkAAAARwAAAEcAAAFHAAABZAAAADUAAABkAAAAZAAAAGQAAABkAAAAVwAAA1cAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAADRwAAAkcAAAJHAAACRwAAA0cAAAJHAAADRwAAAWQAAAAWAAABFgAAAxYAAAIWAAABZAAAAGQAAABHAAADRwAAAkcAAAJHAAADRwAAAEcAAAFHAAABRwAAAUcAAANHAAABRwAAAEcAAAFHAAAARwAAAkcAAABHAAACRwAAA0cAAAJHAAAARwAAA0cAAAFHAAADRwAAAUcAAAJHAAABRwAAAEcAAAFHAAABRwAAAUcAAANHAAADRwAAAkcAAANHAAABRwAAAUcAAABHAAAARwAAAkcAAAFHAAACRwAAAEcAAANHAAACRwAAAkcAAAJHAAABRwAAAEcAAAJhAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABYQAAA2EAAAJhAAADZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAAAWAAADRwAAAA== -2,-2: ind: -2,-2 - tiles: WwAAA1sAAABbAAADWwAAAVsAAAFbAAACWwAAAlsAAAJbAAABaAAAAFsAAABbAAACWwAAA1sAAABoAAAAWwAAAVsAAAFbAAAAWwAAAVsAAAFbAAABWwAAA1sAAABbAAABWwAAA2gAAABbAAADWwAAA1sAAAFbAAADGgAAAlsAAAJbAAADWwAAAlsAAABbAAAAWwAAAFsAAAFbAAABWwAAAFsAAAFoAAAAWwAAAFsAAANbAAADWwAAARoAAABbAAAAaAAAAGgAAABoAAAAaAAAAFsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAABaAAAAGgAAABoAAAAWwAAA2gAAABoAAAAWwAAAFsAAAFbAAADWwAAAFsAAANoAAAAWwAAAFsAAABbAAABWwAAAFsAAAJbAAAAaAAAAGgAAABXAAAAaAAAAFsAAAJbAAAAWwAAAlsAAAJbAAACaAAAAFsAAAFbAAADWwAAAFsAAABbAAAAWwAAA1sAAAFbAAACaAAAAGgAAABLAAADSwAAAEsAAAJLAAADWwAAAmgAAABbAAAAWwAAA1sAAAJbAAABWwAAA1sAAAJbAAADWwAAATYAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAlsAAANbAAABWwAAAlsAAANbAAAAWwAAAVsAAAJoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAaAAAAFsAAABbAAADWwAAAVsAAABbAAACWwAAAVsAAAFbAAAANgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAAAWwAAAVsAAAJbAAABWwAAAlsAAAJbAAACWwAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAABoAAANLAAACSwAAA0sAAANLAAAASwAAAEsAAAJLAAABaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACSwAAAksAAAFLAAAASwAAAUsAAAFLAAACSwAAARoAAAMaAAABGgAAARoAAANoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAAASwAAAEsAAAJLAAADSwAAA0sAAAEaAAABGgAAAxoAAAAaAAAAaAAAABoAAAEaAAACGgAAAWgAAABLAAACSwAAAEsAAANoAAAAaAAAAGgAAABLAAACGgAAAxoAAAIaAAABGgAAAmgAAAAaAAADGgAAARoAAABoAAAASwAAA0sAAAJLAAACaAAAABoAAANLAAAASwAAAQ== + tiles: VwAAA1cAAABXAAADVwAAAVcAAAFXAAACVwAAAlcAAAJXAAABZAAAAFcAAABXAAACVwAAA1cAAABkAAAAVwAAAVcAAAFXAAAAVwAAAVcAAAFXAAABVwAAA1cAAABXAAABVwAAA2QAAABXAAADVwAAA1cAAAFXAAADFgAAAlcAAAJXAAADVwAAAlcAAABXAAAAVwAAAFcAAAFXAAABVwAAAFcAAAFkAAAAVwAAAFcAAANXAAADVwAAARYAAABXAAAAZAAAAGQAAABkAAAAZAAAAFcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAABZAAAAGQAAABkAAAAVwAAA2QAAABkAAAAVwAAAFcAAAFXAAADVwAAAFcAAANkAAAAVwAAAFcAAABXAAABVwAAAFcAAAJXAAAAZAAAAGQAAABTAAAAZAAAAFcAAAJXAAAAVwAAAlcAAAJXAAACZAAAAFcAAAFXAAADVwAAAFcAAABXAAAAVwAAA1cAAAFXAAACZAAAAGQAAABHAAADRwAAAEcAAAJHAAADVwAAAmQAAABXAAAAVwAAA1cAAAJXAAABVwAAA1cAAAJXAAADVwAAATIAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAlcAAANXAAABVwAAAlcAAANXAAAAVwAAAVcAAAJkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAZAAAAFcAAABXAAADVwAAAVcAAABXAAACVwAAAVcAAAFXAAAAMgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAAAVwAAAVcAAAJXAAABVwAAAlcAAAJXAAACVwAAAGQAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAABYAAANHAAACRwAAA0cAAANHAAAARwAAAEcAAAJHAAABZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACRwAAAkcAAAFHAAAARwAAAUcAAAFHAAACRwAAARYAAAMWAAABFgAAARYAAANkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAAARwAAAEcAAAJHAAADRwAAA0cAAAEWAAABFgAAAxYAAAAWAAAAZAAAABYAAAEWAAACFgAAAWQAAABHAAACRwAAAEcAAANkAAAAZAAAAGQAAABHAAACFgAAAxYAAAIWAAABFgAAAmQAAAAWAAADFgAAARYAAABkAAAARwAAA0cAAAJHAAACZAAAABYAAANHAAAARwAAAQ== 1,-2: ind: 1,-2 - tiles: GgAAA2gAAABLAAABSwAAAVsAAAFbAAACWwAAAkAAAABAAAAAQAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAANoAAAASwAAAEsAAANbAAACWwAAAVsAAAJAAAAAQAAAAEAAAABoAAAAOQAAADkAAABXAAAAaAAAAGgAAABbAAABWwAAAlsAAANbAAABWwAAAVsAAAFbAAABQAAAAEAAAABAAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAWwAAA2gAAABbAAADWwAAAlsAAANbAAABWwAAAUAAAABAAAAAQAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAA0AAAANAAAADQAAABoAAAANAAAAFUAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAABoAAAANAAAAFUAAAFVAAADVQAAAVUAAAFVAAAAVQAAAVUAAAFVAAABVQAAA1UAAANVAAADVQAAAVUAAABVAAACaAAAADQAAABVAAACNAAAAGgAAAA0AAAANAAAAFUAAAA0AAAANAAAAFUAAAI0AAAANAAAAFUAAAI0AAAANAAAAGgAAAAsAAAASwAAASwAAABoAAAANAAAADQAAABVAAADVQAAAVUAAAJVAAADVQAAAFUAAANVAAACNAAAAC0AAAJLAAAASwAAAEsAAAI0AAAANAAAADQAAAA0AAAAVQAAATQAAAAsAAAALAAAACwAAAA0AAAAVQAAAjQAAAAtAAABSwAAAEsAAAFLAAAANAAAADQAAAA0AAAANAAAAFUAAAA0AAAALAAAACwAAAAsAAAANAAAAFUAAAA0AAAANAAAAEsAAABLAAADSwAAADQAAAAsAAAANAAAAFUAAAFVAAACVQAAAlUAAABVAAAAVQAAAVUAAANVAAAAVQAAA1UAAABLAAAASwAAAEsAAAM0AAAALAAAADQAAAA0AAAANAAAAFUAAANVAAABVQAAA1UAAABVAAADNAAAADQAAAA0AAAASwAAAEsAAAJLAAADNAAAACwAAAA0AAAAVQAAAVUAAAJVAAACVQAAAlUAAAFVAAAAVQAAA1UAAABVAAACNAAAAA== + tiles: FgAAA2QAAABHAAABRwAAAVcAAAFXAAACVwAAAjwAAAA8AAAAPAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAANkAAAARwAAAEcAAANXAAACVwAAAVcAAAI8AAAAPAAAADwAAABkAAAANQAAADUAAABTAAAAZAAAAGQAAABXAAABVwAAAlcAAANXAAABVwAAAVcAAAFXAAABPAAAADwAAAA8AAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAVwAAA2QAAABXAAADVwAAAlcAAANXAAABVwAAATwAAAA8AAAAPAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAEcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAwAAAAMAAAADAAAABkAAAAMAAAAFEAAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAABkAAAAMAAAAFEAAAFRAAADUQAAAVEAAAFRAAAAUQAAAVEAAAFRAAABUQAAA1EAAANRAAADUQAAAVEAAABRAAACZAAAADAAAABRAAACMAAAAGQAAAAwAAAAMAAAAFEAAAAwAAAAMAAAAFEAAAIwAAAAMAAAAFEAAAIwAAAAMAAAAGQAAAAoAAAARwAAASgAAABkAAAAMAAAADAAAABRAAADUQAAAVEAAAJRAAADUQAAAFEAAANRAAACMAAAACkAAAJHAAAARwAAAEcAAAIwAAAAMAAAADAAAAAwAAAAUQAAATAAAAAoAAAAKAAAACgAAAAwAAAAUQAAAjAAAAApAAABRwAAAEcAAAFHAAAAMAAAADAAAAAwAAAAMAAAAFEAAAAwAAAAKAAAACgAAAAoAAAAMAAAAFEAAAAwAAAAMAAAAEcAAABHAAADRwAAADAAAAAoAAAAMAAAAFEAAAFRAAACUQAAAlEAAABRAAAAUQAAAVEAAANRAAAAUQAAA1EAAABHAAAARwAAAEcAAAMwAAAAKAAAADAAAAAwAAAAMAAAAFEAAANRAAABUQAAA1EAAABRAAADMAAAADAAAAAwAAAARwAAAEcAAAJHAAADMAAAACgAAAAwAAAAUQAAAVEAAAJRAAACUQAAAlEAAAFRAAAAUQAAA1EAAABRAAACMAAAAA== 2,-1: ind: 2,-1 - tiles: aAAAACkAAAApAAAAKQAAACkAAAApAAAAKQAAAFgAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAaAAAAGgAAAApAAAAKQAAACkAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAFLAAACaAAAAGUAAABlAAADaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAAaAAAAGgAAAAZAAAAGQAAADoAAAA6AAAAOgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAE0AAABNAAAATQAAAE0AAABoAAAAGQAAABkAAAA6AAAAOgAAADoAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAFNAAAATQAAAE0AAABNAAAAaAAAABkAAAAZAAAAGQAAADoAAAA6AAAAaAAAAGgAAABQAAAAaAAAAEsAAAFLAAACTQAAAE0AAABNAAAATQAAAGgAAAAZAAAAGQAAABkAAAA6AAAAOgAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAABoAAANoAAAAaAAAAGgAAABoAAAAGQAAAGgAAABoAAAAZQAAA2UAAABoAAAAaAAAAGgAAABLAAABSwAAAEsAAAMaAAACDwAAAA8AAANlAAAAZQAAA2UAAANlAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAFLAAACDwAAAA8AAAIPAAADZQAAAWUAAAFlAAADZQAAAVgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAADSwAAAQ8AAAEPAAAADwAAAGUAAABlAAABZQAAAmUAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAksAAAMPAAADDwAAAA8AAANlAAAAZQAAA2UAAAFlAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACDwAAAg8AAAMPAAADZQAAAGUAAAJlAAAAZQAAAmgAAABoAAAAaAAAAFcAAABXAAAAaAAAAEsAAAJLAAABSwAAAg8AAAEPAAACDwAAAmUAAABlAAADZQAAA2UAAABoAAAAaAAAAGgAAAA7AAAAOwAAAGgAAABLAAABSwAAAEsAAAMPAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAOwAAADsAAAAaAAACSwAAAksAAABLAAABGgAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAADsAAAA7AAAAaAAAAEsAAABLAAABSwAAAw== + tiles: ZAAAACUAAAAlAAAAJQAAACUAAAAlAAAAJQAAAFQAAABMAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAAZAAAAGQAAAAlAAAAJQAAACUAAABkAAAAZAAAAGQAAABkAAAAZAAAAEwAAABMAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAAFHAAACZAAAAGEAAABhAAADZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAAZAAAAGQAAAAVAAAAFQAAADYAAAA2AAAANgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEkAAABJAAAASQAAAEkAAABkAAAAFQAAABUAAAA2AAAANgAAADYAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAAFJAAAASQAAAEkAAABJAAAAZAAAABUAAAAVAAAAFQAAADYAAAA2AAAAZAAAAGQAAABMAAAAZAAAAEcAAAFHAAACSQAAAEkAAABJAAAASQAAAGQAAAAVAAAAFQAAABUAAAA2AAAANgAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAABYAAANkAAAAZAAAAGQAAABkAAAAFQAAAGQAAABkAAAAYQAAA2EAAABkAAAAZAAAAGQAAABHAAABRwAAAEcAAAMWAAACCwAAAAsAAANhAAAAYQAAA2EAAANhAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAFHAAACCwAAAAsAAAILAAADYQAAAWEAAAFhAAADYQAAAVQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAADRwAAAQsAAAELAAAACwAAAGEAAABhAAABYQAAAmEAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAkcAAAMLAAADCwAAAAsAAANhAAAAYQAAA2EAAAFhAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACCwAAAgsAAAMLAAADYQAAAGEAAAJhAAAAYQAAAmQAAABkAAAAZAAAAFMAAABTAAAAZAAAAEcAAAJHAAABRwAAAgsAAAELAAACCwAAAmEAAABhAAADYQAAA2EAAABkAAAAZAAAAGQAAAA3AAAANwAAAGQAAABHAAABRwAAAEcAAAMLAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAANwAAADcAAAAWAAACRwAAAkcAAABHAAABFgAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAADcAAAA3AAAAZAAAAEcAAABHAAABRwAAAw== 2,0: ind: 2,0 - tiles: GgAAAGgAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAEsAAABLAAABSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAksAAANLAAADSwAAAEsAAABLAAABSwAAAEsAAAJLAAABSwAAAEsAAANLAAADSwAAAEsAAAJLAAAASwAAAUsAAANLAAAASwAAAEsAAAJLAAACSwAAAUsAAANLAAACSwAAAUsAAAJLAAADSwAAAksAAAJLAAADSwAAAksAAABLAAADSwAAAEsAAAFLAAACSwAAAUsAAANLAAAASwAAAUsAAAFLAAACSwAAAksAAANLAAABSwAAAEsAAAFLAAADSwAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAhoAAANoAAAAGgAAARoAAAAaAAADGgAAAxoAAAAaAAAAaAAAABoAAAAaAAAAGgAAARoAAAIaAAADGgAAABoAAAAaAAABGgAAAxoAAAMaAAACGgAAAxoAAAAaAAABGgAAAGgAAAAaAAAASwAAAEsAAAFLAAADSwAAAxoAAAEaAAABGgAAAGgAAAAaAAAAGgAAAxoAAAMaAAAAGgAAAhoAAANoAAAAGgAAA0sAAANLAAADSwAAAksAAAAaAAAAaAAAAGgAAABoAAAAGgAAAhoAAAEaAAAAGgAAARoAAAEaAAADaAAAABoAAAFLAAACSwAAAksAAANLAAABGgAAAmgAAABoAAAAaAAAABoAAAMaAAADGgAAABoAAAIaAAABGgAAA2gAAAAaAAABGgAAAxoAAAIaAAABGgAAAxoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAhoAAAMaAAACaAAAAGgAAAAaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAA2gAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAksAAANoAAAASwAAA0sAAAAVAAAAZQAAAUsAAAJLAAADZQAAAGUAAANlAAABaAAAAGgAAABoAAAASwAAA0sAAAJLAAAAaAAAAEsAAABLAAADFQAAAGgAAABLAAACSwAAAGgAAABlAAABZQAAAWgAAABoAAAAaAAAAEsAAANLAAABSwAAAksAAABLAAADSwAAAw== + tiles: FgAAAGQAAABTAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAZAAAAEcAAABHAAABRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAkcAAANHAAADRwAAAEcAAABHAAABRwAAAEcAAAJHAAABRwAAAEcAAANHAAADRwAAAEcAAAJHAAAARwAAAUcAAANHAAAARwAAAEcAAAJHAAACRwAAAUcAAANHAAACRwAAAUcAAAJHAAADRwAAAkcAAAJHAAADRwAAAkcAAABHAAADRwAAAEcAAAFHAAACRwAAAUcAAANHAAAARwAAAUcAAAFHAAACRwAAAkcAAANHAAABRwAAAEcAAAFHAAADRwAAAEcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAhYAAANkAAAAFgAAARYAAAAWAAADFgAAAxYAAAAWAAAAZAAAABYAAAAWAAAAFgAAARYAAAIWAAADFgAAABYAAAAWAAABFgAAAxYAAAMWAAACFgAAAxYAAAAWAAABFgAAAGQAAAAWAAAARwAAAEcAAAFHAAADRwAAAxYAAAEWAAABFgAAAGQAAAAWAAAAFgAAAxYAAAMWAAAAFgAAAhYAAANkAAAAFgAAA0cAAANHAAADRwAAAkcAAAAWAAAAZAAAAGQAAABkAAAAFgAAAhYAAAEWAAAAFgAAARYAAAEWAAADZAAAABYAAAFHAAACRwAAAkcAAANHAAABFgAAAmQAAABkAAAAZAAAABYAAAMWAAADFgAAABYAAAIWAAABFgAAA2QAAAAWAAABFgAAAxYAAAIWAAABFgAAAxYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAhYAAAMWAAACZAAAAGQAAAAWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAA2QAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAAkcAAANkAAAARwAAA0cAAAARAAAAYQAAAUcAAAJHAAADYQAAAGEAAANhAAABZAAAAGQAAABkAAAARwAAA0cAAAJHAAAAZAAAAEcAAABHAAADEQAAAGQAAABHAAACRwAAAGQAAABhAAABYQAAAWQAAABkAAAAZAAAAEcAAANHAAABRwAAAkcAAABHAAADRwAAAw== 2,-2: ind: 2,-2 - tiles: aAAAAGUAAAFoAAAAaAAAAGgAAAApAAAAaAAAAGgAAAApAAAAKQAAAGgAAABnAAAAaAAAAGgAAABAAAAAaAAAAGgAAABoAAAAZQAAAWgAAABoAAAAKQAAAGgAAAApAAAAaAAAACkAAABoAAAAZwAAAGgAAABAAAAAQAAAAEAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEAAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAEsAAAFXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABLAAADVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAVcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAA0sAAAFLAAAASwAAAEsAAAFVAAADVQAAAzQAAAA0AAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAABLAAABaAAAAFUAAAFVAAAAVQAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAA0AAAANAAAADQAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFAAAAAsAAAALAAAACwAAAAsAAAAaAAAAGgAAABoAAAAaAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAALAAAACwAAAAsAAAALAAAAFgAAABoAAAAaAAAAGgAAABQAAAAaAAAAFAAAABoAAAAUAAAAGgAAABoAAAAaAAAACwAAAAsAAAALAAAACwAAABoAAAAaAAAAFAAAABQAAAAaAAAAGgAAABQAAAAaAAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAAFMAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAaAAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAACkAAAApAAAAKQAAACkAAAApAAAAKQAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAAFAAAABoAAAAaAAAAA== + tiles: ZAAAAGEAAAFkAAAAZAAAAGQAAAAlAAAAZAAAAGQAAAAlAAAAJQAAAGQAAABjAAAAZAAAAGQAAAA8AAAAZAAAAGQAAABkAAAAYQAAAWQAAABkAAAAJQAAAGQAAAAlAAAAZAAAACUAAABkAAAAYwAAAGQAAAA8AAAAPAAAADwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAADwAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAZAAAAEcAAAFTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAGQAAABHAAADUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAVMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABTAAAAUwAAAFMAAABTAAAAUwAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAA0cAAAFHAAAARwAAAEcAAAFRAAADUQAAAzAAAAAwAAAAZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAABHAAABZAAAAFEAAAFRAAAAUQAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAwAAAAMAAAADAAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAEwAAAAoAAAAKAAAACgAAAAoAAAAZAAAAGQAAABkAAAAZAAAAEwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAKAAAACgAAAAoAAAAKAAAAFQAAABkAAAAZAAAAGQAAABMAAAAZAAAAEwAAABkAAAATAAAAGQAAABkAAAAZAAAACgAAAAoAAAAKAAAACgAAABkAAAAZAAAAEwAAABMAAAAZAAAAGQAAABMAAAAZAAAAGQAAABkAAAATAAAAGQAAABkAAAAZAAAAE8AAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAAZAAAAGQAAABkAAAATAAAAGQAAABkAAAAZAAAACUAAAAlAAAAJQAAACUAAAAlAAAAJQAAAGQAAABkAAAATAAAAGQAAABkAAAAZAAAAEwAAABkAAAAZAAAAA== -1,1: ind: -1,1 - tiles: AAAAAGgAAAAaAAACEgAAABoAAAMaAAACGgAAARIAAAAaAAAAaAAAAAAAAABoAAAASwAAA0sAAAFLAAABaAAAAAAAAABoAAAAGgAAAhIAAAAaAAAAGgAAAxoAAAESAAAAGgAAAGgAAAAAAAAAaAAAAEsAAABLAAAASwAAAWgAAAAAAAAAaAAAABoAAAESAAAAEgAAABIAAAASAAAAEgAAABoAAABoAAAAAAAAAGgAAABLAAABSwAAAksAAAFoAAAAZwAAAGgAAABoAAAAGgAAAxoAAAMaAAADGgAAABoAAABoAAAAaAAAAGcAAABoAAAASwAAA0sAAAJLAAACGgAAAgAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAaAAAAEsAAABLAAADSwAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABLAAACSwAAA0sAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAJLAAABaAAAAEsAAANLAAABSwAAAksAAABLAAADSwAAAksAAABLAAABSwAAA0sAAAFLAAADSwAAAEsAAAFLAAADSwAAA0sAAABLAAADSwAAAksAAANLAAABSwAAA0sAAABLAAACSwAAA0sAAANLAAADSwAAAEsAAAFLAAAASwAAAksAAANLAAADSwAAAUsAAAJLAAABSwAAA0sAAAFLAAABSwAAA0sAAAJLAAADSwAAAUsAAAFLAAAASwAAAksAAAFLAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAAAaAAAAEsAAAFLAAABaAAAAEsAAABLAAADaAAAAEsAAAJLAAABaAAAAEMAAABDAAAAQwAAAEMAAABoAAAAZQAAA2gAAABLAAAASwAAAWgAAABLAAAASwAAAWgAAABLAAAASwAAA2gAAABDAAAAQwAAAEMAAABDAAAAaAAAAGUAAAFoAAAAaAAAAEsAAAFoAAAAaAAAAEsAAAJoAAAAaAAAAEsAAAFoAAAAQwAAAEMAAABDAAAAQwAAAGgAAABlAAACaAAAAEsAAANLAAADSwAAAUsAAAFLAAADSwAAAksAAABLAAACaAAAAEMAAABDAAAAQwAAAEMAAABoAAAAGgAAAxoAAAFLAAACSwAAA0sAAAJLAAACSwAAA0sAAAFLAAACSwAAAGgAAABDAAAAQwAAAEMAAABDAAAAaAAAAA== + tiles: AAAAAGQAAAAWAAACDgAAABYAAAMWAAACFgAAAQ4AAAAWAAAAZAAAAAAAAABkAAAARwAAA0cAAAFHAAABZAAAAAAAAABkAAAAFgAAAg4AAAAWAAAAFgAAAxYAAAEOAAAAFgAAAGQAAAAAAAAAZAAAAEcAAABHAAAARwAAAWQAAAAAAAAAZAAAABYAAAEOAAAADgAAAA4AAAAOAAAADgAAABYAAABkAAAAAAAAAGQAAABHAAABRwAAAkcAAAFkAAAAYwAAAGQAAABkAAAAFgAAAxYAAAMWAAADFgAAABYAAABkAAAAZAAAAGMAAABkAAAARwAAA0cAAAJHAAACFgAAAgAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAZAAAAEcAAABHAAADRwAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABHAAACRwAAA0cAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAJHAAABZAAAAEcAAANHAAABRwAAAkcAAABHAAADRwAAAkcAAABHAAABRwAAA0cAAAFHAAADRwAAAEcAAAFHAAADRwAAA0cAAABHAAADRwAAAkcAAANHAAABRwAAA0cAAABHAAACRwAAA0cAAANHAAADRwAAAEcAAAFHAAAARwAAAkcAAANHAAADRwAAAUcAAAJHAAABRwAAA0cAAAFHAAABRwAAA0cAAAJHAAADRwAAAUcAAAFHAAAARwAAAkcAAAFHAAAARwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAAAZAAAAEcAAAFHAAABZAAAAEcAAABHAAADZAAAAEcAAAJHAAABZAAAAD8AAAA/AAAAPwAAAD8AAABkAAAAYQAAA2QAAABHAAAARwAAAWQAAABHAAAARwAAAWQAAABHAAAARwAAA2QAAAA/AAAAPwAAAD8AAAA/AAAAZAAAAGEAAAFkAAAAZAAAAEcAAAFkAAAAZAAAAEcAAAJkAAAAZAAAAEcAAAFkAAAAPwAAAD8AAAA/AAAAPwAAAGQAAABhAAACZAAAAEcAAANHAAADRwAAAUcAAAFHAAADRwAAAkcAAABHAAACZAAAAD8AAAA/AAAAPwAAAD8AAABkAAAAFgAAAxYAAAFHAAACRwAAA0cAAAJHAAACRwAAA0cAAAFHAAACRwAAAGQAAAA/AAAAPwAAAD8AAAA/AAAAZAAAAA== -2,1: ind: -2,1 - tiles: SwAAAEsAAANlAAAAZQAAAmgAAABoAAAASwAAAksAAANLAAACSwAAAEsAAAFLAAABSwAAAUsAAANLAAAAaAAAAEsAAABLAAAAZQAAAWUAAAFoAAAAaAAAAGgAAABLAAADSwAAAksAAAFLAAACSwAAAUsAAAFLAAABSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAANLAAAASwAAAksAAAJLAAAASwAAA0sAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAA0sAAAFLAAAASwAAA0sAAABLAAACaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAASwAAA0sAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAmgAAABLAAACSwAAAUsAAABLAAACSwAAA0sAAANLAAABSwAAA0sAAAFLAAABSwAAA0sAAAJoAAAASwAAAksAAABLAAACSwAAAUsAAAFLAAACSwAAAksAAAJLAAACSwAAAEsAAAJLAAAASwAAAksAAANLAAAAaAAAAEsAAABLAAAAaAAAAEsAAAFLAAACSwAAAksAAANLAAACSwAAAksAAABLAAAASwAAA0sAAABLAAADSwAAAksAAANYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAA0sAAABoAAAAWAAAAGgAAABLAAAASwAAAUsAAAJLAAABaAAAAFcAAABoAAAAGgAAARoAAANoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAANLAAAASwAAA2gAAABXAAAAaAAAABoAAAJLAAADSwAAAUsAAABLAAADSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAANoAAAAaAAAAGgAAAAaAAADSwAAAUsAAANLAAADSwAAAksAAABoAAAAaAAAAGgAAABoAAAAZQAAAGUAAABlAAACaAAAAFcAAABoAAAAGgAAAxoAAAIaAAADGgAAABoAAAMaAAAAaAAAAGgAAABoAAAAaAAAAGUAAAJlAAAAZQAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAABZQAAAmUAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAGUAAAFlAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAAaAAABGgAAAA== + tiles: RwAAAEcAAANhAAAAYQAAAmQAAABkAAAARwAAAkcAAANHAAACRwAAAEcAAAFHAAABRwAAAUcAAANHAAAAZAAAAEcAAABHAAAAYQAAAWEAAAFkAAAAZAAAAGQAAABHAAADRwAAAkcAAAFHAAACRwAAAUcAAAFHAAABRwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAANHAAAARwAAAkcAAAJHAAAARwAAA0cAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAAARwAAA0cAAAFHAAAARwAAA0cAAABHAAACZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAARwAAA0cAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAmQAAABHAAACRwAAAUcAAABHAAACRwAAA0cAAANHAAABRwAAA0cAAAFHAAABRwAAA0cAAAJkAAAARwAAAkcAAABHAAACRwAAAUcAAAFHAAACRwAAAkcAAAJHAAACRwAAAEcAAAJHAAAARwAAAkcAAANHAAAAZAAAAEcAAABHAAAAZAAAAEcAAAFHAAACRwAAAkcAAANHAAACRwAAAkcAAABHAAAARwAAA0cAAABHAAADRwAAAkcAAANUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAA0cAAABkAAAAVAAAAGQAAABHAAAARwAAAUcAAAJHAAABZAAAAFMAAABkAAAAFgAAARYAAANkAAAAZAAAAEcAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAANHAAAARwAAA2QAAABTAAAAZAAAABYAAAJHAAADRwAAAUcAAABHAAADRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAANkAAAAZAAAAGQAAAAWAAADRwAAAUcAAANHAAADRwAAAkcAAABkAAAAZAAAAGQAAABkAAAAYQAAAGEAAABhAAACZAAAAFMAAABkAAAAFgAAAxYAAAIWAAADFgAAABYAAAMWAAAAZAAAAGQAAABkAAAAZAAAAGEAAAJhAAAAYQAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAABYQAAAmEAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAAGEAAAFhAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAAWAAABFgAAAA== -3,1: ind: -3,1 - tiles: AAAAAAAAAABoAAAAaAAAAGgAAABLAAABSwAAA0sAAANLAAADSwAAAEsAAAFLAAABSwAAAEsAAANLAAACSwAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAAEsAAAFLAAABSwAAAUsAAAJLAAACSwAAA0sAAABLAAABSwAAA2gAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAABLAAACSwAAA0sAAANLAAABSwAAA0sAAABLAAADSwAAAksAAAFoAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAAASwAAA0sAAAFLAAABSwAAAUsAAAJLAAACSwAAAUsAAANLAAADWAAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAA0sAAABLAAAASwAAAksAAABLAAACSwAAAUsAAABLAAACSwAAAmgAAAAAAAAAAAAAAAAAAABnAAAAaAAAAEsAAANLAAADSwAAAksAAAFLAAADSwAAAUsAAANLAAADSwAAAksAAAJoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAAEsAAABoAAAAaAAAAEsAAABLAAADSwAAAksAAAJLAAADSwAAAAAAAAAAAAAAAAAAAGgAAABLAAAASwAAAksAAAFLAAAASwAAAWgAAABLAAABSwAAAksAAABLAAAASwAAAmgAAAAAAAAAAAAAAAAAAABoAAAASwAAAUsAAANLAAAASwAAAUsAAANoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAEsAAANLAAAASwAAAksAAAJLAAACaAAAAFcAAABoAAAAaAAAAFcAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABLAAADSwAAA0sAAANLAAABSwAAAGgAAABXAAAAaAAAAGgAAABXAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABoAAAASwAAA0sAAAJLAAADSwAAAUsAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAEsAAAJLAAAASwAAAUsAAANLAAADaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABYAAAAWAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: AAAAAAAAAABkAAAAZAAAAGQAAABHAAABRwAAA0cAAANHAAADRwAAAEcAAAFHAAABRwAAAEcAAANHAAACRwAAAAAAAAAAAAAAZAAAAGQAAABkAAAARwAAAEcAAAFHAAABRwAAAUcAAAJHAAACRwAAA0cAAABHAAABRwAAA2QAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEcAAABHAAACRwAAA0cAAANHAAABRwAAA0cAAABHAAADRwAAAkcAAAFkAAAAAAAAAAAAAABkAAAAZAAAAGQAAABHAAAARwAAA0cAAAFHAAABRwAAAUcAAAJHAAACRwAAAUcAAANHAAADVAAAAAAAAAAAAAAAZAAAAGQAAABkAAAARwAAA0cAAABHAAAARwAAAkcAAABHAAACRwAAAUcAAABHAAACRwAAAmQAAAAAAAAAAAAAAAAAAABjAAAAZAAAAEcAAANHAAADRwAAAkcAAAFHAAADRwAAAUcAAANHAAADRwAAAkcAAAJkAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAARwAAAEcAAABkAAAAZAAAAEcAAABHAAADRwAAAkcAAAJHAAADRwAAAAAAAAAAAAAAAAAAAGQAAABHAAAARwAAAkcAAAFHAAAARwAAAWQAAABHAAABRwAAAkcAAABHAAAARwAAAmQAAAAAAAAAAAAAAAAAAABkAAAARwAAAUcAAANHAAAARwAAAUcAAANkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAAEcAAANHAAAARwAAAkcAAAJHAAACZAAAAFMAAABkAAAAZAAAAFMAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABHAAADRwAAA0cAAANHAAABRwAAAGQAAABTAAAAZAAAAGQAAABTAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABkAAAARwAAA0cAAAJHAAADRwAAAUcAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAAEcAAAJHAAAARwAAAUcAAANHAAADZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABUAAAAVAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== -3,0: ind: -3,0 - tiles: CgAAABoAAAJLAAAASwAAA0sAAAFLAAADSwAAAEsAAANLAAACSwAAAUsAAAFLAAACSwAAA0sAAANLAAABSwAAAGgAAAAaAAADSwAAAksAAAFoAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAksAAAJLAAAAaAAAAEsAAAJLAAADSwAAAEsAAAFLAAACSwAAAksAAAJoAAAASwAAAksAAABLAAAASwAAAksAAAFLAAABSwAAA2gAAABLAAACSwAAAEsAAAJLAAADSwAAAksAAABLAAADaAAAAEsAAAJLAAAASwAAA2gAAABYAAAAaAAAAGgAAABoAAAASwAAAksAAAJLAAADSwAAAUsAAANLAAADSwAAAEsAAANLAAADSwAAAEsAAABoAAAAaAAAAFcAAABoAAAASwAAAksAAAJLAAAASwAAAEsAAAJLAAACSwAAAEsAAANLAAACSwAAA0sAAABLAAAAVwAAAGgAAABXAAAAWAAAAEsAAANLAAACSwAAA0sAAABLAAACSwAAAUsAAAJLAAAAaAAAAEsAAANLAAAASwAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAEsAAAJoAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABLAAAASwAAAEsAAAJoAAAAaAAAAGgAAABYAAAASwAAA0sAAANLAAADSwAAAUsAAAJLAAAASwAAAksAAANoAAAASwAAA0sAAANoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAABSwAAA0sAAAFLAAADSwAAA0sAAAFLAAACSwAAAUsAAAJLAAABaAAAAAAAAAAAAAAAAAAAAGgAAABLAAACSwAAA0sAAAJLAAAASwAAAEsAAANLAAABSwAAAksAAANLAAACSwAAA2gAAAAAAAAAAAAAAAAAAABoAAAAaAAAAEsAAANLAAABSwAAAksAAABLAAACSwAAAUsAAANLAAACSwAAAUsAAAJLAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABLAAABSwAAAEsAAAFLAAACSwAAAksAAANLAAABSwAAAEsAAAFLAAAAaAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAAEsAAABLAAACSwAAAksAAANLAAADSwAAAEsAAAJLAAACSwAAAmgAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAABLAAACSwAAAUsAAAJLAAADSwAAA0sAAANLAAADSwAAAUsAAAJoAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAAASwAAAUsAAAFLAAAASwAAAUsAAANLAAACSwAAAEsAAANLAAADaAAAAA== + tiles: BgAAABYAAAJHAAAARwAAA0cAAAFHAAADRwAAAEcAAANHAAACRwAAAUcAAAFHAAACRwAAA0cAAANHAAABRwAAAGQAAAAWAAADRwAAAkcAAAFkAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAkcAAAJHAAAAZAAAAEcAAAJHAAADRwAAAEcAAAFHAAACRwAAAkcAAAJkAAAARwAAAkcAAABHAAAARwAAAkcAAAFHAAABRwAAA2QAAABHAAACRwAAAEcAAAJHAAADRwAAAkcAAABHAAADZAAAAEcAAAJHAAAARwAAA2QAAABUAAAAZAAAAGQAAABkAAAARwAAAkcAAAJHAAADRwAAAUcAAANHAAADRwAAAEcAAANHAAADRwAAAEcAAABkAAAAZAAAAFMAAABkAAAARwAAAkcAAAJHAAAARwAAAEcAAAJHAAACRwAAAEcAAANHAAACRwAAA0cAAABHAAAAUwAAAGQAAABTAAAAVAAAAEcAAANHAAACRwAAA0cAAABHAAACRwAAAUcAAAJHAAAAZAAAAEcAAANHAAAARwAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAEcAAAJkAAAAZAAAAEcAAAJkAAAAZAAAAGQAAABHAAAARwAAAEcAAAJkAAAAZAAAAGQAAABUAAAARwAAA0cAAANHAAADRwAAAUcAAAJHAAAARwAAAkcAAANkAAAARwAAA0cAAANkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAABRwAAA0cAAAFHAAADRwAAA0cAAAFHAAACRwAAAUcAAAJHAAABZAAAAAAAAAAAAAAAAAAAAGQAAABHAAACRwAAA0cAAAJHAAAARwAAAEcAAANHAAABRwAAAkcAAANHAAACRwAAA2QAAAAAAAAAAAAAAAAAAABkAAAAZAAAAEcAAANHAAABRwAAAkcAAABHAAACRwAAAUcAAANHAAACRwAAAUcAAAJHAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABHAAABRwAAAEcAAAFHAAACRwAAAkcAAANHAAABRwAAAEcAAAFHAAAAZAAAAAAAAAAAAAAAAAAAAGMAAABkAAAARwAAAEcAAABHAAACRwAAAkcAAANHAAADRwAAAEcAAAJHAAACRwAAAmQAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEcAAABHAAACRwAAAUcAAAJHAAADRwAAA0cAAANHAAADRwAAAUcAAAJkAAAAAAAAAAAAAABkAAAAZAAAAGQAAABHAAAARwAAAUcAAAFHAAAARwAAAUcAAANHAAACRwAAAEcAAANHAAADZAAAAA== -3,-1: ind: -3,-1 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAABoAAAAaAAACGgAAAmgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACGgAAA2gAAABlAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAEaAAADZQAAAmUAAAJlAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAABlAAADZQAAAWgAAABQAAAAaAAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAGgAAAhoAAANlAAAAZQAAAmUAAABoAAAAUAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAhoAAAFoAAAAZQAAAmUAAABlAAABaAAAAGgAAABQAAAAaAAAAFAAAABQAAAAUAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAAJlAAADZQAAAGgAAABoAAAAUAAAAFAAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAA2UAAANlAAABZQAAAmUAAANoAAAAUAAAAGgAAABQAAAAUAAAAFAAAABQAAAAaAAAAGgAAABXAAAAaAAAAGUAAAFlAAAAZQAAA2gAAABoAAAAaAAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABlAAAAZQAAA2UAAANLAAAASwAAA0sAAAJLAAABUAAAAFAAAABoAAAAaAAAAGgAAABXAAAAaAAAAFcAAABoAAAAZQAAAmUAAABlAAABSwAAAEsAAAFLAAABSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABXAAAAaAAAAGUAAAFlAAACZQAAAGgAAAAaAAABSwAAA0sAAABoAAAAGgAAARoAAAEaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAAMKAAAAGgAAAksAAANLAAAASwAAAEsAAAJLAAABSwAAAUsAAAFLAAACSwAAAEsAAAFLAAADSwAAA0sAAAFLAAABCgAAABoAAAJLAAABSwAAAEsAAAJLAAACSwAAAUsAAANLAAABSwAAA0sAAAJLAAACSwAAA0sAAAFLAAACSwAAAw== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAABYAAAAWAAACFgAAAmQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACFgAAA2QAAABhAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAABYAAAEWAAADYQAAAmEAAAJhAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAABhAAADYQAAAWQAAABMAAAAZAAAAGQAAABkAAAATAAAAGQAAABkAAAAZAAAAGQAAAAWAAAAFgAAAhYAAANhAAAAYQAAAmEAAABkAAAATAAAAEwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAhYAAAFkAAAAYQAAAmEAAABhAAABZAAAAGQAAABMAAAAZAAAAEwAAABMAAAATAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAAJhAAADYQAAAGQAAABkAAAATAAAAEwAAABMAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAA2EAAANhAAABYQAAAmEAAANkAAAATAAAAGQAAABMAAAATAAAAEwAAABMAAAAZAAAAGQAAABTAAAAZAAAAGEAAAFhAAAAYQAAA2QAAABkAAAAZAAAAGQAAABkAAAATAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABhAAAAYQAAA2EAAANHAAAARwAAA0cAAAJHAAABTAAAAEwAAABkAAAAZAAAAGQAAABTAAAAZAAAAFMAAABkAAAAYQAAAmEAAABhAAABRwAAAEcAAAFHAAABRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABTAAAAZAAAAGEAAAFhAAACYQAAAGQAAAAWAAABRwAAA0cAAABkAAAAFgAAARYAAAEWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAAMGAAAAFgAAAkcAAANHAAAARwAAAEcAAAJHAAABRwAAAUcAAAFHAAACRwAAAEcAAAFHAAADRwAAA0cAAAFHAAABBgAAABYAAAJHAAABRwAAAEcAAAJHAAACRwAAAUcAAANHAAABRwAAA0cAAAJHAAACRwAAA0cAAAFHAAACRwAAAw== 0,1: ind: 0,1 - tiles: aAAAAGgAAABoAAAAaAAAABoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAGgAAABoAAAAaAAAABoAAABlAAABZQAAA2UAAANlAAAAZQAAAmUAAABlAAABGgAAA2gAAAAaAAAAGgAAABoAAAAaAAACGgAAAmgAAAAaAAADZQAAAWUAAAJlAAABZQAAA2UAAAJlAAAAZQAAABoAAAMaAAADZQAAAWUAAABlAAAAZQAAA2UAAABoAAAAGgAAA2UAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAAAaAAABaAAAAGUAAANlAAABZQAAAmUAAANlAAABaAAAABoAAAJlAAAAZQAAAWUAAABlAAABZQAAAWUAAAIaAAABGgAAAGgAAABlAAACZQAAAWUAAAFlAAABZQAAAGgAAAAaAAABZQAAA2UAAAJlAAACZQAAAmUAAABlAAAAGgAAAxoAAAFoAAAAZQAAAGUAAANlAAACZQAAAGUAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAEsAAABLAAAASwAAAmgAAAAaAAAAGgAAARoAAAMaAAADaAAAADcAAAA3AAAANwAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAEsAAAJoAAAAGgAAABoAAAMaAAABGgAAAGgAAAA3AAAANwAAADcAAABoAAAAWAAAAGgAAABoAAAASwAAAEsAAAJLAAACaAAAAGgAAABoAAAAGgAAAGgAAABoAAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAAaAAAABoAAABoAAAAGgAAAWgAAABLAAAASwAAAksAAAFLAAAAaAAAAGgAAAA3AAAANwAAADcAAAA3AAAANwAAAGgAAAAaAAADGgAAAxoAAABoAAAASwAAAksAAANLAAADSwAAAksAAAJoAAAANwAAADcAAAA3AAAANwAAADcAAABoAAAAGgAAAxoAAAEaAAAAaAAAAEsAAABLAAACSwAAAEsAAAJLAAAAaAAAADcAAAA3AAAANwAAADcAAAA3AAAAaAAAABoAAABoAAAAGgAAAWgAAABoAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAANwAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAUsAAAFLAAACSwAAAUsAAABLAAACSwAAAksAAABLAAACSwAAAUsAAAJLAAADSwAAA2gAAAAaAAAASwAAAksAAAJLAAADSwAAAEsAAAJLAAADSwAAAUsAAAJLAAADSwAAA0sAAANLAAAASwAAAksAAAMaAAABGgAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAABYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAGQAAABkAAAAZAAAABYAAABhAAABYQAAA2EAAANhAAAAYQAAAmEAAABhAAABFgAAA2QAAAAWAAAAFgAAABYAAAAWAAACFgAAAmQAAAAWAAADYQAAAWEAAAJhAAABYQAAA2EAAAJhAAAAYQAAABYAAAMWAAADYQAAAWEAAABhAAAAYQAAA2EAAABkAAAAFgAAA2EAAABhAAAAYQAAAGEAAABhAAAAYQAAAGEAAAAWAAABZAAAAGEAAANhAAABYQAAAmEAAANhAAABZAAAABYAAAJhAAAAYQAAAWEAAABhAAABYQAAAWEAAAIWAAABFgAAAGQAAABhAAACYQAAAWEAAAFhAAABYQAAAGQAAAAWAAABYQAAA2EAAAJhAAACYQAAAmEAAABhAAAAFgAAAxYAAAFkAAAAYQAAAGEAAANhAAACYQAAAGEAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAEcAAABHAAAARwAAAmQAAAAWAAAAFgAAARYAAAMWAAADZAAAADMAAAAzAAAAMwAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAEcAAAJkAAAAFgAAABYAAAMWAAABFgAAAGQAAAAzAAAAMwAAADMAAABkAAAAVAAAAGQAAABkAAAARwAAAEcAAAJHAAACZAAAAGQAAABkAAAAFgAAAGQAAABkAAAAMwAAADMAAAAzAAAAMwAAADMAAAAzAAAAZAAAABYAAABkAAAAFgAAAWQAAABHAAAARwAAAkcAAAFHAAAAZAAAAGQAAAAzAAAAMwAAADMAAAAzAAAAMwAAAGQAAAAWAAADFgAAAxYAAABkAAAARwAAAkcAAANHAAADRwAAAkcAAAJkAAAAMwAAADMAAAAzAAAAMwAAADMAAABkAAAAFgAAAxYAAAEWAAAAZAAAAEcAAABHAAACRwAAAEcAAAJHAAAAZAAAADMAAAAzAAAAMwAAADMAAAAzAAAAZAAAABYAAABkAAAAFgAAAWQAAABkAAAAZAAAAEcAAAJkAAAAZAAAAGQAAABkAAAAMwAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAUcAAAFHAAACRwAAAUcAAABHAAACRwAAAkcAAABHAAACRwAAAUcAAAJHAAADRwAAA2QAAAAWAAAARwAAAkcAAAJHAAADRwAAAEcAAAJHAAADRwAAAUcAAAJHAAADRwAAA0cAAANHAAAARwAAAkcAAAMWAAABFgAAAA== -4,-1: ind: -4,-1 - tiles: aAAAAEsAAAJLAAAASwAAAmgAAABXAAAAVwAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAACaAAAAFcAAABXAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABLAAAASwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAksAAAFoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAAAZQAAAGUAAABoAAAAaAAAAEsAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAA2UAAANlAAAASwAAA0sAAAJLAAADSwAAA0sAAAFLAAACSwAAAksAAAFLAAACSwAAAGgAAABoAAAAaAAAAGUAAANlAAACZQAAAksAAAFLAAABSwAAAEsAAAFLAAABSwAAAksAAANLAAAASwAAAUsAAANoAAAAaAAAAGgAAABlAAADZQAAAGUAAANoAAAAaAAAAEsAAANLAAABSwAAA0sAAAFLAAADSwAAA0sAAABLAAAAaAAAAGgAAABoAAAAZQAAAmUAAAJlAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAABSwAAAmgAAABoAAAAaAAAAGUAAAJlAAADZQAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAACSwAAAUsAAAFoAAAAWAAAAGgAAABoAAAAZQAAAmgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAksAAABLAAACSwAAA0sAAAJLAAAASwAAA0sAAABLAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAANLAAAASwAAA0sAAANLAAAASwAAA0sAAAJLAAABSwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAAASwAAAksAAAFoAAAANwAAADcAAAA3AAAANwAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAUsAAAJLAAADCgAAADcAAAA3AAAANwAAADcAAAA3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAABLAAADSwAAAgoAAAA3AAAANwAAADcAAAA3AAAANwAAAA== + tiles: ZAAAAEcAAAJHAAAARwAAAmQAAABTAAAAUwAAAGQAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAACZAAAAFMAAABTAAAAZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAGQAAABHAAAARwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAkcAAAFkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAAAYQAAAGEAAABkAAAAZAAAAEcAAABHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAA2EAAANhAAAARwAAA0cAAAJHAAADRwAAA0cAAAFHAAACRwAAAkcAAAFHAAACRwAAAGQAAABkAAAAZAAAAGEAAANhAAACYQAAAkcAAAFHAAABRwAAAEcAAAFHAAABRwAAAkcAAANHAAAARwAAAUcAAANkAAAAZAAAAGQAAABhAAADYQAAAGEAAANkAAAAZAAAAEcAAANHAAABRwAAA0cAAAFHAAADRwAAA0cAAABHAAAAZAAAAGQAAABkAAAAYQAAAmEAAAJhAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAABRwAAAmQAAABkAAAAZAAAAGEAAAJhAAADYQAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAACRwAAAUcAAAFkAAAAVAAAAGQAAABkAAAAYQAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAAkcAAABHAAACRwAAA0cAAAJHAAAARwAAA0cAAABHAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAANHAAAARwAAA0cAAANHAAAARwAAA0cAAAJHAAABRwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAAARwAAAkcAAAFkAAAAMwAAADMAAAAzAAAAMwAAADMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAAUcAAAJHAAADBgAAADMAAAAzAAAAMwAAADMAAAAzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAABHAAADRwAAAgYAAAAzAAAAMwAAADMAAAAzAAAAMwAAAA== -4,0: ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAAJLAAACSwAAAgoAAAA3AAAANwAAADcAAAA3AAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAAASwAAAEsAAANoAAAANwAAADcAAAA3AAAANwAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAUsAAAFLAAACSwAAA0sAAABLAAABSwAAAksAAABLAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAANLAAAASwAAAksAAABLAAAASwAAAksAAAJLAAACSwAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAABSwAAA0sAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAJLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAksAAABLAAACSwAAAUsAAAJLAAADSwAAAWgAAABXAAAAVwAAAFcAAABoAAAAVwAAAEsAAANLAAAASwAAAksAAABLAAADSwAAA0sAAANLAAACSwAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAUsAAAFLAAADSwAAAksAAABLAAAASwAAAEsAAABLAAADWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAAJHAAACRwAAAgYAAAAzAAAAMwAAADMAAAAzAAAAMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAAARwAAAEcAAANkAAAAMwAAADMAAAAzAAAAMwAAADMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAAUcAAAFHAAACRwAAA0cAAABHAAABRwAAAkcAAABHAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAANHAAAARwAAAkcAAABHAAAARwAAAkcAAAJHAAACRwAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAABRwAAA0cAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAJHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAkcAAABHAAACRwAAAUcAAAJHAAADRwAAAWQAAABTAAAAUwAAAFMAAABkAAAAUwAAAEcAAANHAAAARwAAAkcAAABHAAADRwAAA0cAAANHAAACRwAAAEcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAUcAAAFHAAADRwAAAkcAAABHAAAARwAAAEcAAABHAAADVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -5,-1: ind: -5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAaAAAAEsAAAFLAAABSwAAAUsAAAJLAAABSwAAAUsAAABLAAADSwAAAksAAABLAAAASwAAAAAAAABnAAAAAAAAAGgAAABLAAACSwAAAEsAAAFLAAAASwAAA0sAAAFLAAADSwAAA0sAAANLAAACSwAAAUsAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAACSwAAAUsAAANoAAAAAAAAAGcAAABnAAAAaAAAAGcAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABLAAADSwAAAUsAAANLAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAZAAAAEcAAAFHAAABRwAAAUcAAAJHAAABRwAAAUcAAABHAAADRwAAAkcAAABHAAAARwAAAAAAAABjAAAAAAAAAGQAAABHAAACRwAAAEcAAAFHAAAARwAAA0cAAAFHAAADRwAAA0cAAANHAAACRwAAAUcAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAACRwAAAUcAAANkAAAAAAAAAGMAAABjAAAAZAAAAGMAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABHAAADRwAAAUcAAANHAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -5,0: ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAABoAAAAZwAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAEsAAAFLAAACSwAAAksAAAJoAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAAFLAAABaAAAAAAAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAADSwAAAEsAAAJLAAADSwAAAEsAAAFLAAABSwAAAUsAAAEAAAAAaAAAAGgAAABoAAAASwAAAksAAANLAAADSwAAAUsAAAFLAAACSwAAAUsAAABLAAABSwAAAUsAAAFLAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAABkAAAAYwAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAEcAAAFHAAACRwAAAkcAAAJkAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAEcAAAFHAAABZAAAAAAAAABkAAAAZAAAAGQAAABHAAAARwAAAEcAAABHAAADRwAAAEcAAAJHAAADRwAAAEcAAAFHAAABRwAAAUcAAAEAAAAAZAAAAGQAAABkAAAARwAAAkcAAANHAAADRwAAAUcAAAFHAAACRwAAAUcAAABHAAABRwAAAUcAAAFHAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,-2: ind: 3,-2 - tiles: aAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABnAAAAaAAAAEEAAABBAAAAQQAAAGgAAABBAAAAQQAAAEEAAABoAAAAQQAAAEEAAABBAAAAaAAAAGcAAABoAAAAZwAAAGgAAABBAAAAQQAAAEEAAABoAAAAQQAAAEEAAABBAAAAaAAAAEEAAABBAAAAQQAAAGgAAABnAAAAaAAAAGcAAABoAAAAQQAAAEEAAABBAAAAaAAAAEEAAABBAAAAQQAAAGgAAABBAAAAQQAAAEEAAABoAAAAZwAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAaAAAAGgAAABoAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAFLAAADSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: ZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABjAAAAZAAAAD0AAAA9AAAAPQAAAGQAAAA9AAAAPQAAAD0AAABkAAAAPQAAAD0AAAA9AAAAZAAAAGMAAABkAAAAYwAAAGQAAAA9AAAAPQAAAD0AAABkAAAAPQAAAD0AAAA9AAAAZAAAAD0AAAA9AAAAPQAAAGQAAABjAAAAZAAAAGMAAABkAAAAPQAAAD0AAAA9AAAAZAAAAD0AAAA9AAAAPQAAAGQAAAA9AAAAPQAAAD0AAABkAAAAYwAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAAZAAAAGQAAABkAAAARwAAAEcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAFHAAADRwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== 3,-1: ind: 3,-1 - tiles: aAAAAGgAAABoAAAASwAAAEsAAABLAAACSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAACSwAAAksAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAGgAAABLAAADSwAAAksAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAABLAAAASwAAA0sAAANXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAABaAAAAGgAAABLAAACSwAAAEsAAANLAAABVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAmgAAABLAAABSwAAAEsAAABLAAABSwAAA1cAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAASwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAACSwAAAEsAAANLAAADSwAAAksAAANLAAACVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAksAAABLAAAASwAAAksAAANLAAADSwAAAlcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAABLAAAASwAAAUsAAAJLAAABSwAAA0sAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAABaAAAAEsAAANoAAAASwAAAksAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAADSwAAA0sAAABLAAADaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAA0sAAAFLAAACSwAAA2gAAABLAAADSwAAA0sAAAJoAAAAGgAAABoAAAFoAAAAaAAAAGgAAABoAAAASwAAAksAAAFLAAAASwAAAEsAAAFoAAAASwAAAksAAAJLAAACaAAAABoAAAAaAAADaAAAAGgAAABoAAAAaAAAAEsAAAFLAAABSwAAAUsAAAJLAAACaAAAAEsAAANLAAABSwAAAmgAAAAaAAACGgAAAxoAAAMaAAADZwAAAA== + tiles: ZAAAAGQAAABkAAAARwAAAEcAAABHAAACRwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAACRwAAAkcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAGQAAABHAAADRwAAAkcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAABHAAAARwAAA0cAAANTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAABZAAAAGQAAABHAAACRwAAAEcAAANHAAABUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAmQAAABHAAABRwAAAEcAAABHAAABRwAAA1MAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAABkAAAAZAAAAGQAAABkAAAARwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAACRwAAAEcAAANHAAADRwAAAkcAAANHAAACUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAkcAAABHAAAARwAAAkcAAANHAAADRwAAAlMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAABHAAAARwAAAUcAAAJHAAABRwAAA0cAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAABZAAAAEcAAANkAAAARwAAAkcAAABHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAADRwAAA0cAAABHAAADZAAAAEcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAA0cAAAFHAAACRwAAA2QAAABHAAADRwAAA0cAAAJkAAAAFgAAABYAAAFkAAAAZAAAAGQAAABkAAAARwAAAkcAAAFHAAAARwAAAEcAAAFkAAAARwAAAkcAAAJHAAACZAAAABYAAAAWAAADZAAAAGQAAABkAAAAZAAAAEcAAAFHAAABRwAAAUcAAAJHAAACZAAAAEcAAANHAAABRwAAAmQAAAAWAAACFgAAAxYAAAMWAAADYwAAAA== 3,0: ind: 3,0 - tiles: aAAAAEsAAAFLAAAASwAAAEsAAAFLAAAAaAAAAEsAAAJLAAADSwAAA2gAAAAaAAACGgAAAxoAAAAaAAAAaAAAAGgAAABLAAACSwAAAEsAAANLAAACSwAAAGgAAABoAAAASwAAAmgAAABoAAAAGgAAARoAAAEaAAABGgAAAWcAAABoAAAASwAAAksAAABLAAADSwAAAEsAAAFLAAAASwAAAksAAAJLAAACaAAAABoAAAFoAAAAaAAAAGgAAABoAAAASwAAAEsAAAFLAAADSwAAA0sAAAJLAAABSwAAAEsAAABLAAABSwAAA0sAAAJLAAABSwAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAA0sAAAFLAAAASwAAA0sAAABLAAACSwAAAUsAAABLAAAASwAAA0sAAABoAAAAaAAAAGgAAABoAAAAGgAAAhoAAAIaAAABaAAAAEsAAANLAAADSwAAAEsAAAJLAAACSwAAAEsAAAJLAAABaAAAAGgAAABoAAAAaAAAAGgAAABLAAAAaAAAAGgAAABoAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAUsAAABoAAAASwAAA0sAAANLAAABSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABoAAAASwAAA0sAAAJLAAAAaAAAAEsAAABLAAAASwAAAEsAAAJoAAAAaAAAAFcAAABoAAAAaAAAAAAAAAAAAAAAaAAAAEsAAAJLAAAASwAAAGgAAABLAAABSwAAAUsAAANLAAADaAAAAFcAAABXAAAAaAAAAGgAAAAAAAAAAAAAAGgAAABLAAADSwAAA0sAAAJoAAAASwAAAEsAAAJLAAAASwAAAWgAAABXAAAAVwAAAGgAAABnAAAAZwAAAGcAAABoAAAAaAAAAEsAAAJoAAAAaAAAAEsAAABLAAACSwAAAEsAAAJoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAACSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAACSwAAAksAAAJLAAABSwAAADQAAABLAAAASwAAARoAAAAaAAABGgAAAmgAAABoAAAAAAAAAGcAAABLAAACSwAAA0sAAAFLAAABSwAAA0sAAAI0AAAASwAAAEsAAABoAAAAGgAAAmgAAABoAAAAZwAAAGcAAABnAAAASwAAA0sAAANLAAADSwAAAksAAABLAAABNAAAAEsAAAFLAAADaAAAABoAAABoAAAAaAAAAGgAAABnAAAAaAAAAA== + tiles: ZAAAAEcAAAFHAAAARwAAAEcAAAFHAAAAZAAAAEcAAAJHAAADRwAAA2QAAAAWAAACFgAAAxYAAAAWAAAAZAAAAGQAAABHAAACRwAAAEcAAANHAAACRwAAAGQAAABkAAAARwAAAmQAAABkAAAAFgAAARYAAAEWAAABFgAAAWMAAABkAAAARwAAAkcAAABHAAADRwAAAEcAAAFHAAAARwAAAkcAAAJHAAACZAAAABYAAAFkAAAAZAAAAGQAAABkAAAARwAAAEcAAAFHAAADRwAAA0cAAAJHAAABRwAAAEcAAABHAAABRwAAA0cAAAJHAAABRwAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAA0cAAAFHAAAARwAAA0cAAABHAAACRwAAAUcAAABHAAAARwAAA0cAAABkAAAAZAAAAGQAAABkAAAAFgAAAhYAAAIWAAABZAAAAEcAAANHAAADRwAAAEcAAAJHAAACRwAAAEcAAAJHAAABZAAAAGQAAABkAAAAZAAAAGQAAABHAAAAZAAAAGQAAABkAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAUcAAABkAAAARwAAA0cAAANHAAABRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABkAAAARwAAA0cAAAJHAAAAZAAAAEcAAABHAAAARwAAAEcAAAJkAAAAZAAAAFMAAABkAAAAZAAAAAAAAAAAAAAAZAAAAEcAAAJHAAAARwAAAGQAAABHAAABRwAAAUcAAANHAAADZAAAAFMAAABTAAAAZAAAAGQAAAAAAAAAAAAAAGQAAABHAAADRwAAA0cAAAJkAAAARwAAAEcAAAJHAAAARwAAAWQAAABTAAAAUwAAAGQAAABjAAAAYwAAAGMAAABkAAAAZAAAAEcAAAJkAAAAZAAAAEcAAABHAAACRwAAAEcAAAJkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAACRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAACRwAAAkcAAAJHAAABRwAAADAAAABHAAAARwAAARYAAAAWAAABFgAAAmQAAABkAAAAAAAAAGMAAABHAAACRwAAA0cAAAFHAAABRwAAA0cAAAIwAAAARwAAAEcAAABkAAAAFgAAAmQAAABkAAAAYwAAAGMAAABjAAAARwAAA0cAAANHAAADRwAAAkcAAABHAAABMAAAAEcAAAFHAAADZAAAABYAAABkAAAAZAAAAGQAAABjAAAAZAAAAA== -3,-2: ind: -3,-2 - tiles: SwAAAmgAAABoAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANbAAABWwAAA1sAAAJbAAAAaAAAAEsAAAFLAAAAaAAAAGgAAABLAAAASwAAAEsAAANoAAAAaAAAAGgAAABLAAADSwAAA0sAAAJLAAADSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAFcAAABoAAAAVwAAAGgAAABXAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAANgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAADYAAAA2AAAAaAAAAGgAAABoAAAAEgAAABIAAAASAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAANgAAAGgAAABoAAAAaAAAADsAAAA7AAAAEgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAGgAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAGgAAARoAAAIaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAABoAAAMaAAABGgAAAQ== + tiles: RwAAAmQAAABkAAAAZAAAAEcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANXAAABVwAAA1cAAAJXAAAAZAAAAEcAAAFHAAAAZAAAAGQAAABHAAAARwAAAEcAAANkAAAAZAAAAGQAAABHAAADRwAAA0cAAAJHAAADRwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAZAAAAFMAAABkAAAAUwAAAGQAAABTAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAMgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAADIAAAAyAAAAZAAAAGQAAABkAAAADgAAAA4AAAAOAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAMgAAAGQAAABkAAAAZAAAADcAAAA3AAAADgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAAAFgAAABYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAFgAAARYAAAIWAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAABYAAAMWAAABFgAAAQ== -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZQAAAGUAAAJoAAAAZQAAAmUAAAJlAAADZQAAA2UAAAFoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGUAAAFlAAABZQAAA2UAAAFlAAACZQAAAmUAAAJlAAABaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAZQAAAGUAAANlAAADZQAAAWgAAABlAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZQAAAWUAAANlAAABZQAAAmgAAABoAAAAaAAAAGUAAAJlAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGUAAANlAAACZQAAAmUAAAJlAAACaAAAAGUAAAFlAAAAZQAAAmgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABlAAAAZQAAAmUAAAFlAAACZQAAAGUAAABlAAAAZQAAAWgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAZQAAAmUAAABlAAAAZQAAAmUAAAJoAAAAZQAAAGUAAAFlAAACaAAAAAAAAABoAAAAaAAAAGgAAABnAAAAaAAAAGUAAABlAAABZQAAAGUAAAJlAAADZQAAAGUAAANlAAABaAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAZwAAAGgAAABlAAACZQAAA2UAAANlAAAAZQAAA2UAAABoAAAAZQAAA2gAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAJgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAmAAAAJgAAACYAAAAmAAAAJgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAADSwAAAksAAABoAAAAJgAAACYAAAAmAAAAJgAAACYAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAA0sAAAJLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYQAAAGEAAAJkAAAAYQAAAmEAAAJhAAADYQAAA2EAAAFkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGEAAAFhAAABYQAAA2EAAAFhAAACYQAAAmEAAAJhAAABZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAYQAAAGEAAANhAAADYQAAAWQAAABhAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYQAAAWEAAANhAAABYQAAAmQAAABkAAAAZAAAAGEAAAJhAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGEAAANhAAACYQAAAmEAAAJhAAACZAAAAGEAAAFhAAAAYQAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABhAAAAYQAAAmEAAAFhAAACYQAAAGEAAABhAAAAYQAAAWQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAYQAAAmEAAABhAAAAYQAAAmEAAAJkAAAAYQAAAGEAAAFhAAACZAAAAAAAAABkAAAAZAAAAGQAAABjAAAAZAAAAGEAAABhAAABYQAAAGEAAAJhAAADYQAAAGEAAANhAAABZAAAAGQAAAAAAAAAZAAAAGQAAABkAAAAYwAAAGQAAABhAAACYQAAA2EAAANhAAAAYQAAA2EAAABkAAAAYQAAA2QAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAIgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAiAAAAIgAAACIAAAAiAAAAIgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAADRwAAAkcAAABkAAAAIgAAACIAAAAiAAAAIgAAACIAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAA0cAAAJHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAAFLAAABSwAAA0sAAABLAAAASwAAA0sAAAJLAAACSwAAAUsAAAMAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAABSwAAAEsAAABLAAACSwAAA0sAAANLAAACSwAAA0sAAABLAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEcAAAFHAAABRwAAA0cAAABHAAAARwAAA0cAAAJHAAACRwAAAUcAAAMAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABHAAABRwAAAEcAAABHAAACRwAAA0cAAANHAAACRwAAA0cAAABHAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== 0,2: ind: 0,2 - tiles: SwAAAUsAAAFLAAADSwAAAEsAAANLAAAASwAAAksAAAFLAAACSwAAAUsAAAJLAAADSwAAAUsAAANoAAAAGgAAAksAAAFLAAADSwAAAWgAAABoAAAAaAAAABoAAAAaAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAksAAANoAAAAGgAAABoAAAAaAAADGgAAAxoAAANoAAAAGgAAABoAAAFoAAAAGgAAARoAAANoAAAAaAAAAEMAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAAJLAAADSwAAA0sAAABLAAABSwAAAksAAAJLAAACNwAAAEMAAABDAAAAQwAAAGgAAABLAAADSwAAAksAAANLAAACSwAAA0sAAAFLAAABSwAAAksAAAFLAAACSwAAAmgAAABDAAAAQwAAAEMAAABoAAAASwAAAUsAAAAaAAACGgAAABoAAAAaAAABGgAAAhoAAAEaAAAASwAAA0sAAABYAAAAQwAAAEMAAABDAAAAaAAAAEsAAABLAAACGgAAARoAAAAaAAAAGgAAAxoAAAAaAAAAGgAAAEsAAABLAAABaAAAAEMAAABDAAAAQwAAAEMAAABLAAAASwAAAhoAAAIaAAAAGgAAARoAAAEaAAADGgAAARoAAAFLAAAASwAAAEsAAANDAAAAQwAAAEMAAABoAAAASwAAAEsAAAJLAAAAGgAAARoAAAIaAAADGgAAAhoAAABLAAADSwAAAUsAAANoAAAAaAAAAEMAAABoAAAAaAAAAEsAAANLAAACSwAAAUsAAAFLAAACSwAAAksAAAFLAAACSwAAAUsAAAJLAAACaAAAABoAAAAaAAADGgAAAmgAAAAaAAABGgAAAmgAAAAaAAADGgAAAhoAAAEaAAABGgAAAmgAAAAaAAAAGgAAAGgAAAAaAAADGgAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAARoAAAMaAAAAaAAAAGcAAABoAAAAFwAABBoAAAMaAAACGgAAARoAAAIaAAAAFwAABmgAAABnAAAAaAAAABoAAAIaAAACGgAAAmgAAABnAAAAaAAAABcAAAMXAAAAGgAAARoAAAAaAAAAFwAABRcAAARoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAAAaAAAAGgAAABoAAAIaAAAAGgAAABoAAAMaAAADaAAAAGcAAABoAAAASwAAAksAAAJoAAAAAAAAAGcAAABoAAAAFwAAARcAAAAaAAADGgAAARoAAAMXAAADFwAAAGgAAABnAAAAaAAAAA== + tiles: RwAAAUcAAAFHAAADRwAAAEcAAANHAAAARwAAAkcAAAFHAAACRwAAAUcAAAJHAAADRwAAAUcAAANkAAAAFgAAAkcAAAFHAAADRwAAAWQAAABkAAAAZAAAABYAAAAWAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAkcAAANkAAAAFgAAABYAAAAWAAADFgAAAxYAAANkAAAAFgAAABYAAAFkAAAAFgAAARYAAANkAAAAZAAAAD8AAABkAAAAZAAAAGQAAABHAAAARwAAAEcAAAJHAAADRwAAA0cAAABHAAABRwAAAkcAAAJHAAACMwAAAD8AAAA/AAAAPwAAAGQAAABHAAADRwAAAkcAAANHAAACRwAAA0cAAAFHAAABRwAAAkcAAAFHAAACRwAAAmQAAAA/AAAAPwAAAD8AAABkAAAARwAAAUcAAAAWAAACFgAAABYAAAAWAAABFgAAAhYAAAEWAAAARwAAA0cAAABUAAAAPwAAAD8AAAA/AAAAZAAAAEcAAABHAAACFgAAARYAAAAWAAAAFgAAAxYAAAAWAAAAFgAAAEcAAABHAAABZAAAAD8AAAA/AAAAPwAAAD8AAABHAAAARwAAAhYAAAIWAAAAFgAAARYAAAEWAAADFgAAARYAAAFHAAAARwAAAEcAAAM/AAAAPwAAAD8AAABkAAAARwAAAEcAAAJHAAAAFgAAARYAAAIWAAADFgAAAhYAAABHAAADRwAAAUcAAANkAAAAZAAAAD8AAABkAAAAZAAAAEcAAANHAAACRwAAAUcAAAFHAAACRwAAAkcAAAFHAAACRwAAAUcAAAJHAAACZAAAABYAAAAWAAADFgAAAmQAAAAWAAABFgAAAmQAAAAWAAADFgAAAhYAAAEWAAABFgAAAmQAAAAWAAAAFgAAAGQAAAAWAAADFgAAABYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAARYAAAMWAAAAZAAAAGMAAABkAAAAEwAABBYAAAMWAAACFgAAARYAAAIWAAAAEwAABmQAAABjAAAAZAAAABYAAAIWAAACFgAAAmQAAABjAAAAZAAAABMAAAMTAAAAFgAAARYAAAAWAAAAEwAABRMAAARkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAAAWAAAAFgAAABYAAAIWAAAAFgAAABYAAAMWAAADZAAAAGMAAABkAAAARwAAAkcAAAJkAAAAAAAAAGMAAABkAAAAEwAAARMAAAAWAAADFgAAARYAAAMTAAADEwAAAGQAAABjAAAAZAAAAA== -1,2: ind: -1,2 - tiles: aAAAAGgAAABLAAAASwAAAEsAAAJLAAAAaAAAAGgAAABLAAAASwAAAmgAAABoAAAAaAAAAEMAAABoAAAAaAAAAGgAAABYAAAASwAAAUsAAAFLAAADSwAAA0sAAAFLAAAASwAAA0sAAANLAAACSwAAAUsAAABLAAACSwAAAEsAAABoAAAAaAAAAGgAAABLAAAASwAAAUsAAANLAAADSwAAA0sAAANLAAADSwAAA0sAAAJLAAAASwAAAEsAAAFLAAADaAAAAFcAAABoAAAASwAAAEsAAAJLAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAACSwAAAEsAAAFoAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAUsAAAFLAAAAaAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAFLAAADaAAAAGgAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAACSwAAAksAAAJoAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAEsAAABLAAABaAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABoAAAAaAAAAFcAAABoAAAASwAAAEsAAAFLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAEsAAAJLAAACSwAAAmgAAAAaAAACGgAAABoAAABoAAAAGgAAAxoAAAMaAAACGgAAARoAAAFoAAAAaAAAAGgAAABLAAADaAAAAEsAAAFoAAAAGgAAARoAAAAaAAAAGgAAARoAAAIaAAADGgAAABoAAAEaAAADGgAAAhoAAAMaAAAASwAAAUsAAANLAAACaAAAABoAAAIaAAACGgAAAGgAAAAaAAAAGgAAAhoAAAIaAAADGgAAAxoAAAMaAAADaAAAAEsAAAJLAAABSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAIaAAACGgAAARoAAANoAAAAaAAAAGgAAABLAAADaAAAAEsAAAFoAAAAGgAAABoAAAMaAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAJLAAACSwAAAksAAAFLAAABSwAAA0sAAABLAAADSwAAAUsAAANLAAADSwAAAEsAAABLAAADSwAAAA== + tiles: ZAAAAGQAAABHAAAARwAAAEcAAAJHAAAAZAAAAGQAAABHAAAARwAAAmQAAABkAAAAZAAAAD8AAABkAAAAZAAAAGQAAABUAAAARwAAAUcAAAFHAAADRwAAA0cAAAFHAAAARwAAA0cAAANHAAACRwAAAUcAAABHAAACRwAAAEcAAABkAAAAZAAAAGQAAABHAAAARwAAAUcAAANHAAADRwAAA0cAAANHAAADRwAAA0cAAAJHAAAARwAAAEcAAAFHAAADZAAAAFMAAABkAAAARwAAAEcAAAJHAAAARwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAACRwAAAEcAAAFkAAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAAUcAAAFHAAAAZAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAAFHAAADZAAAAGQAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAACRwAAAkcAAAJkAAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAAEcAAABHAAABZAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAABkAAAAZAAAAFMAAABkAAAARwAAAEcAAAFHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAZAAAAEcAAAJHAAACRwAAAmQAAAAWAAACFgAAABYAAABkAAAAFgAAAxYAAAMWAAACFgAAARYAAAFkAAAAZAAAAGQAAABHAAADZAAAAEcAAAFkAAAAFgAAARYAAAAWAAAAFgAAARYAAAIWAAADFgAAABYAAAEWAAADFgAAAhYAAAMWAAAARwAAAUcAAANHAAACZAAAABYAAAIWAAACFgAAAGQAAAAWAAAAFgAAAhYAAAIWAAADFgAAAxYAAAMWAAADZAAAAEcAAAJHAAABRwAAA2QAAABkAAAAZAAAAGQAAABkAAAAFgAAABYAAAIWAAACFgAAARYAAANkAAAAZAAAAGQAAABHAAADZAAAAEcAAAFkAAAAFgAAABYAAAMWAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAAJHAAACRwAAAkcAAAFHAAABRwAAA0cAAABHAAADRwAAAUcAAANHAAADRwAAAEcAAABHAAADRwAAAA== 1,1: ind: 1,1 - tiles: SwAAAUsAAAFLAAABSwAAAEsAAANLAAAASwAAAEsAAANLAAADSwAAAEsAAAJLAAABSwAAAEsAAABoAAAAaAAAAEsAAAFLAAACSwAAAksAAANLAAAASwAAAUsAAAFLAAAASwAAAUsAAABLAAACSwAAA0sAAABLAAAASwAAAUsAAABLAAADSwAAAEsAAABLAAAASwAAA0sAAAJLAAACSwAAAEsAAAJLAAACSwAAAksAAABLAAADSwAAAmgAAABLAAADSwAAARoAAAEaAAAAGgAAAhoAAAJLAAADGgAAAhoAAAEaAAADGgAAAxoAAABLAAAASwAAAEsAAAJLAAAASwAAA1gAAABoAAAAaAAAAGgAAABoAAAAGgAAA2gAAABoAAAAaAAAAGgAAABoAAAANgAAAGgAAAA2AAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAGgAAARoAAANoAAAAZwAAAGcAAABnAAAAaAAAADYAAAA2AAAANgAAAGgAAAApAAAAaAAAAGgAAABnAAAAaAAAABoAAAMaAAAAaAAAAGgAAABoAAAAaAAAAGgAAAA2AAAANgAAADYAAABoAAAAKQAAAGgAAABoAAAAZwAAAGgAAAAaAAAAGgAAAhoAAAIaAAABGgAAAxoAAAAaAAADNgAAADYAAAA2AAAAaAAAAGUAAAFoAAAAaAAAAGcAAABoAAAAGgAAAxoAAAEaAAAAGgAAAhoAAAIaAAADaAAAADYAAAA2AAAANgAAAGgAAABlAAAAaAAAAGgAAABnAAAAaAAAABoAAAIaAAAAaAAAAGgAAABoAAAAaAAAAGgAAAA2AAAANgAAADYAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAAAaAAAAGgAAAGgAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAANoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAZwAAAGcAAABnAAAAaAAAAGUAAABlAAABZQAAAmUAAANlAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAAAZQAAAmUAAABlAAACZQAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAgAAAAIAAABoAAAAKQAAAGgAAABoAAAAaAAAAGUAAAMaAAADGgAAARoAAAMaAAADaAAAAGgAAABoAAAAaAAAAAIAAAACAAAAaAAAACkAAAApAAAAKQAAAGgAAABoAAAAGgAAAhoAAAEaAAACGgAAAGgAAABoAAAAaAAAAGgAAAACAAAAAgAAAGgAAABoAAAAaAAAAGgAAABoAAAAKQAAAA== + tiles: RwAAAUcAAAFHAAABRwAAAEcAAANHAAAARwAAAEcAAANHAAADRwAAAEcAAAJHAAABRwAAAEcAAABkAAAAZAAAAEcAAAFHAAACRwAAAkcAAANHAAAARwAAAUcAAAFHAAAARwAAAUcAAABHAAACRwAAA0cAAABHAAAARwAAAUcAAABHAAADRwAAAEcAAABHAAAARwAAA0cAAAJHAAACRwAAAEcAAAJHAAACRwAAAkcAAABHAAADRwAAAmQAAABHAAADRwAAARYAAAEWAAAAFgAAAhYAAAJHAAADFgAAAhYAAAEWAAADFgAAAxYAAABHAAAARwAAAEcAAAJHAAAARwAAA1QAAABkAAAAZAAAAGQAAABkAAAAFgAAA2QAAABkAAAAZAAAAGQAAABkAAAAMgAAAGQAAAAyAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAFgAAARYAAANkAAAAYwAAAGMAAABjAAAAZAAAADIAAAAyAAAAMgAAAGQAAAAlAAAAZAAAAGQAAABjAAAAZAAAABYAAAMWAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAyAAAAMgAAADIAAABkAAAAJQAAAGQAAABkAAAAYwAAAGQAAAAWAAAAFgAAAhYAAAIWAAABFgAAAxYAAAAWAAADMgAAADIAAAAyAAAAZAAAAGEAAAFkAAAAZAAAAGMAAABkAAAAFgAAAxYAAAEWAAAAFgAAAhYAAAIWAAADZAAAADIAAAAyAAAAMgAAAGQAAABhAAAAZAAAAGQAAABjAAAAZAAAABYAAAIWAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAyAAAAMgAAADIAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAAAWAAAAFgAAAGQAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAANkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAYwAAAGMAAABjAAAAZAAAAGEAAABhAAABYQAAAmEAAANhAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAAAYQAAAmEAAABhAAACYQAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAgAAAAIAAABkAAAAJQAAAGQAAABkAAAAZAAAAGEAAAMWAAADFgAAARYAAAMWAAADZAAAAGQAAABkAAAAZAAAAAIAAAACAAAAZAAAACUAAAAlAAAAJQAAAGQAAABkAAAAFgAAAhYAAAEWAAACFgAAAGQAAABkAAAAZAAAAGQAAAACAAAAAgAAAGQAAABkAAAAZAAAAGQAAABkAAAAJQAAAA== 1,2: ind: 1,2 - tiles: GgAAABoAAAEaAAABGgAAA2gAAABoAAAAaAAAAGgAAAACAAAAAgAAAGgAAAApAAAAKQAAACkAAAApAAAAKQAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAACAAAAAgAAAAIAAABoAAAAaAAAACkAAABoAAAAKQAAACkAAAA3AAAANwAAADcAAAA3AAAAaAAAAGgAAABoAAAAAgAAAAIAAAACAAAAaAAAACkAAAApAAAAaAAAACkAAABoAAAANwAAADcAAAA3AAAANwAAAGgAAABoAAAAaAAAAGgAAAACAAAAAgAAAGgAAAApAAAAKQAAAGgAAAApAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAEsAAABLAAACSwAAAksAAAJLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAEsAAABLAAABSwAAAxoAAAAaAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAUsAAABLAAACGgAAARoAAAEaAAADGgAAAxoAAANoAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAASwAAAksAAANLAAABSwAAAxoAAAEaAAADGgAAARoAAAEaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAksAAAEaAAAAGgAAAUsAAABLAAACSwAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAAAGgAAABoAAABLAAABSwAAAUsAAAJoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAABSwAAAhoAAAMaAAAASwAAAUsAAAFLAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAUsAAAJLAAABSwAAAUsAAANLAAAASwAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAASwAAAksAAAJLAAAASwAAAksAAANLAAACSwAAA0sAAAFoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAEsAAAJLAAAASwAAAUsAAAJLAAAASwAAAksAAAJLAAACaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJoAAAAaAAAAA== + tiles: FgAAABYAAAEWAAABFgAAA2QAAABkAAAAZAAAAGQAAAACAAAAAgAAAGQAAAAlAAAAJQAAACUAAAAlAAAAJQAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAACAAAAAgAAAAIAAABkAAAAZAAAACUAAABkAAAAJQAAACUAAAAzAAAAMwAAADMAAAAzAAAAZAAAAGQAAABkAAAAAgAAAAIAAAACAAAAZAAAACUAAAAlAAAAZAAAACUAAABkAAAAMwAAADMAAAAzAAAAMwAAAGQAAABkAAAAZAAAAGQAAAACAAAAAgAAAGQAAAAlAAAAJQAAAGQAAAAlAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAEcAAABHAAACRwAAAkcAAAJHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAEcAAABHAAABRwAAAxYAAAAWAAAAFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAUcAAABHAAACFgAAARYAAAEWAAADFgAAAxYAAANkAAAAZAAAAFMAAABTAAAAZAAAAGQAAABkAAAARwAAAkcAAANHAAABRwAAAxYAAAEWAAADFgAAARYAAAEWAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAAkcAAAEWAAAAFgAAAUcAAABHAAACRwAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAABHAAAAFgAAABYAAABHAAABRwAAAUcAAAJkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAABRwAAAhYAAAMWAAAARwAAAUcAAAFHAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAAUcAAAJHAAABRwAAAUcAAANHAAAARwAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAARwAAAkcAAAJHAAAARwAAAkcAAANHAAACRwAAA0cAAAFkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAEcAAAJHAAAARwAAAUcAAAJHAAAARwAAAkcAAAJHAAACZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJkAAAAZAAAAA== -2,2: ind: -2,2 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAA3AAAAaAAAADcAAAA3AAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAANwAAADcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAANwAAAGgAAABoAAAARgAAAEYAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAANwAAAGgAAABoAAAAaAAAAEYAAABGAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFcAAABXAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAVwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAGgAAA2gAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAABoAAAJoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAAASwAAAQ== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAzAAAAZAAAADMAAAAzAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAMwAAADMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAMwAAAGQAAABkAAAAQgAAAEIAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAMwAAAGQAAABkAAAAZAAAAEIAAABCAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFMAAABTAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAUwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAFgAAA2QAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAABYAAAJkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAAARwAAAQ== -1,3: ind: -1,3 - tiles: SwAAA0sAAABLAAABSwAAA0sAAANLAAACSwAAA0sAAANLAAACSwAAA0sAAAJLAAADSwAAAUsAAABLAAACSwAAABoAAAAaAAABaAAAAGgAAAAPAAABaAAAAGgAAABoAAAADwAAAmgAAABoAAAAaAAAAA8AAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAPAAADDwAAAw8AAAFoAAAADwAAAg8AAAAPAAAAaAAAAA8AAAMPAAAADwAAAGgAAABbAAABaAAAAGgAAABoAAAADwAAAA8AAAAPAAADaAAAAA8AAAIPAAADDwAAAWgAAAAPAAABDwAAAg8AAANoAAAAWwAAA2gAAABoAAAAaAAAAGgAAAAPAAABaAAAAGgAAABoAAAADwAAAGgAAABoAAAAaAAAAA8AAAFoAAAAaAAAAFsAAAFoAAAAaAAAAGgAAABLAAABSwAAA0sAAAFLAAAASwAAAksAAAJLAAAASwAAAUsAAAFLAAABSwAAA2gAAABbAAACaAAAACkAAABoAAAASwAAAEsAAAFLAAADSwAAAUsAAAJLAAABSwAAAUsAAABLAAAASwAAA0sAAANoAAAAaAAAAGgAAAApAAAAaAAAAEsAAABLAAABSwAAA0sAAAJLAAABSwAAAksAAAJLAAADSwAAAUsAAANLAAABaAAAAGcAAABoAAAAKQAAACkAAABLAAADSwAAA0sAAABLAAADSwAAAEsAAANLAAADSwAAAksAAAA2AAAANgAAAGgAAAAAAAAAaAAAACkAAAApAAAASwAAAksAAAFLAAADSwAAA0sAAAJLAAABSwAAAksAAANLAAADNgAAADYAAABoAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABoAAAANAAAAEsAAAFLAAADSwAAATQAAABoAAAAZwAAAGgAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAADQAAABLAAAASwAAAksAAAI0AAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABLAAADSwAAAEsAAAJLAAADSwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAA== + tiles: RwAAA0cAAABHAAABRwAAA0cAAANHAAACRwAAA0cAAANHAAACRwAAA0cAAAJHAAADRwAAAUcAAABHAAACRwAAABYAAAAWAAABZAAAAGQAAAALAAABZAAAAGQAAABkAAAACwAAAmQAAABkAAAAZAAAAAsAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAALAAADCwAAAwsAAAFkAAAACwAAAgsAAAALAAAAZAAAAAsAAAMLAAAACwAAAGQAAABXAAABZAAAAGQAAABkAAAACwAAAAsAAAALAAADZAAAAAsAAAILAAADCwAAAWQAAAALAAABCwAAAgsAAANkAAAAVwAAA2QAAABkAAAAZAAAAGQAAAALAAABZAAAAGQAAABkAAAACwAAAGQAAABkAAAAZAAAAAsAAAFkAAAAZAAAAFcAAAFkAAAAZAAAAGQAAABHAAABRwAAA0cAAAFHAAAARwAAAkcAAAJHAAAARwAAAUcAAAFHAAABRwAAA2QAAABXAAACZAAAACUAAABkAAAARwAAAEcAAAFHAAADRwAAAUcAAAJHAAABRwAAAUcAAABHAAAARwAAA0cAAANkAAAAZAAAAGQAAAAlAAAAZAAAAEcAAABHAAABRwAAA0cAAAJHAAABRwAAAkcAAAJHAAADRwAAAUcAAANHAAABZAAAAGMAAABkAAAAJQAAACUAAABHAAADRwAAA0cAAABHAAADRwAAAEcAAANHAAADRwAAAkcAAAAyAAAAMgAAAGQAAAAAAAAAZAAAACUAAAAlAAAARwAAAkcAAAFHAAADRwAAA0cAAAJHAAABRwAAAkcAAANHAAADMgAAADIAAABkAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABkAAAAMAAAAEcAAAFHAAADRwAAATAAAABkAAAAYwAAAGQAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAADAAAABHAAAARwAAAkcAAAIwAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABHAAADRwAAAEcAAAJHAAADRwAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAA== -2,3: ind: -2,3 - tiles: AAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAACSwAAAwAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAGgAAAhoAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAACRwAAAwAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAFgAAAhYAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,3: ind: -3,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAA== 1,3: ind: 1,3 - tiles: aAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABLAAABSwAAAksAAAFLAAAASwAAAwAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAASwAAAksAAAIaAAADGgAAA0sAAAEAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAEsAAAFLAAABSwAAAUsAAAFLAAADZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABLAAADSwAAAywAAAAsAAAALAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABoAAAASwAAAEsAAAIsAAAALAAAACwAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAaAAAAEsAAABLAAACLAAAACwAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGgAAABLAAACSwAAAiwAAAAsAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABHAAABRwAAAkcAAAFHAAAARwAAAwAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAARwAAAkcAAAIWAAADFgAAA0cAAAEAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAEcAAAFHAAABRwAAAUcAAAFHAAADYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABHAAADRwAAAygAAAAoAAAAKAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABkAAAARwAAAEcAAAIoAAAAKAAAACgAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAZAAAAEcAAABHAAACKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGQAAABHAAACRwAAAigAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,4: ind: -1,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,3: ind: 0,3 - tiles: SwAAAksAAABoAAAAAAAAAGcAAABoAAAAaAAAABcAAAIaAAACGgAAARoAAAIXAAABaAAAAGgAAABnAAAAaAAAAFsAAANoAAAAaAAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABbAAACWwAAAmgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAFsAAANoAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFsAAAFbAAABaAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABbAAAAWwAAAWgAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: RwAAAkcAAABkAAAAAAAAAGMAAABkAAAAZAAAABMAAAIWAAACFgAAARYAAAITAAABZAAAAGQAAABjAAAAZAAAAFcAAANkAAAAZAAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABXAAACVwAAAmQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAFcAAANkAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAFcAAAFXAAABZAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABXAAAAVwAAAWQAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,1: ind: 2,1 - tiles: aAAAAGgAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAACSwAAA2gAAABLAAABSwAAAksAAAJLAAABSwAAAUsAAAJoAAAANwAAADcAAABoAAAAaAAAAGgAAABLAAAASwAAAksAAAJoAAAASwAAAksAAABLAAACSwAAA0sAAABLAAACZQAAAzcAAAA3AAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAANLAAACSwAAA2gAAAA3AAAANwAAAGgAAABoAAAAaAAAAEsAAAJLAAAASwAAAksAAAFLAAABaAAAAGgAAABoAAAASwAAA0sAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAmgAAABLAAABSwAAA0sAAAIpAAAAaAAAAEsAAABLAAABSwAAABoAAAFoAAAAaAAAAGgAAABoAAAASwAAA0sAAABoAAAASwAAAksAAANoAAAAaAAAAGgAAABLAAAASwAAA0sAAAAaAAADaAAAAGgAAABoAAAAaAAAAEsAAANLAAABaAAAAEsAAAFLAAAAaAAAAGUAAAJlAAACSwAAAUsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAWgAAABLAAAASwAAAWgAAABlAAABaAAAAEsAAAJLAAACaAAAAGUAAANlAAAAWAAAAGgAAABoAAAASwAAAUsAAAFoAAAASwAAAUsAAABoAAAAaAAAAGgAAABLAAADSwAAAmUAAAFlAAADZQAAA2gAAABoAAAAaAAAAEsAAAJLAAABaAAAAEsAAAFLAAACaAAAAGUAAANoAAAASwAAA0sAAANoAAAAZQAAAmUAAAFoAAAAaAAAAGgAAABLAAACSwAAAEsAAAJLAAACSwAAA2gAAABlAAADZQAAAksAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAA2gAAABLAAADSwAAAVgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGUAAANoAAAASwAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABoAAAAWAAAAGgAAABoAAAAaAAAAEsAAANLAAACGgAAABoAAAIaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAKQAAAGgAAABLAAAASwAAAmgAAAAaAAADGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: ZAAAAGQAAABHAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAACRwAAA2QAAABHAAABRwAAAkcAAAJHAAABRwAAAUcAAAJkAAAAMwAAADMAAABkAAAAZAAAAGQAAABHAAAARwAAAkcAAAJkAAAARwAAAkcAAABHAAACRwAAA0cAAABHAAACYQAAAzMAAAAzAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAANHAAACRwAAA2QAAAAzAAAAMwAAAGQAAABkAAAAZAAAAEcAAAJHAAAARwAAAkcAAAFHAAABZAAAAGQAAABkAAAARwAAA0cAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAmQAAABHAAABRwAAA0cAAAIlAAAAZAAAAEcAAABHAAABRwAAABYAAAFkAAAAZAAAAGQAAABkAAAARwAAA0cAAABkAAAARwAAAkcAAANkAAAAZAAAAGQAAABHAAAARwAAA0cAAAAWAAADZAAAAGQAAABkAAAAZAAAAEcAAANHAAABZAAAAEcAAAFHAAAAZAAAAGEAAAJhAAACRwAAAUcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAWQAAABHAAAARwAAAWQAAABhAAABZAAAAEcAAAJHAAACZAAAAGEAAANhAAAAVAAAAGQAAABkAAAARwAAAUcAAAFkAAAARwAAAUcAAABkAAAAZAAAAGQAAABHAAADRwAAAmEAAAFhAAADYQAAA2QAAABkAAAAZAAAAEcAAAJHAAABZAAAAEcAAAFHAAACZAAAAGEAAANkAAAARwAAA0cAAANkAAAAYQAAAmEAAAFkAAAAZAAAAGQAAABHAAACRwAAAEcAAAJHAAACRwAAA2QAAABhAAADYQAAAkcAAABHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAA2QAAABHAAADRwAAAVQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGEAAANkAAAARwAAAEcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAFMAAABkAAAAVAAAAGQAAABkAAAAZAAAAEcAAANHAAACFgAAABYAAAIWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAJQAAAGQAAABHAAAARwAAAmQAAAAWAAADFgAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== 3,1: ind: 3,1 - tiles: SwAAAksAAAFLAAABSwAAAUsAAAJLAAACNAAAAEsAAABLAAAAaAAAABoAAABoAAAAaAAAAGgAAABnAAAAaAAAAEsAAAFLAAADSwAAAEsAAAFLAAADSwAAAmgAAABoAAAAGgAAA2gAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABLAAABSwAAAEsAAABLAAAASwAAAUsAAAFoAAAAGgAAARoAAAIaAAAAGgAAARoAAAMaAAADaAAAAGcAAABoAAAASwAAAksAAANLAAABSwAAA0sAAANLAAAAGgAAAhoAAANXAAAAVwAAAFcAAABXAAAAGgAAAWgAAABnAAAAaAAAAEsAAAFLAAACSwAAAUsAAABLAAADSwAAAhoAAAMaAAABVwAAAGgAAABoAAAAVwAAABoAAABoAAAAZwAAAGgAAABLAAABSwAAAEsAAAJLAAADSwAAAEsAAAMaAAACGgAAAlcAAABXAAAAVwAAAFcAAAAaAAABaAAAAGcAAABoAAAASwAAAksAAAFLAAACSwAAAEsAAANLAAAAaAAAABoAAAIaAAAAGgAAABoAAAMaAAABGgAAA2gAAABnAAAAaAAAAGgAAABoAAAASwAAAUsAAANoAAAAaAAAAGgAAABoAAAAGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABLAAAASwAAAUsAAABLAAADSwAAAksAAAJLAAADSwAAA0sAAANoAAAAGgAAAmgAAABoAAAAaAAAAGcAAABoAAAASwAAA0sAAAJLAAAASwAAA0sAAAJLAAADSwAAA0sAAAFLAAABaAAAABoAAANoAAAAaAAAAGgAAABnAAAAaAAAAEsAAAJLAAACSwAAA0sAAAFLAAACSwAAAksAAABLAAAASwAAAmgAAAAaAAACaAAAAGgAAABnAAAAZwAAAGcAAABoAAAAaAAAAEAAAABAAAAAaAAAAGgAAABLAAACSwAAAksAAAAaAAACGgAAARoAAANoAAAAaAAAAAAAAABnAAAAQAAAAEAAAABAAAAAQAAAAEAAAABoAAAASwAAAksAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEAAAABAAAAAQAAAAEAAAABAAAAAaAAAAEsAAANLAAAASwAAA0sAAAAaAAABaAAAAGgAAABoAAAAaAAAAGgAAABAAAAAQAAAAEAAAABAAAAAQAAAAGgAAABLAAABSwAAAksAAAJLAAABGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: RwAAAkcAAAFHAAABRwAAAUcAAAJHAAACMAAAAEcAAABHAAAAZAAAABYAAABkAAAAZAAAAGQAAABjAAAAZAAAAEcAAAFHAAADRwAAAEcAAAFHAAADRwAAAmQAAABkAAAAFgAAA2QAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABHAAABRwAAAEcAAABHAAAARwAAAUcAAAFkAAAAFgAAARYAAAIWAAAAFgAAARYAAAMWAAADZAAAAGMAAABkAAAARwAAAkcAAANHAAABRwAAA0cAAANHAAAAFgAAAhYAAANTAAAAUwAAAFMAAABTAAAAFgAAAWQAAABjAAAAZAAAAEcAAAFHAAACRwAAAUcAAABHAAADRwAAAhYAAAMWAAABUwAAAGQAAABkAAAAUwAAABYAAABkAAAAYwAAAGQAAABHAAABRwAAAEcAAAJHAAADRwAAAEcAAAMWAAACFgAAAlMAAABTAAAAUwAAAFMAAAAWAAABZAAAAGMAAABkAAAARwAAAkcAAAFHAAACRwAAAEcAAANHAAAAZAAAABYAAAIWAAAAFgAAABYAAAMWAAABFgAAA2QAAABjAAAAZAAAAGQAAABkAAAARwAAAUcAAANkAAAAZAAAAGQAAABkAAAAFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABHAAAARwAAAUcAAABHAAADRwAAAkcAAAJHAAADRwAAA0cAAANkAAAAFgAAAmQAAABkAAAAZAAAAGMAAABkAAAARwAAA0cAAAJHAAAARwAAA0cAAAJHAAADRwAAA0cAAAFHAAABZAAAABYAAANkAAAAZAAAAGQAAABjAAAAZAAAAEcAAAJHAAACRwAAA0cAAAFHAAACRwAAAkcAAABHAAAARwAAAmQAAAAWAAACZAAAAGQAAABjAAAAYwAAAGMAAABkAAAAZAAAADwAAAA8AAAAZAAAAGQAAABHAAACRwAAAkcAAAAWAAACFgAAARYAAANkAAAAZAAAAAAAAABjAAAAPAAAADwAAAA8AAAAPAAAADwAAABkAAAARwAAAkcAAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAADwAAAA8AAAAPAAAADwAAAA8AAAAZAAAAEcAAANHAAAARwAAA0cAAAAWAAABZAAAAGQAAABkAAAAZAAAAGQAAAA8AAAAPAAAADwAAAA8AAAAPAAAAGQAAABHAAABRwAAAkcAAAJHAAABFgAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== 2,2: ind: 2,2 - tiles: KQAAACkAAABLAAADSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAACkAAAApAAAASwAAAUsAAAAaAAAAGgAAA2gAAAAKAAAACgAAAA4AAAAOAAAACgAAAGgAAABoAAAAaAAAAGgAAAApAAAAaAAAAEsAAABLAAAAGgAAAhoAAAJoAAAACgAAAA4AAAAOAAAADgAAAA4AAABoAAAAaAAAAFgAAABoAAAAKQAAAGgAAABLAAAASwAAAhoAAAAaAAADaAAAAA4AAAAOAAAADgAAAA4AAAAOAAAAaAAAAEsAAABLAAACaAAAAGgAAABoAAAASwAAA0sAAAJLAAABSwAAAksAAAAOAAAADgAAAA4AAAAOAAAADgAAAEsAAANLAAAASwAAAGgAAABLAAACSwAAAEsAAAJLAAAASwAAA0sAAAJoAAAADgAAAA4AAAAOAAAACgAAAAoAAABoAAAASwAAAksAAABoAAAASwAAAEsAAAFLAAACSwAAAUsAAANLAAADaAAAAAoAAAAOAAAADgAAAA4AAAAOAAAAaAAAAEsAAAJLAAABaAAAABoAAAEaAAAAGgAAAUsAAAFLAAADSwAAAksAAAAOAAAADgAAAA4AAAAOAAAADgAAAEsAAAJLAAACSwAAAGgAAAAaAAABGgAAABoAAAFLAAAASwAAAksAAAFoAAAADgAAAA4AAAAOAAAADgAAAAoAAABoAAAASwAAAEsAAAJoAAAAGgAAAxoAAAAaAAADSwAAAksAAABLAAABaAAAAA4AAAAOAAAADgAAAAoAAAAKAAAAaAAAAEsAAANLAAAAaAAAABoAAAIaAAACGgAAAEsAAANLAAAASwAAA2gAAAAKAAAADgAAAAoAAAAKAAAADgAAAGgAAABoAAAAaAAAAGgAAAAaAAADGgAAABoAAAFLAAAASwAAA0sAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAASwAAAUsAAAFLAAABSwAAAksAAABLAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAJLAAAASwAAAUsAAABLAAABSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAABLAAACSwAAAEsAAABLAAADSwAAAEsAAAJoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAABoAAAAaAAACaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: JQAAACUAAABHAAADRwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAACUAAAAlAAAARwAAAUcAAAAWAAAAFgAAA2QAAAAGAAAABgAAAAoAAAAKAAAABgAAAGQAAABkAAAAZAAAAGQAAAAlAAAAZAAAAEcAAABHAAAAFgAAAhYAAAJkAAAABgAAAAoAAAAKAAAACgAAAAoAAABkAAAAZAAAAFQAAABkAAAAJQAAAGQAAABHAAAARwAAAhYAAAAWAAADZAAAAAoAAAAKAAAACgAAAAoAAAAKAAAAZAAAAEcAAABHAAACZAAAAGQAAABkAAAARwAAA0cAAAJHAAABRwAAAkcAAAAKAAAACgAAAAoAAAAKAAAACgAAAEcAAANHAAAARwAAAGQAAABHAAACRwAAAEcAAAJHAAAARwAAA0cAAAJkAAAACgAAAAoAAAAKAAAABgAAAAYAAABkAAAARwAAAkcAAABkAAAARwAAAEcAAAFHAAACRwAAAUcAAANHAAADZAAAAAYAAAAKAAAACgAAAAoAAAAKAAAAZAAAAEcAAAJHAAABZAAAABYAAAEWAAAAFgAAAUcAAAFHAAADRwAAAkcAAAAKAAAACgAAAAoAAAAKAAAACgAAAEcAAAJHAAACRwAAAGQAAAAWAAABFgAAABYAAAFHAAAARwAAAkcAAAFkAAAACgAAAAoAAAAKAAAACgAAAAYAAABkAAAARwAAAEcAAAJkAAAAFgAAAxYAAAAWAAADRwAAAkcAAABHAAABZAAAAAoAAAAKAAAACgAAAAYAAAAGAAAAZAAAAEcAAANHAAAAZAAAABYAAAIWAAACFgAAAEcAAANHAAAARwAAA2QAAAAGAAAACgAAAAYAAAAGAAAACgAAAGQAAABkAAAAZAAAAGQAAAAWAAADFgAAABYAAAFHAAAARwAAA0cAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAARwAAAUcAAAFHAAABRwAAAkcAAABHAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEcAAAJHAAAARwAAAUcAAABHAAABRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAAAAAAAAAAABHAAACRwAAAEcAAABHAAADRwAAAEcAAAJkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAABYAAAAWAAACZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,3: ind: 2,3 - tiles: SwAAAksAAANLAAADaAAAABoAAAAaAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAABoAAAAaAAACSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABLAAADSwAAAEsAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAACwAAAAsAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAACwAAAAsAAAALAAAAGgAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAALAAAACwAAABoAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAACwAAAAsAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: RwAAAkcAAANHAAADZAAAABYAAAAWAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAABYAAAAWAAACRwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABHAAADRwAAAEcAAABkAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAACgAAAAoAAAAKAAAAGQAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAABkAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 4,0: ind: 4,0 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAA== -3,2: ind: -3,2 - tiles: AAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAVwAAAGgAAABXAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAVwAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAUwAAAGQAAABTAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAUwAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAA== -1,-3: ind: -1,-3 - tiles: GgAAAxoAAAMaAAABGgAAABoAAAIaAAAAGgAAARoAAABoAAAAaAAAAFcAAABoAAAASwAAAksAAAJLAAADaAAAABoAAAEaAAAAGgAAABoAAAMaAAABGgAAAhoAAAAaAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAA2gAAABoAAAAGgAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFgAAABLAAADSwAAAEsAAANYAAAAGgAAAlsAAAJbAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAASwAAA0sAAABLAAABaAAAAFsAAABbAAAAWwAAA2gAAAA5AAAAOQAAADkAAABoAAAAaAAAAGgAAABXAAAAaAAAAEsAAAJLAAAASwAAA2gAAABbAAABWwAAAVsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABLAAACSwAAAUsAAANoAAAAWwAAAVsAAAJbAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAASwAAAUsAAANLAAADaAAAABoAAAMaAAADGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAACSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAA0sAAANoAAAAWwAAAVsAAANLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAABLAAACaAAAAFsAAANbAAADSwAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAWAAAAEsAAAJLAAAASwAAAmgAAABbAAACWwAAAEsAAAJoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAEsAAAFLAAABWwAAAFsAAAJbAAADWAAAAFcAAABoAAAAWwAAAVsAAAFbAAAAWwAAA1sAAABLAAABSwAAAEsAAABLAAAASwAAA1sAAABbAAAASwAAAmgAAABXAAAAaAAAAFsAAANbAAABWwAAAlsAAANbAAABSwAAA0sAAANLAAAASwAAAUsAAAFbAAADWwAAA0sAAABoAAAAWAAAAGgAAABbAAADWwAAA1sAAABbAAAAWwAAAksAAAFLAAABSwAAA0sAAAFoAAAAaAAAAGgAAABoAAAAaAAAAFsAAABoAAAAWwAAA1sAAAJbAAACWwAAAVsAAAFoAAAASwAAAksAAAJLAAAAaAAAAA== + tiles: FgAAAxYAAAMWAAABFgAAABYAAAIWAAAAFgAAARYAAABkAAAAZAAAAFMAAABkAAAARwAAAkcAAAJHAAADZAAAABYAAAEWAAAAFgAAABYAAAMWAAABFgAAAhYAAAAWAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAAARwAAA2QAAABkAAAAFgAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFQAAABHAAADRwAAAEcAAANUAAAAFgAAAlcAAAJXAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAARwAAA0cAAABHAAABZAAAAFcAAABXAAAAVwAAA2QAAAA1AAAANQAAADUAAABkAAAAZAAAAGQAAABTAAAAZAAAAEcAAAJHAAAARwAAA2QAAABXAAABVwAAAVcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABHAAACRwAAAUcAAANkAAAAVwAAAVcAAAJXAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAARwAAAUcAAANHAAADZAAAABYAAAMWAAADFgAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAACRwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAA0cAAANkAAAAVwAAAVcAAANHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAABHAAACZAAAAFcAAANXAAADRwAAAGQAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAVAAAAEcAAAJHAAAARwAAAmQAAABXAAACVwAAAEcAAAJkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAEcAAAFHAAABVwAAAFcAAAJXAAADVAAAAFMAAABkAAAAVwAAAVcAAAFXAAAAVwAAA1cAAABHAAABRwAAAEcAAABHAAAARwAAA1cAAABXAAAARwAAAmQAAABTAAAAZAAAAFcAAANXAAABVwAAAlcAAANXAAABRwAAA0cAAANHAAAARwAAAUcAAAFXAAADVwAAA0cAAABkAAAAVAAAAGQAAABXAAADVwAAA1cAAABXAAAAVwAAAkcAAAFHAAABRwAAA0cAAAFkAAAAZAAAAGQAAABkAAAAZAAAAFcAAABkAAAAVwAAA1cAAAJXAAACVwAAAVcAAAFkAAAARwAAAkcAAAJHAAAAZAAAAA== 0,-3: ind: 0,-3 - tiles: WAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAFsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAVsAAABbAAADWwAAAVsAAAFbAAABWwAAA1sAAAFbAAADWwAAAFsAAAJbAAAAWwAAAVsAAANoAAAAaAAAAFsAAANbAAABPwAAAD8AAAI/AAABPwAAAz8AAAE/AAADPwAAAlsAAABbAAACWwAAA1sAAAFbAAADaAAAAGgAAABbAAAAWwAAAVsAAAJbAAABWwAAAFsAAABbAAACWwAAAFsAAAJbAAAALAAAACwAAABbAAABWwAAA1gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAABWwAAACwAAAAsAAAAWwAAA1sAAABLAAADGgAAABoAAAAaAAADGgAAAxoAAABbAAADWwAAA1sAAAFoAAAAWwAAA1sAAAJbAAAAWwAAAlsAAAFbAAADSwAAAxoAAAEaAAADGgAAAxoAAAEaAAADWwAAA1sAAANbAAABaAAAAFsAAABbAAABWwAAAFsAAANbAAABWwAAAUsAAAAaAAACGgAAAxoAAAIaAAABGgAAAlsAAABbAAACWwAAAGgAAABLAAABSwAAA0sAAANoAAAAWwAAAlsAAAJLAAAAGgAAAhoAAAAaAAAAGgAAABoAAANbAAAAWwAAA1sAAABoAAAAWwAAAVsAAANbAAABaAAAAGgAAABoAAAASwAAAxoAAAMaAAACGgAAAhoAAAEaAAAAWwAAAFsAAANbAAACaAAAAFsAAAM/AAABWwAAAmgAAABLAAABSwAAA2gAAABLAAABSwAAAEsAAANLAAAAaAAAAFsAAABoAAAAaAAAAGgAAABbAAABPwAAAVsAAAJoAAAASwAAAEsAAABoAAAASwAAA0sAAAJLAAADSwAAAWgAAABbAAABWwAAAVsAAAFbAAACWwAAAD8AAANbAAAAaAAAAEsAAAFLAAAAaAAAAEsAAANLAAACSwAAAUsAAABoAAAAWwAAAT8AAAM/AAADPwAAAT8AAAA/AAAAWwAAAEsAAAJLAAABSwAAAmgAAABLAAABSwAAAUsAAAFLAAADaAAAAFsAAANbAAABWwAAAFsAAAFbAAADWwAAAFsAAAJoAAAASwAAA0sAAANoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAFsAAAFoAAAAaAAAAGgAAABoAAAASwAAAEsAAAJLAAAASwAAA0sAAAFoAAAAWwAAAlsAAAMaAAACaAAAAFsAAABbAAADSwAAARoAAAJLAAADSwAAAw== + tiles: VAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAFcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAVcAAABXAAADVwAAAVcAAAFXAAABVwAAA1cAAAFXAAADVwAAAFcAAAJXAAAAVwAAAVcAAANkAAAAZAAAAFcAAANXAAABOwAAADsAAAI7AAABOwAAAzsAAAE7AAADOwAAAlcAAABXAAACVwAAA1cAAAFXAAADZAAAAGQAAABXAAAAVwAAAVcAAAJXAAABVwAAAFcAAABXAAACVwAAAFcAAAJXAAAAKAAAACgAAABXAAABVwAAA1QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAABVwAAACgAAAAoAAAAVwAAA1cAAABHAAADFgAAABYAAAAWAAADFgAAAxYAAABXAAADVwAAA1cAAAFkAAAAVwAAA1cAAAJXAAAAVwAAAlcAAAFXAAADRwAAAxYAAAEWAAADFgAAAxYAAAEWAAADVwAAA1cAAANXAAABZAAAAFcAAABXAAABVwAAAFcAAANXAAABVwAAAUcAAAAWAAACFgAAAxYAAAIWAAABFgAAAlcAAABXAAACVwAAAGQAAABHAAABRwAAA0cAAANkAAAAVwAAAlcAAAJHAAAAFgAAAhYAAAAWAAAAFgAAABYAAANXAAAAVwAAA1cAAABkAAAAVwAAAVcAAANXAAABZAAAAGQAAABkAAAARwAAAxYAAAMWAAACFgAAAhYAAAEWAAAAVwAAAFcAAANXAAACZAAAAFcAAAM7AAABVwAAAmQAAABHAAABRwAAA2QAAABHAAABRwAAAEcAAANHAAAAZAAAAFcAAABkAAAAZAAAAGQAAABXAAABOwAAAVcAAAJkAAAARwAAAEcAAABkAAAARwAAA0cAAAJHAAADRwAAAWQAAABXAAABVwAAAVcAAAFXAAACVwAAADsAAANXAAAAZAAAAEcAAAFHAAAAZAAAAEcAAANHAAACRwAAAUcAAABkAAAAVwAAATsAAAM7AAADOwAAATsAAAA7AAAAVwAAAEcAAAJHAAABRwAAAmQAAABHAAABRwAAAUcAAAFHAAADZAAAAFcAAANXAAABVwAAAFcAAAFXAAADVwAAAFcAAAJkAAAARwAAA0cAAANkAAAAZAAAAEcAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAFcAAAFkAAAAZAAAAGQAAABkAAAARwAAAEcAAAJHAAAARwAAA0cAAAFkAAAAVwAAAlcAAAMWAAACZAAAAFcAAABXAAADRwAAARYAAAJHAAADRwAAAw== 1,-3: ind: 1,-3 - tiles: aAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABXAAAAaAAAAFcAAABXAAAAaAAAAFcAAABXAAAAVwAAAFcAAABoAAAAVwAAAFcAAABoAAAAVwAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAEsAAANbAAAAWwAAA1sAAAJbAAAAWwAAAVsAAAJbAAAAWwAAAVsAAAFbAAABWwAAAlsAAANbAAADaAAAAEsAAAFLAAADWwAAAT8AAAI/AAACPwAAAj8AAAI/AAAAPwAAAz8AAAA/AAACPwAAAz8AAAE/AAADWwAAAT4AAANLAAACSwAAA1sAAAFbAAAAWwAAAFsAAABbAAAAWwAAA1sAAABbAAAAWwAAAFsAAANbAAABWwAAAlsAAANoAAAASwAAAmgAAABbAAABaAAAAGgAAABoAAAAGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAJoAAAAaAAAAFgAAABoAAAAaAAAAGgAAAAaAAADGgAAAxoAAAEaAAADZQAAAGUAAANlAAABaAAAABoAAAEaAAACGgAAAWgAAABoAAAASwAAAEsAAABoAAAAGgAAABoAAAEaAAACGgAAAmUAAAJlAAADZQAAAGgAAAAaAAABGgAAAxoAAANoAAAAaAAAAEsAAAJLAAAAaAAAABoAAAMaAAACGgAAAhoAAANlAAADZQAAAGUAAAJoAAAAaAAAABoAAAFoAAAAaAAAAGgAAABLAAADSwAAAmgAAAAaAAAAGgAAARoAAAMaAAABWwAAAVsAAANbAAACaAAAABIAAAAaAAADEgAAAGgAAABoAAAASwAAAEsAAAFoAAAAGgAAAhoAAAMaAAAAGgAAA1sAAANbAAADWwAAAmgAAAASAAAAGgAAARIAAABoAAAAaAAAAEsAAAFLAAAAaAAAABoAAAAaAAAAGgAAAhoAAAJbAAAAWwAAAVsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAGgAAABLAAACSwAAAVsAAAFbAAACWwAAAUAAAABAAAAAQAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAA== + tiles: ZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABTAAAAZAAAAFMAAABTAAAAZAAAAFMAAABTAAAAUwAAAFMAAABkAAAAUwAAAFMAAABkAAAAUwAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAEcAAANXAAAAVwAAA1cAAAJXAAAAVwAAAVcAAAJXAAAAVwAAAVcAAAFXAAABVwAAAlcAAANXAAADZAAAAEcAAAFHAAADVwAAATsAAAI7AAACOwAAAjsAAAI7AAAAOwAAAzsAAAA7AAACOwAAAzsAAAE7AAADVwAAAToAAANHAAACRwAAA1cAAAFXAAAAVwAAAFcAAABXAAAAVwAAA1cAAABXAAAAVwAAAFcAAANXAAABVwAAAlcAAANkAAAARwAAAmQAAABXAAABZAAAAGQAAABkAAAAFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAJkAAAAZAAAAFQAAABkAAAAZAAAAGQAAAAWAAADFgAAAxYAAAEWAAADYQAAAGEAAANhAAABZAAAABYAAAEWAAACFgAAAWQAAABkAAAARwAAAEcAAABkAAAAFgAAABYAAAEWAAACFgAAAmEAAAJhAAADYQAAAGQAAAAWAAABFgAAAxYAAANkAAAAZAAAAEcAAAJHAAAAZAAAABYAAAMWAAACFgAAAhYAAANhAAADYQAAAGEAAAJkAAAAZAAAABYAAAFkAAAAZAAAAGQAAABHAAADRwAAAmQAAAAWAAAAFgAAARYAAAMWAAABVwAAAVcAAANXAAACZAAAAA4AAAAWAAADDgAAAGQAAABkAAAARwAAAEcAAAFkAAAAFgAAAhYAAAMWAAAAFgAAA1cAAANXAAADVwAAAmQAAAAOAAAAFgAAAQ4AAABkAAAAZAAAAEcAAAFHAAAAZAAAABYAAAAWAAAAFgAAAhYAAAJXAAAAVwAAAVcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAGQAAABHAAACRwAAAVcAAAFXAAACVwAAATwAAAA8AAAAPAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAA== -3,4: ind: -3,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -2,4: ind: -2,4 - tiles: AAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 4,-1: ind: 4,-1 - tiles: aAAAAGcAAABoAAAAQQAAAEEAAABBAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAEEAAABBAAAAQQAAAGgAAABoAAAAAAAAAGcAAAAAAAAAaAAAAAAAAABnAAAAAAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAaAAAAGcAAABoAAAAQQAAAEEAAABBAAAAaAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAGgAAABnAAAAaAAAAEEAAABBAAAAQQAAAGgAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABoAAAAZwAAAGgAAABBAAAAQQAAAEEAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABnAAAAaAAAAEAAAABAAAAAQAAAAGgAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABoAAAAZwAAAGgAAABAAAAAQAAAAEAAAABoAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGcAAABoAAAAQAAAAEAAAABAAAAAaAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABoAAAAZwAAAGcAAABnAAAAZwAAAGgAAABnAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAGMAAABkAAAAPQAAAD0AAAA9AAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAD0AAAA9AAAAPQAAAGQAAABkAAAAAAAAAGMAAAAAAAAAZAAAAAAAAABjAAAAAAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAZAAAAGMAAABkAAAAPQAAAD0AAAA9AAAAZAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAGQAAABjAAAAZAAAAD0AAAA9AAAAPQAAAGQAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABkAAAAYwAAAGQAAAA9AAAAPQAAAD0AAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABjAAAAZAAAADwAAAA8AAAAPAAAAGQAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABkAAAAYwAAAGQAAAA8AAAAPAAAADwAAABkAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGMAAABkAAAAPAAAADwAAAA8AAAAZAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABkAAAAYwAAAGMAAABjAAAAYwAAAGQAAABjAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAA== 4,-2: ind: 4,-2 - tiles: ZwAAAGcAAAAAAAAAaAAAAEAAAABAAAAAQAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABAAAAAQAAAAEAAAABoAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAABoAAAAaAAAAEAAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAZwAAAGcAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGgAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABnAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGcAAABnAAAAZwAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABoAAAAZwAAAGgAAABBAAAAQQAAAEEAAABoAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGcAAABoAAAAQQAAAEEAAABBAAAAaAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABnAAAAaAAAAEEAAABBAAAAQQAAAGgAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAaAAAAGcAAABoAAAAQQAAAEEAAABBAAAAaAAAAGgAAAAAAAAAZwAAAAAAAABoAAAAAAAAAGcAAAAAAAAAaAAAAA== + tiles: YwAAAGMAAAAAAAAAZAAAADwAAAA8AAAAPAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAAA8AAAAPAAAADwAAABkAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAABkAAAAZAAAADwAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAYwAAAGMAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGQAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABjAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGMAAABjAAAAYwAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABkAAAAYwAAAGQAAAA9AAAAPQAAAD0AAABkAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGMAAABkAAAAPQAAAD0AAAA9AAAAZAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABjAAAAZAAAAD0AAAA9AAAAPQAAAGQAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAZAAAAGMAAABkAAAAPQAAAD0AAAA9AAAAZAAAAGQAAAAAAAAAYwAAAAAAAABkAAAAAAAAAGMAAAAAAAAAZAAAAA== 3,-3: ind: 3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAQAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAPAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAA== 5,0: ind: 5,0 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACGgAAAhoAAAMaAAAAGgAAAwAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAGgAAARoAAAAaAAADGgAAAhoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAABoAAAAZwAAABoAAAFnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAGgAAAWcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAABoAAAJnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGcAAABnAAAAaAAAAGcAAAAaAAACGgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAABoAAANnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAaAAACAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAGgAAA2cAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAABoAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAaAAACAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABnAAAAGgAAAwAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAZwAAABoAAAMAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACFgAAAhYAAAMWAAAAFgAAAwAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAFgAAARYAAAAWAAADFgAAAhYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAABkAAAAYwAAABYAAAFjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAFgAAAWMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAABYAAAJjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGMAAABjAAAAZAAAAGMAAAAWAAACFgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAABYAAANjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAWAAACAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAFgAAA2MAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAABYAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAWAAACAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABjAAAAFgAAAwAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAYwAAABYAAAMAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== 4,-3: ind: 4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAEAAAABAAAAAQAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAADwAAAA8AAAAPAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,-3: ind: 2,-3 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABoAAAAWwAAAlsAAABbAAAAWwAAAlsAAAFbAAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAADPgAAAD4AAAA+AAADPgAAAD4AAAA+AAAAPgAAAmgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAmgAAABbAAADWwAAAFsAAAFbAAABWwAAA1sAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAPgAAAT4AAAA+AAAAUwAAAVMAAAFTAAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAD4AAAI+AAABPgAAAlMAAABTAAAAUwAAA2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAGgAAAA+AAABPgAAAj4AAAFTAAACUwAAAVMAAANoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAACkAAAApAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAZQAAAGgAAAApAAAAaAAAAGgAAABoAAAAKQAAAGgAAABnAAAAZwAAAGgAAABAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAACkAAABoAAAAZwAAAGgAAABoAAAAQAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAEAAAABoAAAAaAAAAGgAAABoAAAAZQAAAGgAAAApAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAEAAAABAAAAAQAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAUwAAAFMAAABTAAAAUwAAAFMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEcAAABkAAAAVwAAAlcAAABXAAAAVwAAAlcAAAFXAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHAAADOgAAADoAAAA6AAADOgAAADoAAAA6AAAAOgAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAmQAAABXAAADVwAAAFcAAAFXAAABVwAAA1cAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAOgAAAToAAAA6AAAATwAAAU8AAAFPAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAADoAAAI6AAABOgAAAk8AAABPAAAATwAAA2QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAGQAAAA6AAABOgAAAjoAAAFPAAACTwAAAU8AAANkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAACUAAAAlAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAYQAAAGQAAAAlAAAAZAAAAGQAAABkAAAAJQAAAGQAAABjAAAAYwAAAGQAAAA8AAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAACUAAABkAAAAYwAAAGQAAABkAAAAPAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAADwAAABkAAAAZAAAAGQAAABkAAAAYQAAAGQAAAAlAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAADwAAAA8AAAAPAAAAA== 3,2: ind: 3,2 - tiles: aAAAAGgAAABoAAAAaAAAAFgAAABLAAADSwAAAEsAAAJYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAASwAAAEsAAANLAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAGgAAABQAAAAUAAAAGgAAABoAAAAaAAAAGgAAABLAAACaAAAAGgAAABLAAAASwAAA2gAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAGgAAABoAAAASwAAAUsAAAFLAAACSwAAAEsAAABoAAAAaAAAAGgAAABXAAAAaAAAAFAAAABoAAAAaAAAAGgAAABQAAAAaAAAAEsAAANLAAAASwAAAEsAAAJLAAABaAAAAGcAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABQAAAAUAAAAGgAAABoAAAAaAAAABoAAANoAAAAaAAAAGgAAABnAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAxoAAAAaAAADGgAAABoAAANoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAaAAAABoAAAAaAAADGgAAAxoAAAMaAAACaAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAGgAAAAaAAACGgAAAxoAAAEaAAABGgAAA2gAAABnAAAAAAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAGgAAAhoAAAEaAAACGgAAARoAAAJoAAAAZwAAAAAAAAAAAAAAaAAAAGcAAABnAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGgAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAFQAAABHAAADRwAAAEcAAAJUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAARwAAAEcAAANHAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAZAAAAGQAAABMAAAATAAAAGQAAABkAAAAZAAAAGQAAABHAAACZAAAAGQAAABHAAAARwAAA2QAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAGQAAABkAAAARwAAAUcAAAFHAAACRwAAAEcAAABkAAAAZAAAAGQAAABTAAAAZAAAAEwAAABkAAAAZAAAAGQAAABMAAAAZAAAAEcAAANHAAAARwAAAEcAAAJHAAABZAAAAGMAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABMAAAATAAAAGQAAABkAAAAZAAAABYAAANkAAAAZAAAAGQAAABjAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAxYAAAAWAAADFgAAABYAAANkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAZAAAABYAAAAWAAADFgAAAxYAAAMWAAACZAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAGQAAAAWAAACFgAAAxYAAAEWAAABFgAAA2QAAABjAAAAAAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAFgAAAhYAAAEWAAACFgAAARYAAAJkAAAAYwAAAAAAAAAAAAAAZAAAAGMAAABjAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGQAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAA== 4,2: ind: 4,2 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAFcAAABoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAZwAAAAAAAABnAAAAAAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAFMAAABkAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAYwAAAAAAAABjAAAAAAAAAA== 4,1: ind: 4,1 - tiles: aAAAAGcAAABnAAAAZwAAAGgAAABnAAAAZwAAAGcAAABoAAAAaAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABnAAAAAAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABoAAAAZwAAAGcAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAAAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGcAAABnAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABnAAAAAAAAAGgAAABoAAAAaAAAAAAAAABoAAAAZwAAAGcAAABnAAAAaAAAAGcAAABnAAAAZwAAAGgAAABoAAAAZwAAAAAAAABoAAAAaAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAGMAAABjAAAAYwAAAGQAAABjAAAAYwAAAGMAAABkAAAAZAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABjAAAAAAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABkAAAAYwAAAGMAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAAAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGMAAABjAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABjAAAAAAAAAGQAAABkAAAAZAAAAAAAAABkAAAAYwAAAGMAAABjAAAAZAAAAGMAAABjAAAAYwAAAGQAAABkAAAAYwAAAAAAAABkAAAAZAAAAGQAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,3: ind: 3,3 - tiles: ZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -2,-3: ind: -2,-3 - tiles: GgAAABoAAAEaAAADGgAAAhoAAAAaAAADGgAAABoAAAEaAAABaAAAAFsAAANbAAAAWwAAAGgAAAAaAAADGgAAAxoAAAAaAAAAGgAAAxoAAAEaAAADGgAAABoAAAMaAAADGgAAAhoAAABbAAADWwAAAVsAAAJoAAAAGgAAABoAAAMaAAABGgAAABoAAAEaAAAAGgAAAxoAAAIaAAADGgAAABoAAAAaAAABWwAAAVsAAAJbAAAAaAAAAGgAAABoAAAAaAAAABoAAABoAAAAGgAAAxoAAABoAAAAGgAAAWgAAABoAAAAaAAAAFsAAAFbAAACWwAAAmgAAAAaAAADGgAAA1sAAANbAAADaAAAABoAAAAaAAAAaAAAAFsAAANbAAAAaAAAAFsAAABbAAACWwAAAlsAAAJoAAAAWwAAAlsAAAJbAAACWwAAAmgAAAAaAAAAGgAAAGgAAABbAAADWwAAAmgAAABbAAACWwAAA1sAAAJbAAADWwAAA1sAAANbAAADaAAAAFsAAABoAAAAGgAAABoAAABoAAAAWwAAAGgAAABoAAAAWwAAAFsAAABbAAABWwAAAlsAAAJbAAACWwAAAFsAAANbAAABWwAAAFsAAANbAAAAWwAAA1sAAANbAAABWwAAAVsAAANbAAADWwAAAVsAAABoAAAAGgAAABoAAAFbAAACWwAAAlsAAANbAAADWwAAAVsAAAFbAAADWwAAAGgAAABbAAAAWwAAAVsAAABbAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAWgAAABbAAAAaAAAAGgAAABoAAAAaAAAAFsAAANbAAADWwAAA2gAAABbAAABWwAAAlsAAABbAAADWwAAAVsAAAJbAAABWwAAAVsAAAFbAAABWwAAAmgAAAAaAAAAGgAAABoAAABoAAAAWwAAA1sAAANbAAAAWwAAAVsAAANbAAABWwAAA1sAAANbAAABWwAAA1sAAANoAAAAWwAAAlsAAANbAAADaAAAAFsAAAJbAAADWwAAA1sAAAJbAAAAWwAAA1sAAANbAAABWwAAAFsAAANbAAADaAAAAFsAAAFbAAAAWwAAA2gAAABbAAAAWwAAAVsAAAFbAAABWwAAAVsAAAFbAAADWwAAA1sAAAJbAAACWwAAAlsAAABbAAACWwAAA1sAAAFbAAABWwAAAVsAAABbAAADWwAAAFsAAAFbAAACLAAAAFsAAANbAAADWwAAAFsAAAFoAAAAWwAAA1sAAABbAAAAaAAAAFsAAABbAAABWwAAAVsAAABbAAABWwAAAVsAAAFbAAABWwAAAlsAAANbAAADWwAAA1sAAAJbAAACWwAAA2gAAABoAAAAaAAAAA== + tiles: FgAAABYAAAEWAAADFgAAAhYAAAAWAAADFgAAABYAAAEWAAABZAAAAFcAAANXAAAAVwAAAGQAAAAWAAADFgAAAxYAAAAWAAAAFgAAAxYAAAEWAAADFgAAABYAAAMWAAADFgAAAhYAAABXAAADVwAAAVcAAAJkAAAAFgAAABYAAAMWAAABFgAAABYAAAEWAAAAFgAAAxYAAAIWAAADFgAAABYAAAAWAAABVwAAAVcAAAJXAAAAZAAAAGQAAABkAAAAZAAAABYAAABkAAAAFgAAAxYAAABkAAAAFgAAAWQAAABkAAAAZAAAAFcAAAFXAAACVwAAAmQAAAAWAAADFgAAA1cAAANXAAADZAAAABYAAAAWAAAAZAAAAFcAAANXAAAAZAAAAFcAAABXAAACVwAAAlcAAAJkAAAAVwAAAlcAAAJXAAACVwAAAmQAAAAWAAAAFgAAAGQAAABXAAADVwAAAmQAAABXAAACVwAAA1cAAAJXAAADVwAAA1cAAANXAAADZAAAAFcAAABkAAAAFgAAABYAAABkAAAAVwAAAGQAAABkAAAAVwAAAFcAAABXAAABVwAAAlcAAAJXAAACVwAAAFcAAANXAAABVwAAAFcAAANXAAAAVwAAA1cAAANXAAABVwAAAVcAAANXAAADVwAAAVcAAABkAAAAFgAAABYAAAFXAAACVwAAAlcAAANXAAADVwAAAVcAAAFXAAADVwAAAGQAAABXAAAAVwAAAVcAAABXAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAWQAAABXAAAAZAAAAGQAAABkAAAAZAAAAFcAAANXAAADVwAAA2QAAABXAAABVwAAAlcAAABXAAADVwAAAVcAAAJXAAABVwAAAVcAAAFXAAABVwAAAmQAAAAWAAAAFgAAABYAAABkAAAAVwAAA1cAAANXAAAAVwAAAVcAAANXAAABVwAAA1cAAANXAAABVwAAA1cAAANkAAAAVwAAAlcAAANXAAADZAAAAFcAAAJXAAADVwAAA1cAAAJXAAAAVwAAA1cAAANXAAABVwAAAFcAAANXAAADZAAAAFcAAAFXAAAAVwAAA2QAAABXAAAAVwAAAVcAAAFXAAABVwAAAVcAAAFXAAADVwAAA1cAAAJXAAACVwAAAlcAAABXAAACVwAAA1cAAAFXAAABVwAAAVcAAABXAAADVwAAAFcAAAFXAAACKAAAAFcAAANXAAADVwAAAFcAAAFkAAAAVwAAA1cAAABXAAAAZAAAAFcAAABXAAABVwAAAVcAAABXAAABVwAAAVcAAAFXAAABVwAAAlcAAANXAAADVwAAA1cAAAJXAAACVwAAA2QAAABkAAAAZAAAAA== -3,-3: ind: -3,-3 - tiles: aAAAAGgAAABoAAAAaAAAAFsAAAJbAAABWwAAAWgAAABLAAACSwAAAGgAAAAaAAACGgAAABoAAAAaAAADGgAAAlsAAANbAAADWwAAAVsAAAFbAAACWwAAA1sAAAJbAAACSwAAA0sAAAAaAAABGgAAAxoAAAAaAAABGgAAARoAAAJoAAAAaAAAAGgAAABoAAAAWwAAAVsAAAFbAAACaAAAAEsAAAJLAAACaAAAABoAAAMaAAACGgAAABoAAAEaAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABKAAAASgAAA0oAAAVoAAAAaAAAAGgAAABXAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAVwAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAFcAAABoAAAASwAAA0sAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAACSwAAAWgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAaAAAAEsAAANLAAACaAAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFoAAAAaAAAAEsAAANLAAADaAAAAGgAAABoAAAASwAAAksAAABLAAACSwAAAEsAAAJoAAAAaAAAAGgAAABLAAADSwAAAUsAAAFoAAAASwAAA2gAAABoAAAAWAAAAEsAAANbAAABWwAAAVsAAAJbAAADaAAAAEsAAAJoAAAAaAAAAEsAAAJLAAACaAAAAGgAAABoAAAAaAAAAGgAAABLAAADWwAAAFsAAAFbAAAAWwAAA1sAAABLAAABSwAAAksAAABoAAAASwAAAmgAAABLAAABaAAAAGgAAABoAAAASwAAAlsAAANbAAADWwAAAVsAAANoAAAAaAAAAGgAAABLAAABaAAAAGgAAABoAAAASwAAAmgAAABoAAAAaAAAAEsAAAFbAAACWwAAAVsAAANbAAADWwAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAFcAAAJXAAABVwAAAWQAAABHAAACRwAAAGQAAAAWAAACFgAAABYAAAAWAAADFgAAAlcAAANXAAADVwAAAVcAAAFXAAACVwAAA1cAAAJXAAACRwAAA0cAAAAWAAABFgAAAxYAAAAWAAABFgAAARYAAAJkAAAAZAAAAGQAAABkAAAAVwAAAVcAAAFXAAACZAAAAEcAAAJHAAACZAAAABYAAAMWAAACFgAAABYAAAEWAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABGAAAARgAAA0YAAAVkAAAAZAAAAGQAAABTAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAUwAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAFMAAABTAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAFMAAABkAAAARwAAA0cAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAACRwAAAWQAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABTAAAAZAAAAEcAAANHAAACZAAAAEcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFkAAAAZAAAAEcAAANHAAADZAAAAGQAAABkAAAARwAAAkcAAABHAAACRwAAAEcAAAJkAAAAZAAAAGQAAABHAAADRwAAAUcAAAFkAAAARwAAA2QAAABkAAAAVAAAAEcAAANXAAABVwAAAVcAAAJXAAADZAAAAEcAAAJkAAAAZAAAAEcAAAJHAAACZAAAAGQAAABkAAAAZAAAAGQAAABHAAADVwAAAFcAAAFXAAAAVwAAA1cAAABHAAABRwAAAkcAAABkAAAARwAAAmQAAABHAAABZAAAAGQAAABkAAAARwAAAlcAAANXAAADVwAAAVcAAANkAAAAZAAAAGQAAABHAAABZAAAAGQAAABkAAAARwAAAmQAAABkAAAAZAAAAEcAAAFXAAACVwAAAVcAAANXAAADVwAAAA== 0,-4: ind: 0,-4 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAGcAAABXAAAAVwAAAGgAAABXAAAAVwAAAGgAAABoAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAFcAAABoAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAuAAAALgAAAC4AAABoAAAAUAAAAGgAAABLAAADSwAAAEsAAAFLAAADSwAAAWcAAABoAAAAQAAAAEAAAABAAAAALgAAAC4AAAAuAAAALgAAAC4AAABoAAAAaAAAAEsAAAJLAAAASwAAAksAAAFnAAAAaAAAAEAAAABAAAAAQAAAAGgAAABoAAAALgAAAC4AAAAuAAAAaAAAAEsAAAFLAAACSwAAAEsAAAJLAAAAaAAAAGgAAABAAAAAQAAAAEAAAABoAAAAaAAAAGgAAAAuAAAALgAAAGgAAABLAAABSwAAA0sAAANLAAABSwAAAEsAAAJoAAAAaAAAABoAAABoAAAASwAAA1AAAAAaAAACGgAAAS4AAABoAAAASwAAA0sAAAFLAAADSwAAAEsAAANLAAAAaAAAAEsAAANLAAACSwAAAGgAAABQAAAAaAAAAGgAAAAaAAABaAAAAEsAAAJbAAABWwAAAVsAAABbAAADWwAAAksAAABLAAABSwAAAksAAABoAAAAaAAAABoAAANoAAAAaAAAAGgAAABbAAACWwAAAFsAAAJbAAAAWwAAAVsAAANLAAABSwAAA0sAAAFLAAAAaAAAAGgAAAAaAAABaAAAAFAAAABoAAAAWwAAAVsAAABbAAABWwAAAlsAAABbAAABaAAAAEsAAAJLAAADSwAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAGMAAABTAAAAUwAAAGQAAABTAAAAUwAAAGQAAABkAAAAUwAAAGQAAABTAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAZAAAAFMAAABkAAAAUwAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAqAAAAKgAAACoAAABkAAAATAAAAGQAAABHAAADRwAAAEcAAAFHAAADRwAAAWMAAABkAAAAPAAAADwAAAA8AAAAKgAAACoAAAAqAAAAKgAAACoAAABkAAAAZAAAAEcAAAJHAAAARwAAAkcAAAFjAAAAZAAAADwAAAA8AAAAPAAAAGQAAABkAAAAKgAAACoAAAAqAAAAZAAAAEcAAAFHAAACRwAAAEcAAAJHAAAAZAAAAGQAAAA8AAAAPAAAADwAAABkAAAAZAAAAGQAAAAqAAAAKgAAAGQAAABHAAABRwAAA0cAAANHAAABRwAAAEcAAAJkAAAAZAAAABYAAABkAAAARwAAA0wAAAAWAAACFgAAASoAAABkAAAARwAAA0cAAAFHAAADRwAAAEcAAANHAAAAZAAAAEcAAANHAAACRwAAAGQAAABMAAAAZAAAAGQAAAAWAAABZAAAAEcAAAJXAAABVwAAAVcAAABXAAADVwAAAkcAAABHAAABRwAAAkcAAABkAAAAZAAAABYAAANkAAAAZAAAAGQAAABXAAACVwAAAFcAAAJXAAAAVwAAAVcAAANHAAABRwAAA0cAAAFHAAAAZAAAAGQAAAAWAAABZAAAAEwAAABkAAAAVwAAAVcAAABXAAABVwAAAlcAAABXAAABZAAAAEcAAAJHAAADRwAAAA== -1,-4: ind: -1,-4 - tiles: aAAAAGgAAABoAAAAaAAAAEsAAABLAAABSwAAAEsAAANLAAABSwAAAksAAAFLAAACSwAAAUsAAAJLAAAAaAAAAGgAAABoAAAAaAAAAFgAAABLAAABSwAAAUsAAABLAAADSwAAAEsAAABLAAADSwAAAEsAAABLAAACSwAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAADSwAAAEsAAAJLAAABSwAAA0sAAAJLAAADSwAAAUsAAABoAAAASwAAAGgAAABoAAAAaAAAABoAAAMaAAAAGgAAAWgAAAAaAAAAGgAAAxoAAAJoAAAASwAAAUsAAANLAAAAaAAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAADSwAAA2gAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABLAAADSwAAAUsAAABoAAAASwAAAGgAAABXAAAAVwAAAFcAAABXAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAFLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAADSwAAAGgAAABbAAABWwAAAGgAAAAXAAACFwAABBcAAANoAAAAVwAAAGgAAABoAAAAaAAAABoAAANLAAAASwAAA0sAAAJoAAAAWwAAAFsAAABoAAAAFwAABBcAAAQXAAAGaAAAAFcAAABoAAAAaAAAAGgAAAAaAAAASwAAAEsAAAJLAAABaAAAAFsAAABbAAABaAAAABcAAAYXAAAGFwAABWgAAABXAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAADSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABLAAABSwAAAksAAAJoAAAAGgAAARoAAAIaAAACGgAAAhoAAAIaAAAAGgAAAhoAAABoAAAAaAAAAFcAAABoAAAASwAAA0sAAAJLAAAASwAAAxoAAAIaAAADGgAAAhoAAAEaAAABGgAAARoAAAIaAAACWAAAAGgAAABXAAAAaAAAAEsAAANLAAAASwAAAEsAAAAaAAAAGgAAAxoAAAEaAAACGgAAABoAAAIaAAABGgAAAGgAAABoAAAAVwAAAGgAAABLAAAASwAAAEsAAAJoAAAAGgAAAhoAAAAaAAADGgAAAxoAAAAaAAABGgAAABoAAANoAAAAaAAAAGgAAABoAAAASwAAAksAAABLAAACaAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAEcAAABHAAABRwAAAEcAAANHAAABRwAAAkcAAAFHAAACRwAAAUcAAAJHAAAAZAAAAGQAAABkAAAAZAAAAFQAAABHAAABRwAAAUcAAABHAAADRwAAAEcAAABHAAADRwAAAEcAAABHAAACRwAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAABHAAADRwAAAEcAAAJHAAABRwAAA0cAAAJHAAADRwAAAUcAAABkAAAARwAAAGQAAABkAAAAZAAAABYAAAMWAAAAFgAAAWQAAAAWAAAAFgAAAxYAAAJkAAAARwAAAUcAAANHAAAAZAAAAEcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAADRwAAA2QAAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABHAAADRwAAAUcAAABkAAAARwAAAGQAAABTAAAAUwAAAFMAAABTAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAAFHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAADRwAAAGQAAABXAAABVwAAAGQAAAATAAACEwAABBMAAANkAAAAUwAAAGQAAABkAAAAZAAAABYAAANHAAAARwAAA0cAAAJkAAAAVwAAAFcAAABkAAAAEwAABBMAAAQTAAAGZAAAAFMAAABkAAAAZAAAAGQAAAAWAAAARwAAAEcAAAJHAAABZAAAAFcAAABXAAABZAAAABMAAAYTAAAGEwAABWQAAABTAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAADRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABHAAABRwAAAkcAAAJkAAAAFgAAARYAAAIWAAACFgAAAhYAAAIWAAAAFgAAAhYAAABkAAAAZAAAAFMAAABkAAAARwAAA0cAAAJHAAAARwAAAxYAAAIWAAADFgAAAhYAAAEWAAABFgAAARYAAAIWAAACVAAAAGQAAABTAAAAZAAAAEcAAANHAAAARwAAAEcAAAAWAAAAFgAAAxYAAAEWAAACFgAAABYAAAIWAAABFgAAAGQAAABkAAAAUwAAAGQAAABHAAAARwAAAEcAAAJkAAAAFgAAAhYAAAAWAAADFgAAAxYAAAAWAAABFgAAABYAAANkAAAAZAAAAGQAAABkAAAARwAAAkcAAABHAAACZAAAAA== -2,-4: ind: -2,-4 - tiles: aAAAABoAAAAaAAABaAAAADcAAAA3AAAANwAAADcAAAAaAAACGgAAA2gAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABLAAACSwAAAVcAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAFcAAABoAAAASwAAAEsAAANoAAAAaAAAAGgAAABoAAAAGgAAAEsAAAAaAAAASwAAAhoAAAJoAAAAaAAAAFgAAABoAAAAaAAAAEsAAAFLAAADaAAAAFAAAABoAAAAWAAAAEsAAAIaAAAASwAAAhoAAAFLAAADaAAAAFsAAABbAAADWwAAAmgAAABLAAAASwAAA2gAAABoAAAAaAAAAGgAAAAaAAADSwAAARoAAANLAAADGgAAAUsAAAJbAAAAWwAAA1sAAANoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABoAAAASwAAARoAAANLAAACGgAAAEsAAAJoAAAAWwAAAlsAAAFbAAACWwAAAVsAAANbAAABUAAAAFAAAABoAAAAaAAAABoAAANLAAACGgAAAksAAAMaAAACaAAAAFsAAAFbAAADWwAAAFsAAANbAAACWwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAACWwAAAFsAAANbAAADWwAAAVsAAAEaAAABGgAAAmgAAAAaAAADGgAAA1sAAAJbAAACWwAAA1sAAABoAAAAWwAAA1sAAAJbAAAAaAAAAGgAAABoAAAAGgAAABoAAANoAAAAGgAAAxoAAANbAAAAWwAAAVsAAAJbAAABaAAAABoAAAAaAAAAGgAAAWgAAAAaAAABGgAAAxoAAAEaAAAAaAAAABoAAAMaAAAAWwAAA1sAAAJbAAAAWwAAA2gAAABbAAADWwAAAFsAAAFoAAAAGgAAAhoAAAAaAAADaAAAAGgAAABoAAAAGgAAAhoAAAMaAAADGgAAARoAAANoAAAAWwAAAlsAAAFbAAAAaAAAABoAAAAaAAADGgAAAmgAAAAaAAAAaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAFsAAAFbAAACWwAAAxoAAAEaAAACGgAAAQ== + tiles: ZAAAABYAAAAWAAABZAAAADMAAAAzAAAAMwAAADMAAAAWAAACFgAAA2QAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABHAAACRwAAAVMAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAFMAAABkAAAARwAAAEcAAANkAAAAZAAAAGQAAABkAAAAFgAAAEcAAAAWAAAARwAAAhYAAAJkAAAAZAAAAFQAAABkAAAAZAAAAEcAAAFHAAADZAAAAEwAAABkAAAAVAAAAEcAAAIWAAAARwAAAhYAAAFHAAADZAAAAFcAAABXAAADVwAAAmQAAABHAAAARwAAA2QAAABkAAAAZAAAAGQAAAAWAAADRwAAARYAAANHAAADFgAAAUcAAAJXAAAAVwAAA1cAAANkAAAAZAAAAEcAAABkAAAAZAAAAGQAAABkAAAARwAAARYAAANHAAACFgAAAEcAAAJkAAAAVwAAAlcAAAFXAAACVwAAAVcAAANXAAABTAAAAEwAAABkAAAAZAAAABYAAANHAAACFgAAAkcAAAMWAAACZAAAAFcAAAFXAAADVwAAAFcAAANXAAACVwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAACVwAAAFcAAANXAAADVwAAAVcAAAEWAAABFgAAAmQAAAAWAAADFgAAA1cAAAJXAAACVwAAA1cAAABkAAAAVwAAA1cAAAJXAAAAZAAAAGQAAABkAAAAFgAAABYAAANkAAAAFgAAAxYAAANXAAAAVwAAAVcAAAJXAAABZAAAABYAAAAWAAAAFgAAAWQAAAAWAAABFgAAAxYAAAEWAAAAZAAAABYAAAMWAAAAVwAAA1cAAAJXAAAAVwAAA2QAAABXAAADVwAAAFcAAAFkAAAAFgAAAhYAAAAWAAADZAAAAGQAAABkAAAAFgAAAhYAAAMWAAADFgAAARYAAANkAAAAVwAAAlcAAAFXAAAAZAAAABYAAAAWAAADFgAAAmQAAAAWAAAAZAAAABYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAFcAAAFXAAACVwAAAxYAAAEWAAACFgAAAQ== -3,-4: ind: -3,-4 - tiles: ZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAFcAAABoAAAAUAAAAFAAAABQAAAAUAAAAC4AAAAuAAAALgAAAGgAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABQAAAAaAAAAGgAAAAuAAAALgAAAC4AAABoAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAALgAAAC4AAAAuAAAAaAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFAAAABQAAAAUAAAAC4AAAAuAAAALgAAAGgAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAuAAAALgAAAC4AAABoAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAACWwAAAFsAAAJbAAABLgAAAC4AAAAuAAAAaAAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAFsAAAFbAAACWwAAA2gAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAAJbAAADWwAAAVsAAAEAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAAAaAAAAGgAAAxoAAAMaAAACAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: YwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAFMAAABkAAAATAAAAEwAAABMAAAATAAAACoAAAAqAAAAKgAAAGQAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAEwAAABMAAAAZAAAAGQAAAAqAAAAKgAAACoAAABkAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAKgAAACoAAAAqAAAAZAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAEwAAABMAAAATAAAACoAAAAqAAAAKgAAAGQAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAqAAAAKgAAACoAAABkAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAACVwAAAFcAAAJXAAABKgAAACoAAAAqAAAAZAAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAFcAAAFXAAACVwAAA2QAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAAJXAAADVwAAAVcAAAEAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAAAWAAAAFgAAAxYAAAMWAAACAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== -4,-3: ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAWwAAA1sAAANbAAADWwAAA1sAAAFbAAABaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAFsAAABbAAABWwAAAVsAAANbAAAAWwAAAVsAAANnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABbAAACWwAAA1sAAABbAAADWwAAA1sAAAFoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAUAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAFcAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAZQAAA2UAAANlAAACaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAZQAAA2UAAANlAAACaAAAAGUAAABlAAADZQAAAmgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZQAAAGUAAABoAAAAaAAAAGUAAAFlAAABZQAAAmUAAAFoAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAVwAAA1cAAANXAAADVwAAA1cAAAFXAAABZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAFcAAABXAAABVwAAAVcAAANXAAAAVwAAAVcAAANjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABXAAACVwAAA1cAAABXAAADVwAAA1cAAAFkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAATAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAFMAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAYQAAA2EAAANhAAACZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAYQAAA2EAAANhAAACZAAAAGEAAABhAAADYQAAAmQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYQAAAGEAAABkAAAAZAAAAGEAAAFhAAABYQAAAmEAAAFkAAAAZAAAAA== -4,-4: ind: -4,-4 - tiles: ZwAAAAAAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAZwAAAGcAAABnAAAAaAAAAGcAAABnAAAAZwAAAGgAAABnAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAFsAAAFbAAADWwAAAmgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABbAAACWwAAAmgAAABbAAACWwAAAlsAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAWwAAAVsAAANbAAADWwAAAFsAAAJbAAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAFsAAABbAAABWwAAAlsAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABbAAADWwAAAlsAAAFbAAACWwAAAlsAAAJoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAWwAAAlsAAABoAAAAWwAAAVsAAAFbAAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAABaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABbAAABWwAAAlsAAAFbAAADWwAAAlsAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAWwAAAFsAAAJbAAABWwAAA1sAAANbAAABaAAAAA== + tiles: YwAAAAAAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAYwAAAGMAAABjAAAAZAAAAGMAAABjAAAAYwAAAGQAAABjAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAFcAAAFXAAADVwAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABXAAACVwAAAmQAAABXAAACVwAAAlcAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAVwAAAVcAAANXAAADVwAAAFcAAAJXAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAFcAAABXAAABVwAAAlcAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABXAAADVwAAAlcAAAFXAAACVwAAAlcAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAVwAAAlcAAABkAAAAVwAAAVcAAAFXAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAABZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABXAAABVwAAAlcAAAFXAAADVwAAAlcAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAVwAAAFcAAAJXAAABVwAAA1cAAANXAAABZAAAAA== -5,-3: ind: -5,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAFAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABQAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAEwAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABMAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,-5: ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAZwAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAAAAAAAAZwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZwAAAGgAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAYwAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAAAAAAAAYwAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYwAAAGQAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== -2,-5: ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAEaAAAAGgAAAhoAAAEaAAACGgAAAxoAAABoAAAAGgAAAhoAAAMaAAADGgAAARoAAAAaAAABGgAAA2gAAABoAAAAGgAAARoAAAMaAAADGgAAAWgAAABoAAAAaAAAAGgAAAAaAAACGgAAAhoAAAEaAAACGgAAABoAAAJoAAAAaAAAABoAAAMaAAACGgAAAhoAAAEaAAACGgAAAxoAAANoAAAAGgAAAhoAAAEaAAADGgAAAxoAAAEaAAADaAAAAGgAAAAaAAACGgAAABoAAAEaAAADGgAAAhoAAAMaAAAAGgAAARoAAAIaAAACGgAAARoAAAAaAAACGgAAA2gAAABoAAAAaAAAABoAAAMaAAACGgAAAGgAAAAaAAAAGgAAA2gAAAAaAAABGgAAABoAAAIaAAADGgAAAxoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAGgAAABoAAAAaAAAABoAAAMaAAAAGgAAAxoAAAIaAAADaAAAABoAAAIaAAAAaAAAADcAAAA3AAAANwAAADcAAAAaAAACGgAAAWgAAAAaAAABGgAAAhoAAAAaAAABGgAAAGgAAAAaAAADGgAAAhoAAAI3AAAANwAAADcAAAA3AAAAaAAAAGgAAABoAAAAGgAAAxoAAAIaAAABGgAAAhoAAANoAAAAGgAAAhoAAAJoAAAANwAAADcAAAA3AAAANwAAAGgAAAAaAAAAGgAAABoAAAAaAAADGgAAAhoAAAAaAAACaAAAABoAAAMaAAAAaAAAADcAAAA3AAAANwAAADcAAABoAAAAaAAAAGgAAAAaAAABGgAAABoAAAIaAAABGgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAABYAAAEWAAAAFgAAAhYAAAEWAAACFgAAAxYAAABkAAAAFgAAAhYAAAMWAAADFgAAARYAAAAWAAABFgAAA2QAAABkAAAAFgAAARYAAAMWAAADFgAAAWQAAABkAAAAZAAAAGQAAAAWAAACFgAAAhYAAAEWAAACFgAAABYAAAJkAAAAZAAAABYAAAMWAAACFgAAAhYAAAEWAAACFgAAAxYAAANkAAAAFgAAAhYAAAEWAAADFgAAAxYAAAEWAAADZAAAAGQAAAAWAAACFgAAABYAAAEWAAADFgAAAhYAAAMWAAAAFgAAARYAAAIWAAACFgAAARYAAAAWAAACFgAAA2QAAABkAAAAZAAAABYAAAMWAAACFgAAAGQAAAAWAAAAFgAAA2QAAAAWAAABFgAAABYAAAIWAAADFgAAAxYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAGQAAABkAAAAZAAAABYAAAMWAAAAFgAAAxYAAAIWAAADZAAAABYAAAIWAAAAZAAAADMAAAAzAAAAMwAAADMAAAAWAAACFgAAAWQAAAAWAAABFgAAAhYAAAAWAAABFgAAAGQAAAAWAAADFgAAAhYAAAIzAAAAMwAAADMAAAAzAAAAZAAAAGQAAABkAAAAFgAAAxYAAAIWAAABFgAAAhYAAANkAAAAFgAAAhYAAAJkAAAAMwAAADMAAAAzAAAAMwAAAGQAAAAWAAAAFgAAABYAAAAWAAADFgAAAhYAAAAWAAACZAAAABYAAAMWAAAAZAAAADMAAAAzAAAAMwAAADMAAABkAAAAZAAAAGQAAAAWAAABFgAAABYAAAIWAAABFgAAAA== -4,-5: ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABoAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAZwAAAAAAAABnAAAAaAAAAGcAAAAAAAAAZwAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZwAAAGgAAABnAAAAaAAAAGcAAABoAAAAZwAAAGgAAABnAAAAaAAAAGcAAABnAAAAZwAAAAAAAABnAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAABnAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABkAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAYwAAAAAAAABjAAAAZAAAAGMAAAAAAAAAYwAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYwAAAGQAAABjAAAAZAAAAGMAAABkAAAAYwAAAGQAAABjAAAAZAAAAGMAAABjAAAAYwAAAAAAAABjAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAABjAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAA== 4,3: ind: 4,3 - tiles: ZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABoAAAAaAAAAGcAAABoAAAAaAAAAGcAAABoAAAAaAAAAGcAAABoAAAAaAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABnAAAAaAAAAGgAAABnAAAAaAAAAGgAAABnAAAAaAAAAGgAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAGcAAABoAAAAaAAAAGcAAABoAAAAaAAAAGcAAABoAAAAaAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABnAAAAaAAAAGgAAABnAAAAaAAAAGgAAABnAAAAaAAAAGgAAABnAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABoAAAAaAAAAGcAAABoAAAAaAAAAGcAAABoAAAAaAAAAGcAAABoAAAAaAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABnAAAAaAAAAGgAAABnAAAAaAAAAGgAAABnAAAAaAAAAGgAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAABkAAAAZAAAAGMAAABkAAAAZAAAAGMAAABkAAAAZAAAAGMAAABkAAAAZAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABjAAAAZAAAAGQAAABjAAAAZAAAAGQAAABjAAAAZAAAAGQAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGMAAABkAAAAZAAAAGMAAABkAAAAZAAAAGMAAABkAAAAZAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABjAAAAZAAAAGQAAABjAAAAZAAAAGQAAABjAAAAZAAAAGQAAABjAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAABkAAAAZAAAAGMAAABkAAAAZAAAAGMAAABkAAAAZAAAAGMAAABkAAAAZAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABjAAAAZAAAAGQAAABjAAAAZAAAAGQAAABjAAAAZAAAAGQAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,-4: ind: 1,-4 - tiles: ZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAGgAAAVcAAABoAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAEsAAAJoAAAAVwAAABoAAABXAAAAaAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABLAAABaAAAAFcAAAAaAAACVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABXAAAAVwAAAFcAAABXAAAASwAAA2gAAAAaAAACGgAAABoAAAJoAAAALAAAAGgAAABoAAAAaAAAAGgAAABYAAAASwAAAksAAANLAAABSwAAAEsAAANLAAABSwAAAEsAAAJLAAACaAAAACwAAABoAAAAZwAAAGgAAABXAAAAaAAAAEsAAABLAAABSwAAAksAAABLAAADSwAAA0sAAAJLAAABSwAAAmgAAAAsAAAAaAAAAGcAAABoAAAAVwAAAGgAAABLAAAASwAAA0sAAAFLAAAASwAAAEsAAABLAAABSwAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAFsAAABbAAACWwAAARoAAAEaAAABGgAAAhoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABbAAAAWwAAAVsAAAIaAAADGgAAAxoAAAMaAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAAASwAAAEsAAANLAAABWwAAAFsAAAJbAAAAGgAAAhoAAAMaAAACGgAAAWgAAABoAAAAaAAAAGgAAABLAAAASwAAAUsAAABLAAACSwAAAVsAAAJbAAAAWwAAARoAAAAaAAACGgAAAhoAAANYAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAABSwAAAWgAAAAaAAAAGgAAAhoAAAAaAAADGgAAARoAAAMaAAADaAAAAGgAAABoAAAAaAAAAA== + tiles: YwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAFgAAAVMAAABkAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAUwAAAEcAAAJkAAAAUwAAABYAAABTAAAAZAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAFMAAABHAAABZAAAAFMAAAAWAAACUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABTAAAAUwAAAFMAAABTAAAARwAAA2QAAAAWAAACFgAAABYAAAJkAAAAKAAAAGQAAABkAAAAZAAAAGQAAABUAAAARwAAAkcAAANHAAABRwAAAEcAAANHAAABRwAAAEcAAAJHAAACZAAAACgAAABkAAAAYwAAAGQAAABTAAAAZAAAAEcAAABHAAABRwAAAkcAAABHAAADRwAAA0cAAAJHAAABRwAAAmQAAAAoAAAAZAAAAGMAAABkAAAAUwAAAGQAAABHAAAARwAAA0cAAAFHAAAARwAAAEcAAABHAAABRwAAAEcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAFcAAABXAAACVwAAARYAAAEWAAABFgAAAhYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABXAAAAVwAAAVcAAAIWAAADFgAAAxYAAAMWAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAAARwAAAEcAAANHAAABVwAAAFcAAAJXAAAAFgAAAhYAAAMWAAACFgAAAWQAAABkAAAAZAAAAGQAAABHAAAARwAAAUcAAABHAAACRwAAAVcAAAJXAAAAVwAAARYAAAAWAAACFgAAAhYAAANUAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAABRwAAAWQAAAAWAAAAFgAAAhYAAAAWAAADFgAAARYAAAMWAAADZAAAAGQAAABkAAAAZAAAAA== -1,-5: ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAhoAAAAaAAADaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAMaAAADGgAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADGgAAAxoAAAFoAAAASwAAAEsAAABLAAACSwAAA0sAAANLAAACSwAAAUsAAAJLAAADSwAAAEsAAANoAAAAGgAAAhoAAAIaAAADaAAAAEsAAAJLAAACSwAAAksAAABLAAAASwAAAksAAAFLAAABSwAAAksAAABLAAACaAAAABoAAAEaAAABGgAAAGgAAABLAAABSwAAAUsAAAJLAAABSwAAAksAAAFLAAAASwAAAksAAAJLAAACSwAAAUsAAAAaAAADGgAAA2gAAABoAAAASwAAAksAAANLAAABSwAAAEsAAANoAAAASwAAAEsAAAJLAAACSwAAAEsAAABoAAAAGgAAAhoAAAFoAAAASwAAAksAAAJLAAAASwAAAksAAABLAAABLAAAAEsAAAJLAAACSwAAAEsAAABLAAAAaAAAABoAAAEaAAADGgAAAUsAAAFLAAAASwAAAUsAAABLAAAASwAAAGgAAABLAAAASwAAA0sAAAJLAAACSwAAA2gAAAAaAAADGgAAARoAAABLAAADSwAAA0sAAAJLAAACSwAAAEsAAAMsAAAASwAAAUsAAAFLAAAASwAAAksAAANoAAAAGgAAABoAAAJoAAAASwAAAEsAAABLAAADSwAAAUsAAANLAAAAaAAAAEsAAAFLAAADSwAAAksAAAJLAAADaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAhYAAAAWAAADZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAMWAAADFgAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADFgAAAxYAAAFkAAAARwAAAEcAAABHAAACRwAAA0cAAANHAAACRwAAAUcAAAJHAAADRwAAAEcAAANkAAAAFgAAAhYAAAIWAAADZAAAAEcAAAJHAAACRwAAAkcAAABHAAAARwAAAkcAAAFHAAABRwAAAkcAAABHAAACZAAAABYAAAEWAAABFgAAAGQAAABHAAABRwAAAUcAAAJHAAABRwAAAkcAAAFHAAAARwAAAkcAAAJHAAACRwAAAUcAAAAWAAADFgAAA2QAAABkAAAARwAAAkcAAANHAAABRwAAAEcAAANkAAAARwAAAEcAAAJHAAACRwAAAEcAAABkAAAAFgAAAhYAAAFkAAAARwAAAkcAAAJHAAAARwAAAkcAAABHAAABKAAAAEcAAAJHAAACRwAAAEcAAABHAAAAZAAAABYAAAEWAAADFgAAAUcAAAFHAAAARwAAAUcAAABHAAAARwAAAGQAAABHAAAARwAAA0cAAAJHAAACRwAAA2QAAAAWAAADFgAAARYAAABHAAADRwAAA0cAAAJHAAACRwAAAEcAAAMoAAAARwAAAUcAAAFHAAAARwAAAkcAAANkAAAAFgAAABYAAAJkAAAARwAAAEcAAABHAAADRwAAAUcAAANHAAAAZAAAAEcAAAFHAAADRwAAAkcAAAJHAAADZAAAAA== 0,-5: ind: 0,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAUsAAABLAAACaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAANLAAAASwAAAUsAAAJoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAADSwAAAksAAAFLAAACaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAASwAAA0sAAAJLAAACSwAAAmgAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAEsAAAJLAAABSwAAAUsAAABoAAAAZwAAAGcAAABnAAAAaAAAAGcAAABnAAAAZwAAAGgAAABnAAAAZwAAAGcAAABLAAABSwAAAksAAABLAAACaAAAAGcAAABnAAAAZwAAAGgAAABnAAAAZwAAAGcAAABoAAAAZwAAAGcAAABnAAAASwAAAEsAAABLAAAASwAAAGgAAABoAAAAaAAAAGcAAABoAAAAZwAAAGcAAABnAAAAaAAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAADAAAAAwAAAAMAAAADAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAGgAAABoAAAAVwAAAFcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAUcAAABHAAACZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEcAAANHAAAARwAAAUcAAAJkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHAAADRwAAAkcAAAFHAAACZAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAARwAAA0cAAAJHAAACRwAAAmQAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAEcAAAJHAAABRwAAAUcAAABkAAAAYwAAAGMAAABjAAAAZAAAAGMAAABjAAAAYwAAAGQAAABjAAAAYwAAAGMAAABHAAABRwAAAkcAAABHAAACZAAAAGMAAABjAAAAYwAAAGQAAABjAAAAYwAAAGMAAABkAAAAYwAAAGMAAABjAAAARwAAAEcAAABHAAAARwAAAGQAAABkAAAAZAAAAGMAAABkAAAAYwAAAGMAAABjAAAAZAAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAADAAAAAwAAAAMAAAADAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAGQAAABkAAAAUwAAAFMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,-4: ind: 2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABXAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAVwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAALAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAACwAAABoAAAAVwAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAALAAAAGgAAAAsAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAACwAAABoAAAALAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAACwAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABTAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAUwAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAKAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAACgAAABkAAAAUwAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAKAAAAGQAAAAoAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAACgAAABkAAAAKAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAACgAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,-5: ind: 2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAA== 2,-6: ind: 2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAA== 1,-5: ind: 1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABnAAAAZwAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAZwAAAGcAAABnAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGcAAABnAAAAZwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABjAAAAYwAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAYwAAAGMAAABjAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGMAAABjAAAAYwAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAA== 1,-6: ind: 1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 5,-1: ind: 5,-1 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAABoAAAEaAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAaAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABnAAAAGgAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAaAAACGgAAABoAAAIaAAAAGgAAAw== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAABYAAAEWAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAWAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABjAAAAFgAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAWAAACFgAAABYAAAIWAAAAFgAAAw== 6,0: ind: 6,0 - tiles: GgAAAhoAAAIaAAADGgAAABoAAAEaAAADGgAAARoAAAMaAAAAGgAAABoAAAAaAAACGgAAAhoAAAIaAAADGgAAAhoAAANoAAAAGgAAARoAAAIaAAADaAAAABoAAAAaAAAAGgAAAhoAAAIaAAABaAAAABoAAAIaAAACGgAAAxoAAANnAAAAaAAAABoAAAEaAAACGgAAAmgAAAAaAAACGgAAABoAAAAaAAAAGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAGgAAARoAAAEaAAAAGgAAABoAAAAaAAADGgAAA2gAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAABoAAAEaAAACEgAAABIAAAASAAAAGgAAAxoAAAJoAAAAaAAAAGgAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAAAaAAACEgAAABIAAAAaAAAAEgAAABIAAAAaAAACaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAaAAAAGgAAABoAAAAEgAAABIAAABoAAAAaAAAAGgAAAASAAAAEgAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAABoAAAISAAAAaAAAADAAAABoAAAAEgAAABoAAANoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAABoAAAAaAAAADAAAAAaAAACEgAAABoAAAEaAAABGgAAABIAAAAaAAACMAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAGgAAARIAAABoAAAAaAAAAGgAAAASAAAAGgAAAWgAAABoAAAAaAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAABIAAAASAAAAEgAAABIAAAASAAAAEgAAABIAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGgAAAAaAAADGgAAABoAAAAaAAACGgAAARoAAAMaAAACaAAAAGgAAAAAAAAAAAAAABoAAANnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAA2gAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAaAAADZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAGgAAAWgAAABoAAAAaAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAA== + tiles: FgAAAhYAAAIWAAADFgAAABYAAAEWAAADFgAAARYAAAMWAAAAFgAAABYAAAAWAAACFgAAAhYAAAIWAAADFgAAAhYAAANkAAAAFgAAARYAAAIWAAADZAAAABYAAAAWAAAAFgAAAhYAAAIWAAABZAAAABYAAAIWAAACFgAAAxYAAANjAAAAZAAAABYAAAEWAAACFgAAAmQAAAAWAAACFgAAABYAAAAWAAAAFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAFgAAARYAAAEWAAAAFgAAABYAAAAWAAADFgAAA2QAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAABYAAAEWAAACDgAAAA4AAAAOAAAAFgAAAxYAAAJkAAAAZAAAAGQAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAAAWAAACDgAAAA4AAAAWAAAADgAAAA4AAAAWAAACZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAZAAAAGQAAABkAAAADgAAAA4AAABkAAAAZAAAAGQAAAAOAAAADgAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAABYAAAIOAAAAZAAAACwAAABkAAAADgAAABYAAANkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAABkAAAAZAAAACwAAAAWAAACDgAAABYAAAEWAAABFgAAAA4AAAAWAAACLAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAFgAAAQ4AAABkAAAAZAAAAGQAAAAOAAAAFgAAAWQAAABkAAAAZAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAAAWAAADFgAAABYAAAAWAAACFgAAARYAAAMWAAACZAAAAGQAAAAAAAAAAAAAABYAAANjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAA2QAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAWAAADYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABjAAAAFgAAAWQAAABkAAAAZAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAA== 6,-1: ind: 6,-1 - tiles: GgAAAGgAAABoAAAAaAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAABoAAAJnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAAAaAAADZwAAAAAAAABoAAAAaAAAABIAAAASAAAAEgAAABoAAAESAAAAEgAAABIAAABoAAAAaAAAAAAAAABnAAAAGgAAAWcAAAAAAAAAaAAAAGgAAAAaAAACGgAAABoAAAIaAAABGgAAAxoAAAIaAAADaAAAAGgAAAAAAAAAZwAAABoAAANnAAAAZwAAAGgAAABoAAAAEgAAABIAAAAaAAABMAAAABoAAAMSAAAAEgAAAGgAAABoAAAAZwAAAGcAAAAaAAABZwAAAAAAAABoAAAAEgAAABIAAAASAAAAGgAAAjAAAAAaAAAAEgAAABIAAAASAAAAaAAAAAAAAABnAAAAGgAAAmcAAAAAAAAAaAAAABoAAAIaAAABGgAAAhoAAAAaAAABGgAAAxoAAAAaAAAAGgAAAWgAAAAAAAAAZwAAABoAAABnAAAAAAAAAGgAAAAwAAAAGgAAAzAAAABoAAAAGgAAAWgAAAAwAAAAGgAAAjAAAABoAAAAAAAAAGcAAAAaAAACZwAAAAAAAABoAAAAMAAAABoAAAIwAAAAaAAAABoAAAFoAAAAMAAAABoAAAIwAAAAaAAAAAAAAABnAAAAGgAAA2cAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAABoAAAFnAAAAaAAAAGgAAABoAAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAAGgAAABoAAAAaAAAAGcAAAAaAAADGgAAABoAAAEaAAABGgAAATcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABoAAAAGgAAAGgAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAABoAAAJoAAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAAGgAAABoAAAAaAAAAAAAAABnAAAAaAAAAGgAAAAaAAAAaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAmgAAAAaAAACGgAAAhoAAAFoAAAAGgAAARoAAAIaAAABGgAAARoAAAFoAAAAGgAAARoAAAAaAAAAGgAAAQ== + tiles: FgAAAGQAAABkAAAAZAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAABYAAAJjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGMAAAAWAAADYwAAAAAAAABkAAAAZAAAAA4AAAAOAAAADgAAABYAAAEOAAAADgAAAA4AAABkAAAAZAAAAAAAAABjAAAAFgAAAWMAAAAAAAAAZAAAAGQAAAAWAAACFgAAABYAAAIWAAABFgAAAxYAAAIWAAADZAAAAGQAAAAAAAAAYwAAABYAAANjAAAAYwAAAGQAAABkAAAADgAAAA4AAAAWAAABLAAAABYAAAMOAAAADgAAAGQAAABkAAAAYwAAAGMAAAAWAAABYwAAAAAAAABkAAAADgAAAA4AAAAOAAAAFgAAAiwAAAAWAAAADgAAAA4AAAAOAAAAZAAAAAAAAABjAAAAFgAAAmMAAAAAAAAAZAAAABYAAAIWAAABFgAAAhYAAAAWAAABFgAAAxYAAAAWAAAAFgAAAWQAAAAAAAAAYwAAABYAAABjAAAAAAAAAGQAAAAsAAAAFgAAAywAAABkAAAAFgAAAWQAAAAsAAAAFgAAAiwAAABkAAAAAAAAAGMAAAAWAAACYwAAAAAAAABkAAAALAAAABYAAAIsAAAAZAAAABYAAAFkAAAALAAAABYAAAIsAAAAZAAAAAAAAABjAAAAFgAAA2MAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAABZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAABYAAAFjAAAAZAAAAGQAAABkAAAAMwAAADMAAAAzAAAAMwAAADMAAAAzAAAAMwAAAGQAAABkAAAAZAAAAGMAAAAWAAADFgAAABYAAAEWAAABFgAAATMAAAAzAAAAMwAAADMAAAAzAAAAMwAAADMAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABkAAAAFgAAAGQAAAAzAAAAMwAAADMAAAAzAAAAMwAAADMAAAAzAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAABYAAAJkAAAAMwAAADMAAAAzAAAAMwAAADMAAAAzAAAAMwAAAGQAAABkAAAAZAAAAAAAAABjAAAAZAAAAGQAAAAWAAAAZAAAAGQAAABkAAAAZAAAABYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAmQAAAAWAAACFgAAAhYAAAFkAAAAFgAAARYAAAIWAAABFgAAARYAAAFkAAAAFgAAARYAAAAWAAAAFgAAAQ== 6,1: ind: 6,1 - tiles: GgAAAWcAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAABoAAABnAAAAZwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAaAAAAGgAAAxoAAAAaAAAAGgAAABoAAAIaAAABGgAAAhoAAAAaAAABGgAAABoAAAEaAAABGgAAAxoAAAIaAAACZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAGgAAABoAAAMaAAAAGgAAAxoAAAJnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAABoAAAMaAAABGgAAAxoAAAMaAAACZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: FgAAAWMAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAABYAAABjAAAAYwAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAWAAAAFgAAAxYAAAAWAAAAFgAAABYAAAIWAAABFgAAAhYAAAAWAAABFgAAABYAAAEWAAABFgAAAxYAAAIWAAACYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAFgAAABYAAAMWAAAAFgAAAxYAAAJjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAABYAAAMWAAABFgAAAxYAAAMWAAACYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 7,1: ind: 7,1 - tiles: GgAAAmcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAJnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: FgAAAmMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAJjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 7,0: ind: 7,0 - tiles: GgAAABoAAAIaAAACGgAAAWcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABnAAAAZwAAABoAAANnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAGcAAAAaAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAABnAAAAGgAAAmcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAABoAAAJnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAaAAABZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAABoAAAEaAAACGgAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAaAAABZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAGgAAAWcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAABoAAAFnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAaAAACZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAGgAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAABoAAAFnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAMaAAACZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAADZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAmcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: FgAAABYAAAIWAAACFgAAAWMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABjAAAAYwAAABYAAANjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAGMAAAAWAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAABjAAAAFgAAAmMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAABYAAAJjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAWAAABYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAABYAAAEWAAACFgAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAWAAABYwAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAFgAAAWMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAABYAAAFjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAWAAACYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAFgAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAABYAAAFjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAMWAAACYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAADYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAmMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 7,-1: ind: 7,-1 - tiles: GgAAAmcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAANnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAACZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAmcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAFnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAADZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAmcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAA2cAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAADGgAAAxoAAAMaAAADZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAGgAAAmcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAABoAAAJnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAGcAAAAaAAADZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGcAAABnAAAAGgAAAWcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: FgAAAmMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAANjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAACYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAmMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAFjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAADYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAmMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAA2MAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABjAAAAYwAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAADFgAAAxYAAAMWAAADYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAFgAAAmMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAABYAAAJjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAGMAAAAWAAADYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGMAAABjAAAAFgAAAWMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 7,-2: ind: 7,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAABZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAWcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAABYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAWMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 6,-2: ind: 6,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAaAAABGgAAARoAAAAaAAADGgAAAmcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAGgAAABoAAAEaAAADGgAAARoAAABnAAAAZwAAAGcAAABnAAAAZwAAABoAAAEaAAADGgAAABoAAAMaAAACGgAAAxoAAAEaAAACGgAAAxoAAAEaAAACGgAAABoAAAEaAAABGgAAABoAAAAaAAACZwAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAGgAAAWcAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAWAAABFgAAARYAAAAWAAADFgAAAmMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAFgAAABYAAAEWAAADFgAAARYAAABjAAAAYwAAAGMAAABjAAAAYwAAABYAAAEWAAADFgAAABYAAAMWAAACFgAAAxYAAAEWAAACFgAAAxYAAAEWAAACFgAAABYAAAEWAAABFgAAABYAAAAWAAACYwAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAFgAAAWMAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAA== 5,1: ind: 5,1 - tiles: AAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 5,-2: ind: 5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAA== type: MapGrid - type: Broadphase - bodyStatus: InAir @@ -564,9 +564,9 @@ entities: 1172: 55,39 1173: 57,41 2808: -16,-45 - 3289: 33,-22 - 3290: 34,-22 - 3291: 35,-22 + 3288: 33,-22 + 3289: 34,-22 + 3290: 35,-22 - node: color: '#FFFFFFFF' id: BotRight @@ -628,9 +628,9 @@ entities: id: BrickTileDarkLineE decals: 3119: 6,44 - 3367: 0,-6 - 3368: 0,-5 - 3369: 0,-4 + 3366: 0,-6 + 3367: 0,-5 + 3368: 0,-4 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN @@ -650,9 +650,9 @@ entities: id: BrickTileDarkLineW decals: 3117: 12,44 - 3370: -6,-6 - 3371: -6,-5 - 3372: -6,-4 + 3369: -6,-6 + 3370: -6,-5 + 3371: -6,-4 - node: color: '#D381C996' id: BrickTileSteelCornerNe @@ -673,7 +673,7 @@ entities: color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: - 3401: 30,-20 + 3400: 30,-20 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe @@ -686,43 +686,43 @@ entities: 3253: 30,-23 3256: 19,-23 3263: 28,-16 - 3272: 32,-21 + 3271: 32,-21 - node: color: '#FFFFFFFF' id: BrickTileSteelEndE decals: - 3265: 31,-20 - 3292: 31,-23 + 3264: 31,-20 + 3291: 31,-23 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe decals: 3259: 17,-25 - 3293: 30,-23 + 3292: 30,-23 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 3269: 27,-25 + 3268: 27,-25 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSe decals: - 3270: 22,-22 - 3271: 22,-20 - 3402: 30,-20 + 3269: 22,-22 + 3270: 22,-20 + 3401: 30,-20 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: - 3268: 28,-16 + 3267: 28,-16 - node: color: '#52B4E996' id: BrickTileSteelLineE decals: - 3377: -28,-45 - 3378: -28,-44 - 3379: -28,-43 + 3376: -28,-45 + 3377: -28,-44 + 3378: -28,-43 - node: color: '#D381C996' id: BrickTileSteelLineE @@ -736,8 +736,8 @@ entities: 3242: 22,-22 3260: 17,-24 3261: 17,-23 - 3294: 30,-22 - 3295: 30,-21 + 3293: 30,-22 + 3294: 30,-21 - node: color: '#D381C996' id: BrickTileSteelLineN @@ -770,15 +770,15 @@ entities: 3235: 27,-23 3236: 25,-23 3237: 24,-23 - 3274: 33,-21 - 3275: 35,-21 + 3273: 33,-21 + 3274: 35,-21 - node: color: '#52B4E996' id: BrickTileSteelLineW decals: - 3380: -29,-45 - 3381: -29,-44 - 3382: -29,-43 + 3379: -29,-45 + 3380: -29,-44 + 3381: -29,-43 - node: color: '#D381C996' id: BrickTileSteelLineW @@ -791,7 +791,7 @@ entities: decals: 3254: 30,-22 3255: 30,-21 - 3273: 32,-20 + 3272: 32,-20 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe @@ -807,7 +807,7 @@ entities: color: '#FFFFFFFF' id: BrickTileWhiteCornerNe decals: - 3319: 6,-25 + 3318: 6,-25 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw @@ -824,7 +824,7 @@ entities: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw decals: - 3318: 1,-25 + 3317: 1,-25 - node: color: '#52B4E996' id: BrickTileWhiteCornerSe @@ -835,7 +835,7 @@ entities: color: '#FFFFFFFF' id: BrickTileWhiteCornerSe decals: - 3320: 6,-26 + 3319: 6,-26 - node: color: '#52B4E996' id: BrickTileWhiteCornerSw @@ -847,7 +847,7 @@ entities: color: '#FFFFFFFF' id: BrickTileWhiteCornerSw decals: - 3321: 1,-26 + 3320: 1,-26 - node: color: '#52B4E996' id: BrickTileWhiteEndN @@ -1005,10 +1005,10 @@ entities: color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 3322: 2,-25 - 3323: 3,-25 - 3324: 4,-25 - 3325: 5,-25 + 3321: 2,-25 + 3322: 3,-25 + 3323: 4,-25 + 3324: 5,-25 - node: color: '#52B4E996' id: BrickTileWhiteLineS @@ -1050,10 +1050,10 @@ entities: color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 3326: 5,-26 - 3327: 4,-26 - 3328: 3,-26 - 3329: 2,-26 + 3325: 5,-26 + 3326: 4,-26 + 3327: 3,-26 + 3328: 2,-26 - node: color: '#334E6DC8' id: BrickTileWhiteLineW @@ -1479,8 +1479,8 @@ entities: 3065: -11,-32 3066: -11,-30 3081: -12,-33 - 3387: -28,-42 - 3388: -29,-42 + 3386: -28,-42 + 3387: -29,-42 - node: cleanable: True color: '#A4610696' @@ -1709,7 +1709,7 @@ entities: color: '#FFFFFFFF' id: FlowersBRTwo decals: - 3285: 34.316673,-19.011337 + 3284: 34.316673,-19.011337 - node: color: '#FFFFFFFF' id: Flowersbr1 @@ -1747,7 +1747,7 @@ entities: 1144: 29.107126,51.73019 1553: -46.351173,-56.908703 1554: -47.8043,-52.564953 - 3284: 32.425682,-19.714462 + 3283: 32.425682,-19.714462 - node: color: '#FFFFFFFF' id: Flowersy1 @@ -1765,7 +1765,7 @@ entities: 1142: 29.138376,53.277065 1628: -7,-68 1868: 33,-56 - 3283: 34.175682,-20.698837 + 3282: 34.175682,-20.698837 - node: color: '#FFFFFFFF' id: Flowersy3 @@ -1979,7 +1979,7 @@ entities: 10: -15.577284,-6.9349065 1135: 33.93525,53.91769 1151: 31.247751,52.01144 - 3280: 34.394432,-19.886337 + 3279: 34.394432,-19.886337 - node: color: '#FFFFFFFF' id: Grassd2 @@ -1998,7 +1998,7 @@ entities: 1542: -48.0543,-53.002453 1543: -47.9918,-55.283703 1635: 12.760319,-44.77449 - 3281: 34.878807,-18.964462 + 3280: 34.878807,-18.964462 - node: color: '#FFFFFFFF' id: Grasse1 @@ -2026,8 +2026,8 @@ entities: 1627: -7,-66 1633: 12.838444,-44.227615 1866: 33,-55 - 3279: 34.894432,-20.698837 - 3282: 32.863182,-20.339462 + 3278: 34.894432,-20.698837 + 3281: 32.863182,-20.339462 - node: color: '#FFFFFFFF' id: Grasse3 @@ -2043,7 +2043,7 @@ entities: 1537: -46.4293,-52.424328 1632: 12,-45 1865: 33,-56 - 3278: 32.535057,-19.073837 + 3277: 32.535057,-19.073837 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale @@ -2342,10 +2342,10 @@ entities: 2839: -8,-27 2840: -9,-27 2988: -28,-38 - 3383: -32,-41 - 3384: -30,-41 - 3385: -27,-41 - 3386: -25,-41 + 3382: -32,-41 + 3383: -30,-41 + 3384: -27,-41 + 3385: -25,-41 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale180 @@ -2903,24 +2903,24 @@ entities: color: '#52B4E996' id: LoadingAreaGreyscale decals: - 3375: -31,-42 - 3376: -26,-42 + 3374: -31,-42 + 3375: -26,-42 - node: color: '#FFFFFFFF' id: LoadingAreaGreyscale decals: - 3373: -26,-45 - 3374: -31,-45 + 3372: -26,-45 + 3373: -31,-45 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerNw decals: - 3266: 23,-25 + 3265: 23,-25 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerSe decals: - 3267: 26,-16 + 3266: 26,-16 - node: color: '#FFFFFFFF' id: MiniTileSteelLineE @@ -2943,12 +2943,12 @@ entities: decals: 3240: 25,-16 3244: 21,-23 - 3276: 34,-21 + 3275: 34,-21 - node: color: '#FFFFFFFF' id: MiniTileSteelLineW decals: - 3277: 32,-19 + 3276: 32,-19 - node: color: '#D4D4D412' id: PavementCheckerAOverlay @@ -2958,7 +2958,7 @@ entities: 3221: 28,-19 3222: 29,-17 3223: 27,-16 - 3286: 34,-23 + 3285: 34,-23 - node: color: '#D4D4D428' id: PavementCheckerAOverlay @@ -2977,8 +2977,8 @@ entities: color: '#D4D4D412' id: PavementCheckerBOverlay decals: - 3287: 33,-24 - 3288: 33,-23 + 3286: 33,-24 + 3287: 33,-23 - node: color: '#D4D4D428' id: PavementCheckerBOverlay @@ -3117,12 +3117,12 @@ entities: 1683: 11,-47 1711: 29,-44 3010: 0,-25 - 3297: 1,-35 - 3298: 1,-36 - 3299: 1,-37 - 3300: 1,-38 - 3314: 0,-33 - 3315: 0,-32 + 3296: 1,-35 + 3297: 1,-36 + 3298: 1,-37 + 3299: 1,-38 + 3313: 0,-33 + 3314: 0,-32 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale @@ -3227,23 +3227,23 @@ entities: 2632: -4,-57 2633: -4,-58 2634: -4,-59 - 3331: 10,12 - 3332: 10,13 - 3333: 10,14 - 3334: 10,15 - 3335: 11,15 - 3336: 12,15 - 3337: 13,15 - 3338: 14,15 - 3339: 17,18 - 3340: 18,18 - 3341: 19,18 - 3342: 20,18 - 3343: 22,18 - 3344: 23,18 - 3345: 24,18 - 3346: 25,18 - 3347: 26,18 + 3330: 10,12 + 3331: 10,13 + 3332: 10,14 + 3333: 10,15 + 3334: 11,15 + 3335: 12,15 + 3336: 13,15 + 3337: 14,15 + 3338: 17,18 + 3339: 18,18 + 3340: 19,18 + 3341: 20,18 + 3342: 22,18 + 3343: 23,18 + 3344: 24,18 + 3345: 25,18 + 3346: 26,18 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale @@ -3375,8 +3375,8 @@ entities: 3004: -2,-23 3005: -2,-24 3008: -2,-26 - 3312: 1,-33 - 3313: 0,-33 + 3311: 1,-33 + 3312: 0,-33 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale180 @@ -3472,15 +3472,15 @@ entities: 2675: -55,-7 2676: -55,-6 2677: -55,-5 - 3348: 28,13 - 3349: 29,13 - 3350: 27,13 - 3351: 26,13 - 3352: 25,12 - 3353: 25,13 - 3364: 13,12 - 3365: 13,13 - 3366: 14,13 + 3347: 28,13 + 3348: 29,13 + 3349: 27,13 + 3350: 26,13 + 3351: 25,12 + 3352: 25,13 + 3363: 13,12 + 3364: 13,13 + 3365: 14,13 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale180 @@ -3668,10 +3668,10 @@ entities: 2997: 6,-22 2998: 7,-22 3013: 0,-26 - 3310: 4,-33 - 3311: 3,-33 - 3316: 0,-30 - 3317: 0,-29 + 3309: 4,-33 + 3310: 3,-33 + 3315: 0,-30 + 3316: 0,-29 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale270 @@ -3792,16 +3792,16 @@ entities: 2536: 15,-9 3082: -4,-37 3083: -4,-38 - 3354: 24,12 - 3355: 24,13 - 3356: 23,13 - 3357: 22,13 - 3358: 21,13 - 3359: 20,13 - 3360: 19,13 - 3361: 18,13 - 3362: 17,13 - 3363: 16,13 + 3353: 24,12 + 3354: 24,13 + 3355: 23,13 + 3356: 22,13 + 3357: 21,13 + 3358: 20,13 + 3359: 19,13 + 3360: 18,13 + 3361: 17,13 + 3362: 16,13 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale270 @@ -4007,15 +4007,15 @@ entities: 3006: -2,-25 3007: -2,-27 3009: -2,-28 - 3301: 4,-37 - 3302: 4,-36 - 3303: 4,-35 - 3304: 3,-35 - 3305: 4,-29 - 3306: 4,-30 - 3307: 4,-31 - 3308: 4,-32 - 3309: 4,-33 + 3300: 4,-37 + 3301: 4,-36 + 3302: 4,-35 + 3303: 3,-35 + 3304: 4,-29 + 3305: 4,-30 + 3306: 4,-31 + 3307: 4,-32 + 3308: 4,-33 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale90 @@ -4296,7 +4296,7 @@ entities: id: Rock05 decals: 514: -48.019554,-0.083042145 - 3296: 30.989725,-21.999695 + 3295: 30.989725,-21.999695 - node: color: '#FFFFFFFF' id: SpaceStationSign1 @@ -4340,7 +4340,7 @@ entities: 356: -29,4 992: 51,-5 1071: 50,5 - 3330: 28,-63 + 3329: 28,-63 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale @@ -4962,12 +4962,12 @@ entities: 2959: -30,-26 2960: -29,-26 2961: -28,-26 - 3392: -2,-53 - 3393: -3,-53 - 3394: -4,-53 - 3395: -2,-39 - 3396: -3,-39 - 3397: -4,-39 + 3391: -2,-53 + 3392: -3,-53 + 3393: -4,-53 + 3394: -2,-39 + 3395: -3,-39 + 3396: -4,-39 - node: color: '#FFFFFFFF' id: WarnLineS @@ -5084,12 +5084,12 @@ entities: 2940: 17,-10 2941: 16,-10 2942: 15,-10 - 3389: -2,-53 - 3390: -3,-53 - 3391: -4,-53 - 3398: -2,-39 - 3399: -3,-39 - 3400: -4,-39 + 3388: -2,-53 + 3389: -3,-53 + 3390: -4,-53 + 3397: -2,-39 + 3398: -3,-39 + 3399: -4,-39 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -52355,6 +52355,30 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 19140 + components: + - pos: 61.5,20.5 + parent: 5350 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19141 + components: + - pos: 60.5,20.5 + parent: 5350 + type: Transform + - uid: 19147 + components: + - pos: 59.5,20.5 + parent: 5350 + type: Transform + - uid: 19148 + components: + - pos: 58.5,20.5 + parent: 5350 + type: Transform + - enabled: True + type: AmbientSound - uid: 20196 components: - pos: 11.5,-61.5 @@ -123008,26 +123032,6 @@ entities: - pos: 9.543957,-1.1447365 parent: 5350 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: Objects/Tools/flashlight.rsi/flashlight.png - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - containers: cellslot_cell_container: !type:ContainerSlot showEnts: False @@ -123130,26 +123134,6 @@ entities: - pos: -6.544301,-3.1708417 parent: 5350 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: Objects/Tools/flashlight.rsi/flashlight.png - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - containers: cellslot_cell_container: !type:ContainerSlot showEnts: False @@ -123195,28 +123179,6 @@ entities: - pos: -29.551394,17.78557 parent: 5350 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - containers: cellslot_cell_container: !type:ContainerSlot showEnts: False @@ -123259,26 +123221,6 @@ entities: - pos: -57.509872,-28.24864 parent: 5350 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: Objects/Tools/flashlight.rsi/flashlight.png - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - uid: 17463 components: - pos: -42.417267,-30.139824 @@ -123330,28 +123272,6 @@ entities: - pos: 25.524637,-37.41671 parent: 5350 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - canCollide: True type: Physics - proto: LampInterrogator @@ -127587,6 +127507,11 @@ entities: - pos: -46.5,-29.5 parent: 5350 type: Transform + - uid: 19149 + components: + - pos: -40.5,42.5 + parent: 5350 + type: Transform - proto: PlasticFlapsAirtightOpaque entities: - uid: 11791 @@ -139946,7 +139871,7 @@ entities: - pos: 9.5,-47.5 parent: 5350 type: Transform - - SecondsUntilStateChange: -31638.652 + - SecondsUntilStateChange: -31820.984 state: Closing type: Door - links: @@ -139957,7 +139882,7 @@ entities: - pos: 10.5,-47.5 parent: 5350 type: Transform - - SecondsUntilStateChange: -31638.652 + - SecondsUntilStateChange: -31820.984 state: Closing type: Door - links: @@ -139968,7 +139893,7 @@ entities: - pos: 11.5,-47.5 parent: 5350 type: Transform - - SecondsUntilStateChange: -31638.652 + - SecondsUntilStateChange: -31820.984 state: Closing type: Door - links: @@ -139979,7 +139904,7 @@ entities: - pos: 13.5,-47.5 parent: 5350 type: Transform - - SecondsUntilStateChange: -31638.652 + - SecondsUntilStateChange: -31820.984 state: Closing type: Door - links: @@ -139990,7 +139915,7 @@ entities: - pos: 14.5,-47.5 parent: 5350 type: Transform - - SecondsUntilStateChange: -31638.652 + - SecondsUntilStateChange: -31820.984 state: Closing type: Door - links: @@ -140001,7 +139926,7 @@ entities: - pos: 15.5,-47.5 parent: 5350 type: Transform - - SecondsUntilStateChange: -31638.652 + - SecondsUntilStateChange: -31820.984 state: Closing type: Door - links: @@ -144212,6 +144137,18 @@ entities: - pos: 22.5,-13.5 parent: 5350 type: Transform +- proto: SpawnPointBorg + entities: + - uid: 19134 + components: + - pos: 2.5,-39.5 + parent: 5350 + type: Transform + - uid: 19135 + components: + - pos: 4.5,-39.5 + parent: 5350 + type: Transform - proto: SpawnPointBotanist entities: - uid: 2681 diff --git a/Resources/Maps/nukieplanet.yml b/Resources/Maps/nukieplanet.yml index 305ab14ed60..3ce69a4dc78 100644 --- a/Resources/Maps/nukieplanet.yml +++ b/Resources/Maps/nukieplanet.yml @@ -1,24 +1,25 @@ meta: - format: 5 + format: 6 postmapinit: false tilemap: 0: Space 12: FloorBar 18: FloorCarpetClown - 23: FloorDark - 38: FloorFreezer - 59: FloorReinforced - 60: FloorRockVault - 61: FloorShowroom - 63: FloorShuttleOrange - 65: FloorShuttleRed - 68: FloorSnow - 69: FloorSteel - 79: FloorTechMaint - 82: FloorWhite - 92: FloorWood - 94: Lattice - 95: Plating + 26: FloorDark + 41: FloorFreezer + 56: FloorIce + 71: FloorReinforced + 73: FloorRockVault + 74: FloorShowroom + 76: FloorShuttleOrange + 78: FloorShuttleRed + 81: FloorSnow + 83: FloorSteel + 95: FloorTechMaint + 99: FloorWhite + 109: FloorWood + 111: Lattice + 112: Plating entities: - proto: "" entities: @@ -35,76 +36,100 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAADwAAAA8AAAAPAAAAEQAAAFEAAAJXwAAABcAAANSAAADUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAA8AAAAPAAAADwAAABEAAAMRAAABV8AAAAXAAADUgAAA0UAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAPAAAADwAAAA8AAAARAAAAkQAAAZfAAAAFwAAA1IAAANSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAADwAAAA8AAAAPAAAAEQAAAxEAAAAXwAAABcAAAIXAAABFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAA8AAAAPAAAADwAAABEAAACRAAAA18AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAPAAAADwAAAA8AAAARAAAAEQAAAxEAAAGRAAAC0QAAAdEAAAIAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAADwAAAA8AAAAPAAAAEQAAAVEAAAGRAAADEQAAANEAAAFDAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAA8AAAAPAAAADwAAABEAAADRAAAA0QAAAlEAAAGDAAAA1wAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAPAAAADwAAAA8AAAARAAABUQAAAREAAADRAAAAwwAAAJcAAABAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAADwAAAA8AAAAPAAAAEQAAAdEAAACRAAACUQAAAgMAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAA8AAAAPAAAADwAAAAXAAADRAAABUQAAAJEAAALDAAAAgwAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAPAAAADwAAAA8AAAAXwAAAF8AAABfAAAAXwAAAF8AAAAMAAACAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAADwAAAA8AAAAPAAAAD8AAAA/AAAAPwAAAD8AAAA/AAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAA8AAAAPAAAADwAAABfAAAAXwAAAF8AAABfAAAAXwAAAAwAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAPAAAADwAAAA8AAAAXwAAAF8AAABfAAAAXwAAAF8AAAAMAAABAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAADwAAAA8AAAAPAAAAEQAAAREAAAIRAAABkQAAABfAAAADAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAKUQAAAAAAcAAAAAAAGgAAAAACYwAAAAADYwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAGgAAAAABYwAAAAADUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAGgAAAAAAYwAAAAACYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAADUQAAAAAEUQAAAAAAUQAAAAAEDAAAAAACbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAADAAAAAACbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAADAAAAAACbQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAGgAAAAADUQAAAAAAUQAAAAAAUQAAAAALDAAAAAAADAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAADAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAIcAAAAAAADAAAAAAB + version: 6 0,-1: ind: 0,-1 - tiles: UgAAAFIAAAJfAAAAUgAAAVIAAAFSAAABUgAAAFIAAAIXAAABFwAAABcAAAMXAAADFwAAAxcAAAIXAAACFwAAAUUAAAFSAAABUgAAA1IAAAJSAAADUgAAA1IAAANSAAACFwAAAkEAAAAXAAABQQAAABcAAAFBAAAAFwAAABcAAAFSAAAAUgAAA18AAABSAAABUgAAAFIAAABSAAABUgAAABcAAAFBAAAAFwAAAUEAAAAXAAABQQAAABcAAAAXAAACFwAAABcAAAAXAAADRQAAAkUAAANFAAACUgAAAlIAAAIXAAABFwAAABcAAAIXAAACFwAAARcAAAEXAAABFwAAAV8AAABfAAAAUgAAAkUAAAFFAAACRQAAAVIAAAJSAAADDAAAARcAAAEXAAABFwAAAxcAAAEXAAAAFwAAARcAAANEAAAFRAAACVIAAAJFAAADRQAAAEUAAABSAAAAUgAAAkQAAAwXAAADFwAAAj8AAAA/AAAAPwAAAD8AAAA/AAAADAAAAAwAAAIMAAADDAAAAAwAAAJfAAAAFwAAAV8AAAAMAAAADAAAAgwAAAMMAAAADAAAABcAAAAXAAACFwAAAUEAAABBAAAAXAAAAFwAAANcAAACFwAAARcAAAMXAAAAFwAAARcAAAIXAAADXwAAABcAAAIXAAADFwAAAhcAAANcAAACXAAAAVwAAAJcAAADXAAAAxcAAAIXAAACFwAAARcAAAAXAAADFwAAARcAAAIXAAACFwAAAxcAAAEXAAAAXAAAA1wAAABcAAABXAAAAVwAAAMXAAABFwAAAhcAAAAXAAADFwAAABcAAAJfAAAAFwAAAxcAAAAXAAACFwAAAQwAAAIMAAACDAAAAgwAAAIMAAACDAAAAwwAAAAMAAABDAAAAAwAAAAMAAAADAAAAwwAAAIXAAABFwAAAxcAAAIMAAADDAAAAwwAAAIMAAADDAAAAAwAAAAMAAADDAAAAAwAAAAmAAAAJgAAACYAAAAMAAAAXAAAAFwAAAFcAAABDAAAAQwAAAIMAAACDAAAAgwAAAEMAAABDAAAAUEAAAAMAAABJgAAACYAAAAmAAAADAAAAlwAAAJcAAAAXAAAAgwAAAMMAAADDAAAAAwAAAAMAAAADAAAAgwAAANBAAAADAAAAz0AAAAmAAAADAAAAQwAAAIXAAAAFwAAAxcAAAAMAAADDAAAAwwAAAEMAAAADAAAAgwAAAEMAAABQQAAAAwAAAE9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAADAAAAgwAAAAMAAACDAAAAwwAAAIMAAAADAAAAQwAAAIMAAABPQAAAD0AAAAmAAAAPQAAAD0AAABEAAAHRAAACg== + tiles: YwAAAAAAYwAAAAADcAAAAAAAYwAAAAAAYwAAAAACYwAAAAACYwAAAAADYwAAAAABGgAAAAAAGgAAAAABGgAAAAABGgAAAAABGgAAAAABGgAAAAAAGgAAAAADGgAAAAACUwAAAAAAYwAAAAADYwAAAAADYwAAAAADYwAAAAACYwAAAAAAYwAAAAADYwAAAAADGgAAAAADTgAAAAAAGgAAAAACTgAAAAAAGgAAAAADTgAAAAAAGgAAAAADGgAAAAADYwAAAAAAYwAAAAACcAAAAAAAYwAAAAADYwAAAAACYwAAAAADYwAAAAACYwAAAAACGgAAAAADTgAAAAAAGgAAAAADTgAAAAAAGgAAAAABTgAAAAAAGgAAAAABGgAAAAAAGgAAAAABGgAAAAADGgAAAAAAUwAAAAADUwAAAAACUwAAAAADYwAAAAADYwAAAAACGgAAAAABGgAAAAAAGgAAAAAAGgAAAAABGgAAAAABGgAAAAABGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACYwAAAAADYwAAAAACDAAAAAACGgAAAAADGgAAAAAAGgAAAAADGgAAAAADGgAAAAACGgAAAAAAGgAAAAADUQAAAAAAUQAAAAAAYwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAYwAAAAACYwAAAAAAUQAAAAAAGgAAAAADGgAAAAADTAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAADAAAAAABDAAAAAADDAAAAAACDAAAAAAADAAAAAADcAAAAAAAGgAAAAABcAAAAAAADAAAAAADDAAAAAACDAAAAAAADAAAAAACDAAAAAAAGgAAAAABGgAAAAADGgAAAAABTgAAAAAATgAAAAAAbQAAAAACbQAAAAACbQAAAAADGgAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAADGgAAAAACcAAAAAAAGgAAAAACGgAAAAACGgAAAAADGgAAAAABbQAAAAAAbQAAAAACbQAAAAACbQAAAAADbQAAAAADGgAAAAAAGgAAAAAAGgAAAAACGgAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAADGgAAAAABGgAAAAACGgAAAAABbQAAAAAAbQAAAAABbQAAAAAAbQAAAAADbQAAAAADGgAAAAAAGgAAAAAAGgAAAAADGgAAAAAAGgAAAAABGgAAAAADcAAAAAAAGgAAAAACGgAAAAABGgAAAAABGgAAAAACDAAAAAACDAAAAAAADAAAAAACDAAAAAADDAAAAAACDAAAAAABDAAAAAACDAAAAAAADAAAAAAADAAAAAACDAAAAAADDAAAAAAADAAAAAABGgAAAAAAGgAAAAACGgAAAAACDAAAAAAADAAAAAABDAAAAAACDAAAAAAADAAAAAABDAAAAAABDAAAAAADDAAAAAAADAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADAAAAAACbQAAAAAAbQAAAAADbQAAAAABDAAAAAACDAAAAAACDAAAAAAADAAAAAAADAAAAAADDAAAAAAADAAAAAAATgAAAAAADAAAAAACKQAAAAAAKQAAAAAAKQAAAAAADAAAAAADbQAAAAABbQAAAAABbQAAAAADDAAAAAADDAAAAAABDAAAAAADDAAAAAACDAAAAAADDAAAAAAADAAAAAAATgAAAAAADAAAAAAASgAAAAAAKQAAAAAADAAAAAAADAAAAAACGgAAAAAAGgAAAAACcAAAAAAADAAAAAACDAAAAAACDAAAAAACDAAAAAAADAAAAAADDAAAAAABDAAAAAACTgAAAAAADAAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAADAAAAAAADAAAAAADDAAAAAACDAAAAAACDAAAAAACDAAAAAABDAAAAAABDAAAAAAADAAAAAACSgAAAAAASgAAAAAAKQAAAAAASgAAAAAASgAAAAAAcAAAAAAAcAAAAAAA + version: 6 0,0: ind: 0,0 - tiles: FwAAAxcAAAMXAAADDAAAAAwAAAAMAAACDAAAAwwAAAIMAAABPQAAAD0AAAA9AAAAPQAAAD0AAABEAAAIRAAAAl8AAABfAAAAXwAAABcAAAFfAAAADAAAAQwAAAEMAAADDAAAAAwAAAMMAAACDAAAAAwAAABEAAAIRAAAAUQAAAxEAAAIRAAACV8AAAA8AAAAXwAAAEQAAAZEAAAMRAAADEQAAAVEAAAERAAAAEQAAAFEAAABRAAABkQAAAtEAAAKRAAAAkQAAApfAAAAPAAAAF8AAABEAAADRAAAAkQAAAVEAAAARAAAAEQAAAREAAACRAAACUQAAAw8AAAARAAACkQAAAtEAAACPAAAADwAAABEAAAHRAAAAEQAAAVEAAACRAAACEQAAAZEAAAIRAAAAkQAAANEAAAERAAAAEQAAAlEAAALRAAADEQAAAo8AAAARAAACEQAAAxEAAABRAAAA0QAAABEAAABRAAABkQAAAhEAAAIRAAAAUQAAAZEAAAHRAAADEQAAAdEAAAGRAAAAkQAAAxEAAAHRAAAA0QAAANEAAAIRAAABkQAAAdEAAAKRAAABkQAAAxEAAAKRAAABUQAAANEAAACRAAACEQAAApEAAABRAAABUQAAAVEAAAMRAAAAUQAAAdEAAADRAAACkQAAABEAAAHRAAABUQAAAFEAAAHRAAABUQAAAVEAAAHRAAAA0QAAApEAAADRAAABEQAAAdEAAAMRAAAA0QAAAdEAAAJRAAACEQAAAtEAAAFRAAABEQAAANEAAAMRAAABUQAAApEAAADRAAACUQAAAxEAAAIRAAADEQAAApEAAAIRAAAAkQAAANEAAALRAAABUQAAAdEAAAMRAAAA0QAAAxEAAAAPAAAADwAAAA8AAAARAAAAkQAAABEAAABRAAAAUQAAAdEAAABRAAACkQAAAxEAAAMRAAAB0QAAApEAAAERAAAAjwAAAA8AAAAPAAAAEQAAAREAAAHRAAACkQAAAVEAAAFRAAACkQAAABEAAALRAAACEQAAAhEAAAERAAAB0QAAAw8AAAAPAAAADwAAABEAAAERAAABkQAAAZEAAAGRAAAAkQAAAxEAAAERAAAAUQAAAhEAAAJRAAAA0QAAApEAAAMPAAAADwAAAA8AAAARAAABUQAAAVEAAAIRAAAC0QAAANEAAAGRAAABUQAAAhEAAAERAAACkQAAAFEAAADRAAACTwAAAA8AAAAPAAAAEQAAApEAAAARAAAAUQAAAxEAAADRAAAB0QAAABEAAAKRAAAAEQAAAxEAAABRAAAAUQAAAREAAAFRAAAAUQAAAdEAAADRAAAA0QAAAhEAAAERAAACkQAAAdEAAAFRAAAAw== + tiles: GgAAAAADGgAAAAACGgAAAAACDAAAAAAADAAAAAABDAAAAAABDAAAAAABDAAAAAACDAAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAUQAAAAAGcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAADAAAAAAADAAAAAABDAAAAAABDAAAAAACDAAAAAABDAAAAAAADAAAAAACDAAAAAACUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAASQAAAAAAcAAAAAAAUQAAAAAAUQAAAAAHUQAAAAAAUQAAAAAAUQAAAAACUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAABUQAAAAAAcAAAAAAASQAAAAAAcAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAABUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAASQAAAAAAUQAAAAAFUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAMUQAAAAAAUQAAAAAFUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAUQAAAAAIUQAAAAAAUQAAAAACUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAIUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAKUQAAAAABUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAHUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAGUQAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAMUQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAHUQAAAAAAUQAAAAACUQAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAABUQAAAAAJUQAAAAAAUQAAAAAFSQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAHUQAAAAAHUQAAAAAKUQAAAAAFUQAAAAAAUQAAAAALUQAAAAAA + version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAADwAAAA8AAAAPAAAAEQAAAhEAAAARAAABEQAAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAA8AAAAPAAAADwAAABEAAALRAAABUQAAAlEAAAERAAAAl8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAPAAAADwAAABEAAAARAAAC0QAAAFEAAAERAAAA0QAAAFEAAAJXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADwAAAA8AAAARAAAAUQAAAJEAAABRAAAAkQAAAVEAAAFRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAA8AAAARAAACEQAAAtEAAABRAAABEQAAANEAAAFRAAAAEQAAAlEAAAJFwAAAxcAAAAXAAABRAAAARcAAAIXAAADRAAACkQAAABEAAAIRAAAAkQAAAZEAAAMRAAACkQAAAdEAAAERAAAAxcAAAAXAAABFwAAAhcAAAEXAAAAFwAAA0QAAAVEAAAGRAAABUQAAAJEAAAMRAAABkQAAABEAAAHRAAABkQAAAYXAAADFwAAABcAAABEAAAJFwAAAhcAAABEAAALRAAABkQAAAlEAAAHRAAABUQAAAhEAAABRAAAA0QAAAg8AAAAFwAAAxcAAAAXAAAAPAAAADwAAAA8AAAARAAABUQAAAdEAAACRAAACkQAAAdEAAALRAAACEQAAANEAAAIPAAAADwAAAA8AAAAFwAAADwAAAA8AAAAPAAAADwAAABEAAAARAAACEQAAANEAAABRAAAAEQAAANEAAAHRAAABTwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAARAAACEQAAApEAAAIRAAACEQAAAVEAAAMRAAAA0QAAApEAAAARAAAAUQAAAdEAAAGRAAABkQAAAREAAADPAAAAEQAAAdEAAAJRAAABUQAAANEAAAFRAAACEQAAAdEAAAARAAAAEQAAAREAAAHRAAAAEQAAAZEAAABRAAABDwAAABEAAAARAAABUQAAApEAAALRAAAAUQAAAVEAAAERAAAAkQAAAVEAAACRAAACUQAAABEAAAARAAADEQAAAo8AAAARAAABkQAAApEAAAIRAAACkQAAAZEAAACRAAAAUQAAAdEAAADRAAAAUQAAAVEAAABRAAAAkQAAAtEAAAEPAAAAEQAAAdEAAAIRAAAAUQAAAdEAAADRAAACEQAAAxEAAAJRAAACEQAAAhEAAAARAAABEQAAAZEAAAKRAAACEQAAABEAAAIRAAAAkQAAApEAAAMRAAAAUQAAAxEAAAFRAAABg== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAMUQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAAUQAAAAAKUQAAAAAIUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAKUQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAGGgAAAAADGgAAAAADGgAAAAAAcAAAAAAAGgAAAAAAGgAAAAACUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAALUQAAAAAAUQAAAAAAUQAAAAAKUQAAAAAIcAAAAAAAGgAAAAABGgAAAAACGgAAAAACGgAAAAADGgAAAAACGgAAAAACUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAGgAAAAABGgAAAAABUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAALUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAABUQAAAAAGSQAAAAAAGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAIUQAAAAADUQAAAAAASQAAAAAASQAAAAAASQAAAAAAcAAAAAAAcAAAAAAASQAAAAAASQAAAAAASQAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASQAAAAAASQAAAAAASQAAAAAAOAAAAAAAUQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAMUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAMUQAAAAAAUQAAAAABUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAGUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAABUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKSQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAABUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAA + version: 6 1,-1: ind: 1,-1 - tiles: FwAAAhcAAAMXAAACFwAAAhcAAAA7AAAAOwAAADsAAAAXAAADFwAAAhcAAAEXAAAAXwAAAEQAAAxEAAAGRAAAAhcAAAIXAAABFwAAAxcAAAMXAAACOwAAADsAAAA7AAAAFwAAARcAAAAXAAACFwAAA18AAABEAAAFRAAADEQAAAEXAAAAFwAAABcAAAIXAAADFwAAARcAAAEXAAAAFwAAAxcAAAIXAAAAFwAAAxcAAANfAAAARAAAC0QAAAxEAAAMFwAAABcAAAIXAAADFwAAARcAAAEXAAAAFwAAARcAAAAXAAACFwAAAl8AAABfAAAAXwAAAEQAAAlEAAAHRAAABhcAAAEXAAAAFwAAAxcAAAIXAAADFwAAAhcAAAEXAAABFwAAAhcAAAJEAAAGRAAACUQAAAdEAAAMRAAACQAAAAAXAAADFwAAABcAAAMXAAAAFwAAAhcAAAIXAAABFwAAAxcAAAEXAAACRAAABUQAAAY8AAAARAAACUQAAAwAAAAAFwAAAhcAAAFBAAAAQQAAAEEAAABBAAAAQQAAABcAAAAXAAABFwAAAkQAAApEAAAMRAAAAEQAAAZEAAAGAAAAAF8AAAAXAAAAQQAAAEEAAABBAAAAQQAAAEEAAAAXAAABFwAAAxcAAAJEAAAGPAAAAEQAAABEAAADRAAAAQAAAAAXAAADFwAAAUEAAABBAAAAQQAAAEEAAABBAAAAFwAAARcAAAAXAAABRAAAAjwAAAA8AAAARAAABUQAAANEAAAMXwAAABcAAAFBAAAAQQAAAEEAAABBAAAAQQAAABcAAAEXAAAAFwAAAkQAAAY8AAAARAAACkQAAAZEAAAERAAAChcAAAEXAAADQQAAAEEAAABBAAAAQQAAAEEAAAAXAAAAFwAAABcAAANEAAAHRAAAAEQAAAFEAAAIRAAACkQAAAUXAAACFwAAABcAAAIXAAADFwAAABcAAAMXAAAAFwAAAhcAAAAXAAABRAAAAjwAAABEAAAJRAAABUQAAAxEAAABFwAAABcAAAEXAAABFwAAABcAAAAXAAACFwAAABcAAAIXAAACFwAAAEQAAABEAAAGRAAABEQAAAVEAAAERAAACxcAAAMXAAADFwAAAhcAAAAXAAAAFwAAAhcAAAMXAAACFwAAARcAAABEAAAMPAAAADwAAABEAAAIRAAACkQAAAtEAAAIRAAAAkQAAAZEAAAGRAAABEQAAAdEAAAKRAAAAUQAAApEAAABRAAADEQAAAZEAAAARAAAAUQAAApEAAAKPAAAAEQAAAE8AAAARAAACjwAAAA8AAAAPAAAAEQAAAFEAAAIRAAAADwAAAA8AAAARAAACEQAAApEAAAFRAAACg== + tiles: GgAAAAADGgAAAAADGgAAAAACGgAAAAACGgAAAAAARwAAAAAARwAAAAAARwAAAAAAGgAAAAADGgAAAAACGgAAAAACGgAAAAACcAAAAAAAUQAAAAAAUQAAAAABUQAAAAACGgAAAAADGgAAAAADGgAAAAADGgAAAAAAGgAAAAADRwAAAAAARwAAAAAARwAAAAAAGgAAAAADGgAAAAACGgAAAAADGgAAAAACcAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAABGgAAAAACGgAAAAAAGgAAAAADGgAAAAADGgAAAAAAGgAAAAADGgAAAAABGgAAAAACcAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAGgAAAAADGgAAAAAAGgAAAAAAGgAAAAADGgAAAAADGgAAAAABGgAAAAACGgAAAAADGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUQAAAAAMUQAAAAAHUQAAAAAAGgAAAAABGgAAAAAAGgAAAAADGgAAAAABGgAAAAACGgAAAAAAGgAAAAADGgAAAAACGgAAAAACGgAAAAABUQAAAAAAUQAAAAADUQAAAAAAUQAAAAACUQAAAAAAAAAAAAAAGgAAAAAAGgAAAAABGgAAAAABGgAAAAADGgAAAAABGgAAAAABGgAAAAABGgAAAAADGgAAAAABGgAAAAACUQAAAAAFUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAGgAAAAADGgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAGgAAAAACGgAAAAACGgAAAAACUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAACAAAAAAAAcAAAAAAAGgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAGgAAAAADGgAAAAADGgAAAAACUQAAAAAESQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAAAAAAAAAGgAAAAAAGgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAGgAAAAACGgAAAAADGgAAAAACUQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAGgAAAAACTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAGgAAAAAAGgAAAAADGgAAAAACUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJUQAAAAAAcAAAAAAAGgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAGgAAAAAAGgAAAAABGgAAAAADUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAAAGgAAAAABGgAAAAAAGgAAAAACGgAAAAABGgAAAAABUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAACGgAAAAACGgAAAAADGgAAAAADGgAAAAACGgAAAAAAGgAAAAADUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJUQAAAAAAUQAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAABUQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAGcAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAUQAAAAAASQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAA + version: 6 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAIRAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAABUQAAApEAAAERAAAC0QAAANEAAAIRAAABUQAAApEAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAApEAAAERAAAAEQAAAdEAAALRAAABkQAAAdEAAAERAAACEQAAAFEAAABRAAABkQAAAZEAAAIRAAADEQAAAxEAAAERAAAAkQAAAVEAAAFRAAAAEQAAAQ8AAAARAAACEQAAARfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARAAAA0QAAAdEAAAKRAAAAUQAAAlEAAAJRAAAAUQAAAJEAAAJXwAAADsAAAA7AAAAOwAAADsAAAA7AAAAXwAAAEQAAAFEAAALRAAABkQAAAFEAAACRAAABEQAAApEAAAKRAAAB18AAAA7AAAAOwAAADsAAAA7AAAAOwAAAF8AAABEAAAARAAACUQAAAVEAAAHRAAABkQAAAREAAAIRAAAA0QAAAFfAAAAOwAAADsAAAA7AAAAOwAAADsAAABfAAAARAAAA0QAAAVEAAALRAAAB0QAAAREAAAHRAAACkQAAAlEAAAMXwAAADsAAAA7AAAAOwAAADsAAAA7AAAAXwAAAEQAAAJEAAAFRAAAAVIAAANSAAAAUgAAAFIAAAJSAAACPAAAAF8AAABFAAACRQAAAUUAAABFAAAARQAAAl8AAABfAAAARAAACUQAAAxSAAABUgAAAFIAAANSAAADUgAAA18AAABPAAAARQAAA0UAAAJFAAADRQAAAkUAAAFfAAAAFwAAAxcAAAJEAAAKUgAAAVIAAAFSAAABUgAAAVIAAAFPAAAATwAAAEUAAANFAAAARQAAAUUAAABFAAACXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAACUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAFUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAALUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAGUQAAAAAAUQAAAAAAUQAAAAACUQAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUQAAAAAAUQAAAAAHUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUQAAAAAAUQAAAAAGUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUQAAAAAKUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUQAAAAAAYwAAAAAAYwAAAAADYwAAAAADYwAAAAADYwAAAAAAcAAAAAAAXwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAADcAAAAAAAGgAAAAAAGgAAAAABUQAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAADYwAAAAAAXwAAAAAAXwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAA + version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAERAAAAEQAAAxEAAAIRAAACUQAAAxEAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAACkQAAAlEAAAHRAAABUQAAAREAAALRAAABEQAAAdEAAAARAAACAAAAAAAAAAAAAAAAAAAAABEAAAHRAAAAUQAAAZEAAAKRAAAAEQAAAREAAABRAAACUQAAAZEAAAARAAACUQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAPAAAADwAAAA8AAAAFwAAAEQAAAtEAAABRAAAB0QAAApEAAAKXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADwAAAA8AAAAPAAAAEQAAAJEAAAFRAAADEQAAAhEAAAKRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAA8AAAAPAAAADwAAABEAAAFRAAABEQAAAVEAAAHRAAABUQAAAheAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAPAAAADwAAAA8AAAARAAAB0QAAANEAAAARAAACkQAAAdEAAAHAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAADwAAAA8AAAAPAAAAEQAAAlEAAAIRAAACEQAAAREAAAJRAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAA8AAAAPAAAADwAAABEAAAKRAAACUQAAAtEAAAGRAAACUQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAPAAAADwAAAA8AAAARAAAAEQAAAhfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAADwAAAA8AAAAPAAAAEQAAAZEAAAAXwAAABcAAAIXAAAAFwAAAQ== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAEUQAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAAUQAAAAAFUQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAGgAAAAACUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAGUQAAAAAAUQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAALUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAFUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAEUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAAC + version: 6 -1,1: ind: -1,1 - tiles: RAAABkQAAAxEAAAERAAAAkQAAAdEAAAERAAABkQAAABEAAAGRAAACEQAAAtEAAAFRAAADEQAAApEAAAKRAAAAkQAAAhEAAAKRAAADEQAAAJEAAABRAAADEQAAABEAAAGRAAABkQAAAxEAAALRAAABEQAAAhEAAAHRAAABkQAAAhEAAALRAAABEQAAAlEAAAMRAAACUQAAApEAAAHPAAAADwAAABEAAAERAAAAUQAAAlEAAAHRAAABEQAAAlEAAAEEgAAABIAAAASAAAAEgAAAEQAAAZEAAAHRAAAATwAAAA8AAAARAAAA0QAAANEAAACRAAABkQAAAREAAAKRAAABhIAAAASAAAAEgAAABIAAABEAAAKRAAAC0QAAAc8AAAAPAAAAEQAAANEAAAJRAAAAEQAAAk8AAAAPAAAADwAAAASAAAAEgAAABIAAAASAAAARAAAAkQAAAlEAAAMRAAABEQAAAZEAAAEPAAAAEQAAAdEAAAKRAAACEQAAAZEAAAKEgAAABIAAAASAAAAEgAAAEQAAAlEAAALRAAAA0QAAAxEAAAARAAAAUQAAApEAAAGRAAAA0QAAABEAAAKRAAABhIAAAASAAAAEgAAABIAAABEAAAGRAAAAUQAAAlEAAAHRAAACUQAAAFEAAACRAAAB0QAAAdEAAAHAAAAAAAAAAASAAAAEgAAABIAAAASAAAARAAABkQAAAhEAAAGRAAAB0QAAAJEAAAMRAAAB0QAAAZEAAAGRAAAAgAAAAAAAAAARAAACkQAAAJEAAABRAAACUQAAABEAAAKRAAABkQAAAVEAAAMRAAACkQAAAxEAAAJRAAACEQAAAMAAAAAAAAAAEQAAAZEAAAMRAAACEQAAAlEAAAGRAAAAUQAAAFEAAAERAAABUQAAANEAAAGRAAABkQAAAtEAAAMAAAAAAAAAABEAAAFRAAACEQAAABEAAAARAAAAUQAAApEAAACRAAABEQAAAxEAAABRAAABkQAAAFEAAALRAAABwAAAAAAAAAARAAADEQAAAdEAAABRAAAAkQAAAdEAAAFRAAACUQAAAdEAAAHRAAABUQAAANEAAAHRAAAC0QAAAUAAAAAAAAAAEQAAAZEAAAIRAAAB0QAAAVEAAACRAAAAkQAAAtEAAADRAAAB0QAAAVEAAAMRAAACkQAAAREAAABAAAAAAAAAABEAAALRAAAB0QAAAJEAAADRAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: UQAAAAAIUQAAAAAAUQAAAAALUQAAAAAAUQAAAAADUQAAAAAMUQAAAAAAUQAAAAAAUQAAAAAKUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAMUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAGUQAAAAAAUQAAAAAFUQAAAAADUQAAAAAEUQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAEUQAAAAAHUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAEEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFSQAAAAAASQAAAAAASQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAUQAAAAAAUQAAAAAKUQAAAAAAUQAAAAACUQAAAAAAUQAAAAADSQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAMUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAABUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAUQAAAAACUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAALUQAAAAAHUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAMUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,1: ind: 0,1 - tiles: RAAABEQAAAZEAAAHRAAAC0QAAApEAAAFRAAACEQAAAtEAAAARAAAAEQAAApEAAAGRAAACEQAAAxEAAAMRAAABUQAAAxEAAAGRAAACEQAAAxEAAAARAAABEQAAABEAAAHRAAABkQAAAlEAAAIRAAABkQAAAxEAAABRAAACkQAAAhEAAAGRAAABkQAAAdEAAAHRAAABkQAAAhEAAALRAAAA0QAAAFEAAAIRAAAAEQAAApEAAAIRAAAA0QAAANEAAADRAAACEQAAABEAAAIRAAABUQAAABEAAABRAAABkQAAAhEAAAARAAAA0QAAAtEAAABRAAABUQAAAlEAAAKRAAADDwAAABEAAAJRAAAAkQAAAVEAAADRAAABEQAAAdEAAAEPAAAAEQAAAY8AAAAPAAAADwAAAA8AAAARAAADEQAAAZfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABEAAAERAAACUQAAANEAAALRAAACkQAAAVEAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAACUQAAAJEAAABRAAADEQAAANEAAACRAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAADRAAABUQAAAREAAACRAAACkQAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAACUQAAAtEAAAIRAAABUQAAAxEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAApEAAAFRAAACkQAAAJEAAAKRAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAACRAAABUQAAAFEAAAARAAAAkQAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAAZEAAAJRAAAAkQAAAZEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAIRAAAAEQAAAREAAAJRAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAADRAAACUQAAAFEAAAERAAABUQAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAACEQAAAJEAAAJRAAADEQAAAtEAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAZEAAAERAAACEQAAAVEAAAHRAAACQ== + tiles: UQAAAAAAUQAAAAAEUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAACUQAAAAAAUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAAHUQAAAAAAUQAAAAAJUQAAAAAGUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAHUQAAAAAAUQAAAAAAUQAAAAALUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAABUQAAAAALUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAACUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAFUQAAAAAAUQAAAAAAUQAAAAAMUQAAAAAIUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJUQAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAGUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKUQAAAAACUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAADUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAA + version: 6 1,1: ind: 1,1 - tiles: RAAAA0QAAAFEAAAJRAAABUQAAAdEAAAJRAAABkQAAAlEAAAHRAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAVEAAAMRAAABkQAAAJEAAAKRAAAAUQAAAdEAAALRAAAAUQAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAALRAAAA0QAAAI8AAAARAAABEQAAAFEAAADRAAADEQAAAhEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAABkQAAAJEAAALPAAAAEQAAABEAAABRAAACEQAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAk8AAAAPAAAADwAAABEAAAMRAAAB0QAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAERAAADEQAAAtEAAACRAAAB0QAAAREAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAADEQAAAZEAAACRAAAAkQAAAxEAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAlEAAAARAAAB0QAAAhEAAALRAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAHRAAACEQAAAZEAAALRAAAAkQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAABEQAAAdEAAAFRAAAAEQAAABEAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAxEAAAARAAAA0QAAAdEAAAHRAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAALRAAAAEQAAAlEAAAHRAAAC0QAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAB0QAAAVEAAAHRAAABEQAAAhEAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAxEAAAKRAAABEQAAAdEAAACRAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAERAAAA0QAAAdEAAAJRAAAAEQAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAABEQAAAFEAAAERAAAA0QAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: UQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKUQAAAAAMUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAEUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAGUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAMUQAAAAAAUQAAAAAAUQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJUQAAAAAAUQAAAAABUQAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 1,0: ind: 1,0 - tiles: RAAADDwAAAA8AAAARAAAB0QAAAJEAAALRAAACUQAAAhEAAAHPAAAADwAAABEAAAIRAAAAEQAAABEAAAJRAAABkQAAAFEAAAMRAAAC0QAAAZEAAABRAAACUQAAAtEAAAFRAAAA0QAAAxEAAACRAAAB0QAAAhEAAABRAAAB0QAAANEAAAHRAAAB0QAAAZEAAAKRAAAA0QAAAdEAAAMRAAACUQAAAVEAAADRAAACEQAAAtEAAAFRAAABkQAAAxEAAAHRAAAAkQAAAhEAAAIRAAAAEQAAAJEAAAFRAAABkQAAAJEAAABRAAACkQAAAtEAAAKRAAABkQAAApEAAAJRAAAB0QAAAFEAAAGRAAAA0QAAAVEAAAKRAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAAEQAAAhEAAADRAAACUQAAApEAAADRAAACUQAAAZEAAALRAAACUQAAAVEAAAARAAAAkQAAAFEAAALRAAACkQAAAVEAAALRAAAC0QAAABEAAAERAAABkQAAAREAAAMRAAACkQAAABEAAADRAAABkQAAAREAAAFRAAAB0QAAAlEAAACRAAACUQAAAREAAAIRAAAB0QAAABEAAAARAAACUQAAAtEAAAGRAAAAUQAAAlEAAAARAAAC0QAAAFEAAADAAAAAAAAAABEAAAKRAAABkQAAABEAAACRAAAC0QAAAtEAAAARAAAA0QAAAxEAAAHRAAACEQAAAhEAAAARAAACgAAAAAAAAAARAAADEQAAAVEAAAARAAAB0QAAAREAAAARAAADEQAAAhEAAALRAAAC0QAAApEAAAHRAAADEQAAAYAAAAAAAAAAEQAAAREAAALRAAAA0QAAABEAAAJRAAABUQAAANEAAAGRAAADEQAAAxEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAADRAAADEQAAAJEAAALRAAACEQAAAxEAAACRAAACEQAAAtEAAAHRAAACgAAAAAAAAAAAAAAAAAAAAAAAAAARAAACUQAAAREAAAGRAAAAUQAAAZEAAAJRAAAA0QAAAxEAAACRAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAxEAAAKRAAAAkQAAAtEAAAJRAAAC0QAAApEAAABRAAACEQAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAIRAAACEQAAAxEAAAARAAAAEQAAANEAAAHRAAAC0QAAAREAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAkQAAAREAAAMPAAAAEQAAApEAAAFRAAAAkQAAANEAAAIRAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: UQAAAAAASQAAAAAASQAAAAAAUQAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAALUQAAAAALUQAAAAAAUQAAAAAMUQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAMUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAACUQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAUQAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAMUQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAACUQAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAFUQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAACOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAHAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAKUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAEUQAAAAAHUQAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAEUQAAAAAJUQAAAAAAUQAAAAAHUQAAAAAAUQAAAAACUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAACUQAAAAAAUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAKUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAHUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAABUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 1,-2: ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAREAAACRAAAB0QAAApEAAAMRAAAAkQAAApEAAAFRAAAAkQAAAREAAAERAAABUQAAApEAAAJRAAABgAAAABEAAAKRAAACEQAAAZEAAADRAAAATwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAABEAAADRAAAC0QAAABEAAAARAAAB0QAAABEAAACRAAACEQAAAFEAAACRAAAC0QAAAdEAAAJRAAACkQAAAtEAAAJRAAAAUQAAANEAAAARAAAA0QAAAlEAAAARAAABUQAAAhEAAAERAAAC0QAAANEAAACRAAAA0QAAAxEAAADRAAAC0QAAAJEAAAIRAAAAUQAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARAAAC0QAAAxEAAAAXwAAAE8AAAAXAAAAFwAAAhcAAAJfAAAAXwAAAF8AAAAXAAACFwAAARcAAAJPAAAAXwAAAEQAAAVEAAACRAAACF8AAABPAAAAFwAAAhcAAAEXAAADFwAAAxcAAAIXAAADFwAAARcAAAAXAAACTwAAAF8AAABEAAAKRAAAAkQAAApfAAAATwAAABcAAAIXAAACFwAAAF8AAABfAAAAXwAAABcAAAIXAAABFwAAAU8AAABfAAAARAAACEQAAAFEAAAJRAAAAhcAAAMXAAADFwAAAxcAAAI7AAAAOwAAADsAAAAXAAADFwAAABcAAAEXAAADXwAAAEQAAAdEAAAMRAAACw== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAAUQAAAAABUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAABUQAAAAAAUQAAAAAAAAAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAMUQAAAAAAUQAAAAALUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAACUQAAAAAMUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAXwAAAAAAGgAAAAACGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAABXwAAAAAAcAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJcAAAAAAAXwAAAAAAGgAAAAADGgAAAAACGgAAAAADGgAAAAACGgAAAAACGgAAAAADGgAAAAABGgAAAAABGgAAAAABXwAAAAAAcAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAXwAAAAAAGgAAAAAAGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAACXwAAAAAAcAAAAAAAUQAAAAALUQAAAAAAUQAAAAAAUQAAAAAEGgAAAAACGgAAAAACGgAAAAABGgAAAAABRwAAAAAARwAAAAAARwAAAAAAGgAAAAABGgAAAAADGgAAAAACGgAAAAAAcAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAD + version: 6 -2,0: ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAtEAAAARAAACkQAAAhEAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAJRAAAAEQAAAFEAAAERAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAMRAAAB0QAAAFEAAAFRAAABEQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAABkQAAAVEAAAGRAAABjwAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAdEAAAFRAAACEQAAAE8AAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAALRAAABjwAAAA8AAAAPAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAACEQAAANEAAALRAAABUQAAABEAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAB0QAAApEAAAMRAAAAkQAAAREAAAARAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAC0QAAAdEAAAGRAAACUQAAAFEAAAERAAABkQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAKRAAAC0QAAABEAAAIRAAABUQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAGRAAADEQAAAtEAAAGRAAABEQAAAREAAAERAAACA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAHUQAAAAAAUQAAAAABSQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAASQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAESQAAAAAASQAAAAAASQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAALUQAAAAAAUQAAAAALUQAAAAABUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAACUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAALUQAAAAAAUQAAAAAAUQAAAAABUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAA + version: 6 -2,1: ind: -2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAIRAAACkQAAAhEAAAGRAAABkQAAAxEAAAGRAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAB0QAAAZEAAAFRAAADEQAAAlEAAALRAAABUQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAJRAAACUQAAAZEAAALRAAAB0QAAAhEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAACUQAAANEAAAIPAAAAEQAAAwSAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAUQAAAFEAAADRAAACzwAAABEAAAGEgAAABIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAAJEAAALRAAACEQAAABEAAAFRAAACxIAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAVEAAAJRAAAC0QAAAxEAAAGRAAABkQAAAcSAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAFRAAACUQAAAJEAAAARAAABEQAAANEAAAMEgAAABIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAUQAAAZEAAAJRAAAAUQAAAZEAAALRAAABRIAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAHRAAADEQAAAFEAAACRAAACEQAAApEAAAHRAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAAREAAAIRAAAAUQAAAFEAAAKRAAAAUQAAAkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAC0QAAAhEAAABRAAACUQAAAdEAAAIRAAAAUQAAANEAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAhEAAAJRAAACkQAAAtEAAAERAAAA0QAAAlEAAADRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAVEAAAFRAAACUQAAAlEAAADRAAAB0QAAANEAAAKRAAAA0QAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAALRAAACEQAAAZEAAAJRAAABUQAAAVEAAAIRAAACkQAAAREAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAADEQAAAVEAAAERAAAA0QAAAlEAAADRAAABkQAAApEAAAFAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAKEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAHUQAAAAAKUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAGUQAAAAAJUQAAAAALUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAALUQAAAAAIUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAAUQAAAAAGEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAEUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAEUQAAAAAAUQAAAAAMUQAAAAACUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAFUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAA + version: 6 -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,0: ind: 2,0 - tiles: PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: SQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,-1: ind: 2,-1 - tiles: PAAAAEQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAABEAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAARAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAEQAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: SQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAAUQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAAUQAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,-2: ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAtEAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAADRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAACEQAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAApEAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAALRAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAEQAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAIUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -2,2: ind: -2,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAA0QAAAVEAAADRAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,2: ind: 0,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAxEAAAJRAAAA0QAAANEAAAIRAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAEUQAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 1,2: ind: 1,2 - tiles: RAAAC0QAAApEAAAHRAAAC0QAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: UQAAAAAAUQAAAAAFUQAAAAACUQAAAAAJUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -3,0: ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 type: MapGrid - type: Broadphase - - angularDamping: 0.05 + - bodyStatus: InAir + angularDamping: 0.05 linearDamping: 0.05 fixedRotation: False bodyType: Dynamic @@ -122,379 +147,384 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 318: 27,-15 + 311: 27,-15 - node: color: '#FFFFFFFF' id: Arrows decals: - 316: 18,-19 - 317: 26,-19 + 309: 18,-19 + 310: 26,-19 + - node: + color: '#FFFFFFFF' + id: Basalt1 + decals: + 369: 26.834131,4.97881 - node: color: '#FFFFFFFF' id: Bot decals: - 302: 21,-16 - 303: 22,-15 - 304: 23,-16 - 309: 22,-17 - 310: 17,-19 - 311: 27,-19 + 295: 21,-16 + 296: 22,-15 + 297: 23,-16 + 302: 22,-17 + 303: 17,-19 + 304: 27,-19 - node: color: '#FFFFFFFF' id: BotLeft decals: - 201: 5,-11 - 202: 4,-11 - 307: 23,-15 - 308: 21,-17 - 312: 27,-18 - 313: 17,-20 + 194: 5,-11 + 195: 4,-11 + 300: 23,-15 + 301: 21,-17 + 305: 27,-18 + 306: 17,-20 - node: color: '#FFFFFFFF' id: BotRight decals: - 305: 23,-17 - 306: 21,-15 - 314: 27,-20 - 315: 17,-18 + 298: 23,-17 + 299: 21,-15 + 307: 27,-20 + 308: 17,-18 - node: color: '#FFFFFFFF' id: Box decals: - 213: 12,-22 + 206: 12,-22 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 333: 2,-1 - 334: 1,-1 - 335: 0,-1 + 326: 2,-1 + 327: 1,-1 + 328: 0,-1 - node: color: '#52B4E996' id: BrickTileSteelBox decals: - 245: -3,-15 - 246: -2,-17 - 247: 1,-17 - 248: 1,-13 - 249: -2,-13 + 238: -3,-15 + 239: -2,-17 + 240: 1,-17 + 241: 1,-13 + 242: -2,-13 - node: color: '#DE3A3A96' id: BrickTileSteelCornerNe decals: - 150: 15,-12 - 156: 10,-11 - 193: 5,-11 - 339: 10,-7 - 346: 15,-7 + 143: 15,-12 + 149: 10,-11 + 186: 5,-11 + 332: 10,-7 + 339: 15,-7 - node: color: '#DE3A3A96' id: BrickTileSteelCornerNw decals: - 157: 9,-11 - 194: 3,-11 - 347: 12,-7 + 150: 9,-11 + 187: 3,-11 + 340: 12,-7 - node: color: '#DE3A3A96' id: BrickTileSteelCornerSe decals: - 148: 15,-15 - 195: 5,-13 - 266: 27,-17 - 271: 26,-20 - 336: 10,-9 - 349: 15,-9 + 141: 15,-15 + 188: 5,-13 + 259: 27,-17 + 264: 26,-20 + 329: 10,-9 + 342: 15,-9 - node: color: '#DE3A3A96' id: BrickTileSteelCornerSw decals: - 134: 14,-15 - 145: 9,-13 - 196: 3,-13 - 263: 17,-17 - 270: 18,-20 - 342: 5,-9 - 348: 12,-9 + 127: 14,-15 + 138: 9,-13 + 189: 3,-13 + 256: 17,-17 + 263: 18,-20 + 335: 5,-9 + 341: 12,-9 - node: color: '#DE3A3A96' id: BrickTileSteelEndS decals: - 132: 10,-15 - 133: 12,-15 + 125: 10,-15 + 126: 12,-15 - node: color: '#DE3A3A96' id: BrickTileSteelInnerNe decals: - 155: 10,-12 - 257: -3,-17 + 148: 10,-12 + 250: -3,-17 - node: color: '#DE3A3A96' id: BrickTileSteelInnerSe decals: - 146: 10,-13 - 147: 12,-13 - 256: -3,-13 - 267: 26,-17 - 296: 20,-14 + 139: 10,-13 + 140: 12,-13 + 249: -3,-13 + 260: 26,-17 + 289: 20,-14 - node: color: '#DE3A3A96' id: BrickTileSteelInnerSw decals: - 140: 10,-13 - 141: 12,-13 - 142: 14,-13 - 268: 18,-17 - 292: 24,-14 + 133: 10,-13 + 134: 12,-13 + 135: 14,-13 + 261: 18,-17 + 285: 24,-14 - node: color: '#DE3A3A96' id: BrickTileSteelLineE decals: - 135: 12,-14 - 136: 10,-14 - 149: 15,-13 - 198: 5,-12 - 254: -3,-16 - 255: -3,-14 - 264: 26,-19 - 265: 26,-18 - 272: 20,-17 - 273: 20,-16 - 274: 20,-15 - 297: 20,-19 - 319: 27,-16 - 320: 27,-15 + 128: 12,-14 + 129: 10,-14 + 142: 15,-13 + 191: 5,-12 + 247: -3,-16 + 248: -3,-14 + 257: 26,-19 + 258: 26,-18 + 265: 20,-17 + 266: 20,-16 + 267: 20,-15 + 290: 20,-19 + 312: 27,-16 + 313: 27,-15 - node: color: '#DE3A3A96' id: BrickTileSteelLineN decals: - 151: 14,-12 - 152: 13,-12 - 153: 12,-12 - 154: 11,-12 - 199: 4,-11 - 250: 0,-17 - 251: -1,-17 - 281: 26,-14 - 282: 25,-14 - 283: 23,-14 - 284: 22,-14 - 285: 21,-14 - 286: 20,-14 - 287: 18,-14 - 288: 19,-14 - 291: 24,-14 - 340: 9,-7 - 341: 8,-7 - 352: 13,-7 + 144: 14,-12 + 145: 13,-12 + 146: 12,-12 + 147: 11,-12 + 192: 4,-11 + 243: 0,-17 + 244: -1,-17 + 274: 26,-14 + 275: 25,-14 + 276: 23,-14 + 277: 22,-14 + 278: 21,-14 + 279: 20,-14 + 280: 18,-14 + 281: 19,-14 + 284: 24,-14 + 333: 9,-7 + 334: 8,-7 + 345: 13,-7 - node: color: '#DE3A3A96' id: BrickTileSteelLineS decals: - 143: 13,-13 - 144: 11,-13 - 197: 4,-13 - 252: 0,-13 - 253: -1,-13 - 279: 25,-20 - 280: 19,-20 - 293: 23,-14 - 294: 22,-14 - 295: 21,-14 - 337: 8,-9 - 338: 7,-9 - 350: 14,-9 - 351: 13,-9 + 136: 13,-13 + 137: 11,-13 + 190: 4,-13 + 245: 0,-13 + 246: -1,-13 + 272: 25,-20 + 273: 19,-20 + 286: 23,-14 + 287: 22,-14 + 288: 21,-14 + 330: 8,-9 + 331: 7,-9 + 343: 14,-9 + 344: 13,-9 - node: color: '#DE3A3A96' id: BrickTileSteelLineW decals: - 137: 14,-14 - 138: 12,-14 - 139: 10,-14 - 158: 9,-12 - 200: 3,-12 - 260: 18,-18 - 261: 17,-16 - 262: 17,-15 - 269: 18,-19 - 275: 24,-19 - 276: 24,-17 - 277: 24,-16 - 278: 24,-15 - 343: 5,-8 - 366: 5,-7 + 130: 14,-14 + 131: 12,-14 + 132: 10,-14 + 151: 9,-12 + 193: 3,-12 + 253: 18,-18 + 254: 17,-16 + 255: 17,-15 + 262: 18,-19 + 268: 24,-19 + 269: 24,-17 + 270: 24,-16 + 271: 24,-15 + 336: 5,-8 + 359: 5,-7 - node: color: '#9FED5896' id: BrickTileWhiteCornerNe decals: - 166: 7,-11 + 159: 7,-11 - node: color: '#9FED5896' id: BrickTileWhiteCornerNw decals: - 167: 6,-11 - 185: 3,-14 + 160: 6,-11 + 178: 3,-14 - node: color: '#9FED5896' id: BrickTileWhiteCornerSe decals: - 178: 7,-18 + 171: 7,-18 - node: color: '#9FED5896' id: BrickTileWhiteCornerSw decals: - 181: 3,-18 + 174: 3,-18 - node: color: '#9FED5896' id: BrickTileWhiteInnerNw decals: - 169: 6,-14 + 162: 6,-14 - node: color: '#9FED5896' id: BrickTileWhiteLineE decals: - 172: 7,-12 - 173: 7,-13 - 174: 7,-14 - 175: 7,-15 - 176: 7,-16 - 177: 7,-17 + 165: 7,-12 + 166: 7,-13 + 167: 7,-14 + 168: 7,-15 + 169: 7,-16 + 170: 7,-17 - node: color: '#9FED5896' id: BrickTileWhiteLineN decals: - 170: 5,-14 - 171: 4,-14 + 163: 5,-14 + 164: 4,-14 - node: color: '#9FED5896' id: BrickTileWhiteLineS decals: - 179: 6,-18 - 180: 5,-18 - 182: 4,-18 + 172: 6,-18 + 173: 5,-18 + 175: 4,-18 - node: color: '#9FED5896' id: BrickTileWhiteLineW decals: - 168: 6,-13 - 183: 3,-17 - 184: 3,-16 + 161: 6,-13 + 176: 3,-17 + 177: 3,-16 - node: color: '#A4610647' id: CheckerNWSE decals: - 203: -13,6 - 204: -14,6 - 205: -15,6 - 206: -15,7 - 207: -14,7 - 208: -13,7 - 209: -14,8 - 210: -15,8 + 196: -13,6 + 197: -14,6 + 198: -15,6 + 199: -15,7 + 200: -14,7 + 201: -13,7 + 202: -14,8 + 203: -15,8 - node: color: '#D381C996' id: CheckerNWSE decals: - 214: 10,-19 - 215: 11,-19 - 216: 12,-19 - 217: 13,-19 - 218: 14,-19 - 219: 14,-18 - 220: 14,-17 - 221: 13,-17 - 222: 13,-18 - 223: 12,-18 - 224: 12,-17 - 225: 11,-17 - 226: 11,-18 - 227: 10,-18 - 228: 10,-17 + 207: 10,-19 + 208: 11,-19 + 209: 12,-19 + 210: 13,-19 + 211: 14,-19 + 212: 14,-18 + 213: 14,-17 + 214: 13,-17 + 215: 13,-18 + 216: 12,-18 + 217: 12,-17 + 218: 11,-17 + 219: 11,-18 + 220: 10,-18 + 221: 10,-17 - node: color: '#FFFFFFFF' id: Delivery decals: - 211: -16,8 - 212: -16,9 - 258: 7,-18 - 259: 6,-18 + 204: -16,8 + 205: -16,9 + 251: 7,-18 + 252: 6,-18 - node: color: '#DE3A3A96' id: DeliveryGreyscale decals: - 290: 16,-14 + 283: 16,-14 - node: color: '#9FED5896' id: FullTileOverlayGreyscale decals: - 188: 5,-17 - 189: 5,-16 - 190: 5,-15 - 191: 6,-16 - 192: 4,-16 + 181: 5,-17 + 182: 5,-16 + 183: 5,-15 + 184: 6,-16 + 185: 4,-16 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale decals: - 239: 1,-14 - 240: 0,-14 - 241: -1,-14 + 232: 1,-14 + 233: 0,-14 + 234: -1,-14 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale decals: - 331: 11,-2 + 324: 11,-2 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 decals: - 236: 1,-16 - 237: 0,-16 - 238: -1,-16 + 229: 1,-16 + 230: 0,-16 + 231: -1,-16 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale180 decals: - 332: 11,0 + 325: 11,0 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 decals: - 242: -2,-15 + 235: -2,-15 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 decals: - 330: 12,-1 + 323: 12,-1 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale90 decals: - 329: 10,-1 + 322: 10,-1 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale decals: - 321: 9,0 - 322: 10,0 + 314: 9,0 + 315: 10,0 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale180 decals: - 325: 13,-2 - 326: 12,-2 + 318: 13,-2 + 319: 12,-2 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale270 decals: - 327: 9,-2 - 328: 10,-2 + 320: 9,-2 + 321: 10,-2 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale90 decals: - 323: 13,0 - 324: 12,0 + 316: 13,0 + 317: 12,0 - node: color: '#FFFFFFFF' id: Rock06 @@ -504,17 +534,17 @@ entities: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 244: -2,-14 + 237: -2,-14 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 243: -2,-16 + 236: -2,-16 - node: color: '#FFFFFFFF' id: WarnBox decals: - 131: -5,-3 + 124: -5,-3 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -552,93 +582,93 @@ entities: color: '#DE3A3A96' id: WarnCornerGreyscaleNW decals: - 289: 17,-14 + 282: 17,-14 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 299: 20,-20 + 292: 20,-20 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 233: 10,-19 - 298: 24,-20 + 226: 10,-19 + 291: 24,-20 - node: color: '#FFFFFFFF' id: WarnEndE decals: - 161: 1,-9 + 154: 1,-9 - node: color: '#FFFFFFFF' id: WarnEndN decals: - 163: 7,-2 + 156: 7,-2 - node: color: '#FFFFFFFF' id: WarnEndS decals: 123: -6,21 - 162: 7,-4 + 155: 7,-4 - node: color: '#FFFFFFFF' id: WarnEndW decals: - 160: 0,-9 + 153: 0,-9 - node: color: '#DE3A3A96' id: WarnFullGreyscale decals: - 359: 16,-8 - 360: 11,-8 - 361: 9,-10 - 362: 6,-10 + 352: 16,-8 + 353: 11,-8 + 354: 9,-10 + 355: 6,-10 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 165: 7,-3 - 301: 20,-18 + 158: 7,-3 + 294: 20,-18 - node: color: '#DE3A3A96' id: WarnLineGreyscaleE decals: - 159: 15,-14 - 356: 10,-8 - 357: 15,-8 + 152: 15,-14 + 349: 10,-8 + 350: 15,-8 - node: color: '#DE3A3A96' id: WarnLineGreyscaleN decals: - 358: 14,-7 - 363: 7,-7 - 364: 6,-7 - 365: 5,-7 + 351: 14,-7 + 356: 7,-7 + 357: 6,-7 + 358: 5,-7 - node: color: '#DE3A3A96' id: WarnLineGreyscaleS decals: - 353: 9,-9 - 354: 6,-9 + 346: 9,-9 + 347: 6,-9 - node: color: '#DE3A3A96' id: WarnLineGreyscaleW decals: - 355: 12,-8 + 348: 12,-8 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleW decals: - 186: 3,-15 - 187: 6,-12 + 179: 3,-15 + 180: 6,-12 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 229: 14,-19 - 230: 13,-19 - 231: 12,-19 - 232: 11,-19 + 222: 14,-19 + 223: 13,-19 + 224: 12,-19 + 225: 11,-19 - node: color: '#FFFFFFFF' id: WarnLineS @@ -672,10 +702,10 @@ entities: 120: -9,-22 121: -9,-23 122: -9,-24 - 164: 7,-3 - 234: 10,-18 - 235: 10,-17 - 300: 24,-18 + 157: 7,-3 + 227: 10,-18 + 228: 10,-17 + 293: 24,-18 - node: color: '#FFFFFFFF' id: WarningLine @@ -715,24 +745,24 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 422: 5,-6 + 363: 5,-6 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 420: 0,-6 - 421: -1,-6 - 423: 4,-6 - 424: 3,-6 - 425: 2,-6 - 426: 1,-6 + 361: 0,-6 + 362: -1,-6 + 364: 4,-6 + 365: 3,-6 + 366: 2,-6 + 367: 1,-6 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 344: 5,-9 - 345: 5,-8 - 367: 5,-7 + 337: 5,-9 + 338: 5,-8 + 360: 5,-7 - node: color: '#FFFFFFFF' id: bushsnowa1 @@ -757,6 +787,11 @@ entities: decals: 72: 0.2452774,15.588417 74: -0.9488945,8.937782 + - node: + color: '#AB0000FF' + id: d + decals: + 374: 21.412256,2.9944348 - node: color: '#FFFFFFFF' id: grasssnowa1 @@ -766,6 +801,7 @@ entities: 47: -2.8426914,5.7681084 84: 16.072964,17.452217 85: -4.644718,19.141476 + 370: 26.896631,2.9944348 - node: color: '#FFFFFFFF' id: grasssnowa2 @@ -856,6 +892,42 @@ entities: 66: -1.9470882,14.409473 77: 6.122473,18.001226 80: 18.166714,4.631343 + - node: + color: '#AB0000FF' + id: i + decals: + 375: 21.677881,2.8381848 + - node: + color: '#AB0000FF' + id: k + decals: + 380: 23.427881,2.8069348 + - node: + color: '#AB0000FF' + id: n + decals: + 373: 20.943506,2.9006848 + 381: 22.959131,2.9631848 + - node: + color: '#AB0000FF' + id: r + decals: + 376: 22.099756,2.7913098 + - node: + color: '#AB0000FF' + id: s + decals: + 371: 20.224756,2.9788098 + - node: + color: '#AB0000FF' + id: shortline + decals: + 377: 22.552881,2.8381848 + - node: + color: '#AB0000FF' + id: y + decals: + 372: 20.568506,2.9319348 type: DecalGrid - version: 2 data: @@ -2010,9182 +2082,9070 @@ entities: - pos: 21.5,-4.5 parent: 104 type: Transform -- proto: BalloonSyn +- proto: AsteroidRock entities: - - uid: 1327 + - uid: 19 components: - - pos: 0.03361702,-6.368435 + - pos: 16.5,1.5 parent: 104 type: Transform -- proto: BaseComputer - entities: - - uid: 18 + - uid: 20 components: - - rot: 3.141592653589793 rad - pos: 0.5,-8.5 + - pos: -3.5,-10.5 parent: 104 type: Transform - - uid: 29 + - uid: 216 components: - - rot: 3.141592653589793 rad - pos: 1.5,-8.5 + - pos: -4.5,-9.5 parent: 104 type: Transform - - uid: 111 + - uid: 238 components: - - rot: -1.5707963267948966 rad - pos: 7.5,-1.5 + - pos: -4.5,-13.5 parent: 104 type: Transform - - uid: 2292 + - uid: 243 components: - - rot: -1.5707963267948966 rad - pos: 7.5,-2.5 + - pos: -4.5,-6.5 parent: 104 type: Transform - - uid: 2295 + - uid: 244 components: - - rot: -1.5707963267948966 rad - pos: 7.5,-3.5 + - pos: -4.5,-8.5 parent: 104 type: Transform -- proto: Beaker - entities: - - uid: 2031 + - uid: 246 components: - - pos: 3.419857,-11.512698 + - pos: -3.5,-8.5 parent: 104 type: Transform - - uid: 2095 + - uid: 247 components: - - pos: 3.669857,-11.387698 + - pos: -4.5,-12.5 parent: 104 type: Transform -- proto: Bed - entities: - - uid: 957 + - uid: 248 components: - - pos: 15.5,-3.5 + - pos: -4.5,-7.5 parent: 104 type: Transform - - uid: 1548 + - uid: 249 components: - - pos: 15.5,-4.5 + - pos: -8.5,9.5 parent: 104 type: Transform -- proto: BedsheetMedical - entities: - - uid: 1872 + - uid: 250 components: - - pos: 1.5,-12.5 + - pos: 0.5,-10.5 parent: 104 type: Transform - - uid: 1877 + - uid: 251 components: - - pos: -1.5,-16.5 + - pos: 15.5,1.5 parent: 104 type: Transform - - uid: 1898 + - uid: 255 components: - - pos: 1.5,-16.5 + - pos: -3.5,-7.5 parent: 104 type: Transform - - uid: 1899 + - uid: 257 components: - - pos: -1.5,-12.5 + - pos: 15.5,0.5 parent: 104 type: Transform -- proto: BedsheetSyndie - entities: - - uid: 154 + - uid: 259 components: - - pos: 15.5,-3.5 + - pos: -4.5,-10.5 parent: 104 type: Transform - - uid: 289 + - uid: 263 components: - - pos: 15.5,-4.5 + - pos: -4.5,-11.5 parent: 104 type: Transform -- proto: BigBox - entities: - - uid: 2458 + - uid: 277 components: - - pos: 13.500806,-4.4874377 + - pos: -10.5,22.5 parent: 104 type: Transform -- proto: Bookshelf - entities: - - uid: 140 + - uid: 292 components: - - pos: -0.5,-0.5 + - pos: -9.5,21.5 parent: 104 type: Transform -- proto: BoozeDispenser - entities: - - uid: 230 + - uid: 294 components: - - rot: 3.141592653589793 rad - pos: 2.5,-8.5 + - pos: -10.5,21.5 parent: 104 type: Transform -- proto: BoxBeaker - entities: - - uid: 2114 + - uid: 295 components: - - pos: 3.622982,-12.387698 + - pos: -11.5,22.5 parent: 104 type: Transform -- proto: BoxFolderBlack - entities: - - uid: 1022 + - uid: 296 components: - - pos: -13.494709,9.54891 + - pos: -20.5,9.5 parent: 104 type: Transform -- proto: BoxMagazinePistolCaselessRiflePractice - entities: - - uid: 1635 + - uid: 358 components: - - pos: 5.4970627,10.597828 + - pos: -22.5,21.5 parent: 104 type: Transform -- proto: BoxMagazinePistolSubMachineGunPractice - entities: - - uid: 1634 + - uid: 359 components: - - pos: 5.388983,13.953581 + - pos: -22.5,15.5 parent: 104 type: Transform -- proto: BoxPillCanister - entities: - - uid: 1844 + - uid: 360 components: - - pos: 3.451107,-12.293948 + - pos: -22.5,16.5 parent: 104 type: Transform -- proto: BoxShotgunPractice - entities: - - uid: 1633 + - uid: 361 components: - - pos: 5.4972115,14.562988 + - pos: -21.5,17.5 parent: 104 type: Transform - - unspawnedCount: 12 - type: BallisticAmmoProvider -- proto: Bucket - entities: - - uid: 153 + - uid: 362 components: - - pos: 10.809023,-4.25956 + - pos: -21.5,16.5 parent: 104 type: Transform -- proto: CableApcExtension - entities: - - uid: 13 + - uid: 363 components: - - pos: -10.5,-5.5 + - pos: -21.5,15.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 100 + - uid: 364 components: - - pos: 13.5,0.5 + - pos: -21.5,14.5 parent: 104 type: Transform - - uid: 143 + - uid: 365 components: - - pos: 12.5,0.5 + - pos: -22.5,14.5 parent: 104 type: Transform - - uid: 220 + - uid: 366 components: - - pos: 11.5,0.5 + - pos: -21.5,13.5 parent: 104 type: Transform - - uid: 235 + - uid: 367 components: - - pos: 1.5,-13.5 + - pos: -21.5,20.5 parent: 104 type: Transform - - uid: 245 + - uid: 368 components: - - pos: 12.5,-18.5 + - pos: -21.5,21.5 parent: 104 type: Transform - - uid: 279 + - uid: 369 components: - - pos: 11.5,-0.5 + - pos: -20.5,21.5 parent: 104 type: Transform - - uid: 297 + - uid: 370 components: - - pos: 3.5,-14.5 + - pos: -19.5,21.5 parent: 104 type: Transform - - uid: 390 + - uid: 371 components: - - pos: -10.5,-7.5 + - pos: -20.5,22.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 397 + - uid: 372 components: - - pos: -10.5,0.5 + - pos: -18.5,21.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 411 + - uid: 373 components: - - pos: -10.5,-8.5 + - pos: -20.5,8.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 429 + - uid: 374 components: - - pos: -10.5,-0.5 + - pos: -22.5,22.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 430 + - uid: 375 components: - - pos: -10.5,1.5 + - pos: -21.5,22.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 432 + - uid: 376 components: - - pos: -27.5,1.5 + - pos: -23.5,22.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 434 + - uid: 377 components: - - pos: -31.5,1.5 + - pos: -20.5,15.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 435 + - uid: 401 components: - - pos: -10.5,-4.5 + - pos: -20.5,20.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 436 + - uid: 402 components: - - pos: -10.5,-6.5 + - pos: -20.5,19.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 437 - components: - - pos: -10.5,-9.5 - parent: 104 - type: Transform - - enabled: True - type: AmbientSound - - uid: 438 - components: - - pos: -25.5,1.5 - parent: 104 - type: Transform - - enabled: True - type: AmbientSound - - uid: 439 - components: - - pos: -10.5,-3.5 - parent: 104 - type: Transform - - enabled: True - type: AmbientSound - - uid: 442 - components: - - pos: -33.5,1.5 - parent: 104 - type: Transform - - enabled: True - type: AmbientSound - - uid: 444 - components: - - pos: -10.5,1.5 - parent: 104 - type: Transform - - enabled: True - type: AmbientSound - - uid: 449 - components: - - pos: -11.5,1.5 - parent: 104 - type: Transform - - enabled: True - type: AmbientSound - - uid: 450 - components: - - pos: -12.5,1.5 - parent: 104 - type: Transform - - enabled: True - type: AmbientSound - - uid: 451 - components: - - pos: -13.5,1.5 - parent: 104 - type: Transform - - enabled: True - type: AmbientSound - - uid: 452 - components: - - pos: -14.5,1.5 - parent: 104 - type: Transform - - enabled: True - type: AmbientSound - - uid: 453 - components: - - pos: -32.5,1.5 - parent: 104 - type: Transform - - enabled: True - type: AmbientSound - - uid: 454 - components: - - pos: -15.5,1.5 - parent: 104 - type: Transform - - enabled: True - type: AmbientSound - - uid: 464 - components: - - pos: -16.5,1.5 - parent: 104 - type: Transform - - enabled: True - type: AmbientSound - - uid: 465 - components: - - pos: -17.5,1.5 - parent: 104 - type: Transform - - enabled: True - type: AmbientSound - - uid: 466 - components: - - pos: -18.5,1.5 - parent: 104 - type: Transform - - enabled: True - type: AmbientSound - - uid: 467 - components: - - pos: -19.5,1.5 - parent: 104 - type: Transform - - enabled: True - type: AmbientSound - - uid: 501 - components: - - pos: -34.5,1.5 - parent: 104 - type: Transform - - enabled: True - type: AmbientSound - - uid: 503 - components: - - pos: -20.5,1.5 - parent: 104 - type: Transform - - enabled: True - type: AmbientSound - - uid: 508 - components: - - pos: -21.5,1.5 - parent: 104 - type: Transform - - enabled: True - type: AmbientSound - - uid: 510 - components: - - pos: -22.5,1.5 - parent: 104 - type: Transform - - enabled: True - type: AmbientSound - - uid: 514 - components: - - pos: -23.5,1.5 - parent: 104 - type: Transform - - enabled: True - type: AmbientSound - - uid: 515 - components: - - pos: -24.5,1.5 - parent: 104 - type: Transform - - enabled: True - type: AmbientSound - - uid: 619 - components: - - pos: -10.5,-12.5 - parent: 104 - type: Transform - - enabled: True - type: AmbientSound - - uid: 624 - components: - - pos: -10.5,-10.5 - parent: 104 - type: Transform - - enabled: True - type: AmbientSound - - uid: 625 - components: - - pos: -10.5,-11.5 - parent: 104 - type: Transform - - enabled: True - type: AmbientSound - - uid: 627 - components: - - pos: -10.5,-15.5 - parent: 104 - type: Transform - - enabled: True - type: AmbientSound - - uid: 628 - components: - - pos: -10.5,-16.5 - parent: 104 - type: Transform - - enabled: True - type: AmbientSound - - uid: 630 + - uid: 403 components: - - pos: -10.5,-17.5 + - pos: -20.5,18.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 635 + - uid: 404 components: - - pos: -10.5,-20.5 + - pos: -20.5,17.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 636 + - uid: 405 components: - - pos: -11.5,-20.5 + - pos: -20.5,16.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 638 + - uid: 406 components: - - pos: -12.5,-20.5 + - pos: -20.5,14.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 639 + - uid: 407 components: - - pos: -13.5,-20.5 + - pos: -24.5,23.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 644 + - uid: 408 components: - - pos: -30.5,-20.5 + - pos: -24.5,22.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 645 + - uid: 409 components: - - pos: -31.5,-20.5 + - pos: -20.5,10.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 646 + - uid: 410 components: - - pos: -32.5,-20.5 + - pos: -9.5,22.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 653 + - uid: 415 components: - - pos: -15.5,-20.5 + - pos: -18.5,23.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 654 + - uid: 417 components: - - pos: -16.5,-20.5 + - pos: -16.5,6.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 655 + - uid: 419 components: - - pos: -17.5,-20.5 + - pos: -7.5,21.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 656 + - uid: 420 components: - - pos: -18.5,-20.5 + - pos: -8.5,21.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 657 + - uid: 421 components: - - pos: -19.5,-20.5 + - pos: -10.5,23.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 658 + - uid: 422 components: - - pos: -20.5,-20.5 + - pos: -11.5,23.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 659 + - uid: 423 components: - - pos: -21.5,-20.5 + - pos: -19.5,22.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 660 + - uid: 425 components: - - pos: -22.5,-20.5 + - pos: -18.5,22.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 661 + - uid: 426 components: - - pos: -23.5,-20.5 + - pos: -7.5,12.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 662 + - uid: 455 components: - - pos: -24.5,-20.5 + - pos: 1.5,-19.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 665 + - uid: 469 components: - - pos: -25.5,-20.5 + - pos: -8.5,10.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 666 + - uid: 471 components: - - pos: -26.5,-20.5 + - pos: -9.5,10.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 667 + - uid: 473 components: - - pos: -27.5,-20.5 + - pos: -8.5,11.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 668 + - uid: 475 components: - - pos: -28.5,-20.5 + - pos: -9.5,11.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 669 + - uid: 477 components: - - pos: -29.5,-20.5 + - pos: 16.5,0.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 707 + - uid: 478 components: - - pos: -33.5,-20.5 + - pos: -6.5,12.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 713 + - uid: 479 components: - - pos: -34.5,-20.5 + - pos: -2.5,-18.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 814 + - uid: 480 components: - - pos: -6.5,-3.5 + - pos: -2.5,-19.5 parent: 104 type: Transform - - uid: 832 + - uid: 483 components: - - pos: -7.5,-3.5 + - pos: -2.5,-10.5 parent: 104 type: Transform - - uid: 845 + - uid: 485 components: - - pos: -10.5,-1.5 + - pos: -2.5,-6.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 866 + - uid: 488 components: - - pos: -10.5,-2.5 + - pos: -2.5,-7.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 867 + - uid: 489 components: - - pos: -5.5,-3.5 + - pos: -2.5,-8.5 parent: 104 type: Transform - - uid: 868 + - uid: 492 components: - - pos: -10.5,-3.5 + - pos: -3.5,-20.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 870 + - uid: 502 components: - - pos: -9.5,-3.5 + - pos: -3.5,-18.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 877 + - uid: 504 components: - - pos: -8.5,-3.5 + - pos: -2.5,-9.5 parent: 104 type: Transform - - uid: 884 + - uid: 505 components: - - pos: -4.5,-3.5 + - pos: -3.5,-19.5 parent: 104 type: Transform - - uid: 920 + - uid: 506 components: - - pos: -10.5,-13.5 + - pos: 17.5,-1.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 926 + - uid: 509 components: - - pos: -30.5,1.5 + - pos: -4.5,-19.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 927 + - uid: 511 components: - - pos: -26.5,1.5 + - pos: -4.5,-18.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 931 + - uid: 512 components: - - pos: 12.5,-19.5 + - pos: -9.5,12.5 parent: 104 type: Transform - - uid: 933 + - uid: 513 components: - - pos: -10.5,-19.5 + - pos: -3.5,-9.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 934 + - uid: 521 components: - - pos: -10.5,-14.5 + - pos: -4.5,-14.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 941 + - uid: 522 components: - - pos: -14.5,-20.5 + - pos: -1.5,19.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 960 + - uid: 524 components: - - pos: 12.5,-17.5 + - pos: -0.5,19.5 parent: 104 type: Transform - - uid: 961 + - uid: 525 components: - - pos: 11.5,-16.5 + - pos: 9.5,20.5 parent: 104 type: Transform - - uid: 962 + - uid: 529 components: - - pos: 6.5,-14.5 + - pos: 10.5,19.5 parent: 104 type: Transform - - uid: 967 + - uid: 531 components: - - pos: 9.5,-16.5 + - pos: 11.5,19.5 parent: 104 type: Transform - - uid: 968 + - uid: 532 components: - - pos: 7.5,-16.5 + - pos: 12.5,19.5 parent: 104 type: Transform - - uid: 969 + - uid: 533 components: - - pos: -10.5,-18.5 + - pos: 16.5,19.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 970 + - uid: 534 components: - - pos: -29.5,1.5 + - pos: 17.5,19.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 971 + - uid: 535 components: - - pos: -28.5,1.5 + - pos: 18.5,19.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 973 + - uid: 536 components: - - pos: 5.5,-17.5 + - pos: 18.5,11.5 parent: 104 type: Transform - - uid: 979 + - uid: 537 components: - - pos: 1.5,-16.5 + - pos: 18.5,12.5 parent: 104 type: Transform - - uid: 981 + - uid: 538 components: - - pos: 5.5,-14.5 + - pos: 18.5,15.5 parent: 104 type: Transform - - uid: 982 + - uid: 539 components: - - pos: 12.5,-16.5 + - pos: 18.5,18.5 parent: 104 type: Transform - - uid: 983 + - uid: 543 components: - - pos: 5.5,-16.5 + - pos: 26.5,9.5 parent: 104 type: Transform - - uid: 1115 + - uid: 546 components: - - pos: 4.5,-14.5 + - pos: 28.5,3.5 parent: 104 type: Transform - - uid: 1116 + - uid: 547 components: - - pos: 1.5,-12.5 + - pos: 29.5,3.5 parent: 104 type: Transform - - uid: 1117 + - uid: 548 components: - - pos: 6.5,-16.5 + - pos: 30.5,3.5 parent: 104 type: Transform - - uid: 1122 + - uid: 549 components: - - pos: 1.5,-14.5 + - pos: 22.5,-22.5 parent: 104 type: Transform - - uid: 1152 + - uid: 550 components: - - pos: 12.5,-20.5 + - pos: 31.5,-20.5 parent: 104 type: Transform - - uid: 1154 + - uid: 551 components: - - pos: 3.5,-13.5 + - pos: 31.5,-19.5 parent: 104 type: Transform - - uid: 1182 + - uid: 552 components: - - pos: 5.5,-15.5 + - pos: 31.5,-18.5 parent: 104 type: Transform - - uid: 1183 + - uid: 553 components: - - pos: 7.5,-14.5 + - pos: 31.5,-17.5 parent: 104 type: Transform - - uid: 1191 + - uid: 554 components: - - pos: 3.5,-12.5 + - pos: 31.5,-16.5 parent: 104 type: Transform - - uid: 1194 + - uid: 555 components: - - pos: 2.5,-14.5 + - pos: 31.5,-15.5 parent: 104 type: Transform - - uid: 1195 + - uid: 556 components: - - pos: 8.5,-16.5 + - pos: 31.5,-14.5 parent: 104 type: Transform - - uid: 1200 + - uid: 557 components: - - pos: 1.5,-15.5 + - pos: 31.5,-13.5 parent: 104 type: Transform - - uid: 1204 + - uid: 558 components: - - pos: 10.5,-16.5 + - pos: 31.5,-12.5 parent: 104 type: Transform - - uid: 1232 + - uid: 559 components: - - pos: -10.5,6.5 + - pos: 31.5,-7.5 parent: 104 type: Transform - - uid: 1233 + - uid: 560 components: - - pos: -10.5,5.5 + - pos: 31.5,-6.5 parent: 104 type: Transform - - uid: 1234 + - uid: 561 components: - - pos: -10.5,4.5 + - pos: 31.5,-5.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 1235 + - uid: 562 components: - - pos: -10.5,3.5 + - pos: 31.5,-4.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 1236 + - uid: 563 components: - - pos: -10.5,2.5 + - pos: 31.5,-3.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 1237 + - uid: 564 components: - - pos: -11.5,6.5 + - pos: 31.5,-2.5 parent: 104 type: Transform - - uid: 1238 + - uid: 565 components: - - pos: -12.5,6.5 + - pos: 31.5,-1.5 parent: 104 type: Transform - - uid: 1239 + - uid: 566 components: - - pos: -13.5,6.5 + - pos: 31.5,-0.5 parent: 104 type: Transform - - uid: 1240 + - uid: 567 components: - - pos: -14.5,6.5 + - pos: 31.5,0.5 parent: 104 type: Transform - - uid: 1275 + - uid: 568 components: - - pos: -6.5,-2.5 + - pos: 31.5,1.5 parent: 104 type: Transform - - uid: 1281 + - uid: 569 components: - - pos: -6.5,-1.5 + - pos: 17.5,-22.5 parent: 104 type: Transform - - uid: 1282 + - uid: 570 components: - - pos: -6.5,-0.5 + - pos: 18.5,-22.5 parent: 104 type: Transform - - uid: 1283 + - uid: 571 components: - - pos: -6.5,0.5 + - pos: 19.5,-22.5 parent: 104 type: Transform - - uid: 1292 + - uid: 572 components: - - pos: 3.5,1.5 + - pos: 20.5,-22.5 parent: 104 type: Transform - - uid: 1337 + - uid: 573 components: - - pos: -6.5,-4.5 + - pos: 21.5,-22.5 parent: 104 type: Transform - - uid: 1338 + - uid: 574 components: - - pos: -6.5,-5.5 + - pos: -5.5,-22.5 parent: 104 type: Transform - - uid: 1339 + - uid: 575 components: - - pos: -6.5,-6.5 + - pos: 23.5,-22.5 parent: 104 type: Transform - - uid: 1340 + - uid: 576 components: - - pos: -6.5,-7.5 + - pos: 24.5,-22.5 parent: 104 type: Transform - - uid: 1341 + - uid: 577 components: - - pos: -6.5,-8.5 + - pos: 25.5,-22.5 parent: 104 type: Transform - - uid: 1342 + - uid: 578 components: - - pos: -6.5,-9.5 + - pos: 26.5,-22.5 parent: 104 type: Transform - - uid: 1343 + - uid: 579 components: - - pos: -6.5,-10.5 + - pos: 27.5,-22.5 parent: 104 type: Transform - - uid: 1344 + - uid: 580 components: - - pos: -6.5,-11.5 + - pos: 28.5,-22.5 parent: 104 type: Transform - - uid: 1345 + - uid: 581 components: - - pos: -6.5,-12.5 + - pos: -4.5,-20.5 parent: 104 type: Transform - - uid: 1346 + - uid: 582 components: - - pos: -6.5,-13.5 + - pos: -4.5,-15.5 parent: 104 type: Transform - - uid: 1347 + - uid: 586 components: - - pos: -6.5,-14.5 + - pos: 4.5,-22.5 parent: 104 type: Transform - - uid: 1348 + - uid: 587 components: - - pos: -6.5,-15.5 + - pos: 5.5,-22.5 parent: 104 type: Transform - - uid: 1349 + - uid: 588 components: - - pos: -6.5,-16.5 + - pos: 6.5,-22.5 parent: 104 type: Transform - - uid: 1439 + - uid: 589 components: - - pos: 20.5,-12.5 + - pos: 7.5,-22.5 parent: 104 type: Transform - - uid: 1449 + - uid: 590 components: - - pos: 16.5,-13.5 + - pos: 8.5,-22.5 parent: 104 type: Transform - - uid: 1450 + - uid: 595 components: - - pos: 15.5,-13.5 + - pos: -5.5,-21.5 parent: 104 type: Transform - - uid: 1451 + - uid: 596 components: - - pos: 15.5,-12.5 + - pos: -5.5,-20.5 parent: 104 type: Transform - - uid: 1452 + - uid: 597 components: - - pos: 15.5,-11.5 + - pos: -5.5,-19.5 parent: 104 type: Transform - - uid: 1453 + - uid: 598 components: - - pos: 15.5,-10.5 + - pos: -5.5,-18.5 parent: 104 type: Transform - - uid: 1454 + - uid: 599 components: - - pos: 14.5,-10.5 + - pos: -5.5,-17.5 parent: 104 type: Transform - - uid: 1455 + - uid: 600 components: - - pos: 13.5,-10.5 + - pos: -5.5,-16.5 parent: 104 type: Transform - - uid: 1456 + - uid: 601 components: - - pos: 12.5,-10.5 + - pos: -5.5,-15.5 parent: 104 type: Transform - - uid: 1457 + - uid: 602 components: - - pos: 11.5,-10.5 + - pos: -5.5,-14.5 parent: 104 type: Transform - - uid: 1458 + - uid: 603 components: - - pos: 15.5,-14.5 + - pos: -5.5,-13.5 parent: 104 type: Transform - - uid: 1459 + - uid: 604 components: - - pos: 14.5,-14.5 + - pos: -5.5,-12.5 parent: 104 type: Transform - - uid: 1460 + - uid: 605 components: - - pos: 13.5,-14.5 + - pos: -5.5,-11.5 parent: 104 type: Transform - - uid: 1461 + - uid: 606 components: - - pos: 12.5,-14.5 + - pos: -5.5,-10.5 parent: 104 type: Transform - - uid: 1474 + - uid: 607 components: - - pos: 7.5,-5.5 + - pos: -5.5,-9.5 parent: 104 type: Transform - - uid: 1475 + - uid: 608 components: - - pos: 6.5,-1.5 + - pos: -5.5,-8.5 parent: 104 type: Transform - - uid: 1476 + - uid: 609 components: - - pos: 3.5,0.5 + - pos: -5.5,-7.5 parent: 104 type: Transform - - uid: 1488 + - uid: 610 components: - - pos: 6.5,-5.5 + - pos: -14.5,16.5 parent: 104 type: Transform - - uid: 1489 + - uid: 614 components: - - pos: 8.5,-5.5 + - pos: -16.5,15.5 parent: 104 type: Transform - - uid: 1490 + - uid: 615 components: - - pos: 6.5,-4.5 + - pos: -10.5,9.5 parent: 104 type: Transform - - uid: 1491 + - uid: 618 components: - - pos: 6.5,-3.5 + - pos: -8.5,12.5 parent: 104 type: Transform - - uid: 1492 + - uid: 621 components: - - pos: 6.5,-2.5 + - pos: -9.5,9.5 parent: 104 type: Transform - - uid: 1493 + - uid: 622 components: - - pos: 6.5,-0.5 + - pos: -10.5,10.5 parent: 104 type: Transform - - uid: 1494 + - uid: 632 components: - - pos: 5.5,-0.5 + - pos: -10.5,12.5 parent: 104 type: Transform - - uid: 1495 + - uid: 637 components: - - pos: 4.5,-0.5 + - pos: -10.5,11.5 parent: 104 type: Transform - - uid: 1496 + - uid: 640 components: - - pos: 4.5,0.5 + - pos: -16.5,5.5 parent: 104 type: Transform - - uid: 1497 + - uid: 648 components: - - pos: 2.5,0.5 + - pos: -11.5,13.5 parent: 104 type: Transform - - uid: 1498 + - uid: 670 components: - - pos: 2.5,-0.5 + - pos: -18.5,10.5 parent: 104 type: Transform - - uid: 1499 + - uid: 672 components: - - pos: 1.5,-0.5 + - pos: -16.5,16.5 parent: 104 type: Transform - - uid: 1500 + - uid: 673 components: - - pos: 0.5,-0.5 + - pos: -11.5,12.5 parent: 104 type: Transform - - uid: 1501 + - uid: 674 components: - - pos: 0.5,-1.5 + - pos: -19.5,15.5 parent: 104 type: Transform - - uid: 1502 + - uid: 676 components: - - pos: -0.5,-1.5 + - pos: -19.5,16.5 parent: 104 type: Transform - - uid: 1503 + - uid: 677 components: - - pos: -0.5,-1.5 + - pos: -18.5,11.5 parent: 104 type: Transform - - uid: 1504 + - uid: 678 components: - - pos: -0.5,-2.5 + - pos: -14.5,11.5 parent: 104 type: Transform - - uid: 1505 + - uid: 679 components: - - pos: -0.5,-3.5 + - pos: -14.5,17.5 parent: 104 type: Transform - - uid: 1506 + - uid: 680 components: - - pos: -0.5,-4.5 + - pos: -14.5,18.5 parent: 104 type: Transform - - uid: 1507 + - uid: 681 components: - - pos: -0.5,-5.5 + - pos: -15.5,14.5 parent: 104 type: Transform - - uid: 1508 + - uid: 682 components: - - pos: -0.5,-6.5 + - pos: -24.5,25.5 parent: 104 type: Transform - - uid: 1509 + - uid: 684 components: - - pos: -0.5,-7.5 + - pos: -17.5,13.5 parent: 104 type: Transform - - uid: 1510 + - uid: 685 components: - - pos: 0.5,-7.5 + - pos: -15.5,16.5 parent: 104 type: Transform - - uid: 1511 + - uid: 686 components: - - pos: 1.5,-7.5 + - pos: -12.5,12.5 parent: 104 type: Transform - - uid: 1512 + - uid: 687 components: - - pos: 2.5,-7.5 + - pos: -12.5,11.5 parent: 104 type: Transform - - uid: 1513 + - uid: 688 components: - - pos: 4.5,-7.5 + - pos: -11.5,14.5 parent: 104 type: Transform - - uid: 1514 + - uid: 689 components: - - pos: 3.5,-7.5 + - pos: -15.5,15.5 parent: 104 type: Transform - - uid: 1515 + - uid: 690 components: - - pos: 5.5,-7.5 + - pos: -14.5,14.5 parent: 104 type: Transform - - uid: 1516 + - uid: 691 components: - - pos: 5.5,-8.5 + - pos: -19.5,14.5 parent: 104 type: Transform - - uid: 1517 + - uid: 692 components: - - pos: 6.5,-8.5 + - pos: -13.5,16.5 parent: 104 type: Transform - - uid: 1518 + - uid: 693 components: - - pos: 7.5,-8.5 + - pos: -17.5,15.5 parent: 104 type: Transform - - uid: 1519 + - uid: 694 components: - - pos: 8.5,-8.5 + - pos: -11.5,9.5 parent: 104 type: Transform - - uid: 1520 + - uid: 695 components: - - pos: 9.5,-8.5 + - pos: -20.5,23.5 parent: 104 type: Transform - - uid: 1521 + - uid: 699 components: - - pos: 10.5,-8.5 + - pos: -18.5,8.5 parent: 104 type: Transform - - uid: 1522 + - uid: 700 components: - - pos: 10.5,-7.5 + - pos: -18.5,9.5 parent: 104 type: Transform - - uid: 1523 + - uid: 701 components: - - pos: 11.5,-7.5 + - pos: -13.5,12.5 parent: 104 type: Transform - - uid: 1524 + - uid: 702 components: - - pos: 12.5,-7.5 + - pos: -13.5,17.5 parent: 104 type: Transform - - uid: 1525 + - uid: 703 components: - - pos: 13.5,-7.5 + - pos: -13.5,18.5 parent: 104 type: Transform - - uid: 1526 + - uid: 704 components: - - pos: 14.5,-7.5 + - pos: -15.5,18.5 parent: 104 type: Transform - - uid: 1527 + - uid: 705 components: - - pos: 14.5,-7.5 + - pos: -17.5,14.5 parent: 104 type: Transform - - uid: 1528 + - uid: 706 components: - - pos: 15.5,-7.5 + - pos: -11.5,11.5 parent: 104 type: Transform - - uid: 1529 + - uid: 708 components: - - pos: 14.5,-6.5 + - pos: -17.5,11.5 parent: 104 type: Transform - - uid: 1530 + - uid: 709 components: - - pos: 14.5,-5.5 + - pos: -17.5,16.5 parent: 104 type: Transform - - uid: 1531 + - uid: 711 components: - - pos: 14.5,-4.5 + - pos: -17.5,10.5 parent: 104 type: Transform - - uid: 1538 + - uid: 712 components: - - pos: 7.5,-0.5 + - pos: -15.5,17.5 parent: 104 type: Transform - - uid: 1539 + - uid: 714 components: - - pos: 8.5,-0.5 + - pos: -11.5,17.5 parent: 104 type: Transform - - uid: 1540 + - uid: 716 components: - - pos: 9.5,-0.5 + - pos: -13.5,13.5 parent: 104 type: Transform - - uid: 1541 + - uid: 717 components: - - pos: 8.5,-0.5 + - pos: -13.5,14.5 parent: 104 type: Transform - - uid: 1543 + - uid: 718 components: - - pos: 10.5,-0.5 + - pos: -18.5,14.5 parent: 104 type: Transform - - uid: 1575 + - uid: 719 components: - - pos: 21.5,-5.5 + - pos: -18.5,15.5 parent: 104 type: Transform - - uid: 1576 + - uid: 720 components: - - pos: 20.5,-5.5 + - pos: -18.5,16.5 parent: 104 type: Transform - - uid: 1577 + - uid: 721 components: - - pos: 19.5,-5.5 + - pos: -17.5,8.5 parent: 104 type: Transform - - uid: 1578 + - uid: 722 components: - - pos: 19.5,-6.5 + - pos: -16.5,13.5 parent: 104 type: Transform - - uid: 1579 + - uid: 723 components: - - pos: 19.5,-7.5 + - pos: -16.5,14.5 parent: 104 type: Transform - - uid: 1580 + - uid: 724 components: - - pos: 19.5,-9.5 + - pos: -12.5,17.5 parent: 104 type: Transform - - uid: 1581 + - uid: 725 components: - - pos: 19.5,-9.5 + - pos: -12.5,18.5 parent: 104 type: Transform - - uid: 1582 + - uid: 726 components: - - pos: 19.5,-8.5 + - pos: -14.5,12.5 parent: 104 type: Transform - - uid: 1583 + - uid: 728 components: - - pos: 20.5,-9.5 + - pos: -14.5,13.5 parent: 104 type: Transform - - uid: 1584 + - uid: 729 components: - - pos: 21.5,-9.5 + - pos: -18.5,17.5 parent: 104 type: Transform - - uid: 1585 + - uid: 733 components: - - pos: 21.5,-4.5 + - pos: -18.5,18.5 parent: 104 type: Transform - - uid: 1586 + - uid: 734 components: - - pos: 18.5,-7.5 + - pos: -18.5,19.5 parent: 104 type: Transform - - uid: 1587 + - uid: 735 components: - - pos: 17.5,-7.5 + - pos: -12.5,13.5 parent: 104 type: Transform - - uid: 1588 + - uid: 740 components: - - pos: 21.5,-8.5 + - pos: -12.5,15.5 parent: 104 type: Transform - - uid: 1589 + - uid: 741 components: - - pos: 21.5,-7.5 + - pos: -19.5,17.5 parent: 104 type: Transform - - uid: 1590 + - uid: 745 components: - - pos: 21.5,-6.5 + - pos: -19.5,18.5 parent: 104 type: Transform - - uid: 1591 + - uid: 746 components: - - pos: 10.5,-1.5 + - pos: -19.5,19.5 parent: 104 type: Transform - - uid: 1592 + - uid: 747 components: - - pos: 10.5,-3.5 + - pos: -16.5,17.5 parent: 104 type: Transform - - uid: 1593 + - uid: 752 components: - - pos: 10.5,-2.5 + - pos: -16.5,18.5 parent: 104 type: Transform - - uid: 1595 + - uid: 753 components: - - pos: -1.5,-3.5 + - pos: -15.5,11.5 parent: 104 type: Transform - - uid: 1596 + - uid: 755 components: - - pos: -2.5,-3.5 + - pos: -15.5,12.5 parent: 104 type: Transform - - uid: 1597 + - uid: 756 components: - - pos: -3.5,-3.5 + - pos: -12.5,14.5 parent: 104 type: Transform - - uid: 2301 + - uid: 757 components: - - pos: 12.5,-21.5 + - pos: -16.5,12.5 parent: 104 type: Transform - - uid: 2302 + - uid: 758 components: - - pos: 11.5,-21.5 + - pos: -13.5,15.5 parent: 104 type: Transform - - uid: 2303 + - uid: 759 components: - - pos: 13.5,-21.5 + - pos: -19.5,9.5 parent: 104 type: Transform - - uid: 2304 + - uid: 762 components: - - pos: 0.5,-14.5 + - pos: -17.5,9.5 parent: 104 type: Transform - - uid: 2305 + - uid: 763 components: - - pos: -0.5,-14.5 + - pos: -17.5,17.5 parent: 104 type: Transform - - uid: 2306 + - uid: 764 components: - - pos: -1.5,-14.5 + - pos: -17.5,18.5 parent: 104 type: Transform - - uid: 2307 + - uid: 765 components: - - pos: -2.5,-14.5 + - pos: -16.5,11.5 parent: 104 type: Transform - - uid: 2374 + - uid: 768 components: - - pos: 20.5,-12.5 + - pos: -19.5,8.5 parent: 104 type: Transform - - uid: 2375 + - uid: 771 components: - - pos: 20.5,-13.5 + - pos: -6.5,13.5 parent: 104 type: Transform - - uid: 2376 + - uid: 774 components: - - pos: 20.5,-14.5 + - pos: -10.5,18.5 parent: 104 type: Transform - - uid: 2377 + - uid: 775 components: - - pos: 20.5,-15.5 + - pos: -10.5,17.5 parent: 104 type: Transform - - uid: 2378 + - uid: 776 components: - - pos: 20.5,-16.5 + - pos: -10.5,16.5 parent: 104 type: Transform - - uid: 2379 + - uid: 777 components: - - pos: 20.5,-17.5 + - pos: -10.5,15.5 parent: 104 type: Transform - - uid: 2381 + - uid: 778 components: - - pos: 20.5,-18.5 + - pos: -10.5,14.5 parent: 104 type: Transform - - uid: 2382 + - uid: 779 components: - - pos: 20.5,-19.5 + - pos: -10.5,13.5 parent: 104 type: Transform - - uid: 2383 + - uid: 780 components: - - pos: 19.5,-17.5 + - pos: -9.5,19.5 parent: 104 type: Transform - - uid: 2384 + - uid: 781 components: - - pos: 18.5,-17.5 + - pos: -9.5,18.5 parent: 104 type: Transform - - uid: 2385 + - uid: 782 components: - - pos: 21.5,-17.5 + - pos: -9.5,17.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 2386 + - uid: 783 components: - - pos: 22.5,-17.5 + - pos: -9.5,16.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 2387 + - uid: 784 components: - - pos: 23.5,-17.5 + - pos: -9.5,15.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 2388 + - uid: 785 components: - - pos: 24.5,-17.5 + - pos: -9.5,14.5 parent: 104 type: Transform - - uid: 2389 + - uid: 786 components: - - pos: 25.5,-17.5 + - pos: -9.5,13.5 parent: 104 type: Transform - - uid: 2390 + - uid: 787 components: - - pos: 26.5,-17.5 + - pos: -8.5,19.5 parent: 104 type: Transform - - uid: 2391 + - uid: 788 components: - - pos: 25.5,-18.5 + - pos: -8.5,18.5 parent: 104 type: Transform - - uid: 2392 + - uid: 789 components: - - pos: 25.5,-19.5 + - pos: -8.5,17.5 parent: 104 type: Transform - - uid: 2393 + - uid: 790 components: - - pos: 25.5,-16.5 + - pos: -8.5,15.5 parent: 104 type: Transform - - uid: 2394 + - uid: 791 components: - - pos: 25.5,-15.5 + - pos: -8.5,14.5 parent: 104 type: Transform - - uid: 2395 + - uid: 792 components: - - pos: 25.5,-14.5 + - pos: -8.5,13.5 parent: 104 type: Transform - - uid: 2396 + - uid: 793 components: - - pos: 25.5,-13.5 + - pos: -7.5,19.5 parent: 104 type: Transform - - uid: 2439 + - uid: 794 components: - - pos: 13.5,-9.5 + - pos: -7.5,18.5 parent: 104 type: Transform - - uid: 2440 + - uid: 795 components: - - pos: 5.5,-6.5 + - pos: -7.5,15.5 parent: 104 type: Transform - - uid: 2441 + - uid: 796 components: - - pos: 5.5,-5.5 + - pos: -7.5,14.5 parent: 104 type: Transform - - uid: 3378 + - uid: 797 components: - - pos: 7.5,-9.5 + - pos: -7.5,13.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 3379 + - uid: 798 components: - - pos: 7.5,-10.5 + - pos: -15.5,13.5 parent: 104 type: Transform - - uid: 3380 + - uid: 801 components: - - pos: 6.5,-10.5 + - pos: -12.5,16.5 parent: 104 type: Transform - - uid: 3381 + - uid: 802 components: - - pos: 5.5,-10.5 + - pos: -14.5,15.5 parent: 104 type: Transform - - uid: 3382 + - uid: 803 components: - - pos: 4.5,-10.5 + - pos: -19.5,23.5 parent: 104 type: Transform - - uid: 3383 + - uid: 804 components: - - pos: 3.5,-10.5 + - pos: -24.5,24.5 parent: 104 type: Transform - - uid: 3384 + - uid: 805 components: - - pos: 3.5,-11.5 + - pos: -19.5,10.5 parent: 104 type: Transform -- proto: CableApcStack - entities: - - uid: 211 + - uid: 806 components: - - pos: 11.428643,-10.548745 + - pos: -17.5,12.5 parent: 104 type: Transform - - uid: 1324 + - uid: 807 components: - - pos: 4.439247,-17.36072 + - pos: -11.5,16.5 parent: 104 type: Transform -- proto: CableHV - entities: - - uid: 2334 + - uid: 808 components: - - pos: 17.5,-19.5 + - pos: -11.5,15.5 parent: 104 type: Transform - - uid: 2335 + - uid: 809 components: - - pos: 17.5,-18.5 + - pos: -13.5,11.5 parent: 104 type: Transform - - uid: 2336 + - uid: 810 components: - - pos: 17.5,-17.5 + - pos: -19.5,20.5 parent: 104 type: Transform - - uid: 2337 + - uid: 1020 components: - - pos: 18.5,-19.5 + - pos: -18.5,20.5 parent: 104 type: Transform - - uid: 2338 + - uid: 1021 components: - - pos: 19.5,-19.5 + - pos: -10.5,20.5 parent: 104 type: Transform - - uid: 2339 + - uid: 1027 components: - - pos: 20.5,-19.5 + - pos: -9.5,20.5 parent: 104 type: Transform - - uid: 2340 + - uid: 1028 components: - - pos: 21.5,-19.5 + - pos: -8.5,20.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 2341 + - uid: 1029 components: - - pos: 22.5,-19.5 + - pos: -7.5,20.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 2342 + - uid: 1030 components: - - pos: 23.5,-19.5 + - pos: -2.5,20.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 2343 + - uid: 1031 components: - - pos: 24.5,-19.5 + - pos: -1.5,20.5 parent: 104 type: Transform - - uid: 2344 + - uid: 1032 components: - - pos: 25.5,-19.5 + - pos: -0.5,20.5 parent: 104 type: Transform - - uid: 2345 + - uid: 1033 components: - - pos: 26.5,-19.5 + - pos: 9.5,22.5 parent: 104 type: Transform - - uid: 2346 + - uid: 1036 components: - - pos: 27.5,-19.5 + - pos: 10.5,20.5 parent: 104 type: Transform - - uid: 2347 + - uid: 1041 components: - - pos: 27.5,-18.5 + - pos: 11.5,20.5 parent: 104 type: Transform - - uid: 2348 + - uid: 1042 components: - - pos: 27.5,-17.5 + - pos: 12.5,20.5 parent: 104 type: Transform - - uid: 2352 + - uid: 1043 components: - - pos: 21.5,-18.5 + - pos: 13.5,20.5 parent: 104 type: Transform - - uid: 2353 + - uid: 1044 components: - - pos: 22.5,-18.5 + - pos: 16.5,20.5 parent: 104 type: Transform - - uid: 2354 + - uid: 1045 components: - - pos: 23.5,-18.5 + - pos: 17.5,20.5 parent: 104 type: Transform - - uid: 2355 + - uid: 1046 components: - - pos: 22.5,-17.5 + - pos: 18.5,20.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 2356 + - uid: 1047 components: - - pos: 23.5,-17.5 + - pos: 19.5,20.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 2357 + - uid: 1048 components: - - pos: 24.5,-17.5 + - pos: 19.5,19.5 parent: 104 type: Transform - - uid: 2358 + - uid: 1049 components: - - pos: 24.5,-16.5 + - pos: 19.5,18.5 parent: 104 type: Transform - - uid: 2359 + - uid: 1050 components: - - pos: 24.5,-15.5 + - pos: 19.5,16.5 parent: 104 type: Transform - - uid: 2360 + - uid: 1051 components: - - pos: 24.5,-14.5 + - pos: 19.5,15.5 parent: 104 type: Transform - - uid: 2361 + - uid: 1052 components: - - pos: 21.5,-17.5 + - pos: 19.5,14.5 parent: 104 type: Transform - - enabled: True - type: AmbientSound - - uid: 2362 + - uid: 1053 components: - - pos: 25.5,-14.5 + - pos: 19.5,12.5 parent: 104 type: Transform - - uid: 2363 + - uid: 1054 components: - - pos: 26.5,-14.5 + - pos: 19.5,11.5 parent: 104 type: Transform - - uid: 2364 + - uid: 1055 components: - - pos: 27.5,-14.5 + - pos: 19.5,10.5 parent: 104 type: Transform - - uid: 2365 + - uid: 1056 components: - - pos: 27.5,-13.5 + - pos: -11.5,20.5 parent: 104 type: Transform -- proto: CableHVStack - entities: - - uid: 209 + - uid: 1057 components: - - pos: 11.334893,-10.282843 + - pos: 15.5,3.5 parent: 104 type: Transform -- proto: CableMV - entities: - - uid: 240 + - uid: 1058 components: - - pos: 17.5,-13.5 + - pos: 22.5,4.5 parent: 104 type: Transform - - uid: 1438 + - uid: 1059 components: - - pos: 20.5,-12.5 + - pos: 23.5,4.5 parent: 104 type: Transform - - uid: 1462 + - uid: 1060 components: - - pos: 16.5,-13.5 + - pos: 24.5,4.5 parent: 104 type: Transform - - uid: 1463 + - uid: 1064 components: - - pos: 15.5,-13.5 + - pos: 28.5,4.5 parent: 104 type: Transform - - uid: 1464 + - uid: 1065 components: - - pos: 15.5,-12.5 + - pos: 29.5,4.5 parent: 104 type: Transform - - uid: 1465 + - uid: 1066 components: - - pos: 15.5,-11.5 + - pos: 30.5,4.5 parent: 104 type: Transform - - uid: 1466 + - uid: 1067 components: - - pos: 15.5,-10.5 + - pos: 32.5,0.5 parent: 104 type: Transform - - uid: 1467 + - uid: 1068 components: - - pos: 14.5,-10.5 + - pos: 32.5,-0.5 parent: 104 type: Transform - - uid: 1468 + - uid: 1069 components: - - pos: 13.5,-10.5 + - pos: 32.5,-3.5 parent: 104 type: Transform - - uid: 1469 + - uid: 1070 components: - - pos: 13.5,-9.5 + - pos: 32.5,-12.5 parent: 104 type: Transform - - uid: 1478 + - uid: 1071 components: - - pos: 12.5,-10.5 + - pos: 32.5,-13.5 parent: 104 type: Transform - - uid: 1479 + - uid: 1072 components: - - pos: 11.5,-10.5 + - pos: 32.5,-14.5 parent: 104 type: Transform - - uid: 1480 + - uid: 1073 components: - - pos: 10.5,-10.5 + - pos: 32.5,-15.5 parent: 104 type: Transform - - uid: 1481 + - uid: 1074 components: - - pos: 9.5,-10.5 + - pos: 32.5,-16.5 parent: 104 type: Transform - - uid: 1482 + - uid: 1075 components: - - pos: 9.5,-9.5 + - pos: 32.5,-17.5 parent: 104 type: Transform - - uid: 1483 + - uid: 1076 components: - - pos: 9.5,-8.5 + - pos: 32.5,-18.5 parent: 104 type: Transform - - uid: 1484 + - uid: 1077 components: - - pos: 9.5,-7.5 + - pos: 32.5,-19.5 parent: 104 type: Transform - - uid: 1485 + - uid: 1078 components: - - pos: 9.5,-6.5 + - pos: 32.5,-20.5 parent: 104 type: Transform - - uid: 1486 + - uid: 1079 components: - - pos: 8.5,-6.5 + - pos: 32.5,-21.5 parent: 104 type: Transform - - uid: 1487 + - uid: 1083 components: - - pos: 8.5,-5.5 + - pos: -4.5,-16.5 parent: 104 type: Transform - - uid: 2322 + - uid: 1084 components: - - pos: 18.5,-13.5 + - pos: -4.5,-21.5 parent: 104 type: Transform - - uid: 2323 + - uid: 1085 components: - - pos: 19.5,-13.5 + - pos: 28.5,-23.5 parent: 104 type: Transform - - uid: 2324 + - uid: 1092 components: - - pos: 20.5,-13.5 + - pos: 27.5,-23.5 parent: 104 type: Transform - - uid: 2325 + - uid: 1093 components: - - pos: 20.5,-12.5 + - pos: 26.5,-23.5 parent: 104 type: Transform - - uid: 2367 + - uid: 1094 components: - - pos: 27.5,-13.5 + - pos: 25.5,-23.5 parent: 104 type: Transform - - uid: 2368 + - uid: 1095 components: - - pos: 26.5,-13.5 + - pos: 24.5,-23.5 parent: 104 type: Transform - - uid: 2369 + - uid: 1096 components: - - pos: 25.5,-13.5 + - pos: 23.5,-23.5 parent: 104 type: Transform - - uid: 2370 + - uid: 1097 components: - - pos: 24.5,-13.5 + - pos: 22.5,-23.5 parent: 104 type: Transform - - uid: 2371 + - uid: 1098 components: - - pos: 23.5,-13.5 + - pos: 21.5,-23.5 parent: 104 type: Transform - - uid: 2372 + - uid: 1099 components: - - pos: 22.5,-13.5 + - pos: 20.5,-23.5 parent: 104 type: Transform - - uid: 2373 + - uid: 1100 components: - - pos: 21.5,-13.5 + - pos: 19.5,-23.5 parent: 104 type: Transform -- proto: CableMVStack - entities: - - uid: 210 + - uid: 1101 components: - - pos: 11.381768,-10.407973 + - pos: 18.5,-23.5 parent: 104 type: Transform -- proto: CableTerminal - entities: - - uid: 2349 + - uid: 1105 components: - - rot: 3.141592653589793 rad - pos: 21.5,-19.5 + - pos: 8.5,-23.5 parent: 104 type: Transform - - uid: 2350 + - uid: 1106 components: - - rot: 3.141592653589793 rad - pos: 22.5,-19.5 + - pos: 7.5,-23.5 parent: 104 type: Transform - - uid: 2351 + - uid: 1107 components: - - rot: 3.141592653589793 rad - pos: 23.5,-19.5 + - pos: 6.5,-23.5 parent: 104 type: Transform -- proto: Carpet - entities: - - uid: 2459 + - uid: 1108 components: - - pos: 14.5,-4.5 + - pos: 5.5,-23.5 parent: 104 type: Transform - - uid: 2460 + - uid: 1109 components: - - pos: 14.5,-3.5 + - pos: -23.5,23.5 parent: 104 type: Transform -- proto: Catwalk - entities: - - uid: 256 + - uid: 1155 components: - - pos: -29.5,2.5 + - pos: -23.5,24.5 parent: 104 type: Transform - - uid: 264 + - uid: 1156 components: - - pos: -28.5,1.5 + - pos: -23.5,25.5 parent: 104 type: Transform - - uid: 278 + - uid: 1157 components: - - pos: -21.5,-23.5 + - pos: -22.5,32.5 parent: 104 type: Transform - - uid: 287 + - uid: 1158 components: - - pos: -20.5,-20.5 + - pos: -23.5,30.5 parent: 104 type: Transform - - uid: 381 + - uid: 1160 components: - - pos: -20.5,-21.5 + - pos: -23.5,31.5 parent: 104 type: Transform - - uid: 382 + - uid: 1161 components: - - pos: -20.5,-23.5 + - pos: -22.5,23.5 parent: 104 type: Transform - - uid: 383 + - uid: 1162 components: - - pos: -20.5,-22.5 + - pos: -22.5,24.5 parent: 104 type: Transform - - uid: 384 + - uid: 1163 components: - - pos: -19.5,-20.5 + - pos: -22.5,25.5 parent: 104 type: Transform - - uid: 385 + - uid: 1164 components: - - pos: -30.5,4.5 + - pos: -21.5,26.5 parent: 104 type: Transform - - uid: 386 + - uid: 1165 components: - - pos: -28.5,-20.5 + - pos: -22.5,30.5 parent: 104 type: Transform - - uid: 387 + - uid: 1166 components: - - pos: -34.5,1.5 + - pos: -21.5,30.5 parent: 104 type: Transform - - uid: 388 + - uid: 1167 components: - - pos: -29.5,3.5 + - pos: -24.5,31.5 parent: 104 type: Transform - - uid: 389 + - uid: 1168 components: - - pos: -14.5,-22.5 + - pos: -23.5,20.5 parent: 104 type: Transform - - uid: 391 + - uid: 1169 components: - - pos: -33.5,3.5 + - pos: -24.5,21.5 parent: 104 type: Transform - - uid: 392 + - uid: 1170 components: - - rot: 3.141592653589793 rad - pos: -34.5,-21.5 + - pos: -22.5,31.5 parent: 104 type: Transform - - uid: 393 + - uid: 1171 components: - - pos: -19.5,-22.5 + - pos: -25.5,30.5 parent: 104 type: Transform - - uid: 394 + - uid: 1172 components: - - pos: -32.5,4.5 + - pos: -25.5,31.5 parent: 104 type: Transform - - uid: 395 + - uid: 1173 components: - - pos: -24.5,-21.5 + - pos: -25.5,32.5 parent: 104 type: Transform - - uid: 396 + - uid: 1174 components: - - pos: -10.5,-16.5 + - pos: -23.5,21.5 parent: 104 type: Transform - - uid: 398 + - uid: 1175 components: - - pos: -9.5,-15.5 + - pos: -23.5,29.5 parent: 104 type: Transform - - uid: 399 + - uid: 1176 components: - - pos: -10.5,-15.5 + - pos: -22.5,20.5 parent: 104 type: Transform - - uid: 400 + - uid: 1177 components: - - pos: -9.5,-14.5 + - pos: -23.5,15.5 parent: 104 type: Transform - - uid: 413 + - uid: 1178 components: - - rot: 3.141592653589793 rad - pos: -24.5,3.5 + - pos: -23.5,13.5 parent: 104 type: Transform - - uid: 431 + - uid: 1179 components: - - pos: -9.5,-13.5 + - pos: -22.5,13.5 parent: 104 type: Transform - - uid: 440 + - uid: 1180 components: - - pos: -16.5,-21.5 + - pos: -11.5,10.5 parent: 104 type: Transform - - uid: 468 + - uid: 1224 components: - - pos: -9.5,-21.5 + - pos: -23.5,14.5 parent: 104 type: Transform - - uid: 470 + - uid: 1250 components: - - pos: -9.5,-20.5 + - pos: 1.5,-10.5 parent: 104 type: Transform - - uid: 499 + - uid: 1390 components: - - pos: -9.5,-19.5 + - pos: -0.5,-10.5 parent: 104 type: Transform - - uid: 500 + - uid: 1391 components: - - pos: -9.5,-18.5 + - pos: -23.5,28.5 parent: 104 type: Transform - - uid: 516 + - uid: 1392 components: - - pos: -9.5,-17.5 + - pos: -24.5,30.5 parent: 104 type: Transform - - uid: 517 + - uid: 1393 components: - - pos: -9.5,-16.5 + - pos: -23.5,32.5 parent: 104 type: Transform - - uid: 518 + - uid: 1394 components: - - pos: -10.5,-14.5 + - pos: -22.5,26.5 parent: 104 type: Transform - - uid: 519 + - uid: 1395 components: - - rot: 3.141592653589793 rad - pos: -31.5,-21.5 + - pos: -23.5,26.5 parent: 104 type: Transform - - uid: 520 + - uid: 1396 components: - - pos: -26.5,1.5 + - pos: -24.5,32.5 parent: 104 type: Transform - - uid: 584 + - uid: 1397 components: - - pos: -10.5,-13.5 + - pos: -23.5,27.5 parent: 104 type: Transform - - uid: 616 + - uid: 1398 components: - - pos: -31.5,3.5 + - pos: -22.5,28.5 parent: 104 type: Transform - - uid: 617 + - uid: 1399 components: - - pos: -14.5,-23.5 + - pos: -21.5,29.5 parent: 104 type: Transform - - uid: 626 + - uid: 1400 components: - - pos: -16.5,-22.5 + - pos: -22.5,29.5 parent: 104 type: Transform - - uid: 631 + - uid: 1401 components: - - pos: -9.5,-23.5 + - pos: -22.5,27.5 parent: 104 type: Transform - - uid: 633 + - uid: 1402 components: - - pos: -9.5,-22.5 + - pos: -21.5,27.5 parent: 104 type: Transform - - uid: 634 + - uid: 1403 components: - - pos: -16.5,-23.5 + - pos: -21.5,28.5 parent: 104 type: Transform - - uid: 641 + - uid: 1404 components: - - pos: -11.5,-22.5 + - pos: -21.5,25.5 parent: 104 type: Transform - - uid: 642 + - uid: 1405 components: - - pos: -11.5,-23.5 + - pos: -21.5,24.5 parent: 104 type: Transform - - uid: 643 + - uid: 1406 components: - - pos: -10.5,-23.5 + - pos: -21.5,23.5 parent: 104 type: Transform - - uid: 647 + - uid: 1407 components: - - pos: -13.5,-23.5 + - pos: 6.5,-24.5 parent: 104 type: Transform - - uid: 652 + - uid: 1408 components: - - pos: -15.5,-20.5 + - pos: 7.5,-24.5 parent: 104 type: Transform - - uid: 663 + - uid: 1415 components: - - pos: -12.5,-23.5 + - pos: 3.5,-21.5 parent: 104 type: Transform - - uid: 664 + - uid: 1416 components: - - pos: -11.5,-20.5 + - pos: 4.5,-21.5 parent: 104 type: Transform - - uid: 715 + - uid: 1417 components: - - pos: -10.5,-22.5 + - pos: 20.5,-24.5 parent: 104 type: Transform - - uid: 736 + - uid: 1418 components: - - pos: -10.5,-21.5 + - pos: 21.5,-24.5 parent: 104 type: Transform - - uid: 737 + - uid: 1419 components: - - pos: -10.5,-20.5 + - pos: 22.5,-24.5 parent: 104 type: Transform - - uid: 738 + - uid: 1420 components: - - pos: -14.5,-20.5 + - pos: 23.5,-24.5 parent: 104 type: Transform - - uid: 742 + - uid: 1421 components: - - pos: -10.5,-19.5 + - pos: 24.5,-24.5 parent: 104 type: Transform - - uid: 748 + - uid: 1422 components: - - pos: -10.5,-18.5 + - pos: 25.5,-24.5 parent: 104 type: Transform - - uid: 749 + - uid: 1423 components: - - pos: -10.5,-17.5 + - pos: 26.5,-24.5 parent: 104 type: Transform - - uid: 760 + - uid: 1424 components: - - pos: -14.5,-21.5 + - pos: 27.5,-24.5 parent: 104 type: Transform - - uid: 761 + - uid: 1425 components: - - rot: 3.141592653589793 rad - pos: -26.5,-21.5 + - pos: -4.5,-22.5 parent: 104 type: Transform - - uid: 769 + - uid: 1427 components: - - pos: -33.5,4.5 + - pos: -4.5,-17.5 parent: 104 type: Transform - - uid: 772 + - uid: 1433 components: - - rot: 3.141592653589793 rad - pos: -33.5,-21.5 + - pos: 5.5,-24.5 parent: 104 type: Transform - - uid: 799 + - uid: 1434 components: - - pos: -26.5,3.5 + - pos: 33.5,-21.5 parent: 104 type: Transform - - uid: 800 + - uid: 1435 components: - - pos: -34.5,4.5 + - pos: 33.5,-20.5 parent: 104 type: Transform - - uid: 812 + - uid: 1436 components: - - rot: 3.141592653589793 rad - pos: -32.5,-21.5 + - pos: 33.5,-19.5 parent: 104 type: Transform - - uid: 813 + - uid: 1437 components: - - pos: -29.5,4.5 + - pos: 33.5,-18.5 parent: 104 type: Transform - - uid: 815 + - uid: 1440 components: - - pos: -17.5,-23.5 + - pos: 33.5,-17.5 parent: 104 type: Transform - - uid: 817 + - uid: 1441 components: - - pos: -24.5,-22.5 + - pos: 33.5,-16.5 parent: 104 type: Transform - - uid: 818 + - uid: 1442 components: - - pos: -24.5,-23.5 + - pos: 33.5,-15.5 parent: 104 type: Transform - - uid: 820 + - uid: 1443 components: - - pos: -21.5,-21.5 + - pos: 33.5,-14.5 parent: 104 type: Transform - - uid: 821 + - uid: 1444 components: - - pos: -21.5,-22.5 + - pos: 33.5,-13.5 parent: 104 type: Transform - - uid: 822 + - uid: 1446 components: - - pos: -27.5,3.5 + - pos: 33.5,-12.5 parent: 104 type: Transform - - uid: 823 + - uid: 1447 components: - - pos: -26.5,4.5 + - pos: 30.5,5.5 parent: 104 type: Transform - - uid: 824 + - uid: 1448 components: - - pos: -25.5,4.5 + - pos: 29.5,5.5 parent: 104 type: Transform - - uid: 825 + - uid: 1472 components: - - pos: -25.5,2.5 + - pos: 28.5,5.5 parent: 104 type: Transform - - uid: 826 + - uid: 1542 components: - - rot: 3.141592653589793 rad - pos: -33.5,-23.5 + - pos: 24.5,5.5 parent: 104 type: Transform - - uid: 827 + - uid: 1550 components: - - pos: -27.5,4.5 + - pos: 23.5,5.5 parent: 104 type: Transform - - uid: 828 + - uid: 1552 components: - - pos: -27.5,2.5 + - pos: 22.5,5.5 parent: 104 type: Transform - - uid: 829 + - uid: 1553 components: - - pos: -26.5,2.5 + - pos: 21.5,5.5 parent: 104 type: Transform - - uid: 830 + - uid: 1557 components: - - pos: -25.5,3.5 + - pos: 19.5,19.5 parent: 104 type: Transform - - uid: 831 + - uid: 1559 components: - - pos: -26.5,-20.5 + - pos: 19.5,20.5 parent: 104 type: Transform - - uid: 833 + - uid: 1560 components: - - pos: -18.5,-21.5 + - pos: 19.5,21.5 parent: 104 type: Transform - - uid: 834 + - uid: 1562 components: - - pos: -27.5,-20.5 + - pos: -11.5,19.5 parent: 104 type: Transform - - uid: 836 + - uid: 1564 components: - - rot: 3.141592653589793 rad - pos: -29.5,-21.5 + - pos: -11.5,18.5 parent: 104 type: Transform - - uid: 837 + - uid: 1566 components: - - pos: -32.5,-20.5 + - pos: 20.5,9.5 parent: 104 type: Transform - - uid: 839 + - uid: 1567 components: - - pos: -32.5,3.5 + - pos: 20.5,10.5 parent: 104 type: Transform - - uid: 840 + - uid: 1568 components: - - pos: -27.5,1.5 + - pos: 20.5,11.5 parent: 104 type: Transform - - uid: 841 + - uid: 1569 components: - - rot: 3.141592653589793 rad - pos: -33.5,-22.5 + - pos: 20.5,12.5 parent: 104 type: Transform - - uid: 842 + - uid: 1594 components: - - pos: -17.5,-22.5 + - pos: 20.5,13.5 parent: 104 type: Transform - - uid: 843 + - uid: 1598 components: - - pos: -18.5,-23.5 + - pos: 20.5,14.5 parent: 104 type: Transform - - uid: 844 + - uid: 1599 components: - - rot: 3.141592653589793 rad - pos: -32.5,-22.5 + - pos: 20.5,15.5 parent: 104 type: Transform - - uid: 846 + - uid: 1600 components: - - pos: -18.5,-20.5 + - pos: 20.5,16.5 parent: 104 type: Transform - - uid: 847 + - uid: 1601 components: - - pos: -19.5,-21.5 + - pos: 20.5,17.5 parent: 104 type: Transform - - uid: 848 + - uid: 1602 components: - - rot: 3.141592653589793 rad - pos: -34.5,-20.5 + - pos: 20.5,18.5 parent: 104 type: Transform - - uid: 849 + - uid: 1603 components: - - pos: -18.5,-22.5 + - pos: 20.5,19.5 parent: 104 type: Transform - - uid: 850 + - uid: 1604 components: - - pos: -17.5,-21.5 + - pos: 20.5,20.5 parent: 104 type: Transform - - uid: 851 + - uid: 1605 components: - - pos: -16.5,-20.5 + - pos: 20.5,21.5 parent: 104 type: Transform - - uid: 852 + - uid: 1606 components: - - pos: -32.5,1.5 + - pos: -10.5,19.5 parent: 104 type: Transform - - uid: 853 + - uid: 1607 components: - - pos: -30.5,-20.5 + - pos: 19.5,11.5 parent: 104 type: Transform - - uid: 855 + - uid: 1608 components: - - rot: 3.141592653589793 rad - pos: -30.5,-21.5 + - pos: 19.5,12.5 parent: 104 type: Transform - - uid: 856 + - uid: 1609 components: - - pos: -31.5,2.5 + - pos: 19.5,15.5 parent: 104 type: Transform - - uid: 857 + - uid: 1610 components: - - pos: -24.5,-20.5 + - pos: 18.5,21.5 parent: 104 type: Transform - - uid: 858 + - uid: 1611 components: - - pos: -30.5,3.5 + - pos: 17.5,21.5 parent: 104 type: Transform - - uid: 859 + - uid: 1612 components: - - rot: 3.141592653589793 rad - pos: -28.5,-21.5 + - pos: 16.5,21.5 parent: 104 type: Transform - - uid: 861 + - uid: 1613 components: - - pos: -30.5,1.5 + - pos: 15.5,21.5 parent: 104 type: Transform - - uid: 864 + - uid: 1614 components: - - rot: 3.141592653589793 rad - pos: -27.5,-21.5 + - pos: 14.5,21.5 parent: 104 type: Transform - - uid: 865 + - uid: 1615 components: - - pos: -28.5,2.5 + - pos: 13.5,21.5 parent: 104 type: Transform - - uid: 869 + - uid: 1616 components: - - pos: -32.5,2.5 + - pos: 12.5,21.5 parent: 104 type: Transform - - uid: 871 + - uid: 1623 components: - - pos: -31.5,4.5 + - pos: 11.5,21.5 parent: 104 type: Transform - - uid: 872 + - uid: 1625 components: - - pos: -30.5,2.5 + - pos: 10.5,21.5 parent: 104 type: Transform - - uid: 873 + - uid: 1632 components: - - pos: -16.5,1.5 + - pos: 9.5,21.5 parent: 104 type: Transform - - uid: 874 + - uid: 1636 components: - - pos: -15.5,4.5 + - pos: -0.5,21.5 parent: 104 type: Transform - - uid: 875 + - uid: 1637 components: - - pos: -15.5,3.5 + - pos: -1.5,21.5 parent: 104 type: Transform - - uid: 876 + - uid: 1638 components: - - pos: -15.5,2.5 + - pos: -2.5,21.5 parent: 104 type: Transform - - uid: 878 + - uid: 1639 components: - - pos: -23.5,-21.5 + - pos: -0.5,22.5 parent: 104 type: Transform - - uid: 879 + - uid: 1640 components: - - pos: -23.5,-22.5 + - pos: -1.5,22.5 parent: 104 type: Transform - - uid: 880 + - uid: 1641 components: - - pos: -23.5,-23.5 + - pos: -2.5,22.5 parent: 104 type: Transform - - uid: 881 + - uid: 1642 components: - - pos: -22.5,-20.5 + - pos: -3.5,22.5 parent: 104 type: Transform - - uid: 882 + - uid: 1643 components: - - pos: -22.5,-21.5 + - pos: -7.5,22.5 parent: 104 type: Transform - - uid: 883 + - uid: 1644 components: - - pos: -31.5,1.5 + - pos: -8.5,22.5 parent: 104 type: Transform - - uid: 885 + - uid: 1645 components: - - pos: -23.5,-20.5 + - pos: -8.5,23.5 parent: 104 type: Transform - - uid: 886 + - uid: 1646 components: - - pos: -31.5,-20.5 + - pos: -9.5,23.5 parent: 104 type: Transform - - uid: 887 + - uid: 1647 components: - - pos: -28.5,4.5 + - pos: -10.5,23.5 parent: 104 type: Transform - - uid: 888 + - uid: 1649 components: - - pos: -28.5,3.5 + - pos: 28.5,7.5 parent: 104 type: Transform - - uid: 889 + - uid: 1650 components: - - rot: 3.141592653589793 rad - pos: -34.5,-23.5 + - pos: 28.5,8.5 parent: 104 type: Transform - - uid: 890 + - uid: 1651 components: - - rot: 3.141592653589793 rad - pos: -32.5,-23.5 + - pos: 22.5,13.5 parent: 104 type: Transform - - uid: 891 + - uid: 1657 components: - - pos: -33.5,2.5 + - pos: 23.5,13.5 parent: 104 type: Transform - - uid: 892 + - uid: 1658 components: - - rot: 3.141592653589793 rad - pos: -31.5,-22.5 + - pos: 17.5,22.5 parent: 104 type: Transform - - uid: 893 + - uid: 1659 components: - - rot: 3.141592653589793 rad - pos: -31.5,-23.5 + - pos: 24.5,16.5 parent: 104 type: Transform - - uid: 894 + - uid: 1660 components: - - rot: 3.141592653589793 rad - pos: -30.5,-22.5 + - pos: 24.5,15.5 parent: 104 type: Transform - - uid: 895 + - uid: 1661 components: - - rot: 3.141592653589793 rad - pos: -30.5,-23.5 + - pos: 24.5,14.5 parent: 104 type: Transform - - uid: 896 + - uid: 1662 components: - - rot: 3.141592653589793 rad - pos: -29.5,-22.5 + - pos: 23.5,17.5 parent: 104 type: Transform - - uid: 897 + - uid: 1663 components: - - rot: 3.141592653589793 rad - pos: -29.5,-23.5 + - pos: 28.5,6.5 parent: 104 type: Transform - - uid: 898 + - uid: 1664 components: - - rot: 3.141592653589793 rad - pos: -28.5,-22.5 + - pos: 23.5,14.5 parent: 104 type: Transform - - uid: 899 + - uid: 1665 components: - - rot: 3.141592653589793 rad - pos: -28.5,-23.5 + - pos: 22.5,14.5 parent: 104 type: Transform - - uid: 900 + - uid: 1666 components: - - rot: 3.141592653589793 rad - pos: -27.5,-22.5 + - pos: 23.5,12.5 parent: 104 type: Transform - - uid: 901 + - uid: 1667 components: - - rot: 3.141592653589793 rad - pos: -26.5,-22.5 + - pos: 21.5,8.5 parent: 104 type: Transform - - uid: 902 + - uid: 1676 components: - - rot: 3.141592653589793 rad - pos: -26.5,-23.5 + - pos: 24.5,9.5 parent: 104 type: Transform - - uid: 903 + - uid: 1677 components: - - rot: 3.141592653589793 rad - pos: -25.5,-22.5 + - pos: 24.5,10.5 parent: 104 type: Transform - - uid: 904 + - uid: 1678 components: - - rot: 3.141592653589793 rad - pos: -25.5,-23.5 + - pos: 24.5,17.5 parent: 104 type: Transform - - uid: 905 + - uid: 1679 components: - - rot: 3.141592653589793 rad - pos: -35.5,-22.5 + - pos: 23.5,16.5 parent: 104 type: Transform - - uid: 906 + - uid: 1682 components: - - rot: 3.141592653589793 rad - pos: -35.5,-23.5 + - pos: 23.5,15.5 parent: 104 type: Transform - - uid: 907 + - uid: 1683 components: - - pos: -19.5,-23.5 + - pos: 24.5,11.5 parent: 104 type: Transform - - uid: 909 + - uid: 1685 components: - - rot: 3.141592653589793 rad - pos: -25.5,-21.5 + - pos: 23.5,11.5 parent: 104 type: Transform - - uid: 910 + - uid: 1686 components: - - rot: 3.141592653589793 rad - pos: -35.5,-20.5 + - pos: 21.5,9.5 parent: 104 type: Transform - - uid: 911 + - uid: 1687 components: - - rot: 3.141592653589793 rad - pos: -35.5,-21.5 + - pos: 27.5,7.5 parent: 104 type: Transform - - uid: 912 + - uid: 1688 components: - - rot: 3.141592653589793 rad - pos: -34.5,-22.5 + - pos: 27.5,8.5 parent: 104 type: Transform - - uid: 913 + - uid: 1691 components: - - pos: -23.5,4.5 + - pos: 26.5,8.5 parent: 104 type: Transform - - uid: 915 + - uid: 1692 components: - - rot: 3.141592653589793 rad - pos: -23.5,3.5 + - pos: 22.5,15.5 parent: 104 type: Transform - - uid: 916 + - uid: 1693 components: - - pos: -12.5,4.5 + - pos: 24.5,12.5 parent: 104 type: Transform - - uid: 917 + - uid: 1695 components: - - pos: -12.5,3.5 + - pos: 23.5,10.5 parent: 104 type: Transform - - uid: 918 + - uid: 1696 components: - - pos: -12.5,2.5 + - pos: 22.5,10.5 parent: 104 type: Transform - - uid: 919 + - uid: 1698 components: - - pos: -22.5,-22.5 + - pos: 12.5,22.5 parent: 104 type: Transform - - uid: 921 + - uid: 1700 components: - - pos: -15.5,-22.5 + - pos: 25.5,9.5 parent: 104 type: Transform - - uid: 922 + - uid: 1701 components: - - pos: -14.5,1.5 + - pos: 25.5,10.5 parent: 104 type: Transform - - uid: 923 + - uid: 1702 components: - - pos: -13.5,4.5 + - pos: 13.5,22.5 parent: 104 type: Transform - - uid: 924 + - uid: 1709 components: - - pos: -13.5,3.5 + - pos: 24.5,13.5 parent: 104 type: Transform - - uid: 925 + - uid: 1710 components: - - pos: -13.5,2.5 + - pos: 22.5,8.5 parent: 104 type: Transform - - uid: 928 + - uid: 1712 components: - - pos: -15.5,-23.5 + - pos: 22.5,9.5 parent: 104 type: Transform - - uid: 929 + - uid: 1713 components: - - pos: -15.5,1.5 + - pos: 11.5,22.5 parent: 104 type: Transform - - uid: 930 + - uid: 1714 components: - - pos: -14.5,4.5 + - pos: 25.5,11.5 parent: 104 type: Transform - - uid: 932 + - uid: 1715 components: - - pos: -14.5,2.5 + - pos: 22.5,16.5 parent: 104 type: Transform - - uid: 936 + - uid: 1716 components: - - pos: -16.5,4.5 + - pos: 22.5,17.5 parent: 104 type: Transform - - uid: 937 + - uid: 1717 components: - - pos: -16.5,3.5 + - pos: 19.5,22.5 parent: 104 type: Transform - - uid: 938 + - uid: 1719 components: - - pos: -16.5,2.5 + - pos: 21.5,13.5 parent: 104 type: Transform - - uid: 939 + - uid: 1720 components: - - pos: -12.5,-20.5 + - pos: 23.5,9.5 parent: 104 type: Transform - - uid: 940 + - uid: 1721 components: - - pos: -15.5,-21.5 + - pos: 21.5,11.5 parent: 104 type: Transform - - uid: 942 + - uid: 1722 components: - - pos: -18.5,1.5 + - pos: 22.5,11.5 parent: 104 type: Transform - - uid: 943 + - uid: 1723 components: - - pos: -17.5,4.5 + - pos: 10.5,22.5 parent: 104 type: Transform - - uid: 944 + - uid: 1724 components: - - pos: -17.5,3.5 + - pos: 22.5,18.5 parent: 104 type: Transform - - uid: 945 + - uid: 1725 components: - - pos: -17.5,2.5 + - pos: 16.5,22.5 parent: 104 type: Transform - - uid: 946 + - uid: 1726 components: - - pos: -12.5,-22.5 + - pos: 15.5,22.5 parent: 104 type: Transform - - uid: 947 + - uid: 1727 components: - - pos: -22.5,-23.5 + - pos: 14.5,22.5 parent: 104 type: Transform - - uid: 948 + - uid: 1729 components: - - pos: -13.5,-21.5 + - pos: 23.5,13.5 parent: 104 type: Transform - - uid: 949 + - uid: 1731 components: - - pos: -19.5,1.5 + - pos: -11.5,21.5 parent: 104 type: Transform - - uid: 950 + - uid: 1732 components: - - pos: -18.5,4.5 + - pos: 22.5,12.5 parent: 104 type: Transform - - uid: 951 + - uid: 1733 components: - - pos: -18.5,3.5 + - pos: 27.5,6.5 parent: 104 type: Transform - - uid: 952 + - uid: 1734 components: - - pos: -18.5,2.5 + - pos: 22.5,19.5 parent: 104 type: Transform - - uid: 953 + - uid: 1735 components: - - pos: -12.5,-21.5 + - pos: 18.5,22.5 parent: 104 type: Transform - - uid: 954 + - uid: 1736 components: - - pos: -13.5,-22.5 + - pos: 21.5,21.5 parent: 104 type: Transform - - uid: 956 + - uid: 1740 components: - - pos: -11.5,1.5 + - pos: -11.5,20.5 parent: 104 type: Transform - - uid: 958 + - uid: 1741 components: - - pos: -19.5,3.5 + - pos: 21.5,10.5 parent: 104 type: Transform - - uid: 959 + - uid: 1742 components: - - pos: -19.5,2.5 + - pos: 21.5,20.5 parent: 104 type: Transform - - uid: 963 + - uid: 1743 components: - - pos: -12.5,1.5 + - pos: 20.5,22.5 parent: 104 type: Transform - - uid: 964 + - uid: 1744 components: - - pos: -11.5,4.5 + - pos: 21.5,19.5 parent: 104 type: Transform - - uid: 965 + - uid: 1745 components: - - pos: -11.5,3.5 + - pos: 21.5,18.5 parent: 104 type: Transform - - uid: 966 + - uid: 1746 components: - - pos: -11.5,2.5 + - pos: 21.5,17.5 parent: 104 type: Transform - - uid: 972 + - uid: 1747 components: - - pos: -11.5,-21.5 + - pos: 21.5,16.5 parent: 104 type: Transform - - uid: 984 + - uid: 1748 components: - - pos: -9.5,-9.5 + - pos: 21.5,15.5 parent: 104 type: Transform - - uid: 985 + - uid: 1749 components: - - pos: -9.5,-10.5 + - pos: 21.5,14.5 parent: 104 type: Transform - - uid: 986 + - uid: 1750 components: - - pos: -9.5,-11.5 + - pos: 21.5,12.5 parent: 104 type: Transform - - uid: 987 + - uid: 1751 components: - - pos: -9.5,-12.5 + - pos: 9.5,19.5 parent: 104 type: Transform - - uid: 988 + - uid: 1752 components: - - pos: -10.5,4.5 + - pos: -2.5,23.5 parent: 104 type: Transform - - uid: 989 + - uid: 1753 components: - - pos: -10.5,3.5 + - pos: -3.5,23.5 parent: 104 type: Transform - - uid: 990 + - uid: 1754 components: - - pos: -10.5,2.5 + - pos: -4.5,23.5 parent: 104 type: Transform - - uid: 991 + - uid: 1755 components: - - pos: -10.5,1.5 + - pos: -5.5,23.5 parent: 104 type: Transform - - uid: 992 + - uid: 1756 components: - - pos: -10.5,0.5 + - pos: -6.5,23.5 parent: 104 type: Transform - - uid: 993 + - uid: 1757 components: - - pos: -10.5,-0.5 + - pos: -7.5,23.5 parent: 104 type: Transform - - uid: 994 + - uid: 1762 components: - - pos: -10.5,-1.5 + - pos: 1.5,-18.5 parent: 104 type: Transform - - uid: 995 + - uid: 1767 components: - - pos: -10.5,-2.5 + - pos: -19.5,7.5 parent: 104 type: Transform - - uid: 996 + - uid: 1768 components: - - pos: -10.5,-3.5 + - pos: -19.5,6.5 parent: 104 type: Transform - - uid: 997 + - uid: 1769 components: - - pos: -10.5,-4.5 + - pos: -19.5,5.5 parent: 104 type: Transform - - uid: 998 + - uid: 1770 components: - - pos: -10.5,-5.5 + - pos: -18.5,7.5 parent: 104 type: Transform - - uid: 999 + - uid: 1771 components: - - pos: -10.5,-6.5 + - pos: -18.5,6.5 parent: 104 type: Transform - - uid: 1000 + - uid: 1772 components: - - pos: -10.5,-7.5 + - pos: -18.5,5.5 parent: 104 type: Transform - - uid: 1001 + - uid: 1773 components: - - pos: -10.5,-8.5 + - pos: -17.5,7.5 parent: 104 type: Transform - - uid: 1002 + - uid: 1774 components: - - pos: -10.5,-9.5 + - pos: -17.5,6.5 parent: 104 type: Transform - - uid: 1003 + - uid: 1775 components: - - pos: -10.5,-10.5 + - pos: -17.5,5.5 parent: 104 type: Transform - - uid: 1004 + - uid: 1776 components: - - pos: -10.5,-11.5 + - pos: -21.5,19.5 parent: 104 type: Transform - - uid: 1005 + - uid: 1777 components: - - pos: -10.5,-12.5 + - pos: -22.5,19.5 parent: 104 type: Transform - - uid: 1006 + - uid: 1778 components: - - pos: -9.5,4.5 + - pos: -21.5,18.5 parent: 104 type: Transform - - uid: 1007 + - uid: 1779 components: - - pos: -9.5,3.5 + - pos: -22.5,18.5 parent: 104 type: Transform - - uid: 1008 + - uid: 1780 components: - - pos: -9.5,2.5 + - pos: -22.5,17.5 parent: 104 type: Transform - - uid: 1009 + - uid: 1781 components: - - pos: -9.5,1.5 + - pos: -23.5,17.5 parent: 104 type: Transform - - uid: 1010 + - uid: 1782 components: - - pos: -9.5,0.5 + - pos: -23.5,16.5 parent: 104 type: Transform - - uid: 1011 + - uid: 1792 components: - - pos: -9.5,-0.5 + - pos: 4.5,-19.5 parent: 104 type: Transform - - uid: 1012 + - uid: 1793 components: - - pos: -9.5,-1.5 + - pos: 4.5,-20.5 parent: 104 type: Transform - - uid: 1013 + - uid: 1794 components: - - pos: -9.5,-2.5 + - pos: 2.5,-19.5 parent: 104 type: Transform - - uid: 1014 + - uid: 1795 components: - - pos: -9.5,-3.5 + - pos: 2.5,-20.5 parent: 104 type: Transform - - uid: 1015 + - uid: 1796 components: - - pos: -9.5,-4.5 + - pos: -1.5,-10.5 parent: 104 type: Transform - - uid: 1016 + - uid: 1797 components: - - pos: -9.5,-5.5 + - pos: 3.5,-19.5 parent: 104 type: Transform - - uid: 1017 + - uid: 1798 components: - - pos: -9.5,-6.5 + - pos: 3.5,-20.5 parent: 104 type: Transform - - uid: 1018 + - uid: 1801 components: - - pos: -9.5,-7.5 + - pos: 7.5,-19.5 parent: 104 type: Transform - - uid: 1019 + - uid: 1802 components: - - pos: -9.5,-8.5 + - pos: 7.5,-20.5 parent: 104 type: Transform - - uid: 1086 + - uid: 1803 components: - - pos: -14.5,3.5 + - pos: 7.5,-21.5 parent: 104 type: Transform - - uid: 1087 + - uid: 1804 components: - - pos: -19.5,4.5 + - pos: 5.5,-19.5 parent: 104 type: Transform - - uid: 1202 + - uid: 1805 components: - - rot: 3.141592653589793 rad - pos: -24.5,4.5 + - pos: 5.5,-20.5 parent: 104 type: Transform - - uid: 1203 + - uid: 1806 components: - - rot: 3.141592653589793 rad - pos: -27.5,-23.5 + - pos: 5.5,-21.5 parent: 104 type: Transform - - uid: 1222 + - uid: 1807 components: - - pos: -34.5,2.5 + - pos: 6.5,-19.5 parent: 104 type: Transform - - uid: 1223 + - uid: 1808 components: - - pos: -34.5,3.5 + - pos: 6.5,-20.5 parent: 104 type: Transform - - uid: 1362 + - uid: 1809 components: - - pos: -4.5,-2.5 + - pos: 6.5,-21.5 parent: 104 type: Transform - - uid: 1363 + - uid: 1835 components: - - pos: -2.5,-2.5 + - pos: 8.5,-19.5 parent: 104 type: Transform - - uid: 1364 + - uid: 1836 components: - - pos: -3.5,-2.5 + - pos: 8.5,-20.5 parent: 104 type: Transform - - uid: 1365 + - uid: 1837 components: - - pos: -4.5,-4.5 + - pos: 8.5,-21.5 parent: 104 type: Transform - - uid: 1366 + - uid: 1865 components: - - pos: -3.5,-4.5 + - pos: 16.5,-21.5 parent: 104 type: Transform - - uid: 1377 + - uid: 1870 components: - - pos: -2.5,-4.5 + - pos: 17.5,-21.5 parent: 104 type: Transform - - uid: 2048 + - uid: 1875 components: - - rot: 3.141592653589793 rad - pos: -23.5,2.5 + - pos: 18.5,-21.5 parent: 104 type: Transform - - uid: 2050 + - uid: 1880 components: - - rot: 3.141592653589793 rad - pos: -24.5,2.5 + - pos: 19.5,-21.5 parent: 104 type: Transform - - uid: 2405 + - uid: 1884 components: - - pos: 23.5,-19.5 + - pos: 20.5,-21.5 parent: 104 type: Transform - - uid: 2406 + - uid: 1888 components: - - pos: 22.5,-19.5 + - pos: 21.5,-21.5 parent: 104 type: Transform - - uid: 2407 + - uid: 1892 components: - - pos: 21.5,-19.5 + - pos: 22.5,-21.5 parent: 104 type: Transform - - uid: 2408 + - uid: 1896 components: - - pos: 21.5,-17.5 + - pos: 23.5,-21.5 parent: 104 type: Transform - - uid: 2409 + - uid: 1900 components: - - pos: 22.5,-17.5 + - pos: 24.5,-21.5 parent: 104 type: Transform - - uid: 2410 + - uid: 1904 components: - - pos: 23.5,-17.5 + - pos: 25.5,-21.5 parent: 104 type: Transform - - uid: 2505 + - uid: 1909 components: - - rot: 3.141592653589793 rad - pos: -22.5,3.5 + - pos: 28.5,-11.5 parent: 104 type: Transform - - uid: 2507 + - uid: 1910 components: - - rot: 3.141592653589793 rad - pos: -20.5,4.5 + - pos: 28.5,-10.5 parent: 104 type: Transform - - uid: 2508 + - uid: 1911 components: - - rot: 3.141592653589793 rad - pos: -21.5,2.5 + - pos: 28.5,-9.5 parent: 104 type: Transform - - uid: 2514 + - uid: 1912 components: - - rot: 3.141592653589793 rad - pos: -20.5,3.5 + - pos: 28.5,-8.5 parent: 104 type: Transform - - uid: 2515 + - uid: 1913 components: - - rot: 3.141592653589793 rad - pos: -21.5,4.5 + - pos: 26.5,-21.5 parent: 104 type: Transform - - uid: 2520 + - uid: 1923 components: - - rot: 3.141592653589793 rad - pos: -22.5,1.5 + - pos: 26.5,-11.5 parent: 104 type: Transform - - uid: 2521 + - uid: 1924 components: - - rot: 3.141592653589793 rad - pos: -20.5,2.5 + - pos: 26.5,-10.5 parent: 104 type: Transform - - uid: 2527 + - uid: 1925 components: - - pos: -20.5,1.5 + - pos: 26.5,-9.5 parent: 104 type: Transform - - uid: 2553 + - uid: 1926 components: - - rot: 3.141592653589793 rad - pos: -22.5,4.5 + - pos: 26.5,-8.5 parent: 104 type: Transform - - uid: 2554 + - uid: 1927 components: - - rot: 3.141592653589793 rad - pos: -22.5,2.5 + - pos: 26.5,-7.5 parent: 104 type: Transform - - uid: 2557 + - uid: 1928 components: - - rot: 3.141592653589793 rad - pos: -21.5,3.5 + - pos: 26.5,-6.5 parent: 104 type: Transform - - uid: 2569 + - uid: 1930 components: - - rot: 3.141592653589793 rad - pos: -23.5,1.5 + - pos: 26.5,-5.5 parent: 104 type: Transform - - uid: 3084 + - uid: 1934 components: - - rot: 3.141592653589793 rad - pos: -24.5,1.5 + - pos: 26.5,-4.5 parent: 104 type: Transform -- proto: Chair - entities: - - uid: 1367 + - uid: 1935 components: - - rot: 3.141592653589793 rad - pos: -3.5,-4.5 + - pos: 26.5,-3.5 parent: 104 type: Transform - - uid: 1376 + - uid: 1936 components: - - rot: 3.141592653589793 rad - pos: -4.5,-4.5 + - pos: 26.5,-2.5 parent: 104 type: Transform - - uid: 1878 + - uid: 1937 components: - - rot: -1.5707963267948966 rad - pos: -35.5,-21.5 + - pos: 26.5,-1.5 parent: 104 type: Transform - - uid: 1879 + - uid: 1938 components: - - rot: -1.5707963267948966 rad - pos: -35.5,-22.5 + - pos: 26.5,-0.5 parent: 104 type: Transform - - uid: 2312 + - uid: 1939 components: - - rot: -1.5707963267948966 rad - pos: 7.5,-13.5 + - pos: 26.5,0.5 parent: 104 type: Transform - - uid: 2313 + - uid: 1940 components: - - rot: -1.5707963267948966 rad - pos: 7.5,-14.5 + - pos: 26.5,1.5 parent: 104 type: Transform -- proto: ChairOfficeDark - entities: - - uid: 1298 + - uid: 1942 components: - - rot: 1.5707963267948966 rad - pos: 13.5,-17.5 + - pos: 27.5,-21.5 parent: 104 type: Transform - - uid: 1304 + - uid: 1952 components: - - pos: 11.5,-17.5 + - pos: 27.5,-11.5 parent: 104 type: Transform - - uid: 1764 + - uid: 1953 components: - - pos: -13.5,6.5 + - pos: 27.5,-10.5 parent: 104 type: Transform - - uid: 2427 + - uid: 1954 components: - - rot: 1.5707963267948966 rad - pos: 19.5,-15.5 + - pos: 27.5,-9.5 parent: 104 type: Transform - - uid: 2428 + - uid: 1955 components: - - pos: 25.5,-15.5 + - pos: 27.5,-8.5 parent: 104 type: Transform -- proto: ChairOfficeLight - entities: - - uid: 751 + - uid: 1956 components: - - rot: 3.141592653589793 rad - pos: -0.5,-16.5 + - pos: 27.5,-7.5 parent: 104 type: Transform - - uid: 1124 + - uid: 1957 components: - - pos: -0.5,-12.5 + - pos: 27.5,-6.5 parent: 104 type: Transform - - uid: 1296 + - uid: 1958 components: - - rot: 1.5707963267948966 rad - pos: 4.5,-11.5 + - pos: 27.5,-5.5 parent: 104 type: Transform - - uid: 1297 + - uid: 1959 components: - - pos: 4.5,-16.5 + - pos: 27.5,-4.5 parent: 104 type: Transform -- proto: ChairPilotSeat - entities: - - uid: 326 + - uid: 1960 components: - - rot: 3.141592653589793 rad - pos: 20.5,-6.5 + - pos: 27.5,-3.5 parent: 104 type: Transform - - uid: 327 + - uid: 1961 components: - - rot: -1.5707963267948966 rad - pos: 19.5,-7.5 + - pos: 27.5,-2.5 parent: 104 type: Transform - - uid: 328 + - uid: 1962 components: - - rot: 1.5707963267948966 rad - pos: 21.5,-7.5 + - pos: 27.5,-1.5 parent: 104 type: Transform - - uid: 329 + - uid: 1963 components: - - pos: 20.5,-8.5 + - pos: 27.5,-0.5 parent: 104 type: Transform - - uid: 330 + - uid: 1964 components: - - rot: 1.5707963267948966 rad - pos: 18.5,-6.5 + - pos: 27.5,0.5 parent: 104 type: Transform - - uid: 331 + - uid: 1965 components: - - rot: 1.5707963267948966 rad - pos: 19.5,-5.5 + - pos: 27.5,1.5 parent: 104 type: Transform - - uid: 332 + - uid: 1966 components: - - rot: -1.5707963267948966 rad - pos: 21.5,-5.5 + - pos: 27.5,2.5 parent: 104 type: Transform - - uid: 333 + - uid: 1967 components: - - rot: -1.5707963267948966 rad - pos: 22.5,-6.5 + - pos: 28.5,-21.5 parent: 104 type: Transform - - uid: 334 + - uid: 1973 components: - - rot: -1.5707963267948966 rad - pos: 22.5,-8.5 + - pos: 30.5,-1.5 parent: 104 type: Transform - - uid: 335 + - uid: 1974 components: - - rot: -1.5707963267948966 rad - pos: 21.5,-9.5 + - pos: 30.5,-0.5 parent: 104 type: Transform - - uid: 336 + - uid: 1975 components: - - rot: 1.5707963267948966 rad - pos: 19.5,-9.5 + - pos: 30.5,0.5 parent: 104 type: Transform - - uid: 337 + - uid: 1976 components: - - rot: 1.5707963267948966 rad - pos: 18.5,-8.5 + - pos: 30.5,1.5 parent: 104 type: Transform -- proto: ChairWood - entities: - - uid: 2429 + - uid: 1977 components: - - pos: -0.5,-1.5 + - pos: 30.5,2.5 parent: 104 type: Transform -- proto: chem_master - entities: - - uid: 2444 + - uid: 1978 components: - - pos: 5.5,-10.5 + - pos: 28.5,-7.5 parent: 104 type: Transform -- proto: ChemicalPayload - entities: - - uid: 2380 + - uid: 1979 components: - - pos: 3.3003616,-17.381208 + - pos: 28.5,-6.5 parent: 104 type: Transform - - uid: 3110 + - uid: 1980 components: - - pos: 3.6284866,-17.287361 + - pos: 28.5,-5.5 parent: 104 type: Transform -- proto: ChemistryHotplate - entities: - - uid: 1383 + - uid: 1981 components: - - pos: 4.5,-12.5 + - pos: 28.5,-4.5 parent: 104 type: Transform -- proto: ChessBoard - entities: - - uid: 354 + - uid: 1982 components: - - pos: 13.499366,-8.433407 + - pos: 28.5,-3.5 parent: 104 type: Transform -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 1359 + - uid: 1983 components: - - pos: -2.5,-2.5 + - pos: 28.5,-2.5 parent: 104 type: Transform -- proto: ClosetL3Filled - entities: - - uid: 1153 + - uid: 1984 components: - - pos: 7.5,-17.5 + - pos: 28.5,-1.5 parent: 104 type: Transform -- proto: ClosetRadiationSuitFilled - entities: - - uid: 1114 + - uid: 1985 components: - - pos: 6.5,-17.5 + - pos: 28.5,-0.5 parent: 104 type: Transform -- proto: ClosetToolFilled - entities: - - uid: 2417 + - uid: 1986 components: - - pos: 20.5,-14.5 + - pos: 28.5,0.5 parent: 104 type: Transform - - uid: 2418 + - uid: 1987 components: - - pos: 24.5,-14.5 + - pos: 28.5,1.5 parent: 104 type: Transform -- proto: ClothingBackpackDuffelSyndicateFilledMedical - entities: - - uid: 2437 + - uid: 1988 components: - - pos: 0.5,-12.5 + - pos: 28.5,2.5 parent: 104 type: Transform -- proto: ClothingBackpackWaterTank - entities: - - uid: 151 + - uid: 1989 components: - - pos: 9.36168,-4.462339 + - pos: 29.5,-20.5 parent: 104 type: Transform -- proto: ClothingBeltUtilityFilled - entities: - - uid: 212 + - uid: 1990 components: - - pos: 13.897393,-10.470539 + - pos: 29.5,-19.5 parent: 104 type: Transform -- proto: ClothingNeckScarfStripedRed - entities: - - uid: 1150 + - uid: 1991 components: - - pos: -2.530845,-16.461567 + - pos: 29.5,-18.5 parent: 104 type: Transform -- proto: ClothingNeckStethoscope - entities: - - uid: 1336 + - uid: 1992 components: - - pos: 7.5027137,-12.301802 + - pos: 29.5,-17.5 parent: 104 type: Transform -- proto: CombatKnife - entities: - - uid: 1694 + - uid: 1993 components: - - pos: 5.483225,11.368477 + - pos: 29.5,-16.5 parent: 104 type: Transform -- proto: ComfyChair - entities: - - uid: 21 + - uid: 1994 components: - - rot: 1.5707963267948966 rad - pos: 12.5,-8.5 + - pos: 29.5,-15.5 parent: 104 type: Transform - - uid: 352 + - uid: 1995 components: - - rot: -1.5707963267948966 rad - pos: 14.5,-8.5 + - pos: 29.5,-14.5 parent: 104 type: Transform -- proto: computerBodyScanner - entities: - - uid: 2436 + - uid: 1996 components: - - rot: 1.5707963267948966 rad - pos: 0.5,-14.5 + - pos: 29.5,-13.5 parent: 104 type: Transform -- proto: ComputerSurveillanceWirelessCameraMonitor - entities: - - uid: 1127 + - uid: 1997 components: - - rot: 1.5707963267948966 rad - pos: -14.5,6.5 + - pos: 29.5,-12.5 parent: 104 type: Transform -- proto: CyberPen - entities: - - uid: 696 + - uid: 1998 components: - - pos: -14.478909,9.585995 + - pos: 29.5,-11.5 parent: 104 type: Transform -- proto: DresserFilled - entities: - - uid: 349 + - uid: 1999 components: - - pos: 13.5,-3.5 + - pos: 29.5,-10.5 parent: 104 type: Transform -- proto: DrinkAbsintheBottleFull - entities: - - uid: 15 + - uid: 2000 components: - - pos: 3.9415665,-8.34479 + - pos: 29.5,-9.5 parent: 104 type: Transform -- proto: DrinkBeerBottleFull - entities: - - uid: 157 + - uid: 2001 components: - - pos: 2.5961013,-2.2186527 + - pos: 29.5,-8.5 parent: 104 type: Transform - - uid: 170 + - uid: 2002 components: - - pos: 3.6117263,-3.1874027 + - pos: 29.5,-7.5 parent: 104 type: Transform -- proto: DrinkGinBottleFull - entities: - - uid: 134 + - uid: 2003 components: - - pos: 3.2228165,-8.4229965 + - pos: 29.5,-6.5 parent: 104 type: Transform -- proto: DrinkWhiskeyBottleFull - entities: - - uid: 25 + - uid: 2004 components: - - pos: -0.5303154,-6.2851996 + - pos: 29.5,-5.5 parent: 104 type: Transform -- proto: EmpGrenade - entities: - - uid: 2456 + - uid: 2005 components: - - pos: 14.40774,-17.385033 + - pos: 29.5,-4.5 parent: 104 type: Transform - - uid: 2457 + - uid: 2006 components: - - pos: 14.62649,-17.385033 + - pos: 29.5,-3.5 parent: 104 type: Transform -- proto: ExtinguisherCabinetFilled - entities: - - uid: 139 + - uid: 2007 components: - - pos: 28.5,-14.5 + - pos: 29.5,-2.5 parent: 104 type: Transform - - uid: 141 + - uid: 2008 components: - - pos: 14.5,-0.5 + - pos: 29.5,-1.5 parent: 104 type: Transform - - uid: 1812 + - uid: 2009 components: - - pos: -1.5,-2.5 + - pos: 29.5,-0.5 parent: 104 type: Transform - - uid: 1816 + - uid: 2010 components: - - pos: 8.5,-10.5 + - pos: 29.5,0.5 parent: 104 type: Transform - - uid: 1822 + - uid: 2011 components: - - pos: 15.5,-17.5 + - pos: 29.5,1.5 parent: 104 type: Transform -- proto: FaxMachineSyndie - entities: - - uid: 81 + - uid: 2012 components: - - pos: 7.5,-4.5 + - pos: 29.5,2.5 parent: 104 type: Transform -- proto: filingCabinetDrawer - entities: - - uid: 1140 + - uid: 2013 components: - - pos: -12.5,7.5 + - pos: 30.5,-19.5 parent: 104 type: Transform -- proto: filingCabinetDrawerRandom - entities: - - uid: 108 + - uid: 2014 components: - - pos: 7.5,-5.5 + - pos: 30.5,-18.5 parent: 104 type: Transform -- proto: FirelockGlass - entities: - - uid: 1765 + - uid: 2015 components: - - pos: -13.5,5.5 + - pos: 30.5,-17.5 parent: 104 type: Transform -- proto: Fireplace - entities: - - uid: 1273 + - uid: 2020 components: - - pos: 1.5,0.5 + - pos: 30.5,-16.5 parent: 104 type: Transform -- proto: FloorDrain - entities: - - uid: 1361 + - uid: 2023 components: - - pos: -4.5,-2.5 + - pos: 30.5,-15.5 parent: 104 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2438 + - uid: 2024 components: - - pos: 10.5,-3.5 + - pos: 30.5,-14.5 parent: 104 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2443 + - uid: 2025 components: - - pos: 4.5,-11.5 + - pos: 30.5,-13.5 parent: 104 type: Transform - - fixtures: {} - type: Fixtures -- proto: FloraRockSolid01 - entities: - - uid: 1707 + - uid: 2026 components: - - pos: 5.5565968,16.377468 + - pos: 30.5,-12.5 parent: 104 type: Transform -- proto: FloraRockSolid02 - entities: - - uid: 1708 + - uid: 2029 components: - - pos: -3.1481876,-0.15203857 + - pos: 30.5,-9.5 parent: 104 type: Transform - - uid: 1711 + - uid: 2030 components: - - pos: -1.3676796,16.13784 + - pos: 30.5,-8.5 parent: 104 type: Transform -- proto: FloraRockSolid03 - entities: - - uid: 1706 + - uid: 2032 components: - - pos: 13.550529,12.489372 + - pos: 30.5,-7.5 parent: 104 type: Transform -- proto: FloraTreeConifer01 - entities: - - uid: 261 + - uid: 2033 components: - - pos: 7.7892694,4.987089 + - pos: 30.5,-6.5 parent: 104 type: Transform - - uid: 275 + - uid: 2034 components: - - pos: -3.80645,4.798395 + - pos: 30.5,-5.5 parent: 104 type: Transform - - uid: 281 + - uid: 2035 components: - - pos: -1.0279694,6.890992 + - pos: 30.5,-4.5 parent: 104 type: Transform - - uid: 1619 + - uid: 2036 components: - - pos: 16.10984,7.3249645 + - pos: 30.5,-3.5 parent: 104 type: Transform - - uid: 1622 + - uid: 2037 components: - - pos: 7.42463,16.597832 + - pos: 30.5,-2.5 parent: 104 type: Transform - - uid: 1626 + - uid: 2038 components: - - pos: 11.605486,16.944057 + - pos: 20.5,-0.5 parent: 104 type: Transform -- proto: FloraTreeConifer02 - entities: - - uid: 219 + - uid: 2039 components: - - pos: 5.5,4.5 + - pos: 20.5,-1.5 parent: 104 type: Transform - - uid: 260 + - uid: 2040 components: - - pos: 7.7267694,7.536619 + - pos: 15.5,2.5 parent: 104 type: Transform - - uid: 267 + - uid: 2041 components: - - pos: 12.789269,3.6888618 + - pos: 16.5,2.5 parent: 104 type: Transform - - uid: 268 + - uid: 2042 components: - - pos: -0.17814255,7.5043383 + - pos: 19.5,0.5 parent: 104 type: Transform - - uid: 273 + - uid: 2043 components: - - pos: -2.591959,2.9214401 + - pos: 19.5,-0.5 parent: 104 type: Transform - - uid: 280 + - uid: 2044 components: - - pos: 1.5111885,4.4898434 + - pos: 19.5,-1.5 parent: 104 type: Transform - - uid: 1618 + - uid: 2047 components: - - pos: 11.32859,10.093473 + - pos: 25.5,0.5 parent: 104 type: Transform - - uid: 1620 + - uid: 2049 components: - - pos: 15.85984,13.16621 + - pos: 25.5,-0.5 parent: 104 type: Transform - - uid: 1621 + - uid: 2051 components: - - pos: 14.582346,17.286049 + - pos: 25.5,-1.5 parent: 104 type: Transform -- proto: FloraTreeConifer03 - entities: - - uid: 271 + - uid: 2054 components: - - pos: -1.1000175,4.26659 + - pos: 24.5,0.5 parent: 104 type: Transform - - uid: 1035 + - uid: 2055 components: - - pos: 0.74747276,19.424063 + - pos: 24.5,-0.5 parent: 104 type: Transform - - uid: 1673 + - uid: 2056 components: - - pos: -3.5,15.5 + - pos: 24.5,-1.5 parent: 104 type: Transform - - uid: 1830 + - uid: 2058 components: - - pos: 8.497473,19.862019 + - pos: 23.5,1.5 parent: 104 type: Transform -- proto: FloraTreeSnow01 - entities: - - uid: 262 + - uid: 2059 components: - - pos: 9.630766,6.7434845 + - pos: 23.5,0.5 parent: 104 type: Transform -- proto: FloraTreeSnow02 - entities: - - uid: 270 + - uid: 2060 components: - - pos: -2.3114033,5.0917635 + - pos: 23.5,-0.5 parent: 104 type: Transform - - uid: 1630 + - uid: 2061 components: - - pos: 4.558771,16.696045 + - pos: 23.5,-1.5 parent: 104 type: Transform -- proto: FloraTreeSnow03 - entities: - - uid: 274 + - uid: 2063 components: - - pos: -3.3325882,6.8936405 + - pos: 22.5,1.5 parent: 104 type: Transform - - uid: 1629 + - uid: 2064 components: - - pos: 9.924105,15.382175 + - pos: 22.5,0.5 parent: 104 type: Transform -- proto: FloraTreeSnow04 - entities: - - uid: 265 + - uid: 2065 components: - - pos: 0.24603653,5.7335367 + - pos: 22.5,-0.5 parent: 104 type: Transform - - uid: 276 + - uid: 2066 components: - - pos: 5.8604717,5.2799397 + - pos: 22.5,-1.5 parent: 104 type: Transform - - uid: 1624 + - uid: 2067 components: - - pos: -3.1344147,13.722986 + - pos: 14.5,2.5 parent: 104 type: Transform -- proto: FloraTreeSnow05 - entities: - - uid: 269 + - uid: 2068 + components: + - pos: 15.5,1.5 + parent: 104 + type: Transform + - uid: 2069 components: - - pos: 0.30623245,3.9068413 + - pos: 21.5,0.5 parent: 104 type: Transform - - uid: 1627 + - uid: 2070 components: - - pos: 13.331816,13.977352 + - pos: 21.5,-0.5 parent: 104 type: Transform - - uid: 1628 + - uid: 2071 components: - - pos: 15.066191,11.052429 + - pos: 21.5,-1.5 parent: 104 type: Transform - - uid: 1631 + - uid: 2072 components: - - pos: 2.1525211,16.977589 + - pos: 14.5,3.5 parent: 104 type: Transform - - uid: 1672 + - uid: 2073 components: - - pos: -3.5,16.5 + - pos: 17.5,-0.5 parent: 104 type: Transform -- proto: FoodBoxDonkpocket - entities: - - uid: 11 + - uid: 2074 components: - - pos: 12.527094,-6.308407 + - pos: 17.5,0.5 parent: 104 type: Transform -- proto: FoodBoxDonkpocketTeriyaki - entities: - - uid: 2475 + - uid: 2075 components: - - pos: 12.636917,-6.187726 + - pos: 17.5,1.5 parent: 104 type: Transform -- proto: FoodBoxDonut - entities: - - uid: 2445 + - uid: 2076 components: - - pos: 2.5389562,-6.3072195 + - pos: 18.5,-1.5 parent: 104 type: Transform -- proto: FoodDonutJellySlugcat - entities: - - uid: 3327 + - uid: 2077 components: - - pos: -5.7255287,20.539352 + - pos: 18.5,-0.5 parent: 104 type: Transform -- proto: GeneratorBasic15kW - entities: - - uid: 2326 + - uid: 2078 components: - - pos: 27.5,-19.5 + - pos: 18.5,0.5 parent: 104 type: Transform - - uid: 2328 + - uid: 2079 components: - - pos: 17.5,-17.5 + - pos: 18.5,1.5 parent: 104 type: Transform - - uid: 2329 + - uid: 2080 components: - - pos: 17.5,-19.5 + - pos: -12.5,28.5 parent: 104 type: Transform - - uid: 2330 + - uid: 2084 components: - - pos: 27.5,-17.5 + - pos: -12.5,27.5 parent: 104 type: Transform -- proto: GeneratorRTG - entities: - - uid: 2415 + - uid: 2085 components: - - pos: 17.5,-18.5 + - pos: -12.5,26.5 parent: 104 type: Transform - - uid: 2416 + - uid: 2086 components: - - pos: 27.5,-18.5 + - pos: -12.5,25.5 parent: 104 type: Transform -- proto: GravityGenerator - entities: - - uid: 2327 + - uid: 2087 components: - - pos: 22.5,-15.5 + - pos: -16.5,25.5 parent: 104 type: Transform - - charge: 100 - type: GravityGenerator - - radius: 175.75 - type: PointLight -- proto: GrenadeFlashBang - entities: - - uid: 2309 + - uid: 2088 components: - - pos: 11.399388,-16.363453 + - pos: -3.5,-6.5 parent: 104 type: Transform - - uid: 2310 + - uid: 2091 components: - - pos: 11.571263,-16.363453 + - pos: -15.5,25.5 parent: 104 type: Transform -- proto: Grille - entities: - - uid: 95 + - uid: 2093 components: - - pos: 0.5,1.5 + - pos: -14.5,26.5 parent: 104 type: Transform - - uid: 115 + - uid: 2094 components: - - pos: -1.5,-0.5 + - pos: -14.5,25.5 parent: 104 type: Transform - - uid: 118 + - uid: 2096 components: - - pos: 2.5,1.5 + - pos: -13.5,27.5 parent: 104 type: Transform - - uid: 147 + - uid: 2098 components: - - pos: 11.5,1.5 + - pos: -13.5,26.5 parent: 104 type: Transform - - uid: 231 + - uid: 2099 components: - - pos: 2.5,2.5 + - pos: -13.5,25.5 parent: 104 type: Transform - - uid: 232 + - uid: 2100 components: - - pos: 2.5,3.5 + - pos: -20.5,30.5 parent: 104 type: Transform - - uid: 233 + - uid: 2101 components: - - pos: 4.5,2.5 + - pos: -20.5,29.5 parent: 104 type: Transform - - uid: 234 + - uid: 2102 components: - - pos: 4.5,3.5 + - pos: -20.5,28.5 parent: 104 type: Transform - - uid: 303 + - uid: 2103 components: - - pos: 16.5,-6.5 + - pos: -20.5,27.5 parent: 104 type: Transform - - uid: 304 + - uid: 2104 components: - - pos: 16.5,-8.5 + - pos: -20.5,26.5 parent: 104 type: Transform - - uid: 526 + - uid: 2105 components: - - pos: 0.5,21.5 + - pos: -20.5,25.5 parent: 104 type: Transform - - uid: 527 + - uid: 2106 components: - - pos: 6.5,21.5 + - pos: -20.5,24.5 parent: 104 type: Transform - - uid: 528 + - uid: 2107 components: - - pos: 1.5,21.5 + - pos: -19.5,30.5 parent: 104 type: Transform - - uid: 1034 + - uid: 2108 components: - - pos: 5.5,21.5 + - pos: -19.5,29.5 parent: 104 type: Transform - - uid: 1112 + - uid: 2109 components: - - pos: -1.5,-17.5 + - pos: -19.5,28.5 parent: 104 type: Transform - - uid: 1120 + - uid: 2110 components: - - pos: 2.5,-15.5 + - pos: -19.5,27.5 parent: 104 type: Transform - - uid: 1121 + - uid: 2111 components: - - pos: 2.5,-13.5 + - pos: -19.5,26.5 parent: 104 type: Transform - - uid: 1146 + - uid: 2112 components: - - pos: -12.5,5.5 + - pos: -19.5,25.5 parent: 104 type: Transform - - uid: 1148 + - uid: 2113 components: - - pos: -14.5,5.5 + - pos: -19.5,24.5 parent: 104 type: Transform - - uid: 1241 + - uid: 2115 components: - - pos: 5.5,-9.5 + - pos: -18.5,30.5 parent: 104 type: Transform - - uid: 1243 + - uid: 2116 components: - - pos: 7.5,-9.5 + - pos: -18.5,29.5 parent: 104 type: Transform - - uid: 1389 + - uid: 2117 components: - - pos: 4.5,1.5 + - pos: -18.5,28.5 parent: 104 type: Transform - - uid: 1410 + - uid: 2118 components: - - pos: 8.5,-17.5 + - pos: -18.5,27.5 parent: 104 type: Transform - - uid: 1823 + - uid: 2119 components: - - pos: 8.5,20.5 + - pos: -18.5,26.5 parent: 104 type: Transform - - uid: 1824 + - uid: 2120 components: - - pos: 4.5,21.5 + - pos: -18.5,25.5 parent: 104 type: Transform - - uid: 1831 + - uid: 2121 components: - - pos: 8.5,21.5 + - pos: -18.5,24.5 parent: 104 type: Transform - - uid: 1832 + - uid: 2122 components: - - pos: 3.5,21.5 + - pos: -17.5,28.5 parent: 104 type: Transform - - uid: 1840 + - uid: 2123 components: - - pos: 11.5,-23.5 + - pos: -17.5,27.5 parent: 104 type: Transform - - uid: 1841 + - uid: 2124 components: - - pos: 10.5,-23.5 + - pos: -17.5,25.5 parent: 104 type: Transform - - uid: 1847 + - uid: 2125 components: - - pos: 12.5,-23.5 + - pos: -11.5,28.5 parent: 104 type: Transform - - uid: 1854 + - uid: 2127 components: - - pos: 13.5,-23.5 + - pos: -11.5,27.5 parent: 104 type: Transform - - uid: 1860 + - uid: 2128 components: - - pos: 14.5,-23.5 + - pos: -11.5,26.5 parent: 104 type: Transform - - uid: 1931 + - uid: 2129 components: - - pos: 0.5,20.5 + - pos: -11.5,25.5 parent: 104 type: Transform - - uid: 1932 + - uid: 2130 components: - - pos: 7.5,21.5 + - pos: -11.5,24.5 parent: 104 type: Transform - - uid: 1933 + - uid: 2131 components: - - pos: 2.5,21.5 + - pos: -21.5,31.5 parent: 104 type: Transform - - uid: 2189 + - uid: 2132 components: - - pos: -0.5,-17.5 + - pos: -20.5,31.5 parent: 104 type: Transform - - uid: 2296 + - uid: 2133 components: - - pos: 0.5,-17.5 + - pos: -19.5,31.5 parent: 104 type: Transform - - uid: 2318 + - uid: 2134 components: - - pos: 11.5,-8.5 + - pos: -10.5,28.5 parent: 104 type: Transform - - uid: 2319 + - uid: 2136 components: - - pos: 11.5,-6.5 + - pos: -10.5,27.5 parent: 104 type: Transform -- proto: KitchenMicrowave - entities: - - uid: 10 + - uid: 2137 + components: + - pos: -10.5,26.5 + parent: 104 + type: Transform + - uid: 2138 components: - - pos: 13.5,-6.5 + - pos: -10.5,25.5 parent: 104 type: Transform -- proto: KitchenReagentGrinder - entities: - - uid: 1257 + - uid: 2139 components: - - pos: 3.5,-10.5 + - pos: -10.5,24.5 parent: 104 type: Transform -- proto: LargeBeaker - entities: - - uid: 2021 + - uid: 2140 components: - - pos: 3.435482,-11.231448 + - pos: -9.5,29.5 parent: 104 type: Transform -- proto: LightPostSmall - entities: - - uid: 214 + - uid: 2141 components: - - pos: -19.5,1.5 + - pos: -9.5,28.5 parent: 104 type: Transform - - uid: 217 + - uid: 2142 components: - - pos: -27.5,1.5 + - pos: -9.5,27.5 parent: 104 type: Transform - - uid: 221 + - uid: 2143 components: - - pos: 15.5,16.5 + - pos: -9.5,26.5 parent: 104 type: Transform - - uid: 222 + - uid: 2144 components: - - rot: 1.5707963267948966 rad - pos: -2.5,3.5 + - pos: -9.5,25.5 parent: 104 type: Transform - - uid: 291 + - uid: 2145 components: - - pos: 18.5,5.5 + - pos: -9.5,24.5 parent: 104 type: Transform - - uid: 629 + - uid: 2146 components: - - rot: 1.5707963267948966 rad - pos: -0.5,8.5 + - pos: -8.5,29.5 parent: 104 type: Transform - - uid: 1226 + - uid: 2147 components: - - pos: -4.5,-0.5 + - pos: -8.5,28.5 parent: 104 type: Transform - - uid: 1276 + - uid: 2148 components: - - pos: -34.5,4.5 + - pos: -8.5,27.5 parent: 104 type: Transform - - uid: 1277 + - uid: 2149 components: - - pos: -34.5,1.5 + - pos: -8.5,26.5 parent: 104 type: Transform - - uid: 1278 + - uid: 2150 components: - - pos: -35.5,-20.5 + - pos: -8.5,25.5 parent: 104 type: Transform - - uid: 1279 + - uid: 2151 components: - - pos: -35.5,-23.5 + - pos: -8.5,24.5 parent: 104 type: Transform - - uid: 1280 + - uid: 2152 components: - - pos: -27.5,-20.5 + - pos: -7.5,29.5 parent: 104 type: Transform - - uid: 1284 + - uid: 2153 components: - - pos: -19.5,-20.5 + - pos: -7.5,28.5 parent: 104 type: Transform - - uid: 1413 + - uid: 2154 components: - - pos: 0.5,-22.5 + - pos: -7.5,27.5 parent: 104 type: Transform - - uid: 1668 + - uid: 2155 components: - - pos: 5.5,17.5 + - pos: -7.5,26.5 parent: 104 type: Transform - - uid: 1669 + - uid: 2156 components: - - pos: 10.5,11.5 + - pos: -7.5,25.5 parent: 104 type: Transform - - uid: 1671 + - uid: 2157 components: - - pos: -3.5,17.5 + - pos: -7.5,24.5 parent: 104 type: Transform - - uid: 1675 + - uid: 2158 components: - - pos: 10.5,2.5 + - pos: -6.5,29.5 parent: 104 type: Transform - - uid: 1886 + - uid: 2159 components: - - pos: -10.5,1.5 + - pos: -6.5,28.5 parent: 104 type: Transform - - uid: 1887 + - uid: 2160 components: - - pos: -10.5,-20.5 + - pos: -6.5,27.5 parent: 104 type: Transform -- proto: LockerSyndicatePersonalFilled - entities: - - uid: 178 + - uid: 2161 components: - - pos: 9.5,-13.5 + - pos: -6.5,26.5 parent: 104 type: Transform - - uid: 196 + - uid: 2162 components: - - pos: 11.5,-14.5 + - pos: -6.5,25.5 parent: 104 type: Transform - - uid: 197 + - uid: 2163 components: - - pos: 11.5,-13.5 + - pos: -6.5,24.5 parent: 104 type: Transform - - uid: 198 + - uid: 2164 components: - - pos: 9.5,-14.5 + - pos: -5.5,29.5 parent: 104 type: Transform - - uid: 1271 + - uid: 2165 components: - - pos: 13.5,-13.5 + - pos: -5.5,28.5 parent: 104 type: Transform - - uid: 1375 + - uid: 2166 components: - - pos: 13.5,-14.5 + - pos: -5.5,27.5 parent: 104 type: Transform - - uid: 2476 + - uid: 2167 components: - - pos: 15.5,-6.5 + - pos: -5.5,26.5 parent: 104 type: Transform -- proto: MagazinePistolSubMachineGunPractice - entities: - - uid: 1648 + - uid: 2168 components: - - pos: 5.7430096,13.989216 + - pos: -5.5,25.5 parent: 104 type: Transform - - unspawnedCount: 35 - type: BallisticAmmoProvider -- proto: MedicalBed - entities: - - uid: 1868 + - uid: 2169 components: - - pos: 1.5,-16.5 + - pos: -5.5,24.5 parent: 104 type: Transform - - uid: 1874 + - uid: 2170 components: - - pos: -1.5,-12.5 + - pos: -4.5,29.5 parent: 104 type: Transform - - uid: 1890 + - uid: 2171 components: - - pos: 1.5,-12.5 + - pos: -4.5,28.5 parent: 104 type: Transform - - uid: 1891 + - uid: 2172 components: - - pos: -1.5,-16.5 + - pos: -4.5,27.5 parent: 104 type: Transform -- proto: MedkitAdvancedFilled - entities: - - uid: 447 + - uid: 2173 components: - - pos: 7.5183387,-10.279964 + - pos: -4.5,26.5 parent: 104 type: Transform -- proto: MedkitBruteFilled - entities: - - uid: 138 + - uid: 2174 components: - - pos: 7.5183387,-10.576839 + - pos: -4.5,25.5 parent: 104 type: Transform -- proto: MedkitBurnFilled - entities: - - uid: 1894 + - uid: 2175 components: - - pos: 7.5339637,-10.889339 + - pos: -4.5,24.5 parent: 104 type: Transform -- proto: MedkitFilled - entities: - - uid: 770 + - uid: 2176 components: - - pos: 0.48478004,-16.399067 + - pos: -3.5,28.5 parent: 104 type: Transform -- proto: MedkitOxygenFilled - entities: - - uid: 1895 + - uid: 2177 components: - - pos: 7.5339637,-11.186214 + - pos: -3.5,27.5 parent: 104 type: Transform -- proto: MedkitRadiationFilled - entities: - - uid: 448 + - uid: 2178 components: - - pos: 7.5495887,-11.733089 + - pos: -3.5,26.5 parent: 104 type: Transform -- proto: MedkitToxinFilled - entities: - - uid: 1388 + - uid: 2179 components: - - pos: 7.5339637,-11.436214 + - pos: -3.5,25.5 parent: 104 type: Transform -- proto: Mirror - entities: - - uid: 142 + - uid: 2180 components: - - pos: 9.5,1.5 + - pos: -3.5,24.5 parent: 104 type: Transform - - uid: 146 + - uid: 2181 components: - - pos: 10.5,1.5 + - pos: -2.5,26.5 parent: 104 type: Transform -- proto: ModularGrenade - entities: - - uid: 1326 + - uid: 2183 components: - - pos: 4.001747,-17.289776 + - pos: -2.5,25.5 parent: 104 type: Transform - - uid: 1328 + - uid: 2184 components: - - pos: 4.204872,-17.508755 + - pos: -2.5,24.5 parent: 104 type: Transform -- proto: MonkeyCubeBox - entities: - - uid: 1826 + - uid: 2192 components: - - pos: 14.485744,-16.427467 + - pos: -5.5,-23.5 parent: 104 type: Transform -- proto: MopBucket - entities: - - uid: 149 + - uid: 2194 components: - - pos: 11.5,-3.5 + - pos: 15.5,29.5 parent: 104 type: Transform -- proto: MopItem - entities: - - uid: 150 + - uid: 2195 components: - - pos: 11.5,-3.5 + - pos: 10.5,24.5 parent: 104 type: Transform -- proto: MountainRock - entities: - - uid: 19 + - uid: 2196 components: - - pos: 16.5,1.5 + - pos: 15.5,31.5 parent: 104 type: Transform - - uid: 20 + - uid: 2197 components: - - pos: -3.5,-10.5 + - pos: 16.5,26.5 parent: 104 type: Transform - - uid: 216 + - uid: 2198 components: - - pos: -4.5,-9.5 + - pos: 15.5,30.5 parent: 104 type: Transform - - uid: 238 + - uid: 2199 components: - - pos: -4.5,-13.5 + - pos: 15.5,32.5 parent: 104 type: Transform - - uid: 243 + - uid: 2200 components: - - pos: -4.5,-6.5 + - pos: 16.5,23.5 parent: 104 type: Transform - - uid: 244 + - uid: 2201 components: - - pos: -4.5,-8.5 + - pos: 16.5,24.5 parent: 104 type: Transform - - uid: 246 + - uid: 2202 components: - - pos: -3.5,-8.5 + - pos: 16.5,25.5 parent: 104 type: Transform - - uid: 247 + - uid: 2203 components: - - pos: -4.5,-12.5 + - pos: 10.5,23.5 parent: 104 type: Transform - - uid: 248 + - uid: 2204 components: - - pos: -4.5,-7.5 + - pos: 10.5,25.5 parent: 104 type: Transform - - uid: 249 + - uid: 2205 components: - - pos: -8.5,9.5 + - pos: 10.5,26.5 parent: 104 type: Transform - - uid: 250 + - uid: 2206 components: - - pos: 0.5,-10.5 + - pos: 10.5,27.5 parent: 104 type: Transform - - uid: 251 + - uid: 2207 components: - - pos: 15.5,1.5 + - pos: 10.5,28.5 parent: 104 type: Transform - - uid: 255 + - uid: 2208 components: - - pos: -3.5,-7.5 + - pos: 11.5,23.5 parent: 104 type: Transform - - uid: 257 + - uid: 2209 components: - - pos: 15.5,0.5 + - pos: 11.5,24.5 parent: 104 type: Transform - - uid: 259 + - uid: 2210 components: - - pos: -4.5,-10.5 + - pos: 11.5,25.5 parent: 104 type: Transform - - uid: 263 + - uid: 2211 components: - - pos: -4.5,-11.5 + - pos: 11.5,26.5 parent: 104 type: Transform - - uid: 277 + - uid: 2212 components: - - pos: -10.5,22.5 + - pos: 11.5,27.5 parent: 104 type: Transform - - uid: 292 + - uid: 2213 components: - - pos: -9.5,21.5 + - pos: 11.5,28.5 parent: 104 type: Transform - - uid: 294 + - uid: 2214 components: - - pos: -10.5,21.5 + - pos: 11.5,29.5 parent: 104 type: Transform - - uid: 295 + - uid: 2215 components: - - pos: -11.5,22.5 + - pos: 12.5,23.5 parent: 104 type: Transform - - uid: 296 + - uid: 2216 components: - - pos: -20.5,9.5 + - pos: 12.5,24.5 parent: 104 type: Transform - - uid: 358 + - uid: 2217 components: - - pos: -22.5,21.5 + - pos: 12.5,25.5 parent: 104 type: Transform - - uid: 359 + - uid: 2218 components: - - pos: -22.5,15.5 + - pos: 12.5,26.5 parent: 104 type: Transform - - uid: 360 + - uid: 2219 components: - - pos: -22.5,16.5 + - pos: 12.5,27.5 parent: 104 type: Transform - - uid: 361 + - uid: 2220 components: - - pos: -21.5,17.5 + - pos: 12.5,28.5 parent: 104 type: Transform - - uid: 362 + - uid: 2221 components: - - pos: -21.5,16.5 + - pos: 12.5,29.5 parent: 104 type: Transform - - uid: 363 + - uid: 2222 components: - - pos: -21.5,15.5 + - pos: 12.5,30.5 parent: 104 type: Transform - - uid: 364 + - uid: 2223 components: - - pos: -21.5,14.5 + - pos: 12.5,31.5 parent: 104 type: Transform - - uid: 365 + - uid: 2224 components: - - pos: -22.5,14.5 + - pos: 13.5,23.5 parent: 104 type: Transform - - uid: 366 + - uid: 2225 components: - - pos: -21.5,13.5 + - pos: 13.5,24.5 parent: 104 type: Transform - - uid: 367 + - uid: 2226 components: - - pos: -21.5,20.5 + - pos: 13.5,25.5 parent: 104 type: Transform - - uid: 368 + - uid: 2227 components: - - pos: -21.5,21.5 + - pos: 13.5,26.5 parent: 104 type: Transform - - uid: 369 + - uid: 2228 components: - - pos: -20.5,21.5 + - pos: 13.5,27.5 parent: 104 type: Transform - - uid: 370 + - uid: 2229 components: - - pos: -19.5,21.5 + - pos: 13.5,28.5 parent: 104 type: Transform - - uid: 371 + - uid: 2230 components: - - pos: -20.5,22.5 + - pos: 13.5,29.5 parent: 104 type: Transform - - uid: 372 + - uid: 2231 components: - - pos: -18.5,21.5 + - pos: 13.5,30.5 parent: 104 type: Transform - - uid: 373 + - uid: 2232 components: - - pos: -20.5,8.5 + - pos: 13.5,31.5 parent: 104 type: Transform - - uid: 374 + - uid: 2233 components: - - pos: -22.5,22.5 + - pos: 14.5,23.5 parent: 104 type: Transform - - uid: 375 + - uid: 2234 components: - - pos: -21.5,22.5 + - pos: 14.5,24.5 parent: 104 type: Transform - - uid: 376 + - uid: 2235 components: - - pos: -23.5,22.5 + - pos: 14.5,25.5 parent: 104 type: Transform - - uid: 377 + - uid: 2236 components: - - pos: -20.5,15.5 + - pos: 14.5,26.5 parent: 104 type: Transform - - uid: 401 + - uid: 2237 components: - - pos: -20.5,20.5 + - pos: 14.5,27.5 parent: 104 type: Transform - - uid: 402 + - uid: 2238 components: - - pos: -20.5,19.5 + - pos: 14.5,28.5 parent: 104 type: Transform - - uid: 403 + - uid: 2239 components: - - pos: -20.5,18.5 + - pos: 14.5,29.5 parent: 104 type: Transform - - uid: 404 + - uid: 2240 components: - - pos: -20.5,17.5 + - pos: 14.5,30.5 parent: 104 type: Transform - - uid: 405 + - uid: 2241 components: - - pos: -20.5,16.5 + - pos: 14.5,31.5 parent: 104 type: Transform - - uid: 406 + - uid: 2242 components: - - pos: -20.5,14.5 + - pos: 14.5,32.5 parent: 104 type: Transform - - uid: 407 + - uid: 2243 components: - - pos: -24.5,23.5 + - pos: 15.5,23.5 parent: 104 type: Transform - - uid: 408 + - uid: 2244 components: - - pos: -24.5,22.5 + - pos: 15.5,24.5 parent: 104 type: Transform - - uid: 409 + - uid: 2245 components: - - pos: -20.5,10.5 + - pos: 15.5,25.5 parent: 104 type: Transform - - uid: 410 + - uid: 2246 components: - - pos: -9.5,22.5 + - pos: 15.5,26.5 parent: 104 type: Transform - - uid: 415 + - uid: 2247 components: - - pos: -18.5,23.5 + - pos: 15.5,27.5 parent: 104 type: Transform - - uid: 417 + - uid: 2248 components: - - pos: -16.5,6.5 + - pos: 15.5,28.5 parent: 104 type: Transform - - uid: 419 + - uid: 2249 components: - - pos: -7.5,21.5 + - pos: 19.5,25.5 parent: 104 type: Transform - - uid: 420 + - uid: 2250 components: - - pos: -8.5,21.5 + - pos: 19.5,26.5 parent: 104 type: Transform - - uid: 421 + - uid: 2251 components: - - pos: -10.5,23.5 + - pos: 19.5,27.5 parent: 104 type: Transform - - uid: 422 + - uid: 2252 components: - - pos: -11.5,23.5 + - pos: 19.5,28.5 parent: 104 type: Transform - - uid: 423 + - uid: 2253 components: - - pos: -19.5,22.5 + - pos: 19.5,29.5 parent: 104 type: Transform - - uid: 425 + - uid: 2254 components: - - pos: -18.5,22.5 + - pos: 19.5,30.5 parent: 104 type: Transform - - uid: 426 + - uid: 2255 components: - - pos: -7.5,12.5 + - pos: 19.5,31.5 parent: 104 type: Transform - - uid: 455 + - uid: 2256 components: - - pos: 1.5,-19.5 + - pos: 20.5,26.5 parent: 104 type: Transform - - uid: 469 + - uid: 2259 components: - - pos: -8.5,10.5 + - pos: 20.5,27.5 parent: 104 type: Transform - - uid: 471 + - uid: 2260 components: - - pos: -9.5,10.5 + - pos: 20.5,28.5 parent: 104 type: Transform - - uid: 473 + - uid: 2261 components: - - pos: -8.5,11.5 + - pos: 20.5,29.5 parent: 104 type: Transform - - uid: 475 + - uid: 2262 components: - - pos: -9.5,11.5 + - pos: 16.5,27.5 parent: 104 type: Transform - - uid: 477 + - uid: 2263 components: - - pos: 16.5,0.5 + - pos: 16.5,28.5 parent: 104 type: Transform - - uid: 478 + - uid: 2264 components: - - pos: -6.5,12.5 + - pos: 16.5,29.5 parent: 104 type: Transform - - uid: 479 + - uid: 2265 components: - - pos: -2.5,-18.5 + - pos: 16.5,30.5 parent: 104 type: Transform - - uid: 480 + - uid: 2266 components: - - pos: -2.5,-19.5 + - pos: 16.5,31.5 parent: 104 type: Transform - - uid: 483 + - uid: 2267 components: - - pos: -2.5,-10.5 + - pos: 16.5,32.5 parent: 104 type: Transform - - uid: 485 + - uid: 2268 components: - - pos: -2.5,-6.5 + - pos: 17.5,23.5 parent: 104 type: Transform - - uid: 488 + - uid: 2269 components: - - pos: -2.5,-7.5 + - pos: 17.5,24.5 parent: 104 type: Transform - - uid: 489 + - uid: 2270 components: - - pos: -2.5,-8.5 + - pos: 17.5,25.5 parent: 104 type: Transform - - uid: 492 + - uid: 2271 components: - - pos: -3.5,-20.5 + - pos: 17.5,26.5 parent: 104 type: Transform - - uid: 502 + - uid: 2272 components: - - pos: -3.5,-18.5 + - pos: 17.5,27.5 parent: 104 type: Transform - - uid: 504 + - uid: 2273 components: - - pos: -2.5,-9.5 + - pos: 17.5,28.5 parent: 104 type: Transform - - uid: 505 + - uid: 2274 components: - - pos: -3.5,-19.5 + - pos: 17.5,29.5 parent: 104 type: Transform - - uid: 506 + - uid: 2275 components: - - pos: 17.5,-1.5 + - pos: 17.5,30.5 parent: 104 type: Transform - - uid: 509 + - uid: 2276 components: - - pos: -4.5,-19.5 + - pos: 17.5,31.5 parent: 104 type: Transform - - uid: 511 + - uid: 2277 components: - - pos: -4.5,-18.5 + - pos: 17.5,32.5 parent: 104 type: Transform - - uid: 512 + - uid: 2278 components: - - pos: -9.5,12.5 + - pos: 18.5,23.5 parent: 104 type: Transform - - uid: 513 + - uid: 2279 components: - - pos: -3.5,-9.5 + - pos: 18.5,24.5 parent: 104 type: Transform - - uid: 521 + - uid: 2280 components: - - pos: -4.5,-14.5 + - pos: 18.5,25.5 parent: 104 type: Transform - - uid: 522 + - uid: 2281 components: - - pos: -1.5,19.5 + - pos: 18.5,26.5 parent: 104 type: Transform - - uid: 524 + - uid: 2282 components: - - pos: -0.5,19.5 + - pos: 18.5,27.5 parent: 104 type: Transform - - uid: 525 + - uid: 2283 components: - - pos: 9.5,20.5 + - pos: 18.5,28.5 parent: 104 type: Transform - - uid: 529 + - uid: 2284 components: - - pos: 10.5,19.5 + - pos: 18.5,29.5 parent: 104 type: Transform - - uid: 531 + - uid: 2285 components: - - pos: 11.5,19.5 + - pos: 18.5,30.5 parent: 104 type: Transform - - uid: 532 + - uid: 2286 components: - - pos: 12.5,19.5 + - pos: 18.5,31.5 parent: 104 type: Transform - - uid: 533 + - uid: 2287 components: - - pos: 16.5,19.5 + - pos: 18.5,32.5 parent: 104 type: Transform - - uid: 534 + - uid: 2288 components: - - pos: 17.5,19.5 + - pos: 19.5,23.5 parent: 104 type: Transform - - uid: 535 + - uid: 2289 components: - - pos: 18.5,19.5 + - pos: 19.5,24.5 parent: 104 type: Transform - - uid: 536 +- proto: BalloonSyn + entities: + - uid: 1327 components: - - pos: 18.5,11.5 + - pos: 0.03361702,-6.368435 parent: 104 type: Transform - - uid: 537 +- proto: BaseComputer + entities: + - uid: 18 components: - - pos: 18.5,12.5 + - rot: 3.141592653589793 rad + pos: 0.5,-8.5 parent: 104 type: Transform - - uid: 538 + - uid: 29 components: - - pos: 18.5,15.5 + - rot: 3.141592653589793 rad + pos: 1.5,-8.5 parent: 104 type: Transform - - uid: 539 + - uid: 111 components: - - pos: 18.5,18.5 + - rot: -1.5707963267948966 rad + pos: 7.5,-1.5 parent: 104 type: Transform - - uid: 540 + - uid: 2292 components: - - pos: 22.5,3.5 + - rot: -1.5707963267948966 rad + pos: 7.5,-2.5 parent: 104 type: Transform - - uid: 541 + - uid: 2295 components: - - pos: 23.5,3.5 + - rot: -1.5707963267948966 rad + pos: 7.5,-3.5 parent: 104 type: Transform - - uid: 542 +- proto: Beaker + entities: + - uid: 2031 components: - - pos: 24.5,3.5 + - pos: 3.419857,-11.512698 parent: 104 type: Transform - - uid: 543 + - uid: 2095 components: - - pos: 25.5,3.5 + - pos: 3.669857,-11.387698 parent: 104 type: Transform - - uid: 544 +- proto: Bed + entities: + - uid: 957 components: - - pos: 26.5,3.5 + - pos: 15.5,-3.5 parent: 104 type: Transform - - uid: 545 + - uid: 1548 components: - - pos: 27.5,3.5 + - pos: 15.5,-4.5 parent: 104 type: Transform - - uid: 546 +- proto: BedsheetMedical + entities: + - uid: 1872 components: - - pos: 28.5,3.5 + - pos: 1.5,-12.5 parent: 104 type: Transform - - uid: 547 + - uid: 1877 components: - - pos: 29.5,3.5 + - pos: -1.5,-16.5 parent: 104 type: Transform - - uid: 548 + - uid: 1898 components: - - pos: 30.5,3.5 + - pos: 1.5,-16.5 parent: 104 type: Transform - - uid: 549 + - uid: 1899 components: - - pos: 22.5,-22.5 + - pos: -1.5,-12.5 parent: 104 type: Transform - - uid: 550 +- proto: BedsheetSyndie + entities: + - uid: 154 components: - - pos: 31.5,-20.5 + - pos: 15.5,-3.5 parent: 104 type: Transform - - uid: 551 + - uid: 289 components: - - pos: 31.5,-19.5 + - pos: 15.5,-4.5 parent: 104 type: Transform - - uid: 552 +- proto: BigBox + entities: + - uid: 2458 components: - - pos: 31.5,-18.5 + - pos: 13.500806,-4.4874377 parent: 104 type: Transform - - uid: 553 +- proto: Bookshelf + entities: + - uid: 140 components: - - pos: 31.5,-17.5 + - pos: -0.5,-0.5 parent: 104 type: Transform - - uid: 554 +- proto: BoozeDispenser + entities: + - uid: 230 components: - - pos: 31.5,-16.5 + - rot: 3.141592653589793 rad + pos: 2.5,-8.5 parent: 104 type: Transform - - uid: 555 +- proto: BoxBeaker + entities: + - uid: 2114 components: - - pos: 31.5,-15.5 + - pos: 3.622982,-12.387698 parent: 104 type: Transform - - uid: 556 +- proto: BoxFolderBlack + entities: + - uid: 1022 components: - - pos: 31.5,-14.5 + - pos: -13.494709,9.54891 parent: 104 type: Transform - - uid: 557 +- proto: BoxMagazinePistolCaselessRiflePractice + entities: + - uid: 1635 components: - - pos: 31.5,-13.5 + - pos: 5.4970627,10.597828 parent: 104 type: Transform - - uid: 558 +- proto: BoxMagazinePistolSubMachineGunPractice + entities: + - uid: 1634 components: - - pos: 31.5,-12.5 + - pos: 5.388983,13.953581 parent: 104 type: Transform - - uid: 559 +- proto: BoxPillCanister + entities: + - uid: 1844 components: - - pos: 31.5,-7.5 + - pos: 3.451107,-12.293948 parent: 104 type: Transform - - uid: 560 +- proto: BoxShotgunPractice + entities: + - uid: 1633 components: - - pos: 31.5,-6.5 + - pos: 5.4972115,14.562988 parent: 104 type: Transform - - uid: 561 + - unspawnedCount: 12 + type: BallisticAmmoProvider +- proto: Bucket + entities: + - uid: 153 components: - - pos: 31.5,-5.5 + - pos: 10.809023,-4.25956 parent: 104 type: Transform - - uid: 562 +- proto: CableApcExtension + entities: + - uid: 13 components: - - pos: 31.5,-4.5 + - pos: -10.5,-5.5 parent: 104 type: Transform - - uid: 563 + - enabled: True + type: AmbientSound + - uid: 100 components: - - pos: 31.5,-3.5 + - pos: 13.5,0.5 parent: 104 type: Transform - - uid: 564 + - uid: 143 components: - - pos: 31.5,-2.5 + - pos: 12.5,0.5 parent: 104 type: Transform - - uid: 565 + - uid: 220 components: - - pos: 31.5,-1.5 + - pos: 11.5,0.5 parent: 104 type: Transform - - uid: 566 + - uid: 235 components: - - pos: 31.5,-0.5 + - pos: 1.5,-13.5 parent: 104 type: Transform - - uid: 567 + - uid: 245 components: - - pos: 31.5,0.5 + - pos: 12.5,-18.5 parent: 104 type: Transform - - uid: 568 + - uid: 279 components: - - pos: 31.5,1.5 + - pos: 11.5,-0.5 parent: 104 type: Transform - - uid: 569 + - uid: 297 components: - - pos: 17.5,-22.5 + - pos: 3.5,-14.5 parent: 104 type: Transform - - uid: 570 + - uid: 390 components: - - pos: 18.5,-22.5 + - pos: -10.5,-7.5 parent: 104 type: Transform - - uid: 571 + - enabled: True + type: AmbientSound + - uid: 397 components: - - pos: 19.5,-22.5 + - pos: -10.5,0.5 parent: 104 type: Transform - - uid: 572 + - enabled: True + type: AmbientSound + - uid: 411 components: - - pos: 20.5,-22.5 + - pos: -10.5,-8.5 parent: 104 type: Transform - - uid: 573 + - enabled: True + type: AmbientSound + - uid: 429 components: - - pos: 21.5,-22.5 + - pos: -10.5,-0.5 parent: 104 type: Transform - - uid: 574 + - enabled: True + type: AmbientSound + - uid: 430 components: - - pos: -5.5,-22.5 + - pos: -10.5,1.5 parent: 104 type: Transform - - uid: 575 + - enabled: True + type: AmbientSound + - uid: 432 components: - - pos: 23.5,-22.5 + - pos: -27.5,1.5 parent: 104 type: Transform - - uid: 576 + - enabled: True + type: AmbientSound + - uid: 434 components: - - pos: 24.5,-22.5 + - pos: -31.5,1.5 parent: 104 type: Transform - - uid: 577 + - enabled: True + type: AmbientSound + - uid: 435 components: - - pos: 25.5,-22.5 + - pos: -10.5,-4.5 parent: 104 type: Transform - - uid: 578 + - enabled: True + type: AmbientSound + - uid: 436 components: - - pos: 26.5,-22.5 + - pos: -10.5,-6.5 parent: 104 type: Transform - - uid: 579 + - enabled: True + type: AmbientSound + - uid: 437 components: - - pos: 27.5,-22.5 + - pos: -10.5,-9.5 parent: 104 type: Transform - - uid: 580 + - enabled: True + type: AmbientSound + - uid: 438 components: - - pos: 28.5,-22.5 + - pos: -25.5,1.5 parent: 104 type: Transform - - uid: 581 + - enabled: True + type: AmbientSound + - uid: 439 components: - - pos: -4.5,-20.5 + - pos: -10.5,-3.5 parent: 104 type: Transform - - uid: 582 + - enabled: True + type: AmbientSound + - uid: 442 components: - - pos: -4.5,-15.5 + - pos: -33.5,1.5 parent: 104 type: Transform - - uid: 586 + - enabled: True + type: AmbientSound + - uid: 444 components: - - pos: 4.5,-22.5 + - pos: -10.5,1.5 parent: 104 type: Transform - - uid: 587 + - enabled: True + type: AmbientSound + - uid: 449 components: - - pos: 5.5,-22.5 + - pos: -11.5,1.5 parent: 104 type: Transform - - uid: 588 + - enabled: True + type: AmbientSound + - uid: 450 components: - - pos: 6.5,-22.5 + - pos: -12.5,1.5 parent: 104 type: Transform - - uid: 589 + - enabled: True + type: AmbientSound + - uid: 451 components: - - pos: 7.5,-22.5 + - pos: -13.5,1.5 parent: 104 type: Transform - - uid: 590 + - enabled: True + type: AmbientSound + - uid: 452 components: - - pos: 8.5,-22.5 + - pos: -14.5,1.5 parent: 104 type: Transform - - uid: 595 + - enabled: True + type: AmbientSound + - uid: 453 components: - - pos: -5.5,-21.5 + - pos: -32.5,1.5 parent: 104 type: Transform - - uid: 596 + - enabled: True + type: AmbientSound + - uid: 454 components: - - pos: -5.5,-20.5 + - pos: -15.5,1.5 parent: 104 type: Transform - - uid: 597 + - enabled: True + type: AmbientSound + - uid: 464 components: - - pos: -5.5,-19.5 + - pos: -16.5,1.5 parent: 104 type: Transform - - uid: 598 + - enabled: True + type: AmbientSound + - uid: 465 components: - - pos: -5.5,-18.5 + - pos: -17.5,1.5 parent: 104 type: Transform - - uid: 599 + - enabled: True + type: AmbientSound + - uid: 466 components: - - pos: -5.5,-17.5 + - pos: -18.5,1.5 parent: 104 type: Transform - - uid: 600 + - enabled: True + type: AmbientSound + - uid: 467 components: - - pos: -5.5,-16.5 + - pos: -19.5,1.5 parent: 104 type: Transform - - uid: 601 + - enabled: True + type: AmbientSound + - uid: 501 components: - - pos: -5.5,-15.5 + - pos: -34.5,1.5 parent: 104 type: Transform - - uid: 602 + - enabled: True + type: AmbientSound + - uid: 503 components: - - pos: -5.5,-14.5 + - pos: -20.5,1.5 parent: 104 type: Transform - - uid: 603 + - enabled: True + type: AmbientSound + - uid: 508 components: - - pos: -5.5,-13.5 + - pos: -21.5,1.5 parent: 104 type: Transform - - uid: 604 + - enabled: True + type: AmbientSound + - uid: 510 components: - - pos: -5.5,-12.5 + - pos: -22.5,1.5 parent: 104 type: Transform - - uid: 605 + - enabled: True + type: AmbientSound + - uid: 514 components: - - pos: -5.5,-11.5 + - pos: -23.5,1.5 parent: 104 type: Transform - - uid: 606 + - enabled: True + type: AmbientSound + - uid: 515 components: - - pos: -5.5,-10.5 + - pos: -24.5,1.5 parent: 104 type: Transform - - uid: 607 + - enabled: True + type: AmbientSound + - uid: 619 components: - - pos: -5.5,-9.5 + - pos: -10.5,-12.5 parent: 104 type: Transform - - uid: 608 + - enabled: True + type: AmbientSound + - uid: 624 components: - - pos: -5.5,-8.5 + - pos: -10.5,-10.5 parent: 104 type: Transform - - uid: 609 + - enabled: True + type: AmbientSound + - uid: 625 components: - - pos: -5.5,-7.5 + - pos: -10.5,-11.5 parent: 104 type: Transform - - uid: 610 + - enabled: True + type: AmbientSound + - uid: 627 components: - - pos: -14.5,16.5 + - pos: -10.5,-15.5 parent: 104 type: Transform - - uid: 614 + - enabled: True + type: AmbientSound + - uid: 628 components: - - pos: -16.5,15.5 + - pos: -10.5,-16.5 parent: 104 type: Transform - - uid: 615 + - enabled: True + type: AmbientSound + - uid: 630 components: - - pos: -10.5,9.5 + - pos: -10.5,-17.5 parent: 104 type: Transform - - uid: 618 + - enabled: True + type: AmbientSound + - uid: 635 components: - - pos: -8.5,12.5 + - pos: -10.5,-20.5 parent: 104 type: Transform - - uid: 621 + - enabled: True + type: AmbientSound + - uid: 636 components: - - pos: -9.5,9.5 + - pos: -11.5,-20.5 parent: 104 type: Transform - - uid: 622 + - enabled: True + type: AmbientSound + - uid: 638 components: - - pos: -10.5,10.5 + - pos: -12.5,-20.5 parent: 104 type: Transform - - uid: 632 + - enabled: True + type: AmbientSound + - uid: 639 components: - - pos: -10.5,12.5 + - pos: -13.5,-20.5 parent: 104 type: Transform - - uid: 637 + - enabled: True + type: AmbientSound + - uid: 644 components: - - pos: -10.5,11.5 + - pos: -30.5,-20.5 parent: 104 type: Transform - - uid: 640 + - enabled: True + type: AmbientSound + - uid: 645 components: - - pos: -16.5,5.5 + - pos: -31.5,-20.5 parent: 104 type: Transform - - uid: 648 + - enabled: True + type: AmbientSound + - uid: 646 components: - - pos: -11.5,13.5 + - pos: -32.5,-20.5 parent: 104 type: Transform - - uid: 670 + - enabled: True + type: AmbientSound + - uid: 653 components: - - pos: -18.5,10.5 + - pos: -15.5,-20.5 parent: 104 type: Transform - - uid: 672 + - enabled: True + type: AmbientSound + - uid: 654 components: - - pos: -16.5,16.5 + - pos: -16.5,-20.5 parent: 104 type: Transform - - uid: 673 + - enabled: True + type: AmbientSound + - uid: 655 components: - - pos: -11.5,12.5 + - pos: -17.5,-20.5 parent: 104 type: Transform - - uid: 674 + - enabled: True + type: AmbientSound + - uid: 656 components: - - pos: -19.5,15.5 + - pos: -18.5,-20.5 parent: 104 type: Transform - - uid: 676 + - enabled: True + type: AmbientSound + - uid: 657 components: - - pos: -19.5,16.5 + - pos: -19.5,-20.5 parent: 104 type: Transform - - uid: 677 + - enabled: True + type: AmbientSound + - uid: 658 components: - - pos: -18.5,11.5 + - pos: -20.5,-20.5 parent: 104 type: Transform - - uid: 678 + - enabled: True + type: AmbientSound + - uid: 659 components: - - pos: -14.5,11.5 + - pos: -21.5,-20.5 parent: 104 type: Transform - - uid: 679 + - enabled: True + type: AmbientSound + - uid: 660 components: - - pos: -14.5,17.5 + - pos: -22.5,-20.5 parent: 104 type: Transform - - uid: 680 + - enabled: True + type: AmbientSound + - uid: 661 components: - - pos: -14.5,18.5 + - pos: -23.5,-20.5 parent: 104 type: Transform - - uid: 681 + - enabled: True + type: AmbientSound + - uid: 662 components: - - pos: -15.5,14.5 + - pos: -24.5,-20.5 parent: 104 type: Transform - - uid: 682 + - enabled: True + type: AmbientSound + - uid: 665 components: - - pos: -24.5,25.5 + - pos: -25.5,-20.5 parent: 104 type: Transform - - uid: 684 + - enabled: True + type: AmbientSound + - uid: 666 components: - - pos: -17.5,13.5 + - pos: -26.5,-20.5 parent: 104 type: Transform - - uid: 685 + - enabled: True + type: AmbientSound + - uid: 667 components: - - pos: -15.5,16.5 + - pos: -27.5,-20.5 parent: 104 type: Transform - - uid: 686 + - enabled: True + type: AmbientSound + - uid: 668 components: - - pos: -12.5,12.5 + - pos: -28.5,-20.5 parent: 104 type: Transform - - uid: 687 + - enabled: True + type: AmbientSound + - uid: 669 components: - - pos: -12.5,11.5 + - pos: -29.5,-20.5 parent: 104 type: Transform - - uid: 688 + - enabled: True + type: AmbientSound + - uid: 707 components: - - pos: -11.5,14.5 + - pos: -33.5,-20.5 parent: 104 type: Transform - - uid: 689 + - enabled: True + type: AmbientSound + - uid: 713 components: - - pos: -15.5,15.5 + - pos: -34.5,-20.5 parent: 104 type: Transform - - uid: 690 + - enabled: True + type: AmbientSound + - uid: 814 components: - - pos: -14.5,14.5 + - pos: -6.5,-3.5 parent: 104 type: Transform - - uid: 691 + - uid: 832 components: - - pos: -19.5,14.5 + - pos: -7.5,-3.5 parent: 104 type: Transform - - uid: 692 + - uid: 845 components: - - pos: -13.5,16.5 + - pos: -10.5,-1.5 parent: 104 type: Transform - - uid: 693 + - enabled: True + type: AmbientSound + - uid: 866 components: - - pos: -17.5,15.5 + - pos: -10.5,-2.5 parent: 104 type: Transform - - uid: 694 + - enabled: True + type: AmbientSound + - uid: 867 components: - - pos: -11.5,9.5 + - pos: -5.5,-3.5 parent: 104 type: Transform - - uid: 695 + - uid: 868 components: - - pos: -20.5,23.5 + - pos: -10.5,-3.5 parent: 104 type: Transform - - uid: 699 + - enabled: True + type: AmbientSound + - uid: 870 components: - - pos: -18.5,8.5 + - pos: -9.5,-3.5 parent: 104 type: Transform - - uid: 700 + - enabled: True + type: AmbientSound + - uid: 877 components: - - pos: -18.5,9.5 + - pos: -8.5,-3.5 parent: 104 type: Transform - - uid: 701 + - uid: 884 components: - - pos: -13.5,12.5 + - pos: -4.5,-3.5 parent: 104 type: Transform - - uid: 702 + - uid: 920 components: - - pos: -13.5,17.5 + - pos: -10.5,-13.5 parent: 104 type: Transform - - uid: 703 + - enabled: True + type: AmbientSound + - uid: 926 components: - - pos: -13.5,18.5 + - pos: -30.5,1.5 parent: 104 type: Transform - - uid: 704 + - enabled: True + type: AmbientSound + - uid: 927 components: - - pos: -15.5,18.5 + - pos: -26.5,1.5 parent: 104 type: Transform - - uid: 705 + - enabled: True + type: AmbientSound + - uid: 931 components: - - pos: -17.5,14.5 + - pos: 12.5,-19.5 parent: 104 type: Transform - - uid: 706 + - uid: 933 components: - - pos: -11.5,11.5 + - pos: -10.5,-19.5 parent: 104 type: Transform - - uid: 708 + - enabled: True + type: AmbientSound + - uid: 934 components: - - pos: -17.5,11.5 + - pos: -10.5,-14.5 parent: 104 type: Transform - - uid: 709 + - enabled: True + type: AmbientSound + - uid: 941 components: - - pos: -17.5,16.5 + - pos: -14.5,-20.5 parent: 104 type: Transform - - uid: 711 + - enabled: True + type: AmbientSound + - uid: 960 components: - - pos: -17.5,10.5 + - pos: 12.5,-17.5 parent: 104 type: Transform - - uid: 712 + - uid: 961 components: - - pos: -15.5,17.5 + - pos: 11.5,-16.5 parent: 104 type: Transform - - uid: 714 + - uid: 962 components: - - pos: -11.5,17.5 + - pos: 6.5,-14.5 parent: 104 type: Transform - - uid: 716 + - uid: 967 components: - - pos: -13.5,13.5 + - pos: 9.5,-16.5 parent: 104 type: Transform - - uid: 717 + - uid: 968 components: - - pos: -13.5,14.5 + - pos: 7.5,-16.5 parent: 104 type: Transform - - uid: 718 + - uid: 969 components: - - pos: -18.5,14.5 + - pos: -10.5,-18.5 parent: 104 type: Transform - - uid: 719 + - enabled: True + type: AmbientSound + - uid: 970 components: - - pos: -18.5,15.5 + - pos: -29.5,1.5 parent: 104 type: Transform - - uid: 720 + - enabled: True + type: AmbientSound + - uid: 971 components: - - pos: -18.5,16.5 + - pos: -28.5,1.5 parent: 104 type: Transform - - uid: 721 + - enabled: True + type: AmbientSound + - uid: 973 components: - - pos: -17.5,8.5 + - pos: 5.5,-17.5 parent: 104 type: Transform - - uid: 722 + - uid: 979 components: - - pos: -16.5,13.5 + - pos: 1.5,-16.5 parent: 104 type: Transform - - uid: 723 + - uid: 981 components: - - pos: -16.5,14.5 + - pos: 5.5,-14.5 parent: 104 type: Transform - - uid: 724 + - uid: 982 components: - - pos: -12.5,17.5 + - pos: 12.5,-16.5 parent: 104 type: Transform - - uid: 725 + - uid: 983 components: - - pos: -12.5,18.5 + - pos: 5.5,-16.5 parent: 104 type: Transform - - uid: 726 + - uid: 1115 components: - - pos: -14.5,12.5 + - pos: 4.5,-14.5 parent: 104 type: Transform - - uid: 728 + - uid: 1116 components: - - pos: -14.5,13.5 + - pos: 1.5,-12.5 parent: 104 type: Transform - - uid: 729 + - uid: 1117 components: - - pos: -18.5,17.5 + - pos: 6.5,-16.5 parent: 104 type: Transform - - uid: 733 + - uid: 1122 components: - - pos: -18.5,18.5 + - pos: 1.5,-14.5 parent: 104 type: Transform - - uid: 734 + - uid: 1152 components: - - pos: -18.5,19.5 + - pos: 12.5,-20.5 parent: 104 type: Transform - - uid: 735 + - uid: 1154 components: - - pos: -12.5,13.5 + - pos: 3.5,-13.5 parent: 104 type: Transform - - uid: 740 + - uid: 1182 components: - - pos: -12.5,15.5 + - pos: 5.5,-15.5 parent: 104 type: Transform - - uid: 741 + - uid: 1183 components: - - pos: -19.5,17.5 + - pos: 7.5,-14.5 parent: 104 type: Transform - - uid: 745 + - uid: 1191 components: - - pos: -19.5,18.5 + - pos: 3.5,-12.5 parent: 104 type: Transform - - uid: 746 + - uid: 1194 components: - - pos: -19.5,19.5 + - pos: 2.5,-14.5 parent: 104 type: Transform - - uid: 747 + - uid: 1195 components: - - pos: -16.5,17.5 + - pos: 8.5,-16.5 parent: 104 type: Transform - - uid: 752 + - uid: 1200 components: - - pos: -16.5,18.5 + - pos: 1.5,-15.5 parent: 104 type: Transform - - uid: 753 + - uid: 1204 components: - - pos: -15.5,11.5 + - pos: 10.5,-16.5 parent: 104 type: Transform - - uid: 755 + - uid: 1232 components: - - pos: -15.5,12.5 + - pos: -10.5,6.5 parent: 104 type: Transform - - uid: 756 + - uid: 1233 components: - - pos: -12.5,14.5 + - pos: -10.5,5.5 parent: 104 type: Transform - - uid: 757 + - uid: 1234 components: - - pos: -16.5,12.5 + - pos: -10.5,4.5 parent: 104 type: Transform - - uid: 758 + - enabled: True + type: AmbientSound + - uid: 1235 components: - - pos: -13.5,15.5 + - pos: -10.5,3.5 parent: 104 type: Transform - - uid: 759 + - enabled: True + type: AmbientSound + - uid: 1236 components: - - pos: -19.5,9.5 + - pos: -10.5,2.5 parent: 104 type: Transform - - uid: 762 + - enabled: True + type: AmbientSound + - uid: 1237 components: - - pos: -17.5,9.5 + - pos: -11.5,6.5 parent: 104 type: Transform - - uid: 763 + - uid: 1238 components: - - pos: -17.5,17.5 + - pos: -12.5,6.5 parent: 104 type: Transform - - uid: 764 + - uid: 1239 components: - - pos: -17.5,18.5 + - pos: -13.5,6.5 parent: 104 type: Transform - - uid: 765 + - uid: 1240 components: - - pos: -16.5,11.5 + - pos: -14.5,6.5 parent: 104 type: Transform - - uid: 768 + - uid: 1275 components: - - pos: -19.5,8.5 + - pos: -6.5,-2.5 parent: 104 type: Transform - - uid: 771 + - uid: 1281 components: - - pos: -6.5,13.5 + - pos: -6.5,-1.5 parent: 104 type: Transform - - uid: 774 + - uid: 1282 components: - - pos: -10.5,18.5 + - pos: -6.5,-0.5 parent: 104 type: Transform - - uid: 775 + - uid: 1283 components: - - pos: -10.5,17.5 + - pos: -6.5,0.5 parent: 104 type: Transform - - uid: 776 + - uid: 1292 components: - - pos: -10.5,16.5 + - pos: 3.5,1.5 parent: 104 type: Transform - - uid: 777 + - uid: 1337 components: - - pos: -10.5,15.5 + - pos: -6.5,-4.5 parent: 104 type: Transform - - uid: 778 + - uid: 1338 components: - - pos: -10.5,14.5 + - pos: -6.5,-5.5 parent: 104 type: Transform - - uid: 779 + - uid: 1339 components: - - pos: -10.5,13.5 + - pos: -6.5,-6.5 parent: 104 type: Transform - - uid: 780 + - uid: 1340 components: - - pos: -9.5,19.5 + - pos: -6.5,-7.5 parent: 104 type: Transform - - uid: 781 + - uid: 1341 components: - - pos: -9.5,18.5 + - pos: -6.5,-8.5 parent: 104 type: Transform - - uid: 782 + - uid: 1342 components: - - pos: -9.5,17.5 + - pos: -6.5,-9.5 parent: 104 type: Transform - - uid: 783 + - uid: 1343 components: - - pos: -9.5,16.5 + - pos: -6.5,-10.5 parent: 104 type: Transform - - uid: 784 + - uid: 1344 components: - - pos: -9.5,15.5 + - pos: -6.5,-11.5 parent: 104 type: Transform - - uid: 785 + - uid: 1345 components: - - pos: -9.5,14.5 + - pos: -6.5,-12.5 parent: 104 type: Transform - - uid: 786 + - uid: 1346 components: - - pos: -9.5,13.5 + - pos: -6.5,-13.5 parent: 104 type: Transform - - uid: 787 + - uid: 1347 components: - - pos: -8.5,19.5 + - pos: -6.5,-14.5 parent: 104 type: Transform - - uid: 788 + - uid: 1348 components: - - pos: -8.5,18.5 + - pos: -6.5,-15.5 parent: 104 type: Transform - - uid: 789 + - uid: 1349 components: - - pos: -8.5,17.5 + - pos: -6.5,-16.5 parent: 104 type: Transform - - uid: 790 + - uid: 1439 components: - - pos: -8.5,15.5 + - pos: 20.5,-12.5 parent: 104 type: Transform - - uid: 791 + - uid: 1449 components: - - pos: -8.5,14.5 + - pos: 16.5,-13.5 parent: 104 type: Transform - - uid: 792 + - uid: 1450 components: - - pos: -8.5,13.5 + - pos: 15.5,-13.5 parent: 104 type: Transform - - uid: 793 + - uid: 1451 components: - - pos: -7.5,19.5 + - pos: 15.5,-12.5 parent: 104 type: Transform - - uid: 794 + - uid: 1452 components: - - pos: -7.5,18.5 + - pos: 15.5,-11.5 parent: 104 type: Transform - - uid: 795 + - uid: 1453 components: - - pos: -7.5,15.5 + - pos: 15.5,-10.5 parent: 104 type: Transform - - uid: 796 + - uid: 1454 components: - - pos: -7.5,14.5 + - pos: 14.5,-10.5 parent: 104 type: Transform - - uid: 797 + - uid: 1455 components: - - pos: -7.5,13.5 + - pos: 13.5,-10.5 parent: 104 type: Transform - - uid: 798 + - uid: 1456 components: - - pos: -15.5,13.5 + - pos: 12.5,-10.5 parent: 104 type: Transform - - uid: 801 + - uid: 1457 components: - - pos: -12.5,16.5 + - pos: 11.5,-10.5 parent: 104 type: Transform - - uid: 802 + - uid: 1458 components: - - pos: -14.5,15.5 + - pos: 15.5,-14.5 parent: 104 type: Transform - - uid: 803 + - uid: 1459 components: - - pos: -19.5,23.5 + - pos: 14.5,-14.5 parent: 104 type: Transform - - uid: 804 + - uid: 1460 components: - - pos: -24.5,24.5 + - pos: 13.5,-14.5 parent: 104 type: Transform - - uid: 805 + - uid: 1461 components: - - pos: -19.5,10.5 + - pos: 12.5,-14.5 parent: 104 type: Transform - - uid: 806 + - uid: 1474 components: - - pos: -17.5,12.5 + - pos: 7.5,-5.5 parent: 104 type: Transform - - uid: 807 + - uid: 1475 components: - - pos: -11.5,16.5 + - pos: 6.5,-1.5 parent: 104 type: Transform - - uid: 808 + - uid: 1476 components: - - pos: -11.5,15.5 + - pos: 3.5,0.5 parent: 104 type: Transform - - uid: 809 + - uid: 1488 components: - - pos: -13.5,11.5 + - pos: 6.5,-5.5 parent: 104 type: Transform - - uid: 810 + - uid: 1489 components: - - pos: -19.5,20.5 + - pos: 8.5,-5.5 parent: 104 type: Transform - - uid: 1020 + - uid: 1490 components: - - pos: -18.5,20.5 + - pos: 6.5,-4.5 parent: 104 type: Transform - - uid: 1021 + - uid: 1491 components: - - pos: -10.5,20.5 + - pos: 6.5,-3.5 parent: 104 type: Transform - - uid: 1027 + - uid: 1492 components: - - pos: -9.5,20.5 + - pos: 6.5,-2.5 parent: 104 type: Transform - - uid: 1028 + - uid: 1493 components: - - pos: -8.5,20.5 + - pos: 6.5,-0.5 parent: 104 type: Transform - - uid: 1029 + - uid: 1494 components: - - pos: -7.5,20.5 + - pos: 5.5,-0.5 parent: 104 type: Transform - - uid: 1030 + - uid: 1495 components: - - pos: -2.5,20.5 + - pos: 4.5,-0.5 parent: 104 type: Transform - - uid: 1031 + - uid: 1496 components: - - pos: -1.5,20.5 + - pos: 4.5,0.5 parent: 104 type: Transform - - uid: 1032 + - uid: 1497 components: - - pos: -0.5,20.5 + - pos: 2.5,0.5 parent: 104 type: Transform - - uid: 1033 + - uid: 1498 components: - - pos: 9.5,22.5 + - pos: 2.5,-0.5 parent: 104 type: Transform - - uid: 1036 + - uid: 1499 components: - - pos: 10.5,20.5 + - pos: 1.5,-0.5 parent: 104 type: Transform - - uid: 1041 + - uid: 1500 components: - - pos: 11.5,20.5 + - pos: 0.5,-0.5 parent: 104 type: Transform - - uid: 1042 + - uid: 1501 components: - - pos: 12.5,20.5 + - pos: 0.5,-1.5 parent: 104 type: Transform - - uid: 1043 + - uid: 1502 components: - - pos: 13.5,20.5 + - pos: -0.5,-1.5 parent: 104 type: Transform - - uid: 1044 + - uid: 1503 components: - - pos: 16.5,20.5 + - pos: -0.5,-1.5 parent: 104 type: Transform - - uid: 1045 + - uid: 1504 components: - - pos: 17.5,20.5 + - pos: -0.5,-2.5 parent: 104 type: Transform - - uid: 1046 + - uid: 1505 components: - - pos: 18.5,20.5 + - pos: -0.5,-3.5 parent: 104 type: Transform - - uid: 1047 + - uid: 1506 components: - - pos: 19.5,20.5 + - pos: -0.5,-4.5 parent: 104 type: Transform - - uid: 1048 + - uid: 1507 components: - - pos: 19.5,19.5 + - pos: -0.5,-5.5 parent: 104 type: Transform - - uid: 1049 + - uid: 1508 components: - - pos: 19.5,18.5 + - pos: -0.5,-6.5 parent: 104 type: Transform - - uid: 1050 + - uid: 1509 components: - - pos: 19.5,16.5 + - pos: -0.5,-7.5 parent: 104 type: Transform - - uid: 1051 + - uid: 1510 components: - - pos: 19.5,15.5 + - pos: 0.5,-7.5 parent: 104 type: Transform - - uid: 1052 + - uid: 1511 components: - - pos: 19.5,14.5 + - pos: 1.5,-7.5 parent: 104 type: Transform - - uid: 1053 + - uid: 1512 components: - - pos: 19.5,12.5 + - pos: 2.5,-7.5 parent: 104 type: Transform - - uid: 1054 + - uid: 1513 components: - - pos: 19.5,11.5 + - pos: 4.5,-7.5 parent: 104 type: Transform - - uid: 1055 + - uid: 1514 components: - - pos: 19.5,10.5 + - pos: 3.5,-7.5 parent: 104 type: Transform - - uid: 1056 + - uid: 1515 components: - - pos: -11.5,20.5 + - pos: 5.5,-7.5 parent: 104 type: Transform - - uid: 1057 + - uid: 1516 components: - - pos: 15.5,3.5 + - pos: 5.5,-8.5 parent: 104 type: Transform - - uid: 1058 + - uid: 1517 components: - - pos: 22.5,4.5 + - pos: 6.5,-8.5 parent: 104 type: Transform - - uid: 1059 + - uid: 1518 components: - - pos: 23.5,4.5 + - pos: 7.5,-8.5 parent: 104 type: Transform - - uid: 1060 + - uid: 1519 components: - - pos: 24.5,4.5 + - pos: 8.5,-8.5 parent: 104 type: Transform - - uid: 1061 + - uid: 1520 components: - - pos: 25.5,4.5 + - pos: 9.5,-8.5 parent: 104 type: Transform - - uid: 1062 + - uid: 1521 components: - - pos: 26.5,4.5 + - pos: 10.5,-8.5 parent: 104 type: Transform - - uid: 1063 + - uid: 1522 components: - - pos: 27.5,4.5 + - pos: 10.5,-7.5 parent: 104 type: Transform - - uid: 1064 + - uid: 1523 components: - - pos: 28.5,4.5 + - pos: 11.5,-7.5 parent: 104 type: Transform - - uid: 1065 + - uid: 1524 components: - - pos: 29.5,4.5 + - pos: 12.5,-7.5 parent: 104 type: Transform - - uid: 1066 + - uid: 1525 components: - - pos: 30.5,4.5 + - pos: 13.5,-7.5 parent: 104 type: Transform - - uid: 1067 + - uid: 1526 components: - - pos: 32.5,0.5 + - pos: 14.5,-7.5 parent: 104 type: Transform - - uid: 1068 + - uid: 1527 components: - - pos: 32.5,-0.5 + - pos: 14.5,-7.5 parent: 104 type: Transform - - uid: 1069 + - uid: 1528 components: - - pos: 32.5,-3.5 + - pos: 15.5,-7.5 parent: 104 type: Transform - - uid: 1070 + - uid: 1529 components: - - pos: 32.5,-12.5 + - pos: 14.5,-6.5 parent: 104 type: Transform - - uid: 1071 + - uid: 1530 components: - - pos: 32.5,-13.5 + - pos: 14.5,-5.5 parent: 104 type: Transform - - uid: 1072 + - uid: 1531 components: - - pos: 32.5,-14.5 + - pos: 14.5,-4.5 parent: 104 type: Transform - - uid: 1073 + - uid: 1538 components: - - pos: 32.5,-15.5 + - pos: 7.5,-0.5 parent: 104 type: Transform - - uid: 1074 + - uid: 1539 components: - - pos: 32.5,-16.5 + - pos: 8.5,-0.5 parent: 104 type: Transform - - uid: 1075 + - uid: 1540 components: - - pos: 32.5,-17.5 + - pos: 9.5,-0.5 parent: 104 type: Transform - - uid: 1076 + - uid: 1541 components: - - pos: 32.5,-18.5 + - pos: 8.5,-0.5 parent: 104 type: Transform - - uid: 1077 + - uid: 1543 components: - - pos: 32.5,-19.5 + - pos: 10.5,-0.5 parent: 104 type: Transform - - uid: 1078 + - uid: 1575 components: - - pos: 32.5,-20.5 + - pos: 21.5,-5.5 parent: 104 type: Transform - - uid: 1079 + - uid: 1576 components: - - pos: 32.5,-21.5 + - pos: 20.5,-5.5 parent: 104 type: Transform - - uid: 1083 + - uid: 1577 components: - - pos: -4.5,-16.5 + - pos: 19.5,-5.5 parent: 104 type: Transform - - uid: 1084 + - uid: 1578 components: - - pos: -4.5,-21.5 + - pos: 19.5,-6.5 parent: 104 type: Transform - - uid: 1085 + - uid: 1579 components: - - pos: 28.5,-23.5 + - pos: 19.5,-7.5 parent: 104 type: Transform - - uid: 1092 + - uid: 1580 components: - - pos: 27.5,-23.5 + - pos: 19.5,-9.5 parent: 104 type: Transform - - uid: 1093 + - uid: 1581 components: - - pos: 26.5,-23.5 + - pos: 19.5,-9.5 parent: 104 type: Transform - - uid: 1094 + - uid: 1582 components: - - pos: 25.5,-23.5 + - pos: 19.5,-8.5 parent: 104 type: Transform - - uid: 1095 + - uid: 1583 components: - - pos: 24.5,-23.5 + - pos: 20.5,-9.5 parent: 104 type: Transform - - uid: 1096 + - uid: 1584 components: - - pos: 23.5,-23.5 + - pos: 21.5,-9.5 parent: 104 type: Transform - - uid: 1097 + - uid: 1585 components: - - pos: 22.5,-23.5 + - pos: 21.5,-4.5 parent: 104 type: Transform - - uid: 1098 + - uid: 1586 components: - - pos: 21.5,-23.5 + - pos: 18.5,-7.5 parent: 104 type: Transform - - uid: 1099 + - uid: 1587 components: - - pos: 20.5,-23.5 + - pos: 17.5,-7.5 parent: 104 type: Transform - - uid: 1100 + - uid: 1588 components: - - pos: 19.5,-23.5 + - pos: 21.5,-8.5 parent: 104 type: Transform - - uid: 1101 + - uid: 1589 components: - - pos: 18.5,-23.5 + - pos: 21.5,-7.5 parent: 104 type: Transform - - uid: 1105 + - uid: 1590 components: - - pos: 8.5,-23.5 + - pos: 21.5,-6.5 parent: 104 type: Transform - - uid: 1106 + - uid: 1591 components: - - pos: 7.5,-23.5 + - pos: 10.5,-1.5 parent: 104 type: Transform - - uid: 1107 + - uid: 1592 components: - - pos: 6.5,-23.5 + - pos: 10.5,-3.5 parent: 104 type: Transform - - uid: 1108 + - uid: 1593 components: - - pos: 5.5,-23.5 + - pos: 10.5,-2.5 parent: 104 type: Transform - - uid: 1109 + - uid: 1595 components: - - pos: -23.5,23.5 + - pos: -1.5,-3.5 parent: 104 type: Transform - - uid: 1155 + - uid: 1596 components: - - pos: -23.5,24.5 + - pos: -2.5,-3.5 parent: 104 type: Transform - - uid: 1156 + - uid: 1597 components: - - pos: -23.5,25.5 + - pos: -3.5,-3.5 parent: 104 type: Transform - - uid: 1157 + - uid: 2301 components: - - pos: -22.5,32.5 + - pos: 12.5,-21.5 parent: 104 type: Transform - - uid: 1158 + - uid: 2302 components: - - pos: -23.5,30.5 + - pos: 11.5,-21.5 parent: 104 type: Transform - - uid: 1160 + - uid: 2303 components: - - pos: -23.5,31.5 + - pos: 13.5,-21.5 parent: 104 type: Transform - - uid: 1161 + - uid: 2304 components: - - pos: -22.5,23.5 + - pos: 0.5,-14.5 parent: 104 type: Transform - - uid: 1162 + - uid: 2305 components: - - pos: -22.5,24.5 + - pos: -0.5,-14.5 parent: 104 type: Transform - - uid: 1163 + - uid: 2306 components: - - pos: -22.5,25.5 + - pos: -1.5,-14.5 parent: 104 type: Transform - - uid: 1164 + - uid: 2307 components: - - pos: -21.5,26.5 + - pos: -2.5,-14.5 parent: 104 type: Transform - - uid: 1165 + - uid: 2374 components: - - pos: -22.5,30.5 + - pos: 20.5,-12.5 parent: 104 type: Transform - - uid: 1166 + - uid: 2375 components: - - pos: -21.5,30.5 + - pos: 20.5,-13.5 parent: 104 type: Transform - - uid: 1167 + - uid: 2376 components: - - pos: -24.5,31.5 + - pos: 20.5,-14.5 parent: 104 type: Transform - - uid: 1168 + - uid: 2377 components: - - pos: -23.5,20.5 + - pos: 20.5,-15.5 parent: 104 type: Transform - - uid: 1169 + - uid: 2378 components: - - pos: -24.5,21.5 + - pos: 20.5,-16.5 parent: 104 type: Transform - - uid: 1170 + - uid: 2379 components: - - pos: -22.5,31.5 + - pos: 20.5,-17.5 parent: 104 type: Transform - - uid: 1171 + - uid: 2381 components: - - pos: -25.5,30.5 + - pos: 20.5,-18.5 parent: 104 type: Transform - - uid: 1172 + - uid: 2382 components: - - pos: -25.5,31.5 + - pos: 20.5,-19.5 parent: 104 type: Transform - - uid: 1173 + - uid: 2383 components: - - pos: -25.5,32.5 + - pos: 19.5,-17.5 parent: 104 type: Transform - - uid: 1174 + - uid: 2384 components: - - pos: -23.5,21.5 + - pos: 18.5,-17.5 parent: 104 type: Transform - - uid: 1175 + - uid: 2385 components: - - pos: -23.5,29.5 + - pos: 21.5,-17.5 parent: 104 type: Transform - - uid: 1176 + - enabled: True + type: AmbientSound + - uid: 2386 components: - - pos: -22.5,20.5 + - pos: 22.5,-17.5 parent: 104 type: Transform - - uid: 1177 + - enabled: True + type: AmbientSound + - uid: 2387 components: - - pos: -23.5,15.5 + - pos: 23.5,-17.5 parent: 104 type: Transform - - uid: 1178 + - enabled: True + type: AmbientSound + - uid: 2388 components: - - pos: -23.5,13.5 + - pos: 24.5,-17.5 parent: 104 type: Transform - - uid: 1179 + - uid: 2389 components: - - pos: -22.5,13.5 + - pos: 25.5,-17.5 parent: 104 type: Transform - - uid: 1180 + - uid: 2390 components: - - pos: -11.5,10.5 + - pos: 26.5,-17.5 parent: 104 type: Transform - - uid: 1224 + - uid: 2391 components: - - pos: -23.5,14.5 + - pos: 25.5,-18.5 parent: 104 type: Transform - - uid: 1250 + - uid: 2392 components: - - pos: 1.5,-10.5 + - pos: 25.5,-19.5 parent: 104 type: Transform - - uid: 1390 + - uid: 2393 components: - - pos: -0.5,-10.5 + - pos: 25.5,-16.5 parent: 104 type: Transform - - uid: 1391 + - uid: 2394 components: - - pos: -23.5,28.5 + - pos: 25.5,-15.5 parent: 104 type: Transform - - uid: 1392 + - uid: 2395 components: - - pos: -24.5,30.5 + - pos: 25.5,-14.5 parent: 104 type: Transform - - uid: 1393 + - uid: 2396 components: - - pos: -23.5,32.5 + - pos: 25.5,-13.5 parent: 104 type: Transform - - uid: 1394 + - uid: 2439 components: - - pos: -22.5,26.5 + - pos: 13.5,-9.5 parent: 104 type: Transform - - uid: 1395 + - uid: 2440 components: - - pos: -23.5,26.5 + - pos: 5.5,-6.5 parent: 104 type: Transform - - uid: 1396 + - uid: 2441 components: - - pos: -24.5,32.5 + - pos: 5.5,-5.5 parent: 104 type: Transform - - uid: 1397 + - uid: 3378 components: - - pos: -23.5,27.5 + - pos: 7.5,-9.5 parent: 104 type: Transform - - uid: 1398 + - enabled: True + type: AmbientSound + - uid: 3379 components: - - pos: -22.5,28.5 + - pos: 7.5,-10.5 parent: 104 type: Transform - - uid: 1399 + - uid: 3380 components: - - pos: -21.5,29.5 + - pos: 6.5,-10.5 parent: 104 type: Transform - - uid: 1400 + - uid: 3381 components: - - pos: -22.5,29.5 + - pos: 5.5,-10.5 parent: 104 type: Transform - - uid: 1401 + - uid: 3382 components: - - pos: -22.5,27.5 + - pos: 4.5,-10.5 parent: 104 type: Transform - - uid: 1402 + - uid: 3383 components: - - pos: -21.5,27.5 + - pos: 3.5,-10.5 parent: 104 type: Transform - - uid: 1403 + - uid: 3384 components: - - pos: -21.5,28.5 + - pos: 3.5,-11.5 parent: 104 type: Transform - - uid: 1404 +- proto: CableApcStack + entities: + - uid: 211 components: - - pos: -21.5,25.5 + - pos: 11.428643,-10.548745 parent: 104 type: Transform - - uid: 1405 + - uid: 1324 components: - - pos: -21.5,24.5 + - pos: 4.439247,-17.36072 parent: 104 type: Transform - - uid: 1406 +- proto: CableHV + entities: + - uid: 2334 components: - - pos: -21.5,23.5 + - pos: 17.5,-19.5 parent: 104 type: Transform - - uid: 1407 + - uid: 2335 components: - - pos: 6.5,-24.5 + - pos: 17.5,-18.5 parent: 104 type: Transform - - uid: 1408 + - uid: 2336 components: - - pos: 7.5,-24.5 + - pos: 17.5,-17.5 parent: 104 type: Transform - - uid: 1415 + - uid: 2337 components: - - pos: 3.5,-21.5 + - pos: 18.5,-19.5 parent: 104 type: Transform - - uid: 1416 + - uid: 2338 components: - - pos: 4.5,-21.5 + - pos: 19.5,-19.5 parent: 104 type: Transform - - uid: 1417 + - uid: 2339 components: - - pos: 20.5,-24.5 + - pos: 20.5,-19.5 parent: 104 type: Transform - - uid: 1418 + - uid: 2340 components: - - pos: 21.5,-24.5 + - pos: 21.5,-19.5 parent: 104 type: Transform - - uid: 1419 + - enabled: True + type: AmbientSound + - uid: 2341 components: - - pos: 22.5,-24.5 + - pos: 22.5,-19.5 parent: 104 type: Transform - - uid: 1420 + - enabled: True + type: AmbientSound + - uid: 2342 components: - - pos: 23.5,-24.5 + - pos: 23.5,-19.5 parent: 104 type: Transform - - uid: 1421 + - enabled: True + type: AmbientSound + - uid: 2343 components: - - pos: 24.5,-24.5 + - pos: 24.5,-19.5 parent: 104 type: Transform - - uid: 1422 + - uid: 2344 components: - - pos: 25.5,-24.5 + - pos: 25.5,-19.5 parent: 104 type: Transform - - uid: 1423 + - uid: 2345 components: - - pos: 26.5,-24.5 + - pos: 26.5,-19.5 parent: 104 type: Transform - - uid: 1424 + - uid: 2346 components: - - pos: 27.5,-24.5 + - pos: 27.5,-19.5 parent: 104 type: Transform - - uid: 1425 + - uid: 2347 components: - - pos: -4.5,-22.5 + - pos: 27.5,-18.5 parent: 104 type: Transform - - uid: 1427 + - uid: 2348 components: - - pos: -4.5,-17.5 + - pos: 27.5,-17.5 parent: 104 type: Transform - - uid: 1433 + - uid: 2352 components: - - pos: 5.5,-24.5 + - pos: 21.5,-18.5 parent: 104 type: Transform - - uid: 1434 + - uid: 2353 components: - - pos: 33.5,-21.5 + - pos: 22.5,-18.5 parent: 104 type: Transform - - uid: 1435 + - uid: 2354 components: - - pos: 33.5,-20.5 + - pos: 23.5,-18.5 parent: 104 type: Transform - - uid: 1436 + - uid: 2355 components: - - pos: 33.5,-19.5 + - pos: 22.5,-17.5 parent: 104 type: Transform - - uid: 1437 + - enabled: True + type: AmbientSound + - uid: 2356 components: - - pos: 33.5,-18.5 + - pos: 23.5,-17.5 parent: 104 type: Transform - - uid: 1440 + - enabled: True + type: AmbientSound + - uid: 2357 components: - - pos: 33.5,-17.5 + - pos: 24.5,-17.5 parent: 104 type: Transform - - uid: 1441 + - uid: 2358 components: - - pos: 33.5,-16.5 + - pos: 24.5,-16.5 parent: 104 type: Transform - - uid: 1442 + - uid: 2359 components: - - pos: 33.5,-15.5 + - pos: 24.5,-15.5 parent: 104 type: Transform - - uid: 1443 + - uid: 2360 components: - - pos: 33.5,-14.5 + - pos: 24.5,-14.5 parent: 104 type: Transform - - uid: 1444 + - uid: 2361 components: - - pos: 33.5,-13.5 + - pos: 21.5,-17.5 parent: 104 type: Transform - - uid: 1446 + - enabled: True + type: AmbientSound + - uid: 2362 components: - - pos: 33.5,-12.5 + - pos: 25.5,-14.5 parent: 104 type: Transform - - uid: 1447 + - uid: 2363 components: - - pos: 30.5,5.5 + - pos: 26.5,-14.5 parent: 104 type: Transform - - uid: 1448 + - uid: 2364 components: - - pos: 29.5,5.5 + - pos: 27.5,-14.5 parent: 104 type: Transform - - uid: 1472 + - uid: 2365 components: - - pos: 28.5,5.5 + - pos: 27.5,-13.5 parent: 104 type: Transform - - uid: 1473 +- proto: CableHVStack + entities: + - uid: 209 components: - - pos: 27.5,5.5 + - pos: 11.334893,-10.282843 parent: 104 type: Transform - - uid: 1533 +- proto: CableMV + entities: + - uid: 240 components: - - pos: 26.5,5.5 + - pos: 17.5,-13.5 parent: 104 type: Transform - - uid: 1535 + - uid: 1438 components: - - pos: 25.5,5.5 + - pos: 20.5,-12.5 parent: 104 type: Transform - - uid: 1542 + - uid: 1462 components: - - pos: 24.5,5.5 + - pos: 16.5,-13.5 parent: 104 type: Transform - - uid: 1550 + - uid: 1463 components: - - pos: 23.5,5.5 + - pos: 15.5,-13.5 parent: 104 type: Transform - - uid: 1552 + - uid: 1464 components: - - pos: 22.5,5.5 + - pos: 15.5,-12.5 parent: 104 type: Transform - - uid: 1553 + - uid: 1465 components: - - pos: 21.5,5.5 + - pos: 15.5,-11.5 parent: 104 type: Transform - - uid: 1554 + - uid: 1466 components: - - pos: 20.5,5.5 + - pos: 15.5,-10.5 parent: 104 type: Transform - - uid: 1557 + - uid: 1467 components: - - pos: 19.5,19.5 + - pos: 14.5,-10.5 parent: 104 type: Transform - - uid: 1559 + - uid: 1468 components: - - pos: 19.5,20.5 + - pos: 13.5,-10.5 parent: 104 type: Transform - - uid: 1560 + - uid: 1469 components: - - pos: 19.5,21.5 + - pos: 13.5,-9.5 parent: 104 type: Transform - - uid: 1562 + - uid: 1478 components: - - pos: -11.5,19.5 + - pos: 12.5,-10.5 parent: 104 type: Transform - - uid: 1564 + - uid: 1479 components: - - pos: -11.5,18.5 + - pos: 11.5,-10.5 parent: 104 type: Transform - - uid: 1566 + - uid: 1480 components: - - pos: 20.5,9.5 + - pos: 10.5,-10.5 parent: 104 type: Transform - - uid: 1567 + - uid: 1481 components: - - pos: 20.5,10.5 + - pos: 9.5,-10.5 parent: 104 type: Transform - - uid: 1568 + - uid: 1482 components: - - pos: 20.5,11.5 + - pos: 9.5,-9.5 parent: 104 type: Transform - - uid: 1569 + - uid: 1483 components: - - pos: 20.5,12.5 + - pos: 9.5,-8.5 parent: 104 type: Transform - - uid: 1594 + - uid: 1484 components: - - pos: 20.5,13.5 + - pos: 9.5,-7.5 parent: 104 type: Transform - - uid: 1598 + - uid: 1485 components: - - pos: 20.5,14.5 + - pos: 9.5,-6.5 parent: 104 type: Transform - - uid: 1599 + - uid: 1486 components: - - pos: 20.5,15.5 + - pos: 8.5,-6.5 parent: 104 type: Transform - - uid: 1600 + - uid: 1487 components: - - pos: 20.5,16.5 + - pos: 8.5,-5.5 parent: 104 type: Transform - - uid: 1601 + - uid: 2322 components: - - pos: 20.5,17.5 + - pos: 18.5,-13.5 parent: 104 type: Transform - - uid: 1602 + - uid: 2323 components: - - pos: 20.5,18.5 + - pos: 19.5,-13.5 parent: 104 type: Transform - - uid: 1603 + - uid: 2324 components: - - pos: 20.5,19.5 + - pos: 20.5,-13.5 parent: 104 type: Transform - - uid: 1604 + - uid: 2325 components: - - pos: 20.5,20.5 + - pos: 20.5,-12.5 parent: 104 type: Transform - - uid: 1605 + - uid: 2367 components: - - pos: 20.5,21.5 + - pos: 27.5,-13.5 parent: 104 type: Transform - - uid: 1606 + - uid: 2368 components: - - pos: -10.5,19.5 + - pos: 26.5,-13.5 parent: 104 type: Transform - - uid: 1607 + - uid: 2369 components: - - pos: 19.5,11.5 + - pos: 25.5,-13.5 parent: 104 type: Transform - - uid: 1608 + - uid: 2370 components: - - pos: 19.5,12.5 + - pos: 24.5,-13.5 parent: 104 type: Transform - - uid: 1609 + - uid: 2371 components: - - pos: 19.5,15.5 + - pos: 23.5,-13.5 parent: 104 type: Transform - - uid: 1610 + - uid: 2372 components: - - pos: 18.5,21.5 + - pos: 22.5,-13.5 parent: 104 type: Transform - - uid: 1611 + - uid: 2373 components: - - pos: 17.5,21.5 + - pos: 21.5,-13.5 parent: 104 type: Transform - - uid: 1612 +- proto: CableMVStack + entities: + - uid: 210 components: - - pos: 16.5,21.5 + - pos: 11.381768,-10.407973 parent: 104 type: Transform - - uid: 1613 +- proto: CableTerminal + entities: + - uid: 2349 components: - - pos: 15.5,21.5 + - rot: 3.141592653589793 rad + pos: 21.5,-19.5 parent: 104 type: Transform - - uid: 1614 + - uid: 2350 components: - - pos: 14.5,21.5 + - rot: 3.141592653589793 rad + pos: 22.5,-19.5 parent: 104 type: Transform - - uid: 1615 + - uid: 2351 components: - - pos: 13.5,21.5 + - rot: 3.141592653589793 rad + pos: 23.5,-19.5 parent: 104 type: Transform - - uid: 1616 +- proto: Carpet + entities: + - uid: 2459 components: - - pos: 12.5,21.5 + - pos: 14.5,-4.5 parent: 104 type: Transform - - uid: 1623 + - uid: 2460 components: - - pos: 11.5,21.5 + - pos: 14.5,-3.5 parent: 104 type: Transform - - uid: 1625 +- proto: Catwalk + entities: + - uid: 256 components: - - pos: 10.5,21.5 + - pos: -29.5,2.5 parent: 104 type: Transform - - uid: 1632 + - uid: 264 components: - - pos: 9.5,21.5 + - pos: -28.5,1.5 parent: 104 type: Transform - - uid: 1636 + - uid: 278 components: - - pos: -0.5,21.5 + - pos: -21.5,-23.5 parent: 104 type: Transform - - uid: 1637 + - uid: 287 components: - - pos: -1.5,21.5 + - pos: -20.5,-20.5 parent: 104 type: Transform - - uid: 1638 + - uid: 381 components: - - pos: -2.5,21.5 + - pos: -20.5,-21.5 parent: 104 type: Transform - - uid: 1639 + - uid: 382 components: - - pos: -0.5,22.5 + - pos: -20.5,-23.5 parent: 104 type: Transform - - uid: 1640 + - uid: 383 components: - - pos: -1.5,22.5 + - pos: -20.5,-22.5 parent: 104 type: Transform - - uid: 1641 + - uid: 384 components: - - pos: -2.5,22.5 + - pos: -19.5,-20.5 parent: 104 type: Transform - - uid: 1642 + - uid: 385 components: - - pos: -3.5,22.5 + - pos: -30.5,4.5 parent: 104 type: Transform - - uid: 1643 + - uid: 386 components: - - pos: -7.5,22.5 + - pos: -28.5,-20.5 parent: 104 type: Transform - - uid: 1644 + - uid: 387 components: - - pos: -8.5,22.5 + - pos: -34.5,1.5 parent: 104 type: Transform - - uid: 1645 + - uid: 388 components: - - pos: -8.5,23.5 + - pos: -29.5,3.5 parent: 104 type: Transform - - uid: 1646 + - uid: 389 components: - - pos: -9.5,23.5 + - pos: -14.5,-22.5 parent: 104 type: Transform - - uid: 1647 + - uid: 391 components: - - pos: -10.5,23.5 + - pos: -33.5,3.5 parent: 104 type: Transform - - uid: 1649 + - uid: 392 components: - - pos: 28.5,7.5 + - rot: 3.141592653589793 rad + pos: -34.5,-21.5 parent: 104 type: Transform - - uid: 1650 + - uid: 393 components: - - pos: 28.5,8.5 + - pos: -19.5,-22.5 parent: 104 type: Transform - - uid: 1651 + - uid: 394 components: - - pos: 22.5,13.5 + - pos: -32.5,4.5 parent: 104 type: Transform - - uid: 1657 + - uid: 395 components: - - pos: 23.5,13.5 + - pos: -24.5,-21.5 parent: 104 type: Transform - - uid: 1658 + - uid: 396 components: - - pos: 17.5,22.5 + - pos: -10.5,-16.5 parent: 104 type: Transform - - uid: 1659 + - uid: 398 components: - - pos: 24.5,16.5 + - pos: -9.5,-15.5 parent: 104 type: Transform - - uid: 1660 + - uid: 399 components: - - pos: 24.5,15.5 + - pos: -10.5,-15.5 parent: 104 type: Transform - - uid: 1661 + - uid: 400 components: - - pos: 24.5,14.5 + - pos: -9.5,-14.5 parent: 104 type: Transform - - uid: 1662 + - uid: 413 components: - - pos: 23.5,17.5 + - rot: 3.141592653589793 rad + pos: -24.5,3.5 parent: 104 type: Transform - - uid: 1663 + - uid: 431 components: - - pos: 28.5,6.5 + - pos: -9.5,-13.5 parent: 104 type: Transform - - uid: 1664 + - uid: 440 components: - - pos: 23.5,14.5 + - pos: -16.5,-21.5 parent: 104 type: Transform - - uid: 1665 + - uid: 468 components: - - pos: 22.5,14.5 + - pos: -9.5,-21.5 parent: 104 type: Transform - - uid: 1666 + - uid: 470 components: - - pos: 23.5,12.5 + - pos: -9.5,-20.5 parent: 104 type: Transform - - uid: 1667 + - uid: 499 components: - - pos: 21.5,8.5 + - pos: -9.5,-19.5 parent: 104 type: Transform - - uid: 1674 + - uid: 500 components: - - pos: 25.5,6.5 + - pos: -9.5,-18.5 parent: 104 type: Transform - - uid: 1676 + - uid: 516 components: - - pos: 24.5,9.5 + - pos: -9.5,-17.5 parent: 104 type: Transform - - uid: 1677 + - uid: 517 components: - - pos: 24.5,10.5 + - pos: -9.5,-16.5 parent: 104 type: Transform - - uid: 1678 + - uid: 518 components: - - pos: 24.5,17.5 + - pos: -10.5,-14.5 parent: 104 type: Transform - - uid: 1679 + - uid: 519 components: - - pos: 23.5,16.5 + - rot: 3.141592653589793 rad + pos: -31.5,-21.5 parent: 104 type: Transform - - uid: 1682 + - uid: 520 components: - - pos: 23.5,15.5 + - pos: -26.5,1.5 parent: 104 type: Transform - - uid: 1683 + - uid: 584 components: - - pos: 24.5,11.5 + - pos: -10.5,-13.5 parent: 104 type: Transform - - uid: 1684 + - uid: 616 components: - - pos: 24.5,6.5 + - pos: -31.5,3.5 parent: 104 type: Transform - - uid: 1685 + - uid: 617 components: - - pos: 23.5,11.5 + - pos: -14.5,-23.5 parent: 104 type: Transform - - uid: 1686 + - uid: 626 components: - - pos: 21.5,9.5 + - pos: -16.5,-22.5 parent: 104 type: Transform - - uid: 1687 + - uid: 631 components: - - pos: 27.5,7.5 + - pos: -9.5,-23.5 parent: 104 type: Transform - - uid: 1688 + - uid: 633 components: - - pos: 27.5,8.5 + - pos: -9.5,-22.5 parent: 104 type: Transform - - uid: 1689 + - uid: 634 components: - - pos: 26.5,6.5 + - pos: -16.5,-23.5 parent: 104 type: Transform - - uid: 1690 + - uid: 641 components: - - pos: 26.5,7.5 + - pos: -11.5,-22.5 parent: 104 type: Transform - - uid: 1691 + - uid: 642 components: - - pos: 26.5,8.5 + - pos: -11.5,-23.5 parent: 104 type: Transform - - uid: 1692 + - uid: 643 components: - - pos: 22.5,15.5 + - pos: -10.5,-23.5 parent: 104 type: Transform - - uid: 1693 + - uid: 647 components: - - pos: 24.5,12.5 + - pos: -13.5,-23.5 parent: 104 type: Transform - - uid: 1695 + - uid: 652 components: - - pos: 23.5,10.5 + - pos: -15.5,-20.5 parent: 104 type: Transform - - uid: 1696 + - uid: 663 components: - - pos: 22.5,10.5 + - pos: -12.5,-23.5 parent: 104 type: Transform - - uid: 1697 + - uid: 664 components: - - pos: 25.5,7.5 + - pos: -11.5,-20.5 parent: 104 type: Transform - - uid: 1698 + - uid: 715 components: - - pos: 12.5,22.5 + - pos: -10.5,-22.5 parent: 104 type: Transform - - uid: 1699 + - uid: 736 components: - - pos: 25.5,8.5 + - pos: -10.5,-21.5 parent: 104 type: Transform - - uid: 1700 + - uid: 737 components: - - pos: 25.5,9.5 + - pos: -10.5,-20.5 parent: 104 type: Transform - - uid: 1701 + - uid: 738 components: - - pos: 25.5,10.5 + - pos: -14.5,-20.5 parent: 104 type: Transform - - uid: 1702 + - uid: 742 components: - - pos: 13.5,22.5 + - pos: -10.5,-19.5 parent: 104 type: Transform - - uid: 1703 + - uid: 748 components: - - pos: 24.5,7.5 + - pos: -10.5,-18.5 parent: 104 type: Transform - - uid: 1709 + - uid: 749 components: - - pos: 24.5,13.5 + - pos: -10.5,-17.5 parent: 104 type: Transform - - uid: 1710 + - uid: 760 components: - - pos: 22.5,8.5 + - pos: -14.5,-21.5 parent: 104 type: Transform - - uid: 1712 + - uid: 761 components: - - pos: 22.5,9.5 + - rot: 3.141592653589793 rad + pos: -26.5,-21.5 parent: 104 type: Transform - - uid: 1713 + - uid: 769 components: - - pos: 11.5,22.5 + - pos: -33.5,4.5 parent: 104 type: Transform - - uid: 1714 + - uid: 772 components: - - pos: 25.5,11.5 + - rot: 3.141592653589793 rad + pos: -33.5,-21.5 parent: 104 type: Transform - - uid: 1715 + - uid: 799 components: - - pos: 22.5,16.5 + - pos: -26.5,3.5 parent: 104 type: Transform - - uid: 1716 + - uid: 800 components: - - pos: 22.5,17.5 + - pos: -34.5,4.5 parent: 104 type: Transform - - uid: 1717 + - uid: 812 components: - - pos: 19.5,22.5 + - rot: 3.141592653589793 rad + pos: -32.5,-21.5 parent: 104 type: Transform - - uid: 1718 + - uid: 813 components: - - pos: 22.5,7.5 + - pos: -29.5,4.5 parent: 104 type: Transform - - uid: 1719 + - uid: 815 components: - - pos: 21.5,13.5 + - pos: -17.5,-23.5 parent: 104 type: Transform - - uid: 1720 + - uid: 817 components: - - pos: 23.5,9.5 + - pos: -24.5,-22.5 parent: 104 type: Transform - - uid: 1721 + - uid: 818 components: - - pos: 21.5,11.5 + - pos: -24.5,-23.5 parent: 104 type: Transform - - uid: 1722 + - uid: 820 components: - - pos: 22.5,11.5 + - pos: -21.5,-21.5 parent: 104 type: Transform - - uid: 1723 + - uid: 821 components: - - pos: 10.5,22.5 + - pos: -21.5,-22.5 parent: 104 type: Transform - - uid: 1724 + - uid: 822 components: - - pos: 22.5,18.5 + - pos: -27.5,3.5 parent: 104 type: Transform - - uid: 1725 + - uid: 823 components: - - pos: 16.5,22.5 + - pos: -26.5,4.5 parent: 104 type: Transform - - uid: 1726 + - uid: 824 components: - - pos: 15.5,22.5 + - pos: -25.5,4.5 parent: 104 type: Transform - - uid: 1727 + - uid: 825 components: - - pos: 14.5,22.5 + - pos: -25.5,2.5 parent: 104 type: Transform - - uid: 1728 + - uid: 826 components: - - pos: 24.5,8.5 + - rot: 3.141592653589793 rad + pos: -33.5,-23.5 parent: 104 type: Transform - - uid: 1729 + - uid: 827 components: - - pos: 23.5,13.5 + - pos: -27.5,4.5 parent: 104 type: Transform - - uid: 1730 + - uid: 828 components: - - pos: 23.5,8.5 + - pos: -27.5,2.5 parent: 104 type: Transform - - uid: 1731 + - uid: 829 components: - - pos: -11.5,21.5 + - pos: -26.5,2.5 parent: 104 type: Transform - - uid: 1732 + - uid: 830 components: - - pos: 22.5,12.5 + - pos: -25.5,3.5 parent: 104 type: Transform - - uid: 1733 + - uid: 831 components: - - pos: 27.5,6.5 + - pos: -26.5,-20.5 parent: 104 type: Transform - - uid: 1734 + - uid: 833 components: - - pos: 22.5,19.5 + - pos: -18.5,-21.5 parent: 104 type: Transform - - uid: 1735 + - uid: 834 components: - - pos: 18.5,22.5 + - pos: -27.5,-20.5 parent: 104 type: Transform - - uid: 1736 + - uid: 836 components: - - pos: 21.5,21.5 + - rot: 3.141592653589793 rad + pos: -29.5,-21.5 parent: 104 type: Transform - - uid: 1737 + - uid: 837 components: - - pos: 23.5,6.5 + - pos: -32.5,-20.5 parent: 104 type: Transform - - uid: 1738 + - uid: 839 components: - - pos: 22.5,6.5 + - pos: -32.5,3.5 parent: 104 type: Transform - - uid: 1739 + - uid: 840 components: - - pos: 23.5,7.5 + - pos: -27.5,1.5 parent: 104 type: Transform - - uid: 1740 + - uid: 841 components: - - pos: -11.5,20.5 + - rot: 3.141592653589793 rad + pos: -33.5,-22.5 parent: 104 type: Transform - - uid: 1741 + - uid: 842 components: - - pos: 21.5,10.5 + - pos: -17.5,-22.5 parent: 104 type: Transform - - uid: 1742 + - uid: 843 components: - - pos: 21.5,20.5 + - pos: -18.5,-23.5 parent: 104 type: Transform - - uid: 1743 + - uid: 844 components: - - pos: 20.5,22.5 + - rot: 3.141592653589793 rad + pos: -32.5,-22.5 parent: 104 type: Transform - - uid: 1744 + - uid: 846 components: - - pos: 21.5,19.5 + - pos: -18.5,-20.5 parent: 104 type: Transform - - uid: 1745 + - uid: 847 components: - - pos: 21.5,18.5 + - pos: -19.5,-21.5 parent: 104 type: Transform - - uid: 1746 + - uid: 848 components: - - pos: 21.5,17.5 + - rot: 3.141592653589793 rad + pos: -34.5,-20.5 parent: 104 type: Transform - - uid: 1747 + - uid: 849 components: - - pos: 21.5,16.5 + - pos: -18.5,-22.5 parent: 104 type: Transform - - uid: 1748 + - uid: 850 components: - - pos: 21.5,15.5 + - pos: -17.5,-21.5 parent: 104 type: Transform - - uid: 1749 + - uid: 851 components: - - pos: 21.5,14.5 + - pos: -16.5,-20.5 parent: 104 type: Transform - - uid: 1750 + - uid: 852 components: - - pos: 21.5,12.5 + - pos: -32.5,1.5 parent: 104 type: Transform - - uid: 1751 + - uid: 853 components: - - pos: 9.5,19.5 + - pos: -30.5,-20.5 parent: 104 type: Transform - - uid: 1752 + - uid: 855 components: - - pos: -2.5,23.5 + - rot: 3.141592653589793 rad + pos: -30.5,-21.5 parent: 104 type: Transform - - uid: 1753 + - uid: 856 components: - - pos: -3.5,23.5 + - pos: -31.5,2.5 parent: 104 type: Transform - - uid: 1754 + - uid: 857 components: - - pos: -4.5,23.5 + - pos: -24.5,-20.5 parent: 104 type: Transform - - uid: 1755 + - uid: 858 components: - - pos: -5.5,23.5 + - pos: -30.5,3.5 parent: 104 type: Transform - - uid: 1756 + - uid: 859 components: - - pos: -6.5,23.5 + - rot: 3.141592653589793 rad + pos: -28.5,-21.5 parent: 104 type: Transform - - uid: 1757 + - uid: 861 components: - - pos: -7.5,23.5 + - pos: -30.5,1.5 parent: 104 type: Transform - - uid: 1762 + - uid: 864 components: - - pos: 1.5,-18.5 + - rot: 3.141592653589793 rad + pos: -27.5,-21.5 parent: 104 type: Transform - - uid: 1767 + - uid: 865 components: - - pos: -19.5,7.5 + - pos: -28.5,2.5 parent: 104 type: Transform - - uid: 1768 + - uid: 869 components: - - pos: -19.5,6.5 + - pos: -32.5,2.5 parent: 104 type: Transform - - uid: 1769 + - uid: 871 components: - - pos: -19.5,5.5 + - pos: -31.5,4.5 parent: 104 type: Transform - - uid: 1770 + - uid: 872 components: - - pos: -18.5,7.5 + - pos: -30.5,2.5 parent: 104 type: Transform - - uid: 1771 + - uid: 873 components: - - pos: -18.5,6.5 + - pos: -16.5,1.5 parent: 104 type: Transform - - uid: 1772 + - uid: 874 components: - - pos: -18.5,5.5 + - pos: -15.5,4.5 parent: 104 type: Transform - - uid: 1773 + - uid: 875 components: - - pos: -17.5,7.5 + - pos: -15.5,3.5 parent: 104 type: Transform - - uid: 1774 + - uid: 876 components: - - pos: -17.5,6.5 + - pos: -15.5,2.5 parent: 104 type: Transform - - uid: 1775 + - uid: 878 components: - - pos: -17.5,5.5 + - pos: -23.5,-21.5 parent: 104 type: Transform - - uid: 1776 + - uid: 879 components: - - pos: -21.5,19.5 + - pos: -23.5,-22.5 parent: 104 type: Transform - - uid: 1777 + - uid: 880 components: - - pos: -22.5,19.5 + - pos: -23.5,-23.5 parent: 104 type: Transform - - uid: 1778 + - uid: 881 components: - - pos: -21.5,18.5 + - pos: -22.5,-20.5 parent: 104 type: Transform - - uid: 1779 + - uid: 882 components: - - pos: -22.5,18.5 + - pos: -22.5,-21.5 parent: 104 type: Transform - - uid: 1780 + - uid: 883 components: - - pos: -22.5,17.5 + - pos: -31.5,1.5 parent: 104 type: Transform - - uid: 1781 + - uid: 885 components: - - pos: -23.5,17.5 + - pos: -23.5,-20.5 parent: 104 type: Transform - - uid: 1782 + - uid: 886 components: - - pos: -23.5,16.5 + - pos: -31.5,-20.5 parent: 104 type: Transform - - uid: 1792 + - uid: 887 components: - - pos: 4.5,-19.5 + - pos: -28.5,4.5 parent: 104 type: Transform - - uid: 1793 + - uid: 888 components: - - pos: 4.5,-20.5 + - pos: -28.5,3.5 parent: 104 type: Transform - - uid: 1794 + - uid: 889 components: - - pos: 2.5,-19.5 + - rot: 3.141592653589793 rad + pos: -34.5,-23.5 parent: 104 type: Transform - - uid: 1795 + - uid: 890 components: - - pos: 2.5,-20.5 + - rot: 3.141592653589793 rad + pos: -32.5,-23.5 parent: 104 type: Transform - - uid: 1796 + - uid: 891 components: - - pos: -1.5,-10.5 + - pos: -33.5,2.5 parent: 104 type: Transform - - uid: 1797 + - uid: 892 components: - - pos: 3.5,-19.5 + - rot: 3.141592653589793 rad + pos: -31.5,-22.5 parent: 104 type: Transform - - uid: 1798 + - uid: 893 components: - - pos: 3.5,-20.5 + - rot: 3.141592653589793 rad + pos: -31.5,-23.5 parent: 104 type: Transform - - uid: 1801 + - uid: 894 components: - - pos: 7.5,-19.5 + - rot: 3.141592653589793 rad + pos: -30.5,-22.5 parent: 104 type: Transform - - uid: 1802 + - uid: 895 components: - - pos: 7.5,-20.5 + - rot: 3.141592653589793 rad + pos: -30.5,-23.5 parent: 104 type: Transform - - uid: 1803 + - uid: 896 components: - - pos: 7.5,-21.5 + - rot: 3.141592653589793 rad + pos: -29.5,-22.5 parent: 104 type: Transform - - uid: 1804 + - uid: 897 components: - - pos: 5.5,-19.5 + - rot: 3.141592653589793 rad + pos: -29.5,-23.5 parent: 104 type: Transform - - uid: 1805 + - uid: 898 components: - - pos: 5.5,-20.5 + - rot: 3.141592653589793 rad + pos: -28.5,-22.5 parent: 104 type: Transform - - uid: 1806 + - uid: 899 components: - - pos: 5.5,-21.5 + - rot: 3.141592653589793 rad + pos: -28.5,-23.5 parent: 104 type: Transform - - uid: 1807 + - uid: 900 components: - - pos: 6.5,-19.5 + - rot: 3.141592653589793 rad + pos: -27.5,-22.5 parent: 104 type: Transform - - uid: 1808 + - uid: 901 components: - - pos: 6.5,-20.5 + - rot: 3.141592653589793 rad + pos: -26.5,-22.5 parent: 104 type: Transform - - uid: 1809 + - uid: 902 components: - - pos: 6.5,-21.5 + - rot: 3.141592653589793 rad + pos: -26.5,-23.5 parent: 104 type: Transform - - uid: 1835 + - uid: 903 components: - - pos: 8.5,-19.5 + - rot: 3.141592653589793 rad + pos: -25.5,-22.5 parent: 104 type: Transform - - uid: 1836 + - uid: 904 components: - - pos: 8.5,-20.5 + - rot: 3.141592653589793 rad + pos: -25.5,-23.5 parent: 104 type: Transform - - uid: 1837 + - uid: 905 components: - - pos: 8.5,-21.5 + - rot: 3.141592653589793 rad + pos: -35.5,-22.5 parent: 104 type: Transform - - uid: 1865 + - uid: 906 components: - - pos: 16.5,-21.5 + - rot: 3.141592653589793 rad + pos: -35.5,-23.5 parent: 104 type: Transform - - uid: 1870 + - uid: 907 components: - - pos: 17.5,-21.5 + - pos: -19.5,-23.5 parent: 104 type: Transform - - uid: 1875 + - uid: 909 components: - - pos: 18.5,-21.5 + - rot: 3.141592653589793 rad + pos: -25.5,-21.5 parent: 104 type: Transform - - uid: 1880 + - uid: 910 components: - - pos: 19.5,-21.5 + - rot: 3.141592653589793 rad + pos: -35.5,-20.5 parent: 104 type: Transform - - uid: 1884 + - uid: 911 components: - - pos: 20.5,-21.5 + - rot: 3.141592653589793 rad + pos: -35.5,-21.5 parent: 104 type: Transform - - uid: 1888 + - uid: 912 components: - - pos: 21.5,-21.5 + - rot: 3.141592653589793 rad + pos: -34.5,-22.5 parent: 104 type: Transform - - uid: 1892 + - uid: 913 components: - - pos: 22.5,-21.5 + - pos: -23.5,4.5 parent: 104 type: Transform - - uid: 1896 + - uid: 915 components: - - pos: 23.5,-21.5 + - rot: 3.141592653589793 rad + pos: -23.5,3.5 parent: 104 type: Transform - - uid: 1900 + - uid: 916 components: - - pos: 24.5,-21.5 + - pos: -12.5,4.5 parent: 104 type: Transform - - uid: 1904 + - uid: 917 components: - - pos: 25.5,-21.5 + - pos: -12.5,3.5 parent: 104 type: Transform - - uid: 1909 + - uid: 918 components: - - pos: 28.5,-11.5 + - pos: -12.5,2.5 parent: 104 type: Transform - - uid: 1910 + - uid: 919 components: - - pos: 28.5,-10.5 + - pos: -22.5,-22.5 parent: 104 type: Transform - - uid: 1911 + - uid: 921 components: - - pos: 28.5,-9.5 + - pos: -15.5,-22.5 parent: 104 type: Transform - - uid: 1912 + - uid: 922 components: - - pos: 28.5,-8.5 + - pos: -14.5,1.5 parent: 104 type: Transform - - uid: 1913 + - uid: 923 components: - - pos: 26.5,-21.5 + - pos: -13.5,4.5 parent: 104 type: Transform - - uid: 1923 + - uid: 924 components: - - pos: 26.5,-11.5 + - pos: -13.5,3.5 parent: 104 type: Transform - - uid: 1924 + - uid: 925 components: - - pos: 26.5,-10.5 + - pos: -13.5,2.5 parent: 104 type: Transform - - uid: 1925 + - uid: 928 components: - - pos: 26.5,-9.5 + - pos: -15.5,-23.5 parent: 104 type: Transform - - uid: 1926 + - uid: 929 components: - - pos: 26.5,-8.5 + - pos: -15.5,1.5 parent: 104 type: Transform - - uid: 1927 + - uid: 930 components: - - pos: 26.5,-7.5 + - pos: -14.5,4.5 parent: 104 type: Transform - - uid: 1928 + - uid: 932 components: - - pos: 26.5,-6.5 + - pos: -14.5,2.5 parent: 104 type: Transform - - uid: 1930 + - uid: 936 components: - - pos: 26.5,-5.5 + - pos: -16.5,4.5 parent: 104 type: Transform - - uid: 1934 + - uid: 937 components: - - pos: 26.5,-4.5 + - pos: -16.5,3.5 parent: 104 type: Transform - - uid: 1935 + - uid: 938 components: - - pos: 26.5,-3.5 + - pos: -16.5,2.5 parent: 104 type: Transform - - uid: 1936 + - uid: 939 components: - - pos: 26.5,-2.5 + - pos: -12.5,-20.5 parent: 104 type: Transform - - uid: 1937 + - uid: 940 components: - - pos: 26.5,-1.5 + - pos: -15.5,-21.5 parent: 104 type: Transform - - uid: 1938 + - uid: 942 components: - - pos: 26.5,-0.5 + - pos: -18.5,1.5 parent: 104 type: Transform - - uid: 1939 + - uid: 943 components: - - pos: 26.5,0.5 + - pos: -17.5,4.5 parent: 104 type: Transform - - uid: 1940 + - uid: 944 components: - - pos: 26.5,1.5 + - pos: -17.5,3.5 parent: 104 type: Transform - - uid: 1941 + - uid: 945 components: - - pos: 26.5,2.5 + - pos: -17.5,2.5 parent: 104 type: Transform - - uid: 1942 + - uid: 946 components: - - pos: 27.5,-21.5 + - pos: -12.5,-22.5 parent: 104 type: Transform - - uid: 1952 + - uid: 947 components: - - pos: 27.5,-11.5 + - pos: -22.5,-23.5 parent: 104 type: Transform - - uid: 1953 + - uid: 948 components: - - pos: 27.5,-10.5 + - pos: -13.5,-21.5 parent: 104 type: Transform - - uid: 1954 + - uid: 949 components: - - pos: 27.5,-9.5 + - pos: -19.5,1.5 parent: 104 type: Transform - - uid: 1955 + - uid: 950 components: - - pos: 27.5,-8.5 + - pos: -18.5,4.5 parent: 104 type: Transform - - uid: 1956 + - uid: 951 components: - - pos: 27.5,-7.5 + - pos: -18.5,3.5 parent: 104 type: Transform - - uid: 1957 + - uid: 952 components: - - pos: 27.5,-6.5 + - pos: -18.5,2.5 parent: 104 type: Transform - - uid: 1958 + - uid: 953 components: - - pos: 27.5,-5.5 + - pos: -12.5,-21.5 parent: 104 type: Transform - - uid: 1959 + - uid: 954 components: - - pos: 27.5,-4.5 + - pos: -13.5,-22.5 parent: 104 type: Transform - - uid: 1960 + - uid: 956 components: - - pos: 27.5,-3.5 + - pos: -11.5,1.5 parent: 104 type: Transform - - uid: 1961 + - uid: 958 components: - - pos: 27.5,-2.5 + - pos: -19.5,3.5 parent: 104 type: Transform - - uid: 1962 + - uid: 959 components: - - pos: 27.5,-1.5 + - pos: -19.5,2.5 parent: 104 type: Transform - - uid: 1963 + - uid: 963 components: - - pos: 27.5,-0.5 + - pos: -12.5,1.5 parent: 104 type: Transform - - uid: 1964 + - uid: 964 components: - - pos: 27.5,0.5 + - pos: -11.5,4.5 parent: 104 type: Transform - - uid: 1965 + - uid: 965 components: - - pos: 27.5,1.5 + - pos: -11.5,3.5 parent: 104 type: Transform - - uid: 1966 + - uid: 966 components: - - pos: 27.5,2.5 + - pos: -11.5,2.5 parent: 104 type: Transform - - uid: 1967 + - uid: 972 components: - - pos: 28.5,-21.5 + - pos: -11.5,-21.5 parent: 104 type: Transform - - uid: 1973 + - uid: 984 components: - - pos: 30.5,-1.5 + - pos: -9.5,-9.5 parent: 104 type: Transform - - uid: 1974 + - uid: 985 components: - - pos: 30.5,-0.5 + - pos: -9.5,-10.5 parent: 104 type: Transform - - uid: 1975 + - uid: 986 components: - - pos: 30.5,0.5 + - pos: -9.5,-11.5 parent: 104 type: Transform - - uid: 1976 + - uid: 987 components: - - pos: 30.5,1.5 + - pos: -9.5,-12.5 parent: 104 type: Transform - - uid: 1977 + - uid: 988 components: - - pos: 30.5,2.5 + - pos: -10.5,4.5 parent: 104 type: Transform - - uid: 1978 + - uid: 989 components: - - pos: 28.5,-7.5 + - pos: -10.5,3.5 parent: 104 type: Transform - - uid: 1979 + - uid: 990 components: - - pos: 28.5,-6.5 + - pos: -10.5,2.5 parent: 104 type: Transform - - uid: 1980 + - uid: 991 components: - - pos: 28.5,-5.5 + - pos: -10.5,1.5 parent: 104 type: Transform - - uid: 1981 + - uid: 992 components: - - pos: 28.5,-4.5 + - pos: -10.5,0.5 parent: 104 type: Transform - - uid: 1982 + - uid: 993 components: - - pos: 28.5,-3.5 + - pos: -10.5,-0.5 parent: 104 type: Transform - - uid: 1983 + - uid: 994 components: - - pos: 28.5,-2.5 + - pos: -10.5,-1.5 parent: 104 type: Transform - - uid: 1984 + - uid: 995 components: - - pos: 28.5,-1.5 + - pos: -10.5,-2.5 parent: 104 type: Transform - - uid: 1985 + - uid: 996 components: - - pos: 28.5,-0.5 + - pos: -10.5,-3.5 parent: 104 type: Transform - - uid: 1986 + - uid: 997 components: - - pos: 28.5,0.5 + - pos: -10.5,-4.5 parent: 104 type: Transform - - uid: 1987 + - uid: 998 components: - - pos: 28.5,1.5 + - pos: -10.5,-5.5 parent: 104 type: Transform - - uid: 1988 + - uid: 999 components: - - pos: 28.5,2.5 + - pos: -10.5,-6.5 parent: 104 type: Transform - - uid: 1989 + - uid: 1000 components: - - pos: 29.5,-20.5 + - pos: -10.5,-7.5 parent: 104 type: Transform - - uid: 1990 + - uid: 1001 components: - - pos: 29.5,-19.5 + - pos: -10.5,-8.5 parent: 104 type: Transform - - uid: 1991 + - uid: 1002 components: - - pos: 29.5,-18.5 + - pos: -10.5,-9.5 parent: 104 type: Transform - - uid: 1992 + - uid: 1003 components: - - pos: 29.5,-17.5 + - pos: -10.5,-10.5 parent: 104 type: Transform - - uid: 1993 + - uid: 1004 components: - - pos: 29.5,-16.5 + - pos: -10.5,-11.5 parent: 104 type: Transform - - uid: 1994 + - uid: 1005 components: - - pos: 29.5,-15.5 + - pos: -10.5,-12.5 parent: 104 type: Transform - - uid: 1995 + - uid: 1006 components: - - pos: 29.5,-14.5 + - pos: -9.5,4.5 parent: 104 type: Transform - - uid: 1996 + - uid: 1007 components: - - pos: 29.5,-13.5 + - pos: -9.5,3.5 parent: 104 type: Transform - - uid: 1997 + - uid: 1008 components: - - pos: 29.5,-12.5 + - pos: -9.5,2.5 parent: 104 type: Transform - - uid: 1998 + - uid: 1009 components: - - pos: 29.5,-11.5 + - pos: -9.5,1.5 parent: 104 type: Transform - - uid: 1999 + - uid: 1010 components: - - pos: 29.5,-10.5 + - pos: -9.5,0.5 parent: 104 type: Transform - - uid: 2000 + - uid: 1011 components: - - pos: 29.5,-9.5 + - pos: -9.5,-0.5 parent: 104 type: Transform - - uid: 2001 + - uid: 1012 components: - - pos: 29.5,-8.5 + - pos: -9.5,-1.5 parent: 104 type: Transform - - uid: 2002 + - uid: 1013 components: - - pos: 29.5,-7.5 + - pos: -9.5,-2.5 parent: 104 type: Transform - - uid: 2003 + - uid: 1014 components: - - pos: 29.5,-6.5 + - pos: -9.5,-3.5 parent: 104 type: Transform - - uid: 2004 + - uid: 1015 components: - - pos: 29.5,-5.5 + - pos: -9.5,-4.5 parent: 104 type: Transform - - uid: 2005 + - uid: 1016 components: - - pos: 29.5,-4.5 + - pos: -9.5,-5.5 parent: 104 type: Transform - - uid: 2006 + - uid: 1017 components: - - pos: 29.5,-3.5 + - pos: -9.5,-6.5 parent: 104 type: Transform - - uid: 2007 + - uid: 1018 components: - - pos: 29.5,-2.5 + - pos: -9.5,-7.5 parent: 104 type: Transform - - uid: 2008 + - uid: 1019 components: - - pos: 29.5,-1.5 + - pos: -9.5,-8.5 parent: 104 type: Transform - - uid: 2009 + - uid: 1086 components: - - pos: 29.5,-0.5 + - pos: -14.5,3.5 parent: 104 type: Transform - - uid: 2010 + - uid: 1087 components: - - pos: 29.5,0.5 + - pos: -19.5,4.5 parent: 104 type: Transform - - uid: 2011 + - uid: 1202 components: - - pos: 29.5,1.5 + - rot: 3.141592653589793 rad + pos: -24.5,4.5 parent: 104 type: Transform - - uid: 2012 + - uid: 1203 components: - - pos: 29.5,2.5 + - rot: 3.141592653589793 rad + pos: -27.5,-23.5 parent: 104 type: Transform - - uid: 2013 + - uid: 1222 components: - - pos: 30.5,-19.5 + - pos: -34.5,2.5 parent: 104 type: Transform - - uid: 2014 + - uid: 1223 components: - - pos: 30.5,-18.5 + - pos: -34.5,3.5 parent: 104 type: Transform - - uid: 2015 + - uid: 1362 components: - - pos: 30.5,-17.5 + - pos: -4.5,-2.5 parent: 104 type: Transform - - uid: 2020 + - uid: 1363 components: - - pos: 30.5,-16.5 + - pos: -2.5,-2.5 parent: 104 type: Transform - - uid: 2023 + - uid: 1364 components: - - pos: 30.5,-15.5 + - pos: -3.5,-2.5 parent: 104 type: Transform - - uid: 2024 + - uid: 1365 components: - - pos: 30.5,-14.5 + - pos: -4.5,-4.5 parent: 104 type: Transform - - uid: 2025 + - uid: 1366 components: - - pos: 30.5,-13.5 + - pos: -3.5,-4.5 parent: 104 type: Transform - - uid: 2026 + - uid: 1377 components: - - pos: 30.5,-12.5 + - pos: -2.5,-4.5 parent: 104 type: Transform - - uid: 2029 + - uid: 2048 components: - - pos: 30.5,-9.5 + - rot: 3.141592653589793 rad + pos: -23.5,2.5 parent: 104 type: Transform - - uid: 2030 + - uid: 2050 components: - - pos: 30.5,-8.5 + - rot: 3.141592653589793 rad + pos: -24.5,2.5 parent: 104 type: Transform - - uid: 2032 + - uid: 2405 components: - - pos: 30.5,-7.5 + - pos: 23.5,-19.5 parent: 104 type: Transform - - uid: 2033 + - uid: 2406 components: - - pos: 30.5,-6.5 + - pos: 22.5,-19.5 parent: 104 type: Transform - - uid: 2034 + - uid: 2407 components: - - pos: 30.5,-5.5 + - pos: 21.5,-19.5 parent: 104 type: Transform - - uid: 2035 + - uid: 2408 components: - - pos: 30.5,-4.5 + - pos: 21.5,-17.5 parent: 104 type: Transform - - uid: 2036 + - uid: 2409 components: - - pos: 30.5,-3.5 + - pos: 22.5,-17.5 parent: 104 type: Transform - - uid: 2037 + - uid: 2410 components: - - pos: 30.5,-2.5 + - pos: 23.5,-17.5 parent: 104 type: Transform - - uid: 2038 + - uid: 2505 components: - - pos: 20.5,-0.5 + - rot: 3.141592653589793 rad + pos: -22.5,3.5 parent: 104 type: Transform - - uid: 2039 + - uid: 2507 components: - - pos: 20.5,-1.5 + - rot: 3.141592653589793 rad + pos: -20.5,4.5 parent: 104 type: Transform - - uid: 2040 + - uid: 2508 components: - - pos: 15.5,2.5 + - rot: 3.141592653589793 rad + pos: -21.5,2.5 parent: 104 type: Transform - - uid: 2041 + - uid: 2514 components: - - pos: 16.5,2.5 + - rot: 3.141592653589793 rad + pos: -20.5,3.5 parent: 104 type: Transform - - uid: 2042 + - uid: 2515 components: - - pos: 19.5,0.5 + - rot: 3.141592653589793 rad + pos: -21.5,4.5 parent: 104 type: Transform - - uid: 2043 + - uid: 2520 components: - - pos: 19.5,-0.5 + - rot: 3.141592653589793 rad + pos: -22.5,1.5 parent: 104 type: Transform - - uid: 2044 + - uid: 2521 components: - - pos: 19.5,-1.5 + - rot: 3.141592653589793 rad + pos: -20.5,2.5 parent: 104 type: Transform - - uid: 2045 + - uid: 2527 components: - - pos: 25.5,2.5 + - pos: -20.5,1.5 parent: 104 type: Transform - - uid: 2046 + - uid: 2553 components: - - pos: 25.5,1.5 + - rot: 3.141592653589793 rad + pos: -22.5,4.5 parent: 104 type: Transform - - uid: 2047 + - uid: 2554 components: - - pos: 25.5,0.5 + - rot: 3.141592653589793 rad + pos: -22.5,2.5 parent: 104 type: Transform - - uid: 2049 + - uid: 2557 components: - - pos: 25.5,-0.5 + - rot: 3.141592653589793 rad + pos: -21.5,3.5 parent: 104 type: Transform - - uid: 2051 + - uid: 2569 components: - - pos: 25.5,-1.5 + - rot: 3.141592653589793 rad + pos: -23.5,1.5 parent: 104 type: Transform - - uid: 2052 + - uid: 3084 components: - - pos: 24.5,2.5 + - rot: 3.141592653589793 rad + pos: -24.5,1.5 parent: 104 type: Transform - - uid: 2053 +- proto: Chair + entities: + - uid: 1367 components: - - pos: 24.5,1.5 + - rot: 3.141592653589793 rad + pos: -3.5,-4.5 parent: 104 type: Transform - - uid: 2054 + - uid: 1376 components: - - pos: 24.5,0.5 + - rot: 3.141592653589793 rad + pos: -4.5,-4.5 parent: 104 type: Transform - - uid: 2055 + - uid: 1878 components: - - pos: 24.5,-0.5 + - rot: -1.5707963267948966 rad + pos: -35.5,-21.5 parent: 104 type: Transform - - uid: 2056 + - uid: 1879 components: - - pos: 24.5,-1.5 + - rot: -1.5707963267948966 rad + pos: -35.5,-22.5 parent: 104 type: Transform - - uid: 2057 + - uid: 2312 components: - - pos: 23.5,2.5 + - rot: -1.5707963267948966 rad + pos: 7.5,-13.5 parent: 104 type: Transform - - uid: 2058 + - uid: 2313 components: - - pos: 23.5,1.5 + - rot: -1.5707963267948966 rad + pos: 7.5,-14.5 parent: 104 type: Transform - - uid: 2059 +- proto: ChairFolding + entities: + - uid: 544 components: - - pos: 23.5,0.5 + - pos: 20.5,8.5 parent: 104 type: Transform - - uid: 2060 + - uid: 1062 components: - - pos: 23.5,-0.5 + - rot: 1.5707963267948966 rad + pos: 18.5,4.5 parent: 104 type: Transform - - uid: 2061 + - uid: 1063 components: - - pos: 23.5,-1.5 + - rot: 1.5707963267948966 rad + pos: 18.5,2.5 parent: 104 type: Transform - - uid: 2062 +- proto: ChairOfficeDark + entities: + - uid: 1298 components: - - pos: 22.5,2.5 + - rot: 1.5707963267948966 rad + pos: 13.5,-17.5 parent: 104 type: Transform - - uid: 2063 + - uid: 1304 components: - - pos: 22.5,1.5 + - pos: 11.5,-17.5 parent: 104 type: Transform - - uid: 2064 + - uid: 1764 components: - - pos: 22.5,0.5 + - pos: -13.5,6.5 parent: 104 type: Transform - - uid: 2065 + - uid: 2427 components: - - pos: 22.5,-0.5 + - rot: 1.5707963267948966 rad + pos: 19.5,-15.5 parent: 104 type: Transform - - uid: 2066 + - uid: 2428 components: - - pos: 22.5,-1.5 + - pos: 25.5,-15.5 parent: 104 type: Transform - - uid: 2067 +- proto: ChairOfficeLight + entities: + - uid: 751 components: - - pos: 14.5,2.5 + - rot: 3.141592653589793 rad + pos: -0.5,-16.5 parent: 104 type: Transform - - uid: 2068 + - uid: 1124 components: - - pos: 15.5,1.5 + - pos: -0.5,-12.5 parent: 104 type: Transform - - uid: 2069 + - uid: 1296 components: - - pos: 21.5,0.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-11.5 parent: 104 type: Transform - - uid: 2070 + - uid: 1297 components: - - pos: 21.5,-0.5 + - pos: 4.5,-16.5 parent: 104 type: Transform - - uid: 2071 +- proto: ChairPilotSeat + entities: + - uid: 326 components: - - pos: 21.5,-1.5 + - rot: 3.141592653589793 rad + pos: 20.5,-6.5 parent: 104 type: Transform - - uid: 2072 + - uid: 327 components: - - pos: 14.5,3.5 + - rot: -1.5707963267948966 rad + pos: 19.5,-7.5 parent: 104 type: Transform - - uid: 2073 + - uid: 328 components: - - pos: 17.5,-0.5 + - rot: 1.5707963267948966 rad + pos: 21.5,-7.5 parent: 104 type: Transform - - uid: 2074 + - uid: 329 components: - - pos: 17.5,0.5 + - pos: 20.5,-8.5 parent: 104 type: Transform - - uid: 2075 + - uid: 330 components: - - pos: 17.5,1.5 + - rot: 1.5707963267948966 rad + pos: 18.5,-6.5 parent: 104 type: Transform - - uid: 2076 + - uid: 331 components: - - pos: 18.5,-1.5 + - rot: 1.5707963267948966 rad + pos: 19.5,-5.5 parent: 104 type: Transform - - uid: 2077 + - uid: 332 components: - - pos: 18.5,-0.5 + - rot: -1.5707963267948966 rad + pos: 21.5,-5.5 parent: 104 type: Transform - - uid: 2078 + - uid: 333 components: - - pos: 18.5,0.5 + - rot: -1.5707963267948966 rad + pos: 22.5,-6.5 parent: 104 type: Transform - - uid: 2079 + - uid: 334 components: - - pos: 18.5,1.5 + - rot: -1.5707963267948966 rad + pos: 22.5,-8.5 parent: 104 type: Transform - - uid: 2080 + - uid: 335 components: - - pos: -12.5,28.5 + - rot: -1.5707963267948966 rad + pos: 21.5,-9.5 parent: 104 type: Transform - - uid: 2084 + - uid: 336 components: - - pos: -12.5,27.5 + - rot: 1.5707963267948966 rad + pos: 19.5,-9.5 parent: 104 type: Transform - - uid: 2085 + - uid: 337 components: - - pos: -12.5,26.5 + - rot: 1.5707963267948966 rad + pos: 18.5,-8.5 parent: 104 type: Transform - - uid: 2086 +- proto: ChairWood + entities: + - uid: 2429 components: - - pos: -12.5,25.5 + - pos: -0.5,-1.5 parent: 104 type: Transform - - uid: 2087 +- proto: chem_master + entities: + - uid: 2444 components: - - pos: -16.5,25.5 + - pos: 5.5,-10.5 parent: 104 type: Transform - - uid: 2088 +- proto: ChemicalPayload + entities: + - uid: 2380 components: - - pos: -3.5,-6.5 + - pos: 3.3003616,-17.381208 parent: 104 type: Transform - - uid: 2091 + - uid: 3110 components: - - pos: -15.5,25.5 + - pos: 3.6284866,-17.287361 parent: 104 type: Transform - - uid: 2093 +- proto: ChemistryHotplate + entities: + - uid: 1383 components: - - pos: -14.5,26.5 + - pos: 4.5,-12.5 parent: 104 type: Transform - - uid: 2094 +- proto: ChessBoard + entities: + - uid: 354 components: - - pos: -14.5,25.5 + - pos: 13.499366,-8.433407 parent: 104 type: Transform - - uid: 2096 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 1359 components: - - pos: -13.5,27.5 + - pos: -2.5,-2.5 parent: 104 type: Transform - - uid: 2098 +- proto: ClosetL3Filled + entities: + - uid: 1153 components: - - pos: -13.5,26.5 + - pos: 7.5,-17.5 parent: 104 type: Transform - - uid: 2099 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 1114 components: - - pos: -13.5,25.5 + - pos: 6.5,-17.5 parent: 104 type: Transform - - uid: 2100 +- proto: ClosetToolFilled + entities: + - uid: 2417 components: - - pos: -20.5,30.5 + - pos: 20.5,-14.5 parent: 104 type: Transform - - uid: 2101 + - uid: 2418 components: - - pos: -20.5,29.5 + - pos: 24.5,-14.5 parent: 104 type: Transform - - uid: 2102 +- proto: ClothingBackpackDuffelSyndicateFilledMedical + entities: + - uid: 2437 components: - - pos: -20.5,28.5 + - pos: 0.5,-12.5 parent: 104 type: Transform - - uid: 2103 +- proto: ClothingBackpackWaterTank + entities: + - uid: 151 components: - - pos: -20.5,27.5 + - pos: 9.36168,-4.462339 parent: 104 type: Transform - - uid: 2104 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 212 components: - - pos: -20.5,26.5 + - pos: 13.897393,-10.470539 parent: 104 type: Transform - - uid: 2105 +- proto: ClothingNeckScarfStripedRed + entities: + - uid: 1150 components: - - pos: -20.5,25.5 + - pos: -2.530845,-16.461567 parent: 104 type: Transform - - uid: 2106 +- proto: ClothingNeckStethoscope + entities: + - uid: 1336 components: - - pos: -20.5,24.5 + - pos: 7.5027137,-12.301802 parent: 104 type: Transform - - uid: 2107 +- proto: ClothingShoesBootsSalvage + entities: + - uid: 542 components: - - pos: -19.5,30.5 + - pos: 19.574894,7.069533 parent: 104 type: Transform - - uid: 2108 + - uid: 545 components: - - pos: -19.5,29.5 + - pos: 19.246769,6.507033 parent: 104 type: Transform - - uid: 2109 +- proto: CombatKnife + entities: + - uid: 1694 components: - - pos: -19.5,28.5 + - pos: 5.483225,11.368477 parent: 104 type: Transform - - uid: 2110 +- proto: ComfyChair + entities: + - uid: 21 components: - - pos: -19.5,27.5 + - rot: 1.5707963267948966 rad + pos: 12.5,-8.5 parent: 104 type: Transform - - uid: 2111 + - uid: 352 components: - - pos: -19.5,26.5 + - rot: -1.5707963267948966 rad + pos: 14.5,-8.5 parent: 104 type: Transform - - uid: 2112 +- proto: computerBodyScanner + entities: + - uid: 2436 components: - - pos: -19.5,25.5 + - rot: 1.5707963267948966 rad + pos: 0.5,-14.5 parent: 104 type: Transform - - uid: 2113 +- proto: ComputerSurveillanceWirelessCameraMonitor + entities: + - uid: 1127 components: - - pos: -19.5,24.5 + - rot: 1.5707963267948966 rad + pos: -14.5,6.5 parent: 104 type: Transform - - uid: 2115 +- proto: CyberPen + entities: + - uid: 696 components: - - pos: -18.5,30.5 + - pos: -14.478909,9.585995 parent: 104 type: Transform - - uid: 2116 +- proto: DresserFilled + entities: + - uid: 349 components: - - pos: -18.5,29.5 + - pos: 13.5,-3.5 parent: 104 type: Transform - - uid: 2117 +- proto: DrinkAbsintheBottleFull + entities: + - uid: 15 components: - - pos: -18.5,28.5 + - pos: 3.9415665,-8.34479 parent: 104 type: Transform - - uid: 2118 +- proto: DrinkBeerBottleFull + entities: + - uid: 157 components: - - pos: -18.5,27.5 + - pos: 2.5961013,-2.2186527 parent: 104 type: Transform - - uid: 2119 + - uid: 170 components: - - pos: -18.5,26.5 + - pos: 3.6117263,-3.1874027 parent: 104 type: Transform - - uid: 2120 +- proto: DrinkGinBottleFull + entities: + - uid: 134 components: - - pos: -18.5,25.5 + - pos: 3.2228165,-8.4229965 parent: 104 type: Transform - - uid: 2121 +- proto: DrinkWhiskeyBottleFull + entities: + - uid: 25 components: - - pos: -18.5,24.5 + - pos: -0.5303154,-6.2851996 parent: 104 type: Transform - - uid: 2122 +- proto: EmpGrenade + entities: + - uid: 2456 components: - - pos: -17.5,28.5 + - pos: 14.40774,-17.385033 parent: 104 type: Transform - - uid: 2123 + - uid: 2457 components: - - pos: -17.5,27.5 + - pos: 14.62649,-17.385033 parent: 104 type: Transform - - uid: 2124 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 139 components: - - pos: -17.5,25.5 + - pos: 28.5,-14.5 parent: 104 type: Transform - - uid: 2125 + - uid: 141 components: - - pos: -11.5,28.5 + - pos: 14.5,-0.5 parent: 104 type: Transform - - uid: 2127 + - uid: 1812 components: - - pos: -11.5,27.5 + - pos: -1.5,-2.5 parent: 104 type: Transform - - uid: 2128 + - uid: 1816 components: - - pos: -11.5,26.5 + - pos: 8.5,-10.5 parent: 104 type: Transform - - uid: 2129 + - uid: 1822 components: - - pos: -11.5,25.5 + - pos: 15.5,-17.5 parent: 104 type: Transform - - uid: 2130 +- proto: FaxMachineSyndie + entities: + - uid: 81 components: - - pos: -11.5,24.5 + - pos: 7.5,-4.5 parent: 104 type: Transform - - uid: 2131 +- proto: filingCabinetDrawer + entities: + - uid: 1140 components: - - pos: -21.5,31.5 + - pos: -12.5,7.5 parent: 104 type: Transform - - uid: 2132 +- proto: filingCabinetDrawerRandom + entities: + - uid: 108 components: - - pos: -20.5,31.5 + - pos: 7.5,-5.5 parent: 104 type: Transform - - uid: 2133 +- proto: FirelockGlass + entities: + - uid: 1765 components: - - pos: -19.5,31.5 + - pos: -13.5,5.5 parent: 104 type: Transform - - uid: 2134 +- proto: Fireplace + entities: + - uid: 1273 components: - - pos: -10.5,28.5 + - pos: 1.5,0.5 parent: 104 type: Transform - - uid: 2136 +- proto: FloorDrain + entities: + - uid: 1361 components: - - pos: -10.5,27.5 + - pos: -4.5,-2.5 parent: 104 type: Transform - - uid: 2137 + - fixtures: {} + type: Fixtures + - uid: 2438 components: - - pos: -10.5,26.5 + - pos: 10.5,-3.5 parent: 104 type: Transform - - uid: 2138 + - fixtures: {} + type: Fixtures + - uid: 2443 components: - - pos: -10.5,25.5 + - pos: 4.5,-11.5 parent: 104 type: Transform - - uid: 2139 + - fixtures: {} + type: Fixtures +- proto: FloraRockSolid01 + entities: + - uid: 1707 components: - - pos: -10.5,24.5 + - pos: 5.5565968,16.377468 parent: 104 type: Transform - - uid: 2140 +- proto: FloraRockSolid02 + entities: + - uid: 1708 components: - - pos: -9.5,29.5 + - pos: -3.1481876,-0.15203857 parent: 104 type: Transform - - uid: 2141 + - uid: 1711 components: - - pos: -9.5,28.5 + - pos: -1.3676796,16.13784 parent: 104 type: Transform - - uid: 2142 +- proto: FloraRockSolid03 + entities: + - uid: 1706 components: - - pos: -9.5,27.5 + - pos: 13.550529,12.489372 parent: 104 type: Transform - - uid: 2143 +- proto: FloraTreeConifer01 + entities: + - uid: 261 components: - - pos: -9.5,26.5 + - pos: 7.7892694,4.987089 parent: 104 type: Transform - - uid: 2144 + - uid: 275 components: - - pos: -9.5,25.5 + - pos: -3.80645,4.798395 parent: 104 type: Transform - - uid: 2145 + - uid: 281 components: - - pos: -9.5,24.5 + - pos: -1.0279694,6.890992 parent: 104 type: Transform - - uid: 2146 + - uid: 1619 components: - - pos: -8.5,29.5 + - pos: 16.10984,7.3249645 parent: 104 type: Transform - - uid: 2147 + - uid: 1622 components: - - pos: -8.5,28.5 + - pos: 7.42463,16.597832 parent: 104 type: Transform - - uid: 2148 + - uid: 1626 components: - - pos: -8.5,27.5 + - pos: 11.605486,16.944057 parent: 104 type: Transform - - uid: 2149 +- proto: FloraTreeConifer02 + entities: + - uid: 219 components: - - pos: -8.5,26.5 + - pos: 5.5,4.5 parent: 104 type: Transform - - uid: 2150 + - uid: 260 components: - - pos: -8.5,25.5 + - pos: 7.7267694,7.536619 parent: 104 type: Transform - - uid: 2151 + - uid: 267 components: - - pos: -8.5,24.5 + - pos: 12.789269,3.6888618 parent: 104 type: Transform - - uid: 2152 + - uid: 268 components: - - pos: -7.5,29.5 + - pos: -0.17814255,7.5043383 parent: 104 type: Transform - - uid: 2153 + - uid: 273 components: - - pos: -7.5,28.5 + - pos: -2.591959,2.9214401 parent: 104 type: Transform - - uid: 2154 + - uid: 280 components: - - pos: -7.5,27.5 + - pos: 1.5111885,4.4898434 parent: 104 type: Transform - - uid: 2155 + - uid: 1618 components: - - pos: -7.5,26.5 + - pos: 11.32859,10.093473 parent: 104 type: Transform - - uid: 2156 + - uid: 1620 components: - - pos: -7.5,25.5 + - pos: 15.85984,13.16621 parent: 104 type: Transform - - uid: 2157 + - uid: 1621 components: - - pos: -7.5,24.5 + - pos: 14.582346,17.286049 parent: 104 type: Transform - - uid: 2158 +- proto: FloraTreeConifer03 + entities: + - uid: 271 components: - - pos: -6.5,29.5 + - pos: -1.1000175,4.26659 parent: 104 type: Transform - - uid: 2159 + - uid: 1035 components: - - pos: -6.5,28.5 + - pos: 0.74747276,19.424063 parent: 104 type: Transform - - uid: 2160 + - uid: 1673 components: - - pos: -6.5,27.5 + - pos: -3.5,15.5 parent: 104 type: Transform - - uid: 2161 + - uid: 1830 components: - - pos: -6.5,26.5 + - pos: 8.497473,19.862019 parent: 104 type: Transform - - uid: 2162 +- proto: FloraTreeSnow01 + entities: + - uid: 262 components: - - pos: -6.5,25.5 + - pos: 9.630766,6.7434845 parent: 104 type: Transform - - uid: 2163 +- proto: FloraTreeSnow02 + entities: + - uid: 270 components: - - pos: -6.5,24.5 + - pos: -2.3114033,5.0917635 parent: 104 type: Transform - - uid: 2164 + - uid: 1630 components: - - pos: -5.5,29.5 + - pos: 4.558771,16.696045 parent: 104 type: Transform - - uid: 2165 +- proto: FloraTreeSnow03 + entities: + - uid: 274 components: - - pos: -5.5,28.5 + - pos: -3.3325882,6.8936405 parent: 104 type: Transform - - uid: 2166 + - uid: 1629 components: - - pos: -5.5,27.5 + - pos: 9.924105,15.382175 parent: 104 type: Transform - - uid: 2167 +- proto: FloraTreeSnow04 + entities: + - uid: 265 components: - - pos: -5.5,26.5 + - pos: 0.24603653,5.7335367 parent: 104 type: Transform - - uid: 2168 + - uid: 276 components: - - pos: -5.5,25.5 + - pos: 5.8604717,5.2799397 parent: 104 type: Transform - - uid: 2169 + - uid: 1624 components: - - pos: -5.5,24.5 + - pos: -3.1344147,13.722986 parent: 104 type: Transform - - uid: 2170 +- proto: FloraTreeSnow05 + entities: + - uid: 269 components: - - pos: -4.5,29.5 + - pos: 0.30623245,3.9068413 parent: 104 type: Transform - - uid: 2171 + - uid: 1627 components: - - pos: -4.5,28.5 + - pos: 13.331816,13.977352 parent: 104 type: Transform - - uid: 2172 + - uid: 1628 components: - - pos: -4.5,27.5 + - pos: 15.066191,11.052429 parent: 104 type: Transform - - uid: 2173 + - uid: 1631 components: - - pos: -4.5,26.5 + - pos: 2.1525211,16.977589 parent: 104 type: Transform - - uid: 2174 + - uid: 1672 components: - - pos: -4.5,25.5 + - pos: -3.5,16.5 parent: 104 type: Transform - - uid: 2175 +- proto: FoodBoxDonkpocket + entities: + - uid: 11 components: - - pos: -4.5,24.5 + - pos: 12.527094,-6.308407 parent: 104 type: Transform - - uid: 2176 +- proto: FoodBoxDonkpocketTeriyaki + entities: + - uid: 2475 components: - - pos: -3.5,28.5 + - pos: 12.636917,-6.187726 parent: 104 type: Transform - - uid: 2177 +- proto: FoodBoxDonut + entities: + - uid: 2445 components: - - pos: -3.5,27.5 + - pos: 2.5389562,-6.3072195 parent: 104 type: Transform - - uid: 2178 +- proto: FoodDonutJellySlugcat + entities: + - uid: 3327 components: - - pos: -3.5,26.5 + - pos: -5.7255287,20.539352 parent: 104 type: Transform - - uid: 2179 +- proto: GeneratorBasic15kW + entities: + - uid: 2326 components: - - pos: -3.5,25.5 + - pos: 27.5,-19.5 parent: 104 type: Transform - - uid: 2180 + - uid: 2328 components: - - pos: -3.5,24.5 + - pos: 17.5,-17.5 parent: 104 type: Transform - - uid: 2181 + - uid: 2329 components: - - pos: -2.5,26.5 + - pos: 17.5,-19.5 parent: 104 type: Transform - - uid: 2183 + - uid: 2330 components: - - pos: -2.5,25.5 + - pos: 27.5,-17.5 parent: 104 type: Transform - - uid: 2184 +- proto: GeneratorRTG + entities: + - uid: 2415 components: - - pos: -2.5,24.5 + - pos: 17.5,-18.5 parent: 104 type: Transform - - uid: 2192 + - uid: 2416 components: - - pos: -5.5,-23.5 + - pos: 27.5,-18.5 parent: 104 type: Transform - - uid: 2194 +- proto: GravityGenerator + entities: + - uid: 2327 components: - - pos: 15.5,29.5 + - pos: 22.5,-15.5 parent: 104 type: Transform - - uid: 2195 + - charge: 100 + type: GravityGenerator + - radius: 175.75 + type: PointLight +- proto: GrenadeFlashBang + entities: + - uid: 2309 components: - - pos: 10.5,24.5 + - pos: 11.399388,-16.363453 parent: 104 type: Transform - - uid: 2196 + - uid: 2310 components: - - pos: 15.5,31.5 + - pos: 11.571263,-16.363453 parent: 104 type: Transform - - uid: 2197 +- proto: Grille + entities: + - uid: 95 components: - - pos: 16.5,26.5 + - pos: 0.5,1.5 parent: 104 type: Transform - - uid: 2198 + - uid: 115 components: - - pos: 15.5,30.5 + - pos: -1.5,-0.5 parent: 104 type: Transform - - uid: 2199 + - uid: 118 components: - - pos: 15.5,32.5 + - pos: 2.5,1.5 parent: 104 type: Transform - - uid: 2200 + - uid: 147 components: - - pos: 16.5,23.5 + - pos: 11.5,1.5 parent: 104 type: Transform - - uid: 2201 + - uid: 231 components: - - pos: 16.5,24.5 + - pos: 2.5,2.5 parent: 104 type: Transform - - uid: 2202 + - uid: 232 components: - - pos: 16.5,25.5 + - pos: 2.5,3.5 parent: 104 type: Transform - - uid: 2203 + - uid: 233 components: - - pos: 10.5,23.5 + - pos: 4.5,2.5 parent: 104 type: Transform - - uid: 2204 + - uid: 234 components: - - pos: 10.5,25.5 + - pos: 4.5,3.5 parent: 104 type: Transform - - uid: 2205 + - uid: 303 components: - - pos: 10.5,26.5 + - pos: 16.5,-6.5 parent: 104 type: Transform - - uid: 2206 + - uid: 304 components: - - pos: 10.5,27.5 + - pos: 16.5,-8.5 parent: 104 type: Transform - - uid: 2207 + - uid: 526 components: - - pos: 10.5,28.5 + - pos: 0.5,21.5 parent: 104 type: Transform - - uid: 2208 + - uid: 527 components: - - pos: 11.5,23.5 + - pos: 6.5,21.5 parent: 104 type: Transform - - uid: 2209 + - uid: 528 components: - - pos: 11.5,24.5 + - pos: 1.5,21.5 parent: 104 type: Transform - - uid: 2210 + - uid: 1034 components: - - pos: 11.5,25.5 + - pos: 5.5,21.5 parent: 104 type: Transform - - uid: 2211 + - uid: 1112 components: - - pos: 11.5,26.5 + - pos: -1.5,-17.5 parent: 104 type: Transform - - uid: 2212 + - uid: 1120 components: - - pos: 11.5,27.5 + - pos: 2.5,-15.5 parent: 104 type: Transform - - uid: 2213 + - uid: 1121 components: - - pos: 11.5,28.5 + - pos: 2.5,-13.5 parent: 104 type: Transform - - uid: 2214 + - uid: 1146 components: - - pos: 11.5,29.5 + - pos: -12.5,5.5 parent: 104 type: Transform - - uid: 2215 + - uid: 1148 components: - - pos: 12.5,23.5 + - pos: -14.5,5.5 parent: 104 type: Transform - - uid: 2216 + - uid: 1241 components: - - pos: 12.5,24.5 + - pos: 5.5,-9.5 parent: 104 type: Transform - - uid: 2217 + - uid: 1243 components: - - pos: 12.5,25.5 + - pos: 7.5,-9.5 parent: 104 type: Transform - - uid: 2218 + - uid: 1389 components: - - pos: 12.5,26.5 + - pos: 4.5,1.5 parent: 104 type: Transform - - uid: 2219 + - uid: 1410 components: - - pos: 12.5,27.5 + - pos: 8.5,-17.5 parent: 104 type: Transform - - uid: 2220 + - uid: 1823 components: - - pos: 12.5,28.5 + - pos: 8.5,20.5 parent: 104 type: Transform - - uid: 2221 + - uid: 1824 components: - - pos: 12.5,29.5 + - pos: 4.5,21.5 parent: 104 type: Transform - - uid: 2222 + - uid: 1831 components: - - pos: 12.5,30.5 + - pos: 8.5,21.5 parent: 104 type: Transform - - uid: 2223 + - uid: 1832 components: - - pos: 12.5,31.5 + - pos: 3.5,21.5 parent: 104 type: Transform - - uid: 2224 + - uid: 1840 components: - - pos: 13.5,23.5 + - pos: 11.5,-23.5 parent: 104 type: Transform - - uid: 2225 + - uid: 1841 components: - - pos: 13.5,24.5 + - pos: 10.5,-23.5 parent: 104 type: Transform - - uid: 2226 + - uid: 1847 components: - - pos: 13.5,25.5 + - pos: 12.5,-23.5 parent: 104 type: Transform - - uid: 2227 + - uid: 1854 components: - - pos: 13.5,26.5 + - pos: 13.5,-23.5 parent: 104 type: Transform - - uid: 2228 + - uid: 1860 components: - - pos: 13.5,27.5 + - pos: 14.5,-23.5 parent: 104 type: Transform - - uid: 2229 + - uid: 1931 components: - - pos: 13.5,28.5 + - pos: 0.5,20.5 parent: 104 type: Transform - - uid: 2230 + - uid: 1932 components: - - pos: 13.5,29.5 + - pos: 7.5,21.5 parent: 104 type: Transform - - uid: 2231 + - uid: 1933 components: - - pos: 13.5,30.5 + - pos: 2.5,21.5 parent: 104 type: Transform - - uid: 2232 + - uid: 2189 components: - - pos: 13.5,31.5 + - pos: -0.5,-17.5 parent: 104 type: Transform - - uid: 2233 + - uid: 2296 components: - - pos: 14.5,23.5 + - pos: 0.5,-17.5 parent: 104 type: Transform - - uid: 2234 + - uid: 2318 components: - - pos: 14.5,24.5 + - pos: 11.5,-8.5 parent: 104 type: Transform - - uid: 2235 + - uid: 2319 components: - - pos: 14.5,25.5 + - pos: 11.5,-6.5 parent: 104 type: Transform - - uid: 2236 +- proto: KitchenKnife + entities: + - uid: 1061 components: - - pos: 14.5,26.5 + - pos: 18.918644,6.663283 parent: 104 type: Transform - - uid: 2237 +- proto: KitchenMicrowave + entities: + - uid: 10 components: - - pos: 14.5,27.5 + - pos: 13.5,-6.5 parent: 104 type: Transform - - uid: 2238 +- proto: KitchenReagentGrinder + entities: + - uid: 1257 components: - - pos: 14.5,28.5 + - pos: 3.5,-10.5 parent: 104 type: Transform - - uid: 2239 +- proto: LargeBeaker + entities: + - uid: 2021 components: - - pos: 14.5,29.5 + - pos: 3.435482,-11.231448 parent: 104 type: Transform - - uid: 2240 +- proto: LightPostSmall + entities: + - uid: 214 components: - - pos: 14.5,30.5 + - pos: -19.5,1.5 parent: 104 type: Transform - - uid: 2241 + - uid: 217 components: - - pos: 14.5,31.5 + - pos: -27.5,1.5 parent: 104 type: Transform - - uid: 2242 + - uid: 221 components: - - pos: 14.5,32.5 + - pos: 15.5,16.5 parent: 104 type: Transform - - uid: 2243 + - uid: 222 components: - - pos: 15.5,23.5 + - rot: 1.5707963267948966 rad + pos: -2.5,3.5 parent: 104 type: Transform - - uid: 2244 + - uid: 291 components: - - pos: 15.5,24.5 + - pos: 17.5,3.5 parent: 104 type: Transform - - uid: 2245 + - uid: 540 components: - - pos: 15.5,25.5 + - pos: 27.5,4.5 parent: 104 type: Transform - - uid: 2246 + - uid: 541 components: - - pos: 15.5,26.5 + - pos: 18.5,8.5 parent: 104 type: Transform - - uid: 2247 + - uid: 629 components: - - pos: 15.5,27.5 + - rot: 1.5707963267948966 rad + pos: -0.5,8.5 parent: 104 type: Transform - - uid: 2248 + - uid: 1226 components: - - pos: 15.5,28.5 + - pos: -4.5,-0.5 parent: 104 type: Transform - - uid: 2249 + - uid: 1276 components: - - pos: 19.5,25.5 + - pos: -34.5,4.5 parent: 104 type: Transform - - uid: 2250 + - uid: 1277 components: - - pos: 19.5,26.5 + - pos: -34.5,1.5 parent: 104 type: Transform - - uid: 2251 + - uid: 1278 components: - - pos: 19.5,27.5 + - pos: -35.5,-20.5 parent: 104 type: Transform - - uid: 2252 + - uid: 1279 components: - - pos: 19.5,28.5 + - pos: -35.5,-23.5 parent: 104 type: Transform - - uid: 2253 + - uid: 1280 components: - - pos: 19.5,29.5 + - pos: -27.5,-20.5 parent: 104 type: Transform - - uid: 2254 + - uid: 1284 components: - - pos: 19.5,30.5 + - pos: -19.5,-20.5 parent: 104 type: Transform - - uid: 2255 + - uid: 1413 components: - - pos: 19.5,31.5 + - pos: 0.5,-22.5 parent: 104 type: Transform - - uid: 2256 + - uid: 1668 components: - - pos: 20.5,26.5 + - pos: 5.5,17.5 parent: 104 type: Transform - - uid: 2259 + - uid: 1669 components: - - pos: 20.5,27.5 + - pos: 10.5,11.5 parent: 104 type: Transform - - uid: 2260 + - uid: 1671 components: - - pos: 20.5,28.5 + - pos: -3.5,17.5 parent: 104 type: Transform - - uid: 2261 + - uid: 1675 components: - - pos: 20.5,29.5 + - pos: 10.5,2.5 parent: 104 type: Transform - - uid: 2262 + - uid: 1886 components: - - pos: 16.5,27.5 + - pos: -10.5,1.5 parent: 104 type: Transform - - uid: 2263 + - uid: 1887 components: - - pos: 16.5,28.5 + - pos: -10.5,-20.5 parent: 104 type: Transform - - uid: 2264 +- proto: LockerSyndicatePersonalFilled + entities: + - uid: 178 components: - - pos: 16.5,29.5 + - pos: 9.5,-13.5 parent: 104 type: Transform - - uid: 2265 + - uid: 196 components: - - pos: 16.5,30.5 + - pos: 11.5,-14.5 parent: 104 type: Transform - - uid: 2266 + - uid: 197 components: - - pos: 16.5,31.5 + - pos: 11.5,-13.5 parent: 104 type: Transform - - uid: 2267 + - uid: 198 components: - - pos: 16.5,32.5 + - pos: 9.5,-14.5 parent: 104 type: Transform - - uid: 2268 + - uid: 1271 components: - - pos: 17.5,23.5 + - pos: 13.5,-13.5 parent: 104 type: Transform - - uid: 2269 + - uid: 1375 components: - - pos: 17.5,24.5 + - pos: 13.5,-14.5 parent: 104 type: Transform - - uid: 2270 + - uid: 2476 components: - - pos: 17.5,25.5 + - pos: 15.5,-6.5 parent: 104 type: Transform - - uid: 2271 +- proto: MagazinePistolSubMachineGunPractice + entities: + - uid: 1648 components: - - pos: 17.5,26.5 + - pos: 5.7430096,13.989216 parent: 104 type: Transform - - uid: 2272 + - unspawnedCount: 35 + type: BallisticAmmoProvider +- proto: MedicalBed + entities: + - uid: 1868 components: - - pos: 17.5,27.5 + - pos: 1.5,-16.5 parent: 104 type: Transform - - uid: 2273 + - uid: 1874 components: - - pos: 17.5,28.5 + - pos: -1.5,-12.5 parent: 104 type: Transform - - uid: 2274 + - uid: 1890 components: - - pos: 17.5,29.5 + - pos: 1.5,-12.5 parent: 104 type: Transform - - uid: 2275 + - uid: 1891 components: - - pos: 17.5,30.5 + - pos: -1.5,-16.5 parent: 104 type: Transform - - uid: 2276 +- proto: MedkitAdvancedFilled + entities: + - uid: 447 components: - - pos: 17.5,31.5 + - pos: 7.5183387,-10.279964 parent: 104 type: Transform - - uid: 2277 +- proto: MedkitBruteFilled + entities: + - uid: 138 components: - - pos: 17.5,32.5 + - pos: 7.5183387,-10.576839 parent: 104 type: Transform - - uid: 2278 +- proto: MedkitBurnFilled + entities: + - uid: 1894 components: - - pos: 18.5,23.5 + - pos: 7.5339637,-10.889339 parent: 104 type: Transform - - uid: 2279 +- proto: MedkitFilled + entities: + - uid: 770 components: - - pos: 18.5,24.5 + - pos: 0.48478004,-16.399067 parent: 104 type: Transform - - uid: 2280 +- proto: MedkitOxygenFilled + entities: + - uid: 1895 components: - - pos: 18.5,25.5 + - pos: 7.5339637,-11.186214 parent: 104 type: Transform - - uid: 2281 +- proto: MedkitRadiationFilled + entities: + - uid: 448 components: - - pos: 18.5,26.5 + - pos: 7.5495887,-11.733089 parent: 104 type: Transform - - uid: 2282 +- proto: MedkitToxinFilled + entities: + - uid: 1388 components: - - pos: 18.5,27.5 + - pos: 7.5339637,-11.436214 parent: 104 type: Transform - - uid: 2283 +- proto: Mirror + entities: + - uid: 142 components: - - pos: 18.5,28.5 + - pos: 9.5,1.5 parent: 104 type: Transform - - uid: 2284 + - uid: 146 components: - - pos: 18.5,29.5 + - pos: 10.5,1.5 parent: 104 type: Transform - - uid: 2285 +- proto: ModularGrenade + entities: + - uid: 1326 components: - - pos: 18.5,30.5 + - pos: 4.001747,-17.289776 parent: 104 type: Transform - - uid: 2286 + - uid: 1328 components: - - pos: 18.5,31.5 + - pos: 4.204872,-17.508755 parent: 104 type: Transform - - uid: 2287 +- proto: MonkeyCubeBox + entities: + - uid: 1826 components: - - pos: 18.5,32.5 + - pos: 14.485744,-16.427467 parent: 104 type: Transform - - uid: 2288 +- proto: MopBucket + entities: + - uid: 149 components: - - pos: 19.5,23.5 + - pos: 11.5,-3.5 parent: 104 type: Transform - - uid: 2289 +- proto: MopItem + entities: + - uid: 150 components: - - pos: 19.5,24.5 + - pos: 11.5,-3.5 parent: 104 type: Transform - proto: Multitool @@ -11228,15 +11188,6 @@ entities: - pos: 24.5,-16.5 parent: 104 type: Transform -- proto: SyndicatePersonalAI - entities: - - uid: 160 - components: - - flags: SessionSpecific - type: MetaData - - pos: 1.4711013,-3.6405277 - parent: 104 - type: Transform - proto: PianoInstrument entities: - uid: 2430 @@ -13094,6 +13045,15 @@ entities: nameSet: True id: Weeh type: SurveillanceCamera +- proto: SyndicatePersonalAI + entities: + - uid: 160 + components: + - flags: SessionSpecific + type: MetaData + - pos: 1.4711013,-3.6405277 + parent: 104 + type: Transform - proto: SyringeInaprovaline entities: - uid: 1151 diff --git a/Resources/Maps/omega.yml b/Resources/Maps/omega.yml index 3fec24713be..e7b1c41b81e 100644 --- a/Resources/Maps/omega.yml +++ b/Resources/Maps/omega.yml @@ -1,84282 +1,84238 @@ -meta: - format: 5 - postmapinit: false -tilemap: - 0: Space - 10: FloorAsteroidSand - 11: FloorAsteroidSandPebbles - 12: FloorAsteroidSandRocks - 14: FloorAsteroidTile - 15: FloorBar - 18: FloorBlueCircuit - 26: FloorDark - 30: FloorDarkMini - 31: FloorDarkMono - 33: FloorDarkPavement - 38: FloorEighties - 41: FloorFreezer - 44: FloorGrass - 48: FloorGreenCircuit - 52: FloorHydro - 54: FloorLaundry - 55: FloorLino - 59: FloorMono - 64: FloorReinforced - 67: FloorShowroom - 75: FloorSteel - 87: FloorTechMaint - 88: FloorTechMaint2 - 91: FloorWhite - 101: FloorWood - 103: Lattice - 104: Plating - 105: PlatingAsteroid -entities: -- proto: "" - entities: - - uid: 473 - components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: Broadphase - - type: OccluderTree - - type: LoadedMap - - type: GridTree - - type: MovedGrids - - uid: 4812 - components: - - type: MetaData - - pos: 2.2710133,-2.4148211 - parent: 473 - type: Transform - - chunks: - -1,0: - ind: -1,0 - tiles: NwAAADcAAABoAAAAaAAAAGgAAAAaAAADZQAAAGUAAAIaAAADaAAAAA8AAANLAAAASwAAAksAAANLAAADSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAGgAAA2UAAAJlAAACGgAAAWgAAAAPAAAASwAAAEsAAANLAAADSwAAAksAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAWgAAABoAAAADwAAAEsAAABLAAACSwAAAEsAAANLAAACVwAAAFcAAABXAAAAaAAAAGgAAAAaAAACZQAAAWUAAAFlAAAAGgAAAQ8AAAFLAAAASwAAA0sAAAJLAAADSwAAAFcAAABXAAAAVwAAAGgAAABoAAAAGgAAAWUAAANlAAACZQAAABoAAAMPAAABSwAAAUsAAAJLAAADSwAAA0sAAAJXAAAAVwAAAFcAAABoAAAAaAAAABoAAAJlAAABZQAAAWUAAAIaAAACDwAAAksAAAJLAAAASwAAAUsAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAZQAAA2UAAANlAAAAGgAAAg8AAABLAAADSwAAAEsAAABLAAADSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAGgAAAGUAAABlAAACZQAAAxoAAAIPAAADSwAAAUsAAAFLAAADSwAAAksAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAANlAAADZQAAAGUAAAMaAAAADwAAAUsAAANLAAABSwAAAEsAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAZQAAA2UAAABlAAADGgAAAA8AAAIPAAABSwAAA0sAAABLAAACDwAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAAAaAAABDwAAA0sAAAJLAAADSwAAAA8AAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAQ8AAAIPAAAADwAAAg8AAAIPAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAADwAAAQ8AAAEPAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAASwAAA0sAAABLAAABSwAAAksAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAAASwAAA0sAAAJLAAAAaAAAADsAAAA7AAAAOwAAADsAAAA7AAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAJLAAAAaAAAAA== - 0,0: - ind: 0,0 - tiles: DwAAAWgAAAAaAAAAGgAAAxoAAAIaAAABGgAAAxoAAAJoAAAAaAAAAGgAAABLAAABSwAAAmgAAABoAAAAaAAAAA8AAABoAAAAaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAJLAAACaAAAAGgAAAAPAAABDwAAAw8AAAMPAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAEsAAAJLAAACSwAAAmgAAABoAAAADwAAAQ8AAAEPAAACDwAAAWgAAABXAAAAaAAAAGgAAABoAAAAaAAAAFgAAABLAAAASwAAAUsAAANoAAAAaAAAAA8AAAAaAAAAGgAAAhoAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAABLAAACaAAAAGgAAAAPAAABGgAAARoAAAAaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAABaAAAAGgAAABoAAAADwAAAxoAAAIaAAADGgAAAhoAAAMaAAADGgAAAxoAAABoAAAAaAAAAGgAAABLAAABSwAAAGgAAAApAAAAKQAAAA8AAAAaAAADGgAAAxoAAANlAAAAZQAAAWUAAABlAAACWAAAAGgAAABoAAAASwAAAksAAAApAAAAKQAAACkAAAAPAAABGgAAAxoAAAAaAAADaAAAAGUAAANlAAABZQAAAWgAAABoAAAAaAAAAEsAAAFLAAADaAAAACkAAAApAAAADwAAAhoAAAMaAAAAGgAAAGgAAABlAAAAZQAAAWUAAAJoAAAAaAAAAGgAAABLAAAASwAAAWgAAABoAAAAaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAJoAAAAaAAAAGgAAAAaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAABaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABLAAABSwAAAmgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAJoAAAASwAAAEsAAANYAAAAaAAAAGgAAABoAAAAaAAAABoAAAJLAAABSwAAAEsAAAAaAAAAaAAAAEsAAABLAAACSwAAAUsAAAJLAAABaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADSwAAAUsAAABLAAABGgAAAWgAAABLAAABSwAAA0sAAANLAAAASwAAAQ== - -1,1: - ind: -1,1 - tiles: aAAAADsAAAA7AAAAOwAAADsAAAA7AAAAaAAAAGcAAABnAAAAaAAAAEsAAANLAAABSwAAA0sAAAJLAAACSwAAAGgAAAA7AAAAOwAAADsAAAA7AAAAOwAAAGgAAABnAAAAZwAAAGgAAABLAAADSwAAAksAAAJLAAABSwAAAUsAAABoAAAAaAAAABoAAAJoAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAFLAAABSwAAAksAAAJLAAAASwAAAUsAAAFLAAABSwAAAEsAAANLAAABSwAAAEsAAAJLAAAASwAAAEsAAANLAAABSwAAAksAAABLAAACSwAAAEsAAABLAAAASwAAAEsAAAFLAAADSwAAA0sAAABLAAADSwAAAUsAAAFLAAACSwAAAksAAAFLAAABSwAAAUsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAARoAAANoAAAAaAAAAGgAAABoAAAAGgAAAGgAAABoAAAAGgAAAGUAAABlAAAAZQAAAGUAAANlAAABaAAAABoAAAEaAAACaAAAABoAAAMwAAAAMAAAABoAAAEwAAAAMAAAABoAAAFlAAABZQAAAGUAAANlAAAAZQAAAWUAAAIaAAADGgAAA2gAAAAaAAACMAAAABoAAAIaAAABGgAAAzAAAAAaAAABZQAAAmUAAAFlAAAAZQAAAmUAAAFoAAAAGgAAABoAAAFoAAAAGgAAADAAAAAwAAAAMAAAADAAAAAwAAAAGgAAAWgAAABlAAAAZQAAAmUAAABlAAACaAAAABoAAAEaAAABaAAAABoAAAMwAAAAMAAAADAAAAAwAAAAMAAAAGgAAABoAAAAaAAAAGgAAABlAAABaAAAAGgAAAAaAAADGgAAAGgAAAAaAAAAGgAAAhoAAAMwAAAAGgAAAxoAAAIpAAAAaAAAAGUAAABlAAAAZQAAAGUAAANoAAAAGgAAAhoAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAKQAAACkAAAA3AAAANwAAADcAAAA3AAAAaAAAABoAAAAaAAABGgAAAhoAAAI3AAAANwAAADcAAAA3AAAANwAAAEMAAABoAAAANwAAADcAAAA3AAAANwAAAGgAAAAaAAADGgAAARoAAAMaAAABNwAAADcAAAA3AAAANwAAADcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAxoAAAEaAAAAGgAAADcAAAA3AAAANwAAADcAAAA3AAAACgAAAAoAAAAKAAAAZwAAAGcAAABnAAAAaAAAABoAAAEaAAABaAAAABoAAAAaAAACGgAAAxoAAAAaAAACGgAAAw== - 0,1: - ind: 0,1 - tiles: SwAAAmgAAABnAAAAZwAAAGgAAAAaAAADSwAAA0sAAAJLAAACGgAAAGgAAABLAAABSwAAA2gAAABoAAAASwAAA0sAAABoAAAAZwAAAGcAAABoAAAAGgAAAEsAAAJLAAADSwAAAhoAAAFoAAAASwAAAksAAAJoAAAASwAAAUsAAANLAAACaAAAAGgAAABoAAAAaAAAAGgAAABLAAABaAAAAEsAAAJoAAAAaAAAAEsAAAJLAAAAaAAAAEsAAAFLAAADSwAAAksAAABLAAABSwAAAUsAAAJLAAABSwAAA0sAAAFLAAACSwAAAEsAAABLAAABSwAAA2gAAABLAAADSwAAAksAAAJLAAADSwAAA0sAAANLAAABSwAAAksAAABLAAABSwAAAksAAAJLAAABSwAAAEsAAANLAAAASwAAAUsAAABoAAAAaAAAABoAAAMaAAAAaAAAAEsAAAIsAAAALAAAACwAAABLAAACaAAAAGgAAABoAAAAaAAAAEsAAAFLAAACGgAAAWgAAAAaAAADGgAAAmgAAABLAAADSwAAA0sAAAFLAAACSwAAAxoAAAJoAAAAaAAAAGgAAABoAAAASwAAARoAAANoAAAAGgAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAEaAAADaAAAABoAAAIaAAAAaAAAAGUAAAJlAAADZQAAA2UAAANlAAABGgAAA2gAAABoAAAAaAAAAEsAAANLAAABGgAAA2gAAAAaAAACGgAAAhoAAANlAAABZQAAAmUAAANlAAAAZQAAAxoAAAJoAAAAaAAAAGgAAABLAAABSwAAABoAAANoAAAAGgAAAhoAAABoAAAAGgAAARoAAAAaAAABGgAAARoAAAMaAAAAaAAAAGgAAABoAAAASwAAAksAAANoAAAAaAAAABoAAAIaAAADaAAAAGgAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAADGgAAAxoAAAMaAAAAGgAAAWgAAAAaAAACZQAAAWUAAANlAAABQwAAAEMAAABoAAAAaAAAAGgAAABoAAAASwAAAxoAAAMaAAACGgAAAhoAAAJoAAAAGgAAAGUAAAJlAAACZQAAAmgAAABDAAAAaAAAAGgAAABXAAAAaAAAAEsAAAIaAAADGgAAAhoAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQwAAAGgAAABoAAAAVwAAAGgAAABLAAADGgAAAGgAAAAaAAADGgAAAmgAAAAaAAADGgAAA2gAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAg== - 0,-1: - ind: 0,-1 - tiles: SwAAA0sAAAFoAAAASwAAAUsAAABLAAACSwAAARoAAABoAAAAGgAAABoAAANYAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAADaAAAAEsAAAJLAAACSwAAAEsAAAAaAAACaAAAABoAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAWgAAABYAAAAaAAAAGgAAABoAAAASwAAA0sAAAFLAAADSwAAAEsAAABLAAACSwAAAUsAAAJLAAAASwAAAksAAABLAAABSwAAABoAAANoAAAAZwAAAEsAAANLAAABSwAAA0sAAAJLAAADSwAAAUsAAABLAAAASwAAAEsAAANLAAABSwAAA0sAAAEaAAADaAAAAGcAAABoAAAAGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAEsAAANLAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAksAAAJoAAAAZwAAABoAAAFYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAABLAAAAaAAAAGgAAAAPAAACaAAAAGgAAABoAAAAaAAAACkAAAApAAAAKQAAAGgAAABoAAAAaAAAAEsAAANLAAACSwAAAFgAAABoAAAADwAAAWgAAAApAAAAKQAAACkAAAApAAAAKQAAACkAAABYAAAAaAAAAGgAAABLAAAASwAAAUsAAAFoAAAAaAAAAA8AAABoAAAAKQAAACkAAAApAAAASwAAAksAAAJLAAAAaAAAAGgAAABoAAAASwAAA0sAAAJoAAAAaAAAAFcAAAAPAAAAaAAAAGgAAABoAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAADSwAAAGgAAABoAAAADwAAAGgAAAAaAAADGgAAAhoAAAIaAAACGgAAABoAAAFoAAAAaAAAAGgAAABLAAACSwAAAksAAANLAAAASwAAAQ8AAAJoAAAAIQAAAyEAAAEhAAACIQAAAiEAAAEhAAAAaAAAAGgAAABoAAAASwAAAUsAAABLAAACSwAAAUsAAAAPAAADaAAAACEAAAMhAAAAIQAAAyEAAAEhAAACIQAAAVgAAABoAAAAaAAAAEsAAABLAAABSwAAAGgAAABoAAAADwAAAWgAAAAhAAABIQAAAyEAAAIhAAADIQAAACEAAAFoAAAAaAAAAGgAAABLAAAASwAAAksAAANoAAAAaAAAAA== - -1,-1: - ind: -1,-1 - tiles: WwAAA1sAAAFoAAAAWwAAAFsAAAFbAAABWwAAAVsAAABoAAAASwAAA0sAAAA3AAAANwAAADcAAAA3AAAANwAAAGgAAABoAAAAaAAAAFsAAAJbAAABWwAAAFsAAAJbAAAAaAAAAEsAAAFLAAABaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACGgAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAA0sAAAFLAAACSwAAAEsAAAFLAAACSwAAAEsAAAFLAAABSwAAAUsAAANLAAADSwAAAksAAAFLAAACSwAAAEsAAABLAAAASwAAA0sAAABLAAAASwAAA0sAAABLAAAASwAAAksAAAFLAAACSwAAA0sAAAJLAAACSwAAA0sAAANLAAADSwAAAUsAAAFLAAAASwAAAUsAAANoAAAAaAAAAGgAAABoAAAAaAAAADQAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAABSwAAAUsAAAFLAAAAGgAAARoAAAEaAAABGgAAAhoAAAM0AAAAGgAAASwAAAAsAAAALAAAAGgAAABoAAAADwAAAw8AAAEPAAAAaAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAAsAAAALAAAAGgAAABoAAAADwAAAQ8AAAMPAAADDwAAAg8AAAIaAAADGgAAARoAAAAaAAACGgAAATQAAAA0AAAANAAAADQAAABLAAABDwAAAg8AAAFLAAADSwAAA0sAAAMPAAACNAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAASwAAAg8AAAJLAAACSwAAA0sAAAFLAAABSwAAARoAAAAaAAAAGgAAAhoAAAMaAAABGgAAAxoAAAAaAAADGgAAA0sAAAIPAAADSwAAAUsAAABLAAAASwAAAUsAAANoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAADwAAA0sAAANLAAACSwAAAksAAAJLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAA8AAAJLAAACSwAAAEsAAAJLAAABSwAAAjcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAPAAACSwAAAUsAAAJLAAADSwAAAUsAAAE3AAAANwAAAGgAAABoAAAAaAAAABoAAAEaAAADGgAAABoAAAFoAAAADwAAAEsAAABLAAABSwAAA0sAAAFLAAACNwAAADcAAABoAAAAaAAAAGgAAAAaAAADZQAAAmUAAAIaAAABGgAAAA8AAAFLAAACSwAAAEsAAABLAAADSwAAAg== - -2,1: - ind: -2,1 - tiles: SwAAAksAAANLAAAASwAAAksAAABLAAAASwAAAWgAAABLAAACSwAAAWUAAANlAAAAZQAAAWUAAAFlAAADZQAAAUsAAANLAAACSwAAAksAAANoAAAASwAAA0sAAAJoAAAASwAAA0sAAABoAAAAZQAAAWUAAAFlAAACZQAAAmUAAAJLAAADSwAAAksAAANLAAACaAAAAGgAAABoAAAAaAAAAEsAAANLAAACaAAAAGgAAABoAAAAaAAAAGUAAAFoAAAASwAAAUsAAAFLAAACSwAAA0sAAABLAAABSwAAAmgAAABLAAACSwAAA0sAAAFLAAABSwAAA0sAAAFLAAADSwAAA0sAAAJLAAADSwAAAksAAAJoAAAASwAAAEsAAANoAAAASwAAAksAAABLAAACSwAAAksAAABLAAADSwAAAEsAAAFoAAAAGgAAAhoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAA3AAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAARoAAAMaAAACGgAAARoAAAEaAAADGgAAA2gAAAAaAAAANwAAADcAAAA3AAAANwAAAGgAAABoAAAAaAAAABoAAAEaAAABGgAAARoAAAEaAAACGgAAABoAAAIaAAADGgAAAjcAAAA3AAAANwAAADcAAABoAAAAaAAAAGgAAAAaAAACGgAAAhoAAAAaAAABGgAAARoAAAAaAAADaAAAABoAAAE3AAAANwAAADcAAAA3AAAAaAAAAGgAAAAaAAACaAAAAEsAAAJoAAAAaAAAAGgAAABLAAACaAAAAGgAAAAaAAADZQAAAGUAAABlAAACZQAAAGgAAABoAAAAaAAAAEsAAAJLAAAASwAAAWgAAABLAAAASwAAA0sAAAFoAAAAaAAAAGUAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAUsAAAJoAAAASwAAAksAAANLAAAAaAAAABoAAAFlAAABZQAAA0MAAABDAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABLAAAAaAAAAGgAAAAaAAACZQAAAmUAAABoAAAAQwAAAGgAAABoAAAAaAAAAEsAAANLAAACSwAAAksAAAFLAAAASwAAAxoAAANoAAAAaAAAAGgAAABoAAAAaAAAAEMAAABoAAAAVwAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAAMaAAACaAAAAAoAAAAAAAAACgAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAANLAAAASwAAAEsAAABLAAACGgAAAWgAAAAKAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAA== - -2,0: - ind: -2,0 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAGgAAABLAAAASwAAA0sAAANLAAADaAAAAGUAAABoAAAAaAAAAEsAAAJLAAACSwAAAksAAANoAAAASwAAAksAAAFLAAAASwAAAksAAAFLAAAASwAAA0sAAABLAAADNgAAAGgAAABLAAACSwAAA0sAAAJLAAADaAAAAEsAAAJLAAACSwAAAksAAAFLAAABSwAAA0sAAAFLAAACSwAAAzYAAABYAAAASwAAAUsAAANLAAADSwAAAGgAAABLAAABSwAAA2gAAAAaAAADGgAAARoAAAMmAAAAaAAAADcAAABoAAAAaAAAAEsAAANLAAADSwAAAUsAAAFoAAAASwAAA0sAAABoAAAAGgAAAxoAAAAaAAADJgAAAGgAAAA3AAAANwAAAGgAAABLAAACSwAAAEsAAAJLAAAAaAAAAEsAAANLAAADaAAAACYAAAAmAAAAJgAAACYAAABoAAAANwAAADcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABSwAAAksAAANLAAABSwAAAEsAAABoAAAASwAAAUsAAAFLAAACSwAAAEsAAABoAAAAaAAAAGgAAABoAAAAGgAAA0sAAANLAAABSwAAAEsAAABLAAADaAAAAEsAAABLAAABSwAAAksAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAA0sAAAJLAAAASwAAAksAAAFLAAADSwAAAEsAAANLAAADSwAAA0sAAAFoAAAASwAAAksAAAFoAAAASwAAA0sAAAJLAAADSwAAAksAAABLAAADSwAAA0sAAABLAAACSwAAAksAAAJLAAAASwAAAUsAAAFLAAACaAAAAEsAAAFLAAACaAAAAEsAAAJLAAACSwAAAUsAAAJLAAADGgAAAksAAANLAAADSwAAAWgAAABoAAAAaAAAAGgAAABLAAACSwAAAmgAAABLAAACSwAAA0sAAAFLAAAASwAAAxoAAANLAAAASwAAAEsAAANLAAAASwAAAksAAABLAAAASwAAAksAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABSwAAAEsAAAFLAAADSwAAA0sAAANLAAAASwAAAEsAAAJLAAABaAAAAGUAAABlAAACZQAAA2UAAABlAAAASwAAA0sAAAFLAAADSwAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAmgAAABlAAABZQAAAGUAAAJlAAADZQAAAQ== - -2,-1: - ind: -2,-1 - tiles: GgAAABoAAAIaAAAAGgAAAxoAAAEaAAABZQAAAmUAAANlAAADZQAAA2gAAAAaAAAAGgAAAxoAAANoAAAAWwAAABoAAAAaAAADGgAAABoAAAEaAAADGgAAAGUAAABlAAABZQAAA2UAAANoAAAAGgAAAxoAAAAaAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAmgAAABoAAAAaAAAAGgAAAAaAAABaAAAAGgAAAAaAAABVwAAAFcAAABXAAAAaAAAABoAAABLAAABSwAAAEsAAABLAAADSwAAAEsAAAFLAAAASwAAAEsAAANLAAABSwAAAmgAAABoAAAAaAAAAGgAAAAaAAADSwAAAksAAANLAAACSwAAAksAAABLAAADSwAAAUsAAANLAAABSwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAABaAAAAGgAAAAaAAAAaAAAAGgAAABoAAAAaAAAADQAAABoAAAASwAAA0sAAAFLAAABSwAAA2gAAABLAAABSwAAAmgAAAAaAAAAGgAAAhoAAAEaAAACaAAAABoAAAA0AAAAGgAAAksAAANLAAACSwAAA0sAAANoAAAASwAAAEsAAABoAAAAGgAAAUsAAAFLAAAAGgAAAmgAAAAaAAAANAAAADQAAABLAAABSwAAA0sAAAFLAAAAaAAAAEsAAAJLAAADaAAAABoAAANLAAACSwAAARoAAANoAAAAGgAAATQAAAAaAAABSwAAAEsAAABLAAAASwAAA2gAAABLAAACSwAAAWgAAAAaAAADGgAAARoAAAAaAAADaAAAABoAAAM0AAAANAAAAEsAAANLAAAASwAAAEsAAAFoAAAASwAAAksAAANoAAAAaAAAAGgAAABYAAAAaAAAAGgAAAAaAAACGgAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAAASwAAAlgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAANLAAAAaAAAAEsAAABLAAACSwAAAksAAAJoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAABSwAAAEsAAAJLAAACSwAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAUsAAABLAAAASwAAAksAAAFLAAADaAAAAEsAAAFLAAADSwAAAEsAAAJoAAAAZQAAA2UAAAJoAAAASwAAAksAAABLAAADaAAAAEsAAANLAAACSwAAA2gAAABLAAADSwAAA0sAAAFLAAAAaAAAAGUAAABlAAACaAAAAA== - -1,2: - ind: -1,2 - tiles: CgAAAAoAAAAKAAAAAAAAAGcAAAAAAAAAaAAAABoAAAAaAAACGgAAAhoAAAEaAAACGgAAARoAAAMaAAACGgAAAwoAAABoAAAAZwAAAGcAAABnAAAAZwAAAGgAAAAaAAAAGgAAAxoAAAAaAAAAGgAAARoAAAAaAAABGgAAABoAAAEKAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAGgAAABoAAAIaAAABGgAAAxoAAAIaAAADGgAAAxoAAAEaAAADAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAABoAAAIaAAACGgAAABoAAAAaAAACGgAAAwAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,2: - ind: 0,2 - tiles: GgAAAxoAAAMaAAABGgAAAxoAAAEaAAAAGgAAAWgAAAAAAAAAAAAAAAwAAAZoAAAAaAAAAGgAAABoAAAASwAAABoAAAAaAAABGgAAAxoAAANoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABGgAAAhoAAAAaAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGkAAABpAAAACgAAAGgAAABLAAADGgAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaQAAAAoAAABoAAAASwAAAWgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAoAAAAKAAAAaAAAAGgAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAKAAAACgAAAAoAAAAKAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAoAAAAKAAAACgAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAAoAAAAKAAAACgAAAAoAAAAKAAAAZwAAAAAAAABnAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAKAAAACgAAAAoAAABnAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACGgAAARoAAAJoAAAAaAAAAGgAAABoAAAAAAAAAAoAAABoAAAAaAAAAGgAAAAaAAABGgAAARoAAAJoAAAAGgAAARoAAAMaAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAKAAAAaAAAAGgAAABoAAAAGgAAARoAAAAaAAADGgAAABoAAAMaAAADGgAAAhoAAAEaAAACGgAAAhoAAAEKAAAACgAAAGgAAABoAAAAaAAAABoAAAAaAAAAGgAAAmgAAAAaAAAAGgAAABoAAAFoAAAAaAAAAGgAAABoAAAACgAAAAoAAABoAAAAaAAAAGgAAAAaAAACGgAAAhoAAAFoAAAAaAAAABoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAA== - 1,2: - ind: 1,2 - tiles: SwAAAEsAAAJoAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABoAAAAaAAAAGgAAABoAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAABSwAAAmgAAAApAAAAaAAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAA0sAAAIpAAAAKQAAAGgAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAACkAAABoAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAGgAAABoAAAAaAAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAoAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAADgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,1: - ind: 1,1 - tiles: aAAAAGgAAABoAAAASwAAAGgAAABoAAAAGgAAABoAAAEaAAACaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAEsAAABLAAADSwAAAEsAAAFLAAACaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABLAAAASwAAA0sAAAJLAAAASwAAAmgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAksAAANLAAABSwAAA0sAAANoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAANLAAADSwAAAksAAAJLAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAADSwAAA0sAAAFLAAAASwAAAWgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABLAAADSwAAAksAAAFLAAACaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAACSwAAAEsAAAJLAAADSwAAA2gAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAksAAAFLAAAASwAAAUsAAAFoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABLAAADSwAAAksAAAFLAAADaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAABSwAAAUsAAANLAAAASwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAAksAAANoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAFLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAABSwAAAGgAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAA0sAAANoAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,0: - ind: 1,0 - tiles: aAAAAGgAAABoAAAAGgAAAGgAAABoAAAAVwAAAGgAAABLAAADSwAAAmgAAABLAAACSwAAAUsAAABLAAADSwAAAGgAAAAaAAAAGgAAAhoAAAIaAAACaAAAAFcAAABoAAAASwAAAUsAAAJoAAAAaAAAAGgAAABoAAAASwAAA2gAAABoAAAAGgAAARoAAAMaAAABGgAAAmgAAABoAAAAaAAAAEsAAAJoAAAAaAAAAEsAAAJLAAADSwAAAEsAAANLAAADaAAAAGgAAAAaAAACaAAAAGgAAABoAAAASwAAAEsAAANLAAACSwAAAGgAAABLAAAASwAAAEsAAANLAAABSwAAAWgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAANLAAADSwAAAksAAABoAAAASwAAAUsAAAFLAAABSwAAA0sAAANoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAADSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAKQAAAGgAAABoAAAAVwAAAGgAAABoAAAAGgAAAWgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAACkAAABoAAAAaAAAAFcAAABoAAAAQAAAAEAAAABAAAAAaAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAAAAAAApAAAAaAAAAGgAAABXAAAAaAAAAEAAAABAAAAAQAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGkAAABpAAAAaQAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAFLAAACaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAEsAAAJLAAADSwAAA0sAAAFLAAAAaAAAAEsAAABLAAADSwAAAWgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABLAAACSwAAA0sAAANLAAACSwAAAksAAAJLAAADSwAAAEsAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAASwAAAEsAAAFLAAABSwAAA0sAAANoAAAASwAAA0sAAANLAAACaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAA== - 0,3: - ind: 0,3 - tiles: CgAAAAoAAAAKAAAACgAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAxoAAAEaAAABaAAAAGgAAABoAAAAaAAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaAAAAGgAAAAaAAABMAAAADAAAAAaAAAAMAAAADAAAAAaAAACaAAAAGgAAAAKAAAACgAAAAoAAAAKAAAACgAAAGgAAABoAAAAMAAAABoAAAAwAAAAGgAAAzAAAAAaAAACMAAAAGgAAABoAAAAAAAAAAoAAAAKAAAACgAAAAoAAABoAAAAaAAAADAAAAAaAAAAaAAAAGgAAABoAAAAGgAAAjAAAABoAAAAaAAAAAAAAAAKAAAACgAAAAoAAAAKAAAAaAAAAGgAAAAwAAAAGgAAAGgAAAAwAAAAaAAAABoAAAMwAAAAaAAAAGgAAAAAAAAAAAAAAAoAAAAKAAAACgAAAGgAAABoAAAAMAAAABoAAAMaAAABMAAAABoAAAIaAAABMAAAAGgAAABoAAAAAAAAAAAAAAAKAAAACgAAAAoAAABoAAAAaAAAADAAAAAaAAABaAAAAGgAAABoAAAAGgAAADAAAABoAAAAaAAAAAAAAAAAAAAACgAAAAoAAAAKAAAAaAAAAGgAAAAaAAACMAAAADAAAAAwAAAAMAAAADAAAAAaAAACaAAAAGgAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAABoAAAAaAAAAGgAAAAaAAABGgAAAhoAAABoAAAAaAAAAGgAAAAKAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,3: - ind: 1,3 - tiles: aAAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,2: - ind: -2,2 - tiles: SwAAAksAAAFLAAACSwAAAksAAABLAAAAGgAAAmgAAAAKAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAACgAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAADAAABQoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAADAAABQoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAMAAAHCgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAACgAAAGgAAABnAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,0: - ind: 2,0 - tiles: aAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,-1: - ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,-1: - ind: 1,-1 - tiles: aAAAAGgAAABlAAADZQAAAmUAAAJoAAAAZwAAAAwAAAcKAAAACwAAAQsAAAMKAAAACgAAAAoAAAAAAAAAAAAAAGgAAABoAAAAZQAAAGUAAAJlAAACaAAAAGcAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAA3AAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAADcAAAA3AAAANwAAAGgAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABnAAAAZwAAAGgAAAA3AAAANwAAADcAAABoAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABLAAABSwAAAUsAAANLAAADSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAJLAAAASwAAAksAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAGgAAA0sAAAFLAAAASwAAA0sAAAJLAAABSwAAAksAAAFLAAABaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAABoAAABLAAACSwAAA2gAAABoAAAAaAAAAEsAAAFLAAADaAAAAGgAAABnAAAAAAAAAGcAAABoAAAAaAAAAGgAAAAaAAACSwAAAUsAAANoAAAASwAAAEsAAAJLAAACSwAAAUsAAANoAAAAaAAAAGgAAABoAAAAaAAAABoAAANoAAAAaAAAAEsAAANLAAADaAAAAEsAAABLAAAASwAAA0sAAABLAAABSwAAA0sAAAJLAAABSwAAAksAAANLAAADSwAAAUsAAAFLAAAASwAAAUsAAABLAAABSwAAA0sAAAFLAAACSwAAAEsAAAJLAAABSwAAAUsAAAJLAAABSwAAAEsAAANLAAACSwAAAUsAAAFLAAAASwAAAUsAAABLAAABSwAAAUsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAAASwAAAksAAABLAAADSwAAAksAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAmgAAABLAAADSwAAAUsAAANLAAAASwAAAw== - 0,-2: - ind: 0,-2 - tiles: SwAAAEsAAAFLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAEsAAANLAAABSwAAAVgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABLAAACSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAASwAAAksAAAJoAAAASwAAATAAAABLAAADSwAAA2gAAAAaAAAAGgAAAGgAAAAaAAACGgAAABoAAAFbAAACWwAAA0sAAANLAAAASwAAAUsAAAMwAAAAMAAAADAAAABoAAAAGgAAARoAAABoAAAAGgAAARoAAAAaAAADWwAAAFsAAAFLAAACSwAAAEsAAANLAAACEgAAABIAAAASAAAAaAAAABoAAAEaAAACaAAAAEsAAANLAAABSwAAAksAAAJLAAACSwAAA0sAAAJLAAABSwAAARIAAABLAAACSwAAA2gAAAAaAAACGgAAAEsAAABLAAABSwAAAUsAAAFLAAADSwAAAksAAAFLAAABaAAAAEsAAANLAAADSwAAAksAAAFLAAACGgAAARoAAAFoAAAASwAAAEsAAANLAAACSwAAA0sAAABLAAABSwAAAWgAAAAaAAADGgAAAhoAAAAaAAACaAAAABoAAAAaAAADaAAAABoAAAMaAAAAGgAAAxoAAAIaAAADSwAAA0sAAABoAAAAaAAAAGgAAAAaAAADaAAAAGgAAABLAAADSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAACSwAAAEsAAAIaAAABGgAAAhoAAAEaAAAAGgAAAhoAAAIaAAAAGgAAABoAAAEaAAAAGgAAAhoAAAJLAAACSwAAA0sAAAFLAAAAGgAAAhoAAAEaAAACGgAAAxoAAAEaAAAAGgAAARoAAAMaAAACGgAAAxoAAAIaAAAASwAAA0sAAAJoAAAAaAAAAEsAAANoAAAAaAAAAGgAAABoAAAAGgAAARoAAAFoAAAAaAAAABoAAAJoAAAAaAAAAEsAAAFLAAABaAAAAEsAAABLAAAASwAAAEsAAAMaAAABaAAAABoAAAMaAAABaAAAABIAAAAaAAABEgAAAGgAAABLAAAASwAAAGgAAAAaAAAAGgAAAhoAAAJLAAABGgAAA2gAAAAaAAABGgAAAWgAAAASAAAAGgAAAhIAAABoAAAASwAAAksAAAJoAAAAGgAAABoAAAAaAAACSwAAABoAAABoAAAAGgAAARoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAA== - -1,-2: - ind: -1,-2 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAANLAAABSwAAAksAAAFLAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAACaAAAAGgAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABLAAABSwAAAWgAAABLAAABSwAAA0sAAAFoAAAAWwAAAksAAAJLAAACSwAAA2gAAABbAAADWwAAAUsAAAFoAAAASwAAAksAAANoAAAASwAAAEsAAAJLAAABaAAAAFsAAAJbAAADWwAAAVsAAANoAAAAWwAAAlsAAAJLAAACaAAAAEsAAAFLAAABaAAAAEsAAAJLAAABSwAAAmgAAABbAAABWwAAAlsAAANbAAABWwAAAFsAAAJbAAABSwAAAWgAAABLAAABSwAAAGgAAABLAAACSwAAAksAAABoAAAASwAAAVsAAAFLAAABWwAAA2gAAABbAAADWwAAAEsAAABoAAAASwAAA0sAAAJLAAADSwAAAksAAABLAAABaAAAAGgAAABoAAAAaAAAAFsAAABoAAAAaAAAAFsAAABoAAAAaAAAAEsAAAJLAAAAaAAAAEsAAAJLAAADSwAAAmgAAABbAAAAWwAAA2gAAABbAAABWwAAAFsAAAJbAAAAWwAAAGgAAABLAAACSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAVsAAANbAAADWwAAAFsAAANbAAADWwAAAlsAAABbAAACSwAAAEsAAAJLAAADSwAAA0sAAAJLAAADSwAAAlsAAAFbAAABWwAAAFsAAAFbAAADWwAAA1sAAABbAAADWwAAA0sAAAFLAAACSwAAAksAAANLAAACSwAAAksAAABbAAABWwAAAWgAAABbAAAAWwAAAlsAAANbAAABWwAAAWgAAABLAAADSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAWwAAAWgAAABoAAAAaAAAAGgAAABoAAAAWwAAAWgAAABoAAAASwAAAksAAAI3AAAANwAAADcAAAA3AAAANwAAAFsAAAFbAAADaAAAAFsAAABbAAACWwAAAVsAAABbAAABaAAAAEsAAANLAAADNwAAADcAAAA3AAAANwAAADcAAABLAAACWwAAA2gAAABbAAACWwAAAFsAAANbAAACWwAAAmgAAABLAAADSwAAATcAAAA3AAAANwAAADcAAAA3AAAASwAAAFsAAAJoAAAAWwAAAlsAAANbAAADWwAAAlsAAABoAAAASwAAAEsAAAA3AAAANwAAADcAAAA3AAAANwAAAA== - -1,-3: - ind: -1,-3 - tiles: AAAAAGcAAAAsAAAASwAAA0sAAAFLAAACSwAAAywAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAALAAAAEsAAABLAAADSwAAAEsAAAEsAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAACwAAABLAAACSwAAAksAAANLAAACLAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAAFLAAABaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAACSwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAAksAAANoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAEsAAAFLAAACaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABLAAAASwAAAWgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAAUsAAANoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAEsAAAFLAAABaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAmgAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAACGgAAAxoAAABoAAAASwAAAksAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAIaAAACaAAAAEsAAABLAAAASwAAAksAAAFLAAAASwAAAEsAAAFLAAABSwAAAUsAAANLAAABSwAAAzcAAAA3AAAAGgAAABoAAABLAAABSwAAAEsAAAJLAAAASwAAA0sAAAFLAAADSwAAA0sAAANLAAAASwAAAUsAAAEaAAADGgAAABoAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABLAAACSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAxoAAAMaAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAJLAAABSwAAAEsAAABLAAAASwAAAw== - 0,-3: - ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAAaAAAAGgAAABbAAADWwAAAFsAAABoAAAADAAABwoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABoAAAAGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAhoAAAJoAAAAAAAAAAAAAAAAAAAAaAAAABoAAAMwAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAMaAAADaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABLAAADaAAAAGgAAABbAAADaAAAABoAAAAaAAADaAAAAGgAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAaAAAAGgAAAAaAAADaAAAAGgAAABoAAAAaAAAAEsAAAFoAAAAaAAAABoAAAAaAAAAaAAAAGcAAABnAAAAZwAAAGgAAAAaAAABGgAAA2gAAABoAAAAaAAAAGgAAABLAAADaAAAAGgAAABoAAAAGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAANLAAADaAAAAGgAAABoAAAAaAAAAGgAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAAASwAAA2gAAAAaAAADaAAAAGgAAABoAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAWgAAABoAAAAGgAAAzAAAABoAAAASwAAAksAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAANLAAABaAAAABoAAAAaAAABaAAAAEsAAAJLAAADSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== - -1,-4: - ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAA0sAAAJoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAEsAAANLAAADaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABLAAADSwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAAksAAANoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAABLAAADaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAACSwAAAWgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAAUsAAAFoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAsAAAASwAAAEsAAAJLAAADSwAAAiwAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,-2: - ind: 1,-2 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAEAAAABAAAAAQAAAAEAAAABAAAAASwAAA0sAAAJLAAADaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABAAAAAQAAAAEAAAABAAAAAQAAAAEsAAAJLAAADSwAAAmgAAABoAAAAGgAAAWgAAABoAAAAaAAAAGcAAABoAAAAQAAAAEAAAABAAAAAQAAAAEAAAABLAAADSwAAA0sAAANoAAAAGgAAAxoAAAJoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAABLAAAAaAAAAEsAAAEaAAADaAAAAEsAAAJLAAABaAAAAEsAAAFbAAACWwAAA1sAAABLAAABSwAAAksAAAJLAAADSwAAAWgAAABLAAAAGgAAA2gAAABLAAABSwAAAmgAAABLAAACWwAAAFsAAANbAAADSwAAAksAAAFLAAADSwAAAUsAAAFLAAADSwAAAxoAAAAaAAADSwAAAksAAABLAAAASwAAA0sAAAJLAAACSwAAAksAAAFLAAAASwAAAUsAAAFLAAADaAAAABoAAAMaAAACaAAAAEsAAABLAAACaAAAAEsAAABLAAADSwAAA0sAAAJLAAACSwAAAEsAAANLAAAASwAAAmgAAAAaAAABaAAAAGgAAABYAAAAaAAAAGgAAABLAAADSwAAARoAAAEaAAAAGgAAAhoAAAMaAAABGgAAAhoAAAJoAAAAaAAAABoAAAIaAAACGgAAABoAAAFLAAAASwAAA0sAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAoAAAAaAAABGgAAAhoAAAIaAAADSwAAAEsAAAFLAAABZQAAAGUAAAFlAAABZQAAAGUAAABlAAABaAAAAAoAAAAKAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAACZQAAAmUAAABlAAADZQAAAmgAAAAKAAAACgAAAGgAAABoAAAAZQAAAmUAAABlAAADaAAAAAoAAABoAAAAZQAAAWUAAANlAAAAZQAAA2UAAAJoAAAADAAABwoAAABoAAAAWAAAAGUAAAFlAAAAZQAAA2gAAAAKAAAAaAAAAGgAAABlAAADZQAAA2UAAANoAAAAaAAAAAoAAAAAAAAAaAAAAGgAAABlAAADZQAAAGUAAABoAAAACgAAAAoAAABoAAAAaAAAAGgAAABoAAAAaAAAAAoAAAALAAACAAAAAA== - 2,-2: - ind: 2,-2 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAoAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAAoAAAAKAAAACgAAAAwAAAcKAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAWAAAAGgAAABoAAAAaAAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAhoAAAAaAAACGgAAAGgAAAAKAAAACgAAAAsAAAMKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAJLAAADSwAAAUsAAAJoAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAACSwAAAEsAAAFLAAAAaAAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAUsAAABLAAACSwAAA2gAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAMaAAADGgAAARoAAANoAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAABGgAAAxoAAAIaAAABaAAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAALAAADCgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAFCgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAALAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,-3: - ind: 2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAEKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAALAAADCwAAAgsAAANnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAACgAAAAoAAAAKAAAACgAAAAsAAAMKAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAKAAAACgAAAAAAAAAAAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAABoAAAAaAAAAFcAAABoAAAACgAAAAoAAAAAAAAAAAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAACgAAAAAAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAGgAAABoAAAAGgAAARoAAAMaAAACGgAAAmgAAAAAAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAAAaAAACGgAAARoAAABoAAAAAAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAGgAAAxoAAAIaAAAAaAAAAAoAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAA== - 1,-3: - ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAALAAADCgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACwAAAgoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAsAAAIKAAAACgAAAAwAAAcKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAADAAABgoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAwAAAcKAAAACgAAAAoAAAAKAAAACwAAAgoAAAAKAAAACgAAAAoAAAALAAADCgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAALAAADCgAAAAoAAAAKAAAACgAAAAoAAAAOAAAADgAAAA4AAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAoAAAAKAAAACgAAAA4AAAAOAAAAaAAAAGgAAABoAAAAGgAAAhoAAAMaAAACGgAAAhoAAAMaAAABGgAAAWgAAAAKAAAACgAAAAoAAAAKAAAACgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABGgAAARoAAANoAAAAGgAAARoAAAMaAAADaAAAAEsAAABLAAADSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAA0sAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAA== - -3,-1: - ind: -3,-1 - tiles: CgAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAA2gAAABLAAABSwAAA2gAAABoAAAAVwAAAFcAAABoAAAAGgAAAGgAAABoAAAASwAAA0sAAAJoAAAASwAAA0sAAAJoAAAASwAAA0sAAABoAAAAaAAAAFcAAABXAAAAaAAAABoAAAJLAAAAaAAAAEsAAANLAAAAaAAAAEsAAAJLAAAAaAAAAEsAAAJLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAACSwAAAksAAABLAAAASwAAAmgAAABLAAABSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAVwAAAEsAAANoAAAASwAAA0sAAABoAAAASwAAA0sAAAJoAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAAaAAAAEsAAABLAAADSwAAAksAAAFLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAADSwAAAmgAAABoAAAAaAAAAEsAAANoAAAAaAAAAGgAAABLAAAASwAAAWgAAABLAAAASwAAA2gAAABLAAACSwAAAEsAAAFLAAAASwAAA0sAAAFLAAACSwAAAEsAAAFLAAAASwAAAEsAAAFLAAAASwAAAksAAANoAAAASwAAAUsAAABLAAACSwAAAksAAANLAAACSwAAAksAAAFLAAABaAAAAEsAAABLAAACaAAAAEsAAANLAAABaAAAAEsAAANLAAABSwAAA0sAAANLAAABSwAAAUsAAAJLAAACSwAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAA2gAAABoAAAASwAAAksAAAJLAAADSwAAAUsAAABLAAAASwAAA0sAAAJoAAAAaAAAAGgAAABLAAACSwAAA0sAAAJoAAAAaAAAAGgAAABoAAAASwAAAGgAAABoAAAAaAAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABLAAADSwAAAUsAAAFLAAAAaAAAAEsAAAFLAAABSwAAA2gAAABoAAAAaAAAAEsAAABLAAAASwAAA2gAAABoAAAASwAAAEsAAAJLAAAASwAAAWgAAABLAAADSwAAAUsAAABoAAAAaAAAAGgAAABLAAAASwAAAUsAAAFoAAAAaAAAAEsAAANLAAACSwAAAEsAAAFoAAAASwAAAEsAAABLAAACaAAAAGgAAABoAAAASwAAAEsAAANLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACaAAAAGgAAABoAAAAaAAAAEsAAANLAAACSwAAAw== - -3,-2: - ind: -3,-2 - tiles: AAAAAAAAAAAKAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAKAAAACgAAAGgAAAA0AAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAKAAAACgAAAGgAAABoAAAANAAAAGgAAABoAAAAaAAAAGgAAABlAAABZQAAAmgAAABlAAACZQAAAWUAAANlAAABaAAAAAoAAABoAAAANAAAADQAAAA0AAAAaAAAAGgAAABoAAAAZQAAAGUAAANlAAABaAAAAGUAAANlAAACZQAAAAoAAAAKAAAAaAAAADQAAAA0AAAANAAAAGgAAABoAAAAaAAAAGgAAABlAAADZQAAAmUAAANlAAACaAAAAGgAAAAKAAAACgAAAGgAAAA0AAAANAAAADQAAABoAAAAaAAAAGgAAABlAAADZQAAAGUAAAFoAAAAaAAAAGgAAABoAAAACgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAxoAAAIaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAFcAAABoAAAAaAAAABoAAAEaAAAAGgAAA2gAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAAGgAAABoAAANoAAAAaAAAAGgAAAA3AAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAAaAAADaAAAAGgAAABoAAAANwAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAADcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAGgAAA2gAAABoAAAAVwAAAGgAAABoAAAASwAAA0sAAAJLAAAASwAAAUsAAAJoAAAAaAAAAFcAAABXAAAAaAAAABoAAAAKAAAAaAAAAFcAAABoAAAAaAAAAEsAAANLAAABaAAAAEsAAABLAAABaAAAAGgAAABXAAAAVwAAAGgAAAAaAAABCgAAAGgAAABXAAAAaAAAAGgAAABLAAABSwAAAGgAAABLAAAASwAAAWgAAABoAAAAVwAAAFcAAABoAAAAGgAAAA== - -2,-2: - ind: -2,-2 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAABoAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAEaAAABGgAAAmgAAAAaAAABGgAAABoAAAFoAAAAGgAAAhoAAAIaAAACGgAAAWgAAABbAAABWwAAAGgAAABoAAAAGgAAABoAAAFoAAAAGgAAARoAAAEaAAACaAAAAFsAAAFbAAAAWwAAA1sAAABbAAACWwAAA1sAAAFoAAAAaAAAAGgAAABoAAAAaAAAABoAAAAaAAADGgAAA2gAAABbAAACWwAAAVsAAAFbAAADaAAAAFsAAAJbAAACaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABGgAAAhoAAAFoAAAAGgAAABoAAAEaAAADGgAAAGgAAABbAAACWwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAAI3AAAANwAAAGgAAABoAAAAaAAAAFsAAANbAAABWwAAAlsAAAFbAAACWwAAAlsAAAJbAAADWwAAAVsAAAJbAAABNwAAADcAAABoAAAAaAAAAGgAAABbAAACWwAAA1sAAAFoAAAAWwAAAlsAAABbAAAAWwAAA1sAAAFbAAAAWwAAATcAAAA3AAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAVsAAAFbAAADWwAAAVsAAAI3AAAAaAAAAGgAAABlAAADZQAAA2UAAAFlAAACZQAAAmUAAAFlAAAAaAAAAFsAAANbAAACWwAAAFsAAAJbAAADGgAAABoAAAAaAAABZQAAAmUAAAJlAAABZQAAAWUAAANlAAABZQAAAWgAAABoAAAAGgAAAWgAAABoAAAAaAAAABoAAAMaAAAAGgAAAmUAAAJlAAAAZQAAAmUAAAJlAAADZQAAAmUAAABoAAAAGgAAAhoAAAIaAAADaAAAAFsAAAMaAAABGgAAABoAAABlAAABZQAAAWUAAANlAAABZQAAA2UAAAJlAAACaAAAABoAAAEaAAADGgAAABoAAAFbAAADGgAAAhoAAAAaAAACGgAAARoAAAEaAAADZQAAA2UAAAFlAAABZQAAAGgAAAAaAAACGgAAAxoAAAJoAAAAWwAAAw== - -2,-3: - ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAPAAAADwAAAWgAAAAPAAADDwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAPAAACDwAAAg8AAAAPAAAADwAAAg8AAANoAAAANwAAADcAAAA3AAAAGgAAAh4AAAIeAAAAaAAAAAAAAAAAAAAADwAAAw8AAAIPAAACaAAAAGgAAABoAAAAaAAAADcAAAA3AAAANwAAAGgAAAAeAAAAHgAAA2gAAAAAAAAAAAAAAGUAAANlAAAAZQAAA2gAAAAaAAAAGgAAAmgAAAA3AAAANwAAADcAAABoAAAAaAAAABoAAAFoAAAAaAAAAGgAAABlAAADZQAAAWUAAAJoAAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAAGgAAARoAAAEaAAACGgAAARoAAAMaAAAAZQAAAWUAAAJlAAADaAAAAGUAAABlAAACaAAAAGUAAANlAAAAZQAAABoAAANoAAAANwAAADcAAAAaAAADGgAAA2gAAABlAAACaAAAAGgAAABoAAAAQwAAAGgAAABlAAADaAAAAGgAAAAaAAAAaAAAADcAAAA3AAAANwAAADcAAABoAAAAaAAAAGgAAABoAAAAaAAAAEMAAABoAAAAaAAAAGgAAAAfAAADGgAAAWgAAAA3AAAANwAAABoAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABDAAAAaAAAAFcAAABoAAAAHwAAAxoAAAFoAAAAGgAAAhoAAAIaAAACGgAAAA== - -3,2: - ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAABoAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -3,1: - ind: -3,1 - tiles: AAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAoAAAAKAAAACgAAAGgAAAAaAAACQwAAAEMAAABDAAAAaAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAKAAAACgAAAAoAAABoAAAAGgAAAkMAAABDAAAAQwAAAEMAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAACgAAAAoAAAAKAAAAaAAAAGgAAABoAAAAGgAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAGgAAABAAAAAQAAAAEAAAABAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAABoAAAAQAAAAEAAAABAAAAAQAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAAaAAAAEAAAABAAAAAQAAAAEAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAMAAABCgAAAAoAAAAKAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAADAAABQoAAAAKAAAACgAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAADAAABwoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAUKAAAACgAAAAoAAAAKAAAACgAAAAoAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaAAAAFcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAGgAAABXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAABoAAAAVwAAAA== - -3,0: - ind: -3,0 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAASwAAAWgAAABLAAACSwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAEsAAANLAAABSwAAAEsAAAJLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABLAAACaAAAAEsAAAJLAAACSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAASwAAAmgAAABLAAADSwAAA0sAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAEsAAAFoAAAASwAAAEsAAAJLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAMaAAAAGgAAAhoAAAIaAAABGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAIaAAACGgAAARoAAAEaAAADGgAAAhoAAAIaAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACGgAAAxoAAAAaAAAAGgAAAhoAAAAaAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABDAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAACgAAAAoAAAAKAAAAaAAAABoAAAFDAAAAQwAAAEMAAABoAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAwAAAcKAAAACgAAAGgAAAAaAAABQwAAAEMAAABDAAAAaAAAAA== - -3,-3: - ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAAAAAAAAoAAAAKAAAACgAAAAoAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAAApAAAAKQAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAACkAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFsAAABbAAABWwAAAEsAAAJLAAADaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAGgAAABbAAADWwAAA1sAAANLAAADSwAAAGgAAABbAAAAWwAAA2gAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAABoAAAAWwAAAVsAAAJbAAAASwAAAEsAAAFbAAADWwAAAlsAAAJbAAAAAAAAAAAAAAAAAAAACgAAAAoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== - -4,0: - ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABAAAAAQAAAAEAAAABoAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAEAAAABAAAAAQAAAAGgAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAQAAAAEAAAABAAAAAaAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABAAAAAQAAAAEAAAABoAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAEAAAABAAAAAQAAAAGgAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAQAAAAEAAAABAAAAAaAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAA== - -4,-1: - ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAGgAAAAaAAADGgAAABoAAAJoAAAASwAAAksAAAFLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAABoAAAAGgAAAhoAAAIaAAADGgAAAksAAANLAAABSwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAAaAAAABoAAAMaAAAAGgAAAGgAAABLAAACSwAAAEsAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAGgAAAAaAAACGgAAARoAAAJoAAAAaAAAAEsAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAABoAAAAGgAAAxoAAAAaAAAAaAAAAEsAAABLAAACSwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAAaAAAABoAAAIaAAADGgAAA2gAAABLAAAASwAAAUsAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAMAAABCgAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAABLAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAABgoAAABoAAAACgAAAAsAAAEKAAAAaAAAABoAAAEaAAAAGgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAIKAAAADAAAAwoAAAAKAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAA== - -4,-2: - ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAoAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAKAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAACgAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAGgAAABoAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAABoAAAAaAAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAA== - -5,-2: - ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAA== - 3,-3: - ind: 3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 3,-2: - ind: 3,-2 - tiles: AAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -4,1: - ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - type: MapGrid - - type: Broadphase - - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: {} - type: Fixtures - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: - version: 2 - nodes: - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 1084: 27,-31 - - node: - color: '#FFFFFFFF' - id: Arrows - decals: - 1605: -35,19 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 938: -11,-6 - 1085: 27,-29 - - node: - color: '#FFFFFFFF' - id: Bot - decals: - 16: -21,-9 - 17: -21,-8 - 18: -21,-7 - 19: -23,-7 - 28: -21,-4 - 30: -23,-4 - 56: 5,22 - 57: 6,22 - 58: 7,22 - 59: 8,22 - 141: 20,14 - 147: 18,21 - 246: 13,55 - 247: 13,49 - 248: 7,49 - 249: 7,55 - 250: 11,43 - 251: 9,43 - 310: 28,-10 - 311: 30,-10 - 419: 11,-28 - 420: 12,-28 - 422: 12,-26 - 423: 14,-26 - 424: 5,-24 - 425: 19,-27 - 588: -30,22 - 589: -31,22 - 635: -17,11 - 636: -17,9 - 654: -37,-9 - 655: -36,-9 - 687: -35,5 - 688: -34,5 - 689: -33,5 - 690: -32,5 - 699: -35,1 - 713: -31,-6 - 714: -31,-10 - 863: -54,-11 - 864: -55,-10 - 865: -54,-9 - 866: -53,-10 - 899: 14,23 - 900: 14,25 - 901: 14,26 - 902: 14,27 - 903: 18,23 - 904: 18,24 - 936: -10,-6 - 937: -10,-10 - 1010: 31,-29 - 1011: 32,-29 - 1012: 34,-29 - 1013: 35,-29 - 1082: 29,-31 - 1083: 29,-29 - 1204: -9,-28 - 1205: -9,-27 - 1233: -14,-26 - 1234: -16,-26 - 1531: 2,-36 - 1532: -15,-14 - 1604: -37,20 - - node: - color: '#FFFFFFFF' - id: BotLeft - decals: - 1533: -47,-9 - 1534: -47,-8 - 1535: -47,-7 - 1599: -32,-10 - 1600: -33,-10 - 1601: -34,-10 - 1602: -36,21 - 1603: -37,21 - - node: - color: '#FFFFFFFF' - id: BotLeftGreyscale - decals: - 869: -53,-9 - 870: -55,-11 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: BotRight - decals: - 1086: 22,-27 - - node: - color: '#FFFFFFFF' - id: BotRightGreyscale - decals: - 867: -55,-9 - 868: -53,-11 - 1369: -19,-19 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - decals: - 1038: -15,-35 - 1039: -23,-40 - 1040: -23,-39 - 1041: -23,-37 - 1042: -23,-38 - 1043: -23,-36 - 1091: -1,28 - 1092: -1,29 - 1093: -1,30 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - decals: - 1088: -5,28 - 1089: -5,29 - 1090: -5,30 - - node: - color: '#EFB34196' - id: BrickTileSteelCornerNe - decals: - 1553: -39,-11 - 1554: -39,-11 - - node: - color: '#EFB34196' - id: BrickTileSteelCornerNw - decals: - 1559: -43,-11 - 1560: -43,-11 - - node: - color: '#EFB34196' - id: BrickTileSteelCornerSe - decals: - 1575: -39,-19 - 1576: -39,-19 - - node: - color: '#EFB34196' - id: BrickTileSteelCornerSw - decals: - 1573: -43,-19 - 1574: -43,-19 - - node: - color: '#EFB34196' - id: BrickTileSteelLineE - decals: - 1583: -39,-18 - 1584: -39,-18 - 1585: -39,-17 - 1586: -39,-17 - 1587: -39,-15 - 1588: -39,-15 - 1589: -39,-16 - 1590: -39,-16 - 1591: -39,-14 - 1592: -39,-14 - 1593: -39,-13 - 1594: -39,-13 - 1595: -39,-12 - 1596: -39,-12 - - node: - color: '#D381C996' - id: BrickTileSteelLineN - decals: - 1005: 31,-29 - 1006: 32,-29 - 1007: 33,-29 - 1008: 34,-29 - 1009: 35,-29 - - node: - color: '#EFB34196' - id: BrickTileSteelLineN - decals: - 1555: -40,-11 - 1556: -40,-11 - 1557: -42,-11 - 1558: -42,-11 - - node: - color: '#D381C996' - id: BrickTileSteelLineS - decals: - 1000: 31,-25 - 1001: 32,-25 - 1002: 33,-25 - 1003: 34,-25 - 1004: 35,-25 - - node: - color: '#EFB34196' - id: BrickTileSteelLineS - decals: - 1577: -40,-19 - 1578: -40,-19 - 1579: -41,-19 - 1580: -41,-19 - 1581: -42,-19 - 1582: -42,-19 - - node: - color: '#EFB34196' - id: BrickTileSteelLineW - decals: - 1561: -43,-12 - 1562: -43,-12 - 1563: -43,-14 - 1564: -43,-14 - 1565: -43,-15 - 1566: -43,-15 - 1567: -43,-16 - 1568: -43,-16 - 1569: -43,-17 - 1570: -43,-17 - 1571: -43,-18 - 1572: -43,-18 - - node: - color: '#334E6DC8' - id: BrickTileWhiteBox - decals: - 1045: -50,-14 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteBox - decals: - 1046: -51,-14 - - node: - color: '#EFB34196' - id: BrickTileWhiteBox - decals: - 1044: -49,-14 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerNe - decals: - 1171: -9,-21 - 1243: -15,-21 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerNe - decals: - 1061: 26,-25 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerNw - decals: - 1172: -13,-21 - 1247: -21,-21 - 1248: -23,-23 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerNw - decals: - 1062: 27,-25 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerSe - decals: - 1170: -9,-24 - 1256: -15,-24 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerSw - decals: - 1249: -23,-24 - - node: - color: '#D381C996' - id: BrickTileWhiteInnerNe - decals: - 1066: 25,-25 - 1070: 26,-27 - 1081: 22,-24 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerNe - decals: - 1495: -6,-32 - - node: - color: '#52B4E996' - id: BrickTileWhiteInnerNw - decals: - 1260: -21,-23 - - node: - color: '#D381C996' - id: BrickTileWhiteInnerNw - decals: - 1067: 28,-25 - 1069: 27,-27 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerNw - decals: - 1496: 0,-32 - - node: - color: '#D381C996' - id: BrickTileWhiteInnerSe - decals: - 1058: 21,-25 - 1068: 25,-24 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerSe - decals: - 1494: -6,-23 - - node: - color: '#D381C996' - id: BrickTileWhiteInnerSw - decals: - 1057: 25,-25 - 1065: 28,-24 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerSw - decals: - 1493: 0,-23 - - node: - color: '#D381C996' - id: BrickTileWhiteLineE - decals: - 1052: 21,-27 - 1053: 21,-26 - 1059: 26,-26 - 1071: 22,-21 - 1072: 22,-22 - 1073: 22,-23 - 1306: -17,-18 - 1307: -17,-17 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineE - decals: - 1470: -6,-31 - 1471: -6,-30 - 1472: -6,-29 - 1473: -6,-27 - 1474: -6,-25 - 1475: -6,-24 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineN - decals: - 1180: -11,-21 - 1244: -17,-21 - 1245: -18,-21 - 1246: -19,-21 - 1259: -22,-23 - - node: - color: '#D381C996' - id: BrickTileWhiteLineN - decals: - 1047: 27,-28 - 1048: 28,-28 - 1049: 29,-28 - 1074: 23,-24 - 1075: 24,-24 - 1076: 25,-24 - 1077: 26,-24 - 1078: 27,-24 - 1079: 28,-24 - 1080: 29,-24 - 1305: -16,-19 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineN - decals: - 1476: -5,-32 - 1477: -4,-32 - 1478: -2,-32 - 1479: -1,-32 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineS - decals: - 1173: -12,-24 - 1181: -11,-24 - 1250: -16,-24 - 1251: -18,-24 - 1252: -19,-24 - 1253: -20,-24 - 1254: -21,-24 - 1255: -22,-24 - - node: - color: '#D381C996' - id: BrickTileWhiteLineS - decals: - 1054: 24,-25 - 1055: 23,-25 - 1056: 22,-25 - 1063: 27,-24 - 1064: 26,-24 - 1308: -16,-16 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineS - decals: - 1488: -1,-23 - 1489: -2,-23 - 1490: -3,-23 - 1491: -4,-23 - 1492: -5,-23 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineW - decals: - 1261: -21,-22 - - node: - color: '#D381C996' - id: BrickTileWhiteLineW - decals: - 1050: 25,-27 - 1051: 25,-26 - 1060: 27,-26 - 1309: -15,-18 - 1310: -15,-17 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineW - decals: - 1480: 0,-31 - 1481: 0,-30 - 1482: 0,-29 - 1483: 0,-28 - 1484: 0,-27 - 1485: 0,-26 - 1486: 0,-25 - 1487: 0,-24 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Bushb3 - decals: - 850: 14.0002365,-41.964172 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Bushc3 - decals: - 857: 4.0288744,-43.00805 - - node: - color: '#FFFFFFFF' - id: Bushf2 - decals: - 51: 6.409272,21.00127 - - node: - color: '#FFFFFFFF' - id: Bushg2 - decals: - 27: -8.467243,-8.991291 - - node: - color: '#FFFFFFFF' - id: Bushg3 - decals: - 26: -8.904743,-10.131916 - - node: - color: '#FFFFFFFF' - id: Bushg4 - decals: - 25: -7.107868,-9.913166 - 328: -9.013572,-49.089592 - - node: - color: '#FFFFFFFF' - id: Bushi1 - decals: - 24: -7.920368,-9.100666 - 327: -8.919771,-45.902092 - - node: - color: '#FFFFFFFF' - id: Bushi3 - decals: - 326: -8.986252,-47.542717 - 333: -13.982322,-47.902092 - - node: - color: '#FFFFFFFF' - id: Bushi4 - decals: - 23: -8.592243,-9.991291 - 52: 7.440522,20.93877 - - node: - color: '#FFFFFFFF' - id: Bushk1 - decals: - 50: 7.940522,21.016895 - - node: - color: '#FFFFFFFF' - id: Bushn1 - decals: - 53: 7.034272,20.954395 - - node: - color: '#52B4E996' - id: CheckerNESW - decals: - 941: -35,-4 - 942: -35,-3 - - node: - color: '#D381C996' - id: CheckerNESW - decals: - 1504: -3,-29 - 1505: -3,-28 - 1506: -3,-27 - 1507: -3,-26 - - node: - color: '#DE3A3A96' - id: CheckerNESW - decals: - 939: -35,-1 - 940: -35,-2 - - node: - color: '#334E6DC8' - id: CheckerNWSE - decals: - 1280: -25,-29 - 1281: -26,-29 - 1282: -27,-29 - 1283: -27,-28 - 1284: -26,-28 - 1285: -25,-28 - 1286: -25,-27 - 1287: -26,-27 - 1288: -27,-27 - 1289: -27,-26 - 1290: -26,-26 - 1291: -25,-26 - - node: - color: '#52B4E996' - id: CheckerNWSE - decals: - 1194: -11,-29 - 1195: -10,-29 - 1196: -10,-28 - 1197: -11,-28 - 1198: -11,-27 - 1199: -10,-27 - 1200: -10,-26 - 1201: -11,-26 - 1294: -26,-24 - 1295: -26,-23 - 1296: -25,-23 - 1297: -25,-24 - 1500: -3,-29 - 1501: -3,-28 - 1502: -3,-27 - 1503: -3,-26 - - node: - color: '#D381C996' - id: CheckerNWSE - decals: - 357: 16,-22 - 358: 16,-21 - 359: 17,-21 - 360: 17,-22 - 361: 18,-22 - 362: 18,-21 - 985: 31,-28 - 986: 31,-27 - 987: 31,-26 - 988: 32,-26 - 989: 32,-27 - 990: 32,-28 - 991: 33,-28 - 992: 33,-27 - 993: 33,-26 - 994: 34,-26 - 995: 34,-27 - 996: 34,-28 - 997: 35,-28 - 998: 35,-27 - 999: 35,-26 - - node: - color: '#D4D4D496' - id: CheckerNWSE - decals: - 943: -35,-4 - 944: -35,-3 - 945: -35,-2 - 946: -35,-1 - - node: - color: '#DE3A3A96' - id: CheckerNWSE - decals: - 561: -34,12 - 562: -35,12 - 563: -34,11 - 564: -34,10 - 565: -35,10 - 566: -35,11 - 567: -36,10 - 568: -36,11 - 569: -36,12 - 570: -37,10 - 571: -37,11 - 572: -37,12 - 573: -38,11 - 574: -38,10 - 575: -39,10 - 576: -39,11 - 577: -39,12 - 578: -38,12 - 579: -40,12 - 580: -40,11 - 581: -40,10 - - node: - color: '#EFB34196' - id: CheckerNWSE - decals: - 728: -49,-10 - 729: -50,-10 - 730: -51,-10 - 731: -51,-9 - 732: -50,-9 - 733: -49,-9 - 734: -49,-8 - 735: -50,-8 - 736: -51,-8 - - node: - color: '#FFFFFFFF' - id: Delivery - decals: - 29: -22,-4 - 60: 9,22 - 142: 20,15 - 148: 18,20 - 254: 5,47 - 255: 6,47 - 256: 7,47 - 312: 29,-10 - 313: 31,-10 - 421: 12,-29 - 582: -27,13 - 583: -27,14 - 630: -20,7 - 631: -19,7 - 632: -18,12 - 633: -17,12 - 634: -17,10 - 648: -35,-34 - 649: -34,-34 - 691: -35,4 - 692: -34,4 - 693: -33,4 - 694: -32,4 - 700: -34,-6 - 715: -40,-4 - 716: -40,-3 - 717: -40,-2 - 1087: 22,-26 - 1202: -9,-26 - 1203: -9,-29 - 1367: -12,-37 - 1368: -11,-37 - 1370: -6,-15 - 1371: -7,-15 - 1372: 0,-15 - 1373: 1,-15 - 1374: -12,-13 - 1375: -12,-12 - 1376: 6,-13 - 1377: 6,-12 - 1378: 11,-11 - 1379: 12,-11 - 1380: 12,0 - 1381: 11,0 - 1382: 12,16 - 1383: 11,16 - 1384: 13,14 - 1385: 13,15 - 1386: 4,19 - 1387: 4,20 - 1388: -10,19 - 1389: -10,20 - 1390: -23,15 - 1391: -24,15 - 1392: -26,6 - 1393: -27,6 - 1394: -26,-11 - 1395: -27,-11 - 1396: -22,-13 - 1397: -22,-12 - 1606: 5,-4 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Dirt - decals: - 1030: -44,-28 - 1031: -45,-29 - 1032: -43,-27 - 1033: -44,-30 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - decals: - 801: 7,-33 - 802: 8,-32 - 809: 5,-39 - 810: 5,-38 - 811: 12,-41 - 828: 24,12 - 1027: -43,-28 - 1028: -44,-27 - 1029: -45,-28 - 1537: -47,-8 - 1538: -47,-7 - 1539: -47,-10 - - node: - color: '#FFFFFFFF' - id: DirtLight - decals: - 910: 20,27 - 911: 19,26 - 912: 17,26 - 913: 16,24 - 914: 16,30 - 915: 17,32 - 916: 16,35 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - decals: - 804: 8,-34 - 805: 8,-36 - 806: 13,-39 - 807: 14,-38 - 808: 4,-38 - 812: -34,-6 - 813: -34,-8 - 814: -33,-7 - 815: -41,-9 - 816: -41,-8 - 817: -39,-9 - 818: -34,-4 - 819: -31,-3 - 820: -25,-5 - 821: -26,-4 - 822: -23,-12 - 823: 13,-4 - 824: 19,15 - 825: 18,14 - 826: 24,14 - 829: 24,13 - 830: 22,14 - 831: 23,15 - 832: 17,14 - 833: 16,21 - 834: 15,21 - 835: 16,19 - 836: 16,23 - 837: 17,24 - 838: -21,9 - 839: -23,8 - 840: -25,7 - 841: -23,13 - 842: 0,-19 - 843: -6,-28 - 844: -6,-33 - 845: -11,-38 - 1536: -47,-9 - 1543: -46,-13 - 1544: -45,-12 - 1545: -46,-11 - 1546: -45,-11 - 1547: -45,-10 - 1548: -45,-9 - 1549: -46,-8 - 1550: -46,-7 - 1551: -45,-6 - 1552: -40,-6 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - decals: - 803: 8,-33 - 827: 24,15 - 1540: -46,-10 - 1541: -46,-9 - 1542: -46,-12 - - node: - color: '#FFFFFFFF' - id: Flowersbr1 - decals: - 47: 6.065522,21.048145 - - node: - color: '#FFFFFFFF' - id: Flowerspv1 - decals: - 48: 7.049897,20.985645 - 325: -8.939377,-46.636467 - - node: - color: '#FFFFFFFF' - id: Flowersy1 - decals: - 49: 7.518647,21.016895 - 324: -8.955002,-48.308342 - - node: - color: '#FFFFFFFF' - id: Flowersy4 - decals: - 332: -13.997947,-48.917717 - - node: - color: '#334E6DC8' - id: FullTileOverlayGreyscale - decals: - 109: -7,29 - 110: 1,29 - - node: - color: '#52B4E996' - id: FullTileOverlayGreyscale - decals: - 1182: -11,-23 - 1183: -11,-22 - 1206: -13,-26 - 1207: -15,-26 - 1208: -17,-26 - 1209: -18,-26 - 1210: -16,-29 - 1211: -17,-29 - 1212: -18,-29 - 1300: -24,-24 - - node: - color: '#A4610696' - id: FullTileOverlayGreyscale - decals: - 272: 26,-8 - 273: 30,-7 - 897: 16,33 - 898: 15,28 - - node: - color: '#D381C996' - id: FullTileOverlayGreyscale - decals: - 363: 15,-22 - 364: 15,-21 - 365: 19,-22 - 366: 19,-21 - 397: 30,-26 - - node: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - decals: - 297: 30,1 - 444: -5,-26 - 445: -3,-31 - 559: -33,17 - 560: -35,13 - 612: -27,28 - 613: -31,28 - - node: - color: '#EFB34196' - id: FullTileOverlayGreyscale - decals: - 737: -50,-11 - 738: -52,-13 - 739: -47,-13 - 759: -41,-10 - 760: -44,-13 - 766: -47,-10 - 767: -47,-9 - 768: -47,-8 - 769: -47,-7 - - node: - color: '#FFDB9895' - id: FullTileOverlayGreyscale - decals: - 462: -11,-18 - 463: -11,-17 - 464: -12,-17 - 465: -11,-16 - 466: -10,-17 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Grassa4 - decals: - 846: 14.0471115,-39.042297 - 849: 13.9846115,-43.011047 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Grassa5 - decals: - 848: 3.9064865,-36.901672 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Grassb1 - decals: - 847: 3.9377365,-39.073547 - 851: 13.4377365,-40.948547 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Grassb2 - decals: - 852: 14.1408615,-40.964172 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Grassb3 - decals: - 853: 13.1408615,-43.026672 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Grassb4 - decals: - 1036: -44,-28 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Grassb5 - decals: - 1037: -44,-30 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Grassc2 - decals: - 856: 13.63825,-42.897484 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Grassc3 - decals: - 855: 13.88825,-41.03811 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Grassc4 - decals: - 854: 14.089525,-39.057083 - - node: - color: '#FFFFFFFF' - id: Grassd1 - decals: - 20: -8.810993,-9.335041 - - node: - color: '#FFFFFFFF' - id: Grassd2 - decals: - 46: 7.909272,21.016895 - 323: -8.91927,-49.011467 - 329: -13.966697,-45.902092 - - node: - color: '#FFFFFFFF' - id: Grassd3 - decals: - 21: -7.826618,-9.960041 - - node: - color: '#FFFFFFFF' - id: Grasse2 - decals: - 44: 6.049897,21.0706 - 45: 6.784272,21.079395 - 321: -8.936016,-46.30113 - 331: -13.997947,-48.558342 - - node: - color: '#FFFFFFFF' - id: Grasse3 - decals: - 22: -7.045368,-10.022541 - 322: -9.029766,-47.11363 - 330: -13.997947,-47.558342 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale - decals: - 104: -3,20 - 105: -2,20 - 106: -4,20 - 862: 25,1 - 1266: -20,-29 - 1267: -21,-29 - 1268: -22,-29 - 1269: -23,-29 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale - decals: - 1184: -10,-23 - 1185: -12,-23 - 1189: -11,-24 - 1213: -17,-27 - 1214: -16,-27 - 1215: -15,-27 - 1216: -14,-27 - 1217: -21,-27 - 1218: -22,-27 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale - decals: - 136: 17,15 - 154: 16,21 - 155: 15,21 - 165: 19,19 - 166: 18,19 - 171: 19,21 - 267: 30,-8 - 268: 29,-8 - 269: 28,-8 - 890: 16,35 - 891: 16,32 - - node: - color: '#BAFF79B4' - id: HalfTileOverlayGreyscale - decals: - 639: -40,-34 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale - decals: - 389: 6,-15 - 390: 5,-15 - 391: 4,-15 - 392: 3,-15 - - node: - color: '#D4D4D428' - id: HalfTileOverlayGreyscale - decals: - 6: -22,-10 - 7: -23,-10 - 187: 10,46 - 198: 6,46 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - decals: - 294: 28,4 - 295: 29,4 - 296: 30,4 - 432: -3,-25 - 551: -35,17 - 600: -27,32 - 601: -28,32 - 602: -29,32 - 603: -30,32 - 604: -31,32 - 605: -32,32 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale - decals: - 626: -19,11 - 627: -20,11 - 681: -30,5 - 683: -32,3 - 684: -33,3 - 685: -34,3 - 686: -35,3 - 707: -31,-7 - 708: -32,-7 - 709: -33,-7 - 771: -45,-6 - 772: -44,-6 - 773: -43,-6 - 774: -42,-6 - 775: -39,-6 - 776: -40,-6 - 777: -41,-6 - 778: -43,-2 - 779: -44,-2 - 780: -45,-2 - 781: -46,-2 - 877: -48,-12 - 878: -49,-12 - 879: -50,-12 - 880: -51,-12 - 917: 24,1 - - node: - color: '#FFDB9895' - id: HalfTileOverlayGreyscale - decals: - 450: -10,-15 - 451: -11,-15 - 452: -12,-15 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - decals: - 1262: -20,-26 - 1263: -22,-26 - 1264: -21,-26 - 1265: -23,-26 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale180 - decals: - 1186: -10,-22 - 1187: -12,-22 - 1188: -11,-21 - 1219: -14,-28 - 1220: -15,-28 - 1221: -16,-28 - 1222: -17,-28 - 1223: -21,-28 - 1224: -22,-28 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale180 - decals: - 159: 15,17 - 160: 16,17 - 161: 17,17 - 162: 18,17 - 163: 19,17 - 176: 17,13 - 264: 28,-10 - 265: 29,-10 - 266: 30,-10 - 889: 16,29 - 892: 16,34 - - node: - color: '#BAFF79B4' - id: HalfTileOverlayGreyscale180 - decals: - 644: -40,-36 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale180 - decals: - 393: 6,-19 - 394: 5,-19 - 395: 4,-19 - 396: 3,-19 - - node: - color: '#D4D4D428' - id: HalfTileOverlayGreyscale180 - decals: - 4: -23,-7 - 5: -22,-7 - 188: 10,44 - 194: 6,44 - 201: 10,48 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - decals: - 289: 30,2 - 290: 29,2 - 291: 28,2 - 435: -3,-30 - 552: -35,14 - 606: -32,29 - 607: -31,29 - 608: -30,29 - 609: -29,29 - 610: -28,29 - 611: -27,29 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale180 - decals: - 622: -19,8 - 623: -20,8 - 665: -35,1 - 666: -34,1 - 667: -33,1 - 668: -32,1 - 669: -31,1 - 670: -30,1 - 671: -29,1 - 710: -31,-9 - 711: -32,-9 - 712: -33,-9 - 752: -44,-9 - 753: -43,-9 - 754: -42,-9 - 755: -41,-9 - 756: -40,-9 - 757: -39,-9 - 874: -53,-14 - 875: -55,-14 - 876: -48,-14 - - node: - color: '#FFDB9895' - id: HalfTileOverlayGreyscale180 - decals: - 459: -10,-19 - 460: -11,-19 - 461: -12,-19 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - decals: - 1102: -1,31 - 1103: -1,32 - 1104: -1,33 - 1105: -1,34 - 1106: -4,31 - 1107: -4,32 - 1108: -4,33 - 1109: -4,34 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale270 - decals: - 1292: -27,-24 - 1293: -27,-23 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale270 - decals: - 156: 14,20 - 157: 14,19 - 158: 14,18 - 172: 14,25 - 173: 14,26 - 174: 14,27 - 175: 14,23 - 271: 27,-9 - 893: 15,30 - 894: 15,31 - - node: - color: '#BAFF79B4' - id: HalfTileOverlayGreyscale270 - decals: - 637: -41,-35 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale270 - decals: - 340: 8,-25 - 367: 20,-22 - 368: 20,-21 - - node: - color: '#D4D4D428' - id: HalfTileOverlayGreyscale270 - decals: - 9: -21,-9 - 10: -21,-8 - 183: 13,45 - 186: 9,45 - 200: 5,45 - 206: 8,51 - 207: 8,52 - 208: 8,53 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale270 - decals: - 293: 27,3 - 436: -4,-29 - 437: -4,-28 - 438: -4,-27 - 439: -4,-26 - 515: -30,13 - 516: -30,15 - 517: -30,17 - 518: -30,19 - 525: -28,16 - 526: -28,19 - 543: -32,11 - 545: -32,18 - 546: -32,19 - 547: -32,20 - 555: -36,15 - 556: -36,16 - 592: -32,26 - 593: -32,27 - 594: -28,26 - 595: -28,27 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale270 - decals: - 677: -31,5 - 678: -31,4 - 706: -34,-8 - 742: -46,-14 - 743: -46,-13 - 744: -46,-12 - 745: -46,-11 - 761: -46,-10 - 762: -46,-9 - 763: -46,-8 - 764: -46,-7 - 765: -46,-6 - - node: - color: '#FFDB9895' - id: HalfTileOverlayGreyscale270 - decals: - 453: -13,-18 - 454: -13,-17 - 455: -13,-16 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - decals: - 1094: -5,31 - 1095: -5,32 - 1096: -5,33 - 1097: -5,34 - 1098: -2,31 - 1099: -2,32 - 1100: -2,33 - 1101: -2,34 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale90 - decals: - 164: 20,18 - 168: 17,20 - 169: 20,20 - 270: 31,-9 - 895: 17,30 - 896: 17,31 - 905: 20,26 - 906: 20,25 - 907: 20,27 - - node: - color: '#BAFF79B4' - id: HalfTileOverlayGreyscale90 - decals: - 643: -39,-35 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale90 - decals: - 345: 9,-26 - 398: 29,-26 - - node: - color: '#D4D4D428' - id: HalfTileOverlayGreyscale90 - decals: - 14: -24,-9 - 15: -24,-8 - 184: 15,45 - 185: 11,45 - 196: 7,45 - 209: 12,51 - 210: 12,52 - 211: 12,53 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale90 - decals: - 292: 31,3 - 440: -2,-29 - 441: -2,-28 - 442: -2,-27 - 443: -2,-26 - 557: -34,15 - 558: -34,16 - 596: -26,26 - 597: -26,27 - 598: -30,26 - 599: -30,27 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale90 - decals: - 624: -18,9 - 625: -18,10 - 673: -29,2 - 674: -29,3 - 675: -29,4 - 676: -29,5 - 705: -30,-8 - 746: -45,-14 - 747: -45,-13 - 748: -45,-12 - 749: -45,-11 - 750: -45,-10 - - node: - color: '#FFDB9895' - id: HalfTileOverlayGreyscale90 - decals: - 456: -9,-18 - 457: -9,-17 - 458: -9,-16 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 55: 5,21 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 143: 22,15 - - node: - color: '#FFFFFFFF' - id: LoadingArea - decals: - 54: 9,21 - 695: -35,3 - 696: -34,3 - 697: -33,3 - 698: -32,3 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale - decals: - 83: -9,22 - 84: -9,23 - 85: -9,24 - 86: -9,25 - 87: -9,26 - 88: -9,27 - 89: -9,28 - 90: -9,29 - 91: -9,30 - 92: -11,20 - 93: -12,20 - 94: -13,20 - 95: -14,20 - 96: -15,20 - 97: -16,20 - 107: -1,20 - 111: 2,22 - 112: 2,23 - 113: 2,24 - 114: 2,25 - 115: 2,26 - 116: 2,27 - 117: 2,28 - 118: 2,29 - 119: 2,30 - 1116: -2,31 - 1117: -3,32 - 1120: -2,32 - 1121: -3,33 - 1122: 0,33 - 1123: 0,32 - 1124: 1,33 - 1130: -6,33 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale - decals: - 469: -7,-16 - 470: -7,-17 - 471: -7,-18 - 472: -7,-19 - 473: -7,-20 - 491: -17,-12 - 492: -15,-12 - 493: -13,-12 - 494: -11,-12 - 495: -9,-12 - 496: -7,-12 - 1270: -7,-21 - 1301: -17,-16 - 1341: -12,-56 - 1342: -12,-55 - 1343: -12,-54 - 1344: -12,-53 - 1345: -12,-52 - 1346: -12,-51 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale - decals: - 486: -8,-12 - 487: -10,-12 - 488: -14,-12 - 489: -16,-12 - 490: -18,-12 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - decals: - 133: 14,15 - 134: 15,15 - 135: 16,15 - - node: - color: '#BAFF79B4' - id: QuarterTileOverlayGreyscale - decals: - 638: -41,-34 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale - decals: - 339: 8,-24 - 372: 14,-28 - 795: 8,-34 - 796: 8,-35 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale - decals: - 8: -21,-10 - 1136: 1,20 - 1137: 0,20 - 1406: -28,-1 - 1407: -27,-1 - 1408: -27,0 - 1409: -27,1 - 1410: -27,2 - 1411: -27,3 - 1412: -27,4 - 1413: -27,5 - 1420: -27,7 - 1421: -27,8 - 1422: -26,8 - 1423: -25,8 - 1424: -24,8 - 1425: -24,9 - 1426: -20,20 - 1427: -19,20 - 1428: -18,20 - 1429: -17,20 - 1430: 11,-1 - 1431: 11,-2 - 1432: 11,-3 - 1433: 11,-4 - 1434: 11,-5 - 1435: 11,-6 - 1436: 11,-7 - 1437: 11,-8 - 1438: 11,-9 - 1439: 11,-10 - 1440: -6,-12 - 1447: 7,-12 - 1448: 8,-12 - 1449: 9,-12 - 1450: 10,-12 - 1451: 11,-12 - 1452: 0,-16 - 1453: 0,-17 - 1454: 0,-18 - 1455: 0,-19 - 1456: 0,-20 - 1457: 0,-21 - 1458: 0,-22 - 1459: -1,-22 - 1460: -2,-22 - 1508: -12,-35 - 1509: -11,-35 - 1510: -10,-35 - 1511: -9,-35 - 1512: -8,-35 - 1516: -4,-35 - 1517: -5,-35 - - node: - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale - decals: - 1311: -12,-45 - 1312: -12,-44 - 1313: -12,-43 - 1314: -12,-42 - 1315: -12,-41 - 1316: -12,-40 - 1317: -12,-39 - 1318: -12,-38 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale - decals: - 502: -24,10 - 503: -24,11 - 504: -24,12 - 505: -24,13 - 506: -24,14 - 507: -24,16 - 508: -24,17 - 509: -24,18 - 510: -24,19 - 511: -24,20 - 512: -23,20 - 513: -22,20 - 514: -21,20 - 524: -30,11 - 527: -27,20 - 528: -27,17 - 544: -32,17 - 616: -26,10 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - decals: - 628: -21,10 - 680: -29,5 - 682: -31,3 - 784: -46,-4 - 785: -46,-3 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale180 - decals: - 1114: -4,34 - 1115: -3,33 - 1118: -3,32 - 1119: -4,33 - 1132: -6,33 - 1133: 0,33 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale180 - decals: - 485: -21,-13 - 1298: -27,-24 - 1299: -27,-23 - 1303: -15,-19 - 1353: -11,-38 - 1354: -11,-39 - 1355: -11,-40 - 1356: -11,-41 - 1357: -11,-42 - 1358: -11,-43 - 1359: -11,-44 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - decals: - 139: 12,14 - 140: 12,13 - 180: 18,13 - 181: 19,13 - 182: 20,13 - 909: 20,28 - - node: - color: '#BAFF79B4' - id: QuarterTileOverlayGreyscale180 - decals: - 642: -39,-36 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale180 - decals: - 346: 9,-29 - 347: 9,-28 - 348: 9,-27 - 351: 9,-22 - 352: 10,-22 - 353: 11,-22 - 354: 12,-22 - 355: 13,-22 - 356: 14,-22 - 369: 15,-29 - 378: 1,-14 - 379: 2,-13 - 380: 3,-13 - 381: 4,-13 - 382: 5,-13 - 383: 7,-13 - 384: 1,-23 - 385: 1,-24 - 386: 1,-25 - 400: 29,-25 - 497: 1,-13 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale180 - decals: - 12: -24,-7 - 1146: -1,16 - 1147: 0,16 - 1148: 0,17 - 1149: 0,18 - 1150: 0,19 - 1151: 2,19 - 1152: 1,19 - 1153: 3,19 - 1154: 12,12 - 1155: 12,11 - 1156: 12,10 - 1157: 12,9 - 1158: 12,8 - 1159: 12,7 - 1160: 12,6 - 1161: 12,5 - 1523: -4,-36 - 1524: -5,-36 - 1525: -6,-36 - 1526: -7,-36 - 1527: -8,-36 - 1528: -9,-36 - 1529: -10,-36 - 1530: -11,-36 - - node: - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale180 - decals: - 1327: -11,-56 - 1328: -11,-55 - 1329: -11,-54 - 1330: -11,-53 - 1331: -11,-52 - 1332: -11,-51 - 1333: -11,-50 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - decals: - 519: -31,18 - 520: -31,20 - 521: -31,16 - 522: -31,14 - 523: -31,12 - 533: -26,16 - 534: -26,19 - 535: -29,18 - 536: -29,15 - 537: -29,13 - 614: -27,11 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale180 - decals: - 751: -45,-9 - 790: -33,-4 - 791: -32,-4 - 792: -31,-4 - 793: -30,-4 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale270 - decals: - 1112: -2,32 - 1113: -3,33 - 1128: 0,33 - 1129: -6,33 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale270 - decals: - 467: -7,-13 - 468: -7,-14 - 474: -7,-25 - 475: -7,-26 - 476: -7,-27 - 477: -7,-28 - 478: -7,-29 - 479: -8,-13 - 480: -9,-13 - 481: -10,-13 - 482: -11,-13 - 483: -13,-13 - 484: -19,-13 - 1271: -7,-24 - 1304: -17,-19 - 1360: -12,-44 - 1361: -12,-43 - 1362: -12,-42 - 1363: -12,-41 - 1364: -12,-40 - 1365: -12,-39 - 1366: -12,-38 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale270 - decals: - 177: 16,13 - 178: 15,13 - 179: 14,13 - 274: 30,-6 - 275: 29,-6 - 276: 28,-6 - 277: 27,-6 - 278: 24,-8 - 279: 24,-6 - 280: 24,-4 - 281: 22,-4 - 282: 20,-4 - 283: 18,-4 - 284: 16,-4 - - node: - color: '#BAFF79B4' - id: QuarterTileOverlayGreyscale270 - decals: - 641: -41,-36 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale270 - decals: - 334: 4,-22 - 335: 5,-22 - 336: 6,-22 - 337: 7,-22 - 338: 8,-22 - 341: 8,-29 - 342: 8,-28 - 343: 8,-27 - 344: 8,-26 - 371: 14,-29 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale270 - decals: - 11: -21,-7 - 1138: -5,16 - 1139: -6,16 - 1140: -6,17 - 1141: -6,18 - 1142: -6,19 - 1143: -7,19 - 1144: -8,19 - 1145: -9,19 - 1162: -7,-30 - 1163: -7,-31 - 1164: -7,-32 - 1165: -7,-33 - 1398: -27,-10 - 1399: -27,-9 - 1400: -27,-8 - 1401: -27,-7 - 1402: -27,-6 - 1403: -27,-5 - 1404: -27,-4 - 1405: -28,-4 - 1518: -2,-36 - 1519: -1,-36 - 1520: 0,-36 - 1521: 1,-36 - 1522: 2,-36 - - node: - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale270 - decals: - 1334: -12,-56 - 1335: -12,-55 - 1336: -12,-54 - 1337: -12,-53 - 1338: -12,-52 - 1339: -12,-51 - 1340: -12,-50 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale270 - decals: - 308: 24,-2 - 309: 24,0 - 531: -27,16 - 532: -27,19 - 542: -32,10 - 548: -32,15 - 615: -26,11 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale270 - decals: - 629: -21,9 - 758: -38,-9 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale90 - decals: - 74: 3,22 - 75: 3,23 - 76: 3,24 - 77: 3,25 - 78: 3,26 - 79: 3,27 - 80: 3,28 - 81: 3,29 - 82: 3,30 - 98: 5,20 - 99: 6,20 - 100: 7,20 - 101: 8,20 - 102: 9,20 - 103: 10,20 - 108: -5,20 - 120: -8,22 - 121: -8,23 - 122: -8,24 - 123: -8,25 - 124: -8,26 - 125: -8,27 - 126: -8,28 - 127: -8,29 - 128: -8,30 - 1110: -4,33 - 1111: -3,32 - 1125: -6,32 - 1126: -6,33 - 1127: -7,33 - 1131: 0,33 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale90 - decals: - 1302: -15,-16 - 1347: -11,-56 - 1348: -11,-55 - 1349: -11,-54 - 1350: -11,-53 - 1351: -11,-52 - 1352: -11,-51 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale90 - decals: - 129: 12,20 - 130: 12,18 - 131: 12,17 - 132: 12,15 - 137: 18,15 - 138: 19,15 - 167: 17,19 - 908: 20,24 - - node: - color: '#BAFF79B4' - id: QuarterTileOverlayGreyscale90 - decals: - 640: -39,-34 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale90 - decals: - 349: 9,-25 - 350: 9,-24 - 370: 15,-28 - 373: 1,-20 - 374: 1,-19 - 375: 1,-18 - 376: 1,-17 - 377: 1,-16 - 387: 1,-30 - 388: 1,-29 - 399: 29,-27 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale90 - decals: - 13: -24,-10 - 1134: -6,20 - 1135: -7,20 - 1276: 1,-31 - 1277: 2,-31 - 1278: 2,-32 - 1279: 2,-33 - 1414: -19,2 - 1415: -20,2 - 1416: -21,2 - 1417: -22,2 - 1418: -23,2 - 1419: -24,2 - 1441: 0,-12 - 1442: 1,-12 - 1443: 2,-12 - 1444: 3,-12 - 1445: 4,-12 - 1446: 5,-12 - 1461: -4,-22 - 1462: -5,-22 - 1463: -6,-22 - 1464: -6,-21 - 1465: -6,-20 - 1466: -6,-19 - 1467: -6,-18 - 1468: -6,-17 - 1469: -6,-16 - 1513: 2,-35 - 1514: -1,-35 - 1515: -2,-35 - - node: - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale90 - decals: - 1319: -11,-38 - 1320: -11,-39 - 1321: -11,-40 - 1322: -11,-41 - 1323: -11,-42 - 1324: -11,-43 - 1325: -11,-44 - 1326: -11,-45 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale90 - decals: - 298: 27,0 - 299: 28,0 - 300: 29,0 - 301: 30,0 - 302: 23,-3 - 303: 21,-3 - 304: 19,-3 - 305: 17,-3 - 306: 15,-3 - 307: 25,-1 - 529: -26,20 - 530: -26,17 - 538: -29,12 - 539: -29,14 - 540: -29,17 - 541: -29,20 - 617: -27,10 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - decals: - 672: -29,1 - 679: -31,5 - 770: -46,-6 - 782: -43,-3 - 783: -43,-4 - 786: -33,-1 - 787: -32,-1 - 788: -31,-1 - 789: -30,-1 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Rock03 - decals: - 1034: -45,-28 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Rock04 - decals: - 1035: -44,-27 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign1 - decals: - 947: -6,-13 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign2 - decals: - 948: -5,-13 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign3 - decals: - 949: -4,-13 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign4 - decals: - 950: -3,-13 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign5 - decals: - 951: -2,-13 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign6 - decals: - 952: -1,-13 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign7 - decals: - 953: 0,-13 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1231: -23,-27 - 1232: -18,-27 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale - decals: - 0: -23,-8 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale - decals: - 153: 14,21 - 260: 27,-8 - 882: 15,32 - 888: 15,35 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale - decals: - 794: 8,-33 - - node: - color: '#D4D4D428' - id: ThreeQuarterTileOverlayGreyscale - decals: - 189: 9,46 - 199: 5,46 - 213: 8,54 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale - decals: - 286: 27,4 - 430: -4,-25 - 550: -36,17 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale - decals: - 618: -21,11 - 702: -34,-7 - - node: - color: '#FFDB9895' - id: ThreeQuarterTileOverlayGreyscale - decals: - 447: -13,-15 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1229: -13,-28 - 1230: -20,-28 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1: -22,-9 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 150: 20,17 - 262: 31,-10 - 881: 17,29 - 887: 17,34 - - node: - color: '#D4D4D428' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 191: 11,44 - 195: 7,44 - 203: 11,48 - 204: 12,50 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 288: 31,2 - 434: -2,-30 - 553: -34,14 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 621: -18,8 - 704: -30,-9 - 741: -45,-15 - - node: - color: '#FFDB9895' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 448: -9,-19 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 1227: -23,-28 - 1228: -18,-28 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 149: 14,17 - 263: 27,-10 - 884: 15,29 - 885: 15,34 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 3: -23,-9 - - node: - color: '#D4D4D428' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 192: 9,44 - 193: 5,44 - 202: 9,48 - 205: 8,50 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 285: 27,2 - 433: -4,-30 - 554: -36,14 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 620: -21,8 - 701: -34,-9 - 740: -46,-15 - - node: - color: '#FFDB9895' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 446: -13,-19 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1225: -13,-27 - 1226: -20,-27 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 151: 20,19 - 152: 17,21 - 170: 20,21 - 261: 31,-8 - 883: 17,32 - 886: 17,35 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 2: -22,-8 - - node: - color: '#D4D4D428' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 190: 11,46 - 197: 7,46 - 212: 12,54 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 287: 31,4 - 431: -2,-25 - 549: -34,17 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 619: -18,11 - 703: -30,-7 - - node: - color: '#FFDB9895' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 449: -9,-15 - - node: - color: '#FFFFFFFF' - id: WarnBox - decals: - 1023: -9,-44 - 1024: -14,-44 - 1025: -14,-51 - 1026: -9,-51 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: WarnCorner - decals: - 222: 11,46 - 225: 7,46 - 653: -34,-34 - 659: -36,-8 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarnCorner - decals: - 402: 19,-24 - 720: -41,-2 - - node: - color: '#FFFFFFFF' - id: WarnCorner - decals: - 221: 9,44 - 226: 5,44 - 650: -35,-35 - 656: -37,-10 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarnCorner - decals: - 723: -39,-4 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: WarnCornerFlipped - decals: - 223: 9,46 - 224: 5,46 - 652: -35,-34 - 658: -37,-8 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarnCornerFlipped - decals: - 403: 19,-26 - 719: -41,-4 - - node: - color: '#FFFFFFFF' - id: WarnCornerFlipped - decals: - 33: -21,-4 - 220: 11,44 - 227: 7,44 - 651: -34,-35 - 657: -36,-10 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarnCornerFlipped - decals: - 722: -39,-2 - - node: - color: '#52B4E996' - id: WarnCornerGreyscaleSW - decals: - 1174: -13,-24 - - node: - color: '#FFFFFFFF' - id: WarnCornerNW - decals: - 1235: -15,-29 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNE - decals: - 932: 21,5 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNW - decals: - 929: 25,1 - 931: 23,5 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSE - decals: - 935: 23,3 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSW - decals: - 934: 25,3 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: WarnEnd - decals: - 43: 7,16 - - node: - color: '#FFFFFFFF' - id: WarnEnd - decals: - 42: 7,15 - - node: - color: '#52B4E996' - id: WarnFullGreyscale - decals: - 1168: -8,-23 - 1169: -8,-22 - 1190: -13,-25 - 1191: -14,-23 - 1192: -14,-22 - 1193: -10,-25 - 1238: -17,-25 - 1239: -19,-28 - - node: - color: '#FFFFFFFF' - id: WarnLineE - decals: - 921: 23,7 - 922: 23,8 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleE - decals: - 1166: -9,-23 - 1167: -9,-22 - 1241: -15,-23 - 1242: -15,-22 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleE - decals: - 1498: -6,-28 - 1499: -6,-26 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleE - decals: - 1274: 1,-22 - 1275: 1,-21 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleN - decals: - 1178: -10,-21 - 1179: -12,-21 - 1257: -16,-21 - 1258: -20,-21 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleN - decals: - 1497: -3,-32 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleN - decals: - 1598: -41,-11 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleS - decals: - 1177: -10,-24 - 1240: -17,-24 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleW - decals: - 1175: -13,-23 - 1176: -13,-22 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleW - decals: - 1272: -7,-23 - 1273: -7,-22 - 1597: -43,-13 - - node: - color: '#FFFFFFFF' - id: WarnLineN - decals: - 925: 21,7 - 926: 22,7 - 927: 23,7 - 933: 24,3 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 923: 21,7 - 924: 21,8 - - node: - color: '#FFFFFFFF' - id: WarnLineW - decals: - 918: 21,8 - 919: 22,8 - 920: 23,8 - 928: 24,1 - 930: 22,5 - 1236: -14,-29 - 1237: -13,-29 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: WarningLine - decals: - 61: -2,23 - 62: -3,23 - 63: -4,23 - 217: 15,44 - 218: 14,44 - 219: 13,44 - 257: 10,50 - 584: -34,21 - 585: -35,21 - 586: -36,21 - 587: -37,21 - 871: -53,-12 - 872: -54,-12 - 873: -55,-12 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarningLine - decals: - 38: 9,14 - 39: 9,15 - 40: 9,16 - 41: 9,17 - 64: -2,26 - 66: 0,22 - 67: 0,23 - 68: 0,24 - 69: 0,25 - 235: 8,49 - 236: 8,50 - 237: 8,51 - 238: 8,52 - 239: 8,53 - 240: 8,54 - 241: 8,55 - 252: 11,53 - 314: 31,-6 - 315: 31,-5 - 316: 31,-4 - 317: 31,-3 - 318: 31,-2 - 319: 31,-1 - 320: 31,0 - 401: 19,-25 - 404: 27,-30 - 414: 3,-28 - 415: 3,-27 - 416: 3,-26 - 645: -38,-36 - 646: -38,-35 - 647: -38,-34 - 660: -37,1 - 661: -37,2 - 662: -37,3 - 663: -37,4 - 664: -37,5 - 718: -41,-3 - - node: - color: '#FFFFFFFF' - id: WarningLine - decals: - 31: -23,-4 - 32: -22,-4 - 144: 24,16 - 145: 23,16 - 146: 22,16 - 214: 15,46 - 215: 14,46 - 216: 13,46 - 242: 13,50 - 243: 7,50 - 258: 9,56 - 259: 11,56 - 407: 27,-27 - 408: 28,-27 - 409: 29,-27 - 426: 23,-23 - 427: 24,-23 - 428: 25,-23 - 429: 26,-23 - 498: -34,19 - 499: -35,19 - 500: -36,19 - 501: -37,19 - 590: -30,22 - 591: -31,22 - 724: -43,-4 - 725: -44,-4 - 726: -45,-4 - 727: -46,-4 - - node: - cleanable: True - color: '#FFFFFFFF' - id: WarningLine - decals: - 858: 26,-37 - 859: 25,-37 - 860: 24,-37 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarningLine - decals: - 34: 5,14 - 35: 5,15 - 36: 5,16 - 37: 5,17 - 65: -4,26 - 70: -6,22 - 71: -6,23 - 72: -6,24 - 73: -6,25 - 228: 12,49 - 229: 12,50 - 230: 12,51 - 231: 12,52 - 232: 12,53 - 233: 12,54 - 234: 12,55 - 253: 9,53 - 411: 1,-28 - 412: 1,-27 - 413: 1,-26 - 417: 3,-22 - 418: 3,-21 - 721: -39,-3 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: WarningLine - decals: - 244: 13,54 - 245: 7,54 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarningLineCorner - decals: - 406: 27,-29 - - node: - color: '#FFFFFFFF' - id: WarningLineCorner - decals: - 410: 26,-27 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarningLineCornerFlipped - decals: - 405: 27,-31 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSe - decals: - 972: -27,-17 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNe - decals: - 978: -11,-2 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNw - decals: - 977: -8,-2 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSe - decals: - 969: -30,-17 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - decals: - 958: -16,22 - 959: -16,23 - 960: -16,24 - 966: -30,-20 - 967: -30,-19 - 968: -30,-18 - 973: -27,-16 - 974: -27,-15 - 982: -11,-1 - 983: -11,0 - 984: -11,1 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 975: -10,-2 - 976: -9,-2 - 1014: -30,-39 - 1015: -31,-39 - 1016: -32,-39 - 1017: -27,-37 - 1018: -28,-37 - 1019: -26,-37 - 1020: -25,-37 - 1021: -24,-37 - 1022: -23,-37 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - decals: - 954: -23,25 - 955: -22,25 - 956: -21,25 - 957: -20,25 - 961: 5,26 - 962: 6,26 - 963: 7,26 - 964: 8,26 - 965: 9,26 - 970: -29,-17 - 971: -28,-17 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - decals: - 979: -8,-1 - 980: -8,0 - 981: -8,1 - - node: - cleanable: True - color: '#761C0C44' - id: splatter - decals: - 797: 13.502298,-42.657906 - 798: 4.171296,-34.3466 - - node: - cleanable: True - color: '#79150050' - id: splatter - decals: - 861: 27.509422,-40.416092 - - node: - cleanable: True - color: '#9FED5812' - id: splatter - decals: - 799: 13.296297,-42.144028 - 800: 3.8275461,-36.737778 - type: DecalGrid - - version: 2 - data: - tiles: - -2,-1: - 0: 65535 - -1,-3: - 0: 65535 - -1,-1: - 0: 65535 - -1,-2: - 0: 65535 - -2,1: - 0: 65535 - -1,0: - 0: 65535 - -1,1: - 0: 65535 - -1,2: - 0: 65535 - -1,3: - 0: 65535 - 0,-3: - 0: 65535 - 0,-2: - 0: 62271 - 1: 3264 - 0,-1: - 0: 65535 - 1,-3: - 0: 65535 - 1,-2: - 0: 61441 - 1: 4094 - 1,-1: - 0: 65535 - 0,1: - 0: 65535 - 0,2: - 0: 65535 - 0,3: - 0: 65535 - 0,0: - 0: 65535 - 1,3: - 0: 65535 - 1,0: - 0: 65535 - 1,1: - 0: 65535 - 1,2: - 0: 65535 - 0,4: - 0: 65535 - -1,4: - 0: 65535 - -2,0: - 0: 65535 - -4,0: - 0: 65535 - -4,1: - 0: 65535 - -4,2: - 0: 65535 - -4,3: - 0: 65535 - -3,0: - 0: 65535 - -3,1: - 0: 65535 - -3,2: - 0: 65535 - -3,3: - 0: 65535 - -2,2: - 0: 65535 - -2,3: - 0: 65535 - 2,0: - 0: 65535 - 2,1: - 0: 65535 - 2,2: - 0: 65535 - 2,3: - 0: 65535 - 3,0: - 0: 65535 - 3,1: - 0: 65535 - 3,2: - 0: 65535 - 3,3: - 0: 65535 - -4,4: - 0: 65535 - -4,5: - 0: 65535 - -3,4: - 0: 65535 - -3,5: - 0: 65535 - -2,4: - 0: 65535 - -2,5: - 0: 65535 - -1,5: - 0: 65535 - 0,5: - 0: 65535 - 1,4: - 0: 65535 - 1,5: - 0: 65535 - 2,4: - 0: 65535 - 2,5: - 0: 65535 - 3,4: - 0: 65535 - 3,5: - 0: 65535 - 0,-4: - 0: 65535 - 1,-4: - 0: 65535 - 2,-4: - 0: 65535 - 2,-3: - 0: 65535 - 2,-2: - 0: 65535 - 2,-1: - 0: 65535 - 3,-4: - 0: 65535 - 3,-3: - 0: 65535 - 3,-2: - 0: 65535 - 3,-1: - 0: 65535 - -4,-4: - 0: 65535 - -4,-3: - 0: 65535 - -4,-2: - 0: 65535 - -4,-1: - 0: 65535 - -3,-4: - 0: 65535 - -3,-3: - 0: 65535 - -3,-2: - 0: 65535 - -3,-1: - 0: 65535 - -2,-4: - 0: 65535 - -2,-3: - 0: 65535 - -2,-2: - 0: 65535 - -1,-4: - 0: 65535 - -6,4: - 0: 65535 - -6,5: - 0: 65535 - -5,4: - 0: 65535 - -5,5: - 0: 65535 - -7,0: - 0: 65535 - -7,1: - 0: 65535 - -7,2: - 0: 65535 - -6,0: - 0: 65535 - -6,1: - 0: 65535 - -6,2: - 0: 65535 - -6,3: - 0: 65535 - -5,0: - 0: 65535 - -5,1: - 0: 65535 - -5,2: - 0: 65535 - -5,3: - 0: 65535 - -7,-4: - 0: 65535 - -7,-3: - 0: 65535 - -7,-2: - 0: 65535 - -7,-1: - 0: 65535 - -6,-4: - 0: 65535 - -6,-3: - 0: 65535 - -6,-2: - 0: 65535 - -6,-1: - 0: 65535 - -5,-4: - 0: 65535 - -5,-3: - 0: 65535 - -5,-2: - 0: 65535 - -5,-1: - 0: 65535 - -4,6: - 0: 65535 - -4,7: - 0: 65535 - -3,6: - 0: 65535 - -3,7: - 0: 65535 - -2,6: - 0: 63487 - 2: 2048 - -2,7: - 0: 65535 - -1,6: - 0: 65535 - -1,7: - 0: 65535 - 0,6: - 0: 65535 - 0,7: - 0: 65535 - 1,6: - 0: 65535 - 1,7: - 0: 65535 - 2,6: - 0: 65535 - 2,7: - 0: 65535 - 3,6: - 0: 65535 - 3,7: - 0: 65535 - -5,6: - 0: 65535 - -5,7: - 0: 65535 - -3,8: - 0: 56829 - -2,8: - 0: 65535 - -2,9: - 0: 3999 - -1,8: - 0: 65535 - -1,9: - 0: 3983 - 0,8: - 0: 65535 - 0,9: - 0: 22471 - 1,8: - 0: 22015 - -7,4: - 0: 65535 - -7,5: - 0: 65535 - -7,3: - 0: 65535 - -4,9: - 0: 240 - -4,8: - 0: 503 - -3,9: - 0: 241 - 0,10: - 0: 57309 - 0,11: - 0: 65518 - 1,9: - 0: 17652 - 1,10: - 0: 62543 - 1,11: - 0: 65535 - 2,8: - 0: 52476 - 2,9: - 0: 17660 - 2,10: - 0: 65519 - 2,11: - 0: 65535 - 3,8: - 0: 65535 - 3,9: - 0: 3839 - 3,10: - 0: 65535 - 3,11: - 0: 65535 - 4,8: - 0: 65535 - 4,9: - 0: 8191 - 4,10: - 0: 13297 - 4,11: - 0: 65407 - 5,8: - 0: 30719 - 5,9: - 0: 32631 - 5,10: - 0: 10103 - 5,11: - 0: 15 - 6,8: - 0: 30511 - 6,9: - 0: 32631 - 6,10: - 0: 10103 - 6,11: - 0: 15 - 7,8: - 0: 30511 - 7,9: - 0: 32631 - 7,10: - 0: 10103 - 7,11: - 0: 15 - 4,4: - 0: 65535 - 4,5: - 0: 65535 - 4,6: - 0: 65535 - 4,7: - 0: 65535 - 5,4: - 0: 30719 - 5,5: - 0: 65399 - 5,6: - 0: 65535 - 5,7: - 0: 30719 - 6,4: - 0: 255 - 7,4: - 0: 1 - 4,2: - 0: 65535 - 4,3: - 0: 65535 - 5,2: - 0: 65535 - 5,3: - 0: 65535 - 6,2: - 0: 62805 - 6,3: - 0: 65535 - 7,3: - 0: 4369 - 8,8: - 0: 4369 - 8,9: - 0: 4369 - 8,10: - 0: 4369 - 8,11: - 0: 1 - 0,12: - 0: 61439 - 0,13: - 0: 52430 - 0,14: - 0: 2188 - 1,12: - 0: 65535 - 1,13: - 0: 65535 - 1,14: - 0: 65535 - 1,15: - 0: 12 - 2,12: - 0: 65535 - 2,13: - 0: 65535 - 2,14: - 0: 65535 - 2,15: - 0: 255 - 3,12: - 0: 65535 - 3,13: - 0: 65535 - 3,14: - 0: 14335 - 3,15: - 0: 1 - 4,12: - 0: 65535 - 4,13: - 0: 30591 - 4,14: - 0: 19 - 5,12: - 0: 4401 - -5,9: - 0: 1783 - -8,4: - 0: 65535 - -8,5: - 0: 65535 - -8,6: - 0: 65535 - -8,7: - 0: 65535 - -7,6: - 0: 65535 - -7,7: - 0: 65535 - -6,6: - 0: 65535 - -6,7: - 0: 56831 - -8,1: - 0: 65535 - -8,2: - 0: 65535 - -8,3: - 0: 65535 - -8,-4: - 0: 65535 - -8,-3: - 0: 65535 - 4,0: - 0: 65535 - 4,1: - 0: 65535 - 5,0: - 0: 65535 - 5,1: - 0: 65535 - 6,0: - 0: 65535 - 6,1: - 0: 24575 - 7,0: - 0: 65535 - 7,1: - 0: 32767 - -8,8: - 0: 65535 - -8,9: - 0: 52991 - -7,8: - 0: 65535 - -7,9: - 0: 29687 - -6,8: - 0: 52701 - -6,9: - 0: 248 - -5,8: - 0: 65535 - 8,0: - 0: 30583 - 8,1: - 0: 13107 - 8,-4: - 0: 4096 - 8,-3: - 0: 29491 - 8,-2: - 0: 30583 - 8,-1: - 0: 29491 - 4,-4: - 0: 65535 - 4,-3: - 0: 64255 - 4,-2: - 0: 64511 - 4,-1: - 0: 65535 - 5,-4: - 0: 30591 - 5,-3: - 0: 65143 - 5,-2: - 0: 65535 - 5,-1: - 0: 65535 - 6,-4: - 0: 61679 - 6,-3: - 0: 65519 - 6,-2: - 0: 65535 - 6,-1: - 0: 65535 - 7,-4: - 0: 49171 - 7,-3: - 0: 65535 - 7,-2: - 0: 65535 - 7,-1: - 0: 65535 - 0,-8: - 0: 65535 - 0,-7: - 0: 65535 - 0,-6: - 0: 65535 - 0,-5: - 0: 65535 - 1,-8: - 0: 65535 - 1,-7: - 0: 65535 - 1,-6: - 0: 65535 - 1,-5: - 0: 65535 - 2,-8: - 0: 65535 - 2,-7: - 0: 65535 - 2,-6: - 0: 65535 - 2,-5: - 0: 65535 - 3,-8: - 0: 65535 - 3,-7: - 0: 65535 - 3,-6: - 0: 65535 - 3,-5: - 0: 65535 - -4,-8: - 0: 65535 - -4,-7: - 0: 65535 - -4,-6: - 0: 65535 - -4,-5: - 0: 65535 - -3,-8: - 0: 65535 - -3,-7: - 0: 65535 - -3,-6: - 0: 65535 - -3,-5: - 0: 65535 - -2,-8: - 0: 65535 - -2,-7: - 0: 65535 - -2,-6: - 0: 65535 - -2,-5: - 0: 65535 - -1,-8: - 0: 65535 - -1,-7: - 0: 65535 - -1,-6: - 0: 65535 - -1,-5: - 0: 65535 - -4,-10: - 0: 65484 - -4,-9: - 0: 65535 - -4,-12: - 0: 61166 - -4,-11: - 0: 52462 - -3,-12: - 0: 65535 - -3,-11: - 0: 65535 - -3,-10: - 0: 65535 - -3,-9: - 0: 65535 - -2,-12: - 0: 65535 - -2,-11: - 0: 61183 - -2,-10: - 0: 63244 - -2,-9: - 0: 65535 - -1,-12: - 0: 65535 - -1,-11: - 0: 65535 - -1,-10: - 0: 61455 - -1,-9: - 0: 65535 - 0,-12: - 0: 13107 - 0,-11: - 0: 48059 - 0,-10: - 0: 65485 - 0,-9: - 0: 65535 - 1,-10: - 0: 65535 - 1,-9: - 0: 65535 - 2,-10: - 0: 65535 - 2,-9: - 0: 65535 - 3,-10: - 0: 65535 - 3,-9: - 0: 65535 - -4,-13: - 0: 61166 - -4,-15: - 0: 52430 - -4,-14: - 0: 52428 - -3,-14: - 0: 65535 - -3,-13: - 0: 65535 - -3,-15: - 0: 65535 - -2,-13: - 0: 65535 - -2,-14: - 0: 61064 - -1,-15: - 0: 28672 - -1,-14: - 0: 65535 - -1,-13: - 0: 65535 - 0,-14: - 0: 13056 - 0,-13: - 0: 13107 - 4,-8: - 0: 65535 - 4,-7: - 0: 65535 - 4,-6: - 0: 65535 - 4,-5: - 0: 65535 - 5,-8: - 0: 13119 - 3: 52416 - 5,-7: - 0: 65535 - 5,-6: - 0: 65535 - 5,-5: - 0: 65535 - 6,-8: - 0: 56543 - 3: 8992 - 6,-7: - 0: 65535 - 6,-6: - 0: 65535 - 6,-5: - 0: 65535 - 7,-8: - 0: 65535 - 7,-7: - 0: 65535 - 7,-6: - 0: 65535 - 7,-5: - 0: 30719 - 8,-8: - 0: 65535 - 8,-7: - 0: 65535 - 8,-6: - 0: 65535 - 8,-5: - 0: 7 - 9,-8: - 0: 65535 - 9,-7: - 0: 65535 - 9,-6: - 0: 4991 - 10,-8: - 0: 4340 - 10,-7: - 0: 273 - 8,-10: - 0: 65535 - 8,-9: - 0: 65535 - 4,-10: - 0: 65535 - 4,-9: - 0: 65535 - 5,-10: - 0: 65535 - 5,-9: - 0: 65535 - 6,-10: - 0: 65535 - 6,-9: - 0: 65535 - 7,-10: - 0: 65535 - 7,-9: - 0: 65535 - -9,-4: - 0: 65535 - -9,-7: - 0: 65535 - -9,-6: - 0: 65535 - -9,-5: - 0: 65535 - -8,-7: - 0: 65535 - -8,-6: - 0: 65535 - -8,-5: - 0: 65535 - -8,-8: - 0: 65535 - -7,-8: - 0: 65535 - -7,-7: - 0: 65535 - -7,-6: - 0: 65535 - -7,-5: - 0: 65535 - -6,-8: - 0: 65535 - -6,-7: - 0: 65535 - -6,-6: - 0: 65535 - -6,-5: - 0: 65535 - -5,-8: - 0: 65535 - -5,-7: - 0: 65535 - -5,-6: - 0: 65535 - -5,-5: - 0: 65535 - -8,-10: - 0: 65535 - -8,-9: - 0: 65535 - -7,-10: - 0: 65535 - -7,-9: - 0: 65535 - -7,-11: - 0: 63248 - -6,-11: - 0: 61440 - -6,-10: - 0: 65535 - -6,-9: - 0: 65535 - -5,-11: - 0: 12288 - -5,-10: - 0: 65331 - -5,-9: - 0: 65535 - -10,8: - 0: 2286 - -9,8: - 0: 65535 - -9,9: - 0: 142 - -10,4: - 0: 65535 - -10,5: - 0: 65535 - -9,4: - 0: 65535 - -9,5: - 0: 65535 - -9,7: - 0: 65535 - -9,6: - 0: 65535 - -11,1: - 0: 65535 - -11,2: - 0: 65535 - -11,3: - 0: 49151 - -10,1: - 0: 65535 - -10,2: - 0: 65535 - -10,3: - 0: 65535 - -9,1: - 0: 65535 - -9,2: - 0: 65535 - -9,3: - 0: 65535 - -8,0: - 0: 65535 - -8,-2: - 0: 65535 - -8,-1: - 0: 65535 - 1,-12: - 0: 65152 - 1,-11: - 0: 65535 - 2,-12: - 0: 65520 - 2,-11: - 0: 65535 - 3,-12: - 0: 65296 - 3,-11: - 0: 65535 - 11,-8: - 0: 244 - 8,-11: - 0: 65523 - 9,-11: - 0: 13296 - 9,-10: - 0: 63347 - 9,-9: - 0: 63351 - 10,-11: - 0: 58608 - 10,-10: - 0: 65262 - 10,-9: - 0: 61166 - 11,-11: - 0: 58608 - 11,-10: - 0: 65262 - 11,-9: - 0: 61166 - 4,-12: - 0: 65280 - 4,-11: - 0: 65535 - 5,-12: - 0: 65280 - 5,-11: - 0: 65535 - 6,-12: - 0: 61440 - 6,-11: - 0: 65535 - 7,-11: - 0: 65535 - -12,-4: - 0: 65535 - -12,-3: - 0: 65535 - -12,-2: - 0: 65535 - -12,-1: - 0: 65535 - -11,-4: - 0: 65535 - -11,-3: - 0: 65535 - -11,-2: - 0: 65535 - -11,-1: - 0: 65535 - -10,-4: - 0: 65535 - -10,-3: - 0: 65535 - -10,-2: - 0: 65535 - -10,-1: - 0: 65535 - -9,-3: - 0: 65535 - -9,-2: - 0: 65535 - -9,-1: - 0: 65535 - -12,-8: - 0: 65516 - -12,-7: - 0: 65535 - -12,-6: - 0: 65535 - -12,-5: - 0: 65535 - -11,-8: - 0: 65535 - -11,-7: - 0: 65535 - -11,-6: - 0: 65535 - -11,-5: - 0: 65535 - -10,-8: - 0: 65535 - -10,-7: - 0: 65535 - -10,-6: - 0: 65535 - -10,-5: - 0: 65535 - -9,-8: - 0: 65535 - -8,-12: - 0: 30512 - -8,-11: - 0: 65535 - -12,4: - 0: 3618 - 3: 204 - -11,4: - 3: 17 - 0: 35754 - -11,5: - 0: 52424 - -11,6: - 0: 52428 - -11,7: - 0: 2184 - -10,6: - 0: 65535 - -10,7: - 0: 65535 - -12,0: - 0: 65535 - -12,1: - 0: 65535 - -12,2: - 0: 65535 - -12,3: - 0: 61439 - -11,0: - 0: 65535 - -10,0: - 0: 65535 - -9,0: - 0: 65535 - -12,-9: - 0: 32768 - -11,-9: - 0: 65516 - -11,-10: - 0: 51200 - -10,-10: - 0: 65531 - -10,-9: - 0: 65535 - -9,-11: - 0: 65228 - -9,-10: - 0: 65535 - -9,-9: - 0: 65535 - -9,-12: - 0: 32768 - -14,0: - 0: 16191 - 4: 192 - 5: 49152 - -14,1: - 0: 16191 - 3: 49344 - -14,2: - 0: 16191 - 6: 192 - 3: 49152 - -14,3: - 0: 49407 - -13,0: - 0: 61423 - 4: 16 - 5: 4096 - -13,1: - 0: 61423 - 3: 4112 - -13,2: - 0: 61423 - 6: 16 - 3: 4096 - -13,3: - 0: 31999 - -15,-4: - 0: 61132 - -15,-3: - 0: 61166 - -15,-2: - 0: 2254 - -14,-4: - 0: 65535 - -14,-3: - 0: 65535 - -14,-2: - 0: 65535 - -14,-1: - 0: 61448 - -13,-4: - 0: 65535 - -13,-3: - 0: 65535 - -13,-2: - 0: 65535 - -13,-1: - 0: 64751 - -16,-8: - 0: 61440 - -16,-7: - 0: 56792 - -16,-6: - 0: 56829 - -16,-5: - 0: 63709 - -15,-8: - 0: 61440 - -15,-7: - 0: 39320 - -15,-6: - 0: 6649 - -15,-5: - 0: 39057 - -14,-8: - 0: 61440 - -14,-7: - 0: 65256 - -14,-6: - 0: 61439 - -14,-5: - 0: 65535 - -13,-8: - 0: 61440 - -13,-7: - 0: 65528 - -13,-6: - 0: 65535 - -13,-5: - 0: 65535 - -18,-8: - 0: 61440 - -18,-7: - 0: 56793 - -18,-6: - 0: 56829 - -18,-5: - 0: 63965 - -17,-8: - 0: 61440 - -17,-7: - 0: 56792 - -17,-6: - 0: 56829 - -17,-5: - 0: 63709 - 12,-11: - 0: 58608 - 12,-10: - 0: 65262 - 12,-9: - 0: 61166 - 13,-11: - 0: 8752 - 13,-10: - 0: 12834 - 13,-9: - 0: 8738 - 12,-8: - 0: 244 - 13,-8: - 0: 50 - -15,0: - 0: 17484 - -15,1: - 0: 17484 - -15,2: - 0: 17484 - -15,3: - 0: 12 - -15,-1: - 0: 16384 - -14,4: - 0: 192 - -13,4: - 0: 116 - -2,-15: - 0: 1 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 235 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.554012 - - 81.084145 - - 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 - - volume: 2500 - temperature: 293.15 - moles: - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - type: GridAtmosphere - - id: Omega - type: BecomesStation - - type: OccluderTree - - type: Shuttle - - type: RadiationGridResistance - - shakeTimes: 10 - type: GravityShake - - type: GasTileOverlay - - type: SpreaderGrid - - type: GridPathfinding -- proto: AcousticGuitarInstrument - entities: - - uid: 1755 - components: - - pos: -10.386757,8.623476 - parent: 4812 - type: Transform -- proto: AdvancedMatterBinStockPart - entities: - - uid: 6200 - components: - - pos: 7.405039,-15.314831 - parent: 4812 - type: Transform - - uid: 6201 - components: - - pos: 7.701914,-15.330456 - parent: 4812 - type: Transform -- proto: AirAlarm - entities: - - uid: 4981 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-20.5 - parent: 4812 - type: Transform - - devices: - - 6621 - - 5047 - - 6553 - - 8806 - - 5025 - - 6554 - type: DeviceList - - uid: 4982 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-18.5 - parent: 4812 - type: Transform - - devices: - - 4941 - - 4875 - type: DeviceList - - uid: 6692 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-26.5 - parent: 4812 - type: Transform - - uid: 7234 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-14.5 - parent: 4812 - type: Transform - - devices: - - 4890 - - 4876 - type: DeviceList - - uid: 7236 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-28.5 - parent: 4812 - type: Transform - - ShutdownSubscribers: - - 8838 - - 8836 - type: DeviceNetwork - - devices: - - 8838 - - 8836 - type: DeviceList - - uid: 7241 - components: - - pos: -19.5,-24.5 - parent: 4812 - type: Transform - - devices: - - 6686 - - 7227 - type: DeviceList - - uid: 7249 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-27.5 - parent: 4812 - type: Transform - - uid: 7284 - components: - - pos: -3.5,27.5 - parent: 4812 - type: Transform - - devices: - - 12226 - - 1853 - - 1852 - type: DeviceList - - uid: 12171 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-15.5 - parent: 4812 - type: Transform - - devices: - - 12170 - - 12027 - - 12026 - type: DeviceList - - uid: 12173 - components: - - rot: 3.141592653589793 rad - pos: -49.5,-14.5 - parent: 4812 - type: Transform - - devices: - - 12028 - - 12025 - - 12172 - type: DeviceList - - uid: 12174 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-11.5 - parent: 4812 - type: Transform - - devices: - - 12175 - - 12029 - - 12024 - type: DeviceList - - uid: 12176 - components: - - pos: -46.5,-5.5 - parent: 4812 - type: Transform - - devices: - - 12177 - - 12032 - - 12033 - type: DeviceList - - uid: 12178 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-0.5 - parent: 4812 - type: Transform - - devices: - - 10758 - - 10757 - - 12179 - - 10752 - - 10753 - - 10754 - - 10755 - - 10756 - type: DeviceList - - uid: 12182 - components: - - pos: -42.5,13.5 - parent: 4812 - type: Transform - - devices: - - 12181 - type: DeviceList - - uid: 12183 - components: - - pos: -28.5,6.5 - parent: 4812 - type: Transform - - devices: - - 12184 - - 12035 - - 12036 - - 8690 - - 10752 - - 10753 - - 10754 - - 10755 - - 10756 - type: DeviceList - - uid: 12186 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-2.5 - parent: 4812 - type: Transform - - devices: - - 8691 - - 8690 - - 12189 - - 12188 - - 12185 - - 3708 - - 8787 - type: DeviceList - - uid: 12190 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-6.5 - parent: 4812 - type: Transform - - devices: - - 12192 - - 8691 - - 12034 - - 11962 - type: DeviceList - - uid: 12193 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,0.5 - parent: 4812 - type: Transform - - devices: - - 6494 - - 6495 - - 12195 - - 8156 - - 8157 - - 12041 - - 12042 - - 12188 - - 12189 - - 12197 - - 12196 - type: DeviceList - - uid: 12198 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,0.5 - parent: 4812 - type: Transform - - devices: - - 12200 - - 12196 - - 12197 - - 1685 - - 1686 - type: DeviceList - - uid: 12202 - components: - - pos: -24.5,9.5 - parent: 4812 - type: Transform - - devices: - - 12201 - - 8156 - - 8157 - - 7784 - - 8154 - - 8155 - - 12205 - - 12204 - - 12039 - - 12040 - type: DeviceList - - uid: 12206 - components: - - pos: -20.5,13.5 - parent: 4812 - type: Transform - - devices: - - 12208 - - 12204 - - 12205 - - 8562 - - 8563 - type: DeviceList - - uid: 12209 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,13.5 - parent: 4812 - type: Transform - - devices: - - 12211 - - 12212 - - 7782 - - 7783 - - 7911 - - 7910 - - 7909 - - 7914 - - 7913 - - 7912 - - 7874 - - 7872 - - 7871 - - 7873 - - 7887 - - 7886 - type: DeviceList - - uid: 12213 - components: - - pos: -37.5,13.5 - parent: 4812 - type: Transform - - devices: - - 7905 - - 7907 - - 12214 - type: DeviceList - - uid: 12215 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,15.5 - parent: 4812 - type: Transform - - devices: - - 12216 - - 12212 - - 7906 - - 7908 - type: DeviceList - - uid: 12219 - components: - - pos: -31.5,33.5 - parent: 4812 - type: Transform - - devices: - - 12218 - - 7858 - - 7856 - type: DeviceList - - uid: 12220 - components: - - pos: -18.5,21.5 - parent: 4812 - type: Transform - - devices: - - 8155 - - 8154 - - 2693 - - 2695 - - 12222 - - 8307 - - 8306 - type: DeviceList - - uid: 12223 - components: - - pos: -5.5,21.5 - parent: 4812 - type: Transform - - devices: - - 2693 - - 2695 - - 2782 - - 2783 - - 12225 - - 1817 - - 1816 - type: DeviceList - - uid: 12228 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,26.5 - parent: 4812 - type: Transform - - devices: - - 12230 - - 2231 - - 1928 - - 2474 - - 2441 - type: DeviceList - - uid: 12232 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,26.5 - parent: 4812 - type: Transform - - devices: - - 12231 - - 2473 - - 2472 - - 2442 - - 2475 - type: DeviceList - - uid: 12234 - components: - - pos: 2.5,35.5 - parent: 4812 - type: Transform - - devices: - - 12237 - - 2473 - - 2472 - - 2231 - - 1928 - - 2443 - - 2444 - - 2447 - - 2448 - - 2446 - - 2445 - type: DeviceList - - uid: 12240 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,24.5 - parent: 4812 - type: Transform - - devices: - - 12242 - - 1927 - - 2074 - - 2071 - - 2072 - - 2073 - type: DeviceList - - uid: 12245 - components: - - pos: 11.5,21.5 - parent: 4812 - type: Transform - - devices: - - 12243 - - 2787 - - 2786 - - 2476 - - 963 - - 2783 - - 2782 - - 1770 - - 3782 - type: DeviceList - - uid: 12249 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,9.5 - parent: 4812 - type: Transform - - devices: - - 4122 - - 4117 - - 12251 - - 2852 - - 2853 - - 2787 - - 2786 - - 4439 - - 4440 - type: DeviceList - - uid: 12252 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,21.5 - parent: 4812 - type: Transform - - devices: - - 3257 - - 12254 - - 3021 - - 3024 - type: DeviceList - - uid: 12256 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,23.5 - parent: 4812 - type: Transform - - devices: - - 3016 - - 3020 - - 3017 - - 3019 - - 12257 - type: DeviceList - - uid: 12258 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,31.5 - parent: 4812 - type: Transform - - devices: - - 12259 - - 3001 - - 2983 - type: DeviceList - - uid: 12260 - components: - - pos: 9.5,47.5 - parent: 4812 - type: Transform - - devices: - - 3814 - - 12261 - - 3944 - type: DeviceList - - uid: 12262 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,45.5 - parent: 4812 - type: Transform - - devices: - - 3816 - - 12263 - - 3841 - type: DeviceList - - uid: 12265 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,44.5 - parent: 4812 - type: Transform - - devices: - - 3813 - - 12264 - - 3835 - type: DeviceList - - uid: 12266 - components: - - pos: 9.5,51.5 - parent: 4812 - type: Transform - - devices: - - 3815 - - 3838 - - 12267 - type: DeviceList - - uid: 12272 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-8.5 - parent: 4812 - type: Transform - - devices: - - 4426 - - 4423 - - 12274 - - 4122 - - 4117 - - 4442 - - 4441 - type: DeviceList - - uid: 12275 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-4.5 - parent: 4812 - type: Transform - - devices: - - 12277 - - 4424 - - 4425 - - 4380 - - 4381 - type: DeviceList - - uid: 12278 - components: - - pos: 25.5,2.5 - parent: 4812 - type: Transform - - devices: - - 12279 - - 4425 - - 4424 - - 4444 - - 4443 - type: DeviceList - - uid: 12282 - components: - - pos: 23.5,6.5 - parent: 4812 - type: Transform - - devices: - - 4226 - - 12281 - - 4231 - type: DeviceList - - uid: 12283 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,0.5 - parent: 4812 - type: Transform - - devices: - - 4205 - - 12284 - - 4203 - type: DeviceList - - uid: 12285 - components: - - pos: 10.5,-10.5 - parent: 4812 - type: Transform - - devices: - - 12287 - - 4423 - - 4426 - - 6415 - - 6414 - - 6417 - - 6416 - type: DeviceList - - uid: 12289 - components: - - pos: 2.5,-10.5 - parent: 4812 - type: Transform - - devices: - - 4645 - - 4644 - - 6500 - - 6499 - - 4646 - - 4647 - - 5792 - - 6414 - - 6415 - - 12288 - - 6420 - - 6419 - type: DeviceList - - uid: 12293 - components: - - pos: -19.5,-10.5 - parent: 4812 - type: Transform - - devices: - - 6497 - - 6496 - - 6500 - - 6499 - - 12295 - - 12038 - - 12037 - type: DeviceList - - uid: 12296 - components: - - pos: -23.5,-5.5 - parent: 4812 - type: Transform - - devices: - - 1511 - - 12297 - - 1512 - type: DeviceList - - uid: 12299 - components: - - pos: -11.5,-4.5 - parent: 4812 - type: Transform - - devices: - - 12298 - - 849 - - 858 - - 857 - - 848 - type: DeviceList - - uid: 12302 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,2.5 - parent: 4812 - type: Transform - - devices: - - 931 - - 932 - - 12300 - - 782 - - 783 - - 784 - - 349 - - 351 - - 361 - - 354 - - 353 - - 352 - - 350 - - 818 - - 815 - - 817 - - 816 - - 864 - type: DeviceList - - uid: 12304 - components: - - pos: -7.5,10.5 - parent: 4812 - type: Transform - - devices: - - 877 - - 885 - - 12303 - type: DeviceList - - uid: 12307 - components: - - pos: 6.5,10.5 - parent: 4812 - type: Transform - - devices: - - 847 - - 846 - - 12306 - type: DeviceList - - uid: 12308 - components: - - pos: 4.5,1.5 - parent: 4812 - type: Transform - - devices: - - 12309 - - 782 - - 783 - - 784 - - 835 - - 814 - type: DeviceList - - uid: 12311 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,14.5 - parent: 4812 - type: Transform - - devices: - - 12313 - - 1940 - - 1939 - - 1938 - - 710 - - 711 - type: DeviceList - - uid: 12316 - components: - - pos: -4.5,-20.5 - parent: 4812 - type: Transform - - devices: - - 5308 - - 4644 - - 4645 - - 4646 - - 4647 - - 5791 - - 5793 - - 12315 - - 6687 - - 6461 - - 8783 - - 8803 - - 8779 - - 8778 - - 8711 - - 8591 - - 8758 - - 8770 - - 5028 - - 328 - - 3582 - - 2759 - type: DeviceList - - uid: 12319 - components: - - pos: -0.5,-33.5 - parent: 4812 - type: Transform - - devices: - - 12318 - - 5071 - - 5072 - - 6455 - - 3781 - - 8783 - - 8803 - - 8779 - - 8778 - - 8711 - - 8591 - - 8758 - - 8770 - type: DeviceList - - uid: 12322 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-39.5 - parent: 4812 - type: Transform - - devices: - - 12321 - - 5072 - - 5071 - - 5223 - - 5222 - - 5224 - - 5225 - type: DeviceList - - uid: 12325 - components: - - pos: -16.5,-31.5 - parent: 4812 - type: Transform - - devices: - - 6842 - - 6839 - - 12326 - type: DeviceList - - uid: 12327 - components: - - pos: -23.5,-34.5 - parent: 4812 - type: Transform - - devices: - - 6841 - - 6840 - - 12328 - type: DeviceList - - uid: 12330 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-29.5 - parent: 4812 - type: Transform - - uid: 12341 - components: - - pos: -11.5,-13.5 - parent: 4812 - type: Transform - - devices: - - 6585 - - 6584 - - 12343 - - 7380 - - 7382 - type: DeviceList - - uid: 12344 - components: - - pos: -29.5,-13.5 - parent: 4812 - type: Transform - - devices: - - 7088 - - 7087 - - 12345 - type: DeviceList - - uid: 12346 - components: - - pos: 6.5,-13.5 - parent: 4812 - type: Transform - - devices: - - 5700 - - 5697 - - 12347 - type: DeviceList - - uid: 12350 - components: - - pos: 3.5,-22.5 - parent: 4812 - type: Transform - - devices: - - 5699 - - 5698 - - 12349 - type: DeviceList - - uid: 12352 - components: - - pos: 15.5,-22.5 - parent: 4812 - type: Transform - - devices: - - 5715 - - 5716 - - 12351 - type: DeviceList - - uid: 12353 - components: - - pos: 11.5,-19.5 - parent: 4812 - type: Transform - - devices: - - 5600 - - 5599 - - 12355 - - 5718 - - 5719 - type: DeviceList - - uid: 12356 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-30.5 - parent: 4812 - type: Transform - - devices: - - 12357 - type: DeviceList - - uid: 12358 - components: - - pos: 29.5,-21.5 - parent: 4812 - type: Transform - - devices: - - 5765 - - 5763 - - 12359 - type: DeviceList - - uid: 12361 - components: - - pos: 31.5,-22.5 - parent: 4812 - type: Transform - - devices: - - 5766 - - 5764 - - 12360 - type: DeviceList - - uid: 12362 - components: - - pos: -36.5,-32.5 - parent: 4812 - type: Transform - - devices: - - 12363 - - 9007 - - 8991 - type: DeviceList -- proto: AirAlarmElectronics - entities: - - uid: 3426 - components: - - pos: 22.462652,3.671153 - parent: 4812 - type: Transform - - uid: 3443 - components: - - pos: 22.462652,3.671153 - parent: 4812 - type: Transform - - uid: 10719 - components: - - pos: -30.29477,5.0635805 - parent: 4812 - type: Transform - - uid: 10720 - components: - - pos: -30.216644,4.9385805 - parent: 4812 - type: Transform -- proto: AirCanister - entities: - - uid: 3842 - components: - - pos: 15.5,44.5 - parent: 4812 - type: Transform - - uid: 9041 - components: - - pos: -34.5,-37.5 - parent: 4812 - type: Transform - - uid: 9671 - components: - - pos: -31.5,4.5 - parent: 4812 - type: Transform - - uid: 9672 - components: - - pos: -31.5,5.5 - parent: 4812 - type: Transform - - uid: 12398 - components: - - pos: -34.5,-3.5 - parent: 4812 - type: Transform - - uid: 12399 - components: - - pos: -34.5,-2.5 - parent: 4812 - type: Transform -- proto: Airlock - entities: - - uid: 1531 - components: - - pos: -18.5,0.5 - parent: 4812 - type: Transform - - uid: 1534 - components: - - pos: -18.5,3.5 - parent: 4812 - type: Transform - - uid: 4116 - components: - - pos: 13.5,7.5 - parent: 4812 - type: Transform - - uid: 6694 - components: - - pos: -12.5,-34.5 - parent: 4812 - type: Transform - - uid: 7025 - components: - - pos: -26.5,-34.5 - parent: 4812 - type: Transform -- proto: AirlockArmoryGlassLocked - entities: - - uid: 7800 - components: - - pos: -34.5,18.5 - parent: 4812 - type: Transform - - uid: 7801 - components: - - pos: -32.5,17.5 - parent: 4812 - type: Transform - - uid: 7802 - components: - - pos: -34.5,13.5 - parent: 4812 - type: Transform -- proto: AirlockAtmosphericsGlassLocked - entities: - - uid: 3444 - components: - - pos: -33.5,0.5 - parent: 4812 - type: Transform -- proto: AirlockAtmosphericsLocked - entities: - - uid: 8862 - components: - - pos: -32.5,-36.5 - parent: 4812 - type: Transform - - uid: 9563 - components: - - pos: -39.5,-0.5 - parent: 4812 - type: Transform - - uid: 9566 - components: - - pos: -35.5,2.5 - parent: 4812 - type: Transform -- proto: AirlockBarLocked - entities: - - uid: 325 - components: - - pos: 4.5,7.5 - parent: 4812 - type: Transform -- proto: AirlockBrigGlassLocked - entities: - - uid: 906 - components: - - pos: -17.5,18.5 - parent: 4812 - type: Transform - - uid: 7788 - components: - - pos: -24.5,13.5 - parent: 4812 - type: Transform - - uid: 7789 - components: - - pos: -24.5,14.5 - parent: 4812 - type: Transform - - uid: 7790 - components: - - pos: -27.5,13.5 - parent: 4812 - type: Transform - - uid: 7791 - components: - - pos: -27.5,14.5 - parent: 4812 - type: Transform -- proto: AirlockCaptainGlassLocked - entities: - - uid: 2417 - components: - - pos: -9.5,23.5 - parent: 4812 - type: Transform -- proto: AirlockCaptainLocked - entities: - - uid: 2419 - components: - - pos: -11.5,26.5 - parent: 4812 - type: Transform - - uid: 2463 - components: - - pos: -14.5,28.5 - parent: 4812 - type: Transform -- proto: AirlockCargoGlassLocked - entities: - - uid: 2858 - components: - - pos: 19.5,16.5 - parent: 4812 - type: Transform - - uid: 2859 - components: - - pos: 16.5,22.5 - parent: 4812 - type: Transform - - uid: 2860 - components: - - pos: 15.5,22.5 - parent: 4812 - type: Transform - - uid: 4427 - components: - - pos: 26.5,-7.5 - parent: 4812 - type: Transform - - uid: 4428 - components: - - pos: 30.5,-6.5 - parent: 4812 - type: Transform -- proto: AirlockChapelLocked - entities: - - uid: 329 - components: - - name: Chaplain's Room - type: MetaData - - pos: -25.5,-36.5 - parent: 4812 - type: Transform - - uid: 6792 - components: - - pos: -20.5,-36.5 - parent: 4812 - type: Transform - - uid: 6793 - components: - - pos: -21.5,-34.5 - parent: 4812 - type: Transform -- proto: AirlockChemistryLocked - entities: - - uid: 6617 - components: - - pos: -9.5,-19.5 - parent: 4812 - type: Transform -- proto: AirlockChiefEngineerGlassLocked - entities: - - uid: 9887 - components: - - pos: -49.5,-10.5 - parent: 4812 - type: Transform -- proto: AirlockChiefMedicalOfficerGlassLocked - entities: - - uid: 7434 - components: - - pos: -25.5,-24.5 - parent: 4812 - type: Transform -- proto: AirlockCommandGlassLocked - entities: - - uid: 1855 - components: - - pos: 1.5,29.5 - parent: 4812 - type: Transform - - uid: 2449 - components: - - pos: -8.5,21.5 - parent: 4812 - type: Transform - - uid: 2450 - components: - - pos: -7.5,21.5 - parent: 4812 - type: Transform - - uid: 2451 - components: - - pos: 2.5,21.5 - parent: 4812 - type: Transform - - uid: 2452 - components: - - pos: 3.5,21.5 - parent: 4812 - type: Transform - - uid: 2454 - components: - - pos: 2.5,31.5 - parent: 4812 - type: Transform - - uid: 2455 - components: - - pos: 3.5,31.5 - parent: 4812 - type: Transform - - uid: 2456 - components: - - name: AI Sat - type: MetaData - - pos: 4.5,32.5 - parent: 4812 - type: Transform - - uid: 2458 - components: - - pos: -7.5,31.5 - parent: 4812 - type: Transform - - uid: 2459 - components: - - pos: -8.5,31.5 - parent: 4812 - type: Transform - - uid: 2643 - components: - - pos: -6.5,29.5 - parent: 4812 - type: Transform -- proto: AirlockCommandLocked - entities: - - uid: 5174 - components: - - pos: -24.5,23.5 - parent: 4812 - type: Transform - - uid: 11928 - components: - - pos: -13.5,18.5 - parent: 4812 - type: Transform -- proto: AirlockDetectiveLocked - entities: - - uid: 5358 - components: - - pos: 19.5,-13.5 - parent: 4812 - type: Transform - - uid: 5359 - components: - - pos: 17.5,-17.5 - parent: 4812 - type: Transform -- proto: AirlockEngineeringGlassLocked - entities: - - uid: 9565 - components: - - pos: -43.5,-4.5 - parent: 4812 - type: Transform - - uid: 9662 - components: - - pos: -33.5,-4.5 - parent: 4812 - type: Transform - - uid: 9892 - components: - - pos: -43.5,-12.5 - parent: 4812 - type: Transform - - uid: 9894 - components: - - pos: -40.5,-9.5 - parent: 4812 - type: Transform -- proto: AirlockEngineeringLocked - entities: - - uid: 901 - components: - - pos: -14.5,9.5 - parent: 4812 - type: Transform - - uid: 3726 - components: - - pos: 24.5,2.5 - parent: 4812 - type: Transform - - uid: 4370 - components: - - pos: 19.5,0.5 - parent: 4812 - type: Transform - - uid: 4371 - components: - - pos: 18.5,3.5 - parent: 4812 - type: Transform - - uid: 5912 - components: - - pos: 15.5,-32.5 - parent: 4812 - type: Transform - - uid: 6885 - components: - - pos: -9.5,-32.5 - parent: 4812 - type: Transform - - uid: 7956 - components: - - pos: -35.5,7.5 - parent: 4812 - type: Transform - - uid: 9564 - components: - - pos: -39.5,-4.5 - parent: 4812 - type: Transform - - uid: 9663 - components: - - pos: -34.5,-8.5 - parent: 4812 - type: Transform - - uid: 9664 - components: - - pos: -37.5,-8.5 - parent: 4812 - type: Transform - - uid: 9888 - components: - - pos: -46.5,-12.5 - parent: 4812 - type: Transform - - uid: 9958 - components: - - pos: -46.5,-20.5 - parent: 4812 - type: Transform - - uid: 10165 - components: - - pos: -51.5,-23.5 - parent: 4812 - type: Transform - - uid: 11386 - components: - - pos: 33.5,-37.5 - parent: 4812 - type: Transform -- proto: AirlockExternalGlass - entities: - - uid: 3761 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-43.5 - parent: 4812 - type: Transform - - uid: 3763 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-43.5 - parent: 4812 - type: Transform - - uid: 3764 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-50.5 - parent: 4812 - type: Transform - - uid: 3765 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-50.5 - parent: 4812 - type: Transform - - uid: 3777 - components: - - pos: 32.5,-5.5 - parent: 4812 - type: Transform - - uid: 3778 - components: - - pos: 32.5,-7.5 - parent: 4812 - type: Transform - - uid: 3779 - components: - - pos: 32.5,0.5 - parent: 4812 - type: Transform - - uid: 3780 - components: - - pos: 32.5,2.5 - parent: 4812 - type: Transform - - uid: 9614 - components: - - pos: -41.5,-27.5 - parent: 4812 - type: Transform - - uid: 9651 - components: - - pos: -11.5,-56.5 - parent: 4812 - type: Transform -- proto: AirlockExternalGlassAtmosphericsLocked - entities: - - uid: 6362 - components: - - pos: -47.5,-3.5 - parent: 4812 - type: Transform - - uid: 6363 - components: - - pos: -50.5,-4.5 - parent: 4812 - type: Transform -- proto: AirlockExternalGlassCargoLocked - entities: - - uid: 2919 - components: - - pos: 25.5,14.5 - parent: 4812 - type: Transform - - uid: 2920 - components: - - pos: 28.5,14.5 - parent: 4812 - type: Transform - - uid: 3040 - components: - - pos: 21.5,27.5 - parent: 4812 - type: Transform - - uid: 3041 - components: - - pos: 21.5,25.5 - parent: 4812 - type: Transform -- proto: AirlockExternalGlassLocked - entities: - - uid: 10406 - components: - - pos: -56.5,-22.5 - parent: 4812 - type: Transform - - uid: 11139 - components: - - pos: 38.5,-36.5 - parent: 4812 - type: Transform - - uid: 11141 - components: - - pos: 35.5,-36.5 - parent: 4812 - type: Transform -- proto: AirlockExternalGlassShuttleArrivals - entities: - - uid: 3760 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-50.5 - parent: 4812 - type: Transform - - uid: 3762 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-43.5 - parent: 4812 - type: Transform -- proto: AirlockExternalGlassShuttleLocked - entities: - - uid: 3190 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,27.5 - parent: 4812 - type: Transform - - uid: 3191 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,25.5 - parent: 4812 - type: Transform - - uid: 4134 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-5.5 - parent: 4812 - type: Transform - - uid: 4135 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-7.5 - parent: 4812 - type: Transform - - uid: 4136 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,0.5 - parent: 4812 - type: Transform - - uid: 4137 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,2.5 - parent: 4812 - type: Transform - - uid: 4736 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-43.5 - parent: 4812 - type: Transform - - uid: 4737 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-50.5 - parent: 4812 - type: Transform - - uid: 9656 - components: - - pos: -10.5,-59.5 - parent: 4812 - type: Transform - - uid: 12107 - components: - - pos: -11.5,-59.5 - parent: 4812 - type: Transform -- proto: AirlockExternalLocked - entities: - - uid: 2737 - components: - - pos: 12.5,31.5 - parent: 4812 - type: Transform - - uid: 2814 - components: - - pos: 12.5,33.5 - parent: 4812 - type: Transform - - uid: 3349 - components: - - pos: 21.5,10.5 - parent: 4812 - type: Transform - - uid: 3350 - components: - - pos: 19.5,10.5 - parent: 4812 - type: Transform - - uid: 3686 - components: - - pos: 3.5,44.5 - parent: 4812 - type: Transform - - uid: 3687 - components: - - pos: 4.5,45.5 - parent: 4812 - type: Transform - - uid: 10405 - components: - - pos: -54.5,-22.5 - parent: 4812 - type: Transform -- proto: AirlockFreezer - entities: - - uid: 3119 - components: - - pos: 18.5,35.5 - parent: 4812 - type: Transform -- proto: AirlockFreezerKitchenHydroLocked - entities: - - uid: 716 - components: - - pos: 4.5,-4.5 - parent: 4812 - type: Transform -- proto: AirlockGlass - entities: - - uid: 333 - components: - - pos: -3.5,15.5 - parent: 4812 - type: Transform - - uid: 334 - components: - - pos: -2.5,15.5 - parent: 4812 - type: Transform - - uid: 335 - components: - - pos: -1.5,15.5 - parent: 4812 - type: Transform - - uid: 905 - components: - - pos: -21.5,16.5 - parent: 4812 - type: Transform - - uid: 1079 - components: - - pos: -24.5,1.5 - parent: 4812 - type: Transform - - uid: 1080 - components: - - pos: -24.5,2.5 - parent: 4812 - type: Transform - - uid: 1081 - components: - - pos: -21.5,9.5 - parent: 4812 - type: Transform - - uid: 1082 - components: - - pos: -21.5,10.5 - parent: 4812 - type: Transform - - uid: 1098 - components: - - pos: -2.5,-9.5 - parent: 4812 - type: Transform - - uid: 4378 - components: - - pos: 14.5,-3.5 - parent: 4812 - type: Transform - - uid: 4379 - components: - - pos: 14.5,-2.5 - parent: 4812 - type: Transform - - uid: 4382 - components: - - pos: 26.5,-3.5 - parent: 4812 - type: Transform - - uid: 4383 - components: - - pos: 26.5,-2.5 - parent: 4812 - type: Transform - - uid: 4384 - components: - - pos: 26.5,-1.5 - parent: 4812 - type: Transform - - uid: 4714 - components: - - pos: 0.5,-33.5 - parent: 4812 - type: Transform - - uid: 4997 - components: - - pos: -1.5,-9.5 - parent: 4812 - type: Transform - - uid: 4998 - components: - - pos: -3.5,-9.5 - parent: 4812 - type: Transform - - uid: 5274 - components: - - pos: -6.5,-33.5 - parent: 4812 - type: Transform - - uid: 5275 - components: - - pos: -5.5,-33.5 - parent: 4812 - type: Transform - - uid: 5276 - components: - - pos: 1.5,-33.5 - parent: 4812 - type: Transform - - uid: 6673 - components: - - pos: -25.5,-13.5 - parent: 4812 - type: Transform - - uid: 6674 - components: - - pos: -24.5,-13.5 - parent: 4812 - type: Transform - - uid: 7349 - components: - - pos: -1.5,12.5 - parent: 4812 - type: Transform - - uid: 7386 - components: - - pos: -3.5,12.5 - parent: 4812 - type: Transform - - uid: 7392 - components: - - pos: -2.5,12.5 - parent: 4812 - type: Transform - - uid: 8158 - components: - - pos: -30.5,28.5 - parent: 4812 - type: Transform - - uid: 8159 - components: - - pos: -26.5,28.5 - parent: 4812 - type: Transform - - uid: 9660 - components: - - pos: -28.5,-2.5 - parent: 4812 - type: Transform - - uid: 9661 - components: - - pos: -28.5,-1.5 - parent: 4812 - type: Transform -- proto: AirlockHeadOfPersonnelGlassLocked - entities: - - uid: 723 - components: - - pos: 6.5,18.5 - parent: 4812 - type: Transform - - uid: 2460 - components: - - pos: 4.5,25.5 - parent: 4812 - type: Transform -- proto: AirlockHeadOfPersonnelLocked - entities: - - uid: 2461 - components: - - pos: 6.5,27.5 - parent: 4812 - type: Transform - - uid: 2462 - components: - - pos: 9.5,28.5 - parent: 4812 - type: Transform -- proto: AirlockHeadOfSecurityGlassLocked - entities: - - uid: 7935 - components: - - pos: -22.5,26.5 - parent: 4812 - type: Transform -- proto: AirlockHeadOfSecurityLocked - entities: - - uid: 7934 - components: - - pos: -18.5,25.5 - parent: 4812 - type: Transform - - uid: 7936 - components: - - pos: -22.5,21.5 - parent: 4812 - type: Transform - - uid: 8242 - components: - - pos: -20.5,27.5 - parent: 4812 - type: Transform -- proto: AirlockHydroGlassLocked - entities: - - uid: 307 - components: - - pos: -10.5,-10.5 - parent: 4812 - type: Transform - - uid: 308 - components: - - pos: -17.5,-10.5 - parent: 4812 - type: Transform -- proto: AirlockJanitorLocked - entities: - - uid: 720 - components: - - pos: -22.5,-10.5 - parent: 4812 - type: Transform -- proto: AirlockKitchenGlassLocked - entities: - - uid: 715 - components: - - pos: 3.5,1.5 - parent: 4812 - type: Transform -- proto: AirlockMaintAtmoLocked - entities: - - uid: 7949 - components: - - pos: -39.5,6.5 - parent: 4812 - type: Transform - - uid: 8686 - components: - - pos: -36.5,0.5 - parent: 4812 - type: Transform -- proto: AirlockMaintBarLocked - entities: - - uid: 324 - components: - - pos: 8.5,7.5 - parent: 4812 - type: Transform -- proto: AirlockMaintCaptainLocked - entities: - - uid: 2418 - components: - - pos: -16.5,24.5 - parent: 4812 - type: Transform -- proto: AirlockMaintCargoLocked - entities: - - uid: 2741 - components: - - pos: 13.5,24.5 - parent: 4812 - type: Transform -- proto: AirlockMaintChapelLocked - entities: - - uid: 6790 - components: - - pos: -21.5,-31.5 - parent: 4812 - type: Transform - - uid: 6791 - components: - - pos: -18.5,-31.5 - parent: 4812 - type: Transform -- proto: AirlockMaintCommandLocked - entities: - - uid: 7932 - components: - - pos: -17.5,21.5 - parent: 4812 - type: Transform -- proto: AirlockMaintEngiLocked - entities: - - uid: 8683 - components: - - pos: -30.5,-10.5 - parent: 4812 - type: Transform - - uid: 8684 - components: - - pos: -36.5,-10.5 - parent: 4812 - type: Transform - - uid: 8685 - components: - - pos: -36.5,-6.5 - parent: 4812 - type: Transform - - uid: 9830 - components: - - pos: -44.5,-15.5 - parent: 4812 - type: Transform -- proto: AirlockMaintGlassLocked - entities: - - uid: 1935 - components: - - pos: 16.5,-19.5 - parent: 4812 - type: Transform - - uid: 1936 - components: - - pos: 18.5,-22.5 - parent: 4812 - type: Transform -- proto: AirlockMaintHydroLocked - entities: - - uid: 309 - components: - - pos: -10.5,-4.5 - parent: 4812 - type: Transform -- proto: AirlockMaintJanitorLocked - entities: - - uid: 719 - components: - - pos: -21.5,-5.5 - parent: 4812 - type: Transform -- proto: AirlockMaintKitchenLocked - entities: - - uid: 717 - components: - - pos: 8.5,-1.5 - parent: 4812 - type: Transform - - uid: 718 - components: - - pos: 8.5,-6.5 - parent: 4812 - type: Transform -- proto: AirlockMaintLocked - entities: - - uid: 336 - components: - - pos: 1.5,-8.5 - parent: 4812 - type: Transform - - uid: 337 - components: - - pos: -6.5,-3.5 - parent: 4812 - type: Transform - - uid: 338 - components: - - pos: 4.5,2.5 - parent: 4812 - type: Transform - - uid: 339 - components: - - pos: -5.5,13.5 - parent: 4812 - type: Transform - - uid: 340 - components: - - pos: 0.5,14.5 - parent: 4812 - type: Transform - - uid: 341 - components: - - pos: -15.5,10.5 - parent: 4812 - type: Transform - - uid: 342 - components: - - pos: -23.5,-4.5 - parent: 4812 - type: Transform - - uid: 343 - components: - - pos: 8.5,-10.5 - parent: 4812 - type: Transform - - uid: 344 - components: - - pos: 10.5,3.5 - parent: 4812 - type: Transform - - uid: 1252 - components: - - pos: -16.5,2.5 - parent: 4812 - type: Transform - - uid: 2882 - components: - - pos: 12.5,21.5 - parent: 4812 - type: Transform - - uid: 4372 - components: - - pos: 14.5,3.5 - parent: 4812 - type: Transform - - uid: 4374 - components: - - pos: 13.5,10.5 - parent: 4812 - type: Transform - - uid: 4375 - components: - - pos: 23.5,0.5 - parent: 4812 - type: Transform - - uid: 4376 - components: - - pos: 22.5,-7.5 - parent: 4812 - type: Transform - - uid: 4377 - components: - - pos: 14.5,-7.5 - parent: 4812 - type: Transform - - uid: 5392 - components: - - pos: 12.5,-13.5 - parent: 4812 - type: Transform - - uid: 5399 - components: - - pos: 18.5,-27.5 - parent: 4812 - type: Transform - - uid: 5838 - components: - - pos: 3.5,-30.5 - parent: 4812 - type: Transform - - uid: 6982 - components: - - pos: -10.5,-33.5 - parent: 4812 - type: Transform - - uid: 7054 - components: - - pos: -28.5,-21.5 - parent: 4812 - type: Transform - - uid: 7954 - components: - - pos: -28.5,8.5 - parent: 4812 - type: Transform - - uid: 8681 - components: - - pos: -28.5,-11.5 - parent: 4812 - type: Transform - - uid: 8848 - components: - - pos: -33.5,-31.5 - parent: 4812 - type: Transform - - uid: 8861 - components: - - pos: -29.5,-26.5 - parent: 4812 - type: Transform - - uid: 8866 - components: - - pos: -30.5,-34.5 - parent: 4812 - type: Transform - - uid: 8867 - components: - - pos: -28.5,-39.5 - parent: 4812 - type: Transform - - uid: 10157 - components: - - pos: -49.5,-22.5 - parent: 4812 - type: Transform - - uid: 10487 - components: - - pos: -34.5,-26.5 - parent: 4812 - type: Transform - - uid: 11300 - components: - - pos: 19.5,-35.5 - parent: 4812 - type: Transform - - uid: 11326 - components: - - pos: 25.5,-34.5 - parent: 4812 - type: Transform - - uid: 11350 - components: - - pos: 34.5,-34.5 - parent: 4812 - type: Transform - - uid: 11434 - components: - - pos: 31.5,-35.5 - parent: 4812 - type: Transform - - uid: 11676 - components: - - pos: 25.5,-37.5 - parent: 4812 - type: Transform - - uid: 11802 - components: - - pos: -15.5,-2.5 - parent: 4812 - type: Transform -- proto: AirlockMaintMedLocked - entities: - - uid: 6788 - components: - - pos: -27.5,-23.5 - parent: 4812 - type: Transform - - uid: 7336 - components: - - pos: -10.5,-29.5 - parent: 4812 - type: Transform -- proto: AirlockMaintRnDLocked - entities: - - uid: 5497 - components: - - pos: 11.5,-15.5 - parent: 4812 - type: Transform - - uid: 5498 - components: - - pos: 12.5,-29.5 - parent: 4812 - type: Transform - - uid: 5499 - components: - - pos: 8.5,-29.5 - parent: 4812 - type: Transform - - uid: 5787 - components: - - pos: 33.5,-29.5 - parent: 4812 - type: Transform -- proto: AirlockMaintSecLocked - entities: - - uid: 7806 - components: - - pos: -31.5,9.5 - parent: 4812 - type: Transform -- proto: AirlockMaintTheatreLocked - entities: - - uid: 714 - components: - - pos: -8.5,10.5 - parent: 4812 - type: Transform -- proto: AirlockMedicalGlassLocked - entities: - - uid: 1933 - components: - - pos: -7.5,-22.5 - parent: 4812 - type: Transform - - uid: 1934 - components: - - pos: -7.5,-21.5 - parent: 4812 - type: Transform - - uid: 7411 - components: - - pos: -9.5,-24.5 - parent: 4812 - type: Transform - - uid: 7412 - components: - - pos: -18.5,-27.5 - parent: 4812 - type: Transform - - uid: 7413 - components: - - pos: -15.5,-19.5 - parent: 4812 - type: Transform - - uid: 7433 - components: - - pos: -23.5,-23.5 - parent: 4812 - type: Transform -- proto: AirlockMedicalLocked - entities: - - uid: 7410 - components: - - pos: -11.5,-26.5 - parent: 4812 - type: Transform - - uid: 7414 - components: - - pos: -17.5,-17.5 - parent: 4812 - type: Transform - - uid: 7415 - components: - - pos: -19.5,-19.5 - parent: 4812 - type: Transform - - uid: 7416 - components: - - pos: -19.5,-13.5 - parent: 4812 - type: Transform -- proto: AirlockQuartermasterGlassLocked - entities: - - uid: 3015 - components: - - pos: 16.5,33.5 - parent: 4812 - type: Transform -- proto: AirlockQuartermasterLocked - entities: - - uid: 2817 - components: - - pos: 15.5,28.5 - parent: 4812 - type: Transform -- proto: AirlockResearchDirectorGlassLocked - entities: - - uid: 5555 - components: - - pos: 23.5,-20.5 - parent: 4812 - type: Transform - - uid: 5598 - components: - - pos: 13.5,-19.5 - parent: 4812 - type: Transform -- proto: AirlockSalvageLocked - entities: - - uid: 2921 - components: - - pos: 21.5,14.5 - parent: 4812 - type: Transform -- proto: AirlockScienceGlassLocked - entities: - - uid: 5488 - components: - - pos: 17.5,-24.5 - parent: 4812 - type: Transform - - uid: 5489 - components: - - pos: 2.5,-21.5 - parent: 4812 - type: Transform - - uid: 5490 - components: - - pos: 2.5,-20.5 - parent: 4812 - type: Transform - - uid: 5492 - components: - - pos: 10.5,-13.5 - parent: 4812 - type: Transform - - uid: 5493 - components: - - pos: 4.5,-19.5 - parent: 4812 - type: Transform - - uid: 5494 - components: - - pos: 5.5,-22.5 - parent: 4812 - type: Transform - - uid: 5495 - components: - - pos: 7.5,-24.5 - parent: 4812 - type: Transform - - uid: 5496 - components: - - pos: 10.5,-25.5 - parent: 4812 - type: Transform - - uid: 5771 - components: - - pos: 30.5,-25.5 - parent: 4812 - type: Transform - - uid: 5797 - components: - - pos: 26.5,-29.5 - parent: 4812 - type: Transform - - uid: 5798 - components: - - pos: 24.5,-29.5 - parent: 4812 - type: Transform -- proto: AirlockScienceLocked - entities: - - uid: 5396 - components: - - pos: 15.5,-20.5 - parent: 4812 - type: Transform - - uid: 5484 - components: - - pos: 15.5,-21.5 - parent: 4812 - type: Transform - - uid: 5485 - components: - - pos: 19.5,-21.5 - parent: 4812 - type: Transform - - uid: 5486 - components: - - pos: 19.5,-20.5 - parent: 4812 - type: Transform - - uid: 5487 - components: - - pos: 20.5,-24.5 - parent: 4812 - type: Transform -- proto: AirlockSecurityGlassLocked - entities: - - uid: 4429 - components: - - pos: 30.5,1.5 - parent: 4812 - type: Transform - - uid: 5304 - components: - - pos: -2.5,-30.5 - parent: 4812 - type: Transform - - uid: 5305 - components: - - pos: -4.5,-25.5 - parent: 4812 - type: Transform - - uid: 7792 - components: - - pos: -27.5,11.5 - parent: 4812 - type: Transform - - uid: 7793 - components: - - pos: -32.5,11.5 - parent: 4812 - type: Transform - - uid: 7794 - components: - - pos: -29.5,21.5 - parent: 4812 - type: Transform - - uid: 7795 - components: - - pos: -30.5,21.5 - parent: 4812 - type: Transform - - uid: 7798 - components: - - pos: -26.5,25.5 - parent: 4812 - type: Transform - - uid: 7799 - components: - - pos: -30.5,25.5 - parent: 4812 - type: Transform -- proto: AirlockServiceLocked - entities: - - uid: 6675 - components: - - pos: -31.5,-20.5 - parent: 4812 - type: Transform -- proto: AirlockTheatreLocked - entities: - - uid: 713 - components: - - pos: -6.5,-0.5 - parent: 4812 - type: Transform - - uid: 886 - components: - - pos: -8.5,2.5 - parent: 4812 - type: Transform -- proto: AirlockVirologyGlassLocked - entities: - - uid: 3773 - components: - - pos: -36.5,-36.5 - parent: 4812 - type: Transform - - uid: 4007 - components: - - pos: -35.5,-33.5 - parent: 4812 - type: Transform -- proto: AirlockVirologyLocked - entities: - - uid: 3771 - components: - - pos: -32.5,-33.5 - parent: 4812 - type: Transform -- proto: AirSensor - entities: - - uid: 8805 - components: - - pos: -17.5,-26.5 - parent: 4812 - type: Transform - - uid: 8806 - components: - - pos: -17.5,-21.5 - parent: 4812 - type: Transform - - uid: 12170 - components: - - pos: -42.5,-13.5 - parent: 4812 - type: Transform - - uid: 12172 - components: - - pos: -48.5,-11.5 - parent: 4812 - type: Transform - - uid: 12175 - components: - - pos: -54.5,-13.5 - parent: 4812 - type: Transform - - uid: 12177 - components: - - pos: -45.5,-7.5 - parent: 4812 - type: Transform - - uid: 12179 - components: - - pos: -40.5,3.5 - parent: 4812 - type: Transform - - uid: 12181 - components: - - pos: -44.5,16.5 - parent: 4812 - type: Transform - - uid: 12184 - components: - - pos: -34.5,2.5 - parent: 4812 - type: Transform - - uid: 12185 - components: - - pos: -31.5,-0.5 - parent: 4812 - type: Transform - - uid: 12192 - components: - - pos: -29.5,-8.5 - parent: 4812 - type: Transform - - uid: 12195 - components: - - pos: -25.5,-1.5 - parent: 4812 - type: Transform - - uid: 12200 - components: - - pos: -23.5,3.5 - parent: 4812 - type: Transform - - uid: 12201 - components: - - pos: -22.5,12.5 - parent: 4812 - type: Transform - - uid: 12208 - components: - - pos: -20.5,8.5 - parent: 4812 - type: Transform - - uid: 12211 - components: - - pos: -31.5,16.5 - parent: 4812 - type: Transform - - uid: 12214 - components: - - pos: -38.5,11.5 - parent: 4812 - type: Transform - - uid: 12216 - components: - - pos: -35.5,16.5 - parent: 4812 - type: Transform - - uid: 12218 - components: - - pos: -31.5,29.5 - parent: 4812 - type: Transform - - uid: 12222 - components: - - pos: -15.5,19.5 - parent: 4812 - type: Transform - - uid: 12225 - components: - - pos: -4.5,16.5 - parent: 4812 - type: Transform - - uid: 12226 - components: - - pos: -2.5,23.5 - parent: 4812 - type: Transform - - uid: 12230 - components: - - pos: -7.5,24.5 - parent: 4812 - type: Transform - - uid: 12231 - components: - - pos: 2.5,24.5 - parent: 4812 - type: Transform - - uid: 12237 - components: - - pos: -5.5,32.5 - parent: 4812 - type: Transform - - uid: 12239 - components: - - pos: 5.5,22.5 - parent: 4812 - type: Transform - - uid: 12242 - components: - - pos: 5.5,26.5 - parent: 4812 - type: Transform - - uid: 12243 - components: - - pos: 12.5,20.5 - parent: 4812 - type: Transform - - uid: 12247 - components: - - pos: 17.5,15.5 - parent: 4812 - type: Transform - - uid: 12251 - components: - - pos: 11.5,12.5 - parent: 4812 - type: Transform - - uid: 12254 - components: - - pos: 18.5,17.5 - parent: 4812 - type: Transform - - uid: 12257 - components: - - pos: 20.5,23.5 - parent: 4812 - type: Transform - - uid: 12259 - components: - - pos: 17.5,30.5 - parent: 4812 - type: Transform - - uid: 12261 - components: - - pos: 10.5,45.5 - parent: 4812 - type: Transform - - uid: 12263 - components: - - pos: 14.5,45.5 - parent: 4812 - type: Transform - - uid: 12264 - components: - - pos: 6.5,45.5 - parent: 4812 - type: Transform - - uid: 12267 - components: - - pos: 10.5,49.5 - parent: 4812 - type: Transform - - uid: 12274 - components: - - pos: 11.5,-4.5 - parent: 4812 - type: Transform - - uid: 12277 - components: - - pos: 21.5,-2.5 - parent: 4812 - type: Transform - - uid: 12279 - components: - - pos: 25.5,0.5 - parent: 4812 - type: Transform - - uid: 12281 - components: - - pos: 23.5,5.5 - parent: 4812 - type: Transform - - uid: 12284 - components: - - pos: 30.5,-2.5 - parent: 4812 - type: Transform - - uid: 12287 - components: - - pos: 13.5,-11.5 - parent: 4812 - type: Transform - - uid: 12288 - components: - - pos: -2.5,-11.5 - parent: 4812 - type: Transform - - uid: 12292 - components: - - pos: -23.5,-11.5 - parent: 4812 - type: Transform - - uid: 12295 - components: - - pos: -18.5,-12.5 - parent: 4812 - type: Transform - - uid: 12297 - components: - - pos: -22.5,-7.5 - parent: 4812 - type: Transform - - uid: 12298 - components: - - pos: -9.5,-7.5 - parent: 4812 - type: Transform - - uid: 12300 - components: - - pos: -2.5,-5.5 - parent: 4812 - type: Transform - - uid: 12303 - components: - - pos: -7.5,6.5 - parent: 4812 - type: Transform - - uid: 12306 - components: - - pos: 2.5,5.5 - parent: 4812 - type: Transform - - uid: 12309 - components: - - pos: 5.5,-3.5 - parent: 4812 - type: Transform - - uid: 12313 - components: - - pos: -0.5,13.5 - parent: 4812 - type: Transform - - uid: 12315 - components: - - pos: -2.5,-21.5 - parent: 4812 - type: Transform - - uid: 12318 - components: - - pos: -2.5,-35.5 - parent: 4812 - type: Transform - - uid: 12321 - components: - - pos: -10.5,-40.5 - parent: 4812 - type: Transform - - uid: 12326 - components: - - pos: -19.5,-32.5 - parent: 4812 - type: Transform - - uid: 12328 - components: - - pos: -21.5,-35.5 - parent: 4812 - type: Transform - - uid: 12333 - components: - - pos: -12.5,-20.5 - parent: 4812 - type: Transform - - uid: 12343 - components: - - pos: -9.5,-15.5 - parent: 4812 - type: Transform - - uid: 12345 - components: - - pos: -26.5,-17.5 - parent: 4812 - type: Transform - - uid: 12347 - components: - - pos: 4.5,-16.5 - parent: 4812 - type: Transform - - uid: 12349 - components: - - pos: 4.5,-23.5 - parent: 4812 - type: Transform - - uid: 12351 - components: - - pos: 14.5,-25.5 - parent: 4812 - type: Transform - - uid: 12355 - components: - - pos: 9.5,-20.5 - parent: 4812 - type: Transform - - uid: 12357 - components: - - pos: 22.5,-29.5 - parent: 4812 - type: Transform - - uid: 12359 - components: - - pos: 24.5,-23.5 - parent: 4812 - type: Transform - - uid: 12360 - components: - - pos: 32.5,-26.5 - parent: 4812 - type: Transform - - uid: 12363 - components: - - pos: -37.5,-34.5 - parent: 4812 - type: Transform -- proto: AltarSpawner - entities: - - uid: 4008 - components: - - pos: -18.5,-34.5 - parent: 4812 - type: Transform -- proto: AmeController - entities: - - uid: 10778 - components: - - pos: -42.5,-10.5 - parent: 4812 - type: Transform -- proto: AmeJar - entities: - - uid: 4233 - components: - - pos: -42.336273,-2.370503 - parent: 4812 - type: Transform -- proto: AnomalyScanner - entities: - - uid: 6357 - components: - - pos: 31.47904,-24.269451 - parent: 4812 - type: Transform - - uid: 6365 - components: - - pos: 31.63529,-24.472576 - parent: 4812 - type: Transform -- proto: APCBasic - entities: - - uid: 902 - components: - - pos: 6.5,5.5 - parent: 4812 - type: Transform - - uid: 903 - components: - - pos: -8.5,-2.5 - parent: 4812 - type: Transform - - uid: 904 - components: - - pos: -12.5,14.5 - parent: 4812 - type: Transform - - uid: 1022 - components: - - pos: 7.5,-8.5 - parent: 4812 - type: Transform - - uid: 2077 - components: - - pos: 0.5,21.5 - parent: 4812 - type: Transform - - uid: 2078 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,31.5 - parent: 4812 - type: Transform - - uid: 2079 - components: - - pos: 9.5,27.5 - parent: 4812 - type: Transform - - uid: 2366 - components: - - pos: -14.5,25.5 - parent: 4812 - type: Transform - - uid: 2832 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,32.5 - parent: 4812 - type: Transform - - uid: 3113 - components: - - pos: 17.5,22.5 - parent: 4812 - type: Transform - - uid: 3883 - components: - - pos: 11.5,51.5 - parent: 4812 - type: Transform - - uid: 4246 - components: - - pos: 22.5,-1.5 - parent: 4812 - type: Transform - - uid: 4968 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-15.5 - parent: 4812 - type: Transform - - uid: 4969 - components: - - pos: -15.5,-14.5 - parent: 4812 - type: Transform - - uid: 4970 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-28.5 - parent: 4812 - type: Transform - - uid: 4971 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-25.5 - parent: 4812 - type: Transform - - uid: 4972 - components: - - pos: -18.5,-19.5 - parent: 4812 - type: Transform - - uid: 5273 - components: - - pos: -8.5,-33.5 - parent: 4812 - type: Transform - - uid: 5970 - components: - - pos: 6.5,-19.5 - parent: 4812 - type: Transform - - uid: 5971 - components: - - pos: 28.5,-21.5 - parent: 4812 - type: Transform - - uid: 6064 - components: - - pos: 13.5,-22.5 - parent: 4812 - type: Transform - - uid: 6118 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-16.5 - parent: 4812 - type: Transform - - uid: 6149 - components: - - pos: 13.5,-16.5 - parent: 4812 - type: Transform - - uid: 6844 - components: - - pos: -17.5,-31.5 - parent: 4812 - type: Transform - - uid: 6898 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-25.5 - parent: 4812 - type: Transform - - uid: 7090 - components: - - pos: -24.5,-10.5 - parent: 4812 - type: Transform - - uid: 7259 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-25.5 - parent: 4812 - type: Transform - - uid: 7466 - components: - - pos: -1.5,-20.5 - parent: 4812 - type: Transform - - uid: 7985 - components: - - pos: -36.5,13.5 - parent: 4812 - type: Transform - - uid: 8176 - components: - - pos: -19.5,21.5 - parent: 4812 - type: Transform - - uid: 8896 - components: - - pos: -33.5,-24.5 - parent: 4812 - type: Transform - - uid: 9290 - components: - - pos: -38.5,6.5 - parent: 4812 - type: Transform - - uid: 9412 - components: - - rot: 3.141592653589793 rad - pos: 32.5,-29.5 - parent: 4812 - type: Transform - - uid: 10021 - components: - - pos: -41.5,-4.5 - parent: 4812 - type: Transform - - uid: 10069 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-12.5 - parent: 4812 - type: Transform - - uid: 10183 - components: - - pos: -51.5,-21.5 - parent: 4812 - type: Transform - - uid: 11150 - components: - - pos: 10.5,-35.5 - parent: 4812 - type: Transform - - uid: 11436 - components: - - pos: 30.5,-37.5 - parent: 4812 - type: Transform -- proto: AppleSeeds - entities: - - uid: 8397 - components: - - pos: -31.672361,31.435354 - parent: 4812 - type: Transform - - uid: 8398 - components: - - pos: -31.531736,31.32598 - parent: 4812 - type: Transform -- proto: AsteroidRock - entities: - - uid: 2840 - components: - - pos: 13.5,34.5 - parent: 4812 - type: Transform - - uid: 3012 - components: - - pos: 14.5,37.5 - parent: 4812 - type: Transform - - uid: 3044 - components: - - pos: 20.5,38.5 - parent: 4812 - type: Transform - - uid: 3045 - components: - - pos: 19.5,38.5 - parent: 4812 - type: Transform - - uid: 3295 - components: - - pos: 21.5,36.5 - parent: 4812 - type: Transform - - uid: 3353 - components: - - pos: 21.5,34.5 - parent: 4812 - type: Transform - - uid: 3372 - components: - - pos: 23.5,33.5 - parent: 4812 - type: Transform - - uid: 3373 - components: - - pos: 22.5,31.5 - parent: 4812 - type: Transform - - uid: 3374 - components: - - pos: 22.5,37.5 - parent: 4812 - type: Transform - - uid: 3375 - components: - - pos: 22.5,35.5 - parent: 4812 - type: Transform - - uid: 3376 - components: - - pos: 22.5,33.5 - parent: 4812 - type: Transform - - uid: 3394 - components: - - pos: 22.5,32.5 - parent: 4812 - type: Transform - - uid: 3395 - components: - - pos: 23.5,32.5 - parent: 4812 - type: Transform - - uid: 3396 - components: - - pos: 21.5,33.5 - parent: 4812 - type: Transform - - uid: 3397 - components: - - pos: 21.5,35.5 - parent: 4812 - type: Transform - - uid: 3398 - components: - - pos: 21.5,38.5 - parent: 4812 - type: Transform - - uid: 3399 - components: - - pos: 22.5,36.5 - parent: 4812 - type: Transform - - uid: 3400 - components: - - pos: 22.5,34.5 - parent: 4812 - type: Transform - - uid: 3427 - components: - - pos: 19.5,32.5 - parent: 4812 - type: Transform - - uid: 3433 - components: - - pos: 13.5,36.5 - parent: 4812 - type: Transform - - uid: 3440 - components: - - pos: 21.5,32.5 - parent: 4812 - type: Transform - - uid: 3450 - components: - - pos: 20.5,32.5 - parent: 4812 - type: Transform - - uid: 3459 - components: - - pos: 15.5,37.5 - parent: 4812 - type: Transform - - uid: 3460 - components: - - pos: 18.5,38.5 - parent: 4812 - type: Transform - - uid: 3461 - components: - - pos: 13.5,35.5 - parent: 4812 - type: Transform - - uid: 3579 - components: - - pos: 21.5,37.5 - parent: 4812 - type: Transform - - uid: 3583 - components: - - pos: 17.5,42.5 - parent: 4812 - type: Transform - - uid: 3584 - components: - - pos: 16.5,42.5 - parent: 4812 - type: Transform - - uid: 3585 - components: - - pos: 15.5,42.5 - parent: 4812 - type: Transform - - uid: 3586 - components: - - pos: 15.5,41.5 - parent: 4812 - type: Transform - - uid: 3587 - components: - - pos: 14.5,42.5 - parent: 4812 - type: Transform - - uid: 3588 - components: - - pos: 14.5,41.5 - parent: 4812 - type: Transform - - uid: 3589 - components: - - pos: 13.5,42.5 - parent: 4812 - type: Transform - - uid: 3590 - components: - - pos: 13.5,41.5 - parent: 4812 - type: Transform - - uid: 3591 - components: - - pos: 9.5,41.5 - parent: 4812 - type: Transform - - uid: 3592 - components: - - pos: 10.5,41.5 - parent: 4812 - type: Transform - - uid: 3593 - components: - - pos: 11.5,41.5 - parent: 4812 - type: Transform - - uid: 3594 - components: - - pos: 12.5,41.5 - parent: 4812 - type: Transform - - uid: 3595 - components: - - pos: 11.5,40.5 - parent: 4812 - type: Transform - - uid: 3596 - components: - - pos: 12.5,40.5 - parent: 4812 - type: Transform - - uid: 3597 - components: - - pos: 13.5,40.5 - parent: 4812 - type: Transform - - uid: 3598 - components: - - pos: 17.5,43.5 - parent: 4812 - type: Transform - - uid: 3599 - components: - - pos: 17.5,44.5 - parent: 4812 - type: Transform - - uid: 3600 - components: - - pos: 17.5,45.5 - parent: 4812 - type: Transform - - uid: 3601 - components: - - pos: 17.5,47.5 - parent: 4812 - type: Transform - - uid: 3602 - components: - - pos: 18.5,47.5 - parent: 4812 - type: Transform - - uid: 3603 - components: - - pos: 20.5,48.5 - parent: 4812 - type: Transform - - uid: 3604 - components: - - pos: 20.5,49.5 - parent: 4812 - type: Transform - - uid: 3605 - components: - - pos: 21.5,49.5 - parent: 4812 - type: Transform - - uid: 3606 - components: - - pos: 19.5,48.5 - parent: 4812 - type: Transform - - uid: 3607 - components: - - pos: 18.5,48.5 - parent: 4812 - type: Transform - - uid: 3608 - components: - - pos: 17.5,48.5 - parent: 4812 - type: Transform - - uid: 3609 - components: - - pos: 16.5,49.5 - parent: 4812 - type: Transform - - uid: 3610 - components: - - pos: 18.5,49.5 - parent: 4812 - type: Transform - - uid: 3612 - components: - - pos: 19.5,49.5 - parent: 4812 - type: Transform - - uid: 3613 - components: - - pos: 19.5,50.5 - parent: 4812 - type: Transform - - uid: 3614 - components: - - pos: 18.5,50.5 - parent: 4812 - type: Transform - - uid: 3615 - components: - - pos: 18.5,51.5 - parent: 4812 - type: Transform - - uid: 3616 - components: - - pos: 17.5,50.5 - parent: 4812 - type: Transform - - uid: 3617 - components: - - pos: 17.5,51.5 - parent: 4812 - type: Transform - - uid: 3618 - components: - - pos: 16.5,51.5 - parent: 4812 - type: Transform - - uid: 3619 - components: - - pos: 16.5,51.5 - parent: 4812 - type: Transform - - uid: 3620 - components: - - pos: 18.5,53.5 - parent: 4812 - type: Transform - - uid: 3621 - components: - - pos: 17.5,52.5 - parent: 4812 - type: Transform - - uid: 3622 - components: - - pos: 16.5,52.5 - parent: 4812 - type: Transform - - uid: 3623 - components: - - pos: 16.5,50.5 - parent: 4812 - type: Transform - - uid: 3624 - components: - - pos: 17.5,53.5 - parent: 4812 - type: Transform - - uid: 3625 - components: - - pos: 16.5,53.5 - parent: 4812 - type: Transform - - uid: 3626 - components: - - pos: 17.5,54.5 - parent: 4812 - type: Transform - - uid: 3627 - components: - - pos: 16.5,54.5 - parent: 4812 - type: Transform - - uid: 3628 - components: - - pos: 16.5,55.5 - parent: 4812 - type: Transform - - uid: 3629 - components: - - pos: 16.5,56.5 - parent: 4812 - type: Transform - - uid: 3630 - components: - - pos: 16.5,57.5 - parent: 4812 - type: Transform - - uid: 3631 - components: - - pos: 15.5,57.5 - parent: 4812 - type: Transform - - uid: 3632 - components: - - pos: 15.5,56.5 - parent: 4812 - type: Transform - - uid: 3633 - components: - - pos: 14.5,57.5 - parent: 4812 - type: Transform - - uid: 3634 - components: - - pos: 14.5,58.5 - parent: 4812 - type: Transform - - uid: 3635 - components: - - pos: 13.5,58.5 - parent: 4812 - type: Transform - - uid: 3636 - components: - - pos: 13.5,59.5 - parent: 4812 - type: Transform - - uid: 3637 - components: - - pos: 12.5,59.5 - parent: 4812 - type: Transform - - uid: 3638 - components: - - pos: 12.5,60.5 - parent: 4812 - type: Transform - - uid: 3639 - components: - - pos: 11.5,59.5 - parent: 4812 - type: Transform - - uid: 3640 - components: - - pos: 11.5,60.5 - parent: 4812 - type: Transform - - uid: 3641 - components: - - pos: 10.5,59.5 - parent: 4812 - type: Transform - - uid: 3642 - components: - - pos: 10.5,60.5 - parent: 4812 - type: Transform - - uid: 3643 - components: - - pos: 9.5,59.5 - parent: 4812 - type: Transform - - uid: 3644 - components: - - pos: 9.5,60.5 - parent: 4812 - type: Transform - - uid: 3645 - components: - - pos: 8.5,59.5 - parent: 4812 - type: Transform - - uid: 3646 - components: - - pos: 7.5,58.5 - parent: 4812 - type: Transform - - uid: 3647 - components: - - pos: 7.5,59.5 - parent: 4812 - type: Transform - - uid: 3648 - components: - - pos: 6.5,58.5 - parent: 4812 - type: Transform - - uid: 3649 - components: - - pos: 5.5,58.5 - parent: 4812 - type: Transform - - uid: 3650 - components: - - pos: 5.5,57.5 - parent: 4812 - type: Transform - - uid: 3651 - components: - - pos: 4.5,57.5 - parent: 4812 - type: Transform - - uid: 3652 - components: - - pos: 4.5,56.5 - parent: 4812 - type: Transform - - uid: 3653 - components: - - pos: 3.5,56.5 - parent: 4812 - type: Transform - - uid: 3654 - components: - - pos: 2.5,55.5 - parent: 4812 - type: Transform - - uid: 3655 - components: - - pos: 2.5,54.5 - parent: 4812 - type: Transform - - uid: 3656 - components: - - pos: 3.5,54.5 - parent: 4812 - type: Transform - - uid: 3657 - components: - - pos: 3.5,53.5 - parent: 4812 - type: Transform - - uid: 3658 - components: - - pos: 3.5,52.5 - parent: 4812 - type: Transform - - uid: 3659 - components: - - pos: 2.5,52.5 - parent: 4812 - type: Transform - - uid: 3660 - components: - - pos: 2.5,51.5 - parent: 4812 - type: Transform - - uid: 3661 - components: - - pos: 2.5,50.5 - parent: 4812 - type: Transform - - uid: 3662 - components: - - pos: 1.5,50.5 - parent: 4812 - type: Transform - - uid: 3663 - components: - - pos: 1.5,49.5 - parent: 4812 - type: Transform - - uid: 3664 - components: - - pos: 0.5,49.5 - parent: 4812 - type: Transform - - uid: 3665 - components: - - pos: 0.5,48.5 - parent: 4812 - type: Transform - - uid: 3666 - components: - - pos: 0.5,47.5 - parent: 4812 - type: Transform - - uid: 3667 - components: - - pos: 1.5,47.5 - parent: 4812 - type: Transform - - uid: 3668 - components: - - pos: 1.5,46.5 - parent: 4812 - type: Transform - - uid: 3669 - components: - - pos: 1.5,48.5 - parent: 4812 - type: Transform - - uid: 3670 - components: - - pos: 2.5,48.5 - parent: 4812 - type: Transform - - uid: 3671 - components: - - pos: 3.5,48.5 - parent: 4812 - type: Transform - - uid: 3672 - components: - - pos: 2.5,49.5 - parent: 4812 - type: Transform - - uid: 3673 - components: - - pos: 3.5,51.5 - parent: 4812 - type: Transform - - uid: 3676 - components: - - pos: 4.5,49.5 - parent: 4812 - type: Transform - - uid: 3679 - components: - - pos: 4.5,52.5 - parent: 4812 - type: Transform - - uid: 3680 - components: - - pos: 4.5,53.5 - parent: 4812 - type: Transform - - uid: 3681 - components: - - pos: 4.5,54.5 - parent: 4812 - type: Transform - - uid: 3682 - components: - - pos: 4.5,55.5 - parent: 4812 - type: Transform - - uid: 3683 - components: - - pos: 3.5,55.5 - parent: 4812 - type: Transform - - uid: 3684 - components: - - pos: 5.5,56.5 - parent: 4812 - type: Transform - - uid: 3685 - components: - - pos: 6.5,57.5 - parent: 4812 - type: Transform - - uid: 3976 - components: - - pos: -36.5,27.5 - parent: 4812 - type: Transform - - uid: 5032 - components: - - pos: -36.5,32.5 - parent: 4812 - type: Transform - - uid: 5625 - components: - - pos: 22.5,-18.5 - parent: 4812 - type: Transform - - uid: 5626 - components: - - pos: 30.5,-20.5 - parent: 4812 - type: Transform - - uid: 5627 - components: - - pos: 30.5,-19.5 - parent: 4812 - type: Transform - - uid: 5808 - components: - - pos: 31.5,-20.5 - parent: 4812 - type: Transform - - uid: 5809 - components: - - pos: 31.5,-21.5 - parent: 4812 - type: Transform - - uid: 5810 - components: - - pos: 35.5,-21.5 - parent: 4812 - type: Transform - - uid: 5811 - components: - - pos: 36.5,-20.5 - parent: 4812 - type: Transform - - uid: 5812 - components: - - pos: 36.5,-21.5 - parent: 4812 - type: Transform - - uid: 5813 - components: - - pos: 37.5,-22.5 - parent: 4812 - type: Transform - - uid: 5814 - components: - - pos: 37.5,-23.5 - parent: 4812 - type: Transform - - uid: 5815 - components: - - pos: 38.5,-23.5 - parent: 4812 - type: Transform - - uid: 5816 - components: - - pos: 38.5,-24.5 - parent: 4812 - type: Transform - - uid: 5817 - components: - - pos: 39.5,-24.5 - parent: 4812 - type: Transform - - uid: 5818 - components: - - pos: 37.5,-24.5 - parent: 4812 - type: Transform - - uid: 5819 - components: - - pos: 37.5,-29.5 - parent: 4812 - type: Transform - - uid: 5820 - components: - - pos: 37.5,-28.5 - parent: 4812 - type: Transform - - uid: 5821 - components: - - pos: 37.5,-27.5 - parent: 4812 - type: Transform - - uid: 5822 - components: - - pos: 37.5,-26.5 - parent: 4812 - type: Transform - - uid: 5823 - components: - - pos: 37.5,-25.5 - parent: 4812 - type: Transform - - uid: 5824 - components: - - pos: 38.5,-28.5 - parent: 4812 - type: Transform - - uid: 5825 - components: - - pos: 38.5,-27.5 - parent: 4812 - type: Transform - - uid: 5827 - components: - - pos: 38.5,-25.5 - parent: 4812 - type: Transform - - uid: 5828 - components: - - pos: 39.5,-25.5 - parent: 4812 - type: Transform - - uid: 5829 - components: - - pos: 39.5,-26.5 - parent: 4812 - type: Transform - - uid: 5830 - components: - - pos: 39.5,-27.5 - parent: 4812 - type: Transform - - uid: 5831 - components: - - pos: 40.5,-27.5 - parent: 4812 - type: Transform - - uid: 5832 - components: - - pos: 40.5,-26.5 - parent: 4812 - type: Transform - - uid: 5839 - components: - - pos: 22.5,-17.5 - parent: 4812 - type: Transform - - uid: 6332 - components: - - pos: 37.5,-21.5 - parent: 4812 - type: Transform - - uid: 8458 - components: - - pos: -19.5,36.5 - parent: 4812 - type: Transform - - uid: 8459 - components: - - pos: -19.5,35.5 - parent: 4812 - type: Transform - - uid: 8460 - components: - - pos: -20.5,34.5 - parent: 4812 - type: Transform - - uid: 8461 - components: - - pos: -20.5,33.5 - parent: 4812 - type: Transform - - uid: 8462 - components: - - pos: -20.5,32.5 - parent: 4812 - type: Transform - - uid: 8463 - components: - - pos: -21.5,30.5 - parent: 4812 - type: Transform - - uid: 8464 - components: - - pos: -21.5,31.5 - parent: 4812 - type: Transform - - uid: 8465 - components: - - pos: -20.5,31.5 - parent: 4812 - type: Transform - - uid: 8466 - components: - - pos: -19.5,31.5 - parent: 4812 - type: Transform - - uid: 8467 - components: - - pos: -18.5,31.5 - parent: 4812 - type: Transform - - uid: 8468 - components: - - pos: -17.5,31.5 - parent: 4812 - type: Transform - - uid: 8469 - components: - - pos: -16.5,31.5 - parent: 4812 - type: Transform - - uid: 8470 - components: - - pos: -15.5,31.5 - parent: 4812 - type: Transform - - uid: 8471 - components: - - pos: -14.5,31.5 - parent: 4812 - type: Transform - - uid: 8472 - components: - - pos: -13.5,31.5 - parent: 4812 - type: Transform - - uid: 8473 - components: - - pos: -13.5,32.5 - parent: 4812 - type: Transform - - uid: 8474 - components: - - pos: -14.5,32.5 - parent: 4812 - type: Transform - - uid: 8475 - components: - - pos: -15.5,32.5 - parent: 4812 - type: Transform - - uid: 8476 - components: - - pos: -18.5,32.5 - parent: 4812 - type: Transform - - uid: 8479 - components: - - pos: -19.5,32.5 - parent: 4812 - type: Transform - - uid: 8480 - components: - - pos: -19.5,33.5 - parent: 4812 - type: Transform - - uid: 8483 - components: - - pos: -16.5,33.5 - parent: 4812 - type: Transform - - uid: 8484 - components: - - pos: -15.5,33.5 - parent: 4812 - type: Transform - - uid: 8485 - components: - - pos: -15.5,34.5 - parent: 4812 - type: Transform - - uid: 8486 - components: - - pos: -16.5,34.5 - parent: 4812 - type: Transform - - uid: 8487 - components: - - pos: -17.5,34.5 - parent: 4812 - type: Transform - - uid: 8488 - components: - - pos: -18.5,34.5 - parent: 4812 - type: Transform - - uid: 8489 - components: - - pos: -19.5,34.5 - parent: 4812 - type: Transform - - uid: 8490 - components: - - pos: -18.5,35.5 - parent: 4812 - type: Transform - - uid: 8491 - components: - - pos: -17.5,35.5 - parent: 4812 - type: Transform - - uid: 8492 - components: - - pos: -16.5,35.5 - parent: 4812 - type: Transform - - uid: 8493 - components: - - pos: -17.5,36.5 - parent: 4812 - type: Transform - - uid: 8494 - components: - - pos: -18.5,36.5 - parent: 4812 - type: Transform - - uid: 8495 - components: - - pos: -18.5,37.5 - parent: 4812 - type: Transform - - uid: 8496 - components: - - pos: -18.5,38.5 - parent: 4812 - type: Transform - - uid: 8497 - components: - - pos: -17.5,38.5 - parent: 4812 - type: Transform - - uid: 8498 - components: - - pos: -23.5,30.5 - parent: 4812 - type: Transform - - uid: 8499 - components: - - pos: -23.5,33.5 - parent: 4812 - type: Transform - - uid: 8500 - components: - - pos: -26.5,34.5 - parent: 4812 - type: Transform - - uid: 8501 - components: - - pos: -25.5,34.5 - parent: 4812 - type: Transform - - uid: 8502 - components: - - pos: -24.5,34.5 - parent: 4812 - type: Transform - - uid: 8503 - components: - - pos: -23.5,34.5 - parent: 4812 - type: Transform - - uid: 8504 - components: - - pos: -24.5,35.5 - parent: 4812 - type: Transform - - uid: 8505 - components: - - pos: -25.5,35.5 - parent: 4812 - type: Transform - - uid: 8506 - components: - - pos: -27.5,37.5 - parent: 4812 - type: Transform - - uid: 8507 - components: - - pos: -28.5,37.5 - parent: 4812 - type: Transform - - uid: 8508 - components: - - pos: -29.5,38.5 - parent: 4812 - type: Transform - - uid: 8509 - components: - - pos: -28.5,38.5 - parent: 4812 - type: Transform - - uid: 8510 - components: - - pos: -27.5,38.5 - parent: 4812 - type: Transform - - uid: 8511 - components: - - pos: -26.5,38.5 - parent: 4812 - type: Transform - - uid: 8512 - components: - - pos: -28.5,39.5 - parent: 4812 - type: Transform - - uid: 8513 - components: - - pos: -27.5,39.5 - parent: 4812 - type: Transform - - uid: 8514 - components: - - pos: -26.5,39.5 - parent: 4812 - type: Transform - - uid: 8515 - components: - - pos: -25.5,39.5 - parent: 4812 - type: Transform - - uid: 8516 - components: - - pos: -30.5,34.5 - parent: 4812 - type: Transform - - uid: 8517 - components: - - pos: -31.5,34.5 - parent: 4812 - type: Transform - - uid: 8518 - components: - - pos: -32.5,34.5 - parent: 4812 - type: Transform - - uid: 8519 - components: - - pos: -33.5,34.5 - parent: 4812 - type: Transform - - uid: 8520 - components: - - pos: -34.5,34.5 - parent: 4812 - type: Transform - - uid: 8521 - components: - - pos: -33.5,35.5 - parent: 4812 - type: Transform - - uid: 8522 - components: - - pos: -33.5,36.5 - parent: 4812 - type: Transform - - uid: 8523 - components: - - pos: -32.5,36.5 - parent: 4812 - type: Transform - - uid: 8524 - components: - - pos: -32.5,35.5 - parent: 4812 - type: Transform - - uid: 8525 - components: - - pos: -31.5,35.5 - parent: 4812 - type: Transform - - uid: 9621 - components: - - pos: -42.5,-34.5 - parent: 4812 - type: Transform - - uid: 9622 - components: - - pos: -42.5,-33.5 - parent: 4812 - type: Transform - - uid: 9623 - components: - - pos: -43.5,-33.5 - parent: 4812 - type: Transform - - uid: 9624 - components: - - pos: -43.5,-32.5 - parent: 4812 - type: Transform - - uid: 9630 - components: - - pos: -46.5,-29.5 - parent: 4812 - type: Transform - - uid: 9631 - components: - - pos: -46.5,-30.5 - parent: 4812 - type: Transform - - uid: 9632 - components: - - pos: -47.5,-29.5 - parent: 4812 - type: Transform - - uid: 9633 - components: - - pos: -46.5,-28.5 - parent: 4812 - type: Transform - - uid: 9637 - components: - - pos: -46.5,-26.5 - parent: 4812 - type: Transform - - uid: 9638 - components: - - pos: -39.5,-38.5 - parent: 4812 - type: Transform - - uid: 9639 - components: - - pos: -39.5,-39.5 - parent: 4812 - type: Transform - - uid: 9640 - components: - - pos: -38.5,-39.5 - parent: 4812 - type: Transform - - uid: 9641 - components: - - pos: -34.5,-39.5 - parent: 4812 - type: Transform - - uid: 9642 - components: - - pos: -33.5,-39.5 - parent: 4812 - type: Transform - - uid: 9643 - components: - - pos: -33.5,-40.5 - parent: 4812 - type: Transform - - uid: 10417 - components: - - pos: -53.5,-20.5 - parent: 4812 - type: Transform - - uid: 10418 - components: - - pos: -52.5,-20.5 - parent: 4812 - type: Transform - - uid: 10419 - components: - - pos: -51.5,-20.5 - parent: 4812 - type: Transform - - uid: 10420 - components: - - pos: -50.5,-20.5 - parent: 4812 - type: Transform - - uid: 10421 - components: - - pos: -53.5,-19.5 - parent: 4812 - type: Transform - - uid: 10422 - components: - - pos: -54.5,-19.5 - parent: 4812 - type: Transform - - uid: 10423 - components: - - pos: -55.5,-19.5 - parent: 4812 - type: Transform - - uid: 10424 - components: - - pos: -54.5,-18.5 - parent: 4812 - type: Transform - - uid: 10425 - components: - - pos: -55.5,-18.5 - parent: 4812 - type: Transform - - uid: 10426 - components: - - pos: -56.5,-18.5 - parent: 4812 - type: Transform - - uid: 10427 - components: - - pos: -56.5,-17.5 - parent: 4812 - type: Transform - - uid: 10428 - components: - - pos: -56.5,-16.5 - parent: 4812 - type: Transform - - uid: 10429 - components: - - pos: -56.5,-15.5 - parent: 4812 - type: Transform - - uid: 10430 - components: - - pos: -55.5,-15.5 - parent: 4812 - type: Transform - - uid: 10431 - components: - - pos: -54.5,-15.5 - parent: 4812 - type: Transform - - uid: 10432 - components: - - pos: -53.5,-15.5 - parent: 4812 - type: Transform - - uid: 10433 - components: - - pos: -52.5,-15.5 - parent: 4812 - type: Transform - - uid: 10434 - components: - - pos: -51.5,-15.5 - parent: 4812 - type: Transform - - uid: 10435 - components: - - pos: -50.5,-15.5 - parent: 4812 - type: Transform - - uid: 10436 - components: - - pos: -49.5,-15.5 - parent: 4812 - type: Transform - - uid: 10437 - components: - - pos: -48.5,-15.5 - parent: 4812 - type: Transform - - uid: 10438 - components: - - pos: -47.5,-15.5 - parent: 4812 - type: Transform - - uid: 10439 - components: - - pos: -47.5,-16.5 - parent: 4812 - type: Transform - - uid: 10443 - components: - - pos: -51.5,-16.5 - parent: 4812 - type: Transform - - uid: 10444 - components: - - pos: -52.5,-16.5 - parent: 4812 - type: Transform - - uid: 10447 - components: - - pos: -55.5,-16.5 - parent: 4812 - type: Transform - - uid: 10448 - components: - - pos: -55.5,-17.5 - parent: 4812 - type: Transform - - uid: 10449 - components: - - pos: -54.5,-17.5 - parent: 4812 - type: Transform - - uid: 10452 - components: - - pos: -51.5,-17.5 - parent: 4812 - type: Transform - - uid: 10453 - components: - - pos: -50.5,-17.5 - parent: 4812 - type: Transform - - uid: 10454 - components: - - pos: -49.5,-17.5 - parent: 4812 - type: Transform - - uid: 10455 - components: - - pos: -48.5,-17.5 - parent: 4812 - type: Transform - - uid: 10456 - components: - - pos: -47.5,-17.5 - parent: 4812 - type: Transform - - uid: 10457 - components: - - pos: -50.5,-18.5 - parent: 4812 - type: Transform - - uid: 10458 - components: - - pos: -51.5,-18.5 - parent: 4812 - type: Transform - - uid: 10460 - components: - - pos: -35.5,29.5 - parent: 4812 - type: Transform - - uid: 10461 - components: - - pos: -50.5,-19.5 - parent: 4812 - type: Transform - - uid: 10462 - components: - - pos: -51.5,-19.5 - parent: 4812 - type: Transform - - uid: 10463 - components: - - pos: -36.5,28.5 - parent: 4812 - type: Transform - - uid: 10464 - components: - - pos: -56.5,-14.5 - parent: 4812 - type: Transform - - uid: 10465 - components: - - pos: -56.5,-13.5 - parent: 4812 - type: Transform - - uid: 10466 - components: - - pos: -56.5,-12.5 - parent: 4812 - type: Transform - - uid: 10467 - components: - - pos: -56.5,-11.5 - parent: 4812 - type: Transform - - uid: 10468 - components: - - pos: -56.5,-10.5 - parent: 4812 - type: Transform - - uid: 10469 - components: - - pos: -56.5,-9.5 - parent: 4812 - type: Transform - - uid: 10470 - components: - - pos: -56.5,-8.5 - parent: 4812 - type: Transform - - uid: 10472 - components: - - pos: -57.5,-10.5 - parent: 4812 - type: Transform - - uid: 10473 - components: - - pos: -57.5,-11.5 - parent: 4812 - type: Transform - - uid: 10474 - components: - - pos: -35.5,28.5 - parent: 4812 - type: Transform - - uid: 10475 - components: - - pos: -57.5,-13.5 - parent: 4812 - type: Transform - - uid: 10476 - components: - - pos: -57.5,-14.5 - parent: 4812 - type: Transform - - uid: 10477 - components: - - pos: -57.5,-15.5 - parent: 4812 - type: Transform - - uid: 10478 - components: - - pos: -58.5,-13.5 - parent: 4812 - type: Transform - - uid: 10479 - components: - - pos: -58.5,-12.5 - parent: 4812 - type: Transform - - uid: 10480 - components: - - pos: -58.5,-11.5 - parent: 4812 - type: Transform - - uid: 10481 - components: - - pos: -58.5,-10.5 - parent: 4812 - type: Transform - - uid: 10482 - components: - - pos: -58.5,-9.5 - parent: 4812 - type: Transform - - uid: 10483 - components: - - pos: -56.5,-7.5 - parent: 4812 - type: Transform - - uid: 10484 - components: - - pos: -57.5,-8.5 - parent: 4812 - type: Transform - - uid: 10485 - components: - - pos: -58.5,-8.5 - parent: 4812 - type: Transform - - uid: 10486 - components: - - pos: -49.5,-2.5 - parent: 4812 - type: Transform - - uid: 10926 - components: - - pos: -38.5,14.5 - parent: 4812 - type: Transform - - uid: 10927 - components: - - pos: -38.5,15.5 - parent: 4812 - type: Transform - - uid: 10928 - components: - - pos: -38.5,16.5 - parent: 4812 - type: Transform - - uid: 10929 - components: - - pos: -38.5,17.5 - parent: 4812 - type: Transform - - uid: 10941 - components: - - pos: -33.5,24.5 - parent: 4812 - type: Transform - - uid: 10942 - components: - - pos: -33.5,25.5 - parent: 4812 - type: Transform - - uid: 10943 - components: - - pos: -33.5,26.5 - parent: 4812 - type: Transform - - uid: 10944 - components: - - pos: -33.5,27.5 - parent: 4812 - type: Transform - - uid: 10945 - components: - - pos: -34.5,24.5 - parent: 4812 - type: Transform - - uid: 10947 - components: - - pos: -34.5,26.5 - parent: 4812 - type: Transform - - uid: 10948 - components: - - pos: -34.5,27.5 - parent: 4812 - type: Transform - - uid: 10949 - components: - - pos: -34.5,28.5 - parent: 4812 - type: Transform - - uid: 10950 - components: - - pos: -34.5,29.5 - parent: 4812 - type: Transform - - uid: 10951 - components: - - pos: -34.5,30.5 - parent: 4812 - type: Transform - - uid: 10952 - components: - - pos: -34.5,31.5 - parent: 4812 - type: Transform - - uid: 10953 - components: - - pos: -34.5,32.5 - parent: 4812 - type: Transform - - uid: 10954 - components: - - pos: -34.5,33.5 - parent: 4812 - type: Transform - - uid: 10955 - components: - - pos: -35.5,32.5 - parent: 4812 - type: Transform - - uid: 10956 - components: - - pos: -35.5,31.5 - parent: 4812 - type: Transform - - uid: 10957 - components: - - pos: -35.5,30.5 - parent: 4812 - type: Transform - - uid: 10963 - components: - - pos: -35.5,24.5 - parent: 4812 - type: Transform - - uid: 10965 - components: - - pos: -39.5,15.5 - parent: 4812 - type: Transform - - uid: 10966 - components: - - pos: -39.5,16.5 - parent: 4812 - type: Transform - - uid: 10967 - components: - - pos: -39.5,17.5 - parent: 4812 - type: Transform - - uid: 10969 - components: - - pos: -39.5,19.5 - parent: 4812 - type: Transform - - uid: 10970 - components: - - pos: -39.5,20.5 - parent: 4812 - type: Transform - - uid: 10971 - components: - - pos: -39.5,21.5 - parent: 4812 - type: Transform - - uid: 10972 - components: - - pos: -39.5,22.5 - parent: 4812 - type: Transform - - uid: 10973 - components: - - pos: -39.5,23.5 - parent: 4812 - type: Transform - - uid: 10974 - components: - - pos: -39.5,24.5 - parent: 4812 - type: Transform - - uid: 10975 - components: - - pos: -38.5,24.5 - parent: 4812 - type: Transform - - uid: 10977 - components: - - pos: -36.5,24.5 - parent: 4812 - type: Transform - - uid: 10982 - components: - - pos: -40.5,23.5 - parent: 4812 - type: Transform - - uid: 10983 - components: - - pos: -39.5,18.5 - parent: 4812 - type: Transform - - uid: 10984 - components: - - pos: -36.5,31.5 - parent: 4812 - type: Transform - - uid: 10986 - components: - - pos: -35.5,33.5 - parent: 4812 - type: Transform - - uid: 10987 - components: - - pos: -36.5,33.5 - parent: 4812 - type: Transform - - uid: 10988 - components: - - pos: -37.5,33.5 - parent: 4812 - type: Transform - - uid: 10990 - components: - - pos: -37.5,32.5 - parent: 4812 - type: Transform - - uid: 10991 - components: - - pos: -37.5,31.5 - parent: 4812 - type: Transform - - uid: 10992 - components: - - pos: -37.5,30.5 - parent: 4812 - type: Transform - - uid: 10993 - components: - - pos: -37.5,29.5 - parent: 4812 - type: Transform - - uid: 10994 - components: - - pos: -37.5,28.5 - parent: 4812 - type: Transform - - uid: 10995 - components: - - pos: -37.5,27.5 - parent: 4812 - type: Transform - - uid: 10999 - components: - - pos: -38.5,26.5 - parent: 4812 - type: Transform - - uid: 11000 - components: - - pos: -38.5,27.5 - parent: 4812 - type: Transform - - uid: 11001 - components: - - pos: -38.5,28.5 - parent: 4812 - type: Transform - - uid: 11002 - components: - - pos: -38.5,29.5 - parent: 4812 - type: Transform - - uid: 11003 - components: - - pos: -38.5,30.5 - parent: 4812 - type: Transform - - uid: 11004 - components: - - pos: -38.5,31.5 - parent: 4812 - type: Transform - - uid: 11005 - components: - - pos: -38.5,32.5 - parent: 4812 - type: Transform - - uid: 11009 - components: - - pos: -40.5,17.5 - parent: 4812 - type: Transform - - uid: 11010 - components: - - pos: -40.5,18.5 - parent: 4812 - type: Transform - - uid: 11011 - components: - - pos: -40.5,19.5 - parent: 4812 - type: Transform - - uid: 11012 - components: - - pos: -40.5,20.5 - parent: 4812 - type: Transform - - uid: 11013 - components: - - pos: -40.5,21.5 - parent: 4812 - type: Transform - - uid: 11014 - components: - - pos: -37.5,24.5 - parent: 4812 - type: Transform - - uid: 11016 - components: - - pos: -40.5,24.5 - parent: 4812 - type: Transform - - uid: 11017 - components: - - pos: -40.5,25.5 - parent: 4812 - type: Transform - - uid: 11018 - components: - - pos: -40.5,26.5 - parent: 4812 - type: Transform - - uid: 11019 - components: - - pos: -41.5,21.5 - parent: 4812 - type: Transform - - uid: 11020 - components: - - pos: -41.5,22.5 - parent: 4812 - type: Transform - - uid: 11021 - components: - - pos: -41.5,23.5 - parent: 4812 - type: Transform - - uid: 11022 - components: - - pos: -41.5,24.5 - parent: 4812 - type: Transform - - uid: 11023 - components: - - pos: -41.5,25.5 - parent: 4812 - type: Transform - - uid: 11024 - components: - - pos: -41.5,26.5 - parent: 4812 - type: Transform - - uid: 11025 - components: - - pos: -39.5,25.5 - parent: 4812 - type: Transform - - uid: 11026 - components: - - pos: -39.5,26.5 - parent: 4812 - type: Transform - - uid: 11027 - components: - - pos: -39.5,27.5 - parent: 4812 - type: Transform - - uid: 11028 - components: - - pos: -39.5,28.5 - parent: 4812 - type: Transform - - uid: 11029 - components: - - pos: -39.5,29.5 - parent: 4812 - type: Transform - - uid: 11616 - components: - - pos: 36.5,-30.5 - parent: 4812 - type: Transform - - uid: 11621 - components: - - pos: 36.5,-39.5 - parent: 4812 - type: Transform - - uid: 11622 - components: - - pos: 34.5,-41.5 - parent: 4812 - type: Transform - - uid: 11623 - components: - - pos: 33.5,-41.5 - parent: 4812 - type: Transform - - uid: 11624 - components: - - pos: 32.5,-41.5 - parent: 4812 - type: Transform - - uid: 11625 - components: - - pos: 31.5,-41.5 - parent: 4812 - type: Transform - - uid: 11626 - components: - - pos: 24.5,-39.5 - parent: 4812 - type: Transform - - uid: 11627 - components: - - pos: 25.5,-39.5 - parent: 4812 - type: Transform - - uid: 11628 - components: - - pos: 22.5,-40.5 - parent: 4812 - type: Transform - - uid: 11629 - components: - - pos: 23.5,-40.5 - parent: 4812 - type: Transform - - uid: 11630 - components: - - pos: 23.5,-41.5 - parent: 4812 - type: Transform - - uid: 11631 - components: - - pos: 23.5,-42.5 - parent: 4812 - type: Transform - - uid: 11632 - components: - - pos: 16.5,-40.5 - parent: 4812 - type: Transform - - uid: 11633 - components: - - pos: 16.5,-41.5 - parent: 4812 - type: Transform - - uid: 11634 - components: - - pos: 19.5,-40.5 - parent: 4812 - type: Transform - - uid: 11635 - components: - - pos: 16.5,-42.5 - parent: 4812 - type: Transform - - uid: 11636 - components: - - pos: 17.5,-42.5 - parent: 4812 - type: Transform - - uid: 11637 - components: - - pos: 16.5,-43.5 - parent: 4812 - type: Transform - - uid: 11638 - components: - - pos: 17.5,-43.5 - parent: 4812 - type: Transform - - uid: 11639 - components: - - pos: 18.5,-43.5 - parent: 4812 - type: Transform - - uid: 11640 - components: - - pos: 18.5,-44.5 - parent: 4812 - type: Transform - - uid: 11641 - components: - - pos: 17.5,-44.5 - parent: 4812 - type: Transform - - uid: 11643 - components: - - pos: 15.5,-44.5 - parent: 4812 - type: Transform - - uid: 11644 - components: - - pos: 14.5,-44.5 - parent: 4812 - type: Transform - - uid: 11645 - components: - - pos: 13.5,-44.5 - parent: 4812 - type: Transform - - uid: 11647 - components: - - pos: 12.5,-45.5 - parent: 4812 - type: Transform - - uid: 11648 - components: - - pos: 13.5,-45.5 - parent: 4812 - type: Transform - - uid: 11649 - components: - - pos: 14.5,-45.5 - parent: 4812 - type: Transform - - uid: 11650 - components: - - pos: 15.5,-45.5 - parent: 4812 - type: Transform - - uid: 11651 - components: - - pos: 16.5,-45.5 - parent: 4812 - type: Transform - - uid: 11652 - components: - - pos: 17.5,-45.5 - parent: 4812 - type: Transform - - uid: 11653 - components: - - pos: 12.5,-46.5 - parent: 4812 - type: Transform - - uid: 11654 - components: - - pos: 11.5,-46.5 - parent: 4812 - type: Transform - - uid: 11655 - components: - - pos: 10.5,-46.5 - parent: 4812 - type: Transform - - uid: 11656 - components: - - pos: 9.5,-46.5 - parent: 4812 - type: Transform - - uid: 11657 - components: - - pos: 8.5,-46.5 - parent: 4812 - type: Transform - - uid: 11658 - components: - - pos: 7.5,-46.5 - parent: 4812 - type: Transform - - uid: 11659 - components: - - pos: 5.5,-44.5 - parent: 4812 - type: Transform - - uid: 11660 - components: - - pos: 23.5,-43.5 - parent: 4812 - type: Transform - - uid: 11663 - components: - - pos: 26.5,-38.5 - parent: 4812 - type: Transform - - uid: 11664 - components: - - pos: 24.5,-41.5 - parent: 4812 - type: Transform - - uid: 11665 - components: - - pos: 24.5,-42.5 - parent: 4812 - type: Transform - - uid: 11666 - components: - - pos: 24.5,-43.5 - parent: 4812 - type: Transform - - uid: 11667 - components: - - pos: 24.5,-44.5 - parent: 4812 - type: Transform - - uid: 11668 - components: - - pos: 25.5,-44.5 - parent: 4812 - type: Transform - - uid: 11669 - components: - - pos: 25.5,-43.5 - parent: 4812 - type: Transform - - uid: 11670 - components: - - pos: 25.5,-42.5 - parent: 4812 - type: Transform - - uid: 11679 - components: - - pos: 25.5,-38.5 - parent: 4812 - type: Transform - - uid: 11680 - components: - - pos: 26.5,-43.5 - parent: 4812 - type: Transform - - uid: 11681 - components: - - pos: 26.5,-44.5 - parent: 4812 - type: Transform - - uid: 11682 - components: - - pos: 27.5,-44.5 - parent: 4812 - type: Transform - - uid: 11683 - components: - - pos: 27.5,-43.5 - parent: 4812 - type: Transform - - uid: 11684 - components: - - pos: 24.5,-38.5 - parent: 4812 - type: Transform - - uid: 11686 - components: - - pos: 28.5,-38.5 - parent: 4812 - type: Transform - - uid: 11689 - components: - - pos: 28.5,-43.5 - parent: 4812 - type: Transform - - uid: 11690 - components: - - pos: 28.5,-42.5 - parent: 4812 - type: Transform - - uid: 11691 - components: - - pos: 24.5,-40.5 - parent: 4812 - type: Transform - - uid: 11695 - components: - - pos: 29.5,-42.5 - parent: 4812 - type: Transform - - uid: 11696 - components: - - pos: 30.5,-42.5 - parent: 4812 - type: Transform - - uid: 11697 - components: - - pos: 29.5,-43.5 - parent: 4812 - type: Transform - - uid: 11698 - components: - - pos: 30.5,-43.5 - parent: 4812 - type: Transform - - uid: 11699 - components: - - pos: 31.5,-42.5 - parent: 4812 - type: Transform - - uid: 11700 - components: - - pos: 32.5,-42.5 - parent: 4812 - type: Transform - - uid: 11701 - components: - - pos: 33.5,-42.5 - parent: 4812 - type: Transform - - uid: 11702 - components: - - pos: 36.5,-40.5 - parent: 4812 - type: Transform - - uid: 11703 - components: - - pos: 37.5,-39.5 - parent: 4812 - type: Transform - - uid: 11704 - components: - - pos: 38.5,-38.5 - parent: 4812 - type: Transform - - uid: 11705 - components: - - pos: 35.5,-41.5 - parent: 4812 - type: Transform - - uid: 12144 - components: - - pos: -48.5,-25.5 - parent: 4812 - type: Transform -- proto: AsteroidRockMining - entities: - - uid: 12146 - components: - - pos: -52.5,-3.5 - parent: 4812 - type: Transform -- proto: AtmosDeviceFanTiny - entities: - - uid: 2781 - components: - - pos: 23.5,25.5 - parent: 4812 - type: Transform - - uid: 2845 - components: - - pos: 23.5,27.5 - parent: 4812 - type: Transform - - uid: 3260 - components: - - pos: 34.5,-7.5 - parent: 4812 - type: Transform - - uid: 3263 - components: - - pos: 34.5,0.5 - parent: 4812 - type: Transform - - uid: 3423 - components: - - pos: 34.5,-5.5 - parent: 4812 - type: Transform - - uid: 3424 - components: - - pos: 34.5,2.5 - parent: 4812 - type: Transform - - uid: 3455 - components: - - pos: 8.5,-6.5 - parent: 4812 - type: Transform - - uid: 3456 - components: - - pos: 4.5,-4.5 - parent: 4812 - type: Transform - - uid: 3766 - components: - - pos: -13.5,-50.5 - parent: 4812 - type: Transform - - uid: 3767 - components: - - pos: -8.5,-50.5 - parent: 4812 - type: Transform - - uid: 3768 - components: - - pos: -8.5,-43.5 - parent: 4812 - type: Transform - - uid: 3769 - components: - - pos: -13.5,-43.5 - parent: 4812 - type: Transform -- proto: AtmosFixBlockerMarker - entities: - - uid: 11893 - components: - - pos: -51.5,5.5 - parent: 4812 - type: Transform - - uid: 11894 - components: - - pos: -52.5,5.5 - parent: 4812 - type: Transform - - uid: 11895 - components: - - pos: -53.5,5.5 - parent: 4812 - type: Transform - - uid: 11896 - components: - - pos: -53.5,7.5 - parent: 4812 - type: Transform - - uid: 11897 - components: - - pos: -52.5,7.5 - parent: 4812 - type: Transform - - uid: 11898 - components: - - pos: -51.5,7.5 - parent: 4812 - type: Transform - - uid: 11899 - components: - - pos: -51.5,11.5 - parent: 4812 - type: Transform - - uid: 11900 - components: - - pos: -52.5,11.5 - parent: 4812 - type: Transform - - uid: 11901 - components: - - pos: -53.5,11.5 - parent: 4812 - type: Transform - - uid: 11902 - components: - - pos: -45.5,16.5 - parent: 4812 - type: Transform - - uid: 11903 - components: - - pos: -45.5,17.5 - parent: 4812 - type: Transform - - uid: 11904 - components: - - pos: -44.5,17.5 - parent: 4812 - type: Transform - - uid: 11905 - components: - - pos: -44.5,16.5 - parent: 4812 - type: Transform - - uid: 11906 - components: - - pos: -43.5,16.5 - parent: 4812 - type: Transform - - uid: 11907 - components: - - pos: -43.5,17.5 - parent: 4812 - type: Transform -- proto: AtmosFixFreezerMarker - entities: - - uid: 1569 - components: - - pos: 5.5,-7.5 - parent: 4812 - type: Transform - - uid: 3213 - components: - - pos: 6.5,-6.5 - parent: 4812 - type: Transform - - uid: 3214 - components: - - pos: 5.5,-6.5 - parent: 4812 - type: Transform - - uid: 3215 - components: - - pos: 4.5,-6.5 - parent: 4812 - type: Transform - - uid: 3222 - components: - - pos: 3.5,-6.5 - parent: 4812 - type: Transform - - uid: 3384 - components: - - pos: 6.5,-7.5 - parent: 4812 - type: Transform - - uid: 3385 - components: - - pos: 7.5,-5.5 - parent: 4812 - type: Transform - - uid: 3413 - components: - - pos: 7.5,-7.5 - parent: 4812 - type: Transform - - uid: 3414 - components: - - pos: 7.5,-6.5 - parent: 4812 - type: Transform - - uid: 3415 - components: - - pos: 5.5,-5.5 - parent: 4812 - type: Transform - - uid: 3416 - components: - - pos: 4.5,-5.5 - parent: 4812 - type: Transform - - uid: 3417 - components: - - pos: 3.5,-5.5 - parent: 4812 - type: Transform - - uid: 3418 - components: - - pos: 2.5,-5.5 - parent: 4812 - type: Transform - - uid: 3438 - components: - - pos: 2.5,-6.5 - parent: 4812 - type: Transform - - uid: 3464 - components: - - pos: 6.5,-5.5 - parent: 4812 - type: Transform -- proto: AtmosFixNitrogenMarker - entities: - - uid: 11887 - components: - - pos: -51.5,1.5 - parent: 4812 - type: Transform - - uid: 11888 - components: - - pos: -52.5,1.5 - parent: 4812 - type: Transform - - uid: 11889 - components: - - pos: -53.5,1.5 - parent: 4812 - type: Transform -- proto: AtmosFixOxygenMarker - entities: - - uid: 11890 - components: - - pos: -51.5,3.5 - parent: 4812 - type: Transform - - uid: 11891 - components: - - pos: -52.5,3.5 - parent: 4812 - type: Transform - - uid: 11892 - components: - - pos: -53.5,3.5 - parent: 4812 - type: Transform -- proto: AtmosFixPlasmaMarker - entities: - - uid: 11908 - components: - - pos: -51.5,9.5 - parent: 4812 - type: Transform - - uid: 11909 - components: - - pos: -52.5,9.5 - parent: 4812 - type: Transform - - uid: 11910 - components: - - pos: -53.5,9.5 - parent: 4812 - type: Transform -- proto: Autolathe - entities: - - uid: 3231 - components: - - pos: 20.5,18.5 - parent: 4812 - type: Transform - - materialWhiteList: - - Steel - - Plastic - - Wood - - Glass - - Cloth - type: MaterialStorage - - uid: 6183 - components: - - pos: 3.5,-16.5 - parent: 4812 - type: Transform - - materialWhiteList: - - Steel - - Plastic - - Wood - - Glass - - Cloth - type: MaterialStorage - - uid: 10700 - components: - - pos: -28.5,-7.5 - parent: 4812 - type: Transform - - materialWhiteList: - - Steel - - Plastic - - Wood - - Glass - - Cloth - type: MaterialStorage -- proto: BananaPhoneInstrument - entities: - - uid: 12492 - components: - - pos: -10.731333,1.1743605 - parent: 4812 - type: Transform -- proto: BannerRevolution - entities: - - uid: 10459 - components: - - pos: -57.5,-12.5 - parent: 4812 - type: Transform -- proto: Barricade - entities: - - uid: 8482 - components: - - pos: -50.5,-16.5 - parent: 4812 - type: Transform - - uid: 8860 - components: - - pos: -30.5,-26.5 - parent: 4812 - type: Transform - - uid: 10524 - components: - - pos: -38.5,-26.5 - parent: 4812 - type: Transform -- proto: BarSign - entities: - - uid: 326 - components: - - desc: Drink till you puke and/or break the laws of reality! - name: The Loose Goose - type: MetaData - - pos: 2.5,10.5 - parent: 4812 - type: Transform - - current: Goose - type: BarSign - - uid: 10522 - components: - - desc: All right, buddy. I think you've had EI NATH. Time to get a cab. - name: The Ale' Nath - type: MetaData - - pos: -32.5,-26.5 - parent: 4812 - type: Transform - - current: TheAleNath - type: BarSign -- proto: Beaker - entities: - - uid: 9030 - components: - - pos: -40.278786,-34.952698 - parent: 4812 - type: Transform -- proto: Bed - entities: - - uid: 261 - components: - - pos: -17.5,-0.5 - parent: 4812 - type: Transform - - uid: 1256 - components: - - pos: -17.5,4.5 - parent: 4812 - type: Transform - - uid: 1649 - components: - - pos: 7.5,9.5 - parent: 4812 - type: Transform - - uid: 2499 - components: - - pos: 6.5,29.5 - parent: 4812 - type: Transform - - uid: 2580 - components: - - pos: -11.5,29.5 - parent: 4812 - type: Transform - - uid: 3268 - components: - - pos: -15.5,-28.5 - parent: 4812 - type: Transform - - uid: 3401 - components: - - pos: 17.5,34.5 - parent: 4812 - type: Transform - - uid: 7033 - components: - - pos: -27.5,-36.5 - parent: 4812 - type: Transform - - uid: 7128 - components: - - pos: -30.5,-21.5 - parent: 4812 - type: Transform - - uid: 7455 - components: - - pos: -24.5,-28.5 - parent: 4812 - type: Transform - - uid: 7575 - components: - - pos: -20.5,-20.5 - parent: 4812 - type: Transform - - uid: 8249 - components: - - pos: -22.5,28.5 - parent: 4812 - type: Transform - - uid: 8350 - components: - - pos: -25.5,20.5 - parent: 4812 - type: Transform - - uid: 8351 - components: - - pos: -25.5,17.5 - parent: 4812 - type: Transform - - uid: 8360 - components: - - pos: -25.5,27.5 - parent: 4812 - type: Transform - - uid: 8361 - components: - - pos: -29.5,27.5 - parent: 4812 - type: Transform - - uid: 11358 - components: - - pos: 37.5,-34.5 - parent: 4812 - type: Transform - - uid: 12162 - components: - - pos: -25.5,-20.5 - parent: 4812 - type: Transform -- proto: BedsheetCaptain - entities: - - uid: 2582 - components: - - pos: -11.5,29.5 - parent: 4812 - type: Transform -- proto: BedsheetCMO - entities: - - uid: 7456 - components: - - pos: -24.5,-28.5 - parent: 4812 - type: Transform -- proto: BedsheetCult - entities: - - uid: 7034 - components: - - pos: -27.5,-36.5 - parent: 4812 - type: Transform -- proto: BedsheetHOP - entities: - - uid: 2500 - components: - - pos: 6.5,29.5 - parent: 4812 - type: Transform -- proto: BedsheetHOS - entities: - - uid: 8250 - components: - - pos: -22.5,28.5 - parent: 4812 - type: Transform -- proto: BedsheetMedical - entities: - - uid: 3285 - components: - - pos: -15.5,-28.5 - parent: 4812 - type: Transform - - uid: 7682 - components: - - pos: -14.5,-23.5 - parent: 4812 - type: Transform - - uid: 7683 - components: - - pos: -17.5,-23.5 - parent: 4812 - type: Transform - - uid: 7684 - components: - - pos: -20.5,-20.5 - parent: 4812 - type: Transform -- proto: BedsheetOrange - entities: - - uid: 8352 - components: - - pos: -25.5,17.5 - parent: 4812 - type: Transform - - uid: 8353 - components: - - pos: -25.5,20.5 - parent: 4812 - type: Transform - - uid: 8362 - components: - - pos: -29.5,27.5 - parent: 4812 - type: Transform - - uid: 8363 - components: - - pos: -25.5,27.5 - parent: 4812 - type: Transform -- proto: BedsheetQM - entities: - - uid: 3377 - components: - - pos: 17.5,34.5 - parent: 4812 - type: Transform -- proto: BedsheetSpawner - entities: - - uid: 260 - components: - - pos: -17.5,-0.5 - parent: 4812 - type: Transform - - uid: 1255 - components: - - pos: -17.5,4.5 - parent: 4812 - type: Transform - - uid: 1650 - components: - - pos: 7.5,9.5 - parent: 4812 - type: Transform - - uid: 7129 - components: - - pos: -30.5,-21.5 - parent: 4812 - type: Transform - - uid: 11359 - components: - - pos: 37.5,-34.5 - parent: 4812 - type: Transform - - uid: 12163 - components: - - pos: -25.5,-20.5 - parent: 4812 - type: Transform -- proto: BikeHorn - entities: - - uid: 1725 - components: - - pos: -10.612676,1.3979684 - parent: 4812 - type: Transform - - uid: 9615 - components: - - flags: InContainer - type: MetaData - - parent: 2709 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: BikeHornInstrument - entities: - - uid: 1726 - components: - - pos: -10.503301,0.7729684 - parent: 4812 - type: Transform -- proto: BlastDoor - entities: - - uid: 729 - components: - - pos: 8.5,18.5 - parent: 4812 - type: Transform - - uid: 771 - components: - - pos: -11.5,18.5 - parent: 4812 - type: Transform - - uid: 2864 - components: - - pos: 23.5,24.5 - parent: 4812 - type: Transform - - links: - - 2938 - type: DeviceLinkSink - - uid: 2866 - components: - - pos: 23.5,28.5 - parent: 4812 - type: Transform - - links: - - 2938 - type: DeviceLinkSink - - uid: 5573 - components: - - pos: 21.5,-30.5 - parent: 4812 - type: Transform - - links: - - 6690 - type: DeviceLinkSink - - uid: 5574 - components: - - pos: 21.5,-29.5 - parent: 4812 - type: Transform - - links: - - 6690 - type: DeviceLinkSink - - uid: 5575 - components: - - pos: 21.5,-28.5 - parent: 4812 - type: Transform - - links: - - 6690 - type: DeviceLinkSink - - uid: 5794 - components: - - pos: 2.5,-27.5 - parent: 4812 - type: Transform - - links: - - 6218 - type: DeviceLinkSink - - uid: 5795 - components: - - pos: 2.5,-26.5 - parent: 4812 - type: Transform - - links: - - 6218 - type: DeviceLinkSink - - uid: 5796 - components: - - pos: 2.5,-25.5 - parent: 4812 - type: Transform - - links: - - 6218 - type: DeviceLinkSink - - uid: 9496 - components: - - pos: -44.5,18.5 - parent: 4812 - type: Transform - - links: - - 9504 - type: DeviceLinkSink -- proto: BlockGameArcade - entities: - - uid: 4549 - components: - - pos: 27.5,-0.5 - parent: 4812 - type: Transform - - uid: 5026 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-47.5 - parent: 4812 - type: Transform - - uid: 8399 - components: - - pos: -26.5,32.5 - parent: 4812 - type: Transform - - uid: 10853 - components: - - pos: -22.5,5.5 - parent: 4812 - type: Transform -- proto: BookAtmosAirAlarms - entities: - - uid: 865 - components: - - pos: -22.624014,-17.30092 - parent: 4812 - type: Transform -- proto: BookAtmosDistro - entities: - - uid: 10450 - components: - - pos: -22.389639,-17.51967 - parent: 4812 - type: Transform -- proto: BookAtmosVentsMore - entities: - - uid: 12467 - components: - - pos: -25.608389,-18.347795 - parent: 4812 - type: Transform -- proto: BookAtmosWaste - entities: - - uid: 12468 - components: - - pos: -25.436514,-18.48842 - parent: 4812 - type: Transform -- proto: BookDetective - entities: - - uid: 5387 - components: - - pos: 17.568647,-11.417019 - parent: 4812 - type: Transform -- proto: BookEscalation - entities: - - uid: 12421 - components: - - pos: -30.59653,-19.308746 - parent: 4812 - type: Transform -- proto: BookEscalationSecurity - entities: - - uid: 10446 - components: - - pos: -30.424656,-19.480621 - parent: 4812 - type: Transform -- proto: BookRandom - entities: - - uid: 7161 - components: - - pos: -30.557493,-18.387486 - parent: 4812 - type: Transform -- proto: BooksBag - entities: - - uid: 12419 - components: - - pos: -31.928976,-23.436365 - parent: 4812 - type: Transform -- proto: Bookshelf - entities: - - uid: 1952 - components: - - pos: -13.5,25.5 - parent: 4812 - type: Transform - - uid: 5374 - components: - - pos: 20.5,-18.5 - parent: 4812 - type: Transform - - uid: 7000 - components: - - pos: -13.5,-32.5 - parent: 4812 - type: Transform - - uid: 7001 - components: - - pos: -13.5,-36.5 - parent: 4812 - type: Transform - - uid: 7005 - components: - - pos: -24.5,-38.5 - parent: 4812 - type: Transform - - uid: 7130 - components: - - pos: -32.5,-22.5 - parent: 4812 - type: Transform - - uid: 7131 - components: - - pos: -32.5,-21.5 - parent: 4812 - type: Transform - - uid: 7172 - components: - - pos: -24.5,-39.5 - parent: 4812 - type: Transform - - uid: 8391 - components: - - pos: -25.5,32.5 - parent: 4812 - type: Transform - - uid: 8392 - components: - - pos: -25.5,29.5 - parent: 4812 - type: Transform - - uid: 11352 - components: - - pos: 36.5,-32.5 - parent: 4812 - type: Transform -- proto: BookshelfFilled - entities: - - uid: 4816 - components: - - pos: -27.5,-20.5 - parent: 4812 - type: Transform - - uid: 4817 - components: - - pos: -27.5,-18.5 - parent: 4812 - type: Transform - - uid: 4818 - components: - - pos: -24.5,-18.5 - parent: 4812 - type: Transform - - uid: 4819 - components: - - pos: -24.5,-20.5 - parent: 4812 - type: Transform - - uid: 4820 - components: - - pos: -23.5,-20.5 - parent: 4812 - type: Transform - - uid: 4821 - components: - - pos: -22.5,-20.5 - parent: 4812 - type: Transform - - uid: 4822 - components: - - pos: -23.5,-18.5 - parent: 4812 - type: Transform - - uid: 4823 - components: - - pos: -26.5,-20.5 - parent: 4812 - type: Transform - - uid: 4824 - components: - - pos: -26.5,-18.5 - parent: 4812 - type: Transform - - uid: 4825 - components: - - pos: -22.5,-18.5 - parent: 4812 - type: Transform - - uid: 4835 - components: - - pos: -23.5,-14.5 - parent: 4812 - type: Transform - - uid: 4836 - components: - - pos: -22.5,-14.5 - parent: 4812 - type: Transform - - uid: 4837 - components: - - pos: -22.5,-16.5 - parent: 4812 - type: Transform - - uid: 4839 - components: - - pos: -29.5,-19.5 - parent: 4812 - type: Transform - - uid: 4840 - components: - - pos: -29.5,-18.5 - parent: 4812 - type: Transform - - uid: 4841 - components: - - pos: -29.5,-17.5 - parent: 4812 - type: Transform -- proto: BoozeDispenser - entities: - - uid: 365 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,9.5 - parent: 4812 - type: Transform - - uid: 10493 - components: - - pos: -36.5,-22.5 - parent: 4812 - type: Transform -- proto: BorgCharger - entities: - - uid: 1727 - components: - - pos: 5.5,47.5 - parent: 4812 - type: Transform - - uid: 2492 - components: - - pos: 6.5,47.5 - parent: 4812 - type: Transform - - uid: 6168 - components: - - pos: 3.5,-28.5 - parent: 4812 - type: Transform -- proto: BoxBeaker - entities: - - uid: 6635 - components: - - pos: -8.433923,-18.34037 - parent: 4812 - type: Transform -- proto: BoxBeanbag - entities: - - uid: 1656 - components: - - pos: 7.497552,8.611126 - parent: 4812 - type: Transform -- proto: BoxBodyBag - entities: - - uid: 4927 - components: - - pos: -18.4054,-14.319918 - parent: 4812 - type: Transform -- proto: BoxFlashbang - entities: - - uid: 8368 - components: - - pos: -36.5,17.5 - parent: 4812 - type: Transform - - uid: 8430 - components: - - pos: -37.645676,12.776339 - parent: 4812 - type: Transform -- proto: BoxFolderBlack - entities: - - uid: 2519 - components: - - pos: 8.55219,26.460049 - parent: 4812 - type: Transform - - uid: 2724 - components: - - name: secret documents - type: MetaData - - pos: -5.51737,26.194775 - parent: 4812 - type: Transform -- proto: BoxFolderBlue - entities: - - uid: 2518 - components: - - pos: 8.45844,26.553799 - parent: 4812 - type: Transform - - uid: 2685 - components: - - pos: 1.5282507,34.656113 - parent: 4812 - type: Transform -- proto: BoxFolderGrey - entities: - - uid: 6411 - components: - - pos: -0.43434072,-19.465488 - parent: 4812 - type: Transform -- proto: BoxFolderRed - entities: - - uid: 2517 - components: - - pos: 8.33344,26.616299 - parent: 4812 - type: Transform - - uid: 4575 - components: - - pos: 28.5,1.5 - parent: 4812 - type: Transform - - uid: 8267 - components: - - pos: -21.5,23.5 - parent: 4812 - type: Transform - - uid: 8295 - components: - - pos: -19.475779,17.57452 - parent: 4812 - type: Transform -- proto: BoxFolderWhite - entities: - - uid: 6637 - components: - - pos: -11.521093,-19.541773 - parent: 4812 - type: Transform -- proto: BoxFolderYellow - entities: - - uid: 3276 - components: - - pos: 14.429598,18.642262 - parent: 4812 - type: Transform - - uid: 3705 - components: - - pos: 15.550373,35.549133 - parent: 4812 - type: Transform - - uid: 4576 - components: - - pos: 28.5,-6.5 - parent: 4812 - type: Transform -- proto: BoxHandcuff - entities: - - uid: 8369 - components: - - pos: -36.509842,17.041077 - parent: 4812 - type: Transform - - uid: 8431 - components: - - pos: -37.489426,12.635714 - parent: 4812 - type: Transform -- proto: BoxLatexGloves - entities: - - uid: 9029 - components: - - pos: -40.466286,-35.483948 - parent: 4812 - type: Transform -- proto: BoxLightMixed - entities: - - uid: 1496 - components: - - pos: -23.513304,-6.9524465 - parent: 4812 - type: Transform - - uid: 1678 - components: - - pos: 3.4673066,14.577467 - parent: 4812 - type: Transform - - uid: 8599 - components: - - pos: -18.992748,10.00374 - parent: 4812 - type: Transform - - uid: 10528 - components: - - pos: -41.52028,-30.431274 - parent: 4812 - type: Transform - - uid: 10712 - components: - - pos: -31.22427,-7.3718886 - parent: 4812 - type: Transform - - uid: 11329 - components: - - pos: 24.509838,-35.436974 - parent: 4812 - type: Transform -- proto: BoxMouthSwab - entities: - - uid: 12518 - components: - - pos: -40.434937,-35.118546 - parent: 4812 - type: Transform -- proto: BoxPillCanister - entities: - - uid: 6636 - components: - - pos: -8.489843,-18.166773 - parent: 4812 - type: Transform -- proto: BoxShotgunIncendiary - entities: - - uid: 12055 - components: - - pos: -35.55101,19.647282 - parent: 4812 - type: Transform -- proto: BoxSterileMask - entities: - - uid: 9028 - components: - - pos: -40.66941,-35.374573 - parent: 4812 - type: Transform -- proto: BoxSyringe - entities: - - uid: 9031 - components: - - pos: -40.247536,-35.390198 - parent: 4812 - type: Transform -- proto: BoxZiptie - entities: - - uid: 8370 - components: - - pos: -36.494217,16.619202 - parent: 4812 - type: Transform - - uid: 8432 - components: - - pos: -37.301926,12.401339 - parent: 4812 - type: Transform -- proto: BrbSign - entities: - - uid: 9086 - components: - - pos: 5.1968718,29.290854 - parent: 4812 - type: Transform -- proto: BriefcaseBrownFilled - entities: - - uid: 5384 - components: - - pos: 19.508135,-18.292694 - parent: 4812 - type: Transform - - uid: 8277 - components: - - pos: -16.540533,16.683895 - parent: 4812 - type: Transform - - uid: 9079 - components: - - pos: -30.580097,-29.217686 - parent: 4812 - type: Transform -- proto: BrigTimer - entities: - - uid: 4810 - components: - - pos: -27.5,18.5 - parent: 4812 - type: Transform - - linkedPorts: - 7786: - - Start: Close - - Timer: AutoClose - - Timer: Open - type: DeviceLinkSource - - uid: 4811 - components: - - pos: -27.5,15.5 - parent: 4812 - type: Transform - - linkedPorts: - 7785: - - Start: Close - - Timer: AutoClose - - Timer: Open - type: DeviceLinkSource -- proto: Bucket - entities: - - uid: 1477 - components: - - pos: -16.468277,-7.2739778 - parent: 4812 - type: Transform - - uid: 1497 - components: - - pos: -23.720804,-7.615172 - parent: 4812 - type: Transform - - uid: 1499 - components: - - pos: -20.513304,-8.561821 - parent: 4812 - type: Transform - - uid: 8390 - components: - - pos: -30.607666,31.438156 - parent: 4812 - type: Transform - - uid: 9617 - components: - - pos: -43.435364,-28.50291 - parent: 4812 - type: Transform - - uid: 11958 - components: - - pos: -10.295721,17.222569 - parent: 4812 - type: Transform -- proto: CableApcExtension - entities: - - uid: 258 - components: - - pos: -13.5,2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1125 - components: - - pos: -8.5,-2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1126 - components: - - pos: -8.5,-3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1127 - components: - - pos: -9.5,-3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1128 - components: - - pos: -10.5,-3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1129 - components: - - pos: -10.5,-4.5 - parent: 4812 - type: Transform - - uid: 1130 - components: - - pos: -10.5,-5.5 - parent: 4812 - type: Transform - - uid: 1131 - components: - - pos: -10.5,-6.5 - parent: 4812 - type: Transform - - uid: 1132 - components: - - pos: -10.5,-7.5 - parent: 4812 - type: Transform - - uid: 1133 - components: - - pos: -10.5,-8.5 - parent: 4812 - type: Transform - - uid: 1134 - components: - - pos: -10.5,-9.5 - parent: 4812 - type: Transform - - uid: 1135 - components: - - pos: -11.5,-6.5 - parent: 4812 - type: Transform - - uid: 1136 - components: - - pos: -12.5,-6.5 - parent: 4812 - type: Transform - - uid: 1137 - components: - - pos: -13.5,-6.5 - parent: 4812 - type: Transform - - uid: 1138 - components: - - pos: -14.5,-6.5 - parent: 4812 - type: Transform - - uid: 1139 - components: - - pos: -15.5,-6.5 - parent: 4812 - type: Transform - - uid: 1140 - components: - - pos: -16.5,-6.5 - parent: 4812 - type: Transform - - uid: 1141 - components: - - pos: -17.5,-6.5 - parent: 4812 - type: Transform - - uid: 1142 - components: - - pos: -17.5,-7.5 - parent: 4812 - type: Transform - - uid: 1143 - components: - - pos: -17.5,-8.5 - parent: 4812 - type: Transform - - uid: 1144 - components: - - pos: -17.5,-9.5 - parent: 4812 - type: Transform - - uid: 1145 - components: - - pos: -11.5,-8.5 - parent: 4812 - type: Transform - - uid: 1146 - components: - - pos: -12.5,-8.5 - parent: 4812 - type: Transform - - uid: 1147 - components: - - pos: -13.5,-8.5 - parent: 4812 - type: Transform - - uid: 1148 - components: - - pos: -14.5,-8.5 - parent: 4812 - type: Transform - - uid: 1149 - components: - - pos: -15.5,-8.5 - parent: 4812 - type: Transform - - uid: 1150 - components: - - pos: -16.5,-8.5 - parent: 4812 - type: Transform - - uid: 1151 - components: - - pos: -9.5,-6.5 - parent: 4812 - type: Transform - - uid: 1152 - components: - - pos: -8.5,-6.5 - parent: 4812 - type: Transform - - uid: 1153 - components: - - pos: -7.5,-6.5 - parent: 4812 - type: Transform - - uid: 1154 - components: - - pos: -8.5,-1.5 - parent: 4812 - type: Transform - - uid: 1155 - components: - - pos: -8.5,-0.5 - parent: 4812 - type: Transform - - uid: 1156 - components: - - pos: -8.5,0.5 - parent: 4812 - type: Transform - - uid: 1157 - components: - - pos: -8.5,1.5 - parent: 4812 - type: Transform - - uid: 1158 - components: - - pos: -8.5,2.5 - parent: 4812 - type: Transform - - uid: 1159 - components: - - pos: -8.5,3.5 - parent: 4812 - type: Transform - - uid: 1160 - components: - - pos: -8.5,4.5 - parent: 4812 - type: Transform - - uid: 1161 - components: - - pos: -8.5,5.5 - parent: 4812 - type: Transform - - uid: 1162 - components: - - pos: -8.5,6.5 - parent: 4812 - type: Transform - - uid: 1163 - components: - - pos: -8.5,7.5 - parent: 4812 - type: Transform - - uid: 1164 - components: - - pos: -8.5,8.5 - parent: 4812 - type: Transform - - uid: 1165 - components: - - pos: -7.5,-0.5 - parent: 4812 - type: Transform - - uid: 1166 - components: - - pos: -9.5,-0.5 - parent: 4812 - type: Transform - - uid: 1167 - components: - - pos: -9.5,4.5 - parent: 4812 - type: Transform - - uid: 1168 - components: - - pos: -9.5,8.5 - parent: 4812 - type: Transform - - uid: 1169 - components: - - pos: -11.5,-3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1170 - components: - - pos: -12.5,-3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1171 - components: - - pos: -12.5,-2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1172 - components: - - pos: -12.5,-1.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1173 - components: - - pos: -12.5,1.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1174 - components: - - pos: -12.5,2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1175 - components: - - pos: -12.5,3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1176 - components: - - pos: -12.5,4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1177 - components: - - pos: -13.5,-3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1178 - components: - - pos: -14.5,-3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1179 - components: - - pos: -15.5,-3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1180 - components: - - pos: -16.5,-3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1181 - components: - - pos: -17.5,-3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1182 - components: - - pos: -18.5,-3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1183 - components: - - pos: -19.5,-3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1184 - components: - - pos: -20.5,-3.5 - parent: 4812 - type: Transform - - uid: 1185 - components: - - pos: -20.5,-4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1186 - components: - - pos: -21.5,-4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1187 - components: - - pos: -21.5,-5.5 - parent: 4812 - type: Transform - - uid: 1188 - components: - - pos: -21.5,-6.5 - parent: 4812 - type: Transform - - uid: 1189 - components: - - pos: -21.5,-7.5 - parent: 4812 - type: Transform - - uid: 1190 - components: - - pos: -21.5,-8.5 - parent: 4812 - type: Transform - - uid: 1191 - components: - - pos: -22.5,-7.5 - parent: 4812 - type: Transform - - uid: 1192 - components: - - pos: -7.5,-3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1193 - components: - - pos: -6.5,-3.5 - parent: 4812 - type: Transform - - uid: 1194 - components: - - pos: -5.5,-3.5 - parent: 4812 - type: Transform - - uid: 1195 - components: - - pos: -4.5,-3.5 - parent: 4812 - type: Transform - - uid: 1196 - components: - - pos: -4.5,-4.5 - parent: 4812 - type: Transform - - uid: 1197 - components: - - pos: -4.5,-5.5 - parent: 4812 - type: Transform - - uid: 1198 - components: - - pos: -4.5,-6.5 - parent: 4812 - type: Transform - - uid: 1199 - components: - - pos: -4.5,-7.5 - parent: 4812 - type: Transform - - uid: 1200 - components: - - pos: -3.5,-7.5 - parent: 4812 - type: Transform - - uid: 1201 - components: - - pos: -2.5,-7.5 - parent: 4812 - type: Transform - - uid: 1202 - components: - - pos: -2.5,-8.5 - parent: 4812 - type: Transform - - uid: 1203 - components: - - pos: -4.5,-2.5 - parent: 4812 - type: Transform - - uid: 1204 - components: - - pos: -4.5,-1.5 - parent: 4812 - type: Transform - - uid: 1205 - components: - - pos: -4.5,-0.5 - parent: 4812 - type: Transform - - uid: 1206 - components: - - pos: -4.5,0.5 - parent: 4812 - type: Transform - - uid: 1207 - components: - - pos: -4.5,1.5 - parent: 4812 - type: Transform - - uid: 1208 - components: - - pos: -4.5,2.5 - parent: 4812 - type: Transform - - uid: 1209 - components: - - pos: -4.5,3.5 - parent: 4812 - type: Transform - - uid: 1210 - components: - - pos: -4.5,4.5 - parent: 4812 - type: Transform - - uid: 1211 - components: - - pos: -4.5,5.5 - parent: 4812 - type: Transform - - uid: 1212 - components: - - pos: -4.5,6.5 - parent: 4812 - type: Transform - - uid: 1213 - components: - - pos: -4.5,7.5 - parent: 4812 - type: Transform - - uid: 1214 - components: - - pos: -4.5,8.5 - parent: 4812 - type: Transform - - uid: 1215 - components: - - pos: -4.5,9.5 - parent: 4812 - type: Transform - - uid: 1216 - components: - - pos: -12.5,14.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1217 - components: - - pos: -12.5,15.5 - parent: 4812 - type: Transform - - uid: 1218 - components: - - pos: -12.5,16.5 - parent: 4812 - type: Transform - - uid: 1219 - components: - - pos: -12.5,17.5 - parent: 4812 - type: Transform - - uid: 1220 - components: - - pos: -12.5,14.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1221 - components: - - pos: -12.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1222 - components: - - pos: -12.5,12.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1223 - components: - - pos: -12.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1224 - components: - - pos: -12.5,10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1225 - components: - - pos: -13.5,10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1226 - components: - - pos: -14.5,10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1227 - components: - - pos: -15.5,10.5 - parent: 4812 - type: Transform - - uid: 1228 - components: - - pos: -17.5,10.5 - parent: 4812 - type: Transform - - uid: 1229 - components: - - pos: -18.5,10.5 - parent: 4812 - type: Transform - - uid: 1230 - components: - - pos: -16.5,10.5 - parent: 4812 - type: Transform - - uid: 1231 - components: - - pos: -19.5,10.5 - parent: 4812 - type: Transform - - uid: 1232 - components: - - pos: -20.5,10.5 - parent: 4812 - type: Transform - - uid: 1233 - components: - - pos: -18.5,9.5 - parent: 4812 - type: Transform - - uid: 1234 - components: - - pos: -18.5,8.5 - parent: 4812 - type: Transform - - uid: 1235 - components: - - pos: -18.5,7.5 - parent: 4812 - type: Transform - - uid: 1236 - components: - - pos: -12.5,5.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1237 - components: - - pos: -12.5,6.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1238 - components: - - pos: -12.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1239 - components: - - pos: -12.5,8.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1240 - components: - - pos: -12.5,9.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1241 - components: - - pos: -14.5,2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1242 - components: - - pos: -15.5,2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1243 - components: - - pos: -16.5,2.5 - parent: 4812 - type: Transform - - uid: 1244 - components: - - pos: -17.5,2.5 - parent: 4812 - type: Transform - - uid: 1245 - components: - - pos: -18.5,2.5 - parent: 4812 - type: Transform - - uid: 1246 - components: - - pos: -19.5,2.5 - parent: 4812 - type: Transform - - uid: 1247 - components: - - pos: -20.5,2.5 - parent: 4812 - type: Transform - - uid: 1248 - components: - - pos: -21.5,2.5 - parent: 4812 - type: Transform - - uid: 1249 - components: - - pos: -22.5,2.5 - parent: 4812 - type: Transform - - uid: 1250 - components: - - pos: -18.5,3.5 - parent: 4812 - type: Transform - - uid: 1251 - components: - - pos: -18.5,4.5 - parent: 4812 - type: Transform - - uid: 1257 - components: - - pos: -18.5,1.5 - parent: 4812 - type: Transform - - uid: 1258 - components: - - pos: -18.5,0.5 - parent: 4812 - type: Transform - - uid: 1259 - components: - - pos: -18.5,-0.5 - parent: 4812 - type: Transform - - uid: 1260 - components: - - pos: -21.5,10.5 - parent: 4812 - type: Transform - - uid: 1261 - components: - - pos: -22.5,10.5 - parent: 4812 - type: Transform - - uid: 1262 - components: - - pos: -22.5,11.5 - parent: 4812 - type: Transform - - uid: 1263 - components: - - pos: -22.5,12.5 - parent: 4812 - type: Transform - - uid: 1264 - components: - - pos: -22.5,13.5 - parent: 4812 - type: Transform - - uid: 1265 - components: - - pos: -22.5,14.5 - parent: 4812 - type: Transform - - uid: 1266 - components: - - pos: -22.5,15.5 - parent: 4812 - type: Transform - - uid: 1267 - components: - - pos: -22.5,16.5 - parent: 4812 - type: Transform - - uid: 1268 - components: - - pos: -21.5,16.5 - parent: 4812 - type: Transform - - uid: 1269 - components: - - pos: -20.5,16.5 - parent: 4812 - type: Transform - - uid: 1270 - components: - - pos: -18.5,16.5 - parent: 4812 - type: Transform - - uid: 1271 - components: - - pos: -19.5,16.5 - parent: 4812 - type: Transform - - uid: 1272 - components: - - pos: -17.5,16.5 - parent: 4812 - type: Transform - - uid: 1273 - components: - - pos: -17.5,15.5 - parent: 4812 - type: Transform - - uid: 1274 - components: - - pos: -17.5,14.5 - parent: 4812 - type: Transform - - uid: 1275 - components: - - pos: -11.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1276 - components: - - pos: -10.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1277 - components: - - pos: -9.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1278 - components: - - pos: -8.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1279 - components: - - pos: -7.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1280 - components: - - pos: -6.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1281 - components: - - pos: -5.5,13.5 - parent: 4812 - type: Transform - - uid: 1282 - components: - - pos: -4.5,13.5 - parent: 4812 - type: Transform - - uid: 1283 - components: - - pos: -3.5,13.5 - parent: 4812 - type: Transform - - uid: 1284 - components: - - pos: -2.5,13.5 - parent: 4812 - type: Transform - - uid: 1285 - components: - - pos: -1.5,13.5 - parent: 4812 - type: Transform - - uid: 1286 - components: - - pos: -2.5,14.5 - parent: 4812 - type: Transform - - uid: 1287 - components: - - pos: 7.5,-8.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1288 - components: - - pos: 7.5,-9.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1289 - components: - - pos: 6.5,-9.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1290 - components: - - pos: 5.5,-9.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1291 - components: - - pos: 4.5,-9.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1292 - components: - - pos: 3.5,-9.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1293 - components: - - pos: 3.5,-8.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1294 - components: - - pos: 2.5,-8.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1295 - components: - - pos: 7.5,-7.5 - parent: 4812 - type: Transform - - uid: 1296 - components: - - pos: 7.5,-6.5 - parent: 4812 - type: Transform - - uid: 1297 - components: - - pos: 6.5,-6.5 - parent: 4812 - type: Transform - - uid: 1298 - components: - - pos: 5.5,-6.5 - parent: 4812 - type: Transform - - uid: 1299 - components: - - pos: 4.5,-6.5 - parent: 4812 - type: Transform - - uid: 1300 - components: - - pos: 4.5,-5.5 - parent: 4812 - type: Transform - - uid: 1301 - components: - - pos: 4.5,-4.5 - parent: 4812 - type: Transform - - uid: 1302 - components: - - pos: 4.5,-3.5 - parent: 4812 - type: Transform - - uid: 1303 - components: - - pos: 4.5,-2.5 - parent: 4812 - type: Transform - - uid: 1304 - components: - - pos: 4.5,-1.5 - parent: 4812 - type: Transform - - uid: 1305 - components: - - pos: 4.5,-0.5 - parent: 4812 - type: Transform - - uid: 1306 - components: - - pos: 4.5,0.5 - parent: 4812 - type: Transform - - uid: 1307 - components: - - pos: 5.5,-1.5 - parent: 4812 - type: Transform - - uid: 1308 - components: - - pos: 6.5,-1.5 - parent: 4812 - type: Transform - - uid: 1309 - components: - - pos: 7.5,-1.5 - parent: 4812 - type: Transform - - uid: 1310 - components: - - pos: 8.5,-1.5 - parent: 4812 - type: Transform - - uid: 1311 - components: - - pos: 9.5,-1.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1312 - components: - - pos: 1.5,-8.5 - parent: 4812 - type: Transform - - uid: 1313 - components: - - pos: 0.5,-8.5 - parent: 4812 - type: Transform - - uid: 1314 - components: - - pos: 0.5,-7.5 - parent: 4812 - type: Transform - - uid: 1315 - components: - - pos: 0.5,-6.5 - parent: 4812 - type: Transform - - uid: 1316 - components: - - pos: 0.5,-5.5 - parent: 4812 - type: Transform - - uid: 1317 - components: - - pos: 0.5,-4.5 - parent: 4812 - type: Transform - - uid: 1318 - components: - - pos: 0.5,-3.5 - parent: 4812 - type: Transform - - uid: 1319 - components: - - pos: 0.5,-2.5 - parent: 4812 - type: Transform - - uid: 1320 - components: - - pos: 0.5,-1.5 - parent: 4812 - type: Transform - - uid: 1321 - components: - - pos: 0.5,-0.5 - parent: 4812 - type: Transform - - uid: 1322 - components: - - pos: 0.5,0.5 - parent: 4812 - type: Transform - - uid: 1323 - components: - - pos: 8.5,-9.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1324 - components: - - pos: 9.5,-9.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1325 - components: - - pos: 9.5,-8.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1326 - components: - - pos: 9.5,-7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1327 - components: - - pos: 9.5,-6.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1328 - components: - - pos: 9.5,-5.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1329 - components: - - pos: 9.5,-4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1330 - components: - - pos: 9.5,-3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1331 - components: - - pos: 9.5,-2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1332 - components: - - pos: 8.5,-10.5 - parent: 4812 - type: Transform - - uid: 1333 - components: - - pos: 8.5,-11.5 - parent: 4812 - type: Transform - - uid: 1334 - components: - - pos: 7.5,-11.5 - parent: 4812 - type: Transform - - uid: 1335 - components: - - pos: 6.5,-11.5 - parent: 4812 - type: Transform - - uid: 1336 - components: - - pos: 5.5,-11.5 - parent: 4812 - type: Transform - - uid: 1337 - components: - - pos: 4.5,-11.5 - parent: 4812 - type: Transform - - uid: 1338 - components: - - pos: 3.5,-11.5 - parent: 4812 - type: Transform - - uid: 1339 - components: - - pos: 2.5,-11.5 - parent: 4812 - type: Transform - - uid: 1340 - components: - - pos: 1.5,-11.5 - parent: 4812 - type: Transform - - uid: 1341 - components: - - pos: 0.5,-11.5 - parent: 4812 - type: Transform - - uid: 1342 - components: - - pos: -0.5,-11.5 - parent: 4812 - type: Transform - - uid: 1343 - components: - - pos: -1.5,-11.5 - parent: 4812 - type: Transform - - uid: 1344 - components: - - pos: -2.5,-11.5 - parent: 4812 - type: Transform - - uid: 1345 - components: - - pos: -3.5,-11.5 - parent: 4812 - type: Transform - - uid: 1346 - components: - - pos: 9.5,-11.5 - parent: 4812 - type: Transform - - uid: 1347 - components: - - pos: 10.5,-11.5 - parent: 4812 - type: Transform - - uid: 1348 - components: - - pos: 11.5,-11.5 - parent: 4812 - type: Transform - - uid: 1349 - components: - - pos: 11.5,-10.5 - parent: 4812 - type: Transform - - uid: 1350 - components: - - pos: 11.5,-9.5 - parent: 4812 - type: Transform - - uid: 1351 - components: - - pos: 11.5,-8.5 - parent: 4812 - type: Transform - - uid: 1352 - components: - - pos: 11.5,-7.5 - parent: 4812 - type: Transform - - uid: 1353 - components: - - pos: 11.5,-6.5 - parent: 4812 - type: Transform - - uid: 1354 - components: - - pos: 11.5,-5.5 - parent: 4812 - type: Transform - - uid: 1355 - components: - - pos: 11.5,-4.5 - parent: 4812 - type: Transform - - uid: 1356 - components: - - pos: 11.5,-3.5 - parent: 4812 - type: Transform - - uid: 1357 - components: - - pos: 11.5,-2.5 - parent: 4812 - type: Transform - - uid: 1358 - components: - - pos: 11.5,-1.5 - parent: 4812 - type: Transform - - uid: 1359 - components: - - pos: 11.5,-0.5 - parent: 4812 - type: Transform - - uid: 1360 - components: - - pos: 6.5,3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1361 - components: - - pos: 7.5,3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1362 - components: - - pos: 8.5,3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1363 - components: - - pos: 11.5,3.5 - parent: 4812 - type: Transform - - uid: 1364 - components: - - pos: 10.5,3.5 - parent: 4812 - type: Transform - - uid: 1365 - components: - - pos: 9.5,3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1366 - components: - - pos: 9.5,2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1367 - components: - - pos: 6.5,5.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1368 - components: - - pos: 6.5,4.5 - parent: 4812 - type: Transform - - uid: 1369 - components: - - pos: 9.5,-0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1370 - components: - - pos: 11.5,4.5 - parent: 4812 - type: Transform - - uid: 1371 - components: - - pos: 11.5,5.5 - parent: 4812 - type: Transform - - uid: 1372 - components: - - pos: 11.5,6.5 - parent: 4812 - type: Transform - - uid: 1373 - components: - - pos: 11.5,7.5 - parent: 4812 - type: Transform - - uid: 1374 - components: - - pos: 11.5,8.5 - parent: 4812 - type: Transform - - uid: 1375 - components: - - pos: 11.5,9.5 - parent: 4812 - type: Transform - - uid: 1376 - components: - - pos: 11.5,10.5 - parent: 4812 - type: Transform - - uid: 1377 - components: - - pos: 11.5,11.5 - parent: 4812 - type: Transform - - uid: 1378 - components: - - pos: 11.5,12.5 - parent: 4812 - type: Transform - - uid: 1379 - components: - - pos: 11.5,13.5 - parent: 4812 - type: Transform - - uid: 1380 - components: - - pos: 11.5,14.5 - parent: 4812 - type: Transform - - uid: 1381 - components: - - pos: 11.5,15.5 - parent: 4812 - type: Transform - - uid: 1382 - components: - - pos: 11.5,16.5 - parent: 4812 - type: Transform - - uid: 1383 - components: - - pos: 9.5,4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1384 - components: - - pos: 9.5,5.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1385 - components: - - pos: 9.5,6.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1386 - components: - - pos: 9.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1387 - components: - - pos: 9.5,8.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1388 - components: - - pos: 9.5,9.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1389 - components: - - pos: 9.5,10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1390 - components: - - pos: 9.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1391 - components: - - pos: 8.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1392 - components: - - pos: 7.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1393 - components: - - pos: 6.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1394 - components: - - pos: 5.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1395 - components: - - pos: 4.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1396 - components: - - pos: 3.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1397 - components: - - pos: 3.5,12.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1398 - components: - - pos: 3.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1399 - components: - - pos: 3.5,14.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1400 - components: - - pos: 2.5,14.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1401 - components: - - pos: 1.5,14.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1402 - components: - - pos: 11.5,17.5 - parent: 4812 - type: Transform - - uid: 1403 - components: - - pos: 11.5,18.5 - parent: 4812 - type: Transform - - uid: 1404 - components: - - pos: 11.5,19.5 - parent: 4812 - type: Transform - - uid: 1405 - components: - - pos: 10.5,19.5 - parent: 4812 - type: Transform - - uid: 1406 - components: - - pos: 9.5,19.5 - parent: 4812 - type: Transform - - uid: 1407 - components: - - pos: 8.5,19.5 - parent: 4812 - type: Transform - - uid: 1408 - components: - - pos: 7.5,19.5 - parent: 4812 - type: Transform - - uid: 1409 - components: - - pos: 6.5,19.5 - parent: 4812 - type: Transform - - uid: 1410 - components: - - pos: 6.5,18.5 - parent: 4812 - type: Transform - - uid: 1411 - components: - - pos: 6.5,17.5 - parent: 4812 - type: Transform - - uid: 1412 - components: - - pos: 6.5,16.5 - parent: 4812 - type: Transform - - uid: 1413 - components: - - pos: 6.5,15.5 - parent: 4812 - type: Transform - - uid: 1414 - components: - - pos: 6.5,14.5 - parent: 4812 - type: Transform - - uid: 1415 - components: - - pos: 7.5,14.5 - parent: 4812 - type: Transform - - uid: 1416 - components: - - pos: 8.5,14.5 - parent: 4812 - type: Transform - - uid: 1417 - components: - - pos: 7.5,17.5 - parent: 4812 - type: Transform - - uid: 1418 - components: - - pos: 8.5,17.5 - parent: 4812 - type: Transform - - uid: 1419 - components: - - pos: 6.5,6.5 - parent: 4812 - type: Transform - - uid: 1420 - components: - - pos: 6.5,7.5 - parent: 4812 - type: Transform - - uid: 1421 - components: - - pos: 6.5,8.5 - parent: 4812 - type: Transform - - uid: 1422 - components: - - pos: 6.5,9.5 - parent: 4812 - type: Transform - - uid: 1423 - components: - - pos: 5.5,7.5 - parent: 4812 - type: Transform - - uid: 1424 - components: - - pos: 4.5,7.5 - parent: 4812 - type: Transform - - uid: 1425 - components: - - pos: 3.5,7.5 - parent: 4812 - type: Transform - - uid: 1426 - components: - - pos: 2.5,7.5 - parent: 4812 - type: Transform - - uid: 1427 - components: - - pos: 2.5,8.5 - parent: 4812 - type: Transform - - uid: 1428 - components: - - pos: 2.5,9.5 - parent: 4812 - type: Transform - - uid: 1429 - components: - - pos: 2.5,6.5 - parent: 4812 - type: Transform - - uid: 1430 - components: - - pos: 2.5,5.5 - parent: 4812 - type: Transform - - uid: 1431 - components: - - pos: 6.5,2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1432 - components: - - pos: 5.5,2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1433 - components: - - pos: 4.5,2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1434 - components: - - pos: 3.5,2.5 - parent: 4812 - type: Transform - - uid: 1435 - components: - - pos: 2.5,2.5 - parent: 4812 - type: Transform - - uid: 1436 - components: - - pos: 1.5,2.5 - parent: 4812 - type: Transform - - uid: 1437 - components: - - pos: 0.5,2.5 - parent: 4812 - type: Transform - - uid: 1438 - components: - - pos: 0.5,3.5 - parent: 4812 - type: Transform - - uid: 1439 - components: - - pos: 0.5,4.5 - parent: 4812 - type: Transform - - uid: 1440 - components: - - pos: 0.5,5.5 - parent: 4812 - type: Transform - - uid: 1441 - components: - - pos: 0.5,6.5 - parent: 4812 - type: Transform - - uid: 1442 - components: - - pos: 0.5,7.5 - parent: 4812 - type: Transform - - uid: 1443 - components: - - pos: 0.5,8.5 - parent: 4812 - type: Transform - - uid: 1444 - components: - - pos: 0.5,9.5 - parent: 4812 - type: Transform - - uid: 1445 - components: - - pos: -0.5,9.5 - parent: 4812 - type: Transform - - uid: 1446 - components: - - pos: -0.5,10.5 - parent: 4812 - type: Transform - - uid: 1447 - components: - - pos: -0.5,4.5 - parent: 4812 - type: Transform - - uid: 1448 - components: - - pos: -0.5,-1.5 - parent: 4812 - type: Transform - - uid: 1449 - components: - - pos: -3.5,1.5 - parent: 4812 - type: Transform - - uid: 1450 - components: - - pos: -3.5,7.5 - parent: 4812 - type: Transform - - uid: 1451 - components: - - pos: -5.5,9.5 - parent: 4812 - type: Transform - - uid: 1452 - components: - - pos: -5.5,10.5 - parent: 4812 - type: Transform - - uid: 1523 - components: - - pos: -22.5,3.5 - parent: 4812 - type: Transform - - uid: 1524 - components: - - pos: -22.5,4.5 - parent: 4812 - type: Transform - - uid: 1525 - components: - - pos: -22.5,5.5 - parent: 4812 - type: Transform - - uid: 1526 - components: - - pos: -22.5,1.5 - parent: 4812 - type: Transform - - uid: 1527 - components: - - pos: -22.5,0.5 - parent: 4812 - type: Transform - - uid: 1528 - components: - - pos: -22.5,-0.5 - parent: 4812 - type: Transform - - uid: 1529 - components: - - pos: -22.5,-1.5 - parent: 4812 - type: Transform - - uid: 1530 - components: - - pos: -23.5,1.5 - parent: 4812 - type: Transform - - uid: 2244 - components: - - pos: -6.5,31.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2245 - components: - - pos: -5.5,31.5 - parent: 4812 - type: Transform - - uid: 2246 - components: - - pos: -4.5,31.5 - parent: 4812 - type: Transform - - uid: 2247 - components: - - pos: -3.5,31.5 - parent: 4812 - type: Transform - - uid: 2248 - components: - - pos: -2.5,31.5 - parent: 4812 - type: Transform - - uid: 2249 - components: - - pos: -2.5,30.5 - parent: 4812 - type: Transform - - uid: 2250 - components: - - pos: -2.5,29.5 - parent: 4812 - type: Transform - - uid: 2251 - components: - - pos: -2.5,28.5 - parent: 4812 - type: Transform - - uid: 2252 - components: - - pos: -3.5,28.5 - parent: 4812 - type: Transform - - uid: 2253 - components: - - pos: -4.5,28.5 - parent: 4812 - type: Transform - - uid: 2254 - components: - - pos: -5.5,28.5 - parent: 4812 - type: Transform - - uid: 2255 - components: - - pos: -1.5,28.5 - parent: 4812 - type: Transform - - uid: 2256 - components: - - pos: -0.5,28.5 - parent: 4812 - type: Transform - - uid: 2257 - components: - - pos: 0.5,28.5 - parent: 4812 - type: Transform - - uid: 2258 - components: - - pos: 1.5,28.5 - parent: 4812 - type: Transform - - uid: 2259 - components: - - pos: -7.5,31.5 - parent: 4812 - type: Transform - - uid: 2260 - components: - - pos: -8.5,31.5 - parent: 4812 - type: Transform - - uid: 2261 - components: - - pos: -7.5,30.5 - parent: 4812 - type: Transform - - uid: 2262 - components: - - pos: -7.5,29.5 - parent: 4812 - type: Transform - - uid: 2263 - components: - - pos: -7.5,28.5 - parent: 4812 - type: Transform - - uid: 2264 - components: - - pos: -7.5,27.5 - parent: 4812 - type: Transform - - uid: 2265 - components: - - pos: -7.5,26.5 - parent: 4812 - type: Transform - - uid: 2266 - components: - - pos: -7.5,25.5 - parent: 4812 - type: Transform - - uid: 2267 - components: - - pos: -7.5,24.5 - parent: 4812 - type: Transform - - uid: 2268 - components: - - pos: -7.5,23.5 - parent: 4812 - type: Transform - - uid: 2269 - components: - - pos: -7.5,22.5 - parent: 4812 - type: Transform - - uid: 2270 - components: - - pos: -7.5,32.5 - parent: 4812 - type: Transform - - uid: 2271 - components: - - pos: -7.5,33.5 - parent: 4812 - type: Transform - - uid: 2272 - components: - - pos: -7.5,34.5 - parent: 4812 - type: Transform - - uid: 2273 - components: - - pos: -2.5,32.5 - parent: 4812 - type: Transform - - uid: 2274 - components: - - pos: -2.5,33.5 - parent: 4812 - type: Transform - - uid: 2275 - components: - - pos: -2.5,34.5 - parent: 4812 - type: Transform - - uid: 2276 - components: - - pos: -3.5,34.5 - parent: 4812 - type: Transform - - uid: 2277 - components: - - pos: -5.5,34.5 - parent: 4812 - type: Transform - - uid: 2278 - components: - - pos: -4.5,34.5 - parent: 4812 - type: Transform - - uid: 2279 - components: - - pos: -1.5,34.5 - parent: 4812 - type: Transform - - uid: 2280 - components: - - pos: -0.5,34.5 - parent: 4812 - type: Transform - - uid: 2281 - components: - - pos: 0.5,34.5 - parent: 4812 - type: Transform - - uid: 2282 - components: - - pos: 1.5,34.5 - parent: 4812 - type: Transform - - uid: 2283 - components: - - pos: 2.5,34.5 - parent: 4812 - type: Transform - - uid: 2284 - components: - - pos: -1.5,32.5 - parent: 4812 - type: Transform - - uid: 2285 - components: - - pos: -0.5,32.5 - parent: 4812 - type: Transform - - uid: 2286 - components: - - pos: 0.5,32.5 - parent: 4812 - type: Transform - - uid: 2287 - components: - - pos: 1.5,32.5 - parent: 4812 - type: Transform - - uid: 2288 - components: - - pos: 2.5,32.5 - parent: 4812 - type: Transform - - uid: 2289 - components: - - pos: 3.5,32.5 - parent: 4812 - type: Transform - - uid: 2290 - components: - - pos: 4.5,32.5 - parent: 4812 - type: Transform - - uid: 2291 - components: - - pos: 5.5,32.5 - parent: 4812 - type: Transform - - uid: 2292 - components: - - pos: 6.5,32.5 - parent: 4812 - type: Transform - - uid: 2293 - components: - - pos: 2.5,31.5 - parent: 4812 - type: Transform - - uid: 2294 - components: - - pos: 2.5,30.5 - parent: 4812 - type: Transform - - uid: 2295 - components: - - pos: 2.5,29.5 - parent: 4812 - type: Transform - - uid: 2296 - components: - - pos: 9.5,27.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2297 - components: - - pos: 9.5,26.5 - parent: 4812 - type: Transform - - uid: 2298 - components: - - pos: 9.5,25.5 - parent: 4812 - type: Transform - - uid: 2299 - components: - - pos: 9.5,24.5 - parent: 4812 - type: Transform - - uid: 2300 - components: - - pos: 9.5,23.5 - parent: 4812 - type: Transform - - uid: 2301 - components: - - pos: 9.5,22.5 - parent: 4812 - type: Transform - - uid: 2302 - components: - - pos: 9.5,21.5 - parent: 4812 - type: Transform - - uid: 2303 - components: - - pos: 8.5,22.5 - parent: 4812 - type: Transform - - uid: 2304 - components: - - pos: 6.5,22.5 - parent: 4812 - type: Transform - - uid: 2305 - components: - - pos: 5.5,22.5 - parent: 4812 - type: Transform - - uid: 2306 - components: - - pos: 7.5,22.5 - parent: 4812 - type: Transform - - uid: 2307 - components: - - pos: 10.5,22.5 - parent: 4812 - type: Transform - - uid: 2308 - components: - - pos: 8.5,25.5 - parent: 4812 - type: Transform - - uid: 2309 - components: - - pos: 7.5,25.5 - parent: 4812 - type: Transform - - uid: 2310 - components: - - pos: 6.5,25.5 - parent: 4812 - type: Transform - - uid: 2311 - components: - - pos: 6.5,26.5 - parent: 4812 - type: Transform - - uid: 2312 - components: - - pos: 6.5,27.5 - parent: 4812 - type: Transform - - uid: 2313 - components: - - pos: 6.5,28.5 - parent: 4812 - type: Transform - - uid: 2314 - components: - - pos: 6.5,29.5 - parent: 4812 - type: Transform - - uid: 2315 - components: - - pos: 7.5,28.5 - parent: 4812 - type: Transform - - uid: 2316 - components: - - pos: 8.5,28.5 - parent: 4812 - type: Transform - - uid: 2317 - components: - - pos: 9.5,28.5 - parent: 4812 - type: Transform - - uid: 2318 - components: - - pos: 10.5,28.5 - parent: 4812 - type: Transform - - uid: 2319 - components: - - pos: 10.5,29.5 - parent: 4812 - type: Transform - - uid: 2320 - components: - - pos: 10.5,30.5 - parent: 4812 - type: Transform - - uid: 2321 - components: - - pos: 5.5,25.5 - parent: 4812 - type: Transform - - uid: 2322 - components: - - pos: 4.5,25.5 - parent: 4812 - type: Transform - - uid: 2323 - components: - - pos: 3.5,25.5 - parent: 4812 - type: Transform - - uid: 2324 - components: - - pos: 3.5,24.5 - parent: 4812 - type: Transform - - uid: 2325 - components: - - pos: 3.5,23.5 - parent: 4812 - type: Transform - - uid: 2326 - components: - - pos: 3.5,22.5 - parent: 4812 - type: Transform - - uid: 2327 - components: - - pos: 3.5,21.5 - parent: 4812 - type: Transform - - uid: 2328 - components: - - pos: 0.5,21.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2329 - components: - - pos: 0.5,20.5 - parent: 4812 - type: Transform - - uid: 2330 - components: - - pos: 0.5,19.5 - parent: 4812 - type: Transform - - uid: 2331 - components: - - pos: -0.5,19.5 - parent: 4812 - type: Transform - - uid: 2332 - components: - - pos: -1.5,19.5 - parent: 4812 - type: Transform - - uid: 2333 - components: - - pos: -2.5,19.5 - parent: 4812 - type: Transform - - uid: 2334 - components: - - pos: -3.5,19.5 - parent: 4812 - type: Transform - - uid: 2335 - components: - - pos: -4.5,19.5 - parent: 4812 - type: Transform - - uid: 2336 - components: - - pos: -5.5,19.5 - parent: 4812 - type: Transform - - uid: 2337 - components: - - pos: -6.5,19.5 - parent: 4812 - type: Transform - - uid: 2338 - components: - - pos: -7.5,19.5 - parent: 4812 - type: Transform - - uid: 2339 - components: - - pos: -8.5,19.5 - parent: 4812 - type: Transform - - uid: 2340 - components: - - pos: -9.5,19.5 - parent: 4812 - type: Transform - - uid: 2341 - components: - - pos: -10.5,19.5 - parent: 4812 - type: Transform - - uid: 2342 - components: - - pos: -11.5,19.5 - parent: 4812 - type: Transform - - uid: 2343 - components: - - pos: -12.5,19.5 - parent: 4812 - type: Transform - - uid: 2344 - components: - - pos: -13.5,19.5 - parent: 4812 - type: Transform - - uid: 2345 - components: - - pos: -14.5,19.5 - parent: 4812 - type: Transform - - uid: 2346 - components: - - pos: -15.5,19.5 - parent: 4812 - type: Transform - - uid: 2347 - components: - - pos: -16.5,19.5 - parent: 4812 - type: Transform - - uid: 2348 - components: - - pos: 1.5,19.5 - parent: 4812 - type: Transform - - uid: 2349 - components: - - pos: 2.5,19.5 - parent: 4812 - type: Transform - - uid: 2350 - components: - - pos: 3.5,19.5 - parent: 4812 - type: Transform - - uid: 2351 - components: - - pos: 4.5,19.5 - parent: 4812 - type: Transform - - uid: 2352 - components: - - pos: 0.5,22.5 - parent: 4812 - type: Transform - - uid: 2353 - components: - - pos: 0.5,23.5 - parent: 4812 - type: Transform - - uid: 2354 - components: - - pos: 0.5,24.5 - parent: 4812 - type: Transform - - uid: 2355 - components: - - pos: 0.5,25.5 - parent: 4812 - type: Transform - - uid: 2356 - components: - - pos: -0.5,25.5 - parent: 4812 - type: Transform - - uid: 2357 - components: - - pos: -1.5,25.5 - parent: 4812 - type: Transform - - uid: 2358 - components: - - pos: -2.5,25.5 - parent: 4812 - type: Transform - - uid: 2359 - components: - - pos: -3.5,25.5 - parent: 4812 - type: Transform - - uid: 2360 - components: - - pos: -4.5,25.5 - parent: 4812 - type: Transform - - uid: 2361 - components: - - pos: -0.5,23.5 - parent: 4812 - type: Transform - - uid: 2362 - components: - - pos: -1.5,23.5 - parent: 4812 - type: Transform - - uid: 2363 - components: - - pos: -2.5,23.5 - parent: 4812 - type: Transform - - uid: 2364 - components: - - pos: -3.5,23.5 - parent: 4812 - type: Transform - - uid: 2365 - components: - - pos: -4.5,23.5 - parent: 4812 - type: Transform - - uid: 2367 - components: - - pos: -14.5,25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2368 - components: - - pos: -14.5,24.5 - parent: 4812 - type: Transform - - uid: 2369 - components: - - pos: -14.5,23.5 - parent: 4812 - type: Transform - - uid: 2370 - components: - - pos: -14.5,22.5 - parent: 4812 - type: Transform - - uid: 2371 - components: - - pos: -15.5,24.5 - parent: 4812 - type: Transform - - uid: 2372 - components: - - pos: -13.5,24.5 - parent: 4812 - type: Transform - - uid: 2373 - components: - - pos: -12.5,24.5 - parent: 4812 - type: Transform - - uid: 2374 - components: - - pos: -11.5,24.5 - parent: 4812 - type: Transform - - uid: 2375 - components: - - pos: -11.5,25.5 - parent: 4812 - type: Transform - - uid: 2376 - components: - - pos: -11.5,26.5 - parent: 4812 - type: Transform - - uid: 2377 - components: - - pos: -11.5,27.5 - parent: 4812 - type: Transform - - uid: 2378 - components: - - pos: -11.5,28.5 - parent: 4812 - type: Transform - - uid: 2379 - components: - - pos: -12.5,28.5 - parent: 4812 - type: Transform - - uid: 2380 - components: - - pos: -13.5,28.5 - parent: 4812 - type: Transform - - uid: 2381 - components: - - pos: -14.5,28.5 - parent: 4812 - type: Transform - - uid: 2382 - components: - - pos: -15.5,28.5 - parent: 4812 - type: Transform - - uid: 2383 - components: - - pos: -11.5,23.5 - parent: 4812 - type: Transform - - uid: 2384 - components: - - pos: -11.5,22.5 - parent: 4812 - type: Transform - - uid: 2395 - components: - - pos: -10.5,23.5 - parent: 4812 - type: Transform - - uid: 2652 - components: - - pos: -11.5,-57.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2815 - components: - - pos: 16.5,35.5 - parent: 4812 - type: Transform - - uid: 2816 - components: - - pos: 16.5,34.5 - parent: 4812 - type: Transform - - uid: 2823 - components: - - pos: 19.5,35.5 - parent: 4812 - type: Transform - - uid: 2826 - components: - - pos: 16.5,33.5 - parent: 4812 - type: Transform - - uid: 2827 - components: - - pos: 21.5,25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2833 - components: - - pos: 11.5,32.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2846 - components: - - pos: 18.5,35.5 - parent: 4812 - type: Transform - - uid: 2847 - components: - - pos: 16.5,30.5 - parent: 4812 - type: Transform - - uid: 2848 - components: - - pos: 22.5,25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2865 - components: - - pos: 16.5,32.5 - parent: 4812 - type: Transform - - uid: 2867 - components: - - pos: 20.5,27.5 - parent: 4812 - type: Transform - - uid: 2868 - components: - - pos: 20.5,25.5 - parent: 4812 - type: Transform - - uid: 2869 - components: - - pos: 16.5,31.5 - parent: 4812 - type: Transform - - uid: 3038 - components: - - pos: 22.5,27.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3039 - components: - - pos: 21.5,27.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3136 - components: - - pos: 17.5,22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3137 - components: - - pos: 17.5,23.5 - parent: 4812 - type: Transform - - uid: 3138 - components: - - pos: 17.5,24.5 - parent: 4812 - type: Transform - - uid: 3139 - components: - - pos: 17.5,25.5 - parent: 4812 - type: Transform - - uid: 3140 - components: - - pos: 17.5,26.5 - parent: 4812 - type: Transform - - uid: 3141 - components: - - pos: 18.5,26.5 - parent: 4812 - type: Transform - - uid: 3142 - components: - - pos: 19.5,26.5 - parent: 4812 - type: Transform - - uid: 3143 - components: - - pos: 20.5,26.5 - parent: 4812 - type: Transform - - uid: 3146 - components: - - pos: 18.5,24.5 - parent: 4812 - type: Transform - - uid: 3147 - components: - - pos: 19.5,24.5 - parent: 4812 - type: Transform - - uid: 3148 - components: - - pos: 20.5,24.5 - parent: 4812 - type: Transform - - uid: 3151 - components: - - pos: 16.5,26.5 - parent: 4812 - type: Transform - - uid: 3152 - components: - - pos: 15.5,26.5 - parent: 4812 - type: Transform - - uid: 3153 - components: - - pos: 15.5,27.5 - parent: 4812 - type: Transform - - uid: 3154 - components: - - pos: 15.5,28.5 - parent: 4812 - type: Transform - - uid: 3155 - components: - - pos: 15.5,29.5 - parent: 4812 - type: Transform - - uid: 3156 - components: - - pos: 16.5,29.5 - parent: 4812 - type: Transform - - uid: 3157 - components: - - pos: 17.5,21.5 - parent: 4812 - type: Transform - - uid: 3158 - components: - - pos: 17.5,20.5 - parent: 4812 - type: Transform - - uid: 3159 - components: - - pos: 17.5,19.5 - parent: 4812 - type: Transform - - uid: 3160 - components: - - pos: 17.5,18.5 - parent: 4812 - type: Transform - - uid: 3161 - components: - - pos: 17.5,17.5 - parent: 4812 - type: Transform - - uid: 3162 - components: - - pos: 16.5,20.5 - parent: 4812 - type: Transform - - uid: 3163 - components: - - pos: 15.5,20.5 - parent: 4812 - type: Transform - - uid: 3164 - components: - - pos: 18.5,20.5 - parent: 4812 - type: Transform - - uid: 3165 - components: - - pos: 19.5,20.5 - parent: 4812 - type: Transform - - uid: 3166 - components: - - pos: 16.5,18.5 - parent: 4812 - type: Transform - - uid: 3167 - components: - - pos: 15.5,18.5 - parent: 4812 - type: Transform - - uid: 3168 - components: - - pos: 19.5,18.5 - parent: 4812 - type: Transform - - uid: 3169 - components: - - pos: 18.5,18.5 - parent: 4812 - type: Transform - - uid: 3170 - components: - - pos: 19.5,17.5 - parent: 4812 - type: Transform - - uid: 3171 - components: - - pos: 19.5,16.5 - parent: 4812 - type: Transform - - uid: 3172 - components: - - pos: 19.5,15.5 - parent: 4812 - type: Transform - - uid: 3173 - components: - - pos: 19.5,14.5 - parent: 4812 - type: Transform - - uid: 3174 - components: - - pos: 20.5,14.5 - parent: 4812 - type: Transform - - uid: 3175 - components: - - pos: 21.5,14.5 - parent: 4812 - type: Transform - - uid: 3176 - components: - - pos: 22.5,14.5 - parent: 4812 - type: Transform - - uid: 3177 - components: - - pos: 23.5,14.5 - parent: 4812 - type: Transform - - uid: 3178 - components: - - pos: 24.5,14.5 - parent: 4812 - type: Transform - - uid: 3179 - components: - - pos: 25.5,14.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3180 - components: - - pos: 26.5,14.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3181 - components: - - pos: 27.5,14.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3182 - components: - - pos: 18.5,14.5 - parent: 4812 - type: Transform - - uid: 3183 - components: - - pos: 17.5,14.5 - parent: 4812 - type: Transform - - uid: 3184 - components: - - pos: 16.5,14.5 - parent: 4812 - type: Transform - - uid: 3185 - components: - - pos: 15.5,14.5 - parent: 4812 - type: Transform - - uid: 3186 - components: - - pos: 14.5,14.5 - parent: 4812 - type: Transform - - uid: 3192 - components: - - pos: 17.5,35.5 - parent: 4812 - type: Transform - - uid: 3195 - components: - - pos: 12.5,32.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3196 - components: - - pos: 12.5,31.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3197 - components: - - pos: 12.5,30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3198 - components: - - pos: 12.5,29.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3199 - components: - - pos: 12.5,28.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3200 - components: - - pos: 12.5,27.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3201 - components: - - pos: 12.5,26.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3202 - components: - - pos: 12.5,25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3203 - components: - - pos: 12.5,24.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3204 - components: - - pos: 12.5,23.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3205 - components: - - pos: 12.5,22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3897 - components: - - pos: 11.5,51.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3898 - components: - - pos: 11.5,50.5 - parent: 4812 - type: Transform - - uid: 3899 - components: - - pos: 10.5,50.5 - parent: 4812 - type: Transform - - uid: 3900 - components: - - pos: 10.5,49.5 - parent: 4812 - type: Transform - - uid: 3901 - components: - - pos: 10.5,48.5 - parent: 4812 - type: Transform - - uid: 3902 - components: - - pos: 10.5,47.5 - parent: 4812 - type: Transform - - uid: 3903 - components: - - pos: 10.5,46.5 - parent: 4812 - type: Transform - - uid: 3904 - components: - - pos: 10.5,45.5 - parent: 4812 - type: Transform - - uid: 3905 - components: - - pos: 10.5,44.5 - parent: 4812 - type: Transform - - uid: 3906 - components: - - pos: 10.5,43.5 - parent: 4812 - type: Transform - - uid: 3907 - components: - - pos: 11.5,45.5 - parent: 4812 - type: Transform - - uid: 3908 - components: - - pos: 12.5,45.5 - parent: 4812 - type: Transform - - uid: 3909 - components: - - pos: 13.5,45.5 - parent: 4812 - type: Transform - - uid: 3910 - components: - - pos: 14.5,45.5 - parent: 4812 - type: Transform - - uid: 3911 - components: - - pos: 15.5,45.5 - parent: 4812 - type: Transform - - uid: 3912 - components: - - pos: 15.5,46.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3913 - components: - - pos: 9.5,45.5 - parent: 4812 - type: Transform - - uid: 3914 - components: - - pos: 8.5,45.5 - parent: 4812 - type: Transform - - uid: 3915 - components: - - pos: 7.5,45.5 - parent: 4812 - type: Transform - - uid: 3916 - components: - - pos: 6.5,45.5 - parent: 4812 - type: Transform - - uid: 3917 - components: - - pos: 5.5,45.5 - parent: 4812 - type: Transform - - uid: 3918 - components: - - pos: 4.5,45.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3919 - components: - - pos: 3.5,45.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3920 - components: - - pos: 6.5,46.5 - parent: 4812 - type: Transform - - uid: 3921 - components: - - pos: 6.5,47.5 - parent: 4812 - type: Transform - - uid: 3922 - components: - - pos: 9.5,50.5 - parent: 4812 - type: Transform - - uid: 3923 - components: - - pos: 8.5,50.5 - parent: 4812 - type: Transform - - uid: 3924 - components: - - pos: 8.5,51.5 - parent: 4812 - type: Transform - - uid: 3925 - components: - - pos: 8.5,52.5 - parent: 4812 - type: Transform - - uid: 3926 - components: - - pos: 8.5,53.5 - parent: 4812 - type: Transform - - uid: 3927 - components: - - pos: 8.5,54.5 - parent: 4812 - type: Transform - - uid: 3928 - components: - - pos: 8.5,55.5 - parent: 4812 - type: Transform - - uid: 3929 - components: - - pos: 12.5,50.5 - parent: 4812 - type: Transform - - uid: 3930 - components: - - pos: 12.5,51.5 - parent: 4812 - type: Transform - - uid: 3931 - components: - - pos: 12.5,52.5 - parent: 4812 - type: Transform - - uid: 3932 - components: - - pos: 12.5,53.5 - parent: 4812 - type: Transform - - uid: 3933 - components: - - pos: 12.5,54.5 - parent: 4812 - type: Transform - - uid: 3934 - components: - - pos: 12.5,55.5 - parent: 4812 - type: Transform - - uid: 3935 - components: - - pos: 11.5,53.5 - parent: 4812 - type: Transform - - uid: 3936 - components: - - pos: 10.5,53.5 - parent: 4812 - type: Transform - - uid: 3937 - components: - - pos: 9.5,53.5 - parent: 4812 - type: Transform - - uid: 3938 - components: - - pos: 10.5,52.5 - parent: 4812 - type: Transform - - uid: 3939 - components: - - pos: 11.5,55.5 - parent: 4812 - type: Transform - - uid: 3940 - components: - - pos: 10.5,55.5 - parent: 4812 - type: Transform - - uid: 3941 - components: - - pos: 9.5,55.5 - parent: 4812 - type: Transform - - uid: 3942 - components: - - pos: 13.5,53.5 - parent: 4812 - type: Transform - - uid: 3943 - components: - - pos: 7.5,53.5 - parent: 4812 - type: Transform - - uid: 4010 - components: - - pos: -9.5,-23.5 - parent: 4812 - type: Transform - - uid: 4257 - components: - - pos: 22.5,-1.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4258 - components: - - pos: 22.5,-2.5 - parent: 4812 - type: Transform - - uid: 4259 - components: - - pos: 21.5,-2.5 - parent: 4812 - type: Transform - - uid: 4260 - components: - - pos: 20.5,-2.5 - parent: 4812 - type: Transform - - uid: 4261 - components: - - pos: 19.5,-2.5 - parent: 4812 - type: Transform - - uid: 4262 - components: - - pos: 18.5,-2.5 - parent: 4812 - type: Transform - - uid: 4263 - components: - - pos: 17.5,-2.5 - parent: 4812 - type: Transform - - uid: 4264 - components: - - pos: 16.5,-2.5 - parent: 4812 - type: Transform - - uid: 4265 - components: - - pos: 15.5,-2.5 - parent: 4812 - type: Transform - - uid: 4266 - components: - - pos: 14.5,-2.5 - parent: 4812 - type: Transform - - uid: 4267 - components: - - pos: 12.5,7.5 - parent: 4812 - type: Transform - - uid: 4268 - components: - - pos: 13.5,7.5 - parent: 4812 - type: Transform - - uid: 4269 - components: - - pos: 14.5,7.5 - parent: 4812 - type: Transform - - uid: 4270 - components: - - pos: 15.5,7.5 - parent: 4812 - type: Transform - - uid: 4271 - components: - - pos: 16.5,7.5 - parent: 4812 - type: Transform - - uid: 4272 - components: - - pos: 22.5,-0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4273 - components: - - pos: 21.5,-0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4274 - components: - - pos: 20.5,-0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4275 - components: - - pos: 19.5,-0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4276 - components: - - pos: 18.5,-0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4277 - components: - - pos: 17.5,-0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4278 - components: - - pos: 16.5,-0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4279 - components: - - pos: 15.5,-0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4280 - components: - - pos: 15.5,0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4281 - components: - - pos: 15.5,1.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4282 - components: - - pos: 15.5,2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4283 - components: - - pos: 15.5,3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4284 - components: - - pos: 15.5,4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4285 - components: - - pos: 16.5,4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4286 - components: - - pos: 17.5,4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4287 - components: - - pos: 18.5,4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4288 - components: - - pos: 18.5,5.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4289 - components: - - pos: 18.5,6.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4290 - components: - - pos: 18.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4291 - components: - - pos: 18.5,8.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4292 - components: - - pos: 18.5,9.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4293 - components: - - pos: 18.5,10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4294 - components: - - pos: 17.5,10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4295 - components: - - pos: 16.5,10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4296 - components: - - pos: 15.5,10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4297 - components: - - pos: 14.5,10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4298 - components: - - pos: 19.5,10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4299 - components: - - pos: 20.5,10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4300 - components: - - pos: 23.5,-2.5 - parent: 4812 - type: Transform - - uid: 4301 - components: - - pos: 24.5,-2.5 - parent: 4812 - type: Transform - - uid: 4302 - components: - - pos: 25.5,-2.5 - parent: 4812 - type: Transform - - uid: 4303 - components: - - pos: 26.5,-2.5 - parent: 4812 - type: Transform - - uid: 4304 - components: - - pos: 27.5,-2.5 - parent: 4812 - type: Transform - - uid: 4305 - components: - - pos: 28.5,-2.5 - parent: 4812 - type: Transform - - uid: 4306 - components: - - pos: 29.5,-2.5 - parent: 4812 - type: Transform - - uid: 4307 - components: - - pos: 30.5,-2.5 - parent: 4812 - type: Transform - - uid: 4308 - components: - - pos: 30.5,-1.5 - parent: 4812 - type: Transform - - uid: 4309 - components: - - pos: 30.5,-0.5 - parent: 4812 - type: Transform - - uid: 4310 - components: - - pos: 30.5,0.5 - parent: 4812 - type: Transform - - uid: 4311 - components: - - pos: 30.5,1.5 - parent: 4812 - type: Transform - - uid: 4312 - components: - - pos: 30.5,2.5 - parent: 4812 - type: Transform - - uid: 4313 - components: - - pos: 30.5,3.5 - parent: 4812 - type: Transform - - uid: 4314 - components: - - pos: 30.5,4.5 - parent: 4812 - type: Transform - - uid: 4315 - components: - - pos: 31.5,2.5 - parent: 4812 - type: Transform - - uid: 4316 - components: - - pos: 32.5,2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4317 - components: - - pos: 33.5,2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4318 - components: - - pos: 31.5,0.5 - parent: 4812 - type: Transform - - uid: 4319 - components: - - pos: 32.5,0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4320 - components: - - pos: 33.5,0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4321 - components: - - pos: 30.5,-3.5 - parent: 4812 - type: Transform - - uid: 4322 - components: - - pos: 30.5,-4.5 - parent: 4812 - type: Transform - - uid: 4323 - components: - - pos: 30.5,-5.5 - parent: 4812 - type: Transform - - uid: 4324 - components: - - pos: 30.5,-6.5 - parent: 4812 - type: Transform - - uid: 4325 - components: - - pos: 30.5,-7.5 - parent: 4812 - type: Transform - - uid: 4326 - components: - - pos: 30.5,-8.5 - parent: 4812 - type: Transform - - uid: 4327 - components: - - pos: 30.5,-9.5 - parent: 4812 - type: Transform - - uid: 4328 - components: - - pos: 31.5,-7.5 - parent: 4812 - type: Transform - - uid: 4329 - components: - - pos: 32.5,-7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4330 - components: - - pos: 33.5,-7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4331 - components: - - pos: 31.5,-5.5 - parent: 4812 - type: Transform - - uid: 4332 - components: - - pos: 32.5,-5.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4333 - components: - - pos: 33.5,-5.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4334 - components: - - pos: 29.5,-7.5 - parent: 4812 - type: Transform - - uid: 4335 - components: - - pos: 28.5,-7.5 - parent: 4812 - type: Transform - - uid: 4336 - components: - - pos: 27.5,-7.5 - parent: 4812 - type: Transform - - uid: 4337 - components: - - pos: 26.5,-7.5 - parent: 4812 - type: Transform - - uid: 4338 - components: - - pos: 25.5,-7.5 - parent: 4812 - type: Transform - - uid: 4339 - components: - - pos: 24.5,-7.5 - parent: 4812 - type: Transform - - uid: 4340 - components: - - pos: 24.5,-6.5 - parent: 4812 - type: Transform - - uid: 4341 - components: - - pos: 24.5,-5.5 - parent: 4812 - type: Transform - - uid: 4342 - components: - - pos: 24.5,-4.5 - parent: 4812 - type: Transform - - uid: 4343 - components: - - pos: 24.5,-3.5 - parent: 4812 - type: Transform - - uid: 4344 - components: - - pos: 24.5,-1.5 - parent: 4812 - type: Transform - - uid: 4345 - components: - - pos: 24.5,-0.5 - parent: 4812 - type: Transform - - uid: 4346 - components: - - pos: 24.5,0.5 - parent: 4812 - type: Transform - - uid: 4347 - components: - - pos: 24.5,1.5 - parent: 4812 - type: Transform - - uid: 4348 - components: - - pos: 24.5,2.5 - parent: 4812 - type: Transform - - uid: 4349 - components: - - pos: 24.5,3.5 - parent: 4812 - type: Transform - - uid: 4350 - components: - - pos: 24.5,4.5 - parent: 4812 - type: Transform - - uid: 4351 - components: - - pos: 23.5,4.5 - parent: 4812 - type: Transform - - uid: 4352 - components: - - pos: 22.5,4.5 - parent: 4812 - type: Transform - - uid: 4353 - components: - - pos: 22.5,5.5 - parent: 4812 - type: Transform - - uid: 4354 - components: - - pos: 22.5,6.5 - parent: 4812 - type: Transform - - uid: 4355 - components: - - pos: 22.5,7.5 - parent: 4812 - type: Transform - - uid: 4356 - components: - - pos: 22.5,8.5 - parent: 4812 - type: Transform - - uid: 4357 - components: - - pos: 19.5,4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4358 - components: - - pos: 23.5,-7.5 - parent: 4812 - type: Transform - - uid: 4359 - components: - - pos: 22.5,-7.5 - parent: 4812 - type: Transform - - uid: 4360 - components: - - pos: 21.5,-7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4361 - components: - - pos: 20.5,-7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4362 - components: - - pos: 19.5,-7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4363 - components: - - pos: 18.5,-7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4364 - components: - - pos: 17.5,-7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4365 - components: - - pos: 16.5,-7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4366 - components: - - pos: 15.5,-7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4367 - components: - - pos: 15.5,-6.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4368 - components: - - pos: 15.5,-5.5 - parent: 4812 - type: Transform - - uid: 4369 - components: - - pos: 14.5,-7.5 - parent: 4812 - type: Transform - - uid: 4660 - components: - - pos: -13.5,-50.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4689 - components: - - pos: -11.5,-56.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4690 - components: - - pos: -11.5,-55.5 - parent: 4812 - type: Transform - - uid: 4724 - components: - - pos: -11.5,-54.5 - parent: 4812 - type: Transform - - uid: 4863 - components: - - pos: -18.5,-28.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4864 - components: - - pos: -13.5,-27.5 - parent: 4812 - type: Transform - - uid: 4866 - components: - - pos: -17.5,-28.5 - parent: 4812 - type: Transform - - uid: 4867 - components: - - pos: -16.5,-27.5 - parent: 4812 - type: Transform - - uid: 4868 - components: - - pos: -15.5,-27.5 - parent: 4812 - type: Transform - - uid: 4869 - components: - - pos: -23.5,-25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4894 - components: - - pos: -14.5,-27.5 - parent: 4812 - type: Transform - - uid: 4895 - components: - - pos: -27.5,-25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4896 - components: - - pos: -26.5,-25.5 - parent: 4812 - type: Transform - - uid: 4897 - components: - - pos: -25.5,-27.5 - parent: 4812 - type: Transform - - uid: 4899 - components: - - pos: -25.5,-28.5 - parent: 4812 - type: Transform - - uid: 4900 - components: - - pos: -25.5,-24.5 - parent: 4812 - type: Transform - - uid: 4901 - components: - - pos: -25.5,-23.5 - parent: 4812 - type: Transform - - uid: 4902 - components: - - pos: -25.5,-25.5 - parent: 4812 - type: Transform - - uid: 4903 - components: - - pos: -25.5,-26.5 - parent: 4812 - type: Transform - - uid: 4904 - components: - - pos: -25.5,-22.5 - parent: 4812 - type: Transform - - uid: 4905 - components: - - pos: -26.5,-23.5 - parent: 4812 - type: Transform - - uid: 4906 - components: - - pos: -23.5,-22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4907 - components: - - pos: -24.5,-22.5 - parent: 4812 - type: Transform - - uid: 4908 - components: - - pos: -21.5,-27.5 - parent: 4812 - type: Transform - - uid: 4909 - components: - - pos: -18.5,-20.5 - parent: 4812 - type: Transform - - uid: 4910 - components: - - pos: -20.5,-27.5 - parent: 4812 - type: Transform - - uid: 4911 - components: - - pos: -22.5,-22.5 - parent: 4812 - type: Transform - - uid: 4912 - components: - - pos: -18.5,-21.5 - parent: 4812 - type: Transform - - uid: 4913 - components: - - pos: -18.5,-19.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4930 - components: - - pos: -20.5,-12.5 - parent: 4812 - type: Transform - - uid: 4946 - components: - - pos: -9.5,-22.5 - parent: 4812 - type: Transform - - uid: 4947 - components: - - pos: -17.5,-27.5 - parent: 4812 - type: Transform - - uid: 4948 - components: - - pos: -13.5,-26.5 - parent: 4812 - type: Transform - - uid: 4949 - components: - - pos: -16.5,-26.5 - parent: 4812 - type: Transform - - uid: 5008 - components: - - pos: -22.5,-26.5 - parent: 4812 - type: Transform - - uid: 5009 - components: - - pos: -22.5,-27.5 - parent: 4812 - type: Transform - - uid: 5017 - components: - - pos: -22.5,-25.5 - parent: 4812 - type: Transform - - uid: 5029 - components: - - pos: -15.5,-20.5 - parent: 4812 - type: Transform - - uid: 5030 - components: - - pos: -19.5,-14.5 - parent: 4812 - type: Transform - - uid: 5031 - components: - - pos: -15.5,-17.5 - parent: 4812 - type: Transform - - uid: 5034 - components: - - pos: -15.5,-15.5 - parent: 4812 - type: Transform - - uid: 5035 - components: - - pos: -22.5,-12.5 - parent: 4812 - type: Transform - - uid: 5036 - components: - - pos: -19.5,-16.5 - parent: 4812 - type: Transform - - uid: 5037 - components: - - pos: -15.5,-21.5 - parent: 4812 - type: Transform - - uid: 5038 - components: - - pos: -17.5,-15.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5041 - components: - - pos: -11.5,-58.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5044 - components: - - pos: -19.5,-20.5 - parent: 4812 - type: Transform - - uid: 5052 - components: - - pos: -19.5,-18.5 - parent: 4812 - type: Transform - - uid: 5056 - components: - - pos: -18.5,-22.5 - parent: 4812 - type: Transform - - uid: 5057 - components: - - pos: -21.5,-12.5 - parent: 4812 - type: Transform - - uid: 5058 - components: - - pos: -20.5,-23.5 - parent: 4812 - type: Transform - - uid: 5229 - components: - - pos: -12.5,-50.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5232 - components: - - pos: -11.5,-50.5 - parent: 4812 - type: Transform - - uid: 5233 - components: - - pos: -10.5,-50.5 - parent: 4812 - type: Transform - - uid: 5234 - components: - - pos: -9.5,-50.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5235 - components: - - pos: -8.5,-50.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5236 - components: - - pos: -8.5,-43.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5237 - components: - - pos: -9.5,-43.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5238 - components: - - pos: -10.5,-43.5 - parent: 4812 - type: Transform - - uid: 5239 - components: - - pos: -11.5,-43.5 - parent: 4812 - type: Transform - - uid: 5240 - components: - - pos: -12.5,-43.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5241 - components: - - pos: -13.5,-43.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5242 - components: - - pos: -11.5,-53.5 - parent: 4812 - type: Transform - - uid: 5243 - components: - - pos: -11.5,-52.5 - parent: 4812 - type: Transform - - uid: 5244 - components: - - pos: -11.5,-51.5 - parent: 4812 - type: Transform - - uid: 5245 - components: - - pos: -11.5,-49.5 - parent: 4812 - type: Transform - - uid: 5246 - components: - - pos: -11.5,-48.5 - parent: 4812 - type: Transform - - uid: 5247 - components: - - pos: -11.5,-47.5 - parent: 4812 - type: Transform - - uid: 5248 - components: - - pos: -11.5,-46.5 - parent: 4812 - type: Transform - - uid: 5249 - components: - - pos: -11.5,-45.5 - parent: 4812 - type: Transform - - uid: 5250 - components: - - pos: -11.5,-44.5 - parent: 4812 - type: Transform - - uid: 5251 - components: - - pos: -11.5,-42.5 - parent: 4812 - type: Transform - - uid: 5252 - components: - - pos: -11.5,-41.5 - parent: 4812 - type: Transform - - uid: 5253 - components: - - pos: -11.5,-40.5 - parent: 4812 - type: Transform - - uid: 5254 - components: - - pos: -11.5,-39.5 - parent: 4812 - type: Transform - - uid: 5255 - components: - - pos: -11.5,-38.5 - parent: 4812 - type: Transform - - uid: 5256 - components: - - pos: -11.5,-37.5 - parent: 4812 - type: Transform - - uid: 5257 - components: - - pos: -11.5,-36.5 - parent: 4812 - type: Transform - - uid: 5258 - components: - - pos: -11.5,-35.5 - parent: 4812 - type: Transform - - uid: 5259 - components: - - pos: -11.5,-34.5 - parent: 4812 - type: Transform - - uid: 5260 - components: - - pos: -10.5,-34.5 - parent: 4812 - type: Transform - - uid: 5261 - components: - - pos: -9.5,-34.5 - parent: 4812 - type: Transform - - uid: 5262 - components: - - pos: -8.5,-34.5 - parent: 4812 - type: Transform - - uid: 5263 - components: - - pos: -7.5,-34.5 - parent: 4812 - type: Transform - - uid: 5264 - components: - - pos: -6.5,-34.5 - parent: 4812 - type: Transform - - uid: 5265 - components: - - pos: -5.5,-34.5 - parent: 4812 - type: Transform - - uid: 5266 - components: - - pos: -4.5,-34.5 - parent: 4812 - type: Transform - - uid: 5267 - components: - - pos: -3.5,-34.5 - parent: 4812 - type: Transform - - uid: 5268 - components: - - pos: -2.5,-34.5 - parent: 4812 - type: Transform - - uid: 5269 - components: - - pos: -1.5,-34.5 - parent: 4812 - type: Transform - - uid: 5270 - components: - - pos: -0.5,-34.5 - parent: 4812 - type: Transform - - uid: 5271 - components: - - pos: 0.5,-34.5 - parent: 4812 - type: Transform - - uid: 5272 - components: - - pos: -8.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5364 - components: - - pos: -14.5,-22.5 - parent: 4812 - type: Transform - - uid: 6022 - components: - - pos: 6.5,-19.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6023 - components: - - pos: 6.5,-18.5 - parent: 4812 - type: Transform - - uid: 6024 - components: - - pos: 6.5,-17.5 - parent: 4812 - type: Transform - - uid: 6025 - components: - - pos: 6.5,-16.5 - parent: 4812 - type: Transform - - uid: 6026 - components: - - pos: 6.5,-15.5 - parent: 4812 - type: Transform - - uid: 6027 - components: - - pos: 5.5,-15.5 - parent: 4812 - type: Transform - - uid: 6028 - components: - - pos: 4.5,-15.5 - parent: 4812 - type: Transform - - uid: 6029 - components: - - pos: 5.5,-18.5 - parent: 4812 - type: Transform - - uid: 6030 - components: - - pos: 4.5,-18.5 - parent: 4812 - type: Transform - - uid: 6031 - components: - - pos: 13.5,-16.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6032 - components: - - pos: 6.5,-21.5 - parent: 4812 - type: Transform - - uid: 6033 - components: - - pos: 5.5,-21.5 - parent: 4812 - type: Transform - - uid: 6034 - components: - - pos: 5.5,-22.5 - parent: 4812 - type: Transform - - uid: 6035 - components: - - pos: 5.5,-23.5 - parent: 4812 - type: Transform - - uid: 6036 - components: - - pos: 5.5,-24.5 - parent: 4812 - type: Transform - - uid: 6037 - components: - - pos: 5.5,-25.5 - parent: 4812 - type: Transform - - uid: 6038 - components: - - pos: 5.5,-26.5 - parent: 4812 - type: Transform - - uid: 6039 - components: - - pos: 5.5,-27.5 - parent: 4812 - type: Transform - - uid: 6040 - components: - - pos: 4.5,-27.5 - parent: 4812 - type: Transform - - uid: 6041 - components: - - pos: 4.5,-24.5 - parent: 4812 - type: Transform - - uid: 6042 - components: - - pos: 4.5,-21.5 - parent: 4812 - type: Transform - - uid: 6043 - components: - - pos: 7.5,-21.5 - parent: 4812 - type: Transform - - uid: 6044 - components: - - pos: 8.5,-21.5 - parent: 4812 - type: Transform - - uid: 6045 - components: - - pos: 9.5,-21.5 - parent: 4812 - type: Transform - - uid: 6046 - components: - - pos: 10.5,-21.5 - parent: 4812 - type: Transform - - uid: 6047 - components: - - pos: 11.5,-21.5 - parent: 4812 - type: Transform - - uid: 6048 - components: - - pos: 12.5,-21.5 - parent: 4812 - type: Transform - - uid: 6049 - components: - - pos: 13.5,-21.5 - parent: 4812 - type: Transform - - uid: 6050 - components: - - pos: 14.5,-21.5 - parent: 4812 - type: Transform - - uid: 6052 - components: - - pos: 13.5,-19.5 - parent: 4812 - type: Transform - - uid: 6053 - components: - - pos: 13.5,-18.5 - parent: 4812 - type: Transform - - uid: 6054 - components: - - pos: 13.5,-17.5 - parent: 4812 - type: Transform - - uid: 6055 - components: - - pos: 10.5,-20.5 - parent: 4812 - type: Transform - - uid: 6056 - components: - - pos: 10.5,-19.5 - parent: 4812 - type: Transform - - uid: 6057 - components: - - pos: 10.5,-18.5 - parent: 4812 - type: Transform - - uid: 6058 - components: - - pos: 10.5,-17.5 - parent: 4812 - type: Transform - - uid: 6059 - components: - - pos: 10.5,-16.5 - parent: 4812 - type: Transform - - uid: 6060 - components: - - pos: 10.5,-15.5 - parent: 4812 - type: Transform - - uid: 6061 - components: - - pos: 10.5,-14.5 - parent: 4812 - type: Transform - - uid: 6062 - components: - - pos: 11.5,-15.5 - parent: 4812 - type: Transform - - uid: 6063 - components: - - pos: 12.5,-15.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6066 - components: - - pos: 9.5,-22.5 - parent: 4812 - type: Transform - - uid: 6067 - components: - - pos: 9.5,-23.5 - parent: 4812 - type: Transform - - uid: 6068 - components: - - pos: 9.5,-24.5 - parent: 4812 - type: Transform - - uid: 6069 - components: - - pos: 9.5,-25.5 - parent: 4812 - type: Transform - - uid: 6070 - components: - - pos: 9.5,-26.5 - parent: 4812 - type: Transform - - uid: 6071 - components: - - pos: 9.5,-27.5 - parent: 4812 - type: Transform - - uid: 6072 - components: - - pos: 9.5,-28.5 - parent: 4812 - type: Transform - - uid: 6073 - components: - - pos: 10.5,-25.5 - parent: 4812 - type: Transform - - uid: 6074 - components: - - pos: 11.5,-25.5 - parent: 4812 - type: Transform - - uid: 6075 - components: - - pos: 12.5,-25.5 - parent: 4812 - type: Transform - - uid: 6076 - components: - - pos: 13.5,-25.5 - parent: 4812 - type: Transform - - uid: 6077 - components: - - pos: 14.5,-25.5 - parent: 4812 - type: Transform - - uid: 6078 - components: - - pos: 15.5,-25.5 - parent: 4812 - type: Transform - - uid: 6079 - components: - - pos: 28.5,-21.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6080 - components: - - pos: 28.5,-20.5 - parent: 4812 - type: Transform - - uid: 6081 - components: - - pos: 28.5,-19.5 - parent: 4812 - type: Transform - - uid: 6082 - components: - - pos: 26.5,-19.5 - parent: 4812 - type: Transform - - uid: 6083 - components: - - pos: 27.5,-19.5 - parent: 4812 - type: Transform - - uid: 6084 - components: - - pos: 26.5,-18.5 - parent: 4812 - type: Transform - - uid: 6085 - components: - - pos: 25.5,-18.5 - parent: 4812 - type: Transform - - uid: 6086 - components: - - pos: 28.5,-22.5 - parent: 4812 - type: Transform - - uid: 6087 - components: - - pos: 27.5,-22.5 - parent: 4812 - type: Transform - - uid: 6088 - components: - - pos: 26.5,-22.5 - parent: 4812 - type: Transform - - uid: 6089 - components: - - pos: 25.5,-22.5 - parent: 4812 - type: Transform - - uid: 6090 - components: - - pos: 24.5,-22.5 - parent: 4812 - type: Transform - - uid: 6091 - components: - - pos: 23.5,-22.5 - parent: 4812 - type: Transform - - uid: 6092 - components: - - pos: 22.5,-22.5 - parent: 4812 - type: Transform - - uid: 6093 - components: - - pos: 21.5,-22.5 - parent: 4812 - type: Transform - - uid: 6094 - components: - - pos: 21.5,-21.5 - parent: 4812 - type: Transform - - uid: 6095 - components: - - pos: 20.5,-21.5 - parent: 4812 - type: Transform - - uid: 6096 - components: - - pos: 19.5,-21.5 - parent: 4812 - type: Transform - - uid: 6097 - components: - - pos: 18.5,-21.5 - parent: 4812 - type: Transform - - uid: 6098 - components: - - pos: 17.5,-21.5 - parent: 4812 - type: Transform - - uid: 6099 - components: - - pos: 16.5,-21.5 - parent: 4812 - type: Transform - - uid: 6100 - components: - - pos: 10.5,-35.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6101 - components: - - pos: 16.5,-19.5 - parent: 4812 - type: Transform - - uid: 6102 - components: - - pos: 16.5,-18.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6103 - components: - - pos: 16.5,-17.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6104 - components: - - pos: 17.5,-17.5 - parent: 4812 - type: Transform - - uid: 6105 - components: - - pos: 18.5,-17.5 - parent: 4812 - type: Transform - - uid: 6106 - components: - - pos: 19.5,-17.5 - parent: 4812 - type: Transform - - uid: 6107 - components: - - pos: 19.5,-16.5 - parent: 4812 - type: Transform - - uid: 6108 - components: - - pos: 19.5,-15.5 - parent: 4812 - type: Transform - - uid: 6109 - components: - - pos: 19.5,-14.5 - parent: 4812 - type: Transform - - uid: 6110 - components: - - pos: 19.5,-13.5 - parent: 4812 - type: Transform - - uid: 6111 - components: - - pos: 19.5,-12.5 - parent: 4812 - type: Transform - - uid: 6112 - components: - - pos: 18.5,-12.5 - parent: 4812 - type: Transform - - uid: 6113 - components: - - pos: 18.5,-22.5 - parent: 4812 - type: Transform - - uid: 6114 - components: - - pos: 18.5,-23.5 - parent: 4812 - type: Transform - - uid: 6115 - components: - - pos: 18.5,-24.5 - parent: 4812 - type: Transform - - uid: 6116 - components: - - pos: 18.5,-25.5 - parent: 4812 - type: Transform - - uid: 6117 - components: - - pos: 18.5,-26.5 - parent: 4812 - type: Transform - - uid: 6119 - components: - - pos: 18.5,-28.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6120 - components: - - pos: 18.5,-29.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6121 - components: - - pos: 18.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6122 - components: - - pos: 18.5,-31.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6123 - components: - - pos: 18.5,-32.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6124 - components: - - pos: 18.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6125 - components: - - pos: 17.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6126 - components: - - pos: 16.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6127 - components: - - pos: 15.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6128 - components: - - pos: 15.5,-32.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6129 - components: - - pos: 15.5,-31.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6130 - components: - - pos: 15.5,-24.5 - parent: 4812 - type: Transform - - uid: 6131 - components: - - pos: 12.5,-24.5 - parent: 4812 - type: Transform - - uid: 6132 - components: - - pos: 15.5,-26.5 - parent: 4812 - type: Transform - - uid: 6133 - components: - - pos: 15.5,-27.5 - parent: 4812 - type: Transform - - uid: 6134 - components: - - pos: 12.5,-26.5 - parent: 4812 - type: Transform - - uid: 6135 - components: - - pos: 12.5,-27.5 - parent: 4812 - type: Transform - - uid: 6136 - components: - - pos: 28.5,-23.5 - parent: 4812 - type: Transform - - uid: 6137 - components: - - pos: 28.5,-24.5 - parent: 4812 - type: Transform - - uid: 6138 - components: - - pos: 28.5,-25.5 - parent: 4812 - type: Transform - - uid: 6139 - components: - - pos: 28.5,-26.5 - parent: 4812 - type: Transform - - uid: 6140 - components: - - pos: 28.5,-27.5 - parent: 4812 - type: Transform - - uid: 6141 - components: - - pos: 28.5,-28.5 - parent: 4812 - type: Transform - - uid: 6142 - components: - - pos: 28.5,-29.5 - parent: 4812 - type: Transform - - uid: 6143 - components: - - pos: 27.5,-29.5 - parent: 4812 - type: Transform - - uid: 6144 - components: - - pos: 26.5,-29.5 - parent: 4812 - type: Transform - - uid: 6145 - components: - - pos: 25.5,-29.5 - parent: 4812 - type: Transform - - uid: 6146 - components: - - pos: 24.5,-29.5 - parent: 4812 - type: Transform - - uid: 6147 - components: - - pos: 23.5,-29.5 - parent: 4812 - type: Transform - - uid: 6148 - components: - - pos: 22.5,-29.5 - parent: 4812 - type: Transform - - uid: 6150 - components: - - pos: 30.5,-25.5 - parent: 4812 - type: Transform - - uid: 6151 - components: - - pos: 31.5,-25.5 - parent: 4812 - type: Transform - - uid: 6152 - components: - - pos: 32.5,-25.5 - parent: 4812 - type: Transform - - uid: 6153 - components: - - pos: 33.5,-25.5 - parent: 4812 - type: Transform - - uid: 6154 - components: - - pos: 34.5,-25.5 - parent: 4812 - type: Transform - - uid: 6155 - components: - - pos: 33.5,-26.5 - parent: 4812 - type: Transform - - uid: 6156 - components: - - pos: 33.5,-27.5 - parent: 4812 - type: Transform - - uid: 6157 - components: - - pos: 33.5,-24.5 - parent: 4812 - type: Transform - - uid: 6158 - components: - - pos: 27.5,-25.5 - parent: 4812 - type: Transform - - uid: 6159 - components: - - pos: 26.5,-25.5 - parent: 4812 - type: Transform - - uid: 6160 - components: - - pos: 25.5,-25.5 - parent: 4812 - type: Transform - - uid: 6161 - components: - - pos: 24.5,-25.5 - parent: 4812 - type: Transform - - uid: 6162 - components: - - pos: 23.5,-25.5 - parent: 4812 - type: Transform - - uid: 6163 - components: - - pos: 22.5,-25.5 - parent: 4812 - type: Transform - - uid: 6164 - components: - - pos: 16.5,-16.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6551 - components: - - pos: -23.5,-12.5 - parent: 4812 - type: Transform - - uid: 6552 - components: - - pos: -19.5,-17.5 - parent: 4812 - type: Transform - - uid: 6555 - components: - - pos: -19.5,-15.5 - parent: 4812 - type: Transform - - uid: 6557 - components: - - pos: -15.5,-14.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6610 - components: - - pos: -15.5,-16.5 - parent: 4812 - type: Transform - - uid: 6611 - components: - - pos: -15.5,-22.5 - parent: 4812 - type: Transform - - uid: 6616 - components: - - pos: -17.5,-22.5 - parent: 4812 - type: Transform - - uid: 6626 - components: - - pos: -15.5,-18.5 - parent: 4812 - type: Transform - - uid: 6627 - components: - - pos: -16.5,-22.5 - parent: 4812 - type: Transform - - uid: 6630 - components: - - pos: -18.5,-15.5 - parent: 4812 - type: Transform - - uid: 6681 - components: - - pos: -18.5,-23.5 - parent: 4812 - type: Transform - - uid: 6845 - components: - - pos: -17.5,-31.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6846 - components: - - pos: -17.5,-32.5 - parent: 4812 - type: Transform - - uid: 6847 - components: - - pos: -17.5,-33.5 - parent: 4812 - type: Transform - - uid: 6848 - components: - - pos: -17.5,-34.5 - parent: 4812 - type: Transform - - uid: 6849 - components: - - pos: -17.5,-35.5 - parent: 4812 - type: Transform - - uid: 6850 - components: - - pos: -17.5,-36.5 - parent: 4812 - type: Transform - - uid: 6851 - components: - - pos: -16.5,-34.5 - parent: 4812 - type: Transform - - uid: 6852 - components: - - pos: -15.5,-34.5 - parent: 4812 - type: Transform - - uid: 6853 - components: - - pos: -14.5,-34.5 - parent: 4812 - type: Transform - - uid: 6854 - components: - - pos: -14.5,-33.5 - parent: 4812 - type: Transform - - uid: 6855 - components: - - pos: -18.5,-34.5 - parent: 4812 - type: Transform - - uid: 6856 - components: - - pos: -19.5,-34.5 - parent: 4812 - type: Transform - - uid: 6857 - components: - - pos: -19.5,-35.5 - parent: 4812 - type: Transform - - uid: 6858 - components: - - pos: -19.5,-36.5 - parent: 4812 - type: Transform - - uid: 6859 - components: - - pos: -19.5,-37.5 - parent: 4812 - type: Transform - - uid: 6860 - components: - - pos: -19.5,-39.5 - parent: 4812 - type: Transform - - uid: 6861 - components: - - pos: -19.5,-38.5 - parent: 4812 - type: Transform - - uid: 6862 - components: - - pos: -20.5,-36.5 - parent: 4812 - type: Transform - - uid: 6863 - components: - - pos: -21.5,-36.5 - parent: 4812 - type: Transform - - uid: 6864 - components: - - pos: -22.5,-36.5 - parent: 4812 - type: Transform - - uid: 6865 - components: - - pos: -23.5,-36.5 - parent: 4812 - type: Transform - - uid: 6866 - components: - - pos: -24.5,-36.5 - parent: 4812 - type: Transform - - uid: 6867 - components: - - pos: -25.5,-36.5 - parent: 4812 - type: Transform - - uid: 6868 - components: - - pos: -26.5,-36.5 - parent: 4812 - type: Transform - - uid: 6869 - components: - - pos: -26.5,-35.5 - parent: 4812 - type: Transform - - uid: 6870 - components: - - pos: -26.5,-34.5 - parent: 4812 - type: Transform - - uid: 6871 - components: - - pos: -26.5,-33.5 - parent: 4812 - type: Transform - - uid: 6872 - components: - - pos: -26.5,-32.5 - parent: 4812 - type: Transform - - uid: 6873 - components: - - pos: -21.5,-35.5 - parent: 4812 - type: Transform - - uid: 6874 - components: - - pos: -21.5,-34.5 - parent: 4812 - type: Transform - - uid: 6875 - components: - - pos: -21.5,-33.5 - parent: 4812 - type: Transform - - uid: 6876 - components: - - pos: -21.5,-32.5 - parent: 4812 - type: Transform - - uid: 6877 - components: - - pos: -17.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6878 - components: - - pos: -16.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6879 - components: - - pos: -15.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6880 - components: - - pos: -14.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6881 - components: - - pos: -13.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6882 - components: - - pos: -12.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6883 - components: - - pos: -11.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6884 - components: - - pos: -10.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6886 - components: - - pos: -10.5,-31.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6887 - components: - - pos: -10.5,-32.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6888 - components: - - pos: -18.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6889 - components: - - pos: -19.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6890 - components: - - pos: -20.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6891 - components: - - pos: -21.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6892 - components: - - pos: -22.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6893 - components: - - pos: -23.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6894 - components: - - pos: -24.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7091 - components: - - pos: -24.5,-10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7092 - components: - - pos: -24.5,-11.5 - parent: 4812 - type: Transform - - uid: 7093 - components: - - pos: -24.5,-12.5 - parent: 4812 - type: Transform - - uid: 7094 - components: - - pos: -24.5,-13.5 - parent: 4812 - type: Transform - - uid: 7095 - components: - - pos: -24.5,-14.5 - parent: 4812 - type: Transform - - uid: 7096 - components: - - pos: -24.5,-15.5 - parent: 4812 - type: Transform - - uid: 7097 - components: - - pos: -24.5,-16.5 - parent: 4812 - type: Transform - - uid: 7098 - components: - - pos: -25.5,-16.5 - parent: 4812 - type: Transform - - uid: 7099 - components: - - pos: -26.5,-16.5 - parent: 4812 - type: Transform - - uid: 7100 - components: - - pos: -27.5,-16.5 - parent: 4812 - type: Transform - - uid: 7101 - components: - - pos: -28.5,-16.5 - parent: 4812 - type: Transform - - uid: 7102 - components: - - pos: -29.5,-16.5 - parent: 4812 - type: Transform - - uid: 7103 - components: - - pos: -30.5,-16.5 - parent: 4812 - type: Transform - - uid: 7104 - components: - - pos: -31.5,-16.5 - parent: 4812 - type: Transform - - uid: 7105 - components: - - pos: -32.5,-16.5 - parent: 4812 - type: Transform - - uid: 7106 - components: - - pos: -32.5,-17.5 - parent: 4812 - type: Transform - - uid: 7107 - components: - - pos: -32.5,-18.5 - parent: 4812 - type: Transform - - uid: 7108 - components: - - pos: -32.5,-19.5 - parent: 4812 - type: Transform - - uid: 7109 - components: - - pos: -31.5,-19.5 - parent: 4812 - type: Transform - - uid: 7110 - components: - - pos: -31.5,-20.5 - parent: 4812 - type: Transform - - uid: 7111 - components: - - pos: -31.5,-21.5 - parent: 4812 - type: Transform - - uid: 7112 - components: - - pos: -31.5,-22.5 - parent: 4812 - type: Transform - - uid: 7113 - components: - - pos: -28.5,-17.5 - parent: 4812 - type: Transform - - uid: 7114 - components: - - pos: -28.5,-18.5 - parent: 4812 - type: Transform - - uid: 7115 - components: - - pos: -28.5,-19.5 - parent: 4812 - type: Transform - - uid: 7116 - components: - - pos: -28.5,-20.5 - parent: 4812 - type: Transform - - uid: 7117 - components: - - pos: -25.5,-17.5 - parent: 4812 - type: Transform - - uid: 7118 - components: - - pos: -25.5,-18.5 - parent: 4812 - type: Transform - - uid: 7119 - components: - - pos: -25.5,-19.5 - parent: 4812 - type: Transform - - uid: 7120 - components: - - pos: -25.5,-20.5 - parent: 4812 - type: Transform - - uid: 7121 - components: - - pos: -24.5,-19.5 - parent: 4812 - type: Transform - - uid: 7122 - components: - - pos: -23.5,-19.5 - parent: 4812 - type: Transform - - uid: 7123 - components: - - pos: -23.5,-16.5 - parent: 4812 - type: Transform - - uid: 7124 - components: - - pos: -31.5,-15.5 - parent: 4812 - type: Transform - - uid: 7182 - components: - - pos: -10.5,-25.5 - parent: 4812 - type: Transform - - uid: 7232 - components: - - pos: -19.5,-23.5 - parent: 4812 - type: Transform - - uid: 7242 - components: - - pos: -9.5,-25.5 - parent: 4812 - type: Transform - - uid: 7243 - components: - - pos: -9.5,-24.5 - parent: 4812 - type: Transform - - uid: 7390 - components: - - pos: -11.5,-25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7420 - components: - - pos: -11.5,-22.5 - parent: 4812 - type: Transform - - uid: 7421 - components: - - pos: -11.5,-21.5 - parent: 4812 - type: Transform - - uid: 7422 - components: - - pos: -11.5,-20.5 - parent: 4812 - type: Transform - - uid: 7423 - components: - - pos: -10.5,-21.5 - parent: 4812 - type: Transform - - uid: 7424 - components: - - pos: -9.5,-21.5 - parent: 4812 - type: Transform - - uid: 7425 - components: - - pos: -8.5,-21.5 - parent: 4812 - type: Transform - - uid: 7489 - components: - - pos: -1.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7490 - components: - - pos: -1.5,-21.5 - parent: 4812 - type: Transform - - uid: 7491 - components: - - pos: -1.5,-22.5 - parent: 4812 - type: Transform - - uid: 7492 - components: - - pos: -2.5,-22.5 - parent: 4812 - type: Transform - - uid: 7493 - components: - - pos: -3.5,-22.5 - parent: 4812 - type: Transform - - uid: 7494 - components: - - pos: -4.5,-22.5 - parent: 4812 - type: Transform - - uid: 7495 - components: - - pos: -5.5,-22.5 - parent: 4812 - type: Transform - - uid: 7496 - components: - - pos: -5.5,-21.5 - parent: 4812 - type: Transform - - uid: 7497 - components: - - pos: -5.5,-20.5 - parent: 4812 - type: Transform - - uid: 7498 - components: - - pos: -5.5,-19.5 - parent: 4812 - type: Transform - - uid: 7499 - components: - - pos: -5.5,-18.5 - parent: 4812 - type: Transform - - uid: 7500 - components: - - pos: -5.5,-17.5 - parent: 4812 - type: Transform - - uid: 7501 - components: - - pos: -5.5,-16.5 - parent: 4812 - type: Transform - - uid: 7502 - components: - - pos: -5.5,-15.5 - parent: 4812 - type: Transform - - uid: 7503 - components: - - pos: -1.5,-22.5 - parent: 4812 - type: Transform - - uid: 7504 - components: - - pos: 0.5,-22.5 - parent: 4812 - type: Transform - - uid: 7505 - components: - - pos: 0.5,-22.5 - parent: 4812 - type: Transform - - uid: 7506 - components: - - pos: -0.5,-22.5 - parent: 4812 - type: Transform - - uid: 7507 - components: - - pos: 0.5,-21.5 - parent: 4812 - type: Transform - - uid: 7508 - components: - - pos: 0.5,-20.5 - parent: 4812 - type: Transform - - uid: 7509 - components: - - pos: 0.5,-19.5 - parent: 4812 - type: Transform - - uid: 7510 - components: - - pos: 0.5,-18.5 - parent: 4812 - type: Transform - - uid: 7511 - components: - - pos: 0.5,-17.5 - parent: 4812 - type: Transform - - uid: 7512 - components: - - pos: 0.5,-16.5 - parent: 4812 - type: Transform - - uid: 7513 - components: - - pos: 0.5,-15.5 - parent: 4812 - type: Transform - - uid: 7514 - components: - - pos: -1.5,-19.5 - parent: 4812 - type: Transform - - uid: 7515 - components: - - pos: -1.5,-18.5 - parent: 4812 - type: Transform - - uid: 7516 - components: - - pos: -1.5,-17.5 - parent: 4812 - type: Transform - - uid: 7517 - components: - - pos: -2.5,-17.5 - parent: 4812 - type: Transform - - uid: 7518 - components: - - pos: -2.5,-16.5 - parent: 4812 - type: Transform - - uid: 7519 - components: - - pos: -2.5,-15.5 - parent: 4812 - type: Transform - - uid: 7520 - components: - - pos: -5.5,-14.5 - parent: 4812 - type: Transform - - uid: 7521 - components: - - pos: -5.5,-13.5 - parent: 4812 - type: Transform - - uid: 7522 - components: - - pos: -4.5,-13.5 - parent: 4812 - type: Transform - - uid: 7523 - components: - - pos: 0.5,-13.5 - parent: 4812 - type: Transform - - uid: 7524 - components: - - pos: 0.5,-14.5 - parent: 4812 - type: Transform - - uid: 7525 - components: - - pos: -0.5,-13.5 - parent: 4812 - type: Transform - - uid: 7526 - components: - - pos: 0.5,-23.5 - parent: 4812 - type: Transform - - uid: 7527 - components: - - pos: 0.5,-24.5 - parent: 4812 - type: Transform - - uid: 7528 - components: - - pos: 0.5,-25.5 - parent: 4812 - type: Transform - - uid: 7529 - components: - - pos: 0.5,-26.5 - parent: 4812 - type: Transform - - uid: 7530 - components: - - pos: 0.5,-27.5 - parent: 4812 - type: Transform - - uid: 7531 - components: - - pos: 0.5,-28.5 - parent: 4812 - type: Transform - - uid: 7532 - components: - - pos: 0.5,-29.5 - parent: 4812 - type: Transform - - uid: 7533 - components: - - pos: 0.5,-30.5 - parent: 4812 - type: Transform - - uid: 7534 - components: - - pos: 0.5,-31.5 - parent: 4812 - type: Transform - - uid: 7535 - components: - - pos: -5.5,-23.5 - parent: 4812 - type: Transform - - uid: 7536 - components: - - pos: -5.5,-24.5 - parent: 4812 - type: Transform - - uid: 7537 - components: - - pos: -5.5,-25.5 - parent: 4812 - type: Transform - - uid: 7538 - components: - - pos: -5.5,-26.5 - parent: 4812 - type: Transform - - uid: 7539 - components: - - pos: -5.5,-27.5 - parent: 4812 - type: Transform - - uid: 7540 - components: - - pos: -5.5,-28.5 - parent: 4812 - type: Transform - - uid: 7541 - components: - - pos: -5.5,-29.5 - parent: 4812 - type: Transform - - uid: 7542 - components: - - pos: -5.5,-30.5 - parent: 4812 - type: Transform - - uid: 7543 - components: - - pos: -5.5,-31.5 - parent: 4812 - type: Transform - - uid: 7544 - components: - - pos: -4.5,-31.5 - parent: 4812 - type: Transform - - uid: 7545 - components: - - pos: -4.5,-25.5 - parent: 4812 - type: Transform - - uid: 7546 - components: - - pos: -3.5,-25.5 - parent: 4812 - type: Transform - - uid: 7547 - components: - - pos: -2.5,-25.5 - parent: 4812 - type: Transform - - uid: 7548 - components: - - pos: -2.5,-26.5 - parent: 4812 - type: Transform - - uid: 7549 - components: - - pos: -2.5,-27.5 - parent: 4812 - type: Transform - - uid: 7550 - components: - - pos: -2.5,-28.5 - parent: 4812 - type: Transform - - uid: 7551 - components: - - pos: -2.5,-29.5 - parent: 4812 - type: Transform - - uid: 7552 - components: - - pos: -0.5,-31.5 - parent: 4812 - type: Transform - - uid: 7553 - components: - - pos: -1.5,-31.5 - parent: 4812 - type: Transform - - uid: 7554 - components: - - pos: -2.5,-31.5 - parent: 4812 - type: Transform - - uid: 7555 - components: - - pos: -5.5,-12.5 - parent: 4812 - type: Transform - - uid: 7557 - components: - - pos: -7.5,-12.5 - parent: 4812 - type: Transform - - uid: 7558 - components: - - pos: -8.5,-12.5 - parent: 4812 - type: Transform - - uid: 7559 - components: - - pos: -9.5,-12.5 - parent: 4812 - type: Transform - - uid: 7560 - components: - - pos: -10.5,-12.5 - parent: 4812 - type: Transform - - uid: 7561 - components: - - pos: -11.5,-12.5 - parent: 4812 - type: Transform - - uid: 7562 - components: - - pos: -12.5,-12.5 - parent: 4812 - type: Transform - - uid: 7563 - components: - - pos: -13.5,-12.5 - parent: 4812 - type: Transform - - uid: 7564 - components: - - pos: -14.5,-12.5 - parent: 4812 - type: Transform - - uid: 7565 - components: - - pos: -15.5,-12.5 - parent: 4812 - type: Transform - - uid: 7566 - components: - - pos: -16.5,-12.5 - parent: 4812 - type: Transform - - uid: 7567 - components: - - pos: -17.5,-12.5 - parent: 4812 - type: Transform - - uid: 7568 - components: - - pos: -18.5,-12.5 - parent: 4812 - type: Transform - - uid: 7569 - components: - - pos: -19.5,-12.5 - parent: 4812 - type: Transform - - uid: 7605 - components: - - pos: -9.5,-20.5 - parent: 4812 - type: Transform - - uid: 7606 - components: - - pos: -9.5,-19.5 - parent: 4812 - type: Transform - - uid: 7607 - components: - - pos: -9.5,-18.5 - parent: 4812 - type: Transform - - uid: 7608 - components: - - pos: -9.5,-17.5 - parent: 4812 - type: Transform - - uid: 7609 - components: - - pos: -9.5,-16.5 - parent: 4812 - type: Transform - - uid: 7610 - components: - - pos: -9.5,-15.5 - parent: 4812 - type: Transform - - uid: 7611 - components: - - pos: -10.5,-17.5 - parent: 4812 - type: Transform - - uid: 7612 - components: - - pos: -11.5,-17.5 - parent: 4812 - type: Transform - - uid: 7613 - components: - - pos: -10.5,-15.5 - parent: 4812 - type: Transform - - uid: 7614 - components: - - pos: -11.5,-15.5 - parent: 4812 - type: Transform - - uid: 8061 - components: - - pos: -36.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8062 - components: - - pos: -36.5,12.5 - parent: 4812 - type: Transform - - uid: 8063 - components: - - pos: -36.5,11.5 - parent: 4812 - type: Transform - - uid: 8064 - components: - - pos: -37.5,11.5 - parent: 4812 - type: Transform - - uid: 8065 - components: - - pos: -38.5,11.5 - parent: 4812 - type: Transform - - uid: 8066 - components: - - pos: -35.5,11.5 - parent: 4812 - type: Transform - - uid: 8067 - components: - - pos: -34.5,11.5 - parent: 4812 - type: Transform - - uid: 8068 - components: - - pos: -33.5,11.5 - parent: 4812 - type: Transform - - uid: 8069 - components: - - pos: -32.5,11.5 - parent: 4812 - type: Transform - - uid: 8070 - components: - - pos: -31.5,11.5 - parent: 4812 - type: Transform - - uid: 8071 - components: - - pos: -30.5,11.5 - parent: 4812 - type: Transform - - uid: 8072 - components: - - pos: -29.5,11.5 - parent: 4812 - type: Transform - - uid: 8073 - components: - - pos: -29.5,12.5 - parent: 4812 - type: Transform - - uid: 8074 - components: - - pos: -29.5,13.5 - parent: 4812 - type: Transform - - uid: 8075 - components: - - pos: -29.5,14.5 - parent: 4812 - type: Transform - - uid: 8076 - components: - - pos: -29.5,15.5 - parent: 4812 - type: Transform - - uid: 8077 - components: - - pos: -29.5,16.5 - parent: 4812 - type: Transform - - uid: 8078 - components: - - pos: -29.5,17.5 - parent: 4812 - type: Transform - - uid: 8079 - components: - - pos: -29.5,18.5 - parent: 4812 - type: Transform - - uid: 8080 - components: - - pos: -29.5,19.5 - parent: 4812 - type: Transform - - uid: 8081 - components: - - pos: -28.5,19.5 - parent: 4812 - type: Transform - - uid: 8082 - components: - - pos: -27.5,19.5 - parent: 4812 - type: Transform - - uid: 8083 - components: - - pos: -26.5,19.5 - parent: 4812 - type: Transform - - uid: 8084 - components: - - pos: -28.5,16.5 - parent: 4812 - type: Transform - - uid: 8085 - components: - - pos: -27.5,16.5 - parent: 4812 - type: Transform - - uid: 8086 - components: - - pos: -26.5,16.5 - parent: 4812 - type: Transform - - uid: 8087 - components: - - pos: -28.5,13.5 - parent: 4812 - type: Transform - - uid: 8088 - components: - - pos: -27.5,13.5 - parent: 4812 - type: Transform - - uid: 8089 - components: - - pos: -26.5,13.5 - parent: 4812 - type: Transform - - uid: 8090 - components: - - pos: -25.5,13.5 - parent: 4812 - type: Transform - - uid: 8091 - components: - - pos: -28.5,11.5 - parent: 4812 - type: Transform - - uid: 8092 - components: - - pos: -27.5,11.5 - parent: 4812 - type: Transform - - uid: 8093 - components: - - pos: -26.5,11.5 - parent: 4812 - type: Transform - - uid: 8094 - components: - - pos: -25.5,11.5 - parent: 4812 - type: Transform - - uid: 8095 - components: - - pos: -34.5,12.5 - parent: 4812 - type: Transform - - uid: 8096 - components: - - pos: -34.5,13.5 - parent: 4812 - type: Transform - - uid: 8097 - components: - - pos: -34.5,14.5 - parent: 4812 - type: Transform - - uid: 8098 - components: - - pos: -34.5,15.5 - parent: 4812 - type: Transform - - uid: 8099 - components: - - pos: -34.5,16.5 - parent: 4812 - type: Transform - - uid: 8100 - components: - - pos: -34.5,17.5 - parent: 4812 - type: Transform - - uid: 8101 - components: - - pos: -34.5,18.5 - parent: 4812 - type: Transform - - uid: 8102 - components: - - pos: -34.5,19.5 - parent: 4812 - type: Transform - - uid: 8103 - components: - - pos: -34.5,20.5 - parent: 4812 - type: Transform - - uid: 8104 - components: - - pos: -35.5,20.5 - parent: 4812 - type: Transform - - uid: 8105 - components: - - pos: -35.5,16.5 - parent: 4812 - type: Transform - - uid: 8106 - components: - - pos: -30.5,19.5 - parent: 4812 - type: Transform - - uid: 8107 - components: - - pos: -30.5,15.5 - parent: 4812 - type: Transform - - uid: 8108 - components: - - pos: -29.5,20.5 - parent: 4812 - type: Transform - - uid: 8109 - components: - - pos: -29.5,21.5 - parent: 4812 - type: Transform - - uid: 8110 - components: - - pos: -29.5,22.5 - parent: 4812 - type: Transform - - uid: 8111 - components: - - pos: -29.5,23.5 - parent: 4812 - type: Transform - - uid: 8112 - components: - - pos: -29.5,24.5 - parent: 4812 - type: Transform - - uid: 8113 - components: - - pos: -28.5,24.5 - parent: 4812 - type: Transform - - uid: 8114 - components: - - pos: -27.5,24.5 - parent: 4812 - type: Transform - - uid: 8115 - components: - - pos: -26.5,24.5 - parent: 4812 - type: Transform - - uid: 8116 - components: - - pos: -26.5,23.5 - parent: 4812 - type: Transform - - uid: 8117 - components: - - pos: -30.5,24.5 - parent: 4812 - type: Transform - - uid: 8118 - components: - - pos: -30.5,25.5 - parent: 4812 - type: Transform - - uid: 8119 - components: - - pos: -30.5,26.5 - parent: 4812 - type: Transform - - uid: 8120 - components: - - pos: -30.5,27.5 - parent: 4812 - type: Transform - - uid: 8121 - components: - - pos: -30.5,28.5 - parent: 4812 - type: Transform - - uid: 8122 - components: - - pos: -30.5,29.5 - parent: 4812 - type: Transform - - uid: 8123 - components: - - pos: -30.5,30.5 - parent: 4812 - type: Transform - - uid: 8124 - components: - - pos: -30.5,31.5 - parent: 4812 - type: Transform - - uid: 8125 - components: - - pos: -26.5,25.5 - parent: 4812 - type: Transform - - uid: 8126 - components: - - pos: -26.5,26.5 - parent: 4812 - type: Transform - - uid: 8127 - components: - - pos: -26.5,27.5 - parent: 4812 - type: Transform - - uid: 8128 - components: - - pos: -26.5,28.5 - parent: 4812 - type: Transform - - uid: 8129 - components: - - pos: -26.5,29.5 - parent: 4812 - type: Transform - - uid: 8130 - components: - - pos: -26.5,30.5 - parent: 4812 - type: Transform - - uid: 8131 - components: - - pos: -26.5,31.5 - parent: 4812 - type: Transform - - uid: 8132 - components: - - pos: -25.5,31.5 - parent: 4812 - type: Transform - - uid: 8133 - components: - - pos: -24.5,31.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8134 - components: - - pos: -27.5,31.5 - parent: 4812 - type: Transform - - uid: 8135 - components: - - pos: -27.5,32.5 - parent: 4812 - type: Transform - - uid: 8136 - components: - - pos: -27.5,33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8137 - components: - - pos: -28.5,33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8138 - components: - - pos: -29.5,33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8139 - components: - - pos: -31.5,31.5 - parent: 4812 - type: Transform - - uid: 8140 - components: - - pos: -29.5,31.5 - parent: 4812 - type: Transform - - uid: 8197 - components: - - pos: -19.5,21.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8198 - components: - - pos: -19.5,20.5 - parent: 4812 - type: Transform - - uid: 8199 - components: - - pos: -20.5,20.5 - parent: 4812 - type: Transform - - uid: 8200 - components: - - pos: -21.5,20.5 - parent: 4812 - type: Transform - - uid: 8201 - components: - - pos: -22.5,20.5 - parent: 4812 - type: Transform - - uid: 8202 - components: - - pos: -23.5,20.5 - parent: 4812 - type: Transform - - uid: 8203 - components: - - pos: -22.5,19.5 - parent: 4812 - type: Transform - - uid: 8204 - components: - - pos: -18.5,20.5 - parent: 4812 - type: Transform - - uid: 8205 - components: - - pos: -22.5,18.5 - parent: 4812 - type: Transform - - uid: 8206 - components: - - pos: -19.5,22.5 - parent: 4812 - type: Transform - - uid: 8207 - components: - - pos: -19.5,23.5 - parent: 4812 - type: Transform - - uid: 8208 - components: - - pos: -19.5,24.5 - parent: 4812 - type: Transform - - uid: 8209 - components: - - pos: -19.5,25.5 - parent: 4812 - type: Transform - - uid: 8210 - components: - - pos: -20.5,24.5 - parent: 4812 - type: Transform - - uid: 8211 - components: - - pos: -21.5,24.5 - parent: 4812 - type: Transform - - uid: 8212 - components: - - pos: -22.5,24.5 - parent: 4812 - type: Transform - - uid: 8213 - components: - - pos: -23.5,24.5 - parent: 4812 - type: Transform - - uid: 8214 - components: - - pos: -22.5,25.5 - parent: 4812 - type: Transform - - uid: 8215 - components: - - pos: -22.5,26.5 - parent: 4812 - type: Transform - - uid: 8216 - components: - - pos: -22.5,27.5 - parent: 4812 - type: Transform - - uid: 8217 - components: - - pos: -22.5,28.5 - parent: 4812 - type: Transform - - uid: 8218 - components: - - pos: -22.5,23.5 - parent: 4812 - type: Transform - - uid: 8219 - components: - - pos: -22.5,22.5 - parent: 4812 - type: Transform - - uid: 8220 - components: - - pos: -21.5,27.5 - parent: 4812 - type: Transform - - uid: 8221 - components: - - pos: -20.5,27.5 - parent: 4812 - type: Transform - - uid: 8222 - components: - - pos: -19.5,27.5 - parent: 4812 - type: Transform - - uid: 8223 - components: - - pos: -19.5,28.5 - parent: 4812 - type: Transform - - uid: 8224 - components: - - pos: -19.5,29.5 - parent: 4812 - type: Transform - - uid: 8319 - components: - - pos: -17.5,20.5 - parent: 4812 - type: Transform - - uid: 8320 - components: - - pos: -17.5,21.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8321 - components: - - pos: -17.5,22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8322 - components: - - pos: -17.5,23.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8323 - components: - - pos: -17.5,24.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8324 - components: - - pos: -17.5,25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8325 - components: - - pos: -17.5,26.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8326 - components: - - pos: -17.5,27.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8327 - components: - - pos: -17.5,28.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8908 - components: - - pos: -33.5,-24.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8909 - components: - - pos: -33.5,-25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8910 - components: - - pos: -32.5,-25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8911 - components: - - pos: -31.5,-25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8912 - components: - - pos: -30.5,-25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8913 - components: - - pos: -29.5,-25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8914 - components: - - pos: -29.5,-26.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8915 - components: - - pos: -29.5,-27.5 - parent: 4812 - type: Transform - - uid: 8916 - components: - - pos: -29.5,-28.5 - parent: 4812 - type: Transform - - uid: 8917 - components: - - pos: -29.5,-29.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8918 - components: - - pos: -29.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8919 - components: - - pos: -29.5,-31.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8920 - components: - - pos: -30.5,-31.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8921 - components: - - pos: -30.5,-32.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8922 - components: - - pos: -30.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8923 - components: - - pos: -30.5,-34.5 - parent: 4812 - type: Transform - - uid: 8924 - components: - - pos: -30.5,-35.5 - parent: 4812 - type: Transform - - uid: 8925 - components: - - pos: -30.5,-36.5 - parent: 4812 - type: Transform - - uid: 8926 - components: - - pos: -30.5,-37.5 - parent: 4812 - type: Transform - - uid: 8927 - components: - - pos: -30.5,-38.5 - parent: 4812 - type: Transform - - uid: 8928 - components: - - pos: -30.5,-39.5 - parent: 4812 - type: Transform - - uid: 8929 - components: - - pos: -30.5,-40.5 - parent: 4812 - type: Transform - - uid: 8930 - components: - - pos: -29.5,-39.5 - parent: 4812 - type: Transform - - uid: 8931 - components: - - pos: -28.5,-39.5 - parent: 4812 - type: Transform - - uid: 8932 - components: - - pos: -27.5,-39.5 - parent: 4812 - type: Transform - - uid: 8933 - components: - - pos: -31.5,-36.5 - parent: 4812 - type: Transform - - uid: 8934 - components: - - pos: -32.5,-36.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8935 - components: - - pos: -33.5,-36.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8936 - components: - - pos: -31.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8937 - components: - - pos: -32.5,-33.5 - parent: 4812 - type: Transform - - uid: 8938 - components: - - pos: -33.5,-33.5 - parent: 4812 - type: Transform - - uid: 8939 - components: - - pos: -34.5,-33.5 - parent: 4812 - type: Transform - - uid: 8940 - components: - - pos: -35.5,-33.5 - parent: 4812 - type: Transform - - uid: 8941 - components: - - pos: -36.5,-33.5 - parent: 4812 - type: Transform - - uid: 8942 - components: - - pos: -36.5,-34.5 - parent: 4812 - type: Transform - - uid: 8943 - components: - - pos: -37.5,-34.5 - parent: 4812 - type: Transform - - uid: 8944 - components: - - pos: -38.5,-34.5 - parent: 4812 - type: Transform - - uid: 8945 - components: - - pos: -39.5,-34.5 - parent: 4812 - type: Transform - - uid: 8947 - components: - - pos: -36.5,-35.5 - parent: 4812 - type: Transform - - uid: 8948 - components: - - pos: -36.5,-36.5 - parent: 4812 - type: Transform - - uid: 8949 - components: - - pos: -36.5,-37.5 - parent: 4812 - type: Transform - - uid: 8968 - components: - - pos: 13.5,-22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9050 - components: - - pos: -50.5,0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9090 - components: - - pos: 32.5,-29.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9288 - components: - - pos: -38.5,6.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9321 - components: - - pos: -38.5,5.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9322 - components: - - pos: -38.5,4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9323 - components: - - pos: -38.5,3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9324 - components: - - pos: -38.5,2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9325 - components: - - pos: -38.5,1.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9326 - components: - - pos: -38.5,0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9327 - components: - - pos: -39.5,0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9328 - components: - - pos: -40.5,0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9329 - components: - - pos: -41.5,0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9330 - components: - - pos: -42.5,0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9331 - components: - - pos: -43.5,0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9332 - components: - - pos: -44.5,0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9333 - components: - - pos: -45.5,0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9334 - components: - - pos: -46.5,0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9335 - components: - - pos: -47.5,0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9336 - components: - - pos: -48.5,0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9337 - components: - - pos: -49.5,0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9338 - components: - - pos: -51.5,0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9339 - components: - - pos: -52.5,0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9340 - components: - - pos: -53.5,0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9341 - components: - - pos: -54.5,0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9342 - components: - - pos: -54.5,1.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9343 - components: - - pos: -54.5,2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9344 - components: - - pos: -54.5,3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9345 - components: - - pos: -54.5,4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9346 - components: - - pos: -54.5,5.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9347 - components: - - pos: -54.5,6.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9348 - components: - - pos: -54.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9349 - components: - - pos: -54.5,8.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9350 - components: - - pos: -54.5,9.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9351 - components: - - pos: -54.5,10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9352 - components: - - pos: -54.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9353 - components: - - pos: -54.5,12.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9354 - components: - - pos: -53.5,12.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9355 - components: - - pos: -52.5,12.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9356 - components: - - pos: -51.5,12.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9357 - components: - - pos: -50.5,12.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9358 - components: - - pos: -49.5,12.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9359 - components: - - pos: -48.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9360 - components: - - pos: -48.5,12.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9361 - components: - - pos: -48.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9362 - components: - - pos: -48.5,10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9363 - components: - - pos: -48.5,9.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9364 - components: - - pos: -48.5,8.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9365 - components: - - pos: -48.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9366 - components: - - pos: -48.5,6.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9367 - components: - - pos: -48.5,5.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9368 - components: - - pos: -48.5,4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9369 - components: - - pos: -48.5,3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9370 - components: - - pos: -48.5,2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9371 - components: - - pos: -48.5,1.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9372 - components: - - pos: -48.5,-0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9373 - components: - - pos: -48.5,-1.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9374 - components: - - pos: -48.5,-2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9375 - components: - - pos: -47.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9376 - components: - - pos: -46.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9377 - components: - - pos: -45.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9378 - components: - - pos: -44.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9379 - components: - - pos: -43.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9380 - components: - - pos: -42.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9381 - components: - - pos: -41.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9382 - components: - - pos: -44.5,1.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9383 - components: - - pos: -44.5,2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9384 - components: - - pos: -44.5,3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9385 - components: - - pos: -44.5,4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9386 - components: - - pos: -44.5,5.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9387 - components: - - pos: -44.5,6.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9388 - components: - - pos: -44.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9389 - components: - - pos: -44.5,8.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9390 - components: - - pos: -44.5,10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9391 - components: - - pos: -44.5,9.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9392 - components: - - pos: -44.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9393 - components: - - pos: -37.5,2.5 - parent: 4812 - type: Transform - - uid: 9394 - components: - - pos: -36.5,2.5 - parent: 4812 - type: Transform - - uid: 9395 - components: - - pos: -35.5,2.5 - parent: 4812 - type: Transform - - uid: 9396 - components: - - pos: -34.5,2.5 - parent: 4812 - type: Transform - - uid: 9397 - components: - - pos: -33.5,2.5 - parent: 4812 - type: Transform - - uid: 9398 - components: - - pos: -32.5,2.5 - parent: 4812 - type: Transform - - uid: 9399 - components: - - pos: -31.5,2.5 - parent: 4812 - type: Transform - - uid: 9400 - components: - - pos: -30.5,2.5 - parent: 4812 - type: Transform - - uid: 9401 - components: - - pos: -29.5,2.5 - parent: 4812 - type: Transform - - uid: 9402 - components: - - pos: -33.5,3.5 - parent: 4812 - type: Transform - - uid: 9403 - components: - - pos: -33.5,4.5 - parent: 4812 - type: Transform - - uid: 9404 - components: - - pos: -29.5,3.5 - parent: 4812 - type: Transform - - uid: 9405 - components: - - pos: -29.5,4.5 - parent: 4812 - type: Transform - - uid: 9406 - components: - - pos: -39.5,5.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9407 - components: - - pos: -40.5,5.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9408 - components: - - pos: -41.5,5.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9409 - components: - - pos: -42.5,5.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9410 - components: - - pos: -43.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9411 - components: - - pos: -42.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9458 - components: - - pos: -50.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9459 - components: - - pos: -50.5,10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9460 - components: - - pos: -50.5,9.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9461 - components: - - pos: -50.5,8.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9462 - components: - - pos: -50.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9463 - components: - - pos: -50.5,6.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9464 - components: - - pos: -50.5,5.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9465 - components: - - pos: -50.5,4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9466 - components: - - pos: -50.5,3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9467 - components: - - pos: -50.5,2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9468 - components: - - pos: -50.5,1.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9512 - components: - - pos: -36.5,-1.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9523 - components: - - pos: 17.5,-16.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9525 - components: - - pos: -47.5,-1.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9526 - components: - - pos: -47.5,-2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9527 - components: - - pos: -47.5,-3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9528 - components: - - pos: -47.5,-4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9529 - components: - - pos: -48.5,-4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9530 - components: - - pos: -49.5,-4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9540 - components: - - pos: -36.5,1.5 - parent: 4812 - type: Transform - - uid: 9542 - components: - - pos: -36.5,0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9547 - components: - - pos: -36.5,-0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9559 - components: - - pos: -39.5,-0.5 - parent: 4812 - type: Transform - - uid: 9560 - components: - - pos: -39.5,-1.5 - parent: 4812 - type: Transform - - uid: 9561 - components: - - pos: -39.5,-2.5 - parent: 4812 - type: Transform - - uid: 9562 - components: - - pos: -39.5,-3.5 - parent: 4812 - type: Transform - - uid: 9694 - components: - - pos: -36.5,-2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9695 - components: - - pos: -36.5,-3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9696 - components: - - pos: -36.5,-4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9697 - components: - - pos: -36.5,-5.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9708 - components: - - pos: -42.5,14.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9709 - components: - - pos: -42.5,15.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9710 - components: - - pos: -42.5,16.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9711 - components: - - pos: -42.5,17.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9712 - components: - - pos: -43.5,15.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9713 - components: - - pos: -44.5,15.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9714 - components: - - pos: -45.5,15.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9715 - components: - - pos: -46.5,15.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9716 - components: - - pos: -46.5,16.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9717 - components: - - pos: -46.5,17.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9718 - components: - - pos: -46.5,18.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10041 - components: - - pos: -41.5,-4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10042 - components: - - pos: -41.5,-5.5 - parent: 4812 - type: Transform - - uid: 10043 - components: - - pos: -41.5,-6.5 - parent: 4812 - type: Transform - - uid: 10044 - components: - - pos: -41.5,-7.5 - parent: 4812 - type: Transform - - uid: 10045 - components: - - pos: -41.5,-8.5 - parent: 4812 - type: Transform - - uid: 10046 - components: - - pos: -42.5,-8.5 - parent: 4812 - type: Transform - - uid: 10047 - components: - - pos: -43.5,-8.5 - parent: 4812 - type: Transform - - uid: 10048 - components: - - pos: -44.5,-8.5 - parent: 4812 - type: Transform - - uid: 10049 - components: - - pos: -44.5,-9.5 - parent: 4812 - type: Transform - - uid: 10050 - components: - - pos: -44.5,-10.5 - parent: 4812 - type: Transform - - uid: 10051 - components: - - pos: -44.5,-11.5 - parent: 4812 - type: Transform - - uid: 10052 - components: - - pos: -44.5,-12.5 - parent: 4812 - type: Transform - - uid: 10053 - components: - - pos: -44.5,-13.5 - parent: 4812 - type: Transform - - uid: 10054 - components: - - pos: -44.5,-14.5 - parent: 4812 - type: Transform - - uid: 10055 - components: - - pos: -44.5,-15.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10056 - components: - - pos: -44.5,-16.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10057 - components: - - pos: -44.5,-17.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10058 - components: - - pos: -44.5,-18.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10059 - components: - - pos: -45.5,-21.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10060 - components: - - pos: -45.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10061 - components: - - pos: -43.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10062 - components: - - pos: -46.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10063 - components: - - pos: -47.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10064 - components: - - pos: -45.5,-12.5 - parent: 4812 - type: Transform - - uid: 10065 - components: - - pos: -46.5,-12.5 - parent: 4812 - type: Transform - - uid: 10066 - components: - - pos: -47.5,-12.5 - parent: 4812 - type: Transform - - uid: 10067 - components: - - pos: -48.5,-12.5 - parent: 4812 - type: Transform - - uid: 10068 - components: - - pos: -49.5,-12.5 - parent: 4812 - type: Transform - - uid: 10070 - components: - - pos: -51.5,-12.5 - parent: 4812 - type: Transform - - uid: 10071 - components: - - pos: -52.5,-12.5 - parent: 4812 - type: Transform - - uid: 10072 - components: - - pos: -53.5,-12.5 - parent: 4812 - type: Transform - - uid: 10073 - components: - - pos: -53.5,-11.5 - parent: 4812 - type: Transform - - uid: 10074 - components: - - pos: -53.5,-10.5 - parent: 4812 - type: Transform - - uid: 10075 - components: - - pos: -53.5,-9.5 - parent: 4812 - type: Transform - - uid: 10076 - components: - - pos: -53.5,-8.5 - parent: 4812 - type: Transform - - uid: 10077 - components: - - pos: -49.5,-11.5 - parent: 4812 - type: Transform - - uid: 10078 - components: - - pos: -49.5,-10.5 - parent: 4812 - type: Transform - - uid: 10079 - components: - - pos: -49.5,-9.5 - parent: 4812 - type: Transform - - uid: 10080 - components: - - pos: -49.5,-8.5 - parent: 4812 - type: Transform - - uid: 10081 - components: - - pos: -49.5,-7.5 - parent: 4812 - type: Transform - - uid: 10082 - components: - - pos: -40.5,-8.5 - parent: 4812 - type: Transform - - uid: 10083 - components: - - pos: -40.5,-9.5 - parent: 4812 - type: Transform - - uid: 10084 - components: - - pos: -40.5,-10.5 - parent: 4812 - type: Transform - - uid: 10085 - components: - - pos: -40.5,-11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10086 - components: - - pos: -40.5,-12.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10087 - components: - - pos: -40.5,-13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10088 - components: - - pos: -40.5,-14.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10089 - components: - - pos: -40.5,-15.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10090 - components: - - pos: -40.5,-16.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10091 - components: - - pos: -40.5,-17.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10092 - components: - - pos: -39.5,-8.5 - parent: 4812 - type: Transform - - uid: 10093 - components: - - pos: -38.5,-8.5 - parent: 4812 - type: Transform - - uid: 10094 - components: - - pos: -37.5,-8.5 - parent: 4812 - type: Transform - - uid: 10095 - components: - - pos: -36.5,-8.5 - parent: 4812 - type: Transform - - uid: 10096 - components: - - pos: -35.5,-8.5 - parent: 4812 - type: Transform - - uid: 10097 - components: - - pos: -34.5,-8.5 - parent: 4812 - type: Transform - - uid: 10098 - components: - - pos: -33.5,-8.5 - parent: 4812 - type: Transform - - uid: 10099 - components: - - pos: -32.5,-8.5 - parent: 4812 - type: Transform - - uid: 10100 - components: - - pos: -31.5,-8.5 - parent: 4812 - type: Transform - - uid: 10101 - components: - - pos: -30.5,-8.5 - parent: 4812 - type: Transform - - uid: 10102 - components: - - pos: -29.5,-8.5 - parent: 4812 - type: Transform - - uid: 10103 - components: - - pos: -33.5,-7.5 - parent: 4812 - type: Transform - - uid: 10104 - components: - - pos: -33.5,-6.5 - parent: 4812 - type: Transform - - uid: 10105 - components: - - pos: -33.5,-5.5 - parent: 4812 - type: Transform - - uid: 10106 - components: - - pos: -33.5,-4.5 - parent: 4812 - type: Transform - - uid: 10107 - components: - - pos: -33.5,-3.5 - parent: 4812 - type: Transform - - uid: 10108 - components: - - pos: -33.5,-2.5 - parent: 4812 - type: Transform - - uid: 10109 - components: - - pos: -33.5,-1.5 - parent: 4812 - type: Transform - - uid: 10110 - components: - - pos: -32.5,-6.5 - parent: 4812 - type: Transform - - uid: 10111 - components: - - pos: -31.5,-6.5 - parent: 4812 - type: Transform - - uid: 10112 - components: - - pos: -30.5,-6.5 - parent: 4812 - type: Transform - - uid: 10113 - components: - - pos: -29.5,-6.5 - parent: 4812 - type: Transform - - uid: 10114 - components: - - pos: -32.5,-2.5 - parent: 4812 - type: Transform - - uid: 10115 - components: - - pos: -31.5,-2.5 - parent: 4812 - type: Transform - - uid: 10116 - components: - - pos: -30.5,-2.5 - parent: 4812 - type: Transform - - uid: 10117 - components: - - pos: -29.5,-2.5 - parent: 4812 - type: Transform - - uid: 10118 - components: - - pos: -28.5,-2.5 - parent: 4812 - type: Transform - - uid: 10119 - components: - - pos: -27.5,-2.5 - parent: 4812 - type: Transform - - uid: 10120 - components: - - pos: -26.5,-2.5 - parent: 4812 - type: Transform - - uid: 10121 - components: - - pos: -25.5,-2.5 - parent: 4812 - type: Transform - - uid: 10122 - components: - - pos: -26.5,-1.5 - parent: 4812 - type: Transform - - uid: 10123 - components: - - pos: -26.5,-0.5 - parent: 4812 - type: Transform - - uid: 10124 - components: - - pos: -26.5,0.5 - parent: 4812 - type: Transform - - uid: 10125 - components: - - pos: -26.5,1.5 - parent: 4812 - type: Transform - - uid: 10126 - components: - - pos: -26.5,2.5 - parent: 4812 - type: Transform - - uid: 10127 - components: - - pos: -26.5,3.5 - parent: 4812 - type: Transform - - uid: 10128 - components: - - pos: -26.5,4.5 - parent: 4812 - type: Transform - - uid: 10129 - components: - - pos: -26.5,-3.5 - parent: 4812 - type: Transform - - uid: 10130 - components: - - pos: -26.5,-4.5 - parent: 4812 - type: Transform - - uid: 10131 - components: - - pos: -26.5,-5.5 - parent: 4812 - type: Transform - - uid: 10132 - components: - - pos: -26.5,-6.5 - parent: 4812 - type: Transform - - uid: 10133 - components: - - pos: -26.5,-7.5 - parent: 4812 - type: Transform - - uid: 10134 - components: - - pos: -26.5,-8.5 - parent: 4812 - type: Transform - - uid: 10135 - components: - - pos: -26.5,-9.5 - parent: 4812 - type: Transform - - uid: 10136 - components: - - pos: -36.5,-9.5 - parent: 4812 - type: Transform - - uid: 10137 - components: - - pos: -36.5,-10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10138 - components: - - pos: -36.5,-11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10139 - components: - - pos: -36.5,-12.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10140 - components: - - pos: -36.5,-13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10141 - components: - - pos: -36.5,-14.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10142 - components: - - pos: -36.5,-15.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10143 - components: - - pos: -36.5,-16.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10144 - components: - - pos: -36.5,-17.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10145 - components: - - pos: -36.5,-18.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10146 - components: - - pos: -35.5,-11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10147 - components: - - pos: -34.5,-11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10148 - components: - - pos: -33.5,-11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10149 - components: - - pos: -32.5,-11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10150 - components: - - pos: -31.5,-11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10151 - components: - - pos: -30.5,-11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10152 - components: - - pos: -29.5,-11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10190 - components: - - pos: -51.5,-21.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10191 - components: - - pos: -51.5,-22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10192 - components: - - pos: -52.5,-22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10193 - components: - - pos: -53.5,-22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10194 - components: - - pos: -54.5,-22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10195 - components: - - pos: -55.5,-22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10196 - components: - - pos: -51.5,-23.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10197 - components: - - pos: -51.5,-24.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10198 - components: - - pos: -51.5,-25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10199 - components: - - pos: -50.5,-22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10200 - components: - - pos: -49.5,-22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10201 - components: - - pos: -48.5,-22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10202 - components: - - pos: -47.5,-22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10203 - components: - - pos: -46.5,-22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10204 - components: - - pos: -45.5,-22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10205 - components: - - pos: -34.5,-31.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10206 - components: - - pos: -35.5,-31.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10207 - components: - - pos: -36.5,-31.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10208 - components: - - pos: -37.5,-31.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10209 - components: - - pos: -38.5,-31.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10210 - components: - - pos: -39.5,-31.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10211 - components: - - pos: -40.5,-31.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10212 - components: - - pos: -40.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10213 - components: - - pos: -40.5,-29.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10214 - components: - - pos: -40.5,-28.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10215 - components: - - pos: -40.5,-27.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10216 - components: - - pos: -40.5,-26.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10217 - components: - - pos: -40.5,-25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10218 - components: - - pos: -40.5,-24.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10219 - components: - - pos: -40.5,-23.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10220 - components: - - pos: -40.5,-22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10221 - components: - - pos: -40.5,-21.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10222 - components: - - pos: -41.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10223 - components: - - pos: -42.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10508 - components: - - pos: -34.5,-25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10509 - components: - - pos: -34.5,-26.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10510 - components: - - pos: -34.5,-27.5 - parent: 4812 - type: Transform - - uid: 10511 - components: - - pos: -34.5,-28.5 - parent: 4812 - type: Transform - - uid: 10512 - components: - - pos: -35.5,-28.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10513 - components: - - pos: -36.5,-28.5 - parent: 4812 - type: Transform - - uid: 10514 - components: - - pos: -37.5,-28.5 - parent: 4812 - type: Transform - - uid: 10515 - components: - - pos: -37.5,-27.5 - parent: 4812 - type: Transform - - uid: 10516 - components: - - pos: -37.5,-26.5 - parent: 4812 - type: Transform - - uid: 10517 - components: - - pos: -37.5,-25.5 - parent: 4812 - type: Transform - - uid: 10518 - components: - - pos: -37.5,-24.5 - parent: 4812 - type: Transform - - uid: 10519 - components: - - pos: -37.5,-23.5 - parent: 4812 - type: Transform - - uid: 10599 - components: - - pos: -44.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10615 - components: - - pos: -40.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10656 - components: - - pos: -54.5,-12.5 - parent: 4812 - type: Transform - - uid: 10657 - components: - - pos: -55.5,-12.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10665 - components: - - pos: -48.5,-7.5 - parent: 4812 - type: Transform - - uid: 10882 - components: - - pos: -38.5,7.5 - parent: 4812 - type: Transform - - uid: 10883 - components: - - pos: -37.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10884 - components: - - pos: -36.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10885 - components: - - pos: -35.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10886 - components: - - pos: -34.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10887 - components: - - pos: -33.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10888 - components: - - pos: -32.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10889 - components: - - pos: -31.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10890 - components: - - pos: -30.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10891 - components: - - pos: -26.5,5.5 - parent: 4812 - type: Transform - - uid: 10892 - components: - - pos: -26.5,6.5 - parent: 4812 - type: Transform - - uid: 10893 - components: - - pos: -26.5,7.5 - parent: 4812 - type: Transform - - uid: 10894 - components: - - pos: -26.5,8.5 - parent: 4812 - type: Transform - - uid: 10895 - components: - - pos: -25.5,8.5 - parent: 4812 - type: Transform - - uid: 10896 - components: - - pos: -22.5,9.5 - parent: 4812 - type: Transform - - uid: 10897 - components: - - pos: -22.5,8.5 - parent: 4812 - type: Transform - - uid: 11168 - components: - - pos: 9.5,-35.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11169 - components: - - pos: 9.5,-35.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11170 - components: - - pos: 9.5,-36.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11171 - components: - - pos: 9.5,-37.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11172 - components: - - pos: 9.5,-38.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11173 - components: - - pos: 9.5,-39.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11174 - components: - - pos: 9.5,-40.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11175 - components: - - pos: 9.5,-41.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11176 - components: - - pos: 9.5,-42.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11177 - components: - - pos: 10.5,-41.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11178 - components: - - pos: 11.5,-41.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11179 - components: - - pos: 12.5,-41.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11180 - components: - - pos: 13.5,-41.5 - parent: 4812 - type: Transform - - uid: 11181 - components: - - pos: 8.5,-41.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11182 - components: - - pos: 7.5,-41.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11183 - components: - - pos: 6.5,-41.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11184 - components: - - pos: 5.5,-41.5 - parent: 4812 - type: Transform - - uid: 11185 - components: - - pos: 10.5,-37.5 - parent: 4812 - type: Transform - - uid: 11186 - components: - - pos: 11.5,-37.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11187 - components: - - pos: 12.5,-37.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11188 - components: - - pos: 13.5,-37.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11189 - components: - - pos: 8.5,-37.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11190 - components: - - pos: 7.5,-37.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11191 - components: - - pos: 6.5,-37.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11192 - components: - - pos: 5.5,-37.5 - parent: 4812 - type: Transform - - uid: 11193 - components: - - pos: 9.5,-34.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11194 - components: - - pos: 9.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11195 - components: - - pos: 9.5,-32.5 - parent: 4812 - type: Transform - - uid: 11196 - components: - - pos: 9.5,-31.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11197 - components: - - pos: 8.5,-33.5 - parent: 4812 - type: Transform - - uid: 11198 - components: - - pos: 7.5,-33.5 - parent: 4812 - type: Transform - - uid: 11199 - components: - - pos: 6.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11200 - components: - - pos: 5.5,-33.5 - parent: 4812 - type: Transform - - uid: 11201 - components: - - pos: 10.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11202 - components: - - pos: 9.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11203 - components: - - pos: 8.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11204 - components: - - pos: 7.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11205 - components: - - pos: 6.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11206 - components: - - pos: 5.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11207 - components: - - pos: 4.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11208 - components: - - pos: 9.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11209 - components: - - pos: 10.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11210 - components: - - pos: 11.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11211 - components: - - pos: 12.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11212 - components: - - pos: 12.5,-31.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11213 - components: - - pos: 12.5,-32.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11214 - components: - - pos: 12.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11215 - components: - - pos: 14.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11274 - components: - - pos: 19.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11276 - components: - - pos: 19.5,-35.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11277 - components: - - pos: 19.5,-36.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11278 - components: - - pos: 19.5,-37.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11279 - components: - - pos: 19.5,-38.5 - parent: 4812 - type: Transform - - uid: 11280 - components: - - pos: 20.5,-37.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11281 - components: - - pos: 21.5,-37.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11282 - components: - - pos: 18.5,-37.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11283 - components: - - pos: 17.5,-37.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11310 - components: - - pos: 33.5,-37.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11311 - components: - - pos: 33.5,-28.5 - parent: 4812 - type: Transform - - uid: 11312 - components: - - pos: 33.5,-29.5 - parent: 4812 - type: Transform - - uid: 11313 - components: - - pos: 33.5,-31.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11314 - components: - - pos: 33.5,-32.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11315 - components: - - pos: 33.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11316 - components: - - pos: 32.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11317 - components: - - pos: 31.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11318 - components: - - pos: 30.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11319 - components: - - pos: 29.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11320 - components: - - pos: 28.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11321 - components: - - pos: 27.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11322 - components: - - pos: 26.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11323 - components: - - pos: 25.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11324 - components: - - pos: 25.5,-34.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11325 - components: - - pos: 24.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11441 - components: - - pos: 30.5,-37.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11442 - components: - - pos: 30.5,-38.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11443 - components: - - pos: 32.5,-38.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11444 - components: - - pos: 31.5,-38.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11445 - components: - - pos: 33.5,-38.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11446 - components: - - pos: 34.5,-38.5 - parent: 4812 - type: Transform - - uid: 11447 - components: - - pos: 33.5,-36.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11448 - components: - - pos: 34.5,-36.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11449 - components: - - pos: 35.5,-36.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11450 - components: - - pos: 36.5,-36.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11451 - components: - - pos: 37.5,-36.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11452 - components: - - pos: 32.5,-36.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11453 - components: - - pos: 31.5,-36.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11454 - components: - - pos: 31.5,-35.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11455 - components: - - pos: 31.5,-34.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11456 - components: - - pos: 33.5,-34.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11457 - components: - - pos: 34.5,-34.5 - parent: 4812 - type: Transform - - uid: 11458 - components: - - pos: 35.5,-34.5 - parent: 4812 - type: Transform - - uid: 11459 - components: - - pos: 36.5,-34.5 - parent: 4812 - type: Transform - - uid: 11460 - components: - - pos: 36.5,-33.5 - parent: 4812 - type: Transform - - uid: 11919 - components: - - pos: 13.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12048 - components: - - pos: -27.5,-23.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12049 - components: - - pos: -28.5,-22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12050 - components: - - pos: -28.5,-24.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12051 - components: - - pos: -28.5,-23.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound -- proto: CableApcStack - entities: - - uid: 6196 - components: - - pos: 7.451914,-16.53358 - parent: 4812 - type: Transform - - uid: 6249 - components: - - pos: 13.4315815,-23.512243 - parent: 4812 - type: Transform - - uid: 8585 - components: - - pos: -16.671284,7.8180285 - parent: 4812 - type: Transform - - uid: 11952 - components: - - pos: -10.655096,15.8788185 - parent: 4812 - type: Transform - - uid: 11953 - components: - - pos: -10.655096,15.8788185 - parent: 4812 - type: Transform -- proto: CableHV - entities: - - uid: 943 - components: - - pos: -14.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 944 - components: - - pos: -14.5,8.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 945 - components: - - pos: -14.5,9.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 946 - components: - - pos: -14.5,10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 947 - components: - - pos: -14.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 948 - components: - - pos: -14.5,12.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 949 - components: - - pos: -14.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 950 - components: - - pos: -13.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 951 - components: - - pos: -12.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 952 - components: - - pos: -11.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 953 - components: - - pos: -10.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 954 - components: - - pos: -9.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 955 - components: - - pos: -8.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 956 - components: - - pos: -7.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 957 - components: - - pos: -6.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 958 - components: - - pos: -5.5,13.5 - parent: 4812 - type: Transform - - uid: 959 - components: - - pos: -4.5,13.5 - parent: 4812 - type: Transform - - uid: 960 - components: - - pos: -3.5,13.5 - parent: 4812 - type: Transform - - uid: 961 - components: - - pos: -2.5,13.5 - parent: 4812 - type: Transform - - uid: 962 - components: - - pos: -1.5,13.5 - parent: 4812 - type: Transform - - uid: 964 - components: - - pos: -0.5,14.5 - parent: 4812 - type: Transform - - uid: 965 - components: - - pos: 0.5,14.5 - parent: 4812 - type: Transform - - uid: 966 - components: - - pos: 1.5,14.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 967 - components: - - pos: 2.5,14.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 968 - components: - - pos: 2.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 969 - components: - - pos: 2.5,12.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 970 - components: - - pos: 2.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2080 - components: - - pos: 6.5,31.5 - parent: 4812 - type: Transform - - uid: 2081 - components: - - pos: 6.5,32.5 - parent: 4812 - type: Transform - - uid: 2082 - components: - - pos: 5.5,32.5 - parent: 4812 - type: Transform - - uid: 2083 - components: - - pos: 4.5,32.5 - parent: 4812 - type: Transform - - uid: 2084 - components: - - pos: 3.5,32.5 - parent: 4812 - type: Transform - - uid: 2085 - components: - - pos: 3.5,31.5 - parent: 4812 - type: Transform - - uid: 2086 - components: - - pos: 3.5,30.5 - parent: 4812 - type: Transform - - uid: 2087 - components: - - pos: 3.5,29.5 - parent: 4812 - type: Transform - - uid: 2088 - components: - - pos: 3.5,28.5 - parent: 4812 - type: Transform - - uid: 2089 - components: - - pos: 3.5,27.5 - parent: 4812 - type: Transform - - uid: 2090 - components: - - pos: 3.5,26.5 - parent: 4812 - type: Transform - - uid: 2091 - components: - - pos: 3.5,25.5 - parent: 4812 - type: Transform - - uid: 2092 - components: - - pos: 3.5,24.5 - parent: 4812 - type: Transform - - uid: 2093 - components: - - pos: 3.5,23.5 - parent: 4812 - type: Transform - - uid: 2094 - components: - - pos: 3.5,22.5 - parent: 4812 - type: Transform - - uid: 2095 - components: - - pos: 3.5,21.5 - parent: 4812 - type: Transform - - uid: 2096 - components: - - pos: 3.5,20.5 - parent: 4812 - type: Transform - - uid: 2097 - components: - - pos: 3.5,19.5 - parent: 4812 - type: Transform - - uid: 2098 - components: - - pos: 2.5,19.5 - parent: 4812 - type: Transform - - uid: 2099 - components: - - pos: 1.5,19.5 - parent: 4812 - type: Transform - - uid: 2100 - components: - - pos: 0.5,19.5 - parent: 4812 - type: Transform - - uid: 2101 - components: - - pos: -0.5,19.5 - parent: 4812 - type: Transform - - uid: 2102 - components: - - pos: -1.5,19.5 - parent: 4812 - type: Transform - - uid: 2103 - components: - - pos: -1.5,18.5 - parent: 4812 - type: Transform - - uid: 2104 - components: - - pos: -1.5,17.5 - parent: 4812 - type: Transform - - uid: 2105 - components: - - pos: -1.5,16.5 - parent: 4812 - type: Transform - - uid: 2106 - components: - - pos: -1.5,15.5 - parent: 4812 - type: Transform - - uid: 2107 - components: - - pos: -1.5,14.5 - parent: 4812 - type: Transform - - uid: 2108 - components: - - pos: 3.5,33.5 - parent: 4812 - type: Transform - - uid: 2109 - components: - - pos: 3.5,34.5 - parent: 4812 - type: Transform - - uid: 2110 - components: - - pos: 3.5,35.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2111 - components: - - pos: 4.5,35.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2112 - components: - - pos: 4.5,34.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2113 - components: - - pos: 2.5,34.5 - parent: 4812 - type: Transform - - uid: 2114 - components: - - pos: 1.5,34.5 - parent: 4812 - type: Transform - - uid: 2115 - components: - - pos: 1.5,35.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2116 - components: - - pos: 1.5,36.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2117 - components: - - pos: 0.5,36.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2118 - components: - - pos: 0.5,35.5 - parent: 4812 - type: Transform - - uid: 2119 - components: - - pos: -0.5,35.5 - parent: 4812 - type: Transform - - uid: 2120 - components: - - pos: -1.5,35.5 - parent: 4812 - type: Transform - - uid: 2121 - components: - - pos: -2.5,35.5 - parent: 4812 - type: Transform - - uid: 2122 - components: - - pos: -3.5,35.5 - parent: 4812 - type: Transform - - uid: 2123 - components: - - pos: -4.5,35.5 - parent: 4812 - type: Transform - - uid: 2124 - components: - - pos: -5.5,35.5 - parent: 4812 - type: Transform - - uid: 2125 - components: - - pos: -3.5,36.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2126 - components: - - pos: -2.5,36.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2127 - components: - - pos: -1.5,36.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2128 - components: - - pos: -5.5,36.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2129 - components: - - pos: -6.5,36.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2130 - components: - - pos: -6.5,35.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2131 - components: - - pos: 6.5,33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2132 - components: - - pos: -6.5,34.5 - parent: 4812 - type: Transform - - uid: 2133 - components: - - pos: -7.5,34.5 - parent: 4812 - type: Transform - - uid: 2134 - components: - - pos: -8.5,34.5 - parent: 4812 - type: Transform - - uid: 2135 - components: - - pos: -9.5,34.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2136 - components: - - pos: -9.5,35.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2137 - components: - - pos: -8.5,35.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2138 - components: - - pos: -8.5,33.5 - parent: 4812 - type: Transform - - uid: 2139 - components: - - pos: -8.5,32.5 - parent: 4812 - type: Transform - - uid: 2140 - components: - - pos: -9.5,32.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2839 - components: - - pos: 13.5,32.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3047 - components: - - pos: 12.5,32.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3048 - components: - - pos: 12.5,31.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3049 - components: - - pos: 12.5,30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3050 - components: - - pos: 12.5,29.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3051 - components: - - pos: 12.5,28.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3052 - components: - - pos: 12.5,27.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3053 - components: - - pos: 12.5,26.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3054 - components: - - pos: 12.5,25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3055 - components: - - pos: 12.5,24.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3056 - components: - - pos: 12.5,23.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3057 - components: - - pos: 12.5,22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3058 - components: - - pos: 12.5,21.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3059 - components: - - pos: 12.5,20.5 - parent: 4812 - type: Transform - - uid: 3060 - components: - - pos: 12.5,19.5 - parent: 4812 - type: Transform - - uid: 3061 - components: - - pos: 4.5,19.5 - parent: 4812 - type: Transform - - uid: 3062 - components: - - pos: 5.5,19.5 - parent: 4812 - type: Transform - - uid: 3063 - components: - - pos: 6.5,19.5 - parent: 4812 - type: Transform - - uid: 3064 - components: - - pos: 7.5,19.5 - parent: 4812 - type: Transform - - uid: 3065 - components: - - pos: 8.5,19.5 - parent: 4812 - type: Transform - - uid: 3066 - components: - - pos: 9.5,19.5 - parent: 4812 - type: Transform - - uid: 3067 - components: - - pos: 10.5,19.5 - parent: 4812 - type: Transform - - uid: 3068 - components: - - pos: 11.5,19.5 - parent: 4812 - type: Transform - - uid: 3069 - components: - - pos: 3.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3070 - components: - - pos: 4.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3071 - components: - - pos: 5.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3072 - components: - - pos: 6.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3073 - components: - - pos: 7.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3074 - components: - - pos: 8.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3075 - components: - - pos: 9.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3076 - components: - - pos: 9.5,10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3077 - components: - - pos: 9.5,9.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3078 - components: - - pos: 9.5,8.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3079 - components: - - pos: 9.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3080 - components: - - pos: 9.5,6.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3081 - components: - - pos: 9.5,5.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3082 - components: - - pos: 9.5,4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3083 - components: - - pos: 9.5,3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3084 - components: - - pos: 10.5,3.5 - parent: 4812 - type: Transform - - uid: 3085 - components: - - pos: 11.5,3.5 - parent: 4812 - type: Transform - - uid: 3086 - components: - - pos: 11.5,4.5 - parent: 4812 - type: Transform - - uid: 3087 - components: - - pos: 11.5,5.5 - parent: 4812 - type: Transform - - uid: 3088 - components: - - pos: 11.5,6.5 - parent: 4812 - type: Transform - - uid: 3089 - components: - - pos: 11.5,7.5 - parent: 4812 - type: Transform - - uid: 3090 - components: - - pos: 11.5,8.5 - parent: 4812 - type: Transform - - uid: 3091 - components: - - pos: 11.5,9.5 - parent: 4812 - type: Transform - - uid: 3092 - components: - - pos: 11.5,10.5 - parent: 4812 - type: Transform - - uid: 3093 - components: - - pos: 11.5,11.5 - parent: 4812 - type: Transform - - uid: 3094 - components: - - pos: 11.5,12.5 - parent: 4812 - type: Transform - - uid: 3095 - components: - - pos: 11.5,13.5 - parent: 4812 - type: Transform - - uid: 3096 - components: - - pos: 11.5,14.5 - parent: 4812 - type: Transform - - uid: 3097 - components: - - pos: 11.5,15.5 - parent: 4812 - type: Transform - - uid: 3098 - components: - - pos: 11.5,16.5 - parent: 4812 - type: Transform - - uid: 3099 - components: - - pos: 11.5,17.5 - parent: 4812 - type: Transform - - uid: 3100 - components: - - pos: 11.5,18.5 - parent: 4812 - type: Transform - - uid: 3789 - components: - - pos: 14.5,46.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3790 - components: - - pos: 14.5,45.5 - parent: 4812 - type: Transform - - uid: 3791 - components: - - pos: 14.5,44.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3792 - components: - - pos: 14.5,47.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3793 - components: - - pos: 13.5,47.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3853 - components: - - pos: 13.5,45.5 - parent: 4812 - type: Transform - - uid: 3854 - components: - - pos: 12.5,45.5 - parent: 4812 - type: Transform - - uid: 3855 - components: - - pos: 11.5,45.5 - parent: 4812 - type: Transform - - uid: 3856 - components: - - pos: 10.5,45.5 - parent: 4812 - type: Transform - - uid: 3857 - components: - - pos: 10.5,46.5 - parent: 4812 - type: Transform - - uid: 3858 - components: - - pos: 10.5,47.5 - parent: 4812 - type: Transform - - uid: 3859 - components: - - pos: 10.5,48.5 - parent: 4812 - type: Transform - - uid: 3860 - components: - - pos: 10.5,49.5 - parent: 4812 - type: Transform - - uid: 3861 - components: - - pos: 10.5,50.5 - parent: 4812 - type: Transform - - uid: 3862 - components: - - pos: 11.5,50.5 - parent: 4812 - type: Transform - - uid: 3863 - components: - - pos: 12.5,50.5 - parent: 4812 - type: Transform - - uid: 3864 - components: - - pos: 12.5,51.5 - parent: 4812 - type: Transform - - uid: 3865 - components: - - pos: 12.5,52.5 - parent: 4812 - type: Transform - - uid: 3866 - components: - - pos: 12.5,53.5 - parent: 4812 - type: Transform - - uid: 3867 - components: - - pos: 12.5,54.5 - parent: 4812 - type: Transform - - uid: 3868 - components: - - pos: 12.5,55.5 - parent: 4812 - type: Transform - - uid: 3869 - components: - - pos: 9.5,50.5 - parent: 4812 - type: Transform - - uid: 3870 - components: - - pos: 8.5,50.5 - parent: 4812 - type: Transform - - uid: 3871 - components: - - pos: 8.5,51.5 - parent: 4812 - type: Transform - - uid: 3872 - components: - - pos: 8.5,52.5 - parent: 4812 - type: Transform - - uid: 3873 - components: - - pos: 8.5,53.5 - parent: 4812 - type: Transform - - uid: 3874 - components: - - pos: 8.5,54.5 - parent: 4812 - type: Transform - - uid: 3875 - components: - - pos: 8.5,55.5 - parent: 4812 - type: Transform - - uid: 3876 - components: - - pos: 9.5,55.5 - parent: 4812 - type: Transform - - uid: 3877 - components: - - pos: 11.5,55.5 - parent: 4812 - type: Transform - - uid: 3878 - components: - - pos: 10.5,55.5 - parent: 4812 - type: Transform - - uid: 3879 - components: - - pos: 10.5,56.5 - parent: 4812 - type: Transform - - uid: 4235 - components: - - pos: 12.5,3.5 - parent: 4812 - type: Transform - - uid: 4236 - components: - - pos: 13.5,3.5 - parent: 4812 - type: Transform - - uid: 4237 - components: - - pos: 14.5,3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4238 - components: - - pos: 15.5,3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4239 - components: - - pos: 15.5,4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4240 - components: - - pos: 17.5,4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4241 - components: - - pos: 16.5,4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4242 - components: - - pos: 18.5,4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4243 - components: - - pos: 18.5,3.5 - parent: 4812 - type: Transform - - uid: 4244 - components: - - pos: 18.5,2.5 - parent: 4812 - type: Transform - - uid: 4245 - components: - - pos: 17.5,2.5 - parent: 4812 - type: Transform - - uid: 5014 - components: - - pos: -26.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5914 - components: - - pos: 16.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5915 - components: - - pos: 15.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5916 - components: - - pos: 15.5,-31.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5917 - components: - - pos: 15.5,-32.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5918 - components: - - pos: 15.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5919 - components: - - pos: 16.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5920 - components: - - pos: 17.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5921 - components: - - pos: 18.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5922 - components: - - pos: 18.5,-32.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5923 - components: - - pos: 18.5,-31.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5924 - components: - - pos: 18.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5925 - components: - - pos: 18.5,-29.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5926 - components: - - pos: 18.5,-28.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5927 - components: - - pos: 18.5,-27.5 - parent: 4812 - type: Transform - - uid: 5928 - components: - - pos: 18.5,-26.5 - parent: 4812 - type: Transform - - uid: 5929 - components: - - pos: 18.5,-25.5 - parent: 4812 - type: Transform - - uid: 5930 - components: - - pos: 18.5,-24.5 - parent: 4812 - type: Transform - - uid: 5931 - components: - - pos: 18.5,-23.5 - parent: 4812 - type: Transform - - uid: 5932 - components: - - pos: 18.5,-22.5 - parent: 4812 - type: Transform - - uid: 5933 - components: - - pos: 18.5,-21.5 - parent: 4812 - type: Transform - - uid: 5934 - components: - - pos: 18.5,-20.5 - parent: 4812 - type: Transform - - uid: 5935 - components: - - pos: 17.5,-20.5 - parent: 4812 - type: Transform - - uid: 5936 - components: - - pos: 16.5,-20.5 - parent: 4812 - type: Transform - - uid: 5937 - components: - - pos: 16.5,-19.5 - parent: 4812 - type: Transform - - uid: 5938 - components: - - pos: 16.5,-18.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5939 - components: - - pos: 16.5,-17.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5940 - components: - - pos: 16.5,-16.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5941 - components: - - pos: 16.5,-15.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5942 - components: - - pos: 16.5,-14.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5943 - components: - - pos: 15.5,-14.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5944 - components: - - pos: 14.5,-14.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5945 - components: - - pos: 14.5,-14.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5946 - components: - - pos: 13.5,-14.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5947 - components: - - pos: 12.5,-14.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5948 - components: - - pos: 12.5,-13.5 - parent: 4812 - type: Transform - - uid: 5949 - components: - - pos: 12.5,-12.5 - parent: 4812 - type: Transform - - uid: 5950 - components: - - pos: 12.5,-11.5 - parent: 4812 - type: Transform - - uid: 5951 - components: - - pos: 11.5,-11.5 - parent: 4812 - type: Transform - - uid: 5952 - components: - - pos: 10.5,-11.5 - parent: 4812 - type: Transform - - uid: 5953 - components: - - pos: 9.5,-11.5 - parent: 4812 - type: Transform - - uid: 5954 - components: - - pos: 8.5,-11.5 - parent: 4812 - type: Transform - - uid: 5955 - components: - - pos: 8.5,-10.5 - parent: 4812 - type: Transform - - uid: 5956 - components: - - pos: 8.5,-9.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5957 - components: - - pos: 9.5,-9.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5958 - components: - - pos: 9.5,-8.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5959 - components: - - pos: 9.5,-7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5960 - components: - - pos: 9.5,-6.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5961 - components: - - pos: 9.5,-5.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5962 - components: - - pos: 9.5,-4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5963 - components: - - pos: 9.5,-3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5964 - components: - - pos: 9.5,-2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5965 - components: - - pos: 9.5,-1.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5966 - components: - - pos: 9.5,-0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5967 - components: - - pos: 9.5,0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5968 - components: - - pos: 9.5,1.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5969 - components: - - pos: 9.5,2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6020 - components: - - pos: 16.5,-31.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6519 - components: - - pos: -25.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6918 - components: - - pos: -8.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6919 - components: - - pos: -8.5,-31.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6920 - components: - - pos: -8.5,-32.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6921 - components: - - pos: -10.5,-32.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6922 - components: - - pos: -9.5,-32.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6923 - components: - - pos: -10.5,-33.5 - parent: 4812 - type: Transform - - uid: 6924 - components: - - pos: -10.5,-34.5 - parent: 4812 - type: Transform - - uid: 6925 - components: - - pos: -9.5,-34.5 - parent: 4812 - type: Transform - - uid: 6926 - components: - - pos: -8.5,-34.5 - parent: 4812 - type: Transform - - uid: 6927 - components: - - pos: -7.5,-34.5 - parent: 4812 - type: Transform - - uid: 6928 - components: - - pos: -6.5,-34.5 - parent: 4812 - type: Transform - - uid: 6929 - components: - - pos: -5.5,-34.5 - parent: 4812 - type: Transform - - uid: 6930 - components: - - pos: -4.5,-34.5 - parent: 4812 - type: Transform - - uid: 6931 - components: - - pos: -3.5,-34.5 - parent: 4812 - type: Transform - - uid: 6932 - components: - - pos: -2.5,-34.5 - parent: 4812 - type: Transform - - uid: 6933 - components: - - pos: -1.5,-34.5 - parent: 4812 - type: Transform - - uid: 6934 - components: - - pos: -0.5,-34.5 - parent: 4812 - type: Transform - - uid: 6935 - components: - - pos: 0.5,-34.5 - parent: 4812 - type: Transform - - uid: 6936 - components: - - pos: 1.5,-34.5 - parent: 4812 - type: Transform - - uid: 6937 - components: - - pos: 1.5,-33.5 - parent: 4812 - type: Transform - - uid: 6938 - components: - - pos: 1.5,-32.5 - parent: 4812 - type: Transform - - uid: 6939 - components: - - pos: 1.5,-31.5 - parent: 4812 - type: Transform - - uid: 6940 - components: - - pos: 1.5,-30.5 - parent: 4812 - type: Transform - - uid: 6941 - components: - - pos: 2.5,-30.5 - parent: 4812 - type: Transform - - uid: 6942 - components: - - pos: 3.5,-30.5 - parent: 4812 - type: Transform - - uid: 6943 - components: - - pos: 4.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6944 - components: - - pos: 5.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6945 - components: - - pos: 6.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6946 - components: - - pos: 7.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6947 - components: - - pos: 8.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6948 - components: - - pos: 9.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6949 - components: - - pos: 10.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6950 - components: - - pos: 11.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6951 - components: - - pos: 12.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6952 - components: - - pos: 12.5,-31.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6953 - components: - - pos: 12.5,-32.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6954 - components: - - pos: 12.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6955 - components: - - pos: 13.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6956 - components: - - pos: 14.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6957 - components: - - pos: 1.5,-29.5 - parent: 4812 - type: Transform - - uid: 6958 - components: - - pos: 1.5,-28.5 - parent: 4812 - type: Transform - - uid: 6959 - components: - - pos: 1.5,-27.5 - parent: 4812 - type: Transform - - uid: 6960 - components: - - pos: 1.5,-26.5 - parent: 4812 - type: Transform - - uid: 6961 - components: - - pos: 1.5,-25.5 - parent: 4812 - type: Transform - - uid: 6962 - components: - - pos: 1.5,-24.5 - parent: 4812 - type: Transform - - uid: 6963 - components: - - pos: 1.5,-23.5 - parent: 4812 - type: Transform - - uid: 6964 - components: - - pos: 1.5,-22.5 - parent: 4812 - type: Transform - - uid: 6965 - components: - - pos: 1.5,-21.5 - parent: 4812 - type: Transform - - uid: 6966 - components: - - pos: 1.5,-20.5 - parent: 4812 - type: Transform - - uid: 6967 - components: - - pos: 1.5,-19.5 - parent: 4812 - type: Transform - - uid: 6968 - components: - - pos: 1.5,-18.5 - parent: 4812 - type: Transform - - uid: 6969 - components: - - pos: 1.5,-17.5 - parent: 4812 - type: Transform - - uid: 6970 - components: - - pos: 1.5,-16.5 - parent: 4812 - type: Transform - - uid: 6971 - components: - - pos: 1.5,-15.5 - parent: 4812 - type: Transform - - uid: 6972 - components: - - pos: 1.5,-14.5 - parent: 4812 - type: Transform - - uid: 6973 - components: - - pos: 1.5,-13.5 - parent: 4812 - type: Transform - - uid: 6974 - components: - - pos: 1.5,-12.5 - parent: 4812 - type: Transform - - uid: 6975 - components: - - pos: 1.5,-11.5 - parent: 4812 - type: Transform - - uid: 6976 - components: - - pos: 2.5,-11.5 - parent: 4812 - type: Transform - - uid: 6977 - components: - - pos: 3.5,-11.5 - parent: 4812 - type: Transform - - uid: 6978 - components: - - pos: 4.5,-11.5 - parent: 4812 - type: Transform - - uid: 6979 - components: - - pos: 5.5,-11.5 - parent: 4812 - type: Transform - - uid: 6980 - components: - - pos: 6.5,-11.5 - parent: 4812 - type: Transform - - uid: 6981 - components: - - pos: 7.5,-11.5 - parent: 4812 - type: Transform - - uid: 7280 - components: - - pos: -27.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7282 - components: - - pos: -28.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7283 - components: - - pos: -29.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7958 - components: - - pos: -37.5,8.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7959 - components: - - pos: -37.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7960 - components: - - pos: -36.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7961 - components: - - pos: -35.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7962 - components: - - pos: -34.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7963 - components: - - pos: -33.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7964 - components: - - pos: -32.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7965 - components: - - pos: -31.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7966 - components: - - pos: -30.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7967 - components: - - pos: -29.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7968 - components: - - pos: -29.5,8.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7969 - components: - - pos: -28.5,8.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7970 - components: - - pos: -27.5,8.5 - parent: 4812 - type: Transform - - uid: 7971 - components: - - pos: -26.5,8.5 - parent: 4812 - type: Transform - - uid: 7972 - components: - - pos: -25.5,8.5 - parent: 4812 - type: Transform - - uid: 7973 - components: - - pos: -24.5,8.5 - parent: 4812 - type: Transform - - uid: 7974 - components: - - pos: -23.5,8.5 - parent: 4812 - type: Transform - - uid: 7975 - components: - - pos: -22.5,8.5 - parent: 4812 - type: Transform - - uid: 7976 - components: - - pos: -22.5,9.5 - parent: 4812 - type: Transform - - uid: 7977 - components: - - pos: -22.5,10.5 - parent: 4812 - type: Transform - - uid: 7978 - components: - - pos: -21.5,10.5 - parent: 4812 - type: Transform - - uid: 7979 - components: - - pos: -20.5,10.5 - parent: 4812 - type: Transform - - uid: 7980 - components: - - pos: -19.5,10.5 - parent: 4812 - type: Transform - - uid: 7981 - components: - - pos: -18.5,10.5 - parent: 4812 - type: Transform - - uid: 7982 - components: - - pos: -17.5,10.5 - parent: 4812 - type: Transform - - uid: 7983 - components: - - pos: -16.5,10.5 - parent: 4812 - type: Transform - - uid: 7984 - components: - - pos: -15.5,10.5 - parent: 4812 - type: Transform - - uid: 8725 - components: - - pos: -45.5,-2.5 - parent: 4812 - type: Transform - - uid: 8738 - components: - - pos: -45.5,-3.5 - parent: 4812 - type: Transform - - uid: 8739 - components: - - pos: -44.5,-3.5 - parent: 4812 - type: Transform - - uid: 8740 - components: - - pos: -44.5,-2.5 - parent: 4812 - type: Transform - - uid: 8741 - components: - - pos: -45.5,-1.5 - parent: 4812 - type: Transform - - uid: 8742 - components: - - pos: -44.5,-1.5 - parent: 4812 - type: Transform - - uid: 8743 - components: - - pos: -43.5,-1.5 - parent: 4812 - type: Transform - - uid: 8744 - components: - - pos: -42.5,-1.5 - parent: 4812 - type: Transform - - uid: 8745 - components: - - pos: -42.5,-2.5 - parent: 4812 - type: Transform - - uid: 8746 - components: - - pos: -42.5,-3.5 - parent: 4812 - type: Transform - - uid: 8747 - components: - - pos: -42.5,-4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8748 - components: - - pos: -44.5,-4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8749 - components: - - pos: -44.5,-5.5 - parent: 4812 - type: Transform - - uid: 8750 - components: - - pos: -42.5,-5.5 - parent: 4812 - type: Transform - - uid: 8755 - components: - - pos: -43.5,-2.5 - parent: 4812 - type: Transform - - uid: 9732 - components: - - pos: -42.5,-6.5 - parent: 4812 - type: Transform - - uid: 9733 - components: - - pos: -42.5,-7.5 - parent: 4812 - type: Transform - - uid: 9734 - components: - - pos: -42.5,-8.5 - parent: 4812 - type: Transform - - uid: 9735 - components: - - pos: -41.5,-8.5 - parent: 4812 - type: Transform - - uid: 9736 - components: - - pos: -40.5,-8.5 - parent: 4812 - type: Transform - - uid: 9737 - components: - - pos: -39.5,-8.5 - parent: 4812 - type: Transform - - uid: 9738 - components: - - pos: -38.5,-8.5 - parent: 4812 - type: Transform - - uid: 9739 - components: - - pos: -37.5,-8.5 - parent: 4812 - type: Transform - - uid: 9740 - components: - - pos: -36.5,-8.5 - parent: 4812 - type: Transform - - uid: 9741 - components: - - pos: -35.5,-8.5 - parent: 4812 - type: Transform - - uid: 9742 - components: - - pos: -34.5,-8.5 - parent: 4812 - type: Transform - - uid: 9743 - components: - - pos: -33.5,-8.5 - parent: 4812 - type: Transform - - uid: 9744 - components: - - pos: -32.5,-8.5 - parent: 4812 - type: Transform - - uid: 9745 - components: - - pos: -31.5,-8.5 - parent: 4812 - type: Transform - - uid: 9746 - components: - - pos: -30.5,-8.5 - parent: 4812 - type: Transform - - uid: 9747 - components: - - pos: -29.5,-8.5 - parent: 4812 - type: Transform - - uid: 9748 - components: - - pos: -29.5,-7.5 - parent: 4812 - type: Transform - - uid: 9749 - components: - - pos: -29.5,-6.5 - parent: 4812 - type: Transform - - uid: 9750 - components: - - pos: -29.5,-5.5 - parent: 4812 - type: Transform - - uid: 9751 - components: - - pos: -38.5,7.5 - parent: 4812 - type: Transform - - uid: 9752 - components: - - pos: -39.5,7.5 - parent: 4812 - type: Transform - - uid: 9753 - components: - - pos: -39.5,5.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9754 - components: - - pos: -38.5,5.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9755 - components: - - pos: -39.5,6.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9756 - components: - - pos: -37.5,5.5 - parent: 4812 - type: Transform - - uid: 9757 - components: - - pos: -36.5,5.5 - parent: 4812 - type: Transform - - uid: 9758 - components: - - pos: -36.5,4.5 - parent: 4812 - type: Transform - - uid: 9759 - components: - - pos: -36.5,3.5 - parent: 4812 - type: Transform - - uid: 9760 - components: - - pos: -36.5,2.5 - parent: 4812 - type: Transform - - uid: 9761 - components: - - pos: -36.5,1.5 - parent: 4812 - type: Transform - - uid: 9762 - components: - - pos: -36.5,0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9763 - components: - - pos: -36.5,-0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9764 - components: - - pos: -36.5,-1.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9765 - components: - - pos: -36.5,-2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9766 - components: - - pos: -36.5,-3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9767 - components: - - pos: -36.5,-4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9768 - components: - - pos: -36.5,-5.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9769 - components: - - pos: -36.5,-6.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9770 - components: - - pos: -36.5,-7.5 - parent: 4812 - type: Transform - - uid: 9771 - components: - - pos: -33.5,-7.5 - parent: 4812 - type: Transform - - uid: 9772 - components: - - pos: -33.5,-6.5 - parent: 4812 - type: Transform - - uid: 9773 - components: - - pos: -33.5,-5.5 - parent: 4812 - type: Transform - - uid: 9774 - components: - - pos: -33.5,-4.5 - parent: 4812 - type: Transform - - uid: 9775 - components: - - pos: -33.5,-3.5 - parent: 4812 - type: Transform - - uid: 9776 - components: - - pos: -33.5,-2.5 - parent: 4812 - type: Transform - - uid: 9777 - components: - - pos: -32.5,-2.5 - parent: 4812 - type: Transform - - uid: 9778 - components: - - pos: -31.5,-2.5 - parent: 4812 - type: Transform - - uid: 9779 - components: - - pos: -30.5,-2.5 - parent: 4812 - type: Transform - - uid: 9780 - components: - - pos: -29.5,-2.5 - parent: 4812 - type: Transform - - uid: 9781 - components: - - pos: -28.5,-2.5 - parent: 4812 - type: Transform - - uid: 9782 - components: - - pos: -27.5,-2.5 - parent: 4812 - type: Transform - - uid: 9783 - components: - - pos: -26.5,-2.5 - parent: 4812 - type: Transform - - uid: 9784 - components: - - pos: -25.5,-2.5 - parent: 4812 - type: Transform - - uid: 9785 - components: - - pos: -25.5,-3.5 - parent: 4812 - type: Transform - - uid: 9786 - components: - - pos: -25.5,-4.5 - parent: 4812 - type: Transform - - uid: 9787 - components: - - pos: -24.5,-4.5 - parent: 4812 - type: Transform - - uid: 9788 - components: - - pos: -23.5,-4.5 - parent: 4812 - type: Transform - - uid: 9789 - components: - - pos: -22.5,-4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9790 - components: - - pos: -21.5,-4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9791 - components: - - pos: -20.5,-4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9792 - components: - - pos: -20.5,-3.5 - parent: 4812 - type: Transform - - uid: 9793 - components: - - pos: -19.5,-3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9794 - components: - - pos: -18.5,-3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9795 - components: - - pos: -17.5,-3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9796 - components: - - pos: -16.5,-3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9797 - components: - - pos: -15.5,-3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9798 - components: - - pos: -14.5,-3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9799 - components: - - pos: -13.5,-3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9800 - components: - - pos: -12.5,-3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9801 - components: - - pos: -12.5,-2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9802 - components: - - pos: -12.5,-1.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9803 - components: - - pos: -12.5,-0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9804 - components: - - pos: -12.5,0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9805 - components: - - pos: -12.5,1.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9806 - components: - - pos: -12.5,2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9807 - components: - - pos: -12.5,3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9808 - components: - - pos: -12.5,4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9809 - components: - - pos: -12.5,5.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9810 - components: - - pos: -12.5,6.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9811 - components: - - pos: -12.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9812 - components: - - pos: -12.5,8.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9813 - components: - - pos: -12.5,9.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9814 - components: - - pos: -12.5,10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9815 - components: - - pos: -12.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9816 - components: - - pos: -12.5,12.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9913 - components: - - pos: -44.5,-6.5 - parent: 4812 - type: Transform - - uid: 9914 - components: - - pos: -44.5,-7.5 - parent: 4812 - type: Transform - - uid: 9915 - components: - - pos: -44.5,-8.5 - parent: 4812 - type: Transform - - uid: 9916 - components: - - pos: -44.5,-9.5 - parent: 4812 - type: Transform - - uid: 9917 - components: - - pos: -44.5,-10.5 - parent: 4812 - type: Transform - - uid: 9918 - components: - - pos: -44.5,-11.5 - parent: 4812 - type: Transform - - uid: 9919 - components: - - pos: -44.5,-12.5 - parent: 4812 - type: Transform - - uid: 9920 - components: - - pos: -43.5,-12.5 - parent: 4812 - type: Transform - - uid: 9921 - components: - - pos: -42.5,-12.5 - parent: 4812 - type: Transform - - uid: 9922 - components: - - pos: -41.5,-12.5 - parent: 4812 - type: Transform - - uid: 9923 - components: - - pos: -40.5,-12.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9924 - components: - - pos: -40.5,-10.5 - parent: 4812 - type: Transform - - uid: 9925 - components: - - pos: -40.5,-11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9926 - components: - - pos: -40.5,-13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9927 - components: - - pos: -40.5,-14.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9928 - components: - - pos: -40.5,-15.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9929 - components: - - pos: -40.5,-16.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9930 - components: - - pos: -40.5,-17.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9931 - components: - - pos: -40.5,-18.5 - parent: 4812 - type: Transform - - uid: 9960 - components: - - pos: -48.5,-19.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9961 - components: - - pos: -48.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9962 - components: - - pos: -47.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9963 - components: - - pos: -46.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9964 - components: - - pos: -45.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9965 - components: - - pos: -44.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9966 - components: - - pos: -43.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9967 - components: - - pos: -42.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9974 - components: - - pos: -36.5,-19.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9975 - components: - - pos: -36.5,-18.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9976 - components: - - pos: -36.5,-17.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9977 - components: - - pos: -36.5,-16.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9978 - components: - - pos: -36.5,-15.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9979 - components: - - pos: -36.5,-14.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9980 - components: - - pos: -36.5,-13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9981 - components: - - pos: -36.5,-12.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9982 - components: - - pos: -36.5,-11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9983 - components: - - pos: -36.5,-10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9984 - components: - - pos: -36.5,-9.5 - parent: 4812 - type: Transform - - uid: 9995 - components: - - pos: -41.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9996 - components: - - pos: -40.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9997 - components: - - pos: -39.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9998 - components: - - pos: -38.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9999 - components: - - pos: -37.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10000 - components: - - pos: -36.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10159 - components: - - pos: -56.5,-22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10160 - components: - - pos: -55.5,-22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10161 - components: - - pos: -54.5,-22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10162 - components: - - pos: -53.5,-22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10163 - components: - - pos: -53.5,-23.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10164 - components: - - pos: -53.5,-24.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10168 - components: - - pos: -53.5,-25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10169 - components: - - pos: -52.5,-25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10170 - components: - - pos: -51.5,-25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10171 - components: - - pos: -51.5,-24.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10172 - components: - - pos: -51.5,-23.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10173 - components: - - pos: -51.5,-22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10174 - components: - - pos: -50.5,-22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10175 - components: - - pos: -49.5,-22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10176 - components: - - pos: -48.5,-22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10177 - components: - - pos: -47.5,-22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10178 - components: - - pos: -46.5,-22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10179 - components: - - pos: -45.5,-22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10180 - components: - - pos: -45.5,-21.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10181 - components: - - pos: -50.5,-25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10225 - components: - - pos: -57.5,-22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10226 - components: - - pos: -59.5,-26.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10227 - components: - - pos: -59.5,-25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10228 - components: - - pos: -59.5,-24.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10229 - components: - - pos: -59.5,-23.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10230 - components: - - pos: -59.5,-21.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10231 - components: - - pos: -59.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10232 - components: - - pos: -59.5,-19.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10233 - components: - - pos: -59.5,-18.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10234 - components: - - pos: -61.5,-18.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10235 - components: - - pos: -61.5,-19.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10236 - components: - - pos: -61.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10237 - components: - - pos: -61.5,-21.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10238 - components: - - pos: -61.5,-23.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10239 - components: - - pos: -61.5,-24.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10240 - components: - - pos: -61.5,-25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10241 - components: - - pos: -61.5,-26.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10242 - components: - - pos: -63.5,-26.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10243 - components: - - pos: -63.5,-25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10244 - components: - - pos: -63.5,-24.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10245 - components: - - pos: -63.5,-23.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10246 - components: - - pos: -65.5,-26.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10247 - components: - - pos: -65.5,-25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10248 - components: - - pos: -65.5,-24.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10249 - components: - - pos: -65.5,-23.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10250 - components: - - pos: -69.5,-26.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10251 - components: - - pos: -69.5,-25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10252 - components: - - pos: -69.5,-24.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10253 - components: - - pos: -69.5,-23.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10254 - components: - - pos: -67.5,-26.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10255 - components: - - pos: -67.5,-25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10256 - components: - - pos: -67.5,-24.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10257 - components: - - pos: -67.5,-23.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10258 - components: - - pos: -69.5,-21.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10259 - components: - - pos: -69.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10260 - components: - - pos: -69.5,-19.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10261 - components: - - pos: -69.5,-18.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10262 - components: - - pos: -67.5,-18.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10263 - components: - - pos: -67.5,-19.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10264 - components: - - pos: -67.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10265 - components: - - pos: -67.5,-21.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10266 - components: - - pos: -65.5,-21.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10267 - components: - - pos: -65.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10268 - components: - - pos: -65.5,-19.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10269 - components: - - pos: -65.5,-18.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10270 - components: - - pos: -63.5,-18.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10271 - components: - - pos: -63.5,-19.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10272 - components: - - pos: -63.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10273 - components: - - pos: -63.5,-21.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10275 - components: - - pos: -71.5,-22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10276 - components: - - pos: -70.5,-22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10529 - components: - - pos: -10.5,-31.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10530 - components: - - pos: -10.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10531 - components: - - pos: -11.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10532 - components: - - pos: -12.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10533 - components: - - pos: -13.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10534 - components: - - pos: -14.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10535 - components: - - pos: -15.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10536 - components: - - pos: -16.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10537 - components: - - pos: -17.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10538 - components: - - pos: -18.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10539 - components: - - pos: -19.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10540 - components: - - pos: -20.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10541 - components: - - pos: -21.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10542 - components: - - pos: -22.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10543 - components: - - pos: -23.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10544 - components: - - pos: -24.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10550 - components: - - pos: -29.5,-29.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10551 - components: - - pos: -29.5,-28.5 - parent: 4812 - type: Transform - - uid: 10552 - components: - - pos: -29.5,-27.5 - parent: 4812 - type: Transform - - uid: 10553 - components: - - pos: -29.5,-26.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10554 - components: - - pos: -29.5,-25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10555 - components: - - pos: -30.5,-25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10556 - components: - - pos: -31.5,-25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10557 - components: - - pos: -32.5,-25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10558 - components: - - pos: -33.5,-25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10559 - components: - - pos: -34.5,-25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10560 - components: - - pos: -34.5,-24.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10561 - components: - - pos: -34.5,-23.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10562 - components: - - pos: -34.5,-22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10563 - components: - - pos: -34.5,-21.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10564 - components: - - pos: -34.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10565 - components: - - pos: -35.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10638 - components: - - pos: -45.5,-12.5 - parent: 4812 - type: Transform - - uid: 10639 - components: - - pos: -46.5,-12.5 - parent: 4812 - type: Transform - - uid: 10640 - components: - - pos: -47.5,-12.5 - parent: 4812 - type: Transform - - uid: 10641 - components: - - pos: -47.5,-11.5 - parent: 4812 - type: Transform - - uid: 10642 - components: - - pos: -48.5,-11.5 - parent: 4812 - type: Transform - - uid: 10643 - components: - - pos: -49.5,-11.5 - parent: 4812 - type: Transform - - uid: 10644 - components: - - pos: -50.5,-11.5 - parent: 4812 - type: Transform - - uid: 10645 - components: - - pos: -51.5,-11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10646 - components: - - pos: -52.5,-11.5 - parent: 4812 - type: Transform - - uid: 10647 - components: - - pos: -53.5,-11.5 - parent: 4812 - type: Transform - - uid: 10650 - components: - - pos: -53.5,-12.5 - parent: 4812 - type: Transform - - uid: 10651 - components: - - pos: -53.5,-13.5 - parent: 4812 - type: Transform - - uid: 10662 - components: - - pos: -51.5,-12.5 - parent: 4812 - type: Transform - - uid: 10663 - components: - - pos: -51.5,-13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10669 - components: - - pos: -45.5,-6.5 - parent: 4812 - type: Transform - - uid: 10670 - components: - - pos: -46.5,-6.5 - parent: 4812 - type: Transform - - uid: 10671 - components: - - pos: -47.5,-6.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10672 - components: - - pos: -48.5,-6.5 - parent: 4812 - type: Transform - - uid: 11394 - components: - - pos: 33.5,-39.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11395 - components: - - pos: 32.5,-39.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11396 - components: - - pos: 31.5,-39.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11397 - components: - - pos: 33.5,-38.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11398 - components: - - pos: 33.5,-37.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11399 - components: - - pos: 33.5,-36.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11400 - components: - - pos: 34.5,-36.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11401 - components: - - pos: 35.5,-36.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11402 - components: - - pos: 36.5,-36.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11403 - components: - - pos: 37.5,-36.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11404 - components: - - pos: 38.5,-36.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11405 - components: - - pos: 31.5,-38.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11406 - components: - - pos: 31.5,-37.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11407 - components: - - pos: 31.5,-36.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11408 - components: - - pos: 31.5,-35.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11409 - components: - - pos: 31.5,-34.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11410 - components: - - pos: 31.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11411 - components: - - pos: 30.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11412 - components: - - pos: 29.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11413 - components: - - pos: 28.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11414 - components: - - pos: 27.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11415 - components: - - pos: 26.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11416 - components: - - pos: 25.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11417 - components: - - pos: 24.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11418 - components: - - pos: 23.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11419 - components: - - pos: 22.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11420 - components: - - pos: 21.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11421 - components: - - pos: 20.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11422 - components: - - pos: 19.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11437 - components: - - pos: 30.5,-39.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11477 - components: - - pos: 53.5,-36.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11478 - components: - - pos: 52.5,-36.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11479 - components: - - pos: 39.5,-36.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11480 - components: - - pos: 40.5,-36.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11481 - components: - - pos: 41.5,-35.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11482 - components: - - pos: 41.5,-34.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11483 - components: - - pos: 41.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11484 - components: - - pos: 41.5,-32.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11485 - components: - - pos: 43.5,-35.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11486 - components: - - pos: 43.5,-34.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11487 - components: - - pos: 43.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11488 - components: - - pos: 43.5,-32.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11489 - components: - - pos: 45.5,-34.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11490 - components: - - pos: 45.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11491 - components: - - pos: 45.5,-32.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11492 - components: - - pos: 45.5,-35.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11493 - components: - - pos: 47.5,-35.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11494 - components: - - pos: 47.5,-34.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11495 - components: - - pos: 47.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11496 - components: - - pos: 47.5,-32.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11497 - components: - - pos: 49.5,-35.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11498 - components: - - pos: 49.5,-34.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11499 - components: - - pos: 49.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11500 - components: - - pos: 49.5,-32.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11501 - components: - - pos: 51.5,-35.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11502 - components: - - pos: 51.5,-34.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11503 - components: - - pos: 51.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11504 - components: - - pos: 51.5,-32.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11505 - components: - - pos: 51.5,-40.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11506 - components: - - pos: 51.5,-39.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11507 - components: - - pos: 51.5,-38.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11508 - components: - - pos: 51.5,-37.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11509 - components: - - pos: 49.5,-40.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11510 - components: - - pos: 49.5,-39.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11511 - components: - - pos: 49.5,-38.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11512 - components: - - pos: 49.5,-37.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11513 - components: - - pos: 47.5,-40.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11514 - components: - - pos: 47.5,-39.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11515 - components: - - pos: 47.5,-38.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11516 - components: - - pos: 47.5,-37.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11517 - components: - - pos: 45.5,-40.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11518 - components: - - pos: 45.5,-39.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11519 - components: - - pos: 45.5,-38.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11520 - components: - - pos: 45.5,-37.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11521 - components: - - pos: 43.5,-40.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11522 - components: - - pos: 43.5,-39.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11523 - components: - - pos: 43.5,-38.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11524 - components: - - pos: 43.5,-37.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11525 - components: - - pos: 41.5,-40.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11526 - components: - - pos: 41.5,-39.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11527 - components: - - pos: 41.5,-38.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11528 - components: - - pos: 41.5,-37.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound -- proto: CableHVStack - entities: - - uid: 8587 - components: - - pos: -16.483784,7.5211535 - parent: 4812 - type: Transform - - uid: 11956 - components: - - pos: -10.405096,15.5663185 - parent: 4812 - type: Transform - - uid: 11957 - components: - - pos: -10.405096,15.5663185 - parent: 4812 - type: Transform -- proto: CableMV - entities: - - uid: 327 - components: - - pos: -15.5,-18.5 - parent: 4812 - type: Transform - - uid: 971 - components: - - pos: -14.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 972 - components: - - pos: -14.5,8.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 973 - components: - - pos: -14.5,9.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 974 - components: - - pos: -14.5,10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 975 - components: - - pos: -14.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 976 - components: - - pos: -14.5,12.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 977 - components: - - pos: -14.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 978 - components: - - pos: -13.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 979 - components: - - pos: -12.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 980 - components: - - pos: -12.5,14.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 981 - components: - - pos: -8.5,-2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 982 - components: - - pos: -8.5,-3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 983 - components: - - pos: -9.5,-3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 984 - components: - - pos: -10.5,-3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 985 - components: - - pos: -12.5,-3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 986 - components: - - pos: -11.5,-3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 987 - components: - - pos: -12.5,-2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 988 - components: - - pos: -12.5,-1.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 989 - components: - - pos: -12.5,-0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 990 - components: - - pos: -12.5,0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 991 - components: - - pos: -12.5,1.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 992 - components: - - pos: -12.5,2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 993 - components: - - pos: -12.5,3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 994 - components: - - pos: -12.5,4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 995 - components: - - pos: -12.5,5.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 996 - components: - - pos: -12.5,6.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 997 - components: - - pos: -12.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 998 - components: - - pos: -12.5,8.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 999 - components: - - pos: -12.5,9.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1000 - components: - - pos: -12.5,10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1001 - components: - - pos: -12.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1002 - components: - - pos: -12.5,12.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1003 - components: - - pos: 6.5,5.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1004 - components: - - pos: 6.5,4.5 - parent: 4812 - type: Transform - - uid: 1005 - components: - - pos: 7.5,4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1006 - components: - - pos: 8.5,4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1007 - components: - - pos: 9.5,4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1008 - components: - - pos: 9.5,5.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1009 - components: - - pos: 9.5,6.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1010 - components: - - pos: 9.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1011 - components: - - pos: 9.5,8.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1012 - components: - - pos: 9.5,9.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1013 - components: - - pos: 9.5,10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1014 - components: - - pos: 9.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1015 - components: - - pos: 8.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1016 - components: - - pos: 7.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1017 - components: - - pos: 6.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1018 - components: - - pos: 5.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1019 - components: - - pos: 4.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1020 - components: - - pos: 3.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1021 - components: - - pos: 2.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1023 - components: - - pos: 7.5,-8.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1024 - components: - - pos: 7.5,-9.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1025 - components: - - pos: 8.5,-9.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1026 - components: - - pos: 9.5,-9.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1027 - components: - - pos: 9.5,-8.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1028 - components: - - pos: 9.5,-7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1029 - components: - - pos: 9.5,-6.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1030 - components: - - pos: 9.5,-5.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1031 - components: - - pos: 9.5,-4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1032 - components: - - pos: 9.5,-3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1033 - components: - - pos: 9.5,-2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1034 - components: - - pos: 9.5,-1.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1035 - components: - - pos: 9.5,-0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1036 - components: - - pos: 9.5,0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1037 - components: - - pos: 9.5,1.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1038 - components: - - pos: 9.5,2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1039 - components: - - pos: 9.5,3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1858 - components: - - pos: 0.5,28.5 - parent: 4812 - type: Transform - - uid: 1860 - components: - - pos: -6.5,30.5 - parent: 4812 - type: Transform - - uid: 2141 - components: - - pos: 6.5,31.5 - parent: 4812 - type: Transform - - uid: 2142 - components: - - pos: 6.5,32.5 - parent: 4812 - type: Transform - - uid: 2143 - components: - - pos: 5.5,32.5 - parent: 4812 - type: Transform - - uid: 2144 - components: - - pos: 4.5,32.5 - parent: 4812 - type: Transform - - uid: 2145 - components: - - pos: 3.5,32.5 - parent: 4812 - type: Transform - - uid: 2146 - components: - - pos: 2.5,32.5 - parent: 4812 - type: Transform - - uid: 2147 - components: - - pos: 1.5,32.5 - parent: 4812 - type: Transform - - uid: 2148 - components: - - pos: 0.5,32.5 - parent: 4812 - type: Transform - - uid: 2149 - components: - - pos: -0.5,32.5 - parent: 4812 - type: Transform - - uid: 2150 - components: - - pos: -1.5,32.5 - parent: 4812 - type: Transform - - uid: 2151 - components: - - pos: -2.5,32.5 - parent: 4812 - type: Transform - - uid: 2152 - components: - - pos: -3.5,32.5 - parent: 4812 - type: Transform - - uid: 2153 - components: - - pos: -4.5,32.5 - parent: 4812 - type: Transform - - uid: 2154 - components: - - pos: -5.5,32.5 - parent: 4812 - type: Transform - - uid: 2155 - components: - - pos: -6.5,32.5 - parent: 4812 - type: Transform - - uid: 2156 - components: - - pos: -6.5,31.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2157 - components: - - pos: 2.5,31.5 - parent: 4812 - type: Transform - - uid: 2158 - components: - - pos: 2.5,30.5 - parent: 4812 - type: Transform - - uid: 2159 - components: - - pos: 2.5,29.5 - parent: 4812 - type: Transform - - uid: 2160 - components: - - pos: 2.5,28.5 - parent: 4812 - type: Transform - - uid: 2161 - components: - - pos: 2.5,27.5 - parent: 4812 - type: Transform - - uid: 2162 - components: - - pos: 2.5,26.5 - parent: 4812 - type: Transform - - uid: 2163 - components: - - pos: 2.5,25.5 - parent: 4812 - type: Transform - - uid: 2164 - components: - - pos: 2.5,24.5 - parent: 4812 - type: Transform - - uid: 2165 - components: - - pos: 2.5,23.5 - parent: 4812 - type: Transform - - uid: 2166 - components: - - pos: 2.5,22.5 - parent: 4812 - type: Transform - - uid: 2167 - components: - - pos: 2.5,21.5 - parent: 4812 - type: Transform - - uid: 2168 - components: - - pos: 2.5,20.5 - parent: 4812 - type: Transform - - uid: 2169 - components: - - pos: 1.5,20.5 - parent: 4812 - type: Transform - - uid: 2170 - components: - - pos: 0.5,20.5 - parent: 4812 - type: Transform - - uid: 2171 - components: - - pos: 0.5,21.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2172 - components: - - pos: 3.5,25.5 - parent: 4812 - type: Transform - - uid: 2173 - components: - - pos: 4.5,25.5 - parent: 4812 - type: Transform - - uid: 2174 - components: - - pos: 5.5,25.5 - parent: 4812 - type: Transform - - uid: 2175 - components: - - pos: 6.5,25.5 - parent: 4812 - type: Transform - - uid: 2176 - components: - - pos: 7.5,25.5 - parent: 4812 - type: Transform - - uid: 2177 - components: - - pos: 8.5,25.5 - parent: 4812 - type: Transform - - uid: 2178 - components: - - pos: 9.5,25.5 - parent: 4812 - type: Transform - - uid: 2179 - components: - - pos: 9.5,26.5 - parent: 4812 - type: Transform - - uid: 2180 - components: - - pos: 9.5,27.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2181 - components: - - pos: 8.5,24.5 - parent: 4812 - type: Transform - - uid: 2182 - components: - - pos: 8.5,23.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2183 - components: - - pos: 6.5,24.5 - parent: 4812 - type: Transform - - uid: 2184 - components: - - pos: 6.5,23.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2185 - components: - - pos: -2.5,31.5 - parent: 4812 - type: Transform - - uid: 2186 - components: - - pos: 4.5,24.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2187 - components: - - pos: 4.5,26.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2188 - components: - - pos: -2.5,30.5 - parent: 4812 - type: Transform - - uid: 2189 - components: - - pos: -2.5,29.5 - parent: 4812 - type: Transform - - uid: 2190 - components: - - pos: -2.5,28.5 - parent: 4812 - type: Transform - - uid: 2191 - components: - - pos: -2.5,28.5 - parent: 4812 - type: Transform - - uid: 2192 - components: - - pos: -2.5,27.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2193 - components: - - pos: -3.5,28.5 - parent: 4812 - type: Transform - - uid: 2194 - components: - - pos: -4.5,28.5 - parent: 4812 - type: Transform - - uid: 2195 - components: - - pos: -4.5,27.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2196 - components: - - pos: -1.5,28.5 - parent: 4812 - type: Transform - - uid: 2197 - components: - - pos: -0.5,28.5 - parent: 4812 - type: Transform - - uid: 2198 - components: - - pos: -0.5,27.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2200 - components: - - pos: 0.5,29.5 - parent: 4812 - type: Transform - - uid: 2203 - components: - - pos: -5.5,29.5 - parent: 4812 - type: Transform - - uid: 2208 - components: - - pos: -5.5,30.5 - parent: 4812 - type: Transform - - uid: 2385 - components: - - pos: -7.5,32.5 - parent: 4812 - type: Transform - - uid: 2386 - components: - - pos: -8.5,32.5 - parent: 4812 - type: Transform - - uid: 2387 - components: - - pos: -8.5,31.5 - parent: 4812 - type: Transform - - uid: 2388 - components: - - pos: -8.5,30.5 - parent: 4812 - type: Transform - - uid: 2389 - components: - - pos: -8.5,29.5 - parent: 4812 - type: Transform - - uid: 2390 - components: - - pos: -8.5,28.5 - parent: 4812 - type: Transform - - uid: 2391 - components: - - pos: -8.5,27.5 - parent: 4812 - type: Transform - - uid: 2392 - components: - - pos: -8.5,26.5 - parent: 4812 - type: Transform - - uid: 2393 - components: - - pos: -8.5,25.5 - parent: 4812 - type: Transform - - uid: 2394 - components: - - pos: -8.5,24.5 - parent: 4812 - type: Transform - - uid: 2396 - components: - - pos: -9.5,23.5 - parent: 4812 - type: Transform - - uid: 2397 - components: - - pos: -10.5,23.5 - parent: 4812 - type: Transform - - uid: 2398 - components: - - pos: -11.5,23.5 - parent: 4812 - type: Transform - - uid: 2399 - components: - - pos: -12.5,23.5 - parent: 4812 - type: Transform - - uid: 2400 - components: - - pos: -13.5,23.5 - parent: 4812 - type: Transform - - uid: 2401 - components: - - pos: -14.5,23.5 - parent: 4812 - type: Transform - - uid: 2402 - components: - - pos: -14.5,24.5 - parent: 4812 - type: Transform - - uid: 2403 - components: - - pos: -14.5,25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2404 - components: - - pos: -11.5,24.5 - parent: 4812 - type: Transform - - uid: 2405 - components: - - pos: -11.5,25.5 - parent: 4812 - type: Transform - - uid: 2406 - components: - - pos: -11.5,26.5 - parent: 4812 - type: Transform - - uid: 2407 - components: - - pos: -11.5,27.5 - parent: 4812 - type: Transform - - uid: 2408 - components: - - pos: -11.5,28.5 - parent: 4812 - type: Transform - - uid: 2409 - components: - - pos: -11.5,29.5 - parent: 4812 - type: Transform - - uid: 2410 - components: - - pos: -11.5,30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2411 - components: - - pos: -12.5,30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2412 - components: - - pos: -12.5,26.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2413 - components: - - pos: -13.5,26.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2414 - components: - - pos: -10.5,26.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2415 - components: - - pos: -9.5,24.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2416 - components: - - pos: -9.5,22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2453 - components: - - pos: -6.5,28.5 - parent: 4812 - type: Transform - - uid: 2457 - components: - - pos: -5.5,28.5 - parent: 4812 - type: Transform - - uid: 2632 - components: - - pos: 1.5,28.5 - parent: 4812 - type: Transform - - uid: 2633 - components: - - pos: 0.5,30.5 - parent: 4812 - type: Transform - - uid: 2644 - components: - - pos: 1.5,30.5 - parent: 4812 - type: Transform - - uid: 2834 - components: - - pos: 11.5,32.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2838 - components: - - pos: 13.5,32.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3120 - components: - - pos: 12.5,32.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3121 - components: - - pos: 12.5,31.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3122 - components: - - pos: 12.5,30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3123 - components: - - pos: 12.5,29.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3124 - components: - - pos: 12.5,28.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3125 - components: - - pos: 12.5,27.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3126 - components: - - pos: 12.5,26.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3127 - components: - - pos: 12.5,25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3128 - components: - - pos: 12.5,24.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3129 - components: - - pos: 13.5,24.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3130 - components: - - pos: 14.5,24.5 - parent: 4812 - type: Transform - - uid: 3131 - components: - - pos: 15.5,24.5 - parent: 4812 - type: Transform - - uid: 3132 - components: - - pos: 16.5,24.5 - parent: 4812 - type: Transform - - uid: 3133 - components: - - pos: 17.5,24.5 - parent: 4812 - type: Transform - - uid: 3134 - components: - - pos: 17.5,23.5 - parent: 4812 - type: Transform - - uid: 3135 - components: - - pos: 17.5,22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3265 - components: - - pos: -24.5,-25.5 - parent: 4812 - type: Transform - - uid: 3734 - components: - - pos: -23.5,-25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3735 - components: - - pos: -25.5,-25.5 - parent: 4812 - type: Transform - - uid: 3884 - components: - - pos: 13.5,47.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3885 - components: - - pos: 13.5,46.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3886 - components: - - pos: 13.5,45.5 - parent: 4812 - type: Transform - - uid: 3887 - components: - - pos: 12.5,45.5 - parent: 4812 - type: Transform - - uid: 3888 - components: - - pos: 11.5,45.5 - parent: 4812 - type: Transform - - uid: 3889 - components: - - pos: 10.5,45.5 - parent: 4812 - type: Transform - - uid: 3890 - components: - - pos: 10.5,46.5 - parent: 4812 - type: Transform - - uid: 3891 - components: - - pos: 10.5,47.5 - parent: 4812 - type: Transform - - uid: 3892 - components: - - pos: 10.5,48.5 - parent: 4812 - type: Transform - - uid: 3893 - components: - - pos: 10.5,49.5 - parent: 4812 - type: Transform - - uid: 3894 - components: - - pos: 10.5,50.5 - parent: 4812 - type: Transform - - uid: 3895 - components: - - pos: 11.5,50.5 - parent: 4812 - type: Transform - - uid: 3896 - components: - - pos: 11.5,51.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4012 - components: - - pos: -15.5,-17.5 - parent: 4812 - type: Transform - - uid: 4247 - components: - - pos: 17.5,2.5 - parent: 4812 - type: Transform - - uid: 4248 - components: - - pos: 18.5,2.5 - parent: 4812 - type: Transform - - uid: 4249 - components: - - pos: 19.5,2.5 - parent: 4812 - type: Transform - - uid: 4250 - components: - - pos: 19.5,1.5 - parent: 4812 - type: Transform - - uid: 4251 - components: - - pos: 19.5,0.5 - parent: 4812 - type: Transform - - uid: 4252 - components: - - pos: 19.5,-0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4253 - components: - - pos: 20.5,-0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4254 - components: - - pos: 21.5,-0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4255 - components: - - pos: 22.5,-0.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4256 - components: - - pos: 22.5,-1.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4806 - components: - - pos: -16.5,-24.5 - parent: 4812 - type: Transform - - uid: 4813 - components: - - pos: -16.5,-22.5 - parent: 4812 - type: Transform - - uid: 4870 - components: - - pos: -18.5,-20.5 - parent: 4812 - type: Transform - - uid: 4914 - components: - - pos: -17.5,-20.5 - parent: 4812 - type: Transform - - uid: 4915 - components: - - pos: -16.5,-20.5 - parent: 4812 - type: Transform - - uid: 4945 - components: - - pos: -18.5,-19.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4956 - components: - - pos: -20.5,-26.5 - parent: 4812 - type: Transform - - uid: 4957 - components: - - pos: -22.5,-26.5 - parent: 4812 - type: Transform - - uid: 4959 - components: - - pos: -23.5,-25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4960 - components: - - pos: -18.5,-27.5 - parent: 4812 - type: Transform - - uid: 4965 - components: - - pos: -18.5,-28.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4967 - components: - - pos: -16.5,-25.5 - parent: 4812 - type: Transform - - uid: 4974 - components: - - pos: -21.5,-26.5 - parent: 4812 - type: Transform - - uid: 4975 - components: - - pos: -16.5,-23.5 - parent: 4812 - type: Transform - - uid: 4995 - components: - - pos: -15.5,-19.5 - parent: 4812 - type: Transform - - uid: 5972 - components: - - pos: 16.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5973 - components: - - pos: 15.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5974 - components: - - pos: 15.5,-31.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5975 - components: - - pos: 15.5,-32.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5976 - components: - - pos: 15.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5977 - components: - - pos: 16.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5978 - components: - - pos: 17.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5979 - components: - - pos: 18.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5980 - components: - - pos: 18.5,-32.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5981 - components: - - pos: 18.5,-31.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5982 - components: - - pos: 18.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5983 - components: - - pos: 18.5,-29.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5984 - components: - - pos: 18.5,-28.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5985 - components: - - pos: 18.5,-27.5 - parent: 4812 - type: Transform - - uid: 5986 - components: - - pos: 18.5,-26.5 - parent: 4812 - type: Transform - - uid: 5987 - components: - - pos: 18.5,-25.5 - parent: 4812 - type: Transform - - uid: 5988 - components: - - pos: 18.5,-24.5 - parent: 4812 - type: Transform - - uid: 5989 - components: - - pos: 18.5,-23.5 - parent: 4812 - type: Transform - - uid: 5990 - components: - - pos: 18.5,-22.5 - parent: 4812 - type: Transform - - uid: 5991 - components: - - pos: 18.5,-21.5 - parent: 4812 - type: Transform - - uid: 5992 - components: - - pos: 18.5,-20.5 - parent: 4812 - type: Transform - - uid: 5993 - components: - - pos: 17.5,-20.5 - parent: 4812 - type: Transform - - uid: 5994 - components: - - pos: 16.5,-20.5 - parent: 4812 - type: Transform - - uid: 5995 - components: - - pos: 15.5,-20.5 - parent: 4812 - type: Transform - - uid: 5996 - components: - - pos: 14.5,-20.5 - parent: 4812 - type: Transform - - uid: 5997 - components: - - pos: 13.5,-20.5 - parent: 4812 - type: Transform - - uid: 5998 - components: - - pos: 12.5,-20.5 - parent: 4812 - type: Transform - - uid: 5999 - components: - - pos: 11.5,-20.5 - parent: 4812 - type: Transform - - uid: 6000 - components: - - pos: 10.5,-20.5 - parent: 4812 - type: Transform - - uid: 6001 - components: - - pos: 9.5,-20.5 - parent: 4812 - type: Transform - - uid: 6002 - components: - - pos: 8.5,-20.5 - parent: 4812 - type: Transform - - uid: 6003 - components: - - pos: 7.5,-20.5 - parent: 4812 - type: Transform - - uid: 6004 - components: - - pos: 6.5,-20.5 - parent: 4812 - type: Transform - - uid: 6005 - components: - - pos: 6.5,-19.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6006 - components: - - pos: 19.5,-20.5 - parent: 4812 - type: Transform - - uid: 6007 - components: - - pos: 20.5,-20.5 - parent: 4812 - type: Transform - - uid: 6008 - components: - - pos: 21.5,-20.5 - parent: 4812 - type: Transform - - uid: 6009 - components: - - pos: 22.5,-20.5 - parent: 4812 - type: Transform - - uid: 6010 - components: - - pos: 22.5,-21.5 - parent: 4812 - type: Transform - - uid: 6011 - components: - - pos: 22.5,-22.5 - parent: 4812 - type: Transform - - uid: 6012 - components: - - pos: 23.5,-22.5 - parent: 4812 - type: Transform - - uid: 6013 - components: - - pos: 24.5,-22.5 - parent: 4812 - type: Transform - - uid: 6014 - components: - - pos: 25.5,-22.5 - parent: 4812 - type: Transform - - uid: 6015 - components: - - pos: 26.5,-22.5 - parent: 4812 - type: Transform - - uid: 6016 - components: - - pos: 27.5,-22.5 - parent: 4812 - type: Transform - - uid: 6017 - components: - - pos: 28.5,-22.5 - parent: 4812 - type: Transform - - uid: 6018 - components: - - pos: 28.5,-21.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6051 - components: - - pos: 13.5,-21.5 - parent: 4812 - type: Transform - - uid: 6065 - components: - - pos: 28.5,-23.5 - parent: 4812 - type: Transform - - uid: 6640 - components: - - pos: -26.5,-25.5 - parent: 4812 - type: Transform - - uid: 6641 - components: - - pos: -27.5,-25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6660 - components: - - pos: -25.5,-23.5 - parent: 4812 - type: Transform - - uid: 6661 - components: - - pos: -24.5,-22.5 - parent: 4812 - type: Transform - - uid: 6664 - components: - - pos: -20.5,-22.5 - parent: 4812 - type: Transform - - uid: 6666 - components: - - pos: -25.5,-24.5 - parent: 4812 - type: Transform - - uid: 6668 - components: - - pos: -17.5,-22.5 - parent: 4812 - type: Transform - - uid: 6780 - components: - - pos: -10.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6782 - components: - - pos: -19.5,-22.5 - parent: 4812 - type: Transform - - uid: 6787 - components: - - pos: -16.5,-21.5 - parent: 4812 - type: Transform - - uid: 6902 - components: - - pos: -8.5,-31.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6903 - components: - - pos: -8.5,-32.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6904 - components: - - pos: -8.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6905 - components: - - pos: -8.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6906 - components: - - pos: -9.5,-32.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6907 - components: - - pos: -10.5,-32.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6908 - components: - - pos: -11.5,-32.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6909 - components: - - pos: -11.5,-31.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6910 - components: - - pos: -11.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6911 - components: - - pos: -12.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6912 - components: - - pos: -13.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6913 - components: - - pos: -14.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6914 - components: - - pos: -15.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6915 - components: - - pos: -16.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6916 - components: - - pos: -17.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6917 - components: - - pos: -17.5,-31.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7029 - components: - - pos: -22.5,-25.5 - parent: 4812 - type: Transform - - uid: 7062 - components: - - pos: -17.5,-15.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7065 - components: - - pos: -15.5,-16.5 - parent: 4812 - type: Transform - - uid: 7183 - components: - - pos: -15.5,-20.5 - parent: 4812 - type: Transform - - uid: 7237 - components: - - pos: -15.5,-15.5 - parent: 4812 - type: Transform - - uid: 7238 - components: - - pos: -15.5,-14.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7239 - components: - - pos: -16.5,-15.5 - parent: 4812 - type: Transform - - uid: 7257 - components: - - pos: -12.5,-26.5 - parent: 4812 - type: Transform - - uid: 7261 - components: - - pos: -10.5,-29.5 - parent: 4812 - type: Transform - - uid: 7263 - components: - - pos: -10.5,-25.5 - parent: 4812 - type: Transform - - uid: 7264 - components: - - pos: -18.5,-26.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7265 - components: - - pos: -10.5,-26.5 - parent: 4812 - type: Transform - - uid: 7266 - components: - - pos: -11.5,-25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7270 - components: - - pos: -23.5,-22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7271 - components: - - pos: -25.5,-22.5 - parent: 4812 - type: Transform - - uid: 7274 - components: - - pos: -14.5,-26.5 - parent: 4812 - type: Transform - - uid: 7275 - components: - - pos: -15.5,-26.5 - parent: 4812 - type: Transform - - uid: 7277 - components: - - pos: -11.5,-26.5 - parent: 4812 - type: Transform - - uid: 7286 - components: - - pos: -22.5,-22.5 - parent: 4812 - type: Transform - - uid: 7338 - components: - - pos: -13.5,-26.5 - parent: 4812 - type: Transform - - uid: 7339 - components: - - pos: -16.5,-26.5 - parent: 4812 - type: Transform - - uid: 7341 - components: - - pos: -17.5,-26.5 - parent: 4812 - type: Transform - - uid: 7342 - components: - - pos: -10.5,-28.5 - parent: 4812 - type: Transform - - uid: 7345 - components: - - pos: -10.5,-27.5 - parent: 4812 - type: Transform - - uid: 7348 - components: - - pos: -18.5,-22.5 - parent: 4812 - type: Transform - - uid: 7384 - components: - - pos: -19.5,-26.5 - parent: 4812 - type: Transform - - uid: 7387 - components: - - pos: -21.5,-22.5 - parent: 4812 - type: Transform - - uid: 7467 - components: - - pos: -8.5,-34.5 - parent: 4812 - type: Transform - - uid: 7468 - components: - - pos: -7.5,-34.5 - parent: 4812 - type: Transform - - uid: 7469 - components: - - pos: -6.5,-34.5 - parent: 4812 - type: Transform - - uid: 7470 - components: - - pos: -5.5,-34.5 - parent: 4812 - type: Transform - - uid: 7471 - components: - - pos: -5.5,-33.5 - parent: 4812 - type: Transform - - uid: 7472 - components: - - pos: -5.5,-32.5 - parent: 4812 - type: Transform - - uid: 7473 - components: - - pos: -5.5,-31.5 - parent: 4812 - type: Transform - - uid: 7474 - components: - - pos: -5.5,-30.5 - parent: 4812 - type: Transform - - uid: 7475 - components: - - pos: -5.5,-29.5 - parent: 4812 - type: Transform - - uid: 7476 - components: - - pos: -5.5,-28.5 - parent: 4812 - type: Transform - - uid: 7477 - components: - - pos: -5.5,-27.5 - parent: 4812 - type: Transform - - uid: 7478 - components: - - pos: -5.5,-26.5 - parent: 4812 - type: Transform - - uid: 7479 - components: - - pos: -5.5,-25.5 - parent: 4812 - type: Transform - - uid: 7480 - components: - - pos: -5.5,-24.5 - parent: 4812 - type: Transform - - uid: 7481 - components: - - pos: -5.5,-23.5 - parent: 4812 - type: Transform - - uid: 7482 - components: - - pos: -5.5,-22.5 - parent: 4812 - type: Transform - - uid: 7483 - components: - - pos: -5.5,-21.5 - parent: 4812 - type: Transform - - uid: 7484 - components: - - pos: -4.5,-21.5 - parent: 4812 - type: Transform - - uid: 7485 - components: - - pos: -3.5,-21.5 - parent: 4812 - type: Transform - - uid: 7486 - components: - - pos: -2.5,-21.5 - parent: 4812 - type: Transform - - uid: 7487 - components: - - pos: -1.5,-21.5 - parent: 4812 - type: Transform - - uid: 7488 - components: - - pos: -1.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7986 - components: - - pos: -36.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7987 - components: - - pos: -36.5,12.5 - parent: 4812 - type: Transform - - uid: 7988 - components: - - pos: -36.5,11.5 - parent: 4812 - type: Transform - - uid: 7989 - components: - - pos: -35.5,11.5 - parent: 4812 - type: Transform - - uid: 7990 - components: - - pos: -34.5,11.5 - parent: 4812 - type: Transform - - uid: 7991 - components: - - pos: -33.5,11.5 - parent: 4812 - type: Transform - - uid: 7992 - components: - - pos: -32.5,11.5 - parent: 4812 - type: Transform - - uid: 7993 - components: - - pos: -31.5,11.5 - parent: 4812 - type: Transform - - uid: 7994 - components: - - pos: -31.5,10.5 - parent: 4812 - type: Transform - - uid: 7995 - components: - - pos: -31.5,9.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7996 - components: - - pos: -31.5,8.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7997 - components: - - pos: -31.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7998 - components: - - pos: -32.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7999 - components: - - pos: -33.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8000 - components: - - pos: -34.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8001 - components: - - pos: -35.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8002 - components: - - pos: -36.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8003 - components: - - pos: -37.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8004 - components: - - pos: -37.5,8.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8005 - components: - - pos: -30.5,11.5 - parent: 4812 - type: Transform - - uid: 8006 - components: - - pos: -29.5,11.5 - parent: 4812 - type: Transform - - uid: 8007 - components: - - pos: -29.5,12.5 - parent: 4812 - type: Transform - - uid: 8008 - components: - - pos: -29.5,13.5 - parent: 4812 - type: Transform - - uid: 8009 - components: - - pos: -29.5,14.5 - parent: 4812 - type: Transform - - uid: 8010 - components: - - pos: -29.5,15.5 - parent: 4812 - type: Transform - - uid: 8011 - components: - - pos: -29.5,16.5 - parent: 4812 - type: Transform - - uid: 8012 - components: - - pos: -29.5,17.5 - parent: 4812 - type: Transform - - uid: 8013 - components: - - pos: -29.5,18.5 - parent: 4812 - type: Transform - - uid: 8014 - components: - - pos: -29.5,19.5 - parent: 4812 - type: Transform - - uid: 8015 - components: - - pos: -28.5,19.5 - parent: 4812 - type: Transform - - uid: 8016 - components: - - pos: -27.5,19.5 - parent: 4812 - type: Transform - - uid: 8017 - components: - - pos: -26.5,19.5 - parent: 4812 - type: Transform - - uid: 8018 - components: - - pos: -25.5,19.5 - parent: 4812 - type: Transform - - uid: 8019 - components: - - pos: -24.5,19.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8020 - components: - - pos: -24.5,20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8021 - components: - - pos: -28.5,16.5 - parent: 4812 - type: Transform - - uid: 8022 - components: - - pos: -27.5,16.5 - parent: 4812 - type: Transform - - uid: 8023 - components: - - pos: -26.5,16.5 - parent: 4812 - type: Transform - - uid: 8024 - components: - - pos: -25.5,16.5 - parent: 4812 - type: Transform - - uid: 8025 - components: - - pos: -24.5,16.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8026 - components: - - pos: -24.5,17.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8027 - components: - - pos: -27.5,17.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8028 - components: - - pos: -27.5,20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8029 - components: - - pos: -29.5,10.5 - parent: 4812 - type: Transform - - uid: 8030 - components: - - pos: -28.5,10.5 - parent: 4812 - type: Transform - - uid: 8031 - components: - - pos: -27.5,10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8032 - components: - - pos: -26.5,10.5 - parent: 4812 - type: Transform - - uid: 8033 - components: - - pos: -25.5,10.5 - parent: 4812 - type: Transform - - uid: 8034 - components: - - pos: -24.5,10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8035 - components: - - pos: -32.5,10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8036 - components: - - pos: -32.5,12.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8037 - components: - - pos: -30.5,14.5 - parent: 4812 - type: Transform - - uid: 8038 - components: - - pos: -31.5,14.5 - parent: 4812 - type: Transform - - uid: 8039 - components: - - pos: -32.5,14.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8040 - components: - - pos: -33.5,14.5 - parent: 4812 - type: Transform - - uid: 8041 - components: - - pos: -33.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8042 - components: - - pos: -34.5,14.5 - parent: 4812 - type: Transform - - uid: 8043 - components: - - pos: -35.5,14.5 - parent: 4812 - type: Transform - - uid: 8044 - components: - - pos: -35.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8045 - components: - - pos: -35.5,15.5 - parent: 4812 - type: Transform - - uid: 8046 - components: - - pos: -35.5,16.5 - parent: 4812 - type: Transform - - uid: 8047 - components: - - pos: -35.5,17.5 - parent: 4812 - type: Transform - - uid: 8048 - components: - - pos: -35.5,18.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8049 - components: - - pos: -33.5,15.5 - parent: 4812 - type: Transform - - uid: 8050 - components: - - pos: -33.5,16.5 - parent: 4812 - type: Transform - - uid: 8051 - components: - - pos: -33.5,17.5 - parent: 4812 - type: Transform - - uid: 8052 - components: - - pos: -33.5,18.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8053 - components: - - pos: -33.5,19.5 - parent: 4812 - type: Transform - - uid: 8054 - components: - - pos: -33.5,20.5 - parent: 4812 - type: Transform - - uid: 8055 - components: - - pos: -32.5,19.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8056 - components: - - pos: -32.5,20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8177 - components: - - pos: -23.5,20.5 - parent: 4812 - type: Transform - - uid: 8178 - components: - - pos: -23.5,21.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8179 - components: - - pos: -22.5,20.5 - parent: 4812 - type: Transform - - uid: 8180 - components: - - pos: -21.5,20.5 - parent: 4812 - type: Transform - - uid: 8181 - components: - - pos: -20.5,20.5 - parent: 4812 - type: Transform - - uid: 8182 - components: - - pos: -19.5,20.5 - parent: 4812 - type: Transform - - uid: 8183 - components: - - pos: -19.5,21.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8184 - components: - - pos: -20.5,21.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8185 - components: - - pos: -21.5,21.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8186 - components: - - pos: -21.5,22.5 - parent: 4812 - type: Transform - - uid: 8187 - components: - - pos: -21.5,23.5 - parent: 4812 - type: Transform - - uid: 8188 - components: - - pos: -21.5,24.5 - parent: 4812 - type: Transform - - uid: 8189 - components: - - pos: -21.5,25.5 - parent: 4812 - type: Transform - - uid: 8190 - components: - - pos: -21.5,26.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8191 - components: - - pos: -21.5,27.5 - parent: 4812 - type: Transform - - uid: 8192 - components: - - pos: -21.5,28.5 - parent: 4812 - type: Transform - - uid: 8193 - components: - - pos: -22.5,28.5 - parent: 4812 - type: Transform - - uid: 8194 - components: - - pos: -22.5,29.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8195 - components: - - pos: -22.5,26.5 - parent: 4812 - type: Transform - - uid: 8196 - components: - - pos: -23.5,26.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8853 - components: - - pos: 13.5,-19.5 - parent: 4812 - type: Transform - - uid: 8858 - components: - - pos: 13.5,-18.5 - parent: 4812 - type: Transform - - uid: 8878 - components: - - pos: -24.5,-10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8879 - components: - - pos: -24.5,-11.5 - parent: 4812 - type: Transform - - uid: 8880 - components: - - pos: -25.5,-11.5 - parent: 4812 - type: Transform - - uid: 8881 - components: - - pos: -26.5,-11.5 - parent: 4812 - type: Transform - - uid: 8882 - components: - - pos: -27.5,-11.5 - parent: 4812 - type: Transform - - uid: 8883 - components: - - pos: -28.5,-11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8884 - components: - - pos: -29.5,-11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8885 - components: - - pos: -30.5,-11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8886 - components: - - pos: -31.5,-11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8887 - components: - - pos: -32.5,-11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8888 - components: - - pos: -33.5,-11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8889 - components: - - pos: -34.5,-11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8890 - components: - - pos: -35.5,-11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8891 - components: - - pos: -36.5,-11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8892 - components: - - pos: -36.5,-12.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8893 - components: - - pos: -36.5,-13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8894 - components: - - pos: -36.5,-14.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8895 - components: - - pos: -36.5,-15.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8897 - components: - - pos: -33.5,-24.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8898 - components: - - pos: -34.5,-24.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8899 - components: - - pos: -34.5,-23.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8900 - components: - - pos: -34.5,-22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8901 - components: - - pos: -34.5,-21.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8902 - components: - - pos: 13.5,-17.5 - parent: 4812 - type: Transform - - uid: 8906 - components: - - pos: 13.5,-16.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8967 - components: - - pos: 13.5,-22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8969 - components: - - pos: 28.5,-24.5 - parent: 4812 - type: Transform - - uid: 8971 - components: - - pos: 28.5,-25.5 - parent: 4812 - type: Transform - - uid: 8972 - components: - - pos: 29.5,-25.5 - parent: 4812 - type: Transform - - uid: 8973 - components: - - pos: 30.5,-25.5 - parent: 4812 - type: Transform - - uid: 8974 - components: - - pos: 31.5,-25.5 - parent: 4812 - type: Transform - - uid: 8975 - components: - - pos: 32.5,-25.5 - parent: 4812 - type: Transform - - uid: 8976 - components: - - pos: 32.5,-26.5 - parent: 4812 - type: Transform - - uid: 9014 - components: - - pos: 32.5,-27.5 - parent: 4812 - type: Transform - - uid: 9074 - components: - - pos: 32.5,-28.5 - parent: 4812 - type: Transform - - uid: 9089 - components: - - pos: 32.5,-29.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9287 - components: - - pos: -38.5,7.5 - parent: 4812 - type: Transform - - uid: 9289 - components: - - pos: -38.5,6.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9524 - components: - - pos: 16.5,-19.5 - parent: 4812 - type: Transform - - uid: 9580 - components: - - pos: 16.5,-18.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9581 - components: - - pos: 16.5,-17.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9582 - components: - - pos: 16.5,-16.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9583 - components: - - pos: 17.5,-16.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10001 - components: - - pos: -34.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10002 - components: - - pos: -35.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10003 - components: - - pos: -36.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10004 - components: - - pos: -37.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10005 - components: - - pos: -38.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10006 - components: - - pos: -39.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10007 - components: - - pos: -40.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10008 - components: - - pos: -41.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10009 - components: - - pos: -42.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10010 - components: - - pos: -43.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10011 - components: - - pos: -44.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10012 - components: - - pos: -45.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10013 - components: - - pos: -46.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10014 - components: - - pos: -47.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10015 - components: - - pos: -48.5,-20.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10016 - components: - - pos: -48.5,-19.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10017 - components: - - pos: -36.5,-19.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10018 - components: - - pos: -36.5,-18.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10019 - components: - - pos: -36.5,-17.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10020 - components: - - pos: -36.5,-16.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10022 - components: - - pos: -44.5,-19.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10023 - components: - - pos: -44.5,-18.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10024 - components: - - pos: -44.5,-17.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10025 - components: - - pos: -44.5,-16.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10026 - components: - - pos: -44.5,-15.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10027 - components: - - pos: -44.5,-14.5 - parent: 4812 - type: Transform - - uid: 10028 - components: - - pos: -44.5,-13.5 - parent: 4812 - type: Transform - - uid: 10029 - components: - - pos: -44.5,-12.5 - parent: 4812 - type: Transform - - uid: 10030 - components: - - pos: -44.5,-11.5 - parent: 4812 - type: Transform - - uid: 10031 - components: - - pos: -44.5,-10.5 - parent: 4812 - type: Transform - - uid: 10032 - components: - - pos: -44.5,-9.5 - parent: 4812 - type: Transform - - uid: 10033 - components: - - pos: -44.5,-8.5 - parent: 4812 - type: Transform - - uid: 10034 - components: - - pos: -44.5,-7.5 - parent: 4812 - type: Transform - - uid: 10035 - components: - - pos: -44.5,-6.5 - parent: 4812 - type: Transform - - uid: 10036 - components: - - pos: -43.5,-6.5 - parent: 4812 - type: Transform - - uid: 10037 - components: - - pos: -42.5,-6.5 - parent: 4812 - type: Transform - - uid: 10038 - components: - - pos: -41.5,-6.5 - parent: 4812 - type: Transform - - uid: 10039 - components: - - pos: -41.5,-5.5 - parent: 4812 - type: Transform - - uid: 10040 - components: - - pos: -41.5,-4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10184 - components: - - pos: -50.5,-25.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10185 - components: - - pos: -50.5,-24.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10186 - components: - - pos: -51.5,-24.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10187 - components: - - pos: -51.5,-23.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10188 - components: - - pos: -51.5,-22.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10189 - components: - - pos: -51.5,-21.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10652 - components: - - pos: -53.5,-13.5 - parent: 4812 - type: Transform - - uid: 10653 - components: - - pos: -53.5,-12.5 - parent: 4812 - type: Transform - - uid: 10654 - components: - - pos: -54.5,-12.5 - parent: 4812 - type: Transform - - uid: 10655 - components: - - pos: -55.5,-12.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11151 - components: - - pos: 14.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11152 - components: - - pos: 13.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11153 - components: - - pos: 12.5,-33.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11154 - components: - - pos: 12.5,-32.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11155 - components: - - pos: 12.5,-31.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11156 - components: - - pos: 12.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11157 - components: - - pos: 11.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11158 - components: - - pos: 10.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11159 - components: - - pos: 9.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11160 - components: - - pos: 8.5,-30.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11161 - components: - - pos: 8.5,-31.5 - parent: 4812 - type: Transform - - uid: 11162 - components: - - pos: 8.5,-32.5 - parent: 4812 - type: Transform - - uid: 11163 - components: - - pos: 8.5,-33.5 - parent: 4812 - type: Transform - - uid: 11164 - components: - - pos: 8.5,-34.5 - parent: 4812 - type: Transform - - uid: 11165 - components: - - pos: 8.5,-35.5 - parent: 4812 - type: Transform - - uid: 11166 - components: - - pos: 9.5,-35.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11167 - components: - - pos: 10.5,-35.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11438 - components: - - pos: 30.5,-39.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11439 - components: - - pos: 30.5,-38.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11440 - components: - - pos: 30.5,-37.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound -- proto: CableMVStack - entities: - - uid: 8586 - components: - - pos: -16.577534,7.6930285 - parent: 4812 - type: Transform - - uid: 11954 - components: - - pos: -10.530096,15.7538185 - parent: 4812 - type: Transform - - uid: 11955 - components: - - pos: -10.530096,15.7538185 - parent: 4812 - type: Transform -- proto: CableTerminal - entities: - - uid: 3794 - components: - - rot: 3.141592653589793 rad - pos: 14.5,46.5 - parent: 4812 - type: Transform - - uid: 8736 - components: - - rot: 3.141592653589793 rad - pos: -45.5,-3.5 - parent: 4812 - type: Transform - - uid: 8737 - components: - - rot: 3.141592653589793 rad - pos: -44.5,-3.5 - parent: 4812 - type: Transform - - uid: 10167 - components: - - pos: -53.5,-24.5 - parent: 4812 - type: Transform - - uid: 10648 - components: - - rot: 3.141592653589793 rad - pos: -47.5,-12.5 - parent: 4812 - type: Transform - - uid: 11393 - components: - - pos: 33.5,-38.5 - parent: 4812 - type: Transform -- proto: CandyBowl - entities: - - uid: 10667 - components: - - pos: -12.524394,-16.459326 - parent: 4812 - type: Transform -- proto: CaptainIDCard - entities: - - uid: 2588 - components: - - pos: -12.545029,27.590694 - parent: 4812 - type: Transform -- proto: CarbonDioxideCanister - entities: - - uid: 9453 - components: - - pos: -53.5,5.5 - parent: 4812 - type: Transform -- proto: Carpet - entities: - - uid: 1739 - components: - - pos: -9.5,8.5 - parent: 4812 - type: Transform - - uid: 1740 - components: - - pos: -9.5,7.5 - parent: 4812 - type: Transform - - uid: 1741 - components: - - pos: -9.5,6.5 - parent: 4812 - type: Transform - - uid: 1742 - components: - - pos: -9.5,5.5 - parent: 4812 - type: Transform - - uid: 1743 - components: - - pos: -9.5,4.5 - parent: 4812 - type: Transform - - uid: 1744 - components: - - pos: -8.5,8.5 - parent: 4812 - type: Transform - - uid: 1745 - components: - - pos: -8.5,7.5 - parent: 4812 - type: Transform - - uid: 1746 - components: - - pos: -8.5,6.5 - parent: 4812 - type: Transform - - uid: 1747 - components: - - pos: -8.5,5.5 - parent: 4812 - type: Transform - - uid: 1748 - components: - - pos: -8.5,4.5 - parent: 4812 - type: Transform - - uid: 5377 - components: - - pos: 19.5,-17.5 - parent: 4812 - type: Transform - - uid: 5378 - components: - - pos: 19.5,-16.5 - parent: 4812 - type: Transform - - uid: 5379 - components: - - pos: 20.5,-16.5 - parent: 4812 - type: Transform - - uid: 5380 - components: - - pos: 20.5,-17.5 - parent: 4812 - type: Transform - - uid: 5381 - components: - - pos: 19.5,-15.5 - parent: 4812 - type: Transform - - uid: 5382 - components: - - pos: 20.5,-15.5 - parent: 4812 - type: Transform - - uid: 6400 - components: - - pos: -3.5,-18.5 - parent: 4812 - type: Transform - - uid: 6401 - components: - - pos: -3.5,-17.5 - parent: 4812 - type: Transform - - uid: 6402 - components: - - pos: -3.5,-16.5 - parent: 4812 - type: Transform - - uid: 6403 - components: - - pos: -2.5,-18.5 - parent: 4812 - type: Transform - - uid: 6404 - components: - - pos: -2.5,-17.5 - parent: 4812 - type: Transform - - uid: 6405 - components: - - pos: -2.5,-16.5 - parent: 4812 - type: Transform - - uid: 6406 - components: - - pos: -1.5,-18.5 - parent: 4812 - type: Transform - - uid: 6407 - components: - - pos: -1.5,-17.5 - parent: 4812 - type: Transform - - uid: 6408 - components: - - pos: -1.5,-16.5 - parent: 4812 - type: Transform - - uid: 7162 - components: - - pos: -25.5,-15.5 - parent: 4812 - type: Transform - - uid: 7163 - components: - - pos: -25.5,-16.5 - parent: 4812 - type: Transform - - uid: 7164 - components: - - pos: -24.5,-15.5 - parent: 4812 - type: Transform - - uid: 7165 - components: - - pos: -24.5,-16.5 - parent: 4812 - type: Transform - - uid: 7166 - components: - - pos: -23.5,-15.5 - parent: 4812 - type: Transform - - uid: 7167 - components: - - pos: -23.5,-16.5 - parent: 4812 - type: Transform - - uid: 9062 - components: - - pos: -30.5,-39.5 - parent: 4812 - type: Transform - - uid: 9063 - components: - - pos: -29.5,-39.5 - parent: 4812 - type: Transform -- proto: CarpetBlack - entities: - - uid: 11360 - components: - - pos: 36.5,-34.5 - parent: 4812 - type: Transform - - uid: 11361 - components: - - pos: 36.5,-33.5 - parent: 4812 - type: Transform - - uid: 11362 - components: - - pos: 37.5,-33.5 - parent: 4812 - type: Transform - - uid: 11363 - components: - - pos: 37.5,-34.5 - parent: 4812 - type: Transform -- proto: CarpetBlue - entities: - - uid: 2591 - components: - - pos: -12.5,28.5 - parent: 4812 - type: Transform - - uid: 2592 - components: - - pos: -12.5,29.5 - parent: 4812 - type: Transform - - uid: 2593 - components: - - pos: -11.5,29.5 - parent: 4812 - type: Transform - - uid: 2594 - components: - - pos: -11.5,28.5 - parent: 4812 - type: Transform - - uid: 2611 - components: - - pos: -13.5,22.5 - parent: 4812 - type: Transform - - uid: 2613 - components: - - pos: -13.5,23.5 - parent: 4812 - type: Transform - - uid: 2614 - components: - - pos: -13.5,24.5 - parent: 4812 - type: Transform - - uid: 2615 - components: - - pos: -12.5,22.5 - parent: 4812 - type: Transform - - uid: 2616 - components: - - pos: -12.5,23.5 - parent: 4812 - type: Transform - - uid: 2617 - components: - - pos: -12.5,24.5 - parent: 4812 - type: Transform - - uid: 2618 - components: - - pos: -11.5,22.5 - parent: 4812 - type: Transform - - uid: 2619 - components: - - pos: -11.5,23.5 - parent: 4812 - type: Transform - - uid: 2620 - components: - - pos: -11.5,24.5 - parent: 4812 - type: Transform -- proto: CarpetChapel - entities: - - uid: 6984 - components: - - pos: -17.5,-33.5 - parent: 4812 - type: Transform - - uid: 6985 - components: - - pos: -15.5,-33.5 - parent: 4812 - type: Transform - - uid: 6986 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-32.5 - parent: 4812 - type: Transform - - uid: 6987 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-32.5 - parent: 4812 - type: Transform - - uid: 6988 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-35.5 - parent: 4812 - type: Transform - - uid: 6989 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-35.5 - parent: 4812 - type: Transform - - uid: 6990 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-35.5 - parent: 4812 - type: Transform - - uid: 6991 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-35.5 - parent: 4812 - type: Transform - - uid: 6992 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-32.5 - parent: 4812 - type: Transform - - uid: 6993 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-32.5 - parent: 4812 - type: Transform - - uid: 6994 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-33.5 - parent: 4812 - type: Transform - - uid: 6995 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-33.5 - parent: 4812 - type: Transform - - uid: 6996 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-36.5 - parent: 4812 - type: Transform - - uid: 6997 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-36.5 - parent: 4812 - type: Transform - - uid: 6998 - components: - - pos: -17.5,-36.5 - parent: 4812 - type: Transform - - uid: 6999 - components: - - pos: -15.5,-36.5 - parent: 4812 - type: Transform -- proto: CarpetGreen - entities: - - uid: 7156 - components: - - pos: -31.5,-17.5 - parent: 4812 - type: Transform - - uid: 7157 - components: - - pos: -31.5,-16.5 - parent: 4812 - type: Transform - - uid: 7158 - components: - - pos: -30.5,-17.5 - parent: 4812 - type: Transform - - uid: 7159 - components: - - pos: -30.5,-16.5 - parent: 4812 - type: Transform - - uid: 8279 - components: - - pos: -18.5,14.5 - parent: 4812 - type: Transform - - uid: 8280 - components: - - pos: -18.5,15.5 - parent: 4812 - type: Transform - - uid: 8281 - components: - - pos: -17.5,15.5 - parent: 4812 - type: Transform - - uid: 8282 - components: - - pos: -17.5,14.5 - parent: 4812 - type: Transform - - uid: 9082 - components: - - pos: -30.5,-36.5 - parent: 4812 - type: Transform - - uid: 9083 - components: - - pos: -30.5,-37.5 - parent: 4812 - type: Transform - - uid: 9084 - components: - - pos: -31.5,-37.5 - parent: 4812 - type: Transform - - uid: 9085 - components: - - pos: -31.5,-36.5 - parent: 4812 - type: Transform -- proto: CarpetOrange - entities: - - uid: 1657 - components: - - pos: 6.5,8.5 - parent: 4812 - type: Transform - - uid: 1661 - components: - - pos: 6.5,9.5 - parent: 4812 - type: Transform - - uid: 1662 - components: - - pos: 7.5,9.5 - parent: 4812 - type: Transform - - uid: 1663 - components: - - pos: 7.5,8.5 - parent: 4812 - type: Transform -- proto: CarpetPurple - entities: - - uid: 277 - components: - - pos: -18.5,-0.5 - parent: 4812 - type: Transform - - uid: 2635 - components: - - pos: -3.5,28.5 - parent: 4812 - type: Transform - - uid: 2636 - components: - - pos: -3.5,29.5 - parent: 4812 - type: Transform - - uid: 2637 - components: - - pos: -2.5,29.5 - parent: 4812 - type: Transform - - uid: 2638 - components: - - pos: -2.5,28.5 - parent: 4812 - type: Transform - - uid: 2639 - components: - - pos: -1.5,28.5 - parent: 4812 - type: Transform - - uid: 2640 - components: - - pos: -1.5,29.5 - parent: 4812 - type: Transform - - uid: 6294 - components: - - pos: 25.5,-20.5 - parent: 4812 - type: Transform - - uid: 6295 - components: - - pos: 25.5,-19.5 - parent: 4812 - type: Transform - - uid: 6296 - components: - - pos: 25.5,-18.5 - parent: 4812 - type: Transform - - uid: 6297 - components: - - pos: 26.5,-20.5 - parent: 4812 - type: Transform - - uid: 6298 - components: - - pos: 26.5,-19.5 - parent: 4812 - type: Transform - - uid: 6299 - components: - - pos: 26.5,-18.5 - parent: 4812 - type: Transform - - uid: 6300 - components: - - pos: 27.5,-20.5 - parent: 4812 - type: Transform - - uid: 6301 - components: - - pos: 27.5,-19.5 - parent: 4812 - type: Transform - - uid: 6302 - components: - - pos: 27.5,-18.5 - parent: 4812 - type: Transform -- proto: CarpetSBlue - entities: - - uid: 2546 - components: - - pos: 6.5,28.5 - parent: 4812 - type: Transform - - uid: 2547 - components: - - pos: 6.5,29.5 - parent: 4812 - type: Transform - - uid: 2548 - components: - - pos: 7.5,29.5 - parent: 4812 - type: Transform - - uid: 2549 - components: - - pos: 7.5,28.5 - parent: 4812 - type: Transform - - uid: 2550 - components: - - pos: 9.5,24.5 - parent: 4812 - type: Transform - - uid: 2551 - components: - - pos: 8.5,24.5 - parent: 4812 - type: Transform - - uid: 2552 - components: - - pos: 7.5,24.5 - parent: 4812 - type: Transform - - uid: 2553 - components: - - pos: 7.5,25.5 - parent: 4812 - type: Transform - - uid: 2554 - components: - - pos: 8.5,25.5 - parent: 4812 - type: Transform - - uid: 2555 - components: - - pos: 9.5,25.5 - parent: 4812 - type: Transform -- proto: Catwalk - entities: - - uid: 1550 - components: - - pos: 2.5,12.5 - parent: 4812 - type: Transform - - uid: 1551 - components: - - pos: 2.5,13.5 - parent: 4812 - type: Transform - - uid: 1553 - components: - - pos: 1.5,14.5 - parent: 4812 - type: Transform - - uid: 3101 - components: - - pos: 3.5,11.5 - parent: 4812 - type: Transform - - uid: 3102 - components: - - pos: 4.5,11.5 - parent: 4812 - type: Transform - - uid: 3103 - components: - - pos: 5.5,11.5 - parent: 4812 - type: Transform - - uid: 3104 - components: - - pos: 6.5,11.5 - parent: 4812 - type: Transform - - uid: 3105 - components: - - pos: 7.5,11.5 - parent: 4812 - type: Transform - - uid: 3106 - components: - - pos: 8.5,11.5 - parent: 4812 - type: Transform - - uid: 3107 - components: - - pos: 9.5,10.5 - parent: 4812 - type: Transform - - uid: 3108 - components: - - pos: 9.5,9.5 - parent: 4812 - type: Transform - - uid: 3109 - components: - - pos: 9.5,8.5 - parent: 4812 - type: Transform - - uid: 3110 - components: - - pos: 9.5,7.5 - parent: 4812 - type: Transform - - uid: 3111 - components: - - pos: 9.5,6.5 - parent: 4812 - type: Transform - - uid: 3112 - components: - - pos: 9.5,4.5 - parent: 4812 - type: Transform - - uid: 3362 - components: - - pos: 12.5,22.5 - parent: 4812 - type: Transform - - uid: 3363 - components: - - pos: 12.5,23.5 - parent: 4812 - type: Transform - - uid: 3364 - components: - - pos: 12.5,26.5 - parent: 4812 - type: Transform - - uid: 3365 - components: - - pos: 12.5,27.5 - parent: 4812 - type: Transform - - uid: 3366 - components: - - pos: 12.5,28.5 - parent: 4812 - type: Transform - - uid: 3367 - components: - - pos: 12.5,29.5 - parent: 4812 - type: Transform - - uid: 3368 - components: - - pos: 12.5,30.5 - parent: 4812 - type: Transform - - uid: 3471 - components: - - pos: 3.5,41.5 - parent: 4812 - type: Transform - - uid: 3472 - components: - - pos: 3.5,42.5 - parent: 4812 - type: Transform - - uid: 3473 - components: - - pos: 3.5,43.5 - parent: 4812 - type: Transform - - uid: 3477 - components: - - pos: 6.5,42.5 - parent: 4812 - type: Transform - - uid: 3478 - components: - - pos: 6.5,41.5 - parent: 4812 - type: Transform - - uid: 3479 - components: - - pos: 6.5,40.5 - parent: 4812 - type: Transform - - uid: 3480 - components: - - pos: 6.5,39.5 - parent: 4812 - type: Transform - - uid: 3481 - components: - - pos: 6.5,38.5 - parent: 4812 - type: Transform - - uid: 3482 - components: - - pos: 6.5,37.5 - parent: 4812 - type: Transform - - uid: 3483 - components: - - pos: 6.5,36.5 - parent: 4812 - type: Transform - - uid: 3484 - components: - - pos: 6.5,35.5 - parent: 4812 - type: Transform - - uid: 3485 - components: - - pos: 6.5,34.5 - parent: 4812 - type: Transform - - uid: 4487 - components: - - pos: 17.5,4.5 - parent: 4812 - type: Transform - - uid: 4488 - components: - - pos: 16.5,4.5 - parent: 4812 - type: Transform - - uid: 4591 - components: - - pos: 19.5,-7.5 - parent: 4812 - type: Transform - - uid: 4592 - components: - - pos: 18.5,-7.5 - parent: 4812 - type: Transform - - uid: 4593 - components: - - pos: 17.5,-7.5 - parent: 4812 - type: Transform - - uid: 4860 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-30.5 - parent: 4812 - type: Transform - - uid: 4931 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-30.5 - parent: 4812 - type: Transform - - uid: 4932 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-30.5 - parent: 4812 - type: Transform - - uid: 4950 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-30.5 - parent: 4812 - type: Transform - - uid: 4951 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-30.5 - parent: 4812 - type: Transform - - uid: 6368 - components: - - pos: 16.5,-18.5 - parent: 4812 - type: Transform - - uid: 6369 - components: - - pos: 16.5,-17.5 - parent: 4812 - type: Transform - - uid: 6370 - components: - - pos: 16.5,-16.5 - parent: 4812 - type: Transform - - uid: 6371 - components: - - pos: 16.5,-15.5 - parent: 4812 - type: Transform - - uid: 6372 - components: - - pos: 15.5,-14.5 - parent: 4812 - type: Transform - - uid: 6373 - components: - - pos: 14.5,-14.5 - parent: 4812 - type: Transform - - uid: 6374 - components: - - pos: 13.5,-14.5 - parent: 4812 - type: Transform - - uid: 6375 - components: - - pos: 18.5,-32.5 - parent: 4812 - type: Transform - - uid: 6376 - components: - - pos: 18.5,-31.5 - parent: 4812 - type: Transform - - uid: 6377 - components: - - pos: 18.5,-30.5 - parent: 4812 - type: Transform - - uid: 6378 - components: - - pos: 18.5,-29.5 - parent: 4812 - type: Transform - - uid: 6379 - components: - - pos: 18.5,-28.5 - parent: 4812 - type: Transform - - uid: 6380 - components: - - pos: 17.5,-33.5 - parent: 4812 - type: Transform - - uid: 6381 - components: - - pos: 16.5,-33.5 - parent: 4812 - type: Transform - - uid: 6383 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-30.5 - parent: 4812 - type: Transform - - uid: 8610 - components: - - pos: 9.5,-8.5 - parent: 4812 - type: Transform - - uid: 8611 - components: - - pos: 9.5,-7.5 - parent: 4812 - type: Transform - - uid: 8612 - components: - - pos: 9.5,-6.5 - parent: 4812 - type: Transform - - uid: 8613 - components: - - pos: 9.5,-5.5 - parent: 4812 - type: Transform - - uid: 8614 - components: - - pos: 9.5,-4.5 - parent: 4812 - type: Transform - - uid: 8615 - components: - - pos: 9.5,-3.5 - parent: 4812 - type: Transform - - uid: 8616 - components: - - pos: 9.5,-2.5 - parent: 4812 - type: Transform - - uid: 8617 - components: - - pos: 9.5,-0.5 - parent: 4812 - type: Transform - - uid: 8618 - components: - - pos: 9.5,0.5 - parent: 4812 - type: Transform - - uid: 8619 - components: - - pos: 9.5,1.5 - parent: 4812 - type: Transform - - uid: 8620 - components: - - pos: 9.5,2.5 - parent: 4812 - type: Transform - - uid: 9429 - components: - - pos: -49.5,0.5 - parent: 4812 - type: Transform - - uid: 9430 - components: - - pos: -49.5,1.5 - parent: 4812 - type: Transform - - uid: 9431 - components: - - pos: -49.5,2.5 - parent: 4812 - type: Transform - - uid: 9432 - components: - - pos: -49.5,3.5 - parent: 4812 - type: Transform - - uid: 9433 - components: - - pos: -49.5,4.5 - parent: 4812 - type: Transform - - uid: 9434 - components: - - pos: -49.5,5.5 - parent: 4812 - type: Transform - - uid: 9435 - components: - - pos: -49.5,6.5 - parent: 4812 - type: Transform - - uid: 9436 - components: - - pos: -49.5,7.5 - parent: 4812 - type: Transform - - uid: 9437 - components: - - pos: -49.5,8.5 - parent: 4812 - type: Transform - - uid: 9438 - components: - - pos: -49.5,9.5 - parent: 4812 - type: Transform - - uid: 9439 - components: - - pos: -49.5,10.5 - parent: 4812 - type: Transform - - uid: 9440 - components: - - pos: -49.5,11.5 - parent: 4812 - type: Transform - - uid: 9441 - components: - - pos: -49.5,12.5 - parent: 4812 - type: Transform - - uid: 9532 - components: - - pos: -49.5,-4.5 - parent: 4812 - type: Transform - - uid: 9533 - components: - - pos: -48.5,-4.5 - parent: 4812 - type: Transform - - uid: 9534 - components: - - pos: -47.5,-4.5 - parent: 4812 - type: Transform - - uid: 9556 - components: - - pos: -45.5,14.5 - parent: 4812 - type: Transform - - uid: 9557 - components: - - pos: -44.5,14.5 - parent: 4812 - type: Transform - - uid: 9558 - components: - - pos: -43.5,14.5 - parent: 4812 - type: Transform - - uid: 9700 - components: - - pos: -36.5,-5.5 - parent: 4812 - type: Transform - - uid: 9701 - components: - - pos: -36.5,-4.5 - parent: 4812 - type: Transform - - uid: 9702 - components: - - pos: -36.5,-3.5 - parent: 4812 - type: Transform - - uid: 9703 - components: - - pos: -36.5,-2.5 - parent: 4812 - type: Transform - - uid: 9704 - components: - - pos: -36.5,-1.5 - parent: 4812 - type: Transform - - uid: 9705 - components: - - pos: -36.5,-0.5 - parent: 4812 - type: Transform - - uid: 9932 - components: - - pos: -40.5,-17.5 - parent: 4812 - type: Transform - - uid: 9933 - components: - - pos: -40.5,-16.5 - parent: 4812 - type: Transform - - uid: 9934 - components: - - pos: -40.5,-15.5 - parent: 4812 - type: Transform - - uid: 9935 - components: - - pos: -40.5,-14.5 - parent: 4812 - type: Transform - - uid: 9936 - components: - - pos: -40.5,-13.5 - parent: 4812 - type: Transform - - uid: 9937 - components: - - pos: -40.5,-12.5 - parent: 4812 - type: Transform - - uid: 9938 - components: - - pos: -40.5,-11.5 - parent: 4812 - type: Transform - - uid: 10277 - components: - - pos: -70.5,-22.5 - parent: 4812 - type: Transform - - uid: 10278 - components: - - pos: -69.5,-22.5 - parent: 4812 - type: Transform - - uid: 10279 - components: - - pos: -68.5,-22.5 - parent: 4812 - type: Transform - - uid: 10280 - components: - - pos: -67.5,-22.5 - parent: 4812 - type: Transform - - uid: 10281 - components: - - pos: -66.5,-22.5 - parent: 4812 - type: Transform - - uid: 10282 - components: - - pos: -65.5,-22.5 - parent: 4812 - type: Transform - - uid: 10283 - components: - - pos: -64.5,-22.5 - parent: 4812 - type: Transform - - uid: 10284 - components: - - pos: -63.5,-22.5 - parent: 4812 - type: Transform - - uid: 10285 - components: - - pos: -62.5,-22.5 - parent: 4812 - type: Transform - - uid: 10286 - components: - - pos: -61.5,-22.5 - parent: 4812 - type: Transform - - uid: 10287 - components: - - pos: -60.5,-22.5 - parent: 4812 - type: Transform - - uid: 10288 - components: - - pos: -59.5,-22.5 - parent: 4812 - type: Transform - - uid: 10289 - components: - - pos: -58.5,-22.5 - parent: 4812 - type: Transform - - uid: 10290 - components: - - pos: -57.5,-22.5 - parent: 4812 - type: Transform - - uid: 10291 - components: - - pos: -60.5,-21.5 - parent: 4812 - type: Transform - - uid: 10292 - components: - - pos: -60.5,-20.5 - parent: 4812 - type: Transform - - uid: 10293 - components: - - pos: -60.5,-19.5 - parent: 4812 - type: Transform - - uid: 10294 - components: - - pos: -60.5,-18.5 - parent: 4812 - type: Transform - - uid: 10295 - components: - - pos: -64.5,-18.5 - parent: 4812 - type: Transform - - uid: 10296 - components: - - pos: -64.5,-19.5 - parent: 4812 - type: Transform - - uid: 10297 - components: - - pos: -64.5,-20.5 - parent: 4812 - type: Transform - - uid: 10298 - components: - - pos: -64.5,-21.5 - parent: 4812 - type: Transform - - uid: 10299 - components: - - pos: -68.5,-21.5 - parent: 4812 - type: Transform - - uid: 10300 - components: - - pos: -68.5,-20.5 - parent: 4812 - type: Transform - - uid: 10301 - components: - - pos: -68.5,-19.5 - parent: 4812 - type: Transform - - uid: 10302 - components: - - pos: -68.5,-18.5 - parent: 4812 - type: Transform - - uid: 10303 - components: - - pos: -68.5,-23.5 - parent: 4812 - type: Transform - - uid: 10304 - components: - - pos: -68.5,-24.5 - parent: 4812 - type: Transform - - uid: 10305 - components: - - pos: -68.5,-25.5 - parent: 4812 - type: Transform - - uid: 10306 - components: - - pos: -68.5,-26.5 - parent: 4812 - type: Transform - - uid: 10307 - components: - - pos: -64.5,-26.5 - parent: 4812 - type: Transform - - uid: 10308 - components: - - pos: -64.5,-25.5 - parent: 4812 - type: Transform - - uid: 10309 - components: - - pos: -64.5,-24.5 - parent: 4812 - type: Transform - - uid: 10310 - components: - - pos: -64.5,-23.5 - parent: 4812 - type: Transform - - uid: 10311 - components: - - pos: -60.5,-26.5 - parent: 4812 - type: Transform - - uid: 10312 - components: - - pos: -60.5,-25.5 - parent: 4812 - type: Transform - - uid: 10313 - components: - - pos: -60.5,-24.5 - parent: 4812 - type: Transform - - uid: 10314 - components: - - pos: -60.5,-23.5 - parent: 4812 - type: Transform - - uid: 10566 - components: - - pos: -30.5,-25.5 - parent: 4812 - type: Transform - - uid: 10567 - components: - - pos: -31.5,-25.5 - parent: 4812 - type: Transform - - uid: 10568 - components: - - pos: -32.5,-25.5 - parent: 4812 - type: Transform - - uid: 10569 - components: - - pos: -33.5,-25.5 - parent: 4812 - type: Transform - - uid: 10570 - components: - - pos: -10.5,-32.5 - parent: 4812 - type: Transform - - uid: 10571 - components: - - pos: -10.5,-31.5 - parent: 4812 - type: Transform - - uid: 10572 - components: - - pos: -11.5,-30.5 - parent: 4812 - type: Transform - - uid: 10573 - components: - - pos: -12.5,-30.5 - parent: 4812 - type: Transform - - uid: 10574 - components: - - pos: -13.5,-30.5 - parent: 4812 - type: Transform - - uid: 10575 - components: - - pos: -14.5,-30.5 - parent: 4812 - type: Transform - - uid: 10576 - components: - - pos: -15.5,-30.5 - parent: 4812 - type: Transform - - uid: 10577 - components: - - pos: -16.5,-30.5 - parent: 4812 - type: Transform - - uid: 10578 - components: - - pos: -17.5,-30.5 - parent: 4812 - type: Transform - - uid: 10579 - components: - - pos: -18.5,-30.5 - parent: 4812 - type: Transform - - uid: 10580 - components: - - pos: -19.5,-30.5 - parent: 4812 - type: Transform - - uid: 10582 - components: - - pos: -21.5,-30.5 - parent: 4812 - type: Transform - - uid: 10583 - components: - - pos: -22.5,-30.5 - parent: 4812 - type: Transform - - uid: 10584 - components: - - pos: -23.5,-30.5 - parent: 4812 - type: Transform - - uid: 10587 - components: - - pos: -34.5,-24.5 - parent: 4812 - type: Transform - - uid: 10588 - components: - - pos: -34.5,-23.5 - parent: 4812 - type: Transform - - uid: 10589 - components: - - pos: -34.5,-22.5 - parent: 4812 - type: Transform - - uid: 10590 - components: - - pos: -34.5,-21.5 - parent: 4812 - type: Transform - - uid: 10593 - components: - - pos: -38.5,-20.5 - parent: 4812 - type: Transform - - uid: 10594 - components: - - pos: -39.5,-20.5 - parent: 4812 - type: Transform - - uid: 10595 - components: - - pos: -40.5,-20.5 - parent: 4812 - type: Transform - - uid: 10596 - components: - - pos: -41.5,-20.5 - parent: 4812 - type: Transform - - uid: 10597 - components: - - pos: -42.5,-20.5 - parent: 4812 - type: Transform - - uid: 10598 - components: - - pos: -43.5,-20.5 - parent: 4812 - type: Transform - - uid: 10618 - components: - - pos: -36.5,-19.5 - parent: 4812 - type: Transform - - uid: 10619 - components: - - pos: -36.5,-18.5 - parent: 4812 - type: Transform - - uid: 10620 - components: - - pos: -36.5,-17.5 - parent: 4812 - type: Transform - - uid: 10621 - components: - - pos: -36.5,-16.5 - parent: 4812 - type: Transform - - uid: 10622 - components: - - pos: -36.5,-15.5 - parent: 4812 - type: Transform - - uid: 10623 - components: - - pos: -36.5,-14.5 - parent: 4812 - type: Transform - - uid: 10624 - components: - - pos: -36.5,-13.5 - parent: 4812 - type: Transform - - uid: 10625 - components: - - pos: -36.5,-12.5 - parent: 4812 - type: Transform - - uid: 10626 - components: - - pos: -36.5,-11.5 - parent: 4812 - type: Transform - - uid: 10627 - components: - - pos: -48.5,-22.5 - parent: 4812 - type: Transform - - uid: 10628 - components: - - pos: -47.5,-22.5 - parent: 4812 - type: Transform - - uid: 10629 - components: - - pos: -46.5,-22.5 - parent: 4812 - type: Transform - - uid: 10630 - components: - - pos: -45.5,-21.5 - parent: 4812 - type: Transform - - uid: 10631 - components: - - pos: -44.5,-20.5 - parent: 4812 - type: Transform - - uid: 10870 - components: - - pos: -30.5,7.5 - parent: 4812 - type: Transform - - uid: 10871 - components: - - pos: -31.5,7.5 - parent: 4812 - type: Transform - - uid: 10872 - components: - - pos: -32.5,7.5 - parent: 4812 - type: Transform - - uid: 10874 - components: - - pos: -33.5,7.5 - parent: 4812 - type: Transform - - uid: 10875 - components: - - pos: -34.5,7.5 - parent: 4812 - type: Transform - - uid: 11252 - components: - - pos: 9.5,-36.5 - parent: 4812 - type: Transform - - uid: 11253 - components: - - pos: 9.5,-35.5 - parent: 4812 - type: Transform - - uid: 11254 - components: - - pos: 9.5,-34.5 - parent: 4812 - type: Transform - - uid: 11255 - components: - - pos: 9.5,-33.5 - parent: 4812 - type: Transform - - uid: 11257 - components: - - pos: 14.5,-33.5 - parent: 4812 - type: Transform - - uid: 11258 - components: - - pos: 13.5,-33.5 - parent: 4812 - type: Transform - - uid: 11423 - components: - - pos: 19.5,-33.5 - parent: 4812 - type: Transform - - uid: 11424 - components: - - pos: 21.5,-33.5 - parent: 4812 - type: Transform - - uid: 11425 - components: - - pos: 22.5,-33.5 - parent: 4812 - type: Transform - - uid: 11426 - components: - - pos: 20.5,-33.5 - parent: 4812 - type: Transform - - uid: 11427 - components: - - pos: 24.5,-33.5 - parent: 4812 - type: Transform - - uid: 11428 - components: - - pos: 25.5,-33.5 - parent: 4812 - type: Transform - - uid: 11429 - components: - - pos: 26.5,-33.5 - parent: 4812 - type: Transform - - uid: 11430 - components: - - pos: 27.5,-33.5 - parent: 4812 - type: Transform - - uid: 11431 - components: - - pos: 28.5,-33.5 - parent: 4812 - type: Transform - - uid: 11432 - components: - - pos: 29.5,-33.5 - parent: 4812 - type: Transform - - uid: 11433 - components: - - pos: 30.5,-33.5 - parent: 4812 - type: Transform - - uid: 11578 - components: - - pos: 39.5,-36.5 - parent: 4812 - type: Transform - - uid: 11579 - components: - - pos: 40.5,-36.5 - parent: 4812 - type: Transform - - uid: 11580 - components: - - pos: 41.5,-36.5 - parent: 4812 - type: Transform - - uid: 11581 - components: - - pos: 42.5,-36.5 - parent: 4812 - type: Transform - - uid: 11582 - components: - - pos: 43.5,-36.5 - parent: 4812 - type: Transform - - uid: 11583 - components: - - pos: 44.5,-36.5 - parent: 4812 - type: Transform - - uid: 11584 - components: - - pos: 45.5,-36.5 - parent: 4812 - type: Transform - - uid: 11585 - components: - - pos: 46.5,-36.5 - parent: 4812 - type: Transform - - uid: 11586 - components: - - pos: 47.5,-36.5 - parent: 4812 - type: Transform - - uid: 11587 - components: - - pos: 48.5,-36.5 - parent: 4812 - type: Transform - - uid: 11588 - components: - - pos: 49.5,-36.5 - parent: 4812 - type: Transform - - uid: 11589 - components: - - pos: 50.5,-36.5 - parent: 4812 - type: Transform - - uid: 11590 - components: - - pos: 51.5,-36.5 - parent: 4812 - type: Transform - - uid: 11591 - components: - - pos: 52.5,-36.5 - parent: 4812 - type: Transform - - uid: 11592 - components: - - pos: 50.5,-35.5 - parent: 4812 - type: Transform - - uid: 11593 - components: - - pos: 50.5,-34.5 - parent: 4812 - type: Transform - - uid: 11594 - components: - - pos: 50.5,-33.5 - parent: 4812 - type: Transform - - uid: 11595 - components: - - pos: 50.5,-32.5 - parent: 4812 - type: Transform - - uid: 11596 - components: - - pos: 46.5,-35.5 - parent: 4812 - type: Transform - - uid: 11597 - components: - - pos: 46.5,-34.5 - parent: 4812 - type: Transform - - uid: 11598 - components: - - pos: 46.5,-33.5 - parent: 4812 - type: Transform - - uid: 11599 - components: - - pos: 46.5,-32.5 - parent: 4812 - type: Transform - - uid: 11600 - components: - - pos: 42.5,-35.5 - parent: 4812 - type: Transform - - uid: 11601 - components: - - pos: 42.5,-34.5 - parent: 4812 - type: Transform - - uid: 11602 - components: - - pos: 42.5,-33.5 - parent: 4812 - type: Transform - - uid: 11603 - components: - - pos: 42.5,-32.5 - parent: 4812 - type: Transform - - uid: 11604 - components: - - pos: 42.5,-40.5 - parent: 4812 - type: Transform - - uid: 11605 - components: - - pos: 42.5,-39.5 - parent: 4812 - type: Transform - - uid: 11606 - components: - - pos: 42.5,-38.5 - parent: 4812 - type: Transform - - uid: 11607 - components: - - pos: 42.5,-37.5 - parent: 4812 - type: Transform - - uid: 11608 - components: - - pos: 46.5,-40.5 - parent: 4812 - type: Transform - - uid: 11609 - components: - - pos: 46.5,-39.5 - parent: 4812 - type: Transform - - uid: 11610 - components: - - pos: 46.5,-38.5 - parent: 4812 - type: Transform - - uid: 11611 - components: - - pos: 46.5,-37.5 - parent: 4812 - type: Transform - - uid: 11612 - components: - - pos: 50.5,-40.5 - parent: 4812 - type: Transform - - uid: 11613 - components: - - pos: 50.5,-39.5 - parent: 4812 - type: Transform - - uid: 11614 - components: - - pos: 50.5,-38.5 - parent: 4812 - type: Transform - - uid: 11615 - components: - - pos: 50.5,-37.5 - parent: 4812 - type: Transform - - uid: 11619 - components: - - pos: 37.5,-36.5 - parent: 4812 - type: Transform - - uid: 11620 - components: - - pos: 36.5,-36.5 - parent: 4812 - type: Transform - - uid: 11814 - components: - - pos: -17.5,-3.5 - parent: 4812 - type: Transform - - uid: 11815 - components: - - pos: -18.5,-3.5 - parent: 4812 - type: Transform - - uid: 11816 - components: - - pos: -19.5,-3.5 - parent: 4812 - type: Transform - - uid: 11817 - components: - - pos: -15.5,-3.5 - parent: 4812 - type: Transform - - uid: 11818 - components: - - pos: -14.5,-3.5 - parent: 4812 - type: Transform - - uid: 11819 - components: - - pos: -13.5,-3.5 - parent: 4812 - type: Transform - - uid: 11820 - components: - - pos: -12.5,-2.5 - parent: 4812 - type: Transform - - uid: 11821 - components: - - pos: -12.5,-1.5 - parent: 4812 - type: Transform - - uid: 11822 - components: - - pos: -12.5,-0.5 - parent: 4812 - type: Transform - - uid: 11823 - components: - - pos: -12.5,0.5 - parent: 4812 - type: Transform - - uid: 11824 - components: - - pos: -12.5,1.5 - parent: 4812 - type: Transform - - uid: 11825 - components: - - pos: -12.5,2.5 - parent: 4812 - type: Transform - - uid: 11826 - components: - - pos: -12.5,3.5 - parent: 4812 - type: Transform - - uid: 11827 - components: - - pos: -12.5,4.5 - parent: 4812 - type: Transform - - uid: 11828 - components: - - pos: -12.5,5.5 - parent: 4812 - type: Transform - - uid: 11829 - components: - - pos: -12.5,6.5 - parent: 4812 - type: Transform - - uid: 11830 - components: - - pos: -12.5,7.5 - parent: 4812 - type: Transform - - uid: 11831 - components: - - pos: -12.5,8.5 - parent: 4812 - type: Transform - - uid: 11832 - components: - - pos: -6.5,13.5 - parent: 4812 - type: Transform - - uid: 11833 - components: - - pos: -7.5,13.5 - parent: 4812 - type: Transform - - uid: 11834 - components: - - pos: -8.5,13.5 - parent: 4812 - type: Transform - - uid: 11835 - components: - - pos: -9.5,13.5 - parent: 4812 - type: Transform - - uid: 11836 - components: - - pos: -10.5,13.5 - parent: 4812 - type: Transform - - uid: 11837 - components: - - pos: -11.5,13.5 - parent: 4812 - type: Transform -- proto: Chair - entities: - - uid: 3239 - components: - - rot: 3.141592653589793 rad - pos: 15.5,13.5 - parent: 4812 - type: Transform - - uid: 3240 - components: - - rot: 3.141592653589793 rad - pos: 16.5,13.5 - parent: 4812 - type: Transform - - uid: 3241 - components: - - rot: 3.141592653589793 rad - pos: 18.5,13.5 - parent: 4812 - type: Transform - - uid: 3242 - components: - - rot: 3.141592653589793 rad - pos: 19.5,13.5 - parent: 4812 - type: Transform - - uid: 3243 - components: - - rot: 3.141592653589793 rad - pos: 20.5,13.5 - parent: 4812 - type: Transform - - uid: 4551 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-4.5 - parent: 4812 - type: Transform - - uid: 4552 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-3.5 - parent: 4812 - type: Transform - - uid: 4553 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-2.5 - parent: 4812 - type: Transform - - uid: 4554 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-1.5 - parent: 4812 - type: Transform - - uid: 4555 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-0.5 - parent: 4812 - type: Transform - - uid: 4556 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-4.5 - parent: 4812 - type: Transform - - uid: 4557 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-3.5 - parent: 4812 - type: Transform - - uid: 4558 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-2.5 - parent: 4812 - type: Transform - - uid: 4559 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-1.5 - parent: 4812 - type: Transform - - uid: 4560 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-0.5 - parent: 4812 - type: Transform - - uid: 4565 - components: - - pos: 29.5,4.5 - parent: 4812 - type: Transform - - uid: 4566 - components: - - pos: 30.5,4.5 - parent: 4812 - type: Transform - - uid: 4567 - components: - - pos: 31.5,4.5 - parent: 4812 - type: Transform - - uid: 4568 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,3.5 - parent: 4812 - type: Transform - - uid: 5065 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-47.5 - parent: 4812 - type: Transform - - uid: 5066 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-46.5 - parent: 4812 - type: Transform - - uid: 5375 - components: - - rot: 3.141592653589793 rad - pos: 19.5,-17.5 - parent: 4812 - type: Transform - - uid: 7214 - components: - - pos: -8.5,-20.5 - parent: 4812 - type: Transform - - uid: 7439 - components: - - pos: -24.5,-22.5 - parent: 4812 - type: Transform - - uid: 7440 - components: - - pos: -25.5,-22.5 - parent: 4812 - type: Transform - - uid: 8289 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,14.5 - parent: 4812 - type: Transform - - uid: 8290 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,14.5 - parent: 4812 - type: Transform - - uid: 8291 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,15.5 - parent: 4812 - type: Transform - - uid: 8292 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,15.5 - parent: 4812 - type: Transform - - uid: 8293 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,17.5 - parent: 4812 - type: Transform - - uid: 8302 - components: - - pos: -19.5,19.5 - parent: 4812 - type: Transform - - uid: 8303 - components: - - pos: -18.5,19.5 - parent: 4812 - type: Transform - - uid: 8418 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-23.5 - parent: 4812 - type: Transform - - uid: 8437 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,10.5 - parent: 4812 - type: Transform - - uid: 8438 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,10.5 - parent: 4812 - type: Transform - - uid: 8445 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,17.5 - parent: 4812 - type: Transform - - uid: 8446 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,18.5 - parent: 4812 - type: Transform - - uid: 8851 - components: - - pos: 23.5,13.5 - parent: 4812 - type: Transform - - uid: 10732 - components: - - pos: -43.5,-6.5 - parent: 4812 - type: Transform - - uid: 10733 - components: - - pos: -42.5,-6.5 - parent: 4812 - type: Transform - - uid: 10734 - components: - - pos: -41.5,-6.5 - parent: 4812 - type: Transform - - uid: 10735 - components: - - rot: 3.141592653589793 rad - pos: -43.5,-8.5 - parent: 4812 - type: Transform - - uid: 10736 - components: - - rot: 3.141592653589793 rad - pos: -42.5,-8.5 - parent: 4812 - type: Transform - - uid: 10737 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-8.5 - parent: 4812 - type: Transform - - uid: 10909 - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-24.5 - parent: 4812 - type: Transform - - uid: 10910 - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-23.5 - parent: 4812 - type: Transform - - uid: 10911 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-24.5 - parent: 4812 - type: Transform - - uid: 11773 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-15.5 - parent: 4812 - type: Transform - - uid: 11774 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-17.5 - parent: 4812 - type: Transform - - uid: 11841 - components: - - pos: -8.5,14.5 - parent: 4812 - type: Transform - - uid: 11846 - components: - - rot: 3.141592653589793 rad - pos: -7.5,11.5 - parent: 4812 - type: Transform - - uid: 11877 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-34.5 - parent: 4812 - type: Transform - - uid: 11878 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-34.5 - parent: 4812 - type: Transform - - uid: 11885 - components: - - pos: 6.5,12.5 - parent: 4812 - type: Transform - - uid: 11886 - components: - - pos: 5.5,12.5 - parent: 4812 - type: Transform -- proto: ChairOfficeDark - entities: - - uid: 310 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-6.5 - parent: 4812 - type: Transform - - uid: 2508 - components: - - pos: 9.5,24.5 - parent: 4812 - type: Transform - - uid: 2665 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,34.5 - parent: 4812 - type: Transform - - uid: 2666 - components: - - rot: 3.141592653589793 rad - pos: -4.5,34.5 - parent: 4812 - type: Transform - - uid: 2667 - components: - - rot: 3.141592653589793 rad - pos: 2.5,33.5 - parent: 4812 - type: Transform - - uid: 2686 - components: - - pos: -7.5,33.5 - parent: 4812 - type: Transform - - uid: 3237 - components: - - pos: 15.5,17.5 - parent: 4812 - type: Transform - - uid: 3238 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,20.5 - parent: 4812 - type: Transform - - uid: 3704 - components: - - pos: 17.5,30.5 - parent: 4812 - type: Transform - - uid: 4569 - components: - - pos: 28.5,2.5 - parent: 4812 - type: Transform - - uid: 5371 - components: - - pos: 19.5,-15.5 - parent: 4812 - type: Transform - - uid: 6288 - components: - - pos: 26.5,-18.5 - parent: 4812 - type: Transform - - uid: 6320 - components: - - pos: 23.5,-26.5 - parent: 4812 - type: Transform - - uid: 6475 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-27.5 - parent: 4812 - type: Transform - - uid: 7037 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-39.5 - parent: 4812 - type: Transform - - uid: 7038 - components: - - pos: -23.5,-37.5 - parent: 4812 - type: Transform - - uid: 7071 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-15.5 - parent: 4812 - type: Transform - - uid: 7072 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-14.5 - parent: 4812 - type: Transform - - uid: 7073 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-15.5 - parent: 4812 - type: Transform - - uid: 7074 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-14.5 - parent: 4812 - type: Transform - - uid: 7075 - components: - - rot: 3.141592653589793 rad - pos: -31.5,-19.5 - parent: 4812 - type: Transform - - uid: 7076 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-14.5 - parent: 4812 - type: Transform - - uid: 8278 - components: - - pos: -17.5,15.5 - parent: 4812 - type: Transform - - uid: 8338 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,15.5 - parent: 4812 - type: Transform - - uid: 8366 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,11.5 - parent: 4812 - type: Transform - - uid: 9575 - components: - - pos: -30.5,1.5 - parent: 4812 - type: Transform - - uid: 9878 - components: - - pos: -49.5,-7.5 - parent: 4812 - type: Transform - - uid: 10666 - components: - - rot: 3.141592653589793 rad - pos: -49.5,-9.5 - parent: 4812 - type: Transform - - uid: 10698 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-5.5 - parent: 4812 - type: Transform - - uid: 11869 - components: - - rot: 3.141592653589793 rad - pos: -9.5,11.5 - parent: 4812 - type: Transform - - uid: 11870 - components: - - rot: 3.141592653589793 rad - pos: -10.5,11.5 - parent: 4812 - type: Transform - - uid: 11871 - components: - - rot: 3.141592653589793 rad - pos: -11.5,11.5 - parent: 4812 - type: Transform - - uid: 12112 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-1.5 - parent: 4812 - type: Transform -- proto: ChairOfficeLight - entities: - - uid: 4595 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-26.5 - parent: 4812 - type: Transform - - uid: 4973 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-21.5 - parent: 4812 - type: Transform - - uid: 6179 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-15.5 - parent: 4812 - type: Transform - - uid: 6180 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-14.5 - parent: 4812 - type: Transform - - uid: 6216 - components: - - pos: 3.5,-23.5 - parent: 4812 - type: Transform - - uid: 6344 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-25.5 - parent: 4812 - type: Transform - - uid: 6619 - components: - - pos: -11.5,-18.5 - parent: 4812 - type: Transform - - uid: 6620 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-14.5 - parent: 4812 - type: Transform - - uid: 8444 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-26.5 - parent: 4812 - type: Transform - - uid: 11148 - components: - - pos: 9.5,-43.5 - parent: 4812 - type: Transform -- proto: ChairWood - entities: - - uid: 1052 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 4812 - type: Transform - - uid: 1053 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-3.5 - parent: 4812 - type: Transform - - uid: 1054 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-2.5 - parent: 4812 - type: Transform - - uid: 1055 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-1.5 - parent: 4812 - type: Transform - - uid: 1056 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-2.5 - parent: 4812 - type: Transform - - uid: 1057 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-3.5 - parent: 4812 - type: Transform - - uid: 1058 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,6.5 - parent: 4812 - type: Transform - - uid: 1059 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,7.5 - parent: 4812 - type: Transform - - uid: 1060 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,8.5 - parent: 4812 - type: Transform - - uid: 1061 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,9.5 - parent: 4812 - type: Transform - - uid: 1062 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,8.5 - parent: 4812 - type: Transform - - uid: 1626 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,7.5 - parent: 4812 - type: Transform - - uid: 4659 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,1.5 - parent: 4812 - type: Transform - - uid: 5226 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,2.5 - parent: 4812 - type: Transform - - uid: 5227 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,3.5 - parent: 4812 - type: Transform - - uid: 5228 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,1.5 - parent: 4812 - type: Transform - - uid: 5230 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,2.5 - parent: 4812 - type: Transform - - uid: 5231 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,3.5 - parent: 4812 - type: Transform - - uid: 6797 - components: - - pos: -20.5,-38.5 - parent: 4812 - type: Transform - - uid: 6798 - components: - - pos: -19.5,-38.5 - parent: 4812 - type: Transform - - uid: 7007 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-33.5 - parent: 4812 - type: Transform - - uid: 7008 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-33.5 - parent: 4812 - type: Transform - - uid: 7009 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-32.5 - parent: 4812 - type: Transform - - uid: 7010 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-32.5 - parent: 4812 - type: Transform - - uid: 7011 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-32.5 - parent: 4812 - type: Transform - - uid: 7012 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-36.5 - parent: 4812 - type: Transform - - uid: 7013 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-36.5 - parent: 4812 - type: Transform - - uid: 7014 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-36.5 - parent: 4812 - type: Transform - - uid: 7015 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-35.5 - parent: 4812 - type: Transform - - uid: 7016 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-35.5 - parent: 4812 - type: Transform - - uid: 7160 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-19.5 - parent: 4812 - type: Transform - - uid: 7168 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-15.5 - parent: 4812 - type: Transform - - uid: 10502 - components: - - pos: -33.5,-27.5 - parent: 4812 - type: Transform - - uid: 10503 - components: - - pos: -32.5,-27.5 - parent: 4812 - type: Transform - - uid: 10504 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-29.5 - parent: 4812 - type: Transform - - uid: 10505 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-29.5 - parent: 4812 - type: Transform - - uid: 10506 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-28.5 - parent: 4812 - type: Transform - - uid: 10507 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-28.5 - parent: 4812 - type: Transform -- proto: ChanterelleSeeds - entities: - - uid: 1522 - components: - - pos: -13.5,-7.5 - parent: 4812 - type: Transform - - uid: 11296 - components: - - pos: 16.50683,-36.589657 - parent: 4812 - type: Transform -- proto: CheapRollerBed - entities: - - uid: 7588 - components: - - pos: -19.499699,-23.348194 - parent: 4812 - type: Transform - - uid: 7655 - components: - - pos: -20.546574,-23.33257 - parent: 4812 - type: Transform -- proto: CheapRollerBedSpawnFolded - entities: - - uid: 3226 - components: - - pos: -17.562876,-25.168678 - parent: 4812 - type: Transform - - uid: 8850 - components: - - pos: -17.5785,-25.512428 - parent: 4812 - type: Transform -- proto: chem_master - entities: - - uid: 6606 - components: - - pos: -8.5,-15.5 - parent: 4812 - type: Transform - - uid: 6607 - components: - - pos: -12.5,-17.5 - parent: 4812 - type: Transform -- proto: ChemDispenser - entities: - - uid: 6604 - components: - - pos: -12.5,-18.5 - parent: 4812 - type: Transform - - uid: 6605 - components: - - pos: -8.5,-14.5 - parent: 4812 - type: Transform -- proto: ChemistryEmptyBottle01 - entities: - - uid: 7581 - components: - - pos: -15.593227,-23.348886 - parent: 4812 - type: Transform - - uid: 7584 - components: - - pos: -15.530727,-23.473886 - parent: 4812 - type: Transform -- proto: ChemistryHotplate - entities: - - uid: 12473 - components: - - pos: -10.5,-18.5 - parent: 4812 - type: Transform -- proto: ChessBoard - entities: - - uid: 11880 - components: - - pos: -2.493187,-34.40246 - parent: 4812 - type: Transform -- proto: Cigar - entities: - - uid: 5385 - components: - - pos: 18.601286,-15.579714 - parent: 4812 - type: Transform - - uid: 5386 - components: - - pos: 18.601286,-15.439089 - parent: 4812 - type: Transform -- proto: CigarCase - entities: - - uid: 1758 - components: - - pos: -6.558632,4.639101 - parent: 4812 - type: Transform - - uid: 6413 - components: - - pos: -0.43434072,-15.356113 - parent: 4812 - type: Transform -- proto: Cigarette - entities: - - uid: 12373 - components: - - pos: 4.34406,-34.161045 - parent: 4812 - type: Transform -- proto: CigarGold - entities: - - uid: 2674 - components: - - pos: -2.4733105,29.66387 - parent: 4812 - type: Transform - - uid: 2675 - components: - - pos: -2.4108105,29.491995 - parent: 4812 - type: Transform -- proto: CigarGoldCase - entities: - - uid: 2719 - components: - - pos: -5.477762,22.691704 - parent: 4812 - type: Transform -- proto: CigCartonRed - entities: - - uid: 11843 - components: - - pos: -7.4943094,12.705126 - parent: 4812 - type: Transform -- proto: CircuitImprinter - entities: - - uid: 6184 - components: - - pos: 5.5,-17.5 - parent: 4812 - type: Transform - - materialWhiteList: - - Steel - - Glass - - Gold - type: MaterialStorage - - uid: 6233 - components: - - pos: 13.5,-26.5 - parent: 4812 - type: Transform - - materialWhiteList: - - Steel - - Glass - - Gold - type: MaterialStorage -- proto: CircuitImprinterMachineCircuitboard - entities: - - uid: 3381 - components: - - pos: 21.549475,8.4847765 - parent: 4812 - type: Transform -- proto: CloningPodMachineCircuitboard - entities: - - uid: 3405 - components: - - pos: 23.455725,7.6097765 - parent: 4812 - type: Transform -- proto: ClosetBase - entities: - - uid: 11811 - components: - - pos: -15.5,0.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: - - 11812 - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: ClosetBombFilled - entities: - - uid: 6331 - components: - - pos: 28.5,-22.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: ClosetChefFilled - entities: - - uid: 1568 - components: - - pos: 4.5,0.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 1676 - components: - - pos: 3.5,13.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 1795 - components: - - pos: 0.5,17.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 2677 - components: - - pos: -8.5,33.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 3786 - components: - - pos: 3.5,46.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 4484 - components: - - pos: 20.5,11.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 4522 - components: - - pos: 13.5,4.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 4540 - components: - - pos: 15.5,-5.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 4599 - components: - - pos: 13.5,-6.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 4725 - components: - - pos: -10.5,-55.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 6421 - components: - - pos: 2.5,-31.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 7616 - components: - - pos: -15.5,-13.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 10407 - components: - - pos: -55.5,-23.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 10602 - components: - - pos: -45.5,-16.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 10876 - components: - - pos: -32.5,8.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 11461 - components: - - pos: 36.5,-37.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: ClosetFireFilled - entities: - - uid: 1514 - components: - - pos: 1.5,-10.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 1796 - components: - - pos: 0.5,16.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 3674 - components: - - pos: 3.5,49.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 4483 - components: - - pos: 22.5,1.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 7615 - components: - - pos: -16.5,-13.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 8328 - components: - - pos: -17.5,29.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 9688 - components: - - pos: -38.5,-2.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 9690 - components: - - pos: -38.5,-1.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 12474 - components: - - pos: -10.5,-54.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: ClosetJanitorFilled - entities: - - uid: 1486 - components: - - pos: -23.5,-8.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: ClosetL3JanitorFilled - entities: - - uid: 1479 - components: - - pos: -21.5,-9.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: ClosetL3ScienceFilled - entities: - - uid: 6310 - components: - - pos: 21.5,-26.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 11149 - components: - - pos: 7.5,-43.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: ClosetL3SecurityFilled - entities: - - uid: 8423 - components: - - pos: -33.5,10.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: ClosetL3VirologyFilled - entities: - - uid: 8869 - components: - - pos: -34.5,-34.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: ClosetLegalFilled - entities: - - uid: 8477 - components: - - pos: -16.5,15.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: ClosetMaintenanceFilledRandom - entities: - - uid: 9068 - components: - - pos: -31.5,-35.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 10527 - components: - - pos: -41.5,-31.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 10900 - components: - - pos: -31.5,-12.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 11309 - components: - - pos: 26.5,-36.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 11618 - components: - - pos: 30.5,-36.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 11882 - components: - - pos: 9.5,12.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: ClosetRadiationSuitFilled - entities: - - uid: 6358 - components: - - pos: 27.5,-22.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 9686 - components: - - pos: -40.5,-3.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 9687 - components: - - pos: -40.5,-2.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 10664 - components: - - pos: -47.5,-13.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 11775 - components: - - pos: -34.5,-14.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: ClosetWallAtmospherics - entities: - - uid: 9099 - components: - - pos: -55.5,5.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 12381 - type: ContainerContainer -- proto: ClosetWallEmergencyFilledRandom - entities: - - uid: 12374 - components: - - pos: 22.5,17.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 1.3546504 - - 5.096066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 12375 - components: - - pos: 21.5,-1.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: ClosetWallFireFilledRandom - entities: - - uid: 12376 - components: - - pos: 15.5,-1.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: ClosetWallOrange - entities: - - uid: 12377 - components: - - pos: -25.5,21.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 12378 - components: - - pos: -25.5,18.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 12379 - components: - - pos: -31.5,28.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 12380 - components: - - pos: -27.5,28.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: ClothingBackpackClown - entities: - - uid: 9198 - components: - - pos: -10.304824,1.6229031 - parent: 4812 - type: Transform -- proto: ClothingBackpackDuffelSurgeryFilled - entities: - - uid: 7428 - components: - - pos: -22.535873,-28.341772 - parent: 4812 - type: Transform -- proto: ClothingBeltChampion - entities: - - uid: 2715 - components: - - pos: -5.571512,24.066704 - parent: 4812 - type: Transform -- proto: ClothingBeltMilitaryWebbing - entities: - - uid: 9061 - components: - - pos: -28.553808,-33.515636 - parent: 4812 - type: Transform -- proto: ClothingBeltUtilityFilled - entities: - - uid: 3371 - components: - - pos: 19.574245,21.55511 - parent: 4812 - type: Transform - - uid: 10714 - components: - - pos: -31.802395,-7.4187636 - parent: 4812 - type: Transform - - uid: 12498 - components: - - pos: 5.5994864,-28.47739 - parent: 4812 - type: Transform -- proto: ClothingEyesEyepatch - entities: - - uid: 8481 - components: - - pos: -16.839548,32.557995 - parent: 4812 - type: Transform - - uid: 9657 - components: - - pos: 25.533524,-9.424093 - parent: 4812 - type: Transform -- proto: ClothingEyesGlasses - entities: - - uid: 6205 - components: - - pos: 3.4675388,-14.361706 - parent: 4812 - type: Transform - - uid: 6337 - components: - - pos: 25.449461,-19.268694 - parent: 4812 - type: Transform - - uid: 11851 - components: - - pos: 10.561617,-44.322975 - parent: 4812 - type: Transform - - uid: 12497 - components: - - pos: 9.501655,-16.456053 - parent: 4812 - type: Transform -- proto: ClothingEyesGlassesSunglasses - entities: - - uid: 1655 - components: - - pos: 5.544427,8.548626 - parent: 4812 - type: Transform - - uid: 5383 - components: - - pos: 19.570036,-18.407839 - parent: 4812 - type: Transform -- proto: ClothingEyesHudBeer - entities: - - uid: 10683 - components: - - pos: -9.466419,-48.16831 - parent: 4812 - type: Transform -- proto: ClothingEyesHudDiagnostic - entities: - - uid: 10769 - components: - - pos: -43.49446,-7.521168 - parent: 4812 - type: Transform -- proto: ClothingEyesHudMedical - entities: - - uid: 7586 - components: - - pos: -10.686977,-25.567636 - parent: 4812 - type: Transform - - uid: 7587 - components: - - pos: -10.671352,-25.395761 - parent: 4812 - type: Transform -- proto: ClothingEyesHudSecurity - entities: - - uid: 8443 - components: - - pos: -36.423813,15.378265 - parent: 4812 - type: Transform -- proto: ClothingHandsGlovesColorGray - entities: - - uid: 11853 - components: - - pos: 12.884244,-36.874004 - parent: 4812 - type: Transform -- proto: ClothingHandsGlovesColorOrange - entities: - - uid: 1495 - components: - - pos: -23.466429,-7.3899465 - parent: 4812 - type: Transform -- proto: ClothingHandsGlovesColorYellow - entities: - - uid: 3454 - components: - - pos: 22.493902,3.499278 - parent: 4812 - type: Transform - - uid: 8601 - components: - - pos: -18.453629,9.613115 - parent: 4812 - type: Transform - - uid: 10706 - components: - - pos: -32.450558,-7.5008273 - parent: 4812 - type: Transform -- proto: ClothingHandsGlovesLeather - entities: - - uid: 1461 - components: - - pos: -18.506594,-9.370907 - parent: 4812 - type: Transform -- proto: ClothingHandsGlovesNitrile - entities: - - uid: 8419 - components: - - pos: -19.480015,-25.463383 - parent: 4812 - type: Transform - - uid: 9033 - components: - - pos: -39.79441,-35.343323 - parent: 4812 - type: Transform -- proto: ClothingHandsGlovesRobohands - entities: - - uid: 6349 - components: - - pos: 5.5434675,-25.370066 - parent: 4812 - type: Transform -- proto: ClothingHeadFishCap - entities: - - uid: 9567 - components: - - pos: 13.508905,-4.30057 - parent: 4812 - type: Transform -- proto: ClothingHeadHatAnimalHeadslime - entities: - - uid: 9195 - components: - - pos: -33.510674,-34.64361 - parent: 4812 - type: Transform - - uid: 11099 - components: - - pos: 7.610162,-44.413692 - parent: 4812 - type: Transform -- proto: ClothingHeadHatBeaverHat - entities: - - uid: 6385 - components: - - pos: 13.532155,-11.236504 - parent: 4812 - type: Transform -- proto: ClothingHeadHatCone - entities: - - uid: 11339 - components: - - pos: 8.449844,17.514982 - parent: 4812 - type: Transform -- proto: ClothingHeadHatFedoraBrown - entities: - - uid: 10608 - components: - - pos: -36.481308,-25.464363 - parent: 4812 - type: Transform - - uid: 11809 - components: - - pos: -14.4824505,-0.22820306 - parent: 4812 - type: Transform -- proto: ClothingHeadHatFedoraGrey - entities: - - uid: 1757 - components: - - pos: -6.558632,8.592226 - parent: 4812 - type: Transform -- proto: ClothingHeadHatFez - entities: - - uid: 10914 - components: - - pos: -44.596,-23.407698 - parent: 4812 - type: Transform - - uid: 10915 - components: - - pos: -44.4085,-23.673323 - parent: 4812 - type: Transform -- proto: ClothingHeadHatFlowerCrown - entities: - - uid: 7254 - components: - - pos: -24.594517,-34.532703 - parent: 4812 - type: Transform -- proto: ClothingHeadHatHairflower - entities: - - uid: 2716 - components: - - pos: -5.180887,24.379204 - parent: 4812 - type: Transform - - uid: 12475 - components: - - pos: -24.401733,-34.40146 - parent: 4812 - type: Transform -- proto: ClothingHeadHatHardhatOrange - entities: - - uid: 12119 - components: - - pos: -42.44835,-1.0036435 - parent: 4812 - type: Transform -- proto: ClothingHeadHatHardhatRed - entities: - - uid: 1548 - components: - - pos: 6.5,4.5 - parent: 4812 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: ClothingHeadHatHardhatYellow - entities: - - uid: 12120 - components: - - pos: -41.401306,-7.235723 - parent: 4812 - type: Transform -- proto: ClothingHeadHatPaper - entities: - - uid: 11856 - components: - - pos: -27.456482,29.23433 - parent: 4812 - type: Transform -- proto: ClothingHeadHatPirate - entities: - - uid: 11675 - components: - - pos: -17.677834,32.905758 - parent: 4812 - type: Transform -- proto: ClothingHeadHatPumpkin - entities: - - uid: 11858 - components: - - pos: -18.486109,-5.5083795 - parent: 4812 - type: Transform -- proto: ClothingHeadHatTophat - entities: - - uid: 10924 - components: - - flags: InContainer - type: MetaData - - parent: 10921 - type: Transform - - canCollide: False - type: Physics -- proto: ClothingHeadHatTrucker - entities: - - uid: 1460 - components: - - pos: -18.506594,-5.4646573 - parent: 4812 - type: Transform -- proto: ClothingHeadHatUshanka - entities: - - uid: 11778 - components: - - pos: 30.766603,-32.390636 - parent: 4812 - type: Transform - - uid: 11779 - components: - - pos: 30.360353,-32.65626 - parent: 4812 - type: Transform -- proto: ClothingHeadHatWelding - entities: - - uid: 6238 - components: - - pos: 15.515093,-23.391537 - parent: 4812 - type: Transform - - uid: 8600 - components: - - pos: -20.141129,12.59749 - parent: 4812 - type: Transform -- proto: ClothingHeadHatWeldingMaskFlame - entities: - - uid: 10726 - components: - - pos: -24.496122,-31.384293 - parent: 4812 - type: Transform - - uid: 11469 - components: - - pos: 28.533575,-35.71058 - parent: 4812 - type: Transform -- proto: ClothingHeadHatWeldingMaskFlameBlue - entities: - - uid: 10725 - components: - - pos: -36.26352,8.306009 - parent: 4812 - type: Transform -- proto: ClothingHeadHatWeldingMaskPainted - entities: - - uid: 10727 - components: - - pos: 15.568787,-6.463143 - parent: 4812 - type: Transform -- proto: ClothingHeadHatWitch1 - entities: - - uid: 1753 - components: - - pos: -10.496132,3.670351 - parent: 4812 - type: Transform -- proto: ClothingHeadHelmetSyndicate - entities: - - uid: 11672 - components: - - pos: 28.730742,-41.454163 - parent: 4812 - type: Transform -- proto: ClothingHeadHelmetTemplar - entities: - - uid: 11881 - components: - - pos: -1.477562,-34.543083 - parent: 4812 - type: Transform -- proto: ClothingHeadsetEngineering - entities: - - uid: 10764 - components: - - pos: -43.456604,-7.425037 - parent: 4812 - type: Transform -- proto: ClothingHeadsetMining - entities: - - uid: 8788 - components: - - pos: -35.24849,-39.264732 - parent: 4812 - type: Transform -- proto: ClothingMaskBreath - entities: - - uid: 11789 - components: - - pos: 22.374546,-32.47262 - parent: 4812 - type: Transform -- proto: ClothingMaskBreathMedical - entities: - - uid: 8863 - components: - - pos: 14.451679,-40.556843 - parent: 4812 - type: Transform -- proto: ClothingMaskGas - entities: - - uid: 1547 - components: - - pos: 6.5,4.5 - parent: 4812 - type: Transform - - uid: 4496 - components: - - pos: 19.554443,6.484804 - parent: 4812 - type: Transform - - uid: 4542 - components: - - pos: 21.65161,-6.5808167 - parent: 4812 - type: Transform - - uid: 11790 - components: - - pos: 22.624546,-32.62887 - parent: 4812 - type: Transform -- proto: ClothingMaskGasCentcom - entities: - - uid: 11677 - components: - - pos: 25.527617,-40.28087 - parent: 4812 - type: Transform -- proto: ClothingMaskGasExplorer - entities: - - uid: 11015 - components: - - pos: 35.488716,-30.534061 - parent: 4812 - type: Transform -- proto: ClothingNeckBling - entities: - - uid: 2717 - components: - - pos: -5.415262,24.019829 - parent: 4812 - type: Transform -- proto: ClothingNeckCloakMiner - entities: - - uid: 12429 - components: - - pos: -48.41308,-16.456617 - parent: 4812 - type: Transform -- proto: ClothingNeckCloakTrans - entities: - - uid: 4827 - components: - - pos: 38.546867,-26.403046 - parent: 4812 - type: Transform -- proto: ClothingNeckHeadphones - entities: - - uid: 9196 - components: - - pos: -22.35473,0.53885174 - parent: 4812 - type: Transform - - uid: 11854 - components: - - pos: -0.5106895,-15.532991 - parent: 4812 - type: Transform -- proto: ClothingNeckIntersexPin - entities: - - uid: 12511 - components: - - pos: 19.693497,8.613337 - parent: 4812 - type: Transform -- proto: ClothingNeckMantleHOS - entities: - - uid: 9197 - components: - - pos: -21.425161,22.675072 - parent: 4812 - type: Transform -- proto: ClothingNeckNonBinaryPin - entities: - - uid: 12513 - components: - - pos: 8.410957,-44.59256 - parent: 4812 - type: Transform -- proto: ClothingNeckScarfStripedBlue - entities: - - uid: 8417 - components: - - pos: -14.544858,-25.307133 - parent: 4812 - type: Transform - - uid: 11338 - components: - - pos: -33.593323,-36.57982 - parent: 4812 - type: Transform -- proto: ClothingNeckScarfStripedGreen - entities: - - uid: 7133 - components: - - pos: -30.568611,-23.475061 - parent: 4812 - type: Transform - - uid: 11337 - components: - - pos: -20.480177,5.5451813 - parent: 4812 - type: Transform -- proto: ClothingNeckScarfStripedRed - entities: - - uid: 11335 - components: - - pos: -1.4543457,-27.446754 - parent: 4812 - type: Transform - - uid: 12365 - components: - - pos: -68.52162,-28.692625 - parent: 4812 - type: Transform -- proto: ClothingNeckStethoscope - entities: - - uid: 7580 - components: - - pos: -18.561977,-20.380136 - parent: 4812 - type: Transform -- proto: ClothingNeckTieRed - entities: - - uid: 10922 - components: - - flags: InContainer - type: MetaData - - parent: 10921 - type: Transform - - canCollide: False - type: Physics - - uid: 11808 - components: - - pos: -14.6855755,-0.43132806 - parent: 4812 - type: Transform -- proto: ClothingNeckTransPin - entities: - - uid: 12515 - components: - - pos: -14.357392,4.331708 - parent: 4812 - type: Transform -- proto: ClothingOuterApron - entities: - - uid: 10913 - components: - - pos: -43.53869,-26.441507 - parent: 4812 - type: Transform -- proto: ClothingOuterArmorBasic - entities: - - uid: 9636 - components: - - pos: -33.593445,20.66048 - parent: 4812 - type: Transform - - uid: 9658 - components: - - pos: -33.593445,20.66048 - parent: 4812 - type: Transform - - uid: 9971 - components: - - pos: -33.593445,20.66048 - parent: 4812 - type: Transform -- proto: ClothingOuterArmorBulletproof - entities: - - uid: 9972 - components: - - pos: -35.562195,19.41048 - parent: 4812 - type: Transform - - uid: 9990 - components: - - pos: -35.562195,19.41048 - parent: 4812 - type: Transform - - uid: 9992 - components: - - pos: -35.562195,19.41048 - parent: 4812 - type: Transform -- proto: ClothingOuterArmorReflective - entities: - - uid: 10685 - components: - - pos: -33.364815,20.521324 - parent: 4812 - type: Transform -- proto: ClothingOuterArmorRiot - entities: - - uid: 10958 - components: - - pos: -33.39286,20.650888 - parent: 4812 - type: Transform - - uid: 10976 - components: - - pos: -33.627235,20.729013 - parent: 4812 - type: Transform -- proto: ClothingOuterCoatBomber - entities: - - uid: 10905 - components: - - pos: -30.486824,-12.450464 - parent: 4812 - type: Transform -- proto: ClothingOuterCoatGentle - entities: - - uid: 6193 - components: - - pos: 13.531586,-11.381834 - parent: 4812 - type: Transform -- proto: ClothingOuterCoatInspector - entities: - - uid: 11805 - components: - - pos: -14.486766,-0.42116833 - parent: 4812 - type: Transform -- proto: ClothingOuterCoatJensen - entities: - - uid: 9193 - components: - - pos: -13.455734,5.5269423 - parent: 4812 - type: Transform -- proto: ClothingOuterCoatPirate - entities: - - uid: 8478 - components: - - pos: -17.511423,32.47987 - parent: 4812 - type: Transform -- proto: ClothingOuterGhostSheet - entities: - - uid: 11262 - components: - - pos: 37.373894,-34.471485 - parent: 4812 - type: Transform -- proto: ClothingOuterHardsuitBasic - entities: - - uid: 9625 - components: - - flags: InContainer - type: MetaData - - parent: 2709 - type: Transform - - 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]20%[/color]. - priority: 0 - component: ClothingSpeedModifier - - message: >- - It provides the following protection: - - - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]10%[/color]. - - - [color=yellow]Slash[/color] damage reduced by [color=lightblue]10%[/color]. - - - [color=yellow]Piercing[/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 - type: GroupExamine - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitSalvage - entities: - - uid: 6765 - components: - - flags: InContainer - type: MetaData - - parent: 3441 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitSpatio - entities: - - uid: 12424 - components: - - pos: -52.87503,-18.445377 - parent: 4812 - type: Transform -- proto: ClothingOuterHoodieBlack - entities: - - uid: 11468 - components: - - pos: 37.580452,-32.58558 - parent: 4812 - type: Transform -- proto: ClothingOuterSuitEmergency - entities: - - uid: 11671 - components: - - pos: 28.696922,-41.322342 - parent: 4812 - type: Transform -- proto: ClothingOuterSuitFire - entities: - - uid: 1546 - components: - - pos: 6.5,4.5 - parent: 4812 - type: Transform -- proto: ClothingOuterVestHazard - entities: - - uid: 12117 - components: - - pos: -42.4796,-1.4880185 - parent: 4812 - type: Transform - - uid: 12118 - components: - - pos: -42.370224,-1.6130185 - parent: 4812 - type: Transform -- proto: ClothingShoesBootsJack - entities: - - uid: 9194 - components: - - pos: 15.452381,-15.575151 - parent: 4812 - type: Transform - - uid: 12364 - components: - - pos: 2.5661945,-37.272846 - parent: 4812 - type: Transform -- proto: ClothingShoesBootsMag - entities: - - uid: 1688 - components: - - pos: 5.3844786,14.708496 - parent: 4812 - type: Transform - - uid: 1689 - components: - - pos: 5.5251036,14.520996 - parent: 4812 - type: Transform - - uid: 10772 - components: - - pos: -45.5448,-14.786133 - parent: 4812 - type: Transform - - uid: 10773 - components: - - pos: -30.264002,-9.749746 - parent: 4812 - type: Transform -- proto: ClothingShoesBootsWork - entities: - - uid: 8784 - components: - - desc: These look like workboots but... they feel expensive. - name: Nimbs - type: MetaData - - pos: -34.496048,-16.64644 - parent: 4812 - type: Transform -- proto: ClothingShoesFlippers - entities: - - uid: 11850 - components: - - pos: 4.561617,-41.479225 - parent: 4812 - type: Transform -- proto: ClothingShoesLeather - entities: - - uid: 8864 - components: - - pos: 35.476944,-33.759735 - parent: 4812 - type: Transform - - uid: 12465 - components: - - pos: -36.627586,29.207901 - parent: 4812 - type: Transform -- proto: ClothingShoeSlippersDuck - entities: - - uid: 11810 - components: - - pos: -14.4668255,-1.6813283 - parent: 4812 - type: Transform -- proto: ClothingShoesTourist - entities: - - uid: 1555 - components: - - pos: -9.419544,-48.840183 - parent: 4812 - type: Transform -- proto: ClothingUnderSocksBee - entities: - - uid: 11333 - components: - - pos: 22.487274,-37.39112 - parent: 4812 - type: Transform -- proto: ClothingUnderSocksCoder - entities: - - uid: 11332 - components: - - pos: 14.5012665,-31.61288 - parent: 4812 - type: Transform -- proto: ClothingUniformColorRainbow - entities: - - uid: 1570 - components: - - pos: 14.528925,6.523329 - parent: 4812 - type: Transform -- proto: ClothingUniformJumpskirtDetective - entities: - - uid: 10607 - components: - - pos: -36.403183,-24.261238 - parent: 4812 - type: Transform -- proto: ClothingUniformJumpskirtJanimaid - entities: - - uid: 9040 - components: - - pos: 10.492298,52.554813 - parent: 4812 - type: Transform -- proto: ClothingUniformJumpskirtOperative - entities: - - uid: 9053 - components: - - pos: -28.506933,-33.546886 - parent: 4812 - type: Transform -- proto: ClothingUniformJumpskirtTacticalMaid - entities: - - uid: 8379 - components: - - pos: 12.547598,-44.418983 - parent: 4812 - type: Transform -- proto: ClothingUniformJumpsuitDetective - entities: - - uid: 10606 - components: - - pos: -36.543808,-24.229988 - parent: 4812 - type: Transform -- proto: ClothingUniformJumpsuitHawaiBlack - entities: - - uid: 1564 - components: - - pos: -9.44705,-48.485367 - parent: 4812 - type: Transform -- proto: ClothingUniformJumpsuitNanotrasen - entities: - - uid: 9626 - components: - - flags: InContainer - type: MetaData - - parent: 2709 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitOperative - entities: - - uid: 9060 - components: - - pos: -28.538183,-33.56251 - parent: 4812 - type: Transform -- proto: ClothingUniformJumpsuitPsychologist - entities: - - uid: 10968 - components: - - pos: -36.533836,29.489151 - parent: 4812 - type: Transform -- proto: ClothingUniformJumpsuitSecBlue - entities: - - uid: 10923 - components: - - flags: InContainer - type: MetaData - - parent: 10921 - type: Transform - - canCollide: False - type: Physics -- proto: ClothingUniformOveralls - entities: - - uid: 11855 - components: - - pos: 17.403048,-37.515766 - parent: 4812 - type: Transform -- proto: ComfyChair - entities: - - uid: 940 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,5.5 - parent: 4812 - type: Transform - - uid: 941 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,6.5 - parent: 4812 - type: Transform - - uid: 942 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,7.5 - parent: 4812 - type: Transform - - uid: 1533 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-1.5 - parent: 4812 - type: Transform - - uid: 1750 - components: - - pos: -8.5,7.5 - parent: 4812 - type: Transform - - uid: 1751 - components: - - rot: 3.141592653589793 rad - pos: -8.5,5.5 - parent: 4812 - type: Transform - - uid: 2507 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,24.5 - parent: 4812 - type: Transform - - uid: 2587 - components: - - pos: -12.5,28.5 - parent: 4812 - type: Transform - - uid: 2603 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,23.5 - parent: 4812 - type: Transform - - uid: 2604 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,22.5 - parent: 4812 - type: Transform - - uid: 2605 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,23.5 - parent: 4812 - type: Transform - - uid: 2641 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,28.5 - parent: 4812 - type: Transform - - uid: 2642 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,28.5 - parent: 4812 - type: Transform - - uid: 2646 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,29.5 - parent: 4812 - type: Transform - - uid: 2647 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,29.5 - parent: 4812 - type: Transform - - uid: 2648 - components: - - pos: -2.5,30.5 - parent: 4812 - type: Transform - - uid: 2664 - components: - - rot: 3.141592653589793 rad - pos: -2.5,34.5 - parent: 4812 - type: Transform - - uid: 5366 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-12.5 - parent: 4812 - type: Transform - - uid: 6289 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-19.5 - parent: 4812 - type: Transform - - uid: 6351 - components: - - pos: 9.5,-15.5 - parent: 4812 - type: Transform - - uid: 6352 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-17.5 - parent: 4812 - type: Transform - - uid: 6392 - components: - - pos: -3.5,-15.5 - parent: 4812 - type: Transform - - uid: 6393 - components: - - pos: -1.5,-15.5 - parent: 4812 - type: Transform - - uid: 6394 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-16.5 - parent: 4812 - type: Transform - - uid: 6395 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-16.5 - parent: 4812 - type: Transform - - uid: 6396 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-18.5 - parent: 4812 - type: Transform - - uid: 6397 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-18.5 - parent: 4812 - type: Transform - - uid: 6398 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-19.5 - parent: 4812 - type: Transform - - uid: 6399 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-19.5 - parent: 4812 - type: Transform - - uid: 7044 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-34.5 - parent: 4812 - type: Transform - - uid: 7089 - components: - - pos: -31.5,-22.5 - parent: 4812 - type: Transform - - uid: 8254 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,27.5 - parent: 4812 - type: Transform - - uid: 8260 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,23.5 - parent: 4812 - type: Transform - - uid: 8261 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,23.5 - parent: 4812 - type: Transform - - uid: 8262 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,24.5 - parent: 4812 - type: Transform - - uid: 8393 - components: - - pos: -25.5,31.5 - parent: 4812 - type: Transform - - uid: 9047 - components: - - pos: -27.5,-40.5 - parent: 4812 - type: Transform - - uid: 9057 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-39.5 - parent: 4812 - type: Transform - - uid: 9058 - components: - - pos: -31.5,-37.5 - parent: 4812 - type: Transform - - uid: 9059 - components: - - pos: -30.5,-37.5 - parent: 4812 - type: Transform - - uid: 10854 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,4.5 - parent: 4812 - type: Transform - - uid: 10855 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,3.5 - parent: 4812 - type: Transform - - uid: 11353 - components: - - pos: 37.5,-32.5 - parent: 4812 - type: Transform - - uid: 11464 - components: - - pos: 32.5,-30.5 - parent: 4812 - type: Transform - - uid: 11465 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-31.5 - parent: 4812 - type: Transform - - uid: 11784 - components: - - pos: 26.5,-32.5 - parent: 4812 - type: Transform - - uid: 11804 - components: - - pos: -14.5,0.5 - parent: 4812 - type: Transform -- proto: ComputerAlert - entities: - - uid: 2708 - components: - - pos: -2.5,24.5 - parent: 4812 - type: Transform - - uid: 9574 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,1.5 - parent: 4812 - type: Transform -- proto: ComputerAnalysisConsole - entities: - - uid: 6313 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-26.5 - parent: 4812 - type: Transform - - linkedPorts: - 6319: - - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver - type: DeviceLinkSource -- proto: computerBodyScanner - entities: - - uid: 4921 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-28.5 - parent: 4812 - type: Transform - - uid: 6166 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-28.5 - parent: 4812 - type: Transform - - uid: 6682 - components: - - pos: -21.5,-25.5 - parent: 4812 - type: Transform - - uid: 7445 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-15.5 - parent: 4812 - type: Transform -- proto: ComputerCargoBounty - entities: - - uid: 9587 - components: - - rot: 3.141592653589793 rad - pos: 18.5,17.5 - parent: 4812 - type: Transform -- proto: ComputerCargoOrders - entities: - - uid: 2752 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,17.5 - parent: 4812 - type: Transform - - uid: 3757 - components: - - rot: 3.141592653589793 rad - pos: 16.5,29.5 - parent: 4812 - type: Transform -- proto: ComputerCargoShuttle - entities: - - uid: 2760 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,17.5 - parent: 4812 - type: Transform -- proto: ComputerComms - entities: - - uid: 2601 - components: - - rot: 3.141592653589793 rad - pos: -13.5,22.5 - parent: 4812 - type: Transform - - uid: 2649 - components: - - pos: -2.5,35.5 - parent: 4812 - type: Transform -- proto: ComputerCrewMonitoring - entities: - - uid: 2505 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,25.5 - parent: 4812 - type: Transform - - uid: 2656 - components: - - pos: -4.5,35.5 - parent: 4812 - type: Transform - - uid: 4571 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,2.5 - parent: 4812 - type: Transform - - uid: 6474 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-28.5 - parent: 4812 - type: Transform - - uid: 7447 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-26.5 - parent: 4812 - type: Transform - - uid: 7571 - components: - - pos: -14.5,-20.5 - parent: 4812 - type: Transform - - uid: 8264 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,24.5 - parent: 4812 - type: Transform -- proto: ComputerCriminalRecords - entities: - - uid: 2659 - components: - - pos: 0.5,35.5 - parent: 4812 - type: Transform - - uid: 4570 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,2.5 - parent: 4812 - type: Transform - - uid: 6473 - components: - - pos: -3.5,-26.5 - parent: 4812 - type: Transform - - uid: 8263 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,23.5 - parent: 4812 - type: Transform - - uid: 8331 - components: - - pos: -33.5,16.5 - parent: 4812 - type: Transform - - uid: 8365 - components: - - rot: 3.141592653589793 rad - pos: -25.5,10.5 - parent: 4812 - type: Transform -- proto: ComputerFrame - entities: - - uid: 3951 - components: - - pos: 7.5,47.5 - parent: 4812 - type: Transform - - uid: 6653 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-16.5 - parent: 4812 - type: Transform - - uid: 11147 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-44.5 - parent: 4812 - type: Transform -- proto: ComputerId - entities: - - uid: 2504 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,24.5 - parent: 4812 - type: Transform - - uid: 2602 - components: - - rot: 3.141592653589793 rad - pos: -14.5,22.5 - parent: 4812 - type: Transform - - uid: 2658 - components: - - pos: -0.5,35.5 - parent: 4812 - type: Transform -- proto: ComputerMedicalRecords - entities: - - uid: 2657 - components: - - pos: -5.5,35.5 - parent: 4812 - type: Transform - - uid: 7454 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-27.5 - parent: 4812 - type: Transform -- proto: ComputerPowerMonitoring - entities: - - uid: 2654 - components: - - pos: 3.5,34.5 - parent: 4812 - type: Transform - - uid: 6021 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-31.5 - parent: 4812 - type: Transform - - uid: 8756 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-1.5 - parent: 4812 - type: Transform - - uid: 10697 - components: - - pos: -29.5,-5.5 - parent: 4812 - type: Transform -- proto: ComputerRadar - entities: - - uid: 3225 - components: - - pos: 27.5,15.5 - parent: 4812 - type: Transform -- proto: ComputerResearchAndDevelopment - entities: - - uid: 6185 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-17.5 - parent: 4812 - type: Transform - - uid: 6215 - components: - - pos: 4.5,-25.5 - parent: 4812 - type: Transform - - uid: 6232 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-25.5 - parent: 4812 - type: Transform - - uid: 6287 - components: - - pos: 26.5,-17.5 - parent: 4812 - type: Transform -- proto: ComputerSalvageExpedition - entities: - - uid: 7830 - components: - - rot: 3.141592653589793 rad - pos: 23.5,12.5 - parent: 4812 - type: Transform -- proto: ComputerShuttleCargo - entities: - - uid: 2754 - components: - - pos: 17.5,27.5 - parent: 4812 - type: Transform - - uid: 3758 - components: - - rot: 3.141592653589793 rad - pos: 17.5,29.5 - parent: 4812 - type: Transform -- proto: ComputerShuttleSalvage - entities: - - uid: 7463 - components: - - pos: 26.5,15.5 - parent: 4812 - type: Transform -- proto: ComputerSolarControl - entities: - - uid: 2655 - components: - - pos: 2.5,34.5 - parent: 4812 - type: Transform - - uid: 10322 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-25.5 - parent: 4812 - type: Transform -- proto: ComputerStationRecords - entities: - - uid: 1077 - components: - - rot: 3.141592653589793 rad - pos: -35.5,10.5 - parent: 4812 - type: Transform - - uid: 4799 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-12.5 - parent: 4812 - type: Transform - - uid: 7199 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-28.5 - parent: 4812 - type: Transform -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 2662 - components: - - pos: -7.5,34.5 - parent: 4812 - type: Transform - - uid: 4955 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-26.5 - parent: 4812 - type: Transform - - uid: 8332 - components: - - rot: 3.141592653589793 rad - pos: -33.5,14.5 - parent: 4812 - type: Transform -- proto: ComputerTechnologyDiskTerminal - entities: - - uid: 12323 - components: - - pos: 5.5,-14.5 - parent: 4812 - type: Transform -- proto: ComputerTelevision - entities: - - uid: 5370 - components: - - pos: 18.5,-14.5 - parent: 4812 - type: Transform -- proto: ConveyorBelt - entities: - - uid: 2765 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,28.5 - parent: 4812 - type: Transform - - links: - - 3188 - type: DeviceLinkSink - - uid: 2771 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,28.5 - parent: 4812 - type: Transform - - links: - - 3188 - type: DeviceLinkSink - - uid: 2863 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,28.5 - parent: 4812 - type: Transform - - links: - - 3188 - type: DeviceLinkSink - - uid: 3013 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,24.5 - parent: 4812 - type: Transform - - links: - - 3034 - type: DeviceLinkSink - - uid: 3014 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,24.5 - parent: 4812 - type: Transform - - links: - - 3034 - type: DeviceLinkSink - - uid: 3028 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,24.5 - parent: 4812 - type: Transform - - links: - - 3034 - type: DeviceLinkSink - - uid: 3029 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,24.5 - parent: 4812 - type: Transform - - links: - - 3034 - type: DeviceLinkSink - - uid: 3033 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,24.5 - parent: 4812 - type: Transform - - links: - - 3034 - type: DeviceLinkSink - - uid: 3043 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,28.5 - parent: 4812 - type: Transform - - links: - - 3188 - type: DeviceLinkSink - - uid: 3046 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,28.5 - parent: 4812 - type: Transform - - links: - - 3188 - type: DeviceLinkSink - - uid: 11235 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-38.5 - parent: 4812 - type: Transform - - links: - - 11245 - type: DeviceLinkSink -- proto: CornSeeds - entities: - - uid: 9618 - components: - - pos: -42.51349,-28.44041 - parent: 4812 - type: Transform -- proto: CrateArtifactContainer - entities: - - uid: 7366 - components: - - pos: 19.5,-26.5 - parent: 4812 - type: Transform -- proto: CrateCoffin - entities: - - uid: 9993 - components: - - pos: -23.5,-35.5 - parent: 4812 - type: Transform -- proto: CrateEmergencyInternals - entities: - - uid: 8580 - components: - - pos: -16.5,9.5 - parent: 4812 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: CrateEmptySpawner - entities: - - uid: 3448 - components: - - pos: 14.5,23.5 - parent: 4812 - type: Transform - - uid: 4606 - components: - - pos: 18.5,11.5 - parent: 4812 - type: Transform -- proto: CrateEngineeringAMEJar - entities: - - uid: 10776 - components: - - pos: -38.5,-10.5 - parent: 4812 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: CrateEngineeringAMEShielding - entities: - - uid: 10777 - components: - - pos: -38.5,-11.5 - parent: 4812 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 10779 - components: - - pos: -38.5,-12.5 - parent: 4812 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: CrateEngineeringCableBulk - entities: - - uid: 4489 - components: - - pos: 19.5,2.5 - parent: 4812 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 10705 - components: - - pos: -29.5,-9.5 - parent: 4812 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 10723 - components: - - pos: -39.5,8.5 - parent: 4812 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: CrateEngineeringCableHV - entities: - - uid: 10925 - components: - - pos: -50.5,-24.5 - parent: 4812 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: CrateFilledSpawner - entities: - - uid: 3713 - components: - - pos: 14.5,27.5 - parent: 4812 - type: Transform - - uid: 3714 - components: - - pos: 14.5,26.5 - parent: 4812 - type: Transform - - uid: 3715 - components: - - pos: 14.5,25.5 - parent: 4812 - type: Transform -- proto: CrateFreezer - entities: - - uid: 1728 - components: - - pos: 7.5,-7.5 - parent: 4812 - type: Transform - - uid: 4925 - components: - - pos: -19.5,-28.5 - parent: 4812 - type: Transform -- proto: CrateMedicalSurgery - entities: - - uid: 4926 - components: - - pos: -17.5,-28.5 - parent: 4812 - type: Transform -- proto: CrateNPCHamlet - entities: - - uid: 12427 - components: - - pos: -1.5,34.5 - parent: 4812 - type: Transform -- proto: CrateSalvageEquipment - entities: - - uid: 3262 - components: - - pos: 27.5,13.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- proto: CrateScience - entities: - - uid: 12463 - components: - - pos: -35.5,25.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrateScienceSecure - entities: - - uid: 6250 - components: - - pos: 12.5,-23.5 - parent: 4812 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 6251 - components: - - pos: 14.5,-23.5 - parent: 4812 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: CrateTrashCart - entities: - - uid: 6170 - components: - - pos: 7.5,2.5 - parent: 4812 - type: Transform - - uid: 6171 - components: - - pos: 14.5,-15.5 - parent: 4812 - type: Transform - - uid: 6172 - components: - - pos: -34.5,-12.5 - parent: 4812 - type: Transform - - uid: 6173 - components: - - pos: -30.5,8.5 - parent: 4812 - type: Transform - - uid: 6174 - components: - - pos: 19.5,4.5 - parent: 4812 - type: Transform -- proto: CrateTrashCartJani - entities: - - uid: 6169 - components: - - pos: -22.5,-3.5 - parent: 4812 - type: Transform -- proto: CrayonBox - entities: - - uid: 1718 - components: - - pos: -10.378301,0.0073432922 - parent: 4812 - type: Transform - - uid: 8405 - components: - - pos: -28.516111,30.589315 - parent: 4812 - type: Transform -- proto: CrayonRainbow - entities: - - uid: 9589 - components: - - flags: InContainer - type: MetaData - - parent: 2709 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: Crematorium - entities: - - uid: 7228 - components: - - pos: -22.5,-32.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrewMonitoringServer - entities: - - uid: 4984 - components: - - pos: -3.5,26.5 - parent: 4812 - type: Transform -- proto: Crowbar - entities: - - uid: 3469 - components: - - pos: 22.493902,3.436778 - parent: 4812 - type: Transform -- proto: CrowbarRed - entities: - - uid: 4573 - components: - - pos: 27.5,4.5 - parent: 4812 - type: Transform - - uid: 6350 - components: - - pos: 5.526539,-28.44819 - parent: 4812 - type: Transform - - uid: 6480 - components: - - pos: -2.4305947,-24.470394 - parent: 4812 - type: Transform - - uid: 8588 - components: - - pos: -18.483784,12.505529 - parent: 4812 - type: Transform - - uid: 11330 - components: - - pos: 26.509838,-35.582523 - parent: 4812 - type: Transform -- proto: CryoPod - entities: - - uid: 1937 - components: - - pos: -15.5,-25.5 - parent: 4812 - type: Transform - - uid: 7219 - components: - - pos: -13.5,-25.5 - parent: 4812 - type: Transform -- proto: CryoxadoneBeakerSmall - entities: - - uid: 3269 - components: - - pos: -14.53001,-25.469097 - parent: 4812 - type: Transform - - uid: 7151 - components: - - pos: -14.264385,-25.312847 - parent: 4812 - type: Transform -- proto: CultAltarSpawner - entities: - - uid: 10980 - components: - - pos: -36.5,30.5 - parent: 4812 - type: Transform -- proto: DawInstrumentMachineCircuitboard - entities: - - uid: 1723 - components: - - pos: -9.581426,-1.3989067 - parent: 4812 - type: Transform -- proto: DefibrillatorCabinetFilled - entities: - - uid: 4815 - components: - - pos: -5.5,12.5 - parent: 4812 - type: Transform - - uid: 4996 - components: - - pos: -17.5,-19.5 - parent: 4812 - type: Transform - - uid: 8376 - components: - - pos: -24.5,-21.5 - parent: 4812 - type: Transform - - uid: 8378 - components: - - pos: -22.5,-24.5 - parent: 4812 - type: Transform - - uid: 8414 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-25.5 - parent: 4812 - type: Transform -- proto: DeskBell - entities: - - uid: 4800 - components: - - pos: 1.5,-2.5 - parent: 4812 - type: Transform - - canCollide: False - bodyType: Static - type: Physics - - uid: 4801 - components: - - pos: -6.5,-5.5 - parent: 4812 - type: Transform - - canCollide: False - bodyType: Static - type: Physics - - uid: 4802 - components: - - pos: 2.5,-15.5 - parent: 4812 - type: Transform - - canCollide: False - bodyType: Static - type: Physics - - uid: 4803 - components: - - pos: 15.5,16.5 - parent: 4812 - type: Transform - - canCollide: False - bodyType: Static - type: Physics - - uid: 4804 - components: - - pos: 10.5,22.5 - parent: 4812 - type: Transform - - canCollide: False - bodyType: Static - type: Physics - - uid: 4805 - components: - - pos: -24.5,11.5 - parent: 4812 - type: Transform - - canCollide: False - bodyType: Static - type: Physics -- proto: DiceBag - entities: - - uid: 4561 - components: - - pos: 27.529026,-5.5177865 - parent: 4812 - type: Transform - - uid: 7137 - components: - - pos: -27.959236,-14.350061 - parent: 4812 - type: Transform -- proto: DiseaseDiagnoser - entities: - - uid: 9018 - components: - - pos: -38.5,-35.5 - parent: 4812 - type: Transform -- proto: DisposalBend - entities: - - uid: 1105 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-6.5 - parent: 4812 - type: Transform - - uid: 1119 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-6.5 - parent: 4812 - type: Transform - - uid: 1120 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-3.5 - parent: 4812 - type: Transform - - uid: 1575 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,0.5 - parent: 4812 - type: Transform - - uid: 1576 - components: - - pos: 3.5,2.5 - parent: 4812 - type: Transform - - uid: 1602 - components: - - pos: -2.5,11.5 - parent: 4812 - type: Transform - - uid: 1607 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-9.5 - parent: 4812 - type: Transform - - uid: 1636 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-6.5 - parent: 4812 - type: Transform - - uid: 1705 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 4812 - type: Transform - - uid: 3292 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,19.5 - parent: 4812 - type: Transform - - uid: 3343 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-11.5 - parent: 4812 - type: Transform - - uid: 3387 - components: - - rot: 3.141592653589793 rad - pos: -38.5,-8.5 - parent: 4812 - type: Transform - - uid: 3409 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-8.5 - parent: 4812 - type: Transform - - uid: 4505 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,19.5 - parent: 4812 - type: Transform - - uid: 5862 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-24.5 - parent: 4812 - type: Transform - - uid: 5883 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-24.5 - parent: 4812 - type: Transform - - uid: 5887 - components: - - pos: 8.5,-20.5 - parent: 4812 - type: Transform - - uid: 5896 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-14.5 - parent: 4812 - type: Transform - - uid: 6432 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-35.5 - parent: 4812 - type: Transform - - uid: 7590 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-16.5 - parent: 4812 - type: Transform - - uid: 7591 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-21.5 - parent: 4812 - type: Transform - - uid: 9012 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-37.5 - parent: 4812 - type: Transform - - uid: 10781 - components: - - pos: -33.5,1.5 - parent: 4812 - type: Transform - - uid: 10804 - components: - - rot: 3.141592653589793 rad - pos: -25.5,-11.5 - parent: 4812 - type: Transform - - uid: 10811 - components: - - rot: 3.141592653589793 rad - pos: -28.5,14.5 - parent: 4812 - type: Transform - - uid: 10816 - components: - - pos: -23.5,14.5 - parent: 4812 - type: Transform - - uid: 10817 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,7.5 - parent: 4812 - type: Transform - - uid: 10818 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,7.5 - parent: 4812 - type: Transform - - uid: 10843 - components: - - pos: -20.5,1.5 - parent: 4812 - type: Transform - - uid: 11224 - components: - - pos: 9.5,-30.5 - parent: 4812 - type: Transform -- proto: DisposalJunction - entities: - - uid: 1700 - components: - - pos: -2.5,-0.5 - parent: 4812 - type: Transform - - uid: 3211 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,19.5 - parent: 4812 - type: Transform - - uid: 3299 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-11.5 - parent: 4812 - type: Transform - - uid: 5849 - components: - - pos: 0.5,-21.5 - parent: 4812 - type: Transform - - uid: 5891 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-20.5 - parent: 4812 - type: Transform - - uid: 10795 - components: - - pos: -25.5,-2.5 - parent: 4812 - type: Transform -- proto: DisposalJunctionFlipped - entities: - - uid: 1585 - components: - - pos: -2.5,-5.5 - parent: 4812 - type: Transform - - uid: 1586 - components: - - pos: -2.5,2.5 - parent: 4812 - type: Transform - - uid: 1614 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-11.5 - parent: 4812 - type: Transform - - uid: 1615 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-11.5 - parent: 4812 - type: Transform - - uid: 1634 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-11.5 - parent: 4812 - type: Transform - - uid: 3982 - components: - - pos: 11.5,-1.5 - parent: 4812 - type: Transform - - uid: 5848 - components: - - pos: 0.5,-20.5 - parent: 4812 - type: Transform - - uid: 10831 - components: - - pos: -25.5,1.5 - parent: 4812 - type: Transform -- proto: DisposalPipe - entities: - - uid: 1106 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-6.5 - parent: 4812 - type: Transform - - uid: 1107 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-6.5 - parent: 4812 - type: Transform - - uid: 1108 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-6.5 - parent: 4812 - type: Transform - - uid: 1109 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-6.5 - parent: 4812 - type: Transform - - uid: 1110 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-6.5 - parent: 4812 - type: Transform - - uid: 1111 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-6.5 - parent: 4812 - type: Transform - - uid: 1112 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-6.5 - parent: 4812 - type: Transform - - uid: 1113 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-6.5 - parent: 4812 - type: Transform - - uid: 1114 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-6.5 - parent: 4812 - type: Transform - - uid: 1115 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-6.5 - parent: 4812 - type: Transform - - uid: 1116 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-6.5 - parent: 4812 - type: Transform - - uid: 1117 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-6.5 - parent: 4812 - type: Transform - - uid: 1118 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-6.5 - parent: 4812 - type: Transform - - uid: 1122 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-5.5 - parent: 4812 - type: Transform - - uid: 1123 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-4.5 - parent: 4812 - type: Transform - - uid: 1577 - components: - - pos: 3.5,1.5 - parent: 4812 - type: Transform - - uid: 1578 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,2.5 - parent: 4812 - type: Transform - - uid: 1579 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,2.5 - parent: 4812 - type: Transform - - uid: 1580 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,2.5 - parent: 4812 - type: Transform - - uid: 1581 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,2.5 - parent: 4812 - type: Transform - - uid: 1582 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,2.5 - parent: 4812 - type: Transform - - uid: 1583 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-5.5 - parent: 4812 - type: Transform - - uid: 1584 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-5.5 - parent: 4812 - type: Transform - - uid: 1587 - components: - - pos: -2.5,-4.5 - parent: 4812 - type: Transform - - uid: 1588 - components: - - pos: -2.5,-3.5 - parent: 4812 - type: Transform - - uid: 1589 - components: - - pos: -2.5,-2.5 - parent: 4812 - type: Transform - - uid: 1590 - components: - - pos: -2.5,-1.5 - parent: 4812 - type: Transform - - uid: 1592 - components: - - pos: -2.5,0.5 - parent: 4812 - type: Transform - - uid: 1593 - components: - - pos: -2.5,1.5 - parent: 4812 - type: Transform - - uid: 1594 - components: - - pos: -2.5,3.5 - parent: 4812 - type: Transform - - uid: 1595 - components: - - pos: -2.5,4.5 - parent: 4812 - type: Transform - - uid: 1596 - components: - - pos: -2.5,5.5 - parent: 4812 - type: Transform - - uid: 1597 - components: - - pos: -2.5,6.5 - parent: 4812 - type: Transform - - uid: 1598 - components: - - pos: -2.5,7.5 - parent: 4812 - type: Transform - - uid: 1599 - components: - - pos: -2.5,8.5 - parent: 4812 - type: Transform - - uid: 1600 - components: - - pos: -2.5,9.5 - parent: 4812 - type: Transform - - uid: 1601 - components: - - pos: -2.5,10.5 - parent: 4812 - type: Transform - - uid: 1603 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,11.5 - parent: 4812 - type: Transform - - uid: 1604 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,11.5 - parent: 4812 - type: Transform - - uid: 1608 - components: - - pos: -10.5,-10.5 - parent: 4812 - type: Transform - - uid: 1609 - components: - - pos: -2.5,-6.5 - parent: 4812 - type: Transform - - uid: 1610 - components: - - pos: -2.5,-7.5 - parent: 4812 - type: Transform - - uid: 1611 - components: - - pos: -2.5,-8.5 - parent: 4812 - type: Transform - - uid: 1612 - components: - - pos: -2.5,-9.5 - parent: 4812 - type: Transform - - uid: 1613 - components: - - pos: -2.5,-10.5 - parent: 4812 - type: Transform - - uid: 1616 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-11.5 - parent: 4812 - type: Transform - - uid: 1617 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-11.5 - parent: 4812 - type: Transform - - uid: 1618 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-11.5 - parent: 4812 - type: Transform - - uid: 1619 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-11.5 - parent: 4812 - type: Transform - - uid: 1620 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-11.5 - parent: 4812 - type: Transform - - uid: 1621 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-11.5 - parent: 4812 - type: Transform - - uid: 1622 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-11.5 - parent: 4812 - type: Transform - - uid: 1623 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-11.5 - parent: 4812 - type: Transform - - uid: 1624 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-11.5 - parent: 4812 - type: Transform - - uid: 1625 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-11.5 - parent: 4812 - type: Transform - - uid: 1627 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-11.5 - parent: 4812 - type: Transform - - uid: 1628 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-11.5 - parent: 4812 - type: Transform - - uid: 1629 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-11.5 - parent: 4812 - type: Transform - - uid: 1630 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-11.5 - parent: 4812 - type: Transform - - uid: 1631 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-11.5 - parent: 4812 - type: Transform - - uid: 1632 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-11.5 - parent: 4812 - type: Transform - - uid: 1633 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-11.5 - parent: 4812 - type: Transform - - uid: 1637 - components: - - pos: -22.5,-10.5 - parent: 4812 - type: Transform - - uid: 1638 - components: - - pos: -22.5,-9.5 - parent: 4812 - type: Transform - - uid: 1639 - components: - - pos: -22.5,-8.5 - parent: 4812 - type: Transform - - uid: 1640 - components: - - pos: -22.5,-7.5 - parent: 4812 - type: Transform - - uid: 1641 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-6.5 - parent: 4812 - type: Transform - - uid: 1701 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-0.5 - parent: 4812 - type: Transform - - uid: 1702 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 4812 - type: Transform - - uid: 1703 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-0.5 - parent: 4812 - type: Transform - - uid: 1704 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-0.5 - parent: 4812 - type: Transform - - uid: 2941 - components: - - rot: 3.141592653589793 rad - pos: 15.5,27.5 - parent: 4812 - type: Transform - - uid: 3007 - components: - - rot: 3.141592653589793 rad - pos: 15.5,28.5 - parent: 4812 - type: Transform - - uid: 3030 - components: - - rot: 3.141592653589793 rad - pos: 15.5,24.5 - parent: 4812 - type: Transform - - uid: 3145 - components: - - rot: 3.141592653589793 rad - pos: 15.5,26.5 - parent: 4812 - type: Transform - - uid: 3194 - components: - - rot: 3.141592653589793 rad - pos: 15.5,25.5 - parent: 4812 - type: Transform - - uid: 3207 - components: - - rot: 3.141592653589793 rad - pos: 15.5,23.5 - parent: 4812 - type: Transform - - uid: 3208 - components: - - rot: 3.141592653589793 rad - pos: 15.5,20.5 - parent: 4812 - type: Transform - - uid: 3209 - components: - - rot: 3.141592653589793 rad - pos: 15.5,21.5 - parent: 4812 - type: Transform - - uid: 3210 - components: - - rot: 3.141592653589793 rad - pos: 15.5,22.5 - parent: 4812 - type: Transform - - uid: 3223 - components: - - pos: -33.5,-6.5 - parent: 4812 - type: Transform - - uid: 3227 - components: - - pos: -33.5,-4.5 - parent: 4812 - type: Transform - - uid: 3293 - components: - - rot: 3.141592653589793 rad - pos: 17.5,20.5 - parent: 4812 - type: Transform - - uid: 3294 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,19.5 - parent: 4812 - type: Transform - - uid: 3296 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,19.5 - parent: 4812 - type: Transform - - uid: 3297 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,19.5 - parent: 4812 - type: Transform - - uid: 3298 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,19.5 - parent: 4812 - type: Transform - - uid: 3300 - components: - - pos: 11.5,18.5 - parent: 4812 - type: Transform - - uid: 3301 - components: - - pos: 11.5,17.5 - parent: 4812 - type: Transform - - uid: 3302 - components: - - pos: 11.5,16.5 - parent: 4812 - type: Transform - - uid: 3303 - components: - - pos: 11.5,15.5 - parent: 4812 - type: Transform - - uid: 3304 - components: - - pos: 11.5,14.5 - parent: 4812 - type: Transform - - uid: 3305 - components: - - pos: 11.5,13.5 - parent: 4812 - type: Transform - - uid: 3306 - components: - - pos: 11.5,12.5 - parent: 4812 - type: Transform - - uid: 3307 - components: - - pos: 11.5,11.5 - parent: 4812 - type: Transform - - uid: 3308 - components: - - pos: 11.5,10.5 - parent: 4812 - type: Transform - - uid: 3309 - components: - - pos: 11.5,9.5 - parent: 4812 - type: Transform - - uid: 3310 - components: - - pos: 11.5,8.5 - parent: 4812 - type: Transform - - uid: 3311 - components: - - pos: 11.5,7.5 - parent: 4812 - type: Transform - - uid: 3312 - components: - - pos: 11.5,6.5 - parent: 4812 - type: Transform - - uid: 3313 - components: - - pos: 11.5,5.5 - parent: 4812 - type: Transform - - uid: 3314 - components: - - pos: 11.5,4.5 - parent: 4812 - type: Transform - - uid: 3315 - components: - - pos: 11.5,3.5 - parent: 4812 - type: Transform - - uid: 3316 - components: - - pos: 11.5,2.5 - parent: 4812 - type: Transform - - uid: 3317 - components: - - pos: 11.5,1.5 - parent: 4812 - type: Transform - - uid: 3318 - components: - - pos: 11.5,0.5 - parent: 4812 - type: Transform - - uid: 3319 - components: - - pos: 11.5,-0.5 - parent: 4812 - type: Transform - - uid: 3321 - components: - - pos: 11.5,-2.5 - parent: 4812 - type: Transform - - uid: 3322 - components: - - pos: 11.5,-3.5 - parent: 4812 - type: Transform - - uid: 3323 - components: - - pos: 11.5,-4.5 - parent: 4812 - type: Transform - - uid: 3324 - components: - - pos: 11.5,-5.5 - parent: 4812 - type: Transform - - uid: 3325 - components: - - pos: 11.5,-6.5 - parent: 4812 - type: Transform - - uid: 3326 - components: - - pos: 11.5,-7.5 - parent: 4812 - type: Transform - - uid: 3327 - components: - - pos: 11.5,-8.5 - parent: 4812 - type: Transform - - uid: 3328 - components: - - pos: 11.5,-9.5 - parent: 4812 - type: Transform - - uid: 3329 - components: - - pos: 11.5,-10.5 - parent: 4812 - type: Transform - - uid: 3330 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-11.5 - parent: 4812 - type: Transform - - uid: 3331 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-11.5 - parent: 4812 - type: Transform - - uid: 3332 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-11.5 - parent: 4812 - type: Transform - - uid: 3333 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-11.5 - parent: 4812 - type: Transform - - uid: 3334 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-11.5 - parent: 4812 - type: Transform - - uid: 3335 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-11.5 - parent: 4812 - type: Transform - - uid: 3336 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-11.5 - parent: 4812 - type: Transform - - uid: 3337 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-11.5 - parent: 4812 - type: Transform - - uid: 3338 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-11.5 - parent: 4812 - type: Transform - - uid: 3339 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-11.5 - parent: 4812 - type: Transform - - uid: 3340 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-11.5 - parent: 4812 - type: Transform - - uid: 3341 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-11.5 - parent: 4812 - type: Transform - - uid: 3386 - components: - - pos: -38.5,-7.5 - parent: 4812 - type: Transform - - uid: 3388 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-8.5 - parent: 4812 - type: Transform - - uid: 3389 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-8.5 - parent: 4812 - type: Transform - - uid: 3410 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-8.5 - parent: 4812 - type: Transform - - uid: 3411 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-8.5 - parent: 4812 - type: Transform - - uid: 3419 - components: - - pos: -33.5,-5.5 - parent: 4812 - type: Transform - - uid: 3420 - components: - - pos: -33.5,-3.5 - parent: 4812 - type: Transform - - uid: 3457 - components: - - rot: 3.141592653589793 rad - pos: 15.5,30.5 - parent: 4812 - type: Transform - - uid: 3458 - components: - - rot: 3.141592653589793 rad - pos: 15.5,29.5 - parent: 4812 - type: Transform - - uid: 3466 - components: - - pos: -33.5,-7.5 - parent: 4812 - type: Transform - - uid: 4502 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-1.5 - parent: 4812 - type: Transform - - uid: 4504 - components: - - rot: 3.141592653589793 rad - pos: -5.5,18.5 - parent: 4812 - type: Transform - - uid: 4506 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,19.5 - parent: 4812 - type: Transform - - uid: 4507 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,19.5 - parent: 4812 - type: Transform - - uid: 4508 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,19.5 - parent: 4812 - type: Transform - - uid: 4509 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,19.5 - parent: 4812 - type: Transform - - uid: 4510 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,19.5 - parent: 4812 - type: Transform - - uid: 4511 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,19.5 - parent: 4812 - type: Transform - - uid: 4512 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,19.5 - parent: 4812 - type: Transform - - uid: 4513 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,19.5 - parent: 4812 - type: Transform - - uid: 4514 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,19.5 - parent: 4812 - type: Transform - - uid: 4515 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,19.5 - parent: 4812 - type: Transform - - uid: 4516 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,19.5 - parent: 4812 - type: Transform - - uid: 4517 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,19.5 - parent: 4812 - type: Transform - - uid: 4518 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,19.5 - parent: 4812 - type: Transform - - uid: 4519 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,19.5 - parent: 4812 - type: Transform - - uid: 4520 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,19.5 - parent: 4812 - type: Transform - - uid: 4521 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,19.5 - parent: 4812 - type: Transform - - uid: 5840 - components: - - pos: 0.5,-12.5 - parent: 4812 - type: Transform - - uid: 5841 - components: - - pos: 0.5,-13.5 - parent: 4812 - type: Transform - - uid: 5842 - components: - - pos: 0.5,-14.5 - parent: 4812 - type: Transform - - uid: 5843 - components: - - pos: 0.5,-15.5 - parent: 4812 - type: Transform - - uid: 5844 - components: - - pos: 0.5,-16.5 - parent: 4812 - type: Transform - - uid: 5845 - components: - - pos: 0.5,-17.5 - parent: 4812 - type: Transform - - uid: 5846 - components: - - pos: 0.5,-18.5 - parent: 4812 - type: Transform - - uid: 5847 - components: - - pos: 0.5,-19.5 - parent: 4812 - type: Transform - - uid: 5850 - components: - - pos: 0.5,-22.5 - parent: 4812 - type: Transform - - uid: 5851 - components: - - pos: 0.5,-23.5 - parent: 4812 - type: Transform - - uid: 5852 - components: - - pos: 0.5,-24.5 - parent: 4812 - type: Transform - - uid: 5853 - components: - - pos: 0.5,-25.5 - parent: 4812 - type: Transform - - uid: 5854 - components: - - pos: 0.5,-26.5 - parent: 4812 - type: Transform - - uid: 5855 - components: - - pos: 0.5,-27.5 - parent: 4812 - type: Transform - - uid: 5856 - components: - - pos: 0.5,-28.5 - parent: 4812 - type: Transform - - uid: 5857 - components: - - pos: 0.5,-29.5 - parent: 4812 - type: Transform - - uid: 5861 - components: - - pos: 29.5,-23.5 - parent: 4812 - type: Transform - - uid: 5863 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-24.5 - parent: 4812 - type: Transform - - uid: 5864 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-24.5 - parent: 4812 - type: Transform - - uid: 5865 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-24.5 - parent: 4812 - type: Transform - - uid: 5866 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-24.5 - parent: 4812 - type: Transform - - uid: 5867 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-24.5 - parent: 4812 - type: Transform - - uid: 5868 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-24.5 - parent: 4812 - type: Transform - - uid: 5869 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-24.5 - parent: 4812 - type: Transform - - uid: 5870 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-24.5 - parent: 4812 - type: Transform - - uid: 5871 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-24.5 - parent: 4812 - type: Transform - - uid: 5872 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-24.5 - parent: 4812 - type: Transform - - uid: 5873 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-24.5 - parent: 4812 - type: Transform - - uid: 5874 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-24.5 - parent: 4812 - type: Transform - - uid: 5875 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-24.5 - parent: 4812 - type: Transform - - uid: 5876 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-24.5 - parent: 4812 - type: Transform - - uid: 5877 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-24.5 - parent: 4812 - type: Transform - - uid: 5878 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-24.5 - parent: 4812 - type: Transform - - uid: 5879 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-24.5 - parent: 4812 - type: Transform - - uid: 5880 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-24.5 - parent: 4812 - type: Transform - - uid: 5881 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-24.5 - parent: 4812 - type: Transform - - uid: 5882 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-24.5 - parent: 4812 - type: Transform - - uid: 5884 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-23.5 - parent: 4812 - type: Transform - - uid: 5885 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-22.5 - parent: 4812 - type: Transform - - uid: 5886 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-21.5 - parent: 4812 - type: Transform - - uid: 5888 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-20.5 - parent: 4812 - type: Transform - - uid: 5889 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-20.5 - parent: 4812 - type: Transform - - uid: 5890 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-20.5 - parent: 4812 - type: Transform - - uid: 5892 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-20.5 - parent: 4812 - type: Transform - - uid: 5893 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-20.5 - parent: 4812 - type: Transform - - uid: 5894 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-20.5 - parent: 4812 - type: Transform - - uid: 5897 - components: - - pos: 4.5,-19.5 - parent: 4812 - type: Transform - - uid: 5898 - components: - - pos: 4.5,-18.5 - parent: 4812 - type: Transform - - uid: 5899 - components: - - pos: 4.5,-17.5 - parent: 4812 - type: Transform - - uid: 5900 - components: - - pos: 4.5,-16.5 - parent: 4812 - type: Transform - - uid: 5901 - components: - - pos: 4.5,-15.5 - parent: 4812 - type: Transform - - uid: 5902 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-14.5 - parent: 4812 - type: Transform - - uid: 5903 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-14.5 - parent: 4812 - type: Transform - - uid: 6424 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-30.5 - parent: 4812 - type: Transform - - uid: 6425 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-30.5 - parent: 4812 - type: Transform - - uid: 6426 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-30.5 - parent: 4812 - type: Transform - - uid: 6427 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-30.5 - parent: 4812 - type: Transform - - uid: 6428 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-30.5 - parent: 4812 - type: Transform - - uid: 6429 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-30.5 - parent: 4812 - type: Transform - - uid: 6433 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-35.5 - parent: 4812 - type: Transform - - uid: 6434 - components: - - pos: 0.5,-34.5 - parent: 4812 - type: Transform - - uid: 6435 - components: - - pos: 0.5,-33.5 - parent: 4812 - type: Transform - - uid: 6436 - components: - - pos: 0.5,-32.5 - parent: 4812 - type: Transform - - uid: 6437 - components: - - pos: 0.5,-31.5 - parent: 4812 - type: Transform - - uid: 7592 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-20.5 - parent: 4812 - type: Transform - - uid: 7593 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-19.5 - parent: 4812 - type: Transform - - uid: 7594 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-18.5 - parent: 4812 - type: Transform - - uid: 7595 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-17.5 - parent: 4812 - type: Transform - - uid: 7596 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-21.5 - parent: 4812 - type: Transform - - uid: 7597 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-21.5 - parent: 4812 - type: Transform - - uid: 7598 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-21.5 - parent: 4812 - type: Transform - - uid: 7599 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-21.5 - parent: 4812 - type: Transform - - uid: 7600 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-21.5 - parent: 4812 - type: Transform - - uid: 7601 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-21.5 - parent: 4812 - type: Transform - - uid: 7602 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-21.5 - parent: 4812 - type: Transform - - uid: 7603 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-21.5 - parent: 4812 - type: Transform - - uid: 7604 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-21.5 - parent: 4812 - type: Transform - - uid: 7619 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-12.5 - parent: 4812 - type: Transform - - uid: 9010 - components: - - pos: -37.5,-36.5 - parent: 4812 - type: Transform - - uid: 9011 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-37.5 - parent: 4812 - type: Transform - - uid: 10782 - components: - - pos: -33.5,0.5 - parent: 4812 - type: Transform - - uid: 10783 - components: - - pos: -33.5,-0.5 - parent: 4812 - type: Transform - - uid: 10784 - components: - - pos: -33.5,-1.5 - parent: 4812 - type: Transform - - uid: 10786 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-2.5 - parent: 4812 - type: Transform - - uid: 10787 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-2.5 - parent: 4812 - type: Transform - - uid: 10788 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-2.5 - parent: 4812 - type: Transform - - uid: 10789 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-2.5 - parent: 4812 - type: Transform - - uid: 10790 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-2.5 - parent: 4812 - type: Transform - - uid: 10791 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-2.5 - parent: 4812 - type: Transform - - uid: 10792 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-11.5 - parent: 4812 - type: Transform - - uid: 10793 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-11.5 - parent: 4812 - type: Transform - - uid: 10794 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-2.5 - parent: 4812 - type: Transform - - uid: 10796 - components: - - pos: -25.5,-10.5 - parent: 4812 - type: Transform - - uid: 10797 - components: - - pos: -25.5,-9.5 - parent: 4812 - type: Transform - - uid: 10798 - components: - - pos: -25.5,-8.5 - parent: 4812 - type: Transform - - uid: 10799 - components: - - pos: -25.5,-7.5 - parent: 4812 - type: Transform - - uid: 10800 - components: - - pos: -25.5,-6.5 - parent: 4812 - type: Transform - - uid: 10801 - components: - - pos: -25.5,-5.5 - parent: 4812 - type: Transform - - uid: 10802 - components: - - pos: -25.5,-4.5 - parent: 4812 - type: Transform - - uid: 10803 - components: - - pos: -25.5,-3.5 - parent: 4812 - type: Transform - - uid: 10806 - components: - - pos: -28.5,19.5 - parent: 4812 - type: Transform - - uid: 10807 - components: - - pos: -28.5,18.5 - parent: 4812 - type: Transform - - uid: 10808 - components: - - pos: -28.5,17.5 - parent: 4812 - type: Transform - - uid: 10809 - components: - - pos: -28.5,16.5 - parent: 4812 - type: Transform - - uid: 10810 - components: - - pos: -28.5,15.5 - parent: 4812 - type: Transform - - uid: 10812 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,14.5 - parent: 4812 - type: Transform - - uid: 10813 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,14.5 - parent: 4812 - type: Transform - - uid: 10814 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,14.5 - parent: 4812 - type: Transform - - uid: 10815 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,14.5 - parent: 4812 - type: Transform - - uid: 10819 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,7.5 - parent: 4812 - type: Transform - - uid: 10820 - components: - - pos: -23.5,8.5 - parent: 4812 - type: Transform - - uid: 10821 - components: - - pos: -23.5,9.5 - parent: 4812 - type: Transform - - uid: 10822 - components: - - pos: -23.5,10.5 - parent: 4812 - type: Transform - - uid: 10823 - components: - - pos: -23.5,11.5 - parent: 4812 - type: Transform - - uid: 10824 - components: - - pos: -23.5,12.5 - parent: 4812 - type: Transform - - uid: 10825 - components: - - pos: -23.5,13.5 - parent: 4812 - type: Transform - - uid: 10826 - components: - - pos: -25.5,6.5 - parent: 4812 - type: Transform - - uid: 10827 - components: - - pos: -25.5,5.5 - parent: 4812 - type: Transform - - uid: 10828 - components: - - pos: -25.5,4.5 - parent: 4812 - type: Transform - - uid: 10829 - components: - - pos: -25.5,3.5 - parent: 4812 - type: Transform - - uid: 10830 - components: - - pos: -25.5,2.5 - parent: 4812 - type: Transform - - uid: 10832 - components: - - pos: -25.5,0.5 - parent: 4812 - type: Transform - - uid: 10833 - components: - - pos: -25.5,-0.5 - parent: 4812 - type: Transform - - uid: 10834 - components: - - pos: -25.5,-1.5 - parent: 4812 - type: Transform - - uid: 10837 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,1.5 - parent: 4812 - type: Transform - - uid: 10838 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,1.5 - parent: 4812 - type: Transform - - uid: 10839 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,1.5 - parent: 4812 - type: Transform - - uid: 10840 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,1.5 - parent: 4812 - type: Transform - - uid: 10841 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-0.5 - parent: 4812 - type: Transform - - uid: 10842 - components: - - rot: 3.141592653589793 rad - pos: -20.5,0.5 - parent: 4812 - type: Transform - - uid: 11094 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-42.5 - parent: 4812 - type: Transform - - uid: 11095 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-42.5 - parent: 4812 - type: Transform - - uid: 11096 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-38.5 - parent: 4812 - type: Transform - - uid: 11097 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-34.5 - parent: 4812 - type: Transform - - uid: 11098 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-38.5 - parent: 4812 - type: Transform - - uid: 11225 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-30.5 - parent: 4812 - type: Transform - - uid: 11226 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-30.5 - parent: 4812 - type: Transform - - uid: 11227 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-31.5 - parent: 4812 - type: Transform - - uid: 11228 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-32.5 - parent: 4812 - type: Transform - - uid: 11229 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-33.5 - parent: 4812 - type: Transform - - uid: 11230 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-34.5 - parent: 4812 - type: Transform - - uid: 11231 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-35.5 - parent: 4812 - type: Transform - - uid: 11232 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-36.5 - parent: 4812 - type: Transform - - uid: 11233 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-37.5 - parent: 4812 - type: Transform - - uid: 12401 - components: - - rot: 3.141592653589793 rad - pos: 6.5,33.5 - parent: 4812 - type: Transform - - uid: 12405 - components: - - rot: 3.141592653589793 rad - pos: 6.5,34.5 - parent: 4812 - type: Transform - - uid: 12406 - components: - - rot: 3.141592653589793 rad - pos: 6.5,35.5 - parent: 4812 - type: Transform - - uid: 12407 - components: - - rot: 3.141592653589793 rad - pos: 6.5,36.5 - parent: 4812 - type: Transform - - uid: 12408 - components: - - rot: 3.141592653589793 rad - pos: 6.5,37.5 - parent: 4812 - type: Transform - - uid: 12409 - components: - - rot: 3.141592653589793 rad - pos: 6.5,38.5 - parent: 4812 - type: Transform - - uid: 12410 - components: - - rot: 3.141592653589793 rad - pos: 6.5,39.5 - parent: 4812 - type: Transform - - uid: 12411 - components: - - rot: 3.141592653589793 rad - pos: 6.5,40.5 - parent: 4812 - type: Transform - - uid: 12412 - components: - - rot: 3.141592653589793 rad - pos: 6.5,41.5 - parent: 4812 - type: Transform - - uid: 12413 - components: - - rot: 3.141592653589793 rad - pos: 6.5,42.5 - parent: 4812 - type: Transform - - uid: 12414 - components: - - rot: 3.141592653589793 rad - pos: 6.5,43.5 - parent: 4812 - type: Transform -- proto: DisposalTrunk - entities: - - uid: 1104 - components: - - pos: -9.5,-5.5 - parent: 4812 - type: Transform - - uid: 1121 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-3.5 - parent: 4812 - type: Transform - - uid: 1573 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-5.5 - parent: 4812 - type: Transform - - uid: 1574 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,0.5 - parent: 4812 - type: Transform - - uid: 1591 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-1.5 - parent: 4812 - type: Transform - - uid: 1605 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,11.5 - parent: 4812 - type: Transform - - uid: 1606 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-9.5 - parent: 4812 - type: Transform - - uid: 1635 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-6.5 - parent: 4812 - type: Transform - - uid: 3144 - components: - - pos: 15.5,31.5 - parent: 4812 - type: Transform - - uid: 3291 - components: - - pos: 17.5,21.5 - parent: 4812 - type: Transform - - uid: 3408 - components: - - pos: -38.5,-6.5 - parent: 4812 - type: Transform - - uid: 4501 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-1.5 - parent: 4812 - type: Transform - - uid: 4503 - components: - - rot: 3.141592653589793 rad - pos: -5.5,17.5 - parent: 4812 - type: Transform - - uid: 5860 - components: - - pos: 29.5,-22.5 - parent: 4812 - type: Transform - - uid: 5895 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-14.5 - parent: 4812 - type: Transform - - uid: 6431 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-35.5 - parent: 4812 - type: Transform - - uid: 7589 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-16.5 - parent: 4812 - type: Transform - - uid: 7617 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-13.5 - parent: 4812 - type: Transform - - uid: 9009 - components: - - pos: -37.5,-35.5 - parent: 4812 - type: Transform - - uid: 9013 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-37.5 - parent: 4812 - type: Transform - - uid: 10780 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,1.5 - parent: 4812 - type: Transform - - uid: 10805 - components: - - pos: -28.5,20.5 - parent: 4812 - type: Transform - - uid: 10836 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-1.5 - parent: 4812 - type: Transform - - uid: 11084 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-42.5 - parent: 4812 - type: Transform - - uid: 11085 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-38.5 - parent: 4812 - type: Transform - - uid: 11086 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-34.5 - parent: 4812 - type: Transform - - uid: 11087 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-38.5 - parent: 4812 - type: Transform - - uid: 11088 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-42.5 - parent: 4812 - type: Transform - - uid: 11089 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-42.5 - parent: 4812 - type: Transform - - uid: 11090 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-38.5 - parent: 4812 - type: Transform - - uid: 11091 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-34.5 - parent: 4812 - type: Transform - - uid: 11092 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-38.5 - parent: 4812 - type: Transform - - uid: 11093 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-42.5 - parent: 4812 - type: Transform - - uid: 11234 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-38.5 - parent: 4812 - type: Transform - - uid: 12403 - components: - - pos: 6.5,44.5 - parent: 4812 - type: Transform - - uid: 12404 - components: - - rot: 3.141592653589793 rad - pos: 6.5,32.5 - parent: 4812 - type: Transform -- proto: DisposalUnit - entities: - - uid: 921 - components: - - pos: 0.5,-5.5 - parent: 4812 - type: Transform - - uid: 922 - components: - - pos: -5.5,11.5 - parent: 4812 - type: Transform - - uid: 1083 - components: - - pos: -9.5,-9.5 - parent: 4812 - type: Transform - - uid: 1084 - components: - - desc: Sends stuff to kitchen. - name: kitchen mail tube - type: MetaData - - pos: -9.5,-5.5 - parent: 4812 - type: Transform - - uid: 1483 - components: - - pos: -20.5,-6.5 - parent: 4812 - type: Transform - - uid: 1556 - components: - - pos: 2.5,0.5 - parent: 4812 - type: Transform - - uid: 1699 - components: - - pos: -7.5,-1.5 - parent: 4812 - type: Transform - - uid: 1798 - components: - - pos: -5.5,17.5 - parent: 4812 - type: Transform - - uid: 3187 - components: - - pos: 15.5,31.5 - parent: 4812 - type: Transform - - uid: 3290 - components: - - pos: 17.5,21.5 - parent: 4812 - type: Transform - - uid: 3445 - components: - - pos: -38.5,-6.5 - parent: 4812 - type: Transform - - uid: 4500 - components: - - pos: 13.5,-1.5 - parent: 4812 - type: Transform - - uid: 5858 - components: - - pos: 7.5,-14.5 - parent: 4812 - type: Transform - - uid: 5859 - components: - - pos: 29.5,-22.5 - parent: 4812 - type: Transform - - uid: 6430 - components: - - pos: 2.5,-35.5 - parent: 4812 - type: Transform - - uid: 6615 - components: - - pos: -8.5,-16.5 - parent: 4812 - type: Transform - - uid: 7556 - components: - - pos: -12.5,-20.5 - parent: 4812 - type: Transform - - uid: 7618 - components: - - pos: -14.5,-13.5 - parent: 4812 - type: Transform - - uid: 8695 - components: - - pos: -28.5,20.5 - parent: 4812 - type: Transform - - uid: 9008 - components: - - pos: -37.5,-35.5 - parent: 4812 - type: Transform - - uid: 9578 - components: - - pos: -34.5,1.5 - parent: 4812 - type: Transform - - uid: 10835 - components: - - pos: -20.5,-1.5 - parent: 4812 - type: Transform - - uid: 11079 - components: - - pos: 7.5,-38.5 - parent: 4812 - type: Transform - - uid: 11080 - components: - - pos: 10.5,-42.5 - parent: 4812 - type: Transform - - uid: 11082 - components: - - pos: 7.5,-42.5 - parent: 4812 - type: Transform - - uid: 11083 - components: - - pos: 7.5,-34.5 - parent: 4812 - type: Transform - - uid: 11925 - components: - - pos: 6.5,32.5 - parent: 4812 - type: Transform - - uid: 12402 - components: - - pos: 6.5,44.5 - parent: 4812 - type: Transform -- proto: DisposalYJunction - entities: - - uid: 3320 - components: - - pos: 11.5,19.5 - parent: 4812 - type: Transform - - uid: 3342 - components: - - pos: 0.5,-11.5 - parent: 4812 - type: Transform - - uid: 3747 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-2.5 - parent: 4812 - type: Transform - - uid: 6423 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-30.5 - parent: 4812 - type: Transform -- proto: DogBed - entities: - - uid: 2511 - components: - - pos: 5.5,26.5 - parent: 4812 - type: Transform - - uid: 2610 - components: - - name: fox bed - type: MetaData - - pos: -15.5,22.5 - parent: 4812 - type: Transform - - uid: 6646 - components: - - pos: -11.5,-14.5 - parent: 4812 - type: Transform - - uid: 7449 - components: - - name: cat bed - type: MetaData - - pos: -26.5,-25.5 - parent: 4812 - type: Transform - - uid: 8339 - components: - - pos: -35.5,17.5 - parent: 4812 - type: Transform -- proto: DonkpocketBoxSpawner - entities: - - uid: 1571 - components: - - pos: 4.5,-1.5 - parent: 4812 - type: Transform - - uid: 6339 - components: - - pos: 9.5,-19.5 - parent: 4812 - type: Transform - - uid: 8429 - components: - - pos: -39.5,11.5 - parent: 4812 - type: Transform -- proto: DoorElectronics - entities: - - uid: 10716 - components: - - pos: -35.5,-7.5 - parent: 4812 - type: Transform - - uid: 10717 - components: - - pos: -35.344994,-7.7000136 - parent: 4812 - type: Transform -- proto: DoubleEmergencyOxygenTankFilled - entities: - - uid: 12116 - components: - - pos: -42.432724,-2.3473935 - parent: 4812 - type: Transform -- proto: Dresser - entities: - - uid: 744 - components: - - pos: -12.5,29.5 - parent: 4812 - type: Transform - - uid: 1254 - components: - - pos: -17.5,5.5 - parent: 4812 - type: Transform - - uid: 1693 - components: - - pos: -7.5,0.5 - parent: 4812 - type: Transform - - uid: 2501 - components: - - pos: 7.5,29.5 - parent: 4812 - type: Transform - - uid: 5363 - components: - - pos: 19.5,-11.5 - parent: 4812 - type: Transform - - uid: 7035 - components: - - pos: -27.5,-37.5 - parent: 4812 - type: Transform - - uid: 8251 - components: - - pos: -23.5,28.5 - parent: 4812 - type: Transform - - uid: 9046 - components: - - pos: -26.5,-40.5 - parent: 4812 - type: Transform -- proto: DrinkBottleOfNothingFull - entities: - - uid: 1717 - components: - - pos: -10.737676,0.038593292 - parent: 4812 - type: Transform -- proto: DrinkBottleVodka - entities: - - uid: 11783 - components: - - rot: 1.5707963267948966 rad - pos: 27.922853,-32.796886 - parent: 4812 - type: Transform -- proto: DrinkCoffee - entities: - - uid: 1777 - components: - - pos: -2.4777098,-4.2682357 - parent: 4812 - type: Transform -- proto: DrinkColaBottleFull - entities: - - uid: 1780 - components: - - pos: -2.3527098,-2.4557357 - parent: 4812 - type: Transform -- proto: DrinkDetFlask - entities: - - uid: 11806 - components: - - pos: -14.221141,-0.49929333 - parent: 4812 - type: Transform - - uid: 11807 - components: - - pos: 18.44514,-15.833292 - parent: 4812 - type: Transform -- proto: DrinkFlask - entities: - - uid: 2590 - components: - - pos: -13.404404,27.48132 - parent: 4812 - type: Transform -- proto: DrinkFlaskOld - entities: - - uid: 2536 - components: - - pos: 5.505315,29.475674 - parent: 4812 - type: Transform -- proto: DrinkGoldenCup - entities: - - uid: 2713 - components: - - pos: -5.608521,24.832329 - parent: 4812 - type: Transform -- proto: DrinkGoldschlagerBottleFull - entities: - - uid: 2714 - components: - - pos: -5.405396,24.535454 - parent: 4812 - type: Transform -- proto: DrinkHotCoffee - entities: - - uid: 6308 - components: - - pos: 25.471973,-18.414967 - parent: 4812 - type: Transform -- proto: DrinkIcedTeaCan - entities: - - uid: 12372 - components: - - pos: 4.93781,-34.192295 - parent: 4812 - type: Transform -- proto: DrinkLemonLimeCan - entities: - - uid: 1768 - components: - - pos: -2.4722648,6.6801405 - parent: 4812 - type: Transform -- proto: DrinkLithiumFlask - entities: - - uid: 3611 - components: - - pos: -18.350801,33.411205 - parent: 4812 - type: Transform - - uid: 12466 - components: - - pos: -18.56759,33.562008 - parent: 4812 - type: Transform -- proto: DrinkMugBlack - entities: - - uid: 10761 - components: - - pos: -42.456604,-7.331287 - parent: 4812 - type: Transform -- proto: DrinkMugDog - entities: - - uid: 1771 - components: - - pos: -2.4722648,3.4643836 - parent: 4812 - type: Transform -- proto: DrinkMugHeart - entities: - - uid: 10763 - components: - - pos: -41.78473,-7.362537 - parent: 4812 - type: Transform -- proto: DrinkMugMetal - entities: - - uid: 3278 - components: - - pos: 22.59246,12.58923 - parent: 4812 - type: Transform - - uid: 8435 - components: - - pos: -38.614426,12.463839 - parent: 4812 - type: Transform - - uid: 10760 - components: - - pos: -42.56598,-7.518787 - parent: 4812 - type: Transform -- proto: DrinkMugOne - entities: - - uid: 10762 - components: - - pos: -42.25348,-7.487537 - parent: 4812 - type: Transform -- proto: DrinkMugRed - entities: - - uid: 8434 - components: - - pos: -38.3488,12.713839 - parent: 4812 - type: Transform -- proto: DrinkShaker - entities: - - uid: 1654 - components: - - pos: 5.357094,8.658001 - parent: 4812 - type: Transform -- proto: DrinkShinyFlask - entities: - - uid: 8436 - components: - - pos: -36.520676,15.807589 - parent: 4812 - type: Transform -- proto: DrinkVodkaBottleFull - entities: - - uid: 11781 - components: - - pos: 28.500978,-32.265636 - parent: 4812 - type: Transform - - uid: 11782 - components: - - pos: 28.688478,-32.453136 - parent: 4812 - type: Transform -- proto: DrinkWhiskeyBottleFull - entities: - - uid: 11845 - components: - - pos: -7.6193094,12.673876 - parent: 4812 - type: Transform -- proto: DrinkWineBottleFull - entities: - - uid: 7041 - components: - - pos: -13.459903,-33.042583 - parent: 4812 - type: Transform -- proto: Dropper - entities: - - uid: 6638 - components: - - pos: -10.530399,-18.232918 - parent: 4812 - type: Transform -- proto: ElectricGuitarInstrument - entities: - - uid: 1720 - components: - - pos: -10.472051,-1.3051567 - parent: 4812 - type: Transform -- proto: EmergencyLight - entities: - - uid: 8416 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-23.5 - parent: 4812 - type: Transform - - uid: 12093 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,2.5 - parent: 4812 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12094 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,33.5 - parent: 4812 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12095 - components: - - pos: 10.5,50.5 - parent: 4812 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12096 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,23.5 - parent: 4812 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12097 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-16.5 - parent: 4812 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12098 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-27.5 - parent: 4812 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12100 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-40.5 - parent: 4812 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12102 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-2.5 - parent: 4812 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12103 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,18.5 - parent: 4812 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12104 - components: - - pos: -30.5,32.5 - parent: 4812 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- proto: EncryptionKeyCargo - entities: - - uid: 4992 - components: - - flags: InContainer - type: MetaData - - parent: 4991 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyCommand - entities: - - uid: 6663 - components: - - flags: InContainer - type: MetaData - - parent: 6662 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyCommon - entities: - - uid: 7268 - components: - - flags: InContainer - type: MetaData - - parent: 7267 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyEngineering - entities: - - uid: 7291 - components: - - flags: InContainer - type: MetaData - - parent: 7290 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyMedicalScience - entities: - - uid: 331 - components: - - flags: InContainer - type: MetaData - - parent: 330 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeySecurity - entities: - - uid: 7248 - components: - - flags: InContainer - type: MetaData - - parent: 7247 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyService - entities: - - uid: 7269 - components: - - flags: InContainer - type: MetaData - - parent: 7267 - type: Transform - - canCollide: False - type: Physics -- proto: ExosuitFabricator - entities: - - uid: 12387 - components: - - pos: 4.5,-28.5 - parent: 4812 - type: Transform -- proto: ExplosivesSignMed - entities: - - uid: 10749 - components: - - pos: -33.5,6.5 - parent: 4812 - type: Transform -- proto: ExtendedEmergencyOxygenTankFilled - entities: - - uid: 11839 - components: - - pos: -6.4474344,14.517626 - parent: 4812 - type: Transform -- proto: ExtinguisherCabinetFilled - entities: - - uid: 1513 - components: - - pos: -6.5,-2.5 - parent: 4812 - type: Transform - - uid: 3270 - components: - - pos: 24.5,17.5 - parent: 4812 - type: Transform - - uid: 4499 - components: - - pos: 10.5,13.5 - parent: 4812 - type: Transform - - uid: 4523 - components: - - pos: 4.5,23.5 - parent: 4812 - type: Transform - - uid: 4524 - components: - - pos: 4.5,30.5 - parent: 4812 - type: Transform - - uid: 4584 - components: - - pos: 20.5,-4.5 - parent: 4812 - type: Transform - - uid: 6485 - components: - - pos: -0.5,-26.5 - parent: 4812 - type: Transform - - uid: 7032 - components: - - pos: -23.5,-32.5 - parent: 4812 - type: Transform - - uid: 7417 - components: - - pos: -7.5,-24.5 - parent: 4812 - type: Transform - - uid: 7418 - components: - - pos: -17.5,-14.5 - parent: 4812 - type: Transform - - uid: 7429 - components: - - pos: -23.5,-27.5 - parent: 4812 - type: Transform - - uid: 8330 - components: - - pos: -21.5,17.5 - parent: 4812 - type: Transform - - uid: 8602 - components: - - pos: -18.5,13.5 - parent: 4812 - type: Transform - - uid: 10710 - components: - - pos: -37.5,-5.5 - parent: 4812 - type: Transform - - uid: 10711 - components: - - pos: -40.5,7.5 - parent: 4812 - type: Transform -- proto: FaxMachineBase - entities: - - uid: 2493 - components: - - pos: 20.5,21.5 - parent: 4812 - type: Transform - - name: Cargo - type: FaxMachine - - uid: 3736 - components: - - pos: -19.5,22.5 - parent: 4812 - type: Transform - - name: HoS Office - type: FaxMachine - - uid: 4856 - components: - - pos: 17.5,31.5 - parent: 4812 - type: Transform - - name: QM's Office - type: FaxMachine - - uid: 4990 - components: - - pos: -6.5,34.5 - parent: 4812 - type: Transform - - name: Bridge - type: FaxMachine - - uid: 7216 - components: - - pos: -1.5,-24.5 - parent: 4812 - type: Transform - - name: Arrivals Secpost - type: FaxMachine - - uid: 7230 - components: - - pos: 6.5,24.5 - parent: 4812 - type: Transform - - name: HoP Office - type: FaxMachine - - uid: 7458 - components: - - pos: -24.5,-25.5 - parent: 4812 - type: Transform - - name: CMO's Office - type: FaxMachine - - uid: 12428 - components: - - pos: -32.5,-15.5 - parent: 4812 - type: Transform - - name: Library - type: FaxMachine -- proto: FaxMachineCaptain - entities: - - uid: 7298 - components: - - pos: -12.5,22.5 - parent: 4812 - type: Transform -- proto: FigureSpawner - entities: - - uid: 7145 - components: - - pos: -27.5,-15.5 - parent: 4812 - type: Transform - - uid: 7146 - components: - - pos: -28.5,-15.5 - parent: 4812 - type: Transform - - uid: 7147 - components: - - pos: -28.5,-14.5 - parent: 4812 - type: Transform - - uid: 7148 - components: - - pos: -27.5,-14.5 - parent: 4812 - type: Transform -- proto: filingCabinet - entities: - - uid: 6441 - components: - - pos: -3.5,-24.5 - parent: 4812 - type: Transform - - uid: 8272 - components: - - pos: -16.5,14.5 - parent: 4812 - type: Transform - - uid: 11840 - components: - - pos: -7.5,14.5 - parent: 4812 - type: Transform -- proto: filingCabinetDrawer - entities: - - uid: 2514 - components: - - pos: 7.5,26.5 - parent: 4812 - type: Transform -- proto: filingCabinetTall - entities: - - uid: 3236 - components: - - pos: 14.5,21.5 - parent: 4812 - type: Transform -- proto: FireAlarm - entities: - - uid: 4961 - components: - - pos: -14.5,-14.5 - parent: 4812 - type: Transform - - devices: - - 5039 - type: DeviceList - - uid: 4979 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-21.5 - parent: 4812 - type: Transform - - devices: - - 6621 - - 5047 - - 6553 - - 8806 - type: DeviceList - - uid: 6781 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-28.5 - parent: 4812 - type: Transform - - uid: 8804 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-29.5 - parent: 4812 - type: Transform - - ShutdownSubscribers: - - 8838 - - 8836 - type: DeviceNetwork - - devices: - - 8805 - - 6621 - - 4920 - - 8838 - - 8836 - type: DeviceList - - uid: 10750 - components: - - pos: -29.5,6.5 - parent: 4812 - type: Transform - - devices: - - 12184 - - 8690 - - 10752 - - 10753 - - 10754 - - 10755 - - 10756 - type: DeviceList - - uid: 12180 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,0.5 - parent: 4812 - type: Transform - - devices: - - 12179 - - 10752 - - 10753 - - 10754 - - 10755 - - 10756 - type: DeviceList - - uid: 12187 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-1.5 - parent: 4812 - type: Transform - - devices: - - 8691 - - 8690 - - 12189 - - 12188 - - 12185 - type: DeviceList - - uid: 12191 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-7.5 - parent: 4812 - type: Transform - - devices: - - 12192 - - 8691 - type: DeviceList - - uid: 12194 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,1.5 - parent: 4812 - type: Transform - - devices: - - 6494 - - 6495 - - 12195 - - 8156 - - 8157 - - 12188 - - 12189 - - 12197 - - 12196 - type: DeviceList - - uid: 12199 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-0.5 - parent: 4812 - type: Transform - - devices: - - 12200 - - 12196 - - 12197 - type: DeviceList - - uid: 12203 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,13.5 - parent: 4812 - type: Transform - - devices: - - 12201 - - 8156 - - 8157 - - 7784 - - 8154 - - 8155 - - 12205 - - 12204 - type: DeviceList - - uid: 12207 - components: - - pos: -19.5,13.5 - parent: 4812 - type: Transform - - devices: - - 12208 - - 12204 - - 12205 - type: DeviceList - - uid: 12210 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,16.5 - parent: 4812 - type: Transform - - devices: - - 12211 - - 12212 - - 7782 - - 7783 - type: DeviceList - - uid: 12217 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,16.5 - parent: 4812 - type: Transform - - devices: - - 12216 - - 12212 - type: DeviceList - - uid: 12221 - components: - - pos: -16.5,21.5 - parent: 4812 - type: Transform - - devices: - - 8155 - - 8154 - - 2693 - - 2695 - - 12222 - type: DeviceList - - uid: 12224 - components: - - pos: -0.5,21.5 - parent: 4812 - type: Transform - - devices: - - 2693 - - 2695 - - 2782 - - 2783 - - 12225 - type: DeviceList - - uid: 12229 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,25.5 - parent: 4812 - type: Transform - - devices: - - 12230 - - 2231 - - 1928 - type: DeviceList - - uid: 12233 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,25.5 - parent: 4812 - type: Transform - - devices: - - 12231 - - 2473 - - 2472 - type: DeviceList - - uid: 12235 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,29.5 - parent: 4812 - type: Transform - - devices: - - 12237 - - 2473 - - 2472 - - 2231 - - 1928 - type: DeviceList - - uid: 12236 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,29.5 - parent: 4812 - type: Transform - - devices: - - 12237 - - 2473 - - 2472 - - 2231 - - 1928 - type: DeviceList - - uid: 12238 - components: - - pos: 7.5,23.5 - parent: 4812 - type: Transform - - devices: - - 1927 - - 2476 - - 963 - - 12239 - type: DeviceList - - uid: 12241 - components: - - pos: 10.5,27.5 - parent: 4812 - type: Transform - - devices: - - 12242 - - 1927 - type: DeviceList - - uid: 12244 - components: - - pos: 10.5,21.5 - parent: 4812 - type: Transform - - devices: - - 12243 - - 2787 - - 2786 - - 2476 - - 963 - - 2783 - - 2782 - type: DeviceList - - uid: 12246 - components: - - pos: 17.5,16.5 - parent: 4812 - type: Transform - - devices: - - 2922 - - 2852 - - 2853 - - 12247 - - 3257 - type: DeviceList - - uid: 12250 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,5.5 - parent: 4812 - type: Transform - - devices: - - 4122 - - 4117 - - 12251 - - 2852 - - 2853 - - 2787 - - 2786 - type: DeviceList - - uid: 12253 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,18.5 - parent: 4812 - type: Transform - - devices: - - 3257 - - 12254 - type: DeviceList - - uid: 12273 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-5.5 - parent: 4812 - type: Transform - - devices: - - 4426 - - 4423 - - 12274 - - 4122 - - 4117 - type: DeviceList - - uid: 12276 - components: - - pos: 20.5,-1.5 - parent: 4812 - type: Transform - - devices: - - 12277 - - 4424 - - 4425 - type: DeviceList - - uid: 12280 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-0.5 - parent: 4812 - type: Transform - - devices: - - 12279 - - 4425 - - 4424 - type: DeviceList - - uid: 12286 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-13.5 - parent: 4812 - type: Transform - - devices: - - 12287 - - 4423 - - 4426 - - 6415 - - 6414 - type: DeviceList - - uid: 12290 - components: - - pos: 3.5,-10.5 - parent: 4812 - type: Transform - - devices: - - 4645 - - 4644 - - 6500 - - 6499 - - 4646 - - 4647 - - 5792 - - 6414 - - 6415 - - 12288 - type: DeviceList - - uid: 12291 - components: - - pos: -27.5,-10.5 - parent: 4812 - type: Transform - - devices: - - 6497 - - 6496 - - 12292 - - 6494 - - 6495 - type: DeviceList - - uid: 12294 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-13.5 - parent: 4812 - type: Transform - - devices: - - 6497 - - 6496 - - 6500 - - 6499 - - 12295 - type: DeviceList - - uid: 12301 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-1.5 - parent: 4812 - type: Transform - - devices: - - 931 - - 932 - - 12300 - - 782 - - 783 - - 784 - - 349 - - 351 - - 361 - - 354 - - 353 - - 352 - - 350 - type: DeviceList - - uid: 12305 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,8.5 - parent: 4812 - type: Transform - - devices: - - 349 - - 351 - - 361 - - 354 - - 353 - - 352 - - 350 - - 12306 - type: DeviceList - - uid: 12310 - components: - - pos: 6.5,1.5 - parent: 4812 - type: Transform - - devices: - - 12309 - - 782 - - 783 - - 784 - type: DeviceList - - uid: 12312 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,13.5 - parent: 4812 - type: Transform - - devices: - - 12313 - - 1940 - - 1939 - - 1938 - type: DeviceList - - uid: 12314 - components: - - pos: -0.5,-20.5 - parent: 4812 - type: Transform - - devices: - - 5308 - - 4644 - - 4645 - - 4646 - - 4647 - - 5791 - - 5793 - - 12315 - - 8783 - - 8803 - - 8779 - - 8778 - - 8711 - - 8591 - - 8758 - - 8770 - - 5028 - - 328 - - 3582 - - 2759 - - 3264 - - 6655 - - 4980 - - 7198 - type: DeviceList - - uid: 12317 - components: - - pos: -9.5,-33.5 - parent: 4812 - type: Transform - - devices: - - 12318 - - 5071 - - 5072 - - 8783 - - 8803 - - 8779 - - 8778 - - 8711 - - 8591 - - 8758 - - 8770 - type: DeviceList - - uid: 12320 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-40.5 - parent: 4812 - type: Transform - - devices: - - 12321 - - 5072 - - 5071 - type: DeviceList - - uid: 12342 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-16.5 - parent: 4812 - type: Transform - - devices: - - 6585 - - 6584 - - 12343 - type: DeviceList - - uid: 12348 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-17.5 - parent: 4812 - type: Transform - - devices: - - 12347 - - 5791 - - 5792 - type: DeviceList - - uid: 12354 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-18.5 - parent: 4812 - type: Transform - - devices: - - 5600 - - 5599 - - 12355 - type: DeviceList -- proto: FireAxeCabinetFilled - entities: - - uid: 6784 - components: - - pos: -40.5,6.5 - parent: 4812 - type: Transform -- proto: FireExtinguisher - entities: - - uid: 3677 - components: - - pos: 3.3851929,50.52095 - parent: 4812 - type: Transform - - uid: 3975 - components: - - pos: 3.6195679,50.3647 - parent: 4812 - type: Transform -- proto: Firelock - entities: - - uid: 1658 - components: - - pos: 4.5,6.5 - parent: 4812 - type: Transform -- proto: FirelockEdge - entities: - - uid: 328 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-22.5 - parent: 4812 - type: Transform - - uid: 332 - components: - - pos: -3.5,-8.5 - parent: 4812 - type: Transform - - uid: 361 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,5.5 - parent: 4812 - type: Transform - - uid: 1097 - components: - - pos: -1.5,-8.5 - parent: 4812 - type: Transform - - uid: 1099 - components: - - rot: 3.141592653589793 rad - pos: -3.5,11.5 - parent: 4812 - type: Transform - - uid: 1100 - components: - - rot: 3.141592653589793 rad - pos: -2.5,11.5 - parent: 4812 - type: Transform - - uid: 1932 - components: - - rot: 3.141592653589793 rad - pos: -1.5,11.5 - parent: 4812 - type: Transform - - uid: 2759 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-21.5 - parent: 4812 - type: Transform - - uid: 3264 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-21.5 - parent: 4812 - type: Transform - - uid: 3582 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-22.5 - parent: 4812 - type: Transform - - uid: 4980 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-21.5 - parent: 4812 - type: Transform - - uid: 4983 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-3.5 - parent: 4812 - type: Transform - - uid: 4999 - components: - - pos: -2.5,-8.5 - parent: 4812 - type: Transform - - uid: 5000 - components: - - pos: -1.5,13.5 - parent: 4812 - type: Transform - - uid: 5001 - components: - - pos: -2.5,13.5 - parent: 4812 - type: Transform - - uid: 5002 - components: - - pos: -3.5,13.5 - parent: 4812 - type: Transform - - uid: 5028 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-21.5 - parent: 4812 - type: Transform - - uid: 6655 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-20.5 - parent: 4812 - type: Transform - - uid: 6667 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-10.5 - parent: 4812 - type: Transform - - uid: 6684 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-2.5 - parent: 4812 - type: Transform - - uid: 7191 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-3.5 - parent: 4812 - type: Transform - - uid: 7198 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-20.5 - parent: 4812 - type: Transform - - uid: 7287 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-2.5 - parent: 4812 - type: Transform - - uid: 7388 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-10.5 - parent: 4812 - type: Transform - - uid: 7391 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-10.5 - parent: 4812 - type: Transform - - uid: 8591 - components: - - pos: -6.5,-32.5 - parent: 4812 - type: Transform - - uid: 8711 - components: - - pos: -5.5,-32.5 - parent: 4812 - type: Transform - - uid: 8758 - components: - - pos: 1.5,-32.5 - parent: 4812 - type: Transform - - uid: 8770 - components: - - pos: 0.5,-32.5 - parent: 4812 - type: Transform - - uid: 8778 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-34.5 - parent: 4812 - type: Transform - - uid: 8779 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-34.5 - parent: 4812 - type: Transform - - uid: 8783 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-34.5 - parent: 4812 - type: Transform - - uid: 8803 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-34.5 - parent: 4812 - type: Transform -- proto: FirelockElectronics - entities: - - uid: 10718 - components: - - pos: -30.464754,-7.2781386 - parent: 4812 - type: Transform -- proto: FirelockGlass - entities: - - uid: 349 - components: - - pos: 2.5,4.5 - parent: 4812 - type: Transform - - uid: 350 - components: - - pos: 1.5,9.5 - parent: 4812 - type: Transform - - uid: 351 - components: - - pos: 3.5,4.5 - parent: 4812 - type: Transform - - uid: 352 - components: - - pos: 1.5,8.5 - parent: 4812 - type: Transform - - uid: 353 - components: - - pos: 1.5,7.5 - parent: 4812 - type: Transform - - uid: 354 - components: - - pos: 1.5,6.5 - parent: 4812 - type: Transform - - uid: 782 - components: - - pos: 1.5,-2.5 - parent: 4812 - type: Transform - - uid: 783 - components: - - pos: 1.5,-1.5 - parent: 4812 - type: Transform - - uid: 784 - components: - - pos: 1.5,-0.5 - parent: 4812 - type: Transform - - uid: 930 - components: - - pos: -6.5,-7.5 - parent: 4812 - type: Transform - - uid: 931 - components: - - pos: -6.5,-6.5 - parent: 4812 - type: Transform - - uid: 932 - components: - - pos: -6.5,-5.5 - parent: 4812 - type: Transform - - uid: 963 - components: - - pos: 5.5,21.5 - parent: 4812 - type: Transform - - uid: 1927 - components: - - pos: 9.5,23.5 - parent: 4812 - type: Transform - - uid: 1928 - components: - - pos: -8.5,27.5 - parent: 4812 - type: Transform - - uid: 1938 - components: - - pos: -3.5,15.5 - parent: 4812 - type: Transform - - uid: 1939 - components: - - pos: -2.5,15.5 - parent: 4812 - type: Transform - - uid: 1940 - components: - - pos: -1.5,15.5 - parent: 4812 - type: Transform - - uid: 1941 - components: - - pos: 9.5,5.5 - parent: 4812 - type: Transform - - uid: 1942 - components: - - pos: -12.5,9.5 - parent: 4812 - type: Transform - - uid: 1943 - components: - - pos: -16.5,-3.5 - parent: 4812 - type: Transform - - uid: 2231 - components: - - pos: -7.5,27.5 - parent: 4812 - type: Transform - - uid: 2472 - components: - - pos: 3.5,27.5 - parent: 4812 - type: Transform - - uid: 2473 - components: - - pos: 2.5,27.5 - parent: 4812 - type: Transform - - uid: 2476 - components: - - pos: 9.5,21.5 - parent: 4812 - type: Transform - - uid: 2693 - components: - - pos: -9.5,19.5 - parent: 4812 - type: Transform - - uid: 2695 - components: - - pos: -9.5,20.5 - parent: 4812 - type: Transform - - uid: 2782 - components: - - pos: 4.5,19.5 - parent: 4812 - type: Transform - - uid: 2783 - components: - - pos: 4.5,20.5 - parent: 4812 - type: Transform - - uid: 2786 - components: - - pos: 11.5,16.5 - parent: 4812 - type: Transform - - uid: 2787 - components: - - pos: 12.5,16.5 - parent: 4812 - type: Transform - - uid: 2852 - components: - - pos: 13.5,14.5 - parent: 4812 - type: Transform - - uid: 2853 - components: - - pos: 13.5,15.5 - parent: 4812 - type: Transform - - uid: 2922 - components: - - pos: 21.5,15.5 - parent: 4812 - type: Transform - - uid: 3257 - components: - - pos: 15.5,16.5 - parent: 4812 - type: Transform - - uid: 3361 - components: - - pos: 12.5,25.5 - parent: 4812 - type: Transform - - uid: 4117 - components: - - pos: 12.5,0.5 - parent: 4812 - type: Transform - - uid: 4122 - components: - - pos: 11.5,0.5 - parent: 4812 - type: Transform - - uid: 4423 - components: - - pos: 12.5,-10.5 - parent: 4812 - type: Transform - - uid: 4424 - components: - - pos: 23.5,-3.5 - parent: 4812 - type: Transform - - uid: 4425 - components: - - pos: 23.5,-2.5 - parent: 4812 - type: Transform - - uid: 4426 - components: - - pos: 11.5,-10.5 - parent: 4812 - type: Transform - - uid: 4435 - components: - - pos: 28.5,1.5 - parent: 4812 - type: Transform - - uid: 4436 - components: - - pos: 28.5,-6.5 - parent: 4812 - type: Transform - - uid: 4525 - components: - - pos: 18.5,5.5 - parent: 4812 - type: Transform - - uid: 4543 - components: - - pos: 16.5,-7.5 - parent: 4812 - type: Transform - - uid: 4544 - components: - - pos: 20.5,-7.5 - parent: 4812 - type: Transform - - uid: 4644 - components: - - pos: -5.5,-14.5 - parent: 4812 - type: Transform - - uid: 4645 - components: - - pos: -6.5,-14.5 - parent: 4812 - type: Transform - - uid: 4646 - components: - - pos: 0.5,-14.5 - parent: 4812 - type: Transform - - uid: 4647 - components: - - pos: 1.5,-14.5 - parent: 4812 - type: Transform - - uid: 4920 - components: - - pos: -12.5,-24.5 - parent: 4812 - type: Transform - - uid: 5039 - components: - - pos: -15.5,-19.5 - parent: 4812 - type: Transform - - uid: 5045 - components: - - pos: -19.5,-19.5 - parent: 4812 - type: Transform - - uid: 5047 - components: - - pos: -13.5,-22.5 - parent: 4812 - type: Transform - - uid: 5071 - components: - - pos: -11.5,-36.5 - parent: 4812 - type: Transform - - uid: 5072 - components: - - pos: -10.5,-36.5 - parent: 4812 - type: Transform - - uid: 5308 - components: - - pos: -4.5,-27.5 - parent: 4812 - type: Transform - - uid: 5599 - components: - - pos: 9.5,-22.5 - parent: 4812 - type: Transform - - uid: 5600 - components: - - pos: 8.5,-22.5 - parent: 4812 - type: Transform - - uid: 5791 - components: - - pos: 2.5,-15.5 - parent: 4812 - type: Transform - - uid: 5792 - components: - - pos: 4.5,-13.5 - parent: 4812 - type: Transform - - uid: 5793 - components: - - pos: 2.5,-23.5 - parent: 4812 - type: Transform - - uid: 6414 - components: - - pos: 6.5,-12.5 - parent: 4812 - type: Transform - - uid: 6415 - components: - - pos: 6.5,-11.5 - parent: 4812 - type: Transform - - uid: 6494 - components: - - pos: -25.5,-10.5 - parent: 4812 - type: Transform - - uid: 6495 - components: - - pos: -26.5,-10.5 - parent: 4812 - type: Transform - - uid: 6496 - components: - - pos: -21.5,-11.5 - parent: 4812 - type: Transform - - uid: 6497 - components: - - pos: -21.5,-12.5 - parent: 4812 - type: Transform - - uid: 6499 - components: - - pos: -11.5,-11.5 - parent: 4812 - type: Transform - - uid: 6500 - components: - - pos: -11.5,-12.5 - parent: 4812 - type: Transform - - uid: 6553 - components: - - pos: -13.5,-21.5 - parent: 4812 - type: Transform - - uid: 6584 - components: - - pos: -9.5,-13.5 - parent: 4812 - type: Transform - - uid: 6585 - components: - - pos: -11.5,-19.5 - parent: 4812 - type: Transform - - uid: 6621 - components: - - pos: -16.5,-24.5 - parent: 4812 - type: Transform - - uid: 6629 - components: - - pos: -19.5,-13.5 - parent: 4812 - type: Transform - - uid: 6676 - components: - - pos: -7.5,31.5 - parent: 4812 - type: Transform - - uid: 6764 - components: - - pos: -8.5,31.5 - parent: 4812 - type: Transform - - uid: 7343 - components: - - pos: 1.5,29.5 - parent: 4812 - type: Transform - - uid: 7344 - components: - - pos: 2.5,31.5 - parent: 4812 - type: Transform - - uid: 7346 - components: - - pos: 3.5,31.5 - parent: 4812 - type: Transform - - uid: 7347 - components: - - pos: -6.5,29.5 - parent: 4812 - type: Transform - - uid: 7782 - components: - - pos: -26.5,12.5 - parent: 4812 - type: Transform - - uid: 7783 - components: - - pos: -25.5,12.5 - parent: 4812 - type: Transform - - uid: 7784 - components: - - pos: -24.5,11.5 - parent: 4812 - type: Transform - - uid: 8154 - components: - - pos: -23.5,15.5 - parent: 4812 - type: Transform - - uid: 8155 - components: - - pos: -22.5,15.5 - parent: 4812 - type: Transform - - uid: 8156 - components: - - pos: -26.5,6.5 - parent: 4812 - type: Transform - - uid: 8157 - components: - - pos: -25.5,6.5 - parent: 4812 - type: Transform - - uid: 8690 - components: - - pos: -30.5,0.5 - parent: 4812 - type: Transform - - uid: 8691 - components: - - pos: -30.5,-4.5 - parent: 4812 - type: Transform - - uid: 10581 - components: - - pos: -20.5,-30.5 - parent: 4812 - type: Transform - - uid: 10591 - components: - - pos: -39.5,-31.5 - parent: 4812 - type: Transform - - uid: 10592 - components: - - pos: -37.5,-20.5 - parent: 4812 - type: Transform - - uid: 10616 - components: - - pos: -40.5,-22.5 - parent: 4812 - type: Transform - - uid: 10617 - components: - - pos: -41.5,-22.5 - parent: 4812 - type: Transform - - uid: 10752 - components: - - pos: -37.5,1.5 - parent: 4812 - type: Transform - - uid: 10753 - components: - - pos: -37.5,2.5 - parent: 4812 - type: Transform - - uid: 10754 - components: - - pos: -37.5,3.5 - parent: 4812 - type: Transform - - uid: 10755 - components: - - pos: -37.5,4.5 - parent: 4812 - type: Transform - - uid: 10756 - components: - - pos: -37.5,5.5 - parent: 4812 - type: Transform - - uid: 10901 - components: - - pos: -33.5,-12.5 - parent: 4812 - type: Transform - - uid: 10902 - components: - - pos: -33.5,-11.5 - parent: 4812 - type: Transform - - uid: 11259 - components: - - pos: 5.5,-30.5 - parent: 4812 - type: Transform - - uid: 11364 - components: - - pos: 23.5,-33.5 - parent: 4812 - type: Transform - - uid: 11365 - components: - - pos: 23.5,-32.5 - parent: 4812 - type: Transform - - uid: 11793 - components: - - pos: 26.5,-29.5 - parent: 4812 - type: Transform - - uid: 12188 - components: - - pos: -28.5,-2.5 - parent: 4812 - type: Transform - - uid: 12189 - components: - - pos: -28.5,-1.5 - parent: 4812 - type: Transform - - uid: 12196 - components: - - pos: -24.5,1.5 - parent: 4812 - type: Transform - - uid: 12197 - components: - - pos: -24.5,2.5 - parent: 4812 - type: Transform - - uid: 12204 - components: - - pos: -21.5,9.5 - parent: 4812 - type: Transform - - uid: 12205 - components: - - pos: -21.5,10.5 - parent: 4812 - type: Transform - - uid: 12212 - components: - - pos: -32.5,15.5 - parent: 4812 - type: Transform -- proto: Fireplace - entities: - - uid: 2581 - components: - - pos: -13.5,29.5 - parent: 4812 - type: Transform -- proto: Flash - entities: - - uid: 2679 - components: - - pos: -1.4420605,35.49948 - parent: 4812 - type: Transform - - uid: 3964 - components: - - pos: 11.496426,48.542255 - parent: 4812 - type: Transform - - uid: 6247 - components: - - pos: 16.572206,-27.496618 - parent: 4812 - type: Transform - - uid: 8451 - components: - - pos: -30.484182,10.599279 - parent: 4812 - type: Transform -- proto: FlashlightLantern - entities: - - uid: 6364 - components: - - pos: -42.568504,-1.8948193 - parent: 4812 - type: Transform - - uid: 8597 - components: - - pos: -19.531754,10.050615 - parent: 4812 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 8598 - components: - - pos: -18.563004,10.206865 - parent: 4812 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 11673 - components: - - pos: 25.480742,-40.49962 - parent: 4812 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 12487 - components: - - pos: -42.55288,-2.0198193 - parent: 4812 - type: Transform - - uid: 12488 - components: - - pos: -32.540565,-7.207951 - parent: 4812 - type: Transform - - uid: 12489 - components: - - pos: -32.540565,-7.411076 - parent: 4812 - type: Transform - - uid: 12490 - components: - - pos: -19.610077,12.664663 - parent: 4812 - type: Transform - - uid: 12491 - components: - - pos: -19.516327,12.555288 - parent: 4812 - type: Transform -- proto: FlashlightSeclite - entities: - - uid: 8450 - components: - - pos: -28.562307,10.614904 - parent: 4812 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: Floodlight - entities: - - uid: 11744 - components: - - pos: 19.532274,-41.53536 - parent: 4812 - type: Transform - - canCollide: False - type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: FloorDrain - entities: - - uid: 2490 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,29.5 - parent: 4812 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 2491 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,30.5 - parent: 4812 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 3383 - components: - - pos: -21.5,-8.5 - parent: 4812 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 3465 - components: - - pos: 5.5,-6.5 - parent: 4812 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 4458 - components: - - pos: 16.5,6.5 - parent: 4812 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 7383 - components: - - pos: -10.5,-16.5 - parent: 4812 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 7446 - components: - - pos: -19.5,-17.5 - parent: 4812 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 8245 - components: - - pos: -19.5,29.5 - parent: 4812 - type: Transform - - fixtures: {} - type: Fixtures -- proto: FloorTileItemGold - entities: - - uid: 10471 - components: - - pos: -57.41745,-9.4886875 - parent: 4812 - type: Transform - - uid: 11746 - components: - - pos: -57.41745,-9.4886875 - parent: 4812 - type: Transform - - uid: 11747 - components: - - pos: -57.41745,-9.4886875 - parent: 4812 - type: Transform - - uid: 11748 - components: - - pos: -57.41745,-9.4886875 - parent: 4812 - type: Transform - - uid: 11749 - components: - - pos: -57.41745,-9.4886875 - parent: 4812 - type: Transform - - uid: 11750 - components: - - pos: -57.41745,-9.4886875 - parent: 4812 - type: Transform - - uid: 11751 - components: - - pos: -57.41745,-9.4886875 - parent: 4812 - type: Transform - - uid: 11752 - components: - - pos: -57.41745,-9.4886875 - parent: 4812 - type: Transform - - uid: 11753 - components: - - pos: -57.41745,-9.4886875 - parent: 4812 - type: Transform - - uid: 11754 - components: - - pos: -57.41745,-9.4886875 - parent: 4812 - type: Transform - - uid: 11755 - components: - - pos: -57.41745,-9.4886875 - parent: 4812 - type: Transform - - uid: 11756 - components: - - pos: -57.41745,-9.4886875 - parent: 4812 - type: Transform - - uid: 11757 - components: - - pos: -57.41745,-9.4886875 - parent: 4812 - type: Transform - - uid: 11758 - components: - - pos: -57.41745,-9.4886875 - parent: 4812 - type: Transform - - uid: 11759 - components: - - pos: -57.41745,-9.4886875 - parent: 4812 - type: Transform - - uid: 11760 - components: - - pos: -57.41745,-9.4886875 - parent: 4812 - type: Transform - - uid: 11761 - components: - - pos: -57.41745,-9.4886875 - parent: 4812 - type: Transform - - uid: 11762 - components: - - pos: -57.41745,-9.4886875 - parent: 4812 - type: Transform - - uid: 11763 - components: - - pos: -57.41745,-9.4886875 - parent: 4812 - type: Transform - - uid: 11764 - components: - - pos: -57.41745,-9.4886875 - parent: 4812 - type: Transform - - uid: 11765 - components: - - pos: -57.41745,-9.4886875 - parent: 4812 - type: Transform - - uid: 11766 - components: - - pos: -57.41745,-9.4886875 - parent: 4812 - type: Transform - - uid: 11767 - components: - - pos: -57.41745,-9.4886875 - parent: 4812 - type: Transform - - uid: 11768 - components: - - pos: -57.41745,-9.4886875 - parent: 4812 - type: Transform - - uid: 11769 - components: - - pos: -57.41745,-9.4886875 - parent: 4812 - type: Transform - - uid: 11770 - components: - - pos: -57.41745,-9.4886875 - parent: 4812 - type: Transform - - uid: 11771 - components: - - pos: -57.41745,-9.4886875 - parent: 4812 - type: Transform - - uid: 11772 - components: - - pos: -57.41745,-9.4886875 - parent: 4812 - type: Transform -- proto: FloorTileItemShuttleWhite - entities: - - uid: 10961 - components: - - pos: -35.581154,26.501883 - parent: 4812 - type: Transform - - uid: 10962 - components: - - pos: -35.581154,26.501883 - parent: 4812 - type: Transform - - uid: 10981 - components: - - pos: -35.581154,26.501883 - parent: 4812 - type: Transform - - uid: 12430 - components: - - pos: -35.581154,26.501883 - parent: 4812 - type: Transform - - uid: 12431 - components: - - pos: -35.581154,26.501883 - parent: 4812 - type: Transform - - uid: 12432 - components: - - pos: -35.581154,26.501883 - parent: 4812 - type: Transform - - uid: 12433 - components: - - pos: -35.581154,26.501883 - parent: 4812 - type: Transform - - uid: 12434 - components: - - pos: -35.581154,26.501883 - parent: 4812 - type: Transform - - uid: 12435 - components: - - pos: -35.581154,26.501883 - parent: 4812 - type: Transform - - uid: 12436 - components: - - pos: -35.581154,26.501883 - parent: 4812 - type: Transform - - uid: 12437 - components: - - pos: -35.581154,26.501883 - parent: 4812 - type: Transform - - uid: 12438 - components: - - pos: -35.581154,26.501883 - parent: 4812 - type: Transform - - uid: 12439 - components: - - pos: -35.581154,26.501883 - parent: 4812 - type: Transform - - uid: 12440 - components: - - pos: -35.581154,26.501883 - parent: 4812 - type: Transform - - uid: 12441 - components: - - pos: -35.581154,26.501883 - parent: 4812 - type: Transform - - uid: 12442 - components: - - pos: -35.581154,26.501883 - parent: 4812 - type: Transform - - uid: 12443 - components: - - pos: -35.581154,26.501883 - parent: 4812 - type: Transform - - uid: 12444 - components: - - pos: -35.581154,26.501883 - parent: 4812 - type: Transform - - uid: 12445 - components: - - pos: -35.581154,26.501883 - parent: 4812 - type: Transform - - uid: 12446 - components: - - pos: -35.581154,26.501883 - parent: 4812 - type: Transform - - uid: 12447 - components: - - pos: -35.581154,26.501883 - parent: 4812 - type: Transform - - uid: 12448 - components: - - pos: -35.581154,26.501883 - parent: 4812 - type: Transform - - uid: 12449 - components: - - pos: -35.581154,26.501883 - parent: 4812 - type: Transform - - uid: 12450 - components: - - pos: -35.581154,26.501883 - parent: 4812 - type: Transform - - uid: 12451 - components: - - pos: -35.581154,26.501883 - parent: 4812 - type: Transform - - uid: 12452 - components: - - pos: -35.581154,26.501883 - parent: 4812 - type: Transform - - uid: 12453 - components: - - pos: -35.581154,26.517508 - parent: 4812 - type: Transform - - uid: 12454 - components: - - pos: -35.581154,26.517508 - parent: 4812 - type: Transform - - uid: 12455 - components: - - pos: -35.581154,26.517508 - parent: 4812 - type: Transform - - uid: 12456 - components: - - pos: -35.581154,26.517508 - parent: 4812 - type: Transform -- proto: FlyAmanitaSeeds - entities: - - uid: 9620 - components: - - pos: -43.497864,-29.674786 - parent: 4812 - type: Transform -- proto: FoodBanana - entities: - - uid: 1708 - components: - - pos: -10.643926,0.9448434 - parent: 4812 - type: Transform - - uid: 1709 - components: - - pos: -10.425176,0.9292184 - parent: 4812 - type: Transform - - uid: 1710 - components: - - pos: -10.253301,0.8979684 - parent: 4812 - type: Transform -- proto: FoodBowlBigTrash - entities: - - uid: 11242 - components: - - pos: 10.485162,-37.493214 - parent: 4812 - type: Transform - - uid: 11243 - components: - - pos: 10.469537,-36.29009 - parent: 4812 - type: Transform -- proto: FoodBoxDonut - entities: - - uid: 8367 - components: - - pos: -26.5,10.5 - parent: 4812 - type: Transform -- proto: FoodBreadBaguette - entities: - - uid: 1716 - components: - - pos: -10.518926,-0.4614067 - parent: 4812 - type: Transform -- proto: FoodBreadMoldySlice - entities: - - uid: 7042 - components: - - pos: -18.50604,-35.186176 - parent: 4812 - type: Transform -- proto: FoodBurgerMime - entities: - - uid: 1721 - components: - - pos: -10.581426,-0.9614067 - parent: 4812 - type: Transform -- proto: FoodBurgerRobot - entities: - - uid: 3675 - components: - - pos: 5.460861,44.505184 - parent: 4812 - type: Transform - - uid: 11960 - components: - - pos: -14.514471,15.4569435 - parent: 4812 - type: Transform -- proto: FoodCakeSuppermatterSlice - entities: - - uid: 10997 - components: - - pos: 8.455962,31.413256 - parent: 4812 - type: Transform -- proto: FoodCartCold - entities: - - uid: 1572 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-7.5 - parent: 4812 - type: Transform -- proto: FoodCartHot - entities: - - uid: 3952 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,0.5 - parent: 4812 - type: Transform -- proto: FoodCondimentBottleEnzyme - entities: - - uid: 1643 - components: - - pos: 7.2863007,0.7877493 - parent: 4812 - type: Transform - - uid: 1644 - components: - - pos: 7.4581757,0.6939993 - parent: 4812 - type: Transform -- proto: FoodCondimentPacketPepper - entities: - - uid: 1773 - components: - - pos: -2.6753898,2.5728736 - parent: 4812 - type: Transform - - solution: food - type: RefillableSolution - - uid: 1779 - components: - - pos: -2.3370848,-3.5807357 - parent: 4812 - type: Transform - - solution: food - type: RefillableSolution -- proto: FoodCondimentPacketSalt - entities: - - uid: 1772 - components: - - pos: -2.3003898,9.296319 - parent: 4812 - type: Transform - - solution: food - type: RefillableSolution -- proto: FoodMeatCrab - entities: - - uid: 12371 - components: - - desc: name's fokkin JOE RIPPA YA DOG - name: joe rippa - type: MetaData - - pos: 4.56281,-34.161045 - parent: 4812 - type: Transform -- proto: FoodPieBananaCream - entities: - - uid: 1711 - components: - - pos: -10.659551,0.5229684 - parent: 4812 - type: Transform - - uid: 1712 - components: - - pos: -10.409551,0.5073434 - parent: 4812 - type: Transform -- proto: FoodPizzaSassysageSlice - entities: - - uid: 10765 - components: - - pos: -43.00348,-7.268787 - parent: 4812 - type: Transform -- proto: FoodPlateTrash - entities: - - uid: 11241 - components: - - pos: 9.469537,-39.368214 - parent: 4812 - type: Transform -- proto: FoodSnackCheesie - entities: - - uid: 1775 - components: - - pos: -2.4566398,1.6822487 - parent: 4812 - type: Transform -- proto: FoodSnackChips - entities: - - uid: 1776 - components: - - pos: -2.4620848,-1.5182357 - parent: 4812 - type: Transform - - uid: 6410 - components: - - pos: -4.4655905,-19.449863 - parent: 4812 - type: Transform -- proto: FoodTartGapple - entities: - - uid: 2735 - components: - - pos: 0.5300851,22.660454 - parent: 4812 - type: Transform -- proto: Fork - entities: - - uid: 1769 - components: - - pos: -2.5347648,9.4457655 - parent: 4812 - type: Transform - - uid: 1778 - components: - - pos: -2.6495848,-3.5494857 - parent: 4812 - type: Transform -- proto: GasAnalyzer - entities: - - uid: 6318 - components: - - pos: 24.527384,-25.4941 - parent: 4812 - type: Transform - - uid: 6322 - components: - - pos: 24.418009,-25.447226 - parent: 4812 - type: Transform -- proto: GasFilter - entities: - - uid: 3737 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-27.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor -- proto: GasFilterFlipped - entities: - - uid: 9169 - components: - - pos: -47.5,1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9170 - components: - - pos: -47.5,3.5 - parent: 4812 - type: Transform - - uid: 9171 - components: - - pos: -47.5,5.5 - parent: 4812 - type: Transform - - uid: 9172 - components: - - pos: -47.5,7.5 - parent: 4812 - type: Transform - - uid: 9173 - components: - - pos: -47.5,9.5 - parent: 4812 - type: Transform - - uid: 9174 - components: - - pos: -47.5,11.5 - parent: 4812 - type: Transform -- proto: GasMinerCarbonDioxide - entities: - - uid: 9452 - components: - - pos: -52.5,5.5 - parent: 4812 - type: Transform -- proto: GasMinerNitrogen - entities: - - uid: 9449 - components: - - pos: -52.5,1.5 - parent: 4812 - type: Transform -- proto: GasMinerOxygen - entities: - - uid: 9451 - components: - - pos: -52.5,3.5 - parent: 4812 - type: Transform -- proto: GasMinerPlasma - entities: - - uid: 9456 - components: - - pos: -52.5,9.5 - parent: 4812 - type: Transform -- proto: GasMinerWaterVapor - entities: - - uid: 9454 - components: - - pos: -52.5,7.5 - parent: 4812 - type: Transform -- proto: GasMixerFlipped - entities: - - uid: 8550 - components: - - pos: -45.5,5.5 - parent: 4812 - type: Transform - - uid: 8552 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,2.5 - parent: 4812 - type: Transform - - inletTwoConcentration: 0.22000003 - inletOneConcentration: 0.78 - type: GasMixer - - color: '#03FDC3FF' - type: AtmosPipeColor - - uid: 9236 - components: - - pos: -45.5,8.5 - parent: 4812 - type: Transform - - uid: 9237 - components: - - pos: -45.5,10.5 - parent: 4812 - type: Transform - - uid: 9247 - components: - - pos: -45.5,6.5 - parent: 4812 - type: Transform - - uid: 9261 - components: - - pos: -45.5,12.5 - parent: 4812 - type: Transform -- proto: GasOutletInjector - entities: - - uid: 4002 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-30.5 - parent: 4812 - type: Transform - - uid: 4445 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,1.5 - parent: 4812 - type: Transform - - uid: 4446 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,3.5 - parent: 4812 - type: Transform - - uid: 4478 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,5.5 - parent: 4812 - type: Transform - - uid: 4479 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,7.5 - parent: 4812 - type: Transform - - uid: 4497 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,9.5 - parent: 4812 - type: Transform - - uid: 4826 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,11.5 - parent: 4812 - type: Transform -- proto: GasPassiveGate - entities: - - uid: 5801 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-19.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8979 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-33.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor -- proto: GasPassiveVent - entities: - - uid: 862 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-7.5 - parent: 4812 - type: Transform - - uid: 863 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-7.5 - parent: 4812 - type: Transform - - uid: 3817 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,46.5 - parent: 4812 - type: Transform - - uid: 5596 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-28.5 - parent: 4812 - type: Transform - - uid: 9005 - components: - - rot: 3.141592653589793 rad - pos: -40.5,-37.5 - parent: 4812 - type: Transform - - uid: 9168 - components: - - pos: -49.5,-0.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9199 - components: - - rot: 3.141592653589793 rad - pos: -53.5,1.5 - parent: 4812 - type: Transform - - uid: 9200 - components: - - rot: 3.141592653589793 rad - pos: -53.5,3.5 - parent: 4812 - type: Transform - - uid: 9201 - components: - - rot: 3.141592653589793 rad - pos: -53.5,5.5 - parent: 4812 - type: Transform - - uid: 9202 - components: - - rot: 3.141592653589793 rad - pos: -53.5,7.5 - parent: 4812 - type: Transform - - uid: 9203 - components: - - rot: 3.141592653589793 rad - pos: -53.5,9.5 - parent: 4812 - type: Transform - - uid: 9204 - components: - - rot: 3.141592653589793 rad - pos: -53.5,11.5 - parent: 4812 - type: Transform - - uid: 9264 - components: - - pos: -47.5,14.5 - parent: 4812 - type: Transform - - uid: 9494 - components: - - pos: -45.5,16.5 - parent: 4812 - type: Transform - - uid: 9495 - components: - - pos: -43.5,16.5 - parent: 4812 - type: Transform -- proto: GasPipeBend - entities: - - uid: 560 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,7.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 561 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,7.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 563 - components: - - pos: 11.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 705 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,8.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 708 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 709 - components: - - pos: 12.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 831 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-3.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 833 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 834 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 850 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-9.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 856 - components: - - pos: -16.5,-8.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 861 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-6.5 - parent: 4812 - type: Transform - - uid: 876 - components: - - pos: -8.5,4.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1508 - components: - - pos: -21.5,-4.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 1683 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1684 - components: - - pos: -21.5,1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1787 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,27.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2008 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,33.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2009 - components: - - pos: 3.5,33.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2054 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,32.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2055 - components: - - pos: 2.5,32.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2849 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,24.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2850 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,25.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2861 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,26.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2967 - components: - - pos: 24.5,15.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3018 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,26.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3706 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3744 - components: - - rot: 3.141592653589793 rad - pos: -33.5,0.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3746 - components: - - pos: -32.5,0.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3803 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,46.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3808 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,50.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3809 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,50.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3836 - components: - - pos: 9.5,50.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3837 - components: - - rot: 3.141592653589793 rad - pos: 8.5,50.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3840 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,45.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4204 - components: - - pos: 28.5,-3.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4209 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-7.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4213 - components: - - pos: 28.5,-7.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4227 - components: - - pos: 25.5,4.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4892 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4893 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-22.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4940 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-23.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5129 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-35.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5178 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-34.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5725 - components: - - pos: 21.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5732 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-22.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5736 - components: - - rot: 3.141592653589793 rad - pos: 22.5,-25.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5737 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-26.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5804 - components: - - pos: 14.5,-17.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6624 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-22.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6628 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-23.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6651 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-26.5 - parent: 4812 - type: Transform - - uid: 6783 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-28.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6829 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-36.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7272 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-28.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7285 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-30.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 7847 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,24.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8557 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,10.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8561 - components: - - pos: -18.5,9.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8953 - components: - - pos: -10.5,-30.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8970 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-33.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8987 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-33.5 - parent: 4812 - type: Transform - - uid: 9004 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-35.5 - parent: 4812 - type: Transform - - uid: 9038 - components: - - pos: -33.5,-36.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9117 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,6.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9120 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,8.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9121 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,12.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9125 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9128 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9133 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9155 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,0.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9156 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9165 - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9166 - components: - - rot: 3.141592653589793 rad - pos: -49.5,-1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9254 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,5.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9535 - components: - - rot: 3.141592653589793 rad - pos: -43.5,8.5 - parent: 4812 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11972 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-7.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11983 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-7.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor -- proto: GasPipeFourway - entities: - - uid: 402 - components: - - pos: -3.5,-7.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 428 - components: - - pos: -3.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 431 - components: - - pos: -3.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 445 - components: - - pos: -5.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 566 - components: - - pos: -1.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 583 - components: - - pos: -1.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 664 - components: - - pos: -25.5,-4.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2945 - components: - - pos: 19.5,14.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2960 - components: - - pos: 15.5,15.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2978 - components: - - pos: 15.5,26.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3804 - components: - - pos: 11.5,46.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4156 - components: - - pos: 24.5,-3.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5086 - components: - - pos: 0.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5111 - components: - - pos: -6.5,-22.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5189 - components: - - pos: -10.5,-35.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5565 - components: - - pos: 9.5,-20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7276 - components: - - pos: -16.5,-22.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8764 - components: - - pos: -30.5,-2.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 12010 - components: - - pos: -49.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 12011 - components: - - pos: -48.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor -- proto: GasPipeStraight - entities: - - uid: 251 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 252 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 253 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 254 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 368 - components: - - pos: -3.5,18.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 369 - components: - - pos: -3.5,17.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 370 - components: - - pos: -3.5,16.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 371 - components: - - pos: -3.5,15.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 372 - components: - - pos: -3.5,14.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 374 - components: - - pos: -3.5,12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 375 - components: - - pos: -3.5,11.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 377 - components: - - pos: -3.5,9.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 378 - components: - - pos: -3.5,8.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 379 - components: - - pos: -3.5,7.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 380 - components: - - pos: -3.5,6.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 381 - components: - - pos: -3.5,5.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 382 - components: - - pos: -3.5,4.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 383 - components: - - pos: -3.5,3.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 385 - components: - - pos: -3.5,1.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 386 - components: - - pos: -3.5,0.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 388 - components: - - pos: -3.5,-1.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 389 - components: - - pos: -3.5,-2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 390 - components: - - pos: -3.5,-3.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 391 - components: - - pos: -3.5,-4.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 392 - components: - - pos: -3.5,-5.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 393 - components: - - pos: -3.5,-6.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 395 - components: - - pos: -3.5,-8.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 396 - components: - - pos: -3.5,-9.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 397 - components: - - pos: -3.5,-10.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 398 - components: - - pos: -1.5,-10.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 399 - components: - - pos: -1.5,-9.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 400 - components: - - pos: -1.5,-8.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 401 - components: - - pos: -1.5,-7.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 403 - components: - - pos: -1.5,-5.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 404 - components: - - pos: -1.5,-4.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 405 - components: - - pos: -1.5,-3.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 406 - components: - - pos: -1.5,-2.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 408 - components: - - pos: -1.5,-0.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 409 - components: - - pos: -1.5,0.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 410 - components: - - pos: -1.5,1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 411 - components: - - pos: -1.5,2.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 412 - components: - - pos: -1.5,3.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 414 - components: - - pos: -1.5,5.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 415 - components: - - pos: -1.5,6.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 416 - components: - - pos: -1.5,7.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 419 - components: - - pos: -1.5,10.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 420 - components: - - pos: -1.5,11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 421 - components: - - pos: -1.5,12.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 422 - components: - - pos: -1.5,13.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 424 - components: - - pos: -1.5,15.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 425 - components: - - pos: -1.5,16.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 426 - components: - - pos: -1.5,17.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 427 - components: - - pos: -1.5,18.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 430 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 432 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 433 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 434 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 435 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 436 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 437 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 438 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 439 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 440 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 442 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 443 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 444 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 446 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 447 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 448 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 449 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 450 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-11.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 451 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 452 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 453 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 455 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 456 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 457 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 458 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 459 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 460 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 461 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 462 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 463 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 465 - components: - - pos: -25.5,-10.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 466 - components: - - pos: -25.5,-9.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 467 - components: - - pos: -25.5,-8.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 468 - components: - - pos: -25.5,-7.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 469 - components: - - pos: -25.5,-6.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 470 - components: - - pos: -25.5,-5.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 472 - components: - - pos: -25.5,-3.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 474 - components: - - pos: -25.5,-1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 475 - components: - - pos: -25.5,-0.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 476 - components: - - pos: -25.5,0.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 478 - components: - - pos: -25.5,2.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 479 - components: - - pos: -25.5,3.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 480 - components: - - pos: -25.5,4.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 481 - components: - - pos: -25.5,5.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 482 - components: - - pos: -25.5,6.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 484 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,7.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 485 - components: - - rot: 3.141592653589793 rad - pos: -22.5,8.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 487 - components: - - rot: 3.141592653589793 rad - pos: -22.5,10.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 488 - components: - - rot: 3.141592653589793 rad - pos: -22.5,11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 489 - components: - - rot: 3.141592653589793 rad - pos: -22.5,12.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 491 - components: - - rot: 3.141592653589793 rad - pos: -22.5,14.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 492 - components: - - rot: 3.141592653589793 rad - pos: -22.5,15.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 493 - components: - - rot: 3.141592653589793 rad - pos: -22.5,16.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 494 - components: - - rot: 3.141592653589793 rad - pos: -22.5,17.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 495 - components: - - rot: 3.141592653589793 rad - pos: -22.5,18.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 497 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 498 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 499 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 500 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 501 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 502 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 503 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 504 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 505 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 507 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 508 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 509 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 511 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 512 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 514 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 515 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 516 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 517 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 518 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 520 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 521 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 522 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 524 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 525 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 526 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 528 - components: - - pos: 11.5,18.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 529 - components: - - pos: 11.5,17.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 530 - components: - - pos: 11.5,16.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 531 - components: - - pos: 11.5,15.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 533 - components: - - pos: 11.5,13.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 534 - components: - - pos: 11.5,12.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 535 - components: - - pos: 11.5,11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 536 - components: - - pos: 11.5,10.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 537 - components: - - pos: 11.5,9.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 538 - components: - - pos: 11.5,8.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 541 - components: - - pos: 11.5,5.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 542 - components: - - pos: 11.5,4.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 543 - components: - - pos: 11.5,3.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 544 - components: - - pos: 11.5,2.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 545 - components: - - pos: 11.5,1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 546 - components: - - pos: 11.5,0.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 547 - components: - - pos: 11.5,-0.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 549 - components: - - pos: 11.5,-2.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 551 - components: - - pos: 11.5,-4.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 552 - components: - - pos: 11.5,-5.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 553 - components: - - pos: 11.5,-6.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 554 - components: - - pos: 11.5,-7.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 555 - components: - - pos: 11.5,-8.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 556 - components: - - pos: 11.5,-9.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 557 - components: - - pos: 11.5,-10.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 564 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-11.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 567 - components: - - pos: -3.5,19.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 568 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 569 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 571 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 572 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 573 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 575 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 576 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 577 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 578 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 580 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 581 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 582 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 584 - components: - - rot: 3.141592653589793 rad - pos: 12.5,18.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 585 - components: - - rot: 3.141592653589793 rad - pos: 12.5,17.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 586 - components: - - rot: 3.141592653589793 rad - pos: 12.5,16.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 588 - components: - - rot: 3.141592653589793 rad - pos: 12.5,14.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 589 - components: - - rot: 3.141592653589793 rad - pos: 12.5,13.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 590 - components: - - rot: 3.141592653589793 rad - pos: 12.5,12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 591 - components: - - rot: 3.141592653589793 rad - pos: 12.5,11.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 592 - components: - - rot: 3.141592653589793 rad - pos: 12.5,10.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 593 - components: - - rot: 3.141592653589793 rad - pos: 12.5,9.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 595 - components: - - rot: 3.141592653589793 rad - pos: 12.5,7.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 596 - components: - - rot: 3.141592653589793 rad - pos: 12.5,6.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 597 - components: - - rot: 3.141592653589793 rad - pos: 12.5,5.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 598 - components: - - rot: 3.141592653589793 rad - pos: 12.5,4.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 599 - components: - - rot: 3.141592653589793 rad - pos: 12.5,3.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 601 - components: - - rot: 3.141592653589793 rad - pos: 12.5,1.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 602 - components: - - rot: 3.141592653589793 rad - pos: 12.5,0.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 603 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-0.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 604 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-1.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 606 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-3.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 607 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-4.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 608 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-5.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 609 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-6.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 610 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-7.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 612 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-9.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 613 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-10.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 614 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-11.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 615 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 616 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 619 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 620 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 621 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 622 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 623 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 624 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 626 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 627 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 628 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 629 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 630 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 631 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 633 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 634 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 635 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 636 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 637 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 638 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 639 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 640 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 641 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 644 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 646 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 647 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 648 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-11.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 649 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 650 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 652 - components: - - pos: -26.5,-11.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 653 - components: - - pos: -26.5,-10.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 654 - components: - - pos: -26.5,-9.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 655 - components: - - pos: -26.5,-8.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 656 - components: - - pos: -26.5,-7.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 657 - components: - - pos: -26.5,-6.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 658 - components: - - pos: -26.5,-5.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 659 - components: - - pos: -26.5,-4.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 660 - components: - - pos: -26.5,-3.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 661 - components: - - pos: -26.5,-2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 663 - components: - - pos: -26.5,-0.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 665 - components: - - pos: -26.5,1.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 667 - components: - - pos: -26.5,3.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 668 - components: - - pos: -26.5,4.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 669 - components: - - pos: -26.5,5.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 670 - components: - - pos: -26.5,6.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 671 - components: - - pos: -26.5,7.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 672 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,8.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 673 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,8.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 674 - components: - - rot: 3.141592653589793 rad - pos: -23.5,9.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 676 - components: - - rot: 3.141592653589793 rad - pos: -23.5,11.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 677 - components: - - rot: 3.141592653589793 rad - pos: -23.5,12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 678 - components: - - rot: 3.141592653589793 rad - pos: -23.5,13.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 680 - components: - - rot: 3.141592653589793 rad - pos: -23.5,15.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 683 - components: - - rot: 3.141592653589793 rad - pos: -23.5,18.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 684 - components: - - rot: 3.141592653589793 rad - pos: -23.5,19.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 685 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 686 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 687 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 688 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 689 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 690 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 691 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 692 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 693 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 695 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 696 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 697 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 698 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 700 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 701 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 702 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 703 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 789 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-10.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 790 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-9.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 791 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-7.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 792 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-7.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 793 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-7.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 794 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-7.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 795 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-7.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 796 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-7.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 798 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-7.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 799 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-7.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 800 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-7.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 801 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-7.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 802 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-7.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 803 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-7.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 804 - components: - - pos: -17.5,-8.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 807 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-10.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 809 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 810 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 811 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 812 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 813 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 821 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 822 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 823 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 824 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 825 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 826 - components: - - rot: 3.141592653589793 rad - pos: 3.5,1.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 827 - components: - - rot: 3.141592653589793 rad - pos: 3.5,0.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 828 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-0.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 829 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-1.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 830 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 836 - components: - - pos: 4.5,-4.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 837 - components: - - pos: 4.5,-5.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 839 - components: - - rot: 3.141592653589793 rad - pos: 3.5,3.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 840 - components: - - rot: 3.141592653589793 rad - pos: 3.5,4.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 841 - components: - - rot: 3.141592653589793 rad - pos: 3.5,5.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 842 - components: - - rot: 3.141592653589793 rad - pos: 3.5,6.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 844 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,7.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 845 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,7.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 851 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-9.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 852 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-9.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 853 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-9.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 854 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-9.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 855 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-9.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 866 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 867 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-0.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 868 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-0.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 869 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 872 - components: - - rot: 3.141592653589793 rad - pos: -8.5,0.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 873 - components: - - rot: 3.141592653589793 rad - pos: -8.5,1.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 874 - components: - - rot: 3.141592653589793 rad - pos: -8.5,2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 875 - components: - - rot: 3.141592653589793 rad - pos: -8.5,3.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 878 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,8.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 879 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,8.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 880 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,8.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 881 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,8.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 882 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,8.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 883 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,8.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 884 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,8.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1502 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-10.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1503 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-9.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1505 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-4.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1506 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-4.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1507 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-4.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 1509 - components: - - pos: -21.5,-5.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1510 - components: - - pos: -21.5,-6.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1680 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1681 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1682 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1785 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,25.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 1786 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,27.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 1808 - components: - - pos: 6.5,18.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1809 - components: - - pos: 6.5,17.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1810 - components: - - pos: 8.5,19.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1811 - components: - - pos: 8.5,18.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1812 - components: - - pos: 8.5,17.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1815 - components: - - pos: -0.5,19.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1835 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,24.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1847 - components: - - pos: -1.5,20.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1848 - components: - - pos: -1.5,21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 1849 - components: - - pos: -1.5,22.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1850 - components: - - pos: -3.5,21.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 1851 - components: - - pos: -3.5,22.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1984 - components: - - rot: 3.141592653589793 rad - pos: -8.5,21.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1987 - components: - - rot: 3.141592653589793 rad - pos: -8.5,24.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1988 - components: - - rot: 3.141592653589793 rad - pos: -8.5,25.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1989 - components: - - rot: 3.141592653589793 rad - pos: -8.5,26.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1990 - components: - - rot: 3.141592653589793 rad - pos: -8.5,27.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1991 - components: - - rot: 3.141592653589793 rad - pos: -8.5,28.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1993 - components: - - rot: 3.141592653589793 rad - pos: -8.5,30.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1994 - components: - - rot: 3.141592653589793 rad - pos: -8.5,31.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1995 - components: - - rot: 3.141592653589793 rad - pos: -8.5,32.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1996 - components: - - rot: 3.141592653589793 rad - pos: 3.5,21.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1998 - components: - - rot: 3.141592653589793 rad - pos: 3.5,23.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1999 - components: - - rot: 3.141592653589793 rad - pos: 3.5,24.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2001 - components: - - rot: 3.141592653589793 rad - pos: 3.5,26.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2002 - components: - - rot: 3.141592653589793 rad - pos: 3.5,27.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2003 - components: - - rot: 3.141592653589793 rad - pos: 3.5,28.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2005 - components: - - rot: 3.141592653589793 rad - pos: 3.5,30.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2006 - components: - - rot: 3.141592653589793 rad - pos: 3.5,31.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2007 - components: - - rot: 3.141592653589793 rad - pos: 3.5,32.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2010 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,33.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2011 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,33.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2013 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,33.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2014 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,33.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2015 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,33.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2016 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,33.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2017 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,33.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2019 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,33.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2020 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,33.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2021 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,32.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2023 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,32.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2024 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,32.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2025 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,32.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2026 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,32.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2027 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,32.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2029 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,32.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2030 - components: - - rot: 3.141592653589793 rad - pos: -7.5,31.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2031 - components: - - rot: 3.141592653589793 rad - pos: -7.5,30.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2032 - components: - - rot: 3.141592653589793 rad - pos: -7.5,29.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2033 - components: - - rot: 3.141592653589793 rad - pos: -7.5,28.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2034 - components: - - rot: 3.141592653589793 rad - pos: -7.5,27.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2036 - components: - - rot: 3.141592653589793 rad - pos: -7.5,25.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2038 - components: - - rot: 3.141592653589793 rad - pos: -7.5,23.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2039 - components: - - rot: 3.141592653589793 rad - pos: -7.5,22.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2040 - components: - - rot: 3.141592653589793 rad - pos: -7.5,21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2041 - components: - - rot: 3.141592653589793 rad - pos: -7.5,20.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2042 - components: - - rot: 3.141592653589793 rad - pos: 2.5,20.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2043 - components: - - rot: 3.141592653589793 rad - pos: 2.5,21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2044 - components: - - rot: 3.141592653589793 rad - pos: 2.5,22.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2045 - components: - - rot: 3.141592653589793 rad - pos: 2.5,23.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2047 - components: - - rot: 3.141592653589793 rad - pos: 2.5,25.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2049 - components: - - rot: 3.141592653589793 rad - pos: 2.5,27.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2050 - components: - - rot: 3.141592653589793 rad - pos: 2.5,28.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2051 - components: - - rot: 3.141592653589793 rad - pos: 2.5,29.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2052 - components: - - rot: 3.141592653589793 rad - pos: 2.5,30.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2053 - components: - - rot: 3.141592653589793 rad - pos: 2.5,31.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2057 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,25.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2058 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,25.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2059 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,25.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2060 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,25.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2061 - components: - - rot: 3.141592653589793 rad - pos: 8.5,26.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2062 - components: - - rot: 3.141592653589793 rad - pos: 8.5,27.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 2063 - components: - - rot: 3.141592653589793 rad - pos: 8.5,28.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2064 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,24.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 2066 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,24.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2067 - components: - - rot: 3.141592653589793 rad - pos: 6.5,25.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2068 - components: - - rot: 3.141592653589793 rad - pos: 6.5,26.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2069 - components: - - rot: 3.141592653589793 rad - pos: 6.5,27.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2070 - components: - - rot: 3.141592653589793 rad - pos: 6.5,28.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2420 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,23.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2421 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,23.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2422 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,23.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2423 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,23.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2425 - components: - - rot: 3.141592653589793 rad - pos: -13.5,24.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2426 - components: - - rot: 3.141592653589793 rad - pos: -13.5,25.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2427 - components: - - rot: 3.141592653589793 rad - pos: -13.5,26.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 2428 - components: - - rot: 3.141592653589793 rad - pos: -13.5,27.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2431 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,24.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2432 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,24.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 2433 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,24.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2434 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,24.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2436 - components: - - pos: -12.5,25.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2437 - components: - - pos: -12.5,26.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 2438 - components: - - pos: -12.5,27.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2943 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,15.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2944 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,15.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2946 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,15.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2947 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,15.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2948 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,15.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2949 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,15.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2950 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,15.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2951 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,15.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 2952 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,15.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2953 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,14.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2954 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,14.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2955 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,14.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2956 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,14.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2957 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,14.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2958 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,14.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2959 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,14.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2961 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,14.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2962 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,14.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2964 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,15.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2968 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,14.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 2970 - components: - - rot: 3.141592653589793 rad - pos: 15.5,16.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2971 - components: - - rot: 3.141592653589793 rad - pos: 15.5,17.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2973 - components: - - rot: 3.141592653589793 rad - pos: 15.5,19.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2975 - components: - - rot: 3.141592653589793 rad - pos: 15.5,21.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2976 - components: - - rot: 3.141592653589793 rad - pos: 15.5,22.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2977 - components: - - rot: 3.141592653589793 rad - pos: 15.5,23.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2979 - components: - - rot: 3.141592653589793 rad - pos: 15.5,25.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2981 - components: - - rot: 3.141592653589793 rad - pos: 15.5,27.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2982 - components: - - rot: 3.141592653589793 rad - pos: 15.5,28.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2984 - components: - - rot: 3.141592653589793 rad - pos: 19.5,15.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2985 - components: - - rot: 3.141592653589793 rad - pos: 19.5,16.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2986 - components: - - rot: 3.141592653589793 rad - pos: 19.5,17.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2988 - components: - - rot: 3.141592653589793 rad - pos: 19.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2990 - components: - - rot: 3.141592653589793 rad - pos: 19.5,21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2991 - components: - - rot: 3.141592653589793 rad - pos: 19.5,22.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 2992 - components: - - rot: 3.141592653589793 rad - pos: 19.5,23.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2993 - components: - - rot: 3.141592653589793 rad - pos: 19.5,24.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2996 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,25.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2997 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,25.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2998 - components: - - pos: 16.5,26.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2999 - components: - - pos: 16.5,27.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3000 - components: - - pos: 16.5,28.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 3002 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,24.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3003 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,24.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3004 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,24.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3005 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,24.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3008 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,26.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3009 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,26.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3010 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,26.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3025 - components: - - pos: 15.5,14.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3382 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-0.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3407 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-0.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3707 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3743 - components: - - pos: -32.5,-0.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3796 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,46.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3797 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,46.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 3799 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,46.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 3800 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,46.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3801 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,46.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3802 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,46.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 3805 - components: - - pos: 11.5,47.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 3806 - components: - - pos: 11.5,48.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3807 - components: - - pos: 11.5,49.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3810 - components: - - rot: 3.141592653589793 rad - pos: 7.5,45.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3811 - components: - - rot: 3.141592653589793 rad - pos: 11.5,45.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3812 - components: - - rot: 3.141592653589793 rad - pos: 11.5,44.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3819 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,44.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 3820 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,44.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 3821 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,44.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3822 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,44.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3825 - components: - - rot: 3.141592653589793 rad - pos: 9.5,46.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3826 - components: - - rot: 3.141592653589793 rad - pos: 9.5,47.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 3827 - components: - - rot: 3.141592653589793 rad - pos: 9.5,48.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3828 - components: - - rot: 3.141592653589793 rad - pos: 9.5,49.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3829 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,45.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3830 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,45.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3831 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,45.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3833 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,45.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4009 - components: - - pos: -19.5,-15.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4011 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-13.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4144 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4145 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4146 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4147 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4148 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4149 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4151 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4152 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4153 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4154 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4155 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4157 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4158 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4159 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-3.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4160 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-3.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4161 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-3.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4162 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-3.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4163 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-3.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4165 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-3.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4166 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-3.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4167 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-3.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4168 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-3.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4169 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-3.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4170 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-3.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4172 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-3.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4173 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-3.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4174 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-3.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4175 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,0.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4176 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,0.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4177 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4178 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4179 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-5.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4180 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-5.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4181 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-7.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4182 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-7.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4187 - components: - - pos: 30.5,-6.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4188 - components: - - pos: 30.5,-4.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4189 - components: - - pos: 30.5,-3.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4191 - components: - - pos: 30.5,-1.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4192 - components: - - pos: 30.5,1.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4194 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4195 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4202 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-0.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4207 - components: - - pos: 24.5,-5.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4208 - components: - - pos: 24.5,-6.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4210 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-7.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4211 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-7.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4212 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-7.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4215 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-2.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4216 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4217 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-0.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4218 - components: - - rot: 3.141592653589793 rad - pos: 24.5,0.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4219 - components: - - rot: 3.141592653589793 rad - pos: 24.5,1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4220 - components: - - rot: 3.141592653589793 rad - pos: 24.5,2.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4222 - components: - - rot: 3.141592653589793 rad - pos: 25.5,-0.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4223 - components: - - rot: 3.141592653589793 rad - pos: 25.5,0.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4224 - components: - - rot: 3.141592653589793 rad - pos: 25.5,1.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4225 - components: - - rot: 3.141592653589793 rad - pos: 25.5,2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4228 - components: - - pos: 25.5,3.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4229 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,4.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4230 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,4.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4459 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,6.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4460 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,6.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4461 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,6.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4462 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,8.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4463 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,8.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4648 - components: - - pos: -5.5,-12.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4842 - components: - - pos: -16.5,-25.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4857 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-22.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4858 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-22.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4861 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-30.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4862 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-30.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4871 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-16.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4872 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-16.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4873 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-18.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4874 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-17.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4877 - components: - - pos: -19.5,-14.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4889 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-17.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4891 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4933 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-30.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4934 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-30.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4938 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-23.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4939 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-23.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4943 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-20.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4944 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4962 - components: - - pos: -16.5,-23.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4963 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-22.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4964 - components: - - pos: -16.5,-26.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4966 - components: - - pos: -16.5,-24.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4987 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-23.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4989 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-22.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4993 - components: - - pos: -19.5,-21.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5003 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-23.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5005 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-16.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5007 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-17.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5013 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5020 - components: - - pos: -24.5,-26.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5021 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-22.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5022 - components: - - pos: -24.5,-25.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5023 - components: - - pos: -26.5,-23.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5077 - components: - - pos: -6.5,-13.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5078 - components: - - pos: -6.5,-14.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5079 - components: - - pos: -6.5,-15.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5080 - components: - - pos: -6.5,-16.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5081 - components: - - pos: -6.5,-17.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5082 - components: - - pos: -6.5,-18.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5083 - components: - - pos: -6.5,-19.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5084 - components: - - pos: -6.5,-20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5085 - components: - - pos: -6.5,-21.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5087 - components: - - pos: -6.5,-23.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5088 - components: - - pos: -6.5,-24.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5089 - components: - - pos: -6.5,-25.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5090 - components: - - pos: -6.5,-26.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5091 - components: - - pos: -6.5,-27.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5092 - components: - - pos: -6.5,-28.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5093 - components: - - pos: -6.5,-29.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5094 - components: - - pos: -6.5,-30.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5095 - components: - - pos: -6.5,-31.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5097 - components: - - pos: -6.5,-33.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5098 - components: - - pos: -6.5,-34.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5099 - components: - - pos: 1.5,-34.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5100 - components: - - pos: 1.5,-33.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5102 - components: - - pos: 1.5,-31.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5103 - components: - - pos: 1.5,-30.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5104 - components: - - pos: 1.5,-29.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5105 - components: - - pos: 1.5,-28.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5106 - components: - - pos: 1.5,-27.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5107 - components: - - pos: 1.5,-26.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5108 - components: - - pos: 1.5,-25.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5109 - components: - - pos: 1.5,-24.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5110 - components: - - pos: 1.5,-23.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5112 - components: - - pos: 1.5,-21.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5114 - components: - - pos: 1.5,-19.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5115 - components: - - pos: 1.5,-18.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5116 - components: - - pos: 1.5,-17.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5117 - components: - - pos: 1.5,-16.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5118 - components: - - pos: 1.5,-15.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5119 - components: - - pos: 1.5,-14.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5120 - components: - - pos: 1.5,-13.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5122 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-35.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5123 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-35.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5124 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-35.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5125 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-35.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5127 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-35.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5128 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-35.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5130 - components: - - pos: -5.5,-13.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5131 - components: - - pos: -5.5,-14.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5132 - components: - - pos: -5.5,-15.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5133 - components: - - pos: -5.5,-16.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5134 - components: - - pos: -5.5,-17.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5135 - components: - - pos: -5.5,-18.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5136 - components: - - pos: -5.5,-19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5137 - components: - - pos: -5.5,-20.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5139 - components: - - pos: -5.5,-22.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5140 - components: - - pos: -5.5,-23.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5141 - components: - - pos: -5.5,-24.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5143 - components: - - pos: -5.5,-26.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5144 - components: - - pos: -5.5,-27.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5145 - components: - - pos: -5.5,-28.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5146 - components: - - pos: -5.5,-29.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5147 - components: - - pos: -5.5,-30.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5149 - components: - - pos: -5.5,-32.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5150 - components: - - pos: -5.5,-33.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5151 - components: - - pos: 0.5,-33.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5152 - components: - - pos: 0.5,-32.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5154 - components: - - pos: 0.5,-30.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5155 - components: - - pos: 0.5,-29.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5156 - components: - - pos: 0.5,-28.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5157 - components: - - pos: 0.5,-27.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5158 - components: - - pos: 0.5,-26.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5159 - components: - - pos: 0.5,-25.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5160 - components: - - pos: 0.5,-24.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5161 - components: - - pos: 0.5,-23.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5162 - components: - - pos: 0.5,-22.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5164 - components: - - pos: 0.5,-20.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5165 - components: - - pos: 0.5,-19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5166 - components: - - pos: 0.5,-18.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5167 - components: - - pos: 0.5,-17.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5168 - components: - - pos: 0.5,-16.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5169 - components: - - pos: 0.5,-15.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5170 - components: - - pos: 0.5,-14.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5171 - components: - - pos: 0.5,-13.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5172 - components: - - pos: 0.5,-12.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5173 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-34.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5175 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-34.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5176 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-34.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5177 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-34.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5180 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-35.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5181 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-35.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5182 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-35.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5183 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-34.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5184 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-34.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5185 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-34.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5186 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-34.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5187 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-34.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5190 - components: - - pos: -10.5,-36.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5191 - components: - - pos: -10.5,-37.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5192 - components: - - pos: -10.5,-38.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5193 - components: - - pos: -10.5,-39.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5194 - components: - - pos: -10.5,-40.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5196 - components: - - pos: -10.5,-42.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5197 - components: - - pos: -10.5,-43.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5198 - components: - - pos: -10.5,-44.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5199 - components: - - pos: -10.5,-45.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5200 - components: - - pos: -10.5,-46.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5201 - components: - - pos: -10.5,-47.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5202 - components: - - pos: -10.5,-48.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5203 - components: - - pos: -10.5,-49.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5204 - components: - - pos: -11.5,-35.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5205 - components: - - pos: -11.5,-36.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5206 - components: - - pos: -11.5,-37.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5207 - components: - - pos: -11.5,-38.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5208 - components: - - pos: -11.5,-39.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5209 - components: - - pos: -11.5,-40.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5210 - components: - - pos: -11.5,-41.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5212 - components: - - pos: -11.5,-43.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5213 - components: - - pos: -11.5,-44.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5214 - components: - - pos: -11.5,-45.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5215 - components: - - pos: -11.5,-46.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5216 - components: - - pos: -11.5,-47.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5217 - components: - - pos: -11.5,-48.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5218 - components: - - pos: -11.5,-49.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5219 - components: - - pos: -11.5,-50.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5220 - components: - - pos: -10.5,-50.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5221 - components: - - pos: -10.5,-51.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5391 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-21.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5394 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-22.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5476 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-18.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5564 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-26.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5566 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-26.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5585 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-28.5 - parent: 4812 - type: Transform - - uid: 5586 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-30.5 - parent: 4812 - type: Transform - - uid: 5587 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-30.5 - parent: 4812 - type: Transform - - uid: 5588 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-28.5 - parent: 4812 - type: Transform - - uid: 5589 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-28.5 - parent: 4812 - type: Transform - - uid: 5590 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-30.5 - parent: 4812 - type: Transform - - uid: 5628 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5632 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5633 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5634 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5636 - components: - - pos: 9.5,-18.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5637 - components: - - pos: 9.5,-17.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5638 - components: - - pos: 9.5,-16.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5639 - components: - - pos: 9.5,-15.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5640 - components: - - pos: 9.5,-14.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5641 - components: - - pos: 9.5,-13.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5642 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5643 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5645 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5646 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5647 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5648 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5649 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5650 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5651 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5652 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5653 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5654 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-21.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5655 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-22.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5656 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-23.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5657 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-24.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5658 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5659 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5661 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5662 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5663 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5664 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5666 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5667 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-12.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5668 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-13.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5669 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-14.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5670 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-15.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5671 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-16.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5672 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-17.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5674 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5675 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-20.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5677 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5678 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5679 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5681 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5682 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5683 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5684 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5685 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5686 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5688 - components: - - pos: 4.5,-19.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5689 - components: - - pos: 4.5,-18.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5690 - components: - - pos: 5.5,-21.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5691 - components: - - pos: 5.5,-22.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5692 - components: - - pos: 5.5,-23.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5693 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-22.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5694 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-23.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5695 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5696 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-18.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5701 - components: - - pos: 3.5,-20.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5702 - components: - - pos: 8.5,-22.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5703 - components: - - pos: 8.5,-23.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5704 - components: - - pos: 8.5,-24.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5705 - components: - - pos: 8.5,-25.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5708 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-25.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5709 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-25.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5710 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-26.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5711 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-26.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5712 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-26.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5713 - components: - - pos: 9.5,-26.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5720 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5721 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5722 - components: - - rot: 3.141592653589793 rad - pos: 22.5,-21.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5723 - components: - - rot: 3.141592653589793 rad - pos: 22.5,-22.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5724 - components: - - rot: 3.141592653589793 rad - pos: 22.5,-23.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5727 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-22.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5728 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-22.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5729 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-22.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5730 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-22.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5731 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-22.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5733 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5739 - components: - - rot: 3.141592653589793 rad - pos: 22.5,-24.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5740 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-25.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5741 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-25.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5742 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-25.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5743 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-25.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5744 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-25.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5745 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-25.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5746 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-25.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5747 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-25.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5748 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-25.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5749 - components: - - pos: 21.5,-25.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5750 - components: - - pos: 21.5,-24.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5751 - components: - - pos: 21.5,-23.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5752 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-26.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5753 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-26.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5754 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-26.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5755 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-26.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5756 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-26.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5758 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-26.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5759 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-26.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5760 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-26.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5799 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-20.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5800 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6293 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-22.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6336 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-22.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6384 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-30.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6418 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-12.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6442 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6443 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6444 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6445 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6446 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6447 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-22.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6448 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-22.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6449 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-22.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6450 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-22.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6451 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-22.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6452 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-22.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6453 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-22.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6454 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-31.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6456 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-31.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6457 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-31.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6458 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-31.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6459 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-32.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6460 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-32.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6463 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-32.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6464 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-32.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6465 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-32.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6466 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-25.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6467 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-25.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6468 - components: - - pos: -2.5,-31.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6469 - components: - - pos: -2.5,-30.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6470 - components: - - pos: -2.5,-29.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6484 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-30.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6548 - components: - - pos: -26.5,-24.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6550 - components: - - pos: -26.5,-25.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6558 - components: - - pos: -17.5,-23.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6571 - components: - - pos: -29.5,22.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6623 - components: - - pos: -17.5,-22.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6631 - components: - - pos: -24.5,-24.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6632 - components: - - pos: -30.5,22.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6656 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-27.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6657 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-27.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6665 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-24.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6677 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-22.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6691 - components: - - pos: -19.5,-20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6786 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-27.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6794 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-22.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6806 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-35.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6807 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-35.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6808 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-35.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6809 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-35.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6810 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-35.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6811 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-35.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6812 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-35.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6813 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-35.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6815 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-35.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6816 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-35.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6817 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-35.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6819 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-35.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6820 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-35.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6822 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-34.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6823 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-34.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6824 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-34.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6825 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-34.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6826 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-34.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6827 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-34.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6830 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-35.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6831 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-36.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6832 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-36.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6833 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-36.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6835 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-36.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6836 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-36.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6837 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-36.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6843 - components: - - pos: -8.5,-25.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6896 - components: - - pos: -10.5,-23.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6897 - components: - - pos: -10.5,-24.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 7059 - components: - - pos: -19.5,-19.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7078 - components: - - pos: -24.5,-12.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7079 - components: - - pos: -24.5,-13.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7080 - components: - - pos: -24.5,-14.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7081 - components: - - pos: -24.5,-15.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7082 - components: - - pos: -24.5,-16.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7083 - components: - - pos: -25.5,-13.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7084 - components: - - pos: -25.5,-14.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7085 - components: - - pos: -25.5,-15.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7086 - components: - - pos: -25.5,-16.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7190 - components: - - pos: -19.5,-18.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7200 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-26.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 7201 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-28.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7225 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-27.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7226 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-26.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7233 - components: - - pos: -19.5,-16.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7240 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-27.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7252 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-23.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7253 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7256 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-22.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7262 - components: - - pos: -17.5,-24.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 7278 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7279 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7303 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7304 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7306 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7307 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7309 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-22.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7310 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-22.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7324 - components: - - pos: -10.5,-25.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7326 - components: - - pos: -8.5,-23.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7327 - components: - - pos: -8.5,-22.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7329 - components: - - pos: -8.5,-24.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 7374 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-21.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7375 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-19.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7376 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-18.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7377 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 7378 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-18.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7464 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-28.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7797 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-28.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7807 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,13.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7808 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,13.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7809 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,13.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7810 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,13.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7811 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,13.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7812 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,13.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7813 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,14.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7814 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,14.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7815 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,14.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7816 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,14.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7817 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,14.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7820 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,13.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7821 - components: - - rot: 3.141592653589793 rad - pos: -29.5,13.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7822 - components: - - rot: 3.141592653589793 rad - pos: -30.5,14.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7824 - components: - - rot: 3.141592653589793 rad - pos: -29.5,16.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7827 - components: - - rot: 3.141592653589793 rad - pos: -29.5,19.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7829 - components: - - rot: 3.141592653589793 rad - pos: -29.5,21.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7831 - components: - - rot: 3.141592653589793 rad - pos: -29.5,23.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7834 - components: - - rot: 3.141592653589793 rad - pos: -30.5,17.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7837 - components: - - rot: 3.141592653589793 rad - pos: -30.5,20.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7838 - components: - - rot: 3.141592653589793 rad - pos: -30.5,21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7840 - components: - - rot: 3.141592653589793 rad - pos: -30.5,23.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7841 - components: - - rot: 3.141592653589793 rad - pos: -30.5,24.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7842 - components: - - rot: 3.141592653589793 rad - pos: -30.5,25.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7843 - components: - - rot: 3.141592653589793 rad - pos: -30.5,26.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7844 - components: - - rot: 3.141592653589793 rad - pos: -30.5,27.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7845 - components: - - rot: 3.141592653589793 rad - pos: -30.5,28.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7846 - components: - - rot: 3.141592653589793 rad - pos: -30.5,29.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7848 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,24.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7849 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,24.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7851 - components: - - rot: 3.141592653589793 rad - pos: -26.5,25.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7852 - components: - - rot: 3.141592653589793 rad - pos: -26.5,26.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7853 - components: - - rot: 3.141592653589793 rad - pos: -26.5,27.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7854 - components: - - rot: 3.141592653589793 rad - pos: -26.5,28.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7855 - components: - - rot: 3.141592653589793 rad - pos: -26.5,29.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7861 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,17.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7862 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,17.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 7863 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,16.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7864 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,16.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7865 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,16.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7866 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7867 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7868 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7869 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7870 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 7877 - components: - - rot: 3.141592653589793 rad - pos: -29.5,11.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7880 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,10.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7881 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7882 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7883 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7884 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,10.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7885 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,10.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 7888 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,10.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7889 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,10.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 7890 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,10.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7891 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,10.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7892 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7893 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7894 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7897 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7898 - components: - - pos: -35.5,11.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7899 - components: - - pos: -34.5,12.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7900 - components: - - pos: -35.5,12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7901 - components: - - pos: -35.5,13.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 7902 - components: - - pos: -35.5,14.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7903 - components: - - pos: -34.5,13.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7904 - components: - - pos: -34.5,14.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8225 - components: - - pos: -22.5,20.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8226 - components: - - pos: -22.5,21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8228 - components: - - pos: -22.5,23.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8229 - components: - - pos: -22.5,24.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8230 - components: - - pos: -22.5,25.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8231 - components: - - pos: -22.5,26.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8232 - components: - - pos: -23.5,21.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8233 - components: - - pos: -23.5,22.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8234 - components: - - pos: -23.5,23.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8235 - components: - - pos: -23.5,24.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8237 - components: - - pos: -23.5,26.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8297 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,16.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8298 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,16.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8299 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,16.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8312 - components: - - pos: -13.5,19.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8313 - components: - - pos: -13.5,18.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8314 - components: - - pos: -13.5,17.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8315 - components: - - pos: -11.5,18.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8316 - components: - - pos: -11.5,17.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8551 - components: - - pos: -45.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8553 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,10.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8554 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,10.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8555 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,10.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8556 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,10.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8558 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,9.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8559 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,9.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8560 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,9.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8759 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-1.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8760 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-1.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8761 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-1.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8762 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-1.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8763 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-1.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8765 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-2.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8766 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-2.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8767 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-2.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8768 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-2.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8769 - components: - - pos: -30.5,-1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8771 - components: - - pos: -30.5,0.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8774 - components: - - pos: -30.5,-3.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8775 - components: - - pos: -30.5,-4.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8776 - components: - - pos: -30.5,-5.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8780 - components: - - pos: -33.5,-4.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8781 - components: - - pos: -33.5,-5.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8782 - components: - - pos: -33.5,-6.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8785 - components: - - pos: -33.5,1.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8865 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-36.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8946 - components: - - pos: -10.5,-34.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8950 - components: - - pos: -10.5,-33.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8951 - components: - - pos: -10.5,-32.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8952 - components: - - pos: -10.5,-31.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8954 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-30.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8955 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-30.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8956 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-30.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8957 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-30.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8958 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-30.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8959 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-30.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8960 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-30.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8961 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-30.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8962 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-30.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8963 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-30.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8964 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-30.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8965 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-30.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8966 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-30.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8977 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-31.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8978 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-32.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8980 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-33.5 - parent: 4812 - type: Transform - - uid: 8981 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-33.5 - parent: 4812 - type: Transform - - uid: 8983 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-33.5 - parent: 4812 - type: Transform - - uid: 8985 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-33.5 - parent: 4812 - type: Transform - - uid: 8986 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-33.5 - parent: 4812 - type: Transform - - uid: 8988 - components: - - pos: -36.5,-34.5 - parent: 4812 - type: Transform - - uid: 8989 - components: - - pos: -36.5,-35.5 - parent: 4812 - type: Transform - - uid: 8995 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-34.5 - parent: 4812 - type: Transform - - uid: 8996 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-34.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8997 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-34.5 - parent: 4812 - type: Transform - - uid: 9000 - components: - - pos: -37.5,-36.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9001 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-35.5 - parent: 4812 - type: Transform - - uid: 9002 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-35.5 - parent: 4812 - type: Transform - - uid: 9003 - components: - - rot: 3.141592653589793 rad - pos: -40.5,-36.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9036 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9075 - components: - - pos: -45.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9116 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,12.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9118 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,2.5 - parent: 4812 - type: Transform - - color: '#03FDC3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9119 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9122 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,12.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9123 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9124 - components: - - rot: -1.5707963267948966 rad - pos: -43.5,2.5 - parent: 4812 - type: Transform - - color: '#03FDC3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9126 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,12.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9127 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,12.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9129 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,2.5 - parent: 4812 - type: Transform - - color: '#03FDC3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9132 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,2.5 - parent: 4812 - type: Transform - - color: '#03FDC3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9134 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,12.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9135 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9136 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9137 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9138 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9146 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9147 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9148 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9149 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9150 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9151 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9153 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9154 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9157 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,0.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9159 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,0.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9160 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,0.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9161 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,0.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9162 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,0.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9167 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9175 - components: - - rot: -1.5707963267948966 rad - pos: -48.5,1.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9177 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,1.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9178 - components: - - rot: -1.5707963267948966 rad - pos: -48.5,3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9179 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,1.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9180 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9181 - components: - - rot: -1.5707963267948966 rad - pos: -48.5,5.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9182 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9183 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,5.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9184 - components: - - rot: -1.5707963267948966 rad - pos: -48.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9185 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,5.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9186 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9187 - components: - - rot: -1.5707963267948966 rad - pos: -48.5,9.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9188 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9189 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,9.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9190 - components: - - rot: -1.5707963267948966 rad - pos: -48.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9191 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,9.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9192 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,11.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9205 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9207 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,8.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9208 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,8.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9209 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,8.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9210 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,8.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9211 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,8.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9213 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,6.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9214 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,6.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9215 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,6.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9216 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,6.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9217 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,6.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9219 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9220 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9221 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9222 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9223 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9225 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9226 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9227 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9228 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9229 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9231 - components: - - pos: -47.5,2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9232 - components: - - pos: -47.5,4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9233 - components: - - pos: -47.5,6.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9234 - components: - - pos: -47.5,8.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9235 - components: - - pos: -47.5,10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9238 - components: - - pos: -45.5,7.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9241 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,6.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9246 - components: - - pos: -45.5,9.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9249 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,8.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9250 - components: - - pos: -46.5,3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9252 - components: - - rot: 3.141592653589793 rad - pos: -45.5,3.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9253 - components: - - pos: -46.5,4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9255 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9257 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,12.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9259 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,10.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9262 - components: - - rot: 3.141592653589793 rad - pos: -47.5,12.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9263 - components: - - rot: 3.141592653589793 rad - pos: -47.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9489 - components: - - pos: -45.5,14.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9490 - components: - - pos: -45.5,15.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9491 - components: - - pos: -43.5,14.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9492 - components: - - pos: -43.5,15.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9493 - components: - - pos: -43.5,13.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9514 - components: - - pos: -43.5,11.5 - parent: 4812 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9515 - components: - - pos: -43.5,10.5 - parent: 4812 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9516 - components: - - pos: -43.5,9.5 - parent: 4812 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9539 - components: - - rot: 3.141592653589793 rad - pos: -42.5,3.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9541 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,2.5 - parent: 4812 - type: Transform - - color: '#03FDC3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9545 - components: - - rot: 3.141592653589793 rad - pos: -42.5,1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9546 - components: - - rot: 3.141592653589793 rad - pos: -42.5,2.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11963 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-7.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11964 - components: - - pos: -36.5,0.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11965 - components: - - pos: -36.5,-0.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11966 - components: - - pos: -36.5,-1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11967 - components: - - pos: -36.5,-2.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11968 - components: - - pos: -36.5,-3.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11969 - components: - - pos: -36.5,-4.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11970 - components: - - pos: -36.5,-5.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11971 - components: - - pos: -36.5,-6.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11973 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-8.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11974 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-8.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11975 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-8.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11976 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-8.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11977 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-8.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11978 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-8.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11979 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-7.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11980 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-7.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11981 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-7.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11984 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-8.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11985 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-8.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11986 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-8.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11987 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-8.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11989 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-7.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11990 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-7.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11991 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-7.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11992 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-7.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11993 - components: - - pos: -45.5,-8.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11994 - components: - - pos: -45.5,-9.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11995 - components: - - pos: -45.5,-10.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11996 - components: - - pos: -44.5,-9.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11997 - components: - - pos: -44.5,-10.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11998 - components: - - pos: -44.5,-11.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 12001 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 12002 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 12003 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12004 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 12005 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 12006 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 12007 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12008 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 12009 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 12012 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 12013 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 12014 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 12015 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 12016 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 12017 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12018 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 12019 - components: - - pos: -49.5,-11.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 12020 - components: - - pos: -49.5,-10.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 12021 - components: - - pos: -48.5,-10.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12022 - components: - - pos: -48.5,-12.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 12031 - components: - - pos: -44.5,-7.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor -- proto: GasPipeTJunction - entities: - - uid: 373 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,13.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 376 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,9.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 384 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 387 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-0.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 394 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-6.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 407 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 413 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,4.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 417 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,8.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 418 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,10.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 423 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,14.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 441 - components: - - pos: -5.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 454 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 464 - components: - - pos: 0.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 471 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 477 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 483 - components: - - rot: 3.141592653589793 rad - pos: -24.5,7.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 486 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,10.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 490 - components: - - pos: -25.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 496 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,13.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 506 - components: - - rot: 3.141592653589793 rad - pos: -21.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 510 - components: - - rot: 3.141592653589793 rad - pos: 2.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 513 - components: - - pos: -0.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 519 - components: - - rot: 3.141592653589793 rad - pos: -7.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 523 - components: - - pos: 8.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 527 - components: - - pos: -13.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 532 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,15.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 539 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,19.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 540 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,7.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 548 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,8.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 550 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 558 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 562 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 565 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 570 - components: - - pos: -4.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 574 - components: - - rot: 3.141592653589793 rad - pos: -8.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 579 - components: - - pos: 6.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 587 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,14.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 594 - components: - - rot: 3.141592653589793 rad - pos: 10.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 600 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,6.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 605 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 611 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-3.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 617 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-8.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 618 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 625 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 632 - components: - - pos: -6.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 642 - components: - - pos: -14.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 643 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 645 - components: - - pos: 1.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 651 - components: - - pos: -19.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 662 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-1.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 666 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 675 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,9.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 679 - components: - - pos: -24.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 681 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,14.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 682 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,16.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 694 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,17.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 699 - components: - - rot: 3.141592653589793 rad - pos: 3.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 704 - components: - - pos: -11.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 706 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,8.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 707 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 797 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-7.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 805 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-7.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 806 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 808 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-9.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 819 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 820 - components: - - pos: -2.5,2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 832 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-3.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 843 - components: - - pos: 3.5,7.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 860 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-6.5 - parent: 4812 - type: Transform - - uid: 870 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-0.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1051 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1504 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,0.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1985 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,22.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1986 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,23.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1992 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,26.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1997 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,22.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2000 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,25.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2004 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,29.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2012 - components: - - pos: -5.5,32.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2018 - components: - - pos: 0.5,32.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2022 - components: - - rot: 3.141592653589793 rad - pos: -5.5,33.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2028 - components: - - rot: 3.141592653589793 rad - pos: 0.5,33.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2035 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,26.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2037 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,24.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2046 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,24.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2048 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,29.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2056 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,25.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2065 - components: - - rot: 3.141592653589793 rad - pos: 6.5,24.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2424 - components: - - rot: 3.141592653589793 rad - pos: -13.5,23.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2435 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,24.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2965 - components: - - rot: 3.141592653589793 rad - pos: 24.5,14.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2972 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,18.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2974 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,20.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2980 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,24.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2987 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,18.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2989 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2994 - components: - - pos: 19.5,25.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2995 - components: - - rot: 3.141592653589793 rad - pos: 16.5,25.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3011 - components: - - pos: 19.5,26.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3406 - components: - - pos: -33.5,-0.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3739 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-1.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3740 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-0.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3741 - components: - - pos: -33.5,-3.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3742 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-3.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3745 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3783 - components: - - pos: -3.5,-34.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3784 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-35.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3798 - components: - - pos: 13.5,46.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 3818 - components: - - rot: 3.141592653589793 rad - pos: 14.5,44.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 3823 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,44.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3824 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,45.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3832 - components: - - pos: 5.5,45.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4003 - components: - - pos: -3.5,-31.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4004 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-32.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4150 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-3.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4164 - components: - - pos: 19.5,-2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4171 - components: - - rot: 3.141592653589793 rad - pos: 25.5,-2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4183 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4184 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,0.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4185 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-7.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4186 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-5.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4190 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-0.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4193 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4206 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-1.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4221 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-4.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4833 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-25.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4888 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-22.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4942 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4958 - components: - - pos: -17.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4976 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-27.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5006 - components: - - pos: -18.5,-17.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5012 - components: - - pos: -12.5,-22.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5018 - components: - - pos: -8.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5019 - components: - - pos: -10.5,-22.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5051 - components: - - pos: -14.5,-26.5 - parent: 4812 - type: Transform - - uid: 5096 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-32.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5101 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-32.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5113 - components: - - pos: 9.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5121 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-35.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5138 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-22.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5142 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-32.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5148 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-31.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5153 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-31.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5163 - components: - - pos: 10.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5179 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-34.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5188 - components: - - pos: -11.5,-34.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5195 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-42.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5211 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-41.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5621 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-18.5 - parent: 4812 - type: Transform - - uid: 5629 - components: - - pos: 6.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5630 - components: - - pos: 5.5,-20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5631 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5635 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-18.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5644 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5660 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5665 - components: - - pos: 8.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5673 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-19.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5676 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5680 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5687 - components: - - pos: 22.5,-20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5706 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-26.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5707 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-25.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5726 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-22.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5738 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-25.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5757 - components: - - pos: 27.5,-26.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6462 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-25.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6650 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-26.5 - parent: 4812 - type: Transform - - uid: 6785 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-26.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6814 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-35.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6818 - components: - - pos: -22.5,-36.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6828 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-34.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6834 - components: - - pos: -23.5,-35.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6895 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-26.5 - parent: 4812 - type: Transform - - uid: 7061 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-17.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7250 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-27.5 - parent: 4812 - type: Transform - - uid: 7255 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7273 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-27.5 - parent: 4812 - type: Transform - - uid: 7308 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-21.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7311 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-22.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7372 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7373 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-20.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7389 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-16.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7818 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,14.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7819 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,13.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7823 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,15.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7825 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,16.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7826 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,18.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7828 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,20.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7832 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,15.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7833 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,17.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7835 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7836 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,19.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7850 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,24.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7875 - components: - - rot: 3.141592653589793 rad - pos: -30.5,11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7876 - components: - - rot: 3.141592653589793 rad - pos: -29.5,10.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7878 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,18.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7879 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,12.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7895 - components: - - rot: 3.141592653589793 rad - pos: -35.5,10.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7896 - components: - - rot: 3.141592653589793 rad - pos: -34.5,11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8227 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,22.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8236 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,25.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8549 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,4.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8757 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-2.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8772 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8777 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-8.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8786 - components: - - pos: -36.5,1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8982 - components: - - pos: -34.5,-33.5 - parent: 4812 - type: Transform - - uid: 8984 - components: - - pos: -36.5,-33.5 - parent: 4812 - type: Transform - - uid: 8990 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-36.5 - parent: 4812 - type: Transform - - uid: 8998 - components: - - pos: -37.5,-34.5 - parent: 4812 - type: Transform - - uid: 8999 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-35.5 - parent: 4812 - type: Transform - - uid: 9130 - components: - - pos: -38.5,1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9145 - components: - - rot: 3.141592653589793 rad - pos: -38.5,2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9152 - components: - - pos: -33.5,2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9158 - components: - - rot: 3.141592653589793 rad - pos: -42.5,0.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9163 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,0.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9251 - components: - - rot: 3.141592653589793 rad - pos: -46.5,2.5 - parent: 4812 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9536 - components: - - pos: -42.5,8.5 - parent: 4812 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9537 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,7.5 - parent: 4812 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9538 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,6.5 - parent: 4812 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11982 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-8.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11988 - components: - - rot: 3.141592653589793 rad - pos: -40.5,-7.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11999 - components: - - rot: 3.141592653589793 rad - pos: -44.5,-12.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 12000 - components: - - rot: 3.141592653589793 rad - pos: -45.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 12043 - components: - - rot: 3.141592653589793 rad - pos: -25.5,-11.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor -- proto: GasPort - entities: - - uid: 3467 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3710 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-0.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3711 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3712 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-3.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3839 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,44.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5593 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-28.5 - parent: 4812 - type: Transform - - uid: 5594 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-30.5 - parent: 4812 - type: Transform - - uid: 8839 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-28.5 - parent: 4812 - type: Transform - - uid: 9037 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-37.5 - parent: 4812 - type: Transform - - uid: 9548 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,6.5 - parent: 4812 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - uid: 9549 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,7.5 - parent: 4812 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - uid: 9550 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,8.5 - parent: 4812 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- proto: GasPressurePump - entities: - - uid: 3795 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,46.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4929 - components: - - name: Distro Pump - type: MetaData - - pos: -12.5,-25.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5583 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-30.5 - parent: 4812 - type: Transform - - uid: 5584 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-28.5 - parent: 4812 - type: Transform - - uid: 8773 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,1.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9115 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,2.5 - parent: 4812 - type: Transform - - uid: 9131 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,2.5 - parent: 4812 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9206 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,4.5 - parent: 4812 - type: Transform - - uid: 9212 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,6.5 - parent: 4812 - type: Transform - - uid: 9218 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,8.5 - parent: 4812 - type: Transform - - uid: 9224 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,10.5 - parent: 4812 - type: Transform - - uid: 9230 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,12.5 - parent: 4812 - type: Transform - - uid: 9513 - components: - - pos: -43.5,12.5 - parent: 4812 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - uid: 9543 - components: - - pos: -42.5,4.5 - parent: 4812 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor -- proto: GasThermoMachineFreezer - entities: - - uid: 859 - components: - - pos: 7.5,-5.5 - parent: 4812 - type: Transform - - uid: 5803 - components: - - pos: 12.5,-17.5 - parent: 4812 - type: Transform - - uid: 7245 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-28.5 - parent: 4812 - type: Transform - - uid: 9551 - components: - - pos: -41.5,12.5 - parent: 4812 - type: Transform -- proto: GasThermoMachineHeater - entities: - - uid: 9552 - components: - - pos: -41.5,11.5 - parent: 4812 - type: Transform -- proto: GasValve - entities: - - uid: 5591 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-30.5 - parent: 4812 - type: Transform - - uid: 5592 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-28.5 - parent: 4812 - type: Transform - - uid: 9039 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-36.5 - parent: 4812 - type: Transform - - open: False - type: GasValve - - enabled: False - type: AmbientSound - - uid: 9164 - components: - - rot: 3.141592653589793 rad - pos: -47.5,-0.5 - parent: 4812 - type: Transform - - open: False - type: GasValve - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9544 - components: - - rot: 3.141592653589793 rad - pos: -42.5,5.5 - parent: 4812 - type: Transform - - open: False - type: GasValve - - enabled: False - type: AmbientSound - - color: '#947507FF' - type: AtmosPipeColor -- proto: GasVentPump - entities: - - uid: 559 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-12.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 710 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,13.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 817 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,10.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 818 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-7.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 835 - components: - - pos: 5.5,-1.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 838 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-6.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 846 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,7.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 847 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,7.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 848 - components: - - pos: -17.5,-6.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 849 - components: - - pos: -10.5,-6.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 864 - components: - - rot: 3.141592653589793 rad - pos: -2.5,1.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 871 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 877 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,4.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1511 - components: - - pos: -22.5,-8.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1685 - components: - - pos: -21.5,3.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1770 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,19.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1814 - components: - - rot: 3.141592653589793 rad - pos: 8.5,16.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1817 - components: - - rot: 3.141592653589793 rad - pos: -0.5,18.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1852 - components: - - pos: -3.5,23.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2071 - components: - - rot: 3.141592653589793 rad - pos: 8.5,24.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2072 - components: - - pos: 8.5,29.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2429 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,23.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2430 - components: - - pos: -13.5,28.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2443 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,29.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2444 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,29.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2445 - components: - - pos: -5.5,34.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2446 - components: - - pos: 0.5,34.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2474 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,22.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2475 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,22.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2842 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,27.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2966 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,14.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2969 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,14.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2983 - components: - - pos: 15.5,29.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3019 - components: - - rot: 3.141592653589793 rad - pos: 14.5,25.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3020 - components: - - rot: 3.141592653589793 rad - pos: 19.5,25.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3023 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,18.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3024 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,20.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3026 - components: - - rot: 3.141592653589793 rad - pos: 15.5,13.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3206 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,25.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3708 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-3.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3781 - components: - - pos: -1.5,-34.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3834 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,45.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3835 - components: - - rot: 3.141592653589793 rad - pos: 5.5,44.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3838 - components: - - pos: 8.5,51.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3841 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,45.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3944 - components: - - rot: 3.141592653589793 rad - pos: 9.5,43.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4196 - components: - - pos: 30.5,3.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4197 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,2.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4198 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,0.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4199 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-5.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4200 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-7.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4201 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-8.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4203 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-0.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4231 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,4.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4380 - components: - - rot: 3.141592653589793 rad - pos: 19.5,-3.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4440 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,2.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4441 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-8.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4444 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-1.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4464 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,8.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4890 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-18.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4941 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-17.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5033 - components: - - rot: 3.141592653589793 rad - pos: -24.5,-27.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5222 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-52.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5225 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-41.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5697 - components: - - pos: 4.5,-17.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5698 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-24.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5714 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-27.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5715 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-25.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5718 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-19.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5734 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-20.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5763 - components: - - pos: 27.5,-24.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5764 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-25.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5802 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-18.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6416 - components: - - pos: 8.5,-11.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6419 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-13.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6461 - components: - - pos: -1.5,-31.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6471 - components: - - pos: -2.5,-28.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6554 - components: - - pos: -16.5,-20.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6686 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-27.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6821 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-35.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6840 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-36.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6842 - components: - - pos: -19.5,-34.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7087 - components: - - rot: 3.141592653589793 rad - pos: -25.5,-17.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7323 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-26.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7379 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-20.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7380 - components: - - pos: -9.5,-17.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7856 - components: - - pos: -26.5,30.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7857 - components: - - rot: 3.141592653589793 rad - pos: -26.5,23.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7871 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,17.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7872 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,20.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7886 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,10.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7905 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,10.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7906 - components: - - pos: -35.5,15.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7910 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,15.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7911 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,12.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7912 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,18.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8238 - components: - - pos: -23.5,27.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8240 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,25.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8300 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,16.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8306 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,17.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8318 - components: - - rot: 3.141592653589793 rad - pos: -13.5,16.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8562 - components: - - pos: -18.5,11.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8838 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-28.5 - parent: 4812 - type: Transform - - ShutdownSubscribers: - - 8804 - - 7236 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8991 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-34.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - uid: 8992 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-37.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - uid: 8993 - components: - - rot: 3.141592653589793 rad - pos: -34.5,-34.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - uid: 10757 - components: - - pos: -38.5,3.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11962 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-8.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 12027 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-12.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 12028 - components: - - rot: 3.141592653589793 rad - pos: -49.5,-13.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 12029 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-12.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 12030 - components: - - pos: -49.5,-9.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 12032 - components: - - pos: -44.5,-6.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 12035 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,2.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 12037 - components: - - pos: -16.5,-11.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 12039 - components: - - rot: 3.141592653589793 rad - pos: -23.5,7.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 12041 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,0.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor -- proto: GasVentScrubber - entities: - - uid: 711 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,14.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 814 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-1.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 815 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-6.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 816 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,9.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 857 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-8.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 858 - components: - - pos: -10.5,-8.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 885 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,8.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1512 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-7.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1686 - components: - - rot: 3.141592653589793 rad - pos: -21.5,0.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1813 - components: - - rot: 3.141592653589793 rad - pos: 6.5,16.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1816 - components: - - rot: 3.141592653589793 rad - pos: -4.5,18.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1853 - components: - - pos: -1.5,23.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2073 - components: - - pos: 6.5,29.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2074 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,24.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2439 - components: - - rot: 3.141592653589793 rad - pos: -12.5,23.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2440 - components: - - pos: -12.5,28.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2441 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,26.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2442 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,26.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2447 - components: - - rot: 3.141592653589793 rad - pos: -5.5,31.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2448 - components: - - rot: 3.141592653589793 rad - pos: 0.5,31.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2963 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,14.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3001 - components: - - pos: 16.5,29.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3016 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,25.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3017 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,25.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3021 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,20.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3022 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,18.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3027 - components: - - rot: 3.141592653589793 rad - pos: 19.5,13.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3782 - components: - - pos: 10.5,20.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3813 - components: - - rot: 3.141592653589793 rad - pos: 7.5,44.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3814 - components: - - rot: 3.141592653589793 rad - pos: 11.5,43.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3815 - components: - - pos: 12.5,51.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3816 - components: - - rot: 3.141592653589793 rad - pos: 13.5,45.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4205 - components: - - rot: 3.141592653589793 rad - pos: 28.5,-4.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4214 - components: - - rot: 3.141592653589793 rad - pos: 28.5,-8.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4226 - components: - - pos: 24.5,3.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4381 - components: - - pos: 17.5,-2.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4439 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,7.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4442 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-1.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4443 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-4.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4465 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,6.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4875 - components: - - pos: -15.5,-15.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4876 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-16.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5025 - components: - - pos: -18.5,-20.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5223 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-51.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5224 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-42.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5699 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-24.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5700 - components: - - pos: 3.5,-17.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5716 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-26.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5717 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-27.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5719 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-18.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5735 - components: - - pos: 27.5,-20.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5765 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-27.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5766 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-26.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5805 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-17.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6253 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-26.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6417 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-12.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6420 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-13.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6455 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-35.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6472 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-25.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6687 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-32.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6838 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-36.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6839 - components: - - pos: -18.5,-33.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6841 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-37.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7088 - components: - - rot: 3.141592653589793 rad - pos: -24.5,-17.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7227 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-26.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7325 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-26.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7381 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-20.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7382 - components: - - pos: -11.5,-17.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7858 - components: - - pos: -30.5,30.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7873 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,16.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7874 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,19.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7887 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,11.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7907 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,11.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7908 - components: - - pos: -34.5,15.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7909 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,15.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7913 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,18.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7914 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,12.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8239 - components: - - pos: -22.5,27.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8241 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,22.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8307 - components: - - pos: -21.5,20.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8317 - components: - - rot: 3.141592653589793 rad - pos: -11.5,16.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8563 - components: - - rot: 3.141592653589793 rad - pos: -18.5,8.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8787 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-2.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8836 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-25.5 - parent: 4812 - type: Transform - - ShutdownSubscribers: - - 8804 - - 7236 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8994 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-34.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - uid: 9006 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-37.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - uid: 9007 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-34.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - uid: 10758 - components: - - rot: 3.141592653589793 rad - pos: -38.5,0.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 12023 - components: - - pos: -48.5,-9.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 12024 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-11.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 12025 - components: - - rot: 3.141592653589793 rad - pos: -48.5,-13.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 12026 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-11.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 12033 - components: - - pos: -40.5,-6.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 12034 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-6.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 12036 - components: - - pos: -30.5,2.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 12038 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-12.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 12040 - components: - - pos: -24.5,8.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 12042 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-4.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 12044 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-11.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 12418 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,4.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor -- proto: GeneratorBasic15kW - entities: - - uid: 1729 - components: - - pos: 14.5,44.5 - parent: 4812 - type: Transform -- proto: GeneratorPlasma - entities: - - uid: 10728 - components: - - pos: -50.5,-11.5 - parent: 4812 - type: Transform -- proto: GeneratorPlasmaMachineCircuitboard - entities: - - uid: 3470 - components: - - pos: 21.580725,7.4535265 - parent: 4812 - type: Transform - - uid: 4494 - components: - - pos: 17.411211,1.6407971 - parent: 4812 - type: Transform -- proto: GeneratorRTG - entities: - - uid: 10946 - components: - - pos: -40.5,22.5 - parent: 4812 - type: Transform -- proto: GeneratorUraniumMachineCircuitboard - entities: - - uid: 3286 - components: - - pos: 21.40885,7.6410265 - parent: 4812 - type: Transform -- proto: Girder - entities: - - uid: 4142 - components: - - pos: 21.5,0.5 - parent: 4812 - type: Transform - - uid: 4143 - components: - - pos: 16.5,3.5 - parent: 4812 - type: Transform - - uid: 6634 - components: - - pos: -43.5,-30.5 - parent: 4812 - type: Transform - - uid: 7260 - components: - - pos: -44.5,-26.5 - parent: 4812 - type: Transform - - uid: 8872 - components: - - pos: -31.5,-30.5 - parent: 4812 - type: Transform - - uid: 9991 - components: - - pos: -35.5,-21.5 - parent: 4812 - type: Transform - - uid: 11065 - components: - - pos: 14.5,-35.5 - parent: 4812 - type: Transform - - uid: 11106 - components: - - pos: 11.5,-31.5 - parent: 4812 - type: Transform - - uid: 11107 - components: - - pos: 10.5,-31.5 - parent: 4812 - type: Transform - - uid: 11685 - components: - - pos: 27.5,-38.5 - parent: 4812 - type: Transform - - uid: 11687 - components: - - pos: 26.5,-42.5 - parent: 4812 - type: Transform - - uid: 11692 - components: - - pos: 30.5,-41.5 - parent: 4812 - type: Transform - - uid: 11847 - components: - - pos: -13.5,11.5 - parent: 4812 - type: Transform -- proto: GravityGenerator - entities: - - uid: 9889 - components: - - pos: -53.5,-9.5 - parent: 4812 - type: Transform -- proto: Grille - entities: - - uid: 748 - components: - - pos: 9.5,18.5 - parent: 4812 - type: Transform - - uid: 749 - components: - - pos: 7.5,18.5 - parent: 4812 - type: Transform - - uid: 750 - components: - - pos: 5.5,18.5 - parent: 4812 - type: Transform - - uid: 751 - components: - - pos: 3.5,18.5 - parent: 4812 - type: Transform - - uid: 752 - components: - - pos: 2.5,18.5 - parent: 4812 - type: Transform - - uid: 753 - components: - - pos: 4.5,17.5 - parent: 4812 - type: Transform - - uid: 754 - components: - - pos: 4.5,16.5 - parent: 4812 - type: Transform - - uid: 755 - components: - - pos: 3.5,15.5 - parent: 4812 - type: Transform - - uid: 756 - components: - - pos: 2.5,15.5 - parent: 4812 - type: Transform - - uid: 757 - components: - - pos: 1.5,16.5 - parent: 4812 - type: Transform - - uid: 758 - components: - - pos: 1.5,17.5 - parent: 4812 - type: Transform - - uid: 759 - components: - - pos: -0.5,12.5 - parent: 4812 - type: Transform - - uid: 760 - components: - - pos: -4.5,12.5 - parent: 4812 - type: Transform - - uid: 761 - components: - - pos: -4.5,15.5 - parent: 4812 - type: Transform - - uid: 762 - components: - - pos: -0.5,15.5 - parent: 4812 - type: Transform - - uid: 763 - components: - - pos: -7.5,15.5 - parent: 4812 - type: Transform - - uid: 764 - components: - - pos: -8.5,15.5 - parent: 4812 - type: Transform - - uid: 765 - components: - - pos: -9.5,16.5 - parent: 4812 - type: Transform - - uid: 766 - components: - - pos: -9.5,17.5 - parent: 4812 - type: Transform - - uid: 767 - components: - - pos: -8.5,18.5 - parent: 4812 - type: Transform - - uid: 768 - components: - - pos: -7.5,18.5 - parent: 4812 - type: Transform - - uid: 769 - components: - - pos: -6.5,17.5 - parent: 4812 - type: Transform - - uid: 770 - components: - - pos: -6.5,16.5 - parent: 4812 - type: Transform - - uid: 774 - components: - - pos: -4.5,-9.5 - parent: 4812 - type: Transform - - uid: 775 - components: - - pos: -0.5,-9.5 - parent: 4812 - type: Transform - - uid: 776 - components: - - pos: -6.5,-10.5 - parent: 4812 - type: Transform - - uid: 777 - components: - - pos: -8.5,-10.5 - parent: 4812 - type: Transform - - uid: 778 - components: - - pos: -9.5,-10.5 - parent: 4812 - type: Transform - - uid: 779 - components: - - pos: -12.5,-10.5 - parent: 4812 - type: Transform - - uid: 780 - components: - - pos: -14.5,-10.5 - parent: 4812 - type: Transform - - uid: 781 - components: - - pos: -16.5,-10.5 - parent: 4812 - type: Transform - - uid: 788 - components: - - pos: 2.5,1.5 - parent: 4812 - type: Transform - - uid: 907 - components: - - pos: -18.5,18.5 - parent: 4812 - type: Transform - - uid: 908 - components: - - pos: -19.5,18.5 - parent: 4812 - type: Transform - - uid: 909 - components: - - pos: -21.5,14.5 - parent: 4812 - type: Transform - - uid: 910 - components: - - pos: -21.5,11.5 - parent: 4812 - type: Transform - - uid: 911 - components: - - pos: -21.5,8.5 - parent: 4812 - type: Transform - - uid: 912 - components: - - pos: -24.5,3.5 - parent: 4812 - type: Transform - - uid: 913 - components: - - pos: -24.5,4.5 - parent: 4812 - type: Transform - - uid: 914 - components: - - pos: -24.5,-0.5 - parent: 4812 - type: Transform - - uid: 915 - components: - - pos: -24.5,0.5 - parent: 4812 - type: Transform - - uid: 1964 - components: - - pos: -10.5,26.5 - parent: 4812 - type: Transform - - uid: 1966 - components: - - pos: 7.5,27.5 - parent: 4812 - type: Transform - - uid: 2199 - components: - - pos: -6.5,30.5 - parent: 4812 - type: Transform - - uid: 2202 - components: - - pos: -6.5,28.5 - parent: 4812 - type: Transform - - uid: 2205 - components: - - pos: -4.5,27.5 - parent: 4812 - type: Transform - - uid: 2206 - components: - - pos: -2.5,27.5 - parent: 4812 - type: Transform - - uid: 2207 - components: - - pos: -0.5,27.5 - parent: 4812 - type: Transform - - uid: 2210 - components: - - pos: -9.5,32.5 - parent: 4812 - type: Transform - - uid: 2211 - components: - - pos: -9.5,34.5 - parent: 4812 - type: Transform - - uid: 2212 - components: - - pos: -9.5,35.5 - parent: 4812 - type: Transform - - uid: 2213 - components: - - pos: -8.5,35.5 - parent: 4812 - type: Transform - - uid: 2214 - components: - - pos: -6.5,35.5 - parent: 4812 - type: Transform - - uid: 2215 - components: - - pos: -6.5,36.5 - parent: 4812 - type: Transform - - uid: 2216 - components: - - pos: -5.5,36.5 - parent: 4812 - type: Transform - - uid: 2217 - components: - - pos: -3.5,36.5 - parent: 4812 - type: Transform - - uid: 2218 - components: - - pos: -2.5,36.5 - parent: 4812 - type: Transform - - uid: 2219 - components: - - pos: -1.5,36.5 - parent: 4812 - type: Transform - - uid: 2220 - components: - - pos: 0.5,36.5 - parent: 4812 - type: Transform - - uid: 2221 - components: - - pos: 1.5,36.5 - parent: 4812 - type: Transform - - uid: 2222 - components: - - pos: 1.5,35.5 - parent: 4812 - type: Transform - - uid: 2223 - components: - - pos: 3.5,35.5 - parent: 4812 - type: Transform - - uid: 2224 - components: - - pos: 4.5,35.5 - parent: 4812 - type: Transform - - uid: 2225 - components: - - pos: 4.5,34.5 - parent: 4812 - type: Transform - - uid: 2226 - components: - - pos: 6.5,33.5 - parent: 4812 - type: Transform - - uid: 2227 - components: - - pos: 6.5,23.5 - parent: 4812 - type: Transform - - uid: 2228 - components: - - pos: 8.5,23.5 - parent: 4812 - type: Transform - - uid: 2232 - components: - - pos: 4.5,24.5 - parent: 4812 - type: Transform - - uid: 2233 - components: - - pos: 4.5,26.5 - parent: 4812 - type: Transform - - uid: 2237 - components: - - pos: -9.5,22.5 - parent: 4812 - type: Transform - - uid: 2238 - components: - - pos: -9.5,24.5 - parent: 4812 - type: Transform - - uid: 2239 - components: - - pos: 8.5,27.5 - parent: 4812 - type: Transform - - uid: 2240 - components: - - pos: 5.5,27.5 - parent: 4812 - type: Transform - - uid: 2242 - components: - - pos: -12.5,30.5 - parent: 4812 - type: Transform - - uid: 2243 - components: - - pos: -11.5,30.5 - parent: 4812 - type: Transform - - uid: 2464 - components: - - pos: -12.5,26.5 - parent: 4812 - type: Transform - - uid: 2465 - components: - - pos: -13.5,26.5 - parent: 4812 - type: Transform - - uid: 2669 - components: - - pos: 1.5,30.5 - parent: 4812 - type: Transform - - uid: 2670 - components: - - pos: 1.5,28.5 - parent: 4812 - type: Transform - - uid: 2770 - components: - - pos: 18.5,31.5 - parent: 4812 - type: Transform - - uid: 2818 - components: - - pos: 16.5,36.5 - parent: 4812 - type: Transform - - uid: 2862 - components: - - pos: 16.5,28.5 - parent: 4812 - type: Transform - - uid: 2871 - components: - - pos: 19.5,22.5 - parent: 4812 - type: Transform - - uid: 2872 - components: - - pos: 21.5,21.5 - parent: 4812 - type: Transform - - uid: 2873 - components: - - pos: 21.5,19.5 - parent: 4812 - type: Transform - - uid: 2874 - components: - - pos: 14.5,22.5 - parent: 4812 - type: Transform - - uid: 2875 - components: - - pos: 13.5,17.5 - parent: 4812 - type: Transform - - uid: 2876 - components: - - pos: 13.5,19.5 - parent: 4812 - type: Transform - - uid: 2877 - components: - - pos: 13.5,13.5 - parent: 4812 - type: Transform - - uid: 2878 - components: - - pos: 14.5,16.5 - parent: 4812 - type: Transform - - uid: 2879 - components: - - pos: 16.5,16.5 - parent: 4812 - type: Transform - - uid: 2880 - components: - - pos: 18.5,16.5 - parent: 4812 - type: Transform - - uid: 2881 - components: - - pos: 20.5,16.5 - parent: 4812 - type: Transform - - uid: 2907 - components: - - pos: 25.5,13.5 - parent: 4812 - type: Transform - - uid: 2908 - components: - - pos: 25.5,15.5 - parent: 4812 - type: Transform - - uid: 2909 - components: - - pos: 21.5,13.5 - parent: 4812 - type: Transform - - uid: 2910 - components: - - pos: 23.5,17.5 - parent: 4812 - type: Transform - - uid: 2911 - components: - - pos: 26.5,16.5 - parent: 4812 - type: Transform - - uid: 2912 - components: - - pos: 27.5,16.5 - parent: 4812 - type: Transform - - uid: 2913 - components: - - pos: 28.5,16.5 - parent: 4812 - type: Transform - - uid: 2914 - components: - - pos: 28.5,15.5 - parent: 4812 - type: Transform - - uid: 2915 - components: - - pos: 28.5,13.5 - parent: 4812 - type: Transform - - uid: 2916 - components: - - pos: 28.5,12.5 - parent: 4812 - type: Transform - - uid: 2917 - components: - - pos: 27.5,12.5 - parent: 4812 - type: Transform - - uid: 2918 - components: - - pos: 26.5,12.5 - parent: 4812 - type: Transform - - uid: 3031 - components: - - pos: 18.5,30.5 - parent: 4812 - type: Transform - - uid: 3032 - components: - - pos: 19.5,29.5 - parent: 4812 - type: Transform - - uid: 3035 - components: - - pos: 22.5,23.5 - parent: 4812 - type: Transform - - uid: 3036 - components: - - pos: 22.5,26.5 - parent: 4812 - type: Transform - - uid: 3037 - components: - - pos: 20.5,29.5 - parent: 4812 - type: Transform - - uid: 3114 - components: - - pos: 21.5,26.5 - parent: 4812 - type: Transform - - uid: 3115 - components: - - pos: 23.5,26.5 - parent: 4812 - type: Transform - - uid: 3116 - components: - - pos: 22.5,29.5 - parent: 4812 - type: Transform - - uid: 3701 - components: - - pos: 10.5,54.5 - parent: 4812 - type: Transform - - uid: 4385 - components: - - pos: 19.5,-6.5 - parent: 4812 - type: Transform - - uid: 4386 - components: - - pos: 18.5,-6.5 - parent: 4812 - type: Transform - - uid: 4387 - components: - - pos: 17.5,-6.5 - parent: 4812 - type: Transform - - uid: 4388 - components: - - pos: 18.5,-4.5 - parent: 4812 - type: Transform - - uid: 4389 - components: - - pos: 17.5,-8.5 - parent: 4812 - type: Transform - - uid: 4390 - components: - - pos: 18.5,-8.5 - parent: 4812 - type: Transform - - uid: 4391 - components: - - pos: 19.5,-8.5 - parent: 4812 - type: Transform - - uid: 4392 - components: - - pos: 27.5,-6.5 - parent: 4812 - type: Transform - - uid: 4393 - components: - - pos: 26.5,-4.5 - parent: 4812 - type: Transform - - uid: 4394 - components: - - pos: 27.5,-10.5 - parent: 4812 - type: Transform - - uid: 4395 - components: - - pos: 26.5,-0.5 - parent: 4812 - type: Transform - - uid: 4396 - components: - - pos: 27.5,1.5 - parent: 4812 - type: Transform - - uid: 4397 - components: - - pos: 29.5,1.5 - parent: 4812 - type: Transform - - uid: 4398 - components: - - pos: 32.5,4.5 - parent: 4812 - type: Transform - - uid: 4399 - components: - - pos: 32.5,3.5 - parent: 4812 - type: Transform - - uid: 4400 - components: - - pos: 33.5,3.5 - parent: 4812 - type: Transform - - uid: 4401 - components: - - pos: 34.5,3.5 - parent: 4812 - type: Transform - - uid: 4402 - components: - - pos: 34.5,1.5 - parent: 4812 - type: Transform - - uid: 4403 - components: - - pos: 33.5,1.5 - parent: 4812 - type: Transform - - uid: 4404 - components: - - pos: 32.5,1.5 - parent: 4812 - type: Transform - - uid: 4405 - components: - - pos: 31.5,1.5 - parent: 4812 - type: Transform - - uid: 4406 - components: - - pos: 34.5,-0.5 - parent: 4812 - type: Transform - - uid: 4407 - components: - - pos: 33.5,-0.5 - parent: 4812 - type: Transform - - uid: 4408 - components: - - pos: 32.5,-0.5 - parent: 4812 - type: Transform - - uid: 4409 - components: - - pos: 32.5,-1.5 - parent: 4812 - type: Transform - - uid: 4410 - components: - - pos: 32.5,-2.5 - parent: 4812 - type: Transform - - uid: 4411 - components: - - pos: 32.5,-3.5 - parent: 4812 - type: Transform - - uid: 4412 - components: - - pos: 32.5,-4.5 - parent: 4812 - type: Transform - - uid: 4413 - components: - - pos: 33.5,-4.5 - parent: 4812 - type: Transform - - uid: 4414 - components: - - pos: 34.5,-4.5 - parent: 4812 - type: Transform - - uid: 4415 - components: - - pos: 34.5,-6.5 - parent: 4812 - type: Transform - - uid: 4416 - components: - - pos: 33.5,-6.5 - parent: 4812 - type: Transform - - uid: 4417 - components: - - pos: 32.5,-6.5 - parent: 4812 - type: Transform - - uid: 4418 - components: - - pos: 31.5,-6.5 - parent: 4812 - type: Transform - - uid: 4419 - components: - - pos: 32.5,-9.5 - parent: 4812 - type: Transform - - uid: 4420 - components: - - pos: 32.5,-8.5 - parent: 4812 - type: Transform - - uid: 4421 - components: - - pos: 33.5,-8.5 - parent: 4812 - type: Transform - - uid: 4422 - components: - - pos: 34.5,-8.5 - parent: 4812 - type: Transform - - uid: 4437 - components: - - pos: 14.5,-12.5 - parent: 4812 - type: Transform - - uid: 4438 - components: - - pos: 14.5,-11.5 - parent: 4812 - type: Transform - - uid: 4610 - components: - - pos: 28.5,7.5 - parent: 4812 - type: Transform - - uid: 4611 - components: - - pos: 29.5,7.5 - parent: 4812 - type: Transform - - uid: 4612 - components: - - pos: 30.5,7.5 - parent: 4812 - type: Transform - - uid: 4613 - components: - - pos: 32.5,7.5 - parent: 4812 - type: Transform - - uid: 4614 - components: - - pos: 33.5,7.5 - parent: 4812 - type: Transform - - uid: 4615 - components: - - pos: 26.5,9.5 - parent: 4812 - type: Transform - - uid: 4616 - components: - - pos: 26.5,8.5 - parent: 4812 - type: Transform - - uid: 4617 - components: - - pos: 22.5,-11.5 - parent: 4812 - type: Transform - - uid: 4618 - components: - - pos: 22.5,-10.5 - parent: 4812 - type: Transform - - uid: 4619 - components: - - pos: 24.5,-11.5 - parent: 4812 - type: Transform - - uid: 4620 - components: - - pos: 24.5,-12.5 - parent: 4812 - type: Transform - - uid: 4621 - components: - - pos: 25.5,-12.5 - parent: 4812 - type: Transform - - uid: 4622 - components: - - pos: 26.5,-12.5 - parent: 4812 - type: Transform - - uid: 4623 - components: - - pos: 27.5,-12.5 - parent: 4812 - type: Transform - - uid: 4624 - components: - - pos: 30.5,-12.5 - parent: 4812 - type: Transform - - uid: 4625 - components: - - pos: 31.5,-12.5 - parent: 4812 - type: Transform - - uid: 4626 - components: - - pos: 32.5,-12.5 - parent: 4812 - type: Transform - - uid: 4722 - components: - - pos: -12.5,-54.5 - parent: 4812 - type: Transform - - uid: 4723 - components: - - pos: -12.5,-55.5 - parent: 4812 - type: Transform - - uid: 4726 - components: - - pos: -9.5,-55.5 - parent: 4812 - type: Transform - - uid: 4727 - components: - - pos: -9.5,-54.5 - parent: 4812 - type: Transform - - uid: 4728 - components: - - pos: -9.5,-52.5 - parent: 4812 - type: Transform - - uid: 4729 - components: - - pos: -9.5,-51.5 - parent: 4812 - type: Transform - - uid: 4730 - components: - - pos: -8.5,-51.5 - parent: 4812 - type: Transform - - uid: 4731 - components: - - pos: -7.5,-51.5 - parent: 4812 - type: Transform - - uid: 4732 - components: - - pos: -9.5,-49.5 - parent: 4812 - type: Transform - - uid: 4733 - components: - - pos: -9.5,-49.5 - parent: 4812 - type: Transform - - uid: 4734 - components: - - pos: -8.5,-49.5 - parent: 4812 - type: Transform - - uid: 4735 - components: - - pos: -7.5,-49.5 - parent: 4812 - type: Transform - - uid: 4740 - components: - - pos: -7.5,-44.5 - parent: 4812 - type: Transform - - uid: 4741 - components: - - pos: -9.5,-44.5 - parent: 4812 - type: Transform - - uid: 4742 - components: - - pos: -8.5,-44.5 - parent: 4812 - type: Transform - - uid: 4743 - components: - - pos: -7.5,-42.5 - parent: 4812 - type: Transform - - uid: 4744 - components: - - pos: -8.5,-42.5 - parent: 4812 - type: Transform - - uid: 4745 - components: - - pos: -9.5,-42.5 - parent: 4812 - type: Transform - - uid: 4746 - components: - - pos: -9.5,-41.5 - parent: 4812 - type: Transform - - uid: 4747 - components: - - pos: -12.5,-41.5 - parent: 4812 - type: Transform - - uid: 4748 - components: - - pos: -12.5,-42.5 - parent: 4812 - type: Transform - - uid: 4749 - components: - - pos: -13.5,-42.5 - parent: 4812 - type: Transform - - uid: 4750 - components: - - pos: -14.5,-42.5 - parent: 4812 - type: Transform - - uid: 4751 - components: - - pos: -12.5,-44.5 - parent: 4812 - type: Transform - - uid: 4752 - components: - - pos: -13.5,-44.5 - parent: 4812 - type: Transform - - uid: 4753 - components: - - pos: -14.5,-44.5 - parent: 4812 - type: Transform - - uid: 4758 - components: - - pos: -14.5,-49.5 - parent: 4812 - type: Transform - - uid: 4759 - components: - - pos: -13.5,-49.5 - parent: 4812 - type: Transform - - uid: 4760 - components: - - pos: -12.5,-49.5 - parent: 4812 - type: Transform - - uid: 4761 - components: - - pos: -12.5,-52.5 - parent: 4812 - type: Transform - - uid: 4762 - components: - - pos: -12.5,-51.5 - parent: 4812 - type: Transform - - uid: 4763 - components: - - pos: -13.5,-51.5 - parent: 4812 - type: Transform - - uid: 4764 - components: - - pos: -14.5,-51.5 - parent: 4812 - type: Transform - - uid: 4765 - components: - - pos: -9.5,-39.5 - parent: 4812 - type: Transform - - uid: 4766 - components: - - pos: -9.5,-38.5 - parent: 4812 - type: Transform - - uid: 4767 - components: - - pos: -9.5,-37.5 - parent: 4812 - type: Transform - - uid: 4768 - components: - - pos: -12.5,-38.5 - parent: 4812 - type: Transform - - uid: 4769 - components: - - pos: -8.5,-36.5 - parent: 4812 - type: Transform - - uid: 4770 - components: - - pos: -5.5,-36.5 - parent: 4812 - type: Transform - - uid: 4771 - components: - - pos: -4.5,-36.5 - parent: 4812 - type: Transform - - uid: 4772 - components: - - pos: -3.5,-36.5 - parent: 4812 - type: Transform - - uid: 4773 - components: - - pos: -2.5,-36.5 - parent: 4812 - type: Transform - - uid: 4774 - components: - - pos: -1.5,-36.5 - parent: 4812 - type: Transform - - uid: 4775 - components: - - pos: -0.5,-36.5 - parent: 4812 - type: Transform - - uid: 4776 - components: - - pos: 0.5,-36.5 - parent: 4812 - type: Transform - - uid: 4777 - components: - - pos: -1.5,-33.5 - parent: 4812 - type: Transform - - uid: 4778 - components: - - pos: -2.5,-33.5 - parent: 4812 - type: Transform - - uid: 4779 - components: - - pos: -3.5,-33.5 - parent: 4812 - type: Transform - - uid: 4780 - components: - - pos: -1.5,-14.5 - parent: 4812 - type: Transform - - uid: 4781 - components: - - pos: -2.5,-14.5 - parent: 4812 - type: Transform - - uid: 4782 - components: - - pos: -3.5,-14.5 - parent: 4812 - type: Transform - - uid: 4796 - components: - - pos: -4.5,-28.5 - parent: 4812 - type: Transform - - uid: 4978 - components: - - pos: -45.5,-27.5 - parent: 4812 - type: Transform - - uid: 5054 - components: - - pos: -14.5,-19.5 - parent: 4812 - type: Transform - - uid: 5055 - components: - - pos: -16.5,-19.5 - parent: 4812 - type: Transform - - uid: 5309 - components: - - pos: -4.5,-26.5 - parent: 4812 - type: Transform - - uid: 5310 - components: - - pos: -2.5,-23.5 - parent: 4812 - type: Transform - - uid: 5311 - components: - - pos: -0.5,-27.5 - parent: 4812 - type: Transform - - uid: 5343 - components: - - pos: 15.5,-13.5 - parent: 4812 - type: Transform - - uid: 5344 - components: - - pos: 16.5,-12.5 - parent: 4812 - type: Transform - - uid: 5345 - components: - - pos: 16.5,-11.5 - parent: 4812 - type: Transform - - uid: 5346 - components: - - pos: 16.5,-10.5 - parent: 4812 - type: Transform - - uid: 5347 - components: - - pos: 17.5,-10.5 - parent: 4812 - type: Transform - - uid: 5348 - components: - - pos: 18.5,-10.5 - parent: 4812 - type: Transform - - uid: 5349 - components: - - pos: 19.5,-10.5 - parent: 4812 - type: Transform - - uid: 5350 - components: - - pos: 20.5,-10.5 - parent: 4812 - type: Transform - - uid: 5351 - components: - - pos: 20.5,-11.5 - parent: 4812 - type: Transform - - uid: 5352 - components: - - pos: 20.5,-12.5 - parent: 4812 - type: Transform - - uid: 5353 - components: - - pos: 21.5,-18.5 - parent: 4812 - type: Transform - - uid: 5354 - components: - - pos: 21.5,-17.5 - parent: 4812 - type: Transform - - uid: 5355 - components: - - pos: 21.5,-16.5 - parent: 4812 - type: Transform - - uid: 5356 - components: - - pos: 21.5,-15.5 - parent: 4812 - type: Transform - - uid: 5357 - components: - - pos: 21.5,-14.5 - parent: 4812 - type: Transform - - uid: 5423 - components: - - pos: 8.5,-15.5 - parent: 4812 - type: Transform - - uid: 5424 - components: - - pos: 8.5,-17.5 - parent: 4812 - type: Transform - - uid: 5544 - components: - - pos: 23.5,-18.5 - parent: 4812 - type: Transform - - uid: 5545 - components: - - pos: 23.5,-17.5 - parent: 4812 - type: Transform - - uid: 5546 - components: - - pos: 24.5,-17.5 - parent: 4812 - type: Transform - - uid: 5547 - components: - - pos: 24.5,-16.5 - parent: 4812 - type: Transform - - uid: 5548 - components: - - pos: 26.5,-16.5 - parent: 4812 - type: Transform - - uid: 5549 - components: - - pos: 25.5,-16.5 - parent: 4812 - type: Transform - - uid: 5550 - components: - - pos: 27.5,-16.5 - parent: 4812 - type: Transform - - uid: 5551 - components: - - pos: 28.5,-16.5 - parent: 4812 - type: Transform - - uid: 5552 - components: - - pos: 28.5,-17.5 - parent: 4812 - type: Transform - - uid: 5553 - components: - - pos: 29.5,-17.5 - parent: 4812 - type: Transform - - uid: 5554 - components: - - pos: 29.5,-18.5 - parent: 4812 - type: Transform - - uid: 5570 - components: - - pos: 19.5,-30.5 - parent: 4812 - type: Transform - - uid: 5571 - components: - - pos: 19.5,-29.5 - parent: 4812 - type: Transform - - uid: 5572 - components: - - pos: 19.5,-28.5 - parent: 4812 - type: Transform - - uid: 5577 - components: - - pos: 27.5,-21.5 - parent: 4812 - type: Transform - - uid: 5578 - components: - - pos: 26.5,-21.5 - parent: 4812 - type: Transform - - uid: 5579 - components: - - pos: 25.5,-21.5 - parent: 4812 - type: Transform - - uid: 5601 - components: - - pos: 7.5,-26.5 - parent: 4812 - type: Transform - - uid: 5602 - components: - - pos: 7.5,-25.5 - parent: 4812 - type: Transform - - uid: 5603 - components: - - pos: 7.5,-28.5 - parent: 4812 - type: Transform - - uid: 5604 - components: - - pos: 7.5,-23.5 - parent: 4812 - type: Transform - - uid: 5605 - components: - - pos: 6.5,-22.5 - parent: 4812 - type: Transform - - uid: 5606 - components: - - pos: 4.5,-22.5 - parent: 4812 - type: Transform - - uid: 5607 - components: - - pos: 10.5,-28.5 - parent: 4812 - type: Transform - - uid: 5608 - components: - - pos: 10.5,-26.5 - parent: 4812 - type: Transform - - uid: 5609 - components: - - pos: 10.5,-24.5 - parent: 4812 - type: Transform - - uid: 5610 - components: - - pos: 10.5,-23.5 - parent: 4812 - type: Transform - - uid: 5611 - components: - - pos: 3.5,-19.5 - parent: 4812 - type: Transform - - uid: 5612 - components: - - pos: 5.5,-19.5 - parent: 4812 - type: Transform - - uid: 5613 - components: - - pos: 2.5,-18.5 - parent: 4812 - type: Transform - - uid: 5614 - components: - - pos: 2.5,-16.5 - parent: 4812 - type: Transform - - uid: 5615 - components: - - pos: 2.5,-14.5 - parent: 4812 - type: Transform - - uid: 5616 - components: - - pos: 3.5,-13.5 - parent: 4812 - type: Transform - - uid: 5617 - components: - - pos: 5.5,-13.5 - parent: 4812 - type: Transform - - uid: 5618 - components: - - pos: 7.5,-13.5 - parent: 4812 - type: Transform - - uid: 5622 - components: - - pos: 14.5,-19.5 - parent: 4812 - type: Transform - - uid: 5623 - components: - - pos: 20.5,-25.5 - parent: 4812 - type: Transform - - uid: 5624 - components: - - pos: 20.5,-23.5 - parent: 4812 - type: Transform - - uid: 5767 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-26.5 - parent: 4812 - type: Transform - - uid: 5768 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-24.5 - parent: 4812 - type: Transform - - uid: 5806 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-19.5 - parent: 4812 - type: Transform - - uid: 5833 - components: - - pos: 32.5,-22.5 - parent: 4812 - type: Transform - - uid: 5834 - components: - - pos: 33.5,-22.5 - parent: 4812 - type: Transform - - uid: 5835 - components: - - pos: 34.5,-22.5 - parent: 4812 - type: Transform - - uid: 6315 - components: - - pos: 23.5,-27.5 - parent: 4812 - type: Transform - - uid: 6316 - components: - - pos: 22.5,-27.5 - parent: 4812 - type: Transform - - uid: 6354 - components: - - pos: 9.5,-13.5 - parent: 4812 - type: Transform - - uid: 6594 - components: - - pos: -13.5,-17.5 - parent: 4812 - type: Transform - - uid: 6595 - components: - - pos: -13.5,-15.5 - parent: 4812 - type: Transform - - uid: 6596 - components: - - pos: -12.5,-13.5 - parent: 4812 - type: Transform - - uid: 6597 - components: - - pos: -10.5,-13.5 - parent: 4812 - type: Transform - - uid: 6598 - components: - - pos: -8.5,-13.5 - parent: 4812 - type: Transform - - uid: 6599 - components: - - pos: -7.5,-14.5 - parent: 4812 - type: Transform - - uid: 6600 - components: - - pos: -7.5,-16.5 - parent: 4812 - type: Transform - - uid: 6601 - components: - - pos: -7.5,-18.5 - parent: 4812 - type: Transform - - uid: 6602 - components: - - pos: -8.5,-19.5 - parent: 4812 - type: Transform - - uid: 6603 - components: - - pos: -12.5,-19.5 - parent: 4812 - type: Transform - - uid: 6633 - components: - - pos: -44.5,-30.5 - parent: 4812 - type: Transform - - uid: 6658 - components: - - pos: -37.5,-36.5 - parent: 4812 - type: Transform - - uid: 6671 - components: - - pos: -26.5,-13.5 - parent: 4812 - type: Transform - - uid: 6672 - components: - - pos: -23.5,-13.5 - parent: 4812 - type: Transform - - uid: 6678 - components: - - pos: -17.5,-16.5 - parent: 4812 - type: Transform - - uid: 6799 - components: - - pos: -15.5,-37.5 - parent: 4812 - type: Transform - - uid: 6800 - components: - - pos: -16.5,-37.5 - parent: 4812 - type: Transform - - uid: 6801 - components: - - pos: -17.5,-37.5 - parent: 4812 - type: Transform - - uid: 6802 - components: - - pos: -19.5,-40.5 - parent: 4812 - type: Transform - - uid: 6803 - components: - - pos: -20.5,-40.5 - parent: 4812 - type: Transform - - uid: 6804 - components: - - pos: -25.5,-37.5 - parent: 4812 - type: Transform - - uid: 6805 - components: - - pos: -25.5,-35.5 - parent: 4812 - type: Transform - - uid: 6983 - components: - - pos: -12.5,-35.5 - parent: 4812 - type: Transform - - uid: 7208 - components: - - pos: -7.5,-20.5 - parent: 4812 - type: Transform - - uid: 7220 - components: - - pos: -13.5,-23.5 - parent: 4812 - type: Transform - - uid: 7221 - components: - - pos: -14.5,-24.5 - parent: 4812 - type: Transform - - uid: 7222 - components: - - pos: -15.5,-24.5 - parent: 4812 - type: Transform - - uid: 7223 - components: - - pos: -17.5,-24.5 - parent: 4812 - type: Transform - - uid: 7224 - components: - - pos: -13.5,-20.5 - parent: 4812 - type: Transform - - uid: 7251 - components: - - pos: -21.5,-24.5 - parent: 4812 - type: Transform - - uid: 7258 - components: - - pos: -7.5,-25.5 - parent: 4812 - type: Transform - - uid: 7301 - components: - - pos: -38.5,-37.5 - parent: 4812 - type: Transform - - uid: 7330 - components: - - pos: -20.5,-24.5 - parent: 4812 - type: Transform - - uid: 7332 - components: - - pos: -20.5,-13.5 - parent: 4812 - type: Transform - - uid: 7340 - components: - - pos: -7.5,-26.5 - parent: 4812 - type: Transform - - uid: 7352 - components: - - pos: -18.5,-13.5 - parent: 4812 - type: Transform - - uid: 7404 - components: - - pos: -8.5,-24.5 - parent: 4812 - type: Transform - - uid: 7405 - components: - - pos: -10.5,-24.5 - parent: 4812 - type: Transform - - uid: 7432 - components: - - pos: -23.5,-22.5 - parent: 4812 - type: Transform - - uid: 7437 - components: - - pos: -24.5,-24.5 - parent: 4812 - type: Transform - - uid: 7438 - components: - - pos: -26.5,-24.5 - parent: 4812 - type: Transform - - uid: 7620 - components: - - pos: -7.5,-27.5 - parent: 4812 - type: Transform - - uid: 7915 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,10.5 - parent: 4812 - type: Transform - - uid: 7916 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,12.5 - parent: 4812 - type: Transform - - uid: 7917 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,10.5 - parent: 4812 - type: Transform - - uid: 7918 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,10.5 - parent: 4812 - type: Transform - - uid: 7919 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,13.5 - parent: 4812 - type: Transform - - uid: 7920 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,13.5 - parent: 4812 - type: Transform - - uid: 7921 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,14.5 - parent: 4812 - type: Transform - - uid: 7922 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,17.5 - parent: 4812 - type: Transform - - uid: 7923 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,17.5 - parent: 4812 - type: Transform - - uid: 7924 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,16.5 - parent: 4812 - type: Transform - - uid: 7925 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,19.5 - parent: 4812 - type: Transform - - uid: 7926 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,20.5 - parent: 4812 - type: Transform - - uid: 7927 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,20.5 - parent: 4812 - type: Transform - - uid: 7928 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,29.5 - parent: 4812 - type: Transform - - uid: 7929 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,31.5 - parent: 4812 - type: Transform - - uid: 7930 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,33.5 - parent: 4812 - type: Transform - - uid: 7931 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,33.5 - parent: 4812 - type: Transform - - uid: 7933 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,33.5 - parent: 4812 - type: Transform - - uid: 8057 - components: - - pos: -35.5,18.5 - parent: 4812 - type: Transform - - uid: 8058 - components: - - pos: -33.5,18.5 - parent: 4812 - type: Transform - - uid: 8059 - components: - - pos: -32.5,19.5 - parent: 4812 - type: Transform - - uid: 8060 - components: - - pos: -32.5,20.5 - parent: 4812 - type: Transform - - uid: 8166 - components: - - pos: -20.5,21.5 - parent: 4812 - type: Transform - - uid: 8167 - components: - - pos: -21.5,21.5 - parent: 4812 - type: Transform - - uid: 8168 - components: - - pos: -23.5,21.5 - parent: 4812 - type: Transform - - uid: 8174 - components: - - pos: -21.5,26.5 - parent: 4812 - type: Transform - - uid: 8175 - components: - - pos: -23.5,26.5 - parent: 4812 - type: Transform - - uid: 8526 - components: - - pos: -23.5,37.5 - parent: 4812 - type: Transform - - uid: 8527 - components: - - pos: -22.5,37.5 - parent: 4812 - type: Transform - - uid: 8528 - components: - - pos: -11.5,32.5 - parent: 4812 - type: Transform - - uid: 8529 - components: - - pos: -11.5,33.5 - parent: 4812 - type: Transform - - uid: 8530 - components: - - pos: -15.5,37.5 - parent: 4812 - type: Transform - - uid: 8531 - components: - - pos: -14.5,37.5 - parent: 4812 - type: Transform - - uid: 8532 - components: - - pos: -11.5,35.5 - parent: 4812 - type: Transform - - uid: 8533 - components: - - pos: -11.5,36.5 - parent: 4812 - type: Transform - - uid: 8534 - components: - - pos: -12.5,37.5 - parent: 4812 - type: Transform - - uid: 8535 - components: - - pos: -11.5,37.5 - parent: 4812 - type: Transform - - uid: 8536 - components: - - pos: -10.5,37.5 - parent: 4812 - type: Transform - - uid: 8537 - components: - - pos: -9.5,37.5 - parent: 4812 - type: Transform - - uid: 8538 - components: - - pos: -6.5,38.5 - parent: 4812 - type: Transform - - uid: 8539 - components: - - pos: -5.5,38.5 - parent: 4812 - type: Transform - - uid: 8540 - components: - - pos: -0.5,38.5 - parent: 4812 - type: Transform - - uid: 8541 - components: - - pos: 0.5,38.5 - parent: 4812 - type: Transform - - uid: 8542 - components: - - pos: 1.5,38.5 - parent: 4812 - type: Transform - - uid: 8543 - components: - - pos: 2.5,38.5 - parent: 4812 - type: Transform - - uid: 8544 - components: - - pos: 0.5,43.5 - parent: 4812 - type: Transform - - uid: 8545 - components: - - pos: 0.5,42.5 - parent: 4812 - type: Transform - - uid: 8546 - components: - - pos: 0.5,41.5 - parent: 4812 - type: Transform - - uid: 8547 - components: - - pos: 10.5,37.5 - parent: 4812 - type: Transform - - uid: 8548 - components: - - pos: 8.5,33.5 - parent: 4812 - type: Transform - - uid: 8696 - components: - - pos: -27.5,-8.5 - parent: 4812 - type: Transform - - uid: 8697 - components: - - pos: -27.5,-7.5 - parent: 4812 - type: Transform - - uid: 8698 - components: - - pos: -27.5,-6.5 - parent: 4812 - type: Transform - - uid: 8699 - components: - - pos: -29.5,-4.5 - parent: 4812 - type: Transform - - uid: 8700 - components: - - pos: -31.5,-4.5 - parent: 4812 - type: Transform - - uid: 8701 - components: - - pos: -28.5,-3.5 - parent: 4812 - type: Transform - - uid: 8702 - components: - - pos: -28.5,-0.5 - parent: 4812 - type: Transform - - uid: 8703 - components: - - pos: -29.5,0.5 - parent: 4812 - type: Transform - - uid: 8704 - components: - - pos: -31.5,0.5 - parent: 4812 - type: Transform - - uid: 8705 - components: - - pos: -27.5,2.5 - parent: 4812 - type: Transform - - uid: 8706 - components: - - pos: -27.5,3.5 - parent: 4812 - type: Transform - - uid: 8707 - components: - - pos: -27.5,4.5 - parent: 4812 - type: Transform - - uid: 8708 - components: - - pos: -35.5,1.5 - parent: 4812 - type: Transform - - uid: 8709 - components: - - pos: -35.5,3.5 - parent: 4812 - type: Transform - - uid: 8710 - components: - - pos: -35.5,5.5 - parent: 4812 - type: Transform - - uid: 8752 - components: - - pos: -44.5,-4.5 - parent: 4812 - type: Transform - - uid: 8753 - components: - - pos: -42.5,-4.5 - parent: 4812 - type: Transform - - uid: 8841 - components: - - pos: -27.5,-41.5 - parent: 4812 - type: Transform - - uid: 8842 - components: - - pos: -37.5,-38.5 - parent: 4812 - type: Transform - - uid: 8843 - components: - - pos: -36.5,-38.5 - parent: 4812 - type: Transform - - uid: 8844 - components: - - pos: -39.5,-36.5 - parent: 4812 - type: Transform - - uid: 8845 - components: - - pos: -40.5,-36.5 - parent: 4812 - type: Transform - - uid: 8846 - components: - - pos: -41.5,-36.5 - parent: 4812 - type: Transform - - uid: 8847 - components: - - pos: -41.5,-35.5 - parent: 4812 - type: Transform - - uid: 9087 - components: - - pos: -28.5,-26.5 - parent: 4812 - type: Transform - - uid: 9413 - components: - - pos: -48.5,-1.5 - parent: 4812 - type: Transform - - uid: 9414 - components: - - pos: -48.5,-0.5 - parent: 4812 - type: Transform - - uid: 9415 - components: - - pos: -48.5,0.5 - parent: 4812 - type: Transform - - uid: 9416 - components: - - pos: -48.5,1.5 - parent: 4812 - type: Transform - - uid: 9417 - components: - - pos: -48.5,2.5 - parent: 4812 - type: Transform - - uid: 9418 - components: - - pos: -48.5,3.5 - parent: 4812 - type: Transform - - uid: 9419 - components: - - pos: -48.5,4.5 - parent: 4812 - type: Transform - - uid: 9420 - components: - - pos: -48.5,5.5 - parent: 4812 - type: Transform - - uid: 9421 - components: - - pos: -48.5,6.5 - parent: 4812 - type: Transform - - uid: 9422 - components: - - pos: -48.5,7.5 - parent: 4812 - type: Transform - - uid: 9423 - components: - - pos: -48.5,8.5 - parent: 4812 - type: Transform - - uid: 9424 - components: - - pos: -48.5,9.5 - parent: 4812 - type: Transform - - uid: 9425 - components: - - pos: -48.5,10.5 - parent: 4812 - type: Transform - - uid: 9426 - components: - - pos: -48.5,11.5 - parent: 4812 - type: Transform - - uid: 9427 - components: - - pos: -48.5,12.5 - parent: 4812 - type: Transform - - uid: 9428 - components: - - pos: -48.5,13.5 - parent: 4812 - type: Transform - - uid: 9442 - components: - - pos: -50.5,11.5 - parent: 4812 - type: Transform - - uid: 9443 - components: - - pos: -50.5,9.5 - parent: 4812 - type: Transform - - uid: 9444 - components: - - pos: -50.5,7.5 - parent: 4812 - type: Transform - - uid: 9445 - components: - - pos: -50.5,5.5 - parent: 4812 - type: Transform - - uid: 9446 - components: - - pos: -50.5,3.5 - parent: 4812 - type: Transform - - uid: 9447 - components: - - pos: -50.5,1.5 - parent: 4812 - type: Transform - - uid: 9482 - components: - - pos: -46.5,16.5 - parent: 4812 - type: Transform - - uid: 9483 - components: - - pos: -46.5,17.5 - parent: 4812 - type: Transform - - uid: 9484 - components: - - pos: -45.5,15.5 - parent: 4812 - type: Transform - - uid: 9485 - components: - - pos: -44.5,15.5 - parent: 4812 - type: Transform - - uid: 9486 - components: - - pos: -43.5,15.5 - parent: 4812 - type: Transform - - uid: 9487 - components: - - pos: -42.5,16.5 - parent: 4812 - type: Transform - - uid: 9488 - components: - - pos: -42.5,17.5 - parent: 4812 - type: Transform - - uid: 9505 - components: - - pos: -47.5,13.5 - parent: 4812 - type: Transform - - uid: 9506 - components: - - pos: -46.5,13.5 - parent: 4812 - type: Transform - - uid: 9507 - components: - - pos: -45.5,13.5 - parent: 4812 - type: Transform - - uid: 9508 - components: - - pos: -44.5,13.5 - parent: 4812 - type: Transform - - uid: 9509 - components: - - pos: -43.5,13.5 - parent: 4812 - type: Transform - - uid: 9510 - components: - - pos: -42.5,13.5 - parent: 4812 - type: Transform - - uid: 9609 - components: - - pos: -41.5,-28.5 - parent: 4812 - type: Transform - - uid: 9649 - components: - - pos: -12.5,-58.5 - parent: 4812 - type: Transform - - uid: 9650 - components: - - pos: -12.5,-57.5 - parent: 4812 - type: Transform - - uid: 9653 - components: - - pos: -9.5,-58.5 - parent: 4812 - type: Transform - - uid: 9654 - components: - - pos: -9.5,-57.5 - parent: 4812 - type: Transform - - uid: 9832 - components: - - pos: -47.5,-7.5 - parent: 4812 - type: Transform - - uid: 9835 - components: - - pos: -47.5,-8.5 - parent: 4812 - type: Transform - - uid: 9861 - components: - - pos: -46.5,-11.5 - parent: 4812 - type: Transform - - uid: 9862 - components: - - pos: -46.5,-13.5 - parent: 4812 - type: Transform - - uid: 9871 - components: - - pos: -51.5,-11.5 - parent: 4812 - type: Transform - - uid: 9877 - components: - - pos: -51.5,-13.5 - parent: 4812 - type: Transform - - uid: 9909 - components: - - pos: -43.5,-13.5 - parent: 4812 - type: Transform - - uid: 9910 - components: - - pos: -43.5,-11.5 - parent: 4812 - type: Transform - - uid: 9911 - components: - - pos: -41.5,-9.5 - parent: 4812 - type: Transform - - uid: 9912 - components: - - pos: -39.5,-9.5 - parent: 4812 - type: Transform - - uid: 10315 - components: - - pos: -56.5,-23.5 - parent: 4812 - type: Transform - - uid: 10316 - components: - - pos: -53.5,-23.5 - parent: 4812 - type: Transform - - uid: 10317 - components: - - pos: -52.5,-23.5 - parent: 4812 - type: Transform - - uid: 10318 - components: - - pos: -52.5,-26.5 - parent: 4812 - type: Transform - - uid: 10319 - components: - - pos: -53.5,-26.5 - parent: 4812 - type: Transform - - uid: 10320 - components: - - pos: -54.5,-26.5 - parent: 4812 - type: Transform - - uid: 10321 - components: - - pos: -54.5,-25.5 - parent: 4812 - type: Transform - - uid: 10371 - components: - - pos: -71.5,-24.5 - parent: 4812 - type: Transform - - uid: 10372 - components: - - pos: -71.5,-25.5 - parent: 4812 - type: Transform - - uid: 10373 - components: - - pos: -71.5,-26.5 - parent: 4812 - type: Transform - - uid: 10374 - components: - - pos: -69.5,-28.5 - parent: 4812 - type: Transform - - uid: 10375 - components: - - pos: -70.5,-28.5 - parent: 4812 - type: Transform - - uid: 10376 - components: - - pos: -71.5,-28.5 - parent: 4812 - type: Transform - - uid: 10377 - components: - - pos: -71.5,-20.5 - parent: 4812 - type: Transform - - uid: 10378 - components: - - pos: -71.5,-19.5 - parent: 4812 - type: Transform - - uid: 10379 - components: - - pos: -71.5,-18.5 - parent: 4812 - type: Transform - - uid: 10380 - components: - - pos: -71.5,-16.5 - parent: 4812 - type: Transform - - uid: 10381 - components: - - pos: -70.5,-16.5 - parent: 4812 - type: Transform - - uid: 10382 - components: - - pos: -69.5,-16.5 - parent: 4812 - type: Transform - - uid: 10383 - components: - - pos: -67.5,-16.5 - parent: 4812 - type: Transform - - uid: 10384 - components: - - pos: -66.5,-16.5 - parent: 4812 - type: Transform - - uid: 10385 - components: - - pos: -65.5,-16.5 - parent: 4812 - type: Transform - - uid: 10386 - components: - - pos: -63.5,-16.5 - parent: 4812 - type: Transform - - uid: 10387 - components: - - pos: -62.5,-16.5 - parent: 4812 - type: Transform - - uid: 10388 - components: - - pos: -61.5,-16.5 - parent: 4812 - type: Transform - - uid: 10389 - components: - - pos: -67.5,-28.5 - parent: 4812 - type: Transform - - uid: 10390 - components: - - pos: -66.5,-28.5 - parent: 4812 - type: Transform - - uid: 10391 - components: - - pos: -65.5,-28.5 - parent: 4812 - type: Transform - - uid: 10392 - components: - - pos: -62.5,-28.5 - parent: 4812 - type: Transform - - uid: 10393 - components: - - pos: -61.5,-28.5 - parent: 4812 - type: Transform - - uid: 10394 - components: - - pos: -63.5,-28.5 - parent: 4812 - type: Transform - - uid: 10395 - components: - - pos: -59.5,-28.5 - parent: 4812 - type: Transform - - uid: 10396 - components: - - pos: -58.5,-28.5 - parent: 4812 - type: Transform - - uid: 10397 - components: - - pos: -57.5,-28.5 - parent: 4812 - type: Transform - - uid: 10398 - components: - - pos: -55.5,-28.5 - parent: 4812 - type: Transform - - uid: 10399 - components: - - pos: -54.5,-28.5 - parent: 4812 - type: Transform - - uid: 10400 - components: - - pos: -53.5,-28.5 - parent: 4812 - type: Transform - - uid: 10401 - components: - - pos: -51.5,-28.5 - parent: 4812 - type: Transform - - uid: 10402 - components: - - pos: -50.5,-28.5 - parent: 4812 - type: Transform - - uid: 10403 - components: - - pos: -49.5,-28.5 - parent: 4812 - type: Transform - - uid: 10411 - components: - - pos: -52.5,-7.5 - parent: 4812 - type: Transform - - uid: 10412 - components: - - pos: -53.5,-7.5 - parent: 4812 - type: Transform - - uid: 10413 - components: - - pos: -54.5,-7.5 - parent: 4812 - type: Transform - - uid: 10414 - components: - - pos: -54.5,-5.5 - parent: 4812 - type: Transform - - uid: 10415 - components: - - pos: -53.5,-5.5 - parent: 4812 - type: Transform - - uid: 10416 - components: - - pos: -52.5,-5.5 - parent: 4812 - type: Transform - - uid: 10440 - components: - - pos: -13.5,-59.5 - parent: 4812 - type: Transform - - uid: 10441 - components: - - pos: -14.5,-59.5 - parent: 4812 - type: Transform - - uid: 10609 - components: - - pos: -47.5,-24.5 - parent: 4812 - type: Transform - - uid: 10632 - components: - - pos: -47.5,-6.5 - parent: 4812 - type: Transform - - uid: 10636 - components: - - pos: -48.5,-10.5 - parent: 4812 - type: Transform - - uid: 11216 - components: - - pos: 6.5,-34.5 - parent: 4812 - type: Transform - - uid: 11217 - components: - - pos: 6.5,-38.5 - parent: 4812 - type: Transform - - uid: 11218 - components: - - pos: 6.5,-40.5 - parent: 4812 - type: Transform - - uid: 11219 - components: - - pos: 6.5,-42.5 - parent: 4812 - type: Transform - - uid: 11220 - components: - - pos: 11.5,-42.5 - parent: 4812 - type: Transform - - uid: 11354 - components: - - pos: 37.5,-31.5 - parent: 4812 - type: Transform - - uid: 11355 - components: - - pos: 38.5,-31.5 - parent: 4812 - type: Transform - - uid: 11356 - components: - - pos: 38.5,-32.5 - parent: 4812 - type: Transform - - uid: 11390 - components: - - pos: 32.5,-37.5 - parent: 4812 - type: Transform - - uid: 11391 - components: - - pos: 31.5,-37.5 - parent: 4812 - type: Transform - - uid: 11708 - components: - - pos: 53.5,-33.5 - parent: 4812 - type: Transform - - uid: 11709 - components: - - pos: 53.5,-32.5 - parent: 4812 - type: Transform - - uid: 11710 - components: - - pos: 53.5,-40.5 - parent: 4812 - type: Transform - - uid: 11711 - components: - - pos: 53.5,-39.5 - parent: 4812 - type: Transform - - uid: 11712 - components: - - pos: 53.5,-38.5 - parent: 4812 - type: Transform - - uid: 11713 - components: - - pos: 52.5,-42.5 - parent: 4812 - type: Transform - - uid: 11714 - components: - - pos: 51.5,-42.5 - parent: 4812 - type: Transform - - uid: 11715 - components: - - pos: 50.5,-42.5 - parent: 4812 - type: Transform - - uid: 11718 - components: - - pos: 46.5,-42.5 - parent: 4812 - type: Transform - - uid: 11719 - components: - - pos: 44.5,-42.5 - parent: 4812 - type: Transform - - uid: 11720 - components: - - pos: 43.5,-42.5 - parent: 4812 - type: Transform - - uid: 11721 - components: - - pos: 42.5,-42.5 - parent: 4812 - type: Transform - - uid: 11723 - components: - - pos: 39.5,-42.5 - parent: 4812 - type: Transform - - uid: 11724 - components: - - pos: 38.5,-42.5 - parent: 4812 - type: Transform - - uid: 11725 - components: - - pos: 52.5,-30.5 - parent: 4812 - type: Transform - - uid: 11726 - components: - - pos: 51.5,-30.5 - parent: 4812 - type: Transform - - uid: 11727 - components: - - pos: 50.5,-30.5 - parent: 4812 - type: Transform - - uid: 11728 - components: - - pos: 48.5,-30.5 - parent: 4812 - type: Transform - - uid: 11729 - components: - - pos: 47.5,-30.5 - parent: 4812 - type: Transform - - uid: 11730 - components: - - pos: 46.5,-30.5 - parent: 4812 - type: Transform - - uid: 11731 - components: - - pos: 44.5,-30.5 - parent: 4812 - type: Transform - - uid: 11732 - components: - - pos: 43.5,-30.5 - parent: 4812 - type: Transform - - uid: 11734 - components: - - pos: 40.5,-30.5 - parent: 4812 - type: Transform - - uid: 11740 - components: - - pos: 18.5,-39.5 - parent: 4812 - type: Transform - - uid: 11741 - components: - - pos: 17.5,-39.5 - parent: 4812 - type: Transform - - uid: 11742 - components: - - pos: 21.5,-39.5 - parent: 4812 - type: Transform - - uid: 11743 - components: - - pos: 20.5,-39.5 - parent: 4812 - type: Transform - - uid: 12108 - components: - - pos: -10.5,-56.5 - parent: 4812 - type: Transform - - uid: 12121 - components: - - pos: -53.5,17.5 - parent: 4812 - type: Transform - - uid: 12122 - components: - - pos: -52.5,17.5 - parent: 4812 - type: Transform - - uid: 12123 - components: - - pos: -51.5,17.5 - parent: 4812 - type: Transform - - uid: 12124 - components: - - pos: -50.5,17.5 - parent: 4812 - type: Transform - - uid: 12125 - components: - - pos: -49.5,17.5 - parent: 4812 - type: Transform - - uid: 12126 - components: - - pos: -49.5,15.5 - parent: 4812 - type: Transform - - uid: 12127 - components: - - pos: -50.5,15.5 - parent: 4812 - type: Transform - - uid: 12128 - components: - - pos: -51.5,15.5 - parent: 4812 - type: Transform - - uid: 12129 - components: - - pos: -52.5,15.5 - parent: 4812 - type: Transform - - uid: 12130 - components: - - pos: -53.5,15.5 - parent: 4812 - type: Transform - - uid: 12131 - components: - - pos: -57.5,12.5 - parent: 4812 - type: Transform - - uid: 12132 - components: - - pos: -57.5,11.5 - parent: 4812 - type: Transform - - uid: 12133 - components: - - pos: -57.5,10.5 - parent: 4812 - type: Transform - - uid: 12134 - components: - - pos: -57.5,9.5 - parent: 4812 - type: Transform - - uid: 12135 - components: - - pos: -57.5,8.5 - parent: 4812 - type: Transform - - uid: 12136 - components: - - pos: -57.5,7.5 - parent: 4812 - type: Transform - - uid: 12137 - components: - - pos: -57.5,6.5 - parent: 4812 - type: Transform - - uid: 12138 - components: - - pos: -57.5,5.5 - parent: 4812 - type: Transform - - uid: 12139 - components: - - pos: -57.5,4.5 - parent: 4812 - type: Transform - - uid: 12140 - components: - - pos: -57.5,3.5 - parent: 4812 - type: Transform - - uid: 12141 - components: - - pos: -57.5,2.5 - parent: 4812 - type: Transform - - uid: 12142 - components: - - pos: -57.5,1.5 - parent: 4812 - type: Transform - - uid: 12143 - components: - - pos: -57.5,0.5 - parent: 4812 - type: Transform - - uid: 12416 - components: - - pos: -8.5,-59.5 - parent: 4812 - type: Transform - - uid: 12417 - components: - - pos: -7.5,-59.5 - parent: 4812 - type: Transform -- proto: GrilleBroken - entities: - - uid: 1544 - components: - - rot: 3.141592653589793 rad - pos: 8.5,4.5 - parent: 4812 - type: Transform - - uid: 9088 - components: - - pos: -30.5,-26.5 - parent: 4812 - type: Transform - - uid: 11073 - components: - - pos: 11.5,-36.5 - parent: 4812 - type: Transform - - uid: 11081 - components: - - pos: 11.5,-38.5 - parent: 4812 - type: Transform - - uid: 11108 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-32.5 - parent: 4812 - type: Transform - - uid: 11109 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-31.5 - parent: 4812 - type: Transform - - uid: 11221 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-36.5 - parent: 4812 - type: Transform - - uid: 11222 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-32.5 - parent: 4812 - type: Transform - - uid: 11223 - components: - - pos: 11.5,-40.5 - parent: 4812 - type: Transform - - uid: 11707 - components: - - pos: 53.5,-34.5 - parent: 4812 - type: Transform - - uid: 11716 - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-30.5 - parent: 4812 - type: Transform - - uid: 11717 - components: - - pos: 45.5,-30.5 - parent: 4812 - type: Transform - - uid: 11722 - components: - - pos: 42.5,-30.5 - parent: 4812 - type: Transform - - uid: 11733 - components: - - pos: 47.5,-42.5 - parent: 4812 - type: Transform - - uid: 11735 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-42.5 - parent: 4812 - type: Transform - - uid: 11736 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-42.5 - parent: 4812 - type: Transform - - uid: 11737 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-42.5 - parent: 4812 - type: Transform - - uid: 11738 - components: - - pos: 40.5,-42.5 - parent: 4812 - type: Transform - - uid: 11849 - components: - - rot: 3.141592653589793 rad - pos: -13.5,10.5 - parent: 4812 - type: Transform - - uid: 11859 - components: - - pos: 15.5,-15.5 - parent: 4812 - type: Transform -- proto: GunSafeRifleLecter - entities: - - uid: 4809 - components: - - pos: -36.5,19.5 - parent: 4812 - type: Transform -- proto: GunSafeSubMachineGunDrozd - entities: - - uid: 10442 - components: - - pos: -33.5,19.5 - parent: 4812 - type: Transform -- proto: Handcuffs - entities: - - uid: 4865 - components: - - pos: 17.570036,-11.532839 - parent: 4812 - type: Transform - - uid: 6479 - components: - - pos: -2.4305947,-24.439144 - parent: 4812 - type: Transform - - uid: 8452 - components: - - pos: -30.406057,10.489904 - parent: 4812 - type: Transform -- proto: HandheldGPSBasic - entities: - - uid: 8590 - components: - - pos: -18.546284,12.521154 - parent: 4812 - type: Transform -- proto: HandheldHealthAnalyzer - entities: - - uid: 6246 - components: - - pos: 13.5409565,-28.418493 - parent: 4812 - type: Transform - - uid: 9027 - components: - - pos: -39.497536,-35.530823 - parent: 4812 - type: Transform -- proto: HandheldStationMap - entities: - - uid: 7295 - components: - - pos: -5.5136886,26.677116 - parent: 4812 - type: Transform -- proto: HandLabeler - entities: - - uid: 1802 - components: - - pos: -4.4966984,14.507313 - parent: 4812 - type: Transform - - uid: 2534 - components: - - pos: 9.005315,26.569424 - parent: 4812 - type: Transform - - uid: 3369 - components: - - pos: 20.465384,17.498707 - parent: 4812 - type: Transform - - uid: 6348 - components: - - pos: 6.3559675,-25.44819 - parent: 4812 - type: Transform - - uid: 6639 - components: - - pos: -8.51619,-18.607918 - parent: 4812 - type: Transform - - uid: 8594 - components: - - pos: -19.500504,10.456865 - parent: 4812 - type: Transform -- proto: HarmonicaInstrument - entities: - - uid: 11857 - components: - - pos: -29.373522,30.531204 - parent: 4812 - type: Transform -- proto: Hemostat - entities: - - uid: 6244 - components: - - pos: 13.5565815,-27.824743 - parent: 4812 - type: Transform -- proto: HighSecCommandLocked - entities: - - uid: 1846 - components: - - pos: -2.5,21.5 - parent: 4812 - type: Transform - - uid: 3287 - components: - - pos: 22.5,6.5 - parent: 4812 - type: Transform - - uid: 3688 - components: - - pos: 8.5,45.5 - parent: 4812 - type: Transform - - uid: 3689 - components: - - pos: 12.5,45.5 - parent: 4812 - type: Transform - - uid: 3690 - components: - - pos: 10.5,47.5 - parent: 4812 - type: Transform - - uid: 9886 - components: - - pos: -51.5,-12.5 - parent: 4812 - type: Transform -- proto: HospitalCurtainsOpen - entities: - - uid: 3228 - components: - - pos: 10.5,30.5 - parent: 4812 - type: Transform - - uid: 3229 - components: - - pos: -15.5,29.5 - parent: 4812 - type: Transform - - uid: 3421 - components: - - pos: -19.5,29.5 - parent: 4812 - type: Transform - - uid: 3451 - components: - - pos: 19.5,36.5 - parent: 4812 - type: Transform - - uid: 7461 - components: - - pos: -24.5,-28.5 - parent: 4812 - type: Transform -- proto: hydroponicsSoil - entities: - - uid: 8385 - components: - - pos: -32.5,29.5 - parent: 4812 - type: Transform - - uid: 8386 - components: - - pos: -32.5,30.5 - parent: 4812 - type: Transform - - uid: 8387 - components: - - pos: -32.5,31.5 - parent: 4812 - type: Transform - - uid: 9610 - components: - - pos: -42.5,-28.5 - parent: 4812 - type: Transform - - uid: 9611 - components: - - pos: -44.5,-28.5 - parent: 4812 - type: Transform - - uid: 9612 - components: - - pos: -43.5,-29.5 - parent: 4812 - type: Transform - - uid: 11285 - components: - - pos: 16.5,-36.5 - parent: 4812 - type: Transform - - uid: 11286 - components: - - pos: 16.5,-38.5 - parent: 4812 - type: Transform - - uid: 11287 - components: - - pos: 18.5,-38.5 - parent: 4812 - type: Transform - - uid: 11288 - components: - - pos: 20.5,-38.5 - parent: 4812 - type: Transform - - uid: 11289 - components: - - pos: 22.5,-38.5 - parent: 4812 - type: Transform -- proto: HydroponicsToolClippers - entities: - - uid: 1457 - components: - - pos: -12.442752,-7.42547 - parent: 4812 - type: Transform -- proto: HydroponicsToolHatchet - entities: - - uid: 1459 - components: - - pos: -12.505252,-7.378595 - parent: 4812 - type: Transform -- proto: HydroponicsToolMiniHoe - entities: - - uid: 1455 - components: - - pos: -11.520877,-7.441095 - parent: 4812 - type: Transform - - uid: 8407 - components: - - pos: -31.533045,30.44869 - parent: 4812 - type: Transform - - uid: 11299 - components: - - pos: 16.50683,-37.620907 - parent: 4812 - type: Transform -- proto: HydroponicsToolScythe - entities: - - uid: 1458 - components: - - pos: -12.458377,-7.42547 - parent: 4812 - type: Transform -- proto: HydroponicsToolSpade - entities: - - uid: 1456 - components: - - pos: -11.489627,-7.378595 - parent: 4812 - type: Transform - - uid: 8408 - components: - - pos: -31.45492,30.47994 - parent: 4812 - type: Transform - - uid: 9619 - components: - - pos: -44.466614,-28.47166 - parent: 4812 - type: Transform - - uid: 11298 - components: - - pos: 20.50683,-38.495907 - parent: 4812 - type: Transform -- proto: hydroponicsTray - entities: - - uid: 1063 - components: - - pos: -16.5,-9.5 - parent: 4812 - type: Transform - - uid: 1064 - components: - - pos: -15.5,-9.5 - parent: 4812 - type: Transform - - uid: 1065 - components: - - pos: -14.5,-9.5 - parent: 4812 - type: Transform - - uid: 1066 - components: - - pos: -13.5,-9.5 - parent: 4812 - type: Transform - - uid: 1067 - components: - - pos: -12.5,-9.5 - parent: 4812 - type: Transform - - uid: 1068 - components: - - pos: -11.5,-9.5 - parent: 4812 - type: Transform - - uid: 1069 - components: - - pos: -11.5,-5.5 - parent: 4812 - type: Transform - - uid: 1070 - components: - - pos: -12.5,-5.5 - parent: 4812 - type: Transform - - uid: 1071 - components: - - pos: -13.5,-5.5 - parent: 4812 - type: Transform - - uid: 1072 - components: - - pos: -14.5,-5.5 - parent: 4812 - type: Transform - - uid: 1073 - components: - - pos: -15.5,-5.5 - parent: 4812 - type: Transform - - uid: 1074 - components: - - pos: -16.5,-5.5 - parent: 4812 - type: Transform -- proto: InflatableDoorStack - entities: - - uid: 9679 - components: - - pos: -30.41609,4.5644865 - parent: 4812 - type: Transform - - uid: 9680 - components: - - pos: -30.41609,4.5644865 - parent: 4812 - type: Transform -- proto: InflatableWallStack - entities: - - uid: 9677 - components: - - pos: -30.681715,4.7676115 - parent: 4812 - type: Transform - - uid: 9678 - components: - - pos: -30.681715,4.7676115 - parent: 4812 - type: Transform -- proto: IngotGold - entities: - - uid: 2712 - components: - - pos: -5.483521,25.426079 - parent: 4812 - type: Transform -- proto: IngotGold1 - entities: - - uid: 12458 - components: - - pos: -38.5391,25.681717 - parent: 4812 - type: Transform - - uid: 12459 - components: - - pos: -38.5391,25.681717 - parent: 4812 - type: Transform - - uid: 12460 - components: - - pos: -38.38285,25.619217 - parent: 4812 - type: Transform - - uid: 12461 - components: - - pos: -38.2891,25.541092 - parent: 4812 - type: Transform -- proto: IngotSilver - entities: - - uid: 2718 - components: - - pos: -5.446512,23.457329 - parent: 4812 - type: Transform -- proto: IntercomAll - entities: - - uid: 4850 - components: - - rot: 3.141592653589793 rad - pos: 1.5,31.5 - parent: 4812 - type: Transform - - uid: 4851 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,23.5 - parent: 4812 - type: Transform -- proto: IntercomCommand - entities: - - uid: 4834 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-19.5 - parent: 4812 - type: Transform - - uid: 4847 - components: - - pos: 6.5,30.5 - parent: 4812 - type: Transform - - uid: 4848 - components: - - pos: 17.5,36.5 - parent: 4812 - type: Transform - - uid: 4853 - components: - - pos: -19.5,26.5 - parent: 4812 - type: Transform - - uid: 12324 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-8.5 - parent: 4812 - type: Transform - - uid: 12400 - components: - - pos: 11.5,54.5 - parent: 4812 - type: Transform -- proto: IntercomCommon - entities: - - uid: 4935 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-40.5 - parent: 4812 - type: Transform - - uid: 12391 - components: - - pos: -17.5,3.5 - parent: 4812 - type: Transform - - uid: 12392 - components: - - pos: 5.5,23.5 - parent: 4812 - type: Transform - - uid: 12393 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-5.5 - parent: 4812 - type: Transform - - uid: 12396 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,1.5 - parent: 4812 - type: Transform - - uid: 12397 - components: - - pos: -4.5,21.5 - parent: 4812 - type: Transform -- proto: IntercomEngineering - entities: - - uid: 12389 - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-9.5 - parent: 4812 - type: Transform - - uid: 12390 - components: - - rot: 3.141592653589793 rad - pos: -43.5,-0.5 - parent: 4812 - type: Transform -- proto: IntercomMedical - entities: - - uid: 4852 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-35.5 - parent: 4812 - type: Transform -- proto: IntercomScience - entities: - - uid: 12394 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-18.5 - parent: 4812 - type: Transform - - uid: 12395 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-23.5 - parent: 4812 - type: Transform -- proto: IntercomSecurity - entities: - - uid: 4854 - components: - - rot: 3.141592653589793 rad - pos: -35.5,9.5 - parent: 4812 - type: Transform -- proto: IntercomService - entities: - - uid: 3977 - components: - - pos: -22.5,-5.5 - parent: 4812 - type: Transform - - uid: 4232 - components: - - rot: 3.141592653589793 rad - pos: 7.5,5.5 - parent: 4812 - type: Transform - - uid: 4673 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-0.5 - parent: 4812 - type: Transform - - uid: 4674 - components: - - pos: -12.5,-4.5 - parent: 4812 - type: Transform -- proto: IntercomSupply - entities: - - uid: 4849 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,20.5 - parent: 4812 - type: Transform -- proto: JanitorialTrolley - entities: - - uid: 1489 - components: - - pos: -20.5,-7.5 - parent: 4812 - type: Transform -- proto: JetpackBlueFilled - entities: - - uid: 12504 - components: - - flags: InContainer - type: MetaData - - parent: 2709 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: JetpackMini - entities: - - uid: 3412 - components: - - pos: 17.49418,49.5522 - parent: 4812 - type: Transform -- proto: KitchenKnife - entities: - - uid: 1642 - components: - - pos: 6.5,-1.5 - parent: 4812 - type: Transform - - uid: 10998 - components: - - pos: -36.20571,29.520401 - parent: 4812 - type: Transform -- proto: KitchenMicrowave - entities: - - uid: 1561 - components: - - pos: 5.5,-1.5 - parent: 4812 - type: Transform - - uid: 8428 - components: - - pos: -39.5,12.5 - parent: 4812 - type: Transform - - uid: 12494 - components: - - pos: 9.5,-18.5 - parent: 4812 - type: Transform -- proto: KitchenReagentGrinder - entities: - - uid: 1454 - components: - - pos: -18.5,-8.5 - parent: 4812 - type: Transform - - uid: 1562 - components: - - pos: 3.5,-1.5 - parent: 4812 - type: Transform - - uid: 6346 - components: - - pos: 7.5,-17.5 - parent: 4812 - type: Transform - - uid: 6688 - components: - - pos: -8.5,-17.5 - parent: 4812 - type: Transform - - uid: 9026 - components: - - pos: -40.5,-34.5 - parent: 4812 - type: Transform -- proto: KitchenSpike - entities: - - uid: 1536 - components: - - pos: 6.5,-5.5 - parent: 4812 - type: Transform -- proto: Lamp - entities: - - uid: 1520 - components: - - pos: -17.392416,-1.3091464 - parent: 4812 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 2502 - components: - - pos: 5.335086,29.824064 - parent: 4812 - type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - canCollide: True - type: Physics - - uid: 2535 - components: - - pos: 8.536261,24.755358 - parent: 4812 - type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - canCollide: True - type: Physics - - uid: 2585 - components: - - pos: -10.435654,29.715694 - parent: 4812 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 2723 - components: - - pos: -3.451921,24.866032 - parent: 4812 - type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - canCollide: True - type: Physics - - uid: 5376 - components: - - pos: 18.64816,-16.251589 - parent: 4812 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 6291 - components: - - pos: 25.537617,-17.441427 - parent: 4812 - type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 6409 - components: - - pos: -4.3562155,-15.356113 - parent: 4812 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 7077 - components: - - pos: -32.443592,-14.338358 - parent: 4812 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 7136 - components: - - pos: -31.474861,-18.271936 - parent: 4812 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 8265 - components: - - pos: -21.463991,24.553658 - parent: 4812 - type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 9576 - components: - - pos: -28.432161,1.6425915 - parent: 4812 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 10704 - components: - - pos: -28.442137,-5.370996 - parent: 4812 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LampBanana - entities: - - uid: 1706 - components: - - pos: -10.503301,1.611648 - parent: 4812 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LampGold - entities: - - uid: 1762 - components: - - pos: -10.47069,9.477556 - parent: 4812 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 2589 - components: - - pos: -13.466904,27.76257 - parent: 4812 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 8296 - components: - - pos: -18.397654,15.527645 - parent: 4812 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 9064 - components: - - pos: -31.475683,-40.265636 - parent: 4812 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: Lantern - entities: - - uid: 7043 - components: - - pos: -18.349216,-33.27696 - parent: 4812 - type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 7149 - components: - - pos: -31.078482,-23.278105 - parent: 4812 - type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LeavesCannabis - entities: - - uid: 11295 - components: - - pos: 22.50683,-38.57403 - parent: 4812 - type: Transform -- proto: Lighter - entities: - - uid: 1759 - components: - - pos: -6.168007,4.498476 - parent: 4812 - type: Transform - - uid: 1760 - components: - - pos: 1.2657695,9.574495 - parent: 4812 - type: Transform - - uid: 11844 - components: - - pos: -7.3849344,12.439501 - parent: 4812 - type: Transform -- proto: LightReplacer - entities: - - uid: 1490 - components: - - pos: -23.51768,-6.333922 - parent: 4812 - type: Transform -- proto: LockerAtmosphericsFilled - entities: - - uid: 9570 - components: - - pos: -29.5,5.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 9571 - components: - - pos: -28.5,5.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerBoozeFilled - entities: - - uid: 1648 - components: - - pos: 5.5,9.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerBotanistFilled - entities: - - uid: 1103 - components: - - pos: -17.5,-5.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerCaptainFilled - entities: - - uid: 2595 - components: - - pos: -10.5,28.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerChemistryFilled - entities: - - uid: 6609 - components: - - pos: -12.5,-14.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerChiefEngineerFilled - entities: - - uid: 9879 - components: - - pos: -50.5,-6.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerChiefMedicalOfficerFilledHardsuit - entities: - - uid: 7453 - components: - - pos: -26.5,-28.5 - parent: 4812 - type: Transform -- proto: LockerDetectiveFilled - entities: - - uid: 5362 - components: - - pos: 18.5,-11.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerElectricalSuppliesFilled - entities: - - uid: 2578 - components: - - pos: 5.5,31.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 4491 - components: - - pos: 20.5,1.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 10600 - components: - - pos: -47.5,-19.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 10722 - components: - - pos: -38.5,8.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerEngineerFilled - entities: - - uid: 9719 - components: - - pos: -33.5,-9.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 9720 - components: - - pos: -32.5,-9.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 9721 - components: - - pos: -31.5,-9.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerEvidence - entities: - - uid: 4977 - components: - - pos: -29.5,24.5 - parent: 4812 - type: Transform - - uid: 6735 - components: - - pos: -27.5,24.5 - parent: 4812 - type: Transform - - uid: 6736 - components: - - pos: -28.5,24.5 - parent: 4812 - type: Transform - - uid: 8359 - components: - - pos: -31.5,18.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerFreezer - entities: - - uid: 1538 - components: - - pos: 2.5,-5.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 234.99966 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 1563 - components: - - pos: 5.5,0.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 2709 - components: - - pos: -4.5,26.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.8742619 - - 7.050795 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: - - 2710 - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 9626 - - 9625 - - 9615 - - 12504 - - 12503 - - 9589 - - 9613 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 7394 - components: - - pos: 3.5,-5.5 - parent: 4812 - type: Transform -- proto: LockerHeadOfPersonnelFilled - entities: - - uid: 2497 - components: - - pos: 5.5,28.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerHeadOfSecurityFilled - entities: - - uid: 8252 - components: - - pos: -21.5,28.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerMedical - entities: - - uid: 7328 - components: - - pos: -14.5,-17.5 - parent: 4812 - type: Transform -- proto: LockerMedicalFilled - entities: - - uid: 7400 - components: - - pos: -8.5,-27.5 - parent: 4812 - type: Transform - - uid: 7401 - components: - - pos: -8.5,-26.5 - parent: 4812 - type: Transform -- proto: LockerMedicineFilled - entities: - - uid: 7427 - components: - - pos: -22.5,-25.5 - parent: 4812 - type: Transform - - uid: 7579 - components: - - pos: -16.5,-20.5 - parent: 4812 - type: Transform - - uid: 9021 - components: - - pos: -39.5,-33.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerQuarterMasterFilled - entities: - - uid: 3441 - components: - - pos: 15.5,34.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6765 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerResearchDirectorFilled - entities: - - uid: 6286 - components: - - pos: 28.5,-18.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerSalvageSpecialistFilledHardsuit - entities: - - uid: 6777 - components: - - pos: 22.5,16.5 - parent: 4812 - type: Transform - - uid: 6778 - components: - - pos: 24.5,16.5 - parent: 4812 - type: Transform -- proto: LockerScienceFilled - entities: - - uid: 12495 - components: - - pos: 9.5,-27.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 12496 - components: - - pos: 9.5,-26.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerSecurityFilled - entities: - - uid: 6440 - components: - - pos: -1.5,-29.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 8421 - components: - - pos: -33.5,12.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 8422 - components: - - pos: -35.5,12.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerWallMedicalFilled - entities: - - uid: 7430 - components: - - pos: -22.5,-21.5 - parent: 4812 - type: Transform -- proto: LockerWardenFilled - entities: - - uid: 8337 - components: - - pos: -36.5,14.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerWeldingSuppliesFilled - entities: - - uid: 9681 - components: - - pos: -28.5,3.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: MachineAnomalyGenerator - entities: - - uid: 6341 - components: - - pos: 33.5,-24.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound -- proto: MachineAnomalyVessel - entities: - - uid: 6360 - components: - - pos: 31.5,-28.5 - parent: 4812 - type: Transform -- proto: MachineAPE - entities: - - uid: 6338 - components: - - rot: 3.141592653589793 rad - pos: 34.5,-28.5 - parent: 4812 - type: Transform - - uid: 6359 - components: - - rot: 3.141592653589793 rad - pos: 35.5,-28.5 - parent: 4812 - type: Transform -- proto: MachineArtifactAnalyzer - entities: - - uid: 6319 - components: - - pos: 22.5,-29.5 - parent: 4812 - type: Transform - - links: - - 6313 - type: DeviceLinkSink -- proto: MachineFrame - entities: - - uid: 5048 - components: - - pos: -16.5,-15.5 - parent: 4812 - type: Transform - - uid: 7197 - components: - - pos: -14.5,-15.5 - parent: 4812 - type: Transform -- proto: MachineFrameDestroyed - entities: - - uid: 11661 - components: - - pos: 4.5,-40.5 - parent: 4812 - type: Transform -- proto: MaintenanceFluffSpawner - entities: - - uid: 278 - components: - - pos: -18.5,-1.5 - parent: 4812 - type: Transform - - uid: 1532 - components: - - pos: -18.5,5.5 - parent: 4812 - type: Transform - - uid: 3360 - components: - - pos: 13.5,29.5 - parent: 4812 - type: Transform - - uid: 4601 - components: - - pos: 13.5,-9.5 - parent: 4812 - type: Transform - - uid: 4607 - components: - - pos: 16.5,11.5 - parent: 4812 - type: Transform - - uid: 7132 - components: - - pos: -32.5,-23.5 - parent: 4812 - type: Transform - - uid: 9065 - components: - - pos: -29.5,-35.5 - parent: 4812 - type: Transform - - uid: 10604 - components: - - pos: -45.5,-17.5 - parent: 4812 - type: Transform - - uid: 10605 - components: - - pos: -32.5,-28.5 - parent: 4812 - type: Transform - - uid: 10879 - components: - - pos: -33.5,8.5 - parent: 4812 - type: Transform - - uid: 11467 - components: - - pos: 31.5,-30.5 - parent: 4812 - type: Transform - - uid: 11884 - components: - - pos: 7.5,12.5 - parent: 4812 - type: Transform -- proto: MaintenancePlantSpawner - entities: - - uid: 10549 - components: - - pos: -13.5,13.5 - parent: 4812 - type: Transform - - uid: 10585 - components: - - pos: -29.5,-31.5 - parent: 4812 - type: Transform - - uid: 10586 - components: - - pos: 22.5,-34.5 - parent: 4812 - type: Transform -- proto: MaintenanceToolSpawner - entities: - - uid: 4608 - components: - - pos: 17.5,11.5 - parent: 4812 - type: Transform - - uid: 10904 - components: - - pos: -29.5,-12.5 - parent: 4812 - type: Transform - - uid: 12464 - components: - - pos: -37.5,25.5 - parent: 4812 - type: Transform -- proto: MaintenanceWeaponSpawner - entities: - - uid: 4609 - components: - - pos: 19.5,7.5 - parent: 4812 - type: Transform - - uid: 9081 - components: - - pos: -28.5,-27.5 - parent: 4812 - type: Transform - - uid: 12425 - components: - - pos: -53.5,-18.5 - parent: 4812 - type: Transform -- proto: Matchbox - entities: - - uid: 1761 - components: - - pos: 1.5470195,6.5276203 - parent: 4812 - type: Transform - - uid: 2736 - components: - - pos: -2.4627259,28.584373 - parent: 4812 - type: Transform -- proto: MaterialCloth - entities: - - uid: 2538 - components: - - pos: 8.4956045,29.699007 - parent: 4812 - type: Transform -- proto: MaterialDiamond1 - entities: - - uid: 2731 - components: - - pos: 0.5144601,26.613579 - parent: 4812 - type: Transform -- proto: MaterialDurathread - entities: - - uid: 2539 - components: - - pos: 8.48969,29.428799 - parent: 4812 - type: Transform -- proto: MaterialReclaimer - entities: - - uid: 4807 - components: - - pos: 20.5,19.5 - parent: 4812 - type: Transform -- proto: MaterialWoodPlank - entities: - - uid: 8415 - components: - - pos: -49.460716,-16.464205 - parent: 4812 - type: Transform -- proto: MedicalBed - entities: - - uid: 7572 - components: - - pos: -14.5,-23.5 - parent: 4812 - type: Transform - - uid: 7573 - components: - - pos: -17.5,-23.5 - parent: 4812 - type: Transform - - uid: 9034 - components: - - pos: -37.5,-37.5 - parent: 4812 - type: Transform -- proto: MedicalTechFab - entities: - - uid: 7398 - components: - - pos: -9.5,-28.5 - parent: 4812 - type: Transform -- proto: MedkitAdvancedFilled - entities: - - uid: 7460 - components: - - pos: -24.550219,-27.2501 - parent: 4812 - type: Transform -- proto: MedkitBruteFilled - entities: - - uid: 7407 - components: - - pos: -10.646522,-25.180182 - parent: 4812 - type: Transform -- proto: MedkitBurnFilled - entities: - - uid: 4535 - components: - - pos: 13.526362,-0.44057345 - parent: 4812 - type: Transform - - uid: 7408 - components: - - pos: -10.521522,-25.336432 - parent: 4812 - type: Transform -- proto: MedkitCombatFilled - entities: - - uid: 7459 - components: - - pos: -24.393969,-27.453224 - parent: 4812 - type: Transform -- proto: MedkitFilled - entities: - - uid: 2678 - components: - - pos: -8.488935,34.56198 - parent: 4812 - type: Transform -- proto: MedkitToxinFilled - entities: - - uid: 7409 - components: - - pos: -10.318397,-25.523932 - parent: 4812 - type: Transform -- proto: MicrophoneInstrument - entities: - - uid: 12381 - components: - - flags: InContainer - type: MetaData - - parent: 9099 - type: Transform - - canCollide: False - type: Physics -- proto: MicrowaveMachineCircuitboard - entities: - - uid: 3379 - components: - - pos: 25.540777,4.5472765 - parent: 4812 - type: Transform -- proto: MinimoogInstrument - entities: - - uid: 9054 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-39.5 - parent: 4812 - type: Transform -- proto: Mirror - entities: - - uid: 3716 - components: - - pos: 20.5,35.5 - parent: 4812 - type: Transform - - uid: 3788 - components: - - pos: 14.5,9.5 - parent: 4812 - type: Transform - - uid: 7031 - components: - - pos: -25.5,-33.5 - parent: 4812 - type: Transform -- proto: MonkeyCubeWrapped - entities: - - uid: 8341 - components: - - pos: 6.243659,6.255819 - parent: 4812 - type: Transform -- proto: MopBucket - entities: - - uid: 1478 - components: - - pos: -20.532074,-3.4493594 - parent: 4812 - type: Transform - - uid: 11938 - components: - - pos: -11.467581,17.581944 - parent: 4812 - type: Transform -- proto: MopItem - entities: - - uid: 1498 - components: - - pos: -20.685179,-8.436821 - parent: 4812 - type: Transform - - uid: 1519 - components: - - pos: -20.529812,-3.4716563 - parent: 4812 - type: Transform - - uid: 11939 - components: - - pos: -10.498831,17.519444 - parent: 4812 - type: Transform - - uid: 11940 - components: - - pos: -10.498831,17.300694 - parent: 4812 - type: Transform -- proto: Morgue - entities: - - uid: 5011 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-18.5 - parent: 4812 - type: Transform - - uid: 7333 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-17.5 - parent: 4812 - type: Transform - - uid: 7334 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-16.5 - parent: 4812 - type: Transform - - uid: 7368 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-15.5 - parent: 4812 - type: Transform -- proto: Multitool - entities: - - uid: 2680 - components: - - pos: -3.5045605,34.68698 - parent: 4812 - type: Transform - - uid: 3370 - components: - - pos: 14.511745,18.570736 - parent: 4812 - type: Transform - - uid: 6197 - components: - - pos: 7.576914,-16.642956 - parent: 4812 - type: Transform - - uid: 8593 - components: - - pos: -19.531754,12.581865 - parent: 4812 - type: Transform - - uid: 10707 - components: - - pos: -32.481808,-7.2820773 - parent: 4812 - type: Transform -- proto: NanoManipulatorStockPart - entities: - - uid: 6202 - components: - - pos: 7.436289,-15.783581 - parent: 4812 - type: Transform - - uid: 6203 - components: - - pos: 7.623789,-15.783581 - parent: 4812 - type: Transform - - uid: 6204 - components: - - pos: 7.811289,-15.783581 - parent: 4812 - type: Transform -- proto: NitrogenCanister - entities: - - uid: 4604 - components: - - pos: 15.5,11.5 - parent: 4812 - type: Transform - - uid: 6327 - components: - - pos: 25.5,-22.5 - parent: 4812 - type: Transform - - uid: 9448 - components: - - pos: -53.5,1.5 - parent: 4812 - type: Transform - - uid: 9667 - components: - - pos: -33.5,4.5 - parent: 4812 - type: Transform - - uid: 9668 - components: - - pos: -33.5,5.5 - parent: 4812 - type: Transform - - uid: 11786 - components: - - pos: 21.5,-32.5 - parent: 4812 - type: Transform -- proto: NuclearBomb - entities: - - uid: 1854 - components: - - pos: -2.5,26.5 - parent: 4812 - type: Transform -- proto: NuclearBombKeg - entities: - - uid: 11642 - components: - - pos: 16.5,-44.5 - parent: 4812 - type: Transform -- proto: Omnitool - entities: - - uid: 2710 - components: - - flags: InContainer - type: MetaData - - parent: 2709 - type: Transform - - canCollide: False - type: Physics -- proto: OperatingTable - entities: - - uid: 6167 - components: - - pos: 15.5,-28.5 - parent: 4812 - type: Transform - - uid: 7067 - components: - - pos: -20.5,-25.5 - parent: 4812 - type: Transform - - uid: 7244 - components: - - pos: -20.5,-28.5 - parent: 4812 - type: Transform - - uid: 7444 - components: - - pos: -18.5,-16.5 - parent: 4812 - type: Transform -- proto: OreProcessor - entities: - - uid: 2902 - components: - - pos: 21.5,15.5 - parent: 4812 - type: Transform - - materialWhiteList: - - Steel - - Glass - - Plasma - - Uranium - - Gold - - Silver - type: MaterialStorage -- proto: OreProcessorMachineCircuitboard - entities: - - uid: 3749 - components: - - pos: 21.462652,5.5472765 - parent: 4812 - type: Transform -- proto: OrganHumanAppendix - entities: - - uid: 4596 - components: - - pos: -53.373444,-16.451925 - parent: 4812 - type: Transform -- proto: OxygenCanister - entities: - - uid: 733 - components: - - pos: 9.5,17.5 - parent: 4812 - type: Transform - - uid: 4603 - components: - - pos: 14.5,11.5 - parent: 4812 - type: Transform - - uid: 6328 - components: - - pos: 26.5,-22.5 - parent: 4812 - type: Transform - - uid: 8849 - components: - - pos: -13.5,-28.5 - parent: 4812 - type: Transform - - uid: 9450 - components: - - pos: -53.5,3.5 - parent: 4812 - type: Transform - - uid: 9669 - components: - - pos: -32.5,4.5 - parent: 4812 - type: Transform - - uid: 9670 - components: - - pos: -32.5,5.5 - parent: 4812 - type: Transform - - uid: 10740 - components: - - pos: -46.5,-9.5 - parent: 4812 - type: Transform - - uid: 10878 - components: - - pos: -34.5,8.5 - parent: 4812 - type: Transform - - uid: 10917 - components: - - pos: -47.5,-23.5 - parent: 4812 - type: Transform - - uid: 11787 - components: - - pos: 20.5,-32.5 - parent: 4812 - type: Transform -- proto: OxygenTankFilled - entities: - - uid: 11792 - components: - - pos: 19.577671,-32.613243 - parent: 4812 - type: Transform -- proto: PaintingAmogusTriptych - entities: - - uid: 7003 - components: - - pos: -21.5,6.5 - parent: 4812 - type: Transform -- proto: PaintingMonkey - entities: - - uid: 1659 - components: - - pos: 4.5,9.5 - parent: 4812 - type: Transform -- proto: PaintingNightHawks - entities: - - uid: 1674 - components: - - pos: 1.5,4.5 - parent: 4812 - type: Transform -- proto: PaintingOlympia - entities: - - uid: 7741 - components: - - pos: -28.5,-35.5 - parent: 4812 - type: Transform -- proto: PaintingRedBlueYellow - entities: - - uid: 8380 - components: - - pos: 1.5,-7.5 - parent: 4812 - type: Transform -- proto: PaintingSadClown - entities: - - uid: 9634 - components: - - pos: -7.5,2.5 - parent: 4812 - type: Transform -- proto: PaintingSleepingGypsy - entities: - - uid: 7742 - components: - - pos: -28.5,-13.5 - parent: 4812 - type: Transform -- proto: Paper - entities: - - uid: 2520 - components: - - pos: 8.567815,26.553799 - parent: 4812 - type: Transform - - uid: 2521 - components: - - pos: 8.567815,26.553799 - parent: 4812 - type: Transform - - uid: 2522 - components: - - pos: 8.567815,26.553799 - parent: 4812 - type: Transform - - uid: 2523 - components: - - pos: 8.567815,26.553799 - parent: 4812 - type: Transform - - uid: 2524 - components: - - pos: 8.567815,26.553799 - parent: 4812 - type: Transform - - uid: 2525 - components: - - pos: 8.567815,26.553799 - parent: 4812 - type: Transform - - uid: 2526 - components: - - pos: 8.567815,26.553799 - parent: 4812 - type: Transform - - uid: 2527 - components: - - pos: 8.567815,26.553799 - parent: 4812 - type: Transform - - uid: 2528 - components: - - pos: 8.567815,26.553799 - parent: 4812 - type: Transform - - uid: 2529 - components: - - pos: 8.567815,26.553799 - parent: 4812 - type: Transform - - uid: 2530 - components: - - pos: 8.567815,26.553799 - parent: 4812 - type: Transform - - uid: 2531 - components: - - pos: 8.567815,26.553799 - parent: 4812 - type: Transform - - uid: 2532 - components: - - pos: 8.567815,26.553799 - parent: 4812 - type: Transform - - uid: 2533 - components: - - pos: 8.567815,26.553799 - parent: 4812 - type: Transform - - uid: 2556 - components: - - pos: 10.478969,22.565956 - parent: 4812 - type: Transform - - uid: 2557 - components: - - pos: 10.478969,22.565956 - parent: 4812 - type: Transform - - uid: 2558 - components: - - pos: 10.478969,22.565956 - parent: 4812 - type: Transform - - uid: 2559 - components: - - pos: 10.478969,22.565956 - parent: 4812 - type: Transform - - uid: 2560 - components: - - pos: 10.478969,22.565956 - parent: 4812 - type: Transform - - uid: 2561 - components: - - pos: 10.478969,22.565956 - parent: 4812 - type: Transform - - uid: 2562 - components: - - pos: 10.478969,22.565956 - parent: 4812 - type: Transform - - uid: 2563 - components: - - pos: 10.478969,22.565956 - parent: 4812 - type: Transform - - uid: 2564 - components: - - pos: 10.478969,22.565956 - parent: 4812 - type: Transform - - uid: 2565 - components: - - pos: 10.478969,22.565956 - parent: 4812 - type: Transform - - uid: 2566 - components: - - pos: 10.478969,22.565956 - parent: 4812 - type: Transform - - uid: 2567 - components: - - pos: 10.478969,22.565956 - parent: 4812 - type: Transform - - uid: 2568 - components: - - pos: 10.478969,22.565956 - parent: 4812 - type: Transform - - uid: 2569 - components: - - pos: 10.478969,22.565956 - parent: 4812 - type: Transform - - uid: 2570 - components: - - pos: 10.478969,22.565956 - parent: 4812 - type: Transform - - uid: 2571 - components: - - pos: 10.478969,22.565956 - parent: 4812 - type: Transform - - uid: 2572 - components: - - pos: 10.478969,22.565956 - parent: 4812 - type: Transform - - uid: 2573 - components: - - pos: 10.478969,22.565956 - parent: 4812 - type: Transform - - uid: 2574 - components: - - pos: 10.478969,22.565956 - parent: 4812 - type: Transform - - uid: 2575 - components: - - pos: 10.478969,22.565956 - parent: 4812 - type: Transform - - uid: 3246 - components: - - pos: 17.509274,13.545517 - parent: 4812 - type: Transform - - uid: 3247 - components: - - pos: 17.509274,13.545517 - parent: 4812 - type: Transform - - uid: 3248 - components: - - pos: 17.509274,13.545517 - parent: 4812 - type: Transform - - uid: 3249 - components: - - pos: 17.509274,13.545517 - parent: 4812 - type: Transform - - uid: 3250 - components: - - pos: 17.509274,13.545517 - parent: 4812 - type: Transform - - uid: 3251 - components: - - pos: 17.509274,13.545517 - parent: 4812 - type: Transform - - uid: 3252 - components: - - pos: 17.509274,13.545517 - parent: 4812 - type: Transform - - uid: 3253 - components: - - pos: 17.509274,13.545517 - parent: 4812 - type: Transform - - uid: 3254 - components: - - pos: 17.509274,13.545517 - parent: 4812 - type: Transform - - uid: 3255 - components: - - pos: 17.509274,13.545517 - parent: 4812 - type: Transform - - uid: 3881 - components: - - pos: 11.504802,56.565136 - parent: 4812 - type: Transform - - uid: 7006 - components: - - pos: -31.49619,-23.373245 - parent: 4812 - type: Transform - - uid: 7138 - components: - - pos: -28.318611,-14.584436 - parent: 4812 - type: Transform - - uid: 7139 - components: - - pos: -28.537361,-15.271936 - parent: 4812 - type: Transform - - uid: 7140 - components: - - pos: -27.677986,-15.271936 - parent: 4812 - type: Transform - - uid: 7141 - components: - - pos: -27.427986,-14.693811 - parent: 4812 - type: Transform - - uid: 7173 - components: - - pos: -31.49619,-23.373245 - parent: 4812 - type: Transform - - uid: 7174 - components: - - pos: -31.49619,-23.373245 - parent: 4812 - type: Transform - - uid: 7175 - components: - - pos: -31.49619,-23.373245 - parent: 4812 - type: Transform - - uid: 7176 - components: - - pos: -31.49619,-23.373245 - parent: 4812 - type: Transform - - uid: 7177 - components: - - pos: -31.49619,-23.373245 - parent: 4812 - type: Transform - - uid: 7178 - components: - - pos: -31.49619,-23.373245 - parent: 4812 - type: Transform - - uid: 7179 - components: - - pos: -31.49619,-23.373245 - parent: 4812 - type: Transform - - uid: 7180 - components: - - pos: -31.49619,-23.373245 - parent: 4812 - type: Transform - - uid: 7181 - components: - - pos: -31.49619,-23.373245 - parent: 4812 - type: Transform - - uid: 8395 - components: - - pos: -25.484861,30.57598 - parent: 4812 - type: Transform -- proto: ParchisBoard - entities: - - uid: 10866 - components: - - pos: -21.575394,0.5961678 - parent: 4812 - type: Transform -- proto: PartRodMetal - entities: - - uid: 1677 - components: - - pos: 3.5454316,14.514967 - parent: 4812 - type: Transform - - uid: 8583 - components: - - pos: -16.530659,7.5992785 - parent: 4812 - type: Transform - - uid: 9675 - components: - - pos: -30.275465,5.5801115 - parent: 4812 - type: Transform - - uid: 9676 - components: - - pos: -30.275465,5.5801115 - parent: 4812 - type: Transform - - uid: 11950 - components: - - pos: -14.576956,16.050694 - parent: 4812 - type: Transform - - uid: 11951 - components: - - pos: -14.389456,16.019444 - parent: 4812 - type: Transform -- proto: Pen - entities: - - uid: 2576 - components: - - pos: 10.697719,22.769081 - parent: 4812 - type: Transform - - uid: 3256 - components: - - pos: 17.728024,13.748642 - parent: 4812 - type: Transform - - uid: 3277 - components: - - pos: 22.826836,12.68298 - parent: 4812 - type: Transform - - uid: 3882 - components: - - pos: 11.754802,56.73701 - parent: 4812 - type: Transform - - uid: 6412 - components: - - pos: -0.24684072,-19.262363 - parent: 4812 - type: Transform - - uid: 7143 - components: - - pos: -28.256111,-15.131311 - parent: 4812 - type: Transform - - uid: 7144 - components: - - pos: -27.318611,-14.334436 - parent: 4812 - type: Transform - - uid: 8396 - components: - - pos: -25.234861,30.76348 - parent: 4812 - type: Transform -- proto: PersonalAI - entities: - - uid: 1767 - components: - - flags: SessionSpecific - type: MetaData - - pos: -2.5035148,7.4145155 - parent: 4812 - type: Transform - - uid: 3963 - components: - - flags: SessionSpecific - type: MetaData - - pos: 9.496426,48.542255 - parent: 4812 - type: Transform - - uid: 6307 - components: - - flags: SessionSpecific - type: MetaData - - pos: 26.432638,-19.383717 - parent: 4812 - type: Transform - - uid: 7142 - components: - - flags: SessionSpecific - type: MetaData - - pos: -28.490486,-14.614019 - parent: 4812 - type: Transform - - uid: 10864 - components: - - flags: SessionSpecific - type: MetaData - - pos: -22.475502,3.5391276 - parent: 4812 - type: Transform - - uid: 10865 - components: - - flags: SessionSpecific - type: MetaData - - pos: 6.426591,-28.501112 - parent: 4812 - type: Transform -- proto: PestSpray - entities: - - uid: 1475 - components: - - pos: -8.549381,-7.3677278 - parent: 4812 - type: Transform -- proto: PhoneInstrument - entities: - - uid: 1953 - components: - - pos: -12.499591,23.511097 - parent: 4812 - type: Transform - - uid: 3581 - components: - - pos: 15.253733,35.810513 - parent: 4812 - type: Transform -- proto: PianoInstrument - entities: - - uid: 1749 - components: - - rot: 3.141592653589793 rad - pos: -9.5,9.5 - parent: 4812 - type: Transform -- proto: Pickaxe - entities: - - uid: 3273 - components: - - pos: 22.483086,13.573605 - parent: 4812 - type: Transform - - uid: 3274 - components: - - pos: 22.576836,13.43298 - parent: 4812 - type: Transform - - uid: 3785 - components: - - pos: 17.50081,55.46929 - parent: 4812 - type: Transform - - uid: 10610 - components: - - pos: -48.49922,-23.375322 - parent: 4812 - type: Transform - - uid: 10611 - components: - - pos: -48.358597,-23.531572 - parent: 4812 - type: Transform - - uid: 11617 - components: - - pos: 37.304466,-40.56443 - parent: 4812 - type: Transform - - uid: 11678 - components: - - pos: 28.462547,-39.447342 - parent: 4812 - type: Transform -- proto: PinpointerNuclear - entities: - - uid: 2722 - components: - - pos: -1.524637,24.582329 - parent: 4812 - type: Transform -- proto: PlantBGoneSpray - entities: - - uid: 1474 - components: - - pos: -7.4868813,-7.4614778 - parent: 4812 - type: Transform -- proto: PlaqueAtmos - entities: - - uid: 11861 - components: - - pos: -30.5,6.5 - parent: 4812 - type: Transform -- proto: PlasmaCanister - entities: - - uid: 9457 - components: - - pos: -53.5,9.5 - parent: 4812 - type: Transform -- proto: PlasticFlapsAirtightClear - entities: - - uid: 2779 - components: - - pos: 21.5,28.5 - parent: 4812 - type: Transform - - uid: 2780 - components: - - pos: 23.5,24.5 - parent: 4812 - type: Transform - - uid: 2843 - components: - - pos: 21.5,24.5 - parent: 4812 - type: Transform - - uid: 2856 - components: - - pos: 13.5,20.5 - parent: 4812 - type: Transform - - uid: 2857 - components: - - pos: 18.5,22.5 - parent: 4812 - type: Transform - - uid: 2940 - components: - - pos: 23.5,28.5 - parent: 4812 - type: Transform - - uid: 4432 - components: - - pos: 29.5,-6.5 - parent: 4812 - type: Transform - - uid: 8622 - components: - - pos: -32.5,0.5 - parent: 4812 - type: Transform -- proto: PlushieBee - entities: - - uid: 11334 - components: - - pos: 22.549774,-36.48487 - parent: 4812 - type: Transform -- proto: PlushieLizard - entities: - - uid: 10916 - components: - - pos: -44.486626,-24.313948 - parent: 4812 - type: Transform -- proto: PortableFlasher - entities: - - uid: 12520 - components: - - pos: -36.5,20.5 - parent: 4812 - type: Transform -- proto: PortableScrubber - entities: - - uid: 3446 - components: - - pos: -34.5,-0.5 - parent: 4812 - type: Transform - - uid: 3709 - components: - - pos: -34.5,-1.5 - parent: 4812 - type: Transform - - uid: 8406 - components: - - pos: -13.5,15.5 - parent: 4812 - type: Transform - - uid: 9032 - components: - - pos: -12.5,15.5 - parent: 4812 - type: Transform -- proto: PosterContrabandAtmosiaDeclarationIndependence - entities: - - uid: 11860 - components: - - pos: -36.5,6.5 - parent: 4812 - type: Transform -- proto: PosterContrabandClown - entities: - - uid: 1714 - components: - - pos: -6.5,0.5 - parent: 4812 - type: Transform -- proto: PosterContrabandEAT - entities: - - uid: 1782 - components: - - pos: 5.5,1.5 - parent: 4812 - type: Transform -- proto: PosterContrabandFreeDrone - entities: - - uid: 11936 - components: - - pos: -11.5,14.5 - parent: 4812 - type: Transform -- proto: PosterContrabandHackingGuide - entities: - - uid: 8605 - components: - - pos: -15.5,8.5 - parent: 4812 - type: Transform -- proto: PosterContrabandHighEffectEngineering - entities: - - uid: 10774 - components: - - pos: -35.5,-6.5 - parent: 4812 - type: Transform -- proto: PosterContrabandLamarr - entities: - - uid: 6292 - components: - - pos: 29.5,-20.5 - parent: 4812 - type: Transform -- proto: PosterContrabandMissingGloves - entities: - - uid: 8606 - components: - - pos: -15.5,12.5 - parent: 4812 - type: Transform -- proto: PosterContrabandNuclearDeviceInformational - entities: - - uid: 12151 - components: - - pos: -1.5,27.5 - parent: 4812 - type: Transform -- proto: PosterContrabandSpaceCola - entities: - - uid: 1781 - components: - - pos: 1.5,-4.5 - parent: 4812 - type: Transform -- proto: PosterContrabandTools - entities: - - uid: 8608 - components: - - pos: -21.5,7.5 - parent: 4812 - type: Transform -- proto: PosterContrabandVoteWeh - entities: - - uid: 10912 - components: - - pos: -42.5,-22.5 - parent: 4812 - type: Transform -- proto: PosterLegit50thAnniversaryVintageReprint - entities: - - uid: 6366 - components: - - pos: 36.5,-24.5 - parent: 4812 - type: Transform -- proto: PosterLegitAnatomyPoster - entities: - - uid: 9627 - components: - - pos: -23.5,-21.5 - parent: 4812 - type: Transform - - uid: 9628 - components: - - pos: -13.5,-29.5 - parent: 4812 - type: Transform -- proto: PosterLegitCarpMount - entities: - - uid: 9635 - components: - - pos: 21.5,17.5 - parent: 4812 - type: Transform -- proto: PosterLegitCleanliness - entities: - - uid: 4586 - components: - - pos: 14.5,5.5 - parent: 4812 - type: Transform - - uid: 7046 - components: - - pos: -23.5,-10.5 - parent: 4812 - type: Transform -- proto: PosterLegitCohibaRobustoAd - entities: - - uid: 5360 - components: - - pos: 17.5,-14.5 - parent: 4812 - type: Transform - - uid: 6488 - components: - - pos: -2.5,-20.5 - parent: 4812 - type: Transform -- proto: PosterLegitIan - entities: - - uid: 4527 - components: - - pos: 10.5,23.5 - parent: 4812 - type: Transform -- proto: PosterLegitLoveIan - entities: - - uid: 4528 - components: - - pos: 8.5,30.5 - parent: 4812 - type: Transform -- proto: PosterLegitMime - entities: - - uid: 9629 - components: - - pos: -9.5,2.5 - parent: 4812 - type: Transform -- proto: PosterLegitNanomichiAd - entities: - - uid: 4529 - components: - - pos: 11.5,25.5 - parent: 4812 - type: Transform -- proto: PosterLegitNanotrasenLogo - entities: - - uid: 1463 - components: - - pos: -5.5,-8.5 - parent: 4812 - type: Transform - - uid: 1793 - components: - - pos: -5.5,15.5 - parent: 4812 - type: Transform - - uid: 1794 - components: - - pos: 0.5,15.5 - parent: 4812 - type: Transform - - uid: 2933 - components: - - pos: -9.5,21.5 - parent: 4812 - type: Transform - - uid: 2934 - components: - - pos: -9.5,33.5 - parent: 4812 - type: Transform - - uid: 2935 - components: - - pos: 4.5,33.5 - parent: 4812 - type: Transform - - uid: 2936 - components: - - pos: -15.5,26.5 - parent: 4812 - type: Transform - - uid: 3425 - components: - - pos: 26.5,3.5 - parent: 4812 - type: Transform - - uid: 4526 - components: - - pos: 13.5,11.5 - parent: 4812 - type: Transform - - uid: 4531 - components: - - pos: 1.5,27.5 - parent: 4812 - type: Transform - - uid: 4532 - components: - - pos: -6.5,27.5 - parent: 4812 - type: Transform - - uid: 4583 - components: - - pos: 23.5,-4.5 - parent: 4812 - type: Transform - - uid: 6486 - components: - - pos: -0.5,-23.5 - parent: 4812 - type: Transform - - uid: 6487 - components: - - pos: -4.5,-30.5 - parent: 4812 - type: Transform - - uid: 8301 - components: - - pos: -21.5,18.5 - parent: 4812 - type: Transform -- proto: PosterLegitNoERP - entities: - - uid: 4587 - components: - - pos: 17.5,6.5 - parent: 4812 - type: Transform - - uid: 7450 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-27.5 - parent: 4812 - type: Transform -- proto: PosterLegitNTTGC - entities: - - uid: 11336 - components: - - pos: -30.5,-13.5 - parent: 4812 - type: Transform -- proto: PosterLegitPeriodicTable - entities: - - uid: 10738 - components: - - pos: -7.5,-17.5 - parent: 4812 - type: Transform -- proto: PosterLegitRenault - entities: - - uid: 11275 - components: - - pos: -13.5,21.5 - parent: 4812 - type: Transform -- proto: PosterLegitSafetyMothDelam - entities: - - uid: 10996 - components: - - pos: -37.5,-9.5 - parent: 4812 - type: Transform -- proto: PosterLegitSafetyMothEpi - entities: - - uid: 10747 - components: - - pos: -7.5,-15.5 - parent: 4812 - type: Transform -- proto: PosterLegitSafetyMothHardhat - entities: - - uid: 10918 - components: - - pos: -27.5,-5.5 - parent: 4812 - type: Transform -- proto: PosterLegitSafetyMothMeth - entities: - - uid: 10739 - components: - - pos: -13.5,-18.5 - parent: 4812 - type: Transform -- proto: PosterLegitSafetyMothPiping - entities: - - uid: 10906 - components: - - pos: -44.5,-0.5 - parent: 4812 - type: Transform -- proto: PosterLegitScience - entities: - - uid: 6367 - components: - - pos: 30.5,-28.5 - parent: 4812 - type: Transform -- proto: PosterLegitVacation - entities: - - uid: 10766 - components: - - pos: 6.5,-10.5 - parent: 4812 - type: Transform -- proto: PottedPlant0 - entities: - - uid: 6625 - components: - - pos: -31.5,22.5 - parent: 4812 - type: Transform - - uid: 6738 - components: - - pos: -25.5,22.5 - parent: 4812 - type: Transform -- proto: PottedPlant1 - entities: - - uid: 6333 - components: - - pos: 31.5,-23.5 - parent: 4812 - type: Transform - - uid: 6334 - components: - - pos: 35.5,-23.5 - parent: 4812 - type: Transform -- proto: PottedPlant10 - entities: - - uid: 7441 - components: - - pos: -26.5,-22.5 - parent: 4812 - type: Transform -- proto: PottedPlantBioluminscent - entities: - - uid: 6355 - components: - - pos: 9.5,-14.5 - parent: 4812 - type: Transform -- proto: PottedPlantRandom - entities: - - uid: 924 - components: - - pos: 0.5,-4.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 925 - components: - - pos: -4.5,-8.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 926 - components: - - pos: -0.5,-10.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 927 - components: - - pos: -4.5,-10.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 928 - components: - - pos: -0.5,11.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 929 - components: - - pos: -4.5,11.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 937 - components: - - pos: 0.5,1.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 938 - components: - - pos: -5.5,-2.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 1730 - components: - - pos: -7.5,9.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 1731 - components: - - pos: -7.5,8.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 1799 - components: - - pos: -5.5,18.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 1800 - components: - - pos: 0.5,18.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 2598 - components: - - pos: -12.5,25.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 2600 - components: - - pos: -10.5,22.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 2681 - components: - - pos: -6.5,33.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 2682 - components: - - pos: 1.5,33.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 2683 - components: - - pos: -5.5,30.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 2684 - components: - - pos: 0.5,30.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 3258 - components: - - pos: 17.5,17.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 4550 - components: - - pos: 27.5,-4.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 4577 - components: - - pos: 27.5,-8.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 4600 - components: - - pos: 13.5,-8.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 5062 - components: - - pos: -9.5,-48.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 5063 - components: - - pos: -12.5,-48.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 5064 - components: - - pos: -12.5,-45.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 6191 - components: - - pos: 13.5,-12.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 6390 - components: - - pos: -2.5,-19.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 6391 - components: - - pos: -2.5,-15.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 6438 - components: - - pos: 2.5,-34.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 7045 - components: - - pos: -10.5,-23.5 - parent: 4812 - type: Transform - - uid: 8288 - components: - - pos: -20.5,17.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 9683 - components: - - pos: -36.5,4.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 9684 - components: - - pos: -29.5,-0.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 9685 - components: - - pos: -29.5,-3.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 9834 - components: - - pos: -48.5,-9.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 10860 - components: - - pos: -22.5,-1.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 11290 - components: - - pos: 17.5,-38.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 11291 - components: - - pos: 20.5,-36.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 11292 - components: - - pos: 21.5,-38.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 11293 - components: - - pos: 17.5,-36.5 - parent: 4812 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- proto: PottedPlantRD - entities: - - uid: 6290 - components: - - pos: 24.5,-18.5 - parent: 4812 - type: Transform -- proto: PowerCellRecharger - entities: - - uid: 1687 - components: - - pos: 7.5,16.5 - parent: 4812 - type: Transform - - canCollide: False - type: Physics - - uid: 2668 - components: - - pos: 1.5,34.5 - parent: 4812 - type: Transform - - canCollide: False - type: Physics - - uid: 3880 - components: - - pos: 9.5,56.5 - parent: 4812 - type: Transform - - canCollide: False - type: Physics - - uid: 6194 - components: - - pos: 7.5,-18.5 - parent: 4812 - type: Transform - - canCollide: False - type: Physics - - uid: 6229 - components: - - pos: 11.5,-28.5 - parent: 4812 - type: Transform - - canCollide: False - type: Physics - - uid: 8579 - components: - - pos: -20.5,7.5 - parent: 4812 - type: Transform - - canCollide: False - type: Physics - - uid: 10713 - components: - - pos: -30.5,-7.5 - parent: 4812 - type: Transform - - canCollide: False - type: Physics - - uid: 10849 - components: - - pos: -27.5,-3.5 - parent: 4812 - type: Transform - - canCollide: False - type: Physics -- proto: PowerDrill - entities: - - uid: 6309 - components: - - pos: 28.456348,-20.243092 - parent: 4812 - type: Transform -- proto: Poweredlight - entities: - - uid: 1515 - components: - - pos: -16.5,-5.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1516 - components: - - pos: -11.5,-5.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1517 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-8.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1518 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-8.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1665 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,10.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1666 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,10.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1667 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,1.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1668 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,1.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1669 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-4.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1670 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-4.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1671 - components: - - pos: 2.5,9.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1672 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-3.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1673 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,0.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1975 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,15.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1983 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,15.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2541 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,29.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2542 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,29.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2543 - components: - - rot: 3.141592653589793 rad - pos: -15.5,27.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2544 - components: - - pos: 7.5,22.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2545 - components: - - pos: 9.5,26.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2622 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,28.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2623 - components: - - pos: -14.5,24.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2624 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,28.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2625 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,28.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2626 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,23.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2627 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,23.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2628 - components: - - pos: -7.5,34.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2629 - components: - - pos: 2.5,34.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2630 - components: - - pos: -0.5,35.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2631 - components: - - pos: -4.5,35.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2687 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,31.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2688 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,31.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2689 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,18.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2690 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,18.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2691 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,13.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2692 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,14.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2694 - components: - - pos: 11.5,20.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2696 - components: - - pos: -16.5,20.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2733 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,24.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2734 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,24.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2776 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,31.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2784 - components: - - pos: 1.5,20.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2785 - components: - - pos: -6.5,20.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3216 - components: - - rot: 3.141592653589793 rad - pos: 17.5,17.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3217 - components: - - rot: 3.141592653589793 rad - pos: 17.5,13.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3218 - components: - - rot: 3.141592653589793 rad - pos: 23.5,12.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3219 - components: - - pos: 17.5,21.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3220 - components: - - pos: 17.5,27.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3221 - components: - - rot: 3.141592653589793 rad - pos: 17.5,23.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3965 - components: - - pos: 10.5,56.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3966 - components: - - pos: 10.5,50.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3967 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,54.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3968 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,50.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3969 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,50.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3970 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,54.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3971 - components: - - rot: 3.141592653589793 rad - pos: 10.5,43.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3972 - components: - - pos: 14.5,47.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3973 - components: - - pos: 6.5,47.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4468 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,12.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4469 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,4.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4470 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-5.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4471 - components: - - pos: 19.5,-2.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4472 - components: - - rot: 3.141592653589793 rad - pos: 29.5,-9.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4473 - components: - - pos: 29.5,4.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4474 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-5.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4475 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,0.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4476 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-7.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4952 - components: - - pos: -19.5,-25.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - uid: 4953 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-23.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - uid: 4954 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-27.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - uid: 4986 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-27.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5067 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-53.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5068 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-40.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5069 - components: - - pos: -12.5,-45.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5070 - components: - - pos: -9.5,-45.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5283 - components: - - pos: -4.5,-34.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5284 - components: - - pos: -0.5,-34.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6258 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-14.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6259 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-18.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6260 - components: - - pos: 13.5,-17.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6261 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-28.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6262 - components: - - pos: 3.5,-23.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6263 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-27.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6264 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-25.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6265 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-27.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6266 - components: - - pos: 11.5,-20.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6267 - components: - - pos: 6.5,-20.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6268 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-16.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6269 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-28.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6270 - components: - - rot: 3.141592653589793 rad - pos: 28.5,-30.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6271 - components: - - pos: 28.5,-22.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6272 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-26.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6273 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-22.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6274 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-19.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6275 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-19.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6276 - components: - - pos: 35.5,-23.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6277 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-28.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6478 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-26.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7019 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-34.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7024 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-32.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7028 - components: - - pos: -15.5,-15.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - uid: 7053 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-28.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - uid: 7064 - components: - - rot: 3.141592653589793 rad - pos: -25.5,-28.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - uid: 7288 - components: - - pos: -17.5,-20.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - uid: 7367 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-25.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - uid: 7397 - components: - - pos: -25.5,-22.5 - parent: 4812 - type: Transform - - enabled: False - type: AmbientSound - - uid: 7582 - components: - - pos: -10.5,-20.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7583 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-18.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7621 - components: - - pos: -2.5,-21.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7622 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-19.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7623 - components: - - pos: -5.5,-11.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7624 - components: - - pos: 0.5,-11.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7625 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-30.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7626 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-30.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7627 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-23.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7628 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-23.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7629 - components: - - pos: -13.5,-11.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7630 - components: - - pos: -19.5,-11.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7631 - components: - - pos: 4.5,-11.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7632 - components: - - pos: 10.5,-11.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8141 - components: - - pos: -36.5,12.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8142 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,16.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8143 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,16.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8144 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,12.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8145 - components: - - rot: 3.141592653589793 rad - pos: -36.5,19.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8247 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,28.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8269 - components: - - pos: -20.5,25.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8304 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,18.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8305 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,15.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8603 - components: - - pos: -18.5,12.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8604 - components: - - rot: 3.141592653589793 rad - pos: -18.5,7.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9017 - components: - - pos: -38.5,-33.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9311 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,1.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9312 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,3.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9313 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,5.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9314 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,7.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9315 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,9.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9316 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,11.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9317 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,0.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9318 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,4.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9319 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,8.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9320 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,12.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9706 - components: - - pos: -46.5,14.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9707 - components: - - pos: -42.5,14.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9819 - components: - - pos: -40.5,5.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9820 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,10.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9821 - components: - - rot: 3.141592653589793 rad - pos: -41.5,0.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9822 - components: - - rot: 3.141592653589793 rad - pos: -28.5,1.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9823 - components: - - rot: 3.141592653589793 rad - pos: -34.5,1.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10660 - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-10.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10661 - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-10.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10680 - components: - - pos: -49.5,-6.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10681 - components: - - pos: -47.5,-11.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10682 - components: - - pos: -38.5,-10.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10684 - components: - - rot: 3.141592653589793 rad - pos: -42.5,-18.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10686 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-5.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10687 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-9.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10688 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-2.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10689 - components: - - pos: -34.5,-0.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10690 - components: - - pos: -24.5,8.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10691 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,13.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10692 - components: - - pos: -43.5,-1.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10693 - components: - - pos: -41.5,-5.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10694 - components: - - pos: -46.5,-6.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10695 - components: - - rot: 3.141592653589793 rad - pos: -45.5,-14.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10920 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-9.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11246 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-37.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11247 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-41.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11248 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-37.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11916 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,1.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11917 - components: - - pos: -22.5,5.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11918 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-1.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11920 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-35.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11921 - components: - - pos: -11.5,-14.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11923 - components: - - pos: -30.5,5.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11924 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-7.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11926 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-7.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11961 - components: - - pos: -12.5,17.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- proto: PoweredlightEmpty - entities: - - uid: 11249 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-41.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11250 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-33.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- proto: PoweredSmallLight - entities: - - uid: 255 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-1.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 256 - components: - - pos: -18.5,5.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1500 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-7.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1501 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-7.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1540 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-6.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1541 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-7.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1549 - components: - - pos: 6.5,4.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1664 - components: - - pos: 6.5,9.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1724 - components: - - pos: -9.5,1.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1763 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,8.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1764 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,7.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1765 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,6.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1766 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,5.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1803 - components: - - pos: 4.5,12.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1804 - components: - - pos: 5.5,-9.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1805 - components: - - pos: -9.5,-3.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1806 - components: - - pos: -20.5,-3.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1807 - components: - - pos: -9.5,13.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2577 - components: - - rot: 3.141592653589793 rad - pos: 5.5,31.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2751 - components: - - rot: 3.141592653589793 rad - pos: 19.5,34.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2768 - components: - - rot: 3.141592653589793 rad - pos: 22.5,24.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2777 - components: - - pos: 22.5,28.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3149 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,35.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3224 - components: - - pos: 27.5,15.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3280 - components: - - pos: 22.5,8.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3732 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,5.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3733 - components: - - pos: 24.5,4.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3770 - components: - - pos: 16.5,-14.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3974 - components: - - pos: 3.5,46.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4466 - components: - - pos: 15.5,8.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4467 - components: - - pos: 20.5,11.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4477 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,1.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4480 - components: - - pos: 19.5,2.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4481 - components: - - pos: 22.5,1.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4482 - components: - - pos: 16.5,11.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4545 - components: - - pos: 15.5,-5.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4546 - components: - - pos: 21.5,-6.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5388 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-16.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5389 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-12.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6278 - components: - - pos: 19.5,-23.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6279 - components: - - pos: 17.5,-20.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6280 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,24.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6281 - components: - - pos: 15.5,-30.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7020 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-39.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7021 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-38.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7022 - components: - - pos: -23.5,-35.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7023 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-36.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7068 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-32.5 - parent: 4812 - type: Transform - - uid: 7069 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-15.5 - parent: 4812 - type: Transform - - uid: 7150 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-22.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7152 - components: - - pos: -29.5,-14.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7153 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-15.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7154 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-19.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7731 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-20.5 - parent: 4812 - type: Transform - - uid: 7796 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-19.5 - parent: 4812 - type: Transform - - uid: 8146 - components: - - pos: -26.5,20.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8147 - components: - - pos: -26.5,17.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8148 - components: - - rot: 3.141592653589793 rad - pos: -26.5,10.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8149 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,27.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8150 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,27.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8151 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,30.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8152 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,31.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8270 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,28.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8329 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,26.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8454 - components: - - pos: -25.5,14.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9015 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-37.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9016 - components: - - pos: -33.5,-33.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9042 - components: - - pos: -34.5,-36.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9048 - components: - - pos: -27.5,-39.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9049 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-40.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9055 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-40.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9056 - components: - - rot: 3.141592653589793 rad - pos: -31.5,-40.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9072 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-31.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9073 - components: - - pos: -15.5,-30.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9531 - components: - - pos: -48.5,-4.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9659 - components: - - pos: -31.5,-25.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9698 - components: - - rot: 3.141592653589793 rad - pos: -38.5,-3.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9699 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-2.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10408 - components: - - pos: -55.5,-22.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10409 - components: - - pos: -52.5,-22.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10410 - components: - - pos: -47.5,-19.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10520 - components: - - pos: -37.5,-22.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10521 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-28.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10525 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-30.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10696 - components: - - pos: -35.5,-7.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10880 - components: - - pos: -30.5,8.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10881 - components: - - pos: -38.5,8.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10919 - components: - - pos: -34.5,-14.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11256 - components: - - pos: 10.5,-30.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11301 - components: - - rot: 3.141592653589793 rad - pos: 19.5,-38.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11357 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-33.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11462 - components: - - pos: 32.5,-36.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11473 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-32.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11474 - components: - - pos: 36.5,-36.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11476 - components: - - pos: 18.5,-36.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11674 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,24.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11813 - components: - - pos: -14.5,0.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11868 - components: - - pos: -14.5,5.5 - parent: 4812 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- proto: Protolathe - entities: - - uid: 6182 - components: - - pos: 5.5,-16.5 - parent: 4812 - type: Transform - - materialWhiteList: - - Steel - - Glass - - Plastic - - Wood - - Gold - type: MaterialStorage - - uid: 10699 - components: - - pos: -28.5,-6.5 - parent: 4812 - type: Transform - - materialWhiteList: - - Steel - - Glass - - Plastic - - Wood - - Gold - type: MaterialStorage -- proto: ProtolatheMachineCircuitboard - entities: - - uid: 3390 - components: - - pos: 21.455725,8.6410265 - parent: 4812 - type: Transform - - uid: 4495 - components: - - pos: 17.598711,1.4220471 - parent: 4812 - type: Transform -- proto: Rack - entities: - - uid: 1545 - components: - - pos: 6.5,4.5 - parent: 4812 - type: Transform - - uid: 1652 - components: - - pos: 5.5,8.5 - parent: 4812 - type: Transform - - uid: 1675 - components: - - pos: 3.5,14.5 - parent: 4812 - type: Transform - - uid: 2699 - components: - - pos: 0.5,23.5 - parent: 4812 - type: Transform - - uid: 2700 - components: - - pos: 0.5,24.5 - parent: 4812 - type: Transform - - uid: 2701 - components: - - pos: 0.5,25.5 - parent: 4812 - type: Transform - - uid: 3267 - components: - - pos: 22.5,13.5 - parent: 4812 - type: Transform - - uid: 3289 - components: - - pos: 23.5,7.5 - parent: 4812 - type: Transform - - uid: 3359 - components: - - pos: 13.5,29.5 - parent: 4812 - type: Transform - - uid: 3392 - components: - - pos: 23.5,8.5 - parent: 4812 - type: Transform - - uid: 3393 - components: - - pos: 21.5,8.5 - parent: 4812 - type: Transform - - uid: 3442 - components: - - pos: 21.5,7.5 - parent: 4812 - type: Transform - - uid: 3748 - components: - - pos: 21.5,5.5 - parent: 4812 - type: Transform - - uid: 3750 - components: - - pos: 25.5,3.5 - parent: 4812 - type: Transform - - uid: 3751 - components: - - pos: 25.5,4.5 - parent: 4812 - type: Transform - - uid: 3752 - components: - - pos: 21.5,4.5 - parent: 4812 - type: Transform - - uid: 4485 - components: - - pos: 19.5,6.5 - parent: 4812 - type: Transform - - uid: 4486 - components: - - pos: 19.5,8.5 - parent: 4812 - type: Transform - - uid: 4493 - components: - - pos: 17.5,1.5 - parent: 4812 - type: Transform - - uid: 4539 - components: - - pos: 21.5,-6.5 - parent: 4812 - type: Transform - - uid: 4605 - components: - - pos: 16.5,11.5 - parent: 4812 - type: Transform - - uid: 6226 - components: - - pos: 11.5,-23.5 - parent: 4812 - type: Transform - - uid: 6227 - components: - - pos: 13.5,-23.5 - parent: 4812 - type: Transform - - uid: 8276 - components: - - pos: -16.5,16.5 - parent: 4812 - type: Transform - - uid: 8377 - components: - - pos: -35.5,19.5 - parent: 4812 - type: Transform - - uid: 8424 - components: - - pos: -37.5,12.5 - parent: 4812 - type: Transform - - uid: 10526 - components: - - pos: -41.5,-30.5 - parent: 4812 - type: Transform - - uid: 10603 - components: - - pos: -45.5,-17.5 - parent: 4812 - type: Transform - - uid: 10612 - components: - - pos: -48.5,-23.5 - parent: 4812 - type: Transform - - uid: 10721 - components: - - pos: -36.5,8.5 - parent: 4812 - type: Transform - - uid: 10877 - components: - - pos: -33.5,8.5 - parent: 4812 - type: Transform - - uid: 10898 - components: - - pos: -29.5,-12.5 - parent: 4812 - type: Transform - - uid: 10899 - components: - - pos: -30.5,-12.5 - parent: 4812 - type: Transform - - uid: 10979 - components: - - pos: -37.5,26.5 - parent: 4812 - type: Transform - - uid: 11306 - components: - - pos: 26.5,-35.5 - parent: 4812 - type: Transform - - uid: 11307 - components: - - pos: 24.5,-35.5 - parent: 4812 - type: Transform - - uid: 11308 - components: - - pos: 24.5,-36.5 - parent: 4812 - type: Transform - - uid: 11471 - components: - - pos: 28.5,-35.5 - parent: 4812 - type: Transform - - uid: 11776 - components: - - pos: -34.5,-18.5 - parent: 4812 - type: Transform - - uid: 11788 - components: - - pos: 22.5,-32.5 - parent: 4812 - type: Transform - - uid: 11838 - components: - - pos: -6.5,14.5 - parent: 4812 - type: Transform - - uid: 11883 - components: - - pos: 7.5,12.5 - parent: 4812 - type: Transform -- proto: RadarConsoleCircuitboard - entities: - - uid: 2725 - components: - - pos: 0.5,25.5 - parent: 4812 - type: Transform -- proto: RadioHandheld - entities: - - uid: 4582 - components: - - pos: 27.5,4.5 - parent: 4812 - type: Transform - - uid: 6481 - components: - - pos: -2.7355957,-24.240028 - parent: 4812 - type: Transform - - uid: 8453 - components: - - pos: -29.452932,10.599279 - parent: 4812 - type: Transform -- proto: Railing - entities: - - uid: 7370 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-8.5 - parent: 4812 - type: Transform - - uid: 7395 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-9.5 - parent: 4812 - type: Transform -- proto: RailingCorner - entities: - - uid: 7393 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-8.5 - parent: 4812 - type: Transform -- proto: RandomArcade - entities: - - uid: 10851 - components: - - pos: -23.5,5.5 - parent: 4812 - type: Transform -- proto: RandomArtifactSpawner - entities: - - uid: 6324 - components: - - pos: 22.5,-30.5 - parent: 4812 - type: Transform - - uid: 10445 - components: - - pos: -52.5,-17.5 - parent: 4812 - type: Transform - - uid: 12472 - components: - - pos: 5.5,-40.5 - parent: 4812 - type: Transform -- proto: RandomDrinkBottle - entities: - - uid: 10931 - components: - - pos: 3.5,4.5 - parent: 4812 - type: Transform -- proto: RandomDrinkGlass - entities: - - uid: 10785 - components: - - pos: 1.5,8.5 - parent: 4812 - type: Transform - - uid: 10930 - components: - - pos: 1.5,7.5 - parent: 4812 - type: Transform -- proto: RandomFoodMeal - entities: - - uid: 3776 - components: - - pos: -2.5,8.5 - parent: 4812 - type: Transform - - uid: 10933 - components: - - pos: 1.5,-0.5 - parent: 4812 - type: Transform -- proto: RandomInstruments - entities: - - uid: 4456 - components: - - pos: 14.5,6.5 - parent: 4812 - type: Transform -- proto: RandomPainting - entities: - - uid: 12164 - components: - - pos: -29.5,-20.5 - parent: 4812 - type: Transform - - uid: 12165 - components: - - pos: -33.5,-14.5 - parent: 4812 - type: Transform - - uid: 12166 - components: - - pos: -33.5,-16.5 - parent: 4812 - type: Transform - - uid: 12167 - components: - - pos: -33.5,-18.5 - parent: 4812 - type: Transform -- proto: RandomPosterAny - entities: - - uid: 1788 - components: - - pos: -10.5,2.5 - parent: 4812 - type: Transform - - uid: 3279 - components: - - pos: 13.5,27.5 - parent: 4812 - type: Transform - - uid: 9067 - components: - - pos: -32.5,-35.5 - parent: 4812 - type: Transform - - uid: 10862 - components: - - pos: -19.5,5.5 - parent: 4812 - type: Transform - - uid: 10863 - components: - - pos: -16.5,-1.5 - parent: 4812 - type: Transform - - uid: 11874 - components: - - rot: 3.141592653589793 rad - pos: 34.5,-32.5 - parent: 4812 - type: Transform - - uid: 11875 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-31.5 - parent: 4812 - type: Transform - - uid: 11876 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-31.5 - parent: 4812 - type: Transform -- proto: RandomPosterContraband - entities: - - uid: 4585 - components: - - pos: 17.5,0.5 - parent: 4812 - type: Transform - - uid: 6492 - components: - - pos: 15.5,9.5 - parent: 4812 - type: Transform - - uid: 6493 - components: - - pos: 17.5,-30.5 - parent: 4812 - type: Transform - - uid: 9066 - components: - - pos: -28.5,-40.5 - parent: 4812 - type: Transform -- proto: RandomPosterLegit - entities: - - uid: 1470 - components: - - pos: -17.5,-4.5 - parent: 4812 - type: Transform - - uid: 1471 - components: - - pos: -15.5,-4.5 - parent: 4812 - type: Transform - - uid: 1789 - components: - - pos: -9.5,-2.5 - parent: 4812 - type: Transform - - uid: 1790 - components: - - pos: 8.5,0.5 - parent: 4812 - type: Transform - - uid: 1791 - components: - - pos: 4.5,-8.5 - parent: 4812 - type: Transform - - uid: 1792 - components: - - pos: -16.5,5.5 - parent: 4812 - type: Transform - - uid: 1818 - components: - - pos: -6.5,11.5 - parent: 4812 - type: Transform - - uid: 4588 - components: - - pos: 15.5,12.5 - parent: 4812 - type: Transform - - uid: 4589 - components: - - pos: 22.5,-6.5 - parent: 4812 - type: Transform - - uid: 4590 - components: - - pos: 15.5,-4.5 - parent: 4812 - type: Transform - - uid: 6489 - components: - - pos: -3.5,-20.5 - parent: 4812 - type: Transform - - uid: 6490 - components: - - pos: 5.5,-10.5 - parent: 4812 - type: Transform - - uid: 6491 - components: - - pos: 10.5,-3.5 - parent: 4812 - type: Transform - - uid: 11872 - components: - - rot: 3.141592653589793 rad - pos: -10.5,14.5 - parent: 4812 - type: Transform - - uid: 11873 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-1.5 - parent: 4812 - type: Transform -- proto: RandomSoap - entities: - - uid: 1754 - components: - - pos: -10.5,6.5 - parent: 4812 - type: Transform - - uid: 3439 - components: - - pos: 19.5,36.5 - parent: 4812 - type: Transform - - uid: 4457 - components: - - pos: 16.5,6.5 - parent: 4812 - type: Transform - - uid: 8248 - components: - - pos: -19.5,29.5 - parent: 4812 - type: Transform -- proto: RandomSpawner - entities: - - uid: 10934 - components: - - pos: -1.5,17.5 - parent: 4812 - type: Transform - - uid: 10935 - components: - - pos: -14.5,20.5 - parent: 4812 - type: Transform - - uid: 10936 - components: - - pos: -23.5,18.5 - parent: 4812 - type: Transform - - uid: 10937 - components: - - pos: -26.5,3.5 - parent: 4812 - type: Transform - - uid: 10938 - components: - - pos: -20.5,2.5 - parent: 4812 - type: Transform - - uid: 10939 - components: - - pos: -33.5,-1.5 - parent: 4812 - type: Transform - - uid: 10940 - components: - - pos: -25.5,-8.5 - parent: 4812 - type: Transform - - uid: 10985 - components: - - pos: -16.5,-12.5 - parent: 4812 - type: Transform - - uid: 11236 - components: - - pos: 12.5,-36.5 - parent: 4812 - type: Transform - - uid: 11237 - components: - - pos: 6.5,-37.5 - parent: 4812 - type: Transform - - uid: 11238 - components: - - pos: 4.5,-32.5 - parent: 4812 - type: Transform - - uid: 11239 - components: - - pos: 10.5,-40.5 - parent: 4812 - type: Transform - - uid: 11739 - components: - - pos: -6.5,-13.5 - parent: 4812 - type: Transform - - uid: 11911 - components: - - pos: -0.5,-22.5 - parent: 4812 - type: Transform - - uid: 11912 - components: - - pos: -6.5,-34.5 - parent: 4812 - type: Transform - - uid: 11913 - components: - - pos: -11.5,-40.5 - parent: 4812 - type: Transform - - uid: 11915 - components: - - pos: 6.5,-18.5 - parent: 4812 - type: Transform - - uid: 12047 - components: - - pos: 21.5,-24.5 - parent: 4812 - type: Transform - - uid: 12147 - components: - - pos: 31.5,-33.5 - parent: 4812 - type: Transform - - uid: 12149 - components: - - pos: 15.5,-34.5 - parent: 4812 - type: Transform - - uid: 12152 - components: - - pos: 7.5,-37.5 - parent: 4812 - type: Transform - - uid: 12153 - components: - - pos: 8.5,-36.5 - parent: 4812 - type: Transform - - uid: 12154 - components: - - pos: 12.5,-38.5 - parent: 4812 - type: Transform - - uid: 12155 - components: - - pos: 9.5,-33.5 - parent: 4812 - type: Transform - - uid: 12156 - components: - - pos: 12.5,-31.5 - parent: 4812 - type: Transform - - uid: 12157 - components: - - pos: 27.5,-1.5 - parent: 4812 - type: Transform - - uid: 12158 - components: - - pos: 16.5,-3.5 - parent: 4812 - type: Transform - - uid: 12159 - components: - - pos: 12.5,4.5 - parent: 4812 - type: Transform - - uid: 12160 - components: - - pos: 19.5,14.5 - parent: 4812 - type: Transform - - uid: 12161 - components: - - pos: -30.5,17.5 - parent: 4812 - type: Transform -- proto: RCD - entities: - - uid: 10767 - components: - - pos: -48.51471,-8.421415 - parent: 4812 - type: Transform -- proto: RCDAmmo - entities: - - uid: 10768 - components: - - pos: -48.249084,-8.265165 - parent: 4812 - type: Transform -- proto: ReagentContainerFlour - entities: - - uid: 1645 - components: - - pos: 7.6925507,0.6939993 - parent: 4812 - type: Transform -- proto: ReagentGrinderMachineCircuitboard - entities: - - uid: 3404 - components: - - pos: 23.455725,8.6254015 - parent: 4812 - type: Transform -- proto: Recycler - entities: - - uid: 11244 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-38.5 - parent: 4812 - type: Transform - - links: - - 11245 - type: DeviceLinkSink -- proto: ReinforcedPlasmaWindow - entities: - - uid: 4138 - components: - - pos: -35.5,18.5 - parent: 4812 - type: Transform - - uid: 4139 - components: - - pos: -33.5,18.5 - parent: 4812 - type: Transform - - uid: 4140 - components: - - pos: -32.5,19.5 - parent: 4812 - type: Transform - - uid: 4141 - components: - - pos: -32.5,20.5 - parent: 4812 - type: Transform - - uid: 9035 - components: - - pos: -50.5,11.5 - parent: 4812 - type: Transform - - uid: 9176 - components: - - pos: -50.5,1.5 - parent: 4812 - type: Transform - - uid: 9307 - components: - - pos: -50.5,9.5 - parent: 4812 - type: Transform - - uid: 9308 - components: - - pos: -50.5,7.5 - parent: 4812 - type: Transform - - uid: 9309 - components: - - pos: -50.5,5.5 - parent: 4812 - type: Transform - - uid: 9310 - components: - - pos: -50.5,3.5 - parent: 4812 - type: Transform - - uid: 9475 - components: - - pos: -43.5,15.5 - parent: 4812 - type: Transform - - uid: 9476 - components: - - pos: -44.5,15.5 - parent: 4812 - type: Transform - - uid: 9477 - components: - - pos: -45.5,15.5 - parent: 4812 - type: Transform - - uid: 9478 - components: - - pos: -46.5,16.5 - parent: 4812 - type: Transform - - uid: 9479 - components: - - pos: -46.5,17.5 - parent: 4812 - type: Transform - - uid: 9480 - components: - - pos: -42.5,16.5 - parent: 4812 - type: Transform - - uid: 9481 - components: - - pos: -42.5,17.5 - parent: 4812 - type: Transform - - uid: 9863 - components: - - pos: -46.5,-13.5 - parent: 4812 - type: Transform - - uid: 9875 - components: - - pos: -46.5,-11.5 - parent: 4812 - type: Transform -- proto: ReinforcedWindow - entities: - - uid: 106 - components: - - pos: -7.5,15.5 - parent: 4812 - type: Transform - - uid: 107 - components: - - pos: -8.5,15.5 - parent: 4812 - type: Transform - - uid: 108 - components: - - pos: -9.5,16.5 - parent: 4812 - type: Transform - - uid: 109 - components: - - pos: -9.5,17.5 - parent: 4812 - type: Transform - - uid: 110 - components: - - pos: -8.5,18.5 - parent: 4812 - type: Transform - - uid: 111 - components: - - pos: -7.5,18.5 - parent: 4812 - type: Transform - - uid: 112 - components: - - pos: -6.5,17.5 - parent: 4812 - type: Transform - - uid: 113 - components: - - pos: -6.5,16.5 - parent: 4812 - type: Transform - - uid: 114 - components: - - pos: 3.5,15.5 - parent: 4812 - type: Transform - - uid: 115 - components: - - pos: 2.5,15.5 - parent: 4812 - type: Transform - - uid: 116 - components: - - pos: 1.5,16.5 - parent: 4812 - type: Transform - - uid: 117 - components: - - pos: 1.5,17.5 - parent: 4812 - type: Transform - - uid: 118 - components: - - pos: 2.5,18.5 - parent: 4812 - type: Transform - - uid: 119 - components: - - pos: 3.5,18.5 - parent: 4812 - type: Transform - - uid: 120 - components: - - pos: 4.5,17.5 - parent: 4812 - type: Transform - - uid: 121 - components: - - pos: 4.5,16.5 - parent: 4812 - type: Transform - - uid: 128 - components: - - pos: -4.5,15.5 - parent: 4812 - type: Transform - - uid: 129 - components: - - pos: -4.5,12.5 - parent: 4812 - type: Transform - - uid: 130 - components: - - pos: -0.5,12.5 - parent: 4812 - type: Transform - - uid: 131 - components: - - pos: -0.5,15.5 - parent: 4812 - type: Transform - - uid: 132 - components: - - pos: -0.5,-9.5 - parent: 4812 - type: Transform - - uid: 133 - components: - - pos: -4.5,-9.5 - parent: 4812 - type: Transform - - uid: 134 - components: - - pos: 2.5,1.5 - parent: 4812 - type: Transform - - uid: 135 - components: - - pos: 5.5,18.5 - parent: 4812 - type: Transform - - uid: 136 - components: - - pos: 7.5,18.5 - parent: 4812 - type: Transform - - uid: 137 - components: - - pos: 9.5,18.5 - parent: 4812 - type: Transform - - uid: 178 - components: - - pos: -18.5,18.5 - parent: 4812 - type: Transform - - uid: 179 - components: - - pos: -19.5,18.5 - parent: 4812 - type: Transform - - uid: 184 - components: - - pos: -21.5,14.5 - parent: 4812 - type: Transform - - uid: 215 - components: - - pos: -6.5,-10.5 - parent: 4812 - type: Transform - - uid: 216 - components: - - pos: -8.5,-10.5 - parent: 4812 - type: Transform - - uid: 217 - components: - - pos: -9.5,-10.5 - parent: 4812 - type: Transform - - uid: 218 - components: - - pos: -12.5,-10.5 - parent: 4812 - type: Transform - - uid: 219 - components: - - pos: -14.5,-10.5 - parent: 4812 - type: Transform - - uid: 220 - components: - - pos: -16.5,-10.5 - parent: 4812 - type: Transform - - uid: 1784 - components: - - pos: 18.5,31.5 - parent: 4812 - type: Transform - - uid: 1843 - components: - - pos: -4.5,27.5 - parent: 4812 - type: Transform - - uid: 1844 - components: - - pos: -2.5,27.5 - parent: 4812 - type: Transform - - uid: 1845 - components: - - pos: -0.5,27.5 - parent: 4812 - type: Transform - - uid: 1856 - components: - - pos: 1.5,30.5 - parent: 4812 - type: Transform - - uid: 1869 - components: - - pos: -9.5,32.5 - parent: 4812 - type: Transform - - uid: 1870 - components: - - pos: -9.5,34.5 - parent: 4812 - type: Transform - - uid: 1871 - components: - - pos: -9.5,35.5 - parent: 4812 - type: Transform - - uid: 1872 - components: - - pos: -8.5,35.5 - parent: 4812 - type: Transform - - uid: 1873 - components: - - pos: -6.5,35.5 - parent: 4812 - type: Transform - - uid: 1874 - components: - - pos: -6.5,36.5 - parent: 4812 - type: Transform - - uid: 1875 - components: - - pos: -5.5,36.5 - parent: 4812 - type: Transform - - uid: 1876 - components: - - pos: 1.5,35.5 - parent: 4812 - type: Transform - - uid: 1877 - components: - - pos: 1.5,36.5 - parent: 4812 - type: Transform - - uid: 1878 - components: - - pos: 0.5,36.5 - parent: 4812 - type: Transform - - uid: 1879 - components: - - pos: 4.5,34.5 - parent: 4812 - type: Transform - - uid: 1880 - components: - - pos: 4.5,35.5 - parent: 4812 - type: Transform - - uid: 1881 - components: - - pos: 3.5,35.5 - parent: 4812 - type: Transform - - uid: 1882 - components: - - pos: -1.5,36.5 - parent: 4812 - type: Transform - - uid: 1883 - components: - - pos: -2.5,36.5 - parent: 4812 - type: Transform - - uid: 1884 - components: - - pos: -3.5,36.5 - parent: 4812 - type: Transform - - uid: 1897 - components: - - pos: 4.5,26.5 - parent: 4812 - type: Transform - - uid: 1898 - components: - - pos: 4.5,24.5 - parent: 4812 - type: Transform - - uid: 1902 - components: - - pos: 6.5,33.5 - parent: 4812 - type: Transform - - uid: 1924 - components: - - pos: 6.5,23.5 - parent: 4812 - type: Transform - - uid: 1925 - components: - - pos: 8.5,23.5 - parent: 4812 - type: Transform - - uid: 1944 - components: - - pos: -9.5,22.5 - parent: 4812 - type: Transform - - uid: 1945 - components: - - pos: -9.5,24.5 - parent: 4812 - type: Transform - - uid: 1962 - components: - - pos: -12.5,30.5 - parent: 4812 - type: Transform - - uid: 1963 - components: - - pos: -11.5,30.5 - parent: 4812 - type: Transform - - uid: 2201 - components: - - pos: -6.5,28.5 - parent: 4812 - type: Transform - - uid: 2204 - components: - - pos: -6.5,30.5 - parent: 4812 - type: Transform - - uid: 2209 - components: - - pos: 1.5,28.5 - parent: 4812 - type: Transform - - uid: 2466 - components: - - pos: -10.5,26.5 - parent: 4812 - type: Transform - - uid: 2467 - components: - - pos: -12.5,26.5 - parent: 4812 - type: Transform - - uid: 2468 - components: - - pos: -13.5,26.5 - parent: 4812 - type: Transform - - uid: 2469 - components: - - pos: 5.5,27.5 - parent: 4812 - type: Transform - - uid: 2470 - components: - - pos: 7.5,27.5 - parent: 4812 - type: Transform - - uid: 2471 - components: - - pos: 8.5,27.5 - parent: 4812 - type: Transform - - uid: 2761 - components: - - pos: 21.5,26.5 - parent: 4812 - type: Transform - - uid: 2762 - components: - - pos: 23.5,26.5 - parent: 4812 - type: Transform - - uid: 2763 - components: - - pos: 22.5,29.5 - parent: 4812 - type: Transform - - uid: 2764 - components: - - pos: 19.5,29.5 - parent: 4812 - type: Transform - - uid: 2772 - components: - - pos: 22.5,26.5 - parent: 4812 - type: Transform - - uid: 2773 - components: - - pos: 22.5,23.5 - parent: 4812 - type: Transform - - uid: 2775 - components: - - pos: 20.5,29.5 - parent: 4812 - type: Transform - - uid: 2801 - components: - - pos: 13.5,17.5 - parent: 4812 - type: Transform - - uid: 2802 - components: - - pos: 13.5,19.5 - parent: 4812 - type: Transform - - uid: 2803 - components: - - pos: 14.5,16.5 - parent: 4812 - type: Transform - - uid: 2804 - components: - - pos: 16.5,16.5 - parent: 4812 - type: Transform - - uid: 2805 - components: - - pos: 18.5,16.5 - parent: 4812 - type: Transform - - uid: 2806 - components: - - pos: 20.5,16.5 - parent: 4812 - type: Transform - - uid: 2807 - components: - - pos: 21.5,21.5 - parent: 4812 - type: Transform - - uid: 2808 - components: - - pos: 21.5,19.5 - parent: 4812 - type: Transform - - uid: 2809 - components: - - pos: 19.5,22.5 - parent: 4812 - type: Transform - - uid: 2810 - components: - - pos: 13.5,13.5 - parent: 4812 - type: Transform - - uid: 2811 - components: - - pos: 14.5,22.5 - parent: 4812 - type: Transform - - uid: 2812 - components: - - pos: 16.5,28.5 - parent: 4812 - type: Transform - - uid: 2819 - components: - - pos: 18.5,30.5 - parent: 4812 - type: Transform - - uid: 2884 - components: - - pos: 23.5,17.5 - parent: 4812 - type: Transform - - uid: 2885 - components: - - pos: 21.5,13.5 - parent: 4812 - type: Transform - - uid: 2886 - components: - - pos: 25.5,15.5 - parent: 4812 - type: Transform - - uid: 2887 - components: - - pos: 25.5,13.5 - parent: 4812 - type: Transform - - uid: 2888 - components: - - pos: 26.5,16.5 - parent: 4812 - type: Transform - - uid: 2889 - components: - - pos: 27.5,16.5 - parent: 4812 - type: Transform - - uid: 2890 - components: - - pos: 28.5,16.5 - parent: 4812 - type: Transform - - uid: 2891 - components: - - pos: 28.5,15.5 - parent: 4812 - type: Transform - - uid: 2892 - components: - - pos: 28.5,13.5 - parent: 4812 - type: Transform - - uid: 2893 - components: - - pos: 28.5,12.5 - parent: 4812 - type: Transform - - uid: 2894 - components: - - pos: 27.5,12.5 - parent: 4812 - type: Transform - - uid: 2895 - components: - - pos: 26.5,12.5 - parent: 4812 - type: Transform - - uid: 3117 - components: - - pos: 16.5,36.5 - parent: 4812 - type: Transform - - uid: 3503 - components: - - pos: 6.5,43.5 - parent: 4812 - type: Transform - - uid: 3698 - components: - - pos: 10.5,54.5 - parent: 4812 - type: Transform - - uid: 4048 - components: - - pos: 34.5,-8.5 - parent: 4812 - type: Transform - - uid: 4050 - components: - - pos: 33.5,-8.5 - parent: 4812 - type: Transform - - uid: 4051 - components: - - pos: 32.5,-8.5 - parent: 4812 - type: Transform - - uid: 4052 - components: - - pos: 31.5,-6.5 - parent: 4812 - type: Transform - - uid: 4053 - components: - - pos: 32.5,-6.5 - parent: 4812 - type: Transform - - uid: 4054 - components: - - pos: 33.5,-6.5 - parent: 4812 - type: Transform - - uid: 4055 - components: - - pos: 34.5,-6.5 - parent: 4812 - type: Transform - - uid: 4056 - components: - - pos: 34.5,-4.5 - parent: 4812 - type: Transform - - uid: 4057 - components: - - pos: 33.5,-4.5 - parent: 4812 - type: Transform - - uid: 4058 - components: - - pos: 32.5,-4.5 - parent: 4812 - type: Transform - - uid: 4059 - components: - - pos: 32.5,-3.5 - parent: 4812 - type: Transform - - uid: 4060 - components: - - pos: 32.5,-2.5 - parent: 4812 - type: Transform - - uid: 4061 - components: - - pos: 32.5,-1.5 - parent: 4812 - type: Transform - - uid: 4062 - components: - - pos: 32.5,-0.5 - parent: 4812 - type: Transform - - uid: 4063 - components: - - pos: 33.5,-0.5 - parent: 4812 - type: Transform - - uid: 4064 - components: - - pos: 34.5,-0.5 - parent: 4812 - type: Transform - - uid: 4065 - components: - - pos: 34.5,1.5 - parent: 4812 - type: Transform - - uid: 4066 - components: - - pos: 33.5,1.5 - parent: 4812 - type: Transform - - uid: 4067 - components: - - pos: 32.5,1.5 - parent: 4812 - type: Transform - - uid: 4068 - components: - - pos: 31.5,1.5 - parent: 4812 - type: Transform - - uid: 4069 - components: - - pos: 32.5,3.5 - parent: 4812 - type: Transform - - uid: 4070 - components: - - pos: 33.5,3.5 - parent: 4812 - type: Transform - - uid: 4071 - components: - - pos: 34.5,3.5 - parent: 4812 - type: Transform - - uid: 4072 - components: - - pos: 32.5,4.5 - parent: 4812 - type: Transform - - uid: 4073 - components: - - pos: 29.5,1.5 - parent: 4812 - type: Transform - - uid: 4074 - components: - - pos: 27.5,1.5 - parent: 4812 - type: Transform - - uid: 4075 - components: - - pos: 26.5,-0.5 - parent: 4812 - type: Transform - - uid: 4076 - components: - - pos: 26.5,-4.5 - parent: 4812 - type: Transform - - uid: 4077 - components: - - pos: 27.5,-6.5 - parent: 4812 - type: Transform - - uid: 4078 - components: - - pos: 27.5,-10.5 - parent: 4812 - type: Transform - - uid: 4079 - components: - - pos: 32.5,-9.5 - parent: 4812 - type: Transform - - uid: 4080 - components: - - pos: 18.5,-4.5 - parent: 4812 - type: Transform - - uid: 4099 - components: - - pos: 14.5,-12.5 - parent: 4812 - type: Transform - - uid: 4100 - components: - - pos: 14.5,-11.5 - parent: 4812 - type: Transform - - uid: 4110 - components: - - pos: 19.5,-8.5 - parent: 4812 - type: Transform - - uid: 4111 - components: - - pos: 18.5,-8.5 - parent: 4812 - type: Transform - - uid: 4112 - components: - - pos: 17.5,-8.5 - parent: 4812 - type: Transform - - uid: 4113 - components: - - pos: 17.5,-6.5 - parent: 4812 - type: Transform - - uid: 4114 - components: - - pos: 18.5,-6.5 - parent: 4812 - type: Transform - - uid: 4115 - components: - - pos: 19.5,-6.5 - parent: 4812 - type: Transform - - uid: 4627 - components: - - pos: -3.5,-33.5 - parent: 4812 - type: Transform - - uid: 4628 - components: - - pos: -2.5,-33.5 - parent: 4812 - type: Transform - - uid: 4629 - components: - - pos: -1.5,-33.5 - parent: 4812 - type: Transform - - uid: 4630 - components: - - pos: -1.5,-36.5 - parent: 4812 - type: Transform - - uid: 4631 - components: - - pos: -2.5,-36.5 - parent: 4812 - type: Transform - - uid: 4632 - components: - - pos: -3.5,-36.5 - parent: 4812 - type: Transform - - uid: 4633 - components: - - pos: -0.5,-36.5 - parent: 4812 - type: Transform - - uid: 4634 - components: - - pos: 0.5,-36.5 - parent: 4812 - type: Transform - - uid: 4635 - components: - - pos: -4.5,-36.5 - parent: 4812 - type: Transform - - uid: 4636 - components: - - pos: -5.5,-36.5 - parent: 4812 - type: Transform - - uid: 4637 - components: - - pos: -8.5,-36.5 - parent: 4812 - type: Transform - - uid: 4661 - components: - - pos: -9.5,-37.5 - parent: 4812 - type: Transform - - uid: 4662 - components: - - pos: -9.5,-38.5 - parent: 4812 - type: Transform - - uid: 4663 - components: - - pos: -9.5,-39.5 - parent: 4812 - type: Transform - - uid: 4664 - components: - - pos: -9.5,-41.5 - parent: 4812 - type: Transform - - uid: 4665 - components: - - pos: -9.5,-42.5 - parent: 4812 - type: Transform - - uid: 4666 - components: - - pos: -9.5,-44.5 - parent: 4812 - type: Transform - - uid: 4667 - components: - - pos: -9.5,-49.5 - parent: 4812 - type: Transform - - uid: 4668 - components: - - pos: -9.5,-51.5 - parent: 4812 - type: Transform - - uid: 4669 - components: - - pos: -8.5,-51.5 - parent: 4812 - type: Transform - - uid: 4670 - components: - - pos: -7.5,-51.5 - parent: 4812 - type: Transform - - uid: 4671 - components: - - pos: -8.5,-49.5 - parent: 4812 - type: Transform - - uid: 4672 - components: - - pos: -7.5,-49.5 - parent: 4812 - type: Transform - - uid: 4677 - components: - - pos: -7.5,-44.5 - parent: 4812 - type: Transform - - uid: 4678 - components: - - pos: -8.5,-44.5 - parent: 4812 - type: Transform - - uid: 4679 - components: - - pos: -8.5,-42.5 - parent: 4812 - type: Transform - - uid: 4680 - components: - - pos: -7.5,-42.5 - parent: 4812 - type: Transform - - uid: 4682 - components: - - pos: -9.5,-52.5 - parent: 4812 - type: Transform - - uid: 4683 - components: - - pos: -12.5,-52.5 - parent: 4812 - type: Transform - - uid: 4684 - components: - - pos: -12.5,-51.5 - parent: 4812 - type: Transform - - uid: 4687 - components: - - pos: -12.5,-54.5 - parent: 4812 - type: Transform - - uid: 4688 - components: - - pos: -12.5,-55.5 - parent: 4812 - type: Transform - - uid: 4691 - components: - - pos: -9.5,-55.5 - parent: 4812 - type: Transform - - uid: 4692 - components: - - pos: -9.5,-54.5 - parent: 4812 - type: Transform - - uid: 4695 - components: - - pos: -12.5,-38.5 - parent: 4812 - type: Transform - - uid: 4697 - components: - - pos: -12.5,-41.5 - parent: 4812 - type: Transform - - uid: 4698 - components: - - pos: -12.5,-42.5 - parent: 4812 - type: Transform - - uid: 4699 - components: - - pos: -12.5,-44.5 - parent: 4812 - type: Transform - - uid: 4700 - components: - - pos: -12.5,-49.5 - parent: 4812 - type: Transform - - uid: 4701 - components: - - pos: -13.5,-51.5 - parent: 4812 - type: Transform - - uid: 4702 - components: - - pos: -14.5,-51.5 - parent: 4812 - type: Transform - - uid: 4703 - components: - - pos: -13.5,-49.5 - parent: 4812 - type: Transform - - uid: 4704 - components: - - pos: -14.5,-49.5 - parent: 4812 - type: Transform - - uid: 4709 - components: - - pos: -14.5,-44.5 - parent: 4812 - type: Transform - - uid: 4710 - components: - - pos: -13.5,-44.5 - parent: 4812 - type: Transform - - uid: 4711 - components: - - pos: -13.5,-42.5 - parent: 4812 - type: Transform - - uid: 4712 - components: - - pos: -14.5,-42.5 - parent: 4812 - type: Transform - - uid: 4719 - components: - - pos: -44.5,-30.5 - parent: 4812 - type: Transform - - uid: 4798 - components: - - pos: -45.5,-27.5 - parent: 4812 - type: Transform - - uid: 4923 - components: - - pos: -20.5,-24.5 - parent: 4812 - type: Transform - - uid: 4924 - components: - - pos: -21.5,-24.5 - parent: 4812 - type: Transform - - uid: 4988 - components: - - pos: -14.5,-24.5 - parent: 4812 - type: Transform - - uid: 4994 - components: - - pos: -13.5,-23.5 - parent: 4812 - type: Transform - - uid: 5004 - components: - - pos: -7.5,-25.5 - parent: 4812 - type: Transform - - uid: 5040 - components: - - pos: -16.5,-19.5 - parent: 4812 - type: Transform - - uid: 5049 - components: - - pos: -14.5,-19.5 - parent: 4812 - type: Transform - - uid: 5300 - components: - - pos: -4.5,-28.5 - parent: 4812 - type: Transform - - uid: 5301 - components: - - pos: -0.5,-27.5 - parent: 4812 - type: Transform - - uid: 5302 - components: - - pos: -4.5,-26.5 - parent: 4812 - type: Transform - - uid: 5303 - components: - - pos: -2.5,-23.5 - parent: 4812 - type: Transform - - uid: 5313 - components: - - pos: 21.5,-14.5 - parent: 4812 - type: Transform - - uid: 5315 - components: - - pos: 18.5,-10.5 - parent: 4812 - type: Transform - - uid: 5317 - components: - - pos: 21.5,-15.5 - parent: 4812 - type: Transform - - uid: 5318 - components: - - pos: 21.5,-16.5 - parent: 4812 - type: Transform - - uid: 5319 - components: - - pos: 21.5,-17.5 - parent: 4812 - type: Transform - - uid: 5320 - components: - - pos: 21.5,-18.5 - parent: 4812 - type: Transform - - uid: 5321 - components: - - pos: 15.5,-13.5 - parent: 4812 - type: Transform - - uid: 5322 - components: - - pos: 17.5,-10.5 - parent: 4812 - type: Transform - - uid: 5323 - components: - - pos: 16.5,-12.5 - parent: 4812 - type: Transform - - uid: 5324 - components: - - pos: 16.5,-11.5 - parent: 4812 - type: Transform - - uid: 5325 - components: - - pos: 16.5,-10.5 - parent: 4812 - type: Transform - - uid: 5326 - components: - - pos: 19.5,-10.5 - parent: 4812 - type: Transform - - uid: 5327 - components: - - pos: 20.5,-10.5 - parent: 4812 - type: Transform - - uid: 5328 - components: - - pos: 20.5,-11.5 - parent: 4812 - type: Transform - - uid: 5329 - components: - - pos: 20.5,-12.5 - parent: 4812 - type: Transform - - uid: 5393 - components: - - pos: 20.5,-25.5 - parent: 4812 - type: Transform - - uid: 5415 - components: - - pos: 2.5,-18.5 - parent: 4812 - type: Transform - - uid: 5416 - components: - - pos: 2.5,-16.5 - parent: 4812 - type: Transform - - uid: 5417 - components: - - pos: 2.5,-14.5 - parent: 4812 - type: Transform - - uid: 5418 - components: - - pos: 3.5,-13.5 - parent: 4812 - type: Transform - - uid: 5419 - components: - - pos: 5.5,-13.5 - parent: 4812 - type: Transform - - uid: 5420 - components: - - pos: 7.5,-13.5 - parent: 4812 - type: Transform - - uid: 5421 - components: - - pos: 3.5,-19.5 - parent: 4812 - type: Transform - - uid: 5422 - components: - - pos: 5.5,-19.5 - parent: 4812 - type: Transform - - uid: 5428 - components: - - pos: 8.5,-15.5 - parent: 4812 - type: Transform - - uid: 5429 - components: - - pos: 8.5,-17.5 - parent: 4812 - type: Transform - - uid: 5458 - components: - - pos: 10.5,-28.5 - parent: 4812 - type: Transform - - uid: 5459 - components: - - pos: 10.5,-26.5 - parent: 4812 - type: Transform - - uid: 5460 - components: - - pos: 10.5,-24.5 - parent: 4812 - type: Transform - - uid: 5461 - components: - - pos: 7.5,-28.5 - parent: 4812 - type: Transform - - uid: 5462 - components: - - pos: 7.5,-26.5 - parent: 4812 - type: Transform - - uid: 5463 - components: - - pos: 7.5,-25.5 - parent: 4812 - type: Transform - - uid: 5464 - components: - - pos: 10.5,-23.5 - parent: 4812 - type: Transform - - uid: 5472 - components: - - pos: 6.5,-22.5 - parent: 4812 - type: Transform - - uid: 5474 - components: - - pos: 7.5,-23.5 - parent: 4812 - type: Transform - - uid: 5475 - components: - - pos: 4.5,-22.5 - parent: 4812 - type: Transform - - uid: 5477 - components: - - pos: 14.5,-19.5 - parent: 4812 - type: Transform - - uid: 5478 - components: - - pos: 20.5,-23.5 - parent: 4812 - type: Transform - - uid: 5481 - components: - - pos: 19.5,-30.5 - parent: 4812 - type: Transform - - uid: 5482 - components: - - pos: 19.5,-29.5 - parent: 4812 - type: Transform - - uid: 5483 - components: - - pos: 19.5,-28.5 - parent: 4812 - type: Transform - - uid: 5491 - components: - - pos: 9.5,-13.5 - parent: 4812 - type: Transform - - uid: 5533 - components: - - pos: 23.5,-18.5 - parent: 4812 - type: Transform - - uid: 5534 - components: - - pos: 23.5,-17.5 - parent: 4812 - type: Transform - - uid: 5535 - components: - - pos: 24.5,-17.5 - parent: 4812 - type: Transform - - uid: 5536 - components: - - pos: 24.5,-16.5 - parent: 4812 - type: Transform - - uid: 5537 - components: - - pos: 25.5,-16.5 - parent: 4812 - type: Transform - - uid: 5538 - components: - - pos: 26.5,-16.5 - parent: 4812 - type: Transform - - uid: 5539 - components: - - pos: 27.5,-16.5 - parent: 4812 - type: Transform - - uid: 5540 - components: - - pos: 28.5,-16.5 - parent: 4812 - type: Transform - - uid: 5541 - components: - - pos: 28.5,-17.5 - parent: 4812 - type: Transform - - uid: 5542 - components: - - pos: 29.5,-17.5 - parent: 4812 - type: Transform - - uid: 5543 - components: - - pos: 29.5,-18.5 - parent: 4812 - type: Transform - - uid: 5580 - components: - - pos: 27.5,-21.5 - parent: 4812 - type: Transform - - uid: 5581 - components: - - pos: 26.5,-21.5 - parent: 4812 - type: Transform - - uid: 5582 - components: - - pos: 25.5,-21.5 - parent: 4812 - type: Transform - - uid: 5597 - components: - - pos: 23.5,-27.5 - parent: 4812 - type: Transform - - uid: 5782 - components: - - pos: 32.5,-22.5 - parent: 4812 - type: Transform - - uid: 5783 - components: - - pos: 33.5,-22.5 - parent: 4812 - type: Transform - - uid: 5784 - components: - - pos: 34.5,-22.5 - parent: 4812 - type: Transform - - uid: 5807 - components: - - pos: 12.5,-19.5 - parent: 4812 - type: Transform - - uid: 6311 - components: - - pos: 22.5,-27.5 - parent: 4812 - type: Transform - - uid: 6573 - components: - - pos: -8.5,-19.5 - parent: 4812 - type: Transform - - uid: 6579 - components: - - pos: -12.5,-19.5 - parent: 4812 - type: Transform - - uid: 6588 - components: - - pos: -12.5,-13.5 - parent: 4812 - type: Transform - - uid: 6589 - components: - - pos: -10.5,-13.5 - parent: 4812 - type: Transform - - uid: 6590 - components: - - pos: -8.5,-13.5 - parent: 4812 - type: Transform - - uid: 6591 - components: - - pos: -7.5,-14.5 - parent: 4812 - type: Transform - - uid: 6592 - components: - - pos: -7.5,-16.5 - parent: 4812 - type: Transform - - uid: 6593 - components: - - pos: -7.5,-18.5 - parent: 4812 - type: Transform - - uid: 6703 - components: - - pos: -19.5,-40.5 - parent: 4812 - type: Transform - - uid: 6710 - components: - - pos: -20.5,-40.5 - parent: 4812 - type: Transform - - uid: 6754 - components: - - pos: -15.5,-37.5 - parent: 4812 - type: Transform - - uid: 6755 - components: - - pos: -16.5,-37.5 - parent: 4812 - type: Transform - - uid: 6756 - components: - - pos: -17.5,-37.5 - parent: 4812 - type: Transform - - uid: 7196 - components: - - pos: -7.5,-27.5 - parent: 4812 - type: Transform - - uid: 7203 - components: - - pos: -36.5,-38.5 - parent: 4812 - type: Transform - - uid: 7204 - components: - - pos: -37.5,-38.5 - parent: 4812 - type: Transform - - uid: 7205 - components: - - pos: -41.5,-35.5 - parent: 4812 - type: Transform - - uid: 7206 - components: - - pos: -37.5,-36.5 - parent: 4812 - type: Transform - - uid: 7207 - components: - - pos: -39.5,-36.5 - parent: 4812 - type: Transform - - uid: 7209 - components: - - pos: -38.5,-37.5 - parent: 4812 - type: Transform - - uid: 7210 - components: - - pos: -15.5,-24.5 - parent: 4812 - type: Transform - - uid: 7211 - components: - - pos: -17.5,-24.5 - parent: 4812 - type: Transform - - uid: 7229 - components: - - pos: -40.5,-36.5 - parent: 4812 - type: Transform - - uid: 7300 - components: - - pos: -41.5,-36.5 - parent: 4812 - type: Transform - - uid: 7331 - components: - - pos: -13.5,-20.5 - parent: 4812 - type: Transform - - uid: 7371 - components: - - pos: -7.5,-26.5 - parent: 4812 - type: Transform - - uid: 7385 - components: - - pos: -7.5,-20.5 - parent: 4812 - type: Transform - - uid: 7402 - components: - - pos: -8.5,-24.5 - parent: 4812 - type: Transform - - uid: 7403 - components: - - pos: -10.5,-24.5 - parent: 4812 - type: Transform - - uid: 7435 - components: - - pos: -24.5,-24.5 - parent: 4812 - type: Transform - - uid: 7436 - components: - - pos: -26.5,-24.5 - parent: 4812 - type: Transform - - uid: 7665 - components: - - pos: -22.5,29.5 - parent: 4812 - type: Transform - - uid: 7666 - components: - - pos: -24.5,31.5 - parent: 4812 - type: Transform - - uid: 7667 - components: - - pos: -27.5,33.5 - parent: 4812 - type: Transform - - uid: 7668 - components: - - pos: -28.5,33.5 - parent: 4812 - type: Transform - - uid: 7669 - components: - - pos: -29.5,33.5 - parent: 4812 - type: Transform - - uid: 7708 - components: - - pos: -24.5,20.5 - parent: 4812 - type: Transform - - uid: 7709 - components: - - pos: -24.5,19.5 - parent: 4812 - type: Transform - - uid: 7710 - components: - - pos: -24.5,17.5 - parent: 4812 - type: Transform - - uid: 7711 - components: - - pos: -24.5,16.5 - parent: 4812 - type: Transform - - uid: 7716 - components: - - pos: -27.5,20.5 - parent: 4812 - type: Transform - - uid: 7717 - components: - - pos: -27.5,17.5 - parent: 4812 - type: Transform - - uid: 7725 - components: - - pos: -24.5,10.5 - parent: 4812 - type: Transform - - uid: 7726 - components: - - pos: -27.5,10.5 - parent: 4812 - type: Transform - - uid: 7745 - components: - - pos: -32.5,12.5 - parent: 4812 - type: Transform - - uid: 7746 - components: - - pos: -33.5,13.5 - parent: 4812 - type: Transform - - uid: 7747 - components: - - pos: -32.5,14.5 - parent: 4812 - type: Transform - - uid: 7748 - components: - - pos: -32.5,10.5 - parent: 4812 - type: Transform - - uid: 7764 - components: - - pos: -35.5,13.5 - parent: 4812 - type: Transform - - uid: 8169 - components: - - pos: -21.5,21.5 - parent: 4812 - type: Transform - - uid: 8170 - components: - - pos: -20.5,21.5 - parent: 4812 - type: Transform - - uid: 8171 - components: - - pos: -23.5,21.5 - parent: 4812 - type: Transform - - uid: 8172 - components: - - pos: -23.5,26.5 - parent: 4812 - type: Transform - - uid: 8173 - components: - - pos: -21.5,26.5 - parent: 4812 - type: Transform - - uid: 8627 - components: - - pos: -31.5,0.5 - parent: 4812 - type: Transform - - uid: 8629 - components: - - pos: -29.5,0.5 - parent: 4812 - type: Transform - - uid: 8630 - components: - - pos: -27.5,2.5 - parent: 4812 - type: Transform - - uid: 8631 - components: - - pos: -27.5,3.5 - parent: 4812 - type: Transform - - uid: 8632 - components: - - pos: -27.5,4.5 - parent: 4812 - type: Transform - - uid: 8633 - components: - - pos: -28.5,-3.5 - parent: 4812 - type: Transform - - uid: 8634 - components: - - pos: -28.5,-0.5 - parent: 4812 - type: Transform - - uid: 8636 - components: - - pos: -35.5,1.5 - parent: 4812 - type: Transform - - uid: 8637 - components: - - pos: -35.5,3.5 - parent: 4812 - type: Transform - - uid: 8638 - components: - - pos: -35.5,5.5 - parent: 4812 - type: Transform - - uid: 8676 - components: - - pos: -27.5,-8.5 - parent: 4812 - type: Transform - - uid: 8677 - components: - - pos: -27.5,-7.5 - parent: 4812 - type: Transform - - uid: 8678 - components: - - pos: -27.5,-6.5 - parent: 4812 - type: Transform - - uid: 8679 - components: - - pos: -29.5,-4.5 - parent: 4812 - type: Transform - - uid: 8680 - components: - - pos: -31.5,-4.5 - parent: 4812 - type: Transform - - uid: 8734 - components: - - pos: -44.5,-4.5 - parent: 4812 - type: Transform - - uid: 8735 - components: - - pos: -42.5,-4.5 - parent: 4812 - type: Transform - - uid: 8792 - components: - - pos: -27.5,-41.5 - parent: 4812 - type: Transform - - uid: 9291 - components: - - pos: -48.5,-1.5 - parent: 4812 - type: Transform - - uid: 9292 - components: - - pos: -48.5,-0.5 - parent: 4812 - type: Transform - - uid: 9293 - components: - - pos: -48.5,0.5 - parent: 4812 - type: Transform - - uid: 9294 - components: - - pos: -48.5,1.5 - parent: 4812 - type: Transform - - uid: 9295 - components: - - pos: -48.5,2.5 - parent: 4812 - type: Transform - - uid: 9296 - components: - - pos: -48.5,3.5 - parent: 4812 - type: Transform - - uid: 9297 - components: - - pos: -48.5,4.5 - parent: 4812 - type: Transform - - uid: 9298 - components: - - pos: -48.5,5.5 - parent: 4812 - type: Transform - - uid: 9299 - components: - - pos: -48.5,6.5 - parent: 4812 - type: Transform - - uid: 9300 - components: - - pos: -48.5,7.5 - parent: 4812 - type: Transform - - uid: 9301 - components: - - pos: -48.5,8.5 - parent: 4812 - type: Transform - - uid: 9302 - components: - - pos: -48.5,9.5 - parent: 4812 - type: Transform - - uid: 9303 - components: - - pos: -48.5,10.5 - parent: 4812 - type: Transform - - uid: 9304 - components: - - pos: -48.5,11.5 - parent: 4812 - type: Transform - - uid: 9305 - components: - - pos: -48.5,12.5 - parent: 4812 - type: Transform - - uid: 9306 - components: - - pos: -48.5,13.5 - parent: 4812 - type: Transform - - uid: 9498 - components: - - pos: -47.5,13.5 - parent: 4812 - type: Transform - - uid: 9499 - components: - - pos: -46.5,13.5 - parent: 4812 - type: Transform - - uid: 9500 - components: - - pos: -45.5,13.5 - parent: 4812 - type: Transform - - uid: 9501 - components: - - pos: -44.5,13.5 - parent: 4812 - type: Transform - - uid: 9502 - components: - - pos: -43.5,13.5 - parent: 4812 - type: Transform - - uid: 9503 - components: - - pos: -42.5,13.5 - parent: 4812 - type: Transform - - uid: 9588 - components: - - pos: -43.5,-25.5 - parent: 4812 - type: Transform - - uid: 9593 - components: - - pos: -47.5,-24.5 - parent: 4812 - type: Transform - - uid: 9599 - components: - - pos: -52.5,-26.5 - parent: 4812 - type: Transform - - uid: 9600 - components: - - pos: -53.5,-26.5 - parent: 4812 - type: Transform - - uid: 9601 - components: - - pos: -54.5,-26.5 - parent: 4812 - type: Transform - - uid: 9602 - components: - - pos: -54.5,-25.5 - parent: 4812 - type: Transform - - uid: 9603 - components: - - pos: -56.5,-23.5 - parent: 4812 - type: Transform - - uid: 9608 - components: - - pos: -41.5,-28.5 - parent: 4812 - type: Transform - - uid: 9646 - components: - - pos: -12.5,-58.5 - parent: 4812 - type: Transform - - uid: 9647 - components: - - pos: -12.5,-57.5 - parent: 4812 - type: Transform - - uid: 9648 - components: - - pos: -9.5,-57.5 - parent: 4812 - type: Transform - - uid: 9652 - components: - - pos: -10.5,-56.5 - parent: 4812 - type: Transform - - uid: 9655 - components: - - pos: -9.5,-58.5 - parent: 4812 - type: Transform - - uid: 9838 - components: - - pos: -53.5,-7.5 - parent: 4812 - type: Transform - - uid: 9839 - components: - - pos: -52.5,-7.5 - parent: 4812 - type: Transform - - uid: 9843 - components: - - pos: -54.5,-7.5 - parent: 4812 - type: Transform - - uid: 9869 - components: - - pos: -52.5,-5.5 - parent: 4812 - type: Transform - - uid: 9870 - components: - - pos: -54.5,-5.5 - parent: 4812 - type: Transform - - uid: 9872 - components: - - pos: -53.5,-5.5 - parent: 4812 - type: Transform - - uid: 9874 - components: - - pos: -48.5,-10.5 - parent: 4812 - type: Transform - - uid: 9893 - components: - - pos: -43.5,-13.5 - parent: 4812 - type: Transform - - uid: 9897 - components: - - pos: -43.5,-11.5 - parent: 4812 - type: Transform - - uid: 9898 - components: - - pos: -39.5,-9.5 - parent: 4812 - type: Transform - - uid: 9899 - components: - - pos: -41.5,-9.5 - parent: 4812 - type: Transform - - uid: 10154 - components: - - pos: -53.5,-23.5 - parent: 4812 - type: Transform - - uid: 10158 - components: - - pos: -52.5,-23.5 - parent: 4812 - type: Transform - - uid: 10677 - components: - - pos: -47.5,-8.5 - parent: 4812 - type: Transform - - uid: 10678 - components: - - pos: -47.5,-7.5 - parent: 4812 - type: Transform - - uid: 10679 - components: - - pos: -47.5,-6.5 - parent: 4812 - type: Transform - - uid: 11047 - components: - - pos: 6.5,-32.5 - parent: 4812 - type: Transform - - uid: 11048 - components: - - pos: 6.5,-34.5 - parent: 4812 - type: Transform - - uid: 11071 - components: - - pos: 6.5,-36.5 - parent: 4812 - type: Transform - - uid: 11072 - components: - - pos: 6.5,-38.5 - parent: 4812 - type: Transform - - uid: 11074 - components: - - pos: 11.5,-38.5 - parent: 4812 - type: Transform - - uid: 11075 - components: - - pos: 11.5,-40.5 - parent: 4812 - type: Transform - - uid: 11076 - components: - - pos: 11.5,-42.5 - parent: 4812 - type: Transform - - uid: 11077 - components: - - pos: 6.5,-42.5 - parent: 4812 - type: Transform - - uid: 11078 - components: - - pos: 6.5,-40.5 - parent: 4812 - type: Transform - - uid: 11104 - components: - - pos: 11.5,-34.5 - parent: 4812 - type: Transform - - uid: 11126 - components: - - pos: 18.5,-39.5 - parent: 4812 - type: Transform - - uid: 11127 - components: - - pos: 17.5,-39.5 - parent: 4812 - type: Transform - - uid: 11129 - components: - - pos: 21.5,-39.5 - parent: 4812 - type: Transform - - uid: 11130 - components: - - pos: 20.5,-39.5 - parent: 4812 - type: Transform - - uid: 11343 - components: - - pos: 38.5,-32.5 - parent: 4812 - type: Transform - - uid: 11346 - components: - - pos: 38.5,-31.5 - parent: 4812 - type: Transform - - uid: 11347 - components: - - pos: 37.5,-31.5 - parent: 4812 - type: Transform - - uid: 11387 - components: - - pos: 31.5,-37.5 - parent: 4812 - type: Transform - - uid: 11388 - components: - - pos: 32.5,-37.5 - parent: 4812 - type: Transform -- proto: ResearchAndDevelopmentServer - entities: - - uid: 6252 - components: - - pos: 14.5,-17.5 - parent: 4812 - type: Transform -- proto: ResearchDisk - entities: - - uid: 12457 - components: - - pos: -35.5391,27.461937 - parent: 4812 - type: Transform -- proto: Retractor - entities: - - uid: 6242 - components: - - pos: 13.5722065,-27.387243 - parent: 4812 - type: Transform -- proto: RevolverCapGun - entities: - - uid: 11863 - components: - - pos: -14.491153,4.5839243 - parent: 4812 - type: Transform -- proto: RockGuitarInstrument - entities: - - uid: 12366 - components: - - pos: -10.362962,-1.5182831 - parent: 4812 - type: Transform -- proto: RollerBedSpawnFolded - entities: - - uid: 6622 - components: - - pos: -20.448778,-14.242132 - parent: 4812 - type: Transform -- proto: SalvageMagnet - entities: - - uid: 2923 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,12.5 - parent: 4812 - type: Transform -- proto: SalvageMaterialCrateSpawner - entities: - - uid: 10451 - components: - - pos: -52.5,-19.5 - parent: 4812 - type: Transform - - uid: 11693 - components: - - pos: 26.5,-39.5 - parent: 4812 - type: Transform -- proto: SawElectric - entities: - - uid: 6243 - components: - - pos: 16.478456,-28.465368 - parent: 4812 - type: Transform -- proto: Scalpel - entities: - - uid: 6245 - components: - - pos: 16.525331,-28.059118 - parent: 4812 - type: Transform -- proto: SecurityTechFab - entities: - - uid: 8371 - components: - - pos: -34.5,21.5 - parent: 4812 - type: Transform - - materialWhiteList: - - Glass - - Plastic - - Steel - type: MaterialStorage -- proto: SeedExtractor - entities: - - uid: 1086 - components: - - pos: -15.5,-7.5 - parent: 4812 - type: Transform - - uid: 8388 - components: - - pos: -30.5,32.5 - parent: 4812 - type: Transform - - uid: 9616 - components: - - pos: -42.5,-26.5 - parent: 4812 - type: Transform - - uid: 11284 - components: - - pos: 21.5,-36.5 - parent: 4812 - type: Transform -- proto: ShardGlass - entities: - - uid: 9076 - components: - - pos: -30.439472,-27.54581 - parent: 4812 - type: Transform -- proto: ShardGlassReinforced - entities: - - uid: 11105 - components: - - pos: 11.590929,-33.611034 - parent: 4812 - type: Transform -- proto: SheetGlass - entities: - - uid: 1690 - components: - - pos: 5.600872,17.54953 - parent: 4812 - type: Transform - - uid: 3848 - components: - - pos: 13.673708,44.533413 - parent: 4812 - type: Transform - - uid: 3949 - components: - - pos: 10.555219,43.506973 - parent: 4812 - type: Transform - - uid: 6199 - components: - - pos: 3.6706638,-18.424206 - parent: 4812 - type: Transform - - uid: 6209 - components: - - pos: 3.6706638,-18.455456 - parent: 4812 - type: Transform - - uid: 8582 - components: - - pos: -17.233784,7.5055285 - parent: 4812 - type: Transform - - uid: 9726 - components: - - pos: -34.372757,-5.49447 - parent: 4812 - type: Transform - - uid: 9727 - components: - - pos: -34.372757,-5.49447 - parent: 4812 - type: Transform - - uid: 11327 - components: - - pos: 24.525463,-36.5151 - parent: 4812 - type: Transform - - uid: 11946 - components: - - pos: -14.576956,17.019444 - parent: 4812 - type: Transform - - uid: 11947 - components: - - pos: -14.436331,17.019444 - parent: 4812 - type: Transform -- proto: SheetPlasma - entities: - - uid: 3849 - components: - - pos: 13.533083,44.486538 - parent: 4812 - type: Transform - - uid: 6361 - components: - - pos: 35.463417,-24.535076 - parent: 4812 - type: Transform - - uid: 11812 - components: - - flags: InContainer - type: MetaData - - parent: 11811 - type: Transform - - canCollide: False - type: Physics -- proto: SheetPlasteel - entities: - - uid: 6236 - components: - - pos: 16.561968,-23.469662 - parent: 4812 - type: Transform - - uid: 10770 - components: - - pos: -34.51854,-5.508734 - parent: 4812 - type: Transform - - uid: 10771 - components: - - pos: -34.51854,-5.508734 - parent: 4812 - type: Transform - - uid: 11948 - components: - - pos: -14.576956,16.535069 - parent: 4812 - type: Transform - - uid: 11949 - components: - - pos: -14.420706,16.535069 - parent: 4812 - type: Transform -- proto: SheetPlastic - entities: - - uid: 6206 - components: - - pos: 3.551526,-18.367922 - parent: 4812 - type: Transform - - uid: 6207 - components: - - pos: 3.562368,-18.383547 - parent: 4812 - type: Transform -- proto: SheetSteel - entities: - - uid: 1691 - components: - - pos: 5.397747,17.54953 - parent: 4812 - type: Transform - - uid: 3847 - components: - - pos: 13.454958,44.549038 - parent: 4812 - type: Transform - - uid: 3950 - components: - - pos: 10.352094,43.506973 - parent: 4812 - type: Transform - - uid: 6198 - components: - - pos: 3.4362888,-18.40858 - parent: 4812 - type: Transform - - uid: 6208 - components: - - pos: 3.4206638,-18.40858 - parent: 4812 - type: Transform - - uid: 8581 - components: - - pos: -17.5,7.5 - parent: 4812 - type: Transform - - uid: 9673 - components: - - pos: -30.650465,5.5347195 - parent: 4812 - type: Transform - - uid: 9674 - components: - - pos: -30.650465,5.5347195 - parent: 4812 - type: Transform - - uid: 9725 - components: - - pos: -34.591507,-5.478845 - parent: 4812 - type: Transform - - uid: 9728 - components: - - pos: -34.607132,-5.478845 - parent: 4812 - type: Transform - - uid: 11328 - components: - - pos: 24.400463,-36.530724 - parent: 4812 - type: Transform - - uid: 11944 - components: - - pos: -14.514456,17.535069 - parent: 4812 - type: Transform - - uid: 11945 - components: - - pos: -14.436331,17.503819 - parent: 4812 - type: Transform -- proto: Shovel - entities: - - uid: 3275 - components: - - pos: 22.483086,13.479855 - parent: 4812 - type: Transform -- proto: ShuttersNormalOpen - entities: - - uid: 355 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,9.5 - parent: 4812 - type: Transform - - links: - - 712 - type: DeviceLinkSink - - uid: 356 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,8.5 - parent: 4812 - type: Transform - - links: - - 712 - type: DeviceLinkSink - - uid: 357 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,7.5 - parent: 4812 - type: Transform - - links: - - 712 - type: DeviceLinkSink - - uid: 358 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,6.5 - parent: 4812 - type: Transform - - links: - - 712 - type: DeviceLinkSink - - uid: 359 - components: - - pos: 2.5,4.5 - parent: 4812 - type: Transform - - links: - - 712 - type: DeviceLinkSink - - uid: 360 - components: - - pos: 3.5,4.5 - parent: 4812 - type: Transform - - links: - - 712 - type: DeviceLinkSink - - uid: 785 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 4812 - type: Transform - - links: - - 1646 - type: DeviceLinkSink - - uid: 786 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-0.5 - parent: 4812 - type: Transform - - links: - - 1646 - type: DeviceLinkSink - - uid: 787 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 4812 - type: Transform - - links: - - 1646 - type: DeviceLinkSink - - uid: 1929 - components: - - pos: -13.5,26.5 - parent: 4812 - type: Transform - - links: - - 2241 - type: DeviceLinkSink - - uid: 1930 - components: - - pos: 5.5,27.5 - parent: 4812 - type: Transform - - links: - - 1965 - type: DeviceLinkSink - - uid: 1931 - components: - - pos: -10.5,26.5 - parent: 4812 - type: Transform - - links: - - 2241 - type: DeviceLinkSink - - uid: 2234 - components: - - pos: -12.5,26.5 - parent: 4812 - type: Transform - - links: - - 2241 - type: DeviceLinkSink - - uid: 2235 - components: - - pos: 8.5,27.5 - parent: 4812 - type: Transform - - links: - - 1965 - type: DeviceLinkSink - - uid: 2236 - components: - - pos: 7.5,27.5 - parent: 4812 - type: Transform - - links: - - 1965 - type: DeviceLinkSink - - uid: 2835 - components: - - pos: 16.5,28.5 - parent: 4812 - type: Transform - - links: - - 2844 - type: DeviceLinkSink - - uid: 2836 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,30.5 - parent: 4812 - type: Transform - - links: - - 2844 - type: DeviceLinkSink - - uid: 2837 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,31.5 - parent: 4812 - type: Transform - - links: - - 2844 - type: DeviceLinkSink - - uid: 2870 - components: - - pos: 16.5,36.5 - parent: 4812 - type: Transform - - links: - - 2844 - type: DeviceLinkSink - - uid: 3945 - components: - - pos: 10.5,47.5 - parent: 4812 - type: Transform - - uid: 3948 - components: - - pos: 10.5,54.5 - parent: 4812 - type: Transform - - uid: 5507 - components: - - pos: 26.5,-21.5 - parent: 4812 - type: Transform - - links: - - 5576 - type: DeviceLinkSink - - uid: 5508 - components: - - pos: 27.5,-21.5 - parent: 4812 - type: Transform - - links: - - 5576 - type: DeviceLinkSink - - uid: 5509 - components: - - pos: 25.5,-21.5 - parent: 4812 - type: Transform - - links: - - 5576 - type: DeviceLinkSink - - uid: 6570 - components: - - pos: -7.5,-16.5 - parent: 4812 - type: Transform - - links: - - 6587 - type: DeviceLinkSink - - uid: 6574 - components: - - pos: -12.5,-13.5 - parent: 4812 - type: Transform - - links: - - 6587 - type: DeviceLinkSink - - uid: 6575 - components: - - pos: -9.5,-13.5 - parent: 4812 - type: Transform - - links: - - 6587 - type: DeviceLinkSink - - uid: 6576 - components: - - pos: -10.5,-13.5 - parent: 4812 - type: Transform - - links: - - 6587 - type: DeviceLinkSink - - uid: 6577 - components: - - pos: -8.5,-13.5 - parent: 4812 - type: Transform - - links: - - 6587 - type: DeviceLinkSink - - uid: 6578 - components: - - pos: -7.5,-14.5 - parent: 4812 - type: Transform - - links: - - 6587 - type: DeviceLinkSink - - uid: 6586 - components: - - pos: -7.5,-18.5 - parent: 4812 - type: Transform - - links: - - 6587 - type: DeviceLinkSink - - uid: 8153 - components: - - pos: -21.5,21.5 - parent: 4812 - type: Transform - - links: - - 8165 - type: DeviceLinkSink - - uid: 8160 - components: - - pos: -20.5,21.5 - parent: 4812 - type: Transform - - links: - - 8165 - type: DeviceLinkSink - - uid: 8161 - components: - - pos: -23.5,21.5 - parent: 4812 - type: Transform - - links: - - 8165 - type: DeviceLinkSink - - uid: 10673 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-8.5 - parent: 4812 - type: Transform - - links: - - 10676 - type: DeviceLinkSink - - uid: 10674 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-7.5 - parent: 4812 - type: Transform - - links: - - 10676 - type: DeviceLinkSink - - uid: 10675 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-6.5 - parent: 4812 - type: Transform - - links: - - 10676 - type: DeviceLinkSink -- proto: ShuttleConsoleCircuitboard - entities: - - uid: 2730 - components: - - pos: 0.3894601,25.613579 - parent: 4812 - type: Transform - - uid: 10959 - components: - - pos: -34.25,25.263674 - parent: 4812 - type: Transform -- proto: SignAi - entities: - - uid: 3961 - components: - - pos: 11.5,47.5 - parent: 4812 - type: Transform -- proto: SignalButton - entities: - - uid: 712 - components: - - pos: 4.5,5.5 - parent: 4812 - type: Transform - - linkedPorts: - 360: - - Pressed: Toggle - 359: - - Pressed: Toggle - 358: - - Pressed: Toggle - 357: - - Pressed: Toggle - 356: - - Pressed: Toggle - 355: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 1646 - components: - - pos: 3.5,-4.5 - parent: 4812 - type: Transform - - linkedPorts: - 785: - - Pressed: Toggle - 787: - - Pressed: Toggle - 786: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 1965 - components: - - pos: 9.5,29.5 - parent: 4812 - type: Transform - - linkedPorts: - 2235: - - Pressed: Toggle - 2236: - - Pressed: Toggle - 1930: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 2241 - components: - - pos: -14.5,27.5 - parent: 4812 - type: Transform - - linkedPorts: - 1929: - - Pressed: Toggle - 2234: - - Pressed: Toggle - 1931: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 2844 - components: - - pos: 17.5,33.5 - parent: 4812 - type: Transform - - linkedPorts: - 2835: - - Pressed: Toggle - 2870: - - Pressed: Toggle - 2837: - - Pressed: Toggle - 2836: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 2938 - components: - - pos: 21.5,26.5 - parent: 4812 - type: Transform - - linkedPorts: - 2864: - - Pressed: Toggle - 2866: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 5576 - components: - - pos: 23.5,-19.5 - parent: 4812 - type: Transform - - linkedPorts: - 5509: - - Pressed: Toggle - 5507: - - Pressed: Toggle - 5508: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 6218 - components: - - pos: 7.5,-27.5 - parent: 4812 - type: Transform - - linkedPorts: - 5794: - - Pressed: Toggle - 5795: - - Pressed: Toggle - 5796: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 6587 - components: - - pos: -13.5,-14.5 - parent: 4812 - type: Transform - - linkedPorts: - 6574: - - Pressed: Toggle - 6576: - - Pressed: Toggle - 6575: - - Pressed: Toggle - 6577: - - Pressed: Toggle - 6578: - - Pressed: Toggle - 6570: - - Pressed: Toggle - 6586: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 6690 - components: - - pos: 26.5,-28.5 - parent: 4812 - type: Transform - - linkedPorts: - 5575: - - Pressed: Toggle - 5574: - - Pressed: Toggle - 5573: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 8165 - components: - - pos: -20.5,26.5 - parent: 4812 - type: Transform - - linkedPorts: - 8160: - - Pressed: Toggle - 8153: - - Pressed: Toggle - 8161: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 9497 - components: - - pos: -45.5,18.5 - parent: 4812 - type: Transform - - uid: 9504 - components: - - pos: -41.5,13.5 - parent: 4812 - type: Transform - - linkedPorts: - 9496: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 10676 - components: - - pos: -51.5,-7.5 - parent: 4812 - type: Transform - - linkedPorts: - 10675: - - Pressed: Toggle - 10674: - - Pressed: Toggle - 10673: - - Pressed: Toggle - type: DeviceLinkSource -- proto: SignAnomaly2 - entities: - - uid: 6342 - components: - - pos: 30.5,-27.5 - parent: 4812 - type: Transform -- proto: SignArmory - entities: - - uid: 7803 - components: - - pos: -36.5,18.5 - parent: 4812 - type: Transform -- proto: SignAtmos - entities: - - uid: 8640 - components: - - pos: -34.5,0.5 - parent: 4812 - type: Transform -- proto: SignAtmosMinsky - entities: - - uid: 8721 - components: - - pos: -35.5,4.5 - parent: 4812 - type: Transform -- proto: SignBio - entities: - - uid: 11260 - components: - - pos: 10.5,-39.5 - parent: 4812 - type: Transform - - uid: 11261 - components: - - pos: 7.5,-39.5 - parent: 4812 - type: Transform -- proto: SignBiohazardMed - entities: - - uid: 8868 - components: - - pos: -35.5,-34.5 - parent: 4812 - type: Transform -- proto: SignBridge - entities: - - uid: 2930 - components: - - pos: 1.5,21.5 - parent: 4812 - type: Transform -- proto: SignCargo - entities: - - uid: 2883 - components: - - pos: 13.5,16.5 - parent: 4812 - type: Transform -- proto: SignChapel - entities: - - uid: 6695 - components: - - pos: -12.5,-36.5 - parent: 4812 - type: Transform -- proto: SignChem - entities: - - uid: 6618 - components: - - pos: -10.5,-19.5 - parent: 4812 - type: Transform -- proto: SignChemistry1 - entities: - - uid: 6642 - components: - - pos: -7.5,-13.5 - parent: 4812 - type: Transform -- proto: SignCloning - entities: - - uid: 8382 - components: - - pos: -13.5,-19.5 - parent: 4812 - type: Transform -- proto: SignCryogenicsMed - entities: - - uid: 4928 - components: - - pos: -11.5,-24.5 - parent: 4812 - type: Transform -- proto: SignDirectionalBridge - entities: - - uid: 2928 - components: - - rot: 3.141592653589793 rad - pos: 1.4962993,18.70066 - parent: 4812 - type: Transform - - uid: 3346 - components: - - rot: 3.141592653589793 rad - pos: 13.507049,12.716366 - parent: 4812 - type: Transform - - uid: 8310 - components: - - rot: 3.141592653589793 rad - pos: -24.498999,15.711071 - parent: 4812 - type: Transform -- proto: SignDirectionalEng - entities: - - uid: 1467 - components: - - rot: -1.5707963267948966 rad - pos: -5.4997582,-10.299582 - parent: 4812 - type: Transform - - uid: 2926 - components: - - rot: -1.5707963267948966 rad - pos: -6.493349,18.685036 - parent: 4812 - type: Transform - - uid: 5279 - components: - - rot: 3.141592653589793 rad - pos: -7.504691,-33.300663 - parent: 4812 - type: Transform - - uid: 8311 - components: - - pos: -24.498999,15.273571 - parent: 4812 - type: Transform - - uid: 8694 - components: - - rot: -1.5707963267948966 rad - pos: -27.507013,-4.2984185 - parent: 4812 - type: Transform -- proto: SignDirectionalEvac - entities: - - uid: 1468 - components: - - rot: 1.5707963267948966 rad - pos: 0.49738908,-10.299582 - parent: 4812 - type: Transform - - uid: 5281 - components: - - rot: 3.141592653589793 rad - pos: 2.5034294,-33.300663 - parent: 4812 - type: Transform -- proto: SignDirectionalHop - entities: - - uid: 12369 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-10.5 - parent: 4812 - type: Transform - - uid: 12370 - components: - - rot: 3.141592653589793 rad - pos: 10.5,18.5 - parent: 4812 - type: Transform -- proto: SignDirectionalJanitor - entities: - - uid: 12368 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-10.5 - parent: 4812 - type: Transform -- proto: SignDirectionalMed - entities: - - uid: 1466 - components: - - pos: -5.504419,-10.705832 - parent: 4812 - type: Transform - - uid: 2927 - components: - - pos: -6.493349,18.29441 - parent: 4812 - type: Transform - - uid: 5280 - components: - - rot: 3.141592653589793 rad - pos: -7.4988046,-33.706913 - parent: 4812 - type: Transform - - uid: 8693 - components: - - pos: -27.507013,-4.7046685 - parent: 4812 - type: Transform -- proto: SignDirectionalSci - entities: - - uid: 1469 - components: - - pos: 0.49738908,-10.690207 - parent: 4812 - type: Transform - - uid: 2929 - components: - - pos: 1.4962993,18.278786 - parent: 4812 - type: Transform - - uid: 3347 - components: - - pos: 13.507049,12.2966175 - parent: 4812 - type: Transform - - uid: 5282 - components: - - rot: 3.141592653589793 rad - pos: 2.5034294,-33.706913 - parent: 4812 - type: Transform -- proto: SignDirectionalSec - entities: - - uid: 1464 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-10.5 - parent: 4812 - type: Transform - - uid: 2924 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,18.5 - parent: 4812 - type: Transform - - uid: 5277 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-33.5 - parent: 4812 - type: Transform - - uid: 8309 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,15.5 - parent: 4812 - type: Transform - - uid: 8692 - components: - - rot: 3.141592653589793 rad - pos: -27.5,-4.5 - parent: 4812 - type: Transform -- proto: SignDirectionalSupply - entities: - - uid: 1465 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-10.5 - parent: 4812 - type: Transform - - uid: 2925 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,18.5 - parent: 4812 - type: Transform - - uid: 3345 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,12.5 - parent: 4812 - type: Transform - - uid: 5278 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-33.5 - parent: 4812 - type: Transform -- proto: SignDisposalSpace - entities: - - uid: 6779 - components: - - pos: -37.5,-36.5 - parent: 4812 - type: Transform - - uid: 11251 - components: - - pos: 3.5,-31.5 - parent: 4812 - type: Transform -- proto: SignDoors - entities: - - uid: 1462 - components: - - pos: 0.5,-9.5 - parent: 4812 - type: Transform - - uid: 2813 - components: - - pos: 18.5,28.5 - parent: 4812 - type: Transform - - uid: 2932 - components: - - pos: 4.5,21.5 - parent: 4812 - type: Transform - - uid: 4579 - components: - - pos: 32.5,-2.5 - parent: 4812 - type: Transform - - uid: 5073 - components: - - pos: -9.5,-52.5 - parent: 4812 - type: Transform - - uid: 5074 - components: - - pos: -12.5,-41.5 - parent: 4812 - type: Transform -- proto: SignDrones - entities: - - uid: 11937 - components: - - pos: -12.5,18.5 - parent: 4812 - type: Transform -- proto: SignElectricalMed - entities: - - uid: 3978 - components: - - pos: 15.5,48.5 - parent: 4812 - type: Transform - - uid: 3979 - components: - - pos: 10.5,57.5 - parent: 4812 - type: Transform - - uid: 6019 - components: - - pos: 16.5,-32.5 - parent: 4812 - type: Transform - - uid: 7171 - components: - - pos: -9.5,-31.5 - parent: 4812 - type: Transform - - uid: 8754 - components: - - pos: -45.5,-4.5 - parent: 4812 - type: Transform - - uid: 10601 - components: - - pos: -46.5,-19.5 - parent: 4812 - type: Transform - - uid: 10742 - components: - - pos: -38.5,-9.5 - parent: 4812 - type: Transform -- proto: SignEngine - entities: - - uid: 10775 - components: - - pos: -43.5,-10.5 - parent: 4812 - type: Transform -- proto: SignEngineering - entities: - - uid: 8687 - components: - - pos: -34.5,-4.5 - parent: 4812 - type: Transform -- proto: SignExamroom - entities: - - uid: 6659 - components: - - pos: -13.5,-24.5 - parent: 4812 - type: Transform -- proto: SignFire - entities: - - uid: 9043 - components: - - pos: -32.5,-37.5 - parent: 4812 - type: Transform - - uid: 9689 - components: - - pos: -40.5,-0.5 - parent: 4812 - type: Transform - - uid: 9691 - components: - - pos: -38.5,-4.5 - parent: 4812 - type: Transform -- proto: SignFlammableMed - entities: - - uid: 10748 - components: - - pos: -32.5,6.5 - parent: 4812 - type: Transform -- proto: SignGravity - entities: - - uid: 10743 - components: - - pos: -51.5,-10.5 - parent: 4812 - type: Transform -- proto: SignHydro1 - entities: - - uid: 1076 - components: - - pos: -7.5,-10.5 - parent: 4812 - type: Transform -- proto: SignHydro2 - entities: - - uid: 1075 - components: - - pos: -6.5,-4.5 - parent: 4812 - type: Transform -- proto: SignHydro3 - entities: - - uid: 6685 - components: - - pos: -18.5,-10.5 - parent: 4812 - type: Transform -- proto: SignKiddiePlaque - entities: - - uid: 7730 - components: - - pos: -14.5,-29.5 - parent: 4812 - type: Transform - - uid: 12227 - components: - - pos: -6.5,25.5 - parent: 4812 - type: Transform -- proto: SignLibrary - entities: - - uid: 6680 - components: - - pos: -22.5,-13.5 - parent: 4812 - type: Transform -- proto: SignMedical - entities: - - uid: 7299 - components: - - pos: -7.5,-23.5 - parent: 4812 - type: Transform -- proto: SignMinerDock - entities: - - uid: 3344 - components: - - pos: 21.5,16.5 - parent: 4812 - type: Transform -- proto: SignMorgue - entities: - - uid: 5046 - components: - - pos: -17.5,-13.5 - parent: 4812 - type: Transform - - uid: 6556 - components: - - pos: -20.5,-19.5 - parent: 4812 - type: Transform -- proto: SignNosmoking - entities: - - uid: 6195 - components: - - pos: 8.5,-19.5 - parent: 4812 - type: Transform - - uid: 7451 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-24.5 - parent: 4812 - type: Transform - - uid: 7452 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-29.5 - parent: 4812 - type: Transform - - uid: 10861 - components: - - pos: -19.5,3.5 - parent: 4812 - type: Transform -- proto: SignPlaque - entities: - - uid: 7570 - components: - - pos: 24.5,-21.5 - parent: 4812 - type: Transform - - uid: 8381 - components: - - pos: -14.5,26.5 - parent: 4812 - type: Transform -- proto: SignPrison - entities: - - uid: 8356 - components: - - pos: -28.5,21.5 - parent: 4812 - type: Transform -- proto: SignRadiationMed - entities: - - uid: 9692 - components: - - pos: -40.5,-4.5 - parent: 4812 - type: Transform - - uid: 10744 - components: - - pos: -51.5,-14.5 - parent: 4812 - type: Transform -- proto: SignRND - entities: - - uid: 6644 - components: - - pos: 7.5,-19.5 - parent: 4812 - type: Transform -- proto: SignRobo - entities: - - uid: 6178 - components: - - pos: 10.5,-22.5 - parent: 4812 - type: Transform - - uid: 6217 - components: - - pos: 2.5,-24.5 - parent: 4812 - type: Transform -- proto: SignScience - entities: - - uid: 6176 - components: - - pos: 2.5,-19.5 - parent: 4812 - type: Transform -- proto: SignScience1 - entities: - - uid: 6175 - components: - - pos: 8.5,-13.5 - parent: 4812 - type: Transform -- proto: SignScience2 - entities: - - uid: 6177 - components: - - pos: 20.5,-22.5 - parent: 4812 - type: Transform - - uid: 6643 - components: - - pos: 2.5,-13.5 - parent: 4812 - type: Transform -- proto: SignSecureMed - entities: - - uid: 2937 - components: - - pos: 4.5,27.5 - parent: 4812 - type: Transform - - uid: 3953 - components: - - pos: 6.5,49.5 - parent: 4812 - type: Transform - - uid: 3954 - components: - - pos: 14.5,49.5 - parent: 4812 - type: Transform - - uid: 3955 - components: - - pos: 14.5,55.5 - parent: 4812 - type: Transform - - uid: 3956 - components: - - pos: 6.5,55.5 - parent: 4812 - type: Transform - - uid: 3957 - components: - - pos: 8.5,46.5 - parent: 4812 - type: Transform - - uid: 3958 - components: - - pos: 12.5,46.5 - parent: 4812 - type: Transform - - uid: 3960 - components: - - pos: 2.5,44.5 - parent: 4812 - type: Transform - - uid: 9693 - components: - - pos: -38.5,-0.5 - parent: 4812 - type: Transform - - uid: 10745 - components: - - pos: -42.5,-9.5 - parent: 4812 - type: Transform -- proto: SignSecureSmall - entities: - - uid: 2931 - components: - - pos: -6.5,21.5 - parent: 4812 - type: Transform -- proto: SignSecureSmallRed - entities: - - uid: 10746 - components: - - pos: -37.5,6.5 - parent: 4812 - type: Transform -- proto: SignSecurity - entities: - - uid: 7231 - components: - - pos: -24.5,12.5 - parent: 4812 - type: Transform - - uid: 7442 - components: - - pos: -1.5,-30.5 - parent: 4812 - type: Transform -- proto: SignSmoking - entities: - - uid: 8607 - components: - - pos: -15.5,11.5 - parent: 4812 - type: Transform - - uid: 9044 - components: - - pos: -33.5,-38.5 - parent: 4812 - type: Transform - - uid: 10751 - components: - - pos: -40.5,11.5 - parent: 4812 - type: Transform -- proto: SignSpace - entities: - - uid: 2939 - components: - - pos: 22.5,26.5 - parent: 4812 - type: Transform - - uid: 3959 - components: - - pos: 4.5,46.5 - parent: 4812 - type: Transform - - uid: 4580 - components: - - pos: 32.5,1.5 - parent: 4812 - type: Transform - - uid: 4581 - components: - - pos: 32.5,-6.5 - parent: 4812 - type: Transform - - uid: 4602 - components: - - pos: 19.5,11.5 - parent: 4812 - type: Transform - - uid: 5075 - components: - - pos: -9.5,-41.5 - parent: 4812 - type: Transform - - uid: 5076 - components: - - pos: -12.5,-52.5 - parent: 4812 - type: Transform - - uid: 5514 - components: - - pos: 21.5,-27.5 - parent: 4812 - type: Transform - - uid: 11694 - components: - - pos: 26.5,-37.5 - parent: 4812 - type: Transform -- proto: SignSurgery - entities: - - uid: 5010 - components: - - pos: -18.5,-24.5 - parent: 4812 - type: Transform -- proto: SignTelecomms - entities: - - uid: 7202 - components: - - rot: 3.141592653589793 rad - pos: -46.5,-10.5 - parent: 4812 - type: Transform -- proto: SignToolStorage - entities: - - uid: 8609 - components: - - pos: -21.5,12.5 - parent: 4812 - type: Transform -- proto: SignToxins2 - entities: - - uid: 6645 - components: - - pos: 26.5,-27.5 - parent: 4812 - type: Transform -- proto: SignVirology - entities: - - uid: 8870 - components: - - pos: -32.5,-32.5 - parent: 4812 - type: Transform -- proto: SignXenolab - entities: - - uid: 11143 - components: - - pos: 7.5,-31.5 - parent: 4812 - type: Transform -- proto: Sink - entities: - - uid: 1485 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-8.5 - parent: 4812 - type: Transform - - uid: 1660 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,5.5 - parent: 4812 - type: Transform - - uid: 2486 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,28.5 - parent: 4812 - type: Transform - - uid: 2487 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,28.5 - parent: 4812 - type: Transform - - uid: 4454 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,8.5 - parent: 4812 - type: Transform - - uid: 7026 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-33.5 - parent: 4812 - type: Transform - - uid: 8243 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,27.5 - parent: 4812 - type: Transform - - uid: 9817 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-1.5 - parent: 4812 - type: Transform -- proto: SinkEmpty - entities: - - uid: 3580 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,35.5 - parent: 4812 - type: Transform -- proto: SinkWide - entities: - - uid: 1078 - components: - - pos: -21.5,-3.5 - parent: 4812 - type: Transform - - uid: 1537 - components: - - pos: 5.5,-5.5 - parent: 4812 - type: Transform - - uid: 1653 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,6.5 - parent: 4812 - type: Transform - - uid: 1679 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-2.5 - parent: 4812 - type: Transform - - uid: 8389 - components: - - pos: -31.5,32.5 - parent: 4812 - type: Transform -- proto: SMESBasic - entities: - - uid: 3699 - components: - - pos: 10.5,56.5 - parent: 4812 - type: Transform - - uid: 3700 - components: - - pos: 14.5,47.5 - parent: 4812 - type: Transform - - uid: 8722 - components: - - pos: -44.5,-2.5 - parent: 4812 - type: Transform - - uid: 8723 - components: - - pos: -45.5,-2.5 - parent: 4812 - type: Transform - - uid: 10166 - components: - - name: South West Solar SMES - type: MetaData - - pos: -53.5,-25.5 - parent: 4812 - type: Transform - - uid: 10637 - components: - - pos: -47.5,-11.5 - parent: 4812 - type: Transform - - uid: 11392 - components: - - name: South East Solar SMES - type: MetaData - - pos: 33.5,-39.5 - parent: 4812 - type: Transform -- proto: SMESMachineCircuitboard - entities: - - uid: 2726 - components: - - pos: 0.5,24.5 - parent: 4812 - type: Transform - - uid: 2727 - components: - - pos: 0.3738351,24.660454 - parent: 4812 - type: Transform - - uid: 3378 - components: - - pos: 25.556402,3.5160265 - parent: 4812 - type: Transform - - uid: 3402 - components: - - pos: 25.447027,3.6097765 - parent: 4812 - type: Transform -- proto: SoapDeluxe - entities: - - uid: 2494 - components: - - pos: 10.47866,30.543114 - parent: 4812 - type: Transform -- proto: SoapNT - entities: - - uid: 2495 - components: - - pos: -15.503267,29.527489 - parent: 4812 - type: Transform -- proto: soda_dispenser - entities: - - uid: 364 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,8.5 - parent: 4812 - type: Transform - - uid: 10492 - components: - - pos: -37.5,-22.5 - parent: 4812 - type: Transform -- proto: SolarPanel - entities: - - uid: 10323 - components: - - pos: -69.5,-21.5 - parent: 4812 - type: Transform - - uid: 10324 - components: - - pos: -69.5,-20.5 - parent: 4812 - type: Transform - - uid: 10325 - components: - - pos: -69.5,-19.5 - parent: 4812 - type: Transform - - uid: 10326 - components: - - pos: -69.5,-18.5 - parent: 4812 - type: Transform - - uid: 10327 - components: - - pos: -67.5,-21.5 - parent: 4812 - type: Transform - - uid: 10328 - components: - - pos: -67.5,-20.5 - parent: 4812 - type: Transform - - uid: 10329 - components: - - pos: -67.5,-19.5 - parent: 4812 - type: Transform - - uid: 10330 - components: - - pos: -67.5,-18.5 - parent: 4812 - type: Transform - - uid: 10331 - components: - - pos: -69.5,-26.5 - parent: 4812 - type: Transform - - uid: 10332 - components: - - pos: -69.5,-25.5 - parent: 4812 - type: Transform - - uid: 10333 - components: - - pos: -69.5,-24.5 - parent: 4812 - type: Transform - - uid: 10334 - components: - - pos: -69.5,-23.5 - parent: 4812 - type: Transform - - uid: 10335 - components: - - pos: -67.5,-26.5 - parent: 4812 - type: Transform - - uid: 10336 - components: - - pos: -67.5,-25.5 - parent: 4812 - type: Transform - - uid: 10337 - components: - - pos: -67.5,-24.5 - parent: 4812 - type: Transform - - uid: 10338 - components: - - pos: -67.5,-23.5 - parent: 4812 - type: Transform - - uid: 10339 - components: - - pos: -65.5,-26.5 - parent: 4812 - type: Transform - - uid: 10340 - components: - - pos: -65.5,-25.5 - parent: 4812 - type: Transform - - uid: 10341 - components: - - pos: -65.5,-24.5 - parent: 4812 - type: Transform - - uid: 10342 - components: - - pos: -65.5,-23.5 - parent: 4812 - type: Transform - - uid: 10343 - components: - - pos: -63.5,-26.5 - parent: 4812 - type: Transform - - uid: 10344 - components: - - pos: -63.5,-25.5 - parent: 4812 - type: Transform - - uid: 10345 - components: - - pos: -63.5,-24.5 - parent: 4812 - type: Transform - - uid: 10346 - components: - - pos: -63.5,-23.5 - parent: 4812 - type: Transform - - uid: 10347 - components: - - pos: -61.5,-26.5 - parent: 4812 - type: Transform - - uid: 10348 - components: - - pos: -61.5,-25.5 - parent: 4812 - type: Transform - - uid: 10349 - components: - - pos: -61.5,-24.5 - parent: 4812 - type: Transform - - uid: 10350 - components: - - pos: -61.5,-23.5 - parent: 4812 - type: Transform - - uid: 10351 - components: - - pos: -59.5,-26.5 - parent: 4812 - type: Transform - - uid: 10352 - components: - - pos: -59.5,-25.5 - parent: 4812 - type: Transform - - uid: 10353 - components: - - pos: -59.5,-24.5 - parent: 4812 - type: Transform - - uid: 10354 - components: - - pos: -59.5,-23.5 - parent: 4812 - type: Transform - - uid: 10355 - components: - - pos: -59.5,-21.5 - parent: 4812 - type: Transform - - uid: 10356 - components: - - pos: -59.5,-20.5 - parent: 4812 - type: Transform - - uid: 10357 - components: - - pos: -59.5,-19.5 - parent: 4812 - type: Transform - - uid: 10358 - components: - - pos: -59.5,-18.5 - parent: 4812 - type: Transform - - uid: 10359 - components: - - pos: -61.5,-21.5 - parent: 4812 - type: Transform - - uid: 10360 - components: - - pos: -61.5,-20.5 - parent: 4812 - type: Transform - - uid: 10361 - components: - - pos: -61.5,-19.5 - parent: 4812 - type: Transform - - uid: 10362 - components: - - pos: -61.5,-18.5 - parent: 4812 - type: Transform - - uid: 10363 - components: - - pos: -63.5,-21.5 - parent: 4812 - type: Transform - - uid: 10364 - components: - - pos: -63.5,-20.5 - parent: 4812 - type: Transform - - uid: 10365 - components: - - pos: -63.5,-19.5 - parent: 4812 - type: Transform - - uid: 10366 - components: - - pos: -63.5,-18.5 - parent: 4812 - type: Transform - - uid: 10367 - components: - - pos: -65.5,-21.5 - parent: 4812 - type: Transform - - uid: 10368 - components: - - pos: -65.5,-20.5 - parent: 4812 - type: Transform - - uid: 10369 - components: - - pos: -65.5,-19.5 - parent: 4812 - type: Transform - - uid: 10370 - components: - - pos: -65.5,-18.5 - parent: 4812 - type: Transform - - uid: 11530 - components: - - pos: 41.5,-35.5 - parent: 4812 - type: Transform - - uid: 11531 - components: - - pos: 41.5,-34.5 - parent: 4812 - type: Transform - - uid: 11532 - components: - - pos: 41.5,-33.5 - parent: 4812 - type: Transform - - uid: 11533 - components: - - pos: 41.5,-32.5 - parent: 4812 - type: Transform - - uid: 11534 - components: - - pos: 43.5,-35.5 - parent: 4812 - type: Transform - - uid: 11535 - components: - - pos: 43.5,-34.5 - parent: 4812 - type: Transform - - uid: 11536 - components: - - pos: 43.5,-33.5 - parent: 4812 - type: Transform - - uid: 11537 - components: - - pos: 43.5,-32.5 - parent: 4812 - type: Transform - - uid: 11538 - components: - - pos: 45.5,-35.5 - parent: 4812 - type: Transform - - uid: 11539 - components: - - pos: 45.5,-34.5 - parent: 4812 - type: Transform - - uid: 11540 - components: - - pos: 45.5,-33.5 - parent: 4812 - type: Transform - - uid: 11541 - components: - - pos: 45.5,-32.5 - parent: 4812 - type: Transform - - uid: 11542 - components: - - pos: 47.5,-35.5 - parent: 4812 - type: Transform - - uid: 11543 - components: - - pos: 47.5,-34.5 - parent: 4812 - type: Transform - - uid: 11544 - components: - - pos: 47.5,-33.5 - parent: 4812 - type: Transform - - uid: 11545 - components: - - pos: 47.5,-32.5 - parent: 4812 - type: Transform - - uid: 11546 - components: - - pos: 49.5,-35.5 - parent: 4812 - type: Transform - - uid: 11547 - components: - - pos: 49.5,-34.5 - parent: 4812 - type: Transform - - uid: 11548 - components: - - pos: 49.5,-33.5 - parent: 4812 - type: Transform - - uid: 11549 - components: - - pos: 49.5,-32.5 - parent: 4812 - type: Transform - - uid: 11550 - components: - - pos: 51.5,-35.5 - parent: 4812 - type: Transform - - uid: 11551 - components: - - pos: 51.5,-34.5 - parent: 4812 - type: Transform - - uid: 11552 - components: - - pos: 51.5,-33.5 - parent: 4812 - type: Transform - - uid: 11553 - components: - - pos: 51.5,-32.5 - parent: 4812 - type: Transform - - uid: 11554 - components: - - pos: 51.5,-40.5 - parent: 4812 - type: Transform - - uid: 11555 - components: - - pos: 51.5,-39.5 - parent: 4812 - type: Transform - - uid: 11556 - components: - - pos: 51.5,-38.5 - parent: 4812 - type: Transform - - uid: 11557 - components: - - pos: 51.5,-37.5 - parent: 4812 - type: Transform - - uid: 11558 - components: - - pos: 49.5,-40.5 - parent: 4812 - type: Transform - - uid: 11559 - components: - - pos: 49.5,-39.5 - parent: 4812 - type: Transform - - uid: 11560 - components: - - pos: 49.5,-38.5 - parent: 4812 - type: Transform - - uid: 11561 - components: - - pos: 49.5,-37.5 - parent: 4812 - type: Transform - - uid: 11562 - components: - - pos: 47.5,-40.5 - parent: 4812 - type: Transform - - uid: 11563 - components: - - pos: 47.5,-39.5 - parent: 4812 - type: Transform - - uid: 11564 - components: - - pos: 47.5,-38.5 - parent: 4812 - type: Transform - - uid: 11565 - components: - - pos: 47.5,-37.5 - parent: 4812 - type: Transform - - uid: 11566 - components: - - pos: 45.5,-40.5 - parent: 4812 - type: Transform - - uid: 11567 - components: - - pos: 45.5,-39.5 - parent: 4812 - type: Transform - - uid: 11568 - components: - - pos: 45.5,-38.5 - parent: 4812 - type: Transform - - uid: 11569 - components: - - pos: 45.5,-37.5 - parent: 4812 - type: Transform - - uid: 11570 - components: - - pos: 43.5,-40.5 - parent: 4812 - type: Transform - - uid: 11571 - components: - - pos: 43.5,-39.5 - parent: 4812 - type: Transform - - uid: 11572 - components: - - pos: 43.5,-38.5 - parent: 4812 - type: Transform - - uid: 11573 - components: - - pos: 43.5,-37.5 - parent: 4812 - type: Transform - - uid: 11574 - components: - - pos: 41.5,-40.5 - parent: 4812 - type: Transform - - uid: 11575 - components: - - pos: 41.5,-39.5 - parent: 4812 - type: Transform - - uid: 11576 - components: - - pos: 41.5,-38.5 - parent: 4812 - type: Transform - - uid: 11577 - components: - - pos: 41.5,-37.5 - parent: 4812 - type: Transform -- proto: SolarTracker - entities: - - uid: 10274 - components: - - pos: -71.5,-22.5 - parent: 4812 - type: Transform - - uid: 11529 - components: - - pos: 53.5,-36.5 - parent: 4812 - type: Transform -- proto: SpaceCash1000 - entities: - - uid: 9613 - components: - - flags: InContainer - type: MetaData - - parent: 2709 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: SpaceVillainArcadeFilled - entities: - - uid: 3774 - components: - - pos: -21.5,5.5 - parent: 4812 - type: Transform -- proto: SpawnMobAlexander - entities: - - uid: 12426 - components: - - pos: 6.5,-0.5 - parent: 4812 - type: Transform -- proto: SpawnMobBandito - entities: - - uid: 6340 - components: - - pos: 11.5,-20.5 - parent: 4812 - type: Transform -- proto: SpawnMobCat - entities: - - uid: 8375 - components: - - pos: -26.5,-25.5 - parent: 4812 - type: Transform -- proto: SpawnMobCorgi - entities: - - uid: 2512 - components: - - pos: 5.5,26.5 - parent: 4812 - type: Transform -- proto: SpawnMobCow - entities: - - uid: 1566 - components: - - pos: -6.5,-9.5 - parent: 4812 - type: Transform -- proto: SpawnMobDrone - entities: - - uid: 11933 - components: - - pos: -13.5,16.5 - parent: 4812 - type: Transform - - uid: 11934 - components: - - pos: -12.5,16.5 - parent: 4812 - type: Transform - - uid: 11935 - components: - - pos: -11.5,16.5 - parent: 4812 - type: Transform -- proto: SpawnMobFoxRenault - entities: - - uid: 2621 - components: - - pos: -15.5,22.5 - parent: 4812 - type: Transform -- proto: SpawnMobMcGriff - entities: - - uid: 8340 - components: - - pos: -35.5,17.5 - parent: 4812 - type: Transform -- proto: SpawnMobMonkeyPunpun - entities: - - uid: 4838 - components: - - pos: 2.5,7.5 - parent: 4812 - type: Transform -- proto: SpawnMobMouse - entities: - - uid: 4594 - components: - - pos: 19.5,-0.5 - parent: 4812 - type: Transform - - uid: 7169 - components: - - pos: -28.5,-17.5 - parent: 4812 - type: Transform -- proto: SpawnMobPossumMorty - entities: - - uid: 5053 - components: - - pos: -19.5,-16.5 - parent: 4812 - type: Transform -- proto: SpawnMobRaccoonMorticia - entities: - - uid: 3281 - components: - - pos: 17.5,19.5 - parent: 4812 - type: Transform -- proto: SpawnMobShiva - entities: - - uid: 4808 - components: - - pos: -23.5,24.5 - parent: 4812 - type: Transform -- proto: SpawnMobSlothPaperwork - entities: - - uid: 7155 - components: - - pos: -23.5,-19.5 - parent: 4812 - type: Transform -- proto: SpawnMobSmile - entities: - - uid: 9586 - components: - - pos: 26.5,-24.5 - parent: 4812 - type: Transform -- proto: SpawnMobWalter - entities: - - uid: 6647 - components: - - pos: -11.5,-14.5 - parent: 4812 - type: Transform -- proto: SpawnPointAssistant - entities: - - uid: 12382 - components: - - pos: -19.5,8.5 - parent: 4812 - type: Transform - - uid: 12383 - components: - - pos: -18.5,11.5 - parent: 4812 - type: Transform - - uid: 12384 - components: - - pos: -17.5,9.5 - parent: 4812 - type: Transform - - uid: 12385 - components: - - pos: -20.5,10.5 - parent: 4812 - type: Transform -- proto: SpawnPointAtmos - entities: - - uid: 3259 - components: - - pos: -31.5,2.5 - parent: 4812 - type: Transform - - uid: 3468 - components: - - pos: -30.5,3.5 - parent: 4812 - type: Transform -- proto: SpawnPointBartender - entities: - - uid: 1783 - components: - - pos: 6.5,7.5 - parent: 4812 - type: Transform -- proto: SpawnPointBotanist - entities: - - uid: 1472 - components: - - pos: -16.5,-6.5 - parent: 4812 - type: Transform - - uid: 1473 - components: - - pos: -13.5,-6.5 - parent: 4812 - type: Transform -- proto: SpawnPointCaptain - entities: - - uid: 2697 - components: - - pos: -11.5,28.5 - parent: 4812 - type: Transform -- proto: SpawnPointCargoTechnician - entities: - - uid: 3282 - components: - - pos: 15.5,18.5 - parent: 4812 - type: Transform - - uid: 3283 - components: - - pos: 19.5,19.5 - parent: 4812 - type: Transform -- proto: SpawnPointChaplain - entities: - - uid: 7633 - components: - - pos: -26.5,-36.5 - parent: 4812 - type: Transform -- proto: SpawnPointChef - entities: - - uid: 1567 - components: - - pos: 4.5,-2.5 - parent: 4812 - type: Transform -- proto: SpawnPointChemist - entities: - - uid: 6648 - components: - - pos: -11.5,-16.5 - parent: 4812 - type: Transform - - uid: 6649 - components: - - pos: -9.5,-16.5 - parent: 4812 - type: Transform -- proto: SpawnPointChiefEngineer - entities: - - uid: 9833 - components: - - pos: -50.5,-8.5 - parent: 4812 - type: Transform -- proto: SpawnPointChiefMedicalOfficer - entities: - - uid: 7859 - components: - - pos: -25.5,-27.5 - parent: 4812 - type: Transform -- proto: SpawnPointClown - entities: - - uid: 1713 - components: - - pos: -9.5,1.5 - parent: 4812 - type: Transform -- proto: SpawnPointDetective - entities: - - uid: 12168 - components: - - pos: 20.5,-16.5 - parent: 4812 - type: Transform -- proto: SpawnPointHeadOfPersonnel - entities: - - uid: 2540 - components: - - pos: 7.5,28.5 - parent: 4812 - type: Transform -- proto: SpawnPointHeadOfSecurity - entities: - - uid: 8253 - components: - - pos: -22.5,27.5 - parent: 4812 - type: Transform -- proto: SpawnPointJanitor - entities: - - uid: 1535 - components: - - pos: -21.5,-8.5 - parent: 4812 - type: Transform -- proto: SpawnPointLatejoin - entities: - - uid: 4707 - components: - - pos: -11.5,-48.5 - parent: 4812 - type: Transform - - uid: 4708 - components: - - pos: -11.5,-47.5 - parent: 4812 - type: Transform - - uid: 4713 - components: - - pos: -11.5,-46.5 - parent: 4812 - type: Transform - - uid: 4715 - components: - - pos: -11.5,-45.5 - parent: 4812 - type: Transform - - uid: 4716 - components: - - pos: -10.5,-48.5 - parent: 4812 - type: Transform - - uid: 4718 - components: - - pos: -10.5,-47.5 - parent: 4812 - type: Transform - - uid: 4720 - components: - - pos: -10.5,-46.5 - parent: 4812 - type: Transform - - uid: 4721 - components: - - pos: -10.5,-45.5 - parent: 4812 - type: Transform -- proto: SpawnPointLawyer - entities: - - uid: 8308 - components: - - pos: -17.5,16.5 - parent: 4812 - type: Transform -- proto: SpawnPointLibrarian - entities: - - uid: 7634 - components: - - pos: -31.5,-22.5 - parent: 4812 - type: Transform -- proto: SpawnPointMedicalDoctor - entities: - - uid: 8358 - components: - - pos: -9.5,-27.5 - parent: 4812 - type: Transform - - uid: 8373 - components: - - pos: -9.5,-26.5 - parent: 4812 - type: Transform - - uid: 8374 - components: - - pos: -19.5,-22.5 - parent: 4812 - type: Transform -- proto: SpawnPointMedicalIntern - entities: - - uid: 7860 - components: - - pos: -15.5,-22.5 - parent: 4812 - type: Transform - - uid: 8357 - components: - - pos: -17.5,-22.5 - parent: 4812 - type: Transform -- proto: SpawnPointMime - entities: - - uid: 1715 - components: - - pos: -9.5,0.5 - parent: 4812 - type: Transform -- proto: SpawnPointMusician - entities: - - uid: 1722 - components: - - pos: -9.5,-0.5 - parent: 4812 - type: Transform -- proto: SpawnPointObserver - entities: - - uid: 5059 - components: - - pos: -2.5,2.5 - parent: 4812 - type: Transform -- proto: SpawnPointQuartermaster - entities: - - uid: 3449 - components: - - pos: 16.5,34.5 - parent: 4812 - type: Transform -- proto: SpawnPointResearchAssistant - entities: - - uid: 12519 - components: - - pos: 6.5,-20.5 - parent: 4812 - type: Transform -- proto: SpawnPointResearchDirector - entities: - - uid: 6305 - components: - - pos: 27.5,-18.5 - parent: 4812 - type: Transform -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 3284 - components: - - pos: 23.5,15.5 - parent: 4812 - type: Transform - - uid: 7465 - components: - - pos: 23.5,14.5 - parent: 4812 - type: Transform -- proto: SpawnPointScientist - entities: - - uid: 12499 - components: - - pos: 7.5,-20.5 - parent: 4812 - type: Transform - - uid: 12500 - components: - - pos: 8.5,-20.5 - parent: 4812 - type: Transform - - uid: 12501 - components: - - pos: 9.5,-20.5 - parent: 4812 - type: Transform - - uid: 12502 - components: - - pos: 10.5,-20.5 - parent: 4812 - type: Transform -- proto: SpawnPointSecurityCadet - entities: - - uid: 8440 - components: - - pos: -34.5,11.5 - parent: 4812 - type: Transform -- proto: SpawnPointSecurityOfficer - entities: - - uid: 8441 - components: - - pos: -35.5,11.5 - parent: 4812 - type: Transform - - uid: 8442 - components: - - pos: -36.5,11.5 - parent: 4812 - type: Transform -- proto: SpawnPointSeniorEngineer - entities: - - uid: 10545 - components: - - pos: -31.5,-6.5 - parent: 4812 - type: Transform -- proto: SpawnPointSeniorOfficer - entities: - - uid: 10548 - components: - - pos: -33.5,11.5 - parent: 4812 - type: Transform -- proto: SpawnPointSeniorPhysician - entities: - - uid: 10547 - components: - - pos: -17.5,-21.5 - parent: 4812 - type: Transform -- proto: SpawnPointSeniorResearcher - entities: - - uid: 10546 - components: - - pos: 5.5,-20.5 - parent: 4812 - type: Transform -- proto: SpawnPointServiceWorker - entities: - - uid: 12386 - components: - - pos: 4.5,-0.5 - parent: 4812 - type: Transform -- proto: SpawnPointStationEngineer - entities: - - uid: 10844 - components: - - pos: -32.5,-8.5 - parent: 4812 - type: Transform - - uid: 10845 - components: - - pos: -31.5,-8.5 - parent: 4812 - type: Transform - - uid: 10846 - components: - - pos: -30.5,-8.5 - parent: 4812 - type: Transform -- proto: SpawnPointTechnicalAssistant - entities: - - uid: 10903 - components: - - pos: -29.5,-7.5 - parent: 4812 - type: Transform -- proto: SpawnPointWarden - entities: - - uid: 8336 - components: - - pos: -34.5,15.5 - parent: 4812 - type: Transform -- proto: SpawnVehicleJanicart - entities: - - uid: 1481 - components: - - pos: -22.5,-6.5 - parent: 4812 - type: Transform -- proto: SpawnVehicleSecway - entities: - - uid: 8348 - components: - - pos: -31.5,19.5 - parent: 4812 - type: Transform -- proto: Spoon - entities: - - uid: 1774 - components: - - pos: -2.3316398,2.6041236 - parent: 4812 - type: Transform -- proto: SprayBottleSpaceCleaner - entities: - - uid: 1491 - components: - - pos: -23.528929,-7.7805715 - parent: 4812 - type: Transform - - uid: 1492 - components: - - pos: -23.435179,-7.6711965 - parent: 4812 - type: Transform -- proto: StasisBed - entities: - - uid: 7574 - components: - - pos: -17.5,-20.5 - parent: 4812 - type: Transform -- proto: StationMap - entities: - - uid: 3772 - components: - - pos: 18.5,-1.5 - parent: 4812 - type: Transform - - uid: 4005 - components: - - pos: 4.5,-10.5 - parent: 4812 - type: Transform - - uid: 6689 - components: - - pos: -12.5,21.5 - parent: 4812 - type: Transform - - uid: 7296 - components: - - pos: -31.5,-13.5 - parent: 4812 - type: Transform - - uid: 7297 - components: - - pos: -4.5,-33.5 - parent: 4812 - type: Transform -- proto: Stool - entities: - - uid: 1752 - components: - - rot: 3.141592653589793 rad - pos: -9.5,8.5 - parent: 4812 - type: Transform - - uid: 8402 - components: - - pos: -29.5,31.5 - parent: 4812 - type: Transform - - uid: 8403 - components: - - rot: 3.141592653589793 rad - pos: -28.5,29.5 - parent: 4812 - type: Transform - - uid: 8404 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,30.5 - parent: 4812 - type: Transform - - uid: 8412 - components: - - pos: -31.5,27.5 - parent: 4812 - type: Transform - - uid: 8413 - components: - - pos: -27.5,27.5 - parent: 4812 - type: Transform - - uid: 10497 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-29.5 - parent: 4812 - type: Transform - - uid: 10867 - components: - - pos: -22.5,1.5 - parent: 4812 - type: Transform - - uid: 10868 - components: - - pos: -21.5,1.5 - parent: 4812 - type: Transform - - uid: 10869 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-0.5 - parent: 4812 - type: Transform - - uid: 12148 - components: - - rot: 3.141592653589793 rad - pos: -22.5,4.5 - parent: 4812 - type: Transform -- proto: StoolBar - entities: - - uid: 345 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,9.5 - parent: 4812 - type: Transform - - uid: 346 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,8.5 - parent: 4812 - type: Transform - - uid: 347 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,7.5 - parent: 4812 - type: Transform - - uid: 348 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,6.5 - parent: 4812 - type: Transform - - uid: 366 - components: - - rot: 3.141592653589793 rad - pos: 3.5,3.5 - parent: 4812 - type: Transform - - uid: 367 - components: - - rot: 3.141592653589793 rad - pos: 2.5,3.5 - parent: 4812 - type: Transform - - uid: 887 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-0.5 - parent: 4812 - type: Transform - - uid: 888 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 4812 - type: Transform - - uid: 889 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-2.5 - parent: 4812 - type: Transform - - uid: 10495 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-26.5 - parent: 4812 - type: Transform - - uid: 10496 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-26.5 - parent: 4812 - type: Transform -- proto: StorageCanister - entities: - - uid: 6325 - components: - - pos: 23.5,-22.5 - parent: 4812 - type: Transform - - uid: 6326 - components: - - pos: 24.5,-22.5 - parent: 4812 - type: Transform - - uid: 9553 - components: - - pos: -41.5,6.5 - parent: 4812 - type: Transform - - uid: 9554 - components: - - pos: -41.5,7.5 - parent: 4812 - type: Transform - - uid: 9555 - components: - - pos: -41.5,8.5 - parent: 4812 - type: Transform - - uid: 9665 - components: - - pos: -34.5,4.5 - parent: 4812 - type: Transform - - uid: 9666 - components: - - pos: -34.5,5.5 - parent: 4812 - type: Transform - - uid: 12462 - components: - - pos: -36.5,26.5 - parent: 4812 - type: Transform -- proto: SubstationBasic - entities: - - uid: 897 - components: - - name: Dorm Substation - type: MetaData - - pos: -14.5,7.5 - parent: 4812 - type: Transform - - uid: 916 - components: - - name: Service Substation - type: MetaData - - pos: 2.5,11.5 - parent: 4812 - type: Transform - - uid: 2076 - components: - - name: Bridge Substation - type: MetaData - - pos: 6.5,31.5 - parent: 4812 - type: Transform - - uid: 2821 - components: - - name: Cargo Substation - type: MetaData - - pos: 13.5,32.5 - parent: 4812 - type: Transform - - uid: 3787 - components: - - pos: 13.5,47.5 - parent: 4812 - type: Transform - - uid: 4234 - components: - - name: Evac Substation - type: MetaData - - pos: 17.5,2.5 - parent: 4812 - type: Transform - - uid: 5913 - components: - - name: South Science Substation - type: MetaData - - pos: 16.5,-30.5 - parent: 4812 - type: Transform - - uid: 6899 - components: - - name: Arrivals Substation - type: MetaData - - pos: -8.5,-30.5 - parent: 4812 - type: Transform - - uid: 7957 - components: - - name: Atmos Substation - type: MetaData - - pos: -37.5,8.5 - parent: 4812 - type: Transform - - uid: 9959 - components: - - name: Engi Substation - type: MetaData - - pos: -48.5,-19.5 - parent: 4812 - type: Transform - - uid: 10182 - components: - - name: South West Solar Substation - type: MetaData - - pos: -50.5,-25.5 - parent: 4812 - type: Transform - - uid: 10649 - components: - - name: Grav Substation - type: MetaData - - pos: -53.5,-13.5 - parent: 4812 - type: Transform - - uid: 11435 - components: - - name: South East Solar Substation - type: MetaData - - pos: 30.5,-39.5 - parent: 4812 - type: Transform -- proto: SubstationMachineCircuitboard - entities: - - uid: 2728 - components: - - pos: 0.5457101,23.457329 - parent: 4812 - type: Transform - - uid: 2729 - components: - - pos: 0.4050851,23.613579 - parent: 4812 - type: Transform - - uid: 3380 - components: - - pos: 21.406494,4.6097765 - parent: 4812 - type: Transform - - uid: 3403 - components: - - pos: 21.54712,4.4847765 - parent: 4812 - type: Transform -- proto: SuitStorageAtmos - entities: - - uid: 742 - components: - - pos: -41.5,9.5 - parent: 4812 - type: Transform - - uid: 4846 - components: - - pos: -41.5,10.5 - parent: 4812 - type: Transform -- proto: SuitStorageCaptain - entities: - - uid: 746 - components: - - pos: -10.5,27.5 - parent: 4812 - type: Transform -- proto: SuitStorageCE - entities: - - uid: 747 - components: - - pos: -49.5,-6.5 - parent: 4812 - type: Transform -- proto: SuitStorageEngi - entities: - - uid: 2584 - components: - - pos: -46.5,-7.5 - parent: 4812 - type: Transform - - uid: 4843 - components: - - pos: -46.5,-8.5 - parent: 4812 - type: Transform - - uid: 4855 - components: - - pos: -46.5,-6.5 - parent: 4812 - type: Transform -- proto: SuitStorageEVA - entities: - - uid: 738 - components: - - pos: 9.5,16.5 - parent: 4812 - type: Transform - - uid: 743 - components: - - pos: 5.5,15.5 - parent: 4812 - type: Transform - - uid: 4844 - components: - - pos: 5.5,16.5 - parent: 4812 - type: Transform - - uid: 4845 - components: - - pos: 9.5,15.5 - parent: 4812 - type: Transform -- proto: SuitStorageEVAPrisoner - entities: - - uid: 6572 - components: - - pos: -31.5,24.5 - parent: 4812 - type: Transform - - uid: 7058 - components: - - pos: -25.5,24.5 - parent: 4812 - type: Transform -- proto: SuitStorageHOS - entities: - - uid: 740 - components: - - pos: -23.5,22.5 - parent: 4812 - type: Transform -- proto: SuitStorageRD - entities: - - uid: 735 - components: - - pos: 27.5,-17.5 - parent: 4812 - type: Transform -- proto: SuitStorageSec - entities: - - uid: 736 - components: - - pos: -35.5,21.5 - parent: 4812 - type: Transform -- proto: SuitStorageWarden - entities: - - uid: 745 - components: - - pos: -36.5,21.5 - parent: 4812 - type: Transform -- proto: SuperCapacitorStockPart - entities: - - uid: 6210 - components: - - pos: 7.701914,-18.299206 - parent: 4812 - type: Transform - - uid: 6211 - components: - - pos: 7.451914,-18.299206 - parent: 4812 - type: Transform - - uid: 6212 - components: - - pos: 7.5679626,-16.149172 - parent: 4812 - type: Transform -- proto: SurveillanceCameraCommand - entities: - - uid: 12081 - components: - - rot: 3.141592653589793 rad - pos: -10.5,29.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Bedroom - type: SurveillanceCamera - - uid: 12082 - components: - - pos: -12.5,22.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Office - type: SurveillanceCamera - - uid: 12084 - components: - - pos: 1.5,32.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge - type: SurveillanceCamera - - uid: 12085 - components: - - rot: 3.141592653589793 rad - pos: 7.5,29.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HoP's Room - type: SurveillanceCamera - - uid: 12086 - components: - - rot: 3.141592653589793 rad - pos: 10.5,26.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HoP's Office - type: SurveillanceCamera - - uid: 12087 - components: - - pos: -1.5,22.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Vault - type: SurveillanceCamera - - uid: 12090 - components: - - rot: 3.141592653589793 rad - pos: 8.5,55.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core 2 - type: SurveillanceCamera - - uid: 12091 - components: - - rot: 3.141592653589793 rad - pos: 11.5,50.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core 1 - type: SurveillanceCamera - - uid: 12092 - components: - - rot: 3.141592653589793 rad - pos: 11.5,46.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Entrance - type: SurveillanceCamera - - uid: 12522 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,24.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HoS office - type: SurveillanceCamera - - uid: 12523 - components: - - pos: -12.5,15.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Drone bay - type: SurveillanceCamera - - uid: 12524 - components: - - pos: 7.5,14.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: EvA Storage - type: SurveillanceCamera -- proto: SurveillanceCameraEngineering - entities: - - uid: 12064 - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-12.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Grav Gen - type: SurveillanceCamera - - uid: 12065 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-8.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Chief Engineer Room - type: SurveillanceCamera - - uid: 12066 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-14.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: AME Room - type: SurveillanceCamera - - uid: 12067 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-1.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engineering Lobby - type: SurveillanceCamera - - uid: 12068 - components: - - pos: -42.5,0.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmospherics - type: SurveillanceCamera -- proto: SurveillanceCameraGeneral - entities: - - uid: 12060 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,12.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Security Hallway - type: SurveillanceCamera - - uid: 12528 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-1.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Entrance of engineering - type: SurveillanceCamera - - uid: 12529 - components: - - pos: -17.5,-12.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Hydro and medbay - type: SurveillanceCamera - - uid: 12530 - components: - - pos: 11.5,-12.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Science and detective - type: SurveillanceCamera - - uid: 12531 - components: - - pos: -0.5,-13.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Entrance of service - type: SurveillanceCamera - - uid: 12532 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-23.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Entrance of medbay - type: SurveillanceCamera - - uid: 12533 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-22.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Entrance of science - type: SurveillanceCamera - - uid: 12534 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-31.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Entrance 3 - type: SurveillanceCamera - - uid: 12535 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-39.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Entrance 2 - type: SurveillanceCamera - - uid: 12536 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-53.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Entrance 1 - type: SurveillanceCamera - - uid: 12537 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,14.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Entrance of cargo - type: SurveillanceCamera - - uid: 12538 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,1.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Service and evac - type: SurveillanceCamera - - uid: 12539 - components: - - pos: 20.5,-3.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Entrance of evac - type: SurveillanceCamera - - uid: 12540 - components: - - pos: 30.5,-9.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Evacuation 1 - type: SurveillanceCamera - - uid: 12541 - components: - - rot: 3.141592653589793 rad - pos: 30.5,4.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Evacuation 2 - type: SurveillanceCamera - - uid: 12542 - components: - - pos: 1.5,19.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Entrance of bridge - type: SurveillanceCamera - - uid: 12543 - components: - - pos: -16.5,19.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Security and drones - type: SurveillanceCamera - - uid: 12544 - components: - - pos: -19.5,1.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dormitory - type: SurveillanceCamera -- proto: SurveillanceCameraMedical - entities: - - uid: 12072 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-16.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Chemistry - type: SurveillanceCamera - - uid: 12105 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-33.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Virology - type: SurveillanceCamera -- proto: SurveillanceCameraRouterCommand - entities: - - uid: 2732 - components: - - pos: -0.5,26.5 - parent: 4812 - type: Transform -- proto: SurveillanceCameraRouterEngineering - entities: - - uid: 10668 - components: - - pos: -48.5,-6.5 - parent: 4812 - type: Transform -- proto: SurveillanceCameraRouterGeneral - entities: - - uid: 7396 - components: - - pos: -54.5,-13.5 - parent: 4812 - type: Transform -- proto: SurveillanceCameraRouterMedical - entities: - - uid: 7448 - components: - - pos: -24.5,-26.5 - parent: 4812 - type: Transform -- proto: SurveillanceCameraRouterScience - entities: - - uid: 12045 - components: - - pos: 12.5,-18.5 - parent: 4812 - type: Transform -- proto: SurveillanceCameraRouterSecurity - entities: - - uid: 8372 - components: - - pos: -33.5,21.5 - parent: 4812 - type: Transform -- proto: SurveillanceCameraRouterService - entities: - - uid: 10658 - components: - - pos: -52.5,-13.5 - parent: 4812 - type: Transform -- proto: SurveillanceCameraRouterSupply - entities: - - uid: 3578 - components: - - pos: 15.5,32.5 - parent: 4812 - type: Transform -- proto: SurveillanceCameraScience - entities: - - uid: 12075 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-27.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Toxins - type: SurveillanceCamera - - uid: 12076 - components: - - pos: 13.5,-21.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Science Server Room - type: SurveillanceCamera - - uid: 12077 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-14.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Research and Development - type: SurveillanceCamera - - uid: 12078 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-23.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Robotics - type: SurveillanceCamera - - uid: 12079 - components: - - pos: 28.5,-20.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Research Director's Room - type: SurveillanceCamera -- proto: SurveillanceCameraSecurity - entities: - - uid: 12058 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,20.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory - type: SurveillanceCamera - - uid: 12059 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,15.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security - type: SurveillanceCamera - - uid: 12061 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,15.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Warden's Office - type: SurveillanceCamera - - uid: 12062 - components: - - pos: -35.5,10.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Sec Break Room - type: SurveillanceCamera - - uid: 12063 - components: - - pos: -28.5,29.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Brig - type: SurveillanceCamera - - uid: 12080 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-25.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security Checkpoint - type: SurveillanceCamera - - uid: 12521 - components: - - pos: -17.5,14.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Lawyer office - type: SurveillanceCamera - - uid: 12527 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-15.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Detective office - type: SurveillanceCamera -- proto: SurveillanceCameraService - entities: - - uid: 12546 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-5.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Botany - type: SurveillanceCamera - - uid: 12547 - components: - - rot: 3.141592653589793 rad - pos: -27.5,-14.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Library - type: SurveillanceCamera - - uid: 12548 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-5.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Freezer - type: SurveillanceCamera - - uid: 12549 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-0.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Kitchen - type: SurveillanceCamera - - uid: 12550 - components: - - pos: 6.5,6.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Bartenders room - type: SurveillanceCamera - - uid: 12551 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,4.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Service 2 - type: SurveillanceCamera - - uid: 12552 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-2.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Service 1 - type: SurveillanceCamera - - uid: 12553 - components: - - rot: 3.141592653589793 rad - pos: -9.5,1.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Clowns room - type: SurveillanceCamera - - uid: 12554 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,6.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Theater - type: SurveillanceCamera - - uid: 12555 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-6.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Janitors room - type: SurveillanceCamera - - uid: 12556 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-33.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Chapel 1 - type: SurveillanceCamera -- proto: SurveillanceCameraSupply - entities: - - uid: 12088 - components: - - rot: 3.141592653589793 rad - pos: 18.5,27.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Bay - type: SurveillanceCamera - - uid: 12089 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,18.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Lobby - type: SurveillanceCamera - - uid: 12525 - components: - - rot: 3.141592653589793 rad - pos: 17.5,35.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: QM Room - type: SurveillanceCamera - - uid: 12526 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,12.5 - parent: 4812 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Salvagers - type: SurveillanceCamera -- proto: Syringe - entities: - - uid: 6248 - components: - - pos: 16.462831,-27.480993 - parent: 4812 - type: Transform - - uid: 7685 - components: - - pos: -14.597183,-25.438694 - parent: 4812 - type: Transform -- proto: SyringeInaprovaline - entities: - - uid: 7585 - components: - - pos: -15.483852,-23.427011 - parent: 4812 - type: Transform -- proto: Table - entities: - - uid: 1095 - components: - - pos: -18.5,-5.5 - parent: 4812 - type: Transform - - uid: 1096 - components: - - pos: -18.5,-9.5 - parent: 4812 - type: Transform - - uid: 1101 - components: - - pos: -7.5,-7.5 - parent: 4812 - type: Transform - - uid: 1102 - components: - - pos: -8.5,-7.5 - parent: 4812 - type: Transform - - uid: 1453 - components: - - pos: -18.5,-8.5 - parent: 4812 - type: Transform - - uid: 1554 - components: - - pos: 7.5,0.5 - parent: 4812 - type: Transform - - uid: 1651 - components: - - pos: 7.5,8.5 - parent: 4812 - type: Transform - - uid: 1801 - components: - - pos: -4.5,14.5 - parent: 4812 - type: Transform - - uid: 2485 - components: - - pos: 10.5,22.5 - parent: 4812 - type: Transform - - uid: 2720 - components: - - pos: -1.5,24.5 - parent: 4812 - type: Transform - - uid: 2721 - components: - - pos: -3.5,24.5 - parent: 4812 - type: Transform - - uid: 3234 - components: - - pos: 20.5,17.5 - parent: 4812 - type: Transform - - uid: 3235 - components: - - pos: 14.5,18.5 - parent: 4812 - type: Transform - - uid: 3244 - components: - - pos: 17.5,13.5 - parent: 4812 - type: Transform - - uid: 3266 - components: - - pos: 22.5,12.5 - parent: 4812 - type: Transform - - uid: 3447 - components: - - pos: 22.5,3.5 - parent: 4812 - type: Transform - - uid: 3755 - components: - - pos: 15.5,35.5 - parent: 4812 - type: Transform - - uid: 3756 - components: - - pos: 17.5,31.5 - parent: 4812 - type: Transform - - uid: 3843 - components: - - pos: 13.5,44.5 - parent: 4812 - type: Transform - - uid: 3844 - components: - - pos: 15.5,47.5 - parent: 4812 - type: Transform - - uid: 3850 - components: - - pos: 10.5,43.5 - parent: 4812 - type: Transform - - uid: 3851 - components: - - pos: 9.5,56.5 - parent: 4812 - type: Transform - - uid: 3852 - components: - - pos: 11.5,56.5 - parent: 4812 - type: Transform - - uid: 3946 - components: - - pos: 9.5,48.5 - parent: 4812 - type: Transform - - uid: 3947 - components: - - pos: 11.5,48.5 - parent: 4812 - type: Transform - - uid: 4455 - components: - - pos: 14.5,6.5 - parent: 4812 - type: Transform - - uid: 4490 - components: - - pos: 20.5,2.5 - parent: 4812 - type: Transform - - uid: 4534 - components: - - pos: 13.5,-0.5 - parent: 4812 - type: Transform - - uid: 4547 - components: - - pos: 27.5,-5.5 - parent: 4812 - type: Transform - - uid: 4548 - components: - - pos: 27.5,0.5 - parent: 4812 - type: Transform - - uid: 4597 - components: - - pos: 13.5,-4.5 - parent: 4812 - type: Transform - - uid: 4598 - components: - - pos: 13.5,-9.5 - parent: 4812 - type: Transform - - uid: 4985 - components: - - pos: -20.5,-14.5 - parent: 4812 - type: Transform - - uid: 6181 - components: - - pos: 3.5,-14.5 - parent: 4812 - type: Transform - - uid: 6190 - components: - - pos: 3.5,-18.5 - parent: 4812 - type: Transform - - uid: 6192 - components: - - pos: 13.5,-11.5 - parent: 4812 - type: Transform - - uid: 6228 - components: - - pos: 11.5,-28.5 - parent: 4812 - type: Transform - - uid: 6254 - components: - - pos: 5.5,-25.5 - parent: 4812 - type: Transform - - uid: 6255 - components: - - pos: 6.5,-25.5 - parent: 4812 - type: Transform - - uid: 6256 - components: - - pos: 6.5,-28.5 - parent: 4812 - type: Transform - - uid: 6257 - components: - - pos: 5.5,-28.5 - parent: 4812 - type: Transform - - uid: 6314 - components: - - pos: 24.5,-26.5 - parent: 4812 - type: Transform - - uid: 6323 - components: - - pos: 24.5,-25.5 - parent: 4812 - type: Transform - - uid: 6343 - components: - - pos: 9.5,-19.5 - parent: 4812 - type: Transform - - uid: 6353 - components: - - pos: 9.5,-16.5 - parent: 4812 - type: Transform - - uid: 6482 - components: - - pos: -1.5,-27.5 - parent: 4812 - type: Transform - - uid: 7189 - components: - - pos: -18.5,-14.5 - parent: 4812 - type: Transform - - uid: 7406 - components: - - pos: -10.5,-25.5 - parent: 4812 - type: Transform - - uid: 8364 - components: - - pos: -26.5,10.5 - parent: 4812 - type: Transform - - uid: 8400 - components: - - pos: -28.5,30.5 - parent: 4812 - type: Transform - - uid: 8401 - components: - - pos: -29.5,30.5 - parent: 4812 - type: Transform - - uid: 8410 - components: - - pos: -31.5,26.5 - parent: 4812 - type: Transform - - uid: 8411 - components: - - pos: -27.5,26.5 - parent: 4812 - type: Transform - - uid: 8425 - components: - - pos: -38.5,12.5 - parent: 4812 - type: Transform - - uid: 8426 - components: - - pos: -39.5,12.5 - parent: 4812 - type: Transform - - uid: 8427 - components: - - pos: -39.5,11.5 - parent: 4812 - type: Transform - - uid: 8439 - components: - - pos: -37.5,10.5 - parent: 4812 - type: Transform - - uid: 9585 - components: - - pos: 0.5,-3.5 - parent: 4812 - type: Transform - - uid: 10488 - components: - - pos: -37.5,-25.5 - parent: 4812 - type: Transform - - uid: 10489 - components: - - pos: -36.5,-25.5 - parent: 4812 - type: Transform - - uid: 10490 - components: - - pos: -36.5,-22.5 - parent: 4812 - type: Transform - - uid: 10491 - components: - - pos: -37.5,-22.5 - parent: 4812 - type: Transform - - uid: 10709 - components: - - pos: -35.5,-7.5 - parent: 4812 - type: Transform - - uid: 10729 - components: - - pos: -41.5,-7.5 - parent: 4812 - type: Transform - - uid: 10730 - components: - - pos: -42.5,-7.5 - parent: 4812 - type: Transform - - uid: 10731 - components: - - pos: -43.5,-7.5 - parent: 4812 - type: Transform - - uid: 10856 - components: - - pos: -20.5,5.5 - parent: 4812 - type: Transform - - uid: 10857 - components: - - pos: -22.5,3.5 - parent: 4812 - type: Transform - - uid: 10858 - components: - - pos: -22.5,0.5 - parent: 4812 - type: Transform - - uid: 10859 - components: - - pos: -21.5,0.5 - parent: 4812 - type: Transform - - uid: 10907 - components: - - pos: -44.5,-24.5 - parent: 4812 - type: Transform - - uid: 10908 - components: - - pos: -44.5,-23.5 - parent: 4812 - type: Transform - - uid: 11466 - components: - - pos: 31.5,-30.5 - parent: 4812 - type: Transform - - uid: 11662 - components: - - pos: 25.5,-40.5 - parent: 4812 - type: Transform - - uid: 11842 - components: - - pos: -7.5,12.5 - parent: 4812 - type: Transform - - uid: 11879 - components: - - pos: -2.5,-34.5 - parent: 4812 - type: Transform - - uid: 12114 - components: - - pos: -42.5,-2.5 - parent: 4812 - type: Transform - - uid: 12115 - components: - - pos: -42.5,-1.5 - parent: 4812 - type: Transform - - uid: 12493 - components: - - pos: 9.5,-18.5 - parent: 4812 - type: Transform -- proto: TableCarpet - entities: - - uid: 257 - components: - - pos: -18.5,5.5 - parent: 4812 - type: Transform - - uid: 7047 - components: - - pos: -28.5,-14.5 - parent: 4812 - type: Transform - - uid: 7048 - components: - - pos: -27.5,-14.5 - parent: 4812 - type: Transform - - uid: 7049 - components: - - pos: -27.5,-15.5 - parent: 4812 - type: Transform - - uid: 7050 - components: - - pos: -28.5,-15.5 - parent: 4812 - type: Transform - - uid: 10499 - components: - - pos: -32.5,-28.5 - parent: 4812 - type: Transform - - uid: 10500 - components: - - pos: -33.5,-28.5 - parent: 4812 - type: Transform - - uid: 10501 - components: - - pos: -37.5,-28.5 - parent: 4812 - type: Transform -- proto: TableGlass - entities: - - uid: 1085 - components: - - pos: -16.5,-7.5 - parent: 4812 - type: Transform - - uid: 1087 - components: - - pos: -14.5,-7.5 - parent: 4812 - type: Transform - - uid: 1088 - components: - - pos: -13.5,-7.5 - parent: 4812 - type: Transform - - uid: 1089 - components: - - pos: -12.5,-7.5 - parent: 4812 - type: Transform - - uid: 1090 - components: - - pos: -11.5,-7.5 - parent: 4812 - type: Transform - - uid: 6612 - components: - - pos: -10.5,-18.5 - parent: 4812 - type: Transform - - uid: 6613 - components: - - pos: -8.5,-18.5 - parent: 4812 - type: Transform - - uid: 6614 - components: - - pos: -8.5,-17.5 - parent: 4812 - type: Transform - - uid: 6652 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-18.5 - parent: 4812 - type: Transform - - uid: 7426 - components: - - pos: -22.5,-28.5 - parent: 4812 - type: Transform - - uid: 7443 - components: - - pos: -24.5,-25.5 - parent: 4812 - type: Transform - - uid: 7457 - components: - - pos: -24.5,-27.5 - parent: 4812 - type: Transform - - uid: 7576 - components: - - pos: -15.5,-23.5 - parent: 4812 - type: Transform - - uid: 7577 - components: - - pos: -18.5,-23.5 - parent: 4812 - type: Transform - - uid: 7578 - components: - - pos: -18.5,-20.5 - parent: 4812 - type: Transform - - uid: 9023 - components: - - pos: -39.5,-35.5 - parent: 4812 - type: Transform - - uid: 9024 - components: - - pos: -40.5,-35.5 - parent: 4812 - type: Transform - - uid: 9025 - components: - - pos: -40.5,-34.5 - parent: 4812 - type: Transform - - uid: 10659 - components: - - pos: -12.5,-16.5 - parent: 4812 - type: Transform -- proto: TableReinforced - entities: - - uid: 144 - components: - - pos: -14.5,17.5 - parent: 4812 - type: Transform - - uid: 175 - components: - - pos: -14.5,16.5 - parent: 4812 - type: Transform - - uid: 311 - components: - - pos: -6.5,-6.5 - parent: 4812 - type: Transform - - uid: 312 - components: - - pos: -6.5,-5.5 - parent: 4812 - type: Transform - - uid: 313 - components: - - pos: 1.5,-2.5 - parent: 4812 - type: Transform - - uid: 314 - components: - - pos: 1.5,-1.5 - parent: 4812 - type: Transform - - uid: 315 - components: - - pos: 1.5,-0.5 - parent: 4812 - type: Transform - - uid: 316 - components: - - pos: 3.5,4.5 - parent: 4812 - type: Transform - - uid: 317 - components: - - pos: 2.5,4.5 - parent: 4812 - type: Transform - - uid: 320 - components: - - pos: 1.5,6.5 - parent: 4812 - type: Transform - - uid: 321 - components: - - pos: 1.5,7.5 - parent: 4812 - type: Transform - - uid: 322 - components: - - pos: 1.5,8.5 - parent: 4812 - type: Transform - - uid: 323 - components: - - pos: 1.5,9.5 - parent: 4812 - type: Transform - - uid: 730 - components: - - pos: 5.5,17.5 - parent: 4812 - type: Transform - - uid: 731 - components: - - pos: 5.5,14.5 - parent: 4812 - type: Transform - - uid: 734 - components: - - pos: 7.5,16.5 - parent: 4812 - type: Transform - - uid: 1487 - components: - - pos: -23.5,-7.5 - parent: 4812 - type: Transform - - uid: 1488 - components: - - pos: -23.5,-6.5 - parent: 4812 - type: Transform - - uid: 1557 - components: - - pos: 3.5,-1.5 - parent: 4812 - type: Transform - - uid: 1558 - components: - - pos: 4.5,-1.5 - parent: 4812 - type: Transform - - uid: 1559 - components: - - pos: 5.5,-1.5 - parent: 4812 - type: Transform - - uid: 1560 - components: - - pos: 6.5,-1.5 - parent: 4812 - type: Transform - - uid: 2229 - components: - - pos: 9.5,23.5 - parent: 4812 - type: Transform - - uid: 2650 - components: - - pos: -3.5,34.5 - parent: 4812 - type: Transform - - uid: 2651 - components: - - pos: -3.5,35.5 - parent: 4812 - type: Transform - - uid: 2653 - components: - - pos: -1.5,35.5 - parent: 4812 - type: Transform - - uid: 2660 - components: - - pos: 1.5,34.5 - parent: 4812 - type: Transform - - uid: 2661 - components: - - pos: -6.5,34.5 - parent: 4812 - type: Transform - - uid: 2663 - components: - - pos: -8.5,34.5 - parent: 4812 - type: Transform - - uid: 2698 - components: - - pos: 0.5,26.5 - parent: 4812 - type: Transform - - uid: 2702 - components: - - pos: 0.5,22.5 - parent: 4812 - type: Transform - - uid: 2703 - components: - - pos: -5.5,22.5 - parent: 4812 - type: Transform - - uid: 2704 - components: - - pos: -5.5,23.5 - parent: 4812 - type: Transform - - uid: 2705 - components: - - pos: -5.5,24.5 - parent: 4812 - type: Transform - - uid: 2706 - components: - - pos: -5.5,25.5 - parent: 4812 - type: Transform - - uid: 2707 - components: - - pos: -5.5,26.5 - parent: 4812 - type: Transform - - uid: 2854 - components: - - pos: 15.5,16.5 - parent: 4812 - type: Transform - - uid: 3232 - components: - - pos: 19.5,21.5 - parent: 4812 - type: Transform - - uid: 3233 - components: - - pos: 20.5,21.5 - parent: 4812 - type: Transform - - uid: 4430 - components: - - pos: 28.5,1.5 - parent: 4812 - type: Transform - - uid: 4431 - components: - - pos: 28.5,-6.5 - parent: 4812 - type: Transform - - uid: 4562 - components: - - pos: 27.5,3.5 - parent: 4812 - type: Transform - - uid: 4563 - components: - - pos: 27.5,4.5 - parent: 4812 - type: Transform - - uid: 4564 - components: - - pos: 28.5,4.5 - parent: 4812 - type: Transform - - uid: 4578 - components: - - pos: 27.5,-9.5 - parent: 4812 - type: Transform - - uid: 5306 - components: - - pos: -4.5,-27.5 - parent: 4812 - type: Transform - - uid: 5431 - components: - - pos: 2.5,-23.5 - parent: 4812 - type: Transform - - uid: 5503 - components: - - pos: 2.5,-15.5 - parent: 4812 - type: Transform - - uid: 5504 - components: - - pos: 4.5,-13.5 - parent: 4812 - type: Transform - - uid: 6186 - components: - - pos: 7.5,-18.5 - parent: 4812 - type: Transform - - uid: 6187 - components: - - pos: 7.5,-17.5 - parent: 4812 - type: Transform - - uid: 6188 - components: - - pos: 7.5,-16.5 - parent: 4812 - type: Transform - - uid: 6189 - components: - - pos: 7.5,-15.5 - parent: 4812 - type: Transform - - uid: 6219 - components: - - pos: 13.5,-28.5 - parent: 4812 - type: Transform - - uid: 6220 - components: - - pos: 13.5,-27.5 - parent: 4812 - type: Transform - - uid: 6221 - components: - - pos: 16.5,-28.5 - parent: 4812 - type: Transform - - uid: 6222 - components: - - pos: 16.5,-27.5 - parent: 4812 - type: Transform - - uid: 6224 - components: - - pos: 16.5,-23.5 - parent: 4812 - type: Transform - - uid: 6225 - components: - - pos: 15.5,-23.5 - parent: 4812 - type: Transform - - uid: 6335 - components: - - pos: 35.5,-24.5 - parent: 4812 - type: Transform - - uid: 6345 - components: - - pos: 35.5,-26.5 - parent: 4812 - type: Transform - - uid: 6347 - components: - - pos: 35.5,-25.5 - parent: 4812 - type: Transform - - uid: 6382 - components: - - pos: 31.5,-24.5 - parent: 4812 - type: Transform - - uid: 6476 - components: - - pos: -2.5,-24.5 - parent: 4812 - type: Transform - - uid: 6477 - components: - - pos: -1.5,-24.5 - parent: 4812 - type: Transform - - uid: 6580 - components: - - pos: -9.5,-13.5 - parent: 4812 - type: Transform - - uid: 6581 - components: - - pos: -11.5,-19.5 - parent: 4812 - type: Transform - - uid: 6737 - components: - - pos: -26.5,22.5 - parent: 4812 - type: Transform - - uid: 7030 - components: - - pos: -28.5,22.5 - parent: 4812 - type: Transform - - uid: 7066 - components: - - pos: -27.5,22.5 - parent: 4812 - type: Transform - - uid: 7419 - components: - - pos: -19.5,-25.5 - parent: 4812 - type: Transform - - uid: 7462 - components: - - pos: -14.5,-25.5 - parent: 4812 - type: Transform - - uid: 7752 - components: - - pos: -24.5,11.5 - parent: 4812 - type: Transform - - uid: 7777 - components: - - pos: -25.5,12.5 - parent: 4812 - type: Transform - - uid: 7778 - components: - - pos: -26.5,12.5 - parent: 4812 - type: Transform - - uid: 7787 - components: - - pos: -32.5,15.5 - parent: 4812 - type: Transform - - uid: 8333 - components: - - pos: -36.5,15.5 - parent: 4812 - type: Transform - - uid: 8334 - components: - - pos: -36.5,16.5 - parent: 4812 - type: Transform - - uid: 8335 - components: - - pos: -36.5,17.5 - parent: 4812 - type: Transform - - uid: 8343 - components: - - pos: -31.5,12.5 - parent: 4812 - type: Transform - - uid: 8344 - components: - - pos: -31.5,14.5 - parent: 4812 - type: Transform - - uid: 8347 - components: - - pos: -31.5,20.5 - parent: 4812 - type: Transform - - uid: 8447 - components: - - pos: -28.5,10.5 - parent: 4812 - type: Transform - - uid: 8448 - components: - - pos: -29.5,10.5 - parent: 4812 - type: Transform - - uid: 8449 - components: - - pos: -30.5,10.5 - parent: 4812 - type: Transform - - uid: 8564 - components: - - pos: -19.5,9.5 - parent: 4812 - type: Transform - - uid: 8565 - components: - - pos: -19.5,10.5 - parent: 4812 - type: Transform - - uid: 8566 - components: - - pos: -18.5,10.5 - parent: 4812 - type: Transform - - uid: 8567 - components: - - pos: -18.5,9.5 - parent: 4812 - type: Transform - - uid: 8568 - components: - - pos: -18.5,12.5 - parent: 4812 - type: Transform - - uid: 8569 - components: - - pos: -19.5,12.5 - parent: 4812 - type: Transform - - uid: 8570 - components: - - pos: -20.5,12.5 - parent: 4812 - type: Transform - - uid: 8571 - components: - - pos: -20.5,7.5 - parent: 4812 - type: Transform - - uid: 8572 - components: - - pos: -17.5,7.5 - parent: 4812 - type: Transform - - uid: 8573 - components: - - pos: -16.5,7.5 - parent: 4812 - type: Transform - - uid: 8574 - components: - - pos: -16.5,8.5 - parent: 4812 - type: Transform - - uid: 8628 - components: - - pos: -30.5,0.5 - parent: 4812 - type: Transform - - uid: 8682 - components: - - pos: -30.5,-4.5 - parent: 4812 - type: Transform - - uid: 9568 - components: - - pos: -30.5,4.5 - parent: 4812 - type: Transform - - uid: 9569 - components: - - pos: -30.5,5.5 - parent: 4812 - type: Transform - - uid: 9573 - components: - - pos: -28.5,1.5 - parent: 4812 - type: Transform - - uid: 9724 - components: - - pos: -34.5,-5.5 - parent: 4812 - type: Transform - - uid: 9729 - components: - - pos: -31.5,-7.5 - parent: 4812 - type: Transform - - uid: 9730 - components: - - pos: -30.5,-7.5 - parent: 4812 - type: Transform - - uid: 9731 - components: - - pos: -32.5,-7.5 - parent: 4812 - type: Transform - - uid: 10633 - components: - - pos: -49.5,-8.5 - parent: 4812 - type: Transform - - uid: 10634 - components: - - pos: -48.5,-8.5 - parent: 4812 - type: Transform - - uid: 10703 - components: - - pos: -28.5,-5.5 - parent: 4812 - type: Transform - - uid: 10847 - components: - - pos: -27.5,-3.5 - parent: 4812 - type: Transform - - uid: 10848 - components: - - pos: -27.5,-0.5 - parent: 4812 - type: Transform - - uid: 11144 - components: - - pos: 8.5,-44.5 - parent: 4812 - type: Transform - - uid: 11145 - components: - - pos: 7.5,-44.5 - parent: 4812 - type: Transform - - uid: 11146 - components: - - pos: 10.5,-44.5 - parent: 4812 - type: Transform - - uid: 11862 - components: - - pos: -14.5,4.5 - parent: 4812 - type: Transform - - uid: 11929 - components: - - pos: -14.5,15.5 - parent: 4812 - type: Transform - - uid: 11930 - components: - - pos: -10.5,15.5 - parent: 4812 - type: Transform - - uid: 11931 - components: - - pos: -10.5,16.5 - parent: 4812 - type: Transform - - uid: 11932 - components: - - pos: -10.5,17.5 - parent: 4812 - type: Transform - - uid: 12054 - components: - - pos: -33.5,20.5 - parent: 4812 - type: Transform -- proto: TableReinforcedGlass - entities: - - uid: 6303 - components: - - pos: 28.5,-20.5 - parent: 4812 - type: Transform - - uid: 6304 - components: - - pos: 28.5,-19.5 - parent: 4812 - type: Transform -- proto: TableWood - entities: - - uid: 259 - components: - - pos: -17.5,-1.5 - parent: 4812 - type: Transform - - uid: 362 - components: - - pos: 3.5,8.5 - parent: 4812 - type: Transform - - uid: 363 - components: - - pos: 3.5,9.5 - parent: 4812 - type: Transform - - uid: 936 - components: - - pos: -6.5,8.5 - parent: 4812 - type: Transform - - uid: 939 - components: - - pos: -6.5,4.5 - parent: 4812 - type: Transform - - uid: 1040 - components: - - pos: -2.5,9.5 - parent: 4812 - type: Transform - - uid: 1041 - components: - - pos: -2.5,8.5 - parent: 4812 - type: Transform - - uid: 1042 - components: - - pos: -2.5,7.5 - parent: 4812 - type: Transform - - uid: 1043 - components: - - pos: -2.5,6.5 - parent: 4812 - type: Transform - - uid: 1044 - components: - - pos: -2.5,3.5 - parent: 4812 - type: Transform - - uid: 1045 - components: - - pos: -2.5,2.5 - parent: 4812 - type: Transform - - uid: 1046 - components: - - pos: -2.5,1.5 - parent: 4812 - type: Transform - - uid: 1047 - components: - - pos: -2.5,-1.5 - parent: 4812 - type: Transform - - uid: 1048 - components: - - pos: -2.5,-2.5 - parent: 4812 - type: Transform - - uid: 1049 - components: - - pos: -2.5,-3.5 - parent: 4812 - type: Transform - - uid: 1050 - components: - - pos: -2.5,-4.5 - parent: 4812 - type: Transform - - uid: 1694 - components: - - pos: -10.5,1.5 - parent: 4812 - type: Transform - - uid: 1695 - components: - - pos: -10.5,0.5 - parent: 4812 - type: Transform - - uid: 1696 - components: - - pos: -10.5,-0.5 - parent: 4812 - type: Transform - - uid: 1697 - components: - - pos: -10.5,-1.5 - parent: 4812 - type: Transform - - uid: 1698 - components: - - pos: -9.5,-1.5 - parent: 4812 - type: Transform - - uid: 1732 - components: - - pos: -10.5,3.5 - parent: 4812 - type: Transform - - uid: 1733 - components: - - pos: -10.5,4.5 - parent: 4812 - type: Transform - - uid: 1734 - components: - - pos: -10.5,5.5 - parent: 4812 - type: Transform - - uid: 1735 - components: - - pos: -10.5,6.5 - parent: 4812 - type: Transform - - uid: 1736 - components: - - pos: -10.5,7.5 - parent: 4812 - type: Transform - - uid: 1737 - components: - - pos: -10.5,8.5 - parent: 4812 - type: Transform - - uid: 1738 - components: - - pos: -10.5,9.5 - parent: 4812 - type: Transform - - uid: 2498 - components: - - pos: 5.5,29.5 - parent: 4812 - type: Transform - - uid: 2506 - components: - - pos: 8.5,24.5 - parent: 4812 - type: Transform - - uid: 2509 - components: - - pos: 9.5,26.5 - parent: 4812 - type: Transform - - uid: 2516 - components: - - pos: 8.5,26.5 - parent: 4812 - type: Transform - - uid: 2537 - components: - - pos: 8.5,29.5 - parent: 4812 - type: Transform - - uid: 2579 - components: - - pos: -13.5,27.5 - parent: 4812 - type: Transform - - uid: 2583 - components: - - pos: -10.5,29.5 - parent: 4812 - type: Transform - - uid: 2586 - components: - - pos: -12.5,27.5 - parent: 4812 - type: Transform - - uid: 2596 - components: - - pos: -12.5,22.5 - parent: 4812 - type: Transform - - uid: 2597 - components: - - pos: -12.5,23.5 - parent: 4812 - type: Transform - - uid: 2599 - components: - - pos: -10.5,25.5 - parent: 4812 - type: Transform - - uid: 2634 - components: - - pos: -2.5,28.5 - parent: 4812 - type: Transform - - uid: 2645 - components: - - pos: -2.5,29.5 - parent: 4812 - type: Transform - - uid: 5043 - components: - - pos: 6.5,24.5 - parent: 4812 - type: Transform - - uid: 5365 - components: - - pos: 17.5,-11.5 - parent: 4812 - type: Transform - - uid: 5367 - components: - - pos: 18.5,-15.5 - parent: 4812 - type: Transform - - uid: 5368 - components: - - pos: 18.5,-16.5 - parent: 4812 - type: Transform - - uid: 5369 - components: - - pos: 19.5,-16.5 - parent: 4812 - type: Transform - - uid: 5373 - components: - - pos: 19.5,-18.5 - parent: 4812 - type: Transform - - uid: 6282 - components: - - pos: 25.5,-17.5 - parent: 4812 - type: Transform - - uid: 6283 - components: - - pos: 25.5,-18.5 - parent: 4812 - type: Transform - - uid: 6284 - components: - - pos: 25.5,-19.5 - parent: 4812 - type: Transform - - uid: 6285 - components: - - pos: 26.5,-19.5 - parent: 4812 - type: Transform - - uid: 6386 - components: - - pos: -4.5,-19.5 - parent: 4812 - type: Transform - - uid: 6387 - components: - - pos: -4.5,-15.5 - parent: 4812 - type: Transform - - uid: 6388 - components: - - pos: -0.5,-15.5 - parent: 4812 - type: Transform - - uid: 6389 - components: - - pos: -0.5,-19.5 - parent: 4812 - type: Transform - - uid: 7002 - components: - - pos: -18.5,-35.5 - parent: 4812 - type: Transform - - uid: 7004 - components: - - pos: -18.5,-33.5 - parent: 4812 - type: Transform - - uid: 7017 - components: - - pos: -13.5,-33.5 - parent: 4812 - type: Transform - - uid: 7018 - components: - - pos: -13.5,-35.5 - parent: 4812 - type: Transform - - uid: 7039 - components: - - pos: -23.5,-38.5 - parent: 4812 - type: Transform - - uid: 7040 - components: - - pos: -24.5,-34.5 - parent: 4812 - type: Transform - - uid: 7051 - components: - - pos: -32.5,-15.5 - parent: 4812 - type: Transform - - uid: 7052 - components: - - pos: -32.5,-14.5 - parent: 4812 - type: Transform - - uid: 7055 - components: - - pos: -30.5,-19.5 - parent: 4812 - type: Transform - - uid: 7056 - components: - - pos: -30.5,-18.5 - parent: 4812 - type: Transform - - uid: 7057 - components: - - pos: -31.5,-18.5 - parent: 4812 - type: Transform - - uid: 7125 - components: - - pos: -32.5,-23.5 - parent: 4812 - type: Transform - - uid: 7126 - components: - - pos: -31.5,-23.5 - parent: 4812 - type: Transform - - uid: 7127 - components: - - pos: -30.5,-23.5 - parent: 4812 - type: Transform - - uid: 8246 - components: - - pos: -22.5,-17.5 - parent: 4812 - type: Transform - - uid: 8255 - components: - - pos: -19.5,22.5 - parent: 4812 - type: Transform - - uid: 8256 - components: - - pos: -20.5,22.5 - parent: 4812 - type: Transform - - uid: 8257 - components: - - pos: -21.5,22.5 - parent: 4812 - type: Transform - - uid: 8258 - components: - - pos: -21.5,23.5 - parent: 4812 - type: Transform - - uid: 8259 - components: - - pos: -21.5,24.5 - parent: 4812 - type: Transform - - uid: 8271 - components: - - pos: -17.5,14.5 - parent: 4812 - type: Transform - - uid: 8273 - components: - - pos: -18.5,15.5 - parent: 4812 - type: Transform - - uid: 8274 - components: - - pos: -18.5,14.5 - parent: 4812 - type: Transform - - uid: 8294 - components: - - pos: -19.5,17.5 - parent: 4812 - type: Transform - - uid: 8394 - components: - - pos: -25.5,30.5 - parent: 4812 - type: Transform - - uid: 9051 - components: - - pos: -31.5,-40.5 - parent: 4812 - type: Transform - - uid: 9052 - components: - - pos: -29.5,-35.5 - parent: 4812 - type: Transform - - uid: 9078 - components: - - pos: -30.5,-29.5 - parent: 4812 - type: Transform - - uid: 11803 - components: - - pos: -14.5,-0.5 - parent: 4812 - type: Transform - - uid: 12420 - components: - - pos: -25.5,-18.5 - parent: 4812 - type: Transform -- proto: TaikoInstrument - entities: - - uid: 4373 - components: - - pos: -27.5,32.5 - parent: 4812 - type: Transform -- proto: TargetHuman - entities: - - uid: 12422 - components: - - pos: -54.5,-16.5 - parent: 4812 - type: Transform -- proto: TelecomServer - entities: - - uid: 330 - components: - - pos: 14.5,-18.5 - parent: 4812 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 331 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 4991 - components: - - pos: 17.5,32.5 - parent: 4812 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 4992 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 6662 - components: - - pos: -49.5,-13.5 - parent: 4812 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 6663 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 7247 - components: - - pos: -50.5,-13.5 - parent: 4812 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 7248 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 7267 - components: - - pos: -1.5,26.5 - parent: 4812 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 7268 - - 7269 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 7290 - components: - - pos: -48.5,-13.5 - parent: 4812 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 7291 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- proto: TintedWindow - entities: - - uid: 4859 - components: - - pos: -18.5,-13.5 - parent: 4812 - type: Transform - - uid: 5015 - components: - - pos: -20.5,-13.5 - parent: 4812 - type: Transform - - uid: 6679 - components: - - pos: -17.5,-16.5 - parent: 4812 - type: Transform - - uid: 6693 - components: - - pos: -12.5,-35.5 - parent: 4812 - type: Transform - - uid: 6757 - components: - - pos: -25.5,-37.5 - parent: 4812 - type: Transform - - uid: 6758 - components: - - pos: -25.5,-35.5 - parent: 4812 - type: Transform - - uid: 7192 - components: - - pos: -13.5,-17.5 - parent: 4812 - type: Transform - - uid: 7193 - components: - - pos: -13.5,-15.5 - parent: 4812 - type: Transform -- proto: ToiletDirtyWater - entities: - - uid: 7027 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-32.5 - parent: 4812 - type: Transform -- proto: ToiletEmpty - entities: - - uid: 2488 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,29.5 - parent: 4812 - type: Transform - - uid: 2489 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,27.5 - parent: 4812 - type: Transform - - uid: 3452 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,34.5 - parent: 4812 - type: Transform - - uid: 4447 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,8.5 - parent: 4812 - type: Transform - - uid: 4448 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,7.5 - parent: 4812 - type: Transform - - uid: 8244 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,28.5 - parent: 4812 - type: Transform -- proto: TomatoSeeds - entities: - - uid: 11297 - components: - - pos: 16.522455,-38.60528 - parent: 4812 - type: Transform -- proto: TomDrumsInstrument - entities: - - uid: 12367 - components: - - pos: -9.5,3.5 - parent: 4812 - type: Transform -- proto: ToolboxElectricalFilled - entities: - - uid: 3846 - components: - - pos: 15.560463,47.548717 - parent: 4812 - type: Transform - - uid: 6235 - components: - - pos: 11.595695,-23.434612 - parent: 4812 - type: Transform - - uid: 8584 - components: - - pos: -16.515034,8.474278 - parent: 4812 - type: Transform -- proto: ToolboxEmergencyFilled - entities: - - uid: 3271 - components: - - pos: 22.451836,13.667355 - parent: 4812 - type: Transform - - uid: 3272 - components: - - pos: 22.62371,13.52673 - parent: 4812 - type: Transform - - uid: 4541 - components: - - pos: 21.46411,-6.3464417 - parent: 4812 - type: Transform - - uid: 8596 - components: - - pos: -18.547379,10.53499 - parent: 4812 - type: Transform - - uid: 11777 - components: - - pos: -34.527054,-18.337584 - parent: 4812 - type: Transform -- proto: ToolboxGoldFilled - entities: - - uid: 2711 - components: - - pos: -5.514771,25.816704 - parent: 4812 - type: Transform -- proto: ToolboxMechanicalFilled - entities: - - uid: 2676 - components: - - pos: -3.4889355,35.56198 - parent: 4812 - type: Transform - - uid: 3845 - components: - - pos: 15.388588,47.767467 - parent: 4812 - type: Transform - - uid: 6234 - components: - - pos: 11.42382,-23.262737 - parent: 4812 - type: Transform - - uid: 8595 - components: - - pos: -19.484879,9.65999 - parent: 4812 - type: Transform -- proto: TorsoHuman - entities: - - uid: 12423 - components: - - pos: -53.589386,-16.742252 - parent: 4812 - type: Transform -- proto: ToyAi - entities: - - uid: 3962 - components: - - pos: 10.469682,53.04013 - parent: 4812 - type: Transform -- proto: ToyIan - entities: - - uid: 2503 - components: - - pos: 5.719586,29.52392 - parent: 4812 - type: Transform -- proto: ToyMouse - entities: - - uid: 7170 - components: - - pos: -23.706095,-17.394772 - parent: 4812 - type: Transform -- proto: ToyRubberDuck - entities: - - uid: 2496 - components: - - pos: -15.456392,28.433739 - parent: 4812 - type: Transform -- proto: ToySpawner - entities: - - uid: 10932 - components: - - pos: -10.5,11.5 - parent: 4812 - type: Transform -- proto: TrashBag - entities: - - uid: 1493 - components: - - pos: -23.716429,-6.4211965 - parent: 4812 - type: Transform - - uid: 1494 - components: - - pos: -23.466429,-6.4368215 - parent: 4812 - type: Transform - - uid: 11941 - components: - - pos: -10.701956,16.566319 - parent: 4812 - type: Transform - - uid: 11942 - components: - - pos: -10.498831,16.566319 - parent: 4812 - type: Transform - - uid: 11943 - components: - - pos: -10.280081,16.566319 - parent: 4812 - type: Transform -- proto: TrashBananaPeel - entities: - - uid: 1707 - components: - - pos: -9.550176,1.455398 - parent: 4812 - type: Transform - - uid: 11240 - components: - - pos: 8.641412,-38.54009 - parent: 4812 - type: Transform -- proto: trayScanner - entities: - - uid: 4492 - components: - - pos: 20.567461,2.6407971 - parent: 4812 - type: Transform - - uid: 11959 - components: - - pos: -10.545721,17.660069 - parent: 4812 - type: Transform -- proto: TubaInstrument - entities: - - uid: 1719 - components: - - pos: -8.5,-1.5 - parent: 4812 - type: Transform -- proto: TwoWayLever - entities: - - uid: 3034 - components: - - pos: 19.5,23.5 - parent: 4812 - type: Transform - - linkedPorts: - 3013: - - Left: Forward - - Right: Reverse - - Middle: Off - 3014: - - Left: Forward - - Right: Reverse - - Middle: Off - 3033: - - Left: Forward - - Right: Reverse - - Middle: Off - 3028: - - Left: Forward - - Right: Reverse - - Middle: Off - 3029: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource - - uid: 3188 - components: - - pos: 18.5,27.5 - parent: 4812 - type: Transform - - nextSignalLeft: True - type: TwoWayLever - - linkedPorts: - 2863: - - Left: Forward - - Right: Reverse - - Middle: Off - 3043: - - Left: Forward - - Right: Reverse - - Middle: Off - 3046: - - Left: Forward - - Right: Reverse - - Middle: Off - 2765: - - Left: Forward - - Right: Reverse - - Middle: Off - 2771: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource - - uid: 11245 - components: - - pos: 8.5,-37.5 - parent: 4812 - type: Transform - - linkedPorts: - 11235: - - Left: Forward - - Right: Reverse - - Middle: Off - 11244: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource -- proto: UniformPrinter - entities: - - uid: 2513 - components: - - pos: 5.5,24.5 - parent: 4812 - type: Transform - - materialWhiteList: - - Cloth - - Durathread - type: MaterialStorage -- proto: UprightPianoInstrument - entities: - - uid: 10498 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-29.5 - parent: 4812 - type: Transform -- proto: Vaccinator - entities: - - uid: 9019 - components: - - pos: -38.5,-33.5 - parent: 4812 - type: Transform -- proto: VehicleKeyJanicart - entities: - - uid: 1482 - components: - - pos: -22.528929,-6.6977267 - parent: 4812 - type: Transform -- proto: VehicleKeySecway - entities: - - uid: 8349 - components: - - pos: -31.5,20.5 - parent: 4812 - type: Transform -- proto: VendingBarDrobe - entities: - - uid: 1647 - components: - - flags: SessionSpecific - type: MetaData - - pos: 5.5,6.5 - parent: 4812 - type: Transform -- proto: VendingMachineAtmosDrobe - entities: - - uid: 9572 - components: - - flags: SessionSpecific - type: MetaData - - pos: -28.5,2.5 - parent: 4812 - type: Transform -- proto: VendingMachineBooze - entities: - - uid: 12 - components: - - flags: SessionSpecific - type: MetaData - - pos: 4.5,6.5 - parent: 4812 - type: Transform - - uid: 2606 - components: - - flags: SessionSpecific - type: MetaData - - pos: -15.5,25.5 - parent: 4812 - type: Transform - - uid: 10494 - components: - - flags: SessionSpecific - type: MetaData - - pos: -38.5,-22.5 - parent: 4812 - type: Transform -- proto: VendingMachineCargoDrobe - entities: - - uid: 3230 - components: - - flags: SessionSpecific - type: MetaData - - pos: 14.5,19.5 - parent: 4812 - type: Transform -- proto: VendingMachineCart - entities: - - uid: 2510 - components: - - flags: SessionSpecific - type: MetaData - - pos: 10.5,26.5 - parent: 4812 - type: Transform -- proto: VendingMachineChang - entities: - - uid: 923 - components: - - flags: SessionSpecific - type: MetaData - - pos: 0.5,-6.5 - parent: 4812 - type: Transform - - uid: 4538 - components: - - flags: SessionSpecific - type: MetaData - - pos: 23.5,-6.5 - parent: 4812 - type: Transform - - uid: 6422 - components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,-32.5 - parent: 4812 - type: Transform -- proto: VendingMachineChapel - entities: - - uid: 7036 - components: - - flags: SessionSpecific - type: MetaData - - pos: -27.5,-35.5 - parent: 4812 - type: Transform -- proto: VendingMachineChefDrobe - entities: - - uid: 1539 - components: - - flags: SessionSpecific - type: MetaData - - pos: 7.5,-3.5 - parent: 4812 - type: Transform -- proto: VendingMachineChefvend - entities: - - uid: 1124 - components: - - flags: SessionSpecific - type: MetaData - - pos: 3.5,-3.5 - parent: 4812 - type: Transform -- proto: VendingMachineChemDrobe - entities: - - uid: 6608 - components: - - flags: SessionSpecific - type: MetaData - - pos: -12.5,-15.5 - parent: 4812 - type: Transform -- proto: VendingMachineChemicals - entities: - - uid: 741 - components: - - flags: SessionSpecific - type: MetaData - - pos: -10.5,-14.5 - parent: 4812 - type: Transform -- proto: VendingMachineCigs - entities: - - uid: 917 - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -6.5,9.5 - parent: 4812 - type: Transform - - uid: 2672 - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: 0.5,28.5 - parent: 4812 - type: Transform - - uid: 4536 - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: 21.5,-4.5 - parent: 4812 - type: Transform - - uid: 5372 - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: 18.5,-18.5 - parent: 4812 - type: Transform - - uid: 8268 - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -23.5,25.5 - parent: 4812 - type: Transform - - uid: 9077 - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -30.5,-28.5 - parent: 4812 - type: Transform - - uid: 10873 - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -27.5,7.5 - parent: 4812 - type: Transform -- proto: VendingMachineClothing - entities: - - uid: 10850 - components: - - flags: SessionSpecific - type: MetaData - - pos: -23.5,-1.5 - parent: 4812 - type: Transform -- proto: VendingMachineCoffee - entities: - - uid: 918 - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: 0.5,10.5 - parent: 4812 - type: Transform - - uid: 1797 - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: -5.5,16.5 - parent: 4812 - type: Transform - - uid: 2671 - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: -5.5,28.5 - parent: 4812 - type: Transform - - uid: 4537 - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: 23.5,-5.5 - parent: 4812 - type: Transform - - uid: 6356 - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: 9.5,-28.5 - parent: 4812 - type: Transform - - uid: 10741 - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: -45.5,-5.5 - parent: 4812 - type: Transform - - uid: 12150 - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: -27.5,-12.5 - parent: 4812 - type: Transform -- proto: VendingMachineCola - entities: - - uid: 4533 - components: - - flags: SessionSpecific - type: MetaData - - pos: 13.5,2.5 - parent: 4812 - type: Transform - - uid: 5061 - components: - - flags: SessionSpecific - type: MetaData - - pos: -9.5,-46.5 - parent: 4812 - type: Transform -- proto: VendingMachineCondiments - entities: - - uid: 9584 - components: - - flags: SessionSpecific - type: MetaData - - pos: 0.5,-3.5 - parent: 4812 - type: Transform -- proto: VendingMachineDetDrobe - entities: - - uid: 5361 - components: - - flags: SessionSpecific - type: MetaData - - pos: 20.5,-14.5 - parent: 4812 - type: Transform -- proto: VendingMachineDinnerware - entities: - - uid: 1552 - components: - - flags: SessionSpecific - name: Dinnerware - type: MetaData - - pos: 2.5,-3.5 - parent: 4812 - type: Transform -- proto: VendingMachineDiscount - entities: - - uid: 919 - components: - - flags: SessionSpecific - type: MetaData - - pos: 0.5,11.5 - parent: 4812 - type: Transform -- proto: VendingMachineEngiDrobe - entities: - - uid: 12516 - components: - - flags: SessionSpecific - type: MetaData - - pos: -38.5,-7.5 - parent: 4812 - type: Transform -- proto: VendingMachineEngivend - entities: - - uid: 9722 - components: - - flags: SessionSpecific - type: MetaData - - pos: -31.5,-5.5 - parent: 4812 - type: Transform -- proto: VendingMachineGames - entities: - - uid: 7070 - components: - - flags: SessionSpecific - type: MetaData - - pos: -30.5,-14.5 - parent: 4812 - type: Transform -- proto: VendingMachineGeneDrobe - entities: - - uid: 2607 - components: - - flags: SessionSpecific - type: MetaData - - pos: -14.5,-18.5 - parent: 4812 - type: Transform -- proto: VendingMachineHappyHonk - entities: - - uid: 1565 - components: - - flags: SessionSpecific - type: MetaData - - pos: 6.5,-3.5 - parent: 4812 - type: Transform -- proto: VendingMachineHydrobe - entities: - - uid: 1094 - components: - - flags: SessionSpecific - type: MetaData - - pos: -18.5,-7.5 - parent: 4812 - type: Transform -- proto: VendingMachineJaniDrobe - entities: - - uid: 1480 - components: - - flags: SessionSpecific - type: MetaData - - pos: -20.5,-9.5 - parent: 4812 - type: Transform -- proto: VendingMachineLawDrobe - entities: - - uid: 8275 - components: - - flags: SessionSpecific - type: MetaData - - pos: -16.5,17.5 - parent: 4812 - type: Transform -- proto: VendingMachineMedical - entities: - - uid: 7188 - components: - - flags: SessionSpecific - type: MetaData - - pos: -8.5,-28.5 - parent: 4812 - type: Transform -- proto: VendingMachineMediDrobe - entities: - - uid: 7399 - components: - - flags: SessionSpecific - type: MetaData - - pos: -8.5,-25.5 - parent: 4812 - type: Transform -- proto: VendingMachineNutri - entities: - - uid: 1092 - components: - - flags: SessionSpecific - type: MetaData - - pos: -7.5,-5.5 - parent: 4812 - type: Transform - - uid: 11785 - components: - - flags: SessionSpecific - type: MetaData - - pos: 25.5,-32.5 - parent: 4812 - type: Transform -- proto: VendingMachineRoboDrobe - entities: - - uid: 6223 - components: - - flags: SessionSpecific - type: MetaData - - pos: 11.5,-26.5 - parent: 4812 - type: Transform -- proto: VendingMachineRobotics - entities: - - uid: 737 - components: - - flags: SessionSpecific - type: MetaData - - pos: 4.5,-23.5 - parent: 4812 - type: Transform -- proto: VendingMachineSalvage - entities: - - uid: 3434 - components: - - flags: SessionSpecific - name: Salvage Equipment - type: MetaData - - pos: 23.5,16.5 - parent: 4812 - type: Transform -- proto: VendingMachineSciDrobe - entities: - - uid: 5513 - components: - - flags: SessionSpecific - type: MetaData - - pos: 25.5,-26.5 - parent: 4812 - type: Transform -- proto: VendingMachineSec - entities: - - uid: 8342 - components: - - flags: SessionSpecific - type: MetaData - - pos: -31.5,13.5 - parent: 4812 - type: Transform - - uid: 8420 - components: - - flags: SessionSpecific - type: MetaData - - pos: -36.5,12.5 - parent: 4812 - type: Transform -- proto: VendingMachineSecDrobe - entities: - - uid: 6439 - components: - - flags: SessionSpecific - type: MetaData - - pos: -3.5,-29.5 - parent: 4812 - type: Transform - - uid: 12506 - components: - - flags: SessionSpecific - type: MetaData - - pos: -34.5,10.5 - parent: 4812 - type: Transform -- proto: VendingMachineSeeds - entities: - - uid: 1091 - components: - - flags: SessionSpecific - type: MetaData - - pos: -8.5,-5.5 - parent: 4812 - type: Transform -- proto: VendingMachineSeedsUnlocked - entities: - - uid: 6240 - components: - - flags: SessionSpecific - type: MetaData - - pos: -29.5,32.5 - parent: 4812 - type: Transform -- proto: VendingMachineSmartFridge - entities: - - uid: 933 - components: - - flags: SessionSpecific - type: MetaData - - pos: -6.5,-7.5 - parent: 4812 - type: Transform - - uid: 7186 - components: - - flags: SessionSpecific - type: MetaData - - pos: -18.5,-26.5 - parent: 4812 - type: Transform - - uid: 9020 - components: - - flags: SessionSpecific - type: MetaData - - pos: -40.5,-33.5 - parent: 4812 - type: Transform - - uid: 11100 - components: - - flags: SessionSpecific - type: MetaData - - pos: 10.5,-43.5 - parent: 4812 - type: Transform -- proto: VendingMachineSnack - entities: - - uid: 920 - components: - - flags: SessionSpecific - type: MetaData - - pos: 0.5,-7.5 - parent: 4812 - type: Transform - - uid: 4530 - components: - - flags: SessionSpecific - type: MetaData - - pos: 13.5,1.5 - parent: 4812 - type: Transform - - uid: 5060 - components: - - flags: SessionSpecific - type: MetaData - - pos: -9.5,-45.5 - parent: 4812 - type: Transform -- proto: VendingMachineSovietSoda - entities: - - uid: 11780 - components: - - flags: SessionSpecific - type: MetaData - - pos: 29.5,-32.5 - parent: 4812 - type: Transform -- proto: VendingMachineSustenance - entities: - - uid: 6165 - components: - - flags: SessionSpecific - type: MetaData - - pos: -28.5,32.5 - parent: 4812 - type: Transform -- proto: VendingMachineTankDispenserEngineering - entities: - - uid: 739 - components: - - flags: SessionSpecific - name: tank dispenser - type: MetaData - - pos: 7.5,15.5 - parent: 4812 - type: Transform - - uid: 9577 - components: - - flags: SessionSpecific - name: tank dispenser - type: MetaData - - pos: -31.5,1.5 - parent: 4812 - type: Transform -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 732 - components: - - flags: SessionSpecific - type: MetaData - - pos: 9.5,14.5 - parent: 4812 - type: Transform - - uid: 6312 - components: - - flags: SessionSpecific - name: tank dispenser - type: MetaData - - pos: 26.5,-26.5 - parent: 4812 - type: Transform - - uid: 10708 - components: - - flags: SessionSpecific - name: tank dispenser - type: MetaData - - pos: -35.5,-9.5 - parent: 4812 - type: Transform - - uid: 12113 - components: - - flags: SessionSpecific - name: tank dispenser - type: MetaData - - pos: -42.5,-3.5 - parent: 4812 - type: Transform -- proto: VendingMachineTheater - entities: - - uid: 1692 - components: - - flags: SessionSpecific - type: MetaData - - pos: -7.5,1.5 - parent: 4812 - type: Transform - - uid: 9045 - components: - - flags: SessionSpecific - type: MetaData - - pos: -26.5,-39.5 - parent: 4812 - type: Transform -- proto: VendingMachineVendomat - entities: - - uid: 8578 - components: - - flags: SessionSpecific - type: MetaData - - pos: -18.5,7.5 - parent: 4812 - type: Transform -- proto: VendingMachineViroDrobe - entities: - - uid: 8871 - components: - - flags: SessionSpecific - type: MetaData - - pos: -37.5,-33.5 - parent: 4812 - type: Transform -- proto: VendingMachineYouTool - entities: - - uid: 8577 - components: - - flags: SessionSpecific - type: MetaData - - pos: -19.5,7.5 - parent: 4812 - type: Transform - - uid: 9723 - components: - - flags: SessionSpecific - type: MetaData - - pos: -32.5,-5.5 - parent: 4812 - type: Transform -- proto: ViolinInstrument - entities: - - uid: 1756 - components: - - pos: -10.433632,4.545351 - parent: 4812 - type: Transform -- proto: WallmountGeneratorAPUElectronics - entities: - - uid: 10960 - components: - - pos: -37.468086,26.400969 - parent: 4812 - type: Transform -- proto: WallmountSubstationElectronics - entities: - - uid: 10978 - components: - - pos: -37.343086,26.182219 - parent: 4812 - type: Transform -- proto: WallmountTelescreen - entities: - - uid: 3422 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,24.5 - parent: 4812 - type: Transform - - uid: 3775 - components: - - rot: 3.141592653589793 rad - pos: 19.5,-16.5 - parent: 4812 - type: Transform -- proto: WallReinforced - entities: - - uid: 32 - components: - - pos: -6.5,15.5 - parent: 4812 - type: Transform - - uid: 35 - components: - - pos: 1.5,15.5 - parent: 4812 - type: Transform - - uid: 122 - components: - - pos: -9.5,18.5 - parent: 4812 - type: Transform - - uid: 123 - components: - - pos: -6.5,18.5 - parent: 4812 - type: Transform - - uid: 124 - components: - - pos: -9.5,15.5 - parent: 4812 - type: Transform - - uid: 125 - components: - - pos: 1.5,18.5 - parent: 4812 - type: Transform - - uid: 126 - components: - - pos: 4.5,18.5 - parent: 4812 - type: Transform - - uid: 127 - components: - - pos: 4.5,15.5 - parent: 4812 - type: Transform - - uid: 138 - components: - - pos: 10.5,18.5 - parent: 4812 - type: Transform - - uid: 160 - components: - - pos: -10.5,18.5 - parent: 4812 - type: Transform - - uid: 170 - components: - - pos: 10.5,17.5 - parent: 4812 - type: Transform - - uid: 171 - components: - - pos: 10.5,16.5 - parent: 4812 - type: Transform - - uid: 172 - components: - - pos: 10.5,15.5 - parent: 4812 - type: Transform - - uid: 173 - components: - - pos: 10.5,14.5 - parent: 4812 - type: Transform - - uid: 174 - components: - - pos: 10.5,13.5 - parent: 4812 - type: Transform - - uid: 176 - components: - - pos: -15.5,18.5 - parent: 4812 - type: Transform - - uid: 297 - components: - - pos: -15.5,17.5 - parent: 4812 - type: Transform - - uid: 298 - components: - - pos: -15.5,16.5 - parent: 4812 - type: Transform - - uid: 299 - components: - - pos: -15.5,15.5 - parent: 4812 - type: Transform - - uid: 300 - components: - - pos: -15.5,14.5 - parent: 4812 - type: Transform - - uid: 301 - components: - - pos: -9.5,14.5 - parent: 4812 - type: Transform - - uid: 302 - components: - - pos: -10.5,14.5 - parent: 4812 - type: Transform - - uid: 303 - components: - - pos: -11.5,14.5 - parent: 4812 - type: Transform - - uid: 304 - components: - - pos: -12.5,14.5 - parent: 4812 - type: Transform - - uid: 305 - components: - - pos: -13.5,14.5 - parent: 4812 - type: Transform - - uid: 306 - components: - - pos: -14.5,14.5 - parent: 4812 - type: Transform - - uid: 721 - components: - - pos: 4.5,14.5 - parent: 4812 - type: Transform - - uid: 722 - components: - - pos: 4.5,13.5 - parent: 4812 - type: Transform - - uid: 724 - components: - - pos: 9.5,13.5 - parent: 4812 - type: Transform - - uid: 725 - components: - - pos: 5.5,13.5 - parent: 4812 - type: Transform - - uid: 726 - components: - - pos: 8.5,13.5 - parent: 4812 - type: Transform - - uid: 727 - components: - - pos: 7.5,13.5 - parent: 4812 - type: Transform - - uid: 728 - components: - - pos: 6.5,13.5 - parent: 4812 - type: Transform - - uid: 772 - components: - - pos: -12.5,18.5 - parent: 4812 - type: Transform - - uid: 773 - components: - - pos: -14.5,18.5 - parent: 4812 - type: Transform - - uid: 1819 - components: - - pos: -3.5,21.5 - parent: 4812 - type: Transform - - uid: 1820 - components: - - pos: -4.5,21.5 - parent: 4812 - type: Transform - - uid: 1821 - components: - - pos: -5.5,21.5 - parent: 4812 - type: Transform - - uid: 1822 - components: - - pos: -6.5,21.5 - parent: 4812 - type: Transform - - uid: 1823 - components: - - pos: -6.5,22.5 - parent: 4812 - type: Transform - - uid: 1824 - components: - - pos: -6.5,23.5 - parent: 4812 - type: Transform - - uid: 1825 - components: - - pos: -6.5,24.5 - parent: 4812 - type: Transform - - uid: 1826 - components: - - pos: -6.5,25.5 - parent: 4812 - type: Transform - - uid: 1827 - components: - - pos: -6.5,26.5 - parent: 4812 - type: Transform - - uid: 1828 - components: - - pos: -6.5,27.5 - parent: 4812 - type: Transform - - uid: 1829 - components: - - pos: -1.5,21.5 - parent: 4812 - type: Transform - - uid: 1830 - components: - - pos: -0.5,21.5 - parent: 4812 - type: Transform - - uid: 1831 - components: - - pos: 0.5,21.5 - parent: 4812 - type: Transform - - uid: 1832 - components: - - pos: 1.5,21.5 - parent: 4812 - type: Transform - - uid: 1833 - components: - - pos: 1.5,22.5 - parent: 4812 - type: Transform - - uid: 1834 - components: - - pos: 1.5,23.5 - parent: 4812 - type: Transform - - uid: 1836 - components: - - pos: 1.5,25.5 - parent: 4812 - type: Transform - - uid: 1837 - components: - - pos: 1.5,26.5 - parent: 4812 - type: Transform - - uid: 1838 - components: - - pos: 1.5,27.5 - parent: 4812 - type: Transform - - uid: 1839 - components: - - pos: 0.5,27.5 - parent: 4812 - type: Transform - - uid: 1840 - components: - - pos: -1.5,27.5 - parent: 4812 - type: Transform - - uid: 1841 - components: - - pos: -3.5,27.5 - parent: 4812 - type: Transform - - uid: 1842 - components: - - pos: -5.5,27.5 - parent: 4812 - type: Transform - - uid: 1857 - components: - - pos: -6.5,31.5 - parent: 4812 - type: Transform - - uid: 1859 - components: - - pos: 1.5,31.5 - parent: 4812 - type: Transform - - uid: 1861 - components: - - pos: -9.5,31.5 - parent: 4812 - type: Transform - - uid: 1862 - components: - - pos: 4.5,31.5 - parent: 4812 - type: Transform - - uid: 1863 - components: - - pos: 4.5,33.5 - parent: 4812 - type: Transform - - uid: 1864 - components: - - pos: -9.5,33.5 - parent: 4812 - type: Transform - - uid: 1865 - components: - - pos: -7.5,35.5 - parent: 4812 - type: Transform - - uid: 1866 - components: - - pos: 2.5,35.5 - parent: 4812 - type: Transform - - uid: 1867 - components: - - pos: -4.5,36.5 - parent: 4812 - type: Transform - - uid: 1868 - components: - - pos: -0.5,36.5 - parent: 4812 - type: Transform - - uid: 1885 - components: - - pos: 5.5,33.5 - parent: 4812 - type: Transform - - uid: 1886 - components: - - pos: 7.5,33.5 - parent: 4812 - type: Transform - - uid: 1887 - components: - - pos: 7.5,32.5 - parent: 4812 - type: Transform - - uid: 1888 - components: - - pos: 7.5,31.5 - parent: 4812 - type: Transform - - uid: 1889 - components: - - pos: 7.5,30.5 - parent: 4812 - type: Transform - - uid: 1890 - components: - - pos: 6.5,30.5 - parent: 4812 - type: Transform - - uid: 1891 - components: - - pos: 5.5,30.5 - parent: 4812 - type: Transform - - uid: 1892 - components: - - pos: 4.5,30.5 - parent: 4812 - type: Transform - - uid: 1893 - components: - - pos: 4.5,21.5 - parent: 4812 - type: Transform - - uid: 1894 - components: - - pos: 4.5,22.5 - parent: 4812 - type: Transform - - uid: 1895 - components: - - pos: 4.5,23.5 - parent: 4812 - type: Transform - - uid: 1896 - components: - - pos: 11.5,21.5 - parent: 4812 - type: Transform - - uid: 1899 - components: - - pos: 4.5,27.5 - parent: 4812 - type: Transform - - uid: 1900 - components: - - pos: 4.5,28.5 - parent: 4812 - type: Transform - - uid: 1901 - components: - - pos: 4.5,29.5 - parent: 4812 - type: Transform - - uid: 1903 - components: - - pos: 11.5,22.5 - parent: 4812 - type: Transform - - uid: 1904 - components: - - pos: 11.5,23.5 - parent: 4812 - type: Transform - - uid: 1905 - components: - - pos: 11.5,24.5 - parent: 4812 - type: Transform - - uid: 1906 - components: - - pos: 11.5,25.5 - parent: 4812 - type: Transform - - uid: 1907 - components: - - pos: 11.5,26.5 - parent: 4812 - type: Transform - - uid: 1908 - components: - - pos: 11.5,27.5 - parent: 4812 - type: Transform - - uid: 1909 - components: - - pos: 11.5,28.5 - parent: 4812 - type: Transform - - uid: 1910 - components: - - pos: 11.5,29.5 - parent: 4812 - type: Transform - - uid: 1911 - components: - - pos: 11.5,30.5 - parent: 4812 - type: Transform - - uid: 1912 - components: - - pos: 11.5,31.5 - parent: 4812 - type: Transform - - uid: 1913 - components: - - pos: 10.5,31.5 - parent: 4812 - type: Transform - - uid: 1914 - components: - - pos: 9.5,31.5 - parent: 4812 - type: Transform - - uid: 1915 - components: - - pos: 9.5,30.5 - parent: 4812 - type: Transform - - uid: 1916 - components: - - pos: 8.5,30.5 - parent: 4812 - type: Transform - - uid: 1920 - components: - - pos: 5.5,23.5 - parent: 4812 - type: Transform - - uid: 1921 - components: - - pos: 10.5,23.5 - parent: 4812 - type: Transform - - uid: 1922 - components: - - pos: 7.5,23.5 - parent: 4812 - type: Transform - - uid: 1923 - components: - - pos: 10.5,21.5 - parent: 4812 - type: Transform - - uid: 1946 - components: - - pos: -9.5,25.5 - parent: 4812 - type: Transform - - uid: 1947 - components: - - pos: -9.5,26.5 - parent: 4812 - type: Transform - - uid: 1948 - components: - - pos: -9.5,21.5 - parent: 4812 - type: Transform - - uid: 1949 - components: - - pos: -10.5,21.5 - parent: 4812 - type: Transform - - uid: 1950 - components: - - pos: -11.5,21.5 - parent: 4812 - type: Transform - - uid: 1951 - components: - - pos: -12.5,21.5 - parent: 4812 - type: Transform - - uid: 1954 - components: - - pos: -15.5,21.5 - parent: 4812 - type: Transform - - uid: 1955 - components: - - pos: -16.5,21.5 - parent: 4812 - type: Transform - - uid: 1956 - components: - - pos: -9.5,30.5 - parent: 4812 - type: Transform - - uid: 1957 - components: - - pos: -10.5,30.5 - parent: 4812 - type: Transform - - uid: 1958 - components: - - pos: -13.5,30.5 - parent: 4812 - type: Transform - - uid: 1959 - components: - - pos: -14.5,30.5 - parent: 4812 - type: Transform - - uid: 1960 - components: - - pos: -15.5,30.5 - parent: 4812 - type: Transform - - uid: 1961 - components: - - pos: -16.5,30.5 - parent: 4812 - type: Transform - - uid: 1967 - components: - - pos: -9.5,27.5 - parent: 4812 - type: Transform - - uid: 1968 - components: - - pos: -9.5,28.5 - parent: 4812 - type: Transform - - uid: 1969 - components: - - pos: -9.5,29.5 - parent: 4812 - type: Transform - - uid: 1970 - components: - - pos: -16.5,29.5 - parent: 4812 - type: Transform - - uid: 1971 - components: - - pos: -16.5,28.5 - parent: 4812 - type: Transform - - uid: 1972 - components: - - pos: -16.5,27.5 - parent: 4812 - type: Transform - - uid: 1973 - components: - - pos: -16.5,26.5 - parent: 4812 - type: Transform - - uid: 1974 - components: - - pos: -16.5,25.5 - parent: 4812 - type: Transform - - uid: 1976 - components: - - pos: -16.5,23.5 - parent: 4812 - type: Transform - - uid: 1977 - components: - - pos: -16.5,22.5 - parent: 4812 - type: Transform - - uid: 2075 - components: - - pos: 1.5,24.5 - parent: 4812 - type: Transform - - uid: 2609 - components: - - pos: -13.5,21.5 - parent: 4812 - type: Transform - - uid: 2612 - components: - - pos: -14.5,21.5 - parent: 4812 - type: Transform - - uid: 2746 - components: - - pos: 17.5,36.5 - parent: 4812 - type: Transform - - uid: 2747 - components: - - pos: 14.5,28.5 - parent: 4812 - type: Transform - - uid: 2748 - components: - - pos: 14.5,29.5 - parent: 4812 - type: Transform - - uid: 2749 - components: - - pos: 14.5,30.5 - parent: 4812 - type: Transform - - uid: 2750 - components: - - pos: 14.5,31.5 - parent: 4812 - type: Transform - - uid: 2753 - components: - - pos: 13.5,33.5 - parent: 4812 - type: Transform - - uid: 2755 - components: - - pos: 21.5,23.5 - parent: 4812 - type: Transform - - uid: 2756 - components: - - pos: 15.5,36.5 - parent: 4812 - type: Transform - - uid: 2757 - components: - - pos: 11.5,32.5 - parent: 4812 - type: Transform - - uid: 2758 - components: - - pos: 11.5,33.5 - parent: 4812 - type: Transform - - uid: 2766 - components: - - pos: 14.5,32.5 - parent: 4812 - type: Transform - - uid: 2767 - components: - - pos: 14.5,35.5 - parent: 4812 - type: Transform - - uid: 2769 - components: - - pos: 18.5,32.5 - parent: 4812 - type: Transform - - uid: 2774 - components: - - pos: 21.5,29.5 - parent: 4812 - type: Transform - - uid: 2778 - components: - - pos: 20.5,34.5 - parent: 4812 - type: Transform - - uid: 2820 - components: - - pos: 20.5,33.5 - parent: 4812 - type: Transform - - uid: 2822 - components: - - pos: 20.5,22.5 - parent: 4812 - type: Transform - - uid: 2824 - components: - - pos: 18.5,28.5 - parent: 4812 - type: Transform - - uid: 2825 - components: - - pos: 18.5,29.5 - parent: 4812 - type: Transform - - uid: 2828 - components: - - pos: 17.5,28.5 - parent: 4812 - type: Transform - - uid: 2829 - components: - - pos: 21.5,20.5 - parent: 4812 - type: Transform - - uid: 2830 - components: - - pos: 21.5,18.5 - parent: 4812 - type: Transform - - uid: 2831 - components: - - pos: 21.5,17.5 - parent: 4812 - type: Transform - - uid: 2841 - components: - - pos: 20.5,35.5 - parent: 4812 - type: Transform - - uid: 2896 - components: - - pos: 25.5,12.5 - parent: 4812 - type: Transform - - uid: 2897 - components: - - pos: 25.5,11.5 - parent: 4812 - type: Transform - - uid: 2898 - components: - - pos: 24.5,11.5 - parent: 4812 - type: Transform - - uid: 2899 - components: - - pos: 23.5,11.5 - parent: 4812 - type: Transform - - uid: 2900 - components: - - pos: 22.5,11.5 - parent: 4812 - type: Transform - - uid: 2901 - components: - - pos: 21.5,11.5 - parent: 4812 - type: Transform - - uid: 2903 - components: - - pos: 25.5,16.5 - parent: 4812 - type: Transform - - uid: 2904 - components: - - pos: 25.5,17.5 - parent: 4812 - type: Transform - - uid: 2905 - components: - - pos: 24.5,17.5 - parent: 4812 - type: Transform - - uid: 2906 - components: - - pos: 22.5,17.5 - parent: 4812 - type: Transform - - uid: 2942 - components: - - pos: 23.5,29.5 - parent: 4812 - type: Transform - - uid: 3006 - components: - - pos: 21.5,22.5 - parent: 4812 - type: Transform - - uid: 3042 - components: - - pos: 23.5,23.5 - parent: 4812 - type: Transform - - uid: 3118 - components: - - pos: 14.5,34.5 - parent: 4812 - type: Transform - - uid: 3150 - components: - - pos: 14.5,33.5 - parent: 4812 - type: Transform - - uid: 3189 - components: - - pos: 14.5,36.5 - parent: 4812 - type: Transform - - uid: 3193 - components: - - pos: 19.5,33.5 - parent: 4812 - type: Transform - - uid: 3212 - components: - - pos: 20.5,9.5 - parent: 4812 - type: Transform - - uid: 3288 - components: - - pos: 21.5,6.5 - parent: 4812 - type: Transform - - uid: 3352 - components: - - pos: 21.5,9.5 - parent: 4812 - type: Transform - - uid: 3355 - components: - - pos: 22.5,9.5 - parent: 4812 - type: Transform - - uid: 3356 - components: - - pos: 23.5,9.5 - parent: 4812 - type: Transform - - uid: 3357 - components: - - pos: 24.5,9.5 - parent: 4812 - type: Transform - - uid: 3391 - components: - - pos: 23.5,6.5 - parent: 4812 - type: Transform - - uid: 3428 - components: - - pos: 20.5,37.5 - parent: 4812 - type: Transform - - uid: 3429 - components: - - pos: 19.5,37.5 - parent: 4812 - type: Transform - - uid: 3430 - components: - - pos: 18.5,36.5 - parent: 4812 - type: Transform - - uid: 3431 - components: - - pos: 20.5,36.5 - parent: 4812 - type: Transform - - uid: 3432 - components: - - pos: 18.5,37.5 - parent: 4812 - type: Transform - - uid: 3436 - components: - - pos: 18.5,33.5 - parent: 4812 - type: Transform - - uid: 3437 - components: - - pos: 13.5,31.5 - parent: 4812 - type: Transform - - uid: 3486 - components: - - pos: 16.5,43.5 - parent: 4812 - type: Transform - - uid: 3487 - components: - - pos: 16.5,44.5 - parent: 4812 - type: Transform - - uid: 3488 - components: - - pos: 16.5,45.5 - parent: 4812 - type: Transform - - uid: 3489 - components: - - pos: 16.5,46.5 - parent: 4812 - type: Transform - - uid: 3490 - components: - - pos: 16.5,47.5 - parent: 4812 - type: Transform - - uid: 3491 - components: - - pos: 16.5,48.5 - parent: 4812 - type: Transform - - uid: 3492 - components: - - pos: 15.5,43.5 - parent: 4812 - type: Transform - - uid: 3493 - components: - - pos: 14.5,43.5 - parent: 4812 - type: Transform - - uid: 3494 - components: - - pos: 13.5,43.5 - parent: 4812 - type: Transform - - uid: 3495 - components: - - pos: 12.5,43.5 - parent: 4812 - type: Transform - - uid: 3496 - components: - - pos: 12.5,42.5 - parent: 4812 - type: Transform - - uid: 3497 - components: - - pos: 11.5,42.5 - parent: 4812 - type: Transform - - uid: 3498 - components: - - pos: 10.5,42.5 - parent: 4812 - type: Transform - - uid: 3499 - components: - - pos: 9.5,42.5 - parent: 4812 - type: Transform - - uid: 3500 - components: - - pos: 8.5,42.5 - parent: 4812 - type: Transform - - uid: 3501 - components: - - pos: 8.5,43.5 - parent: 4812 - type: Transform - - uid: 3502 - components: - - pos: 7.5,43.5 - parent: 4812 - type: Transform - - uid: 3504 - components: - - pos: 5.5,43.5 - parent: 4812 - type: Transform - - uid: 3505 - components: - - pos: 4.5,43.5 - parent: 4812 - type: Transform - - uid: 3506 - components: - - pos: 4.5,44.5 - parent: 4812 - type: Transform - - uid: 3507 - components: - - pos: 4.5,46.5 - parent: 4812 - type: Transform - - uid: 3508 - components: - - pos: 2.5,44.5 - parent: 4812 - type: Transform - - uid: 3509 - components: - - pos: 2.5,45.5 - parent: 4812 - type: Transform - - uid: 3510 - components: - - pos: 2.5,46.5 - parent: 4812 - type: Transform - - uid: 3511 - components: - - pos: 2.5,47.5 - parent: 4812 - type: Transform - - uid: 3512 - components: - - pos: 3.5,47.5 - parent: 4812 - type: Transform - - uid: 3513 - components: - - pos: 4.5,47.5 - parent: 4812 - type: Transform - - uid: 3514 - components: - - pos: 4.5,48.5 - parent: 4812 - type: Transform - - uid: 3515 - components: - - pos: 5.5,48.5 - parent: 4812 - type: Transform - - uid: 3516 - components: - - pos: 5.5,49.5 - parent: 4812 - type: Transform - - uid: 3517 - components: - - pos: 5.5,50.5 - parent: 4812 - type: Transform - - uid: 3518 - components: - - pos: 5.5,51.5 - parent: 4812 - type: Transform - - uid: 3519 - components: - - pos: 5.5,52.5 - parent: 4812 - type: Transform - - uid: 3520 - components: - - pos: 5.5,53.5 - parent: 4812 - type: Transform - - uid: 3521 - components: - - pos: 5.5,54.5 - parent: 4812 - type: Transform - - uid: 3522 - components: - - pos: 5.5,55.5 - parent: 4812 - type: Transform - - uid: 3523 - components: - - pos: 6.5,55.5 - parent: 4812 - type: Transform - - uid: 3524 - components: - - pos: 6.5,56.5 - parent: 4812 - type: Transform - - uid: 3525 - components: - - pos: 7.5,56.5 - parent: 4812 - type: Transform - - uid: 3526 - components: - - pos: 7.5,57.5 - parent: 4812 - type: Transform - - uid: 3527 - components: - - pos: 8.5,57.5 - parent: 4812 - type: Transform - - uid: 3528 - components: - - pos: 8.5,58.5 - parent: 4812 - type: Transform - - uid: 3529 - components: - - pos: 9.5,58.5 - parent: 4812 - type: Transform - - uid: 3530 - components: - - pos: 10.5,58.5 - parent: 4812 - type: Transform - - uid: 3531 - components: - - pos: 11.5,58.5 - parent: 4812 - type: Transform - - uid: 3532 - components: - - pos: 12.5,58.5 - parent: 4812 - type: Transform - - uid: 3533 - components: - - pos: 12.5,57.5 - parent: 4812 - type: Transform - - uid: 3534 - components: - - pos: 13.5,57.5 - parent: 4812 - type: Transform - - uid: 3535 - components: - - pos: 13.5,56.5 - parent: 4812 - type: Transform - - uid: 3536 - components: - - pos: 14.5,56.5 - parent: 4812 - type: Transform - - uid: 3537 - components: - - pos: 15.5,55.5 - parent: 4812 - type: Transform - - uid: 3538 - components: - - pos: 15.5,55.5 - parent: 4812 - type: Transform - - uid: 3539 - components: - - pos: 14.5,55.5 - parent: 4812 - type: Transform - - uid: 3540 - components: - - pos: 15.5,54.5 - parent: 4812 - type: Transform - - uid: 3541 - components: - - pos: 15.5,53.5 - parent: 4812 - type: Transform - - uid: 3542 - components: - - pos: 15.5,52.5 - parent: 4812 - type: Transform - - uid: 3543 - components: - - pos: 15.5,51.5 - parent: 4812 - type: Transform - - uid: 3544 - components: - - pos: 15.5,50.5 - parent: 4812 - type: Transform - - uid: 3545 - components: - - pos: 15.5,49.5 - parent: 4812 - type: Transform - - uid: 3546 - components: - - pos: 15.5,48.5 - parent: 4812 - type: Transform - - uid: 3547 - components: - - pos: 9.5,57.5 - parent: 4812 - type: Transform - - uid: 3548 - components: - - pos: 10.5,57.5 - parent: 4812 - type: Transform - - uid: 3549 - components: - - pos: 11.5,57.5 - parent: 4812 - type: Transform - - uid: 3550 - components: - - pos: 8.5,56.5 - parent: 4812 - type: Transform - - uid: 3551 - components: - - pos: 12.5,56.5 - parent: 4812 - type: Transform - - uid: 3552 - components: - - pos: 14.5,48.5 - parent: 4812 - type: Transform - - uid: 3553 - components: - - pos: 13.5,48.5 - parent: 4812 - type: Transform - - uid: 3554 - components: - - pos: 6.5,48.5 - parent: 4812 - type: Transform - - uid: 3555 - components: - - pos: 7.5,48.5 - parent: 4812 - type: Transform - - uid: 3556 - components: - - pos: 8.5,48.5 - parent: 4812 - type: Transform - - uid: 3557 - components: - - pos: 12.5,48.5 - parent: 4812 - type: Transform - - uid: 3558 - components: - - pos: 8.5,47.5 - parent: 4812 - type: Transform - - uid: 3559 - components: - - pos: 9.5,47.5 - parent: 4812 - type: Transform - - uid: 3560 - components: - - pos: 8.5,44.5 - parent: 4812 - type: Transform - - uid: 3561 - components: - - pos: 8.5,46.5 - parent: 4812 - type: Transform - - uid: 3562 - components: - - pos: 12.5,47.5 - parent: 4812 - type: Transform - - uid: 3563 - components: - - pos: 12.5,46.5 - parent: 4812 - type: Transform - - uid: 3564 - components: - - pos: 12.5,44.5 - parent: 4812 - type: Transform - - uid: 3565 - components: - - pos: 11.5,47.5 - parent: 4812 - type: Transform - - uid: 3566 - components: - - pos: 6.5,49.5 - parent: 4812 - type: Transform - - uid: 3567 - components: - - pos: 6.5,50.5 - parent: 4812 - type: Transform - - uid: 3568 - components: - - pos: 6.5,51.5 - parent: 4812 - type: Transform - - uid: 3569 - components: - - pos: 6.5,52.5 - parent: 4812 - type: Transform - - uid: 3570 - components: - - pos: 6.5,53.5 - parent: 4812 - type: Transform - - uid: 3571 - components: - - pos: 6.5,54.5 - parent: 4812 - type: Transform - - uid: 3572 - components: - - pos: 14.5,54.5 - parent: 4812 - type: Transform - - uid: 3573 - components: - - pos: 14.5,53.5 - parent: 4812 - type: Transform - - uid: 3574 - components: - - pos: 14.5,52.5 - parent: 4812 - type: Transform - - uid: 3575 - components: - - pos: 14.5,51.5 - parent: 4812 - type: Transform - - uid: 3576 - components: - - pos: 14.5,50.5 - parent: 4812 - type: Transform - - uid: 3577 - components: - - pos: 14.5,49.5 - parent: 4812 - type: Transform - - uid: 3691 - components: - - pos: 9.5,54.5 - parent: 4812 - type: Transform - - uid: 3692 - components: - - pos: 11.5,54.5 - parent: 4812 - type: Transform - - uid: 3693 - components: - - pos: 9.5,52.5 - parent: 4812 - type: Transform - - uid: 3694 - components: - - pos: 9.5,51.5 - parent: 4812 - type: Transform - - uid: 3695 - components: - - pos: 10.5,51.5 - parent: 4812 - type: Transform - - uid: 3696 - components: - - pos: 11.5,51.5 - parent: 4812 - type: Transform - - uid: 3697 - components: - - pos: 11.5,52.5 - parent: 4812 - type: Transform - - uid: 3717 - components: - - pos: 21.5,3.5 - parent: 4812 - type: Transform - - uid: 3718 - components: - - pos: 20.5,3.5 - parent: 4812 - type: Transform - - uid: 3719 - components: - - pos: 20.5,4.5 - parent: 4812 - type: Transform - - uid: 3720 - components: - - pos: 20.5,5.5 - parent: 4812 - type: Transform - - uid: 3721 - components: - - pos: 21.5,2.5 - parent: 4812 - type: Transform - - uid: 3722 - components: - - pos: 20.5,7.5 - parent: 4812 - type: Transform - - uid: 3723 - components: - - pos: 26.5,2.5 - parent: 4812 - type: Transform - - uid: 3724 - components: - - pos: 26.5,3.5 - parent: 4812 - type: Transform - - uid: 3725 - components: - - pos: 26.5,4.5 - parent: 4812 - type: Transform - - uid: 3727 - components: - - pos: 25.5,2.5 - parent: 4812 - type: Transform - - uid: 3728 - components: - - pos: 20.5,8.5 - parent: 4812 - type: Transform - - uid: 3729 - components: - - pos: 20.5,6.5 - parent: 4812 - type: Transform - - uid: 3730 - components: - - pos: 23.5,2.5 - parent: 4812 - type: Transform - - uid: 3731 - components: - - pos: 22.5,2.5 - parent: 4812 - type: Transform - - uid: 3990 - components: - - pos: 24.5,8.5 - parent: 4812 - type: Transform - - uid: 3991 - components: - - pos: 24.5,7.5 - parent: 4812 - type: Transform - - uid: 3992 - components: - - pos: 24.5,6.5 - parent: 4812 - type: Transform - - uid: 3993 - components: - - pos: 24.5,5.5 - parent: 4812 - type: Transform - - uid: 3994 - components: - - pos: 25.5,5.5 - parent: 4812 - type: Transform - - uid: 3995 - components: - - pos: 26.5,5.5 - parent: 4812 - type: Transform - - uid: 3996 - components: - - pos: 32.5,5.5 - parent: 4812 - type: Transform - - uid: 3997 - components: - - pos: 31.5,5.5 - parent: 4812 - type: Transform - - uid: 3998 - components: - - pos: 30.5,5.5 - parent: 4812 - type: Transform - - uid: 3999 - components: - - pos: 29.5,5.5 - parent: 4812 - type: Transform - - uid: 4000 - components: - - pos: 28.5,5.5 - parent: 4812 - type: Transform - - uid: 4001 - components: - - pos: 27.5,5.5 - parent: 4812 - type: Transform - - uid: 4081 - components: - - pos: 17.5,-4.5 - parent: 4812 - type: Transform - - uid: 4082 - components: - - pos: 19.5,-4.5 - parent: 4812 - type: Transform - - uid: 4083 - components: - - pos: 20.5,-4.5 - parent: 4812 - type: Transform - - uid: 4084 - components: - - pos: 20.5,-5.5 - parent: 4812 - type: Transform - - uid: 4085 - components: - - pos: 16.5,-5.5 - parent: 4812 - type: Transform - - uid: 4086 - components: - - pos: 16.5,-4.5 - parent: 4812 - type: Transform - - uid: 4087 - components: - - pos: 32.5,-10.5 - parent: 4812 - type: Transform - - uid: 4088 - components: - - pos: 31.5,-10.5 - parent: 4812 - type: Transform - - uid: 4089 - components: - - pos: 30.5,-10.5 - parent: 4812 - type: Transform - - uid: 4090 - components: - - pos: 29.5,-10.5 - parent: 4812 - type: Transform - - uid: 4091 - components: - - pos: 28.5,-10.5 - parent: 4812 - type: Transform - - uid: 4092 - components: - - pos: 26.5,-10.5 - parent: 4812 - type: Transform - - uid: 4093 - components: - - pos: 26.5,-9.5 - parent: 4812 - type: Transform - - uid: 4094 - components: - - pos: 26.5,-8.5 - parent: 4812 - type: Transform - - uid: 4095 - components: - - pos: 25.5,-8.5 - parent: 4812 - type: Transform - - uid: 4096 - components: - - pos: 24.5,-8.5 - parent: 4812 - type: Transform - - uid: 4097 - components: - - pos: 23.5,-8.5 - parent: 4812 - type: Transform - - uid: 4098 - components: - - pos: 22.5,-8.5 - parent: 4812 - type: Transform - - uid: 4101 - components: - - pos: 20.5,-8.5 - parent: 4812 - type: Transform - - uid: 4102 - components: - - pos: 21.5,-8.5 - parent: 4812 - type: Transform - - uid: 4103 - components: - - pos: 16.5,-8.5 - parent: 4812 - type: Transform - - uid: 4104 - components: - - pos: 15.5,-8.5 - parent: 4812 - type: Transform - - uid: 4105 - components: - - pos: 14.5,-8.5 - parent: 4812 - type: Transform - - uid: 4106 - components: - - pos: 14.5,-9.5 - parent: 4812 - type: Transform - - uid: 4107 - components: - - pos: 14.5,-10.5 - parent: 4812 - type: Transform - - uid: 4108 - components: - - pos: 20.5,-6.5 - parent: 4812 - type: Transform - - uid: 4109 - components: - - pos: 16.5,-6.5 - parent: 4812 - type: Transform - - uid: 4638 - components: - - pos: -7.5,-36.5 - parent: 4812 - type: Transform - - uid: 4639 - components: - - pos: -6.5,-36.5 - parent: 4812 - type: Transform - - uid: 4640 - components: - - pos: 1.5,-36.5 - parent: 4812 - type: Transform - - uid: 4641 - components: - - pos: 2.5,-36.5 - parent: 4812 - type: Transform - - uid: 4642 - components: - - pos: 3.5,-36.5 - parent: 4812 - type: Transform - - uid: 4643 - components: - - pos: -9.5,-36.5 - parent: 4812 - type: Transform - - uid: 4681 - components: - - pos: -9.5,-40.5 - parent: 4812 - type: Transform - - uid: 4685 - components: - - pos: -9.5,-53.5 - parent: 4812 - type: Transform - - uid: 4686 - components: - - pos: -12.5,-53.5 - parent: 4812 - type: Transform - - uid: 4693 - components: - - pos: -12.5,-39.5 - parent: 4812 - type: Transform - - uid: 4694 - components: - - pos: -12.5,-37.5 - parent: 4812 - type: Transform - - uid: 4696 - components: - - pos: -12.5,-40.5 - parent: 4812 - type: Transform - - uid: 4789 - components: - - pos: -9.5,-29.5 - parent: 4812 - type: Transform - - uid: 4790 - components: - - pos: -8.5,-29.5 - parent: 4812 - type: Transform - - uid: 4791 - components: - - pos: -9.5,-30.5 - parent: 4812 - type: Transform - - uid: 4792 - components: - - pos: -9.5,-31.5 - parent: 4812 - type: Transform - - uid: 4828 - components: - - pos: -33.5,23.5 - parent: 4812 - type: Transform - - uid: 4829 - components: - - pos: -34.5,23.5 - parent: 4812 - type: Transform - - uid: 4830 - components: - - pos: -35.5,23.5 - parent: 4812 - type: Transform - - uid: 4831 - components: - - pos: -36.5,23.5 - parent: 4812 - type: Transform - - uid: 4832 - components: - - pos: -37.5,23.5 - parent: 4812 - type: Transform - - uid: 4886 - components: - - pos: -38.5,23.5 - parent: 4812 - type: Transform - - uid: 4887 - components: - - pos: -38.5,22.5 - parent: 4812 - type: Transform - - uid: 4898 - components: - - pos: -38.5,21.5 - parent: 4812 - type: Transform - - uid: 4917 - components: - - pos: -23.5,-29.5 - parent: 4812 - type: Transform - - uid: 4936 - components: - - pos: -27.5,-27.5 - parent: 4812 - type: Transform - - uid: 5016 - components: - - pos: -27.5,-24.5 - parent: 4812 - type: Transform - - uid: 5027 - components: - - pos: -38.5,19.5 - parent: 4812 - type: Transform - - uid: 5042 - components: - - pos: -12.5,-59.5 - parent: 4812 - type: Transform - - uid: 5126 - components: - - pos: -38.5,20.5 - parent: 4812 - type: Transform - - uid: 5285 - components: - - pos: -4.5,-24.5 - parent: 4812 - type: Transform - - uid: 5286 - components: - - pos: -4.5,-23.5 - parent: 4812 - type: Transform - - uid: 5287 - components: - - pos: -3.5,-23.5 - parent: 4812 - type: Transform - - uid: 5288 - components: - - pos: -1.5,-23.5 - parent: 4812 - type: Transform - - uid: 5289 - components: - - pos: -0.5,-23.5 - parent: 4812 - type: Transform - - uid: 5290 - components: - - pos: -0.5,-24.5 - parent: 4812 - type: Transform - - uid: 5291 - components: - - pos: -0.5,-25.5 - parent: 4812 - type: Transform - - uid: 5292 - components: - - pos: -0.5,-26.5 - parent: 4812 - type: Transform - - uid: 5293 - components: - - pos: -3.5,-30.5 - parent: 4812 - type: Transform - - uid: 5294 - components: - - pos: -4.5,-30.5 - parent: 4812 - type: Transform - - uid: 5295 - components: - - pos: -4.5,-29.5 - parent: 4812 - type: Transform - - uid: 5296 - components: - - pos: -1.5,-30.5 - parent: 4812 - type: Transform - - uid: 5297 - components: - - pos: -0.5,-30.5 - parent: 4812 - type: Transform - - uid: 5298 - components: - - pos: -0.5,-29.5 - parent: 4812 - type: Transform - - uid: 5299 - components: - - pos: -0.5,-28.5 - parent: 4812 - type: Transform - - uid: 5312 - components: - - pos: 14.5,-13.5 - parent: 4812 - type: Transform - - uid: 5314 - components: - - pos: 21.5,-13.5 - parent: 4812 - type: Transform - - uid: 5316 - components: - - pos: 16.5,-13.5 - parent: 4812 - type: Transform - - uid: 5330 - components: - - pos: 20.5,-13.5 - parent: 4812 - type: Transform - - uid: 5331 - components: - - pos: 21.5,-19.5 - parent: 4812 - type: Transform - - uid: 5332 - components: - - pos: 22.5,-19.5 - parent: 4812 - type: Transform - - uid: 5336 - components: - - pos: 20.5,-19.5 - parent: 4812 - type: Transform - - uid: 5337 - components: - - pos: 19.5,-19.5 - parent: 4812 - type: Transform - - uid: 5395 - components: - - pos: 15.5,-22.5 - parent: 4812 - type: Transform - - uid: 5397 - components: - - pos: 16.5,-22.5 - parent: 4812 - type: Transform - - uid: 5398 - components: - - pos: 15.5,-18.5 - parent: 4812 - type: Transform - - uid: 5400 - components: - - pos: 15.5,-19.5 - parent: 4812 - type: Transform - - uid: 5401 - components: - - pos: 15.5,-17.5 - parent: 4812 - type: Transform - - uid: 5402 - components: - - pos: 15.5,-16.5 - parent: 4812 - type: Transform - - uid: 5403 - components: - - pos: 14.5,-16.5 - parent: 4812 - type: Transform - - uid: 5404 - components: - - pos: 11.5,-16.5 - parent: 4812 - type: Transform - - uid: 5405 - components: - - pos: 13.5,-16.5 - parent: 4812 - type: Transform - - uid: 5406 - components: - - pos: 12.5,-16.5 - parent: 4812 - type: Transform - - uid: 5407 - components: - - pos: 11.5,-13.5 - parent: 4812 - type: Transform - - uid: 5408 - components: - - pos: 11.5,-14.5 - parent: 4812 - type: Transform - - uid: 5409 - components: - - pos: 2.5,-13.5 - parent: 4812 - type: Transform - - uid: 5410 - components: - - pos: 6.5,-13.5 - parent: 4812 - type: Transform - - uid: 5411 - components: - - pos: 8.5,-13.5 - parent: 4812 - type: Transform - - uid: 5412 - components: - - pos: 2.5,-17.5 - parent: 4812 - type: Transform - - uid: 5413 - components: - - pos: 2.5,-19.5 - parent: 4812 - type: Transform - - uid: 5414 - components: - - pos: 2.5,-22.5 - parent: 4812 - type: Transform - - uid: 5432 - components: - - pos: 2.5,-24.5 - parent: 4812 - type: Transform - - uid: 5433 - components: - - pos: 2.5,-28.5 - parent: 4812 - type: Transform - - uid: 5434 - components: - - pos: 2.5,-29.5 - parent: 4812 - type: Transform - - uid: 5435 - components: - - pos: 3.5,-29.5 - parent: 4812 - type: Transform - - uid: 5436 - components: - - pos: 7.5,-29.5 - parent: 4812 - type: Transform - - uid: 5437 - components: - - pos: 6.5,-29.5 - parent: 4812 - type: Transform - - uid: 5438 - components: - - pos: 5.5,-29.5 - parent: 4812 - type: Transform - - uid: 5439 - components: - - pos: 4.5,-29.5 - parent: 4812 - type: Transform - - uid: 5440 - components: - - pos: 11.5,-29.5 - parent: 4812 - type: Transform - - uid: 5441 - components: - - pos: 10.5,-29.5 - parent: 4812 - type: Transform - - uid: 5442 - components: - - pos: 13.5,-29.5 - parent: 4812 - type: Transform - - uid: 5443 - components: - - pos: 14.5,-29.5 - parent: 4812 - type: Transform - - uid: 5444 - components: - - pos: 15.5,-29.5 - parent: 4812 - type: Transform - - uid: 5445 - components: - - pos: 16.5,-29.5 - parent: 4812 - type: Transform - - uid: 5446 - components: - - pos: 17.5,-29.5 - parent: 4812 - type: Transform - - uid: 5447 - components: - - pos: 17.5,-28.5 - parent: 4812 - type: Transform - - uid: 5448 - components: - - pos: 17.5,-27.5 - parent: 4812 - type: Transform - - uid: 5449 - components: - - pos: 17.5,-26.5 - parent: 4812 - type: Transform - - uid: 5450 - components: - - pos: 17.5,-25.5 - parent: 4812 - type: Transform - - uid: 5451 - components: - - pos: 20.5,-26.5 - parent: 4812 - type: Transform - - uid: 5452 - components: - - pos: 17.5,-23.5 - parent: 4812 - type: Transform - - uid: 5453 - components: - - pos: 14.5,-22.5 - parent: 4812 - type: Transform - - uid: 5454 - components: - - pos: 13.5,-22.5 - parent: 4812 - type: Transform - - uid: 5455 - components: - - pos: 12.5,-22.5 - parent: 4812 - type: Transform - - uid: 5456 - components: - - pos: 17.5,-22.5 - parent: 4812 - type: Transform - - uid: 5469 - components: - - pos: 11.5,-17.5 - parent: 4812 - type: Transform - - uid: 5470 - components: - - pos: 11.5,-18.5 - parent: 4812 - type: Transform - - uid: 5471 - components: - - pos: 11.5,-19.5 - parent: 4812 - type: Transform - - uid: 5473 - components: - - pos: 11.5,-22.5 - parent: 4812 - type: Transform - - uid: 5479 - components: - - pos: 19.5,-27.5 - parent: 4812 - type: Transform - - uid: 5480 - components: - - pos: 20.5,-27.5 - parent: 4812 - type: Transform - - uid: 5500 - components: - - pos: 9.5,-29.5 - parent: 4812 - type: Transform - - uid: 5501 - components: - - pos: 19.5,-22.5 - parent: 4812 - type: Transform - - uid: 5502 - components: - - pos: 20.5,-22.5 - parent: 4812 - type: Transform - - uid: 5505 - components: - - pos: 23.5,-21.5 - parent: 4812 - type: Transform - - uid: 5506 - components: - - pos: 24.5,-21.5 - parent: 4812 - type: Transform - - uid: 5510 - components: - - pos: 28.5,-21.5 - parent: 4812 - type: Transform - - uid: 5511 - components: - - pos: 23.5,-19.5 - parent: 4812 - type: Transform - - uid: 5512 - components: - - pos: 21.5,-27.5 - parent: 4812 - type: Transform - - uid: 5515 - components: - - pos: 24.5,-27.5 - parent: 4812 - type: Transform - - uid: 5516 - components: - - pos: 25.5,-27.5 - parent: 4812 - type: Transform - - uid: 5517 - components: - - pos: 26.5,-27.5 - parent: 4812 - type: Transform - - uid: 5518 - components: - - pos: 26.5,-28.5 - parent: 4812 - type: Transform - - uid: 5519 - components: - - pos: 24.5,-28.5 - parent: 4812 - type: Transform - - uid: 5520 - components: - - pos: 24.5,-30.5 - parent: 4812 - type: Transform - - uid: 5521 - components: - - pos: 26.5,-30.5 - parent: 4812 - type: Transform - - uid: 5522 - components: - - pos: 26.5,-31.5 - parent: 4812 - type: Transform - - uid: 5523 - components: - - pos: 25.5,-31.5 - parent: 4812 - type: Transform - - uid: 5524 - components: - - pos: 24.5,-31.5 - parent: 4812 - type: Transform - - uid: 5525 - components: - - pos: 23.5,-31.5 - parent: 4812 - type: Transform - - uid: 5526 - components: - - pos: 22.5,-31.5 - parent: 4812 - type: Transform - - uid: 5527 - components: - - pos: 21.5,-31.5 - parent: 4812 - type: Transform - - uid: 5528 - components: - - pos: 20.5,-31.5 - parent: 4812 - type: Transform - - uid: 5529 - components: - - pos: 19.5,-31.5 - parent: 4812 - type: Transform - - uid: 5530 - components: - - pos: 29.5,-21.5 - parent: 4812 - type: Transform - - uid: 5531 - components: - - pos: 29.5,-20.5 - parent: 4812 - type: Transform - - uid: 5532 - components: - - pos: 29.5,-19.5 - parent: 4812 - type: Transform - - uid: 5556 - components: - - pos: 27.5,-31.5 - parent: 4812 - type: Transform - - uid: 5557 - components: - - pos: 28.5,-31.5 - parent: 4812 - type: Transform - - uid: 5558 - components: - - pos: 29.5,-31.5 - parent: 4812 - type: Transform - - uid: 5559 - components: - - pos: 30.5,-31.5 - parent: 4812 - type: Transform - - uid: 5560 - components: - - pos: 30.5,-30.5 - parent: 4812 - type: Transform - - uid: 5561 - components: - - pos: 30.5,-29.5 - parent: 4812 - type: Transform - - uid: 5568 - components: - - pos: 30.5,-22.5 - parent: 4812 - type: Transform - - uid: 5569 - components: - - pos: 30.5,-21.5 - parent: 4812 - type: Transform - - uid: 5595 - components: - - pos: -38.5,18.5 - parent: 4812 - type: Transform - - uid: 5769 - components: - - pos: 31.5,-29.5 - parent: 4812 - type: Transform - - uid: 5770 - components: - - pos: 32.5,-29.5 - parent: 4812 - type: Transform - - uid: 5772 - components: - - pos: 34.5,-29.5 - parent: 4812 - type: Transform - - uid: 5773 - components: - - pos: 35.5,-29.5 - parent: 4812 - type: Transform - - uid: 5774 - components: - - pos: 36.5,-29.5 - parent: 4812 - type: Transform - - uid: 5775 - components: - - pos: 36.5,-28.5 - parent: 4812 - type: Transform - - uid: 5776 - components: - - pos: 36.5,-27.5 - parent: 4812 - type: Transform - - uid: 5777 - components: - - pos: 36.5,-26.5 - parent: 4812 - type: Transform - - uid: 5778 - components: - - pos: 36.5,-25.5 - parent: 4812 - type: Transform - - uid: 5779 - components: - - pos: 36.5,-24.5 - parent: 4812 - type: Transform - - uid: 5780 - components: - - pos: 36.5,-23.5 - parent: 4812 - type: Transform - - uid: 5781 - components: - - pos: 36.5,-22.5 - parent: 4812 - type: Transform - - uid: 5785 - components: - - pos: 31.5,-22.5 - parent: 4812 - type: Transform - - uid: 5786 - components: - - pos: 35.5,-22.5 - parent: 4812 - type: Transform - - uid: 5826 - components: - - pos: -9.5,-59.5 - parent: 4812 - type: Transform - - uid: 5904 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-30.5 - parent: 4812 - type: Transform - - uid: 5905 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-31.5 - parent: 4812 - type: Transform - - uid: 5906 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-30.5 - parent: 4812 - type: Transform - - uid: 5907 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-31.5 - parent: 4812 - type: Transform - - uid: 5908 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-32.5 - parent: 4812 - type: Transform - - uid: 5909 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-32.5 - parent: 4812 - type: Transform - - uid: 5910 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-32.5 - parent: 4812 - type: Transform - - uid: 5911 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-32.5 - parent: 4812 - type: Transform - - uid: 6546 - components: - - pos: -27.5,-26.5 - parent: 4812 - type: Transform - - uid: 6547 - components: - - pos: -27.5,-25.5 - parent: 4812 - type: Transform - - uid: 6559 - components: - - pos: -7.5,-13.5 - parent: 4812 - type: Transform - - uid: 6560 - components: - - pos: -13.5,-18.5 - parent: 4812 - type: Transform - - uid: 6561 - components: - - pos: -13.5,-16.5 - parent: 4812 - type: Transform - - uid: 6562 - components: - - pos: -13.5,-14.5 - parent: 4812 - type: Transform - - uid: 6563 - components: - - pos: -13.5,-13.5 - parent: 4812 - type: Transform - - uid: 6564 - components: - - pos: -13.5,-19.5 - parent: 4812 - type: Transform - - uid: 6565 - components: - - pos: -10.5,-19.5 - parent: 4812 - type: Transform - - uid: 6566 - components: - - pos: -7.5,-19.5 - parent: 4812 - type: Transform - - uid: 6567 - components: - - pos: -7.5,-17.5 - parent: 4812 - type: Transform - - uid: 6568 - components: - - pos: -7.5,-15.5 - parent: 4812 - type: Transform - - uid: 6569 - components: - - pos: -11.5,-13.5 - parent: 4812 - type: Transform - - uid: 6696 - components: - - pos: -13.5,-37.5 - parent: 4812 - type: Transform - - uid: 6697 - components: - - pos: -14.5,-37.5 - parent: 4812 - type: Transform - - uid: 6698 - components: - - pos: -18.5,-37.5 - parent: 4812 - type: Transform - - uid: 6699 - components: - - pos: -18.5,-38.5 - parent: 4812 - type: Transform - - uid: 6700 - components: - - pos: -18.5,-39.5 - parent: 4812 - type: Transform - - uid: 6701 - components: - - pos: -18.5,-40.5 - parent: 4812 - type: Transform - - uid: 6702 - components: - - pos: -21.5,-40.5 - parent: 4812 - type: Transform - - uid: 6704 - components: - - pos: -22.5,-40.5 - parent: 4812 - type: Transform - - uid: 6705 - components: - - pos: -23.5,-40.5 - parent: 4812 - type: Transform - - uid: 6706 - components: - - pos: -24.5,-40.5 - parent: 4812 - type: Transform - - uid: 6707 - components: - - pos: -25.5,-40.5 - parent: 4812 - type: Transform - - uid: 6759 - components: - - pos: -7.5,-29.5 - parent: 4812 - type: Transform - - uid: 6760 - components: - - pos: -7.5,-30.5 - parent: 4812 - type: Transform - - uid: 6761 - components: - - pos: -7.5,-31.5 - parent: 4812 - type: Transform - - uid: 6762 - components: - - pos: -7.5,-32.5 - parent: 4812 - type: Transform - - uid: 6763 - components: - - pos: -7.5,-33.5 - parent: 4812 - type: Transform - - uid: 6900 - components: - - pos: -9.5,-33.5 - parent: 4812 - type: Transform - - uid: 6901 - components: - - pos: -8.5,-33.5 - parent: 4812 - type: Transform - - uid: 7281 - components: - - pos: -27.5,-28.5 - parent: 4812 - type: Transform - - uid: 7289 - components: - - pos: -24.5,-29.5 - parent: 4812 - type: Transform - - uid: 7292 - components: - - pos: -27.5,-29.5 - parent: 4812 - type: Transform - - uid: 7293 - components: - - pos: -26.5,-29.5 - parent: 4812 - type: Transform - - uid: 7294 - components: - - pos: -25.5,-29.5 - parent: 4812 - type: Transform - - uid: 7337 - components: - - pos: -23.5,-24.5 - parent: 4812 - type: Transform - - uid: 7635 - components: - - pos: -17.5,30.5 - parent: 4812 - type: Transform - - uid: 7636 - components: - - pos: -18.5,29.5 - parent: 4812 - type: Transform - - uid: 7637 - components: - - pos: -18.5,30.5 - parent: 4812 - type: Transform - - uid: 7638 - components: - - pos: -19.5,30.5 - parent: 4812 - type: Transform - - uid: 7639 - components: - - pos: -20.5,30.5 - parent: 4812 - type: Transform - - uid: 7640 - components: - - pos: -20.5,29.5 - parent: 4812 - type: Transform - - uid: 7641 - components: - - pos: -18.5,21.5 - parent: 4812 - type: Transform - - uid: 7642 - components: - - pos: -18.5,22.5 - parent: 4812 - type: Transform - - uid: 7643 - components: - - pos: -18.5,23.5 - parent: 4812 - type: Transform - - uid: 7644 - components: - - pos: -18.5,24.5 - parent: 4812 - type: Transform - - uid: 7645 - components: - - pos: -18.5,26.5 - parent: 4812 - type: Transform - - uid: 7646 - components: - - pos: -18.5,27.5 - parent: 4812 - type: Transform - - uid: 7647 - components: - - pos: -18.5,28.5 - parent: 4812 - type: Transform - - uid: 7648 - components: - - pos: -24.5,30.5 - parent: 4812 - type: Transform - - uid: 7649 - components: - - pos: -24.5,29.5 - parent: 4812 - type: Transform - - uid: 7650 - components: - - pos: -23.5,29.5 - parent: 4812 - type: Transform - - uid: 7651 - components: - - pos: -21.5,29.5 - parent: 4812 - type: Transform - - uid: 7652 - components: - - pos: -19.5,21.5 - parent: 4812 - type: Transform - - uid: 7653 - components: - - pos: -24.5,21.5 - parent: 4812 - type: Transform - - uid: 7654 - components: - - pos: -24.5,22.5 - parent: 4812 - type: Transform - - uid: 7656 - components: - - pos: -24.5,24.5 - parent: 4812 - type: Transform - - uid: 7657 - components: - - pos: -24.5,25.5 - parent: 4812 - type: Transform - - uid: 7658 - components: - - pos: -24.5,26.5 - parent: 4812 - type: Transform - - uid: 7659 - components: - - pos: -24.5,27.5 - parent: 4812 - type: Transform - - uid: 7660 - components: - - pos: -24.5,28.5 - parent: 4812 - type: Transform - - uid: 7661 - components: - - pos: -24.5,32.5 - parent: 4812 - type: Transform - - uid: 7662 - components: - - pos: -24.5,33.5 - parent: 4812 - type: Transform - - uid: 7663 - components: - - pos: -25.5,33.5 - parent: 4812 - type: Transform - - uid: 7664 - components: - - pos: -26.5,33.5 - parent: 4812 - type: Transform - - uid: 7670 - components: - - pos: -30.5,33.5 - parent: 4812 - type: Transform - - uid: 7671 - components: - - pos: -31.5,33.5 - parent: 4812 - type: Transform - - uid: 7672 - components: - - pos: -32.5,33.5 - parent: 4812 - type: Transform - - uid: 7673 - components: - - pos: -33.5,33.5 - parent: 4812 - type: Transform - - uid: 7674 - components: - - pos: -32.5,28.5 - parent: 4812 - type: Transform - - uid: 7675 - components: - - pos: -33.5,29.5 - parent: 4812 - type: Transform - - uid: 7676 - components: - - pos: -33.5,30.5 - parent: 4812 - type: Transform - - uid: 7677 - components: - - pos: -33.5,31.5 - parent: 4812 - type: Transform - - uid: 7678 - components: - - pos: -33.5,32.5 - parent: 4812 - type: Transform - - uid: 7679 - components: - - pos: -33.5,28.5 - parent: 4812 - type: Transform - - uid: 7680 - components: - - pos: -31.5,21.5 - parent: 4812 - type: Transform - - uid: 7681 - components: - - pos: -28.5,21.5 - parent: 4812 - type: Transform - - uid: 7686 - components: - - pos: -25.5,21.5 - parent: 4812 - type: Transform - - uid: 7687 - components: - - pos: -26.5,21.5 - parent: 4812 - type: Transform - - uid: 7688 - components: - - pos: -27.5,21.5 - parent: 4812 - type: Transform - - uid: 7689 - components: - - pos: -32.5,23.5 - parent: 4812 - type: Transform - - uid: 7690 - components: - - pos: -25.5,25.5 - parent: 4812 - type: Transform - - uid: 7691 - components: - - pos: -28.5,25.5 - parent: 4812 - type: Transform - - uid: 7692 - components: - - pos: -32.5,22.5 - parent: 4812 - type: Transform - - uid: 7693 - components: - - pos: -27.5,25.5 - parent: 4812 - type: Transform - - uid: 7694 - components: - - pos: -31.5,25.5 - parent: 4812 - type: Transform - - uid: 7695 - components: - - pos: -32.5,21.5 - parent: 4812 - type: Transform - - uid: 7696 - components: - - pos: -32.5,27.5 - parent: 4812 - type: Transform - - uid: 7697 - components: - - pos: -32.5,26.5 - parent: 4812 - type: Transform - - uid: 7698 - components: - - pos: -32.5,25.5 - parent: 4812 - type: Transform - - uid: 7699 - components: - - pos: -32.5,24.5 - parent: 4812 - type: Transform - - uid: 7700 - components: - - pos: -29.5,25.5 - parent: 4812 - type: Transform - - uid: 7701 - components: - - pos: -28.5,26.5 - parent: 4812 - type: Transform - - uid: 7702 - components: - - pos: -28.5,27.5 - parent: 4812 - type: Transform - - uid: 7703 - components: - - pos: -28.5,28.5 - parent: 4812 - type: Transform - - uid: 7704 - components: - - pos: -29.5,28.5 - parent: 4812 - type: Transform - - uid: 7705 - components: - - pos: -27.5,28.5 - parent: 4812 - type: Transform - - uid: 7706 - components: - - pos: -25.5,28.5 - parent: 4812 - type: Transform - - uid: 7707 - components: - - pos: -31.5,28.5 - parent: 4812 - type: Transform - - uid: 7712 - components: - - pos: -24.5,9.5 - parent: 4812 - type: Transform - - uid: 7713 - components: - - pos: -25.5,9.5 - parent: 4812 - type: Transform - - uid: 7714 - components: - - pos: -26.5,9.5 - parent: 4812 - type: Transform - - uid: 7715 - components: - - pos: -27.5,9.5 - parent: 4812 - type: Transform - - uid: 7718 - components: - - pos: -24.5,18.5 - parent: 4812 - type: Transform - - uid: 7719 - components: - - pos: -24.5,15.5 - parent: 4812 - type: Transform - - uid: 7720 - components: - - pos: -25.5,15.5 - parent: 4812 - type: Transform - - uid: 7721 - components: - - pos: -26.5,15.5 - parent: 4812 - type: Transform - - uid: 7722 - components: - - pos: -27.5,15.5 - parent: 4812 - type: Transform - - uid: 7723 - components: - - pos: -24.5,12.5 - parent: 4812 - type: Transform - - uid: 7724 - components: - - pos: -27.5,12.5 - parent: 4812 - type: Transform - - uid: 7732 - components: - - pos: -32.5,18.5 - parent: 4812 - type: Transform - - uid: 7733 - components: - - pos: -33.5,22.5 - parent: 4812 - type: Transform - - uid: 7734 - components: - - pos: -34.5,22.5 - parent: 4812 - type: Transform - - uid: 7735 - components: - - pos: -35.5,22.5 - parent: 4812 - type: Transform - - uid: 7736 - components: - - pos: -36.5,22.5 - parent: 4812 - type: Transform - - uid: 7737 - components: - - pos: -37.5,18.5 - parent: 4812 - type: Transform - - uid: 7738 - components: - - pos: -37.5,19.5 - parent: 4812 - type: Transform - - uid: 7739 - components: - - pos: -37.5,20.5 - parent: 4812 - type: Transform - - uid: 7740 - components: - - pos: -36.5,18.5 - parent: 4812 - type: Transform - - uid: 7743 - components: - - pos: -32.5,16.5 - parent: 4812 - type: Transform - - uid: 7744 - components: - - pos: -32.5,13.5 - parent: 4812 - type: Transform - - uid: 7749 - components: - - pos: -28.5,9.5 - parent: 4812 - type: Transform - - uid: 7750 - components: - - pos: -29.5,9.5 - parent: 4812 - type: Transform - - uid: 7751 - components: - - pos: -30.5,9.5 - parent: 4812 - type: Transform - - uid: 7753 - components: - - pos: -32.5,9.5 - parent: 4812 - type: Transform - - uid: 7754 - components: - - pos: -33.5,9.5 - parent: 4812 - type: Transform - - uid: 7755 - components: - - pos: -34.5,9.5 - parent: 4812 - type: Transform - - uid: 7756 - components: - - pos: -37.5,21.5 - parent: 4812 - type: Transform - - uid: 7757 - components: - - pos: -37.5,22.5 - parent: 4812 - type: Transform - - uid: 7758 - components: - - pos: -37.5,17.5 - parent: 4812 - type: Transform - - uid: 7759 - components: - - pos: -37.5,16.5 - parent: 4812 - type: Transform - - uid: 7760 - components: - - pos: -37.5,15.5 - parent: 4812 - type: Transform - - uid: 7761 - components: - - pos: -37.5,14.5 - parent: 4812 - type: Transform - - uid: 7762 - components: - - pos: -37.5,13.5 - parent: 4812 - type: Transform - - uid: 7763 - components: - - pos: -36.5,13.5 - parent: 4812 - type: Transform - - uid: 7765 - components: - - pos: -38.5,13.5 - parent: 4812 - type: Transform - - uid: 7766 - components: - - pos: -39.5,13.5 - parent: 4812 - type: Transform - - uid: 7767 - components: - - pos: -40.5,13.5 - parent: 4812 - type: Transform - - uid: 7768 - components: - - pos: -35.5,9.5 - parent: 4812 - type: Transform - - uid: 7769 - components: - - pos: -36.5,9.5 - parent: 4812 - type: Transform - - uid: 7770 - components: - - pos: -37.5,9.5 - parent: 4812 - type: Transform - - uid: 7771 - components: - - pos: -38.5,9.5 - parent: 4812 - type: Transform - - uid: 7772 - components: - - pos: -39.5,9.5 - parent: 4812 - type: Transform - - uid: 7773 - components: - - pos: -40.5,9.5 - parent: 4812 - type: Transform - - uid: 7774 - components: - - pos: -40.5,10.5 - parent: 4812 - type: Transform - - uid: 7775 - components: - - pos: -40.5,11.5 - parent: 4812 - type: Transform - - uid: 7776 - components: - - pos: -40.5,12.5 - parent: 4812 - type: Transform - - uid: 7937 - components: - - pos: -27.5,6.5 - parent: 4812 - type: Transform - - uid: 7938 - components: - - pos: -28.5,6.5 - parent: 4812 - type: Transform - - uid: 7939 - components: - - pos: -29.5,6.5 - parent: 4812 - type: Transform - - uid: 7940 - components: - - pos: -30.5,6.5 - parent: 4812 - type: Transform - - uid: 7941 - components: - - pos: -31.5,6.5 - parent: 4812 - type: Transform - - uid: 7942 - components: - - pos: -32.5,6.5 - parent: 4812 - type: Transform - - uid: 7943 - components: - - pos: -33.5,6.5 - parent: 4812 - type: Transform - - uid: 7944 - components: - - pos: -34.5,6.5 - parent: 4812 - type: Transform - - uid: 7945 - components: - - pos: -35.5,6.5 - parent: 4812 - type: Transform - - uid: 7946 - components: - - pos: -36.5,6.5 - parent: 4812 - type: Transform - - uid: 7947 - components: - - pos: -37.5,6.5 - parent: 4812 - type: Transform - - uid: 7948 - components: - - pos: -38.5,6.5 - parent: 4812 - type: Transform - - uid: 7950 - components: - - pos: -40.5,6.5 - parent: 4812 - type: Transform - - uid: 7951 - components: - - pos: -40.5,7.5 - parent: 4812 - type: Transform - - uid: 7952 - components: - - pos: -40.5,8.5 - parent: 4812 - type: Transform - - uid: 7955 - components: - - pos: -35.5,8.5 - parent: 4812 - type: Transform - - uid: 8621 - components: - - pos: -34.5,0.5 - parent: 4812 - type: Transform - - uid: 8623 - components: - - pos: -28.5,0.5 - parent: 4812 - type: Transform - - uid: 8624 - components: - - pos: -27.5,0.5 - parent: 4812 - type: Transform - - uid: 8625 - components: - - pos: -27.5,1.5 - parent: 4812 - type: Transform - - uid: 8626 - components: - - pos: -27.5,5.5 - parent: 4812 - type: Transform - - uid: 8635 - components: - - pos: -35.5,0.5 - parent: 4812 - type: Transform - - uid: 8639 - components: - - pos: -35.5,4.5 - parent: 4812 - type: Transform - - uid: 8641 - components: - - pos: -35.5,-0.5 - parent: 4812 - type: Transform - - uid: 8642 - components: - - pos: -35.5,-1.5 - parent: 4812 - type: Transform - - uid: 8643 - components: - - pos: -35.5,-2.5 - parent: 4812 - type: Transform - - uid: 8644 - components: - - pos: -35.5,-3.5 - parent: 4812 - type: Transform - - uid: 8645 - components: - - pos: -35.5,-4.5 - parent: 4812 - type: Transform - - uid: 8646 - components: - - pos: -35.5,-5.5 - parent: 4812 - type: Transform - - uid: 8647 - components: - - pos: -35.5,-6.5 - parent: 4812 - type: Transform - - uid: 8648 - components: - - pos: -34.5,-4.5 - parent: 4812 - type: Transform - - uid: 8649 - components: - - pos: -32.5,-4.5 - parent: 4812 - type: Transform - - uid: 8650 - components: - - pos: -28.5,-4.5 - parent: 4812 - type: Transform - - uid: 8651 - components: - - pos: -27.5,-4.5 - parent: 4812 - type: Transform - - uid: 8652 - components: - - pos: -27.5,-5.5 - parent: 4812 - type: Transform - - uid: 8653 - components: - - pos: -27.5,-9.5 - parent: 4812 - type: Transform - - uid: 8654 - components: - - pos: -27.5,-10.5 - parent: 4812 - type: Transform - - uid: 8655 - components: - - pos: -28.5,-10.5 - parent: 4812 - type: Transform - - uid: 8656 - components: - - pos: -29.5,-10.5 - parent: 4812 - type: Transform - - uid: 8657 - components: - - pos: -31.5,-10.5 - parent: 4812 - type: Transform - - uid: 8658 - components: - - pos: -32.5,-10.5 - parent: 4812 - type: Transform - - uid: 8659 - components: - - pos: -33.5,-10.5 - parent: 4812 - type: Transform - - uid: 8660 - components: - - pos: -34.5,-10.5 - parent: 4812 - type: Transform - - uid: 8661 - components: - - pos: -34.5,-9.5 - parent: 4812 - type: Transform - - uid: 8662 - components: - - pos: -34.5,-7.5 - parent: 4812 - type: Transform - - uid: 8663 - components: - - pos: -34.5,-6.5 - parent: 4812 - type: Transform - - uid: 8664 - components: - - pos: -35.5,-10.5 - parent: 4812 - type: Transform - - uid: 8665 - components: - - pos: -37.5,-10.5 - parent: 4812 - type: Transform - - uid: 8666 - components: - - pos: -37.5,-9.5 - parent: 4812 - type: Transform - - uid: 8667 - components: - - pos: -37.5,-7.5 - parent: 4812 - type: Transform - - uid: 8668 - components: - - pos: -37.5,-6.5 - parent: 4812 - type: Transform - - uid: 8669 - components: - - pos: -37.5,-5.5 - parent: 4812 - type: Transform - - uid: 8670 - components: - - pos: -37.5,-4.5 - parent: 4812 - type: Transform - - uid: 8671 - components: - - pos: -37.5,-3.5 - parent: 4812 - type: Transform - - uid: 8672 - components: - - pos: -37.5,-2.5 - parent: 4812 - type: Transform - - uid: 8673 - components: - - pos: -37.5,-1.5 - parent: 4812 - type: Transform - - uid: 8674 - components: - - pos: -37.5,-0.5 - parent: 4812 - type: Transform - - uid: 8675 - components: - - pos: -37.5,0.5 - parent: 4812 - type: Transform - - uid: 8712 - components: - - pos: -38.5,-0.5 - parent: 4812 - type: Transform - - uid: 8713 - components: - - pos: -40.5,-0.5 - parent: 4812 - type: Transform - - uid: 8714 - components: - - pos: -41.5,-0.5 - parent: 4812 - type: Transform - - uid: 8715 - components: - - pos: -41.5,-1.5 - parent: 4812 - type: Transform - - uid: 8716 - components: - - pos: -41.5,-2.5 - parent: 4812 - type: Transform - - uid: 8717 - components: - - pos: -41.5,-3.5 - parent: 4812 - type: Transform - - uid: 8718 - components: - - pos: -40.5,-4.5 - parent: 4812 - type: Transform - - uid: 8719 - components: - - pos: -41.5,-4.5 - parent: 4812 - type: Transform - - uid: 8720 - components: - - pos: -38.5,-4.5 - parent: 4812 - type: Transform - - uid: 8724 - components: - - pos: -46.5,-4.5 - parent: 4812 - type: Transform - - uid: 8726 - components: - - pos: -46.5,-2.5 - parent: 4812 - type: Transform - - uid: 8727 - components: - - pos: -46.5,-1.5 - parent: 4812 - type: Transform - - uid: 8728 - components: - - pos: -46.5,-0.5 - parent: 4812 - type: Transform - - uid: 8729 - components: - - pos: -45.5,-0.5 - parent: 4812 - type: Transform - - uid: 8730 - components: - - pos: -44.5,-0.5 - parent: 4812 - type: Transform - - uid: 8731 - components: - - pos: -43.5,-0.5 - parent: 4812 - type: Transform - - uid: 8732 - components: - - pos: -42.5,-0.5 - parent: 4812 - type: Transform - - uid: 8733 - components: - - pos: -45.5,-4.5 - parent: 4812 - type: Transform - - uid: 8751 - components: - - pos: -46.5,-3.5 - parent: 4812 - type: Transform - - uid: 8789 - components: - - pos: -25.5,-41.5 - parent: 4812 - type: Transform - - uid: 8790 - components: - - pos: -26.5,-41.5 - parent: 4812 - type: Transform - - uid: 8791 - components: - - pos: -28.5,-41.5 - parent: 4812 - type: Transform - - uid: 8793 - components: - - pos: -29.5,-41.5 - parent: 4812 - type: Transform - - uid: 8794 - components: - - pos: -30.5,-41.5 - parent: 4812 - type: Transform - - uid: 8795 - components: - - pos: -31.5,-41.5 - parent: 4812 - type: Transform - - uid: 8796 - components: - - pos: -32.5,-41.5 - parent: 4812 - type: Transform - - uid: 8797 - components: - - pos: -32.5,-40.5 - parent: 4812 - type: Transform - - uid: 8798 - components: - - pos: -32.5,-39.5 - parent: 4812 - type: Transform - - uid: 8799 - components: - - pos: -32.5,-38.5 - parent: 4812 - type: Transform - - uid: 8800 - components: - - pos: -33.5,-38.5 - parent: 4812 - type: Transform - - uid: 8801 - components: - - pos: -34.5,-38.5 - parent: 4812 - type: Transform - - uid: 8802 - components: - - pos: -35.5,-38.5 - parent: 4812 - type: Transform - - uid: 8809 - components: - - pos: -38.5,-38.5 - parent: 4812 - type: Transform - - uid: 8811 - components: - - pos: -38.5,-36.5 - parent: 4812 - type: Transform - - uid: 8812 - components: - - pos: -41.5,-34.5 - parent: 4812 - type: Transform - - uid: 8813 - components: - - pos: -41.5,-33.5 - parent: 4812 - type: Transform - - uid: 8814 - components: - - pos: -41.5,-32.5 - parent: 4812 - type: Transform - - uid: 8815 - components: - - pos: -34.5,-35.5 - parent: 4812 - type: Transform - - uid: 8816 - components: - - pos: -35.5,-37.5 - parent: 4812 - type: Transform - - uid: 8817 - components: - - pos: -35.5,-36.5 - parent: 4812 - type: Transform - - uid: 8818 - components: - - pos: -35.5,-35.5 - parent: 4812 - type: Transform - - uid: 8819 - components: - - pos: -35.5,-34.5 - parent: 4812 - type: Transform - - uid: 8820 - components: - - pos: -33.5,-35.5 - parent: 4812 - type: Transform - - uid: 8821 - components: - - pos: -32.5,-35.5 - parent: 4812 - type: Transform - - uid: 8822 - components: - - pos: -32.5,-34.5 - parent: 4812 - type: Transform - - uid: 8823 - components: - - pos: -32.5,-32.5 - parent: 4812 - type: Transform - - uid: 8824 - components: - - pos: -33.5,-32.5 - parent: 4812 - type: Transform - - uid: 8825 - components: - - pos: -34.5,-32.5 - parent: 4812 - type: Transform - - uid: 8826 - components: - - pos: -35.5,-32.5 - parent: 4812 - type: Transform - - uid: 8827 - components: - - pos: -36.5,-32.5 - parent: 4812 - type: Transform - - uid: 8828 - components: - - pos: -37.5,-32.5 - parent: 4812 - type: Transform - - uid: 8829 - components: - - pos: -38.5,-32.5 - parent: 4812 - type: Transform - - uid: 8830 - components: - - pos: -39.5,-32.5 - parent: 4812 - type: Transform - - uid: 8831 - components: - - pos: -40.5,-32.5 - parent: 4812 - type: Transform - - uid: 8873 - components: - - pos: -37.5,-11.5 - parent: 4812 - type: Transform - - uid: 8874 - components: - - pos: -37.5,-12.5 - parent: 4812 - type: Transform - - uid: 8875 - components: - - pos: -37.5,-13.5 - parent: 4812 - type: Transform - - uid: 8876 - components: - - pos: -37.5,-14.5 - parent: 4812 - type: Transform - - uid: 8877 - components: - - pos: -37.5,-15.5 - parent: 4812 - type: Transform - - uid: 9022 - components: - - pos: -53.5,2.5 - parent: 4812 - type: Transform - - uid: 9091 - components: - - pos: -55.5,12.5 - parent: 4812 - type: Transform - - uid: 9092 - components: - - pos: -55.5,11.5 - parent: 4812 - type: Transform - - uid: 9093 - components: - - pos: -55.5,10.5 - parent: 4812 - type: Transform - - uid: 9094 - components: - - pos: -55.5,9.5 - parent: 4812 - type: Transform - - uid: 9095 - components: - - pos: -55.5,8.5 - parent: 4812 - type: Transform - - uid: 9096 - components: - - pos: -55.5,7.5 - parent: 4812 - type: Transform - - uid: 9097 - components: - - pos: -55.5,6.5 - parent: 4812 - type: Transform - - uid: 9098 - components: - - pos: -55.5,5.5 - parent: 4812 - type: Transform - - uid: 9100 - components: - - pos: -55.5,3.5 - parent: 4812 - type: Transform - - uid: 9101 - components: - - pos: -55.5,2.5 - parent: 4812 - type: Transform - - uid: 9102 - components: - - pos: -55.5,1.5 - parent: 4812 - type: Transform - - uid: 9103 - components: - - pos: -54.5,12.5 - parent: 4812 - type: Transform - - uid: 9104 - components: - - pos: -54.5,11.5 - parent: 4812 - type: Transform - - uid: 9105 - components: - - pos: -54.5,10.5 - parent: 4812 - type: Transform - - uid: 9106 - components: - - pos: -54.5,9.5 - parent: 4812 - type: Transform - - uid: 9107 - components: - - pos: -54.5,8.5 - parent: 4812 - type: Transform - - uid: 9108 - components: - - pos: -54.5,7.5 - parent: 4812 - type: Transform - - uid: 9109 - components: - - pos: -54.5,6.5 - parent: 4812 - type: Transform - - uid: 9110 - components: - - pos: -54.5,5.5 - parent: 4812 - type: Transform - - uid: 9111 - components: - - pos: -54.5,4.5 - parent: 4812 - type: Transform - - uid: 9112 - components: - - pos: -54.5,3.5 - parent: 4812 - type: Transform - - uid: 9113 - components: - - pos: -54.5,2.5 - parent: 4812 - type: Transform - - uid: 9114 - components: - - pos: -54.5,1.5 - parent: 4812 - type: Transform - - uid: 9139 - components: - - pos: -50.5,0.5 - parent: 4812 - type: Transform - - uid: 9140 - components: - - pos: -51.5,0.5 - parent: 4812 - type: Transform - - uid: 9141 - components: - - pos: -52.5,0.5 - parent: 4812 - type: Transform - - uid: 9142 - components: - - pos: -53.5,0.5 - parent: 4812 - type: Transform - - uid: 9143 - components: - - pos: -54.5,0.5 - parent: 4812 - type: Transform - - uid: 9144 - components: - - pos: -55.5,0.5 - parent: 4812 - type: Transform - - uid: 9239 - components: - - pos: -51.5,6.5 - parent: 4812 - type: Transform - - uid: 9240 - components: - - pos: -50.5,4.5 - parent: 4812 - type: Transform - - uid: 9242 - components: - - pos: -50.5,2.5 - parent: 4812 - type: Transform - - uid: 9243 - components: - - pos: -51.5,2.5 - parent: 4812 - type: Transform - - uid: 9244 - components: - - pos: -52.5,6.5 - parent: 4812 - type: Transform - - uid: 9245 - components: - - pos: -52.5,2.5 - parent: 4812 - type: Transform - - uid: 9248 - components: - - pos: -53.5,6.5 - parent: 4812 - type: Transform - - uid: 9256 - components: - - pos: -52.5,4.5 - parent: 4812 - type: Transform - - uid: 9258 - components: - - pos: -53.5,4.5 - parent: 4812 - type: Transform - - uid: 9260 - components: - - pos: -51.5,4.5 - parent: 4812 - type: Transform - - uid: 9265 - components: - - pos: -50.5,6.5 - parent: 4812 - type: Transform - - uid: 9266 - components: - - pos: -50.5,8.5 - parent: 4812 - type: Transform - - uid: 9267 - components: - - pos: -51.5,8.5 - parent: 4812 - type: Transform - - uid: 9268 - components: - - pos: -52.5,8.5 - parent: 4812 - type: Transform - - uid: 9269 - components: - - pos: -53.5,8.5 - parent: 4812 - type: Transform - - uid: 9270 - components: - - pos: -53.5,10.5 - parent: 4812 - type: Transform - - uid: 9271 - components: - - pos: -52.5,10.5 - parent: 4812 - type: Transform - - uid: 9272 - components: - - pos: -51.5,10.5 - parent: 4812 - type: Transform - - uid: 9273 - components: - - pos: -50.5,10.5 - parent: 4812 - type: Transform - - uid: 9274 - components: - - pos: -50.5,12.5 - parent: 4812 - type: Transform - - uid: 9275 - components: - - pos: -51.5,12.5 - parent: 4812 - type: Transform - - uid: 9276 - components: - - pos: -52.5,12.5 - parent: 4812 - type: Transform - - uid: 9277 - components: - - pos: -53.5,12.5 - parent: 4812 - type: Transform - - uid: 9284 - components: - - pos: -46.5,-5.5 - parent: 4812 - type: Transform - - uid: 9285 - components: - - pos: -48.5,-3.5 - parent: 4812 - type: Transform - - uid: 9286 - components: - - pos: -48.5,-2.5 - parent: 4812 - type: Transform - - uid: 9469 - components: - - pos: -46.5,18.5 - parent: 4812 - type: Transform - - uid: 9470 - components: - - pos: -45.5,18.5 - parent: 4812 - type: Transform - - uid: 9471 - components: - - pos: -43.5,18.5 - parent: 4812 - type: Transform - - uid: 9472 - components: - - pos: -42.5,18.5 - parent: 4812 - type: Transform - - uid: 9473 - components: - - pos: -42.5,15.5 - parent: 4812 - type: Transform - - uid: 9474 - components: - - pos: -46.5,15.5 - parent: 4812 - type: Transform - - uid: 9511 - components: - - pos: -41.5,13.5 - parent: 4812 - type: Transform - - uid: 9517 - components: - - pos: -47.5,-5.5 - parent: 4812 - type: Transform - - uid: 9518 - components: - - pos: -48.5,-5.5 - parent: 4812 - type: Transform - - uid: 9519 - components: - - pos: -49.5,-5.5 - parent: 4812 - type: Transform - - uid: 9520 - components: - - pos: -49.5,-3.5 - parent: 4812 - type: Transform - - uid: 9521 - components: - - pos: -50.5,-5.5 - parent: 4812 - type: Transform - - uid: 9522 - components: - - pos: -50.5,-3.5 - parent: 4812 - type: Transform - - uid: 9579 - components: - - pos: -42.5,-32.5 - parent: 4812 - type: Transform - - uid: 9590 - components: - - pos: -46.5,-25.5 - parent: 4812 - type: Transform - - uid: 9591 - components: - - pos: -46.5,-24.5 - parent: 4812 - type: Transform - - uid: 9592 - components: - - pos: -48.5,-24.5 - parent: 4812 - type: Transform - - uid: 9594 - components: - - pos: -49.5,-24.5 - parent: 4812 - type: Transform - - uid: 9595 - components: - - pos: -49.5,-25.5 - parent: 4812 - type: Transform - - uid: 9596 - components: - - pos: -49.5,-26.5 - parent: 4812 - type: Transform - - uid: 9597 - components: - - pos: -50.5,-26.5 - parent: 4812 - type: Transform - - uid: 9598 - components: - - pos: -51.5,-26.5 - parent: 4812 - type: Transform - - uid: 9604 - components: - - pos: -54.5,-24.5 - parent: 4812 - type: Transform - - uid: 9605 - components: - - pos: -55.5,-24.5 - parent: 4812 - type: Transform - - uid: 9606 - components: - - pos: -56.5,-24.5 - parent: 4812 - type: Transform - - uid: 9607 - components: - - pos: -56.5,-21.5 - parent: 4812 - type: Transform - - uid: 9644 - components: - - pos: -12.5,-56.5 - parent: 4812 - type: Transform - - uid: 9645 - components: - - pos: -9.5,-56.5 - parent: 4812 - type: Transform - - uid: 9824 - components: - - pos: -37.5,-16.5 - parent: 4812 - type: Transform - - uid: 9825 - components: - - pos: -37.5,-17.5 - parent: 4812 - type: Transform - - uid: 9826 - components: - - pos: -37.5,-18.5 - parent: 4812 - type: Transform - - uid: 9827 - components: - - pos: -37.5,-19.5 - parent: 4812 - type: Transform - - uid: 9828 - components: - - pos: -38.5,-19.5 - parent: 4812 - type: Transform - - uid: 9829 - components: - - pos: -43.5,-15.5 - parent: 4812 - type: Transform - - uid: 9831 - components: - - pos: -45.5,-15.5 - parent: 4812 - type: Transform - - uid: 9836 - components: - - pos: -46.5,-10.5 - parent: 4812 - type: Transform - - uid: 9837 - components: - - pos: -51.5,-5.5 - parent: 4812 - type: Transform - - uid: 9840 - components: - - pos: -46.5,-14.5 - parent: 4812 - type: Transform - - uid: 9841 - components: - - pos: -46.5,-15.5 - parent: 4812 - type: Transform - - uid: 9842 - components: - - pos: -55.5,-5.5 - parent: 4812 - type: Transform - - uid: 9844 - components: - - pos: -55.5,-6.5 - parent: 4812 - type: Transform - - uid: 9845 - components: - - pos: -55.5,-7.5 - parent: 4812 - type: Transform - - uid: 9846 - components: - - pos: -55.5,-14.5 - parent: 4812 - type: Transform - - uid: 9847 - components: - - pos: -55.5,-13.5 - parent: 4812 - type: Transform - - uid: 9848 - components: - - pos: -55.5,-12.5 - parent: 4812 - type: Transform - - uid: 9849 - components: - - pos: -55.5,-11.5 - parent: 4812 - type: Transform - - uid: 9850 - components: - - pos: -55.5,-10.5 - parent: 4812 - type: Transform - - uid: 9851 - components: - - pos: -55.5,-9.5 - parent: 4812 - type: Transform - - uid: 9852 - components: - - pos: -55.5,-8.5 - parent: 4812 - type: Transform - - uid: 9853 - components: - - pos: -54.5,-14.5 - parent: 4812 - type: Transform - - uid: 9854 - components: - - pos: -53.5,-14.5 - parent: 4812 - type: Transform - - uid: 9855 - components: - - pos: -52.5,-14.5 - parent: 4812 - type: Transform - - uid: 9856 - components: - - pos: -51.5,-14.5 - parent: 4812 - type: Transform - - uid: 9857 - components: - - pos: -50.5,-14.5 - parent: 4812 - type: Transform - - uid: 9858 - components: - - pos: -49.5,-14.5 - parent: 4812 - type: Transform - - uid: 9859 - components: - - pos: -48.5,-14.5 - parent: 4812 - type: Transform - - uid: 9860 - components: - - pos: -47.5,-14.5 - parent: 4812 - type: Transform - - uid: 9864 - components: - - pos: -51.5,-10.5 - parent: 4812 - type: Transform - - uid: 9865 - components: - - pos: -51.5,-9.5 - parent: 4812 - type: Transform - - uid: 9866 - components: - - pos: -51.5,-8.5 - parent: 4812 - type: Transform - - uid: 9867 - components: - - pos: -51.5,-7.5 - parent: 4812 - type: Transform - - uid: 9868 - components: - - pos: -51.5,-6.5 - parent: 4812 - type: Transform - - uid: 9873 - components: - - pos: -47.5,-9.5 - parent: 4812 - type: Transform - - uid: 9876 - components: - - pos: -50.5,-10.5 - parent: 4812 - type: Transform - - uid: 9890 - components: - - pos: -43.5,-9.5 - parent: 4812 - type: Transform - - uid: 9891 - components: - - pos: -43.5,-10.5 - parent: 4812 - type: Transform - - uid: 9895 - components: - - pos: -43.5,-14.5 - parent: 4812 - type: Transform - - uid: 9896 - components: - - pos: -38.5,-9.5 - parent: 4812 - type: Transform - - uid: 9900 - components: - - pos: -42.5,-9.5 - parent: 4812 - type: Transform - - uid: 9901 - components: - - pos: -39.5,-19.5 - parent: 4812 - type: Transform - - uid: 9902 - components: - - pos: -40.5,-19.5 - parent: 4812 - type: Transform - - uid: 9903 - components: - - pos: -41.5,-19.5 - parent: 4812 - type: Transform - - uid: 9904 - components: - - pos: -42.5,-19.5 - parent: 4812 - type: Transform - - uid: 9905 - components: - - pos: -43.5,-19.5 - parent: 4812 - type: Transform - - uid: 9906 - components: - - pos: -43.5,-18.5 - parent: 4812 - type: Transform - - uid: 9907 - components: - - pos: -43.5,-17.5 - parent: 4812 - type: Transform - - uid: 9908 - components: - - pos: -43.5,-16.5 - parent: 4812 - type: Transform - - uid: 9939 - components: - - pos: -55.5,-21.5 - parent: 4812 - type: Transform - - uid: 9940 - components: - - pos: -54.5,-21.5 - parent: 4812 - type: Transform - - uid: 9941 - components: - - pos: -53.5,-21.5 - parent: 4812 - type: Transform - - uid: 9942 - components: - - pos: -52.5,-21.5 - parent: 4812 - type: Transform - - uid: 9943 - components: - - pos: -51.5,-21.5 - parent: 4812 - type: Transform - - uid: 9944 - components: - - pos: -50.5,-21.5 - parent: 4812 - type: Transform - - uid: 9945 - components: - - pos: -49.5,-21.5 - parent: 4812 - type: Transform - - uid: 9946 - components: - - pos: -48.5,-21.5 - parent: 4812 - type: Transform - - uid: 9947 - components: - - pos: -47.5,-21.5 - parent: 4812 - type: Transform - - uid: 9948 - components: - - pos: -46.5,-21.5 - parent: 4812 - type: Transform - - uid: 9949 - components: - - pos: -46.5,-16.5 - parent: 4812 - type: Transform - - uid: 9950 - components: - - pos: -46.5,-17.5 - parent: 4812 - type: Transform - - uid: 9951 - components: - - pos: -46.5,-18.5 - parent: 4812 - type: Transform - - uid: 9952 - components: - - pos: -47.5,-18.5 - parent: 4812 - type: Transform - - uid: 9953 - components: - - pos: -48.5,-18.5 - parent: 4812 - type: Transform - - uid: 9954 - components: - - pos: -49.5,-18.5 - parent: 4812 - type: Transform - - uid: 9955 - components: - - pos: -49.5,-19.5 - parent: 4812 - type: Transform - - uid: 9956 - components: - - pos: -49.5,-20.5 - parent: 4812 - type: Transform - - uid: 9957 - components: - - pos: -46.5,-19.5 - parent: 4812 - type: Transform - - uid: 10635 - components: - - pos: -47.5,-10.5 - parent: 4812 - type: Transform - - uid: 10964 - components: - - pos: 3.5,-37.5 - parent: 4812 - type: Transform - - uid: 10989 - components: - - pos: 3.5,-41.5 - parent: 4812 - type: Transform - - uid: 11006 - components: - - pos: 3.5,-40.5 - parent: 4812 - type: Transform - - uid: 11007 - components: - - pos: 3.5,-39.5 - parent: 4812 - type: Transform - - uid: 11008 - components: - - pos: 3.5,-38.5 - parent: 4812 - type: Transform - - uid: 11030 - components: - - pos: 3.5,-42.5 - parent: 4812 - type: Transform - - uid: 11031 - components: - - pos: 3.5,-43.5 - parent: 4812 - type: Transform - - uid: 11032 - components: - - pos: 4.5,-43.5 - parent: 4812 - type: Transform - - uid: 11033 - components: - - pos: 5.5,-43.5 - parent: 4812 - type: Transform - - uid: 11034 - components: - - pos: 6.5,-43.5 - parent: 4812 - type: Transform - - uid: 11035 - components: - - pos: 6.5,-44.5 - parent: 4812 - type: Transform - - uid: 11036 - components: - - pos: 6.5,-45.5 - parent: 4812 - type: Transform - - uid: 11037 - components: - - pos: 7.5,-45.5 - parent: 4812 - type: Transform - - uid: 11038 - components: - - pos: 8.5,-45.5 - parent: 4812 - type: Transform - - uid: 11039 - components: - - pos: 9.5,-45.5 - parent: 4812 - type: Transform - - uid: 11040 - components: - - pos: 10.5,-45.5 - parent: 4812 - type: Transform - - uid: 11041 - components: - - pos: 11.5,-45.5 - parent: 4812 - type: Transform - - uid: 11042 - components: - - pos: 12.5,-43.5 - parent: 4812 - type: Transform - - uid: 11043 - components: - - pos: 11.5,-44.5 - parent: 4812 - type: Transform - - uid: 11044 - components: - - pos: 11.5,-43.5 - parent: 4812 - type: Transform - - uid: 11045 - components: - - pos: 13.5,-43.5 - parent: 4812 - type: Transform - - uid: 11046 - components: - - pos: 14.5,-43.5 - parent: 4812 - type: Transform - - uid: 11110 - components: - - pos: 15.5,-43.5 - parent: 4812 - type: Transform - - uid: 11111 - components: - - pos: 15.5,-42.5 - parent: 4812 - type: Transform - - uid: 11112 - components: - - pos: 15.5,-41.5 - parent: 4812 - type: Transform - - uid: 11113 - components: - - pos: 15.5,-40.5 - parent: 4812 - type: Transform - - uid: 11114 - components: - - pos: 15.5,-39.5 - parent: 4812 - type: Transform - - uid: 11115 - components: - - pos: 15.5,-38.5 - parent: 4812 - type: Transform - - uid: 11116 - components: - - pos: 15.5,-37.5 - parent: 4812 - type: Transform - - uid: 11117 - components: - - pos: 15.5,-36.5 - parent: 4812 - type: Transform - - uid: 11118 - components: - - pos: 15.5,-35.5 - parent: 4812 - type: Transform - - uid: 11119 - components: - - pos: 34.5,-30.5 - parent: 4812 - type: Transform - - uid: 11120 - components: - - pos: 34.5,-31.5 - parent: 4812 - type: Transform - - uid: 11125 - components: - - pos: 22.5,-39.5 - parent: 4812 - type: Transform - - uid: 11128 - components: - - pos: 19.5,-39.5 - parent: 4812 - type: Transform - - uid: 11131 - components: - - pos: 16.5,-39.5 - parent: 4812 - type: Transform - - uid: 11132 - components: - - pos: 24.5,-37.5 - parent: 4812 - type: Transform - - uid: 11133 - components: - - pos: 23.5,-37.5 - parent: 4812 - type: Transform - - uid: 11134 - components: - - pos: 23.5,-38.5 - parent: 4812 - type: Transform - - uid: 11135 - components: - - pos: 27.5,-35.5 - parent: 4812 - type: Transform - - uid: 11136 - components: - - pos: 36.5,-38.5 - parent: 4812 - type: Transform - - uid: 11137 - components: - - pos: 37.5,-38.5 - parent: 4812 - type: Transform - - uid: 11138 - components: - - pos: 37.5,-37.5 - parent: 4812 - type: Transform - - uid: 11140 - components: - - pos: 38.5,-37.5 - parent: 4812 - type: Transform - - uid: 11142 - components: - - pos: 23.5,-39.5 - parent: 4812 - type: Transform - - uid: 11263 - components: - - pos: 26.5,-37.5 - parent: 4812 - type: Transform - - uid: 11264 - components: - - pos: 27.5,-37.5 - parent: 4812 - type: Transform - - uid: 11265 - components: - - pos: 27.5,-36.5 - parent: 4812 - type: Transform - - uid: 11340 - components: - - pos: 38.5,-35.5 - parent: 4812 - type: Transform - - uid: 11341 - components: - - pos: 38.5,-34.5 - parent: 4812 - type: Transform - - uid: 11342 - components: - - pos: 38.5,-33.5 - parent: 4812 - type: Transform - - uid: 11344 - components: - - pos: 36.5,-31.5 - parent: 4812 - type: Transform - - uid: 11345 - components: - - pos: 35.5,-31.5 - parent: 4812 - type: Transform - - uid: 11371 - components: - - pos: 35.5,-39.5 - parent: 4812 - type: Transform - - uid: 11372 - components: - - pos: 35.5,-40.5 - parent: 4812 - type: Transform - - uid: 11373 - components: - - pos: 34.5,-40.5 - parent: 4812 - type: Transform - - uid: 11374 - components: - - pos: 33.5,-40.5 - parent: 4812 - type: Transform - - uid: 11375 - components: - - pos: 32.5,-40.5 - parent: 4812 - type: Transform - - uid: 11376 - components: - - pos: 31.5,-40.5 - parent: 4812 - type: Transform - - uid: 11377 - components: - - pos: 30.5,-40.5 - parent: 4812 - type: Transform - - uid: 11378 - components: - - pos: 29.5,-40.5 - parent: 4812 - type: Transform - - uid: 11379 - components: - - pos: 29.5,-39.5 - parent: 4812 - type: Transform - - uid: 11380 - components: - - pos: 29.5,-38.5 - parent: 4812 - type: Transform - - uid: 11381 - components: - - pos: 29.5,-37.5 - parent: 4812 - type: Transform - - uid: 11382 - components: - - pos: 28.5,-37.5 - parent: 4812 - type: Transform -- proto: WallSolid - entities: - - uid: 1 - components: - - pos: 0.5,-9.5 - parent: 4812 - type: Transform - - uid: 2 - components: - - pos: 0.5,-10.5 - parent: 4812 - type: Transform - - uid: 3 - components: - - pos: 1.5,-4.5 - parent: 4812 - type: Transform - - uid: 4 - components: - - pos: 1.5,-3.5 - parent: 4812 - type: Transform - - uid: 5 - components: - - pos: 1.5,0.5 - parent: 4812 - type: Transform - - uid: 6 - components: - - pos: 1.5,1.5 - parent: 4812 - type: Transform - - uid: 7 - components: - - pos: 4.5,1.5 - parent: 4812 - type: Transform - - uid: 8 - components: - - pos: 4.5,3.5 - parent: 4812 - type: Transform - - uid: 9 - components: - - pos: 4.5,9.5 - parent: 4812 - type: Transform - - uid: 10 - components: - - pos: 4.5,8.5 - parent: 4812 - type: Transform - - uid: 11 - components: - - pos: 4.5,4.5 - parent: 4812 - type: Transform - - uid: 13 - components: - - pos: 4.5,5.5 - parent: 4812 - type: Transform - - uid: 14 - components: - - pos: 5.5,5.5 - parent: 4812 - type: Transform - - uid: 15 - components: - - pos: 6.5,5.5 - parent: 4812 - type: Transform - - uid: 16 - components: - - pos: 7.5,5.5 - parent: 4812 - type: Transform - - uid: 17 - components: - - pos: 8.5,5.5 - parent: 4812 - type: Transform - - uid: 18 - components: - - pos: 8.5,6.5 - parent: 4812 - type: Transform - - uid: 19 - components: - - pos: 8.5,8.5 - parent: 4812 - type: Transform - - uid: 20 - components: - - pos: 8.5,9.5 - parent: 4812 - type: Transform - - uid: 21 - components: - - pos: 8.5,10.5 - parent: 4812 - type: Transform - - uid: 22 - components: - - pos: 7.5,10.5 - parent: 4812 - type: Transform - - uid: 23 - components: - - pos: 6.5,10.5 - parent: 4812 - type: Transform - - uid: 24 - components: - - pos: 5.5,10.5 - parent: 4812 - type: Transform - - uid: 25 - components: - - pos: 4.5,10.5 - parent: 4812 - type: Transform - - uid: 26 - components: - - pos: 3.5,10.5 - parent: 4812 - type: Transform - - uid: 27 - components: - - pos: 2.5,10.5 - parent: 4812 - type: Transform - - uid: 28 - components: - - pos: -6.5,10.5 - parent: 4812 - type: Transform - - uid: 29 - components: - - pos: -6.5,11.5 - parent: 4812 - type: Transform - - uid: 30 - components: - - pos: -6.5,12.5 - parent: 4812 - type: Transform - - uid: 31 - components: - - pos: -5.5,12.5 - parent: 4812 - type: Transform - - uid: 33 - components: - - pos: -5.5,15.5 - parent: 4812 - type: Transform - - uid: 34 - components: - - pos: -5.5,14.5 - parent: 4812 - type: Transform - - uid: 36 - components: - - pos: 0.5,15.5 - parent: 4812 - type: Transform - - uid: 37 - components: - - pos: 0.5,13.5 - parent: 4812 - type: Transform - - uid: 38 - components: - - pos: 0.5,12.5 - parent: 4812 - type: Transform - - uid: 39 - components: - - pos: 1.5,12.5 - parent: 4812 - type: Transform - - uid: 40 - components: - - pos: 1.5,11.5 - parent: 4812 - type: Transform - - uid: 41 - components: - - pos: 1.5,10.5 - parent: 4812 - type: Transform - - uid: 42 - components: - - pos: 1.5,-9.5 - parent: 4812 - type: Transform - - uid: 43 - components: - - pos: 2.5,-9.5 - parent: 4812 - type: Transform - - uid: 44 - components: - - pos: 2.5,-10.5 - parent: 4812 - type: Transform - - uid: 45 - components: - - pos: 1.5,-7.5 - parent: 4812 - type: Transform - - uid: 46 - components: - - pos: 1.5,-6.5 - parent: 4812 - type: Transform - - uid: 47 - components: - - pos: 1.5,-5.5 - parent: 4812 - type: Transform - - uid: 48 - components: - - pos: -5.5,-10.5 - parent: 4812 - type: Transform - - uid: 49 - components: - - pos: -5.5,-9.5 - parent: 4812 - type: Transform - - uid: 50 - components: - - pos: -5.5,-8.5 - parent: 4812 - type: Transform - - uid: 51 - components: - - pos: -6.5,-8.5 - parent: 4812 - type: Transform - - uid: 52 - components: - - pos: -6.5,-4.5 - parent: 4812 - type: Transform - - uid: 53 - components: - - pos: -6.5,-2.5 - parent: 4812 - type: Transform - - uid: 54 - components: - - pos: -6.5,-1.5 - parent: 4812 - type: Transform - - uid: 55 - components: - - pos: -6.5,0.5 - parent: 4812 - type: Transform - - uid: 56 - components: - - pos: -6.5,1.5 - parent: 4812 - type: Transform - - uid: 57 - components: - - pos: -6.5,2.5 - parent: 4812 - type: Transform - - uid: 58 - components: - - pos: -7.5,2.5 - parent: 4812 - type: Transform - - uid: 59 - components: - - pos: -7.5,10.5 - parent: 4812 - type: Transform - - uid: 60 - components: - - pos: -9.5,10.5 - parent: 4812 - type: Transform - - uid: 61 - components: - - pos: -10.5,10.5 - parent: 4812 - type: Transform - - uid: 62 - components: - - pos: -11.5,10.5 - parent: 4812 - type: Transform - - uid: 63 - components: - - pos: -11.5,9.5 - parent: 4812 - type: Transform - - uid: 64 - components: - - pos: -11.5,8.5 - parent: 4812 - type: Transform - - uid: 65 - components: - - pos: -11.5,7.5 - parent: 4812 - type: Transform - - uid: 66 - components: - - pos: -11.5,6.5 - parent: 4812 - type: Transform - - uid: 67 - components: - - pos: -11.5,5.5 - parent: 4812 - type: Transform - - uid: 68 - components: - - pos: -11.5,4.5 - parent: 4812 - type: Transform - - uid: 69 - components: - - pos: -11.5,3.5 - parent: 4812 - type: Transform - - uid: 70 - components: - - pos: -11.5,2.5 - parent: 4812 - type: Transform - - uid: 71 - components: - - pos: -11.5,1.5 - parent: 4812 - type: Transform - - uid: 72 - components: - - pos: -11.5,0.5 - parent: 4812 - type: Transform - - uid: 73 - components: - - pos: -11.5,-0.5 - parent: 4812 - type: Transform - - uid: 74 - components: - - pos: -11.5,-1.5 - parent: 4812 - type: Transform - - uid: 75 - components: - - pos: -11.5,-2.5 - parent: 4812 - type: Transform - - uid: 76 - components: - - pos: -7.5,-2.5 - parent: 4812 - type: Transform - - uid: 77 - components: - - pos: -8.5,-2.5 - parent: 4812 - type: Transform - - uid: 78 - components: - - pos: -9.5,-2.5 - parent: 4812 - type: Transform - - uid: 79 - components: - - pos: -10.5,-2.5 - parent: 4812 - type: Transform - - uid: 80 - components: - - pos: -9.5,2.5 - parent: 4812 - type: Transform - - uid: 81 - components: - - pos: -10.5,2.5 - parent: 4812 - type: Transform - - uid: 82 - components: - - pos: 8.5,-0.5 - parent: 4812 - type: Transform - - uid: 83 - components: - - pos: 8.5,0.5 - parent: 4812 - type: Transform - - uid: 84 - components: - - pos: 8.5,1.5 - parent: 4812 - type: Transform - - uid: 85 - components: - - pos: 7.5,1.5 - parent: 4812 - type: Transform - - uid: 86 - components: - - pos: 6.5,1.5 - parent: 4812 - type: Transform - - uid: 87 - components: - - pos: 5.5,1.5 - parent: 4812 - type: Transform - - uid: 88 - components: - - pos: 8.5,-2.5 - parent: 4812 - type: Transform - - uid: 89 - components: - - pos: 8.5,-3.5 - parent: 4812 - type: Transform - - uid: 90 - components: - - pos: 8.5,-4.5 - parent: 4812 - type: Transform - - uid: 91 - components: - - pos: 7.5,-4.5 - parent: 4812 - type: Transform - - uid: 92 - components: - - pos: 6.5,-4.5 - parent: 4812 - type: Transform - - uid: 93 - components: - - pos: 5.5,-4.5 - parent: 4812 - type: Transform - - uid: 94 - components: - - pos: 3.5,-4.5 - parent: 4812 - type: Transform - - uid: 95 - components: - - pos: 2.5,-4.5 - parent: 4812 - type: Transform - - uid: 96 - components: - - pos: 2.5,-7.5 - parent: 4812 - type: Transform - - uid: 97 - components: - - pos: 3.5,-7.5 - parent: 4812 - type: Transform - - uid: 98 - components: - - pos: 4.5,-7.5 - parent: 4812 - type: Transform - - uid: 99 - components: - - pos: 4.5,-8.5 - parent: 4812 - type: Transform - - uid: 100 - components: - - pos: 5.5,-8.5 - parent: 4812 - type: Transform - - uid: 101 - components: - - pos: 7.5,-8.5 - parent: 4812 - type: Transform - - uid: 102 - components: - - pos: 8.5,-8.5 - parent: 4812 - type: Transform - - uid: 103 - components: - - pos: 6.5,-8.5 - parent: 4812 - type: Transform - - uid: 104 - components: - - pos: 8.5,-7.5 - parent: 4812 - type: Transform - - uid: 105 - components: - - pos: 8.5,-5.5 - parent: 4812 - type: Transform - - uid: 139 - components: - - pos: 3.5,-10.5 - parent: 4812 - type: Transform - - uid: 140 - components: - - pos: 4.5,-10.5 - parent: 4812 - type: Transform - - uid: 141 - components: - - pos: 5.5,-10.5 - parent: 4812 - type: Transform - - uid: 142 - components: - - pos: 6.5,-10.5 - parent: 4812 - type: Transform - - uid: 143 - components: - - pos: 7.5,-10.5 - parent: 4812 - type: Transform - - uid: 145 - components: - - pos: 9.5,-10.5 - parent: 4812 - type: Transform - - uid: 146 - components: - - pos: 10.5,-10.5 - parent: 4812 - type: Transform - - uid: 147 - components: - - pos: 10.5,-9.5 - parent: 4812 - type: Transform - - uid: 148 - components: - - pos: 10.5,-8.5 - parent: 4812 - type: Transform - - uid: 149 - components: - - pos: 10.5,-7.5 - parent: 4812 - type: Transform - - uid: 150 - components: - - pos: 10.5,-6.5 - parent: 4812 - type: Transform - - uid: 151 - components: - - pos: 10.5,-5.5 - parent: 4812 - type: Transform - - uid: 152 - components: - - pos: 10.5,-4.5 - parent: 4812 - type: Transform - - uid: 153 - components: - - pos: 10.5,-3.5 - parent: 4812 - type: Transform - - uid: 154 - components: - - pos: 10.5,-2.5 - parent: 4812 - type: Transform - - uid: 155 - components: - - pos: 10.5,-1.5 - parent: 4812 - type: Transform - - uid: 156 - components: - - pos: 10.5,-0.5 - parent: 4812 - type: Transform - - uid: 157 - components: - - pos: 10.5,0.5 - parent: 4812 - type: Transform - - uid: 158 - components: - - pos: 10.5,1.5 - parent: 4812 - type: Transform - - uid: 159 - components: - - pos: 10.5,2.5 - parent: 4812 - type: Transform - - uid: 161 - components: - - pos: 10.5,4.5 - parent: 4812 - type: Transform - - uid: 162 - components: - - pos: 10.5,5.5 - parent: 4812 - type: Transform - - uid: 163 - components: - - pos: 10.5,6.5 - parent: 4812 - type: Transform - - uid: 164 - components: - - pos: 10.5,7.5 - parent: 4812 - type: Transform - - uid: 165 - components: - - pos: 10.5,8.5 - parent: 4812 - type: Transform - - uid: 166 - components: - - pos: 10.5,9.5 - parent: 4812 - type: Transform - - uid: 167 - components: - - pos: 10.5,10.5 - parent: 4812 - type: Transform - - uid: 168 - components: - - pos: 10.5,11.5 - parent: 4812 - type: Transform - - uid: 169 - components: - - pos: 10.5,12.5 - parent: 4812 - type: Transform - - uid: 177 - components: - - pos: -21.5,13.5 - parent: 4812 - type: Transform - - uid: 180 - components: - - pos: -21.5,15.5 - parent: 4812 - type: Transform - - uid: 181 - components: - - pos: -21.5,18.5 - parent: 4812 - type: Transform - - uid: 182 - components: - - pos: -21.5,17.5 - parent: 4812 - type: Transform - - uid: 183 - components: - - pos: -20.5,18.5 - parent: 4812 - type: Transform - - uid: 185 - components: - - pos: -16.5,18.5 - parent: 4812 - type: Transform - - uid: 186 - components: - - pos: -21.5,12.5 - parent: 4812 - type: Transform - - uid: 189 - components: - - pos: -21.5,7.5 - parent: 4812 - type: Transform - - uid: 190 - components: - - pos: -21.5,6.5 - parent: 4812 - type: Transform - - uid: 191 - components: - - pos: -22.5,6.5 - parent: 4812 - type: Transform - - uid: 192 - components: - - pos: -23.5,6.5 - parent: 4812 - type: Transform - - uid: 193 - components: - - pos: -24.5,6.5 - parent: 4812 - type: Transform - - uid: 194 - components: - - pos: -24.5,5.5 - parent: 4812 - type: Transform - - uid: 195 - components: - - pos: -24.5,-1.5 - parent: 4812 - type: Transform - - uid: 196 - components: - - pos: -24.5,-2.5 - parent: 4812 - type: Transform - - uid: 197 - components: - - pos: -23.5,-2.5 - parent: 4812 - type: Transform - - uid: 198 - components: - - pos: -23.5,-3.5 - parent: 4812 - type: Transform - - uid: 199 - components: - - pos: -23.5,-5.5 - parent: 4812 - type: Transform - - uid: 200 - components: - - pos: -24.5,-6.5 - parent: 4812 - type: Transform - - uid: 201 - components: - - pos: -24.5,-5.5 - parent: 4812 - type: Transform - - uid: 202 - components: - - pos: -24.5,-7.5 - parent: 4812 - type: Transform - - uid: 203 - components: - - pos: -24.5,-8.5 - parent: 4812 - type: Transform - - uid: 204 - components: - - pos: -24.5,-9.5 - parent: 4812 - type: Transform - - uid: 205 - components: - - pos: -24.5,-10.5 - parent: 4812 - type: Transform - - uid: 206 - components: - - pos: -23.5,-10.5 - parent: 4812 - type: Transform - - uid: 207 - components: - - pos: -21.5,-10.5 - parent: 4812 - type: Transform - - uid: 208 - components: - - pos: -20.5,-10.5 - parent: 4812 - type: Transform - - uid: 209 - components: - - pos: -19.5,-10.5 - parent: 4812 - type: Transform - - uid: 210 - components: - - pos: -18.5,-10.5 - parent: 4812 - type: Transform - - uid: 211 - components: - - pos: -7.5,-10.5 - parent: 4812 - type: Transform - - uid: 212 - components: - - pos: -11.5,-10.5 - parent: 4812 - type: Transform - - uid: 213 - components: - - pos: -13.5,-10.5 - parent: 4812 - type: Transform - - uid: 214 - components: - - pos: -15.5,-10.5 - parent: 4812 - type: Transform - - uid: 225 - components: - - pos: -19.5,-9.5 - parent: 4812 - type: Transform - - uid: 226 - components: - - pos: -19.5,-8.5 - parent: 4812 - type: Transform - - uid: 227 - components: - - pos: -19.5,-7.5 - parent: 4812 - type: Transform - - uid: 228 - components: - - pos: -19.5,-6.5 - parent: 4812 - type: Transform - - uid: 229 - components: - - pos: -19.5,-5.5 - parent: 4812 - type: Transform - - uid: 230 - components: - - pos: -20.5,-5.5 - parent: 4812 - type: Transform - - uid: 231 - components: - - pos: -22.5,-5.5 - parent: 4812 - type: Transform - - uid: 232 - components: - - pos: -7.5,-4.5 - parent: 4812 - type: Transform - - uid: 233 - components: - - pos: -8.5,-4.5 - parent: 4812 - type: Transform - - uid: 234 - components: - - pos: -9.5,-4.5 - parent: 4812 - type: Transform - - uid: 235 - components: - - pos: -11.5,-4.5 - parent: 4812 - type: Transform - - uid: 236 - components: - - pos: -12.5,-4.5 - parent: 4812 - type: Transform - - uid: 237 - components: - - pos: -13.5,-4.5 - parent: 4812 - type: Transform - - uid: 238 - components: - - pos: -14.5,-4.5 - parent: 4812 - type: Transform - - uid: 239 - components: - - pos: -15.5,-4.5 - parent: 4812 - type: Transform - - uid: 240 - components: - - pos: -16.5,-4.5 - parent: 4812 - type: Transform - - uid: 241 - components: - - pos: -17.5,-4.5 - parent: 4812 - type: Transform - - uid: 242 - components: - - pos: -18.5,-4.5 - parent: 4812 - type: Transform - - uid: 243 - components: - - pos: -19.5,-4.5 - parent: 4812 - type: Transform - - uid: 244 - components: - - pos: -22.5,-2.5 - parent: 4812 - type: Transform - - uid: 245 - components: - - pos: -21.5,-2.5 - parent: 4812 - type: Transform - - uid: 246 - components: - - pos: -20.5,-2.5 - parent: 4812 - type: Transform - - uid: 247 - components: - - pos: -19.5,-2.5 - parent: 4812 - type: Transform - - uid: 248 - components: - - pos: -18.5,-2.5 - parent: 4812 - type: Transform - - uid: 249 - components: - - pos: -17.5,-2.5 - parent: 4812 - type: Transform - - uid: 250 - components: - - pos: -16.5,-2.5 - parent: 4812 - type: Transform - - uid: 262 - components: - - pos: -13.5,6.5 - parent: 4812 - type: Transform - - uid: 263 - components: - - pos: -14.5,6.5 - parent: 4812 - type: Transform - - uid: 264 - components: - - pos: -15.5,6.5 - parent: 4812 - type: Transform - - uid: 265 - components: - - pos: -16.5,6.5 - parent: 4812 - type: Transform - - uid: 266 - components: - - pos: -17.5,6.5 - parent: 4812 - type: Transform - - uid: 267 - components: - - pos: -18.5,6.5 - parent: 4812 - type: Transform - - uid: 268 - components: - - pos: -19.5,6.5 - parent: 4812 - type: Transform - - uid: 269 - components: - - pos: -20.5,6.5 - parent: 4812 - type: Transform - - uid: 270 - components: - - pos: -19.5,3.5 - parent: 4812 - type: Transform - - uid: 271 - components: - - pos: -19.5,4.5 - parent: 4812 - type: Transform - - uid: 272 - components: - - pos: -19.5,5.5 - parent: 4812 - type: Transform - - uid: 273 - components: - - pos: -17.5,3.5 - parent: 4812 - type: Transform - - uid: 274 - components: - - pos: -16.5,3.5 - parent: 4812 - type: Transform - - uid: 275 - components: - - pos: -16.5,4.5 - parent: 4812 - type: Transform - - uid: 276 - components: - - pos: -16.5,5.5 - parent: 4812 - type: Transform - - uid: 279 - components: - - pos: -16.5,-1.5 - parent: 4812 - type: Transform - - uid: 280 - components: - - pos: -16.5,-0.5 - parent: 4812 - type: Transform - - uid: 281 - components: - - pos: -16.5,0.5 - parent: 4812 - type: Transform - - uid: 282 - components: - - pos: -17.5,0.5 - parent: 4812 - type: Transform - - uid: 283 - components: - - pos: -19.5,-1.5 - parent: 4812 - type: Transform - - uid: 284 - components: - - pos: -19.5,-0.5 - parent: 4812 - type: Transform - - uid: 285 - components: - - pos: -19.5,0.5 - parent: 4812 - type: Transform - - uid: 286 - components: - - pos: -15.5,7.5 - parent: 4812 - type: Transform - - uid: 287 - components: - - pos: -15.5,8.5 - parent: 4812 - type: Transform - - uid: 288 - components: - - pos: -15.5,9.5 - parent: 4812 - type: Transform - - uid: 289 - components: - - pos: -15.5,11.5 - parent: 4812 - type: Transform - - uid: 290 - components: - - pos: -15.5,12.5 - parent: 4812 - type: Transform - - uid: 291 - components: - - pos: -15.5,13.5 - parent: 4812 - type: Transform - - uid: 292 - components: - - pos: -16.5,13.5 - parent: 4812 - type: Transform - - uid: 293 - components: - - pos: -17.5,13.5 - parent: 4812 - type: Transform - - uid: 294 - components: - - pos: -18.5,13.5 - parent: 4812 - type: Transform - - uid: 295 - components: - - pos: -19.5,13.5 - parent: 4812 - type: Transform - - uid: 296 - components: - - pos: -20.5,13.5 - parent: 4812 - type: Transform - - uid: 318 - components: - - pos: 1.5,4.5 - parent: 4812 - type: Transform - - uid: 429 - components: - - pos: 13.5,9.5 - parent: 4812 - type: Transform - - uid: 898 - components: - - pos: -13.5,7.5 - parent: 4812 - type: Transform - - uid: 899 - components: - - pos: -13.5,8.5 - parent: 4812 - type: Transform - - uid: 900 - components: - - pos: -13.5,9.5 - parent: 4812 - type: Transform - - uid: 1253 - components: - - pos: -16.5,1.5 - parent: 4812 - type: Transform - - uid: 1917 - components: - - pos: 9.5,29.5 - parent: 4812 - type: Transform - - uid: 1918 - components: - - pos: 9.5,27.5 - parent: 4812 - type: Transform - - uid: 1919 - components: - - pos: 10.5,27.5 - parent: 4812 - type: Transform - - uid: 1978 - components: - - pos: -15.5,26.5 - parent: 4812 - type: Transform - - uid: 1979 - components: - - pos: -14.5,26.5 - parent: 4812 - type: Transform - - uid: 1980 - components: - - pos: -14.5,25.5 - parent: 4812 - type: Transform - - uid: 1981 - components: - - pos: -14.5,27.5 - parent: 4812 - type: Transform - - uid: 1982 - components: - - pos: -14.5,29.5 - parent: 4812 - type: Transform - - uid: 2738 - components: - - pos: 13.5,21.5 - parent: 4812 - type: Transform - - uid: 2739 - components: - - pos: 13.5,22.5 - parent: 4812 - type: Transform - - uid: 2740 - components: - - pos: 13.5,23.5 - parent: 4812 - type: Transform - - uid: 2742 - components: - - pos: 13.5,25.5 - parent: 4812 - type: Transform - - uid: 2743 - components: - - pos: 13.5,26.5 - parent: 4812 - type: Transform - - uid: 2744 - components: - - pos: 13.5,27.5 - parent: 4812 - type: Transform - - uid: 2745 - components: - - pos: 13.5,28.5 - parent: 4812 - type: Transform - - uid: 2788 - components: - - pos: 13.5,16.5 - parent: 4812 - type: Transform - - uid: 2789 - components: - - pos: 13.5,18.5 - parent: 4812 - type: Transform - - uid: 2790 - components: - - pos: 21.5,16.5 - parent: 4812 - type: Transform - - uid: 2791 - components: - - pos: 17.5,16.5 - parent: 4812 - type: Transform - - uid: 2792 - components: - - pos: 21.5,12.5 - parent: 4812 - type: Transform - - uid: 2793 - components: - - pos: 20.5,12.5 - parent: 4812 - type: Transform - - uid: 2794 - components: - - pos: 19.5,12.5 - parent: 4812 - type: Transform - - uid: 2795 - components: - - pos: 18.5,12.5 - parent: 4812 - type: Transform - - uid: 2796 - components: - - pos: 17.5,12.5 - parent: 4812 - type: Transform - - uid: 2797 - components: - - pos: 16.5,12.5 - parent: 4812 - type: Transform - - uid: 2798 - components: - - pos: 15.5,12.5 - parent: 4812 - type: Transform - - uid: 2799 - components: - - pos: 14.5,12.5 - parent: 4812 - type: Transform - - uid: 2800 - components: - - pos: 13.5,12.5 - parent: 4812 - type: Transform - - uid: 2851 - components: - - pos: 17.5,22.5 - parent: 4812 - type: Transform - - uid: 3348 - components: - - pos: 13.5,11.5 - parent: 4812 - type: Transform - - uid: 3351 - components: - - pos: 19.5,11.5 - parent: 4812 - type: Transform - - uid: 3354 - components: - - pos: 19.5,9.5 - parent: 4812 - type: Transform - - uid: 3435 - components: - - pos: 17.5,33.5 - parent: 4812 - type: Transform - - uid: 3462 - components: - - pos: 18.5,34.5 - parent: 4812 - type: Transform - - uid: 3463 - components: - - pos: 15.5,33.5 - parent: 4812 - type: Transform - - uid: 3474 - components: - - pos: 18.5,44.5 - parent: 4812 - type: Transform - - uid: 3475 - components: - - pos: 16.5,41.5 - parent: 4812 - type: Transform - - uid: 3476 - components: - - pos: 10.5,40.5 - parent: 4812 - type: Transform - - uid: 3980 - components: - - pos: -17.5,37.5 - parent: 4812 - type: Transform - - uid: 3981 - components: - - pos: -14.5,33.5 - parent: 4812 - type: Transform - - uid: 3983 - components: - - pos: 13.5,8.5 - parent: 4812 - type: Transform - - uid: 3984 - components: - - pos: 13.5,6.5 - parent: 4812 - type: Transform - - uid: 3985 - components: - - pos: 13.5,5.5 - parent: 4812 - type: Transform - - uid: 3986 - components: - - pos: 14.5,9.5 - parent: 4812 - type: Transform - - uid: 3987 - components: - - pos: 15.5,9.5 - parent: 4812 - type: Transform - - uid: 3988 - components: - - pos: 16.5,9.5 - parent: 4812 - type: Transform - - uid: 3989 - components: - - pos: 17.5,9.5 - parent: 4812 - type: Transform - - uid: 4006 - components: - - pos: 19.5,5.5 - parent: 4812 - type: Transform - - uid: 4013 - components: - - pos: -44.5,-31.5 - parent: 4812 - type: Transform - - uid: 4014 - components: - - pos: -43.5,-31.5 - parent: 4812 - type: Transform - - uid: 4015 - components: - - pos: 19.5,3.5 - parent: 4812 - type: Transform - - uid: 4016 - components: - - pos: 23.5,1.5 - parent: 4812 - type: Transform - - uid: 4017 - components: - - pos: 21.5,1.5 - parent: 4812 - type: Transform - - uid: 4018 - components: - - pos: 20.5,0.5 - parent: 4812 - type: Transform - - uid: 4019 - components: - - pos: 18.5,0.5 - parent: 4812 - type: Transform - - uid: 4020 - components: - - pos: 17.5,0.5 - parent: 4812 - type: Transform - - uid: 4021 - components: - - pos: 16.5,0.5 - parent: 4812 - type: Transform - - uid: 4022 - components: - - pos: 16.5,1.5 - parent: 4812 - type: Transform - - uid: 4023 - components: - - pos: 16.5,2.5 - parent: 4812 - type: Transform - - uid: 4024 - components: - - pos: 17.5,3.5 - parent: 4812 - type: Transform - - uid: 4025 - components: - - pos: 14.5,4.5 - parent: 4812 - type: Transform - - uid: 4026 - components: - - pos: 14.5,5.5 - parent: 4812 - type: Transform - - uid: 4027 - components: - - pos: 15.5,5.5 - parent: 4812 - type: Transform - - uid: 4028 - components: - - pos: 16.5,5.5 - parent: 4812 - type: Transform - - uid: 4029 - components: - - pos: 17.5,5.5 - parent: 4812 - type: Transform - - uid: 4030 - components: - - pos: 17.5,6.5 - parent: 4812 - type: Transform - - uid: 4031 - components: - - pos: 17.5,7.5 - parent: 4812 - type: Transform - - uid: 4032 - components: - - pos: 17.5,8.5 - parent: 4812 - type: Transform - - uid: 4033 - components: - - pos: 14.5,2.5 - parent: 4812 - type: Transform - - uid: 4034 - components: - - pos: 14.5,1.5 - parent: 4812 - type: Transform - - uid: 4035 - components: - - pos: 14.5,0.5 - parent: 4812 - type: Transform - - uid: 4036 - components: - - pos: 14.5,-0.5 - parent: 4812 - type: Transform - - uid: 4037 - components: - - pos: 14.5,-1.5 - parent: 4812 - type: Transform - - uid: 4038 - components: - - pos: 23.5,-0.5 - parent: 4812 - type: Transform - - uid: 4039 - components: - - pos: 23.5,-1.5 - parent: 4812 - type: Transform - - uid: 4040 - components: - - pos: 22.5,-1.5 - parent: 4812 - type: Transform - - uid: 4041 - components: - - pos: 21.5,-1.5 - parent: 4812 - type: Transform - - uid: 4042 - components: - - pos: 20.5,-1.5 - parent: 4812 - type: Transform - - uid: 4043 - components: - - pos: 19.5,-1.5 - parent: 4812 - type: Transform - - uid: 4044 - components: - - pos: 18.5,-1.5 - parent: 4812 - type: Transform - - uid: 4045 - components: - - pos: 17.5,-1.5 - parent: 4812 - type: Transform - - uid: 4046 - components: - - pos: 16.5,-1.5 - parent: 4812 - type: Transform - - uid: 4047 - components: - - pos: 15.5,-1.5 - parent: 4812 - type: Transform - - uid: 4049 - components: - - pos: 13.5,0.5 - parent: 4812 - type: Transform - - uid: 4118 - components: - - pos: 26.5,-6.5 - parent: 4812 - type: Transform - - uid: 4119 - components: - - pos: 26.5,-5.5 - parent: 4812 - type: Transform - - uid: 4120 - components: - - pos: 26.5,0.5 - parent: 4812 - type: Transform - - uid: 4121 - components: - - pos: 26.5,1.5 - parent: 4812 - type: Transform - - uid: 4123 - components: - - pos: 23.5,-4.5 - parent: 4812 - type: Transform - - uid: 4124 - components: - - pos: 22.5,-4.5 - parent: 4812 - type: Transform - - uid: 4125 - components: - - pos: 22.5,-5.5 - parent: 4812 - type: Transform - - uid: 4126 - components: - - pos: 21.5,-5.5 - parent: 4812 - type: Transform - - uid: 4127 - components: - - pos: 22.5,-6.5 - parent: 4812 - type: Transform - - uid: 4128 - components: - - pos: 13.5,-5.5 - parent: 4812 - type: Transform - - uid: 4129 - components: - - pos: 14.5,-5.5 - parent: 4812 - type: Transform - - uid: 4130 - components: - - pos: 14.5,-4.5 - parent: 4812 - type: Transform - - uid: 4131 - components: - - pos: 15.5,-4.5 - parent: 4812 - type: Transform - - uid: 4132 - components: - - pos: 14.5,-6.5 - parent: 4812 - type: Transform - - uid: 4133 - components: - - pos: 13.5,-10.5 - parent: 4812 - type: Transform - - uid: 4649 - components: - - pos: -4.5,-14.5 - parent: 4812 - type: Transform - - uid: 4650 - components: - - pos: -0.5,-14.5 - parent: 4812 - type: Transform - - uid: 4651 - components: - - pos: -0.5,-20.5 - parent: 4812 - type: Transform - - uid: 4652 - components: - - pos: -1.5,-20.5 - parent: 4812 - type: Transform - - uid: 4653 - components: - - pos: -2.5,-20.5 - parent: 4812 - type: Transform - - uid: 4654 - components: - - pos: -3.5,-20.5 - parent: 4812 - type: Transform - - uid: 4655 - components: - - pos: -4.5,-20.5 - parent: 4812 - type: Transform - - uid: 4717 - components: - - pos: -45.5,-26.5 - parent: 4812 - type: Transform - - uid: 4756 - components: - - pos: -45.5,-28.5 - parent: 4812 - type: Transform - - uid: 4757 - components: - - pos: -45.5,-29.5 - parent: 4812 - type: Transform - - uid: 4783 - components: - - pos: 3.5,-35.5 - parent: 4812 - type: Transform - - uid: 4784 - components: - - pos: 3.5,-34.5 - parent: 4812 - type: Transform - - uid: 4785 - components: - - pos: 3.5,-33.5 - parent: 4812 - type: Transform - - uid: 4786 - components: - - pos: 2.5,-33.5 - parent: 4812 - type: Transform - - uid: 4787 - components: - - pos: -0.5,-33.5 - parent: 4812 - type: Transform - - uid: 4788 - components: - - pos: -4.5,-33.5 - parent: 4812 - type: Transform - - uid: 4793 - components: - - pos: -11.5,-33.5 - parent: 4812 - type: Transform - - uid: 4794 - components: - - pos: -12.5,-33.5 - parent: 4812 - type: Transform - - uid: 4795 - components: - - pos: -12.5,-36.5 - parent: 4812 - type: Transform - - uid: 4797 - components: - - pos: -44.5,-29.5 - parent: 4812 - type: Transform - - uid: 4814 - components: - - pos: -18.5,-28.5 - parent: 4812 - type: Transform - - uid: 4916 - components: - - pos: -22.5,-24.5 - parent: 4812 - type: Transform - - uid: 4918 - components: - - pos: -23.5,-25.5 - parent: 4812 - type: Transform - - uid: 4919 - components: - - pos: -23.5,-26.5 - parent: 4812 - type: Transform - - uid: 4922 - components: - - pos: -23.5,-28.5 - parent: 4812 - type: Transform - - uid: 4937 - components: - - pos: -11.5,-29.5 - parent: 4812 - type: Transform - - uid: 5024 - components: - - pos: -17.5,-19.5 - parent: 4812 - type: Transform - - uid: 5050 - components: - - pos: -18.5,-25.5 - parent: 4812 - type: Transform - - uid: 5333 - components: - - pos: 17.5,-13.5 - parent: 4812 - type: Transform - - uid: 5334 - components: - - pos: 17.5,-14.5 - parent: 4812 - type: Transform - - uid: 5335 - components: - - pos: 18.5,-13.5 - parent: 4812 - type: Transform - - uid: 5338 - components: - - pos: 18.5,-19.5 - parent: 4812 - type: Transform - - uid: 5339 - components: - - pos: 17.5,-19.5 - parent: 4812 - type: Transform - - uid: 5340 - components: - - pos: 17.5,-18.5 - parent: 4812 - type: Transform - - uid: 5341 - components: - - pos: 17.5,-16.5 - parent: 4812 - type: Transform - - uid: 5342 - components: - - pos: 17.5,-15.5 - parent: 4812 - type: Transform - - uid: 5390 - components: - - pos: 13.5,-13.5 - parent: 4812 - type: Transform - - uid: 5425 - components: - - pos: 6.5,-19.5 - parent: 4812 - type: Transform - - uid: 5426 - components: - - pos: 7.5,-19.5 - parent: 4812 - type: Transform - - uid: 5427 - components: - - pos: 8.5,-19.5 - parent: 4812 - type: Transform - - uid: 5430 - components: - - pos: 8.5,-14.5 - parent: 4812 - type: Transform - - uid: 5457 - components: - - pos: 7.5,-27.5 - parent: 4812 - type: Transform - - uid: 5465 - components: - - pos: 7.5,-22.5 - parent: 4812 - type: Transform - - uid: 5466 - components: - - pos: 10.5,-22.5 - parent: 4812 - type: Transform - - uid: 5467 - components: - - pos: 3.5,-22.5 - parent: 4812 - type: Transform - - uid: 5468 - components: - - pos: 10.5,-27.5 - parent: 4812 - type: Transform - - uid: 5562 - components: - - pos: 30.5,-23.5 - parent: 4812 - type: Transform - - uid: 5563 - components: - - pos: 30.5,-27.5 - parent: 4812 - type: Transform - - uid: 5567 - components: - - pos: 30.5,-28.5 - parent: 4812 - type: Transform - - uid: 5619 - components: - - pos: 8.5,-16.5 - parent: 4812 - type: Transform - - uid: 5620 - components: - - pos: 8.5,-18.5 - parent: 4812 - type: Transform - - uid: 5836 - components: - - pos: 3.5,-32.5 - parent: 4812 - type: Transform - - uid: 5837 - components: - - pos: 3.5,-31.5 - parent: 4812 - type: Transform - - uid: 6498 - components: - - pos: -28.5,-12.5 - parent: 4812 - type: Transform - - uid: 6501 - components: - - pos: -28.5,-13.5 - parent: 4812 - type: Transform - - uid: 6502 - components: - - pos: -27.5,-13.5 - parent: 4812 - type: Transform - - uid: 6503 - components: - - pos: -21.5,-13.5 - parent: 4812 - type: Transform - - uid: 6504 - components: - - pos: -22.5,-13.5 - parent: 4812 - type: Transform - - uid: 6505 - components: - - pos: -21.5,-14.5 - parent: 4812 - type: Transform - - uid: 6506 - components: - - pos: -21.5,-15.5 - parent: 4812 - type: Transform - - uid: 6507 - components: - - pos: -21.5,-16.5 - parent: 4812 - type: Transform - - uid: 6508 - components: - - pos: -21.5,-17.5 - parent: 4812 - type: Transform - - uid: 6509 - components: - - pos: -21.5,-18.5 - parent: 4812 - type: Transform - - uid: 6510 - components: - - pos: -21.5,-19.5 - parent: 4812 - type: Transform - - uid: 6511 - components: - - pos: -21.5,-20.5 - parent: 4812 - type: Transform - - uid: 6512 - components: - - pos: -21.5,-21.5 - parent: 4812 - type: Transform - - uid: 6513 - components: - - pos: -22.5,-21.5 - parent: 4812 - type: Transform - - uid: 6514 - components: - - pos: -23.5,-21.5 - parent: 4812 - type: Transform - - uid: 6515 - components: - - pos: -24.5,-21.5 - parent: 4812 - type: Transform - - uid: 6516 - components: - - pos: -25.5,-21.5 - parent: 4812 - type: Transform - - uid: 6517 - components: - - pos: -26.5,-21.5 - parent: 4812 - type: Transform - - uid: 6518 - components: - - pos: -27.5,-21.5 - parent: 4812 - type: Transform - - uid: 6520 - components: - - pos: -29.5,-21.5 - parent: 4812 - type: Transform - - uid: 6521 - components: - - pos: -29.5,-20.5 - parent: 4812 - type: Transform - - uid: 6522 - components: - - pos: -30.5,-20.5 - parent: 4812 - type: Transform - - uid: 6523 - components: - - pos: -29.5,-22.5 - parent: 4812 - type: Transform - - uid: 6524 - components: - - pos: -29.5,-23.5 - parent: 4812 - type: Transform - - uid: 6525 - components: - - pos: -29.5,-24.5 - parent: 4812 - type: Transform - - uid: 6526 - components: - - pos: -30.5,-24.5 - parent: 4812 - type: Transform - - uid: 6527 - components: - - pos: -31.5,-24.5 - parent: 4812 - type: Transform - - uid: 6528 - components: - - pos: -32.5,-24.5 - parent: 4812 - type: Transform - - uid: 6529 - components: - - pos: -33.5,-24.5 - parent: 4812 - type: Transform - - uid: 6530 - components: - - pos: -33.5,-23.5 - parent: 4812 - type: Transform - - uid: 6531 - components: - - pos: -33.5,-22.5 - parent: 4812 - type: Transform - - uid: 6532 - components: - - pos: -33.5,-21.5 - parent: 4812 - type: Transform - - uid: 6533 - components: - - pos: -33.5,-20.5 - parent: 4812 - type: Transform - - uid: 6534 - components: - - pos: -33.5,-19.5 - parent: 4812 - type: Transform - - uid: 6535 - components: - - pos: -33.5,-18.5 - parent: 4812 - type: Transform - - uid: 6536 - components: - - pos: -33.5,-17.5 - parent: 4812 - type: Transform - - uid: 6537 - components: - - pos: -33.5,-16.5 - parent: 4812 - type: Transform - - uid: 6538 - components: - - pos: -33.5,-15.5 - parent: 4812 - type: Transform - - uid: 6539 - components: - - pos: -33.5,-14.5 - parent: 4812 - type: Transform - - uid: 6540 - components: - - pos: -33.5,-13.5 - parent: 4812 - type: Transform - - uid: 6541 - components: - - pos: -32.5,-13.5 - parent: 4812 - type: Transform - - uid: 6542 - components: - - pos: -31.5,-13.5 - parent: 4812 - type: Transform - - uid: 6543 - components: - - pos: -30.5,-13.5 - parent: 4812 - type: Transform - - uid: 6544 - components: - - pos: -29.5,-13.5 - parent: 4812 - type: Transform - - uid: 6545 - components: - - pos: -32.5,-20.5 - parent: 4812 - type: Transform - - uid: 6549 - components: - - pos: -17.5,-13.5 - parent: 4812 - type: Transform - - uid: 6654 - components: - - pos: -7.5,-24.5 - parent: 4812 - type: Transform - - uid: 6683 - components: - - pos: -18.5,-24.5 - parent: 4812 - type: Transform - - uid: 6711 - components: - - pos: -20.5,-37.5 - parent: 4812 - type: Transform - - uid: 6712 - components: - - pos: -21.5,-37.5 - parent: 4812 - type: Transform - - uid: 6713 - components: - - pos: -21.5,-38.5 - parent: 4812 - type: Transform - - uid: 6714 - components: - - pos: -25.5,-39.5 - parent: 4812 - type: Transform - - uid: 6715 - components: - - pos: -25.5,-38.5 - parent: 4812 - type: Transform - - uid: 6716 - components: - - pos: -26.5,-38.5 - parent: 4812 - type: Transform - - uid: 6717 - components: - - pos: -27.5,-38.5 - parent: 4812 - type: Transform - - uid: 6718 - components: - - pos: -28.5,-38.5 - parent: 4812 - type: Transform - - uid: 6719 - components: - - pos: -28.5,-37.5 - parent: 4812 - type: Transform - - uid: 6720 - components: - - pos: -28.5,-36.5 - parent: 4812 - type: Transform - - uid: 6721 - components: - - pos: -28.5,-35.5 - parent: 4812 - type: Transform - - uid: 6722 - components: - - pos: -28.5,-34.5 - parent: 4812 - type: Transform - - uid: 6723 - components: - - pos: -20.5,-35.5 - parent: 4812 - type: Transform - - uid: 6724 - components: - - pos: -20.5,-34.5 - parent: 4812 - type: Transform - - uid: 6725 - components: - - pos: -20.5,-33.5 - parent: 4812 - type: Transform - - uid: 6726 - components: - - pos: -20.5,-32.5 - parent: 4812 - type: Transform - - uid: 6727 - components: - - pos: -22.5,-34.5 - parent: 4812 - type: Transform - - uid: 6728 - components: - - pos: -23.5,-34.5 - parent: 4812 - type: Transform - - uid: 6729 - components: - - pos: -24.5,-33.5 - parent: 4812 - type: Transform - - uid: 6730 - components: - - pos: -25.5,-34.5 - parent: 4812 - type: Transform - - uid: 6731 - components: - - pos: -27.5,-34.5 - parent: 4812 - type: Transform - - uid: 6732 - components: - - pos: -27.5,-33.5 - parent: 4812 - type: Transform - - uid: 6733 - components: - - pos: -27.5,-32.5 - parent: 4812 - type: Transform - - uid: 6734 - components: - - pos: -27.5,-31.5 - parent: 4812 - type: Transform - - uid: 6739 - components: - - pos: -25.5,-32.5 - parent: 4812 - type: Transform - - uid: 6740 - components: - - pos: -25.5,-33.5 - parent: 4812 - type: Transform - - uid: 6741 - components: - - pos: -23.5,-33.5 - parent: 4812 - type: Transform - - uid: 6742 - components: - - pos: -23.5,-32.5 - parent: 4812 - type: Transform - - uid: 6743 - components: - - pos: -23.5,-31.5 - parent: 4812 - type: Transform - - uid: 6744 - components: - - pos: -22.5,-31.5 - parent: 4812 - type: Transform - - uid: 6745 - components: - - pos: -20.5,-31.5 - parent: 4812 - type: Transform - - uid: 6746 - components: - - pos: -19.5,-31.5 - parent: 4812 - type: Transform - - uid: 6747 - components: - - pos: -12.5,-32.5 - parent: 4812 - type: Transform - - uid: 6748 - components: - - pos: -12.5,-31.5 - parent: 4812 - type: Transform - - uid: 6749 - components: - - pos: -13.5,-31.5 - parent: 4812 - type: Transform - - uid: 6750 - components: - - pos: -14.5,-31.5 - parent: 4812 - type: Transform - - uid: 6751 - components: - - pos: -15.5,-31.5 - parent: 4812 - type: Transform - - uid: 6752 - components: - - pos: -16.5,-31.5 - parent: 4812 - type: Transform - - uid: 6753 - components: - - pos: -17.5,-31.5 - parent: 4812 - type: Transform - - uid: 6766 - components: - - pos: -12.5,-29.5 - parent: 4812 - type: Transform - - uid: 6767 - components: - - pos: -13.5,-29.5 - parent: 4812 - type: Transform - - uid: 6768 - components: - - pos: -14.5,-29.5 - parent: 4812 - type: Transform - - uid: 6769 - components: - - pos: -15.5,-29.5 - parent: 4812 - type: Transform - - uid: 6770 - components: - - pos: -16.5,-29.5 - parent: 4812 - type: Transform - - uid: 6771 - components: - - pos: -17.5,-29.5 - parent: 4812 - type: Transform - - uid: 6772 - components: - - pos: -18.5,-29.5 - parent: 4812 - type: Transform - - uid: 6773 - components: - - pos: -19.5,-29.5 - parent: 4812 - type: Transform - - uid: 6774 - components: - - pos: -20.5,-29.5 - parent: 4812 - type: Transform - - uid: 6775 - components: - - pos: -21.5,-29.5 - parent: 4812 - type: Transform - - uid: 6776 - components: - - pos: -22.5,-29.5 - parent: 4812 - type: Transform - - uid: 6789 - components: - - pos: -27.5,-22.5 - parent: 4812 - type: Transform - - uid: 7060 - components: - - pos: -20.5,-19.5 - parent: 4812 - type: Transform - - uid: 7063 - components: - - pos: -17.5,-15.5 - parent: 4812 - type: Transform - - uid: 7184 - components: - - pos: -7.5,-23.5 - parent: 4812 - type: Transform - - uid: 7185 - components: - - pos: -19.5,-24.5 - parent: 4812 - type: Transform - - uid: 7187 - components: - - pos: -26.5,-31.5 - parent: 4812 - type: Transform - - uid: 7194 - components: - - pos: -23.5,-27.5 - parent: 4812 - type: Transform - - uid: 7195 - components: - - pos: -7.5,-28.5 - parent: 4812 - type: Transform - - uid: 7212 - components: - - pos: -13.5,-24.5 - parent: 4812 - type: Transform - - uid: 7213 - components: - - pos: -11.5,-24.5 - parent: 4812 - type: Transform - - uid: 7215 - components: - - pos: -11.5,-25.5 - parent: 4812 - type: Transform - - uid: 7217 - components: - - pos: -11.5,-27.5 - parent: 4812 - type: Transform - - uid: 7218 - components: - - pos: -11.5,-28.5 - parent: 4812 - type: Transform - - uid: 7235 - components: - - pos: -18.5,-19.5 - parent: 4812 - type: Transform - - uid: 7246 - components: - - pos: -17.5,-18.5 - parent: 4812 - type: Transform - - uid: 7314 - components: - - pos: -41.5,-25.5 - parent: 4812 - type: Transform - - uid: 7315 - components: - - pos: -44.5,-25.5 - parent: 4812 - type: Transform - - uid: 7317 - components: - - pos: -41.5,-29.5 - parent: 4812 - type: Transform - - uid: 7318 - components: - - pos: -42.5,-31.5 - parent: 4812 - type: Transform - - uid: 7319 - components: - - pos: -17.5,-14.5 - parent: 4812 - type: Transform - - uid: 7320 - components: - - pos: -16.5,-14.5 - parent: 4812 - type: Transform - - uid: 7321 - components: - - pos: -14.5,-14.5 - parent: 4812 - type: Transform - - uid: 7322 - components: - - pos: -15.5,-14.5 - parent: 4812 - type: Transform - - uid: 7727 - components: - - pos: -25.5,18.5 - parent: 4812 - type: Transform - - uid: 7728 - components: - - pos: -26.5,18.5 - parent: 4812 - type: Transform - - uid: 7729 - components: - - pos: -27.5,18.5 - parent: 4812 - type: Transform - - uid: 7953 - components: - - pos: -28.5,7.5 - parent: 4812 - type: Transform - - uid: 8162 - components: - - pos: -19.5,26.5 - parent: 4812 - type: Transform - - uid: 8163 - components: - - pos: -20.5,26.5 - parent: 4812 - type: Transform - - uid: 8164 - components: - - pos: -20.5,28.5 - parent: 4812 - type: Transform - - uid: 8456 - components: - - pos: -19.5,37.5 - parent: 4812 - type: Transform - - uid: 8457 - components: - - pos: -26.5,37.5 - parent: 4812 - type: Transform - - uid: 8833 - components: - - pos: -32.5,-37.5 - parent: 4812 - type: Transform - - uid: 8834 - components: - - pos: -31.5,-34.5 - parent: 4812 - type: Transform - - uid: 8835 - components: - - pos: -29.5,-34.5 - parent: 4812 - type: Transform - - uid: 8837 - components: - - pos: -29.5,-32.5 - parent: 4812 - type: Transform - - uid: 8840 - components: - - pos: -28.5,-40.5 - parent: 4812 - type: Transform - - uid: 8852 - components: - - pos: -31.5,-28.5 - parent: 4812 - type: Transform - - uid: 8854 - components: - - pos: -31.5,-26.5 - parent: 4812 - type: Transform - - uid: 8855 - components: - - pos: -32.5,-26.5 - parent: 4812 - type: Transform - - uid: 8856 - components: - - pos: -33.5,-26.5 - parent: 4812 - type: Transform - - uid: 8857 - components: - - pos: -35.5,-26.5 - parent: 4812 - type: Transform - - uid: 8903 - components: - - pos: -39.5,-26.5 - parent: 4812 - type: Transform - - uid: 8904 - components: - - pos: -39.5,-27.5 - parent: 4812 - type: Transform - - uid: 8905 - components: - - pos: -39.5,-25.5 - parent: 4812 - type: Transform - - uid: 8907 - components: - - pos: -39.5,-23.5 - parent: 4812 - type: Transform - - uid: 9968 - components: - - pos: -39.5,-29.5 - parent: 4812 - type: Transform - - uid: 9969 - components: - - pos: -39.5,-30.5 - parent: 4812 - type: Transform - - uid: 9970 - components: - - pos: -38.5,-30.5 - parent: 4812 - type: Transform - - uid: 9973 - components: - - pos: -35.5,-30.5 - parent: 4812 - type: Transform - - uid: 9985 - components: - - pos: -39.5,-22.5 - parent: 4812 - type: Transform - - uid: 9986 - components: - - pos: -39.5,-21.5 - parent: 4812 - type: Transform - - uid: 9987 - components: - - pos: -35.5,-25.5 - parent: 4812 - type: Transform - - uid: 9988 - components: - - pos: -35.5,-24.5 - parent: 4812 - type: Transform - - uid: 9989 - components: - - pos: -35.5,-23.5 - parent: 4812 - type: Transform - - uid: 9994 - components: - - pos: -38.5,-21.5 - parent: 4812 - type: Transform - - uid: 10153 - components: - - pos: -54.5,-23.5 - parent: 4812 - type: Transform - - uid: 10155 - components: - - pos: -49.5,-23.5 - parent: 4812 - type: Transform - - uid: 10156 - components: - - pos: -50.5,-23.5 - parent: 4812 - type: Transform - - uid: 10224 - components: - - pos: -42.5,-22.5 - parent: 4812 - type: Transform - - uid: 10404 - components: - - pos: -47.5,-28.5 - parent: 4812 - type: Transform - - uid: 10613 - components: - - pos: -42.5,-24.5 - parent: 4812 - type: Transform - - uid: 10614 - components: - - pos: -42.5,-23.5 - parent: 4812 - type: Transform - - uid: 11049 - components: - - pos: 4.5,-39.5 - parent: 4812 - type: Transform - - uid: 11050 - components: - - pos: 5.5,-39.5 - parent: 4812 - type: Transform - - uid: 11051 - components: - - pos: 6.5,-39.5 - parent: 4812 - type: Transform - - uid: 11052 - components: - - pos: 7.5,-39.5 - parent: 4812 - type: Transform - - uid: 11053 - components: - - pos: 7.5,-35.5 - parent: 4812 - type: Transform - - uid: 11054 - components: - - pos: 6.5,-35.5 - parent: 4812 - type: Transform - - uid: 11055 - components: - - pos: 5.5,-35.5 - parent: 4812 - type: Transform - - uid: 11056 - components: - - pos: 4.5,-35.5 - parent: 4812 - type: Transform - - uid: 11057 - components: - - pos: 7.5,-31.5 - parent: 4812 - type: Transform - - uid: 11058 - components: - - pos: 6.5,-31.5 - parent: 4812 - type: Transform - - uid: 11059 - components: - - pos: 5.5,-31.5 - parent: 4812 - type: Transform - - uid: 11060 - components: - - pos: 4.5,-31.5 - parent: 4812 - type: Transform - - uid: 11061 - components: - - pos: 10.5,-35.5 - parent: 4812 - type: Transform - - uid: 11062 - components: - - pos: 11.5,-35.5 - parent: 4812 - type: Transform - - uid: 11063 - components: - - pos: 12.5,-35.5 - parent: 4812 - type: Transform - - uid: 11064 - components: - - pos: 13.5,-35.5 - parent: 4812 - type: Transform - - uid: 11066 - components: - - pos: 10.5,-39.5 - parent: 4812 - type: Transform - - uid: 11067 - components: - - pos: 11.5,-39.5 - parent: 4812 - type: Transform - - uid: 11068 - components: - - pos: 12.5,-39.5 - parent: 4812 - type: Transform - - uid: 11069 - components: - - pos: 13.5,-39.5 - parent: 4812 - type: Transform - - uid: 11070 - components: - - pos: 14.5,-39.5 - parent: 4812 - type: Transform - - uid: 11121 - components: - - pos: 35.5,-35.5 - parent: 4812 - type: Transform - - uid: 11122 - components: - - pos: 36.5,-35.5 - parent: 4812 - type: Transform - - uid: 11123 - components: - - pos: 37.5,-35.5 - parent: 4812 - type: Transform - - uid: 11124 - components: - - pos: 34.5,-35.5 - parent: 4812 - type: Transform - - uid: 11266 - components: - - pos: 23.5,-36.5 - parent: 4812 - type: Transform - - uid: 11267 - components: - - pos: 23.5,-35.5 - parent: 4812 - type: Transform - - uid: 11268 - components: - - pos: 22.5,-35.5 - parent: 4812 - type: Transform - - uid: 11269 - components: - - pos: 21.5,-35.5 - parent: 4812 - type: Transform - - uid: 11270 - components: - - pos: 20.5,-35.5 - parent: 4812 - type: Transform - - uid: 11271 - components: - - pos: 18.5,-35.5 - parent: 4812 - type: Transform - - uid: 11272 - components: - - pos: 17.5,-35.5 - parent: 4812 - type: Transform - - uid: 11273 - components: - - pos: 16.5,-35.5 - parent: 4812 - type: Transform - - uid: 11302 - components: - - pos: 27.5,-34.5 - parent: 4812 - type: Transform - - uid: 11303 - components: - - pos: 26.5,-34.5 - parent: 4812 - type: Transform - - uid: 11304 - components: - - pos: 23.5,-34.5 - parent: 4812 - type: Transform - - uid: 11305 - components: - - pos: 24.5,-34.5 - parent: 4812 - type: Transform - - uid: 11348 - components: - - pos: 34.5,-33.5 - parent: 4812 - type: Transform - - uid: 11349 - components: - - pos: 34.5,-32.5 - parent: 4812 - type: Transform - - uid: 11366 - components: - - pos: 35.5,-38.5 - parent: 4812 - type: Transform - - uid: 11367 - components: - - pos: 35.5,-37.5 - parent: 4812 - type: Transform - - uid: 11368 - components: - - pos: 33.5,-35.5 - parent: 4812 - type: Transform - - uid: 11369 - components: - - pos: 32.5,-35.5 - parent: 4812 - type: Transform - - uid: 11370 - components: - - pos: 29.5,-36.5 - parent: 4812 - type: Transform - - uid: 11383 - components: - - pos: 29.5,-35.5 - parent: 4812 - type: Transform - - uid: 11384 - components: - - pos: 30.5,-35.5 - parent: 4812 - type: Transform - - uid: 11385 - components: - - pos: 34.5,-37.5 - parent: 4812 - type: Transform - - uid: 11389 - components: - - pos: 30.5,-37.5 - parent: 4812 - type: Transform - - uid: 11706 - components: - - pos: 37.5,-42.5 - parent: 4812 - type: Transform - - uid: 11794 - components: - - pos: -15.5,1.5 - parent: 4812 - type: Transform - - uid: 11795 - components: - - pos: -14.5,1.5 - parent: 4812 - type: Transform - - uid: 11796 - components: - - pos: -13.5,1.5 - parent: 4812 - type: Transform - - uid: 11797 - components: - - pos: -13.5,0.5 - parent: 4812 - type: Transform - - uid: 11798 - components: - - pos: -13.5,-0.5 - parent: 4812 - type: Transform - - uid: 11799 - components: - - pos: -13.5,-1.5 - parent: 4812 - type: Transform - - uid: 11800 - components: - - pos: -13.5,-2.5 - parent: 4812 - type: Transform - - uid: 11801 - components: - - pos: -14.5,-2.5 - parent: 4812 - type: Transform - - uid: 11848 - components: - - pos: -13.5,12.5 - parent: 4812 - type: Transform -- proto: WallSolidRust - entities: - - uid: 7302 - components: - - pos: -42.5,-29.5 - parent: 4812 - type: Transform - - uid: 7305 - components: - - pos: -41.5,-26.5 - parent: 4812 - type: Transform - - uid: 7312 - components: - - pos: -42.5,-25.5 - parent: 4812 - type: Transform - - uid: 7313 - components: - - pos: -42.5,-30.5 - parent: 4812 - type: Transform - - uid: 7316 - components: - - pos: -45.5,-25.5 - parent: 4812 - type: Transform - - uid: 7335 - components: - - pos: -25.5,-31.5 - parent: 4812 - type: Transform - - uid: 7350 - components: - - pos: -29.5,-33.5 - parent: 4812 - type: Transform - - uid: 7351 - components: - - pos: -28.5,-32.5 - parent: 4812 - type: Transform - - uid: 7353 - components: - - pos: -33.5,-30.5 - parent: 4812 - type: Transform - - uid: 7354 - components: - - pos: -32.5,-30.5 - parent: 4812 - type: Transform - - uid: 7355 - components: - - pos: -31.5,-29.5 - parent: 4812 - type: Transform - - uid: 7356 - components: - - pos: -31.5,-27.5 - parent: 4812 - type: Transform - - uid: 7357 - components: - - pos: -34.5,-30.5 - parent: 4812 - type: Transform - - uid: 7358 - components: - - pos: -39.5,-28.5 - parent: 4812 - type: Transform - - uid: 7359 - components: - - pos: -39.5,-24.5 - parent: 4812 - type: Transform - - uid: 7360 - components: - - pos: -37.5,-30.5 - parent: 4812 - type: Transform - - uid: 7361 - components: - - pos: -36.5,-30.5 - parent: 4812 - type: Transform - - uid: 7362 - components: - - pos: -35.5,-22.5 - parent: 4812 - type: Transform - - uid: 7363 - components: - - pos: -36.5,-21.5 - parent: 4812 - type: Transform - - uid: 7364 - components: - - pos: -37.5,-21.5 - parent: 4812 - type: Transform - - uid: 7365 - components: - - pos: -34.5,-13.5 - parent: 4812 - type: Transform -- proto: WardrobeBlackFilled - entities: - - uid: 11351 - components: - - pos: 35.5,-32.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: WardrobeFormal - entities: - - uid: 10921 - components: - - pos: -41.5,-24.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: - - 10924 - - 10923 - - 10922 - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: WardrobeMixedFilled - entities: - - uid: 10852 - components: - - pos: -21.5,-1.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: WardrobePrisonFilled - entities: - - uid: 8354 - components: - - pos: -26.5,20.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 8355 - components: - - pos: -26.5,17.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 8383 - components: - - pos: -29.5,26.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 8384 - components: - - pos: -25.5,26.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: WardrobeYellowFilled - entities: - - uid: 12169 - components: - - pos: -45.5,-18.5 - parent: 4812 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: WarningCO2 - entities: - - uid: 9280 - components: - - pos: -50.5,6.5 - parent: 4812 - type: Transform -- proto: WarningN2 - entities: - - uid: 9278 - components: - - pos: -50.5,2.5 - parent: 4812 - type: Transform -- proto: WarningO2 - entities: - - uid: 9279 - components: - - pos: -50.5,4.5 - parent: 4812 - type: Transform -- proto: WarningPlasma - entities: - - uid: 9282 - components: - - pos: -50.5,10.5 - parent: 4812 - type: Transform -- proto: WarningTritium - entities: - - uid: 9283 - components: - - pos: -50.5,12.5 - parent: 4812 - type: Transform -- proto: WarningWaste - entities: - - uid: 9281 - components: - - pos: -50.5,8.5 - parent: 4812 - type: Transform -- proto: WarpPoint - entities: - - uid: 12145 - components: - - pos: -16.5,-34.5 - parent: 4812 - type: Transform - - location: chapel - type: WarpPoint - - uid: 12476 - components: - - pos: -10.5,-21.5 - parent: 4812 - type: Transform - - location: medbay - type: WarpPoint - - uid: 12477 - components: - - pos: -28.5,-16.5 - parent: 4812 - type: Transform - - location: library - type: WarpPoint - - uid: 12478 - components: - - pos: -32.5,-2.5 - parent: 4812 - type: Transform - - location: engi - type: WarpPoint - - uid: 12479 - components: - - pos: -20.5,1.5 - parent: 4812 - type: Transform - - location: dorms - type: WarpPoint - - uid: 12480 - components: - - pos: -29.5,15.5 - parent: 4812 - type: Transform - - location: security - type: WarpPoint - - uid: 12481 - components: - - pos: -2.5,31.5 - parent: 4812 - type: Transform - - location: bridge - type: WarpPoint - - uid: 12482 - components: - - pos: 10.5,49.5 - parent: 4812 - type: Transform - - location: ai core - type: WarpPoint - - uid: 12483 - components: - - pos: 16.5,20.5 - parent: 4812 - type: Transform - - location: cargo - type: WarpPoint - - uid: 12484 - components: - - pos: 28.5,-2.5 - parent: 4812 - type: Transform - - location: evac - type: WarpPoint - - uid: 12485 - components: - - pos: 8.5,-21.5 - parent: 4812 - type: Transform - - location: sci - type: WarpPoint - - uid: 12486 - components: - - pos: -2.5,0.5 - parent: 4812 - type: Transform - - location: service - type: WarpPoint - - uid: 12517 - components: - - pos: 33.5,-25.5 - parent: 4812 - type: Transform - - location: anomaly Lab - type: WarpPoint -- proto: WaterCooler - entities: - - uid: 2673 - components: - - pos: 0.5,31.5 - parent: 4812 - type: Transform - - uid: 3245 - components: - - pos: 14.5,13.5 - parent: 4812 - type: Transform - - uid: 8433 - components: - - pos: -39.5,10.5 - parent: 4812 - type: Transform - - uid: 10759 - components: - - pos: -38.5,-5.5 - parent: 4812 - type: Transform -- proto: WaterTankFull - entities: - - uid: 1484 - components: - - pos: -23.5,-9.5 - parent: 4812 - type: Transform - - uid: 1543 - components: - - pos: 7.5,4.5 - parent: 4812 - type: Transform - - uid: 3358 - components: - - pos: 13.5,30.5 - parent: 4812 - type: Transform - - uid: 6241 - components: - - pos: -11.5,15.5 - parent: 4812 - type: Transform - - uid: 8409 - components: - - pos: -32.5,32.5 - parent: 4812 - type: Transform - - uid: 8576 - components: - - pos: -16.5,12.5 - parent: 4812 - type: Transform - - uid: 9069 - components: - - pos: -28.5,-31.5 - parent: 4812 - type: Transform - - uid: 9818 - components: - - pos: -38.5,-3.5 - parent: 4812 - type: Transform - - uid: 10702 - components: - - pos: -28.5,-9.5 - parent: 4812 - type: Transform - - uid: 11927 - components: - - pos: -42.5,-21.5 - parent: 4812 - type: Transform -- proto: WaterTankHighCapacity - entities: - - uid: 1093 - components: - - pos: -18.5,-6.5 - parent: 4812 - type: Transform - - uid: 3678 - components: - - pos: 4.5,51.5 - parent: 4812 - type: Transform -- proto: WaterVaporCanister - entities: - - uid: 9455 - components: - - pos: -53.5,7.5 - parent: 4812 - type: Transform -- proto: WeaponCapacitorRecharger - entities: - - uid: 2515 - components: - - pos: 9.5,26.5 - parent: 4812 - type: Transform - - canCollide: False - type: Physics - - uid: 2608 - components: - - pos: -10.5,25.5 - parent: 4812 - type: Transform - - canCollide: False - type: Physics - - uid: 4572 - components: - - pos: 27.5,3.5 - parent: 4812 - type: Transform - - canCollide: False - type: Physics - - uid: 6306 - components: - - pos: 28.5,-19.5 - parent: 4812 - type: Transform - - canCollide: False - type: Physics - - uid: 6483 - components: - - pos: -1.5,-27.5 - parent: 4812 - type: Transform - - canCollide: False - type: Physics - - uid: 8266 - components: - - pos: -20.5,22.5 - parent: 4812 - type: Transform - - canCollide: False - type: Physics - - uid: 8345 - components: - - pos: -31.5,12.5 - parent: 4812 - type: Transform - - canCollide: False - type: Physics - - uid: 8346 - components: - - pos: -31.5,14.5 - parent: 4812 - type: Transform - - canCollide: False - type: Physics -- proto: WeaponDisabler - entities: - - uid: 3738 - components: - - pos: -39.515656,11.630442 - parent: 4812 - type: Transform - - uid: 3753 - components: - - pos: -39.609406,11.771067 - parent: 4812 - type: Transform - - uid: 3754 - components: - - pos: -33.40336,20.459352 - parent: 4812 - type: Transform - - uid: 3759 - components: - - pos: -33.40336,20.459352 - parent: 4812 - type: Transform -- proto: WeaponLaserCarbine - entities: - - uid: 12470 - components: - - pos: -33.4461,20.270079 - parent: 4812 - type: Transform - - uid: 12471 - components: - - pos: -33.4461,20.218811 - parent: 4812 - type: Transform -- proto: WeaponRevolverDeckard - entities: - - uid: 12503 - components: - - flags: InContainer - type: MetaData - - parent: 2709 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: WeaponShotgunKammerer - entities: - - uid: 12052 - components: - - pos: -35.535385,19.569157 - parent: 4812 - type: Transform - - unspawnedCount: 4 - type: BallisticAmmoProvider - - uid: 12053 - components: - - pos: -35.410385,19.412907 - parent: 4812 - type: Transform - - unspawnedCount: 4 - type: BallisticAmmoProvider -- proto: WeaponTurretSyndicateBroken - entities: - - uid: 12268 - components: - - pos: 7.5,49.5 - parent: 4812 - type: Transform - - uid: 12269 - components: - - pos: 13.5,49.5 - parent: 4812 - type: Transform - - uid: 12270 - components: - - pos: 13.5,55.5 - parent: 4812 - type: Transform - - uid: 12271 - components: - - pos: 7.5,55.5 - parent: 4812 - type: Transform -- proto: WeedSpray - entities: - - uid: 1476 - components: - - pos: -8.252506,-7.3833528 - parent: 4812 - type: Transform -- proto: Welder - entities: - - uid: 8592 - components: - - pos: -20.391129,12.56624 - parent: 4812 - type: Transform -- proto: WelderIndustrial - entities: - - uid: 10715 - components: - - pos: -35.5,-7.5 - parent: 4812 - type: Transform -- proto: WelderIndustrialAdvanced - entities: - - uid: 3453 - components: - - pos: 35.616592,-30.437298 - parent: 4812 - type: Transform - - uid: 10724 - components: - - pos: -36.35727,8.431009 - parent: 4812 - type: Transform -- proto: WelderMini - entities: - - uid: 6239 - components: - - pos: 15.765093,-23.454037 - parent: 4812 - type: Transform - - uid: 11470 - components: - - pos: 28.545038,-35.383316 - parent: 4812 - type: Transform -- proto: WeldingFuelTankFull - entities: - - uid: 1542 - components: - - pos: 5.5,4.5 - parent: 4812 - type: Transform - - uid: 3261 - components: - - pos: 26.5,13.5 - parent: 4812 - type: Transform - - uid: 6214 - components: - - pos: 6.5,-23.5 - parent: 4812 - type: Transform - - uid: 8575 - components: - - pos: -17.5,12.5 - parent: 4812 - type: Transform - - uid: 9070 - components: - - pos: -24.5,-32.5 - parent: 4812 - type: Transform - - uid: 9682 - components: - - pos: -36.5,5.5 - parent: 4812 - type: Transform - - uid: 10701 - components: - - pos: -28.5,-8.5 - parent: 4812 - type: Transform - - uid: 11463 - components: - - pos: 28.5,-36.5 - parent: 4812 - type: Transform -- proto: WheatBushel - entities: - - uid: 11294 - components: - - pos: 18.50683,-38.558407 - parent: 4812 - type: Transform -- proto: WheatSeeds - entities: - - uid: 1521 - components: - - pos: -13.5,-7.5 - parent: 4812 - type: Transform -- proto: Windoor - entities: - - uid: 2230 - components: - - pos: 9.5,23.5 - parent: 4812 - type: Transform - - uid: 4451 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,7.5 - parent: 4812 - type: Transform - - uid: 4452 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,8.5 - parent: 4812 - type: Transform - - uid: 4453 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,6.5 - parent: 4812 - type: Transform - - uid: 7134 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-18.5 - parent: 4812 - type: Transform - - uid: 7805 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,15.5 - parent: 4812 - type: Transform - - uid: 9071 - components: - - pos: -24.5,-31.5 - parent: 4812 - type: Transform - - uid: 10523 - components: - - pos: -38.5,-25.5 - parent: 4812 - type: Transform -- proto: WindoorBarLocked - entities: - - uid: 319 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,5.5 - parent: 4812 - type: Transform -- proto: WindoorCargoLocked - entities: - - uid: 12255 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,20.5 - parent: 4812 - type: Transform -- proto: WindoorKitchenHydroponicsLocked - entities: - - uid: 934 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-6.5 - parent: 4812 - type: Transform - - uid: 935 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-5.5 - parent: 4812 - type: Transform -- proto: WindoorSecure - entities: - - uid: 11101 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-41.5 - parent: 4812 - type: Transform - - uid: 11102 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-41.5 - parent: 4812 - type: Transform - - uid: 11103 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-37.5 - parent: 4812 - type: Transform -- proto: WindoorSecureArmoryLocked - entities: - - uid: 7804 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,15.5 - parent: 4812 - type: Transform -- proto: WindoorSecureAtmosphericsLocked - entities: - - uid: 7369 - components: - - pos: -32.5,1.5 - parent: 4812 - type: Transform - - uid: 8688 - components: - - rot: 3.141592653589793 rad - pos: -30.5,0.5 - parent: 4812 - type: Transform -- proto: WindoorSecureCargoLocked - entities: - - uid: 2855 - components: - - rot: 3.141592653589793 rad - pos: 15.5,16.5 - parent: 4812 - type: Transform - - uid: 4433 - components: - - pos: 28.5,-6.5 - parent: 4812 - type: Transform -- proto: WindoorSecureChemistryLocked - entities: - - uid: 6582 - components: - - pos: -9.5,-13.5 - parent: 4812 - type: Transform - - uid: 6583 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-19.5 - parent: 4812 - type: Transform -- proto: WindoorSecureCommandLocked - entities: - - uid: 3702 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,53.5 - parent: 4812 - type: Transform - - uid: 3703 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,53.5 - parent: 4812 - type: Transform -- proto: WindoorSecureEngineeringLocked - entities: - - uid: 8689 - components: - - pos: -30.5,-4.5 - parent: 4812 - type: Transform -- proto: WindoorSecureHeadOfPersonnelLocked - entities: - - uid: 1926 - components: - - rot: 3.141592653589793 rad - pos: 9.5,23.5 - parent: 4812 - type: Transform -- proto: WindoorSecureMedicalLocked - entities: - - uid: 8807 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-24.5 - parent: 4812 - type: Transform - - uid: 8808 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-24.5 - parent: 4812 - type: Transform - - uid: 8810 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-22.5 - parent: 4812 - type: Transform - - uid: 8832 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-21.5 - parent: 4812 - type: Transform -- proto: WindoorSecureSalvageLocked - entities: - - uid: 12248 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,15.5 - parent: 4812 - type: Transform -- proto: WindoorSecureScienceLocked - entities: - - uid: 5788 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-23.5 - parent: 4812 - type: Transform - - uid: 5789 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-15.5 - parent: 4812 - type: Transform - - uid: 5790 - components: - - pos: 4.5,-13.5 - parent: 4812 - type: Transform -- proto: WindoorSecureSecurityLocked - entities: - - uid: 4434 - components: - - rot: 3.141592653589793 rad - pos: 28.5,1.5 - parent: 4812 - type: Transform - - uid: 5307 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-27.5 - parent: 4812 - type: Transform - - uid: 7779 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,11.5 - parent: 4812 - type: Transform - - uid: 7780 - components: - - pos: -25.5,12.5 - parent: 4812 - type: Transform - - uid: 7781 - components: - - pos: -26.5,12.5 - parent: 4812 - type: Transform - - uid: 7785 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,16.5 - parent: 4812 - type: Transform - - links: - - 4811 - type: DeviceLinkSink - - uid: 7786 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,19.5 - parent: 4812 - type: Transform - - links: - - 4810 - type: DeviceLinkSink -- proto: WindoorTheatreLocked - entities: - - uid: 896 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 4812 - type: Transform -- proto: Window - entities: - - uid: 187 - components: - - pos: -21.5,8.5 - parent: 4812 - type: Transform - - uid: 188 - components: - - pos: -21.5,11.5 - parent: 4812 - type: Transform - - uid: 221 - components: - - pos: -24.5,-0.5 - parent: 4812 - type: Transform - - uid: 222 - components: - - pos: -24.5,0.5 - parent: 4812 - type: Transform - - uid: 223 - components: - - pos: -24.5,3.5 - parent: 4812 - type: Transform - - uid: 224 - components: - - pos: -24.5,4.5 - parent: 4812 - type: Transform - - uid: 4656 - components: - - pos: -1.5,-14.5 - parent: 4812 - type: Transform - - uid: 4657 - components: - - pos: -2.5,-14.5 - parent: 4812 - type: Transform - - uid: 4658 - components: - - pos: -3.5,-14.5 - parent: 4812 - type: Transform - - uid: 5761 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-26.5 - parent: 4812 - type: Transform - - uid: 5762 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-24.5 - parent: 4812 - type: Transform - - uid: 6669 - components: - - pos: -26.5,-13.5 - parent: 4812 - type: Transform - - uid: 6670 - components: - - pos: -23.5,-13.5 - parent: 4812 - type: Transform - - uid: 7431 - components: - - pos: -23.5,-22.5 - parent: 4812 - type: Transform - - uid: 8859 - components: - - pos: -28.5,-26.5 - parent: 4812 - type: Transform -- proto: WindowDirectional - entities: - - uid: 890 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,4.5 - parent: 4812 - type: Transform - - uid: 891 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,5.5 - parent: 4812 - type: Transform - - uid: 892 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,6.5 - parent: 4812 - type: Transform - - uid: 893 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,7.5 - parent: 4812 - type: Transform - - uid: 894 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,8.5 - parent: 4812 - type: Transform - - uid: 895 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,9.5 - parent: 4812 - type: Transform - - uid: 4449 - components: - - rot: 3.141592653589793 rad - pos: 16.5,6.5 - parent: 4812 - type: Transform - - uid: 4450 - components: - - rot: 3.141592653589793 rad - pos: 16.5,7.5 - parent: 4812 - type: Transform - - uid: 7135 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-18.5 - parent: 4812 - type: Transform -- proto: WindowFrostedDirectional - entities: - - uid: 6708 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-39.5 - parent: 4812 - type: Transform - - uid: 6709 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-38.5 - parent: 4812 - type: Transform - - uid: 8455 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,6.5 - parent: 4812 - type: Transform -- proto: WindowReinforcedDirectional - entities: - - uid: 2477 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,21.5 - parent: 4812 - type: Transform - - uid: 2478 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,21.5 - parent: 4812 - type: Transform - - uid: 2479 - components: - - pos: 8.5,21.5 - parent: 4812 - type: Transform - - uid: 2480 - components: - - pos: 7.5,21.5 - parent: 4812 - type: Transform - - uid: 2481 - components: - - pos: 6.5,21.5 - parent: 4812 - type: Transform - - uid: 2482 - components: - - rot: 3.141592653589793 rad - pos: 6.5,21.5 - parent: 4812 - type: Transform - - uid: 2483 - components: - - rot: 3.141592653589793 rad - pos: 7.5,21.5 - parent: 4812 - type: Transform - - uid: 2484 - components: - - rot: 3.141592653589793 rad - pos: 8.5,21.5 - parent: 4812 - type: Transform - - uid: 4675 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-45.5 - parent: 4812 - type: Transform - - uid: 4676 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-46.5 - parent: 4812 - type: Transform - - uid: 4705 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-47.5 - parent: 4812 - type: Transform - - uid: 4706 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-48.5 - parent: 4812 - type: Transform - - uid: 4738 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-48.5 - parent: 4812 - type: Transform - - uid: 4739 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-47.5 - parent: 4812 - type: Transform - - uid: 4754 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-46.5 - parent: 4812 - type: Transform - - uid: 4755 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-45.5 - parent: 4812 - type: Transform - - uid: 4878 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-48.5 - parent: 4812 - type: Transform - - uid: 4879 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-47.5 - parent: 4812 - type: Transform - - uid: 4880 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-46.5 - parent: 4812 - type: Transform - - uid: 4881 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-45.5 - parent: 4812 - type: Transform - - uid: 4882 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-48.5 - parent: 4812 - type: Transform - - uid: 4883 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-47.5 - parent: 4812 - type: Transform - - uid: 4884 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-46.5 - parent: 4812 - type: Transform - - uid: 4885 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-45.5 - parent: 4812 - type: Transform - - uid: 6230 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-28.5 - parent: 4812 - type: Transform - - uid: 6231 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-27.5 - parent: 4812 - type: Transform - - uid: 6317 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-26.5 - parent: 4812 - type: Transform - - uid: 6321 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-25.5 - parent: 4812 - type: Transform - - uid: 6329 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-22.5 - parent: 4812 - type: Transform - - uid: 6330 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-22.5 - parent: 4812 - type: Transform - - uid: 8283 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,14.5 - parent: 4812 - type: Transform - - uid: 8284 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,15.5 - parent: 4812 - type: Transform - - uid: 8285 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,16.5 - parent: 4812 - type: Transform - - uid: 8286 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,17.5 - parent: 4812 - type: Transform - - uid: 8287 - components: - - pos: -18.5,16.5 - parent: 4812 - type: Transform - - uid: 9880 - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-13.5 - parent: 4812 - type: Transform - - uid: 9881 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-13.5 - parent: 4812 - type: Transform - - uid: 9882 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-11.5 - parent: 4812 - type: Transform - - uid: 9883 - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-11.5 - parent: 4812 - type: Transform - - uid: 9884 - components: - - pos: -51.5,-11.5 - parent: 4812 - type: Transform - - uid: 9885 - components: - - rot: 3.141592653589793 rad - pos: -51.5,-13.5 - parent: 4812 - type: Transform - - uid: 11864 - components: - - pos: -14.5,5.5 - parent: 4812 - type: Transform - - uid: 11865 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,4.5 - parent: 4812 - type: Transform - - uid: 11866 - components: - - rot: 3.141592653589793 rad - pos: -14.5,3.5 - parent: 4812 - type: Transform - - uid: 11867 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,4.5 - parent: 4812 - type: Transform -- proto: WoodDoor - entities: - - uid: 6795 - components: - - pos: -19.5,-37.5 - parent: 4812 - type: Transform - - uid: 6796 - components: - - pos: -21.5,-39.5 - parent: 4812 - type: Transform -- proto: Wrench - entities: - - uid: 4498 - components: - - pos: 19.554443,8.592699 - parent: 4812 - type: Transform - - uid: 4574 - components: - - pos: 27.5,4.5 - parent: 4812 - type: Transform - - uid: 6213 - components: - - pos: 3.4989405,-14.41828 - parent: 4812 - type: Transform - - uid: 6237 - components: - - pos: 15.546343,-23.407162 - parent: 4812 - type: Transform - - uid: 7839 - components: - - pos: -14.514914,-25.438694 - parent: 4812 - type: Transform - - uid: 8589 - components: - - pos: -18.546284,12.599279 - parent: 4812 - type: Transform - - uid: 9080 - components: - - pos: -30.517597,-29.561436 - parent: 4812 - type: Transform - - uid: 11331 - components: - - pos: 26.494213,-35.426273 - parent: 4812 - type: Transform -- proto: YellowOxygenTankFilled - entities: - - uid: 11791 - components: - - pos: 19.452671,-32.41012 - parent: 4812 - type: Transform -... +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 6: FloorAsteroidSand + 10: FloorAsteroidTile + 11: FloorBar + 14: FloorBlueCircuit + 22: FloorDark + 26: FloorDarkMini + 27: FloorDarkMono + 29: FloorDarkPavement + 34: FloorEighties + 37: FloorFreezer + 40: FloorGrass + 44: FloorGreenCircuit + 48: FloorHydro + 50: FloorLaundry + 51: FloorLino + 55: FloorMono + 60: FloorReinforced + 63: FloorShowroom + 71: FloorSteel + 83: FloorTechMaint + 84: FloorTechMaint2 + 87: FloorWhite + 97: FloorWood + 99: Lattice + 100: Plating + 101: PlatingAsteroid +entities: +- proto: "" + entities: + - uid: 473 + components: + - type: MetaData + - type: Transform + - type: Map + - type: PhysicsMap + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - type: GridTree + - type: MovedGrids + - uid: 4812 + components: + - type: MetaData + - pos: 2.2710133,-2.4148211 + parent: 473 + type: Transform + - chunks: + -1,0: + ind: -1,0 + tiles: MwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADYQAAAAAAYQAAAAACFgAAAAADZAAAAAAACwAAAAADRwAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADYQAAAAACYQAAAAACFgAAAAABZAAAAAAACwAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAAZAAAAAAACwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAACYQAAAAABYQAAAAABYQAAAAAAFgAAAAABCwAAAAABRwAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAABYQAAAAADYQAAAAACYQAAAAAAFgAAAAADCwAAAAABRwAAAAABRwAAAAACRwAAAAADRwAAAAADRwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAACYQAAAAABYQAAAAABYQAAAAACFgAAAAACCwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAYQAAAAADYQAAAAADYQAAAAAAFgAAAAACCwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAYQAAAAAAYQAAAAACYQAAAAADFgAAAAACCwAAAAADRwAAAAABRwAAAAABRwAAAAADRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADYQAAAAADYQAAAAAAYQAAAAADFgAAAAAACwAAAAABRwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAYQAAAAADYQAAAAAAYQAAAAADFgAAAAAACwAAAAACCwAAAAABRwAAAAADRwAAAAAARwAAAAACCwAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABCwAAAAADRwAAAAACRwAAAAADRwAAAAAACwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABCwAAAAACCwAAAAAACwAAAAACCwAAAAACCwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAACwAAAAABCwAAAAABCwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAACRwAAAAAAZAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAAAZAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: CwAAAAABZAAAAAAAFgAAAAAAFgAAAAADFgAAAAACFgAAAAABFgAAAAADFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAACwAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAACZAAAAAAAZAAAAAAACwAAAAABCwAAAAADCwAAAAADCwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAACZAAAAAAAZAAAAAAACwAAAAABCwAAAAABCwAAAAACCwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAARwAAAAAARwAAAAABRwAAAAADZAAAAAAAZAAAAAAACwAAAAAAFgAAAAAAFgAAAAACFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAACZAAAAAAAZAAAAAAACwAAAAABFgAAAAABFgAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAACwAAAAADFgAAAAACFgAAAAADFgAAAAACFgAAAAADFgAAAAADFgAAAAADFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAAZAAAAAAAJQAAAAAAJQAAAAAACwAAAAAAFgAAAAADFgAAAAADFgAAAAADYQAAAAAAYQAAAAABYQAAAAAAYQAAAAACVAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAACwAAAAABFgAAAAADFgAAAAAAFgAAAAADZAAAAAAAYQAAAAADYQAAAAABYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAAJQAAAAAAJQAAAAAACwAAAAACFgAAAAADFgAAAAAAFgAAAAAAZAAAAAAAYQAAAAAAYQAAAAABYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAARwAAAAAARwAAAAADVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACRwAAAAABRwAAAAAARwAAAAAAFgAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADRwAAAAABRwAAAAAARwAAAAABFgAAAAABZAAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAAARwAAAAAB + version: 6 + -1,1: + ind: -1,1 + tiles: ZAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAACRwAAAAACRwAAAAAAZAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAADYQAAAAABZAAAAAAAFgAAAAABFgAAAAACZAAAAAAAFgAAAAADLAAAAAAALAAAAAAAFgAAAAABLAAAAAAALAAAAAAAFgAAAAABYQAAAAABYQAAAAAAYQAAAAADYQAAAAAAYQAAAAABYQAAAAACFgAAAAADFgAAAAADZAAAAAAAFgAAAAACLAAAAAAAFgAAAAACFgAAAAABFgAAAAADLAAAAAAAFgAAAAABYQAAAAACYQAAAAABYQAAAAAAYQAAAAACYQAAAAABZAAAAAAAFgAAAAAAFgAAAAABZAAAAAAAFgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAFgAAAAABZAAAAAAAYQAAAAAAYQAAAAACYQAAAAAAYQAAAAACZAAAAAAAFgAAAAABFgAAAAABZAAAAAAAFgAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAAZAAAAAAAFgAAAAADFgAAAAAAZAAAAAAAFgAAAAAAFgAAAAACFgAAAAADLAAAAAAAFgAAAAADFgAAAAACJQAAAAAAZAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAADZAAAAAAAFgAAAAACFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAJQAAAAAAJQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAFgAAAAAAFgAAAAABFgAAAAACFgAAAAACMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAPwAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAFgAAAAADFgAAAAABFgAAAAADFgAAAAABMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAABFgAAAAAAFgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAABgAAAAAABgAAAAAABgAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAABFgAAAAABZAAAAAAAFgAAAAAAFgAAAAACFgAAAAADFgAAAAAAFgAAAAACFgAAAAAD + version: 6 + 0,1: + ind: 0,1 + tiles: RwAAAAACZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAADRwAAAAADRwAAAAACRwAAAAACFgAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAAZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAAARwAAAAACRwAAAAADRwAAAAACFgAAAAABZAAAAAAARwAAAAACRwAAAAACZAAAAAAARwAAAAABRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAARwAAAAACZAAAAAAAZAAAAAAARwAAAAACRwAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAADZAAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAADRwAAAAADRwAAAAADRwAAAAABRwAAAAACRwAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAAAZAAAAAAARwAAAAACKAAAAAAAKAAAAAAAKAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACFgAAAAABZAAAAAAAFgAAAAADFgAAAAACZAAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAACRwAAAAADFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABFgAAAAADZAAAAAAAFgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABFgAAAAADZAAAAAAAFgAAAAACFgAAAAAAZAAAAAAAYQAAAAACYQAAAAADYQAAAAADYQAAAAADYQAAAAABFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABFgAAAAADZAAAAAAAFgAAAAACFgAAAAACFgAAAAADYQAAAAABYQAAAAACYQAAAAADYQAAAAAAYQAAAAADFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAAFgAAAAADZAAAAAAAFgAAAAACFgAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAABFgAAAAABFgAAAAADFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAFgAAAAACFgAAAAADZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADFgAAAAADFgAAAAADFgAAAAAAFgAAAAABZAAAAAAAFgAAAAACYQAAAAABYQAAAAADYQAAAAABPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADFgAAAAADFgAAAAACFgAAAAACFgAAAAACZAAAAAAAFgAAAAAAYQAAAAACYQAAAAACYQAAAAACZAAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAACFgAAAAADFgAAAAACFgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAADFgAAAAAAZAAAAAAAFgAAAAADFgAAAAACZAAAAAAAFgAAAAADFgAAAAADZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAC + version: 6 + 0,-1: + ind: 0,-1 + tiles: RwAAAAADRwAAAAABZAAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAABFgAAAAAAZAAAAAAAFgAAAAAAFgAAAAADVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADZAAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAAAFgAAAAACZAAAAAAAFgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAAAFgAAAAADZAAAAAAAYwAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAABFgAAAAADZAAAAAAAYwAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAACZAAAAAAAYwAAAAAAFgAAAAABVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAACwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAAAVAAAAAAAZAAAAAAACwAAAAABZAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAVAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAACwAAAAAAZAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAARwAAAAACRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAAZAAAAAAAUwAAAAAACwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAACwAAAAAAZAAAAAAAFgAAAAADFgAAAAACFgAAAAACFgAAAAACFgAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAAARwAAAAABCwAAAAACZAAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAABRwAAAAAACwAAAAADZAAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABVAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAAAZAAAAAAAZAAAAAAACwAAAAABZAAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAAAHQAAAAABZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: VwAAAAADVwAAAAABZAAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAAAZAAAAAAARwAAAAADRwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAACVwAAAAAAZAAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAACRwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAADRwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAADRwAAAAADRwAAAAADRwAAAAABRwAAAAABRwAAAAAARwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAAAFgAAAAABFgAAAAABFgAAAAABFgAAAAACFgAAAAADMAAAAAAAFgAAAAABKAAAAAAAKAAAAAAAKAAAAAAAZAAAAAAAZAAAAAAACwAAAAADCwAAAAABCwAAAAAAZAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKAAAAAAAKAAAAAAAZAAAAAAAZAAAAAAACwAAAAABCwAAAAADCwAAAAADCwAAAAACCwAAAAACFgAAAAADFgAAAAABFgAAAAAAFgAAAAACFgAAAAABMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAARwAAAAABCwAAAAACCwAAAAABRwAAAAADRwAAAAADRwAAAAADCwAAAAACMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAARwAAAAACCwAAAAACRwAAAAACRwAAAAADRwAAAAABRwAAAAABRwAAAAABFgAAAAAAFgAAAAAAFgAAAAACFgAAAAADFgAAAAABFgAAAAADFgAAAAAAFgAAAAADFgAAAAADRwAAAAACCwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAACwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAACwAAAAACRwAAAAACRwAAAAAARwAAAAACRwAAAAABRwAAAAACMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAACwAAAAACRwAAAAABRwAAAAACRwAAAAADRwAAAAABRwAAAAABMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAADFgAAAAAAFgAAAAABZAAAAAAACwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAACMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADYQAAAAACYQAAAAACFgAAAAABFgAAAAAACwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAADRwAAAAAC + version: 6 + -2,1: + ind: -2,1 + tiles: RwAAAAACRwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAABZAAAAAAARwAAAAACRwAAAAABYQAAAAADYQAAAAAAYQAAAAABYQAAAAABYQAAAAADYQAAAAABRwAAAAADRwAAAAACRwAAAAACRwAAAAADZAAAAAAARwAAAAADRwAAAAACZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAYQAAAAABYQAAAAABYQAAAAACYQAAAAACYQAAAAACRwAAAAADRwAAAAACRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAADRwAAAAAARwAAAAABRwAAAAACZAAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAABRwAAAAADRwAAAAABRwAAAAADRwAAAAADRwAAAAACRwAAAAADRwAAAAACRwAAAAACZAAAAAAARwAAAAAARwAAAAADZAAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAABZAAAAAAAFgAAAAACFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAADFgAAAAACFgAAAAABFgAAAAABFgAAAAADFgAAAAADZAAAAAAAFgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAABFgAAAAABFgAAAAACFgAAAAAAFgAAAAACFgAAAAADFgAAAAACMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAABFgAAAAABFgAAAAAAFgAAAAADZAAAAAAAFgAAAAABMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAFgAAAAADYQAAAAAAYQAAAAAAYQAAAAACYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAABZAAAAAAARwAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAACZAAAAAAARwAAAAACRwAAAAADRwAAAAAAZAAAAAAAFgAAAAABYQAAAAABYQAAAAADPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAFgAAAAACYQAAAAACYQAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAABRwAAAAAARwAAAAADFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAADFgAAAAACZAAAAAAABgAAAAAAAAAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAAARwAAAAAARwAAAAACFgAAAAABZAAAAAAABgAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAADZAAAAAAAYQAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAADZAAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAADMgAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAADZAAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAADMgAAAAAAVAAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAAFgAAAAADFgAAAAABFgAAAAADIgAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAABZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAADIgAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAAAZAAAAAAARwAAAAADRwAAAAADZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABRwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADRwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAADZAAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAABZAAAAAAARwAAAAACRwAAAAABZAAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAACRwAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAACZAAAAAAARwAAAAABRwAAAAACZAAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAACRwAAAAADFgAAAAACRwAAAAADRwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACZAAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAADFgAAAAADRwAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABRwAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAADRwAAAAAARwAAAAAARwAAAAACRwAAAAABZAAAAAAAYQAAAAAAYQAAAAACYQAAAAADYQAAAAAAYQAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACZAAAAAAAYQAAAAABYQAAAAAAYQAAAAACYQAAAAADYQAAAAAB + version: 6 + -2,-1: + ind: -2,-1 + tiles: FgAAAAAAFgAAAAACFgAAAAAAFgAAAAADFgAAAAABFgAAAAABYQAAAAACYQAAAAADYQAAAAADYQAAAAADZAAAAAAAFgAAAAAAFgAAAAADFgAAAAADZAAAAAAAVwAAAAAAFgAAAAAAFgAAAAADFgAAAAAAFgAAAAABFgAAAAADFgAAAAAAYQAAAAAAYQAAAAABYQAAAAADYQAAAAADZAAAAAAAFgAAAAADFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAFgAAAAABUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAFgAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADRwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAABRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAADZAAAAAAARwAAAAABRwAAAAACZAAAAAAAFgAAAAAAFgAAAAACFgAAAAABFgAAAAACZAAAAAAAFgAAAAAAMAAAAAAAFgAAAAACRwAAAAADRwAAAAACRwAAAAADRwAAAAADZAAAAAAARwAAAAAARwAAAAAAZAAAAAAAFgAAAAABRwAAAAABRwAAAAAAFgAAAAACZAAAAAAAFgAAAAAAMAAAAAAAMAAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAAAZAAAAAAARwAAAAACRwAAAAADZAAAAAAAFgAAAAADRwAAAAACRwAAAAABFgAAAAADZAAAAAAAFgAAAAABMAAAAAAAFgAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAADZAAAAAAARwAAAAACRwAAAAABZAAAAAAAFgAAAAADFgAAAAABFgAAAAAAFgAAAAADZAAAAAAAFgAAAAADMAAAAAAAMAAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAABZAAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAACVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAACZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAADZAAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAACZAAAAAAAYQAAAAADYQAAAAACZAAAAAAARwAAAAACRwAAAAAARwAAAAADZAAAAAAARwAAAAADRwAAAAACRwAAAAADZAAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAAAZAAAAAAAYQAAAAAAYQAAAAACZAAAAAAA + version: 6 + -1,2: + ind: -1,2 + tiles: BgAAAAAABgAAAAAABgAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAFgAAAAAAFgAAAAACFgAAAAACFgAAAAABFgAAAAACFgAAAAABFgAAAAADFgAAAAACFgAAAAADBgAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAAAFgAAAAAAFgAAAAABFgAAAAAAFgAAAAABFgAAAAAAFgAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAFgAAAAAAFgAAAAACFgAAAAABFgAAAAADFgAAAAACFgAAAAADFgAAAAADFgAAAAABFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAAAFgAAAAACFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: FgAAAAADFgAAAAADFgAAAAABFgAAAAADFgAAAAABFgAAAAAAFgAAAAABZAAAAAAAAAAAAAAAAAAAAAAABgAAAAAGZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAFgAAAAAAFgAAAAABFgAAAAADFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAACFgAAAAAAFgAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZQAAAAAAZQAAAAAABgAAAAAAZAAAAAAARwAAAAADFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZQAAAAAABgAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAACZAAAAAAAFgAAAAABFgAAAAADFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAADFgAAAAAAFgAAAAADFgAAAAADFgAAAAACFgAAAAABFgAAAAACFgAAAAACFgAAAAABBgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAACZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAABZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: RwAAAAAARwAAAAACZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABRwAAAAACZAAAAAAAJQAAAAAAZAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADRwAAAAACJQAAAAAAJQAAAAAAZAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAJQAAAAAAZAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAABgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAACgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: ZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAABFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAACZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAADRwAAAAADZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAAARwAAAAABZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABRwAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADRwAAAAADZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAAAZAAAAAAAFgAAAAAAFgAAAAACFgAAAAACFgAAAAACZAAAAAAAUwAAAAAAZAAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAFgAAAAABFgAAAAADFgAAAAABFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAADRwAAAAADZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAACRwAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAADRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAADZAAAAAAARwAAAAADRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,3: + ind: 0,3 + tiles: BgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAABFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAFgAAAAABLAAAAAAALAAAAAAAFgAAAAAALAAAAAAALAAAAAAAFgAAAAACZAAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAALAAAAAAAFgAAAAAALAAAAAAAFgAAAAADLAAAAAAAFgAAAAACLAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAALAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACLAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAALAAAAAAAFgAAAAAAZAAAAAAALAAAAAAAZAAAAAAAFgAAAAADLAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAALAAAAAAAFgAAAAADFgAAAAABLAAAAAAAFgAAAAACFgAAAAABLAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAALAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAALAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAFgAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAACFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,3: + ind: 1,3 + tiles: ZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,2: + ind: -2,2 + tiles: RwAAAAACRwAAAAABRwAAAAACRwAAAAACRwAAAAAARwAAAAAAFgAAAAACZAAAAAAABgAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAABgAAAAAFBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAFBgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAHBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAABgAAAAAAZAAAAAAAYwAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: ZAAAAAAAZAAAAAAAYQAAAAADYQAAAAACYQAAAAACZAAAAAAAYwAAAAAABgAAAAAHBgAAAAAABgAAAAABBgAAAAADBgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAACYQAAAAACZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAFgAAAAADRwAAAAABRwAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAFgAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACRwAAAAABRwAAAAADZAAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAARwAAAAADRwAAAAADZAAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAABRwAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAABRwAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACZAAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAAARwAAAAAD + version: 6 + 0,-2: + ind: 0,-2 + tiles: RwAAAAAARwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAABVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACZAAAAAAARwAAAAABLAAAAAAARwAAAAADRwAAAAADZAAAAAAAFgAAAAAAFgAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAABVwAAAAACVwAAAAADRwAAAAADRwAAAAAARwAAAAABRwAAAAADLAAAAAAALAAAAAAALAAAAAAAZAAAAAAAFgAAAAABFgAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAADVwAAAAAAVwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAACDgAAAAAADgAAAAAADgAAAAAAZAAAAAAAFgAAAAABFgAAAAACZAAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAABDgAAAAAARwAAAAACRwAAAAADZAAAAAAAFgAAAAACFgAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAADRwAAAAACRwAAAAABRwAAAAABZAAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAABRwAAAAACFgAAAAABFgAAAAABZAAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAAARwAAAAABRwAAAAABZAAAAAAAFgAAAAADFgAAAAACFgAAAAAAFgAAAAACZAAAAAAAFgAAAAAAFgAAAAADZAAAAAAAFgAAAAADFgAAAAAAFgAAAAADFgAAAAACFgAAAAADRwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAACFgAAAAABFgAAAAACFgAAAAABFgAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAAAFgAAAAABFgAAAAAAFgAAAAACFgAAAAACRwAAAAACRwAAAAADRwAAAAABRwAAAAAAFgAAAAACFgAAAAABFgAAAAACFgAAAAADFgAAAAABFgAAAAAAFgAAAAABFgAAAAADFgAAAAACFgAAAAADFgAAAAACFgAAAAAARwAAAAADRwAAAAACZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAABZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAARwAAAAABRwAAAAABZAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAADFgAAAAABZAAAAAAAFgAAAAADFgAAAAABZAAAAAAADgAAAAAAFgAAAAABDgAAAAAAZAAAAAAARwAAAAAARwAAAAAAZAAAAAAAFgAAAAAAFgAAAAACFgAAAAACRwAAAAABFgAAAAADZAAAAAAAFgAAAAABFgAAAAABZAAAAAAADgAAAAAAFgAAAAACDgAAAAAAZAAAAAAARwAAAAACRwAAAAACZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAACRwAAAAAAFgAAAAAAZAAAAAAAFgAAAAABFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABZAAAAAAARwAAAAABRwAAAAADRwAAAAABZAAAAAAAVwAAAAACRwAAAAACRwAAAAACRwAAAAADZAAAAAAAVwAAAAADVwAAAAABRwAAAAABZAAAAAAARwAAAAACRwAAAAADZAAAAAAARwAAAAAARwAAAAACRwAAAAABZAAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAADZAAAAAAAVwAAAAACVwAAAAACRwAAAAACZAAAAAAARwAAAAABRwAAAAABZAAAAAAARwAAAAACRwAAAAABRwAAAAACZAAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAABVwAAAAAAVwAAAAACVwAAAAABRwAAAAABZAAAAAAARwAAAAABRwAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAAAZAAAAAAARwAAAAABVwAAAAABRwAAAAABVwAAAAADZAAAAAAAVwAAAAADVwAAAAAARwAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAACRwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAACZAAAAAAAVwAAAAAAVwAAAAADZAAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAZAAAAAAARwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAAAVwAAAAACRwAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAACRwAAAAADRwAAAAACVwAAAAABVwAAAAABVwAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAAAVwAAAAADVwAAAAADRwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAAAVwAAAAABVwAAAAABZAAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAABZAAAAAAARwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABZAAAAAAAZAAAAAAARwAAAAACRwAAAAACMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAVwAAAAABVwAAAAADZAAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAABZAAAAAAARwAAAAADRwAAAAADMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAARwAAAAACVwAAAAADZAAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAACVwAAAAACZAAAAAAARwAAAAADRwAAAAABMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAARwAAAAAAVwAAAAACZAAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAAAZAAAAAAARwAAAAAARwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAA + version: 6 + -1,-3: + ind: -1,-3 + tiles: AAAAAAAAYwAAAAAAKAAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAADKAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAKAAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAABKAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAKAAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAACKAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAABRwAAAAACZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAABRwAAAAABZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAADFgAAAAAAZAAAAAAARwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAACFgAAAAACZAAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAADRwAAAAABRwAAAAADMwAAAAAAMwAAAAAAFgAAAAAAFgAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAADRwAAAAADRwAAAAAARwAAAAABRwAAAAABFgAAAAADFgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAADFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAAD + version: 6 + 0,-3: + ind: 0,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAVwAAAAADVwAAAAAAVwAAAAAAZAAAAAAABgAAAAAHBgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAADLAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAVwAAAAADZAAAAAAAFgAAAAAAFgAAAAADZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAABFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAADZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABZAAAAAAAZAAAAAAAFgAAAAADLAAAAAAAZAAAAAAARwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAABZAAAAAAAFgAAAAAAFgAAAAABZAAAAAAARwAAAAACRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + version: 6 + -1,-4: + ind: -1,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAADZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAACRwAAAAADZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAKAAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAACKAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-2: + ind: 1,-2 + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAARwAAAAADRwAAAAACRwAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAARwAAAAACRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAARwAAAAADRwAAAAADRwAAAAADZAAAAAAAFgAAAAADFgAAAAACZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAAAZAAAAAAARwAAAAABFgAAAAADZAAAAAAARwAAAAACRwAAAAABZAAAAAAARwAAAAABVwAAAAACVwAAAAADVwAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAABZAAAAAAARwAAAAAAFgAAAAADZAAAAAAARwAAAAABRwAAAAACZAAAAAAARwAAAAACVwAAAAAAVwAAAAADVwAAAAADRwAAAAACRwAAAAABRwAAAAADRwAAAAABRwAAAAABRwAAAAADRwAAAAADFgAAAAAAFgAAAAADRwAAAAACRwAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAABRwAAAAADZAAAAAAAFgAAAAADFgAAAAACZAAAAAAARwAAAAAARwAAAAACZAAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAACZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABFgAAAAABFgAAAAAAFgAAAAACFgAAAAADFgAAAAABFgAAAAACFgAAAAACZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAABRwAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAAFgAAAAABFgAAAAACFgAAAAACFgAAAAADRwAAAAAARwAAAAABRwAAAAABYQAAAAAAYQAAAAABYQAAAAABYQAAAAAAYQAAAAAAYQAAAAABZAAAAAAABgAAAAAABgAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAACYQAAAAAAYQAAAAADYQAAAAACZAAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAAAYQAAAAADZAAAAAAABgAAAAAAZAAAAAAAYQAAAAABYQAAAAADYQAAAAAAYQAAAAADYQAAAAACZAAAAAAABgAAAAAHBgAAAAAAZAAAAAAAVAAAAAAAYQAAAAABYQAAAAAAYQAAAAADZAAAAAAABgAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAADYQAAAAADZAAAAAAAZAAAAAAABgAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAAAYQAAAAAAZAAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAACAAAAAAAA + version: 6 + 2,-2: + ind: 2,-2 + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAHBgAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAAAFgAAAAACFgAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAADBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAACZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAADZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAADFgAAAAABFgAAAAADZAAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAADFgAAAAACFgAAAAABZAAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAADBgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAFBgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-3: + ind: 2,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAADBgAAAAACBgAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAADBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAADFgAAAAACFgAAAAACZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAACFgAAAAAAZAAAAAAABgAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAA + version: 6 + 1,-3: + ind: 1,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAADBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAACBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAACBgAAAAAABgAAAAAABgAAAAAHBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAGBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAHBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAACBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAADBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAADBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACgAAAAAACgAAAAAACgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAACgAAAAAACgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAACFgAAAAACFgAAAAADFgAAAAABFgAAAAABZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAADZAAAAAAAFgAAAAABFgAAAAADFgAAAAADZAAAAAAARwAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAA + version: 6 + -3,-1: + ind: -3,-1 + tiles: BgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADZAAAAAAARwAAAAABRwAAAAADZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAARwAAAAADRwAAAAACZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAFgAAAAACRwAAAAAAZAAAAAAARwAAAAADRwAAAAAAZAAAAAAARwAAAAACRwAAAAAAZAAAAAAARwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAAARwAAAAACZAAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAADZAAAAAAARwAAAAADRwAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAARwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAARwAAAAAARwAAAAADZAAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAADZAAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAABRwAAAAABZAAAAAAARwAAAAAARwAAAAACZAAAAAAARwAAAAADRwAAAAABZAAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAADZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAABZAAAAAAARwAAAAADRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAABZAAAAAAARwAAAAAARwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAAD + version: 6 + -3,-2: + ind: -3,-2 + tiles: AAAAAAAAAAAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAABgAAAAAABgAAAAAAZAAAAAAAMAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAMAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAACZAAAAAAAYQAAAAACYQAAAAABYQAAAAADYQAAAAABZAAAAAAABgAAAAAAZAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAADYQAAAAABZAAAAAAAYQAAAAADYQAAAAACYQAAAAAABgAAAAAABgAAAAAAZAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAACYQAAAAADYQAAAAACZAAAAAAAZAAAAAAABgAAAAAABgAAAAAAZAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAAAYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAACFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAFgAAAAAABgAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABZAAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAFgAAAAABBgAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAFgAAAAAA + version: 6 + -2,-2: + ind: -2,-2 + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAACZAAAAAAAFgAAAAABFgAAAAAAFgAAAAABZAAAAAAAFgAAAAACFgAAAAACFgAAAAACFgAAAAABZAAAAAAAVwAAAAABVwAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAABZAAAAAAAFgAAAAABFgAAAAABFgAAAAACZAAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAADVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAADZAAAAAAAVwAAAAACVwAAAAABVwAAAAABVwAAAAADZAAAAAAAVwAAAAACVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAACFgAAAAABZAAAAAAAFgAAAAAAFgAAAAABFgAAAAADFgAAAAAAZAAAAAAAVwAAAAACVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAADVwAAAAABVwAAAAACVwAAAAABVwAAAAACVwAAAAACVwAAAAACVwAAAAADVwAAAAABVwAAAAACVwAAAAABMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACVwAAAAADVwAAAAABZAAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAABMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAABVwAAAAACMwAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAADYQAAAAABYQAAAAACYQAAAAACYQAAAAABYQAAAAAAZAAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAACVwAAAAADFgAAAAAAFgAAAAAAFgAAAAABYQAAAAACYQAAAAACYQAAAAABYQAAAAABYQAAAAADYQAAAAABYQAAAAABZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAACYQAAAAACYQAAAAAAYQAAAAACYQAAAAACYQAAAAADYQAAAAACYQAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAADZAAAAAAAVwAAAAADFgAAAAABFgAAAAAAFgAAAAAAYQAAAAABYQAAAAABYQAAAAADYQAAAAABYQAAAAADYQAAAAACYQAAAAACZAAAAAAAFgAAAAABFgAAAAADFgAAAAAAFgAAAAABVwAAAAADFgAAAAACFgAAAAAAFgAAAAACFgAAAAABFgAAAAABFgAAAAADYQAAAAADYQAAAAABYQAAAAABYQAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAACZAAAAAAAVwAAAAAD + version: 6 + -2,-3: + ind: -2,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAABZAAAAAAACwAAAAADCwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAACwAAAAACCwAAAAACCwAAAAAACwAAAAAACwAAAAACCwAAAAADZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAFgAAAAACGgAAAAACGgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAACwAAAAADCwAAAAACCwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAGgAAAAAAGgAAAAADZAAAAAAAAAAAAAAAAAAAAAAAYQAAAAADYQAAAAAAYQAAAAADZAAAAAAAFgAAAAAAFgAAAAACZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAABYQAAAAACZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAFgAAAAABFgAAAAABFgAAAAACFgAAAAABFgAAAAADFgAAAAAAYQAAAAABYQAAAAACYQAAAAADZAAAAAAAYQAAAAAAYQAAAAACZAAAAAAAYQAAAAADYQAAAAAAYQAAAAAAFgAAAAADZAAAAAAAMwAAAAAAMwAAAAAAFgAAAAADFgAAAAADZAAAAAAAYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAYQAAAAADZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAADFgAAAAABZAAAAAAAMwAAAAAAMwAAAAAAFgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAGwAAAAADFgAAAAABZAAAAAAAFgAAAAACFgAAAAACFgAAAAACFgAAAAAA + version: 6 + -3,2: + ind: -3,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,1: + ind: -3,1 + tiles: AAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAFgAAAAACPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAFgAAAAACPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAABBgAAAAAABgAAAAAABgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAFBgAAAAAABgAAAAAABgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAHBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAFBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAUwAAAAAA + version: 6 + -3,0: + ind: -3,0 + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAABZAAAAAAARwAAAAACRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAACZAAAAAAARwAAAAACRwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAACZAAAAAAARwAAAAADRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAABZAAAAAAARwAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAAAFgAAAAACFgAAAAACFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAABFgAAAAABFgAAAAADFgAAAAACFgAAAAACFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAAAFgAAAAAAFgAAAAACFgAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAFgAAAAABPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAABgAAAAAHBgAAAAAABgAAAAAAZAAAAAAAFgAAAAABPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAA + version: 6 + -3,-3: + ind: -3,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAJQAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAVwAAAAAAVwAAAAABVwAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAZAAAAAAAVwAAAAADVwAAAAADVwAAAAADRwAAAAADRwAAAAAAZAAAAAAAVwAAAAAAVwAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAZAAAAAAAVwAAAAABVwAAAAACVwAAAAAARwAAAAAARwAAAAABVwAAAAADVwAAAAACVwAAAAACVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + version: 6 + -4,0: + ind: -4,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAA + version: 6 + -4,-1: + ind: -4,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAACZAAAAAAARwAAAAACRwAAAAABRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAADFgAAAAACRwAAAAADRwAAAAABRwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAACZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAADZAAAAAAARwAAAAAARwAAAAABRwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABBgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAGBgAAAAAAZAAAAAAABgAAAAAABgAAAAABBgAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAAABgAAAAADBgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAA + version: 6 + -4,-2: + ind: -4,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAA + version: 6 + -5,-2: + ind: -5,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + version: 6 + 3,-3: + ind: 3,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,-2: + ind: 3,-2 + tiles: AAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,1: + ind: -4,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 1084: 27,-31 + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 1605: -35,19 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 938: -11,-6 + 1085: 27,-29 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 16: -21,-9 + 17: -21,-8 + 18: -21,-7 + 19: -23,-7 + 28: -21,-4 + 30: -23,-4 + 56: 5,22 + 57: 6,22 + 58: 7,22 + 59: 8,22 + 141: 20,14 + 147: 18,21 + 246: 13,55 + 247: 13,49 + 248: 7,49 + 249: 7,55 + 250: 11,43 + 251: 9,43 + 310: 28,-10 + 311: 30,-10 + 419: 11,-28 + 420: 12,-28 + 422: 12,-26 + 423: 14,-26 + 424: 5,-24 + 425: 19,-27 + 588: -30,22 + 589: -31,22 + 635: -17,11 + 636: -17,9 + 654: -37,-9 + 655: -36,-9 + 687: -35,5 + 688: -34,5 + 689: -33,5 + 690: -32,5 + 699: -35,1 + 713: -31,-6 + 714: -31,-10 + 863: -54,-11 + 864: -55,-10 + 865: -54,-9 + 866: -53,-10 + 899: 14,23 + 900: 14,25 + 901: 14,26 + 902: 14,27 + 903: 18,23 + 904: 18,24 + 936: -10,-6 + 937: -10,-10 + 1010: 31,-29 + 1011: 32,-29 + 1012: 34,-29 + 1013: 35,-29 + 1082: 29,-31 + 1083: 29,-29 + 1204: -9,-28 + 1205: -9,-27 + 1233: -14,-26 + 1234: -16,-26 + 1531: 2,-36 + 1532: -15,-14 + 1604: -37,20 + - node: + color: '#FFFFFFFF' + id: BotLeft + decals: + 1533: -47,-9 + 1534: -47,-8 + 1535: -47,-7 + 1599: -32,-10 + 1600: -33,-10 + 1601: -34,-10 + 1602: -36,21 + 1603: -37,21 + - node: + color: '#FFFFFFFF' + id: BotLeftGreyscale + decals: + 869: -53,-9 + 870: -55,-11 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: BotRight + decals: + 1086: 22,-27 + - node: + color: '#FFFFFFFF' + id: BotRightGreyscale + decals: + 867: -55,-9 + 868: -53,-11 + 1369: -19,-19 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 1038: -15,-35 + 1039: -23,-40 + 1040: -23,-39 + 1041: -23,-37 + 1042: -23,-38 + 1043: -23,-36 + 1091: -1,28 + 1092: -1,29 + 1093: -1,30 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 1088: -5,28 + 1089: -5,29 + 1090: -5,30 + - node: + color: '#EFB34196' + id: BrickTileSteelCornerNe + decals: + 1553: -39,-11 + 1554: -39,-11 + - node: + color: '#EFB34196' + id: BrickTileSteelCornerNw + decals: + 1559: -43,-11 + 1560: -43,-11 + - node: + color: '#EFB34196' + id: BrickTileSteelCornerSe + decals: + 1575: -39,-19 + 1576: -39,-19 + - node: + color: '#EFB34196' + id: BrickTileSteelCornerSw + decals: + 1573: -43,-19 + 1574: -43,-19 + - node: + color: '#EFB34196' + id: BrickTileSteelLineE + decals: + 1583: -39,-18 + 1584: -39,-18 + 1585: -39,-17 + 1586: -39,-17 + 1587: -39,-15 + 1588: -39,-15 + 1589: -39,-16 + 1590: -39,-16 + 1591: -39,-14 + 1592: -39,-14 + 1593: -39,-13 + 1594: -39,-13 + 1595: -39,-12 + 1596: -39,-12 + - node: + color: '#D381C996' + id: BrickTileSteelLineN + decals: + 1005: 31,-29 + 1006: 32,-29 + 1007: 33,-29 + 1008: 34,-29 + 1009: 35,-29 + - node: + color: '#EFB34196' + id: BrickTileSteelLineN + decals: + 1555: -40,-11 + 1556: -40,-11 + 1557: -42,-11 + 1558: -42,-11 + - node: + color: '#D381C996' + id: BrickTileSteelLineS + decals: + 1000: 31,-25 + 1001: 32,-25 + 1002: 33,-25 + 1003: 34,-25 + 1004: 35,-25 + - node: + color: '#EFB34196' + id: BrickTileSteelLineS + decals: + 1577: -40,-19 + 1578: -40,-19 + 1579: -41,-19 + 1580: -41,-19 + 1581: -42,-19 + 1582: -42,-19 + - node: + color: '#EFB34196' + id: BrickTileSteelLineW + decals: + 1561: -43,-12 + 1562: -43,-12 + 1563: -43,-14 + 1564: -43,-14 + 1565: -43,-15 + 1566: -43,-15 + 1567: -43,-16 + 1568: -43,-16 + 1569: -43,-17 + 1570: -43,-17 + 1571: -43,-18 + 1572: -43,-18 + - node: + color: '#334E6DC8' + id: BrickTileWhiteBox + decals: + 1045: -50,-14 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteBox + decals: + 1046: -51,-14 + - node: + color: '#EFB34196' + id: BrickTileWhiteBox + decals: + 1044: -49,-14 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNe + decals: + 1171: -9,-21 + 1243: -15,-21 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerNe + decals: + 1061: 26,-25 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNw + decals: + 1172: -13,-21 + 1247: -21,-21 + 1248: -23,-23 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerNw + decals: + 1062: 27,-25 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSe + decals: + 1170: -9,-24 + 1256: -15,-24 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSw + decals: + 1249: -23,-24 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerNe + decals: + 1066: 25,-25 + 1070: 26,-27 + 1081: 22,-24 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNe + decals: + 1495: -6,-32 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerNw + decals: + 1260: -21,-23 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerNw + decals: + 1067: 28,-25 + 1069: 27,-27 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNw + decals: + 1496: 0,-32 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerSe + decals: + 1058: 21,-25 + 1068: 25,-24 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSe + decals: + 1494: -6,-23 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerSw + decals: + 1057: 25,-25 + 1065: 28,-24 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSw + decals: + 1493: 0,-23 + - node: + color: '#D381C996' + id: BrickTileWhiteLineE + decals: + 1052: 21,-27 + 1053: 21,-26 + 1059: 26,-26 + 1071: 22,-21 + 1072: 22,-22 + 1073: 22,-23 + 1306: -17,-18 + 1307: -17,-17 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineE + decals: + 1470: -6,-31 + 1471: -6,-30 + 1472: -6,-29 + 1473: -6,-27 + 1474: -6,-25 + 1475: -6,-24 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineN + decals: + 1180: -11,-21 + 1244: -17,-21 + 1245: -18,-21 + 1246: -19,-21 + 1259: -22,-23 + - node: + color: '#D381C996' + id: BrickTileWhiteLineN + decals: + 1047: 27,-28 + 1048: 28,-28 + 1049: 29,-28 + 1074: 23,-24 + 1075: 24,-24 + 1076: 25,-24 + 1077: 26,-24 + 1078: 27,-24 + 1079: 28,-24 + 1080: 29,-24 + 1305: -16,-19 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + decals: + 1476: -5,-32 + 1477: -4,-32 + 1478: -2,-32 + 1479: -1,-32 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineS + decals: + 1173: -12,-24 + 1181: -11,-24 + 1250: -16,-24 + 1251: -18,-24 + 1252: -19,-24 + 1253: -20,-24 + 1254: -21,-24 + 1255: -22,-24 + - node: + color: '#D381C996' + id: BrickTileWhiteLineS + decals: + 1054: 24,-25 + 1055: 23,-25 + 1056: 22,-25 + 1063: 27,-24 + 1064: 26,-24 + 1308: -16,-16 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + decals: + 1488: -1,-23 + 1489: -2,-23 + 1490: -3,-23 + 1491: -4,-23 + 1492: -5,-23 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineW + decals: + 1261: -21,-22 + - node: + color: '#D381C996' + id: BrickTileWhiteLineW + decals: + 1050: 25,-27 + 1051: 25,-26 + 1060: 27,-26 + 1309: -15,-18 + 1310: -15,-17 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineW + decals: + 1480: 0,-31 + 1481: 0,-30 + 1482: 0,-29 + 1483: 0,-28 + 1484: 0,-27 + 1485: 0,-26 + 1486: 0,-25 + 1487: 0,-24 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Bushb3 + decals: + 850: 14.0002365,-41.964172 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Bushc3 + decals: + 857: 4.0288744,-43.00805 + - node: + color: '#FFFFFFFF' + id: Bushf2 + decals: + 51: 6.409272,21.00127 + - node: + color: '#FFFFFFFF' + id: Bushg2 + decals: + 27: -8.467243,-8.991291 + - node: + color: '#FFFFFFFF' + id: Bushg3 + decals: + 26: -8.904743,-10.131916 + - node: + color: '#FFFFFFFF' + id: Bushg4 + decals: + 25: -7.107868,-9.913166 + 328: -9.013572,-49.089592 + - node: + color: '#FFFFFFFF' + id: Bushi1 + decals: + 24: -7.920368,-9.100666 + 327: -8.919771,-45.902092 + - node: + color: '#FFFFFFFF' + id: Bushi3 + decals: + 326: -8.986252,-47.542717 + 333: -13.982322,-47.902092 + - node: + color: '#FFFFFFFF' + id: Bushi4 + decals: + 23: -8.592243,-9.991291 + 52: 7.440522,20.93877 + - node: + color: '#FFFFFFFF' + id: Bushk1 + decals: + 50: 7.940522,21.016895 + - node: + color: '#FFFFFFFF' + id: Bushn1 + decals: + 53: 7.034272,20.954395 + - node: + color: '#52B4E996' + id: CheckerNESW + decals: + 941: -35,-4 + 942: -35,-3 + - node: + color: '#D381C996' + id: CheckerNESW + decals: + 1504: -3,-29 + 1505: -3,-28 + 1506: -3,-27 + 1507: -3,-26 + - node: + color: '#DE3A3A96' + id: CheckerNESW + decals: + 939: -35,-1 + 940: -35,-2 + - node: + color: '#334E6DC8' + id: CheckerNWSE + decals: + 1280: -25,-29 + 1281: -26,-29 + 1282: -27,-29 + 1283: -27,-28 + 1284: -26,-28 + 1285: -25,-28 + 1286: -25,-27 + 1287: -26,-27 + 1288: -27,-27 + 1289: -27,-26 + 1290: -26,-26 + 1291: -25,-26 + - node: + color: '#52B4E996' + id: CheckerNWSE + decals: + 1194: -11,-29 + 1195: -10,-29 + 1196: -10,-28 + 1197: -11,-28 + 1198: -11,-27 + 1199: -10,-27 + 1200: -10,-26 + 1201: -11,-26 + 1294: -26,-24 + 1295: -26,-23 + 1296: -25,-23 + 1297: -25,-24 + 1500: -3,-29 + 1501: -3,-28 + 1502: -3,-27 + 1503: -3,-26 + - node: + color: '#D381C996' + id: CheckerNWSE + decals: + 357: 16,-22 + 358: 16,-21 + 359: 17,-21 + 360: 17,-22 + 361: 18,-22 + 362: 18,-21 + 985: 31,-28 + 986: 31,-27 + 987: 31,-26 + 988: 32,-26 + 989: 32,-27 + 990: 32,-28 + 991: 33,-28 + 992: 33,-27 + 993: 33,-26 + 994: 34,-26 + 995: 34,-27 + 996: 34,-28 + 997: 35,-28 + 998: 35,-27 + 999: 35,-26 + - node: + color: '#D4D4D496' + id: CheckerNWSE + decals: + 943: -35,-4 + 944: -35,-3 + 945: -35,-2 + 946: -35,-1 + - node: + color: '#DE3A3A96' + id: CheckerNWSE + decals: + 561: -34,12 + 562: -35,12 + 563: -34,11 + 564: -34,10 + 565: -35,10 + 566: -35,11 + 567: -36,10 + 568: -36,11 + 569: -36,12 + 570: -37,10 + 571: -37,11 + 572: -37,12 + 573: -38,11 + 574: -38,10 + 575: -39,10 + 576: -39,11 + 577: -39,12 + 578: -38,12 + 579: -40,12 + 580: -40,11 + 581: -40,10 + - node: + color: '#EFB34196' + id: CheckerNWSE + decals: + 728: -49,-10 + 729: -50,-10 + 730: -51,-10 + 731: -51,-9 + 732: -50,-9 + 733: -49,-9 + 734: -49,-8 + 735: -50,-8 + 736: -51,-8 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 29: -22,-4 + 60: 9,22 + 142: 20,15 + 148: 18,20 + 254: 5,47 + 255: 6,47 + 256: 7,47 + 312: 29,-10 + 313: 31,-10 + 421: 12,-29 + 582: -27,13 + 583: -27,14 + 630: -20,7 + 631: -19,7 + 632: -18,12 + 633: -17,12 + 634: -17,10 + 648: -35,-34 + 649: -34,-34 + 691: -35,4 + 692: -34,4 + 693: -33,4 + 694: -32,4 + 700: -34,-6 + 715: -40,-4 + 716: -40,-3 + 717: -40,-2 + 1087: 22,-26 + 1202: -9,-26 + 1203: -9,-29 + 1367: -12,-37 + 1368: -11,-37 + 1370: -6,-15 + 1371: -7,-15 + 1372: 0,-15 + 1373: 1,-15 + 1374: -12,-13 + 1375: -12,-12 + 1376: 6,-13 + 1377: 6,-12 + 1378: 11,-11 + 1379: 12,-11 + 1380: 12,0 + 1381: 11,0 + 1382: 12,16 + 1383: 11,16 + 1384: 13,14 + 1385: 13,15 + 1386: 4,19 + 1387: 4,20 + 1388: -10,19 + 1389: -10,20 + 1390: -23,15 + 1391: -24,15 + 1392: -26,6 + 1393: -27,6 + 1394: -26,-11 + 1395: -27,-11 + 1396: -22,-13 + 1397: -22,-12 + 1606: 5,-4 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 1030: -44,-28 + 1031: -45,-29 + 1032: -43,-27 + 1033: -44,-30 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 801: 7,-33 + 802: 8,-32 + 809: 5,-39 + 810: 5,-38 + 811: 12,-41 + 828: 24,12 + 1027: -43,-28 + 1028: -44,-27 + 1029: -45,-28 + 1537: -47,-8 + 1538: -47,-7 + 1539: -47,-10 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 910: 20,27 + 911: 19,26 + 912: 17,26 + 913: 16,24 + 914: 16,30 + 915: 17,32 + 916: 16,35 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 804: 8,-34 + 805: 8,-36 + 806: 13,-39 + 807: 14,-38 + 808: 4,-38 + 812: -34,-6 + 813: -34,-8 + 814: -33,-7 + 815: -41,-9 + 816: -41,-8 + 817: -39,-9 + 818: -34,-4 + 819: -31,-3 + 820: -25,-5 + 821: -26,-4 + 822: -23,-12 + 823: 13,-4 + 824: 19,15 + 825: 18,14 + 826: 24,14 + 829: 24,13 + 830: 22,14 + 831: 23,15 + 832: 17,14 + 833: 16,21 + 834: 15,21 + 835: 16,19 + 836: 16,23 + 837: 17,24 + 838: -21,9 + 839: -23,8 + 840: -25,7 + 841: -23,13 + 842: 0,-19 + 843: -6,-28 + 844: -6,-33 + 845: -11,-38 + 1536: -47,-9 + 1543: -46,-13 + 1544: -45,-12 + 1545: -46,-11 + 1546: -45,-11 + 1547: -45,-10 + 1548: -45,-9 + 1549: -46,-8 + 1550: -46,-7 + 1551: -45,-6 + 1552: -40,-6 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 803: 8,-33 + 827: 24,15 + 1540: -46,-10 + 1541: -46,-9 + 1542: -46,-12 + - node: + color: '#FFFFFFFF' + id: Flowersbr1 + decals: + 47: 6.065522,21.048145 + - node: + color: '#FFFFFFFF' + id: Flowerspv1 + decals: + 48: 7.049897,20.985645 + 325: -8.939377,-46.636467 + - node: + color: '#FFFFFFFF' + id: Flowersy1 + decals: + 49: 7.518647,21.016895 + 324: -8.955002,-48.308342 + - node: + color: '#FFFFFFFF' + id: Flowersy4 + decals: + 332: -13.997947,-48.917717 + - node: + color: '#334E6DC8' + id: FullTileOverlayGreyscale + decals: + 109: -7,29 + 110: 1,29 + - node: + color: '#52B4E996' + id: FullTileOverlayGreyscale + decals: + 1182: -11,-23 + 1183: -11,-22 + 1206: -13,-26 + 1207: -15,-26 + 1208: -17,-26 + 1209: -18,-26 + 1210: -16,-29 + 1211: -17,-29 + 1212: -18,-29 + 1300: -24,-24 + - node: + color: '#A4610696' + id: FullTileOverlayGreyscale + decals: + 272: 26,-8 + 273: 30,-7 + 897: 16,33 + 898: 15,28 + - node: + color: '#D381C996' + id: FullTileOverlayGreyscale + decals: + 363: 15,-22 + 364: 15,-21 + 365: 19,-22 + 366: 19,-21 + 397: 30,-26 + - node: + color: '#DE3A3A96' + id: FullTileOverlayGreyscale + decals: + 297: 30,1 + 444: -5,-26 + 445: -3,-31 + 559: -33,17 + 560: -35,13 + 612: -27,28 + 613: -31,28 + - node: + color: '#EFB34196' + id: FullTileOverlayGreyscale + decals: + 737: -50,-11 + 738: -52,-13 + 739: -47,-13 + 759: -41,-10 + 760: -44,-13 + 766: -47,-10 + 767: -47,-9 + 768: -47,-8 + 769: -47,-7 + - node: + color: '#FFDB9895' + id: FullTileOverlayGreyscale + decals: + 462: -11,-18 + 463: -11,-17 + 464: -12,-17 + 465: -11,-16 + 466: -10,-17 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Grassa4 + decals: + 846: 14.0471115,-39.042297 + 849: 13.9846115,-43.011047 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Grassa5 + decals: + 848: 3.9064865,-36.901672 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Grassb1 + decals: + 847: 3.9377365,-39.073547 + 851: 13.4377365,-40.948547 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Grassb2 + decals: + 852: 14.1408615,-40.964172 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Grassb3 + decals: + 853: 13.1408615,-43.026672 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Grassb4 + decals: + 1036: -44,-28 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Grassb5 + decals: + 1037: -44,-30 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Grassc2 + decals: + 856: 13.63825,-42.897484 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Grassc3 + decals: + 855: 13.88825,-41.03811 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Grassc4 + decals: + 854: 14.089525,-39.057083 + - node: + color: '#FFFFFFFF' + id: Grassd1 + decals: + 20: -8.810993,-9.335041 + - node: + color: '#FFFFFFFF' + id: Grassd2 + decals: + 46: 7.909272,21.016895 + 323: -8.91927,-49.011467 + 329: -13.966697,-45.902092 + - node: + color: '#FFFFFFFF' + id: Grassd3 + decals: + 21: -7.826618,-9.960041 + - node: + color: '#FFFFFFFF' + id: Grasse2 + decals: + 44: 6.049897,21.0706 + 45: 6.784272,21.079395 + 321: -8.936016,-46.30113 + 331: -13.997947,-48.558342 + - node: + color: '#FFFFFFFF' + id: Grasse3 + decals: + 22: -7.045368,-10.022541 + 322: -9.029766,-47.11363 + 330: -13.997947,-47.558342 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale + decals: + 104: -3,20 + 105: -2,20 + 106: -4,20 + 862: 25,1 + 1266: -20,-29 + 1267: -21,-29 + 1268: -22,-29 + 1269: -23,-29 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + decals: + 1184: -10,-23 + 1185: -12,-23 + 1189: -11,-24 + 1213: -17,-27 + 1214: -16,-27 + 1215: -15,-27 + 1216: -14,-27 + 1217: -21,-27 + 1218: -22,-27 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale + decals: + 136: 17,15 + 154: 16,21 + 155: 15,21 + 165: 19,19 + 166: 18,19 + 171: 19,21 + 267: 30,-8 + 268: 29,-8 + 269: 28,-8 + 890: 16,35 + 891: 16,32 + - node: + color: '#BAFF79B4' + id: HalfTileOverlayGreyscale + decals: + 639: -40,-34 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale + decals: + 389: 6,-15 + 390: 5,-15 + 391: 4,-15 + 392: 3,-15 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale + decals: + 6: -22,-10 + 7: -23,-10 + 187: 10,46 + 198: 6,46 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale + decals: + 294: 28,4 + 295: 29,4 + 296: 30,4 + 432: -3,-25 + 551: -35,17 + 600: -27,32 + 601: -28,32 + 602: -29,32 + 603: -30,32 + 604: -31,32 + 605: -32,32 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale + decals: + 626: -19,11 + 627: -20,11 + 681: -30,5 + 683: -32,3 + 684: -33,3 + 685: -34,3 + 686: -35,3 + 707: -31,-7 + 708: -32,-7 + 709: -33,-7 + 771: -45,-6 + 772: -44,-6 + 773: -43,-6 + 774: -42,-6 + 775: -39,-6 + 776: -40,-6 + 777: -41,-6 + 778: -43,-2 + 779: -44,-2 + 780: -45,-2 + 781: -46,-2 + 877: -48,-12 + 878: -49,-12 + 879: -50,-12 + 880: -51,-12 + 917: 24,1 + - node: + color: '#FFDB9895' + id: HalfTileOverlayGreyscale + decals: + 450: -10,-15 + 451: -11,-15 + 452: -12,-15 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale180 + decals: + 1262: -20,-26 + 1263: -22,-26 + 1264: -21,-26 + 1265: -23,-26 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + decals: + 1186: -10,-22 + 1187: -12,-22 + 1188: -11,-21 + 1219: -14,-28 + 1220: -15,-28 + 1221: -16,-28 + 1222: -17,-28 + 1223: -21,-28 + 1224: -22,-28 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale180 + decals: + 159: 15,17 + 160: 16,17 + 161: 17,17 + 162: 18,17 + 163: 19,17 + 176: 17,13 + 264: 28,-10 + 265: 29,-10 + 266: 30,-10 + 889: 16,29 + 892: 16,34 + - node: + color: '#BAFF79B4' + id: HalfTileOverlayGreyscale180 + decals: + 644: -40,-36 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + decals: + 393: 6,-19 + 394: 5,-19 + 395: 4,-19 + 396: 3,-19 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale180 + decals: + 4: -23,-7 + 5: -22,-7 + 188: 10,44 + 194: 6,44 + 201: 10,48 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 + decals: + 289: 30,2 + 290: 29,2 + 291: 28,2 + 435: -3,-30 + 552: -35,14 + 606: -32,29 + 607: -31,29 + 608: -30,29 + 609: -29,29 + 610: -28,29 + 611: -27,29 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale180 + decals: + 622: -19,8 + 623: -20,8 + 665: -35,1 + 666: -34,1 + 667: -33,1 + 668: -32,1 + 669: -31,1 + 670: -30,1 + 671: -29,1 + 710: -31,-9 + 711: -32,-9 + 712: -33,-9 + 752: -44,-9 + 753: -43,-9 + 754: -42,-9 + 755: -41,-9 + 756: -40,-9 + 757: -39,-9 + 874: -53,-14 + 875: -55,-14 + 876: -48,-14 + - node: + color: '#FFDB9895' + id: HalfTileOverlayGreyscale180 + decals: + 459: -10,-19 + 460: -11,-19 + 461: -12,-19 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale270 + decals: + 1102: -1,31 + 1103: -1,32 + 1104: -1,33 + 1105: -1,34 + 1106: -4,31 + 1107: -4,32 + 1108: -4,33 + 1109: -4,34 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + decals: + 1292: -27,-24 + 1293: -27,-23 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + decals: + 156: 14,20 + 157: 14,19 + 158: 14,18 + 172: 14,25 + 173: 14,26 + 174: 14,27 + 175: 14,23 + 271: 27,-9 + 893: 15,30 + 894: 15,31 + - node: + color: '#BAFF79B4' + id: HalfTileOverlayGreyscale270 + decals: + 637: -41,-35 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + decals: + 340: 8,-25 + 367: 20,-22 + 368: 20,-21 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale270 + decals: + 9: -21,-9 + 10: -21,-8 + 183: 13,45 + 186: 9,45 + 200: 5,45 + 206: 8,51 + 207: 8,52 + 208: 8,53 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + decals: + 293: 27,3 + 436: -4,-29 + 437: -4,-28 + 438: -4,-27 + 439: -4,-26 + 515: -30,13 + 516: -30,15 + 517: -30,17 + 518: -30,19 + 525: -28,16 + 526: -28,19 + 543: -32,11 + 545: -32,18 + 546: -32,19 + 547: -32,20 + 555: -36,15 + 556: -36,16 + 592: -32,26 + 593: -32,27 + 594: -28,26 + 595: -28,27 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale270 + decals: + 677: -31,5 + 678: -31,4 + 706: -34,-8 + 742: -46,-14 + 743: -46,-13 + 744: -46,-12 + 745: -46,-11 + 761: -46,-10 + 762: -46,-9 + 763: -46,-8 + 764: -46,-7 + 765: -46,-6 + - node: + color: '#FFDB9895' + id: HalfTileOverlayGreyscale270 + decals: + 453: -13,-18 + 454: -13,-17 + 455: -13,-16 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale90 + decals: + 1094: -5,31 + 1095: -5,32 + 1096: -5,33 + 1097: -5,34 + 1098: -2,31 + 1099: -2,32 + 1100: -2,33 + 1101: -2,34 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + decals: + 164: 20,18 + 168: 17,20 + 169: 20,20 + 270: 31,-9 + 895: 17,30 + 896: 17,31 + 905: 20,26 + 906: 20,25 + 907: 20,27 + - node: + color: '#BAFF79B4' + id: HalfTileOverlayGreyscale90 + decals: + 643: -39,-35 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale90 + decals: + 345: 9,-26 + 398: 29,-26 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale90 + decals: + 14: -24,-9 + 15: -24,-8 + 184: 15,45 + 185: 11,45 + 196: 7,45 + 209: 12,51 + 210: 12,52 + 211: 12,53 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + decals: + 292: 31,3 + 440: -2,-29 + 441: -2,-28 + 442: -2,-27 + 443: -2,-26 + 557: -34,15 + 558: -34,16 + 596: -26,26 + 597: -26,27 + 598: -30,26 + 599: -30,27 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale90 + decals: + 624: -18,9 + 625: -18,10 + 673: -29,2 + 674: -29,3 + 675: -29,4 + 676: -29,5 + 705: -30,-8 + 746: -45,-14 + 747: -45,-13 + 748: -45,-12 + 749: -45,-11 + 750: -45,-10 + - node: + color: '#FFDB9895' + id: HalfTileOverlayGreyscale90 + decals: + 456: -9,-18 + 457: -9,-17 + 458: -9,-16 + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 55: 5,21 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 143: 22,15 + - node: + color: '#FFFFFFFF' + id: LoadingArea + decals: + 54: 9,21 + 695: -35,3 + 696: -34,3 + 697: -33,3 + 698: -32,3 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale + decals: + 83: -9,22 + 84: -9,23 + 85: -9,24 + 86: -9,25 + 87: -9,26 + 88: -9,27 + 89: -9,28 + 90: -9,29 + 91: -9,30 + 92: -11,20 + 93: -12,20 + 94: -13,20 + 95: -14,20 + 96: -15,20 + 97: -16,20 + 107: -1,20 + 111: 2,22 + 112: 2,23 + 113: 2,24 + 114: 2,25 + 115: 2,26 + 116: 2,27 + 117: 2,28 + 118: 2,29 + 119: 2,30 + 1116: -2,31 + 1117: -3,32 + 1120: -2,32 + 1121: -3,33 + 1122: 0,33 + 1123: 0,32 + 1124: 1,33 + 1130: -6,33 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + decals: + 469: -7,-16 + 470: -7,-17 + 471: -7,-18 + 472: -7,-19 + 473: -7,-20 + 491: -17,-12 + 492: -15,-12 + 493: -13,-12 + 494: -11,-12 + 495: -9,-12 + 496: -7,-12 + 1270: -7,-21 + 1301: -17,-16 + 1341: -12,-56 + 1342: -12,-55 + 1343: -12,-54 + 1344: -12,-53 + 1345: -12,-52 + 1346: -12,-51 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale + decals: + 486: -8,-12 + 487: -10,-12 + 488: -14,-12 + 489: -16,-12 + 490: -18,-12 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale + decals: + 133: 14,15 + 134: 15,15 + 135: 16,15 + - node: + color: '#BAFF79B4' + id: QuarterTileOverlayGreyscale + decals: + 638: -41,-34 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale + decals: + 339: 8,-24 + 372: 14,-28 + 795: 8,-34 + 796: 8,-35 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale + decals: + 8: -21,-10 + 1136: 1,20 + 1137: 0,20 + 1406: -28,-1 + 1407: -27,-1 + 1408: -27,0 + 1409: -27,1 + 1410: -27,2 + 1411: -27,3 + 1412: -27,4 + 1413: -27,5 + 1420: -27,7 + 1421: -27,8 + 1422: -26,8 + 1423: -25,8 + 1424: -24,8 + 1425: -24,9 + 1426: -20,20 + 1427: -19,20 + 1428: -18,20 + 1429: -17,20 + 1430: 11,-1 + 1431: 11,-2 + 1432: 11,-3 + 1433: 11,-4 + 1434: 11,-5 + 1435: 11,-6 + 1436: 11,-7 + 1437: 11,-8 + 1438: 11,-9 + 1439: 11,-10 + 1440: -6,-12 + 1447: 7,-12 + 1448: 8,-12 + 1449: 9,-12 + 1450: 10,-12 + 1451: 11,-12 + 1452: 0,-16 + 1453: 0,-17 + 1454: 0,-18 + 1455: 0,-19 + 1456: 0,-20 + 1457: 0,-21 + 1458: 0,-22 + 1459: -1,-22 + 1460: -2,-22 + 1508: -12,-35 + 1509: -11,-35 + 1510: -10,-35 + 1511: -9,-35 + 1512: -8,-35 + 1516: -4,-35 + 1517: -5,-35 + - node: + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale + decals: + 1311: -12,-45 + 1312: -12,-44 + 1313: -12,-43 + 1314: -12,-42 + 1315: -12,-41 + 1316: -12,-40 + 1317: -12,-39 + 1318: -12,-38 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + decals: + 502: -24,10 + 503: -24,11 + 504: -24,12 + 505: -24,13 + 506: -24,14 + 507: -24,16 + 508: -24,17 + 509: -24,18 + 510: -24,19 + 511: -24,20 + 512: -23,20 + 513: -22,20 + 514: -21,20 + 524: -30,11 + 527: -27,20 + 528: -27,17 + 544: -32,17 + 616: -26,10 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + decals: + 628: -21,10 + 680: -29,5 + 682: -31,3 + 784: -46,-4 + 785: -46,-3 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale180 + decals: + 1114: -4,34 + 1115: -3,33 + 1118: -3,32 + 1119: -4,33 + 1132: -6,33 + 1133: 0,33 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + decals: + 485: -21,-13 + 1298: -27,-24 + 1299: -27,-23 + 1303: -15,-19 + 1353: -11,-38 + 1354: -11,-39 + 1355: -11,-40 + 1356: -11,-41 + 1357: -11,-42 + 1358: -11,-43 + 1359: -11,-44 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 + decals: + 139: 12,14 + 140: 12,13 + 180: 18,13 + 181: 19,13 + 182: 20,13 + 909: 20,28 + - node: + color: '#BAFF79B4' + id: QuarterTileOverlayGreyscale180 + decals: + 642: -39,-36 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale180 + decals: + 346: 9,-29 + 347: 9,-28 + 348: 9,-27 + 351: 9,-22 + 352: 10,-22 + 353: 11,-22 + 354: 12,-22 + 355: 13,-22 + 356: 14,-22 + 369: 15,-29 + 378: 1,-14 + 379: 2,-13 + 380: 3,-13 + 381: 4,-13 + 382: 5,-13 + 383: 7,-13 + 384: 1,-23 + 385: 1,-24 + 386: 1,-25 + 400: 29,-25 + 497: 1,-13 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale180 + decals: + 12: -24,-7 + 1146: -1,16 + 1147: 0,16 + 1148: 0,17 + 1149: 0,18 + 1150: 0,19 + 1151: 2,19 + 1152: 1,19 + 1153: 3,19 + 1154: 12,12 + 1155: 12,11 + 1156: 12,10 + 1157: 12,9 + 1158: 12,8 + 1159: 12,7 + 1160: 12,6 + 1161: 12,5 + 1523: -4,-36 + 1524: -5,-36 + 1525: -6,-36 + 1526: -7,-36 + 1527: -8,-36 + 1528: -9,-36 + 1529: -10,-36 + 1530: -11,-36 + - node: + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale180 + decals: + 1327: -11,-56 + 1328: -11,-55 + 1329: -11,-54 + 1330: -11,-53 + 1331: -11,-52 + 1332: -11,-51 + 1333: -11,-50 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale180 + decals: + 519: -31,18 + 520: -31,20 + 521: -31,16 + 522: -31,14 + 523: -31,12 + 533: -26,16 + 534: -26,19 + 535: -29,18 + 536: -29,15 + 537: -29,13 + 614: -27,11 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale180 + decals: + 751: -45,-9 + 790: -33,-4 + 791: -32,-4 + 792: -31,-4 + 793: -30,-4 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale270 + decals: + 1112: -2,32 + 1113: -3,33 + 1128: 0,33 + 1129: -6,33 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + decals: + 467: -7,-13 + 468: -7,-14 + 474: -7,-25 + 475: -7,-26 + 476: -7,-27 + 477: -7,-28 + 478: -7,-29 + 479: -8,-13 + 480: -9,-13 + 481: -10,-13 + 482: -11,-13 + 483: -13,-13 + 484: -19,-13 + 1271: -7,-24 + 1304: -17,-19 + 1360: -12,-44 + 1361: -12,-43 + 1362: -12,-42 + 1363: -12,-41 + 1364: -12,-40 + 1365: -12,-39 + 1366: -12,-38 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale270 + decals: + 177: 16,13 + 178: 15,13 + 179: 14,13 + 274: 30,-6 + 275: 29,-6 + 276: 28,-6 + 277: 27,-6 + 278: 24,-8 + 279: 24,-6 + 280: 24,-4 + 281: 22,-4 + 282: 20,-4 + 283: 18,-4 + 284: 16,-4 + - node: + color: '#BAFF79B4' + id: QuarterTileOverlayGreyscale270 + decals: + 641: -41,-36 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale270 + decals: + 334: 4,-22 + 335: 5,-22 + 336: 6,-22 + 337: 7,-22 + 338: 8,-22 + 341: 8,-29 + 342: 8,-28 + 343: 8,-27 + 344: 8,-26 + 371: 14,-29 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale270 + decals: + 11: -21,-7 + 1138: -5,16 + 1139: -6,16 + 1140: -6,17 + 1141: -6,18 + 1142: -6,19 + 1143: -7,19 + 1144: -8,19 + 1145: -9,19 + 1162: -7,-30 + 1163: -7,-31 + 1164: -7,-32 + 1165: -7,-33 + 1398: -27,-10 + 1399: -27,-9 + 1400: -27,-8 + 1401: -27,-7 + 1402: -27,-6 + 1403: -27,-5 + 1404: -27,-4 + 1405: -28,-4 + 1518: -2,-36 + 1519: -1,-36 + 1520: 0,-36 + 1521: 1,-36 + 1522: 2,-36 + - node: + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale270 + decals: + 1334: -12,-56 + 1335: -12,-55 + 1336: -12,-54 + 1337: -12,-53 + 1338: -12,-52 + 1339: -12,-51 + 1340: -12,-50 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale270 + decals: + 308: 24,-2 + 309: 24,0 + 531: -27,16 + 532: -27,19 + 542: -32,10 + 548: -32,15 + 615: -26,11 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale270 + decals: + 629: -21,9 + 758: -38,-9 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale90 + decals: + 74: 3,22 + 75: 3,23 + 76: 3,24 + 77: 3,25 + 78: 3,26 + 79: 3,27 + 80: 3,28 + 81: 3,29 + 82: 3,30 + 98: 5,20 + 99: 6,20 + 100: 7,20 + 101: 8,20 + 102: 9,20 + 103: 10,20 + 108: -5,20 + 120: -8,22 + 121: -8,23 + 122: -8,24 + 123: -8,25 + 124: -8,26 + 125: -8,27 + 126: -8,28 + 127: -8,29 + 128: -8,30 + 1110: -4,33 + 1111: -3,32 + 1125: -6,32 + 1126: -6,33 + 1127: -7,33 + 1131: 0,33 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + decals: + 1302: -15,-16 + 1347: -11,-56 + 1348: -11,-55 + 1349: -11,-54 + 1350: -11,-53 + 1351: -11,-52 + 1352: -11,-51 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + decals: + 129: 12,20 + 130: 12,18 + 131: 12,17 + 132: 12,15 + 137: 18,15 + 138: 19,15 + 167: 17,19 + 908: 20,24 + - node: + color: '#BAFF79B4' + id: QuarterTileOverlayGreyscale90 + decals: + 640: -39,-34 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale90 + decals: + 349: 9,-25 + 350: 9,-24 + 370: 15,-28 + 373: 1,-20 + 374: 1,-19 + 375: 1,-18 + 376: 1,-17 + 377: 1,-16 + 387: 1,-30 + 388: 1,-29 + 399: 29,-27 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale90 + decals: + 13: -24,-10 + 1134: -6,20 + 1135: -7,20 + 1276: 1,-31 + 1277: 2,-31 + 1278: 2,-32 + 1279: 2,-33 + 1414: -19,2 + 1415: -20,2 + 1416: -21,2 + 1417: -22,2 + 1418: -23,2 + 1419: -24,2 + 1441: 0,-12 + 1442: 1,-12 + 1443: 2,-12 + 1444: 3,-12 + 1445: 4,-12 + 1446: 5,-12 + 1461: -4,-22 + 1462: -5,-22 + 1463: -6,-22 + 1464: -6,-21 + 1465: -6,-20 + 1466: -6,-19 + 1467: -6,-18 + 1468: -6,-17 + 1469: -6,-16 + 1513: 2,-35 + 1514: -1,-35 + 1515: -2,-35 + - node: + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale90 + decals: + 1319: -11,-38 + 1320: -11,-39 + 1321: -11,-40 + 1322: -11,-41 + 1323: -11,-42 + 1324: -11,-43 + 1325: -11,-44 + 1326: -11,-45 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + decals: + 298: 27,0 + 299: 28,0 + 300: 29,0 + 301: 30,0 + 302: 23,-3 + 303: 21,-3 + 304: 19,-3 + 305: 17,-3 + 306: 15,-3 + 307: 25,-1 + 529: -26,20 + 530: -26,17 + 538: -29,12 + 539: -29,14 + 540: -29,17 + 541: -29,20 + 617: -27,10 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale90 + decals: + 672: -29,1 + 679: -31,5 + 770: -46,-6 + 782: -43,-3 + 783: -43,-4 + 786: -33,-1 + 787: -32,-1 + 788: -31,-1 + 789: -30,-1 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Rock03 + decals: + 1034: -45,-28 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Rock04 + decals: + 1035: -44,-27 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign1 + decals: + 947: -6,-13 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign2 + decals: + 948: -5,-13 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign3 + decals: + 949: -4,-13 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign4 + decals: + 950: -3,-13 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign5 + decals: + 951: -2,-13 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign6 + decals: + 952: -1,-13 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign7 + decals: + 953: 0,-13 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale + decals: + 1231: -23,-27 + 1232: -18,-27 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale + decals: + 0: -23,-8 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale + decals: + 153: 14,21 + 260: 27,-8 + 882: 15,32 + 888: 15,35 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale + decals: + 794: 8,-33 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale + decals: + 189: 9,46 + 199: 5,46 + 213: 8,54 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale + decals: + 286: 27,4 + 430: -4,-25 + 550: -36,17 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale + decals: + 618: -21,11 + 702: -34,-7 + - node: + color: '#FFDB9895' + id: ThreeQuarterTileOverlayGreyscale + decals: + 447: -13,-15 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 1229: -13,-28 + 1230: -20,-28 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 1: -22,-9 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 150: 20,17 + 262: 31,-10 + 881: 17,29 + 887: 17,34 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 191: 11,44 + 195: 7,44 + 203: 11,48 + 204: 12,50 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 288: 31,2 + 434: -2,-30 + 553: -34,14 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 621: -18,8 + 704: -30,-9 + 741: -45,-15 + - node: + color: '#FFDB9895' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 448: -9,-19 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 1227: -23,-28 + 1228: -18,-28 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 149: 14,17 + 263: 27,-10 + 884: 15,29 + 885: 15,34 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 3: -23,-9 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 192: 9,44 + 193: 5,44 + 202: 9,48 + 205: 8,50 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 285: 27,2 + 433: -4,-30 + 554: -36,14 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 620: -21,8 + 701: -34,-9 + 740: -46,-15 + - node: + color: '#FFDB9895' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 446: -13,-19 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 1225: -13,-27 + 1226: -20,-27 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 151: 20,19 + 152: 17,21 + 170: 20,21 + 261: 31,-8 + 883: 17,32 + 886: 17,35 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 2: -22,-8 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 190: 11,46 + 197: 7,46 + 212: 12,54 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 287: 31,4 + 431: -2,-25 + 549: -34,17 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 619: -18,11 + 703: -30,-7 + - node: + color: '#FFDB9895' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 449: -9,-15 + - node: + color: '#FFFFFFFF' + id: WarnBox + decals: + 1023: -9,-44 + 1024: -14,-44 + 1025: -14,-51 + 1026: -9,-51 + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: WarnCorner + decals: + 222: 11,46 + 225: 7,46 + 653: -34,-34 + 659: -36,-8 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarnCorner + decals: + 402: 19,-24 + 720: -41,-2 + - node: + color: '#FFFFFFFF' + id: WarnCorner + decals: + 221: 9,44 + 226: 5,44 + 650: -35,-35 + 656: -37,-10 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarnCorner + decals: + 723: -39,-4 + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: WarnCornerFlipped + decals: + 223: 9,46 + 224: 5,46 + 652: -35,-34 + 658: -37,-8 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarnCornerFlipped + decals: + 403: 19,-26 + 719: -41,-4 + - node: + color: '#FFFFFFFF' + id: WarnCornerFlipped + decals: + 33: -21,-4 + 220: 11,44 + 227: 7,44 + 651: -34,-35 + 657: -36,-10 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarnCornerFlipped + decals: + 722: -39,-2 + - node: + color: '#52B4E996' + id: WarnCornerGreyscaleSW + decals: + 1174: -13,-24 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 1235: -15,-29 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 932: 21,5 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 929: 25,1 + 931: 23,5 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 935: 23,3 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 934: 25,3 + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: WarnEnd + decals: + 43: 7,16 + - node: + color: '#FFFFFFFF' + id: WarnEnd + decals: + 42: 7,15 + - node: + color: '#52B4E996' + id: WarnFullGreyscale + decals: + 1168: -8,-23 + 1169: -8,-22 + 1190: -13,-25 + 1191: -14,-23 + 1192: -14,-22 + 1193: -10,-25 + 1238: -17,-25 + 1239: -19,-28 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 921: 23,7 + 922: 23,8 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleE + decals: + 1166: -9,-23 + 1167: -9,-22 + 1241: -15,-23 + 1242: -15,-22 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleE + decals: + 1498: -6,-28 + 1499: -6,-26 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleE + decals: + 1274: 1,-22 + 1275: 1,-21 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleN + decals: + 1178: -10,-21 + 1179: -12,-21 + 1257: -16,-21 + 1258: -20,-21 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleN + decals: + 1497: -3,-32 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleN + decals: + 1598: -41,-11 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleS + decals: + 1177: -10,-24 + 1240: -17,-24 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleW + decals: + 1175: -13,-23 + 1176: -13,-22 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleW + decals: + 1272: -7,-23 + 1273: -7,-22 + 1597: -43,-13 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 925: 21,7 + 926: 22,7 + 927: 23,7 + 933: 24,3 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 923: 21,7 + 924: 21,8 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 918: 21,8 + 919: 22,8 + 920: 23,8 + 928: 24,1 + 930: 22,5 + 1236: -14,-29 + 1237: -13,-29 + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: WarningLine + decals: + 61: -2,23 + 62: -3,23 + 63: -4,23 + 217: 15,44 + 218: 14,44 + 219: 13,44 + 257: 10,50 + 584: -34,21 + 585: -35,21 + 586: -36,21 + 587: -37,21 + 871: -53,-12 + 872: -54,-12 + 873: -55,-12 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + decals: + 38: 9,14 + 39: 9,15 + 40: 9,16 + 41: 9,17 + 64: -2,26 + 66: 0,22 + 67: 0,23 + 68: 0,24 + 69: 0,25 + 235: 8,49 + 236: 8,50 + 237: 8,51 + 238: 8,52 + 239: 8,53 + 240: 8,54 + 241: 8,55 + 252: 11,53 + 314: 31,-6 + 315: 31,-5 + 316: 31,-4 + 317: 31,-3 + 318: 31,-2 + 319: 31,-1 + 320: 31,0 + 401: 19,-25 + 404: 27,-30 + 414: 3,-28 + 415: 3,-27 + 416: 3,-26 + 645: -38,-36 + 646: -38,-35 + 647: -38,-34 + 660: -37,1 + 661: -37,2 + 662: -37,3 + 663: -37,4 + 664: -37,5 + 718: -41,-3 + - node: + color: '#FFFFFFFF' + id: WarningLine + decals: + 31: -23,-4 + 32: -22,-4 + 144: 24,16 + 145: 23,16 + 146: 22,16 + 214: 15,46 + 215: 14,46 + 216: 13,46 + 242: 13,50 + 243: 7,50 + 258: 9,56 + 259: 11,56 + 407: 27,-27 + 408: 28,-27 + 409: 29,-27 + 426: 23,-23 + 427: 24,-23 + 428: 25,-23 + 429: 26,-23 + 498: -34,19 + 499: -35,19 + 500: -36,19 + 501: -37,19 + 590: -30,22 + 591: -31,22 + 724: -43,-4 + 725: -44,-4 + 726: -45,-4 + 727: -46,-4 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarningLine + decals: + 858: 26,-37 + 859: 25,-37 + 860: 24,-37 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + decals: + 34: 5,14 + 35: 5,15 + 36: 5,16 + 37: 5,17 + 65: -4,26 + 70: -6,22 + 71: -6,23 + 72: -6,24 + 73: -6,25 + 228: 12,49 + 229: 12,50 + 230: 12,51 + 231: 12,52 + 232: 12,53 + 233: 12,54 + 234: 12,55 + 253: 9,53 + 411: 1,-28 + 412: 1,-27 + 413: 1,-26 + 417: 3,-22 + 418: 3,-21 + 721: -39,-3 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: WarningLine + decals: + 244: 13,54 + 245: 7,54 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLineCorner + decals: + 406: 27,-29 + - node: + color: '#FFFFFFFF' + id: WarningLineCorner + decals: + 410: 26,-27 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLineCornerFlipped + decals: + 405: 27,-31 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 972: -27,-17 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 978: -11,-2 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNw + decals: + 977: -8,-2 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSe + decals: + 969: -30,-17 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 958: -16,22 + 959: -16,23 + 960: -16,24 + 966: -30,-20 + 967: -30,-19 + 968: -30,-18 + 973: -27,-16 + 974: -27,-15 + 982: -11,-1 + 983: -11,0 + 984: -11,1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 975: -10,-2 + 976: -9,-2 + 1014: -30,-39 + 1015: -31,-39 + 1016: -32,-39 + 1017: -27,-37 + 1018: -28,-37 + 1019: -26,-37 + 1020: -25,-37 + 1021: -24,-37 + 1022: -23,-37 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 954: -23,25 + 955: -22,25 + 956: -21,25 + 957: -20,25 + 961: 5,26 + 962: 6,26 + 963: 7,26 + 964: 8,26 + 965: 9,26 + 970: -29,-17 + 971: -28,-17 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 979: -8,-1 + 980: -8,0 + 981: -8,1 + - node: + cleanable: True + color: '#761C0C44' + id: splatter + decals: + 797: 13.502298,-42.657906 + 798: 4.171296,-34.3466 + - node: + cleanable: True + color: '#79150050' + id: splatter + decals: + 861: 27.509422,-40.416092 + - node: + cleanable: True + color: '#9FED5812' + id: splatter + decals: + 799: 13.296297,-42.144028 + 800: 3.8275461,-36.737778 + type: DecalGrid + - version: 2 + data: + tiles: + -2,-1: + 0: 65535 + -1,-3: + 0: 65535 + -1,-1: + 0: 65535 + -1,-2: + 0: 65535 + -2,1: + 0: 65535 + -1,0: + 0: 65535 + -1,1: + 0: 65535 + -1,2: + 0: 65535 + -1,3: + 0: 65535 + 0,-3: + 0: 65535 + 0,-2: + 0: 62271 + 1: 3264 + 0,-1: + 0: 65535 + 1,-3: + 0: 65535 + 1,-2: + 0: 61441 + 1: 4094 + 1,-1: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 65535 + 0,0: + 0: 65535 + 1,3: + 0: 65535 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 65535 + 0,4: + 0: 65535 + -1,4: + 0: 65535 + -2,0: + 0: 65535 + -4,0: + 0: 65535 + -4,1: + 0: 65535 + -4,2: + 0: 65535 + -4,3: + 0: 65535 + -3,0: + 0: 65535 + -3,1: + 0: 65535 + -3,2: + 0: 65535 + -3,3: + 0: 65535 + -2,2: + 0: 65535 + -2,3: + 0: 65535 + 2,0: + 0: 65535 + 2,1: + 0: 65535 + 2,2: + 0: 65535 + 2,3: + 0: 65535 + 3,0: + 0: 65535 + 3,1: + 0: 65535 + 3,2: + 0: 65535 + 3,3: + 0: 65535 + -4,4: + 0: 65535 + -4,5: + 0: 65535 + -3,4: + 0: 65535 + -3,5: + 0: 65535 + -2,4: + 0: 65535 + -2,5: + 0: 65535 + -1,5: + 0: 65535 + 0,5: + 0: 65535 + 1,4: + 0: 65535 + 1,5: + 0: 65535 + 2,4: + 0: 65535 + 2,5: + 0: 65535 + 3,4: + 0: 65535 + 3,5: + 0: 65535 + 0,-4: + 0: 65535 + 1,-4: + 0: 65535 + 2,-4: + 0: 65535 + 2,-3: + 0: 65535 + 2,-2: + 0: 65535 + 2,-1: + 0: 65535 + 3,-4: + 0: 65535 + 3,-3: + 0: 65535 + 3,-2: + 0: 65535 + 3,-1: + 0: 65535 + -4,-4: + 0: 65535 + -4,-3: + 0: 65535 + -4,-2: + 0: 65535 + -4,-1: + 0: 65535 + -3,-4: + 0: 65535 + -3,-3: + 0: 65535 + -3,-2: + 0: 65535 + -3,-1: + 0: 65535 + -2,-4: + 0: 65535 + -2,-3: + 0: 65535 + -2,-2: + 0: 65535 + -1,-4: + 0: 65535 + -6,4: + 0: 65535 + -6,5: + 0: 65535 + -5,4: + 0: 65535 + -5,5: + 0: 65535 + -7,0: + 0: 65535 + -7,1: + 0: 65535 + -7,2: + 0: 65535 + -6,0: + 0: 65535 + -6,1: + 0: 65535 + -6,2: + 0: 65535 + -6,3: + 0: 65535 + -5,0: + 0: 65535 + -5,1: + 0: 65535 + -5,2: + 0: 65535 + -5,3: + 0: 65535 + -7,-4: + 0: 65535 + -7,-3: + 0: 65535 + -7,-2: + 0: 65535 + -7,-1: + 0: 65535 + -6,-4: + 0: 65535 + -6,-3: + 0: 65535 + -6,-2: + 0: 65535 + -6,-1: + 0: 65535 + -5,-4: + 0: 65535 + -5,-3: + 0: 65535 + -5,-2: + 0: 65535 + -5,-1: + 0: 65535 + -4,6: + 0: 65535 + -4,7: + 0: 65535 + -3,6: + 0: 65535 + -3,7: + 0: 65535 + -2,6: + 0: 63487 + 2: 2048 + -2,7: + 0: 65535 + -1,6: + 0: 65535 + -1,7: + 0: 65535 + 0,6: + 0: 65535 + 0,7: + 0: 65535 + 1,6: + 0: 65535 + 1,7: + 0: 65535 + 2,6: + 0: 65535 + 2,7: + 0: 65535 + 3,6: + 0: 65535 + 3,7: + 0: 65535 + -5,6: + 0: 65535 + -5,7: + 0: 65535 + -3,8: + 0: 56829 + -2,8: + 0: 65535 + -2,9: + 0: 3999 + -1,8: + 0: 65535 + -1,9: + 0: 3983 + 0,8: + 0: 65535 + 0,9: + 0: 22471 + 1,8: + 0: 22015 + -7,4: + 0: 65535 + -7,5: + 0: 65535 + -7,3: + 0: 65535 + -4,9: + 0: 240 + -4,8: + 0: 503 + -3,9: + 0: 241 + 0,10: + 0: 57309 + 0,11: + 0: 65518 + 1,9: + 0: 17652 + 1,10: + 0: 62543 + 1,11: + 0: 65535 + 2,8: + 0: 52476 + 2,9: + 0: 17660 + 2,10: + 0: 65519 + 2,11: + 0: 65535 + 3,8: + 0: 65535 + 3,9: + 0: 3839 + 3,10: + 0: 65535 + 3,11: + 0: 65535 + 4,8: + 0: 65535 + 4,9: + 0: 8191 + 4,10: + 0: 13297 + 4,11: + 0: 65407 + 5,8: + 0: 30719 + 5,9: + 0: 32631 + 5,10: + 0: 10103 + 5,11: + 0: 15 + 6,8: + 0: 30511 + 6,9: + 0: 32631 + 6,10: + 0: 10103 + 6,11: + 0: 15 + 7,8: + 0: 30511 + 7,9: + 0: 32631 + 7,10: + 0: 10103 + 7,11: + 0: 15 + 4,4: + 0: 65535 + 4,5: + 0: 65535 + 4,6: + 0: 65535 + 4,7: + 0: 65535 + 5,4: + 0: 30719 + 5,5: + 0: 65399 + 5,6: + 0: 65535 + 5,7: + 0: 30719 + 6,4: + 0: 255 + 7,4: + 0: 1 + 4,2: + 0: 65535 + 4,3: + 0: 65535 + 5,2: + 0: 65535 + 5,3: + 0: 65535 + 6,2: + 0: 62805 + 6,3: + 0: 65535 + 7,3: + 0: 4369 + 8,8: + 0: 4369 + 8,9: + 0: 4369 + 8,10: + 0: 4369 + 8,11: + 0: 1 + 0,12: + 0: 61439 + 0,13: + 0: 52430 + 0,14: + 0: 2188 + 1,12: + 0: 65535 + 1,13: + 0: 65535 + 1,14: + 0: 65535 + 1,15: + 0: 12 + 2,12: + 0: 65535 + 2,13: + 0: 65535 + 2,14: + 0: 65535 + 2,15: + 0: 255 + 3,12: + 0: 65535 + 3,13: + 0: 65535 + 3,14: + 0: 14335 + 3,15: + 0: 1 + 4,12: + 0: 65535 + 4,13: + 0: 30591 + 4,14: + 0: 19 + 5,12: + 0: 4401 + -5,9: + 0: 1783 + -8,4: + 0: 65535 + -8,5: + 0: 65535 + -8,6: + 0: 65535 + -8,7: + 0: 65535 + -7,6: + 0: 65535 + -7,7: + 0: 65535 + -6,6: + 0: 65535 + -6,7: + 0: 56831 + -8,1: + 0: 65535 + -8,2: + 0: 65535 + -8,3: + 0: 65535 + -8,-4: + 0: 65535 + -8,-3: + 0: 65535 + 4,0: + 0: 65535 + 4,1: + 0: 65535 + 5,0: + 0: 65535 + 5,1: + 0: 65535 + 6,0: + 0: 65535 + 6,1: + 0: 24575 + 7,0: + 0: 65535 + 7,1: + 0: 32767 + -8,8: + 0: 65535 + -8,9: + 0: 52991 + -7,8: + 0: 65535 + -7,9: + 0: 29687 + -6,8: + 0: 52701 + -6,9: + 0: 248 + -5,8: + 0: 65535 + 8,0: + 0: 30583 + 8,1: + 0: 13107 + 8,-4: + 0: 4096 + 8,-3: + 0: 29491 + 8,-2: + 0: 30583 + 8,-1: + 0: 29491 + 4,-4: + 0: 65535 + 4,-3: + 0: 64255 + 4,-2: + 0: 64511 + 4,-1: + 0: 65535 + 5,-4: + 0: 30591 + 5,-3: + 0: 65143 + 5,-2: + 0: 65535 + 5,-1: + 0: 65535 + 6,-4: + 0: 61679 + 6,-3: + 0: 65519 + 6,-2: + 0: 65535 + 6,-1: + 0: 65535 + 7,-4: + 0: 49171 + 7,-3: + 0: 65535 + 7,-2: + 0: 65535 + 7,-1: + 0: 65535 + 0,-8: + 0: 65535 + 0,-7: + 0: 65535 + 0,-6: + 0: 65535 + 0,-5: + 0: 65535 + 1,-8: + 0: 65535 + 1,-7: + 0: 65535 + 1,-6: + 0: 65535 + 1,-5: + 0: 65535 + 2,-8: + 0: 65535 + 2,-7: + 0: 65535 + 2,-6: + 0: 65535 + 2,-5: + 0: 65535 + 3,-8: + 0: 65535 + 3,-7: + 0: 65535 + 3,-6: + 0: 65535 + 3,-5: + 0: 65535 + -4,-8: + 0: 65535 + -4,-7: + 0: 65535 + -4,-6: + 0: 65535 + -4,-5: + 0: 65535 + -3,-8: + 0: 65535 + -3,-7: + 0: 65535 + -3,-6: + 0: 65535 + -3,-5: + 0: 65535 + -2,-8: + 0: 65535 + -2,-7: + 0: 65535 + -2,-6: + 0: 65535 + -2,-5: + 0: 65535 + -1,-8: + 0: 65535 + -1,-7: + 0: 65535 + -1,-6: + 0: 65535 + -1,-5: + 0: 65535 + -4,-10: + 0: 65484 + -4,-9: + 0: 65535 + -4,-12: + 0: 61166 + -4,-11: + 0: 52462 + -3,-12: + 0: 65535 + -3,-11: + 0: 65535 + -3,-10: + 0: 65535 + -3,-9: + 0: 65535 + -2,-12: + 0: 65535 + -2,-11: + 0: 61183 + -2,-10: + 0: 63244 + -2,-9: + 0: 65535 + -1,-12: + 0: 65535 + -1,-11: + 0: 65535 + -1,-10: + 0: 61455 + -1,-9: + 0: 65535 + 0,-12: + 0: 13107 + 0,-11: + 0: 48059 + 0,-10: + 0: 65485 + 0,-9: + 0: 65535 + 1,-10: + 0: 65535 + 1,-9: + 0: 65535 + 2,-10: + 0: 65535 + 2,-9: + 0: 65535 + 3,-10: + 0: 65535 + 3,-9: + 0: 65535 + -4,-13: + 0: 61166 + -4,-15: + 0: 52430 + -4,-14: + 0: 52428 + -3,-14: + 0: 65535 + -3,-13: + 0: 65535 + -3,-15: + 0: 65535 + -2,-13: + 0: 65535 + -2,-14: + 0: 61064 + -1,-15: + 0: 28672 + -1,-14: + 0: 65535 + -1,-13: + 0: 65535 + 0,-14: + 0: 13056 + 0,-13: + 0: 13107 + 4,-8: + 0: 65535 + 4,-7: + 0: 65535 + 4,-6: + 0: 65535 + 4,-5: + 0: 65535 + 5,-8: + 0: 13119 + 3: 52416 + 5,-7: + 0: 65535 + 5,-6: + 0: 65535 + 5,-5: + 0: 65535 + 6,-8: + 0: 56543 + 3: 8992 + 6,-7: + 0: 65535 + 6,-6: + 0: 65535 + 6,-5: + 0: 65535 + 7,-8: + 0: 65535 + 7,-7: + 0: 65535 + 7,-6: + 0: 65535 + 7,-5: + 0: 30719 + 8,-8: + 0: 65535 + 8,-7: + 0: 65535 + 8,-6: + 0: 65535 + 8,-5: + 0: 7 + 9,-8: + 0: 65535 + 9,-7: + 0: 65535 + 9,-6: + 0: 4991 + 10,-8: + 0: 4340 + 10,-7: + 0: 273 + 8,-10: + 0: 65535 + 8,-9: + 0: 65535 + 4,-10: + 0: 65535 + 4,-9: + 0: 65535 + 5,-10: + 0: 65535 + 5,-9: + 0: 65535 + 6,-10: + 0: 65535 + 6,-9: + 0: 65535 + 7,-10: + 0: 65535 + 7,-9: + 0: 65535 + -9,-4: + 0: 65535 + -9,-7: + 0: 65535 + -9,-6: + 0: 65535 + -9,-5: + 0: 65535 + -8,-7: + 0: 65535 + -8,-6: + 0: 65535 + -8,-5: + 0: 65535 + -8,-8: + 0: 65535 + -7,-8: + 0: 65535 + -7,-7: + 0: 65535 + -7,-6: + 0: 65535 + -7,-5: + 0: 65535 + -6,-8: + 0: 65535 + -6,-7: + 0: 65535 + -6,-6: + 0: 65535 + -6,-5: + 0: 65535 + -5,-8: + 0: 65535 + -5,-7: + 0: 65535 + -5,-6: + 0: 65535 + -5,-5: + 0: 65535 + -8,-10: + 0: 65535 + -8,-9: + 0: 65535 + -7,-10: + 0: 65535 + -7,-9: + 0: 65535 + -7,-11: + 0: 63248 + -6,-11: + 0: 61440 + -6,-10: + 0: 65535 + -6,-9: + 0: 65535 + -5,-11: + 0: 12288 + -5,-10: + 0: 65331 + -5,-9: + 0: 65535 + -10,8: + 0: 2286 + -9,8: + 0: 65535 + -9,9: + 0: 142 + -10,4: + 0: 65535 + -10,5: + 0: 65535 + -9,4: + 0: 65535 + -9,5: + 0: 65535 + -9,7: + 0: 65535 + -9,6: + 0: 65535 + -11,1: + 0: 65535 + -11,2: + 0: 65535 + -11,3: + 0: 49151 + -10,1: + 0: 65535 + -10,2: + 0: 65535 + -10,3: + 0: 65535 + -9,1: + 0: 65535 + -9,2: + 0: 65535 + -9,3: + 0: 65535 + -8,0: + 0: 65535 + -8,-2: + 0: 65535 + -8,-1: + 0: 65535 + 1,-12: + 0: 65152 + 1,-11: + 0: 65535 + 2,-12: + 0: 65520 + 2,-11: + 0: 65535 + 3,-12: + 0: 65296 + 3,-11: + 0: 65535 + 11,-8: + 0: 244 + 8,-11: + 0: 65523 + 9,-11: + 0: 13296 + 9,-10: + 0: 63347 + 9,-9: + 0: 63351 + 10,-11: + 0: 58608 + 10,-10: + 0: 65262 + 10,-9: + 0: 61166 + 11,-11: + 0: 58608 + 11,-10: + 0: 65262 + 11,-9: + 0: 61166 + 4,-12: + 0: 65280 + 4,-11: + 0: 65535 + 5,-12: + 0: 65280 + 5,-11: + 0: 65535 + 6,-12: + 0: 61440 + 6,-11: + 0: 65535 + 7,-11: + 0: 65535 + -12,-4: + 0: 65535 + -12,-3: + 0: 65535 + -12,-2: + 0: 65535 + -12,-1: + 0: 65535 + -11,-4: + 0: 65535 + -11,-3: + 0: 65535 + -11,-2: + 0: 65535 + -11,-1: + 0: 65535 + -10,-4: + 0: 65535 + -10,-3: + 0: 65535 + -10,-2: + 0: 65535 + -10,-1: + 0: 65535 + -9,-3: + 0: 65535 + -9,-2: + 0: 65535 + -9,-1: + 0: 65535 + -12,-8: + 0: 65516 + -12,-7: + 0: 65535 + -12,-6: + 0: 65535 + -12,-5: + 0: 65535 + -11,-8: + 0: 65535 + -11,-7: + 0: 65535 + -11,-6: + 0: 65535 + -11,-5: + 0: 65535 + -10,-8: + 0: 65535 + -10,-7: + 0: 65535 + -10,-6: + 0: 65535 + -10,-5: + 0: 65535 + -9,-8: + 0: 65535 + -8,-12: + 0: 30512 + -8,-11: + 0: 65535 + -12,4: + 0: 3618 + 3: 204 + -11,4: + 3: 17 + 0: 35754 + -11,5: + 0: 52424 + -11,6: + 0: 52428 + -11,7: + 0: 2184 + -10,6: + 0: 65535 + -10,7: + 0: 65535 + -12,0: + 0: 65535 + -12,1: + 0: 65535 + -12,2: + 0: 65535 + -12,3: + 0: 61439 + -11,0: + 0: 65535 + -10,0: + 0: 65535 + -9,0: + 0: 65535 + -12,-9: + 0: 32768 + -11,-9: + 0: 65516 + -11,-10: + 0: 51200 + -10,-10: + 0: 65531 + -10,-9: + 0: 65535 + -9,-11: + 0: 65228 + -9,-10: + 0: 65535 + -9,-9: + 0: 65535 + -9,-12: + 0: 32768 + -14,0: + 0: 16191 + 4: 192 + 5: 49152 + -14,1: + 0: 16191 + 3: 49344 + -14,2: + 0: 16191 + 6: 192 + 3: 49152 + -14,3: + 0: 49407 + -13,0: + 0: 61423 + 4: 16 + 5: 4096 + -13,1: + 0: 61423 + 3: 4112 + -13,2: + 0: 61423 + 6: 16 + 3: 4096 + -13,3: + 0: 31999 + -15,-4: + 0: 61132 + -15,-3: + 0: 61166 + -15,-2: + 0: 2254 + -14,-4: + 0: 65535 + -14,-3: + 0: 65535 + -14,-2: + 0: 65535 + -14,-1: + 0: 61448 + -13,-4: + 0: 65535 + -13,-3: + 0: 65535 + -13,-2: + 0: 65535 + -13,-1: + 0: 64751 + -16,-8: + 0: 61440 + -16,-7: + 0: 56792 + -16,-6: + 0: 56829 + -16,-5: + 0: 63709 + -15,-8: + 0: 61440 + -15,-7: + 0: 39320 + -15,-6: + 0: 6649 + -15,-5: + 0: 39057 + -14,-8: + 0: 61440 + -14,-7: + 0: 65256 + -14,-6: + 0: 61439 + -14,-5: + 0: 65535 + -13,-8: + 0: 61440 + -13,-7: + 0: 65528 + -13,-6: + 0: 65535 + -13,-5: + 0: 65535 + -18,-8: + 0: 61440 + -18,-7: + 0: 56793 + -18,-6: + 0: 56829 + -18,-5: + 0: 63965 + -17,-8: + 0: 61440 + -17,-7: + 0: 56792 + -17,-6: + 0: 56829 + -17,-5: + 0: 63709 + 12,-11: + 0: 58608 + 12,-10: + 0: 65262 + 12,-9: + 0: 61166 + 13,-11: + 0: 8752 + 13,-10: + 0: 12834 + 13,-9: + 0: 8738 + 12,-8: + 0: 244 + 13,-8: + 0: 50 + -15,0: + 0: 17484 + -15,1: + 0: 17484 + -15,2: + 0: 17484 + -15,3: + 0: 12 + -15,-1: + 0: 16384 + -14,4: + 0: 192 + -13,4: + 0: 116 + -2,-15: + 0: 1 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 235 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.554012 + - 81.084145 + - 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 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - id: Omega + type: BecomesStation + - type: OccluderTree + - type: Shuttle + - type: RadiationGridResistance + - shakeTimes: 10 + type: GravityShake + - type: GasTileOverlay + - type: SpreaderGrid + - type: GridPathfinding +- proto: AcousticGuitarInstrument + entities: + - uid: 1755 + components: + - pos: -10.386757,8.623476 + parent: 4812 + type: Transform +- proto: AdvancedMatterBinStockPart + entities: + - uid: 6200 + components: + - pos: 7.405039,-15.314831 + parent: 4812 + type: Transform + - uid: 6201 + components: + - pos: 7.701914,-15.330456 + parent: 4812 + type: Transform +- proto: AirAlarm + entities: + - uid: 4981 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-20.5 + parent: 4812 + type: Transform + - devices: + - 6621 + - 5047 + - 6553 + - 8806 + - 5025 + - 6554 + type: DeviceList + - uid: 4982 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-18.5 + parent: 4812 + type: Transform + - devices: + - 4941 + - 4875 + type: DeviceList + - uid: 6692 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-26.5 + parent: 4812 + type: Transform + - uid: 7234 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-14.5 + parent: 4812 + type: Transform + - devices: + - 4890 + - 4876 + type: DeviceList + - uid: 7236 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-28.5 + parent: 4812 + type: Transform + - ShutdownSubscribers: + - 8838 + - 8836 + type: DeviceNetwork + - devices: + - 8838 + - 8836 + type: DeviceList + - uid: 7241 + components: + - pos: -19.5,-24.5 + parent: 4812 + type: Transform + - devices: + - 6686 + - 7227 + type: DeviceList + - uid: 7249 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-27.5 + parent: 4812 + type: Transform + - uid: 7284 + components: + - pos: -3.5,27.5 + parent: 4812 + type: Transform + - devices: + - 12226 + - 1853 + - 1852 + type: DeviceList + - uid: 12171 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-15.5 + parent: 4812 + type: Transform + - devices: + - 12170 + - 12027 + - 12026 + type: DeviceList + - uid: 12173 + components: + - rot: 3.141592653589793 rad + pos: -49.5,-14.5 + parent: 4812 + type: Transform + - devices: + - 12028 + - 12025 + - 12172 + type: DeviceList + - uid: 12174 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,-11.5 + parent: 4812 + type: Transform + - devices: + - 12175 + - 12029 + - 12024 + type: DeviceList + - uid: 12176 + components: + - pos: -46.5,-5.5 + parent: 4812 + type: Transform + - devices: + - 12177 + - 12032 + - 12033 + type: DeviceList + - uid: 12178 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-0.5 + parent: 4812 + type: Transform + - devices: + - 10758 + - 10757 + - 12179 + - 10752 + - 10753 + - 10754 + - 10755 + - 10756 + type: DeviceList + - uid: 12182 + components: + - pos: -42.5,13.5 + parent: 4812 + type: Transform + - devices: + - 12181 + type: DeviceList + - uid: 12183 + components: + - pos: -28.5,6.5 + parent: 4812 + type: Transform + - devices: + - 12184 + - 12035 + - 12036 + - 8690 + - 10752 + - 10753 + - 10754 + - 10755 + - 10756 + type: DeviceList + - uid: 12186 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-2.5 + parent: 4812 + type: Transform + - devices: + - 8691 + - 8690 + - 12189 + - 12188 + - 12185 + - 3708 + - 8787 + type: DeviceList + - uid: 12190 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-6.5 + parent: 4812 + type: Transform + - devices: + - 12192 + - 8691 + - 12034 + - 11962 + type: DeviceList + - uid: 12193 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,0.5 + parent: 4812 + type: Transform + - devices: + - 6494 + - 6495 + - 12195 + - 8156 + - 8157 + - 12041 + - 12042 + - 12188 + - 12189 + - 12197 + - 12196 + type: DeviceList + - uid: 12198 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,0.5 + parent: 4812 + type: Transform + - devices: + - 12200 + - 12196 + - 12197 + - 1685 + - 1686 + type: DeviceList + - uid: 12202 + components: + - pos: -24.5,9.5 + parent: 4812 + type: Transform + - devices: + - 12201 + - 8156 + - 8157 + - 7784 + - 8154 + - 8155 + - 12205 + - 12204 + - 12039 + - 12040 + type: DeviceList + - uid: 12206 + components: + - pos: -20.5,13.5 + parent: 4812 + type: Transform + - devices: + - 12208 + - 12204 + - 12205 + - 8562 + - 8563 + type: DeviceList + - uid: 12209 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,13.5 + parent: 4812 + type: Transform + - devices: + - 12211 + - 12212 + - 7782 + - 7783 + - 7911 + - 7910 + - 7909 + - 7914 + - 7913 + - 7912 + - 7874 + - 7872 + - 7871 + - 7873 + - 7887 + - 7886 + type: DeviceList + - uid: 12213 + components: + - pos: -37.5,13.5 + parent: 4812 + type: Transform + - devices: + - 7905 + - 7907 + - 12214 + type: DeviceList + - uid: 12215 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,15.5 + parent: 4812 + type: Transform + - devices: + - 12216 + - 12212 + - 7906 + - 7908 + type: DeviceList + - uid: 12219 + components: + - pos: -31.5,33.5 + parent: 4812 + type: Transform + - devices: + - 12218 + - 7858 + - 7856 + type: DeviceList + - uid: 12220 + components: + - pos: -18.5,21.5 + parent: 4812 + type: Transform + - devices: + - 8155 + - 8154 + - 2693 + - 2695 + - 12222 + - 8307 + - 8306 + type: DeviceList + - uid: 12223 + components: + - pos: -5.5,21.5 + parent: 4812 + type: Transform + - devices: + - 2693 + - 2695 + - 2782 + - 2783 + - 12225 + - 1817 + - 1816 + type: DeviceList + - uid: 12228 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,26.5 + parent: 4812 + type: Transform + - devices: + - 12230 + - 2231 + - 1928 + - 2474 + - 2441 + type: DeviceList + - uid: 12232 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,26.5 + parent: 4812 + type: Transform + - devices: + - 12231 + - 2473 + - 2472 + - 2442 + - 2475 + type: DeviceList + - uid: 12234 + components: + - pos: 2.5,35.5 + parent: 4812 + type: Transform + - devices: + - 12237 + - 2473 + - 2472 + - 2231 + - 1928 + - 2443 + - 2444 + - 2447 + - 2448 + - 2446 + - 2445 + type: DeviceList + - uid: 12240 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,24.5 + parent: 4812 + type: Transform + - devices: + - 12242 + - 1927 + - 2074 + - 2071 + - 2072 + - 2073 + type: DeviceList + - uid: 12245 + components: + - pos: 11.5,21.5 + parent: 4812 + type: Transform + - devices: + - 12243 + - 2787 + - 2786 + - 2476 + - 963 + - 2783 + - 2782 + - 1770 + - 3782 + type: DeviceList + - uid: 12249 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,9.5 + parent: 4812 + type: Transform + - devices: + - 4122 + - 4117 + - 12251 + - 2852 + - 2853 + - 2787 + - 2786 + - 4439 + - 4440 + type: DeviceList + - uid: 12252 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,21.5 + parent: 4812 + type: Transform + - devices: + - 3257 + - 12254 + - 3021 + - 3024 + type: DeviceList + - uid: 12256 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,23.5 + parent: 4812 + type: Transform + - devices: + - 3016 + - 3020 + - 3017 + - 3019 + - 12257 + type: DeviceList + - uid: 12258 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,31.5 + parent: 4812 + type: Transform + - devices: + - 12259 + - 3001 + - 2983 + type: DeviceList + - uid: 12260 + components: + - pos: 9.5,47.5 + parent: 4812 + type: Transform + - devices: + - 3814 + - 12261 + - 3944 + type: DeviceList + - uid: 12262 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,45.5 + parent: 4812 + type: Transform + - devices: + - 3816 + - 12263 + - 3841 + type: DeviceList + - uid: 12265 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,44.5 + parent: 4812 + type: Transform + - devices: + - 3813 + - 12264 + - 3835 + type: DeviceList + - uid: 12266 + components: + - pos: 9.5,51.5 + parent: 4812 + type: Transform + - devices: + - 3815 + - 3838 + - 12267 + type: DeviceList + - uid: 12272 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-8.5 + parent: 4812 + type: Transform + - devices: + - 4426 + - 4423 + - 12274 + - 4122 + - 4117 + - 4442 + - 4441 + type: DeviceList + - uid: 12275 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-4.5 + parent: 4812 + type: Transform + - devices: + - 12277 + - 4424 + - 4425 + - 4380 + - 4381 + type: DeviceList + - uid: 12278 + components: + - pos: 25.5,2.5 + parent: 4812 + type: Transform + - devices: + - 12279 + - 4425 + - 4424 + - 4444 + - 4443 + type: DeviceList + - uid: 12282 + components: + - pos: 23.5,6.5 + parent: 4812 + type: Transform + - devices: + - 4226 + - 12281 + - 4231 + type: DeviceList + - uid: 12283 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,0.5 + parent: 4812 + type: Transform + - devices: + - 4205 + - 12284 + - 4203 + type: DeviceList + - uid: 12285 + components: + - pos: 10.5,-10.5 + parent: 4812 + type: Transform + - devices: + - 12287 + - 4423 + - 4426 + - 6415 + - 6414 + - 6417 + - 6416 + type: DeviceList + - uid: 12289 + components: + - pos: 2.5,-10.5 + parent: 4812 + type: Transform + - devices: + - 4645 + - 4644 + - 6500 + - 6499 + - 4646 + - 4647 + - 5792 + - 6414 + - 6415 + - 12288 + - 6420 + - 6419 + type: DeviceList + - uid: 12293 + components: + - pos: -19.5,-10.5 + parent: 4812 + type: Transform + - devices: + - 6497 + - 6496 + - 6500 + - 6499 + - 12295 + - 12038 + - 12037 + type: DeviceList + - uid: 12296 + components: + - pos: -23.5,-5.5 + parent: 4812 + type: Transform + - devices: + - 1511 + - 12297 + - 1512 + type: DeviceList + - uid: 12299 + components: + - pos: -11.5,-4.5 + parent: 4812 + type: Transform + - devices: + - 12298 + - 849 + - 858 + - 857 + - 848 + type: DeviceList + - uid: 12302 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,2.5 + parent: 4812 + type: Transform + - devices: + - 931 + - 932 + - 12300 + - 782 + - 783 + - 784 + - 349 + - 351 + - 361 + - 354 + - 353 + - 352 + - 350 + - 818 + - 815 + - 817 + - 816 + - 864 + type: DeviceList + - uid: 12304 + components: + - pos: -7.5,10.5 + parent: 4812 + type: Transform + - devices: + - 877 + - 885 + - 12303 + type: DeviceList + - uid: 12307 + components: + - pos: 6.5,10.5 + parent: 4812 + type: Transform + - devices: + - 847 + - 846 + - 12306 + type: DeviceList + - uid: 12308 + components: + - pos: 4.5,1.5 + parent: 4812 + type: Transform + - devices: + - 12309 + - 782 + - 783 + - 784 + - 835 + - 814 + type: DeviceList + - uid: 12311 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,14.5 + parent: 4812 + type: Transform + - devices: + - 12313 + - 1940 + - 1939 + - 1938 + - 710 + - 711 + type: DeviceList + - uid: 12316 + components: + - pos: -4.5,-20.5 + parent: 4812 + type: Transform + - devices: + - 5308 + - 4644 + - 4645 + - 4646 + - 4647 + - 5791 + - 5793 + - 12315 + - 6687 + - 6461 + - 8783 + - 8803 + - 8779 + - 8778 + - 8711 + - 8591 + - 8758 + - 8770 + - 5028 + - 328 + - 3582 + - 2759 + type: DeviceList + - uid: 12319 + components: + - pos: -0.5,-33.5 + parent: 4812 + type: Transform + - devices: + - 12318 + - 5071 + - 5072 + - 6455 + - 3781 + - 8783 + - 8803 + - 8779 + - 8778 + - 8711 + - 8591 + - 8758 + - 8770 + type: DeviceList + - uid: 12322 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-39.5 + parent: 4812 + type: Transform + - devices: + - 12321 + - 5072 + - 5071 + - 5223 + - 5222 + - 5224 + - 5225 + type: DeviceList + - uid: 12325 + components: + - pos: -16.5,-31.5 + parent: 4812 + type: Transform + - devices: + - 6842 + - 6839 + - 12326 + type: DeviceList + - uid: 12327 + components: + - pos: -23.5,-34.5 + parent: 4812 + type: Transform + - devices: + - 6841 + - 6840 + - 12328 + type: DeviceList + - uid: 12330 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-29.5 + parent: 4812 + type: Transform + - uid: 12341 + components: + - pos: -11.5,-13.5 + parent: 4812 + type: Transform + - devices: + - 6585 + - 6584 + - 12343 + - 7380 + - 7382 + type: DeviceList + - uid: 12344 + components: + - pos: -29.5,-13.5 + parent: 4812 + type: Transform + - devices: + - 7088 + - 7087 + - 12345 + type: DeviceList + - uid: 12346 + components: + - pos: 6.5,-13.5 + parent: 4812 + type: Transform + - devices: + - 5700 + - 5697 + - 12347 + type: DeviceList + - uid: 12350 + components: + - pos: 3.5,-22.5 + parent: 4812 + type: Transform + - devices: + - 5699 + - 5698 + - 12349 + type: DeviceList + - uid: 12352 + components: + - pos: 15.5,-22.5 + parent: 4812 + type: Transform + - devices: + - 5715 + - 5716 + - 12351 + type: DeviceList + - uid: 12353 + components: + - pos: 11.5,-19.5 + parent: 4812 + type: Transform + - devices: + - 5600 + - 5599 + - 12355 + - 5718 + - 5719 + type: DeviceList + - uid: 12356 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-30.5 + parent: 4812 + type: Transform + - devices: + - 12357 + type: DeviceList + - uid: 12358 + components: + - pos: 29.5,-21.5 + parent: 4812 + type: Transform + - devices: + - 5765 + - 5763 + - 12359 + type: DeviceList + - uid: 12361 + components: + - pos: 31.5,-22.5 + parent: 4812 + type: Transform + - devices: + - 5766 + - 5764 + - 12360 + type: DeviceList + - uid: 12362 + components: + - pos: -36.5,-32.5 + parent: 4812 + type: Transform + - devices: + - 12363 + - 9007 + - 8991 + type: DeviceList +- proto: AirAlarmElectronics + entities: + - uid: 3426 + components: + - pos: 22.462652,3.671153 + parent: 4812 + type: Transform + - uid: 3443 + components: + - pos: 22.462652,3.671153 + parent: 4812 + type: Transform + - uid: 10719 + components: + - pos: -30.29477,5.0635805 + parent: 4812 + type: Transform + - uid: 10720 + components: + - pos: -30.216644,4.9385805 + parent: 4812 + type: Transform +- proto: AirCanister + entities: + - uid: 3842 + components: + - pos: 15.5,44.5 + parent: 4812 + type: Transform + - uid: 9041 + components: + - pos: -34.5,-37.5 + parent: 4812 + type: Transform + - uid: 9671 + components: + - pos: -31.5,4.5 + parent: 4812 + type: Transform + - uid: 9672 + components: + - pos: -31.5,5.5 + parent: 4812 + type: Transform + - uid: 12398 + components: + - pos: -34.5,-3.5 + parent: 4812 + type: Transform + - uid: 12399 + components: + - pos: -34.5,-2.5 + parent: 4812 + type: Transform +- proto: Airlock + entities: + - uid: 1531 + components: + - pos: -18.5,0.5 + parent: 4812 + type: Transform + - uid: 1534 + components: + - pos: -18.5,3.5 + parent: 4812 + type: Transform + - uid: 4116 + components: + - pos: 13.5,7.5 + parent: 4812 + type: Transform + - uid: 6694 + components: + - pos: -12.5,-34.5 + parent: 4812 + type: Transform + - uid: 7025 + components: + - pos: -26.5,-34.5 + parent: 4812 + type: Transform +- proto: AirlockArmoryGlassLocked + entities: + - uid: 7800 + components: + - pos: -34.5,18.5 + parent: 4812 + type: Transform + - uid: 7801 + components: + - pos: -32.5,17.5 + parent: 4812 + type: Transform + - uid: 7802 + components: + - pos: -34.5,13.5 + parent: 4812 + type: Transform +- proto: AirlockAtmosphericsGlassLocked + entities: + - uid: 3444 + components: + - pos: -33.5,0.5 + parent: 4812 + type: Transform +- proto: AirlockAtmosphericsLocked + entities: + - uid: 8862 + components: + - pos: -32.5,-36.5 + parent: 4812 + type: Transform + - uid: 9563 + components: + - pos: -39.5,-0.5 + parent: 4812 + type: Transform + - uid: 9566 + components: + - pos: -35.5,2.5 + parent: 4812 + type: Transform +- proto: AirlockBarLocked + entities: + - uid: 325 + components: + - pos: 4.5,7.5 + parent: 4812 + type: Transform +- proto: AirlockBrigGlassLocked + entities: + - uid: 906 + components: + - pos: -17.5,18.5 + parent: 4812 + type: Transform + - uid: 7788 + components: + - pos: -24.5,13.5 + parent: 4812 + type: Transform + - uid: 7789 + components: + - pos: -24.5,14.5 + parent: 4812 + type: Transform + - uid: 7790 + components: + - pos: -27.5,13.5 + parent: 4812 + type: Transform + - uid: 7791 + components: + - pos: -27.5,14.5 + parent: 4812 + type: Transform +- proto: AirlockCaptainGlassLocked + entities: + - uid: 2417 + components: + - pos: -9.5,23.5 + parent: 4812 + type: Transform +- proto: AirlockCaptainLocked + entities: + - uid: 2419 + components: + - pos: -11.5,26.5 + parent: 4812 + type: Transform + - uid: 2463 + components: + - pos: -14.5,28.5 + parent: 4812 + type: Transform +- proto: AirlockCargoGlassLocked + entities: + - uid: 2858 + components: + - pos: 19.5,16.5 + parent: 4812 + type: Transform + - uid: 2859 + components: + - pos: 16.5,22.5 + parent: 4812 + type: Transform + - uid: 2860 + components: + - pos: 15.5,22.5 + parent: 4812 + type: Transform + - uid: 4427 + components: + - pos: 26.5,-7.5 + parent: 4812 + type: Transform + - uid: 4428 + components: + - pos: 30.5,-6.5 + parent: 4812 + type: Transform +- proto: AirlockChapelLocked + entities: + - uid: 329 + components: + - name: Chaplain's Room + type: MetaData + - pos: -25.5,-36.5 + parent: 4812 + type: Transform + - uid: 6792 + components: + - pos: -20.5,-36.5 + parent: 4812 + type: Transform + - uid: 6793 + components: + - pos: -21.5,-34.5 + parent: 4812 + type: Transform +- proto: AirlockChemistryLocked + entities: + - uid: 6617 + components: + - pos: -9.5,-19.5 + parent: 4812 + type: Transform +- proto: AirlockChiefEngineerGlassLocked + entities: + - uid: 9887 + components: + - pos: -49.5,-10.5 + parent: 4812 + type: Transform +- proto: AirlockChiefMedicalOfficerGlassLocked + entities: + - uid: 7434 + components: + - pos: -25.5,-24.5 + parent: 4812 + type: Transform +- proto: AirlockCommandGlassLocked + entities: + - uid: 1855 + components: + - pos: 1.5,29.5 + parent: 4812 + type: Transform + - uid: 2449 + components: + - pos: -8.5,21.5 + parent: 4812 + type: Transform + - uid: 2450 + components: + - pos: -7.5,21.5 + parent: 4812 + type: Transform + - uid: 2451 + components: + - pos: 2.5,21.5 + parent: 4812 + type: Transform + - uid: 2452 + components: + - pos: 3.5,21.5 + parent: 4812 + type: Transform + - uid: 2454 + components: + - pos: 2.5,31.5 + parent: 4812 + type: Transform + - uid: 2455 + components: + - pos: 3.5,31.5 + parent: 4812 + type: Transform + - uid: 2456 + components: + - name: AI Sat + type: MetaData + - pos: 4.5,32.5 + parent: 4812 + type: Transform + - uid: 2458 + components: + - pos: -7.5,31.5 + parent: 4812 + type: Transform + - uid: 2459 + components: + - pos: -8.5,31.5 + parent: 4812 + type: Transform + - uid: 2643 + components: + - pos: -6.5,29.5 + parent: 4812 + type: Transform +- proto: AirlockCommandLocked + entities: + - uid: 5174 + components: + - pos: -24.5,23.5 + parent: 4812 + type: Transform + - uid: 11928 + components: + - pos: -13.5,18.5 + parent: 4812 + type: Transform +- proto: AirlockDetectiveLocked + entities: + - uid: 5358 + components: + - pos: 19.5,-13.5 + parent: 4812 + type: Transform + - uid: 5359 + components: + - pos: 17.5,-17.5 + parent: 4812 + type: Transform +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 9565 + components: + - pos: -43.5,-4.5 + parent: 4812 + type: Transform + - uid: 9662 + components: + - pos: -33.5,-4.5 + parent: 4812 + type: Transform + - uid: 9892 + components: + - pos: -43.5,-12.5 + parent: 4812 + type: Transform + - uid: 9894 + components: + - pos: -40.5,-9.5 + parent: 4812 + type: Transform +- proto: AirlockEngineeringLocked + entities: + - uid: 901 + components: + - pos: -14.5,9.5 + parent: 4812 + type: Transform + - uid: 3726 + components: + - pos: 24.5,2.5 + parent: 4812 + type: Transform + - uid: 4370 + components: + - pos: 19.5,0.5 + parent: 4812 + type: Transform + - uid: 4371 + components: + - pos: 18.5,3.5 + parent: 4812 + type: Transform + - uid: 5912 + components: + - pos: 15.5,-32.5 + parent: 4812 + type: Transform + - uid: 6885 + components: + - pos: -9.5,-32.5 + parent: 4812 + type: Transform + - uid: 7956 + components: + - pos: -35.5,7.5 + parent: 4812 + type: Transform + - uid: 9564 + components: + - pos: -39.5,-4.5 + parent: 4812 + type: Transform + - uid: 9663 + components: + - pos: -34.5,-8.5 + parent: 4812 + type: Transform + - uid: 9664 + components: + - pos: -37.5,-8.5 + parent: 4812 + type: Transform + - uid: 9888 + components: + - pos: -46.5,-12.5 + parent: 4812 + type: Transform + - uid: 9958 + components: + - pos: -46.5,-20.5 + parent: 4812 + type: Transform + - uid: 10165 + components: + - pos: -51.5,-23.5 + parent: 4812 + type: Transform + - uid: 11386 + components: + - pos: 33.5,-37.5 + parent: 4812 + type: Transform + - uid: 11688 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,4.5 + parent: 4812 + type: Transform +- proto: AirlockExternalGlass + entities: + - uid: 3761 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-43.5 + parent: 4812 + type: Transform + - uid: 3763 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-43.5 + parent: 4812 + type: Transform + - uid: 3764 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-50.5 + parent: 4812 + type: Transform + - uid: 3765 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-50.5 + parent: 4812 + type: Transform + - uid: 3777 + components: + - pos: 32.5,-5.5 + parent: 4812 + type: Transform + - uid: 3778 + components: + - pos: 32.5,-7.5 + parent: 4812 + type: Transform + - uid: 3779 + components: + - pos: 32.5,0.5 + parent: 4812 + type: Transform + - uid: 3780 + components: + - pos: 32.5,2.5 + parent: 4812 + type: Transform + - uid: 9614 + components: + - pos: -41.5,-27.5 + parent: 4812 + type: Transform + - uid: 9651 + components: + - pos: -11.5,-56.5 + parent: 4812 + type: Transform +- proto: AirlockExternalGlassAtmosphericsLocked + entities: + - uid: 6362 + components: + - pos: -47.5,-3.5 + parent: 4812 + type: Transform + - uid: 6363 + components: + - pos: -50.5,-4.5 + parent: 4812 + type: Transform +- proto: AirlockExternalGlassCargoLocked + entities: + - uid: 2919 + components: + - pos: 25.5,14.5 + parent: 4812 + type: Transform + - uid: 2920 + components: + - pos: 28.5,14.5 + parent: 4812 + type: Transform + - uid: 3040 + components: + - pos: 21.5,27.5 + parent: 4812 + type: Transform + - uid: 3041 + components: + - pos: 21.5,25.5 + parent: 4812 + type: Transform +- proto: AirlockExternalGlassLocked + entities: + - uid: 10406 + components: + - pos: -56.5,-22.5 + parent: 4812 + type: Transform + - uid: 11139 + components: + - pos: 38.5,-36.5 + parent: 4812 + type: Transform + - uid: 11141 + components: + - pos: 35.5,-36.5 + parent: 4812 + type: Transform +- proto: AirlockExternalGlassShuttleArrivals + entities: + - uid: 3760 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-50.5 + parent: 4812 + type: Transform + - uid: 3762 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-43.5 + parent: 4812 + type: Transform +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 3190 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,27.5 + parent: 4812 + type: Transform + - uid: 3191 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,25.5 + parent: 4812 + type: Transform + - uid: 4134 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-5.5 + parent: 4812 + type: Transform + - uid: 4135 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-7.5 + parent: 4812 + type: Transform + - uid: 4136 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,0.5 + parent: 4812 + type: Transform + - uid: 4137 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,2.5 + parent: 4812 + type: Transform + - uid: 4736 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-43.5 + parent: 4812 + type: Transform + - uid: 4737 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-50.5 + parent: 4812 + type: Transform + - uid: 9656 + components: + - pos: -10.5,-59.5 + parent: 4812 + type: Transform + - uid: 12107 + components: + - pos: -11.5,-59.5 + parent: 4812 + type: Transform +- proto: AirlockExternalLocked + entities: + - uid: 2737 + components: + - pos: 12.5,31.5 + parent: 4812 + type: Transform + - uid: 2814 + components: + - pos: 12.5,33.5 + parent: 4812 + type: Transform + - uid: 3349 + components: + - pos: 21.5,10.5 + parent: 4812 + type: Transform + - uid: 3350 + components: + - pos: 19.5,10.5 + parent: 4812 + type: Transform + - uid: 3686 + components: + - pos: 3.5,44.5 + parent: 4812 + type: Transform + - uid: 3687 + components: + - pos: 4.5,45.5 + parent: 4812 + type: Transform + - uid: 10405 + components: + - pos: -54.5,-22.5 + parent: 4812 + type: Transform +- proto: AirlockFreezer + entities: + - uid: 3119 + components: + - pos: 18.5,35.5 + parent: 4812 + type: Transform +- proto: AirlockFreezerKitchenHydroLocked + entities: + - uid: 716 + components: + - pos: 4.5,-4.5 + parent: 4812 + type: Transform +- proto: AirlockGlass + entities: + - uid: 333 + components: + - pos: -3.5,15.5 + parent: 4812 + type: Transform + - uid: 334 + components: + - pos: -2.5,15.5 + parent: 4812 + type: Transform + - uid: 335 + components: + - pos: -1.5,15.5 + parent: 4812 + type: Transform + - uid: 905 + components: + - pos: -21.5,16.5 + parent: 4812 + type: Transform + - uid: 1079 + components: + - pos: -24.5,1.5 + parent: 4812 + type: Transform + - uid: 1080 + components: + - pos: -24.5,2.5 + parent: 4812 + type: Transform + - uid: 1081 + components: + - pos: -21.5,9.5 + parent: 4812 + type: Transform + - uid: 1082 + components: + - pos: -21.5,10.5 + parent: 4812 + type: Transform + - uid: 1098 + components: + - pos: -2.5,-9.5 + parent: 4812 + type: Transform + - uid: 4378 + components: + - pos: 14.5,-3.5 + parent: 4812 + type: Transform + - uid: 4379 + components: + - pos: 14.5,-2.5 + parent: 4812 + type: Transform + - uid: 4382 + components: + - pos: 26.5,-3.5 + parent: 4812 + type: Transform + - uid: 4383 + components: + - pos: 26.5,-2.5 + parent: 4812 + type: Transform + - uid: 4384 + components: + - pos: 26.5,-1.5 + parent: 4812 + type: Transform + - uid: 4714 + components: + - pos: 0.5,-33.5 + parent: 4812 + type: Transform + - uid: 4997 + components: + - pos: -1.5,-9.5 + parent: 4812 + type: Transform + - uid: 4998 + components: + - pos: -3.5,-9.5 + parent: 4812 + type: Transform + - uid: 5274 + components: + - pos: -6.5,-33.5 + parent: 4812 + type: Transform + - uid: 5275 + components: + - pos: -5.5,-33.5 + parent: 4812 + type: Transform + - uid: 5276 + components: + - pos: 1.5,-33.5 + parent: 4812 + type: Transform + - uid: 6673 + components: + - pos: -25.5,-13.5 + parent: 4812 + type: Transform + - uid: 6674 + components: + - pos: -24.5,-13.5 + parent: 4812 + type: Transform + - uid: 7349 + components: + - pos: -1.5,12.5 + parent: 4812 + type: Transform + - uid: 7386 + components: + - pos: -3.5,12.5 + parent: 4812 + type: Transform + - uid: 7392 + components: + - pos: -2.5,12.5 + parent: 4812 + type: Transform + - uid: 8158 + components: + - pos: -30.5,28.5 + parent: 4812 + type: Transform + - uid: 8159 + components: + - pos: -26.5,28.5 + parent: 4812 + type: Transform + - uid: 9660 + components: + - pos: -28.5,-2.5 + parent: 4812 + type: Transform + - uid: 9661 + components: + - pos: -28.5,-1.5 + parent: 4812 + type: Transform +- proto: AirlockHeadOfPersonnelGlassLocked + entities: + - uid: 723 + components: + - pos: 6.5,18.5 + parent: 4812 + type: Transform + - uid: 2460 + components: + - pos: 4.5,25.5 + parent: 4812 + type: Transform +- proto: AirlockHeadOfPersonnelLocked + entities: + - uid: 2461 + components: + - pos: 6.5,27.5 + parent: 4812 + type: Transform + - uid: 2462 + components: + - pos: 9.5,28.5 + parent: 4812 + type: Transform +- proto: AirlockHeadOfSecurityGlassLocked + entities: + - uid: 7935 + components: + - pos: -22.5,26.5 + parent: 4812 + type: Transform +- proto: AirlockHeadOfSecurityLocked + entities: + - uid: 7934 + components: + - pos: -18.5,25.5 + parent: 4812 + type: Transform + - uid: 7936 + components: + - pos: -22.5,21.5 + parent: 4812 + type: Transform + - uid: 8242 + components: + - pos: -20.5,27.5 + parent: 4812 + type: Transform +- proto: AirlockHydroGlassLocked + entities: + - uid: 307 + components: + - pos: -10.5,-10.5 + parent: 4812 + type: Transform + - uid: 308 + components: + - pos: -17.5,-10.5 + parent: 4812 + type: Transform +- proto: AirlockJanitorLocked + entities: + - uid: 720 + components: + - pos: -22.5,-10.5 + parent: 4812 + type: Transform +- proto: AirlockKitchenGlassLocked + entities: + - uid: 715 + components: + - pos: 3.5,1.5 + parent: 4812 + type: Transform +- proto: AirlockMaintAtmoLocked + entities: + - uid: 7949 + components: + - pos: -39.5,6.5 + parent: 4812 + type: Transform + - uid: 8686 + components: + - pos: -36.5,0.5 + parent: 4812 + type: Transform +- proto: AirlockMaintBarLocked + entities: + - uid: 324 + components: + - pos: 8.5,7.5 + parent: 4812 + type: Transform +- proto: AirlockMaintCaptainLocked + entities: + - uid: 2418 + components: + - pos: -16.5,24.5 + parent: 4812 + type: Transform +- proto: AirlockMaintCargoLocked + entities: + - uid: 2741 + components: + - pos: 13.5,24.5 + parent: 4812 + type: Transform +- proto: AirlockMaintChapelLocked + entities: + - uid: 6790 + components: + - pos: -21.5,-31.5 + parent: 4812 + type: Transform + - uid: 6791 + components: + - pos: -18.5,-31.5 + parent: 4812 + type: Transform +- proto: AirlockMaintCommandLocked + entities: + - uid: 7932 + components: + - pos: -17.5,21.5 + parent: 4812 + type: Transform +- proto: AirlockMaintEngiLocked + entities: + - uid: 8683 + components: + - pos: -30.5,-10.5 + parent: 4812 + type: Transform + - uid: 8684 + components: + - pos: -36.5,-10.5 + parent: 4812 + type: Transform + - uid: 8685 + components: + - pos: -36.5,-6.5 + parent: 4812 + type: Transform + - uid: 9830 + components: + - pos: -44.5,-15.5 + parent: 4812 + type: Transform +- proto: AirlockMaintGlassLocked + entities: + - uid: 1935 + components: + - pos: 16.5,-19.5 + parent: 4812 + type: Transform + - uid: 1936 + components: + - pos: 18.5,-22.5 + parent: 4812 + type: Transform +- proto: AirlockMaintHydroLocked + entities: + - uid: 309 + components: + - pos: -10.5,-4.5 + parent: 4812 + type: Transform +- proto: AirlockMaintJanitorLocked + entities: + - uid: 719 + components: + - pos: -21.5,-5.5 + parent: 4812 + type: Transform +- proto: AirlockMaintKitchenLocked + entities: + - uid: 717 + components: + - pos: 8.5,-1.5 + parent: 4812 + type: Transform + - uid: 718 + components: + - pos: 8.5,-6.5 + parent: 4812 + type: Transform +- proto: AirlockMaintLocked + entities: + - uid: 336 + components: + - pos: 1.5,-8.5 + parent: 4812 + type: Transform + - uid: 337 + components: + - pos: -6.5,-3.5 + parent: 4812 + type: Transform + - uid: 338 + components: + - pos: 4.5,2.5 + parent: 4812 + type: Transform + - uid: 339 + components: + - pos: -5.5,13.5 + parent: 4812 + type: Transform + - uid: 340 + components: + - pos: 0.5,14.5 + parent: 4812 + type: Transform + - uid: 341 + components: + - pos: -15.5,10.5 + parent: 4812 + type: Transform + - uid: 342 + components: + - pos: -23.5,-4.5 + parent: 4812 + type: Transform + - uid: 343 + components: + - pos: 8.5,-10.5 + parent: 4812 + type: Transform + - uid: 344 + components: + - pos: 10.5,3.5 + parent: 4812 + type: Transform + - uid: 1252 + components: + - pos: -16.5,2.5 + parent: 4812 + type: Transform + - uid: 2882 + components: + - pos: 12.5,21.5 + parent: 4812 + type: Transform + - uid: 4372 + components: + - pos: 14.5,3.5 + parent: 4812 + type: Transform + - uid: 4374 + components: + - pos: 13.5,10.5 + parent: 4812 + type: Transform + - uid: 4375 + components: + - pos: 23.5,0.5 + parent: 4812 + type: Transform + - uid: 4376 + components: + - pos: 22.5,-7.5 + parent: 4812 + type: Transform + - uid: 4377 + components: + - pos: 14.5,-7.5 + parent: 4812 + type: Transform + - uid: 5392 + components: + - pos: 12.5,-13.5 + parent: 4812 + type: Transform + - uid: 5399 + components: + - pos: 18.5,-27.5 + parent: 4812 + type: Transform + - uid: 5838 + components: + - pos: 3.5,-30.5 + parent: 4812 + type: Transform + - uid: 6982 + components: + - pos: -10.5,-33.5 + parent: 4812 + type: Transform + - uid: 7054 + components: + - pos: -28.5,-21.5 + parent: 4812 + type: Transform + - uid: 7954 + components: + - pos: -28.5,8.5 + parent: 4812 + type: Transform + - uid: 8681 + components: + - pos: -28.5,-11.5 + parent: 4812 + type: Transform + - uid: 8848 + components: + - pos: -33.5,-31.5 + parent: 4812 + type: Transform + - uid: 8861 + components: + - pos: -29.5,-26.5 + parent: 4812 + type: Transform + - uid: 8866 + components: + - pos: -30.5,-34.5 + parent: 4812 + type: Transform + - uid: 8867 + components: + - pos: -28.5,-39.5 + parent: 4812 + type: Transform + - uid: 10157 + components: + - pos: -49.5,-22.5 + parent: 4812 + type: Transform + - uid: 10487 + components: + - pos: -34.5,-26.5 + parent: 4812 + type: Transform + - uid: 11300 + components: + - pos: 19.5,-35.5 + parent: 4812 + type: Transform + - uid: 11326 + components: + - pos: 25.5,-34.5 + parent: 4812 + type: Transform + - uid: 11350 + components: + - pos: 34.5,-34.5 + parent: 4812 + type: Transform + - uid: 11434 + components: + - pos: 31.5,-35.5 + parent: 4812 + type: Transform + - uid: 11676 + components: + - pos: 25.5,-37.5 + parent: 4812 + type: Transform + - uid: 11802 + components: + - pos: -15.5,-2.5 + parent: 4812 + type: Transform +- proto: AirlockMaintMedLocked + entities: + - uid: 6788 + components: + - pos: -27.5,-23.5 + parent: 4812 + type: Transform + - uid: 7336 + components: + - pos: -10.5,-29.5 + parent: 4812 + type: Transform +- proto: AirlockMaintRnDLocked + entities: + - uid: 5497 + components: + - pos: 11.5,-15.5 + parent: 4812 + type: Transform + - uid: 5498 + components: + - pos: 12.5,-29.5 + parent: 4812 + type: Transform + - uid: 5499 + components: + - pos: 8.5,-29.5 + parent: 4812 + type: Transform + - uid: 5787 + components: + - pos: 33.5,-29.5 + parent: 4812 + type: Transform +- proto: AirlockMaintSecLocked + entities: + - uid: 7806 + components: + - pos: -31.5,9.5 + parent: 4812 + type: Transform +- proto: AirlockMaintTheatreLocked + entities: + - uid: 714 + components: + - pos: -8.5,10.5 + parent: 4812 + type: Transform +- proto: AirlockMedicalGlassLocked + entities: + - uid: 1933 + components: + - pos: -7.5,-22.5 + parent: 4812 + type: Transform + - uid: 1934 + components: + - pos: -7.5,-21.5 + parent: 4812 + type: Transform + - uid: 7411 + components: + - pos: -9.5,-24.5 + parent: 4812 + type: Transform + - uid: 7412 + components: + - pos: -18.5,-27.5 + parent: 4812 + type: Transform + - uid: 7413 + components: + - pos: -15.5,-19.5 + parent: 4812 + type: Transform + - uid: 7433 + components: + - pos: -23.5,-23.5 + parent: 4812 + type: Transform +- proto: AirlockMedicalLocked + entities: + - uid: 7410 + components: + - pos: -11.5,-26.5 + parent: 4812 + type: Transform + - uid: 7414 + components: + - pos: -17.5,-17.5 + parent: 4812 + type: Transform + - uid: 7415 + components: + - pos: -19.5,-19.5 + parent: 4812 + type: Transform + - uid: 7416 + components: + - pos: -19.5,-13.5 + parent: 4812 + type: Transform +- proto: AirlockQuartermasterGlassLocked + entities: + - uid: 3015 + components: + - pos: 16.5,33.5 + parent: 4812 + type: Transform +- proto: AirlockQuartermasterLocked + entities: + - uid: 2817 + components: + - pos: 15.5,28.5 + parent: 4812 + type: Transform +- proto: AirlockResearchDirectorGlassLocked + entities: + - uid: 5555 + components: + - pos: 23.5,-20.5 + parent: 4812 + type: Transform + - uid: 5598 + components: + - pos: 13.5,-19.5 + parent: 4812 + type: Transform +- proto: AirlockSalvageLocked + entities: + - uid: 2921 + components: + - pos: 21.5,14.5 + parent: 4812 + type: Transform +- proto: AirlockScienceGlassLocked + entities: + - uid: 5488 + components: + - pos: 17.5,-24.5 + parent: 4812 + type: Transform + - uid: 5489 + components: + - pos: 2.5,-21.5 + parent: 4812 + type: Transform + - uid: 5490 + components: + - pos: 2.5,-20.5 + parent: 4812 + type: Transform + - uid: 5492 + components: + - pos: 10.5,-13.5 + parent: 4812 + type: Transform + - uid: 5493 + components: + - pos: 4.5,-19.5 + parent: 4812 + type: Transform + - uid: 5494 + components: + - pos: 5.5,-22.5 + parent: 4812 + type: Transform + - uid: 5495 + components: + - pos: 7.5,-24.5 + parent: 4812 + type: Transform + - uid: 5496 + components: + - pos: 10.5,-25.5 + parent: 4812 + type: Transform + - uid: 5771 + components: + - pos: 30.5,-25.5 + parent: 4812 + type: Transform + - uid: 5797 + components: + - pos: 26.5,-29.5 + parent: 4812 + type: Transform + - uid: 5798 + components: + - pos: 24.5,-29.5 + parent: 4812 + type: Transform +- proto: AirlockScienceLocked + entities: + - uid: 5396 + components: + - pos: 15.5,-20.5 + parent: 4812 + type: Transform + - uid: 5484 + components: + - pos: 15.5,-21.5 + parent: 4812 + type: Transform + - uid: 5485 + components: + - pos: 19.5,-21.5 + parent: 4812 + type: Transform + - uid: 5486 + components: + - pos: 19.5,-20.5 + parent: 4812 + type: Transform + - uid: 5487 + components: + - pos: 20.5,-24.5 + parent: 4812 + type: Transform +- proto: AirlockSecurityGlassLocked + entities: + - uid: 4429 + components: + - pos: 30.5,1.5 + parent: 4812 + type: Transform + - uid: 5304 + components: + - pos: -2.5,-30.5 + parent: 4812 + type: Transform + - uid: 5305 + components: + - pos: -4.5,-25.5 + parent: 4812 + type: Transform + - uid: 7792 + components: + - pos: -27.5,11.5 + parent: 4812 + type: Transform + - uid: 7793 + components: + - pos: -32.5,11.5 + parent: 4812 + type: Transform + - uid: 7794 + components: + - pos: -29.5,21.5 + parent: 4812 + type: Transform + - uid: 7795 + components: + - pos: -30.5,21.5 + parent: 4812 + type: Transform + - uid: 7798 + components: + - pos: -26.5,25.5 + parent: 4812 + type: Transform + - uid: 7799 + components: + - pos: -30.5,25.5 + parent: 4812 + type: Transform +- proto: AirlockServiceLocked + entities: + - uid: 6675 + components: + - pos: -31.5,-20.5 + parent: 4812 + type: Transform +- proto: AirlockTheatreLocked + entities: + - uid: 713 + components: + - pos: -6.5,-0.5 + parent: 4812 + type: Transform + - uid: 886 + components: + - pos: -8.5,2.5 + parent: 4812 + type: Transform +- proto: AirlockVirologyGlassLocked + entities: + - uid: 3773 + components: + - pos: -36.5,-36.5 + parent: 4812 + type: Transform + - uid: 4007 + components: + - pos: -35.5,-33.5 + parent: 4812 + type: Transform +- proto: AirlockVirologyLocked + entities: + - uid: 3771 + components: + - pos: -32.5,-33.5 + parent: 4812 + type: Transform +- proto: AirSensor + entities: + - uid: 8805 + components: + - pos: -17.5,-26.5 + parent: 4812 + type: Transform + - uid: 8806 + components: + - pos: -17.5,-21.5 + parent: 4812 + type: Transform + - uid: 12170 + components: + - pos: -42.5,-13.5 + parent: 4812 + type: Transform + - uid: 12172 + components: + - pos: -48.5,-11.5 + parent: 4812 + type: Transform + - uid: 12175 + components: + - pos: -54.5,-13.5 + parent: 4812 + type: Transform + - uid: 12177 + components: + - pos: -45.5,-7.5 + parent: 4812 + type: Transform + - uid: 12179 + components: + - pos: -40.5,3.5 + parent: 4812 + type: Transform + - uid: 12181 + components: + - pos: -44.5,16.5 + parent: 4812 + type: Transform + - uid: 12184 + components: + - pos: -34.5,2.5 + parent: 4812 + type: Transform + - uid: 12185 + components: + - pos: -31.5,-0.5 + parent: 4812 + type: Transform + - uid: 12192 + components: + - pos: -29.5,-8.5 + parent: 4812 + type: Transform + - uid: 12195 + components: + - pos: -25.5,-1.5 + parent: 4812 + type: Transform + - uid: 12200 + components: + - pos: -23.5,3.5 + parent: 4812 + type: Transform + - uid: 12201 + components: + - pos: -22.5,12.5 + parent: 4812 + type: Transform + - uid: 12208 + components: + - pos: -20.5,8.5 + parent: 4812 + type: Transform + - uid: 12211 + components: + - pos: -31.5,16.5 + parent: 4812 + type: Transform + - uid: 12214 + components: + - pos: -38.5,11.5 + parent: 4812 + type: Transform + - uid: 12216 + components: + - pos: -35.5,16.5 + parent: 4812 + type: Transform + - uid: 12218 + components: + - pos: -31.5,29.5 + parent: 4812 + type: Transform + - uid: 12222 + components: + - pos: -15.5,19.5 + parent: 4812 + type: Transform + - uid: 12225 + components: + - pos: -4.5,16.5 + parent: 4812 + type: Transform + - uid: 12226 + components: + - pos: -2.5,23.5 + parent: 4812 + type: Transform + - uid: 12230 + components: + - pos: -7.5,24.5 + parent: 4812 + type: Transform + - uid: 12231 + components: + - pos: 2.5,24.5 + parent: 4812 + type: Transform + - uid: 12237 + components: + - pos: -5.5,32.5 + parent: 4812 + type: Transform + - uid: 12239 + components: + - pos: 5.5,22.5 + parent: 4812 + type: Transform + - uid: 12242 + components: + - pos: 5.5,26.5 + parent: 4812 + type: Transform + - uid: 12243 + components: + - pos: 12.5,20.5 + parent: 4812 + type: Transform + - uid: 12247 + components: + - pos: 17.5,15.5 + parent: 4812 + type: Transform + - uid: 12251 + components: + - pos: 11.5,12.5 + parent: 4812 + type: Transform + - uid: 12254 + components: + - pos: 18.5,17.5 + parent: 4812 + type: Transform + - uid: 12257 + components: + - pos: 20.5,23.5 + parent: 4812 + type: Transform + - uid: 12259 + components: + - pos: 17.5,30.5 + parent: 4812 + type: Transform + - uid: 12261 + components: + - pos: 10.5,45.5 + parent: 4812 + type: Transform + - uid: 12263 + components: + - pos: 14.5,45.5 + parent: 4812 + type: Transform + - uid: 12264 + components: + - pos: 6.5,45.5 + parent: 4812 + type: Transform + - uid: 12267 + components: + - pos: 10.5,49.5 + parent: 4812 + type: Transform + - uid: 12274 + components: + - pos: 11.5,-4.5 + parent: 4812 + type: Transform + - uid: 12277 + components: + - pos: 21.5,-2.5 + parent: 4812 + type: Transform + - uid: 12279 + components: + - pos: 25.5,0.5 + parent: 4812 + type: Transform + - uid: 12281 + components: + - pos: 23.5,5.5 + parent: 4812 + type: Transform + - uid: 12284 + components: + - pos: 30.5,-2.5 + parent: 4812 + type: Transform + - uid: 12287 + components: + - pos: 13.5,-11.5 + parent: 4812 + type: Transform + - uid: 12288 + components: + - pos: -2.5,-11.5 + parent: 4812 + type: Transform + - uid: 12292 + components: + - pos: -23.5,-11.5 + parent: 4812 + type: Transform + - uid: 12295 + components: + - pos: -18.5,-12.5 + parent: 4812 + type: Transform + - uid: 12297 + components: + - pos: -22.5,-7.5 + parent: 4812 + type: Transform + - uid: 12298 + components: + - pos: -9.5,-7.5 + parent: 4812 + type: Transform + - uid: 12300 + components: + - pos: -2.5,-5.5 + parent: 4812 + type: Transform + - uid: 12303 + components: + - pos: -7.5,6.5 + parent: 4812 + type: Transform + - uid: 12306 + components: + - pos: 2.5,5.5 + parent: 4812 + type: Transform + - uid: 12309 + components: + - pos: 5.5,-3.5 + parent: 4812 + type: Transform + - uid: 12313 + components: + - pos: -0.5,13.5 + parent: 4812 + type: Transform + - uid: 12315 + components: + - pos: -2.5,-21.5 + parent: 4812 + type: Transform + - uid: 12318 + components: + - pos: -2.5,-35.5 + parent: 4812 + type: Transform + - uid: 12321 + components: + - pos: -10.5,-40.5 + parent: 4812 + type: Transform + - uid: 12326 + components: + - pos: -19.5,-32.5 + parent: 4812 + type: Transform + - uid: 12328 + components: + - pos: -21.5,-35.5 + parent: 4812 + type: Transform + - uid: 12333 + components: + - pos: -12.5,-20.5 + parent: 4812 + type: Transform + - uid: 12343 + components: + - pos: -9.5,-15.5 + parent: 4812 + type: Transform + - uid: 12345 + components: + - pos: -26.5,-17.5 + parent: 4812 + type: Transform + - uid: 12347 + components: + - pos: 4.5,-16.5 + parent: 4812 + type: Transform + - uid: 12349 + components: + - pos: 4.5,-23.5 + parent: 4812 + type: Transform + - uid: 12351 + components: + - pos: 14.5,-25.5 + parent: 4812 + type: Transform + - uid: 12355 + components: + - pos: 9.5,-20.5 + parent: 4812 + type: Transform + - uid: 12357 + components: + - pos: 22.5,-29.5 + parent: 4812 + type: Transform + - uid: 12359 + components: + - pos: 24.5,-23.5 + parent: 4812 + type: Transform + - uid: 12360 + components: + - pos: 32.5,-26.5 + parent: 4812 + type: Transform + - uid: 12363 + components: + - pos: -37.5,-34.5 + parent: 4812 + type: Transform +- proto: AltarSpawner + entities: + - uid: 4008 + components: + - pos: -18.5,-34.5 + parent: 4812 + type: Transform +- proto: AmeController + entities: + - uid: 10778 + components: + - pos: -42.5,-10.5 + parent: 4812 + type: Transform +- proto: AmeJar + entities: + - uid: 4233 + components: + - pos: -42.336273,-2.370503 + parent: 4812 + type: Transform +- proto: AnomalyScanner + entities: + - uid: 6357 + components: + - pos: 31.47904,-24.269451 + parent: 4812 + type: Transform + - uid: 6365 + components: + - pos: 31.63529,-24.472576 + parent: 4812 + type: Transform +- proto: APCBasic + entities: + - uid: 903 + components: + - pos: -8.5,-2.5 + parent: 4812 + type: Transform + - uid: 904 + components: + - pos: -12.5,14.5 + parent: 4812 + type: Transform + - uid: 1022 + components: + - pos: 7.5,-8.5 + parent: 4812 + type: Transform + - uid: 1549 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,8.5 + parent: 4812 + type: Transform + - uid: 2077 + components: + - pos: 0.5,21.5 + parent: 4812 + type: Transform + - uid: 2078 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,31.5 + parent: 4812 + type: Transform + - uid: 2079 + components: + - pos: 9.5,27.5 + parent: 4812 + type: Transform + - uid: 2366 + components: + - pos: -14.5,25.5 + parent: 4812 + type: Transform + - uid: 2832 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,32.5 + parent: 4812 + type: Transform + - uid: 3113 + components: + - pos: 17.5,22.5 + parent: 4812 + type: Transform + - uid: 3883 + components: + - pos: 11.5,51.5 + parent: 4812 + type: Transform + - uid: 4246 + components: + - pos: 22.5,-1.5 + parent: 4812 + type: Transform + - uid: 4968 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-15.5 + parent: 4812 + type: Transform + - uid: 4969 + components: + - pos: -15.5,-14.5 + parent: 4812 + type: Transform + - uid: 4970 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-28.5 + parent: 4812 + type: Transform + - uid: 4971 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-25.5 + parent: 4812 + type: Transform + - uid: 4972 + components: + - pos: -18.5,-19.5 + parent: 4812 + type: Transform + - uid: 5273 + components: + - pos: -8.5,-33.5 + parent: 4812 + type: Transform + - uid: 5970 + components: + - pos: 6.5,-19.5 + parent: 4812 + type: Transform + - uid: 5971 + components: + - pos: 28.5,-21.5 + parent: 4812 + type: Transform + - uid: 6064 + components: + - pos: 13.5,-22.5 + parent: 4812 + type: Transform + - uid: 6118 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-16.5 + parent: 4812 + type: Transform + - uid: 6149 + components: + - pos: 13.5,-16.5 + parent: 4812 + type: Transform + - uid: 6844 + components: + - pos: -17.5,-31.5 + parent: 4812 + type: Transform + - uid: 6898 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-25.5 + parent: 4812 + type: Transform + - uid: 7090 + components: + - pos: -24.5,-10.5 + parent: 4812 + type: Transform + - uid: 7259 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-25.5 + parent: 4812 + type: Transform + - uid: 7466 + components: + - pos: -1.5,-20.5 + parent: 4812 + type: Transform + - uid: 7985 + components: + - pos: -36.5,13.5 + parent: 4812 + type: Transform + - uid: 8176 + components: + - pos: -19.5,21.5 + parent: 4812 + type: Transform + - uid: 8896 + components: + - pos: -33.5,-24.5 + parent: 4812 + type: Transform + - uid: 9290 + components: + - pos: -38.5,6.5 + parent: 4812 + type: Transform + - uid: 9412 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-29.5 + parent: 4812 + type: Transform + - uid: 10021 + components: + - pos: -41.5,-4.5 + parent: 4812 + type: Transform + - uid: 10069 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,-12.5 + parent: 4812 + type: Transform + - uid: 10183 + components: + - pos: -51.5,-21.5 + parent: 4812 + type: Transform + - uid: 11150 + components: + - pos: 10.5,-35.5 + parent: 4812 + type: Transform + - uid: 11436 + components: + - pos: 30.5,-37.5 + parent: 4812 + type: Transform +- proto: AppleSeeds + entities: + - uid: 8397 + components: + - pos: -31.672361,31.435354 + parent: 4812 + type: Transform + - uid: 8398 + components: + - pos: -31.531736,31.32598 + parent: 4812 + type: Transform +- proto: AsteroidRock + entities: + - uid: 2840 + components: + - pos: 13.5,34.5 + parent: 4812 + type: Transform + - uid: 3012 + components: + - pos: 14.5,37.5 + parent: 4812 + type: Transform + - uid: 3044 + components: + - pos: 20.5,38.5 + parent: 4812 + type: Transform + - uid: 3045 + components: + - pos: 19.5,38.5 + parent: 4812 + type: Transform + - uid: 3295 + components: + - pos: 21.5,36.5 + parent: 4812 + type: Transform + - uid: 3353 + components: + - pos: 21.5,34.5 + parent: 4812 + type: Transform + - uid: 3372 + components: + - pos: 23.5,33.5 + parent: 4812 + type: Transform + - uid: 3373 + components: + - pos: 22.5,31.5 + parent: 4812 + type: Transform + - uid: 3374 + components: + - pos: 22.5,37.5 + parent: 4812 + type: Transform + - uid: 3375 + components: + - pos: 22.5,35.5 + parent: 4812 + type: Transform + - uid: 3376 + components: + - pos: 22.5,33.5 + parent: 4812 + type: Transform + - uid: 3394 + components: + - pos: 22.5,32.5 + parent: 4812 + type: Transform + - uid: 3395 + components: + - pos: 23.5,32.5 + parent: 4812 + type: Transform + - uid: 3396 + components: + - pos: 21.5,33.5 + parent: 4812 + type: Transform + - uid: 3397 + components: + - pos: 21.5,35.5 + parent: 4812 + type: Transform + - uid: 3398 + components: + - pos: 21.5,38.5 + parent: 4812 + type: Transform + - uid: 3399 + components: + - pos: 22.5,36.5 + parent: 4812 + type: Transform + - uid: 3400 + components: + - pos: 22.5,34.5 + parent: 4812 + type: Transform + - uid: 3427 + components: + - pos: 19.5,32.5 + parent: 4812 + type: Transform + - uid: 3433 + components: + - pos: 13.5,36.5 + parent: 4812 + type: Transform + - uid: 3440 + components: + - pos: 21.5,32.5 + parent: 4812 + type: Transform + - uid: 3450 + components: + - pos: 20.5,32.5 + parent: 4812 + type: Transform + - uid: 3459 + components: + - pos: 15.5,37.5 + parent: 4812 + type: Transform + - uid: 3460 + components: + - pos: 18.5,38.5 + parent: 4812 + type: Transform + - uid: 3461 + components: + - pos: 13.5,35.5 + parent: 4812 + type: Transform + - uid: 3579 + components: + - pos: 21.5,37.5 + parent: 4812 + type: Transform + - uid: 3583 + components: + - pos: 17.5,42.5 + parent: 4812 + type: Transform + - uid: 3584 + components: + - pos: 16.5,42.5 + parent: 4812 + type: Transform + - uid: 3585 + components: + - pos: 15.5,42.5 + parent: 4812 + type: Transform + - uid: 3586 + components: + - pos: 15.5,41.5 + parent: 4812 + type: Transform + - uid: 3587 + components: + - pos: 14.5,42.5 + parent: 4812 + type: Transform + - uid: 3588 + components: + - pos: 14.5,41.5 + parent: 4812 + type: Transform + - uid: 3589 + components: + - pos: 13.5,42.5 + parent: 4812 + type: Transform + - uid: 3590 + components: + - pos: 13.5,41.5 + parent: 4812 + type: Transform + - uid: 3591 + components: + - pos: 9.5,41.5 + parent: 4812 + type: Transform + - uid: 3592 + components: + - pos: 10.5,41.5 + parent: 4812 + type: Transform + - uid: 3593 + components: + - pos: 11.5,41.5 + parent: 4812 + type: Transform + - uid: 3594 + components: + - pos: 12.5,41.5 + parent: 4812 + type: Transform + - uid: 3595 + components: + - pos: 11.5,40.5 + parent: 4812 + type: Transform + - uid: 3596 + components: + - pos: 12.5,40.5 + parent: 4812 + type: Transform + - uid: 3597 + components: + - pos: 13.5,40.5 + parent: 4812 + type: Transform + - uid: 3598 + components: + - pos: 17.5,43.5 + parent: 4812 + type: Transform + - uid: 3599 + components: + - pos: 17.5,44.5 + parent: 4812 + type: Transform + - uid: 3600 + components: + - pos: 17.5,45.5 + parent: 4812 + type: Transform + - uid: 3601 + components: + - pos: 17.5,47.5 + parent: 4812 + type: Transform + - uid: 3602 + components: + - pos: 18.5,47.5 + parent: 4812 + type: Transform + - uid: 3603 + components: + - pos: 20.5,48.5 + parent: 4812 + type: Transform + - uid: 3604 + components: + - pos: 20.5,49.5 + parent: 4812 + type: Transform + - uid: 3605 + components: + - pos: 21.5,49.5 + parent: 4812 + type: Transform + - uid: 3606 + components: + - pos: 19.5,48.5 + parent: 4812 + type: Transform + - uid: 3607 + components: + - pos: 18.5,48.5 + parent: 4812 + type: Transform + - uid: 3608 + components: + - pos: 17.5,48.5 + parent: 4812 + type: Transform + - uid: 3609 + components: + - pos: 16.5,49.5 + parent: 4812 + type: Transform + - uid: 3610 + components: + - pos: 18.5,49.5 + parent: 4812 + type: Transform + - uid: 3612 + components: + - pos: 19.5,49.5 + parent: 4812 + type: Transform + - uid: 3613 + components: + - pos: 19.5,50.5 + parent: 4812 + type: Transform + - uid: 3614 + components: + - pos: 18.5,50.5 + parent: 4812 + type: Transform + - uid: 3615 + components: + - pos: 18.5,51.5 + parent: 4812 + type: Transform + - uid: 3616 + components: + - pos: 17.5,50.5 + parent: 4812 + type: Transform + - uid: 3617 + components: + - pos: 17.5,51.5 + parent: 4812 + type: Transform + - uid: 3618 + components: + - pos: 16.5,51.5 + parent: 4812 + type: Transform + - uid: 3619 + components: + - pos: 16.5,51.5 + parent: 4812 + type: Transform + - uid: 3620 + components: + - pos: 18.5,53.5 + parent: 4812 + type: Transform + - uid: 3621 + components: + - pos: 17.5,52.5 + parent: 4812 + type: Transform + - uid: 3622 + components: + - pos: 16.5,52.5 + parent: 4812 + type: Transform + - uid: 3623 + components: + - pos: 16.5,50.5 + parent: 4812 + type: Transform + - uid: 3624 + components: + - pos: 17.5,53.5 + parent: 4812 + type: Transform + - uid: 3625 + components: + - pos: 16.5,53.5 + parent: 4812 + type: Transform + - uid: 3626 + components: + - pos: 17.5,54.5 + parent: 4812 + type: Transform + - uid: 3627 + components: + - pos: 16.5,54.5 + parent: 4812 + type: Transform + - uid: 3628 + components: + - pos: 16.5,55.5 + parent: 4812 + type: Transform + - uid: 3629 + components: + - pos: 16.5,56.5 + parent: 4812 + type: Transform + - uid: 3630 + components: + - pos: 16.5,57.5 + parent: 4812 + type: Transform + - uid: 3631 + components: + - pos: 15.5,57.5 + parent: 4812 + type: Transform + - uid: 3632 + components: + - pos: 15.5,56.5 + parent: 4812 + type: Transform + - uid: 3633 + components: + - pos: 14.5,57.5 + parent: 4812 + type: Transform + - uid: 3634 + components: + - pos: 14.5,58.5 + parent: 4812 + type: Transform + - uid: 3635 + components: + - pos: 13.5,58.5 + parent: 4812 + type: Transform + - uid: 3636 + components: + - pos: 13.5,59.5 + parent: 4812 + type: Transform + - uid: 3637 + components: + - pos: 12.5,59.5 + parent: 4812 + type: Transform + - uid: 3638 + components: + - pos: 12.5,60.5 + parent: 4812 + type: Transform + - uid: 3639 + components: + - pos: 11.5,59.5 + parent: 4812 + type: Transform + - uid: 3640 + components: + - pos: 11.5,60.5 + parent: 4812 + type: Transform + - uid: 3641 + components: + - pos: 10.5,59.5 + parent: 4812 + type: Transform + - uid: 3642 + components: + - pos: 10.5,60.5 + parent: 4812 + type: Transform + - uid: 3643 + components: + - pos: 9.5,59.5 + parent: 4812 + type: Transform + - uid: 3644 + components: + - pos: 9.5,60.5 + parent: 4812 + type: Transform + - uid: 3645 + components: + - pos: 8.5,59.5 + parent: 4812 + type: Transform + - uid: 3646 + components: + - pos: 7.5,58.5 + parent: 4812 + type: Transform + - uid: 3647 + components: + - pos: 7.5,59.5 + parent: 4812 + type: Transform + - uid: 3648 + components: + - pos: 6.5,58.5 + parent: 4812 + type: Transform + - uid: 3649 + components: + - pos: 5.5,58.5 + parent: 4812 + type: Transform + - uid: 3650 + components: + - pos: 5.5,57.5 + parent: 4812 + type: Transform + - uid: 3651 + components: + - pos: 4.5,57.5 + parent: 4812 + type: Transform + - uid: 3652 + components: + - pos: 4.5,56.5 + parent: 4812 + type: Transform + - uid: 3653 + components: + - pos: 3.5,56.5 + parent: 4812 + type: Transform + - uid: 3654 + components: + - pos: 2.5,55.5 + parent: 4812 + type: Transform + - uid: 3655 + components: + - pos: 2.5,54.5 + parent: 4812 + type: Transform + - uid: 3656 + components: + - pos: 3.5,54.5 + parent: 4812 + type: Transform + - uid: 3657 + components: + - pos: 3.5,53.5 + parent: 4812 + type: Transform + - uid: 3658 + components: + - pos: 3.5,52.5 + parent: 4812 + type: Transform + - uid: 3659 + components: + - pos: 2.5,52.5 + parent: 4812 + type: Transform + - uid: 3660 + components: + - pos: 2.5,51.5 + parent: 4812 + type: Transform + - uid: 3661 + components: + - pos: 2.5,50.5 + parent: 4812 + type: Transform + - uid: 3662 + components: + - pos: 1.5,50.5 + parent: 4812 + type: Transform + - uid: 3663 + components: + - pos: 1.5,49.5 + parent: 4812 + type: Transform + - uid: 3664 + components: + - pos: 0.5,49.5 + parent: 4812 + type: Transform + - uid: 3665 + components: + - pos: 0.5,48.5 + parent: 4812 + type: Transform + - uid: 3666 + components: + - pos: 0.5,47.5 + parent: 4812 + type: Transform + - uid: 3667 + components: + - pos: 1.5,47.5 + parent: 4812 + type: Transform + - uid: 3668 + components: + - pos: 1.5,46.5 + parent: 4812 + type: Transform + - uid: 3669 + components: + - pos: 1.5,48.5 + parent: 4812 + type: Transform + - uid: 3670 + components: + - pos: 2.5,48.5 + parent: 4812 + type: Transform + - uid: 3671 + components: + - pos: 3.5,48.5 + parent: 4812 + type: Transform + - uid: 3672 + components: + - pos: 2.5,49.5 + parent: 4812 + type: Transform + - uid: 3673 + components: + - pos: 3.5,51.5 + parent: 4812 + type: Transform + - uid: 3676 + components: + - pos: 4.5,49.5 + parent: 4812 + type: Transform + - uid: 3679 + components: + - pos: 4.5,52.5 + parent: 4812 + type: Transform + - uid: 3680 + components: + - pos: 4.5,53.5 + parent: 4812 + type: Transform + - uid: 3681 + components: + - pos: 4.5,54.5 + parent: 4812 + type: Transform + - uid: 3682 + components: + - pos: 4.5,55.5 + parent: 4812 + type: Transform + - uid: 3683 + components: + - pos: 3.5,55.5 + parent: 4812 + type: Transform + - uid: 3684 + components: + - pos: 5.5,56.5 + parent: 4812 + type: Transform + - uid: 3685 + components: + - pos: 6.5,57.5 + parent: 4812 + type: Transform + - uid: 3976 + components: + - pos: -36.5,27.5 + parent: 4812 + type: Transform + - uid: 5032 + components: + - pos: -36.5,32.5 + parent: 4812 + type: Transform + - uid: 5625 + components: + - pos: 22.5,-18.5 + parent: 4812 + type: Transform + - uid: 5626 + components: + - pos: 30.5,-20.5 + parent: 4812 + type: Transform + - uid: 5627 + components: + - pos: 30.5,-19.5 + parent: 4812 + type: Transform + - uid: 5808 + components: + - pos: 31.5,-20.5 + parent: 4812 + type: Transform + - uid: 5809 + components: + - pos: 31.5,-21.5 + parent: 4812 + type: Transform + - uid: 5810 + components: + - pos: 35.5,-21.5 + parent: 4812 + type: Transform + - uid: 5811 + components: + - pos: 36.5,-20.5 + parent: 4812 + type: Transform + - uid: 5812 + components: + - pos: 36.5,-21.5 + parent: 4812 + type: Transform + - uid: 5813 + components: + - pos: 37.5,-22.5 + parent: 4812 + type: Transform + - uid: 5814 + components: + - pos: 37.5,-23.5 + parent: 4812 + type: Transform + - uid: 5815 + components: + - pos: 38.5,-23.5 + parent: 4812 + type: Transform + - uid: 5816 + components: + - pos: 38.5,-24.5 + parent: 4812 + type: Transform + - uid: 5817 + components: + - pos: 39.5,-24.5 + parent: 4812 + type: Transform + - uid: 5818 + components: + - pos: 37.5,-24.5 + parent: 4812 + type: Transform + - uid: 5819 + components: + - pos: 37.5,-29.5 + parent: 4812 + type: Transform + - uid: 5820 + components: + - pos: 37.5,-28.5 + parent: 4812 + type: Transform + - uid: 5821 + components: + - pos: 37.5,-27.5 + parent: 4812 + type: Transform + - uid: 5822 + components: + - pos: 37.5,-26.5 + parent: 4812 + type: Transform + - uid: 5823 + components: + - pos: 37.5,-25.5 + parent: 4812 + type: Transform + - uid: 5824 + components: + - pos: 38.5,-28.5 + parent: 4812 + type: Transform + - uid: 5825 + components: + - pos: 38.5,-27.5 + parent: 4812 + type: Transform + - uid: 5827 + components: + - pos: 38.5,-25.5 + parent: 4812 + type: Transform + - uid: 5828 + components: + - pos: 39.5,-25.5 + parent: 4812 + type: Transform + - uid: 5829 + components: + - pos: 39.5,-26.5 + parent: 4812 + type: Transform + - uid: 5830 + components: + - pos: 39.5,-27.5 + parent: 4812 + type: Transform + - uid: 5831 + components: + - pos: 40.5,-27.5 + parent: 4812 + type: Transform + - uid: 5832 + components: + - pos: 40.5,-26.5 + parent: 4812 + type: Transform + - uid: 5839 + components: + - pos: 22.5,-17.5 + parent: 4812 + type: Transform + - uid: 6332 + components: + - pos: 37.5,-21.5 + parent: 4812 + type: Transform + - uid: 8458 + components: + - pos: -19.5,36.5 + parent: 4812 + type: Transform + - uid: 8459 + components: + - pos: -19.5,35.5 + parent: 4812 + type: Transform + - uid: 8460 + components: + - pos: -20.5,34.5 + parent: 4812 + type: Transform + - uid: 8461 + components: + - pos: -20.5,33.5 + parent: 4812 + type: Transform + - uid: 8462 + components: + - pos: -20.5,32.5 + parent: 4812 + type: Transform + - uid: 8463 + components: + - pos: -21.5,30.5 + parent: 4812 + type: Transform + - uid: 8464 + components: + - pos: -21.5,31.5 + parent: 4812 + type: Transform + - uid: 8465 + components: + - pos: -20.5,31.5 + parent: 4812 + type: Transform + - uid: 8466 + components: + - pos: -19.5,31.5 + parent: 4812 + type: Transform + - uid: 8467 + components: + - pos: -18.5,31.5 + parent: 4812 + type: Transform + - uid: 8468 + components: + - pos: -17.5,31.5 + parent: 4812 + type: Transform + - uid: 8469 + components: + - pos: -16.5,31.5 + parent: 4812 + type: Transform + - uid: 8470 + components: + - pos: -15.5,31.5 + parent: 4812 + type: Transform + - uid: 8471 + components: + - pos: -14.5,31.5 + parent: 4812 + type: Transform + - uid: 8472 + components: + - pos: -13.5,31.5 + parent: 4812 + type: Transform + - uid: 8473 + components: + - pos: -13.5,32.5 + parent: 4812 + type: Transform + - uid: 8474 + components: + - pos: -14.5,32.5 + parent: 4812 + type: Transform + - uid: 8475 + components: + - pos: -15.5,32.5 + parent: 4812 + type: Transform + - uid: 8476 + components: + - pos: -18.5,32.5 + parent: 4812 + type: Transform + - uid: 8479 + components: + - pos: -19.5,32.5 + parent: 4812 + type: Transform + - uid: 8480 + components: + - pos: -19.5,33.5 + parent: 4812 + type: Transform + - uid: 8483 + components: + - pos: -16.5,33.5 + parent: 4812 + type: Transform + - uid: 8484 + components: + - pos: -15.5,33.5 + parent: 4812 + type: Transform + - uid: 8485 + components: + - pos: -15.5,34.5 + parent: 4812 + type: Transform + - uid: 8486 + components: + - pos: -16.5,34.5 + parent: 4812 + type: Transform + - uid: 8487 + components: + - pos: -17.5,34.5 + parent: 4812 + type: Transform + - uid: 8488 + components: + - pos: -18.5,34.5 + parent: 4812 + type: Transform + - uid: 8489 + components: + - pos: -19.5,34.5 + parent: 4812 + type: Transform + - uid: 8490 + components: + - pos: -18.5,35.5 + parent: 4812 + type: Transform + - uid: 8491 + components: + - pos: -17.5,35.5 + parent: 4812 + type: Transform + - uid: 8492 + components: + - pos: -16.5,35.5 + parent: 4812 + type: Transform + - uid: 8493 + components: + - pos: -17.5,36.5 + parent: 4812 + type: Transform + - uid: 8494 + components: + - pos: -18.5,36.5 + parent: 4812 + type: Transform + - uid: 8495 + components: + - pos: -18.5,37.5 + parent: 4812 + type: Transform + - uid: 8496 + components: + - pos: -18.5,38.5 + parent: 4812 + type: Transform + - uid: 8497 + components: + - pos: -17.5,38.5 + parent: 4812 + type: Transform + - uid: 8498 + components: + - pos: -23.5,30.5 + parent: 4812 + type: Transform + - uid: 8499 + components: + - pos: -23.5,33.5 + parent: 4812 + type: Transform + - uid: 8500 + components: + - pos: -26.5,34.5 + parent: 4812 + type: Transform + - uid: 8501 + components: + - pos: -25.5,34.5 + parent: 4812 + type: Transform + - uid: 8502 + components: + - pos: -24.5,34.5 + parent: 4812 + type: Transform + - uid: 8503 + components: + - pos: -23.5,34.5 + parent: 4812 + type: Transform + - uid: 8504 + components: + - pos: -24.5,35.5 + parent: 4812 + type: Transform + - uid: 8505 + components: + - pos: -25.5,35.5 + parent: 4812 + type: Transform + - uid: 8506 + components: + - pos: -27.5,37.5 + parent: 4812 + type: Transform + - uid: 8507 + components: + - pos: -28.5,37.5 + parent: 4812 + type: Transform + - uid: 8508 + components: + - pos: -29.5,38.5 + parent: 4812 + type: Transform + - uid: 8509 + components: + - pos: -28.5,38.5 + parent: 4812 + type: Transform + - uid: 8510 + components: + - pos: -27.5,38.5 + parent: 4812 + type: Transform + - uid: 8511 + components: + - pos: -26.5,38.5 + parent: 4812 + type: Transform + - uid: 8512 + components: + - pos: -28.5,39.5 + parent: 4812 + type: Transform + - uid: 8513 + components: + - pos: -27.5,39.5 + parent: 4812 + type: Transform + - uid: 8514 + components: + - pos: -26.5,39.5 + parent: 4812 + type: Transform + - uid: 8515 + components: + - pos: -25.5,39.5 + parent: 4812 + type: Transform + - uid: 8516 + components: + - pos: -30.5,34.5 + parent: 4812 + type: Transform + - uid: 8517 + components: + - pos: -31.5,34.5 + parent: 4812 + type: Transform + - uid: 8518 + components: + - pos: -32.5,34.5 + parent: 4812 + type: Transform + - uid: 8519 + components: + - pos: -33.5,34.5 + parent: 4812 + type: Transform + - uid: 8520 + components: + - pos: -34.5,34.5 + parent: 4812 + type: Transform + - uid: 8521 + components: + - pos: -33.5,35.5 + parent: 4812 + type: Transform + - uid: 8522 + components: + - pos: -33.5,36.5 + parent: 4812 + type: Transform + - uid: 8523 + components: + - pos: -32.5,36.5 + parent: 4812 + type: Transform + - uid: 8524 + components: + - pos: -32.5,35.5 + parent: 4812 + type: Transform + - uid: 8525 + components: + - pos: -31.5,35.5 + parent: 4812 + type: Transform + - uid: 9621 + components: + - pos: -42.5,-34.5 + parent: 4812 + type: Transform + - uid: 9622 + components: + - pos: -42.5,-33.5 + parent: 4812 + type: Transform + - uid: 9623 + components: + - pos: -43.5,-33.5 + parent: 4812 + type: Transform + - uid: 9624 + components: + - pos: -43.5,-32.5 + parent: 4812 + type: Transform + - uid: 9630 + components: + - pos: -46.5,-29.5 + parent: 4812 + type: Transform + - uid: 9631 + components: + - pos: -46.5,-30.5 + parent: 4812 + type: Transform + - uid: 9632 + components: + - pos: -47.5,-29.5 + parent: 4812 + type: Transform + - uid: 9633 + components: + - pos: -46.5,-28.5 + parent: 4812 + type: Transform + - uid: 9637 + components: + - pos: -46.5,-26.5 + parent: 4812 + type: Transform + - uid: 9638 + components: + - pos: -39.5,-38.5 + parent: 4812 + type: Transform + - uid: 9639 + components: + - pos: -39.5,-39.5 + parent: 4812 + type: Transform + - uid: 9640 + components: + - pos: -38.5,-39.5 + parent: 4812 + type: Transform + - uid: 9641 + components: + - pos: -34.5,-39.5 + parent: 4812 + type: Transform + - uid: 9642 + components: + - pos: -33.5,-39.5 + parent: 4812 + type: Transform + - uid: 9643 + components: + - pos: -33.5,-40.5 + parent: 4812 + type: Transform + - uid: 10417 + components: + - pos: -53.5,-20.5 + parent: 4812 + type: Transform + - uid: 10418 + components: + - pos: -52.5,-20.5 + parent: 4812 + type: Transform + - uid: 10419 + components: + - pos: -51.5,-20.5 + parent: 4812 + type: Transform + - uid: 10420 + components: + - pos: -50.5,-20.5 + parent: 4812 + type: Transform + - uid: 10421 + components: + - pos: -53.5,-19.5 + parent: 4812 + type: Transform + - uid: 10422 + components: + - pos: -54.5,-19.5 + parent: 4812 + type: Transform + - uid: 10423 + components: + - pos: -55.5,-19.5 + parent: 4812 + type: Transform + - uid: 10424 + components: + - pos: -54.5,-18.5 + parent: 4812 + type: Transform + - uid: 10425 + components: + - pos: -55.5,-18.5 + parent: 4812 + type: Transform + - uid: 10426 + components: + - pos: -56.5,-18.5 + parent: 4812 + type: Transform + - uid: 10427 + components: + - pos: -56.5,-17.5 + parent: 4812 + type: Transform + - uid: 10428 + components: + - pos: -56.5,-16.5 + parent: 4812 + type: Transform + - uid: 10429 + components: + - pos: -56.5,-15.5 + parent: 4812 + type: Transform + - uid: 10430 + components: + - pos: -55.5,-15.5 + parent: 4812 + type: Transform + - uid: 10431 + components: + - pos: -54.5,-15.5 + parent: 4812 + type: Transform + - uid: 10432 + components: + - pos: -53.5,-15.5 + parent: 4812 + type: Transform + - uid: 10433 + components: + - pos: -52.5,-15.5 + parent: 4812 + type: Transform + - uid: 10434 + components: + - pos: -51.5,-15.5 + parent: 4812 + type: Transform + - uid: 10435 + components: + - pos: -50.5,-15.5 + parent: 4812 + type: Transform + - uid: 10436 + components: + - pos: -49.5,-15.5 + parent: 4812 + type: Transform + - uid: 10437 + components: + - pos: -48.5,-15.5 + parent: 4812 + type: Transform + - uid: 10438 + components: + - pos: -47.5,-15.5 + parent: 4812 + type: Transform + - uid: 10439 + components: + - pos: -47.5,-16.5 + parent: 4812 + type: Transform + - uid: 10443 + components: + - pos: -51.5,-16.5 + parent: 4812 + type: Transform + - uid: 10444 + components: + - pos: -52.5,-16.5 + parent: 4812 + type: Transform + - uid: 10447 + components: + - pos: -55.5,-16.5 + parent: 4812 + type: Transform + - uid: 10448 + components: + - pos: -55.5,-17.5 + parent: 4812 + type: Transform + - uid: 10449 + components: + - pos: -54.5,-17.5 + parent: 4812 + type: Transform + - uid: 10452 + components: + - pos: -51.5,-17.5 + parent: 4812 + type: Transform + - uid: 10453 + components: + - pos: -50.5,-17.5 + parent: 4812 + type: Transform + - uid: 10454 + components: + - pos: -49.5,-17.5 + parent: 4812 + type: Transform + - uid: 10455 + components: + - pos: -48.5,-17.5 + parent: 4812 + type: Transform + - uid: 10456 + components: + - pos: -47.5,-17.5 + parent: 4812 + type: Transform + - uid: 10457 + components: + - pos: -50.5,-18.5 + parent: 4812 + type: Transform + - uid: 10458 + components: + - pos: -51.5,-18.5 + parent: 4812 + type: Transform + - uid: 10460 + components: + - pos: -35.5,29.5 + parent: 4812 + type: Transform + - uid: 10461 + components: + - pos: -50.5,-19.5 + parent: 4812 + type: Transform + - uid: 10462 + components: + - pos: -51.5,-19.5 + parent: 4812 + type: Transform + - uid: 10463 + components: + - pos: -36.5,28.5 + parent: 4812 + type: Transform + - uid: 10464 + components: + - pos: -56.5,-14.5 + parent: 4812 + type: Transform + - uid: 10465 + components: + - pos: -56.5,-13.5 + parent: 4812 + type: Transform + - uid: 10466 + components: + - pos: -56.5,-12.5 + parent: 4812 + type: Transform + - uid: 10467 + components: + - pos: -56.5,-11.5 + parent: 4812 + type: Transform + - uid: 10468 + components: + - pos: -56.5,-10.5 + parent: 4812 + type: Transform + - uid: 10469 + components: + - pos: -56.5,-9.5 + parent: 4812 + type: Transform + - uid: 10470 + components: + - pos: -56.5,-8.5 + parent: 4812 + type: Transform + - uid: 10472 + components: + - pos: -57.5,-10.5 + parent: 4812 + type: Transform + - uid: 10473 + components: + - pos: -57.5,-11.5 + parent: 4812 + type: Transform + - uid: 10474 + components: + - pos: -35.5,28.5 + parent: 4812 + type: Transform + - uid: 10475 + components: + - pos: -57.5,-13.5 + parent: 4812 + type: Transform + - uid: 10476 + components: + - pos: -57.5,-14.5 + parent: 4812 + type: Transform + - uid: 10477 + components: + - pos: -57.5,-15.5 + parent: 4812 + type: Transform + - uid: 10478 + components: + - pos: -58.5,-13.5 + parent: 4812 + type: Transform + - uid: 10479 + components: + - pos: -58.5,-12.5 + parent: 4812 + type: Transform + - uid: 10480 + components: + - pos: -58.5,-11.5 + parent: 4812 + type: Transform + - uid: 10481 + components: + - pos: -58.5,-10.5 + parent: 4812 + type: Transform + - uid: 10482 + components: + - pos: -58.5,-9.5 + parent: 4812 + type: Transform + - uid: 10483 + components: + - pos: -56.5,-7.5 + parent: 4812 + type: Transform + - uid: 10484 + components: + - pos: -57.5,-8.5 + parent: 4812 + type: Transform + - uid: 10485 + components: + - pos: -58.5,-8.5 + parent: 4812 + type: Transform + - uid: 10486 + components: + - pos: -49.5,-2.5 + parent: 4812 + type: Transform + - uid: 10926 + components: + - pos: -38.5,14.5 + parent: 4812 + type: Transform + - uid: 10927 + components: + - pos: -38.5,15.5 + parent: 4812 + type: Transform + - uid: 10928 + components: + - pos: -38.5,16.5 + parent: 4812 + type: Transform + - uid: 10929 + components: + - pos: -38.5,17.5 + parent: 4812 + type: Transform + - uid: 10941 + components: + - pos: -33.5,24.5 + parent: 4812 + type: Transform + - uid: 10942 + components: + - pos: -33.5,25.5 + parent: 4812 + type: Transform + - uid: 10943 + components: + - pos: -33.5,26.5 + parent: 4812 + type: Transform + - uid: 10944 + components: + - pos: -33.5,27.5 + parent: 4812 + type: Transform + - uid: 10945 + components: + - pos: -34.5,24.5 + parent: 4812 + type: Transform + - uid: 10947 + components: + - pos: -34.5,26.5 + parent: 4812 + type: Transform + - uid: 10948 + components: + - pos: -34.5,27.5 + parent: 4812 + type: Transform + - uid: 10949 + components: + - pos: -34.5,28.5 + parent: 4812 + type: Transform + - uid: 10950 + components: + - pos: -34.5,29.5 + parent: 4812 + type: Transform + - uid: 10951 + components: + - pos: -34.5,30.5 + parent: 4812 + type: Transform + - uid: 10952 + components: + - pos: -34.5,31.5 + parent: 4812 + type: Transform + - uid: 10953 + components: + - pos: -34.5,32.5 + parent: 4812 + type: Transform + - uid: 10954 + components: + - pos: -34.5,33.5 + parent: 4812 + type: Transform + - uid: 10955 + components: + - pos: -35.5,32.5 + parent: 4812 + type: Transform + - uid: 10956 + components: + - pos: -35.5,31.5 + parent: 4812 + type: Transform + - uid: 10957 + components: + - pos: -35.5,30.5 + parent: 4812 + type: Transform + - uid: 10963 + components: + - pos: -35.5,24.5 + parent: 4812 + type: Transform + - uid: 10965 + components: + - pos: -39.5,15.5 + parent: 4812 + type: Transform + - uid: 10966 + components: + - pos: -39.5,16.5 + parent: 4812 + type: Transform + - uid: 10967 + components: + - pos: -39.5,17.5 + parent: 4812 + type: Transform + - uid: 10969 + components: + - pos: -39.5,19.5 + parent: 4812 + type: Transform + - uid: 10970 + components: + - pos: -39.5,20.5 + parent: 4812 + type: Transform + - uid: 10971 + components: + - pos: -39.5,21.5 + parent: 4812 + type: Transform + - uid: 10972 + components: + - pos: -39.5,22.5 + parent: 4812 + type: Transform + - uid: 10973 + components: + - pos: -39.5,23.5 + parent: 4812 + type: Transform + - uid: 10974 + components: + - pos: -39.5,24.5 + parent: 4812 + type: Transform + - uid: 10975 + components: + - pos: -38.5,24.5 + parent: 4812 + type: Transform + - uid: 10977 + components: + - pos: -36.5,24.5 + parent: 4812 + type: Transform + - uid: 10982 + components: + - pos: -40.5,23.5 + parent: 4812 + type: Transform + - uid: 10983 + components: + - pos: -39.5,18.5 + parent: 4812 + type: Transform + - uid: 10984 + components: + - pos: -36.5,31.5 + parent: 4812 + type: Transform + - uid: 10986 + components: + - pos: -35.5,33.5 + parent: 4812 + type: Transform + - uid: 10987 + components: + - pos: -36.5,33.5 + parent: 4812 + type: Transform + - uid: 10988 + components: + - pos: -37.5,33.5 + parent: 4812 + type: Transform + - uid: 10990 + components: + - pos: -37.5,32.5 + parent: 4812 + type: Transform + - uid: 10991 + components: + - pos: -37.5,31.5 + parent: 4812 + type: Transform + - uid: 10992 + components: + - pos: -37.5,30.5 + parent: 4812 + type: Transform + - uid: 10993 + components: + - pos: -37.5,29.5 + parent: 4812 + type: Transform + - uid: 10994 + components: + - pos: -37.5,28.5 + parent: 4812 + type: Transform + - uid: 10995 + components: + - pos: -37.5,27.5 + parent: 4812 + type: Transform + - uid: 10999 + components: + - pos: -38.5,26.5 + parent: 4812 + type: Transform + - uid: 11000 + components: + - pos: -38.5,27.5 + parent: 4812 + type: Transform + - uid: 11001 + components: + - pos: -38.5,28.5 + parent: 4812 + type: Transform + - uid: 11002 + components: + - pos: -38.5,29.5 + parent: 4812 + type: Transform + - uid: 11003 + components: + - pos: -38.5,30.5 + parent: 4812 + type: Transform + - uid: 11004 + components: + - pos: -38.5,31.5 + parent: 4812 + type: Transform + - uid: 11005 + components: + - pos: -38.5,32.5 + parent: 4812 + type: Transform + - uid: 11009 + components: + - pos: -40.5,17.5 + parent: 4812 + type: Transform + - uid: 11010 + components: + - pos: -40.5,18.5 + parent: 4812 + type: Transform + - uid: 11011 + components: + - pos: -40.5,19.5 + parent: 4812 + type: Transform + - uid: 11012 + components: + - pos: -40.5,20.5 + parent: 4812 + type: Transform + - uid: 11013 + components: + - pos: -40.5,21.5 + parent: 4812 + type: Transform + - uid: 11014 + components: + - pos: -37.5,24.5 + parent: 4812 + type: Transform + - uid: 11016 + components: + - pos: -40.5,24.5 + parent: 4812 + type: Transform + - uid: 11017 + components: + - pos: -40.5,25.5 + parent: 4812 + type: Transform + - uid: 11018 + components: + - pos: -40.5,26.5 + parent: 4812 + type: Transform + - uid: 11019 + components: + - pos: -41.5,21.5 + parent: 4812 + type: Transform + - uid: 11020 + components: + - pos: -41.5,22.5 + parent: 4812 + type: Transform + - uid: 11021 + components: + - pos: -41.5,23.5 + parent: 4812 + type: Transform + - uid: 11022 + components: + - pos: -41.5,24.5 + parent: 4812 + type: Transform + - uid: 11023 + components: + - pos: -41.5,25.5 + parent: 4812 + type: Transform + - uid: 11024 + components: + - pos: -41.5,26.5 + parent: 4812 + type: Transform + - uid: 11025 + components: + - pos: -39.5,25.5 + parent: 4812 + type: Transform + - uid: 11026 + components: + - pos: -39.5,26.5 + parent: 4812 + type: Transform + - uid: 11027 + components: + - pos: -39.5,27.5 + parent: 4812 + type: Transform + - uid: 11028 + components: + - pos: -39.5,28.5 + parent: 4812 + type: Transform + - uid: 11029 + components: + - pos: -39.5,29.5 + parent: 4812 + type: Transform + - uid: 11616 + components: + - pos: 36.5,-30.5 + parent: 4812 + type: Transform + - uid: 11621 + components: + - pos: 36.5,-39.5 + parent: 4812 + type: Transform + - uid: 11622 + components: + - pos: 34.5,-41.5 + parent: 4812 + type: Transform + - uid: 11623 + components: + - pos: 33.5,-41.5 + parent: 4812 + type: Transform + - uid: 11624 + components: + - pos: 32.5,-41.5 + parent: 4812 + type: Transform + - uid: 11625 + components: + - pos: 31.5,-41.5 + parent: 4812 + type: Transform + - uid: 11626 + components: + - pos: 24.5,-39.5 + parent: 4812 + type: Transform + - uid: 11627 + components: + - pos: 25.5,-39.5 + parent: 4812 + type: Transform + - uid: 11628 + components: + - pos: 22.5,-40.5 + parent: 4812 + type: Transform + - uid: 11629 + components: + - pos: 23.5,-40.5 + parent: 4812 + type: Transform + - uid: 11630 + components: + - pos: 23.5,-41.5 + parent: 4812 + type: Transform + - uid: 11631 + components: + - pos: 23.5,-42.5 + parent: 4812 + type: Transform + - uid: 11632 + components: + - pos: 16.5,-40.5 + parent: 4812 + type: Transform + - uid: 11633 + components: + - pos: 16.5,-41.5 + parent: 4812 + type: Transform + - uid: 11634 + components: + - pos: 19.5,-40.5 + parent: 4812 + type: Transform + - uid: 11635 + components: + - pos: 16.5,-42.5 + parent: 4812 + type: Transform + - uid: 11636 + components: + - pos: 17.5,-42.5 + parent: 4812 + type: Transform + - uid: 11637 + components: + - pos: 16.5,-43.5 + parent: 4812 + type: Transform + - uid: 11638 + components: + - pos: 17.5,-43.5 + parent: 4812 + type: Transform + - uid: 11639 + components: + - pos: 18.5,-43.5 + parent: 4812 + type: Transform + - uid: 11640 + components: + - pos: 18.5,-44.5 + parent: 4812 + type: Transform + - uid: 11641 + components: + - pos: 17.5,-44.5 + parent: 4812 + type: Transform + - uid: 11643 + components: + - pos: 15.5,-44.5 + parent: 4812 + type: Transform + - uid: 11644 + components: + - pos: 14.5,-44.5 + parent: 4812 + type: Transform + - uid: 11645 + components: + - pos: 13.5,-44.5 + parent: 4812 + type: Transform + - uid: 11647 + components: + - pos: 12.5,-45.5 + parent: 4812 + type: Transform + - uid: 11648 + components: + - pos: 13.5,-45.5 + parent: 4812 + type: Transform + - uid: 11649 + components: + - pos: 14.5,-45.5 + parent: 4812 + type: Transform + - uid: 11650 + components: + - pos: 15.5,-45.5 + parent: 4812 + type: Transform + - uid: 11651 + components: + - pos: 16.5,-45.5 + parent: 4812 + type: Transform + - uid: 11652 + components: + - pos: 17.5,-45.5 + parent: 4812 + type: Transform + - uid: 11653 + components: + - pos: 12.5,-46.5 + parent: 4812 + type: Transform + - uid: 11654 + components: + - pos: 11.5,-46.5 + parent: 4812 + type: Transform + - uid: 11655 + components: + - pos: 10.5,-46.5 + parent: 4812 + type: Transform + - uid: 11656 + components: + - pos: 9.5,-46.5 + parent: 4812 + type: Transform + - uid: 11657 + components: + - pos: 8.5,-46.5 + parent: 4812 + type: Transform + - uid: 11658 + components: + - pos: 7.5,-46.5 + parent: 4812 + type: Transform + - uid: 11659 + components: + - pos: 5.5,-44.5 + parent: 4812 + type: Transform + - uid: 11660 + components: + - pos: 23.5,-43.5 + parent: 4812 + type: Transform + - uid: 11663 + components: + - pos: 26.5,-38.5 + parent: 4812 + type: Transform + - uid: 11664 + components: + - pos: 24.5,-41.5 + parent: 4812 + type: Transform + - uid: 11665 + components: + - pos: 24.5,-42.5 + parent: 4812 + type: Transform + - uid: 11666 + components: + - pos: 24.5,-43.5 + parent: 4812 + type: Transform + - uid: 11667 + components: + - pos: 24.5,-44.5 + parent: 4812 + type: Transform + - uid: 11668 + components: + - pos: 25.5,-44.5 + parent: 4812 + type: Transform + - uid: 11669 + components: + - pos: 25.5,-43.5 + parent: 4812 + type: Transform + - uid: 11670 + components: + - pos: 25.5,-42.5 + parent: 4812 + type: Transform + - uid: 11679 + components: + - pos: 25.5,-38.5 + parent: 4812 + type: Transform + - uid: 11680 + components: + - pos: 26.5,-43.5 + parent: 4812 + type: Transform + - uid: 11681 + components: + - pos: 26.5,-44.5 + parent: 4812 + type: Transform + - uid: 11682 + components: + - pos: 27.5,-44.5 + parent: 4812 + type: Transform + - uid: 11683 + components: + - pos: 27.5,-43.5 + parent: 4812 + type: Transform + - uid: 11684 + components: + - pos: 24.5,-38.5 + parent: 4812 + type: Transform + - uid: 11686 + components: + - pos: 28.5,-38.5 + parent: 4812 + type: Transform + - uid: 11689 + components: + - pos: 28.5,-43.5 + parent: 4812 + type: Transform + - uid: 11690 + components: + - pos: 28.5,-42.5 + parent: 4812 + type: Transform + - uid: 11691 + components: + - pos: 24.5,-40.5 + parent: 4812 + type: Transform + - uid: 11695 + components: + - pos: 29.5,-42.5 + parent: 4812 + type: Transform + - uid: 11696 + components: + - pos: 30.5,-42.5 + parent: 4812 + type: Transform + - uid: 11697 + components: + - pos: 29.5,-43.5 + parent: 4812 + type: Transform + - uid: 11698 + components: + - pos: 30.5,-43.5 + parent: 4812 + type: Transform + - uid: 11699 + components: + - pos: 31.5,-42.5 + parent: 4812 + type: Transform + - uid: 11700 + components: + - pos: 32.5,-42.5 + parent: 4812 + type: Transform + - uid: 11701 + components: + - pos: 33.5,-42.5 + parent: 4812 + type: Transform + - uid: 11702 + components: + - pos: 36.5,-40.5 + parent: 4812 + type: Transform + - uid: 11703 + components: + - pos: 37.5,-39.5 + parent: 4812 + type: Transform + - uid: 11704 + components: + - pos: 38.5,-38.5 + parent: 4812 + type: Transform + - uid: 11705 + components: + - pos: 35.5,-41.5 + parent: 4812 + type: Transform + - uid: 12144 + components: + - pos: -48.5,-25.5 + parent: 4812 + type: Transform +- proto: AsteroidRockMining + entities: + - uid: 12146 + components: + - pos: -52.5,-3.5 + parent: 4812 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 2781 + components: + - pos: 23.5,25.5 + parent: 4812 + type: Transform + - uid: 2845 + components: + - pos: 23.5,27.5 + parent: 4812 + type: Transform + - uid: 3260 + components: + - pos: 34.5,-7.5 + parent: 4812 + type: Transform + - uid: 3263 + components: + - pos: 34.5,0.5 + parent: 4812 + type: Transform + - uid: 3423 + components: + - pos: 34.5,-5.5 + parent: 4812 + type: Transform + - uid: 3424 + components: + - pos: 34.5,2.5 + parent: 4812 + type: Transform + - uid: 3455 + components: + - pos: 8.5,-6.5 + parent: 4812 + type: Transform + - uid: 3456 + components: + - pos: 4.5,-4.5 + parent: 4812 + type: Transform + - uid: 3766 + components: + - pos: -13.5,-50.5 + parent: 4812 + type: Transform + - uid: 3767 + components: + - pos: -8.5,-50.5 + parent: 4812 + type: Transform + - uid: 3768 + components: + - pos: -8.5,-43.5 + parent: 4812 + type: Transform + - uid: 3769 + components: + - pos: -13.5,-43.5 + parent: 4812 + type: Transform +- proto: AtmosFixBlockerMarker + entities: + - uid: 11893 + components: + - pos: -51.5,5.5 + parent: 4812 + type: Transform + - uid: 11894 + components: + - pos: -52.5,5.5 + parent: 4812 + type: Transform + - uid: 11895 + components: + - pos: -53.5,5.5 + parent: 4812 + type: Transform + - uid: 11896 + components: + - pos: -53.5,7.5 + parent: 4812 + type: Transform + - uid: 11897 + components: + - pos: -52.5,7.5 + parent: 4812 + type: Transform + - uid: 11898 + components: + - pos: -51.5,7.5 + parent: 4812 + type: Transform + - uid: 11899 + components: + - pos: -51.5,11.5 + parent: 4812 + type: Transform + - uid: 11900 + components: + - pos: -52.5,11.5 + parent: 4812 + type: Transform + - uid: 11901 + components: + - pos: -53.5,11.5 + parent: 4812 + type: Transform + - uid: 11902 + components: + - pos: -45.5,16.5 + parent: 4812 + type: Transform + - uid: 11903 + components: + - pos: -45.5,17.5 + parent: 4812 + type: Transform + - uid: 11904 + components: + - pos: -44.5,17.5 + parent: 4812 + type: Transform + - uid: 11905 + components: + - pos: -44.5,16.5 + parent: 4812 + type: Transform + - uid: 11906 + components: + - pos: -43.5,16.5 + parent: 4812 + type: Transform + - uid: 11907 + components: + - pos: -43.5,17.5 + parent: 4812 + type: Transform +- proto: AtmosFixFreezerMarker + entities: + - uid: 1569 + components: + - pos: 5.5,-7.5 + parent: 4812 + type: Transform + - uid: 3213 + components: + - pos: 6.5,-6.5 + parent: 4812 + type: Transform + - uid: 3214 + components: + - pos: 5.5,-6.5 + parent: 4812 + type: Transform + - uid: 3215 + components: + - pos: 4.5,-6.5 + parent: 4812 + type: Transform + - uid: 3222 + components: + - pos: 3.5,-6.5 + parent: 4812 + type: Transform + - uid: 3384 + components: + - pos: 6.5,-7.5 + parent: 4812 + type: Transform + - uid: 3385 + components: + - pos: 7.5,-5.5 + parent: 4812 + type: Transform + - uid: 3413 + components: + - pos: 7.5,-7.5 + parent: 4812 + type: Transform + - uid: 3414 + components: + - pos: 7.5,-6.5 + parent: 4812 + type: Transform + - uid: 3415 + components: + - pos: 5.5,-5.5 + parent: 4812 + type: Transform + - uid: 3416 + components: + - pos: 4.5,-5.5 + parent: 4812 + type: Transform + - uid: 3417 + components: + - pos: 3.5,-5.5 + parent: 4812 + type: Transform + - uid: 3418 + components: + - pos: 2.5,-5.5 + parent: 4812 + type: Transform + - uid: 3438 + components: + - pos: 2.5,-6.5 + parent: 4812 + type: Transform + - uid: 3464 + components: + - pos: 6.5,-5.5 + parent: 4812 + type: Transform +- proto: AtmosFixNitrogenMarker + entities: + - uid: 11887 + components: + - pos: -51.5,1.5 + parent: 4812 + type: Transform + - uid: 11888 + components: + - pos: -52.5,1.5 + parent: 4812 + type: Transform + - uid: 11889 + components: + - pos: -53.5,1.5 + parent: 4812 + type: Transform +- proto: AtmosFixOxygenMarker + entities: + - uid: 11890 + components: + - pos: -51.5,3.5 + parent: 4812 + type: Transform + - uid: 11891 + components: + - pos: -52.5,3.5 + parent: 4812 + type: Transform + - uid: 11892 + components: + - pos: -53.5,3.5 + parent: 4812 + type: Transform +- proto: AtmosFixPlasmaMarker + entities: + - uid: 11908 + components: + - pos: -51.5,9.5 + parent: 4812 + type: Transform + - uid: 11909 + components: + - pos: -52.5,9.5 + parent: 4812 + type: Transform + - uid: 11910 + components: + - pos: -53.5,9.5 + parent: 4812 + type: Transform +- proto: Autolathe + entities: + - uid: 3231 + components: + - pos: 20.5,18.5 + parent: 4812 + type: Transform + - materialWhiteList: + - Steel + - Plastic + - Wood + - Glass + - Cloth + type: MaterialStorage + - uid: 6183 + components: + - pos: 3.5,-16.5 + parent: 4812 + type: Transform + - materialWhiteList: + - Steel + - Plastic + - Wood + - Glass + - Cloth + type: MaterialStorage + - uid: 10700 + components: + - pos: -28.5,-7.5 + parent: 4812 + type: Transform + - materialWhiteList: + - Steel + - Plastic + - Wood + - Glass + - Cloth + type: MaterialStorage +- proto: BananaPhoneInstrument + entities: + - uid: 12492 + components: + - pos: -10.731333,1.1743605 + parent: 4812 + type: Transform +- proto: BannerRevolution + entities: + - uid: 10459 + components: + - pos: -57.5,-12.5 + parent: 4812 + type: Transform +- proto: Barricade + entities: + - uid: 8482 + components: + - pos: -50.5,-16.5 + parent: 4812 + type: Transform + - uid: 8860 + components: + - pos: -30.5,-26.5 + parent: 4812 + type: Transform + - uid: 10524 + components: + - pos: -38.5,-26.5 + parent: 4812 + type: Transform +- proto: BarSign + entities: + - uid: 326 + components: + - desc: Drink till you puke and/or break the laws of reality! + name: The Loose Goose + type: MetaData + - pos: 2.5,10.5 + parent: 4812 + type: Transform + - current: Goose + type: BarSign + - uid: 10522 + components: + - desc: All right, buddy. I think you've had EI NATH. Time to get a cab. + name: The Ale' Nath + type: MetaData + - pos: -32.5,-26.5 + parent: 4812 + type: Transform + - current: TheAleNath + type: BarSign +- proto: Beaker + entities: + - uid: 9030 + components: + - pos: -40.278786,-34.952698 + parent: 4812 + type: Transform +- proto: Bed + entities: + - uid: 261 + components: + - pos: -17.5,-0.5 + parent: 4812 + type: Transform + - uid: 1256 + components: + - pos: -17.5,4.5 + parent: 4812 + type: Transform + - uid: 1649 + components: + - pos: 7.5,9.5 + parent: 4812 + type: Transform + - uid: 2499 + components: + - pos: 6.5,29.5 + parent: 4812 + type: Transform + - uid: 2580 + components: + - pos: -11.5,29.5 + parent: 4812 + type: Transform + - uid: 3268 + components: + - pos: -15.5,-28.5 + parent: 4812 + type: Transform + - uid: 3401 + components: + - pos: 17.5,34.5 + parent: 4812 + type: Transform + - uid: 7033 + components: + - pos: -27.5,-36.5 + parent: 4812 + type: Transform + - uid: 7128 + components: + - pos: -30.5,-21.5 + parent: 4812 + type: Transform + - uid: 7455 + components: + - pos: -24.5,-28.5 + parent: 4812 + type: Transform + - uid: 7575 + components: + - pos: -20.5,-20.5 + parent: 4812 + type: Transform + - uid: 8249 + components: + - pos: -22.5,28.5 + parent: 4812 + type: Transform + - uid: 8350 + components: + - pos: -25.5,20.5 + parent: 4812 + type: Transform + - uid: 8351 + components: + - pos: -25.5,17.5 + parent: 4812 + type: Transform + - uid: 8360 + components: + - pos: -25.5,27.5 + parent: 4812 + type: Transform + - uid: 8361 + components: + - pos: -29.5,27.5 + parent: 4812 + type: Transform + - uid: 11358 + components: + - pos: 37.5,-34.5 + parent: 4812 + type: Transform + - uid: 12162 + components: + - pos: -25.5,-20.5 + parent: 4812 + type: Transform +- proto: BedsheetCaptain + entities: + - uid: 2582 + components: + - pos: -11.5,29.5 + parent: 4812 + type: Transform +- proto: BedsheetCMO + entities: + - uid: 7456 + components: + - pos: -24.5,-28.5 + parent: 4812 + type: Transform +- proto: BedsheetCult + entities: + - uid: 7034 + components: + - pos: -27.5,-36.5 + parent: 4812 + type: Transform +- proto: BedsheetHOP + entities: + - uid: 2500 + components: + - pos: 6.5,29.5 + parent: 4812 + type: Transform +- proto: BedsheetHOS + entities: + - uid: 8250 + components: + - pos: -22.5,28.5 + parent: 4812 + type: Transform +- proto: BedsheetMedical + entities: + - uid: 3285 + components: + - pos: -15.5,-28.5 + parent: 4812 + type: Transform + - uid: 7682 + components: + - pos: -14.5,-23.5 + parent: 4812 + type: Transform + - uid: 7683 + components: + - pos: -17.5,-23.5 + parent: 4812 + type: Transform + - uid: 7684 + components: + - pos: -20.5,-20.5 + parent: 4812 + type: Transform +- proto: BedsheetOrange + entities: + - uid: 8352 + components: + - pos: -25.5,17.5 + parent: 4812 + type: Transform + - uid: 8353 + components: + - pos: -25.5,20.5 + parent: 4812 + type: Transform + - uid: 8362 + components: + - pos: -29.5,27.5 + parent: 4812 + type: Transform + - uid: 8363 + components: + - pos: -25.5,27.5 + parent: 4812 + type: Transform +- proto: BedsheetQM + entities: + - uid: 3377 + components: + - pos: 17.5,34.5 + parent: 4812 + type: Transform +- proto: BedsheetSpawner + entities: + - uid: 260 + components: + - pos: -17.5,-0.5 + parent: 4812 + type: Transform + - uid: 1255 + components: + - pos: -17.5,4.5 + parent: 4812 + type: Transform + - uid: 1650 + components: + - pos: 7.5,9.5 + parent: 4812 + type: Transform + - uid: 7129 + components: + - pos: -30.5,-21.5 + parent: 4812 + type: Transform + - uid: 11359 + components: + - pos: 37.5,-34.5 + parent: 4812 + type: Transform + - uid: 12163 + components: + - pos: -25.5,-20.5 + parent: 4812 + type: Transform +- proto: BikeHorn + entities: + - uid: 1725 + components: + - pos: -10.612676,1.3979684 + parent: 4812 + type: Transform + - uid: 9615 + components: + - flags: InContainer + type: MetaData + - parent: 2709 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: BikeHornInstrument + entities: + - uid: 1726 + components: + - pos: -10.503301,0.7729684 + parent: 4812 + type: Transform +- proto: BlastDoor + entities: + - uid: 729 + components: + - pos: 8.5,18.5 + parent: 4812 + type: Transform + - uid: 771 + components: + - pos: -11.5,18.5 + parent: 4812 + type: Transform + - uid: 2864 + components: + - pos: 23.5,24.5 + parent: 4812 + type: Transform + - links: + - 2938 + type: DeviceLinkSink + - uid: 2866 + components: + - pos: 23.5,28.5 + parent: 4812 + type: Transform + - links: + - 2938 + type: DeviceLinkSink + - uid: 5573 + components: + - pos: 21.5,-30.5 + parent: 4812 + type: Transform + - links: + - 6690 + type: DeviceLinkSink + - uid: 5574 + components: + - pos: 21.5,-29.5 + parent: 4812 + type: Transform + - links: + - 6690 + type: DeviceLinkSink + - uid: 5575 + components: + - pos: 21.5,-28.5 + parent: 4812 + type: Transform + - links: + - 6690 + type: DeviceLinkSink + - uid: 5794 + components: + - pos: 2.5,-27.5 + parent: 4812 + type: Transform + - links: + - 6218 + type: DeviceLinkSink + - uid: 5795 + components: + - pos: 2.5,-26.5 + parent: 4812 + type: Transform + - links: + - 6218 + type: DeviceLinkSink + - uid: 5796 + components: + - pos: 2.5,-25.5 + parent: 4812 + type: Transform + - links: + - 6218 + type: DeviceLinkSink + - uid: 9496 + components: + - pos: -44.5,18.5 + parent: 4812 + type: Transform + - links: + - 9504 + type: DeviceLinkSink +- proto: BlockGameArcade + entities: + - uid: 4549 + components: + - pos: 27.5,-0.5 + parent: 4812 + type: Transform + - uid: 5026 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-47.5 + parent: 4812 + type: Transform + - uid: 8399 + components: + - pos: -26.5,32.5 + parent: 4812 + type: Transform + - uid: 10853 + components: + - pos: -22.5,5.5 + parent: 4812 + type: Transform +- proto: BookAtmosAirAlarms + entities: + - uid: 865 + components: + - pos: -22.624014,-17.30092 + parent: 4812 + type: Transform +- proto: BookAtmosDistro + entities: + - uid: 10450 + components: + - pos: -22.389639,-17.51967 + parent: 4812 + type: Transform +- proto: BookAtmosVentsMore + entities: + - uid: 12467 + components: + - pos: -25.608389,-18.347795 + parent: 4812 + type: Transform +- proto: BookAtmosWaste + entities: + - uid: 12468 + components: + - pos: -25.436514,-18.48842 + parent: 4812 + type: Transform +- proto: BookDetective + entities: + - uid: 5387 + components: + - pos: 17.568647,-11.417019 + parent: 4812 + type: Transform +- proto: BookEscalation + entities: + - uid: 12421 + components: + - pos: -30.59653,-19.308746 + parent: 4812 + type: Transform +- proto: BookEscalationSecurity + entities: + - uid: 10446 + components: + - pos: -30.424656,-19.480621 + parent: 4812 + type: Transform +- proto: BookRandom + entities: + - uid: 7161 + components: + - pos: -30.557493,-18.387486 + parent: 4812 + type: Transform +- proto: BooksBag + entities: + - uid: 12419 + components: + - pos: -31.928976,-23.436365 + parent: 4812 + type: Transform +- proto: Bookshelf + entities: + - uid: 1952 + components: + - pos: -13.5,25.5 + parent: 4812 + type: Transform + - uid: 5374 + components: + - pos: 20.5,-18.5 + parent: 4812 + type: Transform + - uid: 7000 + components: + - pos: -13.5,-32.5 + parent: 4812 + type: Transform + - uid: 7001 + components: + - pos: -13.5,-36.5 + parent: 4812 + type: Transform + - uid: 7005 + components: + - pos: -24.5,-38.5 + parent: 4812 + type: Transform + - uid: 7130 + components: + - pos: -32.5,-22.5 + parent: 4812 + type: Transform + - uid: 7131 + components: + - pos: -32.5,-21.5 + parent: 4812 + type: Transform + - uid: 7172 + components: + - pos: -24.5,-39.5 + parent: 4812 + type: Transform + - uid: 8391 + components: + - pos: -25.5,32.5 + parent: 4812 + type: Transform + - uid: 8392 + components: + - pos: -25.5,29.5 + parent: 4812 + type: Transform + - uid: 11352 + components: + - pos: 36.5,-32.5 + parent: 4812 + type: Transform +- proto: BookshelfFilled + entities: + - uid: 4816 + components: + - pos: -27.5,-20.5 + parent: 4812 + type: Transform + - uid: 4817 + components: + - pos: -27.5,-18.5 + parent: 4812 + type: Transform + - uid: 4818 + components: + - pos: -24.5,-18.5 + parent: 4812 + type: Transform + - uid: 4819 + components: + - pos: -24.5,-20.5 + parent: 4812 + type: Transform + - uid: 4820 + components: + - pos: -23.5,-20.5 + parent: 4812 + type: Transform + - uid: 4821 + components: + - pos: -22.5,-20.5 + parent: 4812 + type: Transform + - uid: 4822 + components: + - pos: -23.5,-18.5 + parent: 4812 + type: Transform + - uid: 4823 + components: + - pos: -26.5,-20.5 + parent: 4812 + type: Transform + - uid: 4824 + components: + - pos: -26.5,-18.5 + parent: 4812 + type: Transform + - uid: 4825 + components: + - pos: -22.5,-18.5 + parent: 4812 + type: Transform + - uid: 4835 + components: + - pos: -23.5,-14.5 + parent: 4812 + type: Transform + - uid: 4836 + components: + - pos: -22.5,-14.5 + parent: 4812 + type: Transform + - uid: 4837 + components: + - pos: -22.5,-16.5 + parent: 4812 + type: Transform + - uid: 4839 + components: + - pos: -29.5,-19.5 + parent: 4812 + type: Transform + - uid: 4840 + components: + - pos: -29.5,-18.5 + parent: 4812 + type: Transform + - uid: 4841 + components: + - pos: -29.5,-17.5 + parent: 4812 + type: Transform +- proto: BoozeDispenser + entities: + - uid: 365 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,9.5 + parent: 4812 + type: Transform + - uid: 10493 + components: + - pos: -36.5,-22.5 + parent: 4812 + type: Transform +- proto: BorgCharger + entities: + - uid: 1727 + components: + - pos: 5.5,47.5 + parent: 4812 + type: Transform + - uid: 2492 + components: + - pos: 6.5,47.5 + parent: 4812 + type: Transform + - uid: 6168 + components: + - pos: 3.5,-28.5 + parent: 4812 + type: Transform +- proto: BoxBeaker + entities: + - uid: 6635 + components: + - pos: -8.433923,-18.34037 + parent: 4812 + type: Transform +- proto: BoxBeanbag + entities: + - uid: 1656 + components: + - pos: 7.497552,8.611126 + parent: 4812 + type: Transform +- proto: BoxBodyBag + entities: + - uid: 4927 + components: + - pos: -18.4054,-14.319918 + parent: 4812 + type: Transform +- proto: BoxFlashbang + entities: + - uid: 8368 + components: + - pos: -36.5,17.5 + parent: 4812 + type: Transform + - uid: 8430 + components: + - pos: -37.645676,12.776339 + parent: 4812 + type: Transform +- proto: BoxFolderBlack + entities: + - uid: 2519 + components: + - pos: 8.55219,26.460049 + parent: 4812 + type: Transform + - uid: 2724 + components: + - name: secret documents + type: MetaData + - pos: -5.51737,26.194775 + parent: 4812 + type: Transform +- proto: BoxFolderBlue + entities: + - uid: 2518 + components: + - pos: 8.45844,26.553799 + parent: 4812 + type: Transform + - uid: 2685 + components: + - pos: 1.5282507,34.656113 + parent: 4812 + type: Transform +- proto: BoxFolderGrey + entities: + - uid: 6411 + components: + - pos: -0.43434072,-19.465488 + parent: 4812 + type: Transform +- proto: BoxFolderRed + entities: + - uid: 2517 + components: + - pos: 8.33344,26.616299 + parent: 4812 + type: Transform + - uid: 4575 + components: + - pos: 28.5,1.5 + parent: 4812 + type: Transform + - uid: 8267 + components: + - pos: -21.5,23.5 + parent: 4812 + type: Transform + - uid: 8295 + components: + - pos: -19.475779,17.57452 + parent: 4812 + type: Transform +- proto: BoxFolderWhite + entities: + - uid: 6637 + components: + - pos: -11.521093,-19.541773 + parent: 4812 + type: Transform +- proto: BoxFolderYellow + entities: + - uid: 3276 + components: + - pos: 14.429598,18.642262 + parent: 4812 + type: Transform + - uid: 3705 + components: + - pos: 15.550373,35.549133 + parent: 4812 + type: Transform + - uid: 4576 + components: + - pos: 28.5,-6.5 + parent: 4812 + type: Transform +- proto: BoxHandcuff + entities: + - uid: 8369 + components: + - pos: -36.509842,17.041077 + parent: 4812 + type: Transform + - uid: 8431 + components: + - pos: -37.489426,12.635714 + parent: 4812 + type: Transform +- proto: BoxLatexGloves + entities: + - uid: 9029 + components: + - pos: -40.466286,-35.483948 + parent: 4812 + type: Transform +- proto: BoxLightMixed + entities: + - uid: 1496 + components: + - pos: -23.513304,-6.9524465 + parent: 4812 + type: Transform + - uid: 1678 + components: + - pos: 3.4673066,14.577467 + parent: 4812 + type: Transform + - uid: 8599 + components: + - pos: -18.992748,10.00374 + parent: 4812 + type: Transform + - uid: 10528 + components: + - pos: -41.52028,-30.431274 + parent: 4812 + type: Transform + - uid: 10712 + components: + - pos: -31.22427,-7.3718886 + parent: 4812 + type: Transform + - uid: 11329 + components: + - pos: 24.509838,-35.436974 + parent: 4812 + type: Transform +- proto: BoxMouthSwab + entities: + - uid: 12518 + components: + - pos: -40.434937,-35.118546 + parent: 4812 + type: Transform +- proto: BoxPillCanister + entities: + - uid: 6636 + components: + - pos: -8.489843,-18.166773 + parent: 4812 + type: Transform +- proto: BoxShotgunIncendiary + entities: + - uid: 12055 + components: + - pos: -35.55101,19.647282 + parent: 4812 + type: Transform +- proto: BoxSterileMask + entities: + - uid: 9028 + components: + - pos: -40.66941,-35.374573 + parent: 4812 + type: Transform +- proto: BoxSyringe + entities: + - uid: 9031 + components: + - pos: -40.247536,-35.390198 + parent: 4812 + type: Transform +- proto: BoxZiptie + entities: + - uid: 8370 + components: + - pos: -36.494217,16.619202 + parent: 4812 + type: Transform + - uid: 8432 + components: + - pos: -37.301926,12.401339 + parent: 4812 + type: Transform +- proto: BrbSign + entities: + - uid: 9086 + components: + - pos: 5.1968718,29.290854 + parent: 4812 + type: Transform +- proto: BriefcaseBrownFilled + entities: + - uid: 5384 + components: + - pos: 19.508135,-18.292694 + parent: 4812 + type: Transform + - uid: 8277 + components: + - pos: -16.540533,16.683895 + parent: 4812 + type: Transform + - uid: 9079 + components: + - pos: -30.580097,-29.217686 + parent: 4812 + type: Transform +- proto: BrigTimer + entities: + - uid: 4810 + components: + - pos: -27.5,18.5 + parent: 4812 + type: Transform + - linkedPorts: + 7786: + - Start: Close + - Timer: AutoClose + - Timer: Open + type: DeviceLinkSource + - uid: 4811 + components: + - pos: -27.5,15.5 + parent: 4812 + type: Transform + - linkedPorts: + 7785: + - Start: Close + - Timer: AutoClose + - Timer: Open + type: DeviceLinkSource +- proto: Bucket + entities: + - uid: 1477 + components: + - pos: -16.468277,-7.2739778 + parent: 4812 + type: Transform + - uid: 1497 + components: + - pos: -23.720804,-7.615172 + parent: 4812 + type: Transform + - uid: 1499 + components: + - pos: -20.513304,-8.561821 + parent: 4812 + type: Transform + - uid: 8390 + components: + - pos: -30.607666,31.438156 + parent: 4812 + type: Transform + - uid: 9617 + components: + - pos: -43.435364,-28.50291 + parent: 4812 + type: Transform + - uid: 11958 + components: + - pos: -10.295721,17.222569 + parent: 4812 + type: Transform +- proto: CableApcExtension + entities: + - uid: 258 + components: + - pos: -13.5,2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 916 + components: + - pos: 7.5,2.5 + parent: 4812 + type: Transform + - uid: 1125 + components: + - pos: -8.5,-2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1126 + components: + - pos: -8.5,-3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1127 + components: + - pos: -9.5,-3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1128 + components: + - pos: -10.5,-3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1129 + components: + - pos: -10.5,-4.5 + parent: 4812 + type: Transform + - uid: 1130 + components: + - pos: -10.5,-5.5 + parent: 4812 + type: Transform + - uid: 1131 + components: + - pos: -10.5,-6.5 + parent: 4812 + type: Transform + - uid: 1132 + components: + - pos: -10.5,-7.5 + parent: 4812 + type: Transform + - uid: 1133 + components: + - pos: -10.5,-8.5 + parent: 4812 + type: Transform + - uid: 1134 + components: + - pos: -10.5,-9.5 + parent: 4812 + type: Transform + - uid: 1135 + components: + - pos: -11.5,-6.5 + parent: 4812 + type: Transform + - uid: 1136 + components: + - pos: -12.5,-6.5 + parent: 4812 + type: Transform + - uid: 1137 + components: + - pos: -13.5,-6.5 + parent: 4812 + type: Transform + - uid: 1138 + components: + - pos: -14.5,-6.5 + parent: 4812 + type: Transform + - uid: 1139 + components: + - pos: -15.5,-6.5 + parent: 4812 + type: Transform + - uid: 1140 + components: + - pos: -16.5,-6.5 + parent: 4812 + type: Transform + - uid: 1141 + components: + - pos: -17.5,-6.5 + parent: 4812 + type: Transform + - uid: 1142 + components: + - pos: -17.5,-7.5 + parent: 4812 + type: Transform + - uid: 1143 + components: + - pos: -17.5,-8.5 + parent: 4812 + type: Transform + - uid: 1144 + components: + - pos: -17.5,-9.5 + parent: 4812 + type: Transform + - uid: 1145 + components: + - pos: -11.5,-8.5 + parent: 4812 + type: Transform + - uid: 1146 + components: + - pos: -12.5,-8.5 + parent: 4812 + type: Transform + - uid: 1147 + components: + - pos: -13.5,-8.5 + parent: 4812 + type: Transform + - uid: 1148 + components: + - pos: -14.5,-8.5 + parent: 4812 + type: Transform + - uid: 1149 + components: + - pos: -15.5,-8.5 + parent: 4812 + type: Transform + - uid: 1150 + components: + - pos: -16.5,-8.5 + parent: 4812 + type: Transform + - uid: 1151 + components: + - pos: -9.5,-6.5 + parent: 4812 + type: Transform + - uid: 1152 + components: + - pos: -8.5,-6.5 + parent: 4812 + type: Transform + - uid: 1153 + components: + - pos: -7.5,-6.5 + parent: 4812 + type: Transform + - uid: 1154 + components: + - pos: -8.5,-1.5 + parent: 4812 + type: Transform + - uid: 1155 + components: + - pos: -8.5,-0.5 + parent: 4812 + type: Transform + - uid: 1156 + components: + - pos: -8.5,0.5 + parent: 4812 + type: Transform + - uid: 1157 + components: + - pos: -8.5,1.5 + parent: 4812 + type: Transform + - uid: 1158 + components: + - pos: -8.5,2.5 + parent: 4812 + type: Transform + - uid: 1159 + components: + - pos: -8.5,3.5 + parent: 4812 + type: Transform + - uid: 1160 + components: + - pos: -8.5,4.5 + parent: 4812 + type: Transform + - uid: 1161 + components: + - pos: -8.5,5.5 + parent: 4812 + type: Transform + - uid: 1162 + components: + - pos: -8.5,6.5 + parent: 4812 + type: Transform + - uid: 1163 + components: + - pos: -8.5,7.5 + parent: 4812 + type: Transform + - uid: 1164 + components: + - pos: -8.5,8.5 + parent: 4812 + type: Transform + - uid: 1165 + components: + - pos: -7.5,-0.5 + parent: 4812 + type: Transform + - uid: 1166 + components: + - pos: -9.5,-0.5 + parent: 4812 + type: Transform + - uid: 1167 + components: + - pos: -9.5,4.5 + parent: 4812 + type: Transform + - uid: 1168 + components: + - pos: -9.5,8.5 + parent: 4812 + type: Transform + - uid: 1169 + components: + - pos: -11.5,-3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1170 + components: + - pos: -12.5,-3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1171 + components: + - pos: -12.5,-2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1172 + components: + - pos: -12.5,-1.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1173 + components: + - pos: -12.5,1.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1174 + components: + - pos: -12.5,2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1175 + components: + - pos: -12.5,3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1176 + components: + - pos: -12.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1177 + components: + - pos: -13.5,-3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1178 + components: + - pos: -14.5,-3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1179 + components: + - pos: -15.5,-3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1180 + components: + - pos: -16.5,-3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1181 + components: + - pos: -17.5,-3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1182 + components: + - pos: -18.5,-3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1183 + components: + - pos: -19.5,-3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1184 + components: + - pos: -20.5,-3.5 + parent: 4812 + type: Transform + - uid: 1185 + components: + - pos: -20.5,-4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1186 + components: + - pos: -21.5,-4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1187 + components: + - pos: -21.5,-5.5 + parent: 4812 + type: Transform + - uid: 1188 + components: + - pos: -21.5,-6.5 + parent: 4812 + type: Transform + - uid: 1189 + components: + - pos: -21.5,-7.5 + parent: 4812 + type: Transform + - uid: 1190 + components: + - pos: -21.5,-8.5 + parent: 4812 + type: Transform + - uid: 1191 + components: + - pos: -22.5,-7.5 + parent: 4812 + type: Transform + - uid: 1192 + components: + - pos: -7.5,-3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1193 + components: + - pos: -6.5,-3.5 + parent: 4812 + type: Transform + - uid: 1194 + components: + - pos: -5.5,-3.5 + parent: 4812 + type: Transform + - uid: 1195 + components: + - pos: -4.5,-3.5 + parent: 4812 + type: Transform + - uid: 1196 + components: + - pos: -4.5,-4.5 + parent: 4812 + type: Transform + - uid: 1197 + components: + - pos: -4.5,-5.5 + parent: 4812 + type: Transform + - uid: 1198 + components: + - pos: -4.5,-6.5 + parent: 4812 + type: Transform + - uid: 1199 + components: + - pos: -4.5,-7.5 + parent: 4812 + type: Transform + - uid: 1200 + components: + - pos: -3.5,-7.5 + parent: 4812 + type: Transform + - uid: 1201 + components: + - pos: -2.5,-7.5 + parent: 4812 + type: Transform + - uid: 1202 + components: + - pos: -2.5,-8.5 + parent: 4812 + type: Transform + - uid: 1203 + components: + - pos: -4.5,-2.5 + parent: 4812 + type: Transform + - uid: 1204 + components: + - pos: -4.5,-1.5 + parent: 4812 + type: Transform + - uid: 1205 + components: + - pos: -4.5,-0.5 + parent: 4812 + type: Transform + - uid: 1206 + components: + - pos: -4.5,0.5 + parent: 4812 + type: Transform + - uid: 1207 + components: + - pos: -4.5,1.5 + parent: 4812 + type: Transform + - uid: 1208 + components: + - pos: -4.5,2.5 + parent: 4812 + type: Transform + - uid: 1209 + components: + - pos: -4.5,3.5 + parent: 4812 + type: Transform + - uid: 1210 + components: + - pos: -4.5,4.5 + parent: 4812 + type: Transform + - uid: 1211 + components: + - pos: -4.5,5.5 + parent: 4812 + type: Transform + - uid: 1212 + components: + - pos: -4.5,6.5 + parent: 4812 + type: Transform + - uid: 1213 + components: + - pos: -4.5,7.5 + parent: 4812 + type: Transform + - uid: 1214 + components: + - pos: -4.5,8.5 + parent: 4812 + type: Transform + - uid: 1215 + components: + - pos: -4.5,9.5 + parent: 4812 + type: Transform + - uid: 1216 + components: + - pos: -12.5,14.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1217 + components: + - pos: -12.5,15.5 + parent: 4812 + type: Transform + - uid: 1218 + components: + - pos: -12.5,16.5 + parent: 4812 + type: Transform + - uid: 1219 + components: + - pos: -12.5,17.5 + parent: 4812 + type: Transform + - uid: 1220 + components: + - pos: -12.5,14.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1221 + components: + - pos: -12.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1222 + components: + - pos: -12.5,12.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1223 + components: + - pos: -12.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1224 + components: + - pos: -12.5,10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1225 + components: + - pos: -13.5,10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1226 + components: + - pos: -14.5,10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1227 + components: + - pos: -15.5,10.5 + parent: 4812 + type: Transform + - uid: 1228 + components: + - pos: -17.5,10.5 + parent: 4812 + type: Transform + - uid: 1229 + components: + - pos: -18.5,10.5 + parent: 4812 + type: Transform + - uid: 1230 + components: + - pos: -16.5,10.5 + parent: 4812 + type: Transform + - uid: 1231 + components: + - pos: -19.5,10.5 + parent: 4812 + type: Transform + - uid: 1232 + components: + - pos: -20.5,10.5 + parent: 4812 + type: Transform + - uid: 1233 + components: + - pos: -18.5,9.5 + parent: 4812 + type: Transform + - uid: 1234 + components: + - pos: -18.5,8.5 + parent: 4812 + type: Transform + - uid: 1235 + components: + - pos: -18.5,7.5 + parent: 4812 + type: Transform + - uid: 1236 + components: + - pos: -12.5,5.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1237 + components: + - pos: -12.5,6.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1238 + components: + - pos: -12.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1239 + components: + - pos: -12.5,8.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1240 + components: + - pos: -12.5,9.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1241 + components: + - pos: -14.5,2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1242 + components: + - pos: -15.5,2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1243 + components: + - pos: -16.5,2.5 + parent: 4812 + type: Transform + - uid: 1244 + components: + - pos: -17.5,2.5 + parent: 4812 + type: Transform + - uid: 1245 + components: + - pos: -18.5,2.5 + parent: 4812 + type: Transform + - uid: 1246 + components: + - pos: -19.5,2.5 + parent: 4812 + type: Transform + - uid: 1247 + components: + - pos: -20.5,2.5 + parent: 4812 + type: Transform + - uid: 1248 + components: + - pos: -21.5,2.5 + parent: 4812 + type: Transform + - uid: 1249 + components: + - pos: -22.5,2.5 + parent: 4812 + type: Transform + - uid: 1250 + components: + - pos: -18.5,3.5 + parent: 4812 + type: Transform + - uid: 1251 + components: + - pos: -18.5,4.5 + parent: 4812 + type: Transform + - uid: 1257 + components: + - pos: -18.5,1.5 + parent: 4812 + type: Transform + - uid: 1258 + components: + - pos: -18.5,0.5 + parent: 4812 + type: Transform + - uid: 1259 + components: + - pos: -18.5,-0.5 + parent: 4812 + type: Transform + - uid: 1260 + components: + - pos: -21.5,10.5 + parent: 4812 + type: Transform + - uid: 1261 + components: + - pos: -22.5,10.5 + parent: 4812 + type: Transform + - uid: 1262 + components: + - pos: -22.5,11.5 + parent: 4812 + type: Transform + - uid: 1263 + components: + - pos: -22.5,12.5 + parent: 4812 + type: Transform + - uid: 1264 + components: + - pos: -22.5,13.5 + parent: 4812 + type: Transform + - uid: 1265 + components: + - pos: -22.5,14.5 + parent: 4812 + type: Transform + - uid: 1266 + components: + - pos: -22.5,15.5 + parent: 4812 + type: Transform + - uid: 1267 + components: + - pos: -22.5,16.5 + parent: 4812 + type: Transform + - uid: 1268 + components: + - pos: -21.5,16.5 + parent: 4812 + type: Transform + - uid: 1269 + components: + - pos: -20.5,16.5 + parent: 4812 + type: Transform + - uid: 1270 + components: + - pos: -18.5,16.5 + parent: 4812 + type: Transform + - uid: 1271 + components: + - pos: -19.5,16.5 + parent: 4812 + type: Transform + - uid: 1272 + components: + - pos: -17.5,16.5 + parent: 4812 + type: Transform + - uid: 1273 + components: + - pos: -17.5,15.5 + parent: 4812 + type: Transform + - uid: 1274 + components: + - pos: -17.5,14.5 + parent: 4812 + type: Transform + - uid: 1275 + components: + - pos: -11.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1276 + components: + - pos: -10.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1277 + components: + - pos: -9.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1278 + components: + - pos: -8.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1279 + components: + - pos: -7.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1280 + components: + - pos: -6.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1281 + components: + - pos: -5.5,13.5 + parent: 4812 + type: Transform + - uid: 1282 + components: + - pos: -4.5,13.5 + parent: 4812 + type: Transform + - uid: 1283 + components: + - pos: -3.5,13.5 + parent: 4812 + type: Transform + - uid: 1284 + components: + - pos: -2.5,13.5 + parent: 4812 + type: Transform + - uid: 1285 + components: + - pos: -1.5,13.5 + parent: 4812 + type: Transform + - uid: 1286 + components: + - pos: -2.5,14.5 + parent: 4812 + type: Transform + - uid: 1287 + components: + - pos: 7.5,-8.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1288 + components: + - pos: 7.5,-9.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1289 + components: + - pos: 6.5,-9.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1290 + components: + - pos: 5.5,-9.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1291 + components: + - pos: 4.5,-9.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1292 + components: + - pos: 3.5,-9.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1293 + components: + - pos: 3.5,-8.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1294 + components: + - pos: 2.5,-8.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1295 + components: + - pos: 7.5,-7.5 + parent: 4812 + type: Transform + - uid: 1296 + components: + - pos: 7.5,-6.5 + parent: 4812 + type: Transform + - uid: 1297 + components: + - pos: 6.5,-6.5 + parent: 4812 + type: Transform + - uid: 1298 + components: + - pos: 5.5,-6.5 + parent: 4812 + type: Transform + - uid: 1299 + components: + - pos: 4.5,-6.5 + parent: 4812 + type: Transform + - uid: 1300 + components: + - pos: 4.5,-5.5 + parent: 4812 + type: Transform + - uid: 1301 + components: + - pos: 4.5,-4.5 + parent: 4812 + type: Transform + - uid: 1302 + components: + - pos: 4.5,-3.5 + parent: 4812 + type: Transform + - uid: 1303 + components: + - pos: 4.5,-2.5 + parent: 4812 + type: Transform + - uid: 1304 + components: + - pos: 4.5,-1.5 + parent: 4812 + type: Transform + - uid: 1305 + components: + - pos: 4.5,-0.5 + parent: 4812 + type: Transform + - uid: 1306 + components: + - pos: 4.5,0.5 + parent: 4812 + type: Transform + - uid: 1307 + components: + - pos: 5.5,-1.5 + parent: 4812 + type: Transform + - uid: 1308 + components: + - pos: 6.5,-1.5 + parent: 4812 + type: Transform + - uid: 1309 + components: + - pos: 7.5,-1.5 + parent: 4812 + type: Transform + - uid: 1310 + components: + - pos: 8.5,-1.5 + parent: 4812 + type: Transform + - uid: 1311 + components: + - pos: 9.5,-1.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1312 + components: + - pos: 1.5,-8.5 + parent: 4812 + type: Transform + - uid: 1313 + components: + - pos: 0.5,-8.5 + parent: 4812 + type: Transform + - uid: 1314 + components: + - pos: 0.5,-7.5 + parent: 4812 + type: Transform + - uid: 1315 + components: + - pos: 0.5,-6.5 + parent: 4812 + type: Transform + - uid: 1316 + components: + - pos: 0.5,-5.5 + parent: 4812 + type: Transform + - uid: 1317 + components: + - pos: 0.5,-4.5 + parent: 4812 + type: Transform + - uid: 1318 + components: + - pos: 0.5,-3.5 + parent: 4812 + type: Transform + - uid: 1319 + components: + - pos: 0.5,-2.5 + parent: 4812 + type: Transform + - uid: 1320 + components: + - pos: 0.5,-1.5 + parent: 4812 + type: Transform + - uid: 1321 + components: + - pos: 0.5,-0.5 + parent: 4812 + type: Transform + - uid: 1322 + components: + - pos: 0.5,0.5 + parent: 4812 + type: Transform + - uid: 1323 + components: + - pos: 8.5,-9.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1324 + components: + - pos: 9.5,-9.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1325 + components: + - pos: 9.5,-8.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1326 + components: + - pos: 9.5,-7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1327 + components: + - pos: 9.5,-6.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1328 + components: + - pos: 9.5,-5.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1329 + components: + - pos: 9.5,-4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1330 + components: + - pos: 9.5,-3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1331 + components: + - pos: 9.5,-2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1332 + components: + - pos: 8.5,-10.5 + parent: 4812 + type: Transform + - uid: 1333 + components: + - pos: 8.5,-11.5 + parent: 4812 + type: Transform + - uid: 1334 + components: + - pos: 7.5,-11.5 + parent: 4812 + type: Transform + - uid: 1335 + components: + - pos: 6.5,-11.5 + parent: 4812 + type: Transform + - uid: 1336 + components: + - pos: 5.5,-11.5 + parent: 4812 + type: Transform + - uid: 1337 + components: + - pos: 4.5,-11.5 + parent: 4812 + type: Transform + - uid: 1338 + components: + - pos: 3.5,-11.5 + parent: 4812 + type: Transform + - uid: 1339 + components: + - pos: 2.5,-11.5 + parent: 4812 + type: Transform + - uid: 1340 + components: + - pos: 1.5,-11.5 + parent: 4812 + type: Transform + - uid: 1341 + components: + - pos: 0.5,-11.5 + parent: 4812 + type: Transform + - uid: 1342 + components: + - pos: -0.5,-11.5 + parent: 4812 + type: Transform + - uid: 1343 + components: + - pos: -1.5,-11.5 + parent: 4812 + type: Transform + - uid: 1344 + components: + - pos: -2.5,-11.5 + parent: 4812 + type: Transform + - uid: 1345 + components: + - pos: -3.5,-11.5 + parent: 4812 + type: Transform + - uid: 1346 + components: + - pos: 9.5,-11.5 + parent: 4812 + type: Transform + - uid: 1347 + components: + - pos: 10.5,-11.5 + parent: 4812 + type: Transform + - uid: 1348 + components: + - pos: 11.5,-11.5 + parent: 4812 + type: Transform + - uid: 1349 + components: + - pos: 11.5,-10.5 + parent: 4812 + type: Transform + - uid: 1350 + components: + - pos: 11.5,-9.5 + parent: 4812 + type: Transform + - uid: 1351 + components: + - pos: 11.5,-8.5 + parent: 4812 + type: Transform + - uid: 1352 + components: + - pos: 11.5,-7.5 + parent: 4812 + type: Transform + - uid: 1353 + components: + - pos: 11.5,-6.5 + parent: 4812 + type: Transform + - uid: 1354 + components: + - pos: 11.5,-5.5 + parent: 4812 + type: Transform + - uid: 1355 + components: + - pos: 11.5,-4.5 + parent: 4812 + type: Transform + - uid: 1356 + components: + - pos: 11.5,-3.5 + parent: 4812 + type: Transform + - uid: 1357 + components: + - pos: 11.5,-2.5 + parent: 4812 + type: Transform + - uid: 1358 + components: + - pos: 11.5,-1.5 + parent: 4812 + type: Transform + - uid: 1359 + components: + - pos: 11.5,-0.5 + parent: 4812 + type: Transform + - uid: 1361 + components: + - pos: 7.5,3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1362 + components: + - pos: 8.5,3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1363 + components: + - pos: 11.5,3.5 + parent: 4812 + type: Transform + - uid: 1364 + components: + - pos: 10.5,3.5 + parent: 4812 + type: Transform + - uid: 1365 + components: + - pos: 9.5,3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1366 + components: + - pos: 9.5,2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1369 + components: + - pos: 9.5,-0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1370 + components: + - pos: 11.5,4.5 + parent: 4812 + type: Transform + - uid: 1371 + components: + - pos: 11.5,5.5 + parent: 4812 + type: Transform + - uid: 1372 + components: + - pos: 11.5,6.5 + parent: 4812 + type: Transform + - uid: 1373 + components: + - pos: 11.5,7.5 + parent: 4812 + type: Transform + - uid: 1374 + components: + - pos: 11.5,8.5 + parent: 4812 + type: Transform + - uid: 1375 + components: + - pos: 11.5,9.5 + parent: 4812 + type: Transform + - uid: 1376 + components: + - pos: 11.5,10.5 + parent: 4812 + type: Transform + - uid: 1377 + components: + - pos: 11.5,11.5 + parent: 4812 + type: Transform + - uid: 1378 + components: + - pos: 11.5,12.5 + parent: 4812 + type: Transform + - uid: 1379 + components: + - pos: 11.5,13.5 + parent: 4812 + type: Transform + - uid: 1380 + components: + - pos: 11.5,14.5 + parent: 4812 + type: Transform + - uid: 1381 + components: + - pos: 11.5,15.5 + parent: 4812 + type: Transform + - uid: 1382 + components: + - pos: 11.5,16.5 + parent: 4812 + type: Transform + - uid: 1383 + components: + - pos: 9.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1384 + components: + - pos: 9.5,5.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1385 + components: + - pos: 9.5,6.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1386 + components: + - pos: 9.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1387 + components: + - pos: 9.5,8.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1388 + components: + - pos: 9.5,9.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1389 + components: + - pos: 9.5,10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1390 + components: + - pos: 9.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1391 + components: + - pos: 8.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1392 + components: + - pos: 7.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1393 + components: + - pos: 6.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1394 + components: + - pos: 5.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1395 + components: + - pos: 4.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1396 + components: + - pos: 3.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1397 + components: + - pos: 3.5,12.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1398 + components: + - pos: 3.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1399 + components: + - pos: 3.5,14.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1400 + components: + - pos: 2.5,14.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1401 + components: + - pos: 1.5,14.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1402 + components: + - pos: 11.5,17.5 + parent: 4812 + type: Transform + - uid: 1403 + components: + - pos: 11.5,18.5 + parent: 4812 + type: Transform + - uid: 1404 + components: + - pos: 11.5,19.5 + parent: 4812 + type: Transform + - uid: 1405 + components: + - pos: 10.5,19.5 + parent: 4812 + type: Transform + - uid: 1406 + components: + - pos: 9.5,19.5 + parent: 4812 + type: Transform + - uid: 1407 + components: + - pos: 8.5,19.5 + parent: 4812 + type: Transform + - uid: 1408 + components: + - pos: 7.5,19.5 + parent: 4812 + type: Transform + - uid: 1409 + components: + - pos: 6.5,19.5 + parent: 4812 + type: Transform + - uid: 1410 + components: + - pos: 6.5,18.5 + parent: 4812 + type: Transform + - uid: 1411 + components: + - pos: 6.5,17.5 + parent: 4812 + type: Transform + - uid: 1412 + components: + - pos: 6.5,16.5 + parent: 4812 + type: Transform + - uid: 1413 + components: + - pos: 6.5,15.5 + parent: 4812 + type: Transform + - uid: 1414 + components: + - pos: 6.5,14.5 + parent: 4812 + type: Transform + - uid: 1415 + components: + - pos: 7.5,14.5 + parent: 4812 + type: Transform + - uid: 1416 + components: + - pos: 8.5,14.5 + parent: 4812 + type: Transform + - uid: 1417 + components: + - pos: 7.5,17.5 + parent: 4812 + type: Transform + - uid: 1418 + components: + - pos: 8.5,17.5 + parent: 4812 + type: Transform + - uid: 1420 + components: + - pos: 6.5,7.5 + parent: 4812 + type: Transform + - uid: 1421 + components: + - pos: 6.5,8.5 + parent: 4812 + type: Transform + - uid: 1422 + components: + - pos: 6.5,9.5 + parent: 4812 + type: Transform + - uid: 1423 + components: + - pos: 5.5,7.5 + parent: 4812 + type: Transform + - uid: 1424 + components: + - pos: 4.5,7.5 + parent: 4812 + type: Transform + - uid: 1425 + components: + - pos: 3.5,7.5 + parent: 4812 + type: Transform + - uid: 1426 + components: + - pos: 2.5,7.5 + parent: 4812 + type: Transform + - uid: 1427 + components: + - pos: 2.5,8.5 + parent: 4812 + type: Transform + - uid: 1428 + components: + - pos: 2.5,9.5 + parent: 4812 + type: Transform + - uid: 1429 + components: + - pos: 2.5,6.5 + parent: 4812 + type: Transform + - uid: 1430 + components: + - pos: 2.5,5.5 + parent: 4812 + type: Transform + - uid: 1431 + components: + - pos: 6.5,2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1432 + components: + - pos: 5.5,2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1433 + components: + - pos: 4.5,2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1434 + components: + - pos: 3.5,2.5 + parent: 4812 + type: Transform + - uid: 1435 + components: + - pos: 2.5,2.5 + parent: 4812 + type: Transform + - uid: 1436 + components: + - pos: 1.5,2.5 + parent: 4812 + type: Transform + - uid: 1437 + components: + - pos: 0.5,2.5 + parent: 4812 + type: Transform + - uid: 1438 + components: + - pos: 0.5,3.5 + parent: 4812 + type: Transform + - uid: 1439 + components: + - pos: 0.5,4.5 + parent: 4812 + type: Transform + - uid: 1440 + components: + - pos: 0.5,5.5 + parent: 4812 + type: Transform + - uid: 1441 + components: + - pos: 0.5,6.5 + parent: 4812 + type: Transform + - uid: 1442 + components: + - pos: 0.5,7.5 + parent: 4812 + type: Transform + - uid: 1443 + components: + - pos: 0.5,8.5 + parent: 4812 + type: Transform + - uid: 1444 + components: + - pos: 0.5,9.5 + parent: 4812 + type: Transform + - uid: 1445 + components: + - pos: -0.5,9.5 + parent: 4812 + type: Transform + - uid: 1446 + components: + - pos: -0.5,10.5 + parent: 4812 + type: Transform + - uid: 1447 + components: + - pos: -0.5,4.5 + parent: 4812 + type: Transform + - uid: 1448 + components: + - pos: -0.5,-1.5 + parent: 4812 + type: Transform + - uid: 1449 + components: + - pos: -3.5,1.5 + parent: 4812 + type: Transform + - uid: 1450 + components: + - pos: -3.5,7.5 + parent: 4812 + type: Transform + - uid: 1451 + components: + - pos: -5.5,9.5 + parent: 4812 + type: Transform + - uid: 1452 + components: + - pos: -5.5,10.5 + parent: 4812 + type: Transform + - uid: 1523 + components: + - pos: -22.5,3.5 + parent: 4812 + type: Transform + - uid: 1524 + components: + - pos: -22.5,4.5 + parent: 4812 + type: Transform + - uid: 1525 + components: + - pos: -22.5,5.5 + parent: 4812 + type: Transform + - uid: 1526 + components: + - pos: -22.5,1.5 + parent: 4812 + type: Transform + - uid: 1527 + components: + - pos: -22.5,0.5 + parent: 4812 + type: Transform + - uid: 1528 + components: + - pos: -22.5,-0.5 + parent: 4812 + type: Transform + - uid: 1529 + components: + - pos: -22.5,-1.5 + parent: 4812 + type: Transform + - uid: 1530 + components: + - pos: -23.5,1.5 + parent: 4812 + type: Transform + - uid: 1546 + components: + - pos: 8.5,8.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1547 + components: + - pos: 7.5,8.5 + parent: 4812 + type: Transform + - uid: 2244 + components: + - pos: -6.5,31.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2245 + components: + - pos: -5.5,31.5 + parent: 4812 + type: Transform + - uid: 2246 + components: + - pos: -4.5,31.5 + parent: 4812 + type: Transform + - uid: 2247 + components: + - pos: -3.5,31.5 + parent: 4812 + type: Transform + - uid: 2248 + components: + - pos: -2.5,31.5 + parent: 4812 + type: Transform + - uid: 2249 + components: + - pos: -2.5,30.5 + parent: 4812 + type: Transform + - uid: 2250 + components: + - pos: -2.5,29.5 + parent: 4812 + type: Transform + - uid: 2251 + components: + - pos: -2.5,28.5 + parent: 4812 + type: Transform + - uid: 2252 + components: + - pos: -3.5,28.5 + parent: 4812 + type: Transform + - uid: 2253 + components: + - pos: -4.5,28.5 + parent: 4812 + type: Transform + - uid: 2254 + components: + - pos: -5.5,28.5 + parent: 4812 + type: Transform + - uid: 2255 + components: + - pos: -1.5,28.5 + parent: 4812 + type: Transform + - uid: 2256 + components: + - pos: -0.5,28.5 + parent: 4812 + type: Transform + - uid: 2257 + components: + - pos: 0.5,28.5 + parent: 4812 + type: Transform + - uid: 2258 + components: + - pos: 1.5,28.5 + parent: 4812 + type: Transform + - uid: 2259 + components: + - pos: -7.5,31.5 + parent: 4812 + type: Transform + - uid: 2260 + components: + - pos: -8.5,31.5 + parent: 4812 + type: Transform + - uid: 2261 + components: + - pos: -7.5,30.5 + parent: 4812 + type: Transform + - uid: 2262 + components: + - pos: -7.5,29.5 + parent: 4812 + type: Transform + - uid: 2263 + components: + - pos: -7.5,28.5 + parent: 4812 + type: Transform + - uid: 2264 + components: + - pos: -7.5,27.5 + parent: 4812 + type: Transform + - uid: 2265 + components: + - pos: -7.5,26.5 + parent: 4812 + type: Transform + - uid: 2266 + components: + - pos: -7.5,25.5 + parent: 4812 + type: Transform + - uid: 2267 + components: + - pos: -7.5,24.5 + parent: 4812 + type: Transform + - uid: 2268 + components: + - pos: -7.5,23.5 + parent: 4812 + type: Transform + - uid: 2269 + components: + - pos: -7.5,22.5 + parent: 4812 + type: Transform + - uid: 2270 + components: + - pos: -7.5,32.5 + parent: 4812 + type: Transform + - uid: 2271 + components: + - pos: -7.5,33.5 + parent: 4812 + type: Transform + - uid: 2272 + components: + - pos: -7.5,34.5 + parent: 4812 + type: Transform + - uid: 2273 + components: + - pos: -2.5,32.5 + parent: 4812 + type: Transform + - uid: 2274 + components: + - pos: -2.5,33.5 + parent: 4812 + type: Transform + - uid: 2275 + components: + - pos: -2.5,34.5 + parent: 4812 + type: Transform + - uid: 2276 + components: + - pos: -3.5,34.5 + parent: 4812 + type: Transform + - uid: 2277 + components: + - pos: -5.5,34.5 + parent: 4812 + type: Transform + - uid: 2278 + components: + - pos: -4.5,34.5 + parent: 4812 + type: Transform + - uid: 2279 + components: + - pos: -1.5,34.5 + parent: 4812 + type: Transform + - uid: 2280 + components: + - pos: -0.5,34.5 + parent: 4812 + type: Transform + - uid: 2281 + components: + - pos: 0.5,34.5 + parent: 4812 + type: Transform + - uid: 2282 + components: + - pos: 1.5,34.5 + parent: 4812 + type: Transform + - uid: 2283 + components: + - pos: 2.5,34.5 + parent: 4812 + type: Transform + - uid: 2284 + components: + - pos: -1.5,32.5 + parent: 4812 + type: Transform + - uid: 2285 + components: + - pos: -0.5,32.5 + parent: 4812 + type: Transform + - uid: 2286 + components: + - pos: 0.5,32.5 + parent: 4812 + type: Transform + - uid: 2287 + components: + - pos: 1.5,32.5 + parent: 4812 + type: Transform + - uid: 2288 + components: + - pos: 2.5,32.5 + parent: 4812 + type: Transform + - uid: 2289 + components: + - pos: 3.5,32.5 + parent: 4812 + type: Transform + - uid: 2290 + components: + - pos: 4.5,32.5 + parent: 4812 + type: Transform + - uid: 2291 + components: + - pos: 5.5,32.5 + parent: 4812 + type: Transform + - uid: 2292 + components: + - pos: 6.5,32.5 + parent: 4812 + type: Transform + - uid: 2293 + components: + - pos: 2.5,31.5 + parent: 4812 + type: Transform + - uid: 2294 + components: + - pos: 2.5,30.5 + parent: 4812 + type: Transform + - uid: 2295 + components: + - pos: 2.5,29.5 + parent: 4812 + type: Transform + - uid: 2296 + components: + - pos: 9.5,27.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2297 + components: + - pos: 9.5,26.5 + parent: 4812 + type: Transform + - uid: 2298 + components: + - pos: 9.5,25.5 + parent: 4812 + type: Transform + - uid: 2299 + components: + - pos: 9.5,24.5 + parent: 4812 + type: Transform + - uid: 2300 + components: + - pos: 9.5,23.5 + parent: 4812 + type: Transform + - uid: 2301 + components: + - pos: 9.5,22.5 + parent: 4812 + type: Transform + - uid: 2302 + components: + - pos: 9.5,21.5 + parent: 4812 + type: Transform + - uid: 2303 + components: + - pos: 8.5,22.5 + parent: 4812 + type: Transform + - uid: 2304 + components: + - pos: 6.5,22.5 + parent: 4812 + type: Transform + - uid: 2305 + components: + - pos: 5.5,22.5 + parent: 4812 + type: Transform + - uid: 2306 + components: + - pos: 7.5,22.5 + parent: 4812 + type: Transform + - uid: 2307 + components: + - pos: 10.5,22.5 + parent: 4812 + type: Transform + - uid: 2308 + components: + - pos: 8.5,25.5 + parent: 4812 + type: Transform + - uid: 2309 + components: + - pos: 7.5,25.5 + parent: 4812 + type: Transform + - uid: 2310 + components: + - pos: 6.5,25.5 + parent: 4812 + type: Transform + - uid: 2311 + components: + - pos: 6.5,26.5 + parent: 4812 + type: Transform + - uid: 2312 + components: + - pos: 6.5,27.5 + parent: 4812 + type: Transform + - uid: 2313 + components: + - pos: 6.5,28.5 + parent: 4812 + type: Transform + - uid: 2314 + components: + - pos: 6.5,29.5 + parent: 4812 + type: Transform + - uid: 2315 + components: + - pos: 7.5,28.5 + parent: 4812 + type: Transform + - uid: 2316 + components: + - pos: 8.5,28.5 + parent: 4812 + type: Transform + - uid: 2317 + components: + - pos: 9.5,28.5 + parent: 4812 + type: Transform + - uid: 2318 + components: + - pos: 10.5,28.5 + parent: 4812 + type: Transform + - uid: 2319 + components: + - pos: 10.5,29.5 + parent: 4812 + type: Transform + - uid: 2320 + components: + - pos: 10.5,30.5 + parent: 4812 + type: Transform + - uid: 2321 + components: + - pos: 5.5,25.5 + parent: 4812 + type: Transform + - uid: 2322 + components: + - pos: 4.5,25.5 + parent: 4812 + type: Transform + - uid: 2323 + components: + - pos: 3.5,25.5 + parent: 4812 + type: Transform + - uid: 2324 + components: + - pos: 3.5,24.5 + parent: 4812 + type: Transform + - uid: 2325 + components: + - pos: 3.5,23.5 + parent: 4812 + type: Transform + - uid: 2326 + components: + - pos: 3.5,22.5 + parent: 4812 + type: Transform + - uid: 2327 + components: + - pos: 3.5,21.5 + parent: 4812 + type: Transform + - uid: 2328 + components: + - pos: 0.5,21.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2329 + components: + - pos: 0.5,20.5 + parent: 4812 + type: Transform + - uid: 2330 + components: + - pos: 0.5,19.5 + parent: 4812 + type: Transform + - uid: 2331 + components: + - pos: -0.5,19.5 + parent: 4812 + type: Transform + - uid: 2332 + components: + - pos: -1.5,19.5 + parent: 4812 + type: Transform + - uid: 2333 + components: + - pos: -2.5,19.5 + parent: 4812 + type: Transform + - uid: 2334 + components: + - pos: -3.5,19.5 + parent: 4812 + type: Transform + - uid: 2335 + components: + - pos: -4.5,19.5 + parent: 4812 + type: Transform + - uid: 2336 + components: + - pos: -5.5,19.5 + parent: 4812 + type: Transform + - uid: 2337 + components: + - pos: -6.5,19.5 + parent: 4812 + type: Transform + - uid: 2338 + components: + - pos: -7.5,19.5 + parent: 4812 + type: Transform + - uid: 2339 + components: + - pos: -8.5,19.5 + parent: 4812 + type: Transform + - uid: 2340 + components: + - pos: -9.5,19.5 + parent: 4812 + type: Transform + - uid: 2341 + components: + - pos: -10.5,19.5 + parent: 4812 + type: Transform + - uid: 2342 + components: + - pos: -11.5,19.5 + parent: 4812 + type: Transform + - uid: 2343 + components: + - pos: -12.5,19.5 + parent: 4812 + type: Transform + - uid: 2344 + components: + - pos: -13.5,19.5 + parent: 4812 + type: Transform + - uid: 2345 + components: + - pos: -14.5,19.5 + parent: 4812 + type: Transform + - uid: 2346 + components: + - pos: -15.5,19.5 + parent: 4812 + type: Transform + - uid: 2347 + components: + - pos: -16.5,19.5 + parent: 4812 + type: Transform + - uid: 2348 + components: + - pos: 1.5,19.5 + parent: 4812 + type: Transform + - uid: 2349 + components: + - pos: 2.5,19.5 + parent: 4812 + type: Transform + - uid: 2350 + components: + - pos: 3.5,19.5 + parent: 4812 + type: Transform + - uid: 2351 + components: + - pos: 4.5,19.5 + parent: 4812 + type: Transform + - uid: 2352 + components: + - pos: 0.5,22.5 + parent: 4812 + type: Transform + - uid: 2353 + components: + - pos: 0.5,23.5 + parent: 4812 + type: Transform + - uid: 2354 + components: + - pos: 0.5,24.5 + parent: 4812 + type: Transform + - uid: 2355 + components: + - pos: 0.5,25.5 + parent: 4812 + type: Transform + - uid: 2356 + components: + - pos: -0.5,25.5 + parent: 4812 + type: Transform + - uid: 2357 + components: + - pos: -1.5,25.5 + parent: 4812 + type: Transform + - uid: 2358 + components: + - pos: -2.5,25.5 + parent: 4812 + type: Transform + - uid: 2359 + components: + - pos: -3.5,25.5 + parent: 4812 + type: Transform + - uid: 2360 + components: + - pos: -4.5,25.5 + parent: 4812 + type: Transform + - uid: 2361 + components: + - pos: -0.5,23.5 + parent: 4812 + type: Transform + - uid: 2362 + components: + - pos: -1.5,23.5 + parent: 4812 + type: Transform + - uid: 2363 + components: + - pos: -2.5,23.5 + parent: 4812 + type: Transform + - uid: 2364 + components: + - pos: -3.5,23.5 + parent: 4812 + type: Transform + - uid: 2365 + components: + - pos: -4.5,23.5 + parent: 4812 + type: Transform + - uid: 2367 + components: + - pos: -14.5,25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2368 + components: + - pos: -14.5,24.5 + parent: 4812 + type: Transform + - uid: 2369 + components: + - pos: -14.5,23.5 + parent: 4812 + type: Transform + - uid: 2370 + components: + - pos: -14.5,22.5 + parent: 4812 + type: Transform + - uid: 2371 + components: + - pos: -15.5,24.5 + parent: 4812 + type: Transform + - uid: 2372 + components: + - pos: -13.5,24.5 + parent: 4812 + type: Transform + - uid: 2373 + components: + - pos: -12.5,24.5 + parent: 4812 + type: Transform + - uid: 2374 + components: + - pos: -11.5,24.5 + parent: 4812 + type: Transform + - uid: 2375 + components: + - pos: -11.5,25.5 + parent: 4812 + type: Transform + - uid: 2376 + components: + - pos: -11.5,26.5 + parent: 4812 + type: Transform + - uid: 2377 + components: + - pos: -11.5,27.5 + parent: 4812 + type: Transform + - uid: 2378 + components: + - pos: -11.5,28.5 + parent: 4812 + type: Transform + - uid: 2379 + components: + - pos: -12.5,28.5 + parent: 4812 + type: Transform + - uid: 2380 + components: + - pos: -13.5,28.5 + parent: 4812 + type: Transform + - uid: 2381 + components: + - pos: -14.5,28.5 + parent: 4812 + type: Transform + - uid: 2382 + components: + - pos: -15.5,28.5 + parent: 4812 + type: Transform + - uid: 2383 + components: + - pos: -11.5,23.5 + parent: 4812 + type: Transform + - uid: 2384 + components: + - pos: -11.5,22.5 + parent: 4812 + type: Transform + - uid: 2395 + components: + - pos: -10.5,23.5 + parent: 4812 + type: Transform + - uid: 2652 + components: + - pos: -11.5,-57.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2815 + components: + - pos: 16.5,35.5 + parent: 4812 + type: Transform + - uid: 2816 + components: + - pos: 16.5,34.5 + parent: 4812 + type: Transform + - uid: 2823 + components: + - pos: 19.5,35.5 + parent: 4812 + type: Transform + - uid: 2826 + components: + - pos: 16.5,33.5 + parent: 4812 + type: Transform + - uid: 2827 + components: + - pos: 21.5,25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2833 + components: + - pos: 11.5,32.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2846 + components: + - pos: 18.5,35.5 + parent: 4812 + type: Transform + - uid: 2847 + components: + - pos: 16.5,30.5 + parent: 4812 + type: Transform + - uid: 2848 + components: + - pos: 22.5,25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2865 + components: + - pos: 16.5,32.5 + parent: 4812 + type: Transform + - uid: 2867 + components: + - pos: 20.5,27.5 + parent: 4812 + type: Transform + - uid: 2868 + components: + - pos: 20.5,25.5 + parent: 4812 + type: Transform + - uid: 2869 + components: + - pos: 16.5,31.5 + parent: 4812 + type: Transform + - uid: 3038 + components: + - pos: 22.5,27.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3039 + components: + - pos: 21.5,27.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3136 + components: + - pos: 17.5,22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3137 + components: + - pos: 17.5,23.5 + parent: 4812 + type: Transform + - uid: 3138 + components: + - pos: 17.5,24.5 + parent: 4812 + type: Transform + - uid: 3139 + components: + - pos: 17.5,25.5 + parent: 4812 + type: Transform + - uid: 3140 + components: + - pos: 17.5,26.5 + parent: 4812 + type: Transform + - uid: 3141 + components: + - pos: 18.5,26.5 + parent: 4812 + type: Transform + - uid: 3142 + components: + - pos: 19.5,26.5 + parent: 4812 + type: Transform + - uid: 3143 + components: + - pos: 20.5,26.5 + parent: 4812 + type: Transform + - uid: 3146 + components: + - pos: 18.5,24.5 + parent: 4812 + type: Transform + - uid: 3147 + components: + - pos: 19.5,24.5 + parent: 4812 + type: Transform + - uid: 3148 + components: + - pos: 20.5,24.5 + parent: 4812 + type: Transform + - uid: 3151 + components: + - pos: 16.5,26.5 + parent: 4812 + type: Transform + - uid: 3152 + components: + - pos: 15.5,26.5 + parent: 4812 + type: Transform + - uid: 3153 + components: + - pos: 15.5,27.5 + parent: 4812 + type: Transform + - uid: 3154 + components: + - pos: 15.5,28.5 + parent: 4812 + type: Transform + - uid: 3155 + components: + - pos: 15.5,29.5 + parent: 4812 + type: Transform + - uid: 3156 + components: + - pos: 16.5,29.5 + parent: 4812 + type: Transform + - uid: 3157 + components: + - pos: 17.5,21.5 + parent: 4812 + type: Transform + - uid: 3158 + components: + - pos: 17.5,20.5 + parent: 4812 + type: Transform + - uid: 3159 + components: + - pos: 17.5,19.5 + parent: 4812 + type: Transform + - uid: 3160 + components: + - pos: 17.5,18.5 + parent: 4812 + type: Transform + - uid: 3161 + components: + - pos: 17.5,17.5 + parent: 4812 + type: Transform + - uid: 3162 + components: + - pos: 16.5,20.5 + parent: 4812 + type: Transform + - uid: 3163 + components: + - pos: 15.5,20.5 + parent: 4812 + type: Transform + - uid: 3164 + components: + - pos: 18.5,20.5 + parent: 4812 + type: Transform + - uid: 3165 + components: + - pos: 19.5,20.5 + parent: 4812 + type: Transform + - uid: 3166 + components: + - pos: 16.5,18.5 + parent: 4812 + type: Transform + - uid: 3167 + components: + - pos: 15.5,18.5 + parent: 4812 + type: Transform + - uid: 3168 + components: + - pos: 19.5,18.5 + parent: 4812 + type: Transform + - uid: 3169 + components: + - pos: 18.5,18.5 + parent: 4812 + type: Transform + - uid: 3170 + components: + - pos: 19.5,17.5 + parent: 4812 + type: Transform + - uid: 3171 + components: + - pos: 19.5,16.5 + parent: 4812 + type: Transform + - uid: 3172 + components: + - pos: 19.5,15.5 + parent: 4812 + type: Transform + - uid: 3173 + components: + - pos: 19.5,14.5 + parent: 4812 + type: Transform + - uid: 3174 + components: + - pos: 20.5,14.5 + parent: 4812 + type: Transform + - uid: 3175 + components: + - pos: 21.5,14.5 + parent: 4812 + type: Transform + - uid: 3176 + components: + - pos: 22.5,14.5 + parent: 4812 + type: Transform + - uid: 3177 + components: + - pos: 23.5,14.5 + parent: 4812 + type: Transform + - uid: 3178 + components: + - pos: 24.5,14.5 + parent: 4812 + type: Transform + - uid: 3179 + components: + - pos: 25.5,14.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3180 + components: + - pos: 26.5,14.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3181 + components: + - pos: 27.5,14.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3182 + components: + - pos: 18.5,14.5 + parent: 4812 + type: Transform + - uid: 3183 + components: + - pos: 17.5,14.5 + parent: 4812 + type: Transform + - uid: 3184 + components: + - pos: 16.5,14.5 + parent: 4812 + type: Transform + - uid: 3185 + components: + - pos: 15.5,14.5 + parent: 4812 + type: Transform + - uid: 3186 + components: + - pos: 14.5,14.5 + parent: 4812 + type: Transform + - uid: 3192 + components: + - pos: 17.5,35.5 + parent: 4812 + type: Transform + - uid: 3195 + components: + - pos: 12.5,32.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3196 + components: + - pos: 12.5,31.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3197 + components: + - pos: 12.5,30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3198 + components: + - pos: 12.5,29.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3199 + components: + - pos: 12.5,28.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3200 + components: + - pos: 12.5,27.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3201 + components: + - pos: 12.5,26.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3202 + components: + - pos: 12.5,25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3203 + components: + - pos: 12.5,24.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3204 + components: + - pos: 12.5,23.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3205 + components: + - pos: 12.5,22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3897 + components: + - pos: 11.5,51.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3898 + components: + - pos: 11.5,50.5 + parent: 4812 + type: Transform + - uid: 3899 + components: + - pos: 10.5,50.5 + parent: 4812 + type: Transform + - uid: 3900 + components: + - pos: 10.5,49.5 + parent: 4812 + type: Transform + - uid: 3901 + components: + - pos: 10.5,48.5 + parent: 4812 + type: Transform + - uid: 3902 + components: + - pos: 10.5,47.5 + parent: 4812 + type: Transform + - uid: 3903 + components: + - pos: 10.5,46.5 + parent: 4812 + type: Transform + - uid: 3904 + components: + - pos: 10.5,45.5 + parent: 4812 + type: Transform + - uid: 3905 + components: + - pos: 10.5,44.5 + parent: 4812 + type: Transform + - uid: 3906 + components: + - pos: 10.5,43.5 + parent: 4812 + type: Transform + - uid: 3907 + components: + - pos: 11.5,45.5 + parent: 4812 + type: Transform + - uid: 3908 + components: + - pos: 12.5,45.5 + parent: 4812 + type: Transform + - uid: 3909 + components: + - pos: 13.5,45.5 + parent: 4812 + type: Transform + - uid: 3910 + components: + - pos: 14.5,45.5 + parent: 4812 + type: Transform + - uid: 3911 + components: + - pos: 15.5,45.5 + parent: 4812 + type: Transform + - uid: 3912 + components: + - pos: 15.5,46.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3913 + components: + - pos: 9.5,45.5 + parent: 4812 + type: Transform + - uid: 3914 + components: + - pos: 8.5,45.5 + parent: 4812 + type: Transform + - uid: 3915 + components: + - pos: 7.5,45.5 + parent: 4812 + type: Transform + - uid: 3916 + components: + - pos: 6.5,45.5 + parent: 4812 + type: Transform + - uid: 3917 + components: + - pos: 5.5,45.5 + parent: 4812 + type: Transform + - uid: 3918 + components: + - pos: 4.5,45.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3919 + components: + - pos: 3.5,45.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3920 + components: + - pos: 6.5,46.5 + parent: 4812 + type: Transform + - uid: 3921 + components: + - pos: 6.5,47.5 + parent: 4812 + type: Transform + - uid: 3922 + components: + - pos: 9.5,50.5 + parent: 4812 + type: Transform + - uid: 3923 + components: + - pos: 8.5,50.5 + parent: 4812 + type: Transform + - uid: 3924 + components: + - pos: 8.5,51.5 + parent: 4812 + type: Transform + - uid: 3925 + components: + - pos: 8.5,52.5 + parent: 4812 + type: Transform + - uid: 3926 + components: + - pos: 8.5,53.5 + parent: 4812 + type: Transform + - uid: 3927 + components: + - pos: 8.5,54.5 + parent: 4812 + type: Transform + - uid: 3928 + components: + - pos: 8.5,55.5 + parent: 4812 + type: Transform + - uid: 3929 + components: + - pos: 12.5,50.5 + parent: 4812 + type: Transform + - uid: 3930 + components: + - pos: 12.5,51.5 + parent: 4812 + type: Transform + - uid: 3931 + components: + - pos: 12.5,52.5 + parent: 4812 + type: Transform + - uid: 3932 + components: + - pos: 12.5,53.5 + parent: 4812 + type: Transform + - uid: 3933 + components: + - pos: 12.5,54.5 + parent: 4812 + type: Transform + - uid: 3934 + components: + - pos: 12.5,55.5 + parent: 4812 + type: Transform + - uid: 3935 + components: + - pos: 11.5,53.5 + parent: 4812 + type: Transform + - uid: 3936 + components: + - pos: 10.5,53.5 + parent: 4812 + type: Transform + - uid: 3937 + components: + - pos: 9.5,53.5 + parent: 4812 + type: Transform + - uid: 3938 + components: + - pos: 10.5,52.5 + parent: 4812 + type: Transform + - uid: 3939 + components: + - pos: 11.5,55.5 + parent: 4812 + type: Transform + - uid: 3940 + components: + - pos: 10.5,55.5 + parent: 4812 + type: Transform + - uid: 3941 + components: + - pos: 9.5,55.5 + parent: 4812 + type: Transform + - uid: 3942 + components: + - pos: 13.5,53.5 + parent: 4812 + type: Transform + - uid: 3943 + components: + - pos: 7.5,53.5 + parent: 4812 + type: Transform + - uid: 4010 + components: + - pos: -9.5,-23.5 + parent: 4812 + type: Transform + - uid: 4257 + components: + - pos: 22.5,-1.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4258 + components: + - pos: 22.5,-2.5 + parent: 4812 + type: Transform + - uid: 4259 + components: + - pos: 21.5,-2.5 + parent: 4812 + type: Transform + - uid: 4260 + components: + - pos: 20.5,-2.5 + parent: 4812 + type: Transform + - uid: 4261 + components: + - pos: 19.5,-2.5 + parent: 4812 + type: Transform + - uid: 4262 + components: + - pos: 18.5,-2.5 + parent: 4812 + type: Transform + - uid: 4263 + components: + - pos: 17.5,-2.5 + parent: 4812 + type: Transform + - uid: 4264 + components: + - pos: 16.5,-2.5 + parent: 4812 + type: Transform + - uid: 4265 + components: + - pos: 15.5,-2.5 + parent: 4812 + type: Transform + - uid: 4266 + components: + - pos: 14.5,-2.5 + parent: 4812 + type: Transform + - uid: 4267 + components: + - pos: 12.5,7.5 + parent: 4812 + type: Transform + - uid: 4268 + components: + - pos: 13.5,7.5 + parent: 4812 + type: Transform + - uid: 4269 + components: + - pos: 14.5,7.5 + parent: 4812 + type: Transform + - uid: 4270 + components: + - pos: 15.5,7.5 + parent: 4812 + type: Transform + - uid: 4271 + components: + - pos: 16.5,7.5 + parent: 4812 + type: Transform + - uid: 4272 + components: + - pos: 22.5,-0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4273 + components: + - pos: 21.5,-0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4274 + components: + - pos: 20.5,-0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4275 + components: + - pos: 19.5,-0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4276 + components: + - pos: 18.5,-0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4277 + components: + - pos: 17.5,-0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4278 + components: + - pos: 16.5,-0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4279 + components: + - pos: 15.5,-0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4280 + components: + - pos: 15.5,0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4281 + components: + - pos: 15.5,1.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4282 + components: + - pos: 15.5,2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4283 + components: + - pos: 15.5,3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4284 + components: + - pos: 15.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4285 + components: + - pos: 16.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4286 + components: + - pos: 17.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4287 + components: + - pos: 18.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4288 + components: + - pos: 18.5,5.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4289 + components: + - pos: 18.5,6.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4290 + components: + - pos: 18.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4291 + components: + - pos: 18.5,8.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4292 + components: + - pos: 18.5,9.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4293 + components: + - pos: 18.5,10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4294 + components: + - pos: 17.5,10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4295 + components: + - pos: 16.5,10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4296 + components: + - pos: 15.5,10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4297 + components: + - pos: 14.5,10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4298 + components: + - pos: 19.5,10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4299 + components: + - pos: 20.5,10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4300 + components: + - pos: 23.5,-2.5 + parent: 4812 + type: Transform + - uid: 4301 + components: + - pos: 24.5,-2.5 + parent: 4812 + type: Transform + - uid: 4302 + components: + - pos: 25.5,-2.5 + parent: 4812 + type: Transform + - uid: 4303 + components: + - pos: 26.5,-2.5 + parent: 4812 + type: Transform + - uid: 4304 + components: + - pos: 27.5,-2.5 + parent: 4812 + type: Transform + - uid: 4305 + components: + - pos: 28.5,-2.5 + parent: 4812 + type: Transform + - uid: 4306 + components: + - pos: 29.5,-2.5 + parent: 4812 + type: Transform + - uid: 4307 + components: + - pos: 30.5,-2.5 + parent: 4812 + type: Transform + - uid: 4308 + components: + - pos: 30.5,-1.5 + parent: 4812 + type: Transform + - uid: 4309 + components: + - pos: 30.5,-0.5 + parent: 4812 + type: Transform + - uid: 4310 + components: + - pos: 30.5,0.5 + parent: 4812 + type: Transform + - uid: 4311 + components: + - pos: 30.5,1.5 + parent: 4812 + type: Transform + - uid: 4312 + components: + - pos: 30.5,2.5 + parent: 4812 + type: Transform + - uid: 4313 + components: + - pos: 30.5,3.5 + parent: 4812 + type: Transform + - uid: 4314 + components: + - pos: 30.5,4.5 + parent: 4812 + type: Transform + - uid: 4315 + components: + - pos: 31.5,2.5 + parent: 4812 + type: Transform + - uid: 4316 + components: + - pos: 32.5,2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4317 + components: + - pos: 33.5,2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4318 + components: + - pos: 31.5,0.5 + parent: 4812 + type: Transform + - uid: 4319 + components: + - pos: 32.5,0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4320 + components: + - pos: 33.5,0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4321 + components: + - pos: 30.5,-3.5 + parent: 4812 + type: Transform + - uid: 4322 + components: + - pos: 30.5,-4.5 + parent: 4812 + type: Transform + - uid: 4323 + components: + - pos: 30.5,-5.5 + parent: 4812 + type: Transform + - uid: 4324 + components: + - pos: 30.5,-6.5 + parent: 4812 + type: Transform + - uid: 4325 + components: + - pos: 30.5,-7.5 + parent: 4812 + type: Transform + - uid: 4326 + components: + - pos: 30.5,-8.5 + parent: 4812 + type: Transform + - uid: 4327 + components: + - pos: 30.5,-9.5 + parent: 4812 + type: Transform + - uid: 4328 + components: + - pos: 31.5,-7.5 + parent: 4812 + type: Transform + - uid: 4329 + components: + - pos: 32.5,-7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4330 + components: + - pos: 33.5,-7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4331 + components: + - pos: 31.5,-5.5 + parent: 4812 + type: Transform + - uid: 4332 + components: + - pos: 32.5,-5.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4333 + components: + - pos: 33.5,-5.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4334 + components: + - pos: 29.5,-7.5 + parent: 4812 + type: Transform + - uid: 4335 + components: + - pos: 28.5,-7.5 + parent: 4812 + type: Transform + - uid: 4336 + components: + - pos: 27.5,-7.5 + parent: 4812 + type: Transform + - uid: 4337 + components: + - pos: 26.5,-7.5 + parent: 4812 + type: Transform + - uid: 4338 + components: + - pos: 25.5,-7.5 + parent: 4812 + type: Transform + - uid: 4339 + components: + - pos: 24.5,-7.5 + parent: 4812 + type: Transform + - uid: 4340 + components: + - pos: 24.5,-6.5 + parent: 4812 + type: Transform + - uid: 4341 + components: + - pos: 24.5,-5.5 + parent: 4812 + type: Transform + - uid: 4342 + components: + - pos: 24.5,-4.5 + parent: 4812 + type: Transform + - uid: 4343 + components: + - pos: 24.5,-3.5 + parent: 4812 + type: Transform + - uid: 4344 + components: + - pos: 24.5,-1.5 + parent: 4812 + type: Transform + - uid: 4345 + components: + - pos: 24.5,-0.5 + parent: 4812 + type: Transform + - uid: 4346 + components: + - pos: 24.5,0.5 + parent: 4812 + type: Transform + - uid: 4347 + components: + - pos: 24.5,1.5 + parent: 4812 + type: Transform + - uid: 4348 + components: + - pos: 24.5,2.5 + parent: 4812 + type: Transform + - uid: 4349 + components: + - pos: 24.5,3.5 + parent: 4812 + type: Transform + - uid: 4350 + components: + - pos: 24.5,4.5 + parent: 4812 + type: Transform + - uid: 4351 + components: + - pos: 23.5,4.5 + parent: 4812 + type: Transform + - uid: 4352 + components: + - pos: 22.5,4.5 + parent: 4812 + type: Transform + - uid: 4353 + components: + - pos: 22.5,5.5 + parent: 4812 + type: Transform + - uid: 4354 + components: + - pos: 22.5,6.5 + parent: 4812 + type: Transform + - uid: 4355 + components: + - pos: 22.5,7.5 + parent: 4812 + type: Transform + - uid: 4356 + components: + - pos: 22.5,8.5 + parent: 4812 + type: Transform + - uid: 4357 + components: + - pos: 19.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4358 + components: + - pos: 23.5,-7.5 + parent: 4812 + type: Transform + - uid: 4359 + components: + - pos: 22.5,-7.5 + parent: 4812 + type: Transform + - uid: 4360 + components: + - pos: 21.5,-7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4361 + components: + - pos: 20.5,-7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4362 + components: + - pos: 19.5,-7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4363 + components: + - pos: 18.5,-7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4364 + components: + - pos: 17.5,-7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4365 + components: + - pos: 16.5,-7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4366 + components: + - pos: 15.5,-7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4367 + components: + - pos: 15.5,-6.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4368 + components: + - pos: 15.5,-5.5 + parent: 4812 + type: Transform + - uid: 4369 + components: + - pos: 14.5,-7.5 + parent: 4812 + type: Transform + - uid: 4660 + components: + - pos: -13.5,-50.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4689 + components: + - pos: -11.5,-56.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4690 + components: + - pos: -11.5,-55.5 + parent: 4812 + type: Transform + - uid: 4724 + components: + - pos: -11.5,-54.5 + parent: 4812 + type: Transform + - uid: 4863 + components: + - pos: -18.5,-28.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4864 + components: + - pos: -13.5,-27.5 + parent: 4812 + type: Transform + - uid: 4866 + components: + - pos: -17.5,-28.5 + parent: 4812 + type: Transform + - uid: 4867 + components: + - pos: -16.5,-27.5 + parent: 4812 + type: Transform + - uid: 4868 + components: + - pos: -15.5,-27.5 + parent: 4812 + type: Transform + - uid: 4869 + components: + - pos: -23.5,-25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4894 + components: + - pos: -14.5,-27.5 + parent: 4812 + type: Transform + - uid: 4895 + components: + - pos: -27.5,-25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4896 + components: + - pos: -26.5,-25.5 + parent: 4812 + type: Transform + - uid: 4897 + components: + - pos: -25.5,-27.5 + parent: 4812 + type: Transform + - uid: 4899 + components: + - pos: -25.5,-28.5 + parent: 4812 + type: Transform + - uid: 4900 + components: + - pos: -25.5,-24.5 + parent: 4812 + type: Transform + - uid: 4901 + components: + - pos: -25.5,-23.5 + parent: 4812 + type: Transform + - uid: 4902 + components: + - pos: -25.5,-25.5 + parent: 4812 + type: Transform + - uid: 4903 + components: + - pos: -25.5,-26.5 + parent: 4812 + type: Transform + - uid: 4904 + components: + - pos: -25.5,-22.5 + parent: 4812 + type: Transform + - uid: 4905 + components: + - pos: -26.5,-23.5 + parent: 4812 + type: Transform + - uid: 4906 + components: + - pos: -23.5,-22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4907 + components: + - pos: -24.5,-22.5 + parent: 4812 + type: Transform + - uid: 4908 + components: + - pos: -21.5,-27.5 + parent: 4812 + type: Transform + - uid: 4909 + components: + - pos: -18.5,-20.5 + parent: 4812 + type: Transform + - uid: 4910 + components: + - pos: -20.5,-27.5 + parent: 4812 + type: Transform + - uid: 4911 + components: + - pos: -22.5,-22.5 + parent: 4812 + type: Transform + - uid: 4912 + components: + - pos: -18.5,-21.5 + parent: 4812 + type: Transform + - uid: 4913 + components: + - pos: -18.5,-19.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4930 + components: + - pos: -20.5,-12.5 + parent: 4812 + type: Transform + - uid: 4946 + components: + - pos: -9.5,-22.5 + parent: 4812 + type: Transform + - uid: 4947 + components: + - pos: -17.5,-27.5 + parent: 4812 + type: Transform + - uid: 4948 + components: + - pos: -13.5,-26.5 + parent: 4812 + type: Transform + - uid: 4949 + components: + - pos: -16.5,-26.5 + parent: 4812 + type: Transform + - uid: 5008 + components: + - pos: -22.5,-26.5 + parent: 4812 + type: Transform + - uid: 5009 + components: + - pos: -22.5,-27.5 + parent: 4812 + type: Transform + - uid: 5017 + components: + - pos: -22.5,-25.5 + parent: 4812 + type: Transform + - uid: 5029 + components: + - pos: -15.5,-20.5 + parent: 4812 + type: Transform + - uid: 5030 + components: + - pos: -19.5,-14.5 + parent: 4812 + type: Transform + - uid: 5031 + components: + - pos: -15.5,-17.5 + parent: 4812 + type: Transform + - uid: 5034 + components: + - pos: -15.5,-15.5 + parent: 4812 + type: Transform + - uid: 5035 + components: + - pos: -22.5,-12.5 + parent: 4812 + type: Transform + - uid: 5036 + components: + - pos: -19.5,-16.5 + parent: 4812 + type: Transform + - uid: 5037 + components: + - pos: -15.5,-21.5 + parent: 4812 + type: Transform + - uid: 5038 + components: + - pos: -17.5,-15.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5041 + components: + - pos: -11.5,-58.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5044 + components: + - pos: -19.5,-20.5 + parent: 4812 + type: Transform + - uid: 5052 + components: + - pos: -19.5,-18.5 + parent: 4812 + type: Transform + - uid: 5056 + components: + - pos: -18.5,-22.5 + parent: 4812 + type: Transform + - uid: 5057 + components: + - pos: -21.5,-12.5 + parent: 4812 + type: Transform + - uid: 5058 + components: + - pos: -20.5,-23.5 + parent: 4812 + type: Transform + - uid: 5229 + components: + - pos: -12.5,-50.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5232 + components: + - pos: -11.5,-50.5 + parent: 4812 + type: Transform + - uid: 5233 + components: + - pos: -10.5,-50.5 + parent: 4812 + type: Transform + - uid: 5234 + components: + - pos: -9.5,-50.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5235 + components: + - pos: -8.5,-50.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5236 + components: + - pos: -8.5,-43.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5237 + components: + - pos: -9.5,-43.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5238 + components: + - pos: -10.5,-43.5 + parent: 4812 + type: Transform + - uid: 5239 + components: + - pos: -11.5,-43.5 + parent: 4812 + type: Transform + - uid: 5240 + components: + - pos: -12.5,-43.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5241 + components: + - pos: -13.5,-43.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5242 + components: + - pos: -11.5,-53.5 + parent: 4812 + type: Transform + - uid: 5243 + components: + - pos: -11.5,-52.5 + parent: 4812 + type: Transform + - uid: 5244 + components: + - pos: -11.5,-51.5 + parent: 4812 + type: Transform + - uid: 5245 + components: + - pos: -11.5,-49.5 + parent: 4812 + type: Transform + - uid: 5246 + components: + - pos: -11.5,-48.5 + parent: 4812 + type: Transform + - uid: 5247 + components: + - pos: -11.5,-47.5 + parent: 4812 + type: Transform + - uid: 5248 + components: + - pos: -11.5,-46.5 + parent: 4812 + type: Transform + - uid: 5249 + components: + - pos: -11.5,-45.5 + parent: 4812 + type: Transform + - uid: 5250 + components: + - pos: -11.5,-44.5 + parent: 4812 + type: Transform + - uid: 5251 + components: + - pos: -11.5,-42.5 + parent: 4812 + type: Transform + - uid: 5252 + components: + - pos: -11.5,-41.5 + parent: 4812 + type: Transform + - uid: 5253 + components: + - pos: -11.5,-40.5 + parent: 4812 + type: Transform + - uid: 5254 + components: + - pos: -11.5,-39.5 + parent: 4812 + type: Transform + - uid: 5255 + components: + - pos: -11.5,-38.5 + parent: 4812 + type: Transform + - uid: 5256 + components: + - pos: -11.5,-37.5 + parent: 4812 + type: Transform + - uid: 5257 + components: + - pos: -11.5,-36.5 + parent: 4812 + type: Transform + - uid: 5258 + components: + - pos: -11.5,-35.5 + parent: 4812 + type: Transform + - uid: 5259 + components: + - pos: -11.5,-34.5 + parent: 4812 + type: Transform + - uid: 5260 + components: + - pos: -10.5,-34.5 + parent: 4812 + type: Transform + - uid: 5261 + components: + - pos: -9.5,-34.5 + parent: 4812 + type: Transform + - uid: 5262 + components: + - pos: -8.5,-34.5 + parent: 4812 + type: Transform + - uid: 5263 + components: + - pos: -7.5,-34.5 + parent: 4812 + type: Transform + - uid: 5264 + components: + - pos: -6.5,-34.5 + parent: 4812 + type: Transform + - uid: 5265 + components: + - pos: -5.5,-34.5 + parent: 4812 + type: Transform + - uid: 5266 + components: + - pos: -4.5,-34.5 + parent: 4812 + type: Transform + - uid: 5267 + components: + - pos: -3.5,-34.5 + parent: 4812 + type: Transform + - uid: 5268 + components: + - pos: -2.5,-34.5 + parent: 4812 + type: Transform + - uid: 5269 + components: + - pos: -1.5,-34.5 + parent: 4812 + type: Transform + - uid: 5270 + components: + - pos: -0.5,-34.5 + parent: 4812 + type: Transform + - uid: 5271 + components: + - pos: 0.5,-34.5 + parent: 4812 + type: Transform + - uid: 5272 + components: + - pos: -8.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5364 + components: + - pos: -14.5,-22.5 + parent: 4812 + type: Transform + - uid: 6022 + components: + - pos: 6.5,-19.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6023 + components: + - pos: 6.5,-18.5 + parent: 4812 + type: Transform + - uid: 6024 + components: + - pos: 6.5,-17.5 + parent: 4812 + type: Transform + - uid: 6025 + components: + - pos: 6.5,-16.5 + parent: 4812 + type: Transform + - uid: 6026 + components: + - pos: 6.5,-15.5 + parent: 4812 + type: Transform + - uid: 6027 + components: + - pos: 5.5,-15.5 + parent: 4812 + type: Transform + - uid: 6028 + components: + - pos: 4.5,-15.5 + parent: 4812 + type: Transform + - uid: 6029 + components: + - pos: 5.5,-18.5 + parent: 4812 + type: Transform + - uid: 6030 + components: + - pos: 4.5,-18.5 + parent: 4812 + type: Transform + - uid: 6031 + components: + - pos: 13.5,-16.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6032 + components: + - pos: 6.5,-21.5 + parent: 4812 + type: Transform + - uid: 6033 + components: + - pos: 5.5,-21.5 + parent: 4812 + type: Transform + - uid: 6034 + components: + - pos: 5.5,-22.5 + parent: 4812 + type: Transform + - uid: 6035 + components: + - pos: 5.5,-23.5 + parent: 4812 + type: Transform + - uid: 6036 + components: + - pos: 5.5,-24.5 + parent: 4812 + type: Transform + - uid: 6037 + components: + - pos: 5.5,-25.5 + parent: 4812 + type: Transform + - uid: 6038 + components: + - pos: 5.5,-26.5 + parent: 4812 + type: Transform + - uid: 6039 + components: + - pos: 5.5,-27.5 + parent: 4812 + type: Transform + - uid: 6040 + components: + - pos: 4.5,-27.5 + parent: 4812 + type: Transform + - uid: 6041 + components: + - pos: 4.5,-24.5 + parent: 4812 + type: Transform + - uid: 6042 + components: + - pos: 4.5,-21.5 + parent: 4812 + type: Transform + - uid: 6043 + components: + - pos: 7.5,-21.5 + parent: 4812 + type: Transform + - uid: 6044 + components: + - pos: 8.5,-21.5 + parent: 4812 + type: Transform + - uid: 6045 + components: + - pos: 9.5,-21.5 + parent: 4812 + type: Transform + - uid: 6046 + components: + - pos: 10.5,-21.5 + parent: 4812 + type: Transform + - uid: 6047 + components: + - pos: 11.5,-21.5 + parent: 4812 + type: Transform + - uid: 6048 + components: + - pos: 12.5,-21.5 + parent: 4812 + type: Transform + - uid: 6049 + components: + - pos: 13.5,-21.5 + parent: 4812 + type: Transform + - uid: 6050 + components: + - pos: 14.5,-21.5 + parent: 4812 + type: Transform + - uid: 6052 + components: + - pos: 13.5,-19.5 + parent: 4812 + type: Transform + - uid: 6053 + components: + - pos: 13.5,-18.5 + parent: 4812 + type: Transform + - uid: 6054 + components: + - pos: 13.5,-17.5 + parent: 4812 + type: Transform + - uid: 6055 + components: + - pos: 10.5,-20.5 + parent: 4812 + type: Transform + - uid: 6056 + components: + - pos: 10.5,-19.5 + parent: 4812 + type: Transform + - uid: 6057 + components: + - pos: 10.5,-18.5 + parent: 4812 + type: Transform + - uid: 6058 + components: + - pos: 10.5,-17.5 + parent: 4812 + type: Transform + - uid: 6059 + components: + - pos: 10.5,-16.5 + parent: 4812 + type: Transform + - uid: 6060 + components: + - pos: 10.5,-15.5 + parent: 4812 + type: Transform + - uid: 6061 + components: + - pos: 10.5,-14.5 + parent: 4812 + type: Transform + - uid: 6062 + components: + - pos: 11.5,-15.5 + parent: 4812 + type: Transform + - uid: 6063 + components: + - pos: 12.5,-15.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6066 + components: + - pos: 9.5,-22.5 + parent: 4812 + type: Transform + - uid: 6067 + components: + - pos: 9.5,-23.5 + parent: 4812 + type: Transform + - uid: 6068 + components: + - pos: 9.5,-24.5 + parent: 4812 + type: Transform + - uid: 6069 + components: + - pos: 9.5,-25.5 + parent: 4812 + type: Transform + - uid: 6070 + components: + - pos: 9.5,-26.5 + parent: 4812 + type: Transform + - uid: 6071 + components: + - pos: 9.5,-27.5 + parent: 4812 + type: Transform + - uid: 6072 + components: + - pos: 9.5,-28.5 + parent: 4812 + type: Transform + - uid: 6073 + components: + - pos: 10.5,-25.5 + parent: 4812 + type: Transform + - uid: 6074 + components: + - pos: 11.5,-25.5 + parent: 4812 + type: Transform + - uid: 6075 + components: + - pos: 12.5,-25.5 + parent: 4812 + type: Transform + - uid: 6076 + components: + - pos: 13.5,-25.5 + parent: 4812 + type: Transform + - uid: 6077 + components: + - pos: 14.5,-25.5 + parent: 4812 + type: Transform + - uid: 6078 + components: + - pos: 15.5,-25.5 + parent: 4812 + type: Transform + - uid: 6079 + components: + - pos: 28.5,-21.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6080 + components: + - pos: 28.5,-20.5 + parent: 4812 + type: Transform + - uid: 6081 + components: + - pos: 28.5,-19.5 + parent: 4812 + type: Transform + - uid: 6082 + components: + - pos: 26.5,-19.5 + parent: 4812 + type: Transform + - uid: 6083 + components: + - pos: 27.5,-19.5 + parent: 4812 + type: Transform + - uid: 6084 + components: + - pos: 26.5,-18.5 + parent: 4812 + type: Transform + - uid: 6085 + components: + - pos: 25.5,-18.5 + parent: 4812 + type: Transform + - uid: 6086 + components: + - pos: 28.5,-22.5 + parent: 4812 + type: Transform + - uid: 6087 + components: + - pos: 27.5,-22.5 + parent: 4812 + type: Transform + - uid: 6088 + components: + - pos: 26.5,-22.5 + parent: 4812 + type: Transform + - uid: 6089 + components: + - pos: 25.5,-22.5 + parent: 4812 + type: Transform + - uid: 6090 + components: + - pos: 24.5,-22.5 + parent: 4812 + type: Transform + - uid: 6091 + components: + - pos: 23.5,-22.5 + parent: 4812 + type: Transform + - uid: 6092 + components: + - pos: 22.5,-22.5 + parent: 4812 + type: Transform + - uid: 6093 + components: + - pos: 21.5,-22.5 + parent: 4812 + type: Transform + - uid: 6094 + components: + - pos: 21.5,-21.5 + parent: 4812 + type: Transform + - uid: 6095 + components: + - pos: 20.5,-21.5 + parent: 4812 + type: Transform + - uid: 6096 + components: + - pos: 19.5,-21.5 + parent: 4812 + type: Transform + - uid: 6097 + components: + - pos: 18.5,-21.5 + parent: 4812 + type: Transform + - uid: 6098 + components: + - pos: 17.5,-21.5 + parent: 4812 + type: Transform + - uid: 6099 + components: + - pos: 16.5,-21.5 + parent: 4812 + type: Transform + - uid: 6100 + components: + - pos: 10.5,-35.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6101 + components: + - pos: 16.5,-19.5 + parent: 4812 + type: Transform + - uid: 6102 + components: + - pos: 16.5,-18.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6103 + components: + - pos: 16.5,-17.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6104 + components: + - pos: 17.5,-17.5 + parent: 4812 + type: Transform + - uid: 6105 + components: + - pos: 18.5,-17.5 + parent: 4812 + type: Transform + - uid: 6106 + components: + - pos: 19.5,-17.5 + parent: 4812 + type: Transform + - uid: 6107 + components: + - pos: 19.5,-16.5 + parent: 4812 + type: Transform + - uid: 6108 + components: + - pos: 19.5,-15.5 + parent: 4812 + type: Transform + - uid: 6109 + components: + - pos: 19.5,-14.5 + parent: 4812 + type: Transform + - uid: 6110 + components: + - pos: 19.5,-13.5 + parent: 4812 + type: Transform + - uid: 6111 + components: + - pos: 19.5,-12.5 + parent: 4812 + type: Transform + - uid: 6112 + components: + - pos: 18.5,-12.5 + parent: 4812 + type: Transform + - uid: 6113 + components: + - pos: 18.5,-22.5 + parent: 4812 + type: Transform + - uid: 6114 + components: + - pos: 18.5,-23.5 + parent: 4812 + type: Transform + - uid: 6115 + components: + - pos: 18.5,-24.5 + parent: 4812 + type: Transform + - uid: 6116 + components: + - pos: 18.5,-25.5 + parent: 4812 + type: Transform + - uid: 6117 + components: + - pos: 18.5,-26.5 + parent: 4812 + type: Transform + - uid: 6119 + components: + - pos: 18.5,-28.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6120 + components: + - pos: 18.5,-29.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6121 + components: + - pos: 18.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6122 + components: + - pos: 18.5,-31.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6123 + components: + - pos: 18.5,-32.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6124 + components: + - pos: 18.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6125 + components: + - pos: 17.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6126 + components: + - pos: 16.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6127 + components: + - pos: 15.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6128 + components: + - pos: 15.5,-32.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6129 + components: + - pos: 15.5,-31.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6130 + components: + - pos: 15.5,-24.5 + parent: 4812 + type: Transform + - uid: 6131 + components: + - pos: 12.5,-24.5 + parent: 4812 + type: Transform + - uid: 6132 + components: + - pos: 15.5,-26.5 + parent: 4812 + type: Transform + - uid: 6133 + components: + - pos: 15.5,-27.5 + parent: 4812 + type: Transform + - uid: 6134 + components: + - pos: 12.5,-26.5 + parent: 4812 + type: Transform + - uid: 6135 + components: + - pos: 12.5,-27.5 + parent: 4812 + type: Transform + - uid: 6136 + components: + - pos: 28.5,-23.5 + parent: 4812 + type: Transform + - uid: 6137 + components: + - pos: 28.5,-24.5 + parent: 4812 + type: Transform + - uid: 6138 + components: + - pos: 28.5,-25.5 + parent: 4812 + type: Transform + - uid: 6139 + components: + - pos: 28.5,-26.5 + parent: 4812 + type: Transform + - uid: 6140 + components: + - pos: 28.5,-27.5 + parent: 4812 + type: Transform + - uid: 6141 + components: + - pos: 28.5,-28.5 + parent: 4812 + type: Transform + - uid: 6142 + components: + - pos: 28.5,-29.5 + parent: 4812 + type: Transform + - uid: 6143 + components: + - pos: 27.5,-29.5 + parent: 4812 + type: Transform + - uid: 6144 + components: + - pos: 26.5,-29.5 + parent: 4812 + type: Transform + - uid: 6145 + components: + - pos: 25.5,-29.5 + parent: 4812 + type: Transform + - uid: 6146 + components: + - pos: 24.5,-29.5 + parent: 4812 + type: Transform + - uid: 6147 + components: + - pos: 23.5,-29.5 + parent: 4812 + type: Transform + - uid: 6148 + components: + - pos: 22.5,-29.5 + parent: 4812 + type: Transform + - uid: 6150 + components: + - pos: 30.5,-25.5 + parent: 4812 + type: Transform + - uid: 6151 + components: + - pos: 31.5,-25.5 + parent: 4812 + type: Transform + - uid: 6152 + components: + - pos: 32.5,-25.5 + parent: 4812 + type: Transform + - uid: 6153 + components: + - pos: 33.5,-25.5 + parent: 4812 + type: Transform + - uid: 6154 + components: + - pos: 34.5,-25.5 + parent: 4812 + type: Transform + - uid: 6155 + components: + - pos: 33.5,-26.5 + parent: 4812 + type: Transform + - uid: 6156 + components: + - pos: 33.5,-27.5 + parent: 4812 + type: Transform + - uid: 6157 + components: + - pos: 33.5,-24.5 + parent: 4812 + type: Transform + - uid: 6158 + components: + - pos: 27.5,-25.5 + parent: 4812 + type: Transform + - uid: 6159 + components: + - pos: 26.5,-25.5 + parent: 4812 + type: Transform + - uid: 6160 + components: + - pos: 25.5,-25.5 + parent: 4812 + type: Transform + - uid: 6161 + components: + - pos: 24.5,-25.5 + parent: 4812 + type: Transform + - uid: 6162 + components: + - pos: 23.5,-25.5 + parent: 4812 + type: Transform + - uid: 6163 + components: + - pos: 22.5,-25.5 + parent: 4812 + type: Transform + - uid: 6164 + components: + - pos: 16.5,-16.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6551 + components: + - pos: -23.5,-12.5 + parent: 4812 + type: Transform + - uid: 6552 + components: + - pos: -19.5,-17.5 + parent: 4812 + type: Transform + - uid: 6555 + components: + - pos: -19.5,-15.5 + parent: 4812 + type: Transform + - uid: 6557 + components: + - pos: -15.5,-14.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6610 + components: + - pos: -15.5,-16.5 + parent: 4812 + type: Transform + - uid: 6611 + components: + - pos: -15.5,-22.5 + parent: 4812 + type: Transform + - uid: 6616 + components: + - pos: -17.5,-22.5 + parent: 4812 + type: Transform + - uid: 6626 + components: + - pos: -15.5,-18.5 + parent: 4812 + type: Transform + - uid: 6627 + components: + - pos: -16.5,-22.5 + parent: 4812 + type: Transform + - uid: 6630 + components: + - pos: -18.5,-15.5 + parent: 4812 + type: Transform + - uid: 6681 + components: + - pos: -18.5,-23.5 + parent: 4812 + type: Transform + - uid: 6845 + components: + - pos: -17.5,-31.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6846 + components: + - pos: -17.5,-32.5 + parent: 4812 + type: Transform + - uid: 6847 + components: + - pos: -17.5,-33.5 + parent: 4812 + type: Transform + - uid: 6848 + components: + - pos: -17.5,-34.5 + parent: 4812 + type: Transform + - uid: 6849 + components: + - pos: -17.5,-35.5 + parent: 4812 + type: Transform + - uid: 6850 + components: + - pos: -17.5,-36.5 + parent: 4812 + type: Transform + - uid: 6851 + components: + - pos: -16.5,-34.5 + parent: 4812 + type: Transform + - uid: 6852 + components: + - pos: -15.5,-34.5 + parent: 4812 + type: Transform + - uid: 6853 + components: + - pos: -14.5,-34.5 + parent: 4812 + type: Transform + - uid: 6854 + components: + - pos: -14.5,-33.5 + parent: 4812 + type: Transform + - uid: 6855 + components: + - pos: -18.5,-34.5 + parent: 4812 + type: Transform + - uid: 6856 + components: + - pos: -19.5,-34.5 + parent: 4812 + type: Transform + - uid: 6857 + components: + - pos: -19.5,-35.5 + parent: 4812 + type: Transform + - uid: 6858 + components: + - pos: -19.5,-36.5 + parent: 4812 + type: Transform + - uid: 6859 + components: + - pos: -19.5,-37.5 + parent: 4812 + type: Transform + - uid: 6860 + components: + - pos: -19.5,-39.5 + parent: 4812 + type: Transform + - uid: 6861 + components: + - pos: -19.5,-38.5 + parent: 4812 + type: Transform + - uid: 6862 + components: + - pos: -20.5,-36.5 + parent: 4812 + type: Transform + - uid: 6863 + components: + - pos: -21.5,-36.5 + parent: 4812 + type: Transform + - uid: 6864 + components: + - pos: -22.5,-36.5 + parent: 4812 + type: Transform + - uid: 6865 + components: + - pos: -23.5,-36.5 + parent: 4812 + type: Transform + - uid: 6866 + components: + - pos: -24.5,-36.5 + parent: 4812 + type: Transform + - uid: 6867 + components: + - pos: -25.5,-36.5 + parent: 4812 + type: Transform + - uid: 6868 + components: + - pos: -26.5,-36.5 + parent: 4812 + type: Transform + - uid: 6869 + components: + - pos: -26.5,-35.5 + parent: 4812 + type: Transform + - uid: 6870 + components: + - pos: -26.5,-34.5 + parent: 4812 + type: Transform + - uid: 6871 + components: + - pos: -26.5,-33.5 + parent: 4812 + type: Transform + - uid: 6872 + components: + - pos: -26.5,-32.5 + parent: 4812 + type: Transform + - uid: 6873 + components: + - pos: -21.5,-35.5 + parent: 4812 + type: Transform + - uid: 6874 + components: + - pos: -21.5,-34.5 + parent: 4812 + type: Transform + - uid: 6875 + components: + - pos: -21.5,-33.5 + parent: 4812 + type: Transform + - uid: 6876 + components: + - pos: -21.5,-32.5 + parent: 4812 + type: Transform + - uid: 6877 + components: + - pos: -17.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6878 + components: + - pos: -16.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6879 + components: + - pos: -15.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6880 + components: + - pos: -14.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6881 + components: + - pos: -13.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6882 + components: + - pos: -12.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6883 + components: + - pos: -11.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6884 + components: + - pos: -10.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6886 + components: + - pos: -10.5,-31.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6887 + components: + - pos: -10.5,-32.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6888 + components: + - pos: -18.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6889 + components: + - pos: -19.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6890 + components: + - pos: -20.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6891 + components: + - pos: -21.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6892 + components: + - pos: -22.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6893 + components: + - pos: -23.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6894 + components: + - pos: -24.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7091 + components: + - pos: -24.5,-10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7092 + components: + - pos: -24.5,-11.5 + parent: 4812 + type: Transform + - uid: 7093 + components: + - pos: -24.5,-12.5 + parent: 4812 + type: Transform + - uid: 7094 + components: + - pos: -24.5,-13.5 + parent: 4812 + type: Transform + - uid: 7095 + components: + - pos: -24.5,-14.5 + parent: 4812 + type: Transform + - uid: 7096 + components: + - pos: -24.5,-15.5 + parent: 4812 + type: Transform + - uid: 7097 + components: + - pos: -24.5,-16.5 + parent: 4812 + type: Transform + - uid: 7098 + components: + - pos: -25.5,-16.5 + parent: 4812 + type: Transform + - uid: 7099 + components: + - pos: -26.5,-16.5 + parent: 4812 + type: Transform + - uid: 7100 + components: + - pos: -27.5,-16.5 + parent: 4812 + type: Transform + - uid: 7101 + components: + - pos: -28.5,-16.5 + parent: 4812 + type: Transform + - uid: 7102 + components: + - pos: -29.5,-16.5 + parent: 4812 + type: Transform + - uid: 7103 + components: + - pos: -30.5,-16.5 + parent: 4812 + type: Transform + - uid: 7104 + components: + - pos: -31.5,-16.5 + parent: 4812 + type: Transform + - uid: 7105 + components: + - pos: -32.5,-16.5 + parent: 4812 + type: Transform + - uid: 7106 + components: + - pos: -32.5,-17.5 + parent: 4812 + type: Transform + - uid: 7107 + components: + - pos: -32.5,-18.5 + parent: 4812 + type: Transform + - uid: 7108 + components: + - pos: -32.5,-19.5 + parent: 4812 + type: Transform + - uid: 7109 + components: + - pos: -31.5,-19.5 + parent: 4812 + type: Transform + - uid: 7110 + components: + - pos: -31.5,-20.5 + parent: 4812 + type: Transform + - uid: 7111 + components: + - pos: -31.5,-21.5 + parent: 4812 + type: Transform + - uid: 7112 + components: + - pos: -31.5,-22.5 + parent: 4812 + type: Transform + - uid: 7113 + components: + - pos: -28.5,-17.5 + parent: 4812 + type: Transform + - uid: 7114 + components: + - pos: -28.5,-18.5 + parent: 4812 + type: Transform + - uid: 7115 + components: + - pos: -28.5,-19.5 + parent: 4812 + type: Transform + - uid: 7116 + components: + - pos: -28.5,-20.5 + parent: 4812 + type: Transform + - uid: 7117 + components: + - pos: -25.5,-17.5 + parent: 4812 + type: Transform + - uid: 7118 + components: + - pos: -25.5,-18.5 + parent: 4812 + type: Transform + - uid: 7119 + components: + - pos: -25.5,-19.5 + parent: 4812 + type: Transform + - uid: 7120 + components: + - pos: -25.5,-20.5 + parent: 4812 + type: Transform + - uid: 7121 + components: + - pos: -24.5,-19.5 + parent: 4812 + type: Transform + - uid: 7122 + components: + - pos: -23.5,-19.5 + parent: 4812 + type: Transform + - uid: 7123 + components: + - pos: -23.5,-16.5 + parent: 4812 + type: Transform + - uid: 7124 + components: + - pos: -31.5,-15.5 + parent: 4812 + type: Transform + - uid: 7182 + components: + - pos: -10.5,-25.5 + parent: 4812 + type: Transform + - uid: 7232 + components: + - pos: -19.5,-23.5 + parent: 4812 + type: Transform + - uid: 7242 + components: + - pos: -9.5,-25.5 + parent: 4812 + type: Transform + - uid: 7243 + components: + - pos: -9.5,-24.5 + parent: 4812 + type: Transform + - uid: 7390 + components: + - pos: -11.5,-25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7420 + components: + - pos: -11.5,-22.5 + parent: 4812 + type: Transform + - uid: 7421 + components: + - pos: -11.5,-21.5 + parent: 4812 + type: Transform + - uid: 7422 + components: + - pos: -11.5,-20.5 + parent: 4812 + type: Transform + - uid: 7423 + components: + - pos: -10.5,-21.5 + parent: 4812 + type: Transform + - uid: 7424 + components: + - pos: -9.5,-21.5 + parent: 4812 + type: Transform + - uid: 7425 + components: + - pos: -8.5,-21.5 + parent: 4812 + type: Transform + - uid: 7489 + components: + - pos: -1.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7490 + components: + - pos: -1.5,-21.5 + parent: 4812 + type: Transform + - uid: 7491 + components: + - pos: -1.5,-22.5 + parent: 4812 + type: Transform + - uid: 7492 + components: + - pos: -2.5,-22.5 + parent: 4812 + type: Transform + - uid: 7493 + components: + - pos: -3.5,-22.5 + parent: 4812 + type: Transform + - uid: 7494 + components: + - pos: -4.5,-22.5 + parent: 4812 + type: Transform + - uid: 7495 + components: + - pos: -5.5,-22.5 + parent: 4812 + type: Transform + - uid: 7496 + components: + - pos: -5.5,-21.5 + parent: 4812 + type: Transform + - uid: 7497 + components: + - pos: -5.5,-20.5 + parent: 4812 + type: Transform + - uid: 7498 + components: + - pos: -5.5,-19.5 + parent: 4812 + type: Transform + - uid: 7499 + components: + - pos: -5.5,-18.5 + parent: 4812 + type: Transform + - uid: 7500 + components: + - pos: -5.5,-17.5 + parent: 4812 + type: Transform + - uid: 7501 + components: + - pos: -5.5,-16.5 + parent: 4812 + type: Transform + - uid: 7502 + components: + - pos: -5.5,-15.5 + parent: 4812 + type: Transform + - uid: 7503 + components: + - pos: -1.5,-22.5 + parent: 4812 + type: Transform + - uid: 7504 + components: + - pos: 0.5,-22.5 + parent: 4812 + type: Transform + - uid: 7505 + components: + - pos: 0.5,-22.5 + parent: 4812 + type: Transform + - uid: 7506 + components: + - pos: -0.5,-22.5 + parent: 4812 + type: Transform + - uid: 7507 + components: + - pos: 0.5,-21.5 + parent: 4812 + type: Transform + - uid: 7508 + components: + - pos: 0.5,-20.5 + parent: 4812 + type: Transform + - uid: 7509 + components: + - pos: 0.5,-19.5 + parent: 4812 + type: Transform + - uid: 7510 + components: + - pos: 0.5,-18.5 + parent: 4812 + type: Transform + - uid: 7511 + components: + - pos: 0.5,-17.5 + parent: 4812 + type: Transform + - uid: 7512 + components: + - pos: 0.5,-16.5 + parent: 4812 + type: Transform + - uid: 7513 + components: + - pos: 0.5,-15.5 + parent: 4812 + type: Transform + - uid: 7514 + components: + - pos: -1.5,-19.5 + parent: 4812 + type: Transform + - uid: 7515 + components: + - pos: -1.5,-18.5 + parent: 4812 + type: Transform + - uid: 7516 + components: + - pos: -1.5,-17.5 + parent: 4812 + type: Transform + - uid: 7517 + components: + - pos: -2.5,-17.5 + parent: 4812 + type: Transform + - uid: 7518 + components: + - pos: -2.5,-16.5 + parent: 4812 + type: Transform + - uid: 7519 + components: + - pos: -2.5,-15.5 + parent: 4812 + type: Transform + - uid: 7520 + components: + - pos: -5.5,-14.5 + parent: 4812 + type: Transform + - uid: 7521 + components: + - pos: -5.5,-13.5 + parent: 4812 + type: Transform + - uid: 7522 + components: + - pos: -4.5,-13.5 + parent: 4812 + type: Transform + - uid: 7523 + components: + - pos: 0.5,-13.5 + parent: 4812 + type: Transform + - uid: 7524 + components: + - pos: 0.5,-14.5 + parent: 4812 + type: Transform + - uid: 7525 + components: + - pos: -0.5,-13.5 + parent: 4812 + type: Transform + - uid: 7526 + components: + - pos: 0.5,-23.5 + parent: 4812 + type: Transform + - uid: 7527 + components: + - pos: 0.5,-24.5 + parent: 4812 + type: Transform + - uid: 7528 + components: + - pos: 0.5,-25.5 + parent: 4812 + type: Transform + - uid: 7529 + components: + - pos: 0.5,-26.5 + parent: 4812 + type: Transform + - uid: 7530 + components: + - pos: 0.5,-27.5 + parent: 4812 + type: Transform + - uid: 7531 + components: + - pos: 0.5,-28.5 + parent: 4812 + type: Transform + - uid: 7532 + components: + - pos: 0.5,-29.5 + parent: 4812 + type: Transform + - uid: 7533 + components: + - pos: 0.5,-30.5 + parent: 4812 + type: Transform + - uid: 7534 + components: + - pos: 0.5,-31.5 + parent: 4812 + type: Transform + - uid: 7535 + components: + - pos: -5.5,-23.5 + parent: 4812 + type: Transform + - uid: 7536 + components: + - pos: -5.5,-24.5 + parent: 4812 + type: Transform + - uid: 7537 + components: + - pos: -5.5,-25.5 + parent: 4812 + type: Transform + - uid: 7538 + components: + - pos: -5.5,-26.5 + parent: 4812 + type: Transform + - uid: 7539 + components: + - pos: -5.5,-27.5 + parent: 4812 + type: Transform + - uid: 7540 + components: + - pos: -5.5,-28.5 + parent: 4812 + type: Transform + - uid: 7541 + components: + - pos: -5.5,-29.5 + parent: 4812 + type: Transform + - uid: 7542 + components: + - pos: -5.5,-30.5 + parent: 4812 + type: Transform + - uid: 7543 + components: + - pos: -5.5,-31.5 + parent: 4812 + type: Transform + - uid: 7544 + components: + - pos: -4.5,-31.5 + parent: 4812 + type: Transform + - uid: 7545 + components: + - pos: -4.5,-25.5 + parent: 4812 + type: Transform + - uid: 7546 + components: + - pos: -3.5,-25.5 + parent: 4812 + type: Transform + - uid: 7547 + components: + - pos: -2.5,-25.5 + parent: 4812 + type: Transform + - uid: 7548 + components: + - pos: -2.5,-26.5 + parent: 4812 + type: Transform + - uid: 7549 + components: + - pos: -2.5,-27.5 + parent: 4812 + type: Transform + - uid: 7550 + components: + - pos: -2.5,-28.5 + parent: 4812 + type: Transform + - uid: 7551 + components: + - pos: -2.5,-29.5 + parent: 4812 + type: Transform + - uid: 7552 + components: + - pos: -0.5,-31.5 + parent: 4812 + type: Transform + - uid: 7553 + components: + - pos: -1.5,-31.5 + parent: 4812 + type: Transform + - uid: 7554 + components: + - pos: -2.5,-31.5 + parent: 4812 + type: Transform + - uid: 7555 + components: + - pos: -5.5,-12.5 + parent: 4812 + type: Transform + - uid: 7557 + components: + - pos: -7.5,-12.5 + parent: 4812 + type: Transform + - uid: 7558 + components: + - pos: -8.5,-12.5 + parent: 4812 + type: Transform + - uid: 7559 + components: + - pos: -9.5,-12.5 + parent: 4812 + type: Transform + - uid: 7560 + components: + - pos: -10.5,-12.5 + parent: 4812 + type: Transform + - uid: 7561 + components: + - pos: -11.5,-12.5 + parent: 4812 + type: Transform + - uid: 7562 + components: + - pos: -12.5,-12.5 + parent: 4812 + type: Transform + - uid: 7563 + components: + - pos: -13.5,-12.5 + parent: 4812 + type: Transform + - uid: 7564 + components: + - pos: -14.5,-12.5 + parent: 4812 + type: Transform + - uid: 7565 + components: + - pos: -15.5,-12.5 + parent: 4812 + type: Transform + - uid: 7566 + components: + - pos: -16.5,-12.5 + parent: 4812 + type: Transform + - uid: 7567 + components: + - pos: -17.5,-12.5 + parent: 4812 + type: Transform + - uid: 7568 + components: + - pos: -18.5,-12.5 + parent: 4812 + type: Transform + - uid: 7569 + components: + - pos: -19.5,-12.5 + parent: 4812 + type: Transform + - uid: 7605 + components: + - pos: -9.5,-20.5 + parent: 4812 + type: Transform + - uid: 7606 + components: + - pos: -9.5,-19.5 + parent: 4812 + type: Transform + - uid: 7607 + components: + - pos: -9.5,-18.5 + parent: 4812 + type: Transform + - uid: 7608 + components: + - pos: -9.5,-17.5 + parent: 4812 + type: Transform + - uid: 7609 + components: + - pos: -9.5,-16.5 + parent: 4812 + type: Transform + - uid: 7610 + components: + - pos: -9.5,-15.5 + parent: 4812 + type: Transform + - uid: 7611 + components: + - pos: -10.5,-17.5 + parent: 4812 + type: Transform + - uid: 7612 + components: + - pos: -11.5,-17.5 + parent: 4812 + type: Transform + - uid: 7613 + components: + - pos: -10.5,-15.5 + parent: 4812 + type: Transform + - uid: 7614 + components: + - pos: -11.5,-15.5 + parent: 4812 + type: Transform + - uid: 8061 + components: + - pos: -36.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8062 + components: + - pos: -36.5,12.5 + parent: 4812 + type: Transform + - uid: 8063 + components: + - pos: -36.5,11.5 + parent: 4812 + type: Transform + - uid: 8064 + components: + - pos: -37.5,11.5 + parent: 4812 + type: Transform + - uid: 8065 + components: + - pos: -38.5,11.5 + parent: 4812 + type: Transform + - uid: 8066 + components: + - pos: -35.5,11.5 + parent: 4812 + type: Transform + - uid: 8067 + components: + - pos: -34.5,11.5 + parent: 4812 + type: Transform + - uid: 8068 + components: + - pos: -33.5,11.5 + parent: 4812 + type: Transform + - uid: 8069 + components: + - pos: -32.5,11.5 + parent: 4812 + type: Transform + - uid: 8070 + components: + - pos: -31.5,11.5 + parent: 4812 + type: Transform + - uid: 8071 + components: + - pos: -30.5,11.5 + parent: 4812 + type: Transform + - uid: 8072 + components: + - pos: -29.5,11.5 + parent: 4812 + type: Transform + - uid: 8073 + components: + - pos: -29.5,12.5 + parent: 4812 + type: Transform + - uid: 8074 + components: + - pos: -29.5,13.5 + parent: 4812 + type: Transform + - uid: 8075 + components: + - pos: -29.5,14.5 + parent: 4812 + type: Transform + - uid: 8076 + components: + - pos: -29.5,15.5 + parent: 4812 + type: Transform + - uid: 8077 + components: + - pos: -29.5,16.5 + parent: 4812 + type: Transform + - uid: 8078 + components: + - pos: -29.5,17.5 + parent: 4812 + type: Transform + - uid: 8079 + components: + - pos: -29.5,18.5 + parent: 4812 + type: Transform + - uid: 8080 + components: + - pos: -29.5,19.5 + parent: 4812 + type: Transform + - uid: 8081 + components: + - pos: -28.5,19.5 + parent: 4812 + type: Transform + - uid: 8082 + components: + - pos: -27.5,19.5 + parent: 4812 + type: Transform + - uid: 8083 + components: + - pos: -26.5,19.5 + parent: 4812 + type: Transform + - uid: 8084 + components: + - pos: -28.5,16.5 + parent: 4812 + type: Transform + - uid: 8085 + components: + - pos: -27.5,16.5 + parent: 4812 + type: Transform + - uid: 8086 + components: + - pos: -26.5,16.5 + parent: 4812 + type: Transform + - uid: 8087 + components: + - pos: -28.5,13.5 + parent: 4812 + type: Transform + - uid: 8088 + components: + - pos: -27.5,13.5 + parent: 4812 + type: Transform + - uid: 8089 + components: + - pos: -26.5,13.5 + parent: 4812 + type: Transform + - uid: 8090 + components: + - pos: -25.5,13.5 + parent: 4812 + type: Transform + - uid: 8091 + components: + - pos: -28.5,11.5 + parent: 4812 + type: Transform + - uid: 8092 + components: + - pos: -27.5,11.5 + parent: 4812 + type: Transform + - uid: 8093 + components: + - pos: -26.5,11.5 + parent: 4812 + type: Transform + - uid: 8094 + components: + - pos: -25.5,11.5 + parent: 4812 + type: Transform + - uid: 8095 + components: + - pos: -34.5,12.5 + parent: 4812 + type: Transform + - uid: 8096 + components: + - pos: -34.5,13.5 + parent: 4812 + type: Transform + - uid: 8097 + components: + - pos: -34.5,14.5 + parent: 4812 + type: Transform + - uid: 8098 + components: + - pos: -34.5,15.5 + parent: 4812 + type: Transform + - uid: 8099 + components: + - pos: -34.5,16.5 + parent: 4812 + type: Transform + - uid: 8100 + components: + - pos: -34.5,17.5 + parent: 4812 + type: Transform + - uid: 8101 + components: + - pos: -34.5,18.5 + parent: 4812 + type: Transform + - uid: 8102 + components: + - pos: -34.5,19.5 + parent: 4812 + type: Transform + - uid: 8103 + components: + - pos: -34.5,20.5 + parent: 4812 + type: Transform + - uid: 8104 + components: + - pos: -35.5,20.5 + parent: 4812 + type: Transform + - uid: 8105 + components: + - pos: -35.5,16.5 + parent: 4812 + type: Transform + - uid: 8106 + components: + - pos: -30.5,19.5 + parent: 4812 + type: Transform + - uid: 8107 + components: + - pos: -30.5,15.5 + parent: 4812 + type: Transform + - uid: 8108 + components: + - pos: -29.5,20.5 + parent: 4812 + type: Transform + - uid: 8109 + components: + - pos: -29.5,21.5 + parent: 4812 + type: Transform + - uid: 8110 + components: + - pos: -29.5,22.5 + parent: 4812 + type: Transform + - uid: 8111 + components: + - pos: -29.5,23.5 + parent: 4812 + type: Transform + - uid: 8112 + components: + - pos: -29.5,24.5 + parent: 4812 + type: Transform + - uid: 8113 + components: + - pos: -28.5,24.5 + parent: 4812 + type: Transform + - uid: 8114 + components: + - pos: -27.5,24.5 + parent: 4812 + type: Transform + - uid: 8115 + components: + - pos: -26.5,24.5 + parent: 4812 + type: Transform + - uid: 8116 + components: + - pos: -26.5,23.5 + parent: 4812 + type: Transform + - uid: 8117 + components: + - pos: -30.5,24.5 + parent: 4812 + type: Transform + - uid: 8118 + components: + - pos: -30.5,25.5 + parent: 4812 + type: Transform + - uid: 8119 + components: + - pos: -30.5,26.5 + parent: 4812 + type: Transform + - uid: 8120 + components: + - pos: -30.5,27.5 + parent: 4812 + type: Transform + - uid: 8121 + components: + - pos: -30.5,28.5 + parent: 4812 + type: Transform + - uid: 8122 + components: + - pos: -30.5,29.5 + parent: 4812 + type: Transform + - uid: 8123 + components: + - pos: -30.5,30.5 + parent: 4812 + type: Transform + - uid: 8124 + components: + - pos: -30.5,31.5 + parent: 4812 + type: Transform + - uid: 8125 + components: + - pos: -26.5,25.5 + parent: 4812 + type: Transform + - uid: 8126 + components: + - pos: -26.5,26.5 + parent: 4812 + type: Transform + - uid: 8127 + components: + - pos: -26.5,27.5 + parent: 4812 + type: Transform + - uid: 8128 + components: + - pos: -26.5,28.5 + parent: 4812 + type: Transform + - uid: 8129 + components: + - pos: -26.5,29.5 + parent: 4812 + type: Transform + - uid: 8130 + components: + - pos: -26.5,30.5 + parent: 4812 + type: Transform + - uid: 8131 + components: + - pos: -26.5,31.5 + parent: 4812 + type: Transform + - uid: 8132 + components: + - pos: -25.5,31.5 + parent: 4812 + type: Transform + - uid: 8133 + components: + - pos: -24.5,31.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8134 + components: + - pos: -27.5,31.5 + parent: 4812 + type: Transform + - uid: 8135 + components: + - pos: -27.5,32.5 + parent: 4812 + type: Transform + - uid: 8136 + components: + - pos: -27.5,33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8137 + components: + - pos: -28.5,33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8138 + components: + - pos: -29.5,33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8139 + components: + - pos: -31.5,31.5 + parent: 4812 + type: Transform + - uid: 8140 + components: + - pos: -29.5,31.5 + parent: 4812 + type: Transform + - uid: 8197 + components: + - pos: -19.5,21.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8198 + components: + - pos: -19.5,20.5 + parent: 4812 + type: Transform + - uid: 8199 + components: + - pos: -20.5,20.5 + parent: 4812 + type: Transform + - uid: 8200 + components: + - pos: -21.5,20.5 + parent: 4812 + type: Transform + - uid: 8201 + components: + - pos: -22.5,20.5 + parent: 4812 + type: Transform + - uid: 8202 + components: + - pos: -23.5,20.5 + parent: 4812 + type: Transform + - uid: 8203 + components: + - pos: -22.5,19.5 + parent: 4812 + type: Transform + - uid: 8204 + components: + - pos: -18.5,20.5 + parent: 4812 + type: Transform + - uid: 8205 + components: + - pos: -22.5,18.5 + parent: 4812 + type: Transform + - uid: 8206 + components: + - pos: -19.5,22.5 + parent: 4812 + type: Transform + - uid: 8207 + components: + - pos: -19.5,23.5 + parent: 4812 + type: Transform + - uid: 8208 + components: + - pos: -19.5,24.5 + parent: 4812 + type: Transform + - uid: 8209 + components: + - pos: -19.5,25.5 + parent: 4812 + type: Transform + - uid: 8210 + components: + - pos: -20.5,24.5 + parent: 4812 + type: Transform + - uid: 8211 + components: + - pos: -21.5,24.5 + parent: 4812 + type: Transform + - uid: 8212 + components: + - pos: -22.5,24.5 + parent: 4812 + type: Transform + - uid: 8213 + components: + - pos: -23.5,24.5 + parent: 4812 + type: Transform + - uid: 8214 + components: + - pos: -22.5,25.5 + parent: 4812 + type: Transform + - uid: 8215 + components: + - pos: -22.5,26.5 + parent: 4812 + type: Transform + - uid: 8216 + components: + - pos: -22.5,27.5 + parent: 4812 + type: Transform + - uid: 8217 + components: + - pos: -22.5,28.5 + parent: 4812 + type: Transform + - uid: 8218 + components: + - pos: -22.5,23.5 + parent: 4812 + type: Transform + - uid: 8219 + components: + - pos: -22.5,22.5 + parent: 4812 + type: Transform + - uid: 8220 + components: + - pos: -21.5,27.5 + parent: 4812 + type: Transform + - uid: 8221 + components: + - pos: -20.5,27.5 + parent: 4812 + type: Transform + - uid: 8222 + components: + - pos: -19.5,27.5 + parent: 4812 + type: Transform + - uid: 8223 + components: + - pos: -19.5,28.5 + parent: 4812 + type: Transform + - uid: 8224 + components: + - pos: -19.5,29.5 + parent: 4812 + type: Transform + - uid: 8319 + components: + - pos: -17.5,20.5 + parent: 4812 + type: Transform + - uid: 8320 + components: + - pos: -17.5,21.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8321 + components: + - pos: -17.5,22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8322 + components: + - pos: -17.5,23.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8323 + components: + - pos: -17.5,24.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8324 + components: + - pos: -17.5,25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8325 + components: + - pos: -17.5,26.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8326 + components: + - pos: -17.5,27.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8327 + components: + - pos: -17.5,28.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8908 + components: + - pos: -33.5,-24.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8909 + components: + - pos: -33.5,-25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8910 + components: + - pos: -32.5,-25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8911 + components: + - pos: -31.5,-25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8912 + components: + - pos: -30.5,-25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8913 + components: + - pos: -29.5,-25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8914 + components: + - pos: -29.5,-26.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8915 + components: + - pos: -29.5,-27.5 + parent: 4812 + type: Transform + - uid: 8916 + components: + - pos: -29.5,-28.5 + parent: 4812 + type: Transform + - uid: 8917 + components: + - pos: -29.5,-29.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8918 + components: + - pos: -29.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8919 + components: + - pos: -29.5,-31.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8920 + components: + - pos: -30.5,-31.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8921 + components: + - pos: -30.5,-32.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8922 + components: + - pos: -30.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8923 + components: + - pos: -30.5,-34.5 + parent: 4812 + type: Transform + - uid: 8924 + components: + - pos: -30.5,-35.5 + parent: 4812 + type: Transform + - uid: 8925 + components: + - pos: -30.5,-36.5 + parent: 4812 + type: Transform + - uid: 8926 + components: + - pos: -30.5,-37.5 + parent: 4812 + type: Transform + - uid: 8927 + components: + - pos: -30.5,-38.5 + parent: 4812 + type: Transform + - uid: 8928 + components: + - pos: -30.5,-39.5 + parent: 4812 + type: Transform + - uid: 8929 + components: + - pos: -30.5,-40.5 + parent: 4812 + type: Transform + - uid: 8930 + components: + - pos: -29.5,-39.5 + parent: 4812 + type: Transform + - uid: 8931 + components: + - pos: -28.5,-39.5 + parent: 4812 + type: Transform + - uid: 8932 + components: + - pos: -27.5,-39.5 + parent: 4812 + type: Transform + - uid: 8933 + components: + - pos: -31.5,-36.5 + parent: 4812 + type: Transform + - uid: 8934 + components: + - pos: -32.5,-36.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8935 + components: + - pos: -33.5,-36.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8936 + components: + - pos: -31.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8937 + components: + - pos: -32.5,-33.5 + parent: 4812 + type: Transform + - uid: 8938 + components: + - pos: -33.5,-33.5 + parent: 4812 + type: Transform + - uid: 8939 + components: + - pos: -34.5,-33.5 + parent: 4812 + type: Transform + - uid: 8940 + components: + - pos: -35.5,-33.5 + parent: 4812 + type: Transform + - uid: 8941 + components: + - pos: -36.5,-33.5 + parent: 4812 + type: Transform + - uid: 8942 + components: + - pos: -36.5,-34.5 + parent: 4812 + type: Transform + - uid: 8943 + components: + - pos: -37.5,-34.5 + parent: 4812 + type: Transform + - uid: 8944 + components: + - pos: -38.5,-34.5 + parent: 4812 + type: Transform + - uid: 8945 + components: + - pos: -39.5,-34.5 + parent: 4812 + type: Transform + - uid: 8947 + components: + - pos: -36.5,-35.5 + parent: 4812 + type: Transform + - uid: 8948 + components: + - pos: -36.5,-36.5 + parent: 4812 + type: Transform + - uid: 8949 + components: + - pos: -36.5,-37.5 + parent: 4812 + type: Transform + - uid: 8968 + components: + - pos: 13.5,-22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9050 + components: + - pos: -50.5,0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9090 + components: + - pos: 32.5,-29.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9288 + components: + - pos: -38.5,6.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9321 + components: + - pos: -38.5,5.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9322 + components: + - pos: -38.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9323 + components: + - pos: -38.5,3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9324 + components: + - pos: -38.5,2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9325 + components: + - pos: -38.5,1.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9326 + components: + - pos: -38.5,0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9327 + components: + - pos: -39.5,0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9328 + components: + - pos: -40.5,0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9329 + components: + - pos: -41.5,0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9330 + components: + - pos: -42.5,0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9331 + components: + - pos: -43.5,0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9332 + components: + - pos: -44.5,0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9333 + components: + - pos: -45.5,0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9334 + components: + - pos: -46.5,0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9335 + components: + - pos: -47.5,0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9336 + components: + - pos: -48.5,0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9337 + components: + - pos: -49.5,0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9338 + components: + - pos: -51.5,0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9339 + components: + - pos: -52.5,0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9340 + components: + - pos: -53.5,0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9341 + components: + - pos: -54.5,0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9342 + components: + - pos: -54.5,1.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9343 + components: + - pos: -54.5,2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9344 + components: + - pos: -54.5,3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9345 + components: + - pos: -54.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9346 + components: + - pos: -54.5,5.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9347 + components: + - pos: -54.5,6.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9348 + components: + - pos: -54.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9349 + components: + - pos: -54.5,8.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9350 + components: + - pos: -54.5,9.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9351 + components: + - pos: -54.5,10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9352 + components: + - pos: -54.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9353 + components: + - pos: -54.5,12.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9354 + components: + - pos: -53.5,12.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9355 + components: + - pos: -52.5,12.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9356 + components: + - pos: -51.5,12.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9357 + components: + - pos: -50.5,12.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9358 + components: + - pos: -49.5,12.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9359 + components: + - pos: -48.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9360 + components: + - pos: -48.5,12.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9361 + components: + - pos: -48.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9362 + components: + - pos: -48.5,10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9363 + components: + - pos: -48.5,9.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9364 + components: + - pos: -48.5,8.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9365 + components: + - pos: -48.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9366 + components: + - pos: -48.5,6.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9367 + components: + - pos: -48.5,5.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9368 + components: + - pos: -48.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9369 + components: + - pos: -48.5,3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9370 + components: + - pos: -48.5,2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9371 + components: + - pos: -48.5,1.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9372 + components: + - pos: -48.5,-0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9373 + components: + - pos: -48.5,-1.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9374 + components: + - pos: -48.5,-2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9375 + components: + - pos: -47.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9376 + components: + - pos: -46.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9377 + components: + - pos: -45.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9378 + components: + - pos: -44.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9379 + components: + - pos: -43.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9380 + components: + - pos: -42.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9381 + components: + - pos: -41.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9382 + components: + - pos: -44.5,1.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9383 + components: + - pos: -44.5,2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9384 + components: + - pos: -44.5,3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9385 + components: + - pos: -44.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9386 + components: + - pos: -44.5,5.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9387 + components: + - pos: -44.5,6.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9388 + components: + - pos: -44.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9389 + components: + - pos: -44.5,8.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9390 + components: + - pos: -44.5,10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9391 + components: + - pos: -44.5,9.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9392 + components: + - pos: -44.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9393 + components: + - pos: -37.5,2.5 + parent: 4812 + type: Transform + - uid: 9394 + components: + - pos: -36.5,2.5 + parent: 4812 + type: Transform + - uid: 9395 + components: + - pos: -35.5,2.5 + parent: 4812 + type: Transform + - uid: 9396 + components: + - pos: -34.5,2.5 + parent: 4812 + type: Transform + - uid: 9397 + components: + - pos: -33.5,2.5 + parent: 4812 + type: Transform + - uid: 9398 + components: + - pos: -32.5,2.5 + parent: 4812 + type: Transform + - uid: 9399 + components: + - pos: -31.5,2.5 + parent: 4812 + type: Transform + - uid: 9400 + components: + - pos: -30.5,2.5 + parent: 4812 + type: Transform + - uid: 9401 + components: + - pos: -29.5,2.5 + parent: 4812 + type: Transform + - uid: 9402 + components: + - pos: -33.5,3.5 + parent: 4812 + type: Transform + - uid: 9403 + components: + - pos: -33.5,4.5 + parent: 4812 + type: Transform + - uid: 9404 + components: + - pos: -29.5,3.5 + parent: 4812 + type: Transform + - uid: 9405 + components: + - pos: -29.5,4.5 + parent: 4812 + type: Transform + - uid: 9406 + components: + - pos: -39.5,5.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9407 + components: + - pos: -40.5,5.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9408 + components: + - pos: -41.5,5.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9409 + components: + - pos: -42.5,5.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9410 + components: + - pos: -43.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9411 + components: + - pos: -42.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9458 + components: + - pos: -50.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9459 + components: + - pos: -50.5,10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9460 + components: + - pos: -50.5,9.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9461 + components: + - pos: -50.5,8.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9462 + components: + - pos: -50.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9463 + components: + - pos: -50.5,6.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9464 + components: + - pos: -50.5,5.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9465 + components: + - pos: -50.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9466 + components: + - pos: -50.5,3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9467 + components: + - pos: -50.5,2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9468 + components: + - pos: -50.5,1.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9512 + components: + - pos: -36.5,-1.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9523 + components: + - pos: 17.5,-16.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9525 + components: + - pos: -47.5,-1.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9526 + components: + - pos: -47.5,-2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9527 + components: + - pos: -47.5,-3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9528 + components: + - pos: -47.5,-4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9529 + components: + - pos: -48.5,-4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9530 + components: + - pos: -49.5,-4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9540 + components: + - pos: -36.5,1.5 + parent: 4812 + type: Transform + - uid: 9542 + components: + - pos: -36.5,0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9547 + components: + - pos: -36.5,-0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9559 + components: + - pos: -39.5,-0.5 + parent: 4812 + type: Transform + - uid: 9560 + components: + - pos: -39.5,-1.5 + parent: 4812 + type: Transform + - uid: 9561 + components: + - pos: -39.5,-2.5 + parent: 4812 + type: Transform + - uid: 9562 + components: + - pos: -39.5,-3.5 + parent: 4812 + type: Transform + - uid: 9694 + components: + - pos: -36.5,-2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9695 + components: + - pos: -36.5,-3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9696 + components: + - pos: -36.5,-4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9697 + components: + - pos: -36.5,-5.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9708 + components: + - pos: -42.5,14.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9709 + components: + - pos: -42.5,15.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9710 + components: + - pos: -42.5,16.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9711 + components: + - pos: -42.5,17.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9712 + components: + - pos: -43.5,15.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9713 + components: + - pos: -44.5,15.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9714 + components: + - pos: -45.5,15.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9715 + components: + - pos: -46.5,15.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9716 + components: + - pos: -46.5,16.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9717 + components: + - pos: -46.5,17.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9718 + components: + - pos: -46.5,18.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10041 + components: + - pos: -41.5,-4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10042 + components: + - pos: -41.5,-5.5 + parent: 4812 + type: Transform + - uid: 10043 + components: + - pos: -41.5,-6.5 + parent: 4812 + type: Transform + - uid: 10044 + components: + - pos: -41.5,-7.5 + parent: 4812 + type: Transform + - uid: 10045 + components: + - pos: -41.5,-8.5 + parent: 4812 + type: Transform + - uid: 10046 + components: + - pos: -42.5,-8.5 + parent: 4812 + type: Transform + - uid: 10047 + components: + - pos: -43.5,-8.5 + parent: 4812 + type: Transform + - uid: 10048 + components: + - pos: -44.5,-8.5 + parent: 4812 + type: Transform + - uid: 10049 + components: + - pos: -44.5,-9.5 + parent: 4812 + type: Transform + - uid: 10050 + components: + - pos: -44.5,-10.5 + parent: 4812 + type: Transform + - uid: 10051 + components: + - pos: -44.5,-11.5 + parent: 4812 + type: Transform + - uid: 10052 + components: + - pos: -44.5,-12.5 + parent: 4812 + type: Transform + - uid: 10053 + components: + - pos: -44.5,-13.5 + parent: 4812 + type: Transform + - uid: 10054 + components: + - pos: -44.5,-14.5 + parent: 4812 + type: Transform + - uid: 10055 + components: + - pos: -44.5,-15.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10056 + components: + - pos: -44.5,-16.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10057 + components: + - pos: -44.5,-17.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10058 + components: + - pos: -44.5,-18.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10059 + components: + - pos: -45.5,-21.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10060 + components: + - pos: -45.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10061 + components: + - pos: -43.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10062 + components: + - pos: -46.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10063 + components: + - pos: -47.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10064 + components: + - pos: -45.5,-12.5 + parent: 4812 + type: Transform + - uid: 10065 + components: + - pos: -46.5,-12.5 + parent: 4812 + type: Transform + - uid: 10066 + components: + - pos: -47.5,-12.5 + parent: 4812 + type: Transform + - uid: 10067 + components: + - pos: -48.5,-12.5 + parent: 4812 + type: Transform + - uid: 10068 + components: + - pos: -49.5,-12.5 + parent: 4812 + type: Transform + - uid: 10070 + components: + - pos: -51.5,-12.5 + parent: 4812 + type: Transform + - uid: 10071 + components: + - pos: -52.5,-12.5 + parent: 4812 + type: Transform + - uid: 10072 + components: + - pos: -53.5,-12.5 + parent: 4812 + type: Transform + - uid: 10073 + components: + - pos: -53.5,-11.5 + parent: 4812 + type: Transform + - uid: 10074 + components: + - pos: -53.5,-10.5 + parent: 4812 + type: Transform + - uid: 10075 + components: + - pos: -53.5,-9.5 + parent: 4812 + type: Transform + - uid: 10076 + components: + - pos: -53.5,-8.5 + parent: 4812 + type: Transform + - uid: 10077 + components: + - pos: -49.5,-11.5 + parent: 4812 + type: Transform + - uid: 10078 + components: + - pos: -49.5,-10.5 + parent: 4812 + type: Transform + - uid: 10079 + components: + - pos: -49.5,-9.5 + parent: 4812 + type: Transform + - uid: 10080 + components: + - pos: -49.5,-8.5 + parent: 4812 + type: Transform + - uid: 10081 + components: + - pos: -49.5,-7.5 + parent: 4812 + type: Transform + - uid: 10082 + components: + - pos: -40.5,-8.5 + parent: 4812 + type: Transform + - uid: 10083 + components: + - pos: -40.5,-9.5 + parent: 4812 + type: Transform + - uid: 10084 + components: + - pos: -40.5,-10.5 + parent: 4812 + type: Transform + - uid: 10085 + components: + - pos: -40.5,-11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10086 + components: + - pos: -40.5,-12.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10087 + components: + - pos: -40.5,-13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10088 + components: + - pos: -40.5,-14.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10089 + components: + - pos: -40.5,-15.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10090 + components: + - pos: -40.5,-16.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10091 + components: + - pos: -40.5,-17.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10092 + components: + - pos: -39.5,-8.5 + parent: 4812 + type: Transform + - uid: 10093 + components: + - pos: -38.5,-8.5 + parent: 4812 + type: Transform + - uid: 10094 + components: + - pos: -37.5,-8.5 + parent: 4812 + type: Transform + - uid: 10095 + components: + - pos: -36.5,-8.5 + parent: 4812 + type: Transform + - uid: 10096 + components: + - pos: -35.5,-8.5 + parent: 4812 + type: Transform + - uid: 10097 + components: + - pos: -34.5,-8.5 + parent: 4812 + type: Transform + - uid: 10098 + components: + - pos: -33.5,-8.5 + parent: 4812 + type: Transform + - uid: 10099 + components: + - pos: -32.5,-8.5 + parent: 4812 + type: Transform + - uid: 10100 + components: + - pos: -31.5,-8.5 + parent: 4812 + type: Transform + - uid: 10101 + components: + - pos: -30.5,-8.5 + parent: 4812 + type: Transform + - uid: 10102 + components: + - pos: -29.5,-8.5 + parent: 4812 + type: Transform + - uid: 10103 + components: + - pos: -33.5,-7.5 + parent: 4812 + type: Transform + - uid: 10104 + components: + - pos: -33.5,-6.5 + parent: 4812 + type: Transform + - uid: 10105 + components: + - pos: -33.5,-5.5 + parent: 4812 + type: Transform + - uid: 10106 + components: + - pos: -33.5,-4.5 + parent: 4812 + type: Transform + - uid: 10107 + components: + - pos: -33.5,-3.5 + parent: 4812 + type: Transform + - uid: 10108 + components: + - pos: -33.5,-2.5 + parent: 4812 + type: Transform + - uid: 10109 + components: + - pos: -33.5,-1.5 + parent: 4812 + type: Transform + - uid: 10110 + components: + - pos: -32.5,-6.5 + parent: 4812 + type: Transform + - uid: 10111 + components: + - pos: -31.5,-6.5 + parent: 4812 + type: Transform + - uid: 10112 + components: + - pos: -30.5,-6.5 + parent: 4812 + type: Transform + - uid: 10113 + components: + - pos: -29.5,-6.5 + parent: 4812 + type: Transform + - uid: 10114 + components: + - pos: -32.5,-2.5 + parent: 4812 + type: Transform + - uid: 10115 + components: + - pos: -31.5,-2.5 + parent: 4812 + type: Transform + - uid: 10116 + components: + - pos: -30.5,-2.5 + parent: 4812 + type: Transform + - uid: 10117 + components: + - pos: -29.5,-2.5 + parent: 4812 + type: Transform + - uid: 10118 + components: + - pos: -28.5,-2.5 + parent: 4812 + type: Transform + - uid: 10119 + components: + - pos: -27.5,-2.5 + parent: 4812 + type: Transform + - uid: 10120 + components: + - pos: -26.5,-2.5 + parent: 4812 + type: Transform + - uid: 10121 + components: + - pos: -25.5,-2.5 + parent: 4812 + type: Transform + - uid: 10122 + components: + - pos: -26.5,-1.5 + parent: 4812 + type: Transform + - uid: 10123 + components: + - pos: -26.5,-0.5 + parent: 4812 + type: Transform + - uid: 10124 + components: + - pos: -26.5,0.5 + parent: 4812 + type: Transform + - uid: 10125 + components: + - pos: -26.5,1.5 + parent: 4812 + type: Transform + - uid: 10126 + components: + - pos: -26.5,2.5 + parent: 4812 + type: Transform + - uid: 10127 + components: + - pos: -26.5,3.5 + parent: 4812 + type: Transform + - uid: 10128 + components: + - pos: -26.5,4.5 + parent: 4812 + type: Transform + - uid: 10129 + components: + - pos: -26.5,-3.5 + parent: 4812 + type: Transform + - uid: 10130 + components: + - pos: -26.5,-4.5 + parent: 4812 + type: Transform + - uid: 10131 + components: + - pos: -26.5,-5.5 + parent: 4812 + type: Transform + - uid: 10132 + components: + - pos: -26.5,-6.5 + parent: 4812 + type: Transform + - uid: 10133 + components: + - pos: -26.5,-7.5 + parent: 4812 + type: Transform + - uid: 10134 + components: + - pos: -26.5,-8.5 + parent: 4812 + type: Transform + - uid: 10135 + components: + - pos: -26.5,-9.5 + parent: 4812 + type: Transform + - uid: 10136 + components: + - pos: -36.5,-9.5 + parent: 4812 + type: Transform + - uid: 10137 + components: + - pos: -36.5,-10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10138 + components: + - pos: -36.5,-11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10139 + components: + - pos: -36.5,-12.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10140 + components: + - pos: -36.5,-13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10141 + components: + - pos: -36.5,-14.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10142 + components: + - pos: -36.5,-15.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10143 + components: + - pos: -36.5,-16.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10144 + components: + - pos: -36.5,-17.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10145 + components: + - pos: -36.5,-18.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10146 + components: + - pos: -35.5,-11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10147 + components: + - pos: -34.5,-11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10148 + components: + - pos: -33.5,-11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10149 + components: + - pos: -32.5,-11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10150 + components: + - pos: -31.5,-11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10151 + components: + - pos: -30.5,-11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10152 + components: + - pos: -29.5,-11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10190 + components: + - pos: -51.5,-21.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10191 + components: + - pos: -51.5,-22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10192 + components: + - pos: -52.5,-22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10193 + components: + - pos: -53.5,-22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10194 + components: + - pos: -54.5,-22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10195 + components: + - pos: -55.5,-22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10196 + components: + - pos: -51.5,-23.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10197 + components: + - pos: -51.5,-24.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10198 + components: + - pos: -51.5,-25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10199 + components: + - pos: -50.5,-22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10200 + components: + - pos: -49.5,-22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10201 + components: + - pos: -48.5,-22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10202 + components: + - pos: -47.5,-22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10203 + components: + - pos: -46.5,-22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10204 + components: + - pos: -45.5,-22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10205 + components: + - pos: -34.5,-31.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10206 + components: + - pos: -35.5,-31.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10207 + components: + - pos: -36.5,-31.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10208 + components: + - pos: -37.5,-31.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10209 + components: + - pos: -38.5,-31.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10210 + components: + - pos: -39.5,-31.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10211 + components: + - pos: -40.5,-31.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10212 + components: + - pos: -40.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10213 + components: + - pos: -40.5,-29.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10214 + components: + - pos: -40.5,-28.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10215 + components: + - pos: -40.5,-27.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10216 + components: + - pos: -40.5,-26.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10217 + components: + - pos: -40.5,-25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10218 + components: + - pos: -40.5,-24.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10219 + components: + - pos: -40.5,-23.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10220 + components: + - pos: -40.5,-22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10221 + components: + - pos: -40.5,-21.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10222 + components: + - pos: -41.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10223 + components: + - pos: -42.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10508 + components: + - pos: -34.5,-25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10509 + components: + - pos: -34.5,-26.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10510 + components: + - pos: -34.5,-27.5 + parent: 4812 + type: Transform + - uid: 10511 + components: + - pos: -34.5,-28.5 + parent: 4812 + type: Transform + - uid: 10512 + components: + - pos: -35.5,-28.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10513 + components: + - pos: -36.5,-28.5 + parent: 4812 + type: Transform + - uid: 10514 + components: + - pos: -37.5,-28.5 + parent: 4812 + type: Transform + - uid: 10515 + components: + - pos: -37.5,-27.5 + parent: 4812 + type: Transform + - uid: 10516 + components: + - pos: -37.5,-26.5 + parent: 4812 + type: Transform + - uid: 10517 + components: + - pos: -37.5,-25.5 + parent: 4812 + type: Transform + - uid: 10518 + components: + - pos: -37.5,-24.5 + parent: 4812 + type: Transform + - uid: 10519 + components: + - pos: -37.5,-23.5 + parent: 4812 + type: Transform + - uid: 10599 + components: + - pos: -44.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10615 + components: + - pos: -40.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10656 + components: + - pos: -54.5,-12.5 + parent: 4812 + type: Transform + - uid: 10657 + components: + - pos: -55.5,-12.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10665 + components: + - pos: -48.5,-7.5 + parent: 4812 + type: Transform + - uid: 10882 + components: + - pos: -38.5,7.5 + parent: 4812 + type: Transform + - uid: 10883 + components: + - pos: -37.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10884 + components: + - pos: -36.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10885 + components: + - pos: -35.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10886 + components: + - pos: -34.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10887 + components: + - pos: -33.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10888 + components: + - pos: -32.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10889 + components: + - pos: -31.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10890 + components: + - pos: -30.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10891 + components: + - pos: -26.5,5.5 + parent: 4812 + type: Transform + - uid: 10892 + components: + - pos: -26.5,6.5 + parent: 4812 + type: Transform + - uid: 10893 + components: + - pos: -26.5,7.5 + parent: 4812 + type: Transform + - uid: 10894 + components: + - pos: -26.5,8.5 + parent: 4812 + type: Transform + - uid: 10895 + components: + - pos: -25.5,8.5 + parent: 4812 + type: Transform + - uid: 10896 + components: + - pos: -22.5,9.5 + parent: 4812 + type: Transform + - uid: 10897 + components: + - pos: -22.5,8.5 + parent: 4812 + type: Transform + - uid: 11168 + components: + - pos: 9.5,-35.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11169 + components: + - pos: 9.5,-35.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11170 + components: + - pos: 9.5,-36.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11171 + components: + - pos: 9.5,-37.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11172 + components: + - pos: 9.5,-38.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11173 + components: + - pos: 9.5,-39.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11174 + components: + - pos: 9.5,-40.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11175 + components: + - pos: 9.5,-41.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11176 + components: + - pos: 9.5,-42.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11177 + components: + - pos: 10.5,-41.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11178 + components: + - pos: 11.5,-41.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11179 + components: + - pos: 12.5,-41.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11180 + components: + - pos: 13.5,-41.5 + parent: 4812 + type: Transform + - uid: 11181 + components: + - pos: 8.5,-41.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11182 + components: + - pos: 7.5,-41.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11183 + components: + - pos: 6.5,-41.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11184 + components: + - pos: 5.5,-41.5 + parent: 4812 + type: Transform + - uid: 11185 + components: + - pos: 10.5,-37.5 + parent: 4812 + type: Transform + - uid: 11186 + components: + - pos: 11.5,-37.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11187 + components: + - pos: 12.5,-37.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11188 + components: + - pos: 13.5,-37.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11189 + components: + - pos: 8.5,-37.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11190 + components: + - pos: 7.5,-37.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11191 + components: + - pos: 6.5,-37.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11192 + components: + - pos: 5.5,-37.5 + parent: 4812 + type: Transform + - uid: 11193 + components: + - pos: 9.5,-34.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11194 + components: + - pos: 9.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11195 + components: + - pos: 9.5,-32.5 + parent: 4812 + type: Transform + - uid: 11196 + components: + - pos: 9.5,-31.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11197 + components: + - pos: 8.5,-33.5 + parent: 4812 + type: Transform + - uid: 11198 + components: + - pos: 7.5,-33.5 + parent: 4812 + type: Transform + - uid: 11199 + components: + - pos: 6.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11200 + components: + - pos: 5.5,-33.5 + parent: 4812 + type: Transform + - uid: 11201 + components: + - pos: 10.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11202 + components: + - pos: 9.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11203 + components: + - pos: 8.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11204 + components: + - pos: 7.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11205 + components: + - pos: 6.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11206 + components: + - pos: 5.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11207 + components: + - pos: 4.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11208 + components: + - pos: 9.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11209 + components: + - pos: 10.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11210 + components: + - pos: 11.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11211 + components: + - pos: 12.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11212 + components: + - pos: 12.5,-31.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11213 + components: + - pos: 12.5,-32.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11214 + components: + - pos: 12.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11215 + components: + - pos: 14.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11274 + components: + - pos: 19.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11276 + components: + - pos: 19.5,-35.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11277 + components: + - pos: 19.5,-36.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11278 + components: + - pos: 19.5,-37.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11279 + components: + - pos: 19.5,-38.5 + parent: 4812 + type: Transform + - uid: 11280 + components: + - pos: 20.5,-37.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11281 + components: + - pos: 21.5,-37.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11282 + components: + - pos: 18.5,-37.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11283 + components: + - pos: 17.5,-37.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11310 + components: + - pos: 33.5,-37.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11311 + components: + - pos: 33.5,-28.5 + parent: 4812 + type: Transform + - uid: 11312 + components: + - pos: 33.5,-29.5 + parent: 4812 + type: Transform + - uid: 11313 + components: + - pos: 33.5,-31.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11314 + components: + - pos: 33.5,-32.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11315 + components: + - pos: 33.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11316 + components: + - pos: 32.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11317 + components: + - pos: 31.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11318 + components: + - pos: 30.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11319 + components: + - pos: 29.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11320 + components: + - pos: 28.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11321 + components: + - pos: 27.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11322 + components: + - pos: 26.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11323 + components: + - pos: 25.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11324 + components: + - pos: 25.5,-34.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11325 + components: + - pos: 24.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11441 + components: + - pos: 30.5,-37.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11442 + components: + - pos: 30.5,-38.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11443 + components: + - pos: 32.5,-38.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11444 + components: + - pos: 31.5,-38.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11445 + components: + - pos: 33.5,-38.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11446 + components: + - pos: 34.5,-38.5 + parent: 4812 + type: Transform + - uid: 11447 + components: + - pos: 33.5,-36.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11448 + components: + - pos: 34.5,-36.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11449 + components: + - pos: 35.5,-36.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11450 + components: + - pos: 36.5,-36.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11451 + components: + - pos: 37.5,-36.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11452 + components: + - pos: 32.5,-36.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11453 + components: + - pos: 31.5,-36.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11454 + components: + - pos: 31.5,-35.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11455 + components: + - pos: 31.5,-34.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11456 + components: + - pos: 33.5,-34.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11457 + components: + - pos: 34.5,-34.5 + parent: 4812 + type: Transform + - uid: 11458 + components: + - pos: 35.5,-34.5 + parent: 4812 + type: Transform + - uid: 11459 + components: + - pos: 36.5,-34.5 + parent: 4812 + type: Transform + - uid: 11460 + components: + - pos: 36.5,-33.5 + parent: 4812 + type: Transform + - uid: 11919 + components: + - pos: 13.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12048 + components: + - pos: -27.5,-23.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12049 + components: + - pos: -28.5,-22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12050 + components: + - pos: -28.5,-24.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12051 + components: + - pos: -28.5,-23.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound +- proto: CableApcStack + entities: + - uid: 6196 + components: + - pos: 7.451914,-16.53358 + parent: 4812 + type: Transform + - uid: 6249 + components: + - pos: 13.4315815,-23.512243 + parent: 4812 + type: Transform + - uid: 8585 + components: + - pos: -16.671284,7.8180285 + parent: 4812 + type: Transform + - uid: 11952 + components: + - pos: -10.655096,15.8788185 + parent: 4812 + type: Transform + - uid: 11953 + components: + - pos: -10.655096,15.8788185 + parent: 4812 + type: Transform +- proto: CableHV + entities: + - uid: 902 + components: + - pos: 8.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 943 + components: + - pos: -14.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 944 + components: + - pos: -14.5,8.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 945 + components: + - pos: -14.5,9.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 946 + components: + - pos: -14.5,10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 947 + components: + - pos: -14.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 948 + components: + - pos: -14.5,12.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 949 + components: + - pos: -14.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 950 + components: + - pos: -13.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 951 + components: + - pos: -12.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 952 + components: + - pos: -11.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 953 + components: + - pos: -10.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 954 + components: + - pos: -9.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 955 + components: + - pos: -8.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 956 + components: + - pos: -7.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 957 + components: + - pos: -6.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 958 + components: + - pos: -5.5,13.5 + parent: 4812 + type: Transform + - uid: 959 + components: + - pos: -4.5,13.5 + parent: 4812 + type: Transform + - uid: 960 + components: + - pos: -3.5,13.5 + parent: 4812 + type: Transform + - uid: 961 + components: + - pos: -2.5,13.5 + parent: 4812 + type: Transform + - uid: 962 + components: + - pos: -1.5,13.5 + parent: 4812 + type: Transform + - uid: 964 + components: + - pos: -0.5,14.5 + parent: 4812 + type: Transform + - uid: 965 + components: + - pos: 0.5,14.5 + parent: 4812 + type: Transform + - uid: 966 + components: + - pos: 1.5,14.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 967 + components: + - pos: 2.5,14.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 968 + components: + - pos: 2.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 969 + components: + - pos: 2.5,12.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 970 + components: + - pos: 2.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1003 + components: + - pos: 7.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1367 + components: + - pos: 6.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1368 + components: + - pos: 5.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2080 + components: + - pos: 6.5,31.5 + parent: 4812 + type: Transform + - uid: 2081 + components: + - pos: 6.5,32.5 + parent: 4812 + type: Transform + - uid: 2082 + components: + - pos: 5.5,32.5 + parent: 4812 + type: Transform + - uid: 2083 + components: + - pos: 4.5,32.5 + parent: 4812 + type: Transform + - uid: 2084 + components: + - pos: 3.5,32.5 + parent: 4812 + type: Transform + - uid: 2085 + components: + - pos: 3.5,31.5 + parent: 4812 + type: Transform + - uid: 2086 + components: + - pos: 3.5,30.5 + parent: 4812 + type: Transform + - uid: 2087 + components: + - pos: 3.5,29.5 + parent: 4812 + type: Transform + - uid: 2088 + components: + - pos: 3.5,28.5 + parent: 4812 + type: Transform + - uid: 2089 + components: + - pos: 3.5,27.5 + parent: 4812 + type: Transform + - uid: 2090 + components: + - pos: 3.5,26.5 + parent: 4812 + type: Transform + - uid: 2091 + components: + - pos: 3.5,25.5 + parent: 4812 + type: Transform + - uid: 2092 + components: + - pos: 3.5,24.5 + parent: 4812 + type: Transform + - uid: 2093 + components: + - pos: 3.5,23.5 + parent: 4812 + type: Transform + - uid: 2094 + components: + - pos: 3.5,22.5 + parent: 4812 + type: Transform + - uid: 2095 + components: + - pos: 3.5,21.5 + parent: 4812 + type: Transform + - uid: 2096 + components: + - pos: 3.5,20.5 + parent: 4812 + type: Transform + - uid: 2097 + components: + - pos: 3.5,19.5 + parent: 4812 + type: Transform + - uid: 2098 + components: + - pos: 2.5,19.5 + parent: 4812 + type: Transform + - uid: 2099 + components: + - pos: 1.5,19.5 + parent: 4812 + type: Transform + - uid: 2100 + components: + - pos: 0.5,19.5 + parent: 4812 + type: Transform + - uid: 2101 + components: + - pos: -0.5,19.5 + parent: 4812 + type: Transform + - uid: 2102 + components: + - pos: -1.5,19.5 + parent: 4812 + type: Transform + - uid: 2103 + components: + - pos: -1.5,18.5 + parent: 4812 + type: Transform + - uid: 2104 + components: + - pos: -1.5,17.5 + parent: 4812 + type: Transform + - uid: 2105 + components: + - pos: -1.5,16.5 + parent: 4812 + type: Transform + - uid: 2106 + components: + - pos: -1.5,15.5 + parent: 4812 + type: Transform + - uid: 2107 + components: + - pos: -1.5,14.5 + parent: 4812 + type: Transform + - uid: 2108 + components: + - pos: 3.5,33.5 + parent: 4812 + type: Transform + - uid: 2109 + components: + - pos: 3.5,34.5 + parent: 4812 + type: Transform + - uid: 2110 + components: + - pos: 3.5,35.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2111 + components: + - pos: 4.5,35.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2112 + components: + - pos: 4.5,34.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2113 + components: + - pos: 2.5,34.5 + parent: 4812 + type: Transform + - uid: 2114 + components: + - pos: 1.5,34.5 + parent: 4812 + type: Transform + - uid: 2115 + components: + - pos: 1.5,35.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2116 + components: + - pos: 1.5,36.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2117 + components: + - pos: 0.5,36.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2118 + components: + - pos: 0.5,35.5 + parent: 4812 + type: Transform + - uid: 2119 + components: + - pos: -0.5,35.5 + parent: 4812 + type: Transform + - uid: 2120 + components: + - pos: -1.5,35.5 + parent: 4812 + type: Transform + - uid: 2121 + components: + - pos: -2.5,35.5 + parent: 4812 + type: Transform + - uid: 2122 + components: + - pos: -3.5,35.5 + parent: 4812 + type: Transform + - uid: 2123 + components: + - pos: -4.5,35.5 + parent: 4812 + type: Transform + - uid: 2124 + components: + - pos: -5.5,35.5 + parent: 4812 + type: Transform + - uid: 2125 + components: + - pos: -3.5,36.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2126 + components: + - pos: -2.5,36.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2127 + components: + - pos: -1.5,36.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2128 + components: + - pos: -5.5,36.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2129 + components: + - pos: -6.5,36.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2130 + components: + - pos: -6.5,35.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2131 + components: + - pos: 6.5,33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2132 + components: + - pos: -6.5,34.5 + parent: 4812 + type: Transform + - uid: 2133 + components: + - pos: -7.5,34.5 + parent: 4812 + type: Transform + - uid: 2134 + components: + - pos: -8.5,34.5 + parent: 4812 + type: Transform + - uid: 2135 + components: + - pos: -9.5,34.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2136 + components: + - pos: -9.5,35.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2137 + components: + - pos: -8.5,35.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2138 + components: + - pos: -8.5,33.5 + parent: 4812 + type: Transform + - uid: 2139 + components: + - pos: -8.5,32.5 + parent: 4812 + type: Transform + - uid: 2140 + components: + - pos: -9.5,32.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2839 + components: + - pos: 13.5,32.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3047 + components: + - pos: 12.5,32.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3048 + components: + - pos: 12.5,31.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3049 + components: + - pos: 12.5,30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3050 + components: + - pos: 12.5,29.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3051 + components: + - pos: 12.5,28.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3052 + components: + - pos: 12.5,27.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3053 + components: + - pos: 12.5,26.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3054 + components: + - pos: 12.5,25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3055 + components: + - pos: 12.5,24.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3056 + components: + - pos: 12.5,23.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3057 + components: + - pos: 12.5,22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3058 + components: + - pos: 12.5,21.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3059 + components: + - pos: 12.5,20.5 + parent: 4812 + type: Transform + - uid: 3060 + components: + - pos: 12.5,19.5 + parent: 4812 + type: Transform + - uid: 3061 + components: + - pos: 4.5,19.5 + parent: 4812 + type: Transform + - uid: 3062 + components: + - pos: 5.5,19.5 + parent: 4812 + type: Transform + - uid: 3063 + components: + - pos: 6.5,19.5 + parent: 4812 + type: Transform + - uid: 3064 + components: + - pos: 7.5,19.5 + parent: 4812 + type: Transform + - uid: 3065 + components: + - pos: 8.5,19.5 + parent: 4812 + type: Transform + - uid: 3066 + components: + - pos: 9.5,19.5 + parent: 4812 + type: Transform + - uid: 3067 + components: + - pos: 10.5,19.5 + parent: 4812 + type: Transform + - uid: 3068 + components: + - pos: 11.5,19.5 + parent: 4812 + type: Transform + - uid: 3069 + components: + - pos: 3.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3070 + components: + - pos: 4.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3071 + components: + - pos: 5.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3072 + components: + - pos: 6.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3073 + components: + - pos: 7.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3074 + components: + - pos: 8.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3075 + components: + - pos: 9.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3076 + components: + - pos: 9.5,10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3077 + components: + - pos: 9.5,9.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3078 + components: + - pos: 9.5,8.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3079 + components: + - pos: 9.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3080 + components: + - pos: 9.5,6.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3081 + components: + - pos: 9.5,5.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3082 + components: + - pos: 9.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3083 + components: + - pos: 9.5,3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3084 + components: + - pos: 10.5,3.5 + parent: 4812 + type: Transform + - uid: 3085 + components: + - pos: 11.5,3.5 + parent: 4812 + type: Transform + - uid: 3086 + components: + - pos: 11.5,4.5 + parent: 4812 + type: Transform + - uid: 3087 + components: + - pos: 11.5,5.5 + parent: 4812 + type: Transform + - uid: 3088 + components: + - pos: 11.5,6.5 + parent: 4812 + type: Transform + - uid: 3089 + components: + - pos: 11.5,7.5 + parent: 4812 + type: Transform + - uid: 3090 + components: + - pos: 11.5,8.5 + parent: 4812 + type: Transform + - uid: 3091 + components: + - pos: 11.5,9.5 + parent: 4812 + type: Transform + - uid: 3092 + components: + - pos: 11.5,10.5 + parent: 4812 + type: Transform + - uid: 3093 + components: + - pos: 11.5,11.5 + parent: 4812 + type: Transform + - uid: 3094 + components: + - pos: 11.5,12.5 + parent: 4812 + type: Transform + - uid: 3095 + components: + - pos: 11.5,13.5 + parent: 4812 + type: Transform + - uid: 3096 + components: + - pos: 11.5,14.5 + parent: 4812 + type: Transform + - uid: 3097 + components: + - pos: 11.5,15.5 + parent: 4812 + type: Transform + - uid: 3098 + components: + - pos: 11.5,16.5 + parent: 4812 + type: Transform + - uid: 3099 + components: + - pos: 11.5,17.5 + parent: 4812 + type: Transform + - uid: 3100 + components: + - pos: 11.5,18.5 + parent: 4812 + type: Transform + - uid: 3789 + components: + - pos: 14.5,46.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3790 + components: + - pos: 14.5,45.5 + parent: 4812 + type: Transform + - uid: 3791 + components: + - pos: 14.5,44.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3792 + components: + - pos: 14.5,47.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3793 + components: + - pos: 13.5,47.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3853 + components: + - pos: 13.5,45.5 + parent: 4812 + type: Transform + - uid: 3854 + components: + - pos: 12.5,45.5 + parent: 4812 + type: Transform + - uid: 3855 + components: + - pos: 11.5,45.5 + parent: 4812 + type: Transform + - uid: 3856 + components: + - pos: 10.5,45.5 + parent: 4812 + type: Transform + - uid: 3857 + components: + - pos: 10.5,46.5 + parent: 4812 + type: Transform + - uid: 3858 + components: + - pos: 10.5,47.5 + parent: 4812 + type: Transform + - uid: 3859 + components: + - pos: 10.5,48.5 + parent: 4812 + type: Transform + - uid: 3860 + components: + - pos: 10.5,49.5 + parent: 4812 + type: Transform + - uid: 3861 + components: + - pos: 10.5,50.5 + parent: 4812 + type: Transform + - uid: 3862 + components: + - pos: 11.5,50.5 + parent: 4812 + type: Transform + - uid: 3863 + components: + - pos: 12.5,50.5 + parent: 4812 + type: Transform + - uid: 3864 + components: + - pos: 12.5,51.5 + parent: 4812 + type: Transform + - uid: 3865 + components: + - pos: 12.5,52.5 + parent: 4812 + type: Transform + - uid: 3866 + components: + - pos: 12.5,53.5 + parent: 4812 + type: Transform + - uid: 3867 + components: + - pos: 12.5,54.5 + parent: 4812 + type: Transform + - uid: 3868 + components: + - pos: 12.5,55.5 + parent: 4812 + type: Transform + - uid: 3869 + components: + - pos: 9.5,50.5 + parent: 4812 + type: Transform + - uid: 3870 + components: + - pos: 8.5,50.5 + parent: 4812 + type: Transform + - uid: 3871 + components: + - pos: 8.5,51.5 + parent: 4812 + type: Transform + - uid: 3872 + components: + - pos: 8.5,52.5 + parent: 4812 + type: Transform + - uid: 3873 + components: + - pos: 8.5,53.5 + parent: 4812 + type: Transform + - uid: 3874 + components: + - pos: 8.5,54.5 + parent: 4812 + type: Transform + - uid: 3875 + components: + - pos: 8.5,55.5 + parent: 4812 + type: Transform + - uid: 3876 + components: + - pos: 9.5,55.5 + parent: 4812 + type: Transform + - uid: 3877 + components: + - pos: 11.5,55.5 + parent: 4812 + type: Transform + - uid: 3878 + components: + - pos: 10.5,55.5 + parent: 4812 + type: Transform + - uid: 3879 + components: + - pos: 10.5,56.5 + parent: 4812 + type: Transform + - uid: 4235 + components: + - pos: 12.5,3.5 + parent: 4812 + type: Transform + - uid: 4236 + components: + - pos: 13.5,3.5 + parent: 4812 + type: Transform + - uid: 4237 + components: + - pos: 14.5,3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4238 + components: + - pos: 15.5,3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4239 + components: + - pos: 15.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4240 + components: + - pos: 17.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4241 + components: + - pos: 16.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4242 + components: + - pos: 18.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4243 + components: + - pos: 18.5,3.5 + parent: 4812 + type: Transform + - uid: 4244 + components: + - pos: 18.5,2.5 + parent: 4812 + type: Transform + - uid: 4245 + components: + - pos: 17.5,2.5 + parent: 4812 + type: Transform + - uid: 5014 + components: + - pos: -26.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5914 + components: + - pos: 16.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5915 + components: + - pos: 15.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5916 + components: + - pos: 15.5,-31.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5917 + components: + - pos: 15.5,-32.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5918 + components: + - pos: 15.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5919 + components: + - pos: 16.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5920 + components: + - pos: 17.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5921 + components: + - pos: 18.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5922 + components: + - pos: 18.5,-32.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5923 + components: + - pos: 18.5,-31.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5924 + components: + - pos: 18.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5925 + components: + - pos: 18.5,-29.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5926 + components: + - pos: 18.5,-28.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5927 + components: + - pos: 18.5,-27.5 + parent: 4812 + type: Transform + - uid: 5928 + components: + - pos: 18.5,-26.5 + parent: 4812 + type: Transform + - uid: 5929 + components: + - pos: 18.5,-25.5 + parent: 4812 + type: Transform + - uid: 5930 + components: + - pos: 18.5,-24.5 + parent: 4812 + type: Transform + - uid: 5931 + components: + - pos: 18.5,-23.5 + parent: 4812 + type: Transform + - uid: 5932 + components: + - pos: 18.5,-22.5 + parent: 4812 + type: Transform + - uid: 5933 + components: + - pos: 18.5,-21.5 + parent: 4812 + type: Transform + - uid: 5934 + components: + - pos: 18.5,-20.5 + parent: 4812 + type: Transform + - uid: 5935 + components: + - pos: 17.5,-20.5 + parent: 4812 + type: Transform + - uid: 5936 + components: + - pos: 16.5,-20.5 + parent: 4812 + type: Transform + - uid: 5937 + components: + - pos: 16.5,-19.5 + parent: 4812 + type: Transform + - uid: 5938 + components: + - pos: 16.5,-18.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5939 + components: + - pos: 16.5,-17.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5940 + components: + - pos: 16.5,-16.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5941 + components: + - pos: 16.5,-15.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5942 + components: + - pos: 16.5,-14.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5943 + components: + - pos: 15.5,-14.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5944 + components: + - pos: 14.5,-14.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5945 + components: + - pos: 14.5,-14.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5946 + components: + - pos: 13.5,-14.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5947 + components: + - pos: 12.5,-14.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5948 + components: + - pos: 12.5,-13.5 + parent: 4812 + type: Transform + - uid: 5949 + components: + - pos: 12.5,-12.5 + parent: 4812 + type: Transform + - uid: 5950 + components: + - pos: 12.5,-11.5 + parent: 4812 + type: Transform + - uid: 5951 + components: + - pos: 11.5,-11.5 + parent: 4812 + type: Transform + - uid: 5952 + components: + - pos: 10.5,-11.5 + parent: 4812 + type: Transform + - uid: 5953 + components: + - pos: 9.5,-11.5 + parent: 4812 + type: Transform + - uid: 5954 + components: + - pos: 8.5,-11.5 + parent: 4812 + type: Transform + - uid: 5955 + components: + - pos: 8.5,-10.5 + parent: 4812 + type: Transform + - uid: 5956 + components: + - pos: 8.5,-9.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5957 + components: + - pos: 9.5,-9.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5958 + components: + - pos: 9.5,-8.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5959 + components: + - pos: 9.5,-7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5960 + components: + - pos: 9.5,-6.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5961 + components: + - pos: 9.5,-5.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5962 + components: + - pos: 9.5,-4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5963 + components: + - pos: 9.5,-3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5964 + components: + - pos: 9.5,-2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5965 + components: + - pos: 9.5,-1.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5966 + components: + - pos: 9.5,-0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5967 + components: + - pos: 9.5,0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5968 + components: + - pos: 9.5,1.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5969 + components: + - pos: 9.5,2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6020 + components: + - pos: 16.5,-31.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6519 + components: + - pos: -25.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6918 + components: + - pos: -8.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6919 + components: + - pos: -8.5,-31.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6920 + components: + - pos: -8.5,-32.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6921 + components: + - pos: -10.5,-32.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6922 + components: + - pos: -9.5,-32.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6923 + components: + - pos: -10.5,-33.5 + parent: 4812 + type: Transform + - uid: 6924 + components: + - pos: -10.5,-34.5 + parent: 4812 + type: Transform + - uid: 6925 + components: + - pos: -9.5,-34.5 + parent: 4812 + type: Transform + - uid: 6926 + components: + - pos: -8.5,-34.5 + parent: 4812 + type: Transform + - uid: 6927 + components: + - pos: -7.5,-34.5 + parent: 4812 + type: Transform + - uid: 6928 + components: + - pos: -6.5,-34.5 + parent: 4812 + type: Transform + - uid: 6929 + components: + - pos: -5.5,-34.5 + parent: 4812 + type: Transform + - uid: 6930 + components: + - pos: -4.5,-34.5 + parent: 4812 + type: Transform + - uid: 6931 + components: + - pos: -3.5,-34.5 + parent: 4812 + type: Transform + - uid: 6932 + components: + - pos: -2.5,-34.5 + parent: 4812 + type: Transform + - uid: 6933 + components: + - pos: -1.5,-34.5 + parent: 4812 + type: Transform + - uid: 6934 + components: + - pos: -0.5,-34.5 + parent: 4812 + type: Transform + - uid: 6935 + components: + - pos: 0.5,-34.5 + parent: 4812 + type: Transform + - uid: 6936 + components: + - pos: 1.5,-34.5 + parent: 4812 + type: Transform + - uid: 6937 + components: + - pos: 1.5,-33.5 + parent: 4812 + type: Transform + - uid: 6938 + components: + - pos: 1.5,-32.5 + parent: 4812 + type: Transform + - uid: 6939 + components: + - pos: 1.5,-31.5 + parent: 4812 + type: Transform + - uid: 6940 + components: + - pos: 1.5,-30.5 + parent: 4812 + type: Transform + - uid: 6941 + components: + - pos: 2.5,-30.5 + parent: 4812 + type: Transform + - uid: 6942 + components: + - pos: 3.5,-30.5 + parent: 4812 + type: Transform + - uid: 6943 + components: + - pos: 4.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6944 + components: + - pos: 5.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6945 + components: + - pos: 6.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6946 + components: + - pos: 7.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6947 + components: + - pos: 8.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6948 + components: + - pos: 9.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6949 + components: + - pos: 10.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6950 + components: + - pos: 11.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6951 + components: + - pos: 12.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6952 + components: + - pos: 12.5,-31.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6953 + components: + - pos: 12.5,-32.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6954 + components: + - pos: 12.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6955 + components: + - pos: 13.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6956 + components: + - pos: 14.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6957 + components: + - pos: 1.5,-29.5 + parent: 4812 + type: Transform + - uid: 6958 + components: + - pos: 1.5,-28.5 + parent: 4812 + type: Transform + - uid: 6959 + components: + - pos: 1.5,-27.5 + parent: 4812 + type: Transform + - uid: 6960 + components: + - pos: 1.5,-26.5 + parent: 4812 + type: Transform + - uid: 6961 + components: + - pos: 1.5,-25.5 + parent: 4812 + type: Transform + - uid: 6962 + components: + - pos: 1.5,-24.5 + parent: 4812 + type: Transform + - uid: 6963 + components: + - pos: 1.5,-23.5 + parent: 4812 + type: Transform + - uid: 6964 + components: + - pos: 1.5,-22.5 + parent: 4812 + type: Transform + - uid: 6965 + components: + - pos: 1.5,-21.5 + parent: 4812 + type: Transform + - uid: 6966 + components: + - pos: 1.5,-20.5 + parent: 4812 + type: Transform + - uid: 6967 + components: + - pos: 1.5,-19.5 + parent: 4812 + type: Transform + - uid: 6968 + components: + - pos: 1.5,-18.5 + parent: 4812 + type: Transform + - uid: 6969 + components: + - pos: 1.5,-17.5 + parent: 4812 + type: Transform + - uid: 6970 + components: + - pos: 1.5,-16.5 + parent: 4812 + type: Transform + - uid: 6971 + components: + - pos: 1.5,-15.5 + parent: 4812 + type: Transform + - uid: 6972 + components: + - pos: 1.5,-14.5 + parent: 4812 + type: Transform + - uid: 6973 + components: + - pos: 1.5,-13.5 + parent: 4812 + type: Transform + - uid: 6974 + components: + - pos: 1.5,-12.5 + parent: 4812 + type: Transform + - uid: 6975 + components: + - pos: 1.5,-11.5 + parent: 4812 + type: Transform + - uid: 6976 + components: + - pos: 2.5,-11.5 + parent: 4812 + type: Transform + - uid: 6977 + components: + - pos: 3.5,-11.5 + parent: 4812 + type: Transform + - uid: 6978 + components: + - pos: 4.5,-11.5 + parent: 4812 + type: Transform + - uid: 6979 + components: + - pos: 5.5,-11.5 + parent: 4812 + type: Transform + - uid: 6980 + components: + - pos: 6.5,-11.5 + parent: 4812 + type: Transform + - uid: 6981 + components: + - pos: 7.5,-11.5 + parent: 4812 + type: Transform + - uid: 7280 + components: + - pos: -27.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7282 + components: + - pos: -28.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7283 + components: + - pos: -29.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7958 + components: + - pos: -37.5,8.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7959 + components: + - pos: -37.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7960 + components: + - pos: -36.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7961 + components: + - pos: -35.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7962 + components: + - pos: -34.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7963 + components: + - pos: -33.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7964 + components: + - pos: -32.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7965 + components: + - pos: -31.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7966 + components: + - pos: -30.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7967 + components: + - pos: -29.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7968 + components: + - pos: -29.5,8.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7969 + components: + - pos: -28.5,8.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7970 + components: + - pos: -27.5,8.5 + parent: 4812 + type: Transform + - uid: 7971 + components: + - pos: -26.5,8.5 + parent: 4812 + type: Transform + - uid: 7972 + components: + - pos: -25.5,8.5 + parent: 4812 + type: Transform + - uid: 7973 + components: + - pos: -24.5,8.5 + parent: 4812 + type: Transform + - uid: 7974 + components: + - pos: -23.5,8.5 + parent: 4812 + type: Transform + - uid: 7975 + components: + - pos: -22.5,8.5 + parent: 4812 + type: Transform + - uid: 7976 + components: + - pos: -22.5,9.5 + parent: 4812 + type: Transform + - uid: 7977 + components: + - pos: -22.5,10.5 + parent: 4812 + type: Transform + - uid: 7978 + components: + - pos: -21.5,10.5 + parent: 4812 + type: Transform + - uid: 7979 + components: + - pos: -20.5,10.5 + parent: 4812 + type: Transform + - uid: 7980 + components: + - pos: -19.5,10.5 + parent: 4812 + type: Transform + - uid: 7981 + components: + - pos: -18.5,10.5 + parent: 4812 + type: Transform + - uid: 7982 + components: + - pos: -17.5,10.5 + parent: 4812 + type: Transform + - uid: 7983 + components: + - pos: -16.5,10.5 + parent: 4812 + type: Transform + - uid: 7984 + components: + - pos: -15.5,10.5 + parent: 4812 + type: Transform + - uid: 8725 + components: + - pos: -45.5,-2.5 + parent: 4812 + type: Transform + - uid: 8738 + components: + - pos: -45.5,-3.5 + parent: 4812 + type: Transform + - uid: 8739 + components: + - pos: -44.5,-3.5 + parent: 4812 + type: Transform + - uid: 8740 + components: + - pos: -44.5,-2.5 + parent: 4812 + type: Transform + - uid: 8741 + components: + - pos: -45.5,-1.5 + parent: 4812 + type: Transform + - uid: 8742 + components: + - pos: -44.5,-1.5 + parent: 4812 + type: Transform + - uid: 8743 + components: + - pos: -43.5,-1.5 + parent: 4812 + type: Transform + - uid: 8744 + components: + - pos: -42.5,-1.5 + parent: 4812 + type: Transform + - uid: 8745 + components: + - pos: -42.5,-2.5 + parent: 4812 + type: Transform + - uid: 8746 + components: + - pos: -42.5,-3.5 + parent: 4812 + type: Transform + - uid: 8747 + components: + - pos: -42.5,-4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8748 + components: + - pos: -44.5,-4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8749 + components: + - pos: -44.5,-5.5 + parent: 4812 + type: Transform + - uid: 8750 + components: + - pos: -42.5,-5.5 + parent: 4812 + type: Transform + - uid: 8755 + components: + - pos: -43.5,-2.5 + parent: 4812 + type: Transform + - uid: 9732 + components: + - pos: -42.5,-6.5 + parent: 4812 + type: Transform + - uid: 9733 + components: + - pos: -42.5,-7.5 + parent: 4812 + type: Transform + - uid: 9734 + components: + - pos: -42.5,-8.5 + parent: 4812 + type: Transform + - uid: 9735 + components: + - pos: -41.5,-8.5 + parent: 4812 + type: Transform + - uid: 9736 + components: + - pos: -40.5,-8.5 + parent: 4812 + type: Transform + - uid: 9737 + components: + - pos: -39.5,-8.5 + parent: 4812 + type: Transform + - uid: 9738 + components: + - pos: -38.5,-8.5 + parent: 4812 + type: Transform + - uid: 9739 + components: + - pos: -37.5,-8.5 + parent: 4812 + type: Transform + - uid: 9740 + components: + - pos: -36.5,-8.5 + parent: 4812 + type: Transform + - uid: 9741 + components: + - pos: -35.5,-8.5 + parent: 4812 + type: Transform + - uid: 9742 + components: + - pos: -34.5,-8.5 + parent: 4812 + type: Transform + - uid: 9743 + components: + - pos: -33.5,-8.5 + parent: 4812 + type: Transform + - uid: 9744 + components: + - pos: -32.5,-8.5 + parent: 4812 + type: Transform + - uid: 9745 + components: + - pos: -31.5,-8.5 + parent: 4812 + type: Transform + - uid: 9746 + components: + - pos: -30.5,-8.5 + parent: 4812 + type: Transform + - uid: 9747 + components: + - pos: -29.5,-8.5 + parent: 4812 + type: Transform + - uid: 9748 + components: + - pos: -29.5,-7.5 + parent: 4812 + type: Transform + - uid: 9749 + components: + - pos: -29.5,-6.5 + parent: 4812 + type: Transform + - uid: 9750 + components: + - pos: -29.5,-5.5 + parent: 4812 + type: Transform + - uid: 9751 + components: + - pos: -38.5,7.5 + parent: 4812 + type: Transform + - uid: 9752 + components: + - pos: -39.5,7.5 + parent: 4812 + type: Transform + - uid: 9753 + components: + - pos: -39.5,5.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9754 + components: + - pos: -38.5,5.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9755 + components: + - pos: -39.5,6.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9756 + components: + - pos: -37.5,5.5 + parent: 4812 + type: Transform + - uid: 9757 + components: + - pos: -36.5,5.5 + parent: 4812 + type: Transform + - uid: 9758 + components: + - pos: -36.5,4.5 + parent: 4812 + type: Transform + - uid: 9759 + components: + - pos: -36.5,3.5 + parent: 4812 + type: Transform + - uid: 9760 + components: + - pos: -36.5,2.5 + parent: 4812 + type: Transform + - uid: 9761 + components: + - pos: -36.5,1.5 + parent: 4812 + type: Transform + - uid: 9762 + components: + - pos: -36.5,0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9763 + components: + - pos: -36.5,-0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9764 + components: + - pos: -36.5,-1.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9765 + components: + - pos: -36.5,-2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9766 + components: + - pos: -36.5,-3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9767 + components: + - pos: -36.5,-4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9768 + components: + - pos: -36.5,-5.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9769 + components: + - pos: -36.5,-6.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9770 + components: + - pos: -36.5,-7.5 + parent: 4812 + type: Transform + - uid: 9771 + components: + - pos: -33.5,-7.5 + parent: 4812 + type: Transform + - uid: 9772 + components: + - pos: -33.5,-6.5 + parent: 4812 + type: Transform + - uid: 9773 + components: + - pos: -33.5,-5.5 + parent: 4812 + type: Transform + - uid: 9774 + components: + - pos: -33.5,-4.5 + parent: 4812 + type: Transform + - uid: 9775 + components: + - pos: -33.5,-3.5 + parent: 4812 + type: Transform + - uid: 9776 + components: + - pos: -33.5,-2.5 + parent: 4812 + type: Transform + - uid: 9777 + components: + - pos: -32.5,-2.5 + parent: 4812 + type: Transform + - uid: 9778 + components: + - pos: -31.5,-2.5 + parent: 4812 + type: Transform + - uid: 9779 + components: + - pos: -30.5,-2.5 + parent: 4812 + type: Transform + - uid: 9780 + components: + - pos: -29.5,-2.5 + parent: 4812 + type: Transform + - uid: 9781 + components: + - pos: -28.5,-2.5 + parent: 4812 + type: Transform + - uid: 9782 + components: + - pos: -27.5,-2.5 + parent: 4812 + type: Transform + - uid: 9783 + components: + - pos: -26.5,-2.5 + parent: 4812 + type: Transform + - uid: 9784 + components: + - pos: -25.5,-2.5 + parent: 4812 + type: Transform + - uid: 9785 + components: + - pos: -25.5,-3.5 + parent: 4812 + type: Transform + - uid: 9786 + components: + - pos: -25.5,-4.5 + parent: 4812 + type: Transform + - uid: 9787 + components: + - pos: -24.5,-4.5 + parent: 4812 + type: Transform + - uid: 9788 + components: + - pos: -23.5,-4.5 + parent: 4812 + type: Transform + - uid: 9789 + components: + - pos: -22.5,-4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9790 + components: + - pos: -21.5,-4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9791 + components: + - pos: -20.5,-4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9792 + components: + - pos: -20.5,-3.5 + parent: 4812 + type: Transform + - uid: 9793 + components: + - pos: -19.5,-3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9794 + components: + - pos: -18.5,-3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9795 + components: + - pos: -17.5,-3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9796 + components: + - pos: -16.5,-3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9797 + components: + - pos: -15.5,-3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9798 + components: + - pos: -14.5,-3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9799 + components: + - pos: -13.5,-3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9800 + components: + - pos: -12.5,-3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9801 + components: + - pos: -12.5,-2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9802 + components: + - pos: -12.5,-1.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9803 + components: + - pos: -12.5,-0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9804 + components: + - pos: -12.5,0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9805 + components: + - pos: -12.5,1.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9806 + components: + - pos: -12.5,2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9807 + components: + - pos: -12.5,3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9808 + components: + - pos: -12.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9809 + components: + - pos: -12.5,5.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9810 + components: + - pos: -12.5,6.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9811 + components: + - pos: -12.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9812 + components: + - pos: -12.5,8.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9813 + components: + - pos: -12.5,9.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9814 + components: + - pos: -12.5,10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9815 + components: + - pos: -12.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9816 + components: + - pos: -12.5,12.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9913 + components: + - pos: -44.5,-6.5 + parent: 4812 + type: Transform + - uid: 9914 + components: + - pos: -44.5,-7.5 + parent: 4812 + type: Transform + - uid: 9915 + components: + - pos: -44.5,-8.5 + parent: 4812 + type: Transform + - uid: 9916 + components: + - pos: -44.5,-9.5 + parent: 4812 + type: Transform + - uid: 9917 + components: + - pos: -44.5,-10.5 + parent: 4812 + type: Transform + - uid: 9918 + components: + - pos: -44.5,-11.5 + parent: 4812 + type: Transform + - uid: 9919 + components: + - pos: -44.5,-12.5 + parent: 4812 + type: Transform + - uid: 9920 + components: + - pos: -43.5,-12.5 + parent: 4812 + type: Transform + - uid: 9921 + components: + - pos: -42.5,-12.5 + parent: 4812 + type: Transform + - uid: 9922 + components: + - pos: -41.5,-12.5 + parent: 4812 + type: Transform + - uid: 9923 + components: + - pos: -40.5,-12.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9924 + components: + - pos: -40.5,-10.5 + parent: 4812 + type: Transform + - uid: 9925 + components: + - pos: -40.5,-11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9926 + components: + - pos: -40.5,-13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9927 + components: + - pos: -40.5,-14.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9928 + components: + - pos: -40.5,-15.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9929 + components: + - pos: -40.5,-16.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9930 + components: + - pos: -40.5,-17.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9931 + components: + - pos: -40.5,-18.5 + parent: 4812 + type: Transform + - uid: 9960 + components: + - pos: -48.5,-19.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9961 + components: + - pos: -48.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9962 + components: + - pos: -47.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9963 + components: + - pos: -46.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9964 + components: + - pos: -45.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9965 + components: + - pos: -44.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9966 + components: + - pos: -43.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9967 + components: + - pos: -42.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9974 + components: + - pos: -36.5,-19.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9975 + components: + - pos: -36.5,-18.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9976 + components: + - pos: -36.5,-17.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9977 + components: + - pos: -36.5,-16.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9978 + components: + - pos: -36.5,-15.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9979 + components: + - pos: -36.5,-14.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9980 + components: + - pos: -36.5,-13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9981 + components: + - pos: -36.5,-12.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9982 + components: + - pos: -36.5,-11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9983 + components: + - pos: -36.5,-10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9984 + components: + - pos: -36.5,-9.5 + parent: 4812 + type: Transform + - uid: 9995 + components: + - pos: -41.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9996 + components: + - pos: -40.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9997 + components: + - pos: -39.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9998 + components: + - pos: -38.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9999 + components: + - pos: -37.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10000 + components: + - pos: -36.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10159 + components: + - pos: -56.5,-22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10160 + components: + - pos: -55.5,-22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10161 + components: + - pos: -54.5,-22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10162 + components: + - pos: -53.5,-22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10163 + components: + - pos: -53.5,-23.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10164 + components: + - pos: -53.5,-24.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10168 + components: + - pos: -53.5,-25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10169 + components: + - pos: -52.5,-25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10170 + components: + - pos: -51.5,-25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10171 + components: + - pos: -51.5,-24.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10172 + components: + - pos: -51.5,-23.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10173 + components: + - pos: -51.5,-22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10174 + components: + - pos: -50.5,-22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10175 + components: + - pos: -49.5,-22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10176 + components: + - pos: -48.5,-22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10177 + components: + - pos: -47.5,-22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10178 + components: + - pos: -46.5,-22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10179 + components: + - pos: -45.5,-22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10180 + components: + - pos: -45.5,-21.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10181 + components: + - pos: -50.5,-25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10225 + components: + - pos: -57.5,-22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10226 + components: + - pos: -59.5,-26.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10227 + components: + - pos: -59.5,-25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10228 + components: + - pos: -59.5,-24.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10229 + components: + - pos: -59.5,-23.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10230 + components: + - pos: -59.5,-21.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10231 + components: + - pos: -59.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10232 + components: + - pos: -59.5,-19.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10233 + components: + - pos: -59.5,-18.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10234 + components: + - pos: -61.5,-18.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10235 + components: + - pos: -61.5,-19.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10236 + components: + - pos: -61.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10237 + components: + - pos: -61.5,-21.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10238 + components: + - pos: -61.5,-23.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10239 + components: + - pos: -61.5,-24.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10240 + components: + - pos: -61.5,-25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10241 + components: + - pos: -61.5,-26.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10242 + components: + - pos: -63.5,-26.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10243 + components: + - pos: -63.5,-25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10244 + components: + - pos: -63.5,-24.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10245 + components: + - pos: -63.5,-23.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10246 + components: + - pos: -65.5,-26.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10247 + components: + - pos: -65.5,-25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10248 + components: + - pos: -65.5,-24.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10249 + components: + - pos: -65.5,-23.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10250 + components: + - pos: -69.5,-26.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10251 + components: + - pos: -69.5,-25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10252 + components: + - pos: -69.5,-24.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10253 + components: + - pos: -69.5,-23.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10254 + components: + - pos: -67.5,-26.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10255 + components: + - pos: -67.5,-25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10256 + components: + - pos: -67.5,-24.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10257 + components: + - pos: -67.5,-23.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10258 + components: + - pos: -69.5,-21.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10259 + components: + - pos: -69.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10260 + components: + - pos: -69.5,-19.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10261 + components: + - pos: -69.5,-18.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10262 + components: + - pos: -67.5,-18.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10263 + components: + - pos: -67.5,-19.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10264 + components: + - pos: -67.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10265 + components: + - pos: -67.5,-21.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10266 + components: + - pos: -65.5,-21.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10267 + components: + - pos: -65.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10268 + components: + - pos: -65.5,-19.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10269 + components: + - pos: -65.5,-18.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10270 + components: + - pos: -63.5,-18.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10271 + components: + - pos: -63.5,-19.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10272 + components: + - pos: -63.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10273 + components: + - pos: -63.5,-21.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10275 + components: + - pos: -71.5,-22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10276 + components: + - pos: -70.5,-22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10529 + components: + - pos: -10.5,-31.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10530 + components: + - pos: -10.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10531 + components: + - pos: -11.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10532 + components: + - pos: -12.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10533 + components: + - pos: -13.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10534 + components: + - pos: -14.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10535 + components: + - pos: -15.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10536 + components: + - pos: -16.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10537 + components: + - pos: -17.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10538 + components: + - pos: -18.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10539 + components: + - pos: -19.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10540 + components: + - pos: -20.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10541 + components: + - pos: -21.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10542 + components: + - pos: -22.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10543 + components: + - pos: -23.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10544 + components: + - pos: -24.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10550 + components: + - pos: -29.5,-29.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10551 + components: + - pos: -29.5,-28.5 + parent: 4812 + type: Transform + - uid: 10552 + components: + - pos: -29.5,-27.5 + parent: 4812 + type: Transform + - uid: 10553 + components: + - pos: -29.5,-26.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10554 + components: + - pos: -29.5,-25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10555 + components: + - pos: -30.5,-25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10556 + components: + - pos: -31.5,-25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10557 + components: + - pos: -32.5,-25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10558 + components: + - pos: -33.5,-25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10559 + components: + - pos: -34.5,-25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10560 + components: + - pos: -34.5,-24.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10561 + components: + - pos: -34.5,-23.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10562 + components: + - pos: -34.5,-22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10563 + components: + - pos: -34.5,-21.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10564 + components: + - pos: -34.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10565 + components: + - pos: -35.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10638 + components: + - pos: -45.5,-12.5 + parent: 4812 + type: Transform + - uid: 10639 + components: + - pos: -46.5,-12.5 + parent: 4812 + type: Transform + - uid: 10640 + components: + - pos: -47.5,-12.5 + parent: 4812 + type: Transform + - uid: 10641 + components: + - pos: -47.5,-11.5 + parent: 4812 + type: Transform + - uid: 10642 + components: + - pos: -48.5,-11.5 + parent: 4812 + type: Transform + - uid: 10643 + components: + - pos: -49.5,-11.5 + parent: 4812 + type: Transform + - uid: 10644 + components: + - pos: -50.5,-11.5 + parent: 4812 + type: Transform + - uid: 10645 + components: + - pos: -51.5,-11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10646 + components: + - pos: -52.5,-11.5 + parent: 4812 + type: Transform + - uid: 10647 + components: + - pos: -53.5,-11.5 + parent: 4812 + type: Transform + - uid: 10650 + components: + - pos: -53.5,-12.5 + parent: 4812 + type: Transform + - uid: 10651 + components: + - pos: -53.5,-13.5 + parent: 4812 + type: Transform + - uid: 10662 + components: + - pos: -51.5,-12.5 + parent: 4812 + type: Transform + - uid: 10663 + components: + - pos: -51.5,-13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10669 + components: + - pos: -45.5,-6.5 + parent: 4812 + type: Transform + - uid: 10670 + components: + - pos: -46.5,-6.5 + parent: 4812 + type: Transform + - uid: 10671 + components: + - pos: -47.5,-6.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10672 + components: + - pos: -48.5,-6.5 + parent: 4812 + type: Transform + - uid: 11394 + components: + - pos: 33.5,-39.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11395 + components: + - pos: 32.5,-39.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11396 + components: + - pos: 31.5,-39.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11397 + components: + - pos: 33.5,-38.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11398 + components: + - pos: 33.5,-37.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11399 + components: + - pos: 33.5,-36.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11400 + components: + - pos: 34.5,-36.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11401 + components: + - pos: 35.5,-36.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11402 + components: + - pos: 36.5,-36.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11403 + components: + - pos: 37.5,-36.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11404 + components: + - pos: 38.5,-36.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11405 + components: + - pos: 31.5,-38.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11406 + components: + - pos: 31.5,-37.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11407 + components: + - pos: 31.5,-36.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11408 + components: + - pos: 31.5,-35.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11409 + components: + - pos: 31.5,-34.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11410 + components: + - pos: 31.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11411 + components: + - pos: 30.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11412 + components: + - pos: 29.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11413 + components: + - pos: 28.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11414 + components: + - pos: 27.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11415 + components: + - pos: 26.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11416 + components: + - pos: 25.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11417 + components: + - pos: 24.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11418 + components: + - pos: 23.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11419 + components: + - pos: 22.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11420 + components: + - pos: 21.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11421 + components: + - pos: 20.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11422 + components: + - pos: 19.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11437 + components: + - pos: 30.5,-39.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11477 + components: + - pos: 53.5,-36.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11478 + components: + - pos: 52.5,-36.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11479 + components: + - pos: 39.5,-36.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11480 + components: + - pos: 40.5,-36.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11481 + components: + - pos: 41.5,-35.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11482 + components: + - pos: 41.5,-34.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11483 + components: + - pos: 41.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11484 + components: + - pos: 41.5,-32.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11485 + components: + - pos: 43.5,-35.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11486 + components: + - pos: 43.5,-34.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11487 + components: + - pos: 43.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11488 + components: + - pos: 43.5,-32.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11489 + components: + - pos: 45.5,-34.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11490 + components: + - pos: 45.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11491 + components: + - pos: 45.5,-32.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11492 + components: + - pos: 45.5,-35.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11493 + components: + - pos: 47.5,-35.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11494 + components: + - pos: 47.5,-34.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11495 + components: + - pos: 47.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11496 + components: + - pos: 47.5,-32.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11497 + components: + - pos: 49.5,-35.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11498 + components: + - pos: 49.5,-34.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11499 + components: + - pos: 49.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11500 + components: + - pos: 49.5,-32.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11501 + components: + - pos: 51.5,-35.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11502 + components: + - pos: 51.5,-34.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11503 + components: + - pos: 51.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11504 + components: + - pos: 51.5,-32.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11505 + components: + - pos: 51.5,-40.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11506 + components: + - pos: 51.5,-39.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11507 + components: + - pos: 51.5,-38.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11508 + components: + - pos: 51.5,-37.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11509 + components: + - pos: 49.5,-40.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11510 + components: + - pos: 49.5,-39.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11511 + components: + - pos: 49.5,-38.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11512 + components: + - pos: 49.5,-37.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11513 + components: + - pos: 47.5,-40.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11514 + components: + - pos: 47.5,-39.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11515 + components: + - pos: 47.5,-38.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11516 + components: + - pos: 47.5,-37.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11517 + components: + - pos: 45.5,-40.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11518 + components: + - pos: 45.5,-39.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11519 + components: + - pos: 45.5,-38.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11520 + components: + - pos: 45.5,-37.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11521 + components: + - pos: 43.5,-40.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11522 + components: + - pos: 43.5,-39.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11523 + components: + - pos: 43.5,-38.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11524 + components: + - pos: 43.5,-37.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11525 + components: + - pos: 41.5,-40.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11526 + components: + - pos: 41.5,-39.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11527 + components: + - pos: 41.5,-38.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11528 + components: + - pos: 41.5,-37.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound +- proto: CableHVStack + entities: + - uid: 8587 + components: + - pos: -16.483784,7.5211535 + parent: 4812 + type: Transform + - uid: 11956 + components: + - pos: -10.405096,15.5663185 + parent: 4812 + type: Transform + - uid: 11957 + components: + - pos: -10.405096,15.5663185 + parent: 4812 + type: Transform +- proto: CableMV + entities: + - uid: 327 + components: + - pos: -15.5,-18.5 + parent: 4812 + type: Transform + - uid: 971 + components: + - pos: -14.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 972 + components: + - pos: -14.5,8.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 973 + components: + - pos: -14.5,9.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 974 + components: + - pos: -14.5,10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 975 + components: + - pos: -14.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 976 + components: + - pos: -14.5,12.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 977 + components: + - pos: -14.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 978 + components: + - pos: -13.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 979 + components: + - pos: -12.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 980 + components: + - pos: -12.5,14.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 981 + components: + - pos: -8.5,-2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 982 + components: + - pos: -8.5,-3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 983 + components: + - pos: -9.5,-3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 984 + components: + - pos: -10.5,-3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 985 + components: + - pos: -12.5,-3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 986 + components: + - pos: -11.5,-3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 987 + components: + - pos: -12.5,-2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 988 + components: + - pos: -12.5,-1.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 989 + components: + - pos: -12.5,-0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 990 + components: + - pos: -12.5,0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 991 + components: + - pos: -12.5,1.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 992 + components: + - pos: -12.5,2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 993 + components: + - pos: -12.5,3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 994 + components: + - pos: -12.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 995 + components: + - pos: -12.5,5.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 996 + components: + - pos: -12.5,6.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 997 + components: + - pos: -12.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 998 + components: + - pos: -12.5,8.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 999 + components: + - pos: -12.5,9.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1000 + components: + - pos: -12.5,10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1001 + components: + - pos: -12.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1002 + components: + - pos: -12.5,12.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1004 + components: + - pos: 6.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1005 + components: + - pos: 7.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1006 + components: + - pos: 8.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1007 + components: + - pos: 9.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1008 + components: + - pos: 9.5,5.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1009 + components: + - pos: 9.5,6.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1010 + components: + - pos: 9.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1011 + components: + - pos: 9.5,8.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1012 + components: + - pos: 9.5,9.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1013 + components: + - pos: 9.5,10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1014 + components: + - pos: 9.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1015 + components: + - pos: 8.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1016 + components: + - pos: 7.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1017 + components: + - pos: 6.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1018 + components: + - pos: 5.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1019 + components: + - pos: 4.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1020 + components: + - pos: 3.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1021 + components: + - pos: 2.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1023 + components: + - pos: 7.5,-8.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1024 + components: + - pos: 7.5,-9.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1025 + components: + - pos: 8.5,-9.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1026 + components: + - pos: 9.5,-9.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1027 + components: + - pos: 9.5,-8.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1028 + components: + - pos: 9.5,-7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1029 + components: + - pos: 9.5,-6.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1030 + components: + - pos: 9.5,-5.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1031 + components: + - pos: 9.5,-4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1032 + components: + - pos: 9.5,-3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1033 + components: + - pos: 9.5,-2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1034 + components: + - pos: 9.5,-1.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1035 + components: + - pos: 9.5,-0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1036 + components: + - pos: 9.5,0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1037 + components: + - pos: 9.5,1.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1038 + components: + - pos: 9.5,2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1039 + components: + - pos: 9.5,3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1419 + components: + - pos: 8.5,8.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1543 + components: + - pos: 5.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1858 + components: + - pos: 0.5,28.5 + parent: 4812 + type: Transform + - uid: 1860 + components: + - pos: -6.5,30.5 + parent: 4812 + type: Transform + - uid: 2141 + components: + - pos: 6.5,31.5 + parent: 4812 + type: Transform + - uid: 2142 + components: + - pos: 6.5,32.5 + parent: 4812 + type: Transform + - uid: 2143 + components: + - pos: 5.5,32.5 + parent: 4812 + type: Transform + - uid: 2144 + components: + - pos: 4.5,32.5 + parent: 4812 + type: Transform + - uid: 2145 + components: + - pos: 3.5,32.5 + parent: 4812 + type: Transform + - uid: 2146 + components: + - pos: 2.5,32.5 + parent: 4812 + type: Transform + - uid: 2147 + components: + - pos: 1.5,32.5 + parent: 4812 + type: Transform + - uid: 2148 + components: + - pos: 0.5,32.5 + parent: 4812 + type: Transform + - uid: 2149 + components: + - pos: -0.5,32.5 + parent: 4812 + type: Transform + - uid: 2150 + components: + - pos: -1.5,32.5 + parent: 4812 + type: Transform + - uid: 2151 + components: + - pos: -2.5,32.5 + parent: 4812 + type: Transform + - uid: 2152 + components: + - pos: -3.5,32.5 + parent: 4812 + type: Transform + - uid: 2153 + components: + - pos: -4.5,32.5 + parent: 4812 + type: Transform + - uid: 2154 + components: + - pos: -5.5,32.5 + parent: 4812 + type: Transform + - uid: 2155 + components: + - pos: -6.5,32.5 + parent: 4812 + type: Transform + - uid: 2156 + components: + - pos: -6.5,31.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2157 + components: + - pos: 2.5,31.5 + parent: 4812 + type: Transform + - uid: 2158 + components: + - pos: 2.5,30.5 + parent: 4812 + type: Transform + - uid: 2159 + components: + - pos: 2.5,29.5 + parent: 4812 + type: Transform + - uid: 2160 + components: + - pos: 2.5,28.5 + parent: 4812 + type: Transform + - uid: 2161 + components: + - pos: 2.5,27.5 + parent: 4812 + type: Transform + - uid: 2162 + components: + - pos: 2.5,26.5 + parent: 4812 + type: Transform + - uid: 2163 + components: + - pos: 2.5,25.5 + parent: 4812 + type: Transform + - uid: 2164 + components: + - pos: 2.5,24.5 + parent: 4812 + type: Transform + - uid: 2165 + components: + - pos: 2.5,23.5 + parent: 4812 + type: Transform + - uid: 2166 + components: + - pos: 2.5,22.5 + parent: 4812 + type: Transform + - uid: 2167 + components: + - pos: 2.5,21.5 + parent: 4812 + type: Transform + - uid: 2168 + components: + - pos: 2.5,20.5 + parent: 4812 + type: Transform + - uid: 2169 + components: + - pos: 1.5,20.5 + parent: 4812 + type: Transform + - uid: 2170 + components: + - pos: 0.5,20.5 + parent: 4812 + type: Transform + - uid: 2171 + components: + - pos: 0.5,21.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2172 + components: + - pos: 3.5,25.5 + parent: 4812 + type: Transform + - uid: 2173 + components: + - pos: 4.5,25.5 + parent: 4812 + type: Transform + - uid: 2174 + components: + - pos: 5.5,25.5 + parent: 4812 + type: Transform + - uid: 2175 + components: + - pos: 6.5,25.5 + parent: 4812 + type: Transform + - uid: 2176 + components: + - pos: 7.5,25.5 + parent: 4812 + type: Transform + - uid: 2177 + components: + - pos: 8.5,25.5 + parent: 4812 + type: Transform + - uid: 2178 + components: + - pos: 9.5,25.5 + parent: 4812 + type: Transform + - uid: 2179 + components: + - pos: 9.5,26.5 + parent: 4812 + type: Transform + - uid: 2180 + components: + - pos: 9.5,27.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2181 + components: + - pos: 8.5,24.5 + parent: 4812 + type: Transform + - uid: 2182 + components: + - pos: 8.5,23.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2183 + components: + - pos: 6.5,24.5 + parent: 4812 + type: Transform + - uid: 2184 + components: + - pos: 6.5,23.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2185 + components: + - pos: -2.5,31.5 + parent: 4812 + type: Transform + - uid: 2186 + components: + - pos: 4.5,24.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2187 + components: + - pos: 4.5,26.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2188 + components: + - pos: -2.5,30.5 + parent: 4812 + type: Transform + - uid: 2189 + components: + - pos: -2.5,29.5 + parent: 4812 + type: Transform + - uid: 2190 + components: + - pos: -2.5,28.5 + parent: 4812 + type: Transform + - uid: 2191 + components: + - pos: -2.5,28.5 + parent: 4812 + type: Transform + - uid: 2192 + components: + - pos: -2.5,27.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2193 + components: + - pos: -3.5,28.5 + parent: 4812 + type: Transform + - uid: 2194 + components: + - pos: -4.5,28.5 + parent: 4812 + type: Transform + - uid: 2195 + components: + - pos: -4.5,27.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2196 + components: + - pos: -1.5,28.5 + parent: 4812 + type: Transform + - uid: 2197 + components: + - pos: -0.5,28.5 + parent: 4812 + type: Transform + - uid: 2198 + components: + - pos: -0.5,27.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2200 + components: + - pos: 0.5,29.5 + parent: 4812 + type: Transform + - uid: 2203 + components: + - pos: -5.5,29.5 + parent: 4812 + type: Transform + - uid: 2208 + components: + - pos: -5.5,30.5 + parent: 4812 + type: Transform + - uid: 2385 + components: + - pos: -7.5,32.5 + parent: 4812 + type: Transform + - uid: 2386 + components: + - pos: -8.5,32.5 + parent: 4812 + type: Transform + - uid: 2387 + components: + - pos: -8.5,31.5 + parent: 4812 + type: Transform + - uid: 2388 + components: + - pos: -8.5,30.5 + parent: 4812 + type: Transform + - uid: 2389 + components: + - pos: -8.5,29.5 + parent: 4812 + type: Transform + - uid: 2390 + components: + - pos: -8.5,28.5 + parent: 4812 + type: Transform + - uid: 2391 + components: + - pos: -8.5,27.5 + parent: 4812 + type: Transform + - uid: 2392 + components: + - pos: -8.5,26.5 + parent: 4812 + type: Transform + - uid: 2393 + components: + - pos: -8.5,25.5 + parent: 4812 + type: Transform + - uid: 2394 + components: + - pos: -8.5,24.5 + parent: 4812 + type: Transform + - uid: 2396 + components: + - pos: -9.5,23.5 + parent: 4812 + type: Transform + - uid: 2397 + components: + - pos: -10.5,23.5 + parent: 4812 + type: Transform + - uid: 2398 + components: + - pos: -11.5,23.5 + parent: 4812 + type: Transform + - uid: 2399 + components: + - pos: -12.5,23.5 + parent: 4812 + type: Transform + - uid: 2400 + components: + - pos: -13.5,23.5 + parent: 4812 + type: Transform + - uid: 2401 + components: + - pos: -14.5,23.5 + parent: 4812 + type: Transform + - uid: 2402 + components: + - pos: -14.5,24.5 + parent: 4812 + type: Transform + - uid: 2403 + components: + - pos: -14.5,25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2404 + components: + - pos: -11.5,24.5 + parent: 4812 + type: Transform + - uid: 2405 + components: + - pos: -11.5,25.5 + parent: 4812 + type: Transform + - uid: 2406 + components: + - pos: -11.5,26.5 + parent: 4812 + type: Transform + - uid: 2407 + components: + - pos: -11.5,27.5 + parent: 4812 + type: Transform + - uid: 2408 + components: + - pos: -11.5,28.5 + parent: 4812 + type: Transform + - uid: 2409 + components: + - pos: -11.5,29.5 + parent: 4812 + type: Transform + - uid: 2410 + components: + - pos: -11.5,30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2411 + components: + - pos: -12.5,30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2412 + components: + - pos: -12.5,26.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2413 + components: + - pos: -13.5,26.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2414 + components: + - pos: -10.5,26.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2415 + components: + - pos: -9.5,24.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2416 + components: + - pos: -9.5,22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2453 + components: + - pos: -6.5,28.5 + parent: 4812 + type: Transform + - uid: 2457 + components: + - pos: -5.5,28.5 + parent: 4812 + type: Transform + - uid: 2632 + components: + - pos: 1.5,28.5 + parent: 4812 + type: Transform + - uid: 2633 + components: + - pos: 0.5,30.5 + parent: 4812 + type: Transform + - uid: 2644 + components: + - pos: 1.5,30.5 + parent: 4812 + type: Transform + - uid: 2834 + components: + - pos: 11.5,32.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2838 + components: + - pos: 13.5,32.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3120 + components: + - pos: 12.5,32.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3121 + components: + - pos: 12.5,31.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3122 + components: + - pos: 12.5,30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3123 + components: + - pos: 12.5,29.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3124 + components: + - pos: 12.5,28.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3125 + components: + - pos: 12.5,27.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3126 + components: + - pos: 12.5,26.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3127 + components: + - pos: 12.5,25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3128 + components: + - pos: 12.5,24.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3129 + components: + - pos: 13.5,24.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3130 + components: + - pos: 14.5,24.5 + parent: 4812 + type: Transform + - uid: 3131 + components: + - pos: 15.5,24.5 + parent: 4812 + type: Transform + - uid: 3132 + components: + - pos: 16.5,24.5 + parent: 4812 + type: Transform + - uid: 3133 + components: + - pos: 17.5,24.5 + parent: 4812 + type: Transform + - uid: 3134 + components: + - pos: 17.5,23.5 + parent: 4812 + type: Transform + - uid: 3135 + components: + - pos: 17.5,22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3265 + components: + - pos: -24.5,-25.5 + parent: 4812 + type: Transform + - uid: 3734 + components: + - pos: -23.5,-25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3735 + components: + - pos: -25.5,-25.5 + parent: 4812 + type: Transform + - uid: 3884 + components: + - pos: 13.5,47.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3885 + components: + - pos: 13.5,46.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3886 + components: + - pos: 13.5,45.5 + parent: 4812 + type: Transform + - uid: 3887 + components: + - pos: 12.5,45.5 + parent: 4812 + type: Transform + - uid: 3888 + components: + - pos: 11.5,45.5 + parent: 4812 + type: Transform + - uid: 3889 + components: + - pos: 10.5,45.5 + parent: 4812 + type: Transform + - uid: 3890 + components: + - pos: 10.5,46.5 + parent: 4812 + type: Transform + - uid: 3891 + components: + - pos: 10.5,47.5 + parent: 4812 + type: Transform + - uid: 3892 + components: + - pos: 10.5,48.5 + parent: 4812 + type: Transform + - uid: 3893 + components: + - pos: 10.5,49.5 + parent: 4812 + type: Transform + - uid: 3894 + components: + - pos: 10.5,50.5 + parent: 4812 + type: Transform + - uid: 3895 + components: + - pos: 11.5,50.5 + parent: 4812 + type: Transform + - uid: 3896 + components: + - pos: 11.5,51.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4012 + components: + - pos: -15.5,-17.5 + parent: 4812 + type: Transform + - uid: 4247 + components: + - pos: 17.5,2.5 + parent: 4812 + type: Transform + - uid: 4248 + components: + - pos: 18.5,2.5 + parent: 4812 + type: Transform + - uid: 4249 + components: + - pos: 19.5,2.5 + parent: 4812 + type: Transform + - uid: 4250 + components: + - pos: 19.5,1.5 + parent: 4812 + type: Transform + - uid: 4251 + components: + - pos: 19.5,0.5 + parent: 4812 + type: Transform + - uid: 4252 + components: + - pos: 19.5,-0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4253 + components: + - pos: 20.5,-0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4254 + components: + - pos: 21.5,-0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4255 + components: + - pos: 22.5,-0.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4256 + components: + - pos: 22.5,-1.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4806 + components: + - pos: -16.5,-24.5 + parent: 4812 + type: Transform + - uid: 4813 + components: + - pos: -16.5,-22.5 + parent: 4812 + type: Transform + - uid: 4870 + components: + - pos: -18.5,-20.5 + parent: 4812 + type: Transform + - uid: 4914 + components: + - pos: -17.5,-20.5 + parent: 4812 + type: Transform + - uid: 4915 + components: + - pos: -16.5,-20.5 + parent: 4812 + type: Transform + - uid: 4945 + components: + - pos: -18.5,-19.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4956 + components: + - pos: -20.5,-26.5 + parent: 4812 + type: Transform + - uid: 4957 + components: + - pos: -22.5,-26.5 + parent: 4812 + type: Transform + - uid: 4959 + components: + - pos: -23.5,-25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4960 + components: + - pos: -18.5,-27.5 + parent: 4812 + type: Transform + - uid: 4965 + components: + - pos: -18.5,-28.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4967 + components: + - pos: -16.5,-25.5 + parent: 4812 + type: Transform + - uid: 4974 + components: + - pos: -21.5,-26.5 + parent: 4812 + type: Transform + - uid: 4975 + components: + - pos: -16.5,-23.5 + parent: 4812 + type: Transform + - uid: 4995 + components: + - pos: -15.5,-19.5 + parent: 4812 + type: Transform + - uid: 5972 + components: + - pos: 16.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5973 + components: + - pos: 15.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5974 + components: + - pos: 15.5,-31.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5975 + components: + - pos: 15.5,-32.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5976 + components: + - pos: 15.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5977 + components: + - pos: 16.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5978 + components: + - pos: 17.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5979 + components: + - pos: 18.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5980 + components: + - pos: 18.5,-32.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5981 + components: + - pos: 18.5,-31.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5982 + components: + - pos: 18.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5983 + components: + - pos: 18.5,-29.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5984 + components: + - pos: 18.5,-28.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5985 + components: + - pos: 18.5,-27.5 + parent: 4812 + type: Transform + - uid: 5986 + components: + - pos: 18.5,-26.5 + parent: 4812 + type: Transform + - uid: 5987 + components: + - pos: 18.5,-25.5 + parent: 4812 + type: Transform + - uid: 5988 + components: + - pos: 18.5,-24.5 + parent: 4812 + type: Transform + - uid: 5989 + components: + - pos: 18.5,-23.5 + parent: 4812 + type: Transform + - uid: 5990 + components: + - pos: 18.5,-22.5 + parent: 4812 + type: Transform + - uid: 5991 + components: + - pos: 18.5,-21.5 + parent: 4812 + type: Transform + - uid: 5992 + components: + - pos: 18.5,-20.5 + parent: 4812 + type: Transform + - uid: 5993 + components: + - pos: 17.5,-20.5 + parent: 4812 + type: Transform + - uid: 5994 + components: + - pos: 16.5,-20.5 + parent: 4812 + type: Transform + - uid: 5995 + components: + - pos: 15.5,-20.5 + parent: 4812 + type: Transform + - uid: 5996 + components: + - pos: 14.5,-20.5 + parent: 4812 + type: Transform + - uid: 5997 + components: + - pos: 13.5,-20.5 + parent: 4812 + type: Transform + - uid: 5998 + components: + - pos: 12.5,-20.5 + parent: 4812 + type: Transform + - uid: 5999 + components: + - pos: 11.5,-20.5 + parent: 4812 + type: Transform + - uid: 6000 + components: + - pos: 10.5,-20.5 + parent: 4812 + type: Transform + - uid: 6001 + components: + - pos: 9.5,-20.5 + parent: 4812 + type: Transform + - uid: 6002 + components: + - pos: 8.5,-20.5 + parent: 4812 + type: Transform + - uid: 6003 + components: + - pos: 7.5,-20.5 + parent: 4812 + type: Transform + - uid: 6004 + components: + - pos: 6.5,-20.5 + parent: 4812 + type: Transform + - uid: 6005 + components: + - pos: 6.5,-19.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6006 + components: + - pos: 19.5,-20.5 + parent: 4812 + type: Transform + - uid: 6007 + components: + - pos: 20.5,-20.5 + parent: 4812 + type: Transform + - uid: 6008 + components: + - pos: 21.5,-20.5 + parent: 4812 + type: Transform + - uid: 6009 + components: + - pos: 22.5,-20.5 + parent: 4812 + type: Transform + - uid: 6010 + components: + - pos: 22.5,-21.5 + parent: 4812 + type: Transform + - uid: 6011 + components: + - pos: 22.5,-22.5 + parent: 4812 + type: Transform + - uid: 6012 + components: + - pos: 23.5,-22.5 + parent: 4812 + type: Transform + - uid: 6013 + components: + - pos: 24.5,-22.5 + parent: 4812 + type: Transform + - uid: 6014 + components: + - pos: 25.5,-22.5 + parent: 4812 + type: Transform + - uid: 6015 + components: + - pos: 26.5,-22.5 + parent: 4812 + type: Transform + - uid: 6016 + components: + - pos: 27.5,-22.5 + parent: 4812 + type: Transform + - uid: 6017 + components: + - pos: 28.5,-22.5 + parent: 4812 + type: Transform + - uid: 6018 + components: + - pos: 28.5,-21.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6051 + components: + - pos: 13.5,-21.5 + parent: 4812 + type: Transform + - uid: 6065 + components: + - pos: 28.5,-23.5 + parent: 4812 + type: Transform + - uid: 6640 + components: + - pos: -26.5,-25.5 + parent: 4812 + type: Transform + - uid: 6641 + components: + - pos: -27.5,-25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6660 + components: + - pos: -25.5,-23.5 + parent: 4812 + type: Transform + - uid: 6661 + components: + - pos: -24.5,-22.5 + parent: 4812 + type: Transform + - uid: 6664 + components: + - pos: -20.5,-22.5 + parent: 4812 + type: Transform + - uid: 6666 + components: + - pos: -25.5,-24.5 + parent: 4812 + type: Transform + - uid: 6668 + components: + - pos: -17.5,-22.5 + parent: 4812 + type: Transform + - uid: 6780 + components: + - pos: -10.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6782 + components: + - pos: -19.5,-22.5 + parent: 4812 + type: Transform + - uid: 6787 + components: + - pos: -16.5,-21.5 + parent: 4812 + type: Transform + - uid: 6902 + components: + - pos: -8.5,-31.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6903 + components: + - pos: -8.5,-32.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6904 + components: + - pos: -8.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6905 + components: + - pos: -8.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6906 + components: + - pos: -9.5,-32.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6907 + components: + - pos: -10.5,-32.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6908 + components: + - pos: -11.5,-32.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6909 + components: + - pos: -11.5,-31.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6910 + components: + - pos: -11.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6911 + components: + - pos: -12.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6912 + components: + - pos: -13.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6913 + components: + - pos: -14.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6914 + components: + - pos: -15.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6915 + components: + - pos: -16.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6916 + components: + - pos: -17.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6917 + components: + - pos: -17.5,-31.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7029 + components: + - pos: -22.5,-25.5 + parent: 4812 + type: Transform + - uid: 7062 + components: + - pos: -17.5,-15.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7065 + components: + - pos: -15.5,-16.5 + parent: 4812 + type: Transform + - uid: 7183 + components: + - pos: -15.5,-20.5 + parent: 4812 + type: Transform + - uid: 7237 + components: + - pos: -15.5,-15.5 + parent: 4812 + type: Transform + - uid: 7238 + components: + - pos: -15.5,-14.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7239 + components: + - pos: -16.5,-15.5 + parent: 4812 + type: Transform + - uid: 7257 + components: + - pos: -12.5,-26.5 + parent: 4812 + type: Transform + - uid: 7261 + components: + - pos: -10.5,-29.5 + parent: 4812 + type: Transform + - uid: 7263 + components: + - pos: -10.5,-25.5 + parent: 4812 + type: Transform + - uid: 7264 + components: + - pos: -18.5,-26.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7265 + components: + - pos: -10.5,-26.5 + parent: 4812 + type: Transform + - uid: 7266 + components: + - pos: -11.5,-25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7270 + components: + - pos: -23.5,-22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7271 + components: + - pos: -25.5,-22.5 + parent: 4812 + type: Transform + - uid: 7274 + components: + - pos: -14.5,-26.5 + parent: 4812 + type: Transform + - uid: 7275 + components: + - pos: -15.5,-26.5 + parent: 4812 + type: Transform + - uid: 7277 + components: + - pos: -11.5,-26.5 + parent: 4812 + type: Transform + - uid: 7286 + components: + - pos: -22.5,-22.5 + parent: 4812 + type: Transform + - uid: 7338 + components: + - pos: -13.5,-26.5 + parent: 4812 + type: Transform + - uid: 7339 + components: + - pos: -16.5,-26.5 + parent: 4812 + type: Transform + - uid: 7341 + components: + - pos: -17.5,-26.5 + parent: 4812 + type: Transform + - uid: 7342 + components: + - pos: -10.5,-28.5 + parent: 4812 + type: Transform + - uid: 7345 + components: + - pos: -10.5,-27.5 + parent: 4812 + type: Transform + - uid: 7348 + components: + - pos: -18.5,-22.5 + parent: 4812 + type: Transform + - uid: 7384 + components: + - pos: -19.5,-26.5 + parent: 4812 + type: Transform + - uid: 7387 + components: + - pos: -21.5,-22.5 + parent: 4812 + type: Transform + - uid: 7467 + components: + - pos: -8.5,-34.5 + parent: 4812 + type: Transform + - uid: 7468 + components: + - pos: -7.5,-34.5 + parent: 4812 + type: Transform + - uid: 7469 + components: + - pos: -6.5,-34.5 + parent: 4812 + type: Transform + - uid: 7470 + components: + - pos: -5.5,-34.5 + parent: 4812 + type: Transform + - uid: 7471 + components: + - pos: -5.5,-33.5 + parent: 4812 + type: Transform + - uid: 7472 + components: + - pos: -5.5,-32.5 + parent: 4812 + type: Transform + - uid: 7473 + components: + - pos: -5.5,-31.5 + parent: 4812 + type: Transform + - uid: 7474 + components: + - pos: -5.5,-30.5 + parent: 4812 + type: Transform + - uid: 7475 + components: + - pos: -5.5,-29.5 + parent: 4812 + type: Transform + - uid: 7476 + components: + - pos: -5.5,-28.5 + parent: 4812 + type: Transform + - uid: 7477 + components: + - pos: -5.5,-27.5 + parent: 4812 + type: Transform + - uid: 7478 + components: + - pos: -5.5,-26.5 + parent: 4812 + type: Transform + - uid: 7479 + components: + - pos: -5.5,-25.5 + parent: 4812 + type: Transform + - uid: 7480 + components: + - pos: -5.5,-24.5 + parent: 4812 + type: Transform + - uid: 7481 + components: + - pos: -5.5,-23.5 + parent: 4812 + type: Transform + - uid: 7482 + components: + - pos: -5.5,-22.5 + parent: 4812 + type: Transform + - uid: 7483 + components: + - pos: -5.5,-21.5 + parent: 4812 + type: Transform + - uid: 7484 + components: + - pos: -4.5,-21.5 + parent: 4812 + type: Transform + - uid: 7485 + components: + - pos: -3.5,-21.5 + parent: 4812 + type: Transform + - uid: 7486 + components: + - pos: -2.5,-21.5 + parent: 4812 + type: Transform + - uid: 7487 + components: + - pos: -1.5,-21.5 + parent: 4812 + type: Transform + - uid: 7488 + components: + - pos: -1.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7986 + components: + - pos: -36.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7987 + components: + - pos: -36.5,12.5 + parent: 4812 + type: Transform + - uid: 7988 + components: + - pos: -36.5,11.5 + parent: 4812 + type: Transform + - uid: 7989 + components: + - pos: -35.5,11.5 + parent: 4812 + type: Transform + - uid: 7990 + components: + - pos: -34.5,11.5 + parent: 4812 + type: Transform + - uid: 7991 + components: + - pos: -33.5,11.5 + parent: 4812 + type: Transform + - uid: 7992 + components: + - pos: -32.5,11.5 + parent: 4812 + type: Transform + - uid: 7993 + components: + - pos: -31.5,11.5 + parent: 4812 + type: Transform + - uid: 7994 + components: + - pos: -31.5,10.5 + parent: 4812 + type: Transform + - uid: 7995 + components: + - pos: -31.5,9.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7996 + components: + - pos: -31.5,8.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7997 + components: + - pos: -31.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7998 + components: + - pos: -32.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7999 + components: + - pos: -33.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8000 + components: + - pos: -34.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8001 + components: + - pos: -35.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8002 + components: + - pos: -36.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8003 + components: + - pos: -37.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8004 + components: + - pos: -37.5,8.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8005 + components: + - pos: -30.5,11.5 + parent: 4812 + type: Transform + - uid: 8006 + components: + - pos: -29.5,11.5 + parent: 4812 + type: Transform + - uid: 8007 + components: + - pos: -29.5,12.5 + parent: 4812 + type: Transform + - uid: 8008 + components: + - pos: -29.5,13.5 + parent: 4812 + type: Transform + - uid: 8009 + components: + - pos: -29.5,14.5 + parent: 4812 + type: Transform + - uid: 8010 + components: + - pos: -29.5,15.5 + parent: 4812 + type: Transform + - uid: 8011 + components: + - pos: -29.5,16.5 + parent: 4812 + type: Transform + - uid: 8012 + components: + - pos: -29.5,17.5 + parent: 4812 + type: Transform + - uid: 8013 + components: + - pos: -29.5,18.5 + parent: 4812 + type: Transform + - uid: 8014 + components: + - pos: -29.5,19.5 + parent: 4812 + type: Transform + - uid: 8015 + components: + - pos: -28.5,19.5 + parent: 4812 + type: Transform + - uid: 8016 + components: + - pos: -27.5,19.5 + parent: 4812 + type: Transform + - uid: 8017 + components: + - pos: -26.5,19.5 + parent: 4812 + type: Transform + - uid: 8018 + components: + - pos: -25.5,19.5 + parent: 4812 + type: Transform + - uid: 8019 + components: + - pos: -24.5,19.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8020 + components: + - pos: -24.5,20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8021 + components: + - pos: -28.5,16.5 + parent: 4812 + type: Transform + - uid: 8022 + components: + - pos: -27.5,16.5 + parent: 4812 + type: Transform + - uid: 8023 + components: + - pos: -26.5,16.5 + parent: 4812 + type: Transform + - uid: 8024 + components: + - pos: -25.5,16.5 + parent: 4812 + type: Transform + - uid: 8025 + components: + - pos: -24.5,16.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8026 + components: + - pos: -24.5,17.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8027 + components: + - pos: -27.5,17.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8028 + components: + - pos: -27.5,20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8029 + components: + - pos: -29.5,10.5 + parent: 4812 + type: Transform + - uid: 8030 + components: + - pos: -28.5,10.5 + parent: 4812 + type: Transform + - uid: 8031 + components: + - pos: -27.5,10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8032 + components: + - pos: -26.5,10.5 + parent: 4812 + type: Transform + - uid: 8033 + components: + - pos: -25.5,10.5 + parent: 4812 + type: Transform + - uid: 8034 + components: + - pos: -24.5,10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8035 + components: + - pos: -32.5,10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8036 + components: + - pos: -32.5,12.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8037 + components: + - pos: -30.5,14.5 + parent: 4812 + type: Transform + - uid: 8038 + components: + - pos: -31.5,14.5 + parent: 4812 + type: Transform + - uid: 8039 + components: + - pos: -32.5,14.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8040 + components: + - pos: -33.5,14.5 + parent: 4812 + type: Transform + - uid: 8041 + components: + - pos: -33.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8042 + components: + - pos: -34.5,14.5 + parent: 4812 + type: Transform + - uid: 8043 + components: + - pos: -35.5,14.5 + parent: 4812 + type: Transform + - uid: 8044 + components: + - pos: -35.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8045 + components: + - pos: -35.5,15.5 + parent: 4812 + type: Transform + - uid: 8046 + components: + - pos: -35.5,16.5 + parent: 4812 + type: Transform + - uid: 8047 + components: + - pos: -35.5,17.5 + parent: 4812 + type: Transform + - uid: 8048 + components: + - pos: -35.5,18.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8049 + components: + - pos: -33.5,15.5 + parent: 4812 + type: Transform + - uid: 8050 + components: + - pos: -33.5,16.5 + parent: 4812 + type: Transform + - uid: 8051 + components: + - pos: -33.5,17.5 + parent: 4812 + type: Transform + - uid: 8052 + components: + - pos: -33.5,18.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8053 + components: + - pos: -33.5,19.5 + parent: 4812 + type: Transform + - uid: 8054 + components: + - pos: -33.5,20.5 + parent: 4812 + type: Transform + - uid: 8055 + components: + - pos: -32.5,19.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8056 + components: + - pos: -32.5,20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8177 + components: + - pos: -23.5,20.5 + parent: 4812 + type: Transform + - uid: 8178 + components: + - pos: -23.5,21.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8179 + components: + - pos: -22.5,20.5 + parent: 4812 + type: Transform + - uid: 8180 + components: + - pos: -21.5,20.5 + parent: 4812 + type: Transform + - uid: 8181 + components: + - pos: -20.5,20.5 + parent: 4812 + type: Transform + - uid: 8182 + components: + - pos: -19.5,20.5 + parent: 4812 + type: Transform + - uid: 8183 + components: + - pos: -19.5,21.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8184 + components: + - pos: -20.5,21.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8185 + components: + - pos: -21.5,21.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8186 + components: + - pos: -21.5,22.5 + parent: 4812 + type: Transform + - uid: 8187 + components: + - pos: -21.5,23.5 + parent: 4812 + type: Transform + - uid: 8188 + components: + - pos: -21.5,24.5 + parent: 4812 + type: Transform + - uid: 8189 + components: + - pos: -21.5,25.5 + parent: 4812 + type: Transform + - uid: 8190 + components: + - pos: -21.5,26.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8191 + components: + - pos: -21.5,27.5 + parent: 4812 + type: Transform + - uid: 8192 + components: + - pos: -21.5,28.5 + parent: 4812 + type: Transform + - uid: 8193 + components: + - pos: -22.5,28.5 + parent: 4812 + type: Transform + - uid: 8194 + components: + - pos: -22.5,29.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8195 + components: + - pos: -22.5,26.5 + parent: 4812 + type: Transform + - uid: 8196 + components: + - pos: -23.5,26.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8853 + components: + - pos: 13.5,-19.5 + parent: 4812 + type: Transform + - uid: 8858 + components: + - pos: 13.5,-18.5 + parent: 4812 + type: Transform + - uid: 8878 + components: + - pos: -24.5,-10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8879 + components: + - pos: -24.5,-11.5 + parent: 4812 + type: Transform + - uid: 8880 + components: + - pos: -25.5,-11.5 + parent: 4812 + type: Transform + - uid: 8881 + components: + - pos: -26.5,-11.5 + parent: 4812 + type: Transform + - uid: 8882 + components: + - pos: -27.5,-11.5 + parent: 4812 + type: Transform + - uid: 8883 + components: + - pos: -28.5,-11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8884 + components: + - pos: -29.5,-11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8885 + components: + - pos: -30.5,-11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8886 + components: + - pos: -31.5,-11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8887 + components: + - pos: -32.5,-11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8888 + components: + - pos: -33.5,-11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8889 + components: + - pos: -34.5,-11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8890 + components: + - pos: -35.5,-11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8891 + components: + - pos: -36.5,-11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8892 + components: + - pos: -36.5,-12.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8893 + components: + - pos: -36.5,-13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8894 + components: + - pos: -36.5,-14.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8895 + components: + - pos: -36.5,-15.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8897 + components: + - pos: -33.5,-24.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8898 + components: + - pos: -34.5,-24.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8899 + components: + - pos: -34.5,-23.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8900 + components: + - pos: -34.5,-22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8901 + components: + - pos: -34.5,-21.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8902 + components: + - pos: 13.5,-17.5 + parent: 4812 + type: Transform + - uid: 8906 + components: + - pos: 13.5,-16.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8967 + components: + - pos: 13.5,-22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8969 + components: + - pos: 28.5,-24.5 + parent: 4812 + type: Transform + - uid: 8971 + components: + - pos: 28.5,-25.5 + parent: 4812 + type: Transform + - uid: 8972 + components: + - pos: 29.5,-25.5 + parent: 4812 + type: Transform + - uid: 8973 + components: + - pos: 30.5,-25.5 + parent: 4812 + type: Transform + - uid: 8974 + components: + - pos: 31.5,-25.5 + parent: 4812 + type: Transform + - uid: 8975 + components: + - pos: 32.5,-25.5 + parent: 4812 + type: Transform + - uid: 8976 + components: + - pos: 32.5,-26.5 + parent: 4812 + type: Transform + - uid: 9014 + components: + - pos: 32.5,-27.5 + parent: 4812 + type: Transform + - uid: 9074 + components: + - pos: 32.5,-28.5 + parent: 4812 + type: Transform + - uid: 9089 + components: + - pos: 32.5,-29.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9287 + components: + - pos: -38.5,7.5 + parent: 4812 + type: Transform + - uid: 9289 + components: + - pos: -38.5,6.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9524 + components: + - pos: 16.5,-19.5 + parent: 4812 + type: Transform + - uid: 9580 + components: + - pos: 16.5,-18.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9581 + components: + - pos: 16.5,-17.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9582 + components: + - pos: 16.5,-16.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9583 + components: + - pos: 17.5,-16.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10001 + components: + - pos: -34.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10002 + components: + - pos: -35.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10003 + components: + - pos: -36.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10004 + components: + - pos: -37.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10005 + components: + - pos: -38.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10006 + components: + - pos: -39.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10007 + components: + - pos: -40.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10008 + components: + - pos: -41.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10009 + components: + - pos: -42.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10010 + components: + - pos: -43.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10011 + components: + - pos: -44.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10012 + components: + - pos: -45.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10013 + components: + - pos: -46.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10014 + components: + - pos: -47.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10015 + components: + - pos: -48.5,-20.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10016 + components: + - pos: -48.5,-19.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10017 + components: + - pos: -36.5,-19.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10018 + components: + - pos: -36.5,-18.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10019 + components: + - pos: -36.5,-17.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10020 + components: + - pos: -36.5,-16.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10022 + components: + - pos: -44.5,-19.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10023 + components: + - pos: -44.5,-18.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10024 + components: + - pos: -44.5,-17.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10025 + components: + - pos: -44.5,-16.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10026 + components: + - pos: -44.5,-15.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10027 + components: + - pos: -44.5,-14.5 + parent: 4812 + type: Transform + - uid: 10028 + components: + - pos: -44.5,-13.5 + parent: 4812 + type: Transform + - uid: 10029 + components: + - pos: -44.5,-12.5 + parent: 4812 + type: Transform + - uid: 10030 + components: + - pos: -44.5,-11.5 + parent: 4812 + type: Transform + - uid: 10031 + components: + - pos: -44.5,-10.5 + parent: 4812 + type: Transform + - uid: 10032 + components: + - pos: -44.5,-9.5 + parent: 4812 + type: Transform + - uid: 10033 + components: + - pos: -44.5,-8.5 + parent: 4812 + type: Transform + - uid: 10034 + components: + - pos: -44.5,-7.5 + parent: 4812 + type: Transform + - uid: 10035 + components: + - pos: -44.5,-6.5 + parent: 4812 + type: Transform + - uid: 10036 + components: + - pos: -43.5,-6.5 + parent: 4812 + type: Transform + - uid: 10037 + components: + - pos: -42.5,-6.5 + parent: 4812 + type: Transform + - uid: 10038 + components: + - pos: -41.5,-6.5 + parent: 4812 + type: Transform + - uid: 10039 + components: + - pos: -41.5,-5.5 + parent: 4812 + type: Transform + - uid: 10040 + components: + - pos: -41.5,-4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10184 + components: + - pos: -50.5,-25.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10185 + components: + - pos: -50.5,-24.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10186 + components: + - pos: -51.5,-24.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10187 + components: + - pos: -51.5,-23.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10188 + components: + - pos: -51.5,-22.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10189 + components: + - pos: -51.5,-21.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10652 + components: + - pos: -53.5,-13.5 + parent: 4812 + type: Transform + - uid: 10653 + components: + - pos: -53.5,-12.5 + parent: 4812 + type: Transform + - uid: 10654 + components: + - pos: -54.5,-12.5 + parent: 4812 + type: Transform + - uid: 10655 + components: + - pos: -55.5,-12.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11151 + components: + - pos: 14.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11152 + components: + - pos: 13.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11153 + components: + - pos: 12.5,-33.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11154 + components: + - pos: 12.5,-32.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11155 + components: + - pos: 12.5,-31.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11156 + components: + - pos: 12.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11157 + components: + - pos: 11.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11158 + components: + - pos: 10.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11159 + components: + - pos: 9.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11160 + components: + - pos: 8.5,-30.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11161 + components: + - pos: 8.5,-31.5 + parent: 4812 + type: Transform + - uid: 11162 + components: + - pos: 8.5,-32.5 + parent: 4812 + type: Transform + - uid: 11163 + components: + - pos: 8.5,-33.5 + parent: 4812 + type: Transform + - uid: 11164 + components: + - pos: 8.5,-34.5 + parent: 4812 + type: Transform + - uid: 11165 + components: + - pos: 8.5,-35.5 + parent: 4812 + type: Transform + - uid: 11166 + components: + - pos: 9.5,-35.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11167 + components: + - pos: 10.5,-35.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11438 + components: + - pos: 30.5,-39.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11439 + components: + - pos: 30.5,-38.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11440 + components: + - pos: 30.5,-37.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound +- proto: CableMVStack + entities: + - uid: 8586 + components: + - pos: -16.577534,7.6930285 + parent: 4812 + type: Transform + - uid: 11954 + components: + - pos: -10.530096,15.7538185 + parent: 4812 + type: Transform + - uid: 11955 + components: + - pos: -10.530096,15.7538185 + parent: 4812 + type: Transform +- proto: CableTerminal + entities: + - uid: 3794 + components: + - rot: 3.141592653589793 rad + pos: 14.5,46.5 + parent: 4812 + type: Transform + - uid: 8736 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-3.5 + parent: 4812 + type: Transform + - uid: 8737 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-3.5 + parent: 4812 + type: Transform + - uid: 10167 + components: + - pos: -53.5,-24.5 + parent: 4812 + type: Transform + - uid: 10648 + components: + - rot: 3.141592653589793 rad + pos: -47.5,-12.5 + parent: 4812 + type: Transform + - uid: 11393 + components: + - pos: 33.5,-38.5 + parent: 4812 + type: Transform +- proto: CandyBowl + entities: + - uid: 10667 + components: + - pos: -12.524394,-16.459326 + parent: 4812 + type: Transform +- proto: CaptainIDCard + entities: + - uid: 2588 + components: + - pos: -12.545029,27.590694 + parent: 4812 + type: Transform +- proto: CarbonDioxideCanister + entities: + - uid: 9453 + components: + - pos: -53.5,5.5 + parent: 4812 + type: Transform +- proto: Carpet + entities: + - uid: 1739 + components: + - pos: -9.5,8.5 + parent: 4812 + type: Transform + - uid: 1740 + components: + - pos: -9.5,7.5 + parent: 4812 + type: Transform + - uid: 1741 + components: + - pos: -9.5,6.5 + parent: 4812 + type: Transform + - uid: 1742 + components: + - pos: -9.5,5.5 + parent: 4812 + type: Transform + - uid: 1743 + components: + - pos: -9.5,4.5 + parent: 4812 + type: Transform + - uid: 1744 + components: + - pos: -8.5,8.5 + parent: 4812 + type: Transform + - uid: 1745 + components: + - pos: -8.5,7.5 + parent: 4812 + type: Transform + - uid: 1746 + components: + - pos: -8.5,6.5 + parent: 4812 + type: Transform + - uid: 1747 + components: + - pos: -8.5,5.5 + parent: 4812 + type: Transform + - uid: 1748 + components: + - pos: -8.5,4.5 + parent: 4812 + type: Transform + - uid: 5377 + components: + - pos: 19.5,-17.5 + parent: 4812 + type: Transform + - uid: 5378 + components: + - pos: 19.5,-16.5 + parent: 4812 + type: Transform + - uid: 5379 + components: + - pos: 20.5,-16.5 + parent: 4812 + type: Transform + - uid: 5380 + components: + - pos: 20.5,-17.5 + parent: 4812 + type: Transform + - uid: 5381 + components: + - pos: 19.5,-15.5 + parent: 4812 + type: Transform + - uid: 5382 + components: + - pos: 20.5,-15.5 + parent: 4812 + type: Transform + - uid: 6400 + components: + - pos: -3.5,-18.5 + parent: 4812 + type: Transform + - uid: 6401 + components: + - pos: -3.5,-17.5 + parent: 4812 + type: Transform + - uid: 6402 + components: + - pos: -3.5,-16.5 + parent: 4812 + type: Transform + - uid: 6403 + components: + - pos: -2.5,-18.5 + parent: 4812 + type: Transform + - uid: 6404 + components: + - pos: -2.5,-17.5 + parent: 4812 + type: Transform + - uid: 6405 + components: + - pos: -2.5,-16.5 + parent: 4812 + type: Transform + - uid: 6406 + components: + - pos: -1.5,-18.5 + parent: 4812 + type: Transform + - uid: 6407 + components: + - pos: -1.5,-17.5 + parent: 4812 + type: Transform + - uid: 6408 + components: + - pos: -1.5,-16.5 + parent: 4812 + type: Transform + - uid: 7162 + components: + - pos: -25.5,-15.5 + parent: 4812 + type: Transform + - uid: 7163 + components: + - pos: -25.5,-16.5 + parent: 4812 + type: Transform + - uid: 7164 + components: + - pos: -24.5,-15.5 + parent: 4812 + type: Transform + - uid: 7165 + components: + - pos: -24.5,-16.5 + parent: 4812 + type: Transform + - uid: 7166 + components: + - pos: -23.5,-15.5 + parent: 4812 + type: Transform + - uid: 7167 + components: + - pos: -23.5,-16.5 + parent: 4812 + type: Transform + - uid: 9062 + components: + - pos: -30.5,-39.5 + parent: 4812 + type: Transform + - uid: 9063 + components: + - pos: -29.5,-39.5 + parent: 4812 + type: Transform +- proto: CarpetBlack + entities: + - uid: 11360 + components: + - pos: 36.5,-34.5 + parent: 4812 + type: Transform + - uid: 11361 + components: + - pos: 36.5,-33.5 + parent: 4812 + type: Transform + - uid: 11362 + components: + - pos: 37.5,-33.5 + parent: 4812 + type: Transform + - uid: 11363 + components: + - pos: 37.5,-34.5 + parent: 4812 + type: Transform +- proto: CarpetBlue + entities: + - uid: 2591 + components: + - pos: -12.5,28.5 + parent: 4812 + type: Transform + - uid: 2592 + components: + - pos: -12.5,29.5 + parent: 4812 + type: Transform + - uid: 2593 + components: + - pos: -11.5,29.5 + parent: 4812 + type: Transform + - uid: 2594 + components: + - pos: -11.5,28.5 + parent: 4812 + type: Transform + - uid: 2611 + components: + - pos: -13.5,22.5 + parent: 4812 + type: Transform + - uid: 2613 + components: + - pos: -13.5,23.5 + parent: 4812 + type: Transform + - uid: 2614 + components: + - pos: -13.5,24.5 + parent: 4812 + type: Transform + - uid: 2615 + components: + - pos: -12.5,22.5 + parent: 4812 + type: Transform + - uid: 2616 + components: + - pos: -12.5,23.5 + parent: 4812 + type: Transform + - uid: 2617 + components: + - pos: -12.5,24.5 + parent: 4812 + type: Transform + - uid: 2618 + components: + - pos: -11.5,22.5 + parent: 4812 + type: Transform + - uid: 2619 + components: + - pos: -11.5,23.5 + parent: 4812 + type: Transform + - uid: 2620 + components: + - pos: -11.5,24.5 + parent: 4812 + type: Transform +- proto: CarpetChapel + entities: + - uid: 6984 + components: + - pos: -17.5,-33.5 + parent: 4812 + type: Transform + - uid: 6985 + components: + - pos: -15.5,-33.5 + parent: 4812 + type: Transform + - uid: 6986 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-32.5 + parent: 4812 + type: Transform + - uid: 6987 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-32.5 + parent: 4812 + type: Transform + - uid: 6988 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-35.5 + parent: 4812 + type: Transform + - uid: 6989 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-35.5 + parent: 4812 + type: Transform + - uid: 6990 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-35.5 + parent: 4812 + type: Transform + - uid: 6991 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-35.5 + parent: 4812 + type: Transform + - uid: 6992 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-32.5 + parent: 4812 + type: Transform + - uid: 6993 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-32.5 + parent: 4812 + type: Transform + - uid: 6994 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-33.5 + parent: 4812 + type: Transform + - uid: 6995 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-33.5 + parent: 4812 + type: Transform + - uid: 6996 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-36.5 + parent: 4812 + type: Transform + - uid: 6997 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-36.5 + parent: 4812 + type: Transform + - uid: 6998 + components: + - pos: -17.5,-36.5 + parent: 4812 + type: Transform + - uid: 6999 + components: + - pos: -15.5,-36.5 + parent: 4812 + type: Transform +- proto: CarpetGreen + entities: + - uid: 7156 + components: + - pos: -31.5,-17.5 + parent: 4812 + type: Transform + - uid: 7157 + components: + - pos: -31.5,-16.5 + parent: 4812 + type: Transform + - uid: 7158 + components: + - pos: -30.5,-17.5 + parent: 4812 + type: Transform + - uid: 7159 + components: + - pos: -30.5,-16.5 + parent: 4812 + type: Transform + - uid: 8279 + components: + - pos: -18.5,14.5 + parent: 4812 + type: Transform + - uid: 8280 + components: + - pos: -18.5,15.5 + parent: 4812 + type: Transform + - uid: 8281 + components: + - pos: -17.5,15.5 + parent: 4812 + type: Transform + - uid: 8282 + components: + - pos: -17.5,14.5 + parent: 4812 + type: Transform + - uid: 9082 + components: + - pos: -30.5,-36.5 + parent: 4812 + type: Transform + - uid: 9083 + components: + - pos: -30.5,-37.5 + parent: 4812 + type: Transform + - uid: 9084 + components: + - pos: -31.5,-37.5 + parent: 4812 + type: Transform + - uid: 9085 + components: + - pos: -31.5,-36.5 + parent: 4812 + type: Transform +- proto: CarpetOrange + entities: + - uid: 1657 + components: + - pos: 6.5,8.5 + parent: 4812 + type: Transform + - uid: 1661 + components: + - pos: 6.5,9.5 + parent: 4812 + type: Transform + - uid: 1662 + components: + - pos: 7.5,9.5 + parent: 4812 + type: Transform + - uid: 1663 + components: + - pos: 7.5,8.5 + parent: 4812 + type: Transform +- proto: CarpetPurple + entities: + - uid: 277 + components: + - pos: -18.5,-0.5 + parent: 4812 + type: Transform + - uid: 2635 + components: + - pos: -3.5,28.5 + parent: 4812 + type: Transform + - uid: 2636 + components: + - pos: -3.5,29.5 + parent: 4812 + type: Transform + - uid: 2637 + components: + - pos: -2.5,29.5 + parent: 4812 + type: Transform + - uid: 2638 + components: + - pos: -2.5,28.5 + parent: 4812 + type: Transform + - uid: 2639 + components: + - pos: -1.5,28.5 + parent: 4812 + type: Transform + - uid: 2640 + components: + - pos: -1.5,29.5 + parent: 4812 + type: Transform + - uid: 6294 + components: + - pos: 25.5,-20.5 + parent: 4812 + type: Transform + - uid: 6295 + components: + - pos: 25.5,-19.5 + parent: 4812 + type: Transform + - uid: 6296 + components: + - pos: 25.5,-18.5 + parent: 4812 + type: Transform + - uid: 6297 + components: + - pos: 26.5,-20.5 + parent: 4812 + type: Transform + - uid: 6298 + components: + - pos: 26.5,-19.5 + parent: 4812 + type: Transform + - uid: 6299 + components: + - pos: 26.5,-18.5 + parent: 4812 + type: Transform + - uid: 6300 + components: + - pos: 27.5,-20.5 + parent: 4812 + type: Transform + - uid: 6301 + components: + - pos: 27.5,-19.5 + parent: 4812 + type: Transform + - uid: 6302 + components: + - pos: 27.5,-18.5 + parent: 4812 + type: Transform +- proto: CarpetSBlue + entities: + - uid: 2546 + components: + - pos: 6.5,28.5 + parent: 4812 + type: Transform + - uid: 2547 + components: + - pos: 6.5,29.5 + parent: 4812 + type: Transform + - uid: 2548 + components: + - pos: 7.5,29.5 + parent: 4812 + type: Transform + - uid: 2549 + components: + - pos: 7.5,28.5 + parent: 4812 + type: Transform + - uid: 2550 + components: + - pos: 9.5,24.5 + parent: 4812 + type: Transform + - uid: 2551 + components: + - pos: 8.5,24.5 + parent: 4812 + type: Transform + - uid: 2552 + components: + - pos: 7.5,24.5 + parent: 4812 + type: Transform + - uid: 2553 + components: + - pos: 7.5,25.5 + parent: 4812 + type: Transform + - uid: 2554 + components: + - pos: 8.5,25.5 + parent: 4812 + type: Transform + - uid: 2555 + components: + - pos: 9.5,25.5 + parent: 4812 + type: Transform +- proto: Catwalk + entities: + - uid: 1542 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,4.5 + parent: 4812 + type: Transform + - uid: 1545 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,4.5 + parent: 4812 + type: Transform + - uid: 1548 + components: + - pos: 2.5,11.5 + parent: 4812 + type: Transform + - uid: 1550 + components: + - pos: 2.5,12.5 + parent: 4812 + type: Transform + - uid: 1551 + components: + - pos: 2.5,13.5 + parent: 4812 + type: Transform + - uid: 1553 + components: + - pos: 1.5,14.5 + parent: 4812 + type: Transform + - uid: 3101 + components: + - pos: 3.5,11.5 + parent: 4812 + type: Transform + - uid: 3102 + components: + - pos: 4.5,11.5 + parent: 4812 + type: Transform + - uid: 3103 + components: + - pos: 5.5,11.5 + parent: 4812 + type: Transform + - uid: 3104 + components: + - pos: 6.5,11.5 + parent: 4812 + type: Transform + - uid: 3105 + components: + - pos: 7.5,11.5 + parent: 4812 + type: Transform + - uid: 3106 + components: + - pos: 8.5,11.5 + parent: 4812 + type: Transform + - uid: 3107 + components: + - pos: 9.5,10.5 + parent: 4812 + type: Transform + - uid: 3108 + components: + - pos: 9.5,9.5 + parent: 4812 + type: Transform + - uid: 3109 + components: + - pos: 9.5,8.5 + parent: 4812 + type: Transform + - uid: 3110 + components: + - pos: 9.5,7.5 + parent: 4812 + type: Transform + - uid: 3111 + components: + - pos: 9.5,6.5 + parent: 4812 + type: Transform + - uid: 3112 + components: + - pos: 9.5,4.5 + parent: 4812 + type: Transform + - uid: 3362 + components: + - pos: 12.5,22.5 + parent: 4812 + type: Transform + - uid: 3363 + components: + - pos: 12.5,23.5 + parent: 4812 + type: Transform + - uid: 3364 + components: + - pos: 12.5,26.5 + parent: 4812 + type: Transform + - uid: 3365 + components: + - pos: 12.5,27.5 + parent: 4812 + type: Transform + - uid: 3366 + components: + - pos: 12.5,28.5 + parent: 4812 + type: Transform + - uid: 3367 + components: + - pos: 12.5,29.5 + parent: 4812 + type: Transform + - uid: 3368 + components: + - pos: 12.5,30.5 + parent: 4812 + type: Transform + - uid: 3471 + components: + - pos: 3.5,41.5 + parent: 4812 + type: Transform + - uid: 3472 + components: + - pos: 3.5,42.5 + parent: 4812 + type: Transform + - uid: 3473 + components: + - pos: 3.5,43.5 + parent: 4812 + type: Transform + - uid: 3477 + components: + - pos: 6.5,42.5 + parent: 4812 + type: Transform + - uid: 3478 + components: + - pos: 6.5,41.5 + parent: 4812 + type: Transform + - uid: 3479 + components: + - pos: 6.5,40.5 + parent: 4812 + type: Transform + - uid: 3480 + components: + - pos: 6.5,39.5 + parent: 4812 + type: Transform + - uid: 3481 + components: + - pos: 6.5,38.5 + parent: 4812 + type: Transform + - uid: 3482 + components: + - pos: 6.5,37.5 + parent: 4812 + type: Transform + - uid: 3483 + components: + - pos: 6.5,36.5 + parent: 4812 + type: Transform + - uid: 3484 + components: + - pos: 6.5,35.5 + parent: 4812 + type: Transform + - uid: 3485 + components: + - pos: 6.5,34.5 + parent: 4812 + type: Transform + - uid: 4487 + components: + - pos: 17.5,4.5 + parent: 4812 + type: Transform + - uid: 4488 + components: + - pos: 16.5,4.5 + parent: 4812 + type: Transform + - uid: 4591 + components: + - pos: 19.5,-7.5 + parent: 4812 + type: Transform + - uid: 4592 + components: + - pos: 18.5,-7.5 + parent: 4812 + type: Transform + - uid: 4593 + components: + - pos: 17.5,-7.5 + parent: 4812 + type: Transform + - uid: 4860 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-30.5 + parent: 4812 + type: Transform + - uid: 4931 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-30.5 + parent: 4812 + type: Transform + - uid: 4932 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-30.5 + parent: 4812 + type: Transform + - uid: 4950 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-30.5 + parent: 4812 + type: Transform + - uid: 4951 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-30.5 + parent: 4812 + type: Transform + - uid: 6170 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,4.5 + parent: 4812 + type: Transform + - uid: 6368 + components: + - pos: 16.5,-18.5 + parent: 4812 + type: Transform + - uid: 6369 + components: + - pos: 16.5,-17.5 + parent: 4812 + type: Transform + - uid: 6370 + components: + - pos: 16.5,-16.5 + parent: 4812 + type: Transform + - uid: 6371 + components: + - pos: 16.5,-15.5 + parent: 4812 + type: Transform + - uid: 6372 + components: + - pos: 15.5,-14.5 + parent: 4812 + type: Transform + - uid: 6373 + components: + - pos: 14.5,-14.5 + parent: 4812 + type: Transform + - uid: 6374 + components: + - pos: 13.5,-14.5 + parent: 4812 + type: Transform + - uid: 6375 + components: + - pos: 18.5,-32.5 + parent: 4812 + type: Transform + - uid: 6376 + components: + - pos: 18.5,-31.5 + parent: 4812 + type: Transform + - uid: 6377 + components: + - pos: 18.5,-30.5 + parent: 4812 + type: Transform + - uid: 6378 + components: + - pos: 18.5,-29.5 + parent: 4812 + type: Transform + - uid: 6379 + components: + - pos: 18.5,-28.5 + parent: 4812 + type: Transform + - uid: 6380 + components: + - pos: 17.5,-33.5 + parent: 4812 + type: Transform + - uid: 6381 + components: + - pos: 16.5,-33.5 + parent: 4812 + type: Transform + - uid: 6383 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-30.5 + parent: 4812 + type: Transform + - uid: 8610 + components: + - pos: 9.5,-8.5 + parent: 4812 + type: Transform + - uid: 8611 + components: + - pos: 9.5,-7.5 + parent: 4812 + type: Transform + - uid: 8612 + components: + - pos: 9.5,-6.5 + parent: 4812 + type: Transform + - uid: 8613 + components: + - pos: 9.5,-5.5 + parent: 4812 + type: Transform + - uid: 8614 + components: + - pos: 9.5,-4.5 + parent: 4812 + type: Transform + - uid: 8615 + components: + - pos: 9.5,-3.5 + parent: 4812 + type: Transform + - uid: 8616 + components: + - pos: 9.5,-2.5 + parent: 4812 + type: Transform + - uid: 8617 + components: + - pos: 9.5,-0.5 + parent: 4812 + type: Transform + - uid: 8618 + components: + - pos: 9.5,0.5 + parent: 4812 + type: Transform + - uid: 8619 + components: + - pos: 9.5,1.5 + parent: 4812 + type: Transform + - uid: 8620 + components: + - pos: 9.5,2.5 + parent: 4812 + type: Transform + - uid: 9429 + components: + - pos: -49.5,0.5 + parent: 4812 + type: Transform + - uid: 9430 + components: + - pos: -49.5,1.5 + parent: 4812 + type: Transform + - uid: 9431 + components: + - pos: -49.5,2.5 + parent: 4812 + type: Transform + - uid: 9432 + components: + - pos: -49.5,3.5 + parent: 4812 + type: Transform + - uid: 9433 + components: + - pos: -49.5,4.5 + parent: 4812 + type: Transform + - uid: 9434 + components: + - pos: -49.5,5.5 + parent: 4812 + type: Transform + - uid: 9435 + components: + - pos: -49.5,6.5 + parent: 4812 + type: Transform + - uid: 9436 + components: + - pos: -49.5,7.5 + parent: 4812 + type: Transform + - uid: 9437 + components: + - pos: -49.5,8.5 + parent: 4812 + type: Transform + - uid: 9438 + components: + - pos: -49.5,9.5 + parent: 4812 + type: Transform + - uid: 9439 + components: + - pos: -49.5,10.5 + parent: 4812 + type: Transform + - uid: 9440 + components: + - pos: -49.5,11.5 + parent: 4812 + type: Transform + - uid: 9441 + components: + - pos: -49.5,12.5 + parent: 4812 + type: Transform + - uid: 9532 + components: + - pos: -49.5,-4.5 + parent: 4812 + type: Transform + - uid: 9533 + components: + - pos: -48.5,-4.5 + parent: 4812 + type: Transform + - uid: 9534 + components: + - pos: -47.5,-4.5 + parent: 4812 + type: Transform + - uid: 9556 + components: + - pos: -45.5,14.5 + parent: 4812 + type: Transform + - uid: 9557 + components: + - pos: -44.5,14.5 + parent: 4812 + type: Transform + - uid: 9558 + components: + - pos: -43.5,14.5 + parent: 4812 + type: Transform + - uid: 9700 + components: + - pos: -36.5,-5.5 + parent: 4812 + type: Transform + - uid: 9701 + components: + - pos: -36.5,-4.5 + parent: 4812 + type: Transform + - uid: 9702 + components: + - pos: -36.5,-3.5 + parent: 4812 + type: Transform + - uid: 9703 + components: + - pos: -36.5,-2.5 + parent: 4812 + type: Transform + - uid: 9704 + components: + - pos: -36.5,-1.5 + parent: 4812 + type: Transform + - uid: 9705 + components: + - pos: -36.5,-0.5 + parent: 4812 + type: Transform + - uid: 9932 + components: + - pos: -40.5,-17.5 + parent: 4812 + type: Transform + - uid: 9933 + components: + - pos: -40.5,-16.5 + parent: 4812 + type: Transform + - uid: 9934 + components: + - pos: -40.5,-15.5 + parent: 4812 + type: Transform + - uid: 9935 + components: + - pos: -40.5,-14.5 + parent: 4812 + type: Transform + - uid: 9936 + components: + - pos: -40.5,-13.5 + parent: 4812 + type: Transform + - uid: 9937 + components: + - pos: -40.5,-12.5 + parent: 4812 + type: Transform + - uid: 9938 + components: + - pos: -40.5,-11.5 + parent: 4812 + type: Transform + - uid: 10277 + components: + - pos: -70.5,-22.5 + parent: 4812 + type: Transform + - uid: 10278 + components: + - pos: -69.5,-22.5 + parent: 4812 + type: Transform + - uid: 10279 + components: + - pos: -68.5,-22.5 + parent: 4812 + type: Transform + - uid: 10280 + components: + - pos: -67.5,-22.5 + parent: 4812 + type: Transform + - uid: 10281 + components: + - pos: -66.5,-22.5 + parent: 4812 + type: Transform + - uid: 10282 + components: + - pos: -65.5,-22.5 + parent: 4812 + type: Transform + - uid: 10283 + components: + - pos: -64.5,-22.5 + parent: 4812 + type: Transform + - uid: 10284 + components: + - pos: -63.5,-22.5 + parent: 4812 + type: Transform + - uid: 10285 + components: + - pos: -62.5,-22.5 + parent: 4812 + type: Transform + - uid: 10286 + components: + - pos: -61.5,-22.5 + parent: 4812 + type: Transform + - uid: 10287 + components: + - pos: -60.5,-22.5 + parent: 4812 + type: Transform + - uid: 10288 + components: + - pos: -59.5,-22.5 + parent: 4812 + type: Transform + - uid: 10289 + components: + - pos: -58.5,-22.5 + parent: 4812 + type: Transform + - uid: 10290 + components: + - pos: -57.5,-22.5 + parent: 4812 + type: Transform + - uid: 10291 + components: + - pos: -60.5,-21.5 + parent: 4812 + type: Transform + - uid: 10292 + components: + - pos: -60.5,-20.5 + parent: 4812 + type: Transform + - uid: 10293 + components: + - pos: -60.5,-19.5 + parent: 4812 + type: Transform + - uid: 10294 + components: + - pos: -60.5,-18.5 + parent: 4812 + type: Transform + - uid: 10295 + components: + - pos: -64.5,-18.5 + parent: 4812 + type: Transform + - uid: 10296 + components: + - pos: -64.5,-19.5 + parent: 4812 + type: Transform + - uid: 10297 + components: + - pos: -64.5,-20.5 + parent: 4812 + type: Transform + - uid: 10298 + components: + - pos: -64.5,-21.5 + parent: 4812 + type: Transform + - uid: 10299 + components: + - pos: -68.5,-21.5 + parent: 4812 + type: Transform + - uid: 10300 + components: + - pos: -68.5,-20.5 + parent: 4812 + type: Transform + - uid: 10301 + components: + - pos: -68.5,-19.5 + parent: 4812 + type: Transform + - uid: 10302 + components: + - pos: -68.5,-18.5 + parent: 4812 + type: Transform + - uid: 10303 + components: + - pos: -68.5,-23.5 + parent: 4812 + type: Transform + - uid: 10304 + components: + - pos: -68.5,-24.5 + parent: 4812 + type: Transform + - uid: 10305 + components: + - pos: -68.5,-25.5 + parent: 4812 + type: Transform + - uid: 10306 + components: + - pos: -68.5,-26.5 + parent: 4812 + type: Transform + - uid: 10307 + components: + - pos: -64.5,-26.5 + parent: 4812 + type: Transform + - uid: 10308 + components: + - pos: -64.5,-25.5 + parent: 4812 + type: Transform + - uid: 10309 + components: + - pos: -64.5,-24.5 + parent: 4812 + type: Transform + - uid: 10310 + components: + - pos: -64.5,-23.5 + parent: 4812 + type: Transform + - uid: 10311 + components: + - pos: -60.5,-26.5 + parent: 4812 + type: Transform + - uid: 10312 + components: + - pos: -60.5,-25.5 + parent: 4812 + type: Transform + - uid: 10313 + components: + - pos: -60.5,-24.5 + parent: 4812 + type: Transform + - uid: 10314 + components: + - pos: -60.5,-23.5 + parent: 4812 + type: Transform + - uid: 10566 + components: + - pos: -30.5,-25.5 + parent: 4812 + type: Transform + - uid: 10567 + components: + - pos: -31.5,-25.5 + parent: 4812 + type: Transform + - uid: 10568 + components: + - pos: -32.5,-25.5 + parent: 4812 + type: Transform + - uid: 10569 + components: + - pos: -33.5,-25.5 + parent: 4812 + type: Transform + - uid: 10570 + components: + - pos: -10.5,-32.5 + parent: 4812 + type: Transform + - uid: 10571 + components: + - pos: -10.5,-31.5 + parent: 4812 + type: Transform + - uid: 10572 + components: + - pos: -11.5,-30.5 + parent: 4812 + type: Transform + - uid: 10573 + components: + - pos: -12.5,-30.5 + parent: 4812 + type: Transform + - uid: 10574 + components: + - pos: -13.5,-30.5 + parent: 4812 + type: Transform + - uid: 10575 + components: + - pos: -14.5,-30.5 + parent: 4812 + type: Transform + - uid: 10576 + components: + - pos: -15.5,-30.5 + parent: 4812 + type: Transform + - uid: 10577 + components: + - pos: -16.5,-30.5 + parent: 4812 + type: Transform + - uid: 10578 + components: + - pos: -17.5,-30.5 + parent: 4812 + type: Transform + - uid: 10579 + components: + - pos: -18.5,-30.5 + parent: 4812 + type: Transform + - uid: 10580 + components: + - pos: -19.5,-30.5 + parent: 4812 + type: Transform + - uid: 10582 + components: + - pos: -21.5,-30.5 + parent: 4812 + type: Transform + - uid: 10583 + components: + - pos: -22.5,-30.5 + parent: 4812 + type: Transform + - uid: 10584 + components: + - pos: -23.5,-30.5 + parent: 4812 + type: Transform + - uid: 10587 + components: + - pos: -34.5,-24.5 + parent: 4812 + type: Transform + - uid: 10588 + components: + - pos: -34.5,-23.5 + parent: 4812 + type: Transform + - uid: 10589 + components: + - pos: -34.5,-22.5 + parent: 4812 + type: Transform + - uid: 10590 + components: + - pos: -34.5,-21.5 + parent: 4812 + type: Transform + - uid: 10593 + components: + - pos: -38.5,-20.5 + parent: 4812 + type: Transform + - uid: 10594 + components: + - pos: -39.5,-20.5 + parent: 4812 + type: Transform + - uid: 10595 + components: + - pos: -40.5,-20.5 + parent: 4812 + type: Transform + - uid: 10596 + components: + - pos: -41.5,-20.5 + parent: 4812 + type: Transform + - uid: 10597 + components: + - pos: -42.5,-20.5 + parent: 4812 + type: Transform + - uid: 10598 + components: + - pos: -43.5,-20.5 + parent: 4812 + type: Transform + - uid: 10618 + components: + - pos: -36.5,-19.5 + parent: 4812 + type: Transform + - uid: 10619 + components: + - pos: -36.5,-18.5 + parent: 4812 + type: Transform + - uid: 10620 + components: + - pos: -36.5,-17.5 + parent: 4812 + type: Transform + - uid: 10621 + components: + - pos: -36.5,-16.5 + parent: 4812 + type: Transform + - uid: 10622 + components: + - pos: -36.5,-15.5 + parent: 4812 + type: Transform + - uid: 10623 + components: + - pos: -36.5,-14.5 + parent: 4812 + type: Transform + - uid: 10624 + components: + - pos: -36.5,-13.5 + parent: 4812 + type: Transform + - uid: 10625 + components: + - pos: -36.5,-12.5 + parent: 4812 + type: Transform + - uid: 10626 + components: + - pos: -36.5,-11.5 + parent: 4812 + type: Transform + - uid: 10627 + components: + - pos: -48.5,-22.5 + parent: 4812 + type: Transform + - uid: 10628 + components: + - pos: -47.5,-22.5 + parent: 4812 + type: Transform + - uid: 10629 + components: + - pos: -46.5,-22.5 + parent: 4812 + type: Transform + - uid: 10630 + components: + - pos: -45.5,-21.5 + parent: 4812 + type: Transform + - uid: 10631 + components: + - pos: -44.5,-20.5 + parent: 4812 + type: Transform + - uid: 10870 + components: + - pos: -30.5,7.5 + parent: 4812 + type: Transform + - uid: 10871 + components: + - pos: -31.5,7.5 + parent: 4812 + type: Transform + - uid: 10872 + components: + - pos: -32.5,7.5 + parent: 4812 + type: Transform + - uid: 10874 + components: + - pos: -33.5,7.5 + parent: 4812 + type: Transform + - uid: 10875 + components: + - pos: -34.5,7.5 + parent: 4812 + type: Transform + - uid: 11252 + components: + - pos: 9.5,-36.5 + parent: 4812 + type: Transform + - uid: 11253 + components: + - pos: 9.5,-35.5 + parent: 4812 + type: Transform + - uid: 11254 + components: + - pos: 9.5,-34.5 + parent: 4812 + type: Transform + - uid: 11255 + components: + - pos: 9.5,-33.5 + parent: 4812 + type: Transform + - uid: 11257 + components: + - pos: 14.5,-33.5 + parent: 4812 + type: Transform + - uid: 11258 + components: + - pos: 13.5,-33.5 + parent: 4812 + type: Transform + - uid: 11423 + components: + - pos: 19.5,-33.5 + parent: 4812 + type: Transform + - uid: 11424 + components: + - pos: 21.5,-33.5 + parent: 4812 + type: Transform + - uid: 11425 + components: + - pos: 22.5,-33.5 + parent: 4812 + type: Transform + - uid: 11426 + components: + - pos: 20.5,-33.5 + parent: 4812 + type: Transform + - uid: 11427 + components: + - pos: 24.5,-33.5 + parent: 4812 + type: Transform + - uid: 11428 + components: + - pos: 25.5,-33.5 + parent: 4812 + type: Transform + - uid: 11429 + components: + - pos: 26.5,-33.5 + parent: 4812 + type: Transform + - uid: 11430 + components: + - pos: 27.5,-33.5 + parent: 4812 + type: Transform + - uid: 11431 + components: + - pos: 28.5,-33.5 + parent: 4812 + type: Transform + - uid: 11432 + components: + - pos: 29.5,-33.5 + parent: 4812 + type: Transform + - uid: 11433 + components: + - pos: 30.5,-33.5 + parent: 4812 + type: Transform + - uid: 11578 + components: + - pos: 39.5,-36.5 + parent: 4812 + type: Transform + - uid: 11579 + components: + - pos: 40.5,-36.5 + parent: 4812 + type: Transform + - uid: 11580 + components: + - pos: 41.5,-36.5 + parent: 4812 + type: Transform + - uid: 11581 + components: + - pos: 42.5,-36.5 + parent: 4812 + type: Transform + - uid: 11582 + components: + - pos: 43.5,-36.5 + parent: 4812 + type: Transform + - uid: 11583 + components: + - pos: 44.5,-36.5 + parent: 4812 + type: Transform + - uid: 11584 + components: + - pos: 45.5,-36.5 + parent: 4812 + type: Transform + - uid: 11585 + components: + - pos: 46.5,-36.5 + parent: 4812 + type: Transform + - uid: 11586 + components: + - pos: 47.5,-36.5 + parent: 4812 + type: Transform + - uid: 11587 + components: + - pos: 48.5,-36.5 + parent: 4812 + type: Transform + - uid: 11588 + components: + - pos: 49.5,-36.5 + parent: 4812 + type: Transform + - uid: 11589 + components: + - pos: 50.5,-36.5 + parent: 4812 + type: Transform + - uid: 11590 + components: + - pos: 51.5,-36.5 + parent: 4812 + type: Transform + - uid: 11591 + components: + - pos: 52.5,-36.5 + parent: 4812 + type: Transform + - uid: 11592 + components: + - pos: 50.5,-35.5 + parent: 4812 + type: Transform + - uid: 11593 + components: + - pos: 50.5,-34.5 + parent: 4812 + type: Transform + - uid: 11594 + components: + - pos: 50.5,-33.5 + parent: 4812 + type: Transform + - uid: 11595 + components: + - pos: 50.5,-32.5 + parent: 4812 + type: Transform + - uid: 11596 + components: + - pos: 46.5,-35.5 + parent: 4812 + type: Transform + - uid: 11597 + components: + - pos: 46.5,-34.5 + parent: 4812 + type: Transform + - uid: 11598 + components: + - pos: 46.5,-33.5 + parent: 4812 + type: Transform + - uid: 11599 + components: + - pos: 46.5,-32.5 + parent: 4812 + type: Transform + - uid: 11600 + components: + - pos: 42.5,-35.5 + parent: 4812 + type: Transform + - uid: 11601 + components: + - pos: 42.5,-34.5 + parent: 4812 + type: Transform + - uid: 11602 + components: + - pos: 42.5,-33.5 + parent: 4812 + type: Transform + - uid: 11603 + components: + - pos: 42.5,-32.5 + parent: 4812 + type: Transform + - uid: 11604 + components: + - pos: 42.5,-40.5 + parent: 4812 + type: Transform + - uid: 11605 + components: + - pos: 42.5,-39.5 + parent: 4812 + type: Transform + - uid: 11606 + components: + - pos: 42.5,-38.5 + parent: 4812 + type: Transform + - uid: 11607 + components: + - pos: 42.5,-37.5 + parent: 4812 + type: Transform + - uid: 11608 + components: + - pos: 46.5,-40.5 + parent: 4812 + type: Transform + - uid: 11609 + components: + - pos: 46.5,-39.5 + parent: 4812 + type: Transform + - uid: 11610 + components: + - pos: 46.5,-38.5 + parent: 4812 + type: Transform + - uid: 11611 + components: + - pos: 46.5,-37.5 + parent: 4812 + type: Transform + - uid: 11612 + components: + - pos: 50.5,-40.5 + parent: 4812 + type: Transform + - uid: 11613 + components: + - pos: 50.5,-39.5 + parent: 4812 + type: Transform + - uid: 11614 + components: + - pos: 50.5,-38.5 + parent: 4812 + type: Transform + - uid: 11615 + components: + - pos: 50.5,-37.5 + parent: 4812 + type: Transform + - uid: 11619 + components: + - pos: 37.5,-36.5 + parent: 4812 + type: Transform + - uid: 11620 + components: + - pos: 36.5,-36.5 + parent: 4812 + type: Transform + - uid: 11814 + components: + - pos: -17.5,-3.5 + parent: 4812 + type: Transform + - uid: 11815 + components: + - pos: -18.5,-3.5 + parent: 4812 + type: Transform + - uid: 11816 + components: + - pos: -19.5,-3.5 + parent: 4812 + type: Transform + - uid: 11817 + components: + - pos: -15.5,-3.5 + parent: 4812 + type: Transform + - uid: 11818 + components: + - pos: -14.5,-3.5 + parent: 4812 + type: Transform + - uid: 11819 + components: + - pos: -13.5,-3.5 + parent: 4812 + type: Transform + - uid: 11820 + components: + - pos: -12.5,-2.5 + parent: 4812 + type: Transform + - uid: 11821 + components: + - pos: -12.5,-1.5 + parent: 4812 + type: Transform + - uid: 11822 + components: + - pos: -12.5,-0.5 + parent: 4812 + type: Transform + - uid: 11823 + components: + - pos: -12.5,0.5 + parent: 4812 + type: Transform + - uid: 11824 + components: + - pos: -12.5,1.5 + parent: 4812 + type: Transform + - uid: 11825 + components: + - pos: -12.5,2.5 + parent: 4812 + type: Transform + - uid: 11826 + components: + - pos: -12.5,3.5 + parent: 4812 + type: Transform + - uid: 11827 + components: + - pos: -12.5,4.5 + parent: 4812 + type: Transform + - uid: 11828 + components: + - pos: -12.5,5.5 + parent: 4812 + type: Transform + - uid: 11829 + components: + - pos: -12.5,6.5 + parent: 4812 + type: Transform + - uid: 11830 + components: + - pos: -12.5,7.5 + parent: 4812 + type: Transform + - uid: 11831 + components: + - pos: -12.5,8.5 + parent: 4812 + type: Transform + - uid: 11832 + components: + - pos: -6.5,13.5 + parent: 4812 + type: Transform + - uid: 11833 + components: + - pos: -7.5,13.5 + parent: 4812 + type: Transform + - uid: 11834 + components: + - pos: -8.5,13.5 + parent: 4812 + type: Transform + - uid: 11835 + components: + - pos: -9.5,13.5 + parent: 4812 + type: Transform + - uid: 11836 + components: + - pos: -10.5,13.5 + parent: 4812 + type: Transform + - uid: 11837 + components: + - pos: -11.5,13.5 + parent: 4812 + type: Transform +- proto: Chair + entities: + - uid: 3239 + components: + - rot: 3.141592653589793 rad + pos: 15.5,13.5 + parent: 4812 + type: Transform + - uid: 3240 + components: + - rot: 3.141592653589793 rad + pos: 16.5,13.5 + parent: 4812 + type: Transform + - uid: 3241 + components: + - rot: 3.141592653589793 rad + pos: 18.5,13.5 + parent: 4812 + type: Transform + - uid: 3242 + components: + - rot: 3.141592653589793 rad + pos: 19.5,13.5 + parent: 4812 + type: Transform + - uid: 3243 + components: + - rot: 3.141592653589793 rad + pos: 20.5,13.5 + parent: 4812 + type: Transform + - uid: 4551 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-4.5 + parent: 4812 + type: Transform + - uid: 4552 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-3.5 + parent: 4812 + type: Transform + - uid: 4553 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-2.5 + parent: 4812 + type: Transform + - uid: 4554 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-1.5 + parent: 4812 + type: Transform + - uid: 4555 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-0.5 + parent: 4812 + type: Transform + - uid: 4556 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-4.5 + parent: 4812 + type: Transform + - uid: 4557 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-3.5 + parent: 4812 + type: Transform + - uid: 4558 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-2.5 + parent: 4812 + type: Transform + - uid: 4559 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-1.5 + parent: 4812 + type: Transform + - uid: 4560 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-0.5 + parent: 4812 + type: Transform + - uid: 4565 + components: + - pos: 29.5,4.5 + parent: 4812 + type: Transform + - uid: 4566 + components: + - pos: 30.5,4.5 + parent: 4812 + type: Transform + - uid: 4567 + components: + - pos: 31.5,4.5 + parent: 4812 + type: Transform + - uid: 4568 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,3.5 + parent: 4812 + type: Transform + - uid: 5065 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-47.5 + parent: 4812 + type: Transform + - uid: 5066 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-46.5 + parent: 4812 + type: Transform + - uid: 5375 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-17.5 + parent: 4812 + type: Transform + - uid: 7214 + components: + - pos: -8.5,-20.5 + parent: 4812 + type: Transform + - uid: 7439 + components: + - pos: -24.5,-22.5 + parent: 4812 + type: Transform + - uid: 7440 + components: + - pos: -25.5,-22.5 + parent: 4812 + type: Transform + - uid: 8289 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,14.5 + parent: 4812 + type: Transform + - uid: 8290 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,14.5 + parent: 4812 + type: Transform + - uid: 8291 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,15.5 + parent: 4812 + type: Transform + - uid: 8292 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,15.5 + parent: 4812 + type: Transform + - uid: 8293 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,17.5 + parent: 4812 + type: Transform + - uid: 8302 + components: + - pos: -19.5,19.5 + parent: 4812 + type: Transform + - uid: 8303 + components: + - pos: -18.5,19.5 + parent: 4812 + type: Transform + - uid: 8418 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-23.5 + parent: 4812 + type: Transform + - uid: 8437 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,10.5 + parent: 4812 + type: Transform + - uid: 8438 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,10.5 + parent: 4812 + type: Transform + - uid: 8445 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,17.5 + parent: 4812 + type: Transform + - uid: 8446 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,18.5 + parent: 4812 + type: Transform + - uid: 8851 + components: + - pos: 23.5,13.5 + parent: 4812 + type: Transform + - uid: 10732 + components: + - pos: -43.5,-6.5 + parent: 4812 + type: Transform + - uid: 10733 + components: + - pos: -42.5,-6.5 + parent: 4812 + type: Transform + - uid: 10734 + components: + - pos: -41.5,-6.5 + parent: 4812 + type: Transform + - uid: 10735 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-8.5 + parent: 4812 + type: Transform + - uid: 10736 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-8.5 + parent: 4812 + type: Transform + - uid: 10737 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-8.5 + parent: 4812 + type: Transform + - uid: 10909 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-24.5 + parent: 4812 + type: Transform + - uid: 10910 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-23.5 + parent: 4812 + type: Transform + - uid: 10911 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-24.5 + parent: 4812 + type: Transform + - uid: 11773 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-15.5 + parent: 4812 + type: Transform + - uid: 11774 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-17.5 + parent: 4812 + type: Transform + - uid: 11841 + components: + - pos: -8.5,14.5 + parent: 4812 + type: Transform + - uid: 11846 + components: + - rot: 3.141592653589793 rad + pos: -7.5,11.5 + parent: 4812 + type: Transform + - uid: 11877 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-34.5 + parent: 4812 + type: Transform + - uid: 11878 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-34.5 + parent: 4812 + type: Transform + - uid: 11885 + components: + - pos: 6.5,12.5 + parent: 4812 + type: Transform + - uid: 11886 + components: + - pos: 5.5,12.5 + parent: 4812 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 310 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 4812 + type: Transform + - uid: 2508 + components: + - pos: 9.5,24.5 + parent: 4812 + type: Transform + - uid: 2665 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,34.5 + parent: 4812 + type: Transform + - uid: 2666 + components: + - rot: 3.141592653589793 rad + pos: -4.5,34.5 + parent: 4812 + type: Transform + - uid: 2667 + components: + - rot: 3.141592653589793 rad + pos: 2.5,33.5 + parent: 4812 + type: Transform + - uid: 2686 + components: + - pos: -7.5,33.5 + parent: 4812 + type: Transform + - uid: 3237 + components: + - pos: 15.5,17.5 + parent: 4812 + type: Transform + - uid: 3238 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,20.5 + parent: 4812 + type: Transform + - uid: 3704 + components: + - pos: 17.5,30.5 + parent: 4812 + type: Transform + - uid: 4569 + components: + - pos: 28.5,2.5 + parent: 4812 + type: Transform + - uid: 5371 + components: + - pos: 19.5,-15.5 + parent: 4812 + type: Transform + - uid: 6288 + components: + - pos: 26.5,-18.5 + parent: 4812 + type: Transform + - uid: 6320 + components: + - pos: 23.5,-26.5 + parent: 4812 + type: Transform + - uid: 6475 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-27.5 + parent: 4812 + type: Transform + - uid: 7037 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-39.5 + parent: 4812 + type: Transform + - uid: 7038 + components: + - pos: -23.5,-37.5 + parent: 4812 + type: Transform + - uid: 7071 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-15.5 + parent: 4812 + type: Transform + - uid: 7072 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-14.5 + parent: 4812 + type: Transform + - uid: 7073 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-15.5 + parent: 4812 + type: Transform + - uid: 7074 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-14.5 + parent: 4812 + type: Transform + - uid: 7075 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-19.5 + parent: 4812 + type: Transform + - uid: 7076 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-14.5 + parent: 4812 + type: Transform + - uid: 8278 + components: + - pos: -17.5,15.5 + parent: 4812 + type: Transform + - uid: 8338 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,15.5 + parent: 4812 + type: Transform + - uid: 8366 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,11.5 + parent: 4812 + type: Transform + - uid: 9575 + components: + - pos: -30.5,1.5 + parent: 4812 + type: Transform + - uid: 9878 + components: + - pos: -49.5,-7.5 + parent: 4812 + type: Transform + - uid: 10666 + components: + - rot: 3.141592653589793 rad + pos: -49.5,-9.5 + parent: 4812 + type: Transform + - uid: 10698 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-5.5 + parent: 4812 + type: Transform + - uid: 11869 + components: + - rot: 3.141592653589793 rad + pos: -9.5,11.5 + parent: 4812 + type: Transform + - uid: 11870 + components: + - rot: 3.141592653589793 rad + pos: -10.5,11.5 + parent: 4812 + type: Transform + - uid: 11871 + components: + - rot: 3.141592653589793 rad + pos: -11.5,11.5 + parent: 4812 + type: Transform + - uid: 12112 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-1.5 + parent: 4812 + type: Transform +- proto: ChairOfficeLight + entities: + - uid: 4595 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-26.5 + parent: 4812 + type: Transform + - uid: 4973 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-21.5 + parent: 4812 + type: Transform + - uid: 6179 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-15.5 + parent: 4812 + type: Transform + - uid: 6180 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-14.5 + parent: 4812 + type: Transform + - uid: 6216 + components: + - pos: 3.5,-23.5 + parent: 4812 + type: Transform + - uid: 6344 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-25.5 + parent: 4812 + type: Transform + - uid: 6619 + components: + - pos: -11.5,-18.5 + parent: 4812 + type: Transform + - uid: 6620 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-14.5 + parent: 4812 + type: Transform + - uid: 8444 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-26.5 + parent: 4812 + type: Transform + - uid: 11148 + components: + - pos: 9.5,-43.5 + parent: 4812 + type: Transform +- proto: ChairWood + entities: + - uid: 1052 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 4812 + type: Transform + - uid: 1053 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 4812 + type: Transform + - uid: 1054 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 4812 + type: Transform + - uid: 1055 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 4812 + type: Transform + - uid: 1056 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 4812 + type: Transform + - uid: 1057 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 4812 + type: Transform + - uid: 1058 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,6.5 + parent: 4812 + type: Transform + - uid: 1059 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,7.5 + parent: 4812 + type: Transform + - uid: 1060 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 4812 + type: Transform + - uid: 1061 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,9.5 + parent: 4812 + type: Transform + - uid: 1062 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,8.5 + parent: 4812 + type: Transform + - uid: 1626 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 4812 + type: Transform + - uid: 4659 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 4812 + type: Transform + - uid: 5226 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 4812 + type: Transform + - uid: 5227 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 4812 + type: Transform + - uid: 5228 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 4812 + type: Transform + - uid: 5230 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 4812 + type: Transform + - uid: 5231 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 4812 + type: Transform + - uid: 6797 + components: + - pos: -20.5,-38.5 + parent: 4812 + type: Transform + - uid: 6798 + components: + - pos: -19.5,-38.5 + parent: 4812 + type: Transform + - uid: 7007 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-33.5 + parent: 4812 + type: Transform + - uid: 7008 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-33.5 + parent: 4812 + type: Transform + - uid: 7009 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-32.5 + parent: 4812 + type: Transform + - uid: 7010 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-32.5 + parent: 4812 + type: Transform + - uid: 7011 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-32.5 + parent: 4812 + type: Transform + - uid: 7012 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-36.5 + parent: 4812 + type: Transform + - uid: 7013 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-36.5 + parent: 4812 + type: Transform + - uid: 7014 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-36.5 + parent: 4812 + type: Transform + - uid: 7015 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-35.5 + parent: 4812 + type: Transform + - uid: 7016 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-35.5 + parent: 4812 + type: Transform + - uid: 7160 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-19.5 + parent: 4812 + type: Transform + - uid: 7168 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-15.5 + parent: 4812 + type: Transform + - uid: 10502 + components: + - pos: -33.5,-27.5 + parent: 4812 + type: Transform + - uid: 10503 + components: + - pos: -32.5,-27.5 + parent: 4812 + type: Transform + - uid: 10504 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-29.5 + parent: 4812 + type: Transform + - uid: 10505 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-29.5 + parent: 4812 + type: Transform + - uid: 10506 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-28.5 + parent: 4812 + type: Transform + - uid: 10507 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-28.5 + parent: 4812 + type: Transform +- proto: ChanterelleSeeds + entities: + - uid: 1522 + components: + - pos: -13.5,-7.5 + parent: 4812 + type: Transform + - uid: 11296 + components: + - pos: 16.50683,-36.589657 + parent: 4812 + type: Transform +- proto: CheapRollerBed + entities: + - uid: 7588 + components: + - pos: -19.499699,-23.348194 + parent: 4812 + type: Transform + - uid: 7655 + components: + - pos: -20.546574,-23.33257 + parent: 4812 + type: Transform +- proto: CheapRollerBedSpawnFolded + entities: + - uid: 3226 + components: + - pos: -17.562876,-25.168678 + parent: 4812 + type: Transform + - uid: 8850 + components: + - pos: -17.5785,-25.512428 + parent: 4812 + type: Transform +- proto: chem_master + entities: + - uid: 6606 + components: + - pos: -8.5,-15.5 + parent: 4812 + type: Transform + - uid: 6607 + components: + - pos: -12.5,-17.5 + parent: 4812 + type: Transform +- proto: ChemDispenser + entities: + - uid: 6604 + components: + - pos: -12.5,-18.5 + parent: 4812 + type: Transform + - uid: 6605 + components: + - pos: -8.5,-14.5 + parent: 4812 + type: Transform +- proto: ChemistryEmptyBottle01 + entities: + - uid: 7581 + components: + - pos: -15.593227,-23.348886 + parent: 4812 + type: Transform + - uid: 7584 + components: + - pos: -15.530727,-23.473886 + parent: 4812 + type: Transform +- proto: ChemistryHotplate + entities: + - uid: 12473 + components: + - pos: -10.5,-18.5 + parent: 4812 + type: Transform +- proto: ChessBoard + entities: + - uid: 11880 + components: + - pos: -2.493187,-34.40246 + parent: 4812 + type: Transform +- proto: Cigar + entities: + - uid: 5385 + components: + - pos: 18.601286,-15.579714 + parent: 4812 + type: Transform + - uid: 5386 + components: + - pos: 18.601286,-15.439089 + parent: 4812 + type: Transform +- proto: CigarCase + entities: + - uid: 1758 + components: + - pos: -6.558632,4.639101 + parent: 4812 + type: Transform + - uid: 6413 + components: + - pos: -0.43434072,-15.356113 + parent: 4812 + type: Transform +- proto: Cigarette + entities: + - uid: 12373 + components: + - pos: 4.34406,-34.161045 + parent: 4812 + type: Transform +- proto: CigarGold + entities: + - uid: 2674 + components: + - pos: -2.4733105,29.66387 + parent: 4812 + type: Transform + - uid: 2675 + components: + - pos: -2.4108105,29.491995 + parent: 4812 + type: Transform +- proto: CigarGoldCase + entities: + - uid: 2719 + components: + - pos: -5.477762,22.691704 + parent: 4812 + type: Transform +- proto: CigCartonRed + entities: + - uid: 11843 + components: + - pos: -7.4943094,12.705126 + parent: 4812 + type: Transform +- proto: CircuitImprinter + entities: + - uid: 6184 + components: + - pos: 5.5,-17.5 + parent: 4812 + type: Transform + - materialWhiteList: + - Steel + - Glass + - Gold + type: MaterialStorage + - uid: 6233 + components: + - pos: 13.5,-26.5 + parent: 4812 + type: Transform + - materialWhiteList: + - Steel + - Glass + - Gold + type: MaterialStorage +- proto: CircuitImprinterMachineCircuitboard + entities: + - uid: 3381 + components: + - pos: 21.549475,8.4847765 + parent: 4812 + type: Transform +- proto: CloningPodMachineCircuitboard + entities: + - uid: 3405 + components: + - pos: 23.455725,7.6097765 + parent: 4812 + type: Transform +- proto: ClosetBase + entities: + - uid: 11811 + components: + - pos: -15.5,0.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: + - 11812 + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: ClosetBombFilled + entities: + - uid: 6331 + components: + - pos: 28.5,-22.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: ClosetChefFilled + entities: + - uid: 1568 + components: + - pos: 4.5,0.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 1676 + components: + - pos: 3.5,13.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 1795 + components: + - pos: 0.5,17.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 2677 + components: + - pos: -8.5,33.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 3786 + components: + - pos: 3.5,46.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 4484 + components: + - pos: 20.5,11.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 4522 + components: + - pos: 13.5,4.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 4540 + components: + - pos: 15.5,-5.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 4599 + components: + - pos: 13.5,-6.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 4725 + components: + - pos: -10.5,-55.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 6421 + components: + - pos: 2.5,-31.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 7616 + components: + - pos: -15.5,-13.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 10407 + components: + - pos: -55.5,-23.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 10602 + components: + - pos: -45.5,-16.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 10876 + components: + - pos: -32.5,8.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 11461 + components: + - pos: 36.5,-37.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: ClosetFireFilled + entities: + - uid: 1514 + components: + - pos: 1.5,-10.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 1796 + components: + - pos: 0.5,16.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 3674 + components: + - pos: 3.5,49.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 4483 + components: + - pos: 22.5,1.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 7615 + components: + - pos: -16.5,-13.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 8328 + components: + - pos: -17.5,29.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 9688 + components: + - pos: -38.5,-2.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 9690 + components: + - pos: -38.5,-1.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 12474 + components: + - pos: -10.5,-54.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: ClosetJanitorFilled + entities: + - uid: 1486 + components: + - pos: -23.5,-8.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: ClosetL3JanitorFilled + entities: + - uid: 1479 + components: + - pos: -21.5,-9.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: ClosetL3ScienceFilled + entities: + - uid: 6310 + components: + - pos: 21.5,-26.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 11149 + components: + - pos: 7.5,-43.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: ClosetL3SecurityFilled + entities: + - uid: 8423 + components: + - pos: -33.5,10.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: ClosetL3VirologyFilled + entities: + - uid: 8869 + components: + - pos: -34.5,-34.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: ClosetLegalFilled + entities: + - uid: 8477 + components: + - pos: -16.5,15.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 9068 + components: + - pos: -31.5,-35.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 10527 + components: + - pos: -41.5,-31.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 10900 + components: + - pos: -31.5,-12.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 11309 + components: + - pos: 26.5,-36.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 11618 + components: + - pos: 30.5,-36.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 11882 + components: + - pos: 9.5,12.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: ClosetRadiationSuitFilled + entities: + - uid: 6358 + components: + - pos: 27.5,-22.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 9686 + components: + - pos: -40.5,-3.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 9687 + components: + - pos: -40.5,-2.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 10664 + components: + - pos: -47.5,-13.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 11775 + components: + - pos: -34.5,-14.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: ClosetWallAtmospherics + entities: + - uid: 9099 + components: + - pos: -55.5,5.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12381 + type: ContainerContainer +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 12374 + components: + - pos: 22.5,17.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 1.3546504 + - 5.096066 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 12375 + components: + - pos: 21.5,-1.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: ClosetWallFireFilledRandom + entities: + - uid: 11745 + components: + - pos: 5.5,3.5 + parent: 4812 + type: Transform + - uid: 12376 + components: + - pos: 15.5,-1.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: ClosetWallOrange + entities: + - uid: 12377 + components: + - pos: -25.5,21.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 12378 + components: + - pos: -25.5,18.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 12379 + components: + - pos: -31.5,28.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 12380 + components: + - pos: -27.5,28.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: ClothingBackpackClown + entities: + - uid: 9198 + components: + - pos: -10.304824,1.6229031 + parent: 4812 + type: Transform +- proto: ClothingBackpackDuffelSurgeryFilled + entities: + - uid: 7428 + components: + - pos: -22.535873,-28.341772 + parent: 4812 + type: Transform +- proto: ClothingBeltChampion + entities: + - uid: 2715 + components: + - pos: -5.571512,24.066704 + parent: 4812 + type: Transform +- proto: ClothingBeltMilitaryWebbing + entities: + - uid: 9061 + components: + - pos: -28.553808,-33.515636 + parent: 4812 + type: Transform +- proto: ClothingBeltUtilityFilled + entities: + - uid: 3371 + components: + - pos: 19.574245,21.55511 + parent: 4812 + type: Transform + - uid: 10714 + components: + - pos: -31.802395,-7.4187636 + parent: 4812 + type: Transform + - uid: 12498 + components: + - pos: 5.5994864,-28.47739 + parent: 4812 + type: Transform +- proto: ClothingEyesEyepatch + entities: + - uid: 8481 + components: + - pos: -16.839548,32.557995 + parent: 4812 + type: Transform + - uid: 9657 + components: + - pos: 25.533524,-9.424093 + parent: 4812 + type: Transform +- proto: ClothingEyesGlasses + entities: + - uid: 6205 + components: + - pos: 3.4675388,-14.361706 + parent: 4812 + type: Transform + - uid: 6337 + components: + - pos: 25.449461,-19.268694 + parent: 4812 + type: Transform + - uid: 11851 + components: + - pos: 10.561617,-44.322975 + parent: 4812 + type: Transform + - uid: 12497 + components: + - pos: 9.501655,-16.456053 + parent: 4812 + type: Transform +- proto: ClothingEyesGlassesSunglasses + entities: + - uid: 1655 + components: + - pos: 5.544427,8.548626 + parent: 4812 + type: Transform + - uid: 5383 + components: + - pos: 19.570036,-18.407839 + parent: 4812 + type: Transform +- proto: ClothingEyesHudBeer + entities: + - uid: 10683 + components: + - pos: -9.466419,-48.16831 + parent: 4812 + type: Transform +- proto: ClothingEyesHudDiagnostic + entities: + - uid: 10769 + components: + - pos: -43.49446,-7.521168 + parent: 4812 + type: Transform +- proto: ClothingEyesHudMedical + entities: + - uid: 7586 + components: + - pos: -10.686977,-25.567636 + parent: 4812 + type: Transform + - uid: 7587 + components: + - pos: -10.671352,-25.395761 + parent: 4812 + type: Transform +- proto: ClothingEyesHudSecurity + entities: + - uid: 8443 + components: + - pos: -36.423813,15.378265 + parent: 4812 + type: Transform +- proto: ClothingHandsGlovesColorGray + entities: + - uid: 11853 + components: + - pos: 12.884244,-36.874004 + parent: 4812 + type: Transform +- proto: ClothingHandsGlovesColorOrange + entities: + - uid: 1495 + components: + - pos: -23.466429,-7.3899465 + parent: 4812 + type: Transform +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 3454 + components: + - pos: 22.493902,3.499278 + parent: 4812 + type: Transform + - uid: 8601 + components: + - pos: -18.453629,9.613115 + parent: 4812 + type: Transform + - uid: 10706 + components: + - pos: -32.450558,-7.5008273 + parent: 4812 + type: Transform +- proto: ClothingHandsGlovesLeather + entities: + - uid: 1461 + components: + - pos: -18.506594,-9.370907 + parent: 4812 + type: Transform +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 8419 + components: + - pos: -19.480015,-25.463383 + parent: 4812 + type: Transform + - uid: 9033 + components: + - pos: -39.79441,-35.343323 + parent: 4812 + type: Transform +- proto: ClothingHandsGlovesRobohands + entities: + - uid: 6349 + components: + - pos: 5.5434675,-25.370066 + parent: 4812 + type: Transform +- proto: ClothingHeadFishCap + entities: + - uid: 9567 + components: + - pos: 13.508905,-4.30057 + parent: 4812 + type: Transform +- proto: ClothingHeadHatAnimalHeadslime + entities: + - uid: 9195 + components: + - pos: -33.510674,-34.64361 + parent: 4812 + type: Transform + - uid: 11099 + components: + - pos: 7.610162,-44.413692 + parent: 4812 + type: Transform +- proto: ClothingHeadHatBeaverHat + entities: + - uid: 6385 + components: + - pos: 13.532155,-11.236504 + parent: 4812 + type: Transform +- proto: ClothingHeadHatCone + entities: + - uid: 11339 + components: + - pos: 8.449844,17.514982 + parent: 4812 + type: Transform +- proto: ClothingHeadHatFedoraBrown + entities: + - uid: 10608 + components: + - pos: -36.481308,-25.464363 + parent: 4812 + type: Transform + - uid: 11809 + components: + - pos: -14.4824505,-0.22820306 + parent: 4812 + type: Transform +- proto: ClothingHeadHatFedoraGrey + entities: + - uid: 1757 + components: + - pos: -6.558632,8.592226 + parent: 4812 + type: Transform +- proto: ClothingHeadHatFez + entities: + - uid: 10914 + components: + - pos: -44.596,-23.407698 + parent: 4812 + type: Transform + - uid: 10915 + components: + - pos: -44.4085,-23.673323 + parent: 4812 + type: Transform +- proto: ClothingHeadHatFlowerCrown + entities: + - uid: 7254 + components: + - pos: -24.594517,-34.532703 + parent: 4812 + type: Transform +- proto: ClothingHeadHatHairflower + entities: + - uid: 2716 + components: + - pos: -5.180887,24.379204 + parent: 4812 + type: Transform + - uid: 12475 + components: + - pos: -24.401733,-34.40146 + parent: 4812 + type: Transform +- proto: ClothingHeadHatHardhatOrange + entities: + - uid: 12119 + components: + - pos: -42.44835,-1.0036435 + parent: 4812 + type: Transform +- proto: ClothingHeadHatHardhatYellow + entities: + - uid: 12120 + components: + - pos: -41.401306,-7.235723 + parent: 4812 + type: Transform +- proto: ClothingHeadHatPaper + entities: + - uid: 11856 + components: + - pos: -27.456482,29.23433 + parent: 4812 + type: Transform +- proto: ClothingHeadHatPirate + entities: + - uid: 11675 + components: + - pos: -17.677834,32.905758 + parent: 4812 + type: Transform +- proto: ClothingHeadHatPumpkin + entities: + - uid: 11858 + components: + - pos: -18.486109,-5.5083795 + parent: 4812 + type: Transform +- proto: ClothingHeadHatTophat + entities: + - uid: 10924 + components: + - flags: InContainer + type: MetaData + - parent: 10921 + type: Transform + - canCollide: False + type: Physics +- proto: ClothingHeadHatTrucker + entities: + - uid: 1460 + components: + - pos: -18.506594,-5.4646573 + parent: 4812 + type: Transform +- proto: ClothingHeadHatUshanka + entities: + - uid: 11778 + components: + - pos: 30.766603,-32.390636 + parent: 4812 + type: Transform + - uid: 11779 + components: + - pos: 30.360353,-32.65626 + parent: 4812 + type: Transform +- proto: ClothingHeadHatWelding + entities: + - uid: 6238 + components: + - pos: 15.515093,-23.391537 + parent: 4812 + type: Transform + - uid: 8600 + components: + - pos: -20.141129,12.59749 + parent: 4812 + type: Transform +- proto: ClothingHeadHatWeldingMaskFlame + entities: + - uid: 10726 + components: + - pos: -24.496122,-31.384293 + parent: 4812 + type: Transform + - uid: 11469 + components: + - pos: 28.533575,-35.71058 + parent: 4812 + type: Transform +- proto: ClothingHeadHatWeldingMaskFlameBlue + entities: + - uid: 10725 + components: + - pos: -36.26352,8.306009 + parent: 4812 + type: Transform +- proto: ClothingHeadHatWeldingMaskPainted + entities: + - uid: 10727 + components: + - pos: 15.568787,-6.463143 + parent: 4812 + type: Transform +- proto: ClothingHeadHatWitch1 + entities: + - uid: 1753 + components: + - pos: -10.496132,3.670351 + parent: 4812 + type: Transform +- proto: ClothingHeadHelmetSyndicate + entities: + - uid: 11672 + components: + - pos: 28.730742,-41.454163 + parent: 4812 + type: Transform +- proto: ClothingHeadHelmetTemplar + entities: + - uid: 11881 + components: + - pos: -1.477562,-34.543083 + parent: 4812 + type: Transform +- proto: ClothingHeadsetEngineering + entities: + - uid: 10764 + components: + - pos: -43.456604,-7.425037 + parent: 4812 + type: Transform +- proto: ClothingHeadsetMining + entities: + - uid: 8788 + components: + - pos: -35.24849,-39.264732 + parent: 4812 + type: Transform +- proto: ClothingMaskBreath + entities: + - uid: 11789 + components: + - pos: 22.374546,-32.47262 + parent: 4812 + type: Transform +- proto: ClothingMaskBreathMedical + entities: + - uid: 8863 + components: + - pos: 14.451679,-40.556843 + parent: 4812 + type: Transform +- proto: ClothingMaskGas + entities: + - uid: 4496 + components: + - pos: 19.554443,6.484804 + parent: 4812 + type: Transform + - uid: 4542 + components: + - pos: 21.65161,-6.5808167 + parent: 4812 + type: Transform + - uid: 11790 + components: + - pos: 22.624546,-32.62887 + parent: 4812 + type: Transform +- proto: ClothingMaskGasCentcom + entities: + - uid: 11677 + components: + - pos: 25.527617,-40.28087 + parent: 4812 + type: Transform +- proto: ClothingMaskGasExplorer + entities: + - uid: 11015 + components: + - pos: 35.488716,-30.534061 + parent: 4812 + type: Transform +- proto: ClothingNeckBling + entities: + - uid: 2717 + components: + - pos: -5.415262,24.019829 + parent: 4812 + type: Transform +- proto: ClothingNeckCloakMiner + entities: + - uid: 12429 + components: + - pos: -48.41308,-16.456617 + parent: 4812 + type: Transform +- proto: ClothingNeckCloakTrans + entities: + - uid: 4827 + components: + - pos: 38.546867,-26.403046 + parent: 4812 + type: Transform +- proto: ClothingNeckHeadphones + entities: + - uid: 9196 + components: + - pos: -22.35473,0.53885174 + parent: 4812 + type: Transform + - uid: 11854 + components: + - pos: -0.5106895,-15.532991 + parent: 4812 + type: Transform +- proto: ClothingNeckIntersexPin + entities: + - uid: 12511 + components: + - pos: 19.693497,8.613337 + parent: 4812 + type: Transform +- proto: ClothingNeckMantleHOS + entities: + - uid: 9197 + components: + - pos: -21.425161,22.675072 + parent: 4812 + type: Transform +- proto: ClothingNeckNonBinaryPin + entities: + - uid: 12513 + components: + - pos: 8.410957,-44.59256 + parent: 4812 + type: Transform +- proto: ClothingNeckScarfStripedBlue + entities: + - uid: 8417 + components: + - pos: -14.544858,-25.307133 + parent: 4812 + type: Transform + - uid: 11338 + components: + - pos: -33.593323,-36.57982 + parent: 4812 + type: Transform +- proto: ClothingNeckScarfStripedGreen + entities: + - uid: 7133 + components: + - pos: -30.568611,-23.475061 + parent: 4812 + type: Transform + - uid: 11337 + components: + - pos: -20.480177,5.5451813 + parent: 4812 + type: Transform +- proto: ClothingNeckScarfStripedRed + entities: + - uid: 11335 + components: + - pos: -1.4543457,-27.446754 + parent: 4812 + type: Transform + - uid: 12365 + components: + - pos: -68.52162,-28.692625 + parent: 4812 + type: Transform +- proto: ClothingNeckStethoscope + entities: + - uid: 7580 + components: + - pos: -18.561977,-20.380136 + parent: 4812 + type: Transform +- proto: ClothingNeckTieRed + entities: + - uid: 10922 + components: + - flags: InContainer + type: MetaData + - parent: 10921 + type: Transform + - canCollide: False + type: Physics + - uid: 11808 + components: + - pos: -14.6855755,-0.43132806 + parent: 4812 + type: Transform +- proto: ClothingNeckTransPin + entities: + - uid: 12515 + components: + - pos: -14.357392,4.331708 + parent: 4812 + type: Transform +- proto: ClothingOuterApron + entities: + - uid: 10913 + components: + - pos: -43.53869,-26.441507 + parent: 4812 + type: Transform +- proto: ClothingOuterArmorBasic + entities: + - uid: 9636 + components: + - pos: -33.593445,20.66048 + parent: 4812 + type: Transform + - uid: 9658 + components: + - pos: -33.593445,20.66048 + parent: 4812 + type: Transform + - uid: 9971 + components: + - pos: -33.593445,20.66048 + parent: 4812 + type: Transform +- proto: ClothingOuterArmorBulletproof + entities: + - uid: 9972 + components: + - pos: -35.562195,19.41048 + parent: 4812 + type: Transform + - uid: 9990 + components: + - pos: -35.562195,19.41048 + parent: 4812 + type: Transform + - uid: 9992 + components: + - pos: -35.562195,19.41048 + parent: 4812 + type: Transform +- proto: ClothingOuterArmorReflective + entities: + - uid: 10685 + components: + - pos: -33.364815,20.521324 + parent: 4812 + type: Transform +- proto: ClothingOuterArmorRiot + entities: + - uid: 10958 + components: + - pos: -33.39286,20.650888 + parent: 4812 + type: Transform + - uid: 10976 + components: + - pos: -33.627235,20.729013 + parent: 4812 + type: Transform +- proto: ClothingOuterCoatBomber + entities: + - uid: 10905 + components: + - pos: -30.486824,-12.450464 + parent: 4812 + type: Transform +- proto: ClothingOuterCoatGentle + entities: + - uid: 6193 + components: + - pos: 13.531586,-11.381834 + parent: 4812 + type: Transform +- proto: ClothingOuterCoatInspector + entities: + - uid: 11805 + components: + - pos: -14.486766,-0.42116833 + parent: 4812 + type: Transform +- proto: ClothingOuterCoatJensen + entities: + - uid: 9193 + components: + - pos: -13.455734,5.5269423 + parent: 4812 + type: Transform +- proto: ClothingOuterCoatPirate + entities: + - uid: 8478 + components: + - pos: -17.511423,32.47987 + parent: 4812 + type: Transform +- proto: ClothingOuterGhostSheet + entities: + - uid: 11262 + components: + - pos: 37.373894,-34.471485 + parent: 4812 + type: Transform +- proto: ClothingOuterHardsuitBasic + entities: + - uid: 9625 + components: + - flags: InContainer + type: MetaData + - parent: 2709 + type: Transform + - 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]20%[/color]. + priority: 0 + component: ClothingSpeedModifier + - message: >- + It provides the following protection: + + - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]10%[/color]. + + - [color=yellow]Slash[/color] damage reduced by [color=lightblue]10%[/color]. + + - [color=yellow]Piercing[/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 + type: GroupExamine + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitSalvage + entities: + - uid: 6765 + components: + - flags: InContainer + type: MetaData + - parent: 3441 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitSpatio + entities: + - uid: 12424 + components: + - pos: -52.87503,-18.445377 + parent: 4812 + type: Transform +- proto: ClothingOuterHoodieBlack + entities: + - uid: 11468 + components: + - pos: 37.580452,-32.58558 + parent: 4812 + type: Transform +- proto: ClothingOuterSuitEmergency + entities: + - uid: 11671 + components: + - pos: 28.696922,-41.322342 + parent: 4812 + type: Transform +- proto: ClothingOuterVestHazard + entities: + - uid: 12117 + components: + - pos: -42.4796,-1.4880185 + parent: 4812 + type: Transform + - uid: 12118 + components: + - pos: -42.370224,-1.6130185 + parent: 4812 + type: Transform +- proto: ClothingShoesBootsJack + entities: + - uid: 9194 + components: + - pos: 15.452381,-15.575151 + parent: 4812 + type: Transform + - uid: 12364 + components: + - pos: 2.5661945,-37.272846 + parent: 4812 + type: Transform +- proto: ClothingShoesBootsMag + entities: + - uid: 1688 + components: + - pos: 5.3844786,14.708496 + parent: 4812 + type: Transform + - uid: 1689 + components: + - pos: 5.5251036,14.520996 + parent: 4812 + type: Transform + - uid: 10772 + components: + - pos: -30.706427,-9.213518 + parent: 4812 + type: Transform + - uid: 10773 + components: + - pos: -30.264002,-9.749746 + parent: 4812 + type: Transform +- proto: ClothingShoesBootsWork + entities: + - uid: 8784 + components: + - desc: These look like workboots but... they feel expensive. + name: Nimbs + type: MetaData + - pos: -34.496048,-16.64644 + parent: 4812 + type: Transform +- proto: ClothingShoesFlippers + entities: + - uid: 11850 + components: + - pos: 4.561617,-41.479225 + parent: 4812 + type: Transform +- proto: ClothingShoesLeather + entities: + - uid: 8864 + components: + - pos: 35.476944,-33.759735 + parent: 4812 + type: Transform + - uid: 12465 + components: + - pos: -36.627586,29.207901 + parent: 4812 + type: Transform +- proto: ClothingShoeSlippersDuck + entities: + - uid: 11810 + components: + - pos: -14.4668255,-1.6813283 + parent: 4812 + type: Transform +- proto: ClothingShoesTourist + entities: + - uid: 1555 + components: + - pos: -9.419544,-48.840183 + parent: 4812 + type: Transform +- proto: ClothingUnderSocksBee + entities: + - uid: 11333 + components: + - pos: 22.487274,-37.39112 + parent: 4812 + type: Transform +- proto: ClothingUnderSocksCoder + entities: + - uid: 11332 + components: + - pos: 14.5012665,-31.61288 + parent: 4812 + type: Transform +- proto: ClothingUniformColorRainbow + entities: + - uid: 1570 + components: + - pos: 14.528925,6.523329 + parent: 4812 + type: Transform +- proto: ClothingUniformJumpskirtDetective + entities: + - uid: 10607 + components: + - pos: -36.403183,-24.261238 + parent: 4812 + type: Transform +- proto: ClothingUniformJumpskirtJanimaid + entities: + - uid: 9040 + components: + - pos: 10.492298,52.554813 + parent: 4812 + type: Transform +- proto: ClothingUniformJumpskirtOperative + entities: + - uid: 9053 + components: + - pos: -28.506933,-33.546886 + parent: 4812 + type: Transform +- proto: ClothingUniformJumpskirtTacticalMaid + entities: + - uid: 8379 + components: + - pos: 12.547598,-44.418983 + parent: 4812 + type: Transform +- proto: ClothingUniformJumpsuitDetective + entities: + - uid: 10606 + components: + - pos: -36.543808,-24.229988 + parent: 4812 + type: Transform +- proto: ClothingUniformJumpsuitHawaiBlack + entities: + - uid: 1564 + components: + - pos: -9.44705,-48.485367 + parent: 4812 + type: Transform +- proto: ClothingUniformJumpsuitNanotrasen + entities: + - uid: 9626 + components: + - flags: InContainer + type: MetaData + - parent: 2709 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitOperative + entities: + - uid: 9060 + components: + - pos: -28.538183,-33.56251 + parent: 4812 + type: Transform +- proto: ClothingUniformJumpsuitPsychologist + entities: + - uid: 10968 + components: + - pos: -36.533836,29.489151 + parent: 4812 + type: Transform +- proto: ClothingUniformJumpsuitSecBlue + entities: + - uid: 10923 + components: + - flags: InContainer + type: MetaData + - parent: 10921 + type: Transform + - canCollide: False + type: Physics +- proto: ClothingUniformOveralls + entities: + - uid: 11855 + components: + - pos: 17.403048,-37.515766 + parent: 4812 + type: Transform +- proto: ComfyChair + entities: + - uid: 940 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,5.5 + parent: 4812 + type: Transform + - uid: 941 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,6.5 + parent: 4812 + type: Transform + - uid: 942 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,7.5 + parent: 4812 + type: Transform + - uid: 1533 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-1.5 + parent: 4812 + type: Transform + - uid: 1750 + components: + - pos: -8.5,7.5 + parent: 4812 + type: Transform + - uid: 1751 + components: + - rot: 3.141592653589793 rad + pos: -8.5,5.5 + parent: 4812 + type: Transform + - uid: 2507 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,24.5 + parent: 4812 + type: Transform + - uid: 2587 + components: + - pos: -12.5,28.5 + parent: 4812 + type: Transform + - uid: 2603 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,23.5 + parent: 4812 + type: Transform + - uid: 2604 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,22.5 + parent: 4812 + type: Transform + - uid: 2605 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,23.5 + parent: 4812 + type: Transform + - uid: 2641 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,28.5 + parent: 4812 + type: Transform + - uid: 2642 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,28.5 + parent: 4812 + type: Transform + - uid: 2646 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,29.5 + parent: 4812 + type: Transform + - uid: 2647 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,29.5 + parent: 4812 + type: Transform + - uid: 2648 + components: + - pos: -2.5,30.5 + parent: 4812 + type: Transform + - uid: 2664 + components: + - rot: 3.141592653589793 rad + pos: -2.5,34.5 + parent: 4812 + type: Transform + - uid: 5366 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-12.5 + parent: 4812 + type: Transform + - uid: 6289 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-19.5 + parent: 4812 + type: Transform + - uid: 6351 + components: + - pos: 9.5,-15.5 + parent: 4812 + type: Transform + - uid: 6352 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-17.5 + parent: 4812 + type: Transform + - uid: 6392 + components: + - pos: -3.5,-15.5 + parent: 4812 + type: Transform + - uid: 6393 + components: + - pos: -1.5,-15.5 + parent: 4812 + type: Transform + - uid: 6394 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 4812 + type: Transform + - uid: 6395 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-16.5 + parent: 4812 + type: Transform + - uid: 6396 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-18.5 + parent: 4812 + type: Transform + - uid: 6397 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-18.5 + parent: 4812 + type: Transform + - uid: 6398 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-19.5 + parent: 4812 + type: Transform + - uid: 6399 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-19.5 + parent: 4812 + type: Transform + - uid: 7044 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-34.5 + parent: 4812 + type: Transform + - uid: 7089 + components: + - pos: -31.5,-22.5 + parent: 4812 + type: Transform + - uid: 8254 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,27.5 + parent: 4812 + type: Transform + - uid: 8260 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,23.5 + parent: 4812 + type: Transform + - uid: 8261 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,23.5 + parent: 4812 + type: Transform + - uid: 8262 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,24.5 + parent: 4812 + type: Transform + - uid: 8393 + components: + - pos: -25.5,31.5 + parent: 4812 + type: Transform + - uid: 9047 + components: + - pos: -27.5,-40.5 + parent: 4812 + type: Transform + - uid: 9057 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-39.5 + parent: 4812 + type: Transform + - uid: 9058 + components: + - pos: -31.5,-37.5 + parent: 4812 + type: Transform + - uid: 9059 + components: + - pos: -30.5,-37.5 + parent: 4812 + type: Transform + - uid: 10854 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,4.5 + parent: 4812 + type: Transform + - uid: 10855 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,3.5 + parent: 4812 + type: Transform + - uid: 11353 + components: + - pos: 37.5,-32.5 + parent: 4812 + type: Transform + - uid: 11464 + components: + - pos: 32.5,-30.5 + parent: 4812 + type: Transform + - uid: 11465 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-31.5 + parent: 4812 + type: Transform + - uid: 11784 + components: + - pos: 26.5,-32.5 + parent: 4812 + type: Transform + - uid: 11804 + components: + - pos: -14.5,0.5 + parent: 4812 + type: Transform +- proto: ComputerAlert + entities: + - uid: 2708 + components: + - pos: -2.5,24.5 + parent: 4812 + type: Transform + - uid: 9574 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,1.5 + parent: 4812 + type: Transform +- proto: ComputerAnalysisConsole + entities: + - uid: 6313 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-26.5 + parent: 4812 + type: Transform + - linkedPorts: + 6319: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver + type: DeviceLinkSource +- proto: computerBodyScanner + entities: + - uid: 4921 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-28.5 + parent: 4812 + type: Transform + - uid: 6166 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-28.5 + parent: 4812 + type: Transform + - uid: 6682 + components: + - pos: -21.5,-25.5 + parent: 4812 + type: Transform + - uid: 7445 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-15.5 + parent: 4812 + type: Transform +- proto: ComputerCargoBounty + entities: + - uid: 9587 + components: + - rot: 3.141592653589793 rad + pos: 18.5,17.5 + parent: 4812 + type: Transform +- proto: ComputerCargoOrders + entities: + - uid: 2752 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,17.5 + parent: 4812 + type: Transform + - uid: 3757 + components: + - rot: 3.141592653589793 rad + pos: 16.5,29.5 + parent: 4812 + type: Transform +- proto: ComputerCargoShuttle + entities: + - uid: 2760 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,17.5 + parent: 4812 + type: Transform +- proto: ComputerComms + entities: + - uid: 2601 + components: + - rot: 3.141592653589793 rad + pos: -13.5,22.5 + parent: 4812 + type: Transform + - uid: 2649 + components: + - pos: -2.5,35.5 + parent: 4812 + type: Transform +- proto: ComputerCrewMonitoring + entities: + - uid: 2505 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,25.5 + parent: 4812 + type: Transform + - uid: 2656 + components: + - pos: -4.5,35.5 + parent: 4812 + type: Transform + - uid: 4571 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,2.5 + parent: 4812 + type: Transform + - uid: 6474 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-28.5 + parent: 4812 + type: Transform + - uid: 7447 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-26.5 + parent: 4812 + type: Transform + - uid: 7571 + components: + - pos: -14.5,-20.5 + parent: 4812 + type: Transform + - uid: 8264 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,24.5 + parent: 4812 + type: Transform +- proto: ComputerCriminalRecords + entities: + - uid: 2659 + components: + - pos: 0.5,35.5 + parent: 4812 + type: Transform + - uid: 4570 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,2.5 + parent: 4812 + type: Transform + - uid: 6473 + components: + - pos: -3.5,-26.5 + parent: 4812 + type: Transform + - uid: 8263 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,23.5 + parent: 4812 + type: Transform + - uid: 8331 + components: + - pos: -33.5,16.5 + parent: 4812 + type: Transform + - uid: 8365 + components: + - rot: 3.141592653589793 rad + pos: -25.5,10.5 + parent: 4812 + type: Transform +- proto: ComputerFrame + entities: + - uid: 3951 + components: + - pos: 7.5,47.5 + parent: 4812 + type: Transform + - uid: 6653 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-16.5 + parent: 4812 + type: Transform + - uid: 11147 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-44.5 + parent: 4812 + type: Transform +- proto: ComputerId + entities: + - uid: 2504 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,24.5 + parent: 4812 + type: Transform + - uid: 2602 + components: + - rot: 3.141592653589793 rad + pos: -14.5,22.5 + parent: 4812 + type: Transform + - uid: 2658 + components: + - pos: -0.5,35.5 + parent: 4812 + type: Transform +- proto: ComputerMedicalRecords + entities: + - uid: 2657 + components: + - pos: -5.5,35.5 + parent: 4812 + type: Transform + - uid: 7454 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-27.5 + parent: 4812 + type: Transform +- proto: ComputerPowerMonitoring + entities: + - uid: 2654 + components: + - pos: 3.5,34.5 + parent: 4812 + type: Transform + - uid: 6021 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-31.5 + parent: 4812 + type: Transform + - uid: 8756 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-1.5 + parent: 4812 + type: Transform + - uid: 10697 + components: + - pos: -29.5,-5.5 + parent: 4812 + type: Transform +- proto: ComputerRadar + entities: + - uid: 3225 + components: + - pos: 27.5,15.5 + parent: 4812 + type: Transform +- proto: ComputerResearchAndDevelopment + entities: + - uid: 6185 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 4812 + type: Transform + - uid: 6215 + components: + - pos: 4.5,-25.5 + parent: 4812 + type: Transform + - uid: 6232 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-25.5 + parent: 4812 + type: Transform + - uid: 6287 + components: + - pos: 26.5,-17.5 + parent: 4812 + type: Transform +- proto: ComputerSalvageExpedition + entities: + - uid: 7830 + components: + - rot: 3.141592653589793 rad + pos: 23.5,12.5 + parent: 4812 + type: Transform +- proto: ComputerShuttleCargo + entities: + - uid: 2754 + components: + - pos: 17.5,27.5 + parent: 4812 + type: Transform + - uid: 3758 + components: + - rot: 3.141592653589793 rad + pos: 17.5,29.5 + parent: 4812 + type: Transform +- proto: ComputerShuttleSalvage + entities: + - uid: 7463 + components: + - pos: 26.5,15.5 + parent: 4812 + type: Transform +- proto: ComputerSolarControl + entities: + - uid: 2655 + components: + - pos: 2.5,34.5 + parent: 4812 + type: Transform + - uid: 10322 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-25.5 + parent: 4812 + type: Transform +- proto: ComputerStationRecords + entities: + - uid: 1077 + components: + - rot: 3.141592653589793 rad + pos: -35.5,10.5 + parent: 4812 + type: Transform + - uid: 4799 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-12.5 + parent: 4812 + type: Transform + - uid: 7199 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-28.5 + parent: 4812 + type: Transform +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 2662 + components: + - pos: -7.5,34.5 + parent: 4812 + type: Transform + - uid: 4955 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-26.5 + parent: 4812 + type: Transform + - uid: 8332 + components: + - rot: 3.141592653589793 rad + pos: -33.5,14.5 + parent: 4812 + type: Transform +- proto: ComputerTechnologyDiskTerminal + entities: + - uid: 12323 + components: + - pos: 5.5,-14.5 + parent: 4812 + type: Transform +- proto: ComputerTelevision + entities: + - uid: 5370 + components: + - pos: 18.5,-14.5 + parent: 4812 + type: Transform +- proto: ConveyorBelt + entities: + - uid: 2765 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,28.5 + parent: 4812 + type: Transform + - links: + - 3188 + type: DeviceLinkSink + - uid: 2771 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,28.5 + parent: 4812 + type: Transform + - links: + - 3188 + type: DeviceLinkSink + - uid: 2863 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,28.5 + parent: 4812 + type: Transform + - links: + - 3188 + type: DeviceLinkSink + - uid: 3013 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,24.5 + parent: 4812 + type: Transform + - links: + - 3034 + type: DeviceLinkSink + - uid: 3014 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,24.5 + parent: 4812 + type: Transform + - links: + - 3034 + type: DeviceLinkSink + - uid: 3028 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,24.5 + parent: 4812 + type: Transform + - links: + - 3034 + type: DeviceLinkSink + - uid: 3029 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,24.5 + parent: 4812 + type: Transform + - links: + - 3034 + type: DeviceLinkSink + - uid: 3033 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,24.5 + parent: 4812 + type: Transform + - links: + - 3034 + type: DeviceLinkSink + - uid: 3043 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,28.5 + parent: 4812 + type: Transform + - links: + - 3188 + type: DeviceLinkSink + - uid: 3046 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,28.5 + parent: 4812 + type: Transform + - links: + - 3188 + type: DeviceLinkSink + - uid: 11235 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-38.5 + parent: 4812 + type: Transform + - links: + - 11245 + type: DeviceLinkSink +- proto: CornSeeds + entities: + - uid: 9618 + components: + - pos: -42.51349,-28.44041 + parent: 4812 + type: Transform +- proto: CrateArtifactContainer + entities: + - uid: 7366 + components: + - pos: 19.5,-26.5 + parent: 4812 + type: Transform +- proto: CrateCoffin + entities: + - uid: 9993 + components: + - pos: -23.5,-35.5 + parent: 4812 + type: Transform +- proto: CrateEmergencyInternals + entities: + - uid: 8580 + components: + - pos: -16.5,9.5 + parent: 4812 + type: Transform + - containers: + - EntityStorageComponent + - entity_storage + type: Construction + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: CrateEmptySpawner + entities: + - uid: 3448 + components: + - pos: 14.5,23.5 + parent: 4812 + type: Transform + - uid: 4606 + components: + - pos: 18.5,11.5 + parent: 4812 + type: Transform +- proto: CrateEngineeringAMEJar + entities: + - uid: 10776 + components: + - pos: -38.5,-10.5 + parent: 4812 + type: Transform + - containers: + - EntityStorageComponent + - entity_storage + type: Construction + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: CrateEngineeringAMEShielding + entities: + - uid: 10777 + components: + - pos: -38.5,-11.5 + parent: 4812 + type: Transform + - containers: + - EntityStorageComponent + - entity_storage + type: Construction + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 10779 + components: + - pos: -38.5,-12.5 + parent: 4812 + type: Transform + - containers: + - EntityStorageComponent + - entity_storage + type: Construction + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: CrateEngineeringCableBulk + entities: + - uid: 4489 + components: + - pos: 19.5,2.5 + parent: 4812 + type: Transform + - containers: + - EntityStorageComponent + - entity_storage + type: Construction + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 10705 + components: + - pos: -29.5,-9.5 + parent: 4812 + type: Transform + - containers: + - EntityStorageComponent + - entity_storage + type: Construction + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 10723 + components: + - pos: -39.5,8.5 + parent: 4812 + type: Transform + - containers: + - EntityStorageComponent + - entity_storage + type: Construction + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: CrateEngineeringCableHV + entities: + - uid: 10925 + components: + - pos: -50.5,-24.5 + parent: 4812 + type: Transform + - containers: + - EntityStorageComponent + - entity_storage + type: Construction + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: CrateFilledSpawner + entities: + - uid: 3713 + components: + - pos: 14.5,27.5 + parent: 4812 + type: Transform + - uid: 3714 + components: + - pos: 14.5,26.5 + parent: 4812 + type: Transform + - uid: 3715 + components: + - pos: 14.5,25.5 + parent: 4812 + type: Transform +- proto: CrateFreezer + entities: + - uid: 1728 + components: + - pos: 7.5,-7.5 + parent: 4812 + type: Transform + - uid: 4925 + components: + - pos: -19.5,-28.5 + parent: 4812 + type: Transform +- proto: CrateMedicalSurgery + entities: + - uid: 4926 + components: + - pos: -17.5,-28.5 + parent: 4812 + type: Transform +- proto: CrateNPCHamlet + entities: + - uid: 12427 + components: + - pos: -1.5,34.5 + parent: 4812 + type: Transform +- proto: CrateSalvageEquipment + entities: + - uid: 3262 + components: + - pos: 27.5,13.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - containers: + - EntityStorageComponent + - entity_storage + type: Construction +- proto: CrateScience + entities: + - uid: 12463 + components: + - pos: -35.5,25.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateScienceSecure + entities: + - uid: 6250 + components: + - pos: 12.5,-23.5 + parent: 4812 + type: Transform + - containers: + - EntityStorageComponent + - entity_storage + type: Construction + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 6251 + components: + - pos: 14.5,-23.5 + parent: 4812 + type: Transform + - containers: + - EntityStorageComponent + - entity_storage + type: Construction + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: CrateTrashCart + entities: + - uid: 6171 + components: + - pos: 14.5,-15.5 + parent: 4812 + type: Transform + - uid: 6172 + components: + - pos: -34.5,-12.5 + parent: 4812 + type: Transform + - uid: 6173 + components: + - pos: -29.413927,7.5544257 + parent: 4812 + type: Transform + - uid: 6174 + components: + - pos: 19.5,4.5 + parent: 4812 + type: Transform + - uid: 11472 + components: + - pos: 8.5,2.5 + parent: 4812 + type: Transform +- proto: CrateTrashCartJani + entities: + - uid: 6169 + components: + - pos: -22.5,-3.5 + parent: 4812 + type: Transform +- proto: CrayonBox + entities: + - uid: 1718 + components: + - pos: -10.378301,0.0073432922 + parent: 4812 + type: Transform + - uid: 8405 + components: + - pos: -28.516111,30.589315 + parent: 4812 + type: Transform +- proto: CrayonRainbow + entities: + - uid: 9589 + components: + - flags: InContainer + type: MetaData + - parent: 2709 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: Crematorium + entities: + - uid: 7228 + components: + - pos: -22.5,-32.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14954 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrewMonitoringServer + entities: + - uid: 4984 + components: + - pos: -3.5,26.5 + parent: 4812 + type: Transform +- proto: Crowbar + entities: + - uid: 3469 + components: + - pos: 22.493902,3.436778 + parent: 4812 + type: Transform +- proto: CrowbarRed + entities: + - uid: 4573 + components: + - pos: 27.5,4.5 + parent: 4812 + type: Transform + - uid: 6350 + components: + - pos: 5.526539,-28.44819 + parent: 4812 + type: Transform + - uid: 6480 + components: + - pos: -2.4305947,-24.470394 + parent: 4812 + type: Transform + - uid: 8588 + components: + - pos: -18.483784,12.505529 + parent: 4812 + type: Transform + - uid: 11330 + components: + - pos: 26.509838,-35.582523 + parent: 4812 + type: Transform +- proto: CryoPod + entities: + - uid: 1937 + components: + - pos: -15.5,-25.5 + parent: 4812 + type: Transform + - uid: 7219 + components: + - pos: -13.5,-25.5 + parent: 4812 + type: Transform +- proto: CryoxadoneBeakerSmall + entities: + - uid: 3269 + components: + - pos: -14.53001,-25.469097 + parent: 4812 + type: Transform + - uid: 7151 + components: + - pos: -14.264385,-25.312847 + parent: 4812 + type: Transform +- proto: CultAltarSpawner + entities: + - uid: 10980 + components: + - pos: -36.5,30.5 + parent: 4812 + type: Transform +- proto: DawInstrumentMachineCircuitboard + entities: + - uid: 1723 + components: + - pos: -9.581426,-1.3989067 + parent: 4812 + type: Transform +- proto: DefibrillatorCabinetFilled + entities: + - uid: 4815 + components: + - pos: -5.5,12.5 + parent: 4812 + type: Transform + - uid: 4996 + components: + - pos: -17.5,-19.5 + parent: 4812 + type: Transform + - uid: 8376 + components: + - pos: -24.5,-21.5 + parent: 4812 + type: Transform + - uid: 8378 + components: + - pos: -22.5,-24.5 + parent: 4812 + type: Transform + - uid: 8414 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-25.5 + parent: 4812 + type: Transform +- proto: DeskBell + entities: + - uid: 4800 + components: + - pos: 1.5,-2.5 + parent: 4812 + type: Transform + - canCollide: False + bodyType: Static + type: Physics + - uid: 4801 + components: + - pos: -6.5,-5.5 + parent: 4812 + type: Transform + - canCollide: False + bodyType: Static + type: Physics + - uid: 4802 + components: + - pos: 2.5,-15.5 + parent: 4812 + type: Transform + - canCollide: False + bodyType: Static + type: Physics + - uid: 4803 + components: + - pos: 15.5,16.5 + parent: 4812 + type: Transform + - canCollide: False + bodyType: Static + type: Physics + - uid: 4804 + components: + - pos: 10.5,22.5 + parent: 4812 + type: Transform + - canCollide: False + bodyType: Static + type: Physics + - uid: 4805 + components: + - pos: -24.5,11.5 + parent: 4812 + type: Transform + - canCollide: False + bodyType: Static + type: Physics +- proto: DiceBag + entities: + - uid: 4561 + components: + - pos: 27.529026,-5.5177865 + parent: 4812 + type: Transform + - uid: 7137 + components: + - pos: -27.959236,-14.350061 + parent: 4812 + type: Transform +- proto: DiseaseDiagnoser + entities: + - uid: 9018 + components: + - pos: -38.5,-35.5 + parent: 4812 + type: Transform +- proto: DisposalBend + entities: + - uid: 1105 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-6.5 + parent: 4812 + type: Transform + - uid: 1119 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 4812 + type: Transform + - uid: 1120 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 4812 + type: Transform + - uid: 1575 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 4812 + type: Transform + - uid: 1576 + components: + - pos: 3.5,2.5 + parent: 4812 + type: Transform + - uid: 1602 + components: + - pos: -2.5,11.5 + parent: 4812 + type: Transform + - uid: 1607 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-9.5 + parent: 4812 + type: Transform + - uid: 1636 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-6.5 + parent: 4812 + type: Transform + - uid: 1705 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 4812 + type: Transform + - uid: 3292 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,19.5 + parent: 4812 + type: Transform + - uid: 3343 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-11.5 + parent: 4812 + type: Transform + - uid: 3387 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-8.5 + parent: 4812 + type: Transform + - uid: 3409 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-8.5 + parent: 4812 + type: Transform + - uid: 4505 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,19.5 + parent: 4812 + type: Transform + - uid: 5862 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-24.5 + parent: 4812 + type: Transform + - uid: 5883 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-24.5 + parent: 4812 + type: Transform + - uid: 5887 + components: + - pos: 8.5,-20.5 + parent: 4812 + type: Transform + - uid: 5896 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-14.5 + parent: 4812 + type: Transform + - uid: 6432 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-35.5 + parent: 4812 + type: Transform + - uid: 7590 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-16.5 + parent: 4812 + type: Transform + - uid: 7591 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-21.5 + parent: 4812 + type: Transform + - uid: 9012 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-37.5 + parent: 4812 + type: Transform + - uid: 10781 + components: + - pos: -33.5,1.5 + parent: 4812 + type: Transform + - uid: 10804 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-11.5 + parent: 4812 + type: Transform + - uid: 10811 + components: + - rot: 3.141592653589793 rad + pos: -28.5,14.5 + parent: 4812 + type: Transform + - uid: 10816 + components: + - pos: -23.5,14.5 + parent: 4812 + type: Transform + - uid: 10817 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,7.5 + parent: 4812 + type: Transform + - uid: 10818 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,7.5 + parent: 4812 + type: Transform + - uid: 10843 + components: + - pos: -20.5,1.5 + parent: 4812 + type: Transform + - uid: 11224 + components: + - pos: 9.5,-30.5 + parent: 4812 + type: Transform +- proto: DisposalJunction + entities: + - uid: 1700 + components: + - pos: -2.5,-0.5 + parent: 4812 + type: Transform + - uid: 3211 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,19.5 + parent: 4812 + type: Transform + - uid: 3299 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-11.5 + parent: 4812 + type: Transform + - uid: 5849 + components: + - pos: 0.5,-21.5 + parent: 4812 + type: Transform + - uid: 5891 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-20.5 + parent: 4812 + type: Transform + - uid: 10795 + components: + - pos: -25.5,-2.5 + parent: 4812 + type: Transform +- proto: DisposalJunctionFlipped + entities: + - uid: 1585 + components: + - pos: -2.5,-5.5 + parent: 4812 + type: Transform + - uid: 1586 + components: + - pos: -2.5,2.5 + parent: 4812 + type: Transform + - uid: 1614 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 4812 + type: Transform + - uid: 1615 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-11.5 + parent: 4812 + type: Transform + - uid: 1634 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-11.5 + parent: 4812 + type: Transform + - uid: 3982 + components: + - pos: 11.5,-1.5 + parent: 4812 + type: Transform + - uid: 5848 + components: + - pos: 0.5,-20.5 + parent: 4812 + type: Transform + - uid: 10831 + components: + - pos: -25.5,1.5 + parent: 4812 + type: Transform +- proto: DisposalPipe + entities: + - uid: 1106 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-6.5 + parent: 4812 + type: Transform + - uid: 1107 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 4812 + type: Transform + - uid: 1108 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 4812 + type: Transform + - uid: 1109 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 4812 + type: Transform + - uid: 1110 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 4812 + type: Transform + - uid: 1111 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 4812 + type: Transform + - uid: 1112 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 4812 + type: Transform + - uid: 1113 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 4812 + type: Transform + - uid: 1114 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 4812 + type: Transform + - uid: 1115 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 4812 + type: Transform + - uid: 1116 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 4812 + type: Transform + - uid: 1117 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 4812 + type: Transform + - uid: 1118 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 4812 + type: Transform + - uid: 1122 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 4812 + type: Transform + - uid: 1123 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 4812 + type: Transform + - uid: 1577 + components: + - pos: 3.5,1.5 + parent: 4812 + type: Transform + - uid: 1578 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 4812 + type: Transform + - uid: 1579 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 4812 + type: Transform + - uid: 1580 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 4812 + type: Transform + - uid: 1581 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 4812 + type: Transform + - uid: 1582 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 4812 + type: Transform + - uid: 1583 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 4812 + type: Transform + - uid: 1584 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 4812 + type: Transform + - uid: 1587 + components: + - pos: -2.5,-4.5 + parent: 4812 + type: Transform + - uid: 1588 + components: + - pos: -2.5,-3.5 + parent: 4812 + type: Transform + - uid: 1589 + components: + - pos: -2.5,-2.5 + parent: 4812 + type: Transform + - uid: 1590 + components: + - pos: -2.5,-1.5 + parent: 4812 + type: Transform + - uid: 1592 + components: + - pos: -2.5,0.5 + parent: 4812 + type: Transform + - uid: 1593 + components: + - pos: -2.5,1.5 + parent: 4812 + type: Transform + - uid: 1594 + components: + - pos: -2.5,3.5 + parent: 4812 + type: Transform + - uid: 1595 + components: + - pos: -2.5,4.5 + parent: 4812 + type: Transform + - uid: 1596 + components: + - pos: -2.5,5.5 + parent: 4812 + type: Transform + - uid: 1597 + components: + - pos: -2.5,6.5 + parent: 4812 + type: Transform + - uid: 1598 + components: + - pos: -2.5,7.5 + parent: 4812 + type: Transform + - uid: 1599 + components: + - pos: -2.5,8.5 + parent: 4812 + type: Transform + - uid: 1600 + components: + - pos: -2.5,9.5 + parent: 4812 + type: Transform + - uid: 1601 + components: + - pos: -2.5,10.5 + parent: 4812 + type: Transform + - uid: 1603 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,11.5 + parent: 4812 + type: Transform + - uid: 1604 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,11.5 + parent: 4812 + type: Transform + - uid: 1608 + components: + - pos: -10.5,-10.5 + parent: 4812 + type: Transform + - uid: 1609 + components: + - pos: -2.5,-6.5 + parent: 4812 + type: Transform + - uid: 1610 + components: + - pos: -2.5,-7.5 + parent: 4812 + type: Transform + - uid: 1611 + components: + - pos: -2.5,-8.5 + parent: 4812 + type: Transform + - uid: 1612 + components: + - pos: -2.5,-9.5 + parent: 4812 + type: Transform + - uid: 1613 + components: + - pos: -2.5,-10.5 + parent: 4812 + type: Transform + - uid: 1616 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-11.5 + parent: 4812 + type: Transform + - uid: 1617 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-11.5 + parent: 4812 + type: Transform + - uid: 1618 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-11.5 + parent: 4812 + type: Transform + - uid: 1619 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-11.5 + parent: 4812 + type: Transform + - uid: 1620 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-11.5 + parent: 4812 + type: Transform + - uid: 1621 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-11.5 + parent: 4812 + type: Transform + - uid: 1622 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-11.5 + parent: 4812 + type: Transform + - uid: 1623 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-11.5 + parent: 4812 + type: Transform + - uid: 1624 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-11.5 + parent: 4812 + type: Transform + - uid: 1625 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-11.5 + parent: 4812 + type: Transform + - uid: 1627 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-11.5 + parent: 4812 + type: Transform + - uid: 1628 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-11.5 + parent: 4812 + type: Transform + - uid: 1629 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-11.5 + parent: 4812 + type: Transform + - uid: 1630 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-11.5 + parent: 4812 + type: Transform + - uid: 1631 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-11.5 + parent: 4812 + type: Transform + - uid: 1632 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-11.5 + parent: 4812 + type: Transform + - uid: 1633 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-11.5 + parent: 4812 + type: Transform + - uid: 1637 + components: + - pos: -22.5,-10.5 + parent: 4812 + type: Transform + - uid: 1638 + components: + - pos: -22.5,-9.5 + parent: 4812 + type: Transform + - uid: 1639 + components: + - pos: -22.5,-8.5 + parent: 4812 + type: Transform + - uid: 1640 + components: + - pos: -22.5,-7.5 + parent: 4812 + type: Transform + - uid: 1641 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-6.5 + parent: 4812 + type: Transform + - uid: 1701 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 4812 + type: Transform + - uid: 1702 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 4812 + type: Transform + - uid: 1703 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 4812 + type: Transform + - uid: 1704 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 4812 + type: Transform + - uid: 2941 + components: + - rot: 3.141592653589793 rad + pos: 15.5,27.5 + parent: 4812 + type: Transform + - uid: 3007 + components: + - rot: 3.141592653589793 rad + pos: 15.5,28.5 + parent: 4812 + type: Transform + - uid: 3030 + components: + - rot: 3.141592653589793 rad + pos: 15.5,24.5 + parent: 4812 + type: Transform + - uid: 3145 + components: + - rot: 3.141592653589793 rad + pos: 15.5,26.5 + parent: 4812 + type: Transform + - uid: 3194 + components: + - rot: 3.141592653589793 rad + pos: 15.5,25.5 + parent: 4812 + type: Transform + - uid: 3207 + components: + - rot: 3.141592653589793 rad + pos: 15.5,23.5 + parent: 4812 + type: Transform + - uid: 3208 + components: + - rot: 3.141592653589793 rad + pos: 15.5,20.5 + parent: 4812 + type: Transform + - uid: 3209 + components: + - rot: 3.141592653589793 rad + pos: 15.5,21.5 + parent: 4812 + type: Transform + - uid: 3210 + components: + - rot: 3.141592653589793 rad + pos: 15.5,22.5 + parent: 4812 + type: Transform + - uid: 3223 + components: + - pos: -33.5,-6.5 + parent: 4812 + type: Transform + - uid: 3227 + components: + - pos: -33.5,-4.5 + parent: 4812 + type: Transform + - uid: 3293 + components: + - rot: 3.141592653589793 rad + pos: 17.5,20.5 + parent: 4812 + type: Transform + - uid: 3294 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,19.5 + parent: 4812 + type: Transform + - uid: 3296 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,19.5 + parent: 4812 + type: Transform + - uid: 3297 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,19.5 + parent: 4812 + type: Transform + - uid: 3298 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,19.5 + parent: 4812 + type: Transform + - uid: 3300 + components: + - pos: 11.5,18.5 + parent: 4812 + type: Transform + - uid: 3301 + components: + - pos: 11.5,17.5 + parent: 4812 + type: Transform + - uid: 3302 + components: + - pos: 11.5,16.5 + parent: 4812 + type: Transform + - uid: 3303 + components: + - pos: 11.5,15.5 + parent: 4812 + type: Transform + - uid: 3304 + components: + - pos: 11.5,14.5 + parent: 4812 + type: Transform + - uid: 3305 + components: + - pos: 11.5,13.5 + parent: 4812 + type: Transform + - uid: 3306 + components: + - pos: 11.5,12.5 + parent: 4812 + type: Transform + - uid: 3307 + components: + - pos: 11.5,11.5 + parent: 4812 + type: Transform + - uid: 3308 + components: + - pos: 11.5,10.5 + parent: 4812 + type: Transform + - uid: 3309 + components: + - pos: 11.5,9.5 + parent: 4812 + type: Transform + - uid: 3310 + components: + - pos: 11.5,8.5 + parent: 4812 + type: Transform + - uid: 3311 + components: + - pos: 11.5,7.5 + parent: 4812 + type: Transform + - uid: 3312 + components: + - pos: 11.5,6.5 + parent: 4812 + type: Transform + - uid: 3313 + components: + - pos: 11.5,5.5 + parent: 4812 + type: Transform + - uid: 3314 + components: + - pos: 11.5,4.5 + parent: 4812 + type: Transform + - uid: 3315 + components: + - pos: 11.5,3.5 + parent: 4812 + type: Transform + - uid: 3316 + components: + - pos: 11.5,2.5 + parent: 4812 + type: Transform + - uid: 3317 + components: + - pos: 11.5,1.5 + parent: 4812 + type: Transform + - uid: 3318 + components: + - pos: 11.5,0.5 + parent: 4812 + type: Transform + - uid: 3319 + components: + - pos: 11.5,-0.5 + parent: 4812 + type: Transform + - uid: 3321 + components: + - pos: 11.5,-2.5 + parent: 4812 + type: Transform + - uid: 3322 + components: + - pos: 11.5,-3.5 + parent: 4812 + type: Transform + - uid: 3323 + components: + - pos: 11.5,-4.5 + parent: 4812 + type: Transform + - uid: 3324 + components: + - pos: 11.5,-5.5 + parent: 4812 + type: Transform + - uid: 3325 + components: + - pos: 11.5,-6.5 + parent: 4812 + type: Transform + - uid: 3326 + components: + - pos: 11.5,-7.5 + parent: 4812 + type: Transform + - uid: 3327 + components: + - pos: 11.5,-8.5 + parent: 4812 + type: Transform + - uid: 3328 + components: + - pos: 11.5,-9.5 + parent: 4812 + type: Transform + - uid: 3329 + components: + - pos: 11.5,-10.5 + parent: 4812 + type: Transform + - uid: 3330 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-11.5 + parent: 4812 + type: Transform + - uid: 3331 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-11.5 + parent: 4812 + type: Transform + - uid: 3332 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-11.5 + parent: 4812 + type: Transform + - uid: 3333 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-11.5 + parent: 4812 + type: Transform + - uid: 3334 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 4812 + type: Transform + - uid: 3335 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-11.5 + parent: 4812 + type: Transform + - uid: 3336 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 4812 + type: Transform + - uid: 3337 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 4812 + type: Transform + - uid: 3338 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 4812 + type: Transform + - uid: 3339 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 4812 + type: Transform + - uid: 3340 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 4812 + type: Transform + - uid: 3341 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 4812 + type: Transform + - uid: 3386 + components: + - pos: -38.5,-7.5 + parent: 4812 + type: Transform + - uid: 3388 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-8.5 + parent: 4812 + type: Transform + - uid: 3389 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-8.5 + parent: 4812 + type: Transform + - uid: 3410 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-8.5 + parent: 4812 + type: Transform + - uid: 3411 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-8.5 + parent: 4812 + type: Transform + - uid: 3419 + components: + - pos: -33.5,-5.5 + parent: 4812 + type: Transform + - uid: 3420 + components: + - pos: -33.5,-3.5 + parent: 4812 + type: Transform + - uid: 3457 + components: + - rot: 3.141592653589793 rad + pos: 15.5,30.5 + parent: 4812 + type: Transform + - uid: 3458 + components: + - rot: 3.141592653589793 rad + pos: 15.5,29.5 + parent: 4812 + type: Transform + - uid: 3466 + components: + - pos: -33.5,-7.5 + parent: 4812 + type: Transform + - uid: 4502 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 4812 + type: Transform + - uid: 4504 + components: + - rot: 3.141592653589793 rad + pos: -5.5,18.5 + parent: 4812 + type: Transform + - uid: 4506 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,19.5 + parent: 4812 + type: Transform + - uid: 4507 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,19.5 + parent: 4812 + type: Transform + - uid: 4508 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,19.5 + parent: 4812 + type: Transform + - uid: 4509 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,19.5 + parent: 4812 + type: Transform + - uid: 4510 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,19.5 + parent: 4812 + type: Transform + - uid: 4511 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,19.5 + parent: 4812 + type: Transform + - uid: 4512 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,19.5 + parent: 4812 + type: Transform + - uid: 4513 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,19.5 + parent: 4812 + type: Transform + - uid: 4514 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,19.5 + parent: 4812 + type: Transform + - uid: 4515 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,19.5 + parent: 4812 + type: Transform + - uid: 4516 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,19.5 + parent: 4812 + type: Transform + - uid: 4517 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,19.5 + parent: 4812 + type: Transform + - uid: 4518 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,19.5 + parent: 4812 + type: Transform + - uid: 4519 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,19.5 + parent: 4812 + type: Transform + - uid: 4520 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,19.5 + parent: 4812 + type: Transform + - uid: 4521 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,19.5 + parent: 4812 + type: Transform + - uid: 5840 + components: + - pos: 0.5,-12.5 + parent: 4812 + type: Transform + - uid: 5841 + components: + - pos: 0.5,-13.5 + parent: 4812 + type: Transform + - uid: 5842 + components: + - pos: 0.5,-14.5 + parent: 4812 + type: Transform + - uid: 5843 + components: + - pos: 0.5,-15.5 + parent: 4812 + type: Transform + - uid: 5844 + components: + - pos: 0.5,-16.5 + parent: 4812 + type: Transform + - uid: 5845 + components: + - pos: 0.5,-17.5 + parent: 4812 + type: Transform + - uid: 5846 + components: + - pos: 0.5,-18.5 + parent: 4812 + type: Transform + - uid: 5847 + components: + - pos: 0.5,-19.5 + parent: 4812 + type: Transform + - uid: 5850 + components: + - pos: 0.5,-22.5 + parent: 4812 + type: Transform + - uid: 5851 + components: + - pos: 0.5,-23.5 + parent: 4812 + type: Transform + - uid: 5852 + components: + - pos: 0.5,-24.5 + parent: 4812 + type: Transform + - uid: 5853 + components: + - pos: 0.5,-25.5 + parent: 4812 + type: Transform + - uid: 5854 + components: + - pos: 0.5,-26.5 + parent: 4812 + type: Transform + - uid: 5855 + components: + - pos: 0.5,-27.5 + parent: 4812 + type: Transform + - uid: 5856 + components: + - pos: 0.5,-28.5 + parent: 4812 + type: Transform + - uid: 5857 + components: + - pos: 0.5,-29.5 + parent: 4812 + type: Transform + - uid: 5861 + components: + - pos: 29.5,-23.5 + parent: 4812 + type: Transform + - uid: 5863 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-24.5 + parent: 4812 + type: Transform + - uid: 5864 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-24.5 + parent: 4812 + type: Transform + - uid: 5865 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-24.5 + parent: 4812 + type: Transform + - uid: 5866 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-24.5 + parent: 4812 + type: Transform + - uid: 5867 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-24.5 + parent: 4812 + type: Transform + - uid: 5868 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-24.5 + parent: 4812 + type: Transform + - uid: 5869 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-24.5 + parent: 4812 + type: Transform + - uid: 5870 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-24.5 + parent: 4812 + type: Transform + - uid: 5871 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-24.5 + parent: 4812 + type: Transform + - uid: 5872 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-24.5 + parent: 4812 + type: Transform + - uid: 5873 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-24.5 + parent: 4812 + type: Transform + - uid: 5874 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-24.5 + parent: 4812 + type: Transform + - uid: 5875 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-24.5 + parent: 4812 + type: Transform + - uid: 5876 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-24.5 + parent: 4812 + type: Transform + - uid: 5877 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-24.5 + parent: 4812 + type: Transform + - uid: 5878 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-24.5 + parent: 4812 + type: Transform + - uid: 5879 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-24.5 + parent: 4812 + type: Transform + - uid: 5880 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-24.5 + parent: 4812 + type: Transform + - uid: 5881 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-24.5 + parent: 4812 + type: Transform + - uid: 5882 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-24.5 + parent: 4812 + type: Transform + - uid: 5884 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-23.5 + parent: 4812 + type: Transform + - uid: 5885 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-22.5 + parent: 4812 + type: Transform + - uid: 5886 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-21.5 + parent: 4812 + type: Transform + - uid: 5888 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-20.5 + parent: 4812 + type: Transform + - uid: 5889 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-20.5 + parent: 4812 + type: Transform + - uid: 5890 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-20.5 + parent: 4812 + type: Transform + - uid: 5892 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-20.5 + parent: 4812 + type: Transform + - uid: 5893 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-20.5 + parent: 4812 + type: Transform + - uid: 5894 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-20.5 + parent: 4812 + type: Transform + - uid: 5897 + components: + - pos: 4.5,-19.5 + parent: 4812 + type: Transform + - uid: 5898 + components: + - pos: 4.5,-18.5 + parent: 4812 + type: Transform + - uid: 5899 + components: + - pos: 4.5,-17.5 + parent: 4812 + type: Transform + - uid: 5900 + components: + - pos: 4.5,-16.5 + parent: 4812 + type: Transform + - uid: 5901 + components: + - pos: 4.5,-15.5 + parent: 4812 + type: Transform + - uid: 5902 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-14.5 + parent: 4812 + type: Transform + - uid: 5903 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-14.5 + parent: 4812 + type: Transform + - uid: 6424 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-30.5 + parent: 4812 + type: Transform + - uid: 6425 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-30.5 + parent: 4812 + type: Transform + - uid: 6426 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-30.5 + parent: 4812 + type: Transform + - uid: 6427 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-30.5 + parent: 4812 + type: Transform + - uid: 6428 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-30.5 + parent: 4812 + type: Transform + - uid: 6429 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-30.5 + parent: 4812 + type: Transform + - uid: 6433 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-35.5 + parent: 4812 + type: Transform + - uid: 6434 + components: + - pos: 0.5,-34.5 + parent: 4812 + type: Transform + - uid: 6435 + components: + - pos: 0.5,-33.5 + parent: 4812 + type: Transform + - uid: 6436 + components: + - pos: 0.5,-32.5 + parent: 4812 + type: Transform + - uid: 6437 + components: + - pos: 0.5,-31.5 + parent: 4812 + type: Transform + - uid: 7592 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-20.5 + parent: 4812 + type: Transform + - uid: 7593 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-19.5 + parent: 4812 + type: Transform + - uid: 7594 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-18.5 + parent: 4812 + type: Transform + - uid: 7595 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-17.5 + parent: 4812 + type: Transform + - uid: 7596 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-21.5 + parent: 4812 + type: Transform + - uid: 7597 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-21.5 + parent: 4812 + type: Transform + - uid: 7598 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-21.5 + parent: 4812 + type: Transform + - uid: 7599 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-21.5 + parent: 4812 + type: Transform + - uid: 7600 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-21.5 + parent: 4812 + type: Transform + - uid: 7601 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-21.5 + parent: 4812 + type: Transform + - uid: 7602 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-21.5 + parent: 4812 + type: Transform + - uid: 7603 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-21.5 + parent: 4812 + type: Transform + - uid: 7604 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-21.5 + parent: 4812 + type: Transform + - uid: 7619 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-12.5 + parent: 4812 + type: Transform + - uid: 9010 + components: + - pos: -37.5,-36.5 + parent: 4812 + type: Transform + - uid: 9011 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-37.5 + parent: 4812 + type: Transform + - uid: 10782 + components: + - pos: -33.5,0.5 + parent: 4812 + type: Transform + - uid: 10783 + components: + - pos: -33.5,-0.5 + parent: 4812 + type: Transform + - uid: 10784 + components: + - pos: -33.5,-1.5 + parent: 4812 + type: Transform + - uid: 10786 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-2.5 + parent: 4812 + type: Transform + - uid: 10787 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-2.5 + parent: 4812 + type: Transform + - uid: 10788 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-2.5 + parent: 4812 + type: Transform + - uid: 10789 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-2.5 + parent: 4812 + type: Transform + - uid: 10790 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-2.5 + parent: 4812 + type: Transform + - uid: 10791 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-2.5 + parent: 4812 + type: Transform + - uid: 10792 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-11.5 + parent: 4812 + type: Transform + - uid: 10793 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-11.5 + parent: 4812 + type: Transform + - uid: 10794 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-2.5 + parent: 4812 + type: Transform + - uid: 10796 + components: + - pos: -25.5,-10.5 + parent: 4812 + type: Transform + - uid: 10797 + components: + - pos: -25.5,-9.5 + parent: 4812 + type: Transform + - uid: 10798 + components: + - pos: -25.5,-8.5 + parent: 4812 + type: Transform + - uid: 10799 + components: + - pos: -25.5,-7.5 + parent: 4812 + type: Transform + - uid: 10800 + components: + - pos: -25.5,-6.5 + parent: 4812 + type: Transform + - uid: 10801 + components: + - pos: -25.5,-5.5 + parent: 4812 + type: Transform + - uid: 10802 + components: + - pos: -25.5,-4.5 + parent: 4812 + type: Transform + - uid: 10803 + components: + - pos: -25.5,-3.5 + parent: 4812 + type: Transform + - uid: 10806 + components: + - pos: -28.5,19.5 + parent: 4812 + type: Transform + - uid: 10807 + components: + - pos: -28.5,18.5 + parent: 4812 + type: Transform + - uid: 10808 + components: + - pos: -28.5,17.5 + parent: 4812 + type: Transform + - uid: 10809 + components: + - pos: -28.5,16.5 + parent: 4812 + type: Transform + - uid: 10810 + components: + - pos: -28.5,15.5 + parent: 4812 + type: Transform + - uid: 10812 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,14.5 + parent: 4812 + type: Transform + - uid: 10813 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,14.5 + parent: 4812 + type: Transform + - uid: 10814 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,14.5 + parent: 4812 + type: Transform + - uid: 10815 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,14.5 + parent: 4812 + type: Transform + - uid: 10819 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,7.5 + parent: 4812 + type: Transform + - uid: 10820 + components: + - pos: -23.5,8.5 + parent: 4812 + type: Transform + - uid: 10821 + components: + - pos: -23.5,9.5 + parent: 4812 + type: Transform + - uid: 10822 + components: + - pos: -23.5,10.5 + parent: 4812 + type: Transform + - uid: 10823 + components: + - pos: -23.5,11.5 + parent: 4812 + type: Transform + - uid: 10824 + components: + - pos: -23.5,12.5 + parent: 4812 + type: Transform + - uid: 10825 + components: + - pos: -23.5,13.5 + parent: 4812 + type: Transform + - uid: 10826 + components: + - pos: -25.5,6.5 + parent: 4812 + type: Transform + - uid: 10827 + components: + - pos: -25.5,5.5 + parent: 4812 + type: Transform + - uid: 10828 + components: + - pos: -25.5,4.5 + parent: 4812 + type: Transform + - uid: 10829 + components: + - pos: -25.5,3.5 + parent: 4812 + type: Transform + - uid: 10830 + components: + - pos: -25.5,2.5 + parent: 4812 + type: Transform + - uid: 10832 + components: + - pos: -25.5,0.5 + parent: 4812 + type: Transform + - uid: 10833 + components: + - pos: -25.5,-0.5 + parent: 4812 + type: Transform + - uid: 10834 + components: + - pos: -25.5,-1.5 + parent: 4812 + type: Transform + - uid: 10837 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,1.5 + parent: 4812 + type: Transform + - uid: 10838 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,1.5 + parent: 4812 + type: Transform + - uid: 10839 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,1.5 + parent: 4812 + type: Transform + - uid: 10840 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,1.5 + parent: 4812 + type: Transform + - uid: 10841 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-0.5 + parent: 4812 + type: Transform + - uid: 10842 + components: + - rot: 3.141592653589793 rad + pos: -20.5,0.5 + parent: 4812 + type: Transform + - uid: 11094 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-42.5 + parent: 4812 + type: Transform + - uid: 11095 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-42.5 + parent: 4812 + type: Transform + - uid: 11096 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-38.5 + parent: 4812 + type: Transform + - uid: 11097 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-34.5 + parent: 4812 + type: Transform + - uid: 11098 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-38.5 + parent: 4812 + type: Transform + - uid: 11225 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-30.5 + parent: 4812 + type: Transform + - uid: 11226 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-30.5 + parent: 4812 + type: Transform + - uid: 11227 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-31.5 + parent: 4812 + type: Transform + - uid: 11228 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-32.5 + parent: 4812 + type: Transform + - uid: 11229 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-33.5 + parent: 4812 + type: Transform + - uid: 11230 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-34.5 + parent: 4812 + type: Transform + - uid: 11231 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-35.5 + parent: 4812 + type: Transform + - uid: 11232 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-36.5 + parent: 4812 + type: Transform + - uid: 11233 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-37.5 + parent: 4812 + type: Transform + - uid: 12401 + components: + - rot: 3.141592653589793 rad + pos: 6.5,33.5 + parent: 4812 + type: Transform + - uid: 12405 + components: + - rot: 3.141592653589793 rad + pos: 6.5,34.5 + parent: 4812 + type: Transform + - uid: 12406 + components: + - rot: 3.141592653589793 rad + pos: 6.5,35.5 + parent: 4812 + type: Transform + - uid: 12407 + components: + - rot: 3.141592653589793 rad + pos: 6.5,36.5 + parent: 4812 + type: Transform + - uid: 12408 + components: + - rot: 3.141592653589793 rad + pos: 6.5,37.5 + parent: 4812 + type: Transform + - uid: 12409 + components: + - rot: 3.141592653589793 rad + pos: 6.5,38.5 + parent: 4812 + type: Transform + - uid: 12410 + components: + - rot: 3.141592653589793 rad + pos: 6.5,39.5 + parent: 4812 + type: Transform + - uid: 12411 + components: + - rot: 3.141592653589793 rad + pos: 6.5,40.5 + parent: 4812 + type: Transform + - uid: 12412 + components: + - rot: 3.141592653589793 rad + pos: 6.5,41.5 + parent: 4812 + type: Transform + - uid: 12413 + components: + - rot: 3.141592653589793 rad + pos: 6.5,42.5 + parent: 4812 + type: Transform + - uid: 12414 + components: + - rot: 3.141592653589793 rad + pos: 6.5,43.5 + parent: 4812 + type: Transform +- proto: DisposalTrunk + entities: + - uid: 1104 + components: + - pos: -9.5,-5.5 + parent: 4812 + type: Transform + - uid: 1121 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 4812 + type: Transform + - uid: 1573 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 4812 + type: Transform + - uid: 1574 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 4812 + type: Transform + - uid: 1591 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 4812 + type: Transform + - uid: 1605 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,11.5 + parent: 4812 + type: Transform + - uid: 1606 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-9.5 + parent: 4812 + type: Transform + - uid: 1635 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-6.5 + parent: 4812 + type: Transform + - uid: 3144 + components: + - pos: 15.5,31.5 + parent: 4812 + type: Transform + - uid: 3291 + components: + - pos: 17.5,21.5 + parent: 4812 + type: Transform + - uid: 3408 + components: + - pos: -38.5,-6.5 + parent: 4812 + type: Transform + - uid: 4501 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 4812 + type: Transform + - uid: 4503 + components: + - rot: 3.141592653589793 rad + pos: -5.5,17.5 + parent: 4812 + type: Transform + - uid: 5860 + components: + - pos: 29.5,-22.5 + parent: 4812 + type: Transform + - uid: 5895 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-14.5 + parent: 4812 + type: Transform + - uid: 6431 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-35.5 + parent: 4812 + type: Transform + - uid: 7589 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-16.5 + parent: 4812 + type: Transform + - uid: 7617 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-13.5 + parent: 4812 + type: Transform + - uid: 9009 + components: + - pos: -37.5,-35.5 + parent: 4812 + type: Transform + - uid: 9013 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-37.5 + parent: 4812 + type: Transform + - uid: 10780 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,1.5 + parent: 4812 + type: Transform + - uid: 10805 + components: + - pos: -28.5,20.5 + parent: 4812 + type: Transform + - uid: 10836 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-1.5 + parent: 4812 + type: Transform + - uid: 11084 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-42.5 + parent: 4812 + type: Transform + - uid: 11085 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-38.5 + parent: 4812 + type: Transform + - uid: 11086 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-34.5 + parent: 4812 + type: Transform + - uid: 11087 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-38.5 + parent: 4812 + type: Transform + - uid: 11088 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-42.5 + parent: 4812 + type: Transform + - uid: 11089 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-42.5 + parent: 4812 + type: Transform + - uid: 11090 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-38.5 + parent: 4812 + type: Transform + - uid: 11091 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-34.5 + parent: 4812 + type: Transform + - uid: 11092 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-38.5 + parent: 4812 + type: Transform + - uid: 11093 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-42.5 + parent: 4812 + type: Transform + - uid: 11234 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-38.5 + parent: 4812 + type: Transform + - uid: 12403 + components: + - pos: 6.5,44.5 + parent: 4812 + type: Transform + - uid: 12404 + components: + - rot: 3.141592653589793 rad + pos: 6.5,32.5 + parent: 4812 + type: Transform +- proto: DisposalUnit + entities: + - uid: 921 + components: + - pos: 0.5,-5.5 + parent: 4812 + type: Transform + - uid: 922 + components: + - pos: -5.5,11.5 + parent: 4812 + type: Transform + - uid: 1083 + components: + - pos: -9.5,-9.5 + parent: 4812 + type: Transform + - uid: 1084 + components: + - desc: Sends stuff to kitchen. + name: kitchen mail tube + type: MetaData + - pos: -9.5,-5.5 + parent: 4812 + type: Transform + - uid: 1483 + components: + - pos: -20.5,-6.5 + parent: 4812 + type: Transform + - uid: 1556 + components: + - pos: 2.5,0.5 + parent: 4812 + type: Transform + - uid: 1699 + components: + - pos: -7.5,-1.5 + parent: 4812 + type: Transform + - uid: 1798 + components: + - pos: -5.5,17.5 + parent: 4812 + type: Transform + - uid: 3187 + components: + - pos: 15.5,31.5 + parent: 4812 + type: Transform + - uid: 3290 + components: + - pos: 17.5,21.5 + parent: 4812 + type: Transform + - uid: 3445 + components: + - pos: -38.5,-6.5 + parent: 4812 + type: Transform + - uid: 4500 + components: + - pos: 13.5,-1.5 + parent: 4812 + type: Transform + - uid: 5858 + components: + - pos: 7.5,-14.5 + parent: 4812 + type: Transform + - uid: 5859 + components: + - pos: 29.5,-22.5 + parent: 4812 + type: Transform + - uid: 6430 + components: + - pos: 2.5,-35.5 + parent: 4812 + type: Transform + - uid: 6615 + components: + - pos: -8.5,-16.5 + parent: 4812 + type: Transform + - uid: 7556 + components: + - pos: -12.5,-20.5 + parent: 4812 + type: Transform + - uid: 7618 + components: + - pos: -14.5,-13.5 + parent: 4812 + type: Transform + - uid: 8695 + components: + - pos: -28.5,20.5 + parent: 4812 + type: Transform + - uid: 9008 + components: + - pos: -37.5,-35.5 + parent: 4812 + type: Transform + - uid: 9578 + components: + - pos: -34.5,1.5 + parent: 4812 + type: Transform + - uid: 10835 + components: + - pos: -20.5,-1.5 + parent: 4812 + type: Transform + - uid: 11079 + components: + - pos: 7.5,-38.5 + parent: 4812 + type: Transform + - uid: 11080 + components: + - pos: 10.5,-42.5 + parent: 4812 + type: Transform + - uid: 11082 + components: + - pos: 7.5,-42.5 + parent: 4812 + type: Transform + - uid: 11083 + components: + - pos: 7.5,-34.5 + parent: 4812 + type: Transform + - uid: 11925 + components: + - pos: 6.5,32.5 + parent: 4812 + type: Transform + - uid: 12402 + components: + - pos: 6.5,44.5 + parent: 4812 + type: Transform +- proto: DisposalYJunction + entities: + - uid: 3320 + components: + - pos: 11.5,19.5 + parent: 4812 + type: Transform + - uid: 3342 + components: + - pos: 0.5,-11.5 + parent: 4812 + type: Transform + - uid: 3747 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-2.5 + parent: 4812 + type: Transform + - uid: 6423 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-30.5 + parent: 4812 + type: Transform +- proto: DogBed + entities: + - uid: 2511 + components: + - pos: 5.5,26.5 + parent: 4812 + type: Transform + - uid: 2610 + components: + - name: fox bed + type: MetaData + - pos: -15.5,22.5 + parent: 4812 + type: Transform + - uid: 6646 + components: + - pos: -11.5,-14.5 + parent: 4812 + type: Transform + - uid: 7449 + components: + - name: cat bed + type: MetaData + - pos: -26.5,-25.5 + parent: 4812 + type: Transform + - uid: 8339 + components: + - pos: -35.5,17.5 + parent: 4812 + type: Transform +- proto: DonkpocketBoxSpawner + entities: + - uid: 1571 + components: + - pos: 4.5,-1.5 + parent: 4812 + type: Transform + - uid: 6339 + components: + - pos: 9.5,-19.5 + parent: 4812 + type: Transform + - uid: 8429 + components: + - pos: -39.5,11.5 + parent: 4812 + type: Transform +- proto: DoorElectronics + entities: + - uid: 10716 + components: + - pos: -35.5,-7.5 + parent: 4812 + type: Transform + - uid: 10717 + components: + - pos: -35.344994,-7.7000136 + parent: 4812 + type: Transform +- proto: DoubleEmergencyOxygenTankFilled + entities: + - uid: 12116 + components: + - pos: -42.432724,-2.3473935 + parent: 4812 + type: Transform +- proto: Dresser + entities: + - uid: 744 + components: + - pos: -12.5,29.5 + parent: 4812 + type: Transform + - uid: 1254 + components: + - pos: -17.5,5.5 + parent: 4812 + type: Transform + - uid: 1693 + components: + - pos: -7.5,0.5 + parent: 4812 + type: Transform + - uid: 2501 + components: + - pos: 7.5,29.5 + parent: 4812 + type: Transform + - uid: 5363 + components: + - pos: 19.5,-11.5 + parent: 4812 + type: Transform + - uid: 7035 + components: + - pos: -27.5,-37.5 + parent: 4812 + type: Transform + - uid: 8251 + components: + - pos: -23.5,28.5 + parent: 4812 + type: Transform + - uid: 9046 + components: + - pos: -26.5,-40.5 + parent: 4812 + type: Transform +- proto: DrinkBottleOfNothingFull + entities: + - uid: 1717 + components: + - pos: -10.737676,0.038593292 + parent: 4812 + type: Transform +- proto: DrinkBottleVodka + entities: + - uid: 11783 + components: + - rot: 1.5707963267948966 rad + pos: 27.922853,-32.796886 + parent: 4812 + type: Transform +- proto: DrinkCoffee + entities: + - uid: 1777 + components: + - pos: -2.4777098,-4.2682357 + parent: 4812 + type: Transform +- proto: DrinkColaBottleFull + entities: + - uid: 1780 + components: + - pos: -2.3527098,-2.4557357 + parent: 4812 + type: Transform +- proto: DrinkDetFlask + entities: + - uid: 11806 + components: + - pos: -14.221141,-0.49929333 + parent: 4812 + type: Transform + - uid: 11807 + components: + - pos: 18.44514,-15.833292 + parent: 4812 + type: Transform +- proto: DrinkFlask + entities: + - uid: 2590 + components: + - pos: -13.404404,27.48132 + parent: 4812 + type: Transform +- proto: DrinkFlaskOld + entities: + - uid: 2536 + components: + - pos: 5.505315,29.475674 + parent: 4812 + type: Transform +- proto: DrinkGoldenCup + entities: + - uid: 2713 + components: + - pos: -5.608521,24.832329 + parent: 4812 + type: Transform +- proto: DrinkGoldschlagerBottleFull + entities: + - uid: 2714 + components: + - pos: -5.405396,24.535454 + parent: 4812 + type: Transform +- proto: DrinkHotCoffee + entities: + - uid: 6308 + components: + - pos: 25.471973,-18.414967 + parent: 4812 + type: Transform +- proto: DrinkIcedTeaCan + entities: + - uid: 12372 + components: + - pos: 4.93781,-34.192295 + parent: 4812 + type: Transform +- proto: DrinkLemonLimeCan + entities: + - uid: 1768 + components: + - pos: -2.4722648,6.6801405 + parent: 4812 + type: Transform +- proto: DrinkLithiumFlask + entities: + - uid: 3611 + components: + - pos: -18.350801,33.411205 + parent: 4812 + type: Transform + - uid: 12466 + components: + - pos: -18.56759,33.562008 + parent: 4812 + type: Transform +- proto: DrinkMugBlack + entities: + - uid: 10761 + components: + - pos: -42.456604,-7.331287 + parent: 4812 + type: Transform +- proto: DrinkMugDog + entities: + - uid: 1771 + components: + - pos: -2.4722648,3.4643836 + parent: 4812 + type: Transform +- proto: DrinkMugHeart + entities: + - uid: 10763 + components: + - pos: -41.78473,-7.362537 + parent: 4812 + type: Transform +- proto: DrinkMugMetal + entities: + - uid: 3278 + components: + - pos: 22.59246,12.58923 + parent: 4812 + type: Transform + - uid: 8435 + components: + - pos: -38.614426,12.463839 + parent: 4812 + type: Transform + - uid: 10760 + components: + - pos: -42.56598,-7.518787 + parent: 4812 + type: Transform +- proto: DrinkMugOne + entities: + - uid: 10762 + components: + - pos: -42.25348,-7.487537 + parent: 4812 + type: Transform +- proto: DrinkMugRed + entities: + - uid: 8434 + components: + - pos: -38.3488,12.713839 + parent: 4812 + type: Transform +- proto: DrinkShaker + entities: + - uid: 1654 + components: + - pos: 5.357094,8.658001 + parent: 4812 + type: Transform +- proto: DrinkShinyFlask + entities: + - uid: 8436 + components: + - pos: -36.520676,15.807589 + parent: 4812 + type: Transform +- proto: DrinkVodkaBottleFull + entities: + - uid: 11781 + components: + - pos: 28.500978,-32.265636 + parent: 4812 + type: Transform + - uid: 11782 + components: + - pos: 28.688478,-32.453136 + parent: 4812 + type: Transform +- proto: DrinkWhiskeyBottleFull + entities: + - uid: 11845 + components: + - pos: -7.6193094,12.673876 + parent: 4812 + type: Transform +- proto: DrinkWineBottleFull + entities: + - uid: 7041 + components: + - pos: -13.459903,-33.042583 + parent: 4812 + type: Transform +- proto: Dropper + entities: + - uid: 6638 + components: + - pos: -10.530399,-18.232918 + parent: 4812 + type: Transform +- proto: ElectricGuitarInstrument + entities: + - uid: 1720 + components: + - pos: -10.472051,-1.3051567 + parent: 4812 + type: Transform +- proto: EmergencyLight + entities: + - uid: 8416 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-23.5 + parent: 4812 + type: Transform + - uid: 12093 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,2.5 + parent: 4812 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 12094 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,33.5 + parent: 4812 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 12095 + components: + - pos: 10.5,50.5 + parent: 4812 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 12096 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,23.5 + parent: 4812 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 12097 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-16.5 + parent: 4812 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 12098 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-27.5 + parent: 4812 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 12100 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-40.5 + parent: 4812 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 12102 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-2.5 + parent: 4812 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 12103 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,18.5 + parent: 4812 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 12104 + components: + - pos: -30.5,32.5 + parent: 4812 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight +- proto: EncryptionKeyCargo + entities: + - uid: 4992 + components: + - flags: InContainer + type: MetaData + - parent: 4991 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyCommand + entities: + - uid: 6663 + components: + - flags: InContainer + type: MetaData + - parent: 6662 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyCommon + entities: + - uid: 7268 + components: + - flags: InContainer + type: MetaData + - parent: 7267 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyEngineering + entities: + - uid: 7291 + components: + - flags: InContainer + type: MetaData + - parent: 7290 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyMedicalScience + entities: + - uid: 331 + components: + - flags: InContainer + type: MetaData + - parent: 330 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeySecurity + entities: + - uid: 7248 + components: + - flags: InContainer + type: MetaData + - parent: 7247 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyService + entities: + - uid: 7269 + components: + - flags: InContainer + type: MetaData + - parent: 7267 + type: Transform + - canCollide: False + type: Physics +- proto: ExosuitFabricator + entities: + - uid: 12387 + components: + - pos: 4.5,-28.5 + parent: 4812 + type: Transform +- proto: ExplosivesSignMed + entities: + - uid: 10749 + components: + - pos: -33.5,6.5 + parent: 4812 + type: Transform +- proto: ExtendedEmergencyOxygenTankFilled + entities: + - uid: 11839 + components: + - pos: -6.4474344,14.517626 + parent: 4812 + type: Transform +- proto: ExtinguisherCabinetFilled + entities: + - uid: 1513 + components: + - pos: -6.5,-2.5 + parent: 4812 + type: Transform + - uid: 3270 + components: + - pos: 24.5,17.5 + parent: 4812 + type: Transform + - uid: 4499 + components: + - pos: 10.5,13.5 + parent: 4812 + type: Transform + - uid: 4523 + components: + - pos: 4.5,23.5 + parent: 4812 + type: Transform + - uid: 4524 + components: + - pos: 4.5,30.5 + parent: 4812 + type: Transform + - uid: 4584 + components: + - pos: 20.5,-4.5 + parent: 4812 + type: Transform + - uid: 6485 + components: + - pos: -0.5,-26.5 + parent: 4812 + type: Transform + - uid: 7032 + components: + - pos: -23.5,-32.5 + parent: 4812 + type: Transform + - uid: 7417 + components: + - pos: -7.5,-24.5 + parent: 4812 + type: Transform + - uid: 7418 + components: + - pos: -17.5,-14.5 + parent: 4812 + type: Transform + - uid: 7429 + components: + - pos: -23.5,-27.5 + parent: 4812 + type: Transform + - uid: 8330 + components: + - pos: -21.5,17.5 + parent: 4812 + type: Transform + - uid: 8602 + components: + - pos: -18.5,13.5 + parent: 4812 + type: Transform + - uid: 10710 + components: + - pos: -37.5,-5.5 + parent: 4812 + type: Transform + - uid: 10711 + components: + - pos: -40.5,7.5 + parent: 4812 + type: Transform +- proto: FaxMachineBase + entities: + - uid: 2493 + components: + - pos: 20.5,21.5 + parent: 4812 + type: Transform + - name: Cargo + type: FaxMachine + - uid: 3736 + components: + - pos: -19.5,22.5 + parent: 4812 + type: Transform + - name: HoS Office + type: FaxMachine + - uid: 4856 + components: + - pos: 17.5,31.5 + parent: 4812 + type: Transform + - name: QM's Office + type: FaxMachine + - uid: 4990 + components: + - pos: -6.5,34.5 + parent: 4812 + type: Transform + - name: Bridge + type: FaxMachine + - uid: 7216 + components: + - pos: -1.5,-24.5 + parent: 4812 + type: Transform + - name: Arrivals Secpost + type: FaxMachine + - uid: 7230 + components: + - pos: 6.5,24.5 + parent: 4812 + type: Transform + - name: HoP Office + type: FaxMachine + - uid: 7458 + components: + - pos: -24.5,-25.5 + parent: 4812 + type: Transform + - name: CMO's Office + type: FaxMachine + - uid: 12428 + components: + - pos: -32.5,-15.5 + parent: 4812 + type: Transform + - name: Library + type: FaxMachine +- proto: FaxMachineCaptain + entities: + - uid: 7298 + components: + - pos: -12.5,22.5 + parent: 4812 + type: Transform +- proto: FigureSpawner + entities: + - uid: 7145 + components: + - pos: -27.5,-15.5 + parent: 4812 + type: Transform + - uid: 7146 + components: + - pos: -28.5,-15.5 + parent: 4812 + type: Transform + - uid: 7147 + components: + - pos: -28.5,-14.5 + parent: 4812 + type: Transform + - uid: 7148 + components: + - pos: -27.5,-14.5 + parent: 4812 + type: Transform +- proto: filingCabinet + entities: + - uid: 6441 + components: + - pos: -3.5,-24.5 + parent: 4812 + type: Transform + - uid: 8272 + components: + - pos: -16.5,14.5 + parent: 4812 + type: Transform + - uid: 11840 + components: + - pos: -7.5,14.5 + parent: 4812 + type: Transform +- proto: filingCabinetDrawer + entities: + - uid: 2514 + components: + - pos: 7.5,26.5 + parent: 4812 + type: Transform +- proto: filingCabinetTall + entities: + - uid: 3236 + components: + - pos: 14.5,21.5 + parent: 4812 + type: Transform +- proto: FireAlarm + entities: + - uid: 4961 + components: + - pos: -14.5,-14.5 + parent: 4812 + type: Transform + - devices: + - 5039 + type: DeviceList + - uid: 4979 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-21.5 + parent: 4812 + type: Transform + - devices: + - 6621 + - 5047 + - 6553 + - 8806 + type: DeviceList + - uid: 6781 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-28.5 + parent: 4812 + type: Transform + - uid: 8804 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-29.5 + parent: 4812 + type: Transform + - ShutdownSubscribers: + - 8838 + - 8836 + type: DeviceNetwork + - devices: + - 8805 + - 6621 + - 4920 + - 8838 + - 8836 + type: DeviceList + - uid: 10750 + components: + - pos: -29.5,6.5 + parent: 4812 + type: Transform + - devices: + - 12184 + - 8690 + - 10752 + - 10753 + - 10754 + - 10755 + - 10756 + type: DeviceList + - uid: 12180 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,0.5 + parent: 4812 + type: Transform + - devices: + - 12179 + - 10752 + - 10753 + - 10754 + - 10755 + - 10756 + type: DeviceList + - uid: 12187 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-1.5 + parent: 4812 + type: Transform + - devices: + - 8691 + - 8690 + - 12189 + - 12188 + - 12185 + type: DeviceList + - uid: 12191 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-7.5 + parent: 4812 + type: Transform + - devices: + - 12192 + - 8691 + type: DeviceList + - uid: 12194 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,1.5 + parent: 4812 + type: Transform + - devices: + - 6494 + - 6495 + - 12195 + - 8156 + - 8157 + - 12188 + - 12189 + - 12197 + - 12196 + type: DeviceList + - uid: 12199 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-0.5 + parent: 4812 + type: Transform + - devices: + - 12200 + - 12196 + - 12197 + type: DeviceList + - uid: 12203 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,13.5 + parent: 4812 + type: Transform + - devices: + - 12201 + - 8156 + - 8157 + - 7784 + - 8154 + - 8155 + - 12205 + - 12204 + type: DeviceList + - uid: 12207 + components: + - pos: -19.5,13.5 + parent: 4812 + type: Transform + - devices: + - 12208 + - 12204 + - 12205 + type: DeviceList + - uid: 12210 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,16.5 + parent: 4812 + type: Transform + - devices: + - 12211 + - 12212 + - 7782 + - 7783 + type: DeviceList + - uid: 12217 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,16.5 + parent: 4812 + type: Transform + - devices: + - 12216 + - 12212 + type: DeviceList + - uid: 12221 + components: + - pos: -16.5,21.5 + parent: 4812 + type: Transform + - devices: + - 8155 + - 8154 + - 2693 + - 2695 + - 12222 + type: DeviceList + - uid: 12224 + components: + - pos: -0.5,21.5 + parent: 4812 + type: Transform + - devices: + - 2693 + - 2695 + - 2782 + - 2783 + - 12225 + type: DeviceList + - uid: 12229 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,25.5 + parent: 4812 + type: Transform + - devices: + - 12230 + - 2231 + - 1928 + type: DeviceList + - uid: 12233 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,25.5 + parent: 4812 + type: Transform + - devices: + - 12231 + - 2473 + - 2472 + type: DeviceList + - uid: 12235 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,29.5 + parent: 4812 + type: Transform + - devices: + - 12237 + - 2473 + - 2472 + - 2231 + - 1928 + type: DeviceList + - uid: 12236 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,29.5 + parent: 4812 + type: Transform + - devices: + - 12237 + - 2473 + - 2472 + - 2231 + - 1928 + type: DeviceList + - uid: 12238 + components: + - pos: 7.5,23.5 + parent: 4812 + type: Transform + - devices: + - 1927 + - 2476 + - 963 + - 12239 + type: DeviceList + - uid: 12241 + components: + - pos: 10.5,27.5 + parent: 4812 + type: Transform + - devices: + - 12242 + - 1927 + type: DeviceList + - uid: 12244 + components: + - pos: 10.5,21.5 + parent: 4812 + type: Transform + - devices: + - 12243 + - 2787 + - 2786 + - 2476 + - 963 + - 2783 + - 2782 + type: DeviceList + - uid: 12246 + components: + - pos: 17.5,16.5 + parent: 4812 + type: Transform + - devices: + - 2922 + - 2852 + - 2853 + - 12247 + - 3257 + type: DeviceList + - uid: 12250 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,5.5 + parent: 4812 + type: Transform + - devices: + - 4122 + - 4117 + - 12251 + - 2852 + - 2853 + - 2787 + - 2786 + type: DeviceList + - uid: 12253 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,18.5 + parent: 4812 + type: Transform + - devices: + - 3257 + - 12254 + type: DeviceList + - uid: 12273 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 4812 + type: Transform + - devices: + - 4426 + - 4423 + - 12274 + - 4122 + - 4117 + type: DeviceList + - uid: 12276 + components: + - pos: 20.5,-1.5 + parent: 4812 + type: Transform + - devices: + - 12277 + - 4424 + - 4425 + type: DeviceList + - uid: 12280 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-0.5 + parent: 4812 + type: Transform + - devices: + - 12279 + - 4425 + - 4424 + type: DeviceList + - uid: 12286 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-13.5 + parent: 4812 + type: Transform + - devices: + - 12287 + - 4423 + - 4426 + - 6415 + - 6414 + type: DeviceList + - uid: 12290 + components: + - pos: 3.5,-10.5 + parent: 4812 + type: Transform + - devices: + - 4645 + - 4644 + - 6500 + - 6499 + - 4646 + - 4647 + - 5792 + - 6414 + - 6415 + - 12288 + type: DeviceList + - uid: 12291 + components: + - pos: -27.5,-10.5 + parent: 4812 + type: Transform + - devices: + - 6497 + - 6496 + - 12292 + - 6494 + - 6495 + type: DeviceList + - uid: 12294 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-13.5 + parent: 4812 + type: Transform + - devices: + - 6497 + - 6496 + - 6500 + - 6499 + - 12295 + type: DeviceList + - uid: 12301 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 4812 + type: Transform + - devices: + - 931 + - 932 + - 12300 + - 782 + - 783 + - 784 + - 349 + - 351 + - 361 + - 354 + - 353 + - 352 + - 350 + type: DeviceList + - uid: 12305 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,8.5 + parent: 4812 + type: Transform + - devices: + - 349 + - 351 + - 361 + - 354 + - 353 + - 352 + - 350 + - 12306 + type: DeviceList + - uid: 12310 + components: + - pos: 6.5,1.5 + parent: 4812 + type: Transform + - devices: + - 12309 + - 782 + - 783 + - 784 + type: DeviceList + - uid: 12312 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,13.5 + parent: 4812 + type: Transform + - devices: + - 12313 + - 1940 + - 1939 + - 1938 + type: DeviceList + - uid: 12314 + components: + - pos: -0.5,-20.5 + parent: 4812 + type: Transform + - devices: + - 5308 + - 4644 + - 4645 + - 4646 + - 4647 + - 5791 + - 5793 + - 12315 + - 8783 + - 8803 + - 8779 + - 8778 + - 8711 + - 8591 + - 8758 + - 8770 + - 5028 + - 328 + - 3582 + - 2759 + - 3264 + - 6655 + - 4980 + - 7198 + type: DeviceList + - uid: 12317 + components: + - pos: -9.5,-33.5 + parent: 4812 + type: Transform + - devices: + - 12318 + - 5071 + - 5072 + - 8783 + - 8803 + - 8779 + - 8778 + - 8711 + - 8591 + - 8758 + - 8770 + type: DeviceList + - uid: 12320 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-40.5 + parent: 4812 + type: Transform + - devices: + - 12321 + - 5072 + - 5071 + type: DeviceList + - uid: 12342 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-16.5 + parent: 4812 + type: Transform + - devices: + - 6585 + - 6584 + - 12343 + type: DeviceList + - uid: 12348 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 4812 + type: Transform + - devices: + - 12347 + - 5791 + - 5792 + type: DeviceList + - uid: 12354 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-18.5 + parent: 4812 + type: Transform + - devices: + - 5600 + - 5599 + - 12355 + type: DeviceList +- proto: FireAxeCabinetFilled + entities: + - uid: 6784 + components: + - pos: -40.5,6.5 + parent: 4812 + type: Transform +- proto: FireExtinguisher + entities: + - uid: 3677 + components: + - pos: 3.3851929,50.52095 + parent: 4812 + type: Transform + - uid: 3975 + components: + - pos: 3.6195679,50.3647 + parent: 4812 + type: Transform +- proto: Firelock + entities: + - uid: 1658 + components: + - pos: 4.5,6.5 + parent: 4812 + type: Transform +- proto: FirelockEdge + entities: + - uid: 328 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-22.5 + parent: 4812 + type: Transform + - uid: 332 + components: + - pos: -3.5,-8.5 + parent: 4812 + type: Transform + - uid: 361 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,5.5 + parent: 4812 + type: Transform + - uid: 1097 + components: + - pos: -1.5,-8.5 + parent: 4812 + type: Transform + - uid: 1099 + components: + - rot: 3.141592653589793 rad + pos: -3.5,11.5 + parent: 4812 + type: Transform + - uid: 1100 + components: + - rot: 3.141592653589793 rad + pos: -2.5,11.5 + parent: 4812 + type: Transform + - uid: 1932 + components: + - rot: 3.141592653589793 rad + pos: -1.5,11.5 + parent: 4812 + type: Transform + - uid: 2759 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-21.5 + parent: 4812 + type: Transform + - uid: 3264 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-21.5 + parent: 4812 + type: Transform + - uid: 3582 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-22.5 + parent: 4812 + type: Transform + - uid: 4980 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-21.5 + parent: 4812 + type: Transform + - uid: 4983 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-3.5 + parent: 4812 + type: Transform + - uid: 4999 + components: + - pos: -2.5,-8.5 + parent: 4812 + type: Transform + - uid: 5000 + components: + - pos: -1.5,13.5 + parent: 4812 + type: Transform + - uid: 5001 + components: + - pos: -2.5,13.5 + parent: 4812 + type: Transform + - uid: 5002 + components: + - pos: -3.5,13.5 + parent: 4812 + type: Transform + - uid: 5028 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-21.5 + parent: 4812 + type: Transform + - uid: 6655 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-20.5 + parent: 4812 + type: Transform + - uid: 6667 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-10.5 + parent: 4812 + type: Transform + - uid: 6684 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-2.5 + parent: 4812 + type: Transform + - uid: 7191 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 4812 + type: Transform + - uid: 7198 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-20.5 + parent: 4812 + type: Transform + - uid: 7287 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 4812 + type: Transform + - uid: 7388 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-10.5 + parent: 4812 + type: Transform + - uid: 7391 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-10.5 + parent: 4812 + type: Transform + - uid: 8591 + components: + - pos: -6.5,-32.5 + parent: 4812 + type: Transform + - uid: 8711 + components: + - pos: -5.5,-32.5 + parent: 4812 + type: Transform + - uid: 8758 + components: + - pos: 1.5,-32.5 + parent: 4812 + type: Transform + - uid: 8770 + components: + - pos: 0.5,-32.5 + parent: 4812 + type: Transform + - uid: 8778 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-34.5 + parent: 4812 + type: Transform + - uid: 8779 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-34.5 + parent: 4812 + type: Transform + - uid: 8783 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-34.5 + parent: 4812 + type: Transform + - uid: 8803 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-34.5 + parent: 4812 + type: Transform +- proto: FirelockElectronics + entities: + - uid: 10718 + components: + - pos: -30.464754,-7.2781386 + parent: 4812 + type: Transform +- proto: FirelockGlass + entities: + - uid: 349 + components: + - pos: 2.5,4.5 + parent: 4812 + type: Transform + - uid: 350 + components: + - pos: 1.5,9.5 + parent: 4812 + type: Transform + - uid: 351 + components: + - pos: 3.5,4.5 + parent: 4812 + type: Transform + - uid: 352 + components: + - pos: 1.5,8.5 + parent: 4812 + type: Transform + - uid: 353 + components: + - pos: 1.5,7.5 + parent: 4812 + type: Transform + - uid: 354 + components: + - pos: 1.5,6.5 + parent: 4812 + type: Transform + - uid: 782 + components: + - pos: 1.5,-2.5 + parent: 4812 + type: Transform + - uid: 783 + components: + - pos: 1.5,-1.5 + parent: 4812 + type: Transform + - uid: 784 + components: + - pos: 1.5,-0.5 + parent: 4812 + type: Transform + - uid: 930 + components: + - pos: -6.5,-7.5 + parent: 4812 + type: Transform + - uid: 931 + components: + - pos: -6.5,-6.5 + parent: 4812 + type: Transform + - uid: 932 + components: + - pos: -6.5,-5.5 + parent: 4812 + type: Transform + - uid: 963 + components: + - pos: 5.5,21.5 + parent: 4812 + type: Transform + - uid: 1927 + components: + - pos: 9.5,23.5 + parent: 4812 + type: Transform + - uid: 1928 + components: + - pos: -8.5,27.5 + parent: 4812 + type: Transform + - uid: 1938 + components: + - pos: -3.5,15.5 + parent: 4812 + type: Transform + - uid: 1939 + components: + - pos: -2.5,15.5 + parent: 4812 + type: Transform + - uid: 1940 + components: + - pos: -1.5,15.5 + parent: 4812 + type: Transform + - uid: 1941 + components: + - pos: 9.5,5.5 + parent: 4812 + type: Transform + - uid: 1942 + components: + - pos: -12.5,9.5 + parent: 4812 + type: Transform + - uid: 1943 + components: + - pos: -16.5,-3.5 + parent: 4812 + type: Transform + - uid: 2231 + components: + - pos: -7.5,27.5 + parent: 4812 + type: Transform + - uid: 2472 + components: + - pos: 3.5,27.5 + parent: 4812 + type: Transform + - uid: 2473 + components: + - pos: 2.5,27.5 + parent: 4812 + type: Transform + - uid: 2476 + components: + - pos: 9.5,21.5 + parent: 4812 + type: Transform + - uid: 2693 + components: + - pos: -9.5,19.5 + parent: 4812 + type: Transform + - uid: 2695 + components: + - pos: -9.5,20.5 + parent: 4812 + type: Transform + - uid: 2782 + components: + - pos: 4.5,19.5 + parent: 4812 + type: Transform + - uid: 2783 + components: + - pos: 4.5,20.5 + parent: 4812 + type: Transform + - uid: 2786 + components: + - pos: 11.5,16.5 + parent: 4812 + type: Transform + - uid: 2787 + components: + - pos: 12.5,16.5 + parent: 4812 + type: Transform + - uid: 2852 + components: + - pos: 13.5,14.5 + parent: 4812 + type: Transform + - uid: 2853 + components: + - pos: 13.5,15.5 + parent: 4812 + type: Transform + - uid: 2922 + components: + - pos: 21.5,15.5 + parent: 4812 + type: Transform + - uid: 3257 + components: + - pos: 15.5,16.5 + parent: 4812 + type: Transform + - uid: 3361 + components: + - pos: 12.5,25.5 + parent: 4812 + type: Transform + - uid: 4117 + components: + - pos: 12.5,0.5 + parent: 4812 + type: Transform + - uid: 4122 + components: + - pos: 11.5,0.5 + parent: 4812 + type: Transform + - uid: 4423 + components: + - pos: 12.5,-10.5 + parent: 4812 + type: Transform + - uid: 4424 + components: + - pos: 23.5,-3.5 + parent: 4812 + type: Transform + - uid: 4425 + components: + - pos: 23.5,-2.5 + parent: 4812 + type: Transform + - uid: 4426 + components: + - pos: 11.5,-10.5 + parent: 4812 + type: Transform + - uid: 4435 + components: + - pos: 28.5,1.5 + parent: 4812 + type: Transform + - uid: 4436 + components: + - pos: 28.5,-6.5 + parent: 4812 + type: Transform + - uid: 4525 + components: + - pos: 18.5,5.5 + parent: 4812 + type: Transform + - uid: 4543 + components: + - pos: 16.5,-7.5 + parent: 4812 + type: Transform + - uid: 4544 + components: + - pos: 20.5,-7.5 + parent: 4812 + type: Transform + - uid: 4644 + components: + - pos: -5.5,-14.5 + parent: 4812 + type: Transform + - uid: 4645 + components: + - pos: -6.5,-14.5 + parent: 4812 + type: Transform + - uid: 4646 + components: + - pos: 0.5,-14.5 + parent: 4812 + type: Transform + - uid: 4647 + components: + - pos: 1.5,-14.5 + parent: 4812 + type: Transform + - uid: 4920 + components: + - pos: -12.5,-24.5 + parent: 4812 + type: Transform + - uid: 5039 + components: + - pos: -15.5,-19.5 + parent: 4812 + type: Transform + - uid: 5045 + components: + - pos: -19.5,-19.5 + parent: 4812 + type: Transform + - uid: 5047 + components: + - pos: -13.5,-22.5 + parent: 4812 + type: Transform + - uid: 5071 + components: + - pos: -11.5,-36.5 + parent: 4812 + type: Transform + - uid: 5072 + components: + - pos: -10.5,-36.5 + parent: 4812 + type: Transform + - uid: 5308 + components: + - pos: -4.5,-27.5 + parent: 4812 + type: Transform + - uid: 5599 + components: + - pos: 9.5,-22.5 + parent: 4812 + type: Transform + - uid: 5600 + components: + - pos: 8.5,-22.5 + parent: 4812 + type: Transform + - uid: 5791 + components: + - pos: 2.5,-15.5 + parent: 4812 + type: Transform + - uid: 5792 + components: + - pos: 4.5,-13.5 + parent: 4812 + type: Transform + - uid: 5793 + components: + - pos: 2.5,-23.5 + parent: 4812 + type: Transform + - uid: 6414 + components: + - pos: 6.5,-12.5 + parent: 4812 + type: Transform + - uid: 6415 + components: + - pos: 6.5,-11.5 + parent: 4812 + type: Transform + - uid: 6494 + components: + - pos: -25.5,-10.5 + parent: 4812 + type: Transform + - uid: 6495 + components: + - pos: -26.5,-10.5 + parent: 4812 + type: Transform + - uid: 6496 + components: + - pos: -21.5,-11.5 + parent: 4812 + type: Transform + - uid: 6497 + components: + - pos: -21.5,-12.5 + parent: 4812 + type: Transform + - uid: 6499 + components: + - pos: -11.5,-11.5 + parent: 4812 + type: Transform + - uid: 6500 + components: + - pos: -11.5,-12.5 + parent: 4812 + type: Transform + - uid: 6553 + components: + - pos: -13.5,-21.5 + parent: 4812 + type: Transform + - uid: 6584 + components: + - pos: -9.5,-13.5 + parent: 4812 + type: Transform + - uid: 6585 + components: + - pos: -11.5,-19.5 + parent: 4812 + type: Transform + - uid: 6621 + components: + - pos: -16.5,-24.5 + parent: 4812 + type: Transform + - uid: 6629 + components: + - pos: -19.5,-13.5 + parent: 4812 + type: Transform + - uid: 6676 + components: + - pos: -7.5,31.5 + parent: 4812 + type: Transform + - uid: 6764 + components: + - pos: -8.5,31.5 + parent: 4812 + type: Transform + - uid: 7343 + components: + - pos: 1.5,29.5 + parent: 4812 + type: Transform + - uid: 7344 + components: + - pos: 2.5,31.5 + parent: 4812 + type: Transform + - uid: 7346 + components: + - pos: 3.5,31.5 + parent: 4812 + type: Transform + - uid: 7347 + components: + - pos: -6.5,29.5 + parent: 4812 + type: Transform + - uid: 7782 + components: + - pos: -26.5,12.5 + parent: 4812 + type: Transform + - uid: 7783 + components: + - pos: -25.5,12.5 + parent: 4812 + type: Transform + - uid: 7784 + components: + - pos: -24.5,11.5 + parent: 4812 + type: Transform + - uid: 8154 + components: + - pos: -23.5,15.5 + parent: 4812 + type: Transform + - uid: 8155 + components: + - pos: -22.5,15.5 + parent: 4812 + type: Transform + - uid: 8156 + components: + - pos: -26.5,6.5 + parent: 4812 + type: Transform + - uid: 8157 + components: + - pos: -25.5,6.5 + parent: 4812 + type: Transform + - uid: 8690 + components: + - pos: -30.5,0.5 + parent: 4812 + type: Transform + - uid: 8691 + components: + - pos: -30.5,-4.5 + parent: 4812 + type: Transform + - uid: 10581 + components: + - pos: -20.5,-30.5 + parent: 4812 + type: Transform + - uid: 10591 + components: + - pos: -39.5,-31.5 + parent: 4812 + type: Transform + - uid: 10592 + components: + - pos: -37.5,-20.5 + parent: 4812 + type: Transform + - uid: 10616 + components: + - pos: -40.5,-22.5 + parent: 4812 + type: Transform + - uid: 10617 + components: + - pos: -41.5,-22.5 + parent: 4812 + type: Transform + - uid: 10752 + components: + - pos: -37.5,1.5 + parent: 4812 + type: Transform + - uid: 10753 + components: + - pos: -37.5,2.5 + parent: 4812 + type: Transform + - uid: 10754 + components: + - pos: -37.5,3.5 + parent: 4812 + type: Transform + - uid: 10755 + components: + - pos: -37.5,4.5 + parent: 4812 + type: Transform + - uid: 10756 + components: + - pos: -37.5,5.5 + parent: 4812 + type: Transform + - uid: 10901 + components: + - pos: -33.5,-12.5 + parent: 4812 + type: Transform + - uid: 10902 + components: + - pos: -33.5,-11.5 + parent: 4812 + type: Transform + - uid: 11259 + components: + - pos: 5.5,-30.5 + parent: 4812 + type: Transform + - uid: 11364 + components: + - pos: 23.5,-33.5 + parent: 4812 + type: Transform + - uid: 11365 + components: + - pos: 23.5,-32.5 + parent: 4812 + type: Transform + - uid: 11793 + components: + - pos: 26.5,-29.5 + parent: 4812 + type: Transform + - uid: 12188 + components: + - pos: -28.5,-2.5 + parent: 4812 + type: Transform + - uid: 12189 + components: + - pos: -28.5,-1.5 + parent: 4812 + type: Transform + - uid: 12196 + components: + - pos: -24.5,1.5 + parent: 4812 + type: Transform + - uid: 12197 + components: + - pos: -24.5,2.5 + parent: 4812 + type: Transform + - uid: 12204 + components: + - pos: -21.5,9.5 + parent: 4812 + type: Transform + - uid: 12205 + components: + - pos: -21.5,10.5 + parent: 4812 + type: Transform + - uid: 12212 + components: + - pos: -32.5,15.5 + parent: 4812 + type: Transform +- proto: Fireplace + entities: + - uid: 2581 + components: + - pos: -13.5,29.5 + parent: 4812 + type: Transform +- proto: Flash + entities: + - uid: 2679 + components: + - pos: -1.4420605,35.49948 + parent: 4812 + type: Transform + - uid: 3964 + components: + - pos: 11.496426,48.542255 + parent: 4812 + type: Transform + - uid: 6247 + components: + - pos: 16.572206,-27.496618 + parent: 4812 + type: Transform + - uid: 8451 + components: + - pos: -30.484182,10.599279 + parent: 4812 + type: Transform +- proto: FlashlightLantern + entities: + - uid: 6364 + components: + - pos: -42.568504,-1.8948193 + parent: 4812 + type: Transform + - uid: 8597 + components: + - pos: -19.531754,10.050615 + parent: 4812 + type: Transform + - containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 8598 + components: + - pos: -18.563004,10.206865 + parent: 4812 + type: Transform + - containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 11673 + components: + - pos: 25.480742,-40.49962 + parent: 4812 + type: Transform + - containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 12487 + components: + - pos: -42.55288,-2.0198193 + parent: 4812 + type: Transform + - uid: 12488 + components: + - pos: -32.540565,-7.207951 + parent: 4812 + type: Transform + - uid: 12489 + components: + - pos: -32.540565,-7.411076 + parent: 4812 + type: Transform + - uid: 12490 + components: + - pos: -19.610077,12.664663 + parent: 4812 + type: Transform + - uid: 12491 + components: + - pos: -19.516327,12.555288 + parent: 4812 + type: Transform +- proto: FlashlightSeclite + entities: + - uid: 8450 + components: + - pos: -28.562307,10.614904 + parent: 4812 + type: Transform + - containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: Floodlight + entities: + - uid: 11744 + components: + - pos: 19.532274,-41.53536 + parent: 4812 + type: Transform + - canCollide: False + type: Physics + - containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: FloorDrain + entities: + - uid: 2490 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,29.5 + parent: 4812 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 2491 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,30.5 + parent: 4812 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 3383 + components: + - pos: -21.5,-8.5 + parent: 4812 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 3465 + components: + - pos: 5.5,-6.5 + parent: 4812 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 4458 + components: + - pos: 16.5,6.5 + parent: 4812 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 7383 + components: + - pos: -10.5,-16.5 + parent: 4812 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 7446 + components: + - pos: -19.5,-17.5 + parent: 4812 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 8245 + components: + - pos: -19.5,29.5 + parent: 4812 + type: Transform + - fixtures: {} + type: Fixtures +- proto: FloorTileItemGold + entities: + - uid: 10471 + components: + - pos: -57.41745,-9.4886875 + parent: 4812 + type: Transform + - uid: 11746 + components: + - pos: -57.41745,-9.4886875 + parent: 4812 + type: Transform + - uid: 11747 + components: + - pos: -57.41745,-9.4886875 + parent: 4812 + type: Transform + - uid: 11748 + components: + - pos: -57.41745,-9.4886875 + parent: 4812 + type: Transform + - uid: 11749 + components: + - pos: -57.41745,-9.4886875 + parent: 4812 + type: Transform + - uid: 11750 + components: + - pos: -57.41745,-9.4886875 + parent: 4812 + type: Transform + - uid: 11751 + components: + - pos: -57.41745,-9.4886875 + parent: 4812 + type: Transform + - uid: 11752 + components: + - pos: -57.41745,-9.4886875 + parent: 4812 + type: Transform + - uid: 11753 + components: + - pos: -57.41745,-9.4886875 + parent: 4812 + type: Transform + - uid: 11754 + components: + - pos: -57.41745,-9.4886875 + parent: 4812 + type: Transform + - uid: 11755 + components: + - pos: -57.41745,-9.4886875 + parent: 4812 + type: Transform + - uid: 11756 + components: + - pos: -57.41745,-9.4886875 + parent: 4812 + type: Transform + - uid: 11757 + components: + - pos: -57.41745,-9.4886875 + parent: 4812 + type: Transform + - uid: 11758 + components: + - pos: -57.41745,-9.4886875 + parent: 4812 + type: Transform + - uid: 11759 + components: + - pos: -57.41745,-9.4886875 + parent: 4812 + type: Transform + - uid: 11760 + components: + - pos: -57.41745,-9.4886875 + parent: 4812 + type: Transform + - uid: 11761 + components: + - pos: -57.41745,-9.4886875 + parent: 4812 + type: Transform + - uid: 11762 + components: + - pos: -57.41745,-9.4886875 + parent: 4812 + type: Transform + - uid: 11763 + components: + - pos: -57.41745,-9.4886875 + parent: 4812 + type: Transform + - uid: 11764 + components: + - pos: -57.41745,-9.4886875 + parent: 4812 + type: Transform + - uid: 11765 + components: + - pos: -57.41745,-9.4886875 + parent: 4812 + type: Transform + - uid: 11766 + components: + - pos: -57.41745,-9.4886875 + parent: 4812 + type: Transform + - uid: 11767 + components: + - pos: -57.41745,-9.4886875 + parent: 4812 + type: Transform + - uid: 11768 + components: + - pos: -57.41745,-9.4886875 + parent: 4812 + type: Transform + - uid: 11769 + components: + - pos: -57.41745,-9.4886875 + parent: 4812 + type: Transform + - uid: 11770 + components: + - pos: -57.41745,-9.4886875 + parent: 4812 + type: Transform + - uid: 11771 + components: + - pos: -57.41745,-9.4886875 + parent: 4812 + type: Transform + - uid: 11772 + components: + - pos: -57.41745,-9.4886875 + parent: 4812 + type: Transform +- proto: FloorTileItemShuttleWhite + entities: + - uid: 10961 + components: + - pos: -35.581154,26.501883 + parent: 4812 + type: Transform + - uid: 10962 + components: + - pos: -35.581154,26.501883 + parent: 4812 + type: Transform + - uid: 10981 + components: + - pos: -35.581154,26.501883 + parent: 4812 + type: Transform + - uid: 12430 + components: + - pos: -35.581154,26.501883 + parent: 4812 + type: Transform + - uid: 12431 + components: + - pos: -35.581154,26.501883 + parent: 4812 + type: Transform + - uid: 12432 + components: + - pos: -35.581154,26.501883 + parent: 4812 + type: Transform + - uid: 12433 + components: + - pos: -35.581154,26.501883 + parent: 4812 + type: Transform + - uid: 12434 + components: + - pos: -35.581154,26.501883 + parent: 4812 + type: Transform + - uid: 12435 + components: + - pos: -35.581154,26.501883 + parent: 4812 + type: Transform + - uid: 12436 + components: + - pos: -35.581154,26.501883 + parent: 4812 + type: Transform + - uid: 12437 + components: + - pos: -35.581154,26.501883 + parent: 4812 + type: Transform + - uid: 12438 + components: + - pos: -35.581154,26.501883 + parent: 4812 + type: Transform + - uid: 12439 + components: + - pos: -35.581154,26.501883 + parent: 4812 + type: Transform + - uid: 12440 + components: + - pos: -35.581154,26.501883 + parent: 4812 + type: Transform + - uid: 12441 + components: + - pos: -35.581154,26.501883 + parent: 4812 + type: Transform + - uid: 12442 + components: + - pos: -35.581154,26.501883 + parent: 4812 + type: Transform + - uid: 12443 + components: + - pos: -35.581154,26.501883 + parent: 4812 + type: Transform + - uid: 12444 + components: + - pos: -35.581154,26.501883 + parent: 4812 + type: Transform + - uid: 12445 + components: + - pos: -35.581154,26.501883 + parent: 4812 + type: Transform + - uid: 12446 + components: + - pos: -35.581154,26.501883 + parent: 4812 + type: Transform + - uid: 12447 + components: + - pos: -35.581154,26.501883 + parent: 4812 + type: Transform + - uid: 12448 + components: + - pos: -35.581154,26.501883 + parent: 4812 + type: Transform + - uid: 12449 + components: + - pos: -35.581154,26.501883 + parent: 4812 + type: Transform + - uid: 12450 + components: + - pos: -35.581154,26.501883 + parent: 4812 + type: Transform + - uid: 12451 + components: + - pos: -35.581154,26.501883 + parent: 4812 + type: Transform + - uid: 12452 + components: + - pos: -35.581154,26.501883 + parent: 4812 + type: Transform + - uid: 12453 + components: + - pos: -35.581154,26.517508 + parent: 4812 + type: Transform + - uid: 12454 + components: + - pos: -35.581154,26.517508 + parent: 4812 + type: Transform + - uid: 12455 + components: + - pos: -35.581154,26.517508 + parent: 4812 + type: Transform + - uid: 12456 + components: + - pos: -35.581154,26.517508 + parent: 4812 + type: Transform +- proto: FlyAmanitaSeeds + entities: + - uid: 9620 + components: + - pos: -43.497864,-29.674786 + parent: 4812 + type: Transform +- proto: FoodBanana + entities: + - uid: 1708 + components: + - pos: -10.643926,0.9448434 + parent: 4812 + type: Transform + - uid: 1709 + components: + - pos: -10.425176,0.9292184 + parent: 4812 + type: Transform + - uid: 1710 + components: + - pos: -10.253301,0.8979684 + parent: 4812 + type: Transform +- proto: FoodBowlBigTrash + entities: + - uid: 11242 + components: + - pos: 10.485162,-37.493214 + parent: 4812 + type: Transform + - uid: 11243 + components: + - pos: 10.469537,-36.29009 + parent: 4812 + type: Transform +- proto: FoodBoxDonut + entities: + - uid: 8367 + components: + - pos: -26.5,10.5 + parent: 4812 + type: Transform +- proto: FoodBreadBaguette + entities: + - uid: 1716 + components: + - pos: -10.518926,-0.4614067 + parent: 4812 + type: Transform +- proto: FoodBreadMoldySlice + entities: + - uid: 7042 + components: + - pos: -18.50604,-35.186176 + parent: 4812 + type: Transform +- proto: FoodBurgerMime + entities: + - uid: 1721 + components: + - pos: -10.581426,-0.9614067 + parent: 4812 + type: Transform +- proto: FoodBurgerRobot + entities: + - uid: 3675 + components: + - pos: 5.460861,44.505184 + parent: 4812 + type: Transform + - uid: 11960 + components: + - pos: -14.514471,15.4569435 + parent: 4812 + type: Transform +- proto: FoodCakeSuppermatterSlice + entities: + - uid: 10997 + components: + - pos: 8.455962,31.413256 + parent: 4812 + type: Transform +- proto: FoodCartCold + entities: + - uid: 1572 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 4812 + type: Transform +- proto: FoodCartHot + entities: + - uid: 3952 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 4812 + type: Transform +- proto: FoodCondimentBottleEnzyme + entities: + - uid: 1643 + components: + - pos: 7.2863007,0.7877493 + parent: 4812 + type: Transform + - uid: 1644 + components: + - pos: 7.4581757,0.6939993 + parent: 4812 + type: Transform +- proto: FoodCondimentPacketPepper + entities: + - uid: 1773 + components: + - pos: -2.6753898,2.5728736 + parent: 4812 + type: Transform + - solution: food + type: RefillableSolution + - uid: 1779 + components: + - pos: -2.3370848,-3.5807357 + parent: 4812 + type: Transform + - solution: food + type: RefillableSolution +- proto: FoodCondimentPacketSalt + entities: + - uid: 1772 + components: + - pos: -2.3003898,9.296319 + parent: 4812 + type: Transform + - solution: food + type: RefillableSolution +- proto: FoodMeatCrab + entities: + - uid: 12371 + components: + - desc: name's fokkin JOE RIPPA YA DOG + name: joe rippa + type: MetaData + - pos: 4.56281,-34.161045 + parent: 4812 + type: Transform +- proto: FoodPieBananaCream + entities: + - uid: 1711 + components: + - pos: -10.659551,0.5229684 + parent: 4812 + type: Transform + - uid: 1712 + components: + - pos: -10.409551,0.5073434 + parent: 4812 + type: Transform +- proto: FoodPizzaSassysageSlice + entities: + - uid: 10765 + components: + - pos: -43.00348,-7.268787 + parent: 4812 + type: Transform +- proto: FoodPlateTrash + entities: + - uid: 11241 + components: + - pos: 9.469537,-39.368214 + parent: 4812 + type: Transform +- proto: FoodSnackCheesie + entities: + - uid: 1775 + components: + - pos: -2.4566398,1.6822487 + parent: 4812 + type: Transform +- proto: FoodSnackChips + entities: + - uid: 1776 + components: + - pos: -2.4620848,-1.5182357 + parent: 4812 + type: Transform + - uid: 6410 + components: + - pos: -4.4655905,-19.449863 + parent: 4812 + type: Transform +- proto: FoodTartGapple + entities: + - uid: 2735 + components: + - pos: 0.5300851,22.660454 + parent: 4812 + type: Transform +- proto: Fork + entities: + - uid: 1769 + components: + - pos: -2.5347648,9.4457655 + parent: 4812 + type: Transform + - uid: 1778 + components: + - pos: -2.6495848,-3.5494857 + parent: 4812 + type: Transform +- proto: GasAnalyzer + entities: + - uid: 6318 + components: + - pos: 24.527384,-25.4941 + parent: 4812 + type: Transform + - uid: 6322 + components: + - pos: 24.418009,-25.447226 + parent: 4812 + type: Transform +- proto: GasFilter + entities: + - uid: 3737 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-27.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasFilterFlipped + entities: + - uid: 9169 + components: + - pos: -47.5,1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9170 + components: + - pos: -47.5,3.5 + parent: 4812 + type: Transform + - uid: 9171 + components: + - pos: -47.5,5.5 + parent: 4812 + type: Transform + - uid: 9172 + components: + - pos: -47.5,7.5 + parent: 4812 + type: Transform + - uid: 9173 + components: + - pos: -47.5,9.5 + parent: 4812 + type: Transform + - uid: 9174 + components: + - pos: -47.5,11.5 + parent: 4812 + type: Transform +- proto: GasMinerCarbonDioxide + entities: + - uid: 9452 + components: + - pos: -52.5,5.5 + parent: 4812 + type: Transform +- proto: GasMinerNitrogen + entities: + - uid: 9449 + components: + - pos: -52.5,1.5 + parent: 4812 + type: Transform +- proto: GasMinerOxygen + entities: + - uid: 9451 + components: + - pos: -52.5,3.5 + parent: 4812 + type: Transform +- proto: GasMinerPlasma + entities: + - uid: 9456 + components: + - pos: -52.5,9.5 + parent: 4812 + type: Transform +- proto: GasMinerWaterVapor + entities: + - uid: 9454 + components: + - pos: -52.5,7.5 + parent: 4812 + type: Transform +- proto: GasMixerFlipped + entities: + - uid: 8550 + components: + - pos: -45.5,5.5 + parent: 4812 + type: Transform + - uid: 8552 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,2.5 + parent: 4812 + type: Transform + - inletTwoConcentration: 0.22000003 + inletOneConcentration: 0.78 + type: GasMixer + - color: '#03FDC3FF' + type: AtmosPipeColor + - uid: 9236 + components: + - pos: -45.5,8.5 + parent: 4812 + type: Transform + - uid: 9237 + components: + - pos: -45.5,10.5 + parent: 4812 + type: Transform + - uid: 9247 + components: + - pos: -45.5,6.5 + parent: 4812 + type: Transform + - uid: 9261 + components: + - pos: -45.5,12.5 + parent: 4812 + type: Transform +- proto: GasOutletInjector + entities: + - uid: 4002 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-30.5 + parent: 4812 + type: Transform + - uid: 4445 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,1.5 + parent: 4812 + type: Transform + - uid: 4446 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,3.5 + parent: 4812 + type: Transform + - uid: 4478 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,5.5 + parent: 4812 + type: Transform + - uid: 4479 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,7.5 + parent: 4812 + type: Transform + - uid: 4497 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,9.5 + parent: 4812 + type: Transform + - uid: 4826 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,11.5 + parent: 4812 + type: Transform +- proto: GasPassiveGate + entities: + - uid: 5801 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-19.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8979 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-33.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasPassiveVent + entities: + - uid: 862 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-7.5 + parent: 4812 + type: Transform + - uid: 863 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-7.5 + parent: 4812 + type: Transform + - uid: 3817 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,46.5 + parent: 4812 + type: Transform + - uid: 5596 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-28.5 + parent: 4812 + type: Transform + - uid: 9005 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-37.5 + parent: 4812 + type: Transform + - uid: 9168 + components: + - pos: -49.5,-0.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9199 + components: + - rot: 3.141592653589793 rad + pos: -53.5,1.5 + parent: 4812 + type: Transform + - uid: 9200 + components: + - rot: 3.141592653589793 rad + pos: -53.5,3.5 + parent: 4812 + type: Transform + - uid: 9201 + components: + - rot: 3.141592653589793 rad + pos: -53.5,5.5 + parent: 4812 + type: Transform + - uid: 9202 + components: + - rot: 3.141592653589793 rad + pos: -53.5,7.5 + parent: 4812 + type: Transform + - uid: 9203 + components: + - rot: 3.141592653589793 rad + pos: -53.5,9.5 + parent: 4812 + type: Transform + - uid: 9204 + components: + - rot: 3.141592653589793 rad + pos: -53.5,11.5 + parent: 4812 + type: Transform + - uid: 9264 + components: + - pos: -47.5,14.5 + parent: 4812 + type: Transform + - uid: 9494 + components: + - pos: -45.5,16.5 + parent: 4812 + type: Transform + - uid: 9495 + components: + - pos: -43.5,16.5 + parent: 4812 + type: Transform +- proto: GasPipeBend + entities: + - uid: 560 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,7.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 561 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,7.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 563 + components: + - pos: 11.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 705 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,8.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 708 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 709 + components: + - pos: 12.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 831 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 833 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 834 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 850 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-9.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 856 + components: + - pos: -16.5,-8.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 861 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 4812 + type: Transform + - uid: 876 + components: + - pos: -8.5,4.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1508 + components: + - pos: -21.5,-4.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1683 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1684 + components: + - pos: -21.5,1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1787 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,27.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2008 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,33.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2009 + components: + - pos: 3.5,33.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2054 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,32.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2055 + components: + - pos: 2.5,32.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2849 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,24.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2850 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,25.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2861 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,26.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2967 + components: + - pos: 24.5,15.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3018 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,26.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3706 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3744 + components: + - rot: 3.141592653589793 rad + pos: -33.5,0.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3746 + components: + - pos: -32.5,0.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3803 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,46.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3808 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,50.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3809 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,50.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3836 + components: + - pos: 9.5,50.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3837 + components: + - rot: 3.141592653589793 rad + pos: 8.5,50.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3840 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,45.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4204 + components: + - pos: 28.5,-3.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4209 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-7.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4213 + components: + - pos: 28.5,-7.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4227 + components: + - pos: 25.5,4.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4892 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4893 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-22.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4940 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-23.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5129 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-35.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5178 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-34.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5725 + components: + - pos: 21.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5732 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-22.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5736 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-25.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5737 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-26.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5804 + components: + - pos: 14.5,-17.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6624 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-22.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6628 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-23.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6651 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-26.5 + parent: 4812 + type: Transform + - uid: 6783 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-28.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6829 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-36.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7272 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-28.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7285 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-30.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 7847 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,24.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8557 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,10.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8561 + components: + - pos: -18.5,9.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8953 + components: + - pos: -10.5,-30.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8970 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-33.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8987 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-33.5 + parent: 4812 + type: Transform + - uid: 9004 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-35.5 + parent: 4812 + type: Transform + - uid: 9038 + components: + - pos: -33.5,-36.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9117 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,6.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9120 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,8.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9121 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,12.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9125 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9128 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9133 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9155 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,0.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 9156 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 9165 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,-1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 9166 + components: + - rot: 3.141592653589793 rad + pos: -49.5,-1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 9254 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,5.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9535 + components: + - rot: 3.141592653589793 rad + pos: -43.5,8.5 + parent: 4812 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11972 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-7.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11983 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-7.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasPipeFourway + entities: + - uid: 402 + components: + - pos: -3.5,-7.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 428 + components: + - pos: -3.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 431 + components: + - pos: -3.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 445 + components: + - pos: -5.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 566 + components: + - pos: -1.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 583 + components: + - pos: -1.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 664 + components: + - pos: -25.5,-4.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2945 + components: + - pos: 19.5,14.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2960 + components: + - pos: 15.5,15.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2978 + components: + - pos: 15.5,26.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3804 + components: + - pos: 11.5,46.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4156 + components: + - pos: 24.5,-3.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5086 + components: + - pos: 0.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5111 + components: + - pos: -6.5,-22.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5189 + components: + - pos: -10.5,-35.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5565 + components: + - pos: 9.5,-20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7276 + components: + - pos: -16.5,-22.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8764 + components: + - pos: -30.5,-2.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12010 + components: + - pos: -49.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12011 + components: + - pos: -48.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 251 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 252 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 253 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 254 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 368 + components: + - pos: -3.5,18.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 369 + components: + - pos: -3.5,17.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 370 + components: + - pos: -3.5,16.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 371 + components: + - pos: -3.5,15.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 372 + components: + - pos: -3.5,14.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 374 + components: + - pos: -3.5,12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 375 + components: + - pos: -3.5,11.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 377 + components: + - pos: -3.5,9.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 378 + components: + - pos: -3.5,8.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 379 + components: + - pos: -3.5,7.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 380 + components: + - pos: -3.5,6.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 381 + components: + - pos: -3.5,5.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 382 + components: + - pos: -3.5,4.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 383 + components: + - pos: -3.5,3.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 385 + components: + - pos: -3.5,1.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 386 + components: + - pos: -3.5,0.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 388 + components: + - pos: -3.5,-1.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 389 + components: + - pos: -3.5,-2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 390 + components: + - pos: -3.5,-3.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 391 + components: + - pos: -3.5,-4.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 392 + components: + - pos: -3.5,-5.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 393 + components: + - pos: -3.5,-6.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 395 + components: + - pos: -3.5,-8.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 396 + components: + - pos: -3.5,-9.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 397 + components: + - pos: -3.5,-10.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 398 + components: + - pos: -1.5,-10.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 399 + components: + - pos: -1.5,-9.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 400 + components: + - pos: -1.5,-8.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 401 + components: + - pos: -1.5,-7.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 403 + components: + - pos: -1.5,-5.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 404 + components: + - pos: -1.5,-4.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 405 + components: + - pos: -1.5,-3.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 406 + components: + - pos: -1.5,-2.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 408 + components: + - pos: -1.5,-0.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 409 + components: + - pos: -1.5,0.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 410 + components: + - pos: -1.5,1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 411 + components: + - pos: -1.5,2.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 412 + components: + - pos: -1.5,3.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 414 + components: + - pos: -1.5,5.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 415 + components: + - pos: -1.5,6.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 416 + components: + - pos: -1.5,7.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 419 + components: + - pos: -1.5,10.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 420 + components: + - pos: -1.5,11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 421 + components: + - pos: -1.5,12.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 422 + components: + - pos: -1.5,13.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 424 + components: + - pos: -1.5,15.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 425 + components: + - pos: -1.5,16.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 426 + components: + - pos: -1.5,17.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 427 + components: + - pos: -1.5,18.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 430 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 432 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 433 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 434 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 435 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 436 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 437 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 438 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 439 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 440 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 442 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 443 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 444 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 446 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 447 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 448 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 449 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 450 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-11.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 451 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 452 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 453 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 455 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 456 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 457 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 458 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 459 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 460 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 461 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 462 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 463 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 465 + components: + - pos: -25.5,-10.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 466 + components: + - pos: -25.5,-9.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 467 + components: + - pos: -25.5,-8.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 468 + components: + - pos: -25.5,-7.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 469 + components: + - pos: -25.5,-6.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 470 + components: + - pos: -25.5,-5.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 472 + components: + - pos: -25.5,-3.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 474 + components: + - pos: -25.5,-1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 475 + components: + - pos: -25.5,-0.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 476 + components: + - pos: -25.5,0.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 478 + components: + - pos: -25.5,2.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 479 + components: + - pos: -25.5,3.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 480 + components: + - pos: -25.5,4.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 481 + components: + - pos: -25.5,5.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 482 + components: + - pos: -25.5,6.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 484 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,7.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 485 + components: + - rot: 3.141592653589793 rad + pos: -22.5,8.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 487 + components: + - rot: 3.141592653589793 rad + pos: -22.5,10.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 488 + components: + - rot: 3.141592653589793 rad + pos: -22.5,11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 489 + components: + - rot: 3.141592653589793 rad + pos: -22.5,12.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 491 + components: + - rot: 3.141592653589793 rad + pos: -22.5,14.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 492 + components: + - rot: 3.141592653589793 rad + pos: -22.5,15.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 493 + components: + - rot: 3.141592653589793 rad + pos: -22.5,16.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 494 + components: + - rot: 3.141592653589793 rad + pos: -22.5,17.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 495 + components: + - rot: 3.141592653589793 rad + pos: -22.5,18.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 497 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 498 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 499 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 500 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 501 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 502 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 503 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 504 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 505 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 507 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 508 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 509 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 511 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 512 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 514 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 515 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 516 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 517 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 518 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 520 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 521 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 522 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 524 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 525 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 526 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 528 + components: + - pos: 11.5,18.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 529 + components: + - pos: 11.5,17.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 530 + components: + - pos: 11.5,16.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 531 + components: + - pos: 11.5,15.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 533 + components: + - pos: 11.5,13.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 534 + components: + - pos: 11.5,12.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 535 + components: + - pos: 11.5,11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 536 + components: + - pos: 11.5,10.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 537 + components: + - pos: 11.5,9.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 538 + components: + - pos: 11.5,8.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 541 + components: + - pos: 11.5,5.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 542 + components: + - pos: 11.5,4.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 543 + components: + - pos: 11.5,3.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 544 + components: + - pos: 11.5,2.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 545 + components: + - pos: 11.5,1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 546 + components: + - pos: 11.5,0.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 547 + components: + - pos: 11.5,-0.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 549 + components: + - pos: 11.5,-2.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 551 + components: + - pos: 11.5,-4.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 552 + components: + - pos: 11.5,-5.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 553 + components: + - pos: 11.5,-6.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 554 + components: + - pos: 11.5,-7.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 555 + components: + - pos: 11.5,-8.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 556 + components: + - pos: 11.5,-9.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 557 + components: + - pos: 11.5,-10.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 564 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-11.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 567 + components: + - pos: -3.5,19.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 568 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 569 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 571 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 572 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 573 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 575 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 576 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 577 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 578 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 580 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 581 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 582 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 584 + components: + - rot: 3.141592653589793 rad + pos: 12.5,18.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 585 + components: + - rot: 3.141592653589793 rad + pos: 12.5,17.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 586 + components: + - rot: 3.141592653589793 rad + pos: 12.5,16.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 588 + components: + - rot: 3.141592653589793 rad + pos: 12.5,14.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 589 + components: + - rot: 3.141592653589793 rad + pos: 12.5,13.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 590 + components: + - rot: 3.141592653589793 rad + pos: 12.5,12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 591 + components: + - rot: 3.141592653589793 rad + pos: 12.5,11.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 592 + components: + - rot: 3.141592653589793 rad + pos: 12.5,10.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 593 + components: + - rot: 3.141592653589793 rad + pos: 12.5,9.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 595 + components: + - rot: 3.141592653589793 rad + pos: 12.5,7.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 596 + components: + - rot: 3.141592653589793 rad + pos: 12.5,6.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 597 + components: + - rot: 3.141592653589793 rad + pos: 12.5,5.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 598 + components: + - rot: 3.141592653589793 rad + pos: 12.5,4.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 599 + components: + - rot: 3.141592653589793 rad + pos: 12.5,3.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 601 + components: + - rot: 3.141592653589793 rad + pos: 12.5,1.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 602 + components: + - rot: 3.141592653589793 rad + pos: 12.5,0.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 603 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-0.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 604 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-1.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 606 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-3.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 607 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-4.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 608 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-5.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 609 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-6.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 610 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-7.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 612 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-9.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 613 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-10.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 614 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-11.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 615 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 616 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 619 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 620 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 621 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 622 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 623 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 624 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 626 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 627 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 628 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 629 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 630 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 631 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 633 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 634 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 635 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 636 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 637 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 638 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 639 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 640 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 641 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 644 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 646 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 647 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 648 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-11.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 649 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 650 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 652 + components: + - pos: -26.5,-11.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 653 + components: + - pos: -26.5,-10.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 654 + components: + - pos: -26.5,-9.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 655 + components: + - pos: -26.5,-8.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 656 + components: + - pos: -26.5,-7.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 657 + components: + - pos: -26.5,-6.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 658 + components: + - pos: -26.5,-5.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 659 + components: + - pos: -26.5,-4.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 660 + components: + - pos: -26.5,-3.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 661 + components: + - pos: -26.5,-2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 663 + components: + - pos: -26.5,-0.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 665 + components: + - pos: -26.5,1.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 667 + components: + - pos: -26.5,3.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 668 + components: + - pos: -26.5,4.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 669 + components: + - pos: -26.5,5.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 670 + components: + - pos: -26.5,6.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 671 + components: + - pos: -26.5,7.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 672 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,8.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 673 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,8.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 674 + components: + - rot: 3.141592653589793 rad + pos: -23.5,9.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 676 + components: + - rot: 3.141592653589793 rad + pos: -23.5,11.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 677 + components: + - rot: 3.141592653589793 rad + pos: -23.5,12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 678 + components: + - rot: 3.141592653589793 rad + pos: -23.5,13.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 680 + components: + - rot: 3.141592653589793 rad + pos: -23.5,15.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 683 + components: + - rot: 3.141592653589793 rad + pos: -23.5,18.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 684 + components: + - rot: 3.141592653589793 rad + pos: -23.5,19.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 685 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 686 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 687 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 688 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 689 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 690 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 691 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 692 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 693 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 695 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 696 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 697 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 698 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 700 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 701 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 702 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 703 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 789 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-10.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 790 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-9.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 791 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 792 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 793 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 794 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-7.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 795 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 796 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-7.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 798 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-7.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 799 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-7.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 800 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-7.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 801 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-7.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 802 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-7.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 803 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-7.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 804 + components: + - pos: -17.5,-8.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 807 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-10.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 809 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 810 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 811 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 812 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 813 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 821 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 822 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 823 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 824 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 825 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 826 + components: + - rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 827 + components: + - rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 828 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 829 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 830 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 836 + components: + - pos: 4.5,-4.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 837 + components: + - pos: 4.5,-5.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 839 + components: + - rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 840 + components: + - rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 841 + components: + - rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 842 + components: + - rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 844 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 845 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,7.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 851 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-9.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 852 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-9.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 853 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-9.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 854 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-9.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 855 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-9.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 866 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 867 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 868 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 869 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 872 + components: + - rot: 3.141592653589793 rad + pos: -8.5,0.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 873 + components: + - rot: 3.141592653589793 rad + pos: -8.5,1.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 874 + components: + - rot: 3.141592653589793 rad + pos: -8.5,2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 875 + components: + - rot: 3.141592653589793 rad + pos: -8.5,3.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 878 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,8.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 879 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,8.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 880 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,8.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 881 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,8.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 882 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,8.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 883 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,8.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 884 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,8.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1502 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-10.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1503 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-9.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1505 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-4.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1506 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-4.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1507 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-4.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1509 + components: + - pos: -21.5,-5.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1510 + components: + - pos: -21.5,-6.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1680 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1681 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1682 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1785 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,25.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1786 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,27.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1808 + components: + - pos: 6.5,18.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1809 + components: + - pos: 6.5,17.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1810 + components: + - pos: 8.5,19.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1811 + components: + - pos: 8.5,18.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1812 + components: + - pos: 8.5,17.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1815 + components: + - pos: -0.5,19.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1835 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,24.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1847 + components: + - pos: -1.5,20.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1848 + components: + - pos: -1.5,21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1849 + components: + - pos: -1.5,22.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1850 + components: + - pos: -3.5,21.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1851 + components: + - pos: -3.5,22.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1984 + components: + - rot: 3.141592653589793 rad + pos: -8.5,21.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1987 + components: + - rot: 3.141592653589793 rad + pos: -8.5,24.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1988 + components: + - rot: 3.141592653589793 rad + pos: -8.5,25.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1989 + components: + - rot: 3.141592653589793 rad + pos: -8.5,26.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1990 + components: + - rot: 3.141592653589793 rad + pos: -8.5,27.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1991 + components: + - rot: 3.141592653589793 rad + pos: -8.5,28.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1993 + components: + - rot: 3.141592653589793 rad + pos: -8.5,30.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1994 + components: + - rot: 3.141592653589793 rad + pos: -8.5,31.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1995 + components: + - rot: 3.141592653589793 rad + pos: -8.5,32.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1996 + components: + - rot: 3.141592653589793 rad + pos: 3.5,21.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1998 + components: + - rot: 3.141592653589793 rad + pos: 3.5,23.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1999 + components: + - rot: 3.141592653589793 rad + pos: 3.5,24.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2001 + components: + - rot: 3.141592653589793 rad + pos: 3.5,26.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2002 + components: + - rot: 3.141592653589793 rad + pos: 3.5,27.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2003 + components: + - rot: 3.141592653589793 rad + pos: 3.5,28.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2005 + components: + - rot: 3.141592653589793 rad + pos: 3.5,30.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2006 + components: + - rot: 3.141592653589793 rad + pos: 3.5,31.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2007 + components: + - rot: 3.141592653589793 rad + pos: 3.5,32.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2010 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,33.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2011 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,33.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2013 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,33.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2014 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,33.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2015 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,33.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2016 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,33.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2017 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,33.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2019 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,33.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2020 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,33.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2021 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,32.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2023 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,32.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2024 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,32.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2025 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,32.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2026 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,32.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2027 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,32.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2029 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,32.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2030 + components: + - rot: 3.141592653589793 rad + pos: -7.5,31.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2031 + components: + - rot: 3.141592653589793 rad + pos: -7.5,30.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2032 + components: + - rot: 3.141592653589793 rad + pos: -7.5,29.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2033 + components: + - rot: 3.141592653589793 rad + pos: -7.5,28.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2034 + components: + - rot: 3.141592653589793 rad + pos: -7.5,27.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2036 + components: + - rot: 3.141592653589793 rad + pos: -7.5,25.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2038 + components: + - rot: 3.141592653589793 rad + pos: -7.5,23.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2039 + components: + - rot: 3.141592653589793 rad + pos: -7.5,22.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2040 + components: + - rot: 3.141592653589793 rad + pos: -7.5,21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2041 + components: + - rot: 3.141592653589793 rad + pos: -7.5,20.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2042 + components: + - rot: 3.141592653589793 rad + pos: 2.5,20.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2043 + components: + - rot: 3.141592653589793 rad + pos: 2.5,21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2044 + components: + - rot: 3.141592653589793 rad + pos: 2.5,22.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2045 + components: + - rot: 3.141592653589793 rad + pos: 2.5,23.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2047 + components: + - rot: 3.141592653589793 rad + pos: 2.5,25.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2049 + components: + - rot: 3.141592653589793 rad + pos: 2.5,27.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2050 + components: + - rot: 3.141592653589793 rad + pos: 2.5,28.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2051 + components: + - rot: 3.141592653589793 rad + pos: 2.5,29.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2052 + components: + - rot: 3.141592653589793 rad + pos: 2.5,30.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2053 + components: + - rot: 3.141592653589793 rad + pos: 2.5,31.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2057 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,25.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2058 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,25.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2059 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,25.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2060 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,25.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2061 + components: + - rot: 3.141592653589793 rad + pos: 8.5,26.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2062 + components: + - rot: 3.141592653589793 rad + pos: 8.5,27.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 2063 + components: + - rot: 3.141592653589793 rad + pos: 8.5,28.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2064 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,24.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 2066 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,24.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2067 + components: + - rot: 3.141592653589793 rad + pos: 6.5,25.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2068 + components: + - rot: 3.141592653589793 rad + pos: 6.5,26.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2069 + components: + - rot: 3.141592653589793 rad + pos: 6.5,27.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2070 + components: + - rot: 3.141592653589793 rad + pos: 6.5,28.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2420 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,23.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2421 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,23.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2422 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,23.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2423 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,23.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2425 + components: + - rot: 3.141592653589793 rad + pos: -13.5,24.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2426 + components: + - rot: 3.141592653589793 rad + pos: -13.5,25.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2427 + components: + - rot: 3.141592653589793 rad + pos: -13.5,26.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 2428 + components: + - rot: 3.141592653589793 rad + pos: -13.5,27.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2431 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,24.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2432 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,24.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 2433 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,24.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2434 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,24.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2436 + components: + - pos: -12.5,25.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2437 + components: + - pos: -12.5,26.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 2438 + components: + - pos: -12.5,27.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2943 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,15.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2944 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,15.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2946 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,15.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2947 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,15.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2948 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,15.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2949 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,15.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2950 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,15.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2951 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,15.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 2952 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,15.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2953 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,14.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2954 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,14.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2955 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,14.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2956 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,14.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2957 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,14.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2958 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,14.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2959 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,14.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2961 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,14.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2962 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,14.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2964 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,15.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2968 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,14.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 2970 + components: + - rot: 3.141592653589793 rad + pos: 15.5,16.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2971 + components: + - rot: 3.141592653589793 rad + pos: 15.5,17.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2973 + components: + - rot: 3.141592653589793 rad + pos: 15.5,19.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2975 + components: + - rot: 3.141592653589793 rad + pos: 15.5,21.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2976 + components: + - rot: 3.141592653589793 rad + pos: 15.5,22.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2977 + components: + - rot: 3.141592653589793 rad + pos: 15.5,23.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2979 + components: + - rot: 3.141592653589793 rad + pos: 15.5,25.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2981 + components: + - rot: 3.141592653589793 rad + pos: 15.5,27.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2982 + components: + - rot: 3.141592653589793 rad + pos: 15.5,28.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2984 + components: + - rot: 3.141592653589793 rad + pos: 19.5,15.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2985 + components: + - rot: 3.141592653589793 rad + pos: 19.5,16.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2986 + components: + - rot: 3.141592653589793 rad + pos: 19.5,17.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2988 + components: + - rot: 3.141592653589793 rad + pos: 19.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2990 + components: + - rot: 3.141592653589793 rad + pos: 19.5,21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2991 + components: + - rot: 3.141592653589793 rad + pos: 19.5,22.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 2992 + components: + - rot: 3.141592653589793 rad + pos: 19.5,23.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2993 + components: + - rot: 3.141592653589793 rad + pos: 19.5,24.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2996 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,25.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2997 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,25.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2998 + components: + - pos: 16.5,26.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2999 + components: + - pos: 16.5,27.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3000 + components: + - pos: 16.5,28.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 3002 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,24.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3003 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,24.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3004 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,24.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3005 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,24.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3008 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,26.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3009 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,26.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3010 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,26.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3025 + components: + - pos: 15.5,14.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3382 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-0.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3407 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-0.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3707 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3743 + components: + - pos: -32.5,-0.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3796 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,46.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3797 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,46.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 3799 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,46.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 3800 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,46.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3801 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,46.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3802 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,46.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 3805 + components: + - pos: 11.5,47.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 3806 + components: + - pos: 11.5,48.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3807 + components: + - pos: 11.5,49.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3810 + components: + - rot: 3.141592653589793 rad + pos: 7.5,45.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3811 + components: + - rot: 3.141592653589793 rad + pos: 11.5,45.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3812 + components: + - rot: 3.141592653589793 rad + pos: 11.5,44.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3819 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,44.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 3820 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,44.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 3821 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,44.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3822 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,44.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3825 + components: + - rot: 3.141592653589793 rad + pos: 9.5,46.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3826 + components: + - rot: 3.141592653589793 rad + pos: 9.5,47.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 3827 + components: + - rot: 3.141592653589793 rad + pos: 9.5,48.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3828 + components: + - rot: 3.141592653589793 rad + pos: 9.5,49.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3829 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,45.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3830 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,45.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3831 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,45.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3833 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,45.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4009 + components: + - pos: -19.5,-15.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4011 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-13.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4144 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4145 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4146 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4147 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4148 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4149 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4151 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4152 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4153 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4154 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4155 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4157 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4158 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4159 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-3.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4160 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4161 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-3.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4162 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-3.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4163 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-3.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4165 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-3.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4166 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-3.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4167 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-3.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4168 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-3.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4169 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-3.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4170 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-3.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4172 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-3.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4173 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-3.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4174 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-3.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4175 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,0.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4176 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,0.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4177 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4178 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4179 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-5.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4180 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-5.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4181 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-7.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4182 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-7.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4187 + components: + - pos: 30.5,-6.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4188 + components: + - pos: 30.5,-4.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4189 + components: + - pos: 30.5,-3.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4191 + components: + - pos: 30.5,-1.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4192 + components: + - pos: 30.5,1.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4194 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4195 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4202 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-0.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4207 + components: + - pos: 24.5,-5.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4208 + components: + - pos: 24.5,-6.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4210 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-7.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4211 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-7.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4212 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-7.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4215 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-2.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4216 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4217 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-0.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4218 + components: + - rot: 3.141592653589793 rad + pos: 24.5,0.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4219 + components: + - rot: 3.141592653589793 rad + pos: 24.5,1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4220 + components: + - rot: 3.141592653589793 rad + pos: 24.5,2.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4222 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-0.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4223 + components: + - rot: 3.141592653589793 rad + pos: 25.5,0.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4224 + components: + - rot: 3.141592653589793 rad + pos: 25.5,1.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4225 + components: + - rot: 3.141592653589793 rad + pos: 25.5,2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4228 + components: + - pos: 25.5,3.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4229 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,4.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4230 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,4.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4459 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,6.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4460 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,6.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4461 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,6.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4462 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,8.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4463 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,8.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4648 + components: + - pos: -5.5,-12.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4842 + components: + - pos: -16.5,-25.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4857 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-22.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4858 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-22.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4861 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-30.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4862 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-30.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4871 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-16.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4872 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-16.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4873 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-18.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4874 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-17.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4877 + components: + - pos: -19.5,-14.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4889 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-17.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4891 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4933 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-30.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4934 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-30.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4938 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-23.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4939 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-23.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4943 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-20.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4944 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4962 + components: + - pos: -16.5,-23.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4963 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-22.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4964 + components: + - pos: -16.5,-26.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4966 + components: + - pos: -16.5,-24.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4987 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-23.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4989 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-22.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4993 + components: + - pos: -19.5,-21.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5003 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-23.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5005 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-16.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5007 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-17.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5013 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5020 + components: + - pos: -24.5,-26.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5021 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-22.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5022 + components: + - pos: -24.5,-25.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5023 + components: + - pos: -26.5,-23.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5077 + components: + - pos: -6.5,-13.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5078 + components: + - pos: -6.5,-14.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5079 + components: + - pos: -6.5,-15.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5080 + components: + - pos: -6.5,-16.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5081 + components: + - pos: -6.5,-17.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5082 + components: + - pos: -6.5,-18.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5083 + components: + - pos: -6.5,-19.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5084 + components: + - pos: -6.5,-20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5085 + components: + - pos: -6.5,-21.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5087 + components: + - pos: -6.5,-23.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5088 + components: + - pos: -6.5,-24.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5089 + components: + - pos: -6.5,-25.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5090 + components: + - pos: -6.5,-26.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5091 + components: + - pos: -6.5,-27.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5092 + components: + - pos: -6.5,-28.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5093 + components: + - pos: -6.5,-29.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5094 + components: + - pos: -6.5,-30.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5095 + components: + - pos: -6.5,-31.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5097 + components: + - pos: -6.5,-33.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5098 + components: + - pos: -6.5,-34.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5099 + components: + - pos: 1.5,-34.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5100 + components: + - pos: 1.5,-33.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5102 + components: + - pos: 1.5,-31.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5103 + components: + - pos: 1.5,-30.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5104 + components: + - pos: 1.5,-29.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5105 + components: + - pos: 1.5,-28.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5106 + components: + - pos: 1.5,-27.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5107 + components: + - pos: 1.5,-26.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5108 + components: + - pos: 1.5,-25.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5109 + components: + - pos: 1.5,-24.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5110 + components: + - pos: 1.5,-23.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5112 + components: + - pos: 1.5,-21.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5114 + components: + - pos: 1.5,-19.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5115 + components: + - pos: 1.5,-18.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5116 + components: + - pos: 1.5,-17.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5117 + components: + - pos: 1.5,-16.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5118 + components: + - pos: 1.5,-15.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5119 + components: + - pos: 1.5,-14.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5120 + components: + - pos: 1.5,-13.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5122 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-35.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5123 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-35.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5124 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-35.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5125 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-35.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5127 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-35.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5128 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-35.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5130 + components: + - pos: -5.5,-13.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5131 + components: + - pos: -5.5,-14.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5132 + components: + - pos: -5.5,-15.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5133 + components: + - pos: -5.5,-16.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5134 + components: + - pos: -5.5,-17.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5135 + components: + - pos: -5.5,-18.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5136 + components: + - pos: -5.5,-19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5137 + components: + - pos: -5.5,-20.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5139 + components: + - pos: -5.5,-22.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5140 + components: + - pos: -5.5,-23.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5141 + components: + - pos: -5.5,-24.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5143 + components: + - pos: -5.5,-26.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5144 + components: + - pos: -5.5,-27.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5145 + components: + - pos: -5.5,-28.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5146 + components: + - pos: -5.5,-29.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5147 + components: + - pos: -5.5,-30.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5149 + components: + - pos: -5.5,-32.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5150 + components: + - pos: -5.5,-33.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5151 + components: + - pos: 0.5,-33.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5152 + components: + - pos: 0.5,-32.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5154 + components: + - pos: 0.5,-30.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5155 + components: + - pos: 0.5,-29.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5156 + components: + - pos: 0.5,-28.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5157 + components: + - pos: 0.5,-27.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5158 + components: + - pos: 0.5,-26.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5159 + components: + - pos: 0.5,-25.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5160 + components: + - pos: 0.5,-24.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5161 + components: + - pos: 0.5,-23.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5162 + components: + - pos: 0.5,-22.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5164 + components: + - pos: 0.5,-20.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5165 + components: + - pos: 0.5,-19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5166 + components: + - pos: 0.5,-18.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5167 + components: + - pos: 0.5,-17.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5168 + components: + - pos: 0.5,-16.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5169 + components: + - pos: 0.5,-15.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5170 + components: + - pos: 0.5,-14.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5171 + components: + - pos: 0.5,-13.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5172 + components: + - pos: 0.5,-12.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5173 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-34.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5175 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-34.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5176 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-34.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5177 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-34.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5180 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-35.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5181 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-35.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5182 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-35.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5183 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-34.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5184 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-34.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5185 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-34.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5186 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-34.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5187 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-34.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5190 + components: + - pos: -10.5,-36.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5191 + components: + - pos: -10.5,-37.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5192 + components: + - pos: -10.5,-38.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5193 + components: + - pos: -10.5,-39.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5194 + components: + - pos: -10.5,-40.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5196 + components: + - pos: -10.5,-42.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5197 + components: + - pos: -10.5,-43.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5198 + components: + - pos: -10.5,-44.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5199 + components: + - pos: -10.5,-45.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5200 + components: + - pos: -10.5,-46.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5201 + components: + - pos: -10.5,-47.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5202 + components: + - pos: -10.5,-48.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5203 + components: + - pos: -10.5,-49.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5204 + components: + - pos: -11.5,-35.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5205 + components: + - pos: -11.5,-36.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5206 + components: + - pos: -11.5,-37.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5207 + components: + - pos: -11.5,-38.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5208 + components: + - pos: -11.5,-39.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5209 + components: + - pos: -11.5,-40.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5210 + components: + - pos: -11.5,-41.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5212 + components: + - pos: -11.5,-43.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5213 + components: + - pos: -11.5,-44.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5214 + components: + - pos: -11.5,-45.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5215 + components: + - pos: -11.5,-46.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5216 + components: + - pos: -11.5,-47.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5217 + components: + - pos: -11.5,-48.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5218 + components: + - pos: -11.5,-49.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5219 + components: + - pos: -11.5,-50.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5220 + components: + - pos: -10.5,-50.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5221 + components: + - pos: -10.5,-51.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5391 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-21.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5394 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-22.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5476 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-18.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5564 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-26.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5566 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-26.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5585 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-28.5 + parent: 4812 + type: Transform + - uid: 5586 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-30.5 + parent: 4812 + type: Transform + - uid: 5587 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-30.5 + parent: 4812 + type: Transform + - uid: 5588 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-28.5 + parent: 4812 + type: Transform + - uid: 5589 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-28.5 + parent: 4812 + type: Transform + - uid: 5590 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-30.5 + parent: 4812 + type: Transform + - uid: 5628 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5632 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5633 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5634 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5636 + components: + - pos: 9.5,-18.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5637 + components: + - pos: 9.5,-17.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5638 + components: + - pos: 9.5,-16.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5639 + components: + - pos: 9.5,-15.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5640 + components: + - pos: 9.5,-14.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5641 + components: + - pos: 9.5,-13.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5642 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5643 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5645 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5646 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5647 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5648 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5649 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5650 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5651 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5652 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5653 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5654 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-21.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5655 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-22.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5656 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-23.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5657 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-24.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5658 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5659 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5661 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5662 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5663 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5664 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5666 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5667 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-12.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5668 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-13.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5669 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-14.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5670 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-15.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5671 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-16.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5672 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-17.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5674 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5675 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-20.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5677 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5678 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5679 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5681 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5682 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5683 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5684 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5685 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5686 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5688 + components: + - pos: 4.5,-19.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5689 + components: + - pos: 4.5,-18.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5690 + components: + - pos: 5.5,-21.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5691 + components: + - pos: 5.5,-22.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5692 + components: + - pos: 5.5,-23.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5693 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-22.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5694 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-23.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5695 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5696 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-18.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5701 + components: + - pos: 3.5,-20.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5702 + components: + - pos: 8.5,-22.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5703 + components: + - pos: 8.5,-23.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5704 + components: + - pos: 8.5,-24.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5705 + components: + - pos: 8.5,-25.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5708 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-25.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5709 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-25.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5710 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-26.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5711 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-26.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5712 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-26.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5713 + components: + - pos: 9.5,-26.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5720 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5721 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5722 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-21.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5723 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-22.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5724 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-23.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5727 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-22.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5728 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-22.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5729 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-22.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5730 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-22.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5731 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-22.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5733 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5739 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-24.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5740 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-25.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5741 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-25.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5742 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-25.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5743 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-25.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5744 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-25.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5745 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-25.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5746 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-25.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5747 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-25.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5748 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-25.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5749 + components: + - pos: 21.5,-25.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5750 + components: + - pos: 21.5,-24.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5751 + components: + - pos: 21.5,-23.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5752 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-26.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5753 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-26.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5754 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-26.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5755 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-26.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5756 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-26.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5758 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-26.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5759 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-26.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5760 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-26.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5799 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-20.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5800 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 6293 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-22.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6336 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-22.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6384 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-30.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 6418 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-12.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6442 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6443 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6444 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6445 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6446 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6447 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-22.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6448 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-22.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6449 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-22.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6450 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-22.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6451 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-22.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6452 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-22.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6453 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-22.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6454 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-31.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6456 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-31.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6457 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-31.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6458 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-31.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6459 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-32.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6460 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-32.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6463 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-32.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6464 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-32.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6465 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-32.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6466 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-25.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6467 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-25.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6468 + components: + - pos: -2.5,-31.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6469 + components: + - pos: -2.5,-30.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6470 + components: + - pos: -2.5,-29.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6484 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-30.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 6548 + components: + - pos: -26.5,-24.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 6550 + components: + - pos: -26.5,-25.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6558 + components: + - pos: -17.5,-23.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6571 + components: + - pos: -29.5,22.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6623 + components: + - pos: -17.5,-22.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6631 + components: + - pos: -24.5,-24.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 6632 + components: + - pos: -30.5,22.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6656 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-27.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6657 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-27.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6665 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-24.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6677 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-22.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6691 + components: + - pos: -19.5,-20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6786 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-27.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6794 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-22.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6806 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-35.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6807 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-35.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 6808 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-35.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6809 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-35.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6810 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-35.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6811 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-35.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6812 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-35.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6813 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-35.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6815 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-35.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 6816 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-35.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6817 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-35.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6819 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-35.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6820 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-35.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 6822 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-34.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6823 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-34.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6824 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-34.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6825 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-34.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6826 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-34.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6827 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-34.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6830 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-35.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6831 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-36.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6832 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-36.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6833 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-36.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6835 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-36.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6836 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-36.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6837 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-36.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6843 + components: + - pos: -8.5,-25.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6896 + components: + - pos: -10.5,-23.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6897 + components: + - pos: -10.5,-24.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 7059 + components: + - pos: -19.5,-19.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7078 + components: + - pos: -24.5,-12.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7079 + components: + - pos: -24.5,-13.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7080 + components: + - pos: -24.5,-14.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7081 + components: + - pos: -24.5,-15.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7082 + components: + - pos: -24.5,-16.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7083 + components: + - pos: -25.5,-13.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7084 + components: + - pos: -25.5,-14.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7085 + components: + - pos: -25.5,-15.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7086 + components: + - pos: -25.5,-16.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7190 + components: + - pos: -19.5,-18.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7200 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-26.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 7201 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-28.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7225 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-27.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7226 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-26.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7233 + components: + - pos: -19.5,-16.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7240 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-27.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7252 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-23.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7253 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7256 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-22.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7262 + components: + - pos: -17.5,-24.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 7278 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7279 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7303 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7304 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7306 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7307 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7309 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-22.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7310 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-22.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7324 + components: + - pos: -10.5,-25.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7326 + components: + - pos: -8.5,-23.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7327 + components: + - pos: -8.5,-22.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7329 + components: + - pos: -8.5,-24.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 7374 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-21.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7375 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-19.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7376 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-18.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7377 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 7378 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-18.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7464 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-28.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7797 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-28.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7807 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,13.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7808 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,13.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7809 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,13.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7810 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,13.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7811 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,13.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7812 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,13.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7813 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,14.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7814 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,14.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7815 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,14.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7816 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,14.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7817 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,14.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7820 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,13.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7821 + components: + - rot: 3.141592653589793 rad + pos: -29.5,13.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7822 + components: + - rot: 3.141592653589793 rad + pos: -30.5,14.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7824 + components: + - rot: 3.141592653589793 rad + pos: -29.5,16.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7827 + components: + - rot: 3.141592653589793 rad + pos: -29.5,19.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7829 + components: + - rot: 3.141592653589793 rad + pos: -29.5,21.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7831 + components: + - rot: 3.141592653589793 rad + pos: -29.5,23.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7834 + components: + - rot: 3.141592653589793 rad + pos: -30.5,17.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7837 + components: + - rot: 3.141592653589793 rad + pos: -30.5,20.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7838 + components: + - rot: 3.141592653589793 rad + pos: -30.5,21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7840 + components: + - rot: 3.141592653589793 rad + pos: -30.5,23.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7841 + components: + - rot: 3.141592653589793 rad + pos: -30.5,24.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7842 + components: + - rot: 3.141592653589793 rad + pos: -30.5,25.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7843 + components: + - rot: 3.141592653589793 rad + pos: -30.5,26.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7844 + components: + - rot: 3.141592653589793 rad + pos: -30.5,27.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7845 + components: + - rot: 3.141592653589793 rad + pos: -30.5,28.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7846 + components: + - rot: 3.141592653589793 rad + pos: -30.5,29.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7848 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,24.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7849 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,24.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7851 + components: + - rot: 3.141592653589793 rad + pos: -26.5,25.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7852 + components: + - rot: 3.141592653589793 rad + pos: -26.5,26.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7853 + components: + - rot: 3.141592653589793 rad + pos: -26.5,27.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7854 + components: + - rot: 3.141592653589793 rad + pos: -26.5,28.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7855 + components: + - rot: 3.141592653589793 rad + pos: -26.5,29.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7861 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,17.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7862 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,17.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 7863 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,16.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7864 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,16.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7865 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,16.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7866 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7867 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7868 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7869 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7870 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 7877 + components: + - rot: 3.141592653589793 rad + pos: -29.5,11.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7880 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,10.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7881 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7882 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7883 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7884 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,10.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7885 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,10.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 7888 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,10.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7889 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,10.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 7890 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,10.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7891 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,10.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7892 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7893 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7894 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7897 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7898 + components: + - pos: -35.5,11.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7899 + components: + - pos: -34.5,12.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7900 + components: + - pos: -35.5,12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7901 + components: + - pos: -35.5,13.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 7902 + components: + - pos: -35.5,14.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7903 + components: + - pos: -34.5,13.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7904 + components: + - pos: -34.5,14.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8225 + components: + - pos: -22.5,20.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8226 + components: + - pos: -22.5,21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8228 + components: + - pos: -22.5,23.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8229 + components: + - pos: -22.5,24.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8230 + components: + - pos: -22.5,25.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8231 + components: + - pos: -22.5,26.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8232 + components: + - pos: -23.5,21.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8233 + components: + - pos: -23.5,22.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8234 + components: + - pos: -23.5,23.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8235 + components: + - pos: -23.5,24.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8237 + components: + - pos: -23.5,26.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8297 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,16.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8298 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,16.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8299 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,16.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8312 + components: + - pos: -13.5,19.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8313 + components: + - pos: -13.5,18.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8314 + components: + - pos: -13.5,17.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8315 + components: + - pos: -11.5,18.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8316 + components: + - pos: -11.5,17.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8551 + components: + - pos: -45.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8553 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,10.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8554 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,10.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8555 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,10.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8556 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,10.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8558 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,9.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8559 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,9.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8560 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,9.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8759 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-1.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8760 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-1.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8761 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-1.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8762 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-1.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8763 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-1.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8765 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-2.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8766 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-2.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8767 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-2.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8768 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-2.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8769 + components: + - pos: -30.5,-1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8771 + components: + - pos: -30.5,0.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8774 + components: + - pos: -30.5,-3.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8775 + components: + - pos: -30.5,-4.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8776 + components: + - pos: -30.5,-5.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8780 + components: + - pos: -33.5,-4.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8781 + components: + - pos: -33.5,-5.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8782 + components: + - pos: -33.5,-6.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8785 + components: + - pos: -33.5,1.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8865 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-36.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8946 + components: + - pos: -10.5,-34.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8950 + components: + - pos: -10.5,-33.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8951 + components: + - pos: -10.5,-32.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8952 + components: + - pos: -10.5,-31.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8954 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-30.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8955 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-30.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8956 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-30.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8957 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-30.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8958 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-30.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8959 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-30.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8960 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-30.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8961 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-30.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8962 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-30.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8963 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-30.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8964 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-30.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8965 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-30.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8966 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-30.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8977 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-31.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8978 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-32.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8980 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-33.5 + parent: 4812 + type: Transform + - uid: 8981 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-33.5 + parent: 4812 + type: Transform + - uid: 8983 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-33.5 + parent: 4812 + type: Transform + - uid: 8985 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-33.5 + parent: 4812 + type: Transform + - uid: 8986 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-33.5 + parent: 4812 + type: Transform + - uid: 8988 + components: + - pos: -36.5,-34.5 + parent: 4812 + type: Transform + - uid: 8989 + components: + - pos: -36.5,-35.5 + parent: 4812 + type: Transform + - uid: 8995 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-34.5 + parent: 4812 + type: Transform + - uid: 8996 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-34.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8997 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-34.5 + parent: 4812 + type: Transform + - uid: 9000 + components: + - pos: -37.5,-36.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9001 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-35.5 + parent: 4812 + type: Transform + - uid: 9002 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-35.5 + parent: 4812 + type: Transform + - uid: 9003 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-36.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9036 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9075 + components: + - pos: -45.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9116 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,12.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9118 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,2.5 + parent: 4812 + type: Transform + - color: '#03FDC3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 9119 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9122 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,12.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9123 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9124 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,2.5 + parent: 4812 + type: Transform + - color: '#03FDC3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 9126 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,12.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9127 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,12.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9129 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,2.5 + parent: 4812 + type: Transform + - color: '#03FDC3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 9132 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,2.5 + parent: 4812 + type: Transform + - color: '#03FDC3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 9134 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,12.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9135 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9136 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9137 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9138 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9146 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9147 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 9148 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9149 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9150 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9151 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9153 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9154 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9157 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,0.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 9159 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,0.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 9160 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,0.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 9161 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,0.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 9162 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,0.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 9167 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,-1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 9175 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,1.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9177 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,1.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9178 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9179 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,1.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9180 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9181 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,5.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9182 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9183 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,5.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9184 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9185 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,5.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9186 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9187 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,9.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9188 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9189 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,9.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9190 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9191 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,9.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9192 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,11.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9205 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9207 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,8.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9208 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,8.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9209 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,8.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9210 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,8.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9211 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,8.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9213 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,6.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9214 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,6.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9215 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,6.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9216 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,6.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9217 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,6.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9219 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9220 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9221 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9222 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9223 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9225 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9226 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9227 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9228 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9229 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9231 + components: + - pos: -47.5,2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9232 + components: + - pos: -47.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9233 + components: + - pos: -47.5,6.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9234 + components: + - pos: -47.5,8.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9235 + components: + - pos: -47.5,10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9238 + components: + - pos: -45.5,7.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9241 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,6.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9246 + components: + - pos: -45.5,9.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9249 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,8.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9250 + components: + - pos: -46.5,3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9252 + components: + - rot: 3.141592653589793 rad + pos: -45.5,3.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9253 + components: + - pos: -46.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9255 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9257 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,12.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9259 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,10.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9262 + components: + - rot: 3.141592653589793 rad + pos: -47.5,12.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9263 + components: + - rot: 3.141592653589793 rad + pos: -47.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9489 + components: + - pos: -45.5,14.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9490 + components: + - pos: -45.5,15.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9491 + components: + - pos: -43.5,14.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9492 + components: + - pos: -43.5,15.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9493 + components: + - pos: -43.5,13.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9514 + components: + - pos: -43.5,11.5 + parent: 4812 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 9515 + components: + - pos: -43.5,10.5 + parent: 4812 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 9516 + components: + - pos: -43.5,9.5 + parent: 4812 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 9539 + components: + - rot: 3.141592653589793 rad + pos: -42.5,3.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 9541 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,2.5 + parent: 4812 + type: Transform + - color: '#03FDC3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 9545 + components: + - rot: 3.141592653589793 rad + pos: -42.5,1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 9546 + components: + - rot: 3.141592653589793 rad + pos: -42.5,2.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11963 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-7.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11964 + components: + - pos: -36.5,0.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11965 + components: + - pos: -36.5,-0.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11966 + components: + - pos: -36.5,-1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11967 + components: + - pos: -36.5,-2.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11968 + components: + - pos: -36.5,-3.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11969 + components: + - pos: -36.5,-4.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11970 + components: + - pos: -36.5,-5.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11971 + components: + - pos: -36.5,-6.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11973 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-8.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11974 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-8.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11975 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-8.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11976 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-8.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11977 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-8.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11978 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-8.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11979 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-7.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11980 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-7.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11981 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-7.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11984 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-8.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11985 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,-8.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11986 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-8.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11987 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-8.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11989 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,-7.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11990 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-7.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11991 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-7.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11992 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-7.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11993 + components: + - pos: -45.5,-8.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11994 + components: + - pos: -45.5,-9.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11995 + components: + - pos: -45.5,-10.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11996 + components: + - pos: -44.5,-9.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11997 + components: + - pos: -44.5,-10.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11998 + components: + - pos: -44.5,-11.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12001 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12002 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12003 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12004 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12005 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12006 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12007 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12008 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12009 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12012 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12013 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12014 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12015 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12016 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12017 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12018 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12019 + components: + - pos: -49.5,-11.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12020 + components: + - pos: -49.5,-10.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12021 + components: + - pos: -48.5,-10.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12022 + components: + - pos: -48.5,-12.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12031 + components: + - pos: -44.5,-7.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 373 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,13.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 376 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,9.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 384 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 387 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 394 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 407 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 413 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,4.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 417 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,8.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 418 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,10.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 423 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,14.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 441 + components: + - pos: -5.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 454 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 464 + components: + - pos: 0.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 471 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 477 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 483 + components: + - rot: 3.141592653589793 rad + pos: -24.5,7.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 486 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,10.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 490 + components: + - pos: -25.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 496 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,13.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 506 + components: + - rot: 3.141592653589793 rad + pos: -21.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 510 + components: + - rot: 3.141592653589793 rad + pos: 2.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 513 + components: + - pos: -0.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 519 + components: + - rot: 3.141592653589793 rad + pos: -7.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 523 + components: + - pos: 8.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 527 + components: + - pos: -13.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 532 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,15.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 539 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,19.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 540 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,7.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 548 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,8.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 550 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 558 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 562 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 565 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 570 + components: + - pos: -4.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 574 + components: + - rot: 3.141592653589793 rad + pos: -8.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 579 + components: + - pos: 6.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 587 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,14.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 594 + components: + - rot: 3.141592653589793 rad + pos: 10.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 600 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,6.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 605 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 611 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 617 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-8.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 618 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 625 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 632 + components: + - pos: -6.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 642 + components: + - pos: -14.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 643 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 645 + components: + - pos: 1.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 651 + components: + - pos: -19.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 662 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-1.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 666 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 675 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,9.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 679 + components: + - pos: -24.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 681 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,14.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 682 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,16.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 694 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,17.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 699 + components: + - rot: 3.141592653589793 rad + pos: 3.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 704 + components: + - pos: -11.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 706 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,8.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 707 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 797 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-7.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 805 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-7.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 806 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 808 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-9.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 819 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 820 + components: + - pos: -2.5,2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 832 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 843 + components: + - pos: 3.5,7.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 860 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 4812 + type: Transform + - uid: 870 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-0.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1051 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1504 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,0.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1985 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,22.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1986 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,23.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1992 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,26.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1997 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,22.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2000 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,25.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2004 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,29.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2012 + components: + - pos: -5.5,32.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2018 + components: + - pos: 0.5,32.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2022 + components: + - rot: 3.141592653589793 rad + pos: -5.5,33.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2028 + components: + - rot: 3.141592653589793 rad + pos: 0.5,33.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2035 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,26.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2037 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,24.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2046 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,24.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2048 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,29.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2056 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,25.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2065 + components: + - rot: 3.141592653589793 rad + pos: 6.5,24.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2424 + components: + - rot: 3.141592653589793 rad + pos: -13.5,23.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2435 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,24.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2965 + components: + - rot: 3.141592653589793 rad + pos: 24.5,14.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2972 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,18.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2974 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,20.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2980 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,24.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2987 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,18.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2989 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2994 + components: + - pos: 19.5,25.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2995 + components: + - rot: 3.141592653589793 rad + pos: 16.5,25.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3011 + components: + - pos: 19.5,26.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3406 + components: + - pos: -33.5,-0.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3739 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-1.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3740 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-0.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3741 + components: + - pos: -33.5,-3.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3742 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-3.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3745 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3783 + components: + - pos: -3.5,-34.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3784 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-35.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3798 + components: + - pos: 13.5,46.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 3818 + components: + - rot: 3.141592653589793 rad + pos: 14.5,44.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 3823 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,44.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3824 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,45.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3832 + components: + - pos: 5.5,45.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4003 + components: + - pos: -3.5,-31.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4004 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-32.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4150 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-3.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4164 + components: + - pos: 19.5,-2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4171 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4183 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4184 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,0.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4185 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-7.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4186 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-5.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4190 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-0.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4193 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4206 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-1.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4221 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-4.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4833 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-25.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4888 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-22.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4942 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4958 + components: + - pos: -17.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4976 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-27.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5006 + components: + - pos: -18.5,-17.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5012 + components: + - pos: -12.5,-22.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5018 + components: + - pos: -8.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5019 + components: + - pos: -10.5,-22.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5051 + components: + - pos: -14.5,-26.5 + parent: 4812 + type: Transform + - uid: 5096 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-32.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5101 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-32.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5113 + components: + - pos: 9.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5121 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-35.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5138 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-22.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5142 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-32.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5148 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-31.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5153 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-31.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5163 + components: + - pos: 10.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5179 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-34.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5188 + components: + - pos: -11.5,-34.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5195 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-42.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5211 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-41.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5621 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-18.5 + parent: 4812 + type: Transform + - uid: 5629 + components: + - pos: 6.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5630 + components: + - pos: 5.5,-20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5631 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5635 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-18.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5644 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5660 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5665 + components: + - pos: 8.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5673 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-19.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5676 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5680 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5687 + components: + - pos: 22.5,-20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5706 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-26.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5707 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-25.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5726 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-22.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5738 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-25.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5757 + components: + - pos: 27.5,-26.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6462 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-25.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6650 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-26.5 + parent: 4812 + type: Transform + - uid: 6785 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-26.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6814 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-35.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6818 + components: + - pos: -22.5,-36.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6828 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-34.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6834 + components: + - pos: -23.5,-35.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6895 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-26.5 + parent: 4812 + type: Transform + - uid: 7061 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-17.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7250 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-27.5 + parent: 4812 + type: Transform + - uid: 7255 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7273 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-27.5 + parent: 4812 + type: Transform + - uid: 7308 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-21.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7311 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-22.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7372 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7373 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-20.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7389 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-16.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7818 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,14.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7819 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,13.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7823 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,15.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7825 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,16.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7826 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,18.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7828 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,20.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7832 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,15.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7833 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,17.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7835 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7836 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,19.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7850 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,24.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7875 + components: + - rot: 3.141592653589793 rad + pos: -30.5,11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7876 + components: + - rot: 3.141592653589793 rad + pos: -29.5,10.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7878 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,18.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7879 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,12.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7895 + components: + - rot: 3.141592653589793 rad + pos: -35.5,10.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7896 + components: + - rot: 3.141592653589793 rad + pos: -34.5,11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8227 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,22.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8236 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,25.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8549 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,4.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8757 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-2.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8772 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8777 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-8.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8786 + components: + - pos: -36.5,1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8982 + components: + - pos: -34.5,-33.5 + parent: 4812 + type: Transform + - uid: 8984 + components: + - pos: -36.5,-33.5 + parent: 4812 + type: Transform + - uid: 8990 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-36.5 + parent: 4812 + type: Transform + - uid: 8998 + components: + - pos: -37.5,-34.5 + parent: 4812 + type: Transform + - uid: 8999 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-35.5 + parent: 4812 + type: Transform + - uid: 9130 + components: + - pos: -38.5,1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 9145 + components: + - rot: 3.141592653589793 rad + pos: -38.5,2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 9152 + components: + - pos: -33.5,2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9158 + components: + - rot: 3.141592653589793 rad + pos: -42.5,0.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 9163 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,0.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 9251 + components: + - rot: 3.141592653589793 rad + pos: -46.5,2.5 + parent: 4812 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9536 + components: + - pos: -42.5,8.5 + parent: 4812 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 9537 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,7.5 + parent: 4812 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 9538 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,6.5 + parent: 4812 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11982 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-8.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11988 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-7.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11999 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-12.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12000 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12043 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-11.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 3467 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3710 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-0.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3711 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3712 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-3.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3839 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,44.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5593 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-28.5 + parent: 4812 + type: Transform + - uid: 5594 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-30.5 + parent: 4812 + type: Transform + - uid: 8839 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-28.5 + parent: 4812 + type: Transform + - uid: 9037 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-37.5 + parent: 4812 + type: Transform + - uid: 9548 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,6.5 + parent: 4812 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - uid: 9549 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,7.5 + parent: 4812 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - uid: 9550 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,8.5 + parent: 4812 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor +- proto: GasPressurePump + entities: + - uid: 3795 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,46.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4929 + components: + - name: Distro Pump + type: MetaData + - pos: -12.5,-25.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5583 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-30.5 + parent: 4812 + type: Transform + - uid: 5584 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-28.5 + parent: 4812 + type: Transform + - uid: 8773 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,1.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9115 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,2.5 + parent: 4812 + type: Transform + - uid: 9131 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,2.5 + parent: 4812 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9206 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,4.5 + parent: 4812 + type: Transform + - uid: 9212 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,6.5 + parent: 4812 + type: Transform + - uid: 9218 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,8.5 + parent: 4812 + type: Transform + - uid: 9224 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,10.5 + parent: 4812 + type: Transform + - uid: 9230 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,12.5 + parent: 4812 + type: Transform + - uid: 9513 + components: + - pos: -43.5,12.5 + parent: 4812 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - uid: 9543 + components: + - pos: -42.5,4.5 + parent: 4812 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasThermoMachineFreezer + entities: + - uid: 859 + components: + - pos: 7.5,-5.5 + parent: 4812 + type: Transform + - uid: 5803 + components: + - pos: 12.5,-17.5 + parent: 4812 + type: Transform + - uid: 7245 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-28.5 + parent: 4812 + type: Transform + - uid: 9551 + components: + - pos: -41.5,12.5 + parent: 4812 + type: Transform +- proto: GasThermoMachineHeater + entities: + - uid: 9552 + components: + - pos: -41.5,11.5 + parent: 4812 + type: Transform +- proto: GasValve + entities: + - uid: 5591 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-30.5 + parent: 4812 + type: Transform + - uid: 5592 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-28.5 + parent: 4812 + type: Transform + - uid: 9039 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-36.5 + parent: 4812 + type: Transform + - open: False + type: GasValve + - enabled: False + type: AmbientSound + - uid: 9164 + components: + - rot: 3.141592653589793 rad + pos: -47.5,-0.5 + parent: 4812 + type: Transform + - open: False + type: GasValve + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9544 + components: + - rot: 3.141592653589793 rad + pos: -42.5,5.5 + parent: 4812 + type: Transform + - open: False + type: GasValve + - enabled: False + type: AmbientSound + - color: '#947507FF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 559 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-12.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 710 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,13.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 817 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,10.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 818 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 835 + components: + - pos: 5.5,-1.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 838 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-6.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 846 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,7.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 847 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,7.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 848 + components: + - pos: -17.5,-6.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 849 + components: + - pos: -10.5,-6.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 864 + components: + - rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 871 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 877 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,4.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1511 + components: + - pos: -22.5,-8.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1685 + components: + - pos: -21.5,3.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1770 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,19.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1814 + components: + - rot: 3.141592653589793 rad + pos: 8.5,16.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1817 + components: + - rot: 3.141592653589793 rad + pos: -0.5,18.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1852 + components: + - pos: -3.5,23.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2071 + components: + - rot: 3.141592653589793 rad + pos: 8.5,24.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2072 + components: + - pos: 8.5,29.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2429 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,23.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2430 + components: + - pos: -13.5,28.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2443 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,29.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2444 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,29.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2445 + components: + - pos: -5.5,34.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2446 + components: + - pos: 0.5,34.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2474 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,22.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2475 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,22.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2842 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,27.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2966 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,14.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2969 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,14.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2983 + components: + - pos: 15.5,29.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3019 + components: + - rot: 3.141592653589793 rad + pos: 14.5,25.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3020 + components: + - rot: 3.141592653589793 rad + pos: 19.5,25.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3023 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,18.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3024 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,20.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3026 + components: + - rot: 3.141592653589793 rad + pos: 15.5,13.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3206 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,25.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3708 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-3.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3781 + components: + - pos: -1.5,-34.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3834 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,45.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3835 + components: + - rot: 3.141592653589793 rad + pos: 5.5,44.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3838 + components: + - pos: 8.5,51.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3841 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,45.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3944 + components: + - rot: 3.141592653589793 rad + pos: 9.5,43.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4196 + components: + - pos: 30.5,3.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4197 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,2.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4198 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,0.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4199 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-5.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4200 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-7.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4201 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-8.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4203 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-0.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4231 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,4.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4380 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-3.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4440 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,2.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4441 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4444 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-1.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4464 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,8.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4890 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-18.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4941 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-17.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5033 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-27.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5222 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-52.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5225 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-41.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5697 + components: + - pos: 4.5,-17.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5698 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-24.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5714 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-27.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5715 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-25.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5718 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-19.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5734 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-20.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5763 + components: + - pos: 27.5,-24.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5764 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-25.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5802 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-18.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - uid: 6416 + components: + - pos: 8.5,-11.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6419 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-13.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6461 + components: + - pos: -1.5,-31.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6471 + components: + - pos: -2.5,-28.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6554 + components: + - pos: -16.5,-20.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6686 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-27.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6821 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-35.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6840 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-36.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6842 + components: + - pos: -19.5,-34.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7087 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-17.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7323 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-26.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7379 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-20.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7380 + components: + - pos: -9.5,-17.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7856 + components: + - pos: -26.5,30.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7857 + components: + - rot: 3.141592653589793 rad + pos: -26.5,23.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7871 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,17.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7872 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,20.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7886 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,10.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7905 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,10.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7906 + components: + - pos: -35.5,15.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7910 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,15.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7911 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,12.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7912 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,18.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8238 + components: + - pos: -23.5,27.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8240 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,25.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8300 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,16.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8306 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,17.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8318 + components: + - rot: 3.141592653589793 rad + pos: -13.5,16.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8562 + components: + - pos: -18.5,11.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8838 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-28.5 + parent: 4812 + type: Transform + - ShutdownSubscribers: + - 8804 + - 7236 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8991 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-34.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - uid: 8992 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-37.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - uid: 8993 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-34.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - uid: 10757 + components: + - pos: -38.5,3.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11962 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-8.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12027 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-12.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12028 + components: + - rot: 3.141592653589793 rad + pos: -49.5,-13.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12029 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,-12.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12030 + components: + - pos: -49.5,-9.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12032 + components: + - pos: -44.5,-6.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12035 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,2.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12037 + components: + - pos: -16.5,-11.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12039 + components: + - rot: 3.141592653589793 rad + pos: -23.5,7.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12041 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,0.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 711 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,14.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 814 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 815 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 816 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,9.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 857 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-8.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 858 + components: + - pos: -10.5,-8.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 885 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,8.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1512 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-7.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1686 + components: + - rot: 3.141592653589793 rad + pos: -21.5,0.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1813 + components: + - rot: 3.141592653589793 rad + pos: 6.5,16.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1816 + components: + - rot: 3.141592653589793 rad + pos: -4.5,18.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1853 + components: + - pos: -1.5,23.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2073 + components: + - pos: 6.5,29.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2074 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,24.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2439 + components: + - rot: 3.141592653589793 rad + pos: -12.5,23.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2440 + components: + - pos: -12.5,28.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2441 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,26.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2442 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,26.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2447 + components: + - rot: 3.141592653589793 rad + pos: -5.5,31.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2448 + components: + - rot: 3.141592653589793 rad + pos: 0.5,31.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2963 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,14.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3001 + components: + - pos: 16.5,29.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3016 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,25.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3017 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,25.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3021 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,20.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3022 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,18.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3027 + components: + - rot: 3.141592653589793 rad + pos: 19.5,13.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3782 + components: + - pos: 10.5,20.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3813 + components: + - rot: 3.141592653589793 rad + pos: 7.5,44.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3814 + components: + - rot: 3.141592653589793 rad + pos: 11.5,43.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3815 + components: + - pos: 12.5,51.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3816 + components: + - rot: 3.141592653589793 rad + pos: 13.5,45.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4205 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-4.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4214 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-8.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4226 + components: + - pos: 24.5,3.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4381 + components: + - pos: 17.5,-2.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4439 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,7.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4442 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4443 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-4.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4465 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,6.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4875 + components: + - pos: -15.5,-15.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4876 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-16.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5025 + components: + - pos: -18.5,-20.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5223 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-51.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5224 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-42.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5699 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-24.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5700 + components: + - pos: 3.5,-17.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5716 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-26.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5717 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-27.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5719 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-18.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5735 + components: + - pos: 27.5,-20.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5765 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-27.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5766 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-26.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5805 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-17.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6253 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-26.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6417 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-12.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6420 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-13.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6455 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-35.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6472 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-25.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6687 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-32.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6838 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-36.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6839 + components: + - pos: -18.5,-33.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6841 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-37.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7088 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-17.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7227 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-26.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7325 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-26.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7381 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-20.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7382 + components: + - pos: -11.5,-17.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7858 + components: + - pos: -30.5,30.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7873 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,16.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7874 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,19.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7887 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,11.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7907 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,11.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7908 + components: + - pos: -34.5,15.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7909 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,15.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7913 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,18.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7914 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,12.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8239 + components: + - pos: -22.5,27.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8241 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,22.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8307 + components: + - pos: -21.5,20.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8317 + components: + - rot: 3.141592653589793 rad + pos: -11.5,16.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8563 + components: + - rot: 3.141592653589793 rad + pos: -18.5,8.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8787 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-2.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8836 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-25.5 + parent: 4812 + type: Transform + - ShutdownSubscribers: + - 8804 + - 7236 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8994 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-34.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - uid: 9006 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-37.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - uid: 9007 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-34.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - uid: 10758 + components: + - rot: 3.141592653589793 rad + pos: -38.5,0.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12023 + components: + - pos: -48.5,-9.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12024 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,-11.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12025 + components: + - rot: 3.141592653589793 rad + pos: -48.5,-13.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12026 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-11.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12033 + components: + - pos: -40.5,-6.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12034 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-6.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12036 + components: + - pos: -30.5,2.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12038 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-12.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12040 + components: + - pos: -24.5,8.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12042 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-4.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12044 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-11.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12418 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,4.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GeneratorBasic15kW + entities: + - uid: 1729 + components: + - pos: 14.5,44.5 + parent: 4812 + type: Transform +- proto: GeneratorRTG + entities: + - uid: 10946 + components: + - pos: -40.5,22.5 + parent: 4812 + type: Transform +- proto: Girder + entities: + - uid: 4142 + components: + - pos: 21.5,0.5 + parent: 4812 + type: Transform + - uid: 4143 + components: + - pos: 16.5,3.5 + parent: 4812 + type: Transform + - uid: 6634 + components: + - pos: -43.5,-30.5 + parent: 4812 + type: Transform + - uid: 7260 + components: + - pos: -44.5,-26.5 + parent: 4812 + type: Transform + - uid: 8872 + components: + - pos: -31.5,-30.5 + parent: 4812 + type: Transform + - uid: 9991 + components: + - pos: -35.5,-21.5 + parent: 4812 + type: Transform + - uid: 11065 + components: + - pos: 14.5,-35.5 + parent: 4812 + type: Transform + - uid: 11106 + components: + - pos: 11.5,-31.5 + parent: 4812 + type: Transform + - uid: 11107 + components: + - pos: 10.5,-31.5 + parent: 4812 + type: Transform + - uid: 11685 + components: + - pos: 27.5,-38.5 + parent: 4812 + type: Transform + - uid: 11687 + components: + - pos: 26.5,-42.5 + parent: 4812 + type: Transform + - uid: 11692 + components: + - pos: 30.5,-41.5 + parent: 4812 + type: Transform + - uid: 11847 + components: + - pos: -13.5,11.5 + parent: 4812 + type: Transform +- proto: GravityGenerator + entities: + - uid: 9889 + components: + - pos: -53.5,-9.5 + parent: 4812 + type: Transform +- proto: Grille + entities: + - uid: 748 + components: + - pos: 9.5,18.5 + parent: 4812 + type: Transform + - uid: 749 + components: + - pos: 7.5,18.5 + parent: 4812 + type: Transform + - uid: 750 + components: + - pos: 5.5,18.5 + parent: 4812 + type: Transform + - uid: 751 + components: + - pos: 3.5,18.5 + parent: 4812 + type: Transform + - uid: 752 + components: + - pos: 2.5,18.5 + parent: 4812 + type: Transform + - uid: 753 + components: + - pos: 4.5,17.5 + parent: 4812 + type: Transform + - uid: 754 + components: + - pos: 4.5,16.5 + parent: 4812 + type: Transform + - uid: 755 + components: + - pos: 3.5,15.5 + parent: 4812 + type: Transform + - uid: 756 + components: + - pos: 2.5,15.5 + parent: 4812 + type: Transform + - uid: 757 + components: + - pos: 1.5,16.5 + parent: 4812 + type: Transform + - uid: 758 + components: + - pos: 1.5,17.5 + parent: 4812 + type: Transform + - uid: 759 + components: + - pos: -0.5,12.5 + parent: 4812 + type: Transform + - uid: 760 + components: + - pos: -4.5,12.5 + parent: 4812 + type: Transform + - uid: 761 + components: + - pos: -4.5,15.5 + parent: 4812 + type: Transform + - uid: 762 + components: + - pos: -0.5,15.5 + parent: 4812 + type: Transform + - uid: 763 + components: + - pos: -7.5,15.5 + parent: 4812 + type: Transform + - uid: 764 + components: + - pos: -8.5,15.5 + parent: 4812 + type: Transform + - uid: 765 + components: + - pos: -9.5,16.5 + parent: 4812 + type: Transform + - uid: 766 + components: + - pos: -9.5,17.5 + parent: 4812 + type: Transform + - uid: 767 + components: + - pos: -8.5,18.5 + parent: 4812 + type: Transform + - uid: 768 + components: + - pos: -7.5,18.5 + parent: 4812 + type: Transform + - uid: 769 + components: + - pos: -6.5,17.5 + parent: 4812 + type: Transform + - uid: 770 + components: + - pos: -6.5,16.5 + parent: 4812 + type: Transform + - uid: 774 + components: + - pos: -4.5,-9.5 + parent: 4812 + type: Transform + - uid: 775 + components: + - pos: -0.5,-9.5 + parent: 4812 + type: Transform + - uid: 776 + components: + - pos: -6.5,-10.5 + parent: 4812 + type: Transform + - uid: 777 + components: + - pos: -8.5,-10.5 + parent: 4812 + type: Transform + - uid: 778 + components: + - pos: -9.5,-10.5 + parent: 4812 + type: Transform + - uid: 779 + components: + - pos: -12.5,-10.5 + parent: 4812 + type: Transform + - uid: 780 + components: + - pos: -14.5,-10.5 + parent: 4812 + type: Transform + - uid: 781 + components: + - pos: -16.5,-10.5 + parent: 4812 + type: Transform + - uid: 788 + components: + - pos: 2.5,1.5 + parent: 4812 + type: Transform + - uid: 907 + components: + - pos: -18.5,18.5 + parent: 4812 + type: Transform + - uid: 908 + components: + - pos: -19.5,18.5 + parent: 4812 + type: Transform + - uid: 909 + components: + - pos: -21.5,14.5 + parent: 4812 + type: Transform + - uid: 910 + components: + - pos: -21.5,11.5 + parent: 4812 + type: Transform + - uid: 911 + components: + - pos: -21.5,8.5 + parent: 4812 + type: Transform + - uid: 912 + components: + - pos: -24.5,3.5 + parent: 4812 + type: Transform + - uid: 913 + components: + - pos: -24.5,4.5 + parent: 4812 + type: Transform + - uid: 914 + components: + - pos: -24.5,-0.5 + parent: 4812 + type: Transform + - uid: 915 + components: + - pos: -24.5,0.5 + parent: 4812 + type: Transform + - uid: 1964 + components: + - pos: -10.5,26.5 + parent: 4812 + type: Transform + - uid: 1966 + components: + - pos: 7.5,27.5 + parent: 4812 + type: Transform + - uid: 2199 + components: + - pos: -6.5,30.5 + parent: 4812 + type: Transform + - uid: 2202 + components: + - pos: -6.5,28.5 + parent: 4812 + type: Transform + - uid: 2205 + components: + - pos: -4.5,27.5 + parent: 4812 + type: Transform + - uid: 2206 + components: + - pos: -2.5,27.5 + parent: 4812 + type: Transform + - uid: 2207 + components: + - pos: -0.5,27.5 + parent: 4812 + type: Transform + - uid: 2210 + components: + - pos: -9.5,32.5 + parent: 4812 + type: Transform + - uid: 2211 + components: + - pos: -9.5,34.5 + parent: 4812 + type: Transform + - uid: 2212 + components: + - pos: -9.5,35.5 + parent: 4812 + type: Transform + - uid: 2213 + components: + - pos: -8.5,35.5 + parent: 4812 + type: Transform + - uid: 2214 + components: + - pos: -6.5,35.5 + parent: 4812 + type: Transform + - uid: 2215 + components: + - pos: -6.5,36.5 + parent: 4812 + type: Transform + - uid: 2216 + components: + - pos: -5.5,36.5 + parent: 4812 + type: Transform + - uid: 2217 + components: + - pos: -3.5,36.5 + parent: 4812 + type: Transform + - uid: 2218 + components: + - pos: -2.5,36.5 + parent: 4812 + type: Transform + - uid: 2219 + components: + - pos: -1.5,36.5 + parent: 4812 + type: Transform + - uid: 2220 + components: + - pos: 0.5,36.5 + parent: 4812 + type: Transform + - uid: 2221 + components: + - pos: 1.5,36.5 + parent: 4812 + type: Transform + - uid: 2222 + components: + - pos: 1.5,35.5 + parent: 4812 + type: Transform + - uid: 2223 + components: + - pos: 3.5,35.5 + parent: 4812 + type: Transform + - uid: 2224 + components: + - pos: 4.5,35.5 + parent: 4812 + type: Transform + - uid: 2225 + components: + - pos: 4.5,34.5 + parent: 4812 + type: Transform + - uid: 2226 + components: + - pos: 6.5,33.5 + parent: 4812 + type: Transform + - uid: 2227 + components: + - pos: 6.5,23.5 + parent: 4812 + type: Transform + - uid: 2228 + components: + - pos: 8.5,23.5 + parent: 4812 + type: Transform + - uid: 2232 + components: + - pos: 4.5,24.5 + parent: 4812 + type: Transform + - uid: 2233 + components: + - pos: 4.5,26.5 + parent: 4812 + type: Transform + - uid: 2237 + components: + - pos: -9.5,22.5 + parent: 4812 + type: Transform + - uid: 2238 + components: + - pos: -9.5,24.5 + parent: 4812 + type: Transform + - uid: 2239 + components: + - pos: 8.5,27.5 + parent: 4812 + type: Transform + - uid: 2240 + components: + - pos: 5.5,27.5 + parent: 4812 + type: Transform + - uid: 2242 + components: + - pos: -12.5,30.5 + parent: 4812 + type: Transform + - uid: 2243 + components: + - pos: -11.5,30.5 + parent: 4812 + type: Transform + - uid: 2464 + components: + - pos: -12.5,26.5 + parent: 4812 + type: Transform + - uid: 2465 + components: + - pos: -13.5,26.5 + parent: 4812 + type: Transform + - uid: 2669 + components: + - pos: 1.5,30.5 + parent: 4812 + type: Transform + - uid: 2670 + components: + - pos: 1.5,28.5 + parent: 4812 + type: Transform + - uid: 2770 + components: + - pos: 18.5,31.5 + parent: 4812 + type: Transform + - uid: 2818 + components: + - pos: 16.5,36.5 + parent: 4812 + type: Transform + - uid: 2862 + components: + - pos: 16.5,28.5 + parent: 4812 + type: Transform + - uid: 2871 + components: + - pos: 19.5,22.5 + parent: 4812 + type: Transform + - uid: 2872 + components: + - pos: 21.5,21.5 + parent: 4812 + type: Transform + - uid: 2873 + components: + - pos: 21.5,19.5 + parent: 4812 + type: Transform + - uid: 2874 + components: + - pos: 14.5,22.5 + parent: 4812 + type: Transform + - uid: 2875 + components: + - pos: 13.5,17.5 + parent: 4812 + type: Transform + - uid: 2876 + components: + - pos: 13.5,19.5 + parent: 4812 + type: Transform + - uid: 2877 + components: + - pos: 13.5,13.5 + parent: 4812 + type: Transform + - uid: 2878 + components: + - pos: 14.5,16.5 + parent: 4812 + type: Transform + - uid: 2879 + components: + - pos: 16.5,16.5 + parent: 4812 + type: Transform + - uid: 2880 + components: + - pos: 18.5,16.5 + parent: 4812 + type: Transform + - uid: 2881 + components: + - pos: 20.5,16.5 + parent: 4812 + type: Transform + - uid: 2907 + components: + - pos: 25.5,13.5 + parent: 4812 + type: Transform + - uid: 2908 + components: + - pos: 25.5,15.5 + parent: 4812 + type: Transform + - uid: 2909 + components: + - pos: 21.5,13.5 + parent: 4812 + type: Transform + - uid: 2910 + components: + - pos: 23.5,17.5 + parent: 4812 + type: Transform + - uid: 2911 + components: + - pos: 26.5,16.5 + parent: 4812 + type: Transform + - uid: 2912 + components: + - pos: 27.5,16.5 + parent: 4812 + type: Transform + - uid: 2913 + components: + - pos: 28.5,16.5 + parent: 4812 + type: Transform + - uid: 2914 + components: + - pos: 28.5,15.5 + parent: 4812 + type: Transform + - uid: 2915 + components: + - pos: 28.5,13.5 + parent: 4812 + type: Transform + - uid: 2916 + components: + - pos: 28.5,12.5 + parent: 4812 + type: Transform + - uid: 2917 + components: + - pos: 27.5,12.5 + parent: 4812 + type: Transform + - uid: 2918 + components: + - pos: 26.5,12.5 + parent: 4812 + type: Transform + - uid: 3031 + components: + - pos: 18.5,30.5 + parent: 4812 + type: Transform + - uid: 3032 + components: + - pos: 19.5,29.5 + parent: 4812 + type: Transform + - uid: 3035 + components: + - pos: 22.5,23.5 + parent: 4812 + type: Transform + - uid: 3036 + components: + - pos: 22.5,26.5 + parent: 4812 + type: Transform + - uid: 3037 + components: + - pos: 20.5,29.5 + parent: 4812 + type: Transform + - uid: 3114 + components: + - pos: 21.5,26.5 + parent: 4812 + type: Transform + - uid: 3115 + components: + - pos: 23.5,26.5 + parent: 4812 + type: Transform + - uid: 3116 + components: + - pos: 22.5,29.5 + parent: 4812 + type: Transform + - uid: 3701 + components: + - pos: 10.5,54.5 + parent: 4812 + type: Transform + - uid: 4385 + components: + - pos: 19.5,-6.5 + parent: 4812 + type: Transform + - uid: 4386 + components: + - pos: 18.5,-6.5 + parent: 4812 + type: Transform + - uid: 4387 + components: + - pos: 17.5,-6.5 + parent: 4812 + type: Transform + - uid: 4388 + components: + - pos: 18.5,-4.5 + parent: 4812 + type: Transform + - uid: 4389 + components: + - pos: 17.5,-8.5 + parent: 4812 + type: Transform + - uid: 4390 + components: + - pos: 18.5,-8.5 + parent: 4812 + type: Transform + - uid: 4391 + components: + - pos: 19.5,-8.5 + parent: 4812 + type: Transform + - uid: 4392 + components: + - pos: 27.5,-6.5 + parent: 4812 + type: Transform + - uid: 4393 + components: + - pos: 26.5,-4.5 + parent: 4812 + type: Transform + - uid: 4394 + components: + - pos: 27.5,-10.5 + parent: 4812 + type: Transform + - uid: 4395 + components: + - pos: 26.5,-0.5 + parent: 4812 + type: Transform + - uid: 4396 + components: + - pos: 27.5,1.5 + parent: 4812 + type: Transform + - uid: 4397 + components: + - pos: 29.5,1.5 + parent: 4812 + type: Transform + - uid: 4398 + components: + - pos: 32.5,4.5 + parent: 4812 + type: Transform + - uid: 4399 + components: + - pos: 32.5,3.5 + parent: 4812 + type: Transform + - uid: 4400 + components: + - pos: 33.5,3.5 + parent: 4812 + type: Transform + - uid: 4401 + components: + - pos: 34.5,3.5 + parent: 4812 + type: Transform + - uid: 4402 + components: + - pos: 34.5,1.5 + parent: 4812 + type: Transform + - uid: 4403 + components: + - pos: 33.5,1.5 + parent: 4812 + type: Transform + - uid: 4404 + components: + - pos: 32.5,1.5 + parent: 4812 + type: Transform + - uid: 4405 + components: + - pos: 31.5,1.5 + parent: 4812 + type: Transform + - uid: 4406 + components: + - pos: 34.5,-0.5 + parent: 4812 + type: Transform + - uid: 4407 + components: + - pos: 33.5,-0.5 + parent: 4812 + type: Transform + - uid: 4408 + components: + - pos: 32.5,-0.5 + parent: 4812 + type: Transform + - uid: 4409 + components: + - pos: 32.5,-1.5 + parent: 4812 + type: Transform + - uid: 4410 + components: + - pos: 32.5,-2.5 + parent: 4812 + type: Transform + - uid: 4411 + components: + - pos: 32.5,-3.5 + parent: 4812 + type: Transform + - uid: 4412 + components: + - pos: 32.5,-4.5 + parent: 4812 + type: Transform + - uid: 4413 + components: + - pos: 33.5,-4.5 + parent: 4812 + type: Transform + - uid: 4414 + components: + - pos: 34.5,-4.5 + parent: 4812 + type: Transform + - uid: 4415 + components: + - pos: 34.5,-6.5 + parent: 4812 + type: Transform + - uid: 4416 + components: + - pos: 33.5,-6.5 + parent: 4812 + type: Transform + - uid: 4417 + components: + - pos: 32.5,-6.5 + parent: 4812 + type: Transform + - uid: 4418 + components: + - pos: 31.5,-6.5 + parent: 4812 + type: Transform + - uid: 4419 + components: + - pos: 32.5,-9.5 + parent: 4812 + type: Transform + - uid: 4420 + components: + - pos: 32.5,-8.5 + parent: 4812 + type: Transform + - uid: 4421 + components: + - pos: 33.5,-8.5 + parent: 4812 + type: Transform + - uid: 4422 + components: + - pos: 34.5,-8.5 + parent: 4812 + type: Transform + - uid: 4437 + components: + - pos: 14.5,-12.5 + parent: 4812 + type: Transform + - uid: 4438 + components: + - pos: 14.5,-11.5 + parent: 4812 + type: Transform + - uid: 4610 + components: + - pos: 28.5,7.5 + parent: 4812 + type: Transform + - uid: 4611 + components: + - pos: 29.5,7.5 + parent: 4812 + type: Transform + - uid: 4612 + components: + - pos: 30.5,7.5 + parent: 4812 + type: Transform + - uid: 4613 + components: + - pos: 32.5,7.5 + parent: 4812 + type: Transform + - uid: 4614 + components: + - pos: 33.5,7.5 + parent: 4812 + type: Transform + - uid: 4615 + components: + - pos: 26.5,9.5 + parent: 4812 + type: Transform + - uid: 4616 + components: + - pos: 26.5,8.5 + parent: 4812 + type: Transform + - uid: 4617 + components: + - pos: 22.5,-11.5 + parent: 4812 + type: Transform + - uid: 4618 + components: + - pos: 22.5,-10.5 + parent: 4812 + type: Transform + - uid: 4619 + components: + - pos: 24.5,-11.5 + parent: 4812 + type: Transform + - uid: 4620 + components: + - pos: 24.5,-12.5 + parent: 4812 + type: Transform + - uid: 4621 + components: + - pos: 25.5,-12.5 + parent: 4812 + type: Transform + - uid: 4622 + components: + - pos: 26.5,-12.5 + parent: 4812 + type: Transform + - uid: 4623 + components: + - pos: 27.5,-12.5 + parent: 4812 + type: Transform + - uid: 4624 + components: + - pos: 30.5,-12.5 + parent: 4812 + type: Transform + - uid: 4625 + components: + - pos: 31.5,-12.5 + parent: 4812 + type: Transform + - uid: 4626 + components: + - pos: 32.5,-12.5 + parent: 4812 + type: Transform + - uid: 4722 + components: + - pos: -12.5,-54.5 + parent: 4812 + type: Transform + - uid: 4723 + components: + - pos: -12.5,-55.5 + parent: 4812 + type: Transform + - uid: 4726 + components: + - pos: -9.5,-55.5 + parent: 4812 + type: Transform + - uid: 4727 + components: + - pos: -9.5,-54.5 + parent: 4812 + type: Transform + - uid: 4728 + components: + - pos: -9.5,-52.5 + parent: 4812 + type: Transform + - uid: 4729 + components: + - pos: -9.5,-51.5 + parent: 4812 + type: Transform + - uid: 4730 + components: + - pos: -8.5,-51.5 + parent: 4812 + type: Transform + - uid: 4731 + components: + - pos: -7.5,-51.5 + parent: 4812 + type: Transform + - uid: 4732 + components: + - pos: -9.5,-49.5 + parent: 4812 + type: Transform + - uid: 4733 + components: + - pos: -9.5,-49.5 + parent: 4812 + type: Transform + - uid: 4734 + components: + - pos: -8.5,-49.5 + parent: 4812 + type: Transform + - uid: 4735 + components: + - pos: -7.5,-49.5 + parent: 4812 + type: Transform + - uid: 4740 + components: + - pos: -7.5,-44.5 + parent: 4812 + type: Transform + - uid: 4741 + components: + - pos: -9.5,-44.5 + parent: 4812 + type: Transform + - uid: 4742 + components: + - pos: -8.5,-44.5 + parent: 4812 + type: Transform + - uid: 4743 + components: + - pos: -7.5,-42.5 + parent: 4812 + type: Transform + - uid: 4744 + components: + - pos: -8.5,-42.5 + parent: 4812 + type: Transform + - uid: 4745 + components: + - pos: -9.5,-42.5 + parent: 4812 + type: Transform + - uid: 4746 + components: + - pos: -9.5,-41.5 + parent: 4812 + type: Transform + - uid: 4747 + components: + - pos: -12.5,-41.5 + parent: 4812 + type: Transform + - uid: 4748 + components: + - pos: -12.5,-42.5 + parent: 4812 + type: Transform + - uid: 4749 + components: + - pos: -13.5,-42.5 + parent: 4812 + type: Transform + - uid: 4750 + components: + - pos: -14.5,-42.5 + parent: 4812 + type: Transform + - uid: 4751 + components: + - pos: -12.5,-44.5 + parent: 4812 + type: Transform + - uid: 4752 + components: + - pos: -13.5,-44.5 + parent: 4812 + type: Transform + - uid: 4753 + components: + - pos: -14.5,-44.5 + parent: 4812 + type: Transform + - uid: 4758 + components: + - pos: -14.5,-49.5 + parent: 4812 + type: Transform + - uid: 4759 + components: + - pos: -13.5,-49.5 + parent: 4812 + type: Transform + - uid: 4760 + components: + - pos: -12.5,-49.5 + parent: 4812 + type: Transform + - uid: 4761 + components: + - pos: -12.5,-52.5 + parent: 4812 + type: Transform + - uid: 4762 + components: + - pos: -12.5,-51.5 + parent: 4812 + type: Transform + - uid: 4763 + components: + - pos: -13.5,-51.5 + parent: 4812 + type: Transform + - uid: 4764 + components: + - pos: -14.5,-51.5 + parent: 4812 + type: Transform + - uid: 4765 + components: + - pos: -9.5,-39.5 + parent: 4812 + type: Transform + - uid: 4766 + components: + - pos: -9.5,-38.5 + parent: 4812 + type: Transform + - uid: 4767 + components: + - pos: -9.5,-37.5 + parent: 4812 + type: Transform + - uid: 4768 + components: + - pos: -12.5,-38.5 + parent: 4812 + type: Transform + - uid: 4769 + components: + - pos: -8.5,-36.5 + parent: 4812 + type: Transform + - uid: 4770 + components: + - pos: -5.5,-36.5 + parent: 4812 + type: Transform + - uid: 4771 + components: + - pos: -4.5,-36.5 + parent: 4812 + type: Transform + - uid: 4772 + components: + - pos: -3.5,-36.5 + parent: 4812 + type: Transform + - uid: 4773 + components: + - pos: -2.5,-36.5 + parent: 4812 + type: Transform + - uid: 4774 + components: + - pos: -1.5,-36.5 + parent: 4812 + type: Transform + - uid: 4775 + components: + - pos: -0.5,-36.5 + parent: 4812 + type: Transform + - uid: 4776 + components: + - pos: 0.5,-36.5 + parent: 4812 + type: Transform + - uid: 4777 + components: + - pos: -1.5,-33.5 + parent: 4812 + type: Transform + - uid: 4778 + components: + - pos: -2.5,-33.5 + parent: 4812 + type: Transform + - uid: 4779 + components: + - pos: -3.5,-33.5 + parent: 4812 + type: Transform + - uid: 4780 + components: + - pos: -1.5,-14.5 + parent: 4812 + type: Transform + - uid: 4781 + components: + - pos: -2.5,-14.5 + parent: 4812 + type: Transform + - uid: 4782 + components: + - pos: -3.5,-14.5 + parent: 4812 + type: Transform + - uid: 4796 + components: + - pos: -4.5,-28.5 + parent: 4812 + type: Transform + - uid: 4978 + components: + - pos: -45.5,-27.5 + parent: 4812 + type: Transform + - uid: 5054 + components: + - pos: -14.5,-19.5 + parent: 4812 + type: Transform + - uid: 5055 + components: + - pos: -16.5,-19.5 + parent: 4812 + type: Transform + - uid: 5309 + components: + - pos: -4.5,-26.5 + parent: 4812 + type: Transform + - uid: 5310 + components: + - pos: -2.5,-23.5 + parent: 4812 + type: Transform + - uid: 5311 + components: + - pos: -0.5,-27.5 + parent: 4812 + type: Transform + - uid: 5343 + components: + - pos: 15.5,-13.5 + parent: 4812 + type: Transform + - uid: 5344 + components: + - pos: 16.5,-12.5 + parent: 4812 + type: Transform + - uid: 5345 + components: + - pos: 16.5,-11.5 + parent: 4812 + type: Transform + - uid: 5346 + components: + - pos: 16.5,-10.5 + parent: 4812 + type: Transform + - uid: 5347 + components: + - pos: 17.5,-10.5 + parent: 4812 + type: Transform + - uid: 5348 + components: + - pos: 18.5,-10.5 + parent: 4812 + type: Transform + - uid: 5349 + components: + - pos: 19.5,-10.5 + parent: 4812 + type: Transform + - uid: 5350 + components: + - pos: 20.5,-10.5 + parent: 4812 + type: Transform + - uid: 5351 + components: + - pos: 20.5,-11.5 + parent: 4812 + type: Transform + - uid: 5352 + components: + - pos: 20.5,-12.5 + parent: 4812 + type: Transform + - uid: 5353 + components: + - pos: 21.5,-18.5 + parent: 4812 + type: Transform + - uid: 5354 + components: + - pos: 21.5,-17.5 + parent: 4812 + type: Transform + - uid: 5355 + components: + - pos: 21.5,-16.5 + parent: 4812 + type: Transform + - uid: 5356 + components: + - pos: 21.5,-15.5 + parent: 4812 + type: Transform + - uid: 5357 + components: + - pos: 21.5,-14.5 + parent: 4812 + type: Transform + - uid: 5423 + components: + - pos: 8.5,-15.5 + parent: 4812 + type: Transform + - uid: 5424 + components: + - pos: 8.5,-17.5 + parent: 4812 + type: Transform + - uid: 5544 + components: + - pos: 23.5,-18.5 + parent: 4812 + type: Transform + - uid: 5545 + components: + - pos: 23.5,-17.5 + parent: 4812 + type: Transform + - uid: 5546 + components: + - pos: 24.5,-17.5 + parent: 4812 + type: Transform + - uid: 5547 + components: + - pos: 24.5,-16.5 + parent: 4812 + type: Transform + - uid: 5548 + components: + - pos: 26.5,-16.5 + parent: 4812 + type: Transform + - uid: 5549 + components: + - pos: 25.5,-16.5 + parent: 4812 + type: Transform + - uid: 5550 + components: + - pos: 27.5,-16.5 + parent: 4812 + type: Transform + - uid: 5551 + components: + - pos: 28.5,-16.5 + parent: 4812 + type: Transform + - uid: 5552 + components: + - pos: 28.5,-17.5 + parent: 4812 + type: Transform + - uid: 5553 + components: + - pos: 29.5,-17.5 + parent: 4812 + type: Transform + - uid: 5554 + components: + - pos: 29.5,-18.5 + parent: 4812 + type: Transform + - uid: 5570 + components: + - pos: 19.5,-30.5 + parent: 4812 + type: Transform + - uid: 5571 + components: + - pos: 19.5,-29.5 + parent: 4812 + type: Transform + - uid: 5572 + components: + - pos: 19.5,-28.5 + parent: 4812 + type: Transform + - uid: 5577 + components: + - pos: 27.5,-21.5 + parent: 4812 + type: Transform + - uid: 5578 + components: + - pos: 26.5,-21.5 + parent: 4812 + type: Transform + - uid: 5579 + components: + - pos: 25.5,-21.5 + parent: 4812 + type: Transform + - uid: 5601 + components: + - pos: 7.5,-26.5 + parent: 4812 + type: Transform + - uid: 5602 + components: + - pos: 7.5,-25.5 + parent: 4812 + type: Transform + - uid: 5603 + components: + - pos: 7.5,-28.5 + parent: 4812 + type: Transform + - uid: 5604 + components: + - pos: 7.5,-23.5 + parent: 4812 + type: Transform + - uid: 5605 + components: + - pos: 6.5,-22.5 + parent: 4812 + type: Transform + - uid: 5606 + components: + - pos: 4.5,-22.5 + parent: 4812 + type: Transform + - uid: 5607 + components: + - pos: 10.5,-28.5 + parent: 4812 + type: Transform + - uid: 5608 + components: + - pos: 10.5,-26.5 + parent: 4812 + type: Transform + - uid: 5609 + components: + - pos: 10.5,-24.5 + parent: 4812 + type: Transform + - uid: 5610 + components: + - pos: 10.5,-23.5 + parent: 4812 + type: Transform + - uid: 5611 + components: + - pos: 3.5,-19.5 + parent: 4812 + type: Transform + - uid: 5612 + components: + - pos: 5.5,-19.5 + parent: 4812 + type: Transform + - uid: 5613 + components: + - pos: 2.5,-18.5 + parent: 4812 + type: Transform + - uid: 5614 + components: + - pos: 2.5,-16.5 + parent: 4812 + type: Transform + - uid: 5615 + components: + - pos: 2.5,-14.5 + parent: 4812 + type: Transform + - uid: 5616 + components: + - pos: 3.5,-13.5 + parent: 4812 + type: Transform + - uid: 5617 + components: + - pos: 5.5,-13.5 + parent: 4812 + type: Transform + - uid: 5618 + components: + - pos: 7.5,-13.5 + parent: 4812 + type: Transform + - uid: 5622 + components: + - pos: 14.5,-19.5 + parent: 4812 + type: Transform + - uid: 5623 + components: + - pos: 20.5,-25.5 + parent: 4812 + type: Transform + - uid: 5624 + components: + - pos: 20.5,-23.5 + parent: 4812 + type: Transform + - uid: 5767 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-26.5 + parent: 4812 + type: Transform + - uid: 5768 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-24.5 + parent: 4812 + type: Transform + - uid: 5806 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-19.5 + parent: 4812 + type: Transform + - uid: 5833 + components: + - pos: 32.5,-22.5 + parent: 4812 + type: Transform + - uid: 5834 + components: + - pos: 33.5,-22.5 + parent: 4812 + type: Transform + - uid: 5835 + components: + - pos: 34.5,-22.5 + parent: 4812 + type: Transform + - uid: 6315 + components: + - pos: 23.5,-27.5 + parent: 4812 + type: Transform + - uid: 6316 + components: + - pos: 22.5,-27.5 + parent: 4812 + type: Transform + - uid: 6354 + components: + - pos: 9.5,-13.5 + parent: 4812 + type: Transform + - uid: 6594 + components: + - pos: -13.5,-17.5 + parent: 4812 + type: Transform + - uid: 6595 + components: + - pos: -13.5,-15.5 + parent: 4812 + type: Transform + - uid: 6596 + components: + - pos: -12.5,-13.5 + parent: 4812 + type: Transform + - uid: 6597 + components: + - pos: -10.5,-13.5 + parent: 4812 + type: Transform + - uid: 6598 + components: + - pos: -8.5,-13.5 + parent: 4812 + type: Transform + - uid: 6599 + components: + - pos: -7.5,-14.5 + parent: 4812 + type: Transform + - uid: 6600 + components: + - pos: -7.5,-16.5 + parent: 4812 + type: Transform + - uid: 6601 + components: + - pos: -7.5,-18.5 + parent: 4812 + type: Transform + - uid: 6602 + components: + - pos: -8.5,-19.5 + parent: 4812 + type: Transform + - uid: 6603 + components: + - pos: -12.5,-19.5 + parent: 4812 + type: Transform + - uid: 6633 + components: + - pos: -44.5,-30.5 + parent: 4812 + type: Transform + - uid: 6658 + components: + - pos: -37.5,-36.5 + parent: 4812 + type: Transform + - uid: 6671 + components: + - pos: -26.5,-13.5 + parent: 4812 + type: Transform + - uid: 6672 + components: + - pos: -23.5,-13.5 + parent: 4812 + type: Transform + - uid: 6678 + components: + - pos: -17.5,-16.5 + parent: 4812 + type: Transform + - uid: 6799 + components: + - pos: -15.5,-37.5 + parent: 4812 + type: Transform + - uid: 6800 + components: + - pos: -16.5,-37.5 + parent: 4812 + type: Transform + - uid: 6801 + components: + - pos: -17.5,-37.5 + parent: 4812 + type: Transform + - uid: 6802 + components: + - pos: -19.5,-40.5 + parent: 4812 + type: Transform + - uid: 6803 + components: + - pos: -20.5,-40.5 + parent: 4812 + type: Transform + - uid: 6804 + components: + - pos: -25.5,-37.5 + parent: 4812 + type: Transform + - uid: 6805 + components: + - pos: -25.5,-35.5 + parent: 4812 + type: Transform + - uid: 6983 + components: + - pos: -12.5,-35.5 + parent: 4812 + type: Transform + - uid: 7208 + components: + - pos: -7.5,-20.5 + parent: 4812 + type: Transform + - uid: 7220 + components: + - pos: -13.5,-23.5 + parent: 4812 + type: Transform + - uid: 7221 + components: + - pos: -14.5,-24.5 + parent: 4812 + type: Transform + - uid: 7222 + components: + - pos: -15.5,-24.5 + parent: 4812 + type: Transform + - uid: 7223 + components: + - pos: -17.5,-24.5 + parent: 4812 + type: Transform + - uid: 7224 + components: + - pos: -13.5,-20.5 + parent: 4812 + type: Transform + - uid: 7251 + components: + - pos: -21.5,-24.5 + parent: 4812 + type: Transform + - uid: 7258 + components: + - pos: -7.5,-25.5 + parent: 4812 + type: Transform + - uid: 7301 + components: + - pos: -38.5,-37.5 + parent: 4812 + type: Transform + - uid: 7330 + components: + - pos: -20.5,-24.5 + parent: 4812 + type: Transform + - uid: 7332 + components: + - pos: -20.5,-13.5 + parent: 4812 + type: Transform + - uid: 7340 + components: + - pos: -7.5,-26.5 + parent: 4812 + type: Transform + - uid: 7352 + components: + - pos: -18.5,-13.5 + parent: 4812 + type: Transform + - uid: 7404 + components: + - pos: -8.5,-24.5 + parent: 4812 + type: Transform + - uid: 7405 + components: + - pos: -10.5,-24.5 + parent: 4812 + type: Transform + - uid: 7432 + components: + - pos: -23.5,-22.5 + parent: 4812 + type: Transform + - uid: 7437 + components: + - pos: -24.5,-24.5 + parent: 4812 + type: Transform + - uid: 7438 + components: + - pos: -26.5,-24.5 + parent: 4812 + type: Transform + - uid: 7620 + components: + - pos: -7.5,-27.5 + parent: 4812 + type: Transform + - uid: 7915 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,10.5 + parent: 4812 + type: Transform + - uid: 7916 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,12.5 + parent: 4812 + type: Transform + - uid: 7917 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,10.5 + parent: 4812 + type: Transform + - uid: 7918 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,10.5 + parent: 4812 + type: Transform + - uid: 7919 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,13.5 + parent: 4812 + type: Transform + - uid: 7920 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,13.5 + parent: 4812 + type: Transform + - uid: 7921 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,14.5 + parent: 4812 + type: Transform + - uid: 7922 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,17.5 + parent: 4812 + type: Transform + - uid: 7923 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,17.5 + parent: 4812 + type: Transform + - uid: 7924 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,16.5 + parent: 4812 + type: Transform + - uid: 7925 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,19.5 + parent: 4812 + type: Transform + - uid: 7926 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,20.5 + parent: 4812 + type: Transform + - uid: 7927 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,20.5 + parent: 4812 + type: Transform + - uid: 7928 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,29.5 + parent: 4812 + type: Transform + - uid: 7929 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,31.5 + parent: 4812 + type: Transform + - uid: 7930 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,33.5 + parent: 4812 + type: Transform + - uid: 7931 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,33.5 + parent: 4812 + type: Transform + - uid: 7933 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,33.5 + parent: 4812 + type: Transform + - uid: 8057 + components: + - pos: -35.5,18.5 + parent: 4812 + type: Transform + - uid: 8058 + components: + - pos: -33.5,18.5 + parent: 4812 + type: Transform + - uid: 8059 + components: + - pos: -32.5,19.5 + parent: 4812 + type: Transform + - uid: 8060 + components: + - pos: -32.5,20.5 + parent: 4812 + type: Transform + - uid: 8166 + components: + - pos: -20.5,21.5 + parent: 4812 + type: Transform + - uid: 8167 + components: + - pos: -21.5,21.5 + parent: 4812 + type: Transform + - uid: 8168 + components: + - pos: -23.5,21.5 + parent: 4812 + type: Transform + - uid: 8174 + components: + - pos: -21.5,26.5 + parent: 4812 + type: Transform + - uid: 8175 + components: + - pos: -23.5,26.5 + parent: 4812 + type: Transform + - uid: 8526 + components: + - pos: -23.5,37.5 + parent: 4812 + type: Transform + - uid: 8527 + components: + - pos: -22.5,37.5 + parent: 4812 + type: Transform + - uid: 8528 + components: + - pos: -11.5,32.5 + parent: 4812 + type: Transform + - uid: 8529 + components: + - pos: -11.5,33.5 + parent: 4812 + type: Transform + - uid: 8530 + components: + - pos: -15.5,37.5 + parent: 4812 + type: Transform + - uid: 8531 + components: + - pos: -14.5,37.5 + parent: 4812 + type: Transform + - uid: 8532 + components: + - pos: -11.5,35.5 + parent: 4812 + type: Transform + - uid: 8533 + components: + - pos: -11.5,36.5 + parent: 4812 + type: Transform + - uid: 8534 + components: + - pos: -12.5,37.5 + parent: 4812 + type: Transform + - uid: 8535 + components: + - pos: -11.5,37.5 + parent: 4812 + type: Transform + - uid: 8536 + components: + - pos: -10.5,37.5 + parent: 4812 + type: Transform + - uid: 8537 + components: + - pos: -9.5,37.5 + parent: 4812 + type: Transform + - uid: 8538 + components: + - pos: -6.5,38.5 + parent: 4812 + type: Transform + - uid: 8539 + components: + - pos: -5.5,38.5 + parent: 4812 + type: Transform + - uid: 8540 + components: + - pos: -0.5,38.5 + parent: 4812 + type: Transform + - uid: 8541 + components: + - pos: 0.5,38.5 + parent: 4812 + type: Transform + - uid: 8542 + components: + - pos: 1.5,38.5 + parent: 4812 + type: Transform + - uid: 8543 + components: + - pos: 2.5,38.5 + parent: 4812 + type: Transform + - uid: 8544 + components: + - pos: 0.5,43.5 + parent: 4812 + type: Transform + - uid: 8545 + components: + - pos: 0.5,42.5 + parent: 4812 + type: Transform + - uid: 8546 + components: + - pos: 0.5,41.5 + parent: 4812 + type: Transform + - uid: 8547 + components: + - pos: 10.5,37.5 + parent: 4812 + type: Transform + - uid: 8548 + components: + - pos: 8.5,33.5 + parent: 4812 + type: Transform + - uid: 8696 + components: + - pos: -27.5,-8.5 + parent: 4812 + type: Transform + - uid: 8697 + components: + - pos: -27.5,-7.5 + parent: 4812 + type: Transform + - uid: 8698 + components: + - pos: -27.5,-6.5 + parent: 4812 + type: Transform + - uid: 8699 + components: + - pos: -29.5,-4.5 + parent: 4812 + type: Transform + - uid: 8700 + components: + - pos: -31.5,-4.5 + parent: 4812 + type: Transform + - uid: 8701 + components: + - pos: -28.5,-3.5 + parent: 4812 + type: Transform + - uid: 8702 + components: + - pos: -28.5,-0.5 + parent: 4812 + type: Transform + - uid: 8703 + components: + - pos: -29.5,0.5 + parent: 4812 + type: Transform + - uid: 8704 + components: + - pos: -31.5,0.5 + parent: 4812 + type: Transform + - uid: 8705 + components: + - pos: -27.5,2.5 + parent: 4812 + type: Transform + - uid: 8706 + components: + - pos: -27.5,3.5 + parent: 4812 + type: Transform + - uid: 8707 + components: + - pos: -27.5,4.5 + parent: 4812 + type: Transform + - uid: 8708 + components: + - pos: -35.5,1.5 + parent: 4812 + type: Transform + - uid: 8709 + components: + - pos: -35.5,3.5 + parent: 4812 + type: Transform + - uid: 8710 + components: + - pos: -35.5,5.5 + parent: 4812 + type: Transform + - uid: 8752 + components: + - pos: -44.5,-4.5 + parent: 4812 + type: Transform + - uid: 8753 + components: + - pos: -42.5,-4.5 + parent: 4812 + type: Transform + - uid: 8841 + components: + - pos: -27.5,-41.5 + parent: 4812 + type: Transform + - uid: 8842 + components: + - pos: -37.5,-38.5 + parent: 4812 + type: Transform + - uid: 8843 + components: + - pos: -36.5,-38.5 + parent: 4812 + type: Transform + - uid: 8844 + components: + - pos: -39.5,-36.5 + parent: 4812 + type: Transform + - uid: 8845 + components: + - pos: -40.5,-36.5 + parent: 4812 + type: Transform + - uid: 8846 + components: + - pos: -41.5,-36.5 + parent: 4812 + type: Transform + - uid: 8847 + components: + - pos: -41.5,-35.5 + parent: 4812 + type: Transform + - uid: 9087 + components: + - pos: -28.5,-26.5 + parent: 4812 + type: Transform + - uid: 9413 + components: + - pos: -48.5,-1.5 + parent: 4812 + type: Transform + - uid: 9414 + components: + - pos: -48.5,-0.5 + parent: 4812 + type: Transform + - uid: 9415 + components: + - pos: -48.5,0.5 + parent: 4812 + type: Transform + - uid: 9416 + components: + - pos: -48.5,1.5 + parent: 4812 + type: Transform + - uid: 9417 + components: + - pos: -48.5,2.5 + parent: 4812 + type: Transform + - uid: 9418 + components: + - pos: -48.5,3.5 + parent: 4812 + type: Transform + - uid: 9419 + components: + - pos: -48.5,4.5 + parent: 4812 + type: Transform + - uid: 9420 + components: + - pos: -48.5,5.5 + parent: 4812 + type: Transform + - uid: 9421 + components: + - pos: -48.5,6.5 + parent: 4812 + type: Transform + - uid: 9422 + components: + - pos: -48.5,7.5 + parent: 4812 + type: Transform + - uid: 9423 + components: + - pos: -48.5,8.5 + parent: 4812 + type: Transform + - uid: 9424 + components: + - pos: -48.5,9.5 + parent: 4812 + type: Transform + - uid: 9425 + components: + - pos: -48.5,10.5 + parent: 4812 + type: Transform + - uid: 9426 + components: + - pos: -48.5,11.5 + parent: 4812 + type: Transform + - uid: 9427 + components: + - pos: -48.5,12.5 + parent: 4812 + type: Transform + - uid: 9428 + components: + - pos: -48.5,13.5 + parent: 4812 + type: Transform + - uid: 9442 + components: + - pos: -50.5,11.5 + parent: 4812 + type: Transform + - uid: 9443 + components: + - pos: -50.5,9.5 + parent: 4812 + type: Transform + - uid: 9444 + components: + - pos: -50.5,7.5 + parent: 4812 + type: Transform + - uid: 9445 + components: + - pos: -50.5,5.5 + parent: 4812 + type: Transform + - uid: 9446 + components: + - pos: -50.5,3.5 + parent: 4812 + type: Transform + - uid: 9447 + components: + - pos: -50.5,1.5 + parent: 4812 + type: Transform + - uid: 9482 + components: + - pos: -46.5,16.5 + parent: 4812 + type: Transform + - uid: 9483 + components: + - pos: -46.5,17.5 + parent: 4812 + type: Transform + - uid: 9484 + components: + - pos: -45.5,15.5 + parent: 4812 + type: Transform + - uid: 9485 + components: + - pos: -44.5,15.5 + parent: 4812 + type: Transform + - uid: 9486 + components: + - pos: -43.5,15.5 + parent: 4812 + type: Transform + - uid: 9487 + components: + - pos: -42.5,16.5 + parent: 4812 + type: Transform + - uid: 9488 + components: + - pos: -42.5,17.5 + parent: 4812 + type: Transform + - uid: 9505 + components: + - pos: -47.5,13.5 + parent: 4812 + type: Transform + - uid: 9506 + components: + - pos: -46.5,13.5 + parent: 4812 + type: Transform + - uid: 9507 + components: + - pos: -45.5,13.5 + parent: 4812 + type: Transform + - uid: 9508 + components: + - pos: -44.5,13.5 + parent: 4812 + type: Transform + - uid: 9509 + components: + - pos: -43.5,13.5 + parent: 4812 + type: Transform + - uid: 9510 + components: + - pos: -42.5,13.5 + parent: 4812 + type: Transform + - uid: 9609 + components: + - pos: -41.5,-28.5 + parent: 4812 + type: Transform + - uid: 9649 + components: + - pos: -12.5,-58.5 + parent: 4812 + type: Transform + - uid: 9650 + components: + - pos: -12.5,-57.5 + parent: 4812 + type: Transform + - uid: 9653 + components: + - pos: -9.5,-58.5 + parent: 4812 + type: Transform + - uid: 9654 + components: + - pos: -9.5,-57.5 + parent: 4812 + type: Transform + - uid: 9832 + components: + - pos: -47.5,-7.5 + parent: 4812 + type: Transform + - uid: 9835 + components: + - pos: -47.5,-8.5 + parent: 4812 + type: Transform + - uid: 9861 + components: + - pos: -46.5,-11.5 + parent: 4812 + type: Transform + - uid: 9862 + components: + - pos: -46.5,-13.5 + parent: 4812 + type: Transform + - uid: 9871 + components: + - pos: -51.5,-11.5 + parent: 4812 + type: Transform + - uid: 9877 + components: + - pos: -51.5,-13.5 + parent: 4812 + type: Transform + - uid: 9909 + components: + - pos: -43.5,-13.5 + parent: 4812 + type: Transform + - uid: 9910 + components: + - pos: -43.5,-11.5 + parent: 4812 + type: Transform + - uid: 9911 + components: + - pos: -41.5,-9.5 + parent: 4812 + type: Transform + - uid: 9912 + components: + - pos: -39.5,-9.5 + parent: 4812 + type: Transform + - uid: 10315 + components: + - pos: -56.5,-23.5 + parent: 4812 + type: Transform + - uid: 10316 + components: + - pos: -53.5,-23.5 + parent: 4812 + type: Transform + - uid: 10317 + components: + - pos: -52.5,-23.5 + parent: 4812 + type: Transform + - uid: 10318 + components: + - pos: -52.5,-26.5 + parent: 4812 + type: Transform + - uid: 10319 + components: + - pos: -53.5,-26.5 + parent: 4812 + type: Transform + - uid: 10320 + components: + - pos: -54.5,-26.5 + parent: 4812 + type: Transform + - uid: 10321 + components: + - pos: -54.5,-25.5 + parent: 4812 + type: Transform + - uid: 10371 + components: + - pos: -71.5,-24.5 + parent: 4812 + type: Transform + - uid: 10372 + components: + - pos: -71.5,-25.5 + parent: 4812 + type: Transform + - uid: 10373 + components: + - pos: -71.5,-26.5 + parent: 4812 + type: Transform + - uid: 10374 + components: + - pos: -69.5,-28.5 + parent: 4812 + type: Transform + - uid: 10375 + components: + - pos: -70.5,-28.5 + parent: 4812 + type: Transform + - uid: 10376 + components: + - pos: -71.5,-28.5 + parent: 4812 + type: Transform + - uid: 10377 + components: + - pos: -71.5,-20.5 + parent: 4812 + type: Transform + - uid: 10378 + components: + - pos: -71.5,-19.5 + parent: 4812 + type: Transform + - uid: 10379 + components: + - pos: -71.5,-18.5 + parent: 4812 + type: Transform + - uid: 10380 + components: + - pos: -71.5,-16.5 + parent: 4812 + type: Transform + - uid: 10381 + components: + - pos: -70.5,-16.5 + parent: 4812 + type: Transform + - uid: 10382 + components: + - pos: -69.5,-16.5 + parent: 4812 + type: Transform + - uid: 10383 + components: + - pos: -67.5,-16.5 + parent: 4812 + type: Transform + - uid: 10384 + components: + - pos: -66.5,-16.5 + parent: 4812 + type: Transform + - uid: 10385 + components: + - pos: -65.5,-16.5 + parent: 4812 + type: Transform + - uid: 10386 + components: + - pos: -63.5,-16.5 + parent: 4812 + type: Transform + - uid: 10387 + components: + - pos: -62.5,-16.5 + parent: 4812 + type: Transform + - uid: 10388 + components: + - pos: -61.5,-16.5 + parent: 4812 + type: Transform + - uid: 10389 + components: + - pos: -67.5,-28.5 + parent: 4812 + type: Transform + - uid: 10390 + components: + - pos: -66.5,-28.5 + parent: 4812 + type: Transform + - uid: 10391 + components: + - pos: -65.5,-28.5 + parent: 4812 + type: Transform + - uid: 10392 + components: + - pos: -62.5,-28.5 + parent: 4812 + type: Transform + - uid: 10393 + components: + - pos: -61.5,-28.5 + parent: 4812 + type: Transform + - uid: 10394 + components: + - pos: -63.5,-28.5 + parent: 4812 + type: Transform + - uid: 10395 + components: + - pos: -59.5,-28.5 + parent: 4812 + type: Transform + - uid: 10396 + components: + - pos: -58.5,-28.5 + parent: 4812 + type: Transform + - uid: 10397 + components: + - pos: -57.5,-28.5 + parent: 4812 + type: Transform + - uid: 10398 + components: + - pos: -55.5,-28.5 + parent: 4812 + type: Transform + - uid: 10399 + components: + - pos: -54.5,-28.5 + parent: 4812 + type: Transform + - uid: 10400 + components: + - pos: -53.5,-28.5 + parent: 4812 + type: Transform + - uid: 10401 + components: + - pos: -51.5,-28.5 + parent: 4812 + type: Transform + - uid: 10402 + components: + - pos: -50.5,-28.5 + parent: 4812 + type: Transform + - uid: 10403 + components: + - pos: -49.5,-28.5 + parent: 4812 + type: Transform + - uid: 10411 + components: + - pos: -52.5,-7.5 + parent: 4812 + type: Transform + - uid: 10412 + components: + - pos: -53.5,-7.5 + parent: 4812 + type: Transform + - uid: 10413 + components: + - pos: -54.5,-7.5 + parent: 4812 + type: Transform + - uid: 10414 + components: + - pos: -54.5,-5.5 + parent: 4812 + type: Transform + - uid: 10415 + components: + - pos: -53.5,-5.5 + parent: 4812 + type: Transform + - uid: 10416 + components: + - pos: -52.5,-5.5 + parent: 4812 + type: Transform + - uid: 10440 + components: + - pos: -13.5,-59.5 + parent: 4812 + type: Transform + - uid: 10441 + components: + - pos: -14.5,-59.5 + parent: 4812 + type: Transform + - uid: 10609 + components: + - pos: -47.5,-24.5 + parent: 4812 + type: Transform + - uid: 10632 + components: + - pos: -47.5,-6.5 + parent: 4812 + type: Transform + - uid: 10636 + components: + - pos: -48.5,-10.5 + parent: 4812 + type: Transform + - uid: 11216 + components: + - pos: 6.5,-34.5 + parent: 4812 + type: Transform + - uid: 11217 + components: + - pos: 6.5,-38.5 + parent: 4812 + type: Transform + - uid: 11218 + components: + - pos: 6.5,-40.5 + parent: 4812 + type: Transform + - uid: 11219 + components: + - pos: 6.5,-42.5 + parent: 4812 + type: Transform + - uid: 11220 + components: + - pos: 11.5,-42.5 + parent: 4812 + type: Transform + - uid: 11354 + components: + - pos: 37.5,-31.5 + parent: 4812 + type: Transform + - uid: 11355 + components: + - pos: 38.5,-31.5 + parent: 4812 + type: Transform + - uid: 11356 + components: + - pos: 38.5,-32.5 + parent: 4812 + type: Transform + - uid: 11390 + components: + - pos: 32.5,-37.5 + parent: 4812 + type: Transform + - uid: 11391 + components: + - pos: 31.5,-37.5 + parent: 4812 + type: Transform + - uid: 11708 + components: + - pos: 53.5,-33.5 + parent: 4812 + type: Transform + - uid: 11709 + components: + - pos: 53.5,-32.5 + parent: 4812 + type: Transform + - uid: 11710 + components: + - pos: 53.5,-40.5 + parent: 4812 + type: Transform + - uid: 11711 + components: + - pos: 53.5,-39.5 + parent: 4812 + type: Transform + - uid: 11712 + components: + - pos: 53.5,-38.5 + parent: 4812 + type: Transform + - uid: 11713 + components: + - pos: 52.5,-42.5 + parent: 4812 + type: Transform + - uid: 11714 + components: + - pos: 51.5,-42.5 + parent: 4812 + type: Transform + - uid: 11715 + components: + - pos: 50.5,-42.5 + parent: 4812 + type: Transform + - uid: 11718 + components: + - pos: 46.5,-42.5 + parent: 4812 + type: Transform + - uid: 11719 + components: + - pos: 44.5,-42.5 + parent: 4812 + type: Transform + - uid: 11720 + components: + - pos: 43.5,-42.5 + parent: 4812 + type: Transform + - uid: 11721 + components: + - pos: 42.5,-42.5 + parent: 4812 + type: Transform + - uid: 11723 + components: + - pos: 39.5,-42.5 + parent: 4812 + type: Transform + - uid: 11724 + components: + - pos: 38.5,-42.5 + parent: 4812 + type: Transform + - uid: 11725 + components: + - pos: 52.5,-30.5 + parent: 4812 + type: Transform + - uid: 11726 + components: + - pos: 51.5,-30.5 + parent: 4812 + type: Transform + - uid: 11727 + components: + - pos: 50.5,-30.5 + parent: 4812 + type: Transform + - uid: 11728 + components: + - pos: 48.5,-30.5 + parent: 4812 + type: Transform + - uid: 11729 + components: + - pos: 47.5,-30.5 + parent: 4812 + type: Transform + - uid: 11730 + components: + - pos: 46.5,-30.5 + parent: 4812 + type: Transform + - uid: 11731 + components: + - pos: 44.5,-30.5 + parent: 4812 + type: Transform + - uid: 11732 + components: + - pos: 43.5,-30.5 + parent: 4812 + type: Transform + - uid: 11734 + components: + - pos: 40.5,-30.5 + parent: 4812 + type: Transform + - uid: 11740 + components: + - pos: 18.5,-39.5 + parent: 4812 + type: Transform + - uid: 11741 + components: + - pos: 17.5,-39.5 + parent: 4812 + type: Transform + - uid: 11742 + components: + - pos: 21.5,-39.5 + parent: 4812 + type: Transform + - uid: 11743 + components: + - pos: 20.5,-39.5 + parent: 4812 + type: Transform + - uid: 12108 + components: + - pos: -10.5,-56.5 + parent: 4812 + type: Transform + - uid: 12121 + components: + - pos: -53.5,17.5 + parent: 4812 + type: Transform + - uid: 12122 + components: + - pos: -52.5,17.5 + parent: 4812 + type: Transform + - uid: 12123 + components: + - pos: -51.5,17.5 + parent: 4812 + type: Transform + - uid: 12124 + components: + - pos: -50.5,17.5 + parent: 4812 + type: Transform + - uid: 12125 + components: + - pos: -49.5,17.5 + parent: 4812 + type: Transform + - uid: 12126 + components: + - pos: -49.5,15.5 + parent: 4812 + type: Transform + - uid: 12127 + components: + - pos: -50.5,15.5 + parent: 4812 + type: Transform + - uid: 12128 + components: + - pos: -51.5,15.5 + parent: 4812 + type: Transform + - uid: 12129 + components: + - pos: -52.5,15.5 + parent: 4812 + type: Transform + - uid: 12130 + components: + - pos: -53.5,15.5 + parent: 4812 + type: Transform + - uid: 12131 + components: + - pos: -57.5,12.5 + parent: 4812 + type: Transform + - uid: 12132 + components: + - pos: -57.5,11.5 + parent: 4812 + type: Transform + - uid: 12133 + components: + - pos: -57.5,10.5 + parent: 4812 + type: Transform + - uid: 12134 + components: + - pos: -57.5,9.5 + parent: 4812 + type: Transform + - uid: 12135 + components: + - pos: -57.5,8.5 + parent: 4812 + type: Transform + - uid: 12136 + components: + - pos: -57.5,7.5 + parent: 4812 + type: Transform + - uid: 12137 + components: + - pos: -57.5,6.5 + parent: 4812 + type: Transform + - uid: 12138 + components: + - pos: -57.5,5.5 + parent: 4812 + type: Transform + - uid: 12139 + components: + - pos: -57.5,4.5 + parent: 4812 + type: Transform + - uid: 12140 + components: + - pos: -57.5,3.5 + parent: 4812 + type: Transform + - uid: 12141 + components: + - pos: -57.5,2.5 + parent: 4812 + type: Transform + - uid: 12142 + components: + - pos: -57.5,1.5 + parent: 4812 + type: Transform + - uid: 12143 + components: + - pos: -57.5,0.5 + parent: 4812 + type: Transform + - uid: 12416 + components: + - pos: -8.5,-59.5 + parent: 4812 + type: Transform + - uid: 12417 + components: + - pos: -7.5,-59.5 + parent: 4812 + type: Transform +- proto: GrilleBroken + entities: + - uid: 1544 + components: + - rot: 3.141592653589793 rad + pos: 8.5,4.5 + parent: 4812 + type: Transform + - uid: 9088 + components: + - pos: -30.5,-26.5 + parent: 4812 + type: Transform + - uid: 11073 + components: + - pos: 11.5,-36.5 + parent: 4812 + type: Transform + - uid: 11081 + components: + - pos: 11.5,-38.5 + parent: 4812 + type: Transform + - uid: 11108 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-32.5 + parent: 4812 + type: Transform + - uid: 11109 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-31.5 + parent: 4812 + type: Transform + - uid: 11221 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-36.5 + parent: 4812 + type: Transform + - uid: 11222 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-32.5 + parent: 4812 + type: Transform + - uid: 11223 + components: + - pos: 11.5,-40.5 + parent: 4812 + type: Transform + - uid: 11707 + components: + - pos: 53.5,-34.5 + parent: 4812 + type: Transform + - uid: 11716 + components: + - rot: -1.5707963267948966 rad + pos: 49.5,-30.5 + parent: 4812 + type: Transform + - uid: 11717 + components: + - pos: 45.5,-30.5 + parent: 4812 + type: Transform + - uid: 11722 + components: + - pos: 42.5,-30.5 + parent: 4812 + type: Transform + - uid: 11733 + components: + - pos: 47.5,-42.5 + parent: 4812 + type: Transform + - uid: 11735 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-42.5 + parent: 4812 + type: Transform + - uid: 11736 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-42.5 + parent: 4812 + type: Transform + - uid: 11737 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-42.5 + parent: 4812 + type: Transform + - uid: 11738 + components: + - pos: 40.5,-42.5 + parent: 4812 + type: Transform + - uid: 11849 + components: + - rot: 3.141592653589793 rad + pos: -13.5,10.5 + parent: 4812 + type: Transform + - uid: 11859 + components: + - pos: 15.5,-15.5 + parent: 4812 + type: Transform +- proto: GunSafeRifleLecter + entities: + - uid: 4809 + components: + - pos: -36.5,19.5 + parent: 4812 + type: Transform +- proto: GunSafeSubMachineGunDrozd + entities: + - uid: 10442 + components: + - pos: -33.5,19.5 + parent: 4812 + type: Transform +- proto: Handcuffs + entities: + - uid: 4865 + components: + - pos: 17.570036,-11.532839 + parent: 4812 + type: Transform + - uid: 6479 + components: + - pos: -2.4305947,-24.439144 + parent: 4812 + type: Transform + - uid: 8452 + components: + - pos: -30.406057,10.489904 + parent: 4812 + type: Transform +- proto: HandheldGPSBasic + entities: + - uid: 8590 + components: + - pos: -18.546284,12.521154 + parent: 4812 + type: Transform +- proto: HandheldHealthAnalyzer + entities: + - uid: 6246 + components: + - pos: 13.5409565,-28.418493 + parent: 4812 + type: Transform + - uid: 9027 + components: + - pos: -39.497536,-35.530823 + parent: 4812 + type: Transform +- proto: HandheldStationMap + entities: + - uid: 7295 + components: + - pos: -5.5136886,26.677116 + parent: 4812 + type: Transform +- proto: HandLabeler + entities: + - uid: 1802 + components: + - pos: -4.4966984,14.507313 + parent: 4812 + type: Transform + - uid: 2534 + components: + - pos: 9.005315,26.569424 + parent: 4812 + type: Transform + - uid: 3369 + components: + - pos: 20.465384,17.498707 + parent: 4812 + type: Transform + - uid: 6348 + components: + - pos: 6.3559675,-25.44819 + parent: 4812 + type: Transform + - uid: 6639 + components: + - pos: -8.51619,-18.607918 + parent: 4812 + type: Transform + - uid: 8594 + components: + - pos: -19.500504,10.456865 + parent: 4812 + type: Transform +- proto: HarmonicaInstrument + entities: + - uid: 11857 + components: + - pos: -29.373522,30.531204 + parent: 4812 + type: Transform +- proto: Hemostat + entities: + - uid: 6244 + components: + - pos: 13.5565815,-27.824743 + parent: 4812 + type: Transform +- proto: HighSecCommandLocked + entities: + - uid: 1846 + components: + - pos: -2.5,21.5 + parent: 4812 + type: Transform + - uid: 3287 + components: + - pos: 22.5,6.5 + parent: 4812 + type: Transform + - uid: 3688 + components: + - pos: 8.5,45.5 + parent: 4812 + type: Transform + - uid: 3689 + components: + - pos: 12.5,45.5 + parent: 4812 + type: Transform + - uid: 3690 + components: + - pos: 10.5,47.5 + parent: 4812 + type: Transform + - uid: 9886 + components: + - pos: -51.5,-12.5 + parent: 4812 + type: Transform +- proto: HospitalCurtainsOpen + entities: + - uid: 3228 + components: + - pos: 10.5,30.5 + parent: 4812 + type: Transform + - uid: 3229 + components: + - pos: -15.5,29.5 + parent: 4812 + type: Transform + - uid: 3421 + components: + - pos: -19.5,29.5 + parent: 4812 + type: Transform + - uid: 3451 + components: + - pos: 19.5,36.5 + parent: 4812 + type: Transform + - uid: 7461 + components: + - pos: -24.5,-28.5 + parent: 4812 + type: Transform +- proto: hydroponicsSoil + entities: + - uid: 8385 + components: + - pos: -32.5,29.5 + parent: 4812 + type: Transform + - uid: 8386 + components: + - pos: -32.5,30.5 + parent: 4812 + type: Transform + - uid: 8387 + components: + - pos: -32.5,31.5 + parent: 4812 + type: Transform + - uid: 9610 + components: + - pos: -42.5,-28.5 + parent: 4812 + type: Transform + - uid: 9611 + components: + - pos: -44.5,-28.5 + parent: 4812 + type: Transform + - uid: 9612 + components: + - pos: -43.5,-29.5 + parent: 4812 + type: Transform + - uid: 11285 + components: + - pos: 16.5,-36.5 + parent: 4812 + type: Transform + - uid: 11286 + components: + - pos: 16.5,-38.5 + parent: 4812 + type: Transform + - uid: 11287 + components: + - pos: 18.5,-38.5 + parent: 4812 + type: Transform + - uid: 11288 + components: + - pos: 20.5,-38.5 + parent: 4812 + type: Transform + - uid: 11289 + components: + - pos: 22.5,-38.5 + parent: 4812 + type: Transform +- proto: HydroponicsToolClippers + entities: + - uid: 1457 + components: + - pos: -12.442752,-7.42547 + parent: 4812 + type: Transform +- proto: HydroponicsToolHatchet + entities: + - uid: 1459 + components: + - pos: -12.505252,-7.378595 + parent: 4812 + type: Transform +- proto: HydroponicsToolMiniHoe + entities: + - uid: 1455 + components: + - pos: -11.520877,-7.441095 + parent: 4812 + type: Transform + - uid: 8407 + components: + - pos: -31.533045,30.44869 + parent: 4812 + type: Transform + - uid: 11299 + components: + - pos: 16.50683,-37.620907 + parent: 4812 + type: Transform +- proto: HydroponicsToolScythe + entities: + - uid: 1458 + components: + - pos: -12.458377,-7.42547 + parent: 4812 + type: Transform +- proto: HydroponicsToolSpade + entities: + - uid: 1456 + components: + - pos: -11.489627,-7.378595 + parent: 4812 + type: Transform + - uid: 8408 + components: + - pos: -31.45492,30.47994 + parent: 4812 + type: Transform + - uid: 9619 + components: + - pos: -44.466614,-28.47166 + parent: 4812 + type: Transform + - uid: 11298 + components: + - pos: 20.50683,-38.495907 + parent: 4812 + type: Transform +- proto: hydroponicsTray + entities: + - uid: 1063 + components: + - pos: -16.5,-9.5 + parent: 4812 + type: Transform + - uid: 1064 + components: + - pos: -15.5,-9.5 + parent: 4812 + type: Transform + - uid: 1065 + components: + - pos: -14.5,-9.5 + parent: 4812 + type: Transform + - uid: 1066 + components: + - pos: -13.5,-9.5 + parent: 4812 + type: Transform + - uid: 1067 + components: + - pos: -12.5,-9.5 + parent: 4812 + type: Transform + - uid: 1068 + components: + - pos: -11.5,-9.5 + parent: 4812 + type: Transform + - uid: 1069 + components: + - pos: -11.5,-5.5 + parent: 4812 + type: Transform + - uid: 1070 + components: + - pos: -12.5,-5.5 + parent: 4812 + type: Transform + - uid: 1071 + components: + - pos: -13.5,-5.5 + parent: 4812 + type: Transform + - uid: 1072 + components: + - pos: -14.5,-5.5 + parent: 4812 + type: Transform + - uid: 1073 + components: + - pos: -15.5,-5.5 + parent: 4812 + type: Transform + - uid: 1074 + components: + - pos: -16.5,-5.5 + parent: 4812 + type: Transform +- proto: InflatableDoorStack + entities: + - uid: 9679 + components: + - pos: -30.41609,4.5644865 + parent: 4812 + type: Transform + - uid: 9680 + components: + - pos: -30.41609,4.5644865 + parent: 4812 + type: Transform +- proto: InflatableWallStack + entities: + - uid: 9677 + components: + - pos: -30.681715,4.7676115 + parent: 4812 + type: Transform + - uid: 9678 + components: + - pos: -30.681715,4.7676115 + parent: 4812 + type: Transform +- proto: IngotGold + entities: + - uid: 2712 + components: + - pos: -5.483521,25.426079 + parent: 4812 + type: Transform +- proto: IngotGold1 + entities: + - uid: 12458 + components: + - pos: -38.5391,25.681717 + parent: 4812 + type: Transform + - uid: 12459 + components: + - pos: -38.5391,25.681717 + parent: 4812 + type: Transform + - uid: 12460 + components: + - pos: -38.38285,25.619217 + parent: 4812 + type: Transform + - uid: 12461 + components: + - pos: -38.2891,25.541092 + parent: 4812 + type: Transform +- proto: IngotSilver + entities: + - uid: 2718 + components: + - pos: -5.446512,23.457329 + parent: 4812 + type: Transform +- proto: IntercomAll + entities: + - uid: 4850 + components: + - rot: 3.141592653589793 rad + pos: 1.5,31.5 + parent: 4812 + type: Transform + - uid: 4851 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,23.5 + parent: 4812 + type: Transform +- proto: IntercomCommand + entities: + - uid: 4834 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-19.5 + parent: 4812 + type: Transform + - uid: 4847 + components: + - pos: 6.5,30.5 + parent: 4812 + type: Transform + - uid: 4848 + components: + - pos: 17.5,36.5 + parent: 4812 + type: Transform + - uid: 4853 + components: + - pos: -19.5,26.5 + parent: 4812 + type: Transform + - uid: 12324 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-8.5 + parent: 4812 + type: Transform + - uid: 12400 + components: + - pos: 11.5,54.5 + parent: 4812 + type: Transform +- proto: IntercomCommon + entities: + - uid: 4935 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-40.5 + parent: 4812 + type: Transform + - uid: 12391 + components: + - pos: -17.5,3.5 + parent: 4812 + type: Transform + - uid: 12392 + components: + - pos: 5.5,23.5 + parent: 4812 + type: Transform + - uid: 12393 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-5.5 + parent: 4812 + type: Transform + - uid: 12396 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,1.5 + parent: 4812 + type: Transform + - uid: 12397 + components: + - pos: -4.5,21.5 + parent: 4812 + type: Transform +- proto: IntercomEngineering + entities: + - uid: 12389 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-9.5 + parent: 4812 + type: Transform + - uid: 12390 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-0.5 + parent: 4812 + type: Transform +- proto: IntercomMedical + entities: + - uid: 4852 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-35.5 + parent: 4812 + type: Transform +- proto: IntercomScience + entities: + - uid: 12394 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-18.5 + parent: 4812 + type: Transform + - uid: 12395 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-23.5 + parent: 4812 + type: Transform +- proto: IntercomSecurity + entities: + - uid: 4854 + components: + - rot: 3.141592653589793 rad + pos: -35.5,9.5 + parent: 4812 + type: Transform +- proto: IntercomService + entities: + - uid: 3977 + components: + - pos: -22.5,-5.5 + parent: 4812 + type: Transform + - uid: 4232 + components: + - rot: 3.141592653589793 rad + pos: 7.5,5.5 + parent: 4812 + type: Transform + - uid: 4673 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 4812 + type: Transform + - uid: 4674 + components: + - pos: -12.5,-4.5 + parent: 4812 + type: Transform +- proto: IntercomSupply + entities: + - uid: 4849 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,20.5 + parent: 4812 + type: Transform +- proto: JanitorialTrolley + entities: + - uid: 1489 + components: + - pos: -20.5,-7.5 + parent: 4812 + type: Transform +- proto: JetpackBlueFilled + entities: + - uid: 12504 + components: + - flags: InContainer + type: MetaData + - parent: 2709 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: JetpackMini + entities: + - uid: 3412 + components: + - pos: 17.49418,49.5522 + parent: 4812 + type: Transform +- proto: KitchenKnife + entities: + - uid: 1642 + components: + - pos: 6.5,-1.5 + parent: 4812 + type: Transform + - uid: 10998 + components: + - pos: -36.20571,29.520401 + parent: 4812 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 1561 + components: + - pos: 5.5,-1.5 + parent: 4812 + type: Transform + - uid: 8428 + components: + - pos: -39.5,12.5 + parent: 4812 + type: Transform + - uid: 12494 + components: + - pos: 9.5,-18.5 + parent: 4812 + type: Transform +- proto: KitchenReagentGrinder + entities: + - uid: 1454 + components: + - pos: -18.5,-8.5 + parent: 4812 + type: Transform + - uid: 1562 + components: + - pos: 3.5,-1.5 + parent: 4812 + type: Transform + - uid: 6346 + components: + - pos: 7.5,-17.5 + parent: 4812 + type: Transform + - uid: 6688 + components: + - pos: -8.5,-17.5 + parent: 4812 + type: Transform + - uid: 9026 + components: + - pos: -40.5,-34.5 + parent: 4812 + type: Transform +- proto: KitchenSpike + entities: + - uid: 1536 + components: + - pos: 6.5,-5.5 + parent: 4812 + type: Transform +- proto: Lamp + entities: + - uid: 1520 + components: + - pos: -17.392416,-1.3091464 + parent: 4812 + type: Transform + - containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 2502 + components: + - pos: 5.335086,29.824064 + parent: 4812 + type: Transform + - containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - canCollide: True + type: Physics + - uid: 2535 + components: + - pos: 8.536261,24.755358 + parent: 4812 + type: Transform + - containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - canCollide: True + type: Physics + - uid: 2585 + components: + - pos: -10.435654,29.715694 + parent: 4812 + type: Transform + - containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 2723 + components: + - pos: -3.451921,24.866032 + parent: 4812 + type: Transform + - containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - canCollide: True + type: Physics + - uid: 5376 + components: + - pos: 18.64816,-16.251589 + parent: 4812 + type: Transform + - containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 6291 + components: + - pos: 25.537617,-17.441427 + parent: 4812 + type: Transform + - containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 6409 + components: + - pos: -4.3562155,-15.356113 + parent: 4812 + type: Transform + - containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 7077 + components: + - pos: -32.443592,-14.338358 + parent: 4812 + type: Transform + - containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 7136 + components: + - pos: -31.474861,-18.271936 + parent: 4812 + type: Transform + - containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 8265 + components: + - pos: -21.463991,24.553658 + parent: 4812 + type: Transform + - containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 9576 + components: + - pos: -28.432161,1.6425915 + parent: 4812 + type: Transform + - containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 10704 + components: + - pos: -28.442137,-5.370996 + parent: 4812 + type: Transform + - containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LampBanana + entities: + - uid: 1706 + components: + - pos: -10.503301,1.611648 + parent: 4812 + type: Transform + - containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LampGold + entities: + - uid: 1762 + components: + - pos: -10.47069,9.477556 + parent: 4812 + type: Transform + - containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 2589 + components: + - pos: -13.466904,27.76257 + parent: 4812 + type: Transform + - containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 8296 + components: + - pos: -18.397654,15.527645 + parent: 4812 + type: Transform + - containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 9064 + components: + - pos: -31.475683,-40.265636 + parent: 4812 + type: Transform + - containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: Lantern + entities: + - uid: 7043 + components: + - pos: -18.349216,-33.27696 + parent: 4812 + type: Transform + - containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 7149 + components: + - pos: -31.078482,-23.278105 + parent: 4812 + type: Transform + - containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LeavesCannabis + entities: + - uid: 11295 + components: + - pos: 22.50683,-38.57403 + parent: 4812 + type: Transform +- proto: Lighter + entities: + - uid: 1759 + components: + - pos: -6.168007,4.498476 + parent: 4812 + type: Transform + - uid: 1760 + components: + - pos: 1.2657695,9.574495 + parent: 4812 + type: Transform + - uid: 11844 + components: + - pos: -7.3849344,12.439501 + parent: 4812 + type: Transform +- proto: LightReplacer + entities: + - uid: 1490 + components: + - pos: -23.51768,-6.333922 + parent: 4812 + type: Transform +- proto: LockerAtmosphericsFilled + entities: + - uid: 9570 + components: + - pos: -29.5,5.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 9571 + components: + - pos: -28.5,5.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerBoozeFilled + entities: + - uid: 1648 + components: + - pos: 5.5,9.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerBotanistFilled + entities: + - uid: 1103 + components: + - pos: -17.5,-5.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerCaptainFilled + entities: + - uid: 2595 + components: + - pos: -10.5,28.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerChemistryFilled + entities: + - uid: 6609 + components: + - pos: -12.5,-14.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerChiefEngineerFilled + entities: + - uid: 9879 + components: + - pos: -50.5,-6.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerChiefMedicalOfficerFilledHardsuit + entities: + - uid: 7453 + components: + - pos: -26.5,-28.5 + parent: 4812 + type: Transform +- proto: LockerDetectiveFilled + entities: + - uid: 5362 + components: + - pos: 18.5,-11.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 2578 + components: + - pos: 5.5,31.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 4491 + components: + - pos: 20.5,1.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 10600 + components: + - pos: -47.5,-19.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 10722 + components: + - pos: -38.5,8.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerEngineerFilled + entities: + - uid: 9719 + components: + - pos: -33.5,-9.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 9720 + components: + - pos: -32.5,-9.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 9721 + components: + - pos: -31.5,-9.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerEvidence + entities: + - uid: 4977 + components: + - pos: -29.5,24.5 + parent: 4812 + type: Transform + - uid: 6735 + components: + - pos: -27.5,24.5 + parent: 4812 + type: Transform + - uid: 6736 + components: + - pos: -28.5,24.5 + parent: 4812 + type: Transform + - uid: 8359 + components: + - pos: -31.5,18.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerFreezer + entities: + - uid: 1538 + components: + - pos: 2.5,-5.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 234.99966 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 1563 + components: + - pos: 5.5,0.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 2709 + components: + - pos: -4.5,26.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.8742619 + - 7.050795 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: + - 2710 + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 9626 + - 9625 + - 9615 + - 12504 + - 12503 + - 9589 + - 9613 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 7394 + components: + - pos: 3.5,-5.5 + parent: 4812 + type: Transform +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 2497 + components: + - pos: 5.5,28.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerHeadOfSecurityFilled + entities: + - uid: 8252 + components: + - pos: -21.5,28.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerMedical + entities: + - uid: 7328 + components: + - pos: -14.5,-17.5 + parent: 4812 + type: Transform +- proto: LockerMedicalFilled + entities: + - uid: 7400 + components: + - pos: -8.5,-27.5 + parent: 4812 + type: Transform + - uid: 7401 + components: + - pos: -8.5,-26.5 + parent: 4812 + type: Transform +- proto: LockerMedicineFilled + entities: + - uid: 7427 + components: + - pos: -22.5,-25.5 + parent: 4812 + type: Transform + - uid: 7579 + components: + - pos: -16.5,-20.5 + parent: 4812 + type: Transform + - uid: 9021 + components: + - pos: -39.5,-33.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerQuarterMasterFilled + entities: + - uid: 3441 + components: + - pos: 15.5,34.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6765 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerResearchDirectorFilled + entities: + - uid: 6286 + components: + - pos: 28.5,-18.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerSalvageSpecialistFilledHardsuit + entities: + - uid: 6777 + components: + - pos: 22.5,16.5 + parent: 4812 + type: Transform + - uid: 6778 + components: + - pos: 24.5,16.5 + parent: 4812 + type: Transform +- proto: LockerScienceFilled + entities: + - uid: 12495 + components: + - pos: 9.5,-27.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 12496 + components: + - pos: 9.5,-26.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerSecurityFilled + entities: + - uid: 6440 + components: + - pos: -1.5,-29.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 8421 + components: + - pos: -33.5,12.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 8422 + components: + - pos: -35.5,12.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerWallMedicalFilled + entities: + - uid: 7430 + components: + - pos: -22.5,-21.5 + parent: 4812 + type: Transform +- proto: LockerWardenFilled + entities: + - uid: 8337 + components: + - pos: -36.5,14.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 9681 + components: + - pos: -28.5,3.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: MachineAnomalyGenerator + entities: + - uid: 6341 + components: + - pos: 33.5,-24.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound +- proto: MachineAnomalyVessel + entities: + - uid: 6360 + components: + - pos: 31.5,-28.5 + parent: 4812 + type: Transform +- proto: MachineAPE + entities: + - uid: 6338 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-28.5 + parent: 4812 + type: Transform + - uid: 6359 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-28.5 + parent: 4812 + type: Transform +- proto: MachineArtifactAnalyzer + entities: + - uid: 6319 + components: + - pos: 22.5,-29.5 + parent: 4812 + type: Transform + - links: + - 6313 + type: DeviceLinkSink +- proto: MachineFrame + entities: + - uid: 5048 + components: + - pos: -16.5,-15.5 + parent: 4812 + type: Transform + - uid: 7197 + components: + - pos: -14.5,-15.5 + parent: 4812 + type: Transform +- proto: MachineFrameDestroyed + entities: + - uid: 11661 + components: + - pos: 4.5,-40.5 + parent: 4812 + type: Transform +- proto: MaintenanceFluffSpawner + entities: + - uid: 278 + components: + - pos: -18.5,-1.5 + parent: 4812 + type: Transform + - uid: 1532 + components: + - pos: -18.5,5.5 + parent: 4812 + type: Transform + - uid: 4601 + components: + - pos: 13.5,-9.5 + parent: 4812 + type: Transform + - uid: 4607 + components: + - pos: 16.5,11.5 + parent: 4812 + type: Transform + - uid: 7132 + components: + - pos: -32.5,-23.5 + parent: 4812 + type: Transform + - uid: 9065 + components: + - pos: -29.5,-35.5 + parent: 4812 + type: Transform + - uid: 10604 + components: + - pos: -45.5,-17.5 + parent: 4812 + type: Transform + - uid: 10605 + components: + - pos: -32.5,-28.5 + parent: 4812 + type: Transform + - uid: 10879 + components: + - pos: -33.5,8.5 + parent: 4812 + type: Transform + - uid: 11467 + components: + - pos: 31.5,-30.5 + parent: 4812 + type: Transform + - uid: 11914 + components: + - pos: 4.5,12.5 + parent: 4812 + type: Transform +- proto: MaintenancePlantSpawner + entities: + - uid: 10549 + components: + - pos: -13.5,13.5 + parent: 4812 + type: Transform + - uid: 10585 + components: + - pos: -29.5,-31.5 + parent: 4812 + type: Transform + - uid: 10586 + components: + - pos: 22.5,-34.5 + parent: 4812 + type: Transform +- proto: MaintenanceToolSpawner + entities: + - uid: 4608 + components: + - pos: 17.5,11.5 + parent: 4812 + type: Transform + - uid: 10904 + components: + - pos: -29.5,-12.5 + parent: 4812 + type: Transform + - uid: 12464 + components: + - pos: -37.5,25.5 + parent: 4812 + type: Transform +- proto: MaintenanceWeaponSpawner + entities: + - uid: 4609 + components: + - pos: 19.5,7.5 + parent: 4812 + type: Transform + - uid: 9081 + components: + - pos: -28.5,-27.5 + parent: 4812 + type: Transform + - uid: 12425 + components: + - pos: -53.5,-18.5 + parent: 4812 + type: Transform +- proto: Matchbox + entities: + - uid: 1761 + components: + - pos: 1.5470195,6.5276203 + parent: 4812 + type: Transform + - uid: 2736 + components: + - pos: -2.4627259,28.584373 + parent: 4812 + type: Transform +- proto: MaterialCloth + entities: + - uid: 2538 + components: + - pos: 8.4956045,29.699007 + parent: 4812 + type: Transform +- proto: MaterialDiamond1 + entities: + - uid: 2731 + components: + - pos: 0.5144601,26.613579 + parent: 4812 + type: Transform +- proto: MaterialDurathread + entities: + - uid: 2539 + components: + - pos: 8.48969,29.428799 + parent: 4812 + type: Transform +- proto: MaterialReclaimer + entities: + - uid: 4807 + components: + - pos: 20.5,19.5 + parent: 4812 + type: Transform +- proto: MaterialWoodPlank + entities: + - uid: 8415 + components: + - pos: -49.460716,-16.464205 + parent: 4812 + type: Transform +- proto: MedicalBed + entities: + - uid: 7572 + components: + - pos: -14.5,-23.5 + parent: 4812 + type: Transform + - uid: 7573 + components: + - pos: -17.5,-23.5 + parent: 4812 + type: Transform + - uid: 9034 + components: + - pos: -37.5,-37.5 + parent: 4812 + type: Transform +- proto: MedicalTechFab + entities: + - uid: 7398 + components: + - pos: -9.5,-28.5 + parent: 4812 + type: Transform +- proto: MedkitAdvancedFilled + entities: + - uid: 7460 + components: + - pos: -24.550219,-27.2501 + parent: 4812 + type: Transform +- proto: MedkitBruteFilled + entities: + - uid: 7407 + components: + - pos: -10.646522,-25.180182 + parent: 4812 + type: Transform +- proto: MedkitBurnFilled + entities: + - uid: 4535 + components: + - pos: 13.526362,-0.44057345 + parent: 4812 + type: Transform + - uid: 7408 + components: + - pos: -10.521522,-25.336432 + parent: 4812 + type: Transform +- proto: MedkitCombatFilled + entities: + - uid: 7459 + components: + - pos: -24.393969,-27.453224 + parent: 4812 + type: Transform +- proto: MedkitFilled + entities: + - uid: 2678 + components: + - pos: -8.488935,34.56198 + parent: 4812 + type: Transform +- proto: MedkitToxinFilled + entities: + - uid: 7409 + components: + - pos: -10.318397,-25.523932 + parent: 4812 + type: Transform +- proto: MicrophoneInstrument + entities: + - uid: 12381 + components: + - flags: InContainer + type: MetaData + - parent: 9099 + type: Transform + - canCollide: False + type: Physics +- proto: MicrowaveMachineCircuitboard + entities: + - uid: 3379 + components: + - pos: 25.540777,4.5472765 + parent: 4812 + type: Transform +- proto: MinimoogInstrument + entities: + - uid: 9054 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-39.5 + parent: 4812 + type: Transform +- proto: Mirror + entities: + - uid: 3716 + components: + - pos: 20.5,35.5 + parent: 4812 + type: Transform + - uid: 3788 + components: + - pos: 14.5,9.5 + parent: 4812 + type: Transform + - uid: 7031 + components: + - pos: -25.5,-33.5 + parent: 4812 + type: Transform +- proto: MonkeyCubeWrapped + entities: + - uid: 8341 + components: + - pos: 6.243659,6.255819 + parent: 4812 + type: Transform +- proto: MopBucket + entities: + - uid: 1478 + components: + - pos: -20.532074,-3.4493594 + parent: 4812 + type: Transform + - uid: 11938 + components: + - pos: -11.467581,17.581944 + parent: 4812 + type: Transform +- proto: MopItem + entities: + - uid: 1498 + components: + - pos: -20.685179,-8.436821 + parent: 4812 + type: Transform + - uid: 1519 + components: + - pos: -20.529812,-3.4716563 + parent: 4812 + type: Transform + - uid: 11939 + components: + - pos: -10.498831,17.519444 + parent: 4812 + type: Transform + - uid: 11940 + components: + - pos: -10.498831,17.300694 + parent: 4812 + type: Transform +- proto: Morgue + entities: + - uid: 5011 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-18.5 + parent: 4812 + type: Transform + - uid: 7333 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-17.5 + parent: 4812 + type: Transform + - uid: 7334 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-16.5 + parent: 4812 + type: Transform + - uid: 7368 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-15.5 + parent: 4812 + type: Transform +- proto: Multitool + entities: + - uid: 2680 + components: + - pos: -3.5045605,34.68698 + parent: 4812 + type: Transform + - uid: 3370 + components: + - pos: 14.511745,18.570736 + parent: 4812 + type: Transform + - uid: 6197 + components: + - pos: 7.576914,-16.642956 + parent: 4812 + type: Transform + - uid: 8593 + components: + - pos: -19.531754,12.581865 + parent: 4812 + type: Transform + - uid: 10707 + components: + - pos: -32.481808,-7.2820773 + parent: 4812 + type: Transform +- proto: NanoManipulatorStockPart + entities: + - uid: 6202 + components: + - pos: 7.436289,-15.783581 + parent: 4812 + type: Transform + - uid: 6203 + components: + - pos: 7.623789,-15.783581 + parent: 4812 + type: Transform + - uid: 6204 + components: + - pos: 7.811289,-15.783581 + parent: 4812 + type: Transform +- proto: NitrogenCanister + entities: + - uid: 4604 + components: + - pos: 15.5,11.5 + parent: 4812 + type: Transform + - uid: 6327 + components: + - pos: 25.5,-22.5 + parent: 4812 + type: Transform + - uid: 9448 + components: + - pos: -53.5,1.5 + parent: 4812 + type: Transform + - uid: 9667 + components: + - pos: -33.5,4.5 + parent: 4812 + type: Transform + - uid: 9668 + components: + - pos: -33.5,5.5 + parent: 4812 + type: Transform + - uid: 11786 + components: + - pos: 21.5,-32.5 + parent: 4812 + type: Transform +- proto: NuclearBomb + entities: + - uid: 1854 + components: + - pos: -2.5,26.5 + parent: 4812 + type: Transform +- proto: NuclearBombKeg + entities: + - uid: 11642 + components: + - pos: 16.5,-44.5 + parent: 4812 + type: Transform +- proto: Omnitool + entities: + - uid: 2710 + components: + - flags: InContainer + type: MetaData + - parent: 2709 + type: Transform + - canCollide: False + type: Physics +- proto: OperatingTable + entities: + - uid: 6167 + components: + - pos: 15.5,-28.5 + parent: 4812 + type: Transform + - uid: 7067 + components: + - pos: -20.5,-25.5 + parent: 4812 + type: Transform + - uid: 7244 + components: + - pos: -20.5,-28.5 + parent: 4812 + type: Transform + - uid: 7444 + components: + - pos: -18.5,-16.5 + parent: 4812 + type: Transform +- proto: OreProcessor + entities: + - uid: 2902 + components: + - pos: 21.5,15.5 + parent: 4812 + type: Transform + - materialWhiteList: + - Steel + - Glass + - Plasma + - Uranium + - Gold + - Silver + type: MaterialStorage +- proto: OreProcessorMachineCircuitboard + entities: + - uid: 3749 + components: + - pos: 21.462652,5.5472765 + parent: 4812 + type: Transform +- proto: OrganHumanAppendix + entities: + - uid: 4596 + components: + - pos: -53.373444,-16.451925 + parent: 4812 + type: Transform +- proto: OxygenCanister + entities: + - uid: 733 + components: + - pos: 9.5,17.5 + parent: 4812 + type: Transform + - uid: 4603 + components: + - pos: 14.5,11.5 + parent: 4812 + type: Transform + - uid: 6328 + components: + - pos: 26.5,-22.5 + parent: 4812 + type: Transform + - uid: 8849 + components: + - pos: -13.5,-28.5 + parent: 4812 + type: Transform + - uid: 9450 + components: + - pos: -53.5,3.5 + parent: 4812 + type: Transform + - uid: 9669 + components: + - pos: -32.5,4.5 + parent: 4812 + type: Transform + - uid: 9670 + components: + - pos: -32.5,5.5 + parent: 4812 + type: Transform + - uid: 10740 + components: + - pos: -46.5,-9.5 + parent: 4812 + type: Transform + - uid: 10878 + components: + - pos: -34.5,8.5 + parent: 4812 + type: Transform + - uid: 10917 + components: + - pos: -47.5,-23.5 + parent: 4812 + type: Transform + - uid: 11787 + components: + - pos: 20.5,-32.5 + parent: 4812 + type: Transform +- proto: OxygenTankFilled + entities: + - uid: 11792 + components: + - pos: 19.577671,-32.613243 + parent: 4812 + type: Transform +- proto: PaintingAmogusTriptych + entities: + - uid: 7003 + components: + - pos: -21.5,6.5 + parent: 4812 + type: Transform +- proto: PaintingMonkey + entities: + - uid: 1659 + components: + - pos: 4.5,9.5 + parent: 4812 + type: Transform +- proto: PaintingNightHawks + entities: + - uid: 1674 + components: + - pos: 1.5,4.5 + parent: 4812 + type: Transform +- proto: PaintingOlympia + entities: + - uid: 7741 + components: + - pos: -28.5,-35.5 + parent: 4812 + type: Transform +- proto: PaintingRedBlueYellow + entities: + - uid: 8380 + components: + - pos: 1.5,-7.5 + parent: 4812 + type: Transform +- proto: PaintingSadClown + entities: + - uid: 9634 + components: + - pos: -7.5,2.5 + parent: 4812 + type: Transform +- proto: PaintingSleepingGypsy + entities: + - uid: 7742 + components: + - pos: -28.5,-13.5 + parent: 4812 + type: Transform +- proto: Paper + entities: + - uid: 2520 + components: + - pos: 8.567815,26.553799 + parent: 4812 + type: Transform + - uid: 2521 + components: + - pos: 8.567815,26.553799 + parent: 4812 + type: Transform + - uid: 2522 + components: + - pos: 8.567815,26.553799 + parent: 4812 + type: Transform + - uid: 2523 + components: + - pos: 8.567815,26.553799 + parent: 4812 + type: Transform + - uid: 2524 + components: + - pos: 8.567815,26.553799 + parent: 4812 + type: Transform + - uid: 2525 + components: + - pos: 8.567815,26.553799 + parent: 4812 + type: Transform + - uid: 2526 + components: + - pos: 8.567815,26.553799 + parent: 4812 + type: Transform + - uid: 2527 + components: + - pos: 8.567815,26.553799 + parent: 4812 + type: Transform + - uid: 2528 + components: + - pos: 8.567815,26.553799 + parent: 4812 + type: Transform + - uid: 2529 + components: + - pos: 8.567815,26.553799 + parent: 4812 + type: Transform + - uid: 2530 + components: + - pos: 8.567815,26.553799 + parent: 4812 + type: Transform + - uid: 2531 + components: + - pos: 8.567815,26.553799 + parent: 4812 + type: Transform + - uid: 2532 + components: + - pos: 8.567815,26.553799 + parent: 4812 + type: Transform + - uid: 2533 + components: + - pos: 8.567815,26.553799 + parent: 4812 + type: Transform + - uid: 2556 + components: + - pos: 10.478969,22.565956 + parent: 4812 + type: Transform + - uid: 2557 + components: + - pos: 10.478969,22.565956 + parent: 4812 + type: Transform + - uid: 2558 + components: + - pos: 10.478969,22.565956 + parent: 4812 + type: Transform + - uid: 2559 + components: + - pos: 10.478969,22.565956 + parent: 4812 + type: Transform + - uid: 2560 + components: + - pos: 10.478969,22.565956 + parent: 4812 + type: Transform + - uid: 2561 + components: + - pos: 10.478969,22.565956 + parent: 4812 + type: Transform + - uid: 2562 + components: + - pos: 10.478969,22.565956 + parent: 4812 + type: Transform + - uid: 2563 + components: + - pos: 10.478969,22.565956 + parent: 4812 + type: Transform + - uid: 2564 + components: + - pos: 10.478969,22.565956 + parent: 4812 + type: Transform + - uid: 2565 + components: + - pos: 10.478969,22.565956 + parent: 4812 + type: Transform + - uid: 2566 + components: + - pos: 10.478969,22.565956 + parent: 4812 + type: Transform + - uid: 2567 + components: + - pos: 10.478969,22.565956 + parent: 4812 + type: Transform + - uid: 2568 + components: + - pos: 10.478969,22.565956 + parent: 4812 + type: Transform + - uid: 2569 + components: + - pos: 10.478969,22.565956 + parent: 4812 + type: Transform + - uid: 2570 + components: + - pos: 10.478969,22.565956 + parent: 4812 + type: Transform + - uid: 2571 + components: + - pos: 10.478969,22.565956 + parent: 4812 + type: Transform + - uid: 2572 + components: + - pos: 10.478969,22.565956 + parent: 4812 + type: Transform + - uid: 2573 + components: + - pos: 10.478969,22.565956 + parent: 4812 + type: Transform + - uid: 2574 + components: + - pos: 10.478969,22.565956 + parent: 4812 + type: Transform + - uid: 2575 + components: + - pos: 10.478969,22.565956 + parent: 4812 + type: Transform + - uid: 3246 + components: + - pos: 17.509274,13.545517 + parent: 4812 + type: Transform + - uid: 3247 + components: + - pos: 17.509274,13.545517 + parent: 4812 + type: Transform + - uid: 3248 + components: + - pos: 17.509274,13.545517 + parent: 4812 + type: Transform + - uid: 3249 + components: + - pos: 17.509274,13.545517 + parent: 4812 + type: Transform + - uid: 3250 + components: + - pos: 17.509274,13.545517 + parent: 4812 + type: Transform + - uid: 3251 + components: + - pos: 17.509274,13.545517 + parent: 4812 + type: Transform + - uid: 3252 + components: + - pos: 17.509274,13.545517 + parent: 4812 + type: Transform + - uid: 3253 + components: + - pos: 17.509274,13.545517 + parent: 4812 + type: Transform + - uid: 3254 + components: + - pos: 17.509274,13.545517 + parent: 4812 + type: Transform + - uid: 3255 + components: + - pos: 17.509274,13.545517 + parent: 4812 + type: Transform + - uid: 3881 + components: + - pos: 11.504802,56.565136 + parent: 4812 + type: Transform + - uid: 7006 + components: + - pos: -31.49619,-23.373245 + parent: 4812 + type: Transform + - uid: 7138 + components: + - pos: -28.318611,-14.584436 + parent: 4812 + type: Transform + - uid: 7139 + components: + - pos: -28.537361,-15.271936 + parent: 4812 + type: Transform + - uid: 7140 + components: + - pos: -27.677986,-15.271936 + parent: 4812 + type: Transform + - uid: 7141 + components: + - pos: -27.427986,-14.693811 + parent: 4812 + type: Transform + - uid: 7173 + components: + - pos: -31.49619,-23.373245 + parent: 4812 + type: Transform + - uid: 7174 + components: + - pos: -31.49619,-23.373245 + parent: 4812 + type: Transform + - uid: 7175 + components: + - pos: -31.49619,-23.373245 + parent: 4812 + type: Transform + - uid: 7176 + components: + - pos: -31.49619,-23.373245 + parent: 4812 + type: Transform + - uid: 7177 + components: + - pos: -31.49619,-23.373245 + parent: 4812 + type: Transform + - uid: 7178 + components: + - pos: -31.49619,-23.373245 + parent: 4812 + type: Transform + - uid: 7179 + components: + - pos: -31.49619,-23.373245 + parent: 4812 + type: Transform + - uid: 7180 + components: + - pos: -31.49619,-23.373245 + parent: 4812 + type: Transform + - uid: 7181 + components: + - pos: -31.49619,-23.373245 + parent: 4812 + type: Transform + - uid: 8395 + components: + - pos: -25.484861,30.57598 + parent: 4812 + type: Transform +- proto: ParchisBoard + entities: + - uid: 10866 + components: + - pos: -21.575394,0.5961678 + parent: 4812 + type: Transform +- proto: PartRodMetal + entities: + - uid: 1677 + components: + - pos: 3.5454316,14.514967 + parent: 4812 + type: Transform + - uid: 8583 + components: + - pos: -16.530659,7.5992785 + parent: 4812 + type: Transform + - uid: 9675 + components: + - pos: -30.275465,5.5801115 + parent: 4812 + type: Transform + - uid: 9676 + components: + - pos: -30.275465,5.5801115 + parent: 4812 + type: Transform + - uid: 11950 + components: + - pos: -14.576956,16.050694 + parent: 4812 + type: Transform + - uid: 11951 + components: + - pos: -14.389456,16.019444 + parent: 4812 + type: Transform +- proto: Pen + entities: + - uid: 2576 + components: + - pos: 10.697719,22.769081 + parent: 4812 + type: Transform + - uid: 3256 + components: + - pos: 17.728024,13.748642 + parent: 4812 + type: Transform + - uid: 3277 + components: + - pos: 22.826836,12.68298 + parent: 4812 + type: Transform + - uid: 3882 + components: + - pos: 11.754802,56.73701 + parent: 4812 + type: Transform + - uid: 6412 + components: + - pos: -0.24684072,-19.262363 + parent: 4812 + type: Transform + - uid: 7143 + components: + - pos: -28.256111,-15.131311 + parent: 4812 + type: Transform + - uid: 7144 + components: + - pos: -27.318611,-14.334436 + parent: 4812 + type: Transform + - uid: 8396 + components: + - pos: -25.234861,30.76348 + parent: 4812 + type: Transform +- proto: PersonalAI + entities: + - uid: 1767 + components: + - flags: SessionSpecific + type: MetaData + - pos: -2.5035148,7.4145155 + parent: 4812 + type: Transform + - uid: 3963 + components: + - flags: SessionSpecific + type: MetaData + - pos: 9.496426,48.542255 + parent: 4812 + type: Transform + - uid: 6307 + components: + - flags: SessionSpecific + type: MetaData + - pos: 26.432638,-19.383717 + parent: 4812 + type: Transform + - uid: 7142 + components: + - flags: SessionSpecific + type: MetaData + - pos: -28.490486,-14.614019 + parent: 4812 + type: Transform + - uid: 10864 + components: + - flags: SessionSpecific + type: MetaData + - pos: -22.475502,3.5391276 + parent: 4812 + type: Transform + - uid: 10865 + components: + - flags: SessionSpecific + type: MetaData + - pos: 6.426591,-28.501112 + parent: 4812 + type: Transform +- proto: PestSpray + entities: + - uid: 1475 + components: + - pos: -8.549381,-7.3677278 + parent: 4812 + type: Transform +- proto: PhoneInstrument + entities: + - uid: 1953 + components: + - pos: -12.499591,23.511097 + parent: 4812 + type: Transform + - uid: 3581 + components: + - pos: 15.253733,35.810513 + parent: 4812 + type: Transform +- proto: PianoInstrument + entities: + - uid: 1749 + components: + - rot: 3.141592653589793 rad + pos: -9.5,9.5 + parent: 4812 + type: Transform +- proto: Pickaxe + entities: + - uid: 3273 + components: + - pos: 22.483086,13.573605 + parent: 4812 + type: Transform + - uid: 3274 + components: + - pos: 22.576836,13.43298 + parent: 4812 + type: Transform + - uid: 3785 + components: + - pos: 17.50081,55.46929 + parent: 4812 + type: Transform + - uid: 10610 + components: + - pos: -48.49922,-23.375322 + parent: 4812 + type: Transform + - uid: 10611 + components: + - pos: -48.358597,-23.531572 + parent: 4812 + type: Transform + - uid: 11617 + components: + - pos: 37.304466,-40.56443 + parent: 4812 + type: Transform + - uid: 11678 + components: + - pos: 28.462547,-39.447342 + parent: 4812 + type: Transform +- proto: PinpointerNuclear + entities: + - uid: 2722 + components: + - pos: -1.524637,24.582329 + parent: 4812 + type: Transform +- proto: PlantBGoneSpray + entities: + - uid: 1474 + components: + - pos: -7.4868813,-7.4614778 + parent: 4812 + type: Transform +- proto: PlaqueAtmos + entities: + - uid: 11861 + components: + - pos: -30.5,6.5 + parent: 4812 + type: Transform +- proto: PlasmaCanister + entities: + - uid: 9457 + components: + - pos: -53.5,9.5 + parent: 4812 + type: Transform +- proto: PlasticFlapsAirtightClear + entities: + - uid: 2779 + components: + - pos: 21.5,28.5 + parent: 4812 + type: Transform + - uid: 2780 + components: + - pos: 23.5,24.5 + parent: 4812 + type: Transform + - uid: 2843 + components: + - pos: 21.5,24.5 + parent: 4812 + type: Transform + - uid: 2856 + components: + - pos: 13.5,20.5 + parent: 4812 + type: Transform + - uid: 2857 + components: + - pos: 18.5,22.5 + parent: 4812 + type: Transform + - uid: 2940 + components: + - pos: 23.5,28.5 + parent: 4812 + type: Transform + - uid: 4432 + components: + - pos: 29.5,-6.5 + parent: 4812 + type: Transform + - uid: 8622 + components: + - pos: -32.5,0.5 + parent: 4812 + type: Transform +- proto: PlushieBee + entities: + - uid: 11334 + components: + - pos: 22.549774,-36.48487 + parent: 4812 + type: Transform +- proto: PlushieLizard + entities: + - uid: 10916 + components: + - pos: -44.486626,-24.313948 + parent: 4812 + type: Transform +- proto: PortableFlasher + entities: + - uid: 12520 + components: + - pos: -36.5,20.5 + parent: 4812 + type: Transform +- proto: PortableGeneratorJrPacman + entities: + - uid: 3359 + components: + - pos: -30.5,7.5 + parent: 4812 + type: Transform + - uid: 3360 + components: + - pos: 13.5,29.5 + parent: 4812 + type: Transform + - uid: 12056 + components: + - pos: -45.5,-14.5 + parent: 4812 + type: Transform + - uid: 12057 + components: + - pos: -11.5,-31.5 + parent: 4812 + type: Transform + - uid: 12069 + components: + - pos: 13.5,-15.5 + parent: 4812 + type: Transform + - uid: 12070 + components: + - pos: 3.5,12.5 + parent: 4812 + type: Transform +- proto: PortableGeneratorPacman + entities: + - uid: 10728 + components: + - pos: -50.5,-11.5 + parent: 4812 + type: Transform +- proto: PortableGeneratorPacmanMachineCircuitboard + entities: + - uid: 3470 + components: + - pos: 21.580725,7.4535265 + parent: 4812 + type: Transform + - uid: 4494 + components: + - pos: 17.411211,1.6407971 + parent: 4812 + type: Transform +- proto: PortableGeneratorSuperPacmanMachineCircuitboard + entities: + - uid: 3286 + components: + - pos: 21.40885,7.6410265 + parent: 4812 + type: Transform +- proto: PortableScrubber + entities: + - uid: 3446 + components: + - pos: -34.5,-0.5 + parent: 4812 + type: Transform + - uid: 3709 + components: + - pos: -34.5,-1.5 + parent: 4812 + type: Transform + - uid: 8406 + components: + - pos: -13.5,15.5 + parent: 4812 + type: Transform + - uid: 9032 + components: + - pos: -12.5,15.5 + parent: 4812 + type: Transform +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 11860 + components: + - pos: -36.5,6.5 + parent: 4812 + type: Transform +- proto: PosterContrabandClown + entities: + - uid: 1714 + components: + - pos: -6.5,0.5 + parent: 4812 + type: Transform +- proto: PosterContrabandEAT + entities: + - uid: 1782 + components: + - pos: 5.5,1.5 + parent: 4812 + type: Transform +- proto: PosterContrabandFreeDrone + entities: + - uid: 11936 + components: + - pos: -11.5,14.5 + parent: 4812 + type: Transform +- proto: PosterContrabandHackingGuide + entities: + - uid: 8605 + components: + - pos: -15.5,8.5 + parent: 4812 + type: Transform +- proto: PosterContrabandHighEffectEngineering + entities: + - uid: 10774 + components: + - pos: -35.5,-6.5 + parent: 4812 + type: Transform +- proto: PosterContrabandLamarr + entities: + - uid: 6292 + components: + - pos: 29.5,-20.5 + parent: 4812 + type: Transform +- proto: PosterContrabandMissingGloves + entities: + - uid: 8606 + components: + - pos: -15.5,12.5 + parent: 4812 + type: Transform +- proto: PosterContrabandNuclearDeviceInformational + entities: + - uid: 12151 + components: + - pos: -1.5,27.5 + parent: 4812 + type: Transform +- proto: PosterContrabandSpaceCola + entities: + - uid: 1781 + components: + - pos: 1.5,-4.5 + parent: 4812 + type: Transform +- proto: PosterContrabandTools + entities: + - uid: 8608 + components: + - pos: -21.5,7.5 + parent: 4812 + type: Transform +- proto: PosterContrabandVoteWeh + entities: + - uid: 10912 + components: + - pos: -42.5,-22.5 + parent: 4812 + type: Transform +- proto: PosterLegit50thAnniversaryVintageReprint + entities: + - uid: 6366 + components: + - pos: 36.5,-24.5 + parent: 4812 + type: Transform +- proto: PosterLegitAnatomyPoster + entities: + - uid: 9627 + components: + - pos: -23.5,-21.5 + parent: 4812 + type: Transform + - uid: 9628 + components: + - pos: -13.5,-29.5 + parent: 4812 + type: Transform +- proto: PosterLegitCarpMount + entities: + - uid: 9635 + components: + - pos: 21.5,17.5 + parent: 4812 + type: Transform +- proto: PosterLegitCleanliness + entities: + - uid: 4586 + components: + - pos: 14.5,5.5 + parent: 4812 + type: Transform + - uid: 7046 + components: + - pos: -23.5,-10.5 + parent: 4812 + type: Transform +- proto: PosterLegitCohibaRobustoAd + entities: + - uid: 5360 + components: + - pos: 17.5,-14.5 + parent: 4812 + type: Transform + - uid: 6488 + components: + - pos: -2.5,-20.5 + parent: 4812 + type: Transform +- proto: PosterLegitIan + entities: + - uid: 4527 + components: + - pos: 10.5,23.5 + parent: 4812 + type: Transform +- proto: PosterLegitLoveIan + entities: + - uid: 4528 + components: + - pos: 8.5,30.5 + parent: 4812 + type: Transform +- proto: PosterLegitMime + entities: + - uid: 9629 + components: + - pos: -9.5,2.5 + parent: 4812 + type: Transform +- proto: PosterLegitNanomichiAd + entities: + - uid: 4529 + components: + - pos: 11.5,25.5 + parent: 4812 + type: Transform +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 1463 + components: + - pos: -5.5,-8.5 + parent: 4812 + type: Transform + - uid: 1793 + components: + - pos: -5.5,15.5 + parent: 4812 + type: Transform + - uid: 1794 + components: + - pos: 0.5,15.5 + parent: 4812 + type: Transform + - uid: 2933 + components: + - pos: -9.5,21.5 + parent: 4812 + type: Transform + - uid: 2934 + components: + - pos: -9.5,33.5 + parent: 4812 + type: Transform + - uid: 2935 + components: + - pos: 4.5,33.5 + parent: 4812 + type: Transform + - uid: 2936 + components: + - pos: -15.5,26.5 + parent: 4812 + type: Transform + - uid: 3425 + components: + - pos: 26.5,3.5 + parent: 4812 + type: Transform + - uid: 4526 + components: + - pos: 13.5,11.5 + parent: 4812 + type: Transform + - uid: 4531 + components: + - pos: 1.5,27.5 + parent: 4812 + type: Transform + - uid: 4532 + components: + - pos: -6.5,27.5 + parent: 4812 + type: Transform + - uid: 4583 + components: + - pos: 23.5,-4.5 + parent: 4812 + type: Transform + - uid: 6486 + components: + - pos: -0.5,-23.5 + parent: 4812 + type: Transform + - uid: 6487 + components: + - pos: -4.5,-30.5 + parent: 4812 + type: Transform + - uid: 8301 + components: + - pos: -21.5,18.5 + parent: 4812 + type: Transform +- proto: PosterLegitNoERP + entities: + - uid: 4587 + components: + - pos: 17.5,6.5 + parent: 4812 + type: Transform + - uid: 7450 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-27.5 + parent: 4812 + type: Transform +- proto: PosterLegitNTTGC + entities: + - uid: 11336 + components: + - pos: -30.5,-13.5 + parent: 4812 + type: Transform +- proto: PosterLegitPeriodicTable + entities: + - uid: 10738 + components: + - pos: -7.5,-17.5 + parent: 4812 + type: Transform +- proto: PosterLegitRenault + entities: + - uid: 11275 + components: + - pos: -13.5,21.5 + parent: 4812 + type: Transform +- proto: PosterLegitSafetyMothDelam + entities: + - uid: 10996 + components: + - pos: -37.5,-9.5 + parent: 4812 + type: Transform +- proto: PosterLegitSafetyMothEpi + entities: + - uid: 10747 + components: + - pos: -7.5,-15.5 + parent: 4812 + type: Transform +- proto: PosterLegitSafetyMothHardhat + entities: + - uid: 10918 + components: + - pos: -27.5,-5.5 + parent: 4812 + type: Transform +- proto: PosterLegitSafetyMothMeth + entities: + - uid: 10739 + components: + - pos: -13.5,-18.5 + parent: 4812 + type: Transform +- proto: PosterLegitSafetyMothPiping + entities: + - uid: 10906 + components: + - pos: -44.5,-0.5 + parent: 4812 + type: Transform +- proto: PosterLegitScience + entities: + - uid: 6367 + components: + - pos: 30.5,-28.5 + parent: 4812 + type: Transform +- proto: PosterLegitVacation + entities: + - uid: 10766 + components: + - pos: 6.5,-10.5 + parent: 4812 + type: Transform +- proto: PottedPlant0 + entities: + - uid: 6625 + components: + - pos: -31.5,22.5 + parent: 4812 + type: Transform + - uid: 6738 + components: + - pos: -25.5,22.5 + parent: 4812 + type: Transform +- proto: PottedPlant1 + entities: + - uid: 6333 + components: + - pos: 31.5,-23.5 + parent: 4812 + type: Transform + - uid: 6334 + components: + - pos: 35.5,-23.5 + parent: 4812 + type: Transform +- proto: PottedPlant10 + entities: + - uid: 7441 + components: + - pos: -26.5,-22.5 + parent: 4812 + type: Transform +- proto: PottedPlantBioluminscent + entities: + - uid: 6355 + components: + - pos: 9.5,-14.5 + parent: 4812 + type: Transform +- proto: PottedPlantRandom + entities: + - uid: 924 + components: + - pos: 0.5,-4.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 925 + components: + - pos: -4.5,-8.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 926 + components: + - pos: -0.5,-10.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 927 + components: + - pos: -4.5,-10.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 928 + components: + - pos: -0.5,11.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 929 + components: + - pos: -4.5,11.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 937 + components: + - pos: 0.5,1.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 938 + components: + - pos: -5.5,-2.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 1730 + components: + - pos: -7.5,9.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 1731 + components: + - pos: -7.5,8.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 1799 + components: + - pos: -5.5,18.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 1800 + components: + - pos: 0.5,18.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 2598 + components: + - pos: -12.5,25.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 2600 + components: + - pos: -10.5,22.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 2681 + components: + - pos: -6.5,33.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 2682 + components: + - pos: 1.5,33.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 2683 + components: + - pos: -5.5,30.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 2684 + components: + - pos: 0.5,30.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 3258 + components: + - pos: 17.5,17.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 4550 + components: + - pos: 27.5,-4.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 4577 + components: + - pos: 27.5,-8.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 4600 + components: + - pos: 13.5,-8.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 5062 + components: + - pos: -9.5,-48.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 5063 + components: + - pos: -12.5,-48.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 5064 + components: + - pos: -12.5,-45.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 6191 + components: + - pos: 13.5,-12.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 6390 + components: + - pos: -2.5,-19.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 6391 + components: + - pos: -2.5,-15.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 6438 + components: + - pos: 2.5,-34.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 7045 + components: + - pos: -10.5,-23.5 + parent: 4812 + type: Transform + - uid: 8288 + components: + - pos: -20.5,17.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 9683 + components: + - pos: -36.5,4.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 9684 + components: + - pos: -29.5,-0.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 9685 + components: + - pos: -29.5,-3.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 9834 + components: + - pos: -48.5,-9.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 10860 + components: + - pos: -22.5,-1.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 11290 + components: + - pos: 17.5,-38.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 11291 + components: + - pos: 20.5,-36.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 11292 + components: + - pos: 21.5,-38.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 11293 + components: + - pos: 17.5,-36.5 + parent: 4812 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- proto: PottedPlantRD + entities: + - uid: 6290 + components: + - pos: 24.5,-18.5 + parent: 4812 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 1687 + components: + - pos: 7.5,16.5 + parent: 4812 + type: Transform + - canCollide: False + type: Physics + - uid: 2668 + components: + - pos: 1.5,34.5 + parent: 4812 + type: Transform + - canCollide: False + type: Physics + - uid: 3880 + components: + - pos: 9.5,56.5 + parent: 4812 + type: Transform + - canCollide: False + type: Physics + - uid: 6194 + components: + - pos: 7.5,-18.5 + parent: 4812 + type: Transform + - canCollide: False + type: Physics + - uid: 6229 + components: + - pos: 11.5,-28.5 + parent: 4812 + type: Transform + - canCollide: False + type: Physics + - uid: 8579 + components: + - pos: -20.5,7.5 + parent: 4812 + type: Transform + - canCollide: False + type: Physics + - uid: 10713 + components: + - pos: -30.5,-7.5 + parent: 4812 + type: Transform + - canCollide: False + type: Physics + - uid: 10849 + components: + - pos: -27.5,-3.5 + parent: 4812 + type: Transform + - canCollide: False + type: Physics +- proto: PowerDrill + entities: + - uid: 6309 + components: + - pos: 28.456348,-20.243092 + parent: 4812 + type: Transform +- proto: Poweredlight + entities: + - uid: 1515 + components: + - pos: -16.5,-5.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1516 + components: + - pos: -11.5,-5.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1517 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-8.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1518 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-8.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1665 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,10.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1666 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1667 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1668 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1669 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1670 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1671 + components: + - pos: 2.5,9.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1672 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1673 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1975 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,15.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1983 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,15.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2541 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,29.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2542 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,29.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2543 + components: + - rot: 3.141592653589793 rad + pos: -15.5,27.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2544 + components: + - pos: 7.5,22.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2545 + components: + - pos: 9.5,26.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2622 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,28.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2623 + components: + - pos: -14.5,24.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2624 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,28.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2625 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,28.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2626 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,23.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2627 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,23.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2628 + components: + - pos: -7.5,34.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2629 + components: + - pos: 2.5,34.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2630 + components: + - pos: -0.5,35.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2631 + components: + - pos: -4.5,35.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2687 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,31.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2688 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,31.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2689 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,18.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2690 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,18.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2691 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,13.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2692 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,14.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2694 + components: + - pos: 11.5,20.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2696 + components: + - pos: -16.5,20.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2733 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,24.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2734 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,24.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2776 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,31.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2784 + components: + - pos: 1.5,20.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2785 + components: + - pos: -6.5,20.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3216 + components: + - rot: 3.141592653589793 rad + pos: 17.5,17.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3217 + components: + - rot: 3.141592653589793 rad + pos: 17.5,13.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3218 + components: + - rot: 3.141592653589793 rad + pos: 23.5,12.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3219 + components: + - pos: 17.5,21.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3220 + components: + - pos: 17.5,27.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3221 + components: + - rot: 3.141592653589793 rad + pos: 17.5,23.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3965 + components: + - pos: 10.5,56.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3966 + components: + - pos: 10.5,50.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3967 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,54.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3968 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,50.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3969 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,50.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3970 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,54.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3971 + components: + - rot: 3.141592653589793 rad + pos: 10.5,43.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3972 + components: + - pos: 14.5,47.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3973 + components: + - pos: 6.5,47.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4468 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,12.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4469 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,4.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4470 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-5.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4471 + components: + - pos: 19.5,-2.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4472 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-9.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4473 + components: + - pos: 29.5,4.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4474 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-5.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4475 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,0.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4476 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-7.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4952 + components: + - pos: -19.5,-25.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - uid: 4953 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-23.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - uid: 4954 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-27.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - uid: 4986 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-27.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - uid: 5067 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-53.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5068 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-40.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5069 + components: + - pos: -12.5,-45.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5070 + components: + - pos: -9.5,-45.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5283 + components: + - pos: -4.5,-34.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5284 + components: + - pos: -0.5,-34.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6258 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-14.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6259 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-18.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6260 + components: + - pos: 13.5,-17.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6261 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-28.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6262 + components: + - pos: 3.5,-23.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6263 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-27.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6264 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-25.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6265 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-27.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6266 + components: + - pos: 11.5,-20.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6267 + components: + - pos: 6.5,-20.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6268 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-16.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6269 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-28.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6270 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-30.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6271 + components: + - pos: 28.5,-22.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6272 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-26.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6273 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-22.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6274 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-19.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6275 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-19.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6276 + components: + - pos: 35.5,-23.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6277 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-28.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6478 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-26.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7019 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-34.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7024 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-32.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7028 + components: + - pos: -15.5,-15.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - uid: 7053 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-28.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - uid: 7064 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-28.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - uid: 7288 + components: + - pos: -17.5,-20.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - uid: 7367 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-25.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - uid: 7397 + components: + - pos: -25.5,-22.5 + parent: 4812 + type: Transform + - enabled: False + type: AmbientSound + - uid: 7582 + components: + - pos: -10.5,-20.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7583 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-18.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7621 + components: + - pos: -2.5,-21.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7622 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-19.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7623 + components: + - pos: -5.5,-11.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7624 + components: + - pos: 0.5,-11.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7625 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-30.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7626 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-30.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7627 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-23.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7628 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-23.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7629 + components: + - pos: -13.5,-11.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7630 + components: + - pos: -19.5,-11.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7631 + components: + - pos: 4.5,-11.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7632 + components: + - pos: 10.5,-11.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8141 + components: + - pos: -36.5,12.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8142 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,16.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8143 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,16.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8144 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,12.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8145 + components: + - rot: 3.141592653589793 rad + pos: -36.5,19.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8247 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,28.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8269 + components: + - pos: -20.5,25.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8304 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,18.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8305 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,15.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8603 + components: + - pos: -18.5,12.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8604 + components: + - rot: 3.141592653589793 rad + pos: -18.5,7.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9017 + components: + - pos: -38.5,-33.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9311 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,1.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9312 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,3.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9313 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,5.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9314 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,7.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9315 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,9.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9316 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,11.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9317 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,0.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9318 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,4.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9319 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,8.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9320 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,12.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9706 + components: + - pos: -46.5,14.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9707 + components: + - pos: -42.5,14.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9819 + components: + - pos: -40.5,5.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9820 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,10.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9821 + components: + - rot: 3.141592653589793 rad + pos: -41.5,0.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9822 + components: + - rot: 3.141592653589793 rad + pos: -28.5,1.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9823 + components: + - rot: 3.141592653589793 rad + pos: -34.5,1.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10660 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,-10.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10661 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,-10.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10680 + components: + - pos: -49.5,-6.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10681 + components: + - pos: -47.5,-11.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10682 + components: + - pos: -38.5,-10.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10684 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-18.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10686 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-5.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10687 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-9.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10688 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-2.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10689 + components: + - pos: -34.5,-0.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10690 + components: + - pos: -24.5,8.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10691 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,13.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10692 + components: + - pos: -43.5,-1.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10693 + components: + - pos: -41.5,-5.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10694 + components: + - pos: -46.5,-6.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10695 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-14.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10920 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-9.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11246 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-37.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11247 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-41.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11248 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-37.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11916 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,1.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11917 + components: + - pos: -22.5,5.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11918 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-1.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11920 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-35.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11921 + components: + - pos: -11.5,-14.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11923 + components: + - pos: -30.5,5.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11924 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-7.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11926 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-7.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11961 + components: + - pos: -12.5,17.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredlightEmpty + entities: + - uid: 11249 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-41.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11250 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-33.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredSmallLight + entities: + - uid: 255 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-1.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 256 + components: + - pos: -18.5,5.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1500 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-7.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1501 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-7.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1540 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1541 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-7.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1664 + components: + - pos: 6.5,9.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1724 + components: + - pos: -9.5,1.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1763 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,8.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1764 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,7.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1765 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,6.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1766 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,5.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1803 + components: + - pos: 4.5,12.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1804 + components: + - pos: 5.5,-9.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1805 + components: + - pos: -9.5,-3.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1806 + components: + - pos: -20.5,-3.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1807 + components: + - pos: -9.5,13.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2577 + components: + - rot: 3.141592653589793 rad + pos: 5.5,31.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2751 + components: + - rot: 3.141592653589793 rad + pos: 19.5,34.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2768 + components: + - rot: 3.141592653589793 rad + pos: 22.5,24.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2777 + components: + - pos: 22.5,28.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3149 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,35.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3224 + components: + - pos: 27.5,15.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3280 + components: + - pos: 22.5,8.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3732 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,5.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3733 + components: + - pos: 24.5,4.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3770 + components: + - pos: 16.5,-14.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3974 + components: + - pos: 3.5,46.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4466 + components: + - pos: 15.5,8.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4467 + components: + - pos: 20.5,11.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4477 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,1.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4480 + components: + - pos: 19.5,2.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4481 + components: + - pos: 22.5,1.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4482 + components: + - pos: 16.5,11.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4545 + components: + - pos: 15.5,-5.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4546 + components: + - pos: 21.5,-6.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5388 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-16.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5389 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-12.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6278 + components: + - pos: 19.5,-23.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6279 + components: + - pos: 17.5,-20.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6280 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,24.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6281 + components: + - pos: 15.5,-30.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7020 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-39.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7021 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-38.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7022 + components: + - pos: -23.5,-35.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7023 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-36.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7068 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-32.5 + parent: 4812 + type: Transform + - uid: 7069 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-15.5 + parent: 4812 + type: Transform + - uid: 7150 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-22.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7152 + components: + - pos: -29.5,-14.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7153 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-15.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7154 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-19.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7731 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-20.5 + parent: 4812 + type: Transform + - uid: 7796 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-19.5 + parent: 4812 + type: Transform + - uid: 8146 + components: + - pos: -26.5,20.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8147 + components: + - pos: -26.5,17.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8148 + components: + - rot: 3.141592653589793 rad + pos: -26.5,10.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8149 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,27.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8150 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,27.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8151 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,30.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8152 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,31.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8270 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,28.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8329 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,26.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8454 + components: + - pos: -25.5,14.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9015 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-37.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9016 + components: + - pos: -33.5,-33.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9042 + components: + - pos: -34.5,-36.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9048 + components: + - pos: -27.5,-39.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9049 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-40.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9055 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-40.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9056 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-40.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9072 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-31.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9073 + components: + - pos: -15.5,-30.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9531 + components: + - pos: -48.5,-4.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9659 + components: + - pos: -31.5,-25.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9698 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-3.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9699 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-2.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10408 + components: + - pos: -55.5,-22.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10409 + components: + - pos: -52.5,-22.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10410 + components: + - pos: -47.5,-19.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10520 + components: + - pos: -37.5,-22.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10521 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-28.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10525 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,-30.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10696 + components: + - pos: -35.5,-7.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10880 + components: + - pos: -30.5,8.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10881 + components: + - pos: -38.5,8.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10919 + components: + - pos: -34.5,-14.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11256 + components: + - pos: 10.5,-30.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11301 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-38.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11357 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,-33.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11462 + components: + - pos: 32.5,-36.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11473 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-32.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11474 + components: + - pos: 36.5,-36.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11476 + components: + - pos: 18.5,-36.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11674 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,24.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11813 + components: + - pos: -14.5,0.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11868 + components: + - pos: -14.5,5.5 + parent: 4812 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: Protolathe + entities: + - uid: 6182 + components: + - pos: 5.5,-16.5 + parent: 4812 + type: Transform + - materialWhiteList: + - Steel + - Glass + - Plastic + - Wood + - Gold + type: MaterialStorage + - uid: 10699 + components: + - pos: -28.5,-6.5 + parent: 4812 + type: Transform + - materialWhiteList: + - Steel + - Glass + - Plastic + - Wood + - Gold + type: MaterialStorage +- proto: ProtolatheMachineCircuitboard + entities: + - uid: 3390 + components: + - pos: 21.455725,8.6410265 + parent: 4812 + type: Transform + - uid: 4495 + components: + - pos: 17.598711,1.4220471 + parent: 4812 + type: Transform +- proto: Rack + entities: + - uid: 1652 + components: + - pos: 5.5,8.5 + parent: 4812 + type: Transform + - uid: 1675 + components: + - pos: 3.5,14.5 + parent: 4812 + type: Transform + - uid: 2699 + components: + - pos: 0.5,23.5 + parent: 4812 + type: Transform + - uid: 2700 + components: + - pos: 0.5,24.5 + parent: 4812 + type: Transform + - uid: 2701 + components: + - pos: 0.5,25.5 + parent: 4812 + type: Transform + - uid: 3267 + components: + - pos: 22.5,13.5 + parent: 4812 + type: Transform + - uid: 3289 + components: + - pos: 23.5,7.5 + parent: 4812 + type: Transform + - uid: 3392 + components: + - pos: 23.5,8.5 + parent: 4812 + type: Transform + - uid: 3393 + components: + - pos: 21.5,8.5 + parent: 4812 + type: Transform + - uid: 3442 + components: + - pos: 21.5,7.5 + parent: 4812 + type: Transform + - uid: 3748 + components: + - pos: 21.5,5.5 + parent: 4812 + type: Transform + - uid: 3750 + components: + - pos: 25.5,3.5 + parent: 4812 + type: Transform + - uid: 3751 + components: + - pos: 25.5,4.5 + parent: 4812 + type: Transform + - uid: 3752 + components: + - pos: 21.5,4.5 + parent: 4812 + type: Transform + - uid: 4485 + components: + - pos: 19.5,6.5 + parent: 4812 + type: Transform + - uid: 4486 + components: + - pos: 19.5,8.5 + parent: 4812 + type: Transform + - uid: 4493 + components: + - pos: 17.5,1.5 + parent: 4812 + type: Transform + - uid: 4539 + components: + - pos: 21.5,-6.5 + parent: 4812 + type: Transform + - uid: 4605 + components: + - pos: 16.5,11.5 + parent: 4812 + type: Transform + - uid: 6226 + components: + - pos: 11.5,-23.5 + parent: 4812 + type: Transform + - uid: 6227 + components: + - pos: 13.5,-23.5 + parent: 4812 + type: Transform + - uid: 8276 + components: + - pos: -16.5,16.5 + parent: 4812 + type: Transform + - uid: 8377 + components: + - pos: -35.5,19.5 + parent: 4812 + type: Transform + - uid: 8424 + components: + - pos: -37.5,12.5 + parent: 4812 + type: Transform + - uid: 10526 + components: + - pos: -41.5,-30.5 + parent: 4812 + type: Transform + - uid: 10603 + components: + - pos: -45.5,-17.5 + parent: 4812 + type: Transform + - uid: 10612 + components: + - pos: -48.5,-23.5 + parent: 4812 + type: Transform + - uid: 10721 + components: + - pos: -36.5,8.5 + parent: 4812 + type: Transform + - uid: 10877 + components: + - pos: -33.5,8.5 + parent: 4812 + type: Transform + - uid: 10898 + components: + - pos: -29.5,-12.5 + parent: 4812 + type: Transform + - uid: 10899 + components: + - pos: -30.5,-12.5 + parent: 4812 + type: Transform + - uid: 10979 + components: + - pos: -37.5,26.5 + parent: 4812 + type: Transform + - uid: 11306 + components: + - pos: 26.5,-35.5 + parent: 4812 + type: Transform + - uid: 11307 + components: + - pos: 24.5,-35.5 + parent: 4812 + type: Transform + - uid: 11308 + components: + - pos: 24.5,-36.5 + parent: 4812 + type: Transform + - uid: 11471 + components: + - pos: 28.5,-35.5 + parent: 4812 + type: Transform + - uid: 11776 + components: + - pos: -34.5,-18.5 + parent: 4812 + type: Transform + - uid: 11788 + components: + - pos: 22.5,-32.5 + parent: 4812 + type: Transform + - uid: 11838 + components: + - pos: -6.5,14.5 + parent: 4812 + type: Transform + - uid: 11884 + components: + - pos: 4.5,12.5 + parent: 4812 + type: Transform +- proto: RadarConsoleCircuitboard + entities: + - uid: 2725 + components: + - pos: 0.5,25.5 + parent: 4812 + type: Transform +- proto: RadioHandheld + entities: + - uid: 4582 + components: + - pos: 27.5,4.5 + parent: 4812 + type: Transform + - uid: 6481 + components: + - pos: -2.7355957,-24.240028 + parent: 4812 + type: Transform + - uid: 8453 + components: + - pos: -29.452932,10.599279 + parent: 4812 + type: Transform +- proto: Railing + entities: + - uid: 7370 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-8.5 + parent: 4812 + type: Transform + - uid: 7395 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-9.5 + parent: 4812 + type: Transform +- proto: RailingCorner + entities: + - uid: 7393 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-8.5 + parent: 4812 + type: Transform +- proto: RandomArcade + entities: + - uid: 10851 + components: + - pos: -23.5,5.5 + parent: 4812 + type: Transform +- proto: RandomArtifactSpawner + entities: + - uid: 6324 + components: + - pos: 22.5,-30.5 + parent: 4812 + type: Transform + - uid: 10445 + components: + - pos: -52.5,-17.5 + parent: 4812 + type: Transform + - uid: 12472 + components: + - pos: 5.5,-40.5 + parent: 4812 + type: Transform +- proto: RandomDrinkBottle + entities: + - uid: 10931 + components: + - pos: 3.5,4.5 + parent: 4812 + type: Transform +- proto: RandomDrinkGlass + entities: + - uid: 10785 + components: + - pos: 1.5,8.5 + parent: 4812 + type: Transform + - uid: 10930 + components: + - pos: 1.5,7.5 + parent: 4812 + type: Transform +- proto: RandomFoodMeal + entities: + - uid: 3776 + components: + - pos: -2.5,8.5 + parent: 4812 + type: Transform + - uid: 10933 + components: + - pos: 1.5,-0.5 + parent: 4812 + type: Transform +- proto: RandomInstruments + entities: + - uid: 4456 + components: + - pos: 14.5,6.5 + parent: 4812 + type: Transform +- proto: RandomPainting + entities: + - uid: 12164 + components: + - pos: -29.5,-20.5 + parent: 4812 + type: Transform + - uid: 12165 + components: + - pos: -33.5,-14.5 + parent: 4812 + type: Transform + - uid: 12166 + components: + - pos: -33.5,-16.5 + parent: 4812 + type: Transform + - uid: 12167 + components: + - pos: -33.5,-18.5 + parent: 4812 + type: Transform +- proto: RandomPosterAny + entities: + - uid: 1788 + components: + - pos: -10.5,2.5 + parent: 4812 + type: Transform + - uid: 3279 + components: + - pos: 13.5,27.5 + parent: 4812 + type: Transform + - uid: 9067 + components: + - pos: -32.5,-35.5 + parent: 4812 + type: Transform + - uid: 10862 + components: + - pos: -19.5,5.5 + parent: 4812 + type: Transform + - uid: 10863 + components: + - pos: -16.5,-1.5 + parent: 4812 + type: Transform + - uid: 11874 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-32.5 + parent: 4812 + type: Transform + - uid: 11875 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-31.5 + parent: 4812 + type: Transform + - uid: 11876 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-31.5 + parent: 4812 + type: Transform +- proto: RandomPosterContraband + entities: + - uid: 4585 + components: + - pos: 17.5,0.5 + parent: 4812 + type: Transform + - uid: 6492 + components: + - pos: 15.5,9.5 + parent: 4812 + type: Transform + - uid: 6493 + components: + - pos: 17.5,-30.5 + parent: 4812 + type: Transform + - uid: 9066 + components: + - pos: -28.5,-40.5 + parent: 4812 + type: Transform +- proto: RandomPosterLegit + entities: + - uid: 1470 + components: + - pos: -17.5,-4.5 + parent: 4812 + type: Transform + - uid: 1471 + components: + - pos: -15.5,-4.5 + parent: 4812 + type: Transform + - uid: 1789 + components: + - pos: -9.5,-2.5 + parent: 4812 + type: Transform + - uid: 1790 + components: + - pos: 8.5,0.5 + parent: 4812 + type: Transform + - uid: 1791 + components: + - pos: 4.5,-8.5 + parent: 4812 + type: Transform + - uid: 1792 + components: + - pos: -16.5,5.5 + parent: 4812 + type: Transform + - uid: 1818 + components: + - pos: -6.5,11.5 + parent: 4812 + type: Transform + - uid: 4588 + components: + - pos: 15.5,12.5 + parent: 4812 + type: Transform + - uid: 4589 + components: + - pos: 22.5,-6.5 + parent: 4812 + type: Transform + - uid: 4590 + components: + - pos: 15.5,-4.5 + parent: 4812 + type: Transform + - uid: 6489 + components: + - pos: -3.5,-20.5 + parent: 4812 + type: Transform + - uid: 6490 + components: + - pos: 5.5,-10.5 + parent: 4812 + type: Transform + - uid: 6491 + components: + - pos: 10.5,-3.5 + parent: 4812 + type: Transform + - uid: 11872 + components: + - rot: 3.141592653589793 rad + pos: -10.5,14.5 + parent: 4812 + type: Transform + - uid: 11873 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-1.5 + parent: 4812 + type: Transform +- proto: RandomSoap + entities: + - uid: 1754 + components: + - pos: -10.5,6.5 + parent: 4812 + type: Transform + - uid: 3439 + components: + - pos: 19.5,36.5 + parent: 4812 + type: Transform + - uid: 4457 + components: + - pos: 16.5,6.5 + parent: 4812 + type: Transform + - uid: 8248 + components: + - pos: -19.5,29.5 + parent: 4812 + type: Transform +- proto: RandomSpawner + entities: + - uid: 10934 + components: + - pos: -1.5,17.5 + parent: 4812 + type: Transform + - uid: 10935 + components: + - pos: -14.5,20.5 + parent: 4812 + type: Transform + - uid: 10936 + components: + - pos: -23.5,18.5 + parent: 4812 + type: Transform + - uid: 10937 + components: + - pos: -26.5,3.5 + parent: 4812 + type: Transform + - uid: 10938 + components: + - pos: -20.5,2.5 + parent: 4812 + type: Transform + - uid: 10939 + components: + - pos: -33.5,-1.5 + parent: 4812 + type: Transform + - uid: 10940 + components: + - pos: -25.5,-8.5 + parent: 4812 + type: Transform + - uid: 10985 + components: + - pos: -16.5,-12.5 + parent: 4812 + type: Transform + - uid: 11236 + components: + - pos: 12.5,-36.5 + parent: 4812 + type: Transform + - uid: 11237 + components: + - pos: 6.5,-37.5 + parent: 4812 + type: Transform + - uid: 11238 + components: + - pos: 4.5,-32.5 + parent: 4812 + type: Transform + - uid: 11239 + components: + - pos: 10.5,-40.5 + parent: 4812 + type: Transform + - uid: 11739 + components: + - pos: -6.5,-13.5 + parent: 4812 + type: Transform + - uid: 11911 + components: + - pos: -0.5,-22.5 + parent: 4812 + type: Transform + - uid: 11912 + components: + - pos: -6.5,-34.5 + parent: 4812 + type: Transform + - uid: 11913 + components: + - pos: -11.5,-40.5 + parent: 4812 + type: Transform + - uid: 11915 + components: + - pos: 6.5,-18.5 + parent: 4812 + type: Transform + - uid: 12047 + components: + - pos: 21.5,-24.5 + parent: 4812 + type: Transform + - uid: 12147 + components: + - pos: 31.5,-33.5 + parent: 4812 + type: Transform + - uid: 12149 + components: + - pos: 15.5,-34.5 + parent: 4812 + type: Transform + - uid: 12152 + components: + - pos: 7.5,-37.5 + parent: 4812 + type: Transform + - uid: 12153 + components: + - pos: 8.5,-36.5 + parent: 4812 + type: Transform + - uid: 12154 + components: + - pos: 12.5,-38.5 + parent: 4812 + type: Transform + - uid: 12155 + components: + - pos: 9.5,-33.5 + parent: 4812 + type: Transform + - uid: 12156 + components: + - pos: 12.5,-31.5 + parent: 4812 + type: Transform + - uid: 12157 + components: + - pos: 27.5,-1.5 + parent: 4812 + type: Transform + - uid: 12158 + components: + - pos: 16.5,-3.5 + parent: 4812 + type: Transform + - uid: 12159 + components: + - pos: 12.5,4.5 + parent: 4812 + type: Transform + - uid: 12160 + components: + - pos: 19.5,14.5 + parent: 4812 + type: Transform + - uid: 12161 + components: + - pos: -30.5,17.5 + parent: 4812 + type: Transform +- proto: RCD + entities: + - uid: 10767 + components: + - pos: -48.51471,-8.421415 + parent: 4812 + type: Transform +- proto: RCDAmmo + entities: + - uid: 10768 + components: + - pos: -48.249084,-8.265165 + parent: 4812 + type: Transform +- proto: ReagentContainerFlour + entities: + - uid: 1645 + components: + - pos: 7.6925507,0.6939993 + parent: 4812 + type: Transform +- proto: ReagentGrinderMachineCircuitboard + entities: + - uid: 3404 + components: + - pos: 23.455725,8.6254015 + parent: 4812 + type: Transform +- proto: Recycler + entities: + - uid: 11244 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-38.5 + parent: 4812 + type: Transform + - links: + - 11245 + type: DeviceLinkSink +- proto: ReinforcedPlasmaWindow + entities: + - uid: 4138 + components: + - pos: -35.5,18.5 + parent: 4812 + type: Transform + - uid: 4139 + components: + - pos: -33.5,18.5 + parent: 4812 + type: Transform + - uid: 4140 + components: + - pos: -32.5,19.5 + parent: 4812 + type: Transform + - uid: 4141 + components: + - pos: -32.5,20.5 + parent: 4812 + type: Transform + - uid: 9035 + components: + - pos: -50.5,11.5 + parent: 4812 + type: Transform + - uid: 9176 + components: + - pos: -50.5,1.5 + parent: 4812 + type: Transform + - uid: 9307 + components: + - pos: -50.5,9.5 + parent: 4812 + type: Transform + - uid: 9308 + components: + - pos: -50.5,7.5 + parent: 4812 + type: Transform + - uid: 9309 + components: + - pos: -50.5,5.5 + parent: 4812 + type: Transform + - uid: 9310 + components: + - pos: -50.5,3.5 + parent: 4812 + type: Transform + - uid: 9475 + components: + - pos: -43.5,15.5 + parent: 4812 + type: Transform + - uid: 9476 + components: + - pos: -44.5,15.5 + parent: 4812 + type: Transform + - uid: 9477 + components: + - pos: -45.5,15.5 + parent: 4812 + type: Transform + - uid: 9478 + components: + - pos: -46.5,16.5 + parent: 4812 + type: Transform + - uid: 9479 + components: + - pos: -46.5,17.5 + parent: 4812 + type: Transform + - uid: 9480 + components: + - pos: -42.5,16.5 + parent: 4812 + type: Transform + - uid: 9481 + components: + - pos: -42.5,17.5 + parent: 4812 + type: Transform + - uid: 9863 + components: + - pos: -46.5,-13.5 + parent: 4812 + type: Transform + - uid: 9875 + components: + - pos: -46.5,-11.5 + parent: 4812 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 106 + components: + - pos: -7.5,15.5 + parent: 4812 + type: Transform + - uid: 107 + components: + - pos: -8.5,15.5 + parent: 4812 + type: Transform + - uid: 108 + components: + - pos: -9.5,16.5 + parent: 4812 + type: Transform + - uid: 109 + components: + - pos: -9.5,17.5 + parent: 4812 + type: Transform + - uid: 110 + components: + - pos: -8.5,18.5 + parent: 4812 + type: Transform + - uid: 111 + components: + - pos: -7.5,18.5 + parent: 4812 + type: Transform + - uid: 112 + components: + - pos: -6.5,17.5 + parent: 4812 + type: Transform + - uid: 113 + components: + - pos: -6.5,16.5 + parent: 4812 + type: Transform + - uid: 114 + components: + - pos: 3.5,15.5 + parent: 4812 + type: Transform + - uid: 115 + components: + - pos: 2.5,15.5 + parent: 4812 + type: Transform + - uid: 116 + components: + - pos: 1.5,16.5 + parent: 4812 + type: Transform + - uid: 117 + components: + - pos: 1.5,17.5 + parent: 4812 + type: Transform + - uid: 118 + components: + - pos: 2.5,18.5 + parent: 4812 + type: Transform + - uid: 119 + components: + - pos: 3.5,18.5 + parent: 4812 + type: Transform + - uid: 120 + components: + - pos: 4.5,17.5 + parent: 4812 + type: Transform + - uid: 121 + components: + - pos: 4.5,16.5 + parent: 4812 + type: Transform + - uid: 128 + components: + - pos: -4.5,15.5 + parent: 4812 + type: Transform + - uid: 129 + components: + - pos: -4.5,12.5 + parent: 4812 + type: Transform + - uid: 130 + components: + - pos: -0.5,12.5 + parent: 4812 + type: Transform + - uid: 131 + components: + - pos: -0.5,15.5 + parent: 4812 + type: Transform + - uid: 132 + components: + - pos: -0.5,-9.5 + parent: 4812 + type: Transform + - uid: 133 + components: + - pos: -4.5,-9.5 + parent: 4812 + type: Transform + - uid: 134 + components: + - pos: 2.5,1.5 + parent: 4812 + type: Transform + - uid: 135 + components: + - pos: 5.5,18.5 + parent: 4812 + type: Transform + - uid: 136 + components: + - pos: 7.5,18.5 + parent: 4812 + type: Transform + - uid: 137 + components: + - pos: 9.5,18.5 + parent: 4812 + type: Transform + - uid: 178 + components: + - pos: -18.5,18.5 + parent: 4812 + type: Transform + - uid: 179 + components: + - pos: -19.5,18.5 + parent: 4812 + type: Transform + - uid: 184 + components: + - pos: -21.5,14.5 + parent: 4812 + type: Transform + - uid: 215 + components: + - pos: -6.5,-10.5 + parent: 4812 + type: Transform + - uid: 216 + components: + - pos: -8.5,-10.5 + parent: 4812 + type: Transform + - uid: 217 + components: + - pos: -9.5,-10.5 + parent: 4812 + type: Transform + - uid: 218 + components: + - pos: -12.5,-10.5 + parent: 4812 + type: Transform + - uid: 219 + components: + - pos: -14.5,-10.5 + parent: 4812 + type: Transform + - uid: 220 + components: + - pos: -16.5,-10.5 + parent: 4812 + type: Transform + - uid: 1784 + components: + - pos: 18.5,31.5 + parent: 4812 + type: Transform + - uid: 1843 + components: + - pos: -4.5,27.5 + parent: 4812 + type: Transform + - uid: 1844 + components: + - pos: -2.5,27.5 + parent: 4812 + type: Transform + - uid: 1845 + components: + - pos: -0.5,27.5 + parent: 4812 + type: Transform + - uid: 1856 + components: + - pos: 1.5,30.5 + parent: 4812 + type: Transform + - uid: 1869 + components: + - pos: -9.5,32.5 + parent: 4812 + type: Transform + - uid: 1870 + components: + - pos: -9.5,34.5 + parent: 4812 + type: Transform + - uid: 1871 + components: + - pos: -9.5,35.5 + parent: 4812 + type: Transform + - uid: 1872 + components: + - pos: -8.5,35.5 + parent: 4812 + type: Transform + - uid: 1873 + components: + - pos: -6.5,35.5 + parent: 4812 + type: Transform + - uid: 1874 + components: + - pos: -6.5,36.5 + parent: 4812 + type: Transform + - uid: 1875 + components: + - pos: -5.5,36.5 + parent: 4812 + type: Transform + - uid: 1876 + components: + - pos: 1.5,35.5 + parent: 4812 + type: Transform + - uid: 1877 + components: + - pos: 1.5,36.5 + parent: 4812 + type: Transform + - uid: 1878 + components: + - pos: 0.5,36.5 + parent: 4812 + type: Transform + - uid: 1879 + components: + - pos: 4.5,34.5 + parent: 4812 + type: Transform + - uid: 1880 + components: + - pos: 4.5,35.5 + parent: 4812 + type: Transform + - uid: 1881 + components: + - pos: 3.5,35.5 + parent: 4812 + type: Transform + - uid: 1882 + components: + - pos: -1.5,36.5 + parent: 4812 + type: Transform + - uid: 1883 + components: + - pos: -2.5,36.5 + parent: 4812 + type: Transform + - uid: 1884 + components: + - pos: -3.5,36.5 + parent: 4812 + type: Transform + - uid: 1897 + components: + - pos: 4.5,26.5 + parent: 4812 + type: Transform + - uid: 1898 + components: + - pos: 4.5,24.5 + parent: 4812 + type: Transform + - uid: 1902 + components: + - pos: 6.5,33.5 + parent: 4812 + type: Transform + - uid: 1924 + components: + - pos: 6.5,23.5 + parent: 4812 + type: Transform + - uid: 1925 + components: + - pos: 8.5,23.5 + parent: 4812 + type: Transform + - uid: 1944 + components: + - pos: -9.5,22.5 + parent: 4812 + type: Transform + - uid: 1945 + components: + - pos: -9.5,24.5 + parent: 4812 + type: Transform + - uid: 1962 + components: + - pos: -12.5,30.5 + parent: 4812 + type: Transform + - uid: 1963 + components: + - pos: -11.5,30.5 + parent: 4812 + type: Transform + - uid: 2201 + components: + - pos: -6.5,28.5 + parent: 4812 + type: Transform + - uid: 2204 + components: + - pos: -6.5,30.5 + parent: 4812 + type: Transform + - uid: 2209 + components: + - pos: 1.5,28.5 + parent: 4812 + type: Transform + - uid: 2466 + components: + - pos: -10.5,26.5 + parent: 4812 + type: Transform + - uid: 2467 + components: + - pos: -12.5,26.5 + parent: 4812 + type: Transform + - uid: 2468 + components: + - pos: -13.5,26.5 + parent: 4812 + type: Transform + - uid: 2469 + components: + - pos: 5.5,27.5 + parent: 4812 + type: Transform + - uid: 2470 + components: + - pos: 7.5,27.5 + parent: 4812 + type: Transform + - uid: 2471 + components: + - pos: 8.5,27.5 + parent: 4812 + type: Transform + - uid: 2761 + components: + - pos: 21.5,26.5 + parent: 4812 + type: Transform + - uid: 2762 + components: + - pos: 23.5,26.5 + parent: 4812 + type: Transform + - uid: 2763 + components: + - pos: 22.5,29.5 + parent: 4812 + type: Transform + - uid: 2764 + components: + - pos: 19.5,29.5 + parent: 4812 + type: Transform + - uid: 2772 + components: + - pos: 22.5,26.5 + parent: 4812 + type: Transform + - uid: 2773 + components: + - pos: 22.5,23.5 + parent: 4812 + type: Transform + - uid: 2775 + components: + - pos: 20.5,29.5 + parent: 4812 + type: Transform + - uid: 2801 + components: + - pos: 13.5,17.5 + parent: 4812 + type: Transform + - uid: 2802 + components: + - pos: 13.5,19.5 + parent: 4812 + type: Transform + - uid: 2803 + components: + - pos: 14.5,16.5 + parent: 4812 + type: Transform + - uid: 2804 + components: + - pos: 16.5,16.5 + parent: 4812 + type: Transform + - uid: 2805 + components: + - pos: 18.5,16.5 + parent: 4812 + type: Transform + - uid: 2806 + components: + - pos: 20.5,16.5 + parent: 4812 + type: Transform + - uid: 2807 + components: + - pos: 21.5,21.5 + parent: 4812 + type: Transform + - uid: 2808 + components: + - pos: 21.5,19.5 + parent: 4812 + type: Transform + - uid: 2809 + components: + - pos: 19.5,22.5 + parent: 4812 + type: Transform + - uid: 2810 + components: + - pos: 13.5,13.5 + parent: 4812 + type: Transform + - uid: 2811 + components: + - pos: 14.5,22.5 + parent: 4812 + type: Transform + - uid: 2812 + components: + - pos: 16.5,28.5 + parent: 4812 + type: Transform + - uid: 2819 + components: + - pos: 18.5,30.5 + parent: 4812 + type: Transform + - uid: 2884 + components: + - pos: 23.5,17.5 + parent: 4812 + type: Transform + - uid: 2885 + components: + - pos: 21.5,13.5 + parent: 4812 + type: Transform + - uid: 2886 + components: + - pos: 25.5,15.5 + parent: 4812 + type: Transform + - uid: 2887 + components: + - pos: 25.5,13.5 + parent: 4812 + type: Transform + - uid: 2888 + components: + - pos: 26.5,16.5 + parent: 4812 + type: Transform + - uid: 2889 + components: + - pos: 27.5,16.5 + parent: 4812 + type: Transform + - uid: 2890 + components: + - pos: 28.5,16.5 + parent: 4812 + type: Transform + - uid: 2891 + components: + - pos: 28.5,15.5 + parent: 4812 + type: Transform + - uid: 2892 + components: + - pos: 28.5,13.5 + parent: 4812 + type: Transform + - uid: 2893 + components: + - pos: 28.5,12.5 + parent: 4812 + type: Transform + - uid: 2894 + components: + - pos: 27.5,12.5 + parent: 4812 + type: Transform + - uid: 2895 + components: + - pos: 26.5,12.5 + parent: 4812 + type: Transform + - uid: 3117 + components: + - pos: 16.5,36.5 + parent: 4812 + type: Transform + - uid: 3503 + components: + - pos: 6.5,43.5 + parent: 4812 + type: Transform + - uid: 3698 + components: + - pos: 10.5,54.5 + parent: 4812 + type: Transform + - uid: 4048 + components: + - pos: 34.5,-8.5 + parent: 4812 + type: Transform + - uid: 4050 + components: + - pos: 33.5,-8.5 + parent: 4812 + type: Transform + - uid: 4051 + components: + - pos: 32.5,-8.5 + parent: 4812 + type: Transform + - uid: 4052 + components: + - pos: 31.5,-6.5 + parent: 4812 + type: Transform + - uid: 4053 + components: + - pos: 32.5,-6.5 + parent: 4812 + type: Transform + - uid: 4054 + components: + - pos: 33.5,-6.5 + parent: 4812 + type: Transform + - uid: 4055 + components: + - pos: 34.5,-6.5 + parent: 4812 + type: Transform + - uid: 4056 + components: + - pos: 34.5,-4.5 + parent: 4812 + type: Transform + - uid: 4057 + components: + - pos: 33.5,-4.5 + parent: 4812 + type: Transform + - uid: 4058 + components: + - pos: 32.5,-4.5 + parent: 4812 + type: Transform + - uid: 4059 + components: + - pos: 32.5,-3.5 + parent: 4812 + type: Transform + - uid: 4060 + components: + - pos: 32.5,-2.5 + parent: 4812 + type: Transform + - uid: 4061 + components: + - pos: 32.5,-1.5 + parent: 4812 + type: Transform + - uid: 4062 + components: + - pos: 32.5,-0.5 + parent: 4812 + type: Transform + - uid: 4063 + components: + - pos: 33.5,-0.5 + parent: 4812 + type: Transform + - uid: 4064 + components: + - pos: 34.5,-0.5 + parent: 4812 + type: Transform + - uid: 4065 + components: + - pos: 34.5,1.5 + parent: 4812 + type: Transform + - uid: 4066 + components: + - pos: 33.5,1.5 + parent: 4812 + type: Transform + - uid: 4067 + components: + - pos: 32.5,1.5 + parent: 4812 + type: Transform + - uid: 4068 + components: + - pos: 31.5,1.5 + parent: 4812 + type: Transform + - uid: 4069 + components: + - pos: 32.5,3.5 + parent: 4812 + type: Transform + - uid: 4070 + components: + - pos: 33.5,3.5 + parent: 4812 + type: Transform + - uid: 4071 + components: + - pos: 34.5,3.5 + parent: 4812 + type: Transform + - uid: 4072 + components: + - pos: 32.5,4.5 + parent: 4812 + type: Transform + - uid: 4073 + components: + - pos: 29.5,1.5 + parent: 4812 + type: Transform + - uid: 4074 + components: + - pos: 27.5,1.5 + parent: 4812 + type: Transform + - uid: 4075 + components: + - pos: 26.5,-0.5 + parent: 4812 + type: Transform + - uid: 4076 + components: + - pos: 26.5,-4.5 + parent: 4812 + type: Transform + - uid: 4077 + components: + - pos: 27.5,-6.5 + parent: 4812 + type: Transform + - uid: 4078 + components: + - pos: 27.5,-10.5 + parent: 4812 + type: Transform + - uid: 4079 + components: + - pos: 32.5,-9.5 + parent: 4812 + type: Transform + - uid: 4080 + components: + - pos: 18.5,-4.5 + parent: 4812 + type: Transform + - uid: 4099 + components: + - pos: 14.5,-12.5 + parent: 4812 + type: Transform + - uid: 4100 + components: + - pos: 14.5,-11.5 + parent: 4812 + type: Transform + - uid: 4110 + components: + - pos: 19.5,-8.5 + parent: 4812 + type: Transform + - uid: 4111 + components: + - pos: 18.5,-8.5 + parent: 4812 + type: Transform + - uid: 4112 + components: + - pos: 17.5,-8.5 + parent: 4812 + type: Transform + - uid: 4113 + components: + - pos: 17.5,-6.5 + parent: 4812 + type: Transform + - uid: 4114 + components: + - pos: 18.5,-6.5 + parent: 4812 + type: Transform + - uid: 4115 + components: + - pos: 19.5,-6.5 + parent: 4812 + type: Transform + - uid: 4627 + components: + - pos: -3.5,-33.5 + parent: 4812 + type: Transform + - uid: 4628 + components: + - pos: -2.5,-33.5 + parent: 4812 + type: Transform + - uid: 4629 + components: + - pos: -1.5,-33.5 + parent: 4812 + type: Transform + - uid: 4630 + components: + - pos: -1.5,-36.5 + parent: 4812 + type: Transform + - uid: 4631 + components: + - pos: -2.5,-36.5 + parent: 4812 + type: Transform + - uid: 4632 + components: + - pos: -3.5,-36.5 + parent: 4812 + type: Transform + - uid: 4633 + components: + - pos: -0.5,-36.5 + parent: 4812 + type: Transform + - uid: 4634 + components: + - pos: 0.5,-36.5 + parent: 4812 + type: Transform + - uid: 4635 + components: + - pos: -4.5,-36.5 + parent: 4812 + type: Transform + - uid: 4636 + components: + - pos: -5.5,-36.5 + parent: 4812 + type: Transform + - uid: 4637 + components: + - pos: -8.5,-36.5 + parent: 4812 + type: Transform + - uid: 4661 + components: + - pos: -9.5,-37.5 + parent: 4812 + type: Transform + - uid: 4662 + components: + - pos: -9.5,-38.5 + parent: 4812 + type: Transform + - uid: 4663 + components: + - pos: -9.5,-39.5 + parent: 4812 + type: Transform + - uid: 4664 + components: + - pos: -9.5,-41.5 + parent: 4812 + type: Transform + - uid: 4665 + components: + - pos: -9.5,-42.5 + parent: 4812 + type: Transform + - uid: 4666 + components: + - pos: -9.5,-44.5 + parent: 4812 + type: Transform + - uid: 4667 + components: + - pos: -9.5,-49.5 + parent: 4812 + type: Transform + - uid: 4668 + components: + - pos: -9.5,-51.5 + parent: 4812 + type: Transform + - uid: 4669 + components: + - pos: -8.5,-51.5 + parent: 4812 + type: Transform + - uid: 4670 + components: + - pos: -7.5,-51.5 + parent: 4812 + type: Transform + - uid: 4671 + components: + - pos: -8.5,-49.5 + parent: 4812 + type: Transform + - uid: 4672 + components: + - pos: -7.5,-49.5 + parent: 4812 + type: Transform + - uid: 4677 + components: + - pos: -7.5,-44.5 + parent: 4812 + type: Transform + - uid: 4678 + components: + - pos: -8.5,-44.5 + parent: 4812 + type: Transform + - uid: 4679 + components: + - pos: -8.5,-42.5 + parent: 4812 + type: Transform + - uid: 4680 + components: + - pos: -7.5,-42.5 + parent: 4812 + type: Transform + - uid: 4682 + components: + - pos: -9.5,-52.5 + parent: 4812 + type: Transform + - uid: 4683 + components: + - pos: -12.5,-52.5 + parent: 4812 + type: Transform + - uid: 4684 + components: + - pos: -12.5,-51.5 + parent: 4812 + type: Transform + - uid: 4687 + components: + - pos: -12.5,-54.5 + parent: 4812 + type: Transform + - uid: 4688 + components: + - pos: -12.5,-55.5 + parent: 4812 + type: Transform + - uid: 4691 + components: + - pos: -9.5,-55.5 + parent: 4812 + type: Transform + - uid: 4692 + components: + - pos: -9.5,-54.5 + parent: 4812 + type: Transform + - uid: 4695 + components: + - pos: -12.5,-38.5 + parent: 4812 + type: Transform + - uid: 4697 + components: + - pos: -12.5,-41.5 + parent: 4812 + type: Transform + - uid: 4698 + components: + - pos: -12.5,-42.5 + parent: 4812 + type: Transform + - uid: 4699 + components: + - pos: -12.5,-44.5 + parent: 4812 + type: Transform + - uid: 4700 + components: + - pos: -12.5,-49.5 + parent: 4812 + type: Transform + - uid: 4701 + components: + - pos: -13.5,-51.5 + parent: 4812 + type: Transform + - uid: 4702 + components: + - pos: -14.5,-51.5 + parent: 4812 + type: Transform + - uid: 4703 + components: + - pos: -13.5,-49.5 + parent: 4812 + type: Transform + - uid: 4704 + components: + - pos: -14.5,-49.5 + parent: 4812 + type: Transform + - uid: 4709 + components: + - pos: -14.5,-44.5 + parent: 4812 + type: Transform + - uid: 4710 + components: + - pos: -13.5,-44.5 + parent: 4812 + type: Transform + - uid: 4711 + components: + - pos: -13.5,-42.5 + parent: 4812 + type: Transform + - uid: 4712 + components: + - pos: -14.5,-42.5 + parent: 4812 + type: Transform + - uid: 4719 + components: + - pos: -44.5,-30.5 + parent: 4812 + type: Transform + - uid: 4798 + components: + - pos: -45.5,-27.5 + parent: 4812 + type: Transform + - uid: 4923 + components: + - pos: -20.5,-24.5 + parent: 4812 + type: Transform + - uid: 4924 + components: + - pos: -21.5,-24.5 + parent: 4812 + type: Transform + - uid: 4988 + components: + - pos: -14.5,-24.5 + parent: 4812 + type: Transform + - uid: 4994 + components: + - pos: -13.5,-23.5 + parent: 4812 + type: Transform + - uid: 5004 + components: + - pos: -7.5,-25.5 + parent: 4812 + type: Transform + - uid: 5040 + components: + - pos: -16.5,-19.5 + parent: 4812 + type: Transform + - uid: 5049 + components: + - pos: -14.5,-19.5 + parent: 4812 + type: Transform + - uid: 5300 + components: + - pos: -4.5,-28.5 + parent: 4812 + type: Transform + - uid: 5301 + components: + - pos: -0.5,-27.5 + parent: 4812 + type: Transform + - uid: 5302 + components: + - pos: -4.5,-26.5 + parent: 4812 + type: Transform + - uid: 5303 + components: + - pos: -2.5,-23.5 + parent: 4812 + type: Transform + - uid: 5313 + components: + - pos: 21.5,-14.5 + parent: 4812 + type: Transform + - uid: 5315 + components: + - pos: 18.5,-10.5 + parent: 4812 + type: Transform + - uid: 5317 + components: + - pos: 21.5,-15.5 + parent: 4812 + type: Transform + - uid: 5318 + components: + - pos: 21.5,-16.5 + parent: 4812 + type: Transform + - uid: 5319 + components: + - pos: 21.5,-17.5 + parent: 4812 + type: Transform + - uid: 5320 + components: + - pos: 21.5,-18.5 + parent: 4812 + type: Transform + - uid: 5321 + components: + - pos: 15.5,-13.5 + parent: 4812 + type: Transform + - uid: 5322 + components: + - pos: 17.5,-10.5 + parent: 4812 + type: Transform + - uid: 5323 + components: + - pos: 16.5,-12.5 + parent: 4812 + type: Transform + - uid: 5324 + components: + - pos: 16.5,-11.5 + parent: 4812 + type: Transform + - uid: 5325 + components: + - pos: 16.5,-10.5 + parent: 4812 + type: Transform + - uid: 5326 + components: + - pos: 19.5,-10.5 + parent: 4812 + type: Transform + - uid: 5327 + components: + - pos: 20.5,-10.5 + parent: 4812 + type: Transform + - uid: 5328 + components: + - pos: 20.5,-11.5 + parent: 4812 + type: Transform + - uid: 5329 + components: + - pos: 20.5,-12.5 + parent: 4812 + type: Transform + - uid: 5393 + components: + - pos: 20.5,-25.5 + parent: 4812 + type: Transform + - uid: 5415 + components: + - pos: 2.5,-18.5 + parent: 4812 + type: Transform + - uid: 5416 + components: + - pos: 2.5,-16.5 + parent: 4812 + type: Transform + - uid: 5417 + components: + - pos: 2.5,-14.5 + parent: 4812 + type: Transform + - uid: 5418 + components: + - pos: 3.5,-13.5 + parent: 4812 + type: Transform + - uid: 5419 + components: + - pos: 5.5,-13.5 + parent: 4812 + type: Transform + - uid: 5420 + components: + - pos: 7.5,-13.5 + parent: 4812 + type: Transform + - uid: 5421 + components: + - pos: 3.5,-19.5 + parent: 4812 + type: Transform + - uid: 5422 + components: + - pos: 5.5,-19.5 + parent: 4812 + type: Transform + - uid: 5428 + components: + - pos: 8.5,-15.5 + parent: 4812 + type: Transform + - uid: 5429 + components: + - pos: 8.5,-17.5 + parent: 4812 + type: Transform + - uid: 5458 + components: + - pos: 10.5,-28.5 + parent: 4812 + type: Transform + - uid: 5459 + components: + - pos: 10.5,-26.5 + parent: 4812 + type: Transform + - uid: 5460 + components: + - pos: 10.5,-24.5 + parent: 4812 + type: Transform + - uid: 5461 + components: + - pos: 7.5,-28.5 + parent: 4812 + type: Transform + - uid: 5462 + components: + - pos: 7.5,-26.5 + parent: 4812 + type: Transform + - uid: 5463 + components: + - pos: 7.5,-25.5 + parent: 4812 + type: Transform + - uid: 5464 + components: + - pos: 10.5,-23.5 + parent: 4812 + type: Transform + - uid: 5472 + components: + - pos: 6.5,-22.5 + parent: 4812 + type: Transform + - uid: 5474 + components: + - pos: 7.5,-23.5 + parent: 4812 + type: Transform + - uid: 5475 + components: + - pos: 4.5,-22.5 + parent: 4812 + type: Transform + - uid: 5477 + components: + - pos: 14.5,-19.5 + parent: 4812 + type: Transform + - uid: 5478 + components: + - pos: 20.5,-23.5 + parent: 4812 + type: Transform + - uid: 5481 + components: + - pos: 19.5,-30.5 + parent: 4812 + type: Transform + - uid: 5482 + components: + - pos: 19.5,-29.5 + parent: 4812 + type: Transform + - uid: 5483 + components: + - pos: 19.5,-28.5 + parent: 4812 + type: Transform + - uid: 5491 + components: + - pos: 9.5,-13.5 + parent: 4812 + type: Transform + - uid: 5533 + components: + - pos: 23.5,-18.5 + parent: 4812 + type: Transform + - uid: 5534 + components: + - pos: 23.5,-17.5 + parent: 4812 + type: Transform + - uid: 5535 + components: + - pos: 24.5,-17.5 + parent: 4812 + type: Transform + - uid: 5536 + components: + - pos: 24.5,-16.5 + parent: 4812 + type: Transform + - uid: 5537 + components: + - pos: 25.5,-16.5 + parent: 4812 + type: Transform + - uid: 5538 + components: + - pos: 26.5,-16.5 + parent: 4812 + type: Transform + - uid: 5539 + components: + - pos: 27.5,-16.5 + parent: 4812 + type: Transform + - uid: 5540 + components: + - pos: 28.5,-16.5 + parent: 4812 + type: Transform + - uid: 5541 + components: + - pos: 28.5,-17.5 + parent: 4812 + type: Transform + - uid: 5542 + components: + - pos: 29.5,-17.5 + parent: 4812 + type: Transform + - uid: 5543 + components: + - pos: 29.5,-18.5 + parent: 4812 + type: Transform + - uid: 5580 + components: + - pos: 27.5,-21.5 + parent: 4812 + type: Transform + - uid: 5581 + components: + - pos: 26.5,-21.5 + parent: 4812 + type: Transform + - uid: 5582 + components: + - pos: 25.5,-21.5 + parent: 4812 + type: Transform + - uid: 5597 + components: + - pos: 23.5,-27.5 + parent: 4812 + type: Transform + - uid: 5782 + components: + - pos: 32.5,-22.5 + parent: 4812 + type: Transform + - uid: 5783 + components: + - pos: 33.5,-22.5 + parent: 4812 + type: Transform + - uid: 5784 + components: + - pos: 34.5,-22.5 + parent: 4812 + type: Transform + - uid: 5807 + components: + - pos: 12.5,-19.5 + parent: 4812 + type: Transform + - uid: 6311 + components: + - pos: 22.5,-27.5 + parent: 4812 + type: Transform + - uid: 6573 + components: + - pos: -8.5,-19.5 + parent: 4812 + type: Transform + - uid: 6579 + components: + - pos: -12.5,-19.5 + parent: 4812 + type: Transform + - uid: 6588 + components: + - pos: -12.5,-13.5 + parent: 4812 + type: Transform + - uid: 6589 + components: + - pos: -10.5,-13.5 + parent: 4812 + type: Transform + - uid: 6590 + components: + - pos: -8.5,-13.5 + parent: 4812 + type: Transform + - uid: 6591 + components: + - pos: -7.5,-14.5 + parent: 4812 + type: Transform + - uid: 6592 + components: + - pos: -7.5,-16.5 + parent: 4812 + type: Transform + - uid: 6593 + components: + - pos: -7.5,-18.5 + parent: 4812 + type: Transform + - uid: 6703 + components: + - pos: -19.5,-40.5 + parent: 4812 + type: Transform + - uid: 6710 + components: + - pos: -20.5,-40.5 + parent: 4812 + type: Transform + - uid: 6754 + components: + - pos: -15.5,-37.5 + parent: 4812 + type: Transform + - uid: 6755 + components: + - pos: -16.5,-37.5 + parent: 4812 + type: Transform + - uid: 6756 + components: + - pos: -17.5,-37.5 + parent: 4812 + type: Transform + - uid: 7196 + components: + - pos: -7.5,-27.5 + parent: 4812 + type: Transform + - uid: 7203 + components: + - pos: -36.5,-38.5 + parent: 4812 + type: Transform + - uid: 7204 + components: + - pos: -37.5,-38.5 + parent: 4812 + type: Transform + - uid: 7205 + components: + - pos: -41.5,-35.5 + parent: 4812 + type: Transform + - uid: 7206 + components: + - pos: -37.5,-36.5 + parent: 4812 + type: Transform + - uid: 7207 + components: + - pos: -39.5,-36.5 + parent: 4812 + type: Transform + - uid: 7209 + components: + - pos: -38.5,-37.5 + parent: 4812 + type: Transform + - uid: 7210 + components: + - pos: -15.5,-24.5 + parent: 4812 + type: Transform + - uid: 7211 + components: + - pos: -17.5,-24.5 + parent: 4812 + type: Transform + - uid: 7229 + components: + - pos: -40.5,-36.5 + parent: 4812 + type: Transform + - uid: 7300 + components: + - pos: -41.5,-36.5 + parent: 4812 + type: Transform + - uid: 7331 + components: + - pos: -13.5,-20.5 + parent: 4812 + type: Transform + - uid: 7371 + components: + - pos: -7.5,-26.5 + parent: 4812 + type: Transform + - uid: 7385 + components: + - pos: -7.5,-20.5 + parent: 4812 + type: Transform + - uid: 7402 + components: + - pos: -8.5,-24.5 + parent: 4812 + type: Transform + - uid: 7403 + components: + - pos: -10.5,-24.5 + parent: 4812 + type: Transform + - uid: 7435 + components: + - pos: -24.5,-24.5 + parent: 4812 + type: Transform + - uid: 7436 + components: + - pos: -26.5,-24.5 + parent: 4812 + type: Transform + - uid: 7665 + components: + - pos: -22.5,29.5 + parent: 4812 + type: Transform + - uid: 7666 + components: + - pos: -24.5,31.5 + parent: 4812 + type: Transform + - uid: 7667 + components: + - pos: -27.5,33.5 + parent: 4812 + type: Transform + - uid: 7668 + components: + - pos: -28.5,33.5 + parent: 4812 + type: Transform + - uid: 7669 + components: + - pos: -29.5,33.5 + parent: 4812 + type: Transform + - uid: 7708 + components: + - pos: -24.5,20.5 + parent: 4812 + type: Transform + - uid: 7709 + components: + - pos: -24.5,19.5 + parent: 4812 + type: Transform + - uid: 7710 + components: + - pos: -24.5,17.5 + parent: 4812 + type: Transform + - uid: 7711 + components: + - pos: -24.5,16.5 + parent: 4812 + type: Transform + - uid: 7716 + components: + - pos: -27.5,20.5 + parent: 4812 + type: Transform + - uid: 7717 + components: + - pos: -27.5,17.5 + parent: 4812 + type: Transform + - uid: 7725 + components: + - pos: -24.5,10.5 + parent: 4812 + type: Transform + - uid: 7726 + components: + - pos: -27.5,10.5 + parent: 4812 + type: Transform + - uid: 7745 + components: + - pos: -32.5,12.5 + parent: 4812 + type: Transform + - uid: 7746 + components: + - pos: -33.5,13.5 + parent: 4812 + type: Transform + - uid: 7747 + components: + - pos: -32.5,14.5 + parent: 4812 + type: Transform + - uid: 7748 + components: + - pos: -32.5,10.5 + parent: 4812 + type: Transform + - uid: 7764 + components: + - pos: -35.5,13.5 + parent: 4812 + type: Transform + - uid: 8169 + components: + - pos: -21.5,21.5 + parent: 4812 + type: Transform + - uid: 8170 + components: + - pos: -20.5,21.5 + parent: 4812 + type: Transform + - uid: 8171 + components: + - pos: -23.5,21.5 + parent: 4812 + type: Transform + - uid: 8172 + components: + - pos: -23.5,26.5 + parent: 4812 + type: Transform + - uid: 8173 + components: + - pos: -21.5,26.5 + parent: 4812 + type: Transform + - uid: 8627 + components: + - pos: -31.5,0.5 + parent: 4812 + type: Transform + - uid: 8629 + components: + - pos: -29.5,0.5 + parent: 4812 + type: Transform + - uid: 8630 + components: + - pos: -27.5,2.5 + parent: 4812 + type: Transform + - uid: 8631 + components: + - pos: -27.5,3.5 + parent: 4812 + type: Transform + - uid: 8632 + components: + - pos: -27.5,4.5 + parent: 4812 + type: Transform + - uid: 8633 + components: + - pos: -28.5,-3.5 + parent: 4812 + type: Transform + - uid: 8634 + components: + - pos: -28.5,-0.5 + parent: 4812 + type: Transform + - uid: 8636 + components: + - pos: -35.5,1.5 + parent: 4812 + type: Transform + - uid: 8637 + components: + - pos: -35.5,3.5 + parent: 4812 + type: Transform + - uid: 8638 + components: + - pos: -35.5,5.5 + parent: 4812 + type: Transform + - uid: 8676 + components: + - pos: -27.5,-8.5 + parent: 4812 + type: Transform + - uid: 8677 + components: + - pos: -27.5,-7.5 + parent: 4812 + type: Transform + - uid: 8678 + components: + - pos: -27.5,-6.5 + parent: 4812 + type: Transform + - uid: 8679 + components: + - pos: -29.5,-4.5 + parent: 4812 + type: Transform + - uid: 8680 + components: + - pos: -31.5,-4.5 + parent: 4812 + type: Transform + - uid: 8734 + components: + - pos: -44.5,-4.5 + parent: 4812 + type: Transform + - uid: 8735 + components: + - pos: -42.5,-4.5 + parent: 4812 + type: Transform + - uid: 8792 + components: + - pos: -27.5,-41.5 + parent: 4812 + type: Transform + - uid: 9291 + components: + - pos: -48.5,-1.5 + parent: 4812 + type: Transform + - uid: 9292 + components: + - pos: -48.5,-0.5 + parent: 4812 + type: Transform + - uid: 9293 + components: + - pos: -48.5,0.5 + parent: 4812 + type: Transform + - uid: 9294 + components: + - pos: -48.5,1.5 + parent: 4812 + type: Transform + - uid: 9295 + components: + - pos: -48.5,2.5 + parent: 4812 + type: Transform + - uid: 9296 + components: + - pos: -48.5,3.5 + parent: 4812 + type: Transform + - uid: 9297 + components: + - pos: -48.5,4.5 + parent: 4812 + type: Transform + - uid: 9298 + components: + - pos: -48.5,5.5 + parent: 4812 + type: Transform + - uid: 9299 + components: + - pos: -48.5,6.5 + parent: 4812 + type: Transform + - uid: 9300 + components: + - pos: -48.5,7.5 + parent: 4812 + type: Transform + - uid: 9301 + components: + - pos: -48.5,8.5 + parent: 4812 + type: Transform + - uid: 9302 + components: + - pos: -48.5,9.5 + parent: 4812 + type: Transform + - uid: 9303 + components: + - pos: -48.5,10.5 + parent: 4812 + type: Transform + - uid: 9304 + components: + - pos: -48.5,11.5 + parent: 4812 + type: Transform + - uid: 9305 + components: + - pos: -48.5,12.5 + parent: 4812 + type: Transform + - uid: 9306 + components: + - pos: -48.5,13.5 + parent: 4812 + type: Transform + - uid: 9498 + components: + - pos: -47.5,13.5 + parent: 4812 + type: Transform + - uid: 9499 + components: + - pos: -46.5,13.5 + parent: 4812 + type: Transform + - uid: 9500 + components: + - pos: -45.5,13.5 + parent: 4812 + type: Transform + - uid: 9501 + components: + - pos: -44.5,13.5 + parent: 4812 + type: Transform + - uid: 9502 + components: + - pos: -43.5,13.5 + parent: 4812 + type: Transform + - uid: 9503 + components: + - pos: -42.5,13.5 + parent: 4812 + type: Transform + - uid: 9588 + components: + - pos: -43.5,-25.5 + parent: 4812 + type: Transform + - uid: 9593 + components: + - pos: -47.5,-24.5 + parent: 4812 + type: Transform + - uid: 9599 + components: + - pos: -52.5,-26.5 + parent: 4812 + type: Transform + - uid: 9600 + components: + - pos: -53.5,-26.5 + parent: 4812 + type: Transform + - uid: 9601 + components: + - pos: -54.5,-26.5 + parent: 4812 + type: Transform + - uid: 9602 + components: + - pos: -54.5,-25.5 + parent: 4812 + type: Transform + - uid: 9603 + components: + - pos: -56.5,-23.5 + parent: 4812 + type: Transform + - uid: 9608 + components: + - pos: -41.5,-28.5 + parent: 4812 + type: Transform + - uid: 9646 + components: + - pos: -12.5,-58.5 + parent: 4812 + type: Transform + - uid: 9647 + components: + - pos: -12.5,-57.5 + parent: 4812 + type: Transform + - uid: 9648 + components: + - pos: -9.5,-57.5 + parent: 4812 + type: Transform + - uid: 9652 + components: + - pos: -10.5,-56.5 + parent: 4812 + type: Transform + - uid: 9655 + components: + - pos: -9.5,-58.5 + parent: 4812 + type: Transform + - uid: 9838 + components: + - pos: -53.5,-7.5 + parent: 4812 + type: Transform + - uid: 9839 + components: + - pos: -52.5,-7.5 + parent: 4812 + type: Transform + - uid: 9843 + components: + - pos: -54.5,-7.5 + parent: 4812 + type: Transform + - uid: 9869 + components: + - pos: -52.5,-5.5 + parent: 4812 + type: Transform + - uid: 9870 + components: + - pos: -54.5,-5.5 + parent: 4812 + type: Transform + - uid: 9872 + components: + - pos: -53.5,-5.5 + parent: 4812 + type: Transform + - uid: 9874 + components: + - pos: -48.5,-10.5 + parent: 4812 + type: Transform + - uid: 9893 + components: + - pos: -43.5,-13.5 + parent: 4812 + type: Transform + - uid: 9897 + components: + - pos: -43.5,-11.5 + parent: 4812 + type: Transform + - uid: 9898 + components: + - pos: -39.5,-9.5 + parent: 4812 + type: Transform + - uid: 9899 + components: + - pos: -41.5,-9.5 + parent: 4812 + type: Transform + - uid: 10154 + components: + - pos: -53.5,-23.5 + parent: 4812 + type: Transform + - uid: 10158 + components: + - pos: -52.5,-23.5 + parent: 4812 + type: Transform + - uid: 10677 + components: + - pos: -47.5,-8.5 + parent: 4812 + type: Transform + - uid: 10678 + components: + - pos: -47.5,-7.5 + parent: 4812 + type: Transform + - uid: 10679 + components: + - pos: -47.5,-6.5 + parent: 4812 + type: Transform + - uid: 11047 + components: + - pos: 6.5,-32.5 + parent: 4812 + type: Transform + - uid: 11048 + components: + - pos: 6.5,-34.5 + parent: 4812 + type: Transform + - uid: 11071 + components: + - pos: 6.5,-36.5 + parent: 4812 + type: Transform + - uid: 11072 + components: + - pos: 6.5,-38.5 + parent: 4812 + type: Transform + - uid: 11074 + components: + - pos: 11.5,-38.5 + parent: 4812 + type: Transform + - uid: 11075 + components: + - pos: 11.5,-40.5 + parent: 4812 + type: Transform + - uid: 11076 + components: + - pos: 11.5,-42.5 + parent: 4812 + type: Transform + - uid: 11077 + components: + - pos: 6.5,-42.5 + parent: 4812 + type: Transform + - uid: 11078 + components: + - pos: 6.5,-40.5 + parent: 4812 + type: Transform + - uid: 11104 + components: + - pos: 11.5,-34.5 + parent: 4812 + type: Transform + - uid: 11126 + components: + - pos: 18.5,-39.5 + parent: 4812 + type: Transform + - uid: 11127 + components: + - pos: 17.5,-39.5 + parent: 4812 + type: Transform + - uid: 11129 + components: + - pos: 21.5,-39.5 + parent: 4812 + type: Transform + - uid: 11130 + components: + - pos: 20.5,-39.5 + parent: 4812 + type: Transform + - uid: 11343 + components: + - pos: 38.5,-32.5 + parent: 4812 + type: Transform + - uid: 11346 + components: + - pos: 38.5,-31.5 + parent: 4812 + type: Transform + - uid: 11347 + components: + - pos: 37.5,-31.5 + parent: 4812 + type: Transform + - uid: 11387 + components: + - pos: 31.5,-37.5 + parent: 4812 + type: Transform + - uid: 11388 + components: + - pos: 32.5,-37.5 + parent: 4812 + type: Transform +- proto: ResearchAndDevelopmentServer + entities: + - uid: 6252 + components: + - pos: 14.5,-17.5 + parent: 4812 + type: Transform +- proto: ResearchDisk + entities: + - uid: 12457 + components: + - pos: -35.5391,27.461937 + parent: 4812 + type: Transform +- proto: Retractor + entities: + - uid: 6242 + components: + - pos: 13.5722065,-27.387243 + parent: 4812 + type: Transform +- proto: RevolverCapGun + entities: + - uid: 11863 + components: + - pos: -14.491153,4.5839243 + parent: 4812 + type: Transform +- proto: RockGuitarInstrument + entities: + - uid: 12366 + components: + - pos: -10.362962,-1.5182831 + parent: 4812 + type: Transform +- proto: RollerBedSpawnFolded + entities: + - uid: 6622 + components: + - pos: -20.448778,-14.242132 + parent: 4812 + type: Transform +- proto: SalvageMagnet + entities: + - uid: 2923 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,12.5 + parent: 4812 + type: Transform +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 10451 + components: + - pos: -52.5,-19.5 + parent: 4812 + type: Transform + - uid: 11693 + components: + - pos: 26.5,-39.5 + parent: 4812 + type: Transform +- proto: SawElectric + entities: + - uid: 6243 + components: + - pos: 16.478456,-28.465368 + parent: 4812 + type: Transform +- proto: Scalpel + entities: + - uid: 6245 + components: + - pos: 16.525331,-28.059118 + parent: 4812 + type: Transform +- proto: SecurityTechFab + entities: + - uid: 8371 + components: + - pos: -34.5,21.5 + parent: 4812 + type: Transform + - materialWhiteList: + - Glass + - Plastic + - Steel + type: MaterialStorage +- proto: SeedExtractor + entities: + - uid: 1086 + components: + - pos: -15.5,-7.5 + parent: 4812 + type: Transform + - uid: 8388 + components: + - pos: -30.5,32.5 + parent: 4812 + type: Transform + - uid: 9616 + components: + - pos: -42.5,-26.5 + parent: 4812 + type: Transform + - uid: 11284 + components: + - pos: 21.5,-36.5 + parent: 4812 + type: Transform +- proto: ShardGlass + entities: + - uid: 9076 + components: + - pos: -30.439472,-27.54581 + parent: 4812 + type: Transform +- proto: ShardGlassReinforced + entities: + - uid: 11105 + components: + - pos: 11.590929,-33.611034 + parent: 4812 + type: Transform +- proto: SheetGlass + entities: + - uid: 1690 + components: + - pos: 5.600872,17.54953 + parent: 4812 + type: Transform + - uid: 3848 + components: + - pos: 13.673708,44.533413 + parent: 4812 + type: Transform + - uid: 3949 + components: + - pos: 10.555219,43.506973 + parent: 4812 + type: Transform + - uid: 6199 + components: + - pos: 3.6706638,-18.424206 + parent: 4812 + type: Transform + - uid: 6209 + components: + - pos: 3.6706638,-18.455456 + parent: 4812 + type: Transform + - uid: 8582 + components: + - pos: -17.233784,7.5055285 + parent: 4812 + type: Transform + - uid: 9726 + components: + - pos: -34.372757,-5.49447 + parent: 4812 + type: Transform + - uid: 9727 + components: + - pos: -34.372757,-5.49447 + parent: 4812 + type: Transform + - uid: 11327 + components: + - pos: 24.525463,-36.5151 + parent: 4812 + type: Transform + - uid: 11946 + components: + - pos: -14.576956,17.019444 + parent: 4812 + type: Transform + - uid: 11947 + components: + - pos: -14.436331,17.019444 + parent: 4812 + type: Transform +- proto: SheetPlasma + entities: + - uid: 3849 + components: + - pos: 13.533083,44.486538 + parent: 4812 + type: Transform + - uid: 6361 + components: + - pos: 35.463417,-24.535076 + parent: 4812 + type: Transform + - uid: 11812 + components: + - flags: InContainer + type: MetaData + - parent: 11811 + type: Transform + - canCollide: False + type: Physics +- proto: SheetPlasteel + entities: + - uid: 6236 + components: + - pos: 16.561968,-23.469662 + parent: 4812 + type: Transform + - uid: 10770 + components: + - pos: -34.51854,-5.508734 + parent: 4812 + type: Transform + - uid: 10771 + components: + - pos: -34.51854,-5.508734 + parent: 4812 + type: Transform + - uid: 11948 + components: + - pos: -14.576956,16.535069 + parent: 4812 + type: Transform + - uid: 11949 + components: + - pos: -14.420706,16.535069 + parent: 4812 + type: Transform +- proto: SheetPlastic + entities: + - uid: 6206 + components: + - pos: 3.551526,-18.367922 + parent: 4812 + type: Transform + - uid: 6207 + components: + - pos: 3.562368,-18.383547 + parent: 4812 + type: Transform +- proto: SheetSteel + entities: + - uid: 1691 + components: + - pos: 5.397747,17.54953 + parent: 4812 + type: Transform + - uid: 3847 + components: + - pos: 13.454958,44.549038 + parent: 4812 + type: Transform + - uid: 3950 + components: + - pos: 10.352094,43.506973 + parent: 4812 + type: Transform + - uid: 6198 + components: + - pos: 3.4362888,-18.40858 + parent: 4812 + type: Transform + - uid: 6208 + components: + - pos: 3.4206638,-18.40858 + parent: 4812 + type: Transform + - uid: 8581 + components: + - pos: -17.5,7.5 + parent: 4812 + type: Transform + - uid: 9673 + components: + - pos: -30.650465,5.5347195 + parent: 4812 + type: Transform + - uid: 9674 + components: + - pos: -30.650465,5.5347195 + parent: 4812 + type: Transform + - uid: 9725 + components: + - pos: -34.591507,-5.478845 + parent: 4812 + type: Transform + - uid: 9728 + components: + - pos: -34.607132,-5.478845 + parent: 4812 + type: Transform + - uid: 11328 + components: + - pos: 24.400463,-36.530724 + parent: 4812 + type: Transform + - uid: 11944 + components: + - pos: -14.514456,17.535069 + parent: 4812 + type: Transform + - uid: 11945 + components: + - pos: -14.436331,17.503819 + parent: 4812 + type: Transform +- proto: Shovel + entities: + - uid: 3275 + components: + - pos: 22.483086,13.479855 + parent: 4812 + type: Transform +- proto: ShuttersNormalOpen + entities: + - uid: 355 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,9.5 + parent: 4812 + type: Transform + - links: + - 712 + type: DeviceLinkSink + - uid: 356 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,8.5 + parent: 4812 + type: Transform + - links: + - 712 + type: DeviceLinkSink + - uid: 357 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 4812 + type: Transform + - links: + - 712 + type: DeviceLinkSink + - uid: 358 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,6.5 + parent: 4812 + type: Transform + - links: + - 712 + type: DeviceLinkSink + - uid: 359 + components: + - pos: 2.5,4.5 + parent: 4812 + type: Transform + - links: + - 712 + type: DeviceLinkSink + - uid: 360 + components: + - pos: 3.5,4.5 + parent: 4812 + type: Transform + - links: + - 712 + type: DeviceLinkSink + - uid: 785 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 4812 + type: Transform + - links: + - 1646 + type: DeviceLinkSink + - uid: 786 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 4812 + type: Transform + - links: + - 1646 + type: DeviceLinkSink + - uid: 787 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 4812 + type: Transform + - links: + - 1646 + type: DeviceLinkSink + - uid: 1929 + components: + - pos: -13.5,26.5 + parent: 4812 + type: Transform + - links: + - 2241 + type: DeviceLinkSink + - uid: 1930 + components: + - pos: 5.5,27.5 + parent: 4812 + type: Transform + - links: + - 1965 + type: DeviceLinkSink + - uid: 1931 + components: + - pos: -10.5,26.5 + parent: 4812 + type: Transform + - links: + - 2241 + type: DeviceLinkSink + - uid: 2234 + components: + - pos: -12.5,26.5 + parent: 4812 + type: Transform + - links: + - 2241 + type: DeviceLinkSink + - uid: 2235 + components: + - pos: 8.5,27.5 + parent: 4812 + type: Transform + - links: + - 1965 + type: DeviceLinkSink + - uid: 2236 + components: + - pos: 7.5,27.5 + parent: 4812 + type: Transform + - links: + - 1965 + type: DeviceLinkSink + - uid: 2835 + components: + - pos: 16.5,28.5 + parent: 4812 + type: Transform + - links: + - 2844 + type: DeviceLinkSink + - uid: 2836 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,30.5 + parent: 4812 + type: Transform + - links: + - 2844 + type: DeviceLinkSink + - uid: 2837 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,31.5 + parent: 4812 + type: Transform + - links: + - 2844 + type: DeviceLinkSink + - uid: 2870 + components: + - pos: 16.5,36.5 + parent: 4812 + type: Transform + - links: + - 2844 + type: DeviceLinkSink + - uid: 3945 + components: + - pos: 10.5,47.5 + parent: 4812 + type: Transform + - uid: 3948 + components: + - pos: 10.5,54.5 + parent: 4812 + type: Transform + - uid: 5507 + components: + - pos: 26.5,-21.5 + parent: 4812 + type: Transform + - links: + - 5576 + type: DeviceLinkSink + - uid: 5508 + components: + - pos: 27.5,-21.5 + parent: 4812 + type: Transform + - links: + - 5576 + type: DeviceLinkSink + - uid: 5509 + components: + - pos: 25.5,-21.5 + parent: 4812 + type: Transform + - links: + - 5576 + type: DeviceLinkSink + - uid: 6570 + components: + - pos: -7.5,-16.5 + parent: 4812 + type: Transform + - links: + - 6587 + type: DeviceLinkSink + - uid: 6574 + components: + - pos: -12.5,-13.5 + parent: 4812 + type: Transform + - links: + - 6587 + type: DeviceLinkSink + - uid: 6575 + components: + - pos: -9.5,-13.5 + parent: 4812 + type: Transform + - links: + - 6587 + type: DeviceLinkSink + - uid: 6576 + components: + - pos: -10.5,-13.5 + parent: 4812 + type: Transform + - links: + - 6587 + type: DeviceLinkSink + - uid: 6577 + components: + - pos: -8.5,-13.5 + parent: 4812 + type: Transform + - links: + - 6587 + type: DeviceLinkSink + - uid: 6578 + components: + - pos: -7.5,-14.5 + parent: 4812 + type: Transform + - links: + - 6587 + type: DeviceLinkSink + - uid: 6586 + components: + - pos: -7.5,-18.5 + parent: 4812 + type: Transform + - links: + - 6587 + type: DeviceLinkSink + - uid: 8153 + components: + - pos: -21.5,21.5 + parent: 4812 + type: Transform + - links: + - 8165 + type: DeviceLinkSink + - uid: 8160 + components: + - pos: -20.5,21.5 + parent: 4812 + type: Transform + - links: + - 8165 + type: DeviceLinkSink + - uid: 8161 + components: + - pos: -23.5,21.5 + parent: 4812 + type: Transform + - links: + - 8165 + type: DeviceLinkSink + - uid: 10673 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-8.5 + parent: 4812 + type: Transform + - links: + - 10676 + type: DeviceLinkSink + - uid: 10674 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-7.5 + parent: 4812 + type: Transform + - links: + - 10676 + type: DeviceLinkSink + - uid: 10675 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-6.5 + parent: 4812 + type: Transform + - links: + - 10676 + type: DeviceLinkSink +- proto: ShuttleConsoleCircuitboard + entities: + - uid: 2730 + components: + - pos: 0.3894601,25.613579 + parent: 4812 + type: Transform + - uid: 10959 + components: + - pos: -34.25,25.263674 + parent: 4812 + type: Transform +- proto: SignAi + entities: + - uid: 3961 + components: + - pos: 11.5,47.5 + parent: 4812 + type: Transform +- proto: SignalButton + entities: + - uid: 712 + components: + - pos: 4.5,5.5 + parent: 4812 + type: Transform + - linkedPorts: + 360: + - Pressed: Toggle + 359: + - Pressed: Toggle + 358: + - Pressed: Toggle + 357: + - Pressed: Toggle + 356: + - Pressed: Toggle + 355: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 1646 + components: + - pos: 3.5,-4.5 + parent: 4812 + type: Transform + - linkedPorts: + 785: + - Pressed: Toggle + 787: + - Pressed: Toggle + 786: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 1965 + components: + - pos: 9.5,29.5 + parent: 4812 + type: Transform + - linkedPorts: + 2235: + - Pressed: Toggle + 2236: + - Pressed: Toggle + 1930: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 2241 + components: + - pos: -14.5,27.5 + parent: 4812 + type: Transform + - linkedPorts: + 1929: + - Pressed: Toggle + 2234: + - Pressed: Toggle + 1931: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 2844 + components: + - pos: 17.5,33.5 + parent: 4812 + type: Transform + - linkedPorts: + 2835: + - Pressed: Toggle + 2870: + - Pressed: Toggle + 2837: + - Pressed: Toggle + 2836: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 2938 + components: + - pos: 21.5,26.5 + parent: 4812 + type: Transform + - linkedPorts: + 2864: + - Pressed: Toggle + 2866: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 5576 + components: + - pos: 23.5,-19.5 + parent: 4812 + type: Transform + - linkedPorts: + 5509: + - Pressed: Toggle + 5507: + - Pressed: Toggle + 5508: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 6218 + components: + - pos: 7.5,-27.5 + parent: 4812 + type: Transform + - linkedPorts: + 5794: + - Pressed: Toggle + 5795: + - Pressed: Toggle + 5796: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 6587 + components: + - pos: -13.5,-14.5 + parent: 4812 + type: Transform + - linkedPorts: + 6574: + - Pressed: Toggle + 6576: + - Pressed: Toggle + 6575: + - Pressed: Toggle + 6577: + - Pressed: Toggle + 6578: + - Pressed: Toggle + 6570: + - Pressed: Toggle + 6586: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 6690 + components: + - pos: 26.5,-28.5 + parent: 4812 + type: Transform + - linkedPorts: + 5575: + - Pressed: Toggle + 5574: + - Pressed: Toggle + 5573: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 8165 + components: + - pos: -20.5,26.5 + parent: 4812 + type: Transform + - linkedPorts: + 8160: + - Pressed: Toggle + 8153: + - Pressed: Toggle + 8161: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 9497 + components: + - pos: -45.5,18.5 + parent: 4812 + type: Transform + - uid: 9504 + components: + - pos: -41.5,13.5 + parent: 4812 + type: Transform + - linkedPorts: + 9496: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 10676 + components: + - pos: -51.5,-7.5 + parent: 4812 + type: Transform + - linkedPorts: + 10675: + - Pressed: Toggle + 10674: + - Pressed: Toggle + 10673: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SignAnomaly2 + entities: + - uid: 6342 + components: + - pos: 30.5,-27.5 + parent: 4812 + type: Transform +- proto: SignArmory + entities: + - uid: 7803 + components: + - pos: -36.5,18.5 + parent: 4812 + type: Transform +- proto: SignAtmos + entities: + - uid: 8640 + components: + - pos: -34.5,0.5 + parent: 4812 + type: Transform +- proto: SignAtmosMinsky + entities: + - uid: 8721 + components: + - pos: -35.5,4.5 + parent: 4812 + type: Transform +- proto: SignBio + entities: + - uid: 11260 + components: + - pos: 10.5,-39.5 + parent: 4812 + type: Transform + - uid: 11261 + components: + - pos: 7.5,-39.5 + parent: 4812 + type: Transform +- proto: SignBiohazardMed + entities: + - uid: 8868 + components: + - pos: -35.5,-34.5 + parent: 4812 + type: Transform +- proto: SignBridge + entities: + - uid: 2930 + components: + - pos: 1.5,21.5 + parent: 4812 + type: Transform +- proto: SignCargo + entities: + - uid: 2883 + components: + - pos: 13.5,16.5 + parent: 4812 + type: Transform +- proto: SignChapel + entities: + - uid: 6695 + components: + - pos: -12.5,-36.5 + parent: 4812 + type: Transform +- proto: SignChem + entities: + - uid: 6618 + components: + - pos: -10.5,-19.5 + parent: 4812 + type: Transform +- proto: SignChemistry1 + entities: + - uid: 6642 + components: + - pos: -7.5,-13.5 + parent: 4812 + type: Transform +- proto: SignCloning + entities: + - uid: 8382 + components: + - pos: -13.5,-19.5 + parent: 4812 + type: Transform +- proto: SignCryogenicsMed + entities: + - uid: 4928 + components: + - pos: -11.5,-24.5 + parent: 4812 + type: Transform +- proto: SignDirectionalBridge + entities: + - uid: 2928 + components: + - rot: 3.141592653589793 rad + pos: 1.4962993,18.70066 + parent: 4812 + type: Transform + - uid: 3346 + components: + - rot: 3.141592653589793 rad + pos: 13.507049,12.716366 + parent: 4812 + type: Transform + - uid: 8310 + components: + - rot: 3.141592653589793 rad + pos: -24.498999,15.711071 + parent: 4812 + type: Transform +- proto: SignDirectionalEng + entities: + - uid: 1467 + components: + - rot: -1.5707963267948966 rad + pos: -5.4997582,-10.299582 + parent: 4812 + type: Transform + - uid: 2926 + components: + - rot: -1.5707963267948966 rad + pos: -6.493349,18.685036 + parent: 4812 + type: Transform + - uid: 5279 + components: + - rot: 3.141592653589793 rad + pos: -7.504691,-33.300663 + parent: 4812 + type: Transform + - uid: 8311 + components: + - pos: -24.498999,15.273571 + parent: 4812 + type: Transform + - uid: 8694 + components: + - rot: -1.5707963267948966 rad + pos: -27.507013,-4.2984185 + parent: 4812 + type: Transform +- proto: SignDirectionalEvac + entities: + - uid: 1468 + components: + - rot: 1.5707963267948966 rad + pos: 0.49738908,-10.299582 + parent: 4812 + type: Transform + - uid: 5281 + components: + - rot: 3.141592653589793 rad + pos: 2.5034294,-33.300663 + parent: 4812 + type: Transform +- proto: SignDirectionalHop + entities: + - uid: 12369 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-10.5 + parent: 4812 + type: Transform + - uid: 12370 + components: + - rot: 3.141592653589793 rad + pos: 10.5,18.5 + parent: 4812 + type: Transform +- proto: SignDirectionalJanitor + entities: + - uid: 12368 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-10.5 + parent: 4812 + type: Transform +- proto: SignDirectionalMed + entities: + - uid: 1466 + components: + - pos: -5.504419,-10.705832 + parent: 4812 + type: Transform + - uid: 2927 + components: + - pos: -6.493349,18.29441 + parent: 4812 + type: Transform + - uid: 5280 + components: + - rot: 3.141592653589793 rad + pos: -7.4988046,-33.706913 + parent: 4812 + type: Transform + - uid: 8693 + components: + - pos: -27.507013,-4.7046685 + parent: 4812 + type: Transform +- proto: SignDirectionalSci + entities: + - uid: 1469 + components: + - pos: 0.49738908,-10.690207 + parent: 4812 + type: Transform + - uid: 2929 + components: + - pos: 1.4962993,18.278786 + parent: 4812 + type: Transform + - uid: 3347 + components: + - pos: 13.507049,12.2966175 + parent: 4812 + type: Transform + - uid: 5282 + components: + - rot: 3.141592653589793 rad + pos: 2.5034294,-33.706913 + parent: 4812 + type: Transform +- proto: SignDirectionalSec + entities: + - uid: 1464 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-10.5 + parent: 4812 + type: Transform + - uid: 2924 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,18.5 + parent: 4812 + type: Transform + - uid: 5277 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-33.5 + parent: 4812 + type: Transform + - uid: 8309 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,15.5 + parent: 4812 + type: Transform + - uid: 8692 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-4.5 + parent: 4812 + type: Transform +- proto: SignDirectionalSupply + entities: + - uid: 1465 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 4812 + type: Transform + - uid: 2925 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,18.5 + parent: 4812 + type: Transform + - uid: 3345 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,12.5 + parent: 4812 + type: Transform + - uid: 5278 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-33.5 + parent: 4812 + type: Transform +- proto: SignDisposalSpace + entities: + - uid: 6779 + components: + - pos: -37.5,-36.5 + parent: 4812 + type: Transform + - uid: 11251 + components: + - pos: 3.5,-31.5 + parent: 4812 + type: Transform +- proto: SignDoors + entities: + - uid: 1462 + components: + - pos: 0.5,-9.5 + parent: 4812 + type: Transform + - uid: 2813 + components: + - pos: 18.5,28.5 + parent: 4812 + type: Transform + - uid: 2932 + components: + - pos: 4.5,21.5 + parent: 4812 + type: Transform + - uid: 4579 + components: + - pos: 32.5,-2.5 + parent: 4812 + type: Transform + - uid: 5073 + components: + - pos: -9.5,-52.5 + parent: 4812 + type: Transform + - uid: 5074 + components: + - pos: -12.5,-41.5 + parent: 4812 + type: Transform +- proto: SignDrones + entities: + - uid: 11937 + components: + - pos: -12.5,18.5 + parent: 4812 + type: Transform +- proto: SignElectricalMed + entities: + - uid: 3978 + components: + - pos: 15.5,48.5 + parent: 4812 + type: Transform + - uid: 3979 + components: + - pos: 10.5,57.5 + parent: 4812 + type: Transform + - uid: 6019 + components: + - pos: 16.5,-32.5 + parent: 4812 + type: Transform + - uid: 7171 + components: + - pos: -9.5,-31.5 + parent: 4812 + type: Transform + - uid: 8754 + components: + - pos: -45.5,-4.5 + parent: 4812 + type: Transform + - uid: 10601 + components: + - pos: -46.5,-19.5 + parent: 4812 + type: Transform + - uid: 10742 + components: + - pos: -38.5,-9.5 + parent: 4812 + type: Transform +- proto: SignEngine + entities: + - uid: 10775 + components: + - pos: -43.5,-10.5 + parent: 4812 + type: Transform +- proto: SignEngineering + entities: + - uid: 8687 + components: + - pos: -34.5,-4.5 + parent: 4812 + type: Transform +- proto: SignExamroom + entities: + - uid: 6659 + components: + - pos: -13.5,-24.5 + parent: 4812 + type: Transform +- proto: SignFire + entities: + - uid: 9043 + components: + - pos: -32.5,-37.5 + parent: 4812 + type: Transform + - uid: 9689 + components: + - pos: -40.5,-0.5 + parent: 4812 + type: Transform + - uid: 9691 + components: + - pos: -38.5,-4.5 + parent: 4812 + type: Transform +- proto: SignFlammableMed + entities: + - uid: 10748 + components: + - pos: -32.5,6.5 + parent: 4812 + type: Transform +- proto: SignGravity + entities: + - uid: 10743 + components: + - pos: -51.5,-10.5 + parent: 4812 + type: Transform +- proto: SignHydro1 + entities: + - uid: 1076 + components: + - pos: -7.5,-10.5 + parent: 4812 + type: Transform +- proto: SignHydro2 + entities: + - uid: 1075 + components: + - pos: -6.5,-4.5 + parent: 4812 + type: Transform +- proto: SignHydro3 + entities: + - uid: 6685 + components: + - pos: -18.5,-10.5 + parent: 4812 + type: Transform +- proto: SignKiddiePlaque + entities: + - uid: 7730 + components: + - pos: -14.5,-29.5 + parent: 4812 + type: Transform + - uid: 12227 + components: + - pos: -6.5,25.5 + parent: 4812 + type: Transform +- proto: SignLibrary + entities: + - uid: 6680 + components: + - pos: -22.5,-13.5 + parent: 4812 + type: Transform +- proto: SignMedical + entities: + - uid: 7299 + components: + - pos: -7.5,-23.5 + parent: 4812 + type: Transform +- proto: SignMinerDock + entities: + - uid: 3344 + components: + - pos: 21.5,16.5 + parent: 4812 + type: Transform +- proto: SignMorgue + entities: + - uid: 5046 + components: + - pos: -17.5,-13.5 + parent: 4812 + type: Transform + - uid: 6556 + components: + - pos: -20.5,-19.5 + parent: 4812 + type: Transform +- proto: SignNosmoking + entities: + - uid: 6195 + components: + - pos: 8.5,-19.5 + parent: 4812 + type: Transform + - uid: 7451 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-24.5 + parent: 4812 + type: Transform + - uid: 7452 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-29.5 + parent: 4812 + type: Transform + - uid: 10861 + components: + - pos: -19.5,3.5 + parent: 4812 + type: Transform +- proto: SignPlaque + entities: + - uid: 7570 + components: + - pos: 24.5,-21.5 + parent: 4812 + type: Transform + - uid: 8381 + components: + - pos: -14.5,26.5 + parent: 4812 + type: Transform +- proto: SignPrison + entities: + - uid: 8356 + components: + - pos: -28.5,21.5 + parent: 4812 + type: Transform +- proto: SignRadiationMed + entities: + - uid: 9692 + components: + - pos: -40.5,-4.5 + parent: 4812 + type: Transform + - uid: 10744 + components: + - pos: -51.5,-14.5 + parent: 4812 + type: Transform +- proto: SignRND + entities: + - uid: 6644 + components: + - pos: 7.5,-19.5 + parent: 4812 + type: Transform +- proto: SignRobo + entities: + - uid: 6178 + components: + - pos: 10.5,-22.5 + parent: 4812 + type: Transform + - uid: 6217 + components: + - pos: 2.5,-24.5 + parent: 4812 + type: Transform +- proto: SignScience + entities: + - uid: 6176 + components: + - pos: 2.5,-19.5 + parent: 4812 + type: Transform +- proto: SignScience1 + entities: + - uid: 6175 + components: + - pos: 8.5,-13.5 + parent: 4812 + type: Transform +- proto: SignScience2 + entities: + - uid: 6177 + components: + - pos: 20.5,-22.5 + parent: 4812 + type: Transform + - uid: 6643 + components: + - pos: 2.5,-13.5 + parent: 4812 + type: Transform +- proto: SignSecureMed + entities: + - uid: 2937 + components: + - pos: 4.5,27.5 + parent: 4812 + type: Transform + - uid: 3953 + components: + - pos: 6.5,49.5 + parent: 4812 + type: Transform + - uid: 3954 + components: + - pos: 14.5,49.5 + parent: 4812 + type: Transform + - uid: 3955 + components: + - pos: 14.5,55.5 + parent: 4812 + type: Transform + - uid: 3956 + components: + - pos: 6.5,55.5 + parent: 4812 + type: Transform + - uid: 3957 + components: + - pos: 8.5,46.5 + parent: 4812 + type: Transform + - uid: 3958 + components: + - pos: 12.5,46.5 + parent: 4812 + type: Transform + - uid: 3960 + components: + - pos: 2.5,44.5 + parent: 4812 + type: Transform + - uid: 9693 + components: + - pos: -38.5,-0.5 + parent: 4812 + type: Transform + - uid: 10745 + components: + - pos: -42.5,-9.5 + parent: 4812 + type: Transform +- proto: SignSecureSmall + entities: + - uid: 2931 + components: + - pos: -6.5,21.5 + parent: 4812 + type: Transform +- proto: SignSecureSmallRed + entities: + - uid: 10746 + components: + - pos: -37.5,6.5 + parent: 4812 + type: Transform +- proto: SignSecurity + entities: + - uid: 7231 + components: + - pos: -24.5,12.5 + parent: 4812 + type: Transform + - uid: 7442 + components: + - pos: -1.5,-30.5 + parent: 4812 + type: Transform +- proto: SignSmoking + entities: + - uid: 8607 + components: + - pos: -15.5,11.5 + parent: 4812 + type: Transform + - uid: 9044 + components: + - pos: -33.5,-38.5 + parent: 4812 + type: Transform + - uid: 10751 + components: + - pos: -40.5,11.5 + parent: 4812 + type: Transform +- proto: SignSpace + entities: + - uid: 2939 + components: + - pos: 22.5,26.5 + parent: 4812 + type: Transform + - uid: 3959 + components: + - pos: 4.5,46.5 + parent: 4812 + type: Transform + - uid: 4580 + components: + - pos: 32.5,1.5 + parent: 4812 + type: Transform + - uid: 4581 + components: + - pos: 32.5,-6.5 + parent: 4812 + type: Transform + - uid: 4602 + components: + - pos: 19.5,11.5 + parent: 4812 + type: Transform + - uid: 5075 + components: + - pos: -9.5,-41.5 + parent: 4812 + type: Transform + - uid: 5076 + components: + - pos: -12.5,-52.5 + parent: 4812 + type: Transform + - uid: 5514 + components: + - pos: 21.5,-27.5 + parent: 4812 + type: Transform + - uid: 11694 + components: + - pos: 26.5,-37.5 + parent: 4812 + type: Transform +- proto: SignSurgery + entities: + - uid: 5010 + components: + - pos: -18.5,-24.5 + parent: 4812 + type: Transform +- proto: SignTelecomms + entities: + - uid: 7202 + components: + - rot: 3.141592653589793 rad + pos: -46.5,-10.5 + parent: 4812 + type: Transform +- proto: SignToolStorage + entities: + - uid: 8609 + components: + - pos: -21.5,12.5 + parent: 4812 + type: Transform +- proto: SignToxins2 + entities: + - uid: 6645 + components: + - pos: 26.5,-27.5 + parent: 4812 + type: Transform +- proto: SignVirology + entities: + - uid: 8870 + components: + - pos: -32.5,-32.5 + parent: 4812 + type: Transform +- proto: SignXenolab + entities: + - uid: 11143 + components: + - pos: 7.5,-31.5 + parent: 4812 + type: Transform +- proto: Sink + entities: + - uid: 1485 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-8.5 + parent: 4812 + type: Transform + - uid: 1660 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 4812 + type: Transform + - uid: 2486 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,28.5 + parent: 4812 + type: Transform + - uid: 2487 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,28.5 + parent: 4812 + type: Transform + - uid: 4454 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,8.5 + parent: 4812 + type: Transform + - uid: 7026 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-33.5 + parent: 4812 + type: Transform + - uid: 8243 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,27.5 + parent: 4812 + type: Transform + - uid: 9817 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-1.5 + parent: 4812 + type: Transform +- proto: SinkEmpty + entities: + - uid: 3580 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,35.5 + parent: 4812 + type: Transform +- proto: SinkWide + entities: + - uid: 1078 + components: + - pos: -21.5,-3.5 + parent: 4812 + type: Transform + - uid: 1537 + components: + - pos: 5.5,-5.5 + parent: 4812 + type: Transform + - uid: 1653 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 4812 + type: Transform + - uid: 1679 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 4812 + type: Transform + - uid: 8389 + components: + - pos: -31.5,32.5 + parent: 4812 + type: Transform +- proto: SMESBasic + entities: + - uid: 3699 + components: + - pos: 10.5,56.5 + parent: 4812 + type: Transform + - uid: 3700 + components: + - pos: 14.5,47.5 + parent: 4812 + type: Transform + - uid: 8722 + components: + - pos: -44.5,-2.5 + parent: 4812 + type: Transform + - uid: 8723 + components: + - pos: -45.5,-2.5 + parent: 4812 + type: Transform + - uid: 10166 + components: + - name: South West Solar SMES + type: MetaData + - pos: -53.5,-25.5 + parent: 4812 + type: Transform + - uid: 10637 + components: + - pos: -47.5,-11.5 + parent: 4812 + type: Transform + - uid: 11392 + components: + - name: South East Solar SMES + type: MetaData + - pos: 33.5,-39.5 + parent: 4812 + type: Transform +- proto: SMESMachineCircuitboard + entities: + - uid: 2726 + components: + - pos: 0.5,24.5 + parent: 4812 + type: Transform + - uid: 2727 + components: + - pos: 0.3738351,24.660454 + parent: 4812 + type: Transform + - uid: 3378 + components: + - pos: 25.556402,3.5160265 + parent: 4812 + type: Transform + - uid: 3402 + components: + - pos: 25.447027,3.6097765 + parent: 4812 + type: Transform +- proto: SoapDeluxe + entities: + - uid: 2494 + components: + - pos: 10.47866,30.543114 + parent: 4812 + type: Transform +- proto: SoapNT + entities: + - uid: 2495 + components: + - pos: -15.503267,29.527489 + parent: 4812 + type: Transform +- proto: soda_dispenser + entities: + - uid: 364 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,8.5 + parent: 4812 + type: Transform + - uid: 10492 + components: + - pos: -37.5,-22.5 + parent: 4812 + type: Transform +- proto: SolarPanel + entities: + - uid: 10323 + components: + - pos: -69.5,-21.5 + parent: 4812 + type: Transform + - uid: 10324 + components: + - pos: -69.5,-20.5 + parent: 4812 + type: Transform + - uid: 10325 + components: + - pos: -69.5,-19.5 + parent: 4812 + type: Transform + - uid: 10326 + components: + - pos: -69.5,-18.5 + parent: 4812 + type: Transform + - uid: 10327 + components: + - pos: -67.5,-21.5 + parent: 4812 + type: Transform + - uid: 10328 + components: + - pos: -67.5,-20.5 + parent: 4812 + type: Transform + - uid: 10329 + components: + - pos: -67.5,-19.5 + parent: 4812 + type: Transform + - uid: 10330 + components: + - pos: -67.5,-18.5 + parent: 4812 + type: Transform + - uid: 10331 + components: + - pos: -69.5,-26.5 + parent: 4812 + type: Transform + - uid: 10332 + components: + - pos: -69.5,-25.5 + parent: 4812 + type: Transform + - uid: 10333 + components: + - pos: -69.5,-24.5 + parent: 4812 + type: Transform + - uid: 10334 + components: + - pos: -69.5,-23.5 + parent: 4812 + type: Transform + - uid: 10335 + components: + - pos: -67.5,-26.5 + parent: 4812 + type: Transform + - uid: 10336 + components: + - pos: -67.5,-25.5 + parent: 4812 + type: Transform + - uid: 10337 + components: + - pos: -67.5,-24.5 + parent: 4812 + type: Transform + - uid: 10338 + components: + - pos: -67.5,-23.5 + parent: 4812 + type: Transform + - uid: 10339 + components: + - pos: -65.5,-26.5 + parent: 4812 + type: Transform + - uid: 10340 + components: + - pos: -65.5,-25.5 + parent: 4812 + type: Transform + - uid: 10341 + components: + - pos: -65.5,-24.5 + parent: 4812 + type: Transform + - uid: 10342 + components: + - pos: -65.5,-23.5 + parent: 4812 + type: Transform + - uid: 10343 + components: + - pos: -63.5,-26.5 + parent: 4812 + type: Transform + - uid: 10344 + components: + - pos: -63.5,-25.5 + parent: 4812 + type: Transform + - uid: 10345 + components: + - pos: -63.5,-24.5 + parent: 4812 + type: Transform + - uid: 10346 + components: + - pos: -63.5,-23.5 + parent: 4812 + type: Transform + - uid: 10347 + components: + - pos: -61.5,-26.5 + parent: 4812 + type: Transform + - uid: 10348 + components: + - pos: -61.5,-25.5 + parent: 4812 + type: Transform + - uid: 10349 + components: + - pos: -61.5,-24.5 + parent: 4812 + type: Transform + - uid: 10350 + components: + - pos: -61.5,-23.5 + parent: 4812 + type: Transform + - uid: 10351 + components: + - pos: -59.5,-26.5 + parent: 4812 + type: Transform + - uid: 10352 + components: + - pos: -59.5,-25.5 + parent: 4812 + type: Transform + - uid: 10353 + components: + - pos: -59.5,-24.5 + parent: 4812 + type: Transform + - uid: 10354 + components: + - pos: -59.5,-23.5 + parent: 4812 + type: Transform + - uid: 10355 + components: + - pos: -59.5,-21.5 + parent: 4812 + type: Transform + - uid: 10356 + components: + - pos: -59.5,-20.5 + parent: 4812 + type: Transform + - uid: 10357 + components: + - pos: -59.5,-19.5 + parent: 4812 + type: Transform + - uid: 10358 + components: + - pos: -59.5,-18.5 + parent: 4812 + type: Transform + - uid: 10359 + components: + - pos: -61.5,-21.5 + parent: 4812 + type: Transform + - uid: 10360 + components: + - pos: -61.5,-20.5 + parent: 4812 + type: Transform + - uid: 10361 + components: + - pos: -61.5,-19.5 + parent: 4812 + type: Transform + - uid: 10362 + components: + - pos: -61.5,-18.5 + parent: 4812 + type: Transform + - uid: 10363 + components: + - pos: -63.5,-21.5 + parent: 4812 + type: Transform + - uid: 10364 + components: + - pos: -63.5,-20.5 + parent: 4812 + type: Transform + - uid: 10365 + components: + - pos: -63.5,-19.5 + parent: 4812 + type: Transform + - uid: 10366 + components: + - pos: -63.5,-18.5 + parent: 4812 + type: Transform + - uid: 10367 + components: + - pos: -65.5,-21.5 + parent: 4812 + type: Transform + - uid: 10368 + components: + - pos: -65.5,-20.5 + parent: 4812 + type: Transform + - uid: 10369 + components: + - pos: -65.5,-19.5 + parent: 4812 + type: Transform + - uid: 10370 + components: + - pos: -65.5,-18.5 + parent: 4812 + type: Transform + - uid: 11530 + components: + - pos: 41.5,-35.5 + parent: 4812 + type: Transform + - uid: 11531 + components: + - pos: 41.5,-34.5 + parent: 4812 + type: Transform + - uid: 11532 + components: + - pos: 41.5,-33.5 + parent: 4812 + type: Transform + - uid: 11533 + components: + - pos: 41.5,-32.5 + parent: 4812 + type: Transform + - uid: 11534 + components: + - pos: 43.5,-35.5 + parent: 4812 + type: Transform + - uid: 11535 + components: + - pos: 43.5,-34.5 + parent: 4812 + type: Transform + - uid: 11536 + components: + - pos: 43.5,-33.5 + parent: 4812 + type: Transform + - uid: 11537 + components: + - pos: 43.5,-32.5 + parent: 4812 + type: Transform + - uid: 11538 + components: + - pos: 45.5,-35.5 + parent: 4812 + type: Transform + - uid: 11539 + components: + - pos: 45.5,-34.5 + parent: 4812 + type: Transform + - uid: 11540 + components: + - pos: 45.5,-33.5 + parent: 4812 + type: Transform + - uid: 11541 + components: + - pos: 45.5,-32.5 + parent: 4812 + type: Transform + - uid: 11542 + components: + - pos: 47.5,-35.5 + parent: 4812 + type: Transform + - uid: 11543 + components: + - pos: 47.5,-34.5 + parent: 4812 + type: Transform + - uid: 11544 + components: + - pos: 47.5,-33.5 + parent: 4812 + type: Transform + - uid: 11545 + components: + - pos: 47.5,-32.5 + parent: 4812 + type: Transform + - uid: 11546 + components: + - pos: 49.5,-35.5 + parent: 4812 + type: Transform + - uid: 11547 + components: + - pos: 49.5,-34.5 + parent: 4812 + type: Transform + - uid: 11548 + components: + - pos: 49.5,-33.5 + parent: 4812 + type: Transform + - uid: 11549 + components: + - pos: 49.5,-32.5 + parent: 4812 + type: Transform + - uid: 11550 + components: + - pos: 51.5,-35.5 + parent: 4812 + type: Transform + - uid: 11551 + components: + - pos: 51.5,-34.5 + parent: 4812 + type: Transform + - uid: 11552 + components: + - pos: 51.5,-33.5 + parent: 4812 + type: Transform + - uid: 11553 + components: + - pos: 51.5,-32.5 + parent: 4812 + type: Transform + - uid: 11554 + components: + - pos: 51.5,-40.5 + parent: 4812 + type: Transform + - uid: 11555 + components: + - pos: 51.5,-39.5 + parent: 4812 + type: Transform + - uid: 11556 + components: + - pos: 51.5,-38.5 + parent: 4812 + type: Transform + - uid: 11557 + components: + - pos: 51.5,-37.5 + parent: 4812 + type: Transform + - uid: 11558 + components: + - pos: 49.5,-40.5 + parent: 4812 + type: Transform + - uid: 11559 + components: + - pos: 49.5,-39.5 + parent: 4812 + type: Transform + - uid: 11560 + components: + - pos: 49.5,-38.5 + parent: 4812 + type: Transform + - uid: 11561 + components: + - pos: 49.5,-37.5 + parent: 4812 + type: Transform + - uid: 11562 + components: + - pos: 47.5,-40.5 + parent: 4812 + type: Transform + - uid: 11563 + components: + - pos: 47.5,-39.5 + parent: 4812 + type: Transform + - uid: 11564 + components: + - pos: 47.5,-38.5 + parent: 4812 + type: Transform + - uid: 11565 + components: + - pos: 47.5,-37.5 + parent: 4812 + type: Transform + - uid: 11566 + components: + - pos: 45.5,-40.5 + parent: 4812 + type: Transform + - uid: 11567 + components: + - pos: 45.5,-39.5 + parent: 4812 + type: Transform + - uid: 11568 + components: + - pos: 45.5,-38.5 + parent: 4812 + type: Transform + - uid: 11569 + components: + - pos: 45.5,-37.5 + parent: 4812 + type: Transform + - uid: 11570 + components: + - pos: 43.5,-40.5 + parent: 4812 + type: Transform + - uid: 11571 + components: + - pos: 43.5,-39.5 + parent: 4812 + type: Transform + - uid: 11572 + components: + - pos: 43.5,-38.5 + parent: 4812 + type: Transform + - uid: 11573 + components: + - pos: 43.5,-37.5 + parent: 4812 + type: Transform + - uid: 11574 + components: + - pos: 41.5,-40.5 + parent: 4812 + type: Transform + - uid: 11575 + components: + - pos: 41.5,-39.5 + parent: 4812 + type: Transform + - uid: 11576 + components: + - pos: 41.5,-38.5 + parent: 4812 + type: Transform + - uid: 11577 + components: + - pos: 41.5,-37.5 + parent: 4812 + type: Transform +- proto: SolarTracker + entities: + - uid: 10274 + components: + - pos: -71.5,-22.5 + parent: 4812 + type: Transform + - uid: 11529 + components: + - pos: 53.5,-36.5 + parent: 4812 + type: Transform +- proto: SpaceCash1000 + entities: + - uid: 9613 + components: + - flags: InContainer + type: MetaData + - parent: 2709 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: SpaceVillainArcadeFilled + entities: + - uid: 3774 + components: + - pos: -21.5,5.5 + parent: 4812 + type: Transform +- proto: SpawnMobAlexander + entities: + - uid: 12426 + components: + - pos: 6.5,-0.5 + parent: 4812 + type: Transform +- proto: SpawnMobBandito + entities: + - uid: 6340 + components: + - pos: 11.5,-20.5 + parent: 4812 + type: Transform +- proto: SpawnMobCat + entities: + - uid: 8375 + components: + - pos: -26.5,-25.5 + parent: 4812 + type: Transform +- proto: SpawnMobCorgi + entities: + - uid: 2512 + components: + - pos: 5.5,26.5 + parent: 4812 + type: Transform +- proto: SpawnMobCow + entities: + - uid: 1566 + components: + - pos: -6.5,-9.5 + parent: 4812 + type: Transform +- proto: SpawnMobDrone + entities: + - uid: 11933 + components: + - pos: -13.5,16.5 + parent: 4812 + type: Transform + - uid: 11934 + components: + - pos: -12.5,16.5 + parent: 4812 + type: Transform + - uid: 11935 + components: + - pos: -11.5,16.5 + parent: 4812 + type: Transform +- proto: SpawnMobFoxRenault + entities: + - uid: 2621 + components: + - pos: -15.5,22.5 + parent: 4812 + type: Transform +- proto: SpawnMobMcGriff + entities: + - uid: 8340 + components: + - pos: -35.5,17.5 + parent: 4812 + type: Transform +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 4838 + components: + - pos: 2.5,7.5 + parent: 4812 + type: Transform +- proto: SpawnMobMouse + entities: + - uid: 4594 + components: + - pos: 19.5,-0.5 + parent: 4812 + type: Transform + - uid: 7169 + components: + - pos: -28.5,-17.5 + parent: 4812 + type: Transform +- proto: SpawnMobPossumMorty + entities: + - uid: 5053 + components: + - pos: -19.5,-16.5 + parent: 4812 + type: Transform +- proto: SpawnMobRaccoonMorticia + entities: + - uid: 3281 + components: + - pos: 17.5,19.5 + parent: 4812 + type: Transform +- proto: SpawnMobShiva + entities: + - uid: 4808 + components: + - pos: -23.5,24.5 + parent: 4812 + type: Transform +- proto: SpawnMobSlothPaperwork + entities: + - uid: 7155 + components: + - pos: -23.5,-19.5 + parent: 4812 + type: Transform +- proto: SpawnMobSmile + entities: + - uid: 9586 + components: + - pos: 26.5,-24.5 + parent: 4812 + type: Transform +- proto: SpawnMobWalter + entities: + - uid: 6647 + components: + - pos: -11.5,-14.5 + parent: 4812 + type: Transform +- proto: SpawnPointAssistant + entities: + - uid: 12382 + components: + - pos: -19.5,8.5 + parent: 4812 + type: Transform + - uid: 12383 + components: + - pos: -18.5,11.5 + parent: 4812 + type: Transform + - uid: 12384 + components: + - pos: -17.5,9.5 + parent: 4812 + type: Transform + - uid: 12385 + components: + - pos: -20.5,10.5 + parent: 4812 + type: Transform +- proto: SpawnPointAtmos + entities: + - uid: 3259 + components: + - pos: -31.5,2.5 + parent: 4812 + type: Transform + - uid: 3468 + components: + - pos: -30.5,3.5 + parent: 4812 + type: Transform +- proto: SpawnPointBartender + entities: + - uid: 1783 + components: + - pos: 6.5,7.5 + parent: 4812 + type: Transform +- proto: SpawnPointBorg + entities: + - uid: 11922 + components: + - pos: 4.5,-26.5 + parent: 4812 + type: Transform + - uid: 12046 + components: + - pos: 5.5,-26.5 + parent: 4812 + type: Transform +- proto: SpawnPointBotanist + entities: + - uid: 1472 + components: + - pos: -16.5,-6.5 + parent: 4812 + type: Transform + - uid: 1473 + components: + - pos: -13.5,-6.5 + parent: 4812 + type: Transform +- proto: SpawnPointCaptain + entities: + - uid: 2697 + components: + - pos: -11.5,28.5 + parent: 4812 + type: Transform +- proto: SpawnPointCargoTechnician + entities: + - uid: 3282 + components: + - pos: 15.5,18.5 + parent: 4812 + type: Transform + - uid: 3283 + components: + - pos: 19.5,19.5 + parent: 4812 + type: Transform +- proto: SpawnPointChaplain + entities: + - uid: 7633 + components: + - pos: -26.5,-36.5 + parent: 4812 + type: Transform +- proto: SpawnPointChef + entities: + - uid: 1567 + components: + - pos: 4.5,-2.5 + parent: 4812 + type: Transform +- proto: SpawnPointChemist + entities: + - uid: 6648 + components: + - pos: -11.5,-16.5 + parent: 4812 + type: Transform + - uid: 6649 + components: + - pos: -9.5,-16.5 + parent: 4812 + type: Transform +- proto: SpawnPointChiefEngineer + entities: + - uid: 9833 + components: + - pos: -50.5,-8.5 + parent: 4812 + type: Transform +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 7859 + components: + - pos: -25.5,-27.5 + parent: 4812 + type: Transform +- proto: SpawnPointClown + entities: + - uid: 1713 + components: + - pos: -9.5,1.5 + parent: 4812 + type: Transform +- proto: SpawnPointDetective + entities: + - uid: 12168 + components: + - pos: 20.5,-16.5 + parent: 4812 + type: Transform +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 2540 + components: + - pos: 7.5,28.5 + parent: 4812 + type: Transform +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 8253 + components: + - pos: -22.5,27.5 + parent: 4812 + type: Transform +- proto: SpawnPointJanitor + entities: + - uid: 1535 + components: + - pos: -21.5,-8.5 + parent: 4812 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 4707 + components: + - pos: -11.5,-48.5 + parent: 4812 + type: Transform + - uid: 4708 + components: + - pos: -11.5,-47.5 + parent: 4812 + type: Transform + - uid: 4713 + components: + - pos: -11.5,-46.5 + parent: 4812 + type: Transform + - uid: 4715 + components: + - pos: -11.5,-45.5 + parent: 4812 + type: Transform + - uid: 4716 + components: + - pos: -10.5,-48.5 + parent: 4812 + type: Transform + - uid: 4718 + components: + - pos: -10.5,-47.5 + parent: 4812 + type: Transform + - uid: 4720 + components: + - pos: -10.5,-46.5 + parent: 4812 + type: Transform + - uid: 4721 + components: + - pos: -10.5,-45.5 + parent: 4812 + type: Transform +- proto: SpawnPointLawyer + entities: + - uid: 8308 + components: + - pos: -17.5,16.5 + parent: 4812 + type: Transform +- proto: SpawnPointLibrarian + entities: + - uid: 7634 + components: + - pos: -31.5,-22.5 + parent: 4812 + type: Transform +- proto: SpawnPointMedicalDoctor + entities: + - uid: 8358 + components: + - pos: -9.5,-27.5 + parent: 4812 + type: Transform + - uid: 8373 + components: + - pos: -9.5,-26.5 + parent: 4812 + type: Transform + - uid: 8374 + components: + - pos: -19.5,-22.5 + parent: 4812 + type: Transform +- proto: SpawnPointMedicalIntern + entities: + - uid: 7860 + components: + - pos: -15.5,-22.5 + parent: 4812 + type: Transform + - uid: 8357 + components: + - pos: -17.5,-22.5 + parent: 4812 + type: Transform +- proto: SpawnPointMime + entities: + - uid: 1715 + components: + - pos: -9.5,0.5 + parent: 4812 + type: Transform +- proto: SpawnPointMusician + entities: + - uid: 1722 + components: + - pos: -9.5,-0.5 + parent: 4812 + type: Transform +- proto: SpawnPointObserver + entities: + - uid: 5059 + components: + - pos: -2.5,2.5 + parent: 4812 + type: Transform +- proto: SpawnPointQuartermaster + entities: + - uid: 3449 + components: + - pos: 16.5,34.5 + parent: 4812 + type: Transform +- proto: SpawnPointResearchAssistant + entities: + - uid: 12519 + components: + - pos: 6.5,-20.5 + parent: 4812 + type: Transform +- proto: SpawnPointResearchDirector + entities: + - uid: 6305 + components: + - pos: 27.5,-18.5 + parent: 4812 + type: Transform +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 3284 + components: + - pos: 23.5,15.5 + parent: 4812 + type: Transform + - uid: 7465 + components: + - pos: 23.5,14.5 + parent: 4812 + type: Transform +- proto: SpawnPointScientist + entities: + - uid: 12499 + components: + - pos: 7.5,-20.5 + parent: 4812 + type: Transform + - uid: 12500 + components: + - pos: 8.5,-20.5 + parent: 4812 + type: Transform + - uid: 12501 + components: + - pos: 9.5,-20.5 + parent: 4812 + type: Transform + - uid: 12502 + components: + - pos: 10.5,-20.5 + parent: 4812 + type: Transform +- proto: SpawnPointSecurityCadet + entities: + - uid: 8440 + components: + - pos: -34.5,11.5 + parent: 4812 + type: Transform +- proto: SpawnPointSecurityOfficer + entities: + - uid: 8441 + components: + - pos: -35.5,11.5 + parent: 4812 + type: Transform + - uid: 8442 + components: + - pos: -36.5,11.5 + parent: 4812 + type: Transform +- proto: SpawnPointSeniorEngineer + entities: + - uid: 10545 + components: + - pos: -31.5,-6.5 + parent: 4812 + type: Transform +- proto: SpawnPointSeniorOfficer + entities: + - uid: 10548 + components: + - pos: -33.5,11.5 + parent: 4812 + type: Transform +- proto: SpawnPointSeniorPhysician + entities: + - uid: 10547 + components: + - pos: -17.5,-21.5 + parent: 4812 + type: Transform +- proto: SpawnPointSeniorResearcher + entities: + - uid: 10546 + components: + - pos: 5.5,-20.5 + parent: 4812 + type: Transform +- proto: SpawnPointServiceWorker + entities: + - uid: 12386 + components: + - pos: 4.5,-0.5 + parent: 4812 + type: Transform +- proto: SpawnPointStationEngineer + entities: + - uid: 10844 + components: + - pos: -32.5,-8.5 + parent: 4812 + type: Transform + - uid: 10845 + components: + - pos: -31.5,-8.5 + parent: 4812 + type: Transform + - uid: 10846 + components: + - pos: -30.5,-8.5 + parent: 4812 + type: Transform +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 10903 + components: + - pos: -29.5,-7.5 + parent: 4812 + type: Transform +- proto: SpawnPointWarden + entities: + - uid: 8336 + components: + - pos: -34.5,15.5 + parent: 4812 + type: Transform +- proto: SpawnVehicleJanicart + entities: + - uid: 1481 + components: + - pos: -22.5,-6.5 + parent: 4812 + type: Transform +- proto: SpawnVehicleSecway + entities: + - uid: 8348 + components: + - pos: -31.5,19.5 + parent: 4812 + type: Transform +- proto: Spoon + entities: + - uid: 1774 + components: + - pos: -2.3316398,2.6041236 + parent: 4812 + type: Transform +- proto: SprayBottleSpaceCleaner + entities: + - uid: 1491 + components: + - pos: -23.528929,-7.7805715 + parent: 4812 + type: Transform + - uid: 1492 + components: + - pos: -23.435179,-7.6711965 + parent: 4812 + type: Transform +- proto: StasisBed + entities: + - uid: 7574 + components: + - pos: -17.5,-20.5 + parent: 4812 + type: Transform +- proto: StationMap + entities: + - uid: 3772 + components: + - pos: 18.5,-1.5 + parent: 4812 + type: Transform + - uid: 4005 + components: + - pos: 4.5,-10.5 + parent: 4812 + type: Transform + - uid: 6689 + components: + - pos: -12.5,21.5 + parent: 4812 + type: Transform + - uid: 7296 + components: + - pos: -31.5,-13.5 + parent: 4812 + type: Transform + - uid: 7297 + components: + - pos: -4.5,-33.5 + parent: 4812 + type: Transform +- proto: Stool + entities: + - uid: 1752 + components: + - rot: 3.141592653589793 rad + pos: -9.5,8.5 + parent: 4812 + type: Transform + - uid: 8402 + components: + - pos: -29.5,31.5 + parent: 4812 + type: Transform + - uid: 8403 + components: + - rot: 3.141592653589793 rad + pos: -28.5,29.5 + parent: 4812 + type: Transform + - uid: 8404 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,30.5 + parent: 4812 + type: Transform + - uid: 8412 + components: + - pos: -31.5,27.5 + parent: 4812 + type: Transform + - uid: 8413 + components: + - pos: -27.5,27.5 + parent: 4812 + type: Transform + - uid: 10497 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-29.5 + parent: 4812 + type: Transform + - uid: 10867 + components: + - pos: -22.5,1.5 + parent: 4812 + type: Transform + - uid: 10868 + components: + - pos: -21.5,1.5 + parent: 4812 + type: Transform + - uid: 10869 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-0.5 + parent: 4812 + type: Transform + - uid: 12148 + components: + - rot: 3.141592653589793 rad + pos: -22.5,4.5 + parent: 4812 + type: Transform +- proto: StoolBar + entities: + - uid: 345 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,9.5 + parent: 4812 + type: Transform + - uid: 346 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,8.5 + parent: 4812 + type: Transform + - uid: 347 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 4812 + type: Transform + - uid: 348 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,6.5 + parent: 4812 + type: Transform + - uid: 366 + components: + - rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 4812 + type: Transform + - uid: 367 + components: + - rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 4812 + type: Transform + - uid: 887 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 4812 + type: Transform + - uid: 888 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 4812 + type: Transform + - uid: 889 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 4812 + type: Transform + - uid: 10495 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-26.5 + parent: 4812 + type: Transform + - uid: 10496 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-26.5 + parent: 4812 + type: Transform +- proto: StorageCanister + entities: + - uid: 6325 + components: + - pos: 23.5,-22.5 + parent: 4812 + type: Transform + - uid: 6326 + components: + - pos: 24.5,-22.5 + parent: 4812 + type: Transform + - uid: 9553 + components: + - pos: -41.5,6.5 + parent: 4812 + type: Transform + - uid: 9554 + components: + - pos: -41.5,7.5 + parent: 4812 + type: Transform + - uid: 9555 + components: + - pos: -41.5,8.5 + parent: 4812 + type: Transform + - uid: 9665 + components: + - pos: -34.5,4.5 + parent: 4812 + type: Transform + - uid: 9666 + components: + - pos: -34.5,5.5 + parent: 4812 + type: Transform + - uid: 12462 + components: + - pos: -36.5,26.5 + parent: 4812 + type: Transform +- proto: SubstationBasic + entities: + - uid: 897 + components: + - name: Dorm Substation + type: MetaData + - pos: -14.5,7.5 + parent: 4812 + type: Transform + - uid: 1360 + components: + - pos: 5.5,4.5 + parent: 4812 + type: Transform + - uid: 2076 + components: + - name: Bridge Substation + type: MetaData + - pos: 6.5,31.5 + parent: 4812 + type: Transform + - uid: 2821 + components: + - name: Cargo Substation + type: MetaData + - pos: 13.5,32.5 + parent: 4812 + type: Transform + - uid: 3787 + components: + - pos: 13.5,47.5 + parent: 4812 + type: Transform + - uid: 4234 + components: + - name: Evac Substation + type: MetaData + - pos: 17.5,2.5 + parent: 4812 + type: Transform + - uid: 5913 + components: + - name: South Science Substation + type: MetaData + - pos: 16.5,-30.5 + parent: 4812 + type: Transform + - uid: 6899 + components: + - name: Arrivals Substation + type: MetaData + - pos: -8.5,-30.5 + parent: 4812 + type: Transform + - uid: 7957 + components: + - name: Atmos Substation + type: MetaData + - pos: -37.5,8.5 + parent: 4812 + type: Transform + - uid: 9959 + components: + - name: Engi Substation + type: MetaData + - pos: -48.5,-19.5 + parent: 4812 + type: Transform + - uid: 10182 + components: + - name: South West Solar Substation + type: MetaData + - pos: -50.5,-25.5 + parent: 4812 + type: Transform + - uid: 10649 + components: + - name: Grav Substation + type: MetaData + - pos: -53.5,-13.5 + parent: 4812 + type: Transform + - uid: 11435 + components: + - name: South East Solar Substation + type: MetaData + - pos: 30.5,-39.5 + parent: 4812 + type: Transform +- proto: SubstationMachineCircuitboard + entities: + - uid: 2728 + components: + - pos: 0.5457101,23.457329 + parent: 4812 + type: Transform + - uid: 2729 + components: + - pos: 0.4050851,23.613579 + parent: 4812 + type: Transform + - uid: 3380 + components: + - pos: 21.406494,4.6097765 + parent: 4812 + type: Transform + - uid: 3403 + components: + - pos: 21.54712,4.4847765 + parent: 4812 + type: Transform +- proto: SuitStorageAtmos + entities: + - uid: 742 + components: + - pos: -41.5,9.5 + parent: 4812 + type: Transform + - uid: 4846 + components: + - pos: -41.5,10.5 + parent: 4812 + type: Transform +- proto: SuitStorageCaptain + entities: + - uid: 746 + components: + - pos: -10.5,27.5 + parent: 4812 + type: Transform +- proto: SuitStorageCE + entities: + - uid: 747 + components: + - pos: -49.5,-6.5 + parent: 4812 + type: Transform +- proto: SuitStorageEngi + entities: + - uid: 2584 + components: + - pos: -46.5,-7.5 + parent: 4812 + type: Transform + - uid: 4843 + components: + - pos: -46.5,-8.5 + parent: 4812 + type: Transform + - uid: 4855 + components: + - pos: -46.5,-6.5 + parent: 4812 + type: Transform +- proto: SuitStorageEVA + entities: + - uid: 738 + components: + - pos: 9.5,16.5 + parent: 4812 + type: Transform + - uid: 743 + components: + - pos: 5.5,15.5 + parent: 4812 + type: Transform + - uid: 4844 + components: + - pos: 5.5,16.5 + parent: 4812 + type: Transform + - uid: 4845 + components: + - pos: 9.5,15.5 + parent: 4812 + type: Transform +- proto: SuitStorageEVAPrisoner + entities: + - uid: 6572 + components: + - pos: -31.5,24.5 + parent: 4812 + type: Transform + - uid: 7058 + components: + - pos: -25.5,24.5 + parent: 4812 + type: Transform +- proto: SuitStorageHOS + entities: + - uid: 740 + components: + - pos: -23.5,22.5 + parent: 4812 + type: Transform +- proto: SuitStorageRD + entities: + - uid: 735 + components: + - pos: 27.5,-17.5 + parent: 4812 + type: Transform +- proto: SuitStorageSec + entities: + - uid: 736 + components: + - pos: -35.5,21.5 + parent: 4812 + type: Transform +- proto: SuitStorageWarden + entities: + - uid: 745 + components: + - pos: -36.5,21.5 + parent: 4812 + type: Transform +- proto: SuperCapacitorStockPart + entities: + - uid: 6210 + components: + - pos: 7.701914,-18.299206 + parent: 4812 + type: Transform + - uid: 6211 + components: + - pos: 7.451914,-18.299206 + parent: 4812 + type: Transform + - uid: 6212 + components: + - pos: 7.5679626,-16.149172 + parent: 4812 + type: Transform +- proto: SurveillanceCameraCommand + entities: + - uid: 12081 + components: + - rot: 3.141592653589793 rad + pos: -10.5,29.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Captain's Bedroom + type: SurveillanceCamera + - uid: 12082 + components: + - pos: -12.5,22.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Captain's Office + type: SurveillanceCamera + - uid: 12084 + components: + - pos: 1.5,32.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge + type: SurveillanceCamera + - uid: 12085 + components: + - rot: 3.141592653589793 rad + pos: 7.5,29.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: HoP's Room + type: SurveillanceCamera + - uid: 12086 + components: + - rot: 3.141592653589793 rad + pos: 10.5,26.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: HoP's Office + type: SurveillanceCamera + - uid: 12087 + components: + - pos: -1.5,22.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Vault + type: SurveillanceCamera + - uid: 12090 + components: + - rot: 3.141592653589793 rad + pos: 8.5,55.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Core 2 + type: SurveillanceCamera + - uid: 12091 + components: + - rot: 3.141592653589793 rad + pos: 11.5,50.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Core 1 + type: SurveillanceCamera + - uid: 12092 + components: + - rot: 3.141592653589793 rad + pos: 11.5,46.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Core Entrance + type: SurveillanceCamera + - uid: 12522 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,24.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: HoS office + type: SurveillanceCamera + - uid: 12523 + components: + - pos: -12.5,15.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Drone bay + type: SurveillanceCamera + - uid: 12524 + components: + - pos: 7.5,14.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: EvA Storage + type: SurveillanceCamera +- proto: SurveillanceCameraEngineering + entities: + - uid: 12064 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,-12.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Grav Gen + type: SurveillanceCamera + - uid: 12065 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,-8.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Chief Engineer Room + type: SurveillanceCamera + - uid: 12066 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-14.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: AME Room + type: SurveillanceCamera + - uid: 12067 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-1.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engineering Lobby + type: SurveillanceCamera + - uid: 12068 + components: + - pos: -42.5,0.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmospherics + type: SurveillanceCamera +- proto: SurveillanceCameraGeneral + entities: + - uid: 12060 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,12.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Security Hallway + type: SurveillanceCamera + - uid: 12528 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-1.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Entrance of engineering + type: SurveillanceCamera + - uid: 12529 + components: + - pos: -17.5,-12.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Hydro and medbay + type: SurveillanceCamera + - uid: 12530 + components: + - pos: 11.5,-12.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Science and detective + type: SurveillanceCamera + - uid: 12531 + components: + - pos: -0.5,-13.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Entrance of service + type: SurveillanceCamera + - uid: 12532 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-23.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Entrance of medbay + type: SurveillanceCamera + - uid: 12533 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-22.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Entrance of science + type: SurveillanceCamera + - uid: 12534 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-31.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Entrance 3 + type: SurveillanceCamera + - uid: 12535 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-39.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Entrance 2 + type: SurveillanceCamera + - uid: 12536 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-53.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Entrance 1 + type: SurveillanceCamera + - uid: 12537 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,14.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Entrance of cargo + type: SurveillanceCamera + - uid: 12538 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,1.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Service and evac + type: SurveillanceCamera + - uid: 12539 + components: + - pos: 20.5,-3.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Entrance of evac + type: SurveillanceCamera + - uid: 12540 + components: + - pos: 30.5,-9.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Evacuation 1 + type: SurveillanceCamera + - uid: 12541 + components: + - rot: 3.141592653589793 rad + pos: 30.5,4.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Evacuation 2 + type: SurveillanceCamera + - uid: 12542 + components: + - pos: 1.5,19.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Entrance of bridge + type: SurveillanceCamera + - uid: 12543 + components: + - pos: -16.5,19.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Security and drones + type: SurveillanceCamera + - uid: 12544 + components: + - pos: -19.5,1.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dormitory + type: SurveillanceCamera +- proto: SurveillanceCameraMedical + entities: + - uid: 12072 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-16.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Chemistry + type: SurveillanceCamera + - uid: 12105 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-33.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Virology + type: SurveillanceCamera +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 2732 + components: + - pos: -0.5,26.5 + parent: 4812 + type: Transform +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 10668 + components: + - pos: -48.5,-6.5 + parent: 4812 + type: Transform +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 7396 + components: + - pos: -54.5,-13.5 + parent: 4812 + type: Transform +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 7448 + components: + - pos: -24.5,-26.5 + parent: 4812 + type: Transform +- proto: SurveillanceCameraRouterScience + entities: + - uid: 12045 + components: + - pos: 12.5,-18.5 + parent: 4812 + type: Transform +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 8372 + components: + - pos: -33.5,21.5 + parent: 4812 + type: Transform +- proto: SurveillanceCameraRouterService + entities: + - uid: 10658 + components: + - pos: -52.5,-13.5 + parent: 4812 + type: Transform +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 3578 + components: + - pos: 15.5,32.5 + parent: 4812 + type: Transform +- proto: SurveillanceCameraScience + entities: + - uid: 12075 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-27.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Toxins + type: SurveillanceCamera + - uid: 12076 + components: + - pos: 13.5,-21.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science Server Room + type: SurveillanceCamera + - uid: 12077 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-14.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Research and Development + type: SurveillanceCamera + - uid: 12078 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-23.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Robotics + type: SurveillanceCamera + - uid: 12079 + components: + - pos: 28.5,-20.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Research Director's Room + type: SurveillanceCamera +- proto: SurveillanceCameraSecurity + entities: + - uid: 12058 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,20.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Armory + type: SurveillanceCamera + - uid: 12059 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,15.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security + type: SurveillanceCamera + - uid: 12061 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,15.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Warden's Office + type: SurveillanceCamera + - uid: 12062 + components: + - pos: -35.5,10.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Sec Break Room + type: SurveillanceCamera + - uid: 12063 + components: + - pos: -28.5,29.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma Brig + type: SurveillanceCamera + - uid: 12080 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-25.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security Checkpoint + type: SurveillanceCamera + - uid: 12521 + components: + - pos: -17.5,14.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Lawyer office + type: SurveillanceCamera + - uid: 12527 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-15.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Detective office + type: SurveillanceCamera +- proto: SurveillanceCameraService + entities: + - uid: 12546 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-5.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Botany + type: SurveillanceCamera + - uid: 12547 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-14.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Library + type: SurveillanceCamera + - uid: 12548 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-5.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Freezer + type: SurveillanceCamera + - uid: 12549 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Kitchen + type: SurveillanceCamera + - uid: 12550 + components: + - pos: 6.5,6.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Bartenders room + type: SurveillanceCamera + - uid: 12551 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Service 2 + type: SurveillanceCamera + - uid: 12552 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Service 1 + type: SurveillanceCamera + - uid: 12553 + components: + - rot: 3.141592653589793 rad + pos: -9.5,1.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Clowns room + type: SurveillanceCamera + - uid: 12554 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,6.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Theater + type: SurveillanceCamera + - uid: 12555 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-6.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Janitors room + type: SurveillanceCamera + - uid: 12556 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-33.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Chapel 1 + type: SurveillanceCamera +- proto: SurveillanceCameraSupply + entities: + - uid: 12088 + components: + - rot: 3.141592653589793 rad + pos: 18.5,27.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo Bay + type: SurveillanceCamera + - uid: 12089 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,18.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo Lobby + type: SurveillanceCamera + - uid: 12525 + components: + - rot: 3.141592653589793 rad + pos: 17.5,35.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: QM Room + type: SurveillanceCamera + - uid: 12526 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,12.5 + parent: 4812 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Salvagers + type: SurveillanceCamera +- proto: Syringe + entities: + - uid: 6248 + components: + - pos: 16.462831,-27.480993 + parent: 4812 + type: Transform + - uid: 7685 + components: + - pos: -14.597183,-25.438694 + parent: 4812 + type: Transform +- proto: SyringeInaprovaline + entities: + - uid: 7585 + components: + - pos: -15.483852,-23.427011 + parent: 4812 + type: Transform +- proto: Table + entities: + - uid: 1095 + components: + - pos: -18.5,-5.5 + parent: 4812 + type: Transform + - uid: 1096 + components: + - pos: -18.5,-9.5 + parent: 4812 + type: Transform + - uid: 1101 + components: + - pos: -7.5,-7.5 + parent: 4812 + type: Transform + - uid: 1102 + components: + - pos: -8.5,-7.5 + parent: 4812 + type: Transform + - uid: 1453 + components: + - pos: -18.5,-8.5 + parent: 4812 + type: Transform + - uid: 1554 + components: + - pos: 7.5,0.5 + parent: 4812 + type: Transform + - uid: 1651 + components: + - pos: 7.5,8.5 + parent: 4812 + type: Transform + - uid: 1801 + components: + - pos: -4.5,14.5 + parent: 4812 + type: Transform + - uid: 2485 + components: + - pos: 10.5,22.5 + parent: 4812 + type: Transform + - uid: 2720 + components: + - pos: -1.5,24.5 + parent: 4812 + type: Transform + - uid: 2721 + components: + - pos: -3.5,24.5 + parent: 4812 + type: Transform + - uid: 3234 + components: + - pos: 20.5,17.5 + parent: 4812 + type: Transform + - uid: 3235 + components: + - pos: 14.5,18.5 + parent: 4812 + type: Transform + - uid: 3244 + components: + - pos: 17.5,13.5 + parent: 4812 + type: Transform + - uid: 3266 + components: + - pos: 22.5,12.5 + parent: 4812 + type: Transform + - uid: 3447 + components: + - pos: 22.5,3.5 + parent: 4812 + type: Transform + - uid: 3755 + components: + - pos: 15.5,35.5 + parent: 4812 + type: Transform + - uid: 3756 + components: + - pos: 17.5,31.5 + parent: 4812 + type: Transform + - uid: 3843 + components: + - pos: 13.5,44.5 + parent: 4812 + type: Transform + - uid: 3844 + components: + - pos: 15.5,47.5 + parent: 4812 + type: Transform + - uid: 3850 + components: + - pos: 10.5,43.5 + parent: 4812 + type: Transform + - uid: 3851 + components: + - pos: 9.5,56.5 + parent: 4812 + type: Transform + - uid: 3852 + components: + - pos: 11.5,56.5 + parent: 4812 + type: Transform + - uid: 3946 + components: + - pos: 9.5,48.5 + parent: 4812 + type: Transform + - uid: 3947 + components: + - pos: 11.5,48.5 + parent: 4812 + type: Transform + - uid: 4455 + components: + - pos: 14.5,6.5 + parent: 4812 + type: Transform + - uid: 4490 + components: + - pos: 20.5,2.5 + parent: 4812 + type: Transform + - uid: 4534 + components: + - pos: 13.5,-0.5 + parent: 4812 + type: Transform + - uid: 4547 + components: + - pos: 27.5,-5.5 + parent: 4812 + type: Transform + - uid: 4548 + components: + - pos: 27.5,0.5 + parent: 4812 + type: Transform + - uid: 4597 + components: + - pos: 13.5,-4.5 + parent: 4812 + type: Transform + - uid: 4598 + components: + - pos: 13.5,-9.5 + parent: 4812 + type: Transform + - uid: 4985 + components: + - pos: -20.5,-14.5 + parent: 4812 + type: Transform + - uid: 6181 + components: + - pos: 3.5,-14.5 + parent: 4812 + type: Transform + - uid: 6190 + components: + - pos: 3.5,-18.5 + parent: 4812 + type: Transform + - uid: 6192 + components: + - pos: 13.5,-11.5 + parent: 4812 + type: Transform + - uid: 6228 + components: + - pos: 11.5,-28.5 + parent: 4812 + type: Transform + - uid: 6254 + components: + - pos: 5.5,-25.5 + parent: 4812 + type: Transform + - uid: 6255 + components: + - pos: 6.5,-25.5 + parent: 4812 + type: Transform + - uid: 6256 + components: + - pos: 6.5,-28.5 + parent: 4812 + type: Transform + - uid: 6257 + components: + - pos: 5.5,-28.5 + parent: 4812 + type: Transform + - uid: 6314 + components: + - pos: 24.5,-26.5 + parent: 4812 + type: Transform + - uid: 6323 + components: + - pos: 24.5,-25.5 + parent: 4812 + type: Transform + - uid: 6343 + components: + - pos: 9.5,-19.5 + parent: 4812 + type: Transform + - uid: 6353 + components: + - pos: 9.5,-16.5 + parent: 4812 + type: Transform + - uid: 6482 + components: + - pos: -1.5,-27.5 + parent: 4812 + type: Transform + - uid: 7189 + components: + - pos: -18.5,-14.5 + parent: 4812 + type: Transform + - uid: 7406 + components: + - pos: -10.5,-25.5 + parent: 4812 + type: Transform + - uid: 8364 + components: + - pos: -26.5,10.5 + parent: 4812 + type: Transform + - uid: 8400 + components: + - pos: -28.5,30.5 + parent: 4812 + type: Transform + - uid: 8401 + components: + - pos: -29.5,30.5 + parent: 4812 + type: Transform + - uid: 8410 + components: + - pos: -31.5,26.5 + parent: 4812 + type: Transform + - uid: 8411 + components: + - pos: -27.5,26.5 + parent: 4812 + type: Transform + - uid: 8425 + components: + - pos: -38.5,12.5 + parent: 4812 + type: Transform + - uid: 8426 + components: + - pos: -39.5,12.5 + parent: 4812 + type: Transform + - uid: 8427 + components: + - pos: -39.5,11.5 + parent: 4812 + type: Transform + - uid: 8439 + components: + - pos: -37.5,10.5 + parent: 4812 + type: Transform + - uid: 9585 + components: + - pos: 0.5,-3.5 + parent: 4812 + type: Transform + - uid: 10488 + components: + - pos: -37.5,-25.5 + parent: 4812 + type: Transform + - uid: 10489 + components: + - pos: -36.5,-25.5 + parent: 4812 + type: Transform + - uid: 10490 + components: + - pos: -36.5,-22.5 + parent: 4812 + type: Transform + - uid: 10491 + components: + - pos: -37.5,-22.5 + parent: 4812 + type: Transform + - uid: 10709 + components: + - pos: -35.5,-7.5 + parent: 4812 + type: Transform + - uid: 10729 + components: + - pos: -41.5,-7.5 + parent: 4812 + type: Transform + - uid: 10730 + components: + - pos: -42.5,-7.5 + parent: 4812 + type: Transform + - uid: 10731 + components: + - pos: -43.5,-7.5 + parent: 4812 + type: Transform + - uid: 10856 + components: + - pos: -20.5,5.5 + parent: 4812 + type: Transform + - uid: 10857 + components: + - pos: -22.5,3.5 + parent: 4812 + type: Transform + - uid: 10858 + components: + - pos: -22.5,0.5 + parent: 4812 + type: Transform + - uid: 10859 + components: + - pos: -21.5,0.5 + parent: 4812 + type: Transform + - uid: 10907 + components: + - pos: -44.5,-24.5 + parent: 4812 + type: Transform + - uid: 10908 + components: + - pos: -44.5,-23.5 + parent: 4812 + type: Transform + - uid: 11466 + components: + - pos: 31.5,-30.5 + parent: 4812 + type: Transform + - uid: 11662 + components: + - pos: 25.5,-40.5 + parent: 4812 + type: Transform + - uid: 11842 + components: + - pos: -7.5,12.5 + parent: 4812 + type: Transform + - uid: 11879 + components: + - pos: -2.5,-34.5 + parent: 4812 + type: Transform + - uid: 12114 + components: + - pos: -42.5,-2.5 + parent: 4812 + type: Transform + - uid: 12115 + components: + - pos: -42.5,-1.5 + parent: 4812 + type: Transform + - uid: 12493 + components: + - pos: 9.5,-18.5 + parent: 4812 + type: Transform +- proto: TableCarpet + entities: + - uid: 257 + components: + - pos: -18.5,5.5 + parent: 4812 + type: Transform + - uid: 7047 + components: + - pos: -28.5,-14.5 + parent: 4812 + type: Transform + - uid: 7048 + components: + - pos: -27.5,-14.5 + parent: 4812 + type: Transform + - uid: 7049 + components: + - pos: -27.5,-15.5 + parent: 4812 + type: Transform + - uid: 7050 + components: + - pos: -28.5,-15.5 + parent: 4812 + type: Transform + - uid: 10499 + components: + - pos: -32.5,-28.5 + parent: 4812 + type: Transform + - uid: 10500 + components: + - pos: -33.5,-28.5 + parent: 4812 + type: Transform + - uid: 10501 + components: + - pos: -37.5,-28.5 + parent: 4812 + type: Transform +- proto: TableGlass + entities: + - uid: 1085 + components: + - pos: -16.5,-7.5 + parent: 4812 + type: Transform + - uid: 1087 + components: + - pos: -14.5,-7.5 + parent: 4812 + type: Transform + - uid: 1088 + components: + - pos: -13.5,-7.5 + parent: 4812 + type: Transform + - uid: 1089 + components: + - pos: -12.5,-7.5 + parent: 4812 + type: Transform + - uid: 1090 + components: + - pos: -11.5,-7.5 + parent: 4812 + type: Transform + - uid: 6612 + components: + - pos: -10.5,-18.5 + parent: 4812 + type: Transform + - uid: 6613 + components: + - pos: -8.5,-18.5 + parent: 4812 + type: Transform + - uid: 6614 + components: + - pos: -8.5,-17.5 + parent: 4812 + type: Transform + - uid: 6652 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-18.5 + parent: 4812 + type: Transform + - uid: 7426 + components: + - pos: -22.5,-28.5 + parent: 4812 + type: Transform + - uid: 7443 + components: + - pos: -24.5,-25.5 + parent: 4812 + type: Transform + - uid: 7457 + components: + - pos: -24.5,-27.5 + parent: 4812 + type: Transform + - uid: 7576 + components: + - pos: -15.5,-23.5 + parent: 4812 + type: Transform + - uid: 7577 + components: + - pos: -18.5,-23.5 + parent: 4812 + type: Transform + - uid: 7578 + components: + - pos: -18.5,-20.5 + parent: 4812 + type: Transform + - uid: 9023 + components: + - pos: -39.5,-35.5 + parent: 4812 + type: Transform + - uid: 9024 + components: + - pos: -40.5,-35.5 + parent: 4812 + type: Transform + - uid: 9025 + components: + - pos: -40.5,-34.5 + parent: 4812 + type: Transform + - uid: 10659 + components: + - pos: -12.5,-16.5 + parent: 4812 + type: Transform +- proto: TableReinforced + entities: + - uid: 144 + components: + - pos: -14.5,17.5 + parent: 4812 + type: Transform + - uid: 175 + components: + - pos: -14.5,16.5 + parent: 4812 + type: Transform + - uid: 311 + components: + - pos: -6.5,-6.5 + parent: 4812 + type: Transform + - uid: 312 + components: + - pos: -6.5,-5.5 + parent: 4812 + type: Transform + - uid: 313 + components: + - pos: 1.5,-2.5 + parent: 4812 + type: Transform + - uid: 314 + components: + - pos: 1.5,-1.5 + parent: 4812 + type: Transform + - uid: 315 + components: + - pos: 1.5,-0.5 + parent: 4812 + type: Transform + - uid: 316 + components: + - pos: 3.5,4.5 + parent: 4812 + type: Transform + - uid: 317 + components: + - pos: 2.5,4.5 + parent: 4812 + type: Transform + - uid: 320 + components: + - pos: 1.5,6.5 + parent: 4812 + type: Transform + - uid: 321 + components: + - pos: 1.5,7.5 + parent: 4812 + type: Transform + - uid: 322 + components: + - pos: 1.5,8.5 + parent: 4812 + type: Transform + - uid: 323 + components: + - pos: 1.5,9.5 + parent: 4812 + type: Transform + - uid: 730 + components: + - pos: 5.5,17.5 + parent: 4812 + type: Transform + - uid: 731 + components: + - pos: 5.5,14.5 + parent: 4812 + type: Transform + - uid: 734 + components: + - pos: 7.5,16.5 + parent: 4812 + type: Transform + - uid: 1487 + components: + - pos: -23.5,-7.5 + parent: 4812 + type: Transform + - uid: 1488 + components: + - pos: -23.5,-6.5 + parent: 4812 + type: Transform + - uid: 1557 + components: + - pos: 3.5,-1.5 + parent: 4812 + type: Transform + - uid: 1558 + components: + - pos: 4.5,-1.5 + parent: 4812 + type: Transform + - uid: 1559 + components: + - pos: 5.5,-1.5 + parent: 4812 + type: Transform + - uid: 1560 + components: + - pos: 6.5,-1.5 + parent: 4812 + type: Transform + - uid: 2229 + components: + - pos: 9.5,23.5 + parent: 4812 + type: Transform + - uid: 2650 + components: + - pos: -3.5,34.5 + parent: 4812 + type: Transform + - uid: 2651 + components: + - pos: -3.5,35.5 + parent: 4812 + type: Transform + - uid: 2653 + components: + - pos: -1.5,35.5 + parent: 4812 + type: Transform + - uid: 2660 + components: + - pos: 1.5,34.5 + parent: 4812 + type: Transform + - uid: 2661 + components: + - pos: -6.5,34.5 + parent: 4812 + type: Transform + - uid: 2663 + components: + - pos: -8.5,34.5 + parent: 4812 + type: Transform + - uid: 2698 + components: + - pos: 0.5,26.5 + parent: 4812 + type: Transform + - uid: 2702 + components: + - pos: 0.5,22.5 + parent: 4812 + type: Transform + - uid: 2703 + components: + - pos: -5.5,22.5 + parent: 4812 + type: Transform + - uid: 2704 + components: + - pos: -5.5,23.5 + parent: 4812 + type: Transform + - uid: 2705 + components: + - pos: -5.5,24.5 + parent: 4812 + type: Transform + - uid: 2706 + components: + - pos: -5.5,25.5 + parent: 4812 + type: Transform + - uid: 2707 + components: + - pos: -5.5,26.5 + parent: 4812 + type: Transform + - uid: 2854 + components: + - pos: 15.5,16.5 + parent: 4812 + type: Transform + - uid: 3232 + components: + - pos: 19.5,21.5 + parent: 4812 + type: Transform + - uid: 3233 + components: + - pos: 20.5,21.5 + parent: 4812 + type: Transform + - uid: 4430 + components: + - pos: 28.5,1.5 + parent: 4812 + type: Transform + - uid: 4431 + components: + - pos: 28.5,-6.5 + parent: 4812 + type: Transform + - uid: 4562 + components: + - pos: 27.5,3.5 + parent: 4812 + type: Transform + - uid: 4563 + components: + - pos: 27.5,4.5 + parent: 4812 + type: Transform + - uid: 4564 + components: + - pos: 28.5,4.5 + parent: 4812 + type: Transform + - uid: 4578 + components: + - pos: 27.5,-9.5 + parent: 4812 + type: Transform + - uid: 5306 + components: + - pos: -4.5,-27.5 + parent: 4812 + type: Transform + - uid: 5431 + components: + - pos: 2.5,-23.5 + parent: 4812 + type: Transform + - uid: 5503 + components: + - pos: 2.5,-15.5 + parent: 4812 + type: Transform + - uid: 5504 + components: + - pos: 4.5,-13.5 + parent: 4812 + type: Transform + - uid: 6186 + components: + - pos: 7.5,-18.5 + parent: 4812 + type: Transform + - uid: 6187 + components: + - pos: 7.5,-17.5 + parent: 4812 + type: Transform + - uid: 6188 + components: + - pos: 7.5,-16.5 + parent: 4812 + type: Transform + - uid: 6189 + components: + - pos: 7.5,-15.5 + parent: 4812 + type: Transform + - uid: 6219 + components: + - pos: 13.5,-28.5 + parent: 4812 + type: Transform + - uid: 6220 + components: + - pos: 13.5,-27.5 + parent: 4812 + type: Transform + - uid: 6221 + components: + - pos: 16.5,-28.5 + parent: 4812 + type: Transform + - uid: 6222 + components: + - pos: 16.5,-27.5 + parent: 4812 + type: Transform + - uid: 6224 + components: + - pos: 16.5,-23.5 + parent: 4812 + type: Transform + - uid: 6225 + components: + - pos: 15.5,-23.5 + parent: 4812 + type: Transform + - uid: 6335 + components: + - pos: 35.5,-24.5 + parent: 4812 + type: Transform + - uid: 6345 + components: + - pos: 35.5,-26.5 + parent: 4812 + type: Transform + - uid: 6347 + components: + - pos: 35.5,-25.5 + parent: 4812 + type: Transform + - uid: 6382 + components: + - pos: 31.5,-24.5 + parent: 4812 + type: Transform + - uid: 6476 + components: + - pos: -2.5,-24.5 + parent: 4812 + type: Transform + - uid: 6477 + components: + - pos: -1.5,-24.5 + parent: 4812 + type: Transform + - uid: 6580 + components: + - pos: -9.5,-13.5 + parent: 4812 + type: Transform + - uid: 6581 + components: + - pos: -11.5,-19.5 + parent: 4812 + type: Transform + - uid: 6737 + components: + - pos: -26.5,22.5 + parent: 4812 + type: Transform + - uid: 7030 + components: + - pos: -28.5,22.5 + parent: 4812 + type: Transform + - uid: 7066 + components: + - pos: -27.5,22.5 + parent: 4812 + type: Transform + - uid: 7419 + components: + - pos: -19.5,-25.5 + parent: 4812 + type: Transform + - uid: 7462 + components: + - pos: -14.5,-25.5 + parent: 4812 + type: Transform + - uid: 7752 + components: + - pos: -24.5,11.5 + parent: 4812 + type: Transform + - uid: 7777 + components: + - pos: -25.5,12.5 + parent: 4812 + type: Transform + - uid: 7778 + components: + - pos: -26.5,12.5 + parent: 4812 + type: Transform + - uid: 7787 + components: + - pos: -32.5,15.5 + parent: 4812 + type: Transform + - uid: 8333 + components: + - pos: -36.5,15.5 + parent: 4812 + type: Transform + - uid: 8334 + components: + - pos: -36.5,16.5 + parent: 4812 + type: Transform + - uid: 8335 + components: + - pos: -36.5,17.5 + parent: 4812 + type: Transform + - uid: 8343 + components: + - pos: -31.5,12.5 + parent: 4812 + type: Transform + - uid: 8344 + components: + - pos: -31.5,14.5 + parent: 4812 + type: Transform + - uid: 8347 + components: + - pos: -31.5,20.5 + parent: 4812 + type: Transform + - uid: 8447 + components: + - pos: -28.5,10.5 + parent: 4812 + type: Transform + - uid: 8448 + components: + - pos: -29.5,10.5 + parent: 4812 + type: Transform + - uid: 8449 + components: + - pos: -30.5,10.5 + parent: 4812 + type: Transform + - uid: 8564 + components: + - pos: -19.5,9.5 + parent: 4812 + type: Transform + - uid: 8565 + components: + - pos: -19.5,10.5 + parent: 4812 + type: Transform + - uid: 8566 + components: + - pos: -18.5,10.5 + parent: 4812 + type: Transform + - uid: 8567 + components: + - pos: -18.5,9.5 + parent: 4812 + type: Transform + - uid: 8568 + components: + - pos: -18.5,12.5 + parent: 4812 + type: Transform + - uid: 8569 + components: + - pos: -19.5,12.5 + parent: 4812 + type: Transform + - uid: 8570 + components: + - pos: -20.5,12.5 + parent: 4812 + type: Transform + - uid: 8571 + components: + - pos: -20.5,7.5 + parent: 4812 + type: Transform + - uid: 8572 + components: + - pos: -17.5,7.5 + parent: 4812 + type: Transform + - uid: 8573 + components: + - pos: -16.5,7.5 + parent: 4812 + type: Transform + - uid: 8574 + components: + - pos: -16.5,8.5 + parent: 4812 + type: Transform + - uid: 8628 + components: + - pos: -30.5,0.5 + parent: 4812 + type: Transform + - uid: 8682 + components: + - pos: -30.5,-4.5 + parent: 4812 + type: Transform + - uid: 9568 + components: + - pos: -30.5,4.5 + parent: 4812 + type: Transform + - uid: 9569 + components: + - pos: -30.5,5.5 + parent: 4812 + type: Transform + - uid: 9573 + components: + - pos: -28.5,1.5 + parent: 4812 + type: Transform + - uid: 9724 + components: + - pos: -34.5,-5.5 + parent: 4812 + type: Transform + - uid: 9729 + components: + - pos: -31.5,-7.5 + parent: 4812 + type: Transform + - uid: 9730 + components: + - pos: -30.5,-7.5 + parent: 4812 + type: Transform + - uid: 9731 + components: + - pos: -32.5,-7.5 + parent: 4812 + type: Transform + - uid: 10633 + components: + - pos: -49.5,-8.5 + parent: 4812 + type: Transform + - uid: 10634 + components: + - pos: -48.5,-8.5 + parent: 4812 + type: Transform + - uid: 10703 + components: + - pos: -28.5,-5.5 + parent: 4812 + type: Transform + - uid: 10847 + components: + - pos: -27.5,-3.5 + parent: 4812 + type: Transform + - uid: 10848 + components: + - pos: -27.5,-0.5 + parent: 4812 + type: Transform + - uid: 11144 + components: + - pos: 8.5,-44.5 + parent: 4812 + type: Transform + - uid: 11145 + components: + - pos: 7.5,-44.5 + parent: 4812 + type: Transform + - uid: 11146 + components: + - pos: 10.5,-44.5 + parent: 4812 + type: Transform + - uid: 11862 + components: + - pos: -14.5,4.5 + parent: 4812 + type: Transform + - uid: 11929 + components: + - pos: -14.5,15.5 + parent: 4812 + type: Transform + - uid: 11930 + components: + - pos: -10.5,15.5 + parent: 4812 + type: Transform + - uid: 11931 + components: + - pos: -10.5,16.5 + parent: 4812 + type: Transform + - uid: 11932 + components: + - pos: -10.5,17.5 + parent: 4812 + type: Transform + - uid: 12054 + components: + - pos: -33.5,20.5 + parent: 4812 + type: Transform +- proto: TableReinforcedGlass + entities: + - uid: 6303 + components: + - pos: 28.5,-20.5 + parent: 4812 + type: Transform + - uid: 6304 + components: + - pos: 28.5,-19.5 + parent: 4812 + type: Transform +- proto: TableWood + entities: + - uid: 259 + components: + - pos: -17.5,-1.5 + parent: 4812 + type: Transform + - uid: 362 + components: + - pos: 3.5,8.5 + parent: 4812 + type: Transform + - uid: 363 + components: + - pos: 3.5,9.5 + parent: 4812 + type: Transform + - uid: 936 + components: + - pos: -6.5,8.5 + parent: 4812 + type: Transform + - uid: 939 + components: + - pos: -6.5,4.5 + parent: 4812 + type: Transform + - uid: 1040 + components: + - pos: -2.5,9.5 + parent: 4812 + type: Transform + - uid: 1041 + components: + - pos: -2.5,8.5 + parent: 4812 + type: Transform + - uid: 1042 + components: + - pos: -2.5,7.5 + parent: 4812 + type: Transform + - uid: 1043 + components: + - pos: -2.5,6.5 + parent: 4812 + type: Transform + - uid: 1044 + components: + - pos: -2.5,3.5 + parent: 4812 + type: Transform + - uid: 1045 + components: + - pos: -2.5,2.5 + parent: 4812 + type: Transform + - uid: 1046 + components: + - pos: -2.5,1.5 + parent: 4812 + type: Transform + - uid: 1047 + components: + - pos: -2.5,-1.5 + parent: 4812 + type: Transform + - uid: 1048 + components: + - pos: -2.5,-2.5 + parent: 4812 + type: Transform + - uid: 1049 + components: + - pos: -2.5,-3.5 + parent: 4812 + type: Transform + - uid: 1050 + components: + - pos: -2.5,-4.5 + parent: 4812 + type: Transform + - uid: 1694 + components: + - pos: -10.5,1.5 + parent: 4812 + type: Transform + - uid: 1695 + components: + - pos: -10.5,0.5 + parent: 4812 + type: Transform + - uid: 1696 + components: + - pos: -10.5,-0.5 + parent: 4812 + type: Transform + - uid: 1697 + components: + - pos: -10.5,-1.5 + parent: 4812 + type: Transform + - uid: 1698 + components: + - pos: -9.5,-1.5 + parent: 4812 + type: Transform + - uid: 1732 + components: + - pos: -10.5,3.5 + parent: 4812 + type: Transform + - uid: 1733 + components: + - pos: -10.5,4.5 + parent: 4812 + type: Transform + - uid: 1734 + components: + - pos: -10.5,5.5 + parent: 4812 + type: Transform + - uid: 1735 + components: + - pos: -10.5,6.5 + parent: 4812 + type: Transform + - uid: 1736 + components: + - pos: -10.5,7.5 + parent: 4812 + type: Transform + - uid: 1737 + components: + - pos: -10.5,8.5 + parent: 4812 + type: Transform + - uid: 1738 + components: + - pos: -10.5,9.5 + parent: 4812 + type: Transform + - uid: 2498 + components: + - pos: 5.5,29.5 + parent: 4812 + type: Transform + - uid: 2506 + components: + - pos: 8.5,24.5 + parent: 4812 + type: Transform + - uid: 2509 + components: + - pos: 9.5,26.5 + parent: 4812 + type: Transform + - uid: 2516 + components: + - pos: 8.5,26.5 + parent: 4812 + type: Transform + - uid: 2537 + components: + - pos: 8.5,29.5 + parent: 4812 + type: Transform + - uid: 2579 + components: + - pos: -13.5,27.5 + parent: 4812 + type: Transform + - uid: 2583 + components: + - pos: -10.5,29.5 + parent: 4812 + type: Transform + - uid: 2586 + components: + - pos: -12.5,27.5 + parent: 4812 + type: Transform + - uid: 2596 + components: + - pos: -12.5,22.5 + parent: 4812 + type: Transform + - uid: 2597 + components: + - pos: -12.5,23.5 + parent: 4812 + type: Transform + - uid: 2599 + components: + - pos: -10.5,25.5 + parent: 4812 + type: Transform + - uid: 2634 + components: + - pos: -2.5,28.5 + parent: 4812 + type: Transform + - uid: 2645 + components: + - pos: -2.5,29.5 + parent: 4812 + type: Transform + - uid: 5043 + components: + - pos: 6.5,24.5 + parent: 4812 + type: Transform + - uid: 5365 + components: + - pos: 17.5,-11.5 + parent: 4812 + type: Transform + - uid: 5367 + components: + - pos: 18.5,-15.5 + parent: 4812 + type: Transform + - uid: 5368 + components: + - pos: 18.5,-16.5 + parent: 4812 + type: Transform + - uid: 5369 + components: + - pos: 19.5,-16.5 + parent: 4812 + type: Transform + - uid: 5373 + components: + - pos: 19.5,-18.5 + parent: 4812 + type: Transform + - uid: 6282 + components: + - pos: 25.5,-17.5 + parent: 4812 + type: Transform + - uid: 6283 + components: + - pos: 25.5,-18.5 + parent: 4812 + type: Transform + - uid: 6284 + components: + - pos: 25.5,-19.5 + parent: 4812 + type: Transform + - uid: 6285 + components: + - pos: 26.5,-19.5 + parent: 4812 + type: Transform + - uid: 6386 + components: + - pos: -4.5,-19.5 + parent: 4812 + type: Transform + - uid: 6387 + components: + - pos: -4.5,-15.5 + parent: 4812 + type: Transform + - uid: 6388 + components: + - pos: -0.5,-15.5 + parent: 4812 + type: Transform + - uid: 6389 + components: + - pos: -0.5,-19.5 + parent: 4812 + type: Transform + - uid: 7002 + components: + - pos: -18.5,-35.5 + parent: 4812 + type: Transform + - uid: 7004 + components: + - pos: -18.5,-33.5 + parent: 4812 + type: Transform + - uid: 7017 + components: + - pos: -13.5,-33.5 + parent: 4812 + type: Transform + - uid: 7018 + components: + - pos: -13.5,-35.5 + parent: 4812 + type: Transform + - uid: 7039 + components: + - pos: -23.5,-38.5 + parent: 4812 + type: Transform + - uid: 7040 + components: + - pos: -24.5,-34.5 + parent: 4812 + type: Transform + - uid: 7051 + components: + - pos: -32.5,-15.5 + parent: 4812 + type: Transform + - uid: 7052 + components: + - pos: -32.5,-14.5 + parent: 4812 + type: Transform + - uid: 7055 + components: + - pos: -30.5,-19.5 + parent: 4812 + type: Transform + - uid: 7056 + components: + - pos: -30.5,-18.5 + parent: 4812 + type: Transform + - uid: 7057 + components: + - pos: -31.5,-18.5 + parent: 4812 + type: Transform + - uid: 7125 + components: + - pos: -32.5,-23.5 + parent: 4812 + type: Transform + - uid: 7126 + components: + - pos: -31.5,-23.5 + parent: 4812 + type: Transform + - uid: 7127 + components: + - pos: -30.5,-23.5 + parent: 4812 + type: Transform + - uid: 8246 + components: + - pos: -22.5,-17.5 + parent: 4812 + type: Transform + - uid: 8255 + components: + - pos: -19.5,22.5 + parent: 4812 + type: Transform + - uid: 8256 + components: + - pos: -20.5,22.5 + parent: 4812 + type: Transform + - uid: 8257 + components: + - pos: -21.5,22.5 + parent: 4812 + type: Transform + - uid: 8258 + components: + - pos: -21.5,23.5 + parent: 4812 + type: Transform + - uid: 8259 + components: + - pos: -21.5,24.5 + parent: 4812 + type: Transform + - uid: 8271 + components: + - pos: -17.5,14.5 + parent: 4812 + type: Transform + - uid: 8273 + components: + - pos: -18.5,15.5 + parent: 4812 + type: Transform + - uid: 8274 + components: + - pos: -18.5,14.5 + parent: 4812 + type: Transform + - uid: 8294 + components: + - pos: -19.5,17.5 + parent: 4812 + type: Transform + - uid: 8394 + components: + - pos: -25.5,30.5 + parent: 4812 + type: Transform + - uid: 9051 + components: + - pos: -31.5,-40.5 + parent: 4812 + type: Transform + - uid: 9052 + components: + - pos: -29.5,-35.5 + parent: 4812 + type: Transform + - uid: 9078 + components: + - pos: -30.5,-29.5 + parent: 4812 + type: Transform + - uid: 11803 + components: + - pos: -14.5,-0.5 + parent: 4812 + type: Transform + - uid: 12420 + components: + - pos: -25.5,-18.5 + parent: 4812 + type: Transform +- proto: TaikoInstrument + entities: + - uid: 4373 + components: + - pos: -27.5,32.5 + parent: 4812 + type: Transform +- proto: TargetHuman + entities: + - uid: 12422 + components: + - pos: -54.5,-16.5 + parent: 4812 + type: Transform +- proto: TelecomServer + entities: + - uid: 330 + components: + - pos: 14.5,-18.5 + parent: 4812 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 331 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 4991 + components: + - pos: 17.5,32.5 + parent: 4812 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 4992 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 6662 + components: + - pos: -49.5,-13.5 + parent: 4812 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 6663 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 7247 + components: + - pos: -50.5,-13.5 + parent: 4812 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 7248 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 7267 + components: + - pos: -1.5,26.5 + parent: 4812 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 7268 + - 7269 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 7290 + components: + - pos: -48.5,-13.5 + parent: 4812 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 7291 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer +- proto: TintedWindow + entities: + - uid: 4859 + components: + - pos: -18.5,-13.5 + parent: 4812 + type: Transform + - uid: 5015 + components: + - pos: -20.5,-13.5 + parent: 4812 + type: Transform + - uid: 6679 + components: + - pos: -17.5,-16.5 + parent: 4812 + type: Transform + - uid: 6693 + components: + - pos: -12.5,-35.5 + parent: 4812 + type: Transform + - uid: 6757 + components: + - pos: -25.5,-37.5 + parent: 4812 + type: Transform + - uid: 6758 + components: + - pos: -25.5,-35.5 + parent: 4812 + type: Transform + - uid: 7192 + components: + - pos: -13.5,-17.5 + parent: 4812 + type: Transform + - uid: 7193 + components: + - pos: -13.5,-15.5 + parent: 4812 + type: Transform +- proto: ToiletDirtyWater + entities: + - uid: 7027 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-32.5 + parent: 4812 + type: Transform +- proto: ToiletEmpty + entities: + - uid: 2488 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,29.5 + parent: 4812 + type: Transform + - uid: 2489 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,27.5 + parent: 4812 + type: Transform + - uid: 3452 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,34.5 + parent: 4812 + type: Transform + - uid: 4447 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,8.5 + parent: 4812 + type: Transform + - uid: 4448 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,7.5 + parent: 4812 + type: Transform + - uid: 8244 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,28.5 + parent: 4812 + type: Transform +- proto: TomatoSeeds + entities: + - uid: 11297 + components: + - pos: 16.522455,-38.60528 + parent: 4812 + type: Transform +- proto: TomDrumsInstrument + entities: + - uid: 12367 + components: + - pos: -9.5,3.5 + parent: 4812 + type: Transform +- proto: ToolboxElectricalFilled + entities: + - uid: 3846 + components: + - pos: 15.560463,47.548717 + parent: 4812 + type: Transform + - uid: 6235 + components: + - pos: 11.595695,-23.434612 + parent: 4812 + type: Transform + - uid: 8584 + components: + - pos: -16.515034,8.474278 + parent: 4812 + type: Transform +- proto: ToolboxEmergencyFilled + entities: + - uid: 3271 + components: + - pos: 22.451836,13.667355 + parent: 4812 + type: Transform + - uid: 3272 + components: + - pos: 22.62371,13.52673 + parent: 4812 + type: Transform + - uid: 4541 + components: + - pos: 21.46411,-6.3464417 + parent: 4812 + type: Transform + - uid: 8596 + components: + - pos: -18.547379,10.53499 + parent: 4812 + type: Transform + - uid: 11777 + components: + - pos: -34.527054,-18.337584 + parent: 4812 + type: Transform +- proto: ToolboxGoldFilled + entities: + - uid: 2711 + components: + - pos: -5.514771,25.816704 + parent: 4812 + type: Transform +- proto: ToolboxMechanicalFilled + entities: + - uid: 2676 + components: + - pos: -3.4889355,35.56198 + parent: 4812 + type: Transform + - uid: 3845 + components: + - pos: 15.388588,47.767467 + parent: 4812 + type: Transform + - uid: 6234 + components: + - pos: 11.42382,-23.262737 + parent: 4812 + type: Transform + - uid: 8595 + components: + - pos: -19.484879,9.65999 + parent: 4812 + type: Transform +- proto: TorsoHuman + entities: + - uid: 12423 + components: + - pos: -53.589386,-16.742252 + parent: 4812 + type: Transform +- proto: ToyAi + entities: + - uid: 3962 + components: + - pos: 10.469682,53.04013 + parent: 4812 + type: Transform +- proto: ToyIan + entities: + - uid: 2503 + components: + - pos: 5.719586,29.52392 + parent: 4812 + type: Transform +- proto: ToyMouse + entities: + - uid: 7170 + components: + - pos: -23.706095,-17.394772 + parent: 4812 + type: Transform +- proto: ToyRubberDuck + entities: + - uid: 2496 + components: + - pos: -15.456392,28.433739 + parent: 4812 + type: Transform +- proto: ToySpawner + entities: + - uid: 10932 + components: + - pos: -10.5,11.5 + parent: 4812 + type: Transform +- proto: TrashBag + entities: + - uid: 1493 + components: + - pos: -23.716429,-6.4211965 + parent: 4812 + type: Transform + - uid: 1494 + components: + - pos: -23.466429,-6.4368215 + parent: 4812 + type: Transform + - uid: 11941 + components: + - pos: -10.701956,16.566319 + parent: 4812 + type: Transform + - uid: 11942 + components: + - pos: -10.498831,16.566319 + parent: 4812 + type: Transform + - uid: 11943 + components: + - pos: -10.280081,16.566319 + parent: 4812 + type: Transform +- proto: TrashBananaPeel + entities: + - uid: 1707 + components: + - pos: -9.550176,1.455398 + parent: 4812 + type: Transform + - uid: 11240 + components: + - pos: 8.641412,-38.54009 + parent: 4812 + type: Transform +- proto: trayScanner + entities: + - uid: 4492 + components: + - pos: 20.567461,2.6407971 + parent: 4812 + type: Transform + - uid: 11959 + components: + - pos: -10.545721,17.660069 + parent: 4812 + type: Transform +- proto: TubaInstrument + entities: + - uid: 1719 + components: + - pos: -8.5,-1.5 + parent: 4812 + type: Transform +- proto: TwoWayLever + entities: + - uid: 3034 + components: + - pos: 19.5,23.5 + parent: 4812 + type: Transform + - linkedPorts: + 3013: + - Left: Forward + - Right: Reverse + - Middle: Off + 3014: + - Left: Forward + - Right: Reverse + - Middle: Off + 3033: + - Left: Forward + - Right: Reverse + - Middle: Off + 3028: + - Left: Forward + - Right: Reverse + - Middle: Off + 3029: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 3188 + components: + - pos: 18.5,27.5 + parent: 4812 + type: Transform + - nextSignalLeft: True + type: TwoWayLever + - linkedPorts: + 2863: + - Left: Forward + - Right: Reverse + - Middle: Off + 3043: + - Left: Forward + - Right: Reverse + - Middle: Off + 3046: + - Left: Forward + - Right: Reverse + - Middle: Off + 2765: + - Left: Forward + - Right: Reverse + - Middle: Off + 2771: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 11245 + components: + - pos: 8.5,-37.5 + parent: 4812 + type: Transform + - linkedPorts: + 11235: + - Left: Forward + - Right: Reverse + - Middle: Off + 11244: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource +- proto: UniformPrinter + entities: + - uid: 2513 + components: + - pos: 5.5,24.5 + parent: 4812 + type: Transform + - materialWhiteList: + - Cloth + - Durathread + type: MaterialStorage +- proto: UprightPianoInstrument + entities: + - uid: 10498 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-29.5 + parent: 4812 + type: Transform +- proto: Vaccinator + entities: + - uid: 9019 + components: + - pos: -38.5,-33.5 + parent: 4812 + type: Transform +- proto: VehicleKeyJanicart + entities: + - uid: 1482 + components: + - pos: -22.528929,-6.6977267 + parent: 4812 + type: Transform +- proto: VehicleKeySecway + entities: + - uid: 8349 + components: + - pos: -31.5,20.5 + parent: 4812 + type: Transform +- proto: VendingBarDrobe + entities: + - uid: 1647 + components: + - flags: SessionSpecific + type: MetaData + - pos: 5.5,6.5 + parent: 4812 + type: Transform +- proto: VendingMachineAtmosDrobe + entities: + - uid: 9572 + components: + - flags: SessionSpecific + type: MetaData + - pos: -28.5,2.5 + parent: 4812 + type: Transform +- proto: VendingMachineBooze + entities: + - uid: 12 + components: + - flags: SessionSpecific + type: MetaData + - pos: 4.5,6.5 + parent: 4812 + type: Transform + - uid: 2606 + components: + - flags: SessionSpecific + type: MetaData + - pos: -15.5,25.5 + parent: 4812 + type: Transform + - uid: 10494 + components: + - flags: SessionSpecific + type: MetaData + - pos: -38.5,-22.5 + parent: 4812 + type: Transform +- proto: VendingMachineCargoDrobe + entities: + - uid: 3230 + components: + - flags: SessionSpecific + type: MetaData + - pos: 14.5,19.5 + parent: 4812 + type: Transform +- proto: VendingMachineCart + entities: + - uid: 2510 + components: + - flags: SessionSpecific + type: MetaData + - pos: 10.5,26.5 + parent: 4812 + type: Transform +- proto: VendingMachineChang + entities: + - uid: 923 + components: + - flags: SessionSpecific + type: MetaData + - pos: 0.5,-6.5 + parent: 4812 + type: Transform + - uid: 4538 + components: + - flags: SessionSpecific + type: MetaData + - pos: 23.5,-6.5 + parent: 4812 + type: Transform + - uid: 6422 + components: + - flags: SessionSpecific + type: MetaData + - pos: 2.5,-32.5 + parent: 4812 + type: Transform +- proto: VendingMachineChapel + entities: + - uid: 7036 + components: + - flags: SessionSpecific + type: MetaData + - pos: -27.5,-35.5 + parent: 4812 + type: Transform +- proto: VendingMachineChefDrobe + entities: + - uid: 1539 + components: + - flags: SessionSpecific + type: MetaData + - pos: 7.5,-3.5 + parent: 4812 + type: Transform +- proto: VendingMachineChefvend + entities: + - uid: 1124 + components: + - flags: SessionSpecific + type: MetaData + - pos: 3.5,-3.5 + parent: 4812 + type: Transform +- proto: VendingMachineChemDrobe + entities: + - uid: 6608 + components: + - flags: SessionSpecific + type: MetaData + - pos: -12.5,-15.5 + parent: 4812 + type: Transform +- proto: VendingMachineChemicals + entities: + - uid: 741 + components: + - flags: SessionSpecific + type: MetaData + - pos: -10.5,-14.5 + parent: 4812 + type: Transform +- proto: VendingMachineCigs + entities: + - uid: 917 + components: + - flags: SessionSpecific + name: cigarette machine + type: MetaData + - pos: -6.5,9.5 + parent: 4812 + type: Transform + - uid: 2672 + components: + - flags: SessionSpecific + name: cigarette machine + type: MetaData + - pos: 0.5,28.5 + parent: 4812 + type: Transform + - uid: 4536 + components: + - flags: SessionSpecific + name: cigarette machine + type: MetaData + - pos: 21.5,-4.5 + parent: 4812 + type: Transform + - uid: 5372 + components: + - flags: SessionSpecific + name: cigarette machine + type: MetaData + - pos: 18.5,-18.5 + parent: 4812 + type: Transform + - uid: 8268 + components: + - flags: SessionSpecific + name: cigarette machine + type: MetaData + - pos: -23.5,25.5 + parent: 4812 + type: Transform + - uid: 9077 + components: + - flags: SessionSpecific + name: cigarette machine + type: MetaData + - pos: -30.5,-28.5 + parent: 4812 + type: Transform + - uid: 10873 + components: + - flags: SessionSpecific + name: cigarette machine + type: MetaData + - pos: -27.5,7.5 + parent: 4812 + type: Transform +- proto: VendingMachineClothing + entities: + - uid: 10850 + components: + - flags: SessionSpecific + type: MetaData + - pos: -23.5,-1.5 + parent: 4812 + type: Transform +- proto: VendingMachineCoffee + entities: + - uid: 918 + components: + - flags: SessionSpecific + name: Hot drinks machine + type: MetaData + - pos: 0.5,10.5 + parent: 4812 + type: Transform + - uid: 1797 + components: + - flags: SessionSpecific + name: Hot drinks machine + type: MetaData + - pos: -5.5,16.5 + parent: 4812 + type: Transform + - uid: 2671 + components: + - flags: SessionSpecific + name: Hot drinks machine + type: MetaData + - pos: -5.5,28.5 + parent: 4812 + type: Transform + - uid: 4537 + components: + - flags: SessionSpecific + name: Hot drinks machine + type: MetaData + - pos: 23.5,-5.5 + parent: 4812 + type: Transform + - uid: 6356 + components: + - flags: SessionSpecific + name: Hot drinks machine + type: MetaData + - pos: 9.5,-28.5 + parent: 4812 + type: Transform + - uid: 10741 + components: + - flags: SessionSpecific + name: Hot drinks machine + type: MetaData + - pos: -45.5,-5.5 + parent: 4812 + type: Transform + - uid: 12150 + components: + - flags: SessionSpecific + name: Hot drinks machine + type: MetaData + - pos: -27.5,-12.5 + parent: 4812 + type: Transform +- proto: VendingMachineCola + entities: + - uid: 4533 + components: + - flags: SessionSpecific + type: MetaData + - pos: 13.5,2.5 + parent: 4812 + type: Transform + - uid: 5061 + components: + - flags: SessionSpecific + type: MetaData + - pos: -9.5,-46.5 + parent: 4812 + type: Transform +- proto: VendingMachineCondiments + entities: + - uid: 9584 + components: + - flags: SessionSpecific + type: MetaData + - pos: 0.5,-3.5 + parent: 4812 + type: Transform +- proto: VendingMachineDetDrobe + entities: + - uid: 5361 + components: + - flags: SessionSpecific + type: MetaData + - pos: 20.5,-14.5 + parent: 4812 + type: Transform +- proto: VendingMachineDinnerware + entities: + - uid: 1552 + components: + - flags: SessionSpecific + name: Dinnerware + type: MetaData + - pos: 2.5,-3.5 + parent: 4812 + type: Transform +- proto: VendingMachineDiscount + entities: + - uid: 919 + components: + - flags: SessionSpecific + type: MetaData + - pos: 0.5,11.5 + parent: 4812 + type: Transform +- proto: VendingMachineEngiDrobe + entities: + - uid: 12516 + components: + - flags: SessionSpecific + type: MetaData + - pos: -38.5,-7.5 + parent: 4812 + type: Transform +- proto: VendingMachineEngivend + entities: + - uid: 9722 + components: + - flags: SessionSpecific + type: MetaData + - pos: -31.5,-5.5 + parent: 4812 + type: Transform +- proto: VendingMachineGames + entities: + - uid: 7070 + components: + - flags: SessionSpecific + type: MetaData + - pos: -30.5,-14.5 + parent: 4812 + type: Transform +- proto: VendingMachineGeneDrobe + entities: + - uid: 2607 + components: + - flags: SessionSpecific + type: MetaData + - pos: -14.5,-18.5 + parent: 4812 + type: Transform +- proto: VendingMachineHappyHonk + entities: + - uid: 1565 + components: + - flags: SessionSpecific + type: MetaData + - pos: 6.5,-3.5 + parent: 4812 + type: Transform +- proto: VendingMachineHydrobe + entities: + - uid: 1094 + components: + - flags: SessionSpecific + type: MetaData + - pos: -18.5,-7.5 + parent: 4812 + type: Transform +- proto: VendingMachineJaniDrobe + entities: + - uid: 1480 + components: + - flags: SessionSpecific + type: MetaData + - pos: -20.5,-9.5 + parent: 4812 + type: Transform +- proto: VendingMachineLawDrobe + entities: + - uid: 8275 + components: + - flags: SessionSpecific + type: MetaData + - pos: -16.5,17.5 + parent: 4812 + type: Transform +- proto: VendingMachineMedical + entities: + - uid: 7188 + components: + - flags: SessionSpecific + type: MetaData + - pos: -8.5,-28.5 + parent: 4812 + type: Transform +- proto: VendingMachineMediDrobe + entities: + - uid: 7399 + components: + - flags: SessionSpecific + type: MetaData + - pos: -8.5,-25.5 + parent: 4812 + type: Transform +- proto: VendingMachineNutri + entities: + - uid: 1092 + components: + - flags: SessionSpecific + type: MetaData + - pos: -7.5,-5.5 + parent: 4812 + type: Transform + - uid: 11785 + components: + - flags: SessionSpecific + type: MetaData + - pos: 25.5,-32.5 + parent: 4812 + type: Transform +- proto: VendingMachineRoboDrobe + entities: + - uid: 6223 + components: + - flags: SessionSpecific + type: MetaData + - pos: 11.5,-26.5 + parent: 4812 + type: Transform +- proto: VendingMachineRobotics + entities: + - uid: 737 + components: + - flags: SessionSpecific + type: MetaData + - pos: 4.5,-23.5 + parent: 4812 + type: Transform +- proto: VendingMachineSalvage + entities: + - uid: 3434 + components: + - flags: SessionSpecific + name: Salvage Equipment + type: MetaData + - pos: 23.5,16.5 + parent: 4812 + type: Transform +- proto: VendingMachineSciDrobe + entities: + - uid: 5513 + components: + - flags: SessionSpecific + type: MetaData + - pos: 25.5,-26.5 + parent: 4812 + type: Transform +- proto: VendingMachineSec + entities: + - uid: 8342 + components: + - flags: SessionSpecific + type: MetaData + - pos: -31.5,13.5 + parent: 4812 + type: Transform + - uid: 8420 + components: + - flags: SessionSpecific + type: MetaData + - pos: -36.5,12.5 + parent: 4812 + type: Transform +- proto: VendingMachineSecDrobe + entities: + - uid: 6439 + components: + - flags: SessionSpecific + type: MetaData + - pos: -3.5,-29.5 + parent: 4812 + type: Transform + - uid: 12506 + components: + - flags: SessionSpecific + type: MetaData + - pos: -34.5,10.5 + parent: 4812 + type: Transform +- proto: VendingMachineSeeds + entities: + - uid: 1091 + components: + - flags: SessionSpecific + type: MetaData + - pos: -8.5,-5.5 + parent: 4812 + type: Transform +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 6240 + components: + - flags: SessionSpecific + type: MetaData + - pos: -29.5,32.5 + parent: 4812 + type: Transform +- proto: VendingMachineSmartFridge + entities: + - uid: 933 + components: + - flags: SessionSpecific + type: MetaData + - pos: -6.5,-7.5 + parent: 4812 + type: Transform + - uid: 7186 + components: + - flags: SessionSpecific + type: MetaData + - pos: -18.5,-26.5 + parent: 4812 + type: Transform + - uid: 9020 + components: + - flags: SessionSpecific + type: MetaData + - pos: -40.5,-33.5 + parent: 4812 + type: Transform + - uid: 11100 + components: + - flags: SessionSpecific + type: MetaData + - pos: 10.5,-43.5 + parent: 4812 + type: Transform +- proto: VendingMachineSnack + entities: + - uid: 920 + components: + - flags: SessionSpecific + type: MetaData + - pos: 0.5,-7.5 + parent: 4812 + type: Transform + - uid: 4530 + components: + - flags: SessionSpecific + type: MetaData + - pos: 13.5,1.5 + parent: 4812 + type: Transform + - uid: 5060 + components: + - flags: SessionSpecific + type: MetaData + - pos: -9.5,-45.5 + parent: 4812 + type: Transform +- proto: VendingMachineSovietSoda + entities: + - uid: 11780 + components: + - flags: SessionSpecific + type: MetaData + - pos: 29.5,-32.5 + parent: 4812 + type: Transform +- proto: VendingMachineSustenance + entities: + - uid: 6165 + components: + - flags: SessionSpecific + type: MetaData + - pos: -28.5,32.5 + parent: 4812 + type: Transform +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 739 + components: + - flags: SessionSpecific + name: tank dispenser + type: MetaData + - pos: 7.5,15.5 + parent: 4812 + type: Transform + - uid: 9577 + components: + - flags: SessionSpecific + name: tank dispenser + type: MetaData + - pos: -31.5,1.5 + parent: 4812 + type: Transform +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 732 + components: + - flags: SessionSpecific + type: MetaData + - pos: 9.5,14.5 + parent: 4812 + type: Transform + - uid: 6312 + components: + - flags: SessionSpecific + name: tank dispenser + type: MetaData + - pos: 26.5,-26.5 + parent: 4812 + type: Transform + - uid: 10708 + components: + - flags: SessionSpecific + name: tank dispenser + type: MetaData + - pos: -35.5,-9.5 + parent: 4812 + type: Transform + - uid: 12113 + components: + - flags: SessionSpecific + name: tank dispenser + type: MetaData + - pos: -42.5,-3.5 + parent: 4812 + type: Transform +- proto: VendingMachineTheater + entities: + - uid: 1692 + components: + - flags: SessionSpecific + type: MetaData + - pos: -7.5,1.5 + parent: 4812 + type: Transform + - uid: 9045 + components: + - flags: SessionSpecific + type: MetaData + - pos: -26.5,-39.5 + parent: 4812 + type: Transform +- proto: VendingMachineVendomat + entities: + - uid: 8578 + components: + - flags: SessionSpecific + type: MetaData + - pos: -18.5,7.5 + parent: 4812 + type: Transform +- proto: VendingMachineViroDrobe + entities: + - uid: 8871 + components: + - flags: SessionSpecific + type: MetaData + - pos: -37.5,-33.5 + parent: 4812 + type: Transform +- proto: VendingMachineYouTool + entities: + - uid: 8577 + components: + - flags: SessionSpecific + type: MetaData + - pos: -19.5,7.5 + parent: 4812 + type: Transform + - uid: 9723 + components: + - flags: SessionSpecific + type: MetaData + - pos: -32.5,-5.5 + parent: 4812 + type: Transform +- proto: ViolinInstrument + entities: + - uid: 1756 + components: + - pos: -10.433632,4.545351 + parent: 4812 + type: Transform +- proto: WallmountGeneratorAPUElectronics + entities: + - uid: 10960 + components: + - pos: -37.468086,26.400969 + parent: 4812 + type: Transform +- proto: WallmountSubstationElectronics + entities: + - uid: 10978 + components: + - pos: -37.343086,26.182219 + parent: 4812 + type: Transform +- proto: WallmountTelescreen + entities: + - uid: 3422 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,24.5 + parent: 4812 + type: Transform + - uid: 3775 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-16.5 + parent: 4812 + type: Transform +- proto: WallReinforced + entities: + - uid: 32 + components: + - pos: -6.5,15.5 + parent: 4812 + type: Transform + - uid: 35 + components: + - pos: 1.5,15.5 + parent: 4812 + type: Transform + - uid: 122 + components: + - pos: -9.5,18.5 + parent: 4812 + type: Transform + - uid: 123 + components: + - pos: -6.5,18.5 + parent: 4812 + type: Transform + - uid: 124 + components: + - pos: -9.5,15.5 + parent: 4812 + type: Transform + - uid: 125 + components: + - pos: 1.5,18.5 + parent: 4812 + type: Transform + - uid: 126 + components: + - pos: 4.5,18.5 + parent: 4812 + type: Transform + - uid: 127 + components: + - pos: 4.5,15.5 + parent: 4812 + type: Transform + - uid: 138 + components: + - pos: 10.5,18.5 + parent: 4812 + type: Transform + - uid: 160 + components: + - pos: -10.5,18.5 + parent: 4812 + type: Transform + - uid: 170 + components: + - pos: 10.5,17.5 + parent: 4812 + type: Transform + - uid: 171 + components: + - pos: 10.5,16.5 + parent: 4812 + type: Transform + - uid: 172 + components: + - pos: 10.5,15.5 + parent: 4812 + type: Transform + - uid: 173 + components: + - pos: 10.5,14.5 + parent: 4812 + type: Transform + - uid: 174 + components: + - pos: 10.5,13.5 + parent: 4812 + type: Transform + - uid: 176 + components: + - pos: -15.5,18.5 + parent: 4812 + type: Transform + - uid: 297 + components: + - pos: -15.5,17.5 + parent: 4812 + type: Transform + - uid: 298 + components: + - pos: -15.5,16.5 + parent: 4812 + type: Transform + - uid: 299 + components: + - pos: -15.5,15.5 + parent: 4812 + type: Transform + - uid: 300 + components: + - pos: -15.5,14.5 + parent: 4812 + type: Transform + - uid: 301 + components: + - pos: -9.5,14.5 + parent: 4812 + type: Transform + - uid: 302 + components: + - pos: -10.5,14.5 + parent: 4812 + type: Transform + - uid: 303 + components: + - pos: -11.5,14.5 + parent: 4812 + type: Transform + - uid: 304 + components: + - pos: -12.5,14.5 + parent: 4812 + type: Transform + - uid: 305 + components: + - pos: -13.5,14.5 + parent: 4812 + type: Transform + - uid: 306 + components: + - pos: -14.5,14.5 + parent: 4812 + type: Transform + - uid: 721 + components: + - pos: 4.5,14.5 + parent: 4812 + type: Transform + - uid: 722 + components: + - pos: 4.5,13.5 + parent: 4812 + type: Transform + - uid: 724 + components: + - pos: 9.5,13.5 + parent: 4812 + type: Transform + - uid: 725 + components: + - pos: 5.5,13.5 + parent: 4812 + type: Transform + - uid: 726 + components: + - pos: 8.5,13.5 + parent: 4812 + type: Transform + - uid: 727 + components: + - pos: 7.5,13.5 + parent: 4812 + type: Transform + - uid: 728 + components: + - pos: 6.5,13.5 + parent: 4812 + type: Transform + - uid: 772 + components: + - pos: -12.5,18.5 + parent: 4812 + type: Transform + - uid: 773 + components: + - pos: -14.5,18.5 + parent: 4812 + type: Transform + - uid: 1819 + components: + - pos: -3.5,21.5 + parent: 4812 + type: Transform + - uid: 1820 + components: + - pos: -4.5,21.5 + parent: 4812 + type: Transform + - uid: 1821 + components: + - pos: -5.5,21.5 + parent: 4812 + type: Transform + - uid: 1822 + components: + - pos: -6.5,21.5 + parent: 4812 + type: Transform + - uid: 1823 + components: + - pos: -6.5,22.5 + parent: 4812 + type: Transform + - uid: 1824 + components: + - pos: -6.5,23.5 + parent: 4812 + type: Transform + - uid: 1825 + components: + - pos: -6.5,24.5 + parent: 4812 + type: Transform + - uid: 1826 + components: + - pos: -6.5,25.5 + parent: 4812 + type: Transform + - uid: 1827 + components: + - pos: -6.5,26.5 + parent: 4812 + type: Transform + - uid: 1828 + components: + - pos: -6.5,27.5 + parent: 4812 + type: Transform + - uid: 1829 + components: + - pos: -1.5,21.5 + parent: 4812 + type: Transform + - uid: 1830 + components: + - pos: -0.5,21.5 + parent: 4812 + type: Transform + - uid: 1831 + components: + - pos: 0.5,21.5 + parent: 4812 + type: Transform + - uid: 1832 + components: + - pos: 1.5,21.5 + parent: 4812 + type: Transform + - uid: 1833 + components: + - pos: 1.5,22.5 + parent: 4812 + type: Transform + - uid: 1834 + components: + - pos: 1.5,23.5 + parent: 4812 + type: Transform + - uid: 1836 + components: + - pos: 1.5,25.5 + parent: 4812 + type: Transform + - uid: 1837 + components: + - pos: 1.5,26.5 + parent: 4812 + type: Transform + - uid: 1838 + components: + - pos: 1.5,27.5 + parent: 4812 + type: Transform + - uid: 1839 + components: + - pos: 0.5,27.5 + parent: 4812 + type: Transform + - uid: 1840 + components: + - pos: -1.5,27.5 + parent: 4812 + type: Transform + - uid: 1841 + components: + - pos: -3.5,27.5 + parent: 4812 + type: Transform + - uid: 1842 + components: + - pos: -5.5,27.5 + parent: 4812 + type: Transform + - uid: 1857 + components: + - pos: -6.5,31.5 + parent: 4812 + type: Transform + - uid: 1859 + components: + - pos: 1.5,31.5 + parent: 4812 + type: Transform + - uid: 1861 + components: + - pos: -9.5,31.5 + parent: 4812 + type: Transform + - uid: 1862 + components: + - pos: 4.5,31.5 + parent: 4812 + type: Transform + - uid: 1863 + components: + - pos: 4.5,33.5 + parent: 4812 + type: Transform + - uid: 1864 + components: + - pos: -9.5,33.5 + parent: 4812 + type: Transform + - uid: 1865 + components: + - pos: -7.5,35.5 + parent: 4812 + type: Transform + - uid: 1866 + components: + - pos: 2.5,35.5 + parent: 4812 + type: Transform + - uid: 1867 + components: + - pos: -4.5,36.5 + parent: 4812 + type: Transform + - uid: 1868 + components: + - pos: -0.5,36.5 + parent: 4812 + type: Transform + - uid: 1885 + components: + - pos: 5.5,33.5 + parent: 4812 + type: Transform + - uid: 1886 + components: + - pos: 7.5,33.5 + parent: 4812 + type: Transform + - uid: 1887 + components: + - pos: 7.5,32.5 + parent: 4812 + type: Transform + - uid: 1888 + components: + - pos: 7.5,31.5 + parent: 4812 + type: Transform + - uid: 1889 + components: + - pos: 7.5,30.5 + parent: 4812 + type: Transform + - uid: 1890 + components: + - pos: 6.5,30.5 + parent: 4812 + type: Transform + - uid: 1891 + components: + - pos: 5.5,30.5 + parent: 4812 + type: Transform + - uid: 1892 + components: + - pos: 4.5,30.5 + parent: 4812 + type: Transform + - uid: 1893 + components: + - pos: 4.5,21.5 + parent: 4812 + type: Transform + - uid: 1894 + components: + - pos: 4.5,22.5 + parent: 4812 + type: Transform + - uid: 1895 + components: + - pos: 4.5,23.5 + parent: 4812 + type: Transform + - uid: 1896 + components: + - pos: 11.5,21.5 + parent: 4812 + type: Transform + - uid: 1899 + components: + - pos: 4.5,27.5 + parent: 4812 + type: Transform + - uid: 1900 + components: + - pos: 4.5,28.5 + parent: 4812 + type: Transform + - uid: 1901 + components: + - pos: 4.5,29.5 + parent: 4812 + type: Transform + - uid: 1903 + components: + - pos: 11.5,22.5 + parent: 4812 + type: Transform + - uid: 1904 + components: + - pos: 11.5,23.5 + parent: 4812 + type: Transform + - uid: 1905 + components: + - pos: 11.5,24.5 + parent: 4812 + type: Transform + - uid: 1906 + components: + - pos: 11.5,25.5 + parent: 4812 + type: Transform + - uid: 1907 + components: + - pos: 11.5,26.5 + parent: 4812 + type: Transform + - uid: 1908 + components: + - pos: 11.5,27.5 + parent: 4812 + type: Transform + - uid: 1909 + components: + - pos: 11.5,28.5 + parent: 4812 + type: Transform + - uid: 1910 + components: + - pos: 11.5,29.5 + parent: 4812 + type: Transform + - uid: 1911 + components: + - pos: 11.5,30.5 + parent: 4812 + type: Transform + - uid: 1912 + components: + - pos: 11.5,31.5 + parent: 4812 + type: Transform + - uid: 1913 + components: + - pos: 10.5,31.5 + parent: 4812 + type: Transform + - uid: 1914 + components: + - pos: 9.5,31.5 + parent: 4812 + type: Transform + - uid: 1915 + components: + - pos: 9.5,30.5 + parent: 4812 + type: Transform + - uid: 1916 + components: + - pos: 8.5,30.5 + parent: 4812 + type: Transform + - uid: 1920 + components: + - pos: 5.5,23.5 + parent: 4812 + type: Transform + - uid: 1921 + components: + - pos: 10.5,23.5 + parent: 4812 + type: Transform + - uid: 1922 + components: + - pos: 7.5,23.5 + parent: 4812 + type: Transform + - uid: 1923 + components: + - pos: 10.5,21.5 + parent: 4812 + type: Transform + - uid: 1946 + components: + - pos: -9.5,25.5 + parent: 4812 + type: Transform + - uid: 1947 + components: + - pos: -9.5,26.5 + parent: 4812 + type: Transform + - uid: 1948 + components: + - pos: -9.5,21.5 + parent: 4812 + type: Transform + - uid: 1949 + components: + - pos: -10.5,21.5 + parent: 4812 + type: Transform + - uid: 1950 + components: + - pos: -11.5,21.5 + parent: 4812 + type: Transform + - uid: 1951 + components: + - pos: -12.5,21.5 + parent: 4812 + type: Transform + - uid: 1954 + components: + - pos: -15.5,21.5 + parent: 4812 + type: Transform + - uid: 1955 + components: + - pos: -16.5,21.5 + parent: 4812 + type: Transform + - uid: 1956 + components: + - pos: -9.5,30.5 + parent: 4812 + type: Transform + - uid: 1957 + components: + - pos: -10.5,30.5 + parent: 4812 + type: Transform + - uid: 1958 + components: + - pos: -13.5,30.5 + parent: 4812 + type: Transform + - uid: 1959 + components: + - pos: -14.5,30.5 + parent: 4812 + type: Transform + - uid: 1960 + components: + - pos: -15.5,30.5 + parent: 4812 + type: Transform + - uid: 1961 + components: + - pos: -16.5,30.5 + parent: 4812 + type: Transform + - uid: 1967 + components: + - pos: -9.5,27.5 + parent: 4812 + type: Transform + - uid: 1968 + components: + - pos: -9.5,28.5 + parent: 4812 + type: Transform + - uid: 1969 + components: + - pos: -9.5,29.5 + parent: 4812 + type: Transform + - uid: 1970 + components: + - pos: -16.5,29.5 + parent: 4812 + type: Transform + - uid: 1971 + components: + - pos: -16.5,28.5 + parent: 4812 + type: Transform + - uid: 1972 + components: + - pos: -16.5,27.5 + parent: 4812 + type: Transform + - uid: 1973 + components: + - pos: -16.5,26.5 + parent: 4812 + type: Transform + - uid: 1974 + components: + - pos: -16.5,25.5 + parent: 4812 + type: Transform + - uid: 1976 + components: + - pos: -16.5,23.5 + parent: 4812 + type: Transform + - uid: 1977 + components: + - pos: -16.5,22.5 + parent: 4812 + type: Transform + - uid: 2075 + components: + - pos: 1.5,24.5 + parent: 4812 + type: Transform + - uid: 2609 + components: + - pos: -13.5,21.5 + parent: 4812 + type: Transform + - uid: 2612 + components: + - pos: -14.5,21.5 + parent: 4812 + type: Transform + - uid: 2746 + components: + - pos: 17.5,36.5 + parent: 4812 + type: Transform + - uid: 2747 + components: + - pos: 14.5,28.5 + parent: 4812 + type: Transform + - uid: 2748 + components: + - pos: 14.5,29.5 + parent: 4812 + type: Transform + - uid: 2749 + components: + - pos: 14.5,30.5 + parent: 4812 + type: Transform + - uid: 2750 + components: + - pos: 14.5,31.5 + parent: 4812 + type: Transform + - uid: 2753 + components: + - pos: 13.5,33.5 + parent: 4812 + type: Transform + - uid: 2755 + components: + - pos: 21.5,23.5 + parent: 4812 + type: Transform + - uid: 2756 + components: + - pos: 15.5,36.5 + parent: 4812 + type: Transform + - uid: 2757 + components: + - pos: 11.5,32.5 + parent: 4812 + type: Transform + - uid: 2758 + components: + - pos: 11.5,33.5 + parent: 4812 + type: Transform + - uid: 2766 + components: + - pos: 14.5,32.5 + parent: 4812 + type: Transform + - uid: 2767 + components: + - pos: 14.5,35.5 + parent: 4812 + type: Transform + - uid: 2769 + components: + - pos: 18.5,32.5 + parent: 4812 + type: Transform + - uid: 2774 + components: + - pos: 21.5,29.5 + parent: 4812 + type: Transform + - uid: 2778 + components: + - pos: 20.5,34.5 + parent: 4812 + type: Transform + - uid: 2820 + components: + - pos: 20.5,33.5 + parent: 4812 + type: Transform + - uid: 2822 + components: + - pos: 20.5,22.5 + parent: 4812 + type: Transform + - uid: 2824 + components: + - pos: 18.5,28.5 + parent: 4812 + type: Transform + - uid: 2825 + components: + - pos: 18.5,29.5 + parent: 4812 + type: Transform + - uid: 2828 + components: + - pos: 17.5,28.5 + parent: 4812 + type: Transform + - uid: 2829 + components: + - pos: 21.5,20.5 + parent: 4812 + type: Transform + - uid: 2830 + components: + - pos: 21.5,18.5 + parent: 4812 + type: Transform + - uid: 2831 + components: + - pos: 21.5,17.5 + parent: 4812 + type: Transform + - uid: 2841 + components: + - pos: 20.5,35.5 + parent: 4812 + type: Transform + - uid: 2896 + components: + - pos: 25.5,12.5 + parent: 4812 + type: Transform + - uid: 2897 + components: + - pos: 25.5,11.5 + parent: 4812 + type: Transform + - uid: 2898 + components: + - pos: 24.5,11.5 + parent: 4812 + type: Transform + - uid: 2899 + components: + - pos: 23.5,11.5 + parent: 4812 + type: Transform + - uid: 2900 + components: + - pos: 22.5,11.5 + parent: 4812 + type: Transform + - uid: 2901 + components: + - pos: 21.5,11.5 + parent: 4812 + type: Transform + - uid: 2903 + components: + - pos: 25.5,16.5 + parent: 4812 + type: Transform + - uid: 2904 + components: + - pos: 25.5,17.5 + parent: 4812 + type: Transform + - uid: 2905 + components: + - pos: 24.5,17.5 + parent: 4812 + type: Transform + - uid: 2906 + components: + - pos: 22.5,17.5 + parent: 4812 + type: Transform + - uid: 2942 + components: + - pos: 23.5,29.5 + parent: 4812 + type: Transform + - uid: 3006 + components: + - pos: 21.5,22.5 + parent: 4812 + type: Transform + - uid: 3042 + components: + - pos: 23.5,23.5 + parent: 4812 + type: Transform + - uid: 3118 + components: + - pos: 14.5,34.5 + parent: 4812 + type: Transform + - uid: 3150 + components: + - pos: 14.5,33.5 + parent: 4812 + type: Transform + - uid: 3189 + components: + - pos: 14.5,36.5 + parent: 4812 + type: Transform + - uid: 3193 + components: + - pos: 19.5,33.5 + parent: 4812 + type: Transform + - uid: 3212 + components: + - pos: 20.5,9.5 + parent: 4812 + type: Transform + - uid: 3288 + components: + - pos: 21.5,6.5 + parent: 4812 + type: Transform + - uid: 3352 + components: + - pos: 21.5,9.5 + parent: 4812 + type: Transform + - uid: 3355 + components: + - pos: 22.5,9.5 + parent: 4812 + type: Transform + - uid: 3356 + components: + - pos: 23.5,9.5 + parent: 4812 + type: Transform + - uid: 3357 + components: + - pos: 24.5,9.5 + parent: 4812 + type: Transform + - uid: 3391 + components: + - pos: 23.5,6.5 + parent: 4812 + type: Transform + - uid: 3428 + components: + - pos: 20.5,37.5 + parent: 4812 + type: Transform + - uid: 3429 + components: + - pos: 19.5,37.5 + parent: 4812 + type: Transform + - uid: 3430 + components: + - pos: 18.5,36.5 + parent: 4812 + type: Transform + - uid: 3431 + components: + - pos: 20.5,36.5 + parent: 4812 + type: Transform + - uid: 3432 + components: + - pos: 18.5,37.5 + parent: 4812 + type: Transform + - uid: 3436 + components: + - pos: 18.5,33.5 + parent: 4812 + type: Transform + - uid: 3437 + components: + - pos: 13.5,31.5 + parent: 4812 + type: Transform + - uid: 3486 + components: + - pos: 16.5,43.5 + parent: 4812 + type: Transform + - uid: 3487 + components: + - pos: 16.5,44.5 + parent: 4812 + type: Transform + - uid: 3488 + components: + - pos: 16.5,45.5 + parent: 4812 + type: Transform + - uid: 3489 + components: + - pos: 16.5,46.5 + parent: 4812 + type: Transform + - uid: 3490 + components: + - pos: 16.5,47.5 + parent: 4812 + type: Transform + - uid: 3491 + components: + - pos: 16.5,48.5 + parent: 4812 + type: Transform + - uid: 3492 + components: + - pos: 15.5,43.5 + parent: 4812 + type: Transform + - uid: 3493 + components: + - pos: 14.5,43.5 + parent: 4812 + type: Transform + - uid: 3494 + components: + - pos: 13.5,43.5 + parent: 4812 + type: Transform + - uid: 3495 + components: + - pos: 12.5,43.5 + parent: 4812 + type: Transform + - uid: 3496 + components: + - pos: 12.5,42.5 + parent: 4812 + type: Transform + - uid: 3497 + components: + - pos: 11.5,42.5 + parent: 4812 + type: Transform + - uid: 3498 + components: + - pos: 10.5,42.5 + parent: 4812 + type: Transform + - uid: 3499 + components: + - pos: 9.5,42.5 + parent: 4812 + type: Transform + - uid: 3500 + components: + - pos: 8.5,42.5 + parent: 4812 + type: Transform + - uid: 3501 + components: + - pos: 8.5,43.5 + parent: 4812 + type: Transform + - uid: 3502 + components: + - pos: 7.5,43.5 + parent: 4812 + type: Transform + - uid: 3504 + components: + - pos: 5.5,43.5 + parent: 4812 + type: Transform + - uid: 3505 + components: + - pos: 4.5,43.5 + parent: 4812 + type: Transform + - uid: 3506 + components: + - pos: 4.5,44.5 + parent: 4812 + type: Transform + - uid: 3507 + components: + - pos: 4.5,46.5 + parent: 4812 + type: Transform + - uid: 3508 + components: + - pos: 2.5,44.5 + parent: 4812 + type: Transform + - uid: 3509 + components: + - pos: 2.5,45.5 + parent: 4812 + type: Transform + - uid: 3510 + components: + - pos: 2.5,46.5 + parent: 4812 + type: Transform + - uid: 3511 + components: + - pos: 2.5,47.5 + parent: 4812 + type: Transform + - uid: 3512 + components: + - pos: 3.5,47.5 + parent: 4812 + type: Transform + - uid: 3513 + components: + - pos: 4.5,47.5 + parent: 4812 + type: Transform + - uid: 3514 + components: + - pos: 4.5,48.5 + parent: 4812 + type: Transform + - uid: 3515 + components: + - pos: 5.5,48.5 + parent: 4812 + type: Transform + - uid: 3516 + components: + - pos: 5.5,49.5 + parent: 4812 + type: Transform + - uid: 3517 + components: + - pos: 5.5,50.5 + parent: 4812 + type: Transform + - uid: 3518 + components: + - pos: 5.5,51.5 + parent: 4812 + type: Transform + - uid: 3519 + components: + - pos: 5.5,52.5 + parent: 4812 + type: Transform + - uid: 3520 + components: + - pos: 5.5,53.5 + parent: 4812 + type: Transform + - uid: 3521 + components: + - pos: 5.5,54.5 + parent: 4812 + type: Transform + - uid: 3522 + components: + - pos: 5.5,55.5 + parent: 4812 + type: Transform + - uid: 3523 + components: + - pos: 6.5,55.5 + parent: 4812 + type: Transform + - uid: 3524 + components: + - pos: 6.5,56.5 + parent: 4812 + type: Transform + - uid: 3525 + components: + - pos: 7.5,56.5 + parent: 4812 + type: Transform + - uid: 3526 + components: + - pos: 7.5,57.5 + parent: 4812 + type: Transform + - uid: 3527 + components: + - pos: 8.5,57.5 + parent: 4812 + type: Transform + - uid: 3528 + components: + - pos: 8.5,58.5 + parent: 4812 + type: Transform + - uid: 3529 + components: + - pos: 9.5,58.5 + parent: 4812 + type: Transform + - uid: 3530 + components: + - pos: 10.5,58.5 + parent: 4812 + type: Transform + - uid: 3531 + components: + - pos: 11.5,58.5 + parent: 4812 + type: Transform + - uid: 3532 + components: + - pos: 12.5,58.5 + parent: 4812 + type: Transform + - uid: 3533 + components: + - pos: 12.5,57.5 + parent: 4812 + type: Transform + - uid: 3534 + components: + - pos: 13.5,57.5 + parent: 4812 + type: Transform + - uid: 3535 + components: + - pos: 13.5,56.5 + parent: 4812 + type: Transform + - uid: 3536 + components: + - pos: 14.5,56.5 + parent: 4812 + type: Transform + - uid: 3537 + components: + - pos: 15.5,55.5 + parent: 4812 + type: Transform + - uid: 3538 + components: + - pos: 15.5,55.5 + parent: 4812 + type: Transform + - uid: 3539 + components: + - pos: 14.5,55.5 + parent: 4812 + type: Transform + - uid: 3540 + components: + - pos: 15.5,54.5 + parent: 4812 + type: Transform + - uid: 3541 + components: + - pos: 15.5,53.5 + parent: 4812 + type: Transform + - uid: 3542 + components: + - pos: 15.5,52.5 + parent: 4812 + type: Transform + - uid: 3543 + components: + - pos: 15.5,51.5 + parent: 4812 + type: Transform + - uid: 3544 + components: + - pos: 15.5,50.5 + parent: 4812 + type: Transform + - uid: 3545 + components: + - pos: 15.5,49.5 + parent: 4812 + type: Transform + - uid: 3546 + components: + - pos: 15.5,48.5 + parent: 4812 + type: Transform + - uid: 3547 + components: + - pos: 9.5,57.5 + parent: 4812 + type: Transform + - uid: 3548 + components: + - pos: 10.5,57.5 + parent: 4812 + type: Transform + - uid: 3549 + components: + - pos: 11.5,57.5 + parent: 4812 + type: Transform + - uid: 3550 + components: + - pos: 8.5,56.5 + parent: 4812 + type: Transform + - uid: 3551 + components: + - pos: 12.5,56.5 + parent: 4812 + type: Transform + - uid: 3552 + components: + - pos: 14.5,48.5 + parent: 4812 + type: Transform + - uid: 3553 + components: + - pos: 13.5,48.5 + parent: 4812 + type: Transform + - uid: 3554 + components: + - pos: 6.5,48.5 + parent: 4812 + type: Transform + - uid: 3555 + components: + - pos: 7.5,48.5 + parent: 4812 + type: Transform + - uid: 3556 + components: + - pos: 8.5,48.5 + parent: 4812 + type: Transform + - uid: 3557 + components: + - pos: 12.5,48.5 + parent: 4812 + type: Transform + - uid: 3558 + components: + - pos: 8.5,47.5 + parent: 4812 + type: Transform + - uid: 3559 + components: + - pos: 9.5,47.5 + parent: 4812 + type: Transform + - uid: 3560 + components: + - pos: 8.5,44.5 + parent: 4812 + type: Transform + - uid: 3561 + components: + - pos: 8.5,46.5 + parent: 4812 + type: Transform + - uid: 3562 + components: + - pos: 12.5,47.5 + parent: 4812 + type: Transform + - uid: 3563 + components: + - pos: 12.5,46.5 + parent: 4812 + type: Transform + - uid: 3564 + components: + - pos: 12.5,44.5 + parent: 4812 + type: Transform + - uid: 3565 + components: + - pos: 11.5,47.5 + parent: 4812 + type: Transform + - uid: 3566 + components: + - pos: 6.5,49.5 + parent: 4812 + type: Transform + - uid: 3567 + components: + - pos: 6.5,50.5 + parent: 4812 + type: Transform + - uid: 3568 + components: + - pos: 6.5,51.5 + parent: 4812 + type: Transform + - uid: 3569 + components: + - pos: 6.5,52.5 + parent: 4812 + type: Transform + - uid: 3570 + components: + - pos: 6.5,53.5 + parent: 4812 + type: Transform + - uid: 3571 + components: + - pos: 6.5,54.5 + parent: 4812 + type: Transform + - uid: 3572 + components: + - pos: 14.5,54.5 + parent: 4812 + type: Transform + - uid: 3573 + components: + - pos: 14.5,53.5 + parent: 4812 + type: Transform + - uid: 3574 + components: + - pos: 14.5,52.5 + parent: 4812 + type: Transform + - uid: 3575 + components: + - pos: 14.5,51.5 + parent: 4812 + type: Transform + - uid: 3576 + components: + - pos: 14.5,50.5 + parent: 4812 + type: Transform + - uid: 3577 + components: + - pos: 14.5,49.5 + parent: 4812 + type: Transform + - uid: 3691 + components: + - pos: 9.5,54.5 + parent: 4812 + type: Transform + - uid: 3692 + components: + - pos: 11.5,54.5 + parent: 4812 + type: Transform + - uid: 3693 + components: + - pos: 9.5,52.5 + parent: 4812 + type: Transform + - uid: 3694 + components: + - pos: 9.5,51.5 + parent: 4812 + type: Transform + - uid: 3695 + components: + - pos: 10.5,51.5 + parent: 4812 + type: Transform + - uid: 3696 + components: + - pos: 11.5,51.5 + parent: 4812 + type: Transform + - uid: 3697 + components: + - pos: 11.5,52.5 + parent: 4812 + type: Transform + - uid: 3717 + components: + - pos: 21.5,3.5 + parent: 4812 + type: Transform + - uid: 3718 + components: + - pos: 20.5,3.5 + parent: 4812 + type: Transform + - uid: 3719 + components: + - pos: 20.5,4.5 + parent: 4812 + type: Transform + - uid: 3720 + components: + - pos: 20.5,5.5 + parent: 4812 + type: Transform + - uid: 3721 + components: + - pos: 21.5,2.5 + parent: 4812 + type: Transform + - uid: 3722 + components: + - pos: 20.5,7.5 + parent: 4812 + type: Transform + - uid: 3723 + components: + - pos: 26.5,2.5 + parent: 4812 + type: Transform + - uid: 3724 + components: + - pos: 26.5,3.5 + parent: 4812 + type: Transform + - uid: 3725 + components: + - pos: 26.5,4.5 + parent: 4812 + type: Transform + - uid: 3727 + components: + - pos: 25.5,2.5 + parent: 4812 + type: Transform + - uid: 3728 + components: + - pos: 20.5,8.5 + parent: 4812 + type: Transform + - uid: 3729 + components: + - pos: 20.5,6.5 + parent: 4812 + type: Transform + - uid: 3730 + components: + - pos: 23.5,2.5 + parent: 4812 + type: Transform + - uid: 3731 + components: + - pos: 22.5,2.5 + parent: 4812 + type: Transform + - uid: 3990 + components: + - pos: 24.5,8.5 + parent: 4812 + type: Transform + - uid: 3991 + components: + - pos: 24.5,7.5 + parent: 4812 + type: Transform + - uid: 3992 + components: + - pos: 24.5,6.5 + parent: 4812 + type: Transform + - uid: 3993 + components: + - pos: 24.5,5.5 + parent: 4812 + type: Transform + - uid: 3994 + components: + - pos: 25.5,5.5 + parent: 4812 + type: Transform + - uid: 3995 + components: + - pos: 26.5,5.5 + parent: 4812 + type: Transform + - uid: 3996 + components: + - pos: 32.5,5.5 + parent: 4812 + type: Transform + - uid: 3997 + components: + - pos: 31.5,5.5 + parent: 4812 + type: Transform + - uid: 3998 + components: + - pos: 30.5,5.5 + parent: 4812 + type: Transform + - uid: 3999 + components: + - pos: 29.5,5.5 + parent: 4812 + type: Transform + - uid: 4000 + components: + - pos: 28.5,5.5 + parent: 4812 + type: Transform + - uid: 4001 + components: + - pos: 27.5,5.5 + parent: 4812 + type: Transform + - uid: 4081 + components: + - pos: 17.5,-4.5 + parent: 4812 + type: Transform + - uid: 4082 + components: + - pos: 19.5,-4.5 + parent: 4812 + type: Transform + - uid: 4083 + components: + - pos: 20.5,-4.5 + parent: 4812 + type: Transform + - uid: 4084 + components: + - pos: 20.5,-5.5 + parent: 4812 + type: Transform + - uid: 4085 + components: + - pos: 16.5,-5.5 + parent: 4812 + type: Transform + - uid: 4086 + components: + - pos: 16.5,-4.5 + parent: 4812 + type: Transform + - uid: 4087 + components: + - pos: 32.5,-10.5 + parent: 4812 + type: Transform + - uid: 4088 + components: + - pos: 31.5,-10.5 + parent: 4812 + type: Transform + - uid: 4089 + components: + - pos: 30.5,-10.5 + parent: 4812 + type: Transform + - uid: 4090 + components: + - pos: 29.5,-10.5 + parent: 4812 + type: Transform + - uid: 4091 + components: + - pos: 28.5,-10.5 + parent: 4812 + type: Transform + - uid: 4092 + components: + - pos: 26.5,-10.5 + parent: 4812 + type: Transform + - uid: 4093 + components: + - pos: 26.5,-9.5 + parent: 4812 + type: Transform + - uid: 4094 + components: + - pos: 26.5,-8.5 + parent: 4812 + type: Transform + - uid: 4095 + components: + - pos: 25.5,-8.5 + parent: 4812 + type: Transform + - uid: 4096 + components: + - pos: 24.5,-8.5 + parent: 4812 + type: Transform + - uid: 4097 + components: + - pos: 23.5,-8.5 + parent: 4812 + type: Transform + - uid: 4098 + components: + - pos: 22.5,-8.5 + parent: 4812 + type: Transform + - uid: 4101 + components: + - pos: 20.5,-8.5 + parent: 4812 + type: Transform + - uid: 4102 + components: + - pos: 21.5,-8.5 + parent: 4812 + type: Transform + - uid: 4103 + components: + - pos: 16.5,-8.5 + parent: 4812 + type: Transform + - uid: 4104 + components: + - pos: 15.5,-8.5 + parent: 4812 + type: Transform + - uid: 4105 + components: + - pos: 14.5,-8.5 + parent: 4812 + type: Transform + - uid: 4106 + components: + - pos: 14.5,-9.5 + parent: 4812 + type: Transform + - uid: 4107 + components: + - pos: 14.5,-10.5 + parent: 4812 + type: Transform + - uid: 4108 + components: + - pos: 20.5,-6.5 + parent: 4812 + type: Transform + - uid: 4109 + components: + - pos: 16.5,-6.5 + parent: 4812 + type: Transform + - uid: 4638 + components: + - pos: -7.5,-36.5 + parent: 4812 + type: Transform + - uid: 4639 + components: + - pos: -6.5,-36.5 + parent: 4812 + type: Transform + - uid: 4640 + components: + - pos: 1.5,-36.5 + parent: 4812 + type: Transform + - uid: 4641 + components: + - pos: 2.5,-36.5 + parent: 4812 + type: Transform + - uid: 4642 + components: + - pos: 3.5,-36.5 + parent: 4812 + type: Transform + - uid: 4643 + components: + - pos: -9.5,-36.5 + parent: 4812 + type: Transform + - uid: 4681 + components: + - pos: -9.5,-40.5 + parent: 4812 + type: Transform + - uid: 4685 + components: + - pos: -9.5,-53.5 + parent: 4812 + type: Transform + - uid: 4686 + components: + - pos: -12.5,-53.5 + parent: 4812 + type: Transform + - uid: 4693 + components: + - pos: -12.5,-39.5 + parent: 4812 + type: Transform + - uid: 4694 + components: + - pos: -12.5,-37.5 + parent: 4812 + type: Transform + - uid: 4696 + components: + - pos: -12.5,-40.5 + parent: 4812 + type: Transform + - uid: 4789 + components: + - pos: -9.5,-29.5 + parent: 4812 + type: Transform + - uid: 4790 + components: + - pos: -8.5,-29.5 + parent: 4812 + type: Transform + - uid: 4791 + components: + - pos: -9.5,-30.5 + parent: 4812 + type: Transform + - uid: 4792 + components: + - pos: -9.5,-31.5 + parent: 4812 + type: Transform + - uid: 4828 + components: + - pos: -33.5,23.5 + parent: 4812 + type: Transform + - uid: 4829 + components: + - pos: -34.5,23.5 + parent: 4812 + type: Transform + - uid: 4830 + components: + - pos: -35.5,23.5 + parent: 4812 + type: Transform + - uid: 4831 + components: + - pos: -36.5,23.5 + parent: 4812 + type: Transform + - uid: 4832 + components: + - pos: -37.5,23.5 + parent: 4812 + type: Transform + - uid: 4886 + components: + - pos: -38.5,23.5 + parent: 4812 + type: Transform + - uid: 4887 + components: + - pos: -38.5,22.5 + parent: 4812 + type: Transform + - uid: 4898 + components: + - pos: -38.5,21.5 + parent: 4812 + type: Transform + - uid: 4917 + components: + - pos: -23.5,-29.5 + parent: 4812 + type: Transform + - uid: 4936 + components: + - pos: -27.5,-27.5 + parent: 4812 + type: Transform + - uid: 5016 + components: + - pos: -27.5,-24.5 + parent: 4812 + type: Transform + - uid: 5027 + components: + - pos: -38.5,19.5 + parent: 4812 + type: Transform + - uid: 5042 + components: + - pos: -12.5,-59.5 + parent: 4812 + type: Transform + - uid: 5126 + components: + - pos: -38.5,20.5 + parent: 4812 + type: Transform + - uid: 5285 + components: + - pos: -4.5,-24.5 + parent: 4812 + type: Transform + - uid: 5286 + components: + - pos: -4.5,-23.5 + parent: 4812 + type: Transform + - uid: 5287 + components: + - pos: -3.5,-23.5 + parent: 4812 + type: Transform + - uid: 5288 + components: + - pos: -1.5,-23.5 + parent: 4812 + type: Transform + - uid: 5289 + components: + - pos: -0.5,-23.5 + parent: 4812 + type: Transform + - uid: 5290 + components: + - pos: -0.5,-24.5 + parent: 4812 + type: Transform + - uid: 5291 + components: + - pos: -0.5,-25.5 + parent: 4812 + type: Transform + - uid: 5292 + components: + - pos: -0.5,-26.5 + parent: 4812 + type: Transform + - uid: 5293 + components: + - pos: -3.5,-30.5 + parent: 4812 + type: Transform + - uid: 5294 + components: + - pos: -4.5,-30.5 + parent: 4812 + type: Transform + - uid: 5295 + components: + - pos: -4.5,-29.5 + parent: 4812 + type: Transform + - uid: 5296 + components: + - pos: -1.5,-30.5 + parent: 4812 + type: Transform + - uid: 5297 + components: + - pos: -0.5,-30.5 + parent: 4812 + type: Transform + - uid: 5298 + components: + - pos: -0.5,-29.5 + parent: 4812 + type: Transform + - uid: 5299 + components: + - pos: -0.5,-28.5 + parent: 4812 + type: Transform + - uid: 5312 + components: + - pos: 14.5,-13.5 + parent: 4812 + type: Transform + - uid: 5314 + components: + - pos: 21.5,-13.5 + parent: 4812 + type: Transform + - uid: 5316 + components: + - pos: 16.5,-13.5 + parent: 4812 + type: Transform + - uid: 5330 + components: + - pos: 20.5,-13.5 + parent: 4812 + type: Transform + - uid: 5331 + components: + - pos: 21.5,-19.5 + parent: 4812 + type: Transform + - uid: 5332 + components: + - pos: 22.5,-19.5 + parent: 4812 + type: Transform + - uid: 5336 + components: + - pos: 20.5,-19.5 + parent: 4812 + type: Transform + - uid: 5337 + components: + - pos: 19.5,-19.5 + parent: 4812 + type: Transform + - uid: 5395 + components: + - pos: 15.5,-22.5 + parent: 4812 + type: Transform + - uid: 5397 + components: + - pos: 16.5,-22.5 + parent: 4812 + type: Transform + - uid: 5398 + components: + - pos: 15.5,-18.5 + parent: 4812 + type: Transform + - uid: 5400 + components: + - pos: 15.5,-19.5 + parent: 4812 + type: Transform + - uid: 5401 + components: + - pos: 15.5,-17.5 + parent: 4812 + type: Transform + - uid: 5402 + components: + - pos: 15.5,-16.5 + parent: 4812 + type: Transform + - uid: 5403 + components: + - pos: 14.5,-16.5 + parent: 4812 + type: Transform + - uid: 5404 + components: + - pos: 11.5,-16.5 + parent: 4812 + type: Transform + - uid: 5405 + components: + - pos: 13.5,-16.5 + parent: 4812 + type: Transform + - uid: 5406 + components: + - pos: 12.5,-16.5 + parent: 4812 + type: Transform + - uid: 5407 + components: + - pos: 11.5,-13.5 + parent: 4812 + type: Transform + - uid: 5408 + components: + - pos: 11.5,-14.5 + parent: 4812 + type: Transform + - uid: 5409 + components: + - pos: 2.5,-13.5 + parent: 4812 + type: Transform + - uid: 5410 + components: + - pos: 6.5,-13.5 + parent: 4812 + type: Transform + - uid: 5411 + components: + - pos: 8.5,-13.5 + parent: 4812 + type: Transform + - uid: 5412 + components: + - pos: 2.5,-17.5 + parent: 4812 + type: Transform + - uid: 5413 + components: + - pos: 2.5,-19.5 + parent: 4812 + type: Transform + - uid: 5414 + components: + - pos: 2.5,-22.5 + parent: 4812 + type: Transform + - uid: 5432 + components: + - pos: 2.5,-24.5 + parent: 4812 + type: Transform + - uid: 5433 + components: + - pos: 2.5,-28.5 + parent: 4812 + type: Transform + - uid: 5434 + components: + - pos: 2.5,-29.5 + parent: 4812 + type: Transform + - uid: 5435 + components: + - pos: 3.5,-29.5 + parent: 4812 + type: Transform + - uid: 5436 + components: + - pos: 7.5,-29.5 + parent: 4812 + type: Transform + - uid: 5437 + components: + - pos: 6.5,-29.5 + parent: 4812 + type: Transform + - uid: 5438 + components: + - pos: 5.5,-29.5 + parent: 4812 + type: Transform + - uid: 5439 + components: + - pos: 4.5,-29.5 + parent: 4812 + type: Transform + - uid: 5440 + components: + - pos: 11.5,-29.5 + parent: 4812 + type: Transform + - uid: 5441 + components: + - pos: 10.5,-29.5 + parent: 4812 + type: Transform + - uid: 5442 + components: + - pos: 13.5,-29.5 + parent: 4812 + type: Transform + - uid: 5443 + components: + - pos: 14.5,-29.5 + parent: 4812 + type: Transform + - uid: 5444 + components: + - pos: 15.5,-29.5 + parent: 4812 + type: Transform + - uid: 5445 + components: + - pos: 16.5,-29.5 + parent: 4812 + type: Transform + - uid: 5446 + components: + - pos: 17.5,-29.5 + parent: 4812 + type: Transform + - uid: 5447 + components: + - pos: 17.5,-28.5 + parent: 4812 + type: Transform + - uid: 5448 + components: + - pos: 17.5,-27.5 + parent: 4812 + type: Transform + - uid: 5449 + components: + - pos: 17.5,-26.5 + parent: 4812 + type: Transform + - uid: 5450 + components: + - pos: 17.5,-25.5 + parent: 4812 + type: Transform + - uid: 5451 + components: + - pos: 20.5,-26.5 + parent: 4812 + type: Transform + - uid: 5452 + components: + - pos: 17.5,-23.5 + parent: 4812 + type: Transform + - uid: 5453 + components: + - pos: 14.5,-22.5 + parent: 4812 + type: Transform + - uid: 5454 + components: + - pos: 13.5,-22.5 + parent: 4812 + type: Transform + - uid: 5455 + components: + - pos: 12.5,-22.5 + parent: 4812 + type: Transform + - uid: 5456 + components: + - pos: 17.5,-22.5 + parent: 4812 + type: Transform + - uid: 5469 + components: + - pos: 11.5,-17.5 + parent: 4812 + type: Transform + - uid: 5470 + components: + - pos: 11.5,-18.5 + parent: 4812 + type: Transform + - uid: 5471 + components: + - pos: 11.5,-19.5 + parent: 4812 + type: Transform + - uid: 5473 + components: + - pos: 11.5,-22.5 + parent: 4812 + type: Transform + - uid: 5479 + components: + - pos: 19.5,-27.5 + parent: 4812 + type: Transform + - uid: 5480 + components: + - pos: 20.5,-27.5 + parent: 4812 + type: Transform + - uid: 5500 + components: + - pos: 9.5,-29.5 + parent: 4812 + type: Transform + - uid: 5501 + components: + - pos: 19.5,-22.5 + parent: 4812 + type: Transform + - uid: 5502 + components: + - pos: 20.5,-22.5 + parent: 4812 + type: Transform + - uid: 5505 + components: + - pos: 23.5,-21.5 + parent: 4812 + type: Transform + - uid: 5506 + components: + - pos: 24.5,-21.5 + parent: 4812 + type: Transform + - uid: 5510 + components: + - pos: 28.5,-21.5 + parent: 4812 + type: Transform + - uid: 5511 + components: + - pos: 23.5,-19.5 + parent: 4812 + type: Transform + - uid: 5512 + components: + - pos: 21.5,-27.5 + parent: 4812 + type: Transform + - uid: 5515 + components: + - pos: 24.5,-27.5 + parent: 4812 + type: Transform + - uid: 5516 + components: + - pos: 25.5,-27.5 + parent: 4812 + type: Transform + - uid: 5517 + components: + - pos: 26.5,-27.5 + parent: 4812 + type: Transform + - uid: 5518 + components: + - pos: 26.5,-28.5 + parent: 4812 + type: Transform + - uid: 5519 + components: + - pos: 24.5,-28.5 + parent: 4812 + type: Transform + - uid: 5520 + components: + - pos: 24.5,-30.5 + parent: 4812 + type: Transform + - uid: 5521 + components: + - pos: 26.5,-30.5 + parent: 4812 + type: Transform + - uid: 5522 + components: + - pos: 26.5,-31.5 + parent: 4812 + type: Transform + - uid: 5523 + components: + - pos: 25.5,-31.5 + parent: 4812 + type: Transform + - uid: 5524 + components: + - pos: 24.5,-31.5 + parent: 4812 + type: Transform + - uid: 5525 + components: + - pos: 23.5,-31.5 + parent: 4812 + type: Transform + - uid: 5526 + components: + - pos: 22.5,-31.5 + parent: 4812 + type: Transform + - uid: 5527 + components: + - pos: 21.5,-31.5 + parent: 4812 + type: Transform + - uid: 5528 + components: + - pos: 20.5,-31.5 + parent: 4812 + type: Transform + - uid: 5529 + components: + - pos: 19.5,-31.5 + parent: 4812 + type: Transform + - uid: 5530 + components: + - pos: 29.5,-21.5 + parent: 4812 + type: Transform + - uid: 5531 + components: + - pos: 29.5,-20.5 + parent: 4812 + type: Transform + - uid: 5532 + components: + - pos: 29.5,-19.5 + parent: 4812 + type: Transform + - uid: 5556 + components: + - pos: 27.5,-31.5 + parent: 4812 + type: Transform + - uid: 5557 + components: + - pos: 28.5,-31.5 + parent: 4812 + type: Transform + - uid: 5558 + components: + - pos: 29.5,-31.5 + parent: 4812 + type: Transform + - uid: 5559 + components: + - pos: 30.5,-31.5 + parent: 4812 + type: Transform + - uid: 5560 + components: + - pos: 30.5,-30.5 + parent: 4812 + type: Transform + - uid: 5561 + components: + - pos: 30.5,-29.5 + parent: 4812 + type: Transform + - uid: 5568 + components: + - pos: 30.5,-22.5 + parent: 4812 + type: Transform + - uid: 5569 + components: + - pos: 30.5,-21.5 + parent: 4812 + type: Transform + - uid: 5595 + components: + - pos: -38.5,18.5 + parent: 4812 + type: Transform + - uid: 5769 + components: + - pos: 31.5,-29.5 + parent: 4812 + type: Transform + - uid: 5770 + components: + - pos: 32.5,-29.5 + parent: 4812 + type: Transform + - uid: 5772 + components: + - pos: 34.5,-29.5 + parent: 4812 + type: Transform + - uid: 5773 + components: + - pos: 35.5,-29.5 + parent: 4812 + type: Transform + - uid: 5774 + components: + - pos: 36.5,-29.5 + parent: 4812 + type: Transform + - uid: 5775 + components: + - pos: 36.5,-28.5 + parent: 4812 + type: Transform + - uid: 5776 + components: + - pos: 36.5,-27.5 + parent: 4812 + type: Transform + - uid: 5777 + components: + - pos: 36.5,-26.5 + parent: 4812 + type: Transform + - uid: 5778 + components: + - pos: 36.5,-25.5 + parent: 4812 + type: Transform + - uid: 5779 + components: + - pos: 36.5,-24.5 + parent: 4812 + type: Transform + - uid: 5780 + components: + - pos: 36.5,-23.5 + parent: 4812 + type: Transform + - uid: 5781 + components: + - pos: 36.5,-22.5 + parent: 4812 + type: Transform + - uid: 5785 + components: + - pos: 31.5,-22.5 + parent: 4812 + type: Transform + - uid: 5786 + components: + - pos: 35.5,-22.5 + parent: 4812 + type: Transform + - uid: 5826 + components: + - pos: -9.5,-59.5 + parent: 4812 + type: Transform + - uid: 5904 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-30.5 + parent: 4812 + type: Transform + - uid: 5905 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-31.5 + parent: 4812 + type: Transform + - uid: 5906 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-30.5 + parent: 4812 + type: Transform + - uid: 5907 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-31.5 + parent: 4812 + type: Transform + - uid: 5908 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-32.5 + parent: 4812 + type: Transform + - uid: 5909 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-32.5 + parent: 4812 + type: Transform + - uid: 5910 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-32.5 + parent: 4812 + type: Transform + - uid: 5911 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-32.5 + parent: 4812 + type: Transform + - uid: 6546 + components: + - pos: -27.5,-26.5 + parent: 4812 + type: Transform + - uid: 6547 + components: + - pos: -27.5,-25.5 + parent: 4812 + type: Transform + - uid: 6559 + components: + - pos: -7.5,-13.5 + parent: 4812 + type: Transform + - uid: 6560 + components: + - pos: -13.5,-18.5 + parent: 4812 + type: Transform + - uid: 6561 + components: + - pos: -13.5,-16.5 + parent: 4812 + type: Transform + - uid: 6562 + components: + - pos: -13.5,-14.5 + parent: 4812 + type: Transform + - uid: 6563 + components: + - pos: -13.5,-13.5 + parent: 4812 + type: Transform + - uid: 6564 + components: + - pos: -13.5,-19.5 + parent: 4812 + type: Transform + - uid: 6565 + components: + - pos: -10.5,-19.5 + parent: 4812 + type: Transform + - uid: 6566 + components: + - pos: -7.5,-19.5 + parent: 4812 + type: Transform + - uid: 6567 + components: + - pos: -7.5,-17.5 + parent: 4812 + type: Transform + - uid: 6568 + components: + - pos: -7.5,-15.5 + parent: 4812 + type: Transform + - uid: 6569 + components: + - pos: -11.5,-13.5 + parent: 4812 + type: Transform + - uid: 6696 + components: + - pos: -13.5,-37.5 + parent: 4812 + type: Transform + - uid: 6697 + components: + - pos: -14.5,-37.5 + parent: 4812 + type: Transform + - uid: 6698 + components: + - pos: -18.5,-37.5 + parent: 4812 + type: Transform + - uid: 6699 + components: + - pos: -18.5,-38.5 + parent: 4812 + type: Transform + - uid: 6700 + components: + - pos: -18.5,-39.5 + parent: 4812 + type: Transform + - uid: 6701 + components: + - pos: -18.5,-40.5 + parent: 4812 + type: Transform + - uid: 6702 + components: + - pos: -21.5,-40.5 + parent: 4812 + type: Transform + - uid: 6704 + components: + - pos: -22.5,-40.5 + parent: 4812 + type: Transform + - uid: 6705 + components: + - pos: -23.5,-40.5 + parent: 4812 + type: Transform + - uid: 6706 + components: + - pos: -24.5,-40.5 + parent: 4812 + type: Transform + - uid: 6707 + components: + - pos: -25.5,-40.5 + parent: 4812 + type: Transform + - uid: 6759 + components: + - pos: -7.5,-29.5 + parent: 4812 + type: Transform + - uid: 6760 + components: + - pos: -7.5,-30.5 + parent: 4812 + type: Transform + - uid: 6761 + components: + - pos: -7.5,-31.5 + parent: 4812 + type: Transform + - uid: 6762 + components: + - pos: -7.5,-32.5 + parent: 4812 + type: Transform + - uid: 6763 + components: + - pos: -7.5,-33.5 + parent: 4812 + type: Transform + - uid: 6900 + components: + - pos: -9.5,-33.5 + parent: 4812 + type: Transform + - uid: 6901 + components: + - pos: -8.5,-33.5 + parent: 4812 + type: Transform + - uid: 7281 + components: + - pos: -27.5,-28.5 + parent: 4812 + type: Transform + - uid: 7289 + components: + - pos: -24.5,-29.5 + parent: 4812 + type: Transform + - uid: 7292 + components: + - pos: -27.5,-29.5 + parent: 4812 + type: Transform + - uid: 7293 + components: + - pos: -26.5,-29.5 + parent: 4812 + type: Transform + - uid: 7294 + components: + - pos: -25.5,-29.5 + parent: 4812 + type: Transform + - uid: 7337 + components: + - pos: -23.5,-24.5 + parent: 4812 + type: Transform + - uid: 7635 + components: + - pos: -17.5,30.5 + parent: 4812 + type: Transform + - uid: 7636 + components: + - pos: -18.5,29.5 + parent: 4812 + type: Transform + - uid: 7637 + components: + - pos: -18.5,30.5 + parent: 4812 + type: Transform + - uid: 7638 + components: + - pos: -19.5,30.5 + parent: 4812 + type: Transform + - uid: 7639 + components: + - pos: -20.5,30.5 + parent: 4812 + type: Transform + - uid: 7640 + components: + - pos: -20.5,29.5 + parent: 4812 + type: Transform + - uid: 7641 + components: + - pos: -18.5,21.5 + parent: 4812 + type: Transform + - uid: 7642 + components: + - pos: -18.5,22.5 + parent: 4812 + type: Transform + - uid: 7643 + components: + - pos: -18.5,23.5 + parent: 4812 + type: Transform + - uid: 7644 + components: + - pos: -18.5,24.5 + parent: 4812 + type: Transform + - uid: 7645 + components: + - pos: -18.5,26.5 + parent: 4812 + type: Transform + - uid: 7646 + components: + - pos: -18.5,27.5 + parent: 4812 + type: Transform + - uid: 7647 + components: + - pos: -18.5,28.5 + parent: 4812 + type: Transform + - uid: 7648 + components: + - pos: -24.5,30.5 + parent: 4812 + type: Transform + - uid: 7649 + components: + - pos: -24.5,29.5 + parent: 4812 + type: Transform + - uid: 7650 + components: + - pos: -23.5,29.5 + parent: 4812 + type: Transform + - uid: 7651 + components: + - pos: -21.5,29.5 + parent: 4812 + type: Transform + - uid: 7652 + components: + - pos: -19.5,21.5 + parent: 4812 + type: Transform + - uid: 7653 + components: + - pos: -24.5,21.5 + parent: 4812 + type: Transform + - uid: 7654 + components: + - pos: -24.5,22.5 + parent: 4812 + type: Transform + - uid: 7656 + components: + - pos: -24.5,24.5 + parent: 4812 + type: Transform + - uid: 7657 + components: + - pos: -24.5,25.5 + parent: 4812 + type: Transform + - uid: 7658 + components: + - pos: -24.5,26.5 + parent: 4812 + type: Transform + - uid: 7659 + components: + - pos: -24.5,27.5 + parent: 4812 + type: Transform + - uid: 7660 + components: + - pos: -24.5,28.5 + parent: 4812 + type: Transform + - uid: 7661 + components: + - pos: -24.5,32.5 + parent: 4812 + type: Transform + - uid: 7662 + components: + - pos: -24.5,33.5 + parent: 4812 + type: Transform + - uid: 7663 + components: + - pos: -25.5,33.5 + parent: 4812 + type: Transform + - uid: 7664 + components: + - pos: -26.5,33.5 + parent: 4812 + type: Transform + - uid: 7670 + components: + - pos: -30.5,33.5 + parent: 4812 + type: Transform + - uid: 7671 + components: + - pos: -31.5,33.5 + parent: 4812 + type: Transform + - uid: 7672 + components: + - pos: -32.5,33.5 + parent: 4812 + type: Transform + - uid: 7673 + components: + - pos: -33.5,33.5 + parent: 4812 + type: Transform + - uid: 7674 + components: + - pos: -32.5,28.5 + parent: 4812 + type: Transform + - uid: 7675 + components: + - pos: -33.5,29.5 + parent: 4812 + type: Transform + - uid: 7676 + components: + - pos: -33.5,30.5 + parent: 4812 + type: Transform + - uid: 7677 + components: + - pos: -33.5,31.5 + parent: 4812 + type: Transform + - uid: 7678 + components: + - pos: -33.5,32.5 + parent: 4812 + type: Transform + - uid: 7679 + components: + - pos: -33.5,28.5 + parent: 4812 + type: Transform + - uid: 7680 + components: + - pos: -31.5,21.5 + parent: 4812 + type: Transform + - uid: 7681 + components: + - pos: -28.5,21.5 + parent: 4812 + type: Transform + - uid: 7686 + components: + - pos: -25.5,21.5 + parent: 4812 + type: Transform + - uid: 7687 + components: + - pos: -26.5,21.5 + parent: 4812 + type: Transform + - uid: 7688 + components: + - pos: -27.5,21.5 + parent: 4812 + type: Transform + - uid: 7689 + components: + - pos: -32.5,23.5 + parent: 4812 + type: Transform + - uid: 7690 + components: + - pos: -25.5,25.5 + parent: 4812 + type: Transform + - uid: 7691 + components: + - pos: -28.5,25.5 + parent: 4812 + type: Transform + - uid: 7692 + components: + - pos: -32.5,22.5 + parent: 4812 + type: Transform + - uid: 7693 + components: + - pos: -27.5,25.5 + parent: 4812 + type: Transform + - uid: 7694 + components: + - pos: -31.5,25.5 + parent: 4812 + type: Transform + - uid: 7695 + components: + - pos: -32.5,21.5 + parent: 4812 + type: Transform + - uid: 7696 + components: + - pos: -32.5,27.5 + parent: 4812 + type: Transform + - uid: 7697 + components: + - pos: -32.5,26.5 + parent: 4812 + type: Transform + - uid: 7698 + components: + - pos: -32.5,25.5 + parent: 4812 + type: Transform + - uid: 7699 + components: + - pos: -32.5,24.5 + parent: 4812 + type: Transform + - uid: 7700 + components: + - pos: -29.5,25.5 + parent: 4812 + type: Transform + - uid: 7701 + components: + - pos: -28.5,26.5 + parent: 4812 + type: Transform + - uid: 7702 + components: + - pos: -28.5,27.5 + parent: 4812 + type: Transform + - uid: 7703 + components: + - pos: -28.5,28.5 + parent: 4812 + type: Transform + - uid: 7704 + components: + - pos: -29.5,28.5 + parent: 4812 + type: Transform + - uid: 7705 + components: + - pos: -27.5,28.5 + parent: 4812 + type: Transform + - uid: 7706 + components: + - pos: -25.5,28.5 + parent: 4812 + type: Transform + - uid: 7707 + components: + - pos: -31.5,28.5 + parent: 4812 + type: Transform + - uid: 7712 + components: + - pos: -24.5,9.5 + parent: 4812 + type: Transform + - uid: 7713 + components: + - pos: -25.5,9.5 + parent: 4812 + type: Transform + - uid: 7714 + components: + - pos: -26.5,9.5 + parent: 4812 + type: Transform + - uid: 7715 + components: + - pos: -27.5,9.5 + parent: 4812 + type: Transform + - uid: 7718 + components: + - pos: -24.5,18.5 + parent: 4812 + type: Transform + - uid: 7719 + components: + - pos: -24.5,15.5 + parent: 4812 + type: Transform + - uid: 7720 + components: + - pos: -25.5,15.5 + parent: 4812 + type: Transform + - uid: 7721 + components: + - pos: -26.5,15.5 + parent: 4812 + type: Transform + - uid: 7722 + components: + - pos: -27.5,15.5 + parent: 4812 + type: Transform + - uid: 7723 + components: + - pos: -24.5,12.5 + parent: 4812 + type: Transform + - uid: 7724 + components: + - pos: -27.5,12.5 + parent: 4812 + type: Transform + - uid: 7732 + components: + - pos: -32.5,18.5 + parent: 4812 + type: Transform + - uid: 7733 + components: + - pos: -33.5,22.5 + parent: 4812 + type: Transform + - uid: 7734 + components: + - pos: -34.5,22.5 + parent: 4812 + type: Transform + - uid: 7735 + components: + - pos: -35.5,22.5 + parent: 4812 + type: Transform + - uid: 7736 + components: + - pos: -36.5,22.5 + parent: 4812 + type: Transform + - uid: 7737 + components: + - pos: -37.5,18.5 + parent: 4812 + type: Transform + - uid: 7738 + components: + - pos: -37.5,19.5 + parent: 4812 + type: Transform + - uid: 7739 + components: + - pos: -37.5,20.5 + parent: 4812 + type: Transform + - uid: 7740 + components: + - pos: -36.5,18.5 + parent: 4812 + type: Transform + - uid: 7743 + components: + - pos: -32.5,16.5 + parent: 4812 + type: Transform + - uid: 7744 + components: + - pos: -32.5,13.5 + parent: 4812 + type: Transform + - uid: 7749 + components: + - pos: -28.5,9.5 + parent: 4812 + type: Transform + - uid: 7750 + components: + - pos: -29.5,9.5 + parent: 4812 + type: Transform + - uid: 7751 + components: + - pos: -30.5,9.5 + parent: 4812 + type: Transform + - uid: 7753 + components: + - pos: -32.5,9.5 + parent: 4812 + type: Transform + - uid: 7754 + components: + - pos: -33.5,9.5 + parent: 4812 + type: Transform + - uid: 7755 + components: + - pos: -34.5,9.5 + parent: 4812 + type: Transform + - uid: 7756 + components: + - pos: -37.5,21.5 + parent: 4812 + type: Transform + - uid: 7757 + components: + - pos: -37.5,22.5 + parent: 4812 + type: Transform + - uid: 7758 + components: + - pos: -37.5,17.5 + parent: 4812 + type: Transform + - uid: 7759 + components: + - pos: -37.5,16.5 + parent: 4812 + type: Transform + - uid: 7760 + components: + - pos: -37.5,15.5 + parent: 4812 + type: Transform + - uid: 7761 + components: + - pos: -37.5,14.5 + parent: 4812 + type: Transform + - uid: 7762 + components: + - pos: -37.5,13.5 + parent: 4812 + type: Transform + - uid: 7763 + components: + - pos: -36.5,13.5 + parent: 4812 + type: Transform + - uid: 7765 + components: + - pos: -38.5,13.5 + parent: 4812 + type: Transform + - uid: 7766 + components: + - pos: -39.5,13.5 + parent: 4812 + type: Transform + - uid: 7767 + components: + - pos: -40.5,13.5 + parent: 4812 + type: Transform + - uid: 7768 + components: + - pos: -35.5,9.5 + parent: 4812 + type: Transform + - uid: 7769 + components: + - pos: -36.5,9.5 + parent: 4812 + type: Transform + - uid: 7770 + components: + - pos: -37.5,9.5 + parent: 4812 + type: Transform + - uid: 7771 + components: + - pos: -38.5,9.5 + parent: 4812 + type: Transform + - uid: 7772 + components: + - pos: -39.5,9.5 + parent: 4812 + type: Transform + - uid: 7773 + components: + - pos: -40.5,9.5 + parent: 4812 + type: Transform + - uid: 7774 + components: + - pos: -40.5,10.5 + parent: 4812 + type: Transform + - uid: 7775 + components: + - pos: -40.5,11.5 + parent: 4812 + type: Transform + - uid: 7776 + components: + - pos: -40.5,12.5 + parent: 4812 + type: Transform + - uid: 7937 + components: + - pos: -27.5,6.5 + parent: 4812 + type: Transform + - uid: 7938 + components: + - pos: -28.5,6.5 + parent: 4812 + type: Transform + - uid: 7939 + components: + - pos: -29.5,6.5 + parent: 4812 + type: Transform + - uid: 7940 + components: + - pos: -30.5,6.5 + parent: 4812 + type: Transform + - uid: 7941 + components: + - pos: -31.5,6.5 + parent: 4812 + type: Transform + - uid: 7942 + components: + - pos: -32.5,6.5 + parent: 4812 + type: Transform + - uid: 7943 + components: + - pos: -33.5,6.5 + parent: 4812 + type: Transform + - uid: 7944 + components: + - pos: -34.5,6.5 + parent: 4812 + type: Transform + - uid: 7945 + components: + - pos: -35.5,6.5 + parent: 4812 + type: Transform + - uid: 7946 + components: + - pos: -36.5,6.5 + parent: 4812 + type: Transform + - uid: 7947 + components: + - pos: -37.5,6.5 + parent: 4812 + type: Transform + - uid: 7948 + components: + - pos: -38.5,6.5 + parent: 4812 + type: Transform + - uid: 7950 + components: + - pos: -40.5,6.5 + parent: 4812 + type: Transform + - uid: 7951 + components: + - pos: -40.5,7.5 + parent: 4812 + type: Transform + - uid: 7952 + components: + - pos: -40.5,8.5 + parent: 4812 + type: Transform + - uid: 7955 + components: + - pos: -35.5,8.5 + parent: 4812 + type: Transform + - uid: 8621 + components: + - pos: -34.5,0.5 + parent: 4812 + type: Transform + - uid: 8623 + components: + - pos: -28.5,0.5 + parent: 4812 + type: Transform + - uid: 8624 + components: + - pos: -27.5,0.5 + parent: 4812 + type: Transform + - uid: 8625 + components: + - pos: -27.5,1.5 + parent: 4812 + type: Transform + - uid: 8626 + components: + - pos: -27.5,5.5 + parent: 4812 + type: Transform + - uid: 8635 + components: + - pos: -35.5,0.5 + parent: 4812 + type: Transform + - uid: 8639 + components: + - pos: -35.5,4.5 + parent: 4812 + type: Transform + - uid: 8641 + components: + - pos: -35.5,-0.5 + parent: 4812 + type: Transform + - uid: 8642 + components: + - pos: -35.5,-1.5 + parent: 4812 + type: Transform + - uid: 8643 + components: + - pos: -35.5,-2.5 + parent: 4812 + type: Transform + - uid: 8644 + components: + - pos: -35.5,-3.5 + parent: 4812 + type: Transform + - uid: 8645 + components: + - pos: -35.5,-4.5 + parent: 4812 + type: Transform + - uid: 8646 + components: + - pos: -35.5,-5.5 + parent: 4812 + type: Transform + - uid: 8647 + components: + - pos: -35.5,-6.5 + parent: 4812 + type: Transform + - uid: 8648 + components: + - pos: -34.5,-4.5 + parent: 4812 + type: Transform + - uid: 8649 + components: + - pos: -32.5,-4.5 + parent: 4812 + type: Transform + - uid: 8650 + components: + - pos: -28.5,-4.5 + parent: 4812 + type: Transform + - uid: 8651 + components: + - pos: -27.5,-4.5 + parent: 4812 + type: Transform + - uid: 8652 + components: + - pos: -27.5,-5.5 + parent: 4812 + type: Transform + - uid: 8653 + components: + - pos: -27.5,-9.5 + parent: 4812 + type: Transform + - uid: 8654 + components: + - pos: -27.5,-10.5 + parent: 4812 + type: Transform + - uid: 8655 + components: + - pos: -28.5,-10.5 + parent: 4812 + type: Transform + - uid: 8656 + components: + - pos: -29.5,-10.5 + parent: 4812 + type: Transform + - uid: 8657 + components: + - pos: -31.5,-10.5 + parent: 4812 + type: Transform + - uid: 8658 + components: + - pos: -32.5,-10.5 + parent: 4812 + type: Transform + - uid: 8659 + components: + - pos: -33.5,-10.5 + parent: 4812 + type: Transform + - uid: 8660 + components: + - pos: -34.5,-10.5 + parent: 4812 + type: Transform + - uid: 8661 + components: + - pos: -34.5,-9.5 + parent: 4812 + type: Transform + - uid: 8662 + components: + - pos: -34.5,-7.5 + parent: 4812 + type: Transform + - uid: 8663 + components: + - pos: -34.5,-6.5 + parent: 4812 + type: Transform + - uid: 8664 + components: + - pos: -35.5,-10.5 + parent: 4812 + type: Transform + - uid: 8665 + components: + - pos: -37.5,-10.5 + parent: 4812 + type: Transform + - uid: 8666 + components: + - pos: -37.5,-9.5 + parent: 4812 + type: Transform + - uid: 8667 + components: + - pos: -37.5,-7.5 + parent: 4812 + type: Transform + - uid: 8668 + components: + - pos: -37.5,-6.5 + parent: 4812 + type: Transform + - uid: 8669 + components: + - pos: -37.5,-5.5 + parent: 4812 + type: Transform + - uid: 8670 + components: + - pos: -37.5,-4.5 + parent: 4812 + type: Transform + - uid: 8671 + components: + - pos: -37.5,-3.5 + parent: 4812 + type: Transform + - uid: 8672 + components: + - pos: -37.5,-2.5 + parent: 4812 + type: Transform + - uid: 8673 + components: + - pos: -37.5,-1.5 + parent: 4812 + type: Transform + - uid: 8674 + components: + - pos: -37.5,-0.5 + parent: 4812 + type: Transform + - uid: 8675 + components: + - pos: -37.5,0.5 + parent: 4812 + type: Transform + - uid: 8712 + components: + - pos: -38.5,-0.5 + parent: 4812 + type: Transform + - uid: 8713 + components: + - pos: -40.5,-0.5 + parent: 4812 + type: Transform + - uid: 8714 + components: + - pos: -41.5,-0.5 + parent: 4812 + type: Transform + - uid: 8715 + components: + - pos: -41.5,-1.5 + parent: 4812 + type: Transform + - uid: 8716 + components: + - pos: -41.5,-2.5 + parent: 4812 + type: Transform + - uid: 8717 + components: + - pos: -41.5,-3.5 + parent: 4812 + type: Transform + - uid: 8718 + components: + - pos: -40.5,-4.5 + parent: 4812 + type: Transform + - uid: 8719 + components: + - pos: -41.5,-4.5 + parent: 4812 + type: Transform + - uid: 8720 + components: + - pos: -38.5,-4.5 + parent: 4812 + type: Transform + - uid: 8724 + components: + - pos: -46.5,-4.5 + parent: 4812 + type: Transform + - uid: 8726 + components: + - pos: -46.5,-2.5 + parent: 4812 + type: Transform + - uid: 8727 + components: + - pos: -46.5,-1.5 + parent: 4812 + type: Transform + - uid: 8728 + components: + - pos: -46.5,-0.5 + parent: 4812 + type: Transform + - uid: 8729 + components: + - pos: -45.5,-0.5 + parent: 4812 + type: Transform + - uid: 8730 + components: + - pos: -44.5,-0.5 + parent: 4812 + type: Transform + - uid: 8731 + components: + - pos: -43.5,-0.5 + parent: 4812 + type: Transform + - uid: 8732 + components: + - pos: -42.5,-0.5 + parent: 4812 + type: Transform + - uid: 8733 + components: + - pos: -45.5,-4.5 + parent: 4812 + type: Transform + - uid: 8751 + components: + - pos: -46.5,-3.5 + parent: 4812 + type: Transform + - uid: 8789 + components: + - pos: -25.5,-41.5 + parent: 4812 + type: Transform + - uid: 8790 + components: + - pos: -26.5,-41.5 + parent: 4812 + type: Transform + - uid: 8791 + components: + - pos: -28.5,-41.5 + parent: 4812 + type: Transform + - uid: 8793 + components: + - pos: -29.5,-41.5 + parent: 4812 + type: Transform + - uid: 8794 + components: + - pos: -30.5,-41.5 + parent: 4812 + type: Transform + - uid: 8795 + components: + - pos: -31.5,-41.5 + parent: 4812 + type: Transform + - uid: 8796 + components: + - pos: -32.5,-41.5 + parent: 4812 + type: Transform + - uid: 8797 + components: + - pos: -32.5,-40.5 + parent: 4812 + type: Transform + - uid: 8798 + components: + - pos: -32.5,-39.5 + parent: 4812 + type: Transform + - uid: 8799 + components: + - pos: -32.5,-38.5 + parent: 4812 + type: Transform + - uid: 8800 + components: + - pos: -33.5,-38.5 + parent: 4812 + type: Transform + - uid: 8801 + components: + - pos: -34.5,-38.5 + parent: 4812 + type: Transform + - uid: 8802 + components: + - pos: -35.5,-38.5 + parent: 4812 + type: Transform + - uid: 8809 + components: + - pos: -38.5,-38.5 + parent: 4812 + type: Transform + - uid: 8811 + components: + - pos: -38.5,-36.5 + parent: 4812 + type: Transform + - uid: 8812 + components: + - pos: -41.5,-34.5 + parent: 4812 + type: Transform + - uid: 8813 + components: + - pos: -41.5,-33.5 + parent: 4812 + type: Transform + - uid: 8814 + components: + - pos: -41.5,-32.5 + parent: 4812 + type: Transform + - uid: 8815 + components: + - pos: -34.5,-35.5 + parent: 4812 + type: Transform + - uid: 8816 + components: + - pos: -35.5,-37.5 + parent: 4812 + type: Transform + - uid: 8817 + components: + - pos: -35.5,-36.5 + parent: 4812 + type: Transform + - uid: 8818 + components: + - pos: -35.5,-35.5 + parent: 4812 + type: Transform + - uid: 8819 + components: + - pos: -35.5,-34.5 + parent: 4812 + type: Transform + - uid: 8820 + components: + - pos: -33.5,-35.5 + parent: 4812 + type: Transform + - uid: 8821 + components: + - pos: -32.5,-35.5 + parent: 4812 + type: Transform + - uid: 8822 + components: + - pos: -32.5,-34.5 + parent: 4812 + type: Transform + - uid: 8823 + components: + - pos: -32.5,-32.5 + parent: 4812 + type: Transform + - uid: 8824 + components: + - pos: -33.5,-32.5 + parent: 4812 + type: Transform + - uid: 8825 + components: + - pos: -34.5,-32.5 + parent: 4812 + type: Transform + - uid: 8826 + components: + - pos: -35.5,-32.5 + parent: 4812 + type: Transform + - uid: 8827 + components: + - pos: -36.5,-32.5 + parent: 4812 + type: Transform + - uid: 8828 + components: + - pos: -37.5,-32.5 + parent: 4812 + type: Transform + - uid: 8829 + components: + - pos: -38.5,-32.5 + parent: 4812 + type: Transform + - uid: 8830 + components: + - pos: -39.5,-32.5 + parent: 4812 + type: Transform + - uid: 8831 + components: + - pos: -40.5,-32.5 + parent: 4812 + type: Transform + - uid: 8873 + components: + - pos: -37.5,-11.5 + parent: 4812 + type: Transform + - uid: 8874 + components: + - pos: -37.5,-12.5 + parent: 4812 + type: Transform + - uid: 8875 + components: + - pos: -37.5,-13.5 + parent: 4812 + type: Transform + - uid: 8876 + components: + - pos: -37.5,-14.5 + parent: 4812 + type: Transform + - uid: 8877 + components: + - pos: -37.5,-15.5 + parent: 4812 + type: Transform + - uid: 9022 + components: + - pos: -53.5,2.5 + parent: 4812 + type: Transform + - uid: 9091 + components: + - pos: -55.5,12.5 + parent: 4812 + type: Transform + - uid: 9092 + components: + - pos: -55.5,11.5 + parent: 4812 + type: Transform + - uid: 9093 + components: + - pos: -55.5,10.5 + parent: 4812 + type: Transform + - uid: 9094 + components: + - pos: -55.5,9.5 + parent: 4812 + type: Transform + - uid: 9095 + components: + - pos: -55.5,8.5 + parent: 4812 + type: Transform + - uid: 9096 + components: + - pos: -55.5,7.5 + parent: 4812 + type: Transform + - uid: 9097 + components: + - pos: -55.5,6.5 + parent: 4812 + type: Transform + - uid: 9098 + components: + - pos: -55.5,5.5 + parent: 4812 + type: Transform + - uid: 9100 + components: + - pos: -55.5,3.5 + parent: 4812 + type: Transform + - uid: 9101 + components: + - pos: -55.5,2.5 + parent: 4812 + type: Transform + - uid: 9102 + components: + - pos: -55.5,1.5 + parent: 4812 + type: Transform + - uid: 9103 + components: + - pos: -54.5,12.5 + parent: 4812 + type: Transform + - uid: 9104 + components: + - pos: -54.5,11.5 + parent: 4812 + type: Transform + - uid: 9105 + components: + - pos: -54.5,10.5 + parent: 4812 + type: Transform + - uid: 9106 + components: + - pos: -54.5,9.5 + parent: 4812 + type: Transform + - uid: 9107 + components: + - pos: -54.5,8.5 + parent: 4812 + type: Transform + - uid: 9108 + components: + - pos: -54.5,7.5 + parent: 4812 + type: Transform + - uid: 9109 + components: + - pos: -54.5,6.5 + parent: 4812 + type: Transform + - uid: 9110 + components: + - pos: -54.5,5.5 + parent: 4812 + type: Transform + - uid: 9111 + components: + - pos: -54.5,4.5 + parent: 4812 + type: Transform + - uid: 9112 + components: + - pos: -54.5,3.5 + parent: 4812 + type: Transform + - uid: 9113 + components: + - pos: -54.5,2.5 + parent: 4812 + type: Transform + - uid: 9114 + components: + - pos: -54.5,1.5 + parent: 4812 + type: Transform + - uid: 9139 + components: + - pos: -50.5,0.5 + parent: 4812 + type: Transform + - uid: 9140 + components: + - pos: -51.5,0.5 + parent: 4812 + type: Transform + - uid: 9141 + components: + - pos: -52.5,0.5 + parent: 4812 + type: Transform + - uid: 9142 + components: + - pos: -53.5,0.5 + parent: 4812 + type: Transform + - uid: 9143 + components: + - pos: -54.5,0.5 + parent: 4812 + type: Transform + - uid: 9144 + components: + - pos: -55.5,0.5 + parent: 4812 + type: Transform + - uid: 9239 + components: + - pos: -51.5,6.5 + parent: 4812 + type: Transform + - uid: 9240 + components: + - pos: -50.5,4.5 + parent: 4812 + type: Transform + - uid: 9242 + components: + - pos: -50.5,2.5 + parent: 4812 + type: Transform + - uid: 9243 + components: + - pos: -51.5,2.5 + parent: 4812 + type: Transform + - uid: 9244 + components: + - pos: -52.5,6.5 + parent: 4812 + type: Transform + - uid: 9245 + components: + - pos: -52.5,2.5 + parent: 4812 + type: Transform + - uid: 9248 + components: + - pos: -53.5,6.5 + parent: 4812 + type: Transform + - uid: 9256 + components: + - pos: -52.5,4.5 + parent: 4812 + type: Transform + - uid: 9258 + components: + - pos: -53.5,4.5 + parent: 4812 + type: Transform + - uid: 9260 + components: + - pos: -51.5,4.5 + parent: 4812 + type: Transform + - uid: 9265 + components: + - pos: -50.5,6.5 + parent: 4812 + type: Transform + - uid: 9266 + components: + - pos: -50.5,8.5 + parent: 4812 + type: Transform + - uid: 9267 + components: + - pos: -51.5,8.5 + parent: 4812 + type: Transform + - uid: 9268 + components: + - pos: -52.5,8.5 + parent: 4812 + type: Transform + - uid: 9269 + components: + - pos: -53.5,8.5 + parent: 4812 + type: Transform + - uid: 9270 + components: + - pos: -53.5,10.5 + parent: 4812 + type: Transform + - uid: 9271 + components: + - pos: -52.5,10.5 + parent: 4812 + type: Transform + - uid: 9272 + components: + - pos: -51.5,10.5 + parent: 4812 + type: Transform + - uid: 9273 + components: + - pos: -50.5,10.5 + parent: 4812 + type: Transform + - uid: 9274 + components: + - pos: -50.5,12.5 + parent: 4812 + type: Transform + - uid: 9275 + components: + - pos: -51.5,12.5 + parent: 4812 + type: Transform + - uid: 9276 + components: + - pos: -52.5,12.5 + parent: 4812 + type: Transform + - uid: 9277 + components: + - pos: -53.5,12.5 + parent: 4812 + type: Transform + - uid: 9284 + components: + - pos: -46.5,-5.5 + parent: 4812 + type: Transform + - uid: 9285 + components: + - pos: -48.5,-3.5 + parent: 4812 + type: Transform + - uid: 9286 + components: + - pos: -48.5,-2.5 + parent: 4812 + type: Transform + - uid: 9469 + components: + - pos: -46.5,18.5 + parent: 4812 + type: Transform + - uid: 9470 + components: + - pos: -45.5,18.5 + parent: 4812 + type: Transform + - uid: 9471 + components: + - pos: -43.5,18.5 + parent: 4812 + type: Transform + - uid: 9472 + components: + - pos: -42.5,18.5 + parent: 4812 + type: Transform + - uid: 9473 + components: + - pos: -42.5,15.5 + parent: 4812 + type: Transform + - uid: 9474 + components: + - pos: -46.5,15.5 + parent: 4812 + type: Transform + - uid: 9511 + components: + - pos: -41.5,13.5 + parent: 4812 + type: Transform + - uid: 9517 + components: + - pos: -47.5,-5.5 + parent: 4812 + type: Transform + - uid: 9518 + components: + - pos: -48.5,-5.5 + parent: 4812 + type: Transform + - uid: 9519 + components: + - pos: -49.5,-5.5 + parent: 4812 + type: Transform + - uid: 9520 + components: + - pos: -49.5,-3.5 + parent: 4812 + type: Transform + - uid: 9521 + components: + - pos: -50.5,-5.5 + parent: 4812 + type: Transform + - uid: 9522 + components: + - pos: -50.5,-3.5 + parent: 4812 + type: Transform + - uid: 9579 + components: + - pos: -42.5,-32.5 + parent: 4812 + type: Transform + - uid: 9590 + components: + - pos: -46.5,-25.5 + parent: 4812 + type: Transform + - uid: 9591 + components: + - pos: -46.5,-24.5 + parent: 4812 + type: Transform + - uid: 9592 + components: + - pos: -48.5,-24.5 + parent: 4812 + type: Transform + - uid: 9594 + components: + - pos: -49.5,-24.5 + parent: 4812 + type: Transform + - uid: 9595 + components: + - pos: -49.5,-25.5 + parent: 4812 + type: Transform + - uid: 9596 + components: + - pos: -49.5,-26.5 + parent: 4812 + type: Transform + - uid: 9597 + components: + - pos: -50.5,-26.5 + parent: 4812 + type: Transform + - uid: 9598 + components: + - pos: -51.5,-26.5 + parent: 4812 + type: Transform + - uid: 9604 + components: + - pos: -54.5,-24.5 + parent: 4812 + type: Transform + - uid: 9605 + components: + - pos: -55.5,-24.5 + parent: 4812 + type: Transform + - uid: 9606 + components: + - pos: -56.5,-24.5 + parent: 4812 + type: Transform + - uid: 9607 + components: + - pos: -56.5,-21.5 + parent: 4812 + type: Transform + - uid: 9644 + components: + - pos: -12.5,-56.5 + parent: 4812 + type: Transform + - uid: 9645 + components: + - pos: -9.5,-56.5 + parent: 4812 + type: Transform + - uid: 9824 + components: + - pos: -37.5,-16.5 + parent: 4812 + type: Transform + - uid: 9825 + components: + - pos: -37.5,-17.5 + parent: 4812 + type: Transform + - uid: 9826 + components: + - pos: -37.5,-18.5 + parent: 4812 + type: Transform + - uid: 9827 + components: + - pos: -37.5,-19.5 + parent: 4812 + type: Transform + - uid: 9828 + components: + - pos: -38.5,-19.5 + parent: 4812 + type: Transform + - uid: 9829 + components: + - pos: -43.5,-15.5 + parent: 4812 + type: Transform + - uid: 9831 + components: + - pos: -45.5,-15.5 + parent: 4812 + type: Transform + - uid: 9836 + components: + - pos: -46.5,-10.5 + parent: 4812 + type: Transform + - uid: 9837 + components: + - pos: -51.5,-5.5 + parent: 4812 + type: Transform + - uid: 9840 + components: + - pos: -46.5,-14.5 + parent: 4812 + type: Transform + - uid: 9841 + components: + - pos: -46.5,-15.5 + parent: 4812 + type: Transform + - uid: 9842 + components: + - pos: -55.5,-5.5 + parent: 4812 + type: Transform + - uid: 9844 + components: + - pos: -55.5,-6.5 + parent: 4812 + type: Transform + - uid: 9845 + components: + - pos: -55.5,-7.5 + parent: 4812 + type: Transform + - uid: 9846 + components: + - pos: -55.5,-14.5 + parent: 4812 + type: Transform + - uid: 9847 + components: + - pos: -55.5,-13.5 + parent: 4812 + type: Transform + - uid: 9848 + components: + - pos: -55.5,-12.5 + parent: 4812 + type: Transform + - uid: 9849 + components: + - pos: -55.5,-11.5 + parent: 4812 + type: Transform + - uid: 9850 + components: + - pos: -55.5,-10.5 + parent: 4812 + type: Transform + - uid: 9851 + components: + - pos: -55.5,-9.5 + parent: 4812 + type: Transform + - uid: 9852 + components: + - pos: -55.5,-8.5 + parent: 4812 + type: Transform + - uid: 9853 + components: + - pos: -54.5,-14.5 + parent: 4812 + type: Transform + - uid: 9854 + components: + - pos: -53.5,-14.5 + parent: 4812 + type: Transform + - uid: 9855 + components: + - pos: -52.5,-14.5 + parent: 4812 + type: Transform + - uid: 9856 + components: + - pos: -51.5,-14.5 + parent: 4812 + type: Transform + - uid: 9857 + components: + - pos: -50.5,-14.5 + parent: 4812 + type: Transform + - uid: 9858 + components: + - pos: -49.5,-14.5 + parent: 4812 + type: Transform + - uid: 9859 + components: + - pos: -48.5,-14.5 + parent: 4812 + type: Transform + - uid: 9860 + components: + - pos: -47.5,-14.5 + parent: 4812 + type: Transform + - uid: 9864 + components: + - pos: -51.5,-10.5 + parent: 4812 + type: Transform + - uid: 9865 + components: + - pos: -51.5,-9.5 + parent: 4812 + type: Transform + - uid: 9866 + components: + - pos: -51.5,-8.5 + parent: 4812 + type: Transform + - uid: 9867 + components: + - pos: -51.5,-7.5 + parent: 4812 + type: Transform + - uid: 9868 + components: + - pos: -51.5,-6.5 + parent: 4812 + type: Transform + - uid: 9873 + components: + - pos: -47.5,-9.5 + parent: 4812 + type: Transform + - uid: 9876 + components: + - pos: -50.5,-10.5 + parent: 4812 + type: Transform + - uid: 9890 + components: + - pos: -43.5,-9.5 + parent: 4812 + type: Transform + - uid: 9891 + components: + - pos: -43.5,-10.5 + parent: 4812 + type: Transform + - uid: 9895 + components: + - pos: -43.5,-14.5 + parent: 4812 + type: Transform + - uid: 9896 + components: + - pos: -38.5,-9.5 + parent: 4812 + type: Transform + - uid: 9900 + components: + - pos: -42.5,-9.5 + parent: 4812 + type: Transform + - uid: 9901 + components: + - pos: -39.5,-19.5 + parent: 4812 + type: Transform + - uid: 9902 + components: + - pos: -40.5,-19.5 + parent: 4812 + type: Transform + - uid: 9903 + components: + - pos: -41.5,-19.5 + parent: 4812 + type: Transform + - uid: 9904 + components: + - pos: -42.5,-19.5 + parent: 4812 + type: Transform + - uid: 9905 + components: + - pos: -43.5,-19.5 + parent: 4812 + type: Transform + - uid: 9906 + components: + - pos: -43.5,-18.5 + parent: 4812 + type: Transform + - uid: 9907 + components: + - pos: -43.5,-17.5 + parent: 4812 + type: Transform + - uid: 9908 + components: + - pos: -43.5,-16.5 + parent: 4812 + type: Transform + - uid: 9939 + components: + - pos: -55.5,-21.5 + parent: 4812 + type: Transform + - uid: 9940 + components: + - pos: -54.5,-21.5 + parent: 4812 + type: Transform + - uid: 9941 + components: + - pos: -53.5,-21.5 + parent: 4812 + type: Transform + - uid: 9942 + components: + - pos: -52.5,-21.5 + parent: 4812 + type: Transform + - uid: 9943 + components: + - pos: -51.5,-21.5 + parent: 4812 + type: Transform + - uid: 9944 + components: + - pos: -50.5,-21.5 + parent: 4812 + type: Transform + - uid: 9945 + components: + - pos: -49.5,-21.5 + parent: 4812 + type: Transform + - uid: 9946 + components: + - pos: -48.5,-21.5 + parent: 4812 + type: Transform + - uid: 9947 + components: + - pos: -47.5,-21.5 + parent: 4812 + type: Transform + - uid: 9948 + components: + - pos: -46.5,-21.5 + parent: 4812 + type: Transform + - uid: 9949 + components: + - pos: -46.5,-16.5 + parent: 4812 + type: Transform + - uid: 9950 + components: + - pos: -46.5,-17.5 + parent: 4812 + type: Transform + - uid: 9951 + components: + - pos: -46.5,-18.5 + parent: 4812 + type: Transform + - uid: 9952 + components: + - pos: -47.5,-18.5 + parent: 4812 + type: Transform + - uid: 9953 + components: + - pos: -48.5,-18.5 + parent: 4812 + type: Transform + - uid: 9954 + components: + - pos: -49.5,-18.5 + parent: 4812 + type: Transform + - uid: 9955 + components: + - pos: -49.5,-19.5 + parent: 4812 + type: Transform + - uid: 9956 + components: + - pos: -49.5,-20.5 + parent: 4812 + type: Transform + - uid: 9957 + components: + - pos: -46.5,-19.5 + parent: 4812 + type: Transform + - uid: 10635 + components: + - pos: -47.5,-10.5 + parent: 4812 + type: Transform + - uid: 10964 + components: + - pos: 3.5,-37.5 + parent: 4812 + type: Transform + - uid: 10989 + components: + - pos: 3.5,-41.5 + parent: 4812 + type: Transform + - uid: 11006 + components: + - pos: 3.5,-40.5 + parent: 4812 + type: Transform + - uid: 11007 + components: + - pos: 3.5,-39.5 + parent: 4812 + type: Transform + - uid: 11008 + components: + - pos: 3.5,-38.5 + parent: 4812 + type: Transform + - uid: 11030 + components: + - pos: 3.5,-42.5 + parent: 4812 + type: Transform + - uid: 11031 + components: + - pos: 3.5,-43.5 + parent: 4812 + type: Transform + - uid: 11032 + components: + - pos: 4.5,-43.5 + parent: 4812 + type: Transform + - uid: 11033 + components: + - pos: 5.5,-43.5 + parent: 4812 + type: Transform + - uid: 11034 + components: + - pos: 6.5,-43.5 + parent: 4812 + type: Transform + - uid: 11035 + components: + - pos: 6.5,-44.5 + parent: 4812 + type: Transform + - uid: 11036 + components: + - pos: 6.5,-45.5 + parent: 4812 + type: Transform + - uid: 11037 + components: + - pos: 7.5,-45.5 + parent: 4812 + type: Transform + - uid: 11038 + components: + - pos: 8.5,-45.5 + parent: 4812 + type: Transform + - uid: 11039 + components: + - pos: 9.5,-45.5 + parent: 4812 + type: Transform + - uid: 11040 + components: + - pos: 10.5,-45.5 + parent: 4812 + type: Transform + - uid: 11041 + components: + - pos: 11.5,-45.5 + parent: 4812 + type: Transform + - uid: 11042 + components: + - pos: 12.5,-43.5 + parent: 4812 + type: Transform + - uid: 11043 + components: + - pos: 11.5,-44.5 + parent: 4812 + type: Transform + - uid: 11044 + components: + - pos: 11.5,-43.5 + parent: 4812 + type: Transform + - uid: 11045 + components: + - pos: 13.5,-43.5 + parent: 4812 + type: Transform + - uid: 11046 + components: + - pos: 14.5,-43.5 + parent: 4812 + type: Transform + - uid: 11110 + components: + - pos: 15.5,-43.5 + parent: 4812 + type: Transform + - uid: 11111 + components: + - pos: 15.5,-42.5 + parent: 4812 + type: Transform + - uid: 11112 + components: + - pos: 15.5,-41.5 + parent: 4812 + type: Transform + - uid: 11113 + components: + - pos: 15.5,-40.5 + parent: 4812 + type: Transform + - uid: 11114 + components: + - pos: 15.5,-39.5 + parent: 4812 + type: Transform + - uid: 11115 + components: + - pos: 15.5,-38.5 + parent: 4812 + type: Transform + - uid: 11116 + components: + - pos: 15.5,-37.5 + parent: 4812 + type: Transform + - uid: 11117 + components: + - pos: 15.5,-36.5 + parent: 4812 + type: Transform + - uid: 11118 + components: + - pos: 15.5,-35.5 + parent: 4812 + type: Transform + - uid: 11119 + components: + - pos: 34.5,-30.5 + parent: 4812 + type: Transform + - uid: 11120 + components: + - pos: 34.5,-31.5 + parent: 4812 + type: Transform + - uid: 11125 + components: + - pos: 22.5,-39.5 + parent: 4812 + type: Transform + - uid: 11128 + components: + - pos: 19.5,-39.5 + parent: 4812 + type: Transform + - uid: 11131 + components: + - pos: 16.5,-39.5 + parent: 4812 + type: Transform + - uid: 11132 + components: + - pos: 24.5,-37.5 + parent: 4812 + type: Transform + - uid: 11133 + components: + - pos: 23.5,-37.5 + parent: 4812 + type: Transform + - uid: 11134 + components: + - pos: 23.5,-38.5 + parent: 4812 + type: Transform + - uid: 11135 + components: + - pos: 27.5,-35.5 + parent: 4812 + type: Transform + - uid: 11136 + components: + - pos: 36.5,-38.5 + parent: 4812 + type: Transform + - uid: 11137 + components: + - pos: 37.5,-38.5 + parent: 4812 + type: Transform + - uid: 11138 + components: + - pos: 37.5,-37.5 + parent: 4812 + type: Transform + - uid: 11140 + components: + - pos: 38.5,-37.5 + parent: 4812 + type: Transform + - uid: 11142 + components: + - pos: 23.5,-39.5 + parent: 4812 + type: Transform + - uid: 11263 + components: + - pos: 26.5,-37.5 + parent: 4812 + type: Transform + - uid: 11264 + components: + - pos: 27.5,-37.5 + parent: 4812 + type: Transform + - uid: 11265 + components: + - pos: 27.5,-36.5 + parent: 4812 + type: Transform + - uid: 11340 + components: + - pos: 38.5,-35.5 + parent: 4812 + type: Transform + - uid: 11341 + components: + - pos: 38.5,-34.5 + parent: 4812 + type: Transform + - uid: 11342 + components: + - pos: 38.5,-33.5 + parent: 4812 + type: Transform + - uid: 11344 + components: + - pos: 36.5,-31.5 + parent: 4812 + type: Transform + - uid: 11345 + components: + - pos: 35.5,-31.5 + parent: 4812 + type: Transform + - uid: 11371 + components: + - pos: 35.5,-39.5 + parent: 4812 + type: Transform + - uid: 11372 + components: + - pos: 35.5,-40.5 + parent: 4812 + type: Transform + - uid: 11373 + components: + - pos: 34.5,-40.5 + parent: 4812 + type: Transform + - uid: 11374 + components: + - pos: 33.5,-40.5 + parent: 4812 + type: Transform + - uid: 11375 + components: + - pos: 32.5,-40.5 + parent: 4812 + type: Transform + - uid: 11376 + components: + - pos: 31.5,-40.5 + parent: 4812 + type: Transform + - uid: 11377 + components: + - pos: 30.5,-40.5 + parent: 4812 + type: Transform + - uid: 11378 + components: + - pos: 29.5,-40.5 + parent: 4812 + type: Transform + - uid: 11379 + components: + - pos: 29.5,-39.5 + parent: 4812 + type: Transform + - uid: 11380 + components: + - pos: 29.5,-38.5 + parent: 4812 + type: Transform + - uid: 11381 + components: + - pos: 29.5,-37.5 + parent: 4812 + type: Transform + - uid: 11382 + components: + - pos: 28.5,-37.5 + parent: 4812 + type: Transform +- proto: WallSolid + entities: + - uid: 1 + components: + - pos: 0.5,-9.5 + parent: 4812 + type: Transform + - uid: 2 + components: + - pos: 0.5,-10.5 + parent: 4812 + type: Transform + - uid: 3 + components: + - pos: 1.5,-4.5 + parent: 4812 + type: Transform + - uid: 4 + components: + - pos: 1.5,-3.5 + parent: 4812 + type: Transform + - uid: 5 + components: + - pos: 1.5,0.5 + parent: 4812 + type: Transform + - uid: 6 + components: + - pos: 1.5,1.5 + parent: 4812 + type: Transform + - uid: 7 + components: + - pos: 4.5,1.5 + parent: 4812 + type: Transform + - uid: 8 + components: + - pos: 4.5,3.5 + parent: 4812 + type: Transform + - uid: 9 + components: + - pos: 4.5,9.5 + parent: 4812 + type: Transform + - uid: 10 + components: + - pos: 4.5,8.5 + parent: 4812 + type: Transform + - uid: 11 + components: + - pos: 4.5,4.5 + parent: 4812 + type: Transform + - uid: 13 + components: + - pos: 4.5,5.5 + parent: 4812 + type: Transform + - uid: 14 + components: + - pos: 5.5,5.5 + parent: 4812 + type: Transform + - uid: 15 + components: + - pos: 6.5,5.5 + parent: 4812 + type: Transform + - uid: 16 + components: + - pos: 7.5,5.5 + parent: 4812 + type: Transform + - uid: 17 + components: + - pos: 8.5,5.5 + parent: 4812 + type: Transform + - uid: 18 + components: + - pos: 8.5,6.5 + parent: 4812 + type: Transform + - uid: 19 + components: + - pos: 8.5,8.5 + parent: 4812 + type: Transform + - uid: 20 + components: + - pos: 8.5,9.5 + parent: 4812 + type: Transform + - uid: 21 + components: + - pos: 8.5,10.5 + parent: 4812 + type: Transform + - uid: 22 + components: + - pos: 7.5,10.5 + parent: 4812 + type: Transform + - uid: 23 + components: + - pos: 6.5,10.5 + parent: 4812 + type: Transform + - uid: 24 + components: + - pos: 5.5,10.5 + parent: 4812 + type: Transform + - uid: 25 + components: + - pos: 4.5,10.5 + parent: 4812 + type: Transform + - uid: 26 + components: + - pos: 3.5,10.5 + parent: 4812 + type: Transform + - uid: 27 + components: + - pos: 2.5,10.5 + parent: 4812 + type: Transform + - uid: 28 + components: + - pos: -6.5,10.5 + parent: 4812 + type: Transform + - uid: 29 + components: + - pos: -6.5,11.5 + parent: 4812 + type: Transform + - uid: 30 + components: + - pos: -6.5,12.5 + parent: 4812 + type: Transform + - uid: 31 + components: + - pos: -5.5,12.5 + parent: 4812 + type: Transform + - uid: 33 + components: + - pos: -5.5,15.5 + parent: 4812 + type: Transform + - uid: 34 + components: + - pos: -5.5,14.5 + parent: 4812 + type: Transform + - uid: 36 + components: + - pos: 0.5,15.5 + parent: 4812 + type: Transform + - uid: 37 + components: + - pos: 0.5,13.5 + parent: 4812 + type: Transform + - uid: 38 + components: + - pos: 0.5,12.5 + parent: 4812 + type: Transform + - uid: 39 + components: + - pos: 1.5,12.5 + parent: 4812 + type: Transform + - uid: 40 + components: + - pos: 1.5,11.5 + parent: 4812 + type: Transform + - uid: 41 + components: + - pos: 1.5,10.5 + parent: 4812 + type: Transform + - uid: 42 + components: + - pos: 1.5,-9.5 + parent: 4812 + type: Transform + - uid: 43 + components: + - pos: 2.5,-9.5 + parent: 4812 + type: Transform + - uid: 44 + components: + - pos: 2.5,-10.5 + parent: 4812 + type: Transform + - uid: 45 + components: + - pos: 1.5,-7.5 + parent: 4812 + type: Transform + - uid: 46 + components: + - pos: 1.5,-6.5 + parent: 4812 + type: Transform + - uid: 47 + components: + - pos: 1.5,-5.5 + parent: 4812 + type: Transform + - uid: 48 + components: + - pos: -5.5,-10.5 + parent: 4812 + type: Transform + - uid: 49 + components: + - pos: -5.5,-9.5 + parent: 4812 + type: Transform + - uid: 50 + components: + - pos: -5.5,-8.5 + parent: 4812 + type: Transform + - uid: 51 + components: + - pos: -6.5,-8.5 + parent: 4812 + type: Transform + - uid: 52 + components: + - pos: -6.5,-4.5 + parent: 4812 + type: Transform + - uid: 53 + components: + - pos: -6.5,-2.5 + parent: 4812 + type: Transform + - uid: 54 + components: + - pos: -6.5,-1.5 + parent: 4812 + type: Transform + - uid: 55 + components: + - pos: -6.5,0.5 + parent: 4812 + type: Transform + - uid: 56 + components: + - pos: -6.5,1.5 + parent: 4812 + type: Transform + - uid: 57 + components: + - pos: -6.5,2.5 + parent: 4812 + type: Transform + - uid: 58 + components: + - pos: -7.5,2.5 + parent: 4812 + type: Transform + - uid: 59 + components: + - pos: -7.5,10.5 + parent: 4812 + type: Transform + - uid: 60 + components: + - pos: -9.5,10.5 + parent: 4812 + type: Transform + - uid: 61 + components: + - pos: -10.5,10.5 + parent: 4812 + type: Transform + - uid: 62 + components: + - pos: -11.5,10.5 + parent: 4812 + type: Transform + - uid: 63 + components: + - pos: -11.5,9.5 + parent: 4812 + type: Transform + - uid: 64 + components: + - pos: -11.5,8.5 + parent: 4812 + type: Transform + - uid: 65 + components: + - pos: -11.5,7.5 + parent: 4812 + type: Transform + - uid: 66 + components: + - pos: -11.5,6.5 + parent: 4812 + type: Transform + - uid: 67 + components: + - pos: -11.5,5.5 + parent: 4812 + type: Transform + - uid: 68 + components: + - pos: -11.5,4.5 + parent: 4812 + type: Transform + - uid: 69 + components: + - pos: -11.5,3.5 + parent: 4812 + type: Transform + - uid: 70 + components: + - pos: -11.5,2.5 + parent: 4812 + type: Transform + - uid: 71 + components: + - pos: -11.5,1.5 + parent: 4812 + type: Transform + - uid: 72 + components: + - pos: -11.5,0.5 + parent: 4812 + type: Transform + - uid: 73 + components: + - pos: -11.5,-0.5 + parent: 4812 + type: Transform + - uid: 74 + components: + - pos: -11.5,-1.5 + parent: 4812 + type: Transform + - uid: 75 + components: + - pos: -11.5,-2.5 + parent: 4812 + type: Transform + - uid: 76 + components: + - pos: -7.5,-2.5 + parent: 4812 + type: Transform + - uid: 77 + components: + - pos: -8.5,-2.5 + parent: 4812 + type: Transform + - uid: 78 + components: + - pos: -9.5,-2.5 + parent: 4812 + type: Transform + - uid: 79 + components: + - pos: -10.5,-2.5 + parent: 4812 + type: Transform + - uid: 80 + components: + - pos: -9.5,2.5 + parent: 4812 + type: Transform + - uid: 81 + components: + - pos: -10.5,2.5 + parent: 4812 + type: Transform + - uid: 82 + components: + - pos: 8.5,-0.5 + parent: 4812 + type: Transform + - uid: 83 + components: + - pos: 8.5,0.5 + parent: 4812 + type: Transform + - uid: 84 + components: + - pos: 8.5,1.5 + parent: 4812 + type: Transform + - uid: 85 + components: + - pos: 7.5,1.5 + parent: 4812 + type: Transform + - uid: 86 + components: + - pos: 6.5,1.5 + parent: 4812 + type: Transform + - uid: 87 + components: + - pos: 5.5,1.5 + parent: 4812 + type: Transform + - uid: 88 + components: + - pos: 8.5,-2.5 + parent: 4812 + type: Transform + - uid: 89 + components: + - pos: 8.5,-3.5 + parent: 4812 + type: Transform + - uid: 90 + components: + - pos: 8.5,-4.5 + parent: 4812 + type: Transform + - uid: 91 + components: + - pos: 7.5,-4.5 + parent: 4812 + type: Transform + - uid: 92 + components: + - pos: 6.5,-4.5 + parent: 4812 + type: Transform + - uid: 93 + components: + - pos: 5.5,-4.5 + parent: 4812 + type: Transform + - uid: 94 + components: + - pos: 3.5,-4.5 + parent: 4812 + type: Transform + - uid: 95 + components: + - pos: 2.5,-4.5 + parent: 4812 + type: Transform + - uid: 96 + components: + - pos: 2.5,-7.5 + parent: 4812 + type: Transform + - uid: 97 + components: + - pos: 3.5,-7.5 + parent: 4812 + type: Transform + - uid: 98 + components: + - pos: 4.5,-7.5 + parent: 4812 + type: Transform + - uid: 99 + components: + - pos: 4.5,-8.5 + parent: 4812 + type: Transform + - uid: 100 + components: + - pos: 5.5,-8.5 + parent: 4812 + type: Transform + - uid: 101 + components: + - pos: 7.5,-8.5 + parent: 4812 + type: Transform + - uid: 102 + components: + - pos: 8.5,-8.5 + parent: 4812 + type: Transform + - uid: 103 + components: + - pos: 6.5,-8.5 + parent: 4812 + type: Transform + - uid: 104 + components: + - pos: 8.5,-7.5 + parent: 4812 + type: Transform + - uid: 105 + components: + - pos: 8.5,-5.5 + parent: 4812 + type: Transform + - uid: 139 + components: + - pos: 3.5,-10.5 + parent: 4812 + type: Transform + - uid: 140 + components: + - pos: 4.5,-10.5 + parent: 4812 + type: Transform + - uid: 141 + components: + - pos: 5.5,-10.5 + parent: 4812 + type: Transform + - uid: 142 + components: + - pos: 6.5,-10.5 + parent: 4812 + type: Transform + - uid: 143 + components: + - pos: 7.5,-10.5 + parent: 4812 + type: Transform + - uid: 145 + components: + - pos: 9.5,-10.5 + parent: 4812 + type: Transform + - uid: 146 + components: + - pos: 10.5,-10.5 + parent: 4812 + type: Transform + - uid: 147 + components: + - pos: 10.5,-9.5 + parent: 4812 + type: Transform + - uid: 148 + components: + - pos: 10.5,-8.5 + parent: 4812 + type: Transform + - uid: 149 + components: + - pos: 10.5,-7.5 + parent: 4812 + type: Transform + - uid: 150 + components: + - pos: 10.5,-6.5 + parent: 4812 + type: Transform + - uid: 151 + components: + - pos: 10.5,-5.5 + parent: 4812 + type: Transform + - uid: 152 + components: + - pos: 10.5,-4.5 + parent: 4812 + type: Transform + - uid: 153 + components: + - pos: 10.5,-3.5 + parent: 4812 + type: Transform + - uid: 154 + components: + - pos: 10.5,-2.5 + parent: 4812 + type: Transform + - uid: 155 + components: + - pos: 10.5,-1.5 + parent: 4812 + type: Transform + - uid: 156 + components: + - pos: 10.5,-0.5 + parent: 4812 + type: Transform + - uid: 157 + components: + - pos: 10.5,0.5 + parent: 4812 + type: Transform + - uid: 158 + components: + - pos: 10.5,1.5 + parent: 4812 + type: Transform + - uid: 159 + components: + - pos: 10.5,2.5 + parent: 4812 + type: Transform + - uid: 161 + components: + - pos: 10.5,4.5 + parent: 4812 + type: Transform + - uid: 162 + components: + - pos: 10.5,5.5 + parent: 4812 + type: Transform + - uid: 163 + components: + - pos: 10.5,6.5 + parent: 4812 + type: Transform + - uid: 164 + components: + - pos: 10.5,7.5 + parent: 4812 + type: Transform + - uid: 165 + components: + - pos: 10.5,8.5 + parent: 4812 + type: Transform + - uid: 166 + components: + - pos: 10.5,9.5 + parent: 4812 + type: Transform + - uid: 167 + components: + - pos: 10.5,10.5 + parent: 4812 + type: Transform + - uid: 168 + components: + - pos: 10.5,11.5 + parent: 4812 + type: Transform + - uid: 169 + components: + - pos: 10.5,12.5 + parent: 4812 + type: Transform + - uid: 177 + components: + - pos: -21.5,13.5 + parent: 4812 + type: Transform + - uid: 180 + components: + - pos: -21.5,15.5 + parent: 4812 + type: Transform + - uid: 181 + components: + - pos: -21.5,18.5 + parent: 4812 + type: Transform + - uid: 182 + components: + - pos: -21.5,17.5 + parent: 4812 + type: Transform + - uid: 183 + components: + - pos: -20.5,18.5 + parent: 4812 + type: Transform + - uid: 185 + components: + - pos: -16.5,18.5 + parent: 4812 + type: Transform + - uid: 186 + components: + - pos: -21.5,12.5 + parent: 4812 + type: Transform + - uid: 189 + components: + - pos: -21.5,7.5 + parent: 4812 + type: Transform + - uid: 190 + components: + - pos: -21.5,6.5 + parent: 4812 + type: Transform + - uid: 191 + components: + - pos: -22.5,6.5 + parent: 4812 + type: Transform + - uid: 192 + components: + - pos: -23.5,6.5 + parent: 4812 + type: Transform + - uid: 193 + components: + - pos: -24.5,6.5 + parent: 4812 + type: Transform + - uid: 194 + components: + - pos: -24.5,5.5 + parent: 4812 + type: Transform + - uid: 195 + components: + - pos: -24.5,-1.5 + parent: 4812 + type: Transform + - uid: 196 + components: + - pos: -24.5,-2.5 + parent: 4812 + type: Transform + - uid: 197 + components: + - pos: -23.5,-2.5 + parent: 4812 + type: Transform + - uid: 198 + components: + - pos: -23.5,-3.5 + parent: 4812 + type: Transform + - uid: 199 + components: + - pos: -23.5,-5.5 + parent: 4812 + type: Transform + - uid: 200 + components: + - pos: -24.5,-6.5 + parent: 4812 + type: Transform + - uid: 201 + components: + - pos: -24.5,-5.5 + parent: 4812 + type: Transform + - uid: 202 + components: + - pos: -24.5,-7.5 + parent: 4812 + type: Transform + - uid: 203 + components: + - pos: -24.5,-8.5 + parent: 4812 + type: Transform + - uid: 204 + components: + - pos: -24.5,-9.5 + parent: 4812 + type: Transform + - uid: 205 + components: + - pos: -24.5,-10.5 + parent: 4812 + type: Transform + - uid: 206 + components: + - pos: -23.5,-10.5 + parent: 4812 + type: Transform + - uid: 207 + components: + - pos: -21.5,-10.5 + parent: 4812 + type: Transform + - uid: 208 + components: + - pos: -20.5,-10.5 + parent: 4812 + type: Transform + - uid: 209 + components: + - pos: -19.5,-10.5 + parent: 4812 + type: Transform + - uid: 210 + components: + - pos: -18.5,-10.5 + parent: 4812 + type: Transform + - uid: 211 + components: + - pos: -7.5,-10.5 + parent: 4812 + type: Transform + - uid: 212 + components: + - pos: -11.5,-10.5 + parent: 4812 + type: Transform + - uid: 213 + components: + - pos: -13.5,-10.5 + parent: 4812 + type: Transform + - uid: 214 + components: + - pos: -15.5,-10.5 + parent: 4812 + type: Transform + - uid: 225 + components: + - pos: -19.5,-9.5 + parent: 4812 + type: Transform + - uid: 226 + components: + - pos: -19.5,-8.5 + parent: 4812 + type: Transform + - uid: 227 + components: + - pos: -19.5,-7.5 + parent: 4812 + type: Transform + - uid: 228 + components: + - pos: -19.5,-6.5 + parent: 4812 + type: Transform + - uid: 229 + components: + - pos: -19.5,-5.5 + parent: 4812 + type: Transform + - uid: 230 + components: + - pos: -20.5,-5.5 + parent: 4812 + type: Transform + - uid: 231 + components: + - pos: -22.5,-5.5 + parent: 4812 + type: Transform + - uid: 232 + components: + - pos: -7.5,-4.5 + parent: 4812 + type: Transform + - uid: 233 + components: + - pos: -8.5,-4.5 + parent: 4812 + type: Transform + - uid: 234 + components: + - pos: -9.5,-4.5 + parent: 4812 + type: Transform + - uid: 235 + components: + - pos: -11.5,-4.5 + parent: 4812 + type: Transform + - uid: 236 + components: + - pos: -12.5,-4.5 + parent: 4812 + type: Transform + - uid: 237 + components: + - pos: -13.5,-4.5 + parent: 4812 + type: Transform + - uid: 238 + components: + - pos: -14.5,-4.5 + parent: 4812 + type: Transform + - uid: 239 + components: + - pos: -15.5,-4.5 + parent: 4812 + type: Transform + - uid: 240 + components: + - pos: -16.5,-4.5 + parent: 4812 + type: Transform + - uid: 241 + components: + - pos: -17.5,-4.5 + parent: 4812 + type: Transform + - uid: 242 + components: + - pos: -18.5,-4.5 + parent: 4812 + type: Transform + - uid: 243 + components: + - pos: -19.5,-4.5 + parent: 4812 + type: Transform + - uid: 244 + components: + - pos: -22.5,-2.5 + parent: 4812 + type: Transform + - uid: 245 + components: + - pos: -21.5,-2.5 + parent: 4812 + type: Transform + - uid: 246 + components: + - pos: -20.5,-2.5 + parent: 4812 + type: Transform + - uid: 247 + components: + - pos: -19.5,-2.5 + parent: 4812 + type: Transform + - uid: 248 + components: + - pos: -18.5,-2.5 + parent: 4812 + type: Transform + - uid: 249 + components: + - pos: -17.5,-2.5 + parent: 4812 + type: Transform + - uid: 250 + components: + - pos: -16.5,-2.5 + parent: 4812 + type: Transform + - uid: 262 + components: + - pos: -13.5,6.5 + parent: 4812 + type: Transform + - uid: 263 + components: + - pos: -14.5,6.5 + parent: 4812 + type: Transform + - uid: 264 + components: + - pos: -15.5,6.5 + parent: 4812 + type: Transform + - uid: 265 + components: + - pos: -16.5,6.5 + parent: 4812 + type: Transform + - uid: 266 + components: + - pos: -17.5,6.5 + parent: 4812 + type: Transform + - uid: 267 + components: + - pos: -18.5,6.5 + parent: 4812 + type: Transform + - uid: 268 + components: + - pos: -19.5,6.5 + parent: 4812 + type: Transform + - uid: 269 + components: + - pos: -20.5,6.5 + parent: 4812 + type: Transform + - uid: 270 + components: + - pos: -19.5,3.5 + parent: 4812 + type: Transform + - uid: 271 + components: + - pos: -19.5,4.5 + parent: 4812 + type: Transform + - uid: 272 + components: + - pos: -19.5,5.5 + parent: 4812 + type: Transform + - uid: 273 + components: + - pos: -17.5,3.5 + parent: 4812 + type: Transform + - uid: 274 + components: + - pos: -16.5,3.5 + parent: 4812 + type: Transform + - uid: 275 + components: + - pos: -16.5,4.5 + parent: 4812 + type: Transform + - uid: 276 + components: + - pos: -16.5,5.5 + parent: 4812 + type: Transform + - uid: 279 + components: + - pos: -16.5,-1.5 + parent: 4812 + type: Transform + - uid: 280 + components: + - pos: -16.5,-0.5 + parent: 4812 + type: Transform + - uid: 281 + components: + - pos: -16.5,0.5 + parent: 4812 + type: Transform + - uid: 282 + components: + - pos: -17.5,0.5 + parent: 4812 + type: Transform + - uid: 283 + components: + - pos: -19.5,-1.5 + parent: 4812 + type: Transform + - uid: 284 + components: + - pos: -19.5,-0.5 + parent: 4812 + type: Transform + - uid: 285 + components: + - pos: -19.5,0.5 + parent: 4812 + type: Transform + - uid: 286 + components: + - pos: -15.5,7.5 + parent: 4812 + type: Transform + - uid: 287 + components: + - pos: -15.5,8.5 + parent: 4812 + type: Transform + - uid: 288 + components: + - pos: -15.5,9.5 + parent: 4812 + type: Transform + - uid: 289 + components: + - pos: -15.5,11.5 + parent: 4812 + type: Transform + - uid: 290 + components: + - pos: -15.5,12.5 + parent: 4812 + type: Transform + - uid: 291 + components: + - pos: -15.5,13.5 + parent: 4812 + type: Transform + - uid: 292 + components: + - pos: -16.5,13.5 + parent: 4812 + type: Transform + - uid: 293 + components: + - pos: -17.5,13.5 + parent: 4812 + type: Transform + - uid: 294 + components: + - pos: -18.5,13.5 + parent: 4812 + type: Transform + - uid: 295 + components: + - pos: -19.5,13.5 + parent: 4812 + type: Transform + - uid: 296 + components: + - pos: -20.5,13.5 + parent: 4812 + type: Transform + - uid: 318 + components: + - pos: 1.5,4.5 + parent: 4812 + type: Transform + - uid: 429 + components: + - pos: 13.5,9.5 + parent: 4812 + type: Transform + - uid: 898 + components: + - pos: -13.5,7.5 + parent: 4812 + type: Transform + - uid: 899 + components: + - pos: -13.5,8.5 + parent: 4812 + type: Transform + - uid: 900 + components: + - pos: -13.5,9.5 + parent: 4812 + type: Transform + - uid: 1253 + components: + - pos: -16.5,1.5 + parent: 4812 + type: Transform + - uid: 1917 + components: + - pos: 9.5,29.5 + parent: 4812 + type: Transform + - uid: 1918 + components: + - pos: 9.5,27.5 + parent: 4812 + type: Transform + - uid: 1919 + components: + - pos: 10.5,27.5 + parent: 4812 + type: Transform + - uid: 1978 + components: + - pos: -15.5,26.5 + parent: 4812 + type: Transform + - uid: 1979 + components: + - pos: -14.5,26.5 + parent: 4812 + type: Transform + - uid: 1980 + components: + - pos: -14.5,25.5 + parent: 4812 + type: Transform + - uid: 1981 + components: + - pos: -14.5,27.5 + parent: 4812 + type: Transform + - uid: 1982 + components: + - pos: -14.5,29.5 + parent: 4812 + type: Transform + - uid: 2738 + components: + - pos: 13.5,21.5 + parent: 4812 + type: Transform + - uid: 2739 + components: + - pos: 13.5,22.5 + parent: 4812 + type: Transform + - uid: 2740 + components: + - pos: 13.5,23.5 + parent: 4812 + type: Transform + - uid: 2742 + components: + - pos: 13.5,25.5 + parent: 4812 + type: Transform + - uid: 2743 + components: + - pos: 13.5,26.5 + parent: 4812 + type: Transform + - uid: 2744 + components: + - pos: 13.5,27.5 + parent: 4812 + type: Transform + - uid: 2745 + components: + - pos: 13.5,28.5 + parent: 4812 + type: Transform + - uid: 2788 + components: + - pos: 13.5,16.5 + parent: 4812 + type: Transform + - uid: 2789 + components: + - pos: 13.5,18.5 + parent: 4812 + type: Transform + - uid: 2790 + components: + - pos: 21.5,16.5 + parent: 4812 + type: Transform + - uid: 2791 + components: + - pos: 17.5,16.5 + parent: 4812 + type: Transform + - uid: 2792 + components: + - pos: 21.5,12.5 + parent: 4812 + type: Transform + - uid: 2793 + components: + - pos: 20.5,12.5 + parent: 4812 + type: Transform + - uid: 2794 + components: + - pos: 19.5,12.5 + parent: 4812 + type: Transform + - uid: 2795 + components: + - pos: 18.5,12.5 + parent: 4812 + type: Transform + - uid: 2796 + components: + - pos: 17.5,12.5 + parent: 4812 + type: Transform + - uid: 2797 + components: + - pos: 16.5,12.5 + parent: 4812 + type: Transform + - uid: 2798 + components: + - pos: 15.5,12.5 + parent: 4812 + type: Transform + - uid: 2799 + components: + - pos: 14.5,12.5 + parent: 4812 + type: Transform + - uid: 2800 + components: + - pos: 13.5,12.5 + parent: 4812 + type: Transform + - uid: 2851 + components: + - pos: 17.5,22.5 + parent: 4812 + type: Transform + - uid: 3348 + components: + - pos: 13.5,11.5 + parent: 4812 + type: Transform + - uid: 3351 + components: + - pos: 19.5,11.5 + parent: 4812 + type: Transform + - uid: 3354 + components: + - pos: 19.5,9.5 + parent: 4812 + type: Transform + - uid: 3435 + components: + - pos: 17.5,33.5 + parent: 4812 + type: Transform + - uid: 3462 + components: + - pos: 18.5,34.5 + parent: 4812 + type: Transform + - uid: 3463 + components: + - pos: 15.5,33.5 + parent: 4812 + type: Transform + - uid: 3474 + components: + - pos: 18.5,44.5 + parent: 4812 + type: Transform + - uid: 3475 + components: + - pos: 16.5,41.5 + parent: 4812 + type: Transform + - uid: 3476 + components: + - pos: 10.5,40.5 + parent: 4812 + type: Transform + - uid: 3980 + components: + - pos: -17.5,37.5 + parent: 4812 + type: Transform + - uid: 3981 + components: + - pos: -14.5,33.5 + parent: 4812 + type: Transform + - uid: 3983 + components: + - pos: 13.5,8.5 + parent: 4812 + type: Transform + - uid: 3984 + components: + - pos: 13.5,6.5 + parent: 4812 + type: Transform + - uid: 3985 + components: + - pos: 13.5,5.5 + parent: 4812 + type: Transform + - uid: 3986 + components: + - pos: 14.5,9.5 + parent: 4812 + type: Transform + - uid: 3987 + components: + - pos: 15.5,9.5 + parent: 4812 + type: Transform + - uid: 3988 + components: + - pos: 16.5,9.5 + parent: 4812 + type: Transform + - uid: 3989 + components: + - pos: 17.5,9.5 + parent: 4812 + type: Transform + - uid: 4006 + components: + - pos: 19.5,5.5 + parent: 4812 + type: Transform + - uid: 4013 + components: + - pos: -44.5,-31.5 + parent: 4812 + type: Transform + - uid: 4014 + components: + - pos: -43.5,-31.5 + parent: 4812 + type: Transform + - uid: 4015 + components: + - pos: 19.5,3.5 + parent: 4812 + type: Transform + - uid: 4016 + components: + - pos: 23.5,1.5 + parent: 4812 + type: Transform + - uid: 4017 + components: + - pos: 21.5,1.5 + parent: 4812 + type: Transform + - uid: 4018 + components: + - pos: 20.5,0.5 + parent: 4812 + type: Transform + - uid: 4019 + components: + - pos: 18.5,0.5 + parent: 4812 + type: Transform + - uid: 4020 + components: + - pos: 17.5,0.5 + parent: 4812 + type: Transform + - uid: 4021 + components: + - pos: 16.5,0.5 + parent: 4812 + type: Transform + - uid: 4022 + components: + - pos: 16.5,1.5 + parent: 4812 + type: Transform + - uid: 4023 + components: + - pos: 16.5,2.5 + parent: 4812 + type: Transform + - uid: 4024 + components: + - pos: 17.5,3.5 + parent: 4812 + type: Transform + - uid: 4025 + components: + - pos: 14.5,4.5 + parent: 4812 + type: Transform + - uid: 4026 + components: + - pos: 14.5,5.5 + parent: 4812 + type: Transform + - uid: 4027 + components: + - pos: 15.5,5.5 + parent: 4812 + type: Transform + - uid: 4028 + components: + - pos: 16.5,5.5 + parent: 4812 + type: Transform + - uid: 4029 + components: + - pos: 17.5,5.5 + parent: 4812 + type: Transform + - uid: 4030 + components: + - pos: 17.5,6.5 + parent: 4812 + type: Transform + - uid: 4031 + components: + - pos: 17.5,7.5 + parent: 4812 + type: Transform + - uid: 4032 + components: + - pos: 17.5,8.5 + parent: 4812 + type: Transform + - uid: 4033 + components: + - pos: 14.5,2.5 + parent: 4812 + type: Transform + - uid: 4034 + components: + - pos: 14.5,1.5 + parent: 4812 + type: Transform + - uid: 4035 + components: + - pos: 14.5,0.5 + parent: 4812 + type: Transform + - uid: 4036 + components: + - pos: 14.5,-0.5 + parent: 4812 + type: Transform + - uid: 4037 + components: + - pos: 14.5,-1.5 + parent: 4812 + type: Transform + - uid: 4038 + components: + - pos: 23.5,-0.5 + parent: 4812 + type: Transform + - uid: 4039 + components: + - pos: 23.5,-1.5 + parent: 4812 + type: Transform + - uid: 4040 + components: + - pos: 22.5,-1.5 + parent: 4812 + type: Transform + - uid: 4041 + components: + - pos: 21.5,-1.5 + parent: 4812 + type: Transform + - uid: 4042 + components: + - pos: 20.5,-1.5 + parent: 4812 + type: Transform + - uid: 4043 + components: + - pos: 19.5,-1.5 + parent: 4812 + type: Transform + - uid: 4044 + components: + - pos: 18.5,-1.5 + parent: 4812 + type: Transform + - uid: 4045 + components: + - pos: 17.5,-1.5 + parent: 4812 + type: Transform + - uid: 4046 + components: + - pos: 16.5,-1.5 + parent: 4812 + type: Transform + - uid: 4047 + components: + - pos: 15.5,-1.5 + parent: 4812 + type: Transform + - uid: 4049 + components: + - pos: 13.5,0.5 + parent: 4812 + type: Transform + - uid: 4118 + components: + - pos: 26.5,-6.5 + parent: 4812 + type: Transform + - uid: 4119 + components: + - pos: 26.5,-5.5 + parent: 4812 + type: Transform + - uid: 4120 + components: + - pos: 26.5,0.5 + parent: 4812 + type: Transform + - uid: 4121 + components: + - pos: 26.5,1.5 + parent: 4812 + type: Transform + - uid: 4123 + components: + - pos: 23.5,-4.5 + parent: 4812 + type: Transform + - uid: 4124 + components: + - pos: 22.5,-4.5 + parent: 4812 + type: Transform + - uid: 4125 + components: + - pos: 22.5,-5.5 + parent: 4812 + type: Transform + - uid: 4126 + components: + - pos: 21.5,-5.5 + parent: 4812 + type: Transform + - uid: 4127 + components: + - pos: 22.5,-6.5 + parent: 4812 + type: Transform + - uid: 4128 + components: + - pos: 13.5,-5.5 + parent: 4812 + type: Transform + - uid: 4129 + components: + - pos: 14.5,-5.5 + parent: 4812 + type: Transform + - uid: 4130 + components: + - pos: 14.5,-4.5 + parent: 4812 + type: Transform + - uid: 4131 + components: + - pos: 15.5,-4.5 + parent: 4812 + type: Transform + - uid: 4132 + components: + - pos: 14.5,-6.5 + parent: 4812 + type: Transform + - uid: 4133 + components: + - pos: 13.5,-10.5 + parent: 4812 + type: Transform + - uid: 4649 + components: + - pos: -4.5,-14.5 + parent: 4812 + type: Transform + - uid: 4650 + components: + - pos: -0.5,-14.5 + parent: 4812 + type: Transform + - uid: 4651 + components: + - pos: -0.5,-20.5 + parent: 4812 + type: Transform + - uid: 4652 + components: + - pos: -1.5,-20.5 + parent: 4812 + type: Transform + - uid: 4653 + components: + - pos: -2.5,-20.5 + parent: 4812 + type: Transform + - uid: 4654 + components: + - pos: -3.5,-20.5 + parent: 4812 + type: Transform + - uid: 4655 + components: + - pos: -4.5,-20.5 + parent: 4812 + type: Transform + - uid: 4717 + components: + - pos: -45.5,-26.5 + parent: 4812 + type: Transform + - uid: 4756 + components: + - pos: -45.5,-28.5 + parent: 4812 + type: Transform + - uid: 4757 + components: + - pos: -45.5,-29.5 + parent: 4812 + type: Transform + - uid: 4783 + components: + - pos: 3.5,-35.5 + parent: 4812 + type: Transform + - uid: 4784 + components: + - pos: 3.5,-34.5 + parent: 4812 + type: Transform + - uid: 4785 + components: + - pos: 3.5,-33.5 + parent: 4812 + type: Transform + - uid: 4786 + components: + - pos: 2.5,-33.5 + parent: 4812 + type: Transform + - uid: 4787 + components: + - pos: -0.5,-33.5 + parent: 4812 + type: Transform + - uid: 4788 + components: + - pos: -4.5,-33.5 + parent: 4812 + type: Transform + - uid: 4793 + components: + - pos: -11.5,-33.5 + parent: 4812 + type: Transform + - uid: 4794 + components: + - pos: -12.5,-33.5 + parent: 4812 + type: Transform + - uid: 4795 + components: + - pos: -12.5,-36.5 + parent: 4812 + type: Transform + - uid: 4797 + components: + - pos: -44.5,-29.5 + parent: 4812 + type: Transform + - uid: 4814 + components: + - pos: -18.5,-28.5 + parent: 4812 + type: Transform + - uid: 4916 + components: + - pos: -22.5,-24.5 + parent: 4812 + type: Transform + - uid: 4918 + components: + - pos: -23.5,-25.5 + parent: 4812 + type: Transform + - uid: 4919 + components: + - pos: -23.5,-26.5 + parent: 4812 + type: Transform + - uid: 4922 + components: + - pos: -23.5,-28.5 + parent: 4812 + type: Transform + - uid: 4937 + components: + - pos: -11.5,-29.5 + parent: 4812 + type: Transform + - uid: 5024 + components: + - pos: -17.5,-19.5 + parent: 4812 + type: Transform + - uid: 5050 + components: + - pos: -18.5,-25.5 + parent: 4812 + type: Transform + - uid: 5333 + components: + - pos: 17.5,-13.5 + parent: 4812 + type: Transform + - uid: 5334 + components: + - pos: 17.5,-14.5 + parent: 4812 + type: Transform + - uid: 5335 + components: + - pos: 18.5,-13.5 + parent: 4812 + type: Transform + - uid: 5338 + components: + - pos: 18.5,-19.5 + parent: 4812 + type: Transform + - uid: 5339 + components: + - pos: 17.5,-19.5 + parent: 4812 + type: Transform + - uid: 5340 + components: + - pos: 17.5,-18.5 + parent: 4812 + type: Transform + - uid: 5341 + components: + - pos: 17.5,-16.5 + parent: 4812 + type: Transform + - uid: 5342 + components: + - pos: 17.5,-15.5 + parent: 4812 + type: Transform + - uid: 5390 + components: + - pos: 13.5,-13.5 + parent: 4812 + type: Transform + - uid: 5425 + components: + - pos: 6.5,-19.5 + parent: 4812 + type: Transform + - uid: 5426 + components: + - pos: 7.5,-19.5 + parent: 4812 + type: Transform + - uid: 5427 + components: + - pos: 8.5,-19.5 + parent: 4812 + type: Transform + - uid: 5430 + components: + - pos: 8.5,-14.5 + parent: 4812 + type: Transform + - uid: 5457 + components: + - pos: 7.5,-27.5 + parent: 4812 + type: Transform + - uid: 5465 + components: + - pos: 7.5,-22.5 + parent: 4812 + type: Transform + - uid: 5466 + components: + - pos: 10.5,-22.5 + parent: 4812 + type: Transform + - uid: 5467 + components: + - pos: 3.5,-22.5 + parent: 4812 + type: Transform + - uid: 5468 + components: + - pos: 10.5,-27.5 + parent: 4812 + type: Transform + - uid: 5562 + components: + - pos: 30.5,-23.5 + parent: 4812 + type: Transform + - uid: 5563 + components: + - pos: 30.5,-27.5 + parent: 4812 + type: Transform + - uid: 5567 + components: + - pos: 30.5,-28.5 + parent: 4812 + type: Transform + - uid: 5619 + components: + - pos: 8.5,-16.5 + parent: 4812 + type: Transform + - uid: 5620 + components: + - pos: 8.5,-18.5 + parent: 4812 + type: Transform + - uid: 5836 + components: + - pos: 3.5,-32.5 + parent: 4812 + type: Transform + - uid: 5837 + components: + - pos: 3.5,-31.5 + parent: 4812 + type: Transform + - uid: 6498 + components: + - pos: -28.5,-12.5 + parent: 4812 + type: Transform + - uid: 6501 + components: + - pos: -28.5,-13.5 + parent: 4812 + type: Transform + - uid: 6502 + components: + - pos: -27.5,-13.5 + parent: 4812 + type: Transform + - uid: 6503 + components: + - pos: -21.5,-13.5 + parent: 4812 + type: Transform + - uid: 6504 + components: + - pos: -22.5,-13.5 + parent: 4812 + type: Transform + - uid: 6505 + components: + - pos: -21.5,-14.5 + parent: 4812 + type: Transform + - uid: 6506 + components: + - pos: -21.5,-15.5 + parent: 4812 + type: Transform + - uid: 6507 + components: + - pos: -21.5,-16.5 + parent: 4812 + type: Transform + - uid: 6508 + components: + - pos: -21.5,-17.5 + parent: 4812 + type: Transform + - uid: 6509 + components: + - pos: -21.5,-18.5 + parent: 4812 + type: Transform + - uid: 6510 + components: + - pos: -21.5,-19.5 + parent: 4812 + type: Transform + - uid: 6511 + components: + - pos: -21.5,-20.5 + parent: 4812 + type: Transform + - uid: 6512 + components: + - pos: -21.5,-21.5 + parent: 4812 + type: Transform + - uid: 6513 + components: + - pos: -22.5,-21.5 + parent: 4812 + type: Transform + - uid: 6514 + components: + - pos: -23.5,-21.5 + parent: 4812 + type: Transform + - uid: 6515 + components: + - pos: -24.5,-21.5 + parent: 4812 + type: Transform + - uid: 6516 + components: + - pos: -25.5,-21.5 + parent: 4812 + type: Transform + - uid: 6517 + components: + - pos: -26.5,-21.5 + parent: 4812 + type: Transform + - uid: 6518 + components: + - pos: -27.5,-21.5 + parent: 4812 + type: Transform + - uid: 6520 + components: + - pos: -29.5,-21.5 + parent: 4812 + type: Transform + - uid: 6521 + components: + - pos: -29.5,-20.5 + parent: 4812 + type: Transform + - uid: 6522 + components: + - pos: -30.5,-20.5 + parent: 4812 + type: Transform + - uid: 6523 + components: + - pos: -29.5,-22.5 + parent: 4812 + type: Transform + - uid: 6524 + components: + - pos: -29.5,-23.5 + parent: 4812 + type: Transform + - uid: 6525 + components: + - pos: -29.5,-24.5 + parent: 4812 + type: Transform + - uid: 6526 + components: + - pos: -30.5,-24.5 + parent: 4812 + type: Transform + - uid: 6527 + components: + - pos: -31.5,-24.5 + parent: 4812 + type: Transform + - uid: 6528 + components: + - pos: -32.5,-24.5 + parent: 4812 + type: Transform + - uid: 6529 + components: + - pos: -33.5,-24.5 + parent: 4812 + type: Transform + - uid: 6530 + components: + - pos: -33.5,-23.5 + parent: 4812 + type: Transform + - uid: 6531 + components: + - pos: -33.5,-22.5 + parent: 4812 + type: Transform + - uid: 6532 + components: + - pos: -33.5,-21.5 + parent: 4812 + type: Transform + - uid: 6533 + components: + - pos: -33.5,-20.5 + parent: 4812 + type: Transform + - uid: 6534 + components: + - pos: -33.5,-19.5 + parent: 4812 + type: Transform + - uid: 6535 + components: + - pos: -33.5,-18.5 + parent: 4812 + type: Transform + - uid: 6536 + components: + - pos: -33.5,-17.5 + parent: 4812 + type: Transform + - uid: 6537 + components: + - pos: -33.5,-16.5 + parent: 4812 + type: Transform + - uid: 6538 + components: + - pos: -33.5,-15.5 + parent: 4812 + type: Transform + - uid: 6539 + components: + - pos: -33.5,-14.5 + parent: 4812 + type: Transform + - uid: 6540 + components: + - pos: -33.5,-13.5 + parent: 4812 + type: Transform + - uid: 6541 + components: + - pos: -32.5,-13.5 + parent: 4812 + type: Transform + - uid: 6542 + components: + - pos: -31.5,-13.5 + parent: 4812 + type: Transform + - uid: 6543 + components: + - pos: -30.5,-13.5 + parent: 4812 + type: Transform + - uid: 6544 + components: + - pos: -29.5,-13.5 + parent: 4812 + type: Transform + - uid: 6545 + components: + - pos: -32.5,-20.5 + parent: 4812 + type: Transform + - uid: 6549 + components: + - pos: -17.5,-13.5 + parent: 4812 + type: Transform + - uid: 6654 + components: + - pos: -7.5,-24.5 + parent: 4812 + type: Transform + - uid: 6683 + components: + - pos: -18.5,-24.5 + parent: 4812 + type: Transform + - uid: 6711 + components: + - pos: -20.5,-37.5 + parent: 4812 + type: Transform + - uid: 6712 + components: + - pos: -21.5,-37.5 + parent: 4812 + type: Transform + - uid: 6713 + components: + - pos: -21.5,-38.5 + parent: 4812 + type: Transform + - uid: 6714 + components: + - pos: -25.5,-39.5 + parent: 4812 + type: Transform + - uid: 6715 + components: + - pos: -25.5,-38.5 + parent: 4812 + type: Transform + - uid: 6716 + components: + - pos: -26.5,-38.5 + parent: 4812 + type: Transform + - uid: 6717 + components: + - pos: -27.5,-38.5 + parent: 4812 + type: Transform + - uid: 6718 + components: + - pos: -28.5,-38.5 + parent: 4812 + type: Transform + - uid: 6719 + components: + - pos: -28.5,-37.5 + parent: 4812 + type: Transform + - uid: 6720 + components: + - pos: -28.5,-36.5 + parent: 4812 + type: Transform + - uid: 6721 + components: + - pos: -28.5,-35.5 + parent: 4812 + type: Transform + - uid: 6722 + components: + - pos: -28.5,-34.5 + parent: 4812 + type: Transform + - uid: 6723 + components: + - pos: -20.5,-35.5 + parent: 4812 + type: Transform + - uid: 6724 + components: + - pos: -20.5,-34.5 + parent: 4812 + type: Transform + - uid: 6725 + components: + - pos: -20.5,-33.5 + parent: 4812 + type: Transform + - uid: 6726 + components: + - pos: -20.5,-32.5 + parent: 4812 + type: Transform + - uid: 6727 + components: + - pos: -22.5,-34.5 + parent: 4812 + type: Transform + - uid: 6728 + components: + - pos: -23.5,-34.5 + parent: 4812 + type: Transform + - uid: 6729 + components: + - pos: -24.5,-33.5 + parent: 4812 + type: Transform + - uid: 6730 + components: + - pos: -25.5,-34.5 + parent: 4812 + type: Transform + - uid: 6731 + components: + - pos: -27.5,-34.5 + parent: 4812 + type: Transform + - uid: 6732 + components: + - pos: -27.5,-33.5 + parent: 4812 + type: Transform + - uid: 6733 + components: + - pos: -27.5,-32.5 + parent: 4812 + type: Transform + - uid: 6734 + components: + - pos: -27.5,-31.5 + parent: 4812 + type: Transform + - uid: 6739 + components: + - pos: -25.5,-32.5 + parent: 4812 + type: Transform + - uid: 6740 + components: + - pos: -25.5,-33.5 + parent: 4812 + type: Transform + - uid: 6741 + components: + - pos: -23.5,-33.5 + parent: 4812 + type: Transform + - uid: 6742 + components: + - pos: -23.5,-32.5 + parent: 4812 + type: Transform + - uid: 6743 + components: + - pos: -23.5,-31.5 + parent: 4812 + type: Transform + - uid: 6744 + components: + - pos: -22.5,-31.5 + parent: 4812 + type: Transform + - uid: 6745 + components: + - pos: -20.5,-31.5 + parent: 4812 + type: Transform + - uid: 6746 + components: + - pos: -19.5,-31.5 + parent: 4812 + type: Transform + - uid: 6747 + components: + - pos: -12.5,-32.5 + parent: 4812 + type: Transform + - uid: 6748 + components: + - pos: -12.5,-31.5 + parent: 4812 + type: Transform + - uid: 6749 + components: + - pos: -13.5,-31.5 + parent: 4812 + type: Transform + - uid: 6750 + components: + - pos: -14.5,-31.5 + parent: 4812 + type: Transform + - uid: 6751 + components: + - pos: -15.5,-31.5 + parent: 4812 + type: Transform + - uid: 6752 + components: + - pos: -16.5,-31.5 + parent: 4812 + type: Transform + - uid: 6753 + components: + - pos: -17.5,-31.5 + parent: 4812 + type: Transform + - uid: 6766 + components: + - pos: -12.5,-29.5 + parent: 4812 + type: Transform + - uid: 6767 + components: + - pos: -13.5,-29.5 + parent: 4812 + type: Transform + - uid: 6768 + components: + - pos: -14.5,-29.5 + parent: 4812 + type: Transform + - uid: 6769 + components: + - pos: -15.5,-29.5 + parent: 4812 + type: Transform + - uid: 6770 + components: + - pos: -16.5,-29.5 + parent: 4812 + type: Transform + - uid: 6771 + components: + - pos: -17.5,-29.5 + parent: 4812 + type: Transform + - uid: 6772 + components: + - pos: -18.5,-29.5 + parent: 4812 + type: Transform + - uid: 6773 + components: + - pos: -19.5,-29.5 + parent: 4812 + type: Transform + - uid: 6774 + components: + - pos: -20.5,-29.5 + parent: 4812 + type: Transform + - uid: 6775 + components: + - pos: -21.5,-29.5 + parent: 4812 + type: Transform + - uid: 6776 + components: + - pos: -22.5,-29.5 + parent: 4812 + type: Transform + - uid: 6789 + components: + - pos: -27.5,-22.5 + parent: 4812 + type: Transform + - uid: 7060 + components: + - pos: -20.5,-19.5 + parent: 4812 + type: Transform + - uid: 7063 + components: + - pos: -17.5,-15.5 + parent: 4812 + type: Transform + - uid: 7184 + components: + - pos: -7.5,-23.5 + parent: 4812 + type: Transform + - uid: 7185 + components: + - pos: -19.5,-24.5 + parent: 4812 + type: Transform + - uid: 7187 + components: + - pos: -26.5,-31.5 + parent: 4812 + type: Transform + - uid: 7194 + components: + - pos: -23.5,-27.5 + parent: 4812 + type: Transform + - uid: 7195 + components: + - pos: -7.5,-28.5 + parent: 4812 + type: Transform + - uid: 7212 + components: + - pos: -13.5,-24.5 + parent: 4812 + type: Transform + - uid: 7213 + components: + - pos: -11.5,-24.5 + parent: 4812 + type: Transform + - uid: 7215 + components: + - pos: -11.5,-25.5 + parent: 4812 + type: Transform + - uid: 7217 + components: + - pos: -11.5,-27.5 + parent: 4812 + type: Transform + - uid: 7218 + components: + - pos: -11.5,-28.5 + parent: 4812 + type: Transform + - uid: 7235 + components: + - pos: -18.5,-19.5 + parent: 4812 + type: Transform + - uid: 7246 + components: + - pos: -17.5,-18.5 + parent: 4812 + type: Transform + - uid: 7314 + components: + - pos: -41.5,-25.5 + parent: 4812 + type: Transform + - uid: 7315 + components: + - pos: -44.5,-25.5 + parent: 4812 + type: Transform + - uid: 7317 + components: + - pos: -41.5,-29.5 + parent: 4812 + type: Transform + - uid: 7318 + components: + - pos: -42.5,-31.5 + parent: 4812 + type: Transform + - uid: 7319 + components: + - pos: -17.5,-14.5 + parent: 4812 + type: Transform + - uid: 7320 + components: + - pos: -16.5,-14.5 + parent: 4812 + type: Transform + - uid: 7321 + components: + - pos: -14.5,-14.5 + parent: 4812 + type: Transform + - uid: 7322 + components: + - pos: -15.5,-14.5 + parent: 4812 + type: Transform + - uid: 7727 + components: + - pos: -25.5,18.5 + parent: 4812 + type: Transform + - uid: 7728 + components: + - pos: -26.5,18.5 + parent: 4812 + type: Transform + - uid: 7729 + components: + - pos: -27.5,18.5 + parent: 4812 + type: Transform + - uid: 7953 + components: + - pos: -28.5,7.5 + parent: 4812 + type: Transform + - uid: 8162 + components: + - pos: -19.5,26.5 + parent: 4812 + type: Transform + - uid: 8163 + components: + - pos: -20.5,26.5 + parent: 4812 + type: Transform + - uid: 8164 + components: + - pos: -20.5,28.5 + parent: 4812 + type: Transform + - uid: 8456 + components: + - pos: -19.5,37.5 + parent: 4812 + type: Transform + - uid: 8457 + components: + - pos: -26.5,37.5 + parent: 4812 + type: Transform + - uid: 8833 + components: + - pos: -32.5,-37.5 + parent: 4812 + type: Transform + - uid: 8834 + components: + - pos: -31.5,-34.5 + parent: 4812 + type: Transform + - uid: 8835 + components: + - pos: -29.5,-34.5 + parent: 4812 + type: Transform + - uid: 8837 + components: + - pos: -29.5,-32.5 + parent: 4812 + type: Transform + - uid: 8840 + components: + - pos: -28.5,-40.5 + parent: 4812 + type: Transform + - uid: 8852 + components: + - pos: -31.5,-28.5 + parent: 4812 + type: Transform + - uid: 8854 + components: + - pos: -31.5,-26.5 + parent: 4812 + type: Transform + - uid: 8855 + components: + - pos: -32.5,-26.5 + parent: 4812 + type: Transform + - uid: 8856 + components: + - pos: -33.5,-26.5 + parent: 4812 + type: Transform + - uid: 8857 + components: + - pos: -35.5,-26.5 + parent: 4812 + type: Transform + - uid: 8903 + components: + - pos: -39.5,-26.5 + parent: 4812 + type: Transform + - uid: 8904 + components: + - pos: -39.5,-27.5 + parent: 4812 + type: Transform + - uid: 8905 + components: + - pos: -39.5,-25.5 + parent: 4812 + type: Transform + - uid: 8907 + components: + - pos: -39.5,-23.5 + parent: 4812 + type: Transform + - uid: 9968 + components: + - pos: -39.5,-29.5 + parent: 4812 + type: Transform + - uid: 9969 + components: + - pos: -39.5,-30.5 + parent: 4812 + type: Transform + - uid: 9970 + components: + - pos: -38.5,-30.5 + parent: 4812 + type: Transform + - uid: 9973 + components: + - pos: -35.5,-30.5 + parent: 4812 + type: Transform + - uid: 9985 + components: + - pos: -39.5,-22.5 + parent: 4812 + type: Transform + - uid: 9986 + components: + - pos: -39.5,-21.5 + parent: 4812 + type: Transform + - uid: 9987 + components: + - pos: -35.5,-25.5 + parent: 4812 + type: Transform + - uid: 9988 + components: + - pos: -35.5,-24.5 + parent: 4812 + type: Transform + - uid: 9989 + components: + - pos: -35.5,-23.5 + parent: 4812 + type: Transform + - uid: 9994 + components: + - pos: -38.5,-21.5 + parent: 4812 + type: Transform + - uid: 10153 + components: + - pos: -54.5,-23.5 + parent: 4812 + type: Transform + - uid: 10155 + components: + - pos: -49.5,-23.5 + parent: 4812 + type: Transform + - uid: 10156 + components: + - pos: -50.5,-23.5 + parent: 4812 + type: Transform + - uid: 10224 + components: + - pos: -42.5,-22.5 + parent: 4812 + type: Transform + - uid: 10404 + components: + - pos: -47.5,-28.5 + parent: 4812 + type: Transform + - uid: 10613 + components: + - pos: -42.5,-24.5 + parent: 4812 + type: Transform + - uid: 10614 + components: + - pos: -42.5,-23.5 + parent: 4812 + type: Transform + - uid: 11049 + components: + - pos: 4.5,-39.5 + parent: 4812 + type: Transform + - uid: 11050 + components: + - pos: 5.5,-39.5 + parent: 4812 + type: Transform + - uid: 11051 + components: + - pos: 6.5,-39.5 + parent: 4812 + type: Transform + - uid: 11052 + components: + - pos: 7.5,-39.5 + parent: 4812 + type: Transform + - uid: 11053 + components: + - pos: 7.5,-35.5 + parent: 4812 + type: Transform + - uid: 11054 + components: + - pos: 6.5,-35.5 + parent: 4812 + type: Transform + - uid: 11055 + components: + - pos: 5.5,-35.5 + parent: 4812 + type: Transform + - uid: 11056 + components: + - pos: 4.5,-35.5 + parent: 4812 + type: Transform + - uid: 11057 + components: + - pos: 7.5,-31.5 + parent: 4812 + type: Transform + - uid: 11058 + components: + - pos: 6.5,-31.5 + parent: 4812 + type: Transform + - uid: 11059 + components: + - pos: 5.5,-31.5 + parent: 4812 + type: Transform + - uid: 11060 + components: + - pos: 4.5,-31.5 + parent: 4812 + type: Transform + - uid: 11061 + components: + - pos: 10.5,-35.5 + parent: 4812 + type: Transform + - uid: 11062 + components: + - pos: 11.5,-35.5 + parent: 4812 + type: Transform + - uid: 11063 + components: + - pos: 12.5,-35.5 + parent: 4812 + type: Transform + - uid: 11064 + components: + - pos: 13.5,-35.5 + parent: 4812 + type: Transform + - uid: 11066 + components: + - pos: 10.5,-39.5 + parent: 4812 + type: Transform + - uid: 11067 + components: + - pos: 11.5,-39.5 + parent: 4812 + type: Transform + - uid: 11068 + components: + - pos: 12.5,-39.5 + parent: 4812 + type: Transform + - uid: 11069 + components: + - pos: 13.5,-39.5 + parent: 4812 + type: Transform + - uid: 11070 + components: + - pos: 14.5,-39.5 + parent: 4812 + type: Transform + - uid: 11121 + components: + - pos: 35.5,-35.5 + parent: 4812 + type: Transform + - uid: 11122 + components: + - pos: 36.5,-35.5 + parent: 4812 + type: Transform + - uid: 11123 + components: + - pos: 37.5,-35.5 + parent: 4812 + type: Transform + - uid: 11124 + components: + - pos: 34.5,-35.5 + parent: 4812 + type: Transform + - uid: 11266 + components: + - pos: 23.5,-36.5 + parent: 4812 + type: Transform + - uid: 11267 + components: + - pos: 23.5,-35.5 + parent: 4812 + type: Transform + - uid: 11268 + components: + - pos: 22.5,-35.5 + parent: 4812 + type: Transform + - uid: 11269 + components: + - pos: 21.5,-35.5 + parent: 4812 + type: Transform + - uid: 11270 + components: + - pos: 20.5,-35.5 + parent: 4812 + type: Transform + - uid: 11271 + components: + - pos: 18.5,-35.5 + parent: 4812 + type: Transform + - uid: 11272 + components: + - pos: 17.5,-35.5 + parent: 4812 + type: Transform + - uid: 11273 + components: + - pos: 16.5,-35.5 + parent: 4812 + type: Transform + - uid: 11302 + components: + - pos: 27.5,-34.5 + parent: 4812 + type: Transform + - uid: 11303 + components: + - pos: 26.5,-34.5 + parent: 4812 + type: Transform + - uid: 11304 + components: + - pos: 23.5,-34.5 + parent: 4812 + type: Transform + - uid: 11305 + components: + - pos: 24.5,-34.5 + parent: 4812 + type: Transform + - uid: 11348 + components: + - pos: 34.5,-33.5 + parent: 4812 + type: Transform + - uid: 11349 + components: + - pos: 34.5,-32.5 + parent: 4812 + type: Transform + - uid: 11366 + components: + - pos: 35.5,-38.5 + parent: 4812 + type: Transform + - uid: 11367 + components: + - pos: 35.5,-37.5 + parent: 4812 + type: Transform + - uid: 11368 + components: + - pos: 33.5,-35.5 + parent: 4812 + type: Transform + - uid: 11369 + components: + - pos: 32.5,-35.5 + parent: 4812 + type: Transform + - uid: 11370 + components: + - pos: 29.5,-36.5 + parent: 4812 + type: Transform + - uid: 11383 + components: + - pos: 29.5,-35.5 + parent: 4812 + type: Transform + - uid: 11384 + components: + - pos: 30.5,-35.5 + parent: 4812 + type: Transform + - uid: 11385 + components: + - pos: 34.5,-37.5 + parent: 4812 + type: Transform + - uid: 11389 + components: + - pos: 30.5,-37.5 + parent: 4812 + type: Transform + - uid: 11475 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 4812 + type: Transform + - uid: 11646 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 4812 + type: Transform + - uid: 11706 + components: + - pos: 37.5,-42.5 + parent: 4812 + type: Transform + - uid: 11794 + components: + - pos: -15.5,1.5 + parent: 4812 + type: Transform + - uid: 11795 + components: + - pos: -14.5,1.5 + parent: 4812 + type: Transform + - uid: 11796 + components: + - pos: -13.5,1.5 + parent: 4812 + type: Transform + - uid: 11797 + components: + - pos: -13.5,0.5 + parent: 4812 + type: Transform + - uid: 11798 + components: + - pos: -13.5,-0.5 + parent: 4812 + type: Transform + - uid: 11799 + components: + - pos: -13.5,-1.5 + parent: 4812 + type: Transform + - uid: 11800 + components: + - pos: -13.5,-2.5 + parent: 4812 + type: Transform + - uid: 11801 + components: + - pos: -14.5,-2.5 + parent: 4812 + type: Transform + - uid: 11848 + components: + - pos: -13.5,12.5 + parent: 4812 + type: Transform +- proto: WallSolidRust + entities: + - uid: 7302 + components: + - pos: -42.5,-29.5 + parent: 4812 + type: Transform + - uid: 7305 + components: + - pos: -41.5,-26.5 + parent: 4812 + type: Transform + - uid: 7312 + components: + - pos: -42.5,-25.5 + parent: 4812 + type: Transform + - uid: 7313 + components: + - pos: -42.5,-30.5 + parent: 4812 + type: Transform + - uid: 7316 + components: + - pos: -45.5,-25.5 + parent: 4812 + type: Transform + - uid: 7335 + components: + - pos: -25.5,-31.5 + parent: 4812 + type: Transform + - uid: 7350 + components: + - pos: -29.5,-33.5 + parent: 4812 + type: Transform + - uid: 7351 + components: + - pos: -28.5,-32.5 + parent: 4812 + type: Transform + - uid: 7353 + components: + - pos: -33.5,-30.5 + parent: 4812 + type: Transform + - uid: 7354 + components: + - pos: -32.5,-30.5 + parent: 4812 + type: Transform + - uid: 7355 + components: + - pos: -31.5,-29.5 + parent: 4812 + type: Transform + - uid: 7356 + components: + - pos: -31.5,-27.5 + parent: 4812 + type: Transform + - uid: 7357 + components: + - pos: -34.5,-30.5 + parent: 4812 + type: Transform + - uid: 7358 + components: + - pos: -39.5,-28.5 + parent: 4812 + type: Transform + - uid: 7359 + components: + - pos: -39.5,-24.5 + parent: 4812 + type: Transform + - uid: 7360 + components: + - pos: -37.5,-30.5 + parent: 4812 + type: Transform + - uid: 7361 + components: + - pos: -36.5,-30.5 + parent: 4812 + type: Transform + - uid: 7362 + components: + - pos: -35.5,-22.5 + parent: 4812 + type: Transform + - uid: 7363 + components: + - pos: -36.5,-21.5 + parent: 4812 + type: Transform + - uid: 7364 + components: + - pos: -37.5,-21.5 + parent: 4812 + type: Transform + - uid: 7365 + components: + - pos: -34.5,-13.5 + parent: 4812 + type: Transform +- proto: WardrobeBlackFilled + entities: + - uid: 11351 + components: + - pos: 35.5,-32.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: WardrobeFormal + entities: + - uid: 10921 + components: + - pos: -41.5,-24.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: + - 10924 + - 10923 + - 10922 + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: WardrobeMixedFilled + entities: + - uid: 10852 + components: + - pos: -21.5,-1.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: WardrobePrisonFilled + entities: + - uid: 8354 + components: + - pos: -26.5,20.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 8355 + components: + - pos: -26.5,17.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 8383 + components: + - pos: -29.5,26.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 8384 + components: + - pos: -25.5,26.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: WardrobeYellowFilled + entities: + - uid: 12169 + components: + - pos: -45.5,-18.5 + parent: 4812 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: WarningCO2 + entities: + - uid: 9280 + components: + - pos: -50.5,6.5 + parent: 4812 + type: Transform +- proto: WarningN2 + entities: + - uid: 9278 + components: + - pos: -50.5,2.5 + parent: 4812 + type: Transform +- proto: WarningO2 + entities: + - uid: 9279 + components: + - pos: -50.5,4.5 + parent: 4812 + type: Transform +- proto: WarningPlasma + entities: + - uid: 9282 + components: + - pos: -50.5,10.5 + parent: 4812 + type: Transform +- proto: WarningTritium + entities: + - uid: 9283 + components: + - pos: -50.5,12.5 + parent: 4812 + type: Transform +- proto: WarningWaste + entities: + - uid: 9281 + components: + - pos: -50.5,8.5 + parent: 4812 + type: Transform +- proto: WarpPoint + entities: + - uid: 12145 + components: + - pos: -16.5,-34.5 + parent: 4812 + type: Transform + - location: chapel + type: WarpPoint + - uid: 12476 + components: + - pos: -10.5,-21.5 + parent: 4812 + type: Transform + - location: medbay + type: WarpPoint + - uid: 12477 + components: + - pos: -28.5,-16.5 + parent: 4812 + type: Transform + - location: library + type: WarpPoint + - uid: 12478 + components: + - pos: -32.5,-2.5 + parent: 4812 + type: Transform + - location: engi + type: WarpPoint + - uid: 12479 + components: + - pos: -20.5,1.5 + parent: 4812 + type: Transform + - location: dorms + type: WarpPoint + - uid: 12480 + components: + - pos: -29.5,15.5 + parent: 4812 + type: Transform + - location: security + type: WarpPoint + - uid: 12481 + components: + - pos: -2.5,31.5 + parent: 4812 + type: Transform + - location: bridge + type: WarpPoint + - uid: 12482 + components: + - pos: 10.5,49.5 + parent: 4812 + type: Transform + - location: ai core + type: WarpPoint + - uid: 12483 + components: + - pos: 16.5,20.5 + parent: 4812 + type: Transform + - location: cargo + type: WarpPoint + - uid: 12484 + components: + - pos: 28.5,-2.5 + parent: 4812 + type: Transform + - location: evac + type: WarpPoint + - uid: 12485 + components: + - pos: 8.5,-21.5 + parent: 4812 + type: Transform + - location: sci + type: WarpPoint + - uid: 12486 + components: + - pos: -2.5,0.5 + parent: 4812 + type: Transform + - location: service + type: WarpPoint + - uid: 12517 + components: + - pos: 33.5,-25.5 + parent: 4812 + type: Transform + - location: anomaly Lab + type: WarpPoint +- proto: WaterCooler + entities: + - uid: 2673 + components: + - pos: 0.5,31.5 + parent: 4812 + type: Transform + - uid: 3245 + components: + - pos: 14.5,13.5 + parent: 4812 + type: Transform + - uid: 8433 + components: + - pos: -39.5,10.5 + parent: 4812 + type: Transform + - uid: 10759 + components: + - pos: -38.5,-5.5 + parent: 4812 + type: Transform +- proto: WaterTankFull + entities: + - uid: 1484 + components: + - pos: -23.5,-9.5 + parent: 4812 + type: Transform + - uid: 3358 + components: + - pos: 13.5,30.5 + parent: 4812 + type: Transform + - uid: 6241 + components: + - pos: -11.5,15.5 + parent: 4812 + type: Transform + - uid: 8409 + components: + - pos: -32.5,32.5 + parent: 4812 + type: Transform + - uid: 8576 + components: + - pos: -16.5,12.5 + parent: 4812 + type: Transform + - uid: 9069 + components: + - pos: -28.5,-31.5 + parent: 4812 + type: Transform + - uid: 9818 + components: + - pos: -38.5,-3.5 + parent: 4812 + type: Transform + - uid: 10702 + components: + - pos: -28.5,-9.5 + parent: 4812 + type: Transform + - uid: 11883 + components: + - pos: 7.5,12.5 + parent: 4812 + type: Transform + - uid: 11927 + components: + - pos: -42.5,-21.5 + parent: 4812 + type: Transform +- proto: WaterTankHighCapacity + entities: + - uid: 1093 + components: + - pos: -18.5,-6.5 + parent: 4812 + type: Transform + - uid: 3678 + components: + - pos: 4.5,51.5 + parent: 4812 + type: Transform +- proto: WaterVaporCanister + entities: + - uid: 9455 + components: + - pos: -53.5,7.5 + parent: 4812 + type: Transform +- proto: WeaponCapacitorRecharger + entities: + - uid: 2515 + components: + - pos: 9.5,26.5 + parent: 4812 + type: Transform + - canCollide: False + type: Physics + - uid: 2608 + components: + - pos: -10.5,25.5 + parent: 4812 + type: Transform + - canCollide: False + type: Physics + - uid: 4572 + components: + - pos: 27.5,3.5 + parent: 4812 + type: Transform + - canCollide: False + type: Physics + - uid: 6306 + components: + - pos: 28.5,-19.5 + parent: 4812 + type: Transform + - canCollide: False + type: Physics + - uid: 6483 + components: + - pos: -1.5,-27.5 + parent: 4812 + type: Transform + - canCollide: False + type: Physics + - uid: 8266 + components: + - pos: -20.5,22.5 + parent: 4812 + type: Transform + - canCollide: False + type: Physics + - uid: 8345 + components: + - pos: -31.5,12.5 + parent: 4812 + type: Transform + - canCollide: False + type: Physics + - uid: 8346 + components: + - pos: -31.5,14.5 + parent: 4812 + type: Transform + - canCollide: False + type: Physics +- proto: WeaponDisabler + entities: + - uid: 3738 + components: + - pos: -39.515656,11.630442 + parent: 4812 + type: Transform + - uid: 3753 + components: + - pos: -39.609406,11.771067 + parent: 4812 + type: Transform + - uid: 3754 + components: + - pos: -33.40336,20.459352 + parent: 4812 + type: Transform + - uid: 3759 + components: + - pos: -33.40336,20.459352 + parent: 4812 + type: Transform +- proto: WeaponLaserCarbine + entities: + - uid: 12470 + components: + - pos: -33.4461,20.270079 + parent: 4812 + type: Transform + - uid: 12471 + components: + - pos: -33.4461,20.218811 + parent: 4812 + type: Transform +- proto: WeaponRevolverDeckard + entities: + - uid: 12503 + components: + - flags: InContainer + type: MetaData + - parent: 2709 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: WeaponShotgunKammerer + entities: + - uid: 12052 + components: + - pos: -35.535385,19.569157 + parent: 4812 + type: Transform + - unspawnedCount: 4 + type: BallisticAmmoProvider + - uid: 12053 + components: + - pos: -35.410385,19.412907 + parent: 4812 + type: Transform + - unspawnedCount: 4 + type: BallisticAmmoProvider +- proto: WeaponTurretSyndicateBroken + entities: + - uid: 12268 + components: + - pos: 7.5,49.5 + parent: 4812 + type: Transform + - uid: 12269 + components: + - pos: 13.5,49.5 + parent: 4812 + type: Transform + - uid: 12270 + components: + - pos: 13.5,55.5 + parent: 4812 + type: Transform + - uid: 12271 + components: + - pos: 7.5,55.5 + parent: 4812 + type: Transform +- proto: WeedSpray + entities: + - uid: 1476 + components: + - pos: -8.252506,-7.3833528 + parent: 4812 + type: Transform +- proto: Welder + entities: + - uid: 8592 + components: + - pos: -20.391129,12.56624 + parent: 4812 + type: Transform +- proto: WelderIndustrial + entities: + - uid: 10715 + components: + - pos: -35.5,-7.5 + parent: 4812 + type: Transform +- proto: WelderIndustrialAdvanced + entities: + - uid: 3453 + components: + - pos: 35.616592,-30.437298 + parent: 4812 + type: Transform + - uid: 10724 + components: + - pos: -36.35727,8.431009 + parent: 4812 + type: Transform +- proto: WelderMini + entities: + - uid: 6239 + components: + - pos: 15.765093,-23.454037 + parent: 4812 + type: Transform + - uid: 11470 + components: + - pos: 28.545038,-35.383316 + parent: 4812 + type: Transform +- proto: WeldingFuelTankFull + entities: + - uid: 3261 + components: + - pos: 26.5,13.5 + parent: 4812 + type: Transform + - uid: 6214 + components: + - pos: 6.5,-23.5 + parent: 4812 + type: Transform + - uid: 8575 + components: + - pos: -17.5,12.5 + parent: 4812 + type: Transform + - uid: 9070 + components: + - pos: -24.5,-32.5 + parent: 4812 + type: Transform + - uid: 9682 + components: + - pos: -36.5,5.5 + parent: 4812 + type: Transform + - uid: 10701 + components: + - pos: -28.5,-8.5 + parent: 4812 + type: Transform + - uid: 11463 + components: + - pos: 28.5,-36.5 + parent: 4812 + type: Transform + - uid: 11852 + components: + - pos: 8.5,12.5 + parent: 4812 + type: Transform +- proto: WheatBushel + entities: + - uid: 11294 + components: + - pos: 18.50683,-38.558407 + parent: 4812 + type: Transform +- proto: WheatSeeds + entities: + - uid: 1521 + components: + - pos: -13.5,-7.5 + parent: 4812 + type: Transform +- proto: Windoor + entities: + - uid: 2230 + components: + - pos: 9.5,23.5 + parent: 4812 + type: Transform + - uid: 4451 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,7.5 + parent: 4812 + type: Transform + - uid: 4452 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,8.5 + parent: 4812 + type: Transform + - uid: 4453 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,6.5 + parent: 4812 + type: Transform + - uid: 7134 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-18.5 + parent: 4812 + type: Transform + - uid: 7805 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,15.5 + parent: 4812 + type: Transform + - uid: 9071 + components: + - pos: -24.5,-31.5 + parent: 4812 + type: Transform + - uid: 10523 + components: + - pos: -38.5,-25.5 + parent: 4812 + type: Transform +- proto: WindoorBarLocked + entities: + - uid: 319 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 4812 + type: Transform +- proto: WindoorCargoLocked + entities: + - uid: 12255 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,20.5 + parent: 4812 + type: Transform +- proto: WindoorKitchenHydroponicsLocked + entities: + - uid: 934 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 4812 + type: Transform + - uid: 935 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 4812 + type: Transform +- proto: WindoorSecure + entities: + - uid: 11101 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-41.5 + parent: 4812 + type: Transform + - uid: 11102 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-41.5 + parent: 4812 + type: Transform + - uid: 11103 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-37.5 + parent: 4812 + type: Transform +- proto: WindoorSecureArmoryLocked + entities: + - uid: 7804 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,15.5 + parent: 4812 + type: Transform +- proto: WindoorSecureAtmosphericsLocked + entities: + - uid: 7369 + components: + - pos: -32.5,1.5 + parent: 4812 + type: Transform + - uid: 8688 + components: + - rot: 3.141592653589793 rad + pos: -30.5,0.5 + parent: 4812 + type: Transform +- proto: WindoorSecureCargoLocked + entities: + - uid: 2855 + components: + - rot: 3.141592653589793 rad + pos: 15.5,16.5 + parent: 4812 + type: Transform + - uid: 4433 + components: + - pos: 28.5,-6.5 + parent: 4812 + type: Transform +- proto: WindoorSecureChemistryLocked + entities: + - uid: 6582 + components: + - pos: -9.5,-13.5 + parent: 4812 + type: Transform + - uid: 6583 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-19.5 + parent: 4812 + type: Transform +- proto: WindoorSecureCommandLocked + entities: + - uid: 3702 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,53.5 + parent: 4812 + type: Transform + - uid: 3703 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,53.5 + parent: 4812 + type: Transform +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 8689 + components: + - pos: -30.5,-4.5 + parent: 4812 + type: Transform +- proto: WindoorSecureHeadOfPersonnelLocked + entities: + - uid: 1926 + components: + - rot: 3.141592653589793 rad + pos: 9.5,23.5 + parent: 4812 + type: Transform +- proto: WindoorSecureMedicalLocked + entities: + - uid: 8807 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-24.5 + parent: 4812 + type: Transform + - uid: 8808 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-24.5 + parent: 4812 + type: Transform + - uid: 8810 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-22.5 + parent: 4812 + type: Transform + - uid: 8832 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-21.5 + parent: 4812 + type: Transform +- proto: WindoorSecureSalvageLocked + entities: + - uid: 12248 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,15.5 + parent: 4812 + type: Transform +- proto: WindoorSecureScienceLocked + entities: + - uid: 5788 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-23.5 + parent: 4812 + type: Transform + - uid: 5789 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-15.5 + parent: 4812 + type: Transform + - uid: 5790 + components: + - pos: 4.5,-13.5 + parent: 4812 + type: Transform +- proto: WindoorSecureSecurityLocked + entities: + - uid: 4434 + components: + - rot: 3.141592653589793 rad + pos: 28.5,1.5 + parent: 4812 + type: Transform + - uid: 5307 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-27.5 + parent: 4812 + type: Transform + - uid: 7779 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,11.5 + parent: 4812 + type: Transform + - uid: 7780 + components: + - pos: -25.5,12.5 + parent: 4812 + type: Transform + - uid: 7781 + components: + - pos: -26.5,12.5 + parent: 4812 + type: Transform + - uid: 7785 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,16.5 + parent: 4812 + type: Transform + - links: + - 4811 + type: DeviceLinkSink + - uid: 7786 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,19.5 + parent: 4812 + type: Transform + - links: + - 4810 + type: DeviceLinkSink +- proto: WindoorTheatreLocked + entities: + - uid: 896 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 4812 + type: Transform +- proto: Window + entities: + - uid: 187 + components: + - pos: -21.5,8.5 + parent: 4812 + type: Transform + - uid: 188 + components: + - pos: -21.5,11.5 + parent: 4812 + type: Transform + - uid: 221 + components: + - pos: -24.5,-0.5 + parent: 4812 + type: Transform + - uid: 222 + components: + - pos: -24.5,0.5 + parent: 4812 + type: Transform + - uid: 223 + components: + - pos: -24.5,3.5 + parent: 4812 + type: Transform + - uid: 224 + components: + - pos: -24.5,4.5 + parent: 4812 + type: Transform + - uid: 4656 + components: + - pos: -1.5,-14.5 + parent: 4812 + type: Transform + - uid: 4657 + components: + - pos: -2.5,-14.5 + parent: 4812 + type: Transform + - uid: 4658 + components: + - pos: -3.5,-14.5 + parent: 4812 + type: Transform + - uid: 5761 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-26.5 + parent: 4812 + type: Transform + - uid: 5762 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-24.5 + parent: 4812 + type: Transform + - uid: 6669 + components: + - pos: -26.5,-13.5 + parent: 4812 + type: Transform + - uid: 6670 + components: + - pos: -23.5,-13.5 + parent: 4812 + type: Transform + - uid: 7431 + components: + - pos: -23.5,-22.5 + parent: 4812 + type: Transform + - uid: 8859 + components: + - pos: -28.5,-26.5 + parent: 4812 + type: Transform +- proto: WindowDirectional + entities: + - uid: 890 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,4.5 + parent: 4812 + type: Transform + - uid: 891 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,5.5 + parent: 4812 + type: Transform + - uid: 892 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,6.5 + parent: 4812 + type: Transform + - uid: 893 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,7.5 + parent: 4812 + type: Transform + - uid: 894 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,8.5 + parent: 4812 + type: Transform + - uid: 895 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,9.5 + parent: 4812 + type: Transform + - uid: 4449 + components: + - rot: 3.141592653589793 rad + pos: 16.5,6.5 + parent: 4812 + type: Transform + - uid: 4450 + components: + - rot: 3.141592653589793 rad + pos: 16.5,7.5 + parent: 4812 + type: Transform + - uid: 7135 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-18.5 + parent: 4812 + type: Transform +- proto: WindowFrostedDirectional + entities: + - uid: 6708 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-39.5 + parent: 4812 + type: Transform + - uid: 6709 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-38.5 + parent: 4812 + type: Transform + - uid: 8455 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,6.5 + parent: 4812 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 2477 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,21.5 + parent: 4812 + type: Transform + - uid: 2478 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,21.5 + parent: 4812 + type: Transform + - uid: 2479 + components: + - pos: 8.5,21.5 + parent: 4812 + type: Transform + - uid: 2480 + components: + - pos: 7.5,21.5 + parent: 4812 + type: Transform + - uid: 2481 + components: + - pos: 6.5,21.5 + parent: 4812 + type: Transform + - uid: 2482 + components: + - rot: 3.141592653589793 rad + pos: 6.5,21.5 + parent: 4812 + type: Transform + - uid: 2483 + components: + - rot: 3.141592653589793 rad + pos: 7.5,21.5 + parent: 4812 + type: Transform + - uid: 2484 + components: + - rot: 3.141592653589793 rad + pos: 8.5,21.5 + parent: 4812 + type: Transform + - uid: 4675 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-45.5 + parent: 4812 + type: Transform + - uid: 4676 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-46.5 + parent: 4812 + type: Transform + - uid: 4705 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-47.5 + parent: 4812 + type: Transform + - uid: 4706 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-48.5 + parent: 4812 + type: Transform + - uid: 4738 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-48.5 + parent: 4812 + type: Transform + - uid: 4739 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-47.5 + parent: 4812 + type: Transform + - uid: 4754 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-46.5 + parent: 4812 + type: Transform + - uid: 4755 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-45.5 + parent: 4812 + type: Transform + - uid: 4878 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-48.5 + parent: 4812 + type: Transform + - uid: 4879 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-47.5 + parent: 4812 + type: Transform + - uid: 4880 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-46.5 + parent: 4812 + type: Transform + - uid: 4881 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-45.5 + parent: 4812 + type: Transform + - uid: 4882 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-48.5 + parent: 4812 + type: Transform + - uid: 4883 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-47.5 + parent: 4812 + type: Transform + - uid: 4884 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-46.5 + parent: 4812 + type: Transform + - uid: 4885 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-45.5 + parent: 4812 + type: Transform + - uid: 6230 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-28.5 + parent: 4812 + type: Transform + - uid: 6231 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-27.5 + parent: 4812 + type: Transform + - uid: 6317 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-26.5 + parent: 4812 + type: Transform + - uid: 6321 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-25.5 + parent: 4812 + type: Transform + - uid: 6329 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-22.5 + parent: 4812 + type: Transform + - uid: 6330 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-22.5 + parent: 4812 + type: Transform + - uid: 8283 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,14.5 + parent: 4812 + type: Transform + - uid: 8284 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,15.5 + parent: 4812 + type: Transform + - uid: 8285 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,16.5 + parent: 4812 + type: Transform + - uid: 8286 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,17.5 + parent: 4812 + type: Transform + - uid: 8287 + components: + - pos: -18.5,16.5 + parent: 4812 + type: Transform + - uid: 9880 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,-13.5 + parent: 4812 + type: Transform + - uid: 9881 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-13.5 + parent: 4812 + type: Transform + - uid: 9882 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-11.5 + parent: 4812 + type: Transform + - uid: 9883 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,-11.5 + parent: 4812 + type: Transform + - uid: 9884 + components: + - pos: -51.5,-11.5 + parent: 4812 + type: Transform + - uid: 9885 + components: + - rot: 3.141592653589793 rad + pos: -51.5,-13.5 + parent: 4812 + type: Transform + - uid: 11864 + components: + - pos: -14.5,5.5 + parent: 4812 + type: Transform + - uid: 11865 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,4.5 + parent: 4812 + type: Transform + - uid: 11866 + components: + - rot: 3.141592653589793 rad + pos: -14.5,3.5 + parent: 4812 + type: Transform + - uid: 11867 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,4.5 + parent: 4812 + type: Transform +- proto: WoodDoor + entities: + - uid: 6795 + components: + - pos: -19.5,-37.5 + parent: 4812 + type: Transform + - uid: 6796 + components: + - pos: -21.5,-39.5 + parent: 4812 + type: Transform +- proto: Wrench + entities: + - uid: 4498 + components: + - pos: 19.554443,8.592699 + parent: 4812 + type: Transform + - uid: 4574 + components: + - pos: 27.5,4.5 + parent: 4812 + type: Transform + - uid: 6213 + components: + - pos: 3.4989405,-14.41828 + parent: 4812 + type: Transform + - uid: 6237 + components: + - pos: 15.546343,-23.407162 + parent: 4812 + type: Transform + - uid: 7839 + components: + - pos: -14.514914,-25.438694 + parent: 4812 + type: Transform + - uid: 8589 + components: + - pos: -18.546284,12.599279 + parent: 4812 + type: Transform + - uid: 9080 + components: + - pos: -30.517597,-29.561436 + parent: 4812 + type: Transform + - uid: 11331 + components: + - pos: 26.494213,-35.426273 + parent: 4812 + type: Transform +- proto: YellowOxygenTankFilled + entities: + - uid: 11791 + components: + - pos: 19.452671,-32.41012 + parent: 4812 + type: Transform +... diff --git a/Resources/Maps/origin.yml b/Resources/Maps/origin.yml index 5882df52e32..b759308f6bb 100644 --- a/Resources/Maps/origin.yml +++ b/Resources/Maps/origin.yml @@ -5,65 +5,60 @@ tilemap: 0: Space 1: FloorArcadeBlue 3: FloorArcadeRed - 4: FloorAsteroidCoarseSand0 - 10: FloorAsteroidSand - 11: FloorAsteroidSandPebbles - 12: FloorAsteroidSandRocks - 13: FloorAsteroidSandRocksRed - 14: FloorAsteroidTile - 15: FloorBar - 18: FloorBlueCircuit - 19: FloorBoxing - 21: FloorCarpetClown - 25: FloorClown - 26: FloorDark - 27: FloorDarkDiagonal - 29: FloorDarkHerringbone - 30: FloorDarkMini - 31: FloorDarkMono - 33: FloorDarkPavement - 34: FloorDarkPavementVertical - 35: FloorDarkPlastic - 37: FloorDirt - 38: FloorEighties - 41: FloorFreezer - 42: FloorGlass - 44: FloorGrass - 48: FloorGreenCircuit - 52: FloorHydro - 53: FloorKitchen - 54: FloorLaundry - 55: FloorLino - 57: FloorMetalDiamond - 58: FloorMime - 59: FloorMono - 60: FloorPlanetDirt - 63: FloorRGlass - 64: FloorReinforced - 66: FloorRockVault - 67: FloorShowroom - 71: FloorShuttleRed - 72: FloorShuttleWhite - 75: FloorSteel - 78: FloorSteelDiagonal - 80: FloorSteelDirty - 81: FloorSteelHerringbone - 82: FloorSteelMini - 83: FloorSteelMono - 85: FloorSteelPavement - 86: FloorSteelPavementVertical - 87: FloorTechMaint - 88: FloorTechMaint2 - 89: FloorTechMaint3 - 91: FloorWhite - 94: FloorWhiteHerringbone - 95: FloorWhiteMini - 96: FloorWhiteMono - 101: FloorWood - 102: FloorWoodTile - 103: Lattice - 104: Plating - 105: PlatingAsteroid + 6: FloorAsteroidSand + 8: FloorAsteroidSandRed + 10: FloorAsteroidTile + 11: FloorBar + 14: FloorBlueCircuit + 15: FloorBoxing + 17: FloorCarpetClown + 21: FloorClown + 22: FloorDark + 23: FloorDarkDiagonal + 25: FloorDarkHerringbone + 26: FloorDarkMini + 27: FloorDarkMono + 29: FloorDarkPavement + 30: FloorDarkPavementVertical + 33: FloorDirt + 34: FloorEighties + 37: FloorFreezer + 40: FloorGrass + 44: FloorGreenCircuit + 48: FloorHydro + 49: FloorKitchen + 50: FloorLaundry + 51: FloorLino + 53: FloorMetalDiamond + 54: FloorMime + 55: FloorMono + 56: FloorPlanetDirt + 59: FloorRGlass + 60: FloorReinforced + 62: FloorRockVault + 63: FloorShowroom + 67: FloorShuttleRed + 68: FloorShuttleWhite + 71: FloorSteel + 74: FloorSteelDiagonal + 76: FloorSteelDirty + 77: FloorSteelHerringbone + 78: FloorSteelMini + 79: FloorSteelMono + 81: FloorSteelPavement + 82: FloorSteelPavementVertical + 83: FloorTechMaint + 84: FloorTechMaint2 + 85: FloorTechMaint3 + 87: FloorWhite + 90: FloorWhiteHerringbone + 91: FloorWhiteMini + 92: FloorWhiteMono + 97: FloorWood + 98: FloorWoodTile + 99: Lattice + 100: Plating + 101: PlatingAsteroid entities: - proto: "" entities: @@ -87,334 +82,334 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: UAAAAGgAAABQAAAAaAAAAGgAAABoAAAAUAAAAFAAAABQAAAAaAAAAFYAAANWAAABVgAAAmgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAAAaAAAAaAAAAFgAAABYAAAAUAAAAGgAAABWAAACVgAAAFYAAAJoAAAAUAAAAFAAAABoAAAAaAAAAFcAAABoAAAAGgAAA2gAAABoAAAAaAAAAGgAAABQAAAAVgAAA1YAAABWAAADaAAAAGgAAABQAAAAVwAAAGgAAABXAAAAUAAAAFkAAAJQAAAAVwAAAFcAAABXAAAAGgAAA1YAAAJWAAACVgAAA1cAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABZAAAAaAAAAGgAAABoAAAAVwAAAGgAAABWAAABVgAAAlYAAAJXAAAAaAAAAGgAAABXAAAAWQAAAVkAAANZAAABWQAAAmgAAABQAAAAUAAAAFcAAABoAAAAVgAAAFYAAAJWAAAAaAAAAGgAAABQAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFYAAABWAAABVgAAAxoAAANoAAAAUAAAAFcAAABXAAAAaAAAAFgAAABYAAAAUAAAAFgAAABXAAAAVwAAAGgAAABWAAACVgAAAlYAAANoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAABoAAAAVgAAA1YAAANWAAAAaAAAAGUAAABlAAAASwAAAFAAAABLAAACDgAAAGgAAAAmAAAAJgAAACYAAAAmAAAAaAAAAFYAAAFWAAABVgAAAWgAAABlAAAAZQAAAD8AAANLAAABSwAAAA4AAABoAAAAJgAAACYAAAAmAAAAJgAAAGgAAABWAAAAVgAAAFYAAABoAAAAZQAAAGUAAABLAAACSwAAAUsAAAEOAAAAaAAAACYAAAAmAAAAJgAAACYAAABoAAAAVgAAA1YAAANWAAACaAAAAGUAAABlAAAAaAAAAEsAAANLAAAASwAAAmgAAAAmAAAAJgAAAGgAAABoAAAAaAAAAFYAAANWAAACVgAAAGgAAABlAAAAZQAAAGgAAABLAAACSwAAA0sAAAFoAAAAaAAAABoAAAFoAAAAWQAAA2gAAAAaAAAAGgAAAxoAAANoAAAAaAAAAGUAAABoAAAASwAAAj8AAAJLAAADSwAAAUsAAABLAAACSwAAAksAAANLAAACSwAAA0sAAAJQAAAASwAAAEsAAAJLAAAAaAAAAEsAAANLAAADSwAAAUsAAANLAAAASwAAAksAAAJLAAABSwAAAEsAAANLAAAASwAAAksAAANLAAADSwAAAg== + tiles: TAAAAGQAAABMAAAAZAAAAGQAAABkAAAATAAAAEwAAABMAAAAZAAAAFIAAAJSAAAAUgAAAWQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAAAWAAABZAAAAFQAAABUAAAATAAAAFUAAAFSAAABUgAAAVIAAAJkAAAATAAAAEwAAABkAAAAZAAAAFMAAABkAAAAFgAAA2QAAABkAAAAZAAAAFUAAABVAAAAUgAAAVIAAABSAAACVQAAAWQAAABMAAAAUwAAAGQAAABTAAAATAAAAFUAAAFMAAAAUwAAAFMAAABVAAAAZAAAAFIAAABSAAABUgAAA1MAAABkAAAAVQAAA2QAAABkAAAAZAAAAGQAAABVAAAAZAAAAGQAAABkAAAAVQAAA2QAAABSAAACUgAAAFIAAANTAAAAZAAAAGQAAABTAAAAVQAAAVUAAANVAAAAVQAAAmQAAABMAAAATAAAAFMAAABVAAADUgAAAVIAAAFSAAACZAAAAGQAAABMAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVQAAAlIAAABSAAACUgAAARYAAAJkAAAATAAAAFMAAABTAAAAZAAAAFQAAABUAAAATAAAAFQAAABTAAAAUwAAAGQAAABSAAABUgAAAFIAAAFkAAAAUwAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAABkAAAAUgAAAFIAAAJSAAACZAAAAGQAAABkAAAARwAAAkwAAABHAAACCgAAAGQAAAAiAAAAIgAAACIAAAAiAAAAZAAAAFIAAABSAAAAUgAAABYAAABhAAAAYQAAADsAAAFHAAACRwAAAwoAAABkAAAAIgAAACIAAAAiAAAAIgAAAGQAAABSAAACUgAAAVIAAAMWAAAAYQAAA2EAAAJHAAACRwAAA0cAAAAKAAAAZAAAACIAAAAiAAAAIgAAACIAAABkAAAAUgAAAVIAAANSAAABZAAAAGEAAANhAAABZAAAAEcAAABHAAABRwAAAmQAAAAiAAAAIgAAAGQAAABkAAAAZAAAAFIAAAJSAAABUgAAAmQAAABhAAAAYQAAAWQAAABHAAADRwAAAUcAAABkAAAAZAAAABYAAABkAAAAVQAAA2QAAAAWAAAAFgAAAxYAAABkAAAAZAAAABYAAAFkAAAARwAAAzsAAANHAAABRwAAA0cAAAJHAAAARwAAAkcAAABHAAAARwAAA0cAAANMAAAARwAAAkcAAAJHAAACZAAAAEcAAAJHAAAARwAAAkcAAAFHAAADRwAAAUcAAAFHAAADRwAAA0cAAABHAAACRwAAA0cAAAJHAAAARwAAAg== 0,-1: ind: 0,-1 - tiles: aAAAAGgAAABoAAAAaAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABQAAAAUAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAB8AAAAfAAAAHwAAAB8AAABoAAAAWQAAA2gAAABlAAABZQAAAWUAAAJlAAACZQAAA2UAAAFoAAAAWQAAA2gAAAAfAAAAHwAAAB8AAAAfAAAAaAAAAFcAAAAaAAABZQAAA2UAAAFlAAABZQAAAWUAAANlAAABOwAAAGgAAABoAAAAHwAAAB8AAAAfAAAAHwAAAGgAAABXAAAAaAAAAGUAAAJlAAABZQAAAmUAAAFlAAACZQAAAGgAAABoAAAAaAAAAB8AAAAfAAAAHwAAAB8AAABoAAAAVwAAAGgAAABlAAADZQAAAWUAAAFlAAADZQAAAWgAAABoAAAAVwAAAGgAAABoAAAAaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAZQAAAGUAAANlAAADZQAAAmUAAABoAAAAVwAAAFcAAABlAAAAZQAAAGUAAABlAAAAZQAAAGgAAABlAAAAZQAAA2UAAABlAAAAZQAAAGUAAANlAAAAaAAAAGgAAABoAAAAZQAAAGUAAABlAAAAZQAAAGUAAABoAAAAZQAAAWUAAAFlAAADZQAAAWUAAANlAAAAZQAAA2gAAABoAAAAaAAAAGUAAABlAAAAZQAAAGUAAABlAAAAaAAAAGUAAANlAAADZQAAA2UAAABlAAAAZQAAAmUAAAJoAAAAaAAAAGgAAABlAAAAZQAAAGUAAABlAAAAZQAAAGgAAABlAAADZQAAAGUAAAFlAAAAZQAAAGUAAABlAAABaAAAAGgAAABoAAAAZQAAAGUAAABlAAAAZQAAAGUAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAANlAAADZQAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAABoAAAAaAAAADkAAABXAAAAOQAAAGgAAAAaAAACGgAAAGgAAABoAAAAGgAAA2gAAABLAAABSwAAA0sAAABLAAAASwAAAksAAAFLAAABUAAAAEsAAABLAAADSwAAAUsAAABLAAADSwAAA0sAAAFLAAACSwAAAEsAAANLAAABSwAAAyoAAAFLAAADSwAAA0sAAAFLAAABSwAAACoAAANLAAADSwAAAUsAAAJLAAADSwAAAg== + tiles: ZAAAAGQAAABkAAAAZAAAAEwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEwAAABMAAAATAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAABYAAAJkAAAAZAAAAGQAAABhAAACYQAAAmEAAAFhAAABYQAAA2EAAAFkAAAAVQAAA2QAAABkAAAAZAAAAGEAAANhAAAAYQAAAmEAAAEWAAAAYQAAAmEAAAFhAAADYQAAAmEAAAJhAAABNwAAAGQAAABTAAAAZAAAAGQAAABhAAABYQAAAmEAAAFhAAADZAAAAGEAAAJhAAACYQAAAWEAAAFhAAAAYQAAA2QAAABkAAAAZAAAAFMAAABkAAAAYQAAAGEAAAJhAAADYQAAAmQAAABhAAAAYQAAAGEAAABhAAAAYQAAAWQAAABkAAAAUwAAAGQAAAAWAAAAZAAAABYAAABkAAAAZAAAAGQAAABkAAAAYQAAAGEAAANhAAADYQAAAGEAAABkAAAAUwAAAFMAAABkAAAAYQAAAGEAAAJhAAADYQAAA2QAAAAWAAAAYQAAAWEAAABhAAABYQAAAGEAAAFhAAADZAAAAGQAAABkAAAAZAAAAGEAAANhAAABYQAAAmEAAANhAAAAZAAAAGEAAABhAAACYQAAAGEAAABhAAAAYQAAA2QAAABkAAAAZAAAABYAAANhAAABYQAAA2EAAABhAAAAYQAAAWQAAABhAAABYQAAAmEAAABhAAABYQAAAmEAAAFkAAAAZAAAAGQAAABkAAAAYQAAAmEAAAJhAAABYQAAAGEAAABkAAAAYQAAAGEAAAJhAAACYQAAAWEAAABhAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGEAAABhAAAAYQAAAGQAAABkAAAAZAAAAGQAAAAWAAADFgAAABYAAAAWAAAAZAAAADUAAABTAAAANQAAAGQAAAAWAAAAFgAAAGQAAABkAAAAFgAAAWQAAABHAAABRwAAA0cAAAFHAAACRwAAAUcAAAJHAAAATAAAAEcAAAFHAAABRwAAAkcAAANHAAACRwAAAUcAAAFHAAACRwAAAkcAAAJHAAADRwAAADsAAAJHAAABRwAAAkcAAAFHAAACRwAAADsAAANHAAABRwAAA0cAAAJHAAACRwAAAA== -1,0: ind: -1,0 - tiles: aAAAAEsAAAJLAAAASwAAA2gAAAAaAAABGgAAAxoAAAMaAAADGgAAABoAAAIaAAAAGgAAABoAAAJoAAAAGgAAAGgAAABLAAACSwAAAUsAAANoAAAAGgAAAxoAAAEaAAAAGgAAAhoAAAIaAAABGgAAAhoAAAEaAAACaAAAABoAAABoAAAASwAAAUsAAAJLAAACSwAAAksAAAFLAAACSwAAAksAAAJLAAACSwAAAUsAAANLAAABSwAAAksAAAFLAAABaAAAAEsAAAM/AAAAUAAAAEsAAABLAAADSwAAAksAAAJLAAACSwAAAUsAAAFLAAABSwAAAEsAAANLAAABSwAAAGgAAABLAAADSwAAA0sAAANoAAAAGgAAAmgAAABLAAABSwAAAksAAABoAAAALAAAACwAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAJQAAAAaAAAAEsAAAJLAAABSwAAAksAAAJQAAAASwAAAEsAAANLAAABSwAAAmgAAAA1AAAASwAAAUsAAAFLAAABSwAAAywAAABLAAADSwAAAEsAAAJQAAAASwAAAksAAABLAAABUAAAAEsAAANoAAAANQAAAD8AAANLAAAASwAAAEsAAAIsAAAANAAAAEsAAAI0AAAASwAAATQAAABLAAAANAAAAEsAAAJLAAADNAAAADUAAABLAAACSwAAAEsAAANLAAACSwAAATQAAABLAAACNAAAAEsAAAI0AAAASwAAAjQAAABLAAADSwAAAmgAAAA1AAAAaAAAAGgAAABoAAAASwAAAEsAAAI0AAAASwAAAjQAAABLAAACNAAAAGgAAABoAAAAGgAAA2gAAABoAAAANQAAAFcAAABXAAAAWQAAAlcAAABLAAAANAAAAFAAAAA0AAAASwAAADQAAABoAAAASwAAA0sAAABLAAAAaAAAAGgAAABZAAADaAAAAFgAAABoAAAASwAAAzQAAABLAAACNAAAAEsAAAI0AAAAaAAAAEsAAANQAAAASwAAA2gAAAApAAAAaAAAAGgAAABoAAAAVwAAAGgAAAA0AAAASwAAADQAAABLAAACNAAAAGgAAABLAAACSwAAAUsAAAFoAAAAKQAAAFgAAABoAAAAWQAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAABoAAAFoAAAAaAAAABoAAABoAAAAaAAAACkAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAM0AAAASwAAAEsAAAE0AAAASwAAAhoAAAEpAAAAaAAAAGgAAABXAAAAaAAAAGgAAABXAAAAaAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAAFAAAABoAAAAaAAAAA== + tiles: ZAAAAEcAAAJHAAAARwAAAWQAAAAWAAAAFgAAARYAAAMWAAADFgAAAhYAAAMWAAAAFgAAARYAAANkAAAAFgAAA2QAAABHAAABRwAAAkcAAABkAAAAFgAAARYAAAAWAAABFgAAARYAAAAWAAABFgAAAxYAAAIWAAADZAAAABYAAABkAAAARwAAA0cAAAFHAAABRwAAAUcAAANHAAACRwAAAkcAAAFHAAABRwAAAEcAAAFHAAACRwAAAUcAAAJHAAADZAAAAEcAAAA7AAABTAAAAEcAAANHAAABRwAAAUcAAAFHAAACRwAAAUcAAABHAAACRwAAA0cAAAFHAAABRwAAA2QAAABHAAADRwAAAUcAAAJkAAAAFgAAAmQAAABHAAACRwAAAUcAAABkAAAAKAAAACgAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAJMAAAAZAAAAEcAAAJHAAAARwAAAkcAAABMAAAARwAAAUcAAAJHAAADRwAAAGQAAAAxAAAARwAAAEcAAANHAAADRwAAASgAAABHAAAARwAAAkcAAANMAAAARwAAA0cAAANHAAACTAAAAEcAAANkAAAAMQAAADsAAAJHAAADRwAAAkcAAAEoAAAAMAAAAEcAAAIwAAAARwAAAzAAAABHAAAAMAAAAEcAAABHAAACMAAAADEAAABHAAACRwAAA0cAAAFHAAABRwAAAzAAAABHAAADMAAAAEcAAAAwAAAARwAAAjAAAABHAAADRwAAAmQAAAAxAAAAZAAAAGQAAABkAAAARwAAA0cAAAEwAAAARwAAAzAAAABHAAADMAAAAGQAAABkAAAAFgAAAmQAAABkAAAAMQAAAFMAAABTAAAAVQAAAVMAAABHAAACMAAAAEwAAAAwAAAARwAAAjAAAABkAAAARwAAAUcAAAFHAAADZAAAAGQAAABVAAADZAAAAFQAAABkAAAARwAAAjAAAABHAAAAMAAAAEcAAAEwAAAAZAAAAEcAAAJMAAAARwAAAWQAAAAlAAAAZAAAAGQAAABkAAAAUwAAAGQAAAAwAAAARwAAAzAAAABHAAAAMAAAAGQAAABHAAAARwAAAUcAAANkAAAAJQAAAFQAAABkAAAAVQAAAWQAAABTAAAAZAAAAGQAAABkAAAAZAAAABYAAABkAAAAZAAAABYAAAJkAAAAZAAAACUAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAAMwAAAARwAAAkcAAAIwAAAARwAAARYAAAElAAAAZAAAAGQAAABTAAAAZAAAAGQAAABTAAAAZAAAADAAAAAwAAAAMAAAADAAAAAwAAAAMAAAAEwAAABkAAAAZAAAAA== 0,0: ind: 0,0 - tiles: GgAAABoAAAIaAAADGgAAAxoAAAIsAAAALAAAACwAAABDAAAAQwAAACwAAAAsAAAALAAAABoAAAIaAAACaAAAABoAAAAaAAABGgAAAxoAAAMaAAABLAAAACwAAAAsAAAAQwAAAEMAAAAsAAAALAAAACwAAAAaAAABGgAAA2gAAABLAAAASwAAAUsAAAJLAAABKgAAAlAAAABLAAADSwAAA0sAAAFLAAADKgAAAUsAAAFQAAAASwAAA0sAAABLAAABSwAAAEsAAAFLAAAASwAAAFAAAABLAAABSwAAAEsAAANLAAADSwAAAEsAAAFLAAACSwAAAksAAAJLAAACSwAAAjUAAAA1AAAANQAAAGgAAABoAAAAGgAAAmgAAABoAAAAaAAAAGgAAAAaAAABGgAAAWgAAABoAAAAaAAAAGgAAAA1AAAANQAAADUAAAA1AAAANQAAADUAAAA1AAAAaAAAAGUAAABlAAACZQAAAWUAAAFlAAACZQAAAGUAAABoAAAANQAAADUAAAA1AAAANQAAADUAAAA1AAAANQAAAGgAAABlAAACZQAAAmUAAABlAAABZQAAAGUAAABlAAACGgAAAjUAAAA1AAAANQAAADUAAAA1AAAANQAAADUAAAA1AAAAZQAAAmUAAANlAAAAZQAAA2UAAANlAAAAZQAAAhoAAAA1AAAANQAAADUAAAA1AAAANQAAADUAAAA1AAAANQAAAGUAAABlAAADZQAAA2UAAAFlAAACZQAAAmUAAAJoAAAANQAAADUAAAA1AAAANQAAADUAAAA1AAAANQAAADUAAABlAAAAZQAAA2UAAAJlAAAAZQAAAmUAAAFlAAADZgAAAxoAAANoAAAAaAAAAGgAAAA1AAAANQAAADUAAABoAAAAZQAAAmUAAABlAAACZQAAA2UAAAFlAAACZQAAAWYAAAIpAAAAKQAAACkAAABoAAAAGgAAAxoAAANoAAAAaAAAAGgAAABoAAAAZQAAAWUAAABlAAABZQAAAGUAAAFmAAADKQAAACkAAAApAAAAaAAAABoAAAIaAAAAGgAAARoAAAEaAAADaAAAAGUAAAJlAAADZQAAA2UAAANlAAAAZgAAAykAAAApAAAAKQAAAGgAAAAaAAABGgAAARoAAAIaAAACGgAAAWgAAABlAAADZQAAA2UAAABlAAADZQAAAmYAAAApAAAAKQAAACkAAABoAAAAGgAAABoAAAEaAAADGgAAAhoAAANoAAAAZQAAAGUAAANlAAACZQAAAmUAAANmAAACaAAAAGgAAABoAAAAaAAAABoAAAAaAAACGgAAAxoAAAAaAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: FgAAARYAAAAWAAAAFgAAAxYAAAEoAAAAKAAAACgAAAA/AAAAPwAAACgAAAAoAAAAKAAAABYAAAEWAAACZAAAABYAAAEWAAACFgAAAhYAAAAWAAAAKAAAACgAAAAoAAAAPwAAAD8AAAAoAAAAKAAAACgAAAAWAAACFgAAAmQAAABHAAABRwAAA0cAAAFHAAABOwAAAEwAAABHAAACRwAAAEcAAAFHAAABOwAAAUcAAANMAAAARwAAA0cAAANHAAABRwAAAkcAAAFHAAABRwAAAkwAAABHAAACRwAAAEcAAANHAAADRwAAA0cAAABHAAAARwAAA0cAAAFHAAAARwAAATEAAAAxAAAAMQAAAGQAAABkAAAAFgAAAWQAAABkAAAAZAAAAGQAAAAWAAACFgAAA2QAAABkAAAAZAAAAGQAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAZAAAAGEAAAFhAAACYQAAAmEAAAJhAAADYQAAAmEAAABkAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAAGQAAABhAAABYQAAAmEAAANhAAAAYQAAAWEAAAJhAAAAFgAAAjEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAYQAAAmEAAAFhAAADYQAAAGEAAAJhAAAAYQAAAhYAAAMxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAAGEAAANhAAAAYQAAA2EAAAJhAAAAYQAAAmEAAAJkAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAABhAAABYQAAAGEAAAJhAAAAYQAAAGEAAAJhAAACYgAAAhYAAANkAAAAZAAAAGQAAAAxAAAAMQAAADEAAABkAAAAYQAAAmEAAABhAAACYQAAAGEAAABhAAAAYQAAA2IAAAMlAAAAJQAAACUAAABkAAAAFgAAAxYAAANkAAAAZAAAAGQAAABkAAAAYQAAAmEAAANhAAACYQAAAmEAAANiAAABJQAAACUAAAAlAAAAZAAAABYAAAEWAAACFgAAABYAAAIWAAABZAAAAGEAAAFhAAADYQAAA2EAAABhAAADYgAAACUAAAAlAAAAJQAAAGQAAAAWAAABFgAAABYAAAEWAAABFgAAAmQAAABhAAABYQAAA2EAAAFhAAADYQAAAGIAAAMlAAAAJQAAACUAAABkAAAAFgAAARYAAAIWAAACFgAAABYAAAFkAAAAYQAAAmEAAAFhAAABYQAAAGEAAABiAAABZAAAAGQAAABkAAAAZAAAABYAAAEWAAADFgAAARYAAAIWAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== -2,-1: ind: -2,-1 - tiles: SwAAAmgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAADSwAAAWgAAABLAAAAUwAAA0sAAAJoAAAAWAAAAEsAAABoAAAASwAAAksAAAJLAAABGgAAAEsAAABLAAADSwAAAEsAAAJoAAAASwAAA1MAAAFLAAAAVwAAAGgAAABLAAACaAAAAEsAAAFLAAAASwAAA2gAAABLAAABSwAAAEsAAAFLAAACaAAAAEsAAANTAAADSwAAA2gAAABXAAAASwAAAWgAAABLAAABSwAAA0sAAABLAAABSwAAAksAAANLAAACSwAAAxoAAANLAAADUwAAAEsAAAFoAAAAaAAAAEsAAABoAAAASwAAAksAAAFLAAACaAAAAEsAAAJLAAACSwAAAUsAAAIaAAACSwAAA1MAAANLAAABaAAAAGgAAABLAAACGgAAAUsAAANLAAABSwAAA2gAAABLAAAASwAAAksAAAJLAAAAaAAAAEsAAANTAAABSwAAA2gAAABXAAAASwAAAWgAAABLAAAASwAAAUsAAAFoAAAASwAAAFAAAABLAAADSwAAA2gAAABLAAABUwAAAksAAANoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAACSwAAAksAAANoAAAASwAAA1MAAAFLAAACaAAAAFgAAABbAAABWwAAA1sAAAJIAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAIaAAADGgAAAWgAAABoAAAAaAAAAFsAAAJoAAAAaAAAAGgAAABLAAABSwAAAA4AAABLAAAASwAAAUsAAAJLAAACSwAAAUsAAABQAAAASwAAA1sAAANbAAAAWwAAAEgAAABoAAAASwAAAlAAAABLAAACPwAAAEsAAAFLAAACSwAAAz8AAANLAAAASwAAA1AAAABoAAAAWwAAAWgAAABoAAAAaAAAAEsAAANLAAACSwAAA0sAAANLAAAASwAAAEsAAAFLAAACSwAAAksAAAFLAAADWwAAAFsAAABbAAABWwAAAmgAAABLAAACSwAAAEsAAAJoAAAAaAAAAGgAAABoAAAAGgAAA2gAAABoAAAAaAAAAFsAAANbAAAAWwAAA1sAAAFoAAAASwAAAEsAAAFLAAADaAAAAAAAAAAAAAAAaAAAAFcAAABoAAAAAAAAAAAAAABoAAAAaAAAABoAAABoAAAAaAAAAEsAAAI/AAABSwAAAGgAAABoAAAAaAAAAGgAAAAaAAACaAAAAGgAAABoAAAASwAAA0sAAANLAAACSwAAARoAAAJLAAACSwAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: RwAAA2QAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAAJHAAAARwAAAmQAAABHAAABTwAAAUcAAAJkAAAAVAAAAEcAAAJkAAAARwAAAEcAAABHAAABFgAAAkcAAAFHAAADRwAAAEcAAABkAAAARwAAAk8AAAFHAAABUwAAAGQAAABHAAADZAAAAEcAAABHAAABRwAAA2QAAABHAAABRwAAAUcAAAFHAAACZAAAAEcAAABPAAABRwAAAmQAAABTAAAARwAAA2QAAABHAAADRwAAAEcAAAFHAAACRwAAAUcAAAFHAAACRwAAAxYAAAJHAAADTwAAA0cAAAJkAAAAZAAAAEcAAAJkAAAARwAAAUcAAANHAAADZAAAAEcAAANHAAADRwAAAUcAAAAWAAABRwAAAE8AAANHAAADZAAAAGQAAABHAAABFgAAAUcAAABHAAABRwAAAGQAAABHAAADRwAAAUcAAABHAAACZAAAAEcAAAJPAAABRwAAAGQAAABTAAAARwAAA2QAAABHAAAARwAAAkcAAAJkAAAARwAAA0wAAABHAAADRwAAAWQAAABHAAABTwAAAEcAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAABRwAAA0cAAAJkAAAARwAAAE8AAAFHAAABZAAAAFQAAABXAAACVwAAAVcAAAJEAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAIWAAAAFgAAA2QAAABkAAAAZAAAAFcAAANkAAAAZAAAAGQAAABHAAACRwAAAwoAAABHAAADRwAAAEcAAAJHAAAARwAAAUcAAANMAAAARwAAAFcAAAJXAAABVwAAAkQAAABkAAAARwAAAEwAAABHAAACOwAAAkcAAABHAAABRwAAATsAAANHAAADRwAAA0wAAABkAAAAVwAAAWQAAABkAAAAZAAAAEcAAANHAAAARwAAA0cAAANHAAACRwAAA0cAAANHAAABRwAAA0cAAAJHAAACVwAAAFcAAAFXAAABVwAAAmQAAABHAAAARwAAAkcAAAJkAAAAZAAAAGQAAABkAAAAFgAAAWQAAABkAAAAZAAAAFcAAABXAAADVwAAA1cAAAJkAAAARwAAAkcAAAFHAAABZAAAAAAAAAAAAAAAZAAAAFMAAABkAAAAAAAAAAAAAABkAAAAZAAAABYAAAJkAAAAZAAAAEcAAAE7AAACRwAAAWQAAABkAAAAZAAAAGQAAAAWAAADZAAAAGQAAABkAAAARwAAA0cAAABHAAABRwAAAhYAAAJHAAABRwAAAUcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== -2,0: ind: -2,0 - tiles: SwAAAEsAAANLAAADSwAAARoAAABLAAAASwAAAEsAAAJoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAADSwAAAEsAAAIaAAAASwAAA0sAAAFLAAAAaAAAAEsAAAJLAAAAGgAAARoAAAAaAAADSwAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAABSwAAAGgAAABLAAACSwAAARoAAAIaAAACGgAAAEsAAAFLAAAALAAAACwAAAAsAAAALAAAAGgAAABLAAAAPwAAAEsAAAJoAAAASwAAAUsAAAAaAAADGgAAARoAAABLAAADSwAAASwAAAAsAAAALAAAACwAAABoAAAASwAAAEsAAAFLAAADaAAAAEsAAAJLAAABSwAAAksAAAFLAAACSwAAAEsAAAIsAAAALAAAACwAAABoAAAAaAAAAEsAAANQAAAASwAAA2gAAABoAAAASwAAAEsAAAJLAAABaAAAAGgAAABoAAAALAAAACwAAAAsAAAAaAAAAFAAAABLAAAASwAAAksAAAFLAAADSwAAAksAAANLAAAASwAAAUsAAANLAAACSwAAA2gAAAAaAAABaAAAAGgAAABoAAAASwAAAksAAANLAAAAPwAAAEsAAABLAAADSwAAAj8AAAFLAAABSwAAAEsAAAIfAAAAHgAAARoAAAMaAAABaAAAAEsAAANLAAACSwAAAUsAAANLAAADSwAAAUsAAAFLAAACSwAAAUsAAABLAAABHgAAAh4AAAEeAAACHgAAAWgAAABoAAAAaAAAABoAAANoAAAAaAAAAGgAAABQAAAASwAAAksAAAFLAAADSwAAAR8AAAAeAAACHgAAAh4AAAFoAAAANwAAADcAAAA3AAAANwAAADcAAABoAAAAUAAAAFAAAABLAAADVwAAAFcAAABoAAAAGgAAA2gAAABoAAAAaAAAADcAAAA3AAAANwAAADcAAAA3AAAAaAAAAEsAAANLAAACSwAAA1cAAABoAAAAHQAAAh0AAAMdAAABaAAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAAGgAAABLAAADUAAAAFAAAABoAAAAVwAAAB0AAAMdAAACHQAAAWgAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAABoAAAASwAAAEsAAABQAAAAaAAAAGgAAAAdAAABHQAAAB0AAABoAAAANwAAADcAAAA3AAAAaAAAAGgAAABoAAAAaAAAABoAAAMaAAABGgAAA2gAAABoAAAAHQAAAx0AAAAdAAADaAAAADcAAAA3AAAANwAAAGgAAABXAAAAVwAAABoAAANLAAACUwAAA0sAAANoAAAAVwAAAA== + tiles: RwAAAEcAAAFHAAADRwAAARYAAANHAAADRwAAAkcAAAFkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAADRwAAAEcAAAIWAAABRwAAAEcAAANHAAABZAAAAEcAAAFHAAACFgAAABYAAAMWAAAARwAAAkcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAAARwAAAWQAAABHAAABRwAAAhYAAAEWAAABFgAAAEcAAABHAAAAKAAAACgAAAAoAAAAKAAAAGQAAABHAAABOwAAAUcAAABkAAAARwAAAkcAAAEWAAAAFgAAAxYAAABHAAABRwAAACgAAAAoAAAAKAAAACgAAABkAAAARwAAAkcAAABHAAADZAAAAEcAAAFHAAAARwAAAUcAAAFHAAADRwAAAkcAAAMoAAAAKAAAACgAAABkAAAAZAAAAEcAAAFMAAAARwAAAmQAAABkAAAARwAAAUcAAAFHAAADZAAAAGQAAABkAAAAKAAAACgAAAAoAAAAZAAAAEwAAABHAAABRwAAAkcAAAFHAAAARwAAA0cAAANHAAADRwAAA0cAAAJHAAACRwAAA2QAAAAWAAACZAAAAGQAAABkAAAARwAAAUcAAAFHAAACOwAAAEcAAANHAAABRwAAAzsAAANHAAADRwAAA0cAAAIbAAADGgAAAhYAAAMWAAADZAAAAEcAAANHAAABRwAAAEcAAAFHAAACRwAAA0cAAABHAAACRwAAAEcAAAJHAAADGgAAAxoAAAMaAAABGgAAAGQAAABkAAAAZAAAABYAAABkAAAAZAAAAGQAAABMAAAARwAAAkcAAABHAAAARwAAARsAAAMaAAAAGgAAAhoAAAJkAAAAMwAAADMAAAAzAAAAMwAAADMAAABkAAAATAAAAEwAAABHAAADUwAAAFMAAABkAAAAFgAAAmQAAABkAAAAZAAAADMAAAAzAAAAMwAAADMAAAAzAAAAZAAAAEcAAANHAAAARwAAA1MAAABkAAAAGQAAARkAAAAZAAACZAAAADMAAAAzAAAAMwAAADMAAAAzAAAAMwAAAGQAAABHAAADTAAAAEwAAABkAAAAUwAAABkAAAAZAAABGQAAAWQAAAAzAAAAMwAAADMAAAAzAAAAMwAAADMAAABkAAAARwAAAkcAAAJMAAAAZAAAAGQAAAAZAAADGQAAAhkAAAJkAAAAMwAAADMAAAAzAAAAZAAAAGQAAABkAAAAZAAAABYAAAMWAAADFgAAAGQAAABkAAAAGQAAAhkAAAMZAAAAZAAAADMAAAAzAAAAMwAAAGQAAABTAAAAUwAAABYAAANHAAAATwAAAEcAAAFkAAAAUwAAAA== 1,-1: ind: 1,-1 - tiles: aAAAAGgAAABoAAAASwAAABoAAANLAAADaAAAAGgAAAAaAAADGgAAAxoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAdAAAAHQAAAB0AAAEdAAADHQAAAR0AAANoAAAAUAAAAFMAAAJLAAACaAAAAFAAAABQAAAAaAAAAGgAAABoAAAAHQAAADcAAAA3AAAANwAAADcAAAA3AAAAaAAAAEsAAAJTAAABSwAAAmgAAABoAAAAUAAAAGgAAABLAAADaAAAAB0AAAI3AAAANwAAADcAAAA3AAAANwAAAGgAAABLAAADUwAAAksAAANQAAAAaAAAAFAAAABoAAAASwAAA2gAAAAdAAAANwAAADcAAAA3AAAANwAAADcAAABoAAAASwAAAVMAAAFLAAAAUAAAAGgAAABQAAAAaAAAAEsAAAJoAAAAHQAAAB0AAAEdAAAAHQAAAh0AAAIdAAAAaAAAAEsAAAFTAAABUAAAAFAAAABoAAAAUAAAAGgAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAAUwAAA1AAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAFgAAABXAAAAVwAAAFcAAABoAAAASwAAAFMAAAFLAAADaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANTAAABSwAAAmgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAFLAAABGgAAAUsAAANLAAADSwAAAksAAAJLAAAAUwAAAksAAAJLAAABSwAAAksAAAFLAAACGgAAA0sAAAFLAAACSwAAARoAAABTAAABUwAAAlMAAABTAAACUwAAAFMAAAFTAAADUwAAAVMAAAJTAAADUwAAARoAAAJLAAADSwAAA0sAAAIaAAACSwAAAEsAAANLAAABSwAAAksAAABLAAADSwAAA0sAAANQAAAASwAAAksAAAEaAAADSwAAA0sAAAJLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAEsAAAFLAAABSwAAAmgAAABSAAABUgAAAlIAAANSAAADUgAAAlIAAABSAAABUgAAAUsAAAFoAAAAVwAAAGgAAABQAAAASwAAAEsAAABoAAAAUgAAAhMAAAITAAADEwAAAhMAAAETAAADEwAAAlIAAABLAAACaAAAAGgAAABoAAAAUAAAAEsAAABLAAACaAAAAFIAAAETAAABEwAAAxMAAAMTAAACEwAAABMAAAJSAAACSwAAAksAAABLAAADaAAAAA== + tiles: ZAAAAGQAAABkAAAARwAAAxYAAAJHAAABZAAAAGQAAAAWAAABFgAAAxYAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAZAAABGQAAARkAAAIZAAADGQAAAxkAAABkAAAATAAAAE8AAABHAAAAZAAAAEwAAABMAAAAZAAAAGQAAABkAAAAGQAAATMAAAAzAAAAMwAAADMAAAAzAAAAZAAAAEcAAAJPAAABRwAAAGQAAABkAAAATAAAAGQAAABHAAAAZAAAABkAAAMzAAAAMwAAADMAAAAzAAAAMwAAAGQAAABHAAAATwAAA0cAAAFMAAAAZAAAAEwAAABkAAAARwAAAWQAAAAZAAAAMwAAADMAAAAzAAAAMwAAADMAAABkAAAARwAAAk8AAAFHAAACTAAAAGQAAABMAAAAZAAAAEcAAABkAAAAGQAAAhkAAAEZAAAAGQAAAhkAAAEZAAADZAAAAEcAAABPAAADTAAAAEwAAABkAAAATAAAAGQAAABHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABTwAAAkwAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAFQAAABTAAAAUwAAAFMAAABkAAAARwAAAE8AAAFHAAADZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFPAAADRwAAAWQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAABHAAABFgAAAEcAAABHAAABRwAAAkcAAAJHAAADTwAAAEcAAAFHAAAARwAAAEcAAAJHAAABFgAAAkcAAANHAAADRwAAAhYAAAFPAAACTwAAAE8AAABPAAADTwAAA08AAAJPAAABTwAAAE8AAAJPAAADTwAAABYAAABHAAADRwAAAEcAAAEWAAAARwAAAkcAAANHAAACRwAAAUcAAANHAAADRwAAAkcAAANMAAAARwAAAkcAAAEWAAADRwAAA0cAAANHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAEcAAAJHAAACRwAAAWQAAABOAAADTgAAAk4AAAFOAAACTgAAAU4AAAJOAAADTgAAAEcAAABkAAAAUwAAAGQAAABMAAAARwAAA0cAAABkAAAATgAAAw8AAAMPAAACDwAAAA8AAAAPAAACDwAAA04AAAJHAAACZAAAAGQAAABkAAAATAAAAEcAAABHAAADZAAAAE4AAAAPAAADDwAAAA8AAAEPAAACDwAAAw8AAABOAAAARwAAAEcAAANHAAABZAAAAA== 1,0: ind: 1,0 - tiles: SwAAA0sAAABLAAAAaAAAAFIAAAITAAAAEwAAAxMAAAETAAABEwAAAxMAAAJSAAAASwAAAksAAAJQAAAAaAAAAEsAAANLAAACSwAAAGgAAABSAAABEwAAAhMAAAITAAABEwAAABMAAAMTAAABUgAAA0sAAABLAAABSwAAABoAAAFLAAACSwAAAksAAAFoAAAAUgAAARMAAAETAAABEwAAABMAAAMTAAABEwAAA1IAAANLAAACUAAAAEsAAABoAAAASwAAAUsAAAJLAAACaAAAAFIAAAATAAABEwAAAxMAAAMTAAACEwAAABMAAABSAAACSwAAA0sAAANLAAABaAAAAEsAAANLAAACSwAAAWgAAABSAAACUgAAA1IAAANSAAACUgAAA1IAAAJSAAAAUgAAA0sAAAJLAAAASwAAA2gAAABLAAABSwAAAksAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAFoAAAASwAAAEsAAAJLAAAAGgAAAUsAAANLAAABSwAAA0sAAAFLAAAASwAAA0sAAABLAAABSwAAAksAAAJLAAAAGgAAAVAAAABLAAABSwAAABoAAAJLAAABSwAAAEsAAANLAAAASwAAAksAAAJLAAABSwAAAUsAAANLAAABUAAAABoAAANQAAAAUAAAAEsAAAAaAAABSwAAAEsAAAFLAAACDgAAAFAAAABLAAABSwAAAksAAAJQAAAASwAAA1AAAAAaAAADZQAAAGUAAAJlAAADaAAAAGgAAAAaAAADaAAAAGgAAAAaAAAAHgAAAxoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGUAAAJlAAABZQAAABoAAAJlAAACZQAAAGUAAAJoAAAAGgAAAh4AAAAaAAAAaAAAAEsAAANLAAABaAAAAEsAAAFlAAAAZQAAAWUAAAAaAAAAZQAAAmUAAANlAAACaAAAABoAAAIeAAABGgAAAmgAAABQAAAASwAAAGgAAABQAAAAZQAAAmUAAAFlAAAAaAAAAGUAAABlAAADZQAAA2gAAAAaAAABHgAAAhoAAANoAAAASwAAAEsAAABoAAAASwAAAWUAAANlAAADZQAAA2gAAABlAAAAZQAAAmUAAABoAAAAGgAAAB4AAAAaAAACaAAAAEsAAANLAAACaAAAAEsAAAJlAAACZQAAAmUAAANlAAACZQAAA2UAAABlAAAAaAAAABoAAAIaAAAAGgAAAGgAAAAhAAABIQAAASEAAAMhAAACaAAAAGUAAAFlAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABGgAAAhoAAAJoAAAAIQAAAyEAAAIhAAABIQAAAg== + tiles: RwAAAEcAAAFHAAABZAAAAE4AAAIPAAACDwAAAg8AAAAPAAADDwAAAA8AAANOAAAARwAAAUcAAAFMAAAAZAAAAEcAAAFHAAADRwAAAGQAAABOAAAADwAAAQ8AAAAPAAACDwAAAw8AAAAPAAADTgAAAUcAAAFHAAACRwAAARYAAAFHAAABRwAAAUcAAABkAAAATgAAAQ8AAAEPAAADDwAAAA8AAAMPAAADDwAAA04AAANHAAACTAAAAEcAAAJkAAAARwAAA0cAAABHAAADZAAAAE4AAAAPAAACDwAAAw8AAAMPAAADDwAAAQ8AAAJOAAADRwAAA0cAAANHAAADZAAAAEcAAANHAAADRwAAAmQAAABOAAAATgAAA04AAABOAAACTgAAAU4AAABOAAADTgAAA0cAAANHAAAARwAAAmQAAABHAAADRwAAAUcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAFkAAAARwAAAkcAAAJHAAABFgAAAUcAAAJHAAACRwAAAkcAAABHAAADRwAAAkcAAABHAAAARwAAAUcAAANHAAAAFgAAA0wAAABHAAAARwAAAxYAAAJHAAACRwAAAkcAAAJHAAACRwAAA0cAAAFHAAACRwAAAUcAAANHAAADTAAAABYAAAFMAAAATAAAAEcAAAMWAAAARwAAAEcAAAFHAAAACgAAAEwAAABHAAACRwAAAUcAAAFMAAAARwAAAEwAAAAWAAADYQAAAWEAAAJhAAABZAAAAGQAAAAWAAAAZAAAAGQAAAAWAAABGgAAABYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAAFhAAADYQAAAhYAAAFhAAABYQAAAGEAAAFkAAAAFgAAABoAAAIWAAAAZAAAAEcAAAJHAAADZAAAAEcAAANhAAACYQAAAWEAAAMWAAABYQAAA2EAAAJhAAACZAAAABYAAAMaAAABFgAAA2QAAABMAAAARwAAAGQAAABMAAAAYQAAAGEAAABhAAACZAAAAGEAAAFhAAADYQAAAWQAAAAWAAABGgAAARYAAAFkAAAARwAAAUcAAANkAAAARwAAAmEAAAJhAAAAYQAAA2QAAABhAAADYQAAAWEAAABkAAAAFgAAAhoAAAIWAAADZAAAAEcAAANHAAABZAAAAEcAAANhAAADYQAAAGEAAABhAAABYQAAA2EAAABhAAADZAAAABYAAAIWAAABFgAAA2QAAAAdAAAAHQAAAR0AAAIdAAABZAAAAGEAAABhAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAABFgAAAxYAAANkAAAAHQAAAR0AAAMdAAAAHQAAAA== -1,1: ind: -1,1 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAEsAAAJQAAAAUAAAAEsAAAFQAAAASwAAAWgAAAAbAAACGwAAAGgAAAAZAAAAQgAAAEIAAABoAAAAaAAAAGgAAAAsAAAAPAAAACwAAAAsAAAAPAAAACwAAABoAAAAGwAAAxsAAAEZAAAAaAAAAEsAAAIOAAAAVwAAAGgAAABoAAAALAAAADwAAAAsAAAALAAAACwAAAAsAAAAaAAAABsAAAAbAAADUAAAAFkAAAIOAAAASwAAA2gAAABZAAADaAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAAGgAAAAbAAACGwAAAlAAAAAZAAAASwAAAw4AAABoAAAAaAAAAGgAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGwAAARsAAABLAAABaAAAABkAAABoAAAAVwAAAGgAAABYAAAAGgAAAVcAAABQAAAAWQAAA1AAAABQAAAAaAAAABsAAAAbAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAABQAAAAUAAAAFkAAABQAAAAUAAAAGgAAAAaAAADaAAAAB4AAAMaAAACaAAAAGgAAABoAAAAVwAAAFcAAAAaAAADaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAAAeAAADGgAAA2gAAABoAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWQAAA1AAAABQAAAAHgAAAhoAAAFoAAAAaAAAAGgAAABXAAAAaAAAAFcAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAB4AAAEaAAABWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAeAAABGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAUAAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAGgAAA2gAAABoAAAAaAAAAFgAAABXAAAAUAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAEsAAABLAAAAaAAAAFcAAABoAAAAaAAAAFAAAABQAAAAaAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAAAAAAAAAAAAAGgAAABQAAAAUAAAAFAAAABQAAAASwAAAUsAAANoAAAAZQAAAmUAAABlAAABaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAUAAAAEsAAAJLAAADSwAAAQ== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAEcAAAJMAAAATAAAAEcAAABMAAAARwAAAWQAAAAXAAACFwAAA2QAAAAVAAAAPgAAAD4AAABkAAAAZAAAAGQAAAAoAAAAOAAAACgAAAAoAAAAOAAAACgAAABkAAAAFwAAAxcAAAMVAAAAZAAAAEcAAAAKAAAAUwAAAGQAAABkAAAAKAAAADgAAAAoAAAAKAAAACgAAAAoAAAAZAAAABcAAAAXAAAATAAAAFUAAAEKAAAARwAAAmQAAABVAAAAZAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAGQAAAAXAAADFwAAAEwAAAAVAAAARwAAAQoAAABkAAAAZAAAAGQAAABMAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFwAAAxcAAAJHAAADZAAAABUAAABkAAAAUwAAAGQAAABUAAAAFgAAAFMAAABMAAAAVQAAAkwAAABMAAAAZAAAABcAAAAXAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAFMAAAATAAAAFUAAAFMAAAATAAAAGQAAAAWAAACZAAAABoAAAEWAAABZAAAAGQAAABkAAAAUwAAAFMAAAAWAAADZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAAAaAAABFgAAAmQAAABkAAAAZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVQAAAkwAAABMAAAAGgAAABYAAANkAAAAZAAAAGQAAABTAAAAZAAAAFMAAABkAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAABoAAAIWAAADVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAaAAACFgAAAmQAAABkAAAAZAAAAGQAAABkAAAATAAAAGQAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAFgAAA2QAAABkAAAAZAAAAFQAAABTAAAATAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAEcAAABHAAAAZAAAAFMAAABkAAAAZAAAAEwAAABMAAAAZAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAA2QAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAAAAAAAAAAAAAGQAAABMAAAATAAAAEwAAABMAAAARwAAAkcAAAJkAAAAYQAAAmEAAAFhAAABZAAAAFQAAABkAAAAZAAAAGQAAABkAAAATAAAAEcAAAJHAAAARwAAAg== 0,1: ind: 0,1 - tiles: GwAAAhsAAAEbAAAAGgAAARoAAAMaAAAAGgAAABoAAAIaAAADGgAAACEAAAEhAAAAIQAAAyEAAAIaAAAAIQAAAhsAAAMbAAACGwAAAhoAAAMaAAACGgAAARoAAAEaAAACGgAAARoAAAMhAAABIQAAAyEAAAEhAAADGgAAASEAAAMbAAACGwAAARsAAAFoAAAAaAAAAGgAAAAaAAACaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAAGwAAAxsAAAEbAAABaAAAAGYAAAFmAAADZgAAAmYAAAFmAAAAGgAAA1AAAABLAAADSwAAAWgAAAAdAAAAHQAAABsAAAEbAAADGwAAA2gAAABmAAADZgAAAWYAAANmAAAAZgAAAWgAAAAaAAAASwAAAEsAAAFoAAAAHQAAAh0AAAIbAAAAGwAAAxsAAABoAAAAZgAAAWYAAAFmAAADZgAAA2YAAABoAAAAGgAAAUsAAABLAAAAaAAAAB0AAAMdAAACaAAAAGgAAABoAAAAaAAAAGYAAANmAAADZgAAAmYAAAJmAAACaAAAABoAAAJLAAAASwAAAhoAAAIdAAABHQAAA1cAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAHQAAAR0AAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFcAAABXAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABQAAAAaAAAAAAAAAAAAAAAaAAAAGgAAAABAAAAaAAAAAEAAABoAAAAAQAAAGgAAAAAAAAAAAAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAAGgAAAABAAAAaAAAAGgAAABXAAAAAQAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAA== + tiles: FwAAABcAAAIXAAAAFgAAAhYAAAEWAAABFgAAABYAAAEWAAABFgAAAB0AAAEdAAABHQAAAB0AAAEWAAABHQAAARcAAAIXAAABFwAAABYAAAMWAAADFgAAARYAAAEWAAACFgAAARYAAAMdAAABHQAAAB0AAAAdAAADFgAAAB0AAAMXAAAAFwAAARcAAANkAAAAZAAAAGQAAAAWAAABZAAAAGQAAABkAAAAZAAAABYAAAFkAAAAZAAAAGQAAABkAAAAFwAAAhcAAAEXAAABZAAAAGIAAAJiAAAAYgAAAGIAAANiAAACFgAAAEwAAABHAAABRwAAAmQAAAAZAAADGQAAAhcAAAAXAAACFwAAAmQAAABiAAADYgAAA2IAAAJiAAABYgAAA2QAAAAWAAAARwAAA0cAAABkAAAAGQAAAxkAAAAXAAAAFwAAARcAAAJkAAAAYgAAAmIAAAFiAAACYgAAA2IAAAJkAAAAFgAAAEcAAAJHAAAAZAAAABkAAAEZAAAAZAAAAGQAAABkAAAAZAAAAGIAAABiAAAAYgAAAmIAAANiAAADZAAAABYAAAFHAAABRwAAABYAAAEZAAAAGQAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAGQAAAxkAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAFMAAABTAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABMAAAAZAAAAAAAAAAAAAAAZAAAAGQAAAABAAAAZAAAAAEAAABkAAAAAQAAAGQAAAAAAAAAAAAAAGQAAABkAAAATAAAAGQAAABkAAAAZAAAAGQAAAABAAAAZAAAAGQAAABTAAAAAQAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAA== 1,1: ind: 1,1 - tiles: IQAAACEAAAIhAAADGgAAARoAAAAaAAADGgAAARoAAAAaAAAAGgAAARoAAAJoAAAAIQAAASEAAAMhAAAAIQAAAiEAAAIhAAAAIQAAARoAAAMaAAAAGgAAABoAAAEaAAAAGgAAAhoAAAMaAAAAGgAAACIAAAMiAAACIgAAARoAAAIaAAACaAAAAGgAAABoAAAAGgAAABoAAAEaAAADGgAAAxoAAAIaAAAAGgAAABoAAAAiAAADIgAAAiIAAAAaAAABHQAAAh0AAAAdAAADaAAAAGgAAABoAAAAGgAAA2gAAABLAAABSwAAAUsAAAFoAAAAIgAAAyIAAAAiAAACGgAAAh0AAAEdAAADHQAAAmgAAAAaAAAAGgAAAzcAAAA3AAAANwAAADcAAAA3AAAAaAAAACIAAAAiAAADIgAAA2gAAAAdAAAAHQAAAx0AAAFoAAAAGgAAARoAAAE3AAAANwAAADcAAAA3AAAANwAAABoAAAAiAAACIgAAASIAAAJYAAAAHQAAAB0AAAAdAAACaAAAABoAAAEaAAAANwAAADcAAAA3AAAANwAAADcAAABoAAAAIgAAAyIAAAMiAAABaAAAAB0AAAEdAAAAHQAAAmgAAAAaAAACGgAAABoAAAMaAAAAGgAAAxoAAAMaAAACaAAAABoAAAMaAAACGgAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACaAAAABoAAANoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABQAAAAaAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAQAAAAEAAAABAAAAAaAAAAGgAAABQAAAAZQAAA2gAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAABoAAAJoAAAAGgAAAGgAAABoAAAASwAAAWUAAAFoAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAGgAAABoAAAIaAAAAGgAAAxoAAAEaAAACUAAAAFAAAABlAAADaAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAABoAAAIaAAACGgAAAxoAAAMaAAABGgAAA2gAAABoAAAAZQAAA2gAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAAAaAAABGgAAABoAAAAaAAACGgAAARoAAABLAAADaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAGgAAARoAAAEaAAABGgAAAhoAAAAaAAAAWAAAAFAAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAABoAAAEaAAAAGgAAARoAAAAaAAADGgAAAg== + tiles: HQAAAh0AAAEdAAABFgAAABYAAAAWAAABFgAAABYAAAEWAAAAFgAAAhYAAABkAAAAHQAAAh0AAAIdAAABHQAAAx0AAAAdAAADHQAAABYAAAMWAAACFgAAAhYAAAIWAAADFgAAAxYAAAEWAAAAFgAAAB4AAAMeAAADHgAAAxYAAAMWAAACZAAAAGQAAABkAAAAFgAAAxYAAAEWAAADFgAAABYAAAIWAAAAFgAAABYAAAEeAAAAHgAAAB4AAAAWAAAAGQAAAhkAAAAZAAADZAAAAGQAAABkAAAAFgAAAWQAAABHAAAARwAAA0cAAAJkAAAAHgAAAR4AAAMeAAABFgAAARkAAAMZAAACGQAAA2QAAAAWAAADFgAAAzMAAAAzAAAAMwAAADMAAAAzAAAAZAAAAB4AAAEeAAABHgAAA2QAAAAZAAAAGQAAAxkAAABkAAAAFgAAAhYAAAMzAAAAMwAAADMAAAAzAAAAMwAAABYAAAIeAAADHgAAAh4AAAJUAAAAGQAAAxkAAAIZAAADZAAAABYAAAEWAAABMwAAADMAAAAzAAAAMwAAADMAAABkAAAAHgAAAR4AAAEeAAACZAAAABkAAAAZAAABGQAAAWQAAAAWAAACFgAAARYAAAEWAAAAFgAAABYAAAMWAAADZAAAABYAAAMWAAAAFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAAAZAAAABYAAABkAAAAZAAAAGQAAABkAAAAZAAAAEwAAABMAAAAZAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAPAAAADwAAAA8AAAAZAAAAGQAAABMAAAAYQAAAmQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAABYAAABkAAAAFgAAAWQAAABkAAAARwAAAGEAAANkAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAAFgAAABYAAAAWAAAAFgAAAxYAAAAWAAABTAAAAEwAAABhAAADZAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAABYAAAIWAAAAFgAAAhYAAAMWAAABFgAAAWQAAABkAAAAYQAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAAAWAAAAFgAAARYAAAMWAAABFgAAABYAAAJHAAACZAAAAGQAAABkAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAAFgAAARYAAAEWAAABFgAAABYAAAIWAAAAVAAAAEwAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAABYAAAIWAAAAFgAAABYAAAEWAAADFgAAAg== -2,-2: ind: -2,-2 - tiles: SwAAAWgAAABoAAAAVwAAAFcAAABoAAAATgAAAU4AAABOAAACTgAAAmgAAABLAAACUwAAAUsAAAFoAAAAaAAAABoAAANoAAAAGgAAAhoAAAMaAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA1MAAANQAAAAaAAAAGgAAABLAAACaAAAABoAAAAaAAADGgAAAWgAAABQAAAAaAAAAFcAAABXAAAAaAAAAEsAAANTAAAAUAAAABoAAAFoAAAASwAAAGgAAAAaAAADGgAAARoAAAJoAAAAUAAAAGgAAABXAAAAVwAAAGgAAABLAAADUwAAAVAAAABoAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAFMAAAJLAAACSwAAAEsAAAFLAAACGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAFAAAABTAAADUwAAAlMAAABTAAACSwAAAWgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAUwAAAEsAAANLAAACSwAAAEsAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAFLAAABSwAAAUsAAAFoAAAAGgAAAxoAAAIaAAAAaAAAAGgAAABLAAADaAAAABoAAAMaAAAAaAAAAEsAAAJQAAAAUAAAAFAAAABLAAAAaAAAAEsAAAFTAAACSwAAAxoAAAMaAAADSwAAAGgAAABXAAAAVwAAABoAAAJLAAAAUAAAAFAAAABQAAAASwAAAmgAAABLAAAAUwAAAUsAAAIaAAACGgAAAEsAAAAaAAAAaAAAAFcAAABoAAAADgAAAFAAAABQAAAAUAAAAEsAAAAaAAACUAAAAFMAAAFLAAABaAAAABoAAANLAAAAaAAAAGgAAABXAAAAaAAAAEsAAABLAAADSwAAAUsAAAJLAAAAaAAAAFAAAABTAAADSwAAAmgAAAAaAAAAGgAAAWgAAABoAAAAaAAAAGgAAABLAAABSwAAAEsAAAJLAAACaAAAAGgAAABQAAAAUwAAAEsAAAJoAAAAWQAAAUsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAlMAAAJLAAAAaAAAAFAAAABLAAADSwAAAUsAAABLAAADSwAAARoAAAFLAAADSwAAAksAAAFoAAAASwAAAEsAAAFTAAADSwAAAGgAAABoAAAASwAAAksAAAJQAAAASwAAAlAAAAAaAAADUAAAAFAAAABLAAABaAAAAGgAAABLAAADUwAAAUsAAAJoAAAAaAAAAA== + tiles: RwAAA2QAAABkAAAAUwAAAFMAAABkAAAASgAAAkoAAANKAAAASgAAAWQAAABHAAADTwAAA0cAAANkAAAAZAAAABYAAAFkAAAAFgAAAhYAAAEWAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA08AAABMAAAAZAAAAGQAAABHAAADZAAAABYAAAIWAAADFgAAAWQAAABMAAAAZAAAAFMAAABTAAAAZAAAAEcAAAJPAAAATAAAABYAAABkAAAARwAAAGQAAAAWAAACFgAAARYAAANkAAAATAAAAGQAAABTAAAAUwAAAGQAAABHAAADTwAAAUwAAABkAAAAZAAAAEcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAk8AAANHAAADRwAAAEcAAAFHAAAAFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAUwAAABPAAACTwAAAE8AAAFPAAABRwAAAmQAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAATwAAA0cAAAJHAAAARwAAA0cAAAJkAAAAZAAAAGQAAABkAAAARwAAAUcAAABHAAADRwAAA0cAAANkAAAAFgAAAxYAAAIWAAADZAAAAGQAAABHAAADZAAAABYAAAMWAAADZAAAAEcAAAFMAAAATAAAAEwAAABHAAADZAAAAEcAAAJPAAADRwAAAxYAAAAWAAADRwAAAmQAAABTAAAAUwAAABYAAAJHAAADTAAAAEwAAABMAAAARwAAAGQAAABHAAABTwAAAEcAAAMWAAABFgAAAUcAAAMWAAABZAAAAFMAAABkAAAACgAAAEwAAABMAAAATAAAAEcAAAAWAAAATAAAAE8AAAJHAAAAZAAAABYAAABHAAAAZAAAAGQAAABTAAAAZAAAAEcAAAFHAAAARwAAAUcAAABHAAACZAAAAEwAAABPAAADRwAAAGQAAAAWAAACFgAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAUcAAABHAAADZAAAAGQAAABMAAAATwAAA0cAAANkAAAAVQAAAUcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAU8AAABHAAAAZAAAAEwAAABHAAABRwAAA0cAAAJHAAABRwAAAxYAAAFHAAABRwAAAEcAAABkAAAARwAAA0cAAABPAAAARwAAAWQAAABkAAAARwAAAEcAAAJMAAAARwAAAEwAAAAWAAADTAAAAEwAAABHAAADZAAAAGQAAABHAAADTwAAA0cAAAFkAAAAZAAAAA== -1,-2: ind: -1,-2 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFTAAADUAAAAFAAAABoAAAAAAAAAGgAAABoAAAAUAAAAFcAAABoAAAAVwAAAGgAAABoAAAAVwAAAGgAAABLAAAAUwAAA0sAAANoAAAAaAAAAAAAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAaAAAAGgAAAAaAAAASwAAAFMAAANLAAAAaAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANTAAADSwAAAGgAAABoAAAAaAAAAEsAAABLAAADGgAAAUsAAANLAAAASwAAAFAAAABQAAAASwAAAEsAAAJSAAABUgAAAFIAAANLAAAASwAAABoAAAJTAAACUwAAABoAAAFTAAAAUwAAA1MAAANTAAADUwAAAVMAAABTAAABUgAAAj8AAABSAAAAUwAAA1MAAAEaAAADSwAAA0sAAAEaAAABSwAAAksAAABLAAACSwAAAEsAAANLAAADSwAAA1IAAANSAAACUgAAA0sAAAFLAAACGgAAAGgAAABoAAAAaAAAAGgAAAAaAAAAaAAAABoAAAAaAAACaAAAAGgAAABLAAADUwAAAUsAAAFoAAAAaAAAAGgAAAAaAAABaAAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAABoAAAASwAAA1MAAAFLAAAAaAAAAGgAAABoAAAAHgAAAGgAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAAaAAAABoAAAAaAAAAGgAAAWgAAABoAAAAaAAAAB4AAABoAAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAAGgAAABWAAABVgAAA1YAAABoAAAAaAAAAGgAAAAeAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAWgAAABoAAAAVgAAA1YAAABWAAADGgAAA2gAAABoAAAAUAAAAFAAAAA2AAAANgAAADYAAAA2AAAAaAAAAFgAAABYAAAAaAAAAFYAAAJWAAADVgAAAWgAAABoAAAAaAAAAFAAAABoAAAANgAAADYAAAA2AAAANgAAAGgAAABoAAAAVwAAAGgAAABWAAAAVgAAAVYAAAFoAAAAaAAAAGgAAABXAAAAaAAAADYAAAA2AAAANgAAADYAAABoAAAAVwAAAFcAAABoAAAAVgAAAlYAAABWAAABaAAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFYAAAFWAAADVgAAAmgAAABoAAAAWQAAAQ== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABPAAAATAAAAEwAAABkAAAAAAAAAGQAAABkAAAATAAAAFMAAABkAAAAUwAAAGQAAABkAAAAUwAAAGQAAABHAAADTwAAA0cAAANkAAAAZAAAAAAAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAAZAAAAGQAAAAWAAABRwAAA08AAABHAAAAZAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANPAAADRwAAAmQAAABkAAAAZAAAAEcAAAFHAAACFgAAAUcAAABHAAADRwAAAkwAAABMAAAARwAAA0cAAAJOAAADTgAAA04AAAJHAAADRwAAAhYAAAJPAAABTwAAARYAAABPAAADTwAAAE8AAANPAAADTwAAA08AAANPAAADTgAAAzsAAABOAAADTwAAAU8AAAMWAAADRwAAAEcAAAMWAAAARwAAAUcAAABHAAADRwAAAkcAAAJHAAABRwAAAU4AAANOAAAATgAAAkcAAANHAAADFgAAAmQAAABkAAAAZAAAAGQAAAAWAAAAZAAAABYAAAAWAAACZAAAAGQAAABHAAABTwAAA0cAAAJkAAAAFgAAAGQAAAAWAAABZAAAADIAAAAyAAAAMgAAADIAAAAyAAAAMgAAADIAAABkAAAARwAAAE8AAAFHAAAAZAAAADYAAAARAAAAGgAAAWQAAAAyAAAAMgAAADIAAAAyAAAAMgAAADIAAAAyAAAAZAAAABYAAAIWAAAAFgAAAGQAAAA2AAAAEQAAABoAAABkAAAAMgAAADIAAAAyAAAAMgAAADIAAAAyAAAAMgAAAGQAAABSAAAAUgAAAlIAAAFkAAAANgAAABEAAAAaAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAGQAAABkAAAAUgAAAVIAAAJSAAADFgAAADYAAAARAAAATAAAAEwAAAAyAAAAMgAAADIAAAAyAAAAZAAAAFQAAABUAAAAZAAAAFIAAABSAAABUgAAAWQAAAA2AAAAEQAAAEwAAABkAAAAMgAAADIAAAAyAAAAMgAAAGQAAABkAAAAUwAAAGQAAABSAAADUgAAAVIAAAFkAAAAZAAAAGQAAABTAAAAZAAAADIAAAAyAAAAMgAAADIAAABkAAAAUwAAAFMAAABkAAAAUgAAAFIAAANSAAACFgAAAWQAAABkAAAATAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFIAAABSAAACUgAAA2QAAABkAAAAVQAAAw== 0,-2: ind: 0,-2 - tiles: AAAAAGgAAAABAAAAAQAAAAEAAAABAAAAAQAAAGgAAABoAAAAaAAAAAAAAAAAAAAAaAAAAFIAAAJLAAABSwAAAQAAAABoAAAAAQAAAAEAAAABAAAAAQAAAAEAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAAAAAAAaAAAAAEAAAABAAAAAQAAAAEAAAABAAAAaAAAAFkAAAJoAAAAaAAAAFcAAABXAAAAVwAAAEsAAAFLAAAAaAAAAGgAAABoAAAAaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAksAAAFLAAAASwAAAEsAAAJLAAABSwAAAEsAAANLAAADSwAAAksAAAMaAAACSwAAAksAAAJQAAAASwAAAUsAAAFTAAACUwAAAlMAAAE/AAADUwAAAVMAAAI/AAABUwAAA1MAAABTAAACGgAAAEsAAAFLAAABUAAAAFAAAABLAAABSwAAAksAAABLAAADSwAAAUsAAANLAAACSwAAAksAAAFLAAABSwAAAhoAAABLAAADUAAAAFAAAABLAAACSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAAAAAAAAAAAAAAAAABoAAAAVwAAAFcAAABoAAAAGgAAABoAAAMaAAADGgAAARoAAAIaAAABaAAAAEsAAANLAAADAAAAAAAAAAAAAAAAaAAAAFcAAABoAAAAaAAAABoAAAAaAAACGgAAAxoAAAAaAAABGgAAAWgAAABLAAABSwAAAAAAAAAAAAAAAAAAAGgAAABXAAAAaAAAAGgAAAAaAAABMAAAADAAAAAwAAAAMAAAABoAAAAaAAABSwAAAksAAAIAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAGgAAAxoAAAAaAAAAGgAAARoAAAAaAAADaAAAAEsAAAJLAAADAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAABoAAAAaAAAAGgAAABoAAAMaAAACGgAAAGgAAAAaAAAAGgAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABZAAACaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABLAAABSwAAAw== + tiles: AAAAAGQAAAABAAAAAQAAAAEAAAABAAAAAQAAAGQAAABkAAAAZAAAAAAAAAAAAAAAZAAAAE4AAAFHAAACRwAAAwAAAABkAAAAAQAAAAEAAAABAAAAAQAAAAEAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAAMAAAAAZAAAAAEAAAABAAAAAQAAAAEAAAABAAAAZAAAAFUAAABkAAAAZAAAAFMAAABTAAAAUwAAAEcAAANHAAAAZAAAAGQAAABkAAAAZAAAABYAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAkcAAAFHAAADRwAAA0cAAANHAAACRwAAAkcAAAJHAAACRwAAAkcAAAEWAAAARwAAA0cAAABMAAAARwAAAUcAAABPAAADTwAAAU8AAAM7AAAATwAAA08AAAM7AAADTwAAAk8AAAFPAAABFgAAAEcAAAFHAAADTAAAAEwAAABHAAACRwAAA0cAAAJHAAACRwAAAkcAAAFHAAABRwAAAUcAAAJHAAADRwAAAxYAAABHAAADTAAAAEwAAABHAAADRwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAAARAAAAEQAAABEAAABkAAAAUwAAAFMAAABkAAAAFgAAAxYAAAAWAAADFgAAABYAAAEWAAABZAAAAEcAAANHAAAAEQAAABEAAAARAAAAZAAAAFMAAABkAAAAZAAAABYAAAEWAAACFgAAARYAAAIWAAABFgAAAGQAAABHAAADRwAAAhEAAAARAAAAEQAAAGQAAABTAAAAZAAAAGQAAAAWAAACLAAAACwAAAAsAAAALAAAABYAAAMWAAADRwAAAUcAAAIRAAAAEQAAABEAAABkAAAAZAAAAGQAAABkAAAAFgAAAhYAAAIWAAAAFgAAAhYAAAIWAAADZAAAAEcAAANHAAABEQAAABEAAAARAAAAZAAAAGQAAABkAAAAZAAAABYAAAMWAAADFgAAAxYAAAEWAAACFgAAAGQAAAAWAAADFgAAARYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAAJkAAAAZAAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAACZAAAAGQAAABkAAAAZAAAAGQAAABVAAACZAAAAFMAAABTAAAAUwAAAFMAAABTAAAAZAAAAGQAAABHAAACRwAAAQ== 1,-2: ind: 1,-2 - tiles: SwAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAmgAAABoAAAAaAAAAFAAAABoAAAAaAAAABoAAAFoAAAAaAAAAFAAAABoAAAAVwAAAFAAAABoAAAAUQAAAFEAAANRAAAAUQAAAWgAAABYAAAAaAAAAGYAAAJmAAADZgAAA2YAAAJLAAADaAAAAFAAAABXAAAAaAAAAFEAAAJRAAABUQAAAVEAAABoAAAAVwAAAGgAAABmAAAAZgAAAGYAAANmAAACSwAAAmgAAABXAAAAVwAAAGgAAABRAAADUQAAAlEAAAFRAAABaAAAAFgAAABoAAAAZgAAAGYAAANmAAAAZgAAA0sAAABoAAAAUAAAAFAAAABoAAAAUQAAAFEAAAFRAAAAUQAAAmgAAABYAAAAaAAAAGYAAANmAAAAZgAAAWYAAANLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAA2gAAABoAAAAaAAAAGgAAAAaAAACaAAAAGgAAABoAAAASwAAABoAAAJCAAAAGgAAAksAAABLAAADSwAAAksAAAFLAAABSwAAA0sAAAFLAAACSwAAAUsAAABLAAACGgAAAksAAAAaAAACQgAAABoAAAFLAAAASwAAAEsAAANLAAACSwAAAksAAAFLAAACSwAAAEsAAAFLAAABSwAAAxoAAAJQAAAAaAAAAGgAAABoAAAASwAAA0sAAAJLAAACSwAAA0sAAABLAAABSwAAAEsAAAFLAAABSwAAAEsAAAJoAAAASwAAAWgAAABLAAAASwAAAksAAABLAAACSwAAA0sAAAJLAAACSwAAA0sAAABLAAADSwAAAUsAAABLAAAASwAAAksAAAJoAAAASwAAAUsAAAFLAAABSwAAA0sAAAFLAAAASwAAAksAAAFLAAADSwAAAEsAAANLAAABSwAAAksAAAFLAAABaAAAAEsAAAJLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAAGgAAA2gAAABoAAAAaAAAAGgAAAAsAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACwAAABoAAAAaAAAAEsAAAFLAAACSwAAAksAAABLAAADUwAAAFMAAANTAAADUwAAA1MAAANTAAAAUwAAAFMAAABTAAACSwAAAUsAAANLAAAASwAAA0sAAAFLAAABSwAAA1MAAAFTAAAAUwAAAFMAAANTAAACUwAAAFMAAANTAAAAUwAAAUsAAANLAAAASwAAAUsAAABLAAACSwAAA0sAAANTAAAAUwAAA1MAAABTAAACUwAAAlMAAABTAAABUwAAA1MAAABLAAACSwAAAA== + tiles: RwAAA2QAAABTAAAAZAAAAGQAAABkAAAAFgAAAGQAAABkAAAAZAAAAEwAAABkAAAAZAAAABYAAABkAAAAZAAAAEwAAABkAAAAZAAAAGQAAABiAAAAYgAAA2IAAAJiAAACYgAAAmQAAABUAAAAZAAAAGIAAAJiAAAAYgAAAWIAAAJHAAAAZAAAAEwAAABkAAAAYgAAAGIAAABiAAAAYgAAAGIAAANkAAAAUwAAAGQAAABiAAACYgAAA2IAAANiAAACRwAAAmQAAABTAAAAZAAAAGIAAAJiAAAAYgAAAGIAAAJiAAACZAAAAFQAAABkAAAAYgAAA2IAAANiAAACYgAAAEcAAAJkAAAATAAAAGQAAABiAAAAYgAAAGIAAAJiAAADYgAAA2QAAABUAAAAZAAAAGIAAABiAAAAYgAAAGIAAAFHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAWQAAABkAAAAZAAAAGQAAAAWAAADZAAAAGQAAABkAAAARwAAAhYAAAE+AAAAFgAAAkcAAABHAAACRwAAAkcAAAFHAAACRwAAAEcAAANHAAADRwAAA0cAAANHAAABFgAAAUcAAAAWAAACPgAAABYAAANHAAABRwAAAEcAAABHAAAARwAAAUcAAAFHAAABRwAAAEcAAANHAAABRwAAARYAAANMAAAAZAAAAGQAAABkAAAARwAAAkcAAAJHAAADRwAAAkcAAABHAAACRwAAAUcAAANHAAABRwAAAEcAAABkAAAARwAAAGQAAABHAAADRwAAAEcAAAJHAAADRwAAA0cAAABHAAACRwAAA0cAAANHAAABRwAAAEcAAABHAAACRwAAAkcAAAJkAAAARwAAAUcAAANHAAABRwAAA0cAAABHAAABRwAAAkcAAAJHAAABRwAAAkcAAAJHAAADRwAAA0cAAAJHAAABZAAAAEcAAABHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABFgAAA2QAAABkAAAAZAAAAGQAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAABkAAAAZAAAAEcAAABHAAACRwAAAEcAAAFHAAADTwAAAk8AAANPAAADTwAAAk8AAAFPAAACTwAAAk8AAANPAAABRwAAA0cAAABHAAAARwAAAUcAAABHAAACRwAAAU8AAABPAAABTwAAA08AAABPAAABTwAAA08AAAJPAAADTwAAAEcAAABHAAAARwAAAUcAAABHAAACRwAAAkcAAANPAAACTwAAA08AAAFPAAADTwAAAU8AAABPAAAATwAAAE8AAAFHAAAARwAAAQ== 2,0: ind: 2,0 - tiles: SwAAA1MAAANLAAAAGgAAA0sAAABLAAABSwAAAUsAAANLAAACSwAAAlAAAABQAAAAUAAAAEsAAAJLAAABSwAAAksAAABTAAAAUwAAAxoAAAJTAAACUwAAAFMAAABTAAADUwAAAFMAAAFTAAABUwAAA1MAAAFTAAADUwAAAVMAAAFLAAAAUwAAA0sAAAAaAAADUAAAAEsAAABLAAAASwAAAUsAAAJLAAABSwAAAEsAAAFLAAACSwAAAUsAAAFLAAAAUAAAAFMAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAxoAAAFoAAAAaAAAABoAAAJoAAAAaAAAAEsAAANTAAADSwAAAmgAAABLAAAASwAAAUsAAABLAAABIgAAACIAAAMiAAAAaAAAAFsAAABbAAADWwAAA1sAAAJLAAAAUwAAAlAAAABoAAAASwAAA1AAAABLAAABSwAAAyIAAAMiAAACIgAAAmgAAABbAAADWwAAA1sAAAJbAAABSwAAAlMAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAAAiAAABIgAAASIAAAMaAAADWwAAA0gAAABbAAABWwAAAFMAAANTAAABSwAAAGgAAABLAAAASwAAAksAAABLAAAAIgAAAiIAAAAiAAABaAAAAFsAAAJbAAADWwAAAlsAAABLAAAASwAAA0sAAAJoAAAASwAAAFAAAABLAAAASwAAAyIAAAIiAAADIgAAAmgAAABbAAACWwAAAVsAAAJbAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAiAAABIgAAACIAAAJoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANoAAAASwAAA0sAAABoAAAAGgAAABoAAANoAAAAIgAAAyIAAAAiAAACaAAAAFAAAABLAAAASwAAAUsAAABLAAABaAAAAFAAAABLAAACaAAAABoAAAMaAAACGgAAAyIAAAMiAAABIgAAAmgAAABQAAAAUAAAAFkAAAJQAAAASwAAA2gAAABLAAAASwAAAGgAAAAaAAAAGgAAAWgAAAAiAAAAIgAAACIAAAJoAAAAUAAAAFAAAABQAAAAUAAAAEsAAAFoAAAASwAAA0sAAAFoAAAAaAAAAGgAAABoAAAAIgAAACIAAAAiAAADaAAAAGgAAABoAAAAaAAAAFAAAAAhAAABIQAAACEAAAIhAAACIQAAAiEAAAEhAAADIQAAAyEAAAMhAAAAIQAAARoAAAIaAAACGgAAAhoAAAMOAAAAIQAAACEAAAAhAAADIQAAASEAAAIhAAABIQAAACEAAAEhAAAAIQAAAiEAAAIaAAACGgAAABoAAAAaAAAADgAAAA== + tiles: RwAAAU8AAAJHAAAAFgAAAEcAAABHAAABRwAAAkcAAANHAAABRwAAA0wAAABMAAAATAAAAEcAAABHAAABRwAAAkcAAANPAAACTwAAABYAAAJPAAABTwAAAU8AAABPAAADTwAAAU8AAABPAAADTwAAAE8AAAFPAAAATwAAAE8AAAJHAAAATwAAAEcAAAIWAAABTAAAAEcAAAFHAAADRwAAA0cAAANHAAADRwAAA0cAAAFHAAABRwAAA0cAAANHAAABTAAAAE8AAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAARYAAABkAAAAZAAAABYAAABkAAAAZAAAAEcAAAJPAAABRwAAAWQAAABHAAAARwAAAkcAAAJHAAABHgAAAR4AAAMeAAABZAAAAFcAAAJXAAAAVwAAA1cAAANHAAACTwAAAUwAAABkAAAARwAAAkwAAABHAAADRwAAAB4AAAEeAAADHgAAAWQAAABXAAACVwAAAVcAAAJXAAADRwAAA08AAAJHAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAeAAACHgAAAR4AAAMWAAADVwAAAkQAAABXAAAAVwAAAk8AAABPAAAARwAAAGQAAABHAAADRwAAAEcAAABHAAABHgAAAR4AAAIeAAABZAAAAFcAAAJXAAADVwAAA1cAAANHAAACRwAAAEcAAAJkAAAARwAAAUwAAABHAAACRwAAAx4AAAIeAAADHgAAAWQAAABXAAAAVwAAAVcAAAFXAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAeAAABHgAAAR4AAANkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFkAAAARwAAA0cAAANkAAAAFgAAARYAAABkAAAAHgAAAx4AAAEeAAABZAAAAEwAAABHAAABRwAAAUcAAABHAAABZAAAAEwAAABHAAADZAAAABYAAAIWAAAAFgAAAR4AAAAeAAACHgAAAGQAAABMAAAATAAAAFUAAAJMAAAARwAAAmQAAABHAAACRwAAAmQAAAAWAAAAFgAAAmQAAAAeAAABHgAAAx4AAABkAAAATAAAAEwAAABMAAAATAAAAEcAAAJkAAAARwAAAkcAAANkAAAAZAAAAGQAAABkAAAAHgAAAh4AAAAeAAACZAAAAGQAAABkAAAAZAAAAEwAAAAdAAACHQAAAx0AAAAdAAACHQAAAx0AAAEdAAAAHQAAAB0AAAEdAAADHQAAABYAAAEWAAABFgAAAhYAAAEKAAAAHQAAAh0AAAIdAAACHQAAAx0AAAMdAAACHQAAAh0AAAAdAAABHQAAAB0AAAEWAAADFgAAAxYAAAAWAAACCgAAAA== 2,1: ind: 2,1 - tiles: IQAAAyEAAAEhAAACIQAAAyEAAAIhAAADIQAAACEAAAIhAAAAIQAAAyEAAABoAAAAaAAAAGgAAABoAAAAUAAAABoAAABoAAAANwAAADcAAAA3AAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABQAAAAUAAAAFAAAAAaAAADaAAAAGgAAABoAAAAaAAAAGgAAABlAAACZQAAAWUAAAJlAAACZQAAAGgAAABQAAAAUAAAAFAAAABQAAAAGgAAA2gAAABLAAACSwAAAksAAAJoAAAAZQAAA2UAAAJlAAADZQAAAmUAAAAaAAACUAAAAFAAAABQAAAAUAAAAGgAAABoAAAASwAAAEsAAABLAAADGgAAAWUAAAJlAAACZQAAA2UAAAFlAAACGgAAAFAAAABQAAAADgAAAA4AAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAACZQAAAWUAAABlAAABZQAAA2gAAABQAAAAUAAAAA4AAABZAAAAVwAAAFcAAABYAAAAVwAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAEsAAANLAAACVwAAAFcAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFcAAABQAAAAVwAAAFcAAAAaAAADaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAUAAAAGgAAABYAAAAaAAAABoAAAFoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAWAAAAGgAAABQAAAASwAAAWgAAAAaAAABaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAA2gAAABQAAAAaAAAAEsAAABoAAAAGgAAAmgAAABoAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABQAAAAUAAAAFgAAABoAAAAaAAAAA== + tiles: HQAAAx0AAAEdAAAAHQAAAh0AAAAdAAAAHQAAAB0AAAAdAAADHQAAAx0AAAJkAAAAZAAAAGQAAABkAAAATAAAABYAAANkAAAAMwAAADMAAAAzAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEwAAABMAAAATAAAAEwAAAAWAAABZAAAAGQAAABkAAAAZAAAAGQAAABhAAABYQAAAWEAAAFhAAACYQAAA2QAAABMAAAATAAAAEwAAABMAAAAFgAAAWQAAABHAAABRwAAAkcAAAJkAAAAYQAAAmEAAANhAAAAYQAAAmEAAAIWAAACTAAAAEwAAABMAAAATAAAAGQAAABkAAAARwAAAEcAAAJHAAABFgAAAWEAAAJhAAAAYQAAA2EAAAFhAAAAFgAAA0wAAABMAAAACgAAAAoAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAACYQAAAmEAAAFhAAABYQAAAWQAAABMAAAATAAAAAoAAABVAAABUwAAAFMAAABUAAAAUwAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAAFTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAEcAAABHAAABUwAAAFMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFMAAABMAAAAUwAAAFMAAAAWAAACZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAGQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAATAAAAGQAAABUAAAAZAAAABYAAAFkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAVAAAAGQAAABMAAAARwAAAmQAAAAWAAACZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAAmQAAABMAAAAZAAAAEcAAANkAAAAFgAAAGQAAABkAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABMAAAATAAAAFQAAABkAAAAZAAAAA== 2,-1: ind: 2,-1 - tiles: GgAAAWgAAABoAAAAUAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAABQAAAASwAAA2gAAABQAAAAaAAAAFcAAABXAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAZQAAAFAAAABLAAAASwAAA0sAAAFoAAAASwAAAmgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAFAAAABoAAAASwAAAUsAAABLAAAAaAAAAGUAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFMAAAFTAAACSwAAAmgAAABlAAACZQAAAWUAAAFoAAAAaAAAAGUAAANlAAABZQAAAWUAAABoAAAAaAAAAGgAAABLAAADUwAAA0sAAAFoAAAAZQAAAGUAAANlAAACZQAAAxoAAANlAAADZQAAA2UAAABlAAACaAAAAGgAAABoAAAASwAAAlMAAANLAAADGgAAAWUAAABlAAADZQAAAGUAAABoAAAAZQAAA2UAAAJlAAAAZQAAAGgAAABXAAAAVwAAAEsAAAFTAAADUAAAAGgAAABlAAAAZQAAAWUAAAFlAAABaAAAAGUAAAJlAAACZQAAAmUAAABoAAAAVwAAAFcAAABQAAAAUwAAA1AAAABoAAAAZQAAA2UAAANlAAAAZQAAABoAAABlAAAAZQAAAGUAAANlAAAAaAAAAFcAAABXAAAAUAAAAFMAAAFLAAABaAAAAGgAAABoAAAAGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADaAAAAA== + tiles: FgAAA2QAAABkAAAATAAAAGQAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAAFMAAAARwAAAmQAAABMAAAAZAAAAFMAAABTAAAAZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAYQAAAkwAAABHAAAARwAAA0cAAANkAAAARwAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAWQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAEwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAZAAAAEwAAABkAAAARwAAAEcAAAJHAAADZAAAAGEAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAE8AAAJPAAADRwAAA2QAAABhAAAAYQAAAmEAAAJkAAAAZAAAAGEAAAFhAAAAYQAAAWEAAAJkAAAAZAAAAGQAAABHAAADTwAAAUcAAAJkAAAAYQAAA2EAAAFhAAABYQAAARYAAAJhAAADYQAAAWEAAAFhAAACZAAAAGQAAABkAAAARwAAA08AAAFHAAACFgAAA2EAAAFhAAACYQAAA2EAAABkAAAAYQAAAmEAAAJhAAABYQAAAmQAAABTAAAAUwAAAEcAAANPAAABTAAAAGQAAABhAAAAYQAAAmEAAAFhAAABZAAAAGEAAAFhAAACYQAAA2EAAAFkAAAAUwAAAFMAAABMAAAATwAAAUwAAABkAAAAYQAAAWEAAAFhAAABYQAAABYAAANhAAADYQAAA2EAAABhAAABZAAAAFMAAABTAAAATAAAAE8AAANHAAABZAAAAGQAAABkAAAAFgAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAAAZAAAAA== -2,1: ind: -2,1 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADUwAAA0sAAABoAAAAVwAAAEsAAABLAAACSwAAAEsAAANLAAABaAAAAEsAAAJLAAADSwAAAUsAAANoAAAASwAAA1MAAAFLAAAAaAAAAGgAAABLAAABSwAAAEsAAAFLAAADUAAAABoAAABQAAAASwAAAksAAAJLAAAAaAAAAEsAAABTAAADSwAAAmgAAABoAAAASwAAA0sAAABLAAABSwAAAlAAAAAaAAAAUAAAAEsAAAFLAAABSwAAAWgAAABLAAACUwAAA0sAAAFZAAAAUAAAAEsAAAJLAAABaAAAAGgAAABoAAAAaAAAAEsAAAFLAAABSwAAA0sAAAMaAAAASwAAAFMAAAJLAAACaAAAAEsAAAFLAAADSwAAAmgAAABLAAAASwAAAmgAAABLAAAASwAAAUsAAANLAAADGgAAAUsAAABTAAADSwAAA2gAAABLAAAASwAAA0sAAAIaAAAASwAAA0sAAABLAAADSwAAAUsAAANLAAADSwAAAWgAAABLAAAAUwAAAksAAANoAAAAaAAAAEsAAAJLAAACaAAAAEsAAANLAAAAaAAAAEsAAANLAAABSwAAAUsAAANoAAAASwAAA1MAAAFLAAADaAAAABoAAANLAAACSwAAAWgAAABTAAACSwAAAGgAAABLAAACSwAAA0sAAABLAAADaAAAAEsAAAJTAAAASwAAAGgAAAAaAAABSwAAAEsAAAAOAAAASwAAAA4AAABLAAABDgAAAEsAAANLAAACSwAAAWgAAABLAAABUwAAAksAAAEaAAAAGgAAAksAAAJLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAVMAAAJLAAABaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJTAAADSwAAAmgAAAAaAAAASwAAA0sAAAAaAAABaAAAAFgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABUwAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABoAAAAaAAAAGgAAABlAAAAZQAAAWUAAAFoAAAASwAAAFMAAANLAAACGgAAA0sAAAJoAAAAaAAAAGgAAABoAAAAaAAAAFkAAAJoAAAAZQAAA2UAAABlAAADGgAAAEsAAANTAAACSwAAABoAAABLAAABaAAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAAGUAAABlAAADZQAAAmgAAABLAAACUwAAAEsAAANoAAAASwAAAg== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABTwAAAUcAAAFkAAAAUwAAAEcAAAFHAAACRwAAAUcAAABHAAAAZAAAAEcAAAFHAAACRwAAAEcAAAFkAAAARwAAAE8AAAFHAAACZAAAAGQAAABHAAABRwAAAkcAAAJHAAAATAAAABYAAABMAAAARwAAAEcAAABHAAABZAAAAEcAAAJPAAACRwAAAmQAAABkAAAARwAAAUcAAAFHAAADRwAAAEwAAAAWAAAATAAAAEcAAABHAAABRwAAA2QAAABHAAADTwAAAEcAAABVAAAATAAAAEcAAAJHAAABZAAAAGQAAABkAAAAZAAAAEcAAAFHAAADRwAAAUcAAAEWAAABRwAAAk8AAAFHAAABZAAAAEcAAAJHAAAARwAAAmQAAABHAAACRwAAA2QAAABHAAACRwAAAUcAAABHAAACFgAAA0cAAAJPAAADRwAAAWQAAABHAAADRwAAAUcAAAAWAAABRwAAAEcAAAFHAAACRwAAAEcAAAJHAAAARwAAAmQAAABHAAAATwAAAEcAAABkAAAAZAAAAEcAAANHAAABZAAAAEcAAANHAAAAZAAAAEcAAANHAAABRwAAAUcAAAJkAAAARwAAAE8AAAFHAAACZAAAABYAAAJHAAADRwAAA2QAAABPAAADRwAAAmQAAABHAAACRwAAA0cAAANHAAABZAAAAEcAAAFPAAABRwAAAWQAAAAWAAABRwAAA0cAAAIKAAAARwAAAQoAAABHAAAACgAAAEcAAANHAAAARwAAAmQAAABHAAACTwAAAEcAAAAWAAAAFgAAA0cAAAJHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA08AAANHAAAAZAAAABYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANPAAAARwAAA2QAAAAWAAADRwAAAEcAAAIWAAABZAAAAFQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADTwAAA0cAAABkAAAAZAAAAGQAAABkAAAAZAAAAEwAAABkAAAAZAAAAGQAAABhAAACYQAAAmEAAABkAAAARwAAAE8AAAJHAAADFgAAAUcAAANkAAAAZAAAAGQAAABkAAAAZAAAAFUAAANkAAAAYQAAAmEAAABhAAADFgAAAEcAAANPAAABRwAAARYAAABHAAAAZAAAAGQAAABkAAAATAAAAGQAAABkAAAAZAAAAGEAAAFhAAABYQAAA2QAAABHAAACTwAAAEcAAAFkAAAARwAAAQ== 3,1: ind: 3,1 - tiles: UAAAAFAAAABQAAAASwAAAzUAAAA1AAAANQAAAEsAAAFQAAAADgAAAFAAAABQAAAASwAAAksAAAJLAAACaAAAAGgAAABQAAAAUAAAAEsAAAI1AAAANQAAADUAAABLAAADUAAAAFAAAABoAAAAUAAAAGgAAABoAAAAaAAAAGgAAABQAAAAUAAAAFAAAABLAAACSwAAAEsAAAFLAAADSwAAAlAAAABQAAAAUAAAAFkAAAFLAAABSwAAAksAAAFoAAAAUAAAAFAAAABQAAAADgAAAEsAAAFLAAABSwAAA0sAAAFQAAAAUAAAAFAAAABQAAAASwAAAEsAAANLAAADaAAAAA4AAAAOAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABoAAAAaAAAAGgAAABQAAAADgAAAFkAAANQAAAADgAAAFkAAABQAAAADgAAAFkAAANQAAAAUAAAAFkAAANbAAAAWwAAA1sAAANbAAABaAAAAEsAAABLAAADaAAAAEsAAANLAAAAaAAAAEsAAABLAAABaAAAAEsAAAFLAAADaAAAAFsAAAJbAAAAWwAAAGgAAABLAAABSwAAAGgAAABLAAABSwAAAmgAAABLAAACSwAAA2gAAABLAAAASwAAAmgAAABbAAAAaAAAAFsAAAJoAAAASwAAA0sAAANoAAAASwAAAEsAAAJoAAAASwAAA0sAAAJoAAAASwAAA0sAAANoAAAASAAAAGgAAABIAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFAAAABQAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAFAAAABQAAAAaAAAAGgAAABoAAAAVwAAAFAAAABXAAAASwAAAWgAAABoAAAASwAAAmgAAABoAAAAaAAAAGgAAABQAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAGgAAABoAAAASwAAAksAAANQAAAASwAAAGgAAABLAAACSwAAAlgAAABoAAAAaAAAAGgAAABLAAACSwAAAUsAAAJoAAAAaAAAAEsAAABQAAAAGgAAAxoAAAJoAAAASwAAA0sAAANYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABUAAAAGgAAABZAAAAaAAAAGgAAABoAAAANwAAADcAAABQAAAAUAAAAGUAAAJoAAAAAAAAAAAAAABoAAAAGgAAAA== + tiles: TAAAAEwAAABMAAAARwAAADEAAAAxAAAAMQAAAEcAAANMAAAACgAAAEwAAABMAAAARwAAAEcAAAJHAAABZAAAAGQAAABMAAAATAAAAEcAAAMxAAAAMQAAADEAAABHAAAATAAAAEwAAABkAAAATAAAAGQAAABkAAAAZAAAAGQAAABMAAAATAAAAEwAAABHAAADRwAAAkcAAAFHAAAARwAAAUwAAABMAAAATAAAAFUAAAFHAAADRwAAA0cAAABkAAAATAAAAEwAAABMAAAACgAAAEcAAANHAAADRwAAAkcAAAJMAAAATAAAAEwAAABMAAAARwAAA0cAAANHAAAAZAAAAAoAAAAKAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABkAAAAZAAAAGQAAABMAAAACgAAAFUAAAJMAAAACgAAAFUAAAJMAAAACgAAAFUAAABMAAAATAAAAFUAAABXAAAAVwAAAFcAAAFXAAACZAAAAEcAAANHAAACZAAAAEcAAAFHAAACZAAAAEcAAAFHAAACZAAAAEcAAAFHAAAAZAAAAFcAAANXAAADVwAAAmQAAABHAAABRwAAAGQAAABHAAADRwAAAmQAAABHAAADRwAAAGQAAABHAAAARwAAAGQAAABXAAACZAAAAFcAAAJkAAAARwAAA0cAAAJkAAAARwAAAEcAAANkAAAARwAAAEcAAANkAAAARwAAAkcAAANkAAAARAAAAGQAAABEAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAEwAAABMAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAZAAAAEwAAABMAAAAZAAAAGQAAABkAAAAUwAAAEwAAABTAAAARwAAAGQAAABkAAAARwAAAGQAAABkAAAAZAAAAGQAAABMAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAABRwAAAmQAAABkAAAARwAAAUcAAANMAAAARwAAAmQAAABHAAAARwAAAFQAAABkAAAAZAAAAGQAAABHAAACRwAAAkcAAAFkAAAAZAAAAEcAAANMAAAAFgAAARYAAAJkAAAARwAAAEcAAANUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAABTAAAAGQAAABVAAABZAAAAGQAAABkAAAAMwAAADMAAABMAAAATAAAAGEAAAJkAAAAAAAAAAAAAABkAAAAFgAAAg== 3,0: ind: 3,0 - tiles: SwAAAUsAAAFLAAAASwAAAVMAAAJLAAABSwAAAWgAAABoAAAAWQAAAmgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFMAAABTAAADUwAAAVMAAABTAAAASwAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFkAAAFLAAABSwAAAksAAAFLAAAASwAAA1AAAABQAAAAaAAAAGgAAABoAAAAaAAAAFcAAABYAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFAAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAAAaAAACVwAAAFcAAABoAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAASwAAA0sAAAAOAAAASwAAA0sAAAJQAAAAaAAAAFcAAABXAAAASwAAAEsAAAJQAAAASwAAAUsAAANQAAAAUAAAAEsAAABLAAADSwAAAEsAAANLAAACUAAAAGgAAABXAAAAVwAAAGgAAABLAAAASwAAAEsAAAFLAAABSwAAAg4AAAAOAAAASwAAA0sAAAJLAAABSwAAAVAAAABoAAAAVwAAAFcAAABoAAAASwAAAUsAAANLAAADSwAAA0sAAABLAAABSwAAAUsAAABLAAAASwAAAksAAAJQAAAAaAAAAGgAAABoAAAASwAAAUsAAANQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABbAAABSAAAAEsAAABLAAACUAAAAGgAAABoAAAAGgAAA2gAAABoAAAAUAAAAFAAAABQAAAADgAAAA4AAABoAAAAWwAAAGgAAABoAAAAUAAAAFAAAABoAAAASwAAA0sAAANLAAADaAAAAFAAAABQAAAAaAAAAFAAAABQAAAAaAAAAFsAAAFIAAAAUAAAAFAAAABZAAAAaAAAAEsAAANLAAACSwAAAmgAAABZAAACUAAAAFAAAABQAAAAaAAAAGgAAABbAAADaAAAAFAAAABQAAAAUAAAAGgAAABLAAAASwAAAEsAAABoAAAAWQAAAVkAAABZAAACUAAAAFsAAAFbAAADWwAAAEgAAABQAAAAUAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAAAOAAAAUAAAAFAAAABoAAAAaAAAAGgAAABoAAAAUAAAAD8AAANQAAAASwAAAksAAAMOAAAASwAAAUsAAAIOAAAAPwAAAw4AAABZAAADSwAAAEsAAANLAAADaAAAAA== + tiles: RwAAAkcAAAJHAAADRwAAAE8AAABHAAAARwAAAGQAAABkAAAAVQAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAE8AAAJPAAAATwAAAU8AAAJPAAABRwAAAEwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFUAAAJHAAADRwAAAkcAAAFHAAACRwAAA0wAAABMAAAAZAAAAGQAAABkAAAAZAAAAFMAAABUAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAEwAAABMAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAABkAAAAZAAAAGQAAABMAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAAAWAAADUwAAAFMAAABkAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAARwAAAEcAAAMKAAAARwAAAEcAAANMAAAAZAAAAFMAAABTAAAARwAAAEcAAAJMAAAARwAAAkcAAABMAAAATAAAAEcAAAJHAAADRwAAAUcAAAJHAAAATAAAAGQAAABTAAAAUwAAAGQAAABHAAAARwAAAUcAAABHAAABRwAAAAoAAAAKAAAARwAAAEcAAANHAAABRwAAAEwAAABkAAAAUwAAAFMAAABkAAAARwAAAUcAAAFHAAABRwAAA0cAAAJHAAABRwAAAEcAAAFHAAADRwAAA0cAAAJMAAAAZAAAAGQAAABkAAAARwAAA0cAAAFMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABXAAADRAAAAEcAAAJHAAADTAAAAGQAAABkAAAAFgAAAWQAAABkAAAATAAAAEwAAABMAAAACgAAAAoAAABkAAAAVwAAAWQAAABkAAAATAAAAEwAAABkAAAARwAAA0cAAAJHAAACZAAAAEwAAABMAAAAZAAAAEwAAABMAAAAZAAAAFcAAAFEAAAATAAAAEwAAABVAAABZAAAAEcAAAJHAAACRwAAA2QAAABVAAAATAAAAEwAAABMAAAAZAAAAGQAAABXAAACZAAAAEwAAABMAAAATAAAAGQAAABHAAABRwAAAkcAAANkAAAAVQAAA1UAAABVAAABTAAAAFcAAANXAAACVwAAA0QAAABMAAAATAAAAEwAAABkAAAAZAAAAGQAAABkAAAAZAAAAEwAAAAKAAAATAAAAEwAAABkAAAAZAAAAGQAAABkAAAATAAAADsAAAFMAAAARwAAAUcAAAIKAAAARwAAAkcAAAAKAAAAOwAAAAoAAABVAAACRwAAAEcAAABHAAABZAAAAA== 3,-1: ind: 3,-1 - tiles: aAAAAAAAAAAAAAAAaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAaAAAAEsAAAFLAAABSwAAAUsAAANLAAADSwAAAmgAAABoAAAAGgAAAmgAAABoAAAAVwAAAFcAAABQAAAAUAAAAFAAAABLAAACSwAAAEsAAABLAAACSwAAAksAAABLAAACSwAAA1AAAABQAAAAaAAAAGgAAABoAAAASwAAAVAAAABLAAADSwAAAksAAAJLAAAAUAAAAEsAAABLAAADSwAAA0sAAAFQAAAASwAAA1cAAABoAAAALAAAAEsAAAJLAAAASwAAAksAAABLAAADSwAAAUsAAAJLAAAASwAAAEsAAABLAAAASwAAAFAAAABoAAAAaAAAACwAAABLAAACSwAAAEsAAAJLAAACSwAAAEsAAABLAAABSwAAAEsAAAJLAAACSwAAAEsAAAJLAAAAaAAAAEsAAANLAAACSwAAA0sAAAIsAAAALAAAAGgAAABoAAAAaAAAAGgAAABoAAAALAAAACwAAABLAAADSwAAAhoAAAFQAAAASwAAA0sAAABLAAACLAAAACwAAABoAAAAaAAAAGgAAABoAAAAaAAAACwAAAAsAAAASwAAAUsAAANoAAAAUAAAAFAAAABLAAACSwAAASwAAAAsAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAsAAAALAAAAEsAAAJLAAACaAAAAFAAAAAsAAAASwAAAUsAAAJLAAABUAAAAEsAAAJLAAAASwAAAEsAAANLAAAASwAAA0sAAAJLAAABUAAAAGgAAABoAAAALAAAAEsAAABLAAABSwAAAUsAAABLAAACSwAAA0sAAAFLAAACSwAAAEsAAAFLAAAAUAAAAFAAAABoAAAAaAAAAGgAAABQAAAAUAAAAFAAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAGgAAARoAAAIaAAADaAAAAFgAAABXAAAAWAAAAGgAAABlAAABZQAAAWUAAABlAAADZQAAA1cAAABoAAAAaAAAAEsAAABTAAABSwAAA2gAAABoAAAAWAAAAGgAAABoAAAAZQAAAWUAAAFlAAACZQAAA2UAAANXAAAAaAAAAEsAAAJLAAACUwAAAEsAAANLAAAAaAAAAFcAAABoAAAAaAAAAGUAAANlAAADZQAAAGUAAANlAAACaAAAAGgAAABLAAAASwAAAFMAAABLAAAASwAAAhoAAAFoAAAAaAAAAGgAAABlAAABZQAAAmUAAAFlAAACZQAAAA== + tiles: ZAAAAAAAAAAAAAAAZAAAABYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADZAAAAEcAAAFHAAAARwAAA0cAAAJHAAAARwAAAWQAAABkAAAAFgAAAGQAAABkAAAAUwAAAFMAAABMAAAATAAAAEwAAABHAAAARwAAAkcAAANHAAABRwAAAkcAAABHAAABRwAAAUwAAABMAAAAZAAAAGQAAABkAAAARwAAAEwAAABHAAAARwAAAEcAAANHAAABTAAAAEcAAAFHAAADRwAAAEcAAAJMAAAARwAAAVMAAABkAAAAKAAAAEcAAABHAAADRwAAAEcAAANHAAACRwAAAEcAAAJHAAACRwAAA0cAAAJHAAABRwAAA0wAAABkAAAAZAAAACgAAABHAAACRwAAAEcAAABHAAAARwAAA0cAAAJHAAACRwAAAUcAAAJHAAADRwAAAEcAAAFHAAAAZAAAAEcAAAJHAAAARwAAA0cAAAIoAAAAKAAAAGQAAABkAAAAZAAAAGQAAABkAAAAKAAAACgAAABHAAACRwAAABYAAANMAAAARwAAAkcAAAFHAAACKAAAACgAAABkAAAAZAAAAGQAAABkAAAAZAAAACgAAAAoAAAARwAAA0cAAAJkAAAATAAAAEwAAABHAAADRwAAACgAAAAoAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAoAAAAKAAAAEcAAANHAAADZAAAAEwAAAAoAAAARwAAA0cAAAJHAAAATAAAAEcAAABHAAACRwAAAkcAAANHAAAARwAAAkcAAAFHAAAATAAAAGQAAABkAAAAKAAAAEcAAABHAAACRwAAAEcAAAJHAAABRwAAA0cAAAJHAAADRwAAAEcAAAFHAAABTAAAAEwAAABkAAAAZAAAAGQAAABMAAAATAAAAEwAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAFgAAARYAAAIWAAACZAAAAFQAAABTAAAAVAAAAGQAAABhAAADYQAAAmEAAAJhAAADYQAAAFMAAABkAAAAZAAAAEcAAAJPAAACRwAAAmQAAABkAAAAVAAAAGQAAABkAAAAYQAAAGEAAANhAAAAYQAAAGEAAANTAAAAZAAAAEcAAAJHAAAATwAAAUcAAABHAAABZAAAAFMAAABkAAAAZAAAAGEAAABhAAACYQAAAWEAAAFhAAAAZAAAAGQAAABHAAAARwAAAU8AAAJHAAADRwAAABYAAABkAAAAZAAAAGQAAABhAAABYQAAAmEAAAJhAAAAYQAAAw== 2,-2: ind: 2,-2 - tiles: aAAAAGgAAABQAAAAUAAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGYAAANoAAAASwAAAUsAAAJLAAADGgAAAVcAAABXAAAAaAAAAAAAAAAAAAAAaAAAAEMAAABDAAAAQwAAAEMAAABmAAACaAAAAEsAAAFLAAACSwAAAGgAAABXAAAAVwAAAGgAAAAAAAAAAAAAAGgAAABDAAAAMAAAADAAAAAwAAAAZgAAAGgAAABLAAADSwAAAUsAAANoAAAAUAAAAFAAAABoAAAAaAAAAGgAAABoAAAAQwAAADAAAAAwAAAAMAAAAGYAAABoAAAASwAAAUsAAABLAAABaAAAAGgAAABoAAAAaAAAAEAAAABAAAAAGgAAA0MAAABDAAAAQwAAAEMAAABoAAAAGgAAAlAAAABLAAABSwAAAEsAAANLAAAASwAAAksAAANAAAAAQAAAAGgAAABDAAAAQwAAAGgAAABoAAAAQgAAABoAAAFQAAAASwAAA0sAAAFLAAABSwAAAUsAAANLAAAAQAAAAEAAAABoAAAAaAAAAGgAAAAaAAADQwAAAEIAAAAaAAACSwAAA0sAAAJLAAAAaAAAAGgAAABoAAAAaAAAAEAAAABAAAAAGgAAAUMAAABDAAAAQwAAAEMAAABoAAAAaAAAAEsAAABLAAADUAAAAGgAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABDAAAAMAAAADAAAAAwAAAASwAAA2gAAABLAAABSwAAAVAAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABoAAAAQwAAADAAAAAwAAAAMAAAAEsAAAFoAAAASwAAAUsAAANLAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEMAAABDAAAAQwAAAEMAAABLAAACaAAAAEsAAABLAAADSwAAAmgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABGgAAARoAAAFoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAEsAAANLAAAASwAAA0sAAAJLAAABSwAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABLAAAASwAAA0sAAAJLAAADSwAAAksAAAJoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAJLAAAASwAAA0sAAANoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABoAAAAaAAAAFAAAABLAAAAaAAAAA== + tiles: ZAAAAGQAAABMAAAATAAAAEcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGIAAABkAAAARwAAAEcAAANHAAAAFgAAA1MAAABTAAAAZAAAAAAAAAAAAAAAZAAAAD8AAAA/AAAAPwAAAD8AAABiAAADZAAAAEcAAABHAAACRwAAAmQAAABTAAAAUwAAAGQAAAAAAAAAAAAAAGQAAAA/AAAALAAAACwAAAAsAAAAYgAAA2QAAABHAAAARwAAAEcAAABkAAAATAAAAEwAAABkAAAAZAAAAGQAAABkAAAAPwAAACwAAAAsAAAALAAAAGIAAABkAAAARwAAAEcAAAFHAAABZAAAAGQAAABkAAAAZAAAADwAAAA8AAAAFgAAAT8AAAA/AAAAPwAAAD8AAABkAAAAFgAAAUwAAABHAAAARwAAAkcAAABHAAACRwAAAkcAAAI8AAAAPAAAAGQAAAA/AAAAPwAAAGQAAABkAAAAPgAAABYAAANMAAAARwAAAkcAAABHAAADRwAAA0cAAANHAAACPAAAADwAAABkAAAAZAAAAGQAAAAWAAABPwAAAD4AAAAWAAABRwAAA0cAAAFHAAADZAAAAGQAAABkAAAAZAAAADwAAAA8AAAAFgAAAj8AAAA/AAAAPwAAAD8AAABkAAAAZAAAAEcAAANHAAAATAAAAGQAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAAA/AAAALAAAACwAAAAsAAAARwAAAmQAAABHAAADRwAAAkwAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABkAAAAPwAAACwAAAAsAAAALAAAAEcAAAFkAAAARwAAAEcAAABHAAACZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAD8AAAA/AAAAPwAAAD8AAABHAAAAZAAAAEcAAAJHAAABRwAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADFgAAARYAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAEcAAANHAAADRwAAAkcAAANHAAACRwAAA2QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABHAAACRwAAAUcAAANHAAACRwAAAUcAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAANHAAABRwAAAkcAAAJkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABkAAAAZAAAAEwAAABHAAABZAAAAA== -2,-3: ind: -2,-3 - tiles: GgAAAlgAAAAaAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAAwAAAAGgAAAxoAAANoAAAAXgAAABoAAAIaAAACGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAGgAAAAaAAACMAAAABoAAAAaAAADaAAAAF4AAANXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABoAAAAGgAAATAAAAAaAAABGgAAAWgAAABeAAADUAAAAFAAAABQAAAAUAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAmgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAWAAAAFcAAABoAAAAUAAAAEsAAAFLAAABSwAAAxoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABYAAAAGgAAA0sAAANTAAACUwAAAFMAAAIaAAADSwAAAmgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABLAAAAUwAAAlAAAABQAAAAGgAAAUsAAAAaAAADVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAVMAAANLAAACaAAAAGgAAABLAAABaAAAAEsAAABLAAADaAAAAGgAAABoAAAAaAAAAFAAAABQAAAAaAAAABoAAAMaAAADGgAAAmgAAABlAAABSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAUAAAAGgAAABQAAAAUwAAAFAAAABoAAAAZQAAAUsAAAJQAAAAaAAAAFAAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFMAAAFLAAABaAAAAGUAAAAaAAADaAAAAGgAAABQAAAAUAAAAGgAAABOAAAATgAAA04AAAFOAAACaAAAAFAAAABTAAADSwAAA2gAAABoAAAASwAAA0sAAAJoAAAAaAAAAGgAAABoAAAATgAAAE4AAAFOAAABTgAAA2gAAABLAAAAUwAAAEsAAAFoAAAAaAAAAEsAAABLAAABGgAAAlgAAABLAAADGgAAAU4AAANOAAACTgAAAE4AAANLAAACSwAAAlMAAABLAAABaAAAAFcAAABQAAAASwAAABoAAABLAAADWAAAABoAAANOAAABTgAAAE4AAAFOAAADaAAAAEsAAAFTAAACSwAAA2gAAABZAAABSwAAAksAAABoAAAAaAAAAGgAAABoAAAATgAAAE4AAAJOAAABTgAAAhoAAAJLAAAAUwAAAUsAAAJoAAAAaAAAAA== + tiles: FgAAA1QAAAAWAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAIsAAAAFgAAARYAAAFkAAAAWgAAAxYAAAMWAAABFgAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAGQAAAAWAAABLAAAABYAAAIWAAADZAAAAFoAAAFTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEwAAABkAAAAFgAAAywAAAAWAAADFgAAAWQAAABaAAABTAAAAEwAAABMAAAATAAAAEwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAVAAAAFMAAABkAAAATAAAAEcAAAJHAAABRwAAABYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAFgAAAEcAAANPAAABTwAAA08AAAMWAAABRwAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABHAAADTwAAAEwAAABMAAAAFgAAAUcAAAAWAAABUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA08AAANHAAABZAAAAGQAAABHAAAAZAAAAEcAAABHAAABZAAAAGQAAABkAAAAZAAAAEwAAABMAAAAZAAAABYAAAEWAAABFgAAA2QAAABhAAACRwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAATAAAAGQAAABMAAAATwAAAkwAAABkAAAAYQAAAkcAAAFMAAAAZAAAAEwAAABMAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAE8AAANHAAAAZAAAAGEAAAAWAAADZAAAAGQAAABMAAAATAAAAGQAAABKAAAASgAAA0oAAABKAAACZAAAAEwAAABPAAACRwAAAmQAAABkAAAARwAAA0cAAANkAAAAZAAAAGQAAABkAAAASgAAAEoAAAJKAAABSgAAAmQAAABHAAADTwAAAEcAAAJkAAAAZAAAAEcAAAFHAAADFgAAAFQAAABHAAAAFgAAAEoAAAFKAAACSgAAAEoAAANHAAABRwAAAU8AAABHAAADZAAAAFMAAABMAAAARwAAARYAAANHAAAAVAAAABYAAABKAAABSgAAAkoAAAFKAAACZAAAAEcAAAFPAAAARwAAAGQAAABVAAAARwAAA0cAAANkAAAAZAAAAGQAAABkAAAASgAAAEoAAAFKAAAASgAAAhYAAAJHAAACTwAAAkcAAAJkAAAAZAAAAA== -1,-3: ind: -1,-3 - tiles: XgAAAV4AAAJeAAADXgAAAV4AAAFoAAAAWwAAAFsAAAFbAAABWwAAAFsAAABbAAABWwAAAlsAAANbAAAAWwAAAl4AAABeAAACXgAAA14AAABeAAADSwAAAVsAAABbAAACWwAAAFsAAABbAAACWwAAAlsAAABbAAADWwAAAVsAAABeAAACXgAAAl4AAANeAAABXgAAAWgAAABbAAACWwAAAVsAAAFbAAADWwAAAFsAAAJbAAABWwAAA1sAAANbAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAFLAAABaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAlAAAABLAAAAUAAAAEsAAAJLAAADSwAAAlAAAABQAAAAUAAAAE4AAAFOAAABTgAAA04AAANOAAAAUAAAAFAAAABTAAACUwAAAT8AAANTAAACUwAAA1MAAAI/AAACUwAAAlMAAANOAAABTgAAAk4AAAJOAAADTgAAAFMAAAJTAAABUAAAAFAAAABLAAADSwAAA0sAAAJLAAABSwAAAUsAAANLAAABTgAAAk4AAAJOAAADTgAAAE4AAABLAAABSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABaAAAAE4AAABOAAABTgAAA04AAAJOAAACaAAAAGgAAABlAAACZQAAAmgAAABlAAADZQAAAGUAAAJlAAABZQAAA2gAAABoAAAAGgAAAxoAAAIaAAABaAAAAGgAAAAAAAAAZQAAA2UAAAAaAAAAZQAAAmUAAAFlAAADZQAAAGUAAANlAAAAaAAAAEsAAAFTAAADSwAAAGgAAAAAAAAAAAAAAGUAAANlAAAAaAAAAGUAAAJlAAAAZQAAAmUAAABlAAACZQAAAGgAAABLAAACUwAAAUsAAAFoAAAAAAAAAAAAAABoAAAAaAAAAGgAAABlAAABZQAAAGUAAAJlAAACZQAAAWUAAANoAAAASwAAAFMAAAFLAAAAaAAAAGgAAAAAAAAAaAAAAFcAAABoAAAAZQAAAWUAAANlAAACZQAAAGUAAAFoAAAAaAAAAEsAAANTAAACUAAAAFAAAABoAAAAAAAAAGgAAABZAAADaAAAAGgAAAAaAAADaAAAAGgAAABoAAAAaAAAAFAAAABLAAACUwAAA1AAAABQAAAAaAAAAAAAAABoAAAAaAAAAFAAAABoAAAAUAAAAFkAAABQAAAAUAAAAGgAAABQAAAASwAAAFMAAABQAAAAUAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAaAAAAFAAAABQAAAAUAAAAFAAAABoAAAAUAAAAEsAAAJTAAABUAAAAFAAAABoAAAAAAAAAA== + tiles: WgAAAloAAAJaAAADWgAAA1oAAAFkAAAAVwAAAFcAAABXAAADVwAAA1cAAAJXAAACVwAAA1cAAANXAAADVwAAAFoAAAJaAAABWgAAAloAAAJaAAADRwAAAVcAAANXAAAAVwAAAVcAAABXAAACVwAAAVcAAANXAAACVwAAA1cAAANaAAADWgAAAVoAAAJaAAAAWgAAAGQAAABXAAACVwAAAVcAAAFXAAADVwAAAFcAAAFXAAACVwAAA1cAAAJXAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAANHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAUwAAABHAAACTAAAAEcAAABHAAACRwAAA0wAAABMAAAATAAAAEoAAANKAAACSgAAAUoAAANKAAADTAAAAEwAAABPAAABTwAAAjsAAAFPAAABTwAAAk8AAAA7AAAATwAAA08AAABKAAAASgAAAUoAAAJKAAADSgAAAU8AAANPAAAATAAAAEwAAABHAAAARwAAAkcAAANHAAADRwAAAEcAAAFHAAADSgAAA0oAAANKAAADSgAAA0oAAAJHAAACRwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAAAZAAAAEoAAAJKAAADSgAAAUoAAAJKAAADZAAAAGQAAABhAAABYQAAA2QAAABhAAABYQAAA2EAAANhAAABYQAAAWQAAABkAAAAFgAAAhYAAAMWAAACZAAAAGQAAAAAAAAAYQAAAGEAAAMWAAABYQAAA2EAAAFhAAABYQAAAGEAAABhAAADZAAAAEcAAAFPAAACRwAAAmQAAAAAAAAAAAAAAGEAAABhAAABZAAAAGEAAABhAAACYQAAAWEAAABhAAACYQAAAGQAAABHAAAATwAAAkcAAANkAAAAAAAAAAAAAABkAAAAZAAAAGQAAABhAAABYQAAAmEAAANhAAACYQAAA2EAAABkAAAARwAAAU8AAAJHAAAAZAAAAGQAAAAAAAAAZAAAAFMAAABkAAAAYQAAAWEAAAJhAAADYQAAAGEAAAJkAAAAZAAAAEcAAAFPAAABTAAAAEwAAABkAAAAAAAAAGQAAABVAAACZAAAAGQAAAAWAAADZAAAAGQAAABkAAAAZAAAAEwAAABHAAACTwAAAUwAAABMAAAAZAAAAAAAAABkAAAAZAAAAEwAAABkAAAATAAAAFUAAANMAAAATAAAAGQAAABMAAAARwAAAU8AAAJMAAAATAAAAGQAAAAAAAAAZAAAAGQAAABkAAAAZAAAAEwAAABMAAAATAAAAEwAAABkAAAATAAAAEcAAAJPAAACTAAAAEwAAABkAAAAAAAAAA== 0,-3: ind: 0,-3 - tiles: WwAAA2gAAABbAAACWwAAAVsAAANbAAABWwAAAlsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFsAAAJbAAACWwAAAV8AAANbAAABWwAAAlsAAAFbAAACaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAGgAAA2gAAABbAAACaAAAAFsAAAFbAAACWwAAAlsAAAFbAAACWwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAFAAAABLAAADSwAAA1AAAABLAAAASwAAA0sAAAMaAAADSwAAAksAAANLAAADSwAAA0sAAABLAAABSwAAA0sAAAI/AAACUwAAA1MAAAFTAAADPwAAA1MAAANTAAAAGgAAAEsAAANLAAACSwAAA0sAAAFLAAADSwAAAEsAAABLAAADSwAAAksAAAJLAAACSwAAAksAAANLAAAASwAAAhoAAAFLAAACSwAAAksAAAJLAAAASwAAAEsAAAJLAAABSwAAA2gAAABQAAAAUAAAAFAAAABQAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAaAAAAFgAAABoAAAAaAAAAAAAAAAAAAAAaAAAAEsAAANLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABXAAAAaAAAAGgAAAAAAAAAAAAAAGgAAAAaAAADGgAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAAAAAAAAAAABoAAAASwAAAksAAAIAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABZAAACaAAAAGgAAABYAAAAaAAAAAAAAABoAAAAaAAAAEsAAAJLAAABAAAAAGgAAAABAAAAAQAAAAEAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAAAAAAAAaAAAAFIAAAJLAAADSwAAAgAAAABoAAAAAQAAAAEAAAABAAAAAQAAAAEAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGgAAABSAAAASwAAAD8AAAEAAAAAaAAAAAEAAAABAAAAAQAAAAEAAAABAAAAaAAAAGgAAABoAAAAAAAAAAAAAABoAAAAUgAAA0sAAAFLAAACAAAAAGgAAAABAAAAAQAAAAEAAAABAAAAAQAAAGgAAABoAAAAaAAAAAAAAAAAAAAAaAAAAFIAAANLAAAASwAAAA== + tiles: VwAAA2QAAABXAAABVwAAAlcAAANXAAADVwAAAVcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAFcAAAJXAAADVwAAAFsAAANXAAAAVwAAA1cAAAFXAAADZAAAAFMAAABTAAAAUwAAAGQAAABkAAAAFgAAAmQAAABXAAACZAAAAFcAAAJXAAABVwAAAFcAAABXAAADVwAAAmQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAA0wAAABHAAAARwAAAEwAAABHAAABRwAAAUcAAAEWAAACRwAAA0cAAAJHAAACRwAAAkcAAANHAAABRwAAAkcAAAE7AAABTwAAAk8AAABPAAACOwAAAk8AAABPAAADFgAAA0cAAAJHAAAARwAAA0cAAAFHAAAARwAAAkcAAABHAAAARwAAAkcAAAJHAAAARwAAAkcAAANHAAADRwAAABYAAAJHAAADRwAAA0cAAANHAAACRwAAAEcAAAJHAAADRwAAA2QAAABMAAAATAAAAEwAAABMAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAZAAAAFQAAABkAAAAZAAAAAAAAAAAAAAAZAAAAEcAAABHAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABTAAAAZAAAAGQAAAAAAAAAAAAAAGQAAAAWAAABFgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAAAAAAAAAAABkAAAARwAAAkcAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABVAAABZAAAAGQAAABUAAAAZAAAAAAAAABkAAAAZAAAAEcAAAJHAAACAAAAAGQAAAABAAAAAQAAAAEAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAAAAAAAAZAAAAE4AAANHAAABRwAAAgAAAABkAAAAAQAAAAEAAAABAAAAAQAAAAEAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGQAAABOAAABRwAAATsAAAAAAAAAZAAAAAEAAAABAAAAAQAAAAEAAAABAAAAZAAAAGQAAABkAAAAAAAAAAAAAABkAAAATgAAA0cAAANHAAAAAAAAAGQAAAABAAAAAQAAAAEAAAABAAAAAQAAAGQAAABkAAAAZAAAAAAAAAAAAAAAZAAAAE4AAAJHAAACRwAAAg== 1,-3: ind: 1,-3 - tiles: aAAAAFAAAABoAAAAGgAAABoAAAAaAAACGgAAAWgAAABLAAADSwAAA0sAAANoAAAAZgAAA2YAAAJlAAADZQAAAWgAAABQAAAAaAAAAB4AAAIeAAACHgAAAx4AAANoAAAAUAAAAEsAAAJLAAAAaAAAABoAAAJlAAAAZQAAARoAAABoAAAAaAAAAGgAAAAaAAADGgAAARoAAAEaAAABaAAAAFAAAABQAAAASwAAAWgAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAGgAAABoAAAIaAAADGgAAAGgAAAAaAAACGgAAABoAAABoAAAAaAAAAGgAAABoAAAAGgAAAUsAAAFLAAADSwAAAksAAAJLAAAASwAAAUsAAAFLAAABSwAAAUsAAABLAAACSwAAAUsAAAJLAAADSwAAAEsAAAJLAAADSwAAA0sAAAFLAAABSwAAAksAAANLAAABSwAAAEsAAABLAAADSwAAAUsAAAJLAAADSwAAAksAAAFLAAADSwAAA0sAAAFLAAABSwAAAUsAAANLAAADSwAAAEsAAAFLAAAASwAAAEsAAAFLAAADSwAAAksAAAFLAAABSwAAAksAAABLAAADSwAAAksAAABLAAADSwAAAEsAAANoAAAAaAAAAGgAAABoAAAAIwAAAEsAAAFoAAAAaAAAACwAAABLAAADSwAAAksAAABLAAAASwAAAWgAAABlAAAAZQAAAGUAAAAjAAAAIwAAACMAAAAjAAAAIwAAAGgAAAAsAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAGUAAABlAAAAIwAAACMAAAAjAAAAIwAAACMAAABoAAAAaAAAAEsAAAFoAAAAAAAAAAAAAABoAAAAZQAAAWUAAAJlAAADZQAAACMAAAAjAAAAIwAAACMAAAAjAAAAaAAAAAAAAABLAAABaAAAAAAAAAAAAAAAaAAAAGUAAAFlAAABZQAAAGUAAAAjAAAAIwAAACMAAAAjAAAAIwAAAGgAAAAAAAAASwAAA2gAAAAAAAAAAAAAAGgAAABlAAAAZQAAA2UAAAJlAAAAIwAAACMAAAAjAAAAIwAAACMAAABoAAAAAAAAAEsAAAJoAAAAAAAAAAAAAABoAAAAZQAAAWUAAANlAAACZQAAACMAAAAjAAAAIwAAACMAAAAjAAAAaAAAAAAAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADZQAAAWgAAABoAAAAaAAAAGgAAABoAAAAZQAAAGgAAABoAAAASwAAA1AAAABXAAAAWAAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAFcAAABoAAAAVwAAAGUAAABoAAAAVwAAAA== + tiles: ZAAAAEwAAABkAAAAFgAAAxYAAAMWAAADFgAAAWQAAABHAAADRwAAAkcAAABkAAAAYgAAAGIAAAFhAAACYQAAAWQAAABMAAAAZAAAABoAAAAaAAACGgAAARoAAAFkAAAATAAAAEcAAAFHAAAAZAAAABYAAAFhAAAAYQAAARYAAAFkAAAAZAAAAGQAAAAWAAABFgAAAxYAAAAWAAACZAAAAEwAAABMAAAARwAAA2QAAAAaAAAAGgAAAxoAAAEaAAAAZAAAAGQAAABkAAAAFgAAAxYAAAEWAAABFgAAAWQAAAAWAAAAFgAAAhYAAABkAAAAZAAAAGQAAABkAAAAFgAAAUcAAANHAAADRwAAAEcAAAFHAAACRwAAAkcAAAJHAAABRwAAA0cAAAJHAAADRwAAAEcAAANHAAAARwAAAUcAAABHAAACRwAAAkcAAAJHAAADRwAAA0cAAAJHAAABRwAAA0cAAABHAAADRwAAA0cAAAJHAAABRwAAAEcAAABHAAACRwAAAkcAAANHAAAARwAAAEcAAANHAAABRwAAAkcAAAJHAAAARwAAAUcAAABHAAABRwAAA0cAAABHAAABRwAAAkcAAABHAAAARwAAA0cAAAJHAAACRwAAAEcAAAJkAAAAZAAAABYAAABkAAAAZAAAAEcAAAFkAAAAZAAAACgAAABHAAADRwAAA0cAAABHAAADRwAAAmQAAABhAAAAYQAAA2EAAANhAAACYQAAAmEAAANhAAACYQAAAmQAAAAoAAAAFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAYQAAAmEAAAFhAAAAYQAAAWEAAABhAAACYQAAAGEAAAJkAAAAZAAAAEcAAABkAAAAAAAAAAAAAABkAAAAYQAAAmEAAAFhAAACYQAAAWEAAANhAAADYQAAAmEAAABhAAACZAAAAAAAAABHAAABZAAAAAAAAAAAAAAAZAAAAGEAAANhAAADYQAAAGEAAAJhAAABYQAAA2EAAABhAAADYQAAAWQAAAAAAAAARwAAA2QAAAAAAAAAAAAAAGQAAABhAAAAYQAAAmEAAABhAAABYQAAAGEAAANhAAAAYQAAAWEAAANkAAAAAAAAAEcAAAFkAAAAAAAAAAAAAABkAAAAYQAAAGEAAANhAAACYQAAAWEAAAFhAAADYQAAAGEAAANhAAADZAAAAAAAAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADYQAAAGQAAABkAAAAZAAAAGQAAAAWAAACZAAAAGQAAABkAAAARwAAAEwAAABTAAAAVAAAAGQAAABTAAAAUwAAAFMAAABkAAAAZAAAAFMAAABkAAAAUwAAAFMAAABkAAAAUwAAAA== 2,-3: ind: 2,-3 - tiles: ZQAAAWYAAABmAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAANLAAABSwAAAksAAAJLAAABaAAAAGUAAAAaAAAAZQAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAEsAAANLAAACSwAAAEsAAANLAAABSwAAARoAAANXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABLAAABSwAAAEsAAABLAAADSwAAA0sAAAEaAAAAaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAABSwAAA0sAAANLAAAASwAAAUsAAABLAAACGgAAA1UAAANVAAADVQAAAlUAAAFVAAADVQAAAhoAAAJLAAADSwAAAEsAAAFLAAADSwAAAEsAAAFLAAABSwAAAhoAAANVAAADVQAAAFUAAAFVAAABVQAAAVUAAAAaAAABSwAAAUsAAAJLAAABSwAAA0sAAAJLAAABSwAAA0sAAAAaAAADVQAAA1UAAAJVAAABVQAAAVUAAABVAAAAGgAAACwAAABLAAAASwAAAUsAAAFLAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABGgAAAhoAAAMaAAADGgAAAmgAAAAsAAAASwAAAEsAAABLAAAASwAAAmgAAABLAAAASwAAAEsAAANLAAADSwAAA0sAAAFLAAADSwAAAksAAABoAAAAaAAAAGgAAAAaAAABGgAAAxoAAABoAAAASwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABLAAAAaAAAAAAAAABoAAAASwAAAUsAAANLAAADaAAAAEsAAANXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAASwAAARoAAAAAAAAAaAAAAEsAAAJLAAAASwAAAGgAAABLAAABVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAEsAAABoAAAAAAAAAGgAAABLAAAASwAAAEsAAANoAAAASwAAAEsAAABLAAACSwAAAEsAAAFLAAABSwAAAksAAAFLAAADaAAAAAAAAABoAAAASwAAA0sAAAJLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAABSwAAAVgAAABXAAAAVwAAAFcAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFAAAABQAAAASwAAAUsAAANoAAAAaAAAAGgAAABoAAAAWQAAA1kAAANoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: YQAAAGIAAANiAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAFHAAACRwAAA0cAAANHAAACZAAAAGEAAAMWAAADYQAAAWQAAABkAAAAZAAAAFMAAABTAAAAZAAAAEcAAABHAAAARwAAAkcAAAFHAAAARwAAAxYAAAEaAAADGgAAABoAAAFkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABHAAADRwAAAEcAAAJHAAACRwAAAkcAAAAWAAADZAAAAGQAAABkAAAAZAAAABYAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAABRwAAAkcAAAJHAAACRwAAAEcAAABHAAAAFgAAAVEAAABRAAADUQAAA1EAAANRAAABUQAAABYAAAFHAAABRwAAAkcAAANHAAACRwAAAEcAAABHAAAARwAAAhYAAABRAAADUQAAAVEAAAFRAAAAUQAAA1EAAAMWAAADRwAAAEcAAAJHAAACRwAAAkcAAABHAAAARwAAA0cAAAMWAAABUQAAAVEAAABRAAADUQAAA1EAAAFRAAACFgAAASgAAABHAAABRwAAAEcAAAFHAAACZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADFgAAAxYAAAAWAAADFgAAA2QAAAAoAAAARwAAAEcAAAFHAAABRwAAAGQAAABHAAADRwAAAEcAAAJHAAABRwAAAkcAAABHAAACRwAAA0cAAABkAAAAZAAAAGQAAAAWAAACFgAAAxYAAABkAAAARwAAA1MAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABHAAACZAAAAAAAAABkAAAARwAAAUcAAAFHAAABZAAAAEcAAAJTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAARwAAAxYAAAMAAAAAZAAAAEcAAABHAAABRwAAAmQAAABHAAACUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAEcAAAJkAAAAAAAAAGQAAABHAAACRwAAA0cAAABkAAAARwAAAEcAAAJHAAADRwAAA0cAAANHAAAARwAAAEcAAAJHAAAAZAAAAAAAAABkAAAARwAAA0cAAAJHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAABRwAAAFQAAABTAAAAUwAAAFMAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABTAAAAUwAAAEwAAABMAAAARwAAAkcAAABkAAAAZAAAAGQAAABkAAAAVQAAAFUAAAFkAAAAZAAAAGQAAABkAAAAZAAAAA== 2,2: ind: 2,2 - tiles: aAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFgAAABLAAADaAAAAGgAAAAaAAABUAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABQAAAAUAAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAJoAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFAAAABoAAAAUAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABQAAAAUAAAAFAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAFAAAABQAAAAUAAAAFAAAABZAAACZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAFAAAABLAAACUAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABQAAAAVwAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABlAAACUAAAAGUAAAJlAAACDwAAAGgAAABoAAAASwAAA2gAAABoAAAAaAAAAGgAAABoAAAAZQAAAWUAAAIPAAAASwAAAw8AAAJlAAACDwAAA2UAAANLAAACZQAAAGgAAABlAAADaAAAAEsAAAFLAAAAaAAAAGUAAAAPAAAASwAAAw8AAANLAAAAaAAAAGgAAABlAAABZQAAAWgAAABlAAADSwAAAksAAABLAAABSwAAAWgAAABLAAABaAAAAGgAAAAPAAADaAAAAGgAAABoAAAAaAAAAEsAAANoAAAADwAAAmUAAANLAAACaAAAAEsAAANLAAAASwAAAEsAAAAPAAACDwAAAQ8AAAIPAAADaAAAAA8AAABlAAACUAAAAEsAAAJLAAACaAAAAEsAAANLAAAAaAAAAA== + tiles: ZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFQAAABHAAACZAAAAGQAAAAWAAABTAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABMAAAATAAAAGQAAABkAAAATAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAABkAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEwAAABkAAAATAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABMAAAATAAAAEwAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAEwAAABMAAAATAAAAEwAAABVAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEwAAABHAAADTAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABMAAAAUwAAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABhAAADTAAAAGEAAAJhAAACCwAAAWQAAABkAAAARwAAAWQAAABkAAAAZAAAAGQAAABkAAAAYQAAAWEAAAELAAAARwAAAwsAAAFhAAACCwAAAGEAAAFHAAAAYQAAAGQAAABhAAACZAAAAEcAAABHAAABZAAAAGEAAAMLAAAARwAAAQsAAANHAAABZAAAAGQAAABhAAACYQAAAGQAAABhAAABRwAAAEcAAANHAAABRwAAAGQAAABHAAAAZAAAAGQAAAALAAACZAAAAGQAAABkAAAAZAAAAEcAAABkAAAACwAAAmEAAAJHAAABZAAAAEcAAABHAAAARwAAAEcAAAILAAADCwAAAwsAAAALAAABZAAAAAsAAANhAAAATAAAAEcAAABHAAABZAAAAEcAAAFHAAABZAAAAA== 1,2: ind: 1,2 - tiles: WAAAAFAAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAFgAAABQAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAUAAAAGgAAABnAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAABLAAADSwAAAmgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUAAAAFgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAWAAAAEsAAANQAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAEsAAANLAAABUAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABQAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAGgAAA2gAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAABoAAANoAAAAAAAAAAoAAAALAAACCwAAAgsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAaAAABaAAAAAAAAAAKAAAACwAAAgsAAAALAAABCwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAGgAAAWgAAABoAAAACwAAAg0AAAQLAAACCwAAAQsAAAJoAAAAGgAAAhoAAAMaAAACGgAAAxoAAAJoAAAASwAAA0sAAANLAAACaAAAAAwAAAILAAAACwAAAQoAAAAKAAAAaAAAAFgAAABYAAAAWAAAAFgAAABYAAAAGgAAAEsAAABLAAAAUAAAABoAAAIKAAAACgAAAAoAAAALAAACCwAAAGgAAAAaAAADGgAAARoAAAMaAAAAGgAAAmgAAABLAAABUAAAAEsAAABoAAAACgAAAAsAAAANAAAACwAAAAsAAAMLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAEsAAAJLAAACaAAAAA== + tiles: VAAAAEwAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAFkAAAAZAAAAFQAAABMAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAATAAAAGQAAABjAAAAAAAAAAAAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAEcAAAFHAAAARwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAAAATAAAAFQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAVAAAAEcAAANMAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAEcAAAJHAAAATAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABMAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAFgAAAWQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAABYAAABkAAAAAAAAAAYAAAAGAAADBgAAAwYAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAWAAACZAAAAAAAAAAGAAAABgAAAwYAAAIGAAACBgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAFgAAA2QAAABkAAAABgAAAggAAAYGAAADBgAAAQYAAANkAAAAFgAAARYAAAIWAAACFgAAARYAAAFkAAAARwAAAUcAAAJHAAAAZAAAAAYAAAIGAAACBgAAAwYAAAAGAAAAZAAAAFQAAABUAAAAVAAAAFQAAABUAAAAFgAAAkcAAAJHAAAATAAAABYAAAAGAAAABgAAAAYAAAAGAAACBgAAA2QAAAAWAAAAFgAAAxYAAAAWAAAAFgAAAmQAAABHAAABTAAAAEcAAANkAAAABgAAAAYAAAMIAAAFBgAAAQYAAAEGAAACAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAAkcAAAFHAAAAZAAAAA== 0,-4: ind: 0,-4 - tiles: WwAAAmgAAABbAAABWwAAAlsAAANoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAANoAAAAaAAAABoAAANoAAAAWwAAAVsAAANbAAAAaAAAAFcAAABoAAAAaAAAAGgAAAApAAAAKQAAACkAAAApAAAAKQAAACkAAAApAAAAaAAAAFsAAANbAAADWwAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAA1sAAAJbAAABWwAAAFsAAAJbAAABWwAAAUsAAANbAAABWwAAAFsAAAFoAAAAVwAAAGgAAABoAAAAaAAAAFsAAAApAAAAKQAAAFsAAAIpAAAAKQAAACkAAABoAAAAWwAAAFsAAANbAAACaAAAAFcAAABoAAAAaAAAAGgAAABLAAAAaAAAAGgAAAAaAAABaAAAAGgAAABoAAAAaAAAAFsAAANbAAABWwAAA2gAAABoAAAAaAAAAFgAAABYAAAAWwAAA2gAAAAaAAABGgAAAxoAAAFbAAAAWwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAWAAAAFsAAAJoAAAAGgAAARoAAAAaAAADWwAAAFsAAABoAAAAGgAAAlcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAADaAAAAGgAAAAaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABXAAAAWQAAAWgAAABoAAAAWwAAAVsAAABbAAABWwAAAFsAAABbAAACWwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAAFbAAADWwAAA1sAAAJbAAAAWwAAAlsAAAFLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAABWwAAAlsAAAJbAAACWwAAAVsAAANbAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAASwAAAmgAAABoAAAASwAAA2gAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAEsAAAJoAAAAWwAAAlsAAABbAAADWwAAAFsAAAJbAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANbAAABaAAAAFsAAABbAAADWwAAA1sAAAFbAAADWwAAAVAAAABoAAAAUAAAAEsAAAFQAAAAaAAAAGgAAABLAAAAWwAAAFsAAAFbAAACXwAAA1sAAANbAAABWwAAAVsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: VwAAAmQAAABXAAABVwAAAVcAAAJkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAANkAAAAZAAAABYAAAJkAAAAVwAAA1cAAAFXAAAAZAAAAFMAAABkAAAAZAAAAGQAAAAlAAAAJQAAACUAAAAlAAAAJQAAACUAAAAlAAAAZAAAAFcAAAJXAAAAVwAAA2QAAABkAAAAZAAAAGQAAABkAAAAVwAAA1cAAAFXAAAAVwAAAlcAAABXAAABVwAAAkcAAANXAAACVwAAAFcAAANkAAAAUwAAAGQAAABkAAAAZAAAAFcAAAMlAAAAJQAAAFcAAAIlAAAAJQAAACUAAABkAAAAVwAAAFcAAABXAAABZAAAAFMAAABkAAAAZAAAAGQAAABHAAACZAAAAGQAAAAWAAABZAAAAGQAAABkAAAAZAAAAFcAAAJXAAABVwAAA2QAAABkAAAAZAAAAFQAAABUAAAAVwAAAGQAAAAWAAADFgAAARYAAAFXAAACVwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAVAAAAFcAAABkAAAAFgAAAhYAAAMWAAACVwAAAlcAAABkAAAAFgAAAVMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAACZAAAAGQAAAAWAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABTAAAAVQAAAWQAAABkAAAAVwAAAFcAAAFXAAAAVwAAA1cAAANXAAADVwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAANXAAABVwAAAVcAAAFXAAAAVwAAAlcAAANHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAABVwAAA1cAAAFXAAAAVwAAAFcAAANXAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAARwAAAWQAAABkAAAARwAAAWQAAABHAAABZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAEcAAAFkAAAAVwAAA1cAAANXAAABVwAAA1cAAAJXAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFXAAAAZAAAAFcAAAJXAAACVwAAAFcAAANXAAABVwAAA0wAAABkAAAATAAAAEcAAANMAAAAZAAAAGQAAABHAAADVwAAAlcAAABXAAADWwAAAVcAAAFXAAAAVwAAAFcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== 1,-4: ind: 1,-4 - tiles: aAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABQAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAABUAAAAEsAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAANLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAUsAAANLAAABSwAAAksAAAJLAAADSwAAA2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAAFLAAABSwAAAUsAAANLAAAASwAAAEsAAANoAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAACSwAAAksAAANLAAADSwAAAksAAAJQAAAAaAAAAGcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABLAAABSwAAAUsAAABoAAAAaAAAAGgAAABoAAAAGgAAA2gAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABoAAAASwAAA0sAAAFLAAABaAAAAGYAAAJmAAACZgAAA2YAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAACSwAAAmgAAABmAAADZgAAAGYAAAFmAAACaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABLAAADSwAAAksAAAJoAAAAZgAAAWYAAAJmAAABZgAAAVcAAABoAAAAaAAAAGgAAAAaAAABaAAAAGgAAAAaAAACSwAAA0sAAABQAAAAaAAAAGYAAABmAAACZgAAAGYAAANoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAFAAAABLAAACSwAAA2gAAABlAAABZQAAA2UAAAJlAAACaAAAAGgAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAksAAAJoAAAAZQAAAmUAAANlAAACZQAAAGgAAABXAAAAVwAAAGgAAABoAAAAGgAAA1AAAABoAAAASwAAA0sAAANLAAACaAAAAGUAAAFlAAADZQAAAWUAAAJoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABQAAAAaAAAAEsAAAFLAAACSwAAAmgAAABlAAAAZQAAAGUAAAFlAAACaAAAADkAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABLAAAASwAAA0sAAABoAAAAZgAAAmYAAAJlAAADZQAAAQ== + tiles: ZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABMAAAARwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAAATAAAAEcAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAABHAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAAUcAAAJHAAADRwAAAEcAAAFHAAABRwAAA2QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAAJHAAABRwAAAUcAAANHAAADRwAAAUcAAANkAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAADRwAAAEcAAANHAAADRwAAAkcAAANMAAAAZAAAAGMAAABkAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABHAAADRwAAAUcAAAFkAAAAZAAAAGQAAABkAAAAFgAAA2QAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABkAAAARwAAA0cAAANHAAADZAAAAGIAAAFiAAAAYgAAAGIAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAAARwAAAWQAAABiAAAAYgAAAmIAAABiAAADZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAUwAAAGQAAABHAAADRwAAAEcAAANkAAAAYgAAAWIAAAJiAAAAYgAAAlMAAABkAAAAZAAAAGQAAAAWAAADZAAAAGQAAAAWAAAARwAAAkcAAAJMAAAAZAAAAGIAAANiAAACYgAAAmIAAAJkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAEwAAABHAAABRwAAAWQAAABhAAADYQAAA2EAAAJhAAADZAAAAGQAAABMAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAAEcAAANkAAAAYQAAAmEAAANhAAACYQAAAWQAAABTAAAAUwAAAGQAAABkAAAAFgAAAkwAAABkAAAARwAAAEcAAANHAAADZAAAAGEAAAJhAAADYQAAAGEAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABMAAAAZAAAAEcAAABHAAABRwAAAWQAAABhAAABYQAAAGEAAANhAAADZAAAADUAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABHAAACRwAAAUcAAABkAAAAYgAAA2IAAAFhAAABYQAAAg== 2,-4: ind: 2,-4 - tiles: aAAAAGgAAAAAAAAAAAAAAAAAAABoAAAASwAAAEsAAAFLAAABaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAFAAAABoAAAAAAAAAGcAAABnAAAAaAAAAEsAAAJLAAABSwAAAGgAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAABLAAAAGgAAAEsAAANLAAADSwAAAUsAAANLAAABUAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAAAUAAAABoAAAFLAAAASwAAAUsAAAJLAAADSwAAAlAAAAAaAAACaAAAAGgAAABoAAAAaAAAAGgAAABLAAABUAAAAEsAAAAaAAAASwAAA0sAAANLAAADSwAAAFAAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAAASwAAAWYAAAFmAAABZgAAA2gAAABoAAAAaAAAAEsAAAJLAAADSwAAAg4AAABoAAAAVwAAABoAAABLAAABSwAAAUsAAABmAAADZgAAAmYAAABoAAAAVwAAAGgAAABLAAACSwAAAUsAAANLAAACaAAAAFAAAABoAAAAaAAAABoAAAFoAAAAZgAAA2YAAAJmAAACaAAAAGgAAABoAAAADgAAAEsAAABLAAADSwAAAmgAAABLAAADaAAAAFgAAABXAAAAGgAAAmYAAAFmAAABZgAAAmgAAABoAAAAaAAAAEsAAANLAAABSwAAAEsAAANoAAAASwAAAmgAAABXAAAAVwAAABoAAABlAAACZQAAAWUAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFkAAAEaAAABZQAAAGUAAANlAAADaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAaAAAAFcAAABXAAAAGgAAAWUAAABlAAABZQAAAmgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAABZQAAAWUAAABoAAAAaAAAAGgAAABoAAAAUAAAAFAAAABoAAAASwAAAEsAAAFLAAADSwAAAUsAAAJoAAAAZQAAAmYAAAJmAAABaAAAAFcAAABXAAAAaAAAAFAAAABoAAAAaAAAAEsAAANLAAAASwAAAksAAABLAAAAaAAAAA== + tiles: ZAAAAGQAAAAAAAAAAAAAAAAAAABkAAAARwAAAUcAAANHAAACZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAEwAAABkAAAAAAAAAGMAAABjAAAAZAAAAEcAAAJHAAADRwAAAGQAAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAABHAAABZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAUcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAAFHAAAAFgAAAUcAAABHAAACRwAAAUcAAANHAAADTAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAADTAAAABYAAAJHAAADRwAAAUcAAANHAAAARwAAA0wAAAAWAAACZAAAAGQAAABkAAAAZAAAAGQAAABHAAABTAAAAEcAAAIWAAACRwAAA0cAAANHAAAARwAAAEwAAABMAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAAZAAAAGQAAABkAAAAZAAAABYAAABkAAAAZAAAABYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAACRwAAAGIAAAFiAAACYgAAA2QAAABkAAAAZAAAAEcAAAFHAAACRwAAAwoAAABkAAAAUwAAABYAAAFHAAABRwAAAEcAAAJiAAAAYgAAAGIAAAJkAAAAUwAAAGQAAABHAAACRwAAAkcAAAFHAAABZAAAAEwAAABkAAAAZAAAABYAAABkAAAAYgAAAGIAAABiAAACZAAAAGQAAABkAAAACgAAAEcAAABHAAACRwAAAGQAAABHAAADZAAAAFQAAABTAAAAFgAAAmIAAABiAAACYgAAAmQAAABkAAAAZAAAAEcAAABHAAABRwAAAkcAAAFkAAAARwAAAmQAAABTAAAAUwAAABYAAAJhAAACYQAAAGEAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFUAAAAWAAAAYQAAAWEAAABhAAADZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAAZAAAAFMAAABTAAAAFgAAAWEAAAJhAAAAYQAAAmQAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAAAYQAAAWEAAANkAAAAZAAAAGQAAABkAAAATAAAAEwAAABkAAAARwAAAEcAAABHAAAARwAAA0cAAANkAAAAYQAAA2IAAAJiAAADZAAAAFMAAABTAAAAZAAAAEwAAABkAAAAZAAAAEcAAAJHAAADRwAAAkcAAAFHAAADZAAAAA== -1,-4: ind: -1,-4 - tiles: KQAAACkAAAApAAAAKQAAABoAAAFoAAAAKQAAACkAAAApAAAAKQAAACkAAABoAAAAWwAAAlsAAAFbAAAAWwAAAmgAAABoAAAASwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAABaAAAAEsAAANLAAADaAAAAGgAAAApAAAAKQAAACkAAAApAAAAKQAAACkAAAApAAAAKQAAACkAAAApAAAAKQAAACkAAAApAAAAKQAAACkAAAApAAAAWwAAA1sAAANbAAADWwAAAVsAAAJbAAADWwAAAlsAAABbAAAAWwAAAFsAAANbAAABWwAAAlsAAAJbAAAAWwAAAlsAAAJbAAAAKQAAACkAAABbAAAAKQAAACkAAABbAAABKQAAACkAAABbAAABKQAAACkAAABbAAADKQAAACkAAABLAAABSwAAAWgAAABoAAAASwAAAmgAAABoAAAASwAAA0sAAABoAAAASwAAAGgAAABoAAAASwAAAmgAAABoAAAAWwAAAlsAAABoAAAAWwAAAlsAAAFoAAAAWwAAAVsAAAJoAAAAWwAAA1sAAANoAAAAWwAAA1sAAANoAAAAWwAAA1sAAAFbAAACaAAAAFsAAAFbAAABaAAAAFsAAAJbAAACaAAAAFsAAABbAAAAaAAAAFsAAANbAAADaAAAAFsAAAJLAAADSwAAA2gAAABoAAAAWwAAAWgAAABoAAAAWwAAAmgAAABoAAAAWwAAAGgAAAAaAAABWwAAAWgAAAAaAAABWwAAAFsAAAJbAAABWwAAAVsAAANbAAACWwAAAlsAAANbAAADWwAAAVsAAABbAAABWwAAA1sAAAFbAAACWwAAAlsAAABbAAAAWwAAAVsAAAJbAAABWwAAA1sAAAJIAAAAWwAAAlsAAAJbAAAAWwAAAVsAAAJbAAABWwAAA0gAAABbAAABWwAAAVsAAABbAAACWwAAAFsAAABbAAACWwAAAlsAAANbAAADWwAAAFsAAANbAAACWwAAA1sAAANbAAADaAAAAGgAAABLAAADaAAAAGgAAABoAAAASwAAAEsAAABLAAADaAAAAGgAAABLAAADaAAAAGgAAABLAAACSwAAA14AAAJeAAACXgAAA14AAAJeAAABaAAAAEsAAABLAAABSwAAAmgAAABbAAADWwAAA1sAAANoAAAASwAAAksAAAJeAAABXgAAA14AAAFeAAACXgAAA2gAAABbAAADWwAAAFsAAAJbAAACWwAAAFsAAANbAAABWwAAAVsAAABbAAADXgAAA14AAABeAAACXgAAAl4AAAJoAAAAWwAAAFsAAANbAAACWwAAAFsAAANbAAAAWwAAAlsAAANbAAACWwAAAA== + tiles: JQAAACUAAAAlAAAAJQAAABYAAAFkAAAAJQAAACUAAAAlAAAAJQAAACUAAABkAAAAVwAAAlcAAABXAAADVwAAA2QAAABkAAAARwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAACZAAAAEcAAABHAAACZAAAAGQAAAAlAAAAJQAAACUAAAAlAAAAJQAAACUAAAAlAAAAJQAAACUAAAAlAAAAJQAAACUAAAAlAAAAJQAAACUAAAAlAAAAVwAAA1cAAANXAAABVwAAAlcAAAFXAAADVwAAAlcAAABXAAABVwAAA1cAAABXAAADVwAAAFcAAAJXAAAAVwAAA1cAAAFXAAAAJQAAACUAAABXAAABJQAAACUAAABXAAABJQAAACUAAABXAAADJQAAACUAAABXAAABJQAAACUAAABHAAADRwAAAGQAAABkAAAARwAAA2QAAABkAAAARwAAAkcAAABkAAAARwAAAmQAAABkAAAARwAAAmQAAABkAAAAVwAAAlcAAABkAAAAVwAAAVcAAABkAAAAVwAAAFcAAAFkAAAAVwAAAFcAAANkAAAAVwAAAVcAAAFkAAAAVwAAAVcAAAJXAAACZAAAAFcAAABXAAADZAAAAFcAAABXAAACZAAAAFcAAABXAAABZAAAAFcAAAJXAAAAZAAAAFcAAANHAAACRwAAAWQAAABkAAAAVwAAAmQAAABkAAAAVwAAAWQAAABkAAAAVwAAA2QAAAAWAAACVwAAAGQAAAAWAAACVwAAAlcAAAJXAAABVwAAAlcAAANXAAABVwAAAFcAAAJXAAAAVwAAA1cAAABXAAADVwAAAlcAAAJXAAACVwAAAFcAAAFXAAADVwAAAFcAAANXAAAAVwAAAFcAAANEAAAAVwAAAFcAAANXAAADVwAAAlcAAABXAAADVwAAAEQAAABXAAACVwAAAVcAAAFXAAACVwAAA1cAAAFXAAABVwAAAlcAAANXAAACVwAAAVcAAAJXAAABVwAAAlcAAANXAAABZAAAAGQAAABHAAACZAAAAGQAAABkAAAARwAAAEcAAAJHAAABZAAAAGQAAABHAAADZAAAAGQAAABHAAACRwAAAloAAANaAAABWgAAAFoAAAFaAAAAZAAAAEcAAAJHAAAARwAAAmQAAABXAAADVwAAAlcAAABkAAAARwAAAkcAAABaAAABWgAAAFoAAAJaAAAAWgAAAGQAAABXAAAAVwAAAFcAAANXAAAAVwAAAVcAAAJXAAABVwAAAVcAAANXAAAAWgAAAloAAANaAAAAWgAAAVoAAANkAAAAVwAAAFcAAAFXAAADVwAAAVcAAABXAAABVwAAAFcAAANXAAABVwAAAw== -2,-4: ind: -2,-4 - tiles: GgAAAhoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAACWwAAA1sAAAJoAAAAGgAAAlAAAABoAAAAaAAAAFAAAABoAAAAaAAAAFsAAABbAAADWwAAAFsAAAJoAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAAUAAAAGgAAABQAAAAUAAAAFsAAANbAAAAWwAAAFsAAANbAAADaAAAACkAAAApAAAAKQAAACkAAAApAAAAaAAAAGgAAABoAAAAWAAAAGgAAABbAAACaAAAAGgAAABoAAAAWwAAA0sAAAEpAAAAWwAAAFsAAANbAAABWwAAAmcAAABoAAAAVwAAAFgAAABoAAAAWwAAAFsAAABgAAAAWwAAAVsAAANoAAAAKQAAACkAAAApAAAAKQAAACkAAABoAAAAaAAAAFcAAABYAAAAVwAAAFsAAABoAAAAWwAAAWgAAABbAAABaAAAAGgAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAWAAAAGgAAABbAAADWwAAA1sAAAFbAAACWwAAAWgAAABmAAABZgAAA2YAAAJmAAADaAAAAFcAAABoAAAAaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZgAAAGYAAAFmAAADZgAAAksAAABXAAAAVwAAAGgAAABQAAAAaAAAAFAAAABQAAAAUAAAAGgAAABmAAAAZgAAAGYAAANmAAADZgAAAWYAAABoAAAAVwAAAFcAAABoAAAAUAAAAFAAAABQAAAAUAAAAFAAAABoAAAAZgAAAGYAAABmAAAAZgAAAmYAAABmAAAAaAAAAGgAAABoAAAAaAAAAFAAAABQAAAAUAAAAFkAAANQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAaAAAAGgAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABoAAAAWQAAAGgAAABoAAAAaAAAAGgAAAAaAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAFcAAABXAAAAOQAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAUAAAAFcAAABXAAAAaAAAAF4AAANoAAAAGgAAAWgAAABoAAAAUAAAAFAAAABoAAAAUAAAAFAAAABoAAAAGgAAAGgAAABoAAAAGgAAAWgAAABeAAADGgAAAhoAAAMaAAABaAAAAFAAAABoAAAAaAAAAGgAAABQAAAAaAAAABoAAAEwAAAAaAAAABoAAANoAAAAXgAAAw== + tiles: FgAAABYAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAADVwAAAFcAAABkAAAAFgAAA0wAAABkAAAAZAAAAEwAAABkAAAAZAAAAFcAAANXAAACVwAAAlcAAABkAAAAZAAAAEcAAAFkAAAAZAAAAGQAAABkAAAATAAAAGQAAABMAAAATAAAAFcAAAJXAAABVwAAAFcAAABXAAACZAAAACUAAAAlAAAAJQAAACUAAAAlAAAAZAAAAGQAAABkAAAAVAAAAGQAAABXAAADZAAAAGQAAABkAAAAVwAAAUcAAAIlAAAAVwAAA1cAAAFXAAABVwAAAmMAAABkAAAAUwAAAFQAAABkAAAAVwAAAVcAAAFcAAADVwAAA1cAAAFkAAAAJQAAACUAAAAlAAAAJQAAACUAAABkAAAAZAAAAFMAAABUAAAAUwAAAFcAAAFkAAAAVwAAAGQAAABXAAAAZAAAAGQAAABHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAVAAAAGQAAABXAAABVwAAAFcAAAFXAAACVwAAA2QAAABiAAACYgAAA2IAAABiAAAAZAAAAFMAAABkAAAAZAAAABYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYgAAAGIAAAJiAAACYgAAAkcAAAJTAAAAUwAAAGQAAABMAAAAZAAAAEwAAABMAAAATAAAAGQAAABiAAADYgAAAmIAAAJiAAACYgAAAGIAAAJkAAAAUwAAAFMAAABkAAAATAAAAEwAAABMAAAATAAAAEwAAABkAAAAYgAAAWIAAAJiAAABYgAAAGIAAAJiAAAAZAAAAGQAAABkAAAAZAAAAEwAAABMAAAATAAAAFUAAAJMAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAAZAAAAGQAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABkAAAAVQAAAmQAAABkAAAAZAAAAGQAAAAWAAABUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAFMAAABTAAAANQAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAATAAAAFMAAABTAAAAZAAAAFoAAANkAAAAFgAAAmQAAABkAAAATAAAAEwAAABkAAAATAAAAEwAAABkAAAAFgAAAmQAAABkAAAAFgAAAGQAAABaAAAAFgAAAhYAAAAWAAABZAAAAEwAAABkAAAAZAAAAGQAAABMAAAAZAAAABYAAAEsAAAAZAAAABYAAANkAAAAWgAAAA== -1,-5: ind: -1,-5 - tiles: SwAAAksAAAJoAAAAUAAAAGgAAABoAAAAaAAAAFcAAABYAAAAVwAAAFcAAABoAAAAaAAAAFcAAABXAAAAVwAAAFAAAABLAAACaAAAAGgAAABXAAAAUAAAAFAAAABXAAAAWAAAAFAAAABoAAAAUAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAFAAAABQAAAAVwAAAFcAAABoAAAAaAAAAFcAAABoAAAAaAAAAFcAAABoAAAASwAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABLAAABaAAAAFgAAABYAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAWAAAAFAAAABoAAAAaAAAAGgAAABYAAAAVwAAAGgAAABYAAAAWAAAAGgAAAAaAAACGgAAABoAAABoAAAAaAAAAGgAAABQAAAAWQAAA2gAAABoAAAAWAAAAFcAAABoAAAAaAAAAGgAAABoAAAAWAAAAFgAAAAaAAADaAAAAFcAAABoAAAAUAAAAFkAAAJoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABZAAACVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABYAAAAWQAAAhoAAANoAAAAaAAAAGgAAABoAAAAaAAAABoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAACaAAAAFcAAABXAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWQAAAlcAAABoAAAASwAAAmgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAABoAAAJoAAAAKQAAACkAAAApAAAAKQAAACkAAABoAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAAWwAAAVsAAAFbAAAAWwAAAykAAAAaAAAAGgAAAikAAAAaAAACaAAAACkAAAApAAAAKQAAACkAAAApAAAAaAAAAFsAAAJSAAACUgAAAFIAAAApAAAAGgAAABoAAAIpAAAAGgAAAmgAAAApAAAAKQAAACkAAAApAAAAKQAAAGgAAABbAAABUgAAA1IAAANSAAADKQAAABoAAAEaAAADKQAAABoAAABoAAAAKQAAACkAAAApAAAAKQAAACkAAABoAAAAWwAAA1IAAABSAAAAUgAAAg== + tiles: RwAAAEcAAAJkAAAATAAAAGQAAABkAAAAZAAAAFMAAABUAAAAUwAAAFMAAABkAAAAZAAAAFMAAABTAAAAUwAAAEwAAABHAAACZAAAAGQAAABTAAAATAAAAEwAAABTAAAAVAAAAEwAAABkAAAATAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAEwAAABMAAAAUwAAAFMAAABkAAAAZAAAAFMAAABkAAAAZAAAAFMAAABkAAAARwAAAEcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEwAAABHAAADZAAAAFQAAABUAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAAVAAAAEwAAABkAAAAZAAAAGQAAABUAAAAUwAAAGQAAABUAAAAVAAAAGQAAAAWAAADFgAAAxYAAABkAAAAZAAAAGQAAABMAAAAVQAAAGQAAABkAAAAVAAAAFMAAABkAAAAZAAAAGQAAABkAAAAVAAAAFQAAAAWAAACZAAAAFMAAABkAAAATAAAAFUAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABVAAADUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABUAAAAVQAAAxYAAANkAAAAZAAAAGQAAABkAAAAZAAAABYAAANkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAABZAAAAFMAAABTAAAAZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVQAAAFMAAABkAAAARwAAAmQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAABYAAABkAAAAJQAAACUAAAAlAAAAJQAAACUAAABkAAAAZAAAAEcAAABkAAAAZAAAAGQAAABkAAAAVwAAAFcAAAFXAAACVwAAACUAAAAWAAACFgAAAiUAAAAWAAABZAAAACUAAAAlAAAAJQAAACUAAAAlAAAAZAAAAFcAAAJOAAAATgAAAE4AAAIlAAAAFgAAAxYAAAMlAAAAFgAAAmQAAAAlAAAAJQAAACUAAAAlAAAAJQAAAGQAAABXAAACTgAAAU4AAAFOAAABJQAAABYAAAIWAAADJQAAABYAAANkAAAAJQAAACUAAAAlAAAAJQAAACUAAABkAAAAVwAAAE4AAABOAAAATgAAAQ== -2,-5: ind: -2,-5 - tiles: aAAAACkAAAApAAAAKQAAAFsAAAJbAAADWwAAAFsAAANbAAADWwAAAGgAAABbAAAAWwAAAVsAAAJbAAACSwAAAmgAAAApAAAAKQAAACkAAABbAAABWwAAA1sAAABbAAACWwAAA1sAAABoAAAAWwAAAFsAAAJbAAADWwAAAksAAAFoAAAAKQAAACkAAAApAAAAWwAAAVsAAAFbAAABWwAAAlsAAABbAAADaAAAAFsAAABbAAADWwAAAlsAAAJLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAlsAAAFbAAACWwAAA2gAAABbAAAAWwAAAFsAAAJbAAADSwAAA1sAAABbAAACWwAAAlsAAAFbAAABaAAAAFsAAANbAAACWwAAAVsAAABoAAAAWwAAAlsAAAJbAAABWwAAAEsAAAJbAAACWwAAA1sAAABbAAABWwAAAWgAAABoAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAWgAAABoAAAAWwAAAVsAAAFbAAACWwAAAVsAAAJLAAADWwAAAVsAAAJbAAAAWwAAAlsAAANbAAABWwAAA1sAAAFbAAACaAAAAGgAAABoAAAASwAAAWgAAABoAAAAaAAAAFsAAAJbAAACWwAAAVsAAANbAAABWwAAA1sAAANbAAABWwAAAGgAAABeAAACXgAAA14AAANeAAABXgAAAGgAAABbAAADWwAAA1sAAAFbAAACWwAAA1sAAAFbAAABWwAAAlsAAANoAAAAXgAAAF4AAAFeAAADXgAAAF4AAABoAAAAWwAAAlsAAANbAAACWwAAA1sAAAFbAAAAWwAAAVsAAABbAAABaAAAAF4AAAFeAAADXgAAAV4AAAFeAAACaAAAAFsAAANbAAAAWwAAA1sAAANbAAABWwAAA1sAAAFbAAADWwAAA0sAAAJoAAAAGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADaAAAAGgAAABoAAAAaAAAAFkAAAJoAAAAaAAAAFAAAABZAAAAVwAAAFcAAABXAAAAaAAAAGgAAABbAAAAWwAAAFsAAAFoAAAAKQAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFcAAABXAAAAVwAAAGgAAABoAAAAWwAAAlsAAABbAAADaAAAABoAAAFoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADaAAAAGgAAAAaAAACUAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFAAAABoAAAAaAAAAGgAAABbAAABWwAAAFsAAANoAAAAGgAAAA== + tiles: ZAAAACUAAAAlAAAAJQAAAFcAAAFXAAADVwAAAFcAAANXAAABVwAAAmQAAABXAAABVwAAAlcAAANXAAACRwAAAGQAAAAlAAAAJQAAACUAAABXAAAAVwAAAFcAAABXAAAAVwAAA1cAAAFkAAAAVwAAA1cAAABXAAABVwAAAkcAAAJkAAAAJQAAACUAAAAlAAAAVwAAAlcAAABXAAAAVwAAA1cAAABXAAACZAAAAFcAAANXAAAAVwAAAVcAAABHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAA1cAAAFXAAADVwAAAmQAAABXAAADVwAAA1cAAAFXAAAARwAAAVcAAAFXAAABVwAAAVcAAABXAAADZAAAAFcAAABXAAABVwAAAVcAAANkAAAAVwAAAVcAAABXAAAAVwAAAkcAAAFXAAADVwAAAFcAAAJXAAACVwAAA2QAAABkAAAARwAAAWQAAABkAAAAZAAAAGQAAABkAAAARwAAA2QAAABkAAAAVwAAA1cAAAJXAAACVwAAA1cAAAJHAAADVwAAAFcAAANXAAACVwAAAVcAAAFXAAACVwAAAVcAAABXAAACZAAAAGQAAABkAAAARwAAAmQAAABkAAAAZAAAAFcAAABXAAACVwAAAlcAAAFXAAAAVwAAAlcAAANXAAACVwAAAWQAAABaAAADWgAAAVoAAANaAAACWgAAAGQAAABXAAAAVwAAAlcAAANXAAAAVwAAAVcAAABXAAAAVwAAA1cAAABkAAAAWgAAAVoAAAJaAAAAWgAAAVoAAABkAAAAVwAAAVcAAAJXAAACVwAAAlcAAABXAAABVwAAAFcAAAJXAAABZAAAAFoAAAJaAAACWgAAAFoAAANaAAABZAAAAFcAAAJXAAACVwAAAlcAAAFXAAAAVwAAAlcAAAJXAAABVwAAAEcAAABkAAAAFgAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABZAAAAGQAAABkAAAAZAAAAFUAAAFkAAAAZAAAAEwAAABVAAADUwAAAFMAAABTAAAAZAAAAGQAAABXAAACVwAAA1cAAANkAAAAJQAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAFMAAABTAAAAUwAAAGQAAABkAAAAVwAAAlcAAAFXAAADZAAAABYAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABZAAAAGQAAAAWAAACTAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAEwAAABkAAAAZAAAAGQAAABXAAAAVwAAA1cAAANkAAAAFgAAAQ== 0,-5: ind: 0,-5 - tiles: aAAAAAAAAAAAAAAAVwAAAAAAAABoAAAAaAAAAFcAAABoAAAAAAAAAAAAAABoAAAAaAAAAGYAAAFmAAAAZgAAAWgAAAAAAAAAAAAAAFcAAAAAAAAAaAAAAGgAAABXAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAABXAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABoAAAAWAAAAFgAAABYAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABQAAAAaAAAAFAAAABQAAAAUAAAAGgAAABoAAAAaAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAGgAAABYAAAAWAAAAFgAAABoAAAAaAAAAGgAAAAAAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAANoAAAAZwAAAGgAAABYAAAAVwAAAFgAAABYAAAAWAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFkAAABYAAAAWAAAAGgAAABoAAAAGgAAAGgAAABQAAAAaAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAUAAAAGgAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAWgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAFAAAABbAAAAaAAAAFsAAANbAAAAWwAAA2gAAABXAAAAaAAAAFkAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABQAAAAWwAAA2gAAABbAAADSAAAAFsAAAFoAAAAVwAAAFAAAABQAAAAWQAAAlcAAABZAAADWQAAAGgAAABoAAAAUAAAAA== + tiles: ZAAAAAAAAAAAAAAAUwAAAAAAAABkAAAAZAAAAFMAAABkAAAAAAAAAAAAAABkAAAAZAAAAGIAAABiAAABYgAAAWQAAAAAAAAAAAAAAFMAAAAAAAAAZAAAAGQAAABTAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAABTAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAABkAAAAVAAAAFQAAABUAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABMAAAAZAAAAEwAAABMAAAATAAAAGQAAABkAAAAZAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAGQAAABUAAAAVAAAAFQAAABkAAAAZAAAAGQAAAAAAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAFkAAAAYwAAAGQAAABUAAAAUwAAAFQAAABUAAAAVAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFUAAANUAAAAVAAAAGQAAABkAAAAFgAAAmQAAABMAAAAZAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAATAAAAGQAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAWQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAEwAAABXAAADZAAAAFcAAANXAAAAVwAAA2QAAABTAAAAZAAAAFUAAAFkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFMAAAAVwAAAWQAAABXAAABRAAAAFcAAANkAAAAUwAAAEwAAABMAAAAVQAAA1MAAABVAAABVQAAAGQAAABkAAAATAAAAA== -1,-6: ind: -1,-6 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAUsAAANLAAAASwAAAksAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAGgAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAA1gAAAAaAAABZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAABYAAAAGgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAACWAAAABoAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAlgAAAAaAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAZwAAAFcAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAVwAAAGgAAABoAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAFAAAABQAAAAaAAAAGgAAABXAAAAaAAAAAAAAABnAAAAAAAAAFcAAABoAAAAaAAAAGgAAABXAAAAUAAAAGgAAABQAAAAaAAAAFcAAABXAAAAaAAAAGgAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFcAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAVwAAAGgAAABXAAAAVwAAAFcAAABQAAAAaAAAAFAAAABoAAAAVwAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAFcAAABoAAAAaAAAAFcAAABXAAAAUAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABXAAAAaAAAAFcAAABoAAAAaAAAAFAAAABYAAAAWAAAAFcAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAFgAAABYAAAAWAAAAFgAAABYAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAkcAAAFHAAAARwAAAkcAAAFkAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAFgAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAFQAAAAWAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAFUAAAAFgAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAABVAAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAlQAAAAWAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAYwAAAFMAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAATAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAUwAAAGQAAABkAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAEwAAABMAAAAZAAAAGQAAABTAAAAZAAAAAAAAABjAAAAAAAAAFMAAABkAAAAZAAAAGQAAABTAAAATAAAAGQAAABMAAAAZAAAAFMAAABTAAAAZAAAAGQAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAFMAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAAUwAAAGQAAABTAAAAUwAAAFMAAABMAAAAZAAAAEwAAABkAAAAUwAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAFMAAABkAAAAZAAAAFMAAABTAAAATAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABTAAAAZAAAAFMAAABkAAAAZAAAAEwAAABUAAAAVAAAAFMAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAFQAAABUAAAAVAAAAFQAAABUAAAAZAAAAGQAAABkAAAAZAAAAA== -2,-6: ind: -2,-6 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAANLAAABSwAAAUsAAAFLAAACSwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAAJLAAABSwAAAUsAAAJLAAACSwAAA0sAAAJLAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABLAAADUAAAAEsAAAFLAAAASwAAA0sAAANQAAAASwAAAWgAAABnAAAAaAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAA0sAAAJLAAACSwAAAEsAAAFLAAABSwAAAEsAAAJoAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAF8AAABfAAACXwAAAV8AAABfAAACXwAAAF8AAAFfAAAAaAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABfAAAAXwAAAV8AAAJfAAADXwAAAl8AAANfAAABXwAAAmgAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAXwAAAV8AAAFfAAAAXwAAAV8AAABfAAABXwAAA18AAABoAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAF8AAAFfAAADXwAAA18AAAJfAAAAXwAAAF8AAAJfAAACaAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABfAAABXwAAAWgAAABLAAABaAAAAGgAAABoAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAXwAAAV8AAAFoAAAAGgAAAGgAAABAAAAAQAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAADaAAAABoAAANoAAAAQAAAAEAAAABoAAAAaAAAACkAAAApAAAAKQAAAFsAAAJbAAACWwAAAVsAAANbAAACWwAAA0sAAAJLAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAAJHAAAARwAAAEcAAAJHAAABRwAAAmQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAAFHAAAARwAAAEcAAAFHAAABRwAAAUcAAABHAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABHAAABTAAAAEcAAAJHAAADRwAAA0cAAAJMAAAARwAAAWQAAABjAAAAZAAAAAAAAAAAAAAAAAAAAGMAAABkAAAARwAAAkcAAABHAAADRwAAA0cAAAJHAAAARwAAAEcAAAJkAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFsAAAJbAAADWwAAAVsAAABbAAABWwAAAVsAAANbAAAAZAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABbAAAAWwAAAVsAAAJbAAABWwAAAlsAAANbAAADWwAAAGQAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAWwAAAFsAAAFbAAABWwAAAlsAAANbAAADWwAAAVsAAABkAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFsAAAJbAAAAWwAAAVsAAAJbAAABWwAAA1sAAANbAAADZAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABbAAADWwAAAWQAAABHAAAAZAAAAGQAAABkAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAWwAAAFsAAANkAAAAFgAAAGQAAAA8AAAAPAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAABZAAAABYAAAJkAAAAPAAAADwAAABkAAAAZAAAACUAAAAlAAAAJQAAAFcAAAFXAAABVwAAAlcAAAFXAAAAVwAAAEcAAAFHAAAAZAAAAGQAAABkAAAAZAAAAA== 0,-6: ind: 0,-6 - tiles: AAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAAsAAAILAAADDQAAAAsAAAENAAADCwAAAwwAAAELAAABCwAAA2cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAALAAACDAAABwsAAAAMAAAACwAAAg0AAAALAAACDQAABwsAAAFnAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAZgAAA2YAAANmAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAGgAAAWgAAAAAAAAAAAAAAGgAAABoAAAAZQAAAmUAAAFlAAAAZQAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAABoAAABoAAAAAAAAAAAAAABoAAAAZgAAAmUAAABSAAADUgAAAVIAAAMAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAAAaAAACaAAAAGgAAABoAAAAaAAAAGYAAAFlAAADUgAAACwAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAFkAAAJXAAAAVwAAAGgAAABmAAACZQAAAVIAAAMsAAAALAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAZgAAAGUAAAJSAAAALAAAACwAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAWAAAAGgAAAAAAAAAaAAAAGYAAAFlAAACUgAAA1IAAAFSAAAAaAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAFcAAABoAAAAAAAAAGgAAABoAAAAZQAAA2UAAANlAAACZQAAAw== + tiles: AAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAYwAAAAYAAAIGAAADCAAABQYAAAMIAAAEBgAAAQYAAAcGAAABBgAAAmMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAGAAABBgAABAYAAAMGAAAHBgAAAggAAAMGAAACCAAABAYAAAJjAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAYgAAAGIAAAJiAAACAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAFgAAAmQAAAAAAAAAAAAAAGQAAABkAAAAYQAAA2EAAAJhAAABYQAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAABYAAANkAAAAAAAAAAAAAABkAAAAYgAAA2EAAANOAAACTgAAAU4AAAEAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAAAWAAAAZAAAAGQAAABkAAAAZAAAAGIAAANhAAADTgAAAygAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAFUAAAJTAAAAUwAAAGQAAABiAAABYQAAAU4AAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAYgAAAWEAAAFOAAAAKAAAACgAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAVAAAAGQAAAAAAAAAZAAAAGIAAANhAAACTgAAAU4AAAJOAAACZAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAFMAAABkAAAAAAAAAGQAAABkAAAAYQAAA2EAAAJhAAACYQAAAg== -3,-5: ind: -3,-5 - tiles: SwAAAFAAAAAOAAAASwAAAEsAAABLAAABSwAAAksAAAJLAAADaAAAAEsAAANLAAADaAAAAAAAAAAAAAAAAAAAAA4AAABLAAADSwAAAUsAAANlAAACZQAAAWUAAAJlAAACSwAAAEsAAANQAAAASwAAAmgAAAAAAAAAAAAAAAAAAAAOAAAASwAAAFAAAABlAAACZQAAAEsAAAJlAAACZQAAAGUAAANQAAAASwAAAksAAAFoAAAAZwAAAGcAAABnAAAASwAAAWgAAABQAAAAZQAAAlAAAABZAAADUAAAAFAAAABlAAADUAAAAEsAAANLAAAAaAAAAAAAAAAAAAAAAAAAAFAAAAAOAAAASwAAAmUAAAFlAAAASwAAAmUAAAFQAAAAZQAAA0sAAAJoAAAASwAAAGgAAAAAAAAAAAAAAGgAAAAOAAAAUAAAAEsAAANoAAAAZQAAAmUAAAFlAAACZQAAAmgAAAAOAAAASwAAAEsAAANoAAAAAAAAAAAAAABoAAAAaAAAAEsAAAJLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAADgAAAA4AAABLAAADaAAAAGgAAABoAAAAGgAAA2gAAABLAAABDgAAAFkAAAFZAAACDgAAAEsAAANLAAACSwAAAg4AAABLAAAASwAAA2gAAAAaAAABGgAAAhoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAA4AAABLAAAASwAAA2gAAABQAAAAaAAAAGgAAABoAAAAGgAAAGgAAABoAAAAWAAAAGgAAABoAAAASwAAAksAAAAOAAAAUAAAAFAAAABQAAAAaAAAAGgAAABoAAAAUAAAABoAAAEaAAAAGgAAAlgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACGgAAARoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAACaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAOAAAASwAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAA4AAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFAAAABQAAAAUAAAAGgAAABoAAAAUAAAAFgAAABYAAAAaAAAADkAAABoAAAAaAAAAA== + tiles: RwAAA0wAAAAKAAAARwAAAEcAAAFHAAABRwAAAUcAAANHAAABZAAAAEcAAABHAAACZAAAAAAAAAAAAAAAAAAAAAoAAABHAAAARwAAAEcAAAFhAAAAYQAAA2EAAANhAAAARwAAAEcAAAJMAAAARwAAAGQAAAAAAAAAAAAAAAAAAAAKAAAARwAAAUwAAABhAAADYQAAA0cAAANhAAAAYQAAAGEAAANMAAAARwAAAEcAAAFkAAAAYwAAAGMAAABjAAAARwAAA2QAAABMAAAAYQAAAkwAAABVAAAATAAAAEwAAABhAAADTAAAAEcAAANHAAACZAAAAAAAAAAAAAAAAAAAAEwAAAAKAAAARwAAAGEAAAFhAAAARwAAAWEAAAJMAAAAYQAAAUcAAABkAAAARwAAAGQAAAAAAAAAAAAAAGQAAAAKAAAATAAAAEcAAAFkAAAAYQAAAWEAAAJhAAADYQAAA2QAAAAKAAAARwAAAEcAAANkAAAAAAAAAAAAAABkAAAAZAAAAEcAAAJHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAACgAAAAoAAABHAAAAZAAAAGQAAABkAAAAFgAAAmQAAABHAAADCgAAAFUAAABVAAABCgAAAEcAAAFHAAADRwAAAQoAAABHAAACRwAAAmQAAAAWAAACFgAAAhYAAABkAAAAZAAAAGQAAABkAAAAZAAAAAoAAABHAAAARwAAA2QAAABMAAAAZAAAAGQAAABkAAAAFgAAAGQAAABkAAAAVAAAAGQAAABkAAAARwAAAkcAAAEKAAAATAAAAEwAAABMAAAAZAAAAGQAAABkAAAATAAAABYAAAIWAAACFgAAAVQAAABkAAAAZAAAAGQAAABkAAAAFgAAARYAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAAAFgAAAxYAAANkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAABZAAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAKAAAARwAAAGQAAABTAAAAUwAAAFMAAABkAAAAZAAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAQoAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAEwAAABMAAAATAAAAGQAAABkAAAATAAAAFQAAABUAAAAZAAAADUAAABkAAAAZAAAAA== 1,-6: ind: 1,-6 - tiles: ZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAAAaAAACaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAGgAAA2gAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAABoAAAJoAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAFAAAABTAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABLAAACUwAAAEsAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAAlMAAAFLAAACZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAEsAAAFTAAACUwAAA2gAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAACUwAAA0sAAAJmAAAAZgAAA2gAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAAlMAAANQAAAAZQAAAmUAAAFlAAABaAAAAGgAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAA0sAAAJTAAABSwAAAlIAAAJSAAADZQAAAmUAAABoAAAAAAAAAAAAAABoAAAAUQAAA1EAAAFSAAAASwAAAlAAAABLAAABUwAAA0sAAAEsAAAAUgAAAGUAAAFlAAADaAAAAGgAAABoAAAAaAAAAFEAAABRAAAAUgAAAksAAABLAAAASwAAA1MAAAFLAAADLAAAAFIAAAFlAAAAZQAAARoAAABLAAADSwAAAxoAAABRAAACUQAAA1IAAANTAAACUwAAAVMAAANTAAACSwAAAiwAAABSAAACZQAAA2UAAANoAAAAaAAAAGgAAABoAAAAUQAAA1EAAAJSAAACSwAAAFAAAABLAAADUwAAA1MAAAFSAAADUgAAAWUAAAJlAAAAaAAAAAAAAAAAAAAAaAAAAFEAAANRAAADUgAAAksAAANLAAAAUAAAAFMAAANLAAADZQAAAGUAAAJlAAADaAAAAGgAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAEsAAABTAAADSwAAAA== + tiles: YwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAAAWAAACZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAFgAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAABYAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAEwAAABPAAABTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABHAAAATwAAA0cAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAARwAAAE8AAAFHAAABYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAEcAAAFPAAADTwAAAmQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAAATwAAAEcAAANiAAACYgAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAARwAAA08AAANMAAAAYQAAAWEAAAFhAAACZAAAAGQAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAEcAAAJPAAADRwAAAE4AAAFOAAABYQAAAmEAAAJkAAAAAAAAAAAAAABkAAAATQAAAk0AAAFOAAACRwAAAUwAAABHAAAATwAAA0cAAAEoAAAATgAAAGEAAAJhAAAAZAAAAGQAAABkAAAAZAAAAE0AAANNAAACTgAAA0cAAANHAAACRwAAA08AAAFHAAADKAAAAE4AAAFhAAABYQAAARYAAANHAAADRwAAARYAAANNAAACTQAAAU4AAAJPAAAATwAAAE8AAAJPAAADRwAAASgAAABOAAACYQAAAGEAAABkAAAAZAAAAGQAAABkAAAATQAAAk0AAAFOAAACRwAAAEwAAABHAAAATwAAAE8AAAFOAAACTgAAAWEAAAFhAAADZAAAAAAAAAAAAAAAZAAAAE0AAANNAAAATgAAAEcAAAJHAAADTAAAAE8AAABHAAABYQAAAmEAAAJhAAABZAAAAGQAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAA0cAAANPAAADRwAAAg== 0,-7: ind: 0,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,-5: ind: 1,-5 - tiles: ZgAAAGYAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAAFTAAADSwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAACUwAAA1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAlMAAANLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAABoAAAAaAAAAGgAAA2cAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABUwAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAADSwAAAVAAAABLAAACSwAAAFMAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFAAAABLAAADSwAAAksAAAFQAAAAUAAAAEsAAAFTAAADSwAAA1kAAANYAAAAWAAAAGgAAABoAAAAaAAAAEsAAAJLAAADSwAAA0sAAAJLAAADSwAAAEsAAAJLAAACUwAAA1MAAAFoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABQAAAASwAAAUsAAAFQAAAAUAAAAEsAAABLAAADSwAAA0sAAANLAAACAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAFAAAABLAAACSwAAAksAAAFLAAAASwAAAWgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAASwAAAksAAABQAAAASwAAAGgAAABoAAAAAAAAAAAAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABQAAAASwAAAGgAAABoAAAAZwAAAAAAAAAAAAAAVwAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABXAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAVwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAA== + tiles: YgAAAWIAAANkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEcAAAFPAAACRwAAAWQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAABTwAAA0wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAAE8AAANHAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAABYAAAIWAAABFgAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABTwAAAkcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAABRwAAA0wAAABHAAADRwAAAk8AAANHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAEwAAABHAAACRwAAAUcAAAFMAAAATAAAAEcAAABPAAADRwAAA1UAAAJUAAAAVAAAAGQAAABkAAAAZAAAAEcAAABHAAACRwAAAEcAAANHAAABRwAAAUcAAANHAAABTwAAA08AAAJkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABMAAAARwAAAEcAAAFMAAAATAAAAEcAAAFHAAADRwAAA0cAAAFHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAEwAAABHAAABRwAAAUcAAANHAAABRwAAA2QAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAARwAAA0cAAAFMAAAARwAAAmQAAABkAAAAAAAAAAAAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABMAAAARwAAAGQAAABkAAAAYwAAAAAAAAAAAAAAUwAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAEwAAABTAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAAAAUwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAA== 2,-5: ind: 2,-5 - tiles: aAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAUAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAEsAAAFoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABLAAADaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAGgAAA2gAAABnAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABnAAAAaAAAAFAAAABoAAAAaAAAAGgAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAACaAAAAGgAAABLAAADGgAAAUsAAANLAAABSwAAA0sAAAJLAAABSwAAAksAAAJLAAABSwAAAUsAAAFLAAAAUAAAAFAAAAAaAAACSwAAAxoAAAFLAAADPwAAAEsAAABLAAADSwAAAUsAAANLAAACSwAAAUsAAABLAAAASwAAAj8AAAJQAAAAGgAAAFMAAAEaAAACSwAAAlAAAABLAAADSwAAAEsAAAFLAAACSwAAA0sAAANLAAADSwAAAEsAAAJLAAADSwAAARoAAANQAAAAaAAAAGgAAABQAAAAUAAAAFAAAABLAAABSwAAAEsAAANLAAACSwAAAUsAAAJLAAABSwAAA2gAAABoAAAAaAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAIaAAABGgAAA2gAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABLAAAASwAAAUsAAAJoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAAlAAAABLAAABaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAAA/AAADSwAAA2gAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAABSwAAAEsAAABoAAAAaAAAAGgAAABoAAAAVwAAAFkAAAJoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAUAAAAD8AAABLAAABVwAAAFgAAABYAAAAVwAAAFkAAANXAAAAaAAAAA== + tiles: ZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAATAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAEcAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABHAAABZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAFgAAAGQAAABjAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABjAAAAZAAAAEwAAABkAAAAZAAAAGQAAABHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAAAZAAAAGQAAABHAAADFgAAAUcAAAJHAAABRwAAAUcAAAFHAAADRwAAAUcAAAFHAAAARwAAA0cAAABHAAACTAAAAEwAAAAWAAACRwAAABYAAAJHAAABOwAAAEcAAAJHAAABRwAAAEcAAAFHAAACRwAAAkcAAABHAAAARwAAADsAAABMAAAAFgAAAk8AAAIWAAABRwAAA0wAAABHAAABRwAAAUcAAANHAAABRwAAA0cAAABHAAADRwAAA0cAAAFHAAACRwAAABYAAABMAAAAZAAAAGQAAABMAAAATAAAAEwAAABHAAABRwAAA0cAAABHAAABRwAAAEcAAABHAAADRwAAAmQAAABkAAAAZAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAMWAAABFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABHAAAARwAAAUcAAANkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAARwAAA0wAAABHAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAAE7AAACRwAAAWQAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAAARwAAA0cAAAJkAAAAZAAAAGQAAABkAAAAUwAAAFUAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABkAAAATAAAADsAAANHAAABUwAAAFQAAABUAAAAUwAAAFUAAANTAAAAZAAAAA== 3,-2: ind: 3,-2 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABYAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAFLAAADSwAAAEMAAABoAAAAAAAAAAAAAABoAAAAWAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABAAAAAQAAAAEAAAABDAAAAaAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAVwAAAGgAAABYAAAAaAAAAGgAAABoAAAAQAAAAEAAAABAAAAAQwAAAGgAAAAAAAAAAAAAAGgAAABoAAAAWAAAAGgAAABoAAAAVwAAAFgAAABoAAAAaAAAAEAAAABAAAAAQAAAAEMAAABoAAAAAAAAAAAAAABoAAAAVwAAAFcAAABoAAAAaAAAABoAAAJoAAAAaAAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAaAAAAFcAAABXAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWQAAAVcAAABoAAAAQwAAAGgAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABZAAAAaAAAAEMAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAVwAAAGgAAABDAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAQwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAEMAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAaAAAABoAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAANHAAAARwAAAD8AAABkAAAAAAAAAAAAAABkAAAAVAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAA8AAAAPAAAADwAAAA/AAAAZAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAUwAAAGQAAABUAAAAZAAAAGQAAABkAAAAPAAAADwAAAA8AAAAPwAAAGQAAAAAAAAAAAAAAGQAAABkAAAAVAAAAGQAAABkAAAAUwAAAFQAAABkAAAAZAAAADwAAAA8AAAAPAAAAD8AAABkAAAAAAAAAAAAAABkAAAAUwAAAFMAAABkAAAAZAAAABYAAANkAAAAZAAAAGQAAABkAAAATAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAZAAAAFMAAABTAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVQAAAVMAAABkAAAAPwAAAGQAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABVAAADZAAAAD8AAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAUwAAAGQAAAA/AAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAPwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAD8AAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAZAAAABYAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABTAAAAZAAAAA== 0,2: ind: 0,2 - tiles: UAAAAFcAAABoAAAAaAAAAFcAAAABAAAAAQAAAFAAAAABAAAAAQAAAFcAAABoAAAAaAAAAGgAAABoAAAAUAAAAFAAAABoAAAAaAAAAGgAAABoAAAAVwAAAAMAAAABAAAAAQAAAAEAAAABAAAAaAAAAGgAAABoAAAAaAAAAFAAAABQAAAAaAAAAAAAAAAAAAAAaAAAAGgAAAABAAAAaAAAAAEAAAABAAAAaAAAAGgAAAAAAAAAAAAAAGgAAABQAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAFAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFgAAABLAAACZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABQAAAASwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABoAAAAUAAAAEsAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAELAAADCwAAAwsAAAMLAAACAAAAAAAAAABnAAAAaAAAAGgAAAAAAAAAAAAAAAsAAAELAAABCwAAAwsAAAELAAAACwAAAwsAAAALAAACCwAAAQsAAAELAAADCwAAAAsAAANoAAAAaAAAAGgAAAALAAACCwAAAwsAAAINAAAGCwAAAQsAAAILAAACCwAAAgsAAAANAAAFCwAAAwsAAAMKAAAASwAAAksAAAFoAAAACwAAAgsAAAMLAAAACwAAAAsAAAELAAABCwAAAQsAAAELAAACCwAAAwsAAAIKAAAACgAAAEsAAANLAAAAaAAAAAsAAAILAAABCwAAAQsAAAILAAAACwAAAQsAAAELAAAACwAAAgwAAAcLAAADCgAAAAoAAABLAAAASwAAAmgAAAALAAACCwAAAQsAAAINAAACCwAAAAsAAAELAAABCwAAAwsAAAMLAAADCwAAAgsAAAMKAAAASwAAAUsAAANoAAAACwAAAGkAAABpAAAAaQAAAGkAAAALAAACCgAAAAsAAAMLAAADCwAAAQoAAAAKAAAACgAAAA== + tiles: TAAAAFMAAABkAAAAZAAAAFMAAAABAAAAAQAAAEwAAAABAAAAAQAAAFMAAABkAAAAZAAAAGQAAABkAAAATAAAAEwAAABkAAAAZAAAAGQAAABkAAAAUwAAAAMAAAABAAAAAQAAAAEAAAABAAAAZAAAAGQAAABkAAAAZAAAAEwAAABMAAAAZAAAAAAAAAAAAAAAZAAAAGQAAAABAAAAZAAAAAEAAAABAAAAZAAAAGQAAAAAAAAAAAAAAGQAAABMAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAA0wAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFQAAABHAAACYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABMAAAARwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABkAAAATAAAAEcAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAMGAAABBgAAAwYAAAMGAAADAAAAAAAAAABjAAAAZAAAAGQAAAAAAAAAAAAAAAYAAAMGAAACBgAAAwYAAAMGAAADBgAAAwYAAAIGAAADBgAAAwYAAAMGAAABBgAAAQYAAAFkAAAAZAAAAGQAAAAGAAADBgAAAgYAAAMIAAAHBgAAAgYAAAEGAAACBgAAAQYAAAMIAAAGBgAAAwYAAAMGAAAARwAAAUcAAAFkAAAABgAAAwYAAAMGAAADBgAAAwYAAAIGAAABBgAAAwYAAAMGAAABBgAAAwYAAAEGAAAABgAAAEcAAABHAAADZAAAAAYAAAMGAAADBgAAAgYAAAIGAAACBgAAAgYAAAMGAAADBgAAAwYAAAQGAAACBgAAAAYAAABHAAADRwAAAGQAAAAGAAADBgAAAgYAAAMIAAAGBgAAAQYAAAIGAAABBgAAAgYAAAIGAAACBgAAAgYAAAIGAAAARwAAAEcAAABkAAAABgAAA2UAAABlAAAAZQAAAGUAAAAGAAACBgAAAAYAAAEGAAACBgAAAQYAAAAGAAAABgAAAA== 1,3: ind: 1,3 - tiles: CgAAAAsAAAALAAADCwAAAwsAAAALAAADCwAAAQAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAsAAAMKAAAACgAAAAsAAAMLAAAACwAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAALAAADCwAAAwsAAAELAAABCwAAAQsAAAILAAACCwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAACwAAAQsAAAALAAADCwAAAQsAAAALAAAACwAAAgsAAAELAAADAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAwAAAMLAAACCwAAAgsAAAAKAAAACgAAAAsAAAALAAABCwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAALAAADDAAABQsAAAELAAAACwAAAgoAAAAMAAADCwAAAwsAAAALAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAACwAAAwsAAAALAAADCwAAAAoAAAAKAAAACwAAAgoAAAALAAABCwAAAmcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAsAAAIKAAAACgAAAAoAAAALAAABCwAAAgoAAAAKAAAACwAAAAsAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAKAAAACgAAAAsAAAELAAAADAAAAgsAAAMKAAAACwAAAwsAAAMAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAACwAAAgsAAAILAAACCwAAAQoAAAAKAAAACwAAAAsAAAMLAAACAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAsAAAMLAAACCwAAAgsAAAMLAAADCwAAAwsAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAALAAACCwAAAwsAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BgAAAAYAAAMGAAADBgAAAwYAAAEGAAABBgAAAwAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAYAAAMGAAAABgAAAAYAAAIGAAADBgAAAQYAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAGAAABBgAAAgYAAAEGAAACBgAAAwYAAAEGAAADBgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAABgAAAwYAAAEGAAABBgAAAwYAAAEGAAADBgAAAwYAAAMGAAADAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAYAAAUGAAABBgAAAgYAAAMGAAAABgAAAAYAAAIGAAADBgAAAwAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAGAAADBgAAAwYAAAEGAAACBgAAAgYAAAAGAAAGBgAAAwYAAAMGAAABAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAABgAAAgYAAAMGAAACBgAAAwYAAAAGAAAABgAAAwYAAAAGAAABBgAAAWMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAYAAAIGAAAABgAAAAYAAAAGAAADBgAAAgYAAAAGAAAABgAAAgYAAAEAAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAGAAAABgAAAAYAAAIGAAACBgAABwYAAAEGAAAABgAAAgYAAAIAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAABgAAAwYAAAEGAAACBgAAAQYAAAAGAAAABgAAAwYAAAMGAAADAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAYAAAMGAAACBgAAAwYAAAMGAAADBgAAAgYAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAGAAABBgAAAgYAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,3: ind: 0,3 - tiles: SwAAAUsAAANoAAAAaQAAAGkAAABYAAAAWAAAAGkAAAAKAAAACwAAAwsAAAIKAAAACgAAAAsAAAELAAABCgAAAEsAAAJLAAADaAAAAGkAAABpAAAAWAAAAFgAAABpAAAACwAAAgoAAAALAAABCwAAAAsAAAMLAAAACwAAAAsAAAJLAAAASwAAAWgAAAALAAADaQAAAGkAAABpAAAAaQAAAAsAAAELAAABCwAAAAsAAAALAAABCwAAAgsAAAILAAAASwAAA0sAAANoAAAADQAABwsAAAMKAAAACgAAAAoAAAALAAADCwAAAAsAAAALAAACCwAAAwsAAAMLAAADCwAAAUsAAABLAAADaAAAAAsAAAMMAAAFCgAAAAsAAAILAAACCwAAAiwAAAAsAAAALAAAACUAAAELAAADCwAAAAsAAAMaAAAAGgAAAmgAAAALAAAACwAAAgsAAAMsAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAAJQAAAQsAAAMLAAADSwAAAEsAAAJoAAAACwAAAAsAAAILAAADLAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACUAAAMlAAACCwAAAEsAAANLAAABaAAAAAsAAAELAAADCwAAAAwAAAIsAAAALAAAACwAAAAsAAAALAAAACUAAAMLAAABCwAAAgsAAANLAAABSwAAAGgAAABoAAAAAAAAAAsAAAALAAAACwAAAAsAAAELAAABDAAAByUAAAMLAAADCgAAAAsAAAEKAAAASwAAAEsAAAFYAAAAaAAAAAAAAABnAAAAAAAAAAsAAAALAAADCwAAAgsAAAALAAACCwAAAwsAAAAMAAAACgAAAEsAAAFLAAABWAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAsAAAELAAABCwAAAgsAAAELAAAACwAAAQsAAANLAAADSwAAAVgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAQsAAAMLAAABaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: RwAAAUcAAANkAAAAZQAAAGUAAABUAAAAVAAAAGUAAAAGAAAABgAAAgYAAAMGAAAABgAAAAYAAAIGAAABBgAAAEcAAANHAAADZAAAAGUAAABlAAAAVAAAAFQAAABlAAAABgAAAgYAAAAGAAABBgAAAwYAAAEGAAACBgAAAgYAAANHAAABRwAAAGQAAAAGAAADZQAAAGUAAABlAAAAZQAAAAYAAAMGAAADBgAAAwYAAAIGAAABBgAAAgYAAAIGAAACRwAAAEcAAAJkAAAACAAABAYAAAMGAAAABgAAAAYAAAAGAAADBgAAAgYAAAEGAAADBgAAAgYAAAMGAAABBgAAAUcAAANHAAAAZAAAAAYAAAEGAAAGBgAAAAYAAAIGAAADBgAAAygAAAAoAAAAKAAAACEAAAAGAAADBgAAAwYAAAEWAAABFgAAAmQAAAAGAAABBgAAAwYAAAMoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAIQAAAgYAAAIGAAADRwAAA0cAAABkAAAABgAAAgYAAAEGAAADKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACEAAAEhAAABBgAAA0cAAABHAAABZAAAAAYAAAMGAAACBgAAAwYAAAMoAAAAKAAAACgAAAAoAAAAKAAAACEAAAEGAAACBgAAAgYAAANHAAADRwAAAWQAAABkAAAAAAAAAAYAAAIGAAACBgAAAwYAAAMGAAADBgAABiEAAAEGAAADBgAAAAYAAAMGAAAARwAAA0cAAAFUAAAAZAAAAAAAAABjAAAAAAAAAAYAAAMGAAADBgAAAwYAAAIGAAACBgAAAwYAAAEGAAAHBgAAAEcAAANHAAAAVAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAYAAAMGAAADBgAAAQYAAAMGAAADBgAAAgYAAANHAAADRwAAAVQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAgYAAAEGAAABZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,2: ind: -1,2 - tiles: SwAAAksAAAJoAAAAZQAAAWUAAAFlAAAAaAAAAFAAAABoAAAAUAAAAGgAAABXAAAAUAAAAEsAAAFYAAAASwAAAEsAAANLAAACaAAAAGUAAAJlAAACaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAFAAAABLAAAASwAAAUsAAABLAAAASwAAAhoAAAFlAAADZQAAAWgAAABYAAAAWAAAAGgAAAAAAAAAAAAAAGgAAABQAAAAUAAAAFAAAABQAAAASwAAA0sAAABoAAAAZQAAAWUAAABoAAAAWAAAAFgAAABoAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABLAAAASwAAAxoAAANLAAABSwAAA0sAAAFLAAABSwAAAmgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAASwAAAksAAAEaAAAASwAAAUsAAANLAAADSwAAA0sAAAJoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAABLAAAAGgAAAEsAAABLAAADSwAAAUsAAAFLAAADaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAADSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAA0sAAAAaAAAAGQAAABkAAAAZAAAAGQAAABkAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAFLAAACaAAAABkAAAAZAAAAGQAAABkAAAAZAAAAaAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAWgAAABoAAAAaAAAABkAAAAZAAAAaAAAAGgAAABoAAAAaAAAAFgAAABYAAAAWAAAAFgAAABYAAAASwAAAUsAAAEaAAADSwAAA0sAAANLAAACSwAAAUsAAANLAAAASwAAAksAAANLAAAASwAAAUsAAAFLAAADSwAAA0sAAANLAAAAGgAAA0sAAAFLAAADSwAAAEsAAAJLAAABSwAAA0sAAAFLAAABSwAAAEsAAABLAAACSwAAAksAAABLAAADSwAAAhoAAABLAAAASwAAAksAAAJLAAABSwAAAksAAANLAAADSwAAAUsAAAFLAAABSwAAA0sAAANLAAADSwAAAUsAAAJoAAAAWQAAA1gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADaAAAAGgAAABoAAAASwAAAQ== + tiles: RwAAAkcAAANkAAAAYQAAA2EAAABhAAABZAAAAEwAAABkAAAATAAAAGQAAABTAAAATAAAAEcAAABUAAAARwAAA0cAAAFHAAADZAAAAGEAAANhAAADZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAEwAAABHAAACRwAAA0cAAAFHAAADRwAAAhYAAABhAAAAYQAAAmQAAABUAAAAVAAAAGQAAAAAAAAAAAAAAGQAAABMAAAATAAAAEwAAABMAAAARwAAAEcAAABkAAAAYQAAAWEAAANkAAAAVAAAAFQAAABkAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABHAAABRwAAARYAAABHAAADRwAAAEcAAABHAAADRwAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAARwAAA0cAAAAWAAABRwAAAUcAAABHAAABRwAAAkcAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAEcAAANHAAACFgAAAkcAAAFHAAAARwAAAkcAAAFHAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHAAABRwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAEcAAAIWAAAAFQAAABUAAAAVAAAAFQAAABUAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEcAAAJHAAAAZAAAABUAAAAVAAAAFQAAABUAAAAVAAAAZAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAA2QAAABkAAAAZAAAABUAAAAVAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAVAAAAFQAAABUAAAARwAAAUcAAAAWAAACRwAAA0cAAABHAAADRwAAAEcAAAFHAAABRwAAAEcAAAJHAAACRwAAA0cAAAJHAAACRwAAAUcAAAJHAAABFgAAAUcAAABHAAACRwAAAkcAAANHAAACRwAAA0cAAAJHAAACRwAAAUcAAANHAAACRwAAA0cAAAFHAAADRwAAARYAAAJHAAACRwAAAkcAAAJHAAADRwAAAUcAAANHAAADRwAAAEcAAAFHAAAARwAAAkcAAABHAAADRwAAAUcAAAFkAAAAVQAAAlQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADZAAAAGQAAABkAAAARwAAAw== 4,1: ind: 4,1 - tiles: VwAAAGgAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFcAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABXAAAAaAAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAGgAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABXAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAWAAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFcAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABXAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAVwAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFcAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAANoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAASwAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAEsAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAA== + tiles: UwAAAGQAAABkAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABTAAAAZAAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAGQAAABkAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABTAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAVAAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFMAAABkAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABTAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAUwAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFMAAABkAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFUAAAJkAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAARwAAAWQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAEcAAAJkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAA== 4,0: ind: 4,0 - tiles: aAAAAGgAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABQAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFcAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABXAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAVwAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFgAAABLAAACaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABYAAAASwAAAEsAAAFoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAVwAAAGgAAABQAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFcAAABQAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABYAAAAaAAAAFAAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAVwAAAFcAAABQAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFcAAABLAAADaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABXAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAVwAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAFAAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAGQAAABkAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABMAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFMAAABkAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABTAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAUwAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFQAAABHAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABUAAAARwAAAkcAAAJkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAUwAAAGQAAABMAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFMAAABMAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABUAAAAZAAAAEwAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAUwAAAFMAAABMAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFMAAABHAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABTAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAUwAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAEwAAABkAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 4,-1: ind: 4,-1 - tiles: AAAAAAAAAABoAAAAGgAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAABoAAAJoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAABSwAAAhoAAAMaAAADGgAAAxoAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAksAAAJoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAJLAAABGgAAABoAAAEaAAACGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAACSwAAAWgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAksAAAMsAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAJLAAAALAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAADSwAAASwAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAFLAAADGgAAARoAAAIaAAADGgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAACaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAmUAAAMaAAACGgAAABoAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGUAAAFlAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABlAAABZQAAAWgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAmUAAAJoAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAABkAAAAFgAAA2QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAABYAAAFkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHAAAARwAAABYAAAMWAAADFgAAARYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAkcAAAJkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEcAAANHAAABFgAAAhYAAAAWAAADFgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHAAACRwAAA2QAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAUcAAAEoAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEcAAABHAAACKAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHAAABRwAAACgAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAUcAAAJkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEcAAAFHAAACFgAAAxYAAAIWAAADFgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAACZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAGEAAAIWAAADFgAAAhYAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGEAAABhAAADZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABhAAACYQAAA2QAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAmEAAANkAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 4,-3: ind: 4,-3 - tiles: SwAAAksAAAJoAAAAUAAAAFAAAABSAAADUgAAAFIAAAFSAAABUgAAA1AAAABLAAACSwAAAUsAAABoAAAAZwAAAEsAAANLAAADGgAAAhoAAAMaAAAAGgAAARoAAAEaAAABGgAAAhoAAAIaAAABGgAAAksAAANQAAAAaAAAAGcAAABLAAADSwAAABoAAAIaAAADGgAAAxoAAAAaAAAAGgAAABoAAAMaAAAAGgAAARoAAAFQAAAAUAAAAGgAAABnAAAASwAAAksAAABoAAAASwAAAUsAAAFLAAACUAAAAEsAAABLAAABSwAAAhoAAAEaAAADUAAAAFAAAABoAAAAZwAAAEsAAAFLAAABaAAAAEsAAAFLAAADSwAAAEsAAAJLAAACSwAAA0sAAAIaAAACGgAAA1AAAABQAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAhoAAAJoAAAAaAAAAGgAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAABoAAAEaAAABaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAAAaAAACGgAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAANoAAAAAAAAAAAAAABnAAAAAAAAAGgAAABAAAAAQAAAAEAAAABoAAAASwAAAUsAAABLAAABSwAAABoAAAEaAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQAAAAEAAAABAAAAAGgAAAUsAAAJLAAACSwAAA0sAAAMaAAAAGgAAARoAAAAaAAACGgAAABoAAAJLAAACaAAAAGgAAABAAAAAQAAAAGgAAABLAAACSwAAAhoAAAAaAAACGgAAAhoAAAEaAAADGgAAAxoAAAEaAAAASwAAAEsAAAFoAAAAaAAAAGgAAABoAAAASwAAAVAAAAAaAAACGgAAARoAAAEaAAABaAAAAGgAAABoAAAAaAAAAEsAAAJLAAAAGgAAAksAAABLAAABGgAAAEsAAANQAAAAGgAAAhoAAAEaAAACGgAAARoAAAIaAAAAGgAAAhoAAAFLAAACSwAAAhoAAABLAAAAUAAAABoAAAFLAAADSwAAAUsAAAFLAAABGgAAAxoAAAIaAAAAGgAAAhoAAAAaAAAASwAAAksAAAFoAAAAaAAAABoAAAJoAAAASwAAAksAAANLAAADSwAAA0sAAANLAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: RwAAA0cAAABkAAAATAAAAEwAAABOAAAATgAAAU4AAANOAAABTgAAA0wAAABHAAACRwAAAkcAAAFkAAAAYwAAAEcAAABHAAADFgAAAhYAAAMWAAACFgAAAxYAAAAWAAABFgAAARYAAAEWAAAAFgAAAEcAAAJMAAAAZAAAAGMAAABHAAAARwAAARYAAAAWAAAAFgAAARYAAAAWAAADFgAAAhYAAAAWAAADFgAAAhYAAAJMAAAATAAAAGQAAABjAAAARwAAA0cAAABkAAAARwAAA0cAAAFHAAADTAAAAEcAAANHAAACRwAAARYAAAAWAAABTAAAAEwAAABkAAAAYwAAAEcAAAFHAAACZAAAAEcAAAJHAAABRwAAA0cAAAFHAAADRwAAAUcAAAEWAAADFgAAAkwAAABMAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAABYAAAFkAAAAZAAAAGQAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAABYAAAIWAAABZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAAAWAAADFgAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAAA8AAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAhYAAAFkAAAAAAAAAAAAAABjAAAAAAAAAGQAAAA8AAAAPAAAADwAAABkAAAARwAAAEcAAABHAAABRwAAABYAAAIWAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAPAAAADwAAAA8AAAAFgAAAUcAAAJHAAACRwAAA0cAAAEWAAABFgAAAhYAAAIWAAABFgAAARYAAAFHAAACZAAAAGQAAAA8AAAAPAAAAGQAAABHAAADRwAAAxYAAAAWAAABFgAAARYAAAAWAAABFgAAAhYAAAEWAAADRwAAAkcAAANkAAAAZAAAAGQAAABkAAAARwAAAEwAAAAWAAABFgAAAxYAAAMWAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAACFgAAAkcAAAFHAAABFgAAAEcAAAJMAAAAFgAAARYAAAAWAAAAFgAAAhYAAAMWAAADFgAAARYAAAJHAAAARwAAARYAAAFHAAAATAAAABYAAAJHAAAARwAAA0cAAANHAAADFgAAAxYAAAIWAAADFgAAAhYAAAEWAAACRwAAA0cAAANkAAAAZAAAABYAAANkAAAARwAAAkcAAAJHAAACRwAAAkcAAABHAAACZAAAAGQAAABkAAAAZAAAAA== 4,-2: ind: 4,-2 - tiles: SwAAAWgAAABoAAAASwAAAUsAAAJoAAAAaAAAAEsAAAFLAAAASwAAA0sAAANoAAAAaAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAQAAAAEAAAABAAAAAQAAAAGgAAABoAAAAQAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAAEAAAABoAAAAaAAAAGgAAABoAAAAQAAAAEAAAABAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAEsAAANAAAAAaAAAAGgAAABoAAAAaAAAAEAAAABAAAAAQAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAQAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAGgAAA2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: RwAAA2QAAABkAAAARwAAA0cAAAJkAAAAZAAAAEcAAAFHAAABRwAAAEcAAAJkAAAAZAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAPAAAADwAAAA8AAAAPAAAAGQAAABkAAAAPAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAABkAAAARwAAAzwAAABkAAAAZAAAAGQAAABkAAAAPAAAADwAAAA8AAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAEcAAAA8AAAAZAAAAGQAAABkAAAAZAAAADwAAAA8AAAAPAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAPAAAAGQAAABkAAAAZAAAAGQAAABkAAAAPAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAFgAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,-3: ind: 3,-3 - tiles: SwAAAUsAAAJLAAACSwAAA2gAAAApAAAAKQAAACkAAAApAAAAKQAAAGgAAABLAAACSwAAAksAAAAbAAADSwAAAEsAAABLAAADSwAAAksAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAIbAAACGwAAABsAAABLAAADSwAAAEsAAABLAAABSwAAAksAAAMaAAABVQAAAFUAAANVAAACGgAAA0sAAAFLAAADSwAAARsAAAFLAAADSwAAAUsAAANLAAADSwAAA0sAAAJLAAADGgAAAVUAAAJVAAADVQAAAhoAAAFLAAABSwAAAUsAAAFLAAAASwAAAUsAAANLAAABSwAAAEsAAABLAAADSwAAAWgAAABoAAAAaAAAABoAAANoAAAASwAAA0sAAABLAAACSwAAAUsAAABLAAACSwAAA0sAAABLAAACSwAAAEsAAAFoAAAAGgAAABoAAAIaAAADaAAAAFgAAABoAAAASwAAAUsAAANLAAACSwAAAEsAAAFLAAACSwAAA0sAAAJLAAADGgAAABoAAAAaAAADGgAAAWgAAABoAAAAaAAAABoAAAAaAAACaAAAAEsAAAJLAAADSwAAAEsAAANLAAACSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAFkAAAJLAAACSwAAAGgAAABLAAABSwAAA0sAAANLAAADSwAAAksAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABZAAACSwAAAksAAABoAAAASwAAAksAAANLAAAASwAAAUsAAANLAAACaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAWQAAAksAAAFLAAABaAAAAEsAAABLAAACSwAAA0sAAANLAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADGgAAA2gAAABoAAAAaAAAAFgAAABoAAAAaAAAAFkAAAFZAAADWQAAA2gAAABoAAAAaAAAAGgAAABLAAADSwAAA0sAAAFLAAADSwAAA2gAAABoAAAAVwAAAGgAAABZAAABVwAAAFkAAANoAAAAQAAAAEAAAABAAAAASwAAAEsAAAJLAAAASwAAA2gAAABLAAABaAAAAFcAAABoAAAAWQAAAlkAAAJZAAABaAAAAEAAAABAAAAAQAAAAEsAAAFLAAADSwAAA0sAAABYAAAAWAAAAGgAAABXAAAAaAAAAGgAAABYAAAAaAAAAGgAAABAAAAAQAAAAEAAAABLAAADSwAAAUsAAABLAAADaAAAAGgAAABZAAABWQAAAVgAAABoAAAAaAAAAGgAAABoAAAAQAAAAEAAAABAAAAASwAAAEsAAAJLAAABSwAAAQ== + tiles: RwAAAUcAAABHAAABRwAAAWQAAAAlAAAAJQAAACUAAAAlAAAAJQAAAGQAAABHAAABRwAAAkcAAAEXAAACRwAAA0cAAAJHAAACRwAAAkcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAIXAAACFwAAAhcAAAFHAAAARwAAA0cAAAFHAAABRwAAA0cAAAMWAAAAUQAAAFEAAABRAAAAFgAAAkcAAAFHAAADRwAAARcAAAFHAAABRwAAAEcAAAJHAAABRwAAAkcAAANHAAABFgAAAVEAAANRAAABUQAAABYAAAJHAAAARwAAAUcAAABHAAAARwAAAEcAAAJHAAABRwAAA0cAAAJHAAABRwAAAWQAAABkAAAAZAAAABYAAABkAAAARwAAA0cAAANHAAADRwAAAEcAAANHAAAARwAAA0cAAANHAAABRwAAA0cAAANkAAAAFgAAAhYAAAAWAAADZAAAAFQAAABkAAAARwAAAUcAAABHAAAARwAAA0cAAABHAAACRwAAA0cAAAFHAAABFgAAARYAAAMWAAADFgAAAWQAAABkAAAAZAAAABYAAAIWAAABZAAAAEcAAAJHAAADRwAAAUcAAABHAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFUAAANHAAABRwAAAmQAAABHAAACRwAAAkcAAANHAAABRwAAA0cAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABVAAAARwAAAEcAAABkAAAARwAAAUcAAAJHAAADRwAAA0cAAANHAAADZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAVQAAAEcAAABHAAAAZAAAAEcAAAFHAAAARwAAAUcAAAFHAAABZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACFgAAAWQAAABkAAAAZAAAAFQAAABkAAAAZAAAAFUAAAJVAAADVQAAAWQAAABkAAAAZAAAAGQAAABHAAABRwAAAkcAAAFHAAADRwAAA2QAAABkAAAAUwAAAGQAAABVAAADUwAAAFUAAAJkAAAAPAAAADwAAAA8AAAARwAAAEcAAAJHAAADRwAAAWQAAABHAAADZAAAAFMAAABkAAAAVQAAAlUAAAJVAAAAZAAAADwAAAA8AAAAPAAAAEcAAANHAAACRwAAAEcAAAFUAAAAVAAAAGQAAABTAAAAZAAAAGQAAABUAAAAZAAAAGQAAAA8AAAAPAAAADwAAABHAAAARwAAA0cAAANHAAADZAAAAGQAAABVAAABVQAAAVQAAABkAAAAZAAAAGQAAABkAAAAPAAAADwAAAA8AAAARwAAAEcAAABHAAAARwAAAg== 3,-4: ind: 3,-4 - tiles: AAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAFgAAABZAAADaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAFgAAABXAAAAWAAAAGgAAABXAAAAVwAAAFcAAABXAAAAGgAAAVAAAABQAAAAaAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABLAAAAUAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAABoAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABLAAADSwAAAUsAAAJLAAAAGgAAAEsAAANLAAADSwAAAEsAAAFoAAAAaAAAAAAAAABnAAAAZwAAAGcAAABnAAAASwAAAksAAAJLAAABSwAAARoAAANQAAAAUAAAAFAAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAEsAAANLAAAASwAAAUsAAAJoAAAAaAAAABoAAAAaAAACaAAAAAAAAAAAAAAAAAAAAGgAAAAaAAADGgAAAhoAAAJLAAADSwAAAksAAABLAAACSwAAAmgAAABXAAAAWAAAAGgAAAAAAAAAAAAAAGgAAABoAAAAQwAAAFgAAABDAAAASwAAAEsAAANLAAADSwAAAUsAAAJoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAaAAACQwAAAEMAAABYAAAAQwAAAEsAAAJLAAACSwAAAEsAAAJLAAAASwAAA2gAAAAAAAAAAAAAAAAAAABoAAAAaAAAAEMAAABDAAAAQwAAAEMAAABLAAACSwAAAksAAANLAAADSwAAAksAAAFoAAAAAAAAAAAAAAAAAAAAGgAAAUMAAABYAAAAQwAAAFgAAABDAAAASwAAAEsAAAJLAAABSwAAAEsAAANLAAACaAAAAGcAAAAAAAAAAAAAABoAAANYAAAAQwAAAFgAAABDAAAAWAAAAEsAAAFLAAAASwAAAksAAAJLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAA2gAAABLAAABSwAAA0sAAANLAAADaAAAAGgAAAASAAAAEgAAABIAAAASAAAAaAAAAEsAAANLAAADSwAAAUsAAANLAAADaAAAABoAAAMaAAADaAAAAGgAAAApAAAAKQAAACkAAAApAAAAKQAAABoAAANLAAABSwAAAEsAAAFLAAABSwAAAg== + tiles: AAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAZAAAAFQAAABVAAADZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAFQAAABTAAAAVAAAAGQAAABTAAAAUwAAAFMAAABTAAAAFgAAAkwAAABMAAAAZAAAAEwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABHAAAATAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAABYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABHAAADRwAAA0cAAANHAAAAFgAAAkcAAANHAAAARwAAAEcAAAFkAAAAZAAAAAAAAABjAAAAYwAAAGMAAABjAAAARwAAA0cAAABHAAACRwAAABYAAABMAAAATAAAAEwAAABkAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAEcAAABHAAACRwAAAUcAAAFkAAAAZAAAABYAAAAWAAABZAAAAAAAAAAAAAAAAAAAAGQAAAAWAAAAFgAAAxYAAAFHAAABRwAAAUcAAABHAAACRwAAA2QAAABTAAAAVAAAAGQAAAAAAAAAAAAAAGQAAABkAAAAPwAAAFQAAAA/AAAARwAAAEcAAAJHAAAARwAAAkcAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAWAAADPwAAAD8AAABUAAAAPwAAAEcAAABHAAACRwAAAUcAAAJHAAADRwAAAmQAAAAAAAAAAAAAAAAAAABkAAAAZAAAAD8AAAA/AAAAPwAAAD8AAABHAAAARwAAAEcAAABHAAADRwAAAUcAAABkAAAAAAAAAAAAAAAAAAAAFgAAAD8AAABUAAAAPwAAAFQAAAA/AAAARwAAAEcAAABHAAACRwAAA0cAAAFHAAADZAAAAGMAAAAAAAAAAAAAABYAAAFUAAAAPwAAAFQAAAA/AAAAVAAAAEcAAAFHAAABRwAAAkcAAANHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAWQAAABHAAADRwAAAkcAAAFHAAABZAAAAGQAAAAOAAAADgAAAA4AAAAOAAAAZAAAAEcAAANHAAACRwAAAEcAAAFHAAADZAAAABYAAAAWAAACZAAAAGQAAAAlAAAAJQAAACUAAAAlAAAAJQAAABYAAAJHAAADRwAAAEcAAANHAAAARwAAAQ== 4,-4: ind: 4,-4 - tiles: WAAAAGgAAABoAAAAUAAAAFcAAABoAAAAaAAAAGgAAABoAAAACwAAAwsAAAALAAADCwAAAgsAAAALAAACCwAAAmgAAABoAAAAaAAAAFgAAABYAAAAaAAAAGgAAABXAAAAaAAAAAsAAAILAAADCgAAAAoAAAAKAAAACwAAAgsAAABoAAAAaAAAAFkAAAJoAAAAVwAAAFcAAABXAAAAaAAAAGgAAAALAAACDAAABgsAAAELAAAACgAAAAsAAAELAAADZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAABAAAAgsAAAELAAADCwAAAQoAAAAKAAAACwAAAWcAAAAAAAAAAAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAAQAAAALAAACCgAAAAsAAAMLAAAACwAAAAsAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAALAAADCwAAAgsAAAALAAACZwAAAAAAAAAAAAAAAAAAAGgAAABXAAAAaAAAAGgAAABYAAAAWQAAAVkAAAFoAAAAaAAAAAsAAAILAAAACwAAAGgAAAAAAAAAAAAAAAAAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAAALAAACCwAAAQsAAABoAAAAaAAAAAAAAAAAAAAAaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAWQAAAGgAAABoAAAACwAAAwwAAAQLAAADQwAAABoAAAMAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAAoAAAALAAAACwAAAUMAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAKAAAACwAAAAsAAABYAAAAQwAAABoAAANnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAWAAAAGgAAABoAAAACgAAAAwAAAcLAAAAQwAAAFgAAAAaAAADZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFgAAABoAAAAaAAAAAoAAAALAAABCwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAACwAAA2cAAABLAAADSwAAAWgAAABQAAAASwAAAlIAAAFSAAACUgAAAVIAAAJSAAADUAAAAEsAAAJQAAAAaAAAAAsAAAFnAAAASwAAAksAAAIaAAABSwAAA1AAAABSAAAAUgAAAVIAAANSAAACUgAAAlAAAABLAAABSwAAA2gAAABoAAAAZwAAAA== + tiles: VAAAAGQAAABkAAAATAAAAFMAAABkAAAAZAAAAGQAAABkAAAABgAAAQYAAAIGAAADBgAAAwYAAAIGAAADBgAAAmQAAABkAAAAZAAAAFQAAABUAAAAZAAAAGQAAABTAAAAZAAAAAYAAAIGAAABBgAAAAYAAAAGAAAABgAAAwYAAANkAAAAZAAAAFUAAAJkAAAAUwAAAFMAAABTAAAAZAAAAGQAAAAGAAADBgAABAYAAAMGAAADBgAAAAYAAAMGAAABYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAABgAAAQYAAAMGAAADBgAAAwYAAAAGAAAABgAAAmMAAAAAAAAAAAAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAAYAAAAGAAACBgAAAAYAAAMGAAADBgAAAwYAAAJjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAGAAABBgAAAgYAAAMGAAACYwAAAAAAAAAAAAAAAAAAAGQAAABTAAAAZAAAAGQAAABUAAAAVQAAAFUAAAJkAAAAZAAAAAYAAAMGAAACBgAAA2QAAAAAAAAAAAAAAAAAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAAAGAAADBgAAAgYAAANkAAAAZAAAAAAAAAAAAAAAZAAAAGQAAABTAAAAUwAAAFMAAABkAAAAVQAAAGQAAABkAAAABgAAAwYAAAMGAAACPwAAABYAAAMAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAAYAAAAGAAADBgAAAz8AAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAGAAAABgAAAgYAAANUAAAAPwAAABYAAANjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAVAAAAGQAAABkAAAABgAAAAYAAAcGAAADPwAAAFQAAAAWAAACYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFQAAABkAAAAZAAAAAYAAAAGAAADBgAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAABgAAA2MAAABHAAADRwAAAGQAAABMAAAARwAAAU4AAABOAAAATgAAAU4AAANOAAACTAAAAEcAAAJMAAAAZAAAAAYAAANjAAAARwAAA0cAAAIWAAADRwAAA0wAAABOAAADTgAAAk4AAAJOAAABTgAAAEwAAABHAAABRwAAAWQAAABkAAAAYwAAAA== -3,-1: ind: -3,-1 - tiles: GgAAAmgAAAAaAAADSwAAAmgAAABLAAAASwAAAEsAAAJLAAACaAAAAEsAAABLAAAASwAAAUsAAANoAAAAUAAAABoAAABoAAAAGgAAAUsAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAAGgAAA2gAAABoAAAAaAAAAFAAAAAaAAACaAAAABoAAAFLAAAAaAAAAFYAAABWAAADaAAAAFAAAABQAAAASwAAAFAAAABLAAAASwAAAmgAAABQAAAAGgAAA2gAAAAaAAABSwAAA2gAAABWAAACVgAAAGgAAABQAAAAUAAAAEsAAANLAAAASwAAA0sAAANoAAAASwAAAxoAAANoAAAAGgAAAVAAAAAaAAACVgAAAVYAAAAaAAACUAAAAFAAAABSAAACUgAAAEsAAAFLAAABGgAAAUsAAAMaAAAAaAAAABoAAANLAAAAGgAAA1YAAAFWAAADGgAAA0sAAANLAAADUgAAAlIAAABQAAAASwAAARoAAABLAAADGgAAA2gAAAAaAAACSwAAAGgAAABWAAAAVgAAA2gAAABLAAAASwAAA1IAAANSAAABSwAAA0sAAANoAAAASwAAABoAAAAaAAADGgAAAksAAANoAAAASwAAAUsAAAFoAAAASwAAAUsAAABSAAACUgAAAksAAANLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFYAAABWAAACaAAAAEsAAABLAAACUgAAA1IAAAJLAAAASwAAA2gAAABIAAAAVQAAAlUAAAFVAAABVQAAARoAAABWAAABVgAAAhoAAABLAAADSwAAAVIAAABSAAACSwAAAUsAAANoAAAAaAAAAFUAAAJVAAACVQAAA1UAAAIaAAAAVgAAAlYAAAEaAAACSwAAA0sAAAJLAAADSwAAAUsAAABLAAABaAAAAEgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAUAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFkAAABYAAAAaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAANLAAACGgAAAksAAAFLAAABSwAAAUsAAAFLAAAASwAAA0sAAABLAAADSwAAAEsAAANLAAACSwAAAQ== + tiles: FgAAAGQAAAAWAAAARwAAAWQAAABHAAACRwAAA0cAAAFHAAACZAAAAEcAAANHAAABRwAAAkcAAAJkAAAATAAAABYAAANkAAAAFgAAAkcAAABkAAAAZAAAABYAAABkAAAAZAAAAGQAAABkAAAAFgAAAWQAAABkAAAAZAAAAEwAAAAWAAACZAAAABYAAABHAAABZAAAAFIAAANSAAACZAAAAEwAAABMAAAARwAAAEwAAABHAAAARwAAAmQAAABMAAAAFgAAAGQAAAAWAAACRwAAAWQAAABSAAADUgAAAmQAAABMAAAATAAAAEcAAAFHAAADRwAAA0cAAANkAAAARwAAARYAAAJkAAAAFgAAAUwAAAAWAAADUgAAAlIAAAMWAAACTAAAAEwAAABOAAAATgAAAUcAAANHAAACFgAAAEcAAAIWAAABZAAAABYAAABHAAACFgAAAFIAAAFSAAACFgAAAUcAAAJHAAAATgAAAU4AAAJMAAAARwAAAxYAAABHAAACFgAAA2QAAAAWAAACRwAAAGQAAABSAAADUgAAAGQAAABHAAABRwAAA04AAAJOAAABRwAAAUcAAANkAAAARwAAABYAAAMWAAABFgAAAkcAAAJkAAAARwAAA0cAAABkAAAARwAAAkcAAAFOAAABTgAAAkcAAAJHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFIAAANSAAAAZAAAAEcAAANHAAADTgAAAk4AAAJHAAABRwAAAWQAAABEAAAAUQAAAlEAAAFRAAACUQAAABYAAANSAAADUgAAAhYAAANHAAACRwAAAE4AAAJOAAAARwAAAUcAAAFkAAAAZAAAAFEAAANRAAABUQAAAlEAAAIWAAAAUgAAAlIAAAAWAAAARwAAAUcAAANHAAADRwAAAUcAAABHAAABZAAAAEQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAATAAAAEwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAEwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFUAAABUAAAAZAAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAANHAAADFgAAAkcAAAJHAAADRwAAAkcAAAJHAAAARwAAA0cAAAFHAAADRwAAA0cAAAJHAAABRwAAAA== -3,-2: ind: -3,-2 - tiles: aAAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAVcAAABXAAAAaAAAAFAAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABXAAAAaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAWQAAAlkAAABXAAAAaAAAAFAAAABQAAAAaAAAAGgAAABLAAACaAAAAGgAAABYAAAAWAAAAGgAAABoAAAAaAAAAFgAAABoAAAAWAAAAGgAAABQAAAAUAAAAFcAAABoAAAASwAAAFAAAABoAAAAaAAAAFgAAABXAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAABoAAAJLAAABSwAAAFgAAABoAAAAVwAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFcAAABoAAAAaAAAAEsAAABLAAADUAAAAEsAAAFQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAADkAAABLAAACVwAAAFgAAABXAAAAWAAAABoAAAJYAAAAWAAAAGgAAABoAAAAUAAAAGgAAABoAAAAVwAAAGgAAAA5AAAASwAAAFcAAABYAAAAVwAAAFgAAABoAAAAWAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFXAAAASwAAAVcAAABLAAAAaAAAAFgAAABYAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABLAAADSwAAAEsAAAJLAAADUAAAAGgAAABoAAAAGgAAAWgAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAABoAAAAGgAAAWgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAABLAAABSwAAAGgAAABLAAABSwAAAksAAAFLAAAAaAAAAEsAAAMaAAACGgAAAhoAAAJLAAACaAAAAEsAAANLAAACSwAAAUsAAABoAAAASwAAA0sAAANLAAADSwAAARoAAANLAAAAGgAAAWgAAAAaAAABSwAAAGgAAABLAAADSwAAAksAAABLAAACaAAAAEsAAANLAAACSwAAA0sAAAEaAAABSwAAAw== + tiles: ZAAAAGQAAABkAAAATAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAFMAAABTAAAAZAAAAEwAAABkAAAAZAAAAFMAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABTAAAAZAAAABYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAVQAAAVUAAAFTAAAAZAAAAEwAAABMAAAAZAAAAGQAAABHAAADZAAAAGQAAABUAAAAVAAAAGQAAABkAAAAZAAAAFQAAABkAAAAVAAAAGQAAABMAAAATAAAAFMAAABkAAAARwAAAUwAAABkAAAAZAAAAFQAAABTAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAABYAAAFHAAAARwAAAlQAAABkAAAAUwAAAGQAAABkAAAATAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAATAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAFMAAABkAAAAZAAAAEcAAAFHAAADTAAAAEcAAABMAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAADUAAABHAAADUwAAAFQAAABTAAAAVAAAABYAAAJUAAAAVAAAAGQAAABkAAAATAAAAGQAAABkAAAAUwAAAGQAAAA1AAAARwAAA1MAAABUAAAAUwAAAFQAAABkAAAAVAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFTAAAARwAAA1MAAABHAAABZAAAAFQAAABUAAAAZAAAAGQAAABHAAABRwAAA0cAAABHAAABRwAAAWQAAABHAAAARwAAA0cAAAFHAAACTAAAAGQAAABkAAAAFgAAA2QAAABkAAAAZAAAAEcAAAFHAAAARwAAAEcAAANkAAAAFgAAAWQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAANHAAABRwAAAGQAAABHAAABRwAAAEcAAANHAAADZAAAAEcAAAEWAAADFgAAARYAAABHAAAAZAAAAEcAAABHAAAARwAAAUcAAAFkAAAARwAAAkcAAABHAAADRwAAAxYAAANHAAAAFgAAA2QAAAAWAAABRwAAAmQAAABHAAAARwAAAEcAAAFHAAACZAAAAEcAAAJHAAAARwAAAEcAAAIWAAAARwAAAA== 2,-6: ind: 2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAUAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAEsAAABoAAAAGgAAAmgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAABGgAAAWgAAABLAAABGgAAAhoAAAEaAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAhoAAAMaAAACUwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAFAAAAAsAAAALAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAALAAAACwAAABLAAACLAAAACwAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAACwAAAAsAAAASwAAACwAAAAsAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAsAAAALAAAAEsAAAAsAAAALAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAALAAAACwAAABLAAACaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAUAAAABoAAAEaAAABGgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAEaAAADGgAAAFMAAAFoAAAAGgAAAmgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAGgAAA2gAAABLAAABaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAAw== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAATAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAEcAAABkAAAAFgAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHAAAAFgAAAWQAAABHAAAAFgAAARYAAAMWAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAAAWAAABTwAAA2QAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEwAAAAoAAAAKAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAKAAAACgAAABHAAAAKAAAACgAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAACgAAAAoAAAARwAAAigAAAAoAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAoAAAAKAAAAEcAAAAoAAAAKAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAKAAAACgAAABHAAADZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAATAAAABYAAAAWAAABFgAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAIWAAADFgAAAE8AAANkAAAAFgAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAFgAAA2QAAABHAAADZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAARwAAAA== 3,-6: ind: 3,-6 - tiles: GgAAAmgAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAACaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAA1AAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAAABQAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABTAAAASwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAlMAAAEaAAABGgAAAxoAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAAANLAAACaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABTAAACUAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAA0sAAAJoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAAABLAAABaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABTAAAASwAAA2gAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAEsAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAAAJTAAAAGgAAAxoAAAIaAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABTAAADUAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAEsAAANoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: FgAAAGQAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAFkAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAACZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAA0wAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAANMAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAADRwAAAWQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAk8AAAAWAAADFgAAAhYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAAJHAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAADTAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAA0cAAAJkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAABHAAADZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAACRwAAA2QAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAkcAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAANPAAADFgAAAxYAAAMWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAATAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAUcAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,-5: ind: 3,-5 - tiles: UwAAAEsAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAAABLAAABaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABTAAACSwAAAWgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAAABLAAACaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABTAAADUAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAUwAAA0sAAABQAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAFMAAAJQAAAASwAAA2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABLAAADSwAAA0sAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAFkAAABXAAAAaAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWQAAAVgAAABXAAAAaAAAAGgAAABYAAAAWAAAAFgAAABQAAAAWAAAAFgAAABYAAAAaAAAAFcAAABYAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAFkAAANoAAAAaAAAAFkAAANYAAAAWQAAA2gAAABoAAAAaAAAAFgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABQAAAAUAAAAFAAAABYAAAAWAAAAFgAAABoAAAAWAAAAFgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: TwAAAEcAAANkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAABHAAACZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAADRwAAAmQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAARYAAAJkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAANHAAADZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAABTAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAATwAAAkcAAAJMAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAE8AAANMAAAARwAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABHAAAARwAAAEcAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAFUAAANTAAAAZAAAAGQAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVQAAAVQAAABTAAAAZAAAAGQAAABUAAAAVAAAAFQAAABMAAAAVAAAAFQAAABUAAAAZAAAAFMAAABUAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAFUAAANkAAAAZAAAAFUAAAJUAAAAVQAAA2QAAABkAAAAZAAAAFQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABMAAAATAAAAEwAAABUAAAAVAAAAFQAAABkAAAAVAAAAFQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== 4,-5: ind: 4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAgsAAAELAAADDQAABgsAAAELAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAwsAAAILAAADCwAAAwsAAAILAAAACwAAAAsAAAALAAADCwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAw0AAAEKAAAACwAAAgsAAAMLAAACCwAAAgsAAAILAAABCwAAAQsAAAILAAADAAAAAAAAAAAAAAAACwAAAgsAAAMLAAABCwAAAQsAAAALAAACCwAAAAsAAAALAAABCwAAAAsAAAILAAAACwAAAAsAAAMAAAAAAAAAAGgAAAAKAAAACgAAAGgAAAAaAAADaAAAAAsAAAALAAAACwAAAwsAAAELAAABCwAAAgsAAAMLAAAACwAAAAAAAABoAAAAaAAAAAsAAANoAAAAGgAAAGgAAAALAAACCwAAAw0AAAMLAAABCwAAAgoAAAALAAAACwAAAgsAAAILAAAAWAAAAGgAAABoAAAAaAAAABoAAAJoAAAAaAAAAGgAAAAKAAAACwAAAgsAAAILAAABCgAAAAsAAAALAAABCwAAAmgAAABoAAAAWAAAAGgAAABQAAAAUAAAAFAAAABoAAAACwAAAgsAAAILAAABDQAAAwsAAAELAAACCwAAAQsAAAJoAAAAaAAAAFkAAAJZAAACVwAAAFkAAABQAAAAaAAAAAsAAAEKAAAACwAAAAsAAAALAAADCgAAAAwAAAELAAACVwAAAGgAAABQAAAAaAAAAFcAAABYAAAAWQAAA2gAAAALAAACCwAAAgsAAAILAAAACwAAAA0AAAYLAAADCwAAAQ== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAgYAAAIGAAACCAAABwYAAAIGAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAgYAAAMGAAADBgAAAwYAAAMGAAADBgAAAwYAAAMGAAADBgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAggAAAMGAAAABgAAAQYAAAIGAAADBgAAAwYAAAEGAAADBgAAAwYAAAIGAAABAAAAAAAAAAAAAAAABgAAAQYAAAIGAAACBgAAAwYAAAIGAAADBgAAAQYAAAMGAAACBgAAAgYAAAIGAAADBgAAAwYAAAIAAAAAAAAAAGQAAAAGAAAABgAAAGQAAAAWAAADZAAAAAYAAAMGAAADBgAAAQYAAAMGAAADBgAAAwYAAAIGAAABBgAAAwAAAABkAAAAZAAAAAYAAAJkAAAAFgAAAGQAAAAGAAADBgAAAggAAAUGAAABBgAAAQYAAAAGAAACBgAAAgYAAAMGAAACVAAAAGQAAABkAAAAZAAAABYAAANkAAAAZAAAAGQAAAAGAAAABgAAAwYAAAMGAAADBgAAAAYAAAMGAAADBgAAA2QAAABkAAAAVAAAAGQAAABMAAAATAAAAEwAAABkAAAABgAAAgYAAAIGAAADCAAABQYAAAMGAAACBgAAAgYAAAFkAAAAZAAAAFUAAAFVAAADUwAAAFUAAANMAAAAZAAAAAYAAAMGAAAABgAAAQYAAAEGAAACBgAAAAYAAAQGAAADUwAAAGQAAABMAAAAZAAAAFMAAABUAAAAVQAAA2QAAAAGAAADBgAAAQYAAAMGAAACBgAAAwgAAAQGAAADBgAAAg== -3,-3: ind: -3,-3 - tiles: aAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAFQAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAADgAAAEsAAANLAAABSwAAAWgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAEsAAABLAAADSwAAAksAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAFAAAABLAAACaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAEsAAAJLAAABSwAAAmgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAFLAAABSwAAAWgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAANLAAACSwAAAEsAAANLAAABSwAAA0sAAAAaAAADSwAAAhoAAAEaAAADGgAAA2gAAABoAAAAaAAAAGgAAAAaAAADGgAAAxoAAAMaAAACaAAAAEsAAAFLAAABGgAAAUsAAAEaAAAAGgAAABoAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABXAAAAVwAAAGgAAABLAAABaAAAAGgAAABoAAAASwAAA2gAAABLAAADaAAAAFcAAABXAAAAVwAAAFcAAABoAAAAVwAAAGgAAABoAAAAUAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAEsAAAFoAAAAAAAAAGgAAABLAAAAWAAAAEsAAAJoAAAASwAAA0sAAABLAAAASwAAAEsAAABLAAAAaAAAAGgAAAAaAAACaAAAAGcAAABoAAAAWAAAAGgAAABYAAAAaAAAAEsAAAJLAAAASwAAAEsAAAFQAAAASwAAAWgAAABLAAABSwAAAGgAAAAAAAAAGgAAA0sAAAFYAAAASwAAAGgAAABLAAABSwAAA1AAAABQAAAASwAAAEsAAAMaAAAAUAAAAEsAAAFoAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAFAAAABLAAADSwAAAUsAAANLAAABGgAAAUsAAAJLAAACaAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAACSwAAAEsAAAJLAAAASwAAA2gAAABLAAADSwAAAQ== + tiles: ZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAABMAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAACgAAAEcAAABHAAACRwAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAEcAAANHAAAARwAAA0cAAANkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAADRwAAAUwAAABHAAADZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAUcAAAFHAAABRwAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAAFHAAABRwAAAmQAAABkAAAAZAAAABYAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAABHAAABRwAAAUcAAABHAAADRwAAAUcAAAIWAAADRwAAARYAAAIWAAACFgAAAWQAAABkAAAAZAAAAGQAAAAWAAAAFgAAAhYAAAIWAAADZAAAAEcAAAJHAAABFgAAAkcAAAAWAAACFgAAAxYAAAFkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAUwAAAGQAAABTAAAAUwAAAGQAAABHAAABZAAAAGQAAABkAAAARwAAA2QAAABHAAAAZAAAAFMAAABTAAAAUwAAAFMAAABkAAAAUwAAAGQAAABkAAAATAAAAGQAAAAAAAAAZAAAAGQAAABkAAAAFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAEcAAANkAAAAAAAAAGQAAABHAAACVAAAAEcAAANkAAAARwAAAUcAAANHAAAARwAAAUcAAANHAAAAZAAAAGQAAAAWAAAAZAAAAGMAAABkAAAAVAAAAGQAAABUAAAAZAAAAEcAAAFHAAABRwAAAEcAAAJMAAAARwAAAWQAAABHAAAARwAAAWQAAAAAAAAAFgAAAkcAAABUAAAARwAAAmQAAABHAAADRwAAA0wAAABMAAAARwAAA0cAAAIWAAADTAAAAEcAAAFkAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkwAAABHAAADRwAAAEcAAANHAAADFgAAAUcAAAJHAAAAZAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAAARwAAA0cAAAFHAAABRwAAAGQAAABHAAAARwAAAg== -3,-4: ind: -3,-4 - tiles: aAAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABYAAAAaAAAADkAAAA5AAAAGgAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAASwAAAWgAAABoAAAAaAAAAGgAAABnAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAg4AAABoAAAAaAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAANLAAAAUAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAABSwAAAVAAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAA2gAAABQAAAASwAAA0sAAABLAAADaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAJoAAAASwAAAEsAAAFLAAACSwAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAADaAAAAGgAAABLAAABSwAAAEsAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAADgAAAEsAAAJLAAADaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAACSwAAAWgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADUAAAAEsAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAFLAAAAaAAAAA== + tiles: ZAAAAEcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAZAAAADUAAAA1AAAAFgAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEwAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABkAAAARwAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAQoAAABkAAAAZAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAJHAAACTAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAACRwAAAEwAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAmQAAABMAAAARwAAA0cAAABHAAADZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAABkAAAARwAAAEcAAAJHAAAARwAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAAAZAAAAGQAAABHAAABRwAAAUcAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAACgAAAEcAAAFHAAACZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAADRwAAAWQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACTAAAAEcAAAJkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAAJHAAABZAAAAA== -4,-3: ind: -4,-3 - tiles: AAAAAAAAAABnAAAAAAAAAAAAAABoAAAAWQAAAFcAAABYAAAAWAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAaAAACGgAAA2cAAABnAAAAZwAAAGgAAABXAAAAUAAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFAAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFcAAABQAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABXAAAAVwAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAUAAAAFcAAABoAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABQAAAAaAAAAGgAAABoAAAAZwAAAGgAAABLAAABUAAAAEsAAANnAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABLAAACSwAAAEsAAABLAAABaAAAAGcAAABoAAAAUAAAAEsAAANLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWQAAA0sAAABLAAADSwAAAmgAAABoAAAAaAAAAEsAAANLAAADaAAAAFgAAABXAAAAWAAAAFcAAABYAAAAGgAAAUsAAAJQAAAASwAAAksAAAIaAAACVwAAABoAAAJLAAACUAAAAGgAAABXAAAAWAAAAFcAAABYAAAAVwAAABoAAAFLAAADSwAAAFAAAABLAAAAGgAAA1cAAAAaAAABSwAAAUsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAANQAAAAUAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAFcAAABXAAAAVwAAAFAAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABXAAAAVwAAAFcAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: AAAAAAAAAABjAAAAAAAAAAAAAABkAAAAVQAAAlMAAABUAAAAVAAAAGQAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAWAAAAFgAAAmMAAABjAAAAYwAAAGQAAABTAAAATAAAAGQAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAEwAAABkAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFMAAABMAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABTAAAAUwAAAGQAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAATAAAAFMAAABkAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABMAAAAZAAAAGQAAABkAAAAYwAAAGQAAABHAAADTAAAAEcAAANjAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABHAAAARwAAAkcAAABHAAAAZAAAAGMAAABkAAAATAAAAEcAAABHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVQAAAEcAAANHAAACRwAAAGQAAABkAAAAZAAAAEcAAABHAAAAZAAAAFQAAABTAAAAVAAAAFMAAABUAAAAFgAAA0cAAANMAAAARwAAA0cAAAAWAAADUwAAABYAAAFHAAADTAAAAGQAAABTAAAAVAAAAFMAAABUAAAAUwAAABYAAAFHAAACRwAAAUwAAABHAAADFgAAAFMAAAAWAAACRwAAAkcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAJMAAAATAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAFMAAABTAAAAUwAAAEwAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABTAAAAUwAAAFMAAABMAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== -4,-4: ind: -4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAFcAAABXAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABLAAABSwAAAUsAAANoAAAAaAAAAGgAAABZAAACaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAWAAAAFgAAABYAAAAaAAAAEsAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAABnAAAAaAAAAFgAAABYAAAAWAAAAEsAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGgAAABYAAAAWAAAAFgAAABoAAAASwAAAxoAAAAaAAAAGgAAA2cAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAABoAAAAUAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABXAAAAaAAAAGcAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAABnAAAAGgAAABoAAAEaAAADVwAAAFcAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAZwAAAGgAAABoAAAAaAAAAFAAAABXAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABXAAAAVwAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAABnAAAAAAAAAAAAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAFcAAABXAAAAWAAAAFgAAABoAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABXAAAAUAAAAFgAAABYAAAAaAAAAAAAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAAAAAAAAAAABoAAAAVwAAAFcAAABYAAAAWAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAFMAAABTAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABHAAACRwAAAkcAAAFkAAAAZAAAAGQAAABVAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAVAAAAFQAAABUAAAAZAAAAEcAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAABjAAAAZAAAAFQAAABUAAAAVAAAAEcAAANkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGQAAABUAAAAVAAAAFQAAABkAAAARwAAAxYAAAIWAAABFgAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAABkAAAATAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABTAAAAZAAAAGMAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAABjAAAAAAAAAGMAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAABjAAAAFgAAARYAAAIWAAADUwAAAFMAAABkAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAYwAAAGQAAABkAAAAZAAAAEwAAABTAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABTAAAAUwAAAGQAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAABjAAAAAAAAAAAAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAFMAAABTAAAAVAAAAFQAAABkAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABTAAAATAAAAFQAAABUAAAAZAAAAAAAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAAAAAAAAAAABkAAAAUwAAAFMAAABUAAAAVAAAAGQAAAAAAAAAZAAAAGQAAABkAAAAZAAAAA== -3,0: ind: -3,0 - tiles: SwAAAUsAAANLAAABGgAAAUsAAABLAAADSwAAAEsAAABLAAADSwAAA0sAAABQAAAASwAAAksAAANLAAAASwAAAksAAAFLAAADSwAAABoAAANLAAABSwAAA0sAAANQAAAASwAAA0sAAABLAAADSwAAAUsAAABLAAABSwAAA0sAAAMaAAAAGgAAAhoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACGgAAAmgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAJLAAABSwAAA1gAAABoAAAALAAAACwAAAAsAAAAVgAAAFYAAAAsAAAALAAAACwAAABoAAAALAAAAEsAAANLAAADSwAAAUsAAANXAAAAaAAAACwAAAAsAAAALAAAAFYAAANWAAAALAAAACwAAAAsAAAAaAAAACwAAABLAAAASwAAAUsAAAJLAAADVwAAAGgAAAAsAAAALAAAACwAAABWAAABVgAAACwAAAAsAAAALAAAAGgAAAAsAAAASwAAAUsAAAJLAAAASwAAAFgAAABoAAAALAAAACwAAAAsAAAAVgAAAlYAAAMsAAAALAAAACwAAABoAAAALAAAAEsAAAFLAAADSwAAA0sAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAMaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAksAAANLAAABaAAAAGUAAANoAAAAHwAAAx8AAAAfAAABHwAAAx8AAAAfAAACaAAAABoAAAMaAAABaAAAABoAAAEaAAADaAAAAGgAAABlAAABaAAAAB8AAAEfAAABHwAAAB8AAAIfAAADHwAAA2gAAAAeAAACHgAAAksAAANLAAADSwAAAGgAAABlAAADZQAAAGgAAAAfAAACHwAAAx8AAAEfAAADHwAAAR8AAAFoAAAAHgAAAR8AAAFLAAAAUAAAAEsAAAEaAAABZQAAA2UAAAFoAAAAHwAAAR8AAAAfAAADHwAAAR8AAAAfAAABaAAAAB4AAANoAAAASwAAAksAAABLAAAAaAAAAGgAAABoAAAAaAAAAB8AAAEfAAACHwAAAh8AAAAfAAACHwAAAmgAAABoAAAAaAAAAEsAAABoAAAAGgAAAWgAAABoAAAAUwAAAmgAAAAfAAADHwAAAh8AAAAfAAAAHwAAAB8AAAIaAAAAGgAAA2gAAABLAAACSwAAAlAAAABLAAACWAAAAFMAAAFoAAAAHwAAAB8AAAMfAAACHwAAAh8AAAMfAAADGgAAAxoAAAAaAAABSwAAAVAAAABQAAAASwAAAmgAAABTAAACaAAAAB8AAAIfAAAAHwAAAh8AAAAfAAACHwAAARoAAAEaAAADaAAAAA== + tiles: RwAAAkcAAAJHAAACFgAAA0cAAANHAAAARwAAAUcAAABHAAABRwAAAUcAAABMAAAARwAAA0cAAABHAAADRwAAA0cAAABHAAABRwAAABYAAAJHAAADRwAAAkcAAAJMAAAARwAAA0cAAAFHAAADRwAAAEcAAABHAAADRwAAAUcAAAIWAAACFgAAARYAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACFgAAAmQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAANHAAABRwAAAlQAAABkAAAAKAAAACgAAAAoAAAAUgAAAVIAAAMoAAAAKAAAACgAAABkAAAAKAAAAEcAAABHAAAARwAAA0cAAAFTAAAAZAAAACgAAAAoAAAAKAAAAFIAAANSAAACKAAAACgAAAAoAAAAZAAAACgAAABHAAAARwAAA0cAAANHAAABUwAAAGQAAAAoAAAAKAAAACgAAABSAAAAUgAAAygAAAAoAAAAKAAAAGQAAAAoAAAARwAAA0cAAAFHAAACRwAAA1QAAABkAAAAKAAAACgAAAAoAAAAUgAAAFIAAAMoAAAAKAAAACgAAABkAAAAKAAAAEcAAAFHAAABRwAAAEcAAAJkAAAAZAAAAGQAAABkAAAAZAAAABYAAAAWAAADZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAkcAAAFHAAAAZAAAAGEAAABkAAAAGwAAARsAAAEbAAADGwAAARsAAAIbAAADZAAAABYAAAEWAAAAZAAAABYAAAMWAAADZAAAAGQAAABhAAADZAAAABsAAAMbAAADGwAAARsAAAEbAAABGwAAAGQAAAAaAAACGgAAAkcAAAFHAAADRwAAA2QAAABhAAACYQAAAGQAAAAbAAACGwAAABsAAAMbAAADGwAAABsAAANkAAAAGgAAABsAAAFHAAADTAAAAEcAAAIWAAACYQAAAmEAAAJkAAAAGwAAABsAAAEbAAAAGwAAAxsAAAMbAAADZAAAABoAAAFkAAAARwAAA0cAAAJHAAACZAAAAGQAAABkAAAAZAAAABsAAAAbAAAAGwAAARsAAAAbAAABGwAAAmQAAABkAAAAZAAAAEcAAAJkAAAAFgAAA2QAAABkAAAATwAAA2QAAAAbAAACGwAAABsAAAEbAAADGwAAAhsAAAMWAAACFgAAAGQAAABHAAACRwAAAkwAAABHAAADVAAAAE8AAANkAAAAGwAAABsAAAMbAAACGwAAAxsAAAIbAAADFgAAABYAAAAWAAADRwAAAkwAAABMAAAARwAAAmQAAABPAAADZAAAABsAAAEbAAADGwAAABsAAAIbAAABGwAAAxYAAAMWAAAAZAAAAA== -3,1: ind: -3,1 - tiles: UAAAAEsAAAJLAAACSwAAA2gAAABTAAACaAAAAGgAAAAeAAABHgAAAx4AAAEeAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAmgAAABoAAAASwAAA1MAAAJoAAAAaAAAAGgAAABLAAAASwAAAmgAAABLAAAASwAAA0sAAANLAAAASwAAAVMAAANTAAADUwAAA1MAAAJTAAAAUwAAAFMAAAFTAAAAUwAAA1MAAAJoAAAASwAAAksAAAJLAAABSwAAAUsAAAJTAAAAHwAAAh8AAAIaAAAAHwAAAh8AAAMaAAABHwAAAB8AAANTAAAAaAAAAEsAAAFLAAABSwAAAE4AAAFOAAABUwAAAB8AAAIfAAACGgAAAB8AAAAfAAACGgAAAh8AAAIfAAABUwAAAmgAAABLAAADSwAAAUsAAAJOAAABTgAAAlMAAAEaAAAAGgAAAxoAAAAaAAADGgAAAxoAAAIaAAAAGgAAAlMAAAEaAAACUAAAAEsAAABLAAADTgAAA04AAANTAAABHwAAAB8AAAMaAAADHwAAAx8AAAEaAAABHwAAAh8AAABTAAABGgAAAlAAAABLAAAASwAAAUsAAAFLAAABUwAAAh8AAAAfAAADGgAAAB8AAAMfAAACGgAAAR8AAAIfAAAAUwAAAmgAAABLAAAASwAAAksAAANLAAADSwAAAVMAAANTAAAAUwAAA1MAAAFTAAABUwAAA1MAAABTAAACUwAAA1MAAANoAAAASwAAAEsAAABLAAABSwAAAksAAANLAAAASwAAAEsAAABLAAACSwAAA0sAAABLAAABSwAAAUsAAAJLAAACSwAAAUsAAANLAAACSwAAAlAAAABQAAAAUAAAAFAAAABoAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAOAAAASwAAAksAAABoAAAAGgAAAxoAAABoAAAAaAAAAFAAAABQAAAAUAAAAGgAAABLAAADSwAAAksAAANoAAAAaAAAAGgAAAAaAAABSwAAA1AAAABQAAAASwAAAUsAAABLAAACSwAAA0sAAABoAAAASwAAAEsAAAFLAAACaAAAAEsAAAJLAAADSwAAAEsAAANLAAACSwAAAksAAAJLAAABSwAAA0sAAAJLAAADGgAAA0sAAABLAAADSwAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAlMAAABTAAACUwAAAlMAAANTAAACSwAAAmgAAABLAAACSwAAAUsAAANoAAAAaAAAAGgAAABoAAAATgAAA04AAANTAAACHwAAAR8AAAAfAAADUwAAAksAAANoAAAASwAAAEsAAAJLAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: TAAAAEcAAABHAAAARwAAAGQAAABPAAABZAAAAGQAAAAaAAACGgAAAhoAAAAaAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAGQAAABkAAAARwAAA08AAAFkAAAAZAAAAGQAAABHAAACRwAAAGQAAABHAAACRwAAA0cAAANHAAACRwAAAE8AAAFPAAADTwAAAE8AAABPAAAATwAAAU8AAAFPAAABTwAAAE8AAAJkAAAARwAAAEcAAAJHAAADRwAAAUcAAANPAAACGwAAABsAAAMWAAABGwAAABsAAAEWAAABGwAAARsAAANPAAABZAAAAEcAAAJHAAADRwAAAkoAAANKAAABTwAAABsAAAEbAAAAFgAAARsAAAAbAAADFgAAAhsAAAEbAAACTwAAA2QAAABHAAABRwAAAEcAAABKAAAASgAAAU8AAAEWAAADFgAAARYAAAIWAAADFgAAABYAAAEWAAAAFgAAAE8AAAEWAAAATAAAAEcAAABHAAACSgAAAUoAAANPAAADGwAAABsAAAEWAAADGwAAAxsAAAMWAAADGwAAAhsAAANPAAAAFgAAAEwAAABHAAAARwAAAkcAAAJHAAADTwAAAxsAAAEbAAABFgAAABsAAAEbAAADFgAAARsAAAMbAAADTwAAA2QAAABHAAADRwAAAUcAAAJHAAACRwAAAk8AAABPAAAATwAAAU8AAAFPAAAATwAAAE8AAAJPAAACTwAAAU8AAAFkAAAARwAAAkcAAAJHAAAARwAAAkcAAANHAAABRwAAAUcAAAFHAAACRwAAA0cAAAFHAAABRwAAA0cAAANHAAADRwAAAUcAAABHAAACRwAAAEwAAABMAAAATAAAAEwAAABkAAAAZAAAAEcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAKAAAARwAAAEcAAANkAAAAFgAAARYAAAFkAAAAZAAAAEwAAABMAAAATAAAAGQAAABHAAACRwAAAUcAAABkAAAAZAAAAGQAAAAWAAADRwAAAUwAAABMAAAARwAAAUcAAABHAAADRwAAAkcAAANkAAAARwAAAEcAAANHAAACZAAAAEcAAAJHAAACRwAAAUcAAAFHAAAARwAAAkcAAABHAAABRwAAAkcAAABHAAACFgAAA0cAAABHAAABRwAAAmQAAABkAAAAZAAAAGQAAABHAAAARwAAAE8AAAFPAAABTwAAAE8AAABPAAABRwAAAmQAAABHAAADRwAAAEcAAANkAAAAZAAAAGQAAABkAAAASgAAA0oAAANPAAABGwAAABsAAAIbAAACTwAAAkcAAABkAAAARwAAAkcAAABHAAADZAAAAGQAAABkAAAAZAAAAA== -4,-1: ind: -4,-1 - tiles: AAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABLAAACSwAAAEsAAANLAAADaAAAAGgAAABoAAAAUAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAASwAAAUsAAABLAAACSwAAAWgAAABZAAABWQAAAksAAAJnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAEsAAABLAAABSwAAAksAAABoAAAAWQAAAVkAAANLAAABAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABLAAADSwAAAksAAANLAAAAaAAAAFkAAANZAAACSwAAAwAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAASwAAAEsAAANQAAAASwAAAGgAAABoAAAAaAAAAEsAAAIAAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAFAAAABLAAACSwAAAUsAAAJLAAADSwAAAWgAAABQAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABLAAACSwAAA1AAAABLAAADSwAAAEsAAABoAAAASwAAAQAAAABnAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAASwAAA0sAAANLAAABGgAAAEsAAABLAAADaAAAAEsAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAEsAAANLAAACSwAAAUsAAAJLAAADSwAAAmgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAaAAAAGgAAABLAAACSwAAAFAAAABLAAAASwAAA0sAAAAaAAADVQAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAABLAAADSwAAAEsAAAFLAAAAGgAAAlUAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAFAAAABXAAAAVwAAAFcAAABXAAAAaAAAABoAAAFoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAaAAACaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAaAAACGgAAARoAAAFXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: AAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABHAAADRwAAAkcAAANHAAABZAAAAGQAAABkAAAATAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAARwAAAkcAAAJHAAACRwAAAGQAAABVAAABVQAAA0cAAANjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAEcAAABHAAACRwAAA0cAAABkAAAAVQAAA1UAAAJHAAACAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABHAAADRwAAAUcAAANHAAACZAAAAFUAAANVAAACRwAAAQAAAABjAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAARwAAAkcAAANMAAAARwAAAWQAAABkAAAAZAAAAEcAAAMAAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAEwAAABHAAADRwAAAUcAAAFHAAABRwAAAGQAAABMAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABHAAAARwAAAUwAAABHAAAARwAAA0cAAAJkAAAARwAAAgAAAABjAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAARwAAAUcAAAJHAAABFgAAAkcAAAFHAAABZAAAAEcAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAEcAAAFHAAAARwAAAUcAAANHAAAARwAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAZAAAAGQAAABHAAAARwAAAUwAAABHAAACRwAAA0cAAAIWAAADUQAAAmQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEcAAAJHAAAARwAAA0cAAAJHAAAAFgAAA1EAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAEwAAABTAAAAUwAAAFMAAABTAAAAZAAAABYAAAJkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAWAAADZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAWAAACFgAAAhYAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== -4,-2: ind: -4,-2 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFkAAAFQAAAAaAAAABoAAAJLAAAASwAAAEsAAAJLAAAASwAAAUsAAABoAAAASwAAAlAAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAANQAAAAaAAAAFcAAABoAAAAaAAAAFcAAABoAAAAaAAAAFcAAABXAAAADgAAAGgAAABoAAAAaAAAAEsAAANLAAAASwAAAGgAAABQAAAAaAAAAFAAAABoAAAAaAAAAGgAAABXAAAAVwAAAA4AAABoAAAAaAAAAGgAAABLAAABSwAAA0sAAABoAAAAaAAAAFAAAABoAAAAaAAAAFgAAABYAAAAaAAAAGgAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAAUAAAAEsAAABLAAACSwAAAUsAAAJLAAACSwAAAUsAAABoAAAASwAAAFAAAABoAAAAWAAAABoAAANQAAAASwAAAksAAAJLAAACSwAAA0sAAAJLAAABSwAAAUsAAAJQAAAAaAAAAEsAAAJLAAACaAAAAGgAAAAaAAADSwAAAksAAAJLAAABSwAAAUsAAANLAAADSwAAAUsAAAFQAAAASwAAAQ4AAABQAAAASwAAAxoAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAJoAAAASwAAAksAAAJoAAAASwAAA0sAAAJoAAAAWAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAaAAAAFcAAABXAAAAaAAAABoAAAIaAAABaAAAABoAAAJoAAAAaAAAAFgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABXAAAAVwAAAGgAAABLAAACSwAAAlAAAABLAAABSwAAA0sAAABLAAADAAAAAGcAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAASwAAAVAAAABLAAACSwAAAUsAAAFoAAAASwAAAQAAAABnAAAAAAAAAAAAAABnAAAAGgAAABoAAAAaAAAASwAAA1AAAABLAAABSwAAAEsAAABQAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAEsAAANLAAABSwAAAEsAAABLAAAASwAAARoAAABLAAADAAAAAGcAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABLAAADSwAAAVAAAABLAAADSwAAA0sAAAIaAAADSwAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAFUAAANMAAAAZAAAABYAAAFHAAACRwAAA0cAAAJHAAACRwAAA0cAAANkAAAARwAAAUwAAABHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAANMAAAAZAAAAFMAAABkAAAAZAAAAFMAAABkAAAAZAAAAFMAAABTAAAACgAAAGQAAABkAAAAZAAAAEcAAANHAAAARwAAAmQAAABMAAAAZAAAAEwAAABkAAAAZAAAAGQAAABTAAAAUwAAAAoAAABkAAAAZAAAAGQAAABHAAAARwAAA0cAAAJkAAAAZAAAAEwAAABkAAAAZAAAAFQAAABUAAAAZAAAAGQAAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAAAWAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAABTAAAAEcAAABHAAABRwAAA0cAAAJHAAACRwAAAkcAAAFkAAAARwAAAUwAAABkAAAAVAAAABYAAAJMAAAARwAAAUcAAAFHAAAARwAAA0cAAABHAAABRwAAA0cAAABMAAAAZAAAAEcAAABHAAACZAAAAGQAAAAWAAACRwAAA0cAAANHAAADRwAAAEcAAAJHAAACRwAAAUcAAABMAAAARwAAAAoAAABMAAAARwAAAxYAAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAABkAAAARwAAAEcAAAJkAAAARwAAAUcAAANkAAAAVAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAZAAAAFMAAABTAAAAZAAAABYAAAEWAAADZAAAABYAAANkAAAAZAAAAFQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABTAAAAUwAAAGQAAABHAAADRwAAA0wAAABHAAACRwAAAUcAAAFHAAABAAAAAGMAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAARwAAAUwAAABHAAAARwAAAkcAAANkAAAARwAAAQAAAABjAAAAAAAAAAAAAABjAAAAFgAAABYAAAEWAAADRwAAA0wAAABHAAABRwAAAkcAAAJMAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAEcAAANHAAAARwAAAkcAAAJHAAADRwAAARYAAANHAAACAAAAAGMAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABHAAAARwAAA0wAAABHAAAARwAAA0cAAAIWAAACRwAAAA== -5,-1: ind: -5,-1 - tiles: ZwAAAAAAAAAAAAAAZwAAAGgAAABoAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAaAAAAFcAAABoAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAaAAAAGgAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YwAAAAAAAAAAAAAAYwAAAGQAAABkAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAZAAAAFMAAABkAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAZAAAAGQAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -5,-2: ind: -5,-2 - tiles: ZwAAAGcAAAAaAAADGgAAARoAAAJYAAAASwAAAlgAAABLAAAAWAAAABoAAAIaAAAAVwAAAFcAAABXAAAAGgAAA2cAAABnAAAAaAAAAGgAAABoAAAAWAAAAEsAAAFYAAAASwAAAVgAAABoAAAAGgAAA1cAAAAaAAAAVwAAABoAAAJnAAAAAAAAAAAAAAAAAAAAaAAAAFgAAABLAAAAWAAAAEsAAABYAAAAaAAAABoAAABoAAAAaAAAAGgAAAAaAAADZwAAAGcAAABnAAAAZwAAAGgAAABLAAACSwAAAksAAAFLAAABSwAAAmgAAABQAAAAGgAAAhoAAAIaAAACUAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAABoAAAAaAAADGgAAAFAAAABnAAAAZwAAAGcAAABoAAAAaAAAAEsAAAFLAAAASwAAA0sAAAJLAAACaAAAAFAAAAAaAAABaAAAABoAAANQAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABLAAADSwAAAksAAABLAAAASwAAAmgAAABQAAAAaAAAAGgAAABoAAAAUAAAAGcAAAAAAAAAAAAAAGgAAABoAAAASwAAAksAAANLAAAASwAAAEsAAAIaAAACUAAAABoAAAAaAAABGgAAAVAAAABnAAAAAAAAAAAAAABoAAAAaAAAAEsAAAJLAAADSwAAAUsAAABLAAACGgAAA1AAAAAaAAACGgAAAxoAAAFQAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAABoAAAAaAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABoAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAA== + tiles: YwAAAGMAAAAWAAACFgAAAhYAAAFUAAAARwAAAFQAAABHAAAAVAAAABYAAAMWAAAAUwAAAFMAAABTAAAAFgAAAmMAAABjAAAAZAAAAGQAAABkAAAAVAAAAEcAAABUAAAARwAAA1QAAABkAAAAFgAAAVMAAAAWAAADUwAAABYAAANjAAAAAAAAAAAAAAAAAAAAZAAAAFQAAABHAAAAVAAAAEcAAAFUAAAAZAAAABYAAAFkAAAAZAAAAGQAAAAWAAABYwAAAGMAAABjAAAAYwAAAGQAAABHAAABRwAAA0cAAABHAAACRwAAAmQAAABMAAAAFgAAABYAAAAWAAAATAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAABYAAAAWAAABFgAAA0wAAABjAAAAYwAAAGMAAABkAAAAZAAAAEcAAANHAAAARwAAAEcAAAJHAAACZAAAAEwAAAAWAAABZAAAABYAAANMAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABHAAADRwAAAkcAAAJHAAACRwAAAmQAAABMAAAAZAAAAGQAAABkAAAATAAAAGMAAAAAAAAAAAAAAGQAAABkAAAARwAAAEcAAAFHAAABRwAAAkcAAAEWAAABTAAAABYAAAAWAAABFgAAA0wAAABjAAAAAAAAAAAAAABkAAAAZAAAAEcAAAJHAAAARwAAA0cAAANHAAADFgAAAkwAAAAWAAABFgAAABYAAAFMAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAGMAAABkAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAABkAAAAZAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABkAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAA== -5,-3: ind: -5,-3 - tiles: ZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAASwAAAlgAAABLAAACaAAAAFgAAABoAAAAaAAAAGgAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAFgAAABXAAAAWAAAAGgAAABZAAABaAAAAGgAAABoAAAASwAAA2gAAABoAAAAaAAAAGgAAAAaAAACZwAAAGgAAABLAAAAWAAAAEsAAAJoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACaAAAAGgAAABnAAAAaAAAAEsAAAFYAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAA2gAAABoAAAAZwAAAGgAAABYAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAASwAAA1gAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAASwAAA0sAAAFLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAANLAAAASwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAJnAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAaAAADGgAAAGgAAABoAAAAaAAAAGgAAABLAAABUAAAAEsAAAMaAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAFgAAAAaAAADWAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFgAAABLAAABaAAAAFgAAABYAAAAaAAAAFcAAABXAAAAVwAAAFcAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAaAAADGgAAAGgAAABoAAAAaAAAAGgAAABYAAAAWAAAAFgAAABYAAAAZwAAAGcAAABoAAAAaAAAAGgAAABLAAABSwAAAUsAAANLAAADSwAAAWgAAAAaAAABGgAAARoAAAAaAAAAGgAAAQ== + tiles: YwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAARwAAA1QAAABHAAABZAAAAFQAAABkAAAAZAAAAGQAAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAFQAAABTAAAAVAAAAGQAAABVAAADZAAAAGQAAABkAAAARwAAAGQAAABkAAAAZAAAAGQAAAAWAAABYwAAAGQAAABHAAABVAAAAEcAAANkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAAAZAAAAGQAAABjAAAAZAAAAEcAAAJUAAAARwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAmQAAABkAAAAYwAAAGQAAABUAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAARwAAAVQAAABHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAEcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAARwAAAUcAAAFHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAANHAAACRwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAANjAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAWAAACFgAAAWQAAABkAAAAZAAAAGQAAABHAAAATAAAAEcAAAAWAAACYwAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAA1QAAAAWAAADVAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFQAAABHAAADZAAAAFQAAABUAAAAZAAAAFMAAABTAAAAUwAAAFMAAABjAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAWAAAAFgAAAWQAAABkAAAAZAAAAGQAAABUAAAAVAAAAFQAAABUAAAAYwAAAGMAAABkAAAAZAAAAGQAAABHAAADRwAAAkcAAAJHAAABRwAAAWQAAAAWAAABFgAAAxYAAAAWAAABFgAAAg== -4,-5: ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAABoAAAEaAAABGgAAAUsAAABLAAACSwAAAw4AAABLAAACSwAAAGgAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABQAAAADgAAAEsAAANLAAABUAAAAEsAAAJoAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAWQAAA2gAAABLAAACUAAAAEsAAANLAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFAAAAAOAAAASwAAAEsAAAIOAAAADgAAAFgAAABYAAAASwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABQAAAASwAAAUsAAABoAAAASwAAAFAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFQAAAASwAAAksAAAJQAAAAaAAAAFAAAABoAAAAAAAAAAAAAAAAAAAAAAAAABoAAAEaAAADaAAAAGgAAABoAAAASwAAAEsAAANZAAADUAAAAGgAAABQAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAUAAAAEsAAAJQAAAAUAAAAGgAAABoAAAAUAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAMaAAADSwAAA0sAAAFLAAACUAAAAGgAAABoAAAAUAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAA4AAAAOAAAASwAAAUsAAAJoAAAAUAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAUAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAJQAAAiUAAAMlAAAAJQAAAiUAAANoAAAAUAAAAFAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAAAlAAAAJQAAAyUAAAElAAABaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAJQAAAyUAAAMlAAACJQAAAWgAAABLAAACSwAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABLAAAASwAAAWgAAABXAAAAaAAAAFcAAABXAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAABYAAAAWAAABFgAAAUcAAANHAAAARwAAAQoAAABHAAACRwAAAGQAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABMAAAACgAAAEcAAANHAAACTAAAAEcAAAFkAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAVQAAAmQAAABHAAAATAAAAEcAAAFHAAABZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEwAAAAKAAAARwAAAUcAAAIKAAAACgAAAFQAAABUAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABMAAAARwAAAUcAAAJkAAAARwAAAEwAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJMAAAARwAAAEcAAAFMAAAAZAAAAEwAAABkAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAAAZAAAAGQAAABkAAAARwAAAUcAAANVAAACTAAAAGQAAABMAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAATAAAAEcAAABMAAAATAAAAGQAAABkAAAATAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAAEWAAACRwAAA0cAAANHAAADTAAAAGQAAABkAAAATAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAoAAAAKAAAARwAAAUcAAAJkAAAATAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAATAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAIQAAASEAAAAhAAABIQAAASEAAANkAAAATAAAAEwAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAAAhAAADIQAAACEAAAMhAAADZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAIQAAAiEAAAEhAAACIQAAAmQAAABHAAACRwAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABHAAADRwAAAGQAAABTAAAAZAAAAFMAAABTAAAAZAAAAA== -4,-6: ind: -4,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAaAAADGgAAAmgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABHAAAAGgAAAxoAAAJHAAAARwAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAARwAAABoAAAAaAAAAGgAAAhoAAAMaAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAEcAAAAaAAACGgAAAUcAAABHAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAGgAAAhoAAANoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABQAAAADgAAAGgAAAAOAAAAaAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAIaAAADaAAAAA4AAABLAAABUAAAAGgAAABoAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAABoAAAASwAAAEsAAAJLAAABaAAAAGgAAAAAAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAWAAABFgAAAWQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABDAAAAFgAAABYAAANDAAAAQwAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAQwAAABYAAAAWAAACFgAAABYAAAAWAAADZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAEMAAAAWAAADFgAAAUMAAABDAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAFgAAAhYAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABMAAAACgAAAGQAAAAKAAAAZAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAxYAAAMWAAAAZAAAAAoAAABHAAAATAAAAGQAAABkAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEcAAAFkAAAARwAAA0cAAANHAAAAZAAAAGQAAAAAAAAAZAAAAA== -3,-6: ind: -3,-6 - tiles: AAAAAAAAAAAAAAAAaAAAAGgAAABLAAADSwAAA2gAAABLAAACSwAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAFkAAAJoAAAAWQAAAWgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAFcAAABXAAAAaAAAAGgAAABXAAAAaAAAAFcAAABXAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFcAAABXAAAAUAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAFAAAABZAAAAVwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFcAAABZAAABUAAAAFcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAUAAAAFcAAABLAAACaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAmgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAUAAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAUAAAAEsAAAIOAAAASwAAAw4AAAAOAAAADgAAAA4AAABQAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAUAAAAFAAAABoAAAADgAAAEsAAABQAAAASwAAA0sAAAMOAAAASwAAA1AAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABQAAAAUAAAAA4AAABLAAACSwAAA2gAAABQAAAASwAAAksAAANLAAABaAAAAGgAAAAAAAAAAAAAAAAAAABQAAAAUAAAAGgAAAAOAAAASwAAAEsAAAJLAAABWQAAAQ4AAABLAAADSwAAAFAAAABoAAAAZwAAAGcAAABnAAAASwAAAw4AAABoAAAASwAAAQ4AAAAOAAAADgAAAA4AAAAOAAAAUAAAAEsAAANLAAAAaAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAZAAAAGQAAABHAAABRwAAAWQAAABHAAAARwAAAUcAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAFMAAABTAAAAZAAAAFUAAABkAAAAVQAAAmQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAFMAAABTAAAAZAAAAGQAAABTAAAAZAAAAFMAAABTAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFMAAABTAAAATAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAEwAAABVAAAAUwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFMAAABVAAADTAAAAFMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAFMAAABTAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAATAAAAFMAAABHAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAWQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAATAAAAEcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAEwAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAABkAAAATAAAAEcAAAIKAAAARwAAAQoAAAAKAAAACgAAAAoAAABMAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAATAAAAEwAAABkAAAACgAAAEcAAABMAAAARwAAA0cAAAEKAAAARwAAAkwAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABMAAAATAAAAAoAAABHAAABRwAAA2QAAABMAAAARwAAAkcAAAJHAAABZAAAAGQAAAAAAAAAAAAAAAAAAABMAAAATAAAAGQAAAAKAAAARwAAAkcAAABHAAACVQAAAQoAAABHAAAARwAAAkwAAABkAAAAYwAAAGMAAABjAAAARwAAAwoAAABkAAAARwAAAAoAAAAKAAAACgAAAAoAAAAKAAAATAAAAEcAAAFHAAADZAAAAAAAAAAAAAAAAAAAAA== -4,1: ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAMaAAACGgAAAxoAAAAaAAADSwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAIaAAADGgAAAk4AAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABOAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAEaAAABGgAAABoAAAAaAAACTgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAACGgAAABoAAAEaAAAAGgAAAUsAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAABoAAAEaAAADaAAAAEsAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAABoAAAMaAAAAGgAAABoAAAFLAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAaAAAAGgAAAhoAAAIaAAACTgAAAg== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAEWAAADFgAAARYAAAMWAAAARwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAACFgAAABYAAAAWAAABFgAAA0oAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABKAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAMWAAAAFgAAABYAAAAWAAACSgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAACFgAAAhYAAAMWAAAAFgAAA0cAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAARwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAABYAAAMWAAADZAAAAEcAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAABYAAAEWAAADFgAAAxYAAANHAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAWAAACFgAAAxYAAAAWAAABSgAAAA== -4,0: ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAFAAAABXAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABXAAAAVwAAAGgAAABLAAADSwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAFAAAABoAAAASwAAAEsAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABlAAADZQAAAGgAAABLAAADSwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZQAAAGUAAAJoAAAASwAAA0sAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGUAAANlAAAAaAAAAEsAAANLAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAaAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAksAAABLAAACSwAAAEsAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAABLAAAASwAAAksAAAJLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAGgAAAGgAAABLAAABSwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZQAAAWUAAAFoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGUAAAJlAAABaAAAAEsAAABLAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABlAAABZQAAAmgAAABLAAADUAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAEwAAABTAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABTAAAAUwAAAGQAAABHAAABRwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAEwAAABkAAAARwAAAEcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABhAAABYQAAAWQAAABHAAAARwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYQAAAWEAAAJkAAAARwAAAUcAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGEAAANhAAAAZAAAAEcAAABHAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAWAAADZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAAkcAAAJHAAADRwAAAUcAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAANHAAADRwAAAUcAAABHAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAFgAAA2QAAABHAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYQAAAmEAAAFkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGEAAABhAAABZAAAAEcAAANHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABhAAAAYQAAAWQAAABHAAAATAAAAA== -2,2: ind: -2,2 - tiles: aAAAAGgAAABoAAAAaAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAgAAAAAAAAAAAAAAAGgAAABXAAAAaAAAAFkAAAJXAAAAaAAAAGgAAABlAAAAZQAAAmUAAABlAAABaAAAAEsAAAMAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAAAaAAACZQAAA2UAAAJlAAAAZQAAARoAAAJLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABYAAAAaAAAAGUAAABlAAAAZQAAAGUAAABoAAAASwAAA1kAAAFZAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANoAAAAaAAAAFcAAABoAAAAWAAAAFgAAABoAAAAUAAAAGgAAAAVAAAAFQAAABUAAAAVAAAAaAAAAFkAAANLAAAAZQAAAWgAAABQAAAAaAAAAFAAAABLAAABaAAAAGgAAAAaAAACFQAAABUAAAAVAAAAFQAAAGgAAABYAAAASwAAAmgAAABoAAAAUAAAAGgAAABZAAAAaAAAAGgAAABoAAAAaAAAABUAAAAVAAAAFQAAAGgAAABoAAAAaAAAAEsAAAFoAAAAaAAAAGgAAABZAAABWQAAA1AAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAFLAAAAAAAAAGgAAABZAAABWQAAAksAAABoAAAAVwAAAGgAAAAaAAABZQAAAWUAAAJlAAACZQAAAksAAANLAAAASwAAAwAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAABlAAABZQAAAmUAAANLAAACSwAAAEsAAAEAAAAAAAAAAGgAAAA6AAAAOgAAADoAAABoAAAAaAAAAGgAAABlAAAAZQAAA2UAAABlAAADSwAAAksAAABLAAABAAAAAAAAAABoAAAAOgAAADoAAAA6AAAAaAAAAGgAAABoAAAAZQAAAWUAAANlAAACaAAAAEsAAAJLAAACSwAAAgAAAAAAAAAAaAAAADoAAAA6AAAAOgAAABoAAABoAAAAaAAAAGUAAABlAAACZQAAABoAAABLAAACSwAAA0sAAAIAAAAAAAAAAGgAAAA6AAAAOgAAADoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAANLAAABAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAZQAAAGUAAAJlAAACaAAAAEsAAAFLAAADSwAAAA== + tiles: ZAAAAGQAAABkAAAAZAAAAEwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAgAAAAAAAAAAAAAAAGQAAABTAAAAZAAAAFUAAABTAAAAZAAAAGQAAABhAAAAYQAAAWEAAAFhAAADZAAAAEcAAAMAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAAAWAAACYQAAAmEAAAJhAAAAYQAAARYAAAJHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABUAAAAZAAAAGEAAABhAAAAYQAAAGEAAAJkAAAARwAAAlUAAANVAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFkAAAAZAAAAFMAAABkAAAAVAAAAFQAAABkAAAATAAAAGQAAAARAAAAEQAAABEAAAARAAAAZAAAAFUAAAJHAAABYQAAAWQAAABMAAAAZAAAAEwAAABHAAACZAAAAGQAAAAWAAAAEQAAABEAAAARAAAAEQAAAGQAAABUAAAARwAAAWQAAABkAAAATAAAAGQAAABVAAACZAAAAGQAAABkAAAAZAAAABEAAAARAAAAEQAAAGQAAABkAAAAZAAAAEcAAANkAAAAZAAAAGQAAABVAAABVQAAA0wAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAFHAAABAAAAAGQAAABVAAABVQAAAUcAAABkAAAAUwAAAGQAAAAWAAABYQAAAWEAAABhAAABYQAAA0cAAAFHAAADRwAAAgAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAANhAAACYQAAAWEAAANHAAACRwAAAkcAAAMAAAAAAAAAAGQAAAA2AAAANgAAADYAAABkAAAAZAAAAGQAAABhAAABYQAAAGEAAAJhAAADRwAAAUcAAANHAAACAAAAAAAAAABkAAAANgAAADYAAAA2AAAAZAAAAGQAAABkAAAAYQAAA2EAAAFhAAACZAAAAEcAAANHAAABRwAAAgAAAAAAAAAAZAAAADYAAAA2AAAANgAAABYAAAJkAAAAZAAAAGEAAANhAAAAYQAAAxYAAAJHAAAARwAAAUcAAAMAAAAAAAAAAGQAAAA2AAAANgAAADYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAANHAAABAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAAAYQAAAWEAAAJhAAACZAAAAEcAAANHAAAARwAAAg== -2,3: ind: -2,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFAAAABoAAAAZQAAA2UAAANlAAAAaAAAABoAAAAaAAADGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAA0sAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAksAAABLAAADSwAAAEsAAAJLAAACAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAWQAAAmgAAABoAAAASwAAAksAAABLAAABSwAAAksAAAFLAAABSwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFkAAAJoAAAAaAAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABQAAAAaAAAAGgAAABLAAADSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAUAAAAGgAAABoAAAASwAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAFkAAANoAAAAaAAAAEsAAAFLAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAASwAAAksAAAJLAAAASwAAA2gAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAA0sAAANoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAANLAAABaAAAAFkAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAACSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAUsAAAJoAAAAVwAAAFkAAANZAAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAANLAAAAaAAAAFgAAABoAAAAaAAAAFcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAADSwAAAmgAAABoAAAAVwAAAGgAAABXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAksAAAFoAAAAVwAAAFgAAABoAAAAVwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEwAAABkAAAAYQAAAWEAAAJhAAADZAAAABYAAAAWAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAEcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAUcAAABHAAACRwAAAEcAAAJHAAADAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAVQAAAGQAAABkAAAARwAAA0cAAAJHAAAARwAAA0cAAAFHAAADRwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFUAAAFkAAAAZAAAAEcAAAJHAAACZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABMAAAAZAAAAGQAAABHAAAARwAAAWQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAATAAAAGQAAABkAAAARwAAAkcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAFUAAANkAAAAZAAAAEcAAAJHAAACZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAARwAAAUcAAAFHAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAARwAAAkcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAANHAAADZAAAAFUAAANkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAAEcAAANkAAAAUwAAAFUAAANVAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAABHAAACZAAAAFQAAABkAAAAZAAAAFMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAADRwAAAmQAAABkAAAAUwAAAGQAAABTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAAEcAAAFkAAAAUwAAAFQAAABkAAAAUwAAAA== -1,3: ind: -1,3 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAALAAAACwAAAAsAAAALAAAACwAAAAlAAAALAAAACwAAABoAAAASwAAAWgAAABXAAAAWQAAAFcAAABoAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAAJQAAAywAAAAsAAAAaAAAAEsAAAAaAAACSwAAAksAAAJLAAAAaAAAACwAAAAsAAAALAAAACwAAAAsAAAAJQAAAiUAAAEsAAAALAAAAGgAAABLAAACGgAAAEsAAABLAAADSwAAAmgAAAAsAAAALAAAACwAAAAsAAAALAAAACUAAAEsAAAALAAAACwAAABoAAAASwAAAmgAAABoAAAASwAAAksAAAIaAAACJQAAAyUAAAMlAAADJQAAAiUAAAAlAAABLAAAACwAAAAsAAAAaAAAAEsAAAEAAAAAaAAAAEsAAAFLAAABaAAAACwAAAAsAAAALAAAACwAAAAlAAADLAAAACwAAAAsAAAALAAAAGgAAAAaAAAAAAAAAGgAAABLAAACSwAAAWgAAAAsAAAALAAAACwAAAAsAAAAJQAAASwAAAAsAAAALAAAACwAAABoAAAASwAAAAAAAABoAAAASwAAA0sAAANoAAAALAAAACwAAAAsAAAALAAAACUAAAAsAAAALAAAACwAAAAsAAAAaAAAAEsAAAAAAAAAaAAAAEsAAAJLAAACaAAAACwAAAAsAAAALAAAACwAAAAlAAAALAAAACwAAAAsAAAALAAAAGgAAABLAAABAAAAAGgAAABLAAADSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAGgAAAmgAAABoAAAAaAAAAGgAAABoAAAASwAAAgAAAABoAAAASwAAA0sAAAMaAAABSwAAA0sAAAJLAAACSwAAAksAAAJLAAACSwAAAEsAAAFLAAADSwAAAksAAAFoAAAAaAAAAEsAAANLAAACGgAAAEsAAANLAAACSwAAAksAAANLAAAASwAAAEsAAABLAAABSwAAAUsAAAFLAAABVwAAAGgAAABLAAABSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABaAAAAFcAAABoAAAASwAAAEsAAAJoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAaAAACSwAAABoAAANYAAAAaAAAAEsAAABLAAABaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAGgAAA0sAAAEaAAABWAAAAGgAAABLAAACSwAAAWgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAaAAAABoAAABLAAACGgAAAg== + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAKAAAACgAAAAoAAAAKAAAACgAAAAhAAADKAAAACgAAABkAAAARwAAA2QAAABTAAAAVQAAA1MAAABkAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAIQAAACgAAAAoAAAAZAAAAEcAAAEWAAAARwAAAEcAAANHAAABZAAAACgAAAAoAAAAKAAAACgAAAAoAAAAIQAAAyEAAAAoAAAAKAAAAGQAAABHAAABFgAAAEcAAABHAAABRwAAAWQAAAAoAAAAKAAAACgAAAAoAAAAKAAAACEAAAMoAAAAKAAAACgAAABkAAAARwAAAGQAAABkAAAARwAAA0cAAAMWAAAAIQAAAiEAAAMhAAABIQAAACEAAAMhAAACKAAAACgAAAAoAAAAZAAAAEcAAAAAAAAAZAAAAEcAAANHAAACZAAAACgAAAAoAAAAKAAAACgAAAAhAAADKAAAACgAAAAoAAAAKAAAAGQAAAAWAAACAAAAAGQAAABHAAABRwAAAGQAAAAoAAAAKAAAACgAAAAoAAAAIQAAAigAAAAoAAAAKAAAACgAAABkAAAARwAAAAAAAABkAAAARwAAAEcAAANkAAAAKAAAACgAAAAoAAAAKAAAACEAAAEoAAAAKAAAACgAAAAoAAAAZAAAAEcAAAMAAAAAZAAAAEcAAAFHAAABZAAAACgAAAAoAAAAKAAAACgAAAAhAAADKAAAACgAAAAoAAAAKAAAAGQAAABHAAABAAAAAGQAAABHAAABRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAFgAAAWQAAABkAAAAZAAAAGQAAABkAAAARwAAAQAAAABkAAAARwAAAUcAAAAWAAABRwAAAkcAAAFHAAABRwAAAEcAAAFHAAACRwAAAUcAAAJHAAAARwAAAEcAAAFkAAAAZAAAAEcAAAJHAAACFgAAAUcAAAJHAAABRwAAAEcAAAJHAAACRwAAAUcAAAFHAAAARwAAAkcAAANHAAABUwAAAGQAAABHAAAARwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAABZAAAAFMAAABkAAAARwAAAEcAAANkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAWAAABRwAAABYAAAFUAAAAZAAAAEcAAAJHAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAFgAAAEcAAAAWAAABVAAAAGQAAABHAAACRwAAAmQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAZAAAABYAAAJHAAACFgAAAg== -3,2: ind: -3,2 - tiles: TgAAAk4AAAFTAAABHwAAAB8AAAIfAAAAUwAAAUsAAAFoAAAASwAAAUsAAAJLAAACaAAAAGgAAABoAAAAaAAAAE4AAAJOAAACUwAAAx8AAAAfAAACHwAAA1MAAAJLAAADaAAAAEsAAABLAAABSwAAA2gAAABnAAAAAAAAAAAAAABLAAAASwAAAFMAAAJTAAAAUwAAAlMAAABTAAADSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAASwAAAEsAAAJLAAAASwAAA0sAAABLAAACSwAAA0sAAAJoAAAAaAAAAFAAAABlAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAACSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAZQAAAWgAAABoAAAAWQAAAlkAAABoAAAAGgAAAhoAAAFoAAAAWAAAAFgAAABYAAAAWAAAAGgAAABoAAAAaAAAAFAAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAFQAAAAaAAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAksAAAFQAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAA1AAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA1AAAABLAAACaAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAaAAAABoAAABoAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAFLAAACSwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAaAAACaAAAAAAAAAAAAAAAAAAAAAAAAABTAAACUwAAAVMAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAGgAAAGgAAAAAAAAAAAAAAAAAAAAAAAAASwAAAUsAAABLAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: SgAAAEoAAABPAAABGwAAAhsAAAAbAAAATwAAAEcAAABkAAAARwAAAUcAAANHAAADZAAAAGQAAABkAAAAZAAAAEoAAABKAAADTwAAAhsAAAEbAAACGwAAAE8AAAFHAAADZAAAAEcAAABHAAACRwAAAmQAAABjAAAAAAAAAAAAAABHAAABRwAAAk8AAAFPAAAATwAAAU8AAAJPAAADRwAAA2QAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAARwAAAkcAAABHAAADRwAAAEcAAABHAAABRwAAAkcAAAJkAAAAZAAAAEwAAABhAAADZAAAAGQAAABkAAAAZAAAAEcAAAJHAAABRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAAYQAAA2QAAABkAAAAVQAAAlUAAABkAAAAFgAAARYAAAFkAAAAVAAAAFQAAABUAAAAVAAAAGQAAABkAAAAZAAAAEwAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAABMAAAAZAAAAFMAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAA0cAAABMAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABMAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAUwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkwAAABHAAADZAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAZAAAABYAAANkAAAAAAAAAAAAAAAAAAAAAAAAAEcAAANHAAABRwAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAWAAACZAAAAAAAAAAAAAAAAAAAAAAAAABPAAABTwAAA08AAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAFgAAAGQAAAAAAAAAAAAAAAAAAAAAAAAARwAAA0cAAABHAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -4,2: ind: -4,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAATgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAGgAAAxoAAAIaAAADGgAAAk4AAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAABoAAAIaAAABGgAAAhoAAAJLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAGgAAARoAAAJoAAAASwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAEsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAxoAAAFLAAADSwAAA1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAxoAAAAaAAAAUwAAAlMAAAFTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAFAAAABLAAACUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAGgAAAmgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAABoAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAaAAACaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAASgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAFgAAAxYAAAMWAAADFgAAA0oAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAABYAAAMWAAAAFgAAABYAAAJHAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAFgAAAxYAAABkAAAARwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAEcAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAFgAAAhYAAAJHAAADRwAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAxYAAAIWAAADTwAAAk8AAAFPAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEwAAABHAAADTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAFgAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAABYAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAWAAAAZAAAAA== -3,3: ind: -3,3 - tiles: AAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAACwAAAgsAAAALAAACCwAAAQsAAAELAAACCwAAAQsAAAALAAADAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAsAAAILAAADCwAAAgsAAAAKAAAACwAAAQsAAAALAAABCwAAAQsAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAANAAADCgAAAAsAAAALAAADCgAAAAsAAAILAAAACwAAAgsAAAMLAAAACwAAAgAAAAAAAAAAAAAAAGcAAAAAAAAACwAAAwsAAAILAAADCgAAAAwAAAcKAAAACwAAAAsAAAMLAAADCwAAAgsAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAsAAAELAAABCwAAAAsAAAILAAADCgAAAAsAAAEKAAAACwAAAwsAAAMLAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAALAAAACwAAAQsAAAMKAAAACgAAAAsAAAALAAACCwAAAAsAAAEKAAAACwAAAwsAAAAAAAAAAAAAAGcAAAAAAAAACwAAAwsAAAALAAAACwAAAgsAAAALAAACCgAAAAwAAAQKAAAADAAABgoAAAALAAACAAAAAAAAAABnAAAAAAAAAAwAAAMKAAAACgAAAAoAAAALAAABCwAAAg0AAAEKAAAACwAAAAsAAAIKAAAACwAAAgsAAAMAAAAAZwAAAAAAAAALAAABCwAAAgsAAAILAAABCwAAAQsAAAMKAAAACgAAAAsAAAILAAACCwAAAAoAAAALAAABAAAAAGcAAAAAAAAACwAAAgsAAAMKAAAACwAAAQsAAAELAAABCwAAAgoAAAALAAAACwAAAAsAAAMLAAABCwAAAAAAAABnAAAAAAAAAA== + tiles: AAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAABgAAAwYAAAMGAAABBgAAAgYAAAIGAAABBgAAAwYAAAIGAAADAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAYAAAIGAAACBgAAAQYAAAMGAAAABgAAAwYAAAMGAAADBgAAAgYAAAEAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAIAAAHBgAAAAYAAAMGAAACBgAAAAYAAAEGAAADBgAAAQYAAAMGAAABBgAAAwAAAAAAAAAAAAAAAGMAAAAAAAAABgAAAwYAAAMGAAABBgAAAAYAAAMGAAAABgAAAgYAAAMGAAABBgAAAQYAAAMAAAAAAAAAAAAAAABjAAAAAAAAAAYAAAEGAAADBgAAAgYAAAMGAAACBgAAAAYAAAMGAAAABgAAAwYAAAMGAAACAAAAAAAAAAAAAAAAYwAAAAAAAAAGAAADBgAAAgYAAAEGAAAABgAAAAYAAAEGAAADBgAAAgYAAAMGAAAABgAAAwYAAAIAAAAAAAAAAGMAAAAAAAAABgAAAwYAAAIGAAACBgAAAwYAAAMGAAADBgAAAAYAAAcGAAAABgAABwYAAAAGAAACAAAAAAAAAABjAAAAAAAAAAYAAAYGAAAABgAAAAYAAAAGAAADBgAAAwgAAAYGAAAABgAAAgYAAAEGAAAABgAAAgYAAAEAAAAAYwAAAAAAAAAGAAADBgAAAwYAAAMGAAADBgAAAgYAAAIGAAAABgAAAAYAAAMGAAACBgAAAgYAAAAGAAACAAAAAGMAAAAAAAAABgAAAwYAAAEGAAAABgAAAgYAAAMGAAABBgAAAgYAAAAGAAACBgAAAwYAAAMGAAADBgAAAwAAAABjAAAAAAAAAA== -4,3: ind: -4,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAALAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAACwAAAAsAAAALAAABCgAAAAoAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAsAAAMLAAADCgAAAAwAAAELAAADAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAALAAABCgAAAAoAAAALAAAACgAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAILAAAACwAAAg0AAAULAAAACgAAAAsAAAEAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAADCwAAAAsAAAMKAAAACwAAAgsAAAILAAABAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAwsAAAEMAAACCgAAAAsAAAELAAACCwAAAgAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAALAAADCwAAAQsAAAMLAAACDAAABAsAAAILAAACCwAAAQoAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAACwAAAgsAAAILAAAACwAAAAwAAAELAAABCwAAAwsAAAELAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAACwAAAwsAAAILAAABCwAAAwoAAAALAAADCwAAAwsAAAALAAABCwAAAw== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAGAAADBgAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAABgAAAwYAAAMGAAABBgAAAAYAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAYAAAIGAAADBgAAAAYAAAcGAAADAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAACBgAAAAYAAAAGAAACBgAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAMGAAADBgAAAggAAAcGAAACBgAAAAYAAAIAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAADBgAAAgYAAAEGAAAABgAAAgYAAAMGAAABAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAwYAAAIGAAABBgAAAAYAAAIGAAACBgAAAgAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAGAAADBgAAAwYAAAIGAAADBgAABwYAAAMGAAADBgAAAwYAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAABgAAAQYAAAIGAAACBgAAAgYAAAYGAAADBgAAAwYAAAMGAAADAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAABgAAAwYAAAMGAAADBgAAAQYAAAAGAAADBgAAAgYAAAIGAAADBgAAAw== -3,4: ind: -3,4 - tiles: CwAAAgsAAAALAAABCgAAAAoAAAAKAAAACwAAAgsAAAELAAACCgAAAAoAAAAKAAAACwAAAQAAAABnAAAAAAAAAAsAAAELAAAACwAAAAwAAAAKAAAACgAAAAsAAAELAAACCwAAAQsAAAELAAADCwAAAQsAAAEAAAAAZwAAAAAAAAALAAABCwAAAwsAAAILAAAACgAAAAoAAAANAAABCwAAAgsAAAIKAAAACgAAAAoAAAALAAADAAAAAGcAAAAAAAAACgAAAAoAAAANAAAHCwAAAQsAAAMLAAADCwAAAgsAAAIKAAAACgAAAA0AAAULAAACCwAAAwAAAABnAAAAAAAAAAsAAAELAAADCgAAAAoAAAAKAAAACgAAAAsAAAMKAAAACgAAAAsAAAILAAABCwAAAwAAAAAAAAAAZwAAAAAAAAAAAAAACwAAAgsAAAALAAAACwAAAAoAAAAKAAAACwAAAgsAAAMLAAADCwAAAwAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAACwAAAgsAAAMLAAABCwAAAwsAAAELAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BgAAAgYAAAEGAAABBgAAAAYAAAAGAAAABgAAAgYAAAIGAAABBgAAAAYAAAAGAAAABgAAAwAAAABjAAAAAAAAAAYAAAMGAAABBgAAAwYAAAYGAAAABgAAAAYAAAMGAAABBgAAAwYAAAEGAAACBgAAAwYAAAMAAAAAYwAAAAAAAAAGAAACBgAAAgYAAAEGAAADBgAAAAYAAAAIAAAEBgAAAwYAAAMGAAAABgAAAAYAAAAGAAADAAAAAGMAAAAAAAAABgAAAAYAAAAIAAAHBgAAAwYAAAIGAAADBgAAAQYAAAIGAAAABgAAAAgAAAQGAAABBgAAAQAAAABjAAAAAAAAAAYAAAIGAAADBgAAAAYAAAAGAAAABgAAAAYAAAMGAAAABgAAAAYAAAEGAAACBgAAAwAAAAAAAAAAYwAAAAAAAAAAAAAABgAAAgYAAAIGAAABBgAAAwYAAAAGAAAABgAAAgYAAAEGAAADBgAAAwAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAABgAAAwYAAAMGAAADBgAAAgYAAAIGAAADAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -4,4: ind: -4,4 - tiles: AAAAAAAAAABnAAAAAAAAAAAAAAALAAACCwAAAAsAAAELAAABCwAAAgoAAAALAAADCwAAAAsAAAMLAAABCwAAAwAAAAAAAAAAZwAAAAAAAAAAAAAACwAAAwsAAAMKAAAACwAAAgoAAAALAAACCwAAAwsAAAMLAAAACwAAAQsAAAIAAAAAAAAAAGcAAAAAAAAACwAAAAsAAAILAAAADAAAAwoAAAAKAAAACwAAAwsAAAMMAAABCwAAAwoAAAALAAAAAAAAAAAAAABnAAAAAAAAAAsAAAMLAAAADQAAAgsAAAMLAAAADAAAAwsAAAALAAABCgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAZwAAAAAAAAALAAACCwAAAgoAAAALAAACCwAAAAsAAAALAAAACgAAAAoAAAANAAACCgAAAAsAAAMAAAAAAAAAAGcAAAAAAAAACwAAAAsAAAELAAADCgAAAAoAAAAMAAACCgAAAAoAAAALAAABCwAAAQsAAAMLAAACAAAAAAAAAABnAAAAAAAAAAAAAAALAAACCwAAAQsAAAELAAADCwAAAgoAAAALAAADCwAAAQsAAAILAAACAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAALAAADCwAAAw0AAAYLAAABCwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAABjAAAAAAAAAAAAAAAGAAADBgAAAwYAAAMGAAADBgAAAQYAAAAGAAADBgAAAgYAAAIGAAADBgAAAgAAAAAAAAAAYwAAAAAAAAAAAAAABgAAAgYAAAEGAAAABgAAAgYAAAAGAAADBgAAAQYAAAMGAAADBgAAAwYAAAMAAAAAAAAAAGMAAAAAAAAABgAAAwYAAAEGAAADBgAAAgYAAAAGAAAABgAAAgYAAAEGAAADBgAAAwYAAAAGAAACAAAAAAAAAABjAAAAAAAAAAYAAAEGAAACCAAABwYAAAMGAAADBgAABgYAAAIGAAADBgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAYwAAAAAAAAAGAAADBgAAAwYAAAAGAAADBgAAAwYAAAIGAAADBgAAAAYAAAAIAAAGBgAAAAYAAAMAAAAAAAAAAGMAAAAAAAAABgAAAQYAAAMGAAADBgAAAAYAAAAGAAAEBgAAAAYAAAAGAAADBgAAAQYAAAMGAAABAAAAAAAAAABjAAAAAAAAAAAAAAAGAAABBgAAAQYAAAIGAAADBgAAAQYAAAAGAAADBgAAAwYAAAMGAAABAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAGAAADBgAAAwgAAAcGAAADBgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,-7: ind: 1,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,2: ind: 3,2 - tiles: UAAAAFkAAAJQAAAAaAAAAGgAAABoAAAAZQAAADcAAAA3AAAAUAAAAGgAAABoAAAAAAAAAAAAAABoAAAAGgAAAVkAAANQAAAAWQAAAGgAAABoAAAAaAAAAGUAAANlAAACUAAAAGUAAANoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAAFAAAABoAAAAUAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAWAAAAFgAAABoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAFAAAABQAAAAaAAAAFgAAABYAAAAWAAAAFcAAABoAAAAWAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABQAAAAUAAAAGgAAABYAAAAWAAAAFgAAABXAAAAWQAAAVgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAUAAAAEsAAANoAAAAaAAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAFcAAABoAAAAaAAAAGgAAABQAAAAaAAAAFkAAANoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAUAAAAFAAAABQAAAAUAAAAGgAAABYAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABoAAAASwAAAUsAAABXAAAAaAAAAEsAAAJQAAAAUAAAAFAAAABXAAAAaAAAAAsAAAFoAAAAaAAAAAsAAAIAAAAAaAAAAEsAAAJXAAAAVwAAAFAAAABQAAAAUAAAAGgAAABLAAADVwAAAGgAAAALAAABDAAAAwsAAAELAAADaAAAAGgAAABoAAAAWAAAAGgAAABYAAAAaAAAAFgAAABoAAAAWAAAAGgAAABoAAAACwAAAwsAAAALAAACCwAAAUsAAABLAAABWAAAAFkAAAJYAAAAWQAAA1gAAABZAAABWAAAAFkAAAFYAAAAWQAAAVkAAABpAAAACwAAAgsAAAFLAAADaAAAAGgAAABLAAABaAAAAGgAAABoAAAASwAAAGgAAABYAAAAaAAAAGgAAABQAAAAaQAAAGkAAAALAAACSwAAAEsAAAFYAAAAWQAAAVgAAABZAAABWAAAAFkAAAJYAAAAWQAAAlgAAABZAAABWQAAAWkAAAAKAAAADQAAAQ== + tiles: TAAAAFUAAAFMAAAAZAAAAGQAAABkAAAAYQAAATMAAAAzAAAATAAAAGQAAABkAAAAAAAAAAAAAABkAAAAFgAAA1UAAAFMAAAAVQAAAWQAAABkAAAAZAAAAGEAAAJhAAABTAAAAGEAAAFkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAATAAAAGQAAABkAAAAZAAAAEwAAABkAAAATAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAVAAAAFQAAABkAAAAUwAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYwAAAEwAAABMAAAAZAAAAFQAAABUAAAAVAAAAFMAAABkAAAAVAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABMAAAATAAAAGQAAABUAAAAVAAAAFQAAABTAAAAVQAAAVQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAATAAAAEcAAAJkAAAAZAAAAGQAAABkAAAATAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAFMAAABkAAAAZAAAAGQAAABMAAAAZAAAAFUAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAATAAAAEwAAABMAAAATAAAAGQAAABUAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABkAAAARwAAAEcAAABTAAAAZAAAAEcAAAFMAAAATAAAAEwAAABTAAAAZAAAAAYAAAJkAAAAZAAAAAYAAAMAAAAAZAAAAEcAAABTAAAAUwAAAEwAAABMAAAATAAAAGQAAABHAAACUwAAAGQAAAAGAAADBgAABwYAAAMGAAABZAAAAGQAAABkAAAAVAAAAGQAAABUAAAAZAAAAFQAAABkAAAAVAAAAGQAAABkAAAABgAAAgYAAAMGAAABBgAAA0cAAANHAAABVAAAAFUAAANUAAAAVQAAA1QAAABVAAACVAAAAFUAAANUAAAAVQAAAlUAAABlAAAABgAAAgYAAAFHAAAAZAAAAGQAAABHAAADZAAAAGQAAABkAAAARwAAAWQAAABUAAAAZAAAAGQAAABMAAAAZQAAAGUAAAAGAAADRwAAAUcAAANUAAAAVQAAAVQAAABVAAADVAAAAFUAAAFUAAAAVQAAAFQAAABVAAAAVQAAA2UAAAAGAAAACAAAAg== 2,3: ind: 2,3 - tiles: aAAAAGgAAABoAAAADwAAAw8AAAEPAAABDwAAA2gAAABlAAACSwAAAksAAAJLAAAAaAAAAEsAAABLAAABSwAAAwAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAANoAAAAaAAAAGgAAABLAAAASwAAAUsAAAEAAAAAAAAAAAAAAABoAAAAaAAAAGUAAAFlAAACaAAAAGgAAABlAAADaAAAAAAAAABoAAAAaAAAAGgAAABLAAADAAAAAAAAAAAAAAAAaAAAAGgAAABLAAACSwAAAWUAAAJlAAADZQAAAWgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAGQAAABkAAAACwAAAwsAAAALAAACCwAAAGQAAABhAAACRwAAAEcAAANHAAAAZAAAAEcAAANHAAACRwAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAABkAAAAZAAAAGQAAABHAAADRwAAAkcAAAMAAAAAAAAAAAAAAABkAAAAZAAAAGEAAANhAAABZAAAAGQAAABhAAABZAAAAAAAAABkAAAAZAAAAGQAAABHAAACAAAAAAAAAAAAAAAAZAAAAGQAAABHAAAARwAAAGEAAAFhAAAAYQAAAGQAAAAAAAAAAAAAAAAAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,3: ind: 3,3 - tiles: SwAAAWgAAABoAAAAWAAAAGgAAABYAAAAaAAAAFgAAABoAAAAWAAAAGgAAABoAAAACwAAAgsAAAEKAAAACwAAAksAAABoAAAAVwAAAFcAAABXAAAAVwAAAFAAAABQAAAAaAAAAEsAAANXAAAAaAAAAAsAAAMLAAACCwAAAwoAAABLAAADaAAAAGgAAABXAAAAUAAAAFcAAABQAAAASwAAA1cAAABXAAAASwAAA2gAAAAMAAAEDAAAAAsAAAELAAABaAAAAGgAAABXAAAAWQAAA1AAAABZAAADaAAAAEsAAAFLAAADSwAAAVcAAABoAAAACwAAAwoAAAAKAAAADAAABAAAAABoAAAAaAAAAFkAAANQAAAAUAAAAGgAAABoAAAASwAAAUsAAAFXAAAAaAAAAAsAAAMLAAAACwAAAQoAAAAAAAAAaAAAAGgAAABoAAAASwAAAksAAANQAAAASwAAAVcAAABoAAAAaAAAAGgAAAAMAAAFCwAAAAsAAAIKAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAACwAAAQsAAAEKAAAACgAAAGcAAAAAAAAAaAAAAGgAAABLAAAAaAAAABoAAAJoAAAASwAAAWgAAABoAAAAAAAAAAAAAAALAAABCwAAAQsAAABnAAAAAAAAAGgAAABXAAAAVwAAAFAAAAAaAAABaAAAAFAAAABLAAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAFkAAAFLAAADGgAAA1AAAABoAAAAaAAAAGgAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAaAAAAFAAAABLAAAASwAAA1cAAABZAAADSwAAAFAAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAASwAAAFgAAABYAAAAWAAAAFcAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABYAAAAWAAAAFgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAA== + tiles: RwAAAWQAAABkAAAAVAAAAGQAAABUAAAAZAAAAFQAAABkAAAAVAAAAGQAAABkAAAABgAAAgYAAAMGAAAABgAAA0cAAAJkAAAAUwAAAFMAAABTAAAAUwAAAEwAAABMAAAAZAAAAEcAAANTAAAAZAAAAAYAAAMGAAABBgAAAgYAAABHAAACZAAAAGQAAABTAAAATAAAAFMAAABMAAAARwAAAVMAAABTAAAARwAAAmQAAAAGAAAFBgAAAwYAAAEGAAADZAAAAGQAAABTAAAAVQAAAUwAAABVAAAAZAAAAEcAAAFHAAADRwAAA1MAAABkAAAABgAAAwYAAAAGAAAABgAAAwAAAABkAAAAZAAAAFUAAANMAAAATAAAAGQAAABkAAAARwAAA0cAAABTAAAAZAAAAAYAAAMGAAADBgAAAwYAAAAAAAAAZAAAAGQAAABkAAAARwAAA0cAAANMAAAARwAAA1MAAABkAAAAZAAAAGQAAAAGAAADBgAAAwYAAAMGAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAABgAAAwYAAAMGAAAABgAAAGMAAAAAAAAAZAAAAGQAAABHAAABZAAAABYAAAJkAAAARwAAA2QAAABkAAAAAAAAAAAAAAAGAAACBgAAAgYAAANjAAAAAAAAAGQAAABTAAAAUwAAAEwAAAAWAAAAZAAAAEwAAABHAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAFUAAAFHAAACFgAAAEwAAABkAAAAZAAAAGQAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAZAAAAEwAAABHAAACRwAAAlMAAABVAAABRwAAAEwAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABkAAAARwAAAFQAAABUAAAAVAAAAFMAAABkAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABUAAAAVAAAAFQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAA== -2,4: ind: -2,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAksAAAJoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAAJLAAACaAAAAEsAAANLAAAASwAAAEsAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAACSwAAAxoAAAJSAAAAUgAAA1IAAAJSAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAUsAAANoAAAAWAAAAFgAAABSAAABWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAAFLAAACaAAAAGgAAABoAAAAGgAAA2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAADSwAAAmgAAAAAAAAAaAAAABoAAAJoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAGgAAABoAAANoAAAAAAAAAGgAAAAaAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAABoAAAEaAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAAAaAAABGgAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAWAAAAFgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAABoAAAAaAAADaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAaAAAAGgAAAmgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAAUcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAAJHAAABZAAAAEcAAANHAAADRwAAA0cAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAACRwAAAxYAAAJOAAABTgAAA04AAABOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAAkcAAAFkAAAAVAAAAFQAAABOAAACVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAANHAAADZAAAAGQAAABkAAAAFgAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAABRwAAAmQAAAAAAAAAZAAAABYAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAFgAAAhYAAABkAAAAAAAAAGQAAAAWAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAABYAAAEWAAABZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAAAWAAADFgAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAVAAAAFQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAABYAAAIWAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAWAAABFgAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,4: ind: -1,4 - tiles: aAAAAGgAAABLAAABSwAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAAAaAAACaAAAAEsAAANoAAAASwAAAUsAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAHgAAAB4AAAMaAAACSwAAAxoAAABSAAADGgAAAUsAAANLAAAAaAAAAAAAAAAAAAAAaAAAAGgAAAAaAAADGgAAADAAAAAwAAAAMAAAADAAAAAwAAAAWAAAAGgAAABLAAABSwAAAGgAAAAAAAAAAAAAAGgAAAAaAAACGgAAARoAAAAwAAAAHQAAAx0AAAEdAAABHQAAAmgAAABoAAAASwAAAksAAAJoAAAAAAAAAAAAAABoAAAAGgAAAUsAAAEaAAADMAAAAB0AAAESAAAAEgAAABIAAAAAAAAAaAAAAEsAAAJLAAACaAAAAAAAAAAAAAAAaAAAABoAAAJLAAAAGgAAAzAAAAAdAAABEgAAABoAAAMSAAAAAAAAAGgAAAAaAAABGgAAAmgAAAAAAAAAAAAAAGgAAAAaAAABSwAAARoAAAIwAAAAHQAAARIAAAASAAAAEgAAAAAAAABoAAAAGgAAAhoAAABoAAAAAAAAAAAAAABoAAAAGgAAAEsAAABLAAADMAAAAB0AAAIdAAAAHQAAAB0AAAIAAAAAaAAAABoAAAAaAAADaAAAAAAAAAAAAAAAaAAAAGgAAAAaAAACSwAAATAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAGgAAABYAAAAWAAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAEsAAABLAAABSwAAARoAAANoAAAAGgAAAwAAAABoAAAAGgAAAhoAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAaAAAABoAAAAaAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAGQAAABHAAADRwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAAAWAAADZAAAAEcAAAFkAAAARwAAAkcAAABkAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAGgAAAxoAAAIWAAAARwAAARYAAAFOAAADFgAAAEcAAABHAAACZAAAAAAAAAAAAAAAZAAAAGQAAAAWAAAAFgAAACwAAAAsAAAALAAAACwAAAAsAAAAVAAAAGQAAABHAAADRwAAAmQAAAAAAAAAAAAAAGQAAAAWAAADFgAAAxYAAAIsAAAAGQAAABkAAAEZAAADGQAAAGQAAABkAAAARwAAA0cAAANkAAAAAAAAAAAAAABkAAAAFgAAA0cAAAEWAAAALAAAABkAAAEOAAAADgAAAA4AAAAAAAAAZAAAAEcAAAJHAAACZAAAAAAAAAAAAAAAZAAAABYAAANHAAAAFgAAACwAAAAZAAAADgAAABYAAAIOAAAAAAAAAGQAAAAWAAADFgAAAWQAAAAAAAAAAAAAAGQAAAAWAAABRwAAAhYAAAAsAAAAGQAAAA4AAAAOAAAADgAAAAAAAABkAAAAFgAAABYAAABkAAAAAAAAAAAAAABkAAAAFgAAA0cAAAFHAAACLAAAABkAAAIZAAADGQAAAxkAAAEAAAAAZAAAABYAAAEWAAACZAAAAAAAAAAAAAAAZAAAAGQAAAAWAAACRwAAASwAAAAsAAAALAAAACwAAAAsAAAAAAAAAGQAAABUAAAAVAAAAGQAAAAAAAAAAAAAAAAAAABkAAAAZAAAAEcAAABHAAABRwAAABYAAANkAAAAFgAAAgAAAABkAAAAFgAAAxYAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAZAAAABYAAAAWAAABZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 4,3: ind: 4,3 - tiles: CwAAAQsAAAELAAAACwAAAAsAAAIKAAAACwAAAwAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAILAAACCwAAAgsAAAILAAACCgAAAAsAAAIAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAACgAAAAsAAAMLAAAACgAAAAsAAAELAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAgsAAAINAAAEDAAABAsAAAILAAABCwAAAgAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAAMAAABCwAAAQsAAAALAAACAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAACCwAAAAsAAAALAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAgsAAAMLAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAILAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BgAAAgYAAAMGAAACBgAAAwYAAAMGAAAABgAAAQAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAIGAAADBgAAAgYAAAMGAAACBgAAAAYAAAIAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAADBgAAAAYAAAMGAAADBgAAAAYAAAIGAAADAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAQYAAAMIAAAGBgAABAYAAAMGAAACBgAAAwAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAMGAAAGBgAAAQYAAAMGAAACAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAACBgAAAQYAAAMGAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAABgYAAAIGAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAIGAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 4,2: ind: 4,2 - tiles: aAAAAAAAAABnAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABLAAADSwAAAUsAAANLAAABSwAAAGgAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAABSwAAA0sAAAJoAAAAaAAAAGgAAABnAAAAAAAAAGcAAABnAAAAZwAAABoAAAIaAAABGgAAAUsAAAFLAAAASwAAAksAAANLAAAAGgAAAhoAAAMaAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAABSwAAAEsAAANLAAABSwAAAmgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAASwAAAksAAAJLAAABSwAAAUsAAAFoAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAoAAAALAAADCwAAAQsAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAALAAAACgAAAAsAAAIMAAAHCwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAACwAAAgsAAAELAAADCwAAAQsAAAELAAAACwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAsAAAALAAADCwAAAgoAAAAKAAAACwAAAgsAAAMAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAALAAABCwAAAQsAAAIMAAAHCgAAAAsAAAALAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAACgAAAAsAAAEMAAAECwAAAwsAAAALAAABCwAAAQAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAAAAAABjAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABHAAADRwAAA0cAAANHAAACRwAAAmQAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAARwAAAkcAAABHAAABRwAAAUcAAAFkAAAAZAAAAGQAAABjAAAAAAAAAGMAAABjAAAAYwAAABYAAAIWAAABFgAAA0cAAABHAAADRwAAAEcAAAJHAAAAFgAAAhYAAAEWAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABHAAABRwAAA0cAAANHAAABRwAAA2QAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAARwAAAkcAAAFHAAABRwAAAUcAAANkAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAYAAAAGAAADBgAAAQYAAAIAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAGAAADBgAAAAYAAAIGAAACBgAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAABgAAAQYAAAMGAAADBgAAAwYAAAMGAAACBgAAAgAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAYAAAIGAAADBgAAAQYAAAAGAAAABgAAAgYAAAIAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAGAAACBgAAAwYAAAEGAAAHBgAAAAYAAAEGAAACYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAABgAAAAYAAAMGAAAHBgAAAwYAAAMGAAADBgAAAgAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,4: ind: 0,4 - tiles: aAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAMeAAAAaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAABoAAAMaAAABaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAzAAAAAaAAAAGgAAABoAAAFoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAwAAAAGgAAAUsAAAAaAAACaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAACMAAAABoAAAFLAAADGgAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAzAAAAAaAAABSwAAARoAAAJoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAMwAAAASwAAAEsAAAEaAAABaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAAEsAAAEaAAADaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAEsAAABLAAADaAAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAIaAAAAZAAAAGQAAABkAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAALAAAABYAAAMWAAADZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAywAAAAWAAAAFgAAABYAAAFkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAsAAAAFgAAAUcAAAIWAAABZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAACLAAAABYAAABHAAADFgAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAywAAAAWAAADRwAAARYAAAJkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAsAAAARwAAAkcAAAMWAAABZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAALAAAAEcAAAAWAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAEcAAAJHAAAAZAAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 5,2: ind: 5,2 - tiles: AAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 5,1: ind: 5,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAA== -1,-7: ind: -1,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABLAAADGgAAAEsAAAJLAAABSwAAAWgAAABoAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADGgAAAhoAAABLAAACSwAAAEsAAABLAAABaAAAAGcAAABnAAAAZwAAAFAAAABQAAAAaAAAAEsAAAFLAAAASwAAAEsAAABLAAABSwAAA1AAAABLAAADSwAAA2gAAAAAAAAAAAAAAGcAAABQAAAAUAAAAFAAAABLAAADSwAAAksAAAFLAAACUAAAAFAAAABLAAADSwAAA0sAAANoAAAAAAAAAAAAAABnAAAAVwAAAFcAAABoAAAASwAAAEsAAAFLAAACSwAAA0sAAABLAAADSwAAAEsAAAFLAAADaAAAAGcAAABnAAAAZwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABHAAAAFgAAAkcAAAJHAAABRwAAAmQAAABkAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACFgAAABYAAAFHAAACRwAAA0cAAAFHAAADZAAAAGMAAABjAAAAYwAAAEwAAABMAAAAZAAAAEcAAABHAAADRwAAAUcAAABHAAAARwAAAUwAAABHAAAARwAAA2QAAAAAAAAAAAAAAGMAAABMAAAATAAAAEwAAABHAAACRwAAAkcAAANHAAABTAAAAEwAAABHAAABRwAAAkcAAAJkAAAAAAAAAAAAAABjAAAAUwAAAFMAAABkAAAARwAAAkcAAANHAAABRwAAAkcAAAFHAAADRwAAAkcAAAFHAAABZAAAAGMAAABjAAAAYwAAAA== -2,-7: ind: -2,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAABLAAABSwAAAWgAAABoAAAAaAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAFLAAADSwAAAksAAANLAAAASwAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAUAAAAEsAAABQAAAAUAAAAFAAAABQAAAAUAAAAEsAAANQAAAAUAAAAFAAAAAaAAAAUAAAAFAAAABQAAAAUAAAAGgAAABLAAAAUAAAAFAAAABQAAAAUAAAAFAAAABLAAADaAAAAFAAAABQAAAAaAAAAFAAAABQAAAAaAAAAFAAAABQAAAASwAAAVAAAABQAAAAUAAAAFkAAANQAAAASwAAA1AAAABXAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEcAAAJHAAAARwAAAGQAAABkAAAAZAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAFHAAABRwAAAEcAAAFHAAAARwAAAWQAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABTAAAATAAAAEcAAAJMAAAATAAAAEwAAABMAAAATAAAAEcAAABMAAAATAAAAEwAAAAWAAADTAAAAEwAAABMAAAATAAAAGQAAABHAAADTAAAAEwAAABMAAAATAAAAEwAAABHAAAAZAAAAEwAAABMAAAAZAAAAEwAAABMAAAAZAAAAEwAAABMAAAARwAAA0wAAABMAAAATAAAAFUAAANMAAAARwAAA0wAAABTAAAAZAAAAA== -3,-7: ind: -3,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAABoAAANoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAAAaAAADaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAGgAAAmgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABLAAAASwAAAFkAAABXAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAABYAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAAAWAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAFgAAAmQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABHAAACRwAAAVUAAANTAAAAZAAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAA== -5,-4: ind: -5,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAASAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASAAAAEgAAABIAAAASAAAAEgAAABIAAAAZwAAAGcAAABIAAAASAAAAGcAAABIAAAASAAAAEgAAABIAAAASAAAAEgAAABIAAAASAAAAEgAAABIAAAASAAAAEgAAABnAAAASAAAAEgAAABnAAAASAAAAEgAAABoAAAASAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEgAAABIAAAASAAAAEgAAABIAAAAZwAAAEgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABIAAAASAAAAEgAAABIAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAASAAAAEgAAABIAAAASAAAAEgAAABnAAAAZwAAAGcAAABnAAAAZwAAAEgAAABIAAAASAAAAEgAAABIAAAASAAAAEgAAABnAAAAZwAAAEgAAABIAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAEgAAABnAAAASAAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAARAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAYwAAAGMAAABEAAAARAAAAGMAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABjAAAARAAAAEQAAABjAAAARAAAAEQAAABkAAAARAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEQAAABEAAAARAAAAEQAAABEAAAAYwAAAEQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABEAAAARAAAAEQAAABEAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAARAAAAEQAAABEAAAARAAAAEQAAABjAAAAYwAAAGMAAABjAAAAYwAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABjAAAAYwAAAEQAAABEAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAEQAAABjAAAARAAAAGMAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAA== 5,-4: ind: 5,-4 - tiles: CwAAAwsAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAYLAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAACwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAwAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAMLAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAFCwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAQoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAALAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BgAAAwYAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAcGAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAADBgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAwYAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAMGAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAHBgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAwYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 5,-5: ind: 5,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -6,-4: ind: -6,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAA== -6,-2: ind: -6,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -6,-3: ind: -6,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - bodyStatus: InAir @@ -435,18 +430,23 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 3752: 6,-71 - 3753: -14,-16 - 4029: -69,-45 - 4030: -70,-45 - 4031: -71,-45 + 3748: 6,-71 + 3749: -14,-16 + 4021: -69,-45 + 4034: 1,-2 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 4066: -71,-45 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: Arrows decals: - 3218: 67,-46 - 3219: 67,-47 + 3214: 67,-46 + 3215: 67,-47 - node: color: '#FFFFFFFF' id: Bot @@ -523,70 +523,71 @@ entities: 587: -38,42 627: -36,-101 628: 67,-16 - 3106: 73,-37 - 3107: 73,-36 - 3108: 72,-36 - 3109: 73,-35 - 3176: -52,-59 - 3197: 68,-69 - 3212: 69,-46 - 3213: 69,-47 - 3214: 70,-46 - 3215: 70,-47 - 3389: -47,-41 - 3394: -12,-14 - 3589: 33,-83 - 3590: 33,-90 - 3591: 30,-95 - 3592: 48,-95 - 3593: 45,-90 - 3594: 45,-83 - 3702: -58,-19 - 3703: -18,69 - 3750: 6,-86 - 3762: -53,43 - 3763: -53,42 - 3764: -50,46 - 3803: 68,-29 - 3808: 68,-28 - 3809: 69,-29 - 3810: 67,-29 - 3811: 68,-30 - 3812: 51,-83 - 3813: 51,-90 - 3896: -77,-32 - 3901: -64,-46 - 4014: -67,-43 - 4038: -47,-40 + 3102: 73,-37 + 3103: 73,-36 + 3104: 72,-36 + 3105: 73,-35 + 3172: -52,-59 + 3193: 68,-69 + 3208: 69,-46 + 3209: 69,-47 + 3210: 70,-46 + 3211: 70,-47 + 3385: -47,-41 + 3390: -12,-14 + 3585: 33,-83 + 3586: 33,-90 + 3587: 30,-95 + 3588: 48,-95 + 3589: 45,-90 + 3590: 45,-83 + 3698: -58,-19 + 3699: -18,69 + 3746: 6,-86 + 3758: -53,43 + 3759: -53,42 + 3760: -50,46 + 3799: 68,-29 + 3804: 68,-28 + 3805: 69,-29 + 3806: 67,-29 + 3807: 68,-30 + 3808: 51,-83 + 3809: 51,-90 + 3892: -77,-32 + 3897: -64,-46 + 4010: -67,-43 + 4028: -47,-40 + 4030: 1,-3 + 4031: 2,-3 + 4032: 3,-3 - node: color: '#60A5D9D6' id: BotGreyscale decals: - 3487: -25,-60 + 3483: -25,-60 - node: color: '#FFFFFFFF' id: BotLeft decals: 225: -19,3 226: -21,1 - 3104: 72,-37 - 3804: 67,-28 - 3805: 69,-30 - 3806: 67,-30 - 3807: 69,-28 - 4023: -71,-45 - 4024: -70,-45 - 4025: -69,-45 + 3100: 72,-37 + 3800: 67,-28 + 3801: 69,-30 + 3802: 67,-30 + 3803: 69,-28 + 4019: -69,-45 + 4064: -71,-45 - node: color: '#FFFFFFFF' id: BotRight decals: 223: -21,3 224: -19,1 - 3105: 72,-35 - 4026: -71,-45 - 4027: -70,-45 - 4028: -69,-45 + 3101: 72,-35 + 4020: -69,-45 + 4065: -71,-45 - node: color: '#FFFFFFFF' id: Box @@ -596,247 +597,247 @@ entities: 220: -21,2 221: -19,2 222: -20,1 - 3751: 7,-83 + 3747: 7,-83 - node: color: '#D4D4D4D6' id: BrickTileSteelCornerNe decals: - 3415: 30,4 + 3411: 30,4 - node: color: '#D4D4D4D6' id: BrickTileSteelCornerNw decals: - 3414: 28,4 + 3410: 28,4 - node: color: '#D4D4D4D6' id: BrickTileSteelCornerSe decals: - 3413: 30,-1 + 3409: 30,-1 - node: color: '#D4D4D4D6' id: BrickTileSteelEndS decals: - 3410: 28,-3 + 3406: 28,-3 - node: color: '#D4D4D4D6' id: BrickTileSteelInnerNe decals: - 3447: 20,-3 + 3443: 20,-3 - node: color: '#D4D4D4D6' id: BrickTileSteelInnerNw decals: - 3449: 27,-3 + 3445: 27,-3 - node: color: '#D4D4D4D6' id: BrickTileSteelInnerSe decals: - 3421: 28,-1 - 3448: 20,4 + 3417: 28,-1 + 3444: 20,4 - node: color: '#D4D4D4D6' id: BrickTileSteelInnerSw decals: - 3446: 27,4 + 3442: 27,4 - node: color: '#D4D4D4D6' id: BrickTileSteelLineE decals: - 3411: 28,-2 - 3416: 30,3 - 3417: 30,2 - 3418: 30,1 - 3419: 30,0 - 3434: 20,3 - 3435: 20,2 - 3436: 20,1 - 3437: 20,0 - 3438: 20,-1 - 3439: 20,-2 + 3407: 28,-2 + 3412: 30,3 + 3413: 30,2 + 3414: 30,1 + 3415: 30,0 + 3430: 20,3 + 3431: 20,2 + 3432: 20,1 + 3433: 20,0 + 3434: 20,-1 + 3435: 20,-2 - node: color: '#D4D4D4D6' id: BrickTileSteelLineN decals: - 3420: 29,4 - 3440: 21,-3 - 3441: 22,-3 - 3442: 23,-3 - 3443: 24,-3 - 3444: 25,-3 - 3445: 26,-3 + 3416: 29,4 + 3436: 21,-3 + 3437: 22,-3 + 3438: 23,-3 + 3439: 24,-3 + 3440: 25,-3 + 3441: 26,-3 - node: color: '#D4D4D4D6' id: BrickTileSteelLineS decals: - 3412: 29,-1 - 3428: 26,4 - 3429: 25,4 - 3430: 24,4 - 3431: 23,4 - 3432: 22,4 - 3433: 21,4 + 3408: 29,-1 + 3424: 26,4 + 3425: 25,4 + 3426: 24,4 + 3427: 23,4 + 3428: 22,4 + 3429: 21,4 - node: color: '#D4D4D4D6' id: BrickTileSteelLineW decals: - 3404: 28,-2 - 3405: 28,3 - 3406: 28,2 - 3407: 28,1 - 3408: 28,0 - 3409: 28,-1 - 3422: 27,3 - 3423: 27,2 - 3424: 27,1 - 3425: 27,0 - 3426: 27,-1 - 3427: 27,-2 + 3400: 28,-2 + 3401: 28,3 + 3402: 28,2 + 3403: 28,1 + 3404: 28,0 + 3405: 28,-1 + 3418: 27,3 + 3419: 27,2 + 3420: 27,1 + 3421: 27,0 + 3422: 27,-1 + 3423: 27,-2 - node: color: '#334E6DC8' id: BrickTileWhiteBox decals: - 3709: 9,-21 + 3705: 9,-21 - node: color: '#3AB3DAFF' id: BrickTileWhiteBox decals: - 3517: -19,-47 + 3513: -19,-47 - node: color: '#3C44AAFF' id: BrickTileWhiteBox decals: - 3514: -19,-49 + 3510: -19,-49 - node: color: '#52B4E996' id: BrickTileWhiteBox decals: - 3705: 9,-23 + 3701: 9,-23 - node: color: '#80C71FFF' id: BrickTileWhiteBox decals: - 3516: -19,-48 + 3512: -19,-48 - node: color: '#835432FF' id: BrickTileWhiteBox decals: - 3512: -22,-47 + 3508: -22,-47 - node: color: '#9D9D97FF' id: BrickTileWhiteBox decals: - 3515: -19,-46 + 3511: -19,-46 - node: color: '#9FED5896' id: BrickTileWhiteBox decals: - 3707: 11,-23 + 3703: 11,-23 - node: color: '#A4610696' id: BrickTileWhiteBox decals: - 3708: 8,-21 + 3704: 8,-21 - node: color: '#B02E26FF' id: BrickTileWhiteBox decals: - 3513: -22,-49 + 3509: -22,-49 - node: color: '#C74EBDFF' id: BrickTileWhiteBox decals: - 3511: -22,-46 + 3507: -22,-46 - node: color: '#D381C996' id: BrickTileWhiteBox decals: - 3704: 8,-23 + 3700: 8,-23 - node: color: '#D4D4D496' id: BrickTileWhiteBox decals: - 3710: 10,-21 + 3706: 10,-21 - node: color: '#DE3A3A96' id: BrickTileWhiteBox decals: - 3706: 10,-23 + 3702: 10,-23 - node: color: '#EFB34196' id: BrickTileWhiteBox decals: - 3711: 11,-21 + 3707: 11,-21 - node: color: '#FEAC3DFF' id: BrickTileWhiteBox decals: - 3518: -22,-48 + 3514: -22,-48 - node: color: '#FFA5180C' id: BrickTileWhiteBox decals: - 3944: -42,0 - 3945: -37,0 + 3940: -42,0 + 3941: -37,0 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: - 3712: 12,-20 + 3708: 12,-20 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: - 3715: 7,-20 + 3711: 7,-20 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe decals: - 3713: 12,-24 + 3709: 12,-24 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSw decals: - 3714: 7,-24 + 3710: 7,-24 - node: color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 3720: 12,-21 - 3721: 12,-22 - 3722: 12,-23 + 3716: 12,-21 + 3717: 12,-22 + 3718: 12,-23 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 3716: 8,-20 - 3717: 9,-20 - 3718: 10,-20 - 3719: 11,-20 + 3712: 8,-20 + 3713: 9,-20 + 3714: 10,-20 + 3715: 11,-20 - node: color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 3726: 8,-24 - 3727: 9,-24 - 3728: 10,-24 - 3729: 11,-24 + 3722: 8,-24 + 3723: 9,-24 + 3724: 10,-24 + 3725: 11,-24 - node: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 3723: 7,-21 - 3724: 7,-22 - 3725: 7,-23 + 3719: 7,-21 + 3720: 7,-22 + 3721: 7,-23 - node: color: '#FFFFFFFF' id: Busha1 decals: 526: -8.396269,51.324306 527: -8.978583,51.511806 - 2990: 5.324413,-0.030564666 - 2996: 6.590038,0.46943533 - 2997: 10.590037,0.50068533 - 2998: 11.636912,0.26631033 + 2986: 5.324413,-0.030564666 + 2992: 6.590038,0.46943533 + 2993: 10.590037,0.50068533 + 2994: 11.636912,0.26631033 - node: color: '#FFFFFFFF' id: Busha2 @@ -873,29 +874,29 @@ entities: color: '#FFFFFFFF' id: Bushe4 decals: - 3096: 65.93705,-9.8447485 - 3102: -11.957823,6.4384537 - 3103: -4.0984473,3.9853287 + 3092: 65.93705,-9.8447485 + 3098: -11.957823,6.4384537 + 3099: -4.0984473,3.9853287 - node: color: '#FFFFFFFF' id: Bushf1 decals: - 3579: 13.976057,-83.06645 - 3580: 14.054182,-84.08208 - 3581: 13.866682,-85.00395 - 3582: 16.304182,-85.19145 - 3583: 16.413557,-83.76958 - 3584: 16.085432,-82.48833 - 3585: 16.444807,-83.11333 - 3586: 15.538557,-85.22248 - 3587: 14.710432,-85.15998 + 3575: 13.976057,-83.06645 + 3576: 14.054182,-84.08208 + 3577: 13.866682,-85.00395 + 3578: 16.304182,-85.19145 + 3579: 16.413557,-83.76958 + 3580: 16.085432,-82.48833 + 3581: 16.444807,-83.11333 + 3582: 15.538557,-85.22248 + 3583: 14.710432,-85.15998 - node: color: '#FFFFFFFF' id: Bushf2 decals: - 3093: 66.0308,-8.000998 - 3094: 65.93705,-8.6728735 - 3095: 66.2183,-9.5634985 + 3089: 66.0308,-8.000998 + 3090: 65.93705,-8.6728735 + 3091: 66.2183,-9.5634985 - node: color: '#FFFFFFFF' id: Bushh2 @@ -913,8 +914,8 @@ entities: color: '#FFFFFFFF' id: Bushi2 decals: - 2995: 5.902538,0.18818533 - 3595: 33.10084,-87.77701 + 2991: 5.902538,0.18818533 + 3591: 33.10084,-87.77701 - node: color: '#FFFFFFFF' id: Bushi3 @@ -941,7 +942,7 @@ entities: color: '#FFFFFFFF' id: Caution decals: - 3161: 16.006746,36.692352 + 3157: 16.006746,36.692352 - node: color: '#334E6DC8' id: CheckerNESW @@ -988,7 +989,7 @@ entities: color: '#DE3A3A53' id: CheckerNWSE decals: - 3188: 29,32 + 3184: 29,32 - node: color: '#DE3A3A5A' id: CheckerNWSE @@ -1018,6 +1019,12 @@ entities: decals: 24: -21,-83 25: -21,-82 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 4033: 4,-3 + 4063: -70,-45 - node: cleanable: True color: '#DE3A3A96' @@ -1029,66 +1036,66 @@ entities: color: '#0F267C34' id: DiagonalCheckerBOverlay decals: - 3990: -25,-33 - 3991: -25,-34 - 3992: -24,-34 - 3993: -24,-33 - 3994: -26,-33 - 3995: -26,-34 - 3996: -26,-32 - 3997: -25,-32 - 3998: -24,-32 - 3999: -23,-32 - 4000: -23,-33 - 4001: -23,-34 - 4002: -23,-36 - 4003: -23,-35 - 4004: -24,-35 - 4005: -24,-36 - 4006: -24,-37 - 4007: -23,-37 - 4008: -25,-37 - 4009: -26,-37 - 4010: -26,-36 - 4011: -25,-36 - 4012: -25,-35 - 4013: -26,-35 + 3986: -25,-33 + 3987: -25,-34 + 3988: -24,-34 + 3989: -24,-33 + 3990: -26,-33 + 3991: -26,-34 + 3992: -26,-32 + 3993: -25,-32 + 3994: -24,-32 + 3995: -23,-32 + 3996: -23,-33 + 3997: -23,-34 + 3998: -23,-36 + 3999: -23,-35 + 4000: -24,-35 + 4001: -24,-36 + 4002: -24,-37 + 4003: -23,-37 + 4004: -25,-37 + 4005: -26,-37 + 4006: -26,-36 + 4007: -25,-36 + 4008: -25,-35 + 4009: -26,-35 - node: color: '#923A3A93' id: DiagonalCheckerBOverlay decals: - 3816: -1,17 - 3817: -1,18 - 3818: -2,18 - 3819: -2,19 - 3820: -2,20 - 3821: -1,21 - 3822: -1,20 - 3823: -1,19 - 3824: 0,21 - 3825: 0,20 - 3826: 0,18 - 3827: 0,19 - 3828: 0,17 - 3829: 0,16 - 3830: 2,16 - 3831: 1,16 - 3832: 1,17 - 3833: 2,17 - 3834: 2,18 - 3835: 1,18 - 3836: 1,20 - 3837: 1,19 - 3838: 2,19 - 3839: 2,20 - 3840: 2,21 - 3841: 1,21 + 3812: -1,17 + 3813: -1,18 + 3814: -2,18 + 3815: -2,19 + 3816: -2,20 + 3817: -1,21 + 3818: -1,20 + 3819: -1,19 + 3820: 0,21 + 3821: 0,20 + 3822: 0,18 + 3823: 0,19 + 3824: 0,17 + 3825: 0,16 + 3826: 2,16 + 3827: 1,16 + 3828: 1,17 + 3829: 2,17 + 3830: 2,18 + 3831: 1,18 + 3832: 1,20 + 3833: 1,19 + 3834: 2,19 + 3835: 2,20 + 3836: 2,21 + 3837: 1,21 - node: color: '#983A3A93' id: DiagonalCheckerBOverlay decals: - 3842: -1,16 - 3843: -2,21 + 3838: -1,16 + 3839: -2,21 - node: cleanable: True color: '#D4D4D496' @@ -1232,8 +1239,8 @@ entities: color: '#D4D4D4D6' id: DirtLight decals: - 3450: 29,3 - 3451: 29,3 + 3446: 29,3 + 3447: 29,3 - node: color: '#FFFFFFFF' id: DirtLight @@ -1316,8 +1323,8 @@ entities: color: '#D4D4D4D6' id: DirtMedium decals: - 3452: 30,-1 - 3453: 27,-2 + 3448: 30,-1 + 3449: 27,-2 - node: color: '#FFFFFFFF' id: DirtMedium @@ -1384,18 +1391,18 @@ entities: color: '#FFFFFFFF' id: FlowersBROne decals: - 3892: -4.2428155,17.233944 - 3893: -8.086565,18.640194 + 3888: -4.2428155,17.233944 + 3889: -8.086565,18.640194 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: 19: 23,-20 - 2999: 5.027538,0.48506033 - 3000: 5.996288,0.81318533 - 3001: 6.683788,0.23506033 - 3894: -8.649066,17.499569 - 3895: -5.2115655,18.499569 + 2995: 5.027538,0.48506033 + 2996: 5.996288,0.81318533 + 2997: 6.683788,0.23506033 + 3890: -8.649066,17.499569 + 3891: -5.2115655,18.499569 - node: color: '#FFFFFFFF' id: Flowersbr2 @@ -1419,40 +1426,40 @@ entities: 503: -3.1144176,47.88133 504: -5.0675426,53.662476 505: -4.1456676,53.1781 - 3097: 66.015175,-7.813498 - 3098: 66.046425,-8.6728735 - 3099: 66.140175,-10.1103735 - 3484: 31.822735,-40.888805 + 3093: 66.015175,-7.813498 + 3094: 66.046425,-8.6728735 + 3095: 66.140175,-10.1103735 + 3480: 31.822735,-40.888805 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: - 3002: 5.761913,0.21943533 - 3003: 11.324412,0.73506033 - 3004: 10.449412,0.29756033 - 3005: 11.465037,0.25068533 - 3459: -40.519615,3.8355665 - 3460: -41.269615,3.0543165 - 3461: -40.25399,5.8355665 + 2998: 5.761913,0.21943533 + 2999: 11.324412,0.73506033 + 3000: 10.449412,0.29756033 + 3001: 11.465037,0.25068533 + 3455: -40.519615,3.8355665 + 3456: -41.269615,3.0543165 + 3457: -40.25399,5.8355665 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: 21: 26,-20 22: 29,-20 - 3470: -35.06649,3.0386915 - 3471: -36.59774,5.4761915 - 3472: -32.2259,5.128909 - 3473: -32.647774,3.019534 - 3474: -31.054026,2.972659 + 3466: -35.06649,3.0386915 + 3467: -36.59774,5.4761915 + 3468: -32.2259,5.128909 + 3469: -32.647774,3.019534 + 3470: -31.054026,2.972659 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: - 3555: 14.548721,-83.70324 - 3556: 14.283096,-84.48449 - 3557: 15.423721,-84.906364 - 3558: 15.876846,-83.750114 + 3551: 14.548721,-83.70324 + 3552: 14.283096,-84.48449 + 3553: 15.423721,-84.906364 + 3554: 15.876846,-83.750114 - node: color: '#FFFFFFFF' id: Flowersy1 @@ -1462,12 +1469,12 @@ entities: 161: 53.97966,-9.7814665 162: 53.38591,-8.9064665 163: 53.995285,-8.468966 - 3559: 14.220596,-83.85949 - 3560: 14.220596,-85.01574 - 3561: 15.892471,-84.45324 - 3562: 15.642471,-83.32824 - 3601: 45.435932,-87.78455 - 3602: 45.123432,-85.4408 + 3555: 14.220596,-83.85949 + 3556: 14.220596,-85.01574 + 3557: 15.892471,-84.45324 + 3558: 15.642471,-83.32824 + 3597: 45.435932,-87.78455 + 3598: 45.123432,-85.4408 - node: color: '#FFFFFFFF' id: Flowersy2 @@ -1483,9 +1490,9 @@ entities: color: '#2B3F4A22' id: FullTileOverlayGreyscale decals: - 3986: -31,-4 - 3987: -29,-3 - 3988: -31,-7 + 3982: -31,-4 + 3983: -29,-3 + 3984: -31,-7 - node: color: '#D4D4D496' id: FullTileOverlayGreyscale @@ -1521,35 +1528,35 @@ entities: color: '#FFFFFFFF' id: Grassa1 decals: - 3454: -40.269615,3.5386915 - 3455: -41.50399,4.0230665 - 3475: -30.3509,4.378909 - 3476: -29.50715,3.753909 - 3477: -30.429026,5.613284 - 3478: -31.5384,5.925784 - 3479: -32.3509,5.816409 - 3480: -29.6634,5.738284 - 3481: -32.710274,3.2350059 - 3482: 30.932108,-40.326305 - 3483: 31.697735,-40.576305 - 3874: -8.570941,18.515194 - 3875: -7.4146905,18.405819 - 3876: -7.0709405,17.405819 - 3877: -7.9771905,18.515194 - 3878: -8.649066,17.233944 - 3879: -5.2115655,17.890194 - 3880: -5.6959405,17.249569 - 3881: -4.1803155,17.265194 - 3882: -5.2115655,18.671444 + 3450: -40.269615,3.5386915 + 3451: -41.50399,4.0230665 + 3471: -30.3509,4.378909 + 3472: -29.50715,3.753909 + 3473: -30.429026,5.613284 + 3474: -31.5384,5.925784 + 3475: -32.3509,5.816409 + 3476: -29.6634,5.738284 + 3477: -32.710274,3.2350059 + 3478: 30.932108,-40.326305 + 3479: 31.697735,-40.576305 + 3870: -8.570941,18.515194 + 3871: -7.4146905,18.405819 + 3872: -7.0709405,17.405819 + 3873: -7.9771905,18.515194 + 3874: -8.649066,17.233944 + 3875: -5.2115655,17.890194 + 3876: -5.6959405,17.249569 + 3877: -4.1803155,17.265194 + 3878: -5.2115655,18.671444 - node: color: '#FFFFFFFF' id: Grassa2 decals: - 3596: 32.48763,-86.22205 - 3597: 32.909504,-86.76893 - 3598: 44.967182,-87.42518 - 3599: 45.748432,-86.90955 - 3600: 44.967182,-86.36268 + 3592: 32.48763,-86.22205 + 3593: 32.909504,-86.76893 + 3594: 44.967182,-87.42518 + 3595: 45.748432,-86.90955 + 3596: 44.967182,-86.36268 - node: color: '#FFFFFFFF' id: Grassa3 @@ -1572,29 +1579,29 @@ entities: color: '#FFFFFFFF' id: Grassa4 decals: - 3462: -36.175865,3.0074415 - 3463: -35.144615,3.8199415 - 3464: -35.394615,4.5855665 - 3465: -34.94149,4.6636915 - 3466: -36.59774,5.5230665 + 3458: -36.175865,3.0074415 + 3459: -35.144615,3.8199415 + 3460: -35.394615,4.5855665 + 3461: -34.94149,4.6636915 + 3462: -36.59774,5.5230665 - node: color: '#FFFFFFFF' id: Grassb2 decals: - 3101: -11.879698,6.0478287 + 3097: -11.879698,6.0478287 - node: color: '#FFFFFFFF' id: Grassb5 decals: - 3883: -5.8053155,18.655819 - 3884: -7.0553155,18.890194 - 3885: -7.2584405,17.108944 - 3886: -7.2740655,17.937069 - 3887: -8.633441,18.968319 - 3888: -5.8834405,17.124569 - 3889: -5.9303155,19.077694 - 3890: -4.1021905,17.968319 - 3891: -4.9615655,17.671444 + 3879: -5.8053155,18.655819 + 3880: -7.0553155,18.890194 + 3881: -7.2584405,17.108944 + 3882: -7.2740655,17.937069 + 3883: -8.633441,18.968319 + 3884: -5.8834405,17.124569 + 3885: -5.9303155,19.077694 + 3886: -4.1021905,17.968319 + 3887: -4.9615655,17.671444 - node: color: '#FFFFFFFF' id: Grassc1 @@ -1618,18 +1625,18 @@ entities: 463: 5.9810176,54.171776 464: 7.4810176,55.671776 465: 9.465392,55.265526 - 3456: -41.832115,3.1480665 - 3457: -42.082115,4.5074415 - 3458: -40.425865,5.7261915 - 3467: -36.44149,5.3668165 - 3468: -36.644615,3.3824415 - 3469: -35.37899,3.1168165 + 3452: -41.832115,3.1480665 + 3453: -42.082115,4.5074415 + 3454: -40.425865,5.7261915 + 3463: -36.44149,5.3668165 + 3464: -36.644615,3.3824415 + 3465: -35.37899,3.1168165 - node: color: '#FFFFFFFF' id: Grassc4 decals: 396: -5.001564,4.018616 - 3100: -12.004698,6.9072037 + 3096: -12.004698,6.9072037 - node: color: '#FFFFFFFF' id: Grasse2 @@ -1672,14 +1679,14 @@ entities: 574: -8.928438,56.05247 575: -10.678438,55.30247 576: -10.850313,53.86497 - 3862: -8.633441,18.608944 - 3863: -8.617816,17.921444 - 3864: -7.9146905,18.593319 - 3865: -7.3209405,18.265194 - 3866: -4.5709405,18.452694 - 3867: -5.6178155,17.983944 - 3868: -5.7896905,17.421444 - 3869: -4.5084405,17.358944 + 3858: -8.633441,18.608944 + 3859: -8.617816,17.921444 + 3860: -7.9146905,18.593319 + 3861: -7.3209405,18.265194 + 3862: -4.5709405,18.452694 + 3863: -5.6178155,17.983944 + 3864: -5.7896905,17.421444 + 3865: -4.5084405,17.358944 - node: color: '#FFFFFFFF' id: Grasse3 @@ -1691,20 +1698,14 @@ entities: 470: 11.789851,52.392174 471: 12.117976,52.5328 472: 12.852351,53.9703 - 3870: -7.1178155,17.671444 - 3871: -4.1646905,18.749569 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale - decals: - 4046: 27,-35 - 4055: 28,-35 + 3866: -7.1178155,17.671444 + 3867: -4.1646905,18.749569 - node: color: '#50AF7F6F' id: HalfTileOverlayGreyscale decals: - 3814: -8,12 - 3815: -10,12 + 3810: -8,12 + 3811: -10,12 - node: color: '#D381C996' id: HalfTileOverlayGreyscale @@ -1721,7 +1722,7 @@ entities: color: '#EFB34150' id: HalfTileOverlayGreyscale decals: - 3088: -16,-5 + 3084: -16,-5 - node: color: '#EFB3415A' id: HalfTileOverlayGreyscale @@ -1732,12 +1733,12 @@ entities: color: '#EFB34160' id: HalfTileOverlayGreyscale decals: - 3063: -24,-5 - 3064: -23,-5 - 3065: -21,-5 - 3066: -20,-5 - 3067: -18,-5 - 3068: -17,-5 + 3059: -24,-5 + 3060: -23,-5 + 3061: -21,-5 + 3062: -20,-5 + 3063: -18,-5 + 3064: -17,-5 - node: color: '#FFFFFF79' id: HalfTileOverlayGreyscale @@ -1769,12 +1770,6 @@ entities: 660: -18,-62 661: -19,-62 662: -20,-62 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - decals: - 4044: 27,-40 - 4045: 28,-40 - node: color: '#6C896FAB' id: HalfTileOverlayGreyscale180 @@ -1791,8 +1786,8 @@ entities: color: '#D4D4D47C' id: HalfTileOverlayGreyscale180 decals: - 3387: 5,-60 - 3388: 6,-60 + 3383: 5,-60 + 3384: 6,-60 - node: color: '#D4D4D496' id: HalfTileOverlayGreyscale180 @@ -1812,16 +1807,16 @@ entities: color: '#EFB34160' id: HalfTileOverlayGreyscale180 decals: - 3053: -22,6 - 3054: -23,6 - 3055: -20,6 + 3049: -22,6 + 3050: -23,6 + 3051: -20,6 - node: color: '#EFB34163' id: HalfTileOverlayGreyscale180 decals: - 3010: -19,6 - 3011: -18,6 - 3012: -17,6 + 3006: -19,6 + 3007: -18,6 + 3008: -17,6 - node: color: '#FFFFFF79' id: HalfTileOverlayGreyscale180 @@ -1834,14 +1829,6 @@ entities: id: HalfTileOverlayGreyscale270 decals: 15: 0,2 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - decals: - 4047: 26,-36 - 4048: 26,-37 - 4049: 26,-38 - 4050: 26,-39 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 @@ -1857,7 +1844,7 @@ entities: color: '#EFB34153' id: HalfTileOverlayGreyscale270 decals: - 3082: -15,5 + 3078: -15,5 - node: color: '#EFB3415A' id: HalfTileOverlayGreyscale270 @@ -1874,17 +1861,13 @@ entities: color: '#EFB34160' id: HalfTileOverlayGreyscale270 decals: - 3061: -15,-4 + 3057: -15,-4 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 decals: 28: 40,-26 29: 40,-27 - 4051: 29,-36 - 4052: 29,-37 - 4053: 29,-38 - 4054: 29,-39 - node: color: '#D381C996' id: HalfTileOverlayGreyscale90 @@ -1910,10 +1893,10 @@ entities: color: '#EFB34160' id: HalfTileOverlayGreyscale90 decals: - 3057: -25,5 - 3058: -25,4 - 3059: -25,0 - 3060: -25,-1 + 3053: -25,5 + 3054: -25,4 + 3055: -25,0 + 3056: -25,-1 - node: color: '#FFFFFF79' id: HalfTileOverlayGreyscale90 @@ -1923,7 +1906,7 @@ entities: color: '#FFFFFFFF' id: HatchSmall decals: - 3217: 51,-56 + 3213: 51,-56 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -1937,25 +1920,25 @@ entities: color: '#EFB34196' id: MiniTileCheckerAOverlay decals: - 3316: -38,-9 - 3317: -37,-9 - 3318: -37,-10 - 3319: -38,-10 - 3320: -38,-11 - 3321: -37,-11 - 3322: -38,-12 - 3323: -37,-12 - 3324: -38,-8 - 3325: -37,-8 - 3326: -38,-7 - 3327: -37,-7 + 3312: -38,-9 + 3313: -37,-9 + 3314: -37,-10 + 3315: -38,-10 + 3316: -38,-11 + 3317: -37,-11 + 3318: -38,-12 + 3319: -37,-12 + 3320: -38,-8 + 3321: -37,-8 + 3322: -38,-7 + 3323: -37,-7 - node: color: '#D4D4D4C7' id: MiniTileSteelBox decals: - 3069: -20,-6 - 3070: -16,-6 - 3071: -20,7 + 3065: -20,-6 + 3066: -16,-6 + 3067: -20,7 - node: color: '#D4D4D4D3' id: MiniTileSteelBox @@ -1978,7 +1961,7 @@ entities: color: '#D4D4D4CD' id: MiniTileSteelCornerNe decals: - 3275: 18,7 + 3271: 18,7 - node: color: '#D4D4D4D3' id: MiniTileSteelCornerNe @@ -2036,22 +2019,22 @@ entities: color: '#88EFB1D9' id: MiniTileSteelCornerNw decals: - 3090: -28,-78 + 3086: -28,-78 - node: color: '#D4D4D4AE' id: MiniTileSteelCornerNw decals: - 3278: 33,-40 + 3274: 33,-40 - node: color: '#D4D4D4B4' id: MiniTileSteelCornerNw decals: - 3384: -7,-41 + 3380: -7,-41 - node: color: '#D4D4D4CD' id: MiniTileSteelCornerNw decals: - 3276: 16,7 + 3272: 16,7 - node: color: '#D4D4D4D3' id: MiniTileSteelCornerNw @@ -2161,12 +2144,12 @@ entities: color: '#88EFB1D9' id: MiniTileSteelCornerSw decals: - 3091: -28,-81 + 3087: -28,-81 - node: color: '#D4D4D4C3' id: MiniTileSteelCornerSw decals: - 3396: -27,-7 + 3392: -27,-7 - node: color: '#D4D4D4D3' id: MiniTileSteelCornerSw @@ -2230,7 +2213,7 @@ entities: color: '#D4D4D4C7' id: MiniTileSteelInnerNe decals: - 3075: -19,7 + 3071: -19,7 - node: color: '#D4D4D4D3' id: MiniTileSteelInnerNe @@ -2250,31 +2233,31 @@ entities: color: '#D4D4D4D6' id: MiniTileSteelInnerNe decals: - 3084: -25.018312,-5.498596 - 3085: -25.283937,-5.498596 - 3086: -25.502687,-5.498596 + 3080: -25.018312,-5.498596 + 3081: -25.283937,-5.498596 + 3082: -25.502687,-5.498596 - node: color: '#D4D4D4FF' id: MiniTileSteelInnerNe decals: - 3357: -39,-13 + 3353: -39,-13 - node: color: '#D4D4D4AE' id: MiniTileSteelInnerNw decals: - 3283: 33,-42 + 3279: 33,-42 - node: color: '#D4D4D4C0' id: MiniTileSteelInnerNw decals: - 3047: -14.760899,-5.480981 - 3048: -15.010899,-5.480981 - 3049: -14.526524,-5.480981 + 3043: -14.760899,-5.480981 + 3044: -15.010899,-5.480981 + 3045: -14.526524,-5.480981 - node: color: '#D4D4D4C7' id: MiniTileSteelInnerNw decals: - 3076: -17,7 + 3072: -17,7 - node: color: '#D4D4D4D3' id: MiniTileSteelInnerNw @@ -2293,19 +2276,19 @@ entities: color: '#D4D4D4FF' id: MiniTileSteelInnerNw decals: - 3355: -36,-13 + 3351: -36,-13 - node: color: '#D4D4D4C0' id: MiniTileSteelInnerSe decals: - 3050: -25.008694,6.5088334 - 3051: -25.274319,6.5088334 - 3052: -25.508694,6.5088334 + 3046: -25.008694,6.5088334 + 3047: -25.274319,6.5088334 + 3048: -25.508694,6.5088334 - node: color: '#D4D4D4C7' id: MiniTileSteelInnerSe decals: - 3074: -23,-6 + 3070: -23,-6 - node: color: '#D4D4D4D3' id: MiniTileSteelInnerSe @@ -2324,15 +2307,15 @@ entities: color: '#D4D4D4FF' id: MiniTileSteelInnerSe decals: - 3356: -39,-6 + 3352: -39,-6 - node: color: '#D4D4D4C7' id: MiniTileSteelInnerSw decals: - 3073: -21,-6 - 3078: -14.7582035,6.5086117 - 3079: -14.5238285,6.5086117 - 3080: -15.0082035,6.5086117 + 3069: -21,-6 + 3074: -14.7582035,6.5086117 + 3075: -14.5238285,6.5086117 + 3076: -15.0082035,6.5086117 - node: color: '#D4D4D4D3' id: MiniTileSteelInnerSw @@ -2357,33 +2340,33 @@ entities: color: '#D4D4D4FF' id: MiniTileSteelInnerSw decals: - 3354: -36,-6 + 3350: -36,-6 - node: color: '#C8C8C89E' id: MiniTileSteelLineE decals: - 3757: 18,0 - 3758: 18,1 + 3753: 18,0 + 3754: 18,1 - node: color: '#D4D4D496' id: MiniTileSteelLineE decals: - 3175: -19,-23 + 3171: -19,-23 - node: color: '#D4D4D4C0' id: MiniTileSteelLineE decals: - 3036: -25.510418,5.5102654 - 3037: -25.510418,4.5102654 - 3038: -25.510418,3.5239472 - 3039: -25.510418,2.5239472 - 3040: -25.510418,1.5420241 - 3041: -25.510418,0.5198039 - 3042: -25.510418,-0.4823848 - 3043: -25.510418,-1.4980098 - 3044: -25.510418,-2.4674516 - 3045: -25.510418,-3.5051284 - 3046: -25.510418,-4.481826 + 3032: -25.510418,5.5102654 + 3033: -25.510418,4.5102654 + 3034: -25.510418,3.5239472 + 3035: -25.510418,2.5239472 + 3036: -25.510418,1.5420241 + 3037: -25.510418,0.5198039 + 3038: -25.510418,-0.4823848 + 3039: -25.510418,-1.4980098 + 3040: -25.510418,-2.4674516 + 3041: -25.510418,-3.5051284 + 3042: -25.510418,-4.481826 - node: color: '#D4D4D4D3' id: MiniTileSteelLineE @@ -2648,12 +2631,12 @@ entities: color: '#D4D4D4FF' id: MiniTileSteelLineE decals: - 3340: -39,-7 - 3341: -39,-8 - 3342: -39,-9 - 3343: -39,-10 - 3344: -39,-11 - 3345: -39,-12 + 3336: -39,-7 + 3337: -39,-8 + 3338: -39,-9 + 3339: -39,-10 + 3340: -39,-11 + 3341: -39,-12 - node: color: '#DE3A3A96' id: MiniTileSteelLineE @@ -2665,41 +2648,41 @@ entities: color: '#D4D4D4AE' id: MiniTileSteelLineN decals: - 3280: 32,-42 - 3281: 31,-42 - 3282: 30,-42 + 3276: 32,-42 + 3277: 31,-42 + 3278: 30,-42 - node: color: '#D4D4D4B4' id: MiniTileSteelLineN decals: - 3385: -6,-41 + 3381: -6,-41 - node: color: '#D4D4D4C0' id: MiniTileSteelLineN decals: - 3023: -18.018867,-5.48975 - 3024: -17.019917,-5.49304 - 3025: -19.00948,-5.49304 - 3026: -20.010675,-5.49304 - 3027: -21.010675,-5.49304 - 3028: -22.0263,-5.49304 - 3029: -23.028214,-5.497755 - 3030: -24.012589,-5.497755 + 3019: -18.018867,-5.48975 + 3020: -17.019917,-5.49304 + 3021: -19.00948,-5.49304 + 3022: -20.010675,-5.49304 + 3023: -21.010675,-5.49304 + 3024: -22.0263,-5.49304 + 3025: -23.028214,-5.497755 + 3026: -24.012589,-5.497755 - node: color: '#D4D4D4C7' id: MiniTileSteelLineN decals: - 3072: -18,7 + 3068: -18,7 - node: color: '#D4D4D4CA' id: MiniTileSteelLineN decals: - 3083: -16.015686,-5.492559 + 3079: -16.015686,-5.492559 - node: color: '#D4D4D4CD' id: MiniTileSteelLineN decals: - 3277: 17,7 + 3273: 17,7 - node: color: '#D4D4D4D3' id: MiniTileSteelLineN @@ -2925,8 +2908,8 @@ entities: color: '#D4D4D4FF' id: MiniTileSteelLineN decals: - 3352: -38,-13 - 3353: -37,-13 + 3348: -38,-13 + 3349: -37,-13 - node: color: '#DE3A3A96' id: MiniTileSteelLineN @@ -2938,21 +2921,21 @@ entities: color: '#D4D4D4C0' id: MiniTileSteelLineS decals: - 3031: -20.013802,6.514251 - 3032: -21.019838,6.510408 - 3033: -22.019838,6.510408 - 3034: -23.019838,6.510408 - 3035: -24.019838,6.510408 - 3390: -25,-7 + 3027: -20.013802,6.514251 + 3028: -21.019838,6.510408 + 3029: -22.019838,6.510408 + 3030: -23.019838,6.510408 + 3031: -24.019838,6.510408 + 3386: -25,-7 - node: color: '#D4D4D4C3' id: MiniTileSteelLineS decals: - 3006: -18.011988,6.5150476 - 3007: -19.02412,6.5150476 - 3008: -16.008495,6.503191 - 3009: -17.022287,6.5092306 - 3399: -26,-7 + 3002: -18.011988,6.5150476 + 3003: -19.02412,6.5150476 + 3004: -16.008495,6.503191 + 3005: -17.022287,6.5092306 + 3395: -26,-7 - node: color: '#D4D4D4D3' id: MiniTileSteelLineS @@ -3186,8 +3169,8 @@ entities: color: '#D4D4D4FF' id: MiniTileSteelLineS decals: - 3358: -38,-6 - 3359: -37,-6 + 3354: -38,-6 + 3355: -37,-6 - node: color: '#DE3A3A96' id: MiniTileSteelLineS @@ -3199,34 +3182,34 @@ entities: color: '#D4D4D4AE' id: MiniTileSteelLineW decals: - 3279: 33,-41 + 3275: 33,-41 - node: color: '#D4D4D4C0' id: MiniTileSteelLineW decals: - 3013: -14.526791,4.511916 - 3014: -14.526791,3.535493 - 3015: -14.526791,2.535493 - 3016: -14.526791,1.5321715 - 3017: -14.526791,0.5164875 - 3018: -14.526791,-0.47854245 - 3019: -14.526791,-1.4661165 - 3020: -14.526791,-2.4650025 - 3021: -14.526791,-3.4650025 - 3022: -14.526791,-4.4806275 + 3009: -14.526791,4.511916 + 3010: -14.526791,3.535493 + 3011: -14.526791,2.535493 + 3012: -14.526791,1.5321715 + 3013: -14.526791,0.5164875 + 3014: -14.526791,-0.47854245 + 3015: -14.526791,-1.4661165 + 3016: -14.526791,-2.4650025 + 3017: -14.526791,-3.4650025 + 3018: -14.526791,-4.4806275 - node: color: '#D4D4D4C3' id: MiniTileSteelLineW decals: - 2939: -17,38 - 2940: -17,37 - 3397: -27,-5 - 3398: -27,-6 + 2935: -17,38 + 2936: -17,37 + 3393: -27,-5 + 3394: -27,-6 - node: color: '#D4D4D4C7' id: MiniTileSteelLineW decals: - 3077: -14.529805,5.530867 + 3073: -14.529805,5.530867 - node: color: '#D4D4D4D3' id: MiniTileSteelLineW @@ -3476,19 +3459,19 @@ entities: 2174: -6,-27 2325: -27,3 2326: -27,-1 - 3754: -21,-17 - 3755: -21,-18 - 3756: -21,-19 + 3750: -21,-17 + 3751: -21,-18 + 3752: -21,-19 - node: color: '#D4D4D4FF' id: MiniTileSteelLineW decals: - 3346: -36,-7 - 3347: -36,-8 - 3348: -36,-9 - 3349: -36,-10 - 3350: -36,-11 - 3351: -36,-12 + 3342: -36,-7 + 3343: -36,-8 + 3344: -36,-9 + 3345: -36,-10 + 3346: -36,-11 + 3347: -36,-12 - node: color: '#DE3A3A96' id: MiniTileSteelLineW @@ -3506,14 +3489,14 @@ entities: color: '#258CC0EA' id: MiniTileWhiteCornerNe decals: - 3769: 7,-46 - 3797: -23,-58 + 3765: 7,-46 + 3793: -23,-58 - node: color: '#334E6DC8' id: MiniTileWhiteCornerNe decals: - 2971: 32,-21 - 2972: 19,-21 + 2967: 32,-21 + 2968: 19,-21 - node: color: '#478C5DDC' id: MiniTileWhiteCornerNe @@ -3526,13 +3509,13 @@ entities: color: '#52B4E963' id: MiniTileWhiteCornerNe decals: - 3258: 73,-48 + 3254: 73,-48 - node: color: '#52B4E9B7' id: MiniTileWhiteCornerNe decals: - 3747: 47,7 - 3748: 46,8 + 3743: 47,7 + 3744: 46,8 - node: color: '#52B4E9CD' id: MiniTileWhiteCornerNe @@ -3546,9 +3529,9 @@ entities: color: '#707070B7' id: MiniTileWhiteCornerNe decals: - 3563: 31,-72 - 3564: 28,-71 - 3565: 27,-70 + 3559: 31,-72 + 3560: 28,-71 + 3561: 27,-70 - node: color: '#73C2A496' id: MiniTileWhiteCornerNe @@ -3563,14 +3546,14 @@ entities: color: '#787878B7' id: MiniTileWhiteCornerNe decals: - 3616: 31,-78 - 3657: 50,-72 - 3669: 49,-78 + 3612: 31,-78 + 3653: 50,-72 + 3665: 49,-78 - node: color: '#92CCA4BD' id: MiniTileWhiteCornerNe decals: - 3544: 17,-82 + 3540: 17,-82 - node: color: '#A4610696' id: MiniTileWhiteCornerNe @@ -3592,24 +3575,24 @@ entities: 990: 52,-51 991: 53,-52 1019: 46,-46 - 3111: 74,-32 - 3115: 73,-38 - 3231: 73,-44 - 3240: 68,-48 - 3246: 77,-44 - 3489: 64,-32 - 3490: 65,-33 + 3107: 74,-32 + 3111: 73,-38 + 3227: 73,-44 + 3236: 68,-48 + 3242: 77,-44 + 3485: 64,-32 + 3486: 65,-33 - node: color: '#D381C9C0' id: MiniTileWhiteCornerNe decals: - 3178: 65,-44 - 3185: 63,-43 + 3174: 65,-44 + 3181: 63,-43 - node: color: '#D4D4D40F' id: MiniTileWhiteCornerNe decals: - 3192: 55,-35 + 3188: 55,-35 - node: color: '#D4D4D428' id: MiniTileWhiteCornerNe @@ -3636,9 +3619,9 @@ entities: 2783: 8,17 2817: 42,16 2818: 30,22 - 3138: -16,-21 - 3204: 22,-46 - 3367: -15,27 + 3134: -16,-21 + 3200: 22,-46 + 3363: -15,27 - node: color: '#EFB34196' id: MiniTileWhiteCornerNe @@ -3653,10 +3636,10 @@ entities: 2550: -53,-13 2586: -54,-23 2613: -71,-24 - 3303: -28,-10 - 3328: -35,-6 - 3361: -42,-6 - 3401: -32,-10 + 3299: -28,-10 + 3324: -35,-6 + 3357: -42,-6 + 3397: -32,-10 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerNe @@ -3666,14 +3649,14 @@ entities: color: '#258CC0EA' id: MiniTileWhiteCornerNw decals: - 3770: 2,-46 - 3798: -27,-58 + 3766: 2,-46 + 3794: -27,-58 - node: color: '#334E6DC8' id: MiniTileWhiteCornerNw decals: - 2969: 18,-21 - 2970: 31,-21 + 2965: 18,-21 + 2966: 31,-21 - node: color: '#478C5DDC' id: MiniTileWhiteCornerNw @@ -3686,12 +3669,12 @@ entities: color: '#52B4E963' id: MiniTileWhiteCornerNw decals: - 3262: 69,-48 + 3258: 69,-48 - node: color: '#52B4E9B7' id: MiniTileWhiteCornerNw decals: - 3746: 44,8 + 3742: 44,8 - node: color: '#52B4E9CD' id: MiniTileWhiteCornerNw @@ -3705,9 +3688,9 @@ entities: color: '#707070B7' id: MiniTileWhiteCornerNw decals: - 3567: 22,-72 - 3568: 23,-71 - 3569: 24,-70 + 3563: 22,-72 + 3564: 23,-71 + 3565: 24,-70 - node: color: '#73C2A496' id: MiniTileWhiteCornerNw @@ -3721,15 +3704,15 @@ entities: color: '#787878B7' id: MiniTileWhiteCornerNw decals: - 3617: 29,-78 - 3651: 27,-81 - 3658: 47,-72 - 3668: 47,-78 + 3613: 29,-78 + 3647: 27,-81 + 3654: 47,-72 + 3664: 47,-78 - node: color: '#92CCA4BD' id: MiniTileWhiteCornerNw decals: - 3546: 13,-82 + 3542: 13,-82 - node: color: '#A4610696' id: MiniTileWhiteCornerNw @@ -3748,24 +3731,24 @@ entities: 987: 48,-50 988: 45,-57 1021: 41,-46 - 3110: 71,-32 - 3116: 70,-33 - 3230: 67,-44 - 3239: 67,-48 - 3244: 74,-48 - 3245: 76,-44 - 3488: 60,-32 + 3106: 71,-32 + 3112: 70,-33 + 3226: 67,-44 + 3235: 67,-48 + 3240: 74,-48 + 3241: 76,-44 + 3484: 60,-32 - node: color: '#D381C9C0' id: MiniTileWhiteCornerNw decals: - 3177: 59,-44 - 3184: 61,-43 + 3173: 59,-44 + 3180: 61,-43 - node: color: '#D4D4D40F' id: MiniTileWhiteCornerNw decals: - 3190: 53,-35 + 3186: 53,-35 - node: color: '#D4D4D428' id: MiniTileWhiteCornerNw @@ -3791,10 +3774,10 @@ entities: 2779: 10,17 2784: 4,17 2816: 28,22 - 3136: -17,-21 - 3203: 19,-46 - 3366: -17,27 - 3380: 28,16 + 3132: -17,-21 + 3199: 19,-46 + 3362: -17,27 + 3376: 28,16 - node: color: '#EFB34196' id: MiniTileWhiteCornerNw @@ -3808,10 +3791,10 @@ entities: 2587: -55,-23 2590: -63,-24 2612: -75,-24 - 3302: -30,-10 - 3329: -40,-6 - 3362: -43,-6 - 3400: -33,-10 + 3298: -30,-10 + 3325: -40,-6 + 3358: -43,-6 + 3396: -33,-10 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerNw @@ -3821,14 +3804,14 @@ entities: color: '#258CC0EA' id: MiniTileWhiteCornerSe decals: - 3771: 7,-51 - 3801: -23,-63 + 3767: 7,-51 + 3797: -23,-63 - node: color: '#334E6DC8' id: MiniTileWhiteCornerSe decals: - 2975: 32,-23 - 2976: 30,-26 + 2971: 32,-23 + 2972: 30,-26 - node: color: '#478C5DDC' id: MiniTileWhiteCornerSe @@ -3840,12 +3823,12 @@ entities: color: '#52B4E963' id: MiniTileWhiteCornerSe decals: - 3264: 73,-50 + 3260: 73,-50 - node: color: '#52B4E9B7' id: MiniTileWhiteCornerSe decals: - 3745: 47,4 + 3741: 47,4 - node: color: '#52B4E9CD' id: MiniTileWhiteCornerSe @@ -3870,20 +3853,20 @@ entities: color: '#787878AB' id: MiniTileWhiteCornerSe decals: - 3606: 31,-76 + 3602: 31,-76 - node: color: '#787878B7' id: MiniTileWhiteCornerSe decals: - 3640: 31,-93 - 3654: 49,-76 - 3655: 50,-74 - 3670: 49,-93 + 3636: 31,-93 + 3650: 49,-76 + 3651: 50,-74 + 3666: 49,-93 - node: color: '#92CCA4BD' id: MiniTileWhiteCornerSe decals: - 3543: 17,-86 + 3539: 17,-86 - node: color: '#A4610696' id: MiniTileWhiteCornerSe @@ -3904,19 +3887,19 @@ entities: 985: 52,-56 986: 53,-54 1017: 46,-50 - 3113: 73,-34 - 3114: 73,-39 - 3229: 73,-45 - 3238: 68,-50 - 3247: 77,-48 - 3248: 76,-50 - 3491: 65,-36 - 3492: 64,-37 + 3109: 73,-34 + 3110: 73,-39 + 3225: 73,-45 + 3234: 68,-50 + 3243: 77,-48 + 3244: 76,-50 + 3487: 65,-36 + 3488: 64,-37 - node: color: '#D4D4D40F' id: MiniTileWhiteCornerSe decals: - 3191: 55,-37 + 3187: 55,-37 - node: color: '#D4D4D428' id: MiniTileWhiteCornerSe @@ -3942,10 +3925,10 @@ entities: 2774: 13,16 2789: 8,12 2815: 42,4 - 3139: -16,-24 - 3205: 22,-48 - 3369: -15,23 - 3381: 42,14 + 3135: -16,-24 + 3201: 22,-48 + 3365: -15,23 + 3377: 42,14 - node: color: '#EFB34196' id: MiniTileWhiteCornerSe @@ -3959,11 +3942,11 @@ entities: 2577: -51,-21 2588: -54,-26 2611: -71,-27 - 3298: -32,-19 - 3299: -24,-18 - 3300: -23,-16 - 3306: -28,-18 - 3360: -42,-8 + 3294: -32,-19 + 3295: -24,-18 + 3296: -23,-16 + 3302: -28,-18 + 3356: -42,-8 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerSe @@ -3973,15 +3956,15 @@ entities: color: '#258CC0EA' id: MiniTileWhiteCornerSw decals: - 3772: 2,-51 - 3799: -27,-62 - 3800: -26,-63 + 3768: 2,-51 + 3795: -27,-62 + 3796: -26,-63 - node: color: '#334E6DC8' id: MiniTileWhiteCornerSw decals: - 2973: 20,-26 - 2974: 18,-23 + 2969: 20,-26 + 2970: 18,-23 - node: color: '#478C5DDC' id: MiniTileWhiteCornerSw @@ -3992,12 +3975,12 @@ entities: color: '#52B4E963' id: MiniTileWhiteCornerSw decals: - 3263: 69,-50 + 3259: 69,-50 - node: color: '#52B4E9B7' id: MiniTileWhiteCornerSw decals: - 3744: 44,4 + 3740: 44,4 - node: color: '#52B4E9CD' id: MiniTileWhiteCornerSw @@ -4012,7 +3995,7 @@ entities: color: '#707070B7' id: MiniTileWhiteCornerSw decals: - 3566: 22,-74 + 3562: 22,-74 - node: color: '#73C2A496' id: MiniTileWhiteCornerSw @@ -4025,21 +4008,21 @@ entities: color: '#787878AB' id: MiniTileWhiteCornerSw decals: - 3607: 24,-75 - 3608: 29,-76 + 3603: 24,-75 + 3604: 29,-76 - node: color: '#787878B7' id: MiniTileWhiteCornerSw decals: - 3641: 29,-93 - 3650: 27,-87 - 3656: 47,-76 - 3671: 47,-93 + 3637: 29,-93 + 3646: 27,-87 + 3652: 47,-76 + 3667: 47,-93 - node: color: '#92CCA4BD' id: MiniTileWhiteCornerSw decals: - 3545: 13,-86 + 3541: 13,-86 - node: color: '#A4610696' id: MiniTileWhiteCornerSw @@ -4058,20 +4041,20 @@ entities: 966: 59,-50 1018: 42,-50 1020: 41,-48 - 3220: 67,-45 - 3221: 67,-50 - 3222: 74,-50 - 3496: 60,-37 + 3216: 67,-45 + 3217: 67,-50 + 3218: 74,-50 + 3492: 60,-37 - node: color: '#D381C9AB' id: MiniTileWhiteCornerSw decals: - 3199: 70,-39 + 3195: 70,-39 - node: color: '#D4D4D40F' id: MiniTileWhiteCornerSw decals: - 3189: 53,-37 + 3185: 53,-37 - node: color: '#D4D4D428' id: MiniTileWhiteCornerSw @@ -4098,9 +4081,9 @@ entities: 2787: 4,12 2840: 40,4 2863: 28,14 - 3137: -17,-24 - 3202: 19,-48 - 3368: -17,23 + 3133: -17,-24 + 3198: 19,-48 + 3364: -17,23 - node: color: '#EFB34196' id: MiniTileWhiteCornerSw @@ -4115,8 +4098,8 @@ entities: 2548: -55,-21 2589: -63,-26 2614: -75,-27 - 3301: -26,-18 - 3363: -43,-8 + 3297: -26,-18 + 3359: -43,-8 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerSw @@ -4126,7 +4109,7 @@ entities: color: '#D381C996' id: MiniTileWhiteEndE decals: - 3112: 75,-33 + 3108: 75,-33 - node: color: '#52B4E9CD' id: MiniTileWhiteEndS @@ -4140,7 +4123,7 @@ entities: color: '#334E6DC8' id: MiniTileWhiteInnerNe decals: - 2979: 19,-22 + 2975: 19,-22 - node: color: '#478C5DDC' id: MiniTileWhiteInnerNe @@ -4150,12 +4133,12 @@ entities: color: '#52B4E9B7' id: MiniTileWhiteInnerNe decals: - 3749: 46,7 + 3745: 46,7 - node: color: '#707070B7' id: MiniTileWhiteInnerNe decals: - 3576: 27,-71 + 3572: 27,-71 - node: color: '#73C2A496' id: MiniTileWhiteInnerNe @@ -4166,7 +4149,7 @@ entities: color: '#787878AB' id: MiniTileWhiteInnerNe decals: - 3603: 28,-72 + 3599: 28,-72 - node: color: '#A4610696' id: MiniTileWhiteInnerNe @@ -4179,18 +4162,18 @@ entities: 951: 51,-40 1003: 52,-52 1013: 51,-51 - 3132: 74,-33 - 3510: 64,-33 + 3128: 74,-33 + 3506: 64,-33 - node: color: '#D381C9AB' id: MiniTileWhiteInnerNe decals: - 3201: 71,-38 + 3197: 71,-38 - node: color: '#D381C9C0' id: MiniTileWhiteInnerNe decals: - 3186: 63,-44 + 3182: 63,-44 - node: color: '#D4D4D4D3' id: MiniTileWhiteInnerNe @@ -4214,7 +4197,7 @@ entities: color: '#334E6DC8' id: MiniTileWhiteInnerNw decals: - 2980: 31,-22 + 2976: 31,-22 - node: color: '#478C5DDC' id: MiniTileWhiteInnerNw @@ -4225,8 +4208,8 @@ entities: color: '#707070B7' id: MiniTileWhiteInnerNw decals: - 3577: 23,-72 - 3578: 24,-71 + 3573: 23,-72 + 3574: 24,-71 - node: color: '#73C2A496' id: MiniTileWhiteInnerNw @@ -4238,19 +4221,19 @@ entities: color: '#787878B7' id: MiniTileWhiteInnerNw decals: - 3652: 29,-81 + 3648: 29,-81 - node: color: '#D381C996' id: MiniTileWhiteInnerNw decals: 1010: 48,-57 - 3133: 71,-33 - 3256: 76,-48 + 3129: 71,-33 + 3252: 76,-48 - node: color: '#D381C9C0' id: MiniTileWhiteInnerNw decals: - 3187: 61,-44 + 3183: 61,-44 - node: color: '#D4D4D4D3' id: MiniTileWhiteInnerNw @@ -4274,7 +4257,7 @@ entities: color: '#334E6DC8' id: MiniTileWhiteInnerSe decals: - 2977: 30,-23 + 2973: 30,-23 - node: color: '#52B4E9CD' id: MiniTileWhiteInnerSe @@ -4294,7 +4277,7 @@ entities: color: '#787878B7' id: MiniTileWhiteInnerSe decals: - 3667: 49,-74 + 3663: 49,-74 - node: color: '#D381C996' id: MiniTileWhiteInnerSe @@ -4302,10 +4285,10 @@ entities: 952: 51,-46 1002: 52,-54 1012: 51,-56 - 3130: 73,-33 - 3131: 71,-34 - 3257: 76,-48 - 3509: 64,-36 + 3126: 73,-33 + 3127: 71,-34 + 3253: 76,-48 + 3505: 64,-36 - node: color: '#D4D4D4D3' id: MiniTileWhiteInnerSe @@ -4317,8 +4300,8 @@ entities: id: MiniTileWhiteInnerSe decals: 2581: -54,-7 - 3310: -32,-18 - 3315: -24,-16 + 3306: -32,-18 + 3311: -24,-16 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerSe @@ -4329,12 +4312,12 @@ entities: color: '#258CC0EA' id: MiniTileWhiteInnerSw decals: - 3802: -26,-62 + 3798: -26,-62 - node: color: '#334E6DC8' id: MiniTileWhiteInnerSw decals: - 2978: 20,-23 + 2974: 20,-23 - node: color: '#52B4E9CD' id: MiniTileWhiteInnerSw @@ -4344,7 +4327,7 @@ entities: 766: -6,-55 767: -9,-55 768: -12,-55 - 3092: -2,-48 + 3088: -2,-48 - node: color: '#73C2A496' id: MiniTileWhiteInnerSw @@ -4354,12 +4337,12 @@ entities: color: '#787878AB' id: MiniTileWhiteInnerSw decals: - 3615: 29,-75 + 3611: 29,-75 - node: color: '#787878B7' id: MiniTileWhiteInnerSw decals: - 3653: 29,-87 + 3649: 29,-87 - node: color: '#D381C996' id: MiniTileWhiteInnerSw @@ -4386,23 +4369,23 @@ entities: color: '#258CC0EA' id: MiniTileWhiteLineE decals: - 3773: 7,-50 - 3774: 7,-49 - 3775: 7,-48 - 3776: 7,-47 - 3793: -23,-59 - 3794: -23,-60 - 3795: -23,-61 - 3796: -23,-62 + 3769: 7,-50 + 3770: 7,-49 + 3771: 7,-48 + 3772: 7,-47 + 3789: -23,-59 + 3790: -23,-60 + 3791: -23,-61 + 3792: -23,-62 - node: color: '#334E6DC8' id: MiniTileWhiteLineE decals: - 2966: 32,-22 - 2967: 30,-25 - 2968: 30,-24 - 2983: 16,-26 - 2984: 16,-25 + 2962: 32,-22 + 2963: 30,-25 + 2964: 30,-24 + 2979: 16,-26 + 2980: 16,-25 - node: color: '#478C5DDC' id: MiniTileWhiteLineE @@ -4421,13 +4404,13 @@ entities: color: '#52B4E963' id: MiniTileWhiteLineE decals: - 3269: 73,-49 + 3265: 73,-49 - node: color: '#52B4E9B7' id: MiniTileWhiteLineE decals: - 3742: 47,6 - 3743: 47,5 + 3738: 47,6 + 3739: 47,5 - node: color: '#52B4E9CD' id: MiniTileWhiteLineE @@ -4449,12 +4432,12 @@ entities: color: '#646464C7' id: MiniTileWhiteLineE decals: - 3946: -46,0 + 3942: -46,0 - node: color: '#707070B7' id: MiniTileWhiteLineE decals: - 3570: 31,-73 + 3566: 31,-73 - node: color: '#73C2A496' id: MiniTileWhiteLineE @@ -4490,49 +4473,49 @@ entities: color: '#787878AB' id: MiniTileWhiteLineE decals: - 3604: 31,-74 - 3605: 31,-75 + 3600: 31,-74 + 3601: 31,-75 - node: color: '#787878B7' id: MiniTileWhiteLineE decals: - 3621: 31,-79 - 3622: 31,-80 - 3623: 31,-81 - 3624: 31,-82 - 3625: 31,-83 - 3626: 31,-84 - 3627: 31,-85 - 3628: 31,-86 - 3629: 31,-87 - 3630: 31,-88 - 3631: 31,-89 - 3632: 31,-90 - 3633: 31,-91 - 3634: 31,-92 - 3663: 50,-73 - 3664: 49,-75 - 3672: 49,-92 - 3673: 49,-91 - 3674: 49,-90 - 3675: 49,-89 - 3676: 49,-88 - 3677: 49,-87 - 3678: 49,-86 - 3679: 49,-85 - 3680: 49,-84 - 3681: 49,-83 - 3682: 49,-82 - 3683: 49,-81 - 3684: 49,-80 - 3685: 49,-79 + 3617: 31,-79 + 3618: 31,-80 + 3619: 31,-81 + 3620: 31,-82 + 3621: 31,-83 + 3622: 31,-84 + 3623: 31,-85 + 3624: 31,-86 + 3625: 31,-87 + 3626: 31,-88 + 3627: 31,-89 + 3628: 31,-90 + 3629: 31,-91 + 3630: 31,-92 + 3659: 50,-73 + 3660: 49,-75 + 3668: 49,-92 + 3669: 49,-91 + 3670: 49,-90 + 3671: 49,-89 + 3672: 49,-88 + 3673: 49,-87 + 3674: 49,-86 + 3675: 49,-85 + 3676: 49,-84 + 3677: 49,-83 + 3678: 49,-82 + 3679: 49,-81 + 3680: 49,-80 + 3681: 49,-79 - node: color: '#92CCA4BD' id: MiniTileWhiteLineE decals: - 3547: 17,-83 - 3548: 17,-84 - 3549: 17,-85 + 3543: 17,-83 + 3544: 17,-84 + 3545: 17,-85 - node: color: '#A4610696' id: MiniTileWhiteLineE @@ -4576,26 +4559,26 @@ entities: 1026: 46,-47 1027: 46,-48 1028: 46,-49 - 3121: 71,-37 - 3122: 71,-36 - 3123: 71,-35 - 3241: 68,-49 - 3249: 76,-49 - 3250: 77,-47 - 3251: 77,-46 - 3252: 77,-45 - 3497: 65,-34 - 3498: 65,-35 + 3117: 71,-37 + 3118: 71,-36 + 3119: 71,-35 + 3237: 68,-49 + 3245: 76,-49 + 3246: 77,-47 + 3247: 77,-46 + 3248: 77,-45 + 3493: 65,-34 + 3494: 65,-35 - node: color: '#D381C9C0' id: MiniTileWhiteLineE decals: - 3179: 65,-45 + 3175: 65,-45 - node: color: '#D4D4D40F' id: MiniTileWhiteLineE decals: - 3194: 55,-36 + 3190: 55,-36 - node: color: '#D4D4D428' id: MiniTileWhiteLineE @@ -4635,12 +4618,12 @@ entities: 2864: 30,19 2865: 30,18 2866: 30,17 - 3140: -16,-22 - 3141: -16,-23 - 3211: 22,-47 - 3375: -15,26 - 3376: -15,25 - 3377: -15,24 + 3136: -16,-22 + 3137: -16,-23 + 3207: 22,-47 + 3371: -15,26 + 3372: -15,25 + 3373: -15,24 - node: color: '#DE3A3AD3' id: MiniTileWhiteLineE @@ -4695,33 +4678,33 @@ entities: 2608: -54,-25 2621: -71,-25 2622: -71,-26 - 3293: -32,-11 - 3294: -32,-12 - 3295: -28,-11 - 3296: -23,-15 - 3297: -24,-17 - 3337: -35,-7 - 3338: -35,-8 - 3339: -35,-9 - 3364: -42,-7 + 3289: -32,-11 + 3290: -32,-12 + 3291: -28,-11 + 3292: -23,-15 + 3293: -24,-17 + 3333: -35,-7 + 3334: -35,-8 + 3335: -35,-9 + 3360: -42,-7 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineE decals: 677: -2,-54 685: 4,-65 - 3089: -10,-54 + 3085: -10,-54 - node: color: '#258CC0EA' id: MiniTileWhiteLineN decals: - 3781: 3,-46 - 3782: 4,-46 - 3783: 5,-46 - 3784: 6,-46 - 3785: -25,-58 - 3786: -26,-58 - 3787: -24,-58 + 3777: 3,-46 + 3778: 4,-46 + 3779: 5,-46 + 3780: 6,-46 + 3781: -25,-58 + 3782: -26,-58 + 3783: -24,-58 - node: color: '#334E6DC8' id: MiniTileWhiteLineN @@ -4732,18 +4715,18 @@ entities: 1035: 30,-59 1036: 29,-59 2798: 6,17 - 2952: 30,-22 - 2953: 29,-22 - 2954: 28,-22 - 2955: 27,-22 - 2956: 26,-22 - 2957: 25,-22 - 2958: 24,-22 - 2959: 23,-22 - 2960: 22,-22 - 2961: 21,-22 - 2962: 20,-22 - 2987: 32,-17 + 2948: 30,-22 + 2949: 29,-22 + 2950: 28,-22 + 2951: 27,-22 + 2952: 26,-22 + 2953: 25,-22 + 2954: 24,-22 + 2955: 23,-22 + 2956: 22,-22 + 2957: 21,-22 + 2958: 20,-22 + 2983: 32,-17 - node: color: '#478C5DDC' id: MiniTileWhiteLineN @@ -4766,19 +4749,19 @@ entities: color: '#52B4E963' id: MiniTileWhiteLineN decals: - 3259: 72,-48 - 3260: 71,-48 - 3261: 70,-48 + 3255: 72,-48 + 3256: 71,-48 + 3257: 70,-48 - node: color: '#52B4E996' id: MiniTileWhiteLineN decals: - 2989: -9,-42 + 2985: -9,-42 - node: color: '#52B4E9B7' id: MiniTileWhiteLineN decals: - 3736: 45,8 + 3732: 45,8 - node: color: '#52B4E9CD' id: MiniTileWhiteLineN @@ -4823,21 +4806,21 @@ entities: color: '#5D9C7FC1' id: MiniTileWhiteLineN decals: - 3760: -41,-42 + 3756: -41,-42 - node: color: '#60A5D9D6' id: MiniTileWhiteLineN decals: - 3485: -13,-53 - 3486: -12,-53 + 3481: -13,-53 + 3482: -12,-53 - node: color: '#707070B7' id: MiniTileWhiteLineN decals: - 3571: 25,-70 - 3572: 26,-70 - 3574: 29,-72 - 3575: 30,-72 + 3567: 25,-70 + 3568: 26,-70 + 3570: 29,-72 + 3571: 30,-72 - node: color: '#73C2A496' id: MiniTileWhiteLineN @@ -4858,11 +4841,11 @@ entities: color: '#787878B7' id: MiniTileWhiteLineN decals: - 3618: 30,-78 - 3644: 28,-81 - 3665: 48,-72 - 3666: 49,-72 - 3701: 48,-78 + 3614: 30,-78 + 3640: 28,-81 + 3661: 48,-72 + 3662: 49,-72 + 3697: 48,-78 - node: color: '#9FED5896' id: MiniTileWhiteLineN @@ -4903,30 +4886,30 @@ entities: 1023: 44,-46 1024: 42,-46 1025: 43,-46 - 3127: 72,-38 - 3128: 72,-32 - 3129: 73,-32 - 3232: 68,-44 - 3233: 69,-44 - 3234: 70,-44 - 3235: 71,-44 - 3236: 72,-44 - 3237: 75,-48 - 3503: 61,-32 - 3504: 62,-32 - 3505: 63,-32 + 3123: 72,-38 + 3124: 72,-32 + 3125: 73,-32 + 3228: 68,-44 + 3229: 69,-44 + 3230: 70,-44 + 3231: 71,-44 + 3232: 72,-44 + 3233: 75,-48 + 3499: 61,-32 + 3500: 62,-32 + 3501: 63,-32 - node: color: '#D381C9C0' id: MiniTileWhiteLineN decals: - 3181: 60,-44 - 3182: 64,-44 - 3183: 62,-43 + 3177: 60,-44 + 3178: 64,-44 + 3179: 62,-43 - node: color: '#D4D4D40F' id: MiniTileWhiteLineN decals: - 3193: 54,-35 + 3189: 54,-35 - node: color: '#D4D4D428' id: MiniTileWhiteLineN @@ -5005,12 +4988,12 @@ entities: 2828: 41,16 2867: 32,16 2868: 31,16 - 2986: 20,-17 - 3208: 21,-46 - 3209: 20,-46 - 3370: -16,27 - 3378: 30,16 - 3379: 29,16 + 2982: 20,-17 + 3204: 21,-46 + 3205: 20,-46 + 3366: -16,27 + 3374: 30,16 + 3375: 29,16 - node: color: '#EFB34196' id: MiniTileWhiteLineN @@ -5037,11 +5020,11 @@ entities: 2615: -72,-24 2616: -73,-24 2617: -74,-24 - 3304: -29,-10 - 3330: -39,-6 - 3331: -38,-6 - 3332: -37,-6 - 3333: -36,-6 + 3300: -29,-10 + 3326: -39,-6 + 3327: -38,-6 + 3328: -37,-6 + 3329: -36,-6 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineN @@ -5053,28 +5036,28 @@ entities: color: '#258CC0EA' id: MiniTileWhiteLineS decals: - 3765: 4,-51 - 3766: 5,-51 - 3767: 3,-51 - 3768: 6,-51 - 3788: -25,-63 - 3789: -24,-63 + 3761: 4,-51 + 3762: 5,-51 + 3763: 3,-51 + 3764: 6,-51 + 3784: -25,-63 + 3785: -24,-63 - node: color: '#334E6DC8' id: MiniTileWhiteLineS decals: - 2941: 29,-26 - 2942: 28,-26 - 2943: 27,-26 - 2944: 26,-26 - 2945: 25,-26 - 2946: 24,-26 - 2947: 23,-26 - 2948: 22,-26 - 2949: 21,-26 - 2950: 31,-23 - 2951: 19,-23 - 2988: 20,-44 + 2937: 29,-26 + 2938: 28,-26 + 2939: 27,-26 + 2940: 26,-26 + 2941: 25,-26 + 2942: 24,-26 + 2943: 23,-26 + 2944: 22,-26 + 2945: 21,-26 + 2946: 31,-23 + 2947: 19,-23 + 2984: 20,-44 - node: color: '#478C5DDC' id: MiniTileWhiteLineS @@ -5100,9 +5083,9 @@ entities: color: '#52B4E963' id: MiniTileWhiteLineS decals: - 3265: 70,-50 - 3266: 71,-50 - 3267: 72,-50 + 3261: 70,-50 + 3262: 71,-50 + 3263: 72,-50 - node: color: '#52B4E9AE' id: MiniTileWhiteLineS @@ -5117,8 +5100,8 @@ entities: color: '#52B4E9B7' id: MiniTileWhiteLineS decals: - 3737: 45,4 - 3738: 46,4 + 3733: 45,4 + 3734: 46,4 - node: color: '#52B4E9CD' id: MiniTileWhiteLineS @@ -5174,27 +5157,27 @@ entities: color: '#787878AB' id: MiniTileWhiteLineS decals: - 3609: 28,-75 - 3610: 26,-75 - 3611: 27,-75 - 3612: 25,-75 - 3613: 23,-74 - 3614: 30,-76 + 3605: 28,-75 + 3606: 26,-75 + 3607: 27,-75 + 3608: 25,-75 + 3609: 23,-74 + 3610: 30,-76 - node: color: '#787878B7' id: MiniTileWhiteLineS decals: - 3642: 30,-93 - 3643: 28,-87 - 3659: 48,-76 - 3700: 48,-93 + 3638: 30,-93 + 3639: 28,-87 + 3655: 48,-76 + 3696: 48,-93 - node: color: '#92CCA4BD' id: MiniTileWhiteLineS decals: - 3552: 14,-86 - 3553: 15,-86 - 3554: 16,-86 + 3548: 14,-86 + 3549: 15,-86 + 3550: 16,-86 - node: color: '#A4610696' id: MiniTileWhiteLineS @@ -5233,28 +5216,28 @@ entities: 1014: 45,-50 1015: 44,-50 1016: 43,-50 - 3124: 72,-34 - 3125: 72,-39 - 3126: 74,-33 - 3223: 75,-50 - 3224: 68,-45 - 3225: 69,-45 - 3226: 70,-45 - 3227: 71,-45 - 3228: 72,-45 - 3493: 63,-37 - 3494: 62,-37 - 3495: 61,-37 + 3120: 72,-34 + 3121: 72,-39 + 3122: 74,-33 + 3219: 75,-50 + 3220: 68,-45 + 3221: 69,-45 + 3222: 70,-45 + 3223: 71,-45 + 3224: 72,-45 + 3489: 63,-37 + 3490: 62,-37 + 3491: 61,-37 - node: color: '#D381C9AB' id: MiniTileWhiteLineS decals: - 3198: 71,-39 + 3194: 71,-39 - node: color: '#D4D4D40F' id: MiniTileWhiteLineS decals: - 3196: 54,-37 + 3192: 54,-37 - node: color: '#D4D4D428' id: MiniTileWhiteLineS @@ -5331,11 +5314,11 @@ entities: 2852: 31,14 2853: 29,14 2854: 30,14 - 3206: 21,-48 - 3207: 20,-48 - 3371: -16,23 - 3382: 41,14 - 3383: 40,14 + 3202: 21,-48 + 3203: 20,-48 + 3367: -16,23 + 3378: 41,14 + 3379: 40,14 - node: color: '#EFB34196' id: MiniTileWhiteLineS @@ -5365,10 +5348,10 @@ entities: 2618: -72,-27 2619: -73,-27 2620: -74,-27 - 3307: -29,-18 - 3308: -30,-18 - 3309: -31,-18 - 3311: -25,-18 + 3303: -29,-18 + 3304: -30,-18 + 3305: -31,-18 + 3307: -25,-18 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineS @@ -5380,23 +5363,23 @@ entities: color: '#258CC0EA' id: MiniTileWhiteLineW decals: - 3777: 2,-50 - 3778: 2,-49 - 3779: 2,-48 - 3780: 2,-47 - 3790: -27,-59 - 3791: -27,-60 - 3792: -27,-61 + 3773: 2,-50 + 3774: 2,-49 + 3775: 2,-48 + 3776: 2,-47 + 3786: -27,-59 + 3787: -27,-60 + 3788: -27,-61 - node: color: '#334E6DC8' id: MiniTileWhiteLineW decals: - 2963: 20,-25 - 2964: 20,-24 - 2965: 18,-22 - 2981: 34,-25 - 2982: 34,-26 - 2985: 34,-31 + 2959: 20,-25 + 2960: 20,-24 + 2961: 18,-22 + 2977: 34,-25 + 2978: 34,-26 + 2981: 34,-31 - node: color: '#478C5DDC' id: MiniTileWhiteLineW @@ -5414,14 +5397,14 @@ entities: color: '#52B4E963' id: MiniTileWhiteLineW decals: - 3268: 69,-49 + 3264: 69,-49 - node: color: '#52B4E9B7' id: MiniTileWhiteLineW decals: - 3739: 44,7 - 3740: 44,6 - 3741: 44,5 + 3735: 44,7 + 3736: 44,6 + 3737: 44,5 - node: color: '#52B4E9CD' id: MiniTileWhiteLineW @@ -5443,7 +5426,7 @@ entities: color: '#707070B7' id: MiniTileWhiteLineW decals: - 3573: 22,-73 + 3569: 22,-73 - node: color: '#73C2A496' id: MiniTileWhiteLineW @@ -5471,46 +5454,46 @@ entities: color: '#787878B7' id: MiniTileWhiteLineW decals: - 3619: 29,-79 - 3620: 29,-80 - 3635: 29,-92 - 3636: 29,-91 - 3637: 29,-90 - 3638: 29,-89 - 3639: 29,-88 - 3645: 27,-82 - 3646: 27,-83 - 3647: 27,-84 - 3648: 27,-85 - 3649: 27,-86 - 3660: 47,-75 - 3661: 47,-74 - 3662: 47,-73 - 3686: 47,-79 - 3687: 47,-80 - 3688: 47,-82 - 3689: 47,-81 - 3690: 47,-83 - 3691: 47,-84 - 3692: 47,-85 - 3693: 47,-86 - 3694: 47,-88 - 3695: 47,-87 - 3696: 47,-89 - 3697: 47,-90 - 3698: 47,-91 - 3699: 47,-92 + 3615: 29,-79 + 3616: 29,-80 + 3631: 29,-92 + 3632: 29,-91 + 3633: 29,-90 + 3634: 29,-89 + 3635: 29,-88 + 3641: 27,-82 + 3642: 27,-83 + 3643: 27,-84 + 3644: 27,-85 + 3645: 27,-86 + 3656: 47,-75 + 3657: 47,-74 + 3658: 47,-73 + 3682: 47,-79 + 3683: 47,-80 + 3684: 47,-82 + 3685: 47,-81 + 3686: 47,-83 + 3687: 47,-84 + 3688: 47,-85 + 3689: 47,-86 + 3690: 47,-88 + 3691: 47,-87 + 3692: 47,-89 + 3693: 47,-90 + 3694: 47,-91 + 3695: 47,-92 - node: color: '#92CCA4BD' id: MiniTileWhiteLineW decals: - 3550: 13,-84 - 3551: 13,-85 + 3546: 13,-84 + 3547: 13,-85 - node: color: '#95BCA4FF' id: MiniTileWhiteLineW decals: - 3588: 13,-83 + 3584: 13,-83 - node: color: '#A4610696' id: MiniTileWhiteLineW @@ -5555,34 +5538,34 @@ entities: 1011: 48,-56 1029: 41,-47 1030: 42,-49 - 3117: 70,-34 - 3118: 70,-35 - 3119: 70,-36 - 3120: 70,-37 - 3242: 67,-49 - 3243: 74,-49 - 3253: 76,-47 - 3254: 76,-46 - 3255: 76,-45 - 3499: 60,-33 - 3500: 60,-34 - 3501: 60,-35 - 3502: 60,-36 + 3113: 70,-34 + 3114: 70,-35 + 3115: 70,-36 + 3116: 70,-37 + 3238: 67,-49 + 3239: 74,-49 + 3249: 76,-47 + 3250: 76,-46 + 3251: 76,-45 + 3495: 60,-33 + 3496: 60,-34 + 3497: 60,-35 + 3498: 60,-36 - node: color: '#D381C9AB' id: MiniTileWhiteLineW decals: - 3200: 70,-38 + 3196: 70,-38 - node: color: '#D381C9C0' id: MiniTileWhiteLineW decals: - 3180: 59,-45 + 3176: 59,-45 - node: color: '#D4D4D40F' id: MiniTileWhiteLineW decals: - 3195: 53,-36 + 3191: 53,-36 - node: color: '#D4D4D428' id: MiniTileWhiteLineW @@ -5616,18 +5599,18 @@ entities: 2860: 28,18 2861: 28,17 2862: 28,15 - 3142: -17,-22 - 3143: -17,-23 - 3210: 19,-47 - 3372: -17,24 - 3373: -17,25 - 3374: -17,26 - 3730: 40,13 - 3731: 40,12 - 3732: 40,11 - 3733: 40,10 - 3734: 40,9 - 3735: 40,8 + 3138: -17,-22 + 3139: -17,-23 + 3206: 19,-47 + 3368: -17,24 + 3369: -17,25 + 3370: -17,26 + 3726: 40,13 + 3727: 40,12 + 3728: 40,11 + 3729: 40,10 + 3730: 40,9 + 3731: 40,8 - node: color: '#EFB34196' id: MiniTileWhiteLineW @@ -5674,18 +5657,18 @@ entities: 2610: -63,-25 2623: -75,-25 2624: -75,-26 - 3291: -33,-12 - 3292: -33,-11 - 3305: -30,-11 - 3312: -26,-17 - 3313: -26,-16 - 3314: -26,-15 - 3334: -40,-7 - 3335: -40,-8 - 3336: -40,-9 - 3365: -43,-7 - 3984: -33,-14 - 3985: -33,-13 + 3287: -33,-12 + 3288: -33,-11 + 3301: -30,-11 + 3308: -26,-17 + 3309: -26,-16 + 3310: -26,-15 + 3330: -40,-7 + 3331: -40,-8 + 3332: -40,-9 + 3361: -43,-7 + 3980: -33,-14 + 3981: -33,-13 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineW @@ -5697,60 +5680,60 @@ entities: color: '#646C6447' id: MonoOverlay decals: - 3947: -20,-19 - 3948: -20,-23 - 3949: -20,-11 - 3950: -20,-28 - 3951: -16,-27 - 3952: -20,-35 - 3953: -10,-27 - 3954: -5,-33 - 3955: -5,-25 - 3956: 1,-27 - 3957: 8,-27 - 3958: -1,-43 - 3959: -12,-43 - 3960: -19,-43 - 3961: -20,-37 - 3962: 33,-3 - 3963: 43,1 - 3964: 52,-2 - 3965: 32,7 + 3943: -20,-19 + 3944: -20,-23 + 3945: -20,-11 + 3946: -20,-28 + 3947: -16,-27 + 3948: -20,-35 + 3949: -10,-27 + 3950: -5,-33 + 3951: -5,-25 + 3952: 1,-27 + 3953: 8,-27 + 3954: -1,-43 + 3955: -12,-43 + 3956: -19,-43 + 3957: -20,-37 + 3958: 33,-3 + 3959: 43,1 + 3960: 52,-2 + 3961: 32,7 - node: color: '#646C6447' id: OffsetCheckerAOverlay decals: - 3966: -4,-26 - 3967: -5,-28 + 3962: -4,-26 + 3963: -5,-28 - node: color: '#8259640C' id: OffsetCheckerBOverlay decals: - 3968: -32,9 - 3969: -33,9 - 3970: -34,9 - 3971: -34,10 - 3972: -31,10 - 3973: -31,9 - 3974: -31,8 - 3975: -30,10 - 3976: -30,9 + 3964: -32,9 + 3965: -33,9 + 3966: -34,9 + 3967: -34,10 + 3968: -31,10 + 3969: -31,9 + 3970: -31,8 + 3971: -30,10 + 3972: -30,9 - node: color: '#FFFFFF03' id: OffsetOverlay decals: - 3916: -41,15 - 3917: -41,14 - 3918: -41,13 - 3919: -40,13 - 3920: -40,14 - 3921: -40,15 - 3922: -37,15 - 3923: -37,14 - 3924: -37,13 - 3925: -36,13 - 3926: -36,14 - 3927: -36,15 + 3912: -41,15 + 3913: -41,14 + 3914: -41,13 + 3915: -40,13 + 3916: -40,14 + 3917: -40,15 + 3918: -37,15 + 3919: -37,14 + 3920: -37,13 + 3921: -36,13 + 3922: -36,14 + 3923: -36,15 - node: color: '#FFFFFFFF' id: OriginStationSign1 @@ -5820,47 +5803,47 @@ entities: color: '#3B000098' id: PavementVerticalCheckerAOverlay decals: - 3928: -39,6 - 3929: -39,5 - 3930: -39,4 - 3931: -39,3 - 3932: -38,3 - 3933: -38,4 - 3934: -38,5 - 3935: -38,6 + 3924: -39,6 + 3925: -39,5 + 3926: -39,4 + 3927: -39,3 + 3928: -38,3 + 3929: -38,4 + 3930: -38,5 + 3931: -38,6 - node: color: '#476F6433' id: PavementVerticalCheckerAOverlay decals: - 3977: -42,-13 - 3978: -43,-11 - 3979: -42,-7 - 3980: -43,-8 - 3981: -39,-11 - 3982: -30,-13 - 3983: -29,-15 + 3973: -42,-13 + 3974: -43,-11 + 3975: -42,-7 + 3976: -43,-8 + 3977: -39,-11 + 3978: -30,-13 + 3979: -29,-15 - node: color: '#00000093' id: PavementVerticalCheckerBOverlay decals: - 3936: -39,6 - 3937: -38,6 - 3938: -39,5 - 3939: -38,5 - 3940: -39,4 - 3941: -38,4 - 3942: -39,3 - 3943: -38,3 + 3932: -39,6 + 3933: -38,6 + 3934: -39,5 + 3935: -38,5 + 3936: -39,4 + 3937: -38,4 + 3938: -39,3 + 3939: -38,3 - node: color: '#EFB34160' id: QuarterTileOverlayGreyscale decals: - 3062: -15,-5 + 3058: -15,-5 - node: color: '#EFB34160' id: QuarterTileOverlayGreyscale180 decals: - 3056: -25,6 + 3052: -25,6 - node: color: '#FFFFFF79' id: QuarterTileOverlayGreyscale180 @@ -5870,12 +5853,12 @@ entities: color: '#EFB34153' id: QuarterTileOverlayGreyscale270 decals: - 3081: -15,6 + 3077: -15,6 - node: color: '#EFB34150' id: QuarterTileOverlayGreyscale90 decals: - 3087: -25,-5 + 3083: -25,-5 - node: color: '#FFFFFF79' id: QuarterTileOverlayGreyscale90 @@ -5888,8 +5871,8 @@ entities: 506: -10.301918,53.89685 507: -9.380043,53.8031 508: -3.5987926,53.818726 - 3872: -8.789691,17.921444 - 3873: -4.6178155,17.827694 + 3868: -8.789691,17.921444 + 3869: -4.6178155,17.827694 - node: color: '#FFFFFFFF' id: Rock03 @@ -5899,9 +5882,9 @@ entities: 482: -7.1241894,49.888622 509: -4.3331676,54.14685 510: -8.959863,49.049328 - 2991: 6.230663,0.73506033 - 2992: 11.183787,0.86006033 - 2993: 10.168162,0.37568533 + 2987: 6.230663,0.73506033 + 2988: 11.183787,0.86006033 + 2989: 10.168162,0.37568533 - node: color: '#FFFFFFFF' id: Rock04 @@ -5911,26 +5894,26 @@ entities: 485: -4.0786057,48.216747 486: -7.6469474,55.2557 487: -6.2719474,53.567944 - 3287: -36,6 - 3288: -32,5 - 3289: -31,3 + 3283: -36,6 + 3284: -32,5 + 3285: -31,3 - node: color: '#FFFFFFFF' id: Rock05 decals: - 2994: 11.168162,0.25068533 + 2990: 11.168162,0.25068533 - node: color: '#FFFFFFFF' id: Rock06 decals: - 3284: -42,3 - 3286: -35,4 - 3290: -33,3 + 3280: -42,3 + 3282: -35,4 + 3286: -33,3 - node: color: '#FFFFFFFF' id: Rock07 decals: - 3285: -40,5 + 3281: -40,5 - node: color: '#FFFFFFFF' id: SpaceStationSign1 @@ -5972,15 +5955,10 @@ entities: decals: 415: -9,-45 416: -1,-45 - 3169: 77.48695,-34.5492 - 3170: 77.50258,-37.51795 - 3402: -9,-52 - 3403: -1,-52 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale - decals: - 4042: 26,-35 + 3165: 77.48695,-34.5492 + 3166: 77.50258,-37.51795 + 3398: -9,-52 + 3399: -1,-52 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale @@ -5991,11 +5969,6 @@ entities: id: ThreeQuarterTileOverlayGreyscale decals: 3: -10,-64 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 4043: 29,-40 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale180 @@ -6017,11 +5990,6 @@ entities: 634: -13,-60 635: -17,-60 674: -4,-60 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 4041: 26,-40 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale270 @@ -6031,7 +5999,7 @@ entities: color: '#D4D4D47C' id: ThreeQuarterTileOverlayGreyscale270 decals: - 3386: 4,-60 + 3382: 4,-60 - node: color: '#D4D4D496' id: ThreeQuarterTileOverlayGreyscale270 @@ -6047,11 +6015,6 @@ entities: 671: -8,-60 672: -2,-60 673: 1,-60 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 4040: 29,-35 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale90 @@ -6072,12 +6035,12 @@ entities: color: '#FFFFFFFF' id: VentSmall decals: - 3216: 62,-44 + 3212: 62,-44 - node: color: '#A46106FF' id: WarnBox decals: - 3392: -13,-13 + 3388: -13,-13 - node: color: '#FFFFFFFF' id: WarnBox @@ -6086,103 +6049,103 @@ entities: 378: -52,20 394: -52,33 395: -52,31 - 3393: -11,-13 - 3395: -41,18 + 3389: -11,-13 + 3391: -41,18 - node: color: '#FFFFFF06' id: WarnCornerGreyscaleSW decals: - 3904: -41,13 - 3910: -37,13 + 3900: -41,13 + 3906: -37,13 - node: color: '#FFFFFF06' id: WarnCornerNE decals: - 3905: -36,15 - 3907: -40,15 + 3901: -36,15 + 3903: -40,15 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 3134: -40,-59 - 3164: 54,-62 - 3167: 78,-34 - 3168: 78,-37 - 4032: -50,-37 + 3130: -40,-59 + 3160: 54,-62 + 3163: 78,-34 + 3164: 78,-37 + 4022: -50,-37 - node: color: '#FFFFFF06' id: WarnCornerNW decals: - 3906: -41,15 - 3911: -37,15 + 3902: -41,15 + 3907: -37,15 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 3135: -38,-59 - 3163: 56,-61 - 3165: 77,-34 - 3166: 77,-37 + 3131: -38,-59 + 3159: 56,-61 + 3161: 77,-34 + 3162: 77,-37 - node: color: '#FFFFFF06' id: WarnCornerSE decals: - 3908: -40,13 - 3909: -36,13 + 3904: -40,13 + 3905: -36,13 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 3171: 78,-38 - 3172: 78,-35 - 3897: -72,-40 + 3167: 78,-38 + 3168: 78,-35 + 3893: -72,-40 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 3173: 77,-35 - 3174: 77,-38 + 3169: 77,-35 + 3170: 77,-38 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 3157: 17,36 - 3158: 15,37 - 4021: -78,-43 - 4037: -50,-40 + 3153: 17,36 + 3154: 15,37 + 4017: -78,-43 + 4027: -50,-40 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 3159: 15,36 - 3160: 17,37 - 4020: -76,-43 + 3155: 15,36 + 3156: 17,37 + 4016: -76,-43 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 3155: 15,39 - 3156: 17,38 - 4019: -78,-41 + 3151: 15,39 + 3152: 17,38 + 4015: -78,-41 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: 347: 47,-58 2732: -38,-42 - 3153: 17,39 - 3154: 15,38 - 4022: -76,-41 + 3149: 17,39 + 3150: 15,38 + 4018: -76,-41 - node: color: '#FFFFFFFF' id: WarnEndN decals: - 3902: -70,-46 + 3898: -70,-46 - node: color: '#FFFFFFFF' id: WarnEndS decals: - 3903: -70,-47 + 3899: -70,-47 - node: color: '#FFFFFFFF' id: WarnLineE @@ -6192,13 +6155,13 @@ entities: 295: -39,-55 2353: 38,-26 2354: 38,-27 - 3147: 15,38 - 3151: 17,37 - 3898: -72,-39 - 4018: -78,-42 - 4035: -50,-38 - 4036: -50,-39 - 4039: -72,-38 + 3143: 15,38 + 3147: 17,37 + 3894: -72,-39 + 4014: -78,-42 + 4025: -50,-38 + 4026: -50,-39 + 4029: -72,-38 - node: color: '#DE3A3A96' id: WarnLineGreyscaleE @@ -6209,14 +6172,14 @@ entities: color: '#FFFFFF06' id: WarnLineGreyscaleE decals: - 3914: -36,14 - 3915: -40,14 + 3910: -36,14 + 3911: -40,14 - node: color: '#FFFFFF06' id: WarnLineGreyscaleW decals: - 3912: -41,14 - 3913: -37,14 + 3908: -41,14 + 3909: -37,14 - node: color: '#FFFFFFFF' id: WarnLineN @@ -6231,17 +6194,17 @@ entities: 296: -39,-42 297: -40,-42 1009: 45,-58 - 3146: 14,38 - 3149: 16,39 - 3150: 18,38 - 3506: 63,-31 - 3507: 62,-31 - 3508: 61,-31 - 3759: -42,-42 - 3761: -41,-42 - 3899: -73,-40 - 3900: -74,-40 - 4017: -77,-41 + 3142: 14,38 + 3145: 16,39 + 3146: 18,38 + 3502: 63,-31 + 3503: 62,-31 + 3504: 61,-31 + 3755: -42,-42 + 3757: -41,-42 + 3895: -73,-40 + 3896: -74,-40 + 4013: -77,-41 - node: color: '#FFFFFFFF' id: WarnLineS @@ -6266,9 +6229,9 @@ entities: 2730: -37,-54 2731: -37,-58 2733: -42,-42 - 3144: 15,37 - 3148: 17,38 - 4016: -76,-42 + 3140: 15,37 + 3144: 17,38 + 4012: -76,-42 - node: color: '#FFFFFFFF' id: WarnLineW @@ -6279,18 +6242,24 @@ entities: 292: -39,-53 2723: -36,-41 2724: -35,-41 - 3145: 14,36 - 3152: 18,36 - 3162: 16,37 - 4015: -77,-43 - 4033: -49,-40 - 4034: -51,-37 + 3141: 14,36 + 3148: 18,36 + 3158: 16,37 + 4011: -77,-43 + 4023: -49,-40 + 4024: -51,-37 + - node: + color: '#A7A5FFFF' + id: WoodTrimThinCornerNe + decals: + 4038: 29,-35 + 4039: 29,-39 - node: color: '#B7AFC7FF' id: WoodTrimThinCornerNe decals: - 3519: 19,-82 - 3520: 18,-81 + 3515: 19,-82 + 3516: 18,-81 - node: color: '#D4D4D4E3' id: WoodTrimThinCornerNe @@ -6304,12 +6273,17 @@ entities: id: WoodTrimThinCornerNe decals: 2344: 34,-54 - 3848: 2,21 + 3844: 2,21 + - node: + color: '#A7A5FFFF' + id: WoodTrimThinCornerNw + decals: + 4035: 21,-35 - node: color: '#B7AFC7FF' id: WoodTrimThinCornerNw decals: - 3524: 12,-81 + 3520: 12,-81 - node: color: '#D4D4D4E3' id: WoodTrimThinCornerNw @@ -6318,19 +6292,24 @@ entities: 2871: 10,14 2899: 16,14 2911: 10,-4 - 2924: 6,-5 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: 2345: 28,-54 - 3846: -2,21 + 3842: -2,21 + - node: + color: '#A7A5FFFF' + id: WoodTrimThinCornerSe + decals: + 4040: 29,-37 + 4041: 29,-40 - node: color: '#B7AFC7FF' id: WoodTrimThinCornerSe decals: - 3521: 19,-86 - 3522: 18,-87 + 3517: 19,-86 + 3518: 18,-87 - node: color: '#D4D4D4E3' id: WoodTrimThinCornerSe @@ -6341,66 +6320,92 @@ entities: color: '#D4D4D4E9' id: WoodTrimThinCornerSe decals: - 3270: 18,9 + 3266: 18,9 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: 2341: 34,-57 - 3847: 2,16 + 3843: 2,16 + - node: + color: '#A7A5FFFF' + id: WoodTrimThinCornerSw + decals: + 4036: 21,-38 + 4037: 22,-40 - node: color: '#B7AFC7FF' id: WoodTrimThinCornerSw decals: - 3523: 12,-87 + 3519: 12,-87 - node: color: '#D4D4D4E3' id: WoodTrimThinCornerSw decals: 2873: 8,5 2908: 8,-13 - 2912: 6,-8 - node: color: '#D4D4D4E9' id: WoodTrimThinCornerSw decals: - 3271: 16,9 + 3267: 16,9 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: 2340: 28,-57 - 3844: -1,16 - 3845: -2,17 + 3840: -1,16 + 3841: -2,17 + - node: + color: '#A7A5FFFF' + id: WoodTrimThinInnerNe + decals: + 4061: 28,-39 - node: color: '#D4D4D4E3' id: WoodTrimThinInnerNe decals: - 2935: 12,-11 + 2931: 12,-11 - node: color: '#D4D4D4E3' id: WoodTrimThinInnerNw decals: 2896: 10,10 - 2936: 10,-5 + 2932: 10,-5 + - node: + color: '#A7A5FFFF' + id: WoodTrimThinInnerSe + decals: + 4062: 28,-37 + - node: + color: '#A7A5FFFF' + id: WoodTrimThinInnerSw + decals: + 4060: 22,-38 - node: color: '#D4D4D4E3' id: WoodTrimThinInnerSw decals: 2897: 10,13 - 2937: 8,-8 + 2933: 8,-8 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 3861: -1,17 + 3857: -1,17 + - node: + color: '#A7A5FFFF' + id: WoodTrimThinLineE + decals: + 4048: 29,-36 + 4049: 28,-38 - node: color: '#B7AFC7FF' id: WoodTrimThinLineE decals: - 3530: 19,-83 - 3531: 19,-84 - 3532: 19,-85 + 3526: 19,-83 + 3527: 19,-84 + 3528: 19,-85 - node: color: '#D4D4D4E3' id: WoodTrimThinLineE @@ -6414,38 +6419,49 @@ entities: 2900: 18,11 2901: 18,12 2902: 18,13 - 2928: 12,-5 - 2929: 12,-6 - 2930: 12,-7 - 2931: 12,-8 - 2932: 12,-9 - 2933: 12,-10 - 2934: 13,-12 + 2924: 12,-5 + 2925: 12,-6 + 2926: 12,-7 + 2927: 12,-8 + 2928: 12,-9 + 2929: 12,-10 + 2930: 13,-12 - node: color: '#D4D4D4E9' id: WoodTrimThinLineE decals: - 3273: 14,8 - 3274: 14,9 + 3269: 14,8 + 3270: 14,9 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: 2342: 34,-56 2343: 34,-55 - 3857: 2,17 - 3858: 2,18 - 3859: 2,19 - 3860: 2,20 + 3853: 2,17 + 3854: 2,18 + 3855: 2,19 + 3856: 2,20 + - node: + color: '#A7A5FFFF' + id: WoodTrimThinLineN + decals: + 4050: 22,-35 + 4051: 23,-35 + 4052: 24,-35 + 4053: 25,-35 + 4054: 26,-35 + 4055: 27,-35 + 4056: 28,-35 - node: color: '#B7AFC7FF' id: WoodTrimThinLineN decals: - 3525: 13,-81 - 3526: 14,-81 - 3527: 15,-81 - 3528: 16,-81 - 3529: 17,-81 + 3521: 13,-81 + 3522: 14,-81 + 3523: 15,-81 + 3524: 16,-81 + 3525: 17,-81 - node: color: '#D4D4D4E3' id: WoodTrimThinLineN @@ -6455,10 +6471,10 @@ entities: 2876: 12,14 2877: 13,14 2906: 17,14 - 2925: 7,-5 - 2926: 8,-5 - 2927: 9,-5 - 2938: 11,-4 + 2921: 7,-5 + 2922: 8,-5 + 2923: 9,-5 + 2934: 11,-4 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN @@ -6468,18 +6484,28 @@ entities: 2348: 31,-54 2349: 30,-54 2350: 29,-54 - 3849: -1,21 - 3850: 0,21 - 3851: 1,21 + 3845: -1,21 + 3846: 0,21 + 3847: 1,21 + - node: + color: '#A7A5FFFF' + id: WoodTrimThinLineS + decals: + 4042: 23,-40 + 4043: 24,-40 + 4044: 25,-40 + 4045: 26,-40 + 4046: 27,-40 + 4047: 28,-40 - node: color: '#B7AFC7FF' id: WoodTrimThinLineS decals: - 3538: 13,-87 - 3539: 14,-87 - 3540: 15,-87 - 3541: 16,-87 - 3542: 17,-87 + 3534: 13,-87 + 3535: 14,-87 + 3536: 15,-87 + 3537: 16,-87 + 3538: 17,-87 - node: color: '#D4D4D4E3' id: WoodTrimThinLineS @@ -6489,11 +6515,11 @@ entities: 2893: 11,5 2894: 10,5 2895: 9,5 - 2913: 7,-8 - 2914: 9,-13 - 2915: 10,-13 - 2916: 11,-13 - 2917: 12,-13 + 2912: 7,-8 + 2913: 9,-13 + 2914: 10,-13 + 2915: 11,-13 + 2916: 12,-13 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -6502,17 +6528,24 @@ entities: 2337: 33,-57 2338: 30,-57 2339: 29,-57 - 3855: 0,16 - 3856: 1,16 + 3851: 0,16 + 3852: 1,16 + - node: + color: '#A7A5FFFF' + id: WoodTrimThinLineW + decals: + 4057: 21,-36 + 4058: 21,-37 + 4059: 22,-39 - node: color: '#B7AFC7FF' id: WoodTrimThinLineW decals: - 3533: 12,-82 - 3534: 12,-83 - 3535: 12,-84 - 3536: 12,-86 - 3537: 12,-85 + 3529: 12,-82 + 3530: 12,-83 + 3531: 12,-84 + 3532: 12,-86 + 3533: 12,-85 - node: color: '#D4D4D4E3' id: WoodTrimThinLineW @@ -6527,26 +6560,24 @@ entities: 2903: 16,13 2904: 16,12 2905: 16,11 - 2918: 8,-12 - 2919: 8,-11 - 2920: 8,-10 - 2921: 8,-9 - 2922: 6,-6 - 2923: 6,-7 + 2917: 8,-12 + 2918: 8,-11 + 2919: 8,-10 + 2920: 8,-9 - node: color: '#D4D4D4E9' id: WoodTrimThinLineW decals: - 3272: 16,10 + 3268: 16,10 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: 2351: 28,-55 2352: 28,-56 - 3852: -2,18 - 3853: -2,19 - 3854: -2,20 + 3848: -2,18 + 3849: -2,19 + 3850: -2,20 - node: color: '#FFFFFFFF' id: bushsnowa2 @@ -6557,7 +6588,7 @@ entities: color: '#D03F4A21' id: corgi decals: - 3989: 27,-19 + 3985: 27,-19 - node: color: '#FFFFFFFF' id: grasssnowb2 @@ -6586,26 +6617,11 @@ entities: id: revolution decals: 411: -44,-83 - - node: - color: '#951710FF' - id: rune2 - decals: - 4056: 3,-13 - - node: - color: '#951710FF' - id: rune5 - decals: - 4057: 1,-10 - - node: - color: '#951710FF' - id: rune6 - decals: - 4058: 4,-12 - node: color: '#EFB341F5' id: shop decals: - 3391: -49,12 + 3387: -49,12 - node: cleanable: True color: '#A4610696' @@ -7030,8 +7046,7 @@ entities: 0,5: 0: 65535 1,5: - 0: 65279 - 2: 256 + 0: 65535 -6,-8: 0: 65535 -6,-7: @@ -7978,8 +7993,7 @@ entities: 13,-10: 0: 65535 13,-9: - 0: 65503 - 3: 32 + 0: 65535 14,-12: 0: 65532 1: 3 @@ -8038,7 +8052,7 @@ entities: 11,-15: 0: 65535 12,-16: - 4: 65280 + 2: 65280 0: 242 12,-15: 0: 65535 @@ -8262,10 +8276,10 @@ entities: 0: 65535 -11,-10: 0: 53247 - 4: 12288 + 2: 12288 -11,-9: 0: 65484 - 4: 51 + 2: 51 -10,-12: 0: 65535 -10,-11: @@ -8304,20 +8318,20 @@ entities: 0: 65535 -13,-12: 0: 7967 - 5: 224 - 4: 57344 + 3: 224 + 2: 57344 -13,-11: 0: 65311 - 4: 224 + 2: 224 -13,-15: 0: 65523 -13,-14: 0: 7967 - 6: 224 - 7: 57344 + 4: 224 + 5: 57344 -13,-13: 0: 7967 - 4: 57568 + 2: 57568 -10,0: 0: 65535 -9,0: @@ -8410,10 +8424,10 @@ entities: 0: 65535 -12,-10: 0: 24063 - 4: 32768 + 2: 32768 -12,-9: 0: 56663 - 4: 136 + 2: 136 -12,-16: 0: 511 -11,-16: @@ -8635,8 +8649,7 @@ entities: -14,-23: 0: 65392 -14,-22: - 0: 32703 - 8: 64 + 0: 32767 -14,-21: 0: 65535 -13,-23: @@ -9445,7 +9458,7 @@ entities: 0: 65535 -19,-11: 0: 61167 - 4: 4368 + 2: 4368 -18,-12: 0: 65535 -18,-11: @@ -9736,7 +9749,7 @@ entities: 0: 65535 -20,-11: 0: 13119 - 4: 52416 + 2: 52416 -21,-13: 0: 8192 -21,-8: @@ -9782,36 +9795,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 27.809448 - - 104.6165 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -9872,21 +9855,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 22.303644 - - 83.90419 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 type: GridAtmosphere - id: Origin @@ -9914,25 +9882,25 @@ entities: parent: 2 type: Transform - devices: - - 19561 - - 810 - - 19358 - - 14679 - - 14741 - - 14743 - - 14767 - - 14766 - - 14768 - - 14515 - - 14492 - - 14493 - - 14491 - - 14489 - - 14490 - - 14772 - - 14669 - - 14668 - - 14667 + - 19667 + - 814 + - 19463 + - 14803 + - 14863 + - 14865 + - 14887 + - 14886 + - 14888 + - 14643 + - 14621 + - 14622 + - 14620 + - 14618 + - 14619 + - 14892 + - 14794 + - 14793 + - 14792 type: DeviceList - uid: 5 components: @@ -9940,15 +9908,15 @@ entities: parent: 2 type: Transform - devices: - - 19595 - - 19320 - - 834 - - 14690 - - 14736 - - 14689 - - 14762 - - 14728 - - 14722 + - 19699 + - 19429 + - 838 + - 14813 + - 14858 + - 14812 + - 14883 + - 14850 + - 14844 type: DeviceList - uid: 6 components: @@ -9956,22 +9924,22 @@ entities: parent: 2 type: Transform - devices: - - 19615 - - 837 - - 19323 - - 19562 - - 14629 - - 14628 - - 14716 - - 14652 - - 14649 - - 14686 - - 14708 - - 14729 - - 14657 - - 14693 - - 14663 - - 14702 + - 19719 + - 841 + - 19432 + - 19668 + - 14755 + - 14754 + - 14838 + - 14778 + - 14775 + - 14809 + - 14831 + - 14851 + - 14782 + - 14816 + - 14788 + - 14825 type: DeviceList - uid: 7 components: @@ -9979,25 +9947,25 @@ entities: parent: 2 type: Transform - devices: - - 850 - - 19623 - - 19394 - - 19632 - - 19395 - - 19631 - - 19386 - - 19630 - - 19388 - - 19389 - - 19629 - - 19390 - - 19628 - - 19391 - - 19627 - - 19392 - - 19626 - - 19393 - - 19625 + - 854 + - 19727 + - 19499 + - 19736 + - 19500 + - 19735 + - 19491 + - 19734 + - 19493 + - 19494 + - 19733 + - 19495 + - 19732 + - 19496 + - 19731 + - 19497 + - 19730 + - 19498 + - 19729 type: DeviceList - uid: 8 components: @@ -10005,9 +9973,9 @@ entities: parent: 2 type: Transform - devices: - - 869 - - 19486 - - 19722 + - 873 + - 19591 + - 19826 type: DeviceList - uid: 9 components: @@ -10015,25 +9983,25 @@ entities: parent: 2 type: Transform - devices: - - 835 - - 19551 - - 19308 - - 14874 - - 14875 - - 14872 - - 14873 - - 14525 - - 14690 - - 14736 - - 14689 - - 14738 - - 14710 - - 14712 - - 14672 - - 14658 - - 14709 - - 14671 - - 14883 + - 839 + - 19657 + - 19417 + - 14994 + - 14995 + - 14992 + - 14993 + - 14653 + - 14813 + - 14858 + - 14812 + - 14860 + - 14833 + - 14835 + - 14797 + - 14783 + - 14832 + - 14796 + - 15003 type: DeviceList - uid: 10 components: @@ -10041,19 +10009,19 @@ entities: parent: 2 type: Transform - devices: - - 839 - - 19319 - - 19602 - - 14769 - - 14727 - - 14770 - - 14737 - - 14708 - - 14729 - - 14657 - - 14733 - - 14764 - - 14765 + - 843 + - 19428 + - 19706 + - 14889 + - 14849 + - 14890 + - 14859 + - 14831 + - 14851 + - 14782 + - 14855 + - 14884 + - 14885 type: DeviceList - uid: 11 components: @@ -10061,10 +10029,10 @@ entities: parent: 2 type: Transform - devices: - - 923 - - 19548 - - 19363 - - 14701 + - 926 + - 19655 + - 19468 + - 14824 type: DeviceList - uid: 12 components: @@ -10072,20 +10040,20 @@ entities: parent: 2 type: Transform - devices: - - 874 - - 19673 - - 19436 - - 14808 - - 14826 - - 14724 - - 14644 - - 14761 - - 14868 - - 14869 - - 14870 - - 14805 - - 14832 - - 14833 + - 878 + - 19777 + - 19541 + - 14928 + - 14946 + - 14846 + - 14770 + - 14882 + - 14988 + - 14989 + - 14990 + - 14925 + - 14952 + - 14953 type: DeviceList - uid: 13 components: @@ -10094,20 +10062,20 @@ entities: parent: 2 type: Transform - devices: - - 19357 - - 19584 - - 863 - - 14701 - - 14704 - - 14730 - - 14866 - - 14700 - - 14682 - - 14715 - - 14655 - - 14685 - - 14714 - - 14754 + - 19462 + - 19689 + - 867 + - 14824 + - 14827 + - 14852 + - 14986 + - 14823 + - 14806 + - 14837 + - 14781 + - 14808 + - 14836 + - 14875 type: DeviceList - uid: 14 components: @@ -10115,16 +10083,16 @@ entities: parent: 2 type: Transform - devices: - - 894 - - 19412 - - 19649 - - 14790 - - 14640 - - 14639 - - 14528 - - 14791 - - 14902 - - 14903 + - 898 + - 19517 + - 19753 + - 14910 + - 14766 + - 14765 + - 14656 + - 14911 + - 15022 + - 15023 type: DeviceList - uid: 15 components: @@ -10132,12 +10100,12 @@ entities: parent: 2 type: Transform - devices: - - 14530 - - 14529 - - 892 - - 19644 - - 19408 - - 14786 + - 14658 + - 14657 + - 896 + - 19748 + - 19513 + - 14906 type: DeviceList - uid: 16 components: @@ -10145,8 +10113,8 @@ entities: parent: 2 type: Transform - devices: - - 849 - - 19419 + - 853 + - 19524 type: DeviceList - uid: 17 components: @@ -10159,18 +10127,18 @@ entities: parent: 2 type: Transform - devices: - - 855 - - 19742 - - 19507 - - 14932 - - 14931 - - 14925 - - 14924 - - 14923 - - 14915 - - 14914 - - 14928 - - 14927 + - 859 + - 19846 + - 19612 + - 15052 + - 15051 + - 15045 + - 15044 + - 15043 + - 15035 + - 15034 + - 15048 + - 15047 type: DeviceList - uid: 19 components: @@ -10178,11 +10146,11 @@ entities: parent: 2 type: Transform - devices: - - 19721 - - 858 - - 19482 - - 14565 - - 14562 + - 19825 + - 862 + - 19587 + - 14691 + - 14688 type: DeviceList - uid: 20 components: @@ -10190,30 +10158,30 @@ entities: parent: 2 type: Transform - devices: - - 19725 - - 19316 - - 814 - - 19489 - - 19552 - - 14680 - - 14757 - - 14882 - - 14679 - - 14741 - - 14743 - - 14501 - - 14795 - - 14794 - - 14793 - - 14749 - - 14785 - - 14720 - - 14746 - - 14664 - - 14688 - - 14773 - - 14771 - - 14607 + - 19829 + - 19425 + - 818 + - 19594 + - 19658 + - 14804 + - 14878 + - 15002 + - 14803 + - 14863 + - 14865 + - 14630 + - 14915 + - 14914 + - 14913 + - 14870 + - 14905 + - 14842 + - 14867 + - 14789 + - 14811 + - 14893 + - 14891 + - 14733 type: DeviceList - uid: 21 components: @@ -10221,25 +10189,25 @@ entities: parent: 2 type: Transform - devices: - - 19349 - - 19600 - - 836 - - 14672 - - 14712 - - 14738 - - 14710 - - 14769 - - 14727 - - 14770 - - 14733 - - 14686 - - 14649 - - 14648 - - 14681 - - 14673 - - 14659 - - 14650 - - 14719 + - 19454 + - 19704 + - 840 + - 14797 + - 14835 + - 14860 + - 14833 + - 14889 + - 14849 + - 14890 + - 14855 + - 14809 + - 14775 + - 14774 + - 14805 + - 14798 + - 14784 + - 14776 + - 14841 type: DeviceList - uid: 22 components: @@ -10247,25 +10215,25 @@ entities: parent: 2 type: Transform - devices: - - 19444 - - 859 - - 19426 - - 19662 - - 14845 - - 14846 - - 14847 - - 14874 - - 14875 - - 14872 - - 14873 - - 14865 - - 14863 - - 14864 - - 14807 - - 14804 - - 14740 - - 14876 - - 14512 + - 19549 + - 863 + - 19531 + - 19766 + - 14965 + - 14966 + - 14967 + - 14994 + - 14995 + - 14992 + - 14993 + - 14985 + - 14983 + - 14984 + - 14927 + - 14924 + - 14862 + - 14996 + - 14640 type: DeviceList - uid: 23 components: @@ -10273,18 +10241,18 @@ entities: parent: 2 type: Transform - devices: - - 860 - - 19311 - - 19546 - - 14655 - - 14685 - - 14714 - - 14759 - - 14739 - - 14674 - - 14647 - - 14748 - - 14670 + - 864 + - 19420 + - 19653 + - 14781 + - 14808 + - 14836 + - 14880 + - 14861 + - 14799 + - 14773 + - 14869 + - 14795 type: DeviceList - uid: 24 components: @@ -10292,21 +10260,21 @@ entities: parent: 2 type: Transform - devices: - - 864 - - 19601 - - 19355 - - 14896 - - 14880 - - 14879 - - 14878 - - 14654 - - 14706 - - 14485 - - 14487 - - 14497 - - 14504 - - 14518 - - 14653 + - 868 + - 19705 + - 19460 + - 15016 + - 15000 + - 14999 + - 14998 + - 14780 + - 14829 + - 14614 + - 14616 + - 14626 + - 14632 + - 14646 + - 14779 type: DeviceList - uid: 25 components: @@ -10314,27 +10282,27 @@ entities: parent: 2 type: Transform - devices: - - 812 - - 19575 - - 19341 - - 14744 - - 14750 - - 14758 - - 14756 - - 14895 - - 14695 - - 14696 - - 14742 + - 816 + - 19680 + - 19446 + - 14866 + - 14871 + - 14879 + - 14877 + - 15015 - 14818 - - 14817 - 14819 - - 14825 - - 14752 - - 14732 - - 14661 - - 14666 - - 14855 - - 14618 + - 14864 + - 14938 + - 14937 + - 14939 + - 14945 + - 14873 + - 14854 + - 14786 + - 14791 + - 14975 + - 14744 type: DeviceList - uid: 26 components: @@ -10342,11 +10310,11 @@ entities: parent: 2 type: Transform - devices: - - 19727 - - 19490 - - 870 - - 14827 - - 14828 + - 19831 + - 19595 + - 874 + - 14947 + - 14948 type: DeviceList - uid: 27 components: @@ -10354,17 +10322,17 @@ entities: parent: 2 type: Transform - devices: - - 872 - - 19693 - - 19454 - - 14535 - - 14536 - - 14801 - - 14802 - - 14540 - - 14539 - - 14827 - - 14828 + - 876 + - 19797 + - 19559 + - 14663 + - 14664 + - 14921 + - 14922 + - 14668 + - 14667 + - 14947 + - 14948 type: DeviceList - uid: 28 components: @@ -10372,25 +10340,25 @@ entities: parent: 2 type: Transform - devices: - - 19574 - - 19309 - - 813 - - 14697 - - 14509 - - 14726 - - 14813 - - 14814 - - 14495 - - 14698 - - 14857 - - 14861 + - 19679 + - 19418 + - 817 - 14820 - - 14885 - - 14699 - - 14856 - - 14886 - - 14884 - - 14890 + - 14637 + - 14848 + - 14933 + - 14934 + - 14624 + - 14821 + - 14977 + - 14981 + - 14940 + - 15005 + - 14822 + - 14976 + - 15006 + - 15004 + - 15010 type: DeviceList - uid: 29 components: @@ -10398,15 +10366,15 @@ entities: parent: 2 type: Transform - devices: - - 14478 - - 14482 - - 14483 - - 14481 - - 14516 - - 14511 - - 19606 - - 19370 - - 875 + - 14607 + - 14611 + - 14612 + - 14610 + - 14644 + - 14639 + - 19710 + - 19475 + - 879 type: DeviceList - uid: 30 components: @@ -10414,15 +10382,15 @@ entities: parent: 2 type: Transform - devices: - - 851 - - 19437 - - 19677 - - 14964 - - 14965 - - 14966 - - 14961 - - 14962 - - 14963 + - 855 + - 19542 + - 19781 + - 15084 + - 15085 + - 15086 + - 15081 + - 15082 + - 15083 type: DeviceList - uid: 31 components: @@ -10430,13 +10398,13 @@ entities: parent: 2 type: Transform - devices: - - 14800 - - 14782 - - 14781 - - 14780 - - 848 - - 19406 - - 19642 + - 14920 + - 14902 + - 14901 + - 14900 + - 852 + - 19511 + - 19746 type: DeviceList - uid: 32 components: @@ -10444,22 +10412,22 @@ entities: parent: 2 type: Transform - devices: - - 19724 - - 19488 - - 833 - - 14868 - - 14869 - - 14870 - - 14692 - - 14723 - - 14760 - - 14722 - - 14728 - - 14762 - - 14766 - - 14767 - - 14768 - - 14500 + - 19828 + - 19593 + - 837 + - 14988 + - 14989 + - 14990 + - 14815 + - 14845 + - 14881 + - 14844 + - 14850 + - 14883 + - 14886 + - 14887 + - 14888 + - 14629 type: DeviceList - uid: 33 components: @@ -10467,19 +10435,19 @@ entities: parent: 2 type: Transform - devices: - - 14647 - - 14748 - - 14670 - - 14751 - - 14707 - - 14694 - - 14734 - - 14711 - - 14677 - - 14678 - - 19567 - - 876 - - 19367 + - 14773 + - 14869 + - 14795 + - 14872 + - 14830 + - 14817 + - 14856 + - 14834 + - 14801 + - 14802 + - 19672 + - 880 + - 19472 type: DeviceList - uid: 34 components: @@ -10488,20 +10456,20 @@ entities: parent: 2 type: Transform - devices: - - 861 - - 19329 - - 19583 - - 14648 - - 14681 - - 14673 - - 14659 - - 14652 - - 14716 - - 14717 - - 14735 - - 14759 - - 14739 - - 14674 + - 865 + - 19436 + - 19688 + - 14774 + - 14805 + - 14798 + - 14784 + - 14778 + - 14838 + - 14839 + - 14857 + - 14880 + - 14861 + - 14799 type: DeviceList - uid: 35 components: @@ -10509,9 +10477,9 @@ entities: parent: 2 type: Transform - devices: - - 831 - - 19593 - - 19365 + - 835 + - 19698 + - 19470 type: DeviceList - uid: 36 components: @@ -10519,9 +10487,9 @@ entities: parent: 2 type: Transform - devices: - - 831 - - 19593 - - 19365 + - 835 + - 19698 + - 19470 type: DeviceList - uid: 37 components: @@ -10529,13 +10497,13 @@ entities: parent: 2 type: Transform - devices: - - 19608 - - 19374 - - 878 - - 19598 - - 19362 - - 19324 - - 19597 + - 19712 + - 19479 + - 882 + - 19702 + - 19467 + - 19433 + - 19701 type: DeviceList - uid: 38 components: @@ -10543,19 +10511,19 @@ entities: parent: 2 type: Transform - devices: - - 19379 - - 817 - - 19614 - - 14483 - - 14481 - - 14711 - - 14677 - - 14678 - - 14477 - - 14476 - - 14746 - - 14664 - - 14688 + - 19484 + - 821 + - 19718 + - 14612 + - 14610 + - 14834 + - 14801 + - 14802 + - 14606 + - 14605 + - 14867 + - 14789 + - 14811 type: DeviceList - uid: 39 components: @@ -10563,9 +10531,9 @@ entities: parent: 2 type: Transform - devices: - - 19379 - - 817 - - 19614 + - 19484 + - 821 + - 19718 type: DeviceList - uid: 40 components: @@ -10573,15 +10541,15 @@ entities: parent: 2 type: Transform - devices: - - 19554 - - 841 - - 19364 - - 14737 - - 14534 - - 14883 - - 14671 - - 14709 - - 14658 + - 19660 + - 845 + - 19469 + - 14859 + - 14662 + - 15003 + - 14796 + - 14832 + - 14783 type: DeviceList - uid: 41 components: @@ -10589,19 +10557,19 @@ entities: parent: 2 type: Transform - devices: - - 846 - - 19398 - - 19639 - - 14730 - - 14704 - - 14866 - - 14747 - - 14780 - - 14781 - - 14782 - - 14937 - - 14938 - - 14972 + - 850 + - 19503 + - 19743 + - 14852 + - 14827 + - 14986 + - 14868 + - 14900 + - 14901 + - 14902 + - 15057 + - 15058 + - 15092 type: DeviceList - uid: 42 components: @@ -10609,17 +10577,17 @@ entities: parent: 2 type: Transform - devices: - - 14850 - - 14849 - - 14851 - - 14852 - - 14859 - - 14740 - - 14804 - - 14807 - - 879 - - 19477 - - 19710 + - 14970 + - 14969 + - 14971 + - 14972 + - 14979 + - 14862 + - 14924 + - 14927 + - 883 + - 19582 + - 19814 type: DeviceList - uid: 43 components: @@ -10627,14 +10595,14 @@ entities: parent: 2 type: Transform - devices: - - 880 - - 19479 - - 19719 - - 14862 - - 14858 - - 14851 - - 14852 - - 14859 + - 884 + - 19584 + - 19823 + - 14982 + - 14978 + - 14971 + - 14972 + - 14979 type: DeviceList - uid: 44 components: @@ -10642,9 +10610,9 @@ entities: parent: 2 type: Transform - devices: - - 19716 - - 19484 - - 881 + - 19820 + - 19589 + - 885 type: DeviceList - uid: 45 components: @@ -10652,12 +10620,12 @@ entities: parent: 2 type: Transform - devices: - - 19465 - - 19705 - - 882 - - 14951 - - 14953 - - 14703 + - 19570 + - 19809 + - 886 + - 15071 + - 15073 + - 14826 type: DeviceList - uid: 46 components: @@ -10665,11 +10633,11 @@ entities: parent: 2 type: Transform - devices: - - 19469 - - 883 - - 14951 - - 14953 - - 14703 + - 19574 + - 887 + - 15071 + - 15073 + - 14826 type: DeviceList - uid: 47 components: @@ -10677,9 +10645,9 @@ entities: parent: 2 type: Transform - devices: - - 19463 - - 884 - - 19704 + - 19568 + - 888 + - 19808 type: DeviceList - uid: 48 components: @@ -10687,18 +10655,18 @@ entities: parent: 2 type: Transform - devices: - - 19461 - - 19701 - - 886 - - 14844 - - 14843 - - 14783 - - 14909 - - 14910 - - 14845 - - 14846 - - 14847 - - 14848 + - 19566 + - 19805 + - 890 + - 14964 + - 14963 + - 14903 + - 15029 + - 15030 + - 14965 + - 14966 + - 14967 + - 14968 type: DeviceList - uid: 49 components: @@ -10706,16 +10674,16 @@ entities: parent: 2 type: Transform - devices: - - 868 - - 19679 - - 14834 - - 14835 - - 14822 - - 14821 - - 14837 - - 14836 - - 14572 - - 14806 + - 872 + - 19783 + - 14954 + - 14955 + - 14942 + - 14941 + - 14957 + - 14956 + - 14698 + - 14926 type: DeviceList - uid: 50 components: @@ -10723,14 +10691,14 @@ entities: parent: 2 type: Transform - devices: - - 890 - - 14824 - - 14823 - - 19442 - - 14573 - - 19682 - - 14840 - - 14892 + - 894 + - 14944 + - 14943 + - 19547 + - 14699 + - 19786 + - 14960 + - 15012 type: DeviceList - uid: 51 components: @@ -10738,14 +10706,14 @@ entities: parent: 2 type: Transform - devices: - - 889 - - 19687 - - 19447 - - 14545 - - 14546 - - 14891 - - 14830 - - 14829 + - 893 + - 19791 + - 19552 + - 14673 + - 14674 + - 15011 + - 14950 + - 14949 type: DeviceList - uid: 52 components: @@ -10753,14 +10721,14 @@ entities: parent: 2 type: Transform - devices: - - 19689 - - 888 - - 19450 - - 14829 - - 14830 - - 14841 - - 14871 - - 14541 + - 19793 + - 892 + - 19555 + - 14949 + - 14950 + - 14961 + - 14991 + - 14669 type: DeviceList - uid: 53 components: @@ -10768,10 +10736,10 @@ entities: parent: 2 type: Transform - devices: - - 887 - - 14600 - - 14831 - - 14643 + - 891 + - 14726 + - 14951 + - 14769 type: DeviceList - uid: 54 components: @@ -10779,9 +10747,9 @@ entities: parent: 2 type: Transform - devices: - - 891 - - 19680 - - 19440 + - 895 + - 19784 + - 19545 type: DeviceList - uid: 55 components: @@ -10789,19 +10757,19 @@ entities: parent: 2 type: Transform - devices: - - 854 - - 19645 - - 19407 - - 14786 - - 14789 - - 14798 - - 14787 - - 14788 - - 14792 - - 14796 - - 14797 - - 14900 - - 14901 + - 858 + - 19749 + - 19512 + - 14906 + - 14909 + - 14918 + - 14907 + - 14908 + - 14912 + - 14916 + - 14917 + - 15020 + - 15021 type: DeviceList - uid: 56 components: @@ -10809,12 +10777,12 @@ entities: parent: 2 type: Transform - devices: - - 19418 - - 19654 - - 19655 - - 853 - - 14796 - - 14797 + - 19523 + - 19758 + - 19759 + - 857 + - 14916 + - 14917 type: DeviceList - uid: 57 components: @@ -10822,10 +10790,10 @@ entities: parent: 2 type: Transform - devices: - - 14800 - - 19651 - - 19415 - - 906 + - 14920 + - 19755 + - 19520 + - 909 type: DeviceList - uid: 58 components: @@ -10833,10 +10801,10 @@ entities: parent: 2 type: Transform - devices: - - 895 - - 19652 - - 19416 - - 14791 + - 899 + - 19756 + - 19521 + - 14911 type: DeviceList - uid: 59 components: @@ -10844,11 +10812,11 @@ entities: parent: 2 type: Transform - devices: - - 899 - - 19458 - - 19700 - - 14939 - - 14940 + - 903 + - 19563 + - 19804 + - 15059 + - 15060 type: DeviceList - uid: 60 components: @@ -10856,9 +10824,9 @@ entities: parent: 2 type: Transform - devices: - - 19723 - - 19487 - - 898 + - 19827 + - 19592 + - 902 type: DeviceList - uid: 61 components: @@ -10866,21 +10834,21 @@ entities: parent: 2 type: Transform - devices: - - 19638 - - 19403 - - 19553 - - 19402 - - 847 - - 14519 - - 14508 - - 14488 - - 14774 - - 14654 - - 14706 - - 14778 - - 14683 - - 14938 - - 14937 + - 19742 + - 19508 + - 19659 + - 19507 + - 851 + - 14647 + - 14636 + - 14617 + - 14894 + - 14780 + - 14829 + - 14898 + - 14807 + - 15058 + - 15057 type: DeviceList - uid: 62 components: @@ -10888,14 +10856,14 @@ entities: parent: 2 type: Transform - devices: - - 19591 - - 845 - - 19333 - - 14896 - - 14880 - - 14879 - - 14878 - - 14774 + - 19696 + - 849 + - 19439 + - 15016 + - 15000 + - 14999 + - 14998 + - 14894 type: DeviceList - uid: 63 components: @@ -10903,18 +10871,18 @@ entities: parent: 2 type: Transform - devices: - - 862 - - 19565 - - 19318 - - 14497 - - 14487 - - 14485 - - 14700 - - 14682 - - 14715 - - 14717 - - 14735 - - 14569 + - 866 + - 19670 + - 19427 + - 14626 + - 14616 + - 14614 + - 14823 + - 14806 + - 14837 + - 14839 + - 14857 + - 14695 type: DeviceList - uid: 64 components: @@ -10922,12 +10890,12 @@ entities: parent: 2 type: Transform - devices: - - 822 - - 19580 - - 19314 - - 14705 - - 14755 - - 14899 + - 826 + - 19685 + - 19423 + - 14828 + - 14876 + - 15019 type: DeviceList - uid: 65 components: @@ -10935,12 +10903,12 @@ entities: parent: 2 type: Transform - devices: - - 19581 - - 19353 - - 820 - - 14889 - - 14755 - - 14705 + - 19686 + - 19458 + - 824 + - 15009 + - 14876 + - 14828 type: DeviceList - uid: 66 components: @@ -10948,9 +10916,9 @@ entities: parent: 2 type: Transform - devices: - - 852 - - 19671 - - 19433 + - 856 + - 19775 + - 19538 type: DeviceList - uid: 67 components: @@ -10958,10 +10926,10 @@ entities: parent: 2 type: Transform - devices: - - 19697 - - 19457 - - 902 - - 14842 + - 19801 + - 19562 + - 905 + - 14962 type: DeviceList - uid: 68 components: @@ -10974,11 +10942,11 @@ entities: parent: 2 type: Transform - devices: - - 905 - - 19524 - - 19774 - - 14971 - - 14970 + - 908 + - 19629 + - 19878 + - 15091 + - 15090 type: DeviceList - uid: 70 components: @@ -10991,26 +10959,26 @@ entities: parent: 2 type: Transform - devices: - - 19733 - - 907 - - 19497 - - 14594 - - 14591 - - 14593 - - 14592 - - 14909 - - 14910 - - 14917 - - 14918 - - 14919 - - 14925 - - 14924 - - 14923 - - 14590 - - 14906 - - 14907 - - 14908 - - 14570 + - 19837 + - 910 + - 19602 + - 14720 + - 14717 + - 14719 + - 14718 + - 15029 + - 15030 + - 15037 + - 15038 + - 15039 + - 15045 + - 15044 + - 15043 + - 14716 + - 15026 + - 15027 + - 15028 + - 14696 type: DeviceList - uid: 72 components: @@ -11018,35 +10986,50 @@ entities: parent: 2 type: Transform - devices: - - 908 - - 19502 - - 19741 - - 14917 - - 14918 - - 14919 - - 14912 - - 14913 - - 14933 - - 14921 - - 14922 - - 14920 + - 911 + - 19607 + - 19845 + - 15037 + - 15038 + - 15039 + - 15032 + - 15033 + - 15053 + - 15041 + - 15042 + - 15040 type: DeviceList - uid: 73 components: - - pos: -11.5,56.5 + - rot: -1.5707963267948966 rad + pos: -11.5,57.5 parent: 2 type: Transform + - ShutdownSubscribers: + - 19850 + - 19608 + - 860 + - 15049 + - 15050 + - 15054 + - 15051 + - 15052 + - 15090 + - 15046 + - 15024 + type: DeviceNetwork - devices: - - 19746 - - 19503 - - 856 - - 14926 - - 14904 - - 14934 - - 14931 - - 14932 - - 14929 - - 14930 + - 19850 + - 19608 + - 860 + - 15049 + - 15050 + - 15054 + - 15051 + - 15052 + - 15090 + - 15046 + - 15024 type: DeviceList - uid: 74 components: @@ -11054,15 +11037,15 @@ entities: parent: 2 type: Transform - devices: - - 857 - - 19508 - - 19747 - - 14922 - - 14921 - - 14920 - - 14935 - - 14929 - - 14930 + - 861 + - 19613 + - 19851 + - 15042 + - 15041 + - 15040 + - 15055 + - 15049 + - 15050 type: DeviceList - uid: 75 components: @@ -11070,9 +11053,9 @@ entities: parent: 2 type: Transform - devices: - - 19515 - - 19754 - - 910 + - 19620 + - 19858 + - 913 type: DeviceList - uid: 76 components: @@ -11080,25 +11063,25 @@ entities: parent: 2 type: Transform - devices: - - 809 - - 19577 - - 19343 - - 14491 - - 14490 - - 14489 - - 14515 - - 14492 - - 14493 - - 14853 - - 14854 + - 813 + - 19682 + - 19448 + - 14620 + - 14619 + - 14618 + - 14643 + - 14621 + - 14622 + - 14973 + - 14974 + - 14939 + - 14937 + - 14938 - 14819 - - 14817 - 14818 - - 14696 - - 14695 - - 14742 - - 14583 - - 14618 + - 14864 + - 14709 + - 14744 type: DeviceList - uid: 77 components: @@ -11106,30 +11089,46 @@ entities: parent: 2 type: Transform - devices: - - 19610 - - 819 - - 19375 - - 14898 - - 14889 - - 14645 - - 14585 + - 19714 + - 823 + - 19480 + - 15018 + - 15009 + - 14771 + - 14711 type: DeviceList - uid: 78 components: - pos: 26.5,-33.5 parent: 2 type: Transform + - ShutdownSubscribers: + - 15104 + - 15105 + - 15107 + - 19647 + - 19888 + - 936 + type: DeviceNetwork + - devices: + - 15104 + - 15105 + - 15107 + - 19647 + - 19888 + - 936 + type: DeviceList - uid: 79 components: - pos: 19.5,-9.5 parent: 2 type: Transform - devices: - - 19604 - - 877 - - 19366 - - 14751 - - 14522 + - 19708 + - 881 + - 19471 + - 14872 + - 14650 type: DeviceList - uid: 80 components: @@ -11137,14 +11136,14 @@ entities: parent: 2 type: Transform - devices: - - 19516 - - 19755 - - 896 - - 14602 - - 14603 - - 914 - - 14531 - - 14601 + - 19621 + - 19859 + - 900 + - 14728 + - 14729 + - 917 + - 14659 + - 14727 type: DeviceList - uid: 81 components: @@ -11152,12 +11151,12 @@ entities: parent: 2 type: Transform - devices: - - 14604 - - 14605 - - 14943 - - 14944 - - 913 - - 19757 + - 14730 + - 14731 + - 15063 + - 15064 + - 916 + - 19861 type: DeviceList - uid: 82 components: @@ -11165,13 +11164,13 @@ entities: parent: 2 type: Transform - devices: - - 19519 - - 897 - - 14640 - - 14639 - - 14528 - - 14945 - - 14946 + - 19624 + - 901 + - 14766 + - 14765 + - 14656 + - 15065 + - 15066 type: DeviceList - uid: 83 components: @@ -11179,16 +11178,16 @@ entities: parent: 2 type: Transform - devices: - - 14950 - - 14692 - - 14723 - - 14760 - - 14731 - - 14646 - - 14725 - - 19549 - - 19315 - - 832 + - 15070 + - 14815 + - 14845 + - 14881 + - 14853 + - 14772 + - 14847 + - 19656 + - 19424 + - 836 type: DeviceList - uid: 84 components: @@ -11196,15 +11195,15 @@ entities: parent: 2 type: Transform - devices: - - 19664 - - 866 - - 19428 - - 14881 - - 14687 - - 14691 - - 14834 - - 14835 - - 14571 + - 19768 + - 870 + - 19533 + - 15001 + - 14810 + - 14814 + - 14954 + - 14955 + - 14697 type: DeviceList - uid: 85 components: @@ -11212,21 +11211,21 @@ entities: parent: 2 type: Transform - devices: - - 867 - - 19666 - - 19430 - - 14691 - - 14687 - - 14865 - - 14863 - - 14864 - - 14803 - - 14832 - - 14805 - - 14833 - - 14947 - - 14948 - - 14606 + - 871 + - 19770 + - 19535 + - 14814 + - 14810 + - 14985 + - 14983 + - 14984 + - 14923 + - 14952 + - 14925 + - 14953 + - 15067 + - 15068 + - 14732 type: DeviceList - uid: 86 components: @@ -11234,15 +11233,15 @@ entities: parent: 2 type: Transform - devices: - - 19772 - - 921 - - 19533 - - 14961 - - 14962 - - 14963 - - 14960 - - 14959 - - 14958 + - 19876 + - 924 + - 19638 + - 15081 + - 15082 + - 15083 + - 15080 + - 15079 + - 15078 type: DeviceList - uid: 87 components: @@ -11250,10 +11249,10 @@ entities: parent: 2 type: Transform - devices: - - 14957 - - 19534 - - 19771 - - 922 + - 15077 + - 19639 + - 19875 + - 925 type: DeviceList - uid: 88 components: @@ -11262,13 +11261,13 @@ entities: parent: 2 type: Transform - devices: - - 19531 - - 904 - - 19675 - - 14956 - - 14958 - - 14959 - - 14960 + - 19636 + - 907 + - 19779 + - 15076 + - 15078 + - 15079 + - 15080 type: DeviceList - uid: 89 components: @@ -11277,12 +11276,12 @@ entities: parent: 2 type: Transform - devices: - - 911 - - 19773 - - 19535 - - 14967 - - 14968 - - 14969 + - 914 + - 19877 + - 19640 + - 15087 + - 15088 + - 15089 type: DeviceList - uid: 90 components: @@ -11291,12 +11290,12 @@ entities: parent: 2 type: Transform - devices: - - 807 - - 14775 - - 14972 - - 14877 - - 19537 - - 19776 + - 811 + - 14895 + - 15092 + - 14997 + - 19642 + - 19880 type: DeviceList - uid: 91 components: @@ -11305,23 +11304,23 @@ entities: parent: 2 type: Transform - devices: - - 14778 - - 14683 - - 19641 - - 19402 - - 847 - - 19553 - - 19403 - - 19638 - - 14877 - - 14937 - - 14938 - - 14654 - - 14706 - - 14774 - - 14519 - - 14508 - - 14488 + - 14898 + - 14807 + - 19745 + - 19507 + - 851 + - 19659 + - 19508 + - 19742 + - 14997 + - 15057 + - 15058 + - 14780 + - 14829 + - 14894 + - 14647 + - 14636 + - 14617 type: DeviceList - uid: 92 components: @@ -11329,12 +11328,12 @@ entities: parent: 2 type: Transform - devices: - - 827 - - 14855 - - 14854 - - 14853 - - 19576 - - 19342 + - 831 + - 14975 + - 14974 + - 14973 + - 19681 + - 19447 type: DeviceList - uid: 93 components: @@ -11343,11 +11342,11 @@ entities: parent: 2 type: Transform - devices: - - 19778 - - 19538 - - 925 - - 14974 - - 14975 + - 19882 + - 19643 + - 928 + - 15094 + - 15095 type: DeviceList - uid: 94 components: @@ -11355,22 +11354,22 @@ entities: parent: 2 type: Transform - ShutdownSubscribers: - - 926 - - 19780 - - 19540 - - 14620 - - 14534 - - 14564 - - 14619 + - 929 + - 19884 + - 19645 + - 14746 + - 14662 + - 14690 + - 14745 type: DeviceNetwork - devices: - - 926 - - 19780 - - 19540 - - 14620 - - 14534 - - 14564 - - 14619 + - 929 + - 19884 + - 19645 + - 14746 + - 14662 + - 14690 + - 14745 type: DeviceList - uid: 95 components: @@ -11378,17 +11377,17 @@ entities: parent: 2 type: Transform - ShutdownSubscribers: - - 14621 - - 14625 + - 14747 + - 14751 type: DeviceNetwork - devices: - - 927 - - 19306 - - 19542 - - 14976 - - 14977 - - 14621 - - 14625 + - 930 + - 19415 + - 19650 + - 15096 + - 15097 + - 14747 + - 14751 type: DeviceList - uid: 96 components: @@ -11397,12 +11396,12 @@ entities: parent: 2 type: Transform - ShutdownSubscribers: - - 19781 - - 928 + - 19885 + - 931 type: DeviceNetwork - devices: - - 19781 - - 928 + - 19885 + - 931 type: DeviceList - uid: 97 components: @@ -11411,110 +11410,156 @@ entities: parent: 2 type: Transform - ShutdownSubscribers: - - 929 - - 19696 + - 932 + - 19800 type: DeviceNetwork - devices: - - 929 - - 19696 + - 932 + - 19800 type: DeviceList - - uid: 12968 + - uid: 98 components: - - rot: -1.5707963267948966 rad - pos: 2.5,-4.5 + - pos: 5.5,-3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 934 + - 19648 + - 19413 + - 15098 + - 15100 + - 15101 + type: DeviceNetwork + - devices: + - 934 + - 19648 + - 19413 + - 15098 + - 15100 + - 15101 + type: DeviceList + - uid: 99 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-7.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 933 + - 19886 + - 19412 + - 15100 + - 15099 + type: DeviceNetwork + - devices: + - 933 + - 19886 + - 19412 + - 15100 + - 15099 + type: DeviceList + - uid: 100 + components: + - pos: -1.5,-18.5 parent: 2 type: Transform - ShutdownSubscribers: - - 12853 - - 14256 + - 935 + - 19646 + - 19887 + - 15102 + - 15103 type: DeviceNetwork - devices: - - 12853 - - 14256 + - 935 + - 19646 + - 19887 + - 15102 + - 15103 type: DeviceList - proto: AirAlarmElectronics entities: - - uid: 98 + - uid: 101 components: - pos: -8.750197,39.61815 parent: 2 type: Transform - proto: AirCanister entities: - - uid: 99 + - uid: 102 components: - pos: -34.5,-57.5 parent: 2 type: Transform - - uid: 100 + - uid: 103 components: - pos: -29.5,-48.5 parent: 2 type: Transform - - uid: 101 + - uid: 104 components: - pos: 60.5,29.5 parent: 2 type: Transform - - uid: 102 + - uid: 105 components: - pos: 45.5,-53.5 parent: 2 type: Transform - - uid: 103 + - uid: 106 components: - pos: -15.5,-10.5 parent: 2 type: Transform - - uid: 104 + - uid: 107 components: - pos: 71.5,38.5 parent: 2 type: Transform - - uid: 105 + - uid: 108 components: - pos: -42.5,37.5 parent: 2 type: Transform - - uid: 106 + - uid: 109 components: - pos: 51.5,-34.5 parent: 2 type: Transform - - uid: 107 + - uid: 110 components: - pos: 46.5,-53.5 parent: 2 type: Transform - proto: Airlock entities: - - uid: 108 + - uid: 111 components: - rot: 3.141592653589793 rad pos: -44.5,11.5 parent: 2 type: Transform - links: - - 19330 + - 23821 type: DeviceLinkSink - - uid: 109 + - uid: 112 components: - pos: -51.5,12.5 parent: 2 type: Transform - links: - - 14155 + - 23819 type: DeviceLinkSink - - uid: 110 + - uid: 113 components: - rot: 3.141592653589793 rad pos: -52.5,9.5 parent: 2 type: Transform - links: - - 19327 + - 23820 type: DeviceLinkSink - - uid: 111 + - uid: 114 components: - rot: -1.5707963267948966 rad pos: -21.5,30.5 @@ -11522,27 +11567,27 @@ entities: type: Transform - invokeCounter: 1 links: - - 19550 + - 23823 type: DeviceLinkSink - - uid: 112 + - uid: 115 components: - rot: -1.5707963267948966 rad pos: -17.5,34.5 parent: 2 type: Transform - links: - - 19564 + - 23824 type: DeviceLinkSink - - uid: 113 + - uid: 116 components: - rot: -1.5707963267948966 rad pos: -13.5,34.5 parent: 2 type: Transform - links: - - 19860 + - 23826 type: DeviceLinkSink - - uid: 114 + - uid: 117 components: - rot: -1.5707963267948966 rad pos: -29.5,-1.5 @@ -11550,7 +11595,7 @@ entities: type: Transform - proto: AirlockArmoryGlassLocked entities: - - uid: 115 + - uid: 118 components: - name: secway garage type: MetaData @@ -11558,7 +11603,7 @@ entities: pos: 11.5,18.5 parent: 2 type: Transform - - uid: 116 + - uid: 119 components: - name: warden office type: MetaData @@ -11566,7 +11611,7 @@ entities: pos: 27.5,21.5 parent: 2 type: Transform - - uid: 117 + - uid: 120 components: - name: secway garage type: MetaData @@ -11574,7 +11619,7 @@ entities: pos: 13.5,22.5 parent: 2 type: Transform - - uid: 118 + - uid: 121 components: - name: wardens office type: MetaData @@ -11582,19 +11627,19 @@ entities: pos: 22.5,19.5 parent: 2 type: Transform - - uid: 119 + - uid: 122 components: - pos: 46.5,15.5 parent: 2 type: Transform - - uid: 120 + - uid: 123 components: - pos: 46.5,14.5 parent: 2 type: Transform - proto: AirlockArmoryLocked entities: - - uid: 575 + - uid: 124 components: - rot: -1.5707963267948966 rad pos: 21.5,24.5 @@ -11602,62 +11647,62 @@ entities: type: Transform - proto: AirlockAtmosphericsGlassLocked entities: - - uid: 121 + - uid: 125 components: - name: atmos type: MetaData - pos: -21.5,-32.5 parent: 2 type: Transform - - uid: 122 + - uid: 126 components: - pos: -45.5,-40.5 parent: 2 type: Transform - - uid: 123 + - uid: 127 components: - rot: -1.5707963267948966 rad pos: -33.5,-40.5 parent: 2 type: Transform - - uid: 124 + - uid: 128 components: - rot: -1.5707963267948966 rad pos: -33.5,-41.5 parent: 2 type: Transform - - uid: 125 + - uid: 129 components: - pos: -34.5,-33.5 parent: 2 type: Transform - - uid: 126 + - uid: 130 components: - pos: -34.5,-34.5 parent: 2 type: Transform - - uid: 127 + - uid: 131 components: - pos: -52.5,-58.5 parent: 2 type: Transform - - uid: 128 + - uid: 132 components: - pos: -47.5,-40.5 parent: 2 type: Transform - - uid: 129 + - uid: 133 components: - pos: -43.5,-37.5 parent: 2 type: Transform - - uid: 130 + - uid: 134 components: - rot: -1.5707963267948966 rad pos: -47.5,-39.5 parent: 2 type: Transform - - uid: 131 + - uid: 135 components: - rot: -1.5707963267948966 rad pos: -45.5,-39.5 @@ -11665,77 +11710,77 @@ entities: type: Transform - proto: AirlockAtmosphericsLocked entities: - - uid: 132 + - uid: 136 components: - rot: 1.5707963267948966 rad pos: -29.5,-34.5 parent: 2 type: Transform - - uid: 133 + - uid: 137 components: - rot: 1.5707963267948966 rad pos: -29.5,-33.5 parent: 2 type: Transform - - uid: 134 + - uid: 138 components: - pos: -31.5,-36.5 parent: 2 type: Transform - - uid: 135 + - uid: 139 components: - pos: -32.5,-36.5 parent: 2 type: Transform - - uid: 136 + - uid: 140 components: - name: atmos type: MetaData - pos: -31.5,-30.5 parent: 2 type: Transform - - uid: 137 + - uid: 141 components: - name: atmos type: MetaData - pos: -32.5,-30.5 parent: 2 type: Transform - - uid: 138 + - uid: 142 components: - pos: -26.5,-33.5 parent: 2 type: Transform - - uid: 139 + - uid: 143 components: - pos: -26.5,-34.5 parent: 2 type: Transform - - uid: 140 + - uid: 144 components: - rot: -1.5707963267948966 rad pos: 5.5,-74.5 parent: 2 type: Transform - - uid: 141 + - uid: 145 components: - rot: 1.5707963267948966 rad pos: -51.5,-37.5 parent: 2 type: Transform - - uid: 142 + - uid: 146 components: - rot: 1.5707963267948966 rad pos: -51.5,-36.5 parent: 2 type: Transform - - uid: 143 + - uid: 147 components: - rot: 1.5707963267948966 rad pos: -53.5,-37.5 parent: 2 type: Transform - - uid: 144 + - uid: 148 components: - rot: 1.5707963267948966 rad pos: -53.5,-36.5 @@ -11743,7 +11788,7 @@ entities: type: Transform - proto: AirlockBarLocked entities: - - uid: 145 + - uid: 149 components: - name: bartender quarters type: MetaData @@ -11751,7 +11796,7 @@ entities: pos: 19.5,14.5 parent: 2 type: Transform - - uid: 146 + - uid: 150 components: - name: bartender quarters type: MetaData @@ -11761,82 +11806,82 @@ entities: type: Transform - proto: AirlockBrigGlassLocked entities: - - uid: 147 + - uid: 151 components: - name: interrogation type: MetaData - pos: 16.5,18.5 parent: 2 type: Transform - - uid: 148 + - uid: 152 components: - pos: 19.5,17.5 parent: 2 type: Transform - - uid: 149 + - uid: 153 components: - pos: 3.5,-58.5 parent: 2 type: Transform - - uid: 150 + - uid: 154 components: - pos: 19.5,16.5 parent: 2 type: Transform - - uid: 151 + - uid: 155 components: - name: brig type: MetaData - pos: 42.5,3.5 parent: 2 type: Transform - - uid: 152 + - uid: 156 components: - name: brig type: MetaData - pos: 41.5,3.5 parent: 2 type: Transform - - uid: 153 + - uid: 157 components: - pos: 40.5,-4.5 parent: 2 type: Transform - - uid: 154 + - uid: 158 components: - pos: 53.5,10.5 parent: 2 type: Transform - - uid: 155 + - uid: 159 components: - pos: 40.5,-1.5 parent: 2 type: Transform - - uid: 156 + - uid: 160 components: - name: suspect treatment type: MetaData - pos: 3.5,-55.5 parent: 2 type: Transform - - uid: 157 + - uid: 161 components: - pos: 39.5,11.5 parent: 2 type: Transform - - uid: 158 + - uid: 162 components: - pos: 27.5,17.5 parent: 2 type: Transform - - uid: 159 + - uid: 163 components: - pos: 27.5,18.5 parent: 2 type: Transform - proto: AirlockBrigLocked entities: - - uid: 160 + - uid: 164 components: - name: lawyers office type: MetaData @@ -11845,7 +11890,7 @@ entities: type: Transform - proto: AirlockCaptainLocked entities: - - uid: 161 + - uid: 165 components: - name: captains quarters type: MetaData @@ -11854,17 +11899,17 @@ entities: type: Transform - proto: AirlockCargoGlassLocked entities: - - uid: 162 + - uid: 166 components: - pos: -26.5,18.5 parent: 2 type: Transform - - uid: 163 + - uid: 167 components: - pos: -29.5,22.5 parent: 2 type: Transform - - uid: 164 + - uid: 168 components: - name: cargo access type: MetaData @@ -11872,21 +11917,21 @@ entities: pos: -26.5,19.5 parent: 2 type: Transform - - uid: 165 + - uid: 169 components: - name: cargo dock type: MetaData - pos: -35.5,22.5 parent: 2 type: Transform - - uid: 166 + - uid: 170 components: - name: cargo dock type: MetaData - pos: -35.5,21.5 parent: 2 type: Transform - - uid: 167 + - uid: 171 components: - rot: -1.5707963267948966 rad pos: -43.5,14.5 @@ -11894,25 +11939,25 @@ entities: type: Transform - proto: AirlockCargoLocked entities: - - uid: 168 + - uid: 172 components: - pos: -45.5,17.5 parent: 2 type: Transform - - uid: 169 + - uid: 173 components: - pos: -45.5,13.5 parent: 2 type: Transform - proto: AirlockChapelLocked entities: - - uid: 170 + - uid: 174 components: - rot: -1.5707963267948966 rad pos: -32.5,14.5 parent: 2 type: Transform - - uid: 171 + - uid: 175 components: - rot: -1.5707963267948966 rad pos: -30.5,11.5 @@ -11920,7 +11965,7 @@ entities: type: Transform - proto: AirlockChemistryLocked entities: - - uid: 172 + - uid: 176 components: - rot: 3.141592653589793 rad pos: 5.5,-51.5 @@ -11928,7 +11973,7 @@ entities: type: Transform - proto: AirlockChiefEngineerLocked entities: - - uid: 173 + - uid: 177 components: - name: vault substation type: MetaData @@ -11936,7 +11981,7 @@ entities: pos: 37.5,-30.5 parent: 2 type: Transform - - uid: 174 + - uid: 178 components: - name: ce room type: MetaData @@ -11944,14 +11989,14 @@ entities: pos: -33.5,-16.5 parent: 2 type: Transform - - uid: 175 + - uid: 179 components: - pos: -36.5,-14.5 parent: 2 type: Transform - proto: AirlockChiefMedicalOfficerLocked entities: - - uid: 176 + - uid: 180 components: - name: cmo office type: MetaData @@ -11961,62 +12006,62 @@ entities: type: Transform - proto: AirlockCommandGlassLocked entities: - - uid: 178 + - uid: 181 components: - pos: 19.5,-25.5 parent: 2 type: Transform - - uid: 179 + - uid: 182 components: - pos: 19.5,-24.5 parent: 2 type: Transform - - uid: 180 + - uid: 183 components: - pos: 33.5,-24.5 parent: 2 type: Transform - - uid: 181 + - uid: 184 components: - name: EVA type: MetaData - pos: 32.5,-15.5 parent: 2 type: Transform - - uid: 182 + - uid: 185 components: - pos: 31.5,-24.5 parent: 2 type: Transform - - uid: 183 + - uid: 186 components: - pos: 17.5,-24.5 parent: 2 type: Transform - - uid: 184 + - uid: 187 components: - rot: -1.5707963267948966 rad pos: 64.5,-4.5 parent: 2 type: Transform - - uid: 185 + - uid: 188 components: - pos: 17.5,-25.5 parent: 2 type: Transform - - uid: 186 + - uid: 189 components: - pos: 33.5,-25.5 parent: 2 type: Transform - - uid: 187 + - uid: 190 components: - pos: 31.5,-25.5 parent: 2 type: Transform - proto: AirlockCommandLocked entities: - - uid: 188 + - uid: 191 components: - name: conference room type: MetaData @@ -12024,33 +12069,37 @@ entities: pos: 23.5,-26.5 parent: 2 type: Transform - - uid: 620 + - uid: 192 components: - - pos: 22.5,-33.5 + - name: bridge bar + type: MetaData + - rot: 3.141592653589793 rad + pos: 22.5,-33.5 parent: 2 type: Transform - - uid: 1884 + - uid: 193 components: - - rot: 1.5707963267948966 rad - pos: 29.5,-33.5 + - name: bridge bar + type: MetaData + - rot: 3.141592653589793 rad + pos: 28.5,-33.5 parent: 2 type: Transform - - uid: 1922 + - uid: 194 components: - - rot: 3.141592653589793 rad - pos: 27.5,-40.5 + - pos: 25.5,-40.5 parent: 2 type: Transform - proto: AirlockDetectiveGlassLocked entities: - - uid: 189 + - uid: 195 components: - pos: 20.5,-15.5 parent: 2 type: Transform - proto: AirlockEngineering entities: - - uid: 190 + - uid: 196 components: - name: substation type: MetaData @@ -12059,78 +12108,78 @@ entities: type: Transform - proto: AirlockEngineeringGlassLocked entities: - - uid: 193 + - uid: 197 components: - pos: -69.5,-23.5 parent: 2 type: Transform - - uid: 194 + - uid: 198 components: - pos: -63.5,-24.5 parent: 2 type: Transform - - uid: 195 + - uid: 199 components: - rot: 3.141592653589793 rad pos: -26.5,-17.5 parent: 2 type: Transform - - uid: 196 + - uid: 200 components: - rot: 3.141592653589793 rad pos: -26.5,-16.5 parent: 2 type: Transform - - uid: 197 + - uid: 201 components: - rot: 1.5707963267948966 rad pos: -30.5,-10.5 parent: 2 type: Transform - - uid: 198 + - uid: 202 components: - rot: 3.141592653589793 rad pos: -51.5,-21.5 parent: 2 type: Transform - - uid: 199 + - uid: 203 components: - pos: -40.5,-6.5 parent: 2 type: Transform - - uid: 200 + - uid: 204 components: - pos: -43.5,-5.5 parent: 2 type: Transform - - uid: 201 + - uid: 205 components: - pos: -69.5,-24.5 parent: 2 type: Transform - - uid: 202 + - uid: 206 components: - pos: -32.5,-19.5 parent: 2 type: Transform - - uid: 203 + - uid: 207 components: - pos: -31.5,-19.5 parent: 2 type: Transform - - uid: 204 + - uid: 208 components: - rot: 1.5707963267948966 rad pos: -53.5,-21.5 parent: 2 type: Transform - - uid: 205 + - uid: 209 components: - rot: 1.5707963267948966 rad pos: -54.5,-21.5 parent: 2 type: Transform - - uid: 206 + - uid: 210 components: - name: particle accelerator type: MetaData @@ -12138,44 +12187,44 @@ entities: pos: -63.5,-23.5 parent: 2 type: Transform - - uid: 207 + - uid: 211 components: - rot: -1.5707963267948966 rad pos: -40.5,-11.5 parent: 2 type: Transform - - uid: 208 + - uid: 212 components: - rot: -1.5707963267948966 rad pos: -40.5,-10.5 parent: 2 type: Transform - - uid: 209 + - uid: 213 components: - pos: -33.5,-11.5 parent: 2 type: Transform - - uid: 210 + - uid: 214 components: - pos: -33.5,-10.5 parent: 2 type: Transform - - uid: 211 + - uid: 215 components: - pos: -43.5,-6.5 parent: 2 type: Transform - - uid: 212 + - uid: 216 components: - pos: -64.5,-29.5 parent: 2 type: Transform - - uid: 213 + - uid: 217 components: - pos: -68.5,-29.5 parent: 2 type: Transform - - uid: 214 + - uid: 218 components: - name: electrical storage type: MetaData @@ -12183,108 +12232,108 @@ entities: pos: -13.5,38.5 parent: 2 type: Transform - - uid: 215 + - uid: 219 components: - rot: 1.5707963267948966 rad pos: -43.5,-22.5 parent: 2 type: Transform - - uid: 216 + - uid: 220 components: - pos: -40.5,-5.5 parent: 2 type: Transform - - uid: 217 + - uid: 221 components: - rot: 3.141592653589793 rad pos: -63.5,-30.5 parent: 2 type: Transform - - uid: 218 + - uid: 222 components: - rot: -1.5707963267948966 rad pos: -74.5,-41.5 parent: 2 type: Transform - - uid: 219 + - uid: 223 components: - pos: -69.5,-31.5 parent: 2 type: Transform - - uid: 220 + - uid: 224 components: - rot: 3.141592653589793 rad pos: -60.5,-26.5 parent: 2 type: Transform - - uid: 221 + - uid: 225 components: - rot: -1.5707963267948966 rad pos: -72.5,-33.5 parent: 2 type: Transform - - uid: 222 + - uid: 226 components: - rot: -1.5707963267948966 rad pos: -73.5,-33.5 parent: 2 type: Transform - - uid: 223 + - uid: 227 components: - rot: -1.5707963267948966 rad pos: -73.5,-36.5 parent: 2 type: Transform - - uid: 224 + - uid: 228 components: - rot: -1.5707963267948966 rad pos: -72.5,-36.5 parent: 2 type: Transform - - uid: 225 + - uid: 229 components: - rot: -1.5707963267948966 rad pos: -64.5,-45.5 parent: 2 type: Transform - - uid: 226 + - uid: 230 components: - pos: -64.5,-36.5 parent: 2 type: Transform - - uid: 227 + - uid: 231 components: - pos: -49.5,-23.5 parent: 2 type: Transform - - uid: 228 + - uid: 232 components: - pos: -64.5,-37.5 parent: 2 type: Transform - proto: AirlockEngineeringLocked entities: - - uid: 191 + - uid: 233 components: - pos: -58.5,-36.5 parent: 2 type: Transform - - uid: 192 + - uid: 234 components: - pos: -58.5,-37.5 parent: 2 type: Transform - - uid: 229 + - uid: 235 components: - pos: -19.5,-1.5 parent: 2 type: Transform - - uid: 230 + - uid: 236 components: - pos: -26.5,-14.5 parent: 2 type: Transform - - uid: 231 + - uid: 237 components: - name: substation type: MetaData @@ -12292,49 +12341,49 @@ entities: pos: 17.5,-29.5 parent: 2 type: Transform - - uid: 232 + - uid: 238 components: - pos: 9.5,-44.5 parent: 2 type: Transform - - uid: 233 + - uid: 239 components: - rot: 3.141592653589793 rad pos: 12.5,-15.5 parent: 2 type: Transform - - uid: 234 + - uid: 240 components: - pos: -6.5,-19.5 parent: 2 type: Transform - - uid: 235 + - uid: 241 components: - name: substation type: MetaData - pos: -11.5,-70.5 parent: 2 type: Transform - - uid: 236 + - uid: 242 components: - pos: 30.5,-3.5 parent: 2 type: Transform - - uid: 237 + - uid: 243 components: - name: gravity generator type: MetaData - pos: -19.5,-3.5 parent: 2 type: Transform - - uid: 238 + - uid: 244 components: - name: solar type: MetaData - pos: -1.5,-76.5 parent: 2 type: Transform - - uid: 239 + - uid: 245 components: - name: substation type: MetaData @@ -12342,68 +12391,68 @@ entities: pos: 13.5,-57.5 parent: 2 type: Transform - - uid: 240 + - uid: 246 components: - name: substation type: MetaData - pos: 32.5,23.5 parent: 2 type: Transform - - uid: 241 + - uid: 247 components: - pos: 46.5,-0.5 parent: 2 type: Transform - - uid: 242 + - uid: 248 components: - pos: 63.5,27.5 parent: 2 type: Transform - - uid: 243 + - uid: 249 components: - pos: 47.5,-6.5 parent: 2 type: Transform - - uid: 244 + - uid: 250 components: - rot: 3.141592653589793 rad pos: 38.5,-44.5 parent: 2 type: Transform - - uid: 245 + - uid: 251 components: - name: substation type: MetaData - pos: -27.5,-22.5 parent: 2 type: Transform - - uid: 246 + - uid: 252 components: - pos: -30.5,-23.5 parent: 2 type: Transform - - uid: 247 + - uid: 253 components: - name: substation type: MetaData - pos: 42.5,-59.5 parent: 2 type: Transform - - uid: 248 + - uid: 254 components: - name: storage type: MetaData - pos: -41.5,-14.5 parent: 2 type: Transform - - uid: 249 + - uid: 255 components: - name: ame type: MetaData - pos: -43.5,-10.5 parent: 2 type: Transform - - uid: 250 + - uid: 256 components: - name: ame type: MetaData @@ -12411,54 +12460,54 @@ entities: pos: -43.5,-11.5 parent: 2 type: Transform - - uid: 251 + - uid: 257 components: - name: singularity type: MetaData - pos: -49.5,-6.5 parent: 2 type: Transform - - uid: 252 + - uid: 258 components: - name: singularity type: MetaData - pos: -49.5,-5.5 parent: 2 type: Transform - - uid: 253 + - uid: 259 components: - name: substation type: MetaData - pos: -27.5,-35.5 parent: 2 type: Transform - - uid: 254 + - uid: 260 components: - pos: -72.5,-27.5 parent: 2 type: Transform - - uid: 255 + - uid: 261 components: - name: substation type: MetaData - pos: -52.5,-8.5 parent: 2 type: Transform - - uid: 256 + - uid: 262 components: - name: substation type: MetaData - pos: -29.5,-55.5 parent: 2 type: Transform - - uid: 257 + - uid: 263 components: - name: substation type: MetaData - pos: -21.5,15.5 parent: 2 type: Transform - - uid: 258 + - uid: 264 components: - name: substation type: MetaData @@ -12466,7 +12515,7 @@ entities: pos: 14.5,-59.5 parent: 2 type: Transform - - uid: 259 + - uid: 265 components: - name: substation type: MetaData @@ -12474,280 +12523,280 @@ entities: pos: -35.5,-2.5 parent: 2 type: Transform - - uid: 260 + - uid: 266 components: - rot: -1.5707963267948966 rad pos: 49.5,28.5 parent: 2 type: Transform - - uid: 261 + - uid: 267 components: - name: substation type: MetaData - pos: -8.5,33.5 parent: 2 type: Transform - - uid: 262 + - uid: 268 components: - name: substation type: MetaData - pos: -10.5,60.5 parent: 2 type: Transform - - uid: 263 + - uid: 269 components: - pos: 68.5,-60.5 parent: 2 type: Transform - - uid: 264 + - uid: 270 components: - pos: -21.5,0.5 parent: 2 type: Transform - - uid: 265 + - uid: 271 components: - rot: 3.141592653589793 rad pos: 6.5,-21.5 parent: 2 type: Transform - - uid: 266 + - uid: 272 components: - pos: -41.5,-19.5 parent: 2 type: Transform - - uid: 267 + - uid: 273 components: - rot: -1.5707963267948966 rad pos: -71.5,-35.5 parent: 2 type: Transform - - uid: 268 + - uid: 274 components: - pos: -49.5,-16.5 parent: 2 type: Transform - - uid: 269 + - uid: 275 components: - pos: -49.5,-17.5 parent: 2 type: Transform - proto: AirlockExternalGlass entities: - - uid: 270 + - uid: 276 components: - pos: -1.5,-80.5 parent: 2 type: Transform - - uid: 271 + - uid: 277 components: - pos: -57.5,-71.5 parent: 2 type: Transform - - uid: 272 + - uid: 278 components: - rot: 1.5707963267948966 rad pos: 66.5,-5.5 parent: 2 type: Transform - - uid: 273 + - uid: 279 components: - pos: 52.5,-14.5 parent: 2 type: Transform - - uid: 274 + - uid: 280 components: - pos: 76.5,-34.5 parent: 2 type: Transform - - uid: 275 + - uid: 281 components: - rot: -1.5707963267948966 rad pos: 32.5,-89.5 parent: 2 type: Transform - - uid: 276 + - uid: 282 components: - rot: -1.5707963267948966 rad pos: 30.5,-93.5 parent: 2 type: Transform - - uid: 277 + - uid: 283 components: - pos: -57.5,-81.5 parent: 2 type: Transform - - uid: 278 + - uid: 284 components: - pos: -57.5,-79.5 parent: 2 type: Transform - - uid: 279 + - uid: 285 components: - pos: -57.5,-73.5 parent: 2 type: Transform - - uid: 280 + - uid: 286 components: - rot: 1.5707963267948966 rad pos: 66.5,-3.5 parent: 2 type: Transform - - uid: 281 + - uid: 287 components: - rot: 1.5707963267948966 rad pos: 66.5,-11.5 parent: 2 type: Transform - - uid: 282 + - uid: 288 components: - rot: 1.5707963267948966 rad pos: 66.5,-13.5 parent: 2 type: Transform - - uid: 283 + - uid: 289 components: - pos: 27.5,45.5 parent: 2 type: Transform - - uid: 284 + - uid: 290 components: - pos: 21.5,45.5 parent: 2 type: Transform - - uid: 285 + - uid: 291 components: - rot: 3.141592653589793 rad pos: -17.5,68.5 parent: 2 type: Transform - - uid: 286 + - uid: 292 components: - pos: 16.5,41.5 parent: 2 type: Transform - - uid: 287 + - uid: 293 components: - pos: -7.5,-94.5 parent: 2 type: Transform - - uid: 288 + - uid: 294 components: - pos: -7.5,-89.5 parent: 2 type: Transform - - uid: 289 + - uid: 295 components: - pos: 67.5,-14.5 parent: 2 type: Transform - - uid: 290 + - uid: 296 components: - pos: 76.5,-36.5 parent: 2 type: Transform - - uid: 291 + - uid: 297 components: - pos: 76.5,-37.5 parent: 2 type: Transform - - uid: 292 + - uid: 298 components: - pos: 76.5,-33.5 parent: 2 type: Transform - - uid: 293 + - uid: 299 components: - rot: -1.5707963267948966 rad pos: 32.5,-82.5 parent: 2 type: Transform - - uid: 294 + - uid: 300 components: - pos: 6.5,-84.5 parent: 2 type: Transform - - uid: 295 + - uid: 301 components: - pos: 48.5,-93.5 parent: 2 type: Transform - - uid: 296 + - uid: 302 components: - rot: 1.5707963267948966 rad pos: 46.5,-82.5 parent: 2 type: Transform - - uid: 297 + - uid: 303 components: - rot: 1.5707963267948966 rad pos: 46.5,-89.5 parent: 2 type: Transform - - uid: 298 + - uid: 304 components: - rot: -1.5707963267948966 rad pos: 67.5,-16.5 parent: 2 type: Transform - - uid: 299 + - uid: 305 components: - rot: 3.141592653589793 rad pos: -37.5,41.5 parent: 2 type: Transform - - uid: 300 + - uid: 306 components: - rot: 3.141592653589793 rad pos: 6.5,-86.5 parent: 2 type: Transform - - uid: 301 + - uid: 307 components: - pos: 50.5,-82.5 parent: 2 type: Transform - - uid: 302 + - uid: 308 components: - pos: 50.5,-89.5 parent: 2 type: Transform - - uid: 303 + - uid: 309 components: - rot: 1.5707963267948966 rad pos: 33.5,-90.5 parent: 2 type: Transform - - uid: 304 + - uid: 310 components: - rot: 3.141592653589793 rad pos: 45.5,-81.5 parent: 2 type: Transform - - uid: 305 + - uid: 311 components: - rot: 3.141592653589793 rad pos: 33.5,-81.5 parent: 2 type: Transform - - uid: 306 + - uid: 312 components: - rot: 1.5707963267948966 rad pos: 45.5,-90.5 parent: 2 type: Transform - - uid: 307 + - uid: 313 components: - rot: 3.141592653589793 rad pos: -37.5,43.5 parent: 2 type: Transform - - uid: 308 + - uid: 314 components: - rot: 3.141592653589793 rad pos: -58.5,-54.5 parent: 2 type: Transform - - uid: 309 + - uid: 315 components: - rot: 3.141592653589793 rad pos: -60.5,-54.5 @@ -12755,201 +12804,201 @@ entities: type: Transform - proto: AirlockExternalGlassLocked entities: - - uid: 310 + - uid: 316 components: - pos: -1.5,-84.5 parent: 2 type: Transform - - uid: 311 + - uid: 317 components: - pos: 52.5,-16.5 parent: 2 type: Transform - - uid: 312 + - uid: 318 components: - pos: -57.5,-1.5 parent: 2 type: Transform - - uid: 313 + - uid: 319 components: - pos: -55.5,-1.5 parent: 2 type: Transform - - uid: 314 + - uid: 320 components: - rot: -1.5707963267948966 rad pos: -58.5,-18.5 parent: 2 type: Transform - - uid: 315 + - uid: 321 components: - pos: -46.5,-41.5 parent: 2 type: Transform - - uid: 316 + - uid: 322 components: - pos: -49.5,20.5 parent: 2 type: Transform - - uid: 317 + - uid: 323 components: - pos: -49.5,22.5 parent: 2 type: Transform - - uid: 318 + - uid: 324 components: - pos: -49.5,33.5 parent: 2 type: Transform - - uid: 319 + - uid: 325 components: - pos: -49.5,31.5 parent: 2 type: Transform - - uid: 320 + - uid: 326 components: - pos: -52.5,33.5 parent: 2 type: Transform - - uid: 321 + - uid: 327 components: - pos: -52.5,31.5 parent: 2 type: Transform - - uid: 322 + - uid: 328 components: - rot: -1.5707963267948966 rad pos: 63.5,30.5 parent: 2 type: Transform - - uid: 323 + - uid: 329 components: - pos: 69.5,36.5 parent: 2 type: Transform - - uid: 324 + - uid: 330 components: - pos: 75.5,36.5 parent: 2 type: Transform - - uid: 325 + - uid: 331 components: - pos: 77.5,36.5 parent: 2 type: Transform - - uid: 326 + - uid: 332 components: - pos: 67.5,36.5 parent: 2 type: Transform - - uid: 327 + - uid: 333 components: - pos: 63.5,32.5 parent: 2 type: Transform - - uid: 328 + - uid: 334 components: - pos: 29.5,41.5 parent: 2 type: Transform - - uid: 329 + - uid: 335 components: - pos: 29.5,43.5 parent: 2 type: Transform - - uid: 330 + - uid: 336 components: - pos: -12.5,71.5 parent: 2 type: Transform - - uid: 331 + - uid: 337 components: - pos: -13.5,71.5 parent: 2 type: Transform - - uid: 332 + - uid: 338 components: - pos: -21.5,71.5 parent: 2 type: Transform - - uid: 333 + - uid: 339 components: - pos: -22.5,71.5 parent: 2 type: Transform - - uid: 334 + - uid: 340 components: - rot: -1.5707963267948966 rad pos: -56.5,-18.5 parent: 2 type: Transform - - uid: 335 + - uid: 341 components: - pos: -35.5,-99.5 parent: 2 type: Transform - - uid: 336 + - uid: 342 components: - pos: -35.5,-101.5 parent: 2 type: Transform - - uid: 337 + - uid: 343 components: - rot: 1.5707963267948966 rad pos: -50.5,-58.5 parent: 2 type: Transform - - uid: 338 + - uid: 344 components: - pos: 68.5,-67.5 parent: 2 type: Transform - - uid: 339 + - uid: 345 components: - pos: 68.5,-69.5 parent: 2 type: Transform - - uid: 340 + - uid: 346 components: - rot: -1.5707963267948966 rad pos: -51.5,42.5 parent: 2 type: Transform - - uid: 341 + - uid: 347 components: - rot: -1.5707963267948966 rad pos: -51.5,43.5 parent: 2 type: Transform - - uid: 342 + - uid: 348 components: - rot: -1.5707963267948966 rad pos: -49.5,45.5 parent: 2 type: Transform - - uid: 343 + - uid: 349 components: - rot: -1.5707963267948966 rad pos: -49.5,47.5 parent: 2 type: Transform - - uid: 344 + - uid: 350 components: - pos: -75.5,-31.5 parent: 2 type: Transform - - uid: 345 + - uid: 351 components: - pos: -77.5,-31.5 parent: 2 type: Transform - - uid: 346 + - uid: 352 components: - rot: -1.5707963267948966 rad pos: -62.5,-45.5 parent: 2 type: Transform - - uid: 347 + - uid: 353 components: - rot: 3.141592653589793 rad pos: -63.5,-44.5 @@ -12957,25 +13006,25 @@ entities: type: Transform - proto: AirlockExternalGlassShuttleArrivals entities: - - uid: 348 + - uid: 354 components: - rot: 1.5707963267948966 rad pos: 34.5,-89.5 parent: 2 type: Transform - - uid: 349 + - uid: 355 components: - rot: -1.5707963267948966 rad pos: 44.5,-82.5 parent: 2 type: Transform - - uid: 350 + - uid: 356 components: - rot: -1.5707963267948966 rad pos: 44.5,-89.5 parent: 2 type: Transform - - uid: 351 + - uid: 357 components: - rot: 1.5707963267948966 rad pos: 34.5,-82.5 @@ -12983,25 +13032,25 @@ entities: type: Transform - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - - uid: 352 + - uid: 358 components: - rot: 1.5707963267948966 rad pos: 69.5,-3.5 parent: 2 type: Transform - - uid: 353 + - uid: 359 components: - rot: 1.5707963267948966 rad pos: 69.5,-13.5 parent: 2 type: Transform - - uid: 354 + - uid: 360 components: - rot: 1.5707963267948966 rad pos: 69.5,-11.5 parent: 2 type: Transform - - uid: 355 + - uid: 361 components: - rot: 1.5707963267948966 rad pos: 69.5,-5.5 @@ -13009,78 +13058,78 @@ entities: type: Transform - proto: AirlockExternalGlassShuttleEscape entities: - - uid: 356 + - uid: 362 components: - rot: 3.141592653589793 rad pos: -17.5,70.5 parent: 2 type: Transform - - uid: 357 + - uid: 363 components: - pos: 48.5,-95.5 parent: 2 type: Transform - - uid: 358 + - uid: 364 components: - pos: 30.5,-95.5 parent: 2 type: Transform - proto: AirlockExternalGlassShuttleLocked entities: - - uid: 359 + - uid: 365 components: - pos: -54.5,-90.5 parent: 2 type: Transform - - uid: 360 + - uid: 366 components: - rot: 3.141592653589793 rad pos: -54.5,-84.5 parent: 2 type: Transform - - uid: 361 + - uid: 367 components: - rot: -1.5707963267948966 rad pos: -53.5,20.5 parent: 2 type: Transform - - uid: 362 + - uid: 368 components: - rot: -1.5707963267948966 rad pos: -53.5,22.5 parent: 2 type: Transform - - uid: 363 + - uid: 369 components: - rot: 3.141592653589793 rad pos: -13.5,75.5 parent: 2 type: Transform - - uid: 364 + - uid: 370 components: - rot: 3.141592653589793 rad pos: -12.5,75.5 parent: 2 type: Transform - - uid: 365 + - uid: 371 components: - rot: 3.141592653589793 rad pos: -21.5,75.5 parent: 2 type: Transform - - uid: 366 + - uid: 372 components: - rot: 3.141592653589793 rad pos: -22.5,75.5 parent: 2 type: Transform - - uid: 367 + - uid: 373 components: - rot: -1.5707963267948966 rad pos: -53.5,42.5 parent: 2 type: Transform - - uid: 368 + - uid: 374 components: - rot: -1.5707963267948966 rad pos: -53.5,43.5 @@ -13088,24 +13137,24 @@ entities: type: Transform - proto: AirlockFreezerKitchenHydroLocked entities: - - uid: 369 + - uid: 375 components: - pos: 0.5,10.5 parent: 2 type: Transform - - uid: 370 + - uid: 376 components: - pos: -9.5,15.5 parent: 2 type: Transform - - uid: 371 + - uid: 377 components: - pos: -1.5,14.5 parent: 2 type: Transform - proto: AirlockGlass entities: - - uid: 372 + - uid: 378 components: - name: lawyer office type: MetaData @@ -13113,59 +13162,59 @@ entities: pos: 35.5,-3.5 parent: 2 type: Transform - - uid: 373 + - uid: 379 components: - rot: 3.141592653589793 rad pos: -20.5,66.5 parent: 2 type: Transform - - uid: 374 + - uid: 380 components: - pos: 31.5,7.5 parent: 2 type: Transform - - uid: 375 + - uid: 381 components: - rot: 3.141592653589793 rad pos: 15.5,-38.5 parent: 2 type: Transform - - uid: 376 + - uid: 382 components: - pos: 19.5,-5.5 parent: 2 type: Transform - - uid: 377 + - uid: 383 components: - name: bar type: MetaData - pos: 10.5,4.5 parent: 2 type: Transform - - uid: 378 + - uid: 384 components: - rot: 1.5707963267948966 rad pos: 26.5,-15.5 parent: 2 type: Transform - - uid: 379 + - uid: 385 components: - rot: 1.5707963267948966 rad pos: 34.5,-19.5 parent: 2 type: Transform - - uid: 380 + - uid: 386 components: - rot: 3.141592653589793 rad pos: -0.5,-27.5 parent: 2 type: Transform - - uid: 381 + - uid: 387 components: - pos: -16.5,-42.5 parent: 2 type: Transform - - uid: 382 + - uid: 388 components: - name: youtool type: MetaData @@ -13173,118 +13222,118 @@ entities: pos: -21.5,-21.5 parent: 2 type: Transform - - uid: 383 + - uid: 389 components: - pos: 26.5,15.5 parent: 2 type: Transform - - uid: 384 + - uid: 390 components: - pos: 24.5,15.5 parent: 2 type: Transform - - uid: 385 + - uid: 391 components: - pos: -1.5,7.5 parent: 2 type: Transform - - uid: 386 + - uid: 392 components: - pos: 31.5,8.5 parent: 2 type: Transform - - uid: 387 + - uid: 393 components: - rot: -1.5707963267948966 rad pos: -3.5,-39.5 parent: 2 type: Transform - - uid: 388 + - uid: 394 components: - rot: -1.5707963267948966 rad pos: 24.5,-44.5 parent: 2 type: Transform - - uid: 389 + - uid: 395 components: - rot: -1.5707963267948966 rad pos: -5.5,-39.5 parent: 2 type: Transform - - uid: 390 + - uid: 396 components: - pos: 25.5,15.5 parent: 2 type: Transform - - uid: 391 + - uid: 397 components: - rot: -1.5707963267948966 rad pos: 15.5,7.5 parent: 2 type: Transform - - uid: 392 + - uid: 398 components: - rot: -1.5707963267948966 rad pos: 15.5,6.5 parent: 2 type: Transform - - uid: 393 + - uid: 399 components: - pos: 35.5,1.5 parent: 2 type: Transform - - uid: 394 + - uid: 400 components: - rot: 1.5707963267948966 rad pos: 16.5,-19.5 parent: 2 type: Transform - - uid: 395 + - uid: 401 components: - rot: 1.5707963267948966 rad pos: 15.5,-19.5 parent: 2 type: Transform - - uid: 396 + - uid: 402 components: - rot: 1.5707963267948966 rad pos: 14.5,-19.5 parent: 2 type: Transform - - uid: 397 + - uid: 403 components: - rot: 3.141592653589793 rad pos: 10.5,-27.5 parent: 2 type: Transform - - uid: 398 + - uid: 404 components: - rot: 3.141592653589793 rad pos: 10.5,-26.5 parent: 2 type: Transform - - uid: 399 + - uid: 405 components: - pos: 0.5,-50.5 parent: 2 type: Transform - - uid: 400 + - uid: 406 components: - pos: -0.5,-50.5 parent: 2 type: Transform - - uid: 401 + - uid: 407 components: - pos: 31.5,1.5 parent: 2 type: Transform - - uid: 402 + - uid: 408 components: - rot: 3.141592653589793 rad pos: 31.5,-6.5 parent: 2 type: Transform - - uid: 403 + - uid: 409 components: - name: lawyer office type: MetaData @@ -13292,244 +13341,244 @@ entities: pos: 38.5,-0.5 parent: 2 type: Transform - - uid: 404 + - uid: 410 components: - pos: -1.5,-50.5 parent: 2 type: Transform - - uid: 405 + - uid: 411 components: - rot: 3.141592653589793 rad pos: 10.5,-2.5 parent: 2 type: Transform - - uid: 406 + - uid: 412 components: - name: bar type: MetaData - pos: 11.5,4.5 parent: 2 type: Transform - - uid: 407 + - uid: 413 components: - rot: 1.5707963267948966 rad pos: 25.5,-15.5 parent: 2 type: Transform - - uid: 408 + - uid: 414 components: - pos: -16.5,-43.5 parent: 2 type: Transform - - uid: 409 + - uid: 415 components: - pos: -16.5,-41.5 parent: 2 type: Transform - - uid: 410 + - uid: 416 components: - rot: 3.141592653589793 rad pos: 10.5,-25.5 parent: 2 type: Transform - - uid: 411 + - uid: 417 components: - rot: 3.141592653589793 rad pos: -0.5,-25.5 parent: 2 type: Transform - - uid: 412 + - uid: 418 components: - rot: 1.5707963267948966 rad pos: 19.5,6.5 parent: 2 type: Transform - - uid: 413 + - uid: 419 components: - pos: 19.5,-4.5 parent: 2 type: Transform - - uid: 414 + - uid: 420 components: - pos: 19.5,-6.5 parent: 2 type: Transform - - uid: 415 + - uid: 421 components: - rot: -1.5707963267948966 rad pos: -4.5,-39.5 parent: 2 type: Transform - - uid: 416 + - uid: 422 components: - rot: 3.141592653589793 rad pos: 31.5,-4.5 parent: 2 type: Transform - - uid: 417 + - uid: 423 components: - rot: 1.5707963267948966 rad pos: 36.5,-19.5 parent: 2 type: Transform - - uid: 418 + - uid: 424 components: - pos: -20.5,-24.5 parent: 2 type: Transform - - uid: 419 + - uid: 425 components: - pos: 35.5,0.5 parent: 2 type: Transform - - uid: 420 + - uid: 426 components: - rot: 3.141592653589793 rad pos: 31.5,-5.5 parent: 2 type: Transform - - uid: 421 + - uid: 427 components: - pos: -3.5,-22.5 parent: 2 type: Transform - - uid: 422 + - uid: 428 components: - pos: -19.5,-24.5 parent: 2 type: Transform - - uid: 423 + - uid: 429 components: - rot: 1.5707963267948966 rad pos: 35.5,-19.5 parent: 2 type: Transform - - uid: 424 + - uid: 430 components: - pos: -5.5,-22.5 parent: 2 type: Transform - - uid: 425 + - uid: 431 components: - rot: 3.141592653589793 rad pos: 14.5,-38.5 parent: 2 type: Transform - - uid: 426 + - uid: 432 components: - rot: 1.5707963267948966 rad pos: 24.5,-15.5 parent: 2 type: Transform - - uid: 427 + - uid: 433 components: - rot: 3.141592653589793 rad pos: 11.5,-2.5 parent: 2 type: Transform - - uid: 428 + - uid: 434 components: - pos: 35.5,2.5 parent: 2 type: Transform - - uid: 429 + - uid: 435 components: - rot: -1.5707963267948966 rad pos: 25.5,-44.5 parent: 2 type: Transform - - uid: 430 + - uid: 436 components: - rot: -1.5707963267948966 rad pos: 26.5,-44.5 parent: 2 type: Transform - - uid: 431 + - uid: 437 components: - pos: 31.5,6.5 parent: 2 type: Transform - - uid: 432 + - uid: 438 components: - rot: 3.141592653589793 rad pos: 16.5,-38.5 parent: 2 type: Transform - - uid: 433 + - uid: 439 components: - pos: 1.5,53.5 parent: 2 type: Transform - - uid: 434 + - uid: 440 components: - pos: 0.5,53.5 parent: 2 type: Transform - - uid: 435 + - uid: 441 components: - pos: -0.5,53.5 parent: 2 type: Transform - - uid: 436 + - uid: 442 components: - pos: 40.5,-41.5 parent: 2 type: Transform - - uid: 437 + - uid: 443 components: - pos: 40.5,-42.5 parent: 2 type: Transform - - uid: 438 + - uid: 444 components: - pos: 40.5,-43.5 parent: 2 type: Transform - - uid: 439 + - uid: 445 components: - pos: 7.5,-43.5 parent: 2 type: Transform - - uid: 440 + - uid: 446 components: - pos: -4.5,-22.5 parent: 2 type: Transform - - uid: 441 + - uid: 447 components: - pos: 7.5,-42.5 parent: 2 type: Transform - - uid: 442 + - uid: 448 components: - pos: 7.5,-41.5 parent: 2 type: Transform - - uid: 443 + - uid: 449 components: - pos: -0.5,-26.5 parent: 2 type: Transform - - uid: 444 + - uid: 450 components: - name: Psychologist office type: MetaData - pos: -8.5,-40.5 parent: 2 type: Transform - - uid: 445 + - uid: 451 components: - rot: -1.5707963267948966 rad pos: -13.5,45.5 parent: 2 type: Transform - - uid: 446 + - uid: 452 components: - rot: -1.5707963267948966 rad pos: -13.5,46.5 parent: 2 type: Transform - - uid: 447 + - uid: 453 components: - name: visitor meeting type: MetaData @@ -13537,78 +13586,78 @@ entities: pos: 37.5,20.5 parent: 2 type: Transform - - uid: 448 + - uid: 454 components: - name: open library type: MetaData - pos: 43.5,19.5 parent: 2 type: Transform - - uid: 449 + - uid: 455 components: - name: open library type: MetaData - pos: 43.5,20.5 parent: 2 type: Transform - - uid: 450 + - uid: 456 components: - rot: 3.141592653589793 rad pos: 36.5,-38.5 parent: 2 type: Transform - - uid: 451 + - uid: 457 components: - rot: 3.141592653589793 rad pos: 35.5,-38.5 parent: 2 type: Transform - - uid: 452 + - uid: 458 components: - rot: 3.141592653589793 rad pos: 34.5,-38.5 parent: 2 type: Transform - - uid: 453 + - uid: 459 components: - rot: 3.141592653589793 rad pos: -14.5,66.5 parent: 2 type: Transform - - uid: 454 + - uid: 460 components: - rot: 3.141592653589793 rad pos: 51.5,-3.5 parent: 2 type: Transform - - uid: 455 + - uid: 461 components: - rot: 3.141592653589793 rad pos: 52.5,-3.5 parent: 2 type: Transform - - uid: 456 + - uid: 462 components: - rot: 3.141592653589793 rad pos: 53.5,-3.5 parent: 2 type: Transform - - uid: 457 + - uid: 463 components: - pos: -13.5,-27.5 parent: 2 type: Transform - - uid: 458 + - uid: 464 components: - pos: -13.5,-26.5 parent: 2 type: Transform - - uid: 459 + - uid: 465 components: - pos: -13.5,-25.5 parent: 2 type: Transform - - uid: 460 + - uid: 466 components: - name: courtroom type: MetaData @@ -13616,67 +13665,67 @@ entities: pos: 31.5,-57.5 parent: 2 type: Transform - - uid: 461 + - uid: 467 components: - pos: 30.5,-76.5 parent: 2 type: Transform - - uid: 462 + - uid: 468 components: - pos: 31.5,-76.5 parent: 2 type: Transform - - uid: 463 + - uid: 469 components: - pos: 29.5,-76.5 parent: 2 type: Transform - - uid: 464 + - uid: 470 components: - rot: 1.5707963267948966 rad pos: 32.5,-72.5 parent: 2 type: Transform - - uid: 465 + - uid: 471 components: - rot: 1.5707963267948966 rad pos: 46.5,-71.5 parent: 2 type: Transform - - uid: 466 + - uid: 472 components: - pos: 40.5,-69.5 parent: 2 type: Transform - - uid: 467 + - uid: 473 components: - pos: 39.5,-69.5 parent: 2 type: Transform - - uid: 468 + - uid: 474 components: - pos: 38.5,-69.5 parent: 2 type: Transform - - uid: 469 + - uid: 475 components: - rot: 3.141592653589793 rad pos: 35.5,-58.5 parent: 2 type: Transform - - uid: 470 + - uid: 476 components: - rot: 3.141592653589793 rad pos: 35.5,-59.5 parent: 2 type: Transform - - uid: 471 + - uid: 477 components: - rot: 3.141592653589793 rad pos: 35.5,-60.5 parent: 2 type: Transform - - uid: 472 + - uid: 478 components: - name: youtool type: MetaData @@ -13684,446 +13733,459 @@ entities: pos: 39.5,-57.5 parent: 2 type: Transform - - uid: 473 + - uid: 479 components: - pos: -7.5,-50.5 parent: 2 type: Transform - - uid: 474 + - uid: 480 components: - pos: -8.5,-50.5 parent: 2 type: Transform - - uid: 475 + - uid: 481 components: - pos: -9.5,-50.5 parent: 2 type: Transform - - uid: 476 + - uid: 482 components: - pos: -19.5,14.5 parent: 2 type: Transform - - uid: 477 + - uid: 483 components: - pos: -18.5,14.5 parent: 2 type: Transform - - uid: 478 + - uid: 484 components: - pos: -20.5,14.5 parent: 2 type: Transform - - uid: 479 + - uid: 485 components: - pos: -19.5,-39.5 parent: 2 type: Transform - - uid: 480 + - uid: 486 components: - pos: -20.5,-39.5 parent: 2 type: Transform - - uid: 481 + - uid: 487 components: - pos: -18.5,-39.5 parent: 2 type: Transform - - uid: 482 + - uid: 488 components: - pos: -18.5,-24.5 parent: 2 type: Transform - - uid: 483 + - uid: 489 components: - rot: -1.5707963267948966 rad pos: -18.5,-7.5 parent: 2 type: Transform - - uid: 484 + - uid: 490 components: - rot: -1.5707963267948966 rad pos: -19.5,-7.5 parent: 2 type: Transform - - uid: 485 + - uid: 491 components: - rot: -1.5707963267948966 rad pos: -20.5,-7.5 parent: 2 type: Transform - - uid: 486 + - uid: 492 components: - pos: -21.5,-12.5 parent: 2 type: Transform - - uid: 487 + - uid: 493 components: - pos: -21.5,-11.5 parent: 2 type: Transform - - uid: 488 + - uid: 494 components: - pos: -21.5,20.5 parent: 2 type: Transform - - uid: 489 + - uid: 495 components: - rot: -1.5707963267948966 rad pos: -17.5,29.5 parent: 2 type: Transform - - uid: 490 + - uid: 496 components: - rot: -1.5707963267948966 rad pos: -17.5,30.5 parent: 2 type: Transform - - uid: 491 + - uid: 497 components: - pos: -30.5,7.5 parent: 2 type: Transform - - uid: 492 + - uid: 498 components: - pos: -44.5,-0.5 parent: 2 type: Transform - - uid: 493 + - uid: 499 components: - pos: -4.5,-2.5 parent: 2 type: Transform - - uid: 494 + - uid: 500 components: - pos: -3.5,-2.5 parent: 2 type: Transform - - uid: 495 + - uid: 501 components: - pos: -44.5,1.5 parent: 2 type: Transform - - uid: 496 + - uid: 502 components: - pos: -44.5,0.5 parent: 2 type: Transform - - uid: 497 + - uid: 503 components: - pos: -38.5,2.5 parent: 2 type: Transform - - uid: 498 + - uid: 504 components: - pos: -37.5,2.5 parent: 2 type: Transform - - uid: 499 + - uid: 505 components: - pos: -27.5,1.5 parent: 2 type: Transform - - uid: 500 + - uid: 506 components: - pos: -27.5,0.5 parent: 2 type: Transform - - uid: 501 + - uid: 507 components: - pos: -27.5,-0.5 parent: 2 type: Transform - - uid: 502 + - uid: 508 components: - pos: -5.5,-2.5 parent: 2 type: Transform - - uid: 503 + - uid: 509 components: - pos: -21.5,21.5 parent: 2 type: Transform - - uid: 504 + - uid: 510 components: - pos: -46.5,2.5 parent: 2 type: Transform - - uid: 505 + - uid: 511 components: - pos: -47.5,2.5 parent: 2 type: Transform - - uid: 506 + - uid: 512 components: - pos: -45.5,2.5 parent: 2 type: Transform - - uid: 507 + - uid: 513 components: - rot: 3.141592653589793 rad pos: -45.5,9.5 parent: 2 type: Transform - - uid: 508 + - uid: 514 components: - rot: 3.141592653589793 rad pos: -46.5,9.5 parent: 2 type: Transform - - uid: 509 + - uid: 515 components: - rot: 1.5707963267948966 rad pos: 19.5,7.5 parent: 2 type: Transform - - uid: 510 + - uid: 516 components: - rot: -1.5707963267948966 rad pos: -17.5,48.5 parent: 2 type: Transform - - uid: 511 + - uid: 517 components: - rot: -1.5707963267948966 rad pos: -13.5,44.5 parent: 2 type: Transform - - uid: 512 + - uid: 518 components: - rot: -1.5707963267948966 rad pos: -18.5,48.5 parent: 2 type: Transform - - uid: 513 + - uid: 519 components: - rot: -1.5707963267948966 rad pos: -16.5,48.5 parent: 2 type: Transform - - uid: 514 + - uid: 520 components: - rot: 3.141592653589793 rad pos: -11.5,52.5 parent: 2 type: Transform - - uid: 515 + - uid: 521 components: - rot: 3.141592653589793 rad pos: -6.5,57.5 parent: 2 type: Transform - - uid: 516 + - uid: 522 components: - pos: -11.5,59.5 parent: 2 type: Transform - - uid: 517 + - uid: 523 components: - pos: -11.5,58.5 parent: 2 type: Transform - - uid: 518 + - uid: 524 components: - pos: -15.5,51.5 parent: 2 type: Transform - - uid: 519 + - uid: 525 components: - pos: -15.5,50.5 parent: 2 type: Transform - - uid: 520 + - uid: 526 components: - rot: 3.141592653589793 rad pos: -4.5,47.5 parent: 2 type: Transform - - uid: 521 + - uid: 527 components: - pos: 4.5,-28.5 parent: 2 type: Transform - - uid: 522 + - uid: 528 components: - pos: 47.5,-76.5 parent: 2 type: Transform - - uid: 523 + - uid: 529 components: - rot: 3.141592653589793 rad pos: 23.5,-83.5 parent: 2 type: Transform - - uid: 524 + - uid: 530 components: - rot: 3.141592653589793 rad pos: 20.5,-83.5 parent: 2 type: Transform - - uid: 525 + - uid: 531 components: - rot: 1.5707963267948966 rad pos: 46.5,-72.5 parent: 2 type: Transform - - uid: 526 + - uid: 532 components: - rot: 1.5707963267948966 rad pos: 32.5,-73.5 parent: 2 type: Transform - - uid: 527 + - uid: 533 components: - pos: 49.5,-76.5 parent: 2 type: Transform - - uid: 528 + - uid: 534 components: - rot: 1.5707963267948966 rad pos: 32.5,-71.5 parent: 2 type: Transform - - uid: 529 + - uid: 535 components: - rot: 1.5707963267948966 rad pos: 46.5,-73.5 parent: 2 type: Transform - - uid: 530 + - uid: 536 components: - pos: 48.5,-76.5 parent: 2 type: Transform - - uid: 531 + - uid: 537 components: - rot: 1.5707963267948966 rad pos: -75.5,-54.5 parent: 2 type: Transform - - uid: 532 + - uid: 538 components: - rot: 1.5707963267948966 rad pos: -75.5,-53.5 parent: 2 type: Transform - - uid: 533 + - uid: 539 components: - rot: 1.5707963267948966 rad pos: -67.5,-53.5 parent: 2 type: Transform - - uid: 534 + - uid: 540 components: - rot: -1.5707963267948966 rad pos: -67.5,-54.5 parent: 2 type: Transform + - uid: 541 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-11.5 + parent: 2 + type: Transform - proto: AirlockGlassShuttle entities: - - uid: 535 + - uid: 542 components: - rot: -1.5707963267948966 rad pos: -59.5,-71.5 parent: 2 type: Transform - - uid: 536 + - uid: 543 components: - rot: -1.5707963267948966 rad pos: -59.5,-73.5 parent: 2 type: Transform - - uid: 537 + - uid: 544 components: - rot: -1.5707963267948966 rad pos: -59.5,-81.5 parent: 2 type: Transform - - uid: 538 + - uid: 545 components: - rot: -1.5707963267948966 rad pos: -59.5,-79.5 parent: 2 type: Transform - - uid: 539 + - uid: 546 components: - rot: 1.5707963267948966 rad pos: 79.5,-37.5 parent: 2 type: Transform - - uid: 540 + - uid: 547 components: - rot: 1.5707963267948966 rad pos: 79.5,-34.5 parent: 2 type: Transform - - uid: 541 + - uid: 548 components: - rot: 1.5707963267948966 rad pos: 79.5,-36.5 parent: 2 type: Transform - - uid: 542 + - uid: 549 components: - rot: 1.5707963267948966 rad pos: 79.5,-33.5 parent: 2 type: Transform - - uid: 543 + - uid: 550 components: - rot: 1.5707963267948966 rad pos: 52.5,-82.5 parent: 2 type: Transform - - uid: 544 + - uid: 551 components: - rot: 1.5707963267948966 rad pos: 52.5,-89.5 parent: 2 type: Transform - - uid: 545 + - uid: 552 components: - rot: 3.141592653589793 rad pos: -73.5,-50.5 parent: 2 type: Transform - - uid: 546 + - uid: 553 components: - rot: 3.141592653589793 rad pos: -71.5,-50.5 parent: 2 type: Transform - - uid: 547 + - uid: 554 components: - rot: -1.5707963267948966 rad pos: -71.5,-57.5 parent: 2 type: Transform - - uid: 548 + - uid: 555 components: - rot: -1.5707963267948966 rad pos: -73.5,-57.5 parent: 2 type: Transform -- proto: AirlockHeadOfPersonnelGlassLocked +- proto: AirlockHeadOfPersonnelLocked entities: - - uid: 900 + - uid: 556 components: - - rot: 1.5707963267948966 rad - pos: 3.5,-2.5 + - pos: 0.5,-5.5 parent: 2 type: Transform -- proto: AirlockHeadOfPersonnelLocked - entities: - - uid: 21170 + - links: + - 23627 + type: DeviceLinkSink + - uid: 557 components: - - rot: 1.5707963267948966 rad - pos: 2.5,-5.5 + - pos: 6.5,-7.5 + parent: 2 + type: Transform + - links: + - 23627 + type: DeviceLinkSink + - uid: 558 + components: + - pos: -2.5,-5.5 parent: 2 type: Transform - proto: AirlockHeadOfSecurityGlassLocked entities: - - uid: 551 + - uid: 559 components: - name: hos office type: MetaData @@ -14131,7 +14193,7 @@ entities: pos: 6.5,18.5 parent: 2 type: Transform - - uid: 552 + - uid: 560 components: - rot: 1.5707963267948966 rad pos: 31.5,-46.5 @@ -14139,7 +14201,7 @@ entities: type: Transform - proto: AirlockHeadOfSecurityLocked entities: - - uid: 553 + - uid: 561 components: - name: hos office type: MetaData @@ -14148,48 +14210,48 @@ entities: type: Transform - proto: AirlockHydroponicsLocked entities: - - uid: 554 + - uid: 562 components: - pos: -3.5,9.5 parent: 2 type: Transform - - uid: 555 + - uid: 563 components: - name: hydrophonics type: MetaData - pos: -10.5,4.5 parent: 2 type: Transform - - uid: 556 + - uid: 564 components: - pos: -3.5,13.5 parent: 2 type: Transform - - uid: 557 + - uid: 565 components: - pos: -6.5,13.5 parent: 2 type: Transform - proto: AirlockJanitorLocked entities: - - uid: 558 + - uid: 566 components: - pos: -11.5,-16.5 parent: 2 type: Transform - - uid: 559 + - uid: 567 components: - pos: -11.5,-20.5 parent: 2 type: Transform - - uid: 560 + - uid: 568 components: - name: janitorial closet type: MetaData - pos: -11.5,-24.5 parent: 2 type: Transform - - uid: 561 + - uid: 569 components: - rot: -1.5707963267948966 rad pos: -7.5,-11.5 @@ -14197,7 +14259,7 @@ entities: type: Transform - proto: AirlockKitchenLocked entities: - - uid: 562 + - uid: 570 components: - name: kitchen type: MetaData @@ -14207,7 +14269,7 @@ entities: type: Transform - proto: AirlockMaint entities: - - uid: 563 + - uid: 571 components: - name: waste disposal type: MetaData @@ -14215,23 +14277,23 @@ entities: pos: 14.5,-51.5 parent: 2 type: Transform - - uid: 564 + - uid: 572 components: - rot: 3.141592653589793 rad pos: 23.5,-53.5 parent: 2 type: Transform - - uid: 565 + - uid: 573 components: - pos: -6.5,-29.5 parent: 2 type: Transform - - uid: 566 + - uid: 574 components: - pos: -17.5,-29.5 parent: 2 type: Transform - - uid: 567 + - uid: 575 components: - name: waste disposal type: MetaData @@ -14239,20 +14301,15 @@ entities: pos: 18.5,-51.5 parent: 2 type: Transform - - uid: 568 + - uid: 576 components: - rot: 1.5707963267948966 rad pos: 15.5,-44.5 parent: 2 type: Transform - - uid: 789 - components: - - pos: 2.5,-13.5 - parent: 2 - type: Transform - proto: AirlockMaintAtmoLocked entities: - - uid: 569 + - uid: 577 components: - name: atmospherics type: MetaData @@ -14260,14 +14317,14 @@ entities: pos: -24.5,-30.5 parent: 2 type: Transform - - uid: 570 + - uid: 578 components: - name: atmos type: MetaData - pos: -30.5,-40.5 parent: 2 type: Transform - - uid: 571 + - uid: 579 components: - name: atmos type: MetaData @@ -14275,7 +14332,7 @@ entities: pos: -32.5,-50.5 parent: 2 type: Transform - - uid: 572 + - uid: 580 components: - name: atmospherics type: MetaData @@ -14284,7 +14341,7 @@ entities: type: Transform - proto: AirlockMaintCaptainLocked entities: - - uid: 573 + - uid: 581 components: - name: captains quarters type: MetaData @@ -14293,7 +14350,7 @@ entities: type: Transform - proto: AirlockMaintChemLocked entities: - - uid: 574 + - uid: 582 components: - rot: -1.5707963267948966 rad pos: 8.5,-49.5 @@ -14301,323 +14358,326 @@ entities: type: Transform - proto: AirlockMaintCommandLocked entities: - - uid: 576 + - uid: 583 components: - rot: 1.5707963267948966 rad pos: 33.5,-32.5 parent: 2 type: Transform - - uid: 577 - components: - - name: conference room - type: MetaData - - rot: 3.141592653589793 rad - pos: 22.5,-31.5 - parent: 2 - type: Transform - - uid: 578 + - uid: 584 components: - rot: 1.5707963267948966 rad pos: 17.5,-32.5 parent: 2 type: Transform - - uid: 579 + - uid: 585 components: - - name: substation - type: MetaData - - rot: 1.5707963267948966 rad - pos: 19.5,-31.5 + - pos: 18.5,-30.5 parent: 2 type: Transform - - uid: 580 + - uid: 586 components: - rot: 1.5707963267948966 rad pos: 63.5,0.5 parent: 2 type: Transform - - uid: 581 + - uid: 587 components: - name: bridge type: MetaData - pos: 26.5,-26.5 parent: 2 type: Transform + - uid: 588 + components: + - name: conference room + type: MetaData + - rot: 3.141592653589793 rad + pos: 22.5,-31.5 + parent: 2 + type: Transform - proto: AirlockMaintDetectiveLocked entities: - - uid: 582 + - uid: 589 components: - pos: 20.5,-9.5 parent: 2 type: Transform - proto: AirlockMaintEngiLocked entities: - - uid: 583 + - uid: 590 components: - name: engineering type: MetaData - pos: -41.5,-4.5 parent: 2 type: Transform - - uid: 584 + - uid: 591 components: - pos: -51.5,-26.5 parent: 2 type: Transform - proto: AirlockMaintGlass entities: - - uid: 585 + - uid: 592 components: - rot: 3.141592653589793 rad pos: -8.5,25.5 parent: 2 type: Transform - - uid: 586 + - uid: 593 components: - pos: 47.5,-33.5 parent: 2 type: Transform - - uid: 587 + - uid: 594 components: - pos: -41.5,-86.5 parent: 2 type: Transform - - uid: 588 + - uid: 595 components: - pos: -42.5,-86.5 parent: 2 type: Transform - - uid: 589 + - uid: 596 components: - pos: -7.5,21.5 parent: 2 type: Transform - - uid: 590 + - uid: 597 components: - pos: -8.5,30.5 parent: 2 type: Transform - - uid: 591 + - uid: 598 components: - rot: -1.5707963267948966 rad pos: -42.5,-28.5 parent: 2 type: Transform - - uid: 592 + - uid: 599 components: - rot: 3.141592653589793 rad pos: -10.5,25.5 parent: 2 type: Transform - - uid: 593 + - uid: 600 components: - pos: 57.5,-27.5 parent: 2 type: Transform - - uid: 594 + - uid: 601 components: - pos: -11.5,18.5 parent: 2 type: Transform - - uid: 595 + - uid: 602 components: - pos: -16.5,16.5 parent: 2 type: Transform - - uid: 596 + - uid: 603 components: - pos: 52.5,-32.5 parent: 2 type: Transform - - uid: 597 + - uid: 604 components: - pos: 54.5,40.5 parent: 2 type: Transform - - uid: 598 + - uid: 605 components: - pos: 54.5,54.5 parent: 2 type: Transform - - uid: 599 + - uid: 606 components: - pos: 52.5,41.5 parent: 2 type: Transform - - uid: 600 + - uid: 607 components: - rot: 1.5707963267948966 rad pos: 52.5,34.5 parent: 2 type: Transform - - uid: 601 + - uid: 608 components: - pos: 44.5,45.5 parent: 2 type: Transform - - uid: 602 + - uid: 609 components: - pos: 31.5,45.5 parent: 2 type: Transform - - uid: 603 + - uid: 610 components: - pos: -26.5,35.5 parent: 2 type: Transform - - uid: 604 + - uid: 611 components: - pos: -26.5,33.5 parent: 2 type: Transform - - uid: 605 + - uid: 612 components: - rot: 3.141592653589793 rad pos: -11.5,21.5 parent: 2 type: Transform - - uid: 606 + - uid: 613 components: - rot: -1.5707963267948966 rad pos: -8.5,-76.5 parent: 2 type: Transform - - uid: 607 + - uid: 614 components: - pos: -13.5,-97.5 parent: 2 type: Transform - - uid: 608 + - uid: 615 components: - pos: -31.5,-97.5 parent: 2 type: Transform - - uid: 609 + - uid: 616 components: - rot: 1.5707963267948966 rad pos: -42.5,-93.5 parent: 2 type: Transform - - uid: 610 + - uid: 617 components: - pos: 65.5,-65.5 parent: 2 type: Transform - - uid: 611 + - uid: 618 components: - pos: 57.5,-65.5 parent: 2 type: Transform - - uid: 612 + - uid: 619 components: - pos: 54.5,-33.5 parent: 2 type: Transform - proto: AirlockMaintGlassLocked entities: - - uid: 613 + - uid: 620 components: - pos: 56.5,35.5 parent: 2 type: Transform - - uid: 614 + - uid: 621 components: - pos: 51.5,31.5 parent: 2 type: Transform - - uid: 615 + - uid: 622 components: - pos: -17.5,64.5 parent: 2 type: Transform - - uid: 616 + - uid: 623 components: - pos: -17.5,59.5 parent: 2 type: Transform - - uid: 617 + - uid: 624 components: - name: forgotten dock type: MetaData - pos: -48.5,-76.5 parent: 2 type: Transform - - uid: 618 + - uid: 625 components: - pos: 57.5,30.5 parent: 2 type: Transform - - uid: 619 + - uid: 626 components: - pos: 16.5,35.5 parent: 2 type: Transform +- proto: AirlockMaintHOPLocked + entities: + - uid: 627 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 2 + type: Transform + - links: + - 23627 + type: DeviceLinkSink - proto: AirlockMaintJanitorLocked entities: - - uid: 621 + - uid: 628 components: - pos: -6.5,-13.5 parent: 2 type: Transform - - uid: 622 + - uid: 629 components: - pos: -14.5,-14.5 parent: 2 type: Transform - proto: AirlockMaintLocked entities: - - uid: 623 + - uid: 630 components: - rot: 3.141592653589793 rad pos: -55.5,-29.5 parent: 2 type: Transform - - uid: 624 - components: - - pos: 7.5,-11.5 - parent: 2 - type: Transform - - uid: 625 + - uid: 631 components: - pos: 18.5,-7.5 parent: 2 type: Transform - - uid: 626 + - uid: 632 components: - pos: 14.5,-2.5 parent: 2 type: Transform - - uid: 627 + - uid: 633 components: - pos: 9.5,-40.5 parent: 2 type: Transform - - uid: 628 + - uid: 634 components: - pos: -8.5,-70.5 parent: 2 type: Transform - - uid: 629 + - uid: 635 components: - rot: 3.141592653589793 rad pos: 27.5,-8.5 parent: 2 type: Transform - - uid: 630 + - uid: 636 components: - pos: 35.5,-15.5 parent: 2 type: Transform - - uid: 631 + - uid: 637 components: - pos: -13.5,-7.5 parent: 2 type: Transform - - uid: 632 + - uid: 638 components: - pos: 36.5,-44.5 parent: 2 type: Transform - - uid: 633 + - uid: 639 components: - name: medbay type: MetaData @@ -14625,192 +14685,186 @@ entities: pos: 7.5,-53.5 parent: 2 type: Transform - - uid: 634 + - uid: 640 components: - pos: 15.5,-15.5 parent: 2 type: Transform - - uid: 635 + - uid: 641 components: - pos: 13.5,-29.5 parent: 2 type: Transform - - uid: 636 + - uid: 642 components: - rot: -1.5707963267948966 rad pos: 37.5,-33.5 parent: 2 type: Transform - - uid: 637 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-20.5 - parent: 2 - type: Transform - - uid: 638 + - uid: 643 components: - rot: 1.5707963267948966 rad pos: -2.5,-9.5 parent: 2 type: Transform - - uid: 639 + - uid: 644 components: - pos: -6.5,-9.5 parent: 2 type: Transform - - uid: 640 + - uid: 645 components: - rot: -1.5707963267948966 rad pos: 55.5,-0.5 parent: 2 type: Transform - - uid: 641 + - uid: 646 components: - name: evac type: MetaData - pos: 48.5,-8.5 parent: 2 type: Transform - - uid: 642 + - uid: 647 components: - pos: 57.5,-4.5 parent: 2 type: Transform - - uid: 643 + - uid: 648 components: - pos: 64.5,2.5 parent: 2 type: Transform - - uid: 644 + - uid: 649 components: - pos: -17.5,-14.5 parent: 2 type: Transform - - uid: 645 + - uid: 650 components: - name: evac type: MetaData - pos: 62.5,-14.5 parent: 2 type: Transform - - uid: 646 + - uid: 651 components: - rot: 1.5707963267948966 rad pos: 50.5,-13.5 parent: 2 type: Transform - - uid: 647 + - uid: 652 components: - pos: -17.5,52.5 parent: 2 type: Transform - - uid: 648 + - uid: 653 components: - pos: -20.5,55.5 parent: 2 type: Transform - - uid: 649 + - uid: 654 components: - name: courtroom type: MetaData - pos: 35.5,-54.5 parent: 2 type: Transform - - uid: 650 + - uid: 655 components: - pos: -21.5,-26.5 parent: 2 type: Transform - - uid: 651 + - uid: 656 components: - pos: -21.5,-42.5 parent: 2 type: Transform - - uid: 652 + - uid: 657 components: - pos: 36.5,-57.5 parent: 2 type: Transform - - uid: 653 + - uid: 658 components: - pos: 9.5,-70.5 parent: 2 type: Transform - - uid: 654 + - uid: 659 components: - rot: -1.5707963267948966 rad pos: 41.5,-64.5 parent: 2 type: Transform - - uid: 655 + - uid: 660 components: - pos: 21.5,-73.5 parent: 2 type: Transform - - uid: 656 + - uid: 661 components: - name: engineering type: MetaData - pos: -30.5,-26.5 parent: 2 type: Transform - - uid: 657 + - uid: 662 components: - name: engineering type: MetaData - pos: -33.5,-26.5 parent: 2 type: Transform - - uid: 658 + - uid: 663 components: - rot: 3.141592653589793 rad pos: -31.5,-45.5 parent: 2 type: Transform - - uid: 659 + - uid: 664 components: - rot: 1.5707963267948966 rad pos: -51.5,-63.5 parent: 2 type: Transform - - uid: 660 + - uid: 665 components: - pos: -16.5,-52.5 parent: 2 type: Transform - - uid: 661 + - uid: 666 components: - rot: -1.5707963267948966 rad pos: -17.5,19.5 parent: 2 type: Transform - - uid: 662 + - uid: 667 components: - pos: -24.5,26.5 parent: 2 type: Transform - - uid: 663 + - uid: 668 components: - pos: -4.5,32.5 parent: 2 type: Transform - - uid: 664 + - uid: 669 components: - pos: 1.5,32.5 parent: 2 type: Transform - - uid: 665 + - uid: 670 components: - rot: -1.5707963267948966 rad pos: -37.5,-1.5 parent: 2 type: Transform - - uid: 666 + - uid: 671 components: - pos: -48.5,0.5 parent: 2 type: Transform - - uid: 667 + - uid: 672 components: - name: singularity catwalk type: MetaData @@ -14818,82 +14872,88 @@ entities: pos: -53.5,-2.5 parent: 2 type: Transform - - uid: 668 + - uid: 673 components: - rot: 1.5707963267948966 rad pos: -21.5,27.5 parent: 2 type: Transform - - uid: 669 + - uid: 674 components: - pos: 11.5,32.5 parent: 2 type: Transform - - uid: 670 + - uid: 675 components: - pos: -23.5,56.5 parent: 2 type: Transform - - uid: 671 + - uid: 676 components: - pos: 4.5,32.5 parent: 2 type: Transform - - uid: 672 + - uid: 677 components: - pos: -22.5,34.5 parent: 2 type: Transform - links: - - 19564 + - 23824 type: DeviceLinkSink - - uid: 673 + - uid: 678 components: - rot: 1.5707963267948966 rad pos: -41.5,-93.5 parent: 2 type: Transform - - uid: 674 + - uid: 679 components: - rot: 1.5707963267948966 rad pos: -56.5,-57.5 parent: 2 type: Transform - - uid: 675 + - uid: 680 components: - pos: 6.5,-35.5 parent: 2 type: Transform - - uid: 676 + - uid: 681 components: - pos: 61.5,-26.5 parent: 2 type: Transform - - uid: 677 + - uid: 682 components: - pos: 10.5,-83.5 parent: 2 type: Transform - - uid: 678 - components: - - pos: -1.5,-24.5 - parent: 2 - type: Transform - - uid: 679 + - uid: 683 components: - rot: 3.141592653589793 rad pos: -55.5,-34.5 parent: 2 type: Transform - - uid: 680 + - uid: 684 components: - rot: 1.5707963267948966 rad pos: -17.5,11.5 parent: 2 type: Transform + - uid: 685 + components: + - pos: -2.5,-17.5 + parent: 2 + type: Transform + - uid: 686 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 2 + type: Transform - proto: AirlockMaintMedLocked entities: - - uid: 681 + - uid: 687 components: - name: surgery type: MetaData @@ -14901,7 +14961,7 @@ entities: pos: -1.5,-68.5 parent: 2 type: Transform - - uid: 682 + - uid: 688 components: - name: storeroom type: MetaData @@ -14909,20 +14969,20 @@ entities: pos: -8.5,-67.5 parent: 2 type: Transform - - uid: 683 + - uid: 689 components: - name: medbay type: MetaData - pos: 6.5,-62.5 parent: 2 type: Transform - - uid: 684 + - uid: 690 components: - rot: 3.141592653589793 rad pos: -16.5,-72.5 parent: 2 type: Transform - - uid: 685 + - uid: 691 components: - name: virology type: MetaData @@ -14930,7 +14990,7 @@ entities: pos: -32.5,-71.5 parent: 2 type: Transform - - uid: 686 + - uid: 692 components: - name: cryogenics type: MetaData @@ -14938,9 +14998,14 @@ entities: pos: -27.5,-58.5 parent: 2 type: Transform + - uid: 725 + components: + - pos: -11.5,-31.5 + parent: 2 + type: Transform - proto: AirlockMaintRnDLocked entities: - - uid: 687 + - uid: 693 components: - name: robotics type: MetaData @@ -14948,21 +15013,21 @@ entities: pos: 75.5,-50.5 parent: 2 type: Transform - - uid: 688 + - uid: 694 components: - name: r&d type: MetaData - pos: 45.5,-34.5 parent: 2 type: Transform - - uid: 689 + - uid: 695 components: - name: toxins type: MetaData - pos: 44.5,-56.5 parent: 2 type: Transform - - uid: 690 + - uid: 696 components: - name: science type: MetaData @@ -14970,7 +15035,7 @@ entities: pos: 50.5,-36.5 parent: 2 type: Transform - - uid: 691 + - uid: 697 components: - name: science type: MetaData @@ -14979,7 +15044,7 @@ entities: type: Transform - proto: AirlockMaintSalvageLocked entities: - - uid: 692 + - uid: 698 components: - name: salvage type: MetaData @@ -14987,7 +15052,7 @@ entities: pos: -37.5,34.5 parent: 2 type: Transform - - uid: 693 + - uid: 699 components: - rot: -1.5707963267948966 rad pos: -44.5,39.5 @@ -14995,50 +15060,57 @@ entities: type: Transform - proto: AirlockMaintSecLocked entities: - - uid: 694 + - uid: 700 components: - pos: 31.5,21.5 parent: 2 type: Transform - - uid: 696 + - uid: 701 components: - pos: -15.5,-19.5 parent: 2 type: Transform - - uid: 697 + - uid: 702 components: - name: interrogation room type: MetaData - pos: 14.5,24.5 parent: 2 type: Transform - - uid: 698 + - uid: 703 components: - rot: 1.5707963267948966 rad pos: 21.5,-48.5 parent: 2 type: Transform - - uid: 699 + - uid: 704 components: - rot: -1.5707963267948966 rad pos: -13.5,26.5 parent: 2 type: Transform - - uid: 700 + - uid: 705 components: - pos: -1.5,22.5 parent: 2 type: Transform +- proto: AirlockMaintTheatreLocked + entities: + - uid: 706 + components: + - pos: 0.5,-18.5 + parent: 2 + type: Transform - proto: AirlockMedicalGlass entities: - - uid: 708 + - uid: 707 components: - pos: 43.5,6.5 parent: 2 type: Transform - proto: AirlockMedicalGlassLocked entities: - - uid: 701 + - uid: 708 components: - name: cloning type: MetaData @@ -15046,43 +15118,43 @@ entities: pos: -5.5,-62.5 parent: 2 type: Transform - - uid: 702 + - uid: 709 components: - pos: -15.5,-55.5 parent: 2 type: Transform - - uid: 703 + - uid: 710 components: - rot: 3.141592653589793 rad pos: -8.5,-58.5 parent: 2 type: Transform - - uid: 704 + - uid: 711 components: - name: cryogenics type: MetaData - pos: -21.5,-60.5 parent: 2 type: Transform - - uid: 705 + - uid: 712 components: - rot: 3.141592653589793 rad pos: -2.5,-58.5 parent: 2 type: Transform - - uid: 706 + - uid: 713 components: - name: medical storage type: MetaData - pos: 7.5,-60.5 parent: 2 type: Transform - - uid: 707 + - uid: 714 components: - pos: 45.5,3.5 parent: 2 type: Transform - - uid: 709 + - uid: 715 components: - name: cloning type: MetaData @@ -15090,7 +15162,7 @@ entities: pos: -6.5,-62.5 parent: 2 type: Transform - - uid: 710 + - uid: 716 components: - name: surgery type: MetaData @@ -15098,40 +15170,40 @@ entities: pos: -2.5,-62.5 parent: 2 type: Transform - - uid: 711 + - uid: 717 components: - pos: -14.5,-58.5 parent: 2 type: Transform - - uid: 712 + - uid: 718 components: - pos: -14.5,-55.5 parent: 2 type: Transform - - uid: 713 + - uid: 719 components: - rot: 3.141592653589793 rad pos: -11.5,-58.5 parent: 2 type: Transform - - uid: 714 + - uid: 720 components: - rot: 3.141592653589793 rad pos: -5.5,-58.5 parent: 2 type: Transform - - uid: 715 + - uid: 721 components: - rot: 3.141592653589793 rad pos: 0.5,-58.5 parent: 2 type: Transform - - uid: 716 + - uid: 722 components: - pos: -15.5,-58.5 parent: 2 type: Transform - - uid: 717 + - uid: 723 components: - name: surgery type: MetaData @@ -15139,7 +15211,7 @@ entities: pos: -3.5,-62.5 parent: 2 type: Transform - - uid: 718 + - uid: 724 components: - name: changing room type: MetaData @@ -15148,34 +15220,29 @@ entities: type: Transform - proto: AirlockMedicalLocked entities: - - uid: 550 - components: - - pos: -11.5,-31.5 - parent: 2 - type: Transform - - uid: 719 + - uid: 726 components: - pos: -4.5,-51.5 parent: 2 type: Transform - - uid: 720 + - uid: 727 components: - name: morgue type: MetaData - pos: -13.5,-62.5 parent: 2 type: Transform - - uid: 721 + - uid: 728 components: - pos: -13.5,-38.5 parent: 2 type: Transform - - uid: 722 + - uid: 729 components: - pos: -11.5,-34.5 parent: 2 type: Transform - - uid: 723 + - uid: 730 components: - name: changing room type: MetaData @@ -15184,7 +15251,7 @@ entities: type: Transform - proto: AirlockQuartermasterGlassLocked entities: - - uid: 724 + - uid: 731 components: - name: quartermasters office type: MetaData @@ -15193,7 +15260,7 @@ entities: type: Transform - proto: AirlockQuartermasterLocked entities: - - uid: 725 + - uid: 732 components: - name: quartermasters office type: MetaData @@ -15202,48 +15269,48 @@ entities: type: Transform - proto: AirlockResearchDirectorGlassLocked entities: - - uid: 726 + - uid: 733 components: - pos: 58.5,-48.5 parent: 2 type: Transform - proto: AirlockResearchDirectorLocked entities: - - uid: 727 + - uid: 734 components: - pos: 62.5,-50.5 parent: 2 type: Transform - proto: AirlockSalvageGlassLocked entities: - - uid: 728 + - uid: 735 components: - name: salvage magnet type: MetaData - pos: -46.5,27.5 parent: 2 type: Transform - - uid: 729 + - uid: 736 components: - name: salvage magnet type: MetaData - pos: -45.5,27.5 parent: 2 type: Transform - - uid: 730 + - uid: 737 components: - name: salvage type: MetaData - pos: -39.5,29.5 parent: 2 type: Transform - - uid: 731 + - uid: 738 components: - rot: -1.5707963267948966 rad pos: -46.5,37.5 parent: 2 type: Transform - - uid: 732 + - uid: 739 components: - rot: -1.5707963267948966 rad pos: -45.5,37.5 @@ -15251,7 +15318,7 @@ entities: type: Transform - proto: AirlockScienceGlassLocked entities: - - uid: 733 + - uid: 740 components: - name: anomaly lab type: MetaData @@ -15259,76 +15326,76 @@ entities: pos: 61.5,-41.5 parent: 2 type: Transform - - uid: 734 + - uid: 741 components: - pos: 54.5,-44.5 parent: 2 type: Transform - - uid: 735 + - uid: 742 components: - pos: 54.5,-45.5 parent: 2 type: Transform - - uid: 736 + - uid: 743 components: - pos: 57.5,-43.5 parent: 2 type: Transform - - uid: 737 + - uid: 744 components: - pos: 54.5,-41.5 parent: 2 type: Transform - - uid: 738 + - uid: 745 components: - pos: 58.5,-45.5 parent: 2 type: Transform - - uid: 739 + - uid: 746 components: - pos: 58.5,-44.5 parent: 2 type: Transform - - uid: 740 + - uid: 747 components: - name: toxins type: MetaData - pos: 49.5,-48.5 parent: 2 type: Transform - - uid: 741 + - uid: 748 components: - rot: 3.141592653589793 rad pos: 47.5,-41.5 parent: 2 type: Transform - - uid: 742 + - uid: 749 components: - rot: 3.141592653589793 rad pos: 47.5,-43.5 parent: 2 type: Transform - - uid: 743 + - uid: 750 components: - rot: 3.141592653589793 rad pos: 47.5,-42.5 parent: 2 type: Transform - - uid: 744 + - uid: 751 components: - name: science canteen type: MetaData - pos: 47.5,-45.5 parent: 2 type: Transform - - uid: 745 + - uid: 752 components: - name: toxins type: MetaData - pos: 50.5,-48.5 parent: 2 type: Transform - - uid: 746 + - uid: 753 components: - name: science canteen type: MetaData @@ -15336,14 +15403,14 @@ entities: pos: 47.5,-46.5 parent: 2 type: Transform - - uid: 747 + - uid: 754 components: - name: anomaly lab type: MetaData - pos: 62.5,-41.5 parent: 2 type: Transform - - uid: 748 + - uid: 755 components: - name: r&d type: MetaData @@ -15351,94 +15418,94 @@ entities: pos: 47.5,-37.5 parent: 2 type: Transform - - uid: 749 + - uid: 756 components: - pos: 69.5,-33.5 parent: 2 type: Transform - - uid: 750 + - uid: 757 components: - pos: 69.5,-34.5 parent: 2 type: Transform - - uid: 751 + - uid: 758 components: - rot: -1.5707963267948966 rad pos: 74.5,-42.5 parent: 2 type: Transform - - uid: 752 + - uid: 759 components: - rot: -1.5707963267948966 rad pos: 75.5,-42.5 parent: 2 type: Transform - - uid: 753 + - uid: 760 components: - rot: -1.5707963267948966 rad pos: 74.5,-39.5 parent: 2 type: Transform - - uid: 754 + - uid: 761 components: - rot: -1.5707963267948966 rad pos: 75.5,-39.5 parent: 2 type: Transform - - uid: 755 + - uid: 762 components: - rot: 1.5707963267948966 rad pos: 69.5,-37.5 parent: 2 type: Transform - - uid: 756 + - uid: 763 components: - rot: 3.141592653589793 rad pos: 72.5,-30.5 parent: 2 type: Transform - - uid: 757 + - uid: 764 components: - pos: 68.5,-32.5 parent: 2 type: Transform - proto: AirlockScienceLocked entities: - - uid: 758 + - uid: 765 components: - name: r&d type: MetaData - pos: 45.5,-40.5 parent: 2 type: Transform - - uid: 759 + - uid: 766 components: - name: robotics type: MetaData - pos: 66.5,-48.5 parent: 2 type: Transform - - uid: 760 + - uid: 767 components: - pos: 62.5,-37.5 parent: 2 type: Transform - - uid: 761 + - uid: 768 components: - pos: 51.5,-59.5 parent: 2 type: Transform - - uid: 762 + - uid: 769 components: - pos: 66.5,-33.5 parent: 2 type: Transform - - uid: 763 + - uid: 770 components: - pos: 66.5,-34.5 parent: 2 type: Transform - - uid: 764 + - uid: 771 components: - rot: 1.5707963267948966 rad pos: 61.5,-37.5 @@ -15446,42 +15513,42 @@ entities: type: Transform - proto: AirlockSecurityGlassLocked entities: - - uid: 765 + - uid: 772 components: - pos: 43.5,15.5 parent: 2 type: Transform - - uid: 766 + - uid: 773 components: - pos: 43.5,14.5 parent: 2 type: Transform - - uid: 767 + - uid: 774 components: - rot: 3.141592653589793 rad pos: 9.5,16.5 parent: 2 type: Transform - - uid: 768 + - uid: 775 components: - name: substation type: MetaData - pos: 61.5,4.5 parent: 2 type: Transform - - uid: 769 + - uid: 776 components: - rot: 1.5707963267948966 rad pos: 28.5,-46.5 parent: 2 type: Transform - - uid: 770 + - uid: 777 components: - rot: 1.5707963267948966 rad pos: 33.5,-46.5 parent: 2 type: Transform - - uid: 771 + - uid: 778 components: - rot: 3.141592653589793 rad pos: 9.5,17.5 @@ -15489,7 +15556,7 @@ entities: type: Transform - proto: AirlockSecurityLocked entities: - - uid: 772 + - uid: 779 components: - name: sec dorm type: MetaData @@ -15497,18 +15564,18 @@ entities: pos: 3.5,17.5 parent: 2 type: Transform - - uid: 773 + - uid: 780 components: - rot: 1.5707963267948966 rad pos: 19.5,-44.5 parent: 2 type: Transform - - uid: 774 + - uid: 781 components: - pos: -17.5,-20.5 parent: 2 type: Transform - - uid: 775 + - uid: 782 components: - name: sec dorm type: MetaData @@ -15516,7 +15583,7 @@ entities: pos: 3.5,16.5 parent: 2 type: Transform - - uid: 776 + - uid: 783 components: - name: courtroom type: MetaData @@ -15524,13 +15591,13 @@ entities: pos: 31.5,-44.5 parent: 2 type: Transform - - uid: 777 + - uid: 784 components: - rot: 3.141592653589793 rad pos: -19.5,-44.5 parent: 2 type: Transform - - uid: 778 + - uid: 785 components: - rot: -1.5707963267948966 rad pos: -15.5,28.5 @@ -15538,14 +15605,14 @@ entities: type: Transform - proto: AirlockServiceLocked entities: - - uid: 779 + - uid: 786 components: - name: reporters office type: MetaData - pos: -24.5,9.5 parent: 2 type: Transform - - uid: 780 + - uid: 787 components: - name: donk cafe type: MetaData @@ -15553,35 +15620,42 @@ entities: pos: -13.5,41.5 parent: 2 type: Transform - - uid: 781 + - uid: 788 components: - name: changs type: MetaData - pos: -23.5,41.5 parent: 2 type: Transform - - uid: 782 + - uid: 789 components: - name: changs type: MetaData - pos: -19.5,45.5 parent: 2 type: Transform - - uid: 783 + - uid: 790 components: - pos: -23.5,47.5 parent: 2 type: Transform - proto: AirlockTheatreLocked entities: - - uid: 784 + - uid: 791 + components: + - name: theatre + type: MetaData + - pos: -1.5,-24.5 + parent: 2 + type: Transform + - uid: 792 components: - name: recording studio type: MetaData - pos: -9.5,-2.5 parent: 2 type: Transform - - uid: 785 + - uid: 793 components: - name: recording studio type: MetaData @@ -15589,7 +15663,7 @@ entities: pos: -7.5,-7.5 parent: 2 type: Transform - - uid: 788 + - uid: 794 components: - name: mime room type: MetaData @@ -15597,9 +15671,9 @@ entities: parent: 2 type: Transform - links: - - 19594 + - 23825 type: DeviceLinkSink - - uid: 790 + - uid: 795 components: - name: clown room type: MetaData @@ -15607,11 +15681,11 @@ entities: parent: 2 type: Transform - links: - - 19336 + - 23822 type: DeviceLinkSink - proto: AirlockVirologyGlass entities: - - uid: 791 + - uid: 796 components: - name: virology testing type: MetaData @@ -15619,28 +15693,28 @@ entities: pos: -20.5,-83.5 parent: 2 type: Transform - - uid: 792 + - uid: 797 components: - pos: -17.5,-77.5 parent: 2 type: Transform - proto: AirlockVirologyGlassLocked entities: - - uid: 793 + - uid: 798 components: - name: zombie containment type: MetaData - pos: -20.5,-80.5 parent: 2 type: Transform - - uid: 794 + - uid: 799 components: - name: zombie containment type: MetaData - pos: -18.5,-74.5 parent: 2 type: Transform - - uid: 795 + - uid: 800 components: - name: virology testing type: MetaData @@ -15648,13 +15722,13 @@ entities: pos: -23.5,-81.5 parent: 2 type: Transform - - uid: 796 + - uid: 801 components: - rot: 3.141592653589793 rad pos: -29.5,-72.5 parent: 2 type: Transform - - uid: 797 + - uid: 802 components: - name: virology testing type: MetaData @@ -15662,19 +15736,19 @@ entities: pos: -22.5,-81.5 parent: 2 type: Transform - - uid: 798 + - uid: 803 components: - name: virology treatment type: MetaData - pos: -24.5,-74.5 parent: 2 type: Transform - - uid: 799 + - uid: 804 components: - pos: -19.5,-68.5 parent: 2 type: Transform - - uid: 800 + - uid: 805 components: - rot: 1.5707963267948966 rad pos: -26.5,-73.5 @@ -15682,19 +15756,19 @@ entities: type: Transform - proto: AirlockVirologyLocked entities: - - uid: 801 + - uid: 806 components: - name: morgue type: MetaData - pos: -14.5,-68.5 parent: 2 type: Transform - - uid: 802 + - uid: 807 components: - pos: -19.5,-65.5 parent: 2 type: Transform - - uid: 803 + - uid: 808 components: - name: virology type: MetaData @@ -15704,649 +15778,652 @@ entities: type: Transform - proto: AirSensor entities: - - uid: 804 + - uid: 809 components: - pos: -20.5,-64.5 parent: 2 type: Transform - - uid: 805 + - uid: 810 components: - pos: 22.5,-27.5 parent: 2 type: Transform - - uid: 807 + - uid: 811 components: - pos: 46.5,6.5 parent: 2 type: Transform - - uid: 808 + - uid: 812 components: - pos: -12.5,-49.5 parent: 2 type: Transform - - uid: 809 + - uid: 813 components: - pos: -5.5,-47.5 parent: 2 type: Transform - - uid: 810 + - uid: 814 components: - pos: 2.5,-42.5 parent: 2 type: Transform - - uid: 811 + - uid: 815 components: - pos: 0.5,11.5 parent: 2 type: Transform - - uid: 812 + - uid: 816 components: - pos: -3.5,-53.5 parent: 2 type: Transform - - uid: 813 + - uid: 817 components: - pos: 0.5,-60.5 parent: 2 type: Transform - - uid: 814 + - uid: 818 components: - pos: 25.5,-42.5 parent: 2 type: Transform - - uid: 815 + - uid: 819 components: - pos: -11.5,-57.5 parent: 2 type: Transform - - uid: 816 + - uid: 820 components: - pos: 28.5,-28.5 parent: 2 type: Transform - - uid: 817 + - uid: 821 components: - pos: 36.5,-27.5 parent: 2 type: Transform - - uid: 818 + - uid: 822 components: - pos: -20.5,-67.5 parent: 2 type: Transform - - uid: 819 + - uid: 823 components: - pos: -18.5,-71.5 parent: 2 type: Transform - - uid: 820 + - uid: 824 components: - pos: -25.5,-80.5 parent: 2 type: Transform - - uid: 821 + - uid: 825 components: - pos: -19.5,-79.5 parent: 2 type: Transform - - uid: 822 + - uid: 826 components: - pos: -20.5,-86.5 parent: 2 type: Transform - - uid: 823 + - uid: 827 components: - pos: -6.5,-64.5 parent: 2 type: Transform - - uid: 824 + - uid: 828 components: - pos: -3.5,-63.5 parent: 2 type: Transform - - uid: 825 + - uid: 829 components: - pos: 4.5,-65.5 parent: 2 type: Transform - - uid: 826 + - uid: 830 components: - pos: 8.5,-60.5 parent: 2 type: Transform - - uid: 827 + - uid: 831 components: - pos: 6.5,-49.5 parent: 2 type: Transform - - uid: 828 + - uid: 832 components: - pos: -10.5,-38.5 parent: 2 type: Transform - - uid: 829 + - uid: 833 components: - pos: -9.5,-33.5 parent: 2 type: Transform - - uid: 830 + - uid: 834 components: - pos: -9.5,-23.5 parent: 2 type: Transform - - uid: 831 + - uid: 835 components: - pos: 14.5,-27.5 parent: 2 type: Transform - - uid: 832 + - uid: 836 components: - pos: 6.5,-27.5 parent: 2 type: Transform - - uid: 833 + - uid: 837 components: - pos: -5.5,-28.5 parent: 2 type: Transform - - uid: 834 + - uid: 838 components: - pos: -3.5,-7.5 parent: 2 type: Transform - - uid: 835 + - uid: 839 components: - pos: -5.5,2.5 parent: 2 type: Transform - - uid: 836 + - uid: 840 components: - pos: 6.5,-0.5 parent: 2 type: Transform - - uid: 837 + - uid: 841 components: - pos: 11.5,11.5 parent: 2 type: Transform - - uid: 838 + - uid: 842 components: - pos: 4.5,13.5 parent: 2 type: Transform - - uid: 839 + - uid: 843 components: - pos: 6.5,7.5 parent: 2 type: Transform - - uid: 840 + - uid: 844 components: - pos: -2.5,10.5 parent: 2 type: Transform - - uid: 841 + - uid: 845 components: - pos: -10.5,6.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14465 + - 14590 type: DeviceNetwork - - uid: 842 + - uid: 846 components: - pos: 7.5,19.5 parent: 2 type: Transform - - uid: 843 + - uid: 847 components: - pos: 18.5,20.5 parent: 2 type: Transform - - uid: 844 + - uid: 848 components: - pos: 11.5,22.5 parent: 2 type: Transform - - uid: 845 + - uid: 849 components: - pos: 20.5,20.5 parent: 2 type: Transform - - uid: 846 + - uid: 850 components: - pos: 51.5,1.5 parent: 2 type: Transform - - uid: 847 + - uid: 851 components: - pos: 35.5,15.5 parent: 2 type: Transform - - uid: 848 + - uid: 852 components: - rot: -1.5707963267948966 rad pos: 62.5,-8.5 parent: 2 type: Transform - - uid: 849 + - uid: 853 components: - pos: 26.5,-59.5 parent: 2 type: Transform - - uid: 850 + - uid: 854 components: - rot: 1.5707963267948966 rad pos: 48.5,14.5 parent: 2 type: Transform - - uid: 851 + - uid: 855 components: - rot: 1.5707963267948966 rad pos: 39.5,-73.5 parent: 2 type: Transform - - uid: 852 + - uid: 856 components: - rot: 1.5707963267948966 rad pos: 39.5,-59.5 parent: 2 type: Transform - - uid: 853 + - uid: 857 components: - rot: 1.5707963267948966 rad pos: 49.5,-54.5 parent: 2 type: Transform - - uid: 854 + - uid: 858 components: - rot: 1.5707963267948966 rad pos: 50.5,-39.5 parent: 2 type: Transform - - uid: 855 + - uid: 859 components: - pos: -21.5,56.5 parent: 2 type: Transform - - uid: 856 + - uid: 860 components: - pos: -13.5,63.5 parent: 2 type: Transform - - uid: 857 + - ShutdownSubscribers: + - 73 + type: DeviceNetwork + - uid: 861 components: - pos: -2.5,59.5 parent: 2 type: Transform - - uid: 858 + - uid: 862 components: - pos: -47.5,15.5 parent: 2 type: Transform - - uid: 859 + - uid: 863 components: - pos: -17.5,-4.5 parent: 2 type: Transform - - uid: 860 + - uid: 864 components: - pos: 23.5,-5.5 parent: 2 type: Transform - - uid: 861 + - uid: 865 components: - pos: 16.5,3.5 parent: 2 type: Transform - - uid: 862 + - uid: 866 components: - pos: 24.5,6.5 parent: 2 type: Transform - - uid: 863 + - uid: 867 components: - pos: 32.5,-0.5 parent: 2 type: Transform - - uid: 864 + - uid: 868 components: - pos: 25.5,17.5 parent: 2 type: Transform - - uid: 865 + - uid: 869 components: - pos: 17.5,17.5 parent: 2 type: Transform - - uid: 866 + - uid: 870 components: - rot: 3.141592653589793 rad pos: -24.5,-11.5 parent: 2 type: Transform - - uid: 867 + - uid: 871 components: - rot: 3.141592653589793 rad pos: -19.5,-17.5 parent: 2 type: Transform - - uid: 868 + - uid: 872 components: - pos: -32.5,-14.5 parent: 2 type: Transform - - uid: 869 + - uid: 873 components: - pos: 18.5,-53.5 parent: 2 type: Transform - - uid: 870 + - uid: 874 components: - rot: 1.5707963267948966 rad pos: -37.5,-42.5 parent: 2 type: Transform - - uid: 871 + - uid: 875 components: - rot: 3.141592653589793 rad pos: -36.5,-35.5 parent: 2 type: Transform - - uid: 872 + - uid: 876 components: - rot: 3.141592653589793 rad pos: -30.5,-35.5 parent: 2 type: Transform - - uid: 873 + - uid: 877 components: - rot: 3.141592653589793 rad pos: -24.5,-32.5 parent: 2 type: Transform - - uid: 874 + - uid: 878 components: - pos: -20.5,-28.5 parent: 2 type: Transform - - uid: 875 + - uid: 879 components: - pos: 21.5,-25.5 parent: 2 type: Transform - - uid: 876 + - uid: 880 components: - pos: 32.5,-17.5 parent: 2 type: Transform - - uid: 877 + - uid: 881 components: - pos: 21.5,-14.5 parent: 2 type: Transform - - uid: 878 + - uid: 882 components: - pos: 41.5,-24.5 parent: 2 type: Transform - - uid: 879 + - uid: 883 components: - pos: -36.5,0.5 parent: 2 type: Transform - - uid: 880 + - uid: 884 components: - pos: -45.5,7.5 parent: 2 type: Transform - - uid: 881 + - uid: 885 components: - pos: -48.5,11.5 parent: 2 type: Transform - - uid: 882 + - uid: 886 components: - pos: -43.5,24.5 parent: 2 type: Transform - - uid: 883 + - uid: 887 components: - pos: -43.5,30.5 parent: 2 type: Transform - - uid: 884 + - uid: 888 components: - pos: -31.5,23.5 parent: 2 type: Transform - - uid: 885 + - uid: 889 components: - pos: -24.5,20.5 parent: 2 type: Transform - - uid: 886 + - uid: 890 components: - pos: -19.5,21.5 parent: 2 type: Transform - - uid: 887 + - uid: 891 components: - rot: 1.5707963267948966 rad pos: -73.5,-25.5 parent: 2 type: Transform - - uid: 888 + - uid: 892 components: - rot: 1.5707963267948966 rad pos: -54.5,-24.5 parent: 2 type: Transform - - uid: 889 + - uid: 893 components: - rot: 1.5707963267948966 rad pos: -54.5,-10.5 parent: 2 type: Transform - - uid: 890 + - uid: 894 components: - rot: 1.5707963267948966 rad pos: -34.5,-6.5 parent: 2 type: Transform - - uid: 891 + - uid: 895 components: - pos: -32.5,-23.5 parent: 2 type: Transform - - uid: 892 + - uid: 896 components: - pos: 44.5,-37.5 parent: 2 type: Transform - - uid: 893 + - uid: 897 components: - pos: 42.5,-43.5 parent: 2 type: Transform - - uid: 894 + - uid: 898 components: - pos: 59.5,-47.5 parent: 2 type: Transform - - uid: 895 + - uid: 899 components: - pos: 63.5,-51.5 parent: 2 type: Transform - - uid: 896 + - uid: 900 components: - pos: 59.5,-35.5 parent: 2 type: Transform - - uid: 897 + - uid: 901 components: - pos: 70.5,-47.5 parent: 2 type: Transform - - uid: 898 + - uid: 902 components: - pos: -55.5,-75.5 parent: 2 type: Transform - - uid: 899 + - uid: 903 components: - pos: -38.5,-80.5 parent: 2 type: Transform - - uid: 901 + - uid: 904 components: - pos: -31.5,-71.5 parent: 2 type: Transform - - uid: 902 + - uid: 905 components: - pos: -23.5,-61.5 parent: 2 type: Transform - - uid: 903 + - uid: 906 components: - pos: 42.5,-42.5 parent: 2 type: Transform - - uid: 904 + - uid: 907 components: - pos: 30.5,-83.5 parent: 2 type: Transform - - uid: 905 + - uid: 908 components: - pos: -17.5,66.5 parent: 2 type: Transform - - uid: 906 + - uid: 909 components: - pos: 64.5,-2.5 parent: 2 type: Transform - - uid: 907 + - uid: 910 components: - rot: 1.5707963267948966 rad pos: -16.5,45.5 parent: 2 type: Transform - - uid: 908 + - uid: 911 components: - rot: 1.5707963267948966 rad pos: -3.5,45.5 parent: 2 type: Transform - - uid: 909 + - uid: 912 components: - rot: 1.5707963267948966 rad pos: 40.5,47.5 parent: 2 type: Transform - - uid: 910 + - uid: 913 components: - pos: -33.5,-96.5 parent: 2 type: Transform - - uid: 911 + - uid: 914 components: - pos: 48.5,-83.5 parent: 2 type: Transform - - uid: 912 + - uid: 915 components: - pos: 49.5,-72.5 parent: 2 type: Transform - - uid: 913 + - uid: 916 components: - rot: 3.141592653589793 rad pos: 72.5,-34.5 parent: 2 type: Transform - - uid: 914 + - uid: 917 components: - pos: 62.5,-36.5 parent: 2 type: Transform - - uid: 915 + - uid: 918 components: - rot: 3.141592653589793 rad pos: 4.5,-33.5 parent: 2 type: Transform - - uid: 916 + - uid: 919 components: - pos: -28.5,-13.5 parent: 2 type: Transform - - uid: 917 + - uid: 920 components: - rot: 1.5707963267948966 rad pos: -0.5,18.5 parent: 2 type: Transform - - uid: 918 + - uid: 921 components: - pos: -11.5,-19.5 parent: 2 type: Transform - - uid: 919 + - uid: 922 components: - pos: -9.5,-14.5 parent: 2 type: Transform - - uid: 920 + - uid: 923 components: - pos: -29.5,-74.5 parent: 2 type: Transform - - uid: 921 + - uid: 924 components: - pos: 25.5,-72.5 parent: 2 type: Transform - - uid: 922 + - uid: 925 components: - pos: 15.5,-86.5 parent: 2 type: Transform - - uid: 923 + - uid: 926 components: - pos: 27.5,2.5 parent: 2 type: Transform - - uid: 924 + - uid: 927 components: - rot: -1.5707963267948966 rad pos: -45.5,32.5 parent: 2 type: Transform - - uid: 925 + - uid: 928 components: - rot: -1.5707963267948966 rad pos: -46.5,42.5 parent: 2 type: Transform - - uid: 926 + - uid: 929 components: - pos: -5.5,15.5 parent: 2 type: Transform - ShutdownSubscribers: - 94 - - 14464 + - 14589 type: DeviceNetwork - - uid: 927 + - uid: 930 components: - rot: 3.141592653589793 rad pos: -71.5,-38.5 parent: 2 type: Transform - - uid: 928 + - uid: 931 components: - rot: 3.141592653589793 rad pos: -77.5,-41.5 @@ -16355,7 +16432,7 @@ entities: - ShutdownSubscribers: - 96 type: DeviceNetwork - - uid: 929 + - uid: 932 components: - rot: 1.5707963267948966 rad pos: -44.5,-34.5 @@ -16364,3890 +16441,3932 @@ entities: - ShutdownSubscribers: - 97 type: DeviceNetwork + - uid: 933 + components: + - pos: -1.5,-4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 99 + - 14593 + type: DeviceNetwork + - uid: 934 + components: + - pos: 1.5,-7.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 14592 + - 98 + type: DeviceNetwork + - uid: 935 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-19.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 100 + - 14594 + type: DeviceNetwork + - uid: 936 + components: + - pos: 25.5,-37.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 78 + - 14595 + type: DeviceNetwork - proto: AltarConvertRed entities: - - uid: 930 + - uid: 937 components: - pos: -37.5,14.5 parent: 2 type: Transform - - uid: 931 + - uid: 938 components: - pos: -38.5,14.5 parent: 2 type: Transform - proto: AltarSpawner entities: - - uid: 932 + - uid: 939 components: - pos: 45.5,47.5 parent: 2 type: Transform - proto: AltarToolbox entities: - - uid: 933 + - uid: 940 components: - pos: 61.5,-69.5 parent: 2 type: Transform - proto: AmeController entities: - - uid: 934 + - uid: 941 components: - pos: -46.5,-16.5 parent: 2 type: Transform - proto: AmeJar entities: - - uid: 935 + - uid: 942 components: - pos: -49.455143,64.63223 parent: 2 type: Transform - - uid: 936 + - uid: 943 components: - pos: 20.471298,55.773235 parent: 2 type: Transform - proto: AmePart entities: - - uid: 937 + - uid: 944 components: - pos: 19.423536,55.353977 parent: 2 type: Transform - - uid: 938 + - uid: 945 components: - pos: 19.173536,54.619602 parent: 2 type: Transform - - uid: 939 + - uid: 946 components: - pos: 18.376661,54.494602 parent: 2 type: Transform - proto: AnomalyScanner entities: - - uid: 940 + - uid: 947 components: - pos: 63.468235,-36.25785 parent: 2 type: Transform - - uid: 941 + - uid: 948 components: - pos: 63.686985,-36.460976 parent: 2 type: Transform - proto: AnomalyVesselCircuitboard entities: - - uid: 942 + - uid: 949 components: - pos: 64.46823,-36.460976 parent: 2 type: Transform - proto: APCBasic entities: - - uid: 943 + - uid: 950 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-39.5 + parent: 2 + type: Transform + - uid: 951 components: - pos: 21.5,15.5 parent: 2 type: Transform - - uid: 944 + - uid: 952 components: - rot: -1.5707963267948966 rad pos: 31.5,2.5 parent: 2 type: Transform - - uid: 945 + - uid: 953 components: - pos: -10.5,-20.5 parent: 2 type: Transform - - uid: 946 + - uid: 954 components: - rot: -1.5707963267948966 rad pos: 43.5,-26.5 parent: 2 type: Transform - - uid: 947 + - uid: 955 components: - rot: -1.5707963267948966 rad pos: -13.5,42.5 parent: 2 type: Transform - - uid: 948 + - uid: 956 components: - pos: 49.5,3.5 parent: 2 type: Transform - - uid: 949 + - uid: 957 components: - pos: 59.5,-4.5 parent: 2 type: Transform - - uid: 950 + - uid: 958 components: - pos: 48.5,-48.5 parent: 2 type: Transform - - uid: 951 + - uid: 959 components: - pos: -20.5,0.5 parent: 2 type: Transform - - uid: 952 + - uid: 960 components: - pos: 37.5,-57.5 parent: 2 type: Transform - - uid: 953 + - uid: 961 components: - pos: -56.5,-85.5 parent: 2 type: Transform - - uid: 954 + - uid: 962 components: - pos: -39.5,-69.5 parent: 2 type: Transform - - uid: 955 + - uid: 963 components: - pos: 52.5,38.5 parent: 2 type: Transform - - uid: 956 + - uid: 964 components: - pos: -8.5,60.5 parent: 2 type: Transform - - uid: 957 + - uid: 965 components: - pos: 55.5,-62.5 parent: 2 type: Transform - - uid: 958 + - uid: 966 components: - pos: 11.5,-18.5 parent: 2 type: Transform - - uid: 959 + - uid: 967 components: - rot: 3.141592653589793 rad pos: 37.5,13.5 parent: 2 type: Transform - - uid: 960 + - uid: 968 components: - pos: -74.5,-50.5 parent: 2 type: Transform - - uid: 2011 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-38.5 - parent: 2 - type: Transform - - uid: 18744 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-7.5 - parent: 2 - type: Transform - proto: APCHighCapacity entities: - - uid: 961 + - uid: 969 components: - pos: 0.5,35.5 parent: 2 type: Transform - - uid: 962 + - uid: 970 components: - pos: 24.5,24.5 parent: 2 type: Transform - - uid: 963 + - uid: 971 components: - pos: -21.5,-68.5 parent: 2 type: Transform - - uid: 964 + - uid: 972 components: - pos: 0.5,-40.5 parent: 2 type: Transform - - uid: 965 + - uid: 973 components: - pos: 19.5,-51.5 parent: 2 type: Transform - - uid: 966 + - uid: 974 components: - pos: -10.5,-58.5 parent: 2 type: Transform - - uid: 967 + - uid: 975 components: - pos: 8.5,-3.5 parent: 2 type: Transform - - uid: 968 + - uid: 976 components: - pos: 1.5,10.5 parent: 2 type: Transform - - uid: 969 + - uid: 977 components: - pos: 21.5,-9.5 parent: 2 type: Transform - - uid: 970 + - uid: 978 components: - pos: 58.5,11.5 parent: 2 type: Transform - - uid: 971 + - uid: 979 components: - pos: 55.5,-43.5 parent: 2 type: Transform - - uid: 972 + - uid: 980 components: - pos: -50.5,-15.5 parent: 2 type: Transform - - uid: 973 + - uid: 981 components: - pos: -35.5,-31.5 parent: 2 type: Transform - - uid: 974 + - uid: 982 components: - pos: -29.5,-64.5 parent: 2 type: Transform - - uid: 975 + - uid: 983 components: - pos: 29.5,-26.5 parent: 2 type: Transform - - uid: 976 + - uid: 984 components: - pos: -23.5,26.5 parent: 2 type: Transform - - uid: 977 + - uid: 985 components: - pos: -42.5,2.5 parent: 2 type: Transform - - uid: 978 + - uid: 986 components: - pos: -29.5,-8.5 parent: 2 type: Transform - - uid: 979 + - uid: 987 components: - pos: 71.5,-42.5 parent: 2 type: Transform - - uid: 980 + - uid: 988 components: - pos: -66.5,-35.5 parent: 2 type: Transform + - uid: 989 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 2 + type: Transform - proto: APCSuperCapacity entities: - - uid: 981 + - uid: 990 components: - pos: -3.5,-68.5 parent: 2 type: Transform - - uid: 982 + - uid: 991 components: - pos: -2.5,-51.5 parent: 2 type: Transform - proto: AppraisalTool entities: - - uid: 983 + - uid: 992 components: - pos: -38.189224,18.730852 parent: 2 type: Transform - - uid: 984 + - uid: 993 components: - pos: -38.01735,18.465227 parent: 2 type: Transform - proto: AsteroidRock entities: - - uid: 985 + - uid: 994 components: - pos: 67.5,51.5 parent: 2 type: Transform - - uid: 986 + - uid: 995 components: - pos: 70.5,47.5 parent: 2 type: Transform - - uid: 987 + - uid: 996 components: - pos: 12.5,58.5 parent: 2 type: Transform - - uid: 988 + - uid: 997 components: - pos: 72.5,-73.5 parent: 2 type: Transform - - uid: 989 + - uid: 998 components: - pos: 73.5,-71.5 parent: 2 type: Transform - - uid: 990 + - uid: 999 components: - pos: 70.5,48.5 parent: 2 type: Transform - - uid: 991 + - uid: 1000 components: - pos: 9.5,58.5 parent: 2 type: Transform - - uid: 992 + - uid: 1001 components: - pos: 66.5,51.5 parent: 2 type: Transform - - uid: 993 + - uid: 1002 components: - pos: 69.5,51.5 parent: 2 type: Transform - - uid: 994 + - uid: 1003 components: - pos: 68.5,51.5 parent: 2 type: Transform - - uid: 995 + - uid: 1004 components: - pos: 72.5,-72.5 parent: 2 type: Transform - - uid: 996 + - uid: 1005 components: - pos: 75.5,-69.5 parent: 2 type: Transform - - uid: 997 + - uid: 1006 components: - pos: 76.5,-70.5 parent: 2 type: Transform - - uid: 998 + - uid: 1007 components: - pos: 77.5,-70.5 parent: 2 type: Transform - - uid: 999 + - uid: 1008 components: - pos: 74.5,-70.5 parent: 2 type: Transform - - uid: 1000 + - uid: 1009 components: - pos: 14.5,52.5 parent: 2 type: Transform - - uid: 1001 + - uid: 1010 components: - pos: 11.5,58.5 parent: 2 type: Transform - - uid: 1002 + - uid: 1011 components: - pos: -55.5,70.5 parent: 2 type: Transform - - uid: 1003 + - uid: 1012 components: - pos: -41.5,65.5 parent: 2 type: Transform - - uid: 1004 + - uid: 1013 components: - pos: -36.5,68.5 parent: 2 type: Transform - - uid: 1005 + - uid: 1014 components: - pos: -39.5,69.5 parent: 2 type: Transform - - uid: 1006 + - uid: 1015 components: - pos: -54.5,71.5 parent: 2 type: Transform - - uid: 1007 + - uid: 1016 components: - pos: -46.5,59.5 parent: 2 type: Transform - - uid: 1008 + - uid: 1017 components: - pos: -49.5,67.5 parent: 2 type: Transform - - uid: 1009 + - uid: 1018 components: - pos: -46.5,66.5 parent: 2 type: Transform - - uid: 1010 + - uid: 1019 components: - pos: -48.5,61.5 parent: 2 type: Transform - - uid: 1011 + - uid: 1020 components: - pos: -58.5,65.5 parent: 2 type: Transform - - uid: 1012 + - uid: 1021 components: - pos: -49.5,66.5 parent: 2 type: Transform - - uid: 1013 + - uid: 1022 components: - pos: -47.5,66.5 parent: 2 type: Transform - - uid: 1014 + - uid: 1023 components: - pos: -48.5,55.5 parent: 2 type: Transform - - uid: 1015 + - uid: 1024 components: - pos: -58.5,64.5 parent: 2 type: Transform - - uid: 1016 + - uid: 1025 components: - pos: -48.5,67.5 parent: 2 type: Transform - - uid: 1017 + - uid: 1026 components: - pos: -48.5,66.5 parent: 2 type: Transform - - uid: 1018 + - uid: 1027 components: - pos: -51.5,56.5 parent: 2 type: Transform - - uid: 1019 + - uid: 1028 components: - pos: -58.5,66.5 parent: 2 type: Transform - - uid: 1020 + - uid: 1029 components: - pos: -58.5,67.5 parent: 2 type: Transform - - uid: 1021 + - uid: 1030 components: - pos: -56.5,70.5 parent: 2 type: Transform - - uid: 1022 + - uid: 1031 components: - pos: -43.5,60.5 parent: 2 type: Transform - - uid: 1023 + - uid: 1032 components: - pos: -43.5,57.5 parent: 2 type: Transform - - uid: 1024 + - uid: 1033 components: - pos: -43.5,58.5 parent: 2 type: Transform - - uid: 1025 + - uid: 1034 components: - pos: -46.5,63.5 parent: 2 type: Transform - - uid: 1026 + - uid: 1035 components: - pos: -47.5,64.5 parent: 2 type: Transform - - uid: 1027 + - uid: 1036 components: - pos: -45.5,64.5 parent: 2 type: Transform - - uid: 1028 + - uid: 1037 components: - pos: -41.5,67.5 parent: 2 type: Transform - - uid: 1029 + - uid: 1038 components: - pos: -43.5,55.5 parent: 2 type: Transform - - uid: 1030 + - uid: 1039 components: - pos: -43.5,54.5 parent: 2 type: Transform - - uid: 1031 + - uid: 1040 components: - pos: -41.5,55.5 parent: 2 type: Transform - - uid: 1032 + - uid: 1041 components: - pos: -42.5,66.5 parent: 2 type: Transform - - uid: 1033 + - uid: 1042 components: - pos: -47.5,63.5 parent: 2 type: Transform - - uid: 1034 + - uid: 1043 components: - pos: -43.5,67.5 parent: 2 type: Transform - - uid: 1035 + - uid: 1044 components: - pos: -43.5,65.5 parent: 2 type: Transform - - uid: 1036 + - uid: 1045 components: - pos: -51.5,65.5 parent: 2 type: Transform - - uid: 1037 + - uid: 1046 components: - pos: -42.5,55.5 parent: 2 type: Transform - - uid: 1038 + - uid: 1047 components: - pos: -42.5,65.5 parent: 2 type: Transform - - uid: 1039 + - uid: 1048 components: - pos: -45.5,63.5 parent: 2 type: Transform - - uid: 1040 + - uid: 1049 components: - pos: -39.5,65.5 parent: 2 type: Transform - - uid: 1041 + - uid: 1050 components: - pos: -43.5,66.5 parent: 2 type: Transform - - uid: 1042 + - uid: 1051 components: - pos: -40.5,54.5 parent: 2 type: Transform - - uid: 1043 + - uid: 1052 components: - pos: -53.5,65.5 parent: 2 type: Transform - - uid: 1044 + - uid: 1053 components: - pos: -37.5,66.5 parent: 2 type: Transform - - uid: 1045 + - uid: 1054 components: - pos: -37.5,65.5 parent: 2 type: Transform - - uid: 1046 + - uid: 1055 components: - pos: -38.5,65.5 parent: 2 type: Transform - - uid: 1047 + - uid: 1056 components: - pos: -39.5,55.5 parent: 2 type: Transform - - uid: 1048 + - uid: 1057 components: - pos: -40.5,55.5 parent: 2 type: Transform - - uid: 1049 + - uid: 1058 components: - pos: -44.5,63.5 parent: 2 type: Transform - - uid: 1050 + - uid: 1059 components: - pos: -37.5,67.5 parent: 2 type: Transform - - uid: 1051 + - uid: 1060 components: - pos: -36.5,65.5 parent: 2 type: Transform - - uid: 1052 + - uid: 1061 components: - pos: -44.5,65.5 parent: 2 type: Transform - - uid: 1053 + - uid: 1062 components: - pos: -54.5,66.5 parent: 2 type: Transform - - uid: 1054 + - uid: 1063 components: - pos: -55.5,69.5 parent: 2 type: Transform - - uid: 1055 + - uid: 1064 components: - pos: -55.5,71.5 parent: 2 type: Transform - - uid: 1056 + - uid: 1065 components: - pos: -54.5,65.5 parent: 2 type: Transform - - uid: 1057 + - uid: 1066 components: - pos: -43.5,61.5 parent: 2 type: Transform - - uid: 1058 + - uid: 1067 components: - pos: -37.5,68.5 parent: 2 type: Transform - - uid: 1059 + - uid: 1068 components: - pos: -41.5,69.5 parent: 2 type: Transform - - uid: 1060 + - uid: 1069 components: - pos: -44.5,58.5 parent: 2 type: Transform - - uid: 1061 + - uid: 1070 components: - pos: -54.5,69.5 parent: 2 type: Transform - - uid: 1062 + - uid: 1071 components: - pos: -45.5,59.5 parent: 2 type: Transform - - uid: 1063 + - uid: 1072 components: - pos: -45.5,61.5 parent: 2 type: Transform - - uid: 1064 + - uid: 1073 components: - pos: -37.5,69.5 parent: 2 type: Transform - - uid: 1065 + - uid: 1074 components: - pos: -40.5,69.5 parent: 2 type: Transform - - uid: 1066 + - uid: 1075 components: - pos: -42.5,60.5 parent: 2 type: Transform - - uid: 1067 + - uid: 1076 components: - pos: -42.5,59.5 parent: 2 type: Transform - - uid: 1068 + - uid: 1077 components: - pos: -50.5,66.5 parent: 2 type: Transform - - uid: 1069 + - uid: 1078 components: - pos: -50.5,69.5 parent: 2 type: Transform - - uid: 1070 + - uid: 1079 components: - pos: -50.5,65.5 parent: 2 type: Transform - - uid: 1071 + - uid: 1080 components: - pos: -48.5,65.5 parent: 2 type: Transform - - uid: 1072 + - uid: 1081 components: - pos: -50.5,68.5 parent: 2 type: Transform - - uid: 1073 + - uid: 1082 components: - pos: -48.5,64.5 parent: 2 type: Transform - - uid: 1074 + - uid: 1083 components: - pos: -50.5,67.5 parent: 2 type: Transform - - uid: 1075 + - uid: 1084 components: - pos: -40.5,65.5 parent: 2 type: Transform - - uid: 1076 + - uid: 1085 components: - pos: -41.5,66.5 parent: 2 type: Transform - - uid: 1077 + - uid: 1086 components: - pos: -40.5,66.5 parent: 2 type: Transform - - uid: 1078 + - uid: 1087 components: - pos: -39.5,66.5 parent: 2 type: Transform - - uid: 1079 + - uid: 1088 components: - pos: -40.5,67.5 parent: 2 type: Transform - - uid: 1080 + - uid: 1089 components: - pos: -39.5,67.5 parent: 2 type: Transform - - uid: 1081 + - uid: 1090 components: - pos: -38.5,66.5 parent: 2 type: Transform - - uid: 1082 + - uid: 1091 components: - pos: -38.5,67.5 parent: 2 type: Transform - - uid: 1083 + - uid: 1092 components: - pos: -45.5,67.5 parent: 2 type: Transform - - uid: 1084 + - uid: 1093 components: - pos: -44.5,66.5 parent: 2 type: Transform - - uid: 1085 + - uid: 1094 components: - pos: -40.5,68.5 parent: 2 type: Transform - - uid: 1086 + - uid: 1095 components: - pos: -44.5,67.5 parent: 2 type: Transform - - uid: 1087 + - uid: 1096 components: - pos: -39.5,68.5 parent: 2 type: Transform - - uid: 1088 + - uid: 1097 components: - pos: -41.5,70.5 parent: 2 type: Transform - - uid: 1089 + - uid: 1098 components: - pos: -36.5,66.5 parent: 2 type: Transform - - uid: 1090 + - uid: 1099 components: - pos: -36.5,67.5 parent: 2 type: Transform - - uid: 1091 + - uid: 1100 components: - pos: -35.5,65.5 parent: 2 type: Transform - - uid: 1092 + - uid: 1101 components: - pos: -38.5,69.5 parent: 2 type: Transform - - uid: 1093 + - uid: 1102 components: - pos: -45.5,66.5 parent: 2 type: Transform - - uid: 1094 + - uid: 1103 components: - pos: -45.5,65.5 parent: 2 type: Transform - - uid: 1095 + - uid: 1104 components: - pos: -38.5,68.5 parent: 2 type: Transform - - uid: 1096 + - uid: 1105 components: - pos: -40.5,70.5 parent: 2 type: Transform - - uid: 1097 + - uid: 1106 components: - pos: -41.5,68.5 parent: 2 type: Transform - - uid: 1098 + - uid: 1107 components: - pos: -46.5,67.5 parent: 2 type: Transform - - uid: 1099 + - uid: 1108 components: - pos: -44.5,69.5 parent: 2 type: Transform - - uid: 1100 + - uid: 1109 components: - pos: -43.5,70.5 parent: 2 type: Transform - - uid: 1101 + - uid: 1110 components: - pos: -46.5,58.5 parent: 2 type: Transform - - uid: 1102 + - uid: 1111 components: - pos: -44.5,70.5 parent: 2 type: Transform - - uid: 1103 + - uid: 1112 components: - pos: -44.5,68.5 parent: 2 type: Transform - - uid: 1104 + - uid: 1113 components: - pos: -45.5,69.5 parent: 2 type: Transform - - uid: 1105 + - uid: 1114 components: - pos: -47.5,54.5 parent: 2 type: Transform - - uid: 1106 + - uid: 1115 components: - pos: -45.5,68.5 parent: 2 type: Transform - - uid: 1107 + - uid: 1116 components: - pos: -57.5,64.5 parent: 2 type: Transform - - uid: 1108 + - uid: 1117 components: - pos: -57.5,65.5 parent: 2 type: Transform - - uid: 1109 + - uid: 1118 components: - pos: -57.5,66.5 parent: 2 type: Transform - - uid: 1110 + - uid: 1119 components: - pos: -52.5,66.5 parent: 2 type: Transform - - uid: 1111 + - uid: 1120 components: - pos: -38.5,64.5 parent: 2 type: Transform - - uid: 1112 + - uid: 1121 components: - pos: -42.5,68.5 parent: 2 type: Transform - - uid: 1113 + - uid: 1122 components: - pos: -39.5,64.5 parent: 2 type: Transform - - uid: 1114 + - uid: 1123 components: - pos: -43.5,59.5 parent: 2 type: Transform - - uid: 1115 + - uid: 1124 components: - pos: -51.5,68.5 parent: 2 type: Transform - - uid: 1116 + - uid: 1125 components: - pos: -43.5,68.5 parent: 2 type: Transform - - uid: 1117 + - uid: 1126 components: - pos: -42.5,70.5 parent: 2 type: Transform - - uid: 1118 + - uid: 1127 components: - pos: -43.5,69.5 parent: 2 type: Transform - - uid: 1119 + - uid: 1128 components: - pos: -43.5,56.5 parent: 2 type: Transform - - uid: 1120 + - uid: 1129 components: - pos: -35.5,67.5 parent: 2 type: Transform - - uid: 1121 + - uid: 1130 components: - pos: -47.5,59.5 parent: 2 type: Transform - - uid: 1122 + - uid: 1131 components: - pos: -42.5,69.5 parent: 2 type: Transform - - uid: 1123 + - uid: 1132 components: - pos: -46.5,61.5 parent: 2 type: Transform - - uid: 1124 + - uid: 1133 components: - pos: -45.5,62.5 parent: 2 type: Transform - - uid: 1125 + - uid: 1134 components: - pos: -47.5,62.5 parent: 2 type: Transform - - uid: 1126 + - uid: 1135 components: - pos: -48.5,63.5 parent: 2 type: Transform - - uid: 1127 + - uid: 1136 components: - pos: -44.5,62.5 parent: 2 type: Transform - - uid: 1128 + - uid: 1137 components: - pos: -48.5,59.5 parent: 2 type: Transform - - uid: 1129 + - uid: 1138 components: - pos: -48.5,58.5 parent: 2 type: Transform - - uid: 1130 + - uid: 1139 components: - pos: -48.5,57.5 parent: 2 type: Transform - - uid: 1131 + - uid: 1140 components: - pos: -41.5,63.5 parent: 2 type: Transform - - uid: 1132 + - uid: 1141 components: - pos: -41.5,62.5 parent: 2 type: Transform - - uid: 1133 + - uid: 1142 components: - pos: -41.5,64.5 parent: 2 type: Transform - - uid: 1134 + - uid: 1143 components: - pos: -42.5,64.5 parent: 2 type: Transform - - uid: 1135 + - uid: 1144 components: - pos: -51.5,69.5 parent: 2 type: Transform - - uid: 1136 + - uid: 1145 components: - pos: -37.5,64.5 parent: 2 type: Transform - - uid: 1137 + - uid: 1146 components: - pos: -47.5,55.5 parent: 2 type: Transform - - uid: 1138 + - uid: 1147 components: - pos: -39.5,62.5 parent: 2 type: Transform - - uid: 1139 + - uid: 1148 components: - pos: -39.5,63.5 parent: 2 type: Transform - - uid: 1140 + - uid: 1149 components: - pos: -40.5,62.5 parent: 2 type: Transform - - uid: 1141 + - uid: 1150 components: - pos: -43.5,63.5 parent: 2 type: Transform - - uid: 1142 + - uid: 1151 components: - pos: -51.5,67.5 parent: 2 type: Transform - - uid: 1143 + - uid: 1152 components: - pos: -47.5,56.5 parent: 2 type: Transform - - uid: 1144 + - uid: 1153 components: - pos: -40.5,64.5 parent: 2 type: Transform - - uid: 1145 + - uid: 1154 components: - pos: -43.5,64.5 parent: 2 type: Transform - - uid: 1146 + - uid: 1155 components: - pos: -42.5,63.5 parent: 2 type: Transform - - uid: 1147 + - uid: 1156 components: - pos: -35.5,66.5 parent: 2 type: Transform - - uid: 1148 + - uid: 1157 components: - pos: -52.5,67.5 parent: 2 type: Transform - - uid: 1149 + - uid: 1158 components: - pos: -52.5,68.5 parent: 2 type: Transform - - uid: 1150 + - uid: 1159 components: - pos: -53.5,67.5 parent: 2 type: Transform - - uid: 1151 + - uid: 1160 components: - pos: -52.5,69.5 parent: 2 type: Transform - - uid: 1152 + - uid: 1161 components: - pos: -47.5,60.5 parent: 2 type: Transform - - uid: 1153 + - uid: 1162 components: - pos: -44.5,60.5 parent: 2 type: Transform - - uid: 1154 + - uid: 1163 components: - pos: -43.5,62.5 parent: 2 type: Transform - - uid: 1155 + - uid: 1164 components: - pos: -44.5,59.5 parent: 2 type: Transform - - uid: 1156 + - uid: 1165 components: - pos: -54.5,60.5 parent: 2 type: Transform - - uid: 1157 + - uid: 1166 components: - pos: -57.5,63.5 parent: 2 type: Transform - - uid: 1158 + - uid: 1167 components: - pos: -45.5,58.5 parent: 2 type: Transform - - uid: 1159 + - uid: 1168 components: - pos: -49.5,62.5 parent: 2 type: Transform - - uid: 1160 + - uid: 1169 components: - pos: -40.5,56.5 parent: 2 type: Transform - - uid: 1161 + - uid: 1170 components: - pos: -37.5,57.5 parent: 2 type: Transform - - uid: 1162 + - uid: 1171 components: - pos: -48.5,56.5 parent: 2 type: Transform - - uid: 1163 + - uid: 1172 components: - pos: -46.5,56.5 parent: 2 type: Transform - - uid: 1164 + - uid: 1173 components: - pos: -54.5,67.5 parent: 2 type: Transform - - uid: 1165 + - uid: 1174 components: - pos: -54.5,68.5 parent: 2 type: Transform - - uid: 1166 + - uid: 1175 components: - pos: -42.5,67.5 parent: 2 type: Transform - - uid: 1167 + - uid: 1176 components: - pos: -49.5,59.5 parent: 2 type: Transform - - uid: 1168 + - uid: 1177 components: - pos: -51.5,57.5 parent: 2 type: Transform - - uid: 1169 + - uid: 1178 components: - pos: -51.5,64.5 parent: 2 type: Transform - - uid: 1170 + - uid: 1179 components: - pos: -44.5,57.5 parent: 2 type: Transform - - uid: 1171 + - uid: 1180 components: - pos: -55.5,68.5 parent: 2 type: Transform - - uid: 1172 + - uid: 1181 components: - pos: -54.5,70.5 parent: 2 type: Transform - - uid: 1173 + - uid: 1182 components: - pos: -51.5,70.5 parent: 2 type: Transform - - uid: 1174 + - uid: 1183 components: - pos: -50.5,60.5 parent: 2 type: Transform - - uid: 1175 + - uid: 1184 components: - pos: -50.5,61.5 parent: 2 type: Transform - - uid: 1176 + - uid: 1185 components: - pos: -53.5,59.5 parent: 2 type: Transform - - uid: 1177 + - uid: 1186 components: - pos: -44.5,56.5 parent: 2 type: Transform - - uid: 1178 + - uid: 1187 components: - pos: -55.5,67.5 parent: 2 type: Transform - - uid: 1179 + - uid: 1188 components: - pos: -48.5,54.5 parent: 2 type: Transform - - uid: 1180 + - uid: 1189 components: - pos: -48.5,62.5 parent: 2 type: Transform - - uid: 1181 + - uid: 1190 components: - pos: -52.5,71.5 parent: 2 type: Transform - - uid: 1182 + - uid: 1191 components: - pos: -50.5,59.5 parent: 2 type: Transform - - uid: 1183 + - uid: 1192 components: - pos: -52.5,58.5 parent: 2 type: Transform - - uid: 1184 + - uid: 1193 components: - pos: -53.5,58.5 parent: 2 type: Transform - - uid: 1185 + - uid: 1194 components: - pos: -45.5,54.5 parent: 2 type: Transform - - uid: 1186 + - uid: 1195 components: - pos: -55.5,66.5 parent: 2 type: Transform - - uid: 1187 + - uid: 1196 components: - pos: -49.5,56.5 parent: 2 type: Transform - - uid: 1188 + - uid: 1197 components: - pos: -47.5,61.5 parent: 2 type: Transform - - uid: 1189 + - uid: 1198 components: - pos: -49.5,68.5 parent: 2 type: Transform - - uid: 1190 + - uid: 1199 components: - pos: -57.5,69.5 parent: 2 type: Transform - - uid: 1191 + - uid: 1200 components: - pos: -52.5,59.5 parent: 2 type: Transform - - uid: 1192 + - uid: 1201 components: - pos: -54.5,59.5 parent: 2 type: Transform - - uid: 1193 + - uid: 1202 components: - pos: -44.5,55.5 parent: 2 type: Transform - - uid: 1194 + - uid: 1203 components: - pos: -55.5,65.5 parent: 2 type: Transform - - uid: 1195 + - uid: 1204 components: - pos: -50.5,55.5 parent: 2 type: Transform - - uid: 1196 + - uid: 1205 components: - pos: -50.5,56.5 parent: 2 type: Transform - - uid: 1197 + - uid: 1206 components: - pos: -49.5,69.5 parent: 2 type: Transform - - uid: 1198 + - uid: 1207 components: - pos: -56.5,63.5 parent: 2 type: Transform - - uid: 1199 + - uid: 1208 components: - pos: -52.5,60.5 parent: 2 type: Transform - - uid: 1200 + - uid: 1209 components: - pos: -45.5,56.5 parent: 2 type: Transform - - uid: 1201 + - uid: 1210 components: - pos: -45.5,55.5 parent: 2 type: Transform - - uid: 1202 + - uid: 1211 components: - pos: -54.5,58.5 parent: 2 type: Transform - - uid: 1203 + - uid: 1212 components: - pos: -49.5,54.5 parent: 2 type: Transform - - uid: 1204 + - uid: 1213 components: - pos: -51.5,55.5 parent: 2 type: Transform - - uid: 1205 + - uid: 1214 components: - pos: -49.5,70.5 parent: 2 type: Transform - - uid: 1206 + - uid: 1215 components: - pos: -53.5,60.5 parent: 2 type: Transform - - uid: 1207 + - uid: 1216 components: - pos: -52.5,61.5 parent: 2 type: Transform - - uid: 1208 + - uid: 1217 components: - pos: -45.5,57.5 parent: 2 type: Transform - - uid: 1209 + - uid: 1218 components: - pos: -44.5,54.5 parent: 2 type: Transform - - uid: 1210 + - uid: 1219 components: - pos: 10.5,41.5 parent: 2 type: Transform - - uid: 1211 + - uid: 1220 components: - pos: -49.5,55.5 parent: 2 type: Transform - - uid: 1212 + - uid: 1221 components: - pos: -52.5,56.5 parent: 2 type: Transform - - uid: 1213 + - uid: 1222 components: - pos: -52.5,55.5 parent: 2 type: Transform - - uid: 1214 + - uid: 1223 components: - pos: -50.5,63.5 parent: 2 type: Transform - - uid: 1215 + - uid: 1224 components: - pos: -51.5,60.5 parent: 2 type: Transform - - uid: 1216 + - uid: 1225 components: - pos: -51.5,61.5 parent: 2 type: Transform - - uid: 1217 + - uid: 1226 components: - pos: -46.5,54.5 parent: 2 type: Transform - - uid: 1218 + - uid: 1227 components: - pos: -38.5,58.5 parent: 2 type: Transform - - uid: 1219 + - uid: 1228 components: - pos: -46.5,55.5 parent: 2 type: Transform - - uid: 1220 + - uid: 1229 components: - pos: -52.5,57.5 parent: 2 type: Transform - - uid: 1221 + - uid: 1230 components: - pos: -53.5,57.5 parent: 2 type: Transform - - uid: 1222 + - uid: 1231 components: - pos: -51.5,63.5 parent: 2 type: Transform - - uid: 1223 + - uid: 1232 components: - pos: -51.5,62.5 parent: 2 type: Transform - - uid: 1224 + - uid: 1233 components: - pos: -51.5,59.5 parent: 2 type: Transform - - uid: 1225 + - uid: 1234 components: - pos: -51.5,58.5 parent: 2 type: Transform - - uid: 1226 + - uid: 1235 components: - pos: -37.5,59.5 parent: 2 type: Transform - - uid: 1227 + - uid: 1236 components: - pos: -37.5,58.5 parent: 2 type: Transform - - uid: 1228 + - uid: 1237 components: - pos: -38.5,59.5 parent: 2 type: Transform - - uid: 1229 + - uid: 1238 components: - pos: -37.5,61.5 parent: 2 type: Transform - - uid: 1230 + - uid: 1239 components: - pos: -49.5,63.5 parent: 2 type: Transform - - uid: 1231 + - uid: 1240 components: - pos: -39.5,56.5 parent: 2 type: Transform - - uid: 1232 + - uid: 1241 components: - pos: -39.5,57.5 parent: 2 type: Transform - - uid: 1233 + - uid: 1242 components: - pos: -38.5,60.5 parent: 2 type: Transform - - uid: 1234 + - uid: 1243 components: - pos: -37.5,60.5 parent: 2 type: Transform - - uid: 1235 + - uid: 1244 components: - pos: -36.5,59.5 parent: 2 type: Transform - - uid: 1236 + - uid: 1245 components: - pos: -50.5,58.5 parent: 2 type: Transform - - uid: 1237 + - uid: 1246 components: - pos: -50.5,57.5 parent: 2 type: Transform - - uid: 1238 + - uid: 1247 components: - pos: -40.5,58.5 parent: 2 type: Transform - - uid: 1239 + - uid: 1248 components: - pos: -55.5,63.5 parent: 2 type: Transform - - uid: 1240 + - uid: 1249 components: - pos: -57.5,68.5 parent: 2 type: Transform - - uid: 1241 + - uid: 1250 components: - pos: -57.5,67.5 parent: 2 type: Transform - - uid: 1242 + - uid: 1251 components: - pos: -51.5,66.5 parent: 2 type: Transform - - uid: 1243 + - uid: 1252 components: - pos: -53.5,66.5 parent: 2 type: Transform - - uid: 1244 + - uid: 1253 components: - pos: -39.5,58.5 parent: 2 type: Transform - - uid: 1245 + - uid: 1254 components: - pos: -55.5,64.5 parent: 2 type: Transform - - uid: 1246 + - uid: 1255 components: - pos: -54.5,64.5 parent: 2 type: Transform - - uid: 1247 + - uid: 1256 components: - pos: -42.5,56.5 parent: 2 type: Transform - - uid: 1248 + - uid: 1257 components: - pos: -52.5,64.5 parent: 2 type: Transform - - uid: 1249 + - uid: 1258 components: - pos: -53.5,64.5 parent: 2 type: Transform - - uid: 1250 + - uid: 1259 components: - pos: -49.5,60.5 parent: 2 type: Transform - - uid: 1251 + - uid: 1260 components: - pos: -35.5,61.5 parent: 2 type: Transform - - uid: 1252 + - uid: 1261 components: - pos: -36.5,61.5 parent: 2 type: Transform - - uid: 1253 + - uid: 1262 components: - pos: -47.5,57.5 parent: 2 type: Transform - - uid: 1254 + - uid: 1263 components: - pos: -35.5,64.5 parent: 2 type: Transform - - uid: 1255 + - uid: 1264 components: - pos: -38.5,61.5 parent: 2 type: Transform - - uid: 1256 + - uid: 1265 components: - pos: -38.5,62.5 parent: 2 type: Transform - - uid: 1257 + - uid: 1266 components: - pos: -36.5,64.5 parent: 2 type: Transform - - uid: 1258 + - uid: 1267 components: - pos: -56.5,68.5 parent: 2 type: Transform - - uid: 1259 + - uid: 1268 components: - pos: -56.5,67.5 parent: 2 type: Transform - - uid: 1260 + - uid: 1269 components: - pos: -56.5,71.5 parent: 2 type: Transform - - uid: 1261 + - uid: 1270 components: - pos: -56.5,69.5 parent: 2 type: Transform - - uid: 1262 + - uid: 1271 components: - pos: -36.5,60.5 parent: 2 type: Transform - - uid: 1263 + - uid: 1272 components: - pos: -46.5,57.5 parent: 2 type: Transform - - uid: 1264 + - uid: 1273 components: - pos: -58.5,68.5 parent: 2 type: Transform - - uid: 1265 + - uid: 1274 components: - pos: -58.5,69.5 parent: 2 type: Transform - - uid: 1266 + - uid: 1275 components: - pos: -56.5,66.5 parent: 2 type: Transform - - uid: 1267 + - uid: 1276 components: - pos: -56.5,64.5 parent: 2 type: Transform - - uid: 1268 + - uid: 1277 components: - pos: -38.5,63.5 parent: 2 type: Transform - - uid: 1269 + - uid: 1278 components: - pos: -56.5,65.5 parent: 2 type: Transform - - uid: 1270 + - uid: 1279 components: - pos: -44.5,64.5 parent: 2 type: Transform - - uid: 1271 + - uid: 1280 components: - pos: -53.5,68.5 parent: 2 type: Transform - - uid: 1272 + - uid: 1281 components: - pos: -52.5,70.5 parent: 2 type: Transform - - uid: 1273 + - uid: 1282 components: - pos: -53.5,69.5 parent: 2 type: Transform - - uid: 1274 + - uid: 1283 components: - pos: -49.5,58.5 parent: 2 type: Transform - - uid: 1275 + - uid: 1284 components: - pos: -49.5,61.5 parent: 2 type: Transform - - uid: 1276 + - uid: 1285 components: - pos: -49.5,57.5 parent: 2 type: Transform - - uid: 1277 + - uid: 1286 components: - pos: -41.5,58.5 parent: 2 type: Transform - - uid: 1278 + - uid: 1287 components: - pos: -41.5,56.5 parent: 2 type: Transform - - uid: 1279 + - uid: 1288 components: - pos: -42.5,58.5 parent: 2 type: Transform - - uid: 1280 + - uid: 1289 components: - pos: -42.5,57.5 parent: 2 type: Transform - - uid: 1281 + - uid: 1290 components: - pos: -37.5,56.5 parent: 2 type: Transform - - uid: 1282 + - uid: 1291 components: - pos: 13.5,44.5 parent: 2 type: Transform - - uid: 1283 + - uid: 1292 components: - pos: 61.5,53.5 parent: 2 type: Transform - - uid: 1284 + - uid: 1293 components: - pos: 60.5,54.5 parent: 2 type: Transform - - uid: 1285 + - uid: 1294 components: - pos: 70.5,46.5 parent: 2 type: Transform - - uid: 1286 + - uid: 1295 components: - pos: 61.5,55.5 parent: 2 type: Transform - - uid: 1287 + - uid: 1296 components: - pos: 69.5,44.5 parent: 2 type: Transform - - uid: 1288 + - uid: 1297 components: - pos: 70.5,50.5 parent: 2 type: Transform - - uid: 1289 + - uid: 1298 components: - pos: 70.5,49.5 parent: 2 type: Transform - - uid: 1290 + - uid: 1299 components: - pos: 70.5,51.5 parent: 2 type: Transform - - uid: 1291 + - uid: 1300 components: - pos: 69.5,50.5 parent: 2 type: Transform - - uid: 1292 + - uid: 1301 components: - pos: 69.5,47.5 parent: 2 type: Transform - - uid: 1293 + - uid: 1302 components: - pos: 69.5,46.5 parent: 2 type: Transform - - uid: 1294 + - uid: 1303 components: - pos: 69.5,45.5 parent: 2 type: Transform - - uid: 1295 + - uid: 1304 components: - pos: 69.5,48.5 parent: 2 type: Transform - - uid: 1296 + - uid: 1305 components: - pos: 69.5,49.5 parent: 2 type: Transform - - uid: 1297 + - uid: 1306 components: - pos: 7.5,57.5 parent: 2 type: Transform - - uid: 1298 + - uid: 1307 components: - pos: 64.5,53.5 parent: 2 type: Transform - - uid: 1299 + - uid: 1308 components: - pos: 64.5,52.5 parent: 2 type: Transform - - uid: 1300 + - uid: 1309 components: - pos: 64.5,53.5 parent: 2 type: Transform - - uid: 1301 + - uid: 1310 components: - pos: 64.5,51.5 parent: 2 type: Transform - - uid: 1302 + - uid: 1311 components: - pos: 67.5,53.5 parent: 2 type: Transform - - uid: 1303 + - uid: 1312 components: - pos: 65.5,52.5 parent: 2 type: Transform - - uid: 1304 + - uid: 1313 components: - pos: 65.5,53.5 parent: 2 type: Transform - - uid: 1305 + - uid: 1314 components: - pos: 65.5,54.5 parent: 2 type: Transform - - uid: 1306 + - uid: 1315 components: - pos: 62.5,55.5 parent: 2 type: Transform - - uid: 1307 + - uid: 1316 components: - pos: 64.5,55.5 parent: 2 type: Transform - - uid: 1308 + - uid: 1317 components: - pos: 64.5,54.5 parent: 2 type: Transform - - uid: 1309 + - uid: 1318 components: - pos: 68.5,52.5 parent: 2 type: Transform - - uid: 1310 + - uid: 1319 components: - pos: 65.5,52.5 parent: 2 type: Transform - - uid: 1311 + - uid: 1320 components: - pos: 66.5,54.5 parent: 2 type: Transform - - uid: 1312 + - uid: 1321 components: - pos: 66.5,53.5 parent: 2 type: Transform - - uid: 1313 + - uid: 1322 components: - pos: 67.5,52.5 parent: 2 type: Transform - - uid: 1314 + - uid: 1323 components: - pos: 65.5,55.5 parent: 2 type: Transform - - uid: 1315 + - uid: 1324 components: - pos: 62.5,52.5 parent: 2 type: Transform - - uid: 1316 + - uid: 1325 components: - pos: 63.5,55.5 parent: 2 type: Transform - - uid: 1317 + - uid: 1326 components: - pos: 10.5,58.5 parent: 2 type: Transform - - uid: 1318 + - uid: 1327 components: - pos: 4.5,42.5 parent: 2 type: Transform - - uid: 1319 + - uid: 1328 components: - pos: 9.5,50.5 parent: 2 type: Transform - - uid: 1320 + - uid: 1329 components: - pos: 3.5,42.5 parent: 2 type: Transform - - uid: 1321 + - uid: 1330 components: - pos: 3.5,52.5 parent: 2 type: Transform - - uid: 1322 + - uid: 1331 components: - pos: 63.5,54.5 parent: 2 type: Transform - - uid: 1323 + - uid: 1332 components: - pos: 62.5,54.5 parent: 2 type: Transform - - uid: 1324 + - uid: 1333 components: - pos: 11.5,57.5 parent: 2 type: Transform - - uid: 1325 + - uid: 1334 components: - pos: 12.5,56.5 parent: 2 type: Transform - - uid: 1326 + - uid: 1335 components: - pos: 12.5,57.5 parent: 2 type: Transform - - uid: 1327 + - uid: 1336 components: - pos: 3.5,43.5 parent: 2 type: Transform - - uid: 1328 + - uid: 1337 components: - pos: 5.5,42.5 parent: 2 type: Transform - - uid: 1329 + - uid: 1338 components: - pos: 9.5,57.5 parent: 2 type: Transform - - uid: 1330 + - uid: 1339 components: - pos: 10.5,57.5 parent: 2 type: Transform - - uid: 1331 + - uid: 1340 components: - pos: 10.5,56.5 parent: 2 type: Transform - - uid: 1332 + - uid: 1341 components: - pos: 9.5,56.5 parent: 2 type: Transform - - uid: 1333 + - uid: 1342 components: - pos: 8.5,56.5 parent: 2 type: Transform - - uid: 1334 + - uid: 1343 components: - pos: 7.5,56.5 parent: 2 type: Transform - - uid: 1335 + - uid: 1344 components: - pos: 3.5,53.5 parent: 2 type: Transform - - uid: 1336 + - uid: 1345 components: - pos: 61.5,54.5 parent: 2 type: Transform - - uid: 1337 + - uid: 1346 components: - pos: 3.5,45.5 parent: 2 type: Transform - - uid: 1338 + - uid: 1347 components: - pos: 3.5,46.5 parent: 2 type: Transform - - uid: 1339 + - uid: 1348 components: - pos: 60.5,53.5 parent: 2 type: Transform - - uid: 1340 + - uid: 1349 components: - pos: 61.5,52.5 parent: 2 type: Transform - - uid: 1341 + - uid: 1350 components: - pos: 60.5,50.5 parent: 2 type: Transform - - uid: 1342 + - uid: 1351 components: - pos: 60.5,51.5 parent: 2 type: Transform - - uid: 1343 + - uid: 1352 components: - pos: 5.5,44.5 parent: 2 type: Transform - - uid: 1344 + - uid: 1353 components: - pos: 4.5,45.5 parent: 2 type: Transform - - uid: 1345 + - uid: 1354 components: - pos: 5.5,43.5 parent: 2 type: Transform - - uid: 1346 + - uid: 1355 components: - pos: 3.5,44.5 parent: 2 type: Transform - - uid: 1347 + - uid: 1356 components: - pos: 60.5,52.5 parent: 2 type: Transform - - uid: 1348 + - uid: 1357 components: - pos: 61.5,50.5 parent: 2 type: Transform - - uid: 1349 + - uid: 1358 components: - pos: 61.5,51.5 parent: 2 type: Transform - - uid: 1350 + - uid: 1359 components: - pos: 60.5,49.5 parent: 2 type: Transform - - uid: 1351 + - uid: 1360 components: - pos: 6.5,43.5 parent: 2 type: Transform - - uid: 1352 + - uid: 1361 components: - pos: 4.5,43.5 parent: 2 type: Transform - - uid: 1353 + - uid: 1362 components: - pos: 4.5,43.5 parent: 2 type: Transform - - uid: 1354 + - uid: 1363 components: - pos: 4.5,44.5 parent: 2 type: Transform - - uid: 1355 + - uid: 1364 components: - pos: 63.5,53.5 parent: 2 type: Transform - - uid: 1356 + - uid: 1365 components: - pos: 63.5,52.5 parent: 2 type: Transform - - uid: 1357 + - uid: 1366 components: - pos: 76.5,-60.5 parent: 2 type: Transform - - uid: 1358 + - uid: 1367 components: - pos: 77.5,-60.5 parent: 2 type: Transform - - uid: 1359 + - uid: 1368 components: - pos: 77.5,-61.5 parent: 2 type: Transform - - uid: 1360 + - uid: 1369 components: - pos: 77.5,-62.5 parent: 2 type: Transform - - uid: 1361 + - uid: 1370 components: - pos: 80.5,-66.5 parent: 2 type: Transform - - uid: 1362 + - uid: 1371 components: - pos: 77.5,-59.5 parent: 2 type: Transform - - uid: 1363 + - uid: 1372 components: - pos: 72.5,-65.5 parent: 2 type: Transform - - uid: 1364 + - uid: 1373 components: - pos: 75.5,-61.5 parent: 2 type: Transform - - uid: 1365 + - uid: 1374 components: - pos: 78.5,-53.5 parent: 2 type: Transform - - uid: 1366 + - uid: 1375 components: - pos: 78.5,-54.5 parent: 2 type: Transform - - uid: 1367 + - uid: 1376 components: - pos: 78.5,-54.5 parent: 2 type: Transform - - uid: 1368 + - uid: 1377 components: - pos: 76.5,-58.5 parent: 2 type: Transform - - uid: 1369 + - uid: 1378 components: - pos: 75.5,-59.5 parent: 2 type: Transform - - uid: 1370 + - uid: 1379 components: - pos: 78.5,-52.5 parent: 2 type: Transform - - uid: 1371 + - uid: 1380 components: - pos: 78.5,-51.5 parent: 2 type: Transform - - uid: 1372 + - uid: 1381 components: - pos: 70.5,45.5 parent: 2 type: Transform - - uid: 1373 + - uid: 1382 components: - pos: 78.5,-50.5 parent: 2 type: Transform - - uid: 1374 + - uid: 1383 components: - pos: 4.5,-90.5 parent: 2 type: Transform - - uid: 1375 + - uid: 1384 components: - pos: 3.5,-90.5 parent: 2 type: Transform - - uid: 1376 + - uid: 1385 components: - pos: 69.5,-70.5 parent: 2 type: Transform - - uid: 1377 + - uid: 1386 components: - pos: 4.5,-91.5 parent: 2 type: Transform - - uid: 1378 + - uid: 1387 components: - pos: 6.5,-90.5 parent: 2 type: Transform - - uid: 1379 + - uid: 1388 components: - pos: 7.5,-90.5 parent: 2 type: Transform - - uid: 1380 + - uid: 1389 components: - pos: 18.5,45.5 parent: 2 type: Transform - - uid: 1381 + - uid: 1390 components: - pos: 11.5,-91.5 parent: 2 type: Transform - - uid: 1382 + - uid: 1391 components: - pos: 7.5,-91.5 parent: 2 type: Transform - - uid: 1383 + - uid: 1392 components: - pos: 10.5,-90.5 parent: 2 type: Transform - - uid: 1384 + - uid: 1393 components: - pos: 17.5,48.5 parent: 2 type: Transform - - uid: 1385 + - uid: 1394 components: - pos: 80.5,-65.5 parent: 2 type: Transform - - uid: 1386 + - uid: 1395 components: - pos: 78.5,-61.5 parent: 2 type: Transform - - uid: 1387 + - uid: 1396 components: - pos: 78.5,-69.5 parent: 2 type: Transform - - uid: 1388 + - uid: 1397 components: - pos: 79.5,-68.5 parent: 2 type: Transform - - uid: 1389 + - uid: 1398 components: - pos: 73.5,-62.5 parent: 2 type: Transform - - uid: 1390 + - uid: 1399 components: - pos: 73.5,-61.5 parent: 2 type: Transform - - uid: 1391 + - uid: 1400 components: - pos: 74.5,-59.5 parent: 2 type: Transform - - uid: 1392 + - uid: 1401 components: - pos: 74.5,-60.5 parent: 2 type: Transform - - uid: 1393 + - uid: 1402 components: - pos: 78.5,-53.5 parent: 2 type: Transform - - uid: 1394 + - uid: 1403 components: - pos: 78.5,-52.5 parent: 2 type: Transform - - uid: 1395 + - uid: 1404 components: - pos: 78.5,-49.5 parent: 2 type: Transform - - uid: 1396 + - uid: 1405 components: - pos: 70.5,44.5 parent: 2 type: Transform - - uid: 1397 + - uid: 1406 components: - pos: 68.5,45.5 parent: 2 type: Transform - - uid: 1398 + - uid: 1407 components: - pos: 67.5,45.5 parent: 2 type: Transform - - uid: 1399 + - uid: 1408 components: - pos: 68.5,44.5 parent: 2 type: Transform - - uid: 1400 + - uid: 1409 components: - pos: 67.5,44.5 parent: 2 type: Transform - - uid: 1401 + - uid: 1410 components: - pos: 71.5,-73.5 parent: 2 type: Transform - - uid: 1402 + - uid: 1411 components: - pos: 70.5,-73.5 parent: 2 type: Transform - - uid: 1403 + - uid: 1412 components: - pos: 73.5,-72.5 parent: 2 type: Transform - - uid: 1404 + - uid: 1413 components: - pos: 71.5,-72.5 parent: 2 type: Transform - - uid: 1405 + - uid: 1414 components: - pos: 74.5,-72.5 parent: 2 type: Transform - - uid: 1406 + - uid: 1415 components: - pos: 74.5,-71.5 parent: 2 type: Transform - - uid: 1407 + - uid: 1416 components: - pos: 77.5,-69.5 parent: 2 type: Transform - - uid: 1408 + - uid: 1417 components: - pos: 18.5,46.5 parent: 2 type: Transform - - uid: 1409 + - uid: 1418 components: - pos: 19.5,44.5 parent: 2 type: Transform - - uid: 1410 + - uid: 1419 components: - pos: 18.5,44.5 parent: 2 type: Transform - - uid: 1411 + - uid: 1420 components: - pos: 18.5,43.5 parent: 2 type: Transform - - uid: 1412 + - uid: 1421 components: - pos: 16.5,46.5 parent: 2 type: Transform - - uid: 1413 + - uid: 1422 components: - pos: 15.5,48.5 parent: 2 type: Transform - - uid: 1414 + - uid: 1423 components: - pos: 16.5,47.5 parent: 2 type: Transform - - uid: 1415 + - uid: 1424 components: - pos: 16.5,49.5 parent: 2 type: Transform - - uid: 1416 + - uid: 1425 components: - pos: 16.5,48.5 parent: 2 type: Transform - - uid: 1417 + - uid: 1426 components: - pos: 17.5,43.5 parent: 2 type: Transform - - uid: 1418 + - uid: 1427 components: - pos: 65.5,47.5 parent: 2 type: Transform - - uid: 1419 + - uid: 1428 components: - pos: 65.5,44.5 parent: 2 type: Transform - - uid: 1420 + - uid: 1429 components: - pos: 65.5,43.5 parent: 2 type: Transform - - uid: 1421 + - uid: 1430 components: - pos: 67.5,42.5 parent: 2 type: Transform - - uid: 1422 + - uid: 1431 components: - pos: 66.5,42.5 parent: 2 type: Transform - - uid: 1423 + - uid: 1432 components: - pos: 65.5,42.5 parent: 2 type: Transform - - uid: 1424 + - uid: 1433 components: - pos: 64.5,42.5 parent: 2 type: Transform - - uid: 1425 + - uid: 1434 components: - pos: 63.5,42.5 parent: 2 type: Transform - - uid: 1426 + - uid: 1435 components: - pos: 62.5,43.5 parent: 2 type: Transform - - uid: 1427 + - uid: 1436 components: - pos: 61.5,43.5 parent: 2 type: Transform - - uid: 1428 + - uid: 1437 components: - pos: 62.5,44.5 parent: 2 type: Transform - - uid: 1429 + - uid: 1438 components: - pos: 65.5,51.5 parent: 2 type: Transform - - uid: 1430 + - uid: 1439 components: - pos: 65.5,50.5 parent: 2 type: Transform - - uid: 1431 + - uid: 1440 components: - pos: 9.5,41.5 parent: 2 type: Transform - - uid: 1432 + - uid: 1441 components: - pos: 14.5,45.5 parent: 2 type: Transform - - uid: 1433 + - uid: 1442 components: - pos: 77.5,-68.5 parent: 2 type: Transform - - uid: 1434 + - uid: 1443 components: - pos: 15.5,49.5 parent: 2 type: Transform - - uid: 1435 + - uid: 1444 components: - pos: 16.5,50.5 parent: 2 type: Transform - - uid: 1436 + - uid: 1445 components: - pos: 76.5,-71.5 parent: 2 type: Transform - - uid: 1437 + - uid: 1446 components: - pos: 76.5,-69.5 parent: 2 type: Transform - - uid: 1438 + - uid: 1447 components: - pos: 16.5,51.5 parent: 2 type: Transform - - uid: 1439 + - uid: 1448 components: - pos: 75.5,-71.5 parent: 2 type: Transform - - uid: 1440 + - uid: 1449 components: - pos: 81.5,-58.5 parent: 2 type: Transform - - uid: 1441 + - uid: 1450 components: - pos: 81.5,-62.5 parent: 2 type: Transform - - uid: 1442 + - uid: 1451 components: - pos: 75.5,-72.5 parent: 2 type: Transform - - uid: 1443 + - uid: 1452 components: - pos: 80.5,-63.5 parent: 2 type: Transform - - uid: 1444 + - uid: 1453 components: - pos: 81.5,-63.5 parent: 2 type: Transform - - uid: 1445 + - uid: 1454 components: - pos: 81.5,-61.5 parent: 2 type: Transform - - uid: 1446 + - uid: 1455 components: - pos: 81.5,-60.5 parent: 2 type: Transform - - uid: 1447 + - uid: 1456 components: - pos: 81.5,-57.5 parent: 2 type: Transform - - uid: 1448 + - uid: 1457 components: - pos: 77.5,-56.5 parent: 2 type: Transform - - uid: 1449 + - uid: 1458 components: - pos: 77.5,-57.5 parent: 2 type: Transform - - uid: 1450 + - uid: 1459 components: - pos: 77.5,-55.5 parent: 2 type: Transform - - uid: 1451 + - uid: 1460 components: - pos: 77.5,-54.5 parent: 2 type: Transform - - uid: 1452 + - uid: 1461 components: - pos: 77.5,-52.5 parent: 2 type: Transform - - uid: 1453 + - uid: 1462 components: - pos: 81.5,-59.5 parent: 2 type: Transform - - uid: 1454 + - uid: 1463 components: - pos: 80.5,-51.5 parent: 2 type: Transform - - uid: 1455 + - uid: 1464 components: - pos: 66.5,-69.5 parent: 2 type: Transform - - uid: 1456 + - uid: 1465 components: - pos: 70.5,-70.5 parent: 2 type: Transform - - uid: 1457 + - uid: 1466 components: - pos: 67.5,-71.5 parent: 2 type: Transform - - uid: 1458 + - uid: 1467 components: - pos: 66.5,-70.5 parent: 2 type: Transform - - uid: 1459 + - uid: 1468 components: - pos: 66.5,-68.5 parent: 2 type: Transform - - uid: 1460 + - uid: 1469 components: - pos: 66.5,-71.5 parent: 2 type: Transform - - uid: 1461 + - uid: 1470 components: - pos: 65.5,-69.5 parent: 2 type: Transform - - uid: 1462 + - uid: 1471 components: - pos: 77.5,-65.5 parent: 2 type: Transform - - uid: 1463 + - uid: 1472 components: - pos: 76.5,-65.5 parent: 2 type: Transform - - uid: 1464 + - uid: 1473 components: - pos: 78.5,-67.5 parent: 2 type: Transform - - uid: 1465 + - uid: 1474 components: - pos: 78.5,-66.5 parent: 2 type: Transform - - uid: 1466 + - uid: 1475 components: - pos: 79.5,-67.5 parent: 2 type: Transform - - uid: 1467 + - uid: 1476 components: - pos: 75.5,-68.5 parent: 2 type: Transform - - uid: 1468 + - uid: 1477 components: - pos: 75.5,-65.5 parent: 2 type: Transform - - uid: 1469 + - uid: 1478 components: - pos: 66.5,-72.5 parent: 2 type: Transform - - uid: 1470 + - uid: 1479 components: - pos: 64.5,47.5 parent: 2 type: Transform - - uid: 1471 + - uid: 1480 components: - pos: 64.5,46.5 parent: 2 type: Transform - - uid: 1472 + - uid: 1481 components: - pos: 65.5,46.5 parent: 2 type: Transform - - uid: 1473 + - uid: 1482 components: - pos: 66.5,52.5 parent: 2 type: Transform - - uid: 1474 + - uid: 1483 components: - pos: 4.5,54.5 parent: 2 type: Transform - - uid: 1475 + - uid: 1484 components: - pos: 15.5,51.5 parent: 2 type: Transform - - uid: 1476 + - uid: 1485 components: - pos: 78.5,-68.5 parent: 2 type: Transform - - uid: 1477 + - uid: 1486 components: - pos: 12.5,50.5 parent: 2 type: Transform - - uid: 1478 + - uid: 1487 components: - pos: 79.5,-65.5 parent: 2 type: Transform - - uid: 1479 + - uid: 1488 components: - pos: 76.5,-68.5 parent: 2 type: Transform - - uid: 1480 + - uid: 1489 components: - pos: 15.5,52.5 parent: 2 type: Transform - - uid: 1481 + - uid: 1490 components: - pos: 17.5,44.5 parent: 2 type: Transform - - uid: 1482 + - uid: 1491 components: - pos: 6.5,-91.5 parent: 2 type: Transform - - uid: 1483 + - uid: 1492 components: - pos: 5.5,-91.5 parent: 2 type: Transform - - uid: 1484 + - uid: 1493 components: - pos: 75.5,-70.5 parent: 2 type: Transform - - uid: 1485 + - uid: 1494 components: - pos: 3.5,-91.5 parent: 2 type: Transform - - uid: 1486 + - uid: 1495 components: - pos: 17.5,45.5 parent: 2 type: Transform - - uid: 1487 + - uid: 1496 components: - pos: 79.5,-65.5 parent: 2 type: Transform - - uid: 1488 + - uid: 1497 components: - pos: 65.5,48.5 parent: 2 type: Transform - - uid: 1489 + - uid: 1498 components: - pos: 66.5,43.5 parent: 2 type: Transform - - uid: 1490 + - uid: 1499 components: - pos: 67.5,43.5 parent: 2 type: Transform - - uid: 1491 + - uid: 1500 components: - pos: 65.5,47.5 parent: 2 type: Transform - - uid: 1492 + - uid: 1501 components: - pos: 68.5,43.5 parent: 2 type: Transform - - uid: 1493 + - uid: 1502 components: - pos: 14.5,44.5 parent: 2 type: Transform - - uid: 1494 + - uid: 1503 components: - pos: 11.5,-90.5 parent: 2 type: Transform - - uid: 1495 + - uid: 1504 components: - pos: 9.5,-91.5 parent: 2 type: Transform - - uid: 1496 + - uid: 1505 components: - pos: 8.5,-91.5 parent: 2 type: Transform - - uid: 1497 + - uid: 1506 components: - pos: 9.5,-90.5 parent: 2 type: Transform - - uid: 1498 + - uid: 1507 components: - pos: 17.5,47.5 parent: 2 type: Transform - - uid: 1499 + - uid: 1508 components: - pos: 8.5,-90.5 parent: 2 type: Transform - - uid: 1500 + - uid: 1509 components: - pos: 17.5,46.5 parent: 2 type: Transform - - uid: 1501 + - uid: 1510 components: - pos: 77.5,-51.5 parent: 2 type: Transform - - uid: 1502 + - uid: 1511 components: - pos: 77.5,-53.5 parent: 2 type: Transform - - uid: 1503 + - uid: 1512 components: - pos: 80.5,-57.5 parent: 2 type: Transform - - uid: 1504 + - uid: 1513 components: - pos: 80.5,-58.5 parent: 2 type: Transform - - uid: 1505 + - uid: 1514 components: - pos: 80.5,-55.5 parent: 2 type: Transform - - uid: 1506 + - uid: 1515 components: - pos: 80.5,-56.5 parent: 2 type: Transform - - uid: 1507 + - uid: 1516 components: - pos: 81.5,-56.5 parent: 2 type: Transform - - uid: 1508 + - uid: 1517 components: - pos: 80.5,-54.5 parent: 2 type: Transform - - uid: 1509 + - uid: 1518 components: - pos: 80.5,-53.5 parent: 2 type: Transform - - uid: 1510 + - uid: 1519 components: - pos: 80.5,-52.5 parent: 2 type: Transform - - uid: 1511 + - uid: 1520 components: - pos: 81.5,-55.5 parent: 2 type: Transform - - uid: 1512 + - uid: 1521 components: - pos: 80.5,-64.5 parent: 2 type: Transform - - uid: 1513 + - uid: 1522 components: - pos: 79.5,-66.5 parent: 2 type: Transform - - uid: 1514 + - uid: 1523 components: - pos: 76.5,-64.5 parent: 2 type: Transform - - uid: 1515 + - uid: 1524 components: - pos: 80.5,-67.5 parent: 2 type: Transform - - uid: 1516 + - uid: 1525 components: - pos: 72.5,-66.5 parent: 2 type: Transform - - uid: 1517 + - uid: 1526 components: - pos: 70.5,-68.5 parent: 2 type: Transform - - uid: 1518 + - uid: 1527 components: - pos: 70.5,-69.5 parent: 2 type: Transform - - uid: 1519 + - uid: 1528 components: - pos: 71.5,-68.5 parent: 2 type: Transform - - uid: 1520 + - uid: 1529 components: - pos: 71.5,-68.5 parent: 2 type: Transform - - uid: 1521 + - uid: 1530 components: - pos: 76.5,-66.5 parent: 2 type: Transform - - uid: 1522 + - uid: 1531 components: - pos: 76.5,-67.5 parent: 2 type: Transform - - uid: 1523 + - uid: 1532 components: - pos: 65.5,-71.5 parent: 2 type: Transform - - uid: 1524 + - uid: 1533 components: - pos: 75.5,-64.5 parent: 2 type: Transform - - uid: 1525 + - uid: 1534 components: - pos: 65.5,-70.5 parent: 2 type: Transform - - uid: 1526 + - uid: 1535 components: - pos: 64.5,-70.5 parent: 2 type: Transform - - uid: 1527 + - uid: 1536 components: - pos: 24.5,51.5 parent: 2 type: Transform - - uid: 1528 + - uid: 1537 components: - pos: 17.5,42.5 parent: 2 type: Transform - - uid: 1529 + - uid: 1538 components: - pos: 15.5,42.5 parent: 2 type: Transform - - uid: 1530 + - uid: 1539 components: - pos: 14.5,42.5 parent: 2 type: Transform - - uid: 1531 + - uid: 1540 components: - pos: 11.5,41.5 parent: 2 type: Transform - - uid: 1532 + - uid: 1541 components: - pos: 12.5,42.5 parent: 2 type: Transform - - uid: 1533 + - uid: 1542 components: - pos: 11.5,42.5 parent: 2 type: Transform - - uid: 1534 + - uid: 1543 components: - pos: 11.5,43.5 parent: 2 type: Transform - - uid: 1535 + - uid: 1544 components: - pos: 6.5,52.5 parent: 2 type: Transform - - uid: 1536 + - uid: 1545 components: - pos: 8.5,51.5 parent: 2 type: Transform - - uid: 1537 + - uid: 1546 components: - pos: 5.5,55.5 parent: 2 type: Transform - - uid: 1538 + - uid: 1547 components: - pos: 6.5,55.5 parent: 2 type: Transform - - uid: 1539 + - uid: 1548 components: - pos: 6.5,56.5 parent: 2 type: Transform - - uid: 1540 + - uid: 1549 components: - pos: 5.5,56.5 parent: 2 type: Transform - - uid: 1541 + - uid: 1550 components: - pos: 4.5,55.5 parent: 2 type: Transform - - uid: 1542 + - uid: 1551 components: - pos: 21.5,57.5 parent: 2 type: Transform - - uid: 1543 + - uid: 1552 components: - pos: 20.5,57.5 parent: 2 type: Transform - - uid: 1544 + - uid: 1553 components: - pos: 21.5,56.5 parent: 2 type: Transform - - uid: 1545 + - uid: 1554 components: - pos: 18.5,56.5 parent: 2 type: Transform - - uid: 1546 + - uid: 1555 components: - pos: 17.5,55.5 parent: 2 type: Transform - - uid: 1547 + - uid: 1556 components: - pos: 19.5,56.5 parent: 2 type: Transform - - uid: 1548 + - uid: 1557 components: - pos: 19.5,57.5 parent: 2 type: Transform - - uid: 1549 + - uid: 1558 components: - pos: 18.5,53.5 parent: 2 type: Transform - - uid: 1550 + - uid: 1559 components: - pos: 19.5,53.5 parent: 2 type: Transform - - uid: 1551 + - uid: 1560 components: - pos: 18.5,52.5 parent: 2 type: Transform - - uid: 1552 + - uid: 1561 components: - pos: 16.5,52.5 parent: 2 type: Transform - - uid: 1553 + - uid: 1562 components: - pos: 17.5,52.5 parent: 2 type: Transform - - uid: 1554 + - uid: 1563 components: - pos: 19.5,52.5 parent: 2 type: Transform - - uid: 1555 + - uid: 1564 components: - pos: 22.5,54.5 parent: 2 type: Transform - - uid: 1556 + - uid: 1565 components: - pos: 21.5,55.5 parent: 2 type: Transform - - uid: 1557 + - uid: 1566 components: - pos: 22.5,53.5 parent: 2 type: Transform - - uid: 1558 + - uid: 1567 components: - pos: 17.5,51.5 parent: 2 type: Transform - - uid: 1559 + - uid: 1568 components: - pos: 21.5,54.5 parent: 2 type: Transform - - uid: 1560 + - uid: 1569 components: - pos: 16.5,53.5 parent: 2 type: Transform - - uid: 1561 + - uid: 1570 components: - pos: 16.5,54.5 parent: 2 type: Transform - - uid: 1562 + - uid: 1571 components: - pos: 17.5,53.5 parent: 2 type: Transform - - uid: 1563 + - uid: 1572 components: - pos: 5.5,54.5 parent: 2 type: Transform - - uid: 1564 + - uid: 1573 components: - pos: 5.5,53.5 parent: 2 type: Transform - - uid: 1565 + - uid: 1574 components: - pos: 13.5,57.5 parent: 2 type: Transform - - uid: 1566 + - uid: 1575 components: - pos: 18.5,57.5 parent: 2 type: Transform - - uid: 1567 + - uid: 1576 components: - pos: 13.5,51.5 parent: 2 type: Transform - - uid: 1568 + - uid: 1577 components: - pos: 10.5,51.5 parent: 2 type: Transform - - uid: 1569 + - uid: 1578 components: - pos: 8.5,52.5 parent: 2 type: Transform - - uid: 1570 + - uid: 1579 components: - pos: 9.5,51.5 parent: 2 type: Transform - - uid: 1571 + - uid: 1580 components: - pos: 13.5,52.5 parent: 2 type: Transform - - uid: 1572 + - uid: 1581 components: - pos: 14.5,53.5 parent: 2 type: Transform - - uid: 1573 + - uid: 1582 components: - pos: 13.5,56.5 parent: 2 type: Transform - - uid: 1574 + - uid: 1583 components: - pos: 14.5,55.5 parent: 2 type: Transform - - uid: 1575 + - uid: 1584 components: - pos: 13.5,55.5 parent: 2 type: Transform - - uid: 1576 + - uid: 1585 components: - pos: 15.5,54.5 parent: 2 type: Transform - - uid: 1577 + - uid: 1586 components: - pos: 15.5,53.5 parent: 2 type: Transform - - uid: 1578 + - uid: 1587 components: - pos: 7.5,52.5 parent: 2 type: Transform - - uid: 1579 + - uid: 1588 components: - pos: 15.5,58.5 parent: 2 type: Transform - - uid: 1580 + - uid: 1589 components: - pos: 14.5,58.5 parent: 2 type: Transform - - uid: 1581 + - uid: 1590 components: - pos: 13.5,58.5 parent: 2 type: Transform - - uid: 1582 + - uid: 1591 components: - pos: 12.5,51.5 parent: 2 type: Transform - - uid: 1583 + - uid: 1592 components: - pos: 17.5,58.5 parent: 2 type: Transform - - uid: 1584 + - uid: 1593 components: - pos: 22.5,56.5 parent: 2 type: Transform - - uid: 1585 + - uid: 1594 components: - pos: 22.5,57.5 parent: 2 type: Transform - - uid: 1586 + - uid: 1595 components: - pos: 11.5,51.5 parent: 2 type: Transform - - uid: 1587 + - uid: 1596 components: - pos: 17.5,50.5 parent: 2 type: Transform - - uid: 1588 + - uid: 1597 components: - pos: 18.5,48.5 parent: 2 type: Transform - - uid: 1589 + - uid: 1598 components: - pos: 21.5,51.5 parent: 2 type: Transform - - uid: 1590 + - uid: 1599 components: - pos: 17.5,49.5 parent: 2 type: Transform - - uid: 1591 + - uid: 1600 components: - pos: 21.5,49.5 parent: 2 type: Transform - - uid: 1592 + - uid: 1601 components: - pos: 18.5,51.5 parent: 2 type: Transform - - uid: 1593 + - uid: 1602 components: - pos: 19.5,48.5 parent: 2 type: Transform - - uid: 1594 + - uid: 1603 components: - pos: 20.5,51.5 parent: 2 type: Transform - - uid: 1595 + - uid: 1604 components: - pos: 21.5,52.5 parent: 2 type: Transform - - uid: 1596 + - uid: 1605 components: - pos: 20.5,52.5 parent: 2 type: Transform - - uid: 1597 + - uid: 1606 components: - pos: 20.5,54.5 parent: 2 type: Transform - - uid: 1598 + - uid: 1607 components: - pos: 23.5,54.5 parent: 2 type: Transform - - uid: 1599 + - uid: 1608 components: - pos: 20.5,53.5 parent: 2 type: Transform - - uid: 1600 + - uid: 1609 components: - pos: 23.5,52.5 parent: 2 type: Transform - - uid: 1601 + - uid: 1610 components: - pos: 18.5,42.5 parent: 2 type: Transform - - uid: 1602 + - uid: 1611 components: - pos: 20.5,48.5 parent: 2 type: Transform - - uid: 1603 + - uid: 1612 components: - pos: 21.5,47.5 parent: 2 type: Transform - - uid: 1604 + - uid: 1613 components: - pos: 20.5,44.5 parent: 2 type: Transform - - uid: 1605 + - uid: 1614 components: - pos: 19.5,42.5 parent: 2 type: Transform - - uid: 1606 + - uid: 1615 components: - pos: 21.5,48.5 parent: 2 type: Transform - - uid: 1607 + - uid: 1616 components: - pos: 20.5,43.5 parent: 2 type: Transform - - uid: 1608 + - uid: 1617 components: - pos: 19.5,43.5 parent: 2 type: Transform - - uid: 1609 + - uid: 1618 components: - pos: 22.5,49.5 parent: 2 type: Transform - - uid: 1610 + - uid: 1619 components: - pos: 23.5,50.5 parent: 2 type: Transform - - uid: 1611 + - uid: 1620 components: - pos: 22.5,50.5 parent: 2 type: Transform - - uid: 1612 + - uid: 1621 components: - pos: 24.5,52.5 parent: 2 type: Transform - - uid: 1613 + - uid: 1622 components: - pos: 23.5,51.5 parent: 2 type: Transform - - uid: 1614 + - uid: 1623 components: - pos: 24.5,53.5 parent: 2 type: Transform - - uid: 1615 + - uid: 1624 components: - pos: 24.5,56.5 parent: 2 type: Transform - - uid: 1616 + - uid: 1625 components: - pos: 25.5,54.5 parent: 2 type: Transform - - uid: 1617 + - uid: 1626 components: - pos: 25.5,55.5 parent: 2 type: Transform - - uid: 1618 + - uid: 1627 components: - pos: 25.5,53.5 parent: 2 type: Transform - - uid: 1619 + - uid: 1628 components: - pos: 24.5,57.5 parent: 2 type: Transform - - uid: 1620 + - uid: 1629 components: - pos: 23.5,57.5 parent: 2 type: Transform - - uid: 1621 + - uid: 1630 components: - pos: 21.5,58.5 parent: 2 type: Transform - - uid: 1622 + - uid: 1631 components: - pos: 19.5,58.5 parent: 2 type: Transform - - uid: 1623 + - uid: 1632 components: - pos: 20.5,58.5 parent: 2 type: Transform - - uid: 1624 + - uid: 1633 components: - pos: 18.5,58.5 parent: 2 type: Transform - - uid: 1625 + - uid: 1634 components: - pos: 17.5,59.5 parent: 2 type: Transform - - uid: 1626 + - uid: 1635 components: - pos: 18.5,59.5 parent: 2 type: Transform - - uid: 1627 + - uid: 1636 components: - pos: 20.5,50.5 parent: 2 type: Transform - - uid: 1628 + - uid: 1637 components: - pos: 19.5,51.5 parent: 2 type: Transform - - uid: 1629 + - uid: 1638 components: - pos: 21.5,50.5 parent: 2 type: Transform - - uid: 1630 + - uid: 1639 components: - pos: 14.5,59.5 parent: 2 type: Transform - - uid: 1631 + - uid: 1640 components: - pos: 16.5,59.5 parent: 2 type: Transform - - uid: 1632 + - uid: 1641 components: - pos: 22.5,58.5 parent: 2 type: Transform - - uid: 1633 + - uid: 1642 components: - pos: 23.5,55.5 parent: 2 type: Transform - - uid: 1634 + - uid: 1643 components: - pos: 24.5,55.5 parent: 2 type: Transform - - uid: 1635 + - uid: 1644 components: - pos: 23.5,56.5 parent: 2 type: Transform - - uid: 1636 + - uid: 1645 components: - pos: 24.5,55.5 parent: 2 type: Transform - - uid: 1637 + - uid: 1646 components: - pos: 13.5,59.5 parent: 2 type: Transform - - uid: 1638 + - uid: 1647 components: - pos: 15.5,59.5 parent: 2 type: Transform - - uid: 1639 + - uid: 1648 components: - pos: 23.5,53.5 parent: 2 type: Transform - - uid: 1640 + - uid: 1649 components: - pos: 24.5,54.5 parent: 2 type: Transform - - uid: 1641 + - uid: 1650 components: - pos: 23.5,53.5 parent: 2 type: Transform - - uid: 1642 + - uid: 1651 components: - pos: 22.5,52.5 parent: 2 type: Transform - - uid: 1643 + - uid: 1652 components: - pos: 3.5,54.5 parent: 2 type: Transform - - uid: 1644 + - uid: 1653 components: - pos: 3.5,55.5 parent: 2 type: Transform - - uid: 1645 + - uid: 1654 components: - pos: 22.5,48.5 parent: 2 type: Transform - - uid: 1646 + - uid: 1655 components: - pos: 75.5,-60.5 parent: 2 type: Transform - - uid: 1647 + - uid: 1656 components: - pos: 76.5,-59.5 parent: 2 type: Transform - - uid: 1648 + - uid: 1657 components: - pos: 4.5,53.5 parent: 2 type: Transform - - uid: 1649 + - uid: 1658 components: - pos: 10.5,42.5 parent: 2 type: Transform - - uid: 1650 + - uid: 1659 components: - pos: 7.5,42.5 parent: 2 type: Transform - - uid: 1651 + - uid: 1660 components: - pos: 10.5,43.5 parent: 2 type: Transform - - uid: 1652 + - uid: 1661 components: - pos: 7.5,43.5 parent: 2 type: Transform - - uid: 1653 + - uid: 1662 components: - pos: 6.5,42.5 parent: 2 type: Transform - - uid: 1654 + - uid: 1663 components: - pos: 8.5,44.5 parent: 2 type: Transform - - uid: 1655 + - uid: 1664 components: - pos: 13.5,43.5 parent: 2 type: Transform - - uid: 1656 + - uid: 1665 components: - pos: 9.5,44.5 parent: 2 type: Transform - - uid: 1657 + - uid: 1666 components: - pos: 12.5,43.5 parent: 2 type: Transform - - uid: 1658 + - uid: 1667 components: - pos: 13.5,42.5 parent: 2 type: Transform - - uid: 1659 + - uid: 1668 components: - pos: 65.5,45.5 parent: 2 type: Transform - - uid: 1660 + - uid: 1669 components: - pos: 11.5,44.5 parent: 2 type: Transform - - uid: 1661 + - uid: 1670 components: - pos: 10.5,45.5 parent: 2 type: Transform - - uid: 1662 + - uid: 1671 components: - pos: 11.5,45.5 parent: 2 type: Transform - - uid: 1663 + - uid: 1672 components: - pos: 10.5,44.5 parent: 2 type: Transform - - uid: 1664 + - uid: 1673 components: - pos: 12.5,44.5 parent: 2 type: Transform - - uid: 1665 + - uid: 1674 components: - pos: 67.5,-73.5 parent: 2 type: Transform - - uid: 1666 + - uid: 1675 components: - pos: -38.5,55.5 parent: 2 type: Transform - - uid: 1667 + - uid: 1676 components: - pos: -47.5,58.5 parent: 2 type: Transform + - uid: 1677 + components: + - pos: 5.5,52.5 + parent: 2 + type: Transform - proto: AtmosDeviceFanTiny entities: - - uid: 1668 + - uid: 1678 components: - pos: 45.5,-89.5 parent: 2 type: Transform - - uid: 1669 + - uid: 1679 components: - pos: 33.5,-82.5 parent: 2 type: Transform - - uid: 1670 + - uid: 1680 components: - pos: 33.5,-89.5 parent: 2 type: Transform - - uid: 1671 + - uid: 1681 components: - pos: 0.5,10.5 parent: 2 type: Transform - - uid: 1672 + - uid: 1682 components: - pos: 79.5,-36.5 parent: 2 type: Transform - - uid: 1673 + - uid: 1683 components: - pos: 69.5,-3.5 parent: 2 type: Transform - - uid: 1674 + - uid: 1684 components: - rot: 3.141592653589793 rad pos: 48.5,-95.5 parent: 2 type: Transform - - uid: 1675 + - uid: 1685 components: - rot: -1.5707963267948966 rad pos: -53.5,20.5 parent: 2 type: Transform - - uid: 1676 + - uid: 1686 components: - rot: -1.5707963267948966 rad pos: -53.5,22.5 parent: 2 type: Transform - - uid: 1677 + - uid: 1687 components: - pos: -52.5,30.5 parent: 2 type: Transform - - uid: 1678 + - uid: 1688 components: - pos: -52.5,34.5 parent: 2 type: Transform - - uid: 1679 + - uid: 1689 components: - pos: 79.5,-37.5 parent: 2 type: Transform - - uid: 1680 + - uid: 1690 components: - pos: 79.5,-34.5 parent: 2 type: Transform - - uid: 1681 + - uid: 1691 components: - pos: 79.5,-33.5 parent: 2 type: Transform - - uid: 1682 + - uid: 1692 components: - pos: 69.5,-5.5 parent: 2 type: Transform - - uid: 1683 + - uid: 1693 components: - pos: 69.5,-11.5 parent: 2 type: Transform - - uid: 1684 + - uid: 1694 components: - pos: 69.5,-13.5 parent: 2 type: Transform - - uid: 1685 + - uid: 1695 components: - pos: -1.5,14.5 parent: 2 type: Transform - - uid: 1686 + - uid: 1696 components: - rot: 3.141592653589793 rad pos: 30.5,-95.5 parent: 2 type: Transform - - uid: 1687 + - uid: 1697 components: - pos: -17.5,70.5 parent: 2 type: Transform - - uid: 1688 + - uid: 1698 components: - pos: -12.5,75.5 parent: 2 type: Transform - - uid: 1689 + - uid: 1699 components: - pos: -13.5,75.5 parent: 2 type: Transform - - uid: 1690 + - uid: 1700 components: - pos: -21.5,75.5 parent: 2 type: Transform - - uid: 1691 + - uid: 1701 components: - pos: -22.5,75.5 parent: 2 type: Transform - - uid: 1692 + - uid: 1702 components: - pos: -52.5,33.5 parent: 2 type: Transform - - uid: 1693 + - uid: 1703 components: - pos: -52.5,31.5 parent: 2 type: Transform - - uid: 1694 + - uid: 1704 components: - pos: 45.5,-82.5 parent: 2 type: Transform - - uid: 1695 + - uid: 1705 components: - pos: 52.5,-82.5 parent: 2 type: Transform - - uid: 1696 + - uid: 1706 components: - pos: 52.5,-89.5 parent: 2 type: Transform - - uid: 1697 + - uid: 1707 components: - rot: -1.5707963267948966 rad pos: 67.5,-15.5 @@ -20255,912 +20374,912 @@ entities: type: Transform - proto: AtmosFixBlockerMarker entities: - - uid: 1698 + - uid: 1708 components: - pos: 51.5,-60.5 parent: 2 type: Transform - - uid: 1699 + - uid: 1709 components: - pos: 50.5,-60.5 parent: 2 type: Transform - - uid: 1700 + - uid: 1710 components: - pos: 49.5,-60.5 parent: 2 type: Transform - - uid: 1701 + - uid: 1711 components: - pos: 48.5,-60.5 parent: 2 type: Transform - - uid: 1702 + - uid: 1712 components: - pos: 48.5,-61.5 parent: 2 type: Transform - - uid: 1703 + - uid: 1713 components: - pos: 49.5,-61.5 parent: 2 type: Transform - - uid: 1704 + - uid: 1714 components: - pos: 50.5,-61.5 parent: 2 type: Transform - - uid: 1705 + - uid: 1715 components: - pos: 51.5,-61.5 parent: 2 type: Transform - - uid: 1706 + - uid: 1716 components: - pos: -44.5,-34.5 parent: 2 type: Transform - - uid: 1707 + - uid: 1717 components: - pos: -44.5,-35.5 parent: 2 type: Transform - - uid: 1708 + - uid: 1718 components: - pos: -43.5,-34.5 parent: 2 type: Transform - - uid: 1709 + - uid: 1719 components: - pos: -43.5,-35.5 parent: 2 type: Transform - - uid: 1710 + - uid: 1720 components: - pos: -42.5,-34.5 parent: 2 type: Transform - - uid: 1711 + - uid: 1721 components: - pos: -42.5,-35.5 parent: 2 type: Transform - - uid: 1712 + - uid: 1722 components: - pos: -42.5,-36.5 parent: 2 type: Transform - - uid: 1713 + - uid: 1723 components: - pos: -48.5,-50.5 parent: 2 type: Transform - - uid: 1714 + - uid: 1724 components: - pos: -49.5,-50.5 parent: 2 type: Transform - - uid: 1715 + - uid: 1725 components: - pos: -50.5,-50.5 parent: 2 type: Transform - - uid: 1716 + - uid: 1726 components: - pos: -48.5,-48.5 parent: 2 type: Transform - - uid: 1717 + - uid: 1727 components: - pos: -49.5,-48.5 parent: 2 type: Transform - - uid: 1718 + - uid: 1728 components: - pos: -50.5,-48.5 parent: 2 type: Transform - - uid: 1719 + - uid: 1729 components: - pos: -48.5,-44.5 parent: 2 type: Transform - - uid: 1720 + - uid: 1730 components: - pos: -49.5,-44.5 parent: 2 type: Transform - - uid: 1721 + - uid: 1731 components: - pos: -50.5,-44.5 parent: 2 type: Transform - - uid: 1722 + - uid: 1732 components: - pos: -48.5,-42.5 parent: 2 type: Transform - - uid: 1723 + - uid: 1733 components: - pos: -49.5,-42.5 parent: 2 type: Transform - - uid: 1724 + - uid: 1734 components: - pos: -50.5,-42.5 parent: 2 type: Transform - - uid: 1725 + - uid: 1735 components: - pos: -43.5,-36.5 parent: 2 type: Transform - - uid: 1726 + - uid: 1736 components: - pos: -44.5,-36.5 parent: 2 type: Transform - - uid: 1727 + - uid: 1737 components: - pos: -77.5,-40.5 parent: 2 type: Transform - - uid: 1728 + - uid: 1738 components: - pos: -76.5,-40.5 parent: 2 type: Transform - - uid: 1729 + - uid: 1739 components: - pos: -75.5,-40.5 parent: 2 type: Transform - - uid: 1730 + - uid: 1740 components: - pos: -75.5,-41.5 parent: 2 type: Transform - - uid: 1731 + - uid: 1741 components: - pos: -76.5,-41.5 parent: 2 type: Transform - - uid: 1732 + - uid: 1742 components: - pos: -77.5,-41.5 parent: 2 type: Transform - - uid: 1733 + - uid: 1743 components: - pos: -77.5,-42.5 parent: 2 type: Transform - - uid: 1734 + - uid: 1744 components: - pos: -76.5,-42.5 parent: 2 type: Transform - - uid: 1735 + - uid: 1745 components: - pos: -75.5,-42.5 parent: 2 type: Transform - proto: AtmosFixFreezerMarker entities: - - uid: 1736 + - uid: 1746 components: - pos: 0.5,13.5 parent: 2 type: Transform - - uid: 1737 + - uid: 1747 components: - pos: 1.5,13.5 parent: 2 type: Transform - - uid: 1738 + - uid: 1748 components: - pos: 1.5,14.5 parent: 2 type: Transform - - uid: 1739 + - uid: 1749 components: - pos: 2.5,13.5 parent: 2 type: Transform - - uid: 1740 + - uid: 1750 components: - pos: 0.5,14.5 parent: 2 type: Transform - - uid: 1741 + - uid: 1751 components: - pos: -0.5,14.5 parent: 2 type: Transform - - uid: 1742 + - uid: 1752 components: - pos: 2.5,14.5 parent: 2 type: Transform - - uid: 1743 + - uid: 1753 components: - pos: -0.5,12.5 parent: 2 type: Transform - - uid: 1744 + - uid: 1754 components: - pos: -0.5,11.5 parent: 2 type: Transform - - uid: 1745 + - uid: 1755 components: - pos: 0.5,12.5 parent: 2 type: Transform - - uid: 1746 + - uid: 1756 components: - pos: 0.5,11.5 parent: 2 type: Transform - - uid: 1747 + - uid: 1757 components: - pos: 1.5,12.5 parent: 2 type: Transform - - uid: 1748 + - uid: 1758 components: - pos: 1.5,11.5 parent: 2 type: Transform - - uid: 1749 + - uid: 1759 components: - pos: 2.5,12.5 parent: 2 type: Transform - - uid: 1750 + - uid: 1760 components: - pos: 2.5,11.5 parent: 2 type: Transform - - uid: 1751 + - uid: 1761 components: - pos: -0.5,13.5 parent: 2 type: Transform - - uid: 1752 + - uid: 1762 components: - pos: -5.5,73.5 parent: 2 type: Transform - - uid: 1753 + - uid: 1763 components: - pos: -5.5,72.5 parent: 2 type: Transform - - uid: 1754 + - uid: 1764 components: - pos: -5.5,71.5 parent: 2 type: Transform - - uid: 1755 + - uid: 1765 components: - pos: -5.5,70.5 parent: 2 type: Transform - - uid: 1756 + - uid: 1766 components: - pos: -5.5,69.5 parent: 2 type: Transform - - uid: 1757 + - uid: 1767 components: - pos: -5.5,68.5 parent: 2 type: Transform - - uid: 1758 + - uid: 1768 components: - pos: -5.5,67.5 parent: 2 type: Transform - - uid: 1759 + - uid: 1769 components: - pos: -5.5,66.5 parent: 2 type: Transform - - uid: 1760 + - uid: 1770 components: - pos: -4.5,73.5 parent: 2 type: Transform - - uid: 1761 + - uid: 1771 components: - pos: -4.5,72.5 parent: 2 type: Transform - - uid: 1762 + - uid: 1772 components: - pos: -4.5,71.5 parent: 2 type: Transform - - uid: 1763 + - uid: 1773 components: - pos: -4.5,70.5 parent: 2 type: Transform - - uid: 1764 + - uid: 1774 components: - pos: -4.5,69.5 parent: 2 type: Transform - - uid: 1765 + - uid: 1775 components: - pos: -4.5,68.5 parent: 2 type: Transform - - uid: 1766 + - uid: 1776 components: - pos: -4.5,67.5 parent: 2 type: Transform - - uid: 1767 + - uid: 1777 components: - pos: -4.5,66.5 parent: 2 type: Transform - - uid: 1768 + - uid: 1778 components: - pos: -3.5,73.5 parent: 2 type: Transform - - uid: 1769 + - uid: 1779 components: - pos: -3.5,72.5 parent: 2 type: Transform - - uid: 1770 + - uid: 1780 components: - pos: -3.5,71.5 parent: 2 type: Transform - - uid: 1771 + - uid: 1781 components: - pos: -3.5,70.5 parent: 2 type: Transform - - uid: 1772 + - uid: 1782 components: - pos: -3.5,69.5 parent: 2 type: Transform - - uid: 1773 + - uid: 1783 components: - pos: -3.5,68.5 parent: 2 type: Transform - - uid: 1774 + - uid: 1784 components: - pos: -3.5,67.5 parent: 2 type: Transform - - uid: 1775 + - uid: 1785 components: - pos: -3.5,66.5 parent: 2 type: Transform - - uid: 1776 + - uid: 1786 components: - pos: -2.5,73.5 parent: 2 type: Transform - - uid: 1777 + - uid: 1787 components: - pos: -2.5,72.5 parent: 2 type: Transform - - uid: 1778 + - uid: 1788 components: - pos: -2.5,71.5 parent: 2 type: Transform - - uid: 1779 + - uid: 1789 components: - pos: -2.5,70.5 parent: 2 type: Transform - - uid: 1780 + - uid: 1790 components: - pos: -2.5,69.5 parent: 2 type: Transform - - uid: 1781 + - uid: 1791 components: - pos: -2.5,68.5 parent: 2 type: Transform - - uid: 1782 + - uid: 1792 components: - pos: -2.5,67.5 parent: 2 type: Transform - - uid: 1783 + - uid: 1793 components: - pos: -2.5,66.5 parent: 2 type: Transform - - uid: 1784 + - uid: 1794 components: - pos: -6.5,72.5 parent: 2 type: Transform - - uid: 1785 + - uid: 1795 components: - pos: -6.5,71.5 parent: 2 type: Transform - - uid: 1786 + - uid: 1796 components: - pos: -6.5,70.5 parent: 2 type: Transform - - uid: 1787 + - uid: 1797 components: - pos: -6.5,69.5 parent: 2 type: Transform - - uid: 1788 + - uid: 1798 components: - pos: -6.5,68.5 parent: 2 type: Transform - - uid: 1789 + - uid: 1799 components: - pos: -6.5,67.5 parent: 2 type: Transform - - uid: 1790 + - uid: 1800 components: - pos: -6.5,66.5 parent: 2 type: Transform - - uid: 1791 + - uid: 1801 components: - pos: -7.5,71.5 parent: 2 type: Transform - - uid: 1792 + - uid: 1802 components: - pos: -7.5,70.5 parent: 2 type: Transform - - uid: 1793 + - uid: 1803 components: - pos: -7.5,69.5 parent: 2 type: Transform - - uid: 1794 + - uid: 1804 components: - pos: -7.5,68.5 parent: 2 type: Transform - - uid: 1795 + - uid: 1805 components: - pos: -7.5,67.5 parent: 2 type: Transform - - uid: 1796 + - uid: 1806 components: - pos: -1.5,72.5 parent: 2 type: Transform - - uid: 1797 + - uid: 1807 components: - pos: -1.5,71.5 parent: 2 type: Transform - - uid: 1798 + - uid: 1808 components: - pos: -0.5,72.5 parent: 2 type: Transform - - uid: 1799 + - uid: 1809 components: - pos: -0.5,71.5 parent: 2 type: Transform - - uid: 1800 + - uid: 1810 components: - pos: 0.5,72.5 parent: 2 type: Transform - - uid: 1801 + - uid: 1811 components: - pos: 0.5,71.5 parent: 2 type: Transform - - uid: 1802 + - uid: 1812 components: - pos: 1.5,72.5 parent: 2 type: Transform - - uid: 1803 + - uid: 1813 components: - pos: 1.5,71.5 parent: 2 type: Transform - - uid: 1804 + - uid: 1814 components: - pos: 2.5,72.5 parent: 2 type: Transform - - uid: 1805 + - uid: 1815 components: - pos: 2.5,71.5 parent: 2 type: Transform - - uid: 1806 + - uid: 1816 components: - pos: 3.5,72.5 parent: 2 type: Transform - - uid: 1807 + - uid: 1817 components: - pos: 3.5,71.5 parent: 2 type: Transform - - uid: 1808 + - uid: 1818 components: - pos: -0.5,73.5 parent: 2 type: Transform - - uid: 1809 + - uid: 1819 components: - pos: 0.5,73.5 parent: 2 type: Transform - - uid: 1810 + - uid: 1820 components: - pos: 1.5,73.5 parent: 2 type: Transform - - uid: 1811 + - uid: 1821 components: - pos: 2.5,73.5 parent: 2 type: Transform - - uid: 1812 + - uid: 1822 components: - pos: 4.5,71.5 parent: 2 type: Transform - - uid: 1813 + - uid: 1823 components: - pos: 4.5,70.5 parent: 2 type: Transform - - uid: 1814 + - uid: 1824 components: - pos: 4.5,69.5 parent: 2 type: Transform - - uid: 1815 + - uid: 1825 components: - pos: 4.5,68.5 parent: 2 type: Transform - - uid: 1816 + - uid: 1826 components: - pos: 4.5,67.5 parent: 2 type: Transform - - uid: 1817 + - uid: 1827 components: - pos: 2.5,70.5 parent: 2 type: Transform - - uid: 1818 + - uid: 1828 components: - pos: 2.5,69.5 parent: 2 type: Transform - - uid: 1819 + - uid: 1829 components: - pos: 2.5,68.5 parent: 2 type: Transform - - uid: 1820 + - uid: 1830 components: - pos: 2.5,67.5 parent: 2 type: Transform - - uid: 1821 + - uid: 1831 components: - pos: 2.5,66.5 parent: 2 type: Transform - - uid: 1822 + - uid: 1832 components: - pos: 3.5,70.5 parent: 2 type: Transform - - uid: 1823 + - uid: 1833 components: - pos: 3.5,69.5 parent: 2 type: Transform - - uid: 1824 + - uid: 1834 components: - pos: 3.5,68.5 parent: 2 type: Transform - - uid: 1825 + - uid: 1835 components: - pos: 3.5,67.5 parent: 2 type: Transform - - uid: 1826 + - uid: 1836 components: - pos: 3.5,66.5 parent: 2 type: Transform - - uid: 1827 + - uid: 1837 components: - pos: 0.5,70.5 parent: 2 type: Transform - - uid: 1828 + - uid: 1838 components: - pos: 0.5,69.5 parent: 2 type: Transform - - uid: 1829 + - uid: 1839 components: - pos: 0.5,68.5 parent: 2 type: Transform - - uid: 1830 + - uid: 1840 components: - pos: 0.5,67.5 parent: 2 type: Transform - - uid: 1831 + - uid: 1841 components: - pos: 0.5,66.5 parent: 2 type: Transform - - uid: 1832 + - uid: 1842 components: - pos: 0.5,65.5 parent: 2 type: Transform - - uid: 1833 + - uid: 1843 components: - pos: 1.5,70.5 parent: 2 type: Transform - - uid: 1834 + - uid: 1844 components: - pos: 1.5,69.5 parent: 2 type: Transform - - uid: 1835 + - uid: 1845 components: - pos: 1.5,68.5 parent: 2 type: Transform - - uid: 1836 + - uid: 1846 components: - pos: 1.5,67.5 parent: 2 type: Transform - - uid: 1837 + - uid: 1847 components: - pos: 1.5,66.5 parent: 2 type: Transform - - uid: 1838 + - uid: 1848 components: - pos: 1.5,65.5 parent: 2 type: Transform - - uid: 1839 + - uid: 1849 components: - pos: -1.5,70.5 parent: 2 type: Transform - - uid: 1840 + - uid: 1850 components: - pos: -1.5,69.5 parent: 2 type: Transform - - uid: 1841 + - uid: 1851 components: - pos: -1.5,68.5 parent: 2 type: Transform - - uid: 1842 + - uid: 1852 components: - pos: -1.5,67.5 parent: 2 type: Transform - - uid: 1843 + - uid: 1853 components: - pos: -1.5,66.5 parent: 2 type: Transform - - uid: 1844 + - uid: 1854 components: - pos: -1.5,65.5 parent: 2 type: Transform - - uid: 1845 + - uid: 1855 components: - pos: -0.5,70.5 parent: 2 type: Transform - - uid: 1846 + - uid: 1856 components: - pos: -0.5,69.5 parent: 2 type: Transform - - uid: 1847 + - uid: 1857 components: - pos: -0.5,68.5 parent: 2 type: Transform - - uid: 1848 + - uid: 1858 components: - pos: -0.5,67.5 parent: 2 type: Transform - - uid: 1849 + - uid: 1859 components: - pos: -0.5,66.5 parent: 2 type: Transform - - uid: 1850 + - uid: 1860 components: - pos: -0.5,65.5 parent: 2 type: Transform - - uid: 1851 + - uid: 1861 components: - pos: -2.5,65.5 parent: 2 type: Transform - - uid: 1852 + - uid: 1862 components: - pos: -3.5,65.5 parent: 2 type: Transform - - uid: 1853 + - uid: 1863 components: - pos: -4.5,65.5 parent: 2 type: Transform - - uid: 1854 + - uid: 1864 components: - pos: 53.5,-47.5 parent: 2 type: Transform - - uid: 1855 + - uid: 1865 components: - pos: 53.5,-48.5 parent: 2 type: Transform - - uid: 1856 + - uid: 1866 components: - pos: 54.5,-47.5 parent: 2 type: Transform - - uid: 1857 + - uid: 1867 components: - pos: 54.5,-48.5 parent: 2 type: Transform - - uid: 1858 + - uid: 1868 components: - pos: 55.5,-47.5 parent: 2 type: Transform - - uid: 1859 + - uid: 1869 components: - pos: 55.5,-48.5 parent: 2 type: Transform - - uid: 1860 + - uid: 1870 components: - pos: 56.5,-47.5 parent: 2 type: Transform - - uid: 1861 + - uid: 1871 components: - pos: 56.5,-48.5 parent: 2 type: Transform - - uid: 1862 + - uid: 1872 components: - pos: 57.5,-47.5 parent: 2 type: Transform - - uid: 1863 + - uid: 1873 components: - pos: 57.5,-48.5 parent: 2 type: Transform - - uid: 1864 + - uid: 1874 components: - pos: 54.5,-49.5 parent: 2 type: Transform - - uid: 1865 + - uid: 1875 components: - pos: 55.5,-49.5 parent: 2 type: Transform - - uid: 1866 + - uid: 1876 components: - pos: 56.5,-49.5 parent: 2 type: Transform - - uid: 1867 + - uid: 1877 components: - pos: 57.5,-49.5 parent: 2 type: Transform - proto: AtmosFixNitrogenMarker entities: - - uid: 1868 + - uid: 1878 components: - pos: -48.5,-54.5 parent: 2 type: Transform - - uid: 1869 + - uid: 1879 components: - pos: -49.5,-54.5 parent: 2 type: Transform - - uid: 1870 + - uid: 1880 components: - pos: -50.5,-54.5 parent: 2 type: Transform - proto: AtmosFixOxygenMarker entities: - - uid: 1871 + - uid: 1881 components: - pos: -48.5,-52.5 parent: 2 type: Transform - - uid: 1872 + - uid: 1882 components: - pos: -49.5,-52.5 parent: 2 type: Transform - - uid: 1873 + - uid: 1883 components: - pos: -50.5,-52.5 parent: 2 type: Transform - proto: AtmosFixPlasmaMarker entities: - - uid: 1874 + - uid: 1884 components: - pos: -48.5,-46.5 parent: 2 type: Transform - - uid: 1875 + - uid: 1885 components: - pos: -49.5,-46.5 parent: 2 type: Transform - - uid: 1876 + - uid: 1886 components: - pos: -50.5,-46.5 parent: 2 type: Transform - proto: Autolathe entities: - - uid: 1877 + - uid: 1887 components: - pos: 40.5,-35.5 parent: 2 @@ -21172,258 +21291,265 @@ entities: - Glass - Cloth type: MaterialStorage - - uid: 1878 + - uid: 1888 components: - pos: -34.5,19.5 parent: 2 type: Transform - - uid: 1879 + - uid: 1889 components: - pos: -37.5,-9.5 parent: 2 type: Transform - proto: AutolatheMachineCircuitboard entities: - - uid: 21492 + - uid: 1890 components: - pos: -37.452168,-18.414932 parent: 2 type: Transform - proto: BananaPhoneInstrument entities: - - uid: 1885 + - uid: 1891 components: - pos: -19.559175,37.640453 parent: 2 type: Transform +- proto: BananaSeeds + entities: + - uid: 1892 + components: + - pos: 2.4199185,-21.169794 + parent: 2 + type: Transform - proto: BananiumOre1 entities: - - uid: 1886 + - uid: 1893 components: - pos: -44.56904,61.76841 parent: 2 type: Transform - - uid: 1887 + - uid: 1894 components: - pos: -45.38154,60.565285 parent: 2 type: Transform - - uid: 1888 + - uid: 1895 components: - pos: -44.647163,61.39341 parent: 2 type: Transform - proto: BannerCargo entities: - - uid: 1889 + - uid: 1896 components: - pos: -25.5,24.5 parent: 2 type: Transform - - uid: 1890 + - uid: 1897 components: - pos: -25.5,17.5 parent: 2 type: Transform - proto: BannerEngineering entities: - - uid: 1891 + - uid: 1898 components: - pos: -25.5,-8.5 parent: 2 type: Transform - - uid: 1892 + - uid: 1899 components: - pos: -23.5,-17.5 parent: 2 type: Transform - proto: BannerMedical entities: - - uid: 1893 + - uid: 1900 components: - pos: 1.5,-43.5 parent: 2 type: Transform - - uid: 1894 + - uid: 1901 components: - pos: -10.5,-43.5 parent: 2 type: Transform - proto: BannerNanotrasen entities: - - uid: 1895 + - uid: 1902 components: - pos: 28.5,-16.5 parent: 2 type: Transform - - uid: 1896 + - uid: 1903 components: - pos: 22.5,-16.5 parent: 2 type: Transform - proto: BannerRevolution entities: - - uid: 1897 + - uid: 1904 components: - pos: 0.5,-73.5 parent: 2 type: Transform - - uid: 1898 + - uid: 1905 components: - pos: -47.5,-72.5 parent: 2 type: Transform - - uid: 1899 + - uid: 1906 components: - pos: -36.5,-72.5 parent: 2 type: Transform - - uid: 1900 + - uid: 1907 components: - pos: -46.5,-84.5 parent: 2 type: Transform - - uid: 1901 + - uid: 1908 components: - pos: -37.5,-84.5 parent: 2 type: Transform - - uid: 1902 + - uid: 1909 components: - pos: 55.5,58.5 parent: 2 type: Transform - - uid: 1903 + - uid: 1910 components: - pos: 53.5,58.5 parent: 2 type: Transform - - uid: 1904 + - uid: 1911 components: - pos: 62.5,-69.5 parent: 2 type: Transform - - uid: 1905 + - uid: 1912 components: - pos: 60.5,-69.5 parent: 2 type: Transform - proto: BannerScience entities: - - uid: 1906 + - uid: 1913 components: - pos: 48.5,-40.5 parent: 2 type: Transform - - uid: 1907 + - uid: 1914 components: - pos: 48.5,-44.5 parent: 2 type: Transform - - uid: 1908 + - uid: 1915 components: - pos: 59.5,-49.5 parent: 2 type: Transform - - uid: 1909 + - uid: 1916 components: - pos: 65.5,-49.5 parent: 2 type: Transform - proto: BannerSecurity entities: - - uid: 1910 + - uid: 1917 components: - pos: 21.5,18.5 parent: 2 type: Transform - - uid: 1911 + - uid: 1918 components: - pos: 27.5,8.5 parent: 2 type: Transform - - uid: 1912 + - uid: 1919 components: - pos: 23.5,8.5 parent: 2 type: Transform - proto: Barricade entities: - - uid: 1913 + - uid: 1920 components: - rot: -1.5707963267948966 rad pos: -26.5,-64.5 parent: 2 type: Transform - - uid: 1914 + - uid: 1921 components: - pos: -3.5,-75.5 parent: 2 type: Transform - - uid: 1915 + - uid: 1922 components: - pos: 42.5,-9.5 parent: 2 type: Transform - - uid: 1916 + - uid: 1923 components: - pos: 44.5,-9.5 parent: 2 type: Transform - - uid: 1917 + - uid: 1924 components: - pos: 48.5,-12.5 parent: 2 type: Transform - - uid: 1918 + - uid: 1925 components: - rot: 3.141592653589793 rad pos: -35.5,-23.5 parent: 2 type: Transform - - uid: 1919 + - uid: 1926 components: - rot: 1.5707963267948966 rad pos: -48.5,-66.5 parent: 2 type: Transform - - uid: 1920 + - uid: 1927 components: - rot: 1.5707963267948966 rad pos: -44.5,-66.5 parent: 2 type: Transform - - uid: 1921 + - uid: 1928 components: - rot: 1.5707963267948966 rad pos: -45.5,-67.5 parent: 2 type: Transform - - uid: 1924 + - uid: 1929 components: - rot: 3.141592653589793 rad pos: 20.5,-49.5 parent: 2 type: Transform - - uid: 1925 + - uid: 1930 components: - rot: 3.141592653589793 rad pos: 67.5,-61.5 parent: 2 type: Transform - - uid: 1926 + - uid: 1931 components: - pos: 67.5,-63.5 parent: 2 type: Transform - - uid: 1936 + - uid: 1932 components: - pos: -39.5,-21.5 parent: 2 type: Transform - proto: BarSign entities: - - uid: 1927 + - uid: 1933 components: - desc: Recently relicensed after a long closure. name: The Emergency Rum Party @@ -21433,7 +21559,7 @@ entities: type: Transform - current: EmergencyRumParty type: BarSign - - uid: 1928 + - uid: 1934 components: - desc: A very controversial bar known for its wide variety of constantly-changing drinks. name: The Coderbus @@ -21443,214 +21569,224 @@ entities: type: Transform - current: TheCoderbus type: BarSign - - uid: 1929 + - uid: 1935 components: - pos: 33.5,48.5 parent: 2 type: Transform - proto: Basketball entities: - - uid: 1930 + - uid: 1936 components: - pos: 59.373314,-2.3464775 parent: 2 type: Transform - - uid: 1931 + - uid: 1937 components: - pos: -49.590145,-63.44321 parent: 2 type: Transform - proto: Beaker entities: - - uid: 1932 + - uid: 1938 components: - pos: -25.200409,-78.7421 parent: 2 type: Transform - - uid: 1933 + - uid: 1939 components: - pos: 54.768433,18.769468 parent: 2 type: Transform - - uid: 1934 + - uid: 1940 components: - pos: 54.659058,18.535093 parent: 2 type: Transform - proto: Bed entities: - - uid: 1937 + - uid: 1941 components: - pos: 36.5,7.5 parent: 2 type: Transform - - uid: 1938 + - uid: 1942 components: - pos: 36.5,4.5 parent: 2 type: Transform - - uid: 1939 + - uid: 1943 components: - pos: 8.5,22.5 parent: 2 type: Transform - - uid: 1941 + - uid: 1944 components: - pos: 29.5,10.5 parent: 2 type: Transform - - uid: 1942 + - uid: 1945 components: - pos: 32.5,10.5 parent: 2 type: Transform - - uid: 1943 + - uid: 1946 components: - pos: 35.5,10.5 parent: 2 type: Transform - - uid: 1944 + - uid: 1947 components: - pos: -26.5,43.5 parent: 2 type: Transform - - uid: 1945 + - uid: 1948 components: - pos: -7.5,-4.5 parent: 2 type: Transform - - uid: 1946 + - uid: 1949 components: - pos: -15.5,-39.5 parent: 2 type: Transform - - uid: 1947 + - uid: 1950 components: - pos: 55.5,24.5 parent: 2 type: Transform - - uid: 1948 + - uid: 1951 components: - pos: 52.5,24.5 parent: 2 type: Transform - - uid: 1949 + - uid: 1952 components: - pos: 49.5,24.5 parent: 2 type: Transform - - uid: 1950 + - uid: 1953 components: - pos: 46.5,24.5 parent: 2 type: Transform - - uid: 1951 + - uid: 1954 components: - pos: 58.5,24.5 parent: 2 type: Transform - - uid: 1952 + - uid: 1955 components: - pos: 62.5,19.5 parent: 2 type: Transform - - uid: 1953 + - uid: 1956 components: - pos: 62.5,16.5 parent: 2 type: Transform - - uid: 1954 + - uid: 1957 components: - pos: 62.5,-55.5 parent: 2 type: Transform - - uid: 1956 + - uid: 1958 components: - pos: -56.5,-86.5 parent: 2 type: Transform - - uid: 1957 + - uid: 1959 components: - pos: -30.5,31.5 parent: 2 type: Transform - - uid: 1958 + - uid: 1960 components: - pos: 32.5,-29.5 parent: 2 type: Transform - - uid: 1959 + - uid: 1961 components: - pos: -29.5,14.5 parent: 2 type: Transform - - uid: 1960 + - uid: 1962 components: - pos: -42.5,9.5 parent: 2 type: Transform - - uid: 1961 + - uid: 1963 components: - pos: -51.5,6.5 parent: 2 type: Transform - - uid: 1962 + - uid: 1964 components: - pos: -52.5,15.5 parent: 2 type: Transform - - uid: 1963 + - uid: 1965 components: - pos: -23.5,31.5 parent: 2 type: Transform - - uid: 1964 + - uid: 1966 components: - pos: -19.5,33.5 parent: 2 type: Transform - - uid: 1965 + - uid: 1967 components: - pos: -10.5,31.5 parent: 2 type: Transform - - uid: 1966 + - uid: 1968 components: - pos: -19.5,38.5 parent: 2 type: Transform - - uid: 1967 + - uid: 1969 components: - pos: 48.5,-11.5 parent: 2 type: Transform - - uid: 3024 + - uid: 1970 components: - pos: -34.5,-20.5 parent: 2 type: Transform - - uid: 10124 + - uid: 1971 components: - - pos: 4.5,-6.5 + - pos: -0.5,-6.5 + parent: 2 + type: Transform + - uid: 1972 + components: + - pos: -1.5,-19.5 + parent: 2 + type: Transform + - uid: 1973 + components: + - pos: -1.5,-20.5 parent: 2 type: Transform - proto: BedsheetBlack entities: - - uid: 1968 + - uid: 1974 components: - pos: -42.5,9.5 parent: 2 type: Transform - proto: BedsheetCaptain entities: - - uid: 1969 + - uid: 1975 components: - pos: 32.5,-29.5 parent: 2 type: Transform - proto: BedsheetCE entities: - - uid: 21374 + - uid: 1976 components: - rot: -1.5707963267948966 rad pos: -34.5,-20.5 @@ -21658,68 +21794,74 @@ entities: type: Transform - proto: BedsheetClown entities: - - uid: 1972 + - uid: 1977 components: - rot: 3.141592653589793 rad pos: -19.5,38.5 parent: 2 type: Transform + - uid: 1978 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-20.5 + parent: 2 + type: Transform - proto: BedsheetCult entities: - - uid: 1974 + - uid: 1979 components: - pos: -29.5,14.5 parent: 2 type: Transform - proto: BedsheetGreen entities: - - uid: 1975 + - uid: 1980 components: - pos: -51.5,6.5 parent: 2 type: Transform - proto: BedsheetGrey entities: - - uid: 1976 + - uid: 1981 components: - pos: 29.5,10.5 parent: 2 type: Transform - - uid: 1977 + - uid: 1982 components: - pos: 32.5,10.5 parent: 2 type: Transform - - uid: 1978 + - uid: 1983 components: - pos: 35.5,10.5 parent: 2 type: Transform - - uid: 1979 + - uid: 1984 components: - pos: 36.5,7.5 parent: 2 type: Transform - - uid: 1980 + - uid: 1985 components: - pos: 36.5,4.5 parent: 2 type: Transform - - uid: 1981 + - uid: 1986 components: - pos: -52.5,15.5 parent: 2 type: Transform - proto: BedsheetHOP entities: - - uid: 14152 + - uid: 1987 components: - - pos: 4.5,-6.5 + - pos: -0.5,-6.5 parent: 2 type: Transform - proto: BedsheetHOS entities: - - uid: 1983 + - uid: 1988 components: - rot: -1.5707963267948966 rad pos: 8.5,22.5 @@ -21727,111 +21869,117 @@ entities: type: Transform - proto: BedsheetIan entities: - - uid: 1984 + - uid: 1989 components: - pos: 48.5,-11.5 parent: 2 type: Transform - proto: BedsheetMedical entities: - - uid: 1973 + - uid: 1990 components: - pos: -21.5,-54.5 parent: 2 type: Transform - - uid: 1985 + - uid: 1991 components: - rot: -1.5707963267948966 rad pos: -12.5,-57.5 parent: 2 type: Transform - - uid: 1986 + - uid: 1992 components: - rot: -1.5707963267948966 rad pos: -9.5,-57.5 parent: 2 type: Transform - - uid: 1987 + - uid: 1993 components: - rot: -1.5707963267948966 rad pos: -6.5,-57.5 parent: 2 type: Transform - - uid: 1988 + - uid: 1994 components: - rot: -1.5707963267948966 rad pos: -3.5,-57.5 parent: 2 type: Transform - - uid: 1989 + - uid: 1995 components: - rot: -1.5707963267948966 rad pos: -0.5,-57.5 parent: 2 type: Transform - - uid: 1990 + - uid: 1996 components: - rot: 3.141592653589793 rad pos: 6.5,-56.5 parent: 2 type: Transform - - uid: 1991 + - uid: 1997 components: - pos: 44.5,4.5 parent: 2 type: Transform - - uid: 1992 + - uid: 1998 components: - pos: 44.5,5.5 parent: 2 type: Transform - proto: BedsheetMime entities: - - uid: 1994 + - uid: 1999 components: - pos: -26.5,43.5 parent: 2 type: Transform + - uid: 2000 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-19.5 + parent: 2 + type: Transform - proto: BedsheetOrange entities: - - uid: 1995 + - uid: 2001 components: - pos: 58.5,24.5 parent: 2 type: Transform - - uid: 1996 + - uid: 2002 components: - pos: 55.5,24.5 parent: 2 type: Transform - - uid: 1997 + - uid: 2003 components: - pos: 52.5,24.5 parent: 2 type: Transform - - uid: 1998 + - uid: 2004 components: - pos: 49.5,24.5 parent: 2 type: Transform - - uid: 1999 + - uid: 2005 components: - pos: 46.5,24.5 parent: 2 type: Transform - - uid: 2000 + - uid: 2006 components: - pos: 62.5,19.5 parent: 2 type: Transform - - uid: 2001 + - uid: 2007 components: - pos: 62.5,16.5 parent: 2 type: Transform - proto: BedsheetQM entities: - - uid: 2002 + - uid: 2008 components: - rot: 3.141592653589793 rad pos: -30.5,31.5 @@ -21839,135 +21987,137 @@ entities: type: Transform - proto: BedsheetRD entities: - - uid: 2003 + - uid: 2009 components: - pos: 62.5,-55.5 parent: 2 type: Transform - proto: BedsheetSpawner entities: - - uid: 2004 + - uid: 2010 components: - pos: -10.5,31.5 parent: 2 type: Transform - - uid: 2005 + - uid: 2011 components: - pos: -19.5,33.5 parent: 2 type: Transform - proto: BedsheetSyndie entities: - - uid: 2006 + - uid: 2012 components: - pos: -56.5,-86.5 parent: 2 type: Transform - proto: BedsheetUSA entities: - - uid: 2007 + - uid: 2013 components: - pos: -23.5,31.5 parent: 2 type: Transform - proto: Bible entities: - - uid: 2008 + - uid: 2014 components: - pos: -30.453314,15.631503 parent: 2 type: Transform - proto: BigBox entities: - - uid: 2009 + - uid: 2015 components: - pos: 58.475555,34.501217 parent: 2 type: Transform - proto: BikeHorn entities: - - uid: 2010 + - uid: 2016 components: - pos: -22.127623,37.564125 parent: 2 type: Transform +- proto: BikeHornInstrument + entities: + - uid: 2017 + components: + - pos: 2.4660668,-20.657997 + parent: 2 + type: Transform - proto: BiomassReclaimer entities: - - uid: 2012 + - uid: 2018 components: - pos: -5.5,-66.5 parent: 2 type: Transform - proto: BiomassReclaimerMachineCircuitboard entities: - - uid: 2013 + - uid: 2019 components: - pos: -11.687319,37.80377 parent: 2 type: Transform - proto: BlastDoor entities: - - uid: 2014 + - uid: 2020 components: - pos: -78.5,-41.5 parent: 2 type: Transform - links: - - 23805 + - 23883 type: DeviceLinkSink - - uid: 2015 + - uid: 2021 components: - pos: -78.5,-40.5 parent: 2 type: Transform - links: - - 23805 + - 23883 type: DeviceLinkSink - - uid: 2016 + - uid: 2022 components: - pos: -78.5,-42.5 parent: 2 type: Transform - links: - - 23805 + - 23883 type: DeviceLinkSink - - uid: 2017 + - uid: 2023 components: - pos: -74.5,-46.5 parent: 2 type: Transform - links: - - 23804 + - 23882 type: DeviceLinkSink - - uid: 2018 + - uid: 2024 components: - pos: -74.5,-44.5 parent: 2 type: Transform - links: - - 23804 + - 23882 type: DeviceLinkSink - - uid: 2019 + - uid: 2025 components: - pos: -74.5,-45.5 parent: 2 type: Transform - links: - - 23804 + - 23882 type: DeviceLinkSink - - uid: 2973 - components: - - pos: 26.5,-40.5 - parent: 2 - type: Transform -- proto: BlastDoorBridge - entities: - - uid: 2020 +- proto: BlastDoorBridge + entities: + - uid: 2026 components: - pos: 10.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -282330.44 + - SecondsUntilStateChange: -293800.5 state: Closing type: Door - enabled: False @@ -21977,14 +22127,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23783 + - 23863 type: DeviceLinkSink - - uid: 2021 + - uid: 2027 components: - pos: 10.5,49.5 parent: 2 type: Transform - - SecondsUntilStateChange: -282330.44 + - SecondsUntilStateChange: -293800.5 state: Closing type: Door - enabled: False @@ -21994,14 +22144,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23783 + - 23863 type: DeviceLinkSink - - uid: 2022 + - uid: 2028 components: - pos: 10.5,48.5 parent: 2 type: Transform - - SecondsUntilStateChange: -282330.44 + - SecondsUntilStateChange: -293800.5 state: Closing type: Door - enabled: False @@ -22011,16 +22161,16 @@ entities: - airBlocked: False type: Airtight - links: - - 23783 + - 23863 type: DeviceLinkSink - proto: BlastDoorExterior1 entities: - - uid: 2023 + - uid: 2029 components: - pos: 18.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -347759.88 + - SecondsUntilStateChange: -359229.94 state: Closing type: Door - enabled: False @@ -22030,14 +22180,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23758 + - 23839 type: DeviceLinkSink - - uid: 2024 + - uid: 2030 components: - pos: 47.5,-51.5 parent: 2 type: Transform - - SecondsUntilStateChange: -217140.62 + - SecondsUntilStateChange: -228610.77 state: Closing type: Door - enabled: False @@ -22047,14 +22197,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23754 + - 23835 type: DeviceLinkSink - - uid: 2025 + - uid: 2031 components: - pos: 47.5,-52.5 parent: 2 type: Transform - - SecondsUntilStateChange: -217140.62 + - SecondsUntilStateChange: -228610.77 state: Closing type: Door - enabled: False @@ -22064,14 +22214,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23754 + - 23835 type: DeviceLinkSink - - uid: 2026 + - uid: 2032 components: - pos: 47.5,-53.5 parent: 2 type: Transform - - SecondsUntilStateChange: -217140.62 + - SecondsUntilStateChange: -228610.77 state: Closing type: Door - enabled: False @@ -22081,14 +22231,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23754 + - 23835 type: DeviceLinkSink - - uid: 2027 + - uid: 2033 components: - pos: 47.5,-54.5 parent: 2 type: Transform - - SecondsUntilStateChange: -217140.62 + - SecondsUntilStateChange: -228610.77 state: Closing type: Door - enabled: False @@ -22098,14 +22248,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23754 + - 23835 type: DeviceLinkSink - - uid: 2028 + - uid: 2034 components: - pos: 52.5,-58.5 parent: 2 type: Transform - - SecondsUntilStateChange: -217128.3 + - SecondsUntilStateChange: -228598.44 state: Closing type: Door - enabled: False @@ -22115,14 +22265,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23755 + - 23836 type: DeviceLinkSink - - uid: 2029 + - uid: 2035 components: - pos: 50.5,-62.5 parent: 2 type: Transform - - SecondsUntilStateChange: -217130.83 + - SecondsUntilStateChange: -228600.97 state: Closing type: Door - enabled: False @@ -22132,15 +22282,15 @@ entities: - airBlocked: False type: Airtight - links: - - 23789 + - 23869 type: DeviceLinkSink - - uid: 2030 + - uid: 2036 components: - rot: 1.5707963267948966 rad pos: 55.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -217079.11 + - SecondsUntilStateChange: -228549.25 state: Closing type: Door - enabled: False @@ -22150,15 +22300,15 @@ entities: - airBlocked: False type: Airtight - links: - - 23757 + - 23838 type: DeviceLinkSink - - uid: 2031 + - uid: 2037 components: - rot: 1.5707963267948966 rad pos: 54.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -217079.11 + - SecondsUntilStateChange: -228549.25 state: Closing type: Door - enabled: False @@ -22168,14 +22318,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23757 + - 23838 type: DeviceLinkSink - - uid: 2032 + - uid: 2038 components: - pos: -45.5,-34.5 parent: 2 type: Transform - - SecondsUntilStateChange: -472608.3 + - SecondsUntilStateChange: -484078.38 state: Closing type: Door - enabled: False @@ -22185,15 +22335,15 @@ entities: - airBlocked: False type: Airtight - links: - - 23806 + - 23884 type: DeviceLinkSink - - uid: 2033 + - uid: 2039 components: - rot: -1.5707963267948966 rad pos: -40.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -470958.66 + - SecondsUntilStateChange: -482428.72 state: Closing type: Door - enabled: False @@ -22203,15 +22353,15 @@ entities: - airBlocked: False type: Airtight - links: - - 23761 + - 23842 type: DeviceLinkSink - - uid: 2034 + - uid: 2040 components: - rot: -1.5707963267948966 rad pos: -39.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -470958.66 + - SecondsUntilStateChange: -482428.72 state: Closing type: Door - enabled: False @@ -22221,15 +22371,15 @@ entities: - airBlocked: False type: Airtight - links: - - 23761 + - 23842 type: DeviceLinkSink - - uid: 2035 + - uid: 2041 components: - rot: -1.5707963267948966 rad pos: -38.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -470958.66 + - SecondsUntilStateChange: -482428.72 state: Closing type: Door - enabled: False @@ -22239,15 +22389,15 @@ entities: - airBlocked: False type: Airtight - links: - - 23761 + - 23842 type: DeviceLinkSink - - uid: 2036 + - uid: 2042 components: - rot: -1.5707963267948966 rad pos: -37.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -470958.66 + - SecondsUntilStateChange: -482428.72 state: Closing type: Door - enabled: False @@ -22257,14 +22407,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23761 + - 23842 type: DeviceLinkSink - - uid: 2037 + - uid: 2043 components: - pos: -49.5,19.5 parent: 2 type: Transform - - SecondsUntilStateChange: -350923.03 + - SecondsUntilStateChange: -362393.1 state: Closing type: Door - enabled: False @@ -22274,14 +22424,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23763 + - 23844 type: DeviceLinkSink - - uid: 2038 + - uid: 2044 components: - pos: -49.5,23.5 parent: 2 type: Transform - - SecondsUntilStateChange: -350923.03 + - SecondsUntilStateChange: -362393.1 state: Closing type: Door - enabled: False @@ -22291,14 +22441,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23763 + - 23844 type: DeviceLinkSink - - uid: 2039 + - uid: 2045 components: - pos: 51.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -313081.34 + - SecondsUntilStateChange: -324551.4 state: Closing type: Door - enabled: False @@ -22308,16 +22458,16 @@ entities: - airBlocked: False type: Airtight - links: - - 23771 - - 23773 - - 23778 + - 23852 + - 23854 + - 23859 type: DeviceLinkSink - - uid: 2040 + - uid: 2046 components: - pos: 54.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -313081.34 + - SecondsUntilStateChange: -324551.4 state: Closing type: Door - enabled: False @@ -22327,15 +22477,15 @@ entities: - airBlocked: False type: Airtight - links: - - 23769 - - 23771 + - 23850 + - 23852 type: DeviceLinkSink - - uid: 2041 + - uid: 2047 components: - pos: -52.5,34.5 parent: 2 type: Transform - - SecondsUntilStateChange: -145050.06 + - SecondsUntilStateChange: -156520.2 state: Closing type: Door - enabled: False @@ -22345,14 +22495,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23795 + - 23874 type: DeviceLinkSink - - uid: 2042 + - uid: 2048 components: - pos: -52.5,30.5 parent: 2 type: Transform - - SecondsUntilStateChange: -145022.36 + - SecondsUntilStateChange: -156492.5 state: Closing type: Door - enabled: False @@ -22362,14 +22512,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23756 + - 23837 type: DeviceLinkSink - - uid: 2043 + - uid: 2049 components: - pos: -53.5,23.5 parent: 2 type: Transform - - SecondsUntilStateChange: -145091 + - SecondsUntilStateChange: -156561.14 state: Closing type: Door - enabled: False @@ -22379,14 +22529,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23762 + - 23843 type: DeviceLinkSink - - uid: 2044 + - uid: 2050 components: - pos: -53.5,19.5 parent: 2 type: Transform - - SecondsUntilStateChange: -145091 + - SecondsUntilStateChange: -156561.14 state: Closing type: Door - enabled: False @@ -22396,14 +22546,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23762 + - 23843 type: DeviceLinkSink - - uid: 2045 + - uid: 2051 components: - pos: 53.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -311339.22 + - SecondsUntilStateChange: -322809.28 state: Closing type: Door - enabled: False @@ -22413,16 +22563,16 @@ entities: - airBlocked: False type: Airtight - links: - - 23765 - - 23774 - - 23782 + - 23846 + - 23855 + - 23862 type: DeviceLinkSink - - uid: 2046 + - uid: 2052 components: - pos: 55.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -313341.6 + - SecondsUntilStateChange: -324811.66 state: Closing type: Door - enabled: False @@ -22432,15 +22582,15 @@ entities: - airBlocked: False type: Airtight - links: - - 23769 - - 23772 + - 23850 + - 23853 type: DeviceLinkSink - - uid: 2047 + - uid: 2053 components: - pos: 50.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -313081.34 + - SecondsUntilStateChange: -324551.4 state: Closing type: Door - enabled: False @@ -22450,14 +22600,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23767 + - 23848 type: DeviceLinkSink - - uid: 2048 + - uid: 2054 components: - pos: 57.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -313081.34 + - SecondsUntilStateChange: -324551.4 state: Closing type: Door - enabled: False @@ -22467,14 +22617,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23773 + - 23854 type: DeviceLinkSink - - uid: 2049 + - uid: 2055 components: - pos: 56.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -313081.34 + - SecondsUntilStateChange: -324551.4 state: Closing type: Door - enabled: False @@ -22484,19 +22634,19 @@ entities: - airBlocked: False type: Airtight - links: - - 23764 + - 23845 type: DeviceLinkSink - - uid: 2050 + - uid: 2056 components: - pos: 51.5,48.5 parent: 2 type: Transform - - uid: 2051 + - uid: 2057 components: - pos: 53.5,48.5 parent: 2 type: Transform - - SecondsUntilStateChange: -311339.22 + - SecondsUntilStateChange: -322809.28 state: Closing type: Door - enabled: False @@ -22506,24 +22656,24 @@ entities: - airBlocked: False type: Airtight - links: - - 23764 - - 23779 - - 23782 + - 23845 + - 23860 + - 23862 type: DeviceLinkSink - - uid: 2052 + - uid: 2058 components: - pos: 55.5,48.5 parent: 2 type: Transform - links: - - 23779 + - 23860 type: DeviceLinkSink - - uid: 2053 + - uid: 2059 components: - pos: 58.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -313081.34 + - SecondsUntilStateChange: -324551.4 state: Closing type: Door - enabled: False @@ -22533,14 +22683,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23765 + - 23846 type: DeviceLinkSink - - uid: 2054 + - uid: 2060 components: - pos: 52.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -313577 + - SecondsUntilStateChange: -325047.06 state: Closing type: Door - enabled: False @@ -22550,15 +22700,15 @@ entities: - airBlocked: False type: Airtight - links: - - 23768 - - 23777 + - 23849 + - 23858 type: DeviceLinkSink - - uid: 2055 + - uid: 2061 components: - pos: 53.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -311339.22 + - SecondsUntilStateChange: -322809.28 state: Closing type: Door - enabled: False @@ -22568,15 +22718,15 @@ entities: - airBlocked: False type: Airtight - links: - - 23775 - - 23782 + - 23856 + - 23862 type: DeviceLinkSink - - uid: 2056 + - uid: 2062 components: - pos: 55.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -313081.34 + - SecondsUntilStateChange: -324551.4 state: Closing type: Door - enabled: False @@ -22586,15 +22736,15 @@ entities: - airBlocked: False type: Airtight - links: - - 23775 - - 23778 + - 23856 + - 23859 type: DeviceLinkSink - - uid: 2057 + - uid: 2063 components: - pos: 58.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -313081.34 + - SecondsUntilStateChange: -324551.4 state: Closing type: Door - enabled: False @@ -22604,14 +22754,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23776 + - 23857 type: DeviceLinkSink - - uid: 2058 + - uid: 2064 components: - pos: 57.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -313081.34 + - SecondsUntilStateChange: -324551.4 state: Closing type: Door - enabled: False @@ -22621,21 +22771,21 @@ entities: - airBlocked: False type: Airtight - links: - - 23768 - - 23770 - - 23779 + - 23849 + - 23851 + - 23860 type: DeviceLinkSink - - uid: 2059 + - uid: 2065 components: - pos: 57.5,48.5 parent: 2 type: Transform - - uid: 2060 + - uid: 2066 components: - pos: 54.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -313081.34 + - SecondsUntilStateChange: -324551.4 state: Closing type: Door - enabled: False @@ -22645,14 +22795,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23772 + - 23853 type: DeviceLinkSink - - uid: 2061 + - uid: 2067 components: - pos: 52.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -313081.34 + - SecondsUntilStateChange: -324551.4 state: Closing type: Door - enabled: False @@ -22662,14 +22812,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23774 + - 23855 type: DeviceLinkSink - - uid: 2062 + - uid: 2068 components: - pos: 51.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -313081.34 + - SecondsUntilStateChange: -324551.4 state: Closing type: Door - enabled: False @@ -22679,15 +22829,15 @@ entities: - airBlocked: False type: Airtight - links: - - 23778 - - 23779 + - 23859 + - 23860 type: DeviceLinkSink - - uid: 2063 + - uid: 2069 components: - pos: 56.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -313435.7 + - SecondsUntilStateChange: -324905.75 state: Closing type: Door - enabled: False @@ -22697,15 +22847,15 @@ entities: - airBlocked: False type: Airtight - links: - - 23770 - - 23776 + - 23851 + - 23857 type: DeviceLinkSink - - uid: 2064 + - uid: 2070 components: - pos: 50.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -313081.34 + - SecondsUntilStateChange: -324551.4 state: Closing type: Door - enabled: False @@ -22715,15 +22865,15 @@ entities: - airBlocked: False type: Airtight - links: - - 23767 - - 23777 + - 23848 + - 23858 type: DeviceLinkSink - - uid: 2065 + - uid: 2071 components: - pos: -18.5,-96.5 parent: 2 type: Transform - - SecondsUntilStateChange: -259455.55 + - SecondsUntilStateChange: -270925.6 state: Closing type: Door - enabled: False @@ -22733,14 +22883,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23785 + - 23865 type: DeviceLinkSink - - uid: 2066 + - uid: 2072 components: - pos: -18.5,-98.5 parent: 2 type: Transform - - SecondsUntilStateChange: -259455.55 + - SecondsUntilStateChange: -270925.6 state: Closing type: Door - enabled: False @@ -22750,14 +22900,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23785 + - 23865 type: DeviceLinkSink - - uid: 2067 + - uid: 2073 components: - pos: -26.5,-96.5 parent: 2 type: Transform - - SecondsUntilStateChange: -259463.88 + - SecondsUntilStateChange: -270933.94 state: Closing type: Door - enabled: False @@ -22767,14 +22917,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23786 + - 23866 type: DeviceLinkSink - - uid: 2068 + - uid: 2074 components: - pos: -26.5,-98.5 parent: 2 type: Transform - - SecondsUntilStateChange: -259463.88 + - SecondsUntilStateChange: -270933.94 state: Closing type: Door - enabled: False @@ -22784,14 +22934,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23786 + - 23866 type: DeviceLinkSink - - uid: 2069 + - uid: 2075 components: - pos: 67.5,-39.5 parent: 2 type: Transform - - SecondsUntilStateChange: -215237.42 + - SecondsUntilStateChange: -226707.56 state: Closing type: Door - enabled: False @@ -22801,34 +22951,34 @@ entities: - airBlocked: False type: Airtight - links: - - 23753 + - 23834 type: DeviceLinkSink - - uid: 2070 + - uid: 2076 components: - rot: 3.141592653589793 rad pos: 72.5,-27.5 parent: 2 type: Transform - links: - - 23790 + - 23870 type: DeviceLinkSink - - uid: 2071 + - uid: 2077 components: - pos: -45.5,-35.5 parent: 2 type: Transform - links: - - 23806 + - 23884 type: DeviceLinkSink - proto: BlastDoorExterior1Open entities: - - uid: 2072 + - uid: 2078 components: - rot: -1.5707963267948966 rad pos: 24.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -277318.44 + - SecondsUntilStateChange: -288788.5 state: Opening type: Door - enabled: True @@ -22838,15 +22988,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23784 + - 23864 type: DeviceLinkSink - - uid: 2073 + - uid: 2079 components: - rot: -1.5707963267948966 rad pos: 23.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -277318.44 + - SecondsUntilStateChange: -288788.5 state: Opening type: Door - enabled: True @@ -22856,15 +23006,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23784 + - 23864 type: DeviceLinkSink - - uid: 2074 + - uid: 2080 components: - rot: -1.5707963267948966 rad pos: 25.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -277318.44 + - SecondsUntilStateChange: -288788.5 state: Opening type: Door - enabled: True @@ -22874,15 +23024,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23784 + - 23864 type: DeviceLinkSink - - uid: 2075 + - uid: 2081 components: - rot: -1.5707963267948966 rad pos: 26.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -277318.44 + - SecondsUntilStateChange: -288788.5 state: Opening type: Door - enabled: True @@ -22892,15 +23042,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23784 + - 23864 type: DeviceLinkSink - - uid: 2076 + - uid: 2082 components: - rot: -1.5707963267948966 rad pos: 24.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -277318.44 + - SecondsUntilStateChange: -288788.5 state: Opening type: Door - enabled: True @@ -22910,15 +23060,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23784 + - 23864 type: DeviceLinkSink - - uid: 2077 + - uid: 2083 components: - rot: -1.5707963267948966 rad pos: 23.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -277318.44 + - SecondsUntilStateChange: -288788.5 state: Opening type: Door - enabled: True @@ -22928,15 +23078,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23784 + - 23864 type: DeviceLinkSink - - uid: 2078 + - uid: 2084 components: - rot: -1.5707963267948966 rad pos: 25.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -277318.44 + - SecondsUntilStateChange: -288788.5 state: Opening type: Door - enabled: True @@ -22946,15 +23096,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23784 + - 23864 type: DeviceLinkSink - - uid: 2079 + - uid: 2085 components: - rot: -1.5707963267948966 rad pos: 26.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -277318.44 + - SecondsUntilStateChange: -288788.5 state: Opening type: Door - enabled: True @@ -22964,15 +23114,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23784 + - 23864 type: DeviceLinkSink - - uid: 2080 + - uid: 2086 components: - rot: -1.5707963267948966 rad pos: 22.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -277318.44 + - SecondsUntilStateChange: -288788.5 state: Opening type: Door - enabled: True @@ -22982,15 +23132,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23784 + - 23864 type: DeviceLinkSink - - uid: 2081 + - uid: 2087 components: - rot: -1.5707963267948966 rad pos: 22.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -277318.44 + - SecondsUntilStateChange: -288788.5 state: Opening type: Door - enabled: True @@ -23000,14 +23150,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23784 + - 23864 type: DeviceLinkSink - - uid: 2082 + - uid: 2088 components: - pos: -8.5,-91.5 parent: 2 type: Transform - - SecondsUntilStateChange: -261212.53 + - SecondsUntilStateChange: -272682.6 state: Opening type: Door - enabled: True @@ -23017,15 +23167,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23787 - - 23788 + - 23867 + - 23868 type: DeviceLinkSink - - uid: 2083 + - uid: 2089 components: - pos: -8.5,-92.5 parent: 2 type: Transform - - SecondsUntilStateChange: -261212.53 + - SecondsUntilStateChange: -272682.6 state: Opening type: Door - enabled: True @@ -23035,15 +23185,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23787 - - 23788 + - 23867 + - 23868 type: DeviceLinkSink - - uid: 2084 + - uid: 2090 components: - pos: -8.5,-93.5 parent: 2 type: Transform - - SecondsUntilStateChange: -261212.53 + - SecondsUntilStateChange: -272682.6 state: Opening type: Door - enabled: True @@ -23053,15 +23203,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23787 - - 23788 + - 23867 + - 23868 type: DeviceLinkSink - - uid: 2085 + - uid: 2091 components: - pos: -6.5,-91.5 parent: 2 type: Transform - - SecondsUntilStateChange: -261212.53 + - SecondsUntilStateChange: -272682.6 state: Opening type: Door - enabled: True @@ -23071,15 +23221,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23787 - - 23788 + - 23867 + - 23868 type: DeviceLinkSink - - uid: 2086 + - uid: 2092 components: - pos: -6.5,-90.5 parent: 2 type: Transform - - SecondsUntilStateChange: -261212.53 + - SecondsUntilStateChange: -272682.6 state: Opening type: Door - enabled: True @@ -23089,15 +23239,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23787 - - 23788 + - 23867 + - 23868 type: DeviceLinkSink - - uid: 2087 + - uid: 2093 components: - pos: -6.5,-92.5 parent: 2 type: Transform - - SecondsUntilStateChange: -261212.53 + - SecondsUntilStateChange: -272682.6 state: Opening type: Door - enabled: True @@ -23107,15 +23257,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23787 - - 23788 + - 23867 + - 23868 type: DeviceLinkSink - - uid: 2088 + - uid: 2094 components: - pos: -6.5,-93.5 parent: 2 type: Transform - - SecondsUntilStateChange: -261212.53 + - SecondsUntilStateChange: -272682.6 state: Opening type: Door - enabled: True @@ -23125,15 +23275,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23787 - - 23788 + - 23867 + - 23868 type: DeviceLinkSink - - uid: 2089 + - uid: 2095 components: - pos: -8.5,-90.5 parent: 2 type: Transform - - SecondsUntilStateChange: -261212.53 + - SecondsUntilStateChange: -272682.6 state: Opening type: Door - enabled: True @@ -23143,17 +23293,17 @@ entities: - airBlocked: True type: Airtight - links: - - 23787 - - 23788 + - 23867 + - 23868 type: DeviceLinkSink - proto: BlastDoorExterior2 entities: - - uid: 2090 + - uid: 2096 components: - pos: -11.5,-11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -106162.984 + - SecondsUntilStateChange: -117633.12 state: Closing type: Door - enabled: False @@ -23163,16 +23313,16 @@ entities: - airBlocked: False type: Airtight - links: - - 23750 + - 23831 type: DeviceLinkSink - proto: BlastDoorOpen entities: - - uid: 2091 + - uid: 2097 components: - pos: -56.5,-11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -388888.5 + - SecondsUntilStateChange: -400358.56 state: Opening type: Door - enabled: True @@ -23182,14 +23332,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23760 + - 23841 type: DeviceLinkSink - - uid: 2092 + - uid: 2098 components: - pos: -56.5,-12.5 parent: 2 type: Transform - - SecondsUntilStateChange: -388888.5 + - SecondsUntilStateChange: -400358.56 state: Opening type: Door - enabled: True @@ -23199,14 +23349,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23760 + - 23841 type: DeviceLinkSink - - uid: 2093 + - uid: 2099 components: - pos: -56.5,-13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -388888.5 + - SecondsUntilStateChange: -400358.56 state: Opening type: Door - enabled: True @@ -23216,14 +23366,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23760 + - 23841 type: DeviceLinkSink - - uid: 2094 + - uid: 2100 components: - pos: -56.5,-14.5 parent: 2 type: Transform - - SecondsUntilStateChange: -388888.5 + - SecondsUntilStateChange: -400358.56 state: Opening type: Door - enabled: True @@ -23233,14 +23383,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23760 + - 23841 type: DeviceLinkSink - - uid: 2095 + - uid: 2101 components: - pos: -56.5,-15.5 parent: 2 type: Transform - - SecondsUntilStateChange: -388888.5 + - SecondsUntilStateChange: -400358.56 state: Opening type: Door - enabled: True @@ -23250,15 +23400,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23760 + - 23841 type: DeviceLinkSink - - uid: 2096 + - uid: 2102 components: - rot: -1.5707963267948966 rad pos: -64.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -158086.08 + - SecondsUntilStateChange: -169556.22 state: Opening type: Door - enabled: True @@ -23268,15 +23418,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23759 + - 23840 type: DeviceLinkSink - - uid: 2097 + - uid: 2103 components: - rot: -1.5707963267948966 rad pos: -65.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -158086.08 + - SecondsUntilStateChange: -169556.22 state: Opening type: Door - enabled: True @@ -23286,15 +23436,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23759 + - 23840 type: DeviceLinkSink - - uid: 2098 + - uid: 2104 components: - rot: -1.5707963267948966 rad pos: -66.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -158086.08 + - SecondsUntilStateChange: -169556.22 state: Opening type: Door - enabled: True @@ -23304,15 +23454,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23759 + - 23840 type: DeviceLinkSink - - uid: 2099 + - uid: 2105 components: - rot: -1.5707963267948966 rad pos: -67.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -158086.08 + - SecondsUntilStateChange: -169556.22 state: Opening type: Door - enabled: True @@ -23322,15 +23472,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23759 + - 23840 type: DeviceLinkSink - - uid: 2100 + - uid: 2106 components: - rot: -1.5707963267948966 rad pos: -68.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -158086.08 + - SecondsUntilStateChange: -169556.22 state: Opening type: Door - enabled: True @@ -23340,298 +23490,308 @@ entities: - airBlocked: True type: Airtight - links: - - 23759 + - 23840 type: DeviceLinkSink - proto: BlockGameArcadeComputerCircuitboard entities: - - uid: 2101 + - uid: 2107 components: - pos: -25.444056,-24.257809 parent: 2 type: Transform - proto: BookAtmosAirAlarms entities: - - uid: 2102 + - uid: 2108 components: - pos: -24.358501,-36.435444 parent: 2 type: Transform - proto: BookAtmosDistro entities: - - uid: 2103 + - uid: 2109 components: - pos: -24.608501,-36.51357 parent: 2 type: Transform - proto: BookAtmosVentsMore entities: - - uid: 2104 + - uid: 2110 components: - pos: -25.155376,-36.48232 parent: 2 type: Transform - proto: BookAtmosWaste entities: - - uid: 2105 + - uid: 2111 components: - pos: -25.389751,-36.57607 parent: 2 type: Transform - proto: BookChefGaming entities: - - uid: 2106 + - uid: 2112 components: - pos: -8.120271,14.578207 parent: 2 type: Transform - proto: BookDetective entities: - - uid: 2107 + - uid: 2113 components: - pos: 8.262031,-12.4473095 parent: 2 type: Transform - - uid: 2108 + - uid: 2114 components: - pos: 40.304634,21.43983 parent: 2 type: Transform - proto: BookEscalation entities: - - uid: 2109 + - uid: 2115 components: - pos: 9.419705,-6.507422 parent: 2 type: Transform - proto: BookEscalationSecurity entities: - - uid: 2110 + - uid: 2116 components: - pos: 15.607252,21.663286 parent: 2 type: Transform - proto: BookFishing entities: - - uid: 2111 + - uid: 2117 components: - pos: 40.53901,21.517956 parent: 2 type: Transform - proto: BookGnominomicon entities: - - uid: 2112 + - uid: 2118 components: - pos: 8.605781,-12.4316845 parent: 2 type: Transform - proto: BookRandom entities: - - uid: 2113 + - uid: 2119 components: - pos: 40.523384,18.611706 parent: 2 type: Transform - - uid: 2114 + - uid: 2120 components: - pos: 38.492134,18.674206 parent: 2 type: Transform - - uid: 2115 + - uid: 2121 components: - pos: 38.429634,21.580456 parent: 2 type: Transform - - uid: 2116 + - uid: 2122 components: - pos: -33.495968,-67.45002 parent: 2 type: Transform +- proto: Bookshelf + entities: + - uid: 2123 + components: + - pos: 6.5,-9.5 + parent: 2 + type: Transform - proto: BookshelfFilled entities: - - uid: 2117 + - uid: 2124 + components: + - pos: 6.5,-10.5 + parent: 2 + type: Transform + - uid: 2125 components: - pos: 41.5,21.5 parent: 2 type: Transform - - uid: 2118 + - uid: 2126 components: - pos: 39.5,21.5 parent: 2 type: Transform - - uid: 2119 + - uid: 2127 components: - pos: 41.5,18.5 parent: 2 type: Transform - - uid: 2120 + - uid: 2128 components: - pos: 39.5,18.5 parent: 2 type: Transform - - uid: 2121 + - uid: 2129 components: - pos: 12.5,-10.5 parent: 2 type: Transform - - uid: 2122 + - uid: 2130 components: - pos: 8.5,-10.5 parent: 2 type: Transform - - uid: 2123 + - uid: 2131 components: - pos: 11.5,-12.5 parent: 2 type: Transform - - uid: 2124 + - uid: 2132 components: - pos: 12.5,-12.5 parent: 2 type: Transform - - uid: 2125 + - uid: 2133 components: - pos: 13.5,-12.5 parent: 2 type: Transform - - uid: 2126 - components: - - pos: 6.5,-6.5 - parent: 2 - type: Transform - - uid: 2127 + - uid: 2134 components: - pos: 7.5,-4.5 parent: 2 type: Transform - - uid: 2128 - components: - - pos: 6.5,-4.5 - parent: 2 - type: Transform - - uid: 2129 + - uid: 2135 components: - pos: 7.5,-6.5 parent: 2 type: Transform - - uid: 2130 + - uid: 2136 components: - pos: 11.5,-10.5 parent: 2 type: Transform - - uid: 2131 + - uid: 2137 components: - pos: 13.5,-10.5 parent: 2 type: Transform +- proto: BookWatched + entities: + - uid: 2138 + components: + - rot: 1.5707963267948966 rad + pos: 3.4497375,-9.559602 + parent: 2 + type: Transform - proto: BoozeDispenser entities: - - uid: 2132 + - uid: 2139 components: - rot: -1.5707963267948966 rad pos: 18.5,12.5 parent: 2 type: Transform - - uid: 2133 + - uid: 2140 components: - pos: -43.5,-74.5 parent: 2 type: Transform - - uid: 2134 + - uid: 2141 components: - pos: 38.5,51.5 parent: 2 type: Transform - - uid: 12034 + - uid: 2142 components: - - rot: 3.141592653589793 rad - pos: 23.5,-39.5 + - rot: -1.5707963267948966 rad + pos: 29.5,-35.5 parent: 2 type: Transform - proto: BorgCharger entities: - - uid: 2135 + - uid: 2143 components: - pos: 16.5,-3.5 parent: 2 type: Transform - - uid: 2136 + - uid: 2144 components: - pos: -22.5,-6.5 parent: 2 type: Transform - - uid: 2137 + - uid: 2145 components: - pos: 2.5,59.5 parent: 2 type: Transform - - uid: 2138 + - uid: 2146 components: - pos: 49.5,-9.5 parent: 2 type: Transform - - uid: 2139 + - uid: 2147 components: - pos: 70.5,-43.5 parent: 2 type: Transform - proto: BoxBeaker entities: - - uid: 2140 + - uid: 2148 components: - pos: 7.6496778,-46.860195 parent: 2 type: Transform - - uid: 2141 + - uid: 2149 components: - pos: -26.122566,-84.458 parent: 2 type: Transform - - uid: 2142 + - uid: 2150 components: - pos: 42.431667,-35.402893 parent: 2 type: Transform - - uid: 2143 + - uid: 2151 components: - pos: 8.7782135,-62.351368 parent: 2 type: Transform - proto: BoxBeanbag entities: - - uid: 2144 + - uid: 2152 components: - pos: 22.537981,13.588842 parent: 2 type: Transform - proto: BoxBodyBag entities: - - uid: 2145 + - uid: 2153 components: - pos: -11.506837,-67.45136 parent: 2 type: Transform - proto: BoxCardboard entities: - - uid: 2146 + - uid: 2154 components: - pos: 57.684505,34.726276 parent: 2 type: Transform - - uid: 2147 + - uid: 2155 components: - pos: 57.26263,34.39815 parent: 2 type: Transform - proto: BoxFlashbang entities: - - uid: 2148 + - uid: 2156 components: - pos: 12.406765,20.463964 parent: 2 type: Transform - proto: BoxFolderBase entities: - - uid: 2149 + - uid: 2157 components: - rot: 1.5707963267948966 rad pos: 37.60159,-5.001878 @@ -23639,7 +23799,7 @@ entities: type: Transform - proto: BoxFolderBlack entities: - - uid: 2150 + - uid: 2158 components: - rot: 1.5707963267948966 rad pos: 37.617214,-4.673753 @@ -23647,20 +23807,20 @@ entities: type: Transform - proto: BoxFolderBlue entities: - - uid: 2151 + - uid: 2159 components: - pos: 38.992214,-2.4237523 parent: 2 type: Transform - proto: BoxFolderGrey entities: - - uid: 2152 + - uid: 2160 components: - rot: 1.5707963267948966 rad pos: 51.514782,-42.450638 parent: 2 type: Transform - - uid: 2153 + - uid: 2161 components: - rot: 3.141592653589793 rad pos: -23.516235,11.607702 @@ -23668,49 +23828,49 @@ entities: type: Transform - proto: BoxFolderRed entities: - - uid: 2154 + - uid: 2162 components: - pos: 20.994316,-12.4294405 parent: 2 type: Transform - - uid: 2155 + - uid: 2163 components: - pos: 39.22659,-2.4550023 parent: 2 type: Transform - proto: BoxFolderWhite entities: - - uid: 2156 + - uid: 2164 components: - rot: -1.5707963267948966 rad pos: -22.629791,-70.464714 parent: 2 type: Transform - - uid: 2157 + - uid: 2165 components: - pos: -5.7449856,-48.471176 parent: 2 type: Transform - - uid: 2158 + - uid: 2166 components: - pos: -5.5262356,-48.408676 parent: 2 type: Transform - proto: BoxFolderYellow entities: - - uid: 2159 + - uid: 2167 components: - rot: 1.5707963267948966 rad pos: 37.554714,-4.439378 parent: 2 type: Transform - - uid: 2160 + - uid: 2168 components: - rot: 1.5707963267948966 rad pos: 51.655407,-42.653763 parent: 2 type: Transform - - uid: 2161 + - uid: 2169 components: - rot: 3.141592653589793 rad pos: -23.71936,11.498327 @@ -23718,43 +23878,48 @@ entities: type: Transform - proto: BoxForensicPad entities: - - uid: 2162 + - uid: 2170 components: - pos: 22.673187,-14.497248 parent: 2 type: Transform - proto: BoxHandcuff entities: - - uid: 2163 + - uid: 2171 components: - pos: 2.4978194,19.97727 parent: 2 type: Transform - - uid: 2164 + - uid: 2172 components: - pos: 12.469265,20.745214 parent: 2 type: Transform - - uid: 2165 + - uid: 2173 components: - pos: 24.25829,23.575323 parent: 2 type: Transform - proto: BoxHug entities: - - uid: 2166 + - uid: 2174 components: - pos: 21.518953,53.54002 parent: 2 type: Transform + - uid: 2175 + components: + - pos: 2.5439682,-20.063549 + parent: 2 + type: Transform - proto: BoxingBell entities: - - uid: 2167 + - uid: 2176 components: - pos: 28.5,5.5 parent: 2 type: Transform - - uid: 2168 + - uid: 2177 components: - rot: 1.5707963267948966 rad pos: -46.5,-85.5 @@ -23762,225 +23927,230 @@ entities: type: Transform - proto: BoxLatexGloves entities: - - uid: 2169 + - uid: 2178 components: - pos: 8.430597,-62.372696 parent: 2 type: Transform - - uid: 2170 + - uid: 2179 components: - pos: -22.700918,-76.44757 parent: 2 type: Transform - - uid: 2171 + - uid: 2180 components: - pos: 69.515594,-49.409985 parent: 2 type: Transform - - uid: 2172 + - uid: 2181 components: - pos: -0.28067696,-61.388348 parent: 2 type: Transform - proto: BoxLethalshot entities: - - uid: 14745 + - uid: 2182 components: - pos: 26.496027,30.454184 parent: 2 type: Transform - proto: BoxLightbulb entities: - - uid: 2173 + - uid: 2183 components: - pos: -39.570137,-77.31351 parent: 2 type: Transform - proto: BoxLightMixed entities: - - uid: 2174 + - uid: 2184 components: - pos: 39.546867,49.67635 parent: 2 type: Transform - - uid: 2175 + - uid: 2185 components: - pos: -23.56665,-100.24527 parent: 2 type: Transform - proto: BoxLighttube entities: - - uid: 2176 + - uid: 2186 components: - pos: -40.05791,25.682219 parent: 2 type: Transform - proto: BoxMousetrap entities: - - uid: 2177 + - uid: 2187 components: - pos: -7.3951936,-15.377466 parent: 2 type: Transform - - uid: 2178 + - uid: 2188 components: - pos: 2.3209906,11.720218 parent: 2 type: Transform - proto: BoxMouthSwab entities: - - uid: 2179 + - uid: 2189 components: - pos: 10.414972,-62.341446 parent: 2 type: Transform - - uid: 2180 + - uid: 2190 components: - pos: -22.524687,-71.12971 parent: 2 type: Transform - - uid: 2181 + - uid: 2191 components: - pos: -22.357168,-76.22882 parent: 2 type: Transform - proto: BoxPDA entities: - - uid: 21167 + - uid: 2192 components: - - pos: -1.4355074,-4.3886075 + - pos: 4.5991206,-7.254335 parent: 2 type: Transform - proto: BoxPillCanister entities: - - uid: 2184 + - uid: 2193 components: - pos: -25.106941,-84.458755 parent: 2 type: Transform - - uid: 2185 + - uid: 2194 components: - pos: -8.487805,-33.36571 parent: 2 type: Transform - - uid: 2186 + - uid: 2195 components: - pos: 7.6496778,-47.40707 parent: 2 type: Transform - - uid: 2187 + - uid: 2196 components: - pos: 10.629656,-62.107815 parent: 2 type: Transform - proto: BoxShotgunSlug entities: - - uid: 2188 + - uid: 2197 components: - pos: 27.073633,32.655933 parent: 2 type: Transform - - uid: 2189 + - uid: 2198 components: - pos: 27.052765,32.658382 parent: 2 type: Transform - proto: BoxSterileMask entities: - - uid: 2190 + - uid: 2199 components: - pos: -0.45298922,-61.30278 parent: 2 type: Transform - - uid: 2191 + - uid: 2200 components: - pos: -22.622793,-78.244446 parent: 2 type: Transform - - uid: 2192 + - uid: 2201 components: - pos: -20.619028,-78.321075 parent: 2 type: Transform - proto: BoxSyringe entities: - - uid: 2193 + - uid: 2202 components: - pos: 7.3840528,-47.15707 parent: 2 type: Transform - - uid: 2194 + - uid: 2203 components: - pos: 8.848293,-62.473377 parent: 2 type: Transform - - uid: 2195 + - uid: 2204 components: - pos: -22.337778,-78.539825 parent: 2 type: Transform - - uid: 2196 + - uid: 2205 components: - pos: -20.634653,-77.352325 parent: 2 type: Transform - - uid: 2197 + - uid: 2206 components: - pos: -26.571459,-84.31156 parent: 2 type: Transform - - uid: 2198 + - uid: 2207 components: - pos: -8.384587,-32.982723 parent: 2 type: Transform - proto: BoxZiptie entities: - - uid: 2199 + - uid: 2208 components: - pos: 15.609102,22.64932 parent: 2 type: Transform - proto: BrbSign entities: - - uid: 2201 + - uid: 2209 components: - pos: -28.403494,21.398111 parent: 2 type: Transform + - uid: 2210 + components: + - pos: 4.567957,-7.561912 + parent: 2 + type: Transform - proto: BriefcaseBrown entities: - - uid: 2202 + - uid: 2211 components: - pos: 62.36704,-10.4423 parent: 2 type: Transform - - uid: 2203 + - uid: 2212 components: - rot: 1.5707963267948966 rad pos: -22.463455,11.6035385 parent: 2 type: Transform - - uid: 2204 + - uid: 2213 components: - pos: -43.482876,-88.91509 parent: 2 type: Transform - proto: BriefcaseBrownFilled entities: - - uid: 2205 + - uid: 2214 components: - pos: 43.51077,-2.4121785 parent: 2 type: Transform - - uid: 2206 + - uid: 2215 components: - pos: 32.38076,-48.30607 parent: 2 type: Transform - proto: BrigTimer entities: - - uid: 2207 + - uid: 2216 components: - name: cell 3 brig timer type: MetaData @@ -23989,12 +24159,12 @@ entities: parent: 2 type: Transform - linkedPorts: - 30601: + 30698: - Start: Close - Timer: AutoClose - Timer: Open type: DeviceLinkSource - - uid: 2208 + - uid: 2217 components: - name: cell 1 brig timer type: MetaData @@ -24003,12 +24173,12 @@ entities: parent: 2 type: Transform - linkedPorts: - 30593: + 30690: - Start: Close - Timer: AutoClose - Timer: Open type: DeviceLinkSource - - uid: 2209 + - uid: 2218 components: - name: cell 2 brig timer type: MetaData @@ -24017,12 +24187,12 @@ entities: parent: 2 type: Transform - linkedPorts: - 30598: + 30695: - Start: Close - Timer: AutoClose - Timer: Open type: DeviceLinkSource - - uid: 2210 + - uid: 2219 components: - name: cell 4 brig timer type: MetaData @@ -24031,12 +24201,12 @@ entities: parent: 2 type: Transform - linkedPorts: - 30594: + 30691: - Start: Close - Timer: AutoClose - Timer: Open type: DeviceLinkSource - - uid: 2211 + - uid: 2220 components: - name: cell 5 brig timer type: MetaData @@ -24045,21 +24215,21 @@ entities: parent: 2 type: Transform - linkedPorts: - 30599: + 30696: - Start: Close - Timer: AutoClose - Timer: Open type: DeviceLinkSource - proto: BrigTimerElectronics entities: - - uid: 2212 + - uid: 2221 components: - pos: -8.633084,38.341637 parent: 2 type: Transform - proto: BrokenBottle entities: - - uid: 2213 + - uid: 2222 components: - rot: -1.5707963267948966 rad pos: -6.571364,-73.41078 @@ -24067,57 +24237,57 @@ entities: type: Transform - proto: Brutepack entities: - - uid: 2216 + - uid: 2223 components: - pos: -9.633343,-56.47309 parent: 2 type: Transform - - uid: 2217 + - uid: 2224 components: - pos: -10.641302,-3.848185 parent: 2 type: Transform - - uid: 2218 + - uid: 2225 components: - pos: -10.266302,-3.785685 parent: 2 type: Transform - - uid: 2219 + - uid: 2226 components: - pos: -0.6646667,-56.50434 parent: 2 type: Transform - - uid: 2220 + - uid: 2227 components: - pos: -3.5865417,-56.488716 parent: 2 type: Transform - - uid: 2221 + - uid: 2228 components: - pos: -6.5713716,-56.519966 parent: 2 type: Transform - - uid: 2222 + - uid: 2229 components: - pos: -12.617692,-56.44184 parent: 2 type: Transform - - uid: 2223 + - uid: 2230 components: - pos: 30.05692,4.5786 parent: 2 type: Transform - - uid: 2224 + - uid: 2231 components: - pos: -6.3699856,-49.096176 parent: 2 type: Transform - - uid: 2225 + - uid: 2232 components: - pos: -6.6512356,-49.408676 parent: 2 type: Transform - - uid: 2226 + - uid: 2233 components: - rot: -1.5707963267948966 rad pos: 47.410034,4.616682 @@ -24125,60 +24295,60 @@ entities: type: Transform - proto: Bucket entities: - - uid: 2227 + - uid: 2234 components: - pos: -7.4822392,14.606249 parent: 2 type: Transform - - uid: 2228 + - uid: 2235 components: - pos: 2.6959906,11.392093 parent: 2 type: Transform - - uid: 2229 + - uid: 2236 components: - pos: 55.336075,17.733736 parent: 2 type: Transform - - uid: 2230 + - uid: 2237 components: - pos: -29.554869,3.5549593 parent: 2 type: Transform - - uid: 2231 + - uid: 2238 components: - pos: 13.468333,-66.41357 parent: 2 type: Transform - - uid: 2232 + - uid: 2239 components: - pos: 55.53834,27.595942 parent: 2 type: Transform - - uid: 2233 + - uid: 2240 components: - pos: -4.262462,56.45376 parent: 2 type: Transform - - uid: 2234 + - uid: 2241 components: - pos: -4.167221,5.7952065 parent: 2 type: Transform - - uid: 2235 + - uid: 2242 components: - pos: -4.417221,5.4827065 parent: 2 type: Transform - proto: BulletFoam entities: - - uid: 2236 + - uid: 2243 components: - rot: -1.5707963267948966 rad pos: -11.707516,41.19452 parent: 2 type: Transform - - uid: 2237 + - uid: 2244 components: - rot: 3.141592653589793 rad pos: -11.879391,41.47577 @@ -24186,1609 +24356,1621 @@ entities: type: Transform - proto: CableApcExtension entities: - - uid: 2238 + - uid: 2245 + components: + - pos: 4.5,-11.5 + parent: 2 + type: Transform + - uid: 2246 + components: + - pos: 21.5,-39.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2247 + components: + - pos: 4.5,-6.5 + parent: 2 + type: Transform + - uid: 2248 components: - pos: -16.5,11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2239 + - uid: 2249 components: - pos: -66.5,-35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2240 + - uid: 2250 components: - pos: -65.5,-38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2241 + - uid: 2251 components: - pos: -7.5,8.5 parent: 2 type: Transform - - uid: 2242 + - uid: 2252 components: - pos: -12.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2243 + - uid: 2253 components: - pos: 18.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2244 + - uid: 2254 components: - pos: -5.5,1.5 parent: 2 type: Transform - - uid: 2245 + - uid: 2255 components: - pos: -7.5,-26.5 parent: 2 type: Transform - - uid: 2246 + - uid: 2256 components: - pos: 33.5,-17.5 parent: 2 type: Transform - - uid: 2247 + - uid: 2257 components: - pos: 15.5,-32.5 parent: 2 type: Transform - - uid: 2248 + - uid: 2258 components: - pos: -10.5,-26.5 parent: 2 type: Transform - - uid: 2249 + - uid: 2259 components: - pos: 14.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2250 + - uid: 2260 components: - pos: 27.5,-60.5 parent: 2 type: Transform - - uid: 2251 + - uid: 2261 components: - pos: 7.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2252 + - uid: 2262 components: - pos: 7.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2253 + - uid: 2263 components: - pos: 15.5,-18.5 parent: 2 type: Transform - - uid: 2254 + - uid: 2264 components: - pos: -47.5,38.5 parent: 2 type: Transform - - uid: 2255 + - uid: 2265 components: - pos: 0.5,-41.5 parent: 2 type: Transform - - uid: 2256 + - uid: 2266 components: - pos: -1.5,-41.5 parent: 2 type: Transform - - uid: 2257 + - uid: 2267 components: - pos: 15.5,-10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2258 + - uid: 2268 components: - pos: 22.5,2.5 parent: 2 type: Transform - - uid: 2259 + - uid: 2269 components: - pos: -4.5,-41.5 parent: 2 type: Transform - - uid: 2260 + - uid: 2270 components: - pos: 32.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2262 + - uid: 2271 components: - pos: -6.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2263 + - uid: 2272 components: - pos: 32.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2264 + - uid: 2273 components: - pos: 15.5,-47.5 parent: 2 type: Transform - - uid: 2265 + - uid: 2274 components: - pos: 6.5,-65.5 parent: 2 type: Transform - - uid: 2266 + - uid: 2275 components: - pos: -4.5,-37.5 parent: 2 type: Transform - - uid: 2267 + - uid: 2276 components: - pos: 8.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2268 + - uid: 2277 components: - pos: -12.5,-45.5 parent: 2 type: Transform - - uid: 2270 + - uid: 2278 components: - pos: 14.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2271 + - uid: 2279 components: - pos: 15.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2272 + - uid: 2280 components: - pos: 27.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2273 + - uid: 2281 components: - pos: 31.5,-16.5 parent: 2 type: Transform - - uid: 2274 + - uid: 2282 components: - pos: 16.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2275 + - uid: 2283 components: - pos: 20.5,-52.5 parent: 2 type: Transform - - uid: 2276 + - uid: 2284 components: - pos: 21.5,-17.5 parent: 2 type: Transform - - uid: 2277 + - uid: 2285 components: - pos: 15.5,-17.5 parent: 2 type: Transform - - uid: 2278 + - uid: 2286 components: - pos: 16.5,-17.5 parent: 2 type: Transform - - uid: 2279 + - uid: 2287 components: - pos: -8.5,3.5 parent: 2 type: Transform - - uid: 2280 + - uid: 2288 components: - pos: -5.5,4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2281 + - uid: 2289 components: - pos: 30.5,-62.5 parent: 2 type: Transform - - uid: 2282 + - uid: 2290 components: - pos: 15.5,-33.5 parent: 2 type: Transform - - uid: 2283 + - uid: 2291 components: - pos: 18.5,-17.5 parent: 2 type: Transform - - uid: 2284 + - uid: 2292 components: - pos: 20.5,-53.5 parent: 2 type: Transform - - uid: 2285 + - uid: 2293 components: - pos: 6.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2286 + - uid: 2294 components: - pos: 19.5,-52.5 parent: 2 type: Transform - - uid: 2287 + - uid: 2295 components: - pos: 21.5,-8.5 parent: 2 type: Transform - - uid: 2288 + - uid: 2296 components: - pos: 25.5,-57.5 parent: 2 type: Transform - - uid: 2289 + - uid: 2297 components: - pos: 15.5,-34.5 parent: 2 type: Transform - - uid: 2290 + - uid: 2298 components: - pos: -0.5,-54.5 parent: 2 type: Transform - - uid: 2291 + - uid: 2299 components: - pos: 0.5,10.5 parent: 2 type: Transform - - uid: 2292 + - uid: 2300 components: - pos: 5.5,14.5 parent: 2 type: Transform - - uid: 2293 + - uid: 2301 components: - pos: -1.5,14.5 parent: 2 type: Transform - - uid: 2294 + - uid: 2302 components: - pos: 24.5,2.5 parent: 2 type: Transform - - uid: 2295 + - uid: 2303 components: - pos: 32.5,0.5 parent: 2 type: Transform - - uid: 2296 + - uid: 2304 components: - pos: 33.5,2.5 parent: 2 type: Transform - - uid: 2297 + - uid: 2305 components: - - pos: 3.5,-10.5 + - pos: 5.5,-10.5 parent: 2 type: Transform - - uid: 2298 + - uid: 2306 components: - - pos: 1.5,-11.5 + - pos: 0.5,-10.5 parent: 2 type: Transform - - uid: 2300 + - uid: 2307 components: - pos: 10.5,-6.5 parent: 2 type: Transform - - uid: 2301 + - uid: 2308 components: - pos: -3.5,11.5 parent: 2 type: Transform - - uid: 2302 + - uid: 2309 components: - pos: -4.5,6.5 parent: 2 type: Transform - - uid: 2303 + - uid: 2310 components: - pos: -8.5,9.5 parent: 2 type: Transform - - uid: 2304 + - uid: 2311 components: - pos: -4.5,-47.5 parent: 2 type: Transform - - uid: 2305 + - uid: 2312 components: - pos: 1.5,-48.5 parent: 2 type: Transform - - uid: 2306 + - uid: 2313 components: - pos: -1.5,-48.5 parent: 2 type: Transform - - uid: 2307 + - uid: 2314 components: - pos: -1.5,-50.5 parent: 2 type: Transform - - uid: 2308 + - uid: 2315 components: - pos: 4.5,-54.5 parent: 2 type: Transform - - uid: 2309 + - uid: 2316 components: - pos: 0.5,-54.5 parent: 2 type: Transform - - uid: 2310 + - uid: 2317 components: - pos: -15.5,-61.5 parent: 2 type: Transform - - uid: 2311 + - uid: 2318 components: - pos: -6.5,-62.5 parent: 2 type: Transform - - uid: 2312 + - uid: 2319 components: - pos: -8.5,6.5 parent: 2 type: Transform - - uid: 2313 + - uid: 2320 components: - pos: -0.5,14.5 parent: 2 type: Transform - - uid: 2314 + - uid: 2321 components: - pos: -5.5,-42.5 parent: 2 type: Transform - - uid: 2315 + - uid: 2322 components: - pos: 36.5,18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2316 + - uid: 2323 components: - pos: 29.5,32.5 parent: 2 type: Transform - - uid: 2317 + - uid: 2324 components: - pos: 62.5,-6.5 parent: 2 type: Transform - - uid: 2318 + - uid: 2325 components: - pos: -1.5,-51.5 parent: 2 type: Transform - - uid: 2319 + - uid: 2326 components: - pos: 6.5,-48.5 parent: 2 type: Transform - - uid: 2320 + - uid: 2327 components: - pos: -1.5,-45.5 parent: 2 type: Transform - - uid: 2321 + - uid: 2328 components: - pos: -3.5,-52.5 parent: 2 type: Transform - - uid: 2322 + - uid: 2329 components: - pos: -4.5,-54.5 parent: 2 type: Transform - - uid: 2323 + - uid: 2330 components: - pos: -7.5,-54.5 parent: 2 type: Transform - - uid: 2324 + - uid: 2331 components: - pos: -9.5,-54.5 parent: 2 type: Transform - - uid: 2325 + - uid: 2332 components: - pos: 1.5,-54.5 parent: 2 type: Transform - - uid: 2326 + - uid: 2333 components: - pos: 2.5,-60.5 parent: 2 type: Transform - - uid: 2327 + - uid: 2334 components: - pos: -13.5,-62.5 parent: 2 type: Transform - - uid: 2328 + - uid: 2335 components: - pos: -14.5,-66.5 parent: 2 type: Transform - - uid: 2329 + - uid: 2336 components: - pos: -15.5,-65.5 parent: 2 type: Transform - - uid: 2330 + - uid: 2337 components: - pos: -15.5,-54.5 parent: 2 type: Transform - - uid: 2331 + - uid: 2338 components: - pos: 2.5,-70.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2332 + - uid: 2339 components: - pos: 16.5,-29.5 parent: 2 type: Transform - - uid: 2333 + - uid: 2340 components: - pos: 1.5,-10.5 parent: 2 type: Transform - - uid: 2334 + - enabled: True + type: AmbientSound + - uid: 2341 components: - - pos: 3.5,-11.5 + - pos: 4.5,-10.5 parent: 2 type: Transform - - uid: 2335 + - uid: 2342 components: - pos: 11.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2336 + - uid: 2343 components: - pos: 2.5,-26.5 parent: 2 type: Transform - - uid: 2337 + - uid: 2344 components: - pos: -10.5,-21.5 parent: 2 type: Transform - - uid: 2338 + - uid: 2345 components: - pos: -8.5,-45.5 parent: 2 type: Transform - - uid: 2339 + - uid: 2346 components: - pos: 3.5,-62.5 parent: 2 type: Transform - - uid: 2340 + - uid: 2347 components: - pos: -5.5,-60.5 parent: 2 type: Transform - - uid: 2341 + - uid: 2348 components: - pos: -1.5,-46.5 parent: 2 type: Transform - - uid: 2342 + - uid: 2349 components: - pos: -2.5,-45.5 parent: 2 type: Transform - - uid: 2343 + - uid: 2350 components: - pos: 12.5,2.5 parent: 2 type: Transform - - uid: 2344 + - uid: 2351 components: - pos: 8.5,2.5 parent: 2 type: Transform - - uid: 2345 + - uid: 2352 components: - pos: 4.5,0.5 parent: 2 type: Transform - - uid: 2346 + - uid: 2353 components: - pos: -12.5,-22.5 parent: 2 type: Transform - - uid: 2348 + - uid: 2354 components: - pos: -13.5,-22.5 parent: 2 type: Transform - - uid: 2349 + - uid: 2355 components: - pos: 30.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2350 + - uid: 2356 components: - pos: 22.5,-29.5 parent: 2 type: Transform - - uid: 2351 + - uid: 2357 components: - pos: 20.5,-23.5 parent: 2 type: Transform - - uid: 2352 + - uid: 2358 components: - pos: 29.5,-28.5 parent: 2 type: Transform - - uid: 2353 + - uid: 2359 components: - pos: 25.5,-23.5 parent: 2 type: Transform - - uid: 2354 + - uid: 2360 components: - pos: 9.5,-6.5 parent: 2 type: Transform - - uid: 2355 + - uid: 2361 components: - pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 2356 + - uid: 2362 components: - pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 2357 + - uid: 2363 components: - pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 2358 + - uid: 2364 components: - pos: 7.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2359 + - uid: 2365 components: - pos: 7.5,-7.5 parent: 2 type: Transform - - uid: 2361 + - uid: 2366 components: - pos: 4.5,-41.5 parent: 2 type: Transform - - uid: 2362 + - uid: 2367 components: - pos: -6.5,-74.5 parent: 2 type: Transform - - uid: 2363 + - uid: 2368 components: - pos: -8.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2364 + - uid: 2369 components: - pos: -10.5,-75.5 parent: 2 type: Transform - - uid: 2365 + - uid: 2370 components: - pos: 10.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2366 + - uid: 2371 components: - pos: 20.5,-46.5 parent: 2 type: Transform - - uid: 2367 + - uid: 2372 components: - pos: 18.5,-48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2368 + - uid: 2373 components: - pos: 21.5,-46.5 parent: 2 type: Transform - - uid: 2369 + - uid: 2374 components: - pos: 21.5,-50.5 parent: 2 type: Transform - - uid: 2370 + - uid: 2375 components: - pos: 21.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2371 + - uid: 2376 components: - pos: 23.5,-53.5 parent: 2 type: Transform - - uid: 2372 + - uid: 2377 components: - pos: 25.5,-52.5 parent: 2 type: Transform - - uid: 2373 + - uid: 2378 components: - pos: -4.5,-16.5 parent: 2 type: Transform - - uid: 2374 + - uid: 2379 components: - pos: 6.5,8.5 parent: 2 type: Transform - - uid: 2375 + - uid: 2380 components: - pos: 46.5,-22.5 parent: 2 type: Transform - - uid: 2376 + - uid: 2381 components: - pos: 0.5,14.5 parent: 2 type: Transform - - uid: 2377 + - uid: 2382 components: - pos: 9.5,-26.5 parent: 2 type: Transform - - uid: 2378 + - uid: 2383 components: - pos: 18.5,-29.5 parent: 2 type: Transform - - uid: 2379 + - uid: 2384 components: - pos: -8.5,-6.5 parent: 2 type: Transform - - uid: 2380 + - uid: 2385 components: - pos: -4.5,14.5 parent: 2 type: Transform - - uid: 2381 + - uid: 2386 components: - pos: -5.5,14.5 parent: 2 type: Transform - - uid: 2382 + - uid: 2387 components: - pos: 3.5,-46.5 parent: 2 type: Transform - - uid: 2383 + - uid: 2388 components: - pos: 26.5,2.5 parent: 2 type: Transform - - uid: 2384 + - uid: 2389 components: - pos: -33.5,-70.5 parent: 2 type: Transform - - uid: 2385 + - uid: 2390 components: - pos: -34.5,-70.5 parent: 2 type: Transform - - uid: 2386 + - uid: 2391 components: - pos: -12.5,-26.5 parent: 2 type: Transform - - uid: 2387 + - uid: 2392 components: - pos: 31.5,-32.5 parent: 2 type: Transform - - uid: 2388 + - uid: 2393 components: - pos: 24.5,4.5 parent: 2 type: Transform - - uid: 2389 - components: - - pos: 19.5,-31.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2390 + - uid: 2394 components: - pos: -3.5,-74.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2391 + - uid: 2395 components: - pos: 8.5,-42.5 parent: 2 type: Transform - - uid: 2392 + - uid: 2396 components: - pos: 8.5,-65.5 parent: 2 type: Transform - - uid: 2393 + - uid: 2397 components: - pos: -8.5,-66.5 parent: 2 type: Transform - - uid: 2394 + - uid: 2398 components: - pos: 26.5,-1.5 parent: 2 type: Transform - - uid: 2395 + - uid: 2399 components: - pos: -9.5,-4.5 parent: 2 type: Transform - - uid: 2396 + - uid: 2400 components: - pos: -7.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2397 + - uid: 2401 components: - pos: -12.5,-75.5 parent: 2 type: Transform - - uid: 2398 + - uid: 2402 components: - pos: -8.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2399 + - uid: 2403 components: - pos: -8.5,4.5 parent: 2 type: Transform - - uid: 2400 + - uid: 2404 components: - pos: -14.5,-61.5 parent: 2 type: Transform - - uid: 2401 + - uid: 2405 components: - pos: -14.5,-55.5 parent: 2 type: Transform - - uid: 2402 + - uid: 2406 components: - pos: 12.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2403 + - uid: 2407 components: - pos: 24.5,-1.5 parent: 2 type: Transform - - uid: 2404 + - uid: 2408 components: - pos: 46.5,-27.5 parent: 2 type: Transform - - uid: 2407 + - uid: 2409 components: - pos: 50.5,8.5 parent: 2 type: Transform - - uid: 2408 + - uid: 2410 components: - pos: 50.5,7.5 parent: 2 type: Transform - - uid: 2409 + - uid: 2411 components: - pos: -16.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2410 + - uid: 2412 components: - pos: -4.5,-40.5 parent: 2 type: Transform - - uid: 2411 + - uid: 2413 components: - pos: 30.5,-72.5 parent: 2 type: Transform - - uid: 2412 + - uid: 2414 components: - pos: -9.5,-61.5 parent: 2 type: Transform - - uid: 2413 + - uid: 2415 components: - pos: -13.5,-64.5 parent: 2 type: Transform - - uid: 2414 + - uid: 2416 components: - pos: -16.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2415 + - uid: 2417 components: - pos: -17.5,-54.5 parent: 2 type: Transform - - uid: 2416 + - uid: 2418 components: - pos: -17.5,-55.5 parent: 2 type: Transform - - uid: 2417 + - uid: 2419 components: - pos: -18.5,-55.5 parent: 2 type: Transform - - uid: 2418 + - uid: 2420 components: - pos: -6.5,-64.5 parent: 2 type: Transform - - uid: 2419 + - uid: 2421 components: - pos: -6.5,-65.5 parent: 2 type: Transform - - uid: 2420 + - uid: 2422 components: - pos: -1.5,-54.5 parent: 2 type: Transform - - uid: 2421 + - uid: 2423 components: - pos: -4.5,-48.5 parent: 2 type: Transform - - uid: 2422 + - uid: 2424 components: - pos: 25.5,-14.5 parent: 2 type: Transform - - uid: 2423 + - uid: 2425 components: - pos: 25.5,-7.5 parent: 2 type: Transform - - uid: 2424 + - uid: 2426 components: - pos: 24.5,-6.5 parent: 2 type: Transform - - uid: 2425 + - uid: 2427 components: - pos: 18.5,-12.5 parent: 2 type: Transform - - uid: 2426 + - uid: 2428 components: - pos: 35.5,-40.5 parent: 2 type: Transform - - uid: 2427 + - uid: 2429 components: - pos: 17.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2428 + - uid: 2430 components: - pos: 9.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2429 + - uid: 2431 components: - pos: 15.5,-28.5 parent: 2 type: Transform - - uid: 2430 + - uid: 2432 components: - pos: 14.5,-28.5 parent: 2 type: Transform - - uid: 2431 + - uid: 2433 components: - pos: 14.5,-27.5 parent: 2 type: Transform - - uid: 2432 + - uid: 2434 components: - pos: 13.5,-26.5 parent: 2 type: Transform - - uid: 2433 + - uid: 2435 components: - pos: -5.5,-73.5 parent: 2 type: Transform - - uid: 2434 + - uid: 2436 components: - pos: 8.5,-26.5 parent: 2 type: Transform - - uid: 2435 + - uid: 2437 components: - pos: -2.5,-74.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2436 + - uid: 2438 components: - pos: 11.5,-26.5 parent: 2 type: Transform - - uid: 2437 + - uid: 2439 components: - pos: 3.5,-26.5 parent: 2 type: Transform - - uid: 2438 + - uid: 2440 components: - pos: -7.5,1.5 parent: 2 type: Transform - - uid: 2439 + - uid: 2441 components: - pos: -8.5,1.5 parent: 2 type: Transform - - uid: 2440 + - uid: 2442 components: - pos: -1.5,-75.5 parent: 2 type: Transform - - uid: 2441 + - uid: 2443 components: - pos: -3.5,8.5 parent: 2 type: Transform - - uid: 2442 + - uid: 2444 components: - pos: -3.5,10.5 parent: 2 type: Transform - - uid: 2443 + - uid: 2445 components: - pos: 28.5,2.5 parent: 2 type: Transform - - uid: 2444 + - uid: 2446 components: - pos: 32.5,1.5 parent: 2 type: Transform - - uid: 2445 + - uid: 2447 components: - pos: 32.5,2.5 parent: 2 type: Transform - - uid: 2446 + - uid: 2448 components: - pos: 1.5,-9.5 parent: 2 type: Transform - - uid: 2447 + - uid: 2449 components: - pos: 2.5,8.5 parent: 2 type: Transform - - uid: 2448 + - uid: 2450 components: - pos: 61.5,-11.5 parent: 2 type: Transform - - uid: 2449 + - uid: 2451 components: - pos: 21.5,-10.5 parent: 2 type: Transform - - uid: 2450 + - uid: 2452 components: - pos: 20.5,-13.5 parent: 2 type: Transform - - uid: 2451 + - uid: 2453 components: - pos: -0.5,0.5 parent: 2 type: Transform - - uid: 2452 + - uid: 2454 components: - pos: 20.5,-5.5 parent: 2 type: Transform - - uid: 2453 + - uid: 2455 components: - pos: 22.5,-6.5 parent: 2 type: Transform - - uid: 2454 + - uid: 2456 components: - pos: 23.5,-6.5 parent: 2 type: Transform - - uid: 2455 + - uid: 2457 components: - pos: 25.5,-6.5 parent: 2 type: Transform - - uid: 2456 + - uid: 2458 components: - pos: 25.5,-13.5 parent: 2 type: Transform - - uid: 2457 + - uid: 2459 components: - pos: 25.5,-12.5 parent: 2 type: Transform - - uid: 2458 + - uid: 2460 components: - pos: 25.5,-8.5 parent: 2 type: Transform - - uid: 2459 + - uid: 2461 components: - pos: 24.5,-11.5 parent: 2 type: Transform - - uid: 2460 + - uid: 2462 components: - pos: 5.5,-60.5 parent: 2 type: Transform - - uid: 2461 + - uid: 2463 components: - pos: 5.5,-54.5 parent: 2 type: Transform - - uid: 2462 + - uid: 2464 components: - pos: 2.5,-54.5 parent: 2 type: Transform - - uid: 2463 + - uid: 2465 components: - pos: -14.5,-60.5 parent: 2 type: Transform - - uid: 2464 + - uid: 2466 components: - pos: -8.5,-65.5 parent: 2 type: Transform - - uid: 2465 + - uid: 2467 components: - pos: -7.5,-65.5 parent: 2 type: Transform - - uid: 2466 + - uid: 2468 components: - pos: -6.5,-60.5 parent: 2 type: Transform - - uid: 2467 + - uid: 2469 components: - pos: -3.5,-60.5 parent: 2 type: Transform - - uid: 2468 + - uid: 2470 components: - pos: -2.5,-60.5 parent: 2 type: Transform - - uid: 2469 + - uid: 2471 components: - pos: -0.5,-60.5 parent: 2 type: Transform - - uid: 2470 + - uid: 2472 components: - pos: 3.5,-63.5 parent: 2 type: Transform - - uid: 2471 + - uid: 2473 components: - pos: 3.5,-61.5 parent: 2 type: Transform - - uid: 2472 + - uid: 2474 components: - pos: 10.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2473 + - uid: 2475 components: - pos: 10.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2474 + - uid: 2476 components: - pos: 11.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2475 + - uid: 2477 components: - pos: 13.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2476 + - uid: 2478 components: - pos: 14.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2477 + - uid: 2479 components: - pos: 15.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2478 + - uid: 2480 components: - pos: 15.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2479 + - uid: 2481 components: - pos: 15.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2480 + - uid: 2482 components: - pos: 14.5,-2.5 parent: 2 type: Transform - - uid: 2481 + - uid: 2483 components: - pos: -19.5,-56.5 parent: 2 type: Transform - - uid: 2482 + - uid: 2484 components: - pos: -19.5,-55.5 parent: 2 type: Transform - - uid: 2483 + - uid: 2485 components: - pos: 14.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2484 + - uid: 2486 components: - pos: 14.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2485 + - uid: 2487 components: - pos: 20.5,-45.5 parent: 2 type: Transform - - uid: 2486 + - uid: 2488 components: - pos: -41.5,25.5 parent: 2 type: Transform - - uid: 2487 + - uid: 2489 components: - pos: 32.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2488 + - uid: 2490 components: - pos: 14.5,-5.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2490 + - uid: 2491 components: - pos: 12.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2491 + - uid: 2492 components: - pos: -3.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2492 + - uid: 2493 components: - pos: -4.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2493 + - uid: 2494 components: - pos: -5.5,-70.5 parent: 2 type: Transform - - uid: 2494 + - uid: 2495 components: - pos: -1.5,-77.5 parent: 2 type: Transform - - uid: 2495 + - uid: 2496 components: - pos: -0.5,-69.5 parent: 2 type: Transform - - uid: 2496 + - uid: 2497 components: - pos: 10.5,2.5 parent: 2 type: Transform - - uid: 2497 + - uid: 2498 components: - pos: -5.5,-47.5 parent: 2 type: Transform - - uid: 2498 + - uid: 2499 components: - pos: -14.5,-54.5 parent: 2 type: Transform - - uid: 2499 + - uid: 2500 components: - pos: -13.5,-59.5 parent: 2 type: Transform - - uid: 2500 + - uid: 2501 components: - pos: -10.5,-61.5 parent: 2 type: Transform - - uid: 2501 + - uid: 2502 components: - pos: -4.5,-11.5 parent: 2 type: Transform - - uid: 2502 + - uid: 2503 components: - pos: 62.5,-9.5 parent: 2 type: Transform - - uid: 2503 + - uid: 2504 components: - pos: 62.5,-7.5 parent: 2 type: Transform - - uid: 2504 + - uid: 2505 components: - pos: 8.5,-8.5 parent: 2 type: Transform - - uid: 2505 + - uid: 2506 components: - pos: 8.5,-10.5 parent: 2 type: Transform - - uid: 2506 + - uid: 2507 components: - pos: 24.5,1.5 parent: 2 type: Transform - - uid: 2507 + - uid: 2508 components: - pos: 1.5,9.5 parent: 2 type: Transform - - uid: 2508 + - uid: 2509 components: - pos: 2.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2509 + - uid: 2510 components: - pos: 22.5,-32.5 parent: 2 type: Transform - - uid: 2510 + - uid: 2511 components: - pos: -15.5,-21.5 parent: 2 type: Transform - - uid: 2511 + - uid: 2512 components: - pos: -2.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2512 + - uid: 2513 components: - pos: -9.5,10.5 parent: 2 type: Transform - - uid: 2513 + - uid: 2514 components: - pos: 18.5,-13.5 parent: 2 type: Transform - - uid: 2514 + - uid: 2515 components: - pos: 21.5,-11.5 parent: 2 type: Transform - - uid: 2515 + - uid: 2516 components: - pos: -4.5,-28.5 parent: 2 type: Transform - - uid: 2516 + - uid: 2517 components: - pos: 27.5,2.5 parent: 2 type: Transform - - uid: 2517 + - uid: 2518 components: - pos: 6.5,15.5 parent: 2 type: Transform - - uid: 2518 + - uid: 2519 components: - pos: 5.5,15.5 parent: 2 type: Transform - - uid: 2519 + - uid: 2520 components: - pos: 0.5,12.5 parent: 2 type: Transform - - uid: 2520 + - uid: 2521 components: - pos: 5.5,12.5 parent: 2 type: Transform - - uid: 2521 + - uid: 2522 components: - pos: 5.5,13.5 parent: 2 type: Transform - - uid: 2522 + - uid: 2523 components: - pos: 21.5,-1.5 parent: 2 type: Transform - - uid: 2523 + - uid: 2524 components: - pos: 32.5,18.5 parent: 2 type: Transform - - uid: 2524 + - uid: 2525 components: - pos: 1.5,0.5 parent: 2 type: Transform - - uid: 2525 + - uid: 2526 components: - pos: 13.5,2.5 parent: 2 type: Transform - - uid: 2526 + - uid: 2527 components: - pos: 13.5,0.5 parent: 2 type: Transform - - uid: 2527 + - uid: 2528 components: - pos: 12.5,-0.5 parent: 2 type: Transform - - uid: 2528 + - uid: 2529 components: - pos: -13.5,-54.5 parent: 2 type: Transform - - uid: 2529 + - uid: 2530 components: - pos: -14.5,-59.5 parent: 2 type: Transform - - uid: 2530 + - uid: 2531 components: - pos: -2.5,-54.5 parent: 2 type: Transform - - uid: 2531 + - uid: 2532 components: - pos: 27.5,1.5 parent: 2 type: Transform - - uid: 2532 + - uid: 2533 components: - pos: -2.5,-41.5 parent: 2 type: Transform - - uid: 2533 + - uid: 2534 components: - pos: -3.5,-0.5 parent: 2 type: Transform - - uid: 2534 + - uid: 2535 components: - pos: 29.5,-47.5 parent: 2 type: Transform - - uid: 2535 + - uid: 2536 components: - pos: 15.5,-40.5 parent: 2 type: Transform - - uid: 2536 + - uid: 2537 components: - pos: 11.5,-42.5 parent: 2 type: Transform - - uid: 2537 + - uid: 2538 components: - pos: 9.5,-41.5 parent: 2 type: Transform - - uid: 2538 + - uid: 2539 components: - pos: 13.5,-42.5 parent: 2 type: Transform - - uid: 2539 + - uid: 2540 components: - pos: 17.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2540 + - uid: 2541 components: - pos: 34.5,-41.5 parent: 2 type: Transform - - uid: 2541 + - uid: 2542 components: - pos: 36.5,-40.5 parent: 2 type: Transform - - uid: 2542 + - uid: 2543 components: - pos: 34.5,-40.5 parent: 2 type: Transform - - uid: 2543 + - uid: 2544 components: - pos: 12.5,-6.5 parent: 2 type: Transform - - uid: 2544 + - uid: 2545 components: - pos: 11.5,-6.5 parent: 2 @@ -25885,40433 +26067,40797 @@ entities: - pos: -5.5,7.5 parent: 2 type: Transform - - uid: 2565 + - uid: 2564 components: - pos: 10.5,-11.5 parent: 2 type: Transform - - uid: 2566 + - uid: 2565 components: - pos: 7.5,-6.5 parent: 2 type: Transform - - uid: 2567 + - uid: 2566 components: - pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 2568 + - uid: 2567 components: - - pos: 2.5,-11.5 + - pos: 4.5,-13.5 parent: 2 type: Transform - - uid: 2569 + - uid: 2568 components: - pos: 10.5,-10.5 parent: 2 type: Transform - - uid: 2570 + - uid: 2569 components: - pos: 42.5,-26.5 parent: 2 type: Transform - - uid: 2571 + - uid: 2570 components: - pos: -8.5,-50.5 parent: 2 type: Transform - - uid: 2572 + - uid: 2571 components: - pos: 5.5,8.5 parent: 2 type: Transform - - uid: 2573 + - uid: 2572 components: - pos: -8.5,-51.5 parent: 2 type: Transform - - uid: 2574 + - uid: 2573 components: - pos: -8.5,-52.5 parent: 2 type: Transform - - uid: 2575 + - uid: 2574 components: - pos: -7.5,-52.5 parent: 2 type: Transform - - uid: 2576 + - uid: 2575 components: - pos: -7.5,-53.5 parent: 2 type: Transform - - uid: 2577 + - uid: 2576 components: - pos: 6.5,7.5 parent: 2 type: Transform - - uid: 2578 + - uid: 2577 components: - pos: 31.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2579 + - uid: 2578 components: - pos: 32.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2580 + - uid: 2579 components: - pos: -4.5,-20.5 parent: 2 type: Transform - - uid: 2581 + - uid: 2580 components: - pos: 5.5,11.5 parent: 2 type: Transform - - uid: 2582 + - uid: 2581 components: - pos: 5.5,7.5 parent: 2 type: Transform - - uid: 2584 + - uid: 2582 components: - pos: 32.5,-41.5 parent: 2 type: Transform - - uid: 2585 + - uid: 2583 components: - pos: 33.5,-40.5 parent: 2 type: Transform - - uid: 2586 + - uid: 2584 components: - pos: 34.5,-42.5 parent: 2 type: Transform - - uid: 2588 + - uid: 2585 components: - pos: 23.5,-42.5 parent: 2 type: Transform - - uid: 2589 + - uid: 2586 components: - pos: 21.5,-42.5 parent: 2 type: Transform - - uid: 2590 + - uid: 2587 components: - pos: 8.5,-9.5 parent: 2 type: Transform - - uid: 2591 + - uid: 2588 components: - pos: -20.5,-87.5 parent: 2 type: Transform - - uid: 2592 + - uid: 2589 components: - pos: 23.5,-1.5 parent: 2 type: Transform - - uid: 2593 + - uid: 2590 components: - pos: -2.5,14.5 parent: 2 type: Transform - - uid: 2594 + - uid: 2591 components: - pos: -3.5,14.5 parent: 2 type: Transform - - uid: 2595 + - uid: 2592 components: - pos: 32.5,17.5 parent: 2 type: Transform - - uid: 2596 + - uid: 2593 components: - pos: 27.5,0.5 parent: 2 type: Transform - - uid: 2598 + - uid: 2594 components: - pos: 26.5,-32.5 parent: 2 type: Transform - - uid: 2599 + - uid: 2595 components: - pos: 25.5,-42.5 parent: 2 type: Transform - - uid: 2600 + - uid: 2596 components: - pos: 27.5,-42.5 parent: 2 type: Transform - - uid: 2601 + - uid: 2597 components: - pos: 35.5,-38.5 parent: 2 type: Transform - - uid: 2602 + - uid: 2598 components: - pos: 35.5,-39.5 parent: 2 type: Transform - - uid: 2603 + - uid: 2599 components: - pos: 23.5,-32.5 parent: 2 type: Transform - - uid: 2604 + - uid: 2600 components: - pos: 20.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2605 + - uid: 2601 components: - pos: -7.5,-7.5 parent: 2 type: Transform - - uid: 2606 + - uid: 2602 components: - pos: 16.5,-32.5 parent: 2 type: Transform - - uid: 2607 + - uid: 2603 components: - pos: 1.5,10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2608 + - uid: 2604 components: - pos: -15.5,25.5 parent: 2 type: Transform - - uid: 2609 + - uid: 2605 components: - pos: 7.5,-49.5 parent: 2 type: Transform - - uid: 2610 + - uid: 2606 components: - pos: 55.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2611 + - uid: 2607 components: - pos: 32.5,-4.5 parent: 2 type: Transform - - uid: 2612 + - uid: 2608 components: - pos: 26.5,-25.5 parent: 2 type: Transform - - uid: 2613 + - uid: 2609 components: - pos: 25.5,-25.5 parent: 2 type: Transform - - uid: 2614 + - uid: 2610 components: - pos: 24.5,-22.5 parent: 2 type: Transform - - uid: 2615 + - uid: 2611 components: - pos: 23.5,-22.5 parent: 2 type: Transform - - uid: 2616 + - uid: 2612 components: - pos: 21.5,-24.5 parent: 2 type: Transform - - uid: 2617 + - uid: 2613 components: - pos: 21.5,-23.5 parent: 2 type: Transform - - uid: 2618 + - uid: 2614 components: - pos: 21.5,-22.5 parent: 2 type: Transform - - uid: 2619 + - uid: 2615 components: - pos: 26.5,-23.5 parent: 2 type: Transform - - uid: 2620 + - uid: 2616 components: - pos: 27.5,-23.5 parent: 2 type: Transform - - uid: 2621 + - uid: 2617 components: - pos: 28.5,-29.5 parent: 2 type: Transform - - uid: 2622 + - uid: 2618 components: - pos: 27.5,-29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2623 + - uid: 2619 components: - pos: 27.5,-30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2624 + - uid: 2620 components: - pos: 27.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2629 + - uid: 2621 components: - pos: 26.5,-30.5 parent: 2 type: Transform - - uid: 2630 + - uid: 2622 components: - pos: 25.5,-30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2631 + - uid: 2623 components: - pos: 24.5,-30.5 parent: 2 type: Transform - - uid: 2632 + - uid: 2624 components: - pos: 23.5,-30.5 parent: 2 type: Transform - - uid: 2633 + - uid: 2625 components: - pos: 22.5,-30.5 parent: 2 type: Transform - - uid: 2634 + - uid: 2626 components: - pos: 22.5,-28.5 parent: 2 type: Transform - - uid: 2635 + - uid: 2627 components: - pos: 6.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2636 + - uid: 2628 components: - pos: 5.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2638 + - uid: 2629 components: - pos: 8.5,-4.5 parent: 2 type: Transform - - uid: 2639 + - uid: 2630 components: - pos: 12.5,-5.5 parent: 2 type: Transform - - uid: 2640 + - uid: 2631 components: - pos: 12.5,-9.5 parent: 2 type: Transform - - uid: 2641 + - uid: 2632 components: - pos: -10.5,-22.5 parent: 2 type: Transform - - uid: 2642 + - uid: 2633 components: - pos: -15.5,-22.5 parent: 2 type: Transform - - uid: 2643 + - uid: 2634 components: - pos: -24.5,-16.5 parent: 2 type: Transform - - uid: 2644 + - uid: 2635 components: - pos: -24.5,-15.5 parent: 2 type: Transform - - uid: 2646 + - uid: 2636 components: - pos: 23.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2647 + - uid: 2637 components: - pos: 25.5,-11.5 parent: 2 type: Transform - - uid: 2648 + - uid: 2638 components: - pos: 25.5,-10.5 parent: 2 type: Transform - - uid: 2649 + - uid: 2639 components: - pos: 25.5,-9.5 parent: 2 type: Transform - - uid: 2650 + - uid: 2640 components: - pos: 21.5,-6.5 parent: 2 type: Transform - - uid: 2651 + - uid: 2641 components: - pos: 20.5,-6.5 parent: 2 type: Transform - - uid: 2652 + - uid: 2642 components: - pos: 26.5,-6.5 parent: 2 type: Transform - - uid: 2653 + - uid: 2643 components: - pos: 27.5,-6.5 parent: 2 type: Transform - - uid: 2654 + - uid: 2644 components: - pos: 28.5,-6.5 parent: 2 type: Transform - - uid: 2655 + - uid: 2645 components: - pos: 29.5,-6.5 parent: 2 type: Transform - - uid: 2656 + - uid: 2646 components: - pos: 30.5,-6.5 parent: 2 type: Transform - - uid: 2657 + - uid: 2647 components: - pos: 30.5,-5.5 parent: 2 type: Transform - - uid: 2658 + - uid: 2648 components: - pos: 29.5,-32.5 parent: 2 type: Transform - - uid: 2659 + - uid: 2649 components: - pos: 8.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2660 + - uid: 2650 components: - pos: 8.5,-2.5 parent: 2 type: Transform - - uid: 2661 + - uid: 2651 components: - pos: 8.5,-1.5 parent: 2 type: Transform - - uid: 2662 + - uid: 2652 components: - pos: 7.5,-1.5 parent: 2 type: Transform - - uid: 2663 + - uid: 2653 components: - pos: 6.5,-1.5 parent: 2 type: Transform - - uid: 2664 + - uid: 2654 components: - pos: 5.5,-1.5 parent: 2 type: Transform - - uid: 2665 + - uid: 2655 components: - pos: 4.5,-1.5 parent: 2 type: Transform - - uid: 2666 + - uid: 2656 components: - pos: 4.5,-0.5 parent: 2 type: Transform - - uid: 2667 + - uid: 2657 components: - pos: 2.5,0.5 parent: 2 type: Transform - - uid: 2668 + - uid: 2658 components: - pos: 0.5,0.5 parent: 2 type: Transform - - uid: 2669 + - uid: 2659 components: - pos: -0.5,1.5 parent: 2 type: Transform - - uid: 2670 + - uid: 2660 components: - pos: -0.5,2.5 parent: 2 type: Transform - - uid: 2671 + - uid: 2661 components: - pos: 0.5,2.5 parent: 2 type: Transform - - uid: 2672 + - uid: 2662 components: - pos: 1.5,2.5 parent: 2 type: Transform - - uid: 2673 + - uid: 2663 components: - pos: 3.5,2.5 parent: 2 type: Transform - - uid: 2674 + - uid: 2664 components: - pos: 4.5,2.5 parent: 2 type: Transform - - uid: 2675 + - uid: 2665 components: - pos: 5.5,2.5 parent: 2 type: Transform - - uid: 2676 + - uid: 2666 components: - pos: 6.5,2.5 parent: 2 type: Transform - - uid: 2677 + - uid: 2667 components: - pos: 7.5,2.5 parent: 2 type: Transform - - uid: 2678 + - uid: 2668 components: - pos: 11.5,-0.5 parent: 2 type: Transform - - uid: 2679 + - uid: 2669 components: - pos: -2.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2680 + - uid: 2670 components: - pos: -1.5,-49.5 parent: 2 type: Transform - - uid: 2681 + - uid: 2671 components: - pos: -0.5,-48.5 parent: 2 type: Transform - - uid: 2682 + - uid: 2672 components: - pos: 2.5,-48.5 parent: 2 type: Transform - - uid: 2683 + - uid: 2673 components: - pos: 4.5,-48.5 parent: 2 type: Transform - - uid: 2684 + - uid: 2674 components: - pos: -1.5,-47.5 parent: 2 type: Transform - - uid: 2685 + - uid: 2675 components: - pos: -6.5,-47.5 parent: 2 type: Transform - - uid: 2686 + - uid: 2676 components: - pos: -3.5,-54.5 parent: 2 type: Transform - - uid: 2687 + - uid: 2677 components: - pos: -5.5,-54.5 parent: 2 type: Transform - - uid: 2688 + - uid: 2678 components: - pos: -6.5,-54.5 parent: 2 type: Transform - - uid: 2689 + - uid: 2679 components: - pos: -8.5,-54.5 parent: 2 type: Transform - - uid: 2690 + - uid: 2680 components: - pos: -10.5,-54.5 parent: 2 type: Transform - - uid: 2691 + - uid: 2681 components: - pos: -11.5,-54.5 parent: 2 type: Transform - - uid: 2692 + - uid: 2682 components: - pos: 3.5,-54.5 parent: 2 type: Transform - - uid: 2693 + - uid: 2683 components: - pos: 5.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2694 + - uid: 2684 components: - pos: 5.5,-57.5 parent: 2 type: Transform - - uid: 2695 + - uid: 2685 components: - pos: 5.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2696 + - uid: 2686 components: - pos: 5.5,-59.5 parent: 2 type: Transform - - uid: 2697 + - uid: 2687 components: - pos: 6.5,-60.5 parent: 2 type: Transform - - uid: 2698 + - uid: 2688 components: - pos: 7.5,-60.5 parent: 2 type: Transform - - uid: 2699 + - uid: 2689 components: - pos: 4.5,-60.5 parent: 2 type: Transform - - uid: 2700 + - uid: 2690 components: - pos: 1.5,-60.5 parent: 2 type: Transform - - uid: 2701 + - uid: 2691 components: - pos: 0.5,-60.5 parent: 2 type: Transform - - uid: 2702 + - uid: 2692 components: - pos: -1.5,-61.5 parent: 2 type: Transform - - uid: 2703 + - uid: 2693 components: - pos: -1.5,-62.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2704 + - uid: 2694 components: - pos: -1.5,-64.5 parent: 2 type: Transform - - uid: 2705 + - uid: 2695 components: - pos: -7.5,-61.5 parent: 2 type: Transform - - uid: 2706 + - uid: 2696 components: - pos: -6.5,-61.5 parent: 2 type: Transform - - uid: 2707 + - uid: 2697 components: - pos: -11.5,-75.5 parent: 2 type: Transform - - uid: 2708 + - uid: 2698 components: - pos: -11.5,-61.5 parent: 2 type: Transform - - uid: 2709 + - uid: 2699 components: - pos: -12.5,-61.5 parent: 2 type: Transform - - uid: 2710 + - uid: 2700 components: - pos: -13.5,-61.5 parent: 2 type: Transform - - uid: 2711 + - uid: 2701 components: - pos: -13.5,-63.5 parent: 2 type: Transform - - uid: 2712 + - uid: 2702 components: - pos: -13.5,-65.5 parent: 2 type: Transform - - uid: 2713 + - uid: 2703 components: - pos: -13.5,-66.5 parent: 2 type: Transform - - uid: 2714 + - uid: 2704 components: - pos: -15.5,-64.5 parent: 2 type: Transform - - uid: 2715 + - uid: 2705 components: - pos: -21.5,-68.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2716 + - uid: 2706 components: - pos: -21.5,-69.5 parent: 2 type: Transform - - uid: 2717 + - uid: 2707 components: - pos: -21.5,-70.5 parent: 2 type: Transform - - uid: 2718 + - uid: 2708 components: - pos: -20.5,-70.5 parent: 2 type: Transform - - uid: 2719 + - uid: 2709 components: - pos: -19.5,-70.5 parent: 2 type: Transform - - uid: 2720 + - uid: 2710 components: - pos: -19.5,-69.5 parent: 2 type: Transform - - uid: 2721 + - uid: 2711 components: - pos: -19.5,-68.5 parent: 2 type: Transform - - uid: 2722 + - uid: 2712 components: - pos: -19.5,-72.5 parent: 2 type: Transform - - uid: 2723 + - uid: 2713 components: - pos: -19.5,-73.5 parent: 2 type: Transform - - uid: 2724 + - uid: 2714 components: - pos: -18.5,-74.5 parent: 2 type: Transform - - uid: 2725 + - uid: 2715 components: - pos: -18.5,-76.5 parent: 2 type: Transform - - uid: 2726 + - uid: 2716 components: - pos: -18.5,-77.5 parent: 2 type: Transform - - uid: 2727 + - uid: 2717 components: - pos: -17.5,-77.5 parent: 2 type: Transform - - uid: 2728 + - uid: 2718 components: - pos: -19.5,-77.5 parent: 2 type: Transform - - uid: 2729 + - uid: 2719 components: - pos: -20.5,-85.5 parent: 2 type: Transform - - uid: 2730 + - uid: 2720 components: - pos: -25.5,-87.5 parent: 2 type: Transform - - uid: 2731 + - uid: 2721 components: - pos: -25.5,-88.5 parent: 2 type: Transform - - uid: 2732 + - uid: 2722 components: - pos: 22.5,-1.5 parent: 2 type: Transform - - uid: 2733 + - uid: 2723 components: - pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 2734 + - uid: 2724 components: - pos: -7.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2735 + - uid: 2725 components: - pos: 17.5,-32.5 parent: 2 type: Transform - - uid: 2736 + - uid: 2726 components: - pos: -8.5,8.5 parent: 2 type: Transform - - uid: 2737 + - uid: 2727 components: - pos: -8.5,10.5 parent: 2 type: Transform - - uid: 2738 + - uid: 2728 components: - pos: -8.5,5.5 parent: 2 type: Transform - - uid: 2739 + - uid: 2729 components: - pos: -3.5,9.5 parent: 2 type: Transform - - uid: 2740 + - uid: 2730 components: - pos: 5.5,9.5 parent: 2 type: Transform - - uid: 2741 + - uid: 2731 components: - pos: 9.5,-10.5 parent: 2 type: Transform - - uid: 2744 + - uid: 2732 components: - pos: 32.5,16.5 parent: 2 type: Transform - - uid: 2745 + - uid: 2733 components: - pos: 0.5,8.5 parent: 2 type: Transform - - uid: 2746 + - uid: 2734 components: - pos: 0.5,-26.5 parent: 2 type: Transform - - uid: 2747 + - uid: 2735 components: - pos: -0.5,-26.5 parent: 2 type: Transform - - uid: 2748 + - uid: 2736 components: - pos: -8.5,2.5 parent: 2 type: Transform - - uid: 2749 + - uid: 2737 components: - pos: 1.5,-26.5 parent: 2 type: Transform - - uid: 2750 + - uid: 2738 components: - pos: 6.5,-26.5 parent: 2 type: Transform - - uid: 2751 + - uid: 2739 components: - pos: 7.5,-26.5 parent: 2 type: Transform - - uid: 2752 + - uid: 2740 components: - pos: 12.5,-26.5 parent: 2 type: Transform - - uid: 2753 + - uid: 2741 components: - pos: 14.5,-26.5 parent: 2 type: Transform - - uid: 2754 + - uid: 2742 components: - pos: 17.5,-48.5 parent: 2 type: Transform - - uid: 2755 + - uid: 2743 components: - pos: 27.5,4.5 parent: 2 type: Transform - - uid: 2756 + - uid: 2744 components: - pos: 27.5,-0.5 parent: 2 type: Transform - - uid: 2757 + - uid: 2745 components: - pos: 25.5,4.5 parent: 2 type: Transform - - uid: 2758 + - uid: 2746 components: - pos: 21.5,2.5 parent: 2 type: Transform - - uid: 2759 + - uid: 2747 components: - pos: 23.5,2.5 parent: 2 type: Transform - - uid: 2760 + - uid: 2748 components: - pos: 26.5,4.5 parent: 2 type: Transform - - uid: 2761 + - uid: 2749 components: - pos: -4.5,-13.5 parent: 2 type: Transform - - uid: 2762 + - uid: 2750 components: - pos: -20.5,-86.5 parent: 2 type: Transform - - uid: 2763 + - uid: 2751 components: - pos: 20.5,-42.5 parent: 2 type: Transform - - uid: 2764 + - uid: 2752 components: - pos: -18.5,-60.5 parent: 2 type: Transform - - uid: 2765 + - uid: 2753 components: - pos: 8.5,-56.5 parent: 2 type: Transform - - uid: 2766 + - uid: 2754 components: - pos: -4.5,-60.5 parent: 2 type: Transform - - uid: 2767 + - uid: 2755 components: - pos: -1.5,-65.5 parent: 2 type: Transform - - uid: 2768 + - uid: 2756 components: - pos: -1.5,-60.5 parent: 2 type: Transform - - uid: 2769 + - uid: 2757 components: - pos: 3.5,-60.5 parent: 2 type: Transform - - uid: 2770 + - uid: 2758 components: - pos: -3.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2771 + - uid: 2759 components: - pos: 3.5,-48.5 parent: 2 type: Transform - - uid: 2772 + - uid: 2760 components: - pos: 5.5,-48.5 parent: 2 type: Transform - - uid: 2773 + - uid: 2761 components: - pos: 6.5,-47.5 parent: 2 type: Transform - - uid: 2774 + - uid: 2762 components: - pos: -4.5,-50.5 parent: 2 type: Transform - - uid: 2775 + - uid: 2763 components: - pos: -4.5,-49.5 parent: 2 type: Transform - - uid: 2776 + - uid: 2764 components: - pos: -6.5,-45.5 parent: 2 type: Transform - - uid: 2777 + - uid: 2765 components: - pos: 22.5,-24.5 parent: 2 type: Transform - - uid: 2778 + - uid: 2766 components: - pos: -6.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2779 + - uid: 2767 components: - pos: -9.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2780 + - uid: 2768 components: - pos: 10.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2781 + - uid: 2769 components: - pos: 16.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2782 + - uid: 2770 components: - pos: 14.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2783 + - uid: 2771 components: - pos: 25.5,-50.5 parent: 2 type: Transform - - uid: 2784 + - uid: 2772 components: - pos: 25.5,-54.5 parent: 2 type: Transform - - uid: 2785 + - uid: 2773 components: - pos: 25.5,-55.5 parent: 2 type: Transform - - uid: 2786 + - uid: 2774 components: - pos: 25.5,-56.5 parent: 2 type: Transform - - uid: 2787 + - uid: 2775 components: - pos: -4.5,-14.5 parent: 2 type: Transform - - uid: 2788 + - uid: 2776 components: - pos: -4.5,-18.5 parent: 2 type: Transform - - uid: 2789 + - uid: 2777 components: - pos: 59.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2790 + - uid: 2778 components: - pos: 46.5,-25.5 parent: 2 type: Transform - - uid: 2791 + - uid: 2779 components: - pos: 46.5,-24.5 parent: 2 type: Transform - - uid: 2792 + - uid: 2780 components: - pos: 46.5,-29.5 parent: 2 type: Transform - - uid: 2793 + - uid: 2781 components: - pos: 46.5,-28.5 parent: 2 type: Transform - - uid: 2794 + - uid: 2782 components: - pos: 45.5,-27.5 parent: 2 type: Transform - - uid: 2795 + - uid: 2783 components: - pos: 43.5,-27.5 parent: 2 type: Transform - - uid: 2796 + - uid: 2784 components: - pos: 44.5,-27.5 parent: 2 type: Transform - - uid: 2797 + - uid: 2785 components: - pos: 43.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2798 + - uid: 2786 components: - pos: 5.5,10.5 parent: 2 type: Transform - - uid: 2799 + - uid: 2787 components: - pos: 5.5,8.5 parent: 2 type: Transform - - uid: 2800 + - uid: 2788 components: - pos: 10.5,-26.5 parent: 2 type: Transform - - uid: 2801 + - uid: 2789 components: - pos: -18.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2802 + - uid: 2790 components: - pos: -4.5,-21.5 parent: 2 type: Transform - - uid: 2803 + - uid: 2791 components: - pos: 17.5,-29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2804 + - uid: 2792 components: - pos: 24.5,-0.5 parent: 2 type: Transform - - uid: 2805 + - uid: 2793 components: - pos: -6.5,14.5 parent: 2 type: Transform - - uid: 2806 + - uid: 2794 components: - pos: -6.5,13.5 parent: 2 type: Transform - - uid: 2807 + - uid: 2795 components: - pos: 24.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2808 + - uid: 2796 components: - pos: 27.5,-25.5 parent: 2 type: Transform - - uid: 2809 + - uid: 2797 components: - pos: 25.5,-22.5 parent: 2 type: Transform - - uid: 2810 + - uid: 2798 components: - pos: 28.5,-23.5 parent: 2 type: Transform - - uid: 2811 + - uid: 2799 components: - pos: 29.5,-23.5 parent: 2 type: Transform - - uid: 2812 + - uid: 2800 components: - pos: 30.5,-23.5 parent: 2 type: Transform - - uid: 2813 + - uid: 2801 components: - pos: 28.5,-28.5 parent: 2 type: Transform - - uid: 2814 + - uid: 2802 components: - pos: 7.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2815 + - uid: 2803 components: - pos: 25.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2816 + - uid: 2804 components: - pos: -16.5,-22.5 parent: 2 type: Transform - - uid: 2817 + - uid: 2805 components: - pos: -13.5,-53.5 parent: 2 type: Transform - - uid: 2818 + - uid: 2806 components: - pos: 24.5,3.5 parent: 2 type: Transform - - uid: 2819 + - uid: 2807 components: - pos: 7.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2820 + - uid: 2808 components: - pos: -13.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2821 + - uid: 2809 components: - pos: -7.5,-6.5 parent: 2 type: Transform - - uid: 2822 + - uid: 2810 components: - pos: -29.5,1.5 parent: 2 type: Transform - - uid: 2823 + - uid: 2811 components: - pos: 18.5,-40.5 parent: 2 type: Transform - - uid: 2824 + - uid: 2812 components: - pos: -39.5,-68.5 parent: 2 type: Transform - - uid: 2825 + - uid: 2813 components: - pos: -36.5,-70.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2826 + - uid: 2814 components: - pos: 41.5,-26.5 parent: 2 type: Transform - - uid: 2827 + - uid: 2815 components: - pos: -35.5,-70.5 parent: 2 type: Transform - - uid: 2828 + - uid: 2816 components: - pos: -37.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2829 + - uid: 2817 components: - pos: -9.5,-22.5 parent: 2 type: Transform - - uid: 2830 + - uid: 2818 components: - pos: 12.5,-8.5 parent: 2 type: Transform - - uid: 2831 + - uid: 2819 components: - pos: 8.5,-5.5 parent: 2 type: Transform - - uid: 2833 + - uid: 2820 components: - pos: -8.5,-22.5 parent: 2 type: Transform - - uid: 2834 + - uid: 2821 components: - pos: -11.5,-22.5 parent: 2 type: Transform - - uid: 2835 + - uid: 2822 components: - pos: -15.5,-66.5 parent: 2 type: Transform - - uid: 2836 + - uid: 2823 components: - pos: -4.5,-12.5 parent: 2 type: Transform - - uid: 2837 + - uid: 2824 components: - pos: 2.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2838 + - uid: 2825 components: - pos: 22.5,-32.5 parent: 2 type: Transform - - uid: 2839 + - uid: 2826 components: - pos: -47.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2840 + - uid: 2827 components: - pos: -10.5,-19.5 parent: 2 type: Transform - - uid: 2841 + - uid: 2828 components: - pos: 29.5,-42.5 parent: 2 type: Transform - - uid: 2842 + - uid: 2829 components: - pos: 67.5,-13.5 parent: 2 type: Transform - - uid: 2843 + - uid: 2830 components: - pos: 25.5,-46.5 parent: 2 type: Transform - - uid: 2844 + - uid: 2831 components: - pos: -5.5,-72.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2845 + - uid: 2832 components: - pos: -7.5,10.5 parent: 2 type: Transform - - uid: 2846 + - uid: 2833 components: - pos: 15.5,-42.5 parent: 2 type: Transform - - uid: 2847 + - uid: 2834 components: - pos: 2.5,-68.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2848 + - uid: 2835 components: - pos: 7.5,-70.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2849 + - uid: 2836 components: - pos: -2.5,-26.5 parent: 2 type: Transform - - uid: 2850 + - uid: 2837 components: - pos: 12.5,-7.5 parent: 2 type: Transform - - uid: 2851 + - uid: 2838 components: - pos: 15.5,-39.5 parent: 2 type: Transform - - uid: 2852 + - uid: 2839 components: - pos: 29.5,-60.5 parent: 2 type: Transform - - uid: 2853 + - uid: 2840 components: - pos: 30.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2854 + - uid: 2841 components: - pos: 3.5,-67.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2855 + - uid: 2842 components: - pos: 15.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2856 + - uid: 2843 components: - pos: 17.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2857 + - uid: 2844 components: - pos: -3.5,-26.5 parent: 2 type: Transform - - uid: 2858 + - uid: 2845 components: - pos: 1.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2859 + - uid: 2846 components: - pos: -8.5,-26.5 parent: 2 type: Transform - - uid: 2860 + - uid: 2847 components: - pos: -4.5,1.5 parent: 2 type: Transform - - uid: 2861 + - uid: 2848 components: - pos: 8.5,-70.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2862 + - uid: 2849 components: - pos: 30.5,-61.5 parent: 2 type: Transform - - uid: 2863 + - uid: 2850 components: - pos: -16.5,-21.5 parent: 2 type: Transform - - uid: 2864 + - uid: 2851 components: - pos: -4.5,-24.5 parent: 2 type: Transform - - uid: 2865 + - uid: 2852 components: - pos: -4.5,-23.5 parent: 2 type: Transform - - uid: 2866 + - uid: 2853 components: - pos: -4.5,-30.5 parent: 2 type: Transform - - uid: 2867 + - uid: 2854 components: - pos: -4.5,-29.5 parent: 2 type: Transform - - uid: 2868 + - uid: 2855 components: - pos: -4.5,-31.5 parent: 2 type: Transform - - uid: 2869 + - uid: 2856 components: - pos: -9.5,-26.5 parent: 2 type: Transform - - uid: 2870 + - uid: 2857 components: - pos: -11.5,-26.5 parent: 2 type: Transform - - uid: 2871 + - uid: 2858 components: - pos: -15.5,-20.5 parent: 2 type: Transform - - uid: 2872 + - uid: 2859 components: - pos: -15.5,-19.5 parent: 2 type: Transform - - uid: 2873 + - uid: 2860 components: - pos: -15.5,-16.5 parent: 2 type: Transform - - uid: 2874 + - uid: 2861 components: - pos: 46.5,-23.5 parent: 2 type: Transform - - uid: 2875 + - uid: 2862 components: - pos: 1.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2876 + - uid: 2863 components: - pos: 30.5,-60.5 parent: 2 type: Transform - - uid: 2877 + - uid: 2864 components: - pos: 9.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2878 + - uid: 2865 components: - pos: 38.5,-25.5 parent: 2 type: Transform - - uid: 2879 + - uid: 2866 components: - pos: 41.5,-25.5 parent: 2 type: Transform - - uid: 2880 + - uid: 2867 components: - pos: 14.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2881 + - uid: 2868 components: - pos: 24.5,-53.5 parent: 2 type: Transform - - uid: 2882 + - uid: 2869 components: - pos: 25.5,-51.5 parent: 2 type: Transform - - uid: 2883 + - uid: 2870 components: - pos: -3.5,2.5 parent: 2 type: Transform - - uid: 2884 + - uid: 2871 components: - pos: -9.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2886 + - uid: 2872 components: - pos: 25.5,-1.5 parent: 2 type: Transform - - uid: 2888 + - uid: 2873 components: - pos: 2.5,-67.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2890 + - uid: 2874 components: - pos: -5.5,-26.5 parent: 2 type: Transform - - uid: 2891 + - uid: 2875 components: - pos: 25.5,-58.5 parent: 2 type: Transform - - uid: 2892 + - uid: 2876 components: - pos: 25.5,-59.5 parent: 2 type: Transform - - uid: 2893 + - uid: 2877 components: - pos: 26.5,-60.5 parent: 2 type: Transform - - uid: 2894 + - uid: 2878 components: - pos: 28.5,-42.5 parent: 2 type: Transform - - uid: 2895 + - uid: 2879 components: - pos: 8.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2896 + - uid: 2880 components: - pos: 19.5,-47.5 parent: 2 type: Transform - - uid: 2897 + - uid: 2881 components: - pos: 25.5,2.5 parent: 2 type: Transform - - uid: 2898 + - uid: 2882 components: - pos: -1.5,-74.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2899 + - uid: 2883 components: - pos: 30.5,1.5 parent: 2 type: Transform - - uid: 2900 + - uid: 2884 components: - pos: -1.5,-76.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2901 + - uid: 2885 components: - pos: -5.5,-74.5 parent: 2 type: Transform - - uid: 2902 + - uid: 2886 components: - pos: -5.5,-71.5 parent: 2 type: Transform - - uid: 2903 + - uid: 2887 components: - pos: 31.5,2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2904 + - uid: 2888 components: - pos: 19.5,-42.5 parent: 2 type: Transform - - uid: 2905 + - uid: 2889 components: - pos: 44.5,7.5 parent: 2 type: Transform - - uid: 2906 + - uid: 2890 components: - pos: 4.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2907 + - uid: 2891 components: - pos: -17.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2908 + - uid: 2892 components: - pos: 10.5,-42.5 parent: 2 type: Transform - - uid: 2909 + - uid: 2893 components: - pos: -14.5,-47.5 parent: 2 type: Transform - - uid: 2910 + - uid: 2894 components: - pos: -12.5,-49.5 parent: 2 type: Transform - - uid: 2911 + - uid: 2895 components: - pos: -13.5,-49.5 parent: 2 type: Transform - - uid: 2912 + - uid: 2896 components: - pos: -13.5,-48.5 parent: 2 type: Transform - - uid: 2913 + - uid: 2897 components: - pos: -13.5,-47.5 parent: 2 type: Transform - - uid: 2914 + - uid: 2898 components: - pos: -12.5,-47.5 parent: 2 type: Transform - - uid: 2915 + - uid: 2899 components: - pos: -10.5,-18.5 parent: 2 type: Transform - - uid: 2916 + - uid: 2900 components: - pos: 21.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2917 + - uid: 2901 components: - pos: 20.5,-11.5 parent: 2 type: Transform - - uid: 2918 + - uid: 2902 components: - pos: 20.5,-12.5 parent: 2 type: Transform - - uid: 2919 + - uid: 2903 components: - pos: 22.5,-41.5 parent: 2 type: Transform - - uid: 2920 + - uid: 2904 components: - pos: 19.5,-13.5 parent: 2 type: Transform - - uid: 2921 + - uid: 2905 components: - pos: 22.5,-11.5 parent: 2 type: Transform - - uid: 2922 + - uid: 2906 components: - pos: 62.5,-8.5 parent: 2 type: Transform - - uid: 2923 + - uid: 2907 components: - pos: -3.5,-53.5 parent: 2 type: Transform - - uid: 2924 + - uid: 2908 components: - pos: -14.5,-58.5 parent: 2 type: Transform - - uid: 2925 + - uid: 2909 components: - pos: 8.5,-60.5 parent: 2 type: Transform - - uid: 2926 + - uid: 2910 components: - pos: -8.5,-61.5 parent: 2 type: Transform - - uid: 2927 + - uid: 2911 components: - pos: -20.5,-88.5 parent: 2 type: Transform - - uid: 2928 + - uid: 2912 components: - pos: 28.5,-60.5 parent: 2 type: Transform - - uid: 2929 + - uid: 2913 components: - pos: -8.5,-24.5 parent: 2 type: Transform - - uid: 2930 + - uid: 2914 components: - pos: -4.5,-25.5 parent: 2 type: Transform - - uid: 2931 + - uid: 2915 components: - pos: 8.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2932 + - uid: 2916 components: - pos: 8.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2933 + - uid: 2917 components: - pos: -17.5,-61.5 parent: 2 type: Transform - - uid: 2934 + - uid: 2918 components: - pos: -18.5,-61.5 parent: 2 type: Transform - - uid: 2935 + - uid: 2919 components: - pos: 20.5,0.5 parent: 2 type: Transform - - uid: 2936 + - uid: 2920 components: - pos: -12.5,-74.5 parent: 2 type: Transform - - uid: 2937 + - uid: 2921 components: - pos: 40.5,-25.5 parent: 2 type: Transform - - uid: 2938 + - uid: 2922 components: - pos: 31.5,-62.5 parent: 2 type: Transform - - uid: 2939 + - uid: 2923 components: - pos: 22.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2940 + - uid: 2924 components: - pos: 25.5,-47.5 parent: 2 type: Transform - - uid: 2941 + - uid: 2925 components: - pos: 5.5,-70.5 parent: 2 type: Transform - - uid: 2942 + - uid: 2926 components: - pos: 4.5,8.5 parent: 2 type: Transform - - uid: 2943 + - uid: 2927 components: - pos: -31.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2944 + - uid: 2928 components: - pos: 15.5,-41.5 parent: 2 type: Transform - - uid: 2945 + - uid: 2929 components: - pos: 20.5,1.5 parent: 2 type: Transform - - uid: 2946 + - uid: 2930 components: - pos: -8.5,-23.5 parent: 2 type: Transform - - uid: 2947 + - uid: 2931 components: - pos: 25.5,-60.5 parent: 2 type: Transform - - uid: 2948 + - uid: 2932 components: - pos: -1.5,-69.5 parent: 2 type: Transform - - uid: 2949 + - uid: 2933 components: - - pos: 19.5,-30.5 + - pos: 18.5,-32.5 parent: 2 type: Transform - - uid: 2950 + - uid: 2934 components: - pos: -1.5,-26.5 parent: 2 type: Transform - - uid: 2951 + - uid: 2935 components: - pos: -41.5,28.5 parent: 2 type: Transform - - uid: 2952 + - uid: 2936 components: - pos: -37.5,-68.5 parent: 2 type: Transform - - uid: 2953 + - uid: 2937 components: - pos: 1.5,6.5 parent: 2 type: Transform - - uid: 2954 + - uid: 2938 components: - pos: 0.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2955 + - uid: 2939 components: - pos: -10.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2956 + - uid: 2940 components: - pos: 4.5,-46.5 parent: 2 type: Transform - - uid: 2957 + - uid: 2941 components: - pos: -8.5,-46.5 parent: 2 type: Transform - - uid: 2958 + - uid: 2942 components: - pos: 17.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2959 + - uid: 2943 components: - pos: 18.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2960 + - uid: 2944 components: - pos: -6.5,-26.5 parent: 2 type: Transform - - uid: 2961 + - uid: 2945 components: - pos: 24.5,-42.5 parent: 2 type: Transform - - uid: 2962 + - uid: 2946 components: - pos: 14.5,-42.5 parent: 2 type: Transform - - uid: 2963 + - uid: 2947 components: - pos: 17.5,-47.5 parent: 2 type: Transform - - uid: 2964 + - uid: 2948 components: - pos: 17.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2965 + - uid: 2949 components: - pos: 15.5,-48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2966 + - uid: 2950 components: - pos: 4.5,-70.5 parent: 2 type: Transform - - uid: 2967 + - uid: 2951 components: - pos: 28.5,-47.5 parent: 2 type: Transform - - uid: 2968 + - uid: 2952 components: - pos: 25.5,-49.5 parent: 2 type: Transform - - uid: 2969 + - uid: 2953 components: - pos: -1.5,-71.5 parent: 2 type: Transform - - uid: 2970 + - uid: 2954 components: - pos: -6.5,1.5 parent: 2 type: Transform - - uid: 2971 + - uid: 2955 components: - pos: 15.5,-49.5 parent: 2 type: Transform - - uid: 2972 + - uid: 2956 components: - pos: -2.5,11.5 parent: 2 type: Transform - - uid: 2974 + - uid: 2957 components: - pos: 4.5,6.5 parent: 2 type: Transform - - uid: 2975 + - uid: 2958 components: - pos: 46.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2976 + - uid: 2959 components: - pos: 15.5,-35.5 parent: 2 type: Transform - - uid: 2977 + - uid: 2960 components: - pos: 15.5,-36.5 parent: 2 type: Transform - - uid: 2978 + - uid: 2961 components: - pos: 20.5,-14.5 parent: 2 type: Transform - - uid: 2979 + - uid: 2962 components: - pos: 20.5,-15.5 parent: 2 type: Transform - - uid: 2980 + - uid: 2963 components: - pos: 20.5,-16.5 parent: 2 type: Transform - - uid: 2981 + - uid: 2964 components: - pos: 20.5,-17.5 parent: 2 type: Transform - - uid: 2982 + - uid: 2965 components: - pos: 19.5,-17.5 parent: 2 type: Transform - - uid: 2983 + - uid: 2966 components: - pos: 17.5,-17.5 parent: 2 type: Transform - - uid: 2984 + - uid: 2967 components: - pos: 23.5,-17.5 parent: 2 type: Transform - - uid: 2985 + - uid: 2968 components: - pos: 25.5,-18.5 parent: 2 type: Transform - - uid: 2986 + - uid: 2969 components: - pos: 27.5,-17.5 parent: 2 type: Transform - - uid: 2987 + - uid: 2970 components: - pos: 27.5,-18.5 parent: 2 type: Transform - - uid: 2988 + - uid: 2971 components: - pos: 23.5,-18.5 parent: 2 type: Transform - - uid: 2989 + - uid: 2972 components: - pos: 28.5,-17.5 parent: 2 type: Transform - - uid: 2990 + - uid: 2973 components: - pos: 29.5,-17.5 parent: 2 type: Transform - - uid: 2991 + - uid: 2974 components: - pos: 30.5,-17.5 parent: 2 type: Transform - - uid: 2992 + - uid: 2975 components: - pos: 30.5,-16.5 parent: 2 type: Transform - - uid: 2993 + - uid: 2976 components: - pos: 32.5,-16.5 parent: 2 type: Transform - - uid: 2994 + - uid: 2977 components: - pos: 32.5,-15.5 parent: 2 type: Transform - - uid: 2995 + - uid: 2978 components: - pos: 32.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2996 + - uid: 2979 components: - pos: 32.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2997 + - uid: 2980 components: - pos: 32.5,-17.5 parent: 2 type: Transform - - uid: 2998 + - uid: 2981 components: - pos: 34.5,-18.5 parent: 2 type: Transform - - uid: 2999 + - uid: 2982 components: - pos: 20.5,-8.5 parent: 2 type: Transform - - uid: 3000 + - uid: 2983 components: - pos: 19.5,-8.5 parent: 2 type: Transform - - uid: 3001 + - uid: 2984 components: - pos: 17.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3002 + - uid: 2985 components: - pos: 15.5,-8.5 parent: 2 type: Transform - - uid: 3003 + - uid: 2986 components: - pos: 14.5,-7.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3004 + - uid: 2987 components: - pos: 9.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3005 + - uid: 2988 components: - pos: 26.5,-14.5 parent: 2 type: Transform - - uid: 3006 + - uid: 2989 components: - pos: 29.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3007 + - uid: 2990 components: - pos: 27.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3008 + - uid: 2991 components: - pos: 30.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3009 + - uid: 2992 components: - pos: 31.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3010 + - uid: 2993 components: - pos: -4.5,-15.5 parent: 2 type: Transform - - uid: 3011 + - uid: 2994 components: - pos: -15.5,-17.5 parent: 2 type: Transform - - uid: 3012 + - uid: 2995 components: - pos: -12.5,-73.5 parent: 2 type: Transform - - uid: 3013 + - uid: 2996 components: - pos: -4.5,-19.5 parent: 2 type: Transform - - uid: 3014 + - uid: 2997 components: - pos: -1.5,-63.5 parent: 2 type: Transform - - uid: 3015 + - uid: 2998 components: - pos: -7.5,-47.5 parent: 2 type: Transform - - uid: 3016 + - uid: 2999 components: - pos: 25.5,-24.5 parent: 2 type: Transform - - uid: 3017 + - uid: 3000 components: - pos: 23.5,-23.5 parent: 2 type: Transform - - uid: 3018 + - uid: 3001 components: - pos: 20.5,-22.5 parent: 2 type: Transform - - uid: 3019 + - uid: 3002 components: - pos: 30.5,-24.5 parent: 2 type: Transform - - uid: 3020 + - uid: 3003 components: - pos: -8.5,-47.5 parent: 2 type: Transform - - uid: 3021 + - uid: 3004 components: - pos: 27.5,-31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3023 + - uid: 3005 components: - pos: 22.5,-33.5 parent: 2 type: Transform - - uid: 3025 + - uid: 3006 components: - pos: 22.5,-31.5 parent: 2 type: Transform - - uid: 3026 + - uid: 3007 components: - pos: -7.5,-45.5 parent: 2 type: Transform - - uid: 3027 + - uid: 3008 components: - pos: -5.5,-45.5 parent: 2 type: Transform - - uid: 3028 + - uid: 3009 components: - pos: -4.5,-45.5 parent: 2 type: Transform - - uid: 3029 + - uid: 3010 components: - pos: -3.5,-45.5 parent: 2 type: Transform - - uid: 3030 + - uid: 3011 components: - pos: 5.5,-46.5 parent: 2 type: Transform - - uid: 3031 + - uid: 3012 components: - pos: 6.5,-46.5 parent: 2 type: Transform - - uid: 3032 + - uid: 3013 components: - pos: -12.5,-54.5 parent: 2 type: Transform - - uid: 3033 + - uid: 3014 components: - pos: 19.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3034 + - uid: 3015 components: - pos: -2.5,-42.5 parent: 2 type: Transform - - uid: 3035 + - uid: 3016 components: - pos: -4.5,-42.5 parent: 2 type: Transform - - uid: 3036 + - uid: 3017 components: - pos: -6.5,-42.5 parent: 2 type: Transform - - uid: 3037 + - uid: 3018 components: - pos: -7.5,-42.5 parent: 2 type: Transform - - uid: 3038 + - uid: 3019 components: - pos: -8.5,-42.5 parent: 2 type: Transform - - uid: 3039 + - uid: 3020 components: - pos: -9.5,-42.5 parent: 2 type: Transform - - uid: 3040 + - uid: 3021 components: - pos: -10.5,-42.5 parent: 2 type: Transform - - uid: 3041 + - uid: 3022 components: - pos: -11.5,-42.5 parent: 2 type: Transform - - uid: 3042 + - uid: 3023 components: - pos: -12.5,-42.5 parent: 2 type: Transform - - uid: 3043 + - uid: 3024 components: - pos: 1.5,-41.5 parent: 2 type: Transform - - uid: 3044 + - uid: 3025 components: - pos: 2.5,-41.5 parent: 2 type: Transform - - uid: 3045 + - uid: 3026 components: - pos: 3.5,-41.5 parent: 2 type: Transform - - uid: 3046 + - uid: 3027 components: - pos: 5.5,-41.5 parent: 2 type: Transform - - uid: 3047 + - uid: 3028 components: - pos: 5.5,-42.5 parent: 2 type: Transform - - uid: 3048 + - uid: 3029 components: - pos: -4.5,-38.5 parent: 2 type: Transform - - uid: 3049 + - uid: 3030 components: - pos: -4.5,-36.5 parent: 2 type: Transform - - uid: 3050 + - uid: 3031 components: - pos: -4.5,-35.5 parent: 2 type: Transform - - uid: 3051 + - uid: 3032 components: - pos: -4.5,-34.5 parent: 2 type: Transform - - uid: 3052 + - uid: 3033 components: - pos: -12.5,-43.5 parent: 2 type: Transform - - uid: 3053 + - uid: 3034 components: - pos: -12.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3054 + - uid: 3035 components: - pos: -12.5,-46.5 parent: 2 type: Transform - - uid: 3055 + - uid: 3036 components: - pos: -5.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3056 + - uid: 3037 components: - pos: 26.5,-42.5 parent: 2 type: Transform - - uid: 3058 + - uid: 3038 components: - pos: 30.5,2.5 parent: 2 type: Transform - - uid: 3059 + - uid: 3039 components: - pos: 18.5,-41.5 parent: 2 type: Transform - - uid: 3060 + - uid: 3040 components: - pos: 8.5,-68.5 parent: 2 type: Transform - - uid: 3061 + - uid: 3041 components: - pos: 26.5,-47.5 parent: 2 type: Transform - - uid: 3062 + - uid: 3042 components: - pos: -4.5,-27.5 parent: 2 type: Transform - - uid: 3063 + - uid: 3043 components: - pos: 29.5,2.5 parent: 2 type: Transform - - uid: 3064 + - uid: 3044 components: - pos: 25.5,-48.5 parent: 2 type: Transform - - uid: 3065 + - uid: 3045 components: - pos: -4.5,7.5 parent: 2 type: Transform - - uid: 3067 + - uid: 3046 components: - pos: 28.5,-32.5 parent: 2 type: Transform - - uid: 3068 + - uid: 3047 components: - pos: 30.5,-30.5 parent: 2 type: Transform - - uid: 3069 + - uid: 3048 components: - pos: 30.5,-29.5 parent: 2 type: Transform - - uid: 3070 + - uid: 3049 components: - pos: 30.5,-28.5 parent: 2 type: Transform - - uid: 3071 + - uid: 3050 components: - pos: 62.5,-10.5 parent: 2 type: Transform - - uid: 3072 + - uid: 3051 components: - pos: 9.5,2.5 parent: 2 type: Transform - - uid: 3073 + - uid: 3052 components: - pos: 2.5,2.5 parent: 2 type: Transform - - uid: 3074 + - uid: 3053 components: - pos: 27.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3075 + - uid: 3054 components: - pos: 62.5,-12.5 parent: 2 type: Transform - - uid: 3077 + - uid: 3055 components: - pos: -4.5,-22.5 parent: 2 type: Transform - - uid: 3078 + - uid: 3056 components: - pos: -4.5,-3.5 parent: 2 type: Transform - - uid: 3079 + - uid: 3057 components: - pos: -4.5,-2.5 parent: 2 type: Transform - - uid: 3080 + - uid: 3058 components: - pos: -4.5,-0.5 parent: 2 type: Transform - - uid: 3081 + - uid: 3059 components: - pos: -4.5,-1.5 parent: 2 type: Transform - - uid: 3082 + - uid: 3060 components: - pos: -8.5,-0.5 parent: 2 type: Transform - - uid: 3083 + - uid: 3061 components: - pos: -8.5,0.5 parent: 2 type: Transform - - uid: 3084 + - uid: 3062 components: - pos: -3.5,-42.5 parent: 2 type: Transform - - uid: 3085 + - uid: 3063 components: - pos: -0.5,-41.5 parent: 2 type: Transform - - uid: 3086 + - uid: 3064 components: - pos: -4.5,-32.5 parent: 2 type: Transform - - uid: 3087 + - uid: 3065 components: - pos: -6.5,-63.5 parent: 2 type: Transform - - uid: 3088 + - uid: 3066 components: - pos: 22.5,-42.5 parent: 2 type: Transform - - uid: 3089 + - uid: 3067 components: - pos: -1.5,-78.5 parent: 2 type: Transform - - uid: 3090 + - uid: 3068 components: - pos: -4.5,-74.5 parent: 2 type: Transform - - uid: 3091 + - uid: 3069 components: - pos: 13.5,1.5 parent: 2 type: Transform - - uid: 3092 + - uid: 3070 components: - pos: 3.5,0.5 parent: 2 type: Transform - - uid: 3093 + - uid: 3071 components: - pos: 11.5,2.5 parent: 2 type: Transform - - uid: 3094 + - uid: 3072 components: - pos: 5.5,6.5 parent: 2 type: Transform - - uid: 3095 + - uid: 3073 components: - pos: 20.5,-0.5 parent: 2 type: Transform - - uid: 3096 + - uid: 3074 components: - pos: 35.5,-37.5 parent: 2 type: Transform - - uid: 3097 + - uid: 3075 components: - pos: 9.5,-42.5 parent: 2 type: Transform - - uid: 3098 + - uid: 3076 components: - pos: 37.5,13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3099 + - uid: 3077 components: - pos: -33.5,-55.5 parent: 2 type: Transform - - uid: 3100 + - uid: 3078 components: - pos: -38.5,-68.5 parent: 2 type: Transform - - uid: 3101 + - uid: 3079 components: - pos: -8.5,-5.5 parent: 2 type: Transform - - uid: 3102 + - uid: 3080 components: - pos: -9.5,-5.5 parent: 2 type: Transform - - uid: 3103 + - uid: 3081 components: - pos: -9.5,-3.5 parent: 2 type: Transform - - uid: 3104 + - uid: 3082 components: - pos: -4.5,-39.5 parent: 2 type: Transform - - uid: 3105 + - uid: 3083 components: - pos: 0.5,-40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3106 + - uid: 3084 components: - pos: 21.5,-32.5 parent: 2 type: Transform - - uid: 3107 + - uid: 3085 components: - pos: 0.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3108 + - uid: 3086 components: - pos: -19.5,-65.5 parent: 2 type: Transform - - uid: 3109 + - uid: 3087 components: - pos: -19.5,-67.5 parent: 2 type: Transform - - uid: 3110 + - uid: 3088 components: - pos: -19.5,-71.5 parent: 2 type: Transform - - uid: 3111 + - uid: 3089 components: - pos: -18.5,-73.5 parent: 2 type: Transform - - uid: 3112 + - uid: 3090 components: - pos: -18.5,-75.5 parent: 2 type: Transform - - uid: 3113 + - uid: 3091 components: - pos: -16.5,-77.5 parent: 2 type: Transform - - uid: 3114 + - uid: 3092 components: - pos: -24.5,-14.5 parent: 2 type: Transform - - uid: 3115 + - uid: 3093 components: - pos: 23.5,-24.5 parent: 2 type: Transform - - uid: 3117 + - uid: 3094 components: - pos: 45.5,-24.5 parent: 2 type: Transform - - uid: 3118 + - uid: 3095 components: - pos: -47.5,36.5 parent: 2 type: Transform - - uid: 3119 + - uid: 3096 components: - pos: 12.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3120 + - uid: 3097 components: - pos: -14.5,-57.5 parent: 2 type: Transform - - uid: 3121 + - uid: 3098 components: - pos: 0.5,-48.5 parent: 2 type: Transform - - uid: 3122 + - uid: 3099 components: - pos: 13.5,-0.5 parent: 2 type: Transform - - uid: 3123 + - uid: 3100 components: - pos: 20.5,2.5 parent: 2 type: Transform - - uid: 3124 + - uid: 3101 components: - pos: 20.5,-1.5 parent: 2 type: Transform - - uid: 3125 + - uid: 3102 components: - pos: 17.5,-13.5 parent: 2 type: Transform - - uid: 3126 + - uid: 3103 components: - pos: 62.5,-11.5 parent: 2 type: Transform - - uid: 3127 + - uid: 3104 components: - pos: -8.5,-25.5 parent: 2 type: Transform - - uid: 3128 + - uid: 3105 components: - pos: -36.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3129 + - uid: 3106 components: - pos: 19.5,-32.5 parent: 2 type: Transform - - uid: 3130 + - uid: 3107 components: - pos: 1.5,11.5 parent: 2 type: Transform - - uid: 3131 + - uid: 3108 components: - pos: 22.5,-17.5 parent: 2 type: Transform - - uid: 3132 + - uid: 3109 components: - pos: 24.5,-17.5 parent: 2 type: Transform - - uid: 3133 + - uid: 3110 components: - pos: 25.5,-17.5 parent: 2 type: Transform - - uid: 3134 + - uid: 3111 components: - pos: 26.5,-17.5 parent: 2 type: Transform - - uid: 3135 + - uid: 3112 components: - pos: 17.5,-40.5 parent: 2 type: Transform - - uid: 3136 + - uid: 3113 components: - pos: -4.5,-17.5 parent: 2 type: Transform - - uid: 3137 + - uid: 3114 components: - pos: 20.5,-47.5 parent: 2 type: Transform - - uid: 3138 + - uid: 3115 components: - pos: -3.5,-68.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3139 + - uid: 3116 components: - pos: 6.5,-66.5 parent: 2 type: Transform - - uid: 3140 + - uid: 3117 components: - pos: 6.5,-67.5 parent: 2 type: Transform - - uid: 3141 + - uid: 3118 components: - pos: 5.5,-67.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3142 + - uid: 3119 components: - pos: 4.5,-67.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3143 + - uid: 3120 components: - pos: 6.5,-72.5 parent: 2 type: Transform - - uid: 3144 + - uid: 3121 components: - pos: 3.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3145 + - uid: 3122 components: - pos: 6.5,-70.5 parent: 2 type: Transform - - uid: 3146 + - uid: 3123 components: - pos: -0.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3147 + - uid: 3124 components: - pos: -3.5,0.5 parent: 2 type: Transform - - uid: 3148 + - uid: 3125 components: - pos: -3.5,1.5 parent: 2 type: Transform - - uid: 3149 + - uid: 3126 components: - pos: 15.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3150 + - uid: 3127 components: - pos: 17.5,-46.5 parent: 2 type: Transform - - uid: 3151 + - uid: 3128 components: - pos: 19.5,-48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3152 + - uid: 3129 components: - pos: 25.5,-53.5 parent: 2 type: Transform - - uid: 3153 + - uid: 3130 components: - pos: 18.5,-42.5 parent: 2 type: Transform - - uid: 3154 + - uid: 3131 components: - pos: 16.5,-40.5 parent: 2 type: Transform - - uid: 3155 + - uid: 3132 components: - pos: -4.5,-26.5 parent: 2 type: Transform - - uid: 3156 + - uid: 3133 components: - pos: 33.5,-32.5 parent: 2 type: Transform - - uid: 3157 + - uid: 3134 components: - pos: 34.5,-32.5 parent: 2 type: Transform - - uid: 3158 + - uid: 3135 components: - pos: 15.5,-31.5 parent: 2 type: Transform - - uid: 3159 + - uid: 3136 components: - pos: 15.5,-30.5 parent: 2 type: Transform - - uid: 3160 + - uid: 3137 components: - pos: 15.5,-29.5 parent: 2 type: Transform - - uid: 3161 + - uid: 3138 components: - pos: 15.5,-21.5 parent: 2 type: Transform - - uid: 3162 + - uid: 3139 components: - pos: 15.5,-22.5 parent: 2 type: Transform - - uid: 3163 + - uid: 3140 components: - pos: 15.5,-23.5 parent: 2 type: Transform - - uid: 3164 + - uid: 3141 components: - pos: 15.5,-24.5 parent: 2 type: Transform - - uid: 3165 + - uid: 3142 components: - pos: 15.5,-25.5 parent: 2 type: Transform - - uid: 3166 + - uid: 3143 components: - pos: 15.5,-26.5 parent: 2 type: Transform - - uid: 3167 + - uid: 3144 components: - pos: 34.5,-17.5 parent: 2 type: Transform - - uid: 3168 + - uid: 3145 components: - pos: 35.5,-18.5 parent: 2 type: Transform - - uid: 3169 + - uid: 3146 components: - pos: 18.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3170 + - uid: 3147 components: - pos: 16.5,-8.5 parent: 2 type: Transform - - uid: 3171 + - uid: 3148 components: - pos: 14.5,-8.5 parent: 2 type: Transform - - uid: 3172 + - uid: 3149 components: - pos: 14.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3173 + - uid: 3150 components: - pos: 14.5,-1.5 parent: 2 type: Transform - - uid: 3174 + - uid: 3151 components: - pos: 15.5,-9.5 parent: 2 type: Transform - - uid: 3175 + - uid: 3152 components: - pos: 15.5,-12.5 parent: 2 type: Transform - - uid: 3176 + - uid: 3153 components: - pos: 39.5,-25.5 parent: 2 type: Transform - - uid: 3177 + - uid: 3154 components: - pos: 39.5,-26.5 parent: 2 type: Transform - - uid: 3178 + - uid: 3155 components: - pos: -25.5,-86.5 parent: 2 type: Transform - - uid: 3179 + - uid: 3156 components: - pos: -25.5,-85.5 parent: 2 type: Transform - - uid: 3180 + - uid: 3157 components: - pos: 5.5,-53.5 parent: 2 type: Transform - - uid: 3181 + - uid: 3158 components: - pos: 6.5,-53.5 parent: 2 type: Transform - - uid: 3182 + - uid: 3159 components: - pos: 7.5,-53.5 parent: 2 type: Transform - - uid: 3183 + - uid: 3160 components: - pos: 8.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3184 + - uid: 3161 components: - pos: 8.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3185 + - uid: 3162 components: - pos: 9.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3186 + - uid: 3163 components: - pos: 10.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3187 + - uid: 3164 components: - pos: 10.5,-49.5 parent: 2 type: Transform - - uid: 3188 + - uid: 3165 components: - pos: 15.5,-43.5 parent: 2 type: Transform - - uid: 3189 + - uid: 3166 components: - pos: -16.5,-61.5 parent: 2 type: Transform - - uid: 3190 + - uid: 3167 components: - pos: -19.5,-64.5 parent: 2 type: Transform - - uid: 3191 + - uid: 3168 components: - pos: -19.5,-66.5 parent: 2 type: Transform - - uid: 3192 + - uid: 3169 components: - pos: -14.5,-67.5 parent: 2 type: Transform - - uid: 3193 + - uid: 3170 components: - pos: -28.5,-79.5 parent: 2 type: Transform - - uid: 3194 + - uid: 3171 components: - pos: -28.5,-78.5 parent: 2 type: Transform - - uid: 3195 + - uid: 3172 components: - pos: -27.5,-78.5 parent: 2 type: Transform - - uid: 3196 + - uid: 3173 components: - pos: -26.5,-78.5 parent: 2 type: Transform - - uid: 3197 + - uid: 3174 components: - pos: -26.5,-77.5 parent: 2 type: Transform - - uid: 3198 + - uid: 3175 components: - pos: -25.5,-77.5 parent: 2 type: Transform - - uid: 3199 + - uid: 3176 components: - pos: -22.5,-86.5 parent: 2 type: Transform - - uid: 3200 + - uid: 3177 components: - pos: -20.5,-85.5 parent: 2 type: Transform - - uid: 3201 + - uid: 3178 components: - pos: -21.5,-85.5 parent: 2 type: Transform - - uid: 3202 + - uid: 3179 components: - pos: -24.5,-85.5 parent: 2 type: Transform - - uid: 3203 + - uid: 3180 components: - pos: -23.5,-85.5 parent: 2 type: Transform - - uid: 3204 + - uid: 3181 components: - pos: -22.5,-85.5 parent: 2 type: Transform - - uid: 3205 + - uid: 3182 components: - pos: -22.5,-84.5 parent: 2 type: Transform - - uid: 3206 + - uid: 3183 components: - pos: -22.5,-81.5 parent: 2 type: Transform - - uid: 3207 + - uid: 3184 components: - pos: -22.5,-83.5 parent: 2 type: Transform - - uid: 3208 + - uid: 3185 components: - pos: -22.5,-82.5 parent: 2 type: Transform - - uid: 3209 + - uid: 3186 components: - pos: -22.5,-80.5 parent: 2 type: Transform - - uid: 3210 + - uid: 3187 components: - pos: -23.5,-80.5 parent: 2 type: Transform - - uid: 3211 + - uid: 3188 components: - pos: -23.5,-79.5 parent: 2 type: Transform - - uid: 3212 + - uid: 3189 components: - pos: -23.5,-78.5 parent: 2 type: Transform - - uid: 3213 + - uid: 3190 components: - pos: -23.5,-77.5 parent: 2 type: Transform - - uid: 3214 + - uid: 3191 components: - pos: -24.5,-77.5 parent: 2 type: Transform - - uid: 3215 + - uid: 3192 components: - pos: -24.5,-76.5 parent: 2 type: Transform - - uid: 3216 + - uid: 3193 components: - pos: -24.5,-75.5 parent: 2 type: Transform - - uid: 3217 + - uid: 3194 components: - pos: -24.5,-74.5 parent: 2 type: Transform - - uid: 3218 + - uid: 3195 components: - pos: -24.5,-73.5 parent: 2 type: Transform - - uid: 3219 + - uid: 3196 components: - pos: -24.5,-72.5 parent: 2 type: Transform - - uid: 3220 + - uid: 3197 components: - pos: -23.5,-72.5 parent: 2 type: Transform - - uid: 3221 + - uid: 3198 components: - pos: -22.5,-72.5 parent: 2 type: Transform - - uid: 3222 + - uid: 3199 components: - pos: -21.5,-72.5 parent: 2 type: Transform - - uid: 3223 + - uid: 3200 components: - pos: -21.5,-71.5 parent: 2 type: Transform - - uid: 3224 + - uid: 3201 components: - pos: -20.5,-79.5 parent: 2 type: Transform - - uid: 3225 + - uid: 3202 components: - pos: -19.5,-79.5 parent: 2 type: Transform - - uid: 3226 + - uid: 3203 components: - pos: -19.5,-78.5 parent: 2 type: Transform - - uid: 3227 + - uid: 3204 components: - pos: 33.5,3.5 parent: 2 type: Transform - - uid: 3228 + - uid: 3205 components: - pos: 33.5,4.5 parent: 2 type: Transform - - uid: 3229 + - uid: 3206 components: - pos: 33.5,7.5 parent: 2 type: Transform - - uid: 3230 + - uid: 3207 components: - pos: 33.5,6.5 parent: 2 type: Transform - - uid: 3231 + - uid: 3208 components: - pos: 33.5,5.5 parent: 2 type: Transform - - uid: 3232 + - uid: 3209 components: - pos: 26.5,7.5 parent: 2 type: Transform - - uid: 3233 + - uid: 3210 components: - pos: 33.5,0.5 parent: 2 type: Transform - - uid: 3234 + - uid: 3211 components: - pos: 33.5,-0.5 parent: 2 type: Transform - - uid: 3235 + - uid: 3212 components: - pos: 33.5,-1.5 parent: 2 type: Transform - - uid: 3236 + - uid: 3213 components: - pos: 33.5,-2.5 parent: 2 type: Transform - - uid: 3237 + - uid: 3214 components: - pos: 33.5,-3.5 parent: 2 type: Transform - - uid: 3238 + - uid: 3215 components: - pos: 33.5,-4.5 parent: 2 type: Transform - - uid: 3239 + - uid: 3216 components: - pos: 33.5,-5.5 parent: 2 type: Transform - - uid: 3240 + - uid: 3217 components: - pos: 27.5,7.5 parent: 2 type: Transform - - uid: 3241 + - uid: 3218 components: - pos: 28.5,7.5 parent: 2 type: Transform - - uid: 3242 + - uid: 3219 components: - pos: 29.5,7.5 parent: 2 type: Transform - - uid: 3243 + - uid: 3220 components: - pos: 30.5,7.5 parent: 2 type: Transform - - uid: 3244 + - uid: 3221 components: - pos: 31.5,7.5 parent: 2 type: Transform - - uid: 3245 + - uid: 3222 components: - pos: 32.5,7.5 parent: 2 type: Transform - - uid: 3246 + - uid: 3223 components: - pos: 26.5,8.5 parent: 2 type: Transform - - uid: 3247 + - uid: 3224 components: - pos: 26.5,9.5 parent: 2 type: Transform - - uid: 3248 + - uid: 3225 components: - pos: 26.5,10.5 parent: 2 type: Transform - - uid: 3249 + - uid: 3226 components: - pos: 26.5,11.5 parent: 2 type: Transform - - uid: 3250 + - uid: 3227 components: - pos: 26.5,12.5 parent: 2 type: Transform - - uid: 3251 + - uid: 3228 components: - pos: 26.5,13.5 parent: 2 type: Transform - - uid: 3252 + - uid: 3229 components: - pos: 25.5,7.5 parent: 2 type: Transform - - uid: 3253 + - uid: 3230 components: - pos: 24.5,7.5 parent: 2 type: Transform - - uid: 3254 + - uid: 3231 components: - pos: 23.5,7.5 parent: 2 type: Transform - - uid: 3255 + - uid: 3232 components: - pos: 22.5,7.5 parent: 2 type: Transform - - uid: 3256 + - uid: 3233 components: - pos: 21.5,7.5 parent: 2 type: Transform - - uid: 3257 + - uid: 3234 components: - pos: 34.5,0.5 parent: 2 type: Transform - - uid: 3258 + - uid: 3235 components: - pos: 37.5,-25.5 parent: 2 type: Transform - - uid: 3259 + - uid: 3236 components: - pos: 36.5,-25.5 parent: 2 type: Transform - - uid: 3260 + - uid: 3237 components: - pos: 36.5,-24.5 parent: 2 type: Transform - - uid: 3261 + - uid: 3238 components: - pos: 36.5,-23.5 parent: 2 type: Transform - - uid: 3262 + - uid: 3239 components: - pos: 36.5,-22.5 parent: 2 type: Transform - - uid: 3263 + - uid: 3240 components: - pos: 35.5,-22.5 parent: 2 type: Transform - - uid: 3264 + - uid: 3241 components: - pos: 35.5,-21.5 parent: 2 type: Transform - - uid: 3265 + - uid: 3242 components: - pos: 35.5,-25.5 parent: 2 type: Transform - - uid: 3266 + - uid: 3243 components: - pos: 34.5,-25.5 parent: 2 type: Transform - - uid: 3267 + - uid: 3244 components: - pos: 35.5,-26.5 parent: 2 type: Transform - - uid: 3268 + - uid: 3245 components: - pos: 35.5,-27.5 parent: 2 type: Transform - - uid: 3269 + - uid: 3246 components: - pos: 35.5,-28.5 parent: 2 type: Transform - - uid: 3270 + - uid: 3247 components: - pos: 35.5,-29.5 parent: 2 type: Transform - - uid: 3271 + - uid: 3248 components: - pos: 35.5,-30.5 parent: 2 type: Transform - - uid: 3272 + - uid: 3249 components: - pos: 35.5,-31.5 parent: 2 type: Transform - - uid: 3273 + - uid: 3250 components: - pos: 35.5,-32.5 parent: 2 type: Transform - - uid: 3274 + - uid: 3251 components: - pos: 35.5,-33.5 parent: 2 type: Transform - - uid: 3275 + - uid: 3252 components: - pos: 35.5,-34.5 parent: 2 type: Transform - - uid: 3276 + - uid: 3253 components: - pos: 35.5,-35.5 parent: 2 type: Transform - - uid: 3277 + - uid: 3254 components: - pos: 35.5,-36.5 parent: 2 type: Transform - - uid: 3278 + - uid: 3255 components: - pos: 36.5,-30.5 parent: 2 type: Transform - - uid: 3279 + - uid: 3256 components: - pos: 37.5,-30.5 parent: 2 type: Transform - - uid: 3280 + - uid: 3257 components: - pos: 38.5,-30.5 parent: 2 type: Transform - - uid: 3281 + - uid: 3258 components: - pos: 39.5,-30.5 parent: 2 type: Transform - - uid: 3282 + - uid: 3259 components: - pos: 31.5,-4.5 parent: 2 type: Transform - - uid: 3283 + - uid: 3260 components: - pos: -4.5,-10.5 parent: 2 type: Transform - - uid: 3284 + - uid: 3261 components: - pos: -4.5,-9.5 parent: 2 type: Transform - - uid: 3285 + - uid: 3262 components: - pos: -4.5,-8.5 parent: 2 type: Transform - - uid: 3286 + - uid: 3263 components: - pos: -4.5,-7.5 parent: 2 type: Transform - - uid: 3287 + - uid: 3264 components: - pos: -4.5,-6.5 parent: 2 type: Transform - - uid: 3288 + - uid: 3265 components: - pos: -4.5,-5.5 parent: 2 type: Transform - - uid: 3289 + - uid: 3266 components: - pos: 63.5,-5.5 parent: 2 type: Transform - - uid: 3290 + - uid: 3267 components: - pos: 62.5,-5.5 parent: 2 type: Transform - - uid: 3291 + - uid: 3268 components: - pos: 21.5,15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3292 + - uid: 3269 components: - pos: 21.5,14.5 parent: 2 type: Transform - - uid: 3293 + - uid: 3270 components: - pos: 21.5,13.5 parent: 2 type: Transform - - uid: 3294 + - uid: 3271 components: - pos: 21.5,12.5 parent: 2 type: Transform - - uid: 3295 + - uid: 3272 components: - pos: 21.5,11.5 parent: 2 type: Transform - - uid: 3296 + - uid: 3273 components: - pos: 21.5,10.5 parent: 2 type: Transform - - uid: 3297 + - uid: 3274 components: - pos: 20.5,14.5 parent: 2 type: Transform - - uid: 3298 + - uid: 3275 components: - pos: 19.5,14.5 parent: 2 type: Transform - - uid: 3299 + - uid: 3276 components: - pos: 18.5,14.5 parent: 2 type: Transform - - uid: 3300 + - uid: 3277 components: - pos: 17.5,14.5 parent: 2 type: Transform - - uid: 3301 + - uid: 3278 components: - pos: 17.5,13.5 parent: 2 type: Transform - - uid: 3302 + - uid: 3279 components: - pos: 17.5,12.5 parent: 2 type: Transform - - uid: 3303 + - uid: 3280 components: - pos: 17.5,11.5 parent: 2 type: Transform - - uid: 3304 + - uid: 3281 components: - pos: 16.5,11.5 parent: 2 type: Transform - - uid: 3305 + - uid: 3282 components: - pos: 15.5,11.5 parent: 2 type: Transform - - uid: 3306 + - uid: 3283 components: - pos: 14.5,11.5 parent: 2 type: Transform - - uid: 3307 + - uid: 3284 components: - pos: 13.5,11.5 parent: 2 type: Transform - - uid: 3308 + - uid: 3285 components: - pos: 13.5,12.5 parent: 2 type: Transform - - uid: 3309 + - uid: 3286 components: - pos: 13.5,13.5 parent: 2 type: Transform - - uid: 3310 + - uid: 3287 components: - pos: 12.5,13.5 parent: 2 type: Transform - - uid: 3311 + - uid: 3288 components: - pos: 11.5,13.5 parent: 2 type: Transform - - uid: 3312 + - uid: 3289 components: - pos: 11.5,12.5 parent: 2 type: Transform - - uid: 3313 + - uid: 3290 components: - pos: 11.5,11.5 parent: 2 type: Transform - - uid: 3314 + - uid: 3291 components: - pos: 11.5,10.5 parent: 2 type: Transform - - uid: 3315 + - uid: 3292 components: - pos: 11.5,9.5 parent: 2 type: Transform - - uid: 3316 + - uid: 3293 components: - pos: 11.5,8.5 parent: 2 type: Transform - - uid: 3317 + - uid: 3294 components: - pos: 11.5,7.5 parent: 2 type: Transform - - uid: 3318 + - uid: 3295 components: - pos: 11.5,6.5 parent: 2 type: Transform - - uid: 3319 + - uid: 3296 components: - pos: 12.5,8.5 parent: 2 type: Transform - - uid: 3320 + - uid: 3297 components: - pos: 13.5,8.5 parent: 2 type: Transform - - uid: 3321 + - uid: 3298 components: - pos: 13.5,7.5 parent: 2 type: Transform - - uid: 3322 + - uid: 3299 components: - pos: 14.5,7.5 parent: 2 type: Transform - - uid: 3323 + - uid: 3300 components: - pos: 15.5,7.5 parent: 2 type: Transform - - uid: 3324 + - uid: 3301 components: - pos: 16.5,7.5 parent: 2 type: Transform - - uid: 3325 + - uid: 3302 components: - pos: 17.5,7.5 parent: 2 type: Transform - - uid: 3326 + - uid: 3303 components: - pos: 17.5,6.5 parent: 2 type: Transform - - uid: 3327 + - uid: 3304 components: - pos: 17.5,5.5 parent: 2 type: Transform - - uid: 3328 + - uid: 3305 components: - pos: 17.5,4.5 parent: 2 type: Transform - - uid: 3329 + - uid: 3306 components: - pos: 17.5,3.5 parent: 2 type: Transform - - uid: 3330 + - uid: 3307 components: - pos: 17.5,2.5 parent: 2 type: Transform - - uid: 3331 + - uid: 3308 components: - pos: 17.5,1.5 parent: 2 type: Transform - - uid: 3332 + - uid: 3309 components: - pos: 17.5,0.5 parent: 2 type: Transform - - uid: 3333 + - uid: 3310 components: - pos: 17.5,-0.5 parent: 2 type: Transform - - uid: 3334 + - uid: 3311 components: - pos: 17.5,-1.5 parent: 2 type: Transform - - uid: 3335 + - uid: 3312 components: - pos: 17.5,-2.5 parent: 2 type: Transform - - uid: 3336 + - uid: 3313 components: - pos: 17.5,-3.5 parent: 2 type: Transform - - uid: 3337 + - uid: 3314 components: - pos: 17.5,-4.5 parent: 2 type: Transform - - uid: 3338 + - uid: 3315 components: - pos: 17.5,-5.5 parent: 2 type: Transform - - uid: 3339 + - uid: 3316 components: - pos: 18.5,4.5 parent: 2 type: Transform - - uid: 3340 + - uid: 3317 components: - pos: 16.5,-2.5 parent: 2 type: Transform - - uid: 3341 + - uid: 3318 components: - pos: 10.5,8.5 parent: 2 type: Transform - - uid: 3342 + - uid: 3319 components: - pos: 24.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3343 + - uid: 3320 components: - pos: 24.5,23.5 parent: 2 type: Transform - - uid: 3344 + - uid: 3321 components: - pos: 24.5,22.5 parent: 2 type: Transform - - uid: 3345 + - uid: 3322 components: - pos: 23.5,22.5 parent: 2 type: Transform - - uid: 3346 + - uid: 3323 components: - pos: 22.5,22.5 parent: 2 type: Transform - - uid: 3347 + - uid: 3324 components: - pos: 22.5,21.5 parent: 2 type: Transform - - uid: 3348 + - uid: 3325 components: - pos: 22.5,20.5 parent: 2 type: Transform - - uid: 3349 + - uid: 3326 components: - pos: 22.5,19.5 parent: 2 type: Transform - - uid: 3350 + - uid: 3327 components: - pos: 22.5,18.5 parent: 2 type: Transform - - uid: 3351 + - uid: 3328 components: - pos: 22.5,17.5 parent: 2 type: Transform - - uid: 3352 + - uid: 3329 components: - pos: 21.5,17.5 parent: 2 type: Transform - - uid: 3353 + - uid: 3330 components: - pos: 20.5,17.5 parent: 2 type: Transform - - uid: 3354 + - uid: 3331 components: - pos: 19.5,17.5 parent: 2 type: Transform - - uid: 3355 + - uid: 3332 components: - pos: 18.5,17.5 parent: 2 type: Transform - - uid: 3356 + - uid: 3333 components: - pos: 17.5,17.5 parent: 2 type: Transform - - uid: 3357 + - uid: 3334 components: - pos: 16.5,17.5 parent: 2 type: Transform - - uid: 3358 + - uid: 3335 components: - pos: 15.5,17.5 parent: 2 type: Transform - - uid: 3359 + - uid: 3336 components: - pos: 14.5,17.5 parent: 2 type: Transform - - uid: 3360 + - uid: 3337 components: - pos: 13.5,17.5 parent: 2 type: Transform - - uid: 3361 + - uid: 3338 components: - pos: 12.5,17.5 parent: 2 type: Transform - - uid: 3362 + - uid: 3339 components: - pos: 11.5,17.5 parent: 2 type: Transform - - uid: 3363 + - uid: 3340 components: - pos: 10.5,17.5 parent: 2 type: Transform - - uid: 3364 + - uid: 3341 components: - pos: 9.5,17.5 parent: 2 type: Transform - - uid: 3365 + - uid: 3342 components: - pos: 8.5,17.5 parent: 2 type: Transform - - uid: 3366 + - uid: 3343 components: - pos: 7.5,17.5 parent: 2 type: Transform - - uid: 3367 + - uid: 3344 components: - pos: 11.5,18.5 parent: 2 type: Transform - - uid: 3368 + - uid: 3345 components: - pos: 11.5,19.5 parent: 2 type: Transform - - uid: 3369 + - uid: 3346 components: - pos: 11.5,20.5 parent: 2 type: Transform - - uid: 3370 + - uid: 3347 components: - pos: 11.5,21.5 parent: 2 type: Transform - - uid: 3371 + - uid: 3348 components: - pos: 16.5,18.5 parent: 2 type: Transform - - uid: 3372 + - uid: 3349 components: - pos: 16.5,19.5 parent: 2 type: Transform - - uid: 3373 + - uid: 3350 components: - pos: 16.5,20.5 parent: 2 type: Transform - - uid: 3374 + - uid: 3351 components: - pos: 16.5,21.5 parent: 2 type: Transform - - uid: 3375 + - uid: 3352 components: - pos: 17.5,21.5 parent: 2 type: Transform - - uid: 3376 + - uid: 3353 components: - pos: 15.5,21.5 parent: 2 type: Transform - - uid: 3377 + - uid: 3354 components: - pos: 6.5,17.5 parent: 2 type: Transform - - uid: 3378 + - uid: 3355 components: - pos: 6.5,18.5 parent: 2 type: Transform - - uid: 3379 + - uid: 3356 components: - pos: 6.5,19.5 parent: 2 type: Transform - - uid: 3380 + - uid: 3357 components: - pos: 6.5,20.5 parent: 2 type: Transform - - uid: 3381 + - uid: 3358 components: - pos: 6.5,21.5 parent: 2 type: Transform - - uid: 3382 + - uid: 3359 components: - pos: 7.5,21.5 parent: 2 type: Transform - - uid: 3383 + - uid: 3360 components: - pos: 5.5,21.5 parent: 2 type: Transform - - uid: 3384 + - uid: 3361 components: - pos: 5.5,17.5 parent: 2 type: Transform - - uid: 3385 + - uid: 3362 components: - pos: 4.5,17.5 parent: 2 type: Transform - - uid: 3386 + - uid: 3363 components: - pos: 2.5,17.5 parent: 2 type: Transform - - uid: 3387 + - uid: 3364 components: - pos: 3.5,17.5 parent: 2 type: Transform - - uid: 3388 + - uid: 3365 components: - pos: 1.5,17.5 parent: 2 type: Transform - - uid: 3389 + - uid: 3366 components: - pos: 0.5,17.5 parent: 2 type: Transform - - uid: 3390 + - uid: 3367 components: - pos: 0.5,18.5 parent: 2 type: Transform - - uid: 3391 + - uid: 3368 components: - pos: -0.5,18.5 parent: 2 type: Transform - - uid: 3392 + - uid: 3369 components: - pos: -0.5,19.5 parent: 2 type: Transform - - uid: 3393 + - uid: 3370 components: - pos: -0.5,20.5 parent: 2 type: Transform - - uid: 3394 + - uid: 3371 components: - pos: 0.5,20.5 parent: 2 type: Transform - - uid: 3395 + - uid: 3372 components: - pos: 1.5,20.5 parent: 2 type: Transform - - uid: 3396 + - uid: 3373 components: - pos: 24.5,21.5 parent: 2 type: Transform - - uid: 3397 + - uid: 3374 components: - pos: 25.5,21.5 parent: 2 type: Transform - - uid: 3398 + - uid: 3375 components: - pos: 26.5,21.5 parent: 2 type: Transform - - uid: 3399 + - uid: 3376 components: - pos: 27.5,21.5 parent: 2 type: Transform - - uid: 3400 + - uid: 3377 components: - pos: 28.5,21.5 parent: 2 type: Transform - - uid: 3401 + - uid: 3378 components: - pos: 23.5,17.5 parent: 2 type: Transform - - uid: 3402 + - uid: 3379 components: - pos: 24.5,17.5 parent: 2 type: Transform - - uid: 3403 + - uid: 3380 components: - pos: 25.5,17.5 parent: 2 type: Transform - - uid: 3404 + - uid: 3381 components: - pos: 25.5,16.5 parent: 2 type: Transform - - uid: 3405 + - uid: 3382 components: - pos: 26.5,17.5 parent: 2 type: Transform - - uid: 3406 + - uid: 3383 components: - pos: 27.5,17.5 parent: 2 type: Transform - - uid: 3407 + - uid: 3384 components: - pos: 28.5,17.5 parent: 2 type: Transform - - uid: 3408 + - uid: 3385 components: - pos: 29.5,17.5 parent: 2 type: Transform - - uid: 3409 + - uid: 3386 components: - pos: 40.5,7.5 parent: 2 type: Transform - - uid: 3410 + - uid: 3387 components: - pos: 29.5,15.5 parent: 2 type: Transform - - uid: 3411 + - uid: 3388 components: - pos: 29.5,21.5 parent: 2 type: Transform - - uid: 3412 + - uid: 3389 components: - pos: 30.5,21.5 parent: 2 type: Transform - - uid: 3413 + - uid: 3390 components: - pos: 31.5,21.5 parent: 2 type: Transform - - uid: 3414 + - uid: 3391 components: - pos: 32.5,21.5 parent: 2 type: Transform - - uid: 3415 + - uid: 3392 components: - pos: 32.5,22.5 parent: 2 type: Transform - - uid: 3416 + - uid: 3393 components: - pos: 32.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3417 + - uid: 3394 components: - pos: 29.5,22.5 parent: 2 type: Transform - - uid: 3418 + - uid: 3395 components: - pos: 29.5,23.5 parent: 2 type: Transform - - uid: 3419 + - uid: 3396 components: - pos: 29.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3420 + - uid: 3397 components: - pos: 29.5,25.5 parent: 2 type: Transform - - uid: 3421 + - uid: 3398 components: - pos: 29.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3422 + - uid: 3399 components: - pos: 29.5,27.5 parent: 2 type: Transform - - uid: 3423 + - uid: 3400 components: - pos: 29.5,28.5 parent: 2 type: Transform - - uid: 3424 + - uid: 3401 components: - pos: 29.5,29.5 parent: 2 type: Transform - - uid: 3425 + - uid: 3402 components: - pos: 29.5,30.5 parent: 2 type: Transform - - uid: 3426 + - uid: 3403 components: - pos: 29.5,31.5 parent: 2 type: Transform - - uid: 3427 + - uid: 3404 components: - pos: 30.5,31.5 parent: 2 type: Transform - - uid: 3428 + - uid: 3405 components: - pos: 32.5,31.5 parent: 2 type: Transform - - uid: 3429 + - uid: 3406 components: - pos: 31.5,31.5 parent: 2 type: Transform - - uid: 3430 + - uid: 3407 components: - pos: 28.5,31.5 parent: 2 type: Transform - - uid: 3431 + - uid: 3408 components: - pos: 27.5,31.5 parent: 2 type: Transform - - uid: 3432 + - uid: 3409 components: - pos: 27.5,30.5 parent: 2 type: Transform - - uid: 3433 + - uid: 3410 components: - pos: 27.5,29.5 parent: 2 type: Transform - - uid: 3434 + - uid: 3411 components: - pos: 32.5,30.5 parent: 2 type: Transform - - uid: 3435 + - uid: 3412 components: - pos: 32.5,29.5 parent: 2 type: Transform - - uid: 3436 + - uid: 3413 components: - pos: 27.5,28.5 parent: 2 type: Transform - - uid: 3437 + - uid: 3414 components: - pos: 32.5,28.5 parent: 2 type: Transform - - uid: 3438 + - uid: 3415 components: - pos: -8.5,-41.5 parent: 2 type: Transform - - uid: 3439 + - uid: 3416 components: - pos: -8.5,-40.5 parent: 2 type: Transform - - uid: 3440 + - uid: 3417 components: - pos: -8.5,-39.5 parent: 2 type: Transform - - uid: 3441 + - uid: 3418 components: - pos: -8.5,-38.5 parent: 2 type: Transform - - uid: 3442 + - uid: 3419 components: - pos: -8.5,-37.5 parent: 2 type: Transform - - uid: 3443 + - uid: 3420 components: - pos: -8.5,-36.5 parent: 2 type: Transform - - uid: 3444 + - uid: 3421 components: - pos: -9.5,-36.5 parent: 2 type: Transform - - uid: 3445 + - uid: 3422 components: - pos: -10.5,-36.5 parent: 2 type: Transform - - uid: 3446 + - uid: 3423 components: - pos: -11.5,-36.5 parent: 2 type: Transform - - uid: 3447 + - uid: 3424 components: - pos: -12.5,-36.5 parent: 2 type: Transform - - uid: 3448 + - uid: 3425 components: - pos: -12.5,-37.5 parent: 2 type: Transform - - uid: 3449 + - uid: 3426 components: - pos: -12.5,-38.5 parent: 2 type: Transform - - uid: 3450 + - uid: 3427 components: - pos: -13.5,-38.5 parent: 2 type: Transform - - uid: 3451 + - uid: 3428 components: - pos: -14.5,-38.5 parent: 2 type: Transform - - uid: 3452 + - uid: 3429 components: - pos: -15.5,-38.5 parent: 2 type: Transform - - uid: 3453 + - uid: 3430 components: - pos: -11.5,-35.5 parent: 2 type: Transform - - uid: 3454 + - uid: 3431 components: - pos: -11.5,-34.5 parent: 2 type: Transform - - uid: 3455 + - uid: 3432 components: - pos: -11.5,-33.5 parent: 2 type: Transform - - uid: 3456 + - uid: 3433 components: - pos: -10.5,-33.5 parent: 2 type: Transform - - uid: 3457 + - uid: 3434 components: - pos: -9.5,-33.5 parent: 2 type: Transform - - uid: 3458 + - uid: 3435 components: - pos: -12.5,-39.5 parent: 2 type: Transform - - uid: 3459 + - uid: 3436 components: - pos: -11.5,-39.5 parent: 2 type: Transform - - uid: 3460 + - uid: 3437 components: - pos: 21.5,-47.5 parent: 2 type: Transform - - uid: 3461 + - uid: 3438 components: - pos: -55.5,-27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3462 + - uid: 3439 components: - pos: -54.5,-27.5 parent: 2 type: Transform - - uid: 3463 + - uid: 3440 components: - pos: -53.5,-27.5 parent: 2 type: Transform - - uid: 3464 + - uid: 3441 components: - pos: 17.5,-49.5 parent: 2 type: Transform - - uid: 3465 + - uid: 3442 components: - pos: 18.5,-51.5 parent: 2 type: Transform - - uid: 3466 + - uid: 3443 components: - pos: 21.5,-48.5 parent: 2 type: Transform - - uid: 3467 + - uid: 3444 components: - pos: 21.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3468 + - uid: 3445 components: - pos: 20.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3469 + - uid: 3446 components: - pos: 27.5,3.5 parent: 2 type: Transform - - uid: 3470 + - uid: 3447 components: - pos: 18.5,-50.5 parent: 2 type: Transform - - uid: 3471 + - uid: 3448 components: - pos: 17.5,-50.5 parent: 2 type: Transform - - uid: 3472 + - uid: 3449 components: - pos: -13.5,42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3473 + - uid: 3450 components: - pos: -7.5,-8.5 parent: 2 type: Transform - - uid: 3474 + - uid: 3451 components: - pos: 34.5,18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3475 + - uid: 3452 components: - pos: 35.5,18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3476 + - uid: 3453 components: - pos: 46.5,5.5 parent: 2 type: Transform - - uid: 3477 + - uid: 3454 components: - pos: 44.5,5.5 parent: 2 type: Transform - - uid: 3478 + - uid: 3455 components: - pos: 45.5,5.5 parent: 2 type: Transform - - uid: 3479 + - uid: 3456 components: - pos: 59.5,-5.5 parent: 2 type: Transform - - uid: 3480 + - uid: 3457 components: - pos: 61.5,-5.5 parent: 2 type: Transform - - uid: 3481 + - uid: 3458 components: - pos: 58.5,11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3482 + - uid: 3459 components: - pos: 58.5,12.5 parent: 2 type: Transform - - uid: 3483 + - uid: 3460 components: - pos: 58.5,13.5 parent: 2 type: Transform - - uid: 3484 + - uid: 3461 components: - pos: 58.5,14.5 parent: 2 type: Transform - - uid: 3485 + - uid: 3462 components: - pos: 58.5,15.5 parent: 2 type: Transform - - uid: 3486 + - uid: 3463 components: - pos: 58.5,16.5 parent: 2 type: Transform - - uid: 3487 + - uid: 3464 components: - pos: 57.5,16.5 parent: 2 type: Transform - - uid: 3488 + - uid: 3465 components: - pos: 57.5,17.5 parent: 2 type: Transform - - uid: 3489 + - uid: 3466 components: - pos: 57.5,18.5 parent: 2 type: Transform - - uid: 3490 + - uid: 3467 components: - pos: 56.5,18.5 parent: 2 type: Transform - - uid: 3491 + - uid: 3468 components: - pos: 56.5,19.5 parent: 2 type: Transform - - uid: 3492 + - uid: 3469 components: - pos: 56.5,20.5 parent: 2 type: Transform - - uid: 3493 + - uid: 3470 components: - pos: 55.5,20.5 parent: 2 type: Transform - - uid: 3494 + - uid: 3471 components: - pos: 54.5,20.5 parent: 2 type: Transform - - uid: 3495 + - uid: 3472 components: - pos: 56.5,21.5 parent: 2 type: Transform - - uid: 3496 + - uid: 3473 components: - pos: 58.5,21.5 parent: 2 type: Transform - - uid: 3497 + - uid: 3474 components: - pos: 57.5,21.5 parent: 2 type: Transform - - uid: 3498 + - uid: 3475 components: - pos: 58.5,21.5 parent: 2 type: Transform - - uid: 3499 + - uid: 3476 components: - pos: 53.5,20.5 parent: 2 type: Transform - - uid: 3500 + - uid: 3477 components: - pos: 52.5,20.5 parent: 2 type: Transform - - uid: 3501 + - uid: 3478 components: - pos: 51.5,20.5 parent: 2 type: Transform - - uid: 3502 + - uid: 3479 components: - pos: 50.5,20.5 parent: 2 type: Transform - - uid: 3503 + - uid: 3480 components: - pos: 49.5,20.5 parent: 2 type: Transform - - uid: 3504 + - uid: 3481 components: - pos: 48.5,20.5 parent: 2 type: Transform - - uid: 3505 + - uid: 3482 components: - pos: 47.5,20.5 parent: 2 type: Transform - - uid: 3506 + - uid: 3483 components: - pos: 46.5,20.5 parent: 2 type: Transform - - uid: 3507 + - uid: 3484 components: - pos: 46.5,21.5 parent: 2 type: Transform - - uid: 3508 + - uid: 3485 components: - pos: 49.5,21.5 parent: 2 type: Transform - - uid: 3509 + - uid: 3486 components: - pos: 52.5,21.5 parent: 2 type: Transform - - uid: 3510 + - uid: 3487 components: - pos: 54.5,21.5 parent: 2 type: Transform - - uid: 3511 + - uid: 3488 components: - pos: 59.5,18.5 parent: 2 type: Transform - - uid: 3512 + - uid: 3489 components: - pos: 58.5,18.5 parent: 2 type: Transform - - uid: 3513 + - uid: 3490 components: - pos: 59.5,15.5 parent: 2 type: Transform - - uid: 3514 + - uid: 3491 components: - pos: 60.5,13.5 parent: 2 type: Transform - - uid: 3515 + - uid: 3492 components: - pos: 59.5,13.5 parent: 2 type: Transform - - uid: 3516 + - uid: 3493 components: - pos: 61.5,13.5 parent: 2 type: Transform - - uid: 3517 + - uid: 3494 components: - pos: 57.5,11.5 parent: 2 type: Transform - - uid: 3518 + - uid: 3495 components: - pos: 56.5,11.5 parent: 2 type: Transform - - uid: 3519 + - uid: 3496 components: - pos: 56.5,10.5 parent: 2 type: Transform - - uid: 3520 + - uid: 3497 components: - pos: 56.5,9.5 parent: 2 type: Transform - - uid: 3521 + - uid: 3498 components: - pos: 56.5,8.5 parent: 2 type: Transform - - uid: 3522 + - uid: 3499 components: - pos: 56.5,7.5 parent: 2 type: Transform - - uid: 3523 + - uid: 3500 components: - pos: 56.5,6.5 parent: 2 type: Transform - - uid: 3524 + - uid: 3501 components: - pos: 55.5,6.5 parent: 2 type: Transform - - uid: 3525 + - uid: 3502 components: - pos: 54.5,6.5 parent: 2 type: Transform - - uid: 3526 + - uid: 3503 components: - pos: 53.5,6.5 parent: 2 type: Transform - - uid: 3527 + - uid: 3504 components: - pos: 52.5,6.5 parent: 2 type: Transform - - uid: 3528 + - uid: 3505 components: - pos: 51.5,6.5 parent: 2 type: Transform - - uid: 3529 + - uid: 3506 components: - pos: 50.5,6.5 parent: 2 type: Transform - - uid: 3530 + - uid: 3507 components: - pos: 49.5,6.5 parent: 2 type: Transform - - uid: 3531 + - uid: 3508 components: - pos: 48.5,6.5 parent: 2 type: Transform - - uid: 3532 + - uid: 3509 components: - pos: 47.5,6.5 parent: 2 type: Transform - - uid: 3533 + - uid: 3510 components: - pos: 47.5,7.5 parent: 2 type: Transform - - uid: 3534 + - uid: 3511 components: - pos: 47.5,8.5 parent: 2 type: Transform - - uid: 3535 + - uid: 3512 components: - pos: 48.5,10.5 parent: 2 type: Transform - - uid: 3536 + - uid: 3513 components: - pos: 47.5,10.5 parent: 2 type: Transform - - uid: 3537 + - uid: 3514 components: - pos: 47.5,11.5 parent: 2 type: Transform - - uid: 3538 + - uid: 3515 components: - pos: 47.5,12.5 parent: 2 type: Transform - - uid: 3539 + - uid: 3516 components: - pos: 47.5,13.5 parent: 2 type: Transform - - uid: 3540 + - uid: 3517 components: - pos: 47.5,14.5 parent: 2 type: Transform - - uid: 3541 + - uid: 3518 components: - pos: 47.5,15.5 parent: 2 type: Transform - - uid: 3542 + - uid: 3519 components: - pos: 48.5,13.5 parent: 2 type: Transform - - uid: 3543 + - uid: 3520 components: - pos: 49.5,13.5 parent: 2 type: Transform - - uid: 3544 + - uid: 3521 components: - pos: 49.5,14.5 parent: 2 type: Transform - - uid: 3545 + - uid: 3522 components: - pos: 49.5,15.5 parent: 2 type: Transform - - uid: 3546 + - uid: 3523 components: - pos: 49.5,16.5 parent: 2 type: Transform - - uid: 3547 + - uid: 3524 components: - pos: 50.5,16.5 parent: 2 type: Transform - - uid: 3548 + - uid: 3525 components: - pos: 51.5,16.5 parent: 2 type: Transform - - uid: 3549 + - uid: 3526 components: - pos: 52.5,16.5 parent: 2 type: Transform - - uid: 3550 + - uid: 3527 components: - pos: 53.5,16.5 parent: 2 type: Transform - - uid: 3551 + - uid: 3528 components: - pos: 54.5,16.5 parent: 2 type: Transform - - uid: 3552 + - uid: 3529 components: - pos: 55.5,16.5 parent: 2 type: Transform - - uid: 3553 + - uid: 3530 components: - pos: 50.5,17.5 parent: 2 type: Transform - - uid: 3554 + - uid: 3531 components: - pos: 50.5,18.5 parent: 2 type: Transform - - uid: 3555 + - uid: 3532 components: - pos: 49.5,12.5 parent: 2 type: Transform - - uid: 3556 + - uid: 3533 components: - pos: 50.5,12.5 parent: 2 type: Transform - - uid: 3557 + - uid: 3534 components: - pos: 50.5,11.5 parent: 2 type: Transform - - uid: 3558 + - uid: 3535 components: - pos: 50.5,10.5 parent: 2 type: Transform - - uid: 3559 + - uid: 3536 components: - pos: 50.5,9.5 parent: 2 type: Transform - - uid: 3560 + - uid: 3537 components: - pos: 51.5,9.5 parent: 2 type: Transform - - uid: 3561 + - uid: 3538 components: - pos: 52.5,9.5 parent: 2 type: Transform - - uid: 3562 + - uid: 3539 components: - pos: 53.5,9.5 parent: 2 type: Transform - - uid: 3563 + - uid: 3540 components: - pos: 53.5,10.5 parent: 2 type: Transform - - uid: 3564 + - uid: 3541 components: - pos: 53.5,11.5 parent: 2 type: Transform - - uid: 3565 + - uid: 3542 components: - pos: 53.5,12.5 parent: 2 type: Transform - - uid: 3566 + - uid: 3543 components: - pos: 59.5,11.5 parent: 2 type: Transform - - uid: 3567 + - uid: 3544 components: - pos: 59.5,10.5 parent: 2 type: Transform - - uid: 3568 + - uid: 3545 components: - pos: 59.5,9.5 parent: 2 type: Transform - - uid: 3569 + - uid: 3546 components: - pos: 60.5,9.5 parent: 2 type: Transform - - uid: 3570 + - uid: 3547 components: - pos: 60.5,8.5 parent: 2 type: Transform - - uid: 3571 + - uid: 3548 components: - pos: 60.5,7.5 parent: 2 type: Transform - - uid: 3572 + - uid: 3549 components: - pos: 60.5,6.5 parent: 2 type: Transform - - uid: 3573 + - uid: 3550 components: - pos: 60.5,5.5 parent: 2 type: Transform - - uid: 3574 + - uid: 3551 components: - pos: 60.5,4.5 parent: 2 type: Transform - - uid: 3575 + - uid: 3552 components: - pos: 61.5,4.5 parent: 2 type: Transform - - uid: 3576 + - uid: 3553 components: - pos: 62.5,4.5 parent: 2 type: Transform - - uid: 3577 + - uid: 3554 components: - pos: 62.5,5.5 parent: 2 type: Transform - - uid: 3578 + - uid: 3555 components: - pos: 60.5,-5.5 parent: 2 type: Transform - - uid: 3579 + - uid: 3556 components: - pos: 45.5,20.5 parent: 2 type: Transform - - uid: 3580 + - uid: 3557 components: - pos: 44.5,20.5 parent: 2 type: Transform - - uid: 3581 + - uid: 3558 components: - pos: 43.5,20.5 parent: 2 type: Transform - - uid: 3582 + - uid: 3559 components: - pos: 42.5,20.5 parent: 2 type: Transform - - uid: 3583 + - uid: 3560 components: - pos: 41.5,20.5 parent: 2 type: Transform - - uid: 3584 + - uid: 3561 components: - pos: 40.5,20.5 parent: 2 type: Transform - - uid: 3585 + - uid: 3562 components: - pos: 39.5,20.5 parent: 2 type: Transform - - uid: 3586 + - uid: 3563 components: - pos: 38.5,20.5 parent: 2 type: Transform - - uid: 3587 + - uid: 3564 components: - pos: 37.5,20.5 parent: 2 type: Transform - - uid: 3588 + - uid: 3565 components: - pos: 36.5,20.5 parent: 2 type: Transform - - uid: 3589 + - uid: 3566 components: - pos: 35.5,20.5 parent: 2 type: Transform - - uid: 3590 + - uid: 3567 components: - pos: 35.5,19.5 parent: 2 type: Transform - - uid: 3591 + - uid: 3568 components: - pos: 46.5,11.5 parent: 2 type: Transform - - uid: 3592 + - uid: 3569 components: - pos: 45.5,11.5 parent: 2 type: Transform - - uid: 3593 + - uid: 3570 components: - pos: 43.5,11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3594 + - uid: 3571 components: - pos: 42.5,11.5 parent: 2 type: Transform - - uid: 3595 + - uid: 3572 components: - pos: 41.5,11.5 parent: 2 type: Transform - - uid: 3596 + - uid: 3573 components: - pos: 40.5,11.5 parent: 2 type: Transform - - uid: 3597 + - uid: 3574 components: - pos: 41.5,10.5 parent: 2 type: Transform - - uid: 3598 + - uid: 3575 components: - pos: 41.5,9.5 parent: 2 type: Transform - - uid: 3599 + - uid: 3576 components: - pos: 41.5,8.5 parent: 2 type: Transform - - uid: 3600 + - uid: 3577 components: - pos: 41.5,7.5 parent: 2 type: Transform - - uid: 3601 + - uid: 3578 components: - pos: 41.5,6.5 parent: 2 type: Transform - - uid: 3602 + - uid: 3579 components: - pos: 41.5,5.5 parent: 2 type: Transform - - uid: 3603 + - uid: 3580 components: - pos: 41.5,4.5 parent: 2 type: Transform - - uid: 3604 + - uid: 3581 components: - pos: 40.5,12.5 parent: 2 type: Transform - - uid: 3605 + - uid: 3582 components: - pos: 40.5,13.5 parent: 2 type: Transform - - uid: 3606 + - uid: 3583 components: - pos: 40.5,14.5 parent: 2 type: Transform - - uid: 3607 + - uid: 3584 components: - pos: 39.5,14.5 parent: 2 type: Transform - - uid: 3608 + - uid: 3585 components: - pos: 38.5,14.5 parent: 2 type: Transform - - uid: 3609 + - uid: 3586 components: - pos: 37.5,14.5 parent: 2 type: Transform - - uid: 3610 + - uid: 3587 components: - pos: 36.5,14.5 parent: 2 type: Transform - - uid: 3611 + - uid: 3588 components: - pos: 35.5,14.5 parent: 2 type: Transform - - uid: 3612 + - uid: 3589 components: - pos: 34.5,14.5 parent: 2 type: Transform - - uid: 3613 + - uid: 3590 components: - pos: 33.5,14.5 parent: 2 type: Transform - - uid: 3614 + - uid: 3591 components: - pos: 32.5,14.5 parent: 2 type: Transform - - uid: 3615 + - uid: 3592 components: - pos: 31.5,14.5 parent: 2 type: Transform - - uid: 3616 + - uid: 3593 components: - pos: 35.5,15.5 parent: 2 type: Transform - - uid: 3617 + - uid: 3594 components: - pos: 35.5,16.5 parent: 2 type: Transform - - uid: 3618 + - uid: 3595 components: - pos: 32.5,13.5 parent: 2 type: Transform - - uid: 3619 + - uid: 3596 components: - pos: 32.5,12.5 parent: 2 type: Transform - - uid: 3620 + - uid: 3597 components: - pos: 32.5,11.5 parent: 2 type: Transform - - uid: 3621 + - uid: 3598 components: - pos: 30.5,14.5 parent: 2 type: Transform - - uid: 3622 + - uid: 3599 components: - pos: 29.5,14.5 parent: 2 type: Transform - - uid: 3623 + - uid: 3600 components: - pos: 29.5,13.5 parent: 2 type: Transform - - uid: 3624 + - uid: 3601 components: - pos: 29.5,12.5 parent: 2 type: Transform - - uid: 3625 + - uid: 3602 components: - pos: 29.5,11.5 parent: 2 type: Transform - - uid: 3626 + - uid: 3603 components: - pos: 35.5,13.5 parent: 2 type: Transform - - uid: 3627 + - uid: 3604 components: - pos: 35.5,12.5 parent: 2 type: Transform - - uid: 3628 + - uid: 3605 components: - pos: 35.5,11.5 parent: 2 type: Transform - - uid: 3629 + - uid: 3606 components: - pos: 38.5,7.5 parent: 2 type: Transform - - uid: 3630 + - uid: 3607 components: - pos: 37.5,7.5 parent: 2 type: Transform - - uid: 3631 + - uid: 3608 components: - pos: 40.5,4.5 parent: 2 type: Transform - - uid: 3632 + - uid: 3609 components: - pos: 39.5,4.5 parent: 2 type: Transform - - uid: 3633 + - uid: 3610 components: - pos: 37.5,4.5 parent: 2 type: Transform - - uid: 3634 + - uid: 3611 components: - pos: 38.5,4.5 parent: 2 type: Transform - - uid: 3635 + - uid: 3612 components: - pos: -12.5,42.5 parent: 2 type: Transform - - uid: 3636 + - uid: 3613 components: - pos: 51.5,11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3637 + - uid: 3614 components: - pos: 55.5,13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3638 + - uid: 3615 components: - pos: 55.5,14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3639 + - uid: 3616 components: - pos: 54.5,14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3640 + - uid: 3617 components: - pos: 53.5,14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3641 + - uid: 3618 components: - pos: 52.5,14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3642 + - uid: 3619 components: - pos: 51.5,14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3643 + - uid: 3620 components: - pos: 51.5,13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3644 + - uid: 3621 components: - pos: 51.5,12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3645 + - uid: 3622 components: - pos: 49.5,10.5 parent: 2 type: Transform - - uid: 3646 + - uid: 3623 components: - pos: 45.5,7.5 parent: 2 type: Transform - - uid: 3647 + - uid: 3624 components: - pos: 42.5,21.5 parent: 2 type: Transform - - uid: 3648 + - uid: 3625 components: - pos: 42.5,22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3649 + - uid: 3626 components: - pos: 49.5,3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3650 + - uid: 3627 components: - pos: 49.5,2.5 parent: 2 type: Transform - - uid: 3651 + - uid: 3628 components: - pos: 48.5,2.5 parent: 2 type: Transform - - uid: 3652 + - uid: 3629 components: - pos: 48.5,1.5 parent: 2 type: Transform - - uid: 3653 + - uid: 3630 components: - pos: 47.5,1.5 parent: 2 type: Transform - - uid: 3654 + - uid: 3631 components: - pos: 46.5,1.5 parent: 2 type: Transform - - uid: 3655 + - uid: 3632 components: - pos: 45.5,1.5 parent: 2 type: Transform - - uid: 3656 + - uid: 3633 components: - pos: 44.5,1.5 parent: 2 type: Transform - - uid: 3657 + - uid: 3634 components: - pos: 43.5,1.5 parent: 2 type: Transform - - uid: 3658 + - uid: 3635 components: - pos: 42.5,1.5 parent: 2 type: Transform - - uid: 3659 + - uid: 3636 components: - pos: 42.5,0.5 parent: 2 type: Transform - - uid: 3660 + - uid: 3637 components: - pos: 42.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3661 + - uid: 3638 components: - pos: 42.5,-1.5 parent: 2 type: Transform - - uid: 3662 + - uid: 3639 components: - pos: 42.5,-2.5 parent: 2 type: Transform - - uid: 3663 + - uid: 3640 components: - pos: 42.5,-3.5 parent: 2 type: Transform - - uid: 3664 + - uid: 3641 components: - pos: 41.5,-1.5 parent: 2 type: Transform - - uid: 3665 + - uid: 3642 components: - pos: 40.5,-1.5 parent: 2 type: Transform - - uid: 3666 + - uid: 3643 components: - pos: 39.5,-1.5 parent: 2 type: Transform - - uid: 3667 + - uid: 3644 components: - pos: 38.5,-1.5 parent: 2 type: Transform - - uid: 3668 + - uid: 3645 components: - pos: 37.5,-1.5 parent: 2 type: Transform - - uid: 3669 + - uid: 3646 components: - pos: 37.5,-2.5 parent: 2 type: Transform - - uid: 3670 + - uid: 3647 components: - pos: 37.5,-3.5 parent: 2 type: Transform - - uid: 3671 + - uid: 3648 components: - pos: 43.5,-1.5 parent: 2 type: Transform - - uid: 3672 + - uid: 3649 components: - pos: 44.5,-1.5 parent: 2 type: Transform - - uid: 3673 + - uid: 3650 components: - pos: 44.5,-2.5 parent: 2 type: Transform - - uid: 3674 + - uid: 3651 components: - pos: 38.5,-3.5 parent: 2 type: Transform - - uid: 3675 + - uid: 3652 components: - pos: 38.5,-4.5 parent: 2 type: Transform - - uid: 3676 + - uid: 3653 components: - pos: 38.5,-5.5 parent: 2 type: Transform - - uid: 3677 + - uid: 3654 components: - pos: 38.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3678 + - uid: 3655 components: - pos: 38.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3679 + - uid: 3656 components: - pos: 38.5,-7.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3680 + - uid: 3657 components: - pos: 39.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3681 + - uid: 3658 components: - pos: 46.5,0.5 parent: 2 type: Transform - - uid: 3682 + - uid: 3659 components: - pos: 46.5,-0.5 parent: 2 type: Transform - - uid: 3683 + - uid: 3660 components: - pos: 46.5,-1.5 parent: 2 type: Transform - - uid: 3684 + - uid: 3661 components: - pos: 47.5,-1.5 parent: 2 type: Transform - - uid: 3685 + - uid: 3662 components: - pos: 47.5,-2.5 parent: 2 type: Transform - - uid: 3686 + - uid: 3663 components: - pos: 41.5,1.5 parent: 2 type: Transform - - uid: 3687 + - uid: 3664 components: - pos: 40.5,1.5 parent: 2 type: Transform - - uid: 3688 + - uid: 3665 components: - pos: 39.5,1.5 parent: 2 type: Transform - - uid: 3689 + - uid: 3666 components: - pos: 38.5,1.5 parent: 2 type: Transform - - uid: 3690 + - uid: 3667 components: - pos: 37.5,1.5 parent: 2 type: Transform - - uid: 3691 + - uid: 3668 components: - pos: 41.5,2.5 parent: 2 type: Transform - - uid: 3692 + - uid: 3669 components: - pos: 48.5,0.5 parent: 2 type: Transform - - uid: 3693 + - uid: 3670 components: - pos: 49.5,0.5 parent: 2 type: Transform - - uid: 3694 + - uid: 3671 components: - pos: 50.5,0.5 parent: 2 type: Transform - - uid: 3695 + - uid: 3672 components: - pos: 51.5,0.5 parent: 2 type: Transform - - uid: 3696 + - uid: 3673 components: - pos: 52.5,0.5 parent: 2 type: Transform - - uid: 3697 + - uid: 3674 components: - pos: 52.5,1.5 parent: 2 type: Transform - - uid: 3698 + - uid: 3675 components: - pos: 52.5,2.5 parent: 2 type: Transform - - uid: 3699 + - uid: 3676 components: - pos: 53.5,0.5 parent: 2 type: Transform - - uid: 3700 + - uid: 3677 components: - pos: 53.5,-0.5 parent: 2 type: Transform - - uid: 3701 + - uid: 3678 components: - pos: 54.5,-0.5 parent: 2 type: Transform - - uid: 3702 + - uid: 3679 components: - pos: 55.5,-0.5 parent: 2 type: Transform - - uid: 3703 + - uid: 3680 components: - pos: 56.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3704 + - uid: 3681 components: - pos: 57.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3705 + - uid: 3682 components: - pos: 57.5,0.5 parent: 2 type: Transform - - uid: 3706 + - uid: 3683 components: - pos: 57.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3707 + - uid: 3684 components: - pos: 58.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3708 + - uid: 3685 components: - pos: 59.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3709 + - uid: 3686 components: - pos: 60.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3710 + - uid: 3687 components: - pos: 61.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3711 + - uid: 3688 components: - pos: 62.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3712 + - uid: 3689 components: - pos: 56.5,-1.5 parent: 2 type: Transform - - uid: 3713 + - uid: 3690 components: - pos: 56.5,-2.5 parent: 2 type: Transform - - uid: 3714 + - uid: 3691 components: - pos: 56.5,-3.5 parent: 2 type: Transform - - uid: 3715 + - uid: 3692 components: - pos: 51.5,-0.5 parent: 2 type: Transform - - uid: 3716 + - uid: 3693 components: - pos: 51.5,-1.5 parent: 2 type: Transform - - uid: 3717 + - uid: 3694 components: - pos: 51.5,-2.5 parent: 2 type: Transform - - uid: 3718 + - uid: 3695 components: - pos: 52.5,-2.5 parent: 2 type: Transform - - uid: 3719 + - uid: 3696 components: - pos: 52.5,-3.5 parent: 2 type: Transform - - uid: 3720 + - uid: 3697 components: - pos: 52.5,-5.5 parent: 2 type: Transform - - uid: 3721 + - uid: 3698 components: - pos: 59.5,21.5 parent: 2 type: Transform - - uid: 3722 + - uid: 3699 components: - pos: 60.5,21.5 parent: 2 type: Transform - - uid: 3723 + - uid: 3700 components: - pos: 61.5,21.5 parent: 2 type: Transform - - uid: 3724 + - uid: 3701 components: - pos: 67.5,-11.5 parent: 2 type: Transform - - uid: 3725 + - uid: 3702 components: - pos: 68.5,-11.5 parent: 2 type: Transform - - uid: 3726 + - uid: 3703 components: - pos: 66.5,-13.5 parent: 2 type: Transform - - uid: 3727 + - uid: 3704 components: - pos: 68.5,-13.5 parent: 2 type: Transform - - uid: 3728 + - uid: 3705 components: - pos: 66.5,-11.5 parent: 2 type: Transform - - uid: 3729 + - uid: 3706 components: - pos: 58.5,-34.5 parent: 2 type: Transform - - uid: 3730 + - uid: 3707 components: - pos: 63.5,-43.5 parent: 2 type: Transform - - uid: 3731 + - uid: 3708 components: - pos: 45.5,-39.5 parent: 2 type: Transform - - uid: 3732 + - uid: 3709 components: - pos: 44.5,-39.5 parent: 2 type: Transform - - uid: 3733 + - uid: 3710 components: - pos: 54.5,-33.5 parent: 2 type: Transform - - uid: 3734 + - uid: 3711 components: - pos: 65.5,-45.5 parent: 2 type: Transform - - uid: 3735 + - uid: 3712 components: - pos: 65.5,-44.5 parent: 2 type: Transform - - uid: 3736 + - uid: 3713 components: - pos: 60.5,-11.5 parent: 2 type: Transform - - uid: 3737 + - uid: 3714 components: - pos: 59.5,-11.5 parent: 2 type: Transform - - uid: 3738 + - uid: 3715 components: - pos: 58.5,-11.5 parent: 2 type: Transform - - uid: 3739 + - uid: 3716 components: - pos: 57.5,-11.5 parent: 2 type: Transform - - uid: 3740 + - uid: 3717 components: - pos: 56.5,-11.5 parent: 2 type: Transform - - uid: 3741 + - uid: 3718 components: - pos: 55.5,-11.5 parent: 2 type: Transform - - uid: 3742 + - uid: 3719 components: - pos: 54.5,-11.5 parent: 2 type: Transform - - uid: 3743 + - uid: 3720 components: - pos: 53.5,-11.5 parent: 2 type: Transform - - uid: 3744 + - uid: 3721 components: - pos: 52.5,-11.5 parent: 2 type: Transform - - uid: 3745 + - uid: 3722 components: - pos: 53.5,-12.5 parent: 2 type: Transform - - uid: 3746 + - uid: 3723 components: - pos: 53.5,-13.5 parent: 2 type: Transform - - uid: 3747 + - uid: 3724 components: - pos: 51.5,-11.5 parent: 2 type: Transform - - uid: 3748 + - uid: 3725 components: - pos: 51.5,-10.5 parent: 2 type: Transform - - uid: 3749 + - uid: 3726 components: - pos: 51.5,-9.5 parent: 2 type: Transform - - uid: 3750 + - uid: 3727 components: - pos: 51.5,-8.5 parent: 2 type: Transform - - uid: 3751 + - uid: 3728 components: - pos: 50.5,-8.5 parent: 2 type: Transform - - uid: 3752 + - uid: 3729 components: - pos: 49.5,-8.5 parent: 2 type: Transform - - uid: 3753 + - uid: 3730 components: - pos: 48.5,-8.5 parent: 2 type: Transform - - uid: 3754 + - uid: 3731 components: - pos: 47.5,-8.5 parent: 2 type: Transform - - uid: 3755 + - uid: 3732 components: - pos: 46.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3756 + - uid: 3733 components: - pos: 47.5,-7.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3757 + - uid: 3734 components: - pos: 46.5,-9.5 parent: 2 type: Transform - - uid: 3758 + - uid: 3735 components: - pos: 46.5,-10.5 parent: 2 type: Transform - - uid: 3759 + - uid: 3736 components: - pos: 46.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3760 + - uid: 3737 components: - pos: 45.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3761 + - uid: 3738 components: - pos: 44.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3762 + - uid: 3739 components: - pos: 43.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3763 + - uid: 3740 components: - pos: 42.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3764 + - uid: 3741 components: - pos: 41.5,-11.5 parent: 2 type: Transform - - uid: 3765 + - uid: 3742 components: - pos: 40.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3766 + - uid: 3743 components: - pos: 40.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3767 + - uid: 3744 components: - pos: 39.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3768 + - uid: 3745 components: - pos: 38.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3769 + - uid: 3746 components: - pos: 38.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3770 + - uid: 3747 components: - pos: 38.5,-14.5 parent: 2 type: Transform - - uid: 3771 + - uid: 3748 components: - pos: 38.5,-15.5 parent: 2 type: Transform - - uid: 3772 + - uid: 3749 components: - pos: 39.5,-14.5 parent: 2 type: Transform - - uid: 3773 + - uid: 3750 components: - pos: 40.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3774 + - uid: 3751 components: - pos: 41.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3775 + - uid: 3752 components: - pos: 42.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3776 + - uid: 3753 components: - pos: 43.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3777 + - uid: 3754 components: - pos: 42.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3778 + - uid: 3755 components: - pos: 38.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3779 + - uid: 3756 components: - pos: 38.5,-10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3780 + - uid: 3757 components: - pos: 37.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3781 + - uid: 3758 components: - pos: 36.5,-8.5 parent: 2 type: Transform - - uid: 3782 + - uid: 3759 components: - pos: 35.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3783 + - uid: 3760 components: - pos: 33.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3784 + - uid: 3761 components: - pos: 34.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3785 + - uid: 3762 components: - pos: 35.5,-9.5 parent: 2 type: Transform - - uid: 3786 + - uid: 3763 components: - pos: 44.5,-10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3787 + - uid: 3764 components: - pos: 58.5,-5.5 parent: 2 type: Transform - - uid: 3788 + - uid: 3765 components: - pos: 57.5,-5.5 parent: 2 type: Transform - - uid: 3789 + - uid: 3766 components: - pos: 56.5,-5.5 parent: 2 type: Transform - - uid: 3790 + - uid: 3767 components: - pos: 55.5,-5.5 parent: 2 type: Transform - - uid: 3791 + - uid: 3768 components: - pos: 54.5,-6.5 parent: 2 type: Transform - - uid: 3792 + - uid: 3769 components: - pos: 54.5,-5.5 parent: 2 type: Transform - - uid: 3793 + - uid: 3770 components: - pos: 59.5,-3.5 parent: 2 type: Transform - - uid: 3794 + - uid: 3771 components: - pos: 59.5,-2.5 parent: 2 type: Transform - - uid: 3795 + - uid: 3772 components: - pos: 60.5,-2.5 parent: 2 type: Transform - - uid: 3796 + - uid: 3773 components: - pos: 61.5,-2.5 parent: 2 type: Transform - - uid: 3797 + - uid: 3774 components: - pos: 62.5,-2.5 parent: 2 type: Transform - - uid: 3798 + - uid: 3775 components: - pos: 63.5,-2.5 parent: 2 type: Transform - - uid: 3799 + - uid: 3776 components: - pos: 62.5,-1.5 parent: 2 type: Transform - - uid: 3800 + - uid: 3777 components: - pos: 60.5,-1.5 parent: 2 type: Transform - - uid: 3801 + - uid: 3778 components: - pos: 63.5,-11.5 parent: 2 type: Transform - - uid: 3802 + - uid: 3779 components: - pos: 64.5,-11.5 parent: 2 type: Transform - - uid: 3803 + - uid: 3780 components: - pos: 62.5,-13.5 parent: 2 type: Transform - - uid: 3804 + - uid: 3781 components: - pos: 63.5,-13.5 parent: 2 type: Transform - - uid: 3805 + - uid: 3782 components: - pos: 64.5,-13.5 parent: 2 type: Transform - - uid: 3806 + - uid: 3783 components: - pos: 62.5,-14.5 parent: 2 type: Transform - - uid: 3807 + - uid: 3784 components: - pos: 62.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3808 + - uid: 3785 components: - pos: 62.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3809 + - uid: 3786 components: - pos: 62.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3810 + - uid: 3787 components: - pos: 62.5,-18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3811 + - uid: 3788 components: - pos: 62.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3812 + - uid: 3789 components: - pos: 62.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3813 + - uid: 3790 components: - pos: 62.5,-21.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3814 + - uid: 3791 components: - pos: 62.5,-22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3815 + - uid: 3792 components: - pos: 62.5,-23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3816 + - uid: 3793 components: - pos: 62.5,-24.5 parent: 2 type: Transform - - uid: 3817 + - uid: 3794 components: - pos: 62.5,-25.5 parent: 2 type: Transform - - uid: 3818 + - uid: 3795 components: - pos: 62.5,-26.5 parent: 2 type: Transform - - uid: 3819 + - uid: 3796 components: - pos: 62.5,-27.5 parent: 2 type: Transform - - uid: 3820 + - uid: 3797 components: - pos: 62.5,-28.5 parent: 2 type: Transform - - uid: 3821 + - uid: 3798 components: - pos: 64.5,-5.5 parent: 2 type: Transform - - uid: 3822 + - uid: 3799 components: - pos: 63.5,-3.5 parent: 2 type: Transform - - uid: 3823 + - uid: 3800 components: - pos: 64.5,-3.5 parent: 2 type: Transform - - uid: 3824 + - uid: 3801 components: - pos: 57.5,-12.5 parent: 2 type: Transform - - uid: 3825 + - uid: 3802 components: - pos: 57.5,-13.5 parent: 2 type: Transform - - uid: 3826 + - uid: 3803 components: - pos: 45.5,19.5 parent: 2 type: Transform - - uid: 3827 + - uid: 3804 components: - pos: 55.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3828 + - uid: 3805 components: - pos: 55.5,-42.5 parent: 2 type: Transform - - uid: 3829 + - uid: 3806 components: - pos: 55.5,-41.5 parent: 2 type: Transform - - uid: 3830 + - uid: 3807 components: - pos: 54.5,-41.5 parent: 2 type: Transform - - uid: 3831 + - uid: 3808 components: - pos: 53.5,-41.5 parent: 2 type: Transform - - uid: 3832 + - uid: 3809 components: - pos: 53.5,-42.5 parent: 2 type: Transform - - uid: 3833 + - uid: 3810 components: - pos: 52.5,-42.5 parent: 2 type: Transform - - uid: 3834 + - uid: 3811 components: - pos: 51.5,-42.5 parent: 2 type: Transform - - uid: 3835 + - uid: 3812 components: - pos: 50.5,-42.5 parent: 2 type: Transform - - uid: 3836 + - uid: 3813 components: - pos: 49.5,-42.5 parent: 2 type: Transform - - uid: 3837 + - uid: 3814 components: - pos: 48.5,-42.5 parent: 2 type: Transform - - uid: 3838 + - uid: 3815 components: - pos: 47.5,-42.5 parent: 2 type: Transform - - uid: 3839 + - uid: 3816 components: - pos: 46.5,-42.5 parent: 2 type: Transform - - uid: 3840 + - uid: 3817 components: - pos: 45.5,-42.5 parent: 2 type: Transform - - uid: 3841 + - uid: 3818 components: - pos: 44.5,-42.5 parent: 2 type: Transform - - uid: 3842 + - uid: 3819 components: - pos: 43.5,-42.5 parent: 2 type: Transform - - uid: 3843 + - uid: 3820 components: - pos: 42.5,-42.5 parent: 2 type: Transform - - uid: 3844 + - uid: 3821 components: - pos: 46.5,-41.5 parent: 2 type: Transform - - uid: 3845 + - uid: 3822 components: - pos: 46.5,-40.5 parent: 2 type: Transform - - uid: 3846 + - uid: 3823 components: - pos: 46.5,-39.5 parent: 2 type: Transform - - uid: 3847 + - uid: 3824 components: - pos: 46.5,-38.5 parent: 2 type: Transform - - uid: 3848 + - uid: 3825 components: - pos: 46.5,-37.5 parent: 2 type: Transform - - uid: 3849 + - uid: 3826 components: - pos: 45.5,-37.5 parent: 2 type: Transform - - uid: 3850 + - uid: 3827 components: - pos: 44.5,-37.5 parent: 2 type: Transform - - uid: 3851 + - uid: 3828 components: - pos: 43.5,-37.5 parent: 2 type: Transform - - uid: 3852 + - uid: 3829 components: - pos: 42.5,-37.5 parent: 2 type: Transform - - uid: 3853 + - uid: 3830 components: - pos: 41.5,-37.5 parent: 2 type: Transform - - uid: 3854 + - uid: 3831 components: - pos: 40.5,-37.5 parent: 2 type: Transform - - uid: 3855 + - uid: 3832 components: - pos: 39.5,-37.5 parent: 2 type: Transform - - uid: 3856 + - uid: 3833 components: - pos: 40.5,-36.5 parent: 2 type: Transform - - uid: 3857 + - uid: 3834 components: - pos: 43.5,-36.5 parent: 2 type: Transform - - uid: 3858 + - uid: 3835 components: - pos: 45.5,-36.5 parent: 2 type: Transform - - uid: 3859 + - uid: 3836 components: - pos: 43.5,-38.5 parent: 2 type: Transform - - uid: 3860 + - uid: 3837 components: - pos: 40.5,-38.5 parent: 2 type: Transform - - uid: 3861 + - uid: 3838 components: - pos: 49.5,-41.5 parent: 2 type: Transform - - uid: 3862 + - uid: 3839 components: - pos: 49.5,-40.5 parent: 2 type: Transform - - uid: 3863 + - uid: 3840 components: - pos: 49.5,-39.5 parent: 2 type: Transform - - uid: 3864 + - uid: 3841 components: - pos: 49.5,-38.5 parent: 2 type: Transform - - uid: 3865 + - uid: 3842 components: - pos: 50.5,-38.5 parent: 2 type: Transform - - uid: 3866 + - uid: 3843 components: - pos: 51.5,-38.5 parent: 2 type: Transform - - uid: 3867 + - uid: 3844 components: - pos: 49.5,-37.5 parent: 2 type: Transform - - uid: 3868 + - uid: 3845 components: - pos: 55.5,-44.5 parent: 2 type: Transform - - uid: 3869 + - uid: 3846 components: - pos: 56.5,-44.5 parent: 2 type: Transform - - uid: 3870 + - uid: 3847 components: - pos: 57.5,-44.5 parent: 2 type: Transform - - uid: 3871 + - uid: 3848 components: - pos: 58.5,-44.5 parent: 2 type: Transform - - uid: 3872 + - uid: 3849 components: - pos: 59.5,-44.5 parent: 2 type: Transform - - uid: 3873 + - uid: 3850 components: - pos: 60.5,-44.5 parent: 2 type: Transform - - uid: 3874 + - uid: 3851 components: - pos: 61.5,-44.5 parent: 2 type: Transform - - uid: 3875 + - uid: 3852 components: - pos: 62.5,-44.5 parent: 2 type: Transform - - uid: 3876 + - uid: 3853 components: - pos: 62.5,-43.5 parent: 2 type: Transform - - uid: 3877 + - uid: 3854 components: - pos: 62.5,-42.5 parent: 2 type: Transform - - uid: 3878 + - uid: 3855 components: - pos: 62.5,-41.5 parent: 2 type: Transform - - uid: 3879 + - uid: 3856 components: - pos: 62.5,-40.5 parent: 2 type: Transform - - uid: 3880 + - uid: 3857 components: - pos: 62.5,-39.5 parent: 2 type: Transform - - uid: 3881 + - uid: 3858 components: - pos: 62.5,-37.5 parent: 2 type: Transform - - uid: 3882 + - uid: 3859 components: - pos: 62.5,-36.5 parent: 2 type: Transform - - uid: 3883 + - uid: 3860 components: - pos: 62.5,-35.5 parent: 2 type: Transform - - uid: 3884 + - uid: 3861 components: - pos: 62.5,-34.5 parent: 2 type: Transform - - uid: 3885 + - uid: 3862 components: - pos: 63.5,-34.5 parent: 2 type: Transform - - uid: 3886 + - uid: 3863 components: - pos: 64.5,-34.5 parent: 2 type: Transform - - uid: 3887 + - uid: 3864 components: - pos: 65.5,-34.5 parent: 2 type: Transform - - uid: 3888 + - uid: 3865 components: - pos: 62.5,-33.5 parent: 2 type: Transform - - uid: 3889 + - uid: 3866 components: - pos: 62.5,-32.5 parent: 2 type: Transform - - uid: 3890 + - uid: 3867 components: - pos: 62.5,-31.5 parent: 2 type: Transform - - uid: 3891 + - uid: 3868 components: - pos: 61.5,-34.5 parent: 2 type: Transform - - uid: 3892 + - uid: 3869 components: - pos: 60.5,-34.5 parent: 2 type: Transform - - uid: 3893 + - uid: 3870 components: - pos: 59.5,-34.5 parent: 2 type: Transform - - uid: 3894 + - uid: 3871 components: - pos: 64.5,-35.5 parent: 2 type: Transform - - uid: 3895 + - uid: 3872 components: - pos: 60.5,-35.5 parent: 2 type: Transform - - uid: 3896 + - uid: 3873 components: - pos: 63.5,-33.5 parent: 2 type: Transform - - uid: 3897 + - uid: 3874 components: - pos: 62.5,-45.5 parent: 2 type: Transform - - uid: 3898 + - uid: 3875 components: - pos: 62.5,-46.5 parent: 2 type: Transform - - uid: 3899 + - uid: 3876 components: - pos: 62.5,-47.5 parent: 2 type: Transform - - uid: 3900 + - uid: 3877 components: - pos: 62.5,-48.5 parent: 2 type: Transform - - uid: 3901 + - uid: 3878 components: - pos: 62.5,-49.5 parent: 2 type: Transform - - uid: 3902 + - uid: 3879 components: - pos: 62.5,-50.5 parent: 2 type: Transform - - uid: 3903 + - uid: 3880 components: - pos: 62.5,-51.5 parent: 2 type: Transform - - uid: 3904 + - uid: 3881 components: - pos: 62.5,-52.5 parent: 2 type: Transform - - uid: 3905 + - uid: 3882 components: - pos: 62.5,-53.5 parent: 2 type: Transform - - uid: 3906 + - uid: 3883 components: - pos: 62.5,-54.5 parent: 2 type: Transform - - uid: 3907 + - uid: 3884 components: - pos: 63.5,-52.5 parent: 2 type: Transform - - uid: 3908 + - uid: 3885 components: - pos: 64.5,-52.5 parent: 2 type: Transform - - uid: 3909 + - uid: 3886 components: - pos: 61.5,-52.5 parent: 2 type: Transform - - uid: 3910 + - uid: 3887 components: - pos: 60.5,-52.5 parent: 2 type: Transform - - uid: 3911 + - uid: 3888 components: - pos: 63.5,-46.5 parent: 2 type: Transform - - uid: 3912 + - uid: 3889 components: - pos: 64.5,-46.5 parent: 2 type: Transform - - uid: 3913 + - uid: 3890 components: - pos: 65.5,-46.5 parent: 2 type: Transform - - uid: 3914 + - uid: 3891 components: - pos: 66.5,-46.5 parent: 2 type: Transform - - uid: 3915 + - uid: 3892 components: - pos: 68.5,-46.5 parent: 2 type: Transform - - uid: 3916 + - uid: 3893 components: - pos: 69.5,-46.5 parent: 2 type: Transform - - uid: 3917 + - uid: 3894 components: - pos: 70.5,-46.5 parent: 2 type: Transform - - uid: 3918 + - uid: 3895 components: - pos: 71.5,-46.5 parent: 2 type: Transform - - uid: 3919 + - uid: 3896 components: - pos: 72.5,-46.5 parent: 2 type: Transform - - uid: 3920 + - uid: 3897 components: - pos: 69.5,-47.5 parent: 2 type: Transform - - uid: 3921 + - uid: 3898 components: - pos: 69.5,-48.5 parent: 2 type: Transform - - uid: 3922 + - uid: 3899 components: - pos: 69.5,-49.5 parent: 2 type: Transform - - uid: 3923 + - uid: 3900 components: - pos: 69.5,-45.5 parent: 2 type: Transform - - uid: 3924 + - uid: 3901 components: - pos: 69.5,-44.5 parent: 2 type: Transform - - uid: 3925 + - uid: 3902 components: - pos: 71.5,-45.5 parent: 2 type: Transform - - uid: 3926 + - uid: 3903 components: - pos: 71.5,-47.5 parent: 2 type: Transform - - uid: 3927 + - uid: 3904 components: - pos: 73.5,-46.5 parent: 2 type: Transform - - uid: 3928 + - uid: 3905 components: - pos: 73.5,-47.5 parent: 2 type: Transform - - uid: 3929 + - uid: 3906 components: - pos: 73.5,-45.5 parent: 2 type: Transform - - uid: 3930 + - uid: 3907 components: - pos: 49.5,-43.5 parent: 2 type: Transform - - uid: 3931 + - uid: 3908 components: - pos: 49.5,-44.5 parent: 2 type: Transform - - uid: 3932 + - uid: 3909 components: - pos: 49.5,-46.5 parent: 2 type: Transform - - uid: 3933 + - uid: 3910 components: - pos: 49.5,-47.5 parent: 2 type: Transform - - uid: 3934 + - uid: 3911 components: - pos: 49.5,-49.5 parent: 2 type: Transform - - uid: 3935 + - uid: 3912 components: - pos: 49.5,-50.5 parent: 2 type: Transform - - uid: 3936 + - uid: 3913 components: - pos: 49.5,-51.5 parent: 2 type: Transform - - uid: 3937 + - uid: 3914 components: - pos: 49.5,-52.5 parent: 2 type: Transform - - uid: 3938 + - uid: 3915 components: - pos: 49.5,-53.5 parent: 2 type: Transform - - uid: 3939 + - uid: 3916 components: - pos: 49.5,-54.5 parent: 2 type: Transform - - uid: 3940 + - uid: 3917 components: - pos: 48.5,-45.5 parent: 2 type: Transform - - uid: 3941 + - uid: 3918 components: - pos: 47.5,-45.5 parent: 2 type: Transform - - uid: 3942 + - uid: 3919 components: - pos: 46.5,-45.5 parent: 2 type: Transform - - uid: 3943 + - uid: 3920 components: - pos: 45.5,-45.5 parent: 2 type: Transform - - uid: 3944 + - uid: 3921 components: - pos: 45.5,-46.5 parent: 2 type: Transform - - uid: 3945 + - uid: 3922 components: - pos: 45.5,-47.5 parent: 2 type: Transform - - uid: 3946 + - uid: 3923 components: - pos: 45.5,-48.5 parent: 2 type: Transform - - uid: 3947 + - uid: 3924 components: - pos: 44.5,-48.5 parent: 2 type: Transform - - uid: 3948 + - uid: 3925 components: - pos: 43.5,-48.5 parent: 2 type: Transform - - uid: 3949 + - uid: 3926 components: - pos: 43.5,-47.5 parent: 2 type: Transform - - uid: 3950 + - uid: 3927 components: - pos: 43.5,-46.5 parent: 2 type: Transform - - uid: 3951 + - uid: 3928 components: - pos: 42.5,-46.5 parent: 2 type: Transform - - uid: 3952 + - uid: 3929 components: - pos: 41.5,-46.5 parent: 2 type: Transform - - uid: 3953 + - uid: 3930 components: - pos: 40.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3954 + - uid: 3931 components: - pos: 39.5,-46.5 parent: 2 type: Transform - - uid: 3955 + - uid: 3932 components: - pos: 41.5,-42.5 parent: 2 type: Transform - - uid: 3956 + - uid: 3933 components: - pos: 40.5,-42.5 parent: 2 type: Transform - - uid: 3957 + - uid: 3934 components: - pos: 39.5,-42.5 parent: 2 type: Transform - - uid: 3958 + - uid: 3935 components: - pos: 38.5,-42.5 parent: 2 type: Transform - - uid: 3959 + - uid: 3936 components: - pos: 37.5,-42.5 parent: 2 type: Transform - - uid: 3960 + - uid: 3937 components: - pos: 59.5,-33.5 parent: 2 type: Transform - - uid: 3961 + - uid: 3938 components: - pos: 55.5,-63.5 parent: 2 type: Transform - - uid: 3962 + - uid: 3939 components: - pos: 64.5,-43.5 parent: 2 type: Transform - - uid: 3963 + - uid: 3940 components: - pos: -15.5,-18.5 parent: 2 type: Transform - - uid: 3964 + - uid: 3941 components: - pos: -21.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3965 + - uid: 3942 components: - pos: 30.5,-47.5 parent: 2 type: Transform - - uid: 3966 + - uid: 3943 components: - pos: 31.5,-47.5 parent: 2 type: Transform - - uid: 3967 + - uid: 3944 components: - pos: 32.5,-47.5 parent: 2 type: Transform - - uid: 3968 + - uid: 3945 components: - pos: 33.5,-47.5 parent: 2 type: Transform - - uid: 3969 + - uid: 3946 components: - pos: 31.5,-46.5 parent: 2 type: Transform - - uid: 3970 + - uid: 3947 components: - pos: 31.5,-46.5 parent: 2 type: Transform - - uid: 3971 + - uid: 3948 components: - pos: 31.5,-45.5 parent: 2 type: Transform - - uid: 3972 + - uid: 3949 components: - pos: 29.5,-48.5 parent: 2 type: Transform - - uid: 3973 + - uid: 3950 components: - pos: 29.5,-49.5 parent: 2 type: Transform - - uid: 3974 + - uid: 3951 components: - pos: 30.5,-49.5 parent: 2 type: Transform - - uid: 3975 + - uid: 3952 components: - pos: 31.5,-49.5 parent: 2 type: Transform - - uid: 3976 + - uid: 3953 components: - pos: 31.5,-50.5 parent: 2 type: Transform - - uid: 3977 + - uid: 3954 components: - pos: 31.5,-51.5 parent: 2 type: Transform - - uid: 3978 + - uid: 3955 components: - pos: 31.5,-52.5 parent: 2 type: Transform - - uid: 3979 + - uid: 3956 components: - pos: 30.5,-51.5 parent: 2 type: Transform - - uid: 3980 + - uid: 3957 components: - pos: 32.5,-51.5 parent: 2 type: Transform - - uid: 3981 + - uid: 3958 components: - pos: 31.5,-53.5 parent: 2 type: Transform - - uid: 3982 + - uid: 3959 components: - pos: 31.5,-54.5 parent: 2 type: Transform - - uid: 3983 + - uid: 3960 components: - pos: 31.5,-56.5 parent: 2 type: Transform - - uid: 3984 + - uid: 3961 components: - pos: 31.5,-55.5 parent: 2 type: Transform - - uid: 3985 + - uid: 3962 components: - pos: 30.5,-54.5 parent: 2 type: Transform - - uid: 3986 + - uid: 3963 components: - pos: 29.5,-54.5 parent: 2 type: Transform - - uid: 3987 + - uid: 3964 components: - pos: 32.5,-54.5 parent: 2 type: Transform - - uid: 3988 + - uid: 3965 components: - pos: 33.5,-54.5 parent: 2 type: Transform - - uid: 3989 + - uid: 3966 components: - pos: 30.5,-45.5 parent: 2 type: Transform - - uid: 3990 + - uid: 3967 components: - pos: 32.5,-45.5 parent: 2 type: Transform - - uid: 3991 + - uid: 3968 components: - pos: 29.5,-45.5 parent: 2 type: Transform - - uid: 3992 + - uid: 3969 components: - pos: 33.5,-45.5 parent: 2 type: Transform - - uid: 3993 + - uid: 3970 components: - pos: 48.5,-54.5 parent: 2 type: Transform - - uid: 3994 + - uid: 3971 components: - pos: 47.5,-54.5 parent: 2 type: Transform - - uid: 3995 + - uid: 3972 components: - pos: 46.5,-54.5 parent: 2 type: Transform - - uid: 3996 + - uid: 3973 components: - pos: 49.5,-55.5 parent: 2 type: Transform - - uid: 3997 + - uid: 3974 components: - pos: 49.5,-56.5 parent: 2 type: Transform - - uid: 3998 + - uid: 3975 components: - pos: 49.5,-57.5 parent: 2 type: Transform - - uid: 3999 + - uid: 3976 components: - pos: 49.5,-58.5 parent: 2 type: Transform - - uid: 4000 + - uid: 3977 components: - pos: 49.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4001 + - uid: 3978 components: - pos: 49.5,-60.5 parent: 2 type: Transform - - uid: 4002 + - uid: 3979 components: - pos: 50.5,-60.5 parent: 2 type: Transform - - uid: 4003 + - uid: 3980 components: - pos: 50.5,-53.5 parent: 2 type: Transform - - uid: 4004 + - uid: 3981 components: - pos: 51.5,-53.5 parent: 2 type: Transform - - uid: 4005 + - uid: 3982 components: - pos: 52.5,-53.5 parent: 2 type: Transform - - uid: 4006 + - uid: 3983 components: - pos: 52.5,-52.5 parent: 2 type: Transform - - uid: 4007 + - uid: 3984 components: - pos: 52.5,-51.5 parent: 2 type: Transform - - uid: 4008 + - uid: 3985 components: - pos: 50.5,-50.5 parent: 2 type: Transform - - uid: 4009 + - uid: 3986 components: - pos: 48.5,-57.5 parent: 2 type: Transform - - uid: 4010 + - uid: 3987 components: - pos: 47.5,-57.5 parent: 2 type: Transform - - uid: 4011 + - uid: 3988 components: - pos: 46.5,-57.5 parent: 2 type: Transform - - uid: 4012 + - uid: 3989 components: - pos: 45.5,-57.5 parent: 2 type: Transform - - uid: 4013 + - uid: 3990 components: - pos: 51.5,-54.5 parent: 2 type: Transform - - uid: 4014 + - uid: 3991 components: - pos: 51.5,-55.5 parent: 2 type: Transform - - uid: 4015 + - uid: 3992 components: - pos: 51.5,-56.5 parent: 2 type: Transform - - uid: 4016 + - uid: 3993 components: - pos: 49.5,-48.5 parent: 2 type: Transform - - uid: 4017 + - uid: 3994 components: - pos: 32.5,15.5 parent: 2 type: Transform - - uid: 4018 + - uid: 3995 components: - pos: -20.5,0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4019 + - uid: 3996 components: - pos: -21.5,0.5 parent: 2 type: Transform - - uid: 4020 + - uid: 3997 components: - pos: -21.5,1.5 parent: 2 type: Transform - - uid: 4021 + - uid: 3998 components: - pos: -20.5,1.5 parent: 2 type: Transform - - uid: 4022 + - uid: 3999 components: - pos: -19.5,1.5 parent: 2 type: Transform - - uid: 4023 + - uid: 4000 components: - pos: -19.5,2.5 parent: 2 type: Transform - - uid: 4024 + - uid: 4001 components: - pos: -18.5,2.5 parent: 2 type: Transform - - uid: 4025 + - uid: 4002 components: - pos: -17.5,2.5 parent: 2 type: Transform - - uid: 4026 + - uid: 4003 components: - pos: -17.5,3.5 parent: 2 type: Transform - - uid: 4027 + - uid: 4004 components: - pos: -19.5,-1.5 parent: 2 type: Transform - - uid: 4028 + - uid: 4005 components: - pos: -19.5,-2.5 parent: 2 type: Transform - - uid: 4029 + - uid: 4006 components: - pos: -19.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4030 + - uid: 4007 components: - pos: -20.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4031 + - uid: 4008 components: - pos: -21.5,2.5 parent: 2 type: Transform - - uid: 4032 + - uid: 4009 components: - pos: -21.5,3.5 parent: 2 type: Transform - - uid: 4033 + - uid: 4010 components: - pos: -18.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4034 + - uid: 4011 components: - pos: 57.5,6.5 parent: 2 type: Transform - - uid: 4035 + - uid: 4012 components: - pos: 18.5,-81.5 parent: 2 type: Transform - - uid: 4036 + - uid: 4013 components: - pos: -29.5,-9.5 parent: 2 type: Transform - - uid: 4037 + - uid: 4014 components: - pos: -29.5,-10.5 parent: 2 type: Transform - - uid: 4038 + - uid: 4015 components: - pos: -29.5,-11.5 parent: 2 type: Transform - - uid: 4039 + - uid: 4016 components: - pos: -29.5,-12.5 parent: 2 type: Transform - - uid: 4040 + - uid: 4017 components: - pos: -28.5,-12.5 parent: 2 type: Transform - - uid: 4041 + - uid: 4018 components: - pos: -27.5,-12.5 parent: 2 type: Transform - - uid: 4042 + - uid: 4019 components: - pos: -26.5,-12.5 parent: 2 type: Transform - - uid: 4043 + - uid: 4020 components: - pos: -25.5,-12.5 parent: 2 type: Transform - - uid: 4044 + - uid: 4021 components: - pos: -24.5,-12.5 parent: 2 type: Transform - - uid: 4045 + - uid: 4022 components: - pos: -23.5,-12.5 parent: 2 type: Transform - - uid: 4046 + - uid: 4023 components: - pos: -22.5,-12.5 parent: 2 type: Transform - - uid: 4047 + - uid: 4024 components: - pos: -21.5,-12.5 parent: 2 type: Transform - - uid: 4048 + - uid: 4025 components: - pos: -20.5,-12.5 parent: 2 type: Transform - - uid: 4049 + - uid: 4026 components: - pos: -19.5,-12.5 parent: 2 type: Transform - - uid: 4050 + - uid: 4027 components: - pos: -24.5,-11.5 parent: 2 type: Transform - - uid: 4051 + - uid: 4028 components: - pos: -24.5,-10.5 parent: 2 type: Transform - - uid: 4052 + - uid: 4029 components: - pos: -24.5,-9.5 parent: 2 type: Transform - - uid: 4053 + - uid: 4030 components: - pos: -19.5,-13.5 parent: 2 type: Transform - - uid: 4054 + - uid: 4031 components: - pos: -19.5,-14.5 parent: 2 type: Transform - - uid: 4055 + - uid: 4032 components: - pos: -19.5,-15.5 parent: 2 type: Transform - - uid: 4056 + - uid: 4033 components: - pos: -19.5,-16.5 parent: 2 type: Transform - - uid: 4057 + - uid: 4034 components: - pos: -19.5,-17.5 parent: 2 type: Transform - - uid: 4058 + - uid: 4035 components: - pos: -19.5,-18.5 parent: 2 type: Transform - - uid: 4059 + - uid: 4036 components: - pos: -19.5,-19.5 parent: 2 type: Transform - - uid: 4060 + - uid: 4037 components: - pos: -19.5,-20.5 parent: 2 type: Transform - - uid: 4061 + - uid: 4038 components: - pos: -19.5,-21.5 parent: 2 type: Transform - - uid: 4062 + - uid: 4039 components: - pos: -19.5,-22.5 parent: 2 type: Transform - - uid: 4063 + - uid: 4040 components: - pos: -20.5,-17.5 parent: 2 type: Transform - - uid: 4064 + - uid: 4041 components: - pos: -21.5,-17.5 parent: 2 type: Transform - - uid: 4065 + - uid: 4042 components: - pos: -23.5,-17.5 parent: 2 type: Transform - - uid: 4066 + - uid: 4043 components: - pos: -24.5,-17.5 parent: 2 type: Transform - - uid: 4067 + - uid: 4044 components: - pos: -25.5,-17.5 parent: 2 type: Transform - - uid: 4068 + - uid: 4045 components: - pos: -26.5,-17.5 parent: 2 type: Transform - - uid: 4069 + - uid: 4046 components: - pos: -27.5,-17.5 parent: 2 type: Transform - - uid: 4070 + - uid: 4047 components: - pos: -28.5,-17.5 parent: 2 type: Transform - - uid: 4071 + - uid: 4048 components: - pos: -29.5,-17.5 parent: 2 type: Transform - - uid: 4072 + - uid: 4049 components: - pos: -20.5,-22.5 parent: 2 type: Transform - - uid: 4073 + - uid: 4050 components: - pos: -21.5,-22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4074 + - uid: 4051 components: - pos: -22.5,-22.5 parent: 2 type: Transform - - uid: 4075 + - uid: 4052 components: - pos: -23.5,-22.5 parent: 2 type: Transform - - uid: 4076 + - uid: 4053 components: - pos: -24.5,-22.5 parent: 2 type: Transform - - uid: 4077 + - uid: 4054 components: - pos: -25.5,-22.5 parent: 2 type: Transform - - uid: 4078 + - uid: 4055 components: - pos: -26.5,-22.5 parent: 2 type: Transform - - uid: 4079 + - uid: 4056 components: - pos: -27.5,-22.5 parent: 2 type: Transform - - uid: 4080 + - uid: 4057 components: - pos: -28.5,-22.5 parent: 2 type: Transform - - uid: 4081 + - uid: 4058 components: - pos: -29.5,-22.5 parent: 2 type: Transform - - uid: 4082 + - uid: 4059 components: - pos: -19.5,-23.5 parent: 2 type: Transform - - uid: 4083 + - uid: 4060 components: - pos: -19.5,-11.5 parent: 2 type: Transform - - uid: 4084 + - uid: 4061 components: - pos: -19.5,-10.5 parent: 2 type: Transform - - uid: 4085 + - uid: 4062 components: - pos: -19.5,-9.5 parent: 2 type: Transform - - uid: 4086 + - uid: 4063 components: - pos: -19.5,-8.5 parent: 2 type: Transform - - uid: 4087 + - uid: 4064 components: - pos: -19.5,-6.5 parent: 2 type: Transform - - uid: 4088 + - uid: 4065 components: - pos: -19.5,-5.5 parent: 2 type: Transform - - uid: 4089 + - uid: 4066 components: - pos: -18.5,-5.5 parent: 2 type: Transform - - uid: 4090 + - uid: 4067 components: - pos: -17.5,-5.5 parent: 2 type: Transform - - uid: 4091 + - uid: 4068 components: - pos: -16.5,-5.5 parent: 2 type: Transform - - uid: 4092 + - uid: 4069 components: - pos: -15.5,-5.5 parent: 2 type: Transform - - uid: 4093 + - uid: 4070 components: - pos: -14.5,-5.5 parent: 2 type: Transform - - uid: 4094 + - uid: 4071 components: - pos: -13.5,-5.5 parent: 2 type: Transform - - uid: 4095 + - uid: 4072 components: - pos: -13.5,-4.5 parent: 2 type: Transform - - uid: 4096 + - uid: 4073 components: - pos: -13.5,3.5 parent: 2 type: Transform - - uid: 4097 + - uid: 4074 components: - pos: -19.5,7.5 parent: 2 type: Transform - - uid: 4098 + - uid: 4075 components: - pos: -20.5,7.5 parent: 2 type: Transform - - uid: 4099 + - uid: 4076 components: - pos: -21.5,7.5 parent: 2 type: Transform - - uid: 4100 + - uid: 4077 components: - pos: -22.5,7.5 parent: 2 type: Transform - - uid: 4101 + - uid: 4078 components: - pos: -20.5,-5.5 parent: 2 type: Transform - - uid: 4102 + - uid: 4079 components: - pos: -21.5,-5.5 parent: 2 type: Transform - - uid: 4103 + - uid: 4080 components: - pos: -22.5,-5.5 parent: 2 type: Transform - - uid: 4104 + - uid: 4081 components: - pos: -23.5,-5.5 parent: 2 type: Transform - - uid: 4105 + - uid: 4082 components: - pos: -24.5,-5.5 parent: 2 type: Transform - - uid: 4106 + - uid: 4083 components: - pos: -25.5,-5.5 parent: 2 type: Transform - - uid: 4107 + - uid: 4084 components: - pos: -25.5,-4.5 parent: 2 type: Transform - - uid: 4108 + - uid: 4085 components: - pos: -25.5,-3.5 parent: 2 type: Transform - - uid: 4109 + - uid: 4086 components: - pos: -25.5,-2.5 parent: 2 type: Transform - - uid: 4110 + - uid: 4087 components: - pos: -25.5,-1.5 parent: 2 type: Transform - - uid: 4111 + - uid: 4088 components: - pos: -25.5,-0.5 parent: 2 type: Transform - - uid: 4112 + - uid: 4089 components: - pos: -25.5,0.5 parent: 2 type: Transform - - uid: 4113 + - uid: 4090 components: - pos: -24.5,-9.5 parent: 2 type: Transform - - uid: 4114 + - uid: 4091 components: - pos: -23.5,-9.5 parent: 2 type: Transform - - uid: 4115 + - uid: 4092 components: - pos: -29.5,-13.5 parent: 2 type: Transform - - uid: 4116 + - uid: 4093 components: - pos: -29.5,-14.5 parent: 2 type: Transform - - uid: 4117 + - uid: 4094 components: - pos: -29.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4118 + - uid: 4095 components: - pos: 45.5,18.5 parent: 2 type: Transform - - uid: 4119 + - uid: 4096 components: - pos: 30.5,-59.5 parent: 2 type: Transform - - uid: 4120 + - uid: 4097 components: - pos: 31.5,-59.5 parent: 2 type: Transform - - uid: 4121 + - uid: 4098 components: - pos: 32.5,-59.5 parent: 2 type: Transform - - uid: 4122 + - uid: 4099 components: - pos: 33.5,-59.5 parent: 2 type: Transform - - uid: 4123 + - uid: 4100 components: - pos: 34.5,-59.5 parent: 2 type: Transform - - uid: 4124 + - uid: 4101 components: - pos: 38.5,-36.5 parent: 2 type: Transform - - uid: 4125 + - uid: 4102 components: - pos: 38.5,-37.5 parent: 2 type: Transform - - uid: 4126 + - uid: 4103 components: - pos: 51.5,-57.5 parent: 2 type: Transform - - uid: 4127 + - uid: 4104 components: - pos: 51.5,-58.5 parent: 2 type: Transform - - uid: 4128 + - uid: 4105 components: - pos: 52.5,-58.5 parent: 2 type: Transform - - uid: 4129 + - uid: 4106 components: - pos: 53.5,-58.5 parent: 2 type: Transform - - uid: 4130 + - uid: 4107 components: - pos: 54.5,-58.5 parent: 2 type: Transform - - uid: 4131 + - uid: 4108 components: - pos: 55.5,-58.5 parent: 2 type: Transform - - uid: 4132 + - uid: 4109 components: - pos: 55.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4133 + - uid: 4110 components: - pos: 55.5,-60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4134 + - uid: 4111 components: - pos: 56.5,-60.5 parent: 2 type: Transform - - uid: 4135 + - uid: 4112 components: - pos: -35.5,-39.5 parent: 2 type: Transform - - uid: 4136 + - uid: 4113 components: - pos: 29.5,-72.5 parent: 2 type: Transform - - uid: 4137 + - uid: 4114 components: - pos: 47.5,-82.5 parent: 2 type: Transform - - uid: 4138 + - uid: 4115 components: - pos: 37.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4139 + - uid: 4116 components: - pos: 37.5,-58.5 parent: 2 type: Transform - - uid: 4140 + - uid: 4117 components: - pos: 37.5,-59.5 parent: 2 type: Transform - - uid: 4141 + - uid: 4118 components: - pos: 38.5,-59.5 parent: 2 type: Transform - - uid: 4142 + - uid: 4119 components: - pos: 39.5,-59.5 parent: 2 type: Transform - - uid: 4143 + - uid: 4120 components: - pos: 40.5,-59.5 parent: 2 type: Transform - - uid: 4144 + - uid: 4121 components: - pos: 40.5,-59.5 parent: 2 type: Transform - - uid: 4145 + - uid: 4122 components: - pos: 40.5,-60.5 parent: 2 type: Transform - - uid: 4146 + - uid: 4123 components: - pos: 40.5,-61.5 parent: 2 type: Transform - - uid: 4147 + - uid: 4124 components: - pos: 40.5,-62.5 parent: 2 type: Transform - - uid: 4148 + - uid: 4125 components: - pos: 40.5,-63.5 parent: 2 type: Transform - - uid: 4149 + - uid: 4126 components: - pos: 40.5,-64.5 parent: 2 type: Transform - - uid: 4150 + - uid: 4127 components: - pos: 40.5,-65.5 parent: 2 type: Transform - - uid: 4151 + - uid: 4128 components: - pos: 40.5,-66.5 parent: 2 type: Transform - - uid: 4152 + - uid: 4129 components: - pos: 40.5,-67.5 parent: 2 type: Transform - - uid: 4153 + - uid: 4130 components: - pos: 40.5,-68.5 parent: 2 type: Transform - - uid: 4154 + - uid: 4131 components: - pos: 40.5,-69.5 parent: 2 type: Transform - - uid: 4155 + - uid: 4132 components: - pos: 40.5,-70.5 parent: 2 type: Transform - - uid: 4156 + - uid: 4133 components: - pos: 40.5,-71.5 parent: 2 type: Transform - - uid: 4157 + - uid: 4134 components: - pos: 40.5,-72.5 parent: 2 type: Transform - - uid: 4158 + - uid: 4135 components: - pos: 41.5,-72.5 parent: 2 type: Transform - - uid: 4159 + - uid: 4136 components: - pos: 42.5,-72.5 parent: 2 type: Transform - - uid: 4160 + - uid: 4137 components: - pos: 43.5,-72.5 parent: 2 type: Transform - - uid: 4161 + - uid: 4138 components: - pos: 44.5,-72.5 parent: 2 type: Transform - - uid: 4162 + - uid: 4139 components: - pos: 44.5,-73.5 parent: 2 type: Transform - - uid: 4163 + - uid: 4140 components: - pos: 44.5,-74.5 parent: 2 type: Transform - - uid: 4164 + - uid: 4141 components: - pos: 42.5,-73.5 parent: 2 type: Transform - - uid: 4165 + - uid: 4142 components: - pos: 42.5,-74.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4166 + - uid: 4143 components: - pos: 39.5,-72.5 parent: 2 type: Transform - - uid: 4167 + - uid: 4144 components: - pos: 38.5,-72.5 parent: 2 type: Transform - - uid: 4168 + - uid: 4145 components: - pos: 37.5,-72.5 parent: 2 type: Transform - - uid: 4169 + - uid: 4146 components: - pos: 36.5,-72.5 parent: 2 type: Transform - - uid: 4170 + - uid: 4147 components: - pos: 35.5,-72.5 parent: 2 type: Transform - - uid: 4171 + - uid: 4148 components: - pos: 34.5,-72.5 parent: 2 type: Transform - - uid: 4172 + - uid: 4149 components: - pos: 34.5,-73.5 parent: 2 type: Transform - - uid: 4173 + - uid: 4150 components: - pos: 34.5,-74.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4174 + - uid: 4151 components: - pos: 36.5,-73.5 parent: 2 type: Transform - - uid: 4175 + - uid: 4152 components: - pos: 36.5,-74.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4176 + - uid: 4153 components: - pos: 44.5,-71.5 parent: 2 type: Transform - - uid: 4177 + - uid: 4154 components: - pos: 44.5,-70.5 parent: 2 type: Transform - - uid: 4178 + - uid: 4155 components: - pos: 34.5,-71.5 parent: 2 type: Transform - - uid: 4179 + - uid: 4156 components: - pos: 34.5,-70.5 parent: 2 type: Transform - - uid: 4180 + - uid: 4157 components: - pos: 41.5,-59.5 parent: 2 type: Transform - - uid: 4181 + - uid: 4158 components: - pos: 42.5,-59.5 parent: 2 type: Transform - - uid: 4182 + - uid: 4159 components: - pos: 43.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4183 + - uid: 4160 components: - pos: 39.5,-58.5 parent: 2 type: Transform - - uid: 4184 + - uid: 4161 components: - pos: 39.5,-57.5 parent: 2 type: Transform - - uid: 4185 + - uid: 4162 components: - pos: 39.5,-56.5 parent: 2 type: Transform - - uid: 4186 + - uid: 4163 components: - pos: 39.5,-55.5 parent: 2 type: Transform - - uid: 4187 + - uid: 4164 components: - pos: 39.5,-54.5 parent: 2 type: Transform - - uid: 4188 + - uid: 4165 components: - pos: 40.5,-55.5 parent: 2 type: Transform - - uid: 4189 + - uid: 4166 components: - pos: 36.5,-58.5 parent: 2 type: Transform - - uid: 4190 + - uid: 4167 components: - pos: 36.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4191 + - uid: 4168 components: - pos: 36.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4192 + - uid: 4169 components: - pos: 36.5,-57.5 parent: 2 type: Transform - - uid: 4193 + - uid: 4170 components: - pos: 36.5,-55.5 parent: 2 type: Transform - - uid: 4194 + - uid: 4171 components: - pos: 36.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4195 + - uid: 4172 components: - pos: 36.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4196 + - uid: 4173 components: - pos: 36.5,-51.5 parent: 2 type: Transform - - uid: 4197 + - uid: 4174 components: - pos: 37.5,-51.5 parent: 2 type: Transform - - uid: 4198 + - uid: 4175 components: - pos: 38.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4199 + - uid: 4176 components: - pos: 39.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4200 + - uid: 4177 components: - pos: 40.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4201 + - uid: 4178 components: - pos: 40.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4202 + - uid: 4179 components: - pos: 40.5,-49.5 parent: 2 type: Transform - - uid: 4203 + - uid: 4180 components: - pos: 39.5,-49.5 parent: 2 type: Transform - - uid: 4204 + - uid: 4181 components: - pos: 39.5,-48.5 parent: 2 type: Transform - - uid: 4205 + - uid: 4182 components: - pos: 38.5,-48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4206 + - uid: 4183 components: - pos: 41.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4207 + - uid: 4184 components: - pos: 42.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4208 + - uid: 4185 components: - pos: 43.5,-51.5 parent: 2 type: Transform - - uid: 4209 + - uid: 4186 components: - pos: 43.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4210 + - uid: 4187 components: - pos: 43.5,-53.5 parent: 2 type: Transform - - uid: 4211 + - uid: 4188 components: - pos: 43.5,-54.5 parent: 2 type: Transform - - uid: 4212 + - uid: 4189 components: - pos: 31.5,-72.5 parent: 2 type: Transform - - uid: 4213 + - uid: 4190 components: - pos: 27.5,-72.5 parent: 2 type: Transform - - uid: 4214 + - uid: 4191 components: - pos: 28.5,-72.5 parent: 2 type: Transform - - uid: 4215 + - uid: 4192 components: - pos: 22.5,-83.5 parent: 2 type: Transform - - uid: 4216 + - uid: 4193 components: - pos: 23.5,-72.5 parent: 2 type: Transform - - uid: 4217 + - uid: 4194 components: - pos: 25.5,-70.5 parent: 2 type: Transform - - uid: 4218 + - uid: 4195 components: - pos: 25.5,-69.5 parent: 2 type: Transform - - uid: 4219 + - uid: 4196 components: - pos: 13.5,-83.5 parent: 2 type: Transform - - uid: 4220 + - uid: 4197 components: - pos: 26.5,-72.5 parent: 2 type: Transform - - uid: 4221 + - uid: 4198 components: - pos: 25.5,-72.5 parent: 2 type: Transform - - uid: 4222 + - uid: 4199 components: - pos: 25.5,-71.5 parent: 2 type: Transform - - uid: 4223 + - uid: 4200 components: - pos: 20.5,-83.5 parent: 2 type: Transform - - uid: 4224 + - uid: 4201 components: - pos: 18.5,-83.5 parent: 2 type: Transform - - uid: 4225 + - uid: 4202 components: - pos: 24.5,-72.5 parent: 2 type: Transform - - uid: 4226 + - uid: 4203 components: - pos: 13.5,-86.5 parent: 2 type: Transform - - uid: 4227 + - uid: 4204 components: - pos: 21.5,-83.5 parent: 2 type: Transform - - uid: 4228 + - uid: 4205 components: - pos: 14.5,-81.5 parent: 2 type: Transform - - uid: 4229 + - uid: 4206 components: - pos: 12.5,-81.5 parent: 2 type: Transform - - uid: 4230 + - uid: 4207 components: - pos: 17.5,-81.5 parent: 2 type: Transform - - uid: 4231 + - uid: 4208 components: - pos: 14.5,-86.5 parent: 2 type: Transform - - uid: 4232 + - uid: 4209 components: - pos: 10.5,-70.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4233 + - uid: 4210 components: - pos: 32.5,-72.5 parent: 2 type: Transform - - uid: 4234 + - uid: 4211 components: - pos: 30.5,-75.5 parent: 2 type: Transform - - uid: 4235 + - uid: 4212 components: - pos: 30.5,-73.5 parent: 2 type: Transform - - uid: 4236 + - uid: 4213 components: - pos: 30.5,-76.5 parent: 2 type: Transform - - uid: 4237 + - uid: 4214 components: - pos: 30.5,-74.5 parent: 2 type: Transform - - uid: 4238 + - uid: 4215 components: - pos: 33.5,-72.5 parent: 2 type: Transform - - uid: 4239 + - uid: 4216 components: - pos: 48.5,-73.5 parent: 2 type: Transform - - uid: 4240 + - uid: 4217 components: - pos: 42.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4241 + - uid: 4218 components: - pos: 36.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4242 + - uid: 4219 components: - pos: 30.5,-78.5 parent: 2 type: Transform - - uid: 4243 + - uid: 4220 components: - pos: 46.5,-82.5 parent: 2 type: Transform - - uid: 4244 + - uid: 4221 components: - pos: 48.5,-91.5 parent: 2 type: Transform - - uid: 4245 + - uid: 4222 components: - pos: 21.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4246 + - uid: 4223 components: - pos: 20.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4247 + - uid: 4224 components: - pos: 19.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4248 + - uid: 4225 components: - pos: 18.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4249 + - uid: 4226 components: - pos: 17.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4250 + - uid: 4227 components: - pos: 16.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4251 + - uid: 4228 components: - pos: 15.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4252 + - uid: 4229 components: - pos: 14.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4253 + - uid: 4230 components: - pos: 13.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4254 + - uid: 4231 components: - pos: 12.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4255 + - uid: 4232 components: - pos: 11.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4256 + - uid: 4233 components: - pos: 11.5,-72.5 parent: 2 type: Transform - - uid: 4257 + - uid: 4234 components: - pos: 11.5,-71.5 parent: 2 type: Transform - - uid: 4258 + - uid: 4235 components: - pos: 11.5,-70.5 parent: 2 type: Transform - - uid: 4259 + - uid: 4236 components: - pos: 19.5,-83.5 parent: 2 type: Transform - - uid: 4260 + - uid: 4237 components: - pos: 48.5,-89.5 parent: 2 type: Transform - - uid: 4261 + - uid: 4238 components: - pos: 23.5,-83.5 parent: 2 type: Transform - - uid: 4262 + - uid: 4239 components: - pos: 9.5,-70.5 parent: 2 type: Transform - - uid: 4263 + - uid: 4240 components: - pos: 16.5,-86.5 parent: 2 type: Transform - - uid: 4264 + - uid: 4241 components: - pos: 15.5,-86.5 parent: 2 type: Transform - - uid: 4265 + - uid: 4242 components: - pos: 12.5,-86.5 parent: 2 type: Transform - - uid: 4266 + - uid: 4243 components: - pos: 17.5,-86.5 parent: 2 type: Transform - - uid: 4267 + - uid: 4244 components: - pos: -13.5,-26.5 parent: 2 type: Transform - - uid: 4268 + - uid: 4245 components: - pos: -14.5,-26.5 parent: 2 type: Transform - - uid: 4269 + - uid: 4246 components: - pos: -15.5,-26.5 parent: 2 type: Transform - - uid: 4270 + - uid: 4247 components: - pos: -16.5,-26.5 parent: 2 type: Transform - - uid: 4271 + - uid: 4248 components: - pos: -17.5,-26.5 parent: 2 type: Transform - - uid: 4272 + - uid: 4249 components: - pos: -18.5,-26.5 parent: 2 type: Transform - - uid: 4273 + - uid: 4250 components: - pos: -19.5,-26.5 parent: 2 type: Transform - - uid: 4274 + - uid: 4251 components: - pos: -19.5,-27.5 parent: 2 type: Transform - - uid: 4275 + - uid: 4252 components: - pos: -19.5,-28.5 parent: 2 type: Transform - - uid: 4276 + - uid: 4253 components: - pos: -19.5,-29.5 parent: 2 type: Transform - - uid: 4277 + - uid: 4254 components: - pos: -19.5,-30.5 parent: 2 type: Transform - - uid: 4278 + - uid: 4255 components: - pos: -19.5,-31.5 parent: 2 type: Transform - - uid: 4279 + - uid: 4256 components: - pos: -19.5,-32.5 parent: 2 type: Transform - - uid: 4280 + - uid: 4257 components: - pos: -19.5,-33.5 parent: 2 type: Transform - - uid: 4281 + - uid: 4258 components: - pos: -19.5,-34.5 parent: 2 type: Transform - - uid: 4282 + - uid: 4259 components: - pos: -19.5,-35.5 parent: 2 type: Transform - - uid: 4283 + - uid: 4260 components: - pos: -19.5,-36.5 parent: 2 type: Transform - - uid: 4284 + - uid: 4261 components: - pos: -19.5,-37.5 parent: 2 type: Transform - - uid: 4285 + - uid: 4262 components: - pos: -20.5,-26.5 parent: 2 type: Transform - - uid: 4286 + - uid: 4263 components: - pos: -18.5,-29.5 parent: 2 type: Transform - - uid: 4287 + - uid: 4264 components: - pos: -13.5,-42.5 parent: 2 type: Transform - - uid: 4288 + - uid: 4265 components: - pos: -14.5,-42.5 parent: 2 type: Transform - - uid: 4289 + - uid: 4266 components: - pos: -15.5,-42.5 parent: 2 type: Transform - - uid: 4290 + - uid: 4267 components: - pos: -16.5,-42.5 parent: 2 type: Transform - - uid: 4291 + - uid: 4268 components: - pos: -17.5,-42.5 parent: 2 type: Transform - - uid: 4292 + - uid: 4269 components: - pos: -18.5,-42.5 parent: 2 type: Transform - - uid: 4293 + - uid: 4270 components: - pos: -19.5,-42.5 parent: 2 type: Transform - - uid: 4294 + - uid: 4271 components: - pos: -19.5,-43.5 parent: 2 type: Transform - - uid: 4295 + - uid: 4272 components: - pos: -19.5,-44.5 parent: 2 type: Transform - - uid: 4296 + - uid: 4273 components: - pos: -19.5,-45.5 parent: 2 type: Transform - - uid: 4297 + - uid: 4274 components: - pos: -19.5,-46.5 parent: 2 type: Transform - - uid: 4298 + - uid: 4275 components: - pos: -19.5,-47.5 parent: 2 type: Transform - - uid: 4299 + - uid: 4276 components: - pos: -20.5,-46.5 parent: 2 type: Transform - - uid: 4300 + - uid: 4277 components: - pos: -19.5,-48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4301 + - uid: 4278 components: - pos: -20.5,-42.5 parent: 2 type: Transform - - uid: 4302 + - uid: 4279 components: - pos: -19.5,-41.5 parent: 2 type: Transform - - uid: 4303 + - uid: 4280 components: - pos: 30.5,-89.5 parent: 2 type: Transform - - uid: 4304 + - uid: 4281 components: - pos: 48.5,-72.5 parent: 2 type: Transform - - uid: 4305 + - uid: 4282 components: - pos: 30.5,-90.5 parent: 2 type: Transform - - uid: 4306 + - uid: 4283 components: - pos: -37.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4307 + - uid: 4284 components: - pos: -29.5,-21.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4308 + - uid: 4285 components: - pos: -30.5,-21.5 parent: 2 type: Transform - - uid: 4309 + - uid: 4286 components: - pos: -31.5,-21.5 parent: 2 type: Transform - - uid: 4310 + - uid: 4287 components: - pos: -32.5,-21.5 parent: 2 type: Transform - - uid: 4311 + - uid: 4288 components: - pos: -32.5,-20.5 parent: 2 type: Transform - - uid: 4312 + - uid: 4289 components: - pos: -32.5,-19.5 parent: 2 type: Transform - - uid: 4313 + - uid: 4290 components: - pos: -32.5,-18.5 parent: 2 type: Transform - - uid: 4314 + - uid: 4291 components: - pos: -32.5,-17.5 parent: 2 type: Transform - - uid: 4315 + - uid: 4292 components: - pos: -32.5,-16.5 parent: 2 type: Transform - - uid: 4316 + - uid: 4293 components: - pos: -32.5,-15.5 parent: 2 type: Transform - - uid: 4317 + - uid: 4294 components: - pos: -32.5,-14.5 parent: 2 type: Transform - - uid: 4318 + - uid: 4295 components: - pos: -32.5,-13.5 parent: 2 type: Transform - - uid: 4319 + - uid: 4296 components: - pos: -32.5,-12.5 parent: 2 type: Transform - - uid: 4320 + - uid: 4297 components: - pos: -32.5,-11.5 parent: 2 type: Transform - - uid: 4321 + - uid: 4298 components: - pos: -32.5,-10.5 parent: 2 type: Transform - - uid: 4322 + - uid: 4299 components: - pos: -38.5,-7.5 parent: 2 type: Transform - - uid: 4323 + - uid: 4300 components: - pos: -31.5,-17.5 parent: 2 type: Transform - - uid: 4324 + - uid: 4301 components: - pos: -33.5,-10.5 parent: 2 type: Transform - - uid: 4325 + - uid: 4302 components: - pos: -34.5,-10.5 parent: 2 type: Transform - - uid: 4326 + - uid: 4303 components: - pos: -35.5,-10.5 parent: 2 type: Transform - - uid: 4327 + - uid: 4304 components: - pos: -36.5,-10.5 parent: 2 type: Transform - - uid: 4328 + - uid: 4305 components: - pos: -37.5,-10.5 parent: 2 type: Transform - - uid: 4329 + - uid: 4306 components: - pos: -38.5,-10.5 parent: 2 type: Transform - - uid: 4330 + - uid: 4307 components: - pos: -39.5,-10.5 parent: 2 type: Transform - - uid: 4331 + - uid: 4308 components: - pos: -37.5,-11.5 parent: 2 type: Transform - - uid: 4332 + - uid: 4309 components: - pos: -37.5,-12.5 parent: 2 type: Transform - - uid: 4333 + - uid: 4310 components: - pos: -37.5,-13.5 parent: 2 type: Transform - - uid: 4334 + - uid: 4311 components: - pos: -38.5,-9.5 parent: 2 type: Transform - - uid: 4335 + - uid: 4312 components: - pos: -35.5,-9.5 parent: 2 type: Transform - - uid: 4336 + - uid: 4313 components: - pos: -38.5,-84.5 parent: 2 type: Transform - - uid: 4337 + - uid: 4314 components: - pos: -33.5,-16.5 parent: 2 type: Transform - - uid: 4338 + - uid: 4315 components: - pos: -34.5,-16.5 parent: 2 type: Transform - - uid: 4339 + - uid: 4316 components: - pos: -35.5,-16.5 parent: 2 type: Transform - - uid: 4340 + - uid: 4317 components: - pos: -36.5,-16.5 parent: 2 type: Transform - - uid: 4341 + - uid: 4318 components: - pos: -36.5,-17.5 parent: 2 type: Transform - - uid: 4342 + - uid: 4319 components: - pos: -35.5,-11.5 parent: 2 type: Transform - - uid: 4343 + - uid: 4320 components: - pos: -35.5,-12.5 parent: 2 type: Transform - - uid: 4344 + - uid: 4321 components: - pos: -32.5,-22.5 parent: 2 type: Transform - - uid: 4345 + - uid: 4322 components: - pos: -32.5,-23.5 parent: 2 type: Transform - - uid: 4346 + - uid: 4323 components: - pos: -32.5,-24.5 parent: 2 type: Transform - - uid: 4347 + - uid: 4324 components: - pos: -32.5,-25.5 parent: 2 type: Transform - - uid: 4348 + - uid: 4325 components: - pos: -32.5,-26.5 parent: 2 type: Transform - - uid: 4349 + - uid: 4326 components: - pos: -32.5,-27.5 parent: 2 type: Transform - - uid: 4350 + - uid: 4327 components: - pos: -32.5,-28.5 parent: 2 type: Transform - - uid: 4351 + - uid: 4328 components: - pos: -40.5,-10.5 parent: 2 type: Transform - - uid: 4352 + - uid: 4329 components: - pos: -41.5,-10.5 parent: 2 type: Transform - - uid: 4353 + - uid: 4330 components: - pos: -41.5,-11.5 parent: 2 type: Transform - - uid: 4354 + - uid: 4331 components: - pos: -41.5,-12.5 parent: 2 type: Transform - - uid: 4355 + - uid: 4332 components: - pos: -41.5,-13.5 parent: 2 type: Transform - - uid: 4356 + - uid: 4333 components: - pos: -41.5,-14.5 parent: 2 type: Transform - - uid: 4357 + - uid: 4334 components: - pos: -41.5,-15.5 parent: 2 type: Transform - - uid: 4358 + - uid: 4335 components: - pos: -41.5,-16.5 parent: 2 type: Transform - - uid: 4359 + - uid: 4336 components: - pos: -40.5,-16.5 parent: 2 type: Transform - - uid: 4360 + - uid: 4337 components: - pos: -31.5,-26.5 parent: 2 type: Transform - - uid: 4361 + - uid: 4338 components: - pos: -30.5,-26.5 parent: 2 type: Transform - - uid: 4362 + - uid: 4339 components: - pos: -29.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4363 + - uid: 4340 components: - pos: -28.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4364 + - uid: 4341 components: - pos: -27.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4365 + - uid: 4342 components: - pos: -26.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4366 + - uid: 4343 components: - pos: -25.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4367 + - uid: 4344 components: - pos: 3.5,-49.5 parent: 2 type: Transform - - uid: 4368 + - uid: 4345 components: - pos: 3.5,-50.5 parent: 2 type: Transform - - uid: 4369 + - uid: 4346 components: - pos: -18.5,14.5 parent: 2 type: Transform - - uid: 4370 + - uid: 4347 components: - pos: -18.5,13.5 parent: 2 type: Transform - - uid: 4371 + - uid: 4348 components: - pos: -18.5,12.5 parent: 2 type: Transform - - uid: 4372 + - uid: 4349 components: - pos: -18.5,11.5 parent: 2 type: Transform - - uid: 4373 + - uid: 4350 components: - pos: -18.5,10.5 parent: 2 type: Transform - - uid: 4374 + - uid: 4351 components: - pos: -18.5,9.5 parent: 2 type: Transform - - uid: 4375 + - uid: 4352 components: - pos: -18.5,8.5 parent: 2 type: Transform - - uid: 4376 + - uid: 4353 components: - pos: -18.5,7.5 parent: 2 type: Transform - - uid: 4377 + - uid: 4354 components: - pos: -17.5,7.5 parent: 2 type: Transform - - uid: 4378 + - uid: 4355 components: - pos: -16.5,7.5 parent: 2 type: Transform - - uid: 4379 + - uid: 4356 components: - pos: -15.5,7.5 parent: 2 type: Transform - - uid: 4380 + - uid: 4357 components: - pos: -14.5,7.5 parent: 2 type: Transform - - uid: 4381 + - uid: 4358 components: - pos: -13.5,7.5 parent: 2 type: Transform - - uid: 4382 + - uid: 4359 components: - pos: -12.5,7.5 parent: 2 type: Transform - - uid: 4383 + - uid: 4360 components: - pos: -12.5,6.5 parent: 2 type: Transform - - uid: 4384 + - uid: 4361 components: - pos: -12.5,5.5 parent: 2 type: Transform - - uid: 4385 + - uid: 4362 components: - pos: -12.5,4.5 parent: 2 type: Transform - - uid: 4386 + - uid: 4363 components: - pos: -12.5,3.5 parent: 2 type: Transform - - uid: 4387 + - uid: 4364 components: - pos: -12.5,2.5 parent: 2 type: Transform - - uid: 4388 + - uid: 4365 components: - pos: -12.5,1.5 parent: 2 type: Transform - - uid: 4389 + - uid: 4366 components: - pos: -12.5,0.5 parent: 2 type: Transform - - uid: 4390 + - uid: 4367 components: - pos: -12.5,-0.5 parent: 2 type: Transform - - uid: 4391 + - uid: 4368 components: - pos: -12.5,-1.5 parent: 2 type: Transform - - uid: 4392 + - uid: 4369 components: - pos: -12.5,-2.5 parent: 2 type: Transform - - uid: 4393 + - uid: 4370 components: - pos: -13.5,-2.5 parent: 2 type: Transform - - uid: 4394 + - uid: 4371 components: - pos: -12.5,-4.5 parent: 2 type: Transform - - uid: 4395 + - uid: 4372 components: - pos: -23.5,7.5 parent: 2 type: Transform - - uid: 4396 + - uid: 4373 components: - pos: -24.5,7.5 parent: 2 type: Transform - - uid: 4397 + - uid: 4374 components: - pos: -25.5,7.5 parent: 2 type: Transform - - uid: 4398 + - uid: 4375 components: - pos: -25.5,6.5 parent: 2 type: Transform - - uid: 4399 + - uid: 4376 components: - pos: -25.5,5.5 parent: 2 type: Transform - - uid: 4400 + - uid: 4377 components: - pos: -25.5,4.5 parent: 2 type: Transform - - uid: 4401 + - uid: 4378 components: - pos: -25.5,3.5 parent: 2 type: Transform - - uid: 4402 + - uid: 4379 components: - pos: -25.5,2.5 parent: 2 type: Transform - - uid: 4403 + - uid: 4380 components: - pos: -16.5,10.5 parent: 2 type: Transform - - uid: 4404 + - uid: 4381 components: - pos: -15.5,10.5 parent: 2 type: Transform - - uid: 4405 + - uid: 4382 components: - pos: -14.5,10.5 parent: 2 type: Transform - - uid: 4406 + - uid: 4383 components: - pos: -14.5,11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4407 + - uid: 4384 components: - pos: -14.5,12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4408 + - uid: 4385 components: - pos: -14.5,13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4409 + - uid: 4386 components: - pos: -14.5,14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4410 + - uid: 4387 components: - pos: -14.5,15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4411 + - uid: 4388 components: - pos: -13.5,15.5 parent: 2 type: Transform - - uid: 4412 + - uid: 4389 components: - pos: -12.5,15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4413 + - uid: 4390 components: - pos: -11.5,15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4414 + - uid: 4391 components: - pos: -10.5,15.5 parent: 2 type: Transform - - uid: 4415 + - uid: 4392 components: - pos: -8.5,16.5 parent: 2 type: Transform - - uid: 4416 + - uid: 4393 components: - pos: -7.5,16.5 parent: 2 type: Transform - - uid: 4417 + - uid: 4394 components: - pos: -6.5,16.5 parent: 2 type: Transform - - uid: 4418 + - uid: 4395 components: - pos: -5.5,16.5 parent: 2 type: Transform - - uid: 4419 + - uid: 4396 components: - pos: -4.5,16.5 parent: 2 type: Transform - - uid: 4420 + - uid: 4397 components: - pos: -42.5,-10.5 parent: 2 type: Transform - - uid: 4421 + - uid: 4398 components: - pos: -43.5,-10.5 parent: 2 type: Transform - - uid: 4422 + - uid: 4399 components: - pos: -44.5,-10.5 parent: 2 type: Transform - - uid: 4423 + - uid: 4400 components: - pos: -45.5,-10.5 parent: 2 type: Transform - - uid: 4424 + - uid: 4401 components: - pos: -46.5,-10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4425 + - uid: 4402 components: - pos: -46.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4426 + - uid: 4403 components: - pos: -46.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4427 + - uid: 4404 components: - pos: -46.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4428 + - uid: 4405 components: - pos: -46.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4429 + - uid: 4406 components: - pos: -46.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4430 + - uid: 4407 components: - pos: -46.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4431 + - uid: 4408 components: - pos: -46.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4432 + - uid: 4409 components: - pos: -47.5,-13.5 parent: 2 type: Transform - - uid: 4433 + - uid: 4410 components: - pos: -48.5,-13.5 parent: 2 type: Transform - - uid: 4434 + - uid: 4411 components: - pos: -49.5,-13.5 parent: 2 type: Transform - - uid: 4435 + - uid: 4412 components: - pos: -45.5,-16.5 parent: 2 type: Transform - - uid: 4436 + - uid: 4413 components: - pos: -45.5,-17.5 parent: 2 type: Transform - - uid: 4437 + - uid: 4414 components: - pos: -45.5,-18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4438 + - uid: 4415 components: - pos: -45.5,-19.5 parent: 2 type: Transform - - uid: 4439 + - uid: 4416 components: - pos: -45.5,-20.5 parent: 2 type: Transform - - uid: 4440 + - uid: 4417 components: - pos: -45.5,-21.5 parent: 2 type: Transform - - uid: 4441 + - uid: 4418 components: - pos: -46.5,-20.5 parent: 2 type: Transform - - uid: 4442 + - uid: 4419 components: - pos: -47.5,-20.5 parent: 2 type: Transform - - uid: 4443 + - uid: 4420 components: - pos: -47.5,-21.5 parent: 2 type: Transform - - uid: 4444 + - uid: 4421 components: - pos: -45.5,-22.5 parent: 2 type: Transform - - uid: 4445 + - uid: 4422 components: - pos: -48.5,-22.5 parent: 2 type: Transform - - uid: 4446 + - uid: 4423 components: - pos: -47.5,-22.5 parent: 2 type: Transform - - uid: 4447 + - uid: 4424 components: - pos: -38.5,-8.5 parent: 2 type: Transform - - uid: 4448 + - uid: 4425 components: - pos: -35.5,-7.5 parent: 2 type: Transform - - uid: 4449 + - uid: 4426 components: - pos: -35.5,-8.5 parent: 2 type: Transform - - uid: 4450 + - uid: 4427 components: - pos: -34.5,-6.5 parent: 2 type: Transform - - uid: 4451 + - uid: 4428 components: - pos: -35.5,-6.5 parent: 2 type: Transform - - uid: 4452 + - uid: 4429 components: - pos: -36.5,-6.5 parent: 2 type: Transform - - uid: 4453 + - uid: 4430 components: - pos: -37.5,-6.5 parent: 2 type: Transform - - uid: 4454 + - uid: 4431 components: - pos: -38.5,-6.5 parent: 2 type: Transform - - uid: 4455 + - uid: 4432 components: - pos: -39.5,-6.5 parent: 2 type: Transform - - uid: 4456 + - uid: 4433 components: - pos: -40.5,-6.5 parent: 2 type: Transform - - uid: 4457 + - uid: 4434 components: - pos: -41.5,-6.5 parent: 2 type: Transform - - uid: 4458 + - uid: 4435 components: - pos: -38.5,-5.5 parent: 2 type: Transform - - uid: 4459 + - uid: 4436 components: - pos: -55.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4460 + - uid: 4437 components: - pos: -55.5,-30.5 parent: 2 type: Transform - - uid: 4461 + - uid: 4438 components: - pos: -57.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4462 + - uid: 4439 components: - pos: -39.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4463 + - uid: 4440 components: - pos: -39.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4464 + - uid: 4441 components: - pos: -50.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4465 + - uid: 4442 components: - pos: -50.5,-16.5 parent: 2 type: Transform - - uid: 4466 + - uid: 4443 components: - pos: -51.5,-16.5 parent: 2 type: Transform - - uid: 4467 + - uid: 4444 components: - pos: -51.5,-17.5 parent: 2 type: Transform - - uid: 4468 + - uid: 4445 components: - pos: -51.5,-18.5 parent: 2 type: Transform - - uid: 4469 + - uid: 4446 components: - pos: -51.5,-19.5 parent: 2 type: Transform - - uid: 4470 + - uid: 4447 components: - pos: -51.5,-20.5 parent: 2 type: Transform - - uid: 4471 + - uid: 4448 components: - pos: -51.5,-21.5 parent: 2 type: Transform - - uid: 4472 + - uid: 4449 components: - pos: -51.5,-22.5 parent: 2 type: Transform - - uid: 4473 + - uid: 4450 components: - pos: -51.5,-23.5 parent: 2 type: Transform - - uid: 4474 + - uid: 4451 components: - pos: -51.5,-24.5 parent: 2 type: Transform - - uid: 4475 + - uid: 4452 components: - pos: -51.5,-25.5 parent: 2 type: Transform - - uid: 4476 + - uid: 4453 components: - pos: -50.5,-25.5 parent: 2 type: Transform - - uid: 4477 + - uid: 4454 components: - pos: -52.5,-19.5 parent: 2 type: Transform - - uid: 4478 + - uid: 4455 components: - pos: -53.5,-19.5 parent: 2 type: Transform - - uid: 4479 + - uid: 4456 components: - pos: -54.5,-19.5 parent: 2 type: Transform - - uid: 4480 + - uid: 4457 components: - pos: -54.5,-20.5 parent: 2 type: Transform - - uid: 4481 + - uid: 4458 components: - pos: -54.5,-21.5 parent: 2 type: Transform - - uid: 4482 + - uid: 4459 components: - pos: -54.5,-22.5 parent: 2 type: Transform - - uid: 4483 + - uid: 4460 components: - pos: -54.5,-23.5 parent: 2 type: Transform - - uid: 4484 + - uid: 4461 components: - pos: -54.5,-24.5 parent: 2 type: Transform - - uid: 4485 + - uid: 4462 components: - pos: -55.5,-24.5 parent: 2 type: Transform - - uid: 4486 + - uid: 4463 components: - pos: -56.5,-24.5 parent: 2 type: Transform - - uid: 4487 + - uid: 4464 components: - pos: -57.5,-24.5 parent: 2 type: Transform - - uid: 4488 + - uid: 4465 components: - pos: -58.5,-24.5 parent: 2 type: Transform - - uid: 4489 + - uid: 4466 components: - pos: -59.5,-24.5 parent: 2 type: Transform - - uid: 4490 + - uid: 4467 components: - pos: -60.5,-24.5 parent: 2 type: Transform - - uid: 4491 + - uid: 4468 components: - pos: -61.5,-24.5 parent: 2 type: Transform - - uid: 4492 + - uid: 4469 components: - pos: -62.5,-24.5 parent: 2 type: Transform - - uid: 4493 + - uid: 4470 components: - pos: -63.5,-24.5 parent: 2 type: Transform - - uid: 4494 + - uid: 4471 components: - pos: -64.5,-24.5 parent: 2 type: Transform - - uid: 4495 + - uid: 4472 components: - pos: -64.5,-25.5 parent: 2 type: Transform - - uid: 4496 + - uid: 4473 components: - pos: -64.5,-26.5 parent: 2 type: Transform - - uid: 4497 + - uid: 4474 components: - pos: -64.5,-27.5 parent: 2 type: Transform - - uid: 4498 + - uid: 4475 components: - pos: -64.5,-28.5 parent: 2 type: Transform - - uid: 4499 + - uid: 4476 components: - pos: -64.5,-29.5 parent: 2 type: Transform - - uid: 4500 + - uid: 4477 components: - pos: -64.5,-30.5 parent: 2 type: Transform - - uid: 4501 + - uid: 4478 components: - pos: -65.5,-30.5 parent: 2 type: Transform - - uid: 4502 + - uid: 4479 components: - pos: -66.5,-30.5 parent: 2 type: Transform - - uid: 4503 + - uid: 4480 components: - pos: -67.5,-30.5 parent: 2 type: Transform - - uid: 4504 + - uid: 4481 components: - pos: -68.5,-30.5 parent: 2 type: Transform - - uid: 4505 + - uid: 4482 components: - pos: -65.5,-30.5 parent: 2 type: Transform - - uid: 4506 + - uid: 4483 components: - pos: -65.5,-31.5 parent: 2 type: Transform - - uid: 4507 + - uid: 4484 components: - pos: -65.5,-32.5 parent: 2 type: Transform - - uid: 4508 + - uid: 4485 components: - pos: -68.5,-31.5 parent: 2 type: Transform - - uid: 4509 + - uid: 4486 components: - pos: -68.5,-28.5 parent: 2 type: Transform - - uid: 4510 + - uid: 4487 components: - pos: -68.5,-27.5 parent: 2 type: Transform - - uid: 4511 + - uid: 4488 components: - pos: -68.5,-26.5 parent: 2 type: Transform - - uid: 4512 + - uid: 4489 components: - pos: -68.5,-29.5 parent: 2 type: Transform - - uid: 4513 + - uid: 4490 components: - pos: -54.5,-18.5 parent: 2 type: Transform - - uid: 4514 + - uid: 4491 components: - pos: -54.5,-17.5 parent: 2 type: Transform - - uid: 4515 + - uid: 4492 components: - pos: -54.5,-16.5 parent: 2 type: Transform - - uid: 4516 + - uid: 4493 components: - pos: -54.5,-15.5 parent: 2 type: Transform - - uid: 4517 + - uid: 4494 components: - pos: -54.5,-14.5 parent: 2 type: Transform - - uid: 4518 + - uid: 4495 components: - pos: -54.5,-13.5 parent: 2 type: Transform - - uid: 4519 + - uid: 4496 components: - pos: -54.5,-12.5 parent: 2 type: Transform - - uid: 4520 + - uid: 4497 components: - pos: -54.5,-11.5 parent: 2 type: Transform - - uid: 4521 + - uid: 4498 components: - pos: -54.5,-10.5 parent: 2 type: Transform - - uid: 4522 + - uid: 4499 components: - pos: -54.5,-9.5 parent: 2 type: Transform - - uid: 4523 + - uid: 4500 components: - pos: -54.5,-8.5 parent: 2 type: Transform - - uid: 4524 + - uid: 4501 components: - pos: -54.5,-7.5 parent: 2 type: Transform - - uid: 4525 + - uid: 4502 components: - pos: -54.5,-6.5 parent: 2 type: Transform - - uid: 4526 + - uid: 4503 components: - pos: -53.5,-7.5 parent: 2 type: Transform - - uid: 4527 + - uid: 4504 components: - pos: -52.5,-7.5 parent: 2 type: Transform - - uid: 4528 + - uid: 4505 components: - pos: -51.5,-7.5 parent: 2 type: Transform - - uid: 4529 + - uid: 4506 components: - pos: -52.5,-6.5 parent: 2 type: Transform - - uid: 4530 + - uid: 4507 components: - pos: -56.5,-28.5 parent: 2 type: Transform - - uid: 4531 + - uid: 4508 components: - pos: -55.5,-29.5 parent: 2 type: Transform - - uid: 4532 + - uid: 4509 components: - pos: -39.5,-70.5 parent: 2 type: Transform - - uid: 4533 + - uid: 4510 components: - pos: 55.5,10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4534 + - uid: 4511 components: - pos: -35.5,-31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4535 + - uid: 4512 components: - pos: -35.5,-32.5 parent: 2 type: Transform - - uid: 4536 + - uid: 4513 components: - pos: -35.5,-33.5 parent: 2 type: Transform - - uid: 4537 + - uid: 4514 components: - pos: -35.5,-34.5 parent: 2 type: Transform - - uid: 4538 + - uid: 4515 components: - pos: -36.5,-34.5 parent: 2 type: Transform - - uid: 4539 + - uid: 4516 components: - pos: -37.5,-34.5 parent: 2 type: Transform - - uid: 4540 + - uid: 4517 components: - pos: -38.5,-34.5 parent: 2 type: Transform - - uid: 4541 + - uid: 4518 components: - pos: -39.5,-34.5 parent: 2 type: Transform - - uid: 4542 + - uid: 4519 components: - pos: -40.5,-34.5 parent: 2 type: Transform - - uid: 4543 + - uid: 4520 components: - pos: -41.5,-34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4544 + - uid: 4521 components: - pos: -42.5,-34.5 parent: 2 type: Transform - - uid: 4545 + - uid: 4522 components: - pos: -43.5,-34.5 parent: 2 type: Transform - - uid: 4546 + - uid: 4523 components: - pos: -39.5,-33.5 parent: 2 type: Transform - - uid: 4547 + - uid: 4524 components: - pos: -41.5,-35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4548 + - uid: 4525 components: - pos: -41.5,-36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4549 + - uid: 4526 components: - pos: -41.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4550 + - uid: 4527 components: - pos: -41.5,-38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4551 + - uid: 4528 components: - pos: -41.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4552 + - uid: 4529 components: - pos: -42.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4553 + - uid: 4530 components: - pos: -43.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4554 + - uid: 4531 components: - pos: -44.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4555 + - uid: 4532 components: - pos: -45.5,-39.5 parent: 2 type: Transform - - uid: 4556 + - uid: 4533 components: - pos: -46.5,-39.5 parent: 2 type: Transform - - uid: 4557 + - uid: 4534 components: - pos: -47.5,-39.5 parent: 2 type: Transform - - uid: 4558 + - uid: 4535 components: - pos: -47.5,-40.5 parent: 2 type: Transform - - uid: 4559 + - uid: 4536 components: - pos: -47.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4560 + - uid: 4537 components: - pos: -48.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4561 + - uid: 4538 components: - pos: -49.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4562 + - uid: 4539 components: - pos: -50.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4563 + - uid: 4540 components: - pos: -51.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4564 + - uid: 4541 components: - pos: -51.5,-42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4565 + - uid: 4542 components: - pos: -51.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4566 + - uid: 4543 components: - pos: -51.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4567 + - uid: 4544 components: - pos: -51.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4568 + - uid: 4545 components: - pos: -51.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4569 + - uid: 4546 components: - pos: -51.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4570 + - uid: 4547 components: - pos: -51.5,-48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4571 + - uid: 4548 components: - pos: -51.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4572 + - uid: 4549 components: - pos: -51.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4573 + - uid: 4550 components: - pos: -51.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4574 + - uid: 4551 components: - pos: -51.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4575 + - uid: 4552 components: - pos: -51.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4576 + - uid: 4553 components: - pos: -51.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4577 + - uid: 4554 components: - pos: -51.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4578 + - uid: 4555 components: - pos: -50.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4579 + - uid: 4556 components: - pos: -49.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4580 + - uid: 4557 components: - pos: -48.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4581 + - uid: 4558 components: - pos: -47.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4582 + - uid: 4559 components: - pos: -50.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4583 + - uid: 4560 components: - pos: -49.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4584 + - uid: 4561 components: - pos: -48.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4585 + - uid: 4562 components: - pos: -47.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4586 + - uid: 4563 components: - pos: -50.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4587 + - uid: 4564 components: - pos: -49.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4588 + - uid: 4565 components: - pos: -48.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4589 + - uid: 4566 components: - pos: -47.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4590 + - uid: 4567 components: - pos: -50.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4591 + - uid: 4568 components: - pos: -49.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4592 + - uid: 4569 components: - pos: -48.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4593 + - uid: 4570 components: - pos: -47.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4594 + - uid: 4571 components: - pos: -50.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4595 + - uid: 4572 components: - pos: -49.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4596 + - uid: 4573 components: - pos: -48.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4597 + - uid: 4574 components: - pos: -47.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4598 + - uid: 4575 components: - pos: -50.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4599 + - uid: 4576 components: - pos: -49.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4600 + - uid: 4577 components: - pos: -48.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4601 + - uid: 4578 components: - pos: -47.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4602 + - uid: 4579 components: - pos: -50.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4603 + - uid: 4580 components: - pos: -49.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4604 + - uid: 4581 components: - pos: -48.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4605 + - uid: 4582 components: - pos: -47.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4606 + - uid: 4583 components: - pos: -38.5,-35.5 parent: 2 type: Transform - - uid: 4607 + - uid: 4584 components: - pos: -38.5,-36.5 parent: 2 type: Transform - - uid: 4608 + - uid: 4585 components: - pos: -38.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4609 + - uid: 4586 components: - pos: -38.5,-38.5 parent: 2 type: Transform - - uid: 4610 + - uid: 4587 components: - pos: -38.5,-39.5 parent: 2 type: Transform - - uid: 4611 + - uid: 4588 components: - pos: -34.5,-34.5 parent: 2 type: Transform - - uid: 4612 + - uid: 4589 components: - pos: -33.5,-34.5 parent: 2 type: Transform - - uid: 4613 + - uid: 4590 components: - pos: -32.5,-34.5 parent: 2 type: Transform - - uid: 4614 + - uid: 4591 components: - pos: -31.5,-34.5 parent: 2 type: Transform - - uid: 4615 + - uid: 4592 components: - pos: -30.5,-34.5 parent: 2 type: Transform - - uid: 4616 + - uid: 4593 components: - pos: -29.5,-34.5 parent: 2 type: Transform - - uid: 4617 + - uid: 4594 components: - pos: -28.5,-34.5 parent: 2 type: Transform - - uid: 4618 + - uid: 4595 components: - pos: -27.5,-34.5 parent: 2 type: Transform - - uid: 4619 + - uid: 4596 components: - pos: -26.5,-34.5 parent: 2 type: Transform - - uid: 4620 + - uid: 4597 components: - pos: -25.5,-34.5 parent: 2 type: Transform - - uid: 4621 + - uid: 4598 components: - pos: -24.5,-34.5 parent: 2 type: Transform - - uid: 4622 + - uid: 4599 components: - pos: -23.5,-34.5 parent: 2 type: Transform - - uid: 4623 + - uid: 4600 components: - pos: -23.5,-33.5 parent: 2 type: Transform - - uid: 4624 + - uid: 4601 components: - pos: -32.5,-33.5 parent: 2 type: Transform - - uid: 4625 + - uid: 4602 components: - pos: -32.5,-32.5 parent: 2 type: Transform - - uid: 4626 + - uid: 4603 components: - pos: -31.5,-35.5 parent: 2 type: Transform - - uid: 4627 + - uid: 4604 components: - pos: -31.5,-36.5 parent: 2 type: Transform - - uid: 4628 + - uid: 4605 components: - pos: -31.5,-37.5 parent: 2 type: Transform - - uid: 4629 + - uid: 4606 components: - pos: -31.5,-38.5 parent: 2 type: Transform - - uid: 4630 + - uid: 4607 components: - pos: -31.5,-39.5 parent: 2 type: Transform - - uid: 4631 + - uid: 4608 components: - pos: -31.5,-40.5 parent: 2 type: Transform - - uid: 4632 + - uid: 4609 components: - pos: -32.5,-40.5 parent: 2 type: Transform - - uid: 4633 + - uid: 4610 components: - pos: -33.5,-40.5 parent: 2 type: Transform - - uid: 4634 + - uid: 4611 components: - pos: -34.5,-40.5 parent: 2 type: Transform - - uid: 4635 + - uid: 4612 components: - pos: -35.5,-40.5 parent: 2 type: Transform - - uid: 4636 + - uid: 4613 components: - pos: -35.5,-41.5 parent: 2 type: Transform - - uid: 4637 + - uid: 4614 components: - pos: -35.5,-42.5 parent: 2 type: Transform - - uid: 4638 + - uid: 4615 components: - pos: -35.5,-43.5 parent: 2 type: Transform - - uid: 4639 + - uid: 4616 components: - pos: -35.5,-44.5 parent: 2 type: Transform - - uid: 4640 + - uid: 4617 components: - pos: -35.5,-45.5 parent: 2 type: Transform - - uid: 4641 + - uid: 4618 components: - pos: -35.5,-46.5 parent: 2 type: Transform - - uid: 4642 + - uid: 4619 components: - pos: -35.5,-47.5 parent: 2 type: Transform - - uid: 4643 + - uid: 4620 components: - pos: -35.5,-48.5 parent: 2 type: Transform - - uid: 4644 + - uid: 4621 components: - pos: -35.5,-49.5 parent: 2 type: Transform - - uid: 4645 + - uid: 4622 components: - pos: -35.5,-50.5 parent: 2 type: Transform - - uid: 4646 + - uid: 4623 components: - pos: -35.5,-51.5 parent: 2 type: Transform - - uid: 4647 + - uid: 4624 components: - pos: -35.5,-52.5 parent: 2 type: Transform - - uid: 4648 + - uid: 4625 components: - pos: -35.5,-53.5 parent: 2 type: Transform - - uid: 4649 + - uid: 4626 components: - pos: -35.5,-54.5 parent: 2 type: Transform - - uid: 4650 + - uid: 4627 components: - pos: -35.5,-55.5 parent: 2 type: Transform - - uid: 4651 + - uid: 4628 components: - pos: -36.5,-43.5 parent: 2 type: Transform - - uid: 4652 + - uid: 4629 components: - pos: -37.5,-43.5 parent: 2 type: Transform - - uid: 4653 + - uid: 4630 components: - pos: -36.5,-46.5 parent: 2 type: Transform - - uid: 4654 + - uid: 4631 components: - pos: -37.5,-46.5 parent: 2 type: Transform - - uid: 4655 + - uid: 4632 components: - pos: 55.5,11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4656 + - uid: 4633 components: - pos: -63.5,-30.5 parent: 2 type: Transform - - uid: 4657 + - uid: 4634 components: - pos: -52.5,-29.5 parent: 2 type: Transform - - uid: 4658 + - uid: 4635 components: - pos: -52.5,-28.5 parent: 2 type: Transform - - uid: 4659 + - uid: 4636 components: - pos: -57.5,-18.5 parent: 2 type: Transform - - uid: 4660 + - uid: 4637 components: - pos: -55.5,-18.5 parent: 2 type: Transform - - uid: 4661 + - uid: 4638 components: - pos: -41.5,-40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4662 + - uid: 4639 components: - pos: -41.5,-41.5 parent: 2 type: Transform - - uid: 4663 + - uid: 4640 components: - pos: -46.5,-40.5 parent: 2 type: Transform - - uid: 4664 + - uid: 4641 components: - pos: -46.5,-41.5 parent: 2 type: Transform - - uid: 4665 + - uid: 4642 components: - pos: -46.5,-42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4666 + - uid: 4643 components: - pos: -46.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4667 + - uid: 4644 components: - pos: -46.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4668 + - uid: 4645 components: - pos: -46.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4669 + - uid: 4646 components: - pos: -25.5,-73.5 parent: 2 type: Transform - - uid: 4670 + - uid: 4647 components: - pos: -21.5,-42.5 parent: 2 type: Transform - - uid: 4671 + - uid: 4648 components: - pos: -22.5,-42.5 parent: 2 type: Transform - - uid: 4672 + - uid: 4649 components: - pos: -29.5,-73.5 parent: 2 type: Transform - - uid: 4673 + - uid: 4650 components: - pos: -39.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4674 + - uid: 4651 components: - pos: -29.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4675 + - uid: 4652 components: - pos: -29.5,-65.5 parent: 2 type: Transform - - uid: 4676 + - uid: 4653 components: - pos: -29.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4677 + - uid: 4654 components: - pos: -30.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4678 + - uid: 4655 components: - pos: -31.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4679 + - uid: 4656 components: - pos: -32.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4680 + - uid: 4657 components: - pos: -33.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4681 + - uid: 4658 components: - pos: -34.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4682 + - uid: 4659 components: - pos: -35.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4683 + - uid: 4660 components: - pos: -35.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4684 + - uid: 4661 components: - pos: -36.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4685 + - uid: 4662 components: - pos: -37.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4686 + - uid: 4663 components: - pos: -38.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4687 + - uid: 4664 components: - pos: -39.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4688 + - uid: 4665 components: - pos: -39.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4689 + - uid: 4666 components: - pos: -40.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4690 + - uid: 4667 components: - pos: -41.5,-64.5 parent: 2 type: Transform - - uid: 4691 + - uid: 4668 components: - pos: -42.5,-64.5 parent: 2 type: Transform - - uid: 4692 + - uid: 4669 components: - pos: -43.5,-64.5 parent: 2 type: Transform - - uid: 4693 + - uid: 4670 components: - pos: -44.5,-64.5 parent: 2 type: Transform - - uid: 4694 + - uid: 4671 components: - pos: -45.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4695 + - uid: 4672 components: - pos: -45.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4696 + - uid: 4673 components: - pos: -46.5,-63.5 parent: 2 type: Transform - - uid: 4697 + - uid: 4674 components: - pos: -47.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4698 + - uid: 4675 components: - pos: -47.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4699 + - uid: 4676 components: - pos: -48.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4700 + - uid: 4677 components: - pos: -49.5,-64.5 parent: 2 type: Transform - - uid: 4701 + - uid: 4678 components: - pos: -49.5,-65.5 parent: 2 type: Transform - - uid: 4702 + - uid: 4679 components: - pos: -49.5,-66.5 parent: 2 type: Transform - - uid: 4703 + - uid: 4680 components: - pos: -48.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4704 + - uid: 4681 components: - pos: -47.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4705 + - uid: 4682 components: - pos: -46.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4706 + - uid: 4683 components: - pos: -45.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4707 + - uid: 4684 components: - pos: -44.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4708 + - uid: 4685 components: - pos: -43.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4709 + - uid: 4686 components: - pos: -42.5,-66.5 parent: 2 type: Transform - - uid: 4710 + - uid: 4687 components: - pos: -42.5,-68.5 parent: 2 type: Transform - - uid: 4711 + - uid: 4688 components: - pos: -42.5,-69.5 parent: 2 type: Transform - - uid: 4712 + - uid: 4689 components: - pos: -42.5,-70.5 parent: 2 type: Transform - - uid: 4713 + - uid: 4690 components: - pos: -42.5,-71.5 parent: 2 type: Transform - - uid: 4714 + - uid: 4691 components: - pos: -43.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4715 + - uid: 4692 components: - pos: -44.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4716 + - uid: 4693 components: - pos: -45.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4717 + - uid: 4694 components: - pos: -45.5,-72.5 parent: 2 type: Transform - - uid: 4718 + - uid: 4695 components: - pos: -45.5,-73.5 parent: 2 type: Transform - - uid: 4719 + - uid: 4696 components: - pos: -45.5,-74.5 parent: 2 type: Transform - - uid: 4720 + - uid: 4697 components: - pos: -45.5,-75.5 parent: 2 type: Transform - - uid: 4721 + - uid: 4698 components: - pos: -44.5,-75.5 parent: 2 type: Transform - - uid: 4722 + - uid: 4699 components: - pos: -43.5,-75.5 parent: 2 type: Transform - - uid: 4723 + - uid: 4700 components: - pos: -42.5,-76.5 parent: 2 type: Transform - - uid: 4724 + - uid: 4701 components: - pos: -42.5,-75.5 parent: 2 type: Transform - - uid: 4725 + - uid: 4702 components: - pos: -41.5,-76.5 parent: 2 type: Transform - - uid: 4726 + - uid: 4703 components: - pos: -40.5,-76.5 parent: 2 type: Transform - - uid: 4727 + - uid: 4704 components: - pos: -40.5,-75.5 parent: 2 type: Transform - - uid: 4728 + - uid: 4705 components: - pos: -39.5,-75.5 parent: 2 type: Transform - - uid: 4729 + - uid: 4706 components: - pos: -38.5,-75.5 parent: 2 type: Transform - - uid: 4730 + - uid: 4707 components: - pos: -37.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4731 + - uid: 4708 components: - pos: -37.5,-76.5 parent: 2 type: Transform - - uid: 4732 + - uid: 4709 components: - pos: -37.5,-77.5 parent: 2 type: Transform - - uid: 4733 + - uid: 4710 components: - pos: -37.5,-78.5 parent: 2 type: Transform - - uid: 4734 + - uid: 4711 components: - pos: -37.5,-79.5 parent: 2 type: Transform - - uid: 4735 + - uid: 4712 components: - pos: -37.5,-80.5 parent: 2 type: Transform - - uid: 4736 + - uid: 4713 components: - pos: -37.5,-81.5 parent: 2 type: Transform - - uid: 4737 + - uid: 4714 components: - pos: -37.5,-82.5 parent: 2 type: Transform - - uid: 4738 + - uid: 4715 components: - pos: -44.5,-85.5 parent: 2 type: Transform - - uid: 4739 + - uid: 4716 components: - pos: -45.5,-85.5 parent: 2 type: Transform - - uid: 4740 + - uid: 4717 components: - pos: -45.5,-84.5 parent: 2 type: Transform - - uid: 4741 + - uid: 4718 components: - pos: -41.5,-85.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4742 + - uid: 4719 components: - pos: -45.5,-83.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4743 + - uid: 4720 components: - pos: -45.5,-82.5 parent: 2 type: Transform - - uid: 4744 + - uid: 4721 components: - pos: -46.5,-82.5 parent: 2 type: Transform - - uid: 4745 + - uid: 4722 components: - pos: -46.5,-83.5 parent: 2 type: Transform - - uid: 4746 + - uid: 4723 components: - pos: -42.5,-85.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4747 + - uid: 4724 components: - pos: -37.5,-83.5 parent: 2 type: Transform - - uid: 4748 + - uid: 4725 components: - pos: -37.5,-84.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4749 + - uid: 4726 components: - pos: -46.5,-81.5 parent: 2 type: Transform - - uid: 4750 + - uid: 4727 components: - pos: -46.5,-80.5 parent: 2 type: Transform - - uid: 4751 + - uid: 4728 components: - pos: -46.5,-79.5 parent: 2 type: Transform - - uid: 4752 + - uid: 4729 components: - pos: -46.5,-78.5 parent: 2 type: Transform - - uid: 4753 + - uid: 4730 components: - pos: -46.5,-77.5 parent: 2 type: Transform - - uid: 4754 + - uid: 4731 components: - pos: -46.5,-76.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4755 + - uid: 4732 components: - pos: -47.5,-76.5 parent: 2 type: Transform - - uid: 4756 + - uid: 4733 components: - pos: -48.5,-76.5 parent: 2 type: Transform - - uid: 4757 + - uid: 4734 components: - pos: -49.5,-76.5 parent: 2 type: Transform - - uid: 4758 + - uid: 4735 components: - pos: -50.5,-76.5 parent: 2 type: Transform - - uid: 4759 + - uid: 4736 components: - pos: -51.5,-76.5 parent: 2 type: Transform - - uid: 4760 + - uid: 4737 components: - pos: -52.5,-76.5 parent: 2 type: Transform - - uid: 4761 + - uid: 4738 components: - pos: -53.5,-76.5 parent: 2 type: Transform - - uid: 4762 + - uid: 4739 components: - pos: -54.5,-76.5 parent: 2 type: Transform - - uid: 4763 + - uid: 4740 components: - pos: -55.5,-76.5 parent: 2 type: Transform - - uid: 4764 + - uid: 4741 components: - pos: -55.5,-77.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4765 + - uid: 4742 components: - pos: -55.5,-78.5 parent: 2 type: Transform - - uid: 4766 + - uid: 4743 components: - pos: -55.5,-79.5 parent: 2 type: Transform - - uid: 4767 + - uid: 4744 components: - pos: -55.5,-80.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4768 + - uid: 4745 components: - pos: -55.5,-81.5 parent: 2 type: Transform - - uid: 4769 + - uid: 4746 components: - pos: -55.5,-75.5 parent: 2 type: Transform - - uid: 4770 + - uid: 4747 components: - pos: -55.5,-74.5 parent: 2 type: Transform - - uid: 4771 + - uid: 4748 components: - pos: -55.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4772 + - uid: 4749 components: - pos: -55.5,-72.5 parent: 2 type: Transform - - uid: 4773 + - uid: 4750 components: - pos: -55.5,-71.5 parent: 2 type: Transform - - uid: 4774 + - uid: 4751 components: - pos: -54.5,-73.5 parent: 2 type: Transform - - uid: 4775 + - uid: 4752 components: - pos: -53.5,-73.5 parent: 2 type: Transform - - uid: 4776 + - uid: 4753 components: - pos: -54.5,-79.5 parent: 2 type: Transform - - uid: 4777 + - uid: 4754 components: - pos: -53.5,-79.5 parent: 2 type: Transform - - uid: 4778 + - uid: 4755 components: - pos: -56.5,-71.5 parent: 2 type: Transform - - uid: 4779 + - uid: 4756 components: - pos: -57.5,-71.5 parent: 2 type: Transform - - uid: 4780 + - uid: 4757 components: - pos: -56.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4781 + - uid: 4758 components: - pos: -57.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4782 + - uid: 4759 components: - pos: -56.5,-79.5 parent: 2 type: Transform - - uid: 4783 + - uid: 4760 components: - pos: -57.5,-79.5 parent: 2 type: Transform - - uid: 4784 + - uid: 4761 components: - pos: -56.5,-81.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4785 + - uid: 4762 components: - pos: -57.5,-81.5 parent: 2 type: Transform - - uid: 4786 + - uid: 4763 components: - pos: -55.5,-82.5 parent: 2 type: Transform - - uid: 4787 + - uid: 4764 components: - pos: -29.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4788 + - uid: 4765 components: - pos: -28.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4789 + - uid: 4766 components: - pos: -28.5,-62.5 parent: 2 type: Transform - - uid: 4790 + - uid: 4767 components: - pos: -28.5,-61.5 parent: 2 type: Transform - - uid: 4791 + - uid: 4768 components: - pos: -28.5,-60.5 parent: 2 type: Transform - - uid: 4792 + - uid: 4769 components: - pos: -28.5,-59.5 parent: 2 type: Transform - - uid: 4793 + - uid: 4770 components: - pos: -28.5,-58.5 parent: 2 type: Transform - - uid: 4794 + - uid: 4771 components: - pos: -28.5,-57.5 parent: 2 type: Transform - - uid: 4795 + - uid: 4772 components: - pos: -28.5,-56.5 parent: 2 type: Transform - - uid: 4796 + - uid: 4773 components: - pos: -28.5,-55.5 parent: 2 type: Transform - - uid: 4797 + - uid: 4774 components: - pos: -28.5,-54.5 parent: 2 type: Transform - - uid: 4798 + - uid: 4775 components: - pos: -27.5,-54.5 parent: 2 type: Transform - - uid: 4799 + - uid: 4776 components: - pos: -26.5,-54.5 parent: 2 type: Transform - - uid: 4800 + - uid: 4777 components: - pos: -25.5,-54.5 parent: 2 type: Transform - - uid: 4801 + - uid: 4778 components: - pos: -25.5,-53.5 parent: 2 type: Transform - - uid: 4802 + - uid: 4779 components: - pos: -25.5,-52.5 parent: 2 type: Transform - - uid: 4803 + - uid: 4780 components: - pos: -25.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4804 + - uid: 4781 components: - pos: -24.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4805 + - uid: 4782 components: - pos: -27.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4806 + - uid: 4783 components: - pos: -27.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4807 + - uid: 4784 components: - pos: -23.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4808 + - uid: 4785 components: - pos: -24.5,-64.5 parent: 2 type: Transform - - uid: 4809 + - uid: 4786 components: - pos: -25.5,-64.5 parent: 2 type: Transform - - uid: 4810 + - uid: 4787 components: - pos: -26.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4811 + - uid: 4788 components: - pos: -23.5,-66.5 parent: 2 type: Transform - - uid: 4812 + - uid: 4789 components: - pos: -23.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4813 + - uid: 4790 components: - pos: -42.5,-72.5 parent: 2 type: Transform - - uid: 4814 + - uid: 4791 components: - pos: -41.5,-72.5 parent: 2 type: Transform - - uid: 4815 + - uid: 4792 components: - pos: -40.5,-72.5 parent: 2 type: Transform - - uid: 4816 + - uid: 4793 components: - pos: -39.5,-72.5 parent: 2 type: Transform - - uid: 4817 + - uid: 4794 components: - pos: -38.5,-72.5 parent: 2 type: Transform - - uid: 4818 + - uid: 4795 components: - pos: -23.5,-42.5 parent: 2 type: Transform - - uid: 4819 + - uid: 4796 components: - pos: -23.5,-43.5 parent: 2 type: Transform - - uid: 4820 + - uid: 4797 components: - pos: -23.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4821 + - uid: 4798 components: - pos: -23.5,-45.5 parent: 2 type: Transform - - uid: 4822 + - uid: 4799 components: - pos: -23.5,-46.5 parent: 2 type: Transform - - uid: 4823 + - uid: 4800 components: - pos: -23.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4824 + - uid: 4801 components: - pos: -23.5,-48.5 parent: 2 type: Transform - - uid: 4825 + - uid: 4802 components: - pos: -23.5,-49.5 parent: 2 type: Transform - - uid: 4826 + - uid: 4803 components: - pos: -24.5,-49.5 parent: 2 type: Transform - - uid: 4827 + - uid: 4804 components: - pos: -25.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4828 + - uid: 4805 components: - pos: -26.5,-49.5 parent: 2 type: Transform - - uid: 4829 + - uid: 4806 components: - pos: -27.5,-49.5 parent: 2 type: Transform - - uid: 4830 + - uid: 4807 components: - pos: -27.5,-48.5 parent: 2 type: Transform - - uid: 4831 + - uid: 4808 components: - pos: -27.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4832 + - uid: 4809 components: - pos: -27.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4833 + - uid: 4810 components: - pos: -26.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4834 + - uid: 4811 components: - pos: -25.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4835 + - uid: 4812 components: - pos: -25.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4836 + - uid: 4813 components: - pos: -25.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4837 + - uid: 4814 components: - pos: -25.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4838 + - uid: 4815 components: - pos: -25.5,-42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4839 + - uid: 4816 components: - pos: -25.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4840 + - uid: 4817 components: - pos: -25.5,-40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4841 + - uid: 4818 components: - pos: -25.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4842 + - uid: 4819 components: - pos: -26.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4843 + - uid: 4820 components: - pos: -27.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4844 + - uid: 4821 components: - pos: -28.5,-41.5 parent: 2 type: Transform - - uid: 4845 + - uid: 4822 components: - pos: -27.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4846 + - uid: 4823 components: - pos: -27.5,-44.5 parent: 2 type: Transform - - uid: 4847 + - uid: 4824 components: - pos: -28.5,-44.5 parent: 2 type: Transform - - uid: 4848 + - uid: 4825 components: - pos: -29.5,-44.5 parent: 2 type: Transform - - uid: 4849 + - uid: 4826 components: - pos: -30.5,-44.5 parent: 2 type: Transform - - uid: 4850 + - uid: 4827 components: - pos: -31.5,-44.5 parent: 2 type: Transform - - uid: 4851 + - uid: 4828 components: - pos: -31.5,-45.5 parent: 2 type: Transform - - uid: 4852 + - uid: 4829 components: - pos: -31.5,-46.5 parent: 2 type: Transform - - uid: 4853 + - uid: 4830 components: - pos: -31.5,-47.5 parent: 2 type: Transform - - uid: 4854 + - uid: 4831 components: - pos: -23.5,-51.5 parent: 2 type: Transform - - uid: 4855 + - uid: 4832 components: - pos: -30.5,-47.5 parent: 2 type: Transform - - uid: 4856 + - uid: 4833 components: - pos: -30.5,-48.5 parent: 2 type: Transform - - uid: 4857 + - uid: 4834 components: - pos: -30.5,-49.5 parent: 2 type: Transform - - uid: 4858 + - uid: 4835 components: - pos: -22.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4859 + - uid: 4836 components: - pos: -19.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4860 + - uid: 4837 components: - pos: -20.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4861 + - uid: 4838 components: - pos: -22.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4862 + - uid: 4839 components: - pos: -22.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4863 + - uid: 4840 components: - pos: -22.5,-54.5 parent: 2 type: Transform - - uid: 4864 + - uid: 4841 components: - pos: -22.5,-55.5 parent: 2 type: Transform - - uid: 4865 + - uid: 4842 components: - pos: -21.5,-52.5 parent: 2 type: Transform - - uid: 4866 + - uid: 4843 components: - pos: -55.5,-60.5 parent: 2 type: Transform - - uid: 4867 + - uid: 4844 components: - pos: 30.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4868 + - uid: 4845 components: - pos: 29.5,-14.5 parent: 2 type: Transform - - uid: 4869 + - uid: 4846 components: - pos: 30.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4870 + - uid: 4847 components: - pos: 30.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4871 + - uid: 4848 components: - pos: -1.5,-79.5 parent: 2 type: Transform - - uid: 4872 + - uid: 4849 components: - pos: 28.5,-25.5 parent: 2 type: Transform - - uid: 4873 + - uid: 4850 components: - pos: -34.5,-55.5 parent: 2 type: Transform - - uid: 4874 + - uid: 4851 components: - pos: -33.5,-26.5 parent: 2 type: Transform - - uid: 4875 + - uid: 4852 components: - pos: -34.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4876 + - uid: 4853 components: - pos: -35.5,-26.5 parent: 2 type: Transform - - uid: 4877 + - uid: 4854 components: - pos: -35.5,-25.5 parent: 2 type: Transform - - uid: 4878 + - uid: 4855 components: - pos: -35.5,-24.5 parent: 2 type: Transform - - uid: 4879 + - uid: 4856 components: - pos: -36.5,-24.5 parent: 2 type: Transform - - uid: 4880 + - uid: 4857 components: - pos: -37.5,-24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4881 + - uid: 4858 components: - pos: -37.5,-23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4882 + - uid: 4859 components: - pos: -37.5,-22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4883 + - uid: 4860 components: - pos: -37.5,-21.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4885 + - uid: 4861 components: - pos: -38.5,-22.5 parent: 2 type: Transform - - uid: 4886 + - uid: 4862 components: - pos: -39.5,-22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4887 + - uid: 4863 components: - pos: -39.5,-23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4888 + - uid: 4864 components: - pos: -39.5,-24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4889 + - uid: 4865 components: - pos: -40.5,-24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4890 + - uid: 4866 components: - pos: -41.5,-24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4891 + - uid: 4867 components: - pos: -41.5,-25.5 parent: 2 type: Transform - - uid: 4892 + - uid: 4868 components: - pos: -41.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4893 + - uid: 4869 components: - pos: -43.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4894 + - uid: 4870 components: - pos: -42.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4895 + - uid: 4871 components: - pos: -40.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4896 + - uid: 4872 components: - pos: -39.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4897 + - uid: 4873 components: - pos: -38.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4898 + - uid: 4874 components: - pos: -37.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4899 + - uid: 4875 components: - pos: -37.5,-27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4900 + - uid: 4876 components: - pos: -37.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4901 + - uid: 4877 components: - pos: -36.5,-28.5 parent: 2 type: Transform - - uid: 4902 + - uid: 4878 components: - pos: -35.5,-28.5 parent: 2 type: Transform - - uid: 4903 + - uid: 4879 components: - pos: -35.5,-29.5 parent: 2 type: Transform - - uid: 4904 + - uid: 4880 components: - pos: -35.5,-30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4905 + - uid: 4881 components: - pos: -44.5,-26.5 parent: 2 type: Transform - - uid: 4906 + - uid: 4882 components: - pos: -44.5,-27.5 parent: 2 type: Transform - - uid: 4907 + - uid: 4883 components: - pos: -45.5,-27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4908 + - uid: 4884 components: - pos: -46.5,-27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4909 + - uid: 4885 components: - pos: -47.5,-27.5 parent: 2 type: Transform - - uid: 4910 + - uid: 4886 components: - pos: -48.5,-27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4911 + - uid: 4887 components: - pos: -48.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4912 + - uid: 4888 components: - pos: -48.5,-29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4913 + - uid: 4889 components: - pos: -48.5,-30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4914 + - uid: 4890 components: - pos: -48.5,-31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4915 + - uid: 4891 components: - pos: -48.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4916 + - uid: 4892 components: - pos: -50.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4917 + - uid: 4893 components: - pos: -49.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4918 + - uid: 4894 components: - pos: -51.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4919 + - uid: 4895 components: - pos: -52.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4920 + - uid: 4896 components: - pos: -53.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4921 + - uid: 4897 components: - pos: -54.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4922 + - uid: 4898 components: - pos: -55.5,-32.5 parent: 2 type: Transform - - uid: 4923 + - uid: 4899 components: - pos: -55.5,-33.5 parent: 2 type: Transform - - uid: 4924 + - uid: 4900 components: - pos: -55.5,-34.5 parent: 2 type: Transform - - uid: 4925 + - uid: 4901 components: - pos: -55.5,-35.5 parent: 2 type: Transform - - uid: 4926 + - uid: 4902 components: - pos: -55.5,-36.5 parent: 2 type: Transform - - uid: 4927 + - uid: 4903 components: - pos: -55.5,-37.5 parent: 2 type: Transform - - uid: 4928 + - uid: 4904 components: - pos: -55.5,-38.5 parent: 2 type: Transform - - uid: 4929 + - uid: 4905 components: - pos: -55.5,-39.5 parent: 2 type: Transform - - uid: 4930 + - uid: 4906 components: - pos: -56.5,-39.5 parent: 2 type: Transform - - uid: 4931 + - uid: 4907 components: - pos: -56.5,-40.5 parent: 2 type: Transform - - uid: 4932 + - uid: 4908 components: - pos: -56.5,-41.5 parent: 2 type: Transform - - uid: 4933 + - uid: 4909 components: - pos: -56.5,-42.5 parent: 2 type: Transform - - uid: 4934 + - uid: 4910 components: - pos: -56.5,-43.5 parent: 2 type: Transform - - uid: 4935 + - uid: 4911 components: - pos: -56.5,-44.5 parent: 2 type: Transform - - uid: 4936 + - uid: 4912 components: - pos: -56.5,-45.5 parent: 2 type: Transform - - uid: 4937 + - uid: 4913 components: - pos: -56.5,-46.5 parent: 2 type: Transform - - uid: 4938 + - uid: 4914 components: - pos: -56.5,-47.5 parent: 2 type: Transform - - uid: 4939 + - uid: 4915 components: - pos: -56.5,-48.5 parent: 2 type: Transform - - uid: 4940 + - uid: 4916 components: - pos: -56.5,-49.5 parent: 2 type: Transform - - uid: 4941 + - uid: 4917 components: - pos: -56.5,-50.5 parent: 2 type: Transform - - uid: 4942 + - uid: 4918 components: - pos: -56.5,-51.5 parent: 2 type: Transform - - uid: 4943 + - uid: 4919 components: - pos: -56.5,-52.5 parent: 2 type: Transform - - uid: 4944 + - uid: 4920 components: - pos: -56.5,-53.5 parent: 2 type: Transform - - uid: 4945 + - uid: 4921 components: - pos: -56.5,-54.5 parent: 2 type: Transform - - uid: 4946 + - uid: 4922 components: - pos: -56.5,-55.5 parent: 2 type: Transform - - uid: 4947 + - uid: 4923 components: - pos: -56.5,-56.5 parent: 2 type: Transform - - uid: 4948 + - uid: 4924 components: - pos: -56.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4949 + - uid: 4925 components: - pos: -56.5,-58.5 parent: 2 type: Transform - - uid: 4950 + - uid: 4926 components: - pos: -57.5,-58.5 parent: 2 type: Transform - - uid: 4951 + - uid: 4927 components: - pos: -57.5,-59.5 parent: 2 type: Transform - - uid: 4952 + - uid: 4928 components: - pos: -50.5,-64.5 parent: 2 type: Transform - - uid: 4953 + - uid: 4929 components: - pos: -50.5,-63.5 parent: 2 type: Transform - - uid: 4954 + - uid: 4930 components: - pos: -51.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4955 + - uid: 4931 components: - pos: -55.5,-58.5 parent: 2 type: Transform - - uid: 4956 + - uid: 4932 components: - pos: -55.5,-59.5 parent: 2 type: Transform - - uid: 4957 + - uid: 4933 components: - pos: -55.5,-61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4958 + - uid: 4934 components: - pos: -36.5,-30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4959 + - uid: 4935 components: - pos: -38.5,-28.5 parent: 2 type: Transform - - uid: 4960 + - uid: 4936 components: - pos: -38.5,-30.5 parent: 2 type: Transform - - uid: 4961 + - uid: 4937 components: - pos: -39.5,-30.5 parent: 2 type: Transform - - uid: 4962 + - uid: 4938 components: - pos: -40.5,-30.5 parent: 2 type: Transform - - uid: 4963 + - uid: 4939 components: - pos: -41.5,-30.5 parent: 2 type: Transform - - uid: 4964 + - uid: 4940 components: - pos: -41.5,-29.5 parent: 2 type: Transform - - uid: 4965 + - uid: 4941 components: - pos: -56.5,-85.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4966 + - uid: 4942 components: - pos: -56.5,-86.5 parent: 2 type: Transform - - uid: 4967 + - uid: 4943 components: - pos: -56.5,-87.5 parent: 2 type: Transform - - uid: 4968 + - uid: 4944 components: - pos: -55.5,-87.5 parent: 2 type: Transform - - uid: 4969 + - uid: 4945 components: - pos: -54.5,-87.5 parent: 2 type: Transform - - uid: 4970 + - uid: 4946 components: - pos: -53.5,-87.5 parent: 2 type: Transform - - uid: 4971 + - uid: 4947 components: - pos: -52.5,-87.5 parent: 2 type: Transform - - uid: 4972 + - uid: 4948 components: - pos: -54.5,-86.5 parent: 2 type: Transform - - uid: 4973 + - uid: 4949 components: - pos: -54.5,-85.5 parent: 2 type: Transform - - uid: 4974 + - uid: 4950 components: - pos: -54.5,-88.5 parent: 2 type: Transform - - uid: 4975 + - uid: 4951 components: - pos: -54.5,-89.5 parent: 2 type: Transform - - uid: 4976 + - uid: 4952 components: - pos: -55.5,-85.5 parent: 2 type: Transform - - uid: 4977 + - uid: 4953 components: - pos: 33.5,22.5 parent: 2 type: Transform - - uid: 4978 + - uid: 4954 components: - pos: 34.5,22.5 parent: 2 type: Transform - - uid: 4979 + - uid: 4955 components: - pos: 35.5,22.5 parent: 2 type: Transform - - uid: 4980 + - uid: 4956 components: - pos: 36.5,22.5 parent: 2 type: Transform - - uid: 4981 + - uid: 4957 components: - pos: 36.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4982 + - uid: 4958 components: - pos: 37.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4983 + - uid: 4959 components: - pos: 38.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4984 + - uid: 4960 components: - pos: 39.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4985 + - uid: 4961 components: - pos: 40.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4986 + - uid: 4962 components: - pos: 42.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4987 + - uid: 4963 components: - pos: 44.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4988 + - uid: 4964 components: - pos: 43.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4989 + - uid: 4965 components: - pos: 44.5,24.5 parent: 2 type: Transform - - uid: 4990 + - uid: 4966 components: - pos: 44.5,25.5 parent: 2 type: Transform - - uid: 4991 + - uid: 4967 components: - pos: 44.5,26.5 parent: 2 type: Transform - - uid: 4992 + - uid: 4968 components: - pos: 47.5,26.5 parent: 2 type: Transform - - uid: 4993 + - uid: 4969 components: - pos: 48.5,26.5 parent: 2 type: Transform - - uid: 4994 + - uid: 4970 components: - pos: 49.5,26.5 parent: 2 type: Transform - - uid: 4995 + - uid: 4971 components: - pos: 50.5,26.5 parent: 2 type: Transform - - uid: 4996 + - uid: 4972 components: - pos: 51.5,26.5 parent: 2 type: Transform - - uid: 4997 + - uid: 4973 components: - pos: 52.5,26.5 parent: 2 type: Transform - - uid: 4998 + - uid: 4974 components: - pos: 53.5,26.5 parent: 2 type: Transform - - uid: 4999 + - uid: 4975 components: - pos: 54.5,26.5 parent: 2 type: Transform - - uid: 5000 + - uid: 4976 components: - pos: 55.5,26.5 parent: 2 type: Transform - - uid: 5001 + - uid: 4977 components: - pos: 56.5,26.5 parent: 2 type: Transform - - uid: 5002 + - uid: 4978 components: - pos: 57.5,26.5 parent: 2 type: Transform - - uid: 5003 + - uid: 4979 components: - pos: 58.5,26.5 parent: 2 type: Transform - - uid: 5004 + - uid: 4980 components: - pos: 59.5,26.5 parent: 2 type: Transform - - uid: 5005 + - uid: 4981 components: - pos: 60.5,26.5 parent: 2 type: Transform - - uid: 5006 + - uid: 4982 components: - pos: 63.5,5.5 parent: 2 type: Transform - - uid: 5007 + - uid: 4983 components: - pos: 64.5,5.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5008 + - uid: 4984 components: - pos: 65.5,5.5 parent: 2 type: Transform - - uid: 5009 + - uid: 4985 components: - pos: 65.5,4.5 parent: 2 type: Transform - - uid: 5010 + - uid: 4986 components: - pos: 65.5,6.5 parent: 2 type: Transform - - uid: 5011 + - uid: 4987 components: - pos: 65.5,7.5 parent: 2 type: Transform - - uid: 5012 + - uid: 4988 components: - pos: 65.5,8.5 parent: 2 type: Transform - - uid: 5013 + - uid: 4989 components: - pos: 65.5,9.5 parent: 2 type: Transform - - uid: 5014 + - uid: 4990 components: - pos: 65.5,10.5 parent: 2 type: Transform - - uid: 5015 + - uid: 4991 components: - pos: 65.5,11.5 parent: 2 type: Transform - - uid: 5016 + - uid: 4992 components: - pos: 65.5,12.5 parent: 2 type: Transform - - uid: 5017 + - uid: 4993 components: - pos: 65.5,13.5 parent: 2 type: Transform - - uid: 5018 + - uid: 4994 components: - pos: 65.5,14.5 parent: 2 type: Transform - - uid: 5019 + - uid: 4995 components: - pos: 65.5,15.5 parent: 2 type: Transform - - uid: 5020 + - uid: 4996 components: - pos: 53.5,27.5 parent: 2 type: Transform - - uid: 5021 + - uid: 4997 components: - pos: -25.5,-27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5022 + - uid: 4998 components: - pos: -25.5,-28.5 parent: 2 type: Transform - - uid: 5023 + - uid: 4999 components: - pos: -25.5,-29.5 parent: 2 type: Transform - - uid: 5024 + - uid: 5000 components: - pos: -26.5,-29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5025 + - uid: 5001 components: - pos: -28.5,-29.5 parent: 2 type: Transform - - uid: 5026 + - uid: 5002 components: - pos: -27.5,-29.5 parent: 2 type: Transform - - uid: 5027 + - uid: 5003 components: - pos: -24.5,-29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5028 + - uid: 5004 components: - pos: 8.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5029 + - uid: 5005 components: - pos: 7.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5030 + - uid: 5006 components: - pos: 6.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5031 + - uid: 5007 components: - pos: 5.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5032 + - uid: 5008 components: - pos: 4.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5033 + - uid: 5009 components: - pos: 4.5,-15.5 parent: 2 type: Transform - - uid: 5034 + - uid: 5010 components: - pos: 4.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5035 + - uid: 5011 components: - pos: 3.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5036 + - uid: 5012 components: - pos: 2.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5037 + - uid: 5013 components: - pos: 1.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5038 + - uid: 5014 components: - pos: 0.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5039 - components: - - pos: 2.5,-14.5 - parent: 2 - type: Transform - - uid: 5040 + - uid: 5015 components: - pos: 2.5,-14.5 parent: 2 type: Transform - - uid: 5041 + - uid: 5016 components: - pos: 3.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5042 + - uid: 5017 components: - pos: 1.5,-14.5 parent: 2 type: Transform - - uid: 5043 + - uid: 5018 components: - pos: 0.5,-14.5 parent: 2 type: Transform - - uid: 5044 + - uid: 5019 components: - pos: -0.5,-14.5 parent: 2 type: Transform - - uid: 5045 + - uid: 5020 components: - pos: -0.5,-13.5 parent: 2 type: Transform - - uid: 5046 + - uid: 5021 components: - pos: -0.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5047 + - uid: 5022 components: - pos: -0.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5048 + - uid: 5023 components: - pos: -0.5,-9.5 parent: 2 type: Transform - - uid: 5049 + - uid: 5024 components: - pos: -0.5,-10.5 parent: 2 type: Transform - - uid: 5050 + - uid: 5025 components: - pos: 0.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5051 + - uid: 5026 components: - pos: 0.5,34.5 parent: 2 type: Transform - - uid: 5052 + - uid: 5027 components: - pos: 0.5,33.5 parent: 2 type: Transform - - uid: 5053 + - uid: 5028 components: - pos: 0.5,32.5 parent: 2 type: Transform - - uid: 5054 + - uid: 5029 components: - pos: 1.5,32.5 parent: 2 type: Transform - - uid: 5055 + - uid: 5030 components: - pos: 2.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5056 + - uid: 5031 components: - pos: 13.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5057 + - uid: 5032 components: - pos: 14.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5058 + - uid: 5033 components: - pos: 15.5,32.5 parent: 2 type: Transform - - uid: 5059 + - uid: 5034 components: - pos: 16.5,32.5 parent: 2 type: Transform - - uid: 5060 + - uid: 5035 components: - pos: 16.5,33.5 parent: 2 type: Transform - - uid: 5061 + - uid: 5036 components: - pos: 16.5,34.5 parent: 2 type: Transform - - uid: 5062 + - uid: 5037 components: - pos: 16.5,31.5 parent: 2 type: Transform - - uid: 5063 + - uid: 5038 components: - pos: 16.5,30.5 parent: 2 type: Transform - - uid: 5064 + - uid: 5039 components: - pos: 16.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5065 + - uid: 5040 components: - pos: 16.5,28.5 parent: 2 type: Transform - - uid: 5066 + - uid: 5041 components: - pos: 16.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5067 + - uid: 5042 components: - pos: 16.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5068 + - uid: 5043 components: - pos: 16.5,25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5069 + - uid: 5044 components: - pos: 15.5,25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5070 + - uid: 5045 components: - pos: 14.5,25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5071 + - uid: 5046 components: - pos: 13.5,25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5072 + - uid: 5047 components: - pos: 12.5,25.5 parent: 2 type: Transform - - uid: 5073 + - uid: 5048 components: - pos: 11.5,25.5 parent: 2 type: Transform - - uid: 5074 + - uid: 5049 components: - pos: 11.5,24.5 parent: 2 type: Transform - - uid: 5075 + - uid: 5050 components: - pos: 10.5,24.5 parent: 2 type: Transform - - uid: 5076 + - uid: 5051 components: - pos: 9.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5077 + - uid: 5052 components: - pos: 8.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5078 + - uid: 5053 components: - pos: 7.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5079 + - uid: 5054 components: - pos: 6.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5080 + - uid: 5055 components: - pos: 5.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5081 + - uid: 5056 components: - pos: 4.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5082 + - uid: 5057 components: - pos: 3.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5083 + - uid: 5058 components: - pos: 2.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5084 + - uid: 5059 components: - pos: 1.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5085 + - uid: 5060 components: - pos: 0.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5086 + - uid: 5061 components: - pos: -0.5,24.5 parent: 2 type: Transform - - uid: 5087 + - uid: 5062 components: - pos: -1.5,24.5 parent: 2 type: Transform - - uid: 5088 + - uid: 5063 components: - pos: -0.5,32.5 parent: 2 type: Transform - - uid: 5089 + - uid: 5064 components: - pos: -1.5,32.5 parent: 2 type: Transform - - uid: 5090 + - uid: 5065 components: - pos: -2.5,32.5 parent: 2 type: Transform - - uid: 5091 + - uid: 5066 components: - pos: -3.5,32.5 parent: 2 type: Transform - - uid: 5092 + - uid: 5067 components: - pos: -4.5,32.5 parent: 2 type: Transform - - uid: 5093 + - uid: 5068 components: - pos: -5.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5094 + - uid: 5069 components: - pos: -6.5,32.5 parent: 2 type: Transform - - uid: 5095 + - uid: 5070 components: - pos: -7.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5096 + - uid: 5071 components: - pos: -8.5,32.5 parent: 2 type: Transform - - uid: 5097 + - uid: 5072 components: - pos: -8.5,31.5 parent: 2 type: Transform - - uid: 5098 + - uid: 5073 components: - pos: -8.5,30.5 parent: 2 type: Transform - - uid: 5099 + - uid: 5074 components: - pos: -8.5,29.5 parent: 2 type: Transform - - uid: 5100 + - uid: 5075 components: - pos: -8.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5101 + - uid: 5076 components: - pos: -8.5,27.5 parent: 2 type: Transform - - uid: 5102 + - uid: 5077 components: - pos: -8.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5103 + - uid: 5078 components: - pos: -12.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5104 + - uid: 5079 components: - pos: -8.5,23.5 parent: 2 type: Transform - - uid: 5105 + - uid: 5080 components: - pos: -1.5,33.5 parent: 2 type: Transform - - uid: 5106 + - uid: 5081 components: - pos: -1.5,34.5 parent: 2 type: Transform - - uid: 5107 + - uid: 5082 components: - pos: -1.5,31.5 parent: 2 type: Transform - - uid: 5108 + - uid: 5083 components: - pos: -15.5,26.5 parent: 2 type: Transform - - uid: 5109 + - uid: 5084 components: - pos: -11.5,28.5 parent: 2 type: Transform - - uid: 5110 + - uid: 5085 components: - pos: -11.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5111 + - uid: 5086 components: - pos: -68.5,-25.5 parent: 2 type: Transform - - uid: 5112 + - uid: 5087 components: - pos: -68.5,-24.5 parent: 2 type: Transform - - uid: 5113 + - uid: 5088 components: - pos: -68.5,-23.5 parent: 2 type: Transform - - uid: 5114 + - uid: 5089 components: - pos: -69.5,-23.5 parent: 2 type: Transform - - uid: 5115 + - uid: 5090 components: - pos: -70.5,-23.5 parent: 2 type: Transform - - uid: 5116 + - uid: 5091 components: - pos: -71.5,-23.5 parent: 2 type: Transform - - uid: 5117 + - uid: 5092 components: - pos: -72.5,-23.5 parent: 2 type: Transform - - uid: 5118 + - uid: 5093 components: - pos: -73.5,-23.5 parent: 2 type: Transform - - uid: 5119 + - uid: 5094 components: - pos: -72.5,-24.5 parent: 2 type: Transform - - uid: 5120 + - uid: 5095 components: - pos: -72.5,-25.5 parent: 2 type: Transform - - uid: 5121 + - uid: 5096 components: - pos: -74.5,-23.5 parent: 2 type: Transform - - uid: 5122 + - uid: 5097 components: - pos: -74.5,-24.5 parent: 2 type: Transform - - uid: 5123 + - uid: 5098 components: - pos: -42.5,-6.5 parent: 2 type: Transform - - uid: 5124 + - uid: 5099 components: - pos: -43.5,-6.5 parent: 2 type: Transform - - uid: 5125 + - uid: 5100 components: - pos: -44.5,-6.5 parent: 2 type: Transform - - uid: 5126 + - uid: 5101 components: - pos: -45.5,-6.5 parent: 2 type: Transform - - uid: 5127 + - uid: 5102 components: - pos: -46.5,-6.5 parent: 2 type: Transform - - uid: 5128 + - uid: 5103 components: - pos: -47.5,-6.5 parent: 2 type: Transform - - uid: 5129 + - uid: 5104 components: - pos: -48.5,-6.5 parent: 2 type: Transform - - uid: 5130 + - uid: 5105 components: - pos: -42.5,16.5 parent: 2 type: Transform - - uid: 5131 + - uid: 5106 components: - pos: -9.5,24.5 parent: 2 type: Transform - - uid: 5132 + - uid: 5107 components: - pos: -10.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5133 + - uid: 5108 components: - pos: -9.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5134 + - uid: 5109 components: - pos: -9.5,25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5135 + - uid: 5110 components: - pos: -9.5,23.5 parent: 2 type: Transform - - uid: 5136 + - uid: 5111 components: - pos: -14.5,26.5 parent: 2 type: Transform - - uid: 5137 + - uid: 5112 components: - pos: -11.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5138 + - uid: 5113 components: - pos: 21.5,22.5 parent: 2 type: Transform - - uid: 5139 + - uid: 5114 components: - pos: 21.5,23.5 parent: 2 type: Transform - - uid: 5140 + - uid: 5115 components: - pos: -18.5,15.5 parent: 2 type: Transform - - uid: 5141 + - uid: 5116 components: - pos: -18.5,16.5 parent: 2 type: Transform - - uid: 5142 + - uid: 5117 components: - pos: -18.5,17.5 parent: 2 type: Transform - - uid: 5143 + - uid: 5118 components: - pos: -18.5,18.5 parent: 2 type: Transform - - uid: 5144 + - uid: 5119 components: - pos: -18.5,19.5 parent: 2 type: Transform - - uid: 5145 + - uid: 5120 components: - pos: -18.5,20.5 parent: 2 type: Transform - - uid: 5146 + - uid: 5121 components: - pos: -18.5,21.5 parent: 2 type: Transform - - uid: 5147 + - uid: 5122 components: - pos: -19.5,21.5 parent: 2 type: Transform - - uid: 5148 + - uid: 5123 components: - pos: -20.5,21.5 parent: 2 type: Transform - - uid: 5149 + - uid: 5124 components: - pos: -21.5,21.5 parent: 2 type: Transform - - uid: 5150 + - uid: 5125 components: - pos: -22.5,21.5 parent: 2 type: Transform - - uid: 5151 + - uid: 5126 components: - pos: -23.5,21.5 parent: 2 type: Transform - - uid: 5152 + - uid: 5127 components: - pos: -23.5,22.5 parent: 2 type: Transform - - uid: 5153 + - uid: 5128 components: - pos: -23.5,23.5 parent: 2 type: Transform - - uid: 5154 + - uid: 5129 components: - pos: -23.5,24.5 parent: 2 type: Transform - - uid: 5155 + - uid: 5130 components: - pos: -23.5,25.5 parent: 2 type: Transform - - uid: 5156 + - uid: 5131 components: - pos: -23.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5157 + - uid: 5132 components: - pos: -24.5,21.5 parent: 2 type: Transform - - uid: 5158 + - uid: 5133 components: - pos: -25.5,21.5 parent: 2 type: Transform - - uid: 5159 + - uid: 5134 components: - pos: -26.5,21.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5160 + - uid: 5135 components: - pos: -27.5,21.5 parent: 2 type: Transform - - uid: 5161 + - uid: 5136 components: - pos: -28.5,21.5 parent: 2 type: Transform - - uid: 5162 + - uid: 5137 components: - pos: -28.5,22.5 parent: 2 type: Transform - - uid: 5163 + - uid: 5138 components: - pos: -29.5,22.5 parent: 2 type: Transform - - uid: 5164 + - uid: 5139 components: - pos: -30.5,22.5 parent: 2 type: Transform - - uid: 5165 + - uid: 5140 components: - pos: -31.5,22.5 parent: 2 type: Transform - - uid: 5166 + - uid: 5141 components: - pos: -32.5,22.5 parent: 2 type: Transform - - uid: 5167 + - uid: 5142 components: - pos: -32.5,23.5 parent: 2 type: Transform - - uid: 5168 + - uid: 5143 components: - pos: -32.5,24.5 parent: 2 type: Transform - - uid: 5169 + - uid: 5144 components: - pos: -32.5,25.5 parent: 2 type: Transform - - uid: 5170 + - uid: 5145 components: - pos: -32.5,26.5 parent: 2 type: Transform - - uid: 5171 + - uid: 5146 components: - pos: -32.5,27.5 parent: 2 type: Transform - - uid: 5172 + - uid: 5147 components: - pos: -31.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5173 + - uid: 5148 components: - pos: -30.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5174 + - uid: 5149 components: - pos: -33.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5175 + - uid: 5150 components: - pos: -32.5,28.5 parent: 2 type: Transform - - uid: 5176 + - uid: 5151 components: - pos: -32.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5177 + - uid: 5152 components: - pos: -32.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5178 + - uid: 5153 components: - pos: -33.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5179 + - uid: 5154 components: - pos: -33.5,25.5 parent: 2 type: Transform - - uid: 5180 + - uid: 5155 components: - pos: -34.5,25.5 parent: 2 type: Transform - - uid: 5181 + - uid: 5156 components: - pos: -35.5,25.5 parent: 2 type: Transform - - uid: 5182 + - uid: 5157 components: - pos: -36.5,25.5 parent: 2 type: Transform - - uid: 5183 + - uid: 5158 components: - pos: -37.5,25.5 parent: 2 type: Transform - - uid: 5184 + - uid: 5159 components: - pos: -38.5,25.5 parent: 2 type: Transform - - uid: 5185 + - uid: 5160 components: - pos: -38.5,24.5 parent: 2 type: Transform - - uid: 5186 + - uid: 5161 components: - pos: -38.5,23.5 parent: 2 type: Transform - - uid: 5187 + - uid: 5162 components: - pos: -38.5,22.5 parent: 2 type: Transform - - uid: 5188 + - uid: 5163 components: - pos: -39.5,22.5 parent: 2 type: Transform - - uid: 5189 + - uid: 5164 components: - pos: -40.5,22.5 parent: 2 type: Transform - - uid: 5190 + - uid: 5165 components: - pos: -41.5,22.5 parent: 2 type: Transform - - uid: 5191 + - uid: 5166 components: - pos: -42.5,22.5 parent: 2 type: Transform - - uid: 5192 + - uid: 5167 components: - pos: -43.5,22.5 parent: 2 type: Transform - - uid: 5193 + - uid: 5168 components: - pos: -44.5,22.5 parent: 2 type: Transform - - uid: 5194 + - uid: 5169 components: - pos: -45.5,22.5 parent: 2 type: Transform - - uid: 5195 + - uid: 5170 components: - pos: -46.5,22.5 parent: 2 type: Transform - - uid: 5196 + - uid: 5171 components: - pos: -47.5,22.5 parent: 2 type: Transform - - uid: 5197 + - uid: 5172 components: - pos: -48.5,22.5 parent: 2 type: Transform - - uid: 5198 + - uid: 5173 components: - pos: -49.5,22.5 parent: 2 type: Transform - - uid: 5199 + - uid: 5174 components: - pos: -50.5,22.5 parent: 2 type: Transform - - uid: 5200 + - uid: 5175 components: - pos: -32.5,21.5 parent: 2 type: Transform - - uid: 5201 + - uid: 5176 components: - pos: -32.5,20.5 parent: 2 type: Transform - - uid: 5202 + - uid: 5177 components: - pos: -32.5,19.5 parent: 2 type: Transform - - uid: 5203 + - uid: 5178 components: - pos: -32.5,18.5 parent: 2 type: Transform - - uid: 5204 + - uid: 5179 components: - pos: -33.5,18.5 parent: 2 type: Transform - - uid: 5205 + - uid: 5180 components: - pos: -34.5,18.5 parent: 2 type: Transform - - uid: 5206 + - uid: 5181 components: - pos: -35.5,18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5207 + - uid: 5182 components: - pos: -36.5,18.5 parent: 2 type: Transform - - uid: 5208 + - uid: 5183 components: - pos: -37.5,18.5 parent: 2 type: Transform - - uid: 5209 + - uid: 5184 components: - pos: -38.5,18.5 parent: 2 type: Transform - - uid: 5210 + - uid: 5185 components: - pos: -39.5,18.5 parent: 2 type: Transform - - uid: 5211 + - uid: 5186 components: - pos: -40.5,18.5 parent: 2 type: Transform - - uid: 5212 + - uid: 5187 components: - pos: -41.5,18.5 parent: 2 type: Transform - - uid: 5213 + - uid: 5188 components: - pos: -42.5,18.5 parent: 2 type: Transform - - uid: 5214 + - uid: 5189 components: - pos: -43.5,18.5 parent: 2 type: Transform - - uid: 5215 + - uid: 5190 components: - pos: -44.5,18.5 parent: 2 type: Transform - - uid: 5216 + - uid: 5191 components: - pos: -45.5,18.5 parent: 2 type: Transform - - uid: 5217 + - uid: 5192 components: - pos: -46.5,18.5 parent: 2 type: Transform - - uid: 5218 + - uid: 5193 components: - pos: -47.5,18.5 parent: 2 type: Transform - - uid: 5219 + - uid: 5194 components: - pos: -37.5,19.5 parent: 2 type: Transform - - uid: 5220 + - uid: 5195 components: - pos: -37.5,20.5 parent: 2 type: Transform - - uid: 5221 + - uid: 5196 components: - pos: -37.5,21.5 parent: 2 type: Transform - - uid: 5222 + - uid: 5197 components: - pos: -36.5,21.5 parent: 2 type: Transform - - uid: 5223 + - uid: 5198 components: - pos: -36.5,22.5 parent: 2 type: Transform - - uid: 5224 + - uid: 5199 components: - pos: -47.5,19.5 parent: 2 type: Transform - - uid: 5225 + - uid: 5200 components: - pos: -48.5,19.5 parent: 2 type: Transform - - uid: 5226 + - uid: 5201 components: - pos: -49.5,19.5 parent: 2 type: Transform - - uid: 5227 + - uid: 5202 components: - pos: -50.5,19.5 parent: 2 type: Transform - - uid: 5228 + - uid: 5203 components: - pos: -46.5,23.5 parent: 2 type: Transform - - uid: 5229 + - uid: 5204 components: - pos: -46.5,24.5 parent: 2 type: Transform - - uid: 5230 + - uid: 5205 components: - pos: -46.5,25.5 parent: 2 type: Transform - - uid: 5231 + - uid: 5206 components: - pos: -46.5,26.5 parent: 2 type: Transform - - uid: 5232 + - uid: 5207 components: - pos: -43.5,19.5 parent: 2 type: Transform - - uid: 5233 + - uid: 5208 components: - pos: -41.5,19.5 parent: 2 type: Transform - - uid: 5234 + - uid: 5209 components: - pos: -31.5,25.5 parent: 2 type: Transform - - uid: 5235 + - uid: 5210 components: - pos: -30.5,25.5 parent: 2 type: Transform - - uid: 5236 + - uid: 5211 components: - pos: -29.5,25.5 parent: 2 type: Transform - - uid: 5237 + - uid: 5212 components: - pos: -28.5,25.5 parent: 2 type: Transform - - uid: 5238 + - uid: 5213 components: - pos: -27.5,25.5 parent: 2 type: Transform - - uid: 5239 + - uid: 5214 components: - pos: -25.5,20.5 parent: 2 type: Transform - - uid: 5240 + - uid: 5215 components: - pos: -25.5,19.5 parent: 2 type: Transform - - uid: 5241 + - uid: 5216 components: - pos: -25.5,18.5 parent: 2 type: Transform - - uid: 5242 + - uid: 5217 components: - pos: -26.5,18.5 parent: 2 type: Transform - - uid: 5243 + - uid: 5218 components: - pos: -27.5,18.5 parent: 2 type: Transform - - uid: 5244 + - uid: 5219 components: - pos: -29.5,18.5 parent: 2 type: Transform - - uid: 5245 + - uid: 5220 components: - pos: -28.5,18.5 parent: 2 type: Transform - - uid: 5246 + - uid: 5221 components: - pos: -18.5,22.5 parent: 2 type: Transform - - uid: 5247 + - uid: 5222 components: - pos: -18.5,23.5 parent: 2 type: Transform - - uid: 5248 + - uid: 5223 components: - pos: -24.5,18.5 parent: 2 type: Transform - - uid: 5249 + - uid: 5224 components: - pos: -41.5,27.5 parent: 2 type: Transform - - uid: 5250 + - uid: 5225 components: - pos: -51.5,22.5 parent: 2 type: Transform - - uid: 5251 + - uid: 5226 components: - pos: -52.5,22.5 parent: 2 type: Transform - - uid: 5252 + - uid: 5227 components: - pos: -52.5,21.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5253 + - uid: 5228 components: - pos: -52.5,-27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5254 + - uid: 5229 components: - pos: -46.5,27.5 parent: 2 type: Transform - - uid: 5255 + - uid: 5230 components: - pos: -46.5,28.5 parent: 2 type: Transform - - uid: 5256 + - uid: 5231 components: - pos: -46.5,29.5 parent: 2 type: Transform - - uid: 5257 + - uid: 5232 components: - pos: -46.5,30.5 parent: 2 type: Transform - - uid: 5258 + - uid: 5233 components: - pos: -46.5,31.5 parent: 2 type: Transform - - uid: 5259 + - uid: 5234 components: - pos: -46.5,32.5 parent: 2 type: Transform - - uid: 5260 + - uid: 5235 components: - pos: -46.5,33.5 parent: 2 type: Transform - - uid: 5261 + - uid: 5236 components: - pos: -47.5,33.5 parent: 2 type: Transform - - uid: 5262 + - uid: 5237 components: - pos: -48.5,33.5 parent: 2 type: Transform - - uid: 5263 + - uid: 5238 components: - pos: -49.5,33.5 parent: 2 type: Transform - - uid: 5264 + - uid: 5239 components: - pos: -50.5,33.5 parent: 2 type: Transform - - uid: 5265 + - uid: 5240 components: - pos: -51.5,33.5 parent: 2 type: Transform - - uid: 5266 + - uid: 5241 components: - pos: -47.5,31.5 parent: 2 type: Transform - - uid: 5267 + - uid: 5242 components: - pos: -48.5,31.5 parent: 2 type: Transform - - uid: 5268 + - uid: 5243 components: - pos: -49.5,31.5 parent: 2 type: Transform - - uid: 5269 + - uid: 5244 components: - pos: -50.5,31.5 parent: 2 type: Transform - - uid: 5270 + - uid: 5245 components: - pos: -51.5,31.5 parent: 2 type: Transform - - uid: 5271 + - uid: 5246 components: - pos: -45.5,30.5 parent: 2 type: Transform - - uid: 5272 + - uid: 5247 components: - pos: -44.5,30.5 parent: 2 type: Transform - - uid: 5273 + - uid: 5248 components: - pos: -43.5,30.5 parent: 2 type: Transform - - uid: 5274 + - uid: 5249 components: - pos: -42.5,30.5 parent: 2 type: Transform - - uid: 5275 + - uid: 5250 components: - pos: -41.5,30.5 parent: 2 type: Transform - - uid: 5276 + - uid: 5251 components: - pos: -40.5,30.5 parent: 2 type: Transform - - uid: 5277 + - uid: 5252 components: - pos: -40.5,31.5 parent: 2 type: Transform - - uid: 5278 + - uid: 5253 components: - pos: -39.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5279 + - uid: 5254 components: - pos: -38.5,31.5 parent: 2 type: Transform - - uid: 5280 + - uid: 5255 components: - pos: -37.5,31.5 parent: 2 type: Transform - - uid: 5281 + - uid: 5256 components: - pos: -36.5,31.5 parent: 2 type: Transform - - uid: 5282 + - uid: 5257 components: - pos: -37.5,30.5 parent: 2 type: Transform - - uid: 5283 + - uid: 5258 components: - pos: -37.5,29.5 parent: 2 type: Transform - - uid: 5284 + - uid: 5259 components: - pos: -44.5,31.5 parent: 2 type: Transform - - uid: 5285 + - uid: 5260 components: - pos: -44.5,32.5 parent: 2 type: Transform - - uid: 5286 + - uid: 5261 components: - pos: -44.5,33.5 parent: 2 type: Transform - - uid: 5287 + - uid: 5262 components: - pos: -44.5,34.5 parent: 2 type: Transform - - uid: 5288 + - uid: 5263 components: - pos: -42.5,29.5 parent: 2 type: Transform - - uid: 5289 + - uid: 5264 components: - pos: -42.5,28.5 parent: 2 type: Transform - - uid: 5290 + - uid: 5265 components: - pos: -43.5,33.5 parent: 2 type: Transform - - uid: 5291 + - uid: 5266 components: - pos: -44.5,35.5 parent: 2 type: Transform - - uid: 5292 + - uid: 5267 components: - pos: -45.5,35.5 parent: 2 type: Transform - - uid: 5293 + - uid: 5268 components: - pos: -46.5,35.5 parent: 2 type: Transform - - uid: 5294 + - uid: 5269 components: - pos: -47.5,35.5 parent: 2 type: Transform - - uid: 5295 + - uid: 5270 components: - pos: -23.5,17.5 parent: 2 type: Transform - - uid: 5296 + - uid: 5271 components: - pos: -24.5,8.5 parent: 2 type: Transform - - uid: 5297 + - uid: 5272 components: - pos: -24.5,9.5 parent: 2 type: Transform - - uid: 5298 + - uid: 5273 components: - pos: -24.5,10.5 parent: 2 type: Transform - - uid: 5299 + - uid: 5274 components: - pos: -25.5,10.5 parent: 2 type: Transform - - uid: 5300 + - uid: 5275 components: - pos: -25.5,11.5 parent: 2 type: Transform - - uid: 5301 + - uid: 5276 components: - pos: -25.5,12.5 parent: 2 type: Transform - - uid: 5302 + - uid: 5277 components: - pos: -25.5,13.5 parent: 2 type: Transform - - uid: 5303 + - uid: 5278 components: - pos: -25.5,14.5 parent: 2 type: Transform - - uid: 5304 + - uid: 5279 components: - pos: -24.5,13.5 parent: 2 type: Transform - - uid: 5305 + - uid: 5280 components: - pos: -23.5,13.5 parent: 2 type: Transform - - uid: 5306 + - uid: 5281 components: - pos: -26.5,12.5 parent: 2 type: Transform - - uid: 5307 + - uid: 5282 components: - pos: -27.5,12.5 parent: 2 type: Transform - - uid: 5308 + - uid: 5283 components: - pos: -42.5,15.5 parent: 2 type: Transform - - uid: 5309 + - uid: 5284 components: - pos: -42.5,2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5310 + - uid: 5285 components: - pos: -42.5,1.5 parent: 2 type: Transform - - uid: 5311 + - uid: 5286 components: - pos: -41.5,1.5 parent: 2 type: Transform - - uid: 5312 + - uid: 5287 components: - pos: -40.5,1.5 parent: 2 type: Transform - - uid: 5313 + - uid: 5288 components: - pos: -39.5,1.5 parent: 2 type: Transform - - uid: 5314 + - uid: 5289 components: - pos: -38.5,1.5 parent: 2 type: Transform - - uid: 5315 + - uid: 5290 components: - pos: -37.5,1.5 parent: 2 type: Transform - - uid: 5316 + - uid: 5291 components: - pos: -37.5,2.5 parent: 2 type: Transform - - uid: 5317 + - uid: 5292 components: - pos: -37.5,3.5 parent: 2 type: Transform - - uid: 5318 + - uid: 5293 components: - pos: -37.5,4.5 parent: 2 type: Transform - - uid: 5319 + - uid: 5294 components: - pos: -37.5,5.5 parent: 2 type: Transform - - uid: 5320 + - uid: 5295 components: - pos: -37.5,6.5 parent: 2 type: Transform - - uid: 5321 + - uid: 5296 components: - pos: -37.5,7.5 parent: 2 type: Transform - - uid: 5322 + - uid: 5297 components: - pos: -37.5,8.5 parent: 2 type: Transform - - uid: 5323 + - uid: 5298 components: - pos: -37.5,9.5 parent: 2 type: Transform - - uid: 5324 + - uid: 5299 components: - pos: -37.5,10.5 parent: 2 type: Transform - - uid: 5325 + - uid: 5300 components: - pos: -37.5,11.5 parent: 2 type: Transform - - uid: 5326 + - uid: 5301 components: - pos: -37.5,12.5 parent: 2 type: Transform - - uid: 5327 + - uid: 5302 components: - pos: -37.5,13.5 parent: 2 type: Transform - - uid: 5328 + - uid: 5303 components: - pos: -38.5,13.5 parent: 2 type: Transform - - uid: 5329 + - uid: 5304 components: - pos: -39.5,13.5 parent: 2 type: Transform - - uid: 5330 + - uid: 5305 components: - pos: -42.5,13.5 parent: 2 type: Transform - - uid: 5331 + - uid: 5306 components: - pos: -42.5,14.5 parent: 2 type: Transform - - uid: 5332 + - uid: 5307 components: - pos: -39.5,14.5 parent: 2 type: Transform - - uid: 5333 + - uid: 5308 components: - pos: -39.5,15.5 parent: 2 type: Transform - - uid: 5334 + - uid: 5309 components: - pos: -36.5,13.5 parent: 2 type: Transform - - uid: 5335 + - uid: 5310 components: - pos: -35.5,13.5 parent: 2 type: Transform - - uid: 5336 + - uid: 5311 components: - pos: -34.5,13.5 parent: 2 type: Transform - - uid: 5337 + - uid: 5312 components: - pos: -33.5,13.5 parent: 2 type: Transform - - uid: 5338 + - uid: 5313 components: - pos: -35.5,14.5 parent: 2 type: Transform - - uid: 5339 + - uid: 5314 components: - pos: -35.5,15.5 parent: 2 type: Transform - - uid: 5340 + - uid: 5315 components: - pos: -33.5,14.5 parent: 2 type: Transform - - uid: 5341 + - uid: 5316 components: - pos: -32.5,14.5 parent: 2 type: Transform - - uid: 5342 + - uid: 5317 components: - pos: -31.5,14.5 parent: 2 type: Transform - - uid: 5343 + - uid: 5318 components: - pos: -30.5,14.5 parent: 2 type: Transform - - uid: 5344 + - uid: 5319 components: - pos: -30.5,13.5 parent: 2 type: Transform - - uid: 5345 + - uid: 5320 components: - pos: -30.5,12.5 parent: 2 type: Transform - - uid: 5346 + - uid: 5321 components: - pos: -30.5,11.5 parent: 2 type: Transform - - uid: 5347 + - uid: 5322 components: - pos: -30.5,10.5 parent: 2 type: Transform - - uid: 5348 + - uid: 5323 components: - pos: -30.5,9.5 parent: 2 type: Transform - - uid: 5349 + - uid: 5324 components: - pos: -30.5,8.5 parent: 2 type: Transform - - uid: 5350 + - uid: 5325 components: - pos: -31.5,10.5 parent: 2 type: Transform - - uid: 5351 + - uid: 5326 components: - pos: -32.5,10.5 parent: 2 type: Transform - - uid: 5352 + - uid: 5327 components: - pos: -33.5,10.5 parent: 2 type: Transform - - uid: 5353 + - uid: 5328 components: - pos: -29.5,9.5 parent: 2 type: Transform - - uid: 5354 + - uid: 5329 components: - pos: -28.5,9.5 parent: 2 type: Transform - - uid: 5355 + - uid: 5330 components: - pos: -30.5,7.5 parent: 2 type: Transform - - uid: 5356 + - uid: 5331 components: - pos: -37.5,0.5 parent: 2 type: Transform - - uid: 5357 + - uid: 5332 components: - pos: -37.5,-0.5 parent: 2 type: Transform - - uid: 5358 + - uid: 5333 components: - pos: -37.5,-1.5 parent: 2 type: Transform - - uid: 5359 + - uid: 5334 components: - pos: -37.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5360 + - uid: 5335 components: - pos: -38.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5361 + - uid: 5336 components: - pos: -39.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5362 + - uid: 5337 components: - pos: -40.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5363 + - uid: 5338 components: - pos: -41.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5364 + - uid: 5339 components: - pos: -42.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5365 + - uid: 5340 components: - pos: -42.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5366 + - uid: 5341 components: - pos: -43.5,-3.5 parent: 2 type: Transform - - uid: 5367 + - uid: 5342 components: - pos: -44.5,-3.5 parent: 2 type: Transform - - uid: 5368 + - uid: 5343 components: - pos: -45.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5369 + - uid: 5344 components: - pos: 55.5,12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5370 + - uid: 5345 components: - pos: -36.5,-0.5 parent: 2 type: Transform - - uid: 5371 + - uid: 5346 components: - pos: -35.5,-0.5 parent: 2 type: Transform - - uid: 5372 + - uid: 5347 components: - pos: -34.5,-0.5 parent: 2 type: Transform - - uid: 5373 + - uid: 5348 components: - pos: -33.5,-0.5 parent: 2 type: Transform - - uid: 5374 + - uid: 5349 components: - pos: -32.5,-0.5 parent: 2 type: Transform - - uid: 5375 + - uid: 5350 components: - pos: -31.5,-0.5 parent: 2 type: Transform - - uid: 5376 + - uid: 5351 components: - pos: -30.5,-0.5 parent: 2 type: Transform - - uid: 5377 + - uid: 5352 components: - pos: -29.5,-0.5 parent: 2 type: Transform - - uid: 5378 + - uid: 5353 components: - pos: -29.5,-1.5 parent: 2 type: Transform - - uid: 5379 + - uid: 5354 components: - pos: -29.5,-2.5 parent: 2 type: Transform - - uid: 5380 + - uid: 5355 components: - pos: -29.5,-3.5 parent: 2 type: Transform - - uid: 5381 + - uid: 5356 components: - pos: -28.5,-3.5 parent: 2 type: Transform - - uid: 5382 + - uid: 5357 components: - pos: -28.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5383 + - uid: 5358 components: - pos: -28.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5384 + - uid: 5359 components: - pos: -28.5,-5.5 parent: 2 type: Transform - - uid: 5385 + - uid: 5360 components: - pos: -30.5,0.5 parent: 2 type: Transform - - uid: 5386 + - uid: 5361 components: - pos: -30.5,1.5 parent: 2 type: Transform - - uid: 5387 + - uid: 5362 components: - pos: -23.5,18.5 parent: 2 type: Transform - - uid: 5388 + - uid: 5363 components: - pos: -41.5,26.5 parent: 2 type: Transform - - uid: 5389 + - uid: 5364 components: - pos: -2.5,24.5 parent: 2 type: Transform - - uid: 5390 + - uid: 5365 components: - pos: -2.5,23.5 parent: 2 type: Transform - - uid: 5391 + - uid: 5366 components: - pos: -3.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5392 + - uid: 5367 components: - pos: -3.5,22.5 parent: 2 type: Transform - - uid: 5393 + - uid: 5368 components: - pos: -4.5,22.5 parent: 2 type: Transform - - uid: 5394 + - uid: 5369 components: - pos: -5.5,22.5 parent: 2 type: Transform - - uid: 5395 + - uid: 5370 components: - pos: 65.5,-8.5 parent: 2 type: Transform - - uid: 5396 + - uid: 5371 components: - pos: 65.5,-0.5 parent: 2 type: Transform - - uid: 5397 + - uid: 5372 components: - pos: 65.5,-1.5 parent: 2 type: Transform - - uid: 5398 + - uid: 5373 components: - pos: 68.5,-3.5 parent: 2 type: Transform - - uid: 5399 + - uid: 5374 components: - pos: 65.5,-12.5 parent: 2 type: Transform - - uid: 5400 + - uid: 5375 components: - pos: 65.5,-10.5 parent: 2 type: Transform - - uid: 5401 + - uid: 5376 components: - pos: -42.5,0.5 parent: 2 type: Transform - - uid: 5402 + - uid: 5377 components: - pos: -43.5,0.5 parent: 2 type: Transform - - uid: 5403 + - uid: 5378 components: - pos: -44.5,0.5 parent: 2 type: Transform - - uid: 5404 + - uid: 5379 components: - pos: -45.5,0.5 parent: 2 type: Transform - - uid: 5405 + - uid: 5380 components: - pos: -46.5,0.5 parent: 2 type: Transform - - uid: 5406 + - uid: 5381 components: - pos: -46.5,1.5 parent: 2 type: Transform - - uid: 5407 + - uid: 5382 components: - pos: -46.5,2.5 parent: 2 type: Transform - - uid: 5408 + - uid: 5383 components: - pos: -46.5,3.5 parent: 2 type: Transform - - uid: 5409 + - uid: 5384 components: - pos: -46.5,4.5 parent: 2 type: Transform - - uid: 5410 + - uid: 5385 components: - pos: -46.5,5.5 parent: 2 type: Transform - - uid: 5411 + - uid: 5386 components: - pos: -46.5,6.5 parent: 2 type: Transform - - uid: 5412 + - uid: 5387 components: - pos: -46.5,7.5 parent: 2 type: Transform - - uid: 5413 + - uid: 5388 components: - pos: -46.5,8.5 parent: 2 type: Transform - - uid: 5414 + - uid: 5389 components: - pos: -45.5,5.5 parent: 2 type: Transform - - uid: 5415 + - uid: 5390 components: - pos: -44.5,5.5 parent: 2 type: Transform - - uid: 5416 + - uid: 5391 components: - pos: -45.5,3.5 parent: 2 type: Transform - - uid: 5417 + - uid: 5392 components: - pos: -44.5,3.5 parent: 2 type: Transform - - uid: 5418 + - uid: 5393 components: - pos: -47.5,7.5 parent: 2 type: Transform - - uid: 5419 + - uid: 5394 components: - pos: -48.5,7.5 parent: 2 type: Transform - - uid: 5420 + - uid: 5395 components: - pos: -46.5,9.5 parent: 2 type: Transform - - uid: 5421 + - uid: 5396 components: - pos: -46.5,10.5 parent: 2 type: Transform - - uid: 5422 + - uid: 5397 components: - pos: -46.5,11.5 parent: 2 type: Transform - - uid: 5423 + - uid: 5398 components: - pos: -47.5,11.5 parent: 2 type: Transform - - uid: 5424 + - uid: 5399 components: - pos: -48.5,11.5 parent: 2 type: Transform - - uid: 5425 + - uid: 5400 components: - pos: -49.5,11.5 parent: 2 type: Transform - - uid: 5426 + - uid: 5401 components: - pos: -50.5,11.5 parent: 2 type: Transform - - uid: 5427 + - uid: 5402 components: - pos: -51.5,11.5 parent: 2 type: Transform - - uid: 5428 + - uid: 5403 components: - pos: -51.5,10.5 parent: 2 type: Transform - - uid: 5429 + - uid: 5404 components: - pos: -52.5,10.5 parent: 2 type: Transform - - uid: 5430 + - uid: 5405 components: - pos: -52.5,9.5 parent: 2 type: Transform - - uid: 5431 + - uid: 5406 components: - pos: -52.5,8.5 parent: 2 type: Transform - - uid: 5432 + - uid: 5407 components: - pos: -52.5,7.5 parent: 2 type: Transform - - uid: 5433 + - uid: 5408 components: - pos: -51.5,12.5 parent: 2 type: Transform - - uid: 5434 + - uid: 5409 components: - pos: -51.5,13.5 parent: 2 type: Transform - - uid: 5435 + - uid: 5410 components: - pos: -51.5,14.5 parent: 2 type: Transform - - uid: 5436 + - uid: 5411 components: - pos: -48.5,12.5 parent: 2 type: Transform - - uid: 5437 + - uid: 5412 components: - pos: -48.5,13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5438 + - uid: 5413 components: - pos: -48.5,14.5 parent: 2 type: Transform - - uid: 5439 + - uid: 5414 components: - pos: -46.5,12.5 parent: 2 type: Transform - - uid: 5440 + - uid: 5415 components: - pos: -46.5,13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5441 + - uid: 5416 components: - pos: -46.5,14.5 parent: 2 type: Transform - - uid: 5442 + - uid: 5417 components: - pos: -45.5,11.5 parent: 2 type: Transform - - uid: 5443 + - uid: 5418 components: - pos: -44.5,11.5 parent: 2 type: Transform - - uid: 5444 + - uid: 5419 components: - pos: -43.5,11.5 parent: 2 type: Transform - - uid: 5445 + - uid: 5420 components: - pos: -42.5,11.5 parent: 2 type: Transform - - uid: 5446 + - uid: 5421 components: - pos: -42.5,10.5 parent: 2 type: Transform - - uid: 5447 + - uid: 5422 components: - pos: -47.5,7.5 parent: 2 type: Transform - - uid: 5448 + - uid: 5423 components: - pos: -47.5,0.5 parent: 2 type: Transform - - uid: 5449 + - uid: 5424 components: - pos: -48.5,0.5 parent: 2 type: Transform - - uid: 5450 + - uid: 5425 components: - pos: -49.5,0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5451 + - uid: 5426 components: - pos: -49.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5452 + - uid: 5427 components: - pos: -49.5,-1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5453 + - uid: 5428 components: - pos: -49.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5454 + - uid: 5429 components: - pos: -49.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5455 + - uid: 5430 components: - pos: -50.5,-3.5 parent: 2 type: Transform - - uid: 5456 + - uid: 5431 components: - pos: -51.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5457 + - uid: 5432 components: - pos: -52.5,-3.5 parent: 2 type: Transform - - uid: 5458 + - uid: 5433 components: - pos: -53.5,-3.5 parent: 2 type: Transform - - uid: 5459 + - uid: 5434 components: - pos: -54.5,-3.5 parent: 2 type: Transform - - uid: 5460 + - uid: 5435 components: - pos: -53.5,-2.5 parent: 2 type: Transform - - uid: 5461 + - uid: 5436 components: - pos: -53.5,-1.5 parent: 2 type: Transform - - uid: 5462 + - uid: 5437 components: - pos: -54.5,-1.5 parent: 2 type: Transform - - uid: 5463 + - uid: 5438 components: - pos: -55.5,-1.5 parent: 2 type: Transform - - uid: 5464 + - uid: 5439 components: - pos: -56.5,-1.5 parent: 2 type: Transform - - uid: 5465 + - uid: 5440 components: - pos: -51.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5466 + - uid: 5441 components: - pos: -51.5,-1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5467 + - uid: 5442 components: - pos: -51.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5468 + - uid: 5443 components: - pos: -51.5,0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5469 + - uid: 5444 components: - pos: -51.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5470 + - uid: 5445 components: - pos: -51.5,2.5 parent: 2 type: Transform - - uid: 5471 + - uid: 5446 components: - pos: -51.5,3.5 parent: 2 type: Transform - - uid: 5472 + - uid: 5447 components: - pos: -45.5,-2.5 parent: 2 type: Transform - - uid: 5473 + - uid: 5448 components: - pos: -46.5,-2.5 parent: 2 type: Transform - - uid: 5474 + - uid: 5449 components: - pos: -47.5,-2.5 parent: 2 type: Transform - - uid: 5475 + - uid: 5450 components: - pos: 3.5,-64.5 parent: 2 type: Transform - - uid: 5476 + - uid: 5451 components: - pos: 68.5,-5.5 parent: 2 type: Transform - - uid: 5477 + - uid: 5452 components: - pos: -19.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5478 + - uid: 5453 components: - pos: -20.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5479 + - uid: 5454 components: - pos: 67.5,-5.5 parent: 2 type: Transform - - uid: 5480 + - uid: 5455 components: - pos: 66.5,-5.5 parent: 2 type: Transform - - uid: 5481 + - uid: 5456 components: - pos: 65.5,-6.5 parent: 2 type: Transform - - uid: 5482 + - uid: 5457 components: - pos: 65.5,-7.5 parent: 2 type: Transform - - uid: 5483 + - uid: 5458 components: - pos: 65.5,-9.5 parent: 2 type: Transform - - uid: 5484 + - uid: 5459 components: - pos: 66.5,-3.5 parent: 2 type: Transform - - uid: 5485 + - uid: 5460 components: - pos: 65.5,-2.5 parent: 2 type: Transform - - uid: 5486 + - uid: 5461 components: - pos: 67.5,-3.5 parent: 2 type: Transform - - uid: 5487 + - uid: 5462 components: - pos: -28.5,1.5 parent: 2 type: Transform - - uid: 5488 + - uid: 5463 components: - pos: -27.5,1.5 parent: 2 type: Transform - - uid: 5489 + - uid: 5464 components: - pos: -27.5,0.5 parent: 2 type: Transform - - uid: 5490 + - uid: 5465 components: - pos: 22.5,-46.5 parent: 2 type: Transform - - uid: 5491 + - uid: 5466 components: - pos: -11.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5492 + - uid: 5467 components: - pos: -13.5,26.5 parent: 2 type: Transform - - uid: 5493 + - uid: 5468 components: - pos: -26.5,0.5 parent: 2 type: Transform - - uid: 5494 + - uid: 5469 components: - pos: -8.5,14.5 parent: 2 type: Transform - - uid: 5495 + - uid: 5470 components: - pos: -8.5,15.5 parent: 2 type: Transform - - uid: 5496 + - uid: 5471 components: - pos: -1.5,-80.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5497 + - uid: 5472 components: - pos: -1.5,-81.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5498 + - uid: 5473 components: - pos: -1.5,-82.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5499 + - uid: 5474 components: - pos: -74.5,-25.5 parent: 2 type: Transform - - uid: 5500 + - uid: 5475 components: - pos: -56.5,-18.5 parent: 2 type: Transform - - uid: 5501 + - uid: 5476 components: - pos: -23.5,10.5 parent: 2 type: Transform - - uid: 5502 + - uid: 5477 components: - pos: -22.5,10.5 parent: 2 type: Transform - - uid: 5503 + - uid: 5478 components: - pos: -22.5,11.5 parent: 2 type: Transform - - uid: 5504 + - uid: 5479 components: - pos: 41.5,14.5 parent: 2 type: Transform - - uid: 5505 + - uid: 5480 components: - pos: 42.5,14.5 parent: 2 type: Transform - - uid: 5506 + - uid: 5481 components: - pos: -75.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5507 + - uid: 5482 components: - pos: -75.5,-10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5508 + - uid: 5483 components: - pos: -75.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5509 + - uid: 5484 components: - pos: -75.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5510 + - uid: 5485 components: - pos: -75.5,-7.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5511 + - uid: 5486 components: - pos: -75.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5512 + - uid: 5487 components: - pos: -75.5,-5.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5513 + - uid: 5488 components: - pos: -75.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5514 + - uid: 5489 components: - pos: -74.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5515 + - uid: 5490 components: - pos: -73.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5516 + - uid: 5491 components: - pos: -72.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5517 + - uid: 5492 components: - pos: -71.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5518 + - uid: 5493 components: - pos: -70.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5519 + - uid: 5494 components: - pos: -69.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5520 + - uid: 5495 components: - pos: -68.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5521 + - uid: 5496 components: - pos: -67.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5522 + - uid: 5497 components: - pos: -66.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5523 + - uid: 5498 components: - pos: -65.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5524 + - uid: 5499 components: - pos: -64.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5525 + - uid: 5500 components: - pos: -47.5,39.5 parent: 2 type: Transform - - uid: 5526 + - uid: 5501 components: - pos: -47.5,40.5 parent: 2 type: Transform - - uid: 5527 + - uid: 5502 components: - pos: -47.5,41.5 parent: 2 type: Transform - - uid: 5528 + - uid: 5503 components: - pos: -46.5,41.5 parent: 2 type: Transform - - uid: 5529 + - uid: 5504 components: - pos: -45.5,41.5 parent: 2 type: Transform - - uid: 5530 + - uid: 5505 components: - pos: -45.5,42.5 parent: 2 type: Transform - - uid: 5531 + - uid: 5506 components: - pos: -45.5,46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5532 + - uid: 5507 components: - pos: -45.5,47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5533 + - uid: 5508 components: - pos: -45.5,48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5534 + - uid: 5509 components: - pos: -45.5,49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5535 + - uid: 5510 components: - pos: -46.5,49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5536 + - uid: 5511 components: - pos: -46.5,50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5537 + - uid: 5512 components: - pos: -46.5,51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5538 + - uid: 5513 components: - pos: -46.5,52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5539 + - uid: 5514 components: - pos: -46.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5540 + - uid: 5515 components: - pos: -45.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5541 + - uid: 5516 components: - pos: -44.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5542 + - uid: 5517 components: - pos: -43.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5543 + - uid: 5518 components: - pos: -42.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5544 + - uid: 5519 components: - pos: -41.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5545 + - uid: 5520 components: - pos: -40.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5546 + - uid: 5521 components: - pos: -39.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5547 + - uid: 5522 components: - pos: -38.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5548 + - uid: 5523 components: - pos: -37.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5549 + - uid: 5524 components: - pos: -47.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5550 + - uid: 5525 components: - pos: -48.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5551 + - uid: 5526 components: - pos: -49.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5552 + - uid: 5527 components: - pos: -50.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5553 + - uid: 5528 components: - pos: -51.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5554 + - uid: 5529 components: - pos: -52.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5555 + - uid: 5530 components: - pos: 10.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5556 + - uid: 5531 components: - pos: 11.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5557 + - uid: 5532 components: - pos: 12.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5558 + - uid: 5533 components: - pos: 13.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5559 + - uid: 5534 components: - pos: 14.5,-65.5 parent: 2 type: Transform - - uid: 5560 + - uid: 5535 components: - pos: 26.5,31.5 parent: 2 type: Transform - - uid: 5561 + - uid: 5536 components: - pos: 25.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5562 + - uid: 5537 components: - pos: 24.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5563 + - uid: 5538 components: - pos: 24.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5564 + - uid: 5539 components: - pos: 24.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5565 + - uid: 5540 components: - pos: 24.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5566 + - uid: 5541 components: - pos: 54.5,28.5 parent: 2 type: Transform - - uid: 5567 + - uid: 5542 components: - pos: 53.5,28.5 parent: 2 type: Transform - - uid: 5568 + - uid: 5543 components: - pos: -62.5,-30.5 parent: 2 type: Transform - - uid: 5569 + - uid: 5544 components: - pos: -61.5,-30.5 parent: 2 type: Transform - - uid: 5570 + - uid: 5545 components: - pos: -60.5,-30.5 parent: 2 type: Transform - - uid: 5571 + - uid: 5546 components: - pos: -40.5,-41.5 parent: 2 type: Transform - - uid: 5572 + - uid: 5547 components: - pos: 48.5,-46.5 parent: 2 type: Transform - - uid: 5573 + - uid: 5548 components: - pos: 48.5,-48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5574 + - uid: 5549 components: - pos: 28.5,-5.5 parent: 2 type: Transform - - uid: 5575 + - uid: 5550 components: - pos: -24.5,-13.5 parent: 2 type: Transform - - uid: 5576 + - uid: 5551 components: - pos: 65.5,-43.5 parent: 2 type: Transform - - uid: 5577 + - uid: 5552 components: - pos: -52.5,-73.5 parent: 2 type: Transform - - uid: 5578 + - uid: 5553 components: - pos: -51.5,-73.5 parent: 2 type: Transform - - uid: 5579 + - uid: 5554 components: - pos: -51.5,-74.5 parent: 2 type: Transform - - uid: 5580 + - uid: 5555 components: - pos: -46.5,-75.5 parent: 2 type: Transform - - uid: 5581 + - uid: 5556 components: - pos: 59.5,-32.5 parent: 2 type: Transform - - uid: 5582 + - uid: 5557 components: - pos: 52.5,-13.5 parent: 2 type: Transform - - uid: 5583 + - uid: 5558 components: - pos: 52.5,-14.5 parent: 2 type: Transform - - uid: 5584 + - uid: 5559 components: - pos: 52.5,-15.5 parent: 2 type: Transform - - uid: 5585 + - uid: 5560 components: - pos: 65.5,-11.5 parent: 2 type: Transform - - uid: 5586 + - uid: 5561 components: - pos: 65.5,-13.5 parent: 2 type: Transform - - uid: 5587 + - uid: 5562 components: - pos: 65.5,-5.5 parent: 2 type: Transform - - uid: 5588 + - uid: 5563 components: - pos: 65.5,-3.5 parent: 2 type: Transform - - uid: 5589 + - uid: 5564 components: - pos: 11.5,-5.5 parent: 2 type: Transform - - uid: 5590 + - uid: 5565 components: - pos: 10.5,-0.5 parent: 2 type: Transform - - uid: 5591 + - uid: 5566 components: - pos: 9.5,-0.5 parent: 2 type: Transform - - uid: 5592 + - uid: 5567 components: - pos: 9.5,-1.5 parent: 2 type: Transform - - uid: 5593 + - uid: 5568 components: - pos: 10.5,-5.5 parent: 2 type: Transform - - uid: 5594 + - uid: 5569 components: - pos: 9.5,-5.5 parent: 2 type: Transform - - uid: 5595 + - uid: 5570 components: - pos: 17.5,-43.5 parent: 2 type: Transform - - uid: 5596 + - uid: 5571 components: - pos: 18.5,-43.5 parent: 2 type: Transform - - uid: 5597 + - uid: 5572 components: - pos: 16.5,-43.5 parent: 2 type: Transform - - uid: 5598 + - uid: 5573 components: - pos: 11.5,-41.5 parent: 2 type: Transform - - uid: 5599 + - uid: 5574 components: - pos: 33.5,-42.5 parent: 2 type: Transform - - uid: 5600 + - uid: 5575 components: - pos: 34.5,-21.5 parent: 2 type: Transform - - uid: 5601 + - uid: 5576 components: - pos: 32.5,-42.5 parent: 2 type: Transform - - uid: 5602 + - uid: 5577 components: - pos: 34.5,-24.5 parent: 2 type: Transform - - uid: 5603 + - uid: 5578 components: - pos: 34.5,-23.5 parent: 2 type: Transform - - uid: 5604 + - uid: 5579 components: - pos: 34.5,-22.5 parent: 2 type: Transform - - uid: 5605 + - uid: 5580 components: - pos: -7.5,5.5 parent: 2 type: Transform - - uid: 5606 + - uid: 5581 components: - pos: 1.5,5.5 parent: 2 type: Transform - - uid: 5607 + - uid: 5582 components: - pos: 11.5,-25.5 parent: 2 type: Transform - - uid: 5608 + - uid: 5583 components: - pos: 2.5,5.5 parent: 2 type: Transform - - uid: 5609 + - uid: 5584 components: - pos: -6.5,5.5 parent: 2 type: Transform - - uid: 5610 + - uid: 5585 components: - pos: 3.5,5.5 parent: 2 type: Transform - - uid: 5611 + - uid: 5586 components: - pos: -4.5,5.5 parent: 2 type: Transform - - uid: 5612 + - uid: 5587 components: - pos: -3.5,3.5 parent: 2 type: Transform - - uid: 5613 + - uid: 5588 components: - pos: -5.5,5.5 parent: 2 type: Transform - - uid: 5614 + - uid: 5589 components: - pos: -4.5,3.5 parent: 2 type: Transform - - uid: 5615 + - uid: 5590 components: - pos: -18.5,4.5 parent: 2 type: Transform - - uid: 5616 + - uid: 5591 components: - pos: -5.5,3.5 parent: 2 type: Transform - - uid: 5617 + - uid: 5592 components: - pos: -20.5,4.5 parent: 2 type: Transform - - uid: 5618 + - uid: 5593 components: - pos: -17.5,4.5 parent: 2 type: Transform - - uid: 5619 + - uid: 5594 components: - pos: -19.5,4.5 parent: 2 type: Transform - - uid: 5620 + - uid: 5595 components: - pos: -21.5,4.5 parent: 2 type: Transform - - uid: 5621 + - uid: 5596 components: - pos: -44.5,8.5 parent: 2 type: Transform - - uid: 5622 + - uid: 5597 components: - pos: -44.5,4.5 parent: 2 type: Transform - - uid: 5623 + - uid: 5598 components: - pos: -45.5,8.5 parent: 2 type: Transform - - uid: 5624 + - uid: 5599 components: - pos: -44.5,6.5 parent: 2 type: Transform - - uid: 5625 + - uid: 5600 components: - pos: -44.5,7.5 parent: 2 type: Transform - - uid: 5626 + - uid: 5601 components: - pos: -22.5,-9.5 parent: 2 type: Transform - - uid: 5627 + - uid: 5602 components: - pos: -48.5,10.5 parent: 2 type: Transform - - uid: 5628 + - uid: 5603 components: - pos: -22.5,-10.5 parent: 2 type: Transform - - uid: 5629 + - uid: 5604 components: - pos: -50.5,10.5 parent: 2 type: Transform - - uid: 5630 + - uid: 5605 components: - pos: -49.5,10.5 parent: 2 type: Transform - - uid: 5631 + - uid: 5606 components: - pos: -22.5,-11.5 parent: 2 type: Transform - - uid: 5632 + - uid: 5607 components: - pos: -2.5,-47.5 parent: 2 type: Transform - - uid: 5633 + - uid: 5608 components: - pos: -37.5,-41.5 parent: 2 type: Transform - - uid: 5634 + - uid: 5609 components: - pos: -3.5,-47.5 parent: 2 type: Transform - - uid: 5635 + - uid: 5610 components: - pos: -37.5,-42.5 parent: 2 type: Transform - - uid: 5636 + - uid: 5611 components: - pos: -38.5,-41.5 parent: 2 type: Transform - - uid: 5637 + - uid: 5612 components: - pos: -39.5,-41.5 parent: 2 type: Transform - - uid: 5638 + - uid: 5613 components: - pos: 52.5,-40.5 parent: 2 type: Transform - - uid: 5639 + - uid: 5614 components: - pos: 63.5,-48.5 parent: 2 type: Transform - - uid: 5640 + - uid: 5615 components: - pos: 52.5,-39.5 parent: 2 type: Transform - - uid: 5641 + - uid: 5616 components: - pos: 51.5,-39.5 parent: 2 type: Transform - - uid: 5642 + - uid: 5617 components: - pos: 68.5,-48.5 parent: 2 type: Transform - - uid: 5643 + - uid: 5618 components: - pos: 66.5,-48.5 parent: 2 type: Transform - - uid: 5644 + - uid: 5619 components: - pos: 52.5,-41.5 parent: 2 type: Transform - - uid: 5645 + - uid: 5620 components: - pos: 65.5,-48.5 parent: 2 type: Transform - - uid: 5646 + - uid: 5621 components: - pos: 64.5,-48.5 parent: 2 type: Transform - - uid: 5647 + - uid: 5622 components: - pos: -14.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5648 + - uid: 5623 components: - pos: -14.5,-71.5 parent: 2 type: Transform - - uid: 5649 + - uid: 5624 components: - pos: -15.5,-73.5 parent: 2 type: Transform - - uid: 5650 + - uid: 5625 components: - pos: -15.5,-72.5 parent: 2 type: Transform - - uid: 5651 + - uid: 5626 components: - pos: -37.5,22.5 parent: 2 type: Transform - - uid: 5652 + - uid: 5627 components: - pos: -15.5,-71.5 parent: 2 type: Transform - - uid: 5653 + - uid: 5628 components: - pos: -11.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5654 + - uid: 5629 components: - pos: -12.5,-71.5 parent: 2 type: Transform - - uid: 5655 + - uid: 5630 components: - pos: -13.5,-71.5 parent: 2 type: Transform - - uid: 5656 + - uid: 5631 components: - pos: -45.5,33.5 parent: 2 type: Transform - - uid: 5657 + - uid: 5632 components: - pos: -44.5,28.5 parent: 2 type: Transform - - uid: 5658 + - uid: 5633 components: - pos: -10.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5659 + - uid: 5634 components: - pos: -45.5,28.5 parent: 2 type: Transform - - uid: 5660 + - uid: 5635 components: - pos: -43.5,28.5 parent: 2 type: Transform - - uid: 5661 + - uid: 5636 components: - pos: -41.5,31.5 parent: 2 type: Transform - - uid: 5662 + - uid: 5637 components: - pos: -42.5,33.5 parent: 2 type: Transform - - uid: 5663 + - uid: 5638 components: - pos: -41.5,32.5 parent: 2 type: Transform - - uid: 5664 + - uid: 5639 components: - pos: -41.5,33.5 parent: 2 type: Transform - - uid: 5665 + - uid: 5640 components: - pos: -20.5,18.5 parent: 2 type: Transform - - uid: 5666 + - uid: 5641 components: - pos: -20.5,20.5 parent: 2 type: Transform - - uid: 5667 + - uid: 5642 components: - pos: -20.5,16.5 parent: 2 type: Transform - - uid: 5668 + - uid: 5643 components: - pos: -20.5,19.5 parent: 2 type: Transform - - uid: 5669 + - uid: 5644 components: - pos: -20.5,17.5 parent: 2 type: Transform - - uid: 5670 + - uid: 5645 components: - pos: -19.5,16.5 parent: 2 type: Transform - - uid: 5671 + - uid: 5646 components: - pos: 53.5,-6.5 parent: 2 type: Transform - - uid: 5672 + - uid: 5647 components: - pos: 52.5,-6.5 parent: 2 type: Transform - - uid: 5673 + - uid: 5648 components: - pos: 51.5,-6.5 parent: 2 type: Transform - - uid: 5674 + - uid: 5649 components: - pos: 51.5,-7.5 parent: 2 type: Transform - - uid: 5675 + - uid: 5650 components: - pos: 5.5,21.5 parent: 2 type: Transform - - uid: 5676 + - uid: 5651 components: - pos: 6.5,21.5 parent: 2 type: Transform - - uid: 5677 + - uid: 5652 components: - pos: 7.5,15.5 parent: 2 type: Transform - - uid: 5678 + - uid: 5653 components: - pos: 8.5,15.5 parent: 2 type: Transform - - uid: 5679 + - uid: 5654 components: - pos: 2.5,20.5 parent: 2 type: Transform - - uid: 5680 + - uid: 5655 components: - pos: 2.5,19.5 parent: 2 type: Transform - - uid: 5681 + - uid: 5656 components: - pos: 2.5,18.5 parent: 2 type: Transform - - uid: 5682 + - uid: 5657 components: - pos: 42.5,15.5 parent: 2 type: Transform - - uid: 5683 + - uid: 5658 components: - pos: 42.5,16.5 parent: 2 type: Transform - - uid: 5684 + - uid: 5659 components: - pos: 41.5,16.5 parent: 2 type: Transform - - uid: 5685 + - uid: 5660 components: - pos: 40.5,16.5 parent: 2 type: Transform - - uid: 5686 + - uid: 5661 components: - pos: 39.5,16.5 parent: 2 type: Transform - - uid: 5687 + - uid: 5662 components: - pos: 38.5,16.5 parent: 2 type: Transform - - uid: 5688 + - uid: 5663 components: - pos: 37.5,16.5 parent: 2 type: Transform - - uid: 5689 + - uid: 5664 components: - pos: 36.5,16.5 parent: 2 type: Transform - - uid: 5690 + - uid: 5665 components: - pos: 34.5,16.5 parent: 2 type: Transform - - uid: 5691 + - uid: 5666 components: - pos: 33.5,16.5 parent: 2 type: Transform - - uid: 5692 + - uid: 5667 components: - pos: 42.5,13.5 parent: 2 type: Transform - - uid: 5693 + - uid: 5668 components: - pos: 42.5,12.5 parent: 2 type: Transform - - uid: 5694 + - uid: 5669 components: - pos: 28.5,28.5 parent: 2 type: Transform - - uid: 5695 + - uid: 5670 components: - pos: 31.5,28.5 parent: 2 type: Transform - - uid: 5696 + - uid: 5671 components: - pos: 30.5,28.5 parent: 2 type: Transform - - uid: 5697 + - uid: 5672 components: - pos: -12.5,-59.5 parent: 2 type: Transform - - uid: 5698 + - uid: 5673 components: - pos: -11.5,-59.5 parent: 2 type: Transform - - uid: 5699 + - uid: 5674 components: - pos: -10.5,-59.5 parent: 2 type: Transform - - uid: 5700 + - uid: 5675 components: - pos: -10.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5701 + - uid: 5676 components: - pos: -9.5,-59.5 parent: 2 type: Transform - - uid: 5702 + - uid: 5677 components: - pos: -8.5,-59.5 parent: 2 type: Transform - - uid: 5703 + - uid: 5678 components: - pos: -7.5,-59.5 parent: 2 type: Transform - - uid: 5704 + - uid: 5679 components: - pos: -6.5,-59.5 parent: 2 type: Transform - - uid: 5705 + - uid: 5680 components: - pos: -51.5,-75.5 parent: 2 type: Transform - - uid: 5706 + - uid: 5681 components: - pos: -51.5,-77.5 parent: 2 type: Transform - - uid: 5707 + - uid: 5682 components: - pos: -51.5,-78.5 parent: 2 type: Transform - - uid: 5708 + - uid: 5683 components: - pos: -51.5,-79.5 parent: 2 type: Transform - - uid: 5709 + - uid: 5684 components: - pos: -52.5,-79.5 parent: 2 type: Transform - - uid: 5710 + - uid: 5685 components: - pos: 38.5,17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5711 + - uid: 5686 components: - - pos: 19.5,-29.5 + - pos: 18.5,-31.5 parent: 2 type: Transform - - uid: 5712 + - uid: 5687 components: - pos: 52.5,10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5713 + - uid: 5688 components: - pos: 45.5,-72.5 parent: 2 type: Transform - - uid: 5714 + - uid: 5689 components: - pos: 29.5,-27.5 parent: 2 type: Transform - - uid: 5715 + - uid: 5690 components: - pos: 29.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5716 + - uid: 5691 components: - pos: 29.5,-25.5 parent: 2 type: Transform - - uid: 5717 + - uid: 5692 components: - pos: 31.5,-42.5 parent: 2 type: Transform - - uid: 5720 + - uid: 5693 components: - pos: 30.5,-42.5 parent: 2 type: Transform - - uid: 5721 + - uid: 5694 components: - pos: 28.5,-41.5 parent: 2 type: Transform - - uid: 5722 + - uid: 5695 components: - pos: 38.5,-60.5 parent: 2 type: Transform - - uid: 5723 + - uid: 5696 components: - pos: 38.5,-61.5 parent: 2 type: Transform - - uid: 5724 + - uid: 5697 components: - pos: 38.5,-62.5 parent: 2 type: Transform - - uid: 5725 + - uid: 5698 components: - pos: 38.5,-63.5 parent: 2 type: Transform - - uid: 5726 + - uid: 5699 components: - pos: 38.5,-64.5 parent: 2 type: Transform - - uid: 5727 + - uid: 5700 components: - pos: 38.5,-65.5 parent: 2 type: Transform - - uid: 5728 + - uid: 5701 components: - pos: 38.5,-66.5 parent: 2 type: Transform - - uid: 5729 + - uid: 5702 components: - pos: 38.5,-67.5 parent: 2 type: Transform - - uid: 5730 + - uid: 5703 components: - pos: 38.5,-68.5 parent: 2 type: Transform - - uid: 5731 + - uid: 5704 components: - pos: 38.5,-69.5 parent: 2 type: Transform - - uid: 5732 + - uid: 5705 components: - pos: 38.5,-70.5 parent: 2 type: Transform - - uid: 5733 + - uid: 5706 components: - pos: 38.5,-71.5 parent: 2 type: Transform - - uid: 5734 + - uid: 5707 components: - pos: 14.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5735 + - uid: 5708 components: - pos: 14.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5736 + - uid: 5709 components: - pos: 14.5,-62.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5737 + - uid: 5710 components: - pos: 14.5,-61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5738 + - uid: 5711 components: - pos: 14.5,-60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5739 + - uid: 5712 components: - pos: 14.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5740 + - uid: 5713 components: - pos: 14.5,-58.5 parent: 2 type: Transform - - uid: 5741 + - uid: 5714 components: - pos: 10.5,-64.5 parent: 2 type: Transform - - uid: 5742 + - uid: 5715 components: - pos: 11.5,-64.5 parent: 2 type: Transform - - uid: 5743 + - uid: 5716 components: - pos: 12.5,-64.5 parent: 2 type: Transform - - uid: 5744 + - uid: 5717 components: - pos: 12.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5745 + - uid: 5718 components: - pos: 12.5,-62.5 parent: 2 type: Transform - - uid: 5746 + - uid: 5719 components: - pos: 12.5,-61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5747 + - uid: 5720 components: - pos: 12.5,-60.5 parent: 2 type: Transform - - uid: 5748 + - uid: 5721 components: - pos: 12.5,-59.5 parent: 2 type: Transform - - uid: 5749 + - uid: 5722 components: - pos: 12.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5750 + - uid: 5723 components: - pos: 12.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5751 + - uid: 5724 components: - pos: 12.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5752 + - uid: 5725 components: - pos: 14.5,-57.5 parent: 2 type: Transform - - uid: 5753 + - uid: 5726 components: - pos: 13.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5754 + - uid: 5727 components: - pos: -33.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5755 + - uid: 5728 components: - pos: -33.5,-72.5 parent: 2 type: Transform - - uid: 5756 + - uid: 5729 components: - pos: -26.5,-73.5 parent: 2 type: Transform - - uid: 5757 + - uid: 5730 components: - pos: -28.5,-73.5 parent: 2 type: Transform - - uid: 5758 + - uid: 5731 components: - pos: -29.5,-72.5 parent: 2 type: Transform - - uid: 5759 + - uid: 5732 components: - pos: -29.5,-75.5 parent: 2 type: Transform - - uid: 5760 + - uid: 5733 components: - pos: -30.5,-71.5 parent: 2 type: Transform - - uid: 5761 + - uid: 5734 components: - pos: -30.5,-70.5 parent: 2 type: Transform - - uid: 5762 + - uid: 5735 components: - pos: -30.5,-69.5 parent: 2 type: Transform - - uid: 5763 + - uid: 5736 components: - pos: -29.5,-69.5 parent: 2 type: Transform - - uid: 5764 + - uid: 5737 components: - pos: -28.5,-69.5 parent: 2 type: Transform - - uid: 5765 + - uid: 5738 components: - pos: -27.5,-69.5 parent: 2 type: Transform - - uid: 5766 + - uid: 5739 components: - pos: -27.5,-70.5 parent: 2 type: Transform - - uid: 5767 + - uid: 5740 components: - pos: -27.5,-71.5 parent: 2 type: Transform - - uid: 5768 + - uid: 5741 components: - pos: -27.5,-73.5 parent: 2 type: Transform - - uid: 5769 + - uid: 5742 components: - pos: -27.5,-74.5 parent: 2 type: Transform - - uid: 5770 + - uid: 5743 components: - pos: -27.5,-75.5 parent: 2 type: Transform - - uid: 5771 + - uid: 5744 components: - pos: -28.5,-75.5 parent: 2 type: Transform - - uid: 5772 + - uid: 5745 components: - pos: -30.5,-75.5 parent: 2 type: Transform - - uid: 5773 + - uid: 5746 components: - pos: -30.5,-74.5 parent: 2 type: Transform - - uid: 5774 + - uid: 5747 components: - pos: -30.5,-73.5 parent: 2 type: Transform - - uid: 5775 + - uid: 5748 components: - pos: -28.5,-71.5 parent: 2 type: Transform - - uid: 5776 + - uid: 5749 components: - pos: -29.5,-72.5 parent: 2 type: Transform - - uid: 5777 + - uid: 5750 components: - pos: -29.5,-71.5 parent: 2 type: Transform - - uid: 5778 + - uid: 5751 components: - pos: 52.5,38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5779 + - uid: 5752 components: - pos: 52.5,37.5 parent: 2 type: Transform - - uid: 5780 + - uid: 5753 components: - pos: 52.5,36.5 parent: 2 type: Transform - - uid: 5781 + - uid: 5754 components: - pos: 52.5,35.5 parent: 2 type: Transform - - uid: 5782 + - uid: 5755 components: - pos: 52.5,34.5 parent: 2 type: Transform - - uid: 5783 + - uid: 5756 components: - pos: 52.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5784 + - uid: 5757 components: - pos: 52.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5785 + - uid: 5758 components: - pos: 52.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5786 + - uid: 5759 components: - pos: 51.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5787 + - uid: 5760 components: - pos: 50.5,31.5 parent: 2 type: Transform - - uid: 5788 + - uid: 5761 components: - pos: 49.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5789 + - uid: 5762 components: - pos: 48.5,31.5 parent: 2 type: Transform - - uid: 5790 + - uid: 5763 components: - pos: 48.5,30.5 parent: 2 type: Transform - - uid: 5791 + - uid: 5764 components: - pos: 48.5,29.5 parent: 2 type: Transform - - uid: 5792 + - uid: 5765 components: - pos: 48.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5793 + - uid: 5766 components: - pos: 53.5,37.5 parent: 2 type: Transform - - uid: 5794 + - uid: 5767 components: - pos: 54.5,37.5 parent: 2 type: Transform - - uid: 5795 + - uid: 5768 components: - pos: 55.5,37.5 parent: 2 type: Transform - - uid: 5796 + - uid: 5769 components: - pos: 56.5,37.5 parent: 2 type: Transform - - uid: 5797 + - uid: 5770 components: - pos: 56.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5798 + - uid: 5771 components: - pos: 56.5,33.5 parent: 2 type: Transform - - uid: 5799 + - uid: 5772 components: - pos: 56.5,32.5 parent: 2 type: Transform - - uid: 5800 + - uid: 5773 components: - pos: 56.5,31.5 parent: 2 type: Transform - - uid: 5801 + - uid: 5774 components: - pos: 57.5,31.5 parent: 2 type: Transform - - uid: 5802 + - uid: 5775 components: - pos: 57.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5803 + - uid: 5776 components: - pos: 57.5,29.5 parent: 2 type: Transform - - uid: 5804 + - uid: 5777 components: - pos: 57.5,28.5 parent: 2 type: Transform - - uid: 5805 + - uid: 5778 components: - pos: 54.5,38.5 parent: 2 type: Transform - - uid: 5806 + - uid: 5779 components: - pos: 54.5,39.5 parent: 2 type: Transform - - uid: 5807 + - uid: 5780 components: - pos: 54.5,40.5 parent: 2 type: Transform - - uid: 5808 + - uid: 5781 components: - pos: 54.5,41.5 parent: 2 type: Transform - - uid: 5809 + - uid: 5782 components: - pos: 54.5,42.5 parent: 2 type: Transform - - uid: 5810 + - uid: 5783 components: - pos: 54.5,43.5 parent: 2 type: Transform - - uid: 5811 + - uid: 5784 components: - pos: 54.5,44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5812 + - uid: 5785 components: - pos: 54.5,45.5 parent: 2 type: Transform - - uid: 5813 + - uid: 5786 components: - pos: 54.5,46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5814 + - uid: 5787 components: - pos: 54.5,47.5 parent: 2 type: Transform - - uid: 5815 + - uid: 5788 components: - pos: 54.5,48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5816 + - uid: 5789 components: - pos: 54.5,49.5 parent: 2 type: Transform - - uid: 5817 + - uid: 5790 components: - pos: 54.5,50.5 parent: 2 type: Transform - - uid: 5818 + - uid: 5791 components: - pos: 53.5,42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5819 + - uid: 5792 components: - pos: 52.5,42.5 parent: 2 type: Transform - - uid: 5820 + - uid: 5793 components: - pos: 51.5,42.5 parent: 2 type: Transform - - uid: 5821 + - uid: 5794 components: - pos: 51.5,43.5 parent: 2 type: Transform - - uid: 5822 + - uid: 5795 components: - pos: 51.5,44.5 parent: 2 type: Transform - - uid: 5823 + - uid: 5796 components: - pos: 51.5,45.5 parent: 2 type: Transform - - uid: 5824 + - uid: 5797 components: - pos: 51.5,46.5 parent: 2 type: Transform - - uid: 5825 + - uid: 5798 components: - pos: 51.5,47.5 parent: 2 type: Transform - - uid: 5826 + - uid: 5799 components: - pos: 51.5,48.5 parent: 2 type: Transform - - uid: 5827 + - uid: 5800 components: - pos: 51.5,49.5 parent: 2 type: Transform - - uid: 5828 + - uid: 5801 components: - pos: 51.5,50.5 parent: 2 type: Transform - - uid: 5829 + - uid: 5802 components: - pos: 55.5,42.5 parent: 2 type: Transform - - uid: 5830 + - uid: 5803 components: - pos: 56.5,42.5 parent: 2 type: Transform - - uid: 5831 + - uid: 5804 components: - pos: 57.5,42.5 parent: 2 type: Transform - - uid: 5832 + - uid: 5805 components: - pos: 57.5,43.5 parent: 2 type: Transform - - uid: 5833 + - uid: 5806 components: - pos: 57.5,44.5 parent: 2 type: Transform - - uid: 5834 + - uid: 5807 components: - pos: 57.5,45.5 parent: 2 type: Transform - - uid: 5835 + - uid: 5808 components: - pos: 57.5,46.5 parent: 2 type: Transform - - uid: 5836 + - uid: 5809 components: - pos: 57.5,47.5 parent: 2 type: Transform - - uid: 5837 + - uid: 5810 components: - pos: 57.5,48.5 parent: 2 type: Transform - - uid: 5838 + - uid: 5811 components: - pos: 57.5,49.5 parent: 2 type: Transform - - uid: 5839 + - uid: 5812 components: - pos: 57.5,50.5 parent: 2 type: Transform - - uid: 5840 + - uid: 5813 components: - pos: 56.5,50.5 parent: 2 type: Transform - - uid: 5841 + - uid: 5814 components: - pos: 55.5,50.5 parent: 2 type: Transform - - uid: 5842 + - uid: 5815 components: - pos: 53.5,50.5 parent: 2 type: Transform - - uid: 5843 + - uid: 5816 components: - pos: 52.5,50.5 parent: 2 type: Transform - - uid: 5844 + - uid: 5817 components: - pos: 56.5,51.5 parent: 2 type: Transform - - uid: 5845 + - uid: 5818 components: - pos: 56.5,52.5 parent: 2 type: Transform - - uid: 5846 + - uid: 5819 components: - pos: 52.5,51.5 parent: 2 type: Transform - - uid: 5847 + - uid: 5820 components: - pos: 52.5,52.5 parent: 2 type: Transform - - uid: 5848 + - uid: 5821 components: - pos: 56.5,53.5 parent: 2 type: Transform - - uid: 5849 + - uid: 5822 components: - pos: 55.5,53.5 parent: 2 type: Transform - - uid: 5850 + - uid: 5823 components: - pos: 54.5,53.5 parent: 2 type: Transform - - uid: 5851 + - uid: 5824 components: - pos: 52.5,53.5 parent: 2 type: Transform - - uid: 5852 + - uid: 5825 components: - pos: 53.5,53.5 parent: 2 type: Transform - - uid: 5853 + - uid: 5826 components: - pos: 54.5,54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5854 + - uid: 5827 components: - pos: 54.5,55.5 parent: 2 type: Transform - - uid: 5855 + - uid: 5828 components: - pos: 54.5,57.5 parent: 2 type: Transform - - uid: 5856 + - uid: 5829 components: - pos: 54.5,56.5 parent: 2 type: Transform - - uid: 5857 + - uid: 5830 components: - pos: 54.5,58.5 parent: 2 type: Transform - - uid: 5858 + - uid: 5831 components: - pos: 54.5,59.5 parent: 2 type: Transform - - uid: 5859 + - uid: 5832 components: - pos: 53.5,57.5 parent: 2 type: Transform - - uid: 5860 + - uid: 5833 components: - pos: 52.5,57.5 parent: 2 type: Transform - - uid: 5861 + - uid: 5834 components: - pos: 51.5,57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5862 + - uid: 5835 components: - pos: 55.5,57.5 parent: 2 type: Transform - - uid: 5863 + - uid: 5836 components: - pos: 56.5,57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5864 + - uid: 5837 components: - pos: 57.5,57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5865 + - uid: 5838 components: - pos: 58.5,57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5866 + - uid: 5839 components: - pos: 58.5,58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5867 + - uid: 5840 components: - pos: 58.5,56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5868 + - uid: 5841 components: - pos: 50.5,57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5869 + - uid: 5842 components: - pos: 50.5,58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5870 + - uid: 5843 components: - pos: 50.5,56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5871 + - uid: 5844 components: - pos: 54.5,60.5 parent: 2 type: Transform - - uid: 5872 + - uid: 5845 components: - pos: 54.5,61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5873 + - uid: 5846 components: - pos: 53.5,61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5874 + - uid: 5847 components: - pos: 55.5,61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5875 + - uid: 5848 components: - pos: 50.5,45.5 parent: 2 type: Transform - - uid: 5876 + - uid: 5849 components: - pos: 49.5,45.5 parent: 2 type: Transform - - uid: 5877 + - uid: 5850 components: - pos: 48.5,45.5 parent: 2 type: Transform - - uid: 5878 + - uid: 5851 components: - pos: 47.5,45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5879 + - uid: 5852 components: - pos: 46.5,45.5 parent: 2 type: Transform - - uid: 5880 + - uid: 5853 components: - pos: 45.5,45.5 parent: 2 type: Transform - - uid: 5881 + - uid: 5854 components: - pos: 44.5,45.5 parent: 2 type: Transform - - uid: 5882 + - uid: 5855 components: - pos: 58.5,45.5 parent: 2 type: Transform - - uid: 5883 + - uid: 5856 components: - pos: 59.5,45.5 parent: 2 type: Transform - - uid: 5884 + - uid: 5857 components: - pos: 60.5,45.5 parent: 2 type: Transform - - uid: 5885 + - uid: 5858 components: - pos: 60.5,46.5 parent: 2 type: Transform - - uid: 5886 + - uid: 5859 components: - pos: 60.5,47.5 parent: 2 type: Transform - - uid: 5887 + - uid: 5860 components: - pos: -18.5,24.5 parent: 2 type: Transform - - uid: 5888 + - uid: 5861 components: - pos: -18.5,25.5 parent: 2 type: Transform - - uid: 5889 + - uid: 5862 components: - pos: -18.5,26.5 parent: 2 type: Transform - - uid: 5890 + - uid: 5863 components: - pos: -18.5,27.5 parent: 2 type: Transform - - uid: 5891 + - uid: 5864 components: - pos: -18.5,28.5 parent: 2 type: Transform - - uid: 5892 + - uid: 5865 components: - pos: -18.5,29.5 parent: 2 type: Transform - - uid: 5893 + - uid: 5866 components: - pos: -18.5,30.5 parent: 2 type: Transform - - uid: 5894 + - uid: 5867 components: - pos: -19.5,30.5 parent: 2 type: Transform - - uid: 5895 + - uid: 5868 components: - pos: -20.5,30.5 parent: 2 type: Transform - - uid: 5896 + - uid: 5869 components: - pos: -21.5,30.5 parent: 2 type: Transform - - uid: 5897 + - uid: 5870 components: - pos: -22.5,30.5 parent: 2 type: Transform - - uid: 5898 + - uid: 5871 components: - pos: -23.5,30.5 parent: 2 type: Transform - - uid: 5899 + - uid: 5872 components: - pos: -20.5,22.5 parent: 2 type: Transform - - uid: 5900 + - uid: 5873 components: - pos: -20.5,23.5 parent: 2 type: Transform - - uid: 5901 + - uid: 5874 components: - pos: -20.5,24.5 parent: 2 type: Transform - - uid: 5902 + - uid: 5875 components: - pos: -20.5,25.5 parent: 2 type: Transform - - uid: 5903 + - uid: 5876 components: - pos: -20.5,26.5 parent: 2 type: Transform - - uid: 5904 + - uid: 5877 components: - pos: -20.5,27.5 parent: 2 type: Transform - - uid: 5905 + - uid: 5878 components: - pos: -20.5,28.5 parent: 2 type: Transform - - uid: 5906 + - uid: 5879 components: - pos: -20.5,29.5 parent: 2 type: Transform - - uid: 5907 + - uid: 5880 components: - pos: 44.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5908 + - uid: 5881 components: - pos: 45.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5909 + - uid: 5882 components: - pos: 46.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5910 + - uid: 5883 components: - pos: 47.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5911 + - uid: 5884 components: - pos: 46.5,-14.5 parent: 2 type: Transform - - uid: 5912 + - uid: 5885 components: - pos: 46.5,-15.5 parent: 2 type: Transform - - uid: 5913 + - uid: 5886 components: - pos: 46.5,-16.5 parent: 2 type: Transform - - uid: 5914 + - uid: 5887 components: - pos: 37.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5915 + - uid: 5888 components: - pos: 36.5,-13.5 parent: 2 type: Transform - - uid: 5916 + - uid: 5889 components: - pos: 61.5,26.5 parent: 2 type: Transform - - uid: 5917 + - uid: 5890 components: - pos: 62.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5918 + - uid: 5891 components: - pos: 63.5,26.5 parent: 2 type: Transform - - uid: 5919 + - uid: 5892 components: - pos: 64.5,26.5 parent: 2 type: Transform - - uid: 5920 + - uid: 5893 components: - pos: 65.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5921 + - uid: 5894 components: - pos: 65.5,25.5 parent: 2 type: Transform - - uid: 5922 + - uid: 5895 components: - pos: 64.5,15.5 parent: 2 type: Transform - - uid: 5923 + - uid: 5896 components: - pos: 64.5,16.5 parent: 2 type: Transform - - uid: 5924 + - uid: 5897 components: - pos: 64.5,17.5 parent: 2 type: Transform - - uid: 5925 + - uid: 5898 components: - pos: 12.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5926 + - uid: 5899 components: - pos: 11.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5927 + - uid: 5900 components: - pos: 10.5,32.5 parent: 2 type: Transform - - uid: 5928 + - uid: 5901 components: - pos: 9.5,32.5 parent: 2 type: Transform - - uid: 5929 + - uid: 5902 components: - pos: 8.5,32.5 parent: 2 type: Transform - - uid: 5930 + - uid: 5903 components: - pos: 7.5,32.5 parent: 2 type: Transform - - uid: 5931 + - uid: 5904 components: - pos: 6.5,32.5 parent: 2 type: Transform - - uid: 5932 + - uid: 5905 components: - pos: 5.5,32.5 parent: 2 type: Transform - - uid: 5933 + - uid: 5906 components: - pos: 4.5,32.5 parent: 2 type: Transform - - uid: 5934 + - uid: 5907 components: - pos: 9.5,31.5 parent: 2 type: Transform - - uid: 5935 + - uid: 5908 components: - pos: 9.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5936 + - uid: 5909 components: - pos: 8.5,30.5 parent: 2 type: Transform - - uid: 5937 + - uid: 5910 components: - pos: 7.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5938 + - uid: 5911 components: - pos: 6.5,30.5 parent: 2 type: Transform - - uid: 5939 + - uid: 5912 components: - pos: 6.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5940 + - uid: 5913 components: - pos: 6.5,33.5 parent: 2 type: Transform - - uid: 5941 + - uid: 5914 components: - pos: 6.5,34.5 parent: 2 type: Transform - - uid: 5942 + - uid: 5915 components: - pos: 7.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5943 + - uid: 5916 components: - pos: 8.5,34.5 parent: 2 type: Transform - - uid: 5944 + - uid: 5917 components: - pos: 9.5,34.5 parent: 2 type: Transform - - uid: 5945 + - uid: 5918 components: - pos: 9.5,33.5 parent: 2 type: Transform - - uid: 5946 + - uid: 5919 components: - pos: 57.5,33.5 parent: 2 type: Transform - - uid: 5947 + - uid: 5920 components: - pos: 58.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5948 + - uid: 5921 components: - pos: 55.5,31.5 parent: 2 type: Transform - - uid: 5949 + - uid: 5922 components: - pos: 54.5,31.5 parent: 2 type: Transform - - uid: 5950 + - uid: 5923 components: - pos: -15.5,42.5 parent: 2 type: Transform - - uid: 5951 + - uid: 5924 components: - pos: -16.5,42.5 parent: 2 type: Transform - - uid: 5952 + - uid: 5925 components: - pos: -16.5,41.5 parent: 2 type: Transform - - uid: 5953 + - uid: 5926 components: - pos: -16.5,40.5 parent: 2 type: Transform - - uid: 5954 + - uid: 5927 components: - pos: -16.5,39.5 parent: 2 type: Transform - - uid: 5955 + - uid: 5928 components: - pos: -16.5,38.5 parent: 2 type: Transform - - uid: 5956 + - uid: 5929 components: - pos: -16.5,37.5 parent: 2 type: Transform - - uid: 5957 + - uid: 5930 components: - pos: -16.5,36.5 parent: 2 type: Transform - - uid: 5958 + - uid: 5931 components: - pos: -16.5,35.5 parent: 2 type: Transform - - uid: 5959 + - uid: 5932 components: - pos: -16.5,34.5 parent: 2 type: Transform - - uid: 5960 + - uid: 5933 components: - pos: -16.5,33.5 parent: 2 type: Transform - - uid: 5961 + - uid: 5934 components: - pos: -16.5,32.5 parent: 2 type: Transform - - uid: 5962 + - uid: 5935 components: - pos: -16.5,31.5 parent: 2 type: Transform - - uid: 5963 + - uid: 5936 components: - pos: -16.5,30.5 parent: 2 type: Transform - - uid: 5964 + - uid: 5937 components: - pos: -16.5,29.5 parent: 2 type: Transform - - uid: 5965 + - uid: 5938 components: - pos: -15.5,29.5 parent: 2 type: Transform - - uid: 5966 + - uid: 5939 components: - pos: -14.5,29.5 parent: 2 type: Transform - - uid: 5967 + - uid: 5940 components: - pos: -14.5,30.5 parent: 2 type: Transform - - uid: 5968 + - uid: 5941 components: - pos: -14.5,31.5 parent: 2 type: Transform - - uid: 5969 + - uid: 5942 components: - pos: -14.5,32.5 parent: 2 type: Transform - - uid: 5970 + - uid: 5943 components: - pos: -14.5,33.5 parent: 2 type: Transform - - uid: 5971 + - uid: 5944 components: - pos: -14.5,34.5 parent: 2 type: Transform - - uid: 5972 + - uid: 5945 components: - pos: -14.5,35.5 parent: 2 type: Transform - - uid: 5973 + - uid: 5946 components: - pos: -14.5,36.5 parent: 2 type: Transform - - uid: 5974 + - uid: 5947 components: - pos: -14.5,37.5 parent: 2 type: Transform - - uid: 5975 + - uid: 5948 components: - pos: -14.5,38.5 parent: 2 type: Transform - - uid: 5976 + - uid: 5949 components: - pos: -14.5,39.5 parent: 2 type: Transform - - uid: 5977 + - uid: 5950 components: - pos: -14.5,40.5 parent: 2 type: Transform - - uid: 5978 + - uid: 5951 components: - pos: -14.5,41.5 parent: 2 type: Transform - - uid: 5979 + - uid: 5952 components: - pos: -14.5,42.5 parent: 2 type: Transform - - uid: 5980 + - uid: 5953 components: - pos: -17.5,41.5 parent: 2 type: Transform - - uid: 5981 + - uid: 5954 components: - pos: -18.5,41.5 parent: 2 type: Transform - - uid: 5982 + - uid: 5955 components: - pos: -18.5,42.5 parent: 2 type: Transform - - uid: 5983 + - uid: 5956 components: - pos: -18.5,43.5 parent: 2 type: Transform - - uid: 5984 + - uid: 5957 components: - pos: -18.5,44.5 parent: 2 type: Transform - - uid: 5985 + - uid: 5958 components: - pos: -18.5,45.5 parent: 2 type: Transform - - uid: 5986 + - uid: 5959 components: - pos: -19.5,45.5 parent: 2 type: Transform - - uid: 5987 + - uid: 5960 components: - pos: -20.5,45.5 parent: 2 type: Transform - - uid: 5988 + - uid: 5961 components: - pos: -21.5,45.5 parent: 2 type: Transform - - uid: 5989 + - uid: 5962 components: - pos: -22.5,45.5 parent: 2 type: Transform - - uid: 5990 + - uid: 5963 components: - pos: -21.5,44.5 parent: 2 type: Transform - - uid: 5991 + - uid: 5964 components: - pos: -21.5,43.5 parent: 2 type: Transform - - uid: 5992 + - uid: 5965 components: - pos: -21.5,42.5 parent: 2 type: Transform - - uid: 5993 + - uid: 5966 components: - pos: -21.5,41.5 parent: 2 type: Transform - - uid: 5994 + - uid: 5967 components: - pos: -21.5,40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5995 + - uid: 5968 components: - pos: -17.5,44.5 parent: 2 type: Transform - - uid: 5996 + - uid: 5969 components: - pos: -16.5,44.5 parent: 2 type: Transform - - uid: 5997 + - uid: 5970 components: - pos: -16.5,45.5 parent: 2 type: Transform - - uid: 5998 + - uid: 5971 components: - pos: -16.5,46.5 parent: 2 type: Transform - - uid: 5999 + - uid: 5972 components: - pos: -16.5,47.5 parent: 2 type: Transform - - uid: 6000 + - uid: 5973 components: - pos: -16.5,48.5 parent: 2 type: Transform - - uid: 6001 + - uid: 5974 components: - pos: -16.5,49.5 parent: 2 type: Transform - - uid: 6002 + - uid: 5975 components: - pos: -16.5,50.5 parent: 2 type: Transform - - uid: 6003 + - uid: 5976 components: - pos: -16.5,51.5 parent: 2 type: Transform - - uid: 6004 + - uid: 5977 components: - pos: -17.5,51.5 parent: 2 type: Transform - - uid: 6005 + - uid: 5978 components: - pos: -18.5,51.5 parent: 2 type: Transform - - uid: 6006 + - uid: 5979 components: - pos: -18.5,50.5 parent: 2 type: Transform - - uid: 6007 + - uid: 5980 components: - pos: -18.5,49.5 parent: 2 type: Transform - - uid: 6008 + - uid: 5981 components: - pos: -18.5,48.5 parent: 2 type: Transform - - uid: 6009 + - uid: 5982 components: - pos: -18.5,47.5 parent: 2 type: Transform - - uid: 6010 + - uid: 5983 components: - pos: -18.5,46.5 parent: 2 type: Transform - - uid: 6011 + - uid: 5984 components: - pos: -13.5,39.5 parent: 2 type: Transform - - uid: 6012 + - uid: 5985 components: - pos: -12.5,39.5 parent: 2 type: Transform - - uid: 6013 + - uid: 5986 components: - pos: -11.5,39.5 parent: 2 type: Transform - - uid: 6014 + - uid: 5987 components: - pos: -10.5,39.5 parent: 2 type: Transform - - uid: 6015 + - uid: 5988 components: - pos: -9.5,39.5 parent: 2 type: Transform - - uid: 6016 + - uid: 5989 components: - pos: -8.5,39.5 parent: 2 type: Transform - - uid: 6017 + - uid: 5990 components: - pos: -8.5,38.5 parent: 2 type: Transform - - uid: 6018 + - uid: 5991 components: - pos: -8.5,37.5 parent: 2 type: Transform - - uid: 6019 + - uid: 5992 components: - pos: -9.5,37.5 parent: 2 type: Transform - - uid: 6020 + - uid: 5993 components: - pos: -10.5,37.5 parent: 2 type: Transform - - uid: 6021 + - uid: 5994 components: - pos: -11.5,37.5 parent: 2 type: Transform - - uid: 6022 + - uid: 5995 components: - pos: -12.5,37.5 parent: 2 type: Transform - - uid: 6023 + - uid: 5996 components: - pos: -13.5,37.5 parent: 2 type: Transform - - uid: 6024 + - uid: 5997 components: - pos: -17.5,34.5 parent: 2 type: Transform - - uid: 6025 + - uid: 5998 components: - pos: -18.5,34.5 parent: 2 type: Transform - - uid: 6026 + - uid: 5999 components: - pos: -19.5,34.5 parent: 2 type: Transform - - uid: 6027 + - uid: 6000 components: - pos: -20.5,34.5 parent: 2 type: Transform - - uid: 6028 + - uid: 6001 components: - pos: -21.5,34.5 parent: 2 type: Transform - - uid: 6029 + - uid: 6002 components: - pos: -13.5,34.5 parent: 2 type: Transform - - uid: 6030 + - uid: 6003 components: - pos: -12.5,34.5 parent: 2 type: Transform - - uid: 6031 + - uid: 6004 components: - pos: -11.5,34.5 parent: 2 type: Transform - - uid: 6032 + - uid: 6005 components: - pos: -11.5,33.5 parent: 2 type: Transform - - uid: 6033 + - uid: 6006 components: - pos: -11.5,32.5 parent: 2 type: Transform - - uid: 6034 + - uid: 6007 components: - pos: -11.5,31.5 parent: 2 type: Transform - - uid: 6035 + - uid: 6008 components: - pos: -15.5,44.5 parent: 2 type: Transform - - uid: 6036 + - uid: 6009 components: - pos: -41.5,23.5 parent: 2 type: Transform - - uid: 6037 + - uid: 6010 components: - pos: -41.5,24.5 parent: 2 type: Transform - - uid: 6038 + - uid: 6011 components: - pos: -14.5,44.5 parent: 2 type: Transform - - uid: 6039 + - uid: 6012 components: - pos: -13.5,44.5 parent: 2 type: Transform - - uid: 6040 + - uid: 6013 components: - pos: -12.5,44.5 parent: 2 type: Transform - - uid: 6041 + - uid: 6014 components: - pos: -11.5,44.5 parent: 2 type: Transform - - uid: 6042 + - uid: 6015 components: - pos: -10.5,44.5 parent: 2 type: Transform - - uid: 6043 + - uid: 6016 components: - pos: -15.5,46.5 parent: 2 type: Transform - - uid: 6044 + - uid: 6017 components: - pos: -14.5,46.5 parent: 2 type: Transform - - uid: 6045 + - uid: 6018 components: - pos: -13.5,46.5 parent: 2 type: Transform - - uid: 6046 + - uid: 6019 components: - pos: -12.5,46.5 parent: 2 type: Transform - - uid: 6047 + - uid: 6020 components: - pos: -11.5,46.5 parent: 2 type: Transform - - uid: 6048 + - uid: 6021 components: - pos: -10.5,46.5 parent: 2 type: Transform - - uid: 6049 + - uid: 6022 components: - pos: 52.5,39.5 parent: 2 type: Transform - - uid: 6050 + - uid: 6023 components: - pos: 51.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6051 + - uid: 6024 components: - pos: 49.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6052 + - uid: 6025 components: - pos: 48.5,39.5 parent: 2 type: Transform - - uid: 6053 + - uid: 6026 components: - pos: 47.5,38.5 parent: 2 type: Transform - - uid: 6054 + - uid: 6027 components: - pos: 47.5,39.5 parent: 2 type: Transform - - uid: 6055 + - uid: 6028 components: - pos: 47.5,37.5 parent: 2 type: Transform - - uid: 6056 + - uid: 6029 components: - pos: 46.5,37.5 parent: 2 type: Transform - - uid: 6057 + - uid: 6030 components: - pos: 45.5,37.5 parent: 2 type: Transform - - uid: 6058 + - uid: 6031 components: - pos: 45.5,36.5 parent: 2 type: Transform - - uid: 6059 + - uid: 6032 components: - pos: 45.5,35.5 parent: 2 type: Transform - - uid: 6060 + - uid: 6033 components: - pos: 46.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6061 + - uid: 6034 components: - pos: 46.5,33.5 parent: 2 type: Transform - - uid: 6062 + - uid: 6035 components: - pos: 46.5,32.5 parent: 2 type: Transform - - uid: 6063 + - uid: 6036 components: - pos: 47.5,32.5 parent: 2 type: Transform - - uid: 6064 + - uid: 6037 components: - pos: 48.5,32.5 parent: 2 type: Transform - - uid: 6065 + - uid: 6038 components: - pos: 49.5,32.5 parent: 2 type: Transform - - uid: 6066 + - uid: 6039 components: - pos: 52.5,40.5 parent: 2 type: Transform - - uid: 6067 + - uid: 6040 components: - pos: 52.5,41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6068 + - uid: 6041 components: - pos: 49.5,38.5 parent: 2 type: Transform - - uid: 6069 + - uid: 6042 components: - pos: 49.5,37.5 parent: 2 type: Transform - - uid: 6070 + - uid: 6043 components: - pos: 49.5,36.5 parent: 2 type: Transform - - uid: 6071 + - uid: 6044 components: - pos: 6.5,48.5 parent: 2 type: Transform - - uid: 6072 + - uid: 6045 components: - pos: 5.5,48.5 parent: 2 type: Transform - - uid: 6073 + - uid: 6046 components: - pos: 4.5,48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6074 + - uid: 6047 components: - pos: 3.5,48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6075 + - uid: 6048 components: - pos: 3.5,49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6076 + - uid: 6049 components: - pos: 2.5,49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6077 + - uid: 6050 components: - pos: 1.5,49.5 parent: 2 type: Transform - - uid: 6078 + - uid: 6051 components: - pos: 58.5,27.5 parent: 2 type: Transform - - uid: 6079 + - uid: 6052 components: - pos: 59.5,28.5 parent: 2 type: Transform - - uid: 6080 + - uid: 6053 components: - pos: 58.5,28.5 parent: 2 type: Transform - - uid: 6081 + - uid: 6054 components: - pos: 5.5,49.5 parent: 2 type: Transform - - uid: 6082 + - uid: 6055 components: - pos: 5.5,50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6083 + - uid: 6056 components: - pos: 5.5,51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6084 + - uid: 6057 components: - pos: 6.5,51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6085 + - uid: 6058 components: - pos: 6.5,52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6086 + - uid: 6059 components: - pos: 7.5,52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6087 + - uid: 6060 components: - pos: 8.5,52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6088 + - uid: 6061 components: - pos: 63.5,27.5 parent: 2 type: Transform - - uid: 6089 + - uid: 6062 components: - pos: 63.5,28.5 parent: 2 type: Transform - - uid: 6090 + - uid: 6063 components: - pos: 63.5,29.5 parent: 2 type: Transform - - uid: 6091 + - uid: 6064 components: - pos: 16.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6092 + - uid: 6065 components: - pos: 16.5,36.5 parent: 2 type: Transform - - uid: 6093 + - uid: 6066 components: - pos: 16.5,37.5 parent: 2 type: Transform - - uid: 6094 + - uid: 6067 components: - pos: 16.5,38.5 parent: 2 type: Transform - - uid: 6095 + - uid: 6068 components: - pos: 16.5,39.5 parent: 2 type: Transform - - uid: 6096 + - uid: 6069 components: - pos: 15.5,39.5 parent: 2 type: Transform - - uid: 6097 + - uid: 6070 components: - pos: 14.5,39.5 parent: 2 type: Transform - - uid: 6098 + - uid: 6071 components: - pos: 14.5,38.5 parent: 2 type: Transform - - uid: 6099 + - uid: 6072 components: - pos: 14.5,37.5 parent: 2 type: Transform - - uid: 6100 + - uid: 6073 components: - pos: 14.5,36.5 parent: 2 type: Transform - - uid: 6101 + - uid: 6074 components: - pos: 15.5,36.5 parent: 2 type: Transform - - uid: 6102 + - uid: 6075 components: - pos: 17.5,39.5 parent: 2 type: Transform - - uid: 6103 + - uid: 6076 components: - pos: 18.5,39.5 parent: 2 type: Transform - - uid: 6104 + - uid: 6077 components: - pos: 18.5,38.5 parent: 2 type: Transform - - uid: 6105 + - uid: 6078 components: - pos: 18.5,37.5 parent: 2 type: Transform - - uid: 6106 + - uid: 6079 components: - pos: 18.5,36.5 parent: 2 type: Transform - - uid: 6107 + - uid: 6080 components: - pos: 17.5,36.5 parent: 2 type: Transform - - uid: 6108 + - uid: 6081 components: - pos: 16.5,40.5 parent: 2 type: Transform - - uid: 6109 + - uid: 6082 components: - pos: 63.5,30.5 parent: 2 type: Transform - - uid: 6110 + - uid: 6083 components: - pos: 63.5,31.5 parent: 2 type: Transform - - uid: 6111 + - uid: 6084 components: - pos: 63.5,32.5 parent: 2 type: Transform - - uid: 6112 + - uid: 6085 components: - pos: 63.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6113 + - uid: 6086 components: - pos: 63.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6114 + - uid: 6087 components: - pos: 63.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6115 + - uid: 6088 components: - pos: 63.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6116 + - uid: 6089 components: - pos: 64.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6117 + - uid: 6090 components: - pos: 65.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6118 + - uid: 6091 components: - pos: 66.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6119 + - uid: 6092 components: - pos: 67.5,36.5 parent: 2 type: Transform - - uid: 6120 + - uid: 6093 components: - pos: 68.5,36.5 parent: 2 type: Transform - - uid: 6121 + - uid: 6094 components: - pos: 69.5,36.5 parent: 2 type: Transform - - uid: 6122 + - uid: 6095 components: - pos: 70.5,36.5 parent: 2 type: Transform - - uid: 6123 + - uid: 6096 components: - pos: 71.5,36.5 parent: 2 type: Transform - - uid: 6124 + - uid: 6097 components: - pos: 72.5,36.5 parent: 2 type: Transform - - uid: 6125 + - uid: 6098 components: - pos: 73.5,36.5 parent: 2 type: Transform - - uid: 6126 + - uid: 6099 components: - pos: 74.5,36.5 parent: 2 type: Transform - - uid: 6127 + - uid: 6100 components: - pos: 75.5,36.5 parent: 2 type: Transform - - uid: 6128 + - uid: 6101 components: - pos: 76.5,36.5 parent: 2 type: Transform - - uid: 6129 + - uid: 6102 components: - pos: 73.5,35.5 parent: 2 type: Transform - - uid: 6130 + - uid: 6103 components: - pos: 73.5,34.5 parent: 2 type: Transform - - uid: 6131 + - uid: 6104 components: - pos: 71.5,35.5 parent: 2 type: Transform - - uid: 6132 + - uid: 6105 components: - pos: 71.5,34.5 parent: 2 type: Transform - - uid: 6133 + - uid: 6106 components: - pos: 71.5,37.5 parent: 2 type: Transform - - uid: 6134 + - uid: 6107 components: - pos: 71.5,38.5 parent: 2 type: Transform - - uid: 6135 + - uid: 6108 components: - pos: 73.5,38.5 parent: 2 type: Transform - - uid: 6136 + - uid: 6109 components: - pos: 73.5,37.5 parent: 2 type: Transform - - uid: 6137 + - uid: 6110 components: - pos: 39.5,47.5 parent: 2 type: Transform - - uid: 6138 + - uid: 6111 components: - pos: 43.5,45.5 parent: 2 type: Transform - - uid: 6139 + - uid: 6112 components: - pos: 42.5,45.5 parent: 2 type: Transform - - uid: 6140 + - uid: 6113 components: - pos: 41.5,45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6141 + - uid: 6114 components: - pos: 40.5,45.5 parent: 2 type: Transform - - uid: 6142 + - uid: 6115 components: - pos: 39.5,45.5 parent: 2 type: Transform - - uid: 6143 + - uid: 6116 components: - pos: 38.5,45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6144 + - uid: 6117 components: - pos: 37.5,45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6145 + - uid: 6118 components: - pos: 36.5,45.5 parent: 2 type: Transform - - uid: 6146 + - uid: 6119 components: - pos: 35.5,45.5 parent: 2 type: Transform - - uid: 6147 + - uid: 6120 components: - pos: 34.5,45.5 parent: 2 type: Transform - - uid: 6148 + - uid: 6121 components: - pos: 39.5,46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6149 + - uid: 6122 components: - pos: 38.5,44.5 parent: 2 type: Transform - - uid: 6150 + - uid: 6123 components: - pos: 38.5,43.5 parent: 2 type: Transform - - uid: 6151 + - uid: 6124 components: - pos: 38.5,48.5 parent: 2 type: Transform - - uid: 6152 + - uid: 6125 components: - pos: 38.5,49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6153 + - uid: 6126 components: - pos: 38.5,50.5 parent: 2 type: Transform - - uid: 6154 + - uid: 6127 components: - pos: 39.5,50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6155 + - uid: 6128 components: - pos: 39.5,51.5 parent: 2 type: Transform - - uid: 6156 + - uid: 6129 components: - pos: 40.5,51.5 parent: 2 type: Transform - - uid: 6157 + - uid: 6130 components: - pos: 41.5,51.5 parent: 2 type: Transform - - uid: 6158 + - uid: 6131 components: - pos: 41.5,44.5 parent: 2 type: Transform - - uid: 6159 + - uid: 6132 components: - pos: 41.5,46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6160 + - uid: 6133 components: - pos: 41.5,47.5 parent: 2 type: Transform - - uid: 6161 + - uid: 6134 components: - pos: 34.5,46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6162 + - uid: 6135 components: - pos: 34.5,47.5 parent: 2 type: Transform - - uid: 6163 + - uid: 6136 components: - pos: 35.5,44.5 parent: 2 type: Transform - - uid: 6164 + - uid: 6137 components: - pos: 35.5,43.5 parent: 2 type: Transform - - uid: 6165 + - uid: 6138 components: - pos: 45.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6166 + - uid: 6139 components: - pos: 45.5,31.5 parent: 2 type: Transform - - uid: 6167 + - uid: 6140 components: - pos: 45.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6168 + - uid: 6141 components: - pos: 45.5,29.5 parent: 2 type: Transform - - uid: 6169 + - uid: 6142 components: - pos: 44.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6170 + - uid: 6143 components: - pos: 43.5,29.5 parent: 2 type: Transform - - uid: 6171 + - uid: 6144 components: - pos: 37.5,50.5 parent: 2 type: Transform - - uid: 6172 + - uid: 6145 components: - pos: -9.5,46.5 parent: 2 type: Transform - - uid: 6173 + - uid: 6146 components: - pos: -8.5,46.5 parent: 2 type: Transform - - uid: 6174 + - uid: 6147 components: - pos: -7.5,46.5 parent: 2 type: Transform - - uid: 6175 + - uid: 6148 components: - pos: -6.5,46.5 parent: 2 type: Transform - - uid: 6176 + - uid: 6149 components: - pos: -5.5,46.5 parent: 2 type: Transform - - uid: 6177 + - uid: 6150 components: - pos: -4.5,46.5 parent: 2 type: Transform - - uid: 6178 + - uid: 6151 components: - pos: -3.5,46.5 parent: 2 type: Transform - - uid: 6179 + - uid: 6152 components: - pos: -2.5,46.5 parent: 2 type: Transform - - uid: 6180 + - uid: 6153 components: - pos: -1.5,46.5 parent: 2 type: Transform - - uid: 6181 + - uid: 6154 components: - pos: -0.5,46.5 parent: 2 type: Transform - - uid: 6182 + - uid: 6155 components: - pos: -0.5,45.5 parent: 2 type: Transform - - uid: 6183 + - uid: 6156 components: - pos: -0.5,44.5 parent: 2 type: Transform - - uid: 6184 + - uid: 6157 components: - pos: -1.5,44.5 parent: 2 type: Transform - - uid: 6185 + - uid: 6158 components: - pos: -2.5,44.5 parent: 2 type: Transform - - uid: 6186 + - uid: 6159 components: - pos: -3.5,44.5 parent: 2 type: Transform - - uid: 6187 + - uid: 6160 components: - pos: -4.5,44.5 parent: 2 type: Transform - - uid: 6188 + - uid: 6161 components: - pos: -5.5,44.5 parent: 2 type: Transform - - uid: 6189 + - uid: 6162 components: - pos: -6.5,44.5 parent: 2 type: Transform - - uid: 6190 + - uid: 6163 components: - pos: -7.5,44.5 parent: 2 type: Transform - - uid: 6191 + - uid: 6164 components: - pos: -8.5,44.5 parent: 2 type: Transform - - uid: 6192 + - uid: 6165 components: - pos: -9.5,44.5 parent: 2 type: Transform - - uid: 6193 + - uid: 6166 components: - pos: 0.5,46.5 parent: 2 type: Transform - - uid: 6194 + - uid: 6167 components: - pos: 0.5,47.5 parent: 2 type: Transform - - uid: 6195 + - uid: 6168 components: - pos: -0.5,48.5 parent: 2 type: Transform - - uid: 6196 + - uid: 6169 components: - pos: -0.5,49.5 parent: 2 type: Transform - - uid: 6197 + - uid: 6170 components: - pos: -0.5,50.5 parent: 2 type: Transform - - uid: 6198 + - uid: 6171 components: - pos: -0.5,51.5 parent: 2 type: Transform - - uid: 6199 + - uid: 6172 components: - pos: -0.5,52.5 parent: 2 type: Transform - - uid: 6200 + - uid: 6173 components: - pos: -0.5,53.5 parent: 2 type: Transform - - uid: 6201 + - uid: 6174 components: - pos: -0.5,54.5 parent: 2 type: Transform - - uid: 6202 + - uid: 6175 components: - pos: 0.5,48.5 parent: 2 type: Transform - - uid: 6203 + - uid: 6176 components: - pos: 1.5,48.5 parent: 2 type: Transform - - uid: 6204 + - uid: 6177 components: - pos: 1.5,50.5 parent: 2 type: Transform - - uid: 6205 + - uid: 6178 components: - pos: 1.5,51.5 parent: 2 type: Transform - - uid: 6206 + - uid: 6179 components: - pos: 1.5,52.5 parent: 2 type: Transform - - uid: 6207 + - uid: 6180 components: - pos: 1.5,53.5 parent: 2 type: Transform - - uid: 6208 + - uid: 6181 components: - pos: 1.5,54.5 parent: 2 type: Transform - - uid: 6209 + - uid: 6182 components: - pos: -10.5,23.5 parent: 2 type: Transform - - uid: 6210 + - uid: 6183 components: - pos: -10.5,22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6211 + - uid: 6184 components: - pos: -10.5,21.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6212 + - uid: 6185 components: - pos: -10.5,20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6213 + - uid: 6186 components: - pos: -10.5,19.5 parent: 2 type: Transform - - uid: 6214 + - uid: 6187 components: - pos: -10.5,18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6215 + - uid: 6188 components: - pos: -11.5,18.5 parent: 2 type: Transform - - uid: 6216 + - uid: 6189 components: - pos: -12.5,18.5 parent: 2 type: Transform - - uid: 6217 + - uid: 6190 components: - pos: -13.5,18.5 parent: 2 type: Transform - - uid: 6218 + - uid: 6191 components: - pos: -13.5,19.5 parent: 2 type: Transform - - uid: 6219 + - uid: 6192 components: - pos: -13.5,20.5 parent: 2 type: Transform - - uid: 6220 + - uid: 6193 components: - pos: -13.5,21.5 parent: 2 type: Transform - - uid: 6221 + - uid: 6194 components: - pos: -11.5,42.5 parent: 2 type: Transform - - uid: 6222 + - uid: 6195 components: - pos: -10.5,42.5 parent: 2 type: Transform - - uid: 6223 + - uid: 6196 components: - pos: -9.5,42.5 parent: 2 type: Transform - - uid: 6224 + - uid: 6197 components: - pos: -9.5,43.5 parent: 2 type: Transform - - uid: 6225 + - uid: 6198 components: - pos: 33.5,45.5 parent: 2 type: Transform - - uid: 6226 + - uid: 6199 components: - pos: 32.5,45.5 parent: 2 type: Transform - - uid: 6227 + - uid: 6200 components: - pos: 31.5,45.5 parent: 2 type: Transform - - uid: 6228 + - uid: 6201 components: - pos: 30.5,45.5 parent: 2 type: Transform - - uid: 6229 + - uid: 6202 components: - pos: 29.5,45.5 parent: 2 type: Transform - - uid: 6230 + - uid: 6203 components: - pos: 29.5,44.5 parent: 2 type: Transform - - uid: 6231 + - uid: 6204 components: - pos: 29.5,43.5 parent: 2 type: Transform - - uid: 6232 + - uid: 6205 components: - pos: 29.5,42.5 parent: 2 type: Transform - - uid: 6233 + - uid: 6206 components: - pos: 29.5,46.5 parent: 2 type: Transform - - uid: 6234 + - uid: 6207 components: - pos: 29.5,47.5 parent: 2 type: Transform - - uid: 6235 + - uid: 6208 components: - pos: -2.5,31.5 parent: 2 type: Transform - - uid: 6236 + - uid: 6209 components: - pos: -2.5,30.5 parent: 2 type: Transform - - uid: 6237 + - uid: 6210 components: - pos: -2.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6238 + - uid: 6211 components: - pos: -2.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6239 + - uid: 6212 components: - pos: -2.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6240 + - uid: 6213 components: - pos: -2.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6241 + - uid: 6214 components: - pos: -2.5,25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6242 + - uid: 6215 components: - pos: 3.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6243 + - uid: 6216 components: - pos: -22.5,34.5 parent: 2 type: Transform - - uid: 6244 + - uid: 6217 components: - pos: -23.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6245 + - uid: 6218 components: - pos: -24.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6246 + - uid: 6219 components: - pos: -24.5,35.5 parent: 2 type: Transform - - uid: 6247 + - uid: 6220 components: - pos: -24.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6248 + - uid: 6221 components: - pos: -24.5,37.5 parent: 2 type: Transform - - uid: 6249 + - uid: 6222 components: - pos: -24.5,38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6250 + - uid: 6223 components: - pos: -23.5,38.5 parent: 2 type: Transform - - uid: 6251 + - uid: 6224 components: - pos: -22.5,38.5 parent: 2 type: Transform - - uid: 6252 + - uid: 6225 components: - pos: -21.5,38.5 parent: 2 type: Transform - - uid: 6253 + - uid: 6226 components: - pos: -20.5,38.5 parent: 2 type: Transform - - uid: 6254 + - uid: 6227 components: - pos: -24.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6255 + - uid: 6228 components: - pos: -24.5,40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6256 + - uid: 6229 components: - pos: -24.5,41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6257 + - uid: 6230 components: - pos: -24.5,42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6258 + - uid: 6231 components: - pos: -24.5,43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6259 + - uid: 6232 components: - pos: -24.5,44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6260 + - uid: 6233 components: - pos: -24.5,45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6261 + - uid: 6234 components: - pos: -25.5,45.5 parent: 2 type: Transform - - uid: 6262 + - uid: 6235 components: - pos: -26.5,45.5 parent: 2 type: Transform - - uid: 6263 + - uid: 6236 components: - pos: -27.5,45.5 parent: 2 type: Transform - - uid: 6264 + - uid: 6237 components: - pos: -27.5,44.5 parent: 2 type: Transform - - uid: 6265 + - uid: 6238 components: - pos: -24.5,46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6266 + - uid: 6239 components: - pos: -24.5,47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6267 + - uid: 6240 components: - pos: -23.5,47.5 parent: 2 type: Transform - - uid: 6268 + - uid: 6241 components: - pos: -22.5,47.5 parent: 2 type: Transform - - uid: 6269 + - uid: 6242 components: - pos: -22.5,48.5 parent: 2 type: Transform - - uid: 6270 + - uid: 6243 components: - pos: -21.5,48.5 parent: 2 type: Transform - - uid: 6271 + - uid: 6244 components: - pos: -20.5,48.5 parent: 2 type: Transform - - uid: 6272 + - uid: 6245 components: - pos: -20.5,50.5 parent: 2 type: Transform - - uid: 6273 + - uid: 6246 components: - pos: -19.5,50.5 parent: 2 type: Transform - - uid: 6274 + - uid: 6247 components: - pos: -20.5,49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6275 + - uid: 6248 components: - pos: -8.5,60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6276 + - uid: 6249 components: - pos: -8.5,59.5 parent: 2 type: Transform - - uid: 6277 + - uid: 6250 components: - pos: -7.5,58.5 parent: 2 type: Transform - - uid: 6278 + - uid: 6251 components: - pos: -6.5,58.5 parent: 2 type: Transform - - uid: 6279 + - uid: 6252 components: - pos: -5.5,58.5 parent: 2 type: Transform - - uid: 6280 + - uid: 6253 components: - pos: -4.5,58.5 parent: 2 type: Transform - - uid: 6281 + - uid: 6254 components: - pos: -3.5,58.5 parent: 2 type: Transform - - uid: 6282 + - uid: 6255 components: - pos: -2.5,58.5 parent: 2 type: Transform - - uid: 6283 + - uid: 6256 components: - pos: -1.5,58.5 parent: 2 type: Transform - - uid: 6284 + - uid: 6257 components: - pos: -0.5,58.5 parent: 2 type: Transform - - uid: 6285 + - uid: 6258 components: - pos: 0.5,58.5 parent: 2 type: Transform - - uid: 6286 + - uid: 6259 components: - pos: 0.5,57.5 parent: 2 type: Transform - - uid: 6287 + - uid: 6260 components: - pos: 0.5,56.5 parent: 2 type: Transform - - uid: 6288 + - uid: 6261 components: - pos: 0.5,55.5 parent: 2 type: Transform - - uid: 6289 + - uid: 6262 components: - pos: -2.5,59.5 parent: 2 type: Transform - - uid: 6290 + - uid: 6263 components: - pos: -2.5,60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6291 + - uid: 6264 components: - pos: -2.5,61.5 parent: 2 type: Transform - - uid: 6292 + - uid: 6265 components: - pos: -2.5,62.5 parent: 2 type: Transform - - uid: 6293 + - uid: 6266 components: - pos: -1.5,62.5 parent: 2 type: Transform - - uid: 6294 + - uid: 6267 components: - pos: -1.5,63.5 parent: 2 type: Transform - - uid: 6295 + - uid: 6268 components: - pos: -1.5,65.5 parent: 2 type: Transform - - uid: 6296 + - uid: 6269 components: - pos: -1.5,64.5 parent: 2 type: Transform - - uid: 6297 + - uid: 6270 components: - pos: -0.5,59.5 parent: 2 type: Transform - - uid: 6298 + - uid: 6271 components: - pos: -0.5,60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6299 + - uid: 6272 components: - pos: -0.5,61.5 parent: 2 type: Transform - - uid: 6300 + - uid: 6273 components: - pos: -0.5,62.5 parent: 2 type: Transform - - uid: 6301 + - uid: 6274 components: - pos: -1.5,66.5 parent: 2 type: Transform - - uid: 6302 + - uid: 6275 components: - pos: -2.5,66.5 parent: 2 type: Transform - - uid: 6303 + - uid: 6276 components: - pos: -3.5,66.5 parent: 2 type: Transform - - uid: 6304 + - uid: 6277 components: - pos: -4.5,66.5 parent: 2 type: Transform - - uid: 6305 + - uid: 6278 components: - pos: -5.5,66.5 parent: 2 type: Transform - - uid: 6306 + - uid: 6279 components: - pos: -5.5,67.5 parent: 2 type: Transform - - uid: 6307 + - uid: 6280 components: - pos: -5.5,68.5 parent: 2 type: Transform - - uid: 6308 + - uid: 6281 components: - pos: -5.5,69.5 parent: 2 type: Transform - - uid: 6309 + - uid: 6282 components: - pos: -5.5,70.5 parent: 2 type: Transform - - uid: 6310 + - uid: 6283 components: - pos: -5.5,71.5 parent: 2 type: Transform - - uid: 6311 + - uid: 6284 components: - pos: -5.5,72.5 parent: 2 type: Transform - - uid: 6312 + - uid: 6285 components: - pos: -4.5,72.5 parent: 2 type: Transform - - uid: 6313 + - uid: 6286 components: - pos: -3.5,72.5 parent: 2 type: Transform - - uid: 6314 + - uid: 6287 components: - pos: -2.5,72.5 parent: 2 type: Transform - - uid: 6315 + - uid: 6288 components: - pos: -1.5,72.5 parent: 2 type: Transform - - uid: 6316 + - uid: 6289 components: - pos: -0.5,72.5 parent: 2 type: Transform - - uid: 6317 + - uid: 6290 components: - pos: 0.5,72.5 parent: 2 type: Transform - - uid: 6318 + - uid: 6291 components: - pos: 1.5,72.5 parent: 2 type: Transform - - uid: 6319 + - uid: 6292 components: - pos: 2.5,72.5 parent: 2 type: Transform - - uid: 6320 + - uid: 6293 components: - pos: 2.5,71.5 parent: 2 type: Transform - - uid: 6321 + - uid: 6294 components: - pos: 2.5,70.5 parent: 2 type: Transform - - uid: 6322 + - uid: 6295 components: - pos: 2.5,69.5 parent: 2 type: Transform - - uid: 6323 + - uid: 6296 components: - pos: 2.5,68.5 parent: 2 type: Transform - - uid: 6324 + - uid: 6297 components: - pos: 2.5,67.5 parent: 2 type: Transform - - uid: 6325 + - uid: 6298 components: - pos: 2.5,66.5 parent: 2 type: Transform - - uid: 6326 + - uid: 6299 components: - pos: 1.5,66.5 parent: 2 type: Transform - - uid: 6327 + - uid: 6300 components: - pos: 0.5,66.5 parent: 2 type: Transform - - uid: 6328 + - uid: 6301 components: - pos: -0.5,66.5 parent: 2 type: Transform - - uid: 6329 + - uid: 6302 components: - pos: -1.5,67.5 parent: 2 type: Transform - - uid: 6330 + - uid: 6303 components: - pos: -1.5,68.5 parent: 2 type: Transform - - uid: 6331 + - uid: 6304 components: - pos: -1.5,69.5 parent: 2 type: Transform - - uid: 6332 + - uid: 6305 components: - pos: -7.5,59.5 parent: 2 type: Transform - - uid: 6333 + - uid: 6306 components: - pos: -9.5,59.5 parent: 2 type: Transform - - uid: 6334 + - uid: 6307 components: - pos: -10.5,59.5 parent: 2 type: Transform - - uid: 6335 + - uid: 6308 components: - pos: -11.5,59.5 parent: 2 type: Transform - - uid: 6336 + - uid: 6309 components: - pos: -12.5,59.5 parent: 2 type: Transform - - uid: 6337 + - uid: 6310 components: - pos: -12.5,58.5 parent: 2 type: Transform - - uid: 6338 + - uid: 6311 components: - pos: -12.5,57.5 parent: 2 type: Transform - - uid: 6339 + - uid: 6312 components: - pos: -12.5,56.5 parent: 2 type: Transform - - uid: 6340 + - uid: 6313 components: - pos: -12.5,55.5 parent: 2 type: Transform - - uid: 6341 + - uid: 6314 components: - pos: -12.5,54.5 parent: 2 type: Transform - - uid: 6342 + - uid: 6315 components: - pos: -12.5,53.5 parent: 2 type: Transform - - uid: 6343 + - uid: 6316 components: - pos: -12.5,52.5 parent: 2 type: Transform - - uid: 6344 + - uid: 6317 components: - pos: -12.5,51.5 parent: 2 type: Transform - - uid: 6345 + - uid: 6318 components: - pos: -12.5,50.5 parent: 2 type: Transform - - uid: 6346 + - uid: 6319 components: - pos: -12.5,49.5 parent: 2 type: Transform - - uid: 6347 + - uid: 6320 components: - pos: -13.5,49.5 parent: 2 type: Transform - - uid: 6348 + - uid: 6321 components: - pos: -14.5,49.5 parent: 2 type: Transform - - uid: 6349 + - uid: 6322 components: - pos: -14.5,50.5 parent: 2 type: Transform - - uid: 6350 + - uid: 6323 components: - pos: -14.5,51.5 parent: 2 type: Transform - - uid: 6351 + - uid: 6324 components: - pos: -13.5,51.5 parent: 2 type: Transform - - uid: 6352 + - uid: 6325 components: - pos: -12.5,60.5 parent: 2 type: Transform - - uid: 6353 + - uid: 6326 components: - pos: -12.5,61.5 parent: 2 type: Transform - - uid: 6354 + - uid: 6327 components: - pos: -12.5,62.5 parent: 2 type: Transform - - uid: 6355 + - uid: 6328 components: - pos: -12.5,63.5 parent: 2 type: Transform - - uid: 6356 + - uid: 6329 components: - pos: -12.5,64.5 parent: 2 type: Transform - - uid: 6357 + - uid: 6330 components: - pos: -12.5,65.5 parent: 2 type: Transform - - uid: 6358 + - uid: 6331 components: - pos: -12.5,66.5 parent: 2 type: Transform - - uid: 6359 + - uid: 6332 components: - pos: -12.5,67.5 parent: 2 type: Transform - - uid: 6360 + - uid: 6333 components: - pos: -12.5,68.5 parent: 2 type: Transform - - uid: 6361 + - uid: 6334 components: - pos: -12.5,69.5 parent: 2 type: Transform - - uid: 6362 + - uid: 6335 components: - pos: -12.5,70.5 parent: 2 type: Transform - - uid: 6363 + - uid: 6336 components: - pos: -12.5,71.5 parent: 2 type: Transform - - uid: 6364 + - uid: 6337 components: - pos: -12.5,72.5 parent: 2 type: Transform - - uid: 6365 + - uid: 6338 components: - pos: -12.5,73.5 parent: 2 type: Transform - - uid: 6366 + - uid: 6339 components: - pos: -12.5,74.5 parent: 2 type: Transform - - uid: 6367 + - uid: 6340 components: - pos: -13.5,67.5 parent: 2 type: Transform - - uid: 6368 + - uid: 6341 components: - pos: -14.5,67.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6369 + - uid: 6342 components: - pos: -15.5,67.5 parent: 2 type: Transform - - uid: 6370 + - uid: 6343 components: - pos: -16.5,67.5 parent: 2 type: Transform - - uid: 6371 + - uid: 6344 components: - pos: -17.5,67.5 parent: 2 type: Transform - - uid: 6372 + - uid: 6345 components: - pos: -17.5,66.5 parent: 2 type: Transform - - uid: 6373 + - uid: 6346 components: - pos: -17.5,65.5 parent: 2 type: Transform - - uid: 6374 + - uid: 6347 components: - pos: -17.5,64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6375 + - uid: 6348 components: - pos: -17.5,63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6376 + - uid: 6349 components: - pos: -17.5,62.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6377 + - uid: 6350 components: - pos: -17.5,61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6378 + - uid: 6351 components: - pos: -17.5,60.5 parent: 2 type: Transform - - uid: 6379 + - uid: 6352 components: - pos: -17.5,59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6380 + - uid: 6353 components: - pos: -17.5,58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6381 + - uid: 6354 components: - pos: -17.5,57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6382 + - uid: 6355 components: - pos: -17.5,56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6383 + - uid: 6356 components: - pos: -17.5,55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6384 + - uid: 6357 components: - pos: -18.5,55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6385 + - uid: 6358 components: - pos: -19.5,55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6386 + - uid: 6359 components: - pos: -20.5,55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6387 + - uid: 6360 components: - pos: -21.5,55.5 parent: 2 type: Transform - - uid: 6388 + - uid: 6361 components: - pos: -22.5,55.5 parent: 2 type: Transform - - uid: 6389 + - uid: 6362 components: - pos: -22.5,54.5 parent: 2 type: Transform - - uid: 6390 + - uid: 6363 components: - pos: -22.5,53.5 parent: 2 type: Transform - - uid: 6391 + - uid: 6364 components: - pos: -22.5,52.5 parent: 2 type: Transform - - uid: 6392 + - uid: 6365 components: - pos: -22.5,51.5 parent: 2 type: Transform - - uid: 6393 + - uid: 6366 components: - pos: -21.5,53.5 parent: 2 type: Transform - - uid: 6394 + - uid: 6367 components: - pos: -21.5,56.5 parent: 2 type: Transform - - uid: 6395 + - uid: 6368 components: - pos: -21.5,57.5 parent: 2 type: Transform - - uid: 6396 + - uid: 6369 components: - pos: -21.5,58.5 parent: 2 type: Transform - - uid: 6397 + - uid: 6370 components: - pos: -21.5,59.5 parent: 2 type: Transform - - uid: 6398 + - uid: 6371 components: - pos: -21.5,60.5 parent: 2 type: Transform - - uid: 6399 + - uid: 6372 components: - pos: -21.5,61.5 parent: 2 type: Transform - - uid: 6400 + - uid: 6373 components: - pos: -21.5,62.5 parent: 2 type: Transform - - uid: 6401 + - uid: 6374 components: - pos: -21.5,63.5 parent: 2 type: Transform - - uid: 6402 + - uid: 6375 components: - pos: -21.5,64.5 parent: 2 type: Transform - - uid: 6403 + - uid: 6376 components: - pos: -21.5,65.5 parent: 2 type: Transform - - uid: 6404 + - uid: 6377 components: - pos: -21.5,66.5 parent: 2 type: Transform - - uid: 6405 + - uid: 6378 components: - pos: -21.5,67.5 parent: 2 type: Transform - - uid: 6406 + - uid: 6379 components: - pos: -21.5,68.5 parent: 2 type: Transform - - uid: 6407 + - uid: 6380 components: - pos: -21.5,69.5 parent: 2 type: Transform - - uid: 6408 + - uid: 6381 components: - pos: -21.5,70.5 parent: 2 type: Transform - - uid: 6409 + - uid: 6382 components: - pos: -21.5,71.5 parent: 2 type: Transform - - uid: 6410 + - uid: 6383 components: - pos: -21.5,72.5 parent: 2 type: Transform - - uid: 6411 + - uid: 6384 components: - pos: -21.5,73.5 parent: 2 type: Transform - - uid: 6412 + - uid: 6385 components: - pos: -21.5,74.5 parent: 2 type: Transform - - uid: 6413 + - uid: 6386 components: - pos: -17.5,68.5 parent: 2 type: Transform - - uid: 6414 + - uid: 6387 components: - pos: -17.5,69.5 parent: 2 type: Transform - - uid: 6415 + - uid: 6388 components: - pos: -17.5,70.5 parent: 2 type: Transform - - uid: 6416 + - uid: 6389 components: - pos: -17.5,54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6417 + - uid: 6390 components: - pos: -17.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6418 + - uid: 6391 components: - pos: -25.5,41.5 parent: 2 type: Transform - - uid: 6419 + - uid: 6392 components: - pos: -25.5,40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6420 + - uid: 6393 components: - pos: -26.5,41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6421 + - uid: 6394 components: - pos: -28.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6422 + - uid: 6395 components: - pos: -27.5,41.5 parent: 2 type: Transform - - uid: 6423 + - uid: 6396 components: - pos: -28.5,40.5 parent: 2 type: Transform - - uid: 6424 + - uid: 6397 components: - pos: -28.5,41.5 parent: 2 type: Transform - - uid: 6425 + - uid: 6398 components: - pos: -28.5,38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6426 + - uid: 6399 components: - pos: -29.5,38.5 parent: 2 type: Transform - - uid: 6427 + - uid: 6400 components: - pos: -30.5,38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6428 + - uid: 6401 components: - pos: -31.5,38.5 parent: 2 type: Transform - - uid: 6429 + - uid: 6402 components: - pos: -32.5,38.5 parent: 2 type: Transform - - uid: 6430 + - uid: 6403 components: - pos: -32.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6431 + - uid: 6404 components: - pos: -33.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6432 + - uid: 6405 components: - pos: -34.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6433 + - uid: 6406 components: - pos: -35.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6434 + - uid: 6407 components: - pos: -36.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6435 + - uid: 6408 components: - pos: -37.5,39.5 parent: 2 type: Transform - - uid: 6436 + - uid: 6409 components: - pos: -37.5,40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6437 + - uid: 6410 components: - pos: -37.5,41.5 parent: 2 type: Transform - - uid: 6438 + - uid: 6411 components: - pos: -37.5,42.5 parent: 2 type: Transform - - uid: 6439 + - uid: 6412 components: - pos: -38.5,39.5 parent: 2 type: Transform - - uid: 6440 + - uid: 6413 components: - pos: -39.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6441 + - uid: 6414 components: - pos: -40.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6442 + - uid: 6415 components: - pos: -41.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6443 + - uid: 6416 components: - pos: -42.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6444 + - uid: 6417 components: - pos: -43.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6445 + - uid: 6418 components: - pos: -44.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6446 + - uid: 6419 components: - pos: -45.5,39.5 parent: 2 type: Transform - - uid: 6447 + - uid: 6420 components: - pos: -46.5,39.5 parent: 2 type: Transform - - uid: 6448 + - uid: 6421 components: - pos: -41.5,38.5 parent: 2 type: Transform - - uid: 6449 + - uid: 6422 components: - pos: -29.5,37.5 parent: 2 type: Transform - - uid: 6450 + - uid: 6423 components: - pos: -29.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6451 + - uid: 6424 components: - pos: -30.5,36.5 parent: 2 type: Transform - - uid: 6452 + - uid: 6425 components: - pos: -31.5,36.5 parent: 2 type: Transform - - uid: 6453 + - uid: 6426 components: - pos: -32.5,36.5 parent: 2 type: Transform - - uid: 6454 + - uid: 6427 components: - pos: -33.5,36.5 parent: 2 type: Transform - - uid: 6455 + - uid: 6428 components: - pos: -34.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6456 + - uid: 6429 components: - pos: -34.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6457 + - uid: 6430 components: - pos: -35.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6458 + - uid: 6431 components: - pos: -36.5,37.5 parent: 2 type: Transform - - uid: 6459 + - uid: 6432 components: - pos: -37.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6460 + - uid: 6433 components: - pos: -37.5,36.5 parent: 2 type: Transform - - uid: 6461 + - uid: 6434 components: - pos: -21.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6462 + - uid: 6435 components: - pos: -22.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6463 + - uid: 6436 components: - pos: -23.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6464 + - uid: 6437 components: - pos: -24.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6465 + - uid: 6438 components: - pos: -25.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6466 + - uid: 6439 components: - pos: -26.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6467 + - uid: 6440 components: - pos: -27.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6468 + - uid: 6441 components: - pos: -28.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6469 + - uid: 6442 components: - pos: -28.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6470 + - uid: 6443 components: - pos: -28.5,29.5 parent: 2 type: Transform - - uid: 6471 + - uid: 6444 components: - pos: -28.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6472 + - uid: 6445 components: - pos: -28.5,31.5 parent: 2 type: Transform - - uid: 6473 + - uid: 6446 components: - pos: -27.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6474 + - uid: 6447 components: - pos: -27.5,33.5 parent: 2 type: Transform - - uid: 6475 + - uid: 6448 components: - pos: -27.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6476 + - uid: 6449 components: - pos: -27.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6477 + - uid: 6450 components: - pos: -27.5,32.5 parent: 2 type: Transform - - uid: 6478 + - uid: 6451 components: - pos: -16.5,62.5 parent: 2 type: Transform - - uid: 6479 + - uid: 6452 components: - pos: -16.5,61.5 parent: 2 type: Transform - - uid: 6480 + - uid: 6453 components: - pos: -18.5,62.5 parent: 2 type: Transform - - uid: 6481 + - uid: 6454 components: - pos: -18.5,61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6482 + - uid: 6455 components: - pos: 56.5,36.5 parent: 2 type: Transform - - uid: 6483 + - uid: 6456 components: - pos: 28.5,45.5 parent: 2 type: Transform - - uid: 6484 + - uid: 6457 components: - pos: 27.5,45.5 parent: 2 type: Transform - - uid: 6485 + - uid: 6458 components: - pos: 26.5,45.5 parent: 2 type: Transform - - uid: 6486 + - uid: 6459 components: - pos: 25.5,45.5 parent: 2 type: Transform - - uid: 6487 + - uid: 6460 components: - pos: 24.5,45.5 parent: 2 type: Transform - - uid: 6488 + - uid: 6461 components: - pos: 23.5,45.5 parent: 2 type: Transform - - uid: 6489 + - uid: 6462 components: - pos: 22.5,45.5 parent: 2 type: Transform - - uid: 6490 + - uid: 6463 components: - pos: 21.5,45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6491 + - uid: 6464 components: - pos: -8.5,-76.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6492 + - uid: 6465 components: - pos: -8.5,-77.5 parent: 2 type: Transform - - uid: 6493 + - uid: 6466 components: - pos: -8.5,-78.5 parent: 2 type: Transform - - uid: 6494 + - uid: 6467 components: - pos: -8.5,-79.5 parent: 2 type: Transform - - uid: 6495 + - uid: 6468 components: - pos: -8.5,-80.5 parent: 2 type: Transform - - uid: 6496 + - uid: 6469 components: - pos: -8.5,-81.5 parent: 2 type: Transform - - uid: 6497 + - uid: 6470 components: - pos: -8.5,-82.5 parent: 2 type: Transform - - uid: 6498 + - uid: 6471 components: - pos: -8.5,-83.5 parent: 2 type: Transform - - uid: 6499 + - uid: 6472 components: - pos: -8.5,-84.5 parent: 2 type: Transform - - uid: 6500 + - uid: 6473 components: - pos: -8.5,-85.5 parent: 2 type: Transform - - uid: 6501 + - uid: 6474 components: - pos: -8.5,-86.5 parent: 2 type: Transform - - uid: 6502 + - uid: 6475 components: - pos: -7.5,-86.5 parent: 2 type: Transform - - uid: 6503 + - uid: 6476 components: - pos: -7.5,-87.5 parent: 2 type: Transform - - uid: 6504 + - uid: 6477 components: - pos: -7.5,-88.5 parent: 2 type: Transform - - uid: 6505 + - uid: 6478 components: - pos: -7.5,-89.5 parent: 2 type: Transform - - uid: 6506 + - uid: 6479 components: - pos: -7.5,-90.5 parent: 2 type: Transform - - uid: 6507 + - uid: 6480 components: - pos: -7.5,-91.5 parent: 2 type: Transform - - uid: 6508 + - uid: 6481 components: - pos: -7.5,-92.5 parent: 2 type: Transform - - uid: 6509 + - uid: 6482 components: - pos: -7.5,-93.5 parent: 2 type: Transform - - uid: 6510 + - uid: 6483 components: - pos: -7.5,-94.5 parent: 2 type: Transform - - uid: 6511 + - uid: 6484 components: - pos: -7.5,-95.5 parent: 2 type: Transform - - uid: 6512 + - uid: 6485 components: - pos: -7.5,-96.5 parent: 2 type: Transform - - uid: 6513 + - uid: 6486 components: - pos: -7.5,-97.5 parent: 2 type: Transform - - uid: 6514 + - uid: 6487 components: - pos: -8.5,-97.5 parent: 2 type: Transform - - uid: 6515 + - uid: 6488 components: - pos: -9.5,-97.5 parent: 2 type: Transform - - uid: 6516 + - uid: 6489 components: - pos: -10.5,-97.5 parent: 2 type: Transform - - uid: 6517 + - uid: 6490 components: - pos: -11.5,-97.5 parent: 2 type: Transform - - uid: 6518 + - uid: 6491 components: - pos: -12.5,-97.5 parent: 2 type: Transform - - uid: 6519 + - uid: 6492 components: - pos: -13.5,-97.5 parent: 2 type: Transform - - uid: 6520 + - uid: 6493 components: - pos: -14.5,-97.5 parent: 2 type: Transform - - uid: 6521 + - uid: 6494 components: - pos: -15.5,-97.5 parent: 2 type: Transform - - uid: 6522 + - uid: 6495 components: - pos: -16.5,-97.5 parent: 2 type: Transform - - uid: 6523 + - uid: 6496 components: - pos: -17.5,-97.5 parent: 2 type: Transform - - uid: 6524 + - uid: 6497 components: - pos: -18.5,-97.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6525 + - uid: 6498 components: - pos: -19.5,-97.5 parent: 2 type: Transform - - uid: 6526 + - uid: 6499 components: - pos: -20.5,-97.5 parent: 2 type: Transform - - uid: 6527 + - uid: 6500 components: - pos: -20.5,-96.5 parent: 2 type: Transform - - uid: 6528 + - uid: 6501 components: - pos: -20.5,-95.5 parent: 2 type: Transform - - uid: 6529 + - uid: 6502 components: - pos: -21.5,-95.5 parent: 2 type: Transform - - uid: 6530 + - uid: 6503 components: - pos: -22.5,-95.5 parent: 2 type: Transform - - uid: 6531 + - uid: 6504 components: - pos: -23.5,-95.5 parent: 2 type: Transform - - uid: 6532 + - uid: 6505 components: - pos: -24.5,-95.5 parent: 2 type: Transform - - uid: 6533 + - uid: 6506 components: - pos: -24.5,-96.5 parent: 2 type: Transform - - uid: 6534 + - uid: 6507 components: - pos: -24.5,-97.5 parent: 2 type: Transform - - uid: 6535 + - uid: 6508 components: - pos: -24.5,-98.5 parent: 2 type: Transform - - uid: 6536 + - uid: 6509 components: - pos: -24.5,-99.5 parent: 2 type: Transform - - uid: 6537 + - uid: 6510 components: - pos: -23.5,-99.5 parent: 2 type: Transform - - uid: 6538 + - uid: 6511 components: - pos: -22.5,-99.5 parent: 2 type: Transform - - uid: 6539 + - uid: 6512 components: - pos: -21.5,-99.5 parent: 2 type: Transform - - uid: 6540 + - uid: 6513 components: - pos: -20.5,-99.5 parent: 2 type: Transform - - uid: 6541 + - uid: 6514 components: - pos: -20.5,-98.5 parent: 2 type: Transform - - uid: 6542 + - uid: 6515 components: - pos: -15.5,-98.5 parent: 2 type: Transform - - uid: 6543 + - uid: 6516 components: - pos: -6.5,-97.5 parent: 2 type: Transform - - uid: 6544 + - uid: 6517 components: - pos: -5.5,-97.5 parent: 2 type: Transform - - uid: 6545 + - uid: 6518 components: - pos: -4.5,-97.5 parent: 2 type: Transform - - uid: 6546 + - uid: 6519 components: - pos: -7.5,-98.5 parent: 2 type: Transform - - uid: 6547 + - uid: 6520 components: - pos: -7.5,-99.5 parent: 2 type: Transform - - uid: 6548 + - uid: 6521 components: - pos: -7.5,-100.5 parent: 2 type: Transform - - uid: 6549 + - uid: 6522 components: - pos: -8.5,-95.5 parent: 2 type: Transform - - uid: 6550 + - uid: 6523 components: - pos: -43.5,-85.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6551 + - uid: 6524 components: - pos: -43.5,-86.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6552 + - uid: 6525 components: - pos: -43.5,-87.5 parent: 2 type: Transform - - uid: 6553 + - uid: 6526 components: - pos: -43.5,-88.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6554 + - uid: 6527 components: - pos: -43.5,-89.5 parent: 2 type: Transform - - uid: 6555 + - uid: 6528 components: - pos: -38.5,-85.5 parent: 2 type: Transform - - uid: 6556 + - uid: 6529 components: - pos: -39.5,-85.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6557 + - uid: 6530 components: - pos: -40.5,-85.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6558 + - uid: 6531 components: - pos: -40.5,-86.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6559 + - uid: 6532 components: - pos: -40.5,-87.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6560 + - uid: 6533 components: - pos: -40.5,-88.5 parent: 2 type: Transform - - uid: 6561 + - uid: 6534 components: - pos: -40.5,-89.5 parent: 2 type: Transform - - uid: 6562 + - uid: 6535 components: - pos: -40.5,-90.5 parent: 2 type: Transform - - uid: 6563 + - uid: 6536 components: - pos: -25.5,-97.5 parent: 2 type: Transform - - uid: 6564 + - uid: 6537 components: - pos: -26.5,-97.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6565 + - uid: 6538 components: - pos: -40.5,-91.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6566 + - uid: 6539 components: - pos: -43.5,-91.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6567 + - uid: 6540 components: - pos: -43.5,-92.5 parent: 2 type: Transform - - uid: 6568 + - uid: 6541 components: - pos: -42.5,-92.5 parent: 2 type: Transform - - uid: 6569 + - uid: 6542 components: - pos: -40.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6570 + - uid: 6543 components: - pos: -41.5,-92.5 parent: 2 type: Transform - - uid: 6571 + - uid: 6544 components: - pos: -41.5,-93.5 parent: 2 type: Transform - - uid: 6572 + - uid: 6545 components: - pos: -41.5,-94.5 parent: 2 type: Transform - - uid: 6573 + - uid: 6546 components: - pos: -41.5,-95.5 parent: 2 type: Transform - - uid: 6574 + - uid: 6547 components: - pos: -42.5,-95.5 parent: 2 type: Transform - - uid: 6575 + - uid: 6548 components: - pos: -43.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6576 + - uid: 6549 components: - pos: -43.5,-96.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6577 + - uid: 6550 components: - pos: -43.5,-97.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6578 + - uid: 6551 components: - pos: -42.5,-97.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6579 + - uid: 6552 components: - pos: -41.5,-97.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6580 + - uid: 6553 components: - pos: -40.5,-97.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6581 + - uid: 6554 components: - pos: -39.5,-97.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6582 + - uid: 6555 components: - pos: -38.5,-97.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6583 + - uid: 6556 components: - pos: -37.5,-97.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6584 + - uid: 6557 components: - pos: -36.5,-97.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6585 + - uid: 6558 components: - pos: -35.5,-97.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6586 + - uid: 6559 components: - pos: -40.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6587 + - uid: 6560 components: - pos: -39.5,-95.5 parent: 2 type: Transform - - uid: 6588 + - uid: 6561 components: - pos: -38.5,-95.5 parent: 2 type: Transform - - uid: 6589 + - uid: 6562 components: - pos: -37.5,-95.5 parent: 2 type: Transform - - uid: 6590 + - uid: 6563 components: - pos: -36.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6591 + - uid: 6564 components: - pos: -35.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6592 + - uid: 6565 components: - pos: -35.5,-96.5 parent: 2 type: Transform - - uid: 6593 + - uid: 6566 components: - pos: -34.5,-97.5 parent: 2 type: Transform - - uid: 6594 + - uid: 6567 components: - pos: -33.5,-97.5 parent: 2 type: Transform - - uid: 6595 + - uid: 6568 components: - pos: -32.5,-97.5 parent: 2 type: Transform - - uid: 6596 + - uid: 6569 components: - pos: -31.5,-97.5 parent: 2 type: Transform - - uid: 6597 + - uid: 6570 components: - pos: -30.5,-97.5 parent: 2 type: Transform - - uid: 6598 + - uid: 6571 components: - pos: -29.5,-97.5 parent: 2 type: Transform - - uid: 6599 + - uid: 6572 components: - pos: -28.5,-97.5 parent: 2 type: Transform - - uid: 6600 + - uid: 6573 components: - pos: -43.5,-90.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6601 + - uid: 6574 components: - pos: -35.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6602 + - uid: 6575 components: - pos: -35.5,-99.5 parent: 2 type: Transform - - uid: 6603 + - uid: 6576 components: - pos: -35.5,-100.5 parent: 2 type: Transform - - uid: 6604 + - uid: 6577 components: - pos: -35.5,-100.5 parent: 2 type: Transform - - uid: 6605 + - uid: 6578 components: - pos: -35.5,-99.5 parent: 2 type: Transform - - uid: 6606 + - uid: 6579 components: - pos: -35.5,-102.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6607 + - uid: 6580 components: - pos: -35.5,-103.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6608 + - uid: 6581 components: - pos: -35.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6609 + - uid: 6582 components: - pos: -35.5,-105.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6610 + - uid: 6583 components: - pos: -36.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6611 + - uid: 6584 components: - pos: 37.5,-48.5 parent: 2 type: Transform - - uid: 6612 + - uid: 6585 components: - pos: 36.5,-48.5 parent: 2 type: Transform - - uid: 6613 + - uid: 6586 components: - pos: 36.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6614 + - uid: 6587 components: - pos: 36.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6615 + - uid: 6588 components: - pos: -71.5,-31.5 parent: 2 type: Transform - - uid: 6616 + - uid: 6589 components: - pos: -72.5,-26.5 parent: 2 type: Transform - - uid: 6617 + - uid: 6590 components: - pos: -72.5,-27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6618 + - uid: 6591 components: - pos: -72.5,-28.5 parent: 2 type: Transform - - uid: 6619 + - uid: 6592 components: - pos: -72.5,-29.5 parent: 2 type: Transform - - uid: 6620 + - uid: 6593 components: - pos: -73.5,-31.5 parent: 2 type: Transform - - uid: 6621 + - uid: 6594 components: - pos: -72.5,-31.5 parent: 2 type: Transform - - uid: 6622 + - uid: 6595 components: - pos: -72.5,-32.5 parent: 2 type: Transform - - uid: 6623 + - uid: 6596 components: - pos: -72.5,-33.5 parent: 2 type: Transform - - uid: 6624 + - uid: 6597 components: - pos: -73.5,-30.5 parent: 2 type: Transform - - uid: 6625 + - uid: 6598 components: - pos: -73.5,-29.5 parent: 2 type: Transform - - uid: 6626 + - uid: 6599 components: - pos: 24.5,0.5 parent: 2 type: Transform - - uid: 6627 + - uid: 6600 components: - pos: 27.5,-1.5 parent: 2 type: Transform - - uid: 6628 + - uid: 6601 components: - pos: -12.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6629 + - uid: 6602 components: - pos: 62.5,-29.5 parent: 2 type: Transform - - uid: 6630 + - uid: 6603 components: - pos: 74.5,-45.5 parent: 2 type: Transform - - uid: 6631 + - uid: 6604 components: - pos: 75.5,-45.5 parent: 2 type: Transform - - uid: 6632 + - uid: 6605 components: - pos: 76.5,-45.5 parent: 2 type: Transform - - uid: 6633 + - uid: 6606 components: - pos: 74.5,-44.5 parent: 2 type: Transform - - uid: 6634 + - uid: 6607 components: - pos: 74.5,-43.5 parent: 2 type: Transform - - uid: 6635 + - uid: 6608 components: - pos: 74.5,-42.5 parent: 2 type: Transform - - uid: 6636 + - uid: 6609 components: - pos: 74.5,-41.5 parent: 2 type: Transform - - uid: 6637 + - uid: 6610 components: - pos: 74.5,-40.5 parent: 2 type: Transform - - uid: 6638 + - uid: 6611 components: - pos: 74.5,-39.5 parent: 2 type: Transform - - uid: 6639 + - uid: 6612 components: - pos: 74.5,-38.5 parent: 2 type: Transform - - uid: 6640 + - uid: 6613 components: - pos: 76.5,-46.5 parent: 2 type: Transform - - uid: 6641 + - uid: 6614 components: - pos: 76.5,-47.5 parent: 2 type: Transform - - uid: 6642 + - uid: 6615 components: - pos: 76.5,-48.5 parent: 2 type: Transform - - uid: 6643 + - uid: 6616 components: - pos: 76.5,-49.5 parent: 2 type: Transform - - uid: 6644 + - uid: 6617 components: - pos: 73.5,-48.5 parent: 2 type: Transform - - uid: 6645 + - uid: 6618 components: - pos: 74.5,-48.5 parent: 2 type: Transform - - uid: 6646 + - uid: 6619 components: - pos: 74.5,-47.5 parent: 2 type: Transform - - uid: 6647 + - uid: 6620 components: - pos: 75.5,-47.5 parent: 2 type: Transform - - uid: 6648 + - uid: 6621 components: - pos: 74.5,-37.5 parent: 2 type: Transform - - uid: 6649 + - uid: 6622 components: - pos: 75.5,-37.5 parent: 2 type: Transform - - uid: 6650 + - uid: 6623 components: - pos: 76.5,-37.5 parent: 2 type: Transform - - uid: 6651 + - uid: 6624 components: - pos: 77.5,-37.5 parent: 2 type: Transform - - uid: 6652 + - uid: 6625 components: - pos: 78.5,-37.5 parent: 2 type: Transform - - uid: 6653 + - uid: 6626 components: - pos: 78.5,-36.5 parent: 2 type: Transform - - uid: 6654 + - uid: 6627 components: - pos: 78.5,-35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6655 + - uid: 6628 components: - pos: 78.5,-34.5 parent: 2 type: Transform - - uid: 6656 + - uid: 6629 components: - pos: 78.5,-33.5 parent: 2 type: Transform - - uid: 6657 + - uid: 6630 components: - pos: 77.5,-33.5 parent: 2 type: Transform - - uid: 6658 + - uid: 6631 components: - pos: 76.5,-33.5 parent: 2 type: Transform - - uid: 6659 + - uid: 6632 components: - pos: 75.5,-33.5 parent: 2 type: Transform - - uid: 6660 + - uid: 6633 components: - pos: 74.5,-33.5 parent: 2 type: Transform - - uid: 6661 + - uid: 6634 components: - pos: 74.5,-32.5 parent: 2 type: Transform - - uid: 6662 + - uid: 6635 components: - pos: 73.5,-32.5 parent: 2 type: Transform - - uid: 6663 + - uid: 6636 components: - pos: 72.5,-32.5 parent: 2 type: Transform - - uid: 6664 + - uid: 6637 components: - pos: 71.5,-32.5 parent: 2 type: Transform - - uid: 6665 + - uid: 6638 components: - pos: 70.5,-32.5 parent: 2 type: Transform - - uid: 6666 + - uid: 6639 components: - pos: 70.5,-33.5 parent: 2 type: Transform - - uid: 6667 + - uid: 6640 components: - pos: 70.5,-34.5 parent: 2 type: Transform - - uid: 6668 + - uid: 6641 components: - pos: 70.5,-35.5 parent: 2 type: Transform - - uid: 6669 + - uid: 6642 components: - pos: 70.5,-36.5 parent: 2 type: Transform - - uid: 6670 + - uid: 6643 components: - pos: 71.5,-36.5 parent: 2 type: Transform - - uid: 6671 + - uid: 6644 components: - pos: 72.5,-37.5 parent: 2 type: Transform - - uid: 6672 + - uid: 6645 components: - pos: 73.5,-37.5 parent: 2 type: Transform - - uid: 6673 + - uid: 6646 components: - pos: 73.5,-36.5 parent: 2 type: Transform - - uid: 6674 + - uid: 6647 components: - pos: 73.5,-35.5 parent: 2 type: Transform - - uid: 6675 + - uid: 6648 components: - pos: 69.5,-33.5 parent: 2 type: Transform - - uid: 6676 + - uid: 6649 components: - pos: 68.5,-33.5 parent: 2 type: Transform - - uid: 6677 + - uid: 6650 components: - pos: 67.5,-33.5 parent: 2 type: Transform - - uid: 6678 + - uid: 6651 components: - pos: 66.5,-33.5 parent: 2 type: Transform - - uid: 6679 + - uid: 6652 components: - pos: 65.5,-33.5 parent: 2 type: Transform - - uid: 6680 + - uid: 6653 components: - pos: 62.5,-30.5 parent: 2 type: Transform - - uid: 6681 + - uid: 6654 components: - pos: 65.5,-32.5 parent: 2 type: Transform - - uid: 6682 + - uid: 6655 components: - pos: -21.5,-61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6683 + - uid: 6656 components: - pos: -16.5,-15.5 parent: 2 type: Transform - - uid: 6684 + - uid: 6657 components: - pos: 70.5,-37.5 parent: 2 type: Transform - - uid: 6685 + - uid: 6658 components: - pos: 69.5,-37.5 parent: 2 type: Transform - - uid: 6686 + - uid: 6659 components: - pos: 68.5,-37.5 parent: 2 type: Transform - - uid: 6687 + - uid: 6660 components: - pos: 67.5,-37.5 parent: 2 type: Transform - - uid: 6688 + - uid: 6661 components: - pos: 67.5,-38.5 parent: 2 type: Transform - - uid: 6689 + - uid: 6662 components: - pos: 54.5,10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6690 + - uid: 6663 components: - pos: -71.5,-29.5 parent: 2 type: Transform - - uid: 6691 + - uid: 6664 components: - pos: -55.5,-62.5 parent: 2 type: Transform - - uid: 6692 + - uid: 6665 components: - pos: -54.5,-62.5 parent: 2 type: Transform - - uid: 6693 + - uid: 6666 components: - pos: -53.5,-62.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6694 + - uid: 6667 components: - pos: -54.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6695 + - uid: 6668 components: - pos: -53.5,-58.5 parent: 2 type: Transform - - uid: 6696 + - uid: 6669 components: - pos: -52.5,-58.5 parent: 2 type: Transform - - uid: 6697 + - uid: 6670 components: - pos: -51.5,-58.5 parent: 2 type: Transform - - uid: 6698 + - uid: 6671 components: - pos: -56.5,-61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6699 + - uid: 6672 components: - pos: -54.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6700 + - uid: 6673 components: - pos: 72.5,-31.5 parent: 2 type: Transform - - uid: 6701 + - uid: 6674 components: - pos: 72.5,-30.5 parent: 2 type: Transform - - uid: 6702 + - uid: 6675 components: - pos: 72.5,-29.5 parent: 2 type: Transform - - uid: 6703 + - uid: 6676 components: - pos: 72.5,-28.5 parent: 2 type: Transform - - uid: 6704 + - uid: 6677 components: - pos: -53.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6705 + - uid: 6678 components: - pos: 56.5,34.5 parent: 2 type: Transform - - uid: 6706 + - uid: 6679 components: - pos: -71.5,-30.5 parent: 2 type: Transform - - uid: 6707 + - uid: 6680 components: - pos: 6.5,-42.5 parent: 2 type: Transform - - uid: 6708 + - uid: 6681 components: - pos: 7.5,-42.5 parent: 2 type: Transform - - uid: 6709 + - uid: 6682 components: - pos: 9.5,-40.5 parent: 2 type: Transform - - uid: 6710 + - uid: 6683 components: - pos: 9.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6711 + - uid: 6684 components: - pos: 8.5,-39.5 parent: 2 type: Transform - - uid: 6712 + - uid: 6685 components: - pos: 8.5,-38.5 parent: 2 type: Transform - - uid: 6713 + - uid: 6686 components: - pos: 8.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6714 + - uid: 6687 components: - pos: 8.5,-36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6715 + - uid: 6688 components: - pos: 8.5,-35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6716 + - uid: 6689 components: - pos: 8.5,-34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6717 + - uid: 6690 components: - pos: 8.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6718 + - uid: 6691 components: - pos: 8.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6719 + - uid: 6692 components: - pos: 8.5,-31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6720 + - uid: 6693 components: - pos: 8.5,-30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6721 + - uid: 6694 components: - pos: 8.5,-29.5 parent: 2 type: Transform - - uid: 6722 + - uid: 6695 components: - pos: 9.5,-29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6723 + - uid: 6696 components: - pos: 10.5,-29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6724 + - uid: 6697 components: - pos: 11.5,-29.5 parent: 2 type: Transform - - uid: 6725 + - uid: 6698 components: - pos: 7.5,-36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6726 + - uid: 6699 components: - pos: 6.5,-36.5 parent: 2 type: Transform - - uid: 6727 + - uid: 6700 components: - pos: 6.5,-35.5 parent: 2 type: Transform - - uid: 6728 + - uid: 6701 components: - pos: 6.5,-34.5 parent: 2 type: Transform - - uid: 6729 + - uid: 6702 components: - pos: 6.5,-33.5 parent: 2 type: Transform - - uid: 6730 + - uid: 6703 components: - pos: 6.5,-32.5 parent: 2 type: Transform - - uid: 6731 + - uid: 6704 components: - pos: 6.5,-31.5 parent: 2 type: Transform - - uid: 6732 + - uid: 6705 components: - pos: 5.5,-31.5 parent: 2 type: Transform - - uid: 6733 + - uid: 6706 components: - pos: 4.5,-31.5 parent: 2 type: Transform - - uid: 6734 + - uid: 6707 components: - pos: 3.5,-31.5 parent: 2 type: Transform - - uid: 6735 + - uid: 6708 components: - pos: 2.5,-31.5 parent: 2 type: Transform - - uid: 6736 + - uid: 6709 components: - pos: 4.5,-32.5 parent: 2 type: Transform - - uid: 6737 + - uid: 6710 components: - pos: 4.5,-33.5 parent: 2 type: Transform - - uid: 6738 + - uid: 6711 components: - pos: 55.5,-62.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6739 + - uid: 6712 components: - pos: 6.5,-30.5 parent: 2 type: Transform - - uid: 6740 + - uid: 6713 components: - pos: 54.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6741 + - uid: 6714 components: - pos: 53.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6742 + - uid: 6715 components: - pos: 52.5,-32.5 parent: 2 type: Transform - - uid: 6743 + - uid: 6716 components: - pos: 55.5,-31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6744 + - uid: 6717 components: - pos: 55.5,-30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6745 + - uid: 6718 components: - pos: 55.5,-29.5 parent: 2 type: Transform - - uid: 6746 + - uid: 6719 components: - pos: 55.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6747 + - uid: 6720 components: - pos: 55.5,-27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6748 + - uid: 6721 components: - pos: 55.5,-26.5 parent: 2 type: Transform - - uid: 6749 + - uid: 6722 components: - pos: 61.5,-26.5 parent: 2 type: Transform - - uid: 6750 + - uid: 6723 components: - pos: 60.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6751 + - uid: 6724 components: - pos: 59.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6752 + - uid: 6725 components: - pos: 58.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6753 + - uid: 6726 components: - pos: 57.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6754 + - uid: 6727 components: - pos: 57.5,-27.5 parent: 2 type: Transform - - uid: 6755 + - uid: 6728 components: - pos: 57.5,-28.5 parent: 2 type: Transform - - uid: 6756 + - uid: 6729 components: - pos: 58.5,-28.5 parent: 2 type: Transform - - uid: 6757 + - uid: 6730 components: - pos: 58.5,-29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6758 + - uid: 6731 components: - pos: 55.5,-35.5 parent: 2 type: Transform - - uid: 6759 + - uid: 6732 components: - pos: 54.5,-35.5 parent: 2 type: Transform - - uid: 6760 + - uid: 6733 components: - pos: 54.5,-36.5 parent: 2 type: Transform - - uid: 6761 + - uid: 6734 components: - pos: 54.5,-37.5 parent: 2 type: Transform - - uid: 6762 + - uid: 6735 components: - pos: 55.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6763 + - uid: 6736 components: - pos: 55.5,-38.5 parent: 2 type: Transform - - uid: 6764 + - uid: 6737 components: - pos: 55.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6765 + - uid: 6738 components: - pos: 57.5,-38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6766 + - uid: 6739 components: - pos: 58.5,-38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6767 + - uid: 6740 components: - pos: 59.5,-38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6768 + - uid: 6741 components: - pos: 59.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6769 + - uid: 6742 components: - pos: 59.5,-40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6770 + - uid: 6743 components: - pos: 59.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6771 + - uid: 6744 components: - pos: 59.5,-42.5 parent: 2 type: Transform - - uid: 6772 + - uid: 6745 components: - pos: 59.5,-43.5 parent: 2 type: Transform - - uid: 6773 + - uid: 6746 components: - pos: 36.5,-33.5 parent: 2 type: Transform - - uid: 6774 + - uid: 6747 components: - pos: 37.5,-33.5 parent: 2 type: Transform - - uid: 6775 + - uid: 6748 components: - pos: 38.5,-33.5 parent: 2 type: Transform - - uid: 6776 + - uid: 6749 components: - pos: 39.5,-33.5 parent: 2 type: Transform - - uid: 6777 + - uid: 6750 components: - pos: 40.5,-33.5 parent: 2 type: Transform - - uid: 6778 + - uid: 6751 components: - pos: 41.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6779 + - uid: 6752 components: - pos: 42.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6780 + - uid: 6753 components: - pos: 43.5,-33.5 parent: 2 type: Transform - - uid: 6781 + - uid: 6754 components: - pos: 44.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6782 + - uid: 6755 components: - pos: 45.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6783 + - uid: 6756 components: - pos: 46.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6784 + - uid: 6757 components: - pos: 47.5,-33.5 parent: 2 type: Transform - - uid: 6785 + - uid: 6758 components: - pos: 48.5,-33.5 parent: 2 type: Transform - - uid: 6786 + - uid: 6759 components: - pos: 49.5,-33.5 parent: 2 type: Transform - - uid: 6787 + - uid: 6760 components: - pos: 49.5,-34.5 parent: 2 type: Transform - - uid: 6788 + - uid: 6761 components: - pos: 50.5,-34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6789 + - uid: 6762 components: - pos: 51.5,-34.5 parent: 2 type: Transform - - uid: 6790 + - uid: 6763 components: - pos: 55.5,-64.5 parent: 2 type: Transform - - uid: 6791 + - uid: 6764 components: - pos: 55.5,-65.5 parent: 2 type: Transform - - uid: 6792 + - uid: 6765 components: - pos: 54.5,-65.5 parent: 2 type: Transform - - uid: 6793 + - uid: 6766 components: - pos: 53.5,-65.5 parent: 2 type: Transform - - uid: 6794 + - uid: 6767 components: - pos: 52.5,-65.5 parent: 2 type: Transform - - uid: 6795 + - uid: 6768 components: - pos: 51.5,-65.5 parent: 2 type: Transform - - uid: 6796 + - uid: 6769 components: - pos: 50.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6797 + - uid: 6770 components: - pos: 49.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6798 + - uid: 6771 components: - pos: 48.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6799 + - uid: 6772 components: - pos: 47.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6800 + - uid: 6773 components: - pos: 46.5,-65.5 parent: 2 type: Transform - - uid: 6801 + - uid: 6774 components: - pos: 45.5,-65.5 parent: 2 type: Transform - - uid: 6802 + - uid: 6775 components: - pos: 45.5,-64.5 parent: 2 type: Transform - - uid: 6803 + - uid: 6776 components: - pos: 44.5,-64.5 parent: 2 type: Transform - - uid: 6804 + - uid: 6777 components: - pos: 43.5,-64.5 parent: 2 type: Transform - - uid: 6805 + - uid: 6778 components: - pos: 45.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6806 + - uid: 6779 components: - pos: 43.5,-63.5 parent: 2 type: Transform - - uid: 6807 + - uid: 6780 components: - pos: 56.5,-65.5 parent: 2 type: Transform - - uid: 6808 + - uid: 6781 components: - pos: 57.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6809 + - uid: 6782 components: - pos: 58.5,-65.5 parent: 2 type: Transform - - uid: 6810 + - uid: 6783 components: - pos: 59.5,-65.5 parent: 2 type: Transform - - uid: 6811 + - uid: 6784 components: - pos: 60.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6812 + - uid: 6785 components: - pos: 61.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6813 + - uid: 6786 components: - pos: 61.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6814 + - uid: 6787 components: - pos: 61.5,-67.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6815 + - uid: 6788 components: - pos: 61.5,-68.5 parent: 2 type: Transform - - uid: 6816 + - uid: 6789 components: - pos: 62.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6817 + - uid: 6790 components: - pos: 63.5,-65.5 parent: 2 type: Transform - - uid: 6818 + - uid: 6791 components: - pos: 64.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6819 + - uid: 6792 components: - pos: 65.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6820 + - uid: 6793 components: - pos: 66.5,-65.5 parent: 2 type: Transform - - uid: 6821 + - uid: 6794 components: - pos: 61.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6822 + - uid: 6795 components: - pos: 61.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6823 + - uid: 6796 components: - pos: 61.5,-62.5 parent: 2 type: Transform - - uid: 6824 + - uid: 6797 components: - pos: 62.5,-62.5 parent: 2 type: Transform - - uid: 6825 + - uid: 6798 components: - pos: 60.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6826 + - uid: 6799 components: - pos: 59.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6827 + - uid: 6800 components: - pos: 57.5,-34.5 parent: 2 type: Transform - - uid: 6828 + - uid: 6801 components: - pos: 67.5,-65.5 parent: 2 type: Transform - - uid: 6829 + - uid: 6802 components: - pos: 68.5,-65.5 parent: 2 type: Transform - - uid: 6830 + - uid: 6803 components: - pos: 68.5,-66.5 parent: 2 type: Transform - - uid: 6831 + - uid: 6804 components: - pos: 68.5,-67.5 parent: 2 type: Transform - - uid: 6832 + - uid: 6805 components: - pos: 68.5,-68.5 parent: 2 type: Transform - - uid: 6833 + - uid: 6806 components: - pos: 68.5,-69.5 parent: 2 type: Transform - - uid: 6834 + - uid: 6807 components: - pos: 68.5,-70.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6835 + - uid: 6808 components: - pos: 68.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6836 + - uid: 6809 components: - pos: 69.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6837 + - uid: 6810 components: - pos: 70.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6838 + - uid: 6811 components: - pos: 71.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6839 + - uid: 6812 components: - pos: 72.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6840 + - uid: 6813 components: - pos: 72.5,-70.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6841 + - uid: 6814 components: - pos: 72.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6842 + - uid: 6815 components: - pos: 73.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6843 + - uid: 6816 components: - pos: 74.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6844 + - uid: 6817 components: - pos: 74.5,-68.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6845 + - uid: 6818 components: - pos: 74.5,-67.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6846 + - uid: 6819 components: - pos: 74.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6847 + - uid: 6820 components: - pos: 74.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6848 + - uid: 6821 components: - pos: 74.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6849 + - uid: 6822 components: - pos: 74.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6850 + - uid: 6823 components: - pos: 68.5,-64.5 parent: 2 type: Transform - - uid: 6851 + - uid: 6824 components: - pos: 68.5,-63.5 parent: 2 type: Transform - - uid: 6852 + - uid: 6825 components: - pos: 68.5,-62.5 parent: 2 type: Transform - - uid: 6853 + - uid: 6826 components: - pos: 68.5,-61.5 parent: 2 type: Transform - - uid: 6854 + - uid: 6827 components: - pos: 69.5,-61.5 parent: 2 type: Transform - - uid: 6855 + - uid: 6828 components: - pos: 70.5,-61.5 parent: 2 type: Transform - - uid: 6856 + - uid: 6829 components: - pos: 71.5,-61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6857 + - uid: 6830 components: - pos: 71.5,-60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6858 + - uid: 6831 components: - pos: 71.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6859 + - uid: 6832 components: - pos: 71.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6860 + - uid: 6833 components: - pos: 71.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6861 + - uid: 6834 components: - pos: 72.5,-57.5 parent: 2 type: Transform - - uid: 6862 + - uid: 6835 components: - pos: 73.5,-57.5 parent: 2 type: Transform - - uid: 6863 + - uid: 6836 components: - pos: 74.5,-57.5 parent: 2 type: Transform - - uid: 6864 + - uid: 6837 components: - pos: 74.5,-56.5 parent: 2 type: Transform - - uid: 6865 + - uid: 6838 components: - pos: 74.5,-55.5 parent: 2 type: Transform - - uid: 6866 + - uid: 6839 components: - pos: 75.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6867 + - uid: 6840 components: - pos: 75.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6868 + - uid: 6841 components: - pos: 75.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6869 + - uid: 6842 components: - pos: 75.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6870 + - uid: 6843 components: - pos: 56.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6871 + - uid: 6844 components: - pos: 57.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6872 + - uid: 6845 components: - pos: 55.5,-66.5 parent: 2 type: Transform - - uid: 6873 + - uid: 6846 components: - pos: 71.5,-44.5 parent: 2 type: Transform - - uid: 6874 + - uid: 6847 components: - pos: 71.5,-43.5 parent: 2 type: Transform - - uid: 6875 + - uid: 6848 components: - pos: 71.5,-42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6876 + - uid: 6849 components: - pos: 61.5,-48.5 parent: 2 type: Transform - - uid: 6877 + - uid: 6850 components: - pos: 60.5,-48.5 parent: 2 type: Transform - - uid: 6878 + - uid: 6851 components: - pos: 59.5,-48.5 parent: 2 type: Transform - - uid: 6879 + - uid: 6852 components: - pos: 58.5,-48.5 parent: 2 type: Transform - - uid: 6880 + - uid: 6853 components: - pos: 57.5,-48.5 parent: 2 type: Transform - - uid: 6881 + - uid: 6854 components: - pos: 56.5,-48.5 parent: 2 type: Transform - - uid: 6882 + - uid: 6855 components: - pos: 55.5,-48.5 parent: 2 type: Transform - - uid: 6883 + - uid: 6856 components: - pos: 54.5,-48.5 parent: 2 type: Transform - - uid: 6884 + - uid: 6857 components: - pos: 43.5,-39.5 parent: 2 type: Transform - - uid: 6885 + - uid: 6858 components: - pos: 43.5,-40.5 parent: 2 type: Transform - - uid: 6886 + - uid: 6859 components: - pos: 43.5,-41.5 parent: 2 type: Transform - - uid: 6887 + - uid: 6860 components: - pos: 19.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6889 + - uid: 6861 components: - pos: 16.5,10.5 parent: 2 type: Transform - - uid: 6890 + - uid: 6862 components: - pos: 16.5,9.5 parent: 2 type: Transform - - uid: 6891 + - uid: 6863 components: - pos: 43.5,10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6892 + - uid: 6864 components: - pos: 47.5,5.5 parent: 2 type: Transform - - uid: 6893 + - uid: 6865 components: - pos: 58.5,6.5 parent: 2 type: Transform - - uid: 6894 + - uid: 6866 components: - pos: 59.5,6.5 parent: 2 type: Transform - - uid: 6895 + - uid: 6867 components: - pos: 12.5,-84.5 parent: 2 type: Transform - - uid: 6896 + - uid: 6868 components: - pos: 12.5,-82.5 parent: 2 type: Transform - - uid: 6897 + - uid: 6869 components: - pos: -15.5,24.5 parent: 2 type: Transform - - uid: 6898 + - uid: 6870 components: - pos: 48.5,-92.5 parent: 2 type: Transform - - uid: 6899 + - uid: 6871 components: - pos: 48.5,-93.5 parent: 2 type: Transform - - uid: 6900 + - uid: 6872 components: - pos: 48.5,-76.5 parent: 2 type: Transform - - uid: 6901 + - uid: 6873 components: - pos: 46.5,-89.5 parent: 2 type: Transform - - uid: 6902 + - uid: 6874 components: - pos: 47.5,-89.5 parent: 2 type: Transform - - uid: 6903 + - uid: 6875 components: - pos: 43.5,9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6904 + - uid: 6876 components: - pos: 43.5,8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6905 + - uid: 6877 components: - pos: 43.5,7.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6906 + - uid: 6878 components: - pos: -11.5,-18.5 parent: 2 type: Transform - - uid: 6907 + - uid: 6879 components: - pos: -11.5,-17.5 parent: 2 type: Transform - - uid: 6908 + - uid: 6880 components: - pos: -11.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6909 + - uid: 6881 components: - pos: -11.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6910 + - uid: 6882 components: - pos: -11.5,-14.5 parent: 2 type: Transform - - uid: 6911 + - uid: 6883 components: - pos: -11.5,-13.5 parent: 2 type: Transform - - uid: 6912 + - uid: 6884 components: - pos: -11.5,-12.5 parent: 2 type: Transform - - uid: 6913 + - uid: 6885 components: - pos: -11.5,-11.5 parent: 2 type: Transform - - uid: 6914 + - uid: 6886 components: - pos: -11.5,-10.5 parent: 2 type: Transform - - uid: 6915 + - uid: 6887 components: - pos: -12.5,-10.5 parent: 2 type: Transform - - uid: 6916 + - uid: 6888 components: - pos: -13.5,-10.5 parent: 2 type: Transform - - uid: 6917 + - uid: 6889 components: - pos: -14.5,-10.5 parent: 2 type: Transform - - uid: 6918 + - uid: 6890 components: - pos: -13.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6919 + - uid: 6891 components: - pos: -14.5,-14.5 parent: 2 type: Transform - - uid: 6920 + - uid: 6892 components: - pos: -15.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6921 + - uid: 6893 components: - pos: -16.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6922 + - uid: 6894 components: - pos: -10.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6923 + - uid: 6895 components: - pos: -9.5,-14.5 parent: 2 type: Transform - - uid: 6924 + - uid: 6896 components: - pos: -8.5,-14.5 parent: 2 type: Transform - - uid: 6925 + - uid: 6897 components: - pos: -8.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6926 + - uid: 6898 components: - pos: -7.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6927 + - uid: 6899 components: - pos: -7.5,-12.5 parent: 2 type: Transform - - uid: 6928 + - uid: 6900 components: - pos: -7.5,-11.5 parent: 2 type: Transform - - uid: 6929 + - uid: 6901 components: - pos: -7.5,-10.5 parent: 2 type: Transform - - uid: 6930 + - uid: 6902 components: - pos: -8.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6931 + - uid: 6903 components: - pos: -7.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6932 + - uid: 6904 components: - pos: -9.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6933 + - uid: 6905 components: - pos: -10.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6934 + - uid: 6906 components: - pos: -11.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6935 + - uid: 6907 components: - pos: -12.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6936 + - uid: 6908 components: - pos: -13.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6937 + - uid: 6909 components: - pos: -14.5,-9.5 parent: 2 type: Transform - - uid: 6938 + - uid: 6910 components: - pos: -15.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6939 + - uid: 6911 components: - pos: -42.5,17.5 parent: 2 type: Transform - - uid: 6940 + - uid: 6912 components: - pos: -5.5,-19.5 parent: 2 type: Transform - - uid: 6941 + - uid: 6913 components: - pos: -6.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6942 + - uid: 6914 components: - pos: -7.5,-19.5 parent: 2 type: Transform - - uid: 6943 + - uid: 6915 components: - pos: 18.5,-82.5 parent: 2 type: Transform - - uid: 6944 + - uid: 6916 components: - pos: 18.5,-84.5 parent: 2 type: Transform - - uid: 6945 + - uid: 6917 components: - pos: 18.5,-85.5 parent: 2 type: Transform - - uid: 6946 + - uid: 6918 components: - pos: 12.5,-83.5 parent: 2 type: Transform - - uid: 6947 + - uid: 6919 components: - pos: 4.5,-49.5 parent: 2 type: Transform - - uid: 6948 + - uid: 6920 components: - pos: 6.5,-49.5 parent: 2 type: Transform - - uid: 6949 + - uid: 6921 components: - pos: -8.5,-67.5 parent: 2 type: Transform - - uid: 6950 + - uid: 6922 components: - pos: -8.5,-68.5 parent: 2 type: Transform - - uid: 6951 + - uid: 6923 components: - pos: -8.5,-69.5 parent: 2 type: Transform - - uid: 6952 + - uid: 6924 components: - pos: -19.5,-60.5 parent: 2 type: Transform - - uid: 6953 + - uid: 6925 components: - pos: -20.5,-60.5 parent: 2 type: Transform - - uid: 6954 + - uid: 6926 components: - pos: -21.5,-60.5 parent: 2 type: Transform - - uid: 6955 + - uid: 6927 components: - pos: -22.5,-60.5 parent: 2 type: Transform - - uid: 6956 + - uid: 6928 components: - pos: -23.5,-60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6957 + - uid: 6929 components: - pos: -24.5,-60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6958 + - uid: 6930 components: - pos: -25.5,-60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6959 + - uid: 6931 components: - pos: -24.5,-59.5 parent: 2 type: Transform - - uid: 6960 + - uid: 6932 components: - pos: -24.5,-58.5 parent: 2 type: Transform - - uid: 6961 + - uid: 6933 components: - pos: -24.5,-57.5 parent: 2 type: Transform - - uid: 6962 + - uid: 6934 components: - pos: -24.5,-61.5 parent: 2 type: Transform - - uid: 6963 + - uid: 6935 components: - pos: -24.5,-62.5 parent: 2 type: Transform - - uid: 6964 + - uid: 6936 components: - pos: 30.5,-22.5 parent: 2 type: Transform - - uid: 6965 + - uid: 6937 components: - pos: 31.5,-22.5 parent: 2 type: Transform - - uid: 6966 + - uid: 6938 components: - pos: 31.5,-21.5 parent: 2 type: Transform - - uid: 6967 + - uid: 6939 components: - pos: 19.5,-22.5 parent: 2 type: Transform - - uid: 6968 + - uid: 6940 components: - pos: 19.5,-21.5 parent: 2 type: Transform - - uid: 6969 + - uid: 6941 components: - pos: -31.5,-10.5 parent: 2 type: Transform - - uid: 6970 + - uid: 6942 components: - pos: -49.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6971 + - uid: 6943 components: - pos: -47.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6972 + - uid: 6944 components: - pos: -48.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6973 + - uid: 6945 components: - pos: -47.5,-34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6974 + - uid: 6946 components: - pos: -47.5,-38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6975 + - uid: 6947 components: - pos: -47.5,-35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6976 + - uid: 6948 components: - pos: -47.5,-36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6977 + - uid: 6949 components: - pos: -47.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6978 + - uid: 6950 components: - pos: -50.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6979 + - uid: 6951 components: - pos: -51.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6980 + - uid: 6952 components: - pos: -51.5,-34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6981 + - uid: 6953 components: - pos: -51.5,-35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6982 + - uid: 6954 components: - pos: -51.5,-36.5 parent: 2 type: Transform - - uid: 6983 + - uid: 6955 components: - pos: -51.5,-37.5 parent: 2 type: Transform - - uid: 6984 + - uid: 6956 components: - pos: -51.5,-38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6985 + - uid: 6957 components: - pos: -51.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6986 + - uid: 6958 components: - pos: 54.5,-34.5 parent: 2 type: Transform - - uid: 6987 + - uid: 6959 components: - pos: 30.5,-88.5 parent: 2 type: Transform - - uid: 6988 + - uid: 6960 components: - pos: 30.5,-77.5 parent: 2 type: Transform - - uid: 6989 + - uid: 6961 components: - pos: 30.5,-80.5 parent: 2 type: Transform - - uid: 6990 + - uid: 6962 components: - pos: 30.5,-81.5 parent: 2 type: Transform - - uid: 6991 + - uid: 6963 components: - pos: 30.5,-84.5 parent: 2 type: Transform - - uid: 6992 + - uid: 6964 components: - pos: 30.5,-85.5 parent: 2 type: Transform - - uid: 6993 + - uid: 6965 components: - pos: 48.5,-90.5 parent: 2 type: Transform - - uid: 6994 + - uid: 6966 components: - pos: 31.5,-82.5 parent: 2 type: Transform - - uid: 6995 + - uid: 6967 components: - pos: 48.5,-74.5 parent: 2 type: Transform - - uid: 6996 + - uid: 6968 components: - pos: 48.5,-75.5 parent: 2 type: Transform - - uid: 6997 + - uid: 6969 components: - pos: 30.5,-91.5 parent: 2 type: Transform - - uid: 6998 + - uid: 6970 components: - pos: 27.5,-81.5 parent: 2 type: Transform - - uid: 6999 + - uid: 6971 components: - pos: 32.5,-82.5 parent: 2 type: Transform - - uid: 7000 + - uid: 6972 components: - pos: 30.5,-79.5 parent: 2 type: Transform - - uid: 7001 + - uid: 6973 components: - pos: 30.5,-92.5 parent: 2 type: Transform - - uid: 7002 + - uid: 6974 components: - pos: 16.5,-81.5 parent: 2 type: Transform - - uid: 7003 + - uid: 6975 components: - pos: 15.5,-81.5 parent: 2 type: Transform - - uid: 7004 + - uid: 6976 components: - pos: 18.5,-86.5 parent: 2 type: Transform - - uid: 7005 + - uid: 6977 components: - pos: 13.5,-81.5 parent: 2 type: Transform - - uid: 7006 + - uid: 6978 components: - pos: 30.5,-86.5 parent: 2 type: Transform - - uid: 7007 + - uid: 6979 components: - pos: 30.5,-87.5 parent: 2 type: Transform - - uid: 7008 + - uid: 6980 components: - pos: 30.5,-82.5 parent: 2 type: Transform - - uid: 7009 + - uid: 6981 components: - pos: 30.5,-83.5 parent: 2 type: Transform - - uid: 7010 + - uid: 6982 components: - pos: 27.5,-82.5 parent: 2 type: Transform - - uid: 7011 + - uid: 6983 components: - pos: 30.5,-93.5 parent: 2 type: Transform - - uid: 7012 + - uid: 6984 components: - pos: 31.5,-89.5 parent: 2 type: Transform - - uid: 7013 + - uid: 6985 components: - pos: 32.5,-89.5 parent: 2 type: Transform - - uid: 7014 + - uid: 6986 components: - pos: 26.5,-83.5 parent: 2 type: Transform - - uid: 7015 + - uid: 6987 components: - pos: 25.5,-83.5 parent: 2 type: Transform - - uid: 7016 + - uid: 6988 components: - pos: 24.5,-83.5 parent: 2 type: Transform - - uid: 7017 + - uid: 6989 components: - pos: 29.5,-83.5 parent: 2 type: Transform - - uid: 7018 + - uid: 6990 components: - pos: 12.5,-85.5 parent: 2 type: Transform - - uid: 7019 + - uid: 6991 components: - pos: 28.5,-83.5 parent: 2 type: Transform - - uid: 7020 + - uid: 6992 components: - pos: 27.5,-83.5 parent: 2 type: Transform - - uid: 7021 + - uid: 6993 components: - pos: 49.5,-72.5 parent: 2 type: Transform - - uid: 7022 + - uid: 6994 components: - pos: 46.5,-72.5 parent: 2 type: Transform - - uid: 7023 + - uid: 6995 components: - pos: 47.5,-72.5 parent: 2 type: Transform - - uid: 7024 + - uid: 6996 components: - pos: 48.5,-88.5 parent: 2 type: Transform - - uid: 7025 + - uid: 6997 components: - pos: 48.5,-87.5 parent: 2 type: Transform - - uid: 7026 + - uid: 6998 components: - pos: 48.5,-86.5 parent: 2 type: Transform - - uid: 7027 + - uid: 6999 components: - pos: 48.5,-85.5 parent: 2 type: Transform - - uid: 7028 + - uid: 7000 components: - pos: 48.5,-84.5 parent: 2 type: Transform - - uid: 7029 + - uid: 7001 components: - pos: 48.5,-83.5 parent: 2 type: Transform - - uid: 7030 + - uid: 7002 components: - pos: 48.5,-82.5 parent: 2 type: Transform - - uid: 7031 + - uid: 7003 components: - pos: 48.5,-81.5 parent: 2 type: Transform - - uid: 7032 + - uid: 7004 components: - pos: 48.5,-80.5 parent: 2 type: Transform - - uid: 7033 + - uid: 7005 components: - pos: 48.5,-79.5 parent: 2 type: Transform - - uid: 7034 + - uid: 7006 components: - pos: 48.5,-78.5 parent: 2 type: Transform - - uid: 7035 + - uid: 7007 components: - pos: 48.5,-77.5 parent: 2 type: Transform - - uid: 7036 + - uid: 7008 components: - pos: 43.5,-74.5 parent: 2 type: Transform - - uid: 7037 + - uid: 7009 components: - pos: 43.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7038 + - uid: 7010 components: - pos: 26.5,-84.5 parent: 2 type: Transform - - uid: 7039 + - uid: 7011 components: - pos: 26.5,-85.5 parent: 2 type: Transform - - uid: 7040 + - uid: 7012 components: - pos: 11.5,-18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7041 + - uid: 7013 components: - pos: 11.5,-19.5 parent: 2 type: Transform - - uid: 7042 + - uid: 7014 components: - pos: 11.5,-20.5 parent: 2 type: Transform - - uid: 7043 + - uid: 7015 components: - pos: 11.5,-21.5 parent: 2 type: Transform - - uid: 7044 + - uid: 7016 components: - pos: 10.5,-21.5 parent: 2 type: Transform - - uid: 7045 + - uid: 7017 components: - pos: 9.5,-21.5 parent: 2 type: Transform - - uid: 7046 + - uid: 7018 components: - pos: 8.5,-21.5 parent: 2 type: Transform - - uid: 7047 + - uid: 7019 components: - pos: 7.5,-21.5 parent: 2 type: Transform - - uid: 7048 + - uid: 7020 components: - pos: 7.5,-22.5 parent: 2 type: Transform - - uid: 7049 + - uid: 7021 components: - pos: 7.5,-23.5 parent: 2 type: Transform - - uid: 7050 + - uid: 7022 components: - pos: 8.5,-23.5 parent: 2 type: Transform - - uid: 7051 + - uid: 7023 components: - pos: 9.5,-23.5 parent: 2 type: Transform - - uid: 7052 + - uid: 7024 components: - pos: 10.5,-23.5 parent: 2 type: Transform - - uid: 7053 + - uid: 7025 components: - pos: 11.5,-23.5 parent: 2 type: Transform - - uid: 7054 + - uid: 7026 components: - pos: 11.5,-22.5 parent: 2 type: Transform - - uid: 7055 + - uid: 7027 components: - pos: 8.5,-20.5 parent: 2 type: Transform - - uid: 7056 + - uid: 7028 components: - pos: 9.5,-20.5 parent: 2 type: Transform - - uid: 7057 + - uid: 7029 components: - pos: 39.5,11.5 parent: 2 type: Transform - - uid: 7058 + - uid: 7030 components: - pos: 38.5,11.5 parent: 2 type: Transform - - uid: 7059 + - uid: 7031 components: - pos: 39.5,7.5 parent: 2 type: Transform - - uid: 7060 + - uid: 7032 components: - pos: 44.5,6.5 parent: 2 type: Transform - - uid: 7061 + - uid: 7033 components: - pos: 46.5,7.5 parent: 2 type: Transform - - uid: 7062 + - uid: 7034 components: - pos: 3.5,-51.5 parent: 2 type: Transform - - uid: 7063 + - uid: 7035 components: - pos: 3.5,-52.5 parent: 2 type: Transform - - uid: 7064 + - uid: 7036 components: - pos: 3.5,-53.5 parent: 2 type: Transform - - uid: 7065 + - uid: 7037 components: - pos: 6.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7066 + - uid: 7038 components: - pos: 6.5,-74.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7067 + - uid: 7039 components: - pos: 6.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7068 + - uid: 7040 components: - pos: 6.5,-76.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7069 + - uid: 7041 components: - pos: 6.5,-77.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7070 + - uid: 7042 components: - pos: 6.5,-78.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7071 + - uid: 7043 components: - pos: 6.5,-79.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7072 + - uid: 7044 components: - pos: 6.5,-80.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7073 + - uid: 7045 components: - pos: 6.5,-81.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7074 + - uid: 7046 components: - pos: 6.5,-82.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7075 + - uid: 7047 components: - pos: 6.5,-83.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7076 + - uid: 7048 components: - pos: 6.5,-84.5 parent: 2 type: Transform - - uid: 7077 + - uid: 7049 components: - pos: 7.5,-83.5 parent: 2 type: Transform - - uid: 7078 + - uid: 7050 components: - pos: 8.5,-83.5 parent: 2 type: Transform - - uid: 7079 + - uid: 7051 components: - pos: 5.5,-74.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7080 + - uid: 7052 components: - pos: 4.5,-74.5 parent: 2 type: Transform - - uid: 7081 + - uid: 7053 components: - pos: 3.5,-74.5 parent: 2 type: Transform - - uid: 7082 + - uid: 7054 components: - pos: 9.5,-83.5 parent: 2 type: Transform - - uid: 7083 + - uid: 7055 components: - pos: 2.5,-74.5 parent: 2 type: Transform - - uid: 7084 + - uid: 7056 components: - pos: 1.5,-74.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7085 + - uid: 7057 components: - pos: -46.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7086 + - uid: 7058 components: - pos: -46.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7087 + - uid: 7059 components: - pos: -46.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7088 + - uid: 7060 components: - pos: -46.5,-48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7089 + - uid: 7061 components: - pos: -46.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7090 + - uid: 7062 components: - pos: -46.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7091 + - uid: 7063 components: - pos: -46.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7092 + - uid: 7064 components: - pos: -46.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7093 + - uid: 7065 components: - pos: -46.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7094 + - uid: 7066 components: - pos: -46.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7095 + - uid: 7067 components: - pos: -46.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7096 + - uid: 7068 components: - pos: -46.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7097 + - uid: 7069 components: - pos: -46.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7098 + - uid: 7070 components: - pos: -45.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7099 + - uid: 7071 components: - pos: -44.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7100 + - uid: 7072 components: - pos: -43.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7101 + - uid: 7073 components: - pos: -42.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7102 + - uid: 7074 components: - pos: -41.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7103 + - uid: 7075 components: - pos: -40.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7104 + - uid: 7076 components: - pos: -40.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7105 + - uid: 7077 components: - pos: -39.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7106 + - uid: 7078 components: - pos: -38.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7107 + - uid: 7079 components: - pos: -37.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7108 + - uid: 7080 components: - pos: -36.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7109 + - uid: 7081 components: - pos: -36.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7110 + - uid: 7082 components: - pos: -35.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7111 + - uid: 7083 components: - pos: -35.5,-56.5 parent: 2 type: Transform - - uid: 7112 + - uid: 7084 components: - pos: -35.5,-57.5 parent: 2 type: Transform - - uid: 7113 + - uid: 7085 components: - pos: -48.5,42.5 parent: 2 type: Transform - - uid: 7114 + - uid: 7086 components: - pos: -49.5,42.5 parent: 2 type: Transform - - uid: 7115 + - uid: 7087 components: - pos: -49.5,43.5 parent: 2 type: Transform - - uid: 7116 + - uid: 7088 components: - pos: -50.5,43.5 parent: 2 type: Transform - - uid: 7117 + - uid: 7089 components: - pos: -52.5,43.5 parent: 2 type: Transform - - uid: 7118 + - uid: 7090 components: - pos: -51.5,43.5 parent: 2 type: Transform - - uid: 7119 + - uid: 7091 components: - pos: -49.5,44.5 parent: 2 type: Transform - - uid: 7120 + - uid: 7092 components: - pos: -49.5,45.5 parent: 2 type: Transform - - uid: 7121 + - uid: 7093 components: - pos: -49.5,46.5 parent: 2 type: Transform - - uid: 7122 + - uid: 7094 components: - pos: -49.5,47.5 parent: 2 type: Transform - - uid: 7123 + - uid: 7095 components: - pos: -49.5,48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7124 + - uid: 7096 components: - pos: -49.5,49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7125 + - uid: 7097 components: - pos: -48.5,49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7126 + - uid: 7098 components: - pos: -47.5,49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7127 + - uid: 7099 components: - pos: -47.5,42.5 parent: 2 type: Transform - - uid: 7128 + - uid: 7100 components: - pos: 8.5,-59.5 parent: 2 type: Transform - - uid: 7129 + - uid: 7101 components: - pos: 8.5,-58.5 parent: 2 type: Transform - - uid: 7130 + - uid: 7102 components: - pos: 68.5,-32.5 parent: 2 type: Transform - - uid: 7131 + - uid: 7103 components: - pos: 68.5,-31.5 parent: 2 type: Transform - - uid: 7132 + - uid: 7104 components: - pos: 68.5,-30.5 parent: 2 type: Transform - - uid: 7133 + - uid: 7105 components: - pos: 67.5,-30.5 parent: 2 type: Transform - - uid: 7134 + - uid: 7106 components: - pos: 66.5,-30.5 parent: 2 type: Transform - - uid: 7135 + - uid: 7107 components: - pos: -13.5,-33.5 parent: 2 type: Transform - - uid: 7136 + - uid: 7108 components: - pos: -15.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7137 + - uid: 7109 components: - pos: -16.5,-33.5 parent: 2 type: Transform - - uid: 7138 + - uid: 7110 components: - pos: 49.5,-89.5 parent: 2 type: Transform - - uid: 7139 + - uid: 7111 components: - pos: 50.5,-89.5 parent: 2 type: Transform - - uid: 7140 + - uid: 7112 components: - pos: 51.5,-89.5 parent: 2 type: Transform - - uid: 7141 + - uid: 7113 components: - pos: 49.5,-82.5 parent: 2 type: Transform - - uid: 7142 + - uid: 7114 components: - pos: 50.5,-82.5 parent: 2 type: Transform - - uid: 7143 + - uid: 7115 components: - pos: 51.5,-82.5 parent: 2 type: Transform - - uid: 7144 + - uid: 7116 components: - pos: -8.5,18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7145 + - uid: 7117 components: - pos: -4.5,15.5 parent: 2 type: Transform - - uid: 7146 + - uid: 7118 components: - pos: -6.5,12.5 parent: 2 type: Transform - - uid: 7147 + - uid: 7119 components: - pos: -7.5,11.5 parent: 2 type: Transform - - uid: 7148 + - uid: 7120 components: - pos: -6.5,11.5 parent: 2 type: Transform - - uid: 7149 + - uid: 7121 components: - pos: -9.5,11.5 parent: 2 type: Transform - - uid: 7150 + - uid: 7122 components: - pos: -9.5,8.5 parent: 2 type: Transform - - uid: 7151 + - uid: 7123 components: - pos: -8.5,17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7152 + - uid: 7124 components: - pos: -7.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7153 + - uid: 7125 components: - pos: -6.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7154 + - uid: 7126 components: - pos: -5.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7155 + - uid: 7127 components: - pos: -5.5,21.5 parent: 2 type: Transform - - uid: 7156 + - uid: 7128 components: - pos: -6.5,21.5 parent: 2 type: Transform - - uid: 7157 + - uid: 7129 components: - pos: -7.5,21.5 parent: 2 type: Transform - - uid: 7158 + - uid: 7130 components: - pos: -74.5,-51.5 parent: 2 type: Transform - - uid: 7159 + - uid: 7131 components: - pos: -74.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7160 + - uid: 7132 components: - pos: -74.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7161 + - uid: 7133 components: - pos: -74.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7162 + - uid: 7134 components: - pos: -75.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7163 + - uid: 7135 components: - pos: -76.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7164 + - uid: 7136 components: - pos: -73.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7165 + - uid: 7137 components: - pos: -72.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7166 + - uid: 7138 components: - pos: -71.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7167 + - uid: 7139 components: - pos: -70.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7168 + - uid: 7140 components: - pos: -69.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7169 + - uid: 7141 components: - pos: -68.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7170 + - uid: 7142 components: - pos: -67.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7171 + - uid: 7143 components: - pos: -66.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7172 + - uid: 7144 components: - pos: -71.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7173 + - uid: 7145 components: - pos: -71.5,-55.5 parent: 2 type: Transform - - uid: 7174 + - uid: 7146 components: - pos: -73.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7175 + - uid: 7147 components: - pos: -73.5,-55.5 parent: 2 type: Transform - - uid: 7176 + - uid: 7148 components: - pos: -73.5,-51.5 parent: 2 type: Transform - - uid: 7177 + - uid: 7149 components: - pos: -71.5,-51.5 parent: 2 type: Transform - - uid: 7178 + - uid: 7150 components: - pos: -71.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7179 + - uid: 7151 components: - pos: -65.5,-56.5 parent: 2 type: Transform - - uid: 7180 + - uid: 7152 components: - pos: -66.5,-56.5 parent: 2 type: Transform - - uid: 7181 + - uid: 7153 components: - pos: -66.5,-52.5 parent: 2 type: Transform - - uid: 7182 + - uid: 7154 components: - pos: -66.5,-54.5 parent: 2 type: Transform - - uid: 7183 + - uid: 7155 components: - pos: -66.5,-55.5 parent: 2 type: Transform - - uid: 7184 + - uid: 7156 components: - pos: -64.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7185 + - uid: 7157 components: - pos: -64.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7186 + - uid: 7158 components: - pos: -64.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7187 + - uid: 7159 components: - pos: -67.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7188 + - uid: 7160 components: - pos: -69.5,-42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7189 + - uid: 7161 components: - pos: -68.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7190 + - uid: 7162 components: - pos: -69.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7191 + - uid: 7163 components: - pos: -69.5,-40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7192 + - uid: 7164 components: - pos: -69.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7193 + - uid: 7165 components: - pos: -70.5,-40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7194 + - uid: 7166 components: - pos: -71.5,-40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7195 + - uid: 7167 components: - pos: -71.5,-39.5 parent: 2 type: Transform - - uid: 7196 + - uid: 7168 components: - pos: -65.5,-42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7197 + - uid: 7169 components: - pos: -72.5,-39.5 parent: 2 type: Transform - - uid: 7198 + - uid: 7170 components: - pos: -73.5,-44.5 parent: 2 type: Transform - - uid: 7199 + - uid: 7171 components: - pos: -73.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7200 + - uid: 7172 components: - pos: -73.5,-42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7201 + - uid: 7173 components: - pos: -73.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7202 + - uid: 7174 components: - pos: -73.5,-40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7203 + - uid: 7175 components: - pos: -73.5,-39.5 parent: 2 type: Transform - - uid: 7204 + - uid: 7176 components: - pos: -68.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7205 + - uid: 7177 components: - pos: -70.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7206 + - uid: 7178 components: - pos: -69.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7207 + - uid: 7179 components: - pos: -73.5,-37.5 parent: 2 type: Transform - - uid: 7208 + - uid: 7180 components: - pos: -72.5,-37.5 parent: 2 type: Transform - - uid: 7209 + - uid: 7181 components: - pos: -66.5,-36.5 parent: 2 type: Transform - - uid: 7210 + - uid: 7182 components: - pos: -65.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7211 + - uid: 7183 components: - pos: -65.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7212 + - uid: 7184 components: - pos: -65.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7213 + - uid: 7185 components: - pos: -67.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7214 + - uid: 7186 components: - pos: -73.5,-35.5 parent: 2 type: Transform - - uid: 7215 + - uid: 7187 components: - pos: -73.5,-38.5 parent: 2 type: Transform - - uid: 7216 + - uid: 7188 components: - pos: -73.5,-36.5 parent: 2 type: Transform - - uid: 7217 + - uid: 7189 components: - pos: -66.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7218 + - uid: 7190 components: - pos: -65.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7219 + - uid: 7191 components: - pos: -65.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7220 + - uid: 7192 components: - pos: -65.5,-40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7221 + - uid: 7193 components: - pos: -66.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7222 + - uid: 7194 components: - pos: -65.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7223 + - uid: 7195 components: - pos: -66.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7224 + - uid: 7196 components: - pos: -73.5,-45.5 parent: 2 type: Transform - - uid: 7225 + - uid: 7197 components: - pos: -72.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7226 + - uid: 7198 components: - pos: -74.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7227 + - uid: 7199 components: - pos: -75.5,-41.5 parent: 2 type: Transform - - uid: 7228 + - uid: 7200 components: - pos: -76.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7229 + - uid: 7201 components: - pos: -41.5,-17.5 parent: 2 type: Transform - - uid: 7230 + - uid: 7202 components: - pos: -41.5,-18.5 parent: 2 type: Transform - - uid: 7231 + - uid: 7203 components: - pos: -74.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7232 + - uid: 7204 components: - pos: -75.5,-45.5 parent: 2 type: Transform - - uid: 7233 + - uid: 7205 components: - pos: -76.5,-45.5 parent: 2 type: Transform - - uid: 7234 + - uid: 7206 components: - pos: -72.5,-38.5 parent: 2 type: Transform - - uid: 7235 + - uid: 7207 components: - pos: -71.5,-38.5 parent: 2 type: Transform - - uid: 7236 + - uid: 7208 components: - pos: -70.5,-38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7237 + - uid: 7209 components: - pos: -65.5,-33.5 parent: 2 type: Transform - - uid: 7238 + - uid: 7210 components: - pos: -56.5,-37.5 parent: 2 type: Transform - - uid: 7239 + - uid: 7211 components: - pos: -59.5,-37.5 parent: 2 type: Transform - - uid: 7240 + - uid: 7212 components: - pos: -57.5,-37.5 parent: 2 type: Transform - - uid: 7241 + - uid: 7213 components: - pos: -62.5,-37.5 parent: 2 type: Transform - - uid: 7242 + - uid: 7214 components: - pos: -61.5,-37.5 parent: 2 type: Transform - - uid: 7243 + - uid: 7215 components: - pos: -60.5,-37.5 parent: 2 type: Transform - - uid: 7244 + - uid: 7216 components: - pos: -17.5,11.5 parent: 2 type: Transform - - uid: 7245 + - uid: 7217 components: - pos: -58.5,-37.5 parent: 2 type: Transform - - uid: 7246 + - uid: 7218 components: - pos: -54.5,-36.5 parent: 2 type: Transform - - uid: 7247 + - uid: 7219 components: - pos: -53.5,-36.5 parent: 2 type: Transform - - uid: 7248 + - uid: 7220 components: - pos: -52.5,-36.5 parent: 2 type: Transform - - uid: 7249 + - uid: 7221 components: - pos: -42.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7250 + - uid: 7222 components: - pos: -43.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7251 + - uid: 7223 components: - pos: -43.5,-30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7252 + - uid: 7224 components: - pos: -43.5,-29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7253 + - uid: 7225 components: - pos: -41.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7254 + - uid: 7226 components: - pos: -38.5,-29.5 parent: 2 type: Transform - - uid: 7255 + - uid: 7227 components: - pos: -55.5,-31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 10110 + - uid: 7228 components: - pos: 24.5,-38.5 parent: 2 type: Transform - - uid: 10116 + - uid: 7229 components: - pos: 22.5,-38.5 parent: 2 type: Transform - - uid: 12241 + - uid: 7230 components: - pos: 24.5,-34.5 parent: 2 type: Transform - - uid: 12357 + - uid: 7231 components: - pos: 24.5,-35.5 parent: 2 type: Transform - - uid: 12578 + - uid: 7232 components: - pos: 24.5,-37.5 parent: 2 type: Transform - - uid: 12626 - components: - - pos: 21.5,-38.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12648 + - uid: 7233 components: - pos: 24.5,-36.5 parent: 2 type: Transform - - uid: 12677 + - uid: 7234 components: - pos: 23.5,-38.5 parent: 2 type: Transform - - uid: 14029 + - uid: 7235 components: - pos: 2.5,-5.5 parent: 2 type: Transform - - uid: 14075 + - uid: 7236 components: - pos: -0.5,-4.5 parent: 2 type: Transform - - uid: 14146 + - uid: 7237 components: - pos: 1.5,-4.5 parent: 2 type: Transform - - uid: 15994 - components: - - pos: 0.5,-4.5 - parent: 2 - type: Transform - - uid: 16256 + - uid: 7238 components: - pos: -0.5,-6.5 parent: 2 type: Transform - - uid: 16404 + - uid: 7239 components: - pos: -0.5,-5.5 parent: 2 type: Transform - - uid: 16453 + - uid: 7240 components: - pos: 1.5,-5.5 parent: 2 type: Transform - - uid: 18737 + - uid: 7241 components: - pos: 3.5,-5.5 parent: 2 type: Transform - - uid: 19325 - components: - - pos: -0.5,-7.5 - parent: 2 - type: Transform - - uid: 21364 + - uid: 7242 components: - pos: 3.5,-6.5 parent: 2 type: Transform - - uid: 23740 + - uid: 7243 components: - pos: 1.5,-6.5 parent: 2 type: Transform - - uid: 23744 + - uid: 7244 components: - pos: 1.5,-3.5 parent: 2 type: Transform - - uid: 23745 + - enabled: True + type: AmbientSound + - uid: 7245 components: - pos: 2.5,-3.5 parent: 2 type: Transform - - uid: 23780 + - enabled: True + type: AmbientSound + - uid: 7246 components: - pos: 3.5,-3.5 parent: 2 type: Transform + - enabled: True + type: AmbientSound + - uid: 7247 + components: + - pos: 18.5,-30.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7248 + components: + - pos: 1.5,-7.5 + parent: 2 + type: Transform + - uid: 7249 + components: + - pos: 1.5,-8.5 + parent: 2 + type: Transform + - uid: 7250 + components: + - pos: 0.5,-5.5 + parent: 2 + type: Transform + - uid: 7251 + components: + - pos: 0.5,-6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7252 + components: + - pos: 3.5,-7.5 + parent: 2 + type: Transform + - uid: 7253 + components: + - pos: 2.5,-7.5 + parent: 2 + type: Transform + - uid: 7254 + components: + - pos: 5.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7255 + components: + - pos: 22.5,-39.5 + parent: 2 + type: Transform + - uid: 7256 + components: + - pos: 0.5,-17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7257 + components: + - pos: 0.5,-18.5 + parent: 2 + type: Transform + - uid: 7258 + components: + - pos: 0.5,-19.5 + parent: 2 + type: Transform + - uid: 7259 + components: + - pos: 0.5,-20.5 + parent: 2 + type: Transform + - uid: 7260 + components: + - pos: 0.5,-21.5 + parent: 2 + type: Transform + - uid: 7261 + components: + - pos: 0.5,-23.5 + parent: 2 + type: Transform + - uid: 7262 + components: + - pos: 0.5,-22.5 + parent: 2 + type: Transform + - uid: 7263 + components: + - pos: 1.5,-22.5 + parent: 2 + type: Transform + - uid: 7264 + components: + - pos: -0.5,-21.5 + parent: 2 + type: Transform + - uid: 7265 + components: + - pos: -0.5,-19.5 + parent: 2 + type: Transform + - uid: 7266 + components: + - pos: -0.5,-23.5 + parent: 2 + type: Transform + - uid: 7267 + components: + - pos: -1.5,-23.5 + parent: 2 + type: Transform + - uid: 7268 + components: + - pos: 4.5,-12.5 + parent: 2 + type: Transform + - uid: 7269 + components: + - pos: 25.5,-38.5 + parent: 2 + type: Transform + - uid: 7270 + components: + - pos: 26.5,-38.5 + parent: 2 + type: Transform + - uid: 7271 + components: + - pos: 27.5,-38.5 + parent: 2 + type: Transform + - uid: 7272 + components: + - pos: 28.5,-38.5 + parent: 2 + type: Transform + - uid: 7273 + components: + - pos: 28.5,-37.5 + parent: 2 + type: Transform + - uid: 7274 + components: + - pos: 28.5,-36.5 + parent: 2 + type: Transform + - uid: 7275 + components: + - pos: 28.5,-33.5 + parent: 2 + type: Transform - proto: CableApcStack entities: - - uid: 7256 + - uid: 7276 components: - pos: -22.574043,-20.541626 parent: 2 type: Transform - - uid: 7257 + - uid: 7277 components: - pos: -11.530048,37.577045 parent: 2 type: Transform - - uid: 7258 + - uid: 7278 components: - pos: 77.47492,-43.4493 parent: 2 type: Transform - - uid: 7259 + - uid: 7279 components: - pos: -66.46611,-34.373695 parent: 2 type: Transform - proto: CableApcStack1 entities: - - uid: 7260 + - uid: 7280 components: - rot: 3.141592653589793 rad pos: 55.427982,45.52066 parent: 2 type: Transform - - uid: 7261 + - uid: 7281 components: - rot: 3.141592653589793 rad pos: 38.439327,47.51809 parent: 2 type: Transform - - uid: 7262 + - uid: 7282 components: - pos: -14.8449135,-96.398895 parent: 2 type: Transform - - uid: 7263 + - uid: 7283 components: - pos: 57.114487,42.493305 parent: 2 type: Transform - - uid: 7264 + - uid: 7284 components: - pos: -14.677503,-33.453545 parent: 2 type: Transform - proto: CableHV entities: - - uid: 7265 + - uid: 7285 components: - pos: -79.5,-38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7266 + - uid: 7286 components: - pos: 15.5,-28.5 parent: 2 type: Transform - - uid: 7267 + - uid: 7287 components: - pos: 7.5,-26.5 parent: 2 type: Transform - - uid: 7268 + - uid: 7288 components: - pos: 27.5,-42.5 parent: 2 type: Transform - - uid: 7269 + - uid: 7289 components: - pos: 8.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7270 + - uid: 7290 components: - pos: -1.5,-66.5 parent: 2 type: Transform - - uid: 7271 + - uid: 7291 components: - pos: 15.5,-33.5 parent: 2 type: Transform - - uid: 7272 + - uid: 7292 components: - pos: 12.5,-26.5 parent: 2 type: Transform - - uid: 7273 + - uid: 7293 components: - pos: -11.5,-26.5 parent: 2 type: Transform - - uid: 7274 + - uid: 7294 components: - pos: 2.5,-42.5 parent: 2 type: Transform - - uid: 7275 + - uid: 7295 components: - pos: 6.5,-42.5 parent: 2 type: Transform - - uid: 7276 + - uid: 7296 components: - pos: 0.5,-42.5 parent: 2 type: Transform - - uid: 7277 + - uid: 7297 components: - pos: 4.5,-42.5 parent: 2 type: Transform - - uid: 7278 + - uid: 7298 components: - pos: -5.5,-39.5 parent: 2 type: Transform - - uid: 7279 + - uid: 7299 components: - pos: 8.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7280 + - uid: 7300 components: - pos: -1.5,-42.5 parent: 2 type: Transform - - uid: 7281 + - uid: 7301 components: - pos: -1.5,-26.5 parent: 2 type: Transform - - uid: 7282 + - uid: 7302 components: - pos: 15.5,-26.5 parent: 2 type: Transform - - uid: 7283 + - uid: 7303 components: - pos: -1.5,-64.5 parent: 2 type: Transform - - uid: 7284 + - uid: 7304 components: - pos: -12.5,-75.5 parent: 2 type: Transform - - uid: 7285 + - uid: 7305 components: - pos: 32.5,-42.5 parent: 2 type: Transform - - uid: 7286 + - uid: 7306 components: - pos: 14.5,-46.5 parent: 2 type: Transform - - uid: 7287 + - uid: 7307 components: - pos: 21.5,-42.5 parent: 2 type: Transform - - uid: 7288 + - uid: 7308 components: - pos: 38.5,-30.5 parent: 2 type: Transform - - uid: 7289 + - uid: 7309 components: - pos: -12.5,-71.5 parent: 2 type: Transform - - uid: 7290 + - uid: 7310 components: - pos: 4.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7291 + - uid: 7311 components: - pos: 3.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7292 + - uid: 7312 components: - pos: 2.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7293 + - uid: 7313 components: - pos: 1.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7294 + - uid: 7314 components: - pos: 1.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7295 + - uid: 7315 components: - pos: 0.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7296 + - uid: 7316 components: - pos: 39.5,-28.5 parent: 2 type: Transform - - uid: 7297 + - uid: 7317 components: - pos: 25.5,-42.5 parent: 2 type: Transform - - uid: 7298 + - uid: 7318 components: - pos: 24.5,-42.5 parent: 2 type: Transform - - uid: 7299 + - uid: 7319 components: - pos: 23.5,-42.5 parent: 2 type: Transform - - uid: 7300 + - uid: 7320 components: - pos: 22.5,-42.5 parent: 2 type: Transform - - uid: 7301 + - uid: 7321 components: - pos: 25.5,-10.5 parent: 2 type: Transform - - uid: 7302 + - uid: 7322 components: - pos: 24.5,-5.5 parent: 2 type: Transform - - uid: 7303 + - uid: 7323 components: - pos: 12.5,-42.5 parent: 2 type: Transform - - uid: 7304 + - uid: 7324 components: - pos: -14.5,34.5 parent: 2 type: Transform - - uid: 7305 + - uid: 7325 components: - pos: 8.5,-16.5 parent: 2 type: Transform - - uid: 7306 + - uid: 7326 components: - pos: 4.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7307 + - uid: 7327 components: - pos: -4.5,-18.5 parent: 2 type: Transform - - uid: 7308 + - uid: 7328 components: - pos: 5.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7309 + - uid: 7329 components: - pos: 4.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7310 + - uid: 7330 components: - pos: 2.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7311 + - uid: 7331 components: - pos: 12.5,-49.5 parent: 2 type: Transform - - uid: 7312 + - uid: 7332 components: - pos: 10.5,-49.5 parent: 2 type: Transform - - uid: 7313 + - uid: 7333 components: - pos: 9.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7314 + - uid: 7334 components: - pos: 8.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7315 + - uid: 7335 components: - pos: 8.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7316 + - uid: 7336 components: - pos: 10.5,-55.5 parent: 2 type: Transform - - uid: 7317 + - uid: 7337 components: - pos: 11.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7318 + - uid: 7338 components: - pos: 12.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7319 + - uid: 7339 components: - pos: 14.5,-57.5 parent: 2 type: Transform - - uid: 7320 + - uid: 7340 components: - pos: 14.5,-58.5 parent: 2 type: Transform - - uid: 7321 + - uid: 7341 components: - pos: 39.5,-29.5 parent: 2 type: Transform - - uid: 7322 + - uid: 7342 components: - pos: 36.5,-30.5 parent: 2 type: Transform - - uid: 7323 + - uid: 7343 components: - pos: 10.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7324 + - uid: 7344 components: - pos: -11.5,-75.5 parent: 2 type: Transform - - uid: 7325 + - uid: 7345 components: - pos: 6.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7326 + - uid: 7346 components: - pos: -7.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7327 + - uid: 7347 components: - pos: -5.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7328 + - uid: 7348 components: - pos: 25.5,-49.5 parent: 2 type: Transform - - uid: 7329 + - uid: 7349 components: - pos: 0.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7330 + - uid: 7350 components: - pos: -0.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7331 + - uid: 7351 components: - pos: -1.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7332 + - uid: 7352 components: - pos: -1.5,-88.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7333 + - uid: 7353 components: - pos: -1.5,-87.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7334 + - uid: 7354 components: - pos: 14.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7335 + - uid: 7355 components: - pos: 12.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7336 + - uid: 7356 components: - pos: -4.5,-22.5 parent: 2 type: Transform - - uid: 7337 + - uid: 7357 components: - pos: 10.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7338 + - uid: 7358 components: - pos: 15.5,-37.5 parent: 2 type: Transform - - uid: 7339 + - uid: 7359 components: - pos: -15.5,-71.5 parent: 2 type: Transform - - uid: 7340 + - uid: 7360 components: - pos: 35.5,-40.5 parent: 2 type: Transform - - uid: 7341 + - uid: 7361 components: - pos: 13.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7342 + - uid: 7362 components: - pos: -4.5,-25.5 parent: 2 type: Transform - - uid: 7343 + - uid: 7363 components: - pos: -5.5,-30.5 parent: 2 type: Transform - - uid: 7344 + - uid: 7364 components: - pos: 6.5,-26.5 parent: 2 type: Transform - - uid: 7345 + - uid: 7365 components: - pos: 5.5,-26.5 parent: 2 type: Transform - - uid: 7346 + - uid: 7366 components: - pos: 3.5,-26.5 parent: 2 type: Transform - - uid: 7347 + - uid: 7367 components: - pos: 2.5,-26.5 parent: 2 type: Transform - - uid: 7348 + - uid: 7368 components: - pos: 1.5,-26.5 parent: 2 type: Transform - - uid: 7349 + - uid: 7369 components: - pos: -17.5,-26.5 parent: 2 type: Transform - - uid: 7350 + - uid: 7370 components: - pos: 12.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7351 + - uid: 7371 components: - pos: 15.5,-41.5 parent: 2 type: Transform - - uid: 7352 + - uid: 7372 components: - pos: 13.5,-42.5 parent: 2 type: Transform - - uid: 7353 + - uid: 7373 components: - pos: 10.5,-42.5 parent: 2 type: Transform - - uid: 7354 + - uid: 7374 components: - pos: 7.5,-42.5 parent: 2 type: Transform - - uid: 7355 + - uid: 7375 components: - pos: 8.5,-42.5 parent: 2 type: Transform - - uid: 7356 + - uid: 7376 components: - pos: 25.5,-6.5 parent: 2 type: Transform - - uid: 7357 + - uid: 7377 components: - pos: 25.5,-12.5 parent: 2 type: Transform - - uid: 7358 + - uid: 7378 components: - pos: 25.5,-13.5 parent: 2 type: Transform - - uid: 7359 + - uid: 7379 components: - pos: 25.5,-14.5 parent: 2 type: Transform - - uid: 7360 + - uid: 7380 components: - pos: 2.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7361 + - uid: 7381 components: - pos: -12.5,-73.5 parent: 2 type: Transform - - uid: 7362 + - uid: 7382 components: - pos: 35.5,-34.5 parent: 2 type: Transform - - uid: 7363 + - uid: 7383 components: - pos: 25.5,-44.5 parent: 2 type: Transform - - uid: 7364 + - uid: 7384 components: - pos: 25.5,-43.5 parent: 2 type: Transform - - uid: 7365 + - uid: 7385 components: - pos: 33.5,-42.5 parent: 2 type: Transform - - uid: 7366 + - uid: 7386 components: - pos: -67.5,-25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7367 + - uid: 7387 components: - pos: -2.5,-61.5 parent: 2 type: Transform - - uid: 7368 + - uid: 7388 components: - pos: -2.5,-59.5 parent: 2 type: Transform - - uid: 7369 + - uid: 7389 components: - pos: -6.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7370 + - uid: 7390 components: - pos: -8.5,-19.5 parent: 2 type: Transform - - uid: 7371 + - uid: 7391 components: - pos: -15.5,-72.5 parent: 2 type: Transform - - uid: 7372 + - uid: 7392 components: - pos: 11.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7373 + - uid: 7393 components: - pos: 18.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7374 + - uid: 7394 components: - pos: 12.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7375 + - uid: 7395 components: - pos: -1.5,-77.5 parent: 2 type: Transform - - uid: 7376 + - uid: 7396 components: - pos: -1.5,-80.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7377 + - uid: 7397 components: - pos: -1.5,-68.5 parent: 2 type: Transform - - uid: 7378 + - uid: 7398 components: - pos: 12.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7379 + - uid: 7399 components: - pos: -12.5,-69.5 parent: 2 type: Transform - - uid: 7380 + - uid: 7400 components: - pos: 8.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7381 + - uid: 7401 components: - pos: 23.5,-17.5 parent: 2 type: Transform - - uid: 7382 + - uid: 7402 components: - pos: -14.5,-71.5 parent: 2 type: Transform - - uid: 7383 + - uid: 7403 components: - pos: -15.5,-73.5 parent: 2 type: Transform - - uid: 7384 + - uid: 7404 components: - pos: 15.5,-43.5 parent: 2 type: Transform - - uid: 7385 + - uid: 7405 components: - pos: -2.5,-63.5 parent: 2 type: Transform - - uid: 7386 + - uid: 7406 components: - pos: 12.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7387 + - uid: 7407 components: - pos: 9.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7388 + - uid: 7408 components: - pos: 15.5,-40.5 parent: 2 type: Transform - - uid: 7389 + - uid: 7409 components: - pos: -4.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7390 + - uid: 7410 components: - pos: -1.5,-65.5 parent: 2 type: Transform - - uid: 7391 + - uid: 7411 components: - pos: 14.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7392 + - uid: 7412 components: - pos: 14.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7393 + - uid: 7413 components: - pos: -0.5,-42.5 parent: 2 type: Transform - - uid: 7394 + - uid: 7414 components: - pos: 1.5,-42.5 parent: 2 type: Transform - - uid: 7395 + - uid: 7415 components: - pos: 3.5,-42.5 parent: 2 type: Transform - - uid: 7396 + - uid: 7416 components: - pos: 5.5,-42.5 parent: 2 type: Transform - - uid: 7397 + - uid: 7417 components: - pos: 31.5,-5.5 parent: 2 type: Transform - - uid: 7398 + - uid: 7418 components: - pos: 25.5,-5.5 parent: 2 type: Transform - - uid: 7399 + - uid: 7419 components: - pos: -4.5,-24.5 parent: 2 type: Transform - - uid: 7400 + - uid: 7420 components: - pos: -5.5,-40.5 parent: 2 type: Transform - - uid: 7401 + - uid: 7421 components: - pos: -5.5,-38.5 parent: 2 type: Transform - - uid: 7402 + - uid: 7422 components: - pos: -5.5,-26.5 parent: 2 type: Transform - - uid: 7403 + - uid: 7423 components: - pos: 18.5,-29.5 parent: 2 type: Transform - - uid: 7404 + - uid: 7424 components: - pos: -0.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7405 - components: - - pos: -1.5,-17.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7406 - components: - - pos: -1.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7407 + - uid: 7425 components: - pos: 30.5,-3.5 parent: 2 type: Transform - - uid: 7408 + - uid: 7426 components: - pos: 30.5,7.5 parent: 2 type: Transform - - uid: 7409 + - uid: 7427 components: - pos: -24.5,-14.5 parent: 2 type: Transform - - uid: 7410 + - uid: 7428 components: - pos: -6.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7411 + - uid: 7429 components: - pos: -5.5,-19.5 parent: 2 type: Transform - - uid: 7412 + - uid: 7430 components: - pos: -4.5,-19.5 parent: 2 type: Transform - - uid: 7413 + - uid: 7431 components: - pos: -4.5,-21.5 parent: 2 type: Transform - - uid: 7414 + - uid: 7432 components: - pos: -7.5,-19.5 parent: 2 type: Transform - - uid: 7415 + - uid: 7433 components: - pos: 2.5,-91.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7416 + - uid: 7434 components: - pos: 11.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7417 + - uid: 7435 components: - pos: 13.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7418 + - uid: 7436 components: - pos: 11.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7419 + - uid: 7437 components: - pos: 7.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7420 + - uid: 7438 components: - pos: -3.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7421 + - uid: 7439 components: - pos: 20.5,-42.5 parent: 2 type: Transform - - uid: 7422 + - uid: 7440 components: - pos: -65.5,-25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7423 + - uid: 7441 components: - pos: -24.5,-13.5 parent: 2 type: Transform - - uid: 7424 + - uid: 7442 components: - pos: 2.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7425 + - uid: 7443 components: - pos: -1.5,-84.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7426 + - uid: 7444 components: - pos: -1.5,-85.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7427 + - uid: 7445 components: - pos: 17.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7428 + - uid: 7446 components: - pos: 4.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7429 + - uid: 7447 components: - pos: 25.5,-11.5 parent: 2 type: Transform - - uid: 7430 + - uid: 7448 components: - pos: 25.5,-9.5 parent: 2 type: Transform - - uid: 7431 + - uid: 7449 components: - pos: 25.5,-8.5 parent: 2 type: Transform - - uid: 7432 + - uid: 7450 components: - pos: 25.5,-7.5 parent: 2 type: Transform - - uid: 7433 + - uid: 7451 components: - pos: 9.5,-42.5 parent: 2 type: Transform - - uid: 7434 + - uid: 7452 components: - pos: 14.5,-42.5 parent: 2 type: Transform - - uid: 7435 + - uid: 7453 components: - pos: 11.5,-42.5 parent: 2 type: Transform - - uid: 7436 + - uid: 7454 components: - pos: 4.5,-26.5 parent: 2 type: Transform - - uid: 7437 + - uid: 7455 components: - - pos: -3.5,-20.5 + - pos: -3.5,-17.5 parent: 2 type: Transform - - uid: 7438 + - uid: 7456 components: - pos: 10.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7439 + - uid: 7457 components: - pos: 7.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7440 + - uid: 7458 components: - pos: 15.5,-42.5 parent: 2 type: Transform - - uid: 7441 + - uid: 7459 components: - pos: 15.5,-44.5 parent: 2 type: Transform - - uid: 7442 + - uid: 7460 components: - pos: 15.5,-36.5 parent: 2 type: Transform - - uid: 7443 + - uid: 7461 components: - pos: 15.5,-34.5 parent: 2 type: Transform - - uid: 7444 + - uid: 7462 components: - pos: 15.5,-32.5 parent: 2 type: Transform - - uid: 7445 + - uid: 7463 components: - pos: -3.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7446 + - uid: 7464 components: - pos: -5.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7447 + - uid: 7465 components: - pos: 14.5,-48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7448 + - uid: 7466 components: - pos: -6.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7449 + - uid: 7467 components: - pos: -6.5,-70.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7450 + - uid: 7468 components: - pos: -8.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7451 + - uid: 7469 components: - pos: -10.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7452 + - uid: 7470 components: - pos: 14.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7453 + - uid: 7471 components: - pos: 13.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7454 + - uid: 7472 components: - pos: 11.5,-49.5 parent: 2 type: Transform - - uid: 7455 + - uid: 7473 components: - pos: -11.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7456 + - uid: 7474 components: - pos: 25.5,-17.5 parent: 2 type: Transform - - uid: 7457 + - uid: 7475 components: - pos: 38.5,-28.5 parent: 2 type: Transform - - uid: 7458 + - uid: 7476 components: - pos: 37.5,-30.5 parent: 2 type: Transform - - uid: 7459 + - uid: 7477 components: - pos: 35.5,-30.5 parent: 2 type: Transform - - uid: 7460 + - uid: 7478 components: - pos: 35.5,-29.5 parent: 2 type: Transform - - uid: 7461 + - uid: 7479 components: - pos: 9.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7462 + - uid: 7480 components: - pos: -11.5,58.5 parent: 2 type: Transform - - uid: 7463 + - uid: 7481 components: - pos: -12.5,58.5 parent: 2 type: Transform - - uid: 7464 + - uid: 7482 components: - pos: -15.5,44.5 parent: 2 type: Transform - - uid: 7465 + - uid: 7483 components: - pos: -16.5,44.5 parent: 2 type: Transform - - uid: 7466 + - uid: 7484 components: - pos: -17.5,44.5 parent: 2 type: Transform - - uid: 7467 + - uid: 7485 components: - pos: -17.5,45.5 parent: 2 type: Transform - - uid: 7468 + - uid: 7486 components: - pos: -17.5,46.5 parent: 2 type: Transform - - uid: 7469 + - uid: 7487 components: - pos: -17.5,47.5 parent: 2 type: Transform - - uid: 7470 + - uid: 7488 components: - pos: -17.5,48.5 parent: 2 type: Transform - - uid: 7471 + - uid: 7489 components: - pos: -17.5,49.5 parent: 2 type: Transform - - uid: 7472 + - uid: 7490 components: - pos: -17.5,50.5 parent: 2 type: Transform - - uid: 7473 + - uid: 7491 components: - pos: -16.5,50.5 parent: 2 type: Transform - - uid: 7474 + - uid: 7492 components: - pos: -13.5,50.5 parent: 2 type: Transform - - uid: 7475 + - uid: 7493 components: - pos: -15.5,50.5 parent: 2 type: Transform - - uid: 7476 + - uid: 7494 components: - pos: -14.5,50.5 parent: 2 type: Transform - - uid: 7477 + - uid: 7495 components: - pos: -13.5,58.5 parent: 2 type: Transform - - uid: 7478 + - uid: 7496 components: - pos: -13.5,57.5 parent: 2 type: Transform - - uid: 7479 + - uid: 7497 components: - pos: -13.5,51.5 parent: 2 type: Transform - - uid: 7480 + - uid: 7498 components: - pos: -13.5,52.5 parent: 2 type: Transform - - uid: 7481 + - uid: 7499 components: - pos: -13.5,53.5 parent: 2 type: Transform - - uid: 7482 + - uid: 7500 components: - pos: -13.5,54.5 parent: 2 type: Transform - - uid: 7483 + - uid: 7501 components: - pos: -13.5,55.5 parent: 2 type: Transform - - uid: 7484 + - uid: 7502 components: - pos: -13.5,56.5 parent: 2 type: Transform - - uid: 7485 + - uid: 7503 components: - pos: 15.5,-39.5 parent: 2 type: Transform - - uid: 7486 + - uid: 7504 components: - pos: -6.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7487 + - uid: 7505 components: - pos: 18.5,-42.5 parent: 2 type: Transform - - uid: 7488 + - uid: 7506 components: - pos: -24.5,-15.5 parent: 2 type: Transform - - uid: 7489 + - uid: 7507 components: - pos: 17.5,-29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7490 + - uid: 7508 components: - pos: 35.5,-38.5 parent: 2 type: Transform - - uid: 7491 + - uid: 7509 components: - pos: 26.5,-42.5 parent: 2 type: Transform - - uid: 7492 + - uid: 7510 components: - pos: -13.5,-26.5 parent: 2 type: Transform - - uid: 7493 + - uid: 7511 components: - pos: -10.5,-26.5 parent: 2 type: Transform - - uid: 7494 + - uid: 7512 components: - pos: -5.5,-34.5 parent: 2 type: Transform - - uid: 7495 + - uid: 7513 components: - pos: -5.5,-41.5 parent: 2 type: Transform - - uid: 7496 + - uid: 7514 components: - pos: 13.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7497 + - uid: 7515 components: - pos: 12.5,-55.5 parent: 2 type: Transform - - uid: 7498 + - uid: 7516 components: - pos: 8.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7499 + - uid: 7517 components: - pos: -11.5,-42.5 parent: 2 type: Transform - - uid: 7500 + - uid: 7518 components: - pos: -8.5,-26.5 parent: 2 type: Transform - - uid: 7501 + - uid: 7519 components: - pos: -13.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7502 + - uid: 7520 components: - pos: 25.5,-47.5 parent: 2 type: Transform - - uid: 7503 + - uid: 7521 components: - pos: -5.5,-31.5 parent: 2 type: Transform - - uid: 7504 + - uid: 7522 components: - pos: -5.5,-33.5 parent: 2 type: Transform - - uid: 7505 + - uid: 7523 components: - pos: -14.5,-26.5 parent: 2 type: Transform - - uid: 7506 + - uid: 7524 components: - pos: -15.5,-26.5 parent: 2 type: Transform - - uid: 7507 + - uid: 7525 components: - pos: -3.5,-26.5 parent: 2 type: Transform - - uid: 7508 + - uid: 7526 components: - pos: -2.5,-26.5 parent: 2 type: Transform - - uid: 7509 + - uid: 7527 components: - pos: -0.5,-26.5 parent: 2 type: Transform - - uid: 7510 + - uid: 7528 components: - pos: 9.5,-26.5 parent: 2 type: Transform - - uid: 7511 + - uid: 7529 components: - pos: 13.5,-26.5 parent: 2 type: Transform - - uid: 7512 + - uid: 7530 components: - pos: 15.5,-29.5 parent: 2 type: Transform - - uid: 7513 + - uid: 7531 components: - pos: -4.5,-42.5 parent: 2 type: Transform - - uid: 7514 + - uid: 7532 components: - pos: -7.5,-42.5 parent: 2 type: Transform - - uid: 7515 + - uid: 7533 components: - pos: -8.5,-42.5 parent: 2 type: Transform - - uid: 7516 + - uid: 7534 components: - pos: -10.5,-42.5 parent: 2 type: Transform - - uid: 7517 + - uid: 7535 components: - pos: -12.5,-42.5 parent: 2 type: Transform - - uid: 7518 + - uid: 7536 components: - pos: -13.5,-42.5 parent: 2 type: Transform - - uid: 7519 + - uid: 7537 components: - pos: 10.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7520 + - uid: 7538 components: - pos: -15.5,-42.5 parent: 2 type: Transform - - uid: 7521 + - uid: 7539 components: - pos: -12.5,-70.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7522 + - uid: 7540 components: - pos: -8.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7523 + - uid: 7541 components: - pos: -18.5,-42.5 parent: 2 type: Transform - - uid: 7524 + - uid: 7542 components: - pos: 15.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7525 + - uid: 7543 components: - pos: 25.5,-50.5 parent: 2 type: Transform - - uid: 7526 + - uid: 7544 components: - pos: 9.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7527 + - uid: 7545 components: - pos: 13.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7528 + - uid: 7546 components: - pos: 34.5,-42.5 parent: 2 type: Transform - - uid: 7529 + - uid: 7547 components: - pos: 35.5,-42.5 parent: 2 type: Transform - - uid: 7530 + - uid: 7548 components: - pos: 25.5,-45.5 parent: 2 type: Transform - - uid: 7531 + - uid: 7549 components: - pos: 35.5,-32.5 parent: 2 type: Transform - - uid: 7532 + - uid: 7550 components: - pos: 35.5,-36.5 parent: 2 type: Transform - - uid: 7533 + - uid: 7551 components: - pos: 70.5,-46.5 parent: 2 type: Transform - - uid: 7534 + - uid: 7552 components: - pos: -12.5,-74.5 parent: 2 type: Transform - - uid: 7535 + - uid: 7553 components: - pos: -0.5,-72.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7536 + - uid: 7554 components: - pos: 11.5,-105.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7537 + - uid: 7555 components: - pos: -1.5,-86.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7538 + - uid: 7556 components: - pos: -16.5,-26.5 parent: 2 type: Transform - - uid: 7539 + - uid: 7557 components: - pos: 11.5,-26.5 parent: 2 type: Transform - - uid: 7540 + - uid: 7558 components: - pos: -17.5,-42.5 parent: 2 type: Transform - - uid: 7541 + - uid: 7559 components: - pos: -9.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7542 + - uid: 7560 components: - pos: 6.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7543 - components: - - pos: 19.5,-28.5 - parent: 2 - type: Transform - - uid: 7544 + - uid: 7561 components: - pos: -4.5,-19.5 parent: 2 type: Transform - - uid: 7545 + - uid: 7562 components: - pos: -5.5,-32.5 parent: 2 type: Transform - - uid: 7546 + - uid: 7563 components: - pos: 25.5,-48.5 parent: 2 type: Transform - - uid: 7547 + - uid: 7564 components: - pos: -9.5,-26.5 parent: 2 type: Transform - - uid: 7548 + - uid: 7565 components: - pos: 25.5,-46.5 parent: 2 type: Transform - - uid: 7549 + - uid: 7566 components: - pos: -5.5,-42.5 parent: 2 type: Transform - - uid: 7550 - components: - - pos: 19.5,-29.5 - parent: 2 - type: Transform - - uid: 7551 + - uid: 7567 components: - pos: 15.5,-38.5 parent: 2 type: Transform - - uid: 7552 + - uid: 7568 components: - pos: -5.5,-36.5 parent: 2 type: Transform - - uid: 7553 + - uid: 7569 components: - pos: 25.5,-51.5 parent: 2 type: Transform - - uid: 7554 + - uid: 7570 components: - pos: 15.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7555 + - uid: 7571 components: - pos: 15.5,-31.5 parent: 2 type: Transform - - uid: 7556 + - uid: 7572 components: - pos: 6.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7557 + - uid: 7573 components: - pos: 15.5,-35.5 parent: 2 type: Transform - - uid: 7558 + - uid: 7574 components: - pos: -16.5,-42.5 parent: 2 type: Transform - - uid: 7559 + - uid: 7575 components: - pos: 15.5,-30.5 parent: 2 type: Transform - - uid: 7560 + - uid: 7576 components: - pos: 10.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7561 + - uid: 7577 components: - pos: -1.5,-63.5 parent: 2 type: Transform - - uid: 7562 + - uid: 7578 components: - pos: -12.5,-26.5 parent: 2 type: Transform - - uid: 7563 + - uid: 7579 components: - pos: 0.5,-26.5 parent: 2 type: Transform - - uid: 7564 + - uid: 7580 components: - pos: 14.5,-26.5 parent: 2 type: Transform - - uid: 7565 + - uid: 7581 components: - pos: 15.5,-27.5 parent: 2 type: Transform - - uid: 7566 + - uid: 7582 components: - pos: -6.5,-42.5 parent: 2 type: Transform - - uid: 7567 + - uid: 7583 components: - pos: -3.5,-42.5 parent: 2 type: Transform - - uid: 7568 - components: - - pos: -2.5,-20.5 - parent: 2 - type: Transform - - uid: 7569 + - uid: 7584 components: - - pos: -1.5,-19.5 + - pos: -2.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7570 + - uid: 7585 components: - - pos: -1.5,-20.5 + - pos: -1.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7571 + - uid: 7586 components: - pos: 30.5,-2.5 parent: 2 type: Transform - - uid: 7572 + - uid: 7587 components: - pos: 30.5,-4.5 parent: 2 type: Transform - - uid: 7573 + - uid: 7588 components: - pos: -4.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7574 + - uid: 7589 components: - pos: 24.5,-17.5 parent: 2 type: Transform - - uid: 7575 + - uid: 7590 components: - pos: 25.5,-16.5 parent: 2 type: Transform - - uid: 7576 + - uid: 7591 components: - pos: 25.5,-15.5 parent: 2 type: Transform - - uid: 7577 + - uid: 7592 components: - pos: 17.5,-5.5 parent: 2 type: Transform - - uid: 7578 + - uid: 7593 components: - pos: 32.5,-17.5 parent: 2 type: Transform - - uid: 7579 + - uid: 7594 components: - pos: 35.5,-21.5 parent: 2 type: Transform - - uid: 7580 + - uid: 7595 components: - pos: -13.5,-71.5 parent: 2 type: Transform - - uid: 7581 + - uid: 7596 components: - pos: 9.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7582 + - uid: 7597 components: - pos: 13.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7583 + - uid: 7598 components: - pos: -2.5,-77.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7584 + - uid: 7599 components: - pos: -2.5,-78.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7585 + - uid: 7600 components: - pos: -1.5,-82.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7586 + - uid: 7601 components: - pos: -9.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7587 + - uid: 7602 components: - pos: 28.5,-42.5 parent: 2 type: Transform - - uid: 7588 + - uid: 7603 components: - pos: -4.5,-23.5 parent: 2 type: Transform - - uid: 7589 + - uid: 7604 components: - pos: -5.5,-28.5 parent: 2 type: Transform - - uid: 7590 + - uid: 7605 components: - pos: -5.5,-35.5 parent: 2 type: Transform - - uid: 7591 + - uid: 7606 components: - pos: 10.5,-26.5 parent: 2 type: Transform - - uid: 7592 + - uid: 7607 components: - pos: 8.5,-26.5 parent: 2 type: Transform - - uid: 7593 + - uid: 7608 components: - pos: -7.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7594 - components: - - pos: 19.5,-28.5 - parent: 2 - type: Transform - - uid: 7595 + - uid: 7609 components: - pos: -7.5,-26.5 parent: 2 type: Transform - - uid: 7596 + - uid: 7610 components: - pos: -6.5,-26.5 parent: 2 type: Transform - - uid: 7597 + - uid: 7611 components: - pos: -9.5,-42.5 parent: 2 type: Transform - - uid: 7598 + - uid: 7612 components: - pos: 8.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7599 + - uid: 7613 components: - pos: 2.5,-90.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7600 + - uid: 7614 components: - pos: 15.5,-31.5 parent: 2 type: Transform - - uid: 7601 + - uid: 7615 components: - pos: 14.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7602 + - uid: 7616 components: - pos: -5.5,-37.5 parent: 2 type: Transform - - uid: 7603 + - uid: 7617 components: - pos: -14.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7604 + - uid: 7618 components: - pos: 35.5,-28.5 parent: 2 type: Transform - - uid: 7605 + - uid: 7619 components: - pos: -14.5,-42.5 parent: 2 type: Transform - - uid: 7606 + - uid: 7620 components: - pos: 1.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7607 + - uid: 7621 components: - pos: 3.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7608 + - uid: 7622 components: - pos: 5.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7609 + - uid: 7623 components: - pos: 13.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7610 + - uid: 7624 components: - pos: 9.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7611 + - uid: 7625 components: - pos: -4.5,-20.5 parent: 2 type: Transform - - uid: 7612 + - uid: 7626 components: - pos: 16.5,-29.5 parent: 2 type: Transform - - uid: 7613 + - uid: 7627 components: - pos: -4.5,-26.5 parent: 2 type: Transform - - uid: 7614 + - uid: 7628 components: - pos: 16.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7615 + - uid: 7629 components: - pos: -2.5,-42.5 parent: 2 type: Transform - - uid: 7616 + - uid: 7630 components: - pos: 16.5,-42.5 parent: 2 type: Transform - - uid: 7617 + - uid: 7631 components: - pos: 7.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7618 + - uid: 7632 components: - pos: 12.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7619 + - uid: 7633 components: - pos: 10.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7620 + - uid: 7634 components: - pos: 8.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7621 + - uid: 7635 components: - pos: 14.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7622 + - uid: 7636 components: - pos: 9.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7623 + - uid: 7637 components: - pos: 13.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7624 + - uid: 7638 components: - pos: 9.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7625 + - uid: 7639 components: - pos: -1.5,-83.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7626 + - uid: 7640 components: - pos: -1.5,-81.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7627 + - uid: 7641 components: - pos: -1.5,-79.5 parent: 2 type: Transform - - uid: 7628 + - uid: 7642 components: - pos: -2.5,-79.5 parent: 2 type: Transform - - uid: 7629 + - uid: 7643 components: - pos: -2.5,-75.5 parent: 2 type: Transform - - uid: 7630 + - uid: 7644 components: - pos: -2.5,-76.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7631 + - uid: 7645 components: - pos: -10.5,-75.5 parent: 2 type: Transform - - uid: 7632 + - uid: 7646 components: - pos: 15.5,-58.5 parent: 2 type: Transform - - uid: 7633 + - uid: 7647 components: - pos: -5.5,-27.5 parent: 2 type: Transform - - uid: 7634 + - uid: 7648 components: - pos: -5.5,-29.5 parent: 2 type: Transform - - uid: 7635 + - uid: 7649 components: - pos: 21.5,-17.5 parent: 2 type: Transform - - uid: 7636 + - uid: 7650 components: - pos: 22.5,-17.5 parent: 2 type: Transform - - uid: 7637 + - uid: 7651 components: - pos: 20.5,-17.5 parent: 2 type: Transform - - uid: 7638 + - uid: 7652 components: - pos: 19.5,-17.5 parent: 2 type: Transform - - uid: 7639 + - uid: 7653 components: - pos: 18.5,-17.5 parent: 2 type: Transform - - uid: 7640 + - uid: 7654 components: - pos: 17.5,-17.5 parent: 2 type: Transform - - uid: 7641 + - uid: 7655 components: - pos: 16.5,-17.5 parent: 2 type: Transform - - uid: 7642 + - uid: 7656 components: - pos: 15.5,-22.5 parent: 2 type: Transform - - uid: 7643 + - uid: 7657 components: - pos: 15.5,-17.5 parent: 2 type: Transform - - uid: 7644 + - uid: 7658 components: - pos: 15.5,-18.5 parent: 2 type: Transform - - uid: 7645 + - uid: 7659 components: - pos: 15.5,-19.5 parent: 2 type: Transform - - uid: 7646 + - uid: 7660 components: - pos: 15.5,-20.5 parent: 2 type: Transform - - uid: 7647 + - uid: 7661 components: - pos: 15.5,-21.5 parent: 2 type: Transform - - uid: 7648 + - uid: 7662 components: - pos: 15.5,-23.5 parent: 2 type: Transform - - uid: 7649 + - uid: 7663 components: - pos: 15.5,-24.5 parent: 2 type: Transform - - uid: 7650 + - uid: 7664 components: - pos: 15.5,-25.5 parent: 2 type: Transform - - uid: 7651 + - uid: 7665 components: - pos: 18.5,-5.5 parent: 2 type: Transform - - uid: 7652 + - uid: 7666 components: - pos: 19.5,-5.5 parent: 2 type: Transform - - uid: 7653 + - uid: 7667 components: - pos: 20.5,-5.5 parent: 2 type: Transform - - uid: 7654 + - uid: 7668 components: - pos: 21.5,-5.5 parent: 2 type: Transform - - uid: 7655 + - uid: 7669 components: - pos: 22.5,-5.5 parent: 2 type: Transform - - uid: 7656 + - uid: 7670 components: - pos: 23.5,-5.5 parent: 2 type: Transform - - uid: 7657 + - uid: 7671 components: - pos: 31.5,-17.5 parent: 2 type: Transform - - uid: 7658 + - uid: 7672 components: - pos: 30.5,-17.5 parent: 2 type: Transform - - uid: 7659 + - uid: 7673 components: - pos: 29.5,-17.5 parent: 2 type: Transform - - uid: 7660 + - uid: 7674 components: - pos: 28.5,-17.5 parent: 2 type: Transform - - uid: 7661 + - uid: 7675 components: - pos: 27.5,-17.5 parent: 2 type: Transform - - uid: 7662 + - uid: 7676 components: - pos: 26.5,-17.5 parent: 2 type: Transform - - uid: 7663 + - uid: 7677 components: - pos: 35.5,-20.5 parent: 2 type: Transform - - uid: 7664 + - uid: 7678 components: - pos: 35.5,-19.5 parent: 2 type: Transform - - uid: 7665 + - uid: 7679 components: - pos: 35.5,-18.5 parent: 2 type: Transform - - uid: 7666 + - uid: 7680 components: - pos: 35.5,-17.5 parent: 2 type: Transform - - uid: 7667 + - uid: 7681 components: - pos: 34.5,-17.5 parent: 2 type: Transform - - uid: 7668 + - uid: 7682 components: - pos: 33.5,-17.5 parent: 2 type: Transform - - uid: 7669 + - uid: 7683 components: - pos: 35.5,-27.5 parent: 2 type: Transform - - uid: 7670 + - uid: 7684 components: - pos: 35.5,-26.5 parent: 2 type: Transform - - uid: 7671 + - uid: 7685 components: - pos: 35.5,-25.5 parent: 2 type: Transform - - uid: 7672 + - uid: 7686 components: - pos: 35.5,-24.5 parent: 2 type: Transform - - uid: 7673 + - uid: 7687 components: - pos: 35.5,-23.5 parent: 2 type: Transform - - uid: 7674 + - uid: 7688 components: - pos: 35.5,-22.5 parent: 2 type: Transform - - uid: 7675 + - uid: 7689 components: - pos: 30.5,-5.5 parent: 2 type: Transform - - uid: 7676 + - uid: 7690 components: - pos: 29.5,-5.5 parent: 2 type: Transform - - uid: 7677 + - uid: 7691 components: - pos: 28.5,-5.5 parent: 2 type: Transform - - uid: 7678 + - uid: 7692 components: - pos: 27.5,-5.5 parent: 2 type: Transform - - uid: 7679 + - uid: 7693 components: - pos: 26.5,-5.5 parent: 2 type: Transform - - uid: 7680 + - uid: 7694 components: - pos: 33.5,-2.5 parent: 2 type: Transform - - uid: 7681 + - uid: 7695 components: - pos: 33.5,-3.5 parent: 2 type: Transform - - uid: 7682 + - uid: 7696 components: - pos: 33.5,-4.5 parent: 2 type: Transform - - uid: 7683 + - uid: 7697 components: - pos: 33.5,-5.5 parent: 2 type: Transform - - uid: 7684 + - uid: 7698 components: - pos: 32.5,-5.5 parent: 2 type: Transform - - uid: 7685 + - uid: 7699 components: - pos: 39.5,-30.5 parent: 2 type: Transform - - uid: 7686 + - uid: 7700 components: - pos: 35.5,-31.5 parent: 2 type: Transform - - uid: 7687 + - uid: 7701 components: - pos: 35.5,-33.5 parent: 2 type: Transform - - uid: 7688 + - uid: 7702 components: - pos: 35.5,-35.5 parent: 2 type: Transform - - uid: 7689 + - uid: 7703 components: - pos: 35.5,-37.5 parent: 2 type: Transform - - uid: 7690 + - uid: 7704 components: - pos: 35.5,-39.5 parent: 2 type: Transform - - uid: 7691 + - uid: 7705 components: - pos: 35.5,-41.5 parent: 2 type: Transform - - uid: 7692 + - uid: 7706 components: - pos: 17.5,-42.5 parent: 2 type: Transform - - uid: 7693 + - uid: 7707 components: - pos: 19.5,-42.5 parent: 2 type: Transform - - uid: 7694 + - uid: 7708 components: - pos: 10.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7695 + - uid: 7709 components: - pos: 33.5,-1.5 parent: 2 type: Transform - - uid: 7696 + - uid: 7710 components: - pos: 33.5,-0.5 parent: 2 type: Transform - - uid: 7697 + - uid: 7711 components: - pos: 33.5,0.5 parent: 2 type: Transform - - uid: 7698 + - uid: 7712 components: - pos: 33.5,1.5 parent: 2 type: Transform - - uid: 7699 + - uid: 7713 components: - pos: 33.5,2.5 parent: 2 type: Transform - - uid: 7700 + - uid: 7714 components: - pos: 33.5,3.5 parent: 2 type: Transform - - uid: 7701 + - uid: 7715 components: - pos: 33.5,4.5 parent: 2 type: Transform - - uid: 7702 + - uid: 7716 components: - pos: 33.5,5.5 parent: 2 type: Transform - - uid: 7703 + - uid: 7717 components: - pos: 33.5,6.5 parent: 2 type: Transform - - uid: 7704 + - uid: 7718 components: - pos: 33.5,7.5 parent: 2 type: Transform - - uid: 7705 + - uid: 7719 components: - pos: 32.5,7.5 parent: 2 type: Transform - - uid: 7706 + - uid: 7720 components: - pos: 31.5,7.5 parent: 2 type: Transform - - uid: 7707 + - uid: 7721 components: - pos: 29.5,7.5 parent: 2 type: Transform - - uid: 7708 + - uid: 7722 components: - pos: 28.5,7.5 parent: 2 type: Transform - - uid: 7709 + - uid: 7723 components: - pos: 27.5,7.5 parent: 2 type: Transform - - uid: 7710 + - uid: 7724 components: - pos: 26.5,7.5 parent: 2 type: Transform - - uid: 7711 + - uid: 7725 components: - pos: 25.5,7.5 parent: 2 type: Transform - - uid: 7712 + - uid: 7726 components: - pos: 24.5,7.5 parent: 2 type: Transform - - uid: 7713 + - uid: 7727 components: - pos: 23.5,7.5 parent: 2 type: Transform - - uid: 7714 + - uid: 7728 components: - pos: 22.5,7.5 parent: 2 type: Transform - - uid: 7715 + - uid: 7729 components: - pos: 21.5,7.5 parent: 2 type: Transform - - uid: 7716 + - uid: 7730 components: - pos: 20.5,7.5 parent: 2 type: Transform - - uid: 7717 + - uid: 7731 components: - pos: 19.5,7.5 parent: 2 type: Transform - - uid: 7718 + - uid: 7732 components: - pos: 18.5,7.5 parent: 2 type: Transform - - uid: 7719 + - uid: 7733 components: - pos: 17.5,7.5 parent: 2 type: Transform - - uid: 7720 + - uid: 7734 components: - pos: 17.5,6.5 parent: 2 type: Transform - - uid: 7721 + - uid: 7735 components: - pos: 17.5,5.5 parent: 2 type: Transform - - uid: 7722 + - uid: 7736 components: - pos: 17.5,4.5 parent: 2 type: Transform - - uid: 7723 + - uid: 7737 components: - pos: 17.5,3.5 parent: 2 type: Transform - - uid: 7724 + - uid: 7738 components: - pos: 17.5,2.5 parent: 2 type: Transform - - uid: 7725 + - uid: 7739 components: - pos: 17.5,1.5 parent: 2 type: Transform - - uid: 7726 + - uid: 7740 components: - pos: 17.5,0.5 parent: 2 type: Transform - - uid: 7727 + - uid: 7741 components: - pos: 17.5,-0.5 parent: 2 type: Transform - - uid: 7728 + - uid: 7742 components: - pos: 17.5,-1.5 parent: 2 type: Transform - - uid: 7729 + - uid: 7743 components: - pos: 17.5,-2.5 parent: 2 type: Transform - - uid: 7730 + - uid: 7744 components: - pos: 17.5,-3.5 parent: 2 type: Transform - - uid: 7731 + - uid: 7745 components: - pos: 17.5,-4.5 parent: 2 type: Transform - - uid: 7732 + - uid: 7746 components: - pos: -4.5,-17.5 parent: 2 type: Transform - - uid: 7733 + - uid: 7747 components: - pos: -4.5,-16.5 parent: 2 type: Transform - - uid: 7734 + - uid: 7748 components: - pos: -4.5,-15.5 parent: 2 type: Transform - - uid: 7735 + - uid: 7749 components: - pos: -4.5,-14.5 parent: 2 type: Transform - - uid: 7736 + - uid: 7750 components: - pos: -4.5,-13.5 parent: 2 type: Transform - - uid: 7737 + - uid: 7751 components: - pos: -4.5,-12.5 parent: 2 type: Transform - - uid: 7738 + - uid: 7752 components: - pos: -4.5,-11.5 parent: 2 type: Transform - - uid: 7739 + - uid: 7753 components: - pos: -4.5,-10.5 parent: 2 type: Transform - - uid: 7740 + - uid: 7754 components: - pos: -4.5,-9.5 parent: 2 type: Transform - - uid: 7741 + - uid: 7755 components: - pos: -4.5,-8.5 parent: 2 type: Transform - - uid: 7742 + - uid: 7756 components: - pos: -4.5,-7.5 parent: 2 type: Transform - - uid: 7743 + - uid: 7757 components: - pos: -4.5,-6.5 parent: 2 type: Transform - - uid: 7744 + - uid: 7758 components: - pos: -4.5,-5.5 parent: 2 type: Transform - - uid: 7745 + - uid: 7759 components: - pos: -4.5,-4.5 parent: 2 type: Transform - - uid: 7746 + - uid: 7760 components: - pos: -4.5,-3.5 parent: 2 type: Transform - - uid: 7747 + - uid: 7761 components: - pos: -4.5,-2.5 parent: 2 type: Transform - - uid: 7748 + - uid: 7762 components: - pos: -4.5,-1.5 parent: 2 type: Transform - - uid: 7749 + - uid: 7763 components: - pos: -4.5,-0.5 parent: 2 type: Transform - - uid: 7750 + - uid: 7764 components: - pos: -4.5,0.5 parent: 2 type: Transform - - uid: 7751 + - uid: 7765 components: - pos: -4.5,1.5 parent: 2 type: Transform - - uid: 7752 + - uid: 7766 components: - pos: 25.5,8.5 parent: 2 type: Transform - - uid: 7753 + - uid: 7767 components: - pos: 25.5,9.5 parent: 2 type: Transform - - uid: 7754 + - uid: 7768 components: - pos: 24.5,9.5 parent: 2 type: Transform - - uid: 7755 + - uid: 7769 components: - pos: 24.5,10.5 parent: 2 type: Transform - - uid: 7756 + - uid: 7770 components: - pos: 24.5,11.5 parent: 2 type: Transform - - uid: 7757 + - uid: 7771 components: - pos: 24.5,12.5 parent: 2 type: Transform - - uid: 7758 + - uid: 7772 components: - pos: 24.5,13.5 parent: 2 type: Transform - - uid: 7759 + - uid: 7773 components: - pos: 24.5,14.5 parent: 2 type: Transform - - uid: 7760 + - uid: 7774 components: - pos: 24.5,15.5 parent: 2 type: Transform - - uid: 7761 + - uid: 7775 components: - pos: 24.5,16.5 parent: 2 type: Transform - - uid: 7762 + - uid: 7776 components: - pos: 23.5,16.5 parent: 2 type: Transform - - uid: 7763 + - uid: 7777 components: - pos: 22.5,16.5 parent: 2 type: Transform - - uid: 7764 + - uid: 7778 components: - pos: 24.5,17.5 parent: 2 type: Transform - - uid: 7765 + - uid: 7779 components: - pos: 24.5,18.5 parent: 2 type: Transform - - uid: 7766 + - uid: 7780 components: - pos: 25.5,18.5 parent: 2 type: Transform - - uid: 7767 + - uid: 7781 components: - pos: 26.5,18.5 parent: 2 type: Transform - - uid: 7768 + - uid: 7782 components: - pos: 27.5,18.5 parent: 2 type: Transform - - uid: 7769 + - uid: 7783 components: - pos: 28.5,18.5 parent: 2 type: Transform - - uid: 7770 + - uid: 7784 components: - pos: 29.5,18.5 parent: 2 type: Transform - - uid: 7771 + - uid: 7785 components: - pos: 29.5,20.5 parent: 2 type: Transform - - uid: 7772 + - uid: 7786 components: - pos: 29.5,19.5 parent: 2 type: Transform - - uid: 7773 + - uid: 7787 components: - pos: 29.5,21.5 parent: 2 type: Transform - - uid: 7774 + - uid: 7788 components: - pos: 30.5,21.5 parent: 2 type: Transform - - uid: 7775 + - uid: 7789 components: - pos: 31.5,21.5 parent: 2 type: Transform - - uid: 7776 + - uid: 7790 components: - pos: 32.5,21.5 parent: 2 type: Transform - - uid: 7777 + - uid: 7791 components: - pos: 32.5,22.5 parent: 2 type: Transform - - uid: 7778 + - uid: 7792 components: - pos: 32.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7779 + - uid: 7793 components: - pos: 32.5,24.5 parent: 2 type: Transform - - uid: 7780 + - uid: 7794 components: - pos: 32.5,25.5 parent: 2 type: Transform - - uid: 7781 + - uid: 7795 components: - pos: 22.5,17.5 parent: 2 type: Transform - - uid: 7782 + - uid: 7796 components: - pos: 22.5,18.5 parent: 2 type: Transform - - uid: 7783 + - uid: 7797 components: - pos: 22.5,19.5 parent: 2 type: Transform - - uid: 7784 + - uid: 7798 components: - pos: 22.5,20.5 parent: 2 type: Transform - - uid: 7785 + - uid: 7799 components: - pos: 22.5,21.5 parent: 2 type: Transform - - uid: 7786 + - uid: 7800 components: - pos: 22.5,22.5 parent: 2 type: Transform - - uid: 7787 + - uid: 7801 components: - pos: 21.5,22.5 parent: 2 type: Transform - - uid: 7788 + - uid: 7802 components: - pos: 21.5,23.5 parent: 2 type: Transform - - uid: 7789 + - uid: 7803 components: - pos: 21.5,24.5 parent: 2 type: Transform - - uid: 7790 + - uid: 7804 components: - pos: 21.5,25.5 parent: 2 type: Transform - - uid: 7791 + - uid: 7805 components: - pos: 20.5,25.5 parent: 2 type: Transform - - uid: 7792 + - uid: 7806 components: - pos: 18.5,25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7793 + - uid: 7807 components: - pos: 19.5,25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7794 + - uid: 7808 components: - pos: 33.5,25.5 parent: 2 type: Transform - - uid: 7795 + - uid: 7809 components: - pos: -4.5,2.5 parent: 2 type: Transform - - uid: 7796 + - uid: 7810 components: - pos: -5.5,2.5 parent: 2 type: Transform - - uid: 7797 + - uid: 7811 components: - pos: -6.5,2.5 parent: 2 type: Transform - - uid: 7798 + - uid: 7812 components: - pos: -7.5,2.5 parent: 2 type: Transform - - uid: 7799 + - uid: 7813 components: - pos: -8.5,2.5 parent: 2 type: Transform - - uid: 7800 + - uid: 7814 components: - pos: -9.5,2.5 parent: 2 type: Transform - - uid: 7801 + - uid: 7815 components: - pos: -10.5,2.5 parent: 2 type: Transform - - uid: 7802 + - uid: 7816 components: - pos: -11.5,2.5 parent: 2 type: Transform - - uid: 7803 + - uid: 7817 components: - pos: -12.5,2.5 parent: 2 type: Transform - - uid: 7804 + - uid: 7818 components: - pos: -13.5,2.5 parent: 2 type: Transform - - uid: 7805 + - uid: 7819 components: - pos: -2.5,-62.5 parent: 2 type: Transform - - uid: 7806 + - uid: 7820 components: - pos: 34.5,1.5 parent: 2 type: Transform - - uid: 7807 + - uid: 7821 components: - pos: 35.5,1.5 parent: 2 type: Transform - - uid: 7808 + - uid: 7822 components: - pos: 36.5,1.5 parent: 2 type: Transform - - uid: 7809 + - uid: 7823 components: - pos: 36.5,2.5 parent: 2 type: Transform - - uid: 7810 + - uid: 7824 components: - pos: 37.5,2.5 parent: 2 type: Transform - - uid: 7811 + - uid: 7825 components: - pos: 38.5,2.5 parent: 2 type: Transform - - uid: 7812 + - uid: 7826 components: - pos: 39.5,2.5 parent: 2 type: Transform - - uid: 7813 + - uid: 7827 components: - pos: 40.5,2.5 parent: 2 type: Transform - - uid: 7814 + - uid: 7828 components: - pos: 41.5,2.5 parent: 2 type: Transform - - uid: 7815 + - uid: 7829 components: - pos: 42.5,2.5 parent: 2 type: Transform - - uid: 7816 + - uid: 7830 components: - pos: 44.5,2.5 parent: 2 type: Transform - - uid: 7817 + - uid: 7831 components: - pos: 43.5,2.5 parent: 2 type: Transform - - uid: 7818 + - uid: 7832 components: - pos: -10.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7819 + - uid: 7833 components: - pos: -14.5,35.5 parent: 2 type: Transform - - uid: 7820 + - uid: 7834 components: - pos: -9.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7821 + - uid: 7835 components: - pos: -20.5,29.5 parent: 2 type: Transform - - uid: 7822 + - uid: 7836 components: - pos: -18.5,29.5 parent: 2 type: Transform - - uid: 7823 + - uid: 7837 components: - pos: -20.5,28.5 parent: 2 type: Transform - - uid: 7824 + - uid: 7838 components: - pos: -14.5,31.5 parent: 2 type: Transform - - uid: 7825 + - uid: 7839 components: - pos: -19.5,29.5 parent: 2 type: Transform - - uid: 7826 + - uid: 7840 components: - pos: -14.5,33.5 parent: 2 type: Transform - - uid: 7827 + - uid: 7841 components: - pos: -20.5,26.5 parent: 2 type: Transform - - uid: 7828 + - uid: 7842 components: - pos: -20.5,27.5 parent: 2 type: Transform - - uid: 7829 + - uid: 7843 components: - pos: -14.5,39.5 parent: 2 type: Transform - - uid: 7830 + - uid: 7844 components: - pos: -14.5,40.5 parent: 2 type: Transform - - uid: 7831 + - uid: 7845 components: - pos: -9.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7832 + - uid: 7846 components: - pos: -9.5,29.5 parent: 2 type: Transform - - uid: 7833 + - uid: 7847 components: - pos: -8.5,29.5 parent: 2 type: Transform - - uid: 7834 + - uid: 7848 components: - pos: -8.5,30.5 parent: 2 type: Transform - - uid: 7835 + - uid: 7849 components: - pos: -8.5,31.5 parent: 2 type: Transform - - uid: 7836 + - uid: 7850 components: - pos: 16.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7837 + - uid: 7851 components: - pos: 16.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7838 + - uid: 7852 components: - pos: 16.5,25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7839 + - uid: 7853 components: - pos: 17.5,25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7840 + - uid: 7854 components: - pos: 45.5,2.5 parent: 2 type: Transform - - uid: 7841 + - uid: 7855 components: - pos: 46.5,2.5 parent: 2 type: Transform - - uid: 7842 + - uid: 7856 components: - pos: 47.5,2.5 parent: 2 type: Transform - - uid: 7843 + - uid: 7857 components: - pos: 48.5,2.5 parent: 2 type: Transform - - uid: 7844 + - uid: 7858 components: - pos: 49.5,2.5 parent: 2 type: Transform - - uid: 7845 + - uid: 7859 components: - pos: 50.5,2.5 parent: 2 type: Transform - - uid: 7846 + - uid: 7860 components: - pos: 51.5,2.5 parent: 2 type: Transform - - uid: 7847 + - uid: 7861 components: - pos: 52.5,2.5 parent: 2 type: Transform - - uid: 7848 + - uid: 7862 components: - pos: 52.5,1.5 parent: 2 type: Transform - - uid: 7849 + - uid: 7863 components: - pos: 52.5,0.5 parent: 2 type: Transform - - uid: 7850 + - uid: 7864 components: - pos: 52.5,-0.5 parent: 2 type: Transform - - uid: 7851 + - uid: 7865 components: - pos: 53.5,1.5 parent: 2 type: Transform - - uid: 7852 + - uid: 7866 components: - pos: 54.5,1.5 parent: 2 type: Transform - - uid: 7853 + - uid: 7867 components: - pos: 55.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7854 + - uid: 7868 components: - pos: 56.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7855 + - uid: 7869 components: - pos: 57.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7856 + - uid: 7870 components: - pos: 58.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7857 + - uid: 7871 components: - pos: 59.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7858 + - uid: 7872 components: - pos: 60.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7859 + - uid: 7873 components: - pos: 61.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7860 + - uid: 7874 components: - pos: 62.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7861 + - uid: 7875 components: - pos: 62.5,2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7862 + - uid: 7876 components: - pos: 62.5,3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7863 + - uid: 7877 components: - pos: 62.5,4.5 parent: 2 type: Transform - - uid: 7864 + - uid: 7878 components: - pos: 62.5,5.5 parent: 2 type: Transform - - uid: 7865 + - uid: 7879 components: - pos: 62.5,6.5 parent: 2 type: Transform - - uid: 7866 + - uid: 7880 components: - pos: 62.5,7.5 parent: 2 type: Transform - - uid: 7867 + - uid: 7881 components: - pos: 63.5,7.5 parent: 2 type: Transform - - uid: 7868 + - uid: 7882 components: - pos: 25.5,-52.5 parent: 2 type: Transform - - uid: 7869 + - uid: 7883 components: - pos: 25.5,-53.5 parent: 2 type: Transform - - uid: 7870 + - uid: 7884 components: - pos: 25.5,-54.5 parent: 2 type: Transform - - uid: 7871 + - uid: 7885 components: - pos: 25.5,-55.5 parent: 2 type: Transform - - uid: 7872 + - uid: 7886 components: - pos: 25.5,-56.5 parent: 2 type: Transform - - uid: 7873 + - uid: 7887 components: - pos: 25.5,-57.5 parent: 2 type: Transform - - uid: 7874 + - uid: 7888 components: - pos: 25.5,-58.5 parent: 2 type: Transform - - uid: 7875 + - uid: 7889 components: - pos: 25.5,-59.5 parent: 2 type: Transform - - uid: 7876 + - uid: 7890 components: - pos: 26.5,-59.5 parent: 2 type: Transform - - uid: 7877 + - uid: 7891 components: - pos: 27.5,-59.5 parent: 2 type: Transform - - uid: 7878 + - uid: 7892 components: - pos: 28.5,-59.5 parent: 2 type: Transform - - uid: 7879 + - uid: 7893 components: - pos: 29.5,-59.5 parent: 2 type: Transform - - uid: 7880 + - uid: 7894 components: - pos: 30.5,-59.5 parent: 2 type: Transform - - uid: 7881 + - uid: 7895 components: - pos: 31.5,-59.5 parent: 2 type: Transform - - uid: 7882 + - uid: 7896 components: - pos: 32.5,-59.5 parent: 2 type: Transform - - uid: 7883 + - uid: 7897 components: - pos: 33.5,-59.5 parent: 2 type: Transform - - uid: 7884 + - uid: 7898 components: - pos: 34.5,-59.5 parent: 2 type: Transform - - uid: 7885 + - uid: 7899 components: - pos: -13.5,1.5 parent: 2 type: Transform - - uid: 7886 + - uid: 7900 components: - pos: -13.5,0.5 parent: 2 type: Transform - - uid: 7887 + - uid: 7901 components: - pos: -13.5,-0.5 parent: 2 type: Transform - - uid: 7888 + - uid: 7902 components: - pos: -13.5,-1.5 parent: 2 type: Transform - - uid: 7889 + - uid: 7903 components: - pos: -13.5,-2.5 parent: 2 type: Transform - - uid: 7890 + - uid: 7904 components: - pos: -13.5,-3.5 parent: 2 type: Transform - - uid: 7891 + - uid: 7905 components: - pos: -13.5,-4.5 parent: 2 type: Transform - - uid: 7892 + - uid: 7906 components: - pos: -13.5,-5.5 parent: 2 type: Transform - - uid: 7893 + - uid: 7907 components: - pos: -14.5,-5.5 parent: 2 type: Transform - - uid: 7894 + - uid: 7908 components: - pos: -15.5,-5.5 parent: 2 type: Transform - - uid: 7895 + - uid: 7909 components: - pos: -16.5,-5.5 parent: 2 type: Transform - - uid: 7896 + - uid: 7910 components: - pos: -17.5,-5.5 parent: 2 type: Transform - - uid: 7897 + - uid: 7911 components: - pos: -18.5,-5.5 parent: 2 type: Transform - - uid: 7898 + - uid: 7912 components: - pos: -19.5,-5.5 parent: 2 type: Transform - - uid: 7899 + - uid: 7913 components: - pos: -19.5,-6.5 parent: 2 type: Transform - - uid: 7900 + - uid: 7914 components: - pos: -19.5,-7.5 parent: 2 type: Transform - - uid: 7901 + - uid: 7915 components: - pos: -19.5,-8.5 parent: 2 type: Transform - - uid: 7902 + - uid: 7916 components: - pos: -19.5,-9.5 parent: 2 type: Transform - - uid: 7903 + - uid: 7917 components: - pos: -19.5,-10.5 parent: 2 type: Transform - - uid: 7904 + - uid: 7918 components: - pos: -19.5,-11.5 parent: 2 type: Transform - - uid: 7905 + - uid: 7919 components: - pos: -19.5,-12.5 parent: 2 type: Transform - - uid: 7906 + - uid: 7920 components: - pos: -19.5,-13.5 parent: 2 type: Transform - - uid: 7907 + - uid: 7921 components: - pos: -19.5,-14.5 parent: 2 type: Transform - - uid: 7908 + - uid: 7922 components: - pos: -19.5,-15.5 parent: 2 type: Transform - - uid: 7909 + - uid: 7923 components: - pos: -19.5,-16.5 parent: 2 type: Transform - - uid: 7910 + - uid: 7924 components: - pos: -19.5,-17.5 parent: 2 type: Transform - - uid: 7911 + - uid: 7925 components: - pos: -19.5,-18.5 parent: 2 type: Transform - - uid: 7912 + - uid: 7926 components: - pos: -19.5,-19.5 parent: 2 type: Transform - - uid: 7913 + - uid: 7927 components: - pos: -19.5,-20.5 parent: 2 type: Transform - - uid: 7914 + - uid: 7928 components: - pos: -19.5,-21.5 parent: 2 type: Transform - - uid: 7915 + - uid: 7929 components: - pos: -19.5,-22.5 parent: 2 type: Transform - - uid: 7916 + - uid: 7930 components: - pos: -19.5,-23.5 parent: 2 type: Transform - - uid: 7917 + - uid: 7931 components: - pos: -19.5,-24.5 parent: 2 type: Transform - - uid: 7918 + - uid: 7932 components: - pos: -19.5,-25.5 parent: 2 type: Transform - - uid: 7919 + - uid: 7933 components: - pos: -19.5,-26.5 parent: 2 type: Transform - - uid: 7920 + - uid: 7934 components: - pos: -19.5,-27.5 parent: 2 type: Transform - - uid: 7921 + - uid: 7935 components: - pos: -18.5,-26.5 parent: 2 type: Transform - - uid: 7922 + - uid: 7936 components: - pos: 4.5,-15.5 parent: 2 type: Transform - - uid: 7923 + - uid: 7937 components: - pos: 52.5,-1.5 parent: 2 type: Transform - - uid: 7924 + - uid: 7938 components: - pos: 52.5,-2.5 parent: 2 type: Transform - - uid: 7925 + - uid: 7939 components: - pos: 52.5,-3.5 parent: 2 type: Transform - - uid: 7926 + - uid: 7940 components: - pos: 52.5,-4.5 parent: 2 type: Transform - - uid: 7927 + - uid: 7941 components: - pos: 52.5,-5.5 parent: 2 type: Transform - - uid: 7928 + - uid: 7942 components: - pos: 52.5,-6.5 parent: 2 type: Transform - - uid: 7929 + - uid: 7943 components: - pos: 52.5,-7.5 parent: 2 type: Transform - - uid: 7930 + - uid: 7944 components: - pos: 51.5,-7.5 parent: 2 type: Transform - - uid: 7931 + - uid: 7945 components: - pos: 50.5,-7.5 parent: 2 type: Transform - - uid: 7932 + - uid: 7946 components: - pos: 51.5,-1.5 parent: 2 type: Transform - - uid: 7933 + - uid: 7947 components: - pos: 50.5,-1.5 parent: 2 type: Transform - - uid: 7934 + - uid: 7948 components: - pos: 49.5,-1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7935 + - uid: 7949 components: - pos: 48.5,-1.5 parent: 2 type: Transform - - uid: 7936 + - uid: 7950 components: - pos: 48.5,-2.5 parent: 2 type: Transform - - uid: 7937 + - uid: 7951 components: - pos: 48.5,-3.5 parent: 2 type: Transform - - uid: 7938 + - uid: 7952 components: - pos: 47.5,-3.5 parent: 2 type: Transform - - uid: 7939 + - uid: 7953 components: - pos: 71.5,-46.5 parent: 2 type: Transform - - uid: 7940 + - uid: 7954 components: - pos: 49.5,-7.5 parent: 2 type: Transform - - uid: 7941 + - uid: 7955 components: - pos: 49.5,-6.5 parent: 2 type: Transform - - uid: 7942 + - uid: 7956 components: - pos: 49.5,-5.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7943 + - uid: 7957 components: - pos: 48.5,-5.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7944 + - uid: 7958 components: - pos: 38.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7945 + - uid: 7959 components: - pos: -24.5,-16.5 parent: 2 type: Transform - - uid: 7946 + - uid: 7960 components: - pos: 36.5,-42.5 parent: 2 type: Transform - - uid: 7947 + - uid: 7961 components: - pos: 37.5,-42.5 parent: 2 type: Transform - - uid: 7948 + - uid: 7962 components: - pos: 38.5,-42.5 parent: 2 type: Transform - - uid: 7949 + - uid: 7963 components: - pos: 39.5,-42.5 parent: 2 type: Transform - - uid: 7950 + - uid: 7964 components: - pos: 40.5,-42.5 parent: 2 type: Transform - - uid: 7951 + - uid: 7965 components: - pos: 41.5,-42.5 parent: 2 type: Transform - - uid: 7952 + - uid: 7966 components: - pos: 42.5,-42.5 parent: 2 type: Transform - - uid: 7953 + - uid: 7967 components: - pos: 43.5,-42.5 parent: 2 type: Transform - - uid: 7954 + - uid: 7968 components: - pos: 44.5,-42.5 parent: 2 type: Transform - - uid: 7955 + - uid: 7969 components: - pos: 45.5,-42.5 parent: 2 type: Transform - - uid: 7956 + - uid: 7970 components: - pos: 46.5,-42.5 parent: 2 type: Transform - - uid: 7957 + - uid: 7971 components: - pos: 47.5,-42.5 parent: 2 type: Transform - - uid: 7958 + - uid: 7972 components: - pos: 48.5,-42.5 parent: 2 type: Transform - - uid: 7959 + - uid: 7973 components: - pos: 49.5,-42.5 parent: 2 type: Transform - - uid: 7960 + - uid: 7974 components: - pos: 49.5,-43.5 parent: 2 type: Transform - - uid: 7961 + - uid: 7975 components: - pos: 49.5,-44.5 parent: 2 type: Transform - - uid: 7962 + - uid: 7976 components: - pos: 38.5,-45.5 parent: 2 type: Transform - - uid: 7963 + - uid: 7977 components: - pos: 38.5,-43.5 parent: 2 type: Transform - - uid: 7964 + - uid: 7978 components: - pos: 38.5,-46.5 parent: 2 type: Transform - - uid: 7965 + - uid: 7979 components: - pos: -19.5,-4.5 parent: 2 type: Transform - - uid: 7966 + - uid: 7980 components: - pos: -19.5,-3.5 parent: 2 type: Transform - - uid: 7967 + - uid: 7981 components: - pos: -19.5,-2.5 parent: 2 type: Transform - - uid: 7968 + - uid: 7982 components: - pos: -19.5,-1.5 parent: 2 type: Transform - - uid: 7969 + - uid: 7983 components: - pos: -19.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7970 + - uid: 7984 components: - pos: -18.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7971 + - uid: 7985 components: - pos: -17.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7972 + - uid: 7986 components: - pos: -16.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7973 + - uid: 7987 components: - pos: -20.5,-12.5 parent: 2 type: Transform - - uid: 7974 + - uid: 7988 components: - pos: -21.5,-12.5 parent: 2 type: Transform - - uid: 7975 + - uid: 7989 components: - pos: -23.5,-12.5 parent: 2 type: Transform - - uid: 7976 + - uid: 7990 components: - pos: -22.5,-12.5 parent: 2 type: Transform - - uid: 7977 + - uid: 7991 components: - pos: -24.5,-17.5 parent: 2 type: Transform - - uid: 7978 + - uid: 7992 components: - pos: -25.5,-17.5 parent: 2 type: Transform - - uid: 7979 + - uid: 7993 components: - pos: -26.5,-17.5 parent: 2 type: Transform - - uid: 7980 + - uid: 7994 components: - pos: -27.5,-17.5 parent: 2 type: Transform - - uid: 7981 + - uid: 7995 components: - pos: -28.5,-17.5 parent: 2 type: Transform - - uid: 7982 + - uid: 7996 components: - pos: -29.5,-17.5 parent: 2 type: Transform - - uid: 7983 + - uid: 7997 components: - pos: -30.5,-17.5 parent: 2 type: Transform - - uid: 7984 + - uid: 7998 components: - pos: -31.5,-17.5 parent: 2 type: Transform - - uid: 7985 + - uid: 7999 components: - pos: -20.5,-22.5 parent: 2 type: Transform - - uid: 7986 + - uid: 8000 components: - pos: -21.5,-22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7987 + - uid: 8001 components: - pos: -22.5,-22.5 parent: 2 type: Transform - - uid: 7988 + - uid: 8002 components: - pos: -23.5,-22.5 parent: 2 type: Transform - - uid: 7989 + - uid: 8003 components: - pos: -24.5,-22.5 parent: 2 type: Transform - - uid: 7990 + - uid: 8004 components: - pos: -25.5,-22.5 parent: 2 type: Transform - - uid: 7991 + - uid: 8005 components: - pos: -26.5,-22.5 parent: 2 type: Transform - - uid: 7992 + - uid: 8006 components: - pos: -27.5,-22.5 parent: 2 type: Transform - - uid: 7993 + - uid: 8007 components: - pos: -28.5,-22.5 parent: 2 type: Transform - - uid: 7994 + - uid: 8008 components: - pos: -28.5,-23.5 parent: 2 type: Transform - - uid: 7995 + - uid: 8009 components: - pos: -24.5,-12.5 parent: 2 type: Transform - - uid: 7996 + - uid: 8010 components: - pos: 35.5,-59.5 parent: 2 type: Transform - - uid: 7997 + - uid: 8011 components: - pos: 36.5,-59.5 parent: 2 type: Transform - - uid: 7998 + - uid: 8012 components: - pos: 37.5,-59.5 parent: 2 type: Transform - - uid: 7999 + - uid: 8013 components: - pos: -18.5,-41.5 parent: 2 type: Transform - - uid: 8000 + - uid: 8014 components: - pos: -18.5,-40.5 parent: 2 type: Transform - - uid: 8001 + - uid: 8015 components: - pos: -18.5,-39.5 parent: 2 type: Transform - - uid: 8002 + - uid: 8016 components: - pos: -18.5,-38.5 parent: 2 type: Transform - - uid: 8003 + - uid: 8017 components: - pos: -18.5,-37.5 parent: 2 type: Transform - - uid: 8004 + - uid: 8018 components: - pos: -18.5,-36.5 parent: 2 type: Transform - - uid: 8005 + - uid: 8019 components: - pos: -18.5,-35.5 parent: 2 type: Transform - - uid: 8006 + - uid: 8020 components: - pos: -18.5,-34.5 parent: 2 type: Transform - - uid: 8007 + - uid: 8021 components: - pos: -18.5,-33.5 parent: 2 type: Transform - - uid: 8008 + - uid: 8022 components: - pos: -18.5,-32.5 parent: 2 type: Transform - - uid: 8009 + - uid: 8023 components: - pos: -18.5,-31.5 parent: 2 type: Transform - - uid: 8010 + - uid: 8024 components: - pos: -18.5,-30.5 parent: 2 type: Transform - - uid: 8011 + - uid: 8025 components: - pos: -19.5,-30.5 parent: 2 type: Transform - - uid: 8012 + - uid: 8026 components: - pos: -19.5,-29.5 parent: 2 type: Transform - - uid: 8013 + - uid: 8027 components: - pos: -19.5,-28.5 parent: 2 type: Transform - - uid: 8014 + - uid: 8028 components: - pos: 38.5,-59.5 parent: 2 type: Transform - - uid: 8015 + - uid: 8029 components: - pos: 39.5,-59.5 parent: 2 type: Transform - - uid: 8016 + - uid: 8030 components: - pos: 40.5,-59.5 parent: 2 type: Transform - - uid: 8017 + - uid: 8031 components: - pos: 40.5,-60.5 parent: 2 type: Transform - - uid: 8018 + - uid: 8032 components: - pos: 40.5,-61.5 parent: 2 type: Transform - - uid: 8019 + - uid: 8033 components: - pos: 40.5,-62.5 parent: 2 type: Transform - - uid: 8020 + - uid: 8034 components: - pos: 40.5,-63.5 parent: 2 type: Transform - - uid: 8021 + - uid: 8035 components: - pos: 40.5,-64.5 parent: 2 type: Transform - - uid: 8022 + - uid: 8036 components: - pos: 40.5,-65.5 parent: 2 type: Transform - - uid: 8023 + - uid: 8037 components: - pos: 40.5,-66.5 parent: 2 type: Transform - - uid: 8024 + - uid: 8038 components: - pos: 40.5,-67.5 parent: 2 type: Transform - - uid: 8025 + - uid: 8039 components: - pos: 40.5,-68.5 parent: 2 type: Transform - - uid: 8026 + - uid: 8040 components: - pos: 41.5,-59.5 parent: 2 type: Transform - - uid: 8027 + - uid: 8041 components: - pos: 42.5,-59.5 parent: 2 type: Transform - - uid: 8028 + - uid: 8042 components: - pos: 43.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8029 + - uid: 8043 components: - pos: 43.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8030 + - uid: 8044 components: - pos: -31.5,-16.5 parent: 2 type: Transform - - uid: 8031 + - uid: 8045 components: - pos: -31.5,-15.5 parent: 2 type: Transform - - uid: 8032 + - uid: 8046 components: - pos: -31.5,-14.5 parent: 2 type: Transform - - uid: 8033 + - uid: 8047 components: - pos: -31.5,-13.5 parent: 2 type: Transform - - uid: 8034 + - uid: 8048 components: - pos: -31.5,-12.5 parent: 2 type: Transform - - uid: 8035 + - uid: 8049 components: - pos: -31.5,-11.5 parent: 2 type: Transform - - uid: 8036 + - uid: 8050 components: - pos: -32.5,-11.5 parent: 2 type: Transform - - uid: 8037 + - uid: 8051 components: - pos: -33.5,-11.5 parent: 2 type: Transform - - uid: 8038 + - uid: 8052 components: - pos: -34.5,-11.5 parent: 2 type: Transform - - uid: 8039 + - uid: 8053 components: - pos: -35.5,-11.5 parent: 2 type: Transform - - uid: 8040 + - uid: 8054 components: - pos: -36.5,-11.5 parent: 2 type: Transform - - uid: 8041 + - uid: 8055 components: - pos: -37.5,-11.5 parent: 2 type: Transform - - uid: 8042 + - uid: 8056 components: - pos: -38.5,-11.5 parent: 2 type: Transform - - uid: 8043 + - uid: 8057 components: - pos: -39.5,-11.5 parent: 2 type: Transform - - uid: 8044 + - uid: 8058 components: - pos: -40.5,-11.5 parent: 2 type: Transform - - uid: 8045 + - uid: 8059 components: - pos: -41.5,-11.5 parent: 2 type: Transform - - uid: 8046 + - uid: 8060 components: - pos: -42.5,-11.5 parent: 2 type: Transform - - uid: 8047 + - uid: 8061 components: - pos: -2.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8048 + - uid: 8062 components: - pos: -1.5,-69.5 parent: 2 type: Transform - - uid: 8049 + - uid: 8063 components: - pos: -1.5,-67.5 parent: 2 type: Transform - - uid: 8050 + - uid: 8064 components: - pos: -2.5,-60.5 parent: 2 type: Transform - - uid: 8051 + - uid: 8065 components: - pos: -2.5,-58.5 parent: 2 type: Transform - - uid: 8052 + - uid: 8066 components: - pos: -42.5,-6.5 parent: 2 type: Transform - - uid: 8053 + - uid: 8067 components: - pos: -42.5,-10.5 parent: 2 type: Transform - - uid: 8054 + - uid: 8068 components: - pos: -42.5,-7.5 parent: 2 type: Transform - - uid: 8055 + - uid: 8069 components: - pos: -42.5,-8.5 parent: 2 type: Transform - - uid: 8056 + - uid: 8070 components: - pos: -46.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8057 + - uid: 8071 components: - pos: -46.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8058 + - uid: 8072 components: - pos: -46.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8059 + - uid: 8073 components: - pos: -46.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8060 + - uid: 8074 components: - pos: -46.5,-10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8061 + - uid: 8075 components: - pos: -46.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8062 + - uid: 8076 components: - pos: -46.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8063 + - uid: 8077 components: - pos: -46.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8064 + - uid: 8078 components: - pos: -42.5,-9.5 parent: 2 type: Transform - - uid: 8065 + - uid: 8079 components: - pos: -46.5,-17.5 parent: 2 type: Transform - - uid: 8066 + - uid: 8080 components: - pos: -46.5,-18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8067 + - uid: 8081 components: - pos: -46.5,-19.5 parent: 2 type: Transform - - uid: 8068 + - uid: 8082 components: - pos: -47.5,-19.5 parent: 2 type: Transform - - uid: 8069 + - uid: 8083 components: - pos: -48.5,-19.5 parent: 2 type: Transform - - uid: 8070 + - uid: 8084 components: - pos: -48.5,-20.5 parent: 2 type: Transform - - uid: 8071 + - uid: 8085 components: - pos: -46.5,-20.5 parent: 2 type: Transform - - uid: 8072 + - uid: 8086 components: - pos: -45.5,-19.5 parent: 2 type: Transform - - uid: 8073 + - uid: 8087 components: - pos: -44.5,-19.5 parent: 2 type: Transform - - uid: 8074 + - uid: 8088 components: - pos: -44.5,-20.5 parent: 2 type: Transform - - uid: 8075 + - uid: 8089 components: - pos: -46.5,-21.5 parent: 2 type: Transform - - uid: 8076 + - uid: 8090 components: - pos: -48.5,-21.5 parent: 2 type: Transform - - uid: 8077 + - uid: 8091 components: - pos: -44.5,-21.5 parent: 2 type: Transform - - uid: 8078 + - uid: 8092 components: - pos: -46.5,-22.5 parent: 2 type: Transform - - uid: 8079 + - uid: 8093 components: - pos: -48.5,-22.5 parent: 2 type: Transform - - uid: 8080 + - uid: 8094 components: - pos: -44.5,-22.5 parent: 2 type: Transform - - uid: 8081 + - uid: 8095 components: - pos: -48.5,-23.5 parent: 2 type: Transform - - uid: 8082 + - uid: 8096 components: - pos: -47.5,-23.5 parent: 2 type: Transform - - uid: 8083 + - uid: 8097 components: - pos: -46.5,-23.5 parent: 2 type: Transform - - uid: 8084 + - uid: 8098 components: - pos: -44.5,-23.5 parent: 2 type: Transform - - uid: 8085 + - uid: 8099 components: - pos: -45.5,-23.5 parent: 2 type: Transform - - uid: 8086 + - uid: 8100 components: - pos: -49.5,-23.5 parent: 2 type: Transform - - uid: 8087 + - uid: 8101 components: - pos: -50.5,-23.5 parent: 2 type: Transform - - uid: 8088 + - uid: 8102 components: - pos: -51.5,-24.5 parent: 2 type: Transform - - uid: 8089 + - uid: 8103 components: - pos: -51.5,-23.5 parent: 2 type: Transform - - uid: 8090 + - uid: 8104 components: - pos: -43.5,-22.5 parent: 2 type: Transform - - uid: 8091 + - uid: 8105 components: - pos: -42.5,-22.5 parent: 2 type: Transform - - uid: 8092 + - uid: 8106 components: - pos: -51.5,-21.5 parent: 2 type: Transform - - uid: 8093 + - uid: 8107 components: - pos: -41.5,-22.5 parent: 2 type: Transform - - uid: 8094 + - uid: 8108 components: - pos: -41.5,-21.5 parent: 2 type: Transform - - uid: 8095 + - uid: 8109 components: - pos: -41.5,-20.5 parent: 2 type: Transform - - uid: 8096 + - uid: 8110 components: - pos: -43.5,-6.5 parent: 2 type: Transform - - uid: 8097 + - uid: 8111 components: - pos: -44.5,-6.5 parent: 2 type: Transform - - uid: 8098 + - uid: 8112 components: - pos: -45.5,-6.5 parent: 2 type: Transform - - uid: 8099 + - uid: 8113 components: - pos: -46.5,-6.5 parent: 2 type: Transform - - uid: 8100 + - uid: 8114 components: - pos: -47.5,-6.5 parent: 2 type: Transform - - uid: 8101 + - uid: 8115 components: - pos: -48.5,-6.5 parent: 2 type: Transform - - uid: 8102 + - uid: 8116 components: - pos: -49.5,-6.5 parent: 2 type: Transform - - uid: 8103 + - uid: 8117 components: - pos: -50.5,-6.5 parent: 2 type: Transform - - uid: 8104 + - uid: 8118 components: - pos: -51.5,-6.5 parent: 2 type: Transform - - uid: 8105 + - uid: 8119 components: - pos: -52.5,-6.5 parent: 2 type: Transform - - uid: 8106 + - uid: 8120 components: - pos: -52.5,-7.5 parent: 2 type: Transform - - uid: 8107 + - uid: 8121 components: - pos: -52.5,-8.5 parent: 2 type: Transform - - uid: 8108 + - uid: 8122 components: - pos: -52.5,-9.5 parent: 2 type: Transform - - uid: 8109 + - uid: 8123 components: - pos: -41.5,-12.5 parent: 2 type: Transform - - uid: 8110 + - uid: 8124 components: - pos: -41.5,-13.5 parent: 2 type: Transform - - uid: 8111 + - uid: 8125 components: - pos: -41.5,-14.5 parent: 2 type: Transform - - uid: 8112 + - uid: 8126 components: - pos: -41.5,-15.5 parent: 2 type: Transform - - uid: 8113 + - uid: 8127 components: - pos: -41.5,-18.5 parent: 2 type: Transform - - uid: 8114 + - uid: 8128 components: - pos: -41.5,-17.5 parent: 2 type: Transform - - uid: 8115 + - uid: 8129 components: - pos: -41.5,-19.5 parent: 2 type: Transform - - uid: 8116 + - uid: 8130 components: - pos: -41.5,-16.5 parent: 2 type: Transform - - uid: 8117 + - uid: 8131 components: - pos: -51.5,-9.5 parent: 2 type: Transform - - uid: 8118 + - uid: 8132 components: - pos: -50.5,-9.5 parent: 2 type: Transform - - uid: 8119 + - uid: 8133 components: - pos: -50.5,-8.5 parent: 2 type: Transform - - uid: 8120 + - uid: 8134 components: - pos: -57.5,-20.5 parent: 2 type: Transform - - uid: 8121 + - uid: 8135 components: - pos: -14.5,45.5 parent: 2 type: Transform - - uid: 8122 + - uid: 8136 components: - pos: -14.5,44.5 parent: 2 type: Transform - - uid: 8123 + - uid: 8137 components: - pos: -56.5,-24.5 parent: 2 type: Transform - - uid: 8124 + - uid: 8138 components: - pos: -65.5,-25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8125 + - uid: 8139 components: - pos: -53.5,-19.5 parent: 2 type: Transform - - uid: 8126 + - uid: 8140 components: - pos: -66.5,-25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8127 + - uid: 8141 components: - pos: -53.5,-21.5 parent: 2 type: Transform - - uid: 8128 + - uid: 8142 components: - pos: -57.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8129 + - uid: 8143 components: - pos: -64.5,-28.5 parent: 2 type: Transform - - uid: 8130 + - uid: 8144 components: - pos: -65.5,-28.5 parent: 2 type: Transform - - uid: 8131 + - uid: 8145 components: - pos: -66.5,-28.5 parent: 2 type: Transform - - uid: 8132 + - uid: 8146 components: - pos: -66.5,-27.5 parent: 2 type: Transform - - uid: 8133 + - uid: 8147 components: - pos: -66.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8134 + - uid: 8148 components: - pos: -64.5,-25.5 parent: 2 type: Transform - - uid: 8135 + - uid: 8149 components: - pos: -14.5,36.5 parent: 2 type: Transform - - uid: 8136 - components: - - pos: -59.5,-23.5 - parent: 2 - type: Transform - - uid: 8137 + - uid: 8150 components: - pos: -56.5,-23.5 parent: 2 type: Transform - - uid: 8138 + - uid: 8151 components: - pos: -56.5,-22.5 parent: 2 type: Transform - - uid: 8139 + - uid: 8152 components: - pos: -56.5,-21.5 parent: 2 type: Transform - - uid: 8140 + - uid: 8153 components: - pos: -56.5,-20.5 parent: 2 type: Transform - - uid: 8141 + - uid: 8154 components: - pos: -64.5,-29.5 parent: 2 type: Transform - - uid: 8142 + - uid: 8155 components: - pos: -64.5,-30.5 parent: 2 type: Transform - - uid: 8143 + - uid: 8156 components: - pos: -63.5,-30.5 parent: 2 type: Transform - - uid: 8144 + - uid: 8157 components: - pos: -62.5,-30.5 parent: 2 type: Transform - - uid: 8145 + - uid: 8158 components: - pos: -61.5,-30.5 parent: 2 type: Transform - - uid: 8146 + - uid: 8159 components: - pos: -60.5,-30.5 parent: 2 type: Transform - - uid: 8147 + - uid: 8160 components: - pos: -64.5,-31.5 parent: 2 type: Transform - - uid: 8148 + - uid: 8161 components: - pos: -68.5,-31.5 parent: 2 type: Transform - - uid: 8149 + - uid: 8162 components: - pos: -65.5,-31.5 parent: 2 type: Transform - - uid: 8150 + - uid: 8163 components: - pos: -14.5,42.5 parent: 2 type: Transform - - uid: 8151 + - uid: 8164 components: - pos: -60.5,-29.5 parent: 2 type: Transform - - uid: 8152 + - uid: 8165 components: - pos: -60.5,-26.5 parent: 2 type: Transform - - uid: 8153 + - uid: 8166 components: - pos: -60.5,-25.5 parent: 2 type: Transform - - uid: 8154 + - uid: 8167 components: - pos: -59.5,-25.5 parent: 2 type: Transform - - uid: 8155 + - uid: 8168 components: - pos: -58.5,-25.5 parent: 2 type: Transform - - uid: 8156 + - uid: 8169 components: - pos: -56.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8157 + - uid: 8170 components: - pos: -58.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8158 + - uid: 8171 components: - pos: -52.5,-19.5 parent: 2 type: Transform - - uid: 8159 + - uid: 8172 components: - pos: -51.5,-19.5 parent: 2 type: Transform - - uid: 8160 + - uid: 8173 components: - pos: -50.5,-19.5 parent: 2 type: Transform - - uid: 8161 + - uid: 8174 components: - pos: -49.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8162 + - uid: 8175 components: - pos: -31.5,-18.5 parent: 2 type: Transform - - uid: 8163 + - uid: 8176 components: - pos: -31.5,-19.5 parent: 2 type: Transform - - uid: 8164 + - uid: 8177 components: - pos: -31.5,-20.5 parent: 2 type: Transform - - uid: 8165 + - uid: 8178 components: - pos: -31.5,-21.5 parent: 2 type: Transform - - uid: 8166 + - uid: 8179 components: - pos: -31.5,-22.5 parent: 2 type: Transform - - uid: 8167 + - uid: 8180 components: - pos: -31.5,-23.5 parent: 2 type: Transform - - uid: 8168 + - uid: 8181 components: - pos: -31.5,-24.5 parent: 2 type: Transform - - uid: 8169 + - uid: 8182 components: - pos: -31.5,-25.5 parent: 2 type: Transform - - uid: 8170 + - uid: 8183 components: - pos: -31.5,-26.5 parent: 2 type: Transform - - uid: 8171 + - uid: 8184 components: - pos: -31.5,-27.5 parent: 2 type: Transform - - uid: 8172 + - uid: 8185 components: - pos: -31.5,-28.5 parent: 2 type: Transform - - uid: 8173 + - uid: 8186 components: - pos: -31.5,-29.5 parent: 2 type: Transform - - uid: 8174 + - uid: 8187 components: - pos: -31.5,-30.5 parent: 2 type: Transform - - uid: 8175 + - uid: 8188 components: - pos: -31.5,-31.5 parent: 2 type: Transform - - uid: 8176 + - uid: 8189 components: - pos: -31.5,-32.5 parent: 2 type: Transform - - uid: 8177 + - uid: 8190 components: - pos: -31.5,-33.5 parent: 2 type: Transform - - uid: 8178 + - uid: 8191 components: - pos: -31.5,-34.5 parent: 2 type: Transform - - uid: 8179 + - uid: 8192 components: - pos: -30.5,-34.5 parent: 2 type: Transform - - uid: 8180 + - uid: 8193 components: - pos: -29.5,-34.5 parent: 2 type: Transform - - uid: 8181 + - uid: 8194 components: - pos: -28.5,-34.5 parent: 2 type: Transform - - uid: 8182 + - uid: 8195 components: - pos: -28.5,-35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8183 + - uid: 8196 components: - pos: -28.5,-36.5 parent: 2 type: Transform - - uid: 8184 + - uid: 8197 components: - pos: -28.5,-37.5 parent: 2 type: Transform - - uid: 8185 + - uid: 8198 components: - pos: -27.5,-37.5 parent: 2 type: Transform - - uid: 8186 + - uid: 8199 components: - pos: -60.5,-28.5 parent: 2 type: Transform - - uid: 8187 + - uid: 8200 components: - pos: -71.5,-22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8188 + - uid: 8201 components: - pos: -72.5,-22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8189 + - uid: 8202 components: - pos: -73.5,-22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8190 + - uid: 8203 components: - pos: -74.5,-22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8191 + - uid: 8204 components: - pos: -75.5,-22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8192 + - uid: 8205 components: - pos: -76.5,-22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8193 + - uid: 8206 components: - pos: -76.5,-21.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8194 + - uid: 8207 components: - pos: -76.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8195 + - uid: 8208 components: - pos: -76.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8196 + - uid: 8209 components: - pos: -76.5,-18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8197 + - uid: 8210 components: - pos: -76.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8198 + - uid: 8211 components: - pos: -76.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8199 + - uid: 8212 components: - pos: -76.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8200 + - uid: 8213 components: - pos: -76.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8201 + - uid: 8214 components: - pos: -76.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8202 + - uid: 8215 components: - pos: -76.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8203 + - uid: 8216 components: - pos: -76.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8204 + - uid: 8217 components: - pos: -76.5,-10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8205 + - uid: 8218 components: - pos: -76.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8206 + - uid: 8219 components: - pos: -76.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8207 + - uid: 8220 components: - pos: -76.5,-7.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8208 + - uid: 8221 components: - pos: -76.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8209 + - uid: 8222 components: - pos: -76.5,-5.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8210 + - uid: 8223 components: - pos: -76.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8211 + - uid: 8224 components: - pos: -76.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8212 + - uid: 8225 components: - pos: -75.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8213 + - uid: 8226 components: - pos: -74.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8214 + - uid: 8227 components: - pos: -73.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8215 + - uid: 8228 components: - pos: -72.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8216 + - uid: 8229 components: - pos: -71.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8217 + - uid: 8230 components: - pos: -70.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8218 + - uid: 8231 components: - pos: -69.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8219 + - uid: 8232 components: - pos: -68.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8220 + - uid: 8233 components: - pos: -67.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8221 + - uid: 8234 components: - pos: -66.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8222 + - uid: 8235 components: - pos: -65.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8223 + - uid: 8236 components: - pos: -64.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8224 + - uid: 8237 components: - pos: -63.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8225 + - uid: 8238 components: - pos: -62.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8226 + - uid: 8239 components: - pos: -61.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8227 + - uid: 8240 components: - pos: -60.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8228 + - uid: 8241 components: - pos: -59.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8229 + - uid: 8242 components: - pos: -58.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8230 + - uid: 8243 components: - pos: -57.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8231 + - uid: 8244 components: - pos: -56.5,-3.5 parent: 2 type: Transform - - uid: 8232 + - uid: 8245 components: - pos: -56.5,-4.5 parent: 2 type: Transform - - uid: 8233 + - uid: 8246 components: - pos: -56.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8234 + - uid: 8247 components: - pos: -56.5,-5.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8235 + - uid: 8248 components: - pos: -76.5,-23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8236 + - uid: 8249 components: - pos: -76.5,-24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8237 + - uid: 8250 components: - pos: -76.5,-25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8238 + - uid: 8251 components: - pos: -53.5,-25.5 parent: 2 type: Transform - - uid: 8239 + - uid: 8252 components: - pos: -51.5,-25.5 parent: 2 type: Transform - - uid: 8240 + - uid: 8253 components: - pos: -71.5,-21.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8241 + - uid: 8254 components: - pos: -19.5,-42.5 parent: 2 type: Transform - - uid: 8242 + - uid: 8255 components: - pos: -20.5,-42.5 parent: 2 type: Transform - - uid: 8243 + - uid: 8256 components: - pos: -21.5,-42.5 parent: 2 type: Transform - - uid: 8244 + - uid: 8257 components: - pos: -22.5,-42.5 parent: 2 type: Transform - - uid: 8245 + - uid: 8258 components: - pos: -23.5,-42.5 parent: 2 type: Transform - - uid: 8246 + - uid: 8259 components: - pos: -23.5,-43.5 parent: 2 type: Transform - - uid: 8247 + - uid: 8260 components: - pos: -23.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8248 + - uid: 8261 components: - pos: -23.5,-45.5 parent: 2 type: Transform - - uid: 8249 + - uid: 8262 components: - pos: -23.5,-46.5 parent: 2 type: Transform - - uid: 8250 + - uid: 8263 components: - pos: -23.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8251 + - uid: 8264 components: - pos: -23.5,-48.5 parent: 2 type: Transform - - uid: 8252 + - uid: 8265 components: - pos: -23.5,-49.5 parent: 2 type: Transform - - uid: 8253 + - uid: 8266 components: - pos: -24.5,-49.5 parent: 2 type: Transform - - uid: 8254 + - uid: 8267 components: - pos: -25.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8255 + - uid: 8268 components: - pos: -26.5,-49.5 parent: 2 type: Transform - - uid: 8256 + - uid: 8269 components: - pos: -27.5,-49.5 parent: 2 type: Transform - - uid: 8257 + - uid: 8270 components: - pos: -27.5,-48.5 parent: 2 type: Transform - - uid: 8258 + - uid: 8271 components: - pos: -27.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8259 + - uid: 8272 components: - pos: -27.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8260 + - uid: 8273 components: - pos: -27.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8261 + - uid: 8274 components: - pos: -27.5,-44.5 parent: 2 type: Transform - - uid: 8262 + - uid: 8275 components: - pos: -28.5,-44.5 parent: 2 type: Transform - - uid: 8263 + - uid: 8276 components: - pos: -29.5,-44.5 parent: 2 type: Transform - - uid: 8264 + - uid: 8277 components: - pos: -30.5,-44.5 parent: 2 type: Transform - - uid: 8265 + - uid: 8278 components: - pos: -31.5,-44.5 parent: 2 type: Transform - - uid: 8266 + - uid: 8279 components: - pos: -31.5,-45.5 parent: 2 type: Transform - - uid: 8267 + - uid: 8280 components: - pos: -31.5,-46.5 parent: 2 type: Transform - - uid: 8268 + - uid: 8281 components: - pos: -31.5,-47.5 parent: 2 type: Transform - - uid: 8269 + - uid: 8282 components: - pos: -30.5,-47.5 parent: 2 type: Transform - - uid: 8270 + - uid: 8283 components: - pos: -30.5,-48.5 parent: 2 type: Transform - - uid: 8271 + - uid: 8284 components: - pos: -30.5,-49.5 parent: 2 type: Transform - - uid: 8272 + - uid: 8285 components: - pos: -30.5,-50.5 parent: 2 type: Transform - - uid: 8273 + - uid: 8286 components: - pos: -30.5,-51.5 parent: 2 type: Transform - - uid: 8274 + - uid: 8287 components: - pos: -30.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8275 + - uid: 8288 components: - pos: -30.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8276 + - uid: 8289 components: - pos: -31.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8277 + - uid: 8290 components: - pos: -31.5,-54.5 parent: 2 type: Transform - - uid: 8278 + - uid: 8291 components: - pos: -58.5,-88.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8279 + - uid: 8292 components: - pos: -57.5,-88.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8280 + - uid: 8293 components: - pos: -58.5,-86.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8281 + - uid: 8294 components: - pos: -57.5,-86.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8282 + - uid: 8295 components: - pos: -56.5,-88.5 parent: 2 type: Transform - - uid: 8283 + - uid: 8296 components: - pos: -57.5,-87.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8284 + - uid: 8297 components: - pos: -55.5,-88.5 parent: 2 type: Transform - - uid: 8285 + - uid: 8298 components: - pos: -55.5,-89.5 parent: 2 type: Transform - - uid: 8286 + - uid: 8299 components: - pos: -9.5,28.5 parent: 2 type: Transform - - uid: 8287 + - uid: 8300 components: - pos: 14.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8288 + - uid: 8301 components: - pos: 13.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8289 + - uid: 8302 components: - pos: 2.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8290 + - uid: 8303 components: - pos: 1.5,32.5 parent: 2 type: Transform - - uid: 8291 + - uid: 8304 components: - pos: 0.5,32.5 parent: 2 type: Transform - - uid: 8292 + - uid: 8305 components: - pos: -0.5,32.5 parent: 2 type: Transform - - uid: 8293 + - uid: 8306 components: - pos: -1.5,32.5 parent: 2 type: Transform - - uid: 8294 + - uid: 8307 components: - pos: -2.5,32.5 parent: 2 type: Transform - - uid: 8295 + - uid: 8308 components: - pos: -3.5,32.5 parent: 2 type: Transform - - uid: 8296 + - uid: 8309 components: - pos: -4.5,32.5 parent: 2 type: Transform - - uid: 8297 + - uid: 8310 components: - pos: -5.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8298 + - uid: 8311 components: - pos: -6.5,32.5 parent: 2 type: Transform - - uid: 8299 + - uid: 8312 components: - pos: -7.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8300 + - uid: 8313 components: - pos: -8.5,32.5 parent: 2 type: Transform - - uid: 8301 + - uid: 8314 components: - pos: -8.5,33.5 parent: 2 type: Transform - - uid: 8302 + - uid: 8315 components: - pos: -8.5,34.5 parent: 2 type: Transform - - uid: 8303 + - uid: 8316 components: - pos: -8.5,35.5 parent: 2 type: Transform - - uid: 8304 + - uid: 8317 components: - pos: -14.5,32.5 parent: 2 type: Transform - - uid: 8305 + - uid: 8318 components: - pos: -14.5,30.5 parent: 2 type: Transform - - uid: 8306 + - uid: 8319 components: - pos: -14.5,29.5 parent: 2 type: Transform - - uid: 8307 + - uid: 8320 components: - pos: -16.5,29.5 parent: 2 type: Transform - - uid: 8308 + - uid: 8321 components: - pos: -22.5,17.5 parent: 2 type: Transform - - uid: 8309 + - uid: 8322 components: - pos: -21.5,17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8310 + - uid: 8323 components: - pos: -20.5,17.5 parent: 2 type: Transform - - uid: 8311 + - uid: 8324 components: - pos: -22.5,16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8312 + - uid: 8325 components: - pos: -23.5,16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8313 + - uid: 8326 components: - pos: -23.5,15.5 parent: 2 type: Transform - - uid: 8314 + - uid: 8327 components: - pos: -13.5,3.5 parent: 2 type: Transform - - uid: 8315 + - uid: 8328 components: - pos: -13.5,4.5 parent: 2 type: Transform - - uid: 8316 + - uid: 8329 components: - pos: -13.5,5.5 parent: 2 type: Transform - - uid: 8317 + - uid: 8330 components: - pos: -13.5,6.5 parent: 2 type: Transform - - uid: 8318 + - uid: 8331 components: - pos: -13.5,7.5 parent: 2 type: Transform - - uid: 8319 + - uid: 8332 components: - pos: -14.5,7.5 parent: 2 type: Transform - - uid: 8320 + - uid: 8333 components: - pos: -15.5,7.5 parent: 2 type: Transform - - uid: 8321 + - uid: 8334 components: - pos: -16.5,7.5 parent: 2 type: Transform - - uid: 8322 + - uid: 8335 components: - pos: -17.5,7.5 parent: 2 type: Transform - - uid: 8323 + - uid: 8336 components: - pos: -18.5,7.5 parent: 2 type: Transform - - uid: 8324 + - uid: 8337 components: - pos: -19.5,7.5 parent: 2 type: Transform - - uid: 8325 + - uid: 8338 components: - pos: -20.5,7.5 parent: 2 type: Transform - - uid: 8326 + - uid: 8339 components: - pos: -20.5,8.5 parent: 2 type: Transform - - uid: 8327 + - uid: 8340 components: - pos: -20.5,9.5 parent: 2 type: Transform - - uid: 8328 + - uid: 8341 components: - pos: -20.5,10.5 parent: 2 type: Transform - - uid: 8329 + - uid: 8342 components: - pos: -20.5,11.5 parent: 2 type: Transform - - uid: 8330 + - uid: 8343 components: - pos: -20.5,12.5 parent: 2 type: Transform - - uid: 8331 + - uid: 8344 components: - pos: -20.5,13.5 parent: 2 type: Transform - - uid: 8332 + - uid: 8345 components: - pos: -20.5,14.5 parent: 2 type: Transform - - uid: 8333 + - uid: 8346 components: - pos: -20.5,15.5 parent: 2 type: Transform - - uid: 8334 + - uid: 8347 components: - pos: -20.5,16.5 parent: 2 type: Transform - - uid: 8335 + - uid: 8348 components: - pos: -71.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8336 + - uid: 8349 components: - pos: -72.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8337 + - uid: 8350 components: - pos: -73.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8338 + - uid: 8351 components: - pos: -73.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8339 + - uid: 8352 components: - pos: -73.5,-18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8340 + - uid: 8353 components: - pos: -73.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8341 + - uid: 8354 components: - pos: -73.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8342 + - uid: 8355 components: - pos: -73.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8343 + - uid: 8356 components: - pos: -73.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8344 + - uid: 8357 components: - pos: -73.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8345 + - uid: 8358 components: - pos: -73.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8346 + - uid: 8359 components: - pos: -73.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8347 + - uid: 8360 components: - pos: -73.5,-10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8348 + - uid: 8361 components: - pos: -73.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8349 + - uid: 8362 components: - pos: -73.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8350 + - uid: 8363 components: - pos: -73.5,-7.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8351 + - uid: 8364 components: - pos: -73.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8352 + - uid: 8365 components: - pos: -72.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8353 + - uid: 8366 components: - pos: -71.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8354 + - uid: 8367 components: - pos: -70.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8355 + - uid: 8368 components: - pos: -69.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8356 + - uid: 8369 components: - pos: -68.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8357 + - uid: 8370 components: - pos: -67.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8358 + - uid: 8371 components: - pos: -66.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8359 + - uid: 8372 components: - pos: -65.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8360 + - uid: 8373 components: - pos: -64.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8361 + - uid: 8374 components: - pos: -63.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8362 + - uid: 8375 components: - pos: -62.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8363 + - uid: 8376 components: - pos: -61.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8364 + - uid: 8377 components: - pos: -60.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8365 + - uid: 8378 components: - pos: -59.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8366 + - uid: 8379 components: - pos: -59.5,-7.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8367 + - uid: 8380 components: - pos: -59.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8368 + - uid: 8381 components: - pos: -59.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8369 + - uid: 8382 components: - pos: -59.5,-10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8370 + - uid: 8383 components: - pos: -59.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8371 + - uid: 8384 components: - pos: -59.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8372 + - uid: 8385 components: - pos: -59.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8373 + - uid: 8386 components: - pos: -59.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8374 + - uid: 8387 components: - pos: -59.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8375 + - uid: 8388 components: - pos: -59.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8376 + - uid: 8389 components: - pos: -59.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8377 + - uid: 8390 components: - pos: -59.5,-18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8378 + - uid: 8391 components: - pos: -59.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8379 + - uid: 8392 components: - pos: -59.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8380 + - uid: 8393 components: - pos: -60.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8381 + - uid: 8394 components: - pos: -61.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8382 + - uid: 8395 components: - pos: -62.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8383 + - uid: 8396 components: - pos: -63.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8384 + - uid: 8397 components: - pos: -64.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8385 + - uid: 8398 components: - pos: -65.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8386 + - uid: 8399 components: - pos: -66.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8387 + - uid: 8400 components: - pos: -67.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8388 + - uid: 8401 components: - pos: -68.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8389 + - uid: 8402 components: - pos: -69.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8390 + - uid: 8403 components: - pos: -70.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8391 + - uid: 8404 components: - pos: -20.5,-5.5 parent: 2 type: Transform - - uid: 8392 + - uid: 8405 components: - pos: -21.5,-5.5 parent: 2 type: Transform - - uid: 8393 + - uid: 8406 components: - pos: -22.5,-5.5 parent: 2 type: Transform - - uid: 8394 + - uid: 8407 components: - pos: -23.5,-5.5 parent: 2 type: Transform - - uid: 8395 + - uid: 8408 components: - pos: -24.5,-5.5 parent: 2 type: Transform - - uid: 8396 + - uid: 8409 components: - pos: -25.5,-5.5 parent: 2 type: Transform - - uid: 8397 + - uid: 8410 components: - pos: -25.5,-4.5 parent: 2 type: Transform - - uid: 8398 + - uid: 8411 components: - pos: -25.5,-3.5 parent: 2 type: Transform - - uid: 8399 + - uid: 8412 components: - pos: -25.5,-2.5 parent: 2 type: Transform - - uid: 8400 + - uid: 8413 components: - pos: -25.5,-1.5 parent: 2 type: Transform - - uid: 8401 + - uid: 8414 components: - pos: -25.5,-0.5 parent: 2 type: Transform - - uid: 8402 + - uid: 8415 components: - pos: -26.5,-0.5 parent: 2 type: Transform - - uid: 8403 + - uid: 8416 components: - pos: -27.5,-0.5 parent: 2 type: Transform - - uid: 8404 + - uid: 8417 components: - pos: -28.5,-0.5 parent: 2 type: Transform - - uid: 8405 + - uid: 8418 components: - pos: -29.5,-0.5 parent: 2 type: Transform - - uid: 8406 + - uid: 8419 components: - pos: -30.5,-0.5 parent: 2 type: Transform - - uid: 8407 + - uid: 8420 components: - pos: -31.5,-0.5 parent: 2 type: Transform - - uid: 8408 + - uid: 8421 components: - pos: -32.5,-0.5 parent: 2 type: Transform - - uid: 8409 + - uid: 8422 components: - pos: -33.5,-0.5 parent: 2 type: Transform - - uid: 8410 + - uid: 8423 components: - pos: -34.5,-0.5 parent: 2 type: Transform - - uid: 8411 + - uid: 8424 components: - pos: -35.5,-0.5 parent: 2 type: Transform - - uid: 8412 + - uid: 8425 components: - pos: -36.5,-0.5 parent: 2 type: Transform - - uid: 8413 + - uid: 8426 components: - pos: -37.5,-0.5 parent: 2 type: Transform - - uid: 8414 + - uid: 8427 components: - pos: -37.5,-1.5 parent: 2 type: Transform - - uid: 8415 + - uid: 8428 components: - pos: -37.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8416 + - uid: 8429 components: - pos: -36.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8417 + - uid: 8430 components: - pos: -35.5,-2.5 parent: 2 type: Transform - - uid: 8418 + - uid: 8431 components: - pos: -34.5,-2.5 parent: 2 type: Transform - - uid: 8419 + - uid: 8432 components: - pos: -34.5,-3.5 parent: 2 type: Transform - - uid: 8420 + - uid: 8433 components: - pos: -20.5,18.5 parent: 2 type: Transform - - uid: 8421 + - uid: 8434 components: - pos: -20.5,19.5 parent: 2 type: Transform - - uid: 8422 + - uid: 8435 components: - pos: -20.5,20.5 parent: 2 type: Transform - - uid: 8423 + - uid: 8436 components: - pos: -20.5,21.5 parent: 2 type: Transform - - uid: 8424 + - uid: 8437 components: - pos: -20.5,22.5 parent: 2 type: Transform - - uid: 8425 + - uid: 8438 components: - pos: -20.5,23.5 parent: 2 type: Transform - - uid: 8426 + - uid: 8439 components: - pos: -20.5,24.5 parent: 2 type: Transform - - uid: 8427 + - uid: 8440 components: - pos: -20.5,25.5 parent: 2 type: Transform - - uid: 8428 + - uid: 8441 components: - pos: 8.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8429 + - uid: 8442 components: - pos: 7.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8430 + - uid: 8443 components: - pos: 6.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8431 + - uid: 8444 components: - pos: 5.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8432 + - uid: 8445 components: - pos: 4.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8433 + - uid: 8446 components: - pos: 14.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8434 + - uid: 8447 components: - pos: 15.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8435 + - uid: 8448 components: - pos: 16.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8436 + - uid: 8449 components: - pos: 17.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8437 + - uid: 8450 components: - pos: 18.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8438 + - uid: 8451 components: - pos: 15.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8439 + - uid: 8452 components: - pos: 16.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8440 + - uid: 8453 components: - pos: 17.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8441 + - uid: 8454 components: - pos: 18.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8442 + - uid: 8455 components: - pos: 7.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8443 + - uid: 8456 components: - pos: 6.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8444 + - uid: 8457 components: - pos: 5.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8445 + - uid: 8458 components: - pos: 4.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8446 + - uid: 8459 components: - pos: 4.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8447 + - uid: 8460 components: - pos: 5.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8448 + - uid: 8461 components: - pos: 6.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8449 + - uid: 8462 components: - pos: 7.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8450 + - uid: 8463 components: - pos: 18.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8451 + - uid: 8464 components: - pos: 17.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8452 + - uid: 8465 components: - pos: 16.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8453 + - uid: 8466 components: - pos: 15.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8454 + - uid: 8467 components: - pos: -2.5,-57.5 parent: 2 type: Transform - - uid: 8455 + - uid: 8468 components: - pos: -2.5,-56.5 parent: 2 type: Transform - - uid: 8456 + - uid: 8469 components: - pos: -2.5,-55.5 parent: 2 type: Transform - - uid: 8457 + - uid: 8470 components: - pos: -2.5,-54.5 parent: 2 type: Transform - - uid: 8458 + - uid: 8471 components: - pos: -2.5,-53.5 parent: 2 type: Transform - - uid: 8459 + - uid: 8472 components: - pos: -1.5,-53.5 parent: 2 type: Transform - - uid: 8460 + - uid: 8473 components: - pos: -0.5,-53.5 parent: 2 type: Transform - - uid: 8461 + - uid: 8474 components: - pos: -0.5,-52.5 parent: 2 type: Transform - - uid: 8462 + - uid: 8475 components: - pos: -0.5,-51.5 parent: 2 type: Transform - - uid: 8463 + - uid: 8476 components: - pos: -0.5,-50.5 parent: 2 type: Transform - - uid: 8464 + - uid: 8477 components: - pos: -0.5,-49.5 parent: 2 type: Transform - - uid: 8465 + - uid: 8478 components: - pos: -0.5,-48.5 parent: 2 type: Transform - - uid: 8466 + - uid: 8479 components: - pos: -0.5,-47.5 parent: 2 type: Transform - - uid: 8467 + - uid: 8480 components: - pos: -0.5,-46.5 parent: 2 type: Transform - - uid: 8468 + - uid: 8481 components: - pos: -0.5,-45.5 parent: 2 type: Transform - - uid: 8469 + - uid: 8482 components: - pos: -0.5,-44.5 parent: 2 type: Transform - - uid: 8470 + - uid: 8483 components: - pos: -0.5,-43.5 parent: 2 type: Transform - - uid: 8471 + - uid: 8484 components: - pos: -53.5,-18.5 parent: 2 type: Transform - - uid: 8472 + - uid: 8485 components: - pos: -53.5,-17.5 parent: 2 type: Transform - - uid: 8473 + - uid: 8486 components: - pos: -53.5,-16.5 parent: 2 type: Transform - - uid: 8474 + - uid: 8487 components: - pos: -53.5,-15.5 parent: 2 type: Transform - - uid: 8475 + - uid: 8488 components: - pos: -53.5,-14.5 parent: 2 type: Transform - - uid: 8476 + - uid: 8489 components: - pos: -53.5,-13.5 parent: 2 type: Transform - - uid: 8477 + - uid: 8490 components: - pos: -54.5,-13.5 parent: 2 type: Transform - - uid: 8478 + - uid: 8491 components: - pos: -55.5,-13.5 parent: 2 type: Transform - - uid: 8479 + - uid: 8492 components: - pos: -55.5,-25.5 parent: 2 type: Transform - - uid: 8480 + - uid: 8493 components: - pos: -56.5,-25.5 parent: 2 type: Transform - - uid: 8481 + - uid: 8494 components: - pos: -57.5,-25.5 parent: 2 type: Transform - - uid: 8482 + - uid: 8495 components: - pos: -60.5,-27.5 parent: 2 type: Transform - - uid: 8483 + - uid: 8496 components: - pos: -54.5,-25.5 parent: 2 type: Transform - - uid: 8484 + - uid: 8497 components: - pos: -52.5,-25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8485 + - uid: 8498 components: - pos: -0.5,-79.5 parent: 2 type: Transform - - uid: 8486 + - uid: 8499 components: - pos: -14.5,38.5 parent: 2 type: Transform - - uid: 8487 + - uid: 8500 components: - pos: -14.5,43.5 parent: 2 type: Transform - - uid: 8488 + - uid: 8501 components: - pos: -14.5,41.5 parent: 2 type: Transform - - uid: 8489 + - uid: 8502 components: - pos: -17.5,29.5 parent: 2 type: Transform - - uid: 8490 + - uid: 8503 components: - pos: -14.5,37.5 parent: 2 type: Transform - - uid: 8491 + - uid: 8504 components: - pos: -15.5,29.5 parent: 2 type: Transform - - uid: 8492 + - uid: 8505 components: - pos: -0.5,-78.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8493 + - uid: 8506 components: - pos: -0.5,-77.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8494 + - uid: 8507 components: - pos: 12.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8495 + - uid: 8508 components: - pos: 10.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8496 + - uid: 8509 components: - pos: -74.5,-38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8497 + - uid: 8510 components: - pos: -75.5,-38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8498 + - uid: 8511 components: - pos: -79.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8499 - components: - - pos: 19.5,-27.5 - parent: 2 - type: Transform - - uid: 8500 - components: - - pos: 19.5,-28.5 - parent: 2 - type: Transform - - uid: 8501 + - uid: 8512 components: - pos: 5.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8502 + - uid: 8513 components: - pos: 8.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8503 + - uid: 8514 components: - pos: 33.5,22.5 parent: 2 type: Transform - - uid: 8504 + - uid: 8515 components: - pos: 34.5,22.5 parent: 2 type: Transform - - uid: 8505 + - uid: 8516 components: - pos: 35.5,22.5 parent: 2 type: Transform - - uid: 8506 + - uid: 8517 components: - pos: 36.5,22.5 parent: 2 type: Transform - - uid: 8507 + - uid: 8518 components: - pos: 36.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8508 + - uid: 8519 components: - pos: 37.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8509 + - uid: 8520 components: - pos: 38.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8510 + - uid: 8521 components: - pos: 39.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8511 + - uid: 8522 components: - pos: 40.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8512 + - uid: 8523 components: - pos: 41.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8513 + - uid: 8524 components: - pos: 42.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8514 + - uid: 8525 components: - pos: 43.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8515 + - uid: 8526 components: - pos: 44.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8516 + - uid: 8527 components: - pos: 44.5,24.5 parent: 2 type: Transform - - uid: 8517 + - uid: 8528 components: - pos: 44.5,25.5 parent: 2 type: Transform - - uid: 8518 + - uid: 8529 components: - pos: 44.5,26.5 parent: 2 type: Transform - - uid: 8519 + - uid: 8530 components: - pos: 45.5,26.5 parent: 2 type: Transform - - uid: 8520 + - uid: 8531 components: - pos: 46.5,26.5 parent: 2 type: Transform - - uid: 8521 + - uid: 8532 components: - pos: 47.5,26.5 parent: 2 type: Transform - - uid: 8522 + - uid: 8533 components: - pos: 48.5,26.5 parent: 2 type: Transform - - uid: 8523 + - uid: 8534 components: - pos: 48.5,27.5 parent: 2 type: Transform - - uid: 8524 + - uid: 8535 components: - pos: 48.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8525 + - uid: 8536 components: - pos: 49.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8526 + - uid: 8537 components: - pos: 50.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8527 + - uid: 8538 components: - pos: 50.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8528 + - uid: 8539 components: - pos: 91.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8529 + - uid: 8540 components: - pos: 77.5,36.5 parent: 2 type: Transform - - uid: 8530 + - uid: 8541 components: - pos: 76.5,36.5 parent: 2 type: Transform - - uid: 8531 + - uid: 8542 components: - pos: 75.5,36.5 parent: 2 type: Transform - - uid: 8532 + - uid: 8543 components: - pos: 74.5,36.5 parent: 2 type: Transform - - uid: 8533 + - uid: 8544 components: - pos: 78.5,44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8534 + - uid: 8545 components: - pos: 78.5,43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8535 + - uid: 8546 components: - pos: 78.5,42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8536 + - uid: 8547 components: - pos: 78.5,41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8537 + - uid: 8548 components: - pos: 78.5,40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8538 + - uid: 8549 components: - pos: 78.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8539 + - uid: 8550 components: - pos: 78.5,38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8540 + - uid: 8551 components: - pos: 78.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8541 + - uid: 8552 components: - pos: 78.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8542 + - uid: 8553 components: - pos: 78.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8543 + - uid: 8554 components: - pos: 78.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8544 + - uid: 8555 components: - pos: 78.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8545 + - uid: 8556 components: - pos: 78.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8546 + - uid: 8557 components: - pos: 78.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8547 + - uid: 8558 components: - pos: 78.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8548 + - uid: 8559 components: - pos: 78.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8549 + - uid: 8560 components: - pos: 81.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8550 + - uid: 8561 components: - pos: 81.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8551 + - uid: 8562 components: - pos: 81.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8552 + - uid: 8563 components: - pos: 81.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8553 + - uid: 8564 components: - pos: 81.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8554 + - uid: 8565 components: - pos: 81.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8555 + - uid: 8566 components: - pos: 81.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8556 + - uid: 8567 components: - pos: 81.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8557 + - uid: 8568 components: - pos: 81.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8558 + - uid: 8569 components: - pos: 81.5,38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8559 + - uid: 8570 components: - pos: 81.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8560 + - uid: 8571 components: - pos: 81.5,40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8561 + - uid: 8572 components: - pos: 81.5,41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8562 + - uid: 8573 components: - pos: 81.5,42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8563 + - uid: 8574 components: - pos: 81.5,43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8564 + - uid: 8575 components: - pos: 81.5,44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8565 + - uid: 8576 components: - pos: 84.5,44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8566 + - uid: 8577 components: - pos: 84.5,43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8567 + - uid: 8578 components: - pos: 84.5,42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8568 + - uid: 8579 components: - pos: 84.5,41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8569 + - uid: 8580 components: - pos: 84.5,40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8570 + - uid: 8581 components: - pos: 84.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8571 + - uid: 8582 components: - pos: 84.5,38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8572 + - uid: 8583 components: - pos: 84.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8573 + - uid: 8584 components: - pos: 84.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8574 + - uid: 8585 components: - pos: 84.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8575 + - uid: 8586 components: - pos: 84.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8576 + - uid: 8587 components: - pos: 84.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8577 + - uid: 8588 components: - pos: 84.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8578 + - uid: 8589 components: - pos: 84.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8579 + - uid: 8590 components: - pos: 84.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8580 + - uid: 8591 components: - pos: 84.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8581 + - uid: 8592 components: - pos: 87.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8582 + - uid: 8593 components: - pos: 87.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8583 + - uid: 8594 components: - pos: 87.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8584 + - uid: 8595 components: - pos: 87.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8585 + - uid: 8596 components: - pos: 87.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8586 + - uid: 8597 components: - pos: 87.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8587 + - uid: 8598 components: - pos: 87.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8588 + - uid: 8599 components: - pos: 87.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8589 + - uid: 8600 components: - pos: 87.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8590 + - uid: 8601 components: - pos: 87.5,38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8591 + - uid: 8602 components: - pos: 87.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8592 + - uid: 8603 components: - pos: 87.5,40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8593 + - uid: 8604 components: - pos: 87.5,41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8594 + - uid: 8605 components: - pos: 87.5,42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8595 + - uid: 8606 components: - pos: 87.5,43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8596 + - uid: 8607 components: - pos: 87.5,44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8597 + - uid: 8608 components: - pos: 90.5,44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8598 + - uid: 8609 components: - pos: 90.5,43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8599 + - uid: 8610 components: - pos: 90.5,42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8600 + - uid: 8611 components: - pos: 90.5,41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8601 + - uid: 8612 components: - pos: 90.5,40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8602 + - uid: 8613 components: - pos: 90.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8603 + - uid: 8614 components: - pos: 90.5,38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8604 + - uid: 8615 components: - pos: 90.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8605 + - uid: 8616 components: - pos: 90.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8606 + - uid: 8617 components: - pos: 90.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8607 + - uid: 8618 components: - pos: 90.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8608 + - uid: 8619 components: - pos: 90.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8609 + - uid: 8620 components: - pos: 90.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8610 + - uid: 8621 components: - pos: 90.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8611 + - uid: 8622 components: - pos: 90.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8612 + - uid: 8623 components: - pos: 90.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8613 + - uid: 8624 components: - pos: 74.5,37.5 parent: 2 type: Transform - - uid: 8614 + - uid: 8625 components: - pos: 74.5,38.5 parent: 2 type: Transform - - uid: 8615 + - uid: 8626 components: - pos: 73.5,38.5 parent: 2 type: Transform - - uid: 8616 + - uid: 8627 components: - pos: 72.5,38.5 parent: 2 type: Transform - - uid: 8617 + - uid: 8628 components: - pos: 74.5,35.5 parent: 2 type: Transform - - uid: 8618 + - uid: 8629 components: - pos: 74.5,34.5 parent: 2 type: Transform - - uid: 8619 + - uid: 8630 components: - pos: 73.5,34.5 parent: 2 type: Transform - - uid: 8620 + - uid: 8631 components: - pos: 72.5,34.5 parent: 2 type: Transform - - uid: 8621 + - uid: 8632 components: - pos: 71.5,34.5 parent: 2 type: Transform - - uid: 8622 + - uid: 8633 components: - pos: 70.5,34.5 parent: 2 type: Transform - - uid: 8623 + - uid: 8634 components: - pos: 70.5,35.5 parent: 2 type: Transform - - uid: 8624 + - uid: 8635 components: - pos: 70.5,36.5 parent: 2 type: Transform - - uid: 8625 + - uid: 8636 components: - pos: 69.5,36.5 parent: 2 type: Transform - - uid: 8626 + - uid: 8637 components: - pos: 71.5,38.5 parent: 2 type: Transform - - uid: 8627 + - uid: 8638 components: - pos: 70.5,38.5 parent: 2 type: Transform - - uid: 8628 + - uid: 8639 components: - pos: 70.5,37.5 parent: 2 type: Transform - - uid: 8629 + - uid: 8640 components: - pos: 68.5,36.5 parent: 2 type: Transform - - uid: 8630 + - uid: 8641 components: - pos: 67.5,36.5 parent: 2 type: Transform - - uid: 8631 + - uid: 8642 components: - pos: 66.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8632 + - uid: 8643 components: - pos: 65.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8633 + - uid: 8644 components: - pos: 64.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8634 + - uid: 8645 components: - pos: 63.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8635 + - uid: 8646 components: - pos: 63.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8636 + - uid: 8647 components: - pos: 63.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8637 + - uid: 8648 components: - pos: 63.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8638 + - uid: 8649 components: - pos: 63.5,32.5 parent: 2 type: Transform - - uid: 8639 + - uid: 8650 components: - pos: 63.5,31.5 parent: 2 type: Transform - - uid: 8640 + - uid: 8651 components: - pos: 63.5,30.5 parent: 2 type: Transform - - uid: 8641 + - uid: 8652 components: - pos: 63.5,29.5 parent: 2 type: Transform - - uid: 8642 + - uid: 8653 components: - pos: 63.5,28.5 parent: 2 type: Transform - - uid: 8643 + - uid: 8654 components: - pos: 63.5,27.5 parent: 2 type: Transform - - uid: 8644 + - uid: 8655 components: - pos: 63.5,26.5 parent: 2 type: Transform - - uid: 8645 + - uid: 8656 components: - pos: 62.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8646 + - uid: 8657 components: - pos: 61.5,26.5 parent: 2 type: Transform - - uid: 8647 + - uid: 8658 components: - pos: 60.5,26.5 parent: 2 type: Transform - - uid: 8648 + - uid: 8659 components: - pos: 59.5,26.5 parent: 2 type: Transform - - uid: 8649 + - uid: 8660 components: - pos: 58.5,26.5 parent: 2 type: Transform - - uid: 8650 + - uid: 8661 components: - pos: 57.5,26.5 parent: 2 type: Transform - - uid: 8651 + - uid: 8662 components: - pos: 56.5,26.5 parent: 2 type: Transform - - uid: 8652 + - uid: 8663 components: - pos: 55.5,26.5 parent: 2 type: Transform - - uid: 8653 + - uid: 8664 components: - pos: 54.5,26.5 parent: 2 type: Transform - - uid: 8654 + - uid: 8665 components: - pos: 53.5,26.5 parent: 2 type: Transform - - uid: 8655 + - uid: 8666 components: - pos: 52.5,26.5 parent: 2 type: Transform - - uid: 8656 + - uid: 8667 components: - pos: 51.5,26.5 parent: 2 type: Transform - - uid: 8657 + - uid: 8668 components: - pos: 50.5,26.5 parent: 2 type: Transform - - uid: 8658 + - uid: 8669 components: - pos: 49.5,26.5 parent: 2 type: Transform - - uid: 8659 + - uid: 8670 components: - pos: -11.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8660 + - uid: 8671 components: - pos: -12.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8661 + - uid: 8672 components: - pos: -13.5,26.5 parent: 2 type: Transform - - uid: 8662 + - uid: 8673 components: - pos: -14.5,26.5 parent: 2 type: Transform - - uid: 8663 + - uid: 8674 components: - pos: -15.5,26.5 parent: 2 type: Transform - - uid: 8664 + - uid: 8675 components: - pos: -15.5,27.5 parent: 2 type: Transform - - uid: 8665 + - uid: 8676 components: - pos: -15.5,28.5 parent: 2 type: Transform - - uid: 8666 + - uid: 8677 components: - pos: -1.5,69.5 parent: 2 type: Transform - - uid: 8667 + - uid: 8678 components: - pos: -1.5,68.5 parent: 2 type: Transform - - uid: 8668 + - uid: 8679 components: - pos: -1.5,67.5 parent: 2 type: Transform - - uid: 8669 + - uid: 8680 components: - pos: -1.5,66.5 parent: 2 type: Transform - - uid: 8670 + - uid: 8681 components: - pos: -1.5,65.5 parent: 2 type: Transform - - uid: 8671 + - uid: 8682 components: - pos: -1.5,64.5 parent: 2 type: Transform - - uid: 8672 + - uid: 8683 components: - pos: -1.5,63.5 parent: 2 type: Transform - - uid: 8673 + - uid: 8684 components: - pos: -1.5,62.5 parent: 2 type: Transform - - uid: 8674 + - uid: 8685 components: - pos: -1.5,61.5 parent: 2 type: Transform - - uid: 8675 + - uid: 8686 components: - pos: -1.5,60.5 parent: 2 type: Transform - - uid: 8676 + - uid: 8687 components: - pos: -1.5,59.5 parent: 2 type: Transform - - uid: 8677 + - uid: 8688 components: - pos: -1.5,58.5 parent: 2 type: Transform - - uid: 8678 + - uid: 8689 components: - pos: -2.5,58.5 parent: 2 type: Transform - - uid: 8679 + - uid: 8690 components: - pos: -3.5,58.5 parent: 2 type: Transform - - uid: 8680 + - uid: 8691 components: - pos: -4.5,58.5 parent: 2 type: Transform - - uid: 8681 + - uid: 8692 components: - pos: -5.5,58.5 parent: 2 type: Transform - - uid: 8682 + - uid: 8693 components: - pos: -6.5,58.5 parent: 2 type: Transform - - uid: 8683 + - uid: 8694 components: - pos: -7.5,58.5 parent: 2 type: Transform - - uid: 8684 + - uid: 8695 components: - pos: -8.5,58.5 parent: 2 type: Transform - - uid: 8685 + - uid: 8696 components: - pos: -9.5,58.5 parent: 2 type: Transform - - uid: 8686 + - uid: 8697 components: - pos: -10.5,58.5 parent: 2 type: Transform - - uid: 8687 + - uid: 8698 components: - pos: -10.5,59.5 parent: 2 type: Transform - - uid: 8688 + - uid: 8699 components: - pos: -10.5,60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8689 + - uid: 8700 components: - pos: -10.5,61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8690 + - uid: 8701 components: - pos: -10.5,62.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8691 + - uid: 8702 components: - pos: -71.5,-23.5 parent: 2 type: Transform - - uid: 8692 + - uid: 8703 components: - pos: -71.5,-24.5 parent: 2 type: Transform - - uid: 8693 + - uid: 8704 components: - pos: -71.5,-25.5 parent: 2 type: Transform - - uid: 8694 + - uid: 8705 components: - pos: -72.5,-25.5 parent: 2 type: Transform - - uid: 8695 + - uid: 8706 components: - pos: -72.5,-26.5 parent: 2 type: Transform - - uid: 8696 + - uid: 8707 components: - pos: -72.5,-27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8697 + - uid: 8708 components: - pos: -72.5,-28.5 parent: 2 type: Transform - - uid: 8698 + - uid: 8709 components: - pos: -71.5,-28.5 parent: 2 type: Transform - - uid: 8699 + - uid: 8710 components: - pos: -70.5,-28.5 parent: 2 type: Transform - - uid: 8700 + - uid: 8711 components: - pos: -70.5,-29.5 parent: 2 type: Transform - - uid: 8701 + - uid: 8712 components: - pos: -72.5,-29.5 parent: 2 type: Transform - - uid: 8702 + - uid: 8713 components: - pos: -73.5,-28.5 parent: 2 type: Transform - - uid: 8703 + - uid: 8714 components: - pos: -74.5,-28.5 parent: 2 type: Transform - - uid: 8704 + - uid: 8715 components: - pos: -74.5,-29.5 parent: 2 type: Transform - - uid: 8705 + - uid: 8716 components: - pos: -74.5,-30.5 parent: 2 type: Transform - - uid: 8706 + - uid: 8717 components: - pos: -72.5,-30.5 parent: 2 type: Transform - - uid: 8707 + - uid: 8718 components: - pos: -70.5,-30.5 parent: 2 type: Transform - - uid: 8708 + - uid: 8719 components: - pos: -70.5,-31.5 parent: 2 type: Transform - - uid: 8709 + - uid: 8720 components: - pos: -72.5,-38.5 parent: 2 type: Transform - - uid: 8710 + - uid: 8721 components: - pos: -72.5,-32.5 parent: 2 type: Transform - - uid: 8711 + - uid: 8722 components: - pos: -74.5,-31.5 parent: 2 type: Transform - - uid: 8712 + - uid: 8723 components: - pos: -74.5,-32.5 parent: 2 type: Transform - - uid: 8713 + - uid: 8724 components: - pos: -72.5,-31.5 parent: 2 type: Transform - - uid: 8714 + - uid: 8725 components: - pos: -72.5,-33.5 parent: 2 type: Transform - - uid: 8715 + - uid: 8726 components: - pos: -69.5,-34.5 parent: 2 type: Transform - - uid: 8716 + - uid: 8727 components: - pos: -69.5,-35.5 parent: 2 type: Transform - - uid: 8717 + - uid: 8728 components: - pos: -76.5,-38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8718 + - uid: 8729 components: - pos: -73.5,-38.5 parent: 2 type: Transform - - uid: 8719 + - uid: 8730 components: - pos: -79.5,-35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8720 + - uid: 8731 components: - pos: 68.5,-46.5 parent: 2 type: Transform - - uid: 8721 + - uid: 8732 components: - pos: 67.5,-46.5 parent: 2 type: Transform - - uid: 8722 + - uid: 8733 components: - pos: 66.5,-46.5 parent: 2 type: Transform - - uid: 8723 + - uid: 8734 components: - pos: 65.5,-46.5 parent: 2 type: Transform - - uid: 8724 + - uid: 8735 components: - pos: 64.5,-46.5 parent: 2 type: Transform - - uid: 8725 + - uid: 8736 components: - pos: 64.5,-45.5 parent: 2 type: Transform - - uid: 8726 + - uid: 8737 components: - pos: 64.5,-44.5 parent: 2 type: Transform - - uid: 8727 + - uid: 8738 components: - pos: 63.5,-44.5 parent: 2 type: Transform - - uid: 8728 + - uid: 8739 components: - pos: 62.5,-44.5 parent: 2 type: Transform - - uid: 8729 + - uid: 8740 components: - pos: 61.5,-44.5 parent: 2 type: Transform - - uid: 8730 + - uid: 8741 components: - pos: 60.5,-44.5 parent: 2 type: Transform - - uid: 8731 + - uid: 8742 components: - pos: 59.5,-44.5 parent: 2 type: Transform - - uid: 8732 + - uid: 8743 components: - pos: 58.5,-44.5 parent: 2 type: Transform - - uid: 8733 + - uid: 8744 components: - pos: 57.5,-44.5 parent: 2 type: Transform - - uid: 8734 + - uid: 8745 components: - pos: 56.5,-44.5 parent: 2 type: Transform - - uid: 8735 + - uid: 8746 components: - pos: 55.5,-44.5 parent: 2 type: Transform - - uid: 8736 + - uid: 8747 components: - pos: 54.5,-44.5 parent: 2 type: Transform - - uid: 8737 + - uid: 8748 components: - pos: 53.5,-44.5 parent: 2 type: Transform - - uid: 8738 + - uid: 8749 components: - pos: 52.5,-44.5 parent: 2 type: Transform - - uid: 8739 + - uid: 8750 components: - pos: 51.5,-44.5 parent: 2 type: Transform - - uid: 8740 + - uid: 8751 components: - pos: 50.5,-44.5 parent: 2 type: Transform - - uid: 8741 + - uid: 8752 components: - pos: 69.5,-46.5 parent: 2 type: Transform - - uid: 8742 + - uid: 8753 components: - pos: 72.5,-46.5 parent: 2 type: Transform - - uid: 8743 + - uid: 8754 components: - pos: 73.5,-46.5 parent: 2 type: Transform - - uid: 8744 + - uid: 8755 components: - pos: 74.5,-46.5 parent: 2 type: Transform - - uid: 8745 + - uid: 8756 components: - pos: 75.5,-46.5 parent: 2 type: Transform - - uid: 8746 + - uid: 8757 components: - pos: 75.5,-47.5 parent: 2 type: Transform - - uid: 8747 + - uid: 8758 components: - pos: 75.5,-48.5 parent: 2 type: Transform - - uid: 8748 + - uid: 8759 components: - pos: 75.5,-49.5 parent: 2 type: Transform - - uid: 8749 + - uid: 8760 components: - pos: 75.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8750 + - uid: 8761 components: - pos: 75.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8751 + - uid: 8762 components: - pos: 75.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8752 + - uid: 8763 components: - pos: 75.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8753 + - uid: 8764 components: - pos: 75.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8754 + - uid: 8765 components: - pos: 75.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8755 + - uid: 8766 components: - pos: 75.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8756 + - uid: 8767 components: - pos: 74.5,-56.5 parent: 2 type: Transform - - uid: 8757 + - uid: 8768 components: - pos: 74.5,-57.5 parent: 2 type: Transform - - uid: 8758 + - uid: 8769 components: - pos: 73.5,-57.5 parent: 2 type: Transform - - uid: 8759 + - uid: 8770 components: - pos: 72.5,-57.5 parent: 2 type: Transform - - uid: 8760 + - uid: 8771 components: - pos: 71.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8761 + - uid: 8772 components: - pos: 71.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8762 + - uid: 8773 components: - pos: 71.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8763 + - uid: 8774 components: - pos: 71.5,-60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8764 + - uid: 8775 components: - pos: 71.5,-61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8765 + - uid: 8776 components: - pos: 70.5,-61.5 parent: 2 type: Transform - - uid: 8766 + - uid: 8777 components: - pos: 69.5,-61.5 parent: 2 type: Transform - - uid: 8767 + - uid: 8778 components: - pos: 68.5,-61.5 parent: 2 type: Transform - - uid: 8768 + - uid: 8779 components: - pos: 68.5,-60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8769 + - uid: 8780 components: - pos: 68.5,-59.5 parent: 2 type: Transform - - uid: 8770 + - uid: 8781 components: - pos: 69.5,-59.5 parent: 2 type: Transform - - uid: 8771 + - uid: 8782 components: - pos: 12.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8772 + - uid: 8783 components: - pos: 12.5,-91.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8773 + - uid: 8784 components: - pos: 12.5,-90.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8774 + - uid: 8785 components: - pos: 12.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8775 + - uid: 8786 components: - pos: 11.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8776 + - uid: 8787 components: - pos: 10.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8777 + - uid: 8788 components: - pos: 9.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8778 + - uid: 8789 components: - pos: 8.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8779 + - uid: 8790 components: - pos: 7.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8780 + - uid: 8791 components: - pos: 6.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8781 + - uid: 8792 components: - pos: 5.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8782 + - uid: 8793 components: - pos: 4.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8783 + - uid: 8794 components: - pos: 3.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8784 + - uid: 8795 components: - pos: 16.5,-24.5 parent: 2 type: Transform - - uid: 8785 + - uid: 8796 components: - pos: 17.5,-24.5 parent: 2 type: Transform - - uid: 8786 + - uid: 8797 components: - pos: 18.5,-24.5 parent: 2 type: Transform - - uid: 8787 + - uid: 8798 components: - pos: 19.5,-24.5 parent: 2 type: Transform - - uid: 8788 + - uid: 8799 components: - pos: 20.5,-24.5 parent: 2 type: Transform - - uid: 8789 + - uid: 8800 components: - pos: 21.5,-24.5 parent: 2 type: Transform - - uid: 8790 + - uid: 8801 components: - pos: 21.5,-23.5 parent: 2 type: Transform - - uid: 8791 + - uid: 8802 components: - pos: 21.5,-22.5 parent: 2 type: Transform - - uid: 8792 + - uid: 8803 components: - pos: 21.5,-21.5 parent: 2 type: Transform - - uid: 8793 + - uid: 8804 components: - pos: -30.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8794 + - uid: 8805 components: - pos: -29.5,-13.5 parent: 2 type: Transform - - uid: 8795 + - uid: 8806 components: - pos: -28.5,-13.5 parent: 2 type: Transform - - uid: 8796 + - uid: 8807 components: - pos: -27.5,-13.5 parent: 2 type: Transform - - uid: 8797 + - uid: 8808 components: - pos: 4.5,-21.5 parent: 2 type: Transform - - uid: 8798 + - uid: 8809 components: - pos: 4.5,-22.5 parent: 2 type: Transform - - uid: 8799 + - uid: 8810 components: - pos: 4.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8800 + - uid: 8811 components: - pos: 4.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8801 + - uid: 8812 components: - pos: 10.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8802 + - uid: 8813 components: - pos: 11.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8803 + - uid: 8814 components: - pos: 12.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8804 + - uid: 8815 components: - pos: 12.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8805 + - uid: 8816 components: - pos: 12.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8806 + - uid: 8817 components: - pos: 11.5,-16.5 parent: 2 type: Transform - - uid: 8807 + - uid: 8818 components: - pos: 10.5,-16.5 parent: 2 type: Transform - - uid: 8808 + - uid: 8819 components: - pos: 9.5,-16.5 parent: 2 type: Transform - - uid: 8809 + - uid: 8820 components: - pos: -76.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8810 + - uid: 8821 components: - pos: 4.5,-23.5 parent: 2 type: Transform - - uid: 8811 + - uid: 8822 components: - pos: 31.5,-16.5 parent: 2 type: Transform - - uid: 8812 + - uid: 8823 components: - pos: 31.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8813 + - uid: 8824 components: - pos: 33.5,-16.5 parent: 2 type: Transform - - uid: 8814 + - uid: 8825 components: - pos: 33.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8815 + - uid: 8826 components: - pos: -65.5,-51.5 parent: 2 type: Transform - - uid: 8816 + - uid: 8827 components: - pos: -65.5,-52.5 parent: 2 type: Transform - - uid: 8817 + - uid: 8828 components: - pos: -65.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8818 + - uid: 8829 components: - pos: -65.5,-54.5 parent: 2 type: Transform - - uid: 8819 + - uid: 8830 components: - pos: -71.5,-35.5 parent: 2 type: Transform - - uid: 8820 + - uid: 8831 components: - pos: -69.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8821 + - uid: 8832 components: - pos: -69.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8822 + - uid: 8833 components: - pos: -69.5,-42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8823 + - uid: 8834 components: - pos: -69.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8824 + - uid: 8835 components: - pos: -69.5,-40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8825 + - uid: 8836 components: - pos: -70.5,-40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8826 + - uid: 8837 components: - pos: -71.5,-40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8827 + - uid: 8838 components: - pos: -71.5,-39.5 parent: 2 type: Transform - - uid: 8828 + - uid: 8839 components: - pos: -71.5,-38.5 parent: 2 type: Transform - - uid: 8829 + - uid: 8840 components: - pos: -78.5,-38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8830 + - uid: 8841 components: - pos: -77.5,-38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8831 + - uid: 8842 components: - pos: -69.5,-31.5 parent: 2 type: Transform - - uid: 8832 + - uid: 8843 components: - pos: -72.5,-34.5 parent: 2 type: Transform - - uid: 8833 + - uid: 8844 components: - pos: -72.5,-35.5 parent: 2 type: Transform - - uid: 8834 + - uid: 8845 components: - pos: -79.5,-36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8835 + - uid: 8846 components: - pos: -79.5,-34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8836 + - uid: 8847 components: - pos: -79.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8837 + - uid: 8848 components: - pos: -79.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8838 + - uid: 8849 components: - pos: -79.5,-31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8839 + - uid: 8850 components: - pos: -79.5,-30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8840 + - uid: 8851 components: - pos: -79.5,-29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8841 + - uid: 8852 components: - pos: -79.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8842 + - uid: 8853 components: - pos: -78.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8843 + - uid: 8854 components: - pos: -77.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8844 + - uid: 8855 components: - pos: -76.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8845 + - uid: 8856 components: - pos: -75.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8846 + - uid: 8857 components: - pos: -73.5,-31.5 parent: 2 type: Transform - - uid: 8847 + - uid: 8858 components: - pos: -71.5,-31.5 parent: 2 type: Transform - - uid: 8848 + - uid: 8859 components: - pos: -67.5,-31.5 parent: 2 type: Transform - - uid: 8849 + - uid: 8860 components: - pos: -66.5,-31.5 parent: 2 type: Transform + - uid: 8861 + components: + - pos: 18.5,-28.5 + parent: 2 + type: Transform + - uid: 8862 + components: + - pos: 18.5,-27.5 + parent: 2 + type: Transform - proto: CableHVStack entities: - - uid: 8850 + - uid: 8863 components: - pos: -39.402794,-17.87967 parent: 2 type: Transform - - uid: 8851 + - uid: 8864 components: - pos: 71.74222,36.65267 parent: 2 type: Transform - - uid: 8852 + - uid: 8865 components: - pos: -0.5088408,-77.44958 parent: 2 type: Transform - proto: CableMV entities: - - uid: 549 + - uid: 8866 components: - - pos: 3.5,-3.5 + - pos: -57.5,-21.5 parent: 2 type: Transform - - uid: 2183 + - uid: 8867 components: - - pos: 20.5,-32.5 + - pos: 22.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2200 + - uid: 8868 components: - - pos: 9.5,-4.5 + - pos: 18.5,-31.5 parent: 2 type: Transform - - uid: 2214 + - uid: 8869 components: - - pos: 10.5,-2.5 + - pos: 1.5,-5.5 parent: 2 type: Transform - - uid: 2215 + - uid: 8870 components: - - pos: 19.5,-31.5 + - pos: 18.5,-27.5 + parent: 2 + type: Transform + - uid: 8871 + components: + - pos: 18.5,-29.5 + parent: 2 + type: Transform + - uid: 8872 + components: + - pos: 18.5,-30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2261 + - uid: 8873 components: - - pos: 19.5,-29.5 + - pos: 3.5,-3.5 parent: 2 type: Transform - - uid: 2269 + - enabled: True + type: AmbientSound + - uid: 8874 components: - - pos: 19.5,-32.5 + - pos: 20.5,-32.5 parent: 2 type: Transform - - uid: 2299 + - enabled: True + type: AmbientSound + - uid: 8875 components: - - pos: 10.5,-1.5 + - pos: 9.5,-4.5 parent: 2 type: Transform - - uid: 2347 + - uid: 8876 components: - - pos: 19.5,-30.5 + - pos: 10.5,-2.5 parent: 2 type: Transform - - uid: 2360 + - uid: 8877 components: - - pos: 8.5,-1.5 + - pos: 18.5,-32.5 parent: 2 type: Transform - - uid: 2405 + - uid: 8878 components: - - pos: 22.5,-36.5 + - pos: 19.5,-32.5 parent: 2 type: Transform - - uid: 2406 + - uid: 8879 + components: + - pos: 10.5,-1.5 + parent: 2 + type: Transform + - uid: 8880 components: - - pos: 19.5,-29.5 + - pos: 8.5,-1.5 parent: 2 type: Transform - - uid: 2489 + - uid: 8881 + components: + - pos: 22.5,-36.5 + parent: 2 + type: Transform + - uid: 8882 components: - pos: 22.5,-32.5 parent: 2 type: Transform - - uid: 2564 + - uid: 8883 components: - pos: 22.5,-34.5 parent: 2 type: Transform - - uid: 2583 + - uid: 8884 components: - pos: 9.5,-1.5 parent: 2 type: Transform - - uid: 2587 + - uid: 8885 components: - pos: 22.5,-37.5 parent: 2 type: Transform - - uid: 2597 + - uid: 8886 components: - pos: 22.5,-33.5 parent: 2 type: Transform - - uid: 2625 + - uid: 8887 components: - pos: 22.5,-35.5 parent: 2 type: Transform - - uid: 2626 + - uid: 8888 components: - pos: 21.5,-32.5 parent: 2 type: Transform - - uid: 2627 + - uid: 8889 components: - pos: 7.5,-1.5 parent: 2 type: Transform - - uid: 2628 + - uid: 8890 components: - pos: 22.5,-38.5 parent: 2 type: Transform - - uid: 2645 + - uid: 8891 components: - pos: 6.5,-1.5 parent: 2 type: Transform - - uid: 2742 + - uid: 8892 components: - pos: 5.5,-1.5 parent: 2 type: Transform - - uid: 8853 + - uid: 8893 components: - pos: -72.5,-38.5 parent: 2 type: Transform - - uid: 8854 + - uid: 8894 components: - pos: -10.5,15.5 parent: 2 type: Transform - - uid: 8855 + - uid: 8895 components: - pos: -6.5,-70.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8856 + - uid: 8896 components: - pos: 18.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8857 + - uid: 8897 components: - pos: 10.5,-55.5 parent: 2 type: Transform - - uid: 8858 + - uid: 8898 components: - pos: 37.5,21.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8859 + - uid: 8899 components: - pos: 3.5,-49.5 parent: 2 type: Transform - - uid: 8860 + - uid: 8900 components: - pos: 9.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8861 + - uid: 8901 components: - pos: 32.5,0.5 parent: 2 type: Transform - - uid: 8862 + - uid: 8902 components: - pos: 32.5,1.5 parent: 2 type: Transform - - uid: 8863 + - uid: 8903 components: - pos: -2.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8864 + - uid: 8904 components: - pos: -2.5,-52.5 parent: 2 type: Transform - - uid: 8865 + - uid: 8905 components: - pos: -2.5,-53.5 parent: 2 type: Transform - - uid: 8866 + - uid: 8906 components: - pos: 40.5,-26.5 parent: 2 type: Transform - - uid: 8867 + - uid: 8907 components: - pos: 31.5,2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8868 + - uid: 8908 components: - pos: -6.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8869 + - uid: 8909 components: - pos: -6.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8870 + - uid: 8910 components: - pos: 27.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8871 + - uid: 8911 components: - pos: 4.5,-49.5 parent: 2 type: Transform - - uid: 8872 + - uid: 8912 components: - pos: 3.5,-52.5 parent: 2 type: Transform - - uid: 8873 + - uid: 8913 components: - pos: -0.5,-53.5 parent: 2 type: Transform - - uid: 8874 + - uid: 8914 components: - pos: 8.5,-43.5 parent: 2 type: Transform - - uid: 8875 + - uid: 8915 components: - pos: -14.5,-69.5 parent: 2 type: Transform - - uid: 8876 + - uid: 8916 components: - pos: 9.5,-43.5 parent: 2 type: Transform - - uid: 8877 + - uid: 8917 components: - pos: 24.5,-28.5 parent: 2 type: Transform - - uid: 8878 + - uid: 8918 components: - pos: 45.5,-64.5 parent: 2 type: Transform - - uid: 8879 + - uid: 8919 components: - pos: 5.5,-45.5 parent: 2 type: Transform - - uid: 8880 + - uid: 8920 components: - pos: 5.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8881 + - uid: 8921 components: - pos: 4.5,-43.5 parent: 2 type: Transform - - uid: 8882 + - uid: 8922 components: - pos: 3.5,-43.5 parent: 2 type: Transform - - uid: 8883 + - uid: 8923 components: - pos: 3.5,-42.5 parent: 2 type: Transform - - uid: 8884 + - uid: 8924 components: - pos: 2.5,-42.5 parent: 2 type: Transform - - uid: 8885 + - uid: 8925 components: - pos: 1.5,-42.5 parent: 2 type: Transform - - uid: 8886 + - uid: 8926 components: - pos: 0.5,-42.5 parent: 2 type: Transform - - uid: 8887 + - uid: 8927 components: - pos: 0.5,-41.5 parent: 2 type: Transform - - uid: 8888 + - uid: 8928 components: - pos: 0.5,-40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8889 + - uid: 8929 components: - pos: 15.5,-58.5 parent: 2 type: Transform - - uid: 8890 + - uid: 8930 components: - pos: 15.5,-57.5 parent: 2 type: Transform - - uid: 8891 + - uid: 8931 components: - pos: 14.5,-57.5 parent: 2 type: Transform - - uid: 8892 + - uid: 8932 components: - pos: 12.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8893 + - uid: 8933 components: - pos: 12.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8894 + - uid: 8934 components: - pos: 11.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8895 + - uid: 8935 components: - pos: 12.5,-55.5 parent: 2 type: Transform - - uid: 8896 + - uid: 8936 components: - pos: 8.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8897 + - uid: 8937 components: - pos: 8.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8898 + - uid: 8938 components: - pos: 8.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8899 + - uid: 8939 components: - pos: 7.5,-53.5 parent: 2 type: Transform - - uid: 8900 + - uid: 8940 components: - pos: 16.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8901 + - uid: 8941 components: - pos: 43.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8902 + - uid: 8942 components: - pos: 0.5,14.5 parent: 2 type: Transform - - uid: 8903 + - uid: 8943 components: - pos: 37.5,13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8904 + - uid: 8944 components: - pos: 38.5,14.5 parent: 2 type: Transform - - uid: 8905 + - uid: 8945 components: - pos: -5.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8906 + - uid: 8946 components: - pos: 38.5,-28.5 parent: 2 type: Transform - - uid: 8907 + - uid: 8947 components: - pos: 35.5,-29.5 parent: 2 type: Transform - - uid: 8908 + - uid: 8948 components: - pos: 37.5,-30.5 parent: 2 type: Transform - - uid: 8909 + - uid: 8949 components: - pos: -11.5,-70.5 parent: 2 type: Transform - - uid: 8910 + - uid: 8950 components: - pos: 21.5,15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8911 + - uid: 8951 components: - pos: 5.5,-48.5 parent: 2 type: Transform - - uid: 8912 + - uid: 8952 components: - pos: 7.5,-47.5 parent: 2 type: Transform - - uid: 8913 + - uid: 8953 components: - pos: 29.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8914 + - uid: 8954 components: - pos: 0.5,11.5 parent: 2 type: Transform - - uid: 8915 + - uid: 8955 components: - pos: 28.5,18.5 parent: 2 type: Transform - - uid: 8916 + - uid: 8956 components: - pos: -11.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8917 + - uid: 8957 components: - pos: -7.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8918 + - uid: 8958 components: - pos: -3.5,-68.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8919 + - uid: 8959 components: - pos: -1.5,-53.5 parent: 2 type: Transform - - uid: 8920 + - uid: 8960 components: - pos: 9.5,-45.5 parent: 2 type: Transform - - uid: 8921 + - uid: 8961 components: - pos: -19.5,25.5 parent: 2 type: Transform - - uid: 8922 + - uid: 8962 components: - pos: 1.5,9.5 parent: 2 type: Transform - - uid: 8923 + - uid: 8963 components: - pos: -11.5,-69.5 parent: 2 type: Transform - - uid: 8924 + - uid: 8964 components: - pos: -8.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8925 + - uid: 8965 components: - pos: -10.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8926 + - uid: 8966 components: - pos: 21.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8927 + - uid: 8967 components: - pos: 29.5,18.5 parent: 2 type: Transform - - uid: 8928 + - uid: 8968 components: - pos: 29.5,19.5 parent: 2 type: Transform - - uid: 8929 + - uid: 8969 components: - pos: 21.5,17.5 parent: 2 type: Transform - - uid: 8930 + - uid: 8970 components: - pos: 32.5,2.5 parent: 2 type: Transform - - uid: 8931 + - uid: 8971 components: - pos: 32.5,-0.5 parent: 2 type: Transform - - uid: 8932 + - uid: 8972 components: - pos: 32.5,-1.5 parent: 2 type: Transform - - uid: 8933 + - uid: 8973 components: - pos: 9.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8934 + - uid: 8974 components: - pos: 8.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8935 + - uid: 8975 components: - pos: 5.5,-46.5 parent: 2 type: Transform - - uid: 8936 + - uid: 8976 components: - pos: 3.5,-50.5 parent: 2 type: Transform - - uid: 8937 + - uid: 8977 components: - pos: 13.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8938 + - uid: 8978 components: - pos: 5.5,-49.5 parent: 2 type: Transform - - uid: 8939 + - uid: 8979 components: - pos: 9.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8940 + - uid: 8980 components: - pos: -3.5,14.5 parent: 2 type: Transform - - uid: 8941 + - uid: 8981 components: - pos: -2.5,14.5 parent: 2 type: Transform - - uid: 8942 + - uid: 8982 components: - pos: -1.5,14.5 parent: 2 type: Transform - - uid: 8943 + - uid: 8983 components: - pos: -0.5,14.5 parent: 2 type: Transform - - uid: 8944 + - uid: 8984 components: - pos: -5.5,14.5 parent: 2 type: Transform - - uid: 8945 + - uid: 8985 components: - pos: -6.5,14.5 parent: 2 type: Transform - - uid: 8946 + - uid: 8986 components: - pos: 1.5,10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8947 + - uid: 8987 components: - pos: 0.5,10.5 parent: 2 type: Transform - - uid: 8948 + - uid: 8988 components: - - pos: 19.5,-27.5 + - pos: 18.5,-28.5 parent: 2 type: Transform - - uid: 8949 + - uid: 8989 components: - pos: 21.5,16.5 parent: 2 type: Transform - - uid: 8950 + - uid: 8990 components: - pos: -19.5,24.5 parent: 2 type: Transform - - uid: 8951 + - uid: 8991 components: - - pos: 8.5,-15.5 + - pos: 12.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8952 + - uid: 8992 components: - pos: 31.5,-4.5 parent: 2 type: Transform - - uid: 8953 + - uid: 8993 components: - pos: 30.5,-4.5 parent: 2 type: Transform - - uid: 8954 + - uid: 8994 components: - pos: 30.5,-3.5 parent: 2 type: Transform - - uid: 8955 + - uid: 8995 components: - pos: 30.5,-2.5 parent: 2 type: Transform - - uid: 8956 + - uid: 8996 components: - pos: -9.5,-21.5 parent: 2 type: Transform - - uid: 8957 + - uid: 8997 components: - pos: -8.5,-19.5 parent: 2 type: Transform - - uid: 8958 + - uid: 8998 components: - pos: -8.5,-20.5 parent: 2 type: Transform - - uid: 8959 + - uid: 8999 components: - pos: -8.5,-21.5 parent: 2 type: Transform - - uid: 8960 + - uid: 9000 components: - pos: -10.5,-21.5 parent: 2 type: Transform - - uid: 8961 + - uid: 9001 components: - pos: -10.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8962 + - uid: 9002 components: - pos: 10.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8963 + - uid: 9003 components: - pos: 11.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8964 + - uid: 9004 components: - pos: 10.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8965 + - uid: 9005 components: - pos: 3.5,-51.5 parent: 2 type: Transform - - uid: 8966 + - uid: 9006 components: - pos: 3.5,-53.5 parent: 2 type: Transform - - uid: 8967 + - uid: 9007 components: - pos: 1.5,-53.5 parent: 2 type: Transform - - uid: 8968 + - uid: 9008 components: - pos: 0.5,-53.5 parent: 2 type: Transform - - uid: 8969 + - uid: 9009 components: - pos: 7.5,-43.5 parent: 2 type: Transform - - uid: 8970 + - uid: 9010 components: - pos: -20.5,-69.5 parent: 2 type: Transform - - uid: 8971 + - uid: 9011 components: - pos: -21.5,-68.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8972 + - uid: 9012 components: - pos: -9.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8973 + - uid: 9013 components: - pos: -3.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8974 + - uid: 9014 components: - pos: 2.5,-53.5 parent: 2 type: Transform - - uid: 8975 + - uid: 9015 components: - pos: 18.5,-11.5 parent: 2 type: Transform - - uid: 8976 + - uid: 9016 components: - pos: 17.5,-11.5 parent: 2 type: Transform - - uid: 8977 + - uid: 9017 components: - pos: 44.5,-64.5 parent: 2 type: Transform - - uid: 8978 + - uid: 9018 components: - pos: 46.5,-65.5 parent: 2 type: Transform - - uid: 8979 + - uid: 9019 components: - pos: 38.5,-30.5 parent: 2 type: Transform - - uid: 8980 + - uid: 9020 components: - pos: 36.5,-30.5 parent: 2 type: Transform - - uid: 8981 + - uid: 9021 components: - pos: 28.5,-28.5 parent: 2 type: Transform - - uid: 8982 + - uid: 9022 components: - pos: 35.5,-27.5 parent: 2 type: Transform - - uid: 8983 + - uid: 9023 components: - pos: 35.5,-26.5 parent: 2 type: Transform - - uid: 8984 + - uid: 9024 components: - pos: 36.5,-26.5 parent: 2 type: Transform - - uid: 8985 + - uid: 9025 components: - pos: 37.5,-26.5 parent: 2 type: Transform - - uid: 8986 + - uid: 9026 components: - pos: 38.5,-26.5 parent: 2 type: Transform - - uid: 8987 + - uid: 9027 components: - pos: 39.5,-26.5 parent: 2 type: Transform - - uid: 8988 + - uid: 9028 components: - pos: 41.5,-26.5 parent: 2 type: Transform - - uid: 8989 + - uid: 9029 components: - pos: 42.5,-26.5 parent: 2 type: Transform - - uid: 8990 + - uid: 9030 components: - pos: 0.5,12.5 parent: 2 type: Transform - - uid: 8991 + - uid: 9031 components: - pos: 0.5,13.5 parent: 2 type: Transform - - uid: 8992 + - uid: 9032 components: - pos: 38.5,-29.5 parent: 2 type: Transform - - uid: 8993 + - uid: 9033 components: - pos: 8.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8994 + - uid: 9034 components: - pos: 6.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8995 + - uid: 9035 components: - pos: 6.5,-11.5 parent: 2 type: Transform - - uid: 8996 + - uid: 9036 components: - pos: 7.5,-11.5 parent: 2 type: Transform - - uid: 8997 + - uid: 9037 components: - pos: 8.5,-11.5 parent: 2 type: Transform - - uid: 8998 + - uid: 9038 components: - pos: 8.5,-10.5 parent: 2 type: Transform - - uid: 8999 + - uid: 9039 components: - pos: 8.5,-9.5 parent: 2 type: Transform - - uid: 9000 + - uid: 9040 components: - pos: 8.5,-7.5 parent: 2 type: Transform - - uid: 9001 + - uid: 9041 components: - pos: 8.5,-5.5 parent: 2 type: Transform - - uid: 9002 + - uid: 9042 components: - pos: 8.5,-4.5 parent: 2 type: Transform - - uid: 9003 + - uid: 9043 components: - pos: 8.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9004 + - uid: 9044 components: - pos: -21.5,-69.5 parent: 2 type: Transform - - uid: 9005 + - uid: 9045 components: - pos: 10.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9006 + - uid: 9046 components: - pos: -19.5,-69.5 parent: 2 type: Transform - - uid: 9007 + - uid: 9047 components: - pos: 9.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9008 + - uid: 9048 components: - pos: 15.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9009 + - uid: 9049 components: - pos: 12.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9010 + - uid: 9050 components: - pos: -16.5,-69.5 parent: 2 type: Transform - - uid: 9011 + - uid: 9051 components: - pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 9012 + - uid: 9052 components: - pos: 8.5,-8.5 parent: 2 type: Transform - - uid: 9013 + - uid: 9053 components: - pos: -4.5,14.5 parent: 2 type: Transform - - uid: 9014 + - uid: 9054 components: - pos: 10.5,-49.5 parent: 2 type: Transform - - uid: 9015 + - uid: 9055 components: - pos: 19.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9016 + - uid: 9056 components: - pos: 17.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9017 + - uid: 9057 components: - pos: 15.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9018 + - uid: 9058 components: - pos: 14.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9019 + - uid: 9059 components: - pos: 14.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9020 + - uid: 9060 components: - pos: 14.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9021 + - uid: 9061 components: - pos: 13.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9022 + - uid: 9062 components: - pos: 11.5,-49.5 parent: 2 type: Transform - - uid: 9023 - components: - - pos: 19.5,-28.5 - parent: 2 - type: Transform - - uid: 9024 + - uid: 9063 components: - pos: 16.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9025 + - uid: 9064 components: - pos: 17.5,-14.5 parent: 2 type: Transform - - uid: 9026 + - uid: 9065 components: - pos: 17.5,-13.5 parent: 2 type: Transform - - uid: 9027 + - uid: 9066 components: - pos: 17.5,-12.5 parent: 2 type: Transform - - uid: 9028 + - uid: 9067 components: - pos: 19.5,-11.5 parent: 2 type: Transform - - uid: 9029 + - uid: 9068 components: - pos: 21.5,-11.5 parent: 2 type: Transform - - uid: 9030 + - uid: 9069 components: - pos: 5.5,-47.5 parent: 2 type: Transform - - uid: 9031 + - uid: 9070 components: - pos: 19.5,-52.5 parent: 2 type: Transform - - uid: 9032 + - uid: 9071 components: - pos: 32.5,-4.5 parent: 2 type: Transform - - uid: 9033 + - uid: 9072 components: - pos: 6.5,-43.5 parent: 2 type: Transform - - uid: 9034 + - uid: 9073 components: - pos: 14.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9035 + - uid: 9074 components: - - pos: 6.5,-13.5 + - pos: 6.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9036 - components: - - pos: 6.5,-14.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9037 + - uid: 9075 components: - pos: 7.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9038 + - uid: 9076 components: - pos: 8.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9039 + - uid: 9077 components: - pos: 8.5,-16.5 parent: 2 type: Transform - - uid: 9040 + - uid: 9078 components: - pos: 21.5,-28.5 parent: 2 type: Transform - - uid: 9041 + - uid: 9079 components: - pos: 21.5,-10.5 parent: 2 type: Transform - - uid: 9042 + - uid: 9080 components: - pos: 12.5,-49.5 parent: 2 type: Transform - - uid: 9043 + - uid: 9081 components: - pos: 13.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9044 + - uid: 9082 components: - pos: 14.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9045 + - uid: 9083 components: - pos: 32.5,-2.5 parent: 2 type: Transform - - uid: 9046 - components: - - pos: 6.5,-12.5 - parent: 2 - type: Transform - - uid: 9047 + - uid: 9084 components: - pos: -4.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9048 + - uid: 9085 components: - pos: 5.5,-43.5 parent: 2 type: Transform - - uid: 9049 + - uid: 9086 components: - pos: 38.5,16.5 parent: 2 type: Transform - - uid: 9050 + - uid: 9087 components: - pos: 37.5,14.5 parent: 2 type: Transform - - uid: 9051 + - uid: 9088 components: - pos: 7.5,-46.5 parent: 2 type: Transform - - uid: 9052 + - uid: 9089 components: - pos: 27.5,18.5 parent: 2 type: Transform - - uid: 9053 + - uid: 9090 components: - pos: 32.5,-3.5 parent: 2 type: Transform - - uid: 9054 + - uid: 9091 components: - pos: -18.5,-69.5 parent: 2 type: Transform - - uid: 9055 + - uid: 9092 components: - pos: -13.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9056 + - uid: 9093 components: - pos: 26.5,-28.5 parent: 2 type: Transform - - uid: 9057 + - uid: 9094 components: - pos: 25.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9058 + - uid: 9095 components: - pos: 23.5,-28.5 parent: 2 type: Transform - - uid: 9059 + - uid: 9096 components: - pos: 22.5,-28.5 parent: 2 type: Transform - - uid: 9060 + - uid: 9097 components: - pos: 20.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9061 + - uid: 9098 components: - pos: 7.5,-45.5 parent: 2 type: Transform - - uid: 9062 + - uid: 9099 components: - pos: 11.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9063 + - uid: 9100 components: - pos: 11.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9064 + - uid: 9101 components: - pos: 20.5,-11.5 parent: 2 type: Transform - - uid: 9065 + - uid: 9102 components: - pos: -17.5,-69.5 parent: 2 type: Transform - - uid: 9066 + - uid: 9103 components: - pos: 22.5,17.5 parent: 2 type: Transform - - uid: 9067 + - uid: 9104 components: - pos: 23.5,17.5 parent: 2 type: Transform - - uid: 9068 + - uid: 9105 components: - pos: 23.5,18.5 parent: 2 type: Transform - - uid: 9069 + - uid: 9106 components: - pos: 24.5,18.5 parent: 2 type: Transform - - uid: 9070 + - uid: 9107 components: - pos: 25.5,18.5 parent: 2 type: Transform - - uid: 9071 + - uid: 9108 components: - pos: 26.5,18.5 parent: 2 type: Transform - - uid: 9072 + - uid: 9109 components: - pos: 35.5,-28.5 parent: 2 type: Transform - - uid: 9073 + - uid: 9110 components: - pos: 35.5,-30.5 parent: 2 type: Transform - - uid: 9074 + - uid: 9111 components: - pos: -15.5,-69.5 parent: 2 type: Transform - - uid: 9075 + - uid: 9112 components: - pos: -12.5,-69.5 parent: 2 type: Transform - - uid: 9076 + - uid: 9113 components: - pos: 33.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9077 + - uid: 9114 components: - pos: 29.5,20.5 parent: 2 type: Transform - - uid: 9078 + - uid: 9115 components: - pos: 29.5,21.5 parent: 2 type: Transform - - uid: 9079 + - uid: 9116 components: - pos: 28.5,21.5 parent: 2 type: Transform - - uid: 9080 + - uid: 9117 components: - pos: 27.5,21.5 parent: 2 type: Transform - - uid: 9081 + - uid: 9118 components: - pos: 26.5,21.5 parent: 2 type: Transform - - uid: 9082 + - uid: 9119 components: - pos: 25.5,21.5 parent: 2 type: Transform - - uid: 9083 + - uid: 9120 components: - pos: 25.5,22.5 parent: 2 type: Transform - - uid: 9084 + - uid: 9121 components: - pos: 25.5,23.5 parent: 2 type: Transform - - uid: 9085 + - uid: 9122 components: - pos: 25.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9086 + - uid: 9123 components: - pos: 24.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9087 + - uid: 9124 components: - pos: 30.5,21.5 parent: 2 type: Transform - - uid: 9088 + - uid: 9125 components: - pos: 31.5,21.5 parent: 2 type: Transform - - uid: 9089 + - uid: 9126 components: - pos: 32.5,21.5 parent: 2 type: Transform - - uid: 9090 + - uid: 9127 components: - pos: 32.5,22.5 parent: 2 type: Transform - - uid: 9091 + - uid: 9128 components: - pos: 32.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9092 + - uid: 9129 components: - pos: 33.5,24.5 parent: 2 type: Transform - - uid: 9093 + - uid: 9130 components: - pos: 33.5,25.5 parent: 2 type: Transform - - uid: 9094 + - uid: 9131 components: - pos: 46.5,-64.5 parent: 2 type: Transform - - uid: 9095 + - uid: 9132 components: - pos: -13.5,42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9096 + - uid: 9133 components: - pos: -14.5,42.5 parent: 2 type: Transform - - uid: 9097 + - uid: 9134 components: - pos: -19.5,23.5 parent: 2 type: Transform - - uid: 9098 + - uid: 9135 components: - pos: -19.5,22.5 parent: 2 type: Transform - - uid: 9099 + - uid: 9136 components: - pos: 32.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9100 + - uid: 9137 components: - pos: 63.5,7.5 parent: 2 type: Transform - - uid: 9101 + - uid: 9138 components: - pos: 63.5,6.5 parent: 2 type: Transform - - uid: 9102 + - uid: 9139 components: - pos: 63.5,5.5 parent: 2 type: Transform - - uid: 9103 + - uid: 9140 components: - pos: 63.5,4.5 parent: 2 type: Transform - - uid: 9104 + - uid: 9141 components: - pos: 62.5,4.5 parent: 2 type: Transform - - uid: 9105 + - uid: 9142 components: - pos: 61.5,4.5 parent: 2 type: Transform - - uid: 9106 + - uid: 9143 components: - pos: 60.5,4.5 parent: 2 type: Transform - - uid: 9107 + - uid: 9144 components: - pos: 60.5,5.5 parent: 2 type: Transform - - uid: 9108 + - uid: 9145 components: - pos: 60.5,6.5 parent: 2 type: Transform - - uid: 9109 + - uid: 9146 components: - pos: 60.5,7.5 parent: 2 type: Transform - - uid: 9110 + - uid: 9147 components: - pos: 60.5,8.5 parent: 2 type: Transform - - uid: 9111 + - uid: 9148 components: - pos: 60.5,9.5 parent: 2 type: Transform - - uid: 9112 + - uid: 9149 components: - pos: 59.5,9.5 parent: 2 type: Transform - - uid: 9113 + - uid: 9150 components: - pos: 58.5,9.5 parent: 2 type: Transform - - uid: 9114 + - uid: 9151 components: - pos: 58.5,10.5 parent: 2 type: Transform - - uid: 9115 + - uid: 9152 components: - pos: 58.5,11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9116 + - uid: 9153 components: - pos: 38.5,15.5 parent: 2 type: Transform - - uid: 9117 + - uid: 9154 components: - pos: 22.5,-8.5 parent: 2 type: Transform - - uid: 9118 + - uid: 9155 components: - pos: 23.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9119 + - uid: 9156 components: - pos: 24.5,-8.5 parent: 2 type: Transform - - uid: 9120 + - uid: 9157 components: - pos: 25.5,-8.5 parent: 2 type: Transform - - uid: 9121 + - uid: 9158 components: - pos: 26.5,-8.5 parent: 2 type: Transform - - uid: 9122 + - uid: 9159 components: - pos: 27.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9123 + - uid: 9160 components: - pos: 29.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9124 + - uid: 9161 components: - pos: 28.5,-8.5 parent: 2 type: Transform - - uid: 9125 + - uid: 9162 components: - pos: 30.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9126 + - uid: 9163 components: - pos: 31.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9127 + - uid: 9164 components: - pos: 32.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9128 + - uid: 9165 components: - pos: 47.5,-3.5 parent: 2 type: Transform - - uid: 9129 + - uid: 9166 components: - pos: 47.5,-2.5 parent: 2 type: Transform - - uid: 9130 + - uid: 9167 components: - pos: 47.5,-1.5 parent: 2 type: Transform - - uid: 9131 + - uid: 9168 components: - pos: 46.5,-1.5 parent: 2 type: Transform - - uid: 9132 + - uid: 9169 components: - pos: 46.5,-0.5 parent: 2 type: Transform - - uid: 9133 + - uid: 9170 components: - pos: 46.5,0.5 parent: 2 type: Transform - - uid: 9134 + - uid: 9171 components: - pos: 47.5,0.5 parent: 2 type: Transform - - uid: 9135 + - uid: 9172 components: - pos: 48.5,0.5 parent: 2 type: Transform - - uid: 9136 + - uid: 9173 components: - pos: 49.5,0.5 parent: 2 type: Transform - - uid: 9137 + - uid: 9174 components: - pos: 49.5,1.5 parent: 2 type: Transform - - uid: 9138 + - uid: 9175 components: - pos: 49.5,2.5 parent: 2 type: Transform - - uid: 9139 + - uid: 9176 components: - pos: 49.5,3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9140 + - uid: 9177 components: - pos: 48.5,-5.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9141 + - uid: 9178 components: - pos: 47.5,-5.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9142 + - uid: 9179 components: - pos: 47.5,-6.5 parent: 2 type: Transform - - uid: 9143 + - uid: 9180 components: - pos: 47.5,-7.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9144 + - uid: 9181 components: - pos: 47.5,-8.5 parent: 2 type: Transform - - uid: 9145 + - uid: 9182 components: - pos: 48.5,-8.5 parent: 2 type: Transform - - uid: 9146 + - uid: 9183 components: - pos: 49.5,-8.5 parent: 2 type: Transform - - uid: 9147 + - uid: 9184 components: - pos: 50.5,-8.5 parent: 2 type: Transform - - uid: 9148 + - uid: 9185 components: - pos: 51.5,-8.5 parent: 2 type: Transform - - uid: 9149 + - uid: 9186 components: - pos: 52.5,-8.5 parent: 2 type: Transform - - uid: 9150 + - uid: 9187 components: - pos: 52.5,-7.5 parent: 2 type: Transform - - uid: 9151 + - uid: 9188 components: - pos: 52.5,-6.5 parent: 2 type: Transform - - uid: 9152 + - uid: 9189 components: - pos: 53.5,-6.5 parent: 2 type: Transform - - uid: 9153 + - uid: 9190 components: - pos: 53.5,-5.5 parent: 2 type: Transform - - uid: 9154 + - uid: 9191 components: - pos: 54.5,-5.5 parent: 2 type: Transform - - uid: 9155 + - uid: 9192 components: - pos: 55.5,-5.5 parent: 2 type: Transform - - uid: 9156 + - uid: 9193 components: - pos: 56.5,-5.5 parent: 2 type: Transform - - uid: 9157 + - uid: 9194 components: - pos: 57.5,-5.5 parent: 2 type: Transform - - uid: 9158 + - uid: 9195 components: - pos: 58.5,-5.5 parent: 2 type: Transform - - uid: 9159 + - uid: 9196 components: - pos: 59.5,-5.5 parent: 2 type: Transform - - uid: 9160 + - uid: 9197 components: - pos: 59.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9161 + - uid: 9198 components: - pos: 43.5,-64.5 parent: 2 type: Transform - - uid: 9162 + - uid: 9199 components: - pos: 38.5,-46.5 parent: 2 type: Transform - - uid: 9163 + - uid: 9200 components: - pos: 38.5,-45.5 parent: 2 type: Transform - - uid: 9164 + - uid: 9201 components: - pos: 38.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9165 + - uid: 9202 components: - pos: 38.5,-43.5 parent: 2 type: Transform - - uid: 9166 + - uid: 9203 components: - pos: 39.5,-43.5 parent: 2 type: Transform - - uid: 9167 + - uid: 9204 components: - pos: 40.5,-43.5 parent: 2 type: Transform - - uid: 9168 + - uid: 9205 components: - pos: 41.5,-43.5 parent: 2 type: Transform - - uid: 9169 + - uid: 9206 components: - pos: 42.5,-43.5 parent: 2 type: Transform - - uid: 9170 + - uid: 9207 components: - pos: 43.5,-43.5 parent: 2 type: Transform - - uid: 9171 + - uid: 9208 components: - pos: 44.5,-43.5 parent: 2 type: Transform - - uid: 9172 + - uid: 9209 components: - pos: 45.5,-43.5 parent: 2 type: Transform - - uid: 9173 + - uid: 9210 components: - pos: 46.5,-43.5 parent: 2 type: Transform - - uid: 9174 + - uid: 9211 components: - pos: 47.5,-43.5 parent: 2 type: Transform - - uid: 9175 + - uid: 9212 components: - pos: 48.5,-43.5 parent: 2 type: Transform - - uid: 9176 + - uid: 9213 components: - pos: 49.5,-43.5 parent: 2 type: Transform - - uid: 9177 + - uid: 9214 components: - pos: 49.5,-44.5 parent: 2 type: Transform - - uid: 9178 + - uid: 9215 components: - pos: 49.5,-45.5 parent: 2 type: Transform - - uid: 9179 + - uid: 9216 components: - pos: 50.5,-45.5 parent: 2 type: Transform - - uid: 9180 + - uid: 9217 components: - pos: 51.5,-45.5 parent: 2 type: Transform - - uid: 9181 + - uid: 9218 components: - pos: 52.5,-45.5 parent: 2 type: Transform - - uid: 9182 + - uid: 9219 components: - pos: 53.5,-45.5 parent: 2 type: Transform - - uid: 9183 + - uid: 9220 components: - pos: 54.5,-45.5 parent: 2 type: Transform - - uid: 9184 + - uid: 9221 components: - pos: 55.5,-45.5 parent: 2 type: Transform - - uid: 9185 + - uid: 9222 components: - pos: 55.5,-44.5 parent: 2 type: Transform - - uid: 9186 + - uid: 9223 components: - pos: 55.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9187 + - uid: 9224 components: - pos: 68.5,-59.5 parent: 2 type: Transform - - uid: 9188 + - uid: 9225 components: - pos: 69.5,-59.5 parent: 2 type: Transform - - uid: 9189 + - uid: 9226 components: - pos: 40.5,-62.5 parent: 2 type: Transform - - uid: 9190 + - uid: 9227 components: - pos: 40.5,-60.5 parent: 2 type: Transform - - uid: 9191 + - uid: 9228 components: - pos: 42.5,-64.5 parent: 2 type: Transform - - uid: 9192 + - uid: 9229 components: - pos: -16.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9193 + - uid: 9230 components: - pos: -17.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9194 + - uid: 9231 components: - pos: -18.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9195 + - uid: 9232 components: - pos: -19.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9196 + - uid: 9233 components: - pos: -20.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9197 + - uid: 9234 components: - pos: -20.5,0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9198 + - uid: 9235 components: - pos: -29.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9199 + - uid: 9236 components: - pos: -28.5,-23.5 parent: 2 type: Transform - - uid: 9200 + - uid: 9237 components: - pos: -28.5,-22.5 parent: 2 type: Transform - - uid: 9201 + - uid: 9238 components: - pos: -28.5,-21.5 parent: 2 type: Transform - - uid: 9202 + - uid: 9239 components: - pos: -29.5,-21.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9203 + - uid: 9240 components: - pos: -30.5,-21.5 parent: 2 type: Transform - - uid: 9204 + - uid: 9241 components: - pos: -31.5,-21.5 parent: 2 type: Transform - - uid: 9205 + - uid: 9242 components: - pos: -31.5,-20.5 parent: 2 type: Transform - - uid: 9206 + - uid: 9243 components: - pos: -31.5,-19.5 parent: 2 type: Transform - - uid: 9207 + - uid: 9244 components: - pos: -31.5,-18.5 parent: 2 type: Transform - - uid: 9208 + - uid: 9245 components: - pos: -31.5,-17.5 parent: 2 type: Transform - - uid: 9209 + - uid: 9246 components: - pos: -31.5,-16.5 parent: 2 type: Transform - - uid: 9210 + - uid: 9247 components: - pos: -31.5,-15.5 parent: 2 type: Transform - - uid: 9211 + - uid: 9248 components: - pos: -31.5,-14.5 parent: 2 type: Transform - - uid: 9212 + - uid: 9249 components: - pos: -31.5,-13.5 parent: 2 type: Transform - - uid: 9213 + - uid: 9250 components: - pos: -31.5,-12.5 parent: 2 type: Transform - - uid: 9214 + - uid: 9251 components: - pos: -31.5,-11.5 parent: 2 type: Transform - - uid: 9215 + - uid: 9252 components: - pos: -31.5,-10.5 parent: 2 type: Transform - - uid: 9216 + - uid: 9253 components: - pos: -30.5,-10.5 parent: 2 type: Transform - - uid: 9217 + - uid: 9254 components: - pos: -29.5,-10.5 parent: 2 type: Transform - - uid: 9218 + - uid: 9255 components: - pos: -29.5,-9.5 parent: 2 type: Transform - - uid: 9219 + - uid: 9256 components: - pos: 43.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9220 + - uid: 9257 components: - pos: 43.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9221 + - uid: 9258 components: - pos: 42.5,-59.5 parent: 2 type: Transform - - uid: 9222 + - uid: 9259 components: - pos: 41.5,-59.5 parent: 2 type: Transform - - uid: 9223 + - uid: 9260 components: - pos: 40.5,-59.5 parent: 2 type: Transform - - uid: 9224 + - uid: 9261 components: - pos: 39.5,-59.5 parent: 2 type: Transform - - uid: 9225 + - uid: 9262 components: - pos: 38.5,-59.5 parent: 2 type: Transform - - uid: 9226 + - uid: 9263 components: - pos: 37.5,-59.5 parent: 2 type: Transform - - uid: 9227 + - uid: 9264 components: - pos: 37.5,-58.5 parent: 2 type: Transform - - uid: 9228 + - uid: 9265 components: - pos: 37.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9229 + - uid: 9266 components: - pos: 56.5,-45.5 parent: 2 type: Transform - - uid: 9230 + - uid: 9267 components: - pos: 57.5,-45.5 parent: 2 type: Transform - - uid: 9231 + - uid: 9268 components: - pos: 58.5,-45.5 parent: 2 type: Transform - - uid: 9232 + - uid: 9269 components: - pos: 59.5,-45.5 parent: 2 type: Transform - - uid: 9233 + - uid: 9270 components: - pos: 60.5,-45.5 parent: 2 type: Transform - - uid: 9234 + - uid: 9271 components: - pos: 61.5,-45.5 parent: 2 type: Transform - - uid: 9235 + - uid: 9272 components: - pos: 61.5,-46.5 parent: 2 type: Transform - - uid: 9236 + - uid: 9273 components: - pos: 61.5,-47.5 parent: 2 type: Transform - - uid: 9237 + - uid: 9274 components: - pos: 61.5,-48.5 parent: 2 type: Transform - - uid: 9238 + - uid: 9275 components: - pos: 61.5,-49.5 parent: 2 type: Transform - - uid: 9239 + - uid: 9276 components: - pos: 61.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9240 + - uid: 9277 components: - pos: 61.5,-51.5 parent: 2 type: Transform - - uid: 9241 + - uid: 9278 components: - pos: 60.5,-51.5 parent: 2 type: Transform - - uid: 9242 + - uid: 9279 components: - pos: 59.5,-51.5 parent: 2 type: Transform - - uid: 9243 + - uid: 9280 components: - pos: 58.5,-51.5 parent: 2 type: Transform - - uid: 9244 + - uid: 9281 components: - pos: 58.5,-52.5 parent: 2 type: Transform - - uid: 9245 + - uid: 9282 components: - pos: 58.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9246 + - uid: 9283 components: - pos: 59.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9247 + - uid: 9284 components: - pos: 59.5,-54.5 parent: 2 type: Transform - - uid: 9248 + - uid: 9285 components: - pos: 59.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9249 + - uid: 9286 components: - pos: 60.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9250 + - uid: 9287 components: - pos: 60.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9251 + - uid: 9288 components: - pos: 61.5,-56.5 parent: 2 type: Transform - - uid: 9252 + - uid: 9289 components: - pos: 62.5,-56.5 parent: 2 type: Transform - - uid: 9253 + - uid: 9290 components: - pos: 63.5,-56.5 parent: 2 type: Transform - - uid: 9254 + - uid: 9291 components: - pos: 64.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9255 + - uid: 9292 components: - pos: 64.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9256 + - uid: 9293 components: - pos: 65.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9257 + - uid: 9294 components: - pos: 65.5,-54.5 parent: 2 type: Transform - - uid: 9258 + - uid: 9295 components: - pos: 65.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9259 + - uid: 9296 components: - pos: 66.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9260 + - uid: 9297 components: - pos: 66.5,-52.5 parent: 2 type: Transform - - uid: 9261 + - uid: 9298 components: - pos: 66.5,-51.5 parent: 2 type: Transform - - uid: 9262 + - uid: 9299 components: - pos: 66.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9263 + - uid: 9300 components: - pos: 65.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9264 + - uid: 9301 components: - pos: 47.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9265 + - uid: 9302 components: - pos: -59.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9266 + - uid: 9303 components: - pos: -57.5,-20.5 parent: 2 type: Transform - - uid: 9267 + - uid: 9304 components: - - pos: -58.5,-20.5 + - pos: -56.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9268 + - uid: 9305 components: - pos: -60.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9269 + - uid: 9306 components: - pos: -61.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9270 + - uid: 9307 components: - pos: -62.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9271 + - uid: 9308 components: - pos: -63.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9272 + - uid: 9309 components: - pos: -64.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9273 + - uid: 9310 components: - pos: -65.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9274 + - uid: 9311 components: - pos: -66.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9275 + - uid: 9312 components: - pos: -67.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9276 + - uid: 9313 components: - pos: -68.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9277 + - uid: 9314 components: - pos: -69.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9278 + - uid: 9315 components: - pos: -70.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9279 + - uid: 9316 components: - pos: -71.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9280 + - uid: 9317 components: - pos: -72.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9281 + - uid: 9318 components: - pos: -73.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9282 + - uid: 9319 components: - pos: -73.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9283 + - uid: 9320 components: - pos: -73.5,-18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9284 + - uid: 9321 components: - pos: -73.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9285 + - uid: 9322 components: - pos: -73.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9286 + - uid: 9323 components: - pos: -73.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9287 + - uid: 9324 components: - pos: -73.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9288 + - uid: 9325 components: - pos: -73.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9289 + - uid: 9326 components: - pos: -73.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9290 + - uid: 9327 components: - pos: -73.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9291 + - uid: 9328 components: - pos: -73.5,-10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9292 + - uid: 9329 components: - pos: -73.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9293 + - uid: 9330 components: - pos: -73.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9294 + - uid: 9331 components: - pos: -73.5,-7.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9295 + - uid: 9332 components: - pos: -73.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9296 + - uid: 9333 components: - pos: -72.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9297 + - uid: 9334 components: - pos: -71.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9298 + - uid: 9335 components: - pos: -70.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9299 + - uid: 9336 components: - pos: -69.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9300 + - uid: 9337 components: - pos: -68.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9301 + - uid: 9338 components: - pos: -67.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9302 + - uid: 9339 components: - pos: -66.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9303 + - uid: 9340 components: - pos: -65.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9304 + - uid: 9341 components: - pos: -64.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9305 + - uid: 9342 components: - pos: -63.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9306 + - uid: 9343 components: - pos: -62.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9307 + - uid: 9344 components: - pos: -61.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9308 + - uid: 9345 components: - pos: -60.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9309 + - uid: 9346 components: - pos: -59.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9310 + - uid: 9347 components: - pos: -59.5,-7.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9311 + - uid: 9348 components: - pos: -59.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9312 + - uid: 9349 components: - pos: -59.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9313 + - uid: 9350 components: - pos: -59.5,-10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9314 + - uid: 9351 components: - pos: -59.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9315 + - uid: 9352 components: - pos: -59.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9316 + - uid: 9353 components: - pos: -59.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9317 + - uid: 9354 components: - pos: -59.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9318 + - uid: 9355 components: - pos: -59.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9319 + - uid: 9356 components: - pos: -59.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9320 + - uid: 9357 components: - pos: -59.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9321 + - uid: 9358 components: - pos: -59.5,-18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9322 + - uid: 9359 components: - pos: -59.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9323 + - uid: 9360 components: - pos: -50.5,-8.5 parent: 2 type: Transform - - uid: 9324 + - uid: 9361 components: - pos: -51.5,-8.5 parent: 2 type: Transform - - uid: 9325 + - uid: 9362 components: - pos: -52.5,-8.5 parent: 2 type: Transform - - uid: 9326 + - uid: 9363 components: - pos: -53.5,-8.5 parent: 2 type: Transform - - uid: 9327 + - uid: 9364 components: - pos: -53.5,-9.5 parent: 2 type: Transform - - uid: 9328 + - uid: 9365 components: - pos: -53.5,-10.5 parent: 2 type: Transform - - uid: 9329 + - uid: 9366 components: - pos: -53.5,-11.5 parent: 2 type: Transform - - uid: 9330 + - uid: 9367 components: - pos: -53.5,-12.5 parent: 2 type: Transform - - uid: 9331 + - uid: 9368 components: - pos: -53.5,-13.5 parent: 2 type: Transform - - uid: 9332 + - uid: 9369 components: - pos: -53.5,-14.5 parent: 2 type: Transform - - uid: 9333 + - uid: 9370 components: - pos: -53.5,-15.5 parent: 2 type: Transform - - uid: 9334 + - uid: 9371 components: - pos: -53.5,-16.5 parent: 2 type: Transform - - uid: 9335 + - uid: 9372 components: - pos: -51.5,-16.5 parent: 2 type: Transform - - uid: 9336 + - uid: 9373 components: - pos: -52.5,-16.5 parent: 2 type: Transform - - uid: 9337 + - uid: 9374 components: - pos: -50.5,-16.5 parent: 2 type: Transform - - uid: 9338 + - uid: 9375 components: - pos: -50.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9339 + - uid: 9376 components: - pos: -27.5,-37.5 parent: 2 type: Transform - - uid: 9340 + - uid: 9377 components: - pos: -27.5,-36.5 parent: 2 type: Transform - - uid: 9341 + - uid: 9378 components: - pos: -27.5,-35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9342 + - uid: 9379 components: - pos: -27.5,-34.5 parent: 2 type: Transform - - uid: 9343 + - uid: 9380 components: - pos: -28.5,-34.5 parent: 2 type: Transform - - uid: 9344 + - uid: 9381 components: - pos: -29.5,-34.5 parent: 2 type: Transform - - uid: 9345 + - uid: 9382 components: - pos: -30.5,-34.5 parent: 2 type: Transform - - uid: 9346 + - uid: 9383 components: - pos: -31.5,-34.5 parent: 2 type: Transform - - uid: 9347 + - uid: 9384 components: - pos: -32.5,-34.5 parent: 2 type: Transform - - uid: 9348 + - uid: 9385 components: - pos: -33.5,-34.5 parent: 2 type: Transform - - uid: 9349 + - uid: 9386 components: - pos: -34.5,-34.5 parent: 2 type: Transform - - uid: 9350 + - uid: 9387 components: - pos: -35.5,-34.5 parent: 2 type: Transform - - uid: 9351 + - uid: 9388 components: - pos: -35.5,-33.5 parent: 2 type: Transform - - uid: 9352 + - uid: 9389 components: - pos: -35.5,-32.5 parent: 2 type: Transform - - uid: 9353 + - uid: 9390 components: - pos: -35.5,-31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9354 + - uid: 9391 components: - pos: -54.5,-13.5 parent: 2 type: Transform - - uid: 9355 + - uid: 9392 components: - pos: -31.5,-54.5 parent: 2 type: Transform - - uid: 9356 + - uid: 9393 components: - pos: -31.5,-55.5 parent: 2 type: Transform - - uid: 9357 + - uid: 9394 components: - pos: -30.5,-55.5 parent: 2 type: Transform - - uid: 9358 + - uid: 9395 components: - pos: -29.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9359 + - uid: 9396 components: - pos: -28.5,-55.5 parent: 2 type: Transform - - uid: 9360 + - uid: 9397 components: - pos: -28.5,-56.5 parent: 2 type: Transform - - uid: 9361 + - uid: 9398 components: - pos: -28.5,-57.5 parent: 2 type: Transform - - uid: 9362 + - uid: 9399 components: - pos: -28.5,-58.5 parent: 2 type: Transform - - uid: 9363 + - uid: 9400 components: - pos: -28.5,-59.5 parent: 2 type: Transform - - uid: 9364 + - uid: 9401 components: - pos: -28.5,-60.5 parent: 2 type: Transform - - uid: 9365 + - uid: 9402 components: - pos: -28.5,-61.5 parent: 2 type: Transform - - uid: 9366 + - uid: 9403 components: - pos: -28.5,-62.5 parent: 2 type: Transform - - uid: 9367 + - uid: 9404 components: - pos: -28.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9368 + - uid: 9405 components: - pos: -29.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9369 + - uid: 9406 components: - pos: -29.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9370 + - uid: 9407 components: - pos: -30.5,-63.5 parent: 2 type: Transform - - uid: 9371 + - uid: 9408 components: - pos: 21.5,-8.5 parent: 2 type: Transform - - uid: 9372 + - uid: 9409 components: - pos: 29.5,-28.5 parent: 2 type: Transform - - uid: 9373 + - uid: 9410 components: - pos: -55.5,-89.5 parent: 2 type: Transform - - uid: 9374 + - uid: 9411 components: - pos: -54.5,-89.5 parent: 2 type: Transform - - uid: 9375 + - uid: 9412 components: - pos: -54.5,-88.5 parent: 2 type: Transform - - uid: 9376 + - uid: 9413 components: - pos: -54.5,-87.5 parent: 2 type: Transform - - uid: 9377 + - uid: 9414 components: - pos: -55.5,-87.5 parent: 2 type: Transform - - uid: 9378 + - uid: 9415 components: - pos: -55.5,-86.5 parent: 2 type: Transform - - uid: 9379 + - uid: 9416 components: - pos: -56.5,-86.5 parent: 2 type: Transform - - uid: 9380 + - uid: 9417 components: - pos: -56.5,-85.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9381 + - uid: 9418 components: - pos: -8.5,35.5 parent: 2 type: Transform - - uid: 9382 + - uid: 9419 components: - pos: -8.5,33.5 parent: 2 type: Transform - - uid: 9383 + - uid: 9420 components: - pos: -8.5,34.5 parent: 2 type: Transform - - uid: 9384 + - uid: 9421 components: - pos: -8.5,31.5 parent: 2 type: Transform - - uid: 9385 + - uid: 9422 components: - pos: -8.5,32.5 parent: 2 type: Transform - - uid: 9386 + - uid: 9423 components: - pos: -7.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9387 + - uid: 9424 components: - pos: -6.5,32.5 parent: 2 type: Transform - - uid: 9388 + - uid: 9425 components: - pos: -5.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9389 + - uid: 9426 components: - pos: -4.5,32.5 parent: 2 type: Transform - - uid: 9390 + - uid: 9427 components: - pos: -3.5,32.5 parent: 2 type: Transform - - uid: 9391 + - uid: 9428 components: - pos: -2.5,32.5 parent: 2 type: Transform - - uid: 9392 + - uid: 9429 components: - pos: -1.5,32.5 parent: 2 type: Transform - - uid: 9393 + - uid: 9430 components: - pos: -0.5,32.5 parent: 2 type: Transform - - uid: 9394 + - uid: 9431 components: - pos: 0.5,32.5 parent: 2 type: Transform - - uid: 9395 + - uid: 9432 components: - pos: 0.5,33.5 parent: 2 type: Transform - - uid: 9396 + - uid: 9433 components: - pos: 0.5,34.5 parent: 2 type: Transform - - uid: 9397 + - uid: 9434 components: - pos: 0.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9398 + - uid: 9435 components: - pos: -23.5,15.5 parent: 2 type: Transform - - uid: 9399 + - uid: 9436 components: - pos: -22.5,15.5 parent: 2 type: Transform - - uid: 9400 + - uid: 9437 components: - pos: -21.5,15.5 parent: 2 type: Transform - - uid: 9401 + - uid: 9438 components: - pos: -20.5,15.5 parent: 2 type: Transform - - uid: 9402 + - uid: 9439 components: - pos: -19.5,15.5 parent: 2 type: Transform - - uid: 9403 + - uid: 9440 components: - pos: -19.5,16.5 parent: 2 type: Transform - - uid: 9404 + - uid: 9441 components: - pos: -19.5,17.5 parent: 2 type: Transform - - uid: 9405 + - uid: 9442 components: - pos: -19.5,18.5 parent: 2 type: Transform - - uid: 9406 + - uid: 9443 components: - pos: -19.5,19.5 parent: 2 type: Transform - - uid: 9407 + - uid: 9444 components: - pos: -19.5,20.5 parent: 2 type: Transform - - uid: 9408 + - uid: 9445 components: - pos: -19.5,21.5 parent: 2 type: Transform - - uid: 9409 + - uid: 9446 components: - pos: -20.5,21.5 parent: 2 type: Transform - - uid: 9410 + - uid: 9447 components: - pos: -21.5,21.5 parent: 2 type: Transform - - uid: 9411 + - uid: 9448 components: - pos: -22.5,21.5 parent: 2 type: Transform - - uid: 9412 + - uid: 9449 components: - pos: -23.5,21.5 parent: 2 type: Transform - - uid: 9413 + - uid: 9450 components: - pos: -23.5,22.5 parent: 2 type: Transform - - uid: 9414 + - uid: 9451 components: - pos: -23.5,23.5 parent: 2 type: Transform - - uid: 9415 + - uid: 9452 components: - pos: -23.5,24.5 parent: 2 type: Transform - - uid: 9416 + - uid: 9453 components: - pos: -23.5,25.5 parent: 2 type: Transform - - uid: 9417 + - uid: 9454 components: - pos: -23.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9418 + - uid: 9455 components: - pos: -9.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9419 + - uid: 9456 components: - pos: -34.5,-3.5 parent: 2 type: Transform - - uid: 9420 + - uid: 9457 components: - pos: -34.5,-2.5 parent: 2 type: Transform - - uid: 9421 + - uid: 9458 components: - pos: -35.5,-2.5 parent: 2 type: Transform - - uid: 9422 + - uid: 9459 components: - pos: -36.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9423 + - uid: 9460 components: - pos: -37.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9424 + - uid: 9461 components: - pos: -37.5,-1.5 parent: 2 type: Transform - - uid: 9425 + - uid: 9462 components: - pos: -37.5,-0.5 parent: 2 type: Transform - - uid: 9426 + - uid: 9463 components: - pos: -37.5,0.5 parent: 2 type: Transform - - uid: 9427 + - uid: 9464 components: - pos: -38.5,0.5 parent: 2 type: Transform - - uid: 9428 + - uid: 9465 components: - pos: -39.5,0.5 parent: 2 type: Transform - - uid: 9429 + - uid: 9466 components: - pos: -40.5,0.5 parent: 2 type: Transform - - uid: 9430 + - uid: 9467 components: - pos: -41.5,0.5 parent: 2 type: Transform - - uid: 9431 + - uid: 9468 components: - pos: -42.5,0.5 parent: 2 type: Transform - - uid: 9432 + - uid: 9469 components: - pos: -42.5,1.5 parent: 2 type: Transform - - uid: 9433 + - uid: 9470 components: - pos: -42.5,2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9434 + - uid: 9471 components: - pos: -9.5,25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9435 + - uid: 9472 components: - pos: -6.5,15.5 parent: 2 type: Transform - - uid: 9436 + - uid: 9473 components: - pos: -10.5,16.5 parent: 2 type: Transform - - uid: 9437 + - uid: 9474 components: - pos: -10.5,18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9438 + - uid: 9475 components: - pos: -11.5,18.5 parent: 2 type: Transform - - uid: 9439 + - uid: 9476 components: - pos: -12.5,18.5 parent: 2 type: Transform - - uid: 9440 + - uid: 9477 components: - pos: -12.5,19.5 parent: 2 type: Transform - - uid: 9441 + - uid: 9478 components: - pos: -12.5,20.5 parent: 2 type: Transform - - uid: 9442 + - uid: 9479 components: - pos: -12.5,21.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9443 + - uid: 9480 components: - pos: -12.5,22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9444 + - uid: 9481 components: - pos: -12.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9445 + - uid: 9482 components: - pos: -12.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9446 + - uid: 9483 components: - pos: -11.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9447 + - uid: 9484 components: - pos: -10.5,24.5 parent: 2 type: Transform - - uid: 9448 + - uid: 9485 components: - pos: -9.5,24.5 parent: 2 type: Transform - - uid: 9449 + - uid: 9486 components: - pos: -8.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9450 + - uid: 9487 components: - pos: -8.5,27.5 parent: 2 type: Transform - - uid: 9451 + - uid: 9488 components: - pos: -8.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9452 + - uid: 9489 components: - pos: -8.5,29.5 parent: 2 type: Transform - - uid: 9453 + - uid: 9490 components: - pos: -8.5,30.5 parent: 2 type: Transform - - uid: 9454 + - uid: 9491 components: - pos: -55.5,-13.5 parent: 2 type: Transform - - uid: 9455 + - uid: 9492 components: - pos: 33.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9456 + - uid: 9493 components: - pos: 33.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9457 + - uid: 9494 components: - pos: 33.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9458 + - uid: 9495 components: - pos: 34.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9459 + - uid: 9496 components: - pos: 35.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9460 + - uid: 9497 components: - pos: 36.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9461 + - uid: 9498 components: - pos: 36.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9462 + - uid: 9499 components: - pos: 36.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9463 + - uid: 9500 components: - pos: 36.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9464 + - uid: 9501 components: - pos: 36.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9465 + - uid: 9502 components: - pos: 35.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9466 + - uid: 9503 components: - pos: 34.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9467 + - uid: 9504 components: - pos: 36.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9468 + - uid: 9505 components: - pos: 34.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9469 + - uid: 9506 components: - pos: 34.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9470 + - uid: 9507 components: - pos: 33.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9471 + - uid: 9508 components: - pos: 32.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9472 + - uid: 9509 components: - pos: 32.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9473 + - uid: 9510 components: - pos: 32.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9474 + - uid: 9511 components: - pos: 32.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9475 + - uid: 9512 components: - pos: 33.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9476 + - uid: 9513 components: - pos: 31.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9477 + - uid: 9514 components: - pos: 30.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9478 + - uid: 9515 components: - pos: 29.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9479 + - uid: 9516 components: - pos: 28.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9480 + - uid: 9517 components: - pos: 27.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9481 + - uid: 9518 components: - pos: 26.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9482 + - uid: 9519 components: - pos: 25.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9483 + - uid: 9520 components: - pos: 24.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9484 + - uid: 9521 components: - pos: 23.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9485 + - uid: 9522 components: - pos: 22.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9486 + - uid: 9523 components: - pos: 21.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9487 + - uid: 9524 components: - pos: 26.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9488 + - uid: 9525 components: - pos: 26.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9489 + - uid: 9526 components: - pos: 26.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9490 + - uid: 9527 components: - pos: 25.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9491 + - uid: 9528 components: - pos: 24.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9492 + - uid: 9529 components: - pos: 23.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9493 + - uid: 9530 components: - pos: 22.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9494 + - uid: 9531 components: - pos: 22.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9495 + - uid: 9532 components: - pos: 22.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9496 + - uid: 9533 components: - pos: 22.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9497 + - uid: 9534 components: - pos: 22.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9498 + - uid: 9535 components: - pos: 22.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9499 + - uid: 9536 components: - pos: 22.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9500 + - uid: 9537 components: - pos: 22.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9501 + - uid: 9538 components: - pos: 22.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9502 + - uid: 9539 components: - pos: 34.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9503 + - uid: 9540 components: - pos: 35.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9504 + - uid: 9541 components: - pos: 36.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9505 + - uid: 9542 components: - pos: 36.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9506 + - uid: 9543 components: - pos: 49.5,-46.5 parent: 2 type: Transform - - uid: 9507 + - uid: 9544 components: - pos: 49.5,-47.5 parent: 2 type: Transform - - uid: 9508 + - uid: 9545 components: - pos: 49.5,-48.5 parent: 2 type: Transform - - uid: 9509 + - uid: 9546 components: - pos: 48.5,-48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9510 + - uid: 9547 components: - pos: -31.5,-63.5 parent: 2 type: Transform - - uid: 9511 + - uid: 9548 components: - pos: -32.5,-63.5 parent: 2 type: Transform - - uid: 9512 + - uid: 9549 components: - pos: -33.5,-63.5 parent: 2 type: Transform - - uid: 9513 + - uid: 9550 components: - pos: -34.5,-63.5 parent: 2 type: Transform - - uid: 9514 + - uid: 9551 components: - pos: -34.5,-64.5 parent: 2 type: Transform - - uid: 9515 + - uid: 9552 components: - pos: -34.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9516 + - uid: 9553 components: - pos: -35.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9517 + - uid: 9554 components: - pos: -36.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9518 + - uid: 9555 components: - pos: -37.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9519 + - uid: 9556 components: - pos: -37.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9520 + - uid: 9557 components: - pos: -37.5,-67.5 parent: 2 type: Transform - - uid: 9521 + - uid: 9558 components: - pos: -37.5,-68.5 parent: 2 type: Transform - - uid: 9522 + - uid: 9559 components: - pos: -38.5,-68.5 parent: 2 type: Transform - - uid: 9523 + - uid: 9560 components: - pos: -39.5,-68.5 parent: 2 type: Transform - - uid: 9524 + - uid: 9561 components: - pos: -39.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9525 + - uid: 9562 components: - pos: -10.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9526 + - uid: 9563 components: - pos: -9.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9527 + - uid: 9564 components: - pos: -8.5,-58.5 parent: 2 type: Transform - - uid: 9528 + - uid: 9565 components: - pos: -8.5,-57.5 parent: 2 type: Transform - - uid: 9529 + - uid: 9566 components: - pos: -8.5,-56.5 parent: 2 type: Transform - - uid: 9530 + - uid: 9567 components: - pos: -7.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9531 + - uid: 9568 components: - pos: -6.5,-56.5 parent: 2 type: Transform - - uid: 9532 + - uid: 9569 components: - pos: -5.5,-56.5 parent: 2 type: Transform - - uid: 9533 + - uid: 9570 components: - pos: -4.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9534 + - uid: 9571 components: - pos: -3.5,-56.5 parent: 2 type: Transform - - uid: 9535 + - uid: 9572 components: - pos: -2.5,-56.5 parent: 2 type: Transform - - uid: 9536 + - uid: 9573 components: - pos: -1.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9537 + - uid: 9574 components: - pos: -0.5,-56.5 parent: 2 type: Transform - - uid: 9538 + - uid: 9575 components: - pos: 0.5,-56.5 parent: 2 type: Transform - - uid: 9539 + - uid: 9576 components: - pos: 1.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9540 + - uid: 9577 components: - pos: 2.5,-56.5 parent: 2 type: Transform - - uid: 9541 + - uid: 9578 components: - pos: 3.5,-56.5 parent: 2 type: Transform - - uid: 9542 + - uid: 9579 components: - pos: 4.5,-56.5 parent: 2 type: Transform - - uid: 9543 + - uid: 9580 components: - pos: 5.5,-56.5 parent: 2 type: Transform - - uid: 9544 + - uid: 9581 components: - pos: 6.5,-56.5 parent: 2 type: Transform - - uid: 9545 + - uid: 9582 components: - pos: 6.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9546 + - uid: 9583 components: - pos: 6.5,-54.5 parent: 2 type: Transform - - uid: 9547 + - uid: 9584 components: - pos: 6.5,-53.5 parent: 2 type: Transform - - uid: 9548 + - uid: 9585 components: - pos: 34.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9549 + - uid: 9586 components: - pos: 35.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9550 + - uid: 9587 components: - pos: 35.5,22.5 parent: 2 type: Transform - - uid: 9551 + - uid: 9588 components: - pos: 36.5,22.5 parent: 2 type: Transform - - uid: 9552 + - uid: 9589 components: - pos: 37.5,22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9553 + - uid: 9590 components: - pos: 37.5,20.5 parent: 2 type: Transform - - uid: 9554 + - uid: 9591 components: - pos: 37.5,19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9555 + - uid: 9592 components: - pos: 37.5,18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9556 + - uid: 9593 components: - pos: 38.5,18.5 parent: 2 type: Transform - - uid: 9557 + - uid: 9594 components: - pos: 38.5,17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9558 + - uid: 9595 components: - pos: 29.5,-27.5 parent: 2 type: Transform - - uid: 9559 + - uid: 9596 components: - pos: 50.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9560 + - uid: 9597 components: - pos: 50.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9561 + - uid: 9598 components: - pos: 49.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9562 + - uid: 9599 components: - pos: 48.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9563 + - uid: 9600 components: - pos: 48.5,29.5 parent: 2 type: Transform - - uid: 9564 + - uid: 9601 components: - pos: 48.5,30.5 parent: 2 type: Transform - - uid: 9565 + - uid: 9602 components: - pos: 48.5,31.5 parent: 2 type: Transform - - uid: 9566 + - uid: 9603 components: - pos: 49.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9567 + - uid: 9604 components: - pos: 50.5,31.5 parent: 2 type: Transform - - uid: 9568 + - uid: 9605 components: - pos: 51.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9569 + - uid: 9606 components: - pos: 52.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9570 + - uid: 9607 components: - pos: 52.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9571 + - uid: 9608 components: - pos: 52.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9572 + - uid: 9609 components: - pos: 52.5,34.5 parent: 2 type: Transform - - uid: 9573 + - uid: 9610 components: - pos: 52.5,35.5 parent: 2 type: Transform - - uid: 9574 + - uid: 9611 components: - pos: 52.5,36.5 parent: 2 type: Transform - - uid: 9575 + - uid: 9612 components: - pos: 52.5,37.5 parent: 2 type: Transform - - uid: 9576 + - uid: 9613 components: - pos: 52.5,38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9577 + - uid: 9614 components: - pos: 52.5,39.5 parent: 2 type: Transform - - uid: 9578 + - uid: 9615 components: - pos: 52.5,40.5 parent: 2 type: Transform - - uid: 9579 + - uid: 9616 components: - pos: 52.5,41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9580 + - uid: 9617 components: - pos: 52.5,42.5 parent: 2 type: Transform - - uid: 9581 + - uid: 9618 components: - pos: 53.5,42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9582 + - uid: 9619 components: - pos: 54.5,42.5 parent: 2 type: Transform - - uid: 9583 + - uid: 9620 components: - pos: 55.5,42.5 parent: 2 type: Transform - - uid: 9584 + - uid: 9621 components: - pos: 56.5,42.5 parent: 2 type: Transform - - uid: 9585 + - uid: 9622 components: - pos: 57.5,42.5 parent: 2 type: Transform - - uid: 9586 + - uid: 9623 components: - pos: 58.5,42.5 parent: 2 type: Transform - - uid: 9587 + - uid: 9624 components: - pos: 58.5,43.5 parent: 2 type: Transform - - uid: 9588 + - uid: 9625 components: - pos: 59.5,43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9589 + - uid: 9626 components: - pos: -19.5,26.5 parent: 2 type: Transform - - uid: 9590 + - uid: 9627 components: - pos: -19.5,27.5 parent: 2 type: Transform - - uid: 9591 + - uid: 9628 components: - pos: -19.5,28.5 parent: 2 type: Transform - - uid: 9592 + - uid: 9629 components: - pos: -19.5,29.5 parent: 2 type: Transform - - uid: 9593 + - uid: 9630 components: - pos: -18.5,29.5 parent: 2 type: Transform - - uid: 9594 + - uid: 9631 components: - pos: -17.5,29.5 parent: 2 type: Transform - - uid: 9595 + - uid: 9632 components: - pos: -16.5,29.5 parent: 2 type: Transform - - uid: 9596 + - uid: 9633 components: - pos: -15.5,29.5 parent: 2 type: Transform - - uid: 9597 + - uid: 9634 components: - pos: -15.5,30.5 parent: 2 type: Transform - - uid: 9598 + - uid: 9635 components: - pos: -15.5,31.5 parent: 2 type: Transform - - uid: 9599 + - uid: 9636 components: - pos: -15.5,32.5 parent: 2 type: Transform - - uid: 9600 + - uid: 9637 components: - pos: -15.5,33.5 parent: 2 type: Transform - - uid: 9601 + - uid: 9638 components: - pos: -15.5,34.5 parent: 2 type: Transform - - uid: 9602 + - uid: 9639 components: - pos: -15.5,35.5 parent: 2 type: Transform - - uid: 9603 + - uid: 9640 components: - pos: -15.5,36.5 parent: 2 type: Transform - - uid: 9604 + - uid: 9641 components: - pos: -15.5,37.5 parent: 2 type: Transform - - uid: 9605 + - uid: 9642 components: - pos: -15.5,38.5 parent: 2 type: Transform - - uid: 9606 + - uid: 9643 components: - pos: -15.5,39.5 parent: 2 type: Transform - - uid: 9607 + - uid: 9644 components: - pos: -15.5,40.5 parent: 2 type: Transform - - uid: 9608 + - uid: 9645 components: - pos: -15.5,41.5 parent: 2 type: Transform - - uid: 9609 + - uid: 9646 components: - pos: -15.5,42.5 parent: 2 type: Transform - - uid: 9610 + - uid: 9647 components: - pos: -10.5,62.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9611 + - uid: 9648 components: - pos: -10.5,61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9612 + - uid: 9649 components: - pos: -10.5,60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9613 + - uid: 9650 components: - pos: -10.5,59.5 parent: 2 type: Transform - - uid: 9614 + - uid: 9651 components: - pos: -9.5,59.5 parent: 2 type: Transform - - uid: 9615 + - uid: 9652 components: - pos: -8.5,59.5 parent: 2 type: Transform - - uid: 9616 + - uid: 9653 components: - pos: -8.5,60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9617 + - uid: 9654 components: - pos: 40.5,-61.5 parent: 2 type: Transform - - uid: 9618 + - uid: 9655 components: - pos: 40.5,-63.5 parent: 2 type: Transform - - uid: 9619 + - uid: 9656 components: - pos: 48.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9620 + - uid: 9657 components: - pos: 51.5,-65.5 parent: 2 type: Transform - - uid: 9621 + - uid: 9658 components: - pos: 50.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9622 + - uid: 9659 components: - pos: 49.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9623 + - uid: 9660 components: - pos: 40.5,-64.5 parent: 2 type: Transform - - uid: 9624 + - uid: 9661 components: - pos: 41.5,-64.5 parent: 2 type: Transform - - uid: 9625 + - uid: 9662 components: - pos: 52.5,-65.5 parent: 2 type: Transform - - uid: 9626 + - uid: 9663 components: - pos: 53.5,-65.5 parent: 2 type: Transform - - uid: 9627 + - uid: 9664 components: - pos: 54.5,-65.5 parent: 2 type: Transform - - uid: 9628 + - uid: 9665 components: - pos: 55.5,-65.5 parent: 2 type: Transform - - uid: 9629 + - uid: 9666 components: - pos: 55.5,-64.5 parent: 2 type: Transform - - uid: 9630 + - uid: 9667 components: - pos: 55.5,-63.5 parent: 2 type: Transform - - uid: 9631 + - uid: 9668 components: - pos: 55.5,-62.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9632 + - uid: 9669 components: - pos: 68.5,-60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9633 + - uid: 9670 components: - pos: 68.5,-61.5 parent: 2 type: Transform - - uid: 9634 + - uid: 9671 components: - pos: 69.5,-61.5 parent: 2 type: Transform - - uid: 9635 + - uid: 9672 components: - pos: 70.5,-61.5 parent: 2 type: Transform - - uid: 9636 + - uid: 9673 components: - pos: 71.5,-61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9637 + - uid: 9674 components: - pos: 71.5,-60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9638 + - uid: 9675 components: - pos: 71.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9639 + - uid: 9676 components: - pos: 71.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9640 + - uid: 9677 components: - pos: 71.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9641 + - uid: 9678 components: - pos: 72.5,-57.5 parent: 2 type: Transform - - uid: 9642 + - uid: 9679 components: - pos: 73.5,-57.5 parent: 2 type: Transform - - uid: 9643 + - uid: 9680 components: - pos: 74.5,-57.5 parent: 2 type: Transform - - uid: 9644 + - uid: 9681 components: - pos: 74.5,-56.5 parent: 2 type: Transform - - uid: 9645 + - uid: 9682 components: - pos: 74.5,-55.5 parent: 2 type: Transform - - uid: 9646 + - uid: 9683 components: - pos: 74.5,-54.5 parent: 2 type: Transform - - uid: 9647 + - uid: 9684 components: - pos: 75.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9648 + - uid: 9685 components: - pos: 75.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9649 + - uid: 9686 components: - pos: 75.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9650 + - uid: 9687 components: - pos: 75.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9651 + - uid: 9688 components: - pos: 75.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9652 + - uid: 9689 components: - pos: 75.5,-49.5 parent: 2 type: Transform - - uid: 9653 + - uid: 9690 components: - pos: 75.5,-48.5 parent: 2 type: Transform - - uid: 9654 + - uid: 9691 components: - pos: 75.5,-47.5 parent: 2 type: Transform - - uid: 9655 + - uid: 9692 components: - pos: 75.5,-46.5 parent: 2 type: Transform - - uid: 9656 + - uid: 9693 components: - pos: 75.5,-45.5 parent: 2 type: Transform - - uid: 9657 + - uid: 9694 components: - pos: 74.5,-45.5 parent: 2 type: Transform - - uid: 9658 + - uid: 9695 components: - pos: 73.5,-45.5 parent: 2 type: Transform - - uid: 9659 + - uid: 9696 components: - pos: 72.5,-45.5 parent: 2 type: Transform - - uid: 9660 + - uid: 9697 components: - pos: 71.5,-45.5 parent: 2 type: Transform - - uid: 9661 + - uid: 9698 components: - pos: 71.5,-44.5 parent: 2 type: Transform - - uid: 9662 + - uid: 9699 components: - pos: 71.5,-43.5 parent: 2 type: Transform - - uid: 9663 + - uid: 9700 components: - pos: 71.5,-42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9664 + - uid: 9701 components: - pos: 4.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9665 + - uid: 9702 components: - pos: 7.5,-19.5 parent: 2 type: Transform - - uid: 9666 + - uid: 9703 components: - pos: 5.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9667 + - uid: 9704 components: - pos: 7.5,-20.5 parent: 2 type: Transform - - uid: 9668 + - uid: 9705 components: - pos: 8.5,-20.5 parent: 2 type: Transform - - uid: 9669 + - uid: 9706 components: - pos: 9.5,-20.5 parent: 2 type: Transform - - uid: 9670 + - uid: 9707 components: - pos: 10.5,-20.5 parent: 2 type: Transform - - uid: 9671 + - uid: 9708 components: - pos: 11.5,-20.5 parent: 2 type: Transform - - uid: 9672 + - uid: 9709 components: - pos: 11.5,-19.5 parent: 2 type: Transform - - uid: 9673 + - uid: 9710 components: - pos: 11.5,-18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9674 + - uid: 9711 components: - pos: 6.5,-49.5 parent: 2 type: Transform - - uid: 9675 + - uid: 9712 components: - pos: 7.5,-49.5 parent: 2 type: Transform - - uid: 9676 + - uid: 9713 components: - pos: 9.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9677 + - uid: 9714 components: - pos: 8.5,-49.5 parent: 2 type: Transform - - uid: 9678 + - uid: 9715 components: - pos: 31.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9679 + - uid: 9716 components: - pos: 30.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9680 + - uid: 9717 components: - pos: 29.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9681 + - uid: 9718 components: - pos: 28.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9682 + - uid: 9719 components: - pos: 27.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9683 + - uid: 9720 components: - pos: -10.5,17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9684 + - uid: 9721 components: - pos: -8.5,15.5 parent: 2 type: Transform - - uid: 9685 + - uid: 9722 components: - pos: -9.5,15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9686 + - uid: 9723 components: - pos: -7.5,15.5 parent: 2 type: Transform - - uid: 9687 + - uid: 9724 components: - pos: -65.5,-54.5 parent: 2 type: Transform - - uid: 9688 + - uid: 9725 components: - pos: -66.5,-54.5 parent: 2 type: Transform - - uid: 9689 + - uid: 9726 components: - pos: -66.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9690 + - uid: 9727 components: - pos: -67.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9691 + - uid: 9728 components: - pos: -68.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9692 + - uid: 9729 components: - pos: -69.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9693 + - uid: 9730 components: - pos: -70.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9694 + - uid: 9731 components: - pos: -71.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9695 + - uid: 9732 components: - pos: -72.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9696 + - uid: 9733 components: - pos: -73.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9697 + - uid: 9734 components: - pos: -73.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9698 + - uid: 9735 components: - pos: -74.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9699 + - uid: 9736 components: - pos: -74.5,-51.5 parent: 2 type: Transform - - uid: 9700 + - uid: 9737 components: - pos: -74.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9701 + - uid: 9738 components: - pos: -67.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9702 + - uid: 9739 components: - pos: -69.5,-34.5 parent: 2 type: Transform - - uid: 9703 + - uid: 9740 components: - pos: -68.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9704 + - uid: 9741 components: - pos: -66.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9705 + - uid: 9742 components: - pos: -66.5,-36.5 parent: 2 type: Transform - - uid: 9706 + - uid: 9743 components: - pos: -72.5,-35.5 parent: 2 type: Transform - - uid: 9707 + - uid: 9744 components: - pos: -71.5,-35.5 parent: 2 type: Transform - - uid: 9708 + - uid: 9745 components: - pos: -70.5,-35.5 parent: 2 type: Transform - - uid: 9709 + - uid: 9746 components: - pos: -70.5,-34.5 parent: 2 type: Transform - - uid: 9710 + - uid: 9747 components: - pos: -69.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9711 + - uid: 9748 components: - pos: -70.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9712 + - uid: 9749 components: - pos: -72.5,-37.5 parent: 2 type: Transform - - uid: 9713 + - uid: 9750 components: - pos: -72.5,-36.5 parent: 2 type: Transform - - uid: 9714 + - uid: 9751 components: - pos: -71.5,-38.5 parent: 2 type: Transform - - uid: 9715 + - uid: 9752 components: - pos: -70.5,-38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9716 + - uid: 9753 components: - pos: -66.5,-35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9717 + - uid: 9754 components: - pos: 46.5,1.5 parent: 2 type: Transform - - uid: 9718 + - uid: 9755 components: - pos: 46.5,2.5 parent: 2 type: Transform - - uid: 9719 + - uid: 9756 components: - pos: 46.5,3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9720 + - uid: 9757 components: - pos: 46.5,4.5 parent: 2 type: Transform - - uid: 9721 + - uid: 9758 components: - pos: 47.5,4.5 parent: 2 type: Transform - - uid: 9722 + - uid: 9759 components: - pos: 47.5,5.5 parent: 2 type: Transform - - uid: 9723 + - uid: 9760 components: - pos: 47.5,6.5 parent: 2 type: Transform - - uid: 9724 + - uid: 9761 components: - pos: 48.5,6.5 parent: 2 type: Transform - - uid: 9725 + - uid: 9762 components: - pos: 48.5,7.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9726 + - uid: 9763 components: - pos: 46.5,6.5 parent: 2 type: Transform - - uid: 9727 + - uid: 9764 components: - pos: 46.5,7.5 parent: 2 type: Transform - - uid: 9728 + - uid: 9765 components: - pos: 46.5,8.5 parent: 2 type: Transform - - uid: 9729 + - uid: 9766 components: - pos: 46.5,9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9730 + - uid: 9767 components: - pos: 45.5,9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 10109 + - uid: 9768 components: - - pos: 21.5,-38.5 + - pos: 21.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 12073 + - uid: 9769 components: - pos: 4.5,-1.5 parent: 2 type: Transform - - uid: 12187 + - uid: 9770 components: - pos: 3.5,-2.5 parent: 2 type: Transform - - uid: 12595 + - uid: 9771 components: - - pos: 9.5,-17.5 + - pos: 11.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 12763 + - uid: 9772 components: - pos: 9.5,-18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 12977 + - uid: 9773 components: - pos: 9.5,-19.5 parent: 2 type: Transform - - uid: 14033 + - uid: 9774 components: - pos: 2.5,-3.5 parent: 2 type: Transform - - uid: 14108 + - enabled: True + type: AmbientSound + - uid: 9775 + components: + - pos: 1.5,-3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9776 + components: + - pos: 3.5,-1.5 + parent: 2 + type: Transform + - uid: 9777 + components: + - pos: 10.5,-4.5 + parent: 2 + type: Transform + - uid: 9778 + components: + - pos: -0.5,-6.5 + parent: 2 + type: Transform + - uid: 9779 + components: + - pos: 10.5,-3.5 + parent: 2 + type: Transform + - uid: 9780 + components: + - pos: 1.5,-6.5 + parent: 2 + type: Transform + - uid: 9781 + components: + - pos: 1.5,-4.5 + parent: 2 + type: Transform + - uid: 9782 components: - pos: 0.5,-6.5 parent: 2 type: Transform - - uid: 14122 + - enabled: True + type: AmbientSound + - uid: 9783 components: - - pos: 1.5,-3.5 + - pos: 23.5,-38.5 parent: 2 type: Transform - - uid: 14145 + - uid: 9784 components: - - pos: 0.5,-3.5 + - pos: 23.5,-39.5 parent: 2 type: Transform - - uid: 14150 + - uid: 9785 + components: + - pos: 23.5,-40.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9786 components: - - pos: 0.5,-4.5 + - pos: 24.5,-40.5 parent: 2 type: Transform - - uid: 15608 + - enabled: True + type: AmbientSound + - uid: 9787 components: - - pos: 3.5,-1.5 + - pos: 25.5,-40.5 parent: 2 type: Transform - - uid: 15879 + - uid: 9788 components: - - pos: 10.5,-4.5 + - pos: 26.5,-40.5 parent: 2 type: Transform - - uid: 16097 + - enabled: True + type: AmbientSound + - uid: 9789 components: - - pos: -0.5,-7.5 + - pos: 27.5,-40.5 parent: 2 type: Transform - - uid: 16099 + - enabled: True + type: AmbientSound + - uid: 9790 components: - - pos: 0.5,-5.5 + - pos: 10.5,-16.5 parent: 2 type: Transform - - uid: 18831 + - uid: 9791 components: - - pos: -0.5,-6.5 + - pos: 4.5,-14.5 parent: 2 type: Transform - - uid: 23679 + - enabled: True + type: AmbientSound + - uid: 9792 components: - - pos: 10.5,-3.5 + - pos: 4.5,-13.5 + parent: 2 + type: Transform + - uid: 9793 + components: + - pos: 9.5,-16.5 + parent: 2 + type: Transform + - uid: 9794 + components: + - pos: 4.5,-12.5 + parent: 2 + type: Transform + - uid: 9795 + components: + - pos: 5.5,-14.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9796 + components: + - pos: 4.5,-11.5 + parent: 2 + type: Transform + - uid: 9797 + components: + - pos: 8.5,-16.5 + parent: 2 + type: Transform + - uid: 9798 + components: + - pos: 12.5,-16.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9799 + components: + - pos: 5.5,-11.5 + parent: 2 + type: Transform + - uid: 9800 + components: + - pos: 22.5,-30.5 + parent: 2 + type: Transform + - uid: 9801 + components: + - pos: 22.5,-31.5 + parent: 2 + type: Transform + - uid: 9802 + components: + - pos: 23.5,-30.5 + parent: 2 + type: Transform + - uid: 9803 + components: + - pos: 24.5,-30.5 + parent: 2 + type: Transform + - uid: 9804 + components: + - pos: 24.5,-29.5 + parent: 2 + type: Transform + - uid: 9805 + components: + - pos: -56.5,-22.5 + parent: 2 + type: Transform + - uid: 9806 + components: + - pos: -56.5,-23.5 + parent: 2 + type: Transform + - uid: 9807 + components: + - pos: -64.5,-24.5 + parent: 2 + type: Transform + - uid: 9808 + components: + - pos: -64.5,-25.5 + parent: 2 + type: Transform + - uid: 9809 + components: + - pos: -65.5,-25.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9810 + components: + - pos: -66.5,-25.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9811 + components: + - pos: -66.5,-26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9812 + components: + - pos: -63.5,-24.5 + parent: 2 + type: Transform + - uid: 9813 + components: + - pos: -62.5,-24.5 + parent: 2 + type: Transform + - uid: 9814 + components: + - pos: -61.5,-24.5 + parent: 2 + type: Transform + - uid: 9815 + components: + - pos: -60.5,-24.5 + parent: 2 + type: Transform + - uid: 9816 + components: + - pos: -59.5,-24.5 + parent: 2 + type: Transform + - uid: 9817 + components: + - pos: -58.5,-24.5 + parent: 2 + type: Transform + - uid: 9818 + components: + - pos: -57.5,-24.5 + parent: 2 + type: Transform + - uid: 9819 + components: + - pos: -56.5,-24.5 + parent: 2 + type: Transform + - uid: 9820 + components: + - pos: -55.5,-24.5 + parent: 2 + type: Transform + - uid: 9821 + components: + - pos: -54.5,-24.5 + parent: 2 + type: Transform + - uid: 9822 + components: + - pos: -54.5,-23.5 + parent: 2 + type: Transform + - uid: 9823 + components: + - pos: -54.5,-22.5 + parent: 2 + type: Transform + - uid: 9824 + components: + - pos: -54.5,-21.5 + parent: 2 + type: Transform + - uid: 9825 + components: + - pos: -54.5,-20.5 + parent: 2 + type: Transform + - uid: 9826 + components: + - pos: -54.5,-19.5 + parent: 2 + type: Transform + - uid: 9827 + components: + - pos: -54.5,-18.5 + parent: 2 + type: Transform + - uid: 9828 + components: + - pos: -55.5,-18.5 + parent: 2 + type: Transform + - uid: 9829 + components: + - pos: -56.5,-18.5 + parent: 2 + type: Transform + - uid: 9830 + components: + - pos: -57.5,-18.5 + parent: 2 + type: Transform + - uid: 9831 + components: + - pos: -58.5,-18.5 parent: 2 type: Transform - proto: CableMVStack entities: - - uid: 9731 + - uid: 9832 components: - pos: -39.41842,-18.34842 parent: 2 type: Transform - - uid: 9732 + - uid: 9833 components: - pos: -36.572292,-8.416974 parent: 2 type: Transform - proto: CableTerminal entities: - - uid: 9733 + - uid: 9834 components: - rot: 1.5707963267948966 rad pos: -70.5,-35.5 parent: 2 type: Transform - - uid: 9734 + - uid: 9835 components: - rot: 3.141592653589793 rad pos: -2.5,-79.5 parent: 2 type: Transform - - uid: 9735 + - uid: 9836 components: - pos: 48.5,-2.5 parent: 2 type: Transform - - uid: 9736 + - uid: 9837 components: - pos: -48.5,-20.5 parent: 2 type: Transform - - uid: 9737 + - uid: 9838 components: - pos: -46.5,-20.5 parent: 2 type: Transform - - uid: 9738 + - uid: 9839 components: - pos: -44.5,-20.5 parent: 2 type: Transform - - uid: 9739 + - uid: 9840 components: - rot: 1.5707963267948966 rad pos: -51.5,-9.5 parent: 2 type: Transform - - uid: 9740 + - uid: 9841 components: - rot: 3.141592653589793 rad pos: -56.5,-21.5 parent: 2 type: Transform - - uid: 9741 + - uid: 9842 components: - pos: -28.5,-36.5 parent: 2 type: Transform - - uid: 9742 + - uid: 9843 components: - rot: 1.5707963267948966 rad pos: -56.5,-88.5 parent: 2 type: Transform - - uid: 9743 + - uid: 9844 components: - rot: -1.5707963267948966 rad pos: 74.5,38.5 parent: 2 type: Transform - - uid: 9744 + - uid: 9845 components: - rot: -1.5707963267948966 rad pos: 74.5,34.5 parent: 2 type: Transform - - uid: 9745 + - uid: 9846 components: - rot: 3.141592653589793 rad pos: -0.5,-79.5 parent: 2 type: Transform - - uid: 9746 + - uid: 9847 components: - pos: -74.5,-29.5 parent: 2 type: Transform - - uid: 9747 + - uid: 9848 components: - pos: -72.5,-29.5 parent: 2 type: Transform - - uid: 9748 + - uid: 9849 components: - pos: -70.5,-29.5 parent: 2 type: Transform - - uid: 9749 + - uid: 9850 components: - rot: 3.141592653589793 rad pos: 4.5,-21.5 parent: 2 type: Transform - - uid: 9750 + - uid: 9851 components: - pos: -65.5,-52.5 parent: 2 type: Transform +- proto: CannabisSeeds + entities: + - uid: 9852 + components: + - rot: 3.141592653589793 rad + pos: -55.50433,-67.64641 + parent: 2 + type: Transform + - uid: 9853 + components: + - rot: 1.5707963267948966 rad + pos: -55.707455,-67.38078 + parent: 2 + type: Transform - proto: CapacitorStockPart entities: - - uid: 9751 + - uid: 9854 components: - pos: 38.490074,-35.297806 parent: 2 type: Transform - - uid: 9752 + - uid: 9855 components: - pos: 38.302574,-35.672806 parent: 2 type: Transform - - uid: 9753 + - uid: 9856 components: - pos: 38.521324,-35.53218 parent: 2 type: Transform - - uid: 9754 + - uid: 9857 components: - pos: -50.47893,-28.448412 parent: 2 type: Transform - proto: CaptainIDCard entities: - - uid: 9755 + - uid: 9858 components: - pos: 30.440884,-27.198164 parent: 2 type: Transform - proto: CarbonDioxideCanister entities: - - uid: 9756 + - uid: 9859 components: - pos: -40.5,-38.5 parent: 2 type: Transform - - uid: 9757 + - uid: 9860 components: - pos: -50.5,-50.5 parent: 2 type: Transform - - uid: 9758 + - uid: 9861 components: - pos: -52.5,-62.5 parent: 2 type: Transform - - uid: 9759 + - uid: 9863 components: - - pos: 55.5,-55.5 + - pos: -76.5,-45.5 parent: 2 type: Transform - - uid: 9760 + - uid: 31186 components: - - pos: -76.5,-45.5 + - pos: 46.5,-54.5 parent: 2 type: Transform - proto: Carpet entities: - - uid: 9761 + - uid: 9864 components: - rot: 3.141592653589793 rad pos: 5.5,20.5 parent: 2 type: Transform - - uid: 9762 + - uid: 9865 components: - rot: 3.141592653589793 rad pos: 4.5,22.5 parent: 2 type: Transform - - uid: 9763 + - uid: 9866 components: - rot: 3.141592653589793 rad pos: 4.5,21.5 parent: 2 type: Transform - - uid: 9764 + - uid: 9867 components: - rot: 3.141592653589793 rad pos: 4.5,20.5 parent: 2 type: Transform - - uid: 9765 + - uid: 9868 components: - rot: 3.141592653589793 rad pos: 6.5,22.5 parent: 2 type: Transform - - uid: 9766 + - uid: 9869 components: - rot: 3.141592653589793 rad pos: 6.5,21.5 parent: 2 type: Transform - - uid: 9767 + - uid: 9870 components: - rot: 3.141592653589793 rad pos: 6.5,20.5 parent: 2 type: Transform - - uid: 9768 + - uid: 9871 components: - rot: 3.141592653589793 rad pos: 7.5,22.5 parent: 2 type: Transform - - uid: 9769 + - uid: 9872 components: - rot: 3.141592653589793 rad pos: 7.5,21.5 parent: 2 type: Transform - - uid: 9770 + - uid: 9873 components: - rot: 3.141592653589793 rad pos: 7.5,20.5 parent: 2 type: Transform - - uid: 9771 + - uid: 9874 components: - rot: 3.141592653589793 rad pos: 8.5,22.5 parent: 2 type: Transform - - uid: 9772 + - uid: 9875 components: - rot: 3.141592653589793 rad pos: 8.5,21.5 parent: 2 type: Transform - - uid: 9773 + - uid: 9876 components: - rot: 3.141592653589793 rad pos: 8.5,20.5 parent: 2 type: Transform - - uid: 9774 + - uid: 9877 components: - pos: 39.5,-5.5 parent: 2 type: Transform - - uid: 9775 + - uid: 9878 components: - pos: 43.5,-5.5 parent: 2 type: Transform - - uid: 9776 + - uid: 9879 components: - pos: 44.5,-5.5 parent: 2 type: Transform - - uid: 9777 + - uid: 9880 components: - pos: 42.5,-5.5 parent: 2 type: Transform - - uid: 9778 + - uid: 9881 components: - pos: 42.5,-2.5 parent: 2 type: Transform - - uid: 9779 + - uid: 9882 components: - pos: 42.5,-3.5 parent: 2 type: Transform - - uid: 9780 + - uid: 9883 components: - pos: 42.5,-4.5 parent: 2 type: Transform - - uid: 9781 + - uid: 9884 components: - pos: 43.5,-2.5 parent: 2 type: Transform - - uid: 9782 + - uid: 9885 components: - pos: 43.5,-3.5 parent: 2 type: Transform - - uid: 9783 + - uid: 9886 components: - pos: 43.5,-4.5 parent: 2 type: Transform - - uid: 9784 + - uid: 9887 components: - pos: 44.5,-2.5 parent: 2 type: Transform - - uid: 9785 + - uid: 9888 components: - pos: 44.5,-3.5 parent: 2 type: Transform - - uid: 9786 + - uid: 9889 components: - pos: 44.5,-4.5 parent: 2 type: Transform - - uid: 9787 + - uid: 9890 components: - pos: 37.5,-2.5 parent: 2 type: Transform - - uid: 9788 + - uid: 9891 components: - pos: 38.5,-2.5 parent: 2 type: Transform - - uid: 9789 + - uid: 9892 components: - pos: 39.5,-2.5 parent: 2 type: Transform - - uid: 9790 + - uid: 9893 components: - pos: 37.5,-3.5 parent: 2 type: Transform - - uid: 9791 + - uid: 9894 components: - pos: 37.5,-4.5 parent: 2 type: Transform - - uid: 9792 + - uid: 9895 components: - pos: 38.5,-3.5 parent: 2 type: Transform - - uid: 9793 + - uid: 9896 components: - pos: 38.5,-4.5 parent: 2 type: Transform - - uid: 9794 + - uid: 9897 components: - pos: 39.5,-3.5 parent: 2 type: Transform - - uid: 9795 + - uid: 9898 components: - pos: 39.5,-4.5 parent: 2 type: Transform - - uid: 9796 + - uid: 9899 components: - pos: 38.5,-5.5 parent: 2 type: Transform - - uid: 9797 + - uid: 9900 components: - pos: 37.5,-5.5 parent: 2 type: Transform - - uid: 9798 + - uid: 9901 components: - rot: 3.141592653589793 rad pos: 28.5,-50.5 parent: 2 type: Transform - - uid: 9799 + - uid: 9902 components: - rot: 3.141592653589793 rad pos: 28.5,-51.5 parent: 2 type: Transform - - uid: 9800 + - uid: 9903 components: - rot: 3.141592653589793 rad pos: 29.5,-50.5 parent: 2 type: Transform - - uid: 9801 + - uid: 9904 components: - rot: 3.141592653589793 rad pos: 29.5,-51.5 parent: 2 type: Transform - - uid: 9802 + - uid: 9905 components: - rot: 3.141592653589793 rad pos: 30.5,-50.5 parent: 2 type: Transform - - uid: 9803 + - uid: 9906 components: - rot: 3.141592653589793 rad pos: 30.5,-51.5 parent: 2 type: Transform - - uid: 9804 + - uid: 9907 components: - rot: -1.5707963267948966 rad pos: -38.5,15.5 parent: 2 type: Transform - - uid: 9805 + - uid: 9908 components: - rot: -1.5707963267948966 rad pos: -38.5,14.5 parent: 2 type: Transform - - uid: 9806 + - uid: 9909 components: - rot: -1.5707963267948966 rad pos: -38.5,13.5 parent: 2 type: Transform - - uid: 9807 + - uid: 9910 components: - rot: -1.5707963267948966 rad pos: -38.5,12.5 parent: 2 type: Transform - - uid: 9808 + - uid: 9911 components: - rot: -1.5707963267948966 rad pos: -38.5,11.5 parent: 2 type: Transform - - uid: 9809 + - uid: 9912 components: - rot: -1.5707963267948966 rad pos: -38.5,10.5 parent: 2 type: Transform - - uid: 9810 + - uid: 9913 components: - rot: -1.5707963267948966 rad pos: -38.5,9.5 parent: 2 type: Transform - - uid: 9811 + - uid: 9914 components: - rot: -1.5707963267948966 rad pos: -38.5,8.5 parent: 2 type: Transform - - uid: 9812 + - uid: 9915 components: - rot: -1.5707963267948966 rad pos: -37.5,15.5 parent: 2 type: Transform - - uid: 9813 + - uid: 9916 components: - rot: -1.5707963267948966 rad pos: -37.5,14.5 parent: 2 type: Transform - - uid: 9814 + - uid: 9917 components: - rot: -1.5707963267948966 rad pos: -37.5,13.5 parent: 2 type: Transform - - uid: 9815 + - uid: 9918 components: - rot: -1.5707963267948966 rad pos: -37.5,12.5 parent: 2 type: Transform - - uid: 9816 + - uid: 9919 components: - rot: -1.5707963267948966 rad pos: -37.5,11.5 parent: 2 type: Transform - - uid: 9817 + - uid: 9920 components: - rot: -1.5707963267948966 rad pos: -37.5,10.5 parent: 2 type: Transform - - uid: 9818 + - uid: 9921 components: - rot: -1.5707963267948966 rad pos: -37.5,9.5 parent: 2 type: Transform - - uid: 9819 + - uid: 9922 components: - rot: -1.5707963267948966 rad pos: -37.5,8.5 parent: 2 type: Transform - - uid: 9820 + - uid: 9923 components: - rot: -1.5707963267948966 rad pos: -34.5,15.5 parent: 2 type: Transform - - uid: 9821 + - uid: 9924 components: - rot: -1.5707963267948966 rad pos: -34.5,14.5 parent: 2 type: Transform - - uid: 9822 + - uid: 9925 components: - rot: -1.5707963267948966 rad pos: -34.5,13.5 parent: 2 type: Transform - - uid: 9823 + - uid: 9926 components: - rot: -1.5707963267948966 rad pos: -33.5,15.5 parent: 2 type: Transform - - uid: 9824 + - uid: 9927 components: - rot: -1.5707963267948966 rad pos: -33.5,14.5 parent: 2 type: Transform - - uid: 9825 + - uid: 9928 components: - rot: -1.5707963267948966 rad pos: -33.5,13.5 parent: 2 type: Transform - - uid: 9826 + - uid: 9929 components: - pos: -30.5,14.5 parent: 2 type: Transform - - uid: 9827 + - uid: 9930 components: - pos: -30.5,13.5 parent: 2 type: Transform - - uid: 9828 + - uid: 9931 components: - pos: -30.5,12.5 parent: 2 type: Transform - - uid: 9829 + - uid: 9932 components: - pos: 64.5,-0.5 parent: 2 type: Transform - - uid: 9830 + - uid: 9933 components: - pos: 64.5,-1.5 parent: 2 type: Transform - - uid: 9831 + - uid: 9934 components: - pos: 65.5,-0.5 parent: 2 type: Transform - - uid: 9832 + - uid: 9935 components: - pos: 65.5,-1.5 parent: 2 type: Transform - - uid: 9833 + - uid: 9936 components: - rot: 3.141592653589793 rad pos: 61.5,-63.5 parent: 2 type: Transform - - uid: 9834 + - uid: 9937 components: - rot: 3.141592653589793 rad pos: 61.5,-64.5 parent: 2 type: Transform - - uid: 9835 + - uid: 9938 components: - rot: 3.141592653589793 rad pos: 61.5,-65.5 parent: 2 type: Transform - - uid: 9836 + - uid: 9939 components: - rot: 3.141592653589793 rad pos: 61.5,-66.5 parent: 2 type: Transform - - uid: 9837 + - uid: 9940 components: - rot: 3.141592653589793 rad pos: 61.5,-67.5 parent: 2 type: Transform - - uid: 9838 + - uid: 9941 components: - rot: 3.141592653589793 rad pos: 61.5,-68.5 parent: 2 type: Transform - - uid: 9839 + - uid: 9942 components: - rot: 1.5707963267948966 rad pos: 1.5,21.5 parent: 2 type: Transform - - uid: 9840 + - uid: 9943 components: - rot: 1.5707963267948966 rad pos: 1.5,20.5 parent: 2 type: Transform - - uid: 9841 + - uid: 9944 components: - rot: 1.5707963267948966 rad pos: 1.5,19.5 parent: 2 type: Transform - - uid: 9842 + - uid: 9945 components: - rot: 1.5707963267948966 rad pos: 2.5,21.5 parent: 2 type: Transform - - uid: 9843 + - uid: 9946 components: - rot: 1.5707963267948966 rad pos: 2.5,20.5 parent: 2 type: Transform - - uid: 9844 + - uid: 9947 components: - rot: 1.5707963267948966 rad pos: 2.5,19.5 parent: 2 type: Transform - - uid: 9845 + - uid: 9948 components: - rot: 3.141592653589793 rad pos: 5.5,21.5 parent: 2 type: Transform - - uid: 9846 + - uid: 9949 components: - rot: 3.141592653589793 rad pos: 5.5,22.5 @@ -66319,91 +66865,91 @@ entities: type: Transform - proto: CarpetBlack entities: - - uid: 9847 + - uid: 9950 components: - pos: -7.5,-36.5 parent: 2 type: Transform - - uid: 9848 + - uid: 9951 components: - pos: -7.5,-37.5 parent: 2 type: Transform - - uid: 9849 + - uid: 9952 components: - pos: -7.5,-38.5 parent: 2 type: Transform - - uid: 9850 + - uid: 9953 components: - pos: -11.5,-39.5 parent: 2 type: Transform - - uid: 9851 + - uid: 9954 components: - pos: -10.5,-39.5 parent: 2 type: Transform - - uid: 9852 + - uid: 9955 components: - pos: -9.5,-39.5 parent: 2 type: Transform - - uid: 9853 + - uid: 9956 components: - rot: 3.141592653589793 rad pos: 31.5,-53.5 parent: 2 type: Transform - - uid: 9854 + - uid: 9957 components: - rot: 3.141592653589793 rad pos: 31.5,-54.5 parent: 2 type: Transform - - uid: 9855 + - uid: 9958 components: - rot: 3.141592653589793 rad pos: 31.5,-55.5 parent: 2 type: Transform - - uid: 9856 + - uid: 9959 components: - rot: 3.141592653589793 rad pos: 31.5,-56.5 parent: 2 type: Transform - - uid: 9857 + - uid: 9960 components: - rot: 3.141592653589793 rad pos: -12.5,32.5 parent: 2 type: Transform - - uid: 9858 + - uid: 9961 components: - rot: 3.141592653589793 rad pos: -12.5,31.5 parent: 2 type: Transform - - uid: 9859 + - uid: 9962 components: - rot: 3.141592653589793 rad pos: -11.5,32.5 parent: 2 type: Transform - - uid: 9860 + - uid: 9963 components: - rot: 3.141592653589793 rad pos: -11.5,31.5 parent: 2 type: Transform - - uid: 9861 + - uid: 9964 components: - rot: 3.141592653589793 rad pos: -10.5,32.5 parent: 2 type: Transform - - uid: 9862 + - uid: 9965 components: - rot: 3.141592653589793 rad pos: -10.5,31.5 @@ -66411,335 +66957,470 @@ entities: type: Transform - proto: CarpetBlue entities: - - uid: 9863 + - uid: 9966 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 2 + type: Transform + - uid: 9967 components: - rot: -1.5707963267948966 rad pos: 9.5,5.5 parent: 2 type: Transform - - uid: 9864 + - uid: 9968 components: - pos: -18.5,-56.5 parent: 2 type: Transform - - uid: 9865 + - uid: 9969 components: - pos: -18.5,-55.5 parent: 2 type: Transform - - uid: 9866 + - uid: 9970 components: - pos: -20.5,-55.5 parent: 2 type: Transform - - uid: 9867 + - uid: 9971 components: - pos: -20.5,-54.5 parent: 2 type: Transform - - uid: 9868 + - uid: 9972 components: - pos: -19.5,-54.5 parent: 2 type: Transform - - uid: 9869 + - uid: 9973 components: - pos: -17.5,-56.5 parent: 2 type: Transform - - uid: 9870 + - uid: 9974 components: - pos: -20.5,-56.5 parent: 2 type: Transform - - uid: 9871 + - uid: 9975 components: - pos: -17.5,-54.5 parent: 2 type: Transform - - uid: 9872 + - uid: 9976 components: - pos: -17.5,-55.5 parent: 2 type: Transform - - uid: 9873 + - uid: 9977 components: - pos: -19.5,-55.5 parent: 2 type: Transform - - uid: 9874 + - uid: 9978 components: - pos: -19.5,-56.5 parent: 2 type: Transform - - uid: 9875 + - uid: 9979 components: - pos: -18.5,-54.5 parent: 2 type: Transform - - uid: 9876 + - uid: 9980 components: - rot: -1.5707963267948966 rad pos: 8.5,5.5 parent: 2 type: Transform - - uid: 9877 + - uid: 9981 components: - rot: 3.141592653589793 rad pos: 17.5,13.5 parent: 2 type: Transform - - uid: 9878 + - uid: 9982 components: - rot: 3.141592653589793 rad pos: 17.5,12.5 parent: 2 type: Transform - - uid: 9879 + - uid: 9983 components: - rot: 3.141592653589793 rad pos: 17.5,11.5 parent: 2 type: Transform - - uid: 9880 + - uid: 9984 components: - pos: 17.5,9.5 parent: 2 type: Transform - - uid: 9881 + - uid: 9985 components: - pos: 17.5,14.5 parent: 2 type: Transform - - uid: 9882 + - uid: 9986 components: - pos: 17.5,10.5 parent: 2 type: Transform - - uid: 24377 + - uid: 9987 components: - pos: -22.5,-55.5 parent: 2 type: Transform - - uid: 24464 + - uid: 9988 components: - pos: -21.5,-55.5 parent: 2 type: Transform - - uid: 24568 + - uid: 9989 components: - pos: -21.5,-54.5 parent: 2 type: Transform - - uid: 24571 + - uid: 9990 components: - pos: -22.5,-54.5 parent: 2 type: Transform -- proto: CarpetChapel - entities: - - uid: 9883 + - uid: 9991 components: - - rot: -1.5707963267948966 rad - pos: -36.5,10.5 + - pos: -1.5,-6.5 parent: 2 type: Transform - - uid: 9884 + - uid: 9992 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 2 + type: Transform + - uid: 9993 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 2 + type: Transform + - uid: 9994 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 2 + type: Transform + - uid: 9995 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 2 + type: Transform + - uid: 9996 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 2 + type: Transform + - uid: 9997 + components: + - pos: -1.5,-5.5 + parent: 2 + type: Transform + - uid: 9998 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 2 + type: Transform + - uid: 9999 + components: + - pos: -0.5,-6.5 + parent: 2 + type: Transform + - uid: 10000 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 2 + type: Transform + - uid: 10001 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 2 + type: Transform + - uid: 10002 + components: + - pos: -0.5,-5.5 + parent: 2 + type: Transform + - uid: 10003 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 2 + type: Transform + - uid: 10004 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 2 + type: Transform + - uid: 10005 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-36.5 + parent: 2 + type: Transform + - uid: 10006 + components: + - pos: 3.5,-5.5 + parent: 2 + type: Transform + - uid: 10007 + components: + - pos: 2.5,-5.5 + parent: 2 + type: Transform + - uid: 10008 + components: + - pos: 2.5,-4.5 + parent: 2 + type: Transform + - uid: 10009 + components: + - pos: 4.5,-4.5 + parent: 2 + type: Transform + - uid: 10010 + components: + - pos: 5.5,-5.5 + parent: 2 + type: Transform + - uid: 10011 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-35.5 + parent: 2 + type: Transform + - uid: 10012 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-37.5 + parent: 2 + type: Transform + - uid: 10013 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-34.5 + parent: 2 + type: Transform +- proto: CarpetChapel + entities: + - uid: 10014 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,10.5 + parent: 2 + type: Transform + - uid: 10015 components: - rot: 3.141592653589793 rad pos: -35.5,10.5 parent: 2 type: Transform - - uid: 9885 + - uid: 10016 components: - rot: 1.5707963267948966 rad pos: -35.5,9.5 parent: 2 type: Transform - - uid: 9886 + - uid: 10017 components: - pos: -36.5,9.5 parent: 2 type: Transform - - uid: 9887 + - uid: 10018 components: - pos: -36.5,11.5 parent: 2 type: Transform - - uid: 9888 + - uid: 10019 components: - rot: 1.5707963267948966 rad pos: -35.5,11.5 parent: 2 type: Transform - - uid: 9889 + - uid: 10020 components: - rot: -1.5707963267948966 rad pos: -36.5,12.5 parent: 2 type: Transform - - uid: 9890 + - uid: 10021 components: - rot: 3.141592653589793 rad pos: -35.5,12.5 parent: 2 type: Transform - - uid: 9891 + - uid: 10022 components: - rot: 3.141592653589793 rad pos: -39.5,12.5 parent: 2 type: Transform - - uid: 9892 + - uid: 10023 components: - rot: 1.5707963267948966 rad pos: -39.5,11.5 parent: 2 type: Transform - - uid: 9893 + - uid: 10024 components: - pos: -40.5,11.5 parent: 2 type: Transform - - uid: 9894 + - uid: 10025 components: - rot: -1.5707963267948966 rad pos: -40.5,10.5 parent: 2 type: Transform - - uid: 9895 + - uid: 10026 components: - rot: 3.141592653589793 rad pos: -39.5,10.5 parent: 2 type: Transform - - uid: 9896 + - uid: 10027 components: - pos: -40.5,9.5 parent: 2 type: Transform - - uid: 9897 + - uid: 10028 components: - rot: 1.5707963267948966 rad pos: -39.5,9.5 parent: 2 type: Transform - - uid: 9898 + - uid: 10029 components: - rot: -1.5707963267948966 rad pos: -40.5,12.5 parent: 2 type: Transform - - uid: 9899 + - uid: 10030 components: - rot: -1.5707963267948966 rad pos: 59.5,-65.5 parent: 2 type: Transform - - uid: 9900 + - uid: 10031 components: - rot: 3.141592653589793 rad pos: 60.5,-65.5 parent: 2 type: Transform - - uid: 9901 + - uid: 10032 components: - pos: 59.5,-66.5 parent: 2 type: Transform - - uid: 9902 + - uid: 10033 components: - rot: -1.5707963267948966 rad pos: 62.5,-65.5 parent: 2 type: Transform - - uid: 9903 + - uid: 10034 components: - pos: 62.5,-66.5 parent: 2 type: Transform - - uid: 9904 + - uid: 10035 components: - rot: 3.141592653589793 rad pos: 63.5,-65.5 parent: 2 type: Transform - - uid: 9905 + - uid: 10036 components: - rot: 1.5707963267948966 rad pos: 63.5,-66.5 parent: 2 type: Transform - - uid: 9906 + - uid: 10037 components: - rot: -1.5707963267948966 rad pos: 62.5,-63.5 parent: 2 type: Transform - - uid: 9907 + - uid: 10038 components: - rot: 3.141592653589793 rad pos: 63.5,-63.5 parent: 2 type: Transform - - uid: 9908 + - uid: 10039 components: - rot: 1.5707963267948966 rad pos: 63.5,-64.5 parent: 2 type: Transform - - uid: 9909 + - uid: 10040 components: - pos: 62.5,-64.5 parent: 2 type: Transform - - uid: 9910 + - uid: 10041 components: - rot: 3.141592653589793 rad pos: 60.5,-63.5 parent: 2 type: Transform - - uid: 9911 + - uid: 10042 components: - rot: -1.5707963267948966 rad pos: 59.5,-63.5 parent: 2 type: Transform - - uid: 9912 + - uid: 10043 components: - pos: 59.5,-64.5 parent: 2 type: Transform - - uid: 9913 + - uid: 10044 components: - rot: 1.5707963267948966 rad pos: 60.5,-64.5 parent: 2 type: Transform - - uid: 9914 + - uid: 10045 components: - pos: 60.5,-68.5 parent: 2 type: Transform - - uid: 9915 + - uid: 10046 components: - rot: 1.5707963267948966 rad pos: 62.5,-68.5 parent: 2 type: Transform - - uid: 9916 + - uid: 10047 components: - rot: -1.5707963267948966 rad pos: 60.5,-67.5 parent: 2 type: Transform - - uid: 9917 + - uid: 10048 components: - rot: 3.141592653589793 rad pos: 62.5,-67.5 parent: 2 type: Transform - - uid: 9918 + - uid: 10049 components: - rot: 1.5707963267948966 rad pos: 60.5,-66.5 @@ -66747,1031 +67428,1157 @@ entities: type: Transform - proto: CarpetGreen entities: - - uid: 9919 + - uid: 10050 + components: + - pos: 22.5,-34.5 + parent: 2 + type: Transform + - uid: 10051 components: - rot: -1.5707963267948966 rad pos: 13.5,-10.5 parent: 2 type: Transform - - uid: 9920 + - uid: 10052 components: - rot: -1.5707963267948966 rad pos: 9.5,-10.5 parent: 2 type: Transform - - uid: 9921 + - uid: 10053 components: - rot: -1.5707963267948966 rad pos: 10.5,-10.5 parent: 2 type: Transform - - uid: 9922 + - uid: 10054 components: - rot: -1.5707963267948966 rad pos: 9.5,-12.5 parent: 2 type: Transform - - uid: 9923 + - uid: 10055 components: - rot: -1.5707963267948966 rad pos: 10.5,-12.5 parent: 2 type: Transform - - uid: 9924 + - uid: 10056 components: - rot: -1.5707963267948966 rad pos: 10.5,-11.5 parent: 2 type: Transform - - uid: 9925 + - uid: 10057 components: - rot: -1.5707963267948966 rad pos: 11.5,-11.5 parent: 2 type: Transform - - uid: 9926 + - uid: 10058 components: - rot: -1.5707963267948966 rad pos: 12.5,-11.5 parent: 2 type: Transform - - uid: 9927 + - uid: 10059 components: - rot: -1.5707963267948966 rad pos: 13.5,-11.5 parent: 2 type: Transform - - uid: 9928 + - uid: 10060 components: - rot: -1.5707963267948966 rad pos: 11.5,-10.5 parent: 2 type: Transform - - uid: 9929 + - uid: 10061 components: - rot: -1.5707963267948966 rad pos: 12.5,-10.5 parent: 2 type: Transform - - uid: 9930 + - uid: 10062 components: - rot: -1.5707963267948966 rad pos: 11.5,-12.5 parent: 2 type: Transform - - uid: 9931 + - uid: 10063 components: - pos: 20.5,13.5 parent: 2 type: Transform - - uid: 9932 + - uid: 10064 components: - pos: 14.5,9.5 parent: 2 type: Transform - - uid: 9933 + - uid: 10065 components: - pos: 9.5,-11.5 parent: 2 type: Transform - - uid: 9934 + - uid: 10066 components: - rot: -1.5707963267948966 rad pos: 12.5,-12.5 parent: 2 type: Transform - - uid: 9935 + - uid: 10067 components: - rot: -1.5707963267948966 rad pos: 13.5,-12.5 parent: 2 type: Transform - - uid: 9936 + - uid: 10068 components: - rot: 1.5707963267948966 rad pos: 8.5,8.5 parent: 2 type: Transform - - uid: 9937 + - uid: 10069 components: - rot: 3.141592653589793 rad pos: 14.5,13.5 parent: 2 type: Transform - - uid: 9938 + - uid: 10070 components: - rot: 3.141592653589793 rad pos: 14.5,12.5 parent: 2 type: Transform - - uid: 9939 + - uid: 10071 components: - rot: 3.141592653589793 rad pos: 14.5,11.5 parent: 2 type: Transform - - uid: 9940 + - uid: 10072 components: - rot: 3.141592653589793 rad pos: 14.5,10.5 parent: 2 type: Transform - - uid: 9941 + - uid: 10073 components: - rot: 1.5707963267948966 rad pos: 8.5,9.5 parent: 2 type: Transform - - uid: 9942 + - uid: 10074 components: - pos: -5.5,-49.5 parent: 2 type: Transform - - uid: 9943 + - uid: 10075 components: - pos: -4.5,-49.5 parent: 2 type: Transform - - uid: 9944 + - uid: 10076 components: - pos: -3.5,-49.5 parent: 2 type: Transform - - uid: 9945 + - uid: 10077 components: - pos: -3.5,-50.5 parent: 2 type: Transform - - uid: 9946 + - uid: 10078 components: - pos: -4.5,-50.5 parent: 2 type: Transform - - uid: 9947 + - uid: 10079 components: - pos: -5.5,-50.5 parent: 2 type: Transform - - uid: 9948 + - uid: 10080 components: - pos: 21.5,13.5 parent: 2 type: Transform - - uid: 9949 + - uid: 10081 components: - pos: 21.5,10.5 parent: 2 type: Transform - - uid: 9950 + - uid: 10082 components: - pos: 20.5,10.5 parent: 2 type: Transform - - uid: 9951 + - uid: 10083 components: - pos: 20.5,12.5 parent: 2 type: Transform - - uid: 9952 + - uid: 10084 components: - pos: 20.5,11.5 parent: 2 type: Transform - - uid: 9953 + - uid: 10085 components: - pos: 21.5,11.5 parent: 2 type: Transform - - uid: 9954 + - uid: 10086 components: - pos: 21.5,12.5 parent: 2 type: Transform - - uid: 9955 + - uid: 10087 components: - pos: -22.5,45.5 parent: 2 type: Transform - - uid: 9956 + - uid: 10088 components: - pos: -22.5,44.5 parent: 2 type: Transform - - uid: 9957 + - uid: 10089 components: - pos: -22.5,43.5 parent: 2 type: Transform - - uid: 9958 + - uid: 10090 components: - pos: -22.5,42.5 parent: 2 type: Transform - - uid: 9959 + - uid: 10091 components: - pos: -21.5,45.5 parent: 2 type: Transform - - uid: 9960 + - uid: 10092 components: - pos: -21.5,44.5 parent: 2 type: Transform - - uid: 9961 + - uid: 10093 components: - rot: 3.141592653589793 rad pos: 32.5,-50.5 parent: 2 type: Transform - - uid: 9962 + - uid: 10094 components: - rot: 3.141592653589793 rad pos: 32.5,-51.5 parent: 2 type: Transform - - uid: 9963 + - uid: 10095 components: - rot: 3.141592653589793 rad pos: 33.5,-50.5 parent: 2 type: Transform - - uid: 9964 + - uid: 10096 components: - rot: 3.141592653589793 rad pos: 33.5,-51.5 parent: 2 type: Transform - - uid: 9965 + - uid: 10097 components: - rot: 3.141592653589793 rad pos: 34.5,-50.5 parent: 2 type: Transform - - uid: 9966 + - uid: 10098 components: - rot: 3.141592653589793 rad pos: 34.5,-51.5 parent: 2 type: Transform - - uid: 9967 + - uid: 10099 components: - pos: -21.5,42.5 parent: 2 type: Transform - - uid: 9968 + - uid: 10100 components: - pos: -21.5,43.5 parent: 2 type: Transform - - uid: 9969 + - uid: 10101 components: - rot: 1.5707963267948966 rad pos: -22.5,30.5 parent: 2 type: Transform - - uid: 9970 + - uid: 10102 components: - rot: 1.5707963267948966 rad pos: -23.5,30.5 parent: 2 type: Transform - - uid: 9971 + - uid: 10103 components: - pos: -23.5,31.5 parent: 2 type: Transform - - uid: 9972 + - uid: 10104 components: - pos: -23.5,29.5 parent: 2 type: Transform - - uid: 9973 + - uid: 10105 components: - pos: -22.5,31.5 parent: 2 type: Transform - - uid: 9974 + - uid: 10106 components: - pos: -22.5,29.5 parent: 2 type: Transform - - uid: 9975 + - uid: 10107 components: - rot: 1.5707963267948966 rad pos: -19.5,33.5 parent: 2 type: Transform - - uid: 9976 + - uid: 10108 components: - rot: 1.5707963267948966 rad pos: -19.5,34.5 parent: 2 type: Transform - - uid: 9977 + - uid: 10109 components: - rot: 1.5707963267948966 rad pos: -19.5,35.5 parent: 2 type: Transform - - uid: 9978 + - uid: 10110 components: - rot: 1.5707963267948966 rad pos: -18.5,33.5 parent: 2 type: Transform - - uid: 9979 + - uid: 10111 components: - rot: 1.5707963267948966 rad pos: -18.5,34.5 parent: 2 type: Transform - - uid: 9980 + - uid: 10112 components: - rot: 1.5707963267948966 rad pos: -18.5,35.5 parent: 2 type: Transform - - uid: 9981 + - uid: 10113 components: - rot: 1.5707963267948966 rad pos: 8.5,7.5 parent: 2 type: Transform - - uid: 9982 + - uid: 10114 components: - rot: 1.5707963267948966 rad pos: 13.5,-79.5 parent: 2 type: Transform - - uid: 9983 + - uid: 10115 components: - rot: 1.5707963267948966 rad pos: 14.5,-79.5 parent: 2 type: Transform - - uid: 9984 + - uid: 10116 components: - rot: 1.5707963267948966 rad pos: 15.5,-79.5 parent: 2 type: Transform - - uid: 9985 + - uid: 10117 components: - rot: 1.5707963267948966 rad pos: 16.5,-79.5 parent: 2 type: Transform - - uid: 9986 + - uid: 10118 components: - rot: 1.5707963267948966 rad pos: 17.5,-79.5 parent: 2 type: Transform - - uid: 9987 + - uid: 10119 components: - rot: 1.5707963267948966 rad pos: 13.5,-87.5 parent: 2 type: Transform - - uid: 9988 + - uid: 10120 components: - rot: 1.5707963267948966 rad pos: 14.5,-87.5 parent: 2 type: Transform - - uid: 9989 + - uid: 10121 components: - rot: 1.5707963267948966 rad pos: 15.5,-87.5 parent: 2 type: Transform - - uid: 9990 + - uid: 10122 components: - rot: 1.5707963267948966 rad pos: 16.5,-87.5 parent: 2 type: Transform - - uid: 9991 + - uid: 10123 components: - rot: 1.5707963267948966 rad pos: 17.5,-87.5 parent: 2 type: Transform + - uid: 10124 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-35.5 + parent: 2 + type: Transform + - uid: 10125 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-36.5 + parent: 2 + type: Transform + - uid: 10126 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-35.5 + parent: 2 + type: Transform + - uid: 10127 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-36.5 + parent: 2 + type: Transform + - uid: 10128 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-34.5 + parent: 2 + type: Transform + - uid: 10129 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-35.5 + parent: 2 + type: Transform + - uid: 10130 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-36.5 + parent: 2 + type: Transform + - uid: 10131 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-35.5 + parent: 2 + type: Transform + - uid: 10132 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-36.5 + parent: 2 + type: Transform + - uid: 10133 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-37.5 + parent: 2 + type: Transform + - uid: 10134 + components: + - pos: 26.5,-34.5 + parent: 2 + type: Transform + - uid: 10135 + components: + - pos: 23.5,-34.5 + parent: 2 + type: Transform + - uid: 10136 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 2 + type: Transform + - uid: 10137 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 2 + type: Transform + - uid: 10138 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 2 + type: Transform + - uid: 10139 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 2 + type: Transform + - uid: 10140 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 2 + type: Transform + - uid: 10141 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 2 + type: Transform + - uid: 10142 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 2 + type: Transform + - uid: 10143 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 2 + type: Transform + - uid: 10144 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 2 + type: Transform - proto: CarpetOrange entities: - - uid: 9992 + - uid: 10145 components: - rot: -1.5707963267948966 rad pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 9993 + - uid: 10146 components: - rot: -1.5707963267948966 rad pos: 9.5,-5.5 parent: 2 type: Transform - - uid: 9994 + - uid: 10147 components: - rot: 3.141592653589793 rad pos: 12.5,11.5 parent: 2 type: Transform - - uid: 9995 + - uid: 10148 components: - rot: 1.5707963267948966 rad pos: 10.5,7.5 parent: 2 type: Transform - - uid: 9996 + - uid: 10149 components: - rot: -1.5707963267948966 rad pos: 11.5,-6.5 parent: 2 type: Transform - - uid: 9997 + - uid: 10150 components: - rot: -1.5707963267948966 rad pos: 11.5,-7.5 parent: 2 type: Transform - - uid: 9998 + - uid: 10151 components: - rot: -1.5707963267948966 rad pos: 11.5,-8.5 parent: 2 type: Transform - - uid: 9999 + - uid: 10152 components: - rot: -1.5707963267948966 rad pos: 10.5,-8.5 parent: 2 type: Transform - - uid: 10000 + - uid: 10153 components: - rot: -1.5707963267948966 rad pos: 9.5,-8.5 parent: 2 type: Transform - - uid: 10001 + - uid: 10154 components: - rot: -1.5707963267948966 rad pos: 8.5,-8.5 parent: 2 type: Transform - - uid: 10002 + - uid: 10155 components: - rot: -1.5707963267948966 rad pos: 8.5,-7.5 parent: 2 type: Transform - - uid: 10003 + - uid: 10156 components: - rot: -1.5707963267948966 rad pos: 8.5,-5.5 parent: 2 type: Transform - - uid: 10004 + - uid: 10157 components: - rot: -1.5707963267948966 rad pos: 9.5,-6.5 parent: 2 type: Transform - - uid: 10005 + - uid: 10158 components: - rot: -1.5707963267948966 rad pos: 10.5,-6.5 parent: 2 type: Transform - - uid: 10006 + - uid: 10159 components: - rot: -1.5707963267948966 rad pos: 10.5,-7.5 parent: 2 type: Transform - - uid: 10007 + - uid: 10160 components: - rot: -1.5707963267948966 rad pos: 9.5,-7.5 parent: 2 type: Transform - - uid: 10008 + - uid: 10161 components: - rot: 1.5707963267948966 rad pos: 12.5,7.5 parent: 2 type: Transform - - uid: 10009 + - uid: 10162 components: - rot: -1.5707963267948966 rad pos: 10.5,-5.5 parent: 2 type: Transform - - uid: 10010 + - uid: 10163 components: - rot: -1.5707963267948966 rad pos: 11.5,-5.5 parent: 2 type: Transform - - uid: 10011 + - uid: 10164 components: - rot: 1.5707963267948966 rad pos: 12.5,8.5 parent: 2 type: Transform - - uid: 10012 + - uid: 10165 components: - rot: 3.141592653589793 rad pos: 12.5,10.5 parent: 2 type: Transform - - uid: 10013 + - uid: 10166 components: - rot: 1.5707963267948966 rad pos: 10.5,8.5 parent: 2 type: Transform - - uid: 10014 + - uid: 10167 components: - rot: 1.5707963267948966 rad pos: 11.5,7.5 parent: 2 type: Transform - - uid: 10015 + - uid: 10168 components: - rot: 1.5707963267948966 rad pos: 11.5,8.5 parent: 2 type: Transform - - uid: 10016 + - uid: 10169 components: - rot: 3.141592653589793 rad pos: 11.5,11.5 parent: 2 type: Transform - - uid: 10017 + - uid: 10170 components: - rot: 3.141592653589793 rad pos: 11.5,12.5 parent: 2 type: Transform - - uid: 10018 + - uid: 10171 components: - pos: -12.5,-35.5 parent: 2 type: Transform - - uid: 10019 + - uid: 10172 components: - pos: -12.5,-36.5 parent: 2 type: Transform - - uid: 10020 + - uid: 10173 components: - pos: -12.5,-37.5 parent: 2 type: Transform - - uid: 10021 + - uid: 10174 components: - pos: -11.5,-35.5 parent: 2 type: Transform - - uid: 10022 + - uid: 10175 components: - pos: -11.5,-36.5 parent: 2 type: Transform - - uid: 10023 + - uid: 10176 components: - pos: -11.5,-37.5 parent: 2 type: Transform - - uid: 10024 + - uid: 10177 components: - pos: -10.5,-35.5 parent: 2 type: Transform - - uid: 10025 + - uid: 10178 components: - pos: -10.5,-36.5 parent: 2 type: Transform - - uid: 10026 + - uid: 10179 components: - pos: -10.5,-37.5 parent: 2 type: Transform - - uid: 10027 + - uid: 10180 components: - pos: -9.5,-35.5 parent: 2 type: Transform - - uid: 10028 + - uid: 10181 components: - pos: -9.5,-36.5 parent: 2 type: Transform - - uid: 10029 + - uid: 10182 components: - pos: -9.5,-37.5 parent: 2 type: Transform - - uid: 10030 + - uid: 10183 components: - rot: 3.141592653589793 rad pos: 12.5,12.5 parent: 2 type: Transform - - uid: 10031 + - uid: 10184 components: - rot: 3.141592653589793 rad pos: -37.5,-15.5 parent: 2 type: Transform - - uid: 10032 + - uid: 10185 components: - rot: 3.141592653589793 rad pos: -37.5,-16.5 parent: 2 type: Transform - - uid: 10033 + - uid: 10186 components: - rot: 3.141592653589793 rad pos: -37.5,-17.5 parent: 2 type: Transform - - uid: 10034 + - uid: 10187 components: - rot: 3.141592653589793 rad pos: -37.5,-18.5 parent: 2 type: Transform - - uid: 10035 + - uid: 10188 components: - rot: 3.141592653589793 rad pos: -36.5,-16.5 parent: 2 type: Transform - - uid: 10036 + - uid: 10189 components: - rot: 3.141592653589793 rad pos: -36.5,-17.5 parent: 2 type: Transform - - uid: 10037 + - uid: 10190 components: - rot: 3.141592653589793 rad pos: -36.5,-18.5 parent: 2 type: Transform - - uid: 10038 + - uid: 10191 components: - rot: 3.141592653589793 rad pos: -35.5,-15.5 parent: 2 type: Transform - - uid: 10039 + - uid: 10192 components: - rot: 3.141592653589793 rad pos: -35.5,-16.5 parent: 2 type: Transform - - uid: 10040 + - uid: 10193 components: - rot: 3.141592653589793 rad pos: -35.5,-17.5 parent: 2 type: Transform - - uid: 10041 + - uid: 10194 components: - rot: 3.141592653589793 rad pos: -35.5,-18.5 parent: 2 type: Transform - - uid: 10042 + - uid: 10195 components: - rot: 3.141592653589793 rad pos: -34.5,31.5 parent: 2 type: Transform - - uid: 10043 + - uid: 10196 components: - pos: -34.5,30.5 parent: 2 type: Transform - - uid: 10044 + - uid: 10197 components: - rot: 3.141592653589793 rad pos: -34.5,29.5 parent: 2 type: Transform - - uid: 10045 + - uid: 10198 components: - rot: 3.141592653589793 rad pos: -33.5,31.5 parent: 2 type: Transform - - uid: 10046 + - uid: 10199 components: - rot: 3.141592653589793 rad pos: -33.5,30.5 parent: 2 type: Transform - - uid: 10047 + - uid: 10200 components: - rot: 3.141592653589793 rad pos: -33.5,29.5 parent: 2 type: Transform - - uid: 10048 + - uid: 10201 components: - rot: 3.141592653589793 rad pos: -32.5,31.5 parent: 2 type: Transform - - uid: 10049 + - uid: 10202 components: - rot: 3.141592653589793 rad pos: -32.5,30.5 parent: 2 type: Transform - - uid: 10050 + - uid: 10203 components: - rot: 3.141592653589793 rad pos: -32.5,29.5 parent: 2 type: Transform - - uid: 10051 + - uid: 10204 components: - rot: 3.141592653589793 rad pos: -31.5,31.5 parent: 2 type: Transform - - uid: 10052 + - uid: 10205 components: - rot: 3.141592653589793 rad pos: -31.5,30.5 parent: 2 type: Transform - - uid: 10053 + - uid: 10206 components: - rot: 3.141592653589793 rad pos: -31.5,29.5 parent: 2 type: Transform - - uid: 10054 + - uid: 10207 components: - rot: 3.141592653589793 rad pos: -30.5,31.5 parent: 2 type: Transform - - uid: 10055 + - uid: 10208 components: - rot: 3.141592653589793 rad pos: -30.5,30.5 parent: 2 type: Transform - - uid: 10056 + - uid: 10209 components: - rot: 3.141592653589793 rad pos: -30.5,29.5 parent: 2 type: Transform - - uid: 10057 + - uid: 10210 components: - rot: 3.141592653589793 rad pos: 11.5,10.5 parent: 2 type: Transform -- proto: CarpetPink - entities: - - uid: 695 + - uid: 10211 components: - - rot: 1.5707963267948966 rad - pos: 0.5,-4.5 + - pos: 23.5,-38.5 parent: 2 type: Transform - - uid: 10061 + - uid: 10212 components: - - pos: 21.5,-29.5 + - pos: 22.5,-38.5 parent: 2 type: Transform - - uid: 10063 + - uid: 10213 components: - - pos: 23.5,-29.5 + - pos: 22.5,-39.5 parent: 2 type: Transform - - uid: 10064 + - uid: 10214 components: - - pos: 22.5,-29.5 + - pos: 23.5,-39.5 parent: 2 type: Transform - - uid: 10065 + - uid: 10215 components: - - pos: 22.5,-28.5 + - pos: 27.5,-39.5 parent: 2 type: Transform - - uid: 10066 + - uid: 10216 components: - - pos: 21.5,-28.5 + - pos: 28.5,-39.5 parent: 2 type: Transform - - uid: 10067 + - uid: 10217 components: - - pos: 22.5,-29.5 + - pos: 29.5,-39.5 parent: 2 type: Transform - - uid: 10068 +- proto: CarpetPink + entities: + - uid: 10218 + components: + - pos: 21.5,-29.5 + parent: 2 + type: Transform + - uid: 10219 components: - pos: 23.5,-29.5 parent: 2 type: Transform - - uid: 10069 + - uid: 10220 components: - - pos: 24.5,-29.5 + - pos: 22.5,-29.5 parent: 2 type: Transform - - uid: 10070 + - uid: 10221 components: - - pos: 23.5,-28.5 + - pos: 22.5,-28.5 parent: 2 type: Transform - - uid: 10071 + - uid: 10222 components: - - rot: -1.5707963267948966 rad - pos: 22.5,-28.5 + - pos: 21.5,-28.5 parent: 2 type: Transform - - uid: 10072 + - uid: 10223 components: - - rot: -1.5707963267948966 rad - pos: 24.5,-28.5 + - pos: 22.5,-29.5 parent: 2 type: Transform - - uid: 21171 + - uid: 10224 components: - - rot: 1.5707963267948966 rad - pos: 0.5,-3.5 + - pos: 23.5,-29.5 parent: 2 type: Transform - - uid: 21776 + - uid: 10225 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-6.5 + - pos: 23.5,-28.5 parent: 2 type: Transform - - uid: 21782 + - uid: 10226 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-5.5 + - rot: -1.5707963267948966 rad + pos: 22.5,-28.5 parent: 2 type: Transform - - uid: 21804 + - uid: 10227 components: - - rot: 1.5707963267948966 rad - pos: 0.5,-5.5 + - pos: 24.5,-28.5 parent: 2 type: Transform - - uid: 21809 + - uid: 10228 components: - rot: 1.5707963267948966 rad - pos: 0.5,-6.5 + pos: 20.5,-29.5 parent: 2 type: Transform - - uid: 22570 + - uid: 10229 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-3.5 + - pos: 20.5,-28.5 parent: 2 type: Transform - - uid: 23742 + - uid: 10230 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-4.5 + - pos: 24.5,-29.5 parent: 2 type: Transform - proto: CarpetPurple entities: - - uid: 10073 + - uid: 10231 components: - pos: -16.5,-38.5 parent: 2 type: Transform - - uid: 10074 + - uid: 10232 components: - pos: -16.5,-39.5 parent: 2 type: Transform - - uid: 10075 + - uid: 10233 components: - pos: -15.5,-38.5 parent: 2 type: Transform - - uid: 10076 + - uid: 10234 components: - pos: -15.5,-39.5 parent: 2 type: Transform - - uid: 10077 + - uid: 10235 components: - pos: -14.5,-38.5 parent: 2 type: Transform - - uid: 10078 + - uid: 10236 components: - pos: -14.5,-39.5 parent: 2 type: Transform - - uid: 10079 + - uid: 10237 components: - rot: -1.5707963267948966 rad pos: -49.5,7.5 parent: 2 type: Transform - - uid: 10080 + - uid: 10238 components: - rot: -1.5707963267948966 rad pos: -49.5,6.5 parent: 2 type: Transform - - uid: 10081 + - uid: 10239 components: - rot: -1.5707963267948966 rad pos: -49.5,5.5 parent: 2 type: Transform - - uid: 10082 + - uid: 10240 components: - rot: -1.5707963267948966 rad pos: -49.5,4.5 parent: 2 type: Transform - - uid: 10083 + - uid: 10241 components: - rot: -1.5707963267948966 rad pos: -48.5,7.5 parent: 2 type: Transform - - uid: 10084 + - uid: 10242 components: - rot: -1.5707963267948966 rad pos: -48.5,6.5 parent: 2 type: Transform - - uid: 10085 + - uid: 10243 components: - rot: -1.5707963267948966 rad pos: -48.5,5.5 parent: 2 type: Transform - - uid: 10086 + - uid: 10244 components: - rot: -1.5707963267948966 rad pos: -48.5,4.5 parent: 2 type: Transform - - uid: 10087 + - uid: 10245 components: - rot: -1.5707963267948966 rad pos: -47.5,7.5 parent: 2 type: Transform - - uid: 10088 + - uid: 10246 components: - rot: -1.5707963267948966 rad pos: -47.5,6.5 parent: 2 type: Transform - - uid: 10089 + - uid: 10247 components: - rot: -1.5707963267948966 rad pos: -47.5,5.5 parent: 2 type: Transform - - uid: 10090 + - uid: 10248 components: - rot: -1.5707963267948966 rad pos: -47.5,4.5 parent: 2 type: Transform - - uid: 10091 + - uid: 10249 components: - rot: -1.5707963267948966 rad pos: -46.5,7.5 parent: 2 type: Transform - - uid: 10092 + - uid: 10250 components: - rot: -1.5707963267948966 rad pos: -46.5,6.5 parent: 2 type: Transform - - uid: 10093 + - uid: 10251 components: - rot: -1.5707963267948966 rad pos: -46.5,5.5 parent: 2 type: Transform - - uid: 10094 + - uid: 10252 components: - rot: -1.5707963267948966 rad pos: -46.5,4.5 @@ -67779,282 +68586,282 @@ entities: type: Transform - proto: CarpetSBlue entities: - - uid: 10096 + - uid: 10253 components: - pos: 21.5,-22.5 parent: 2 type: Transform - - uid: 10097 + - uid: 10254 components: - pos: 21.5,-23.5 parent: 2 type: Transform - - uid: 10098 + - uid: 10255 components: - pos: 23.5,-23.5 parent: 2 type: Transform - - uid: 10099 + - uid: 10256 components: - pos: 24.5,-25.5 parent: 2 type: Transform - - uid: 10100 + - uid: 10257 components: - pos: 26.5,-24.5 parent: 2 type: Transform - - uid: 10101 + - uid: 10258 components: - pos: 26.5,-25.5 parent: 2 type: Transform - - uid: 10102 + - uid: 10259 components: - pos: 29.5,-23.5 parent: 2 type: Transform - - uid: 10103 + - uid: 10260 components: - pos: 28.5,-22.5 parent: 2 type: Transform - - uid: 10104 + - uid: 10261 components: - pos: 29.5,-23.5 parent: 2 type: Transform - - uid: 10105 + - uid: 10262 components: - pos: 25.5,-25.5 parent: 2 type: Transform - - uid: 10115 + - uid: 10263 components: - pos: 29.5,-22.5 parent: 2 type: Transform - - uid: 10118 + - uid: 10264 components: - pos: 27.5,-22.5 parent: 2 type: Transform - - uid: 10119 + - uid: 10265 components: - pos: 26.5,-22.5 parent: 2 type: Transform - - uid: 10120 + - uid: 10266 components: - pos: 24.5,-24.5 parent: 2 type: Transform - - uid: 10121 + - uid: 10267 components: - pos: 24.5,-23.5 parent: 2 type: Transform - - uid: 10123 + - uid: 10268 components: - pos: 24.5,-22.5 parent: 2 type: Transform - - uid: 10125 + - uid: 10269 components: - pos: 25.5,-24.5 parent: 2 type: Transform - - uid: 10129 + - uid: 10270 components: - pos: 28.5,-23.5 parent: 2 type: Transform - - uid: 10130 + - uid: 10271 components: - pos: 22.5,-23.5 parent: 2 type: Transform - - uid: 10131 + - uid: 10272 components: - pos: 22.5,-22.5 parent: 2 type: Transform - - uid: 10132 + - uid: 10273 components: - pos: 23.5,-22.5 parent: 2 type: Transform - - uid: 10133 + - uid: 10274 components: - pos: 25.5,-23.5 parent: 2 type: Transform - - uid: 10134 + - uid: 10275 components: - pos: 25.5,-22.5 parent: 2 type: Transform - - uid: 10135 + - uid: 10276 components: - pos: 26.5,-23.5 parent: 2 type: Transform - - uid: 10136 + - uid: 10277 components: - rot: 3.141592653589793 rad pos: 30.5,-47.5 parent: 2 type: Transform - - uid: 10137 + - uid: 10278 components: - rot: 3.141592653589793 rad pos: 30.5,-48.5 parent: 2 type: Transform - - uid: 10138 + - uid: 10279 components: - rot: 3.141592653589793 rad pos: 31.5,-47.5 parent: 2 type: Transform - - uid: 10139 + - uid: 10280 components: - rot: 3.141592653589793 rad pos: 31.5,-48.5 parent: 2 type: Transform - - uid: 10140 + - uid: 10281 components: - rot: 3.141592653589793 rad pos: 32.5,-47.5 parent: 2 type: Transform - - uid: 10141 + - uid: 10282 components: - rot: 3.141592653589793 rad pos: 32.5,-48.5 parent: 2 type: Transform - - uid: 10142 + - uid: 10283 components: - pos: 30.5,-28.5 parent: 2 type: Transform - - uid: 10143 + - uid: 10284 components: - pos: 30.5,-29.5 parent: 2 type: Transform - - uid: 10144 + - uid: 10285 components: - pos: 31.5,-27.5 parent: 2 type: Transform - - uid: 10145 + - uid: 10286 components: - pos: 31.5,-28.5 parent: 2 type: Transform - - uid: 10146 + - uid: 10287 components: - pos: 31.5,-29.5 parent: 2 type: Transform - - uid: 10147 + - uid: 10288 components: - pos: 32.5,-27.5 parent: 2 type: Transform - - uid: 10148 + - uid: 10289 components: - pos: 32.5,-28.5 parent: 2 type: Transform - - uid: 10149 + - uid: 10290 components: - pos: 32.5,-29.5 parent: 2 type: Transform - - uid: 10150 + - uid: 10291 components: - pos: 30.5,-27.5 parent: 2 type: Transform - - uid: 10151 + - uid: 10292 components: - pos: 31.5,-30.5 parent: 2 type: Transform - - uid: 10152 + - uid: 10293 components: - pos: 30.5,-30.5 parent: 2 type: Transform - - uid: 10153 + - uid: 10294 components: - pos: 59.5,-0.5 parent: 2 type: Transform - - uid: 10154 + - uid: 10295 components: - pos: 59.5,-1.5 parent: 2 type: Transform - - uid: 10155 + - uid: 10296 components: - pos: 60.5,-0.5 parent: 2 type: Transform - - uid: 10156 + - uid: 10297 components: - pos: 60.5,-1.5 parent: 2 type: Transform - - uid: 10157 + - uid: 10298 components: - pos: 61.5,-0.5 parent: 2 type: Transform - - uid: 10158 + - uid: 10299 components: - pos: 61.5,-1.5 parent: 2 type: Transform - - uid: 10159 + - uid: 10300 components: - pos: 62.5,-0.5 parent: 2 type: Transform - - uid: 10160 + - uid: 10301 components: - pos: 62.5,-1.5 parent: 2 type: Transform - - uid: 10162 + - uid: 10302 components: - pos: 32.5,-30.5 parent: 2 type: Transform - - uid: 10163 + - uid: 10303 components: - pos: 27.5,-23.5 parent: 2 type: Transform - proto: CartridgeMagnumAP entities: - - uid: 10062 + - uid: 10304 components: - rot: 1.5707963267948966 rad pos: 23.553988,-35.486286 parent: 2 type: Transform - - uid: 15642 + - uid: 10305 components: - rot: 1.5707963267948966 rad pos: 23.460238,-35.548786 parent: 2 type: Transform - - uid: 20977 + - uid: 10306 components: - rot: 1.5707963267948966 rad pos: 23.647738,-35.43941 @@ -68062,8884 +68869,8840 @@ entities: type: Transform - proto: Catwalk entities: - - uid: 10164 + - uid: 10307 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-32.5 + parent: 2 + type: Transform + - uid: 10308 components: - rot: 3.141592653589793 rad pos: -76.5,-38.5 parent: 2 type: Transform - - uid: 10165 + - uid: 10309 components: - pos: -79.5,-40.5 parent: 2 type: Transform - - uid: 10166 + - uid: 10310 components: - pos: -79.5,-41.5 parent: 2 type: Transform - - uid: 10167 + - uid: 10311 components: - rot: 3.141592653589793 rad pos: -61.5,-53.5 parent: 2 type: Transform - - uid: 10168 + - uid: 10312 components: - rot: 3.141592653589793 rad pos: -61.5,-54.5 parent: 2 type: Transform - - uid: 10169 + - uid: 10313 components: - rot: 3.141592653589793 rad pos: -61.5,-52.5 parent: 2 type: Transform - - uid: 10170 + - uid: 10314 components: - rot: 3.141592653589793 rad pos: -61.5,-51.5 parent: 2 type: Transform - - uid: 10171 + - uid: 10315 components: - rot: 3.141592653589793 rad pos: -61.5,-50.5 parent: 2 type: Transform - - uid: 10172 + - uid: 10316 components: - rot: 3.141592653589793 rad pos: -61.5,-49.5 parent: 2 type: Transform - - uid: 10173 + - uid: 10317 components: - rot: 3.141592653589793 rad pos: -61.5,-48.5 parent: 2 type: Transform - - uid: 10174 + - uid: 10318 components: - rot: 1.5707963267948966 rad pos: -59.5,56.5 parent: 2 type: Transform - - uid: 10175 + - uid: 10319 components: - rot: 1.5707963267948966 rad pos: -57.5,56.5 parent: 2 type: Transform - - uid: 10176 + - uid: 10320 components: - rot: 1.5707963267948966 rad pos: -55.5,56.5 parent: 2 type: Transform - - uid: 10177 + - uid: 10321 components: - rot: 1.5707963267948966 rad pos: -54.5,55.5 parent: 2 type: Transform - - uid: 10178 + - uid: 10322 components: - rot: 3.141592653589793 rad pos: -0.5,-71.5 parent: 2 type: Transform - - uid: 10179 + - uid: 10323 components: - rot: 3.141592653589793 rad pos: 14.5,-47.5 parent: 2 type: Transform - - uid: 10180 + - uid: 10324 components: - pos: 65.5,-25.5 parent: 2 type: Transform - - uid: 10181 + - uid: 10325 components: - rot: 3.141592653589793 rad pos: 79.5,-26.5 parent: 2 type: Transform - - uid: 10182 + - uid: 10326 components: - pos: 31.5,-14.5 parent: 2 type: Transform - - uid: 10183 + - uid: 10327 components: - pos: -11.5,-15.5 parent: 2 type: Transform - - uid: 10184 + - uid: 10328 components: - pos: -7.5,-75.5 parent: 2 type: Transform - - uid: 10185 + - uid: 10329 components: - pos: 32.5,-11.5 parent: 2 type: Transform - - uid: 10186 + - uid: 10330 components: - pos: -1.5,-83.5 parent: 2 type: Transform - - uid: 10187 + - uid: 10331 components: - pos: -12.5,-15.5 parent: 2 type: Transform - - uid: 10188 + - uid: 10332 components: - pos: -5.5,-69.5 parent: 2 type: Transform - - uid: 10189 + - uid: 10333 components: - pos: 2.5,-90.5 parent: 2 type: Transform - - uid: 10190 + - uid: 10334 components: - pos: -1.5,-88.5 parent: 2 type: Transform - - uid: 10191 + - uid: 10335 components: - pos: -0.5,-89.5 parent: 2 type: Transform - - uid: 10192 + - uid: 10336 components: - pos: 0.5,-89.5 parent: 2 type: Transform - - uid: 10193 + - uid: 10337 components: - pos: 3.5,-92.5 parent: 2 type: Transform - - uid: 10194 + - uid: 10338 components: - pos: 8.5,-53.5 parent: 2 type: Transform - - uid: 10195 + - uid: 10339 components: - pos: 4.5,-92.5 parent: 2 type: Transform - - uid: 10196 + - uid: 10340 components: - pos: -46.5,-50.5 parent: 2 type: Transform - - uid: 10197 + - uid: 10341 components: - rot: 3.141592653589793 rad pos: 0.5,-71.5 parent: 2 type: Transform - - uid: 10198 + - uid: 10342 components: - pos: 2.5,-91.5 parent: 2 type: Transform - - uid: 10199 + - uid: 10343 components: - pos: -1.5,-89.5 parent: 2 type: Transform - - uid: 10200 + - uid: 10344 components: - pos: 4.5,-89.5 parent: 2 type: Transform - - uid: 10201 + - uid: 10345 components: - pos: -6.5,-75.5 parent: 2 type: Transform - - uid: 10202 + - uid: 10346 components: - pos: -8.5,-75.5 parent: 2 type: Transform - - uid: 10204 + - uid: 10347 components: - pos: 30.5,-14.5 parent: 2 type: Transform - - uid: 10205 + - uid: 10348 components: - pos: -5.5,-75.5 parent: 2 type: Transform - - uid: 10206 + - uid: 10349 components: - pos: -4.5,-75.5 parent: 2 type: Transform - - uid: 10207 + - uid: 10350 components: - pos: -3.5,-75.5 parent: 2 type: Transform - - uid: 10208 + - uid: 10351 components: - pos: -14.5,-73.5 parent: 2 type: Transform - - uid: 10209 + - uid: 10352 components: - pos: 30.5,-10.5 parent: 2 type: Transform - - uid: 10210 + - uid: 10353 components: - pos: -13.5,-73.5 parent: 2 type: Transform - - uid: 10211 + - uid: 10354 components: - pos: 9.5,-47.5 parent: 2 type: Transform - - uid: 10212 + - uid: 10355 components: - rot: 3.141592653589793 rad pos: 18.5,-52.5 parent: 2 type: Transform - - uid: 10213 + - uid: 10356 components: - rot: 3.141592653589793 rad pos: 14.5,-53.5 parent: 2 type: Transform - - uid: 10214 + - uid: 10357 components: - rot: 3.141592653589793 rad pos: 14.5,-52.5 parent: 2 type: Transform - - uid: 10215 + - uid: 10358 components: - rot: 3.141592653589793 rad pos: 21.5,-53.5 parent: 2 type: Transform - - uid: 10216 + - uid: 10359 components: - rot: 3.141592653589793 rad pos: 15.5,-53.5 parent: 2 type: Transform - - uid: 10217 + - uid: 10360 components: - rot: 3.141592653589793 rad pos: 15.5,-52.5 parent: 2 type: Transform - - uid: 10218 + - uid: 10361 components: - rot: 3.141592653589793 rad pos: 16.5,-52.5 parent: 2 type: Transform - - uid: 10219 + - uid: 10362 components: - rot: 3.141592653589793 rad pos: 17.5,-52.5 parent: 2 type: Transform - - uid: 10220 + - uid: 10363 components: - rot: 3.141592653589793 rad pos: 17.5,-53.5 parent: 2 type: Transform - - uid: 10221 + - uid: 10364 components: - pos: -46.5,-43.5 parent: 2 type: Transform - - uid: 10222 + - uid: 10365 components: - pos: 32.5,-10.5 parent: 2 type: Transform - - uid: 10223 + - uid: 10366 components: - pos: 32.5,-13.5 parent: 2 type: Transform - - uid: 10225 + - uid: 10367 components: - rot: -1.5707963267948966 rad pos: 27.5,-32.5 parent: 2 type: Transform - - uid: 10226 + - uid: 10368 components: - rot: -1.5707963267948966 rad pos: 24.5,-32.5 parent: 2 type: Transform - - uid: 10227 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-32.5 - parent: 2 - type: Transform - - uid: 10228 + - uid: 10369 components: - rot: 3.141592653589793 rad pos: 12.5,-16.5 parent: 2 type: Transform - - uid: 10229 + - uid: 10370 components: - rot: -1.5707963267948966 rad pos: 21.5,-32.5 parent: 2 type: Transform - - uid: 10230 + - uid: 10371 components: - pos: -17.5,-52.5 parent: 2 type: Transform - - uid: 10231 + - uid: 10372 components: - pos: -8.5,-13.5 parent: 2 type: Transform - - uid: 10232 + - uid: 10373 components: - pos: -6.5,-70.5 parent: 2 type: Transform - - uid: 10233 + - uid: 10374 components: - pos: 11.5,-17.5 parent: 2 type: Transform - - uid: 10234 + - uid: 10375 components: - pos: -19.5,-52.5 parent: 2 type: Transform - - uid: 10235 + - uid: 10376 components: - rot: 3.141592653589793 rad pos: 9.5,-92.5 parent: 2 type: Transform - - uid: 10236 + - uid: 10377 components: - rot: 3.141592653589793 rad pos: 10.5,-92.5 parent: 2 type: Transform - - uid: 10237 + - uid: 10378 components: - pos: -1.5,-82.5 parent: 2 type: Transform - - uid: 10238 + - uid: 10379 components: - rot: 3.141592653589793 rad pos: 14.5,-45.5 parent: 2 type: Transform - - uid: 10239 + - uid: 10380 components: - rot: -1.5707963267948966 rad pos: 25.5,-32.5 parent: 2 type: Transform - - uid: 10240 + - uid: 10381 components: - pos: 32.5,-12.5 parent: 2 type: Transform - - uid: 10241 + - uid: 10382 components: - pos: 32.5,-14.5 parent: 2 type: Transform - - uid: 10242 + - uid: 10383 components: - pos: -1.5,-85.5 parent: 2 type: Transform - - uid: 10243 + - uid: 10384 components: - pos: -1.5,-87.5 parent: 2 type: Transform - - uid: 10244 + - uid: 10385 components: - rot: 3.141592653589793 rad pos: 11.5,-105.5 parent: 2 type: Transform - - uid: 10245 + - uid: 10386 components: - pos: -12.5,-14.5 parent: 2 type: Transform - - uid: 10246 + - uid: 10387 components: - pos: 4.5,-67.5 parent: 2 type: Transform - - uid: 10247 + - uid: 10388 components: - pos: 1.5,-89.5 parent: 2 type: Transform - - uid: 10248 + - uid: 10389 components: - pos: 8.5,-55.5 parent: 2 type: Transform - - uid: 10249 + - uid: 10390 components: - rot: 3.141592653589793 rad pos: 11.5,-92.5 parent: 2 type: Transform - - uid: 10250 + - uid: 10391 components: - pos: 3.5,-67.5 parent: 2 type: Transform - - uid: 10251 + - uid: 10392 components: - pos: 5.5,-67.5 parent: 2 type: Transform - - uid: 10252 + - uid: 10393 components: - pos: 8.5,-54.5 parent: 2 type: Transform - - uid: 10253 + - uid: 10394 components: - rot: 1.5707963267948966 rad pos: -24.5,53.5 parent: 2 type: Transform - - uid: 10254 + - uid: 10395 components: - rot: 1.5707963267948966 rad pos: -24.5,50.5 parent: 2 type: Transform - - uid: 10255 + - uid: 10396 components: - rot: 1.5707963267948966 rad pos: -24.5,51.5 parent: 2 type: Transform - - uid: 10256 + - uid: 10397 components: - rot: 1.5707963267948966 rad pos: -24.5,52.5 parent: 2 type: Transform - - uid: 10257 + - uid: 10398 components: - rot: 1.5707963267948966 rad pos: -24.5,49.5 parent: 2 type: Transform - - uid: 10258 + - uid: 10399 components: - rot: 3.141592653589793 rad pos: 2.5,-71.5 parent: 2 type: Transform - - uid: 10259 + - uid: 10400 components: - pos: 30.5,-11.5 parent: 2 type: Transform - - uid: 10260 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-32.5 - parent: 2 - type: Transform - - uid: 10261 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-32.5 - parent: 2 - type: Transform - - uid: 10262 + - uid: 10401 components: - rot: 3.141592653589793 rad pos: 14.5,-48.5 parent: 2 type: Transform - - uid: 10263 + - uid: 10402 components: - rot: -1.5707963267948966 rad pos: 20.5,-32.5 parent: 2 type: Transform - - uid: 10264 + - uid: 10403 components: - pos: -1.5,-81.5 parent: 2 type: Transform - - uid: 10265 + - uid: 10404 components: - pos: -1.5,-86.5 parent: 2 type: Transform - - uid: 10266 + - uid: 10405 components: - pos: 2.5,-89.5 parent: 2 type: Transform - - uid: 10267 + - uid: 10406 components: - pos: 7.5,-92.5 parent: 2 type: Transform - - uid: 10268 + - uid: 10407 components: - pos: 2.5,-92.5 parent: 2 type: Transform - - uid: 10269 + - uid: 10408 components: - pos: 11.5,-100.5 parent: 2 type: Transform - - uid: 10270 + - uid: 10409 components: - rot: 3.141592653589793 rad pos: 8.5,-92.5 parent: 2 type: Transform - - uid: 10271 + - uid: 10410 components: - pos: 6.5,-92.5 parent: 2 type: Transform - - uid: 10272 + - uid: 10411 components: - pos: 5.5,-92.5 parent: 2 type: Transform - - uid: 10273 + - uid: 10412 components: - pos: -9.5,-75.5 parent: 2 type: Transform - - uid: 10274 + - uid: 10413 components: - rot: 3.141592653589793 rad pos: 20.5,-53.5 parent: 2 type: Transform - - uid: 10275 + - uid: 10414 components: - pos: 30.5,-12.5 parent: 2 type: Transform - - uid: 10276 + - uid: 10415 components: - pos: 60.5,-58.5 parent: 2 type: Transform - - uid: 10277 + - uid: 10416 components: - pos: -4.5,-69.5 parent: 2 type: Transform - - uid: 10278 + - uid: 10417 components: - pos: -13.5,-31.5 parent: 2 type: Transform - - uid: 10279 + - uid: 10418 components: - pos: -3.5,-69.5 parent: 2 type: Transform - - uid: 10280 + - uid: 10419 components: - pos: -9.5,-13.5 parent: 2 type: Transform - - uid: 10281 + - uid: 10420 components: - pos: -12.5,-13.5 parent: 2 type: Transform - - uid: 10282 + - uid: 10421 components: - pos: -10.5,-13.5 parent: 2 type: Transform - - uid: 10283 + - uid: 10422 components: - pos: -10.5,-14.5 parent: 2 type: Transform - - uid: 10284 + - uid: 10423 components: - pos: -10.5,-15.5 parent: 2 type: Transform - - uid: 10285 + - uid: 10424 components: - pos: -13.5,-14.5 parent: 2 type: Transform - - uid: 10286 + - uid: 10425 components: - pos: -7.5,-13.5 parent: 2 type: Transform - - uid: 10287 + - uid: 10426 components: - pos: -14.5,-31.5 parent: 2 type: Transform - - uid: 10288 + - uid: 10427 components: - pos: -15.5,-31.5 parent: 2 type: Transform - - uid: 10289 + - uid: 10428 components: - pos: -2.5,-69.5 parent: 2 type: Transform - - uid: 10290 + - uid: 10429 components: - pos: -16.5,-31.5 parent: 2 type: Transform - - uid: 10291 + - uid: 10430 components: - pos: -6.5,-69.5 parent: 2 type: Transform - - uid: 10292 + - uid: 10431 components: - pos: -12.5,15.5 parent: 2 type: Transform - - uid: 10293 + - uid: 10432 components: - pos: -14.5,15.5 parent: 2 type: Transform - - uid: 10294 + - uid: 10433 components: - pos: -6.5,-71.5 parent: 2 type: Transform - - uid: 10295 + - uid: 10434 components: - pos: -7.5,-71.5 parent: 2 type: Transform - - uid: 10296 + - uid: 10435 components: - pos: -8.5,-71.5 parent: 2 type: Transform - - uid: 10297 + - uid: 10436 components: - pos: -9.5,-71.5 parent: 2 type: Transform - - uid: 10298 + - uid: 10437 components: - pos: -10.5,-71.5 parent: 2 type: Transform - - uid: 10299 + - uid: 10438 components: - pos: -11.5,-71.5 parent: 2 type: Transform - - uid: 10300 + - uid: 10439 components: - pos: 3.5,-16.5 parent: 2 type: Transform - - uid: 10301 + - uid: 10440 components: - pos: 2.5,-16.5 parent: 2 type: Transform - - uid: 10302 + - uid: 10441 components: - pos: 1.5,-16.5 parent: 2 type: Transform - - uid: 10303 + - uid: 10442 components: - pos: 1.5,-17.5 parent: 2 type: Transform - - uid: 10304 + - uid: 10443 components: - pos: 0.5,-17.5 parent: 2 type: Transform - - uid: 10305 + - uid: 10444 components: - pos: -0.5,-17.5 parent: 2 type: Transform - - uid: 10306 + - uid: 10445 components: - pos: -0.5,-17.5 parent: 2 type: Transform - - uid: 10307 - components: - - pos: -1.5,-17.5 - parent: 2 - type: Transform - - uid: 10308 - components: - - pos: -1.5,-18.5 - parent: 2 - type: Transform - - uid: 10309 - components: - - pos: -1.5,-19.5 - parent: 2 - type: Transform - - uid: 10310 - components: - - pos: -1.5,-20.5 - parent: 2 - type: Transform - - uid: 10311 + - uid: 10446 components: - pos: 14.5,-14.5 parent: 2 type: Transform - - uid: 10312 + - uid: 10447 components: - pos: 13.5,-14.5 parent: 2 type: Transform - - uid: 10313 + - uid: 10448 components: - pos: 12.5,-14.5 parent: 2 type: Transform - - uid: 10314 + - uid: 10449 components: - pos: 11.5,-14.5 parent: 2 type: Transform - - uid: 10315 + - uid: 10450 components: - pos: 10.5,-14.5 parent: 2 type: Transform - - uid: 10316 + - uid: 10451 components: - pos: 9.5,-14.5 parent: 2 type: Transform - - uid: 10317 + - uid: 10452 components: - pos: 8.5,-14.5 parent: 2 type: Transform - - uid: 10318 + - uid: 10453 components: - pos: 7.5,-14.5 parent: 2 type: Transform - - uid: 10319 + - uid: 10454 components: - pos: 14.5,-5.5 parent: 2 type: Transform - - uid: 10320 + - uid: 10455 components: - pos: 14.5,-6.5 parent: 2 type: Transform - - uid: 10321 + - uid: 10456 components: - pos: 14.5,-4.5 parent: 2 type: Transform - - uid: 10322 + - uid: 10457 components: - pos: 56.5,1.5 parent: 2 type: Transform - - uid: 10323 + - uid: 10458 components: - pos: 57.5,2.5 parent: 2 type: Transform - - uid: 10324 + - uid: 10459 components: - pos: 56.5,2.5 parent: 2 type: Transform - - uid: 10325 + - uid: 10460 components: - pos: 57.5,1.5 parent: 2 type: Transform - - uid: 10326 + - uid: 10461 components: - pos: 58.5,1.5 parent: 2 type: Transform - - uid: 10327 + - uid: 10462 components: - pos: 59.5,1.5 parent: 2 type: Transform - - uid: 10328 + - uid: 10463 components: - pos: 60.5,1.5 parent: 2 type: Transform - - uid: 10329 + - uid: 10464 components: - pos: 61.5,1.5 parent: 2 type: Transform - - uid: 10330 + - uid: 10465 components: - pos: 62.5,1.5 parent: 2 type: Transform - - uid: 10331 + - uid: 10466 components: - pos: 62.5,2.5 parent: 2 type: Transform - - uid: 10332 + - uid: 10467 components: - pos: 12.5,-17.5 parent: 2 type: Transform - - uid: 10333 + - uid: 10468 components: - pos: 10.5,-17.5 parent: 2 type: Transform - - uid: 10334 - components: - - pos: 9.5,-17.5 - parent: 2 - type: Transform - - uid: 10335 + - uid: 10469 components: - pos: 8.5,-17.5 parent: 2 type: Transform - - uid: 10336 + - uid: 10470 components: - pos: 7.5,-17.5 parent: 2 type: Transform - - uid: 10337 + - uid: 10471 components: - rot: -1.5707963267948966 rad pos: 59.5,-19.5 parent: 2 type: Transform - - uid: 10338 + - uid: 10472 components: - rot: -1.5707963267948966 rad pos: 59.5,-20.5 parent: 2 type: Transform - - uid: 10339 + - uid: 10473 components: - rot: -1.5707963267948966 rad pos: 59.5,-21.5 parent: 2 type: Transform - - uid: 10340 + - uid: 10474 components: - rot: -1.5707963267948966 rad pos: 58.5,-19.5 parent: 2 type: Transform - - uid: 10341 + - uid: 10475 components: - rot: -1.5707963267948966 rad pos: 57.5,-19.5 parent: 2 type: Transform - - uid: 10342 + - uid: 10476 components: - rot: -1.5707963267948966 rad pos: 57.5,-18.5 parent: 2 type: Transform - - uid: 10343 + - uid: 10477 components: - rot: -1.5707963267948966 rad pos: 57.5,-17.5 parent: 2 type: Transform - - uid: 10344 + - uid: 10478 components: - rot: -1.5707963267948966 rad pos: 52.5,-17.5 parent: 2 type: Transform - - uid: 10345 + - uid: 10479 components: - rot: -1.5707963267948966 rad pos: 53.5,-17.5 parent: 2 type: Transform - - uid: 10346 + - uid: 10480 components: - rot: -1.5707963267948966 rad pos: 54.5,-17.5 parent: 2 type: Transform - - uid: 10347 + - uid: 10481 components: - rot: -1.5707963267948966 rad pos: 55.5,-17.5 parent: 2 type: Transform - - uid: 10348 + - uid: 10482 components: - rot: -1.5707963267948966 rad pos: 56.5,-17.5 parent: 2 type: Transform - - uid: 10349 + - uid: 10483 components: - pos: 61.5,-58.5 parent: 2 type: Transform - - uid: 10350 + - uid: 10484 components: - pos: 62.5,-58.5 parent: 2 type: Transform - - uid: 10351 + - uid: 10485 components: - pos: 63.5,-58.5 parent: 2 type: Transform - - uid: 10352 + - uid: 10486 components: - pos: 79.5,-43.5 parent: 2 type: Transform - - uid: 10353 + - uid: 10487 components: - pos: 79.5,-42.5 parent: 2 type: Transform - - uid: 10354 + - uid: 10488 components: - pos: -46.5,-55.5 parent: 2 type: Transform - - uid: 10355 + - uid: 10489 components: - pos: -16.5,-0.5 parent: 2 type: Transform - - uid: 10356 + - uid: 10490 components: - pos: -17.5,-0.5 parent: 2 type: Transform - - uid: 10357 + - uid: 10491 components: - pos: -18.5,-0.5 parent: 2 type: Transform - - uid: 10358 + - uid: 10492 components: - pos: -19.5,-0.5 parent: 2 type: Transform - - uid: 10359 + - uid: 10493 components: - pos: -20.5,-0.5 parent: 2 type: Transform - - uid: 10360 + - uid: 10494 components: - pos: -21.5,-0.5 parent: 2 type: Transform - - uid: 10361 + - uid: 10495 components: - pos: -22.5,-0.5 parent: 2 type: Transform - - uid: 10362 + - uid: 10496 components: - rot: 3.141592653589793 rad pos: 52.5,-85.5 parent: 2 type: Transform - - uid: 10363 + - uid: 10497 components: - rot: 3.141592653589793 rad pos: 52.5,-86.5 parent: 2 type: Transform - - uid: 10364 + - uid: 10498 components: - rot: 3.141592653589793 rad pos: 52.5,-87.5 parent: 2 type: Transform - - uid: 10365 + - uid: 10499 components: - rot: 3.141592653589793 rad pos: 52.5,-92.5 parent: 2 type: Transform - - uid: 10366 + - uid: 10500 components: - rot: 3.141592653589793 rad pos: 52.5,-77.5 parent: 2 type: Transform - - uid: 10367 + - uid: 10501 components: - rot: 3.141592653589793 rad pos: 14.5,-89.5 parent: 2 type: Transform - - uid: 10368 + - uid: 10502 components: - rot: 3.141592653589793 rad pos: 52.5,-78.5 parent: 2 type: Transform - - uid: 10369 + - uid: 10503 components: - rot: 3.141592653589793 rad pos: 15.5,-89.5 parent: 2 type: Transform - - uid: 10370 + - uid: 10504 components: - rot: 3.141592653589793 rad pos: 26.5,-89.5 parent: 2 type: Transform - - uid: 10371 + - uid: 10505 components: - rot: 3.141592653589793 rad pos: 24.5,-89.5 parent: 2 type: Transform - - uid: 10372 + - uid: 10506 components: - rot: 3.141592653589793 rad pos: 25.5,-89.5 parent: 2 type: Transform - - uid: 10373 + - uid: 10507 components: - rot: 3.141592653589793 rad pos: 52.5,-84.5 parent: 2 type: Transform - - uid: 10374 + - uid: 10508 components: - rot: 3.141592653589793 rad pos: 52.5,-94.5 parent: 2 type: Transform - - uid: 10375 + - uid: 10509 components: - rot: 3.141592653589793 rad pos: 52.5,-79.5 parent: 2 type: Transform - - uid: 10376 + - uid: 10510 components: - rot: 3.141592653589793 rad pos: 16.5,-89.5 parent: 2 type: Transform - - uid: 10377 + - uid: 10511 components: - rot: 3.141592653589793 rad pos: 17.5,-89.5 parent: 2 type: Transform - - uid: 10378 + - uid: 10512 components: - rot: 3.141592653589793 rad pos: 18.5,-89.5 parent: 2 type: Transform - - uid: 10379 + - uid: 10513 components: - rot: 3.141592653589793 rad pos: 19.5,-89.5 parent: 2 type: Transform - - uid: 10380 + - uid: 10514 components: - rot: 3.141592653589793 rad pos: 20.5,-89.5 parent: 2 type: Transform - - uid: 10381 + - uid: 10515 components: - rot: 3.141592653589793 rad pos: 21.5,-89.5 parent: 2 type: Transform - - uid: 10382 + - uid: 10516 components: - rot: 3.141592653589793 rad pos: 22.5,-89.5 parent: 2 type: Transform - - uid: 10383 + - uid: 10517 components: - rot: 3.141592653589793 rad pos: 27.5,-89.5 parent: 2 type: Transform - - uid: 10384 + - uid: 10518 components: - rot: 3.141592653589793 rad pos: 57.5,-74.5 parent: 2 type: Transform - - uid: 10385 + - uid: 10519 components: - rot: 3.141592653589793 rad pos: 27.5,-93.5 parent: 2 type: Transform - - uid: 10386 + - uid: 10520 components: - rot: 3.141592653589793 rad pos: 27.5,-94.5 parent: 2 type: Transform - - uid: 10387 + - uid: 10521 components: - rot: 3.141592653589793 rad pos: 27.5,-91.5 parent: 2 type: Transform - - uid: 10388 + - uid: 10522 components: - rot: 3.141592653589793 rad pos: 27.5,-92.5 parent: 2 type: Transform - - uid: 10389 + - uid: 10523 components: - rot: 3.141592653589793 rad pos: 52.5,-91.5 parent: 2 type: Transform - - uid: 10390 + - uid: 10524 components: - rot: 1.5707963267948966 rad pos: 22.5,-75.5 parent: 2 type: Transform - - uid: 10391 + - uid: 10525 components: - pos: 20.5,-73.5 parent: 2 type: Transform - - uid: 10392 + - uid: 10526 components: - pos: 19.5,-73.5 parent: 2 type: Transform - - uid: 10393 + - uid: 10527 components: - pos: 18.5,-73.5 parent: 2 type: Transform - - uid: 10394 + - uid: 10528 components: - pos: 17.5,-73.5 parent: 2 type: Transform - - uid: 10395 + - uid: 10529 components: - pos: 16.5,-73.5 parent: 2 type: Transform - - uid: 10396 + - uid: 10530 components: - pos: 15.5,-73.5 parent: 2 type: Transform - - uid: 10397 + - uid: 10531 components: - pos: 14.5,-73.5 parent: 2 type: Transform - - uid: 10398 + - uid: 10532 components: - pos: 13.5,-73.5 parent: 2 type: Transform - - uid: 10399 + - uid: 10533 components: - pos: 12.5,-73.5 parent: 2 type: Transform - - uid: 10400 + - uid: 10534 components: - pos: 11.5,-73.5 parent: 2 type: Transform - - uid: 10401 + - uid: 10535 components: - pos: 43.5,-59.5 parent: 2 type: Transform - - uid: 10402 + - uid: 10536 components: - pos: -46.5,-48.5 parent: 2 type: Transform - - uid: 10403 + - uid: 10537 components: - pos: -46.5,-45.5 parent: 2 type: Transform - - uid: 10404 + - uid: 10538 components: - pos: -46.5,-46.5 parent: 2 type: Transform - - uid: 10405 + - uid: 10539 components: - pos: -46.5,-52.5 parent: 2 type: Transform - - uid: 10406 + - uid: 10540 components: - rot: 1.5707963267948966 rad pos: -19.5,-45.5 parent: 2 type: Transform - - uid: 10407 + - uid: 10541 components: - rot: 1.5707963267948966 rad pos: -19.5,-46.5 parent: 2 type: Transform - - uid: 10408 + - uid: 10542 components: - rot: 1.5707963267948966 rad pos: -19.5,-47.5 parent: 2 type: Transform - - uid: 10409 + - uid: 10543 components: - rot: 3.141592653589793 rad pos: 27.5,-95.5 parent: 2 type: Transform - - uid: 10410 + - uid: 10544 components: - rot: 3.141592653589793 rad pos: 28.5,-95.5 parent: 2 type: Transform - - uid: 10411 + - uid: 10545 components: - rot: 3.141592653589793 rad pos: 56.5,-74.5 parent: 2 type: Transform - - uid: 10412 + - uid: 10546 components: - pos: -46.5,-47.5 parent: 2 type: Transform - - uid: 10413 + - uid: 10547 components: - pos: -46.5,-49.5 parent: 2 type: Transform - - uid: 10414 + - uid: 10548 components: - pos: -46.5,-44.5 parent: 2 type: Transform - - uid: 10415 + - uid: 10549 components: - pos: -46.5,-51.5 parent: 2 type: Transform - - uid: 10416 + - uid: 10550 components: - pos: 79.5,-50.5 parent: 2 type: Transform - - uid: 10417 + - uid: 10551 components: - pos: 79.5,-49.5 parent: 2 type: Transform - - uid: 10418 + - uid: 10552 components: - pos: 79.5,-44.5 parent: 2 type: Transform - - uid: 10419 + - uid: 10553 components: - pos: 79.5,-45.5 parent: 2 type: Transform - - uid: 10420 + - uid: 10554 components: - pos: 79.5,-46.5 parent: 2 type: Transform - - uid: 10421 + - uid: 10555 components: - pos: 79.5,-47.5 parent: 2 type: Transform - - uid: 10422 + - uid: 10556 components: - pos: 79.5,-48.5 parent: 2 type: Transform - - uid: 10423 + - uid: 10557 components: - pos: 79.5,-41.5 parent: 2 type: Transform - - uid: 10424 + - uid: 10558 components: - pos: 68.5,-74.5 parent: 2 type: Transform - - uid: 10425 + - uid: 10559 components: - pos: 68.5,-73.5 parent: 2 type: Transform - - uid: 10426 + - uid: 10560 components: - pos: -23.5,-26.5 parent: 2 type: Transform - - uid: 10427 + - uid: 10561 components: - pos: -24.5,-26.5 parent: 2 type: Transform - - uid: 10428 + - uid: 10562 components: - pos: -25.5,-26.5 parent: 2 type: Transform - - uid: 10429 + - uid: 10563 components: - pos: -26.5,-26.5 parent: 2 type: Transform - - uid: 10430 + - uid: 10564 components: - pos: -27.5,-26.5 parent: 2 type: Transform - - uid: 10431 + - uid: 10565 components: - pos: -28.5,-26.5 parent: 2 type: Transform - - uid: 10432 + - uid: 10566 components: - pos: 68.5,-72.5 parent: 2 type: Transform - - uid: 10433 + - uid: 10567 components: - pos: 68.5,-71.5 parent: 2 type: Transform - - uid: 10434 + - uid: 10568 components: - pos: 36.5,-56.5 parent: 2 type: Transform - - uid: 10435 + - uid: 10569 components: - pos: 36.5,-54.5 parent: 2 type: Transform - - uid: 10436 + - uid: 10570 components: - pos: 36.5,-53.5 parent: 2 type: Transform - - uid: 10437 + - uid: 10571 components: - pos: 36.5,-52.5 parent: 2 type: Transform - - uid: 10438 + - uid: 10572 components: - pos: 38.5,-51.5 parent: 2 type: Transform - - uid: 10439 + - uid: 10573 components: - pos: 39.5,-51.5 parent: 2 type: Transform - - uid: 10440 + - uid: 10574 components: - pos: 40.5,-51.5 parent: 2 type: Transform - - uid: 10441 + - uid: 10575 components: - pos: 41.5,-51.5 parent: 2 type: Transform - - uid: 10442 + - uid: 10576 components: - pos: 13.5,-47.5 parent: 2 type: Transform - - uid: 10443 + - uid: 10577 components: - pos: 13.5,-45.5 parent: 2 type: Transform - - uid: 10444 + - uid: 10578 components: - pos: 15.5,-45.5 parent: 2 type: Transform - - uid: 10445 + - uid: 10579 components: - pos: 16.5,-45.5 parent: 2 type: Transform - - uid: 10446 + - uid: 10580 components: - pos: 17.5,-45.5 parent: 2 type: Transform - - uid: 10447 + - uid: 10581 components: - rot: 3.141592653589793 rad pos: -1.5,-71.5 parent: 2 type: Transform - - uid: 10448 + - uid: 10582 components: - pos: 8.5,-56.5 parent: 2 type: Transform - - uid: 10449 - components: - - pos: 62.5,-15.5 - parent: 2 - type: Transform - - uid: 10450 - components: - - pos: 62.5,-16.5 - parent: 2 - type: Transform - - uid: 10451 + - uid: 10583 components: - pos: 62.5,-17.5 parent: 2 type: Transform - - uid: 10452 + - uid: 10584 components: - pos: 62.5,-18.5 parent: 2 type: Transform - - uid: 10453 + - uid: 10585 components: - pos: 62.5,-19.5 parent: 2 type: Transform - - uid: 10454 + - uid: 10586 components: - pos: 62.5,-20.5 parent: 2 type: Transform - - uid: 10455 + - uid: 10587 components: - pos: 62.5,-21.5 parent: 2 type: Transform - - uid: 10456 + - uid: 10588 components: - pos: 62.5,-22.5 parent: 2 type: Transform - - uid: 10457 + - uid: 10589 components: - pos: 62.5,-23.5 parent: 2 type: Transform - - uid: 10458 + - uid: 10590 components: - pos: -46.5,-9.5 parent: 2 type: Transform - - uid: 10459 + - uid: 10591 components: - pos: -46.5,-10.5 parent: 2 type: Transform - - uid: 10460 + - uid: 10592 components: - pos: -46.5,-11.5 parent: 2 type: Transform - - uid: 10461 + - uid: 10593 components: - pos: -46.5,-12.5 parent: 2 type: Transform - - uid: 10462 + - uid: 10594 components: - pos: -46.5,-13.5 parent: 2 type: Transform - - uid: 10463 + - uid: 10595 components: - pos: -46.5,-14.5 parent: 2 type: Transform - - uid: 10464 + - uid: 10596 components: - pos: -46.5,-15.5 parent: 2 type: Transform - - uid: 10465 + - uid: 10597 components: - pos: -46.5,-16.5 parent: 2 type: Transform - - uid: 10466 + - uid: 10598 components: - rot: -1.5707963267948966 rad pos: -59.5,-12.5 parent: 2 type: Transform - - uid: 10467 + - uid: 10599 components: - rot: -1.5707963267948966 rad pos: -59.5,-13.5 parent: 2 type: Transform - - uid: 10468 + - uid: 10600 components: - rot: -1.5707963267948966 rad pos: -59.5,-14.5 parent: 2 type: Transform - - uid: 10469 + - uid: 10601 components: - rot: -1.5707963267948966 rad pos: -59.5,-15.5 parent: 2 type: Transform - - uid: 10470 + - uid: 10602 components: - rot: -1.5707963267948966 rad pos: -59.5,-16.5 parent: 2 type: Transform - - uid: 10471 + - uid: 10603 components: - rot: -1.5707963267948966 rad pos: -59.5,-17.5 parent: 2 type: Transform - - uid: 10472 + - uid: 10604 components: - rot: -1.5707963267948966 rad pos: -59.5,-18.5 parent: 2 type: Transform - - uid: 10473 + - uid: 10605 components: - rot: -1.5707963267948966 rad pos: -59.5,-19.5 parent: 2 type: Transform - - uid: 10474 + - uid: 10606 components: - rot: -1.5707963267948966 rad pos: -59.5,-20.5 parent: 2 type: Transform - - uid: 10475 + - uid: 10607 components: - rot: -1.5707963267948966 rad pos: -60.5,-20.5 parent: 2 type: Transform - - uid: 10476 + - uid: 10608 components: - rot: -1.5707963267948966 rad pos: -61.5,-20.5 parent: 2 type: Transform - - uid: 10477 + - uid: 10609 components: - rot: -1.5707963267948966 rad pos: -62.5,-20.5 parent: 2 type: Transform - - uid: 10478 + - uid: 10610 components: - rot: -1.5707963267948966 rad pos: -63.5,-20.5 parent: 2 type: Transform - - uid: 10479 + - uid: 10611 components: - rot: -1.5707963267948966 rad pos: -64.5,-20.5 parent: 2 type: Transform - - uid: 10480 + - uid: 10612 components: - rot: -1.5707963267948966 rad pos: -65.5,-20.5 parent: 2 type: Transform - - uid: 10481 + - uid: 10613 components: - rot: -1.5707963267948966 rad pos: -66.5,-20.5 parent: 2 type: Transform - - uid: 10482 + - uid: 10614 components: - rot: -1.5707963267948966 rad pos: -67.5,-20.5 parent: 2 type: Transform - - uid: 10483 + - uid: 10615 components: - rot: -1.5707963267948966 rad pos: -68.5,-20.5 parent: 2 type: Transform - - uid: 10484 + - uid: 10616 components: - rot: -1.5707963267948966 rad pos: -69.5,-20.5 parent: 2 type: Transform - - uid: 10485 + - uid: 10617 components: - rot: -1.5707963267948966 rad pos: -70.5,-20.5 parent: 2 type: Transform - - uid: 10486 + - uid: 10618 components: - rot: -1.5707963267948966 rad pos: -71.5,-20.5 parent: 2 type: Transform - - uid: 10487 + - uid: 10619 components: - rot: -1.5707963267948966 rad pos: -72.5,-20.5 parent: 2 type: Transform - - uid: 10488 + - uid: 10620 components: - rot: -1.5707963267948966 rad pos: -73.5,-20.5 parent: 2 type: Transform - - uid: 10489 + - uid: 10621 components: - rot: -1.5707963267948966 rad pos: -73.5,-19.5 parent: 2 type: Transform - - uid: 10490 + - uid: 10622 components: - rot: -1.5707963267948966 rad pos: -73.5,-18.5 parent: 2 type: Transform - - uid: 10491 + - uid: 10623 components: - rot: -1.5707963267948966 rad pos: -73.5,-17.5 parent: 2 type: Transform - - uid: 10492 + - uid: 10624 components: - rot: -1.5707963267948966 rad pos: -73.5,-16.5 parent: 2 type: Transform - - uid: 10493 + - uid: 10625 components: - rot: -1.5707963267948966 rad pos: -73.5,-15.5 parent: 2 type: Transform - - uid: 10494 + - uid: 10626 components: - rot: -1.5707963267948966 rad pos: -73.5,-14.5 parent: 2 type: Transform - - uid: 10495 + - uid: 10627 components: - rot: -1.5707963267948966 rad pos: -73.5,-13.5 parent: 2 type: Transform - - uid: 10496 + - uid: 10628 components: - rot: -1.5707963267948966 rad pos: -73.5,-12.5 parent: 2 type: Transform - - uid: 10497 + - uid: 10629 components: - rot: -1.5707963267948966 rad pos: -73.5,-11.5 parent: 2 type: Transform - - uid: 10498 + - uid: 10630 components: - rot: -1.5707963267948966 rad pos: -73.5,-10.5 parent: 2 type: Transform - - uid: 10499 + - uid: 10631 components: - rot: -1.5707963267948966 rad pos: -73.5,-9.5 parent: 2 type: Transform - - uid: 10500 + - uid: 10632 components: - rot: -1.5707963267948966 rad pos: -73.5,-8.5 parent: 2 type: Transform - - uid: 10501 + - uid: 10633 components: - rot: -1.5707963267948966 rad pos: -73.5,-7.5 parent: 2 type: Transform - - uid: 10502 + - uid: 10634 components: - rot: -1.5707963267948966 rad pos: -73.5,-6.5 parent: 2 type: Transform - - uid: 10503 + - uid: 10635 components: - rot: -1.5707963267948966 rad pos: -72.5,-6.5 parent: 2 type: Transform - - uid: 10504 + - uid: 10636 components: - rot: -1.5707963267948966 rad pos: -71.5,-6.5 parent: 2 type: Transform - - uid: 10505 + - uid: 10637 components: - rot: -1.5707963267948966 rad pos: -70.5,-6.5 parent: 2 type: Transform - - uid: 10506 + - uid: 10638 components: - rot: -1.5707963267948966 rad pos: -69.5,-6.5 parent: 2 type: Transform - - uid: 10507 + - uid: 10639 components: - rot: -1.5707963267948966 rad pos: -68.5,-6.5 parent: 2 type: Transform - - uid: 10508 + - uid: 10640 components: - rot: -1.5707963267948966 rad pos: -67.5,-6.5 parent: 2 type: Transform - - uid: 10509 + - uid: 10641 components: - rot: -1.5707963267948966 rad pos: -66.5,-6.5 parent: 2 type: Transform - - uid: 10510 + - uid: 10642 components: - rot: -1.5707963267948966 rad pos: -65.5,-6.5 parent: 2 type: Transform - - uid: 10511 + - uid: 10643 components: - rot: -1.5707963267948966 rad pos: -64.5,-6.5 parent: 2 type: Transform - - uid: 10512 + - uid: 10644 components: - rot: -1.5707963267948966 rad pos: -63.5,-6.5 parent: 2 type: Transform - - uid: 10513 + - uid: 10645 components: - rot: -1.5707963267948966 rad pos: -62.5,-6.5 parent: 2 type: Transform - - uid: 10514 + - uid: 10646 components: - rot: -1.5707963267948966 rad pos: -61.5,-6.5 parent: 2 type: Transform - - uid: 10515 + - uid: 10647 components: - rot: -1.5707963267948966 rad pos: -60.5,-6.5 parent: 2 type: Transform - - uid: 10516 + - uid: 10648 components: - rot: -1.5707963267948966 rad pos: -59.5,-6.5 parent: 2 type: Transform - - uid: 10517 + - uid: 10649 components: - rot: -1.5707963267948966 rad pos: -59.5,-7.5 parent: 2 type: Transform - - uid: 10518 + - uid: 10650 components: - rot: -1.5707963267948966 rad pos: -59.5,-8.5 parent: 2 type: Transform - - uid: 10519 + - uid: 10651 components: - rot: -1.5707963267948966 rad pos: -59.5,-9.5 parent: 2 type: Transform - - uid: 10520 + - uid: 10652 components: - rot: -1.5707963267948966 rad pos: -59.5,-10.5 parent: 2 type: Transform - - uid: 10521 + - uid: 10653 components: - rot: -1.5707963267948966 rad pos: -59.5,-11.5 parent: 2 type: Transform - - uid: 10522 + - uid: 10654 components: - rot: -1.5707963267948966 rad pos: -79.5,-1.5 parent: 2 type: Transform - - uid: 10523 + - uid: 10655 components: - rot: -1.5707963267948966 rad pos: -79.5,-2.5 parent: 2 type: Transform - - uid: 10524 + - uid: 10656 components: - rot: -1.5707963267948966 rad pos: -79.5,-3.5 parent: 2 type: Transform - - uid: 10525 + - uid: 10657 components: - rot: -1.5707963267948966 rad pos: -79.5,-4.5 parent: 2 type: Transform - - uid: 10526 + - uid: 10658 components: - rot: -1.5707963267948966 rad pos: -79.5,-5.5 parent: 2 type: Transform - - uid: 10527 + - uid: 10659 components: - rot: -1.5707963267948966 rad pos: -79.5,-6.5 parent: 2 type: Transform - - uid: 10528 + - uid: 10660 components: - rot: -1.5707963267948966 rad pos: -79.5,-7.5 parent: 2 type: Transform - - uid: 10529 + - uid: 10661 components: - rot: -1.5707963267948966 rad pos: -79.5,-8.5 parent: 2 type: Transform - - uid: 10530 + - uid: 10662 components: - rot: -1.5707963267948966 rad pos: -79.5,-9.5 parent: 2 type: Transform - - uid: 10531 + - uid: 10663 components: - rot: -1.5707963267948966 rad pos: -79.5,-10.5 parent: 2 type: Transform - - uid: 10532 + - uid: 10664 components: - rot: -1.5707963267948966 rad pos: -79.5,-11.5 parent: 2 type: Transform - - uid: 10533 + - uid: 10665 components: - rot: -1.5707963267948966 rad pos: -79.5,-15.5 parent: 2 type: Transform - - uid: 10534 + - uid: 10666 components: - rot: -1.5707963267948966 rad pos: -79.5,-19.5 parent: 2 type: Transform - - uid: 10535 + - uid: 10667 components: - rot: -1.5707963267948966 rad pos: -79.5,-22.5 parent: 2 type: Transform - - uid: 10536 + - uid: 10668 components: - rot: -1.5707963267948966 rad pos: -79.5,-26.5 parent: 2 type: Transform - - uid: 10537 + - uid: 10669 components: - rot: -1.5707963267948966 rad pos: -78.5,-1.5 parent: 2 type: Transform - - uid: 10538 + - uid: 10670 components: - rot: -1.5707963267948966 rad pos: -77.5,-1.5 parent: 2 type: Transform - - uid: 10539 + - uid: 10671 components: - rot: -1.5707963267948966 rad pos: -76.5,-1.5 parent: 2 type: Transform - - uid: 10540 + - uid: 10672 components: - rot: -1.5707963267948966 rad pos: -75.5,-1.5 parent: 2 type: Transform - - uid: 10541 + - uid: 10673 components: - rot: -1.5707963267948966 rad pos: -74.5,-1.5 parent: 2 type: Transform - - uid: 10542 + - uid: 10674 components: - rot: -1.5707963267948966 rad pos: -73.5,-1.5 parent: 2 type: Transform - - uid: 10543 + - uid: 10675 components: - rot: -1.5707963267948966 rad pos: -72.5,-1.5 parent: 2 type: Transform - - uid: 10544 + - uid: 10676 components: - rot: -1.5707963267948966 rad pos: -71.5,-1.5 parent: 2 type: Transform - - uid: 10545 + - uid: 10677 components: - rot: -1.5707963267948966 rad pos: -70.5,-1.5 parent: 2 type: Transform - - uid: 10546 + - uid: 10678 components: - rot: -1.5707963267948966 rad pos: -69.5,-1.5 parent: 2 type: Transform - - uid: 10547 + - uid: 10679 components: - rot: -1.5707963267948966 rad pos: -68.5,-1.5 parent: 2 type: Transform - - uid: 10548 + - uid: 10680 components: - rot: -1.5707963267948966 rad pos: -67.5,-1.5 parent: 2 type: Transform - - uid: 10549 + - uid: 10681 components: - rot: -1.5707963267948966 rad pos: -66.5,-1.5 parent: 2 type: Transform - - uid: 10550 + - uid: 10682 components: - rot: -1.5707963267948966 rad pos: -65.5,-1.5 parent: 2 type: Transform - - uid: 10551 + - uid: 10683 components: - rot: -1.5707963267948966 rad pos: -64.5,-1.5 parent: 2 type: Transform - - uid: 10552 + - uid: 10684 components: - rot: -1.5707963267948966 rad pos: -63.5,-1.5 parent: 2 type: Transform - - uid: 10553 + - uid: 10685 components: - rot: -1.5707963267948966 rad pos: -62.5,-1.5 parent: 2 type: Transform - - uid: 10554 + - uid: 10686 components: - rot: -1.5707963267948966 rad pos: -61.5,-1.5 parent: 2 type: Transform - - uid: 10555 + - uid: 10687 components: - rot: -1.5707963267948966 rad pos: -60.5,-1.5 parent: 2 type: Transform - - uid: 10556 + - uid: 10688 components: - rot: -1.5707963267948966 rad pos: -59.5,-1.5 parent: 2 type: Transform - - uid: 10557 + - uid: 10689 components: - rot: -1.5707963267948966 rad pos: -58.5,-1.5 parent: 2 type: Transform - - uid: 10558 + - uid: 10690 components: - pos: -25.5,-58.5 parent: 2 type: Transform - - uid: 10559 + - uid: 10691 components: - pos: -28.5,-66.5 parent: 2 type: Transform - - uid: 10560 + - uid: 10692 components: - pos: -29.5,-66.5 parent: 2 type: Transform - - uid: 10561 + - uid: 10693 components: - pos: -30.5,-66.5 parent: 2 type: Transform - - uid: 10562 + - uid: 10694 components: - pos: -31.5,-66.5 parent: 2 type: Transform - - uid: 10563 + - uid: 10695 components: - pos: -32.5,-66.5 parent: 2 type: Transform - - uid: 10564 + - uid: 10696 components: - pos: -33.5,-66.5 parent: 2 type: Transform - - uid: 10565 + - uid: 10697 components: - pos: -34.5,-66.5 parent: 2 type: Transform - - uid: 10566 + - uid: 10698 components: - pos: -35.5,-66.5 parent: 2 type: Transform - - uid: 10567 + - uid: 10699 components: - pos: -24.5,-51.5 parent: 2 type: Transform - - uid: 10568 + - uid: 10700 components: - pos: -25.5,-51.5 parent: 2 type: Transform - - uid: 10569 + - uid: 10701 components: - pos: -26.5,-51.5 parent: 2 type: Transform - - uid: 10570 + - uid: 10702 components: - pos: -27.5,-51.5 parent: 2 type: Transform - - uid: 10571 + - uid: 10703 components: - pos: -28.5,-51.5 parent: 2 type: Transform - - uid: 10572 + - uid: 10704 components: - pos: -29.5,-51.5 parent: 2 type: Transform - - uid: 10573 + - uid: 10705 components: - pos: -25.5,-41.5 parent: 2 type: Transform - - uid: 10574 + - uid: 10706 components: - pos: -25.5,-42.5 parent: 2 type: Transform - - uid: 10575 + - uid: 10707 components: - pos: -25.5,-43.5 parent: 2 type: Transform - - uid: 10576 + - uid: 10708 components: - pos: -25.5,-44.5 parent: 2 type: Transform - - uid: 10577 + - uid: 10709 components: - pos: -25.5,-45.5 parent: 2 type: Transform - - uid: 10578 + - uid: 10710 components: - pos: -25.5,-46.5 parent: 2 type: Transform - - uid: 10579 + - uid: 10711 components: - pos: -26.5,-46.5 parent: 2 type: Transform - - uid: 10580 + - uid: 10712 components: - pos: -25.5,-47.5 parent: 2 type: Transform - - uid: 10581 + - uid: 10713 components: - pos: -25.5,-47.5 parent: 2 type: Transform - - uid: 10582 + - uid: 10714 components: - pos: -26.5,-47.5 parent: 2 type: Transform - - uid: 10583 + - uid: 10715 components: - pos: -26.5,-39.5 parent: 2 type: Transform - - uid: 10584 + - uid: 10716 components: - pos: -26.5,-40.5 parent: 2 type: Transform - - uid: 10585 + - uid: 10717 components: - pos: -25.5,-40.5 parent: 2 type: Transform - - uid: 10586 + - uid: 10718 components: - pos: -25.5,-39.5 parent: 2 type: Transform - - uid: 10587 + - uid: 10719 components: - pos: -47.5,-67.5 parent: 2 type: Transform - - uid: 10588 + - uid: 10720 components: - pos: -47.5,-66.5 parent: 2 type: Transform - - uid: 10589 + - uid: 10721 components: - pos: -47.5,-68.5 parent: 2 type: Transform - - uid: 10590 + - uid: 10722 components: - pos: -46.5,-66.5 parent: 2 type: Transform - - uid: 10591 + - uid: 10723 components: - pos: -46.5,-67.5 parent: 2 type: Transform - - uid: 10592 + - uid: 10724 components: - pos: -46.5,-68.5 parent: 2 type: Transform - - uid: 10593 + - uid: 10725 components: - pos: 46.5,-11.5 parent: 2 type: Transform - - uid: 10594 + - uid: 10726 components: - pos: 45.5,-11.5 parent: 2 type: Transform - - uid: 10595 + - uid: 10727 components: - pos: 44.5,-11.5 parent: 2 type: Transform - - uid: 10596 + - uid: 10728 components: - pos: 43.5,-11.5 parent: 2 type: Transform - - uid: 10597 + - uid: 10729 components: - pos: 42.5,-11.5 parent: 2 type: Transform - - uid: 10598 + - uid: 10730 components: - pos: 40.5,-7.5 parent: 2 type: Transform - - uid: 10599 + - uid: 10731 components: - pos: 40.5,-8.5 parent: 2 type: Transform - - uid: 10600 + - uid: 10732 components: - pos: 40.5,-9.5 parent: 2 type: Transform - - uid: 10601 + - uid: 10733 components: - pos: 40.5,-10.5 parent: 2 type: Transform - - uid: 10602 + - uid: 10734 components: - pos: 40.5,-11.5 parent: 2 type: Transform - - uid: 10603 + - uid: 10735 components: - pos: 30.5,-8.5 parent: 2 type: Transform - - uid: 10604 + - uid: 10736 components: - pos: 31.5,-8.5 parent: 2 type: Transform - - uid: 10605 + - uid: 10737 components: - pos: 33.5,-8.5 parent: 2 type: Transform - - uid: 10606 + - uid: 10738 components: - pos: 34.5,-8.5 parent: 2 type: Transform - - uid: 10607 + - uid: 10739 components: - pos: 35.5,-8.5 parent: 2 type: Transform - - uid: 10608 + - uid: 10740 components: - pos: 30.5,-13.5 parent: 2 type: Transform - - uid: 10609 + - uid: 10741 components: - pos: 37.5,-8.5 parent: 2 type: Transform - - uid: 10610 + - uid: 10742 components: - pos: -46.5,-42.5 parent: 2 type: Transform - - uid: 10611 + - uid: 10743 components: - pos: -20.5,-52.5 parent: 2 type: Transform - - uid: 10613 + - uid: 10744 components: - pos: -37.5,-21.5 parent: 2 type: Transform - - uid: 10614 + - uid: 10745 components: - pos: -37.5,-22.5 parent: 2 type: Transform - - uid: 10615 + - uid: 10746 components: - pos: -37.5,-23.5 parent: 2 type: Transform - - uid: 10616 + - uid: 10747 components: - pos: -37.5,-24.5 parent: 2 type: Transform - - uid: 10617 + - uid: 10748 components: - pos: -43.5,-26.5 parent: 2 type: Transform - - uid: 10618 + - uid: 10749 components: - pos: -42.5,-26.5 parent: 2 type: Transform - - uid: 10619 + - uid: 10750 components: - pos: -41.5,-26.5 parent: 2 type: Transform - - uid: 10620 + - uid: 10751 components: - pos: -40.5,-26.5 parent: 2 type: Transform - - uid: 10621 + - uid: 10752 components: - pos: -39.5,-26.5 parent: 2 type: Transform - - uid: 10622 + - uid: 10753 components: - pos: -38.5,-26.5 parent: 2 type: Transform - - uid: 10623 + - uid: 10754 components: - pos: -48.5,-32.5 parent: 2 type: Transform - - uid: 10624 + - uid: 10755 components: - pos: -52.5,-32.5 parent: 2 type: Transform - - uid: 10625 + - uid: 10756 components: - pos: 69.5,3.5 parent: 2 type: Transform - - uid: 10626 + - uid: 10757 components: - pos: -2.5,29.5 parent: 2 type: Transform - - uid: 10627 + - uid: 10758 components: - rot: 3.141592653589793 rad pos: 14.5,32.5 parent: 2 type: Transform - - uid: 10628 + - uid: 10759 components: - rot: 3.141592653589793 rad pos: 13.5,32.5 parent: 2 type: Transform - - uid: 10629 + - uid: 10760 components: - rot: 3.141592653589793 rad pos: 2.5,32.5 parent: 2 type: Transform - - uid: 10630 + - uid: 10761 components: - rot: 3.141592653589793 rad pos: 19.5,25.5 parent: 2 type: Transform - - uid: 10631 + - uid: 10762 components: - rot: 3.141592653589793 rad pos: 18.5,25.5 parent: 2 type: Transform - - uid: 10632 + - uid: 10763 components: - rot: 3.141592653589793 rad pos: 17.5,25.5 parent: 2 type: Transform - - uid: 10633 + - uid: 10764 components: - rot: 3.141592653589793 rad pos: 16.5,25.5 parent: 2 type: Transform - - uid: 10634 + - uid: 10765 components: - rot: 3.141592653589793 rad pos: 15.5,25.5 parent: 2 type: Transform - - uid: 10635 + - uid: 10766 components: - rot: 3.141592653589793 rad pos: 14.5,25.5 parent: 2 type: Transform - - uid: 10636 + - uid: 10767 components: - rot: 3.141592653589793 rad pos: 13.5,25.5 parent: 2 type: Transform - - uid: 10637 + - uid: 10768 components: - rot: 3.141592653589793 rad pos: 16.5,27.5 parent: 2 type: Transform - - uid: 10638 + - uid: 10769 components: - rot: 3.141592653589793 rad pos: 16.5,26.5 parent: 2 type: Transform - - uid: 10639 + - uid: 10770 components: - rot: 3.141592653589793 rad pos: 9.5,24.5 parent: 2 type: Transform - - uid: 10640 + - uid: 10771 components: - rot: 3.141592653589793 rad pos: 8.5,24.5 parent: 2 type: Transform - - uid: 10641 + - uid: 10772 components: - rot: 3.141592653589793 rad pos: 7.5,24.5 parent: 2 type: Transform - - uid: 10642 + - uid: 10773 components: - rot: 3.141592653589793 rad pos: 6.5,24.5 parent: 2 type: Transform - - uid: 10643 + - uid: 10774 components: - rot: 3.141592653589793 rad pos: 5.5,24.5 parent: 2 type: Transform - - uid: 10644 + - uid: 10775 components: - rot: 3.141592653589793 rad pos: 4.5,24.5 parent: 2 type: Transform - - uid: 10645 + - uid: 10776 components: - rot: 3.141592653589793 rad pos: 3.5,24.5 parent: 2 type: Transform - - uid: 10646 + - uid: 10777 components: - rot: 3.141592653589793 rad pos: 2.5,24.5 parent: 2 type: Transform - - uid: 10647 + - uid: 10778 components: - rot: 3.141592653589793 rad pos: 1.5,24.5 parent: 2 type: Transform - - uid: 10648 + - uid: 10779 components: - rot: 3.141592653589793 rad pos: 0.5,24.5 parent: 2 type: Transform - - uid: 10649 + - uid: 10780 components: - rot: 3.141592653589793 rad pos: -3.5,23.5 parent: 2 type: Transform - - uid: 10650 + - uid: 10781 components: - rot: 3.141592653589793 rad pos: -4.5,23.5 parent: 2 type: Transform - - uid: 10651 + - uid: 10782 components: - rot: 3.141592653589793 rad pos: -5.5,23.5 parent: 2 type: Transform - - uid: 10652 + - uid: 10783 components: - rot: 3.141592653589793 rad pos: -6.5,23.5 parent: 2 type: Transform - - uid: 10653 + - uid: 10784 components: - rot: 3.141592653589793 rad pos: -7.5,23.5 parent: 2 type: Transform - - uid: 10654 + - uid: 10785 components: - pos: -11.5,18.5 parent: 2 type: Transform - - uid: 10655 + - uid: 10786 components: - pos: -11.5,15.5 parent: 2 type: Transform - - uid: 10656 + - uid: 10787 components: - pos: -12.5,24.5 parent: 2 type: Transform - - uid: 10657 + - uid: 10788 components: - rot: -1.5707963267948966 rad pos: 65.5,-24.5 parent: 2 type: Transform - - uid: 10658 + - uid: 10789 components: - rot: -1.5707963267948966 rad pos: 65.5,-23.5 parent: 2 type: Transform - - uid: 10659 + - uid: 10790 components: - rot: -1.5707963267948966 rad pos: 65.5,-22.5 parent: 2 type: Transform - - uid: 10660 + - uid: 10791 components: - rot: -1.5707963267948966 rad pos: 65.5,-21.5 parent: 2 type: Transform - - uid: 10661 + - uid: 10792 components: - pos: 67.5,-18.5 parent: 2 type: Transform - - uid: 10662 + - uid: 10793 components: - pos: -45.5,46.5 parent: 2 type: Transform - - uid: 10663 + - uid: 10794 components: - pos: -45.5,47.5 parent: 2 type: Transform - - uid: 10664 + - uid: 10795 components: - pos: -45.5,48.5 parent: 2 type: Transform - - uid: 10665 + - uid: 10796 components: - pos: -45.5,49.5 parent: 2 type: Transform - - uid: 10666 + - uid: 10797 components: - rot: -1.5707963267948966 rad pos: -41.5,46.5 parent: 2 type: Transform - - uid: 10667 + - uid: 10798 components: - rot: -1.5707963267948966 rad pos: -42.5,46.5 parent: 2 type: Transform - - uid: 10668 + - uid: 10799 components: - rot: -1.5707963267948966 rad pos: -43.5,46.5 parent: 2 type: Transform - - uid: 10669 + - uid: 10800 components: - rot: -1.5707963267948966 rad pos: -44.5,46.5 parent: 2 type: Transform - - uid: 10670 + - uid: 10801 components: - pos: -40.5,45.5 parent: 2 type: Transform - - uid: 10671 + - uid: 10802 components: - pos: -39.5,45.5 parent: 2 type: Transform - - uid: 10672 + - uid: 10803 components: - pos: -38.5,45.5 parent: 2 type: Transform - - uid: 10673 + - uid: 10804 components: - pos: -40.5,46.5 parent: 2 type: Transform - - uid: 10674 + - uid: 10805 components: - pos: -40.5,47.5 parent: 2 type: Transform - - uid: 10675 + - uid: 10806 components: - pos: -40.5,48.5 parent: 2 type: Transform - - uid: 10676 + - uid: 10807 components: - pos: -40.5,49.5 parent: 2 type: Transform - - uid: 10677 + - uid: 10808 components: - pos: -40.5,50.5 parent: 2 type: Transform - - uid: 10678 + - uid: 10809 components: - pos: -40.5,51.5 parent: 2 type: Transform - - uid: 10679 + - uid: 10810 components: - pos: -40.5,52.5 parent: 2 type: Transform - - uid: 10680 + - uid: 10811 components: - pos: -40.5,53.5 parent: 2 type: Transform - - uid: 10681 + - uid: 10812 components: - pos: -48.5,53.5 parent: 2 type: Transform - - uid: 10682 + - uid: 10813 components: - pos: -47.5,53.5 parent: 2 type: Transform - - uid: 10683 + - uid: 10814 components: - pos: -46.5,53.5 parent: 2 type: Transform - - uid: 10684 + - uid: 10815 components: - pos: -45.5,53.5 parent: 2 type: Transform - - uid: 10685 + - uid: 10816 components: - pos: -44.5,53.5 parent: 2 type: Transform - - uid: 10686 + - uid: 10817 components: - pos: -43.5,53.5 parent: 2 type: Transform - - uid: 10687 + - uid: 10818 components: - pos: -42.5,53.5 parent: 2 type: Transform - - uid: 10688 + - uid: 10819 components: - pos: -41.5,53.5 parent: 2 type: Transform - - uid: 10689 + - uid: 10820 components: - pos: -40.5,53.5 parent: 2 type: Transform - - uid: 10690 + - uid: 10821 components: - pos: -39.5,53.5 parent: 2 type: Transform - - uid: 10691 + - uid: 10822 components: - pos: -49.5,0.5 parent: 2 type: Transform - - uid: 10692 + - uid: 10823 components: - pos: -49.5,-0.5 parent: 2 type: Transform - - uid: 10693 + - uid: 10824 components: - pos: -49.5,-1.5 parent: 2 type: Transform - - uid: 10694 + - uid: 10825 components: - pos: -49.5,-2.5 parent: 2 type: Transform - - uid: 10695 + - uid: 10826 components: - pos: -49.5,-3.5 parent: 2 type: Transform - - uid: 10696 + - uid: 10827 components: - pos: -50.5,-3.5 parent: 2 type: Transform - - uid: 10697 + - uid: 10828 components: - pos: -51.5,-3.5 parent: 2 type: Transform - - uid: 10698 + - uid: 10829 components: - pos: -51.5,-2.5 parent: 2 type: Transform - - uid: 10699 + - uid: 10830 components: - pos: -51.5,-1.5 parent: 2 type: Transform - - uid: 10700 + - uid: 10831 components: - pos: -51.5,-0.5 parent: 2 type: Transform - - uid: 10701 + - uid: 10832 components: - pos: -51.5,0.5 parent: 2 type: Transform - - uid: 10702 + - uid: 10833 components: - pos: -51.5,1.5 parent: 2 type: Transform - - uid: 10703 + - uid: 10834 components: - pos: -41.5,-2.5 parent: 2 type: Transform - - uid: 10704 + - uid: 10835 components: - pos: -40.5,-2.5 parent: 2 type: Transform - - uid: 10705 + - uid: 10836 components: - pos: -39.5,-2.5 parent: 2 type: Transform - - uid: 10706 + - uid: 10837 components: - pos: -38.5,-2.5 parent: 2 type: Transform - - uid: 10707 + - uid: 10838 components: - pos: -37.5,-2.5 parent: 2 type: Transform - - uid: 10708 + - uid: 10839 components: - pos: -36.5,-2.5 parent: 2 type: Transform - - uid: 10709 + - uid: 10840 components: - rot: -1.5707963267948966 rad pos: -38.5,53.5 parent: 2 type: Transform - - uid: 10710 + - uid: 10841 components: - rot: -1.5707963267948966 rad pos: -37.5,53.5 parent: 2 type: Transform - - uid: 10711 + - uid: 10842 components: - rot: -1.5707963267948966 rad pos: -36.5,53.5 parent: 2 type: Transform - - uid: 10712 + - uid: 10843 components: - rot: -1.5707963267948966 rad pos: -35.5,53.5 parent: 2 type: Transform - - uid: 10713 + - uid: 10844 components: - rot: -1.5707963267948966 rad pos: -34.5,53.5 parent: 2 type: Transform - - uid: 10714 + - uid: 10845 components: - rot: -1.5707963267948966 rad pos: -33.5,53.5 parent: 2 type: Transform - - uid: 10715 + - uid: 10846 components: - rot: -1.5707963267948966 rad pos: -33.5,54.5 parent: 2 type: Transform - - uid: 10716 + - uid: 10847 components: - rot: -1.5707963267948966 rad pos: -33.5,55.5 parent: 2 type: Transform - - uid: 10717 + - uid: 10848 components: - rot: -1.5707963267948966 rad pos: -33.5,56.5 parent: 2 type: Transform - - uid: 10718 + - uid: 10849 components: - rot: -1.5707963267948966 rad pos: -33.5,57.5 parent: 2 type: Transform - - uid: 10719 + - uid: 10850 components: - rot: -1.5707963267948966 rad pos: -33.5,58.5 parent: 2 type: Transform - - uid: 10720 + - uid: 10851 components: - rot: -1.5707963267948966 rad pos: -33.5,59.5 parent: 2 type: Transform - - uid: 10721 + - uid: 10852 components: - rot: -1.5707963267948966 rad pos: -33.5,60.5 parent: 2 type: Transform - - uid: 10722 + - uid: 10853 components: - rot: -1.5707963267948966 rad pos: -33.5,61.5 parent: 2 type: Transform - - uid: 10723 + - uid: 10854 components: - rot: -1.5707963267948966 rad pos: -33.5,62.5 parent: 2 type: Transform - - uid: 10724 + - uid: 10855 components: - rot: -1.5707963267948966 rad pos: -33.5,63.5 parent: 2 type: Transform - - uid: 10725 + - uid: 10856 components: - rot: -1.5707963267948966 rad pos: -33.5,64.5 parent: 2 type: Transform - - uid: 10726 + - uid: 10857 components: - rot: -1.5707963267948966 rad pos: -33.5,65.5 parent: 2 type: Transform - - uid: 10727 + - uid: 10858 components: - rot: -1.5707963267948966 rad pos: -33.5,66.5 parent: 2 type: Transform - - uid: 10728 + - uid: 10859 components: - rot: -1.5707963267948966 rad pos: -33.5,67.5 parent: 2 type: Transform - - uid: 10729 + - uid: 10860 components: - rot: -1.5707963267948966 rad pos: -33.5,68.5 parent: 2 type: Transform - - uid: 10730 + - uid: 10861 components: - rot: -1.5707963267948966 rad pos: -33.5,69.5 parent: 2 type: Transform - - uid: 10731 + - uid: 10862 components: - rot: -1.5707963267948966 rad pos: -33.5,70.5 parent: 2 type: Transform - - uid: 10732 + - uid: 10863 components: - rot: -1.5707963267948966 rad pos: -33.5,71.5 parent: 2 type: Transform - - uid: 10733 + - uid: 10864 components: - rot: -1.5707963267948966 rad pos: -33.5,72.5 parent: 2 type: Transform - - uid: 10734 + - uid: 10865 components: - rot: -1.5707963267948966 rad pos: -34.5,72.5 parent: 2 type: Transform - - uid: 10735 + - uid: 10866 components: - rot: -1.5707963267948966 rad pos: -35.5,72.5 parent: 2 type: Transform - - uid: 10736 + - uid: 10867 components: - rot: -1.5707963267948966 rad pos: -36.5,72.5 parent: 2 type: Transform - - uid: 10737 + - uid: 10868 components: - rot: -1.5707963267948966 rad pos: -37.5,72.5 parent: 2 type: Transform - - uid: 10738 + - uid: 10869 components: - rot: -1.5707963267948966 rad pos: -38.5,72.5 parent: 2 type: Transform - - uid: 10739 + - uid: 10870 components: - rot: -1.5707963267948966 rad pos: -39.5,72.5 parent: 2 type: Transform - - uid: 10740 + - uid: 10871 components: - rot: -1.5707963267948966 rad pos: -40.5,72.5 parent: 2 type: Transform - - uid: 10741 + - uid: 10872 components: - rot: -1.5707963267948966 rad pos: -41.5,72.5 parent: 2 type: Transform - - uid: 10742 + - uid: 10873 components: - rot: -1.5707963267948966 rad pos: -42.5,72.5 parent: 2 type: Transform - - uid: 10743 + - uid: 10874 components: - rot: -1.5707963267948966 rad pos: -43.5,72.5 parent: 2 type: Transform - - uid: 10744 + - uid: 10875 components: - rot: -1.5707963267948966 rad pos: -44.5,72.5 parent: 2 type: Transform - - uid: 10745 + - uid: 10876 components: - rot: -1.5707963267948966 rad pos: -45.5,72.5 parent: 2 type: Transform - - uid: 10746 + - uid: 10877 components: - rot: -1.5707963267948966 rad pos: -46.5,72.5 parent: 2 type: Transform - - uid: 10747 + - uid: 10878 components: - rot: -1.5707963267948966 rad pos: -47.5,72.5 parent: 2 type: Transform - - uid: 10748 + - uid: 10879 components: - rot: -1.5707963267948966 rad pos: -48.5,72.5 parent: 2 type: Transform - - uid: 10749 + - uid: 10880 components: - rot: -1.5707963267948966 rad pos: -49.5,72.5 parent: 2 type: Transform - - uid: 10750 + - uid: 10881 components: - rot: -1.5707963267948966 rad pos: -50.5,72.5 parent: 2 type: Transform - - uid: 10751 + - uid: 10882 components: - rot: -1.5707963267948966 rad pos: -51.5,72.5 parent: 2 type: Transform - - uid: 10752 + - uid: 10883 components: - rot: -1.5707963267948966 rad pos: -52.5,72.5 parent: 2 type: Transform - - uid: 10753 + - uid: 10884 components: - rot: -1.5707963267948966 rad pos: -53.5,72.5 parent: 2 type: Transform - - uid: 10754 + - uid: 10885 components: - rot: -1.5707963267948966 rad pos: -54.5,72.5 parent: 2 type: Transform - - uid: 10755 + - uid: 10886 components: - rot: -1.5707963267948966 rad pos: -55.5,72.5 parent: 2 type: Transform - - uid: 10756 + - uid: 10887 components: - rot: -1.5707963267948966 rad pos: -56.5,72.5 parent: 2 type: Transform - - uid: 10757 + - uid: 10888 components: - rot: -1.5707963267948966 rad pos: -57.5,72.5 parent: 2 type: Transform - - uid: 10758 + - uid: 10889 components: - rot: -1.5707963267948966 rad pos: -58.5,72.5 parent: 2 type: Transform - - uid: 10759 + - uid: 10890 components: - rot: -1.5707963267948966 rad pos: -59.5,72.5 parent: 2 type: Transform - - uid: 10760 + - uid: 10891 components: - rot: -1.5707963267948966 rad pos: -60.5,72.5 parent: 2 type: Transform - - uid: 10761 + - uid: 10892 components: - rot: -1.5707963267948966 rad pos: -61.5,72.5 parent: 2 type: Transform - - uid: 10762 + - uid: 10893 components: - rot: -1.5707963267948966 rad pos: -61.5,71.5 parent: 2 type: Transform - - uid: 10763 + - uid: 10894 components: - rot: -1.5707963267948966 rad pos: -61.5,70.5 parent: 2 type: Transform - - uid: 10764 + - uid: 10895 components: - rot: -1.5707963267948966 rad pos: -61.5,69.5 parent: 2 type: Transform - - uid: 10765 + - uid: 10896 components: - rot: -1.5707963267948966 rad pos: -61.5,68.5 parent: 2 type: Transform - - uid: 10766 + - uid: 10897 components: - rot: -1.5707963267948966 rad pos: -61.5,67.5 parent: 2 type: Transform - - uid: 10767 + - uid: 10898 components: - rot: -1.5707963267948966 rad pos: -61.5,66.5 parent: 2 type: Transform - - uid: 10768 + - uid: 10899 components: - rot: -1.5707963267948966 rad pos: -61.5,65.5 parent: 2 type: Transform - - uid: 10769 + - uid: 10900 components: - rot: -1.5707963267948966 rad pos: -61.5,64.5 parent: 2 type: Transform - - uid: 10770 + - uid: 10901 components: - rot: -1.5707963267948966 rad pos: -61.5,63.5 parent: 2 type: Transform - - uid: 10771 + - uid: 10902 components: - rot: -1.5707963267948966 rad pos: -61.5,62.5 parent: 2 type: Transform - - uid: 10772 + - uid: 10903 components: - rot: -1.5707963267948966 rad pos: -61.5,61.5 parent: 2 type: Transform - - uid: 10773 + - uid: 10904 components: - rot: -1.5707963267948966 rad pos: -61.5,60.5 parent: 2 type: Transform - - uid: 10774 + - uid: 10905 components: - rot: -1.5707963267948966 rad pos: -61.5,59.5 parent: 2 type: Transform - - uid: 10775 + - uid: 10906 components: - rot: -1.5707963267948966 rad pos: -61.5,58.5 parent: 2 type: Transform - - uid: 10776 + - uid: 10907 components: - rot: -1.5707963267948966 rad pos: -61.5,57.5 parent: 2 type: Transform - - uid: 10777 + - uid: 10908 components: - rot: -1.5707963267948966 rad pos: -61.5,56.5 parent: 2 type: Transform - - uid: 10778 + - uid: 10909 components: - rot: 1.5707963267948966 rad pos: -53.5,53.5 parent: 2 type: Transform - - uid: 10779 + - uid: 10910 components: - rot: 1.5707963267948966 rad pos: -53.5,54.5 parent: 2 type: Transform - - uid: 10780 + - uid: 10911 components: - rot: 1.5707963267948966 rad pos: -53.5,55.5 parent: 2 type: Transform - - uid: 10781 + - uid: 10912 components: - rot: 1.5707963267948966 rad pos: -54.5,56.5 parent: 2 type: Transform - - uid: 10782 + - uid: 10913 components: - rot: 1.5707963267948966 rad pos: -56.5,56.5 parent: 2 type: Transform - - uid: 10783 + - uid: 10914 components: - rot: 1.5707963267948966 rad pos: -58.5,56.5 parent: 2 type: Transform - - uid: 10784 + - uid: 10915 components: - rot: 1.5707963267948966 rad pos: -60.5,56.5 parent: 2 type: Transform - - uid: 10785 + - uid: 10916 components: - rot: -1.5707963267948966 rad pos: -52.5,53.5 parent: 2 type: Transform - - uid: 10786 + - uid: 10917 components: - rot: -1.5707963267948966 rad pos: -51.5,53.5 parent: 2 type: Transform - - uid: 10787 + - uid: 10918 components: - rot: -1.5707963267948966 rad pos: -50.5,53.5 parent: 2 type: Transform - - uid: 10788 + - uid: 10919 components: - rot: -1.5707963267948966 rad pos: -49.5,53.5 parent: 2 type: Transform - - uid: 10789 + - uid: 10920 components: - pos: 12.5,-92.5 parent: 2 type: Transform - - uid: 10790 + - uid: 10921 components: - pos: 11.5,-99.5 parent: 2 type: Transform - - uid: 10791 + - uid: 10922 components: - rot: 3.141592653589793 rad pos: 1.5,-71.5 parent: 2 type: Transform - - uid: 10792 + - uid: 10923 components: - rot: 3.141592653589793 rad pos: 2.5,-67.5 parent: 2 type: Transform - - uid: 10793 + - uid: 10924 components: - rot: 3.141592653589793 rad pos: 3.5,-71.5 parent: 2 type: Transform - - uid: 10794 + - uid: 10925 components: - rot: 3.141592653589793 rad pos: 4.5,-71.5 parent: 2 type: Transform - - uid: 10795 + - uid: 10926 components: - rot: 3.141592653589793 rad pos: 2.5,-68.5 parent: 2 type: Transform - - uid: 10796 + - uid: 10927 components: - rot: -1.5707963267948966 rad pos: -79.5,-25.5 parent: 2 type: Transform - - uid: 10797 + - uid: 10928 components: - rot: -1.5707963267948966 rad pos: -79.5,-24.5 parent: 2 type: Transform - - uid: 10798 + - uid: 10929 components: - rot: -1.5707963267948966 rad pos: -79.5,-23.5 parent: 2 type: Transform - - uid: 10799 + - uid: 10930 components: - rot: -1.5707963267948966 rad pos: -79.5,-21.5 parent: 2 type: Transform - - uid: 10800 + - uid: 10931 components: - rot: -1.5707963267948966 rad pos: -79.5,-20.5 parent: 2 type: Transform - - uid: 10801 + - uid: 10932 components: - rot: -1.5707963267948966 rad pos: -79.5,-18.5 parent: 2 type: Transform - - uid: 10802 + - uid: 10933 components: - rot: -1.5707963267948966 rad pos: -79.5,-17.5 parent: 2 type: Transform - - uid: 10803 + - uid: 10934 components: - rot: -1.5707963267948966 rad pos: -79.5,-16.5 parent: 2 type: Transform - - uid: 10804 + - uid: 10935 components: - rot: -1.5707963267948966 rad pos: -79.5,-14.5 parent: 2 type: Transform - - uid: 10805 + - uid: 10936 components: - rot: -1.5707963267948966 rad pos: -79.5,-12.5 parent: 2 type: Transform - - uid: 10806 + - uid: 10937 components: - rot: -1.5707963267948966 rad pos: -79.5,-13.5 parent: 2 type: Transform - - uid: 10807 + - uid: 10938 components: - pos: -13.5,-8.5 parent: 2 type: Transform - - uid: 10808 + - uid: 10939 components: - rot: 3.141592653589793 rad pos: 23.5,-89.5 parent: 2 type: Transform - - uid: 10809 + - uid: 10940 components: - pos: 36.5,23.5 parent: 2 type: Transform - - uid: 10810 + - uid: 10941 components: - pos: 37.5,23.5 parent: 2 type: Transform - - uid: 10811 + - uid: 10942 components: - pos: 38.5,23.5 parent: 2 type: Transform - - uid: 10812 + - uid: 10943 components: - pos: 39.5,23.5 parent: 2 type: Transform - - uid: 10813 + - uid: 10944 components: - pos: 40.5,23.5 parent: 2 type: Transform - - uid: 10814 + - uid: 10945 components: - pos: 41.5,23.5 parent: 2 type: Transform - - uid: 10815 + - uid: 10946 components: - pos: 42.5,23.5 parent: 2 type: Transform - - uid: 10816 + - uid: 10947 components: - pos: 35.5,23.5 parent: 2 type: Transform - - uid: 10817 + - uid: 10948 components: - pos: 43.5,23.5 parent: 2 type: Transform - - uid: 10818 + - uid: 10949 components: - pos: 46.5,26.5 parent: 2 type: Transform - - uid: 10819 + - uid: 10950 components: - pos: 47.5,26.5 parent: 2 type: Transform - - uid: 10820 + - uid: 10951 components: - pos: 48.5,26.5 parent: 2 type: Transform - - uid: 10821 + - uid: 10952 components: - pos: 11.5,-97.5 parent: 2 type: Transform - - uid: 10822 + - uid: 10953 components: - pos: 11.5,-93.5 parent: 2 type: Transform - - uid: 10823 + - uid: 10954 components: - pos: 11.5,-94.5 parent: 2 type: Transform - - uid: 10824 + - uid: 10955 components: - pos: 11.5,-95.5 parent: 2 type: Transform - - uid: 10825 + - uid: 10956 components: - pos: 11.5,-98.5 parent: 2 type: Transform - - uid: 10826 + - uid: 10957 components: - pos: 11.5,-96.5 parent: 2 type: Transform - - uid: 10827 + - uid: 10958 components: - pos: 11.5,-104.5 parent: 2 type: Transform - - uid: 10828 + - uid: 10959 components: - pos: 11.5,-103.5 parent: 2 type: Transform - - uid: 10829 + - uid: 10960 components: - pos: 11.5,-102.5 parent: 2 type: Transform - - uid: 10830 + - uid: 10961 components: - pos: 11.5,-101.5 parent: 2 type: Transform - - uid: 10831 + - uid: 10962 components: - rot: 3.141592653589793 rad pos: 19.5,-53.5 parent: 2 type: Transform - - uid: 10832 + - uid: 10963 components: - rot: 3.141592653589793 rad pos: 18.5,-53.5 parent: 2 type: Transform - - uid: 10833 + - uid: 10964 components: - rot: 3.141592653589793 rad pos: 22.5,-53.5 parent: 2 type: Transform - - uid: 10834 + - uid: 10965 components: - pos: -79.5,-27.5 parent: 2 type: Transform - - uid: 10835 + - uid: 10966 components: - pos: -79.5,-28.5 parent: 2 type: Transform - - uid: 10836 + - uid: 10967 components: - pos: -79.5,-29.5 parent: 2 type: Transform - - uid: 10837 + - uid: 10968 components: - pos: -79.5,-30.5 parent: 2 type: Transform - - uid: 10838 + - uid: 10969 components: - pos: -79.5,-31.5 parent: 2 type: Transform - - uid: 10839 + - uid: 10970 components: - pos: -61.5,-55.5 parent: 2 type: Transform - - uid: 10840 + - uid: 10971 components: - pos: -18.5,-52.5 parent: 2 type: Transform - - uid: 10841 + - uid: 10972 components: - rot: -1.5707963267948966 rad pos: 14.5,-60.5 parent: 2 type: Transform - - uid: 10842 + - uid: 10973 components: - rot: -1.5707963267948966 rad pos: 14.5,-61.5 parent: 2 type: Transform - - uid: 10843 + - uid: 10974 components: - rot: -1.5707963267948966 rad pos: 14.5,-62.5 parent: 2 type: Transform - - uid: 10844 + - uid: 10975 components: - rot: -1.5707963267948966 rad pos: 14.5,-63.5 parent: 2 type: Transform - - uid: 10845 + - uid: 10976 components: - rot: -1.5707963267948966 rad pos: 14.5,-64.5 parent: 2 type: Transform - - uid: 10846 + - uid: 10977 components: - rot: -1.5707963267948966 rad pos: 8.5,-67.5 parent: 2 type: Transform - - uid: 10847 + - uid: 10978 components: - rot: -1.5707963267948966 rad pos: 9.5,-67.5 parent: 2 type: Transform - - uid: 10848 + - uid: 10979 components: - rot: -1.5707963267948966 rad pos: 10.5,-67.5 parent: 2 type: Transform - - uid: 10849 + - uid: 10980 components: - rot: -1.5707963267948966 rad pos: 11.5,-67.5 parent: 2 type: Transform - - uid: 10850 + - uid: 10981 components: - rot: -1.5707963267948966 rad pos: 12.5,-67.5 parent: 2 type: Transform - - uid: 10851 + - uid: 10982 components: - rot: -1.5707963267948966 rad pos: 13.5,-67.5 parent: 2 type: Transform - - uid: 10852 + - uid: 10983 components: - rot: -1.5707963267948966 rad pos: 14.5,-67.5 parent: 2 type: Transform - - uid: 10853 + - uid: 10984 components: - rot: 1.5707963267948966 rad pos: 42.5,-13.5 parent: 2 type: Transform - - uid: 10854 + - uid: 10985 components: - rot: 1.5707963267948966 rad pos: 43.5,-13.5 parent: 2 type: Transform - - uid: 10855 + - uid: 10986 components: - rot: 1.5707963267948966 rad pos: 44.5,-13.5 parent: 2 type: Transform - - uid: 10856 + - uid: 10987 components: - rot: 1.5707963267948966 rad pos: 45.5,-13.5 parent: 2 type: Transform - - uid: 10857 + - uid: 10988 components: - rot: 1.5707963267948966 rad pos: 46.5,-13.5 parent: 2 type: Transform - - uid: 10858 + - uid: 10989 components: - rot: 1.5707963267948966 rad pos: 47.5,-13.5 parent: 2 type: Transform - - uid: 10859 + - uid: 10990 components: - rot: 1.5707963267948966 rad pos: 48.5,-13.5 parent: 2 type: Transform - - uid: 10860 + - uid: 10991 components: - pos: 49.5,26.5 parent: 2 type: Transform - - uid: 10861 + - uid: 10992 components: - pos: 50.5,26.5 parent: 2 type: Transform - - uid: 10862 + - uid: 10993 components: - pos: 51.5,26.5 parent: 2 type: Transform - - uid: 10863 + - uid: 10994 components: - pos: 52.5,26.5 parent: 2 type: Transform - - uid: 10864 + - uid: 10995 components: - pos: 53.5,26.5 parent: 2 type: Transform - - uid: 10865 + - uid: 10996 components: - rot: 3.141592653589793 rad pos: 49.5,38.5 parent: 2 type: Transform - - uid: 10866 + - uid: 10997 components: - rot: 3.141592653589793 rad pos: 49.5,37.5 parent: 2 type: Transform - - uid: 10867 + - uid: 10998 components: - rot: 3.141592653589793 rad pos: 49.5,36.5 parent: 2 type: Transform - - uid: 10868 + - uid: 10999 components: - rot: 3.141592653589793 rad pos: 49.5,35.5 parent: 2 type: Transform - - uid: 10869 + - uid: 11000 components: - rot: 3.141592653589793 rad pos: 48.5,35.5 parent: 2 type: Transform - - uid: 10870 + - uid: 11001 components: - rot: 3.141592653589793 rad pos: 47.5,35.5 parent: 2 type: Transform - - uid: 10871 + - uid: 11002 components: - rot: 3.141592653589793 rad pos: 52.5,31.5 parent: 2 type: Transform - - uid: 10872 + - uid: 11003 components: - rot: 3.141592653589793 rad pos: 52.5,32.5 parent: 2 type: Transform - - uid: 10873 + - uid: 11004 components: - rot: 3.141592653589793 rad pos: 52.5,33.5 parent: 2 type: Transform - - uid: 10874 + - uid: 11005 components: - pos: 81.5,36.5 parent: 2 type: Transform - - uid: 10875 + - uid: 11006 components: - pos: 80.5,36.5 parent: 2 type: Transform - - uid: 10876 + - uid: 11007 components: - pos: 86.5,36.5 parent: 2 type: Transform - - uid: 10877 + - uid: 11008 components: - pos: 87.5,36.5 parent: 2 type: Transform - - uid: 10878 + - uid: 11009 components: - pos: 79.5,36.5 parent: 2 type: Transform - - uid: 10879 + - uid: 11010 components: - pos: 78.5,36.5 parent: 2 type: Transform - - uid: 10880 + - uid: 11011 components: - pos: 88.5,36.5 parent: 2 type: Transform - - uid: 10881 + - uid: 11012 components: - pos: 82.5,36.5 parent: 2 type: Transform - - uid: 10882 + - uid: 11013 components: - pos: -24.5,47.5 parent: 2 type: Transform - - uid: 10883 + - uid: 11014 components: - pos: -24.5,46.5 parent: 2 type: Transform - - uid: 10884 + - uid: 11015 components: - pos: -24.5,45.5 parent: 2 type: Transform - - uid: 10885 + - uid: 11016 components: - pos: -24.5,44.5 parent: 2 type: Transform - - uid: 10886 + - uid: 11017 components: - pos: -24.5,43.5 parent: 2 type: Transform - - uid: 10887 + - uid: 11018 components: - pos: -24.5,42.5 parent: 2 type: Transform - - uid: 10888 + - uid: 11019 components: - pos: -24.5,41.5 parent: 2 type: Transform - - uid: 10889 + - uid: 11020 components: - pos: -24.5,40.5 parent: 2 type: Transform - - uid: 10890 + - uid: 11021 components: - pos: -24.5,39.5 parent: 2 type: Transform - - uid: 10891 + - uid: 11022 components: - pos: -24.5,38.5 parent: 2 type: Transform - - uid: 10892 + - uid: 11023 components: - pos: -31.5,39.5 parent: 2 type: Transform - - uid: 10893 + - uid: 11024 components: - pos: -32.5,39.5 parent: 2 type: Transform - - uid: 10894 + - uid: 11025 components: - pos: -33.5,39.5 parent: 2 type: Transform - - uid: 10895 + - uid: 11026 components: - pos: -34.5,39.5 parent: 2 type: Transform - - uid: 10896 + - uid: 11027 components: - pos: -35.5,39.5 parent: 2 type: Transform - - uid: 10897 + - uid: 11028 components: - pos: -36.5,39.5 parent: 2 type: Transform - - uid: 10898 + - uid: 11029 components: - pos: -39.5,39.5 parent: 2 type: Transform - - uid: 10899 + - uid: 11030 components: - pos: -40.5,39.5 parent: 2 type: Transform - - uid: 10900 + - uid: 11031 components: - pos: -41.5,39.5 parent: 2 type: Transform - - uid: 10901 + - uid: 11032 components: - pos: -42.5,39.5 parent: 2 type: Transform - - uid: 10902 + - uid: 11033 components: - pos: -43.5,39.5 parent: 2 type: Transform - - uid: 10903 + - uid: 11034 components: - pos: -2.5,28.5 parent: 2 type: Transform - - uid: 10904 + - uid: 11035 components: - pos: -2.5,27.5 parent: 2 type: Transform - - uid: 10905 + - uid: 11036 components: - pos: -2.5,26.5 parent: 2 type: Transform - - uid: 10906 + - uid: 11037 components: - pos: -2.5,25.5 parent: 2 type: Transform - - uid: 10907 + - uid: 11038 components: - pos: -12.5,26.5 parent: 2 type: Transform - - uid: 10908 + - uid: 11039 components: - pos: -11.5,26.5 parent: 2 type: Transform - - uid: 10909 + - uid: 11040 components: - pos: -10.5,26.5 parent: 2 type: Transform - - uid: 10910 + - uid: 11041 components: - pos: -10.5,24.5 parent: 2 type: Transform - - uid: 10911 + - uid: 11042 components: - pos: -37.5,45.5 parent: 2 type: Transform - - uid: 10912 + - uid: 11043 components: - pos: -37.5,44.5 parent: 2 type: Transform - - uid: 10913 + - uid: 11044 components: - pos: -17.5,58.5 parent: 2 type: Transform - - uid: 10914 + - uid: 11045 components: - pos: -17.5,57.5 parent: 2 type: Transform - - uid: 10915 + - uid: 11046 components: - pos: -17.5,56.5 parent: 2 type: Transform - - uid: 10916 + - uid: 11047 components: - pos: -17.5,55.5 parent: 2 type: Transform - - uid: 10917 + - uid: 11048 components: - pos: -17.5,54.5 parent: 2 type: Transform - - uid: 10918 + - uid: 11049 components: - pos: -17.5,53.5 parent: 2 type: Transform - - uid: 10919 + - uid: 11050 components: - rot: 1.5707963267948966 rad pos: -11.5,24.5 parent: 2 type: Transform - - uid: 10920 + - uid: 11051 components: - rot: 3.141592653589793 rad pos: 66.5,36.5 parent: 2 type: Transform - - uid: 10921 + - uid: 11052 components: - rot: 3.141592653589793 rad pos: 65.5,36.5 parent: 2 type: Transform - - uid: 10922 + - uid: 11053 components: - rot: 3.141592653589793 rad pos: 64.5,36.5 parent: 2 type: Transform - - uid: 10923 + - uid: 11054 components: - rot: 3.141592653589793 rad pos: 63.5,36.5 parent: 2 type: Transform - - uid: 10924 + - uid: 11055 components: - rot: 3.141592653589793 rad pos: 63.5,35.5 parent: 2 type: Transform - - uid: 10925 + - uid: 11056 components: - rot: 3.141592653589793 rad pos: 63.5,34.5 parent: 2 type: Transform - - uid: 10926 + - uid: 11057 components: - rot: 3.141592653589793 rad pos: 63.5,33.5 parent: 2 type: Transform - - uid: 10927 + - uid: 11058 components: - pos: 83.5,36.5 parent: 2 type: Transform - - uid: 10928 + - uid: 11059 components: - pos: 84.5,36.5 parent: 2 type: Transform - - uid: 10929 + - uid: 11060 components: - pos: 85.5,36.5 parent: 2 type: Transform - - uid: 10930 + - uid: 11061 components: - pos: 89.5,36.5 parent: 2 type: Transform - - uid: 10931 + - uid: 11062 components: - pos: 90.5,36.5 parent: 2 type: Transform - - uid: 10932 + - uid: 11063 components: - pos: -22.5,27.5 parent: 2 type: Transform - - uid: 10933 + - uid: 11064 components: - pos: -23.5,27.5 parent: 2 type: Transform - - uid: 10934 + - uid: 11065 components: - pos: -24.5,27.5 parent: 2 type: Transform - - uid: 10935 + - uid: 11066 components: - pos: -25.5,27.5 parent: 2 type: Transform - - uid: 10936 + - uid: 11067 components: - pos: -26.5,27.5 parent: 2 type: Transform - - uid: 10937 + - uid: 11068 components: - pos: -27.5,27.5 parent: 2 type: Transform - - uid: 10938 + - uid: 11069 components: - pos: -28.5,27.5 parent: 2 type: Transform - - uid: 10939 + - uid: 11070 components: - pos: 29.5,55.5 parent: 2 type: Transform - - uid: 10940 + - uid: 11071 components: - pos: 29.5,56.5 parent: 2 type: Transform - - uid: 10941 + - uid: 11072 components: - pos: 29.5,57.5 parent: 2 type: Transform - - uid: 10942 + - uid: 11073 components: - pos: 29.5,58.5 parent: 2 type: Transform - - uid: 10943 + - uid: 11074 components: - pos: 29.5,59.5 parent: 2 type: Transform - - uid: 10944 + - uid: 11075 components: - pos: 29.5,60.5 parent: 2 type: Transform - - uid: 10945 + - uid: 11076 components: - pos: 29.5,61.5 parent: 2 type: Transform - - uid: 10946 + - uid: 11077 components: - pos: 29.5,62.5 parent: 2 type: Transform - - uid: 10947 + - uid: 11078 components: - pos: 28.5,62.5 parent: 2 type: Transform - - uid: 10948 + - uid: 11079 components: - pos: 27.5,62.5 parent: 2 type: Transform - - uid: 10949 + - uid: 11080 components: - pos: 26.5,62.5 parent: 2 type: Transform - - uid: 10950 + - uid: 11081 components: - pos: 25.5,62.5 parent: 2 type: Transform - - uid: 10951 + - uid: 11082 components: - pos: 24.5,62.5 parent: 2 type: Transform - - uid: 10952 + - uid: 11083 components: - pos: 23.5,62.5 parent: 2 type: Transform - - uid: 10953 + - uid: 11084 components: - pos: 22.5,62.5 parent: 2 type: Transform - - uid: 10954 + - uid: 11085 components: - pos: 21.5,62.5 parent: 2 type: Transform - - uid: 10955 + - uid: 11086 components: - pos: 20.5,62.5 parent: 2 type: Transform - - uid: 10956 + - uid: 11087 components: - pos: 19.5,62.5 parent: 2 type: Transform - - uid: 10957 + - uid: 11088 components: - pos: 18.5,62.5 parent: 2 type: Transform - - uid: 10958 + - uid: 11089 components: - pos: 17.5,62.5 parent: 2 type: Transform - - uid: 10959 + - uid: 11090 components: - pos: 16.5,62.5 parent: 2 type: Transform - - uid: 10960 + - uid: 11091 components: - pos: 15.5,62.5 parent: 2 type: Transform - - uid: 10961 + - uid: 11092 components: - pos: 14.5,62.5 parent: 2 type: Transform - - uid: 10962 + - uid: 11093 components: - pos: 13.5,62.5 parent: 2 type: Transform - - uid: 10963 + - uid: 11094 components: - pos: 12.5,62.5 parent: 2 type: Transform - - uid: 10964 + - uid: 11095 components: - pos: 11.5,62.5 parent: 2 type: Transform - - uid: 10965 + - uid: 11096 components: - pos: 10.5,62.5 parent: 2 type: Transform - - uid: 10966 + - uid: 11097 components: - pos: 9.5,62.5 parent: 2 type: Transform - - uid: 10967 + - uid: 11098 components: - pos: 8.5,62.5 parent: 2 type: Transform - - uid: 10968 + - uid: 11099 components: - pos: 7.5,62.5 parent: 2 type: Transform - - uid: 10969 + - uid: 11100 components: - pos: 7.5,63.5 parent: 2 type: Transform - - uid: 10970 + - uid: 11101 components: - pos: 7.5,64.5 parent: 2 type: Transform - - uid: 10971 + - uid: 11102 components: - pos: 7.5,65.5 parent: 2 type: Transform - - uid: 10972 + - uid: 11103 components: - pos: 7.5,66.5 parent: 2 type: Transform - - uid: 10973 + - uid: 11104 components: - pos: 7.5,67.5 parent: 2 type: Transform - - uid: 10974 + - uid: 11105 components: - pos: 7.5,68.5 parent: 2 type: Transform - - uid: 10975 + - uid: 11106 components: - pos: 7.5,69.5 parent: 2 type: Transform - - uid: 10976 + - uid: 11107 components: - pos: 7.5,70.5 parent: 2 type: Transform - - uid: 10977 + - uid: 11108 components: - pos: 7.5,71.5 parent: 2 type: Transform - - uid: 10978 + - uid: 11109 components: - pos: 7.5,72.5 parent: 2 type: Transform - - uid: 10979 + - uid: 11110 components: - pos: 7.5,73.5 parent: 2 type: Transform - - uid: 10980 + - uid: 11111 components: - pos: 7.5,74.5 parent: 2 type: Transform - - uid: 10981 + - uid: 11112 components: - pos: 7.5,75.5 parent: 2 type: Transform - - uid: 10982 + - uid: 11113 components: - pos: 6.5,75.5 parent: 2 type: Transform - - uid: 10983 + - uid: 11114 components: - pos: 5.5,75.5 parent: 2 type: Transform - - uid: 10984 + - uid: 11115 components: - pos: 4.5,75.5 parent: 2 type: Transform - - uid: 10985 + - uid: 11116 components: - pos: 3.5,75.5 parent: 2 type: Transform - - uid: 10986 + - uid: 11117 components: - pos: 2.5,75.5 parent: 2 type: Transform - - uid: 10987 + - uid: 11118 components: - pos: 1.5,75.5 parent: 2 type: Transform - - uid: 10988 + - uid: 11119 components: - pos: 0.5,75.5 parent: 2 type: Transform - - uid: 10989 + - uid: 11120 components: - pos: -0.5,75.5 parent: 2 type: Transform - - uid: 10990 + - uid: 11121 components: - pos: -1.5,75.5 parent: 2 type: Transform - - uid: 10991 + - uid: 11122 components: - pos: -2.5,75.5 parent: 2 type: Transform - - uid: 10992 + - uid: 11123 components: - pos: -3.5,75.5 parent: 2 type: Transform - - uid: 10993 + - uid: 11124 components: - pos: -4.5,75.5 parent: 2 type: Transform - - uid: 10994 + - uid: 11125 components: - pos: -5.5,75.5 parent: 2 type: Transform - - uid: 10995 + - uid: 11126 components: - pos: -6.5,75.5 parent: 2 type: Transform - - uid: 10996 + - uid: 11127 components: - pos: -7.5,75.5 parent: 2 type: Transform - - uid: 10997 + - uid: 11128 components: - pos: -8.5,75.5 parent: 2 type: Transform - - uid: 10998 + - uid: 11129 components: - pos: -9.5,75.5 parent: 2 type: Transform - - uid: 10999 + - uid: 11130 components: - pos: -10.5,75.5 parent: 2 type: Transform - - uid: 11000 + - uid: 11131 components: - pos: 1.5,-92.5 parent: 2 type: Transform - - uid: 11001 + - uid: 11132 components: - pos: 0.5,-92.5 parent: 2 type: Transform - - uid: 11002 + - uid: 11133 components: - pos: -0.5,-92.5 parent: 2 type: Transform - - uid: 11003 + - uid: 11134 components: - pos: -0.5,-93.5 parent: 2 type: Transform - - uid: 11004 + - uid: 11135 components: - pos: -0.5,-94.5 parent: 2 type: Transform - - uid: 11005 + - uid: 11136 components: - pos: -0.5,-95.5 parent: 2 type: Transform - - uid: 11006 + - uid: 11137 components: - pos: -0.5,-96.5 parent: 2 type: Transform - - uid: 11007 + - uid: 11138 components: - pos: -0.5,-97.5 parent: 2 type: Transform - - uid: 11008 + - uid: 11139 components: - pos: -0.5,-98.5 parent: 2 type: Transform - - uid: 11009 + - uid: 11140 components: - pos: -0.5,-99.5 parent: 2 type: Transform - - uid: 11010 + - uid: 11141 components: - pos: -0.5,-100.5 parent: 2 type: Transform - - uid: 11011 + - uid: 11142 components: - pos: -0.5,-101.5 parent: 2 type: Transform - - uid: 11012 + - uid: 11143 components: - pos: -0.5,-102.5 parent: 2 type: Transform - - uid: 11013 + - uid: 11144 components: - pos: -0.5,-103.5 parent: 2 type: Transform - - uid: 11014 + - uid: 11145 components: - pos: -0.5,-104.5 parent: 2 type: Transform - - uid: 11015 + - uid: 11146 components: - pos: -0.5,-105.5 parent: 2 type: Transform - - uid: 11016 + - uid: 11147 components: - pos: -28.5,-105.5 parent: 2 type: Transform - - uid: 11017 + - uid: 11148 components: - pos: -29.5,-105.5 parent: 2 type: Transform - - uid: 11018 + - uid: 11149 components: - pos: -30.5,-105.5 parent: 2 type: Transform - - uid: 11019 + - uid: 11150 components: - pos: -31.5,-105.5 parent: 2 type: Transform - - uid: 11020 + - uid: 11151 components: - pos: -32.5,-105.5 parent: 2 type: Transform - - uid: 11021 + - uid: 11152 components: - pos: -33.5,-105.5 parent: 2 type: Transform - - uid: 11022 + - uid: 11153 components: - pos: -34.5,-105.5 parent: 2 type: Transform - - uid: 11023 + - uid: 11154 components: - pos: -35.5,-105.5 parent: 2 type: Transform - - uid: 11024 + - uid: 11155 components: - pos: -1.5,-105.5 parent: 2 type: Transform - - uid: 11025 + - uid: 11156 components: - pos: -2.5,-105.5 parent: 2 type: Transform - - uid: 11026 + - uid: 11157 components: - pos: -3.5,-105.5 parent: 2 type: Transform - - uid: 11027 + - uid: 11158 components: - pos: -4.5,-105.5 parent: 2 type: Transform - - uid: 11028 + - uid: 11159 components: - pos: -5.5,-105.5 parent: 2 type: Transform - - uid: 11029 + - uid: 11160 components: - pos: -6.5,-105.5 parent: 2 type: Transform - - uid: 11030 + - uid: 11161 components: - pos: -7.5,-105.5 parent: 2 type: Transform - - uid: 11031 + - uid: 11162 components: - pos: -8.5,-105.5 parent: 2 type: Transform - - uid: 11032 + - uid: 11163 components: - pos: -9.5,-105.5 parent: 2 type: Transform - - uid: 11033 + - uid: 11164 components: - pos: -10.5,-105.5 parent: 2 type: Transform - - uid: 11034 + - uid: 11165 components: - pos: -11.5,-105.5 parent: 2 type: Transform - - uid: 11035 + - uid: 11166 components: - pos: -12.5,-105.5 parent: 2 type: Transform - - uid: 11036 + - uid: 11167 components: - pos: -13.5,-105.5 parent: 2 type: Transform - - uid: 11037 + - uid: 11168 components: - pos: -14.5,-105.5 parent: 2 type: Transform - - uid: 11038 + - uid: 11169 components: - pos: -15.5,-105.5 parent: 2 type: Transform - - uid: 11039 + - uid: 11170 components: - pos: -16.5,-105.5 parent: 2 type: Transform - - uid: 11040 + - uid: 11171 components: - pos: -17.5,-105.5 parent: 2 type: Transform - - uid: 11041 + - uid: 11172 components: - pos: -18.5,-105.5 parent: 2 type: Transform - - uid: 11042 + - uid: 11173 components: - pos: -19.5,-105.5 parent: 2 type: Transform - - uid: 11043 + - uid: 11174 components: - pos: -20.5,-105.5 parent: 2 type: Transform - - uid: 11044 + - uid: 11175 components: - pos: -21.5,-105.5 parent: 2 type: Transform - - uid: 11045 + - uid: 11176 components: - pos: -22.5,-105.5 parent: 2 type: Transform - - uid: 11046 + - uid: 11177 components: - pos: -23.5,-105.5 parent: 2 type: Transform - - uid: 11047 + - uid: 11178 components: - pos: -24.5,-105.5 parent: 2 type: Transform - - uid: 11048 + - uid: 11179 components: - pos: -25.5,-105.5 parent: 2 type: Transform - - uid: 11049 + - uid: 11180 components: - pos: -26.5,-105.5 parent: 2 type: Transform - - uid: 11050 + - uid: 11181 components: - pos: -27.5,-105.5 parent: 2 type: Transform - - uid: 11051 + - uid: 11182 components: - pos: -35.5,-104.5 parent: 2 type: Transform - - uid: 11052 + - uid: 11183 components: - pos: -35.5,-103.5 parent: 2 type: Transform - - uid: 11053 + - uid: 11184 components: - pos: -35.5,-102.5 parent: 2 type: Transform - - uid: 11054 + - uid: 11185 components: - pos: 67.5,-17.5 parent: 2 type: Transform - - uid: 11055 + - uid: 11186 components: - pos: -79.5,-32.5 parent: 2 type: Transform - - uid: 11056 + - uid: 11187 components: - pos: -78.5,-31.5 parent: 2 type: Transform - - uid: 11057 + - uid: 11188 components: - pos: -74.5,-48.5 parent: 2 type: Transform - - uid: 11058 + - uid: 11189 components: - pos: -73.5,-48.5 parent: 2 type: Transform - - uid: 11059 + - uid: 11190 components: - pos: -72.5,-48.5 parent: 2 type: Transform - - uid: 11060 + - uid: 11191 components: - pos: -71.5,-48.5 parent: 2 type: Transform - - uid: 11061 + - uid: 11192 components: - pos: -70.5,-48.5 parent: 2 type: Transform - - uid: 11062 + - uid: 11193 components: - pos: -69.5,-48.5 parent: 2 type: Transform - - uid: 11063 + - uid: 11194 components: - pos: -68.5,-48.5 parent: 2 type: Transform - - uid: 11064 + - uid: 11195 components: - pos: -67.5,-48.5 parent: 2 type: Transform - - uid: 11065 + - uid: 11196 components: - pos: -66.5,-48.5 parent: 2 type: Transform - - uid: 11066 + - uid: 11197 components: - pos: -65.5,-48.5 parent: 2 type: Transform - - uid: 11067 + - uid: 11198 components: - pos: -64.5,-48.5 parent: 2 type: Transform - - uid: 11068 + - uid: 11199 components: - pos: -63.5,-48.5 parent: 2 type: Transform - - uid: 11069 + - uid: 11200 components: - pos: -62.5,-48.5 parent: 2 type: Transform - - uid: 11070 + - uid: 11201 components: - rot: 3.141592653589793 rad pos: 55.5,-74.5 parent: 2 type: Transform - - uid: 11071 + - uid: 11202 components: - rot: 3.141592653589793 rad pos: 79.5,-27.5 parent: 2 type: Transform - - uid: 11072 + - uid: 11203 components: - rot: 3.141592653589793 rad pos: 79.5,-28.5 parent: 2 type: Transform - - uid: 11073 + - uid: 11204 components: - pos: 79.5,-29.5 parent: 2 type: Transform - - uid: 11074 + - uid: 11205 components: - pos: 79.5,-30.5 parent: 2 type: Transform - - uid: 11075 + - uid: 11206 components: - pos: 79.5,-31.5 parent: 2 type: Transform - - uid: 11076 + - uid: 11207 components: - pos: 79.5,-40.5 parent: 2 type: Transform - - uid: 11077 + - uid: 11208 components: - pos: 79.5,-39.5 parent: 2 type: Transform - - uid: 11078 + - uid: 11209 components: - rot: 1.5707963267948966 rad pos: -61.5,-56.5 parent: 2 type: Transform - - uid: 11079 + - uid: 11210 components: - rot: 1.5707963267948966 rad pos: -61.5,-57.5 parent: 2 type: Transform - - uid: 11080 + - uid: 11211 components: - rot: 1.5707963267948966 rad pos: -60.5,-57.5 parent: 2 type: Transform - - uid: 11081 + - uid: 11212 components: - rot: 1.5707963267948966 rad pos: -59.5,-57.5 parent: 2 type: Transform - - uid: 11082 + - uid: 11213 components: - rot: 1.5707963267948966 rad pos: -59.5,-58.5 parent: 2 type: Transform - - uid: 11083 + - uid: 11214 components: - rot: 1.5707963267948966 rad pos: -59.5,-59.5 parent: 2 type: Transform - - uid: 11084 + - uid: 11215 components: - rot: 1.5707963267948966 rad pos: -59.5,-60.5 parent: 2 type: Transform - - uid: 11085 + - uid: 11216 components: - rot: 1.5707963267948966 rad pos: -59.5,-61.5 parent: 2 type: Transform - - uid: 11086 + - uid: 11217 components: - rot: 1.5707963267948966 rad pos: -59.5,-62.5 parent: 2 type: Transform - - uid: 11087 + - uid: 11218 components: - rot: 1.5707963267948966 rad pos: -59.5,-63.5 parent: 2 type: Transform - - uid: 11088 + - uid: 11219 components: - rot: 1.5707963267948966 rad pos: -59.5,-64.5 parent: 2 type: Transform - - uid: 11089 + - uid: 11220 components: - rot: 1.5707963267948966 rad pos: -59.5,-65.5 parent: 2 type: Transform - - uid: 11090 + - uid: 11221 components: - rot: 1.5707963267948966 rad pos: -59.5,-66.5 parent: 2 type: Transform - - uid: 11091 + - uid: 11222 components: - rot: 1.5707963267948966 rad pos: -59.5,-67.5 parent: 2 type: Transform - - uid: 11092 + - uid: 11223 components: - rot: 1.5707963267948966 rad pos: -59.5,-68.5 parent: 2 type: Transform - - uid: 11093 + - uid: 11224 components: - rot: 1.5707963267948966 rad pos: -59.5,-69.5 parent: 2 type: Transform - - uid: 11094 + - uid: 11225 components: - pos: 8.5,-35.5 parent: 2 type: Transform - - uid: 11095 + - uid: 11226 components: - pos: 8.5,-34.5 parent: 2 type: Transform - - uid: 11096 + - uid: 11227 components: - pos: 8.5,-32.5 parent: 2 type: Transform - - uid: 11097 + - uid: 11228 components: - pos: 8.5,-33.5 parent: 2 type: Transform - - uid: 11098 + - uid: 11229 components: - pos: 46.5,-33.5 parent: 2 type: Transform - - uid: 11099 + - uid: 11230 components: - pos: 45.5,-33.5 parent: 2 type: Transform - - uid: 11100 + - uid: 11231 components: - pos: 44.5,-33.5 parent: 2 type: Transform - - uid: 11101 + - uid: 11232 components: - pos: 8.5,-31.5 parent: 2 type: Transform - - uid: 11102 + - uid: 11233 components: - pos: 8.5,-30.5 parent: 2 type: Transform - - uid: 11103 + - uid: 11234 components: - pos: 68.5,-70.5 parent: 2 type: Transform - - uid: 11104 + - uid: 11235 components: - pos: 69.5,-71.5 parent: 2 type: Transform - - uid: 11105 + - uid: 11236 components: - pos: 70.5,-71.5 parent: 2 type: Transform - - uid: 11106 + - uid: 11237 components: - pos: 71.5,-71.5 parent: 2 type: Transform - - uid: 11107 + - uid: 11238 components: - pos: 71.5,-71.5 parent: 2 type: Transform - - uid: 11108 + - uid: 11239 components: - pos: 71.5,-70.5 parent: 2 type: Transform - - uid: 11109 + - uid: 11240 components: - pos: 72.5,-70.5 parent: 2 type: Transform - - uid: 11110 + - uid: 11241 components: - pos: 72.5,-69.5 parent: 2 type: Transform - - uid: 11111 + - uid: 11242 components: - pos: 73.5,-69.5 parent: 2 type: Transform - - uid: 11112 + - uid: 11243 components: - pos: 74.5,-69.5 parent: 2 type: Transform - - uid: 11113 + - uid: 11244 components: - pos: 74.5,-68.5 parent: 2 type: Transform - - uid: 11114 + - uid: 11245 components: - pos: 74.5,-67.5 parent: 2 type: Transform - - uid: 11115 + - uid: 11246 components: - pos: 74.5,-66.5 parent: 2 type: Transform - - uid: 11116 + - uid: 11247 components: - pos: 74.5,-65.5 parent: 2 type: Transform - - uid: 11117 + - uid: 11248 components: - pos: 74.5,-64.5 parent: 2 type: Transform - - uid: 11118 + - uid: 11249 components: - pos: 74.5,-63.5 parent: 2 type: Transform - - uid: 11119 + - uid: 11250 components: - pos: 75.5,-63.5 parent: 2 type: Transform - - uid: 11120 + - uid: 11251 components: - pos: 76.5,-63.5 parent: 2 type: Transform - - uid: 11121 + - uid: 11252 components: - pos: 77.5,-63.5 parent: 2 type: Transform - - uid: 11122 + - uid: 11253 components: - pos: 78.5,-63.5 parent: 2 type: Transform - - uid: 11123 + - uid: 11254 components: - pos: 79.5,-63.5 parent: 2 type: Transform - - uid: 11124 + - uid: 11255 components: - pos: 79.5,-51.5 parent: 2 type: Transform - - uid: 11125 + - uid: 11256 components: - pos: 79.5,-52.5 parent: 2 type: Transform - - uid: 11126 + - uid: 11257 components: - pos: 79.5,-53.5 parent: 2 type: Transform - - uid: 11127 + - uid: 11258 components: - pos: 79.5,-54.5 parent: 2 type: Transform - - uid: 11128 + - uid: 11259 components: - pos: 79.5,-55.5 parent: 2 type: Transform - - uid: 11129 + - uid: 11260 components: - pos: 79.5,-56.5 parent: 2 type: Transform - - uid: 11130 + - uid: 11261 components: - pos: 79.5,-57.5 parent: 2 type: Transform - - uid: 11131 + - uid: 11262 components: - pos: 79.5,-58.5 parent: 2 type: Transform - - uid: 11132 + - uid: 11263 components: - pos: 79.5,-59.5 parent: 2 type: Transform - - uid: 11133 + - uid: 11264 components: - pos: 79.5,-60.5 parent: 2 type: Transform - - uid: 11134 + - uid: 11265 components: - pos: 79.5,-61.5 parent: 2 type: Transform - - uid: 11135 + - uid: 11266 components: - pos: 79.5,-62.5 parent: 2 type: Transform - - uid: 11136 + - uid: 11267 components: - pos: 72.5,-71.5 parent: 2 type: Transform - - uid: 11137 + - uid: 11268 components: - pos: 71.5,-69.5 parent: 2 type: Transform - - uid: 11138 + - uid: 11269 components: - pos: 55.5,-32.5 parent: 2 type: Transform - - uid: 11139 + - uid: 11270 components: - pos: 54.5,-32.5 parent: 2 type: Transform - - uid: 11140 + - uid: 11271 components: - pos: 53.5,-32.5 parent: 2 type: Transform - - uid: 11141 + - uid: 11272 components: - pos: 67.5,-74.5 parent: 2 type: Transform - - uid: 11142 + - uid: 11273 components: - pos: 66.5,-74.5 parent: 2 type: Transform - - uid: 11143 + - uid: 11274 components: - pos: 65.5,-74.5 parent: 2 type: Transform - - uid: 11144 + - uid: 11275 components: - pos: 64.5,-74.5 parent: 2 type: Transform - - uid: 11145 + - uid: 11276 components: - pos: 63.5,-74.5 parent: 2 type: Transform - - uid: 11146 + - uid: 11277 components: - pos: 62.5,-74.5 parent: 2 type: Transform - - uid: 11147 + - uid: 11278 components: - pos: 61.5,-74.5 parent: 2 type: Transform - - uid: 11148 + - uid: 11279 components: - pos: 60.5,-74.5 parent: 2 type: Transform - - uid: 11149 + - uid: 11280 components: - pos: 59.5,-74.5 parent: 2 type: Transform - - uid: 11150 + - uid: 11281 components: - pos: 58.5,-74.5 parent: 2 type: Transform - - uid: 11151 + - uid: 11282 components: - pos: 55.5,-30.5 parent: 2 type: Transform - - uid: 11152 + - uid: 11283 components: - pos: 55.5,-31.5 parent: 2 type: Transform - - uid: 11153 + - uid: 11284 components: - pos: 59.5,-22.5 parent: 2 type: Transform - - uid: 11154 + - uid: 11285 components: - pos: 59.5,-41.5 parent: 2 type: Transform - - uid: 11155 + - uid: 11286 components: - pos: 59.5,-40.5 parent: 2 type: Transform - - uid: 11156 + - uid: 11287 components: - pos: 59.5,-39.5 parent: 2 type: Transform - - uid: 11157 + - uid: 11288 components: - pos: 58.5,-39.5 parent: 2 type: Transform - - uid: 11158 + - uid: 11289 components: - pos: 57.5,-39.5 parent: 2 type: Transform - - uid: 11159 + - uid: 11290 components: - pos: 56.5,-39.5 parent: 2 type: Transform - - uid: 11160 + - uid: 11291 components: - pos: 59.5,-23.5 parent: 2 type: Transform - - uid: 11161 + - uid: 11292 components: - pos: 59.5,-24.5 parent: 2 type: Transform - - uid: 11162 + - uid: 11293 components: - rot: 3.141592653589793 rad pos: 65.5,-20.5 parent: 2 type: Transform - - uid: 11163 + - uid: 11294 components: - rot: 3.141592653589793 rad pos: 65.5,-19.5 parent: 2 type: Transform - - uid: 11164 + - uid: 11295 components: - rot: 3.141592653589793 rad pos: 65.5,-18.5 parent: 2 type: Transform - - uid: 11165 + - uid: 11296 components: - rot: 3.141592653589793 rad pos: 66.5,-18.5 parent: 2 type: Transform - - uid: 11166 + - uid: 11297 components: - pos: 75.5,-51.5 parent: 2 type: Transform - - uid: 11167 + - uid: 11298 components: - pos: 75.5,-52.5 parent: 2 type: Transform - - uid: 11168 + - uid: 11299 components: - pos: 75.5,-53.5 parent: 2 type: Transform - - uid: 11169 + - uid: 11300 components: - pos: 75.5,-54.5 parent: 2 type: Transform - - uid: 11170 + - uid: 11301 components: - pos: 75.5,-55.5 parent: 2 type: Transform - - uid: 11171 + - uid: 11302 components: - pos: 75.5,-56.5 parent: 2 type: Transform - - uid: 11172 + - uid: 11303 components: - pos: 60.5,-26.5 parent: 2 type: Transform - - uid: 11173 + - uid: 11304 components: - pos: 59.5,-26.5 parent: 2 type: Transform - - uid: 11174 + - uid: 11305 components: - pos: 58.5,-26.5 parent: 2 type: Transform - - uid: 11175 + - uid: 11306 components: - pos: 57.5,-26.5 parent: 2 type: Transform - - uid: 11176 + - uid: 11307 components: - pos: 56.5,-26.5 parent: 2 type: Transform - - uid: 11177 + - uid: 11308 components: - pos: 64.5,-58.5 parent: 2 type: Transform - - uid: 11178 + - uid: 11309 components: - pos: 71.5,-57.5 parent: 2 type: Transform - - uid: 11179 + - uid: 11310 components: - pos: 71.5,-58.5 parent: 2 type: Transform - - uid: 11180 + - uid: 11311 components: - pos: 71.5,-59.5 parent: 2 type: Transform - - uid: 11181 + - uid: 11312 components: - pos: 71.5,-60.5 parent: 2 type: Transform - - uid: 11182 + - uid: 11313 components: - pos: 71.5,-61.5 parent: 2 type: Transform - - uid: 11183 + - uid: 11314 components: - pos: 47.5,-65.5 parent: 2 type: Transform - - uid: 11184 + - uid: 11315 components: - pos: 48.5,-65.5 parent: 2 type: Transform - - uid: 11185 + - uid: 11316 components: - pos: 49.5,-65.5 parent: 2 type: Transform - - uid: 11186 + - uid: 11317 components: - pos: 50.5,-65.5 parent: 2 type: Transform - - uid: 11187 + - uid: 11318 components: - pos: 52.5,-66.5 parent: 2 type: Transform - - uid: 11188 + - uid: 11319 components: - pos: 69.5,-63.5 parent: 2 type: Transform - - uid: 11189 + - uid: 11320 components: - pos: 67.5,-66.5 parent: 2 type: Transform - - uid: 11190 + - uid: 11321 components: - pos: 11.5,-89.5 parent: 2 type: Transform - - uid: 11191 + - uid: 11322 components: - pos: 12.5,-89.5 parent: 2 type: Transform - - uid: 11192 + - uid: 11323 components: - pos: 12.5,-90.5 parent: 2 type: Transform - - uid: 11193 + - uid: 11324 components: - pos: 12.5,-91.5 parent: 2 type: Transform - - uid: 11194 + - uid: 11325 components: - pos: 5.5,-89.5 parent: 2 type: Transform - - uid: 11195 + - uid: 11326 components: - pos: 6.5,-89.5 parent: 2 type: Transform - - uid: 11196 + - uid: 11327 components: - pos: 7.5,-89.5 parent: 2 type: Transform - - uid: 11197 + - uid: 11328 components: - pos: 8.5,-89.5 parent: 2 type: Transform - - uid: 11198 + - uid: 11329 components: - pos: 9.5,-89.5 parent: 2 type: Transform - - uid: 11199 + - uid: 11330 components: - pos: 10.5,-89.5 parent: 2 type: Transform - - uid: 11200 + - uid: 11331 components: - pos: 3.5,-89.5 parent: 2 type: Transform - - uid: 11201 + - uid: 11332 components: - pos: 70.5,-25.5 parent: 2 type: Transform - - uid: 11202 + - uid: 11333 components: - pos: 69.5,-25.5 parent: 2 type: Transform - - uid: 11203 + - uid: 11334 components: - pos: 68.5,-25.5 parent: 2 type: Transform - - uid: 11204 + - uid: 11335 components: - pos: 66.5,-25.5 parent: 2 type: Transform - - uid: 11205 + - uid: 11336 components: - pos: 67.5,-25.5 parent: 2 type: Transform - - uid: 11206 + - uid: 11337 components: - pos: 71.5,-26.5 parent: 2 type: Transform - - uid: 11207 + - uid: 11338 components: - pos: 72.5,-26.5 parent: 2 type: Transform - - uid: 11208 + - uid: 11339 components: - pos: 73.5,-26.5 parent: 2 type: Transform - - uid: 11209 + - uid: 11340 components: - pos: 74.5,-26.5 parent: 2 type: Transform - - uid: 11210 + - uid: 11341 components: - pos: 75.5,-26.5 parent: 2 type: Transform - - uid: 11211 + - uid: 11342 components: - pos: 76.5,-26.5 parent: 2 type: Transform - - uid: 11212 + - uid: 11343 components: - pos: 77.5,-26.5 parent: 2 type: Transform - - uid: 11213 + - uid: 11344 components: - pos: 78.5,-26.5 parent: 2 type: Transform - - uid: 11214 + - uid: 11345 components: - pos: -46.5,-53.5 parent: 2 type: Transform - - uid: 11215 + - uid: 11346 components: - pos: -46.5,-54.5 parent: 2 type: Transform - - uid: 11216 + - uid: 11347 components: - pos: 6.5,-88.5 parent: 2 type: Transform - - uid: 11217 + - uid: 11348 components: - pos: 6.5,-87.5 parent: 2 type: Transform - - uid: 11218 + - uid: 11349 components: - pos: 8.5,-75.5 parent: 2 type: Transform - - uid: 11219 + - uid: 11350 components: - pos: 9.5,-75.5 parent: 2 type: Transform - - uid: 11220 + - uid: 11351 components: - pos: 10.5,-75.5 parent: 2 type: Transform - - uid: 11221 + - uid: 11352 components: - pos: 11.5,-75.5 parent: 2 type: Transform - - uid: 11222 + - uid: 11353 components: - pos: 12.5,-75.5 parent: 2 type: Transform - - uid: 11223 + - uid: 11354 components: - pos: 13.5,-75.5 parent: 2 type: Transform - - uid: 11224 + - uid: 11355 components: - pos: 14.5,-75.5 parent: 2 type: Transform - - uid: 11225 + - uid: 11356 components: - pos: 15.5,-75.5 parent: 2 type: Transform - - uid: 11226 + - uid: 11357 components: - pos: 16.5,-75.5 parent: 2 type: Transform - - uid: 11227 + - uid: 11358 components: - pos: 17.5,-75.5 parent: 2 type: Transform - - uid: 11228 + - uid: 11359 components: - pos: 18.5,-75.5 parent: 2 type: Transform - - uid: 11229 + - uid: 11360 components: - pos: 19.5,-75.5 parent: 2 type: Transform - - uid: 11230 + - uid: 11361 components: - pos: 20.5,-75.5 parent: 2 type: Transform - - uid: 11231 + - uid: 11362 components: - pos: 21.5,-75.5 parent: 2 type: Transform - - uid: 11232 + - uid: 11363 components: - pos: 69.5,4.5 parent: 2 type: Transform - - uid: 11233 + - uid: 11364 components: - pos: 69.5,2.5 parent: 2 type: Transform - - uid: 11234 + - uid: 11365 components: - pos: 69.5,1.5 parent: 2 type: Transform - - uid: 11235 + - uid: 11366 components: - pos: 69.5,0.5 parent: 2 type: Transform - - uid: 11236 + - uid: 11367 components: - pos: 69.5,-0.5 parent: 2 type: Transform - - uid: 11237 + - uid: 11368 components: - pos: 69.5,-1.5 parent: 2 type: Transform - - uid: 11238 + - uid: 11369 components: - pos: 69.5,31.5 parent: 2 type: Transform - - uid: 11239 + - uid: 11370 components: - pos: 69.5,30.5 parent: 2 type: Transform - - uid: 11240 + - uid: 11371 components: - pos: 69.5,29.5 parent: 2 type: Transform - - uid: 11241 + - uid: 11372 components: - pos: 69.5,28.5 parent: 2 type: Transform - - uid: 11242 + - uid: 11373 components: - pos: 69.5,27.5 parent: 2 type: Transform - - uid: 11243 + - uid: 11374 components: - pos: 69.5,26.5 parent: 2 type: Transform - - uid: 11244 + - uid: 11375 components: - pos: 69.5,25.5 parent: 2 type: Transform - - uid: 11245 + - uid: 11376 components: - pos: 69.5,24.5 parent: 2 type: Transform - - uid: 11246 + - uid: 11377 components: - pos: 69.5,23.5 parent: 2 type: Transform - - uid: 11247 + - uid: 11378 components: - pos: 69.5,22.5 parent: 2 type: Transform - - uid: 11248 + - uid: 11379 components: - pos: 69.5,21.5 parent: 2 type: Transform - - uid: 11249 + - uid: 11380 components: - pos: 69.5,20.5 parent: 2 type: Transform - - uid: 11250 + - uid: 11381 components: - pos: 69.5,19.5 parent: 2 type: Transform - - uid: 11251 + - uid: 11382 components: - pos: 69.5,18.5 parent: 2 type: Transform - - uid: 11252 + - uid: 11383 components: - pos: 69.5,17.5 parent: 2 type: Transform - - uid: 11253 + - uid: 11384 components: - pos: 69.5,16.5 parent: 2 type: Transform - - uid: 11254 + - uid: 11385 components: - pos: 69.5,15.5 parent: 2 type: Transform - - uid: 11255 + - uid: 11386 components: - pos: 69.5,14.5 parent: 2 type: Transform - - uid: 11256 + - uid: 11387 components: - pos: 69.5,13.5 parent: 2 type: Transform - - uid: 11257 + - uid: 11388 components: - pos: 69.5,12.5 parent: 2 type: Transform - - uid: 11258 + - uid: 11389 components: - pos: 69.5,11.5 parent: 2 type: Transform - - uid: 11259 + - uid: 11390 components: - pos: 69.5,10.5 parent: 2 type: Transform - - uid: 11260 + - uid: 11391 components: - pos: 69.5,9.5 parent: 2 type: Transform - - uid: 11261 + - uid: 11392 components: - pos: 69.5,8.5 parent: 2 type: Transform - - uid: 11262 + - uid: 11393 components: - pos: 69.5,7.5 parent: 2 type: Transform - - uid: 11263 + - uid: 11394 components: - pos: 69.5,6.5 parent: 2 type: Transform - - uid: 11264 + - uid: 11395 components: - pos: 69.5,5.5 parent: 2 type: Transform - - uid: 11265 + - uid: 11396 components: - pos: 75.5,43.5 parent: 2 type: Transform - - uid: 11266 + - uid: 11397 components: - pos: 63.5,37.5 parent: 2 type: Transform - - uid: 11267 + - uid: 11398 components: - pos: 63.5,38.5 parent: 2 type: Transform - - uid: 11268 + - uid: 11399 components: - pos: 63.5,39.5 parent: 2 type: Transform - - uid: 11269 + - uid: 11400 components: - pos: 64.5,39.5 parent: 2 type: Transform - - uid: 11270 + - uid: 11401 components: - pos: 65.5,39.5 parent: 2 type: Transform - - uid: 11271 + - uid: 11402 components: - pos: 66.5,39.5 parent: 2 type: Transform - - uid: 11272 + - uid: 11403 components: - pos: 67.5,39.5 parent: 2 type: Transform - - uid: 11273 + - uid: 11404 components: - pos: 67.5,40.5 parent: 2 type: Transform - - uid: 11274 + - uid: 11405 components: - pos: 67.5,41.5 parent: 2 type: Transform - - uid: 11275 + - uid: 11406 components: - pos: 68.5,41.5 parent: 2 type: Transform - - uid: 11276 + - uid: 11407 components: - pos: 69.5,41.5 parent: 2 type: Transform - - uid: 11277 + - uid: 11408 components: - pos: 70.5,41.5 parent: 2 type: Transform - - uid: 11278 + - uid: 11409 components: - pos: 71.5,41.5 parent: 2 type: Transform - - uid: 11279 + - uid: 11410 components: - pos: 72.5,41.5 parent: 2 type: Transform - - uid: 11280 + - uid: 11411 components: - pos: 72.5,42.5 parent: 2 type: Transform - - uid: 11281 + - uid: 11412 components: - pos: 73.5,42.5 parent: 2 type: Transform - - uid: 11282 + - uid: 11413 components: - pos: 74.5,42.5 parent: 2 type: Transform - - uid: 11283 + - uid: 11414 components: - pos: 75.5,42.5 parent: 2 type: Transform - - uid: 11284 + - uid: 11415 components: - pos: 75.5,44.5 parent: 2 type: Transform - - uid: 11285 + - uid: 11416 components: - pos: 75.5,45.5 parent: 2 type: Transform - - uid: 11286 + - uid: 11417 components: - pos: 75.5,46.5 parent: 2 type: Transform - - uid: 11287 + - uid: 11418 components: - pos: 74.5,46.5 parent: 2 type: Transform - - uid: 11288 + - uid: 11419 components: - pos: 74.5,47.5 parent: 2 type: Transform - - uid: 11289 + - uid: 11420 components: - pos: 74.5,48.5 parent: 2 type: Transform - - uid: 11290 + - uid: 11421 components: - pos: 74.5,49.5 parent: 2 type: Transform - - uid: 11291 + - uid: 11422 components: - pos: 74.5,50.5 parent: 2 type: Transform - - uid: 11292 + - uid: 11423 components: - pos: 74.5,51.5 parent: 2 type: Transform - - uid: 11293 + - uid: 11424 components: - pos: 74.5,52.5 parent: 2 type: Transform - - uid: 11294 + - uid: 11425 components: - pos: 74.5,53.5 parent: 2 type: Transform - - uid: 11295 + - uid: 11426 components: - pos: 74.5,54.5 parent: 2 type: Transform - - uid: 11296 + - uid: 11427 components: - pos: 74.5,55.5 parent: 2 type: Transform - - uid: 11297 + - uid: 11428 components: - pos: 74.5,56.5 parent: 2 type: Transform - - uid: 11298 + - uid: 11429 components: - pos: 74.5,57.5 parent: 2 type: Transform - - uid: 11299 + - uid: 11430 components: - pos: 60.5,58.5 parent: 2 type: Transform - - uid: 11300 + - uid: 11431 components: - pos: 73.5,57.5 parent: 2 type: Transform - - uid: 11301 + - uid: 11432 components: - pos: 72.5,57.5 parent: 2 type: Transform - - uid: 11302 + - uid: 11433 components: - pos: 71.5,57.5 parent: 2 type: Transform - - uid: 11303 + - uid: 11434 components: - pos: 70.5,57.5 parent: 2 type: Transform - - uid: 11304 + - uid: 11435 components: - pos: 69.5,57.5 parent: 2 type: Transform - - uid: 11305 + - uid: 11436 components: - pos: 68.5,57.5 parent: 2 type: Transform - - uid: 11306 + - uid: 11437 components: - pos: 67.5,57.5 parent: 2 type: Transform - - uid: 11307 + - uid: 11438 components: - pos: 66.5,57.5 parent: 2 type: Transform - - uid: 11308 + - uid: 11439 components: - pos: 65.5,57.5 parent: 2 type: Transform - - uid: 11309 + - uid: 11440 components: - pos: 64.5,57.5 parent: 2 type: Transform - - uid: 11310 + - uid: 11441 components: - pos: 63.5,57.5 parent: 2 type: Transform - - uid: 11311 + - uid: 11442 components: - pos: 62.5,57.5 parent: 2 type: Transform - - uid: 11312 + - uid: 11443 components: - pos: 61.5,57.5 parent: 2 type: Transform - - uid: 11313 + - uid: 11444 components: - pos: 60.5,57.5 parent: 2 type: Transform - - uid: 11314 + - uid: 11445 components: - pos: 60.5,59.5 parent: 2 type: Transform - - uid: 11315 + - uid: 11446 components: - pos: 60.5,60.5 parent: 2 type: Transform - - uid: 11316 + - uid: 11447 components: - pos: 60.5,61.5 parent: 2 type: Transform - - uid: 11317 + - uid: 11448 components: - pos: 60.5,62.5 parent: 2 type: Transform - - uid: 11318 + - uid: 11449 components: - pos: 60.5,63.5 parent: 2 type: Transform - - uid: 11319 + - uid: 11450 components: - pos: 47.5,55.5 parent: 2 type: Transform - - uid: 11320 + - uid: 11451 components: - pos: 59.5,63.5 parent: 2 type: Transform - - uid: 11321 + - uid: 11452 components: - pos: 58.5,63.5 parent: 2 type: Transform - - uid: 11322 + - uid: 11453 components: - pos: 57.5,63.5 parent: 2 type: Transform - - uid: 11323 + - uid: 11454 components: - pos: 56.5,63.5 parent: 2 type: Transform - - uid: 11324 + - uid: 11455 components: - pos: 55.5,63.5 parent: 2 type: Transform - - uid: 11325 + - uid: 11456 components: - pos: 54.5,63.5 parent: 2 type: Transform - - uid: 11326 + - uid: 11457 components: - pos: 53.5,63.5 parent: 2 type: Transform - - uid: 11327 + - uid: 11458 components: - pos: 52.5,63.5 parent: 2 type: Transform - - uid: 11328 + - uid: 11459 components: - pos: 51.5,63.5 parent: 2 type: Transform - - uid: 11329 + - uid: 11460 components: - pos: 50.5,63.5 parent: 2 type: Transform - - uid: 11330 + - uid: 11461 components: - pos: 49.5,63.5 parent: 2 type: Transform - - uid: 11331 + - uid: 11462 components: - pos: 48.5,63.5 parent: 2 type: Transform - - uid: 11332 + - uid: 11463 components: - pos: 48.5,62.5 parent: 2 type: Transform - - uid: 11333 + - uid: 11464 components: - pos: 48.5,61.5 parent: 2 type: Transform - - uid: 11334 + - uid: 11465 components: - pos: 48.5,60.5 parent: 2 type: Transform - - uid: 11335 + - uid: 11466 components: - pos: 48.5,59.5 parent: 2 type: Transform - - uid: 11336 + - uid: 11467 components: - pos: 48.5,58.5 parent: 2 type: Transform - - uid: 11337 + - uid: 11468 components: - pos: 48.5,57.5 parent: 2 type: Transform - - uid: 11338 + - uid: 11469 components: - pos: 48.5,56.5 parent: 2 type: Transform - - uid: 11339 + - uid: 11470 components: - pos: 48.5,55.5 parent: 2 type: Transform - - uid: 11340 + - uid: 11471 components: - pos: 46.5,55.5 parent: 2 type: Transform - - uid: 11341 + - uid: 11472 components: - pos: 45.5,55.5 parent: 2 type: Transform - - uid: 11342 + - uid: 11473 components: - pos: 44.5,55.5 parent: 2 type: Transform - - uid: 11343 + - uid: 11474 components: - pos: 43.5,55.5 parent: 2 type: Transform - - uid: 11344 + - uid: 11475 components: - pos: 42.5,55.5 parent: 2 type: Transform - - uid: 11345 + - uid: 11476 components: - pos: 41.5,55.5 parent: 2 type: Transform - - uid: 11346 + - uid: 11477 components: - pos: 40.5,55.5 parent: 2 type: Transform - - uid: 11347 + - uid: 11478 components: - pos: 39.5,55.5 parent: 2 type: Transform - - uid: 11348 + - uid: 11479 components: - pos: 38.5,55.5 parent: 2 type: Transform - - uid: 11349 + - uid: 11480 components: - pos: 37.5,55.5 parent: 2 type: Transform - - uid: 11350 + - uid: 11481 components: - pos: 36.5,55.5 parent: 2 type: Transform - - uid: 11351 + - uid: 11482 components: - pos: 35.5,55.5 parent: 2 type: Transform - - uid: 11352 + - uid: 11483 components: - pos: 34.5,55.5 parent: 2 type: Transform - - uid: 11353 + - uid: 11484 components: - pos: 33.5,55.5 parent: 2 type: Transform - - uid: 11354 + - uid: 11485 components: - pos: 32.5,55.5 parent: 2 type: Transform - - uid: 11355 + - uid: 11486 components: - pos: 31.5,55.5 parent: 2 type: Transform - - uid: 11356 + - uid: 11487 components: - pos: 30.5,55.5 parent: 2 type: Transform - - uid: 11357 + - uid: 11488 components: - pos: 66.5,35.5 parent: 2 type: Transform - - uid: 11358 + - uid: 11489 components: - pos: 66.5,34.5 parent: 2 type: Transform - - uid: 11359 + - uid: 11490 components: - pos: 66.5,33.5 parent: 2 type: Transform - - uid: 11360 + - uid: 11491 components: - pos: 66.5,32.5 parent: 2 type: Transform - - uid: 11361 + - uid: 11492 components: - pos: 66.5,31.5 parent: 2 type: Transform - - uid: 11362 + - uid: 11493 components: - pos: 67.5,31.5 parent: 2 type: Transform - - uid: 11363 + - uid: 11494 components: - pos: 68.5,31.5 parent: 2 type: Transform - - uid: 11364 + - uid: 11495 components: - rot: 3.141592653589793 rad pos: 27.5,-90.5 parent: 2 type: Transform - - uid: 11365 + - uid: 11496 components: - rot: 3.141592653589793 rad pos: 13.5,-89.5 parent: 2 type: Transform - - uid: 11366 + - uid: 11497 components: - pos: -7.5,-9.5 parent: 2 type: Transform - - uid: 11367 + - uid: 11498 components: - pos: -8.5,-9.5 parent: 2 type: Transform - - uid: 11368 + - uid: 11499 components: - pos: -9.5,-9.5 parent: 2 type: Transform - - uid: 11369 + - uid: 11500 components: - pos: -10.5,-9.5 parent: 2 type: Transform - - uid: 11370 + - uid: 11501 components: - pos: -11.5,-9.5 parent: 2 type: Transform - - uid: 11371 + - uid: 11502 components: - pos: -12.5,-9.5 parent: 2 type: Transform - - uid: 11372 + - uid: 11503 components: - pos: -13.5,-9.5 parent: 2 type: Transform - - uid: 11373 + - uid: 11504 components: - pos: -15.5,-14.5 parent: 2 type: Transform - - uid: 11374 + - uid: 11505 components: - pos: -16.5,-14.5 parent: 2 type: Transform - - uid: 11375 + - uid: 11506 components: - pos: -46.5,52.5 parent: 2 type: Transform - - uid: 11376 + - uid: 11507 components: - pos: -46.5,51.5 parent: 2 type: Transform - - uid: 11377 + - uid: 11508 components: - pos: -46.5,50.5 parent: 2 type: Transform - - uid: 11378 + - uid: 11509 components: - pos: -46.5,49.5 parent: 2 type: Transform - - uid: 11379 + - uid: 11510 components: - pos: -46.5,-56.5 parent: 2 type: Transform - - uid: 11380 + - uid: 11511 components: - pos: -46.5,-57.5 parent: 2 type: Transform - - uid: 11381 + - uid: 11512 components: - pos: -46.5,-58.5 parent: 2 type: Transform - - uid: 11382 + - uid: 11513 components: - pos: -47.5,-58.5 parent: 2 type: Transform - - uid: 11383 + - uid: 11514 components: - pos: -48.5,-58.5 parent: 2 type: Transform - - uid: 11384 + - uid: 11515 components: - pos: -49.5,-58.5 parent: 2 type: Transform - - uid: 11385 + - uid: 11516 components: - pos: -29.5,-19.5 parent: 2 type: Transform - - uid: 11386 + - uid: 11517 components: - pos: -29.5,-20.5 parent: 2 type: Transform - - uid: 11387 + - uid: 11518 components: - pos: -29.5,-21.5 parent: 2 type: Transform - - uid: 11388 + - uid: 11519 components: - rot: 1.5707963267948966 rad pos: -25.5,-60.5 parent: 2 type: Transform - - uid: 11389 + - uid: 11520 components: - rot: 1.5707963267948966 rad pos: -24.5,-60.5 parent: 2 type: Transform - - uid: 11390 + - uid: 11521 components: - rot: 1.5707963267948966 rad pos: -23.5,-60.5 parent: 2 type: Transform - - uid: 11391 + - uid: 11522 components: - rot: 1.5707963267948966 rad pos: -23.5,-58.5 parent: 2 type: Transform - - uid: 11392 + - uid: 11523 components: - pos: 63.5,2.5 parent: 2 type: Transform - - uid: 11393 + - uid: 11524 components: - rot: 3.141592653589793 rad pos: 52.5,-93.5 parent: 2 type: Transform - - uid: 11394 + - uid: 11525 components: - rot: 3.141592653589793 rad pos: 52.5,-80.5 parent: 2 type: Transform - - uid: 11395 + - uid: 11526 components: - rot: 3.141592653589793 rad pos: 52.5,-76.5 parent: 2 type: Transform - - uid: 11396 + - uid: 11527 components: - rot: 3.141592653589793 rad pos: 51.5,-95.5 parent: 2 type: Transform - - uid: 11397 + - uid: 11528 components: - rot: 3.141592653589793 rad pos: 52.5,-95.5 parent: 2 type: Transform - - uid: 11398 + - uid: 11529 components: - pos: 6.5,-73.5 parent: 2 type: Transform - - uid: 11399 + - uid: 11530 components: - rot: 3.141592653589793 rad pos: 50.5,-95.5 parent: 2 type: Transform - - uid: 11400 + - uid: 11531 components: - rot: 3.141592653589793 rad pos: 52.5,-75.5 parent: 2 type: Transform - - uid: 11401 + - uid: 11532 components: - rot: 3.141592653589793 rad pos: 52.5,-74.5 parent: 2 type: Transform - - uid: 11402 + - uid: 11533 components: - rot: 3.141592653589793 rad pos: 54.5,-74.5 parent: 2 type: Transform - - uid: 11403 + - uid: 11534 components: - rot: 3.141592653589793 rad pos: 53.5,-74.5 parent: 2 type: Transform - - uid: 11404 + - uid: 11535 components: - rot: 1.5707963267948966 rad pos: -19.5,-48.5 parent: 2 type: Transform - - uid: 11405 + - uid: 11536 components: - rot: 1.5707963267948966 rad pos: -19.5,-49.5 parent: 2 type: Transform - - uid: 11406 + - uid: 11537 components: - rot: 3.141592653589793 rad pos: 5.5,-19.5 parent: 2 type: Transform - - uid: 11407 + - uid: 11538 components: - rot: 3.141592653589793 rad pos: 5.5,-20.5 parent: 2 type: Transform - - uid: 11408 + - uid: 11539 components: - rot: 3.141592653589793 rad pos: 5.5,-21.5 parent: 2 type: Transform - - uid: 11409 + - uid: 11540 components: - rot: 3.141592653589793 rad pos: 5.5,-22.5 parent: 2 type: Transform - - uid: 11410 + - uid: 11541 components: - rot: 3.141592653589793 rad pos: 4.5,-16.5 parent: 2 type: Transform - - uid: 11411 + - uid: 11542 components: - rot: 3.141592653589793 rad pos: 6.5,-14.5 parent: 2 type: Transform - - uid: 11412 + - uid: 11543 components: - rot: 3.141592653589793 rad pos: 5.5,-14.5 parent: 2 type: Transform - - uid: 11413 + - uid: 11544 components: - rot: 3.141592653589793 rad pos: 4.5,-14.5 parent: 2 type: Transform - - uid: 11414 + - uid: 11545 components: - rot: 1.5707963267948966 rad pos: -20.5,-49.5 parent: 2 type: Transform - - uid: 11415 + - uid: 11546 components: - pos: 6.5,-74.5 parent: 2 type: Transform - - uid: 11416 + - uid: 11547 components: - pos: 6.5,-75.5 parent: 2 type: Transform - - uid: 11417 + - uid: 11548 components: - pos: 6.5,-76.5 parent: 2 type: Transform - - uid: 11418 + - uid: 11549 components: - pos: 6.5,-77.5 parent: 2 type: Transform - - uid: 11419 + - uid: 11550 components: - pos: 6.5,-78.5 parent: 2 type: Transform - - uid: 11420 + - uid: 11551 components: - pos: 6.5,-79.5 parent: 2 type: Transform - - uid: 11421 + - uid: 11552 components: - pos: 6.5,-80.5 parent: 2 type: Transform - - uid: 11422 + - uid: 11553 components: - pos: 6.5,-81.5 parent: 2 type: Transform - - uid: 11423 + - uid: 11554 components: - pos: 6.5,-82.5 parent: 2 type: Transform - - uid: 11424 + - uid: 11555 components: - rot: -1.5707963267948966 rad pos: -47.5,49.5 parent: 2 type: Transform - - uid: 11425 + - uid: 11556 components: - rot: -1.5707963267948966 rad pos: -48.5,49.5 parent: 2 type: Transform - - uid: 11426 + - uid: 11557 components: - rot: -1.5707963267948966 rad pos: -49.5,49.5 parent: 2 type: Transform - - uid: 11427 + - uid: 11558 components: - rot: -1.5707963267948966 rad pos: -49.5,48.5 parent: 2 type: Transform - - uid: 11428 + - uid: 11559 components: - pos: 71.5,-25.5 parent: 2 type: Transform - - uid: 11429 - components: - - pos: -1.5,-23.5 - parent: 2 - type: Transform - - uid: 11430 - components: - - pos: -1.5,-22.5 - parent: 2 - type: Transform - - uid: 11431 - components: - - pos: -1.5,-21.5 - parent: 2 - type: Transform - - uid: 11432 + - uid: 11560 components: - rot: 1.5707963267948966 rad pos: -61.5,-58.5 parent: 2 type: Transform - - uid: 11433 + - uid: 11561 components: - rot: 1.5707963267948966 rad pos: -61.5,-59.5 parent: 2 type: Transform - - uid: 11434 + - uid: 11562 components: - rot: 1.5707963267948966 rad pos: -62.5,-59.5 parent: 2 type: Transform - - uid: 11435 + - uid: 11563 components: - rot: 1.5707963267948966 rad pos: -63.5,-59.5 parent: 2 type: Transform - - uid: 11436 + - uid: 11564 components: - rot: 1.5707963267948966 rad pos: -64.5,-59.5 parent: 2 type: Transform - - uid: 11437 + - uid: 11565 components: - rot: 1.5707963267948966 rad pos: -65.5,-59.5 parent: 2 type: Transform - - uid: 11438 + - uid: 11566 components: - rot: 1.5707963267948966 rad pos: -66.5,-59.5 parent: 2 type: Transform - - uid: 11439 + - uid: 11567 components: - rot: 1.5707963267948966 rad pos: -67.5,-59.5 parent: 2 type: Transform - - uid: 11440 + - uid: 11568 components: - rot: 1.5707963267948966 rad pos: -68.5,-59.5 parent: 2 type: Transform - - uid: 11441 + - uid: 11569 components: - rot: 1.5707963267948966 rad pos: -69.5,-59.5 parent: 2 type: Transform - - uid: 11442 + - uid: 11570 components: - rot: 1.5707963267948966 rad pos: -70.5,-59.5 parent: 2 type: Transform - - uid: 11443 + - uid: 11571 components: - rot: 1.5707963267948966 rad pos: -71.5,-59.5 parent: 2 type: Transform - - uid: 11444 + - uid: 11572 components: - rot: 1.5707963267948966 rad pos: -72.5,-59.5 parent: 2 type: Transform - - uid: 11445 + - uid: 11573 components: - rot: 1.5707963267948966 rad pos: -73.5,-59.5 parent: 2 type: Transform - - uid: 11446 + - uid: 11574 components: - rot: 1.5707963267948966 rad pos: -74.5,-59.5 parent: 2 type: Transform - - uid: 11447 + - uid: 11575 components: - rot: 3.141592653589793 rad pos: 45.5,-80.5 parent: 2 type: Transform - - uid: 11448 + - uid: 11576 components: - rot: 3.141592653589793 rad pos: 45.5,-79.5 parent: 2 type: Transform - - uid: 11449 + - uid: 11577 components: - rot: 1.5707963267948966 rad pos: 33.5,-91.5 parent: 2 type: Transform - - uid: 11450 + - uid: 11578 components: - rot: 1.5707963267948966 rad pos: 45.5,-91.5 parent: 2 type: Transform - - uid: 11451 + - uid: 11579 components: - rot: 1.5707963267948966 rad pos: 45.5,-92.5 parent: 2 type: Transform - - uid: 11452 + - uid: 11580 components: - rot: 1.5707963267948966 rad pos: 45.5,-93.5 parent: 2 type: Transform - - uid: 11453 + - uid: 11581 components: - rot: 1.5707963267948966 rad pos: 33.5,-92.5 parent: 2 type: Transform - - uid: 11454 + - uid: 11582 components: - rot: 1.5707963267948966 rad pos: 33.5,-93.5 parent: 2 type: Transform - - uid: 11455 + - uid: 11583 components: - rot: 3.141592653589793 rad pos: 45.5,-78.5 parent: 2 type: Transform - - uid: 11456 + - uid: 11584 components: - rot: 3.141592653589793 rad pos: 45.5,-77.5 parent: 2 type: Transform - - uid: 11457 + - uid: 11585 components: - rot: 3.141592653589793 rad pos: 45.5,-76.5 parent: 2 type: Transform - - uid: 11458 + - uid: 11586 components: - rot: 3.141592653589793 rad pos: 45.5,-75.5 parent: 2 type: Transform - - uid: 11459 + - uid: 11587 components: - rot: 3.141592653589793 rad pos: 33.5,-80.5 parent: 2 type: Transform - - uid: 11460 + - uid: 11588 components: - rot: 3.141592653589793 rad pos: 33.5,-79.5 parent: 2 type: Transform - - uid: 11461 + - uid: 11589 components: - rot: 3.141592653589793 rad pos: 33.5,-78.5 parent: 2 type: Transform - - uid: 11462 + - uid: 11590 components: - rot: 3.141592653589793 rad pos: 33.5,-77.5 parent: 2 type: Transform - - uid: 11463 + - uid: 11591 components: - rot: 3.141592653589793 rad pos: 33.5,-76.5 parent: 2 type: Transform - - uid: 11464 + - uid: 11592 components: - rot: 3.141592653589793 rad pos: 33.5,-75.5 parent: 2 type: Transform - - uid: 11465 + - uid: 11593 components: - pos: -79.5,-33.5 parent: 2 type: Transform - - uid: 11466 + - uid: 11594 components: - pos: -79.5,-39.5 parent: 2 type: Transform - - uid: 11467 + - uid: 11595 components: - pos: -79.5,-38.5 parent: 2 type: Transform - - uid: 11468 + - uid: 11596 components: - pos: -79.5,-34.5 parent: 2 type: Transform - - uid: 11469 + - uid: 11597 components: - pos: -79.5,-36.5 parent: 2 type: Transform - - uid: 11470 + - uid: 11598 components: - pos: -79.5,-43.5 parent: 2 type: Transform - - uid: 11471 + - uid: 11599 components: - pos: -79.5,-37.5 parent: 2 type: Transform - - uid: 11472 + - uid: 11600 components: - pos: -79.5,-42.5 parent: 2 type: Transform - - uid: 11473 + - uid: 11601 components: - pos: -79.5,-35.5 parent: 2 type: Transform - - uid: 11474 + - uid: 11602 components: - rot: 3.141592653589793 rad pos: -79.5,-44.5 parent: 2 type: Transform - - uid: 11475 + - uid: 11603 components: - pos: -70.5,-37.5 parent: 2 type: Transform - - uid: 11476 + - uid: 11604 components: - pos: -69.5,-37.5 parent: 2 type: Transform - - uid: 11477 + - uid: 11605 components: - pos: -68.5,-37.5 parent: 2 type: Transform - - uid: 11478 + - uid: 11606 components: - pos: -67.5,-37.5 parent: 2 type: Transform - - uid: 11479 + - uid: 11607 components: - pos: -66.5,-37.5 parent: 2 type: Transform - - uid: 11480 + - uid: 11608 components: - pos: -65.5,-37.5 parent: 2 type: Transform - - uid: 11481 + - uid: 11609 components: - pos: -65.5,-38.5 parent: 2 type: Transform - - uid: 11482 + - uid: 11610 components: - pos: -65.5,-39.5 parent: 2 type: Transform - - uid: 11483 + - uid: 11611 components: - pos: -65.5,-40.5 parent: 2 type: Transform - - uid: 11484 + - uid: 11612 components: - pos: -65.5,-41.5 parent: 2 type: Transform - - uid: 11485 + - uid: 11613 components: - pos: -65.5,-42.5 parent: 2 type: Transform - - uid: 11486 + - uid: 11614 components: - pos: -65.5,-43.5 parent: 2 type: Transform - - uid: 11487 + - uid: 11615 components: - pos: -65.5,-45.5 parent: 2 type: Transform - - uid: 11488 + - uid: 11616 components: - rot: 3.141592653589793 rad pos: -79.5,-45.5 parent: 2 type: Transform - - uid: 11489 + - uid: 11617 components: - rot: 3.141592653589793 rad pos: -79.5,-46.5 parent: 2 type: Transform - - uid: 11490 + - uid: 11618 components: - rot: 3.141592653589793 rad pos: -79.5,-47.5 parent: 2 type: Transform - - uid: 11491 + - uid: 11619 components: - rot: 3.141592653589793 rad pos: -79.5,-48.5 parent: 2 type: Transform - - uid: 11492 + - uid: 11620 components: - rot: 3.141592653589793 rad pos: -78.5,-48.5 parent: 2 type: Transform - - uid: 11493 + - uid: 11621 components: - rot: 3.141592653589793 rad pos: -77.5,-48.5 parent: 2 type: Transform - - uid: 11494 + - uid: 11622 components: - rot: 3.141592653589793 rad pos: -76.5,-48.5 parent: 2 type: Transform - - uid: 11495 + - uid: 11623 components: - rot: 3.141592653589793 rad pos: -75.5,-48.5 parent: 2 type: Transform - - uid: 11496 + - uid: 11624 components: - rot: -1.5707963267948966 rad pos: -65.5,-44.5 parent: 2 type: Transform - - uid: 11497 + - uid: 11625 components: - rot: -1.5707963267948966 rad pos: -61.5,-47.5 parent: 2 type: Transform - - uid: 11498 + - uid: 11626 components: - rot: -1.5707963267948966 rad pos: -61.5,-46.5 parent: 2 type: Transform - - uid: 11499 + - uid: 11627 components: - rot: -1.5707963267948966 rad pos: -61.5,-45.5 parent: 2 type: Transform - - uid: 11500 + - uid: 11628 components: - rot: 3.141592653589793 rad pos: -78.5,-38.5 parent: 2 type: Transform - - uid: 11501 + - uid: 11629 components: - rot: 1.5707963267948966 rad pos: -15.5,15.5 parent: 2 type: Transform - - uid: 11502 + - uid: 11630 components: - rot: 3.141592653589793 rad pos: -77.5,-38.5 parent: 2 type: Transform - - uid: 11503 + - uid: 11631 components: - rot: 3.141592653589793 rad pos: -75.5,-38.5 parent: 2 type: Transform - - uid: 11504 + - uid: 11632 components: - rot: 3.141592653589793 rad pos: -52.5,-33.5 parent: 2 type: Transform - - uid: 11505 + - uid: 11633 components: - rot: -1.5707963267948966 rad pos: -43.5,-38.5 parent: 2 type: Transform - - uid: 11506 + - uid: 11634 components: - rot: -1.5707963267948966 rad pos: -43.5,-39.5 parent: 2 type: Transform - - uid: 11507 + - uid: 11635 components: - rot: -1.5707963267948966 rad pos: -43.5,-40.5 parent: 2 type: Transform + - uid: 11636 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-32.5 + parent: 2 + type: Transform + - uid: 11637 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-32.5 + parent: 2 + type: Transform - proto: Cautery entities: - - uid: 11508 + - uid: 11638 components: - rot: -1.5707963267948966 rad pos: 0.5414771,-66.9678 parent: 2 type: Transform - - uid: 11509 + - uid: 11639 components: - pos: 73.52661,-47.78304 parent: 2 type: Transform - proto: Chair entities: - - uid: 11510 + - uid: 11640 components: - rot: -1.5707963267948966 rad pos: 18.5,-72.5 parent: 2 type: Transform - - uid: 11511 + - uid: 11641 components: - rot: -1.5707963267948966 rad pos: -51.5,-75.5 parent: 2 type: Transform - - uid: 11512 + - uid: 11642 components: - pos: 14.5,-72.5 parent: 2 type: Transform - - uid: 11513 + - uid: 11643 components: - rot: -1.5707963267948966 rad pos: -51.5,-79.5 parent: 2 type: Transform - - uid: 11514 + - uid: 11644 components: - rot: -1.5707963267948966 rad pos: -51.5,-78.5 parent: 2 type: Transform - - uid: 11515 + - uid: 11645 components: - rot: -1.5707963267948966 rad pos: -51.5,-77.5 parent: 2 type: Transform - - uid: 11516 + - uid: 11646 components: - rot: -1.5707963267948966 rad pos: -51.5,-74.5 parent: 2 type: Transform - - uid: 11517 + - uid: 11647 components: - rot: -1.5707963267948966 rad pos: -51.5,-73.5 parent: 2 type: Transform - - uid: 11518 + - uid: 11648 components: - pos: -23.5,-38.5 parent: 2 type: Transform - - uid: 11519 + - uid: 11649 components: - pos: 1.5,-52.5 parent: 2 type: Transform - - uid: 11520 + - uid: 11650 components: - rot: 3.141592653589793 rad pos: 27.5,-4.5 parent: 2 type: Transform - - uid: 11521 + - uid: 11651 components: - pos: -5.5,-45.5 parent: 2 type: Transform - - uid: 11522 + - uid: 11652 components: - pos: -2.5,-32.5 parent: 2 type: Transform - - uid: 11523 + - uid: 11653 components: - rot: 1.5707963267948966 rad pos: 17.5,-65.5 parent: 2 type: Transform - - uid: 11524 + - uid: 11654 components: - rot: 1.5707963267948966 rad pos: 17.5,-66.5 parent: 2 type: Transform - - uid: 11525 + - uid: 11655 components: - rot: 1.5707963267948966 rad pos: 18.5,-0.5 parent: 2 type: Transform - - uid: 11526 + - uid: 11656 components: - pos: -14.5,-52.5 parent: 2 type: Transform - - uid: 11527 + - uid: 11657 components: - pos: 2.5,-52.5 parent: 2 type: Transform - - uid: 11528 + - uid: 11658 components: - pos: -12.5,-52.5 parent: 2 type: Transform - - uid: 11529 + - uid: 11659 components: - pos: -11.5,-52.5 parent: 2 type: Transform - - uid: 11530 + - uid: 11660 components: - pos: 16.5,-67.5 parent: 2 type: Transform - - uid: 11531 + - uid: 11661 components: - rot: 1.5707963267948966 rad pos: 18.5,2.5 parent: 2 type: Transform - - uid: 11532 + - uid: 11662 components: - pos: 27.5,6.5 parent: 2 type: Transform - - uid: 11533 + - uid: 11663 components: - pos: 26.5,6.5 parent: 2 type: Transform - - uid: 11534 + - uid: 11664 components: - rot: 1.5707963267948966 rad pos: 7.5,13.5 parent: 2 type: Transform - - uid: 11535 + - uid: 11665 components: - rot: 1.5707963267948966 rad pos: 7.5,14.5 parent: 2 type: Transform - - uid: 11536 + - uid: 11666 components: - pos: -4.5,-45.5 parent: 2 type: Transform - - uid: 11537 + - uid: 11667 components: - pos: -3.5,-45.5 parent: 2 type: Transform - - uid: 11538 + - uid: 11668 components: - rot: 3.141592653589793 rad pos: 23.5,-4.5 parent: 2 type: Transform - - uid: 11539 + - uid: 11669 components: - rot: 3.141592653589793 rad pos: 26.5,-4.5 parent: 2 type: Transform - - uid: 11540 + - uid: 11670 components: - pos: 22.5,6.5 parent: 2 type: Transform - - uid: 11541 + - uid: 11671 components: - pos: 25.5,6.5 parent: 2 type: Transform - - uid: 11542 + - uid: 11672 components: - pos: 21.5,6.5 parent: 2 type: Transform - - uid: 11543 + - uid: 11673 components: - rot: 3.141592653589793 rad pos: -2.5,-34.5 parent: 2 type: Transform - - uid: 11544 + - uid: 11674 components: - pos: 15.5,-67.5 parent: 2 type: Transform - - uid: 11545 + - uid: 11675 components: - rot: 3.141592653589793 rad pos: 22.5,-4.5 parent: 2 type: Transform - - uid: 11546 + - uid: 11676 components: - rot: 3.141592653589793 rad pos: 21.5,-4.5 parent: 2 type: Transform - - uid: 11547 + - uid: 11677 components: - rot: -1.5707963267948966 rad pos: 65.5,-9.5 parent: 2 type: Transform - - uid: 11548 + - uid: 11678 components: - rot: -1.5707963267948966 rad pos: -7.5,-36.5 parent: 2 type: Transform - - uid: 11549 + - uid: 11679 components: - rot: -1.5707963267948966 rad pos: -7.5,-37.5 parent: 2 type: Transform - - uid: 11550 + - uid: 11680 components: - rot: -1.5707963267948966 rad pos: -7.5,-38.5 parent: 2 type: Transform - - uid: 11551 + - uid: 11681 components: - pos: 17.5,23.5 parent: 2 type: Transform - - uid: 11552 + - uid: 11682 components: - pos: 15.5,23.5 parent: 2 type: Transform - - uid: 11553 + - uid: 11683 components: - rot: 3.141592653589793 rad pos: 16.5,20.5 parent: 2 type: Transform - - uid: 11554 + - uid: 11684 components: - pos: 35.5,19.5 parent: 2 type: Transform - - uid: 11555 + - uid: 11685 components: - rot: 3.141592653589793 rad pos: 35.5,17.5 parent: 2 type: Transform - - uid: 11556 + - uid: 11686 components: - rot: -1.5707963267948966 rad pos: 18.5,29.5 parent: 2 type: Transform - - uid: 11557 + - uid: 11687 components: - rot: -1.5707963267948966 rad pos: 18.5,28.5 parent: 2 type: Transform - - uid: 11558 + - uid: 11688 components: - pos: 48.5,19.5 parent: 2 type: Transform - - uid: 11559 + - uid: 11689 components: - pos: 52.5,8.5 parent: 2 type: Transform - - uid: 11560 + - uid: 11690 components: - rot: 3.141592653589793 rad pos: 52.5,5.5 parent: 2 type: Transform - - uid: 11561 + - uid: 11691 components: - pos: 51.5,8.5 parent: 2 type: Transform - - uid: 11562 + - uid: 11692 components: - rot: 3.141592653589793 rad pos: 51.5,5.5 parent: 2 type: Transform - - uid: 11563 + - uid: 11693 components: - pos: 58.5,21.5 parent: 2 type: Transform - - uid: 11564 + - uid: 11694 components: - pos: 57.5,21.5 parent: 2 type: Transform - - uid: 11565 + - uid: 11695 components: - rot: 3.141592653589793 rad pos: 58.5,18.5 parent: 2 type: Transform - - uid: 11566 + - uid: 11696 components: - rot: 3.141592653589793 rad pos: 57.5,18.5 parent: 2 type: Transform - - uid: 11567 + - uid: 11697 components: - rot: 1.5707963267948966 rad pos: 42.5,-3.5 parent: 2 type: Transform - - uid: 11568 + - uid: 11698 components: - pos: 59.5,-10.5 parent: 2 type: Transform - - uid: 11569 + - uid: 11699 components: - pos: 58.5,-10.5 parent: 2 type: Transform - - uid: 11570 + - uid: 11700 components: - pos: 57.5,-10.5 parent: 2 type: Transform - - uid: 11571 + - uid: 11701 components: - pos: 56.5,-10.5 parent: 2 type: Transform - - uid: 11572 + - uid: 11702 components: - pos: 55.5,-10.5 parent: 2 type: Transform - - uid: 11573 + - uid: 11703 components: - rot: 3.141592653589793 rad pos: 55.5,-6.5 parent: 2 type: Transform - - uid: 11574 + - uid: 11704 components: - rot: 3.141592653589793 rad pos: 56.5,-6.5 parent: 2 type: Transform - - uid: 11575 + - uid: 11705 components: - rot: 3.141592653589793 rad pos: 57.5,-6.5 parent: 2 type: Transform - - uid: 11576 + - uid: 11706 components: - rot: 3.141592653589793 rad pos: 58.5,-6.5 parent: 2 type: Transform - - uid: 11577 + - uid: 11707 components: - rot: 3.141592653589793 rad pos: 59.5,-6.5 parent: 2 type: Transform - - uid: 11578 + - uid: 11708 components: - pos: 55.5,-14.5 parent: 2 type: Transform - - uid: 11579 + - uid: 11709 components: - pos: 56.5,-14.5 parent: 2 type: Transform - - uid: 11580 + - uid: 11710 components: - pos: 59.5,-14.5 parent: 2 type: Transform - - uid: 11581 + - uid: 11711 components: - pos: 58.5,-14.5 parent: 2 type: Transform - - uid: 11582 + - uid: 11712 components: - pos: 61.5,-10.5 parent: 2 type: Transform - - uid: 11583 + - uid: 11713 components: - pos: 60.5,-10.5 parent: 2 type: Transform - - uid: 11584 + - uid: 11714 components: - pos: 44.5,-48.5 parent: 2 type: Transform - - uid: 11585 + - uid: 11715 components: - pos: 46.5,-48.5 parent: 2 type: Transform - - uid: 11586 + - uid: 11716 components: - rot: 3.141592653589793 rad pos: 28.5,-55.5 parent: 2 type: Transform - - uid: 11587 + - uid: 11717 components: - rot: 3.141592653589793 rad pos: 29.5,-55.5 parent: 2 type: Transform - - uid: 11588 + - uid: 11718 components: - rot: 3.141592653589793 rad pos: 30.5,-55.5 parent: 2 type: Transform - - uid: 11589 + - uid: 11719 components: - rot: 3.141592653589793 rad pos: 30.5,-54.5 parent: 2 type: Transform - - uid: 11590 + - uid: 11720 components: - rot: 3.141592653589793 rad pos: 29.5,-54.5 parent: 2 type: Transform - - uid: 11591 + - uid: 11721 components: - rot: 3.141592653589793 rad pos: 28.5,-54.5 parent: 2 type: Transform - - uid: 11592 + - uid: 11722 components: - rot: 3.141592653589793 rad pos: 32.5,-54.5 parent: 2 type: Transform - - uid: 11593 + - uid: 11723 components: - rot: 3.141592653589793 rad pos: 33.5,-54.5 parent: 2 type: Transform - - uid: 11594 + - uid: 11724 components: - rot: 3.141592653589793 rad pos: 34.5,-54.5 parent: 2 type: Transform - - uid: 11595 + - uid: 11725 components: - rot: 3.141592653589793 rad pos: 34.5,-55.5 parent: 2 type: Transform - - uid: 11596 + - uid: 11726 components: - rot: 3.141592653589793 rad pos: 33.5,-55.5 parent: 2 type: Transform - - uid: 11597 + - uid: 11727 components: - rot: 3.141592653589793 rad pos: 32.5,-55.5 parent: 2 type: Transform - - uid: 11598 + - uid: 11728 components: - rot: 3.141592653589793 rad pos: 32.5,-53.5 parent: 2 type: Transform - - uid: 11599 + - uid: 11729 components: - rot: 3.141592653589793 rad pos: 33.5,-53.5 parent: 2 type: Transform - - uid: 11600 + - uid: 11730 components: - rot: 3.141592653589793 rad pos: 34.5,-53.5 parent: 2 type: Transform - - uid: 11601 + - uid: 11731 components: - rot: 3.141592653589793 rad pos: 30.5,-53.5 parent: 2 type: Transform - - uid: 11602 + - uid: 11732 components: - rot: 3.141592653589793 rad pos: 29.5,-53.5 parent: 2 type: Transform - - uid: 11603 + - uid: 11733 components: - rot: 3.141592653589793 rad pos: 28.5,-53.5 parent: 2 type: Transform - - uid: 11604 + - uid: 11734 components: - pos: 33.5,-48.5 parent: 2 type: Transform - - uid: 11605 + - uid: 11735 components: - rot: 1.5707963267948966 rad pos: 29.5,-48.5 parent: 2 type: Transform - - uid: 11606 + - uid: 11736 components: - rot: -1.5707963267948966 rad pos: -22.5,-9.5 parent: 2 type: Transform - - uid: 11607 + - uid: 11737 components: - rot: -1.5707963267948966 rad pos: -22.5,-10.5 parent: 2 type: Transform - - uid: 11608 + - uid: 11738 components: - rot: -1.5707963267948966 rad pos: -22.5,-13.5 parent: 2 type: Transform - - uid: 11609 + - uid: 11739 components: - rot: -1.5707963267948966 rad pos: -22.5,-14.5 parent: 2 type: Transform - - uid: 11610 + - uid: 11740 components: - rot: 3.141592653589793 rad pos: -48.5,10.5 parent: 2 type: Transform - - uid: 11611 + - uid: 11741 components: - pos: 44.5,-70.5 parent: 2 type: Transform - - uid: 11612 + - uid: 11742 components: - pos: 43.5,-70.5 parent: 2 type: Transform - - uid: 11613 + - uid: 11743 components: - pos: 42.5,-70.5 parent: 2 type: Transform - - uid: 11614 + - uid: 11744 components: - pos: 41.5,-70.5 parent: 2 type: Transform - - uid: 11615 + - uid: 11745 components: - pos: 37.5,-70.5 parent: 2 type: Transform - - uid: 11616 + - uid: 11746 components: - pos: 36.5,-70.5 parent: 2 type: Transform - - uid: 11617 + - uid: 11747 components: - pos: 35.5,-70.5 parent: 2 type: Transform - - uid: 11618 + - uid: 11748 components: - pos: 34.5,-70.5 parent: 2 type: Transform - - uid: 11619 + - uid: 11749 components: - rot: 3.141592653589793 rad pos: -49.5,10.5 parent: 2 type: Transform - - uid: 11620 + - uid: 11750 components: - rot: 3.141592653589793 rad pos: 23.5,16.5 parent: 2 type: Transform - - uid: 11621 + - uid: 11751 components: - rot: 1.5707963267948966 rad pos: -56.5,-75.5 parent: 2 type: Transform - - uid: 11622 + - uid: 11752 components: - rot: 1.5707963267948966 rad pos: -56.5,-76.5 parent: 2 type: Transform - - uid: 11623 + - uid: 11753 components: - rot: 1.5707963267948966 rad pos: -56.5,-77.5 parent: 2 type: Transform - - uid: 11624 + - uid: 11754 components: - rot: 3.141592653589793 rad pos: -53.5,-82.5 parent: 2 type: Transform - - uid: 11625 + - uid: 11755 components: - rot: 3.141592653589793 rad pos: -55.5,-82.5 parent: 2 type: Transform - - uid: 11626 + - uid: 11756 components: - pos: -53.5,-70.5 parent: 2 type: Transform - - uid: 11627 + - uid: 11757 components: - pos: -54.5,-70.5 parent: 2 type: Transform - - uid: 11628 + - uid: 11758 components: - pos: -55.5,-70.5 parent: 2 type: Transform - - uid: 11629 + - uid: 11759 components: - rot: -1.5707963267948966 rad pos: -36.5,-81.5 parent: 2 type: Transform - - uid: 11630 + - uid: 11760 components: - rot: -1.5707963267948966 rad pos: -36.5,-82.5 parent: 2 type: Transform - - uid: 11631 + - uid: 11761 components: - rot: -1.5707963267948966 rad pos: -36.5,-83.5 parent: 2 type: Transform - - uid: 11632 + - uid: 11762 components: - rot: 1.5707963267948966 rad pos: -47.5,-81.5 parent: 2 type: Transform - - uid: 11633 + - uid: 11763 components: - rot: 1.5707963267948966 rad pos: -47.5,-82.5 parent: 2 type: Transform - - uid: 11634 + - uid: 11764 components: - rot: 1.5707963267948966 rad pos: -47.5,-83.5 parent: 2 type: Transform - - uid: 11635 + - uid: 11765 components: - pos: -54.5,-58.5 parent: 2 type: Transform - - uid: 11636 + - uid: 11766 components: - rot: 1.5707963267948966 rad pos: 69.5,-56.5 parent: 2 type: Transform - - uid: 11637 + - uid: 11767 components: - rot: 3.141592653589793 rad pos: 34.5,-36.5 parent: 2 type: Transform - - uid: 11638 + - uid: 11768 components: - pos: 70.5,-55.5 parent: 2 type: Transform - - uid: 11639 + - uid: 11769 components: - rot: -1.5707963267948966 rad pos: -57.5,-51.5 parent: 2 type: Transform - - uid: 11640 + - uid: 11770 components: - rot: -1.5707963267948966 rad pos: -57.5,-52.5 parent: 2 type: Transform - - uid: 11641 + - uid: 11771 components: - rot: -1.5707963267948966 rad pos: -22.5,24.5 parent: 2 type: Transform - - uid: 11642 + - uid: 11772 components: - rot: -1.5707963267948966 rad pos: -22.5,23.5 parent: 2 type: Transform - - uid: 11643 + - uid: 11773 components: - rot: -1.5707963267948966 rad pos: -22.5,22.5 parent: 2 type: Transform - - uid: 11644 + - uid: 11774 components: - rot: -1.5707963267948966 rad pos: -22.5,19.5 parent: 2 type: Transform - - uid: 11645 + - uid: 11775 components: - rot: -1.5707963267948966 rad pos: -22.5,18.5 parent: 2 type: Transform - - uid: 11646 + - uid: 11776 components: - rot: 3.141592653589793 rad pos: -0.5,34.5 parent: 2 type: Transform - - uid: 11647 + - uid: 11777 components: - rot: 3.141592653589793 rad pos: -1.5,34.5 parent: 2 type: Transform - - uid: 11648 + - uid: 11778 components: - rot: 3.141592653589793 rad pos: -2.5,34.5 parent: 2 type: Transform - - uid: 11649 + - uid: 11779 components: - pos: 4.5,-52.5 parent: 2 type: Transform - - uid: 11650 + - uid: 11780 components: - rot: -1.5707963267948966 rad pos: 65.5,-7.5 parent: 2 type: Transform - - uid: 11651 + - uid: 11781 components: - rot: 3.141592653589793 rad pos: 61.5,-6.5 parent: 2 type: Transform - - uid: 11652 + - uid: 11782 components: - rot: 3.141592653589793 rad pos: 60.5,-6.5 parent: 2 type: Transform - - uid: 11653 + - uid: 11783 components: - pos: 31.5,-60.5 parent: 2 type: Transform - - uid: 11654 + - uid: 11784 components: - rot: 3.141592653589793 rad pos: 30.5,-62.5 parent: 2 type: Transform - - uid: 11655 + - uid: 11785 components: - pos: 30.5,-60.5 parent: 2 type: Transform - - uid: 11656 + - uid: 11786 components: - rot: -1.5707963267948966 rad pos: 65.5,-8.5 parent: 2 type: Transform - - uid: 11657 + - uid: 11787 components: - rot: 3.141592653589793 rad pos: -50.5,10.5 parent: 2 type: Transform - - uid: 11658 + - uid: 11788 components: - rot: 3.141592653589793 rad pos: 25.5,-4.5 parent: 2 type: Transform - - uid: 11659 + - uid: 11789 components: - pos: 71.5,-55.5 parent: 2 type: Transform - - uid: 11660 + - uid: 11790 components: - pos: 23.5,6.5 parent: 2 type: Transform - - uid: 11661 + - uid: 11791 components: - rot: 3.141592653589793 rad pos: -5.5,-16.5 parent: 2 type: Transform - - uid: 11662 + - uid: 11792 components: - rot: 3.141592653589793 rad pos: 30.5,-43.5 parent: 2 type: Transform - - uid: 11663 + - uid: 11793 components: - rot: 3.141592653589793 rad pos: 29.5,-43.5 parent: 2 type: Transform - - uid: 11664 + - uid: 11794 components: - rot: 3.141592653589793 rad pos: 28.5,-43.5 parent: 2 type: Transform - - uid: 11665 + - uid: 11795 components: - rot: 3.141592653589793 rad pos: 18.5,-43.5 parent: 2 type: Transform - - uid: 11666 + - uid: 11796 components: - rot: 3.141592653589793 rad pos: 17.5,-43.5 parent: 2 type: Transform - - uid: 11667 + - uid: 11797 components: - rot: 3.141592653589793 rad pos: 16.5,-43.5 parent: 2 type: Transform - - uid: 11668 + - uid: 11798 components: - rot: 3.141592653589793 rad pos: 44.5,-43.5 parent: 2 type: Transform - - uid: 11669 + - uid: 11799 components: - rot: 3.141592653589793 rad pos: 43.5,-43.5 parent: 2 type: Transform - - uid: 11670 + - uid: 11800 components: - rot: 3.141592653589793 rad pos: 42.5,-43.5 parent: 2 type: Transform - - uid: 11671 + - uid: 11801 components: - pos: 34.5,-34.5 parent: 2 type: Transform - - uid: 11672 + - uid: 11802 components: - pos: 3.5,-40.5 parent: 2 type: Transform - - uid: 11673 + - uid: 11803 components: - pos: -14.5,8.5 parent: 2 type: Transform - - uid: 11674 + - uid: 11804 components: - pos: -15.5,8.5 parent: 2 type: Transform - - uid: 11675 + - uid: 11805 components: - rot: 3.141592653589793 rad pos: -40.5,-0.5 parent: 2 type: Transform - - uid: 11676 + - uid: 11806 components: - rot: 3.141592653589793 rad pos: -39.5,-0.5 parent: 2 type: Transform - - uid: 11677 + - uid: 11807 components: - rot: 3.141592653589793 rad pos: -38.5,-0.5 parent: 2 type: Transform - - uid: 11678 + - uid: 11808 components: - rot: 3.141592653589793 rad pos: -36.5,-0.5 parent: 2 type: Transform - - uid: 11679 + - uid: 11809 components: - rot: 3.141592653589793 rad pos: -35.5,-0.5 parent: 2 type: Transform - - uid: 11680 + - uid: 11810 components: - rot: 3.141592653589793 rad pos: -34.5,-0.5 parent: 2 type: Transform - - uid: 11681 + - uid: 11811 components: - rot: -1.5707963267948966 rad pos: -17.5,-70.5 parent: 2 type: Transform - - uid: 11682 + - uid: 11812 components: - rot: -1.5707963267948966 rad pos: -17.5,-71.5 parent: 2 type: Transform - - uid: 11683 + - uid: 11813 components: - rot: 3.141592653589793 rad pos: 31.5,-62.5 parent: 2 type: Transform - - uid: 11684 + - uid: 11814 components: - rot: -1.5707963267948966 rad pos: -18.5,-34.5 parent: 2 type: Transform - - uid: 11685 + - uid: 11815 components: - rot: -1.5707963267948966 rad pos: -18.5,-33.5 parent: 2 type: Transform - - uid: 11686 + - uid: 11816 components: - rot: -1.5707963267948966 rad pos: -18.5,-32.5 parent: 2 type: Transform - - uid: 11687 + - uid: 11817 components: - rot: 1.5707963267948966 rad pos: -34.5,-67.5 parent: 2 type: Transform - - uid: 11688 + - uid: 11818 components: - rot: 3.141592653589793 rad pos: 22.5,16.5 parent: 2 type: Transform - - uid: 11689 + - uid: 11819 components: - rot: 3.141592653589793 rad pos: 21.5,16.5 parent: 2 type: Transform - - uid: 11690 + - uid: 11820 components: - rot: 3.141592653589793 rad pos: 32.5,-18.5 parent: 2 type: Transform - - uid: 11691 + - uid: 11821 components: - rot: 3.141592653589793 rad pos: 31.5,-18.5 parent: 2 type: Transform - - uid: 11692 + - uid: 11822 components: - rot: 3.141592653589793 rad pos: 30.5,-18.5 parent: 2 type: Transform - - uid: 11693 + - uid: 11823 components: - rot: 3.141592653589793 rad pos: 20.5,-18.5 parent: 2 type: Transform - - uid: 11694 + - uid: 11824 components: - rot: 3.141592653589793 rad pos: 19.5,-18.5 parent: 2 type: Transform - - uid: 11695 + - uid: 11825 components: - rot: 3.141592653589793 rad pos: 18.5,-18.5 parent: 2 type: Transform - - uid: 11696 + - uid: 11826 components: - rot: 1.5707963267948966 rad pos: 18.5,1.5 parent: 2 type: Transform - - uid: 11697 + - uid: 11827 components: - rot: 1.5707963267948966 rad pos: 18.5,0.5 parent: 2 type: Transform - - uid: 11698 + - uid: 11828 components: - rot: -1.5707963267948966 rad pos: 57.5,58.5 parent: 2 type: Transform - - uid: 11699 + - uid: 11829 components: - rot: -1.5707963267948966 rad pos: 57.5,57.5 parent: 2 type: Transform - - uid: 11700 + - uid: 11830 components: - rot: -1.5707963267948966 rad pos: 57.5,56.5 parent: 2 type: Transform - - uid: 11701 + - uid: 11831 components: - rot: 1.5707963267948966 rad pos: 51.5,58.5 parent: 2 type: Transform - - uid: 11702 + - uid: 11832 components: - rot: 1.5707963267948966 rad pos: 51.5,57.5 parent: 2 type: Transform - - uid: 11703 + - uid: 11833 components: - rot: 1.5707963267948966 rad pos: 51.5,56.5 parent: 2 type: Transform - - uid: 11704 + - uid: 11834 components: - rot: -1.5707963267948966 rad pos: 55.5,29.5 parent: 2 type: Transform - - uid: 11705 + - uid: 11835 components: - rot: -1.5707963267948966 rad pos: 55.5,28.5 parent: 2 type: Transform - - uid: 11706 + - uid: 11836 components: - rot: 1.5707963267948966 rad pos: 52.5,29.5 parent: 2 type: Transform - - uid: 11707 + - uid: 11837 components: - rot: 1.5707963267948966 rad pos: 52.5,28.5 parent: 2 type: Transform - - uid: 11708 + - uid: 11838 components: - pos: -18.5,67.5 parent: 2 type: Transform - - uid: 11709 + - uid: 11839 components: - pos: -16.5,67.5 parent: 2 type: Transform - - uid: 11710 + - uid: 11840 components: - pos: 6.5,34.5 parent: 2 type: Transform - - uid: 11711 + - uid: 11841 components: - pos: 10.5,34.5 parent: 2 type: Transform - - uid: 11712 + - uid: 11842 components: - pos: -1.5,43.5 parent: 2 type: Transform - - uid: 11713 + - uid: 11843 components: - pos: -3.5,43.5 parent: 2 type: Transform - - uid: 11714 + - uid: 11844 components: - pos: -16.5,63.5 parent: 2 type: Transform - - uid: 11715 + - uid: 11845 components: - pos: -17.5,63.5 parent: 2 type: Transform - - uid: 11716 + - uid: 11846 components: - pos: -18.5,63.5 parent: 2 type: Transform - - uid: 11717 + - uid: 11847 components: - rot: -1.5707963267948966 rad pos: -15.5,62.5 parent: 2 type: Transform - - uid: 11718 + - uid: 11848 components: - rot: -1.5707963267948966 rad pos: -15.5,61.5 parent: 2 type: Transform - - uid: 11719 + - uid: 11849 components: - rot: 1.5707963267948966 rad pos: -19.5,62.5 parent: 2 type: Transform - - uid: 11720 + - uid: 11850 components: - rot: 1.5707963267948966 rad pos: -19.5,61.5 parent: 2 type: Transform - - uid: 11721 + - uid: 11851 components: - rot: 3.141592653589793 rad pos: -18.5,60.5 parent: 2 type: Transform - - uid: 11722 + - uid: 11852 components: - rot: 3.141592653589793 rad pos: -17.5,60.5 parent: 2 type: Transform - - uid: 11723 + - uid: 11853 components: - rot: 3.141592653589793 rad pos: -16.5,60.5 parent: 2 type: Transform - - uid: 11724 + - uid: 11854 components: - rot: -1.5707963267948966 rad pos: -40.5,-90.5 parent: 2 type: Transform - - uid: 11725 + - uid: 11855 components: - rot: -1.5707963267948966 rad pos: -40.5,-89.5 parent: 2 type: Transform - - uid: 11726 + - uid: 11856 components: - rot: 1.5707963267948966 rad pos: -43.5,-89.5 parent: 2 type: Transform - - uid: 11727 + - uid: 11857 components: - rot: 1.5707963267948966 rad pos: -43.5,-90.5 parent: 2 type: Transform - - uid: 11728 + - uid: 11858 components: - pos: -42.5,-97.5 parent: 2 type: Transform - - uid: 11729 + - uid: 11859 components: - rot: -1.5707963267948966 rad pos: -4.5,-99.5 parent: 2 type: Transform - - uid: 11730 + - uid: 11860 components: - rot: 1.5707963267948966 rad pos: 62.5,-7.5 parent: 2 type: Transform - - uid: 11731 + - uid: 11861 components: - rot: 1.5707963267948966 rad pos: 62.5,-8.5 parent: 2 type: Transform - - uid: 11732 + - uid: 11862 components: - rot: 1.5707963267948966 rad pos: 62.5,-9.5 parent: 2 type: Transform - - uid: 11733 + - uid: 11863 components: - pos: 2.5,-40.5 parent: 2 type: Transform - - uid: 11734 + - uid: 11864 components: - pos: 60.5,-64.5 parent: 2 type: Transform - - uid: 11735 + - uid: 11865 components: - pos: 64.5,-66.5 parent: 2 type: Transform - - uid: 11736 + - uid: 11866 components: - pos: 64.5,-64.5 parent: 2 type: Transform - - uid: 11737 + - uid: 11867 components: - pos: 62.5,-66.5 parent: 2 type: Transform - - uid: 11738 + - uid: 11868 components: - pos: 63.5,-66.5 parent: 2 type: Transform - - uid: 11739 + - uid: 11869 components: - pos: 59.5,-66.5 parent: 2 type: Transform - - uid: 11740 + - uid: 11870 components: - pos: 58.5,-66.5 parent: 2 type: Transform - - uid: 11741 + - uid: 11871 components: - pos: 62.5,-62.5 parent: 2 type: Transform - - uid: 11742 + - uid: 11872 components: - pos: 63.5,-62.5 parent: 2 type: Transform - - uid: 11743 + - uid: 11873 components: - pos: 59.5,-62.5 parent: 2 type: Transform - - uid: 11744 + - uid: 11874 components: - pos: 58.5,-62.5 parent: 2 type: Transform - - uid: 11745 + - uid: 11875 components: - pos: 58.5,-64.5 parent: 2 type: Transform - - uid: 11746 + - uid: 11876 components: - pos: 59.5,-64.5 parent: 2 type: Transform - - uid: 11747 + - uid: 11877 components: - pos: 62.5,-64.5 parent: 2 type: Transform - - uid: 11748 + - uid: 11878 components: - pos: 63.5,-64.5 parent: 2 type: Transform - - uid: 11749 + - uid: 11879 components: - pos: 64.5,-62.5 parent: 2 type: Transform - - uid: 11750 + - uid: 11880 components: - pos: 60.5,-62.5 parent: 2 type: Transform - - uid: 11751 + - uid: 11881 components: - pos: 50.5,-32.5 parent: 2 type: Transform - - uid: 11752 + - uid: 11882 components: - pos: 60.5,-66.5 parent: 2 type: Transform - - uid: 11753 + - uid: 11883 components: - rot: 1.5707963267948966 rad pos: 69.5,-57.5 parent: 2 type: Transform - - uid: 11754 + - uid: 11884 components: - rot: -1.5707963267948966 rad pos: 56.5,-67.5 parent: 2 type: Transform - - uid: 11755 + - uid: 11885 components: - rot: 1.5707963267948966 rad pos: 54.5,-67.5 parent: 2 type: Transform - - uid: 11756 + - uid: 11886 components: - rot: 3.141592653589793 rad pos: 45.5,-43.5 parent: 2 type: Transform - - uid: 11757 + - uid: 11887 components: - pos: -5.5,-14.5 parent: 2 type: Transform - - uid: 11758 + - uid: 11888 components: - rot: 3.141592653589793 rad pos: 25.5,-69.5 parent: 2 type: Transform - - uid: 11759 + - uid: 11889 components: - rot: 3.141592653589793 rad pos: 26.5,-69.5 parent: 2 type: Transform - - uid: 11760 + - uid: 11890 components: - pos: 50.5,-71.5 parent: 2 type: Transform - - uid: 11761 + - uid: 11891 components: - rot: 3.141592653589793 rad pos: 50.5,-73.5 parent: 2 type: Transform - - uid: 11762 + - uid: 11892 components: - pos: -37.5,-45.5 parent: 2 type: Transform - - uid: 11763 + - uid: 11893 components: - pos: -36.5,-45.5 parent: 2 type: Transform - - uid: 11764 + - uid: 11894 components: - pos: -71.5,-54.5 parent: 2 type: Transform - - uid: 11765 + - uid: 11895 components: - pos: -72.5,-54.5 parent: 2 type: Transform - - uid: 11766 + - uid: 11896 components: - pos: -73.5,-54.5 parent: 2 type: Transform - - uid: 11767 + - uid: 11897 components: - rot: 3.141592653589793 rad pos: -73.5,-53.5 parent: 2 type: Transform - - uid: 11768 + - uid: 11898 components: - rot: 3.141592653589793 rad pos: -72.5,-53.5 parent: 2 type: Transform - - uid: 11769 + - uid: 11899 components: - rot: 3.141592653589793 rad pos: -71.5,-53.5 parent: 2 type: Transform - - uid: 11770 + - uid: 11900 components: - rot: 3.141592653589793 rad pos: -70.5,-53.5 parent: 2 type: Transform - - uid: 11771 + - uid: 11901 components: - pos: -70.5,-54.5 parent: 2 type: Transform - proto: ChairFolding entities: - - uid: 11772 + - uid: 11902 components: - rot: -1.5707963267948966 rad pos: 28.5,1.5 parent: 2 type: Transform - - uid: 11773 + - uid: 11903 components: - rot: -1.5707963267948966 rad pos: 28.5,3.5 parent: 2 type: Transform - - uid: 11774 + - uid: 11904 components: - rot: -1.5707963267948966 rad pos: 29.5,1.5 parent: 2 type: Transform - - uid: 11775 + - uid: 11905 components: - rot: -1.5707963267948966 rad pos: 29.5,2.5 parent: 2 type: Transform - - uid: 11776 + - uid: 11906 components: - rot: -1.5707963267948966 rad pos: 29.5,-0.5 parent: 2 type: Transform - - uid: 11777 + - uid: 11907 components: - rot: -1.5707963267948966 rad pos: 28.5,-0.5 parent: 2 type: Transform - - uid: 11778 + - uid: 11908 components: - rot: -1.5707963267948966 rad pos: 28.5,0.5 parent: 2 type: Transform - - uid: 11779 + - uid: 11909 components: - rot: -1.5707963267948966 rad pos: 29.5,0.5 parent: 2 type: Transform - - uid: 11780 + - uid: 11910 components: - rot: -1.5707963267948966 rad pos: 28.5,-1.5 parent: 2 type: Transform - - uid: 11781 + - uid: 11911 components: - rot: -1.5707963267948966 rad pos: 28.5,2.5 parent: 2 type: Transform - - uid: 11782 + - uid: 11912 components: - rot: -1.5707963267948966 rad pos: 18.5,26.5 parent: 2 type: Transform - - uid: 11783 + - uid: 11913 components: - rot: 1.5707963267948966 rad pos: -25.5,53.5 parent: 2 type: Transform - - uid: 11784 + - uid: 11914 components: - pos: -27.5,-28.5 parent: 2 type: Transform - - uid: 11785 + - uid: 11915 components: - pos: -34.5,-69.5 parent: 2 type: Transform - - uid: 11786 + - uid: 11916 components: - pos: -24.5,-95.5 parent: 2 type: Transform - - uid: 11787 + - uid: 11917 components: - pos: -25.5,-95.5 parent: 2 type: Transform - - uid: 11788 + - uid: 11918 components: - pos: -19.5,-95.5 parent: 2 type: Transform - - uid: 11789 + - uid: 11919 components: - pos: -29.5,-28.5 parent: 2 type: Transform - proto: ChairOfficeDark entities: - - uid: 11790 + - uid: 11920 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 2 + type: Transform + - uid: 11921 components: - rot: 1.5707963267948966 rad pos: -25.5,54.5 parent: 2 type: Transform - - uid: 11791 + - uid: 11922 components: - rot: -1.5707963267948966 rad pos: 38.5,-3.5 parent: 2 type: Transform - - uid: 11792 + - uid: 11923 components: - rot: -1.5707963267948966 rad pos: 38.5,-4.5 parent: 2 type: Transform - - uid: 11793 + - uid: 11924 components: - rot: -1.5707963267948966 rad pos: 71.5,-36.5 parent: 2 type: Transform - - uid: 11794 + - uid: 11925 components: - rot: 3.141592653589793 rad pos: 68.5,-44.5 parent: 2 type: Transform - - uid: 11795 + - uid: 11926 components: - rot: 1.5707963267948966 rad pos: -27.5,-12.5 parent: 2 type: Transform - - uid: 11796 + - uid: 11927 components: - rot: 3.141592653589793 rad pos: 50.5,-53.5 parent: 2 type: Transform - - uid: 11797 + - uid: 11928 components: - rot: 1.5707963267948966 rad pos: -22.5,-34.5 parent: 2 type: Transform - - uid: 11798 + - uid: 11929 components: - rot: 3.141592653589793 rad pos: 21.5,-45.5 parent: 2 type: Transform - - uid: 11799 + - uid: 11930 components: - rot: -1.5707963267948966 rad pos: -16.5,25.5 parent: 2 type: Transform - - uid: 11800 + - uid: 11931 components: - rot: -1.5707963267948966 rad pos: -27.5,22.5 parent: 2 type: Transform - - uid: 11801 + - uid: 11932 components: - pos: -32.5,30.5 parent: 2 type: Transform - - uid: 11802 + - uid: 11933 components: - rot: 1.5707963267948966 rad pos: 1.5,20.5 parent: 2 type: Transform - - uid: 11803 + - uid: 11934 components: - pos: -33.5,-69.5 parent: 2 type: Transform - - uid: 11804 + - uid: 11935 components: - rot: 1.5707963267948966 rad pos: 72.5,37.5 parent: 2 type: Transform - - uid: 11805 + - uid: 11936 components: - rot: -1.5707963267948966 rad pos: -4.5,-97.5 parent: 2 type: Transform - - uid: 11806 + - uid: 11937 components: - rot: 1.5707963267948966 rad pos: -13.5,-18.5 parent: 2 type: Transform - - uid: 11807 + - uid: 11938 components: - rot: 3.141592653589793 rad pos: 62.5,-31.5 parent: 2 type: Transform - - uid: 11808 + - uid: 11939 components: - rot: 3.141592653589793 rad pos: 73.5,-32.5 parent: 2 type: Transform - - uid: 11809 + - uid: 11940 components: - rot: -1.5707963267948966 rad pos: -16.5,-22.5 @@ -76947,86 +77710,86 @@ entities: type: Transform - proto: ChairOfficeLight entities: - - uid: 11810 + - uid: 11941 components: - rot: 3.141592653589793 rad pos: 27.5,-22.5 parent: 2 type: Transform - - uid: 11811 + - uid: 11942 components: - rot: 3.141592653589793 rad pos: 29.5,-22.5 parent: 2 type: Transform - - uid: 11813 + - uid: 11943 components: - rot: 3.141592653589793 rad pos: 23.5,-22.5 parent: 2 type: Transform - - uid: 11814 + - uid: 11944 components: - rot: 3.141592653589793 rad pos: 21.5,-22.5 parent: 2 type: Transform - - uid: 11815 + - uid: 11945 components: - pos: -23.5,-70.5 parent: 2 type: Transform - - uid: 11816 + - uid: 11946 components: - rot: 3.141592653589793 rad pos: -4.5,-49.5 parent: 2 type: Transform - - uid: 11817 + - uid: 11947 components: - rot: 3.141592653589793 rad pos: 25.5,-25.5 parent: 2 type: Transform - - uid: 11818 + - uid: 11948 components: - pos: -10.5,-36.5 parent: 2 type: Transform - - uid: 11819 + - uid: 11949 components: - rot: 3.141592653589793 rad pos: 17.5,20.5 parent: 2 type: Transform - - uid: 11820 + - uid: 11950 components: - rot: 3.141592653589793 rad pos: 53.5,12.5 parent: 2 type: Transform - - uid: 11821 + - uid: 11951 components: - rot: -1.5707963267948966 rad pos: 52.5,-41.5 parent: 2 type: Transform - - uid: 11822 + - uid: 11952 components: - pos: 42.5,-39.5 parent: 2 type: Transform - - uid: 11823 + - uid: 11953 components: - pos: -26.5,15.5 parent: 2 type: Transform - - uid: 11824 + - uid: 11954 components: - pos: -23.5,12.5 parent: 2 type: Transform - - uid: 11825 + - uid: 11955 components: - rot: 1.5707963267948966 rad pos: 47.5,6.5 @@ -77034,637 +77797,667 @@ entities: type: Transform - proto: ChairPilotSeat entities: - - uid: 11826 + - uid: 11956 components: - rot: 3.141592653589793 rad pos: 25.5,-22.5 parent: 2 type: Transform - - uid: 11827 + - uid: 11957 components: - rot: 3.141592653589793 rad pos: 16.5,23.5 parent: 2 type: Transform - - uid: 11828 + - uid: 11958 components: - pos: 25.5,20.5 parent: 2 type: Transform - - uid: 11829 + - uid: 11959 components: - rot: 3.141592653589793 rad pos: 62.5,-54.5 parent: 2 type: Transform - - uid: 11830 + - uid: 11960 components: - rot: 3.141592653589793 rad pos: 31.5,-47.5 parent: 2 type: Transform - - uid: 11831 + - uid: 11961 components: - pos: 62.5,-0.5 parent: 2 type: Transform - - uid: 11832 + - uid: 11962 components: - pos: 59.5,-0.5 parent: 2 type: Transform - - uid: 11833 + - uid: 11963 components: - pos: 61.5,-0.5 parent: 2 type: Transform - - uid: 11834 + - uid: 11964 components: - pos: 60.5,-0.5 parent: 2 type: Transform - - uid: 11835 + - uid: 11965 components: - rot: -1.5707963267948966 rad pos: -54.5,-13.5 parent: 2 type: Transform - - uid: 11836 + - uid: 11966 components: - rot: -1.5707963267948966 rad pos: 31.5,-28.5 parent: 2 type: Transform - - uid: 11837 + - uid: 11967 components: - rot: 1.5707963267948966 rad pos: -52.5,-87.5 parent: 2 type: Transform - - uid: 11838 + - uid: 11968 components: - pos: 54.5,58.5 parent: 2 type: Transform - proto: ChairWood entities: - - uid: 1982 + - uid: 11969 components: - rot: 3.141592653589793 rad pos: 23.5,-36.5 parent: 2 type: Transform - - uid: 1993 + - uid: 11970 components: - rot: -1.5707963267948966 rad pos: 24.5,-35.5 parent: 2 type: Transform - - uid: 11839 + - uid: 11971 components: - pos: 9.5,-5.5 parent: 2 type: Transform - - uid: 11840 + - uid: 11972 components: - rot: 1.5707963267948966 rad pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 11841 + - uid: 11973 components: - rot: 1.5707963267948966 rad pos: 8.5,-7.5 parent: 2 type: Transform - - uid: 11842 + - uid: 11974 components: - rot: -1.5707963267948966 rad pos: 3.5,1.5 parent: 2 type: Transform - - uid: 11843 + - uid: 11975 components: - rot: 1.5707963267948966 rad pos: 1.5,1.5 parent: 2 type: Transform - - uid: 11844 + - uid: 11976 components: - rot: -1.5707963267948966 rad pos: 11.5,-7.5 parent: 2 type: Transform - - uid: 11845 + - uid: 11977 components: - pos: 10.5,-5.5 parent: 2 type: Transform - - uid: 11846 + - uid: 11978 components: - rot: 3.141592653589793 rad pos: 10.5,-8.5 parent: 2 type: Transform - - uid: 11847 + - uid: 11979 components: - rot: 1.5707963267948966 rad pos: 10.5,7.5 parent: 2 type: Transform - - uid: 11848 + - uid: 11980 components: - rot: 3.141592653589793 rad pos: 9.5,-8.5 parent: 2 type: Transform - - uid: 11849 + - uid: 11981 components: - rot: -1.5707963267948966 rad pos: 11.5,-6.5 parent: 2 type: Transform - - uid: 11850 + - uid: 11982 components: - rot: 1.5707963267948966 rad pos: 1.5,0.5 parent: 2 type: Transform - - uid: 11851 + - uid: 11983 components: - rot: -1.5707963267948966 rad pos: 3.5,0.5 parent: 2 type: Transform - - uid: 11852 + - uid: 11984 components: - rot: -1.5707963267948966 rad pos: 12.5,8.5 parent: 2 type: Transform - - uid: 11853 + - uid: 11985 components: - rot: -1.5707963267948966 rad pos: 18.5,27.5 parent: 2 type: Transform - - uid: 11854 + - uid: 11986 components: - pos: -1.5,-16.5 parent: 2 type: Transform - - uid: 11855 + - uid: 11987 components: - pos: 11.5,12.5 parent: 2 type: Transform - - uid: 11856 + - uid: 11988 components: - pos: 12.5,12.5 parent: 2 type: Transform - - uid: 11857 + - uid: 11989 components: - rot: -1.5707963267948966 rad pos: 12.5,7.5 parent: 2 type: Transform - - uid: 11858 + - uid: 11990 components: - rot: 3.141592653589793 rad pos: 12.5,10.5 parent: 2 type: Transform - - uid: 11859 + - uid: 11991 components: - rot: 3.141592653589793 rad pos: 11.5,10.5 parent: 2 type: Transform - - uid: 11860 + - uid: 11992 components: - rot: 1.5707963267948966 rad pos: -9.5,1.5 parent: 2 type: Transform - - uid: 11861 + - uid: 11993 components: - rot: 1.5707963267948966 rad pos: -9.5,0.5 parent: 2 type: Transform - - uid: 11862 + - uid: 11994 components: - rot: 1.5707963267948966 rad pos: 10.5,8.5 parent: 2 type: Transform - - uid: 11863 + - uid: 11995 components: - rot: 1.5707963267948966 rad pos: 53.5,-26.5 parent: 2 type: Transform - - uid: 11864 + - uid: 11996 components: - rot: -1.5707963267948966 rad pos: -32.5,-67.5 parent: 2 type: Transform - - uid: 11865 + - uid: 11997 components: - rot: 3.141592653589793 rad pos: -36.5,9.5 parent: 2 type: Transform - - uid: 11866 + - uid: 11998 components: - rot: 3.141592653589793 rad pos: -35.5,9.5 parent: 2 type: Transform - - uid: 11867 + - uid: 11999 components: - rot: 3.141592653589793 rad pos: -36.5,10.5 parent: 2 type: Transform - - uid: 11868 + - uid: 12000 components: - rot: 3.141592653589793 rad pos: -35.5,10.5 parent: 2 type: Transform - - uid: 11869 + - uid: 12001 components: - rot: 3.141592653589793 rad pos: -35.5,11.5 parent: 2 type: Transform - - uid: 11870 + - uid: 12002 components: - rot: 3.141592653589793 rad pos: -36.5,11.5 parent: 2 type: Transform - - uid: 11871 + - uid: 12003 components: - rot: 3.141592653589793 rad pos: -36.5,12.5 parent: 2 type: Transform - - uid: 11872 + - uid: 12004 components: - rot: 3.141592653589793 rad pos: -35.5,12.5 parent: 2 type: Transform - - uid: 11873 + - uid: 12005 components: - rot: 3.141592653589793 rad pos: -39.5,12.5 parent: 2 type: Transform - - uid: 11874 + - uid: 12006 components: - rot: 3.141592653589793 rad pos: -40.5,11.5 parent: 2 type: Transform - - uid: 11875 + - uid: 12007 components: - rot: 3.141592653589793 rad pos: -39.5,11.5 parent: 2 type: Transform - - uid: 11876 + - uid: 12008 components: - rot: 3.141592653589793 rad pos: -40.5,10.5 parent: 2 type: Transform - - uid: 11877 + - uid: 12009 components: - rot: 3.141592653589793 rad pos: -39.5,10.5 parent: 2 type: Transform - - uid: 11878 + - uid: 12010 components: - rot: 3.141592653589793 rad pos: -40.5,9.5 parent: 2 type: Transform - - uid: 11879 + - uid: 12011 components: - rot: 3.141592653589793 rad pos: -39.5,9.5 parent: 2 type: Transform - - uid: 11880 + - uid: 12012 components: - rot: 3.141592653589793 rad pos: -40.5,12.5 parent: 2 type: Transform - - uid: 11881 + - uid: 12013 components: - rot: 3.141592653589793 rad pos: -3.5,51.5 parent: 2 type: Transform - - uid: 11882 + - uid: 12014 components: - pos: -3.5,53.5 parent: 2 type: Transform - - uid: 11883 + - uid: 12015 components: - pos: -17.5,43.5 parent: 2 type: Transform - - uid: 11884 + - uid: 12016 components: - pos: -16.5,43.5 parent: 2 type: Transform - - uid: 11885 + - uid: 12017 components: - rot: 3.141592653589793 rad pos: -17.5,40.5 parent: 2 type: Transform - - uid: 11886 + - uid: 12018 components: - rot: -1.5707963267948966 rad pos: -7.5,1.5 parent: 2 type: Transform - - uid: 11887 + - uid: 12019 components: - rot: -1.5707963267948966 rad pos: -7.5,0.5 parent: 2 type: Transform - - uid: 11888 + - uid: 12020 components: - rot: 1.5707963267948966 rad pos: -5.5,1.5 parent: 2 type: Transform - - uid: 11889 + - uid: 12021 components: - rot: 1.5707963267948966 rad pos: -5.5,0.5 parent: 2 type: Transform - - uid: 11890 + - uid: 12022 components: - rot: -1.5707963267948966 rad pos: -3.5,1.5 parent: 2 type: Transform - - uid: 11891 + - uid: 12023 components: - rot: -1.5707963267948966 rad pos: -3.5,0.5 parent: 2 type: Transform - - uid: 11892 + - uid: 12024 components: - rot: 3.141592653589793 rad pos: -16.5,40.5 parent: 2 type: Transform - - uid: 11893 + - uid: 12025 components: - rot: 1.5707963267948966 rad pos: -15.5,47.5 parent: 2 type: Transform - - uid: 11894 + - uid: 12026 components: - rot: -1.5707963267948966 rad pos: 46.5,-16.5 parent: 2 type: Transform - - uid: 11895 + - uid: 12027 components: - rot: -1.5707963267948966 rad pos: 9.5,32.5 parent: 2 type: Transform - - uid: 11896 + - uid: 12028 components: - rot: 1.5707963267948966 rad pos: 7.5,32.5 parent: 2 type: Transform - - uid: 11897 + - uid: 12029 components: - rot: 3.141592653589793 rad pos: -11.5,34.5 parent: 2 type: Transform - - uid: 11898 + - uid: 12030 components: - rot: -1.5707963267948966 rad pos: 41.5,43.5 parent: 2 type: Transform - - uid: 11899 + - uid: 12031 components: - rot: -1.5707963267948966 rad pos: 39.5,46.5 parent: 2 type: Transform - - uid: 11900 + - uid: 12032 components: - rot: -1.5707963267948966 rad pos: 39.5,45.5 parent: 2 type: Transform - - uid: 11901 + - uid: 12033 components: - rot: 1.5707963267948966 rad pos: 36.5,46.5 parent: 2 type: Transform - - uid: 11902 + - uid: 12034 components: - rot: 1.5707963267948966 rad pos: 36.5,45.5 parent: 2 type: Transform - - uid: 11903 + - uid: 12035 components: - rot: 3.141592653589793 rad pos: 42.5,47.5 parent: 2 type: Transform - - uid: 11904 + - uid: 12036 components: - rot: 3.141592653589793 rad pos: 43.5,47.5 parent: 2 type: Transform - - uid: 11905 + - uid: 12037 components: - rot: -1.5707963267948966 rad pos: 33.5,47.5 parent: 2 type: Transform - - uid: 11906 + - uid: 12038 components: - rot: -1.5707963267948966 rad pos: 33.5,46.5 parent: 2 type: Transform - - uid: 11907 + - uid: 12039 components: - rot: 1.5707963267948966 rad pos: 32.5,44.5 parent: 2 type: Transform - - uid: 11908 + - uid: 12040 components: - rot: -1.5707963267948966 rad pos: 34.5,44.5 parent: 2 type: Transform - - uid: 11909 + - uid: 12041 components: - rot: 1.5707963267948966 rad pos: 39.5,43.5 parent: 2 type: Transform - - uid: 11910 + - uid: 12042 components: - pos: -41.5,-97.5 parent: 2 type: Transform - - uid: 11911 + - uid: 12043 components: - rot: -1.5707963267948966 rad pos: 4.5,-35.5 parent: 2 type: Transform - - uid: 11912 + - uid: 12044 components: - rot: 1.5707963267948966 rad pos: 2.5,-35.5 parent: 2 type: Transform - - uid: 11913 + - uid: 12045 components: - pos: -23.5,30.5 parent: 2 type: Transform - - uid: 14157 + - uid: 12046 components: - rot: 1.5707963267948966 rad pos: 22.5,-35.5 parent: 2 type: Transform - - uid: 21344 + - uid: 12047 components: - pos: 23.5,-34.5 parent: 2 type: Transform + - uid: 12048 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-38.5 + parent: 2 + type: Transform + - uid: 12049 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-39.5 + parent: 2 + type: Transform + - uid: 12050 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-39.5 + parent: 2 + type: Transform + - uid: 12051 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-39.5 + parent: 2 + type: Transform + - uid: 12052 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 2 + type: Transform - proto: CheapLighter entities: - - uid: 11915 + - uid: 12054 components: - flags: InContainer type: MetaData - - parent: 11914 + - parent: 12053 type: Transform - canCollide: False type: Physics - - uid: 11916 + - uid: 12055 components: - pos: 1.9080955,23.554485 parent: 2 type: Transform - proto: CheapRollerBed entities: - - uid: 11917 + - uid: 12056 components: - pos: -9.460541,-47.24853 parent: 2 type: Transform - - uid: 11918 + - uid: 12057 components: - pos: -9.476166,-48.27978 parent: 2 type: Transform - proto: chem_master entities: - - uid: 11919 + - uid: 12058 components: - pos: 2.5,-45.5 parent: 2 type: Transform - - uid: 11920 + - uid: 12059 components: - pos: 2.5,-50.5 parent: 2 type: Transform - - uid: 11921 + - uid: 12060 components: - pos: 2.5,-47.5 parent: 2 type: Transform - proto: ChemDispenser entities: - - uid: 11922 + - uid: 12061 components: - pos: 4.5,-45.5 parent: 2 type: Transform - - uid: 11923 + - uid: 12062 components: - pos: 4.5,-47.5 parent: 2 type: Transform - - uid: 11924 + - uid: 12063 components: - pos: 2.5,-49.5 parent: 2 type: Transform - proto: ChemistryHotplate entities: - - uid: 11925 + - uid: 12064 components: - pos: 4.5,-50.5 parent: 2 type: Transform - proto: ChessBoard entities: - - uid: 11926 + - uid: 12065 components: - pos: 52.446415,7.1683345 parent: 2 type: Transform - - uid: 11927 + - uid: 12066 components: - rot: 3.141592653589793 rad pos: -5.5158696,-15.414865 parent: 2 type: Transform - - uid: 11928 + - uid: 12067 components: - rot: 1.5707963267948966 rad pos: 8.516274,32.607613 parent: 2 type: Transform - - uid: 11929 + - uid: 12068 components: - rot: 3.141592653589793 rad pos: -3.4812293,52.59116 parent: 2 type: Transform - - uid: 11930 + - uid: 12069 components: - rot: 3.141592653589793 rad pos: 50.48214,-72.40164 @@ -77672,7 +78465,7 @@ entities: type: Transform - proto: ChurchOrganInstrument entities: - - uid: 11931 + - uid: 12070 components: - rot: -1.5707963267948966 rad pos: -34.5,13.5 @@ -77680,51 +78473,51 @@ entities: type: Transform - proto: Cigar entities: - - uid: 11932 + - uid: 12071 components: - pos: 13.506795,-34.413578 parent: 2 type: Transform - - uid: 11933 + - uid: 12072 components: - pos: 13.55367,-32.429203 parent: 2 type: Transform - - uid: 11934 + - uid: 12073 components: - pos: 13.49117,-32.382328 parent: 2 type: Transform - - uid: 11935 + - uid: 12074 components: - pos: 13.444295,-34.351078 parent: 2 type: Transform - proto: CigarCase entities: - - uid: 11936 + - uid: 12075 components: - pos: -12.420865,-35.409706 parent: 2 type: Transform - - uid: 11937 + - uid: 12076 components: - pos: 15.66736,-87.50202 parent: 2 type: Transform - proto: Cigarette entities: - - uid: 11938 + - uid: 12077 components: - pos: 15.438844,-64.32231 parent: 2 type: Transform - - uid: 11939 + - uid: 12078 components: - pos: 63.44384,24.664883 parent: 2 type: Transform - - uid: 11940 + - uid: 12079 components: - rot: -1.5707963267948966 rad pos: 2.361197,23.616985 @@ -77732,48 +78525,48 @@ entities: type: Transform - proto: CigarGold entities: - - uid: 11943 + - uid: 12080 components: - rot: -1.5707963267948966 rad pos: 45.625916,-26.476032 parent: 2 type: Transform - - uid: 11944 + - uid: 12081 components: - pos: 65.5063,-0.5499393 parent: 2 type: Transform - proto: CigarGoldCase entities: - - uid: 11945 + - uid: 12082 components: - pos: 61.545517,-1.3427625 parent: 2 type: Transform - proto: CigPackBlack entities: - - uid: 11946 + - uid: 12083 components: - pos: 37.5,46.5 parent: 2 type: Transform - proto: CigPackBlue entities: - - uid: 11947 + - uid: 12084 components: - pos: 47.844124,50.55344 parent: 2 type: Transform - proto: CigPackMixedMedical entities: - - uid: 3057 + - uid: 12085 components: - pos: -16.642096,-35.41203 parent: 2 type: Transform - proto: CircuitImprinter entities: - - uid: 11948 + - uid: 12086 components: - pos: 44.5,-35.5 parent: 2 @@ -77785,14 +78578,14 @@ entities: type: MaterialStorage - proto: ClockworkShield entities: - - uid: 11949 + - uid: 12087 components: - pos: 57.48767,32.508053 parent: 2 type: Transform - proto: ClosetBombFilled entities: - - uid: 11950 + - uid: 12088 components: - pos: 26.5,31.5 parent: 2 @@ -77815,31 +78608,31 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11951 + - uid: 12089 components: - pos: 51.5,-49.5 parent: 2 type: Transform - - uid: 11952 + - uid: 12090 components: - pos: 67.5,-31.5 parent: 2 type: Transform - proto: ClosetChefFilled entities: - - uid: 11953 + - uid: 12091 components: - pos: -5.5,14.5 parent: 2 type: Transform - proto: ClosetEmergencyFilledRandom entities: - - uid: 3066 + - uid: 12092 components: - pos: 69.5,-63.5 parent: 2 type: Transform - - uid: 11954 + - uid: 12093 components: - pos: -52.5,-80.5 parent: 2 @@ -77862,7 +78655,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11955 + - uid: 12094 components: - pos: -12.5,10.5 parent: 2 @@ -77885,7 +78678,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11956 + - uid: 12095 components: - pos: -18.5,-51.5 parent: 2 @@ -77908,7 +78701,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11957 + - uid: 12096 components: - pos: 21.5,-52.5 parent: 2 @@ -77931,7 +78724,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11958 + - uid: 12097 components: - pos: 24.5,-56.5 parent: 2 @@ -77954,7 +78747,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11959 + - uid: 12098 components: - pos: -5.5,-68.5 parent: 2 @@ -77977,7 +78770,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11960 + - uid: 12099 components: - pos: 38.5,-32.5 parent: 2 @@ -78000,7 +78793,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11961 + - uid: 12100 components: - pos: -25.5,52.5 parent: 2 @@ -78023,7 +78816,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11962 + - uid: 12101 components: - pos: 5.5,-69.5 parent: 2 @@ -78046,7 +78839,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11963 + - uid: 12102 components: - pos: 57.5,-14.5 parent: 2 @@ -78069,7 +78862,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11964 + - uid: 12103 components: - pos: 52.5,-50.5 parent: 2 @@ -78092,7 +78885,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11965 + - uid: 12104 components: - pos: -2.5,-11.5 parent: 2 @@ -78115,12 +78908,12 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11966 + - uid: 12105 components: - pos: 43.5,-74.5 parent: 2 type: Transform - - uid: 11967 + - uid: 12106 components: - pos: 11.5,-69.5 parent: 2 @@ -78143,12 +78936,12 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11968 + - uid: 12107 components: - pos: 27.5,-80.5 parent: 2 type: Transform - - uid: 11969 + - uid: 12108 components: - pos: -23.5,-31.5 parent: 2 @@ -78171,12 +78964,12 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11970 + - uid: 12109 components: - pos: 47.5,-92.5 parent: 2 type: Transform - - uid: 11971 + - uid: 12110 components: - pos: -54.5,-5.5 parent: 2 @@ -78199,12 +78992,12 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11972 + - uid: 12111 components: - pos: 31.5,-92.5 parent: 2 type: Transform - - uid: 11973 + - uid: 12112 components: - pos: -57.5,-32.5 parent: 2 @@ -78227,7 +79020,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11974 + - uid: 12113 components: - pos: 17.5,34.5 parent: 2 @@ -78250,7 +79043,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11975 + - uid: 12114 components: - pos: 63.5,-5.5 parent: 2 @@ -78273,7 +79066,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11976 + - uid: 12115 components: - pos: 18.5,-39.5 parent: 2 @@ -78296,7 +79089,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11977 + - uid: 12116 components: - pos: 3.5,-25.5 parent: 2 @@ -78319,7 +79112,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11978 + - uid: 12117 components: - pos: 47.5,-15.5 parent: 2 @@ -78342,7 +79135,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11979 + - uid: 12118 components: - pos: 16.5,-5.5 parent: 2 @@ -78365,7 +79158,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11980 + - uid: 12119 components: - pos: -31.5,-0.5 parent: 2 @@ -78388,7 +79181,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11981 + - uid: 12120 components: - pos: -17.5,38.5 parent: 2 @@ -78411,7 +79204,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11982 + - uid: 12121 components: - pos: -12.5,47.5 parent: 2 @@ -78434,7 +79227,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11983 + - uid: 12122 components: - pos: 50.5,40.5 parent: 2 @@ -78457,7 +79250,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11984 + - uid: 12123 components: - pos: 65.5,1.5 parent: 2 @@ -78480,17 +79273,17 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11985 + - uid: 12124 components: - pos: -15.5,67.5 parent: 2 type: Transform - - uid: 11986 + - uid: 12125 components: - pos: -19.5,67.5 parent: 2 type: Transform - - uid: 11987 + - uid: 12126 components: - pos: -12.5,49.5 parent: 2 @@ -78513,7 +79306,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11988 + - uid: 12127 components: - pos: -26.5,28.5 parent: 2 @@ -78536,7 +79329,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11989 + - uid: 12128 components: - pos: -36.5,-93.5 parent: 2 @@ -78559,7 +79352,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11990 + - uid: 12129 components: - pos: 9.5,-36.5 parent: 2 @@ -78582,7 +79375,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11991 + - uid: 12130 components: - pos: 74.5,-51.5 parent: 2 @@ -78605,7 +79398,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11992 + - uid: 12131 components: - pos: 42.5,-62.5 parent: 2 @@ -78628,7 +79421,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11993 + - uid: 12132 components: - pos: -10.5,-8.5 parent: 2 @@ -78651,7 +79444,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11994 + - uid: 12133 components: - pos: 41.5,-27.5 parent: 2 @@ -78674,29 +79467,29 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11995 + - uid: 12134 components: - pos: 20.5,-21.5 parent: 2 type: Transform - - uid: 11996 + - uid: 12135 components: - pos: -47.5,41.5 parent: 2 type: Transform - - uid: 11997 + - uid: 12136 components: - pos: -10.5,-30.5 parent: 2 type: Transform - - uid: 11998 + - uid: 12137 components: - pos: -23.5,-6.5 parent: 2 type: Transform - proto: ClosetFireFilled entities: - - uid: 11999 + - uid: 12138 components: - pos: -11.5,-45.5 parent: 2 @@ -78719,7 +79512,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12000 + - uid: 12139 components: - pos: -11.5,-73.5 parent: 2 @@ -78742,7 +79535,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12001 + - uid: 12140 components: - pos: 22.5,-52.5 parent: 2 @@ -78765,7 +79558,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12002 + - uid: 12141 components: - pos: 24.5,-55.5 parent: 2 @@ -78788,7 +79581,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12003 + - uid: 12142 components: - pos: -25.5,51.5 parent: 2 @@ -78811,7 +79604,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12004 + - uid: 12143 components: - pos: -12.5,-30.5 parent: 2 @@ -78834,7 +79627,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12005 + - uid: 12144 components: - pos: -2.5,-12.5 parent: 2 @@ -78857,7 +79650,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12006 + - uid: 12145 components: - pos: -52.5,-72.5 parent: 2 @@ -78880,7 +79673,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12007 + - uid: 12146 components: - pos: -23.5,-41.5 parent: 2 @@ -78903,7 +79696,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12008 + - uid: 12147 components: - pos: 22.5,-8.5 parent: 2 @@ -78926,7 +79719,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12009 + - uid: 12148 components: - pos: 62.5,-5.5 parent: 2 @@ -78949,7 +79742,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12010 + - uid: 12149 components: - pos: 19.5,-39.5 parent: 2 @@ -78972,7 +79765,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12011 + - uid: 12150 components: - pos: 16.5,-6.5 parent: 2 @@ -78995,7 +79788,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12012 + - uid: 12151 components: - pos: -32.5,-0.5 parent: 2 @@ -79018,7 +79811,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12013 + - uid: 12152 components: - pos: 2.5,-25.5 parent: 2 @@ -79041,7 +79834,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12014 + - uid: 12153 components: - pos: -11.5,47.5 parent: 2 @@ -79064,7 +79857,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12015 + - uid: 12154 components: - pos: 49.5,40.5 parent: 2 @@ -79087,7 +79880,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12016 + - uid: 12155 components: - pos: -43.5,37.5 parent: 2 @@ -79110,7 +79903,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12017 + - uid: 12156 components: - pos: -31.5,-41.5 parent: 2 @@ -79133,7 +79926,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12018 + - uid: 12157 components: - pos: -27.5,28.5 parent: 2 @@ -79156,7 +79949,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12019 + - uid: 12158 components: - pos: -35.5,-93.5 parent: 2 @@ -79179,7 +79972,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12020 + - uid: 12159 components: - pos: 9.5,-37.5 parent: 2 @@ -79202,7 +79995,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12021 + - uid: 12160 components: - pos: 74.5,-52.5 parent: 2 @@ -79225,7 +80018,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12022 + - uid: 12161 components: - pos: 64.5,-31.5 parent: 2 @@ -79248,7 +80041,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12023 + - uid: 12162 components: - pos: 35.5,-74.5 parent: 2 @@ -79271,39 +80064,39 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12024 + - uid: 12163 components: - pos: 29.5,-92.5 parent: 2 type: Transform - - uid: 12025 + - uid: 12164 components: - pos: 49.5,-92.5 parent: 2 type: Transform - - uid: 12026 + - uid: 12165 components: - pos: 28.5,-80.5 parent: 2 type: Transform - - uid: 12027 + - uid: 12166 components: - pos: -24.5,-6.5 parent: 2 type: Transform - - uid: 12028 + - uid: 12167 components: - pos: -74.5,-32.5 parent: 2 type: Transform - - uid: 12029 + - uid: 12168 components: - pos: -57.5,-56.5 parent: 2 type: Transform - proto: ClosetJanitorFilled entities: - - uid: 12030 + - uid: 12169 components: - pos: -10.5,-18.5 parent: 2 @@ -79326,21 +80119,9 @@ entities: - 0 - 0 type: EntityStorage -- proto: ClosetL3Filled - entities: - - uid: 15188 - components: - - pos: 26.5,-34.5 - parent: 2 - type: Transform - - uid: 15189 - components: - - pos: 27.5,-34.5 - parent: 2 - type: Transform - proto: ClosetL3JanitorFilled entities: - - uid: 12031 + - uid: 12170 components: - pos: -10.5,-17.5 parent: 2 @@ -79365,7 +80146,7 @@ entities: type: EntityStorage - proto: ClosetL3VirologyFilled entities: - - uid: 12032 + - uid: 12171 components: - pos: -18.5,-63.5 parent: 2 @@ -79388,7 +80169,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12033 + - uid: 12172 components: - pos: -22.5,-79.5 parent: 2 @@ -79413,7 +80194,7 @@ entities: type: EntityStorage - proto: ClosetMaintenance entities: - - uid: 12035 + - uid: 12173 components: - pos: -22.5,-38.5 parent: 2 @@ -79436,7 +80217,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12036 + - uid: 12174 components: - pos: -44.5,-31.5 parent: 2 @@ -79459,7 +80240,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12037 + - uid: 12175 components: - pos: -41.5,-30.5 parent: 2 @@ -79482,7 +80263,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12038 + - uid: 12176 components: - pos: 14.5,39.5 parent: 2 @@ -79505,7 +80286,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12039 + - uid: 12177 components: - pos: -19.5,56.5 parent: 2 @@ -79530,12 +80311,12 @@ entities: type: EntityStorage - proto: ClosetMaintenanceFilledRandom entities: - - uid: 2182 + - uid: 12178 components: - pos: -42.5,-32.5 parent: 2 type: Transform - - uid: 12040 + - uid: 12179 components: - pos: 12.5,-51.5 parent: 2 @@ -79558,30 +80339,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12041 - components: - - pos: 6.5,-9.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 12042 + - uid: 12180 components: - pos: -5.5,-73.5 parent: 2 @@ -79604,7 +80362,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12043 + - uid: 12181 components: - pos: -19.5,58.5 parent: 2 @@ -79627,7 +80385,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12044 + - uid: 12182 components: - pos: 16.5,-72.5 parent: 2 @@ -79650,7 +80408,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12045 + - uid: 12183 components: - pos: -15.5,-12.5 parent: 2 @@ -79673,7 +80431,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12046 + - uid: 12184 components: - pos: -37.5,-67.5 parent: 2 @@ -79696,7 +80454,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12047 + - uid: 12185 components: - pos: -29.5,-57.5 parent: 2 @@ -79719,7 +80477,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12048 + - uid: 12186 components: - pos: -29.5,-39.5 parent: 2 @@ -79742,7 +80500,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12049 + - uid: 12187 components: - pos: -28.5,-67.5 parent: 2 @@ -79765,7 +80523,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12050 + - uid: 12188 components: - pos: -56.5,-32.5 parent: 2 @@ -79788,7 +80546,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12051 + - uid: 12189 components: - pos: 36.5,-12.5 parent: 2 @@ -79811,7 +80569,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12052 + - uid: 12190 components: - pos: -22.5,-28.5 parent: 2 @@ -79834,7 +80592,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12053 + - uid: 12191 components: - pos: 11.5,25.5 parent: 2 @@ -79857,7 +80615,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12054 + - uid: 12192 components: - pos: 0.5,34.5 parent: 2 @@ -79880,7 +80638,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12055 + - uid: 12193 components: - pos: 55.5,-3.5 parent: 2 @@ -79903,7 +80661,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12056 + - uid: 12194 components: - pos: -27.5,-67.5 parent: 2 @@ -79926,7 +80684,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12057 + - uid: 12195 components: - pos: 39.5,-15.5 parent: 2 @@ -79949,7 +80707,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12058 + - uid: 12196 components: - pos: 58.5,29.5 parent: 2 @@ -79972,7 +80730,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12059 + - uid: 12197 components: - pos: -31.5,38.5 parent: 2 @@ -79995,7 +80753,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12060 + - uid: 12198 components: - pos: -12.5,29.5 parent: 2 @@ -80018,7 +80776,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12061 + - uid: 12199 components: - pos: -43.5,-94.5 parent: 2 @@ -80041,7 +80799,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12062 + - uid: 12200 components: - pos: 48.5,-35.5 parent: 2 @@ -80064,7 +80822,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12063 + - uid: 12201 components: - pos: 72.5,-55.5 parent: 2 @@ -80087,7 +80845,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12064 + - uid: 12202 components: - pos: -9.5,-8.5 parent: 2 @@ -80110,19 +80868,14 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12065 + - uid: 12203 components: - pos: 7.5,-78.5 parent: 2 type: Transform - - uid: 23677 - components: - - pos: -1.5,-8.5 - parent: 2 - type: Transform - proto: ClosetRadiationSuitFilled entities: - - uid: 12066 + - uid: 12204 components: - pos: -59.5,-23.5 parent: 2 @@ -80145,7 +80898,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12067 + - uid: 12205 components: - pos: -60.5,-23.5 parent: 2 @@ -80168,7 +80921,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12068 + - uid: 12206 components: - pos: 70.5,-35.5 parent: 2 @@ -80193,7 +80946,7 @@ entities: type: EntityStorage - proto: ClosetToolFilled entities: - - uid: 12069 + - uid: 12207 components: - pos: -26.5,-21.5 parent: 2 @@ -80216,7 +80969,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12070 + - uid: 12208 components: - pos: -22.5,-31.5 parent: 2 @@ -80226,14 +80979,14 @@ entities: type: EntityStorage - proto: ClosetWall entities: - - uid: 4884 + - uid: 12209 components: - pos: 45.5,-32.5 parent: 2 type: Transform - proto: ClosetWallMaintenanceFilledRandom entities: - - uid: 3076 + - uid: 12210 components: - pos: 53.5,-33.5 parent: 2 @@ -80256,12 +81009,12 @@ entities: - 0 - 0 type: EntityStorage - - uid: 3116 + - uid: 12211 components: - pos: 47.5,-64.5 parent: 2 type: Transform - - uid: 12074 + - uid: 12212 components: - pos: -52.5,-26.5 parent: 2 @@ -80284,23 +81037,28 @@ entities: - 0 - 0 type: EntityStorage + - uid: 12213 + components: + - pos: 2.5,-12.5 + parent: 2 + type: Transform - proto: ClothingBackpack entities: - - uid: 12075 + - uid: 12214 components: - pos: -56.640278,-27.45032 parent: 2 type: Transform - proto: ClothingBackpackDuffelCaptain entities: - - uid: 12076 + - uid: 12215 components: - pos: 30.440884,-27.760664 parent: 2 type: Transform - proto: ClothingBackpackDuffelClown entities: - - uid: 12077 + - uid: 12216 components: - pos: 53.512966,60.63899 parent: 2 @@ -80310,45 +81068,45 @@ entities: showEnts: False occludes: True ents: - - 12078 - - 12080 - - 12079 - - 12081 - - 12082 + - 12217 + - 12219 + - 12218 + - 12220 + - 12221 type: ContainerContainer - type: ItemCooldown - proto: ClothingBackpackDuffelMedical entities: - - uid: 12083 + - uid: 12222 components: - pos: -2.4848266,-48.830677 parent: 2 type: Transform - - uid: 12084 + - uid: 12223 components: - pos: -16.552103,-49.311478 parent: 2 type: Transform - proto: ClothingBackpackDuffelSecurity entities: - - uid: 12085 + - uid: 12224 components: - pos: 5.4199524,15.682768 parent: 2 type: Transform - proto: ClothingBackpackDuffelSurgeryFilled entities: - - uid: 12086 + - uid: 12225 components: - pos: -6.4692874,-100.35278 parent: 2 type: Transform - - uid: 12087 + - uid: 12226 components: - pos: -3.4849787,-66.40156 parent: 2 type: Transform - - uid: 12088 + - uid: 12227 components: - rot: 1.5707963267948966 rad pos: -14.5,-35.5 @@ -80356,907 +81114,887 @@ entities: type: Transform - proto: ClothingBackpackDuffelSyndicate entities: - - uid: 12089 + - uid: 12228 components: - pos: -46.5,62.5 parent: 2 type: Transform - type: ItemCooldown -- proto: ClothingBackpackDuffelSyndicateCostumeCentcom - entities: - - uid: 12260 - components: - - pos: 77.45492,-67.44076 - parent: 2 - type: Transform - proto: ClothingBackpackMedical entities: - - uid: 12090 + - uid: 12229 components: - pos: 0.5470823,-61.419598 parent: 2 type: Transform - proto: ClothingBackpackSatchel entities: - - uid: 12091 + - uid: 12230 components: - pos: -48.296333,5.808547 parent: 2 type: Transform - proto: ClothingBackpackSatchelMedical entities: - - uid: 12092 + - uid: 12231 components: - pos: -11.364604,-50.389603 parent: 2 type: Transform - proto: ClothingBackpackVirology entities: - - uid: 12093 + - uid: 12232 components: - pos: -31.439095,-73.39239 parent: 2 type: Transform - proto: ClothingBeltAssault entities: - - uid: 19863 + - uid: 12234 components: - flags: InContainer type: MetaData - - parent: 21036 + - parent: 12233 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - proto: ClothingBeltMedicalFilled entities: - - uid: 12094 + - uid: 12236 components: - pos: -11.470623,-49.143177 parent: 2 type: Transform - proto: ClothingBeltUtility entities: - - uid: 1935 + - uid: 12237 components: - pos: -39.52201,-20.517406 parent: 2 type: Transform - - uid: 12096 + - uid: 12238 components: - pos: 47.423275,49.588562 parent: 2 type: Transform - - uid: 12097 + - uid: 12239 components: - pos: -3.42201,34.480587 parent: 2 type: Transform - proto: ClothingBeltUtilityFilled entities: - - uid: 12098 + - uid: 12240 components: - pos: 41.37638,-39.3584 parent: 2 type: Transform - - uid: 12099 + - uid: 12241 components: - pos: -25.692995,-19.449156 parent: 2 type: Transform - - uid: 12100 + - uid: 12242 components: - pos: -30.494818,-37.432365 parent: 2 type: Transform - - uid: 12101 + - uid: 12243 components: - pos: -21.644775,-100.24527 parent: 2 type: Transform - - uid: 12102 + - uid: 12244 components: - pos: -34.48208,26.5042 parent: 2 type: Transform - proto: ClothingEyesGlasses entities: - - uid: 12103 + - uid: 12245 components: - pos: -57.484028,-27.38782 parent: 2 type: Transform - proto: ClothingEyesGlassesMeson entities: - - uid: 12104 + - uid: 12246 components: - pos: -52.538578,-12.210998 parent: 2 type: Transform - - uid: 12105 + - uid: 12247 components: - pos: -56.32557,-25.518402 parent: 2 type: Transform - - uid: 12106 + - uid: 12248 components: - pos: 2.454368,-75.40744 parent: 2 type: Transform - proto: ClothingEyesGlassesSecurity entities: - - uid: 12107 + - uid: 12249 components: - pos: 22.490807,-47.25673 parent: 2 type: Transform - proto: ClothingEyesHudBeer entities: - - uid: 12108 + - uid: 12250 components: - pos: -41.966873,-78.417305 parent: 2 type: Transform - proto: ClothingHandsGlovesBoxingBlue entities: - - uid: 12109 + - uid: 12251 components: - pos: 21.737816,3.36442 parent: 2 type: Transform - - uid: 12110 + - uid: 12252 components: - pos: -40.008175,-83.602425 parent: 2 type: Transform - proto: ClothingHandsGlovesBoxingGreen entities: - - uid: 12111 + - uid: 12253 components: - pos: 30.201283,4.7139225 parent: 2 type: Transform - proto: ClothingHandsGlovesBoxingRed entities: - - uid: 12112 + - uid: 12254 components: - pos: 26.321266,-1.3645767 parent: 2 type: Transform - - uid: 12113 + - uid: 12255 components: - pos: -44.121326,-80.72781 parent: 2 type: Transform - proto: ClothingHandsGlovesBoxingYellow entities: - - uid: 12114 + - uid: 12256 components: - pos: 30.232533,4.5889225 parent: 2 type: Transform - proto: ClothingHandsGlovesColorBlack entities: - - uid: 12115 + - uid: 12257 components: - pos: -47.515083,6.5429225 parent: 2 type: Transform - proto: ClothingHandsGlovesColorOrange entities: - - uid: 12116 + - uid: 12258 components: - pos: -57.515278,-30.528444 parent: 2 type: Transform - proto: ClothingHandsGlovesColorYellow entities: - - uid: 12117 + - uid: 12259 components: - pos: -24.5,-24.5 parent: 2 type: Transform - - uid: 12118 + - uid: 12260 components: - pos: -28.54305,-20.538445 parent: 2 type: Transform - - uid: 12119 + - uid: 12261 components: - pos: -56.97646,-35.48593 parent: 2 type: Transform - - uid: 12120 - components: - - pos: 30.5,46.5 - parent: 2 - type: Transform - - uid: 12121 - components: - - pos: 54.45896,60.637554 - parent: 2 - type: Transform - - uid: 12122 - components: - - pos: 22.516106,51.47508 - parent: 2 - type: Transform - - uid: 12123 - components: - - pos: 70.39679,-66.38246 - parent: 2 - type: Transform - proto: ClothingHandsGlovesCombat entities: - - uid: 12124 + - uid: 12262 components: - pos: -37.5,-32.5 parent: 2 type: Transform - proto: ClothingHandsGlovesLatex entities: - - uid: 12125 + - uid: 12263 components: - pos: -19.466316,-85.552505 parent: 2 type: Transform - - uid: 12126 + - uid: 12264 components: - pos: -5.563123,-96.94655 parent: 2 type: Transform - proto: ClothingHeadFishCap entities: - - uid: 12127 + - uid: 12265 components: - pos: -24.484636,34.673782 parent: 2 type: Transform - proto: ClothingHeadHatAnimalCatBlack entities: - - uid: 12128 + - uid: 12266 components: - pos: -51.4974,8.551356 parent: 2 type: Transform - proto: ClothingHeadHatAnimalHeadslime entities: - - uid: 12129 + - uid: 12267 components: - pos: -48.252262,60.451523 parent: 2 type: Transform - proto: ClothingHeadHatBeaverHat entities: - - uid: 12130 + - uid: 12268 components: - pos: 22.537655,11.563517 parent: 2 type: Transform - proto: ClothingHeadHatBunny entities: - - uid: 12131 + - uid: 12269 components: - pos: 57.503056,-8.485766 parent: 2 type: Transform - proto: ClothingHeadHatCake entities: - - uid: 12132 + - uid: 12270 components: - pos: -23.42545,-67.41026 parent: 2 type: Transform - proto: ClothingHeadHatCardborg entities: - - uid: 12133 + - uid: 12271 components: - pos: 72.844894,-43.422203 parent: 2 type: Transform - proto: ClothingHeadHatChickenhead entities: - - uid: 12134 + - uid: 12272 components: - pos: -38.364468,56.565044 parent: 2 type: Transform - - uid: 12135 + - uid: 12273 components: - pos: 69.487785,-66.37648 parent: 2 type: Transform - proto: ClothingHeadHatCone entities: - - uid: 12136 + - uid: 12274 components: - pos: 20.465803,-52.422585 parent: 2 type: Transform - - uid: 12137 + - uid: 12275 components: - pos: -40.213425,-17.545645 parent: 2 type: Transform - - uid: 12138 + - uid: 12276 components: - pos: -28.525217,-54.052208 parent: 2 type: Transform - proto: ClothingHeadHatFedoraBrown entities: - - uid: 12139 + - uid: 12277 components: - pos: -42.4974,8.520106 parent: 2 type: Transform - proto: ClothingHeadHatFedoraGrey entities: - - uid: 12140 + - uid: 12278 components: - pos: -22.922485,11.607702 parent: 2 type: Transform - proto: ClothingHeadHatFez entities: - - uid: 12141 + - uid: 12279 components: - pos: 20.326727,12.833071 parent: 2 type: Transform - proto: ClothingHeadHatGreensoft entities: - - uid: 12142 + - uid: 12280 components: - pos: 31.51696,-61.276703 parent: 2 type: Transform - proto: ClothingHeadHatHardhatOrange entities: - - uid: 12143 + - uid: 12281 components: - pos: 15.782594,-64.08794 parent: 2 type: Transform - proto: ClothingHeadHatHetmanHat entities: - - uid: 12144 + - uid: 12282 components: - pos: -40.407463,-78.02446 parent: 2 type: Transform - proto: ClothingHeadHatHoodMoth entities: - - uid: 12145 + - uid: 12283 components: - pos: -14.455677,-96.43048 parent: 2 type: Transform - proto: ClothingHeadHatHoodNunHood entities: - - uid: 12146 + - uid: 12284 components: - pos: -38.629223,16.497232 parent: 2 type: Transform - proto: ClothingHeadHatJesterAlt entities: - - uid: 12147 + - uid: 12285 components: - pos: -15.170754,12.526345 parent: 2 type: Transform - proto: ClothingHeadHatPlaguedoctor entities: - - uid: 12148 + - uid: 12286 components: - pos: -31.265268,5.276951 parent: 2 type: Transform - proto: ClothingHeadHatPumpkin entities: - - uid: 12149 + - uid: 12287 components: - pos: -6.603641,4.509495 parent: 2 type: Transform - proto: ClothingHeadHatRichard entities: - - uid: 12150 + - uid: 12288 components: - pos: -16.484713,20.572138 parent: 2 type: Transform - proto: ClothingHeadHatSantahat entities: - - uid: 12151 + - uid: 12289 components: - pos: 70.456535,-65.50148 parent: 2 type: Transform - proto: ClothingHeadHatShrineMaidenWig entities: - - uid: 12152 + - uid: 12290 components: - pos: 73.5263,-65.23457 parent: 2 type: Transform - proto: ClothingHeadHatSquid entities: - - uid: 12153 + - uid: 12291 components: - pos: 9.466757,-12.457433 parent: 2 type: Transform - proto: ClothingHeadHatTophat entities: - - uid: 12154 + - uid: 12292 components: - pos: 22.506405,10.969767 parent: 2 type: Transform - - uid: 12155 + - uid: 12293 components: - pos: -19.575691,-87.365005 parent: 2 type: Transform - proto: ClothingHeadHatTrucker entities: - - uid: 12156 + - uid: 12294 components: - pos: -35.471638,-48.0912 parent: 2 type: Transform - proto: ClothingHeadHatUshanka entities: - - uid: 12157 + - uid: 12295 components: - pos: 20.592352,12.520571 parent: 2 type: Transform - - uid: 12158 + - uid: 12296 components: - pos: 63.56368,11.408342 parent: 2 type: Transform - - uid: 12159 + - uid: 12297 components: - pos: -39.523006,-76.44785 parent: 2 type: Transform - - uid: 12160 + - uid: 12298 components: - pos: -43.43965,-78.05615 parent: 2 type: Transform - proto: ClothingHeadHatVioletwizard entities: - - uid: 12161 + - uid: 12299 components: - pos: 18.520521,50.50226 parent: 2 type: Transform - proto: ClothingHeadHatWelding entities: - - uid: 12162 + - uid: 12300 components: - pos: -35.502888,-47.3412 parent: 2 type: Transform - - uid: 12163 + - uid: 12301 components: - pos: -12.456746,17.595669 parent: 2 type: Transform - - uid: 12164 + - uid: 12302 components: - pos: 42.55075,-32.360874 parent: 2 type: Transform - proto: ClothingHeadHatWeldingMaskFlameBlue entities: - - uid: 12165 + - uid: 12303 components: - pos: 0.64530456,23.439005 parent: 2 type: Transform - - uid: 12166 + - uid: 12304 components: - pos: -20.443554,-51.52769 parent: 2 type: Transform - proto: ClothingHeadHatWizard entities: - - uid: 12167 + - uid: 12305 components: - pos: -27.578125,55.49253 parent: 2 type: Transform - proto: ClothingHeadHelmetCosmonaut entities: - - uid: 12168 + - uid: 12306 components: - pos: -31.517996,-64.46434 parent: 2 type: Transform - - uid: 12169 + - uid: 12307 components: - pos: -37.48917,27.661566 parent: 2 type: Transform - proto: ClothingHeadHelmetEVA entities: - - uid: 12170 + - uid: 12308 components: - pos: -71.04211,-26.39878 parent: 2 type: Transform - proto: ClothingHeadHelmetScaf entities: - - uid: 12171 + - uid: 12309 components: - pos: -31.458502,-43.474 parent: 2 type: Transform - proto: ClothingHeadHelmetTemplar entities: - - uid: 12172 + - uid: 12310 components: - pos: 38.423565,-15.642361 parent: 2 type: Transform - proto: ClothingHeadNurseHat entities: - - uid: 12173 + - uid: 12311 components: - pos: 2.5095897,-65.392746 parent: 2 type: Transform - proto: ClothingHeadSafari entities: - - uid: 12174 + - uid: 12312 components: - pos: -3.5832248,52.757553 parent: 2 type: Transform - proto: ClothingMaskBat entities: - - uid: 12175 + - uid: 12313 components: - pos: -28.497562,8.541992 parent: 2 type: Transform - proto: ClothingMaskBear entities: - - uid: 12176 + - uid: 12314 components: - pos: -38.62821,28.538465 parent: 2 type: Transform - proto: ClothingMaskBee entities: - - uid: 12177 + - uid: 12315 components: - pos: -3.4901123,53.561974 parent: 2 type: Transform - proto: ClothingMaskBreathMedical entities: - - uid: 12178 + - uid: 12316 components: - pos: -16.243101,-35.3368 parent: 2 type: Transform - proto: ClothingMaskClown entities: - - uid: 12078 + - uid: 12217 components: - flags: InContainer type: MetaData - - parent: 12077 + - parent: 12216 type: Transform - canCollide: False type: Physics - proto: ClothingMaskFox entities: - - uid: 12179 + - uid: 12317 components: - pos: 30.331896,-28.644527 parent: 2 type: Transform - proto: ClothingMaskGas entities: - - uid: 12180 + - uid: 12318 components: - pos: -25.389828,-6.471097 parent: 2 type: Transform - - uid: 12181 + - uid: 12319 components: - pos: -35.537254,-49.709976 parent: 2 type: Transform - - uid: 12182 + - uid: 12320 components: - pos: -70.49962,-26.436932 parent: 2 type: Transform - - uid: 12183 + - uid: 12321 components: - pos: -8.705846,-15.426237 parent: 2 type: Transform - proto: ClothingMaskGasAtmos entities: - - uid: 12184 + - uid: 12322 components: - pos: 3.1338544,-75.35811 parent: 2 type: Transform - proto: ClothingMaskGasExplorer entities: - - uid: 12185 + - uid: 12323 components: - pos: -43.401073,35.593018 parent: 2 type: Transform - proto: ClothingMaskJackal entities: - - uid: 12186 + - uid: 12324 components: - pos: 16.67739,21.87369 parent: 2 type: Transform - proto: ClothingMaskMuzzle entities: - - uid: 12188 + - uid: 12325 components: - pos: -15.336851,-35.602425 parent: 2 type: Transform - proto: ClothingMaskNeckGaiter entities: - - uid: 24037 + - uid: 12235 components: - flags: InContainer type: MetaData - - parent: 21036 + - parent: 12233 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - proto: ClothingMaskPlague entities: - - uid: 12189 + - uid: 12326 components: - pos: -31.093393,5.386326 parent: 2 type: Transform - proto: ClothingMaskRat entities: - - uid: 12190 + - uid: 12327 components: - pos: -9.217388,-10.5028515 parent: 2 type: Transform - proto: ClothingMaskRaven entities: - - uid: 12191 + - uid: 12328 components: - pos: 12.510361,-6.449043 parent: 2 type: Transform - proto: ClothingNeckAromanticPin entities: - - uid: 12192 + - uid: 12329 components: - pos: -16.507944,41.79273 parent: 2 type: Transform - proto: ClothingNeckAsexualPin entities: - - uid: 12193 + - uid: 12330 components: - pos: -16.289194,41.51148 parent: 2 type: Transform - proto: ClothingNeckBisexualPin entities: - - uid: 12194 + - uid: 12331 components: - pos: -42.7372,8.687558 parent: 2 type: Transform - proto: ClothingNeckBling entities: - - uid: 12195 + - uid: 12332 components: - pos: 48.258717,-21.370115 parent: 2 type: Transform - proto: ClothingNeckCloakMoth entities: - - uid: 12196 + - uid: 12333 components: - pos: -8.662971,-82.55483 parent: 2 type: Transform - proto: ClothingNeckCloakTrans entities: - - uid: 12197 + - uid: 12334 components: - pos: -9.4988165,23.574131 parent: 2 type: Transform - proto: ClothingNeckIntersexPin entities: - - uid: 12198 + - uid: 12335 components: - pos: -12.691556,31.94308 parent: 2 type: Transform - proto: ClothingNeckLawyerbadge entities: - - uid: 12199 + - uid: 12336 components: - pos: 43.39902,-3.8456278 parent: 2 type: Transform - proto: ClothingNeckLesbianPin entities: - - uid: 12200 + - uid: 12337 components: - pos: -51.700592,8.465523 parent: 2 type: Transform - proto: ClothingNeckLGBTPin entities: - - uid: 12201 + - uid: 12338 components: - pos: -10.776614,43.48699 parent: 2 type: Transform - proto: ClothingNeckMantleCE entities: - - uid: 12202 + - uid: 12339 components: - pos: -35.58501,-17.148493 parent: 2 type: Transform - proto: ClothingNeckMantleCMO entities: - - uid: 12203 + - uid: 12340 components: - pos: -20.144634,-56.34305 parent: 2 type: Transform - proto: ClothingNeckMantleHOS entities: - - uid: 12205 + - uid: 12341 components: - pos: 5.905226,20.807451 parent: 2 type: Transform - proto: ClothingNeckMantleRD entities: - - uid: 12206 + - uid: 12342 components: - pos: 63.464256,-53.431217 parent: 2 type: Transform - proto: ClothingNeckNonBinaryPin entities: - - uid: 12207 + - uid: 12343 components: - pos: -21.722902,35.752502 parent: 2 type: Transform - - uid: 12208 + - uid: 12344 components: - pos: -47.78141,6.181047 parent: 2 type: Transform - proto: ClothingNeckPansexualPin entities: - - uid: 12209 + - uid: 12345 components: - pos: -1.5377516,30.493696 parent: 2 type: Transform +- proto: ClothingNeckScarfStripedCentcom + entities: + - uid: 12346 + components: + - pos: 77.62025,-67.25297 + parent: 2 + type: Transform - proto: ClothingNeckScarfStripedZebra entities: - - uid: 12210 + - uid: 12347 components: - pos: -28.25746,44.644928 parent: 2 type: Transform - proto: ClothingNeckTransPin entities: - - uid: 12211 + - uid: 12348 components: - pos: 65.36391,-1.4805084 parent: 2 type: Transform - proto: ClothingOuterArmorBulletproof entities: - - uid: 10058 + - uid: 12349 components: - pos: 32.367626,30.579184 parent: 2 type: Transform - - uid: 12212 + - uid: 12350 components: - pos: 31.015066,32.43679 parent: 2 type: Transform - - uid: 12213 + - uid: 12351 components: - pos: 31.015066,32.43679 parent: 2 type: Transform - - uid: 12214 + - uid: 12352 components: - pos: 31.015066,32.43679 parent: 2 type: Transform - - uid: 12215 + - uid: 12353 components: - pos: 31.015066,32.43679 parent: 2 type: Transform - - uid: 15927 + - uid: 12354 components: - pos: 32.398876,30.266684 parent: 2 type: Transform - - uid: 20877 + - uid: 12355 components: - pos: 32.617626,30.485434 parent: 2 type: Transform - - uid: 23681 + - uid: 12356 components: - pos: 32.648876,30.157309 parent: 2 type: Transform - proto: ClothingOuterArmorReflective entities: - - uid: 6888 + - uid: 12357 components: - pos: 32.477,29.610434 parent: 2 type: Transform - proto: ClothingOuterCardborg entities: - - uid: 12216 + - uid: 12358 components: - pos: 73.548645,-43.410946 parent: 2 type: Transform - proto: ClothingOuterCoatBomber entities: - - uid: 12217 + - uid: 12359 components: - pos: 15.5274105,-50.516087 parent: 2 type: Transform - proto: ClothingOuterCoatDetective entities: - - uid: 12218 + - uid: 12360 components: - pos: -32.515205,-59.44035 parent: 2 type: Transform - proto: ClothingOuterCoatGentle entities: - - uid: 12219 + - uid: 12361 components: - pos: 59.512882,24.492107 parent: 2 type: Transform - proto: ClothingOuterCoatJensen entities: - - uid: 11914 + - uid: 12053 components: - pos: 62.5886,15.642659 parent: 2 @@ -81266,228 +82004,228 @@ entities: showEnts: False occludes: True ents: - - 11915 + - 12054 type: ContainerContainer - proto: ClothingOuterDameDane entities: - - uid: 12220 + - uid: 12362 components: - pos: -30.207304,-98.49032 parent: 2 type: Transform - proto: ClothingOuterHardsuitEVA entities: - - uid: 12221 + - uid: 12363 components: - pos: -71.62023,-26.30503 parent: 2 type: Transform - proto: ClothingOuterHoodieChaplain entities: - - uid: 12222 + - uid: 12364 components: - pos: -39.238598,16.669107 parent: 2 type: Transform - proto: ClothingOuterPlagueSuit entities: - - uid: 12223 + - uid: 12365 components: - pos: -31.046518,5.058201 parent: 2 type: Transform - proto: ClothingOuterStraightjacket entities: - - uid: 12224 + - uid: 12366 components: - pos: -15.008726,-35.30555 parent: 2 type: Transform - - uid: 12225 + - uid: 12367 components: - pos: 6.437404,-57.306335 parent: 2 type: Transform - proto: ClothingOuterSuitChicken entities: - - uid: 12226 + - uid: 12368 components: - pos: -41.535904,57.643673 parent: 2 type: Transform - proto: ClothingOuterSuitMonkey entities: - - uid: 12227 + - uid: 12369 components: - pos: -23.4853,-87.30585 parent: 2 type: Transform - proto: ClothingOuterSuitShrineMaiden entities: - - uid: 12228 + - uid: 12370 components: - pos: -40.497574,63.50408 parent: 2 type: Transform - - uid: 12229 + - uid: 12371 components: - pos: 73.55755,-64.51582 parent: 2 type: Transform - proto: ClothingOuterWinterRobo entities: - - uid: 12230 + - uid: 12372 components: - pos: 77.51138,-47.408936 parent: 2 type: Transform - proto: ClothingOuterWinterViro entities: - - uid: 12231 + - uid: 12373 components: - pos: -31.470345,-74.22051 parent: 2 type: Transform - proto: ClothingOuterWizard entities: - - uid: 12232 + - uid: 12374 components: - pos: -41.58894,41.559685 parent: 2 type: Transform - proto: ClothingOuterWizardRed entities: - - uid: 12233 + - uid: 12375 components: - pos: -59.983215,-45.447025 parent: 2 type: Transform - proto: ClothingOuterWizardViolet entities: - - uid: 12234 + - uid: 12376 components: - pos: 19.504896,49.611633 parent: 2 type: Transform - proto: ClothingShoesBling entities: - - uid: 12235 + - uid: 12377 components: - pos: 47.782166,-25.351032 parent: 2 type: Transform - proto: ClothingShoesBootsJack entities: - - uid: 12236 + - uid: 12378 components: - pos: -1.4635531,17.609518 parent: 2 type: Transform - proto: ClothingShoesBootsLaceup entities: - - uid: 12237 + - uid: 12379 components: - pos: 45.797165,49.377663 parent: 2 type: Transform - proto: ClothingShoesBootsMag entities: - - uid: 12238 + - uid: 12380 components: - pos: -34.59344,-13.376695 parent: 2 type: Transform - - uid: 12239 + - uid: 12381 components: - pos: -41.919106,35.62894 parent: 2 type: Transform - - uid: 12240 + - uid: 12382 components: - pos: 33.46236,-13.4915285 parent: 2 type: Transform - - uid: 12242 + - uid: 12383 components: - pos: 27.527689,27.317041 parent: 2 type: Transform - - uid: 12243 + - uid: 12384 components: - pos: 31.527689,27.285791 parent: 2 type: Transform - - uid: 12245 + - uid: 12385 components: - pos: 31.516712,-13.514931 parent: 2 type: Transform - - uid: 12246 + - uid: 12386 components: - pos: 31.501087,-11.577431 parent: 2 type: Transform - - uid: 12247 + - uid: 12387 components: - pos: 33.563587,-11.530556 parent: 2 type: Transform - - uid: 12248 + - uid: 12388 components: - pos: 29.610462,-11.499306 parent: 2 type: Transform - - uid: 12249 + - uid: 12389 components: - pos: 29.532337,-13.577431 parent: 2 type: Transform - proto: ClothingShoesClown entities: - - uid: 12079 + - uid: 12218 components: - flags: InContainer type: MetaData - - parent: 12077 + - parent: 12216 type: Transform - canCollide: False type: Physics - proto: ClothingShoesColorWhite entities: - - uid: 12250 + - uid: 12390 components: - pos: -16.54276,-45.461185 parent: 2 type: Transform - proto: ClothingShoesDameDane entities: - - uid: 12251 + - uid: 12391 components: - pos: -22.591383,-96.25594 parent: 2 type: Transform - proto: ClothingShoesFlippers entities: - - uid: 12252 + - uid: 12392 components: - pos: -3.5418344,21.579527 parent: 2 type: Transform - proto: ClothingShoeSlippersDuck entities: - - uid: 12253 + - uid: 12393 components: - pos: 15.423054,34.567764 parent: 2 type: Transform - proto: ClothingShoesSwat entities: - - uid: 12255 + - uid: 12395 components: - flags: InContainer name: Hi-Grip combat shoes type: MetaData - - parent: 12254 + - parent: 12394 type: Transform - canCollide: False type: Physics @@ -81495,499 +82233,486 @@ entities: - type: InsideEntityStorage - proto: ClothingUnderSocksBee entities: - - uid: 12259 + - uid: 12398 components: - pos: 62.522377,-58.450882 parent: 2 type: Transform - proto: ClothingUniformJumpskirtJanimaidmini entities: - - uid: 12261 + - uid: 12399 components: - pos: -13.518242,-15.499978 parent: 2 type: Transform - proto: ClothingUniformJumpskirtOfLife entities: - - uid: 12262 + - uid: 12400 components: - pos: 62.5,53.5 parent: 2 type: Transform - proto: ClothingUniformJumpskirtOperative entities: - - uid: 12257 + - uid: 12396 components: - flags: InContainer type: MetaData - - parent: 12254 + - parent: 12394 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - proto: ClothingUniformJumpsuitClown entities: - - uid: 12080 + - uid: 12219 components: - flags: InContainer type: MetaData - - parent: 12077 + - parent: 12216 type: Transform - canCollide: False type: Physics - proto: ClothingUniformJumpsuitCossack entities: - - uid: 12263 + - uid: 12401 components: - pos: -40.657463,-77.46196 parent: 2 type: Transform - proto: ClothingUniformJumpsuitDameDane entities: - - uid: 12264 + - uid: 12402 components: - pos: -15.484091,-96.41976 parent: 2 type: Transform - proto: ClothingUniformJumpsuitMonasticRobeDark entities: - - uid: 12265 + - uid: 12403 components: - pos: -32.383476,8.575315 parent: 2 type: Transform - - uid: 12266 + - uid: 12404 components: - pos: -32.383476,8.575315 parent: 2 type: Transform - - uid: 12267 + - uid: 12405 components: - pos: -32.383476,8.575315 parent: 2 type: Transform - - uid: 12268 + - uid: 12406 components: - pos: -32.383476,8.575315 parent: 2 type: Transform - - uid: 12269 + - uid: 12407 components: - pos: -32.383476,8.575315 parent: 2 type: Transform - proto: ClothingUniformJumpsuitMonasticRobeLight entities: - - uid: 12270 + - uid: 12408 components: - pos: -22.894775,-100.24527 parent: 2 type: Transform - - uid: 12271 + - uid: 12409 components: - pos: -33.11785,8.55969 parent: 2 type: Transform - - uid: 12272 + - uid: 12410 components: - pos: -33.11785,8.55969 parent: 2 type: Transform - - uid: 12273 + - uid: 12411 components: - pos: -33.11785,8.55969 parent: 2 type: Transform - - uid: 12274 + - uid: 12412 components: - pos: -33.11785,8.55969 parent: 2 type: Transform - - uid: 12275 + - uid: 12413 components: - pos: -33.11785,8.55969 parent: 2 type: Transform - proto: ClothingUniformJumpsuitOperative entities: - - uid: 12258 + - uid: 12397 components: - flags: InContainer type: MetaData - - parent: 12254 + - parent: 12394 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - proto: ClothingUniformJumpsuitReporter entities: - - uid: 12276 + - uid: 12414 components: - pos: -27.443762,14.534213 parent: 2 type: Transform - proto: ClothingUniformJumpsuitSafari entities: - - uid: 12277 + - uid: 12415 components: - pos: -3.4738498,52.42943 parent: 2 type: Transform - proto: CluwneHorn entities: - - uid: 12081 + - uid: 12220 components: - flags: InContainer type: MetaData - - parent: 12077 + - parent: 12216 type: Transform - canCollide: False type: Physics -- proto: CombatKnife - entities: - - uid: 21219 - components: - - pos: 3.499125,-11.337656 - parent: 2 - type: Transform - proto: ComfyChair entities: - - uid: 12278 + - uid: 12416 components: - pos: -19.5,-55.5 parent: 2 type: Transform - - uid: 12279 + - uid: 12417 components: - rot: 1.5707963267948966 rad pos: 13.5,-35.5 parent: 2 type: Transform - - uid: 12280 + - uid: 12418 components: - pos: 20.5,-11.5 parent: 2 type: Transform - - uid: 12281 + - uid: 12419 components: - rot: 1.5707963267948966 rad pos: 13.5,-33.5 parent: 2 type: Transform - - uid: 12282 + - uid: 12420 components: - pos: 6.5,21.5 parent: 2 type: Transform - - uid: 12283 + - uid: 12421 components: - rot: -1.5707963267948966 rad pos: 24.5,-28.5 parent: 2 type: Transform - - uid: 12284 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-28.5 - parent: 2 - type: Transform - - uid: 12285 + - uid: 12422 components: - rot: 1.5707963267948966 rad pos: 13.5,-31.5 parent: 2 type: Transform - - uid: 12286 + - uid: 12423 components: - rot: 3.141592653589793 rad pos: 20.5,11.5 parent: 2 type: Transform - - uid: 12287 + - uid: 12424 components: - pos: 20.5,13.5 parent: 2 type: Transform - - uid: 12288 + - uid: 12425 components: - pos: -15.5,-37.5 parent: 2 type: Transform - - uid: 12289 + - uid: 12426 components: - rot: -1.5707963267948966 rad pos: 24.5,-29.5 parent: 2 type: Transform - - uid: 12290 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-29.5 - parent: 2 - type: Transform - - uid: 12291 + - uid: 12427 components: - rot: -1.5707963267948966 rad pos: 44.5,-3.5 parent: 2 type: Transform - - uid: 12292 + - uid: 12428 components: - rot: 3.141592653589793 rad pos: 33.5,-51.5 parent: 2 type: Transform - - uid: 12293 + - uid: 12429 components: - rot: 3.141592653589793 rad pos: 29.5,-51.5 parent: 2 type: Transform - - uid: 12294 + - uid: 12430 components: - pos: 32.5,-47.5 parent: 2 type: Transform - - uid: 12295 + - uid: 12431 components: - pos: 30.5,-47.5 parent: 2 type: Transform - - uid: 12296 + - uid: 12432 components: - pos: 25.5,-81.5 parent: 2 type: Transform - - uid: 12297 + - uid: 12433 components: - rot: 1.5707963267948966 rad pos: -36.5,-16.5 parent: 2 type: Transform - - uid: 12298 + - uid: 12434 components: - pos: -48.5,7.5 parent: 2 type: Transform - - uid: 12299 + - uid: 12435 components: - pos: -47.5,7.5 parent: 2 type: Transform - - uid: 12300 + - uid: 12436 components: - rot: 1.5707963267948966 rad pos: -49.5,6.5 parent: 2 type: Transform - - uid: 12301 + - uid: 12437 components: - rot: 1.5707963267948966 rad pos: -49.5,5.5 parent: 2 type: Transform - - uid: 12302 + - uid: 12438 components: - rot: 3.141592653589793 rad pos: -48.5,4.5 parent: 2 type: Transform - - uid: 12303 + - uid: 12439 components: - rot: 3.141592653589793 rad pos: -47.5,4.5 parent: 2 type: Transform - - uid: 12304 + - uid: 12440 components: - rot: -1.5707963267948966 rad pos: -46.5,6.5 parent: 2 type: Transform - - uid: 12305 + - uid: 12441 components: - rot: -1.5707963267948966 rad pos: -46.5,5.5 parent: 2 type: Transform - - uid: 12306 + - uid: 12442 components: - rot: 3.141592653589793 rad pos: 25.5,-85.5 parent: 2 type: Transform - - uid: 12307 + - uid: 12443 components: - rot: 3.141592653589793 rad pos: 67.5,7.5 parent: 2 type: Transform - - uid: 12308 + - uid: 12444 components: - pos: 67.5,11.5 parent: 2 type: Transform - - uid: 12309 + - uid: 12445 components: - pos: 44.5,33.5 parent: 2 type: Transform - - uid: 12310 + - uid: 12446 components: - pos: 43.5,33.5 parent: 2 type: Transform - - uid: 12311 + - uid: 12447 components: - pos: 42.5,33.5 parent: 2 type: Transform - - uid: 12312 + - uid: 12448 components: - rot: 1.5707963267948966 rad pos: 64.5,-0.5 parent: 2 type: Transform - - uid: 12313 + - uid: 12449 components: - rot: 1.5707963267948966 rad pos: 64.5,-1.5 parent: 2 type: Transform - - uid: 12314 + - uid: 12450 components: - rot: 3.141592653589793 rad pos: 44.5,28.5 parent: 2 type: Transform - - uid: 12315 + - uid: 12451 components: - rot: 3.141592653589793 rad pos: 45.5,28.5 parent: 2 type: Transform - - uid: 12316 + - uid: 12452 components: - rot: 3.141592653589793 rad pos: 46.5,28.5 parent: 2 type: Transform - - uid: 12317 + - uid: 12453 components: - rot: -1.5707963267948966 rad pos: -54.5,-48.5 parent: 2 type: Transform - - uid: 12318 + - uid: 12454 components: - rot: -1.5707963267948966 rad pos: -54.5,-49.5 parent: 2 type: Transform - - uid: 12319 + - uid: 12455 components: - pos: -55.5,-47.5 parent: 2 type: Transform - - uid: 12320 + - uid: 12456 components: - rot: 3.141592653589793 rad pos: -55.5,-50.5 parent: 2 type: Transform - - uid: 12321 + - uid: 12457 components: - rot: -1.5707963267948966 rad pos: -4.5,-98.5 parent: 2 type: Transform - - uid: 12322 + - uid: 12458 components: - rot: -1.5707963267948966 rad pos: -21.5,-97.5 parent: 2 type: Transform - - uid: 12323 + - uid: 12459 components: - rot: 1.5707963267948966 rad pos: -23.5,-97.5 parent: 2 type: Transform - - uid: 12324 + - uid: 12460 components: - pos: -0.5,-73.5 parent: 2 type: Transform - - uid: 12325 + - uid: 12461 components: - pos: 16.5,-79.5 parent: 2 type: Transform - - uid: 12326 + - uid: 12462 components: - pos: 14.5,-79.5 parent: 2 type: Transform - - uid: 12327 + - uid: 12463 components: - pos: 13.5,-79.5 parent: 2 type: Transform - - uid: 12328 + - uid: 12464 components: - pos: 17.5,-79.5 parent: 2 type: Transform - - uid: 12329 + - uid: 12465 components: - rot: 3.141592653589793 rad pos: 14.5,-87.5 parent: 2 type: Transform - - uid: 12330 + - uid: 12466 components: - rot: 3.141592653589793 rad pos: 13.5,-87.5 parent: 2 type: Transform - - uid: 12331 + - uid: 12467 components: - rot: 3.141592653589793 rad pos: 17.5,-87.5 parent: 2 type: Transform - - uid: 12332 + - uid: 12468 components: - rot: 3.141592653589793 rad pos: 16.5,-87.5 parent: 2 type: Transform - - uid: 12333 + - uid: 12469 components: - rot: -1.5707963267948966 rad pos: 7.5,-79.5 parent: 2 type: Transform - - uid: 23678 + - uid: 12470 components: - - rot: 3.141592653589793 rad - pos: -0.5,-3.5 + - rot: 1.5707963267948966 rad + pos: 20.5,-29.5 + parent: 2 + type: Transform + - uid: 12471 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-28.5 parent: 2 type: Transform - proto: ComputerAlert entities: - - uid: 12334 + - uid: 12472 components: - pos: 27.5,-21.5 parent: 2 type: Transform - - uid: 12335 + - uid: 12473 components: - rot: 1.5707963267948966 rad pos: -55.5,-12.5 parent: 2 type: Transform - - uid: 12336 + - uid: 12474 components: - rot: 3.141592653589793 rad pos: -36.5,-46.5 @@ -81995,24 +82720,24 @@ entities: type: Transform - proto: ComputerAnalysisConsole entities: - - uid: 12337 + - uid: 12475 components: - pos: 73.5,-31.5 parent: 2 type: Transform - linkedPorts: - 21073: + 21174: - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver type: DeviceLinkSource - proto: computerBodyScanner entities: - - uid: 12338 + - uid: 12476 components: - rot: -1.5707963267948966 rad pos: 4.5,-65.5 parent: 2 type: Transform - - uid: 12339 + - uid: 12477 components: - rot: 1.5707963267948966 rad pos: -26.5,-60.5 @@ -82020,54 +82745,48 @@ entities: type: Transform - proto: ComputerBroken entities: - - uid: 1955 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-35.5 - parent: 2 - type: Transform - - uid: 12340 + - uid: 12478 components: - rot: -1.5707963267948966 rad pos: 52.5,37.5 parent: 2 type: Transform - - uid: 12341 + - uid: 12479 components: - pos: 51.5,36.5 parent: 2 type: Transform - - uid: 12342 + - uid: 12480 components: - rot: -1.5707963267948966 rad pos: 51.5,37.5 parent: 2 type: Transform - - uid: 12343 + - uid: 12481 components: - rot: -1.5707963267948966 rad pos: -51.5,-87.5 parent: 2 type: Transform - - uid: 12344 + - uid: 12482 components: - rot: 1.5707963267948966 rad pos: -0.5,73.5 parent: 2 type: Transform - - uid: 12345 + - uid: 12483 components: - rot: -1.5707963267948966 rad pos: -2.5,73.5 parent: 2 type: Transform - - uid: 12346 + - uid: 12484 components: - rot: 1.5707963267948966 rad pos: 2.5,69.5 parent: 2 type: Transform - - uid: 12347 + - uid: 12485 components: - rot: -1.5707963267948966 rad pos: -5.5,69.5 @@ -82075,36 +82794,36 @@ entities: type: Transform - proto: ComputerCargoBounty entities: - - uid: 12348 + - uid: 12486 components: - pos: -42.5,25.5 parent: 2 type: Transform - proto: ComputerCargoOrders entities: - - uid: 10114 + - uid: 12487 components: - pos: -31.5,31.5 parent: 2 type: Transform - - uid: 12349 + - uid: 12488 components: - pos: 29.5,-21.5 parent: 2 type: Transform - - uid: 12350 + - uid: 12489 components: - pos: -27.5,23.5 parent: 2 type: Transform - - uid: 12352 + - uid: 12490 components: - pos: -44.5,35.5 parent: 2 type: Transform - proto: ComputerCargoShuttle entities: - - uid: 12353 + - uid: 12491 components: - rot: 3.141592653589793 rad pos: -27.5,21.5 @@ -82112,12 +82831,12 @@ entities: type: Transform - proto: ComputerComms entities: - - uid: 12354 + - uid: 12492 components: - pos: 25.5,-21.5 parent: 2 type: Transform - - uid: 12355 + - uid: 12493 components: - rot: 1.5707963267948966 rad pos: 28.5,-30.5 @@ -82125,64 +82844,64 @@ entities: type: Transform - proto: ComputerCrewMonitoring entities: - - uid: 12356 + - uid: 12494 components: - pos: 23.5,-21.5 parent: 2 type: Transform - - uid: 12358 + - uid: 12495 components: - pos: 54.5,13.5 parent: 2 type: Transform - proto: ComputerCriminalRecords entities: - - uid: 12359 + - uid: 12496 components: - rot: -1.5707963267948966 rad pos: 22.5,-45.5 parent: 2 type: Transform - - uid: 12360 + - uid: 12497 components: - pos: -16.5,26.5 parent: 2 type: Transform - proto: ComputerFrame entities: - - uid: 12361 + - uid: 12498 components: - pos: -8.5,-63.5 parent: 2 type: Transform - - uid: 12362 + - uid: 12499 components: - rot: 1.5707963267948966 rad pos: 70.5,-36.5 parent: 2 type: Transform - - uid: 12363 + - uid: 12500 components: - pos: 51.5,35.5 parent: 2 type: Transform - - uid: 12364 + - uid: 12501 components: - pos: -10.5,37.5 parent: 2 type: Transform - - uid: 12365 + - uid: 12502 components: - pos: -29.5,-96.5 parent: 2 type: Transform - - uid: 12366 + - uid: 12503 components: - rot: 1.5707963267948966 rad pos: -79.5,-54.5 parent: 2 type: Transform - - uid: 12367 + - uid: 12504 components: - rot: 1.5707963267948966 rad pos: -79.5,-53.5 @@ -82190,48 +82909,48 @@ entities: type: Transform - proto: ComputerId entities: - - uid: 806 + - uid: 12505 components: - rot: 1.5707963267948966 rad pos: -37.5,-17.5 parent: 2 type: Transform - - uid: 5718 + - uid: 12506 components: - pos: 60.5,-53.5 parent: 2 type: Transform - - uid: 10059 + - uid: 12507 components: - rot: 3.141592653589793 rad pos: -30.5,29.5 parent: 2 type: Transform - - uid: 12369 + - uid: 12508 components: - pos: 25.5,-24.5 parent: 2 type: Transform - - uid: 13978 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-3.5 - parent: 2 - type: Transform - - uid: 21357 + - uid: 12509 components: - rot: 3.141592653589793 rad pos: 4.5,20.5 parent: 2 type: Transform - - uid: 24374 + - uid: 12510 components: - pos: -19.5,-54.5 parent: 2 type: Transform + - uid: 12511 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 2 + type: Transform - proto: ComputerMassMedia entities: - - uid: 12370 + - uid: 12512 components: - rot: -1.5707963267948966 rad pos: -22.5,12.5 @@ -82239,18 +82958,18 @@ entities: type: Transform - proto: ComputerMedicalRecords entities: - - uid: 12371 + - uid: 12513 components: - pos: -20.5,-54.5 parent: 2 type: Transform - - uid: 12372 + - uid: 12514 components: - rot: -1.5707963267948966 rad pos: -3.5,-50.5 parent: 2 type: Transform - - uid: 12373 + - uid: 12515 components: - rot: 3.141592653589793 rad pos: 47.5,5.5 @@ -82258,34 +82977,34 @@ entities: type: Transform - proto: ComputerPowerMonitoring entities: - - uid: 12374 + - uid: 12516 components: - pos: -46.5,-22.5 parent: 2 type: Transform - - uid: 12375 + - uid: 12517 components: - pos: -72.5,-31.5 parent: 2 type: Transform - - uid: 12376 + - uid: 12518 components: - pos: 21.5,-21.5 parent: 2 type: Transform - - uid: 12377 + - uid: 12519 components: - rot: 3.141592653589793 rad pos: -27.5,-13.5 parent: 2 type: Transform - - uid: 12378 + - uid: 12520 components: - rot: 1.5707963267948966 rad pos: -55.5,-13.5 parent: 2 type: Transform - - uid: 12379 + - uid: 12521 components: - rot: 3.141592653589793 rad pos: -71.5,-39.5 @@ -82293,7 +83012,7 @@ entities: type: Transform - proto: ComputerRadar entities: - - uid: 12380 + - uid: 12522 components: - rot: 1.5707963267948966 rad pos: -48.5,32.5 @@ -82301,49 +83020,49 @@ entities: type: Transform - proto: ComputerResearchAndDevelopment entities: - - uid: 12381 + - uid: 12523 components: - rot: 3.141592653589793 rad pos: 61.5,-55.5 parent: 2 type: Transform - - uid: 12382 + - uid: 12524 components: - rot: -1.5707963267948966 rad pos: 43.5,-39.5 parent: 2 type: Transform - - uid: 12383 + - uid: 12525 components: - pos: 68.5,-43.5 parent: 2 type: Transform - - uid: 12384 + - uid: 12526 components: - pos: 50.5,-52.5 parent: 2 type: Transform - - uid: 12385 + - uid: 12527 components: - rot: 3.141592653589793 rad pos: 60.5,-36.5 parent: 2 type: Transform - - uid: 12386 + - uid: 12528 components: - pos: 74.5,-31.5 parent: 2 type: Transform - proto: ComputerSalvageExpedition entities: - - uid: 12387 + - uid: 12529 components: - pos: -46.5,44.5 parent: 2 type: Transform - proto: ComputerShuttleCargo entities: - - uid: 12388 + - uid: 12530 components: - rot: 1.5707963267948966 rad pos: -48.5,21.5 @@ -82351,130 +83070,130 @@ entities: type: Transform - proto: ComputerShuttleSalvage entities: - - uid: 12389 + - uid: 12531 components: - pos: -47.5,44.5 parent: 2 type: Transform - proto: ComputerSolarControl entities: - - uid: 12390 + - uid: 12532 components: - rot: 1.5707963267948966 rad pos: -2.5,-77.5 parent: 2 type: Transform - - uid: 12391 + - uid: 12533 components: - pos: 72.5,38.5 parent: 2 type: Transform - proto: ComputerStationRecords entities: - - uid: 12392 + - uid: 12534 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 2 + type: Transform + - uid: 12535 components: - rot: 1.5707963267948966 rad pos: 2.5,-57.5 parent: 2 type: Transform - - uid: 12393 + - uid: 12536 components: - pos: 18.5,-10.5 parent: 2 type: Transform - - uid: 12394 + - uid: 12537 components: - pos: 24.5,-24.5 parent: 2 type: Transform - - uid: 12395 + - uid: 12538 components: - rot: -1.5707963267948966 rad pos: 26.5,20.5 parent: 2 type: Transform - - uid: 12396 + - uid: 12539 components: - pos: 47.5,7.5 parent: 2 type: Transform - - uid: 12397 + - uid: 12540 components: - rot: 3.141592653589793 rad pos: 20.5,-47.5 parent: 2 type: Transform - - uid: 12398 + - uid: 12541 components: - rot: 3.141592653589793 rad pos: -16.5,-23.5 parent: 2 type: Transform - - uid: 24284 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-3.5 - parent: 2 - type: Transform - proto: ComputerSurveillanceCameraMonitor entities: - - uid: 12399 + - uid: 12542 components: - pos: 26.5,-24.5 parent: 2 type: Transform - - uid: 12400 + - uid: 12543 components: - rot: 3.141592653589793 rad pos: 18.5,-12.5 parent: 2 type: Transform - - uid: 12401 + - uid: 12544 components: - rot: 1.5707963267948966 rad pos: 24.5,20.5 parent: 2 type: Transform - - uid: 12402 + - uid: 12545 components: - pos: 53.5,13.5 parent: 2 type: Transform - - uid: 12403 + - uid: 12546 components: - rot: 3.141592653589793 rad pos: 52.5,-42.5 parent: 2 type: Transform - - uid: 12404 + - uid: 12547 components: - rot: 1.5707963267948966 rad pos: -55.5,-14.5 parent: 2 type: Transform - - uid: 12405 + - uid: 12548 components: - pos: -23.5,-69.5 parent: 2 type: Transform - - uid: 12406 + - uid: 12549 components: - pos: -11.5,-14.5 parent: 2 type: Transform - - uid: 12407 + - uid: 12550 components: - rot: 1.5707963267948966 rad pos: -21.5,-49.5 parent: 2 type: Transform - - uid: 12408 + - uid: 12551 components: - rot: 3.141592653589793 rad pos: -37.5,-46.5 parent: 2 type: Transform - - uid: 12409 + - uid: 12552 components: - rot: 1.5707963267948966 rad pos: -27.5,15.5 @@ -82482,1045 +83201,1072 @@ entities: type: Transform - proto: ComputerTechnologyDiskTerminal entities: - - uid: 12410 + - uid: 12553 components: - pos: 56.5,-47.5 parent: 2 type: Transform - proto: ComputerTelevision entities: - - uid: 12411 + - uid: 12554 components: - pos: -6.5,-48.5 parent: 2 type: Transform - - uid: 12412 + - uid: 12555 components: - pos: -28.5,43.5 parent: 2 type: Transform - - uid: 12413 + - uid: 12556 components: - pos: 23.5,23.5 parent: 2 type: Transform - - uid: 12414 + - uid: 12557 components: - pos: 15.5,9.5 parent: 2 type: Transform - - uid: 12415 + - uid: 12558 components: - pos: -22.5,31.5 parent: 2 type: Transform - - uid: 12416 + - uid: 12559 components: - pos: -18.5,35.5 parent: 2 type: Transform - - uid: 12417 + - uid: 12560 components: - pos: -11.5,35.5 parent: 2 type: Transform - - uid: 12418 + - uid: 12561 components: - pos: -21.5,39.5 parent: 2 type: Transform - proto: ComputerTelevisionCircuitboard entities: - - uid: 12419 + - uid: 12562 components: - pos: 41.546516,-53.695484 parent: 2 type: Transform - - uid: 12420 + - uid: 12563 components: - pos: -8.937697,37.5244 parent: 2 type: Transform - - uid: 12421 + - uid: 12564 components: - pos: -9.312697,37.696274 parent: 2 type: Transform - proto: ContainmentFieldGenerator entities: - - uid: 12422 + - uid: 12565 components: - pos: -70.5,-9.5 parent: 2 type: Transform - - uid: 12423 + - uid: 12566 components: - pos: -62.5,-9.5 parent: 2 type: Transform - - uid: 12424 + - uid: 12567 components: - pos: -62.5,-17.5 parent: 2 type: Transform - - uid: 12425 + - uid: 12568 components: - pos: -70.5,-17.5 parent: 2 type: Transform - - uid: 12426 + - uid: 12569 components: - pos: -74.5,-26.5 parent: 2 type: Transform - - uid: 12427 + - uid: 12570 components: - pos: -73.5,-26.5 parent: 2 type: Transform - - uid: 12428 + - uid: 12571 components: - pos: -74.5,-23.5 parent: 2 type: Transform - - uid: 12429 + - uid: 12572 components: - pos: -73.5,-23.5 parent: 2 type: Transform - proto: ConveyorBelt entities: - - uid: 12430 + - uid: 12573 components: - rot: 1.5707963267948966 rad pos: 16.5,-55.5 parent: 2 type: Transform - links: - - 25400 + - 25491 type: DeviceLinkSink - - uid: 12431 + - uid: 12574 components: - pos: 18.5,-56.5 parent: 2 type: Transform - links: - - 25400 + - 25491 type: DeviceLinkSink - - uid: 12432 + - uid: 12575 components: - rot: 1.5707963267948966 rad pos: 17.5,-55.5 parent: 2 type: Transform - links: - - 25400 + - 25491 type: DeviceLinkSink - - uid: 12433 + - uid: 12576 components: - rot: 1.5707963267948966 rad pos: 15.5,-55.5 parent: 2 type: Transform - links: - - 25400 + - 25491 type: DeviceLinkSink - - uid: 12434 + - uid: 12577 components: - pos: 18.5,-55.5 parent: 2 type: Transform - links: - - 25400 + - 25491 type: DeviceLinkSink - - uid: 12435 + - uid: 12578 components: - rot: -1.5707963267948966 rad pos: -12.5,-10.5 parent: 2 type: Transform - links: - - 25413 + - 25504 type: DeviceLinkSink - - uid: 12436 + - uid: 12579 components: - pos: 15.5,-54.5 parent: 2 type: Transform - links: - - 25400 + - 25491 type: DeviceLinkSink - - uid: 12437 + - uid: 12580 components: - pos: 18.5,-57.5 parent: 2 type: Transform - links: - - 25400 + - 25491 type: DeviceLinkSink - - uid: 12438 + - uid: 12581 components: - rot: -1.5707963267948966 rad pos: 17.5,-54.5 parent: 2 type: Transform - links: - - 25400 + - 25491 type: DeviceLinkSink - - uid: 12439 + - uid: 12582 components: - rot: -1.5707963267948966 rad pos: 16.5,-54.5 parent: 2 type: Transform - links: - - 25400 + - 25491 type: DeviceLinkSink - - uid: 12440 + - uid: 12583 components: - rot: -1.5707963267948966 rad pos: 18.5,-54.5 parent: 2 type: Transform - links: - - 25400 + - 25491 type: DeviceLinkSink - - uid: 12441 + - uid: 12584 components: - rot: -1.5707963267948966 rad pos: -14.5,-10.5 parent: 2 type: Transform - links: - - 25413 + - 25504 type: DeviceLinkSink - - uid: 12442 + - uid: 12585 components: - rot: -1.5707963267948966 rad pos: -13.5,-10.5 parent: 2 type: Transform - links: - - 25413 + - 25504 type: DeviceLinkSink - - uid: 12443 + - uid: 12586 components: - rot: 3.141592653589793 rad pos: -11.5,-10.5 parent: 2 type: Transform - links: - - 25413 + - 25504 type: DeviceLinkSink - - uid: 12444 + - uid: 12587 components: - rot: 1.5707963267948966 rad pos: -25.5,25.5 parent: 2 type: Transform - links: - - 25401 + - 25492 type: DeviceLinkSink - - uid: 12445 + - uid: 12588 components: - rot: 1.5707963267948966 rad pos: -26.5,25.5 parent: 2 type: Transform - links: - - 25401 + - 25492 type: DeviceLinkSink - - uid: 12446 + - uid: 12589 components: - rot: 1.5707963267948966 rad pos: -27.5,25.5 parent: 2 type: Transform - links: - - 25401 + - 25492 type: DeviceLinkSink - - uid: 12447 + - uid: 12590 components: - rot: 1.5707963267948966 rad pos: -28.5,25.5 parent: 2 type: Transform - links: - - 25401 + - 25492 type: DeviceLinkSink - - uid: 12448 + - uid: 12591 components: - rot: 1.5707963267948966 rad pos: -30.5,25.5 parent: 2 type: Transform - links: - - 25401 + - 25492 type: DeviceLinkSink - - uid: 12449 + - uid: 12592 components: - rot: 1.5707963267948966 rad pos: -29.5,25.5 parent: 2 type: Transform - links: - - 25401 + - 25492 type: DeviceLinkSink - - uid: 12450 + - uid: 12593 components: - rot: 1.5707963267948966 rad pos: -35.5,25.5 parent: 2 type: Transform - links: - - 25405 + - 25496 type: DeviceLinkSink - - uid: 12451 + - uid: 12594 components: - rot: 1.5707963267948966 rad pos: -34.5,25.5 parent: 2 type: Transform - links: - - 25405 + - 25496 type: DeviceLinkSink - - uid: 12452 + - uid: 12595 components: - rot: 1.5707963267948966 rad pos: -36.5,25.5 parent: 2 type: Transform - links: - - 25405 + - 25496 type: DeviceLinkSink - - uid: 12453 + - uid: 12596 components: - rot: 1.5707963267948966 rad pos: -37.5,25.5 parent: 2 type: Transform - links: - - 25405 + - 25496 type: DeviceLinkSink - - uid: 12454 + - uid: 12597 components: - rot: 1.5707963267948966 rad pos: -38.5,25.5 parent: 2 type: Transform - links: - - 25405 + - 25496 type: DeviceLinkSink - - uid: 12455 + - uid: 12598 components: - rot: 1.5707963267948966 rad pos: -48.5,19.5 parent: 2 type: Transform - links: - - 25404 + - 25495 type: DeviceLinkSink - - uid: 12456 + - uid: 12599 components: - rot: 1.5707963267948966 rad pos: -49.5,19.5 parent: 2 type: Transform - links: - - 25404 + - 25495 type: DeviceLinkSink - - uid: 12457 + - uid: 12600 components: - rot: 1.5707963267948966 rad pos: -50.5,19.5 parent: 2 type: Transform - links: - - 25404 + - 25495 type: DeviceLinkSink - - uid: 12458 + - uid: 12601 components: - rot: 1.5707963267948966 rad pos: -51.5,19.5 parent: 2 type: Transform - links: - - 25404 + - 25495 type: DeviceLinkSink - - uid: 12459 + - uid: 12602 components: - rot: 1.5707963267948966 rad pos: -48.5,23.5 parent: 2 type: Transform - links: - - 25403 + - 25494 type: DeviceLinkSink - - uid: 12460 + - uid: 12603 components: - rot: 1.5707963267948966 rad pos: -49.5,23.5 parent: 2 type: Transform - links: - - 25403 + - 25494 type: DeviceLinkSink - - uid: 12461 + - uid: 12604 components: - rot: 1.5707963267948966 rad pos: -50.5,23.5 parent: 2 type: Transform - links: - - 25403 + - 25494 type: DeviceLinkSink - - uid: 12462 + - uid: 12605 components: - rot: 1.5707963267948966 rad pos: -51.5,23.5 parent: 2 type: Transform - links: - - 25403 + - 25494 type: DeviceLinkSink - - uid: 12463 + - uid: 12606 components: - rot: 1.5707963267948966 rad pos: -52.5,19.5 parent: 2 type: Transform - links: - - 25404 + - 25495 type: DeviceLinkSink - - uid: 12464 + - uid: 12607 components: - rot: 1.5707963267948966 rad pos: -53.5,19.5 parent: 2 type: Transform - links: - - 25404 + - 25495 type: DeviceLinkSink - - uid: 12465 + - uid: 12608 components: - rot: 1.5707963267948966 rad pos: -47.5,19.5 parent: 2 type: Transform - links: - - 25404 + - 25495 type: DeviceLinkSink - - uid: 12466 + - uid: 12609 components: - rot: 1.5707963267948966 rad pos: -46.5,19.5 parent: 2 type: Transform - links: - - 25404 + - 25495 type: DeviceLinkSink - - uid: 12467 + - uid: 12610 components: - rot: 1.5707963267948966 rad pos: -47.5,23.5 parent: 2 type: Transform - links: - - 25403 + - 25494 type: DeviceLinkSink - - uid: 12468 + - uid: 12611 components: - rot: 1.5707963267948966 rad pos: -46.5,23.5 parent: 2 type: Transform - links: - - 25403 + - 25494 type: DeviceLinkSink - - uid: 12469 + - uid: 12612 components: - rot: 1.5707963267948966 rad pos: -53.5,23.5 parent: 2 type: Transform - links: - - 25403 + - 25494 type: DeviceLinkSink - - uid: 12470 + - uid: 12613 components: - rot: 1.5707963267948966 rad pos: -52.5,23.5 parent: 2 type: Transform - links: - - 25403 + - 25494 type: DeviceLinkSink - - uid: 12471 + - uid: 12614 components: - rot: 3.141592653589793 rad pos: -42.5,14.5 parent: 2 type: Transform - links: - - 25402 + - 25493 type: DeviceLinkSink - - uid: 12472 + - uid: 12615 components: - rot: 1.5707963267948966 rad pos: -51.5,30.5 parent: 2 type: Transform - links: - - 25407 + - 25498 type: DeviceLinkSink - - uid: 12473 + - uid: 12616 components: - rot: 1.5707963267948966 rad pos: -52.5,30.5 parent: 2 type: Transform - links: - - 25407 + - 25498 type: DeviceLinkSink - - uid: 12474 + - uid: 12617 components: - rot: 1.5707963267948966 rad pos: -50.5,30.5 parent: 2 type: Transform - links: - - 25407 + - 25498 type: DeviceLinkSink - - uid: 12475 + - uid: 12618 components: - rot: 1.5707963267948966 rad pos: -49.5,30.5 parent: 2 type: Transform - links: - - 25407 + - 25498 type: DeviceLinkSink - - uid: 12476 + - uid: 12619 components: - rot: 1.5707963267948966 rad pos: -48.5,30.5 parent: 2 type: Transform - links: - - 25407 + - 25498 type: DeviceLinkSink - - uid: 12477 + - uid: 12620 components: - rot: 1.5707963267948966 rad pos: -52.5,34.5 parent: 2 type: Transform - links: - - 25408 + - 25499 type: DeviceLinkSink - - uid: 12478 + - uid: 12621 components: - rot: 1.5707963267948966 rad pos: -51.5,34.5 parent: 2 type: Transform - links: - - 25408 + - 25499 type: DeviceLinkSink - - uid: 12479 + - uid: 12622 components: - rot: 1.5707963267948966 rad pos: -50.5,34.5 parent: 2 type: Transform - links: - - 25408 + - 25499 type: DeviceLinkSink - - uid: 12480 + - uid: 12623 components: - rot: 1.5707963267948966 rad pos: -49.5,34.5 parent: 2 type: Transform - links: - - 25408 + - 25499 type: DeviceLinkSink - - uid: 12481 + - uid: 12624 components: - rot: 1.5707963267948966 rad pos: -48.5,34.5 parent: 2 type: Transform - links: - - 25408 + - 25499 type: DeviceLinkSink - - uid: 12482 + - uid: 12625 components: - rot: 1.5707963267948966 rad pos: -53.5,34.5 parent: 2 type: Transform - links: - - 25408 + - 25499 type: DeviceLinkSink - - uid: 12483 + - uid: 12626 components: - rot: 1.5707963267948966 rad pos: -53.5,30.5 parent: 2 type: Transform - links: - - 25407 + - 25498 type: DeviceLinkSink - - uid: 12484 + - uid: 12627 components: - rot: 1.5707963267948966 rad pos: -47.5,34.5 parent: 2 type: Transform - links: - - 25408 + - 25499 type: DeviceLinkSink - - uid: 12485 + - uid: 12628 components: - rot: 1.5707963267948966 rad pos: -47.5,30.5 parent: 2 type: Transform - links: - - 25407 + - 25498 type: DeviceLinkSink - - uid: 12486 + - uid: 12629 components: - rot: -1.5707963267948966 rad pos: -12.5,27.5 parent: 2 type: Transform - links: - - 25406 + - 25497 type: DeviceLinkSink - - uid: 12487 + - uid: 12630 components: - pos: -10.5,28.5 parent: 2 type: Transform - links: - - 25406 + - 25497 type: DeviceLinkSink - - uid: 12488 + - uid: 12631 components: - rot: -1.5707963267948966 rad pos: -9.5,28.5 parent: 2 type: Transform - links: - - 25406 + - 25497 type: DeviceLinkSink - - uid: 12489 + - uid: 12632 components: - rot: 3.141592653589793 rad pos: -42.5,15.5 parent: 2 type: Transform - links: - - 25402 + - 25493 type: DeviceLinkSink - - uid: 12490 + - uid: 12633 components: - rot: 3.141592653589793 rad pos: -42.5,17.5 parent: 2 type: Transform - links: - - 25402 + - 25493 type: DeviceLinkSink - - uid: 12491 + - uid: 12634 components: - rot: 3.141592653589793 rad pos: -42.5,13.5 parent: 2 type: Transform - links: - - 25402 + - 25493 type: DeviceLinkSink - - uid: 12492 + - uid: 12635 components: - pos: -47.5,13.5 parent: 2 type: Transform - links: - - 25409 + - 25500 type: DeviceLinkSink - - uid: 12493 + - uid: 12636 components: - pos: -47.5,14.5 parent: 2 type: Transform - links: - - 25409 + - 25500 type: DeviceLinkSink - - uid: 12494 + - uid: 12637 components: - pos: -47.5,12.5 parent: 2 type: Transform - links: - - 25409 + - 25500 type: DeviceLinkSink - - uid: 12495 + - uid: 12638 components: - rot: 1.5707963267948966 rad pos: -8.5,22.5 parent: 2 type: Transform - links: - - 25406 + - 25497 type: DeviceLinkSink - - uid: 12496 + - uid: 12639 components: - rot: 1.5707963267948966 rad pos: -7.5,22.5 parent: 2 type: Transform - links: - - 25406 + - 25497 type: DeviceLinkSink - - uid: 12497 + - uid: 12640 components: - rot: 1.5707963267948966 rad pos: -6.5,22.5 parent: 2 type: Transform - links: - - 25406 + - 25497 type: DeviceLinkSink - - uid: 12498 + - uid: 12641 components: - rot: 1.5707963267948966 rad pos: 43.5,37.5 parent: 2 type: Transform - links: - - 25410 + - 25501 type: DeviceLinkSink - - uid: 12499 + - uid: 12642 components: - rot: 1.5707963267948966 rad pos: 44.5,37.5 parent: 2 type: Transform - links: - - 25410 + - 25501 type: DeviceLinkSink - - uid: 12500 + - uid: 12643 components: - rot: 1.5707963267948966 rad pos: 45.5,37.5 parent: 2 type: Transform - links: - - 25410 + - 25501 type: DeviceLinkSink - - uid: 12501 + - uid: 12644 components: - pos: 46.5,37.5 parent: 2 type: Transform - links: - - 25410 + - 25501 type: DeviceLinkSink - - uid: 12502 + - uid: 12645 components: - rot: 1.5707963267948966 rad pos: 46.5,36.5 parent: 2 type: Transform - links: - - 25410 + - 25501 type: DeviceLinkSink - - uid: 12503 + - uid: 12646 components: - rot: 1.5707963267948966 rad pos: 47.5,36.5 parent: 2 type: Transform - links: - - 25410 + - 25501 type: DeviceLinkSink - - uid: 12504 + - uid: 12647 components: - rot: 3.141592653589793 rad pos: 48.5,36.5 parent: 2 type: Transform - links: - - 25410 + - 25501 type: DeviceLinkSink - - uid: 12505 + - uid: 12648 components: - rot: 3.141592653589793 rad pos: 48.5,37.5 parent: 2 type: Transform - links: - - 25410 + - 25501 type: DeviceLinkSink - - uid: 12506 + - uid: 12649 components: - rot: 1.5707963267948966 rad pos: -9.5,22.5 parent: 2 type: Transform - links: - - 25406 + - 25497 type: DeviceLinkSink - - uid: 12507 + - uid: 12650 components: - pos: -9.5,27.5 parent: 2 type: Transform - links: - - 25406 + - 25497 type: DeviceLinkSink - - uid: 12508 + - uid: 12651 components: - pos: -9.5,26.5 parent: 2 type: Transform - links: - - 25406 + - 25497 type: DeviceLinkSink - - uid: 12509 + - uid: 12652 components: - pos: -9.5,25.5 parent: 2 type: Transform - links: - - 25406 + - 25497 type: DeviceLinkSink - - uid: 12510 + - uid: 12653 components: - pos: -9.5,24.5 parent: 2 type: Transform - links: - - 25406 + - 25497 type: DeviceLinkSink - - uid: 12511 + - uid: 12654 components: - pos: -9.5,23.5 parent: 2 type: Transform - links: - - 25406 + - 25497 type: DeviceLinkSink - type: ActiveConveyor - - uid: 12512 + - uid: 12655 components: - rot: 3.141592653589793 rad pos: -10.5,22.5 parent: 2 type: Transform - links: - - 25406 + - 25497 type: DeviceLinkSink - - uid: 12513 + - uid: 12656 components: - rot: 1.5707963267948966 rad pos: -10.5,23.5 parent: 2 type: Transform - links: - - 25406 + - 25497 type: DeviceLinkSink - - uid: 12514 + - uid: 12657 components: - rot: -1.5707963267948966 rad pos: -10.5,27.5 parent: 2 type: Transform - links: - - 25406 + - 25497 type: DeviceLinkSink - - uid: 12515 + - uid: 12658 components: - rot: -1.5707963267948966 rad pos: -11.5,27.5 parent: 2 type: Transform - links: - - 25406 + - 25497 type: DeviceLinkSink - - uid: 12516 + - uid: 12659 components: - rot: 3.141592653589793 rad pos: 48.5,38.5 parent: 2 type: Transform - links: - - 25410 + - 25501 type: DeviceLinkSink - - uid: 12517 + - uid: 12660 components: - rot: 3.141592653589793 rad pos: -37.5,-99.5 parent: 2 type: Transform - links: - - 25411 - - 25412 + - 25502 + - 25503 type: DeviceLinkSink - - uid: 12518 + - uid: 12661 components: - rot: 3.141592653589793 rad pos: -37.5,-98.5 parent: 2 type: Transform - links: - - 25411 - - 25412 + - 25502 + - 25503 type: DeviceLinkSink - - uid: 12519 + - uid: 12662 components: - rot: 3.141592653589793 rad pos: -37.5,-100.5 parent: 2 type: Transform - links: - - 25411 - - 25412 + - 25502 + - 25503 type: DeviceLinkSink - - uid: 12520 + - uid: 12663 components: - rot: 3.141592653589793 rad pos: -37.5,-101.5 parent: 2 type: Transform - links: - - 25411 - - 25412 + - 25502 + - 25503 type: DeviceLinkSink - - uid: 12521 + - uid: 12664 components: - rot: 3.141592653589793 rad pos: -37.5,-102.5 parent: 2 type: Transform - links: - - 25411 - - 25412 + - 25502 + - 25503 type: DeviceLinkSink - - uid: 12522 + - uid: 12665 components: - rot: 3.141592653589793 rad pos: -37.5,-103.5 parent: 2 type: Transform - links: - - 25411 - - 25412 + - 25502 + - 25503 type: DeviceLinkSink - - uid: 12523 + - uid: 12666 components: - rot: 3.141592653589793 rad pos: -37.5,-104.5 parent: 2 type: Transform - links: - - 25411 - - 25412 + - 25502 + - 25503 type: DeviceLinkSink - - uid: 12524 + - uid: 12667 components: - rot: -1.5707963267948966 rad pos: -37.5,-105.5 parent: 2 type: Transform - links: - - 25411 - - 25412 + - 25502 + - 25503 type: DeviceLinkSink - - uid: 12525 + - uid: 12668 components: - rot: -1.5707963267948966 rad pos: -36.5,-105.5 parent: 2 type: Transform - links: - - 25411 - - 25412 + - 25502 + - 25503 type: DeviceLinkSink - - uid: 12526 + - uid: 12669 components: - rot: 3.141592653589793 rad pos: -38.5,-105.5 parent: 2 type: Transform - links: - - 25411 - - 25412 + - 25502 + - 25503 type: DeviceLinkSink - - uid: 12527 + - uid: 12670 components: - rot: 1.5707963267948966 rad pos: -38.5,-104.5 parent: 2 type: Transform - links: - - 25411 - - 25412 + - 25502 + - 25503 type: DeviceLinkSink - - uid: 12528 + - uid: 12671 components: - rot: 3.141592653589793 rad pos: -11.5,-11.5 parent: 2 type: Transform - links: - - 25413 + - 25504 type: DeviceLinkSink - - uid: 12529 + - uid: 12672 components: - rot: 3.141592653589793 rad pos: -11.5,-12.5 parent: 2 type: Transform - links: - - 25413 + - 25504 type: DeviceLinkSink - - uid: 12530 + - uid: 12673 components: - rot: 3.141592653589793 rad pos: -42.5,16.5 parent: 2 type: Transform - links: - - 25402 + - 25493 + type: DeviceLinkSink + - uid: 24396 + components: + - pos: -16.5,10.5 + parent: 2 + type: Transform + - invokeCounter: 2 + links: + - 31189 + type: DeviceLinkSink + - uid: 31187 + components: + - pos: -16.5,9.5 + parent: 2 + type: Transform + - invokeCounter: 2 + links: + - 31189 + type: DeviceLinkSink + - uid: 31188 + components: + - pos: -16.5,8.5 + parent: 2 + type: Transform + - invokeCounter: 2 + links: + - 31189 type: DeviceLinkSink - proto: ConveyorBeltAssembly entities: - - uid: 12531 + - uid: 12674 components: - pos: -27.603226,-31.351301 parent: 2 type: Transform - proto: CounterWoodFrame entities: - - uid: 12532 + - uid: 12675 components: - pos: -47.5,-64.5 parent: 2 type: Transform - proto: CrateAirlockKit entities: - - uid: 12534 + - uid: 12676 components: - pos: 44.5,-7.5 parent: 2 type: Transform - proto: CrateArtifactContainer entities: - - uid: 12535 + - uid: 12677 components: - pos: 73.5,-36.5 parent: 2 @@ -83545,12 +84291,12 @@ entities: type: EntityStorage - proto: CrateCoffin entities: - - uid: 12536 + - uid: 12678 components: - pos: -31.5,10.5 parent: 2 type: Transform - - uid: 12537 + - uid: 12679 components: - pos: -32.5,10.5 parent: 2 @@ -83573,7 +84319,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12538 + - uid: 12680 components: - pos: -31.5,8.5 parent: 2 @@ -83598,7 +84344,7 @@ entities: type: EntityStorage - proto: CrateEmergencyFire entities: - - uid: 12539 + - uid: 12681 components: - pos: -39.5,-15.5 parent: 2 @@ -83621,7 +84367,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12540 + - uid: 12682 components: - pos: -38.5,23.5 parent: 2 @@ -83670,44 +84416,44 @@ entities: type: PlaceableSurface - proto: CrateEmptySpawner entities: - - uid: 12541 + - uid: 12683 components: - pos: -43.5,23.5 parent: 2 type: Transform - - uid: 12542 + - uid: 12684 components: - pos: -44.5,22.5 parent: 2 type: Transform - - uid: 12543 + - uid: 12685 components: - pos: -40.5,20.5 parent: 2 type: Transform - - uid: 12544 + - uid: 12686 components: - pos: -38.5,19.5 parent: 2 type: Transform - - uid: 12545 + - uid: 12687 components: - pos: 6.5,49.5 parent: 2 type: Transform - - uid: 12546 + - uid: 12688 components: - pos: -35.5,-96.5 parent: 2 type: Transform - - uid: 12547 + - uid: 12689 components: - pos: -36.5,-96.5 parent: 2 type: Transform - proto: CrateEngineeringAMEJar entities: - - uid: 12548 + - uid: 12690 components: - pos: -50.5,-13.5 parent: 2 @@ -83732,7 +84478,7 @@ entities: type: EntityStorage - proto: CrateEngineeringAMEShielding entities: - - uid: 12549 + - uid: 12691 components: - pos: -50.5,-14.5 parent: 2 @@ -83755,7 +84501,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12550 + - uid: 12692 components: - pos: -50.5,-12.5 parent: 2 @@ -83780,7 +84526,7 @@ entities: type: EntityStorage - proto: CrateEngineeringCableLV entities: - - uid: 12551 + - uid: 12693 components: - pos: -42.5,-15.5 parent: 2 @@ -83805,7 +84551,7 @@ entities: type: EntityStorage - proto: CrateEngineeringElectricalSupplies entities: - - uid: 12552 + - uid: 12694 components: - pos: 22.5,-49.5 parent: 2 @@ -83830,24 +84576,24 @@ entities: type: EntityStorage - proto: CrateFilledSpawner entities: - - uid: 12553 + - uid: 12695 components: - pos: -31.5,-48.5 parent: 2 type: Transform - - uid: 12554 + - uid: 12696 components: - pos: 72.5,-56.5 parent: 2 type: Transform - - uid: 12555 + - uid: 12697 components: - pos: 71.5,-62.5 parent: 2 type: Transform - proto: CrateFoodCooking entities: - - uid: 12556 + - uid: 12698 components: - pos: -47.5,-80.5 parent: 2 @@ -83872,7 +84618,7 @@ entities: type: EntityStorage - proto: CrateFunBoardGames entities: - - uid: 12557 + - uid: 12699 components: - pos: 63.5,6.5 parent: 2 @@ -83895,9 +84641,16 @@ entities: - 0 - 0 type: EntityStorage +- proto: CrateFunToyBox + entities: + - uid: 12700 + components: + - pos: 1.5,-19.5 + parent: 2 + type: Transform - proto: CrateHydroponicsSeeds entities: - - uid: 12559 + - uid: 12701 components: - pos: 12.5,-52.5 parent: 2 @@ -83922,7 +84675,7 @@ entities: type: EntityStorage - proto: CrateHydroponicsSeedsExotic entities: - - uid: 12560 + - uid: 12702 components: - pos: -47.5,-70.5 parent: 2 @@ -83947,14 +84700,14 @@ entities: type: EntityStorage - proto: CrateMaterialGlass entities: - - uid: 12561 + - uid: 12703 components: - pos: 43.5,-7.5 parent: 2 type: Transform - proto: CrateMousetrapBoxes entities: - - uid: 12562 + - uid: 12704 components: - pos: 60.5,42.5 parent: 2 @@ -83977,9 +84730,34 @@ entities: - 0 - 0 type: EntityStorage +- proto: CratePirate + entities: + - uid: 12705 + components: + - pos: 3.5,-11.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage - proto: CrateScience entities: - - uid: 12563 + - uid: 12706 components: - pos: 73.5,-34.5 parent: 2 @@ -84004,7 +84782,7 @@ entities: type: EntityStorage - proto: CrateSecurityNonlethal entities: - - uid: 12564 + - uid: 12707 components: - pos: 29.5,29.5 parent: 2 @@ -84029,7 +84807,7 @@ entities: type: EntityStorage - proto: CrateServiceJanitorialSupplies entities: - - uid: 12565 + - uid: 12708 components: - pos: -9.5,-21.5 parent: 2 @@ -84054,7 +84832,7 @@ entities: type: EntityStorage - proto: CrateServiceSmokeables entities: - - uid: 12566 + - uid: 12709 components: - pos: 56.5,59.5 parent: 2 @@ -84079,7 +84857,7 @@ entities: type: EntityStorage - proto: CrateStoneGrave entities: - - uid: 12567 + - uid: 12710 components: - pos: -32.5,4.5 parent: 2 @@ -84104,51 +84882,63 @@ entities: type: EntityStorage - proto: CrateTrashCart entities: - - uid: 12568 + - uid: 12711 components: - pos: 19.5,-49.5 parent: 2 type: Transform - - uid: 12569 + - uid: 12712 components: - pos: -38.5,-93.5 parent: 2 type: Transform - - uid: 12570 + - uid: 12713 components: - pos: -10.5,14.5 parent: 2 type: Transform - - uid: 12571 + - uid: 12714 components: - pos: -52.5,-34.5 parent: 2 type: Transform - proto: CrateTrashCartFilled entities: - - uid: 12572 + - uid: 12715 + components: + - pos: 1.5,-12.5 + parent: 2 + type: Transform + - uid: 12716 components: - pos: 18.5,-49.5 parent: 2 type: Transform - - uid: 12573 + - uid: 12717 components: - pos: 5.5,-17.5 parent: 2 type: Transform - - uid: 12574 + - uid: 12718 components: - pos: -40.5,-3.5 parent: 2 type: Transform +- proto: CrateTrashCartJani + entities: + - uid: 12719 + components: + - pos: -15.5,-8.5 + parent: 2 + type: Transform - proto: CrateWoodenGrave entities: - - uid: 12575 + - uid: 12720 components: - pos: -10.5,55.5 parent: 2 type: Transform - - uid: 12576 + - uid: 12721 components: - pos: -30.5,4.5 parent: 2 @@ -84171,34 +84961,39 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12577 + - uid: 12722 components: - pos: -32.5,6.5 parent: 2 type: Transform - proto: CrayonBox entities: - - uid: 12579 + - uid: 12723 components: - pos: -29.428709,8.545935 parent: 2 type: Transform - - uid: 12580 + - uid: 12724 components: - rot: 3.141592653589793 rad pos: 54.561592,-64.4996 parent: 2 type: Transform + - uid: 12725 + components: + - pos: 0.5708022,-23.573645 + parent: 2 + type: Transform - proto: CrayonMime entities: - - uid: 12581 + - uid: 12726 components: - pos: -28.463287,46.56972 parent: 2 type: Transform - proto: Crematorium entities: - - uid: 12582 + - uid: 12727 components: - pos: -33.5,11.5 parent: 2 @@ -84223,142 +85018,147 @@ entities: type: EntityStorage - proto: CrewMonitoringComputerCircuitboard entities: - - uid: 12583 + - uid: 12728 components: - pos: 53.35249,35.65033 parent: 2 type: Transform - - uid: 12584 + - uid: 12729 components: - pos: -12.410412,37.664482 parent: 2 type: Transform - proto: CrewMonitoringServer entities: - - uid: 12585 + - uid: 12730 components: - pos: 8.5,-58.5 parent: 2 type: Transform - proto: CrewMonitoringServerMachineCircuitboard entities: - - uid: 12586 + - uid: 12731 components: - pos: -12.176037,37.430107 parent: 2 type: Transform - proto: Crowbar entities: - - uid: 12587 + - uid: 12732 components: - pos: 73.47424,-38.51016 parent: 2 type: Transform - - uid: 12588 + - uid: 12733 components: - pos: -29.495306,-23.60064 parent: 2 type: Transform - - uid: 12589 + - uid: 12734 components: - pos: 40.56214,-53.476734 parent: 2 type: Transform - - uid: 12590 + - uid: 12735 components: - pos: -56.61051,-70.40599 parent: 2 type: Transform - - uid: 12591 + - uid: 12736 components: - pos: -23.432364,-28.473803 parent: 2 type: Transform - - uid: 12592 + - uid: 12737 components: - pos: -36.564224,18.558977 parent: 2 type: Transform - - uid: 12593 + - uid: 12738 components: - rot: 6.283185307179586 rad pos: 57.539654,47.47334 parent: 2 type: Transform - - uid: 12594 + - uid: 12739 components: - pos: -9.421157,-15.518739 parent: 2 type: Transform - - uid: 12976 + - uid: 12740 components: - pos: 62.5,6.5 parent: 2 type: Transform - proto: CrowbarRed entities: - - uid: 12596 + - uid: 12741 components: - pos: 52.637024,11.413784 parent: 2 type: Transform - - uid: 12597 + - uid: 12742 components: - pos: -16.370653,65.49348 parent: 2 type: Transform + - uid: 12743 + components: + - pos: 2.5771694,-21.302826 + parent: 2 + type: Transform - proto: CryoPod entities: - - uid: 12598 + - uid: 12744 components: - pos: -24.5,-59.5 parent: 2 type: Transform - proto: CryoxadoneBeakerSmall entities: - - uid: 12599 + - uid: 12745 components: - pos: -26.756777,-59.261105 parent: 2 type: Transform - proto: CultAltarSpawner entities: - - uid: 12600 + - uid: 12746 components: - pos: -56.5,-62.5 parent: 2 type: Transform - - uid: 12601 + - uid: 12747 components: - pos: -18.5,-81.5 parent: 2 type: Transform - proto: d10Dice entities: - - uid: 12602 + - uid: 12748 components: - pos: 9.458234,-7.2284737 parent: 2 type: Transform - - uid: 12603 + - uid: 12749 components: - pos: -29.44911,-46.43667 parent: 2 type: Transform - proto: d6Dice entities: - - uid: 12604 + - uid: 12750 components: - pos: -1.2845753,31.100819 parent: 2 type: Transform - - uid: 12605 + - uid: 12751 components: - rot: 1.5707963267948966 rad pos: 54.383816,29.301033 parent: 2 type: Transform - - uid: 12606 + - uid: 12752 components: - rot: 1.5707963267948966 rad pos: 54.165066,28.926033 @@ -84366,14 +85166,14 @@ entities: type: Transform - proto: d8Dice entities: - - uid: 12607 + - uid: 12753 components: - pos: 10.036359,-7.0722237 parent: 2 type: Transform - proto: DefibrillatorCabinet entities: - - uid: 12608 + - uid: 12754 components: - rot: 1.5707963267948966 rad pos: 19.5,21.5 @@ -84381,95 +85181,95 @@ entities: type: Transform - proto: DefibrillatorCabinetFilled entities: - - uid: 12609 + - uid: 12755 components: - rot: 1.5707963267948966 rad pos: -26.5,-72.5 parent: 2 type: Transform - - uid: 12610 + - uid: 12756 components: - pos: 44.5,16.5 parent: 2 type: Transform - - uid: 12611 + - uid: 12757 components: - pos: -1.5,-58.5 parent: 2 type: Transform - - uid: 12612 + - uid: 12758 components: - pos: -4.5,-58.5 parent: 2 type: Transform - - uid: 12613 + - uid: 12759 components: - pos: -7.5,-58.5 parent: 2 type: Transform - - uid: 12614 + - uid: 12760 components: - rot: -1.5707963267948966 rad pos: -30.5,-38.5 parent: 2 type: Transform - - uid: 12615 + - uid: 12761 components: - pos: -32.5,-8.5 parent: 2 type: Transform - - uid: 12616 + - uid: 12762 components: - pos: -28.5,20.5 parent: 2 type: Transform - - uid: 12617 + - uid: 12763 components: - pos: -9.5,47.5 parent: 2 type: Transform - - uid: 12618 + - uid: 12764 components: - rot: -1.5707963267948966 rad pos: 33.5,18.5 parent: 2 type: Transform - - uid: 12619 + - uid: 12765 components: - pos: -5.5,-51.5 parent: 2 type: Transform - - uid: 12620 + - uid: 12766 components: - pos: 29.5,-3.5 parent: 2 type: Transform - - uid: 12621 + - uid: 12767 components: - pos: 33.5,-70.5 parent: 2 type: Transform - - uid: 12622 + - uid: 12768 components: - pos: 56.5,-43.5 parent: 2 type: Transform - - uid: 12624 + - uid: 12769 components: - pos: 6.5,-24.5 parent: 2 type: Transform - - uid: 12625 + - uid: 12770 components: - pos: 32.5,-23.5 parent: 2 type: Transform - - uid: 12627 + - uid: 12771 components: - pos: -48.5,45.5 parent: 2 type: Transform - - uid: 12628 + - uid: 12772 components: - rot: -1.5707963267948966 rad pos: 66.5,-10.5 @@ -84477,19 +85277,19 @@ entities: type: Transform - proto: DeployableBarrier entities: - - uid: 12629 + - uid: 12773 components: - anchored: False pos: 29.5,25.5 parent: 2 type: Transform - - uid: 12630 + - uid: 12774 components: - anchored: False pos: -16.5,27.5 parent: 2 type: Transform - - uid: 12631 + - uid: 12775 components: - anchored: False pos: 62.5,7.5 @@ -84497,49 +85297,49 @@ entities: type: Transform - proto: DeskBell entities: - - uid: 12632 + - uid: 12776 components: - pos: 26.493649,19.578499 parent: 2 type: Transform missingComponents: - Item - - uid: 12633 + - uid: 12777 components: - pos: -26.393543,22.737104 parent: 2 type: Transform missingComponents: - Item - - uid: 12634 + - uid: 12778 components: - pos: 2.482698,4.566377 parent: 2 type: Transform missingComponents: - Item - - uid: 12635 + - uid: 12779 components: - pos: 7.4455647,7.463886 parent: 2 type: Transform missingComponents: - Item - - uid: 12636 + - uid: 12780 components: - pos: 15.491525,13.615058 parent: 2 type: Transform missingComponents: - Item - - uid: 12637 + - uid: 12781 components: - pos: -2.9507003,-48.39704 parent: 2 type: Transform missingComponents: - Item - - uid: 12638 + - uid: 12782 components: - pos: 42.281975,-40.51448 parent: 2 @@ -84548,987 +85348,999 @@ entities: - Item - proto: DiceBag entities: - - uid: 12640 + - uid: 12783 components: - pos: 10.645734,-7.4315987 parent: 2 type: Transform - - uid: 12641 + - uid: 12784 components: - pos: 23.269382,-29.34838 parent: 2 type: Transform - - uid: 12642 + - uid: 12785 components: - pos: -0.45645034,30.694569 parent: 2 type: Transform - - uid: 12643 + - uid: 12786 components: - pos: -16.724815,61.696495 parent: 2 type: Transform - - uid: 12644 + - uid: 12787 components: - pos: -18.55294,62.55587 parent: 2 type: Transform - proto: DiseaseDiagnoser entities: - - uid: 12645 + - uid: 12788 components: - pos: -22.5,-75.5 parent: 2 type: Transform - proto: DisposalBend entities: - - uid: 12646 + - uid: 12789 components: - rot: 1.5707963267948966 rad pos: -0.5,1.5 parent: 2 type: Transform - - uid: 12647 + - uid: 12790 components: - pos: 21.5,-29.5 parent: 2 type: Transform - - uid: 12649 + - uid: 12791 components: - rot: 1.5707963267948966 rad pos: -19.5,-60.5 parent: 2 type: Transform - - uid: 12651 + - uid: 12792 components: - pos: 34.5,8.5 parent: 2 type: Transform - - uid: 12652 + - uid: 12793 components: - rot: 1.5707963267948966 rad pos: -14.5,-9.5 parent: 2 type: Transform - - uid: 12653 + - uid: 12794 components: - rot: 1.5707963267948966 rad pos: 16.5,-18.5 parent: 2 type: Transform - - uid: 12654 + - uid: 12795 components: - pos: 0.5,0.5 parent: 2 type: Transform - - uid: 12655 + - uid: 12796 components: - rot: 1.5707963267948966 rad pos: 0.5,2.5 parent: 2 type: Transform - - uid: 12656 + - uid: 12797 components: - rot: 3.141592653589793 rad pos: 8.5,13.5 parent: 2 type: Transform - - uid: 12657 + - uid: 12798 components: - rot: 1.5707963267948966 rad pos: 17.5,7.5 parent: 2 type: Transform - - uid: 12658 + - uid: 12799 components: - rot: -1.5707963267948966 rad pos: 22.5,7.5 parent: 2 type: Transform - - uid: 12659 + - uid: 12800 components: - rot: 1.5707963267948966 rad pos: 22.5,8.5 parent: 2 type: Transform - - uid: 12660 + - uid: 12801 components: - rot: -1.5707963267948966 rad pos: 20.5,-25.5 parent: 2 type: Transform - - uid: 12661 + - uid: 12802 components: - pos: 36.5,-17.5 parent: 2 type: Transform - - uid: 12662 + - uid: 12803 components: - pos: 1.5,-53.5 parent: 2 type: Transform - - uid: 12663 + - uid: 12804 components: - rot: -1.5707963267948966 rad pos: 34.5,-6.5 parent: 2 type: Transform - - uid: 12664 + - uid: 12805 components: - pos: 18.5,-49.5 parent: 2 type: Transform - - uid: 12665 + - uid: 12806 components: - rot: 3.141592653589793 rad pos: 15.5,-45.5 parent: 2 type: Transform - - uid: 12666 + - uid: 12807 components: - rot: 3.141592653589793 rad pos: -4.5,-12.5 parent: 2 type: Transform - - uid: 12667 + - uid: 12808 components: - rot: 1.5707963267948966 rad pos: -15.5,-53.5 parent: 2 type: Transform - - uid: 12668 + - uid: 12809 components: - rot: -1.5707963267948966 rad pos: -15.5,-54.5 parent: 2 type: Transform - - uid: 12669 + - uid: 12810 components: - rot: 1.5707963267948966 rad pos: -17.5,-54.5 parent: 2 type: Transform - - uid: 12670 + - uid: 12811 components: - pos: 18.5,1.5 parent: 2 type: Transform - - uid: 12671 + - uid: 12812 components: - rot: 3.141592653589793 rad pos: 10.5,-3.5 parent: 2 type: Transform - - uid: 12672 + - uid: 12813 components: - rot: -1.5707963267948966 rad pos: 0.5,1.5 parent: 2 type: Transform - - uid: 12673 + - uid: 12814 components: - rot: 3.141592653589793 rad pos: 0.5,-0.5 parent: 2 type: Transform - - uid: 12674 + - uid: 12815 components: - pos: 12.5,13.5 parent: 2 type: Transform - - uid: 12675 + - uid: 12816 components: - rot: 3.141592653589793 rad pos: 22.5,-11.5 parent: 2 type: Transform - - uid: 12676 + - uid: 12817 components: - rot: 3.141592653589793 rad pos: 18.5,-6.5 parent: 2 type: Transform - - uid: 12678 + - uid: 12818 components: - rot: 3.141592653589793 rad pos: -23.5,-84.5 parent: 2 type: Transform - - uid: 12679 + - uid: 12819 components: - rot: -1.5707963267948966 rad pos: 17.5,0.5 parent: 2 type: Transform - - uid: 12680 + - uid: 12820 components: - pos: 17.5,-45.5 parent: 2 type: Transform - - uid: 12681 + - uid: 12821 components: - rot: -1.5707963267948966 rad pos: 24.5,-18.5 parent: 2 type: Transform - - uid: 12682 + - uid: 12822 components: - rot: -1.5707963267948966 rad pos: -17.5,-60.5 parent: 2 type: Transform - - uid: 12683 + - uid: 12823 components: - rot: -1.5707963267948966 rad pos: 13.5,-0.5 parent: 2 type: Transform - - uid: 12684 + - uid: 12824 components: - rot: 1.5707963267948966 rad pos: -23.5,-73.5 parent: 2 type: Transform - - uid: 12685 + - uid: 12825 components: - pos: 15.5,19.5 parent: 2 type: Transform - - uid: 12686 + - uid: 12826 components: - pos: -3.5,-12.5 parent: 2 type: Transform - - uid: 12687 + - uid: 12827 components: - pos: 15.5,-25.5 parent: 2 type: Transform - - uid: 12688 + - uid: 12828 components: - rot: 3.141592653589793 rad pos: 17.5,-49.5 parent: 2 type: Transform - - uid: 12689 + - uid: 12829 components: - rot: -1.5707963267948966 rad pos: 34.5,16.5 parent: 2 type: Transform - - uid: 12690 + - uid: 12830 components: - pos: 29.5,17.5 parent: 2 type: Transform - - uid: 12691 + - uid: 12831 components: - rot: 3.141592653589793 rad pos: 29.5,16.5 parent: 2 type: Transform - - uid: 12692 + - uid: 12832 components: - pos: 41.5,6.5 parent: 2 type: Transform - - uid: 12693 + - uid: 12833 components: - rot: 3.141592653589793 rad pos: 52.5,-13.5 parent: 2 type: Transform - - uid: 12694 + - uid: 12834 components: - pos: 54.5,-13.5 parent: 2 type: Transform - - uid: 12695 + - uid: 12835 components: - pos: 49.5,-43.5 parent: 2 type: Transform - - uid: 12696 + - uid: 12836 components: - rot: -1.5707963267948966 rad pos: 49.5,-50.5 parent: 2 type: Transform - - uid: 12697 + - uid: 12837 components: - pos: 67.5,-45.5 parent: 2 type: Transform - - uid: 12698 + - uid: 12838 components: - pos: 49.5,-55.5 parent: 2 type: Transform - - uid: 12699 + - uid: 12839 components: - rot: -1.5707963267948966 rad pos: -6.5,-66.5 parent: 2 type: Transform - - uid: 12700 + - uid: 12840 components: - rot: 3.141592653589793 rad pos: -23.5,-15.5 parent: 2 type: Transform - - uid: 12701 + - uid: 12841 components: - rot: 3.141592653589793 rad pos: 25.5,-60.5 parent: 2 type: Transform - - uid: 12702 + - uid: 12842 components: - pos: 39.5,-60.5 parent: 2 type: Transform - - uid: 12703 + - uid: 12843 components: - rot: 3.141592653589793 rad pos: -19.5,-43.5 parent: 2 type: Transform - - uid: 12704 + - uid: 12844 components: - rot: -1.5707963267948966 rad pos: 39.5,-73.5 parent: 2 type: Transform - - uid: 12705 + - uid: 12845 components: - rot: -1.5707963267948966 rad pos: -13.5,-6.5 parent: 2 type: Transform - - uid: 12706 + - uid: 12846 components: - pos: -13.5,8.5 parent: 2 type: Transform - - uid: 12707 + - uid: 12847 components: - rot: -1.5707963267948966 rad pos: -19.5,6.5 parent: 2 type: Transform - - uid: 12708 + - uid: 12848 components: - rot: 3.141592653589793 rad pos: -25.5,-6.5 parent: 2 type: Transform - - uid: 12709 + - uid: 12849 components: - rot: 3.141592653589793 rad pos: -32.5,-13.5 parent: 2 type: Transform - - uid: 12710 + - uid: 12850 components: - pos: -32.5,-10.5 parent: 2 type: Transform - - uid: 12711 + - uid: 12851 components: - rot: 3.141592653589793 rad pos: -36.5,-10.5 parent: 2 type: Transform - - uid: 12712 + - uid: 12852 components: - pos: -36.5,-5.5 parent: 2 type: Transform - - uid: 12713 + - uid: 12853 components: - rot: 3.141592653589793 rad pos: -38.5,-5.5 parent: 2 type: Transform - - uid: 12714 + - uid: 12854 components: - rot: 1.5707963267948966 rad pos: -19.5,-75.5 parent: 2 type: Transform - - uid: 12715 + - uid: 12855 components: - rot: -1.5707963267948966 rad pos: -19.5,-77.5 parent: 2 type: Transform - - uid: 12716 + - uid: 12856 components: - rot: 1.5707963267948966 rad pos: -36.5,-77.5 parent: 2 type: Transform - - uid: 12717 + - uid: 12857 components: - rot: 3.141592653589793 rad pos: -42.5,23.5 parent: 2 type: Transform - - uid: 12718 + - uid: 12858 components: - rot: 1.5707963267948966 rad pos: -42.5,19.5 parent: 2 type: Transform - - uid: 12719 + - uid: 12859 components: - rot: 1.5707963267948966 rad pos: -45.5,5.5 parent: 2 type: Transform - - uid: 12720 + - uid: 12860 components: - rot: 3.141592653589793 rad pos: -45.5,-0.5 parent: 2 type: Transform - - uid: 12721 + - uid: 12861 components: - pos: 2.5,-61.5 parent: 2 type: Transform - - uid: 12722 + - uid: 12862 components: - rot: 1.5707963267948966 rad pos: -13.5,-61.5 parent: 2 type: Transform - - uid: 12723 + - uid: 12863 components: - rot: -1.5707963267948966 rad pos: -13.5,-67.5 parent: 2 type: Transform - - uid: 12724 + - uid: 12864 components: - rot: -1.5707963267948966 rad pos: -12.5,5.5 parent: 2 type: Transform - - uid: 12725 + - uid: 12865 components: - rot: -1.5707963267948966 rad pos: -45.5,11.5 parent: 2 type: Transform - - uid: 12726 + - uid: 12866 components: - rot: 1.5707963267948966 rad pos: -45.5,18.5 parent: 2 type: Transform - - uid: 12727 + - uid: 12867 components: - rot: -1.5707963267948966 rad pos: 20.5,-40.5 parent: 2 type: Transform - - uid: 12728 + - uid: 12868 components: - rot: 1.5707963267948966 rad pos: 19.5,-40.5 parent: 2 type: Transform - - uid: 12729 + - uid: 12869 components: - rot: 1.5707963267948966 rad pos: -19.5,29.5 parent: 2 type: Transform - - uid: 12730 + - uid: 12870 components: - rot: -1.5707963267948966 rad pos: -15.5,29.5 parent: 2 type: Transform - - uid: 12731 + - uid: 12871 components: - rot: 3.141592653589793 rad pos: -17.5,44.5 parent: 2 type: Transform - - uid: 12732 + - uid: 12872 components: - pos: -4.5,44.5 parent: 2 type: Transform - - uid: 12733 + - uid: 12873 components: - pos: -13.5,50.5 parent: 2 type: Transform - - uid: 12734 + - uid: 12874 components: - rot: 1.5707963267948966 rad pos: -17.5,50.5 parent: 2 type: Transform - - uid: 12735 + - uid: 12875 components: - rot: -1.5707963267948966 rad pos: 75.5,-47.5 parent: 2 type: Transform - - uid: 12736 + - uid: 12876 components: - pos: -5.5,-13.5 parent: 2 type: Transform - - uid: 12737 + - uid: 12877 components: - rot: 3.141592653589793 rad pos: -10.5,-13.5 parent: 2 type: Transform - - uid: 12738 + - uid: 12878 components: - rot: 3.141592653589793 rad pos: -18.5,-14.5 parent: 2 type: Transform - - uid: 12739 + - uid: 12879 components: - rot: -1.5707963267948966 rad pos: -12.5,-14.5 parent: 2 type: Transform - - uid: 12740 + - uid: 12880 components: - pos: -18.5,-4.5 parent: 2 type: Transform - - uid: 12741 + - uid: 12881 components: - rot: 3.141592653589793 rad pos: -24.5,-4.5 parent: 2 type: Transform - - uid: 12742 + - uid: 12882 components: - rot: 1.5707963267948966 rad pos: -24.5,8.5 parent: 2 type: Transform - - uid: 12743 + - uid: 12883 components: - rot: -1.5707963267948966 rad pos: -20.5,8.5 parent: 2 type: Transform - - uid: 12744 + - uid: 12884 components: - pos: -20.5,20.5 parent: 2 type: Transform - - uid: 12745 + - uid: 12885 components: - rot: 1.5707963267948966 rad pos: -25.5,20.5 parent: 2 type: Transform - - uid: 12746 + - uid: 12886 components: - rot: -1.5707963267948966 rad pos: -25.5,19.5 parent: 2 type: Transform - - uid: 12747 + - uid: 12887 components: - rot: 1.5707963267948966 rad pos: -46.5,11.5 parent: 2 type: Transform - - uid: 12748 + - uid: 12888 components: - rot: 3.141592653589793 rad pos: -46.5,0.5 parent: 2 type: Transform - - uid: 12749 + - uid: 12889 components: - pos: -26.5,0.5 parent: 2 type: Transform - - uid: 12750 + - uid: 12890 components: - rot: 3.141592653589793 rad pos: -26.5,-5.5 parent: 2 type: Transform - - uid: 12751 + - uid: 12891 components: - pos: -20.5,-5.5 parent: 2 type: Transform - - uid: 12752 + - uid: 12892 components: - rot: 3.141592653589793 rad pos: -20.5,-25.5 parent: 2 type: Transform - - uid: 12753 + - uid: 12893 components: - rot: -1.5707963267948966 rad pos: 30.5,-86.5 parent: 2 type: Transform - - uid: 12754 + - uid: 12894 components: - rot: 1.5707963267948966 rad pos: 24.5,-73.5 parent: 2 type: Transform - - uid: 12755 + - uid: 12895 components: - rot: 3.141592653589793 rad pos: 15.5,17.5 parent: 2 type: Transform - - uid: 12756 + - uid: 12896 components: - pos: -67.5,-41.5 parent: 2 type: Transform - - uid: 12757 + - uid: 12897 components: - rot: 3.141592653589793 rad pos: -67.5,-42.5 parent: 2 type: Transform - - uid: 12758 + - uid: 12898 components: - rot: -1.5707963267948966 rad pos: 12.5,2.5 parent: 2 type: Transform - - uid: 12759 + - uid: 12899 components: - rot: 1.5707963267948966 rad pos: 13.5,0.5 parent: 2 type: Transform - - uid: 12760 + - uid: 12900 components: - rot: 3.141592653589793 rad pos: -43.5,-38.5 parent: 2 type: Transform - - uid: 21356 + - uid: 12901 components: - rot: 3.141592653589793 rad pos: 3.5,-3.5 parent: 2 type: Transform + - uid: 12902 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 2 + type: Transform - proto: DisposalJunction entities: - - uid: 12761 + - uid: 12903 components: - rot: -1.5707963267948966 rad pos: 19.5,-43.5 parent: 2 type: Transform - - uid: 12762 + - uid: 12904 components: - rot: -1.5707963267948966 rad pos: 25.5,8.5 parent: 2 type: Transform - - uid: 12764 + - uid: 12905 components: - rot: 1.5707963267948966 rad pos: -7.5,0.5 parent: 2 type: Transform - - uid: 12765 + - uid: 12906 components: - rot: -1.5707963267948966 rad pos: 6.5,2.5 parent: 2 type: Transform - - uid: 12766 + - uid: 12907 components: - rot: -1.5707963267948966 rad pos: -0.5,0.5 parent: 2 type: Transform - - uid: 12767 + - uid: 12908 components: - rot: 3.141592653589793 rad pos: 24.5,-10.5 parent: 2 type: Transform - - uid: 12768 + - uid: 12909 components: - rot: -1.5707963267948966 rad pos: 18.5,-29.5 parent: 2 type: Transform - - uid: 12769 + - uid: 12910 components: - rot: 3.141592653589793 rad pos: 34.5,6.5 parent: 2 type: Transform - - uid: 12770 + - uid: 12911 components: - rot: 1.5707963267948966 rad pos: -13.5,-43.5 parent: 2 type: Transform - - uid: 12771 + - uid: 12912 components: - rot: 1.5707963267948966 rad pos: -5.5,-53.5 parent: 2 type: Transform - - uid: 12772 + - uid: 12913 components: - rot: 3.141592653589793 rad pos: 16.5,-29.5 parent: 2 type: Transform - - uid: 12773 + - uid: 12914 components: - rot: -1.5707963267948966 rad pos: 18.5,7.5 parent: 2 type: Transform - - uid: 12774 + - uid: 12915 components: - rot: 1.5707963267948966 rad pos: -4.5,-27.5 parent: 2 type: Transform - - uid: 12775 + - uid: 12916 components: - rot: -1.5707963267948966 rad pos: 36.5,-43.5 parent: 2 type: Transform - - uid: 12776 + - uid: 12917 components: - rot: -1.5707963267948966 rad pos: 41.5,1.5 parent: 2 type: Transform - - uid: 12777 + - uid: 12918 components: - rot: -1.5707963267948966 rad pos: 46.5,-43.5 parent: 2 type: Transform - - uid: 12778 + - uid: 12919 components: - rot: 3.141592653589793 rad pos: 49.5,-45.5 parent: 2 type: Transform - - uid: 12779 + - uid: 12920 components: - rot: 3.141592653589793 rad pos: 49.5,-47.5 parent: 2 type: Transform - - uid: 12780 + - uid: 12921 components: - rot: 3.141592653589793 rad pos: 67.5,-47.5 parent: 2 type: Transform - - uid: 12781 + - uid: 12922 components: - rot: 1.5707963267948966 rad pos: -23.5,-13.5 parent: 2 type: Transform - - uid: 12782 + - uid: 12923 components: - pos: -19.5,-13.5 parent: 2 type: Transform - - uid: 12783 + - uid: 12924 components: - pos: -25.5,-0.5 parent: 2 type: Transform - - uid: 12784 + - uid: 12925 components: - pos: -19.5,23.5 parent: 2 type: Transform - - uid: 12785 + - uid: 12926 components: - rot: 1.5707963267948966 rad pos: -6.5,-61.5 parent: 2 type: Transform - - uid: 12786 + - uid: 12927 components: - pos: -15.5,37.5 parent: 2 type: Transform - - uid: 12787 + - uid: 12928 components: - rot: 1.5707963267948966 rad pos: 30.5,-73.5 parent: 2 type: Transform + - uid: 12929 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-27.5 + parent: 2 + type: Transform - proto: DisposalJunctionFlipped entities: - - uid: 12788 + - uid: 12930 components: - rot: 1.5707963267948966 rad pos: -9.5,0.5 parent: 2 type: Transform - - uid: 12789 + - uid: 12931 components: - rot: -1.5707963267948966 rad pos: -0.5,-43.5 parent: 2 type: Transform - - uid: 12790 + - uid: 12932 components: - pos: 24.5,-17.5 parent: 2 type: Transform - - uid: 12791 + - uid: 12933 components: - rot: 1.5707963267948966 rad pos: 21.5,17.5 parent: 2 type: Transform - - uid: 12792 + - uid: 12934 components: - rot: -1.5707963267948966 rad pos: 3.5,-0.5 parent: 2 type: Transform - - uid: 12793 + - uid: 12935 components: - pos: 36.5,-18.5 parent: 2 type: Transform - - uid: 12794 + - uid: 12936 components: - pos: 16.5,-25.5 parent: 2 type: Transform - - uid: 12795 + - uid: 12937 components: - rot: 1.5707963267948966 rad pos: -5.5,-25.5 parent: 2 type: Transform - - uid: 12796 + - uid: 12938 components: - rot: 3.141592653589793 rad pos: -0.5,-45.5 parent: 2 type: Transform - - uid: 12797 + - uid: 12939 components: - pos: 34.5,1.5 parent: 2 type: Transform - - uid: 12798 + - uid: 12940 components: - rot: 3.141592653589793 rad pos: -17.5,-57.5 parent: 2 type: Transform - - uid: 12799 + - uid: 12941 components: - pos: 12.5,5.5 parent: 2 type: Transform - - uid: 12800 + - uid: 12942 components: - rot: -1.5707963267948966 rad pos: 10.5,-0.5 parent: 2 type: Transform - - uid: 12801 + - uid: 12943 components: - rot: -1.5707963267948966 rad pos: 6.5,-0.5 parent: 2 type: Transform - - uid: 12802 + - uid: 12944 components: - rot: -1.5707963267948966 rad pos: 24.5,-6.5 parent: 2 type: Transform - - uid: 12803 + - uid: 12945 components: - rot: 3.141592653589793 rad pos: 24.5,-11.5 parent: 2 type: Transform - - uid: 12804 + - uid: 12946 components: - rot: 3.141592653589793 rad pos: -4.5,-33.5 parent: 2 type: Transform - - uid: 12805 + - uid: 12947 components: - rot: -1.5707963267948966 rad pos: 6.5,-43.5 parent: 2 type: Transform - - uid: 12806 + - uid: 12948 components: - pos: 17.5,1.5 parent: 2 type: Transform - - uid: 12807 + - uid: 12949 components: - rot: 1.5707963267948966 rad pos: -10.5,-27.5 parent: 2 type: Transform - - uid: 12808 + - uid: 12950 components: - rot: -1.5707963267948966 rad pos: 25.5,-43.5 parent: 2 type: Transform - - uid: 12809 + - uid: 12951 components: - rot: 3.141592653589793 rad pos: -23.5,-75.5 parent: 2 type: Transform - - uid: 12810 + - uid: 12952 components: - rot: -1.5707963267948966 rad pos: 29.5,-60.5 parent: 2 type: Transform - - uid: 12811 + - uid: 12953 components: - pos: -13.5,5.5 parent: 2 type: Transform - - uid: 12812 + - uid: 12954 components: - rot: 1.5707963267948966 rad pos: -22.5,23.5 parent: 2 type: Transform - - uid: 12813 + - uid: 12955 components: - rot: -1.5707963267948966 rad pos: -3.5,-61.5 @@ -85536,6871 +86348,6915 @@ entities: type: Transform - proto: DisposalMachineFrame entities: - - uid: 12814 + - uid: 12956 components: - pos: 46.5,44.5 parent: 2 type: Transform - - uid: 12815 + - uid: 12957 components: - pos: -57.5,-41.5 parent: 2 type: Transform - - uid: 12816 + - uid: 12958 components: - pos: -22.5,-24.5 parent: 2 type: Transform - - uid: 12817 + - uid: 12959 components: - pos: -19.5,-99.5 parent: 2 type: Transform - proto: DisposalPipe entities: - - uid: 12818 + - uid: 12960 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-25.5 + parent: 2 + type: Transform + - uid: 12961 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-26.5 + parent: 2 + type: Transform + - uid: 12962 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-24.5 + parent: 2 + type: Transform + - uid: 12963 components: - rot: 1.5707963267948966 rad pos: -6.5,-9.5 parent: 2 type: Transform - - uid: 12819 + - uid: 12964 components: - pos: 12.5,6.5 parent: 2 type: Transform - - uid: 12820 + - uid: 12965 components: - rot: -1.5707963267948966 rad pos: 1.5,2.5 parent: 2 type: Transform - - uid: 12821 + - uid: 12966 components: - pos: 36.5,-25.5 parent: 2 type: Transform - - uid: 12822 + - uid: 12967 components: - pos: 36.5,-22.5 parent: 2 type: Transform - - uid: 12823 + - uid: 12968 components: - rot: -1.5707963267948966 rad pos: 25.5,-6.5 parent: 2 type: Transform - - uid: 12824 + - uid: 12969 components: - pos: 16.5,-42.5 parent: 2 type: Transform - - uid: 12825 + - uid: 12970 components: - pos: 16.5,-41.5 parent: 2 type: Transform - - uid: 12826 + - uid: 12971 components: - rot: -1.5707963267948966 rad pos: 20.5,-43.5 parent: 2 type: Transform - - uid: 12827 + - uid: 12972 components: - rot: 1.5707963267948966 rad pos: 13.5,-43.5 parent: 2 type: Transform - - uid: 12828 + - uid: 12973 components: - rot: 1.5707963267948966 rad pos: 12.5,-43.5 parent: 2 type: Transform - - uid: 12829 + - uid: 12974 components: - rot: 1.5707963267948966 rad pos: 8.5,-43.5 parent: 2 type: Transform - - uid: 12830 + - uid: 12975 components: - rot: 1.5707963267948966 rad pos: 4.5,-43.5 parent: 2 type: Transform - - uid: 12831 + - uid: 12976 components: - rot: -1.5707963267948966 rad pos: 0.5,-43.5 parent: 2 type: Transform - - uid: 12832 + - uid: 12977 components: - rot: -1.5707963267948966 rad pos: 17.5,-29.5 parent: 2 type: Transform - - uid: 12833 + - uid: 12978 components: - pos: 21.5,-33.5 parent: 2 type: Transform - - uid: 12835 + - uid: 12979 components: - rot: 1.5707963267948966 rad pos: -13.5,-27.5 parent: 2 type: Transform - - uid: 12836 + - uid: 12980 components: - rot: -1.5707963267948966 rad pos: 31.5,-17.5 parent: 2 type: Transform - - uid: 12837 + - uid: 12981 components: - pos: 21.5,-30.5 parent: 2 type: Transform - - uid: 12838 + - uid: 12982 components: - pos: 21.5,-31.5 parent: 2 type: Transform - - uid: 12840 + - uid: 12983 components: - rot: -1.5707963267948966 rad pos: 33.5,-17.5 parent: 2 type: Transform - - uid: 12841 + - uid: 12984 components: - rot: -1.5707963267948966 rad pos: 32.5,8.5 parent: 2 type: Transform - - uid: 12842 + - uid: 12985 components: - rot: -1.5707963267948966 rad pos: -6.5,-43.5 parent: 2 type: Transform - - uid: 12843 + - uid: 12986 components: - rot: -1.5707963267948966 rad pos: -8.5,-43.5 parent: 2 type: Transform - - uid: 12844 + - uid: 12987 components: - pos: -13.5,-45.5 parent: 2 type: Transform - - uid: 12845 + - uid: 12988 components: - pos: -17.5,-55.5 parent: 2 type: Transform - - uid: 12846 + - uid: 12989 components: - rot: -1.5707963267948966 rad pos: -18.5,-60.5 parent: 2 type: Transform - - uid: 12847 + - uid: 12990 components: - pos: -19.5,-61.5 parent: 2 type: Transform - - uid: 12848 + - uid: 12991 components: - rot: 1.5707963267948966 rad pos: -6.5,-53.5 parent: 2 type: Transform - - uid: 12849 + - uid: 12992 components: - rot: -1.5707963267948966 rad pos: 11.5,-0.5 parent: 2 type: Transform - - uid: 12850 + - uid: 12993 components: - rot: 1.5707963267948966 rad pos: 8.5,2.5 parent: 2 type: Transform - - uid: 12851 + - uid: 12994 components: - rot: 3.141592653589793 rad pos: -4.5,-1.5 parent: 2 type: Transform - - uid: 12852 + - uid: 12995 components: - rot: 3.141592653589793 rad pos: 8.5,14.5 parent: 2 type: Transform - - uid: 12854 + - uid: 12996 components: - pos: 19.5,-41.5 parent: 2 type: Transform - - uid: 12855 + - uid: 12997 components: - pos: -9.5,1.5 parent: 2 type: Transform - - uid: 12856 + - uid: 12998 components: - pos: -9.5,4.5 parent: 2 type: Transform - - uid: 12857 + - uid: 12999 components: - pos: -9.5,3.5 parent: 2 type: Transform - - uid: 12858 + - uid: 13000 components: - pos: -9.5,2.5 parent: 2 type: Transform - - uid: 12859 + - uid: 13001 components: - rot: -1.5707963267948966 rad pos: 10.5,13.5 parent: 2 type: Transform - - uid: 12860 + - uid: 13002 components: - pos: 24.5,-9.5 parent: 2 type: Transform - - uid: 12861 + - uid: 13003 components: - rot: 1.5707963267948966 rad pos: 23.5,-6.5 parent: 2 type: Transform - - uid: 12862 + - uid: 13004 components: - pos: 24.5,-7.5 parent: 2 type: Transform - - uid: 12863 + - uid: 13005 components: - rot: -1.5707963267948966 rad pos: 3.5,2.5 parent: 2 type: Transform - - uid: 12864 + - uid: 13006 components: - rot: 1.5707963267948966 rad pos: -5.5,0.5 parent: 2 type: Transform - - uid: 12865 + - uid: 13007 components: - pos: -23.5,-74.5 parent: 2 type: Transform - - uid: 12866 + - uid: 13008 components: - pos: 12.5,11.5 parent: 2 type: Transform - - uid: 12867 + - uid: 13009 components: - rot: -1.5707963267948966 rad pos: -14.5,-43.5 parent: 2 type: Transform - - uid: 12868 + - uid: 13010 components: - rot: 1.5707963267948966 rad pos: -8.5,0.5 parent: 2 type: Transform - - uid: 12869 + - uid: 13011 components: - rot: 1.5707963267948966 rad pos: -8.5,-27.5 parent: 2 type: Transform - - uid: 12870 + - uid: 13012 components: - rot: 1.5707963267948966 rad pos: -9.5,-9.5 parent: 2 type: Transform - - uid: 12871 + - uid: 13013 components: - rot: 1.5707963267948966 rad pos: -2.5,0.5 parent: 2 type: Transform - - uid: 12872 + - uid: 13014 components: - rot: -1.5707963267948966 rad pos: 21.5,7.5 parent: 2 type: Transform - - uid: 12873 + - uid: 13015 components: - pos: 36.5,-24.5 parent: 2 type: Transform - - uid: 12874 + - uid: 13016 components: - pos: 34.5,-4.5 parent: 2 type: Transform - - uid: 12875 + - uid: 13017 components: - pos: 34.5,-2.5 parent: 2 type: Transform - - uid: 12876 + - uid: 13018 components: - rot: 3.141592653589793 rad pos: 34.5,5.5 parent: 2 type: Transform - - uid: 12877 + - uid: 13019 components: - rot: -1.5707963267948966 rad pos: 39.5,6.5 parent: 2 type: Transform - - uid: 12878 + - uid: 13020 components: - rot: -1.5707963267948966 rad pos: 28.5,-6.5 parent: 2 type: Transform - - uid: 12879 + - uid: 13021 components: - rot: -1.5707963267948966 rad pos: 26.5,-6.5 parent: 2 type: Transform - - uid: 12880 + - uid: 13022 components: - rot: 1.5707963267948966 rad pos: 11.5,-43.5 parent: 2 type: Transform - - uid: 12881 + - uid: 13023 components: - rot: 1.5707963267948966 rad pos: 9.5,-43.5 parent: 2 type: Transform - - uid: 12882 + - uid: 13024 components: - rot: 1.5707963267948966 rad pos: 10.5,-43.5 parent: 2 type: Transform - - uid: 12883 + - uid: 13025 components: - rot: 1.5707963267948966 rad pos: 7.5,-43.5 parent: 2 type: Transform - - uid: 12884 + - uid: 13026 components: - rot: 1.5707963267948966 rad pos: 5.5,-43.5 parent: 2 type: Transform - - uid: 12885 + - uid: 13027 components: - rot: -1.5707963267948966 rad pos: 1.5,-43.5 parent: 2 type: Transform - - uid: 12886 + - uid: 13028 components: - pos: 6.5,-44.5 parent: 2 type: Transform - - uid: 12887 + - uid: 13029 components: - pos: 21.5,-32.5 parent: 2 type: Transform - - uid: 12888 + - uid: 13030 components: - rot: 1.5707963267948966 rad pos: 20.5,-18.5 parent: 2 type: Transform - - uid: 12889 + - uid: 13031 components: - pos: 24.5,-13.5 parent: 2 type: Transform - - uid: 12890 + - uid: 13032 components: - rot: 1.5707963267948966 rad pos: 22.5,17.5 parent: 2 type: Transform - - uid: 12891 + - uid: 13033 components: - rot: -1.5707963267948966 rad pos: 28.5,17.5 parent: 2 type: Transform - - uid: 12892 + - uid: 13034 components: - pos: 25.5,15.5 parent: 2 type: Transform - - uid: 12893 + - uid: 13035 components: - rot: 1.5707963267948966 rad pos: 21.5,-6.5 parent: 2 type: Transform - - uid: 12894 + - uid: 13036 components: - rot: -1.5707963267948966 rad pos: 26.5,8.5 parent: 2 type: Transform - - uid: 12895 + - uid: 13037 components: - rot: -1.5707963267948966 rad pos: 11.5,2.5 parent: 2 type: Transform - - uid: 12896 + - uid: 13038 components: - pos: 6.5,4.5 parent: 2 type: Transform - - uid: 12897 + - uid: 13039 components: - rot: 1.5707963267948966 rad pos: -17.5,-27.5 parent: 2 type: Transform - - uid: 12898 + - uid: 13040 components: - rot: 1.5707963267948966 rad pos: -15.5,-27.5 parent: 2 type: Transform - - uid: 12899 + - uid: 13041 components: - rot: 1.5707963267948966 rad pos: -16.5,-27.5 parent: 2 type: Transform - - uid: 12900 + - uid: 13042 components: - rot: 1.5707963267948966 rad pos: -6.5,-27.5 parent: 2 type: Transform - - uid: 12901 + - uid: 13043 components: - rot: 1.5707963267948966 rad pos: -5.5,-27.5 parent: 2 type: Transform - - uid: 12902 + - uid: 13044 components: - rot: 1.5707963267948966 rad pos: -14.5,-27.5 parent: 2 type: Transform - - uid: 12903 + - uid: 13045 components: - rot: -1.5707963267948966 rad pos: -5.5,-33.5 parent: 2 type: Transform - - uid: 12904 + - uid: 13046 components: - pos: -19.5,-63.5 parent: 2 type: Transform - - uid: 12905 + - uid: 13047 components: - rot: 1.5707963267948966 rad pos: 8.5,-27.5 parent: 2 type: Transform - - uid: 12906 + - uid: 13048 components: - rot: 1.5707963267948966 rad pos: 7.5,-27.5 parent: 2 type: Transform - - uid: 12907 + - uid: 13049 components: - rot: 1.5707963267948966 rad pos: 5.5,-27.5 parent: 2 type: Transform - - uid: 12908 + - uid: 13050 components: - rot: 1.5707963267948966 rad pos: 3.5,-27.5 parent: 2 type: Transform - - uid: 12909 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-27.5 - parent: 2 - type: Transform - - uid: 12910 + - uid: 13051 components: - pos: -23.5,-77.5 parent: 2 type: Transform - - uid: 12911 + - uid: 13052 components: - rot: 1.5707963267948966 rad pos: 1.5,-27.5 parent: 2 type: Transform - - uid: 12912 + - uid: 13053 components: - rot: 1.5707963267948966 rad pos: -0.5,-27.5 parent: 2 type: Transform - - uid: 12913 + - uid: 13054 components: - rot: 1.5707963267948966 rad pos: -2.5,-27.5 parent: 2 type: Transform - - uid: 12914 + - uid: 13055 components: - rot: 1.5707963267948966 rad pos: 2.5,-0.5 parent: 2 type: Transform - - uid: 12915 + - uid: 13056 components: - pos: 18.5,-2.5 parent: 2 type: Transform - - uid: 12916 + - uid: 13057 components: - rot: -1.5707963267948966 rad pos: 27.5,17.5 parent: 2 type: Transform - - uid: 12917 + - uid: 13058 components: - rot: 3.141592653589793 rad pos: 16.5,-34.5 parent: 2 type: Transform - - uid: 12918 + - uid: 13059 components: - rot: 3.141592653589793 rad pos: 16.5,-32.5 parent: 2 type: Transform - - uid: 12919 + - uid: 13060 components: - rot: 3.141592653589793 rad pos: 16.5,-30.5 parent: 2 type: Transform - - uid: 12920 + - uid: 13061 components: - rot: 3.141592653589793 rad pos: 16.5,-28.5 parent: 2 type: Transform - - uid: 12921 + - uid: 13062 components: - rot: -1.5707963267948966 rad pos: 28.5,8.5 parent: 2 type: Transform - - uid: 12922 + - uid: 13063 components: - rot: 1.5707963267948966 rad pos: 7.5,-0.5 parent: 2 type: Transform - - uid: 12923 + - uid: 13064 components: - rot: 3.141592653589793 rad pos: 18.5,-26.5 parent: 2 type: Transform - - uid: 12924 + - uid: 13065 components: - pos: 18.5,-3.5 parent: 2 type: Transform - - uid: 12925 + - uid: 13066 components: - rot: 1.5707963267948966 rad pos: 0.5,-27.5 parent: 2 type: Transform - - uid: 12926 + - uid: 13067 components: - rot: 1.5707963267948966 rad pos: -1.5,-27.5 parent: 2 type: Transform - - uid: 12927 + - uid: 13068 components: - rot: 3.141592653589793 rad pos: 16.5,-33.5 parent: 2 type: Transform - - uid: 12928 + - uid: 13069 components: - rot: 3.141592653589793 rad pos: 16.5,-31.5 parent: 2 type: Transform - - uid: 12929 + - uid: 13070 components: - rot: -1.5707963267948966 rad pos: 26.5,-17.5 parent: 2 type: Transform - - uid: 12930 + - uid: 13071 components: - rot: 1.5707963267948966 rad pos: 5.5,-0.5 parent: 2 type: Transform - - uid: 12931 + - uid: 13072 components: - rot: 1.5707963267948966 rad pos: -12.5,-53.5 parent: 2 type: Transform - - uid: 12932 + - uid: 13073 components: - rot: 1.5707963267948966 rad pos: 6.5,-27.5 parent: 2 type: Transform - - uid: 12933 + - uid: 13074 components: - pos: 24.5,-15.5 parent: 2 type: Transform - - uid: 12934 + - uid: 13075 components: - rot: 1.5707963267948966 rad pos: 22.5,-18.5 parent: 2 type: Transform - - uid: 12935 + - uid: 13076 components: - rot: 1.5707963267948966 rad pos: 18.5,-18.5 parent: 2 type: Transform - - uid: 12936 + - uid: 13077 components: - pos: 12.5,7.5 parent: 2 type: Transform - - uid: 12937 + - uid: 13078 components: - rot: 3.141592653589793 rad pos: 17.5,3.5 parent: 2 type: Transform - - uid: 12938 + - uid: 13079 components: - rot: 1.5707963267948966 rad pos: -1.5,0.5 parent: 2 type: Transform - - uid: 12939 + - uid: 13080 components: - rot: 1.5707963267948966 rad pos: -3.5,0.5 parent: 2 type: Transform - - uid: 12940 + - uid: 13081 components: - pos: 10.5,-2.5 parent: 2 type: Transform - - uid: 12941 + - uid: 13082 components: - rot: -1.5707963267948966 rad pos: 14.5,0.5 parent: 2 type: Transform - - uid: 12942 + - uid: 13083 components: - rot: -1.5707963267948966 rad pos: 16.5,0.5 parent: 2 type: Transform - - uid: 12943 + - uid: 13084 components: - rot: 3.141592653589793 rad pos: -4.5,-7.5 parent: 2 type: Transform - - uid: 12944 + - uid: 13085 components: - rot: 3.141592653589793 rad pos: -3.5,-18.5 parent: 2 type: Transform - - uid: 12945 + - uid: 13086 components: - rot: 3.141592653589793 rad pos: 18.5,-51.5 parent: 2 type: Transform - - uid: 12946 + - uid: 13087 components: - rot: 3.141592653589793 rad pos: 18.5,-50.5 parent: 2 type: Transform - - uid: 12947 + - uid: 13088 components: - rot: 3.141592653589793 rad pos: 15.5,-42.5 parent: 2 type: Transform - - uid: 12948 + - uid: 13089 components: - pos: -4.5,-42.5 parent: 2 type: Transform - - uid: 12949 + - uid: 13090 components: - pos: -4.5,-40.5 parent: 2 type: Transform - - uid: 12950 + - uid: 13091 components: - pos: -4.5,-38.5 parent: 2 type: Transform - - uid: 12951 + - uid: 13092 components: - pos: -4.5,-36.5 parent: 2 type: Transform - - uid: 12952 + - uid: 13093 components: - pos: -4.5,-34.5 parent: 2 type: Transform - - uid: 12953 + - uid: 13094 components: - pos: -4.5,-32.5 parent: 2 type: Transform - - uid: 12954 + - uid: 13095 components: - pos: -4.5,-30.5 parent: 2 type: Transform - - uid: 12955 + - uid: 13096 components: - rot: -1.5707963267948966 rad pos: -17.5,-43.5 parent: 2 type: Transform - - uid: 12956 + - uid: 13097 components: - rot: -1.5707963267948966 rad pos: -16.5,-43.5 parent: 2 type: Transform - - uid: 12957 + - uid: 13098 components: - rot: 1.5707963267948966 rad pos: 11.5,-27.5 parent: 2 type: Transform - - uid: 12958 + - uid: 13099 components: - rot: 1.5707963267948966 rad pos: 9.5,-27.5 parent: 2 type: Transform - - uid: 12959 + - uid: 13100 components: - rot: 1.5707963267948966 rad pos: 10.5,-27.5 parent: 2 type: Transform - - uid: 12960 + - uid: 13101 components: - rot: 1.5707963267948966 rad pos: -9.5,-27.5 parent: 2 type: Transform - - uid: 12961 + - uid: 13102 components: - rot: 1.5707963267948966 rad pos: -7.5,-27.5 parent: 2 type: Transform - - uid: 12962 + - uid: 13103 components: - rot: 1.5707963267948966 rad pos: 15.5,-27.5 parent: 2 type: Transform - - uid: 12963 + - uid: 13104 components: - rot: 1.5707963267948966 rad pos: 14.5,-27.5 parent: 2 type: Transform - - uid: 12964 + - uid: 13105 components: - rot: 1.5707963267948966 rad pos: 13.5,-27.5 parent: 2 type: Transform - - uid: 12965 + - uid: 13106 components: - rot: 1.5707963267948966 rad pos: -12.5,-27.5 parent: 2 type: Transform - - uid: 12966 + - uid: 13107 components: - rot: 1.5707963267948966 rad pos: -11.5,-27.5 parent: 2 type: Transform - - uid: 12967 + - uid: 13108 components: - pos: 17.5,-48.5 parent: 2 type: Transform - - uid: 12969 + - uid: 13109 components: - rot: -1.5707963267948966 rad pos: 1.5,-0.5 parent: 2 type: Transform - - uid: 12970 + - uid: 13110 components: - rot: -1.5707963267948966 rad pos: 2.5,2.5 parent: 2 type: Transform - - uid: 12971 + - uid: 13111 components: - rot: -1.5707963267948966 rad pos: 11.5,13.5 parent: 2 type: Transform - - uid: 12972 + - uid: 13112 components: - pos: 12.5,12.5 parent: 2 type: Transform - - uid: 12973 + - uid: 13113 components: - rot: 1.5707963267948966 rad pos: 23.5,17.5 parent: 2 type: Transform - - uid: 12974 + - uid: 13114 components: - rot: -1.5707963267948966 rad pos: 35.5,-17.5 parent: 2 type: Transform - - uid: 12975 + - uid: 13115 components: - pos: 36.5,-19.5 parent: 2 type: Transform - - uid: 12978 + - uid: 13116 components: - rot: -1.5707963267948966 rad pos: 30.5,8.5 parent: 2 type: Transform - - uid: 12979 + - uid: 13117 components: - rot: -1.5707963267948966 rad pos: 27.5,8.5 parent: 2 type: Transform - - uid: 12980 + - uid: 13118 components: - rot: -1.5707963267948966 rad pos: 29.5,8.5 parent: 2 type: Transform - - uid: 12981 + - uid: 13119 components: - rot: -1.5707963267948966 rad pos: 31.5,8.5 parent: 2 type: Transform - - uid: 12982 + - uid: 13120 components: - rot: -1.5707963267948966 rad pos: 26.5,-10.5 parent: 2 type: Transform - - uid: 12983 + - uid: 13121 components: - rot: 1.5707963267948966 rad pos: 23.5,-11.5 parent: 2 type: Transform - - uid: 12984 + - uid: 13122 components: - rot: -1.5707963267948966 rad pos: 20.5,7.5 parent: 2 type: Transform - - uid: 12985 + - uid: 13123 components: - rot: -1.5707963267948966 rad pos: 19.5,7.5 parent: 2 type: Transform - - uid: 12986 + - uid: 13124 components: - rot: -1.5707963267948966 rad pos: 23.5,8.5 parent: 2 type: Transform - - uid: 12987 + - uid: 13125 components: - rot: -1.5707963267948966 rad pos: 24.5,8.5 parent: 2 type: Transform - - uid: 12988 + - uid: 13126 components: - pos: 25.5,9.5 parent: 2 type: Transform - - uid: 12989 + - uid: 13127 components: - pos: 25.5,10.5 parent: 2 type: Transform - - uid: 12990 + - uid: 13128 components: - pos: 25.5,11.5 parent: 2 type: Transform - - uid: 12991 + - uid: 13129 components: - pos: 25.5,12.5 parent: 2 type: Transform - - uid: 12992 + - uid: 13130 components: - pos: 25.5,13.5 parent: 2 type: Transform - - uid: 12993 + - uid: 13131 components: - pos: 25.5,14.5 parent: 2 type: Transform - - uid: 12994 + - uid: 13132 components: - pos: 25.5,16.5 parent: 2 type: Transform - - uid: 12995 + - uid: 13133 components: - rot: -1.5707963267948966 rad pos: 26.5,17.5 parent: 2 type: Transform - - uid: 12996 + - uid: 13134 components: - rot: -1.5707963267948966 rad pos: 24.5,17.5 parent: 2 type: Transform - - uid: 12997 + - uid: 13135 components: - pos: 21.5,18.5 parent: 2 type: Transform - - uid: 12998 + - uid: 13136 components: - pos: 21.5,19.5 parent: 2 type: Transform - - uid: 12999 + - uid: 13137 components: - pos: 24.5,-12.5 parent: 2 type: Transform - - uid: 13000 + - uid: 13138 components: - rot: 1.5707963267948966 rad pos: 19.5,-18.5 parent: 2 type: Transform - - uid: 13001 + - uid: 13139 components: - rot: 1.5707963267948966 rad pos: 17.5,-18.5 parent: 2 type: Transform - - uid: 13002 + - uid: 13140 components: - pos: 16.5,-20.5 parent: 2 type: Transform - - uid: 13003 + - uid: 13141 components: - pos: 16.5,-21.5 parent: 2 type: Transform - - uid: 13004 + - uid: 13142 components: - pos: 16.5,-22.5 parent: 2 type: Transform - - uid: 13005 + - uid: 13143 components: - pos: 16.5,-23.5 parent: 2 type: Transform - - uid: 13006 + - uid: 13144 components: - pos: 16.5,-24.5 parent: 2 type: Transform - - uid: 13007 + - uid: 13145 components: - rot: -1.5707963267948966 rad pos: 17.5,-25.5 parent: 2 type: Transform - - uid: 13008 + - uid: 13146 components: - rot: -1.5707963267948966 rad pos: 19.5,-25.5 parent: 2 type: Transform - - uid: 13009 + - uid: 13147 components: - pos: 20.5,-24.5 parent: 2 type: Transform - - uid: 13010 + - uid: 13148 components: - rot: -1.5707963267948966 rad pos: 25.5,-17.5 parent: 2 type: Transform - - uid: 13011 + - uid: 13149 components: - rot: -1.5707963267948966 rad pos: 27.5,-17.5 parent: 2 type: Transform - - uid: 13012 + - uid: 13150 components: - rot: -1.5707963267948966 rad pos: 29.5,-17.5 parent: 2 type: Transform - - uid: 13013 + - uid: 13151 components: - rot: -1.5707963267948966 rad pos: 28.5,-17.5 parent: 2 type: Transform - - uid: 13014 + - uid: 13152 components: - rot: -1.5707963267948966 rad pos: 30.5,-17.5 parent: 2 type: Transform - - uid: 13015 + - uid: 13153 components: - rot: -1.5707963267948966 rad pos: 32.5,-17.5 parent: 2 type: Transform - - uid: 13016 + - uid: 13154 components: - rot: 3.141592653589793 rad pos: 16.5,-26.5 parent: 2 type: Transform - - uid: 13017 + - uid: 13155 components: - rot: -1.5707963267948966 rad pos: 19.5,-29.5 parent: 2 type: Transform - - uid: 13018 + - uid: 13156 components: - rot: -1.5707963267948966 rad pos: 20.5,-29.5 parent: 2 type: Transform - - uid: 13020 + - uid: 13157 components: - rot: -1.5707963267948966 rad pos: 34.5,-17.5 parent: 2 type: Transform - - uid: 13021 + - uid: 13158 components: - rot: 3.141592653589793 rad pos: 36.5,-20.5 parent: 2 type: Transform - - uid: 13022 + - uid: 13159 components: - rot: 3.141592653589793 rad pos: 36.5,-21.5 parent: 2 type: Transform - - uid: 13023 + - uid: 13160 components: - rot: -1.5707963267948966 rad pos: 33.5,8.5 parent: 2 type: Transform - - uid: 13024 + - uid: 13161 components: - rot: 3.141592653589793 rad pos: -4.5,-10.5 parent: 2 type: Transform - - uid: 13025 + - uid: 13162 components: - rot: -1.5707963267948966 rad pos: 7.5,-25.5 parent: 2 type: Transform - - uid: 13026 + - uid: 13163 components: - pos: -7.5,-1.5 parent: 2 type: Transform - - uid: 13027 + - uid: 13164 components: - rot: -1.5707963267948966 rad pos: 20.5,17.5 parent: 2 type: Transform - - uid: 13028 + - uid: 13165 components: - rot: -1.5707963267948966 rad pos: 19.5,17.5 parent: 2 type: Transform - - uid: 13029 + - uid: 13166 components: - rot: -1.5707963267948966 rad pos: -4.5,-25.5 parent: 2 type: Transform - - uid: 13030 + - uid: 13167 components: - pos: 16.5,-35.5 parent: 2 type: Transform - - uid: 13031 + - uid: 13168 components: - pos: 16.5,-36.5 parent: 2 type: Transform - - uid: 13032 + - uid: 13169 components: - pos: 16.5,-37.5 parent: 2 type: Transform - - uid: 13033 + - uid: 13170 components: - pos: 16.5,-38.5 parent: 2 type: Transform - - uid: 13034 + - uid: 13171 components: - pos: 16.5,-39.5 parent: 2 type: Transform - - uid: 13035 + - uid: 13172 components: - pos: 16.5,-40.5 parent: 2 type: Transform - - uid: 13036 + - uid: 13173 components: - rot: 3.141592653589793 rad pos: 1.5,-58.5 parent: 2 type: Transform - - uid: 13037 + - uid: 13174 components: - rot: 3.141592653589793 rad pos: 1.5,-57.5 parent: 2 type: Transform - - uid: 13038 + - uid: 13175 components: - rot: 3.141592653589793 rad pos: 1.5,-56.5 parent: 2 type: Transform - - uid: 13039 + - uid: 13176 components: - rot: 3.141592653589793 rad pos: 1.5,-55.5 parent: 2 type: Transform - - uid: 13040 + - uid: 13177 components: - rot: 3.141592653589793 rad pos: 1.5,-54.5 parent: 2 type: Transform - - uid: 13041 + - uid: 13178 components: - rot: -1.5707963267948966 rad pos: 0.5,-53.5 parent: 2 type: Transform - - uid: 13042 + - uid: 13179 components: - rot: -1.5707963267948966 rad pos: -1.5,-45.5 parent: 2 type: Transform - - uid: 13043 + - uid: 13180 components: - rot: 3.141592653589793 rad pos: -0.5,-52.5 parent: 2 type: Transform - - uid: 13044 + - uid: 13181 components: - rot: 3.141592653589793 rad pos: -0.5,-51.5 parent: 2 type: Transform - - uid: 13045 + - uid: 13182 components: - rot: 3.141592653589793 rad pos: -0.5,-50.5 parent: 2 type: Transform - - uid: 13046 + - uid: 13183 components: - rot: 3.141592653589793 rad pos: -0.5,-48.5 parent: 2 type: Transform - - uid: 13047 + - uid: 13184 components: - rot: 3.141592653589793 rad pos: -0.5,-47.5 parent: 2 type: Transform - - uid: 13048 + - uid: 13185 components: - pos: -0.5,-44.5 parent: 2 type: Transform - - uid: 13049 + - uid: 13186 components: - rot: -1.5707963267948966 rad pos: 27.5,-6.5 parent: 2 type: Transform - - uid: 13050 + - uid: 13187 components: - rot: -1.5707963267948966 rad pos: 29.5,-6.5 parent: 2 type: Transform - - uid: 13051 + - uid: 13188 components: - rot: -1.5707963267948966 rad pos: 30.5,-6.5 parent: 2 type: Transform - - uid: 13052 + - uid: 13189 components: - rot: -1.5707963267948966 rad pos: 31.5,-6.5 parent: 2 type: Transform - - uid: 13053 + - uid: 13190 components: - rot: -1.5707963267948966 rad pos: 32.5,-6.5 parent: 2 type: Transform - - uid: 13054 + - uid: 13191 components: - rot: -1.5707963267948966 rad pos: 33.5,-6.5 parent: 2 type: Transform - - uid: 13055 + - uid: 13192 components: - rot: 3.141592653589793 rad pos: 34.5,7.5 parent: 2 type: Transform - - uid: 13056 + - uid: 13193 components: - rot: -1.5707963267948966 rad pos: 35.5,6.5 parent: 2 type: Transform - - uid: 13057 + - uid: 13194 components: - rot: -1.5707963267948966 rad pos: 36.5,6.5 parent: 2 type: Transform - - uid: 13058 + - uid: 13195 components: - rot: -1.5707963267948966 rad pos: 37.5,6.5 parent: 2 type: Transform - - uid: 13059 + - uid: 13196 components: - rot: -1.5707963267948966 rad pos: 38.5,6.5 parent: 2 type: Transform - - uid: 13060 + - uid: 13197 components: - rot: -1.5707963267948966 rad pos: 40.5,6.5 parent: 2 type: Transform - - uid: 13061 + - uid: 13198 components: - rot: 3.141592653589793 rad pos: 34.5,3.5 parent: 2 type: Transform - - uid: 13062 + - uid: 13199 components: - pos: 34.5,-0.5 parent: 2 type: Transform - - uid: 13063 + - uid: 13200 components: - pos: 34.5,-1.5 parent: 2 type: Transform - - uid: 13064 + - uid: 13201 components: - pos: 36.5,-27.5 parent: 2 type: Transform - - uid: 13065 + - uid: 13202 components: - pos: 36.5,-28.5 parent: 2 type: Transform - - uid: 13066 + - uid: 13203 components: - rot: 3.141592653589793 rad pos: 15.5,-44.5 parent: 2 type: Transform - - uid: 13067 + - uid: 13204 components: - rot: 1.5707963267948966 rad pos: 16.5,-45.5 parent: 2 type: Transform - - uid: 13068 + - uid: 13205 components: - pos: 17.5,-46.5 parent: 2 type: Transform - - uid: 13069 + - uid: 13206 components: - rot: 1.5707963267948966 rad pos: 17.5,-43.5 parent: 2 type: Transform - - uid: 13070 + - uid: 13207 components: - rot: 1.5707963267948966 rad pos: 18.5,-43.5 parent: 2 type: Transform - - uid: 13071 + - uid: 13208 components: - pos: 19.5,-42.5 parent: 2 type: Transform - - uid: 13072 + - uid: 13209 components: - pos: 18.5,-27.5 parent: 2 type: Transform - - uid: 13073 + - uid: 13210 components: - pos: -23.5,-80.5 parent: 2 type: Transform - - uid: 13075 + - uid: 13211 components: - rot: -1.5707963267948966 rad pos: -2.5,-25.5 parent: 2 type: Transform - - uid: 13076 + - uid: 13212 components: - rot: -1.5707963267948966 rad pos: -3.5,-25.5 parent: 2 type: Transform - - uid: 13077 + - uid: 13213 components: - rot: 3.141592653589793 rad pos: -4.5,-2.5 parent: 2 type: Transform - - uid: 13078 + - uid: 13214 components: - rot: -1.5707963267948966 rad pos: -1.5,-25.5 parent: 2 type: Transform - - uid: 13079 + - uid: 13215 components: - rot: 3.141592653589793 rad pos: 15.5,-33.5 parent: 2 type: Transform - - uid: 13080 + - uid: 13216 components: - rot: -1.5707963267948966 rad pos: -1.5,-43.5 parent: 2 type: Transform - - uid: 13081 + - uid: 13217 components: - rot: -1.5707963267948966 rad pos: -2.5,-43.5 parent: 2 type: Transform - - uid: 13082 + - uid: 13218 components: - rot: -1.5707963267948966 rad pos: -3.5,-43.5 parent: 2 type: Transform - - uid: 13083 + - uid: 13219 components: - rot: -1.5707963267948966 rad pos: -5.5,-43.5 parent: 2 type: Transform - - uid: 13084 + - uid: 13220 components: - rot: -1.5707963267948966 rad pos: -7.5,-43.5 parent: 2 type: Transform - - uid: 13085 + - uid: 13221 components: - rot: -1.5707963267948966 rad pos: -9.5,-43.5 parent: 2 type: Transform - - uid: 13086 + - uid: 13222 components: - rot: -1.5707963267948966 rad pos: -10.5,-43.5 parent: 2 type: Transform - - uid: 13087 + - uid: 13223 components: - rot: -1.5707963267948966 rad pos: -11.5,-43.5 parent: 2 type: Transform - - uid: 13088 + - uid: 13224 components: - rot: -1.5707963267948966 rad pos: -12.5,-43.5 parent: 2 type: Transform - - uid: 13089 + - uid: 13225 components: - pos: -13.5,-44.5 parent: 2 type: Transform - - uid: 13090 + - uid: 13226 components: - pos: -13.5,-46.5 parent: 2 type: Transform - - uid: 13091 + - uid: 13227 components: - pos: -13.5,-47.5 parent: 2 type: Transform - - uid: 13092 + - uid: 13228 components: - pos: -13.5,-48.5 parent: 2 type: Transform - - uid: 13093 + - uid: 13229 components: - pos: -13.5,-49.5 parent: 2 type: Transform - - uid: 13094 + - uid: 13230 components: - pos: -13.5,-50.5 parent: 2 type: Transform - - uid: 13095 + - uid: 13231 components: - pos: -13.5,-51.5 parent: 2 type: Transform - - uid: 13096 + - uid: 13232 components: - pos: -13.5,-52.5 parent: 2 type: Transform - - uid: 13097 + - uid: 13233 components: - rot: 1.5707963267948966 rad pos: -14.5,-53.5 parent: 2 type: Transform - - uid: 13098 + - uid: 13234 components: - rot: 1.5707963267948966 rad pos: -16.5,-54.5 parent: 2 type: Transform - - uid: 13099 + - uid: 13235 components: - pos: -17.5,-56.5 parent: 2 type: Transform - - uid: 13100 + - uid: 13236 components: - rot: 3.141592653589793 rad pos: -17.5,-58.5 parent: 2 type: Transform - - uid: 13101 + - uid: 13237 components: - rot: 3.141592653589793 rad pos: -17.5,-59.5 parent: 2 type: Transform - - uid: 13102 + - uid: 13238 components: - rot: 1.5707963267948966 rad pos: -18.5,-57.5 parent: 2 type: Transform - - uid: 13103 + - uid: 13239 components: - rot: 1.5707963267948966 rad pos: -19.5,-57.5 parent: 2 type: Transform - - uid: 13104 + - uid: 13240 components: - pos: -19.5,-69.5 parent: 2 type: Transform - - uid: 13105 + - uid: 13241 components: - pos: -19.5,-70.5 parent: 2 type: Transform - - uid: 13106 + - uid: 13242 components: - pos: -19.5,-71.5 parent: 2 type: Transform - - uid: 13107 + - uid: 13243 components: - pos: -19.5,-72.5 parent: 2 type: Transform - - uid: 13108 + - uid: 13244 components: - rot: 1.5707963267948966 rad pos: -18.5,-73.5 parent: 2 type: Transform - - uid: 13109 + - uid: 13245 components: - rot: 1.5707963267948966 rad pos: -21.5,-73.5 parent: 2 type: Transform - - uid: 13110 + - uid: 13246 components: - rot: -1.5707963267948966 rad pos: -22.5,-73.5 parent: 2 type: Transform - - uid: 13111 + - uid: 13247 components: - pos: -23.5,-82.5 parent: 2 type: Transform - - uid: 13112 + - uid: 13248 components: - rot: 1.5707963267948966 rad pos: -9.5,-53.5 parent: 2 type: Transform - - uid: 13113 + - uid: 13249 components: - rot: 1.5707963267948966 rad pos: -2.5,-53.5 parent: 2 type: Transform - - uid: 13114 + - uid: 13250 components: - pos: 18.5,-4.5 parent: 2 type: Transform - - uid: 13115 + - uid: 13251 components: - rot: -1.5707963267948966 rad pos: 9.5,13.5 parent: 2 type: Transform - - uid: 13116 + - uid: 13252 components: - rot: -1.5707963267948966 rad pos: 1.5,-25.5 parent: 2 type: Transform - - uid: 13117 + - uid: 13253 components: - pos: 30.5,-77.5 parent: 2 type: Transform - - uid: 13118 + - uid: 13254 components: - pos: -4.5,-29.5 parent: 2 type: Transform - - uid: 13119 + - uid: 13255 components: - rot: 3.141592653589793 rad pos: 17.5,6.5 parent: 2 type: Transform - - uid: 13120 + - uid: 13256 components: - pos: 12.5,10.5 parent: 2 type: Transform - - uid: 13121 + - uid: 13257 components: - pos: 18.5,-0.5 parent: 2 type: Transform - - uid: 13122 + - uid: 13258 components: - pos: 12.5,9.5 parent: 2 type: Transform - - uid: 13123 + - uid: 13259 components: - pos: 12.5,3.5 parent: 2 type: Transform - - uid: 13124 + - uid: 13260 components: - rot: 3.141592653589793 rad pos: 17.5,4.5 parent: 2 type: Transform - - uid: 13125 + - uid: 13261 components: - rot: 3.141592653589793 rad pos: 17.5,2.5 parent: 2 type: Transform - - uid: 13126 + - uid: 13262 components: - pos: 18.5,-1.5 parent: 2 type: Transform - - uid: 13127 + - uid: 13263 components: - rot: -1.5707963267948966 rad pos: 15.5,0.5 parent: 2 type: Transform - - uid: 13128 + - uid: 13264 components: - pos: 10.5,-1.5 parent: 2 type: Transform - - uid: 13129 + - uid: 13265 components: - pos: 6.5,-1.5 parent: 2 type: Transform - - uid: 13130 + - uid: 13266 components: - rot: 1.5707963267948966 rad pos: 8.5,-0.5 parent: 2 type: Transform - - uid: 13131 + - uid: 13267 components: - rot: -1.5707963267948966 rad pos: 2.5,-25.5 parent: 2 type: Transform - - uid: 13132 + - uid: 13268 components: - rot: 1.5707963267948966 rad pos: 4.5,2.5 parent: 2 type: Transform - - uid: 13133 + - uid: 13269 components: - rot: 1.5707963267948966 rad pos: 5.5,2.5 parent: 2 type: Transform - - uid: 13134 + - uid: 13270 components: - rot: 1.5707963267948966 rad pos: -11.5,-53.5 parent: 2 type: Transform - - uid: 13135 + - uid: 13271 components: - rot: 1.5707963267948966 rad pos: -22.5,-84.5 parent: 2 type: Transform - - uid: 13136 + - uid: 13272 components: - pos: -23.5,-83.5 parent: 2 type: Transform - - uid: 13137 + - uid: 13273 components: - pos: -23.5,-78.5 parent: 2 type: Transform - - uid: 13138 + - uid: 13274 components: - rot: 1.5707963267948966 rad pos: 7.5,2.5 parent: 2 type: Transform - - uid: 13139 + - uid: 13275 components: - rot: -1.5707963267948966 rad pos: 11.5,-25.5 parent: 2 type: Transform - - uid: 13140 + - uid: 13276 components: - pos: 24.5,-16.5 parent: 2 type: Transform - - uid: 13141 + - uid: 13277 components: - rot: -1.5707963267948966 rad pos: -15.5,-43.5 parent: 2 type: Transform - - uid: 13142 + - uid: 13278 components: - rot: -1.5707963267948966 rad pos: 11.5,2.5 parent: 2 type: Transform - - uid: 13145 + - uid: 13279 components: - rot: 1.5707963267948966 rad pos: 22.5,-6.5 parent: 2 type: Transform - - uid: 13146 + - uid: 13280 components: - pos: 24.5,-8.5 parent: 2 type: Transform - - uid: 13147 + - uid: 13281 components: - rot: -1.5707963267948966 rad pos: 25.5,-10.5 parent: 2 type: Transform - - uid: 13148 + - uid: 13282 components: - pos: 16.5,-19.5 parent: 2 type: Transform - - uid: 13149 + - uid: 13283 components: - rot: -1.5707963267948966 rad pos: 6.5,-25.5 parent: 2 type: Transform - - uid: 13150 + - uid: 13284 components: - rot: -1.5707963267948966 rad pos: 5.5,-25.5 parent: 2 type: Transform - - uid: 13151 + - uid: 13285 components: - rot: -1.5707963267948966 rad pos: -0.5,-25.5 parent: 2 type: Transform - - uid: 13152 + - uid: 13286 components: - pos: -7.5,-0.5 parent: 2 type: Transform - - uid: 13153 + - uid: 13287 components: - rot: 3.141592653589793 rad pos: -5.5,-22.5 parent: 2 type: Transform - - uid: 13154 + - uid: 13288 components: - rot: -1.5707963267948966 rad pos: 10.5,-25.5 parent: 2 type: Transform - - uid: 13155 + - uid: 13289 components: - rot: 3.141592653589793 rad pos: -0.5,-49.5 parent: 2 type: Transform - - uid: 13156 + - uid: 13290 components: - rot: 3.141592653589793 rad pos: -0.5,-46.5 parent: 2 type: Transform - - uid: 13157 + - uid: 13291 components: - rot: 3.141592653589793 rad pos: 15.5,-28.5 parent: 2 type: Transform - - uid: 13158 + - uid: 13292 components: - pos: 18.5,-5.5 parent: 2 type: Transform - - uid: 13159 + - uid: 13293 components: - rot: 3.141592653589793 rad pos: 18.5,8.5 parent: 2 type: Transform - - uid: 13160 + - uid: 13294 components: - rot: 1.5707963267948966 rad pos: 19.5,-6.5 parent: 2 type: Transform - - uid: 13161 + - uid: 13295 components: - rot: -1.5707963267948966 rad pos: 4.5,-25.5 parent: 2 type: Transform - - uid: 13162 + - uid: 13296 components: - rot: 1.5707963267948966 rad pos: 4.5,-0.5 parent: 2 type: Transform - - uid: 13163 + - uid: 13297 components: - rot: 3.141592653589793 rad pos: -4.5,-5.5 parent: 2 type: Transform - - uid: 13164 + - uid: 13298 components: - rot: 3.141592653589793 rad pos: -3.5,-25.5 parent: 2 type: Transform - - uid: 13165 + - uid: 13299 components: - rot: 1.5707963267948966 rad pos: 12.5,-27.5 parent: 2 type: Transform - - uid: 13166 + - uid: 13300 components: - pos: 18.5,-28.5 parent: 2 type: Transform - - uid: 13167 + - uid: 13301 components: - pos: -23.5,-79.5 parent: 2 type: Transform - - uid: 13168 + - uid: 13302 components: - rot: 1.5707963267948966 rad pos: -24.5,-75.5 parent: 2 type: Transform - - uid: 13169 + - uid: 13303 components: - rot: 1.5707963267948966 rad pos: -7.5,-53.5 parent: 2 type: Transform - - uid: 13170 + - uid: 13304 components: - rot: 1.5707963267948966 rad pos: 9.5,-0.5 parent: 2 type: Transform - - uid: 13171 + - uid: 13305 components: - rot: 1.5707963267948966 rad pos: -5.5,-9.5 parent: 2 type: Transform - - uid: 13172 + - uid: 13306 components: - pos: 6.5,3.5 parent: 2 type: Transform - - uid: 13173 + - uid: 13307 components: - rot: -1.5707963267948966 rad pos: 3.5,-25.5 parent: 2 type: Transform - - uid: 13174 + - uid: 13308 components: - pos: 18.5,0.5 parent: 2 type: Transform - - uid: 13175 + - uid: 13309 components: - rot: 3.141592653589793 rad pos: 3.5,-1.5 parent: 2 type: Transform - - uid: 13176 + - uid: 13310 components: - rot: 3.141592653589793 rad pos: -3.5,-24.5 parent: 2 type: Transform - - uid: 13177 + - uid: 13311 components: - rot: 1.5707963267948966 rad pos: 15.5,-43.5 parent: 2 type: Transform - - uid: 13178 + - uid: 13312 components: - rot: 3.141592653589793 rad pos: -5.5,-21.5 parent: 2 type: Transform - - uid: 13179 + - uid: 13313 components: - rot: 1.5707963267948966 rad pos: 11.5,-3.5 parent: 2 type: Transform - - uid: 13180 + - uid: 13314 components: - rot: -1.5707963267948966 rad pos: 8.5,-25.5 parent: 2 type: Transform - - uid: 13181 + - uid: 13315 components: - rot: 1.5707963267948966 rad pos: 20.5,-6.5 parent: 2 type: Transform - - uid: 13182 + - uid: 13316 components: - rot: 3.141592653589793 rad pos: 15.5,-41.5 parent: 2 type: Transform - - uid: 13183 + - uid: 13317 components: - pos: -5.5,-54.5 parent: 2 type: Transform - - uid: 13184 + - uid: 13318 components: - rot: -1.5707963267948966 rad pos: 2.5,-43.5 parent: 2 type: Transform - - uid: 13185 + - uid: 13319 components: - pos: -4.5,-35.5 parent: 2 type: Transform - - uid: 13186 + - uid: 13320 components: - pos: -4.5,-31.5 parent: 2 type: Transform - - uid: 13187 + - uid: 13321 components: - pos: -4.5,-28.5 parent: 2 type: Transform - - uid: 13188 + - uid: 13322 components: - pos: -19.5,-65.5 parent: 2 type: Transform - - uid: 13189 + - uid: 13323 components: - pos: 36.5,-26.5 parent: 2 type: Transform - - uid: 13190 + - uid: 13324 components: - pos: 36.5,-23.5 parent: 2 type: Transform - - uid: 13191 + - uid: 13325 components: - pos: 34.5,-5.5 parent: 2 type: Transform - - uid: 13192 + - uid: 13326 components: - pos: 34.5,0.5 parent: 2 type: Transform - - uid: 13193 + - uid: 13327 components: - rot: 3.141592653589793 rad pos: 34.5,2.5 parent: 2 type: Transform - - uid: 13194 + - uid: 13328 components: - rot: 3.141592653589793 rad pos: 34.5,4.5 parent: 2 type: Transform - - uid: 13195 + - uid: 13329 components: - pos: 34.5,-3.5 parent: 2 type: Transform - - uid: 13196 + - uid: 13330 components: - rot: 1.5707963267948966 rad pos: 14.5,-43.5 parent: 2 type: Transform - - uid: 13197 + - uid: 13331 components: - rot: 1.5707963267948966 rad pos: 3.5,-43.5 parent: 2 type: Transform - - uid: 13198 + - uid: 13332 components: - rot: 1.5707963267948966 rad pos: 22.5,-43.5 parent: 2 type: Transform - - uid: 13199 + - uid: 13333 components: - rot: 3.141592653589793 rad pos: -3.5,-19.5 parent: 2 type: Transform - - uid: 13200 + - uid: 13334 components: - rot: 3.141592653589793 rad pos: -4.5,-6.5 parent: 2 type: Transform - - uid: 13201 + - uid: 13335 components: - rot: 1.5707963267948966 rad pos: 21.5,-18.5 parent: 2 type: Transform - - uid: 13202 + - uid: 13336 components: - rot: 1.5707963267948966 rad pos: 23.5,-18.5 parent: 2 type: Transform - - uid: 13203 + - uid: 13337 components: - pos: 24.5,-14.5 parent: 2 type: Transform - - uid: 13204 + - uid: 13338 components: - rot: 1.5707963267948966 rad pos: 9.5,2.5 parent: 2 type: Transform - - uid: 13205 + - uid: 13339 components: - rot: 1.5707963267948966 rad pos: 26.5,-43.5 parent: 2 type: Transform - - uid: 13206 + - uid: 13340 components: - rot: 1.5707963267948966 rad pos: -20.5,-73.5 parent: 2 type: Transform - - uid: 13207 + - uid: 13341 components: - pos: -23.5,-76.5 parent: 2 type: Transform - - uid: 13208 + - uid: 13342 components: - pos: -19.5,-64.5 parent: 2 type: Transform - - uid: 13209 + - uid: 13343 components: - pos: -19.5,-62.5 parent: 2 type: Transform - - uid: 13210 + - uid: 13344 components: - pos: -19.5,-66.5 parent: 2 type: Transform - - uid: 13211 + - uid: 13345 components: - pos: -19.5,-68.5 parent: 2 type: Transform - - uid: 13212 + - uid: 13346 components: - pos: -19.5,-67.5 parent: 2 type: Transform - - uid: 13213 + - uid: 13347 components: - rot: 3.141592653589793 rad pos: -3.5,-20.5 parent: 2 type: Transform - - uid: 13214 + - uid: 13348 components: - rot: 3.141592653589793 rad pos: 15.5,-26.5 parent: 2 type: Transform - - uid: 13215 + - uid: 13349 components: - rot: 1.5707963267948966 rad pos: -6.5,0.5 parent: 2 type: Transform - - uid: 13216 + - uid: 13350 components: - rot: 3.141592653589793 rad pos: -5.5,-23.5 parent: 2 type: Transform - - uid: 13217 + - uid: 13351 components: - rot: 3.141592653589793 rad pos: -5.5,-24.5 parent: 2 type: Transform - - uid: 13218 + - uid: 13352 components: - rot: -1.5707963267948966 rad pos: 13.5,5.5 parent: 2 type: Transform - - uid: 13219 + - uid: 13353 components: - pos: 12.5,8.5 parent: 2 type: Transform - - uid: 13220 + - uid: 13354 components: - rot: 3.141592653589793 rad pos: 17.5,5.5 parent: 2 type: Transform - - uid: 13221 + - uid: 13355 components: - pos: 17.5,9.5 parent: 2 type: Transform - - uid: 13222 + - uid: 13356 components: - pos: 12.5,4.5 parent: 2 type: Transform - - uid: 13223 + - uid: 13357 components: - rot: -1.5707963267948966 rad pos: 12.5,-0.5 parent: 2 type: Transform - - uid: 13224 + - uid: 13358 components: - pos: -4.5,-41.5 parent: 2 type: Transform - - uid: 13225 + - uid: 13359 components: - pos: -4.5,-39.5 parent: 2 type: Transform - - uid: 13226 + - uid: 13360 components: - pos: -4.5,-37.5 parent: 2 type: Transform - - uid: 13227 + - uid: 13361 components: - rot: 1.5707963267948966 rad pos: 4.5,-27.5 parent: 2 type: Transform - - uid: 13228 + - uid: 13362 components: - rot: -1.5707963267948966 rad pos: -18.5,-43.5 parent: 2 type: Transform - - uid: 13229 + - uid: 13363 components: - rot: 1.5707963267948966 rad pos: 33.5,-43.5 parent: 2 type: Transform - - uid: 13230 + - uid: 13364 components: - rot: 3.141592653589793 rad pos: -6.5,-65.5 parent: 2 type: Transform - - uid: 13231 + - uid: 13365 components: - rot: 1.5707963267948966 rad pos: -7.5,-66.5 parent: 2 type: Transform - - uid: 13232 + - uid: 13366 components: - rot: 3.141592653589793 rad pos: 18.5,-52.5 parent: 2 type: Transform - - uid: 13233 + - uid: 13367 components: - pos: -10.5,-24.5 parent: 2 type: Transform - - uid: 13234 + - uid: 13368 components: - pos: -10.5,-25.5 parent: 2 type: Transform - - uid: 13235 + - uid: 13369 components: - pos: -10.5,-26.5 parent: 2 type: Transform - - uid: 13236 + - uid: 13370 components: - rot: 1.5707963267948966 rad pos: 21.5,-43.5 parent: 2 type: Transform - - uid: 13237 + - uid: 13371 components: - rot: 3.141592653589793 rad pos: 25.5,-46.5 parent: 2 type: Transform - - uid: 13238 + - uid: 13372 components: - rot: 3.141592653589793 rad pos: 25.5,-45.5 parent: 2 type: Transform - - uid: 13239 + - uid: 13373 components: - rot: 3.141592653589793 rad pos: 25.5,-44.5 parent: 2 type: Transform - - uid: 13240 + - uid: 13374 components: - rot: 1.5707963267948966 rad pos: 24.5,-43.5 parent: 2 type: Transform - - uid: 13241 + - uid: 13375 components: - rot: 1.5707963267948966 rad pos: 23.5,-43.5 parent: 2 type: Transform - - uid: 13242 + - uid: 13376 components: - rot: 1.5707963267948966 rad pos: 32.5,-43.5 parent: 2 type: Transform - - uid: 13243 + - uid: 13377 components: - rot: 1.5707963267948966 rad pos: 31.5,-43.5 parent: 2 type: Transform - - uid: 13244 + - uid: 13378 components: - rot: 1.5707963267948966 rad pos: 30.5,-43.5 parent: 2 type: Transform - - uid: 13245 + - uid: 13379 components: - rot: 1.5707963267948966 rad pos: 29.5,-43.5 parent: 2 type: Transform - - uid: 13246 + - uid: 13380 components: - rot: 1.5707963267948966 rad pos: 28.5,-43.5 parent: 2 type: Transform - - uid: 13247 + - uid: 13381 components: - rot: 1.5707963267948966 rad pos: 27.5,-43.5 parent: 2 type: Transform - - uid: 13248 + - uid: 13382 components: - rot: 1.5707963267948966 rad pos: 34.5,-43.5 parent: 2 type: Transform - - uid: 13249 + - uid: 13383 components: - rot: 1.5707963267948966 rad pos: -13.5,-9.5 parent: 2 type: Transform - - uid: 13250 + - uid: 13384 components: - rot: 1.5707963267948966 rad pos: -1.5,-53.5 parent: 2 type: Transform - - uid: 13251 + - uid: 13385 components: - rot: 1.5707963267948966 rad pos: -8.5,-53.5 parent: 2 type: Transform - - uid: 13252 + - uid: 13386 components: - rot: 1.5707963267948966 rad pos: -10.5,-53.5 parent: 2 type: Transform - - uid: 13253 + - uid: 13387 components: - rot: 1.5707963267948966 rad pos: -4.5,-53.5 parent: 2 type: Transform - - uid: 13254 + - uid: 13388 components: - rot: 1.5707963267948966 rad pos: -3.5,-53.5 parent: 2 type: Transform - - uid: 13255 + - uid: 13389 components: - pos: 36.5,-29.5 parent: 2 type: Transform - - uid: 13256 + - uid: 13390 components: - pos: 36.5,-30.5 parent: 2 type: Transform - - uid: 13257 + - uid: 13391 components: - pos: 36.5,-31.5 parent: 2 type: Transform - - uid: 13258 + - uid: 13392 components: - pos: 36.5,-32.5 parent: 2 type: Transform - - uid: 13259 + - uid: 13393 components: - pos: 36.5,-33.5 parent: 2 type: Transform - - uid: 13260 + - uid: 13394 components: - pos: 36.5,-34.5 parent: 2 type: Transform - - uid: 13261 + - uid: 13395 components: - pos: 36.5,-35.5 parent: 2 type: Transform - - uid: 13262 + - uid: 13396 components: - pos: 36.5,-36.5 parent: 2 type: Transform - - uid: 13263 + - uid: 13397 components: - pos: 36.5,-37.5 parent: 2 type: Transform - - uid: 13264 + - uid: 13398 components: - pos: 36.5,-38.5 parent: 2 type: Transform - - uid: 13265 + - uid: 13399 components: - pos: 36.5,-39.5 parent: 2 type: Transform - - uid: 13266 + - uid: 13400 components: - pos: 36.5,-40.5 parent: 2 type: Transform - - uid: 13267 + - uid: 13401 components: - pos: 36.5,-41.5 parent: 2 type: Transform - - uid: 13268 + - uid: 13402 components: - pos: 36.5,-42.5 parent: 2 type: Transform - - uid: 13269 + - uid: 13403 components: - rot: -1.5707963267948966 rad pos: 35.5,-43.5 parent: 2 type: Transform - - uid: 13270 + - uid: 13404 components: - rot: -1.5707963267948966 rad pos: 37.5,-43.5 parent: 2 type: Transform - - uid: 13271 + - uid: 13405 components: - rot: -1.5707963267948966 rad pos: 38.5,-43.5 parent: 2 type: Transform - - uid: 13272 + - uid: 13406 components: - rot: -1.5707963267948966 rad pos: 39.5,-43.5 parent: 2 type: Transform - - uid: 13273 + - uid: 13407 components: - rot: -1.5707963267948966 rad pos: 40.5,-43.5 parent: 2 type: Transform - - uid: 13274 + - uid: 13408 components: - rot: -1.5707963267948966 rad pos: 41.5,-43.5 parent: 2 type: Transform - - uid: 13275 + - uid: 13409 components: - rot: -1.5707963267948966 rad pos: 35.5,1.5 parent: 2 type: Transform - - uid: 13276 + - uid: 13410 components: - rot: -1.5707963267948966 rad pos: 36.5,1.5 parent: 2 type: Transform - - uid: 13277 + - uid: 13411 components: - rot: -1.5707963267948966 rad pos: 37.5,1.5 parent: 2 type: Transform - - uid: 13278 + - uid: 13412 components: - rot: -1.5707963267948966 rad pos: 38.5,1.5 parent: 2 type: Transform - - uid: 13279 + - uid: 13413 components: - rot: -1.5707963267948966 rad pos: 39.5,1.5 parent: 2 type: Transform - - uid: 13280 + - uid: 13414 components: - rot: -1.5707963267948966 rad pos: 17.5,17.5 parent: 2 type: Transform - - uid: 13281 + - uid: 13415 components: - rot: -1.5707963267948966 rad pos: 18.5,17.5 parent: 2 type: Transform - - uid: 13282 + - uid: 13416 components: - rot: -1.5707963267948966 rad pos: 16.5,17.5 parent: 2 type: Transform - - uid: 13283 + - uid: 13417 components: - pos: 15.5,18.5 parent: 2 type: Transform - - uid: 13284 + - uid: 13418 components: - rot: 1.5707963267948966 rad pos: -10.5,0.5 parent: 2 type: Transform - - uid: 13285 + - uid: 13419 components: - rot: 1.5707963267948966 rad pos: -11.5,0.5 parent: 2 type: Transform - - uid: 13286 + - uid: 13420 components: - rot: 1.5707963267948966 rad pos: -12.5,0.5 parent: 2 type: Transform - - uid: 13287 + - uid: 13421 components: - rot: 3.141592653589793 rad pos: 15.5,-34.5 parent: 2 type: Transform - - uid: 13288 + - uid: 13422 components: - rot: 3.141592653589793 rad pos: -3.5,-21.5 parent: 2 type: Transform - - uid: 13289 + - uid: 13423 components: - rot: -1.5707963267948966 rad pos: 12.5,-25.5 parent: 2 type: Transform - - uid: 13290 + - uid: 13424 components: - rot: -1.5707963267948966 rad pos: 13.5,-25.5 parent: 2 type: Transform - - uid: 13291 + - uid: 13425 components: - rot: 3.141592653589793 rad pos: -4.5,-8.5 parent: 2 type: Transform - - uid: 13292 + - uid: 13426 components: - rot: -1.5707963267948966 rad pos: 0.5,-25.5 parent: 2 type: Transform - - uid: 13293 + - uid: 13427 components: - rot: 1.5707963267948966 rad pos: -8.5,-9.5 parent: 2 type: Transform - - uid: 13294 + - uid: 13428 components: - rot: 1.5707963267948966 rad pos: -11.5,-9.5 parent: 2 type: Transform - - uid: 13295 + - uid: 13429 components: - rot: 1.5707963267948966 rad pos: -10.5,-9.5 parent: 2 type: Transform - - uid: 13296 + - uid: 13430 components: - rot: 1.5707963267948966 rad pos: -12.5,-9.5 parent: 2 type: Transform - - uid: 13297 + - uid: 13431 components: - pos: -4.5,-0.5 parent: 2 type: Transform - - uid: 13298 + - uid: 13432 components: - rot: 3.141592653589793 rad pos: 15.5,-32.5 parent: 2 type: Transform - - uid: 13299 + - uid: 13433 components: - rot: 3.141592653589793 rad pos: -4.5,-11.5 parent: 2 type: Transform - - uid: 13300 + - uid: 13434 components: - rot: 3.141592653589793 rad pos: 15.5,-29.5 parent: 2 type: Transform - - uid: 13301 + - uid: 13435 components: - rot: 3.141592653589793 rad pos: 15.5,-36.5 parent: 2 type: Transform - - uid: 13302 + - uid: 13436 components: - rot: 3.141592653589793 rad pos: 15.5,-35.5 parent: 2 type: Transform - - uid: 13303 + - uid: 13437 components: - rot: 3.141592653589793 rad pos: 15.5,-27.5 parent: 2 type: Transform - - uid: 13304 + - uid: 13438 components: - rot: -1.5707963267948966 rad pos: 9.5,-25.5 parent: 2 type: Transform - - uid: 13305 + - uid: 13439 components: - rot: -1.5707963267948966 rad pos: 14.5,-25.5 parent: 2 type: Transform - - uid: 13306 + - uid: 13440 components: - rot: 3.141592653589793 rad pos: -3.5,-14.5 parent: 2 type: Transform - - uid: 13307 + - uid: 13441 components: - rot: 3.141592653589793 rad pos: -3.5,-17.5 parent: 2 type: Transform - - uid: 13308 + - uid: 13442 components: - rot: 3.141592653589793 rad pos: -3.5,-15.5 parent: 2 type: Transform - - uid: 13309 + - uid: 13443 components: - pos: 17.5,-47.5 parent: 2 type: Transform - - uid: 13310 + - uid: 13444 components: - rot: 1.5707963267948966 rad pos: 33.5,16.5 parent: 2 type: Transform - - uid: 13311 + - uid: 13445 components: - rot: 1.5707963267948966 rad pos: 32.5,16.5 parent: 2 type: Transform - - uid: 13312 + - uid: 13446 components: - rot: 1.5707963267948966 rad pos: 31.5,16.5 parent: 2 type: Transform - - uid: 13313 + - uid: 13447 components: - rot: 1.5707963267948966 rad pos: 30.5,16.5 parent: 2 type: Transform - - uid: 13314 + - uid: 13448 components: - rot: 3.141592653589793 rad pos: 41.5,5.5 parent: 2 type: Transform - - uid: 13315 + - uid: 13449 components: - rot: 3.141592653589793 rad pos: 41.5,4.5 parent: 2 type: Transform - - uid: 13316 + - uid: 13450 components: - rot: 3.141592653589793 rad pos: 41.5,3.5 parent: 2 type: Transform - - uid: 13317 + - uid: 13451 components: - rot: 3.141592653589793 rad pos: 41.5,2.5 parent: 2 type: Transform - - uid: 13318 + - uid: 13452 components: - rot: -1.5707963267948966 rad pos: 40.5,1.5 parent: 2 type: Transform - - uid: 13319 + - uid: 13453 components: - rot: -1.5707963267948966 rad pos: 42.5,1.5 parent: 2 type: Transform - - uid: 13320 + - uid: 13454 components: - rot: -1.5707963267948966 rad pos: 43.5,1.5 parent: 2 type: Transform - - uid: 13321 + - uid: 13455 components: - rot: -1.5707963267948966 rad pos: 44.5,1.5 parent: 2 type: Transform - - uid: 13322 + - uid: 13456 components: - rot: -1.5707963267948966 rad pos: 45.5,1.5 parent: 2 type: Transform - - uid: 13323 + - uid: 13457 components: - rot: -1.5707963267948966 rad pos: 46.5,1.5 parent: 2 type: Transform - - uid: 13324 + - uid: 13458 components: - rot: -1.5707963267948966 rad pos: 47.5,1.5 parent: 2 type: Transform - - uid: 13325 + - uid: 13459 components: - rot: -1.5707963267948966 rad pos: 48.5,1.5 parent: 2 type: Transform - - uid: 13326 + - uid: 13460 components: - rot: -1.5707963267948966 rad pos: 49.5,1.5 parent: 2 type: Transform - - uid: 13327 + - uid: 13461 components: - rot: -1.5707963267948966 rad pos: 50.5,1.5 parent: 2 type: Transform - - uid: 13328 + - uid: 13462 components: - rot: -1.5707963267948966 rad pos: 51.5,1.5 parent: 2 type: Transform - - uid: 13329 + - uid: 13463 components: - rot: 3.141592653589793 rad pos: 52.5,2.5 parent: 2 type: Transform - - uid: 13330 + - uid: 13464 components: - rot: 3.141592653589793 rad pos: 52.5,0.5 parent: 2 type: Transform - - uid: 13331 + - uid: 13465 components: - rot: 3.141592653589793 rad pos: 52.5,-0.5 parent: 2 type: Transform - - uid: 13332 + - uid: 13466 components: - rot: 3.141592653589793 rad pos: 52.5,-1.5 parent: 2 type: Transform - - uid: 13333 + - uid: 13467 components: - rot: 3.141592653589793 rad pos: 52.5,-2.5 parent: 2 type: Transform - - uid: 13334 + - uid: 13468 components: - rot: 3.141592653589793 rad pos: 52.5,-3.5 parent: 2 type: Transform - - uid: 13335 + - uid: 13469 components: - rot: 3.141592653589793 rad pos: 52.5,-4.5 parent: 2 type: Transform - - uid: 13336 + - uid: 13470 components: - rot: 3.141592653589793 rad pos: 52.5,-5.5 parent: 2 type: Transform - - uid: 13337 + - uid: 13471 components: - rot: 3.141592653589793 rad pos: 52.5,-6.5 parent: 2 type: Transform - - uid: 13338 + - uid: 13472 components: - rot: 3.141592653589793 rad pos: 52.5,-7.5 parent: 2 type: Transform - - uid: 13339 + - uid: 13473 components: - rot: 3.141592653589793 rad pos: 52.5,-8.5 parent: 2 type: Transform - - uid: 13340 + - uid: 13474 components: - pos: 25.5,-47.5 parent: 2 type: Transform - - uid: 13341 + - uid: 13475 components: - pos: 25.5,-48.5 parent: 2 type: Transform - - uid: 13342 + - uid: 13476 components: - pos: 25.5,-49.5 parent: 2 type: Transform - - uid: 13343 + - uid: 13477 components: - pos: 25.5,-50.5 parent: 2 type: Transform - - uid: 13344 + - uid: 13478 components: - pos: 25.5,-51.5 parent: 2 type: Transform - - uid: 13345 + - uid: 13479 components: - pos: 25.5,-52.5 parent: 2 type: Transform - - uid: 13346 + - uid: 13480 components: - rot: 3.141592653589793 rad pos: 15.5,-37.5 parent: 2 type: Transform - - uid: 13347 + - uid: 13481 components: - pos: 25.5,-54.5 parent: 2 type: Transform - - uid: 13348 + - uid: 13482 components: - pos: 25.5,-55.5 parent: 2 type: Transform - - uid: 13349 + - uid: 13483 components: - pos: 25.5,-56.5 parent: 2 type: Transform - - uid: 13350 + - uid: 13484 components: - pos: 25.5,-57.5 parent: 2 type: Transform - - uid: 13351 + - uid: 13485 components: - pos: 25.5,-58.5 parent: 2 type: Transform - - uid: 13352 + - uid: 13486 components: - rot: 3.141592653589793 rad pos: -3.5,-16.5 parent: 2 type: Transform - - uid: 13353 + - uid: 13487 components: - rot: 3.141592653589793 rad pos: 15.5,-43.5 parent: 2 type: Transform - - uid: 13354 + - uid: 13488 components: - pos: 52.5,-9.5 parent: 2 type: Transform - - uid: 13355 + - uid: 13489 components: - pos: 52.5,-10.5 parent: 2 type: Transform - - uid: 13356 + - uid: 13490 components: - pos: 52.5,-11.5 parent: 2 type: Transform - - uid: 13357 + - uid: 13491 components: - pos: 52.5,-12.5 parent: 2 type: Transform - - uid: 13358 + - uid: 13492 components: - rot: -1.5707963267948966 rad pos: 53.5,-13.5 parent: 2 type: Transform - - uid: 13359 + - uid: 13493 components: - rot: -1.5707963267948966 rad pos: 42.5,-43.5 parent: 2 type: Transform - - uid: 13360 + - uid: 13494 components: - rot: -1.5707963267948966 rad pos: 43.5,-43.5 parent: 2 type: Transform - - uid: 13361 + - uid: 13495 components: - rot: -1.5707963267948966 rad pos: 44.5,-43.5 parent: 2 type: Transform - - uid: 13362 + - uid: 13496 components: - rot: -1.5707963267948966 rad pos: 45.5,-43.5 parent: 2 type: Transform - - uid: 13363 + - uid: 13497 components: - rot: -1.5707963267948966 rad pos: 47.5,-43.5 parent: 2 type: Transform - - uid: 13364 + - uid: 13498 components: - rot: -1.5707963267948966 rad pos: 48.5,-43.5 parent: 2 type: Transform - - uid: 13365 + - uid: 13499 components: - pos: 49.5,-44.5 parent: 2 type: Transform - - uid: 13366 + - uid: 13500 components: - rot: 3.141592653589793 rad pos: 49.5,-46.5 parent: 2 type: Transform - - uid: 13367 + - uid: 13501 components: - rot: 1.5707963267948966 rad pos: 50.5,-47.5 parent: 2 type: Transform - - uid: 13368 + - uid: 13502 components: - pos: 49.5,-48.5 parent: 2 type: Transform - - uid: 13369 + - uid: 13503 components: - pos: 49.5,-49.5 parent: 2 type: Transform - - uid: 13370 + - uid: 13504 components: - rot: -1.5707963267948966 rad pos: 50.5,-45.5 parent: 2 type: Transform - - uid: 13371 + - uid: 13505 components: - rot: -1.5707963267948966 rad pos: 51.5,-45.5 parent: 2 type: Transform - - uid: 13372 + - uid: 13506 components: - rot: -1.5707963267948966 rad pos: 52.5,-45.5 parent: 2 type: Transform - - uid: 13373 + - uid: 13507 components: - rot: -1.5707963267948966 rad pos: 53.5,-45.5 parent: 2 type: Transform - - uid: 13374 + - uid: 13508 components: - rot: -1.5707963267948966 rad pos: 54.5,-45.5 parent: 2 type: Transform - - uid: 13375 + - uid: 13509 components: - rot: -1.5707963267948966 rad pos: 55.5,-45.5 parent: 2 type: Transform - - uid: 13376 + - uid: 13510 components: - rot: -1.5707963267948966 rad pos: 56.5,-45.5 parent: 2 type: Transform - - uid: 13377 + - uid: 13511 components: - rot: -1.5707963267948966 rad pos: 57.5,-45.5 parent: 2 type: Transform - - uid: 13378 + - uid: 13512 components: - rot: -1.5707963267948966 rad pos: 58.5,-45.5 parent: 2 type: Transform - - uid: 13379 + - uid: 13513 components: - rot: -1.5707963267948966 rad pos: 59.5,-45.5 parent: 2 type: Transform - - uid: 13380 + - uid: 13514 components: - rot: -1.5707963267948966 rad pos: 60.5,-45.5 parent: 2 type: Transform - - uid: 13381 + - uid: 13515 components: - rot: -1.5707963267948966 rad pos: 61.5,-45.5 parent: 2 type: Transform - - uid: 13382 + - uid: 13516 components: - rot: -1.5707963267948966 rad pos: 62.5,-45.5 parent: 2 type: Transform - - uid: 13383 + - uid: 13517 components: - rot: -1.5707963267948966 rad pos: 63.5,-45.5 parent: 2 type: Transform - - uid: 13384 + - uid: 13518 components: - rot: 3.141592653589793 rad pos: 46.5,-42.5 parent: 2 type: Transform - - uid: 13385 + - uid: 13519 components: - rot: 3.141592653589793 rad pos: 46.5,-41.5 parent: 2 type: Transform - - uid: 13386 + - uid: 13520 components: - rot: 3.141592653589793 rad pos: 46.5,-40.5 parent: 2 type: Transform - - uid: 13387 + - uid: 13521 components: - rot: 3.141592653589793 rad pos: 46.5,-39.5 parent: 2 type: Transform - - uid: 13388 + - uid: 13522 components: - rot: 3.141592653589793 rad pos: 46.5,-38.5 parent: 2 type: Transform - - uid: 13389 + - uid: 13523 components: - rot: 3.141592653589793 rad pos: 46.5,-37.5 parent: 2 type: Transform - - uid: 13390 + - uid: 13524 components: - rot: 3.141592653589793 rad pos: 46.5,-36.5 parent: 2 type: Transform - - uid: 13391 + - uid: 13525 components: - rot: -1.5707963267948966 rad pos: 64.5,-45.5 parent: 2 type: Transform - - uid: 13392 + - uid: 13526 components: - rot: -1.5707963267948966 rad pos: 65.5,-45.5 parent: 2 type: Transform - - uid: 13393 + - uid: 13527 components: - rot: -1.5707963267948966 rad pos: 66.5,-45.5 parent: 2 type: Transform - - uid: 13394 + - uid: 13528 components: - pos: 67.5,-46.5 parent: 2 type: Transform - - uid: 13395 + - uid: 13529 components: - pos: 67.5,-48.5 parent: 2 type: Transform - - uid: 13396 + - uid: 13530 components: - pos: 49.5,-56.5 parent: 2 type: Transform - - uid: 13397 + - uid: 13531 components: - pos: 49.5,-57.5 parent: 2 type: Transform - - uid: 13398 + - uid: 13532 components: - pos: 49.5,-58.5 parent: 2 type: Transform - - uid: 13399 + - uid: 13533 components: - pos: 49.5,-59.5 parent: 2 type: Transform - - uid: 13400 + - uid: 13534 components: - rot: 3.141592653589793 rad pos: -3.5,-13.5 parent: 2 type: Transform - - uid: 13401 + - uid: 13535 components: - pos: 29.5,-61.5 parent: 2 type: Transform - - uid: 13402 + - uid: 13536 components: - rot: 3.141592653589793 rad pos: 25.5,-59.5 parent: 2 type: Transform - - uid: 13403 + - uid: 13537 components: - rot: 1.5707963267948966 rad pos: 26.5,-60.5 parent: 2 type: Transform - - uid: 13404 + - uid: 13538 components: - rot: 1.5707963267948966 rad pos: 27.5,-60.5 parent: 2 type: Transform - - uid: 13405 + - uid: 13539 components: - rot: 1.5707963267948966 rad pos: 28.5,-60.5 parent: 2 type: Transform - - uid: 13406 + - uid: 13540 components: - rot: 1.5707963267948966 rad pos: 30.5,-60.5 parent: 2 type: Transform - - uid: 13407 + - uid: 13541 components: - rot: 1.5707963267948966 rad pos: 31.5,-60.5 parent: 2 type: Transform - - uid: 13408 + - uid: 13542 components: - rot: 1.5707963267948966 rad pos: 32.5,-60.5 parent: 2 type: Transform - - uid: 13409 + - uid: 13543 components: - rot: 1.5707963267948966 rad pos: 33.5,-60.5 parent: 2 type: Transform - - uid: 13410 + - uid: 13544 components: - rot: 1.5707963267948966 rad pos: 34.5,-60.5 parent: 2 type: Transform - - uid: 13411 + - uid: 13545 components: - rot: 1.5707963267948966 rad pos: 35.5,-60.5 parent: 2 type: Transform - - uid: 13412 + - uid: 13546 components: - rot: 1.5707963267948966 rad pos: 36.5,-60.5 parent: 2 type: Transform - - uid: 13413 + - uid: 13547 components: - rot: 3.141592653589793 rad pos: -23.5,-14.5 parent: 2 type: Transform - - uid: 13414 + - uid: 13548 components: - rot: 1.5707963267948966 rad pos: -22.5,-13.5 parent: 2 type: Transform - - uid: 13415 + - uid: 13549 components: - rot: 1.5707963267948966 rad pos: -21.5,-13.5 parent: 2 type: Transform - - uid: 13416 + - uid: 13550 components: - rot: 1.5707963267948966 rad pos: -20.5,-13.5 parent: 2 type: Transform - - uid: 13417 + - uid: 13551 components: - pos: -19.5,-14.5 parent: 2 type: Transform - - uid: 13418 + - uid: 13552 components: - pos: -19.5,-15.5 parent: 2 type: Transform - - uid: 13419 + - uid: 13553 components: - pos: -19.5,-16.5 parent: 2 type: Transform - - uid: 13420 + - uid: 13554 components: - pos: -19.5,-17.5 parent: 2 type: Transform - - uid: 13421 + - uid: 13555 components: - pos: -19.5,-18.5 parent: 2 type: Transform - - uid: 13422 + - uid: 13556 components: - pos: -19.5,-19.5 parent: 2 type: Transform - - uid: 13423 + - uid: 13557 components: - pos: -19.5,-20.5 parent: 2 type: Transform - - uid: 13424 + - uid: 13558 components: - pos: -19.5,-21.5 parent: 2 type: Transform - - uid: 13425 + - uid: 13559 components: - pos: -19.5,-22.5 parent: 2 type: Transform - - uid: 13426 + - uid: 13560 components: - pos: -19.5,-23.5 parent: 2 type: Transform - - uid: 13427 + - uid: 13561 components: - pos: -19.5,-24.5 parent: 2 type: Transform - - uid: 13428 + - uid: 13562 components: - pos: -19.5,-25.5 parent: 2 type: Transform - - uid: 13429 + - uid: 13563 components: - pos: -19.5,-26.5 parent: 2 type: Transform - - uid: 13430 + - uid: 13564 components: - rot: 1.5707963267948966 rad pos: -18.5,-27.5 parent: 2 type: Transform - - uid: 13431 + - uid: 13565 components: - pos: -19.5,-28.5 parent: 2 type: Transform - - uid: 13432 + - uid: 13566 components: - pos: -19.5,-29.5 parent: 2 type: Transform - - uid: 13433 + - uid: 13567 components: - pos: -19.5,-30.5 parent: 2 type: Transform - - uid: 13434 + - uid: 13568 components: - pos: -19.5,-31.5 parent: 2 type: Transform - - uid: 13435 + - uid: 13569 components: - pos: -19.5,-32.5 parent: 2 type: Transform - - uid: 13436 + - uid: 13570 components: - rot: -1.5707963267948966 rad pos: -24.5,-13.5 parent: 2 type: Transform - - uid: 13437 + - uid: 13571 components: - rot: -1.5707963267948966 rad pos: -25.5,-13.5 parent: 2 type: Transform - - uid: 13438 + - uid: 13572 components: - rot: -1.5707963267948966 rad pos: -26.5,-13.5 parent: 2 type: Transform - - uid: 13439 + - uid: 13573 components: - rot: -1.5707963267948966 rad pos: -27.5,-13.5 parent: 2 type: Transform - - uid: 13440 + - uid: 13574 components: - rot: -1.5707963267948966 rad pos: -28.5,-13.5 parent: 2 type: Transform - - uid: 13441 + - uid: 13575 components: - rot: -1.5707963267948966 rad pos: -29.5,-13.5 parent: 2 type: Transform - - uid: 13442 + - uid: 13576 components: - rot: -1.5707963267948966 rad pos: -30.5,-13.5 parent: 2 type: Transform - - uid: 13443 + - uid: 13577 components: - rot: -1.5707963267948966 rad pos: -31.5,-13.5 parent: 2 type: Transform - - uid: 13444 + - uid: 13578 components: - rot: 3.141592653589793 rad pos: 15.5,-39.5 parent: 2 type: Transform - - uid: 13445 + - uid: 13579 components: - rot: 1.5707963267948966 rad pos: 37.5,-60.5 parent: 2 type: Transform - - uid: 13446 + - uid: 13580 components: - rot: 1.5707963267948966 rad pos: 38.5,-60.5 parent: 2 type: Transform - - uid: 13447 + - uid: 13581 components: - pos: 39.5,-61.5 parent: 2 type: Transform - - uid: 13448 + - uid: 13582 components: - pos: 39.5,-62.5 parent: 2 type: Transform - - uid: 13449 + - uid: 13583 components: - pos: 39.5,-63.5 parent: 2 type: Transform - - uid: 13450 + - uid: 13584 components: - pos: 39.5,-64.5 parent: 2 type: Transform - - uid: 13451 + - uid: 13585 components: - pos: 39.5,-65.5 parent: 2 type: Transform - - uid: 13452 + - uid: 13586 components: - pos: 39.5,-66.5 parent: 2 type: Transform - - uid: 13453 + - uid: 13587 components: - pos: 39.5,-67.5 parent: 2 type: Transform - - uid: 13454 + - uid: 13588 components: - pos: 39.5,-68.5 parent: 2 type: Transform - - uid: 13455 + - uid: 13589 components: - rot: 3.141592653589793 rad pos: -19.5,-33.5 parent: 2 type: Transform - - uid: 13456 + - uid: 13590 components: - rot: 3.141592653589793 rad pos: -19.5,-34.5 parent: 2 type: Transform - - uid: 13457 + - uid: 13591 components: - rot: 3.141592653589793 rad pos: -19.5,-35.5 parent: 2 type: Transform - - uid: 13458 + - uid: 13592 components: - rot: 3.141592653589793 rad pos: -19.5,-36.5 parent: 2 type: Transform - - uid: 13459 + - uid: 13593 components: - rot: 3.141592653589793 rad pos: -19.5,-37.5 parent: 2 type: Transform - - uid: 13460 + - uid: 13594 components: - rot: 3.141592653589793 rad pos: -19.5,-38.5 parent: 2 type: Transform - - uid: 13461 + - uid: 13595 components: - rot: 3.141592653589793 rad pos: -19.5,-39.5 parent: 2 type: Transform - - uid: 13462 + - uid: 13596 components: - rot: 3.141592653589793 rad pos: -19.5,-40.5 parent: 2 type: Transform - - uid: 13463 + - uid: 13597 components: - rot: 3.141592653589793 rad pos: -19.5,-41.5 parent: 2 type: Transform - - uid: 13464 + - uid: 13598 components: - rot: 3.141592653589793 rad pos: -19.5,-42.5 parent: 2 type: Transform - - uid: 13465 + - uid: 13599 components: - pos: 30.5,-80.5 parent: 2 type: Transform - - uid: 13466 + - uid: 13600 components: - pos: 30.5,-78.5 parent: 2 type: Transform - - uid: 13467 + - uid: 13601 components: - pos: 30.5,-79.5 parent: 2 type: Transform - - uid: 13468 + - uid: 13602 components: - pos: 39.5,-69.5 parent: 2 type: Transform - - uid: 13469 + - uid: 13603 components: - pos: 39.5,-70.5 parent: 2 type: Transform - - uid: 13470 + - uid: 13604 components: - pos: 39.5,-71.5 parent: 2 type: Transform - - uid: 13471 + - uid: 13605 components: - pos: 39.5,-72.5 parent: 2 type: Transform - - uid: 13472 + - uid: 13606 components: - rot: 1.5707963267948966 rad pos: 25.5,-73.5 parent: 2 type: Transform - - uid: 13473 + - uid: 13607 components: - pos: 30.5,-83.5 parent: 2 type: Transform - - uid: 13474 + - uid: 13608 components: - pos: 30.5,-84.5 parent: 2 type: Transform - - uid: 13475 + - uid: 13609 components: - rot: 1.5707963267948966 rad pos: 29.5,-86.5 parent: 2 type: Transform - - uid: 13476 + - uid: 13610 components: - pos: 30.5,-85.5 parent: 2 type: Transform - - uid: 13477 + - uid: 13611 components: - pos: -13.5,1.5 parent: 2 type: Transform - - uid: 13478 + - uid: 13612 components: - pos: -13.5,-0.5 parent: 2 type: Transform - - uid: 13479 + - uid: 13613 components: - pos: -13.5,-1.5 parent: 2 type: Transform - - uid: 13480 + - uid: 13614 components: - pos: -13.5,-2.5 parent: 2 type: Transform - - uid: 13481 + - uid: 13615 components: - pos: -13.5,-3.5 parent: 2 type: Transform - - uid: 13482 + - uid: 13616 components: - pos: -13.5,-4.5 parent: 2 type: Transform - - uid: 13483 + - uid: 13617 components: - pos: -13.5,-5.5 parent: 2 type: Transform - - uid: 13484 + - uid: 13618 components: - pos: -13.5,2.5 parent: 2 type: Transform - - uid: 13485 + - uid: 13619 components: - pos: -13.5,3.5 parent: 2 type: Transform - - uid: 13486 + - uid: 13620 components: - pos: -13.5,4.5 parent: 2 type: Transform - - uid: 13487 + - uid: 13621 components: - pos: -13.5,6.5 parent: 2 type: Transform - - uid: 13488 + - uid: 13622 components: - pos: -13.5,7.5 parent: 2 type: Transform - - uid: 13489 + - uid: 13623 components: - rot: -1.5707963267948966 rad pos: -14.5,-6.5 parent: 2 type: Transform - - uid: 13490 + - uid: 13624 components: - rot: -1.5707963267948966 rad pos: -15.5,-6.5 parent: 2 type: Transform - - uid: 13491 + - uid: 13625 components: - rot: -1.5707963267948966 rad pos: -16.5,-6.5 parent: 2 type: Transform - - uid: 13492 + - uid: 13626 components: - rot: -1.5707963267948966 rad pos: -17.5,-6.5 parent: 2 type: Transform - - uid: 13493 + - uid: 13627 components: - rot: -1.5707963267948966 rad pos: -18.5,-6.5 parent: 2 type: Transform - - uid: 13494 + - uid: 13628 components: - pos: -19.5,-12.5 parent: 2 type: Transform - - uid: 13495 + - uid: 13629 components: - pos: -19.5,-11.5 parent: 2 type: Transform - - uid: 13496 + - uid: 13630 components: - pos: -19.5,-10.5 parent: 2 type: Transform - - uid: 13497 + - uid: 13631 components: - pos: -19.5,-9.5 parent: 2 type: Transform - - uid: 13498 + - uid: 13632 components: - pos: -19.5,-8.5 parent: 2 type: Transform - - uid: 13499 + - uid: 13633 components: - pos: -19.5,-7.5 parent: 2 type: Transform - - uid: 13500 + - uid: 13634 components: - rot: -1.5707963267948966 rad pos: -14.5,8.5 parent: 2 type: Transform - - uid: 13501 + - uid: 13635 components: - rot: -1.5707963267948966 rad pos: -15.5,8.5 parent: 2 type: Transform - - uid: 13502 + - uid: 13636 components: - rot: -1.5707963267948966 rad pos: -17.5,8.5 parent: 2 type: Transform - - uid: 13503 + - uid: 13637 components: - rot: -1.5707963267948966 rad pos: -18.5,8.5 parent: 2 type: Transform - - uid: 13504 + - uid: 13638 components: - rot: 3.141592653589793 rad pos: -19.5,7.5 parent: 2 type: Transform - - uid: 13505 + - uid: 13639 components: - rot: -1.5707963267948966 rad pos: -20.5,6.5 parent: 2 type: Transform - - uid: 13506 + - uid: 13640 components: - rot: -1.5707963267948966 rad pos: -21.5,6.5 parent: 2 type: Transform - - uid: 13507 + - uid: 13641 components: - rot: -1.5707963267948966 rad pos: -22.5,6.5 parent: 2 type: Transform - - uid: 13508 + - uid: 13642 components: - rot: -1.5707963267948966 rad pos: -23.5,6.5 parent: 2 type: Transform - - uid: 13509 + - uid: 13643 components: - rot: -1.5707963267948966 rad pos: -24.5,6.5 parent: 2 type: Transform - - uid: 13510 + - uid: 13644 components: - rot: -1.5707963267948966 rad pos: -20.5,-6.5 parent: 2 type: Transform - - uid: 13511 + - uid: 13645 components: - rot: -1.5707963267948966 rad pos: -21.5,-6.5 parent: 2 type: Transform - - uid: 13512 + - uid: 13646 components: - rot: -1.5707963267948966 rad pos: -22.5,-6.5 parent: 2 type: Transform - - uid: 13513 + - uid: 13647 components: - rot: -1.5707963267948966 rad pos: -23.5,-6.5 parent: 2 type: Transform - - uid: 13514 + - uid: 13648 components: - rot: -1.5707963267948966 rad pos: -24.5,-6.5 parent: 2 type: Transform - - uid: 13515 + - uid: 13649 components: - pos: -25.5,5.5 parent: 2 type: Transform - - uid: 13516 + - uid: 13650 components: - pos: -25.5,4.5 parent: 2 type: Transform - - uid: 13517 + - uid: 13651 components: - pos: -25.5,3.5 parent: 2 type: Transform - - uid: 13518 + - uid: 13652 components: - pos: -25.5,2.5 parent: 2 type: Transform - - uid: 13519 + - uid: 13653 components: - pos: -25.5,1.5 parent: 2 type: Transform - - uid: 13520 + - uid: 13654 components: - pos: -25.5,0.5 parent: 2 type: Transform - - uid: 13521 + - uid: 13655 components: - pos: -25.5,-1.5 parent: 2 type: Transform - - uid: 13522 + - uid: 13656 components: - pos: -25.5,-2.5 parent: 2 type: Transform - - uid: 13523 + - uid: 13657 components: - pos: -25.5,-3.5 parent: 2 type: Transform - - uid: 13524 + - uid: 13658 components: - pos: -25.5,-4.5 parent: 2 type: Transform - - uid: 13525 + - uid: 13659 components: - pos: -25.5,-5.5 parent: 2 type: Transform - - uid: 13526 + - uid: 13660 components: - pos: -19.5,9.5 parent: 2 type: Transform - - uid: 13527 + - uid: 13661 components: - pos: -19.5,10.5 parent: 2 type: Transform - - uid: 13528 + - uid: 13662 components: - pos: -19.5,11.5 parent: 2 type: Transform - - uid: 13529 + - uid: 13663 components: - pos: -19.5,12.5 parent: 2 type: Transform - - uid: 13530 + - uid: 13664 components: - rot: 1.5707963267948966 rad pos: -26.5,6.5 parent: 2 type: Transform - - uid: 13531 + - uid: 13665 components: - rot: 3.141592653589793 rad pos: -32.5,-12.5 parent: 2 type: Transform - - uid: 13532 + - uid: 13666 components: - rot: 3.141592653589793 rad pos: -32.5,-11.5 parent: 2 type: Transform - - uid: 13533 + - uid: 13667 components: - rot: -1.5707963267948966 rad pos: -33.5,-10.5 parent: 2 type: Transform - - uid: 13534 + - uid: 13668 components: - rot: -1.5707963267948966 rad pos: -34.5,-10.5 parent: 2 type: Transform - - uid: 13535 + - uid: 13669 components: - rot: -1.5707963267948966 rad pos: -35.5,-10.5 parent: 2 type: Transform - - uid: 13536 + - uid: 13670 components: - pos: -36.5,-9.5 parent: 2 type: Transform - - uid: 13537 + - uid: 13671 components: - pos: -36.5,-8.5 parent: 2 type: Transform - - uid: 13538 + - uid: 13672 components: - pos: -36.5,-7.5 parent: 2 type: Transform - - uid: 13539 + - uid: 13673 components: - pos: -36.5,-6.5 parent: 2 type: Transform - - uid: 13540 + - uid: 13674 components: - rot: -1.5707963267948966 rad pos: -37.5,-5.5 parent: 2 type: Transform - - uid: 13541 + - uid: 13675 components: - rot: -1.5707963267948966 rad pos: -26.5,-0.5 parent: 2 type: Transform - - uid: 13542 + - uid: 13676 components: - rot: -1.5707963267948966 rad pos: -27.5,-0.5 parent: 2 type: Transform - - uid: 13543 + - uid: 13677 components: - rot: -1.5707963267948966 rad pos: -28.5,-0.5 parent: 2 type: Transform - - uid: 13544 + - uid: 13678 components: - rot: -1.5707963267948966 rad pos: -29.5,-0.5 parent: 2 type: Transform - - uid: 13545 + - uid: 13679 components: - rot: -1.5707963267948966 rad pos: -30.5,-0.5 parent: 2 type: Transform - - uid: 13546 + - uid: 13680 components: - rot: -1.5707963267948966 rad pos: -0.5,-75.5 parent: 2 type: Transform - - uid: 13547 + - uid: 13681 components: - rot: -1.5707963267948966 rad pos: -1.5,-75.5 parent: 2 type: Transform - - uid: 13548 + - uid: 13682 components: - rot: -1.5707963267948966 rad pos: -2.5,-75.5 parent: 2 type: Transform - - uid: 13549 + - uid: 13683 components: - rot: -1.5707963267948966 rad pos: -3.5,-75.5 parent: 2 type: Transform - - uid: 13550 + - uid: 13684 components: - rot: -1.5707963267948966 rad pos: -4.5,-75.5 parent: 2 type: Transform - - uid: 13551 + - uid: 13685 components: - rot: -1.5707963267948966 rad pos: -5.5,-75.5 parent: 2 type: Transform - - uid: 13552 + - uid: 13686 components: - rot: -1.5707963267948966 rad pos: -6.5,-75.5 parent: 2 type: Transform - - uid: 13553 + - uid: 13687 components: - rot: -1.5707963267948966 rad pos: -7.5,-75.5 parent: 2 type: Transform - - uid: 13554 + - uid: 13688 components: - rot: -1.5707963267948966 rad pos: -8.5,-75.5 parent: 2 type: Transform - - uid: 13555 + - uid: 13689 components: - rot: -1.5707963267948966 rad pos: -9.5,-75.5 parent: 2 type: Transform - - uid: 13556 + - uid: 13690 components: - rot: -1.5707963267948966 rad pos: -10.5,-75.5 parent: 2 type: Transform - - uid: 13557 + - uid: 13691 components: - rot: -1.5707963267948966 rad pos: -11.5,-75.5 parent: 2 type: Transform - - uid: 13558 + - uid: 13692 components: - rot: -1.5707963267948966 rad pos: -12.5,-75.5 parent: 2 type: Transform - - uid: 13559 + - uid: 13693 components: - rot: -1.5707963267948966 rad pos: -13.5,-75.5 parent: 2 type: Transform - - uid: 13560 + - uid: 13694 components: - rot: -1.5707963267948966 rad pos: -14.5,-75.5 parent: 2 type: Transform - - uid: 13561 + - uid: 13695 components: - rot: -1.5707963267948966 rad pos: -15.5,-75.5 parent: 2 type: Transform - - uid: 13562 + - uid: 13696 components: - rot: -1.5707963267948966 rad pos: -16.5,-75.5 parent: 2 type: Transform - - uid: 13563 + - uid: 13697 components: - rot: -1.5707963267948966 rad pos: -17.5,-75.5 parent: 2 type: Transform - - uid: 13564 + - uid: 13698 components: - rot: -1.5707963267948966 rad pos: -18.5,-75.5 parent: 2 type: Transform - - uid: 13565 + - uid: 13699 components: - rot: 3.141592653589793 rad pos: -19.5,-76.5 parent: 2 type: Transform - - uid: 13566 + - uid: 13700 components: - rot: 1.5707963267948966 rad pos: -20.5,-77.5 parent: 2 type: Transform - - uid: 13567 + - uid: 13701 components: - rot: 1.5707963267948966 rad pos: -21.5,-77.5 parent: 2 type: Transform - - uid: 13568 + - uid: 13702 components: - rot: 1.5707963267948966 rad pos: -22.5,-77.5 parent: 2 type: Transform - - uid: 13569 + - uid: 13703 components: - rot: 1.5707963267948966 rad pos: -23.5,-77.5 parent: 2 type: Transform - - uid: 13570 + - uid: 13704 components: - rot: 1.5707963267948966 rad pos: -24.5,-77.5 parent: 2 type: Transform - - uid: 13571 + - uid: 13705 components: - rot: 1.5707963267948966 rad pos: -25.5,-77.5 parent: 2 type: Transform - - uid: 13572 + - uid: 13706 components: - rot: 1.5707963267948966 rad pos: -26.5,-77.5 parent: 2 type: Transform - - uid: 13573 + - uid: 13707 components: - rot: 1.5707963267948966 rad pos: -27.5,-77.5 parent: 2 type: Transform - - uid: 13574 + - uid: 13708 components: - rot: 1.5707963267948966 rad pos: -28.5,-77.5 parent: 2 type: Transform - - uid: 13575 + - uid: 13709 components: - rot: 1.5707963267948966 rad pos: -29.5,-77.5 parent: 2 type: Transform - - uid: 13576 + - uid: 13710 components: - rot: 1.5707963267948966 rad pos: -30.5,-77.5 parent: 2 type: Transform - - uid: 13577 + - uid: 13711 components: - rot: 1.5707963267948966 rad pos: -31.5,-77.5 parent: 2 type: Transform - - uid: 13578 + - uid: 13712 components: - rot: 1.5707963267948966 rad pos: -32.5,-77.5 parent: 2 type: Transform - - uid: 13579 + - uid: 13713 components: - rot: 1.5707963267948966 rad pos: -33.5,-77.5 parent: 2 type: Transform - - uid: 13580 + - uid: 13714 components: - rot: 1.5707963267948966 rad pos: -34.5,-77.5 parent: 2 type: Transform - - uid: 13581 + - uid: 13715 components: - rot: 1.5707963267948966 rad pos: -35.5,-77.5 parent: 2 type: Transform - - uid: 13582 + - uid: 13716 components: - pos: -36.5,-78.5 parent: 2 type: Transform - - uid: 13583 + - uid: 13717 components: - pos: -36.5,-79.5 parent: 2 type: Transform - - uid: 13584 + - uid: 13718 components: - rot: 3.141592653589793 rad pos: -19.5,13.5 parent: 2 type: Transform - - uid: 13585 + - uid: 13719 components: - rot: 3.141592653589793 rad pos: -19.5,14.5 parent: 2 type: Transform - - uid: 13586 + - uid: 13720 components: - rot: 3.141592653589793 rad pos: -19.5,15.5 parent: 2 type: Transform - - uid: 13587 + - uid: 13721 components: - rot: 3.141592653589793 rad pos: -19.5,16.5 parent: 2 type: Transform - - uid: 13588 + - uid: 13722 components: - rot: 3.141592653589793 rad pos: -19.5,17.5 parent: 2 type: Transform - - uid: 13589 + - uid: 13723 components: - rot: 3.141592653589793 rad pos: -19.5,18.5 parent: 2 type: Transform - - uid: 13590 + - uid: 13724 components: - rot: 3.141592653589793 rad pos: -19.5,19.5 parent: 2 type: Transform - - uid: 13591 + - uid: 13725 components: - rot: 3.141592653589793 rad pos: -19.5,20.5 parent: 2 type: Transform - - uid: 13592 + - uid: 13726 components: - rot: 3.141592653589793 rad pos: -19.5,21.5 parent: 2 type: Transform - - uid: 13593 + - uid: 13727 components: - rot: 3.141592653589793 rad pos: -19.5,22.5 parent: 2 type: Transform - - uid: 13594 + - uid: 13728 components: - rot: -1.5707963267948966 rad pos: -20.5,23.5 parent: 2 type: Transform - - uid: 13595 + - uid: 13729 components: - rot: -1.5707963267948966 rad pos: -21.5,23.5 parent: 2 type: Transform - - uid: 13596 + - uid: 13730 components: - rot: 3.141592653589793 rad pos: -22.5,24.5 parent: 2 type: Transform - - uid: 13597 + - uid: 13731 components: - rot: -1.5707963267948966 rad pos: -41.5,19.5 parent: 2 type: Transform - - uid: 13598 + - uid: 13732 components: - rot: -1.5707963267948966 rad pos: -35.5,19.5 parent: 2 type: Transform - - uid: 13599 + - uid: 13733 components: - rot: 1.5707963267948966 rad pos: -23.5,23.5 parent: 2 type: Transform - - uid: 13600 + - uid: 13734 components: - rot: 1.5707963267948966 rad pos: -24.5,23.5 parent: 2 type: Transform - - uid: 13601 + - uid: 13735 components: - rot: 1.5707963267948966 rad pos: -25.5,23.5 parent: 2 type: Transform - - uid: 13602 + - uid: 13736 components: - rot: 1.5707963267948966 rad pos: -26.5,23.5 parent: 2 type: Transform - - uid: 13603 + - uid: 13737 components: - rot: 1.5707963267948966 rad pos: -27.5,23.5 parent: 2 type: Transform - - uid: 13604 + - uid: 13738 components: - rot: 1.5707963267948966 rad pos: -28.5,23.5 parent: 2 type: Transform - - uid: 13605 + - uid: 13739 components: - rot: 1.5707963267948966 rad pos: -29.5,23.5 parent: 2 type: Transform - - uid: 13606 + - uid: 13740 components: - rot: 1.5707963267948966 rad pos: -30.5,23.5 parent: 2 type: Transform - - uid: 13607 + - uid: 13741 components: - rot: 1.5707963267948966 rad pos: -31.5,23.5 parent: 2 type: Transform - - uid: 13608 + - uid: 13742 components: - rot: 1.5707963267948966 rad pos: -32.5,23.5 parent: 2 type: Transform - - uid: 13609 + - uid: 13743 components: - rot: 1.5707963267948966 rad pos: -33.5,23.5 parent: 2 type: Transform - - uid: 13610 + - uid: 13744 components: - rot: 1.5707963267948966 rad pos: -34.5,23.5 parent: 2 type: Transform - - uid: 13611 + - uid: 13745 components: - rot: 1.5707963267948966 rad pos: -35.5,23.5 parent: 2 type: Transform - - uid: 13612 + - uid: 13746 components: - rot: 1.5707963267948966 rad pos: -36.5,23.5 parent: 2 type: Transform - - uid: 13613 + - uid: 13747 components: - rot: 1.5707963267948966 rad pos: -37.5,23.5 parent: 2 type: Transform - - uid: 13614 + - uid: 13748 components: - rot: 1.5707963267948966 rad pos: -38.5,23.5 parent: 2 type: Transform - - uid: 13615 + - uid: 13749 components: - rot: 3.141592653589793 rad pos: -46.5,10.5 parent: 2 type: Transform - - uid: 13616 + - uid: 13750 components: - rot: 1.5707963267948966 rad pos: -40.5,23.5 parent: 2 type: Transform - - uid: 13617 + - uid: 13751 components: - rot: 1.5707963267948966 rad pos: -41.5,23.5 parent: 2 type: Transform - - uid: 13618 + - uid: 13752 components: - rot: 3.141592653589793 rad pos: -42.5,24.5 parent: 2 type: Transform - - uid: 13619 + - uid: 13753 components: - rot: 3.141592653589793 rad pos: -42.5,25.5 parent: 2 type: Transform - - uid: 13620 + - uid: 13754 components: - rot: 3.141592653589793 rad pos: -42.5,26.5 parent: 2 type: Transform - - uid: 13621 + - uid: 13755 components: - rot: -1.5707963267948966 rad pos: -38.5,19.5 parent: 2 type: Transform - - uid: 13622 + - uid: 13756 components: - pos: -42.5,18.5 parent: 2 type: Transform - - uid: 13623 + - uid: 13757 components: - pos: -42.5,17.5 parent: 2 type: Transform - - uid: 13624 + - uid: 13758 components: - pos: -42.5,15.5 parent: 2 type: Transform - - uid: 13625 + - uid: 13759 components: - pos: -42.5,16.5 parent: 2 type: Transform - - uid: 13626 + - uid: 13760 components: - rot: 3.141592653589793 rad pos: -5.5,-19.5 parent: 2 type: Transform - - uid: 13627 + - uid: 13761 components: - rot: 3.141592653589793 rad pos: -5.5,-17.5 parent: 2 type: Transform - - uid: 13628 + - uid: 13762 components: - rot: -1.5707963267948966 rad pos: -44.5,5.5 parent: 2 type: Transform - - uid: 13629 + - uid: 13763 components: - pos: -45.5,4.5 parent: 2 type: Transform - - uid: 13630 + - uid: 13764 components: - pos: -45.5,3.5 parent: 2 type: Transform - - uid: 13631 + - uid: 13765 components: - pos: -45.5,2.5 parent: 2 type: Transform - - uid: 13632 + - uid: 13766 components: - pos: -45.5,1.5 parent: 2 type: Transform - - uid: 13633 + - uid: 13767 components: - pos: -45.5,0.5 parent: 2 type: Transform - - uid: 13634 + - uid: 13768 components: - rot: -1.5707963267948966 rad pos: -31.5,-0.5 parent: 2 type: Transform - - uid: 13635 + - uid: 13769 components: - rot: -1.5707963267948966 rad pos: -32.5,-0.5 parent: 2 type: Transform - - uid: 13636 + - uid: 13770 components: - rot: -1.5707963267948966 rad pos: -33.5,-0.5 parent: 2 type: Transform - - uid: 13637 + - uid: 13771 components: - rot: -1.5707963267948966 rad pos: -34.5,-0.5 parent: 2 type: Transform - - uid: 13638 + - uid: 13772 components: - rot: -1.5707963267948966 rad pos: -35.5,-0.5 parent: 2 type: Transform - - uid: 13639 + - uid: 13773 components: - rot: -1.5707963267948966 rad pos: -36.5,-0.5 parent: 2 type: Transform - - uid: 13640 + - uid: 13774 components: - rot: -1.5707963267948966 rad pos: -37.5,-0.5 parent: 2 type: Transform - - uid: 13641 + - uid: 13775 components: - rot: -1.5707963267948966 rad pos: -38.5,-0.5 parent: 2 type: Transform - - uid: 13642 + - uid: 13776 components: - rot: -1.5707963267948966 rad pos: -39.5,-0.5 parent: 2 type: Transform - - uid: 13643 + - uid: 13777 components: - rot: -1.5707963267948966 rad pos: -40.5,-0.5 parent: 2 type: Transform - - uid: 13644 + - uid: 13778 components: - rot: -1.5707963267948966 rad pos: -41.5,-0.5 parent: 2 type: Transform - - uid: 13645 + - uid: 13779 components: - rot: -1.5707963267948966 rad pos: -42.5,-0.5 parent: 2 type: Transform - - uid: 13646 + - uid: 13780 components: - rot: -1.5707963267948966 rad pos: -43.5,-0.5 parent: 2 type: Transform - - uid: 13647 + - uid: 13781 components: - rot: -1.5707963267948966 rad pos: -44.5,-0.5 parent: 2 type: Transform - - uid: 13648 + - uid: 13782 components: - rot: 3.141592653589793 rad pos: -5.5,-20.5 parent: 2 type: Transform - - uid: 13649 + - uid: 13783 components: - rot: 3.141592653589793 rad pos: -5.5,-18.5 parent: 2 type: Transform - - uid: 13650 + - uid: 13784 components: - rot: -1.5707963267948966 rad pos: -42.5,18.5 parent: 2 type: Transform - - uid: 13651 + - uid: 13785 components: - rot: 3.141592653589793 rad pos: -3.5,-22.5 parent: 2 type: Transform - - uid: 13652 + - uid: 13786 components: - rot: 3.141592653589793 rad pos: -3.5,-23.5 parent: 2 type: Transform - - uid: 13653 + - uid: 13787 components: - rot: 1.5707963267948966 rad pos: -7.5,-9.5 parent: 2 type: Transform - - uid: 13654 + - uid: 13788 components: - rot: 1.5707963267948966 rad pos: 28.5,-86.5 parent: 2 type: Transform - - uid: 13655 + - uid: 13789 components: - rot: 3.141592653589793 rad pos: 15.5,-30.5 parent: 2 type: Transform - - uid: 13656 + - uid: 13790 components: - rot: 3.141592653589793 rad pos: 25.5,-53.5 parent: 2 type: Transform - - uid: 13657 + - uid: 13791 components: - rot: 3.141592653589793 rad pos: 18.5,-53.5 parent: 2 type: Transform - - uid: 13658 + - uid: 13792 components: - rot: 3.141592653589793 rad pos: 15.5,-40.5 parent: 2 type: Transform - - uid: 13659 + - uid: 13793 components: - rot: 3.141592653589793 rad pos: 15.5,-38.5 parent: 2 type: Transform - - uid: 13660 + - uid: 13794 components: - pos: -5.5,-55.5 parent: 2 type: Transform - - uid: 13661 + - uid: 13795 components: - pos: -5.5,-56.5 parent: 2 type: Transform - - uid: 13662 + - uid: 13796 components: - pos: -5.5,-57.5 parent: 2 type: Transform - - uid: 13663 + - uid: 13797 components: - pos: -5.5,-58.5 parent: 2 type: Transform - - uid: 13664 + - uid: 13798 components: - pos: -5.5,-59.5 parent: 2 type: Transform - - uid: 13665 + - uid: 13799 components: - pos: -5.5,-60.5 parent: 2 type: Transform - - uid: 13666 + - uid: 13800 components: - pos: -6.5,-62.5 parent: 2 type: Transform - - uid: 13667 + - uid: 13801 components: - pos: -6.5,-63.5 parent: 2 type: Transform - - uid: 13668 + - uid: 13802 components: - pos: -6.5,-64.5 parent: 2 type: Transform - - uid: 13669 + - uid: 13803 components: - rot: 1.5707963267948966 rad pos: -8.5,-66.5 parent: 2 type: Transform - - uid: 13670 + - uid: 13804 components: - rot: 3.141592653589793 rad pos: -3.5,-66.5 parent: 2 type: Transform - - uid: 13671 + - uid: 13805 components: - rot: 3.141592653589793 rad pos: -3.5,-65.5 parent: 2 type: Transform - - uid: 13672 + - uid: 13806 components: - rot: 3.141592653589793 rad pos: -3.5,-64.5 parent: 2 type: Transform - - uid: 13673 + - uid: 13807 components: - rot: 3.141592653589793 rad pos: -3.5,-63.5 parent: 2 type: Transform - - uid: 13674 + - uid: 13808 components: - rot: 3.141592653589793 rad pos: -3.5,-62.5 parent: 2 type: Transform - - uid: 13675 + - uid: 13809 components: - rot: -1.5707963267948966 rad pos: -4.5,-61.5 parent: 2 type: Transform - - uid: 13676 + - uid: 13810 components: - rot: -1.5707963267948966 rad pos: -2.5,-61.5 parent: 2 type: Transform - - uid: 13677 + - uid: 13811 components: - rot: -1.5707963267948966 rad pos: -1.5,-61.5 parent: 2 type: Transform - - uid: 13678 + - uid: 13812 components: - rot: -1.5707963267948966 rad pos: -0.5,-61.5 parent: 2 type: Transform - - uid: 13679 + - uid: 13813 components: - rot: -1.5707963267948966 rad pos: 0.5,-61.5 parent: 2 type: Transform - - uid: 13680 + - uid: 13814 components: - rot: -1.5707963267948966 rad pos: 1.5,-61.5 parent: 2 type: Transform - - uid: 13681 + - uid: 13815 components: - pos: 2.5,-62.5 parent: 2 type: Transform - - uid: 13682 + - uid: 13816 components: - rot: -1.5707963267948966 rad pos: -7.5,-61.5 parent: 2 type: Transform - - uid: 13683 + - uid: 13817 components: - rot: -1.5707963267948966 rad pos: -8.5,-61.5 parent: 2 type: Transform - - uid: 13684 + - uid: 13818 components: - rot: -1.5707963267948966 rad pos: -9.5,-61.5 parent: 2 type: Transform - - uid: 13685 + - uid: 13819 components: - rot: -1.5707963267948966 rad pos: -10.5,-61.5 parent: 2 type: Transform - - uid: 13686 + - uid: 13820 components: - rot: -1.5707963267948966 rad pos: -11.5,-61.5 parent: 2 type: Transform - - uid: 13687 + - uid: 13821 components: - rot: -1.5707963267948966 rad pos: -12.5,-61.5 parent: 2 type: Transform - - uid: 13688 + - uid: 13822 components: - pos: -13.5,-62.5 parent: 2 type: Transform - - uid: 13689 + - uid: 13823 components: - rot: 3.141592653589793 rad pos: -13.5,-63.5 parent: 2 type: Transform - - uid: 13690 + - uid: 13824 components: - rot: 3.141592653589793 rad pos: -13.5,-64.5 parent: 2 type: Transform - - uid: 13691 + - uid: 13825 components: - rot: 3.141592653589793 rad pos: -13.5,-65.5 parent: 2 type: Transform - - uid: 13692 + - uid: 13826 components: - rot: 3.141592653589793 rad pos: -13.5,-66.5 parent: 2 type: Transform - - uid: 13693 + - uid: 13827 components: - rot: 1.5707963267948966 rad pos: -14.5,-67.5 parent: 2 type: Transform - - uid: 13694 + - uid: 13828 components: - rot: 1.5707963267948966 rad pos: -15.5,-67.5 parent: 2 type: Transform - - uid: 13695 + - uid: 13829 components: - rot: 3.141592653589793 rad pos: -3.5,-26.5 parent: 2 type: Transform - - uid: 13696 + - uid: 13830 components: - rot: 3.141592653589793 rad pos: -12.5,6.5 parent: 2 type: Transform - - uid: 13697 + - uid: 13831 components: - rot: 3.141592653589793 rad pos: -12.5,7.5 parent: 2 type: Transform - - uid: 13698 + - uid: 13832 components: - pos: -45.5,12.5 parent: 2 type: Transform - - uid: 13699 + - uid: 13833 components: - pos: -45.5,13.5 parent: 2 type: Transform - - uid: 13700 + - uid: 13834 components: - rot: 1.5707963267948966 rad pos: -44.5,18.5 parent: 2 type: Transform - - uid: 13701 + - uid: 13835 components: - rot: -1.5707963267948966 rad pos: -39.5,23.5 parent: 2 type: Transform - - uid: 13702 + - uid: 13836 components: - pos: -45.5,14.5 parent: 2 type: Transform - - uid: 13703 + - uid: 13837 components: - pos: -45.5,15.5 parent: 2 type: Transform - - uid: 13704 + - uid: 13838 components: - pos: -45.5,16.5 parent: 2 type: Transform - - uid: 13705 + - uid: 13839 components: - pos: -45.5,17.5 parent: 2 type: Transform - - uid: 13706 + - uid: 13840 components: - rot: -1.5707963267948966 rad pos: -43.5,18.5 parent: 2 type: Transform - - uid: 13707 + - uid: 13841 components: - pos: -19.5,24.5 parent: 2 type: Transform - - uid: 13708 + - uid: 13842 components: - pos: -19.5,25.5 parent: 2 type: Transform - - uid: 13709 + - uid: 13843 components: - pos: -19.5,26.5 parent: 2 type: Transform - - uid: 13710 + - uid: 13844 components: - pos: -19.5,27.5 parent: 2 type: Transform - - uid: 13711 + - uid: 13845 components: - pos: -19.5,28.5 parent: 2 type: Transform - - uid: 13712 + - uid: 13846 components: - rot: 1.5707963267948966 rad pos: -18.5,29.5 parent: 2 type: Transform - - uid: 13713 + - uid: 13847 components: - rot: 1.5707963267948966 rad pos: -17.5,29.5 parent: 2 type: Transform - - uid: 13714 + - uid: 13848 components: - rot: 1.5707963267948966 rad pos: -16.5,29.5 parent: 2 type: Transform - - uid: 13715 + - uid: 13849 components: - rot: 3.141592653589793 rad pos: -15.5,30.5 parent: 2 type: Transform - - uid: 13716 + - uid: 13850 components: - rot: 3.141592653589793 rad pos: -15.5,31.5 parent: 2 type: Transform - - uid: 13717 + - uid: 13851 components: - rot: 3.141592653589793 rad pos: -15.5,32.5 parent: 2 type: Transform - - uid: 13718 + - uid: 13852 components: - rot: 3.141592653589793 rad pos: -15.5,33.5 parent: 2 type: Transform - - uid: 13719 + - uid: 13853 components: - rot: 3.141592653589793 rad pos: -15.5,34.5 parent: 2 type: Transform - - uid: 13720 + - uid: 13854 components: - rot: 3.141592653589793 rad pos: -15.5,35.5 parent: 2 type: Transform - - uid: 13721 + - uid: 13855 components: - rot: 3.141592653589793 rad pos: -15.5,36.5 parent: 2 type: Transform - - uid: 13722 + - uid: 13856 components: - rot: -1.5707963267948966 rad pos: -16.5,37.5 parent: 2 type: Transform - - uid: 13723 + - uid: 13857 components: - pos: -15.5,38.5 parent: 2 type: Transform - - uid: 13724 + - uid: 13858 components: - pos: -15.5,39.5 parent: 2 type: Transform - - uid: 13725 + - uid: 13859 components: - pos: -15.5,40.5 parent: 2 type: Transform - - uid: 13726 + - uid: 13860 components: - pos: -15.5,41.5 parent: 2 type: Transform - - uid: 13727 + - uid: 13861 components: - pos: -15.5,42.5 parent: 2 type: Transform - - uid: 13728 + - uid: 13862 components: - pos: -15.5,43.5 parent: 2 type: Transform - - uid: 13729 + - uid: 13863 components: - rot: -1.5707963267948966 rad pos: -14.5,44.5 parent: 2 type: Transform - - uid: 13730 + - uid: 13864 components: - rot: -1.5707963267948966 rad pos: -13.5,44.5 parent: 2 type: Transform - - uid: 13731 + - uid: 13865 components: - rot: -1.5707963267948966 rad pos: -12.5,44.5 parent: 2 type: Transform - - uid: 13732 + - uid: 13866 components: - rot: -1.5707963267948966 rad pos: -11.5,44.5 parent: 2 type: Transform - - uid: 13733 + - uid: 13867 components: - rot: -1.5707963267948966 rad pos: -16.5,44.5 parent: 2 type: Transform - - uid: 13734 + - uid: 13868 components: - rot: 3.141592653589793 rad pos: -17.5,45.5 parent: 2 type: Transform - - uid: 13735 + - uid: 13869 components: - rot: 3.141592653589793 rad pos: -17.5,46.5 parent: 2 type: Transform - - uid: 13736 + - uid: 13870 components: - rot: 3.141592653589793 rad pos: -17.5,47.5 parent: 2 type: Transform - - uid: 13737 + - uid: 13871 components: - rot: 3.141592653589793 rad pos: -17.5,48.5 parent: 2 type: Transform - - uid: 13738 + - uid: 13872 components: - rot: 3.141592653589793 rad pos: -17.5,49.5 parent: 2 type: Transform - - uid: 13739 + - uid: 13873 components: - rot: -1.5707963267948966 rad pos: -5.5,44.5 parent: 2 type: Transform - - uid: 13740 + - uid: 13874 components: - rot: -1.5707963267948966 rad pos: -6.5,44.5 parent: 2 type: Transform - - uid: 13741 + - uid: 13875 components: - rot: -1.5707963267948966 rad pos: -7.5,44.5 parent: 2 type: Transform - - uid: 13742 + - uid: 13876 components: - rot: -1.5707963267948966 rad pos: -8.5,44.5 parent: 2 type: Transform - - uid: 13743 + - uid: 13877 components: - rot: -1.5707963267948966 rad pos: -9.5,44.5 parent: 2 type: Transform - - uid: 13744 + - uid: 13878 components: - rot: -1.5707963267948966 rad pos: -10.5,44.5 parent: 2 type: Transform - - uid: 13745 + - uid: 13879 components: - rot: -1.5707963267948966 rad pos: -14.5,50.5 parent: 2 type: Transform - - uid: 13746 + - uid: 13880 components: - rot: -1.5707963267948966 rad pos: -16.5,50.5 parent: 2 type: Transform - - uid: 13747 + - uid: 13881 components: - rot: -1.5707963267948966 rad pos: -15.5,50.5 parent: 2 type: Transform - - uid: 13748 + - uid: 13882 components: - pos: -37.5,-94.5 parent: 2 type: Transform - - uid: 13749 + - uid: 13883 components: - rot: -1.5707963267948966 rad pos: -39.5,-95.5 parent: 2 type: Transform - - uid: 13750 + - uid: 13884 components: - rot: -1.5707963267948966 rad pos: -40.5,-95.5 parent: 2 type: Transform - - uid: 13751 + - uid: 13885 components: - rot: 3.141592653589793 rad pos: -41.5,-94.5 parent: 2 type: Transform - - uid: 13752 + - uid: 13886 components: - rot: 3.141592653589793 rad pos: -41.5,-93.5 parent: 2 type: Transform - - uid: 13753 + - uid: 13887 components: - rot: 3.141592653589793 rad pos: -41.5,-92.5 parent: 2 type: Transform - - uid: 13754 + - uid: 13888 components: - rot: 3.141592653589793 rad pos: -41.5,-91.5 parent: 2 type: Transform - - uid: 13755 + - uid: 13889 components: - rot: 3.141592653589793 rad pos: -41.5,-90.5 parent: 2 type: Transform - - uid: 13756 + - uid: 13890 components: - rot: 3.141592653589793 rad pos: -41.5,-89.5 parent: 2 type: Transform - - uid: 13757 + - uid: 13891 components: - rot: 3.141592653589793 rad pos: -41.5,-88.5 parent: 2 type: Transform - - uid: 13758 + - uid: 13892 components: - rot: 1.5707963267948966 rad pos: 68.5,-47.5 parent: 2 type: Transform - - uid: 13759 + - uid: 13893 components: - rot: 1.5707963267948966 rad pos: 69.5,-47.5 parent: 2 type: Transform - - uid: 13760 + - uid: 13894 components: - rot: 1.5707963267948966 rad pos: 70.5,-47.5 parent: 2 type: Transform - - uid: 13761 + - uid: 13895 components: - rot: 1.5707963267948966 rad pos: 71.5,-47.5 parent: 2 type: Transform - - uid: 13762 + - uid: 13896 components: - rot: 1.5707963267948966 rad pos: 72.5,-47.5 parent: 2 type: Transform - - uid: 13763 + - uid: 13897 components: - rot: 1.5707963267948966 rad pos: 73.5,-47.5 parent: 2 type: Transform - - uid: 13764 + - uid: 13898 components: - rot: 1.5707963267948966 rad pos: 74.5,-47.5 parent: 2 type: Transform - - uid: 13765 + - uid: 13899 components: - rot: 3.141592653589793 rad pos: 75.5,-46.5 parent: 2 type: Transform - - uid: 13766 + - uid: 13900 components: - rot: 3.141592653589793 rad pos: 75.5,-45.5 parent: 2 type: Transform - - uid: 13767 + - uid: 13901 components: - rot: 3.141592653589793 rad pos: 75.5,-44.5 parent: 2 type: Transform - - uid: 13768 + - uid: 13902 components: - rot: 3.141592653589793 rad pos: 75.5,-43.5 parent: 2 type: Transform - - uid: 13769 + - uid: 13903 components: - rot: 3.141592653589793 rad pos: 75.5,-42.5 parent: 2 type: Transform - - uid: 13770 + - uid: 13904 components: - rot: 3.141592653589793 rad pos: 75.5,-41.5 parent: 2 type: Transform - - uid: 13771 + - uid: 13905 components: - rot: 3.141592653589793 rad pos: 75.5,-40.5 parent: 2 type: Transform - - uid: 13772 + - uid: 13906 components: - rot: 3.141592653589793 rad pos: 75.5,-39.5 parent: 2 type: Transform - - uid: 13773 + - uid: 13907 components: - rot: 3.141592653589793 rad pos: 75.5,-38.5 parent: 2 type: Transform - - uid: 13774 + - uid: 13908 components: - rot: 3.141592653589793 rad pos: 75.5,-37.5 parent: 2 type: Transform - - uid: 13775 + - uid: 13909 components: - rot: 3.141592653589793 rad pos: 75.5,-36.5 parent: 2 type: Transform - - uid: 13776 + - uid: 13910 components: - rot: 3.141592653589793 rad pos: 75.5,-35.5 parent: 2 type: Transform - - uid: 13777 + - uid: 13911 components: - rot: 3.141592653589793 rad pos: 75.5,-34.5 parent: 2 type: Transform - - uid: 13778 + - uid: 13912 components: - rot: 3.141592653589793 rad pos: 75.5,-33.5 parent: 2 type: Transform - - uid: 13779 + - uid: 13913 components: - rot: 3.141592653589793 rad pos: -4.5,-3.5 parent: 2 type: Transform - - uid: 13780 + - uid: 13914 components: - rot: 3.141592653589793 rad pos: -4.5,-4.5 parent: 2 type: Transform - - uid: 13781 + - uid: 13915 components: - rot: 3.141592653589793 rad pos: 15.5,-31.5 parent: 2 type: Transform - - uid: 13782 + - uid: 13916 components: - pos: -42.5,14.5 parent: 2 type: Transform - - uid: 13783 + - uid: 13917 components: - rot: 1.5707963267948966 rad pos: -53.5,-64.5 parent: 2 type: Transform - - uid: 13784 + - uid: 13918 components: - pos: 30.5,-81.5 parent: 2 type: Transform - - uid: 13785 + - uid: 13919 components: - rot: 3.141592653589793 rad pos: -5.5,-16.5 parent: 2 type: Transform - - uid: 13786 + - uid: 13920 components: - rot: 3.141592653589793 rad pos: -5.5,-15.5 parent: 2 type: Transform - - uid: 13787 + - uid: 13921 components: - rot: 3.141592653589793 rad pos: -5.5,-14.5 parent: 2 type: Transform - - uid: 13788 + - uid: 13922 components: - rot: -1.5707963267948966 rad pos: -6.5,-13.5 parent: 2 type: Transform - - uid: 13789 + - uid: 13923 components: - rot: -1.5707963267948966 rad pos: -7.5,-13.5 parent: 2 type: Transform - - uid: 13790 + - uid: 13924 components: - rot: -1.5707963267948966 rad pos: -8.5,-13.5 parent: 2 type: Transform - - uid: 13791 + - uid: 13925 components: - rot: -1.5707963267948966 rad pos: -9.5,-13.5 parent: 2 type: Transform - - uid: 13792 + - uid: 13926 components: - pos: -12.5,-13.5 parent: 2 type: Transform - - uid: 13793 + - uid: 13927 components: - rot: -1.5707963267948966 rad pos: -13.5,-14.5 parent: 2 type: Transform - - uid: 13794 + - uid: 13928 components: - rot: -1.5707963267948966 rad pos: -14.5,-14.5 parent: 2 type: Transform - - uid: 13795 + - uid: 13929 components: - rot: -1.5707963267948966 rad pos: -15.5,-14.5 parent: 2 type: Transform - - uid: 13796 + - uid: 13930 components: - rot: -1.5707963267948966 rad pos: -16.5,-14.5 parent: 2 type: Transform - - uid: 13797 + - uid: 13931 components: - rot: -1.5707963267948966 rad pos: -17.5,-14.5 parent: 2 type: Transform - - uid: 13798 + - uid: 13932 components: - rot: 3.141592653589793 rad pos: -18.5,-13.5 parent: 2 type: Transform - - uid: 13799 + - uid: 13933 components: - rot: 3.141592653589793 rad pos: -18.5,-12.5 parent: 2 type: Transform - - uid: 13800 + - uid: 13934 components: - rot: 3.141592653589793 rad pos: -18.5,-11.5 parent: 2 type: Transform - - uid: 13801 + - uid: 13935 components: - rot: 3.141592653589793 rad pos: -18.5,-10.5 parent: 2 type: Transform - - uid: 13802 + - uid: 13936 components: - rot: 3.141592653589793 rad pos: -18.5,-9.5 parent: 2 type: Transform - - uid: 13803 + - uid: 13937 components: - rot: 3.141592653589793 rad pos: -18.5,-8.5 parent: 2 type: Transform - - uid: 13804 + - uid: 13938 components: - rot: 3.141592653589793 rad pos: -18.5,-7.5 parent: 2 type: Transform - - uid: 13805 + - uid: 13939 components: - rot: 3.141592653589793 rad pos: -18.5,-6.5 parent: 2 type: Transform - - uid: 13806 + - uid: 13940 components: - rot: 3.141592653589793 rad pos: -18.5,-5.5 parent: 2 type: Transform - - uid: 13807 + - uid: 13941 components: - rot: -1.5707963267948966 rad pos: -19.5,-4.5 parent: 2 type: Transform - - uid: 13808 + - uid: 13942 components: - rot: -1.5707963267948966 rad pos: -20.5,-4.5 parent: 2 type: Transform - - uid: 13809 + - uid: 13943 components: - rot: -1.5707963267948966 rad pos: -21.5,-4.5 parent: 2 type: Transform - - uid: 13810 + - uid: 13944 components: - rot: -1.5707963267948966 rad pos: -22.5,-4.5 parent: 2 type: Transform - - uid: 13811 + - uid: 13945 components: - rot: -1.5707963267948966 rad pos: -23.5,-4.5 parent: 2 type: Transform - - uid: 13812 + - uid: 13946 components: - rot: 3.141592653589793 rad pos: -24.5,-3.5 parent: 2 type: Transform - - uid: 13813 + - uid: 13947 components: - rot: 3.141592653589793 rad pos: -24.5,-2.5 parent: 2 type: Transform - - uid: 13814 + - uid: 13948 components: - rot: 3.141592653589793 rad pos: -24.5,-1.5 parent: 2 type: Transform - - uid: 13815 + - uid: 13949 components: - rot: 3.141592653589793 rad pos: -24.5,-0.5 parent: 2 type: Transform - - uid: 13816 + - uid: 13950 components: - rot: 3.141592653589793 rad pos: -24.5,0.5 parent: 2 type: Transform - - uid: 13817 + - uid: 13951 components: - rot: 3.141592653589793 rad pos: -24.5,1.5 parent: 2 type: Transform - - uid: 13818 + - uid: 13952 components: - rot: 3.141592653589793 rad pos: -24.5,2.5 parent: 2 type: Transform - - uid: 13819 + - uid: 13953 components: - rot: 3.141592653589793 rad pos: -24.5,3.5 parent: 2 type: Transform - - uid: 13820 + - uid: 13954 components: - rot: 3.141592653589793 rad pos: -24.5,4.5 parent: 2 type: Transform - - uid: 13821 + - uid: 13955 components: - rot: 3.141592653589793 rad pos: -24.5,5.5 parent: 2 type: Transform - - uid: 13822 + - uid: 13956 components: - rot: 3.141592653589793 rad pos: -24.5,6.5 parent: 2 type: Transform - - uid: 13823 + - uid: 13957 components: - rot: 3.141592653589793 rad pos: -24.5,7.5 parent: 2 type: Transform - - uid: 13824 + - uid: 13958 components: - rot: 1.5707963267948966 rad pos: -23.5,8.5 parent: 2 type: Transform - - uid: 13825 + - uid: 13959 components: - rot: 1.5707963267948966 rad pos: -22.5,8.5 parent: 2 type: Transform - - uid: 13826 + - uid: 13960 components: - rot: 1.5707963267948966 rad pos: -21.5,8.5 parent: 2 type: Transform - - uid: 13827 + - uid: 13961 components: - rot: 3.141592653589793 rad pos: -20.5,9.5 parent: 2 type: Transform - - uid: 13828 + - uid: 13962 components: - rot: 3.141592653589793 rad pos: -20.5,10.5 parent: 2 type: Transform - - uid: 13829 + - uid: 13963 components: - rot: 3.141592653589793 rad pos: -20.5,11.5 parent: 2 type: Transform - - uid: 13830 + - uid: 13964 components: - rot: 3.141592653589793 rad pos: -20.5,12.5 parent: 2 type: Transform - - uid: 13831 + - uid: 13965 components: - rot: 3.141592653589793 rad pos: -20.5,13.5 parent: 2 type: Transform - - uid: 13832 + - uid: 13966 components: - rot: 3.141592653589793 rad pos: -20.5,14.5 parent: 2 type: Transform - - uid: 13833 + - uid: 13967 components: - rot: 3.141592653589793 rad pos: -20.5,15.5 parent: 2 type: Transform - - uid: 13834 + - uid: 13968 components: - rot: 3.141592653589793 rad pos: -20.5,16.5 parent: 2 type: Transform - - uid: 13835 + - uid: 13969 components: - rot: 3.141592653589793 rad pos: -20.5,17.5 parent: 2 type: Transform - - uid: 13836 + - uid: 13970 components: - rot: 3.141592653589793 rad pos: -20.5,18.5 parent: 2 type: Transform - - uid: 13837 + - uid: 13971 components: - rot: 3.141592653589793 rad pos: -20.5,19.5 parent: 2 type: Transform - - uid: 13838 + - uid: 13972 components: - rot: -1.5707963267948966 rad pos: -21.5,20.5 parent: 2 type: Transform - - uid: 13839 + - uid: 13973 components: - rot: -1.5707963267948966 rad pos: -22.5,20.5 parent: 2 type: Transform - - uid: 13840 + - uid: 13974 components: - rot: -1.5707963267948966 rad pos: -23.5,20.5 parent: 2 type: Transform - - uid: 13841 + - uid: 13975 components: - rot: -1.5707963267948966 rad pos: -24.5,20.5 parent: 2 type: Transform - - uid: 13842 + - uid: 13976 components: - rot: -1.5707963267948966 rad pos: -26.5,19.5 parent: 2 type: Transform - - uid: 13843 + - uid: 13977 components: - rot: -1.5707963267948966 rad pos: -27.5,19.5 parent: 2 type: Transform - - uid: 13844 + - uid: 13978 components: - rot: -1.5707963267948966 rad pos: -28.5,19.5 parent: 2 type: Transform - - uid: 13845 + - uid: 13979 components: - rot: -1.5707963267948966 rad pos: -29.5,19.5 parent: 2 type: Transform - - uid: 13846 + - uid: 13980 components: - rot: -1.5707963267948966 rad pos: -30.5,19.5 parent: 2 type: Transform - - uid: 13847 + - uid: 13981 components: - rot: -1.5707963267948966 rad pos: -31.5,19.5 parent: 2 type: Transform - - uid: 13848 + - uid: 13982 components: - rot: -1.5707963267948966 rad pos: -32.5,19.5 parent: 2 type: Transform - - uid: 13849 + - uid: 13983 components: - rot: -1.5707963267948966 rad pos: -33.5,19.5 parent: 2 type: Transform - - uid: 13850 + - uid: 13984 components: - rot: -1.5707963267948966 rad pos: -34.5,19.5 parent: 2 type: Transform - - uid: 13851 + - uid: 13985 components: - rot: -1.5707963267948966 rad pos: -36.5,19.5 parent: 2 type: Transform - - uid: 13852 + - uid: 13986 components: - rot: -1.5707963267948966 rad pos: -39.5,19.5 parent: 2 type: Transform - - uid: 13853 + - uid: 13987 components: - rot: -1.5707963267948966 rad pos: -40.5,19.5 parent: 2 type: Transform - - uid: 13854 + - uid: 13988 components: - rot: -1.5707963267948966 rad pos: -37.5,19.5 parent: 2 type: Transform - - uid: 13855 + - uid: 13989 components: - rot: 3.141592653589793 rad pos: -46.5,9.5 parent: 2 type: Transform - - uid: 13856 + - uid: 13990 components: - rot: 3.141592653589793 rad pos: -46.5,8.5 parent: 2 type: Transform - - uid: 13857 + - uid: 13991 components: - rot: 3.141592653589793 rad pos: -46.5,7.5 parent: 2 type: Transform - - uid: 13858 + - uid: 13992 components: - rot: 3.141592653589793 rad pos: -46.5,6.5 parent: 2 type: Transform - - uid: 13859 + - uid: 13993 components: - rot: 3.141592653589793 rad pos: -46.5,5.5 parent: 2 type: Transform - - uid: 13860 + - uid: 13994 components: - rot: 3.141592653589793 rad pos: -46.5,4.5 parent: 2 type: Transform - - uid: 13861 + - uid: 13995 components: - rot: 3.141592653589793 rad pos: -46.5,3.5 parent: 2 type: Transform - - uid: 13862 + - uid: 13996 components: - rot: 3.141592653589793 rad pos: -46.5,2.5 parent: 2 type: Transform - - uid: 13863 + - uid: 13997 components: - rot: 3.141592653589793 rad pos: -46.5,1.5 parent: 2 type: Transform - - uid: 13864 + - uid: 13998 components: - rot: 1.5707963267948966 rad pos: -45.5,0.5 parent: 2 type: Transform - - uid: 13865 + - uid: 13999 components: - rot: 1.5707963267948966 rad pos: -44.5,0.5 parent: 2 type: Transform - - uid: 13866 + - uid: 14000 components: - rot: 1.5707963267948966 rad pos: -43.5,0.5 parent: 2 type: Transform - - uid: 13867 + - uid: 14001 components: - rot: 1.5707963267948966 rad pos: -42.5,0.5 parent: 2 type: Transform - - uid: 13868 + - uid: 14002 components: - rot: 1.5707963267948966 rad pos: -41.5,0.5 parent: 2 type: Transform - - uid: 13869 + - uid: 14003 components: - rot: 1.5707963267948966 rad pos: -40.5,0.5 parent: 2 type: Transform - - uid: 13870 + - uid: 14004 components: - rot: 1.5707963267948966 rad pos: -39.5,0.5 parent: 2 type: Transform - - uid: 13871 + - uid: 14005 components: - rot: 1.5707963267948966 rad pos: -38.5,0.5 parent: 2 type: Transform - - uid: 13872 + - uid: 14006 components: - rot: 1.5707963267948966 rad pos: -37.5,0.5 parent: 2 type: Transform - - uid: 13873 + - uid: 14007 components: - rot: 1.5707963267948966 rad pos: -36.5,0.5 parent: 2 type: Transform - - uid: 13874 + - uid: 14008 components: - rot: 1.5707963267948966 rad pos: -35.5,0.5 parent: 2 type: Transform - - uid: 13875 + - uid: 14009 components: - rot: 1.5707963267948966 rad pos: -34.5,0.5 parent: 2 type: Transform - - uid: 13876 + - uid: 14010 components: - rot: 1.5707963267948966 rad pos: -33.5,0.5 parent: 2 type: Transform - - uid: 13877 + - uid: 14011 components: - rot: 1.5707963267948966 rad pos: -32.5,0.5 parent: 2 type: Transform - - uid: 13878 + - uid: 14012 components: - rot: 1.5707963267948966 rad pos: -31.5,0.5 parent: 2 type: Transform - - uid: 13879 + - uid: 14013 components: - rot: 1.5707963267948966 rad pos: -30.5,0.5 parent: 2 type: Transform - - uid: 13880 + - uid: 14014 components: - rot: 1.5707963267948966 rad pos: -29.5,0.5 parent: 2 type: Transform - - uid: 13881 + - uid: 14015 components: - rot: 1.5707963267948966 rad pos: -28.5,0.5 parent: 2 type: Transform - - uid: 13882 + - uid: 14016 components: - rot: 1.5707963267948966 rad pos: -27.5,0.5 parent: 2 type: Transform - - uid: 13883 + - uid: 14017 components: - pos: -26.5,-0.5 parent: 2 type: Transform - - uid: 13884 + - uid: 14018 components: - pos: -26.5,-1.5 parent: 2 type: Transform - - uid: 13885 + - uid: 14019 components: - pos: -26.5,-2.5 parent: 2 type: Transform - - uid: 13886 + - uid: 14020 components: - pos: -26.5,-3.5 parent: 2 type: Transform - - uid: 13887 + - uid: 14021 components: - pos: -26.5,-4.5 parent: 2 type: Transform - - uid: 13888 + - uid: 14022 components: - rot: 1.5707963267948966 rad pos: -25.5,-5.5 parent: 2 type: Transform - - uid: 13889 + - uid: 14023 components: - rot: 1.5707963267948966 rad pos: -24.5,-5.5 parent: 2 type: Transform - - uid: 13890 + - uid: 14024 components: - rot: 1.5707963267948966 rad pos: -23.5,-5.5 parent: 2 type: Transform - - uid: 13891 + - uid: 14025 components: - rot: 1.5707963267948966 rad pos: -22.5,-5.5 parent: 2 type: Transform - - uid: 13892 + - uid: 14026 components: - rot: 1.5707963267948966 rad pos: -21.5,-5.5 parent: 2 type: Transform - - uid: 13893 + - uid: 14027 components: - pos: -20.5,-6.5 parent: 2 type: Transform - - uid: 13894 + - uid: 14028 components: - pos: -20.5,-7.5 parent: 2 type: Transform - - uid: 13895 + - uid: 14029 components: - pos: -20.5,-8.5 parent: 2 type: Transform - - uid: 13896 + - uid: 14030 components: - pos: -20.5,-9.5 parent: 2 type: Transform - - uid: 13897 + - uid: 14031 components: - pos: -20.5,-10.5 parent: 2 type: Transform - - uid: 13898 + - uid: 14032 components: - pos: -20.5,-11.5 parent: 2 type: Transform - - uid: 13899 + - uid: 14033 components: - pos: -20.5,-12.5 parent: 2 type: Transform - - uid: 13900 + - uid: 14034 components: - pos: -20.5,-13.5 parent: 2 type: Transform - - uid: 13901 + - uid: 14035 components: - pos: -20.5,-14.5 parent: 2 type: Transform - - uid: 13902 + - uid: 14036 components: - pos: -20.5,-15.5 parent: 2 type: Transform - - uid: 13903 + - uid: 14037 components: - pos: -20.5,-16.5 parent: 2 type: Transform - - uid: 13904 + - uid: 14038 components: - pos: -20.5,-17.5 parent: 2 type: Transform - - uid: 13905 + - uid: 14039 components: - pos: -20.5,-18.5 parent: 2 type: Transform - - uid: 13906 + - uid: 14040 components: - pos: -20.5,-19.5 parent: 2 type: Transform - - uid: 13907 + - uid: 14041 components: - pos: -20.5,-20.5 parent: 2 type: Transform - - uid: 13908 + - uid: 14042 components: - pos: -20.5,-21.5 parent: 2 type: Transform - - uid: 13909 + - uid: 14043 components: - pos: -20.5,-22.5 parent: 2 type: Transform - - uid: 13910 + - uid: 14044 components: - pos: -20.5,-23.5 parent: 2 type: Transform - - uid: 13911 + - uid: 14045 components: - pos: -20.5,-24.5 parent: 2 type: Transform - - uid: 13912 + - uid: 14046 components: - rot: 1.5707963267948966 rad pos: -19.5,-25.5 parent: 2 type: Transform - - uid: 13913 + - uid: 14047 components: - rot: 1.5707963267948966 rad pos: -18.5,-25.5 parent: 2 type: Transform - - uid: 13914 + - uid: 14048 components: - rot: 1.5707963267948966 rad pos: -17.5,-25.5 parent: 2 type: Transform - - uid: 13915 + - uid: 14049 components: - rot: 1.5707963267948966 rad pos: -16.5,-25.5 parent: 2 type: Transform - - uid: 13916 + - uid: 14050 components: - rot: 1.5707963267948966 rad pos: -15.5,-25.5 parent: 2 type: Transform - - uid: 13917 + - uid: 14051 components: - rot: 1.5707963267948966 rad pos: -14.5,-25.5 parent: 2 type: Transform - - uid: 13918 + - uid: 14052 components: - rot: 1.5707963267948966 rad pos: -13.5,-25.5 parent: 2 type: Transform - - uid: 13919 + - uid: 14053 components: - rot: 1.5707963267948966 rad pos: -12.5,-25.5 parent: 2 type: Transform - - uid: 13920 + - uid: 14054 components: - rot: 1.5707963267948966 rad pos: -11.5,-25.5 parent: 2 type: Transform - - uid: 13921 + - uid: 14055 components: - rot: 1.5707963267948966 rad pos: -10.5,-25.5 parent: 2 type: Transform - - uid: 13922 + - uid: 14056 components: - rot: 1.5707963267948966 rad pos: -9.5,-25.5 parent: 2 type: Transform - - uid: 13923 + - uid: 14057 components: - rot: 1.5707963267948966 rad pos: -8.5,-25.5 parent: 2 type: Transform - - uid: 13924 + - uid: 14058 components: - rot: 1.5707963267948966 rad pos: -7.5,-25.5 parent: 2 type: Transform - - uid: 13925 + - uid: 14059 components: - rot: 1.5707963267948966 rad pos: -6.5,-25.5 parent: 2 type: Transform - - uid: 13926 + - uid: 14060 components: - rot: -1.5707963267948966 rad pos: -41.5,18.5 parent: 2 type: Transform - - uid: 13927 + - uid: 14061 components: - pos: 30.5,-74.5 parent: 2 type: Transform - - uid: 13928 + - uid: 14062 components: - rot: 1.5707963267948966 rad pos: 26.5,-73.5 parent: 2 type: Transform - - uid: 13929 + - uid: 14063 components: - rot: 1.5707963267948966 rad pos: 27.5,-73.5 parent: 2 type: Transform - - uid: 13930 + - uid: 14064 components: - rot: 1.5707963267948966 rad pos: 28.5,-73.5 parent: 2 type: Transform - - uid: 13931 + - uid: 14065 components: - rot: 1.5707963267948966 rad pos: 29.5,-73.5 parent: 2 type: Transform - - uid: 13932 + - uid: 14066 components: - pos: 30.5,-76.5 parent: 2 type: Transform - - uid: 13933 + - uid: 14067 components: - pos: 30.5,-75.5 parent: 2 type: Transform - - uid: 13934 + - uid: 14068 components: - pos: 30.5,-82.5 parent: 2 type: Transform - - uid: 13935 + - uid: 14069 components: - rot: 1.5707963267948966 rad pos: 31.5,-73.5 parent: 2 type: Transform - - uid: 13936 + - uid: 14070 components: - rot: 1.5707963267948966 rad pos: 32.5,-73.5 parent: 2 type: Transform - - uid: 13937 + - uid: 14071 components: - rot: 1.5707963267948966 rad pos: 33.5,-73.5 parent: 2 type: Transform - - uid: 13938 + - uid: 14072 components: - rot: 1.5707963267948966 rad pos: 34.5,-73.5 parent: 2 type: Transform - - uid: 13939 + - uid: 14073 components: - rot: 1.5707963267948966 rad pos: 35.5,-73.5 parent: 2 type: Transform - - uid: 13940 + - uid: 14074 components: - rot: 1.5707963267948966 rad pos: 36.5,-73.5 parent: 2 type: Transform - - uid: 13941 + - uid: 14075 components: - rot: 1.5707963267948966 rad pos: 37.5,-73.5 parent: 2 type: Transform - - uid: 13942 + - uid: 14076 components: - rot: 1.5707963267948966 rad pos: 38.5,-73.5 parent: 2 type: Transform - - uid: 13943 + - uid: 14077 components: - rot: -1.5707963267948966 rad pos: 10.5,2.5 parent: 2 type: Transform - - uid: 13944 + - uid: 14078 components: - pos: -23.5,-81.5 parent: 2 type: Transform - - uid: 13945 + - uid: 14079 components: - rot: 1.5707963267948966 rad pos: -75.5,-41.5 parent: 2 type: Transform - - uid: 13946 + - uid: 14080 components: - rot: 1.5707963267948966 rad pos: -74.5,-41.5 parent: 2 type: Transform - - uid: 13947 + - uid: 14081 components: - rot: 1.5707963267948966 rad pos: -73.5,-41.5 parent: 2 type: Transform - - uid: 13948 + - uid: 14082 components: - rot: 1.5707963267948966 rad pos: -72.5,-41.5 parent: 2 type: Transform - - uid: 13949 + - uid: 14083 components: - rot: 1.5707963267948966 rad pos: -71.5,-41.5 parent: 2 type: Transform - - uid: 13950 + - uid: 14084 components: - rot: 1.5707963267948966 rad pos: -70.5,-41.5 parent: 2 type: Transform - - uid: 13951 + - uid: 14085 components: - rot: 1.5707963267948966 rad pos: -69.5,-41.5 parent: 2 type: Transform - - uid: 13952 + - uid: 14086 components: - rot: 1.5707963267948966 rad pos: -68.5,-41.5 parent: 2 type: Transform - - uid: 13953 + - uid: 14087 components: - rot: 1.5707963267948966 rad pos: -16.5,8.5 parent: 2 type: Transform - - uid: 13954 + - uid: 14088 components: - pos: -43.5,-36.5 parent: 2 type: Transform - - uid: 13955 + - uid: 14089 components: - pos: -43.5,-37.5 parent: 2 type: Transform + - uid: 14090 + components: + - pos: 3.5,-3.5 + parent: 2 + type: Transform + - uid: 14091 + components: + - pos: 3.5,-2.5 + parent: 2 + type: Transform + - uid: 14092 + components: + - pos: 3.5,-4.5 + parent: 2 + type: Transform + - uid: 14093 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 2 + type: Transform - proto: DisposalRouterFlipped entities: - - uid: 13956 + - uid: 14094 components: - rot: -1.5707963267948966 rad pos: 18.5,-25.5 parent: 2 type: Transform - - uid: 13957 + - uid: 14095 components: - rot: 1.5707963267948966 rad pos: -13.5,-53.5 parent: 2 type: Transform - - uid: 13958 + - uid: 14096 components: - pos: -13.5,0.5 parent: 2 type: Transform - - uid: 13959 + - uid: 14097 components: - pos: -19.5,8.5 parent: 2 type: Transform - proto: DisposalTrunk entities: - - uid: 13960 + - uid: 14098 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 2 + type: Transform + - uid: 14099 + components: + - pos: 2.5,-23.5 + parent: 2 + type: Transform + - uid: 14100 components: - rot: 1.5707963267948966 rad pos: -20.5,-57.5 parent: 2 type: Transform - - uid: 13961 + - uid: 14101 components: - pos: 52.5,3.5 parent: 2 type: Transform - - uid: 13962 + - uid: 14102 components: - pos: -9.5,5.5 parent: 2 type: Transform - - uid: 13964 + - uid: 14103 components: - rot: -1.5707963267948966 rad pos: 12.5,-3.5 parent: 2 type: Transform - - uid: 13965 + - uid: 14104 components: - rot: 1.5707963267948966 rad pos: -6.5,-33.5 parent: 2 type: Transform - - uid: 13966 + - uid: 14105 components: - pos: 21.5,20.5 parent: 2 type: Transform - - uid: 13967 + - uid: 14106 components: - rot: 3.141592653589793 rad pos: 6.5,-2.5 parent: 2 type: Transform - - uid: 13968 + - uid: 14107 components: - pos: 22.5,-10.5 parent: 2 type: Transform - - uid: 13970 + - uid: 14108 components: - rot: -1.5707963267948966 rad pos: 37.5,-18.5 parent: 2 type: Transform - - uid: 13971 + - uid: 14109 components: - rot: 3.141592653589793 rad pos: 1.5,-59.5 parent: 2 type: Transform - - uid: 13972 + - uid: 14110 components: - pos: 6.5,5.5 parent: 2 type: Transform - - uid: 13973 + - uid: 14111 components: - rot: -1.5707963267948966 rad pos: -17.5,-73.5 parent: 2 type: Transform - - uid: 13974 + - uid: 14112 components: - pos: 8.5,15.5 parent: 2 type: Transform - - uid: 13975 + - uid: 14113 components: - pos: 18.5,9.5 parent: 2 type: Transform - - uid: 13976 + - uid: 14114 components: - rot: -1.5707963267948966 rad pos: 27.5,-10.5 parent: 2 type: Transform - - uid: 13977 + - uid: 14115 components: - rot: 3.141592653589793 rad pos: -7.5,-2.5 parent: 2 type: Transform - - uid: 13979 + - uid: 14116 components: - rot: -1.5707963267948966 rad pos: -21.5,-84.5 parent: 2 type: Transform - - uid: 13980 + - uid: 14117 components: - rot: 1.5707963267948966 rad pos: -25.5,-75.5 parent: 2 type: Transform - - uid: 13981 + - uid: 14118 components: - rot: -1.5707963267948966 rad pos: 14.5,5.5 parent: 2 type: Transform - - uid: 13982 + - uid: 14119 components: - rot: 1.5707963267948966 rad pos: -2.5,-45.5 parent: 2 type: Transform - - uid: 13983 + - uid: 14120 components: - rot: 3.141592653589793 rad pos: 18.5,-54.5 parent: 2 type: Transform - - uid: 13984 + - uid: 14121 components: - pos: -10.5,-23.5 parent: 2 type: Transform - - uid: 13985 + - uid: 14122 components: - rot: 1.5707963267948966 rad pos: 14.5,19.5 parent: 2 type: Transform - - uid: 13986 + - uid: 14123 components: - pos: 34.5,17.5 parent: 2 type: Transform - - uid: 13987 + - uid: 14124 components: - rot: 3.141592653589793 rad pos: -14.5,-10.5 parent: 2 type: Transform - - uid: 13988 + - uid: 14125 components: - rot: 3.141592653589793 rad pos: 54.5,-14.5 parent: 2 type: Transform - - uid: 13989 + - uid: 14126 components: - rot: -1.5707963267948966 rad pos: 51.5,-47.5 parent: 2 type: Transform - - uid: 13990 + - uid: 14127 components: - pos: 46.5,-35.5 parent: 2 type: Transform - - uid: 13991 + - uid: 14128 components: - rot: 3.141592653589793 rad pos: 67.5,-49.5 parent: 2 type: Transform - - uid: 13992 + - uid: 14129 components: - rot: 1.5707963267948966 rad pos: 48.5,-50.5 parent: 2 type: Transform - - uid: 13993 + - uid: 14130 components: - rot: 1.5707963267948966 rad pos: 48.5,-55.5 parent: 2 type: Transform - - uid: 13994 + - uid: 14131 components: - rot: 3.141592653589793 rad pos: 49.5,-60.5 parent: 2 type: Transform - - uid: 13995 + - uid: 14132 components: - rot: 1.5707963267948966 rad pos: -27.5,6.5 parent: 2 type: Transform - - uid: 13996 + - uid: 14133 components: - rot: 3.141592653589793 rad pos: 29.5,-62.5 parent: 2 type: Transform - - uid: 13997 + - uid: 14134 components: - rot: -1.5707963267948966 rad pos: -22.5,-15.5 parent: 2 type: Transform - - uid: 13998 + - uid: 14135 components: - rot: 3.141592653589793 rad pos: 24.5,-74.5 parent: 2 type: Transform - - uid: 13999 + - uid: 14136 components: - pos: -38.5,-4.5 parent: 2 type: Transform - - uid: 14000 + - uid: 14137 components: - rot: -1.5707963267948966 rad pos: 0.5,-75.5 parent: 2 type: Transform - - uid: 14001 + - uid: 14138 components: - rot: 3.141592653589793 rad pos: -36.5,-80.5 parent: 2 type: Transform - - uid: 14002 + - uid: 14139 components: - pos: -22.5,25.5 parent: 2 type: Transform - - uid: 14003 + - uid: 14140 components: - pos: -42.5,27.5 parent: 2 type: Transform - - uid: 14004 + - uid: 14141 components: - rot: -1.5707963267948966 rad pos: -43.5,5.5 parent: 2 type: Transform - - uid: 14005 + - uid: 14142 components: - rot: 1.5707963267948966 rad pos: 27.5,-86.5 parent: 2 type: Transform - - uid: 14006 + - uid: 14143 components: - pos: 20.5,-23.5 parent: 2 type: Transform - - uid: 14007 + - uid: 14144 components: - rot: 1.5707963267948966 rad pos: -9.5,-66.5 parent: 2 type: Transform - - uid: 14008 + - uid: 14145 components: - rot: 3.141592653589793 rad pos: -3.5,-67.5 parent: 2 type: Transform - - uid: 14009 + - uid: 14146 components: - rot: 3.141592653589793 rad pos: 2.5,-63.5 parent: 2 type: Transform - - uid: 14010 + - uid: 14147 components: - rot: 1.5707963267948966 rad pos: -16.5,-67.5 parent: 2 type: Transform - - uid: 14011 + - uid: 14148 components: - pos: -12.5,8.5 parent: 2 type: Transform - - uid: 14012 + - uid: 14149 components: - pos: 20.5,-39.5 parent: 2 type: Transform - - uid: 14013 + - uid: 14150 components: - rot: 1.5707963267948966 rad pos: -17.5,37.5 parent: 2 type: Transform - - uid: 14014 + - uid: 14151 components: - rot: 3.141592653589793 rad pos: -4.5,43.5 parent: 2 type: Transform - - uid: 14015 + - uid: 14152 components: - rot: 3.141592653589793 rad pos: -13.5,49.5 parent: 2 type: Transform - - uid: 14016 + - uid: 14153 components: - pos: -37.5,-93.5 parent: 2 type: Transform - - uid: 14017 + - uid: 14154 components: - pos: 75.5,-32.5 parent: 2 type: Transform - - uid: 14018 + - uid: 14155 components: - rot: 1.5707963267948966 rad pos: -54.5,-64.5 parent: 2 type: Transform - - uid: 14019 + - uid: 14156 components: - rot: -1.5707963267948966 rad pos: -52.5,-64.5 parent: 2 type: Transform - - uid: 14020 + - uid: 14157 components: - pos: -10.5,-12.5 parent: 2 type: Transform - - uid: 14021 + - uid: 14158 components: - pos: -12.5,-12.5 parent: 2 type: Transform - - uid: 14022 + - uid: 14159 components: - rot: 3.141592653589793 rad pos: -42.5,13.5 parent: 2 type: Transform - - uid: 14023 + - uid: 14160 components: - rot: -1.5707963267948966 rad pos: -40.5,18.5 parent: 2 type: Transform - - uid: 14024 + - uid: 14161 components: - rot: 3.141592653589793 rad pos: 6.5,-45.5 parent: 2 type: Transform - - uid: 14025 + - uid: 14162 components: - rot: 1.5707963267948966 rad pos: -76.5,-41.5 parent: 2 type: Transform - - uid: 14026 + - uid: 14163 components: - rot: -1.5707963267948966 rad pos: -66.5,-42.5 parent: 2 type: Transform - - uid: 14027 + - uid: 14164 components: - pos: -43.5,-35.5 parent: 2 type: Transform - - uid: 14028 + - uid: 14165 components: - rot: -1.5707963267948966 rad pos: -42.5,-38.5 parent: 2 type: Transform - - uid: 21348 + - uid: 14166 components: - rot: -1.5707963267948966 rad pos: 4.5,-3.5 @@ -92408,550 +93264,550 @@ entities: type: Transform - proto: DisposalUnit entities: - - uid: 10122 + - uid: 14167 components: - - pos: 4.5,-3.5 + - pos: 2.5,-23.5 parent: 2 type: Transform - - uid: 14030 + - uid: 14168 + components: + - pos: 5.5,-5.5 + parent: 2 + type: Transform + - uid: 14169 components: - pos: 6.5,-45.5 parent: 2 type: Transform - - uid: 14031 + - uid: 14170 components: - pos: -6.5,-33.5 parent: 2 type: Transform - - uid: 14032 + - uid: 14171 components: - pos: 6.5,5.5 parent: 2 type: Transform - - uid: 14034 + - uid: 14172 components: - pos: 22.5,-10.5 parent: 2 type: Transform - - uid: 14035 + - uid: 14173 components: - pos: 27.5,-10.5 parent: 2 type: Transform - - uid: 14036 + - uid: 14174 components: - pos: 21.5,20.5 parent: 2 type: Transform - - uid: 14037 + - uid: 14175 components: - pos: 37.5,-18.5 parent: 2 type: Transform - - uid: 14038 + - uid: 14176 components: - pos: 1.5,-59.5 parent: 2 type: Transform - - uid: 14039 + - uid: 14177 components: - pos: -2.5,-45.5 parent: 2 type: Transform - - uid: 14040 + - uid: 14178 components: - pos: -10.5,-23.5 parent: 2 type: Transform - - uid: 14041 + - uid: 14179 components: - pos: -20.5,-57.5 parent: 2 type: Transform - - uid: 14042 + - uid: 14180 components: - pos: -17.5,-73.5 parent: 2 type: Transform - - uid: 14043 + - uid: 14181 components: - pos: 12.5,-3.5 parent: 2 type: Transform - - uid: 14044 + - uid: 14182 components: - pos: -7.5,-2.5 parent: 2 type: Transform - - uid: 14045 + - uid: 14183 components: - pos: -9.5,5.5 parent: 2 type: Transform - - uid: 14046 + - uid: 14184 components: - pos: -21.5,-84.5 parent: 2 type: Transform - - uid: 14047 + - uid: 14185 components: - pos: 8.5,15.5 parent: 2 type: Transform - - uid: 14048 + - uid: 14186 components: - pos: 6.5,-2.5 parent: 2 type: Transform - - uid: 14049 + - uid: 14187 components: - pos: 20.5,-23.5 parent: 2 type: Transform - - uid: 14050 + - uid: 14188 components: - pos: -25.5,-75.5 parent: 2 type: Transform - - uid: 14051 + - uid: 14189 components: - pos: 18.5,9.5 parent: 2 type: Transform - - uid: 14052 + - uid: 14190 components: - pos: 14.5,5.5 parent: 2 type: Transform - - uid: 14053 + - uid: 14191 components: - pos: -10.5,-12.5 parent: 2 type: Transform - type: Timer - - uid: 14054 + - uid: 14192 components: - name: cargo type: MetaData - pos: -12.5,-12.5 parent: 2 type: Transform - - uid: 14055 + - uid: 14193 components: - pos: 14.5,19.5 parent: 2 type: Transform - - uid: 14056 + - uid: 14194 components: - pos: 34.5,17.5 parent: 2 type: Transform - - uid: 14057 + - uid: 14195 components: - pos: 52.5,3.5 parent: 2 type: Transform - - uid: 14058 + - uid: 14196 components: - pos: 54.5,-14.5 parent: 2 type: Transform - - uid: 14059 + - uid: 14197 components: - pos: 46.5,-35.5 parent: 2 type: Transform - - uid: 14060 + - uid: 14198 components: - pos: 51.5,-47.5 parent: 2 type: Transform - - uid: 14061 + - uid: 14199 components: - pos: 67.5,-49.5 parent: 2 type: Transform - - uid: 14062 + - uid: 14200 components: - pos: 49.5,-60.5 parent: 2 type: Transform - - uid: 14063 + - uid: 14201 components: - pos: 48.5,-55.5 parent: 2 type: Transform - - uid: 14064 + - uid: 14202 components: - pos: 48.5,-50.5 parent: 2 type: Transform - - uid: 14065 + - uid: 14203 components: - pos: -22.5,-15.5 parent: 2 type: Transform - - uid: 14066 + - uid: 14204 components: - pos: 29.5,-62.5 parent: 2 type: Transform - - uid: 14067 + - uid: 14205 components: - pos: 24.5,-74.5 parent: 2 type: Transform - - uid: 14068 + - uid: 14206 components: - pos: 27.5,-86.5 parent: 2 type: Transform - - uid: 14069 + - uid: 14207 components: - pos: -27.5,6.5 parent: 2 type: Transform - - uid: 14070 + - uid: 14208 components: - pos: -38.5,-4.5 parent: 2 type: Transform - - uid: 14071 + - uid: 14209 components: - name: suspicious disposal unit type: MetaData - pos: 0.5,-75.5 parent: 2 type: Transform - - uid: 14072 + - uid: 14210 components: - pos: -22.5,25.5 parent: 2 type: Transform - - uid: 14073 + - uid: 14211 components: - pos: -42.5,27.5 parent: 2 type: Transform - - uid: 14074 + - uid: 14212 components: - pos: -43.5,5.5 parent: 2 type: Transform - - uid: 14076 + - uid: 14213 components: - pos: -9.5,-66.5 parent: 2 type: Transform - - uid: 14077 + - uid: 14214 components: - pos: -16.5,-67.5 parent: 2 type: Transform - - uid: 14078 + - uid: 14215 components: - pos: -3.5,-67.5 parent: 2 type: Transform - - uid: 14079 + - uid: 14216 components: - pos: 2.5,-63.5 parent: 2 type: Transform - - uid: 14080 + - uid: 14217 components: - pos: -12.5,8.5 parent: 2 type: Transform - - uid: 14081 + - uid: 14218 components: - pos: 20.5,-39.5 parent: 2 type: Transform - - uid: 14082 + - uid: 14219 components: - pos: -17.5,37.5 parent: 2 type: Transform - - uid: 14083 + - uid: 14220 components: - pos: -4.5,43.5 parent: 2 type: Transform - - uid: 14084 + - uid: 14221 components: - pos: -13.5,49.5 parent: 2 type: Transform - - uid: 14085 + - uid: 14222 components: - pos: -40.5,18.5 parent: 2 type: Transform - - uid: 14086 + - uid: 14223 components: - pos: 75.5,-32.5 parent: 2 type: Transform - - uid: 14087 + - uid: 14224 components: - pos: -54.5,-64.5 parent: 2 type: Transform - - uid: 14088 + - uid: 14225 components: - pos: -52.5,-64.5 parent: 2 type: Transform - - uid: 14089 + - uid: 14226 components: - pos: -36.5,-80.5 parent: 2 type: Transform - - uid: 14090 + - uid: 14227 components: - pos: -66.5,-42.5 parent: 2 type: Transform - - uid: 14091 + - uid: 14228 components: - pos: -42.5,-38.5 parent: 2 type: Transform - proto: DisposalYJunction entities: - - uid: 14092 + - uid: 14229 components: - pos: 25.5,17.5 parent: 2 type: Transform - - uid: 14093 + - uid: 14230 components: - rot: 3.141592653589793 rad pos: -3.5,-27.5 parent: 2 type: Transform - - uid: 14094 + - uid: 14231 components: - rot: 3.141592653589793 rad pos: 16.5,-43.5 parent: 2 type: Transform - - uid: 14095 + - uid: 14232 components: - rot: -1.5707963267948966 rad pos: -4.5,-9.5 parent: 2 type: Transform - - uid: 14096 + - uid: 14233 components: - pos: -4.5,0.5 parent: 2 type: Transform - - uid: 14097 + - uid: 14234 components: - rot: -1.5707963267948966 rad pos: 16.5,-27.5 parent: 2 type: Transform - - uid: 14098 + - uid: 14235 components: - rot: 3.141592653589793 rad pos: -0.5,-53.5 parent: 2 type: Transform - - uid: 14099 + - uid: 14236 components: - rot: 3.141592653589793 rad pos: -4.5,-43.5 parent: 2 type: Transform - - uid: 14100 + - uid: 14237 components: - rot: 3.141592653589793 rad pos: -19.5,-73.5 parent: 2 type: Transform - - uid: 14101 + - uid: 14238 components: - rot: -1.5707963267948966 rad pos: 52.5,1.5 parent: 2 type: Transform - - uid: 14102 + - uid: 14239 components: - rot: 1.5707963267948966 rad pos: -19.5,-27.5 parent: 2 type: Transform - - uid: 14103 + - uid: 14240 components: - pos: -19.5,-6.5 parent: 2 type: Transform - - uid: 14104 + - uid: 14241 components: - pos: -25.5,6.5 parent: 2 type: Transform - - uid: 14105 + - uid: 14242 components: - rot: 3.141592653589793 rad pos: -5.5,-61.5 parent: 2 type: Transform - - uid: 14106 + - uid: 14243 components: - pos: -15.5,44.5 parent: 2 type: Transform - proto: DogBed entities: - - uid: 1882 + - uid: 14244 components: - - pos: -1.5,-5.5 + - pos: 3.5,-7.5 parent: 2 type: Transform - - uid: 14107 + - uid: 14245 components: - pos: 62.5,51.5 parent: 2 type: Transform - - uid: 14109 + - uid: 14246 components: - name: fox bed type: MetaData - pos: 32.5,-28.5 parent: 2 type: Transform - - uid: 14110 + - uid: 14247 components: - name: racoon bed type: MetaData - pos: -33.5,31.5 parent: 2 type: Transform - - uid: 14111 + - uid: 14248 components: - pos: 26.5,23.5 parent: 2 type: Transform - proto: DonkpocketBoxSpawner entities: - - uid: 14112 + - uid: 14249 components: - pos: -9.5,41.5 parent: 2 type: Transform - - uid: 14113 + - uid: 14250 components: - pos: -10.5,41.5 parent: 2 type: Transform - proto: DoorElectronics entities: - - uid: 14114 + - uid: 14251 components: - pos: -9.437697,39.446274 parent: 2 type: Transform - - uid: 14115 + - uid: 14252 components: - pos: -9.640822,39.74315 parent: 2 type: Transform - - uid: 14116 + - uid: 14253 components: - pos: -43.560223,-27.412916 parent: 2 type: Transform - proto: DoubleEmergencyOxygenTankFilled entities: - - uid: 14117 + - uid: 14254 components: - pos: -36.45104,-33.42174 parent: 2 type: Transform - proto: Dresser entities: - - uid: 14118 + - uid: 14255 components: - pos: 22.5,14.5 parent: 2 type: Transform - - uid: 14119 + - uid: 14256 components: - pos: 32.5,-27.5 parent: 2 type: Transform - - uid: 14120 + - uid: 14257 components: - pos: -26.5,46.5 parent: 2 type: Transform - - uid: 14121 + - uid: 14258 components: - pos: 7.5,22.5 parent: 2 type: Transform - - uid: 14123 + - uid: 14259 components: - pos: -42.5,11.5 parent: 2 type: Transform - - uid: 14124 + - uid: 14260 components: - pos: -51.5,15.5 parent: 2 type: Transform - - uid: 14125 + - uid: 14261 components: - pos: -52.5,6.5 parent: 2 type: Transform - - uid: 14126 + - uid: 14262 components: - pos: -31.5,12.5 parent: 2 type: Transform - - uid: 14127 + - uid: 14263 components: - pos: -24.5,31.5 parent: 2 type: Transform - - uid: 14128 + - uid: 14264 components: - pos: 54.5,32.5 parent: 2 type: Transform - - uid: 14129 + - uid: 14265 components: - pos: -19.5,35.5 parent: 2 type: Transform - - uid: 14130 + - uid: 14266 components: - pos: -10.5,32.5 parent: 2 type: Transform - - uid: 14131 + - uid: 14267 components: - pos: -20.5,39.5 parent: 2 type: Transform - - uid: 14153 - components: - - pos: 4.5,-7.5 - parent: 2 - type: Transform - - uid: 15056 + - uid: 14268 components: - pos: -37.5,-20.5 parent: 2 type: Transform - proto: Drill entities: - - uid: 14132 + - uid: 14269 components: - rot: -1.5707963267948966 rad pos: -7.0942874,-100.40229 @@ -92959,378 +93815,370 @@ entities: type: Transform - proto: DrinkAntifreeze entities: - - uid: 14133 + - uid: 14270 components: - pos: -25.524792,55.598667 parent: 2 type: Transform - proto: DrinkBeerBottleFull entities: - - uid: 14134 + - uid: 14271 components: - pos: 16.20447,-64.18169 parent: 2 type: Transform - - uid: 14135 + - uid: 14272 components: - pos: 16.48572,-64.21294 parent: 2 type: Transform - - uid: 14136 + - uid: 14273 components: - pos: -56.96358,-25.301325 parent: 2 type: Transform - proto: DrinkBlackRussianGlass entities: - - uid: 14137 + - uid: 14274 components: - pos: 65.5063,-0.9249393 parent: 2 type: Transform - proto: DrinkBloodyMaryGlass entities: - - uid: 14138 + - uid: 14275 components: - pos: 61.61879,-53.35289 parent: 2 type: Transform - proto: DrinkBottleOfNothingFull entities: - - uid: 14139 + - uid: 14276 components: - pos: -28.300186,46.612503 parent: 2 type: Transform - proto: DrinkBottleWhiskey entities: - - uid: 14140 + - uid: 14277 components: - pos: -10.628431,-32.17821 parent: 2 type: Transform - proto: DrinkBottleWine entities: - - uid: 14141 + - uid: 14278 components: - pos: -37.38547,16.742819 parent: 2 type: Transform - proto: DrinkCarrotJuice entities: - - uid: 14142 + - uid: 14279 components: - pos: -20.541529,49.622677 parent: 2 type: Transform - proto: DrinkDetFlask entities: - - uid: 14143 + - uid: 14280 components: - pos: 20.044777,-12.206265 parent: 2 type: Transform - proto: DrinkDoctorsDelightGlass entities: - - uid: 14144 + - uid: 14281 components: - pos: -18.294592,-56.251144 parent: 2 type: Transform -- proto: DrinkFlask - entities: - - uid: 15187 - components: - - rot: -1.5707963267948966 rad - pos: 29.562637,-39.131184 - parent: 2 - type: Transform - proto: DrinkGlass entities: - - uid: 14147 + - uid: 14282 components: - pos: 37.335964,-5.423753 parent: 2 type: Transform - - uid: 14148 + - uid: 14283 components: - pos: 42.510113,-48.4107 parent: 2 type: Transform - - uid: 14149 + - uid: 14284 components: - pos: 42.510113,-48.4107 parent: 2 type: Transform - - uid: 14151 + - uid: 14285 components: - pos: -29.533712,-69.34898 parent: 2 type: Transform - proto: DrinkGoldenCup entities: - - uid: 14158 + - uid: 14286 components: - pos: 48.422813,-25.09548 parent: 2 type: Transform - proto: DrinkGoldschlagerBottleFull entities: - - uid: 14159 + - uid: 14287 components: - pos: 47.41234,-30.196692 parent: 2 type: Transform - proto: DrinkGrapeJuice entities: - - uid: 14160 + - uid: 14288 components: - pos: -21.385279,49.66955 parent: 2 type: Transform - proto: DrinkGrogGlass entities: - - uid: 14161 + - uid: 14289 components: - pos: -42.795,-78.417305 parent: 2 type: Transform - - uid: 14162 + - uid: 14290 components: - pos: -40.300255,-77.37566 parent: 2 type: Transform - - uid: 14163 + - uid: 14291 components: - pos: -41.117695,-78.40168 parent: 2 type: Transform - proto: DrinkHippiesDelightGlass entities: - - uid: 14164 + - uid: 14292 components: - pos: -22.44165,-100.292145 parent: 2 type: Transform - proto: DrinkHotCoffee entities: - - uid: 14165 + - uid: 14293 components: - pos: -26.93719,14.6217785 parent: 2 type: Transform - proto: DrinkIrishCoffeeGlass entities: - - uid: 14167 + - uid: 14294 components: - pos: 31.04821,-61.292328 parent: 2 type: Transform - proto: DrinkLongIslandIcedTeaGlass entities: - - uid: 14168 + - uid: 14295 components: - pos: 23.326912,-28.451742 parent: 2 type: Transform - proto: DrinkMilkCarton entities: - - uid: 14169 + - uid: 14296 components: - pos: 4.089875,7.6089945 parent: 2 type: Transform - - uid: 14170 + - uid: 14297 components: - pos: 4.246125,7.3902445 parent: 2 type: Transform - proto: DrinkMugBlack entities: - - uid: 14171 + - uid: 14298 components: - pos: 53.58285,-67.465065 parent: 2 type: Transform - proto: DrinkMugOne entities: - - uid: 14172 + - uid: 14299 components: - pos: 47.469124,50.58469 parent: 2 type: Transform - - uid: 14173 + - uid: 14300 components: - pos: -31.248182,29.795187 parent: 2 type: Transform - proto: DrinkShaker entities: - - uid: 14174 + - uid: 14301 components: - pos: 18.551043,13.384511 parent: 2 type: Transform - - uid: 14175 + - uid: 14302 components: - pos: 18.316668,13.478261 parent: 2 type: Transform - - uid: 14176 + - uid: 14303 components: - pos: 18.582293,13.603261 parent: 2 type: Transform - proto: DrinkSpaceMountainWindGlass entities: - - uid: 14177 + - uid: 14304 components: - pos: 38.7514,49.607887 parent: 2 type: Transform - proto: DrinkSpaceUpGlass entities: - - uid: 14178 + - uid: 14305 components: - pos: 38.377674,49.717262 parent: 2 type: Transform - proto: DrinkToxinsSpecialGlass entities: - - uid: 14179 + - uid: 14306 components: - pos: -9.4857435,-36.467285 parent: 2 type: Transform - proto: DrinkVodkaTonicGlass entities: - - uid: 14180 + - uid: 14307 components: - pos: 43.581966,-2.7850537 parent: 2 type: Transform - proto: DrinkWaterBottleFull entities: - - uid: 14181 + - uid: 14308 components: - pos: -14.530239,-37.26908 parent: 2 type: Transform - proto: DrinkWaterCup entities: - - uid: 14182 + - uid: 14309 components: - pos: -9.380106,-35.52635 parent: 2 type: Transform - - uid: 14183 + - uid: 14310 components: - pos: -9.380106,-35.52635 parent: 2 type: Transform - - uid: 14184 + - uid: 14311 components: - pos: -9.380106,-35.52635 parent: 2 type: Transform - - uid: 14185 + - uid: 14312 components: - pos: -9.380106,-35.52635 parent: 2 type: Transform - - uid: 14186 + - uid: 14313 components: - pos: -9.380106,-35.52635 parent: 2 type: Transform - - uid: 14187 + - uid: 14314 components: - pos: -9.380106,-35.52635 parent: 2 type: Transform - proto: DrinkWhiskeyBottleFull entities: - - uid: 14188 + - uid: 14315 components: - pos: -14.464556,-39.286304 parent: 2 type: Transform - proto: DrinkWhiskeyGlass entities: - - uid: 14189 + - uid: 14316 components: - pos: -29.929981,15.531138 parent: 2 type: Transform - - uid: 14190 + - uid: 14317 components: - pos: 15.324228,-79.460625 parent: 2 type: Transform - proto: DrinkWhiskeySodaGlass entities: - - uid: 14191 + - uid: 14318 components: - pos: 7.0699005,20.752857 parent: 2 type: Transform - proto: Dropper entities: - - uid: 14192 + - uid: 14319 components: - pos: 7.590159,-45.315723 parent: 2 type: Transform - - uid: 14193 + - uid: 14320 components: - pos: 7.480784,-45.628223 parent: 2 type: Transform - - uid: 14194 + - uid: 14321 components: - pos: 7.449534,-45.440723 parent: 2 type: Transform - proto: EggplantSeeds entities: - - uid: 14195 + - uid: 14322 components: - pos: 11.993146,54.637722 parent: 2 type: Transform - - uid: 14196 + - uid: 14323 components: - pos: 11.993146,54.637722 parent: 2 type: Transform - - uid: 14197 + - uid: 14324 components: - pos: 11.993146,54.637722 parent: 2 type: Transform - - uid: 14198 + - uid: 14325 components: - pos: 11.993146,54.637722 parent: 2 type: Transform - - uid: 14199 + - uid: 14326 components: - pos: 11.993146,54.637722 parent: 2 type: Transform - - uid: 14200 + - uid: 14327 components: - pos: 11.993146,54.637722 parent: 2 type: Transform - proto: EmergencyLight entities: - - uid: 14201 + - uid: 14328 components: - pos: -70.5,-37.5 parent: 2 type: Transform - - uid: 14202 + - uid: 14329 components: - rot: -1.5707963267948966 rad pos: -44.5,7.5 @@ -93341,7 +94189,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14203 + - uid: 14330 components: - rot: 3.141592653589793 rad pos: 22.5,-25.5 @@ -93352,7 +94200,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14204 + - uid: 14331 components: - rot: 3.141592653589793 rad pos: 29.5,-25.5 @@ -93363,7 +94211,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14205 + - uid: 14332 components: - pos: 30.5,-41.5 parent: 2 @@ -93373,7 +94221,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14206 + - uid: 14333 components: - pos: -12.5,-52.5 parent: 2 @@ -93383,7 +94231,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14207 + - uid: 14334 components: - rot: 1.5707963267948966 rad pos: -25.5,-76.5 @@ -93394,7 +94242,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14208 + - uid: 14335 components: - rot: -1.5707963267948966 rad pos: 26.5,-50.5 @@ -93405,7 +94253,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14209 + - uid: 14336 components: - pos: 29.5,-4.5 parent: 2 @@ -93415,7 +94263,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14210 + - uid: 14337 components: - rot: 1.5707963267948966 rad pos: 40.5,6.5 @@ -93426,7 +94274,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14211 + - uid: 14338 components: - pos: 54.5,-5.5 parent: 2 @@ -93436,7 +94284,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14212 + - uid: 14339 components: - rot: 3.141592653589793 rad pos: -23.5,-62.5 @@ -93447,7 +94295,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14213 + - uid: 14340 components: - rot: 1.5707963267948966 rad pos: -13.5,52.5 @@ -93458,7 +94306,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14214 + - uid: 14341 components: - pos: -5.5,59.5 parent: 2 @@ -93468,7 +94316,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14215 + - uid: 14342 components: - pos: -10.5,-59.5 parent: 2 @@ -93478,7 +94326,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14216 + - uid: 14343 components: - pos: -61.5,-23.5 parent: 2 @@ -93488,7 +94336,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14217 + - uid: 14344 components: - rot: -1.5707963267948966 rad pos: -52.5,-15.5 @@ -93499,7 +94347,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14218 + - uid: 14345 components: - pos: 15.5,-52.5 parent: 2 @@ -93509,7 +94357,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14219 + - uid: 14346 components: - rot: 1.5707963267948966 rad pos: 17.5,-4.5 @@ -93520,7 +94368,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14220 + - uid: 14347 components: - rot: -1.5707963267948966 rad pos: -18.5,28.5 @@ -93531,7 +94379,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14221 + - uid: 14348 components: - rot: 1.5707963267948966 rad pos: -16.5,36.5 @@ -93542,7 +94390,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14222 + - uid: 14349 components: - rot: -1.5707963267948966 rad pos: 65.5,-12.5 @@ -93553,7 +94401,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14223 + - uid: 14350 components: - pos: -2.5,46.5 parent: 2 @@ -93563,7 +94411,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14224 + - uid: 14351 components: - rot: 1.5707963267948966 rad pos: -22.5,54.5 @@ -93574,7 +94422,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14225 + - uid: 14352 components: - pos: -5.5,3.5 parent: 2 @@ -93584,7 +94432,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14226 + - uid: 14353 components: - pos: 8.5,3.5 parent: 2 @@ -93594,7 +94442,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14227 + - uid: 14354 components: - rot: 1.5707963267948966 rad pos: -0.5,8.5 @@ -93605,7 +94453,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14228 + - uid: 14355 components: - pos: 14.5,14.5 parent: 2 @@ -93615,7 +94463,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14229 + - uid: 14356 components: - pos: -20.5,-4.5 parent: 2 @@ -93625,7 +94473,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14230 + - uid: 14357 components: - pos: -16.5,4.5 parent: 2 @@ -93635,7 +94483,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14231 + - uid: 14358 components: - rot: -1.5707963267948966 rad pos: -18.5,-12.5 @@ -93646,7 +94494,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14232 + - uid: 14359 components: - pos: 30.5,8.5 parent: 2 @@ -93656,7 +94504,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14233 + - uid: 14360 components: - pos: 23.5,18.5 parent: 2 @@ -93666,7 +94514,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14234 + - uid: 14361 components: - pos: 10.5,-41.5 parent: 2 @@ -93676,7 +94524,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14235 + - uid: 14362 components: - pos: 38.5,-41.5 parent: 2 @@ -93686,7 +94534,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14236 + - uid: 14363 components: - pos: -14.5,-41.5 parent: 2 @@ -93696,7 +94544,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14237 + - uid: 14364 components: - rot: -1.5707963267948966 rad pos: -34.5,-42.5 @@ -93707,7 +94555,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14238 + - uid: 14365 components: - rot: 1.5707963267948966 rad pos: -35.5,-52.5 @@ -93718,7 +94566,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14239 + - uid: 14366 components: - rot: -1.5707963267948966 rad pos: -23.5,-16.5 @@ -93729,7 +94577,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14240 + - uid: 14367 components: - pos: -12.5,-25.5 parent: 2 @@ -93739,7 +94587,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14241 + - uid: 14368 components: - rot: -1.5707963267948966 rad pos: -31.5,-14.5 @@ -93750,7 +94598,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14242 + - uid: 14369 components: - rot: 3.141592653589793 rad pos: -45.5,-6.5 @@ -93761,7 +94609,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14243 + - uid: 14370 components: - pos: -17.5,-69.5 parent: 2 @@ -93771,7 +94619,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14244 + - uid: 14371 components: - rot: 3.141592653589793 rad pos: 30.5,-18.5 @@ -93782,7 +94630,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14245 + - uid: 14372 components: - rot: 3.141592653589793 rad pos: 20.5,-18.5 @@ -93793,7 +94641,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14246 + - uid: 14373 components: - rot: -1.5707963267948966 rad pos: 18.5,4.5 @@ -93804,7 +94652,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14247 + - uid: 14374 components: - pos: 37.5,-25.5 parent: 2 @@ -93814,7 +94662,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14248 + - uid: 14375 components: - rot: -1.5707963267948966 rad pos: 42.5,-26.5 @@ -93825,7 +94673,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14249 + - uid: 14376 components: - rot: 3.141592653589793 rad pos: 40.5,0.5 @@ -93836,7 +94684,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14250 + - uid: 14377 components: - rot: -1.5707963267948966 rad pos: 54.5,1.5 @@ -93847,7 +94695,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14251 + - uid: 14378 components: - rot: -1.5707963267948966 rad pos: 65.5,-35.5 @@ -93858,7 +94706,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14252 + - uid: 14379 components: - pos: 60.5,-51.5 parent: 2 @@ -93868,7 +94716,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14253 + - uid: 14380 components: - pos: 53.5,-51.5 parent: 2 @@ -93878,7 +94726,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14254 + - uid: 14381 components: - rot: -1.5707963267948966 rad pos: 46.5,-47.5 @@ -93889,7 +94737,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14255 + - uid: 14382 components: - rot: -1.5707963267948966 rad pos: 46.5,-38.5 @@ -93900,7 +94748,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14257 + - uid: 14383 components: - rot: -1.5707963267948966 rad pos: 16.5,-27.5 @@ -93911,7 +94759,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14258 + - uid: 14384 components: - rot: 1.5707963267948966 rad pos: 34.5,-27.5 @@ -93922,7 +94770,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14259 + - uid: 14385 components: - pos: 4.5,-25.5 parent: 2 @@ -93932,7 +94780,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14260 + - uid: 14386 components: - pos: -2.5,-25.5 parent: 2 @@ -93942,7 +94790,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14261 + - uid: 14387 components: - pos: 5.5,-41.5 parent: 2 @@ -93952,7 +94800,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14262 + - uid: 14388 components: - rot: -1.5707963267948966 rad pos: -18.5,-35.5 @@ -93963,7 +94811,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14263 + - uid: 14389 components: - rot: 3.141592653589793 rad pos: -30.5,-35.5 @@ -93974,7 +94822,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14264 + - uid: 14390 components: - rot: 1.5707963267948966 rad pos: -55.5,-10.5 @@ -93985,7 +94833,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14265 + - uid: 14391 components: - rot: -1.5707963267948966 rad pos: -64.5,-26.5 @@ -93996,7 +94844,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14266 + - uid: 14392 components: - pos: -71.5,-23.5 parent: 2 @@ -94006,7 +94854,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14267 + - uid: 14393 components: - rot: 3.141592653589793 rad pos: -35.5,-0.5 @@ -94017,7 +94865,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14268 + - uid: 14394 components: - rot: -1.5707963267948966 rad pos: 30.5,23.5 @@ -94028,7 +94876,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14269 + - uid: 14395 components: - rot: 3.141592653589793 rad pos: 30.5,14.5 @@ -94039,7 +94887,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14270 + - uid: 14396 components: - rot: 1.5707963267948966 rad pos: 20.5,20.5 @@ -94050,7 +94898,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14271 + - uid: 14397 components: - rot: -1.5707963267948966 rad pos: -2.5,8.5 @@ -94061,7 +94909,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14272 + - uid: 14398 components: - rot: 3.141592653589793 rad pos: -27.5,-14.5 @@ -94072,7 +94920,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14273 + - uid: 14399 components: - rot: 3.141592653589793 rad pos: -34.5,-13.5 @@ -94083,7 +94931,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14274 + - uid: 14400 components: - rot: 1.5707963267948966 rad pos: 4.5,20.5 @@ -94094,7 +94942,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14275 + - uid: 14401 components: - pos: 45.5,-71.5 parent: 2 @@ -94104,7 +94952,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14276 + - uid: 14402 components: - rot: -1.5707963267948966 rad pos: 40.5,-61.5 @@ -94115,7 +94963,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14277 + - uid: 14403 components: - pos: 27.5,-58.5 parent: 2 @@ -94125,7 +94973,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14278 + - uid: 14404 components: - rot: 1.5707963267948966 rad pos: -25.5,20.5 @@ -94136,7 +94984,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14279 + - uid: 14405 components: - rot: -1.5707963267948966 rad pos: -36.5,20.5 @@ -94147,7 +94995,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14280 + - uid: 14406 components: - rot: 3.141592653589793 rad pos: -44.5,28.5 @@ -94158,7 +95006,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14281 + - uid: 14407 components: - rot: 1.5707963267948966 rad pos: -38.5,30.5 @@ -94169,7 +95017,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14282 + - uid: 14408 components: - rot: 3.141592653589793 rad pos: -34.5,28.5 @@ -94180,7 +95028,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14283 + - uid: 14409 components: - pos: -17.5,7.5 parent: 2 @@ -94190,7 +95038,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14284 + - uid: 14410 components: - rot: -1.5707963267948966 rad pos: -3.5,-30.5 @@ -94201,7 +95049,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14285 + - uid: 14411 components: - rot: 1.5707963267948966 rad pos: 70.5,-35.5 @@ -94212,7 +95060,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14286 + - uid: 14412 components: - rot: 3.141592653589793 rad pos: 74.5,-49.5 @@ -94223,7 +95071,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14287 + - uid: 14413 components: - pos: 60.5,-43.5 parent: 2 @@ -94233,7 +95081,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14288 + - uid: 14414 components: - pos: 6.5,-29.5 parent: 2 @@ -94243,7 +95091,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14289 + - uid: 14415 components: - pos: 30.5,-71.5 parent: 2 @@ -94253,7 +95101,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14290 + - uid: 14416 components: - rot: 3.141592653589793 rad pos: 18.5,-86.5 @@ -94264,7 +95112,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14291 + - uid: 14417 components: - rot: -1.5707963267948966 rad pos: 31.5,-83.5 @@ -94275,7 +95123,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14292 + - uid: 14418 components: - rot: -1.5707963267948966 rad pos: 49.5,-84.5 @@ -94286,7 +95134,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14293 + - uid: 14419 components: - rot: -1.5707963267948966 rad pos: 26.5,23.5 @@ -94297,91 +95145,96 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14294 + - uid: 14420 components: - pos: -59.5,-36.5 parent: 2 type: Transform + - uid: 14421 + components: + - pos: 25.5,-34.5 + parent: 2 + type: Transform - proto: EmergencyOxygenTankFilled entities: - - uid: 14295 + - uid: 14422 components: - pos: -2.5493312,-73.46234 parent: 2 type: Transform - proto: EmergencyRollerBed entities: - - uid: 14296 + - uid: 14423 components: - pos: -20.356709,-75.42545 parent: 2 type: Transform - proto: Emitter entities: - - uid: 14297 + - uid: 14424 components: - pos: -55.5,-8.5 parent: 2 type: Transform - - uid: 14298 + - uid: 14425 components: - pos: -62.5,-6.5 parent: 2 type: Transform - - uid: 14299 + - uid: 14426 components: - rot: -1.5707963267948966 rad pos: -59.5,-9.5 parent: 2 type: Transform - - uid: 14300 + - uid: 14427 components: - rot: 1.5707963267948966 rad pos: -73.5,-9.5 parent: 2 type: Transform - - uid: 14301 + - uid: 14428 components: - pos: -70.5,-6.5 parent: 2 type: Transform - - uid: 14302 + - uid: 14429 components: - rot: 1.5707963267948966 rad pos: -73.5,-17.5 parent: 2 type: Transform - - uid: 14303 + - uid: 14430 components: - rot: 3.141592653589793 rad pos: -70.5,-20.5 parent: 2 type: Transform - - uid: 14304 + - uid: 14431 components: - rot: 3.141592653589793 rad pos: -62.5,-20.5 parent: 2 type: Transform - - uid: 14305 + - uid: 14432 components: - rot: -1.5707963267948966 rad pos: -59.5,-17.5 parent: 2 type: Transform - - uid: 14306 + - uid: 14433 components: - rot: 3.141592653589793 rad pos: -61.5,-30.5 parent: 2 type: Transform - - uid: 14307 + - uid: 14434 components: - rot: 1.5707963267948966 rad pos: -55.5,-7.5 parent: 2 type: Transform - - uid: 14308 + - uid: 14435 components: - rot: 3.141592653589793 rad pos: -60.5,-30.5 @@ -94389,104 +95242,104 @@ entities: type: Transform - proto: EncryptionKeyCargo entities: - - uid: 14311 + - uid: 14437 components: - flags: InContainer type: MetaData - - parent: 14310 + - parent: 14436 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyCommand entities: - - uid: 14313 + - uid: 14439 components: - flags: InContainer type: MetaData - - parent: 14312 + - parent: 14438 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyCommon entities: - - uid: 14315 + - uid: 14441 components: - flags: InContainer type: MetaData - - parent: 14314 + - parent: 14440 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyEngineering entities: - - uid: 14317 + - uid: 14443 components: - flags: InContainer type: MetaData - - parent: 14316 + - parent: 14442 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyMedical entities: - - uid: 14319 + - uid: 14445 components: - flags: InContainer type: MetaData - - parent: 14318 + - parent: 14444 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyRobo entities: - - uid: 14321 + - uid: 14447 components: - flags: InContainer type: MetaData - - parent: 14320 + - parent: 14446 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyScience entities: - - uid: 14322 + - uid: 14448 components: - flags: InContainer type: MetaData - - parent: 14320 + - parent: 14446 type: Transform - canCollide: False type: Physics - proto: EncryptionKeySecurity entities: - - uid: 14324 + - uid: 14450 components: - flags: InContainer type: MetaData - - parent: 14323 + - parent: 14449 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyService entities: - - uid: 14326 + - uid: 14452 components: - flags: InContainer type: MetaData - - parent: 14325 + - parent: 14451 type: Transform - canCollide: False type: Physics - proto: ExosuitFabricator entities: - - uid: 14327 + - uid: 14453 components: - pos: 69.5,-43.5 parent: 2 type: Transform - proto: ExplosivesSignMed entities: - - uid: 14328 + - uid: 14454 components: - rot: 1.5707963267948966 rad pos: 67.5,-32.5 @@ -94494,340 +95347,347 @@ entities: type: Transform - proto: ExtendedEmergencyOxygenTankFilled entities: - - uid: 14329 + - uid: 14455 components: - pos: -70.53087,-25.890057 parent: 2 type: Transform - - uid: 14330 + - uid: 14456 components: - pos: -40.389053,32.87297 parent: 2 type: Transform - - uid: 14331 + - uid: 14457 components: - pos: 3.7780228,-75.4205 parent: 2 type: Transform - proto: ExtinguisherCabinetFilled entities: - - uid: 14332 + - uid: 14458 components: - pos: -20.5,64.5 parent: 2 type: Transform - - uid: 14333 + - uid: 14459 components: - pos: -1.5,47.5 parent: 2 type: Transform - - uid: 14334 + - uid: 14460 components: - pos: -20.5,53.5 parent: 2 type: Transform - - uid: 14335 + - uid: 14461 components: - pos: -13.5,32.5 parent: 2 type: Transform - - uid: 14336 + - uid: 14462 components: - pos: -1.5,8.5 parent: 2 type: Transform - - uid: 14337 + - uid: 14463 components: - pos: -33.5,-39.5 parent: 2 type: Transform - - uid: 14338 + - uid: 14464 components: - pos: -15.5,-2.5 parent: 2 type: Transform - - uid: 14339 + - uid: 14465 components: - pos: -17.5,-17.5 parent: 2 type: Transform - - uid: 14340 + - uid: 14466 components: - pos: -21.5,-30.5 parent: 2 type: Transform - - uid: 14341 + - uid: 14467 components: - pos: -2.5,-29.5 parent: 2 type: Transform - - uid: 14342 + - uid: 14468 components: - pos: 52.5,-46.5 parent: 2 type: Transform - - uid: 14343 + - uid: 14469 components: - pos: -10.5,-47.5 parent: 2 type: Transform - - uid: 14344 + - uid: 14470 components: - pos: 19.5,18.5 parent: 2 type: Transform - - uid: 14345 + - uid: 14471 components: - pos: 3.5,13.5 parent: 2 type: Transform - - uid: 14346 + - uid: 14472 components: - pos: -6.5,-17.5 parent: 2 type: Transform - - uid: 14347 + - uid: 14473 components: - pos: 23.5,-51.5 parent: 2 type: Transform - - uid: 14348 + - uid: 14474 components: - pos: 77.5,-48.5 parent: 2 type: Transform - - uid: 14349 + - uid: 14475 components: - pos: 76.5,-38.5 parent: 2 type: Transform - proto: FaxMachineBase entities: - - uid: 14350 + - uid: 14476 components: - pos: -28.5,-9.5 parent: 2 type: Transform - name: engineering fax type: FaxMachine - - uid: 14351 + - uid: 14477 components: - pos: -34.5,23.5 parent: 2 type: Transform - name: cargo fax type: FaxMachine - - uid: 14352 + - uid: 14478 components: - pos: 40.5,-39.5 parent: 2 type: Transform - name: science fax type: FaxMachine - - uid: 14353 + - uid: 14479 components: - pos: -16.5,-61.5 parent: 2 type: Transform - name: medbay fax type: FaxMachine - - uid: 14354 + - uid: 14480 components: - pos: -25.5,-35.5 parent: 2 type: Transform - name: atmos fax type: FaxMachine - - uid: 14356 + - uid: 14481 components: - pos: 18.5,-14.5 parent: 2 type: Transform - name: detective fax type: FaxMachine - - uid: 14357 + - uid: 14482 components: - pos: 22.5,23.5 parent: 2 type: Transform - name: security fax type: FaxMachine - - uid: 14358 + - uid: 14483 components: - pos: 12.5,-5.5 parent: 2 type: Transform - name: library fax type: FaxMachine - - uid: 14359 + - uid: 14484 components: - pos: -22.5,-98.5 parent: 2 type: Transform - name: maint fax type: FaxMachine - - uid: 14360 + - uid: 14485 components: - pos: -12.5,-19.5 parent: 2 type: Transform - name: janitorial fax type: FaxMachine + - uid: 14486 + components: + - pos: -1.5,-6.5 + parent: 2 + type: Transform + - name: hop office + type: FaxMachine - proto: FaxMachineCaptain entities: - - uid: 14361 + - uid: 14487 components: - pos: 30.5,-29.5 parent: 2 type: Transform - proto: FenceMetalCorner entities: - - uid: 14362 + - uid: 14488 components: - rot: 3.141592653589793 rad pos: 61.5,47.5 parent: 2 type: Transform - - uid: 14363 + - uid: 14489 components: - rot: -1.5707963267948966 rad pos: -44.5,-84.5 parent: 2 type: Transform - - uid: 14364 + - uid: 14490 components: - rot: 1.5707963267948966 rad pos: -39.5,-80.5 parent: 2 type: Transform - - uid: 14365 + - uid: 14491 components: - rot: 3.141592653589793 rad pos: -44.5,-80.5 parent: 2 type: Transform - - uid: 14366 + - uid: 14492 components: - pos: -39.5,-84.5 parent: 2 type: Transform - proto: FenceMetalGate entities: - - uid: 14367 + - uid: 14493 components: - rot: 3.141592653589793 rad pos: -52.5,-30.5 parent: 2 type: Transform - - uid: 14368 + - uid: 14494 components: - rot: 3.141592653589793 rad pos: 62.5,47.5 parent: 2 type: Transform - - uid: 14369 + - uid: 14495 components: - rot: 3.141592653589793 rad pos: -41.5,-84.5 parent: 2 type: Transform - - SecondsUntilStateChange: -18846.072 + - SecondsUntilStateChange: -30316.2 state: Opening type: Door - proto: FenceMetalStraight entities: - - uid: 14370 + - uid: 14496 components: - pos: 61.5,49.5 parent: 2 type: Transform - - uid: 14371 + - uid: 14497 components: - rot: 1.5707963267948966 rad pos: 63.5,47.5 parent: 2 type: Transform - - uid: 14372 + - uid: 14498 components: - pos: 61.5,48.5 parent: 2 type: Transform - - uid: 14373 + - uid: 14499 components: - rot: 3.141592653589793 rad pos: -39.5,-82.5 parent: 2 type: Transform - - uid: 14374 + - uid: 14500 components: - rot: 3.141592653589793 rad pos: -39.5,-81.5 parent: 2 type: Transform - - uid: 14375 + - uid: 14501 components: - rot: -1.5707963267948966 rad pos: -42.5,-80.5 parent: 2 type: Transform - - uid: 14376 + - uid: 14502 components: - rot: -1.5707963267948966 rad pos: -43.5,-80.5 parent: 2 type: Transform - - uid: 14377 + - uid: 14503 components: - pos: -44.5,-82.5 parent: 2 type: Transform - - uid: 14378 + - uid: 14504 components: - rot: -1.5707963267948966 rad pos: -40.5,-84.5 parent: 2 type: Transform - - uid: 14379 + - uid: 14505 components: - rot: -1.5707963267948966 rad pos: -40.5,-80.5 parent: 2 type: Transform - - uid: 14380 + - uid: 14506 components: - rot: 1.5707963267948966 rad pos: -42.5,-84.5 parent: 2 type: Transform - - uid: 14381 + - uid: 14507 components: - rot: 1.5707963267948966 rad pos: -43.5,-84.5 parent: 2 type: Transform - - uid: 14382 + - uid: 14508 components: - pos: -44.5,-83.5 parent: 2 type: Transform - - uid: 14383 + - uid: 14509 components: - rot: -1.5707963267948966 rad pos: -41.5,-80.5 parent: 2 type: Transform - - uid: 14384 + - uid: 14510 components: - pos: -44.5,-81.5 parent: 2 type: Transform - - uid: 14385 + - uid: 14511 components: - rot: 3.141592653589793 rad pos: -39.5,-83.5 parent: 2 type: Transform - - uid: 14386 + - uid: 14512 components: - rot: -1.5707963267948966 rad pos: -51.5,-30.5 @@ -94835,2029 +95695,2080 @@ entities: type: Transform - proto: FigureSpawner entities: - - uid: 14387 + - uid: 14513 components: - pos: 9.5,-6.5 parent: 2 type: Transform - - uid: 14388 + - uid: 14514 components: - pos: 10.5,-6.5 parent: 2 type: Transform - - uid: 14389 + - uid: 14515 components: - pos: -0.5,31.5 parent: 2 type: Transform - - uid: 14390 + - uid: 14516 components: - pos: -1.5,30.5 parent: 2 type: Transform - proto: filingCabinet entities: - - uid: 14391 + - uid: 14517 components: - pos: 17.5,-14.5 parent: 2 type: Transform - - uid: 14392 + - uid: 14518 components: - pos: 62.5,-3.5 parent: 2 type: Transform - proto: filingCabinetDrawer entities: - - uid: 14393 + - uid: 14519 components: - pos: 57.5,-41.5 parent: 2 type: Transform - - uid: 14394 + - uid: 14520 components: - pos: -24.5,-69.5 parent: 2 type: Transform - - uid: 14395 + - uid: 14521 components: - pos: 58.5,31.5 parent: 2 type: Transform - - uid: 14396 + - uid: 14522 components: - pos: 63.5,-3.5 parent: 2 type: Transform - proto: filingCabinetDrawerRandom entities: - - uid: 14397 + - uid: 14523 components: - pos: 41.5,-3.5 parent: 2 type: Transform - - uid: 14398 + - uid: 14524 components: - pos: -22.5,13.5 parent: 2 type: Transform - proto: filingCabinetRandom entities: - - uid: 14399 + - uid: 14525 components: - pos: 41.5,-2.5 parent: 2 type: Transform - - uid: 14400 + - uid: 14526 components: - pos: -23.5,13.5 parent: 2 type: Transform - proto: FireAlarm entities: - - uid: 14401 + - uid: 14527 components: - pos: -6.5,-44.5 parent: 2 type: Transform - devices: - - 809 - - 14853 - - 14854 - - 14493 - - 14492 - - 14515 - - 14491 - - 14490 - - 14489 - - 14695 - - 14696 - - 14742 + - 813 + - 14973 + - 14974 + - 14622 + - 14621 + - 14643 + - 14620 + - 14619 + - 14618 - 14818 - - 14817 - 14819 - - 14583 - - 14618 + - 14864 + - 14938 + - 14937 + - 14939 + - 14709 + - 14744 type: DeviceList - - uid: 14402 + - uid: 14528 components: - pos: 30.5,-40.5 parent: 2 type: Transform - devices: - - 14795 - - 14794 - - 14793 - - 14746 - - 14664 - - 14688 - - 14882 - - 14757 - - 14680 - - 14679 - - 14741 - - 14743 - - 14749 - - 14785 - - 14720 - - 14501 - - 814 - - 14773 - - 14771 - - 14607 + - 14915 + - 14914 + - 14913 + - 14867 + - 14789 + - 14811 + - 15002 + - 14878 + - 14804 + - 14803 + - 14863 + - 14865 + - 14870 + - 14905 + - 14842 + - 14630 + - 818 + - 14893 + - 14891 + - 14733 type: DeviceList - - uid: 14403 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-3.5 - parent: 2 - type: Transform - - uid: 14404 + - uid: 14529 components: - rot: -1.5707963267948966 rad pos: -20.5,58.5 parent: 2 type: Transform - devices: - - 14936 - - 14931 - - 14932 - - 14925 - - 14924 - - 14923 - - 14928 - - 14927 - - 855 - - 14915 - - 14914 + - 15056 + - 15051 + - 15052 + - 15045 + - 15044 + - 15043 + - 15048 + - 15047 + - 859 + - 15035 + - 15034 type: DeviceList - - uid: 14405 + - uid: 14530 components: - rot: -1.5707963267948966 rad pos: -11.5,62.5 parent: 2 type: Transform - devices: - - 14931 - - 14932 - - 14934 - - 14929 - - 14930 - - 14926 - - 14904 - - 856 + - 15051 + - 15052 + - 15054 + - 15049 + - 15050 + - 15046 + - 15024 + - 860 type: DeviceList - - uid: 14406 + - uid: 14531 components: - pos: -29.5,-15.5 parent: 2 type: Transform - devices: - - 868 - - 14806 - - 14821 - - 14822 - - 14835 - - 14834 - - 14572 - - 14836 - - 14837 + - 872 + - 14926 + - 14941 + - 14942 + - 14955 + - 14954 + - 14698 + - 14956 + - 14957 type: DeviceList - - uid: 14407 + - uid: 14532 components: - rot: 1.5707963267948966 rad pos: 51.5,12.5 parent: 2 type: Transform - devices: - - 850 - - 14634 - - 14633 - - 14632 - - 14631 - - 14630 - - 14635 - - 14636 - - 14637 - - 14777 - - 14776 - - 14784 - - 14860 - - 14779 + - 854 + - 14760 + - 14759 + - 14758 + - 14757 + - 14756 + - 14761 + - 14762 + - 14763 + - 14897 + - 14896 + - 14904 + - 14980 + - 14899 type: DeviceList - - uid: 14408 + - uid: 14533 components: - pos: 28.5,-57.5 parent: 2 type: Transform - devices: - - 849 - - 14811 - - 14810 - - 14812 - - 14486 - - 14680 - - 14757 - - 14882 - - 14887 + - 853 + - 14931 + - 14930 + - 14932 + - 14615 + - 14804 + - 14878 + - 15002 + - 15007 type: DeviceList - - uid: 14409 + - uid: 14534 components: - rot: -1.5707963267948966 rad pos: -17.5,20.5 parent: 2 type: Transform - devices: - - 886 - - 14844 - - 14843 - - 14845 - - 14846 - - 14847 - - 14783 - - 14909 - - 14910 - - 14848 + - 890 + - 14964 + - 14963 + - 14965 + - 14966 + - 14967 + - 14903 + - 15029 + - 15030 + - 14968 type: DeviceList - - uid: 14410 + - uid: 14535 components: - pos: 65.5,-42.5 parent: 2 type: Transform - devices: - - 894 - - 14790 - - 14640 - - 14639 - - 14528 - - 14791 - - 14902 - - 14903 + - 898 + - 14910 + - 14766 + - 14765 + - 14656 + - 14911 + - 15022 + - 15023 type: DeviceList - - uid: 14411 + - uid: 14536 components: - rot: 1.5707963267948966 rad pos: -30.5,-11.5 parent: 2 type: Transform - devices: - - 14881 - - 14571 - - 14572 - - 916 + - 15001 + - 14697 + - 14698 + - 919 type: DeviceList - - uid: 14412 + - uid: 14537 components: - rot: 3.141592653589793 rad pos: -38.5,-14.5 parent: 2 type: Transform - devices: - - 890 - - 14824 - - 14823 - - 14837 - - 14836 - - 14892 - - 14840 - - 14573 + - 894 + - 14944 + - 14943 + - 14957 + - 14956 + - 15012 + - 14960 + - 14699 type: DeviceList - - uid: 14413 + - uid: 14538 components: - pos: 8.5,18.5 parent: 2 type: Transform - devices: - - 14897 - - 14588 - - 14589 - - 14764 - - 14765 - - 14504 - - 14518 - - 14718 - - 838 + - 15017 + - 14714 + - 14715 + - 14884 + - 14885 + - 14632 + - 14646 + - 14840 + - 842 type: DeviceList - - uid: 14414 + - uid: 14539 components: - pos: -4.5,60.5 parent: 2 type: Transform - devices: - - 14929 - - 14930 - - 14935 - - 14922 - - 14921 - - 14920 - - 857 + - 15049 + - 15050 + - 15055 + - 15042 + - 15041 + - 15040 + - 861 type: DeviceList - - uid: 14415 + - uid: 14540 components: - rot: -1.5707963267948966 rad pos: 47.5,-36.5 parent: 2 type: Transform - devices: - - 892 - - 14527 - - 14786 - - 14530 - - 14529 + - 896 + - 14655 + - 14906 + - 14658 + - 14657 type: DeviceList - - uid: 14416 + - uid: 14541 components: - pos: 6.5,4.5 parent: 2 type: Transform - devices: - - 14769 - - 14727 - - 14770 - - 14733 - - 14672 - - 14712 - - 14738 - - 14710 - - 14719 - - 14650 + - 14889 + - 14849 + - 14890 + - 14855 + - 14797 + - 14835 + - 14860 + - 14833 + - 14841 + - 14776 + - 14775 + - 14809 + - 14774 + - 14805 + - 14798 + - 14784 - 14649 - - 14686 - - 14648 - - 14681 - - 14673 - - 14659 - - 14521 - - 836 + - 840 type: DeviceList - - uid: 14417 + - uid: 14542 components: - pos: -9.5,4.5 parent: 2 type: Transform - devices: - - 14883 - - 14874 - - 14875 - - 14872 - - 14873 - - 14525 - - 14689 - - 14736 - - 14690 - - 14710 - - 14738 - - 14712 - - 14672 - - 14658 - - 14709 - - 14671 - - 835 + - 15003 + - 14994 + - 14995 + - 14992 + - 14993 + - 14653 + - 14812 + - 14858 + - 14813 + - 14833 + - 14860 + - 14835 + - 14797 + - 14783 + - 14832 + - 14796 + - 839 type: DeviceList - - uid: 14418 + - uid: 14543 components: - pos: -15.5,-3.5 parent: 2 type: Transform - devices: - - 859 - - 14864 - - 14863 - - 14865 - - 14807 - - 14804 - - 14740 - - 14876 - - 14874 - - 14875 - - 14872 - - 14873 - - 14512 + - 863 + - 14984 + - 14983 + - 14985 + - 14927 + - 14924 + - 14862 + - 14996 + - 14994 + - 14995 + - 14992 + - 14993 + - 14640 type: DeviceList - - uid: 14419 + - uid: 14544 components: - pos: 22.5,24.5 parent: 2 type: Transform - devices: - - 14896 - - 14880 - - 14879 - - 14878 - - 14774 - - 845 + - 15016 + - 15000 + - 14999 + - 14998 + - 14894 + - 849 type: DeviceList - - uid: 14420 + - uid: 14545 components: - pos: 6.5,11.5 parent: 2 type: Transform - devices: - - 14764 - - 14765 - - 14708 - - 14729 - - 14657 - - 14769 - - 14727 - - 14770 - - 839 - - 14737 - - 14733 + - 14884 + - 14885 + - 14831 + - 14851 + - 14782 + - 14889 + - 14849 + - 14890 + - 843 + - 14859 + - 14855 type: DeviceList - - uid: 14421 + - uid: 14546 components: - rot: 1.5707963267948966 rad pos: -26.5,-15.5 parent: 2 type: Transform - devices: - - 866 - - 14881 - - 14687 - - 14691 - - 14834 - - 14835 - - 14571 + - 870 + - 15001 + - 14810 + - 14814 + - 14954 + - 14955 + - 14697 type: DeviceList - - uid: 14422 + - uid: 14547 components: - pos: -13.5,-40.5 parent: 2 type: Transform - devices: - - 14669 - - 14668 - - 14667 - - 14772 - - 14489 - - 14490 - - 14491 - - 14515 - - 14492 - - 14493 - - 14743 - - 14741 - - 14679 - - 810 - - 14766 - - 14767 - - 14768 + - 14794 + - 14793 + - 14792 + - 14892 + - 14618 + - 14619 + - 14620 + - 14643 + - 14621 + - 14622 + - 14865 + - 14863 + - 14803 + - 814 + - 14886 + - 14887 + - 14888 type: DeviceList - - uid: 14423 + - uid: 14548 components: - rot: 3.141592653589793 rad pos: 4.5,-51.5 parent: 2 type: Transform - devices: - - 827 - - 14855 - - 14666 - - 14854 - - 14853 + - 831 + - 14975 + - 14791 + - 14974 + - 14973 type: DeviceList - - uid: 14424 + - uid: 14549 components: - pos: -16.5,-24.5 parent: 2 type: Transform - devices: - - 14826 - - 874 - - 14543 - - 14524 - - 14808 - - 14724 - - 14644 - - 14761 - - 14833 - - 14805 - - 14832 - - 14868 - - 14869 - - 14870 + - 14946 + - 878 + - 14671 + - 14652 + - 14928 + - 14846 + - 14770 + - 14882 + - 14953 + - 14925 + - 14952 + - 14988 + - 14989 + - 14990 type: DeviceList - - uid: 14425 + - uid: 14550 components: - pos: -16.5,-58.5 parent: 2 type: Transform - devices: - - 14699 - - 14856 - - 14857 - - 14698 - - 14697 - - 14726 - - 14813 - - 14814 + - 14822 + - 14976 + - 14977 + - 14821 - 14820 - - 14861 - - 14885 - - 14886 - - 14884 - - 14890 - - 813 - - 14495 - - 14509 + - 14848 + - 14933 + - 14934 + - 14940 + - 14981 + - 15005 + - 15006 + - 15004 + - 15010 + - 817 + - 14624 + - 14637 type: DeviceList - - uid: 14426 + - uid: 14551 components: - rot: -1.5707963267948966 rad pos: 41.5,-61.5 parent: 2 type: Transform - devices: - - 852 - - 14811 - - 14810 - - 14812 - - 14809 - - 14651 - - 14815 - - 14816 + - 856 + - 14931 + - 14930 + - 14932 + - 14929 + - 14777 + - 14935 + - 14936 type: DeviceList - - uid: 14427 + - uid: 14552 components: - pos: -7.5,-24.5 parent: 2 type: Transform - devices: - - 833 - - 14868 - - 14869 - - 14870 - - 14500 - - 14762 - - 14728 - - 14722 - - 14692 - - 14723 - - 14760 - - 14766 - - 14767 - - 14768 + - 837 + - 14988 + - 14989 + - 14990 + - 14629 + - 14883 + - 14850 + - 14844 + - 14815 + - 14845 + - 14881 + - 14886 + - 14887 + - 14888 type: DeviceList - - uid: 14428 + - uid: 14553 components: - pos: 27.5,-15.5 parent: 2 type: Transform - devices: - - 14707 - - 14694 - - 14734 - - 14751 - - 14647 - - 14748 - - 14670 - - 14711 - - 14677 - - 14678 - - 876 + - 14830 + - 14817 + - 14856 + - 14872 + - 14773 + - 14869 + - 14795 + - 14834 + - 14801 + - 14802 + - 880 type: DeviceList - - uid: 14429 + - uid: 14554 components: - pos: 24.5,-3.5 parent: 2 type: Transform - devices: - - 860 - - 14759 - - 14739 - - 14674 - - 14655 - - 14685 - - 14714 - - 14647 - - 14748 - - 14670 + - 864 + - 14880 + - 14861 + - 14799 + - 14781 + - 14808 + - 14836 + - 14773 + - 14869 + - 14795 type: DeviceList - - uid: 14430 + - uid: 14555 components: - rot: -1.5707963267948966 rad pos: 19.5,-3.5 parent: 2 type: Transform - devices: - - 861 - - 14648 - - 14681 - - 14673 - - 14659 - - 14652 - - 14716 - - 14717 - - 14735 - - 14759 - - 14739 - - 14674 + - 865 + - 14774 + - 14805 + - 14798 + - 14784 + - 14778 + - 14838 + - 14839 + - 14857 + - 14880 + - 14861 + - 14799 type: DeviceList - - uid: 14431 + - uid: 14556 components: - pos: 12.5,-24.5 parent: 2 type: Transform - devices: - - 831 - - 14482 - - 14731 - - 14646 - - 14725 - - 14707 - - 14694 - - 14734 - - 14720 - - 14785 - - 14749 - - 14478 + - 835 + - 14611 + - 14853 + - 14772 + - 14847 + - 14830 + - 14817 + - 14856 + - 14842 + - 14905 + - 14870 + - 14607 type: DeviceList - - uid: 14432 + - uid: 14557 components: - pos: 37.5,-24.5 parent: 2 type: Transform - devices: - - 14481 - - 14477 - - 14476 - - 817 - - 14483 - - 14711 - - 14677 - - 14678 - - 14746 - - 14664 - - 14688 + - 14610 + - 14606 + - 14605 + - 821 + - 14612 + - 14834 + - 14801 + - 14802 + - 14867 + - 14789 + - 14811 type: DeviceList - - uid: 14433 + - uid: 14558 components: - pos: 33.5,9.5 parent: 2 type: Transform - devices: - - 863 - - 14754 - - 14655 - - 14685 - - 14714 - - 14700 - - 14682 - - 14715 - - 14704 - - 14730 - - 14866 - - 14701 + - 867 + - 14875 + - 14781 + - 14808 + - 14836 + - 14823 + - 14806 + - 14837 + - 14827 + - 14852 + - 14986 + - 14824 type: DeviceList - - uid: 14434 + - uid: 14559 components: - pos: 56.5,-4.5 parent: 2 type: Transform - devices: - - 14533 - - 848 - - 14800 - - 14782 - - 14781 - - 14780 - - 14888 - - 14799 + - 14661 + - 852 + - 14920 + - 14902 + - 14901 + - 14900 + - 15008 + - 14919 type: DeviceList - - uid: 14435 + - uid: 14560 components: - pos: 40.5,3.5 parent: 2 type: Transform - devices: - - 846 - - 14854 - - 14853 - - 827 - - 14704 - - 14730 - - 14866 - - 14747 - - 14780 - - 14781 - - 14782 - - 14938 - - 14937 + - 850 + - 14974 + - 14973 + - 831 + - 14827 + - 14852 + - 14986 + - 14868 + - 14900 + - 14901 + - 14902 + - 15058 + - 15057 type: DeviceList - - uid: 14436 + - uid: 14561 components: - rot: -1.5707963267948966 rad pos: -2.5,-10.5 parent: 2 type: Transform - devices: - - 834 - - 14762 - - 14728 - - 14722 - - 14690 - - 14736 - - 14689 + - 838 + - 14883 + - 14850 + - 14844 + - 14813 + - 14858 + - 14812 type: DeviceList - - uid: 14437 + - uid: 14562 components: - pos: -31.5,2.5 parent: 2 type: Transform - devices: - - 879 - - 14740 - - 14804 - - 14807 - - 14510 - - 14850 - - 14849 - - 14851 - - 14852 - - 14859 + - 883 + - 14862 + - 14924 + - 14927 + - 14638 + - 14970 + - 14969 + - 14971 + - 14972 + - 14979 type: DeviceList - - uid: 14438 + - uid: 14563 components: - pos: -48.5,9.5 parent: 2 type: Transform - devices: - - 14862 - - 14858 - - 880 - - 14851 - - 14852 - - 14859 + - 14982 + - 14978 + - 884 + - 14971 + - 14972 + - 14979 type: DeviceList - - uid: 14439 + - uid: 14564 components: - rot: -1.5707963267948966 rad pos: -52.5,-10.5 parent: 2 type: Transform - devices: - - 889 - - 14830 - - 14829 - - 14891 - - 14545 - - 14546 + - 893 + - 14950 + - 14949 + - 15011 + - 14673 + - 14674 type: DeviceList - - uid: 14440 + - uid: 14565 components: - pos: -58.5,-22.5 parent: 2 type: Transform - devices: - - 888 - - 14841 - - 14871 - - 14541 - - 14829 - - 14830 + - 892 + - 14961 + - 14991 + - 14669 + - 14949 + - 14950 type: DeviceList - - uid: 14441 + - uid: 14566 components: - rot: -1.5707963267948966 rad pos: -29.5,-35.5 parent: 2 type: Transform - devices: - - 872 - - 14827 - - 14828 - - 14801 - - 14802 - - 14536 - - 14535 - - 14540 - - 14539 + - 876 + - 14947 + - 14948 + - 14921 + - 14922 + - 14664 + - 14663 + - 14668 + - 14667 type: DeviceList - - uid: 14442 + - uid: 14567 components: - pos: 52.5,-38.5 parent: 2 type: Transform - devices: - - 854 - - 14786 - - 14789 - - 14798 - - 14787 - - 14788 - - 14792 - - 14796 - - 14797 - - 14900 - - 14901 + - 858 + - 14906 + - 14909 + - 14918 + - 14907 + - 14908 + - 14912 + - 14916 + - 14917 + - 15020 + - 15021 type: DeviceList - - uid: 14443 + - uid: 14568 components: - pos: 22.5,9.5 parent: 2 type: Transform - devices: - - 862 - - 14497 - - 14487 - - 14485 - - 14569 - - 14717 - - 14735 - - 14700 - - 14682 - - 14715 + - 866 + - 14626 + - 14616 + - 14614 + - 14695 + - 14839 + - 14857 + - 14823 + - 14806 + - 14837 type: DeviceList - - uid: 14444 + - uid: 14569 components: - pos: -26.5,-76.5 parent: 2 type: Transform - devices: - - 820 - - 14889 - - 14755 - - 14705 + - 824 + - 15009 + - 14876 + - 14828 type: DeviceList - - uid: 14445 + - uid: 14570 components: - rot: 1.5707963267948966 rad pos: 27.5,15.5 parent: 2 type: Transform - devices: - - 14778 - - 14683 - - 14706 - - 14654 - - 14774 - - 14519 - - 14508 - - 14488 - - 847 - - 14938 - - 14937 + - 14898 + - 14807 + - 14829 + - 14780 + - 14894 + - 14647 + - 14636 + - 14617 + - 851 + - 15058 + - 15057 type: DeviceList - - uid: 14446 + - uid: 14571 components: - pos: -17.5,-68.5 parent: 2 type: Transform - devices: - - 819 - - 14898 - - 14889 - - 14645 - - 14585 + - 823 + - 15018 + - 15009 + - 14771 + - 14711 type: DeviceList - - uid: 14447 + - uid: 14572 components: - pos: 46.5,-40.5 parent: 2 type: Transform - devices: - - 14527 - - 14789 - - 14798 - - 14787 - - 14795 - - 14794 - - 14793 - - 14529 - - 14530 - - 903 + - 14655 + - 14909 + - 14918 + - 14907 + - 14915 + - 14914 + - 14913 + - 14657 + - 14658 + - 906 type: DeviceList - - uid: 14448 + - uid: 14573 components: - pos: -18.5,68.5 parent: 2 type: Transform - devices: - - 905 - - 14971 - - 14970 + - 908 + - 15091 + - 15090 type: DeviceList - - uid: 14449 + - uid: 14574 components: - rot: -1.5707963267948966 rad pos: -13.5,40.5 parent: 2 type: Transform - devices: - - 907 - - 14917 - - 14918 - - 14919 - - 14594 - - 14591 - - 14593 - - 14592 - - 14910 - - 14909 - - 14906 - - 14907 - - 14908 - - 14923 - - 14924 - - 14925 - - 14570 + - 910 + - 15037 + - 15038 + - 15039 + - 14720 + - 14717 + - 14719 + - 14718 + - 15030 + - 15029 + - 15026 + - 15027 + - 15028 + - 15043 + - 15044 + - 15045 + - 14696 type: DeviceList - - uid: 14450 + - uid: 14575 components: - pos: -7.5,47.5 parent: 2 type: Transform - devices: - - 908 - - 14917 - - 14918 - - 14919 - - 14912 - - 14913 - - 14920 - - 14921 - - 14922 - - 14933 + - 911 + - 15037 + - 15038 + - 15039 + - 15032 + - 15033 + - 15040 + - 15041 + - 15042 + - 15053 type: DeviceList - - uid: 14451 + - uid: 14576 components: - rot: 3.141592653589793 rad pos: 65.5,-36.5 parent: 2 type: Transform - devices: - - 914 - - 14531 - - 14601 - - 14603 - - 14602 + - 917 + - 14659 + - 14727 + - 14729 + - 14728 type: DeviceList - - uid: 14452 + - uid: 14577 components: - pos: 73.5,-42.5 parent: 2 type: Transform - devices: - - 14945 - - 14946 - - 14640 - - 14639 - - 14528 - - 897 + - 15065 + - 15066 + - 14766 + - 14765 + - 14656 + - 901 type: DeviceList - - uid: 14453 + - uid: 14578 components: - rot: -1.5707963267948966 rad pos: -17.5,-13.5 parent: 2 type: Transform - devices: - - 14865 - - 14863 - - 14864 - - 14687 - - 14691 - - 14832 - - 14805 - - 14833 - - 14606 - - 867 - - 14803 - - 14947 - - 14948 + - 14985 + - 14983 + - 14984 + - 14810 + - 14814 + - 14952 + - 14925 + - 14953 + - 14732 + - 871 + - 14923 + - 15067 + - 15068 type: DeviceList - - uid: 14454 + - uid: 14579 components: - rot: 3.141592653589793 rad pos: 21.5,-26.5 parent: 2 type: Transform - devices: - - 875 - - 14483 - - 14481 - - 14478 - - 14482 - - 14511 - - 14503 - - 14516 + - 879 + - 14612 + - 14610 + - 14607 + - 14611 + - 14639 + - 14631 + - 14644 type: DeviceList - - uid: 14455 + - uid: 14580 components: - rot: 3.141592653589793 rad pos: 72.5,-39.5 parent: 2 type: Transform - devices: - - 913 - - 14605 - - 14604 - - 14944 - - 14943 + - 916 + - 14731 + - 14730 + - 15064 + - 15063 type: DeviceList - - uid: 14456 + - uid: 14581 components: - pos: 30.5,-70.5 parent: 2 type: Transform - devices: - - 921 - - 14961 - - 14962 - - 14963 - - 14960 - - 14959 - - 14958 + - 924 + - 15081 + - 15082 + - 15083 + - 15080 + - 15079 + - 15078 type: DeviceList - - uid: 14457 + - uid: 14582 components: - rot: -1.5707963267948966 rad pos: 20.5,-85.5 parent: 2 type: Transform - devices: - - 14957 - - 922 + - 15077 + - 925 type: DeviceList - - uid: 14458 + - uid: 14583 components: - rot: -1.5707963267948966 rad pos: 32.5,-81.5 parent: 2 type: Transform - devices: - - 904 - - 14956 - - 14958 - - 14959 - - 14960 + - 907 + - 15076 + - 15078 + - 15079 + - 15080 type: DeviceList - - uid: 14459 + - uid: 14584 components: - rot: 3.141592653589793 rad pos: 42.5,-74.5 parent: 2 type: Transform - devices: - - 14964 - - 14965 - - 14966 - - 14961 - - 14962 - - 14963 - - 851 + - 15084 + - 15085 + - 15086 + - 15081 + - 15082 + - 15083 + - 855 type: DeviceList - - uid: 14460 + - uid: 14585 components: - rot: -1.5707963267948966 rad pos: 50.5,-75.5 parent: 2 type: Transform - devices: - - 912 - - 14964 - - 14965 - - 14966 - - 14969 - - 14968 - - 14967 + - 915 + - 15084 + - 15085 + - 15086 + - 15089 + - 15088 + - 15087 type: DeviceList - - uid: 14461 + - uid: 14586 components: - rot: -1.5707963267948966 rad pos: 50.5,-85.5 parent: 2 type: Transform - devices: - - 911 - - 14967 - - 14968 - - 14969 + - 914 + - 15087 + - 15088 + - 15089 type: DeviceList - - uid: 14462 + - uid: 14587 components: - rot: -1.5707963267948966 rad pos: 48.5,4.5 parent: 2 type: Transform - devices: - - 14972 - - 14877 - - 807 - - 14775 + - 15092 + - 14997 + - 811 + - 14895 type: DeviceList - - uid: 14463 + - uid: 14588 components: - pos: 1.5,-51.5 parent: 2 type: Transform - devices: - - 14855 - - 14666 - - 812 + - 14975 + - 14791 + - 816 + - 14938 + - 14937 + - 14939 + - 14873 + - 14945 + - 14854 + - 14786 + - 14866 + - 14871 - 14818 - - 14817 - 14819 - - 14752 - - 14825 - - 14732 - - 14661 + - 14864 + - 14879 + - 14877 + - 15015 - 14744 - - 14750 - - 14695 - - 14696 - - 14742 - - 14758 - - 14756 - - 14895 - - 14618 type: DeviceList - - uid: 14464 + - uid: 14589 components: - rot: 1.5707963267948966 rad pos: -9.5,16.5 parent: 2 type: Transform - ShutdownSubscribers: - - 926 - - 14620 - - 14534 - - 14564 - - 14619 + - 929 + - 14746 + - 14662 + - 14690 + - 14745 type: DeviceNetwork - devices: - - 926 - - 14620 - - 14534 - - 14564 - - 14619 + - 929 + - 14746 + - 14662 + - 14690 + - 14745 type: DeviceList - - uid: 14465 + - uid: 14590 components: - pos: -10.5,13.5 parent: 2 type: Transform - ShutdownSubscribers: - - 841 - - 14883 - - 14671 - - 14709 - - 14658 - - 14737 - - 14620 - - 14534 + - 845 + - 15003 + - 14796 + - 14832 + - 14783 + - 14859 + - 14746 + - 14662 type: DeviceNetwork - devices: - - 841 - - 14883 - - 14671 - - 14709 - - 14658 - - 14737 - - 14620 - - 14534 + - 845 + - 15003 + - 14796 + - 14832 + - 14783 + - 14859 + - 14746 + - 14662 type: DeviceList - - uid: 14466 + - uid: 14591 components: - pos: -71.5,-36.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14621 - - 14625 + - 14747 + - 14751 type: DeviceNetwork - devices: - - 927 - - 14976 - - 14977 - - 14621 - - 14625 + - 930 + - 15096 + - 15097 + - 14747 + - 14751 + type: DeviceList + - uid: 14592 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 15101 + - 15100 + - 15098 + - 934 + type: DeviceNetwork + - devices: + - 934 + - 15098 + - 15100 + - 15101 + type: DeviceList + - uid: 14593 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 933 + - 15100 + - 15099 + type: DeviceNetwork + - devices: + - 933 + - 15100 + - 15099 + type: DeviceList + - uid: 14594 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-22.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 935 + - 15102 + - 15103 + type: DeviceNetwork + - devices: + - 935 + - 15102 + - 15103 + type: DeviceList + - uid: 14595 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-37.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 15104 + - 15105 + - 15107 + - 936 + type: DeviceNetwork + - devices: + - 15104 + - 15105 + - 15107 + - 936 type: DeviceList - proto: FireAxeCabinetFilled entities: - - uid: 14467 + - uid: 14596 components: - rot: -1.5707963267948966 rad pos: -36.5,-49.5 parent: 2 type: Transform - - uid: 14468 + - uid: 14597 components: - pos: 30.5,-20.5 parent: 2 type: Transform - proto: FireExtinguisher entities: - - uid: 14469 + - uid: 14598 components: - pos: -40.44795,34.218018 parent: 2 type: Transform - - uid: 14470 + - uid: 14599 components: - pos: -40.7292,33.999268 parent: 2 type: Transform - - uid: 14471 + - uid: 14600 components: - pos: -47.435944,26.604792 parent: 2 type: Transform - - uid: 14472 + - uid: 14601 components: - pos: 22.516739,-54.502064 parent: 2 type: Transform - proto: Firelock entities: - - uid: 12095 - components: - - pos: 3.5,-2.5 - parent: 2 - type: Transform - - uid: 14473 + - uid: 14602 components: - pos: -47.5,-25.5 parent: 2 type: Transform - - uid: 14474 + - uid: 14603 components: - rot: 1.5707963267948966 rad pos: -13.5,15.5 parent: 2 type: Transform - - uid: 14475 + - uid: 14604 components: - pos: 10.5,-64.5 parent: 2 type: Transform - - uid: 14476 + - uid: 14605 components: - pos: 39.5,-26.5 parent: 2 type: Transform - - uid: 14477 + - uid: 14606 components: - pos: 39.5,-25.5 parent: 2 type: Transform - - uid: 14478 + - uid: 14607 components: - pos: 18.5,-24.5 parent: 2 type: Transform - - uid: 14479 + - uid: 14608 components: - pos: 56.5,-2.5 parent: 2 type: Transform - - uid: 14480 + - uid: 14609 components: - rot: 3.141592653589793 rad pos: 15.5,-13.5 parent: 2 type: Transform - - uid: 14481 + - uid: 14610 components: - rot: 1.5707963267948966 rad pos: 32.5,-25.5 parent: 2 type: Transform - - uid: 14482 + - uid: 14611 components: - rot: 1.5707963267948966 rad pos: 18.5,-25.5 parent: 2 type: Transform - - uid: 14483 + - uid: 14612 components: - pos: 32.5,-24.5 parent: 2 type: Transform - - uid: 14484 + - uid: 14613 components: - pos: 40.5,-14.5 parent: 2 type: Transform - - uid: 14485 + - uid: 14614 components: - rot: 1.5707963267948966 rad pos: 26.5,14.5 parent: 2 type: Transform - - uid: 14486 + - uid: 14615 components: - pos: 23.5,-53.5 parent: 2 type: Transform - - uid: 14487 + - uid: 14616 components: - rot: 1.5707963267948966 rad pos: 25.5,14.5 parent: 2 type: Transform - - uid: 14488 + - uid: 14617 components: - pos: 30.5,23.5 parent: 2 type: Transform - - uid: 14489 + - uid: 14618 components: - pos: -9.5,-44.5 parent: 2 type: Transform - - uid: 14490 + - uid: 14619 components: - pos: -8.5,-44.5 parent: 2 type: Transform - - uid: 14491 + - uid: 14620 components: - pos: -7.5,-44.5 parent: 2 type: Transform - - uid: 14492 + - uid: 14621 components: - pos: -0.5,-44.5 parent: 2 type: Transform - - uid: 14493 + - uid: 14622 components: - pos: 0.5,-44.5 parent: 2 type: Transform - - uid: 14494 + - uid: 14623 components: - rot: -1.5707963267948966 rad pos: 11.5,-49.5 parent: 2 type: Transform - - uid: 14495 + - uid: 14624 components: - pos: -13.5,-62.5 parent: 2 type: Transform - - uid: 14496 + - uid: 14625 components: - pos: -21.5,-52.5 parent: 2 type: Transform - - uid: 14497 + - uid: 14626 components: - rot: 1.5707963267948966 rad pos: 24.5,14.5 parent: 2 type: Transform - - uid: 14498 + - uid: 14627 components: - pos: 18.5,-51.5 parent: 2 type: Transform - - uid: 14499 + - uid: 14628 components: - pos: -47.5,-27.5 parent: 2 type: Transform - - uid: 14500 + - uid: 14629 components: - pos: -11.5,-24.5 parent: 2 type: Transform - - uid: 14501 + - uid: 14630 components: - pos: 31.5,-44.5 parent: 2 type: Transform - - uid: 14503 + - uid: 14631 components: - pos: 26.5,-26.5 parent: 2 type: Transform - - uid: 14504 + - uid: 14632 components: - pos: 14.5,17.5 parent: 2 type: Transform - - uid: 14505 + - uid: 14633 components: - rot: 1.5707963267948966 rad pos: -27.5,-41.5 parent: 2 type: Transform - - uid: 14506 + - uid: 14634 components: - pos: 14.5,-51.5 parent: 2 type: Transform - - uid: 14507 + - uid: 14635 components: - pos: 54.5,38.5 parent: 2 type: Transform - - uid: 14508 + - uid: 14636 components: - pos: 29.5,23.5 parent: 2 type: Transform - - uid: 14509 + - uid: 14637 components: - pos: -19.5,-62.5 parent: 2 type: Transform - - uid: 14510 + - uid: 14638 components: - pos: -29.5,-1.5 parent: 2 type: Transform - - uid: 14511 + - uid: 14639 components: - pos: 23.5,-26.5 parent: 2 type: Transform - - uid: 14512 + - uid: 14640 components: - pos: -19.5,-3.5 parent: 2 type: Transform - - uid: 14513 + - uid: 14641 components: - pos: -10.5,-75.5 parent: 2 type: Transform - - uid: 14514 + - uid: 14642 components: - pos: 34.5,22.5 parent: 2 type: Transform - - uid: 14515 + - uid: 14643 components: - pos: -1.5,-44.5 parent: 2 type: Transform - - uid: 14516 + - uid: 14644 components: - pos: 28.5,-26.5 parent: 2 type: Transform - - uid: 14517 + - uid: 14645 components: - pos: -1.5,-72.5 parent: 2 type: Transform - - uid: 14518 + - uid: 14646 components: - pos: 14.5,16.5 parent: 2 type: Transform - - uid: 14519 + - uid: 14647 components: - pos: 28.5,23.5 parent: 2 type: Transform - - uid: 14520 + - uid: 14648 components: - pos: -50.5,-76.5 parent: 2 type: Transform - - uid: 14521 + - uid: 14649 components: - rot: 3.141592653589793 rad pos: 14.5,-3.5 parent: 2 type: Transform - - uid: 14522 + - uid: 14650 components: - pos: 19.5,-8.5 parent: 2 type: Transform - - uid: 14523 + - uid: 14651 components: - pos: -9.5,-29.5 parent: 2 type: Transform - - uid: 14524 + - uid: 14652 components: - rot: -1.5707963267948966 rad pos: -16.5,-30.5 parent: 2 type: Transform - - uid: 14525 + - uid: 14653 components: - rot: -1.5707963267948966 rad pos: -9.5,-2.5 parent: 2 type: Transform - - uid: 14526 + - uid: 14654 components: - rot: -1.5707963267948966 rad pos: 37.5,20.5 parent: 2 type: Transform - - uid: 14527 + - uid: 14655 components: - pos: 45.5,-40.5 parent: 2 type: Transform - - uid: 14528 + - uid: 14656 components: - pos: 66.5,-48.5 parent: 2 type: Transform - - uid: 14529 + - uid: 14657 components: - pos: 42.5,-40.5 parent: 2 type: Transform - - uid: 14530 + - uid: 14658 components: - pos: 43.5,-40.5 parent: 2 type: Transform - - uid: 14531 + - uid: 14659 components: - pos: 62.5,-37.5 parent: 2 type: Transform - - uid: 14532 + - uid: 14660 components: - pos: -38.5,-22.5 parent: 2 type: Transform - - uid: 14533 + - uid: 14661 components: - rot: -1.5707963267948966 rad pos: 62.5,-16.5 parent: 2 type: Transform - - uid: 14534 + - uid: 14662 components: - pos: -3.5,13.5 parent: 2 type: Transform - ShutdownSubscribers: - 94 - - 14464 - - 14465 + - 14589 + - 14590 type: DeviceNetwork - - uid: 14535 + - uid: 14663 components: - pos: -31.5,-30.5 parent: 2 type: Transform - - uid: 14536 + - uid: 14664 components: - pos: -32.5,-30.5 parent: 2 type: Transform - - uid: 14537 + - uid: 14665 components: - pos: 41.5,-11.5 parent: 2 type: Transform - - uid: 14538 + - uid: 14666 components: - pos: 36.5,-8.5 parent: 2 type: Transform - - uid: 14539 + - uid: 14667 components: - pos: -29.5,-34.5 parent: 2 type: Transform - - uid: 14540 + - uid: 14668 components: - pos: -29.5,-33.5 parent: 2 type: Transform - - uid: 14541 + - uid: 14669 components: - pos: -60.5,-26.5 parent: 2 type: Transform - - uid: 14542 + - uid: 14670 components: - rot: 1.5707963267948966 rad pos: 6.5,-63.5 parent: 2 type: Transform - - uid: 14543 + - uid: 14671 components: - pos: -22.5,-26.5 parent: 2 type: Transform - - uid: 14544 + - uid: 14672 components: - pos: -29.5,-26.5 parent: 2 type: Transform - - uid: 14545 + - uid: 14673 components: - pos: -49.5,-5.5 parent: 2 type: Transform - - uid: 14546 + - uid: 14674 components: - pos: -49.5,-6.5 parent: 2 type: Transform - - uid: 14547 + - uid: 14675 components: - pos: -51.5,-63.5 parent: 2 type: Transform - - uid: 14548 + - uid: 14676 components: - pos: -56.5,-57.5 parent: 2 type: Transform - - uid: 14549 + - uid: 14677 components: - pos: -23.5,-51.5 parent: 2 type: Transform - - uid: 14550 + - uid: 14678 components: - pos: -42.5,-64.5 parent: 2 type: Transform - - uid: 14551 + - uid: 14679 components: - pos: -24.5,-64.5 parent: 2 type: Transform - - uid: 14552 + - uid: 14680 components: - pos: -30.5,-49.5 parent: 2 type: Transform - - uid: 14553 + - uid: 14681 components: - pos: -28.5,-56.5 parent: 2 type: Transform - - uid: 14554 + - uid: 14682 components: - pos: 44.5,-64.5 parent: 2 type: Transform - - uid: 14555 + - uid: 14683 components: - rot: 3.141592653589793 rad pos: 10.5,24.5 parent: 2 type: Transform - - uid: 14556 + - uid: 14684 components: - pos: 58.5,27.5 parent: 2 type: Transform - - uid: 14557 + - uid: 14685 components: - pos: 46.5,33.5 parent: 2 type: Transform - - uid: 14558 + - uid: 14686 components: - pos: 48.5,30.5 parent: 2 type: Transform - - uid: 14559 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-13.5 - parent: 2 - type: Transform - - uid: 14560 + - uid: 14687 components: - rot: -1.5707963267948966 rad pos: 0.5,-14.5 parent: 2 type: Transform - - uid: 14562 + - uid: 14688 components: - pos: -45.5,13.5 parent: 2 type: Transform - - uid: 14563 + - uid: 14689 components: - pos: -26.5,22.5 parent: 2 type: Transform - - uid: 14564 + - uid: 14690 components: - pos: -1.5,14.5 parent: 2 type: Transform - ShutdownSubscribers: - 94 - - 14464 + - 14589 type: DeviceNetwork - - uid: 14565 + - uid: 14691 components: - pos: -45.5,17.5 parent: 2 type: Transform - - uid: 14566 + - uid: 14692 components: - rot: -1.5707963267948966 rad pos: -55.5,-29.5 parent: 2 type: Transform - - uid: 14567 + - uid: 14693 components: - pos: -24.5,-49.5 parent: 2 type: Transform - - uid: 14568 + - uid: 14694 components: - rot: 3.141592653589793 rad pos: -46.5,-2.5 parent: 2 type: Transform - - uid: 14569 + - uid: 14695 components: - pos: 21.5,9.5 parent: 2 type: Transform - - uid: 14570 + - uid: 14696 components: - rot: -1.5707963267948966 rad pos: -15.5,28.5 parent: 2 type: Transform - - uid: 14571 + - uid: 14697 components: - rot: -1.5707963267948966 rad pos: -26.5,-14.5 parent: 2 type: Transform - - uid: 14572 + - uid: 14698 components: - rot: -1.5707963267948966 rad pos: -30.5,-10.5 parent: 2 type: Transform - - uid: 14573 + - uid: 14699 components: - pos: -36.5,-14.5 parent: 2 type: Transform - - uid: 14574 + - uid: 14700 components: - rot: -1.5707963267948966 rad pos: 64.5,16.5 parent: 2 type: Transform - - uid: 14575 + - uid: 14701 components: - rot: -1.5707963267948966 rad pos: 65.5,3.5 parent: 2 type: Transform - - uid: 14576 + - uid: 14702 components: - pos: 43.5,-55.5 parent: 2 type: Transform - - uid: 14577 + - uid: 14703 components: - rot: 3.141592653589793 rad pos: 4.5,-15.5 parent: 2 type: Transform - - uid: 14578 + - uid: 14704 components: - rot: 3.141592653589793 rad pos: -23.5,-45.5 parent: 2 type: Transform - - uid: 14579 + - uid: 14705 components: - pos: 8.5,-54.5 parent: 2 type: Transform - - uid: 14580 + - uid: 14706 components: - pos: 36.5,-47.5 parent: 2 type: Transform - - uid: 14581 + - uid: 14707 components: - pos: 14.5,-46.5 parent: 2 type: Transform - - uid: 14582 + - uid: 14708 components: - rot: -1.5707963267948966 rad pos: 36.5,-55.5 parent: 2 type: Transform - - uid: 14583 + - uid: 14709 components: - pos: -10.5,-46.5 parent: 2 type: Transform - - uid: 14584 + - uid: 14710 components: - pos: 0.5,10.5 parent: 2 type: Transform - - uid: 14585 + - uid: 14711 components: - pos: -16.5,-69.5 parent: 2 type: Transform - - uid: 14586 + - uid: 14712 components: - pos: -29.5,-72.5 parent: 2 type: Transform - - uid: 14587 + - uid: 14713 components: - pos: -35.5,-70.5 parent: 2 type: Transform - - uid: 14588 + - uid: 14714 components: - pos: 3.5,17.5 parent: 2 type: Transform - - uid: 14589 + - uid: 14715 components: - pos: 3.5,16.5 parent: 2 type: Transform - - uid: 14590 + - uid: 14716 components: - pos: -19.5,45.5 parent: 2 type: Transform - - uid: 14591 + - uid: 14717 components: - pos: -13.5,38.5 parent: 2 type: Transform - - uid: 14592 + - uid: 14718 components: - pos: -17.5,34.5 parent: 2 type: Transform - - uid: 14593 + - uid: 14719 components: - pos: -13.5,34.5 parent: 2 type: Transform - - uid: 14594 + - uid: 14720 components: - pos: -13.5,41.5 parent: 2 type: Transform - - uid: 14595 + - uid: 14721 components: - pos: -38.5,39.5 parent: 2 type: Transform - - uid: 14596 + - uid: 14722 components: - pos: -25.5,41.5 parent: 2 type: Transform - - uid: 14597 + - uid: 14723 components: - pos: -27.5,32.5 parent: 2 type: Transform - - uid: 14598 + - uid: 14724 components: - pos: -8.5,-76.5 parent: 2 type: Transform - - uid: 14599 + - uid: 14725 components: - pos: -13.5,-97.5 parent: 2 type: Transform - - uid: 14600 + - uid: 14726 components: - rot: 1.5707963267948966 rad pos: -72.5,-27.5 parent: 2 type: Transform - - uid: 14601 + - uid: 14727 components: - pos: 61.5,-37.5 parent: 2 type: Transform - - uid: 14602 + - uid: 14728 components: - pos: 66.5,-33.5 parent: 2 type: Transform - - uid: 14603 + - uid: 14729 components: - pos: 66.5,-34.5 parent: 2 type: Transform - - uid: 14604 + - uid: 14730 components: - pos: 69.5,-33.5 parent: 2 type: Transform - - uid: 14605 + - uid: 14731 components: - pos: 69.5,-34.5 parent: 2 type: Transform - - uid: 14606 + - uid: 14732 components: - pos: -17.5,-20.5 parent: 2 type: Transform - - uid: 14607 + - uid: 14733 components: - pos: 19.5,-44.5 parent: 2 type: Transform - - uid: 14608 + - uid: 14734 components: - rot: -1.5707963267948966 rad pos: 68.5,-62.5 parent: 2 type: Transform - - uid: 14609 + - uid: 14735 components: - rot: -1.5707963267948966 rad pos: 65.5,-65.5 parent: 2 type: Transform - - uid: 14610 + - uid: 14736 components: - rot: -1.5707963267948966 rad pos: 57.5,-65.5 parent: 2 type: Transform - - uid: 14611 + - uid: 14737 components: - rot: -1.5707963267948966 rad pos: 73.5,-57.5 parent: 2 type: Transform - - uid: 14612 + - uid: 14738 components: - pos: 16.5,30.5 parent: 2 type: Transform - - uid: 14613 + - uid: 14739 components: - pos: -6.5,-13.5 parent: 2 type: Transform - - uid: 14614 + - uid: 14740 components: - pos: -6.5,-9.5 parent: 2 type: Transform - - uid: 14615 + - uid: 14741 components: - pos: -13.5,-7.5 parent: 2 type: Transform - - uid: 14616 + - uid: 14742 components: - pos: -14.5,-14.5 parent: 2 type: Transform - - uid: 14617 + - uid: 14743 components: - pos: -15.5,-17.5 parent: 2 type: Transform - - uid: 14618 + - uid: 14744 components: - pos: -4.5,-51.5 parent: 2 type: Transform - - uid: 14619 + - uid: 14745 components: - pos: -9.5,15.5 parent: 2 type: Transform - ShutdownSubscribers: - 94 - - 14464 + - 14589 type: DeviceNetwork - - uid: 14620 + - uid: 14746 components: - pos: -6.5,13.5 parent: 2 type: Transform - ShutdownSubscribers: - 94 - - 14464 - - 14465 + - 14589 + - 14590 type: DeviceNetwork - - uid: 14621 + - uid: 14747 components: - rot: -1.5707963267948966 rad pos: -64.5,-36.5 @@ -96865,25 +97776,25 @@ entities: type: Transform - ShutdownSubscribers: - 95 - - 14466 + - 14591 type: DeviceNetwork - - uid: 14622 + - uid: 14748 components: - pos: -49.5,-16.5 parent: 2 type: Transform - - uid: 14623 + - uid: 14749 components: - pos: -49.5,-17.5 parent: 2 type: Transform - - uid: 14624 + - uid: 14750 components: - rot: -1.5707963267948966 rad pos: -56.5,-40.5 parent: 2 type: Transform - - uid: 14625 + - uid: 14751 components: - rot: -1.5707963267948966 rad pos: -64.5,-37.5 @@ -96891,15 +97802,15 @@ entities: type: Transform - ShutdownSubscribers: - 95 - - 14466 + - 14591 type: DeviceNetwork - - uid: 14626 + - uid: 14752 components: - rot: -1.5707963267948966 rad pos: -51.5,-36.5 parent: 2 type: Transform - - uid: 14627 + - uid: 14753 components: - rot: -1.5707963267948966 rad pos: -51.5,-37.5 @@ -96907,79 +97818,79 @@ entities: type: Transform - proto: FirelockEdge entities: - - uid: 14628 + - uid: 14754 components: - rot: -1.5707963267948966 rad pos: 10.5,13.5 parent: 2 type: Transform - - uid: 14629 + - uid: 14755 components: - rot: -1.5707963267948966 rad pos: 10.5,14.5 parent: 2 type: Transform - - uid: 14630 + - uid: 14756 components: - rot: 3.141592653589793 rad pos: 59.5,21.5 parent: 2 type: Transform - - uid: 14631 + - uid: 14757 components: - rot: 3.141592653589793 rad pos: 56.5,21.5 parent: 2 type: Transform - - uid: 14632 + - uid: 14758 components: - rot: 3.141592653589793 rad pos: 53.5,21.5 parent: 2 type: Transform - - uid: 14633 + - uid: 14759 components: - rot: 3.141592653589793 rad pos: 50.5,21.5 parent: 2 type: Transform - - uid: 14634 + - uid: 14760 components: - rot: 3.141592653589793 rad pos: 47.5,21.5 parent: 2 type: Transform - - uid: 14635 + - uid: 14761 components: - rot: 1.5707963267948966 rad pos: 59.5,18.5 parent: 2 type: Transform - - uid: 14636 + - uid: 14762 components: - rot: 1.5707963267948966 rad pos: 59.5,15.5 parent: 2 type: Transform - - uid: 14637 + - uid: 14763 components: - rot: 1.5707963267948966 rad pos: 59.5,13.5 parent: 2 type: Transform - - uid: 14638 + - uid: 14764 components: - rot: -1.5707963267948966 rad pos: 61.5,21.5 parent: 2 type: Transform - - uid: 14639 + - uid: 14765 components: - rot: 1.5707963267948966 rad pos: 65.5,-46.5 parent: 2 type: Transform - - uid: 14640 + - uid: 14766 components: - rot: 1.5707963267948966 rad pos: 65.5,-45.5 @@ -96987,1805 +97898,1926 @@ entities: type: Transform - proto: FirelockElectronics entities: - - uid: 14641 + - uid: 14767 components: - pos: -8.422072,39.102524 parent: 2 type: Transform - - uid: 14642 + - uid: 14768 components: - pos: -8.656447,38.727524 parent: 2 type: Transform - proto: FirelockGlass entities: - - uid: 14643 + - uid: 14769 components: - pos: -69.5,-23.5 parent: 2 type: Transform - - uid: 14644 + - uid: 14770 components: - pos: -19.5,-39.5 parent: 2 type: Transform - - uid: 14645 + - uid: 14771 components: - pos: -19.5,-68.5 parent: 2 type: Transform - - uid: 14646 + - uid: 14772 components: - pos: 10.5,-26.5 parent: 2 type: Transform - - uid: 14647 + - uid: 14773 components: - pos: 24.5,-15.5 parent: 2 type: Transform - - uid: 14648 + - uid: 14774 components: - rot: -1.5707963267948966 rad pos: 15.5,3.5 parent: 2 type: Transform - - uid: 14649 + - uid: 14775 components: - pos: 11.5,4.5 parent: 2 type: Transform - - uid: 14650 + - uid: 14776 components: - pos: 11.5,-2.5 parent: 2 type: Transform - - uid: 14651 + - uid: 14777 components: - pos: 38.5,-69.5 parent: 2 type: Transform - - uid: 14652 + - uid: 14778 components: - pos: 15.5,7.5 parent: 2 type: Transform - - uid: 14653 + - uid: 14779 components: - pos: 16.5,18.5 parent: 2 type: Transform - - uid: 14654 + - uid: 14780 components: - pos: 27.5,18.5 parent: 2 type: Transform - - uid: 14655 + - uid: 14781 components: - pos: 31.5,-4.5 parent: 2 type: Transform - - uid: 14657 + - uid: 14782 components: - pos: 7.5,7.5 parent: 2 type: Transform - - uid: 14658 + - uid: 14783 components: - pos: -6.5,4.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14465 + - 14590 type: DeviceNetwork - - uid: 14659 + - uid: 14784 components: - rot: -1.5707963267948966 rad pos: 15.5,-1.5 parent: 2 type: Transform - - uid: 14660 + - uid: 14785 components: - pos: 18.5,-32.5 parent: 2 type: Transform - - uid: 14661 + - uid: 14786 components: - pos: -5.5,-55.5 parent: 2 type: Transform - - uid: 14662 + - uid: 14787 components: - pos: 32.5,-32.5 parent: 2 type: Transform - - uid: 14663 + - uid: 14788 components: - rot: -1.5707963267948966 rad pos: 18.5,15.5 parent: 2 type: Transform - - uid: 14664 + - uid: 14789 components: - pos: 35.5,-38.5 parent: 2 type: Transform - - uid: 14665 + - uid: 14790 components: - pos: -0.5,-69.5 parent: 2 type: Transform - - uid: 14666 + - uid: 14791 components: - rot: 3.141592653589793 rad pos: 3.5,-51.5 parent: 2 type: Transform - - uid: 14667 + - uid: 14792 components: - pos: -16.5,-43.5 parent: 2 type: Transform - - uid: 14668 + - uid: 14793 components: - pos: -16.5,-42.5 parent: 2 type: Transform - - uid: 14669 + - uid: 14794 components: - pos: -16.5,-41.5 parent: 2 type: Transform - - uid: 14670 + - uid: 14795 components: - pos: 26.5,-15.5 parent: 2 type: Transform - - uid: 14671 + - uid: 14796 components: - pos: -8.5,4.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14465 + - 14590 type: DeviceNetwork - - uid: 14672 + - uid: 14797 components: - pos: -1.5,3.5 parent: 2 type: Transform - - uid: 14673 + - uid: 14798 components: - rot: -1.5707963267948966 rad pos: 15.5,-0.5 parent: 2 type: Transform - - uid: 14674 + - uid: 14799 components: - pos: 19.5,-6.5 parent: 2 type: Transform - - uid: 14676 + - uid: 14800 components: - pos: 8.5,-68.5 parent: 2 type: Transform - - uid: 14677 + - uid: 14801 components: - pos: 35.5,-19.5 parent: 2 type: Transform - - uid: 14678 + - uid: 14802 components: - pos: 36.5,-19.5 parent: 2 type: Transform - - uid: 14679 + - uid: 14803 components: - pos: 7.5,-41.5 parent: 2 type: Transform - - uid: 14680 + - uid: 14804 components: - pos: 24.5,-44.5 parent: 2 type: Transform - - uid: 14681 + - uid: 14805 components: - rot: -1.5707963267948966 rad pos: 15.5,2.5 parent: 2 type: Transform - - uid: 14682 + - uid: 14806 components: - pos: 31.5,7.5 parent: 2 type: Transform - - uid: 14683 + - uid: 14807 components: - rot: 1.5707963267948966 rad pos: 43.5,14.5 parent: 2 type: Transform - - uid: 14685 + - uid: 14808 components: - pos: 31.5,-5.5 parent: 2 type: Transform - - uid: 14686 + - uid: 14809 components: - pos: 10.5,4.5 parent: 2 type: Transform - - uid: 14687 + - uid: 14810 components: - pos: -21.5,-11.5 parent: 2 type: Transform - - uid: 14688 + - uid: 14811 components: - pos: 36.5,-38.5 parent: 2 type: Transform - - uid: 14689 + - uid: 14812 components: - pos: -3.5,-2.5 parent: 2 type: Transform - - uid: 14690 + - uid: 14813 components: - pos: -5.5,-2.5 parent: 2 type: Transform - - uid: 14691 + - uid: 14814 components: - pos: -21.5,-12.5 parent: 2 type: Transform - - uid: 14692 + - uid: 14815 components: - pos: -0.5,-25.5 parent: 2 type: Transform - - uid: 14693 + - uid: 14816 components: - rot: -1.5707963267948966 rad pos: 17.5,15.5 parent: 2 type: Transform - - uid: 14694 + - uid: 14817 components: - pos: 15.5,-19.5 parent: 2 type: Transform - - uid: 14695 + - uid: 14818 components: - pos: -9.5,-51.5 parent: 2 type: Transform - - uid: 14696 + - uid: 14819 components: - pos: -8.5,-51.5 parent: 2 type: Transform - - uid: 14697 + - uid: 14820 components: - pos: -19.5,-58.5 parent: 2 type: Transform - - uid: 14698 + - uid: 14821 components: - pos: -6.5,-62.5 parent: 2 type: Transform - - uid: 14699 + - uid: 14822 components: - pos: -2.5,-62.5 parent: 2 type: Transform - - uid: 14700 + - uid: 14823 components: - pos: 31.5,8.5 parent: 2 type: Transform - - uid: 14701 + - uid: 14824 components: - pos: 31.5,1.5 parent: 2 type: Transform - - uid: 14702 + - uid: 14825 components: - rot: -1.5707963267948966 rad pos: 19.5,14.5 parent: 2 type: Transform - - uid: 14703 + - uid: 14826 components: - pos: -46.5,27.5 parent: 2 type: Transform - - uid: 14704 + - uid: 14827 components: - pos: 35.5,2.5 parent: 2 type: Transform - - uid: 14705 + - uid: 14828 components: - pos: -23.5,-81.5 parent: 2 type: Transform - - uid: 14706 + - uid: 14829 components: - pos: 27.5,17.5 parent: 2 type: Transform - - uid: 14707 + - uid: 14830 components: - pos: 14.5,-19.5 parent: 2 type: Transform - - uid: 14708 + - uid: 14831 components: - pos: 7.5,9.5 parent: 2 type: Transform - - uid: 14709 + - uid: 14832 components: - pos: -7.5,4.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14465 + - 14590 type: DeviceNetwork - - uid: 14710 + - uid: 14833 components: - pos: -1.5,-1.5 parent: 2 type: Transform - - uid: 14711 + - uid: 14834 components: - pos: 34.5,-19.5 parent: 2 type: Transform - - uid: 14712 + - uid: 14835 components: - pos: -1.5,2.5 parent: 2 type: Transform - - uid: 14714 + - uid: 14836 components: - pos: 31.5,-6.5 parent: 2 type: Transform - - uid: 14715 + - uid: 14837 components: - pos: 31.5,6.5 parent: 2 type: Transform - - uid: 14716 + - uid: 14838 components: - pos: 15.5,6.5 parent: 2 type: Transform - - uid: 14717 + - uid: 14839 components: - pos: 19.5,7.5 parent: 2 type: Transform - - uid: 14718 + - uid: 14840 components: - pos: 11.5,18.5 parent: 2 type: Transform - - uid: 14719 + - uid: 14841 components: - pos: 10.5,-2.5 parent: 2 type: Transform - - uid: 14720 + - uid: 14842 components: - pos: 16.5,-38.5 parent: 2 type: Transform - - uid: 14721 + - uid: 14843 components: - pos: 26.5,-31.5 parent: 2 type: Transform - - uid: 14722 + - uid: 14844 components: - pos: -3.5,-22.5 parent: 2 type: Transform - - uid: 14723 + - uid: 14845 components: - pos: -0.5,-26.5 parent: 2 type: Transform - - uid: 14724 + - uid: 14846 components: - pos: -20.5,-39.5 parent: 2 type: Transform - - uid: 14725 + - uid: 14847 components: - pos: 10.5,-27.5 parent: 2 type: Transform - - uid: 14726 + - uid: 14848 components: - pos: -15.5,-58.5 parent: 2 type: Transform - - uid: 14727 + - uid: 14849 components: - pos: 1.5,4.5 parent: 2 type: Transform - - uid: 14728 + - uid: 14850 components: - pos: -4.5,-22.5 parent: 2 type: Transform - - uid: 14729 + - uid: 14851 components: - pos: 7.5,8.5 parent: 2 type: Transform - - uid: 14730 + - uid: 14852 components: - pos: 35.5,1.5 parent: 2 type: Transform - - uid: 14731 + - uid: 14853 components: - pos: 10.5,-25.5 parent: 2 type: Transform - - uid: 14732 + - uid: 14854 components: - pos: -2.5,-55.5 parent: 2 type: Transform - - uid: 14733 + - uid: 14855 components: - pos: 5.5,4.5 parent: 2 type: Transform - - uid: 14734 + - uid: 14856 components: - pos: 16.5,-19.5 parent: 2 type: Transform - - uid: 14735 + - uid: 14857 components: - pos: 19.5,6.5 parent: 2 type: Transform - - uid: 14736 + - uid: 14858 components: - pos: -4.5,-2.5 parent: 2 type: Transform - - uid: 14737 + - uid: 14859 components: - pos: -1.5,7.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14465 + - 14590 type: DeviceNetwork - - uid: 14738 + - uid: 14860 components: - pos: -1.5,-0.5 parent: 2 type: Transform - - uid: 14739 + - SecondsUntilStateChange: -3704.712 + state: Closing + type: Door + - uid: 14861 components: - pos: 19.5,-5.5 parent: 2 type: Transform - - uid: 14740 + - uid: 14862 components: - pos: -27.5,1.5 parent: 2 type: Transform - - uid: 14741 + - uid: 14863 components: - pos: 7.5,-42.5 parent: 2 type: Transform - - uid: 14742 + - uid: 14864 components: - pos: -7.5,-51.5 parent: 2 type: Transform - - uid: 14743 + - uid: 14865 components: - pos: 7.5,-43.5 parent: 2 type: Transform - - uid: 14744 + - uid: 14866 components: - pos: -8.5,-55.5 parent: 2 type: Transform - - uid: 14746 + - uid: 14867 components: - pos: 34.5,-38.5 parent: 2 type: Transform - - uid: 14747 + - uid: 14868 components: - pos: 38.5,-0.5 parent: 2 type: Transform - - uid: 14748 + - uid: 14869 components: - pos: 25.5,-15.5 parent: 2 type: Transform - - uid: 14749 + - uid: 14870 components: - pos: 14.5,-38.5 parent: 2 type: Transform - - uid: 14750 + - uid: 14871 components: - pos: -11.5,-55.5 parent: 2 type: Transform - - uid: 14751 + - uid: 14872 components: - pos: 20.5,-15.5 parent: 2 type: Transform - - uid: 14752 + - uid: 14873 components: - pos: 0.5,-55.5 parent: 2 type: Transform - - uid: 14753 + - uid: 14874 components: - pos: 11.5,-29.5 parent: 2 type: Transform - - uid: 14754 + - uid: 14875 components: - pos: 35.5,-3.5 parent: 2 type: Transform - - uid: 14755 + - uid: 14876 components: - pos: -22.5,-81.5 parent: 2 type: Transform - - uid: 14756 + - uid: 14877 components: - pos: -15.5,-55.5 parent: 2 type: Transform - - uid: 14757 + - uid: 14878 components: - pos: 25.5,-44.5 parent: 2 type: Transform - - uid: 14758 + - uid: 14879 components: - pos: -14.5,-55.5 parent: 2 type: Transform - - uid: 14759 + - uid: 14880 components: - pos: 19.5,-4.5 parent: 2 type: Transform - - uid: 14760 + - uid: 14881 components: - pos: -0.5,-27.5 parent: 2 type: Transform - - uid: 14761 + - uid: 14882 components: - pos: -18.5,-39.5 parent: 2 type: Transform - - uid: 14762 + - uid: 14883 components: - pos: -5.5,-22.5 parent: 2 type: Transform - - uid: 14764 + - uid: 14884 components: - pos: 4.5,11.5 parent: 2 type: Transform - - uid: 14765 + - uid: 14885 components: - pos: 5.5,11.5 parent: 2 type: Transform - - uid: 14766 + - uid: 14886 components: - pos: -5.5,-39.5 parent: 2 type: Transform - - uid: 14767 + - uid: 14887 components: - pos: -4.5,-39.5 parent: 2 type: Transform - - uid: 14768 + - uid: 14888 components: - pos: -3.5,-39.5 parent: 2 type: Transform - - uid: 14769 + - uid: 14889 components: - pos: 0.5,4.5 parent: 2 type: Transform - - uid: 14770 + - uid: 14890 components: - pos: 2.5,4.5 parent: 2 type: Transform - - uid: 14771 + - uid: 14891 components: - pos: 22.5,-44.5 parent: 2 type: Transform - - uid: 14772 + - uid: 14892 components: - pos: -8.5,-40.5 parent: 2 type: Transform - - uid: 14773 + - uid: 14893 components: - pos: 21.5,-44.5 parent: 2 type: Transform - - uid: 14774 + - uid: 14894 components: - pos: 27.5,21.5 parent: 2 type: Transform - - uid: 14775 + - uid: 14895 components: - rot: 1.5707963267948966 rad pos: 48.5,6.5 parent: 2 type: Transform - - uid: 14776 + - uid: 14896 components: - rot: 1.5707963267948966 rad pos: 43.5,19.5 parent: 2 type: Transform - - uid: 14777 + - uid: 14897 components: - rot: 1.5707963267948966 rad pos: 43.5,20.5 parent: 2 type: Transform - - uid: 14778 + - uid: 14898 components: - rot: 1.5707963267948966 rad pos: 43.5,15.5 parent: 2 type: Transform - - uid: 14779 + - uid: 14899 components: - rot: 1.5707963267948966 rad pos: 61.5,4.5 parent: 2 type: Transform - - uid: 14780 + - uid: 14900 components: - pos: 51.5,-3.5 parent: 2 type: Transform - - uid: 14781 + - uid: 14901 components: - pos: 52.5,-3.5 parent: 2 type: Transform - - uid: 14782 + - uid: 14902 components: - pos: 53.5,-3.5 parent: 2 type: Transform - - uid: 14783 + - uid: 14903 components: - pos: -21.5,30.5 parent: 2 type: Transform - - uid: 14784 + - uid: 14904 components: - rot: 1.5707963267948966 rad pos: 46.5,15.5 parent: 2 type: Transform - - uid: 14785 + - uid: 14905 components: - pos: 15.5,-38.5 parent: 2 type: Transform - - uid: 14786 + - uid: 14906 components: - pos: 47.5,-37.5 parent: 2 type: Transform - - uid: 14787 + - uid: 14907 components: - pos: 47.5,-43.5 parent: 2 type: Transform - - uid: 14788 + - uid: 14908 components: - pos: 47.5,-45.5 parent: 2 type: Transform - - uid: 14789 + - uid: 14909 components: - pos: 47.5,-41.5 parent: 2 type: Transform - - uid: 14790 + - uid: 14910 components: - pos: 62.5,-41.5 parent: 2 type: Transform - - uid: 14791 + - uid: 14911 components: - pos: 62.5,-50.5 parent: 2 type: Transform - - uid: 14792 + - uid: 14912 components: - pos: 47.5,-46.5 parent: 2 type: Transform - - uid: 14793 + - uid: 14913 components: - pos: 40.5,-43.5 parent: 2 type: Transform - - uid: 14794 + - uid: 14914 components: - pos: 40.5,-42.5 parent: 2 type: Transform - - uid: 14795 + - uid: 14915 components: - pos: 40.5,-41.5 parent: 2 type: Transform - - uid: 14796 + - uid: 14916 components: - pos: 49.5,-48.5 parent: 2 type: Transform - - uid: 14797 + - uid: 14917 components: - pos: 50.5,-48.5 parent: 2 type: Transform - - uid: 14798 + - uid: 14918 components: - pos: 47.5,-42.5 parent: 2 type: Transform - - uid: 14799 + - uid: 14919 components: - pos: 46.5,-10.5 parent: 2 type: Transform - - uid: 14800 + - uid: 14920 components: - rot: -1.5707963267948966 rad pos: 64.5,-4.5 parent: 2 type: Transform - - uid: 14801 + - uid: 14921 components: - pos: -34.5,-33.5 parent: 2 type: Transform - - uid: 14802 + - uid: 14922 components: - pos: -34.5,-34.5 parent: 2 type: Transform - - uid: 14803 + - uid: 14923 components: - pos: -21.5,-21.5 parent: 2 type: Transform - - uid: 14804 + - uid: 14924 components: - pos: -27.5,0.5 parent: 2 type: Transform - - uid: 14805 + - uid: 14925 components: - pos: -19.5,-24.5 parent: 2 type: Transform - - uid: 14806 + - uid: 14926 components: - pos: -33.5,-16.5 parent: 2 type: Transform - - uid: 14807 + - uid: 14927 components: - pos: -27.5,-0.5 parent: 2 type: Transform - - uid: 14808 + - uid: 14928 components: - pos: -21.5,-32.5 parent: 2 type: Transform - - uid: 14809 + - uid: 14929 components: - pos: 39.5,-57.5 parent: 2 type: Transform - - uid: 14810 + - uid: 14930 components: - pos: 35.5,-59.5 parent: 2 type: Transform - - uid: 14811 + - uid: 14931 components: - pos: 35.5,-58.5 parent: 2 type: Transform - - uid: 14812 + - uid: 14932 components: - pos: 35.5,-60.5 parent: 2 type: Transform - - uid: 14813 + - uid: 14933 components: - pos: -14.5,-58.5 parent: 2 type: Transform - - uid: 14814 + - uid: 14934 components: - pos: -11.5,-58.5 parent: 2 type: Transform - - uid: 14815 + - uid: 14935 components: - pos: 39.5,-69.5 parent: 2 type: Transform - - uid: 14816 + - uid: 14936 components: - pos: 40.5,-69.5 parent: 2 type: Transform - - uid: 14817 + - uid: 14937 components: - pos: -0.5,-51.5 parent: 2 type: Transform - - uid: 14818 + - uid: 14938 components: - pos: -1.5,-51.5 parent: 2 type: Transform - - uid: 14819 + - uid: 14939 components: - pos: 0.5,-51.5 parent: 2 type: Transform - - uid: 14820 + - uid: 14940 components: - pos: -8.5,-58.5 parent: 2 type: Transform - - uid: 14821 + - uid: 14941 components: - pos: -32.5,-19.5 parent: 2 type: Transform - - uid: 14822 + - uid: 14942 components: - pos: -31.5,-19.5 parent: 2 type: Transform - - uid: 14823 + - uid: 14943 components: - pos: -40.5,-6.5 parent: 2 type: Transform - - uid: 14824 + - uid: 14944 components: - pos: -40.5,-5.5 parent: 2 type: Transform - - uid: 14825 + - uid: 14945 components: - pos: 3.5,-55.5 parent: 2 type: Transform - - uid: 14826 + - uid: 14946 components: - pos: -21.5,-34.5 parent: 2 type: Transform - - uid: 14827 + - uid: 14947 components: - pos: -33.5,-40.5 parent: 2 type: Transform - - uid: 14828 + - uid: 14948 components: - pos: -33.5,-41.5 parent: 2 type: Transform - - uid: 14829 + - uid: 14949 components: - pos: -54.5,-21.5 parent: 2 type: Transform - - uid: 14830 + - uid: 14950 components: - pos: -53.5,-21.5 parent: 2 type: Transform - - uid: 14831 + - uid: 14951 components: - pos: -69.5,-24.5 parent: 2 type: Transform - - uid: 14832 + - uid: 14952 components: - pos: -20.5,-24.5 parent: 2 type: Transform - - uid: 14833 + - uid: 14953 components: - pos: -18.5,-24.5 parent: 2 type: Transform - - uid: 14834 + - uid: 14954 components: - pos: -26.5,-16.5 parent: 2 type: Transform - - uid: 14835 + - uid: 14955 components: - pos: -26.5,-17.5 parent: 2 type: Transform - - uid: 14836 + - uid: 14956 components: - pos: -33.5,-11.5 parent: 2 type: Transform - - uid: 14837 + - uid: 14957 components: - pos: -33.5,-10.5 parent: 2 type: Transform - - uid: 14838 + - uid: 14958 components: - pos: -41.5,-8.5 parent: 2 type: Transform - - uid: 14839 + - uid: 14959 components: - pos: -42.5,-8.5 parent: 2 type: Transform - - uid: 14840 + - uid: 14960 components: - pos: -40.5,-10.5 parent: 2 type: Transform - - uid: 14841 + - uid: 14961 components: - pos: -63.5,-23.5 parent: 2 type: Transform - - uid: 14842 + - uid: 14962 components: - pos: -21.5,-60.5 parent: 2 type: Transform - - uid: 14843 + - uid: 14963 components: - pos: -21.5,20.5 parent: 2 type: Transform - - uid: 14844 + - uid: 14964 components: - pos: -21.5,21.5 parent: 2 type: Transform - - uid: 14845 + - uid: 14965 components: - pos: -20.5,14.5 parent: 2 type: Transform - - uid: 14846 + - uid: 14966 components: - pos: -19.5,14.5 parent: 2 type: Transform - - uid: 14847 + - uid: 14967 components: - pos: -18.5,14.5 parent: 2 type: Transform - - uid: 14848 + - uid: 14968 components: - rot: -1.5707963267948966 rad pos: -17.5,25.5 parent: 2 type: Transform - - uid: 14849 + - uid: 14969 components: - pos: -38.5,2.5 parent: 2 type: Transform - - uid: 14850 + - uid: 14970 components: - pos: -37.5,2.5 parent: 2 type: Transform - - uid: 14851 + - uid: 14971 components: - pos: -44.5,1.5 parent: 2 type: Transform - - uid: 14852 + - uid: 14972 components: - pos: -44.5,0.5 parent: 2 type: Transform - - uid: 14853 + - uid: 14973 components: - pos: 1.5,-46.5 parent: 2 type: Transform - - uid: 14854 + - uid: 14974 components: - pos: 1.5,-48.5 parent: 2 type: Transform - - uid: 14855 + - uid: 14975 components: - rot: 3.141592653589793 rad pos: 5.5,-51.5 parent: 2 type: Transform - - uid: 14856 + - uid: 14976 components: - pos: -3.5,-62.5 parent: 2 type: Transform - - uid: 14857 + - uid: 14977 components: - pos: -5.5,-62.5 parent: 2 type: Transform - - uid: 14858 + - uid: 14978 components: - pos: -45.5,9.5 parent: 2 type: Transform - - uid: 14859 + - uid: 14979 components: - pos: -44.5,-0.5 parent: 2 type: Transform - - uid: 14860 + - uid: 14980 components: - rot: 1.5707963267948966 rad pos: 46.5,14.5 parent: 2 type: Transform - - uid: 14861 + - uid: 14981 components: - pos: -5.5,-58.5 parent: 2 type: Transform - - uid: 14862 + - uid: 14982 components: - pos: -46.5,9.5 parent: 2 type: Transform - - uid: 14863 + - uid: 14983 components: - pos: -19.5,-7.5 parent: 2 type: Transform - - uid: 14864 + - uid: 14984 components: - pos: -18.5,-7.5 parent: 2 type: Transform - - uid: 14865 + - uid: 14985 components: - pos: -20.5,-7.5 parent: 2 type: Transform - - uid: 14866 + - uid: 14986 components: - pos: 35.5,0.5 parent: 2 type: Transform - - uid: 14867 + - uid: 14987 components: - pos: -32.5,27.5 parent: 2 type: Transform - - uid: 14868 + - uid: 14988 components: - pos: -13.5,-25.5 parent: 2 type: Transform - - uid: 14869 + - uid: 14989 components: - pos: -13.5,-26.5 parent: 2 type: Transform - - uid: 14870 + - uid: 14990 components: - pos: -13.5,-27.5 parent: 2 type: Transform - - uid: 14871 + - uid: 14991 components: - pos: -63.5,-24.5 parent: 2 type: Transform - - uid: 14872 + - uid: 14992 components: - pos: -11.5,-0.5 parent: 2 type: Transform - - uid: 14873 + - uid: 14993 components: - pos: -11.5,-1.5 parent: 2 type: Transform - - uid: 14874 + - uid: 14994 components: - pos: -11.5,3.5 parent: 2 type: Transform - - uid: 14875 + - uid: 14995 components: - pos: -11.5,2.5 parent: 2 type: Transform - - uid: 14876 + - uid: 14996 components: - pos: -24.5,9.5 parent: 2 type: Transform - - uid: 14877 + - uid: 14997 components: - rot: 3.141592653589793 rad pos: 43.5,6.5 parent: 2 type: Transform - - uid: 14878 + - uid: 14998 components: - pos: 26.5,19.5 parent: 2 type: Transform - - uid: 14879 + - uid: 14999 components: - pos: 25.5,19.5 parent: 2 type: Transform - - uid: 14880 + - uid: 15000 components: - pos: 24.5,19.5 parent: 2 type: Transform - - uid: 14881 + - uid: 15001 components: - rot: 3.141592653589793 rad pos: -26.5,-12.5 parent: 2 type: Transform - - uid: 14882 + - uid: 15002 components: - pos: 26.5,-44.5 parent: 2 type: Transform - - uid: 14883 + - uid: 15003 components: - pos: -10.5,4.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14465 + - 14590 type: DeviceNetwork - - uid: 14884 + - uid: 15004 components: - pos: 3.5,-58.5 parent: 2 type: Transform - - uid: 14885 + - uid: 15005 components: - pos: -2.5,-58.5 parent: 2 type: Transform - - uid: 14886 + - uid: 15006 components: - pos: 0.5,-58.5 parent: 2 type: Transform - - uid: 14887 + - uid: 15007 components: - pos: 31.5,-57.5 parent: 2 type: Transform - - uid: 14888 + - uid: 15008 components: - pos: 49.5,-13.5 parent: 2 type: Transform - - uid: 14889 + - uid: 15009 components: - pos: -24.5,-74.5 parent: 2 type: Transform - - uid: 14890 + - uid: 15010 components: - pos: 3.5,-62.5 parent: 2 type: Transform - - uid: 14891 + - uid: 15011 components: - pos: -51.5,-21.5 parent: 2 type: Transform - - uid: 14892 + - uid: 15012 components: - pos: -40.5,-11.5 parent: 2 type: Transform - - uid: 14893 + - uid: 15013 components: - pos: -43.5,-10.5 parent: 2 type: Transform - - uid: 14894 + - uid: 15014 components: - pos: -43.5,-11.5 parent: 2 type: Transform - - uid: 14895 + - uid: 15015 components: - pos: -13.5,-51.5 parent: 2 type: Transform - - uid: 14896 + - uid: 15016 components: - pos: 22.5,19.5 parent: 2 type: Transform - - uid: 14897 + - uid: 15017 components: - pos: 6.5,18.5 parent: 2 type: Transform - - uid: 14898 + - uid: 15018 components: - pos: -18.5,-74.5 parent: 2 type: Transform - - uid: 14899 + - uid: 15019 components: - pos: -20.5,-83.5 parent: 2 type: Transform - - uid: 14900 + - uid: 15020 components: - pos: 54.5,-44.5 parent: 2 type: Transform - - uid: 14901 + - uid: 15021 components: - pos: 54.5,-45.5 parent: 2 type: Transform - - uid: 14902 + - uid: 15022 components: - pos: 58.5,-44.5 parent: 2 type: Transform - - uid: 14903 + - uid: 15023 components: - pos: 58.5,-45.5 parent: 2 type: Transform - - uid: 14904 + - uid: 15024 components: - pos: -12.5,68.5 parent: 2 type: Transform - - uid: 14905 + - ShutdownSubscribers: + - 73 + type: DeviceNetwork + - uid: 15025 components: - rot: 1.5707963267948966 rad pos: -18.5,55.5 parent: 2 type: Transform - - uid: 14906 + - uid: 15026 components: - pos: -19.5,43.5 parent: 2 type: Transform - - uid: 14907 + - uid: 15027 components: - pos: -19.5,42.5 parent: 2 type: Transform - - uid: 14908 + - uid: 15028 components: - pos: -19.5,41.5 parent: 2 type: Transform - - uid: 14909 + - uid: 15029 components: - pos: -17.5,30.5 parent: 2 type: Transform - - uid: 14910 + - uid: 15030 components: - pos: -17.5,29.5 parent: 2 type: Transform - - uid: 14911 + - uid: 15031 components: - pos: -11.5,43.5 parent: 2 type: Transform - - uid: 14912 + - uid: 15032 components: - pos: -10.5,43.5 parent: 2 type: Transform - - uid: 14913 + - uid: 15033 components: - pos: -9.5,43.5 parent: 2 type: Transform - - uid: 14914 + - uid: 15034 components: - pos: -20.5,49.5 parent: 2 type: Transform - - uid: 14915 + - uid: 15035 components: - pos: -21.5,49.5 parent: 2 type: Transform - - uid: 14916 + - uid: 15036 components: - pos: 8.5,-38.5 parent: 2 type: Transform - - uid: 14917 + - uid: 15037 components: - pos: -13.5,46.5 parent: 2 type: Transform - - uid: 14918 + - uid: 15038 components: - pos: -13.5,45.5 parent: 2 type: Transform - - uid: 14919 + - uid: 15039 components: - pos: -13.5,44.5 parent: 2 type: Transform - - uid: 14920 + - uid: 15040 components: - pos: 1.5,53.5 parent: 2 type: Transform - - uid: 14921 + - uid: 15041 components: - pos: 0.5,53.5 parent: 2 type: Transform - - uid: 14922 + - uid: 15042 components: - pos: -0.5,53.5 parent: 2 type: Transform - - uid: 14923 + - uid: 15043 components: - pos: -18.5,48.5 parent: 2 type: Transform - - uid: 14924 + - uid: 15044 components: - pos: -17.5,48.5 parent: 2 type: Transform - - uid: 14925 + - uid: 15045 components: - pos: -16.5,48.5 parent: 2 type: Transform - - uid: 14926 + - uid: 15046 components: - pos: -13.5,68.5 parent: 2 type: Transform - - uid: 14927 + - ShutdownSubscribers: + - 73 + type: DeviceNetwork + - uid: 15047 components: - pos: -21.5,68.5 parent: 2 type: Transform - - uid: 14928 + - uid: 15048 components: - pos: -22.5,68.5 parent: 2 type: Transform - - uid: 14929 + - uid: 15049 components: - pos: -11.5,59.5 parent: 2 type: Transform - - uid: 14930 + - ShutdownSubscribers: + - 73 + type: DeviceNetwork + - uid: 15050 components: - pos: -11.5,58.5 parent: 2 type: Transform - - uid: 14931 + - ShutdownSubscribers: + - 73 + type: DeviceNetwork + - uid: 15051 components: - pos: -15.5,51.5 parent: 2 type: Transform - - uid: 14932 + - ShutdownSubscribers: + - 73 + type: DeviceNetwork + - uid: 15052 components: - pos: -15.5,50.5 parent: 2 type: Transform - - uid: 14933 + - ShutdownSubscribers: + - 73 + type: DeviceNetwork + - uid: 15053 components: - rot: 3.141592653589793 rad pos: -4.5,47.5 parent: 2 type: Transform - - uid: 14934 + - uid: 15054 components: - rot: 3.141592653589793 rad pos: -11.5,52.5 parent: 2 type: Transform - - uid: 14935 + - ShutdownSubscribers: + - 73 + type: DeviceNetwork + - uid: 15055 components: - rot: 3.141592653589793 rad pos: -6.5,57.5 parent: 2 type: Transform - - uid: 14936 + - uid: 15056 components: - pos: -24.5,48.5 parent: 2 type: Transform - - uid: 14937 + - uid: 15057 components: - rot: 3.141592653589793 rad pos: 42.5,3.5 parent: 2 type: Transform - - uid: 14938 + - uid: 15058 components: - rot: 3.141592653589793 rad pos: 41.5,3.5 parent: 2 type: Transform - - uid: 14939 + - uid: 15059 components: - pos: -42.5,-86.5 parent: 2 type: Transform - - uid: 14940 + - uid: 15060 components: - pos: -41.5,-86.5 parent: 2 type: Transform - - uid: 14941 + - uid: 15061 components: - pos: -31.5,-97.5 parent: 2 type: Transform - - uid: 14942 + - uid: 15062 components: - pos: 61.5,-41.5 parent: 2 type: Transform - - uid: 14943 + - uid: 15063 components: - pos: 74.5,-39.5 parent: 2 type: Transform - - uid: 14944 + - uid: 15064 components: - pos: 75.5,-39.5 parent: 2 type: Transform - - uid: 14945 + - uid: 15065 components: - pos: 74.5,-42.5 parent: 2 type: Transform - - uid: 14946 + - uid: 15066 components: - pos: 75.5,-42.5 parent: 2 type: Transform - - uid: 14947 + - uid: 15067 components: - pos: -17.5,-22.5 parent: 2 type: Transform - - uid: 14948 + - uid: 15068 components: - pos: -17.5,-23.5 parent: 2 type: Transform - - uid: 14949 + - uid: 15069 components: - rot: 3.141592653589793 rad pos: 43.5,-33.5 parent: 2 type: Transform - - uid: 14950 + - uid: 15070 components: - pos: 4.5,-28.5 parent: 2 type: Transform - - uid: 14951 + - uid: 15071 components: - pos: -45.5,27.5 parent: 2 type: Transform - - uid: 14952 + - uid: 15072 components: - pos: 55.5,-29.5 parent: 2 type: Transform - - uid: 14953 + - uid: 15073 components: - pos: -41.5,26.5 parent: 2 type: Transform - - uid: 14954 + - uid: 15074 components: - pos: 55.5,-38.5 parent: 2 type: Transform - - uid: 14955 + - uid: 15075 components: - rot: -1.5707963267948966 rad pos: 6.5,-72.5 parent: 2 type: Transform - - uid: 14956 + - uid: 15076 components: - pos: 23.5,-83.5 parent: 2 type: Transform - - uid: 14957 + - uid: 15077 components: - pos: 20.5,-83.5 parent: 2 type: Transform - - uid: 14958 + - uid: 15078 components: - rot: 3.141592653589793 rad pos: 29.5,-76.5 parent: 2 type: Transform - - uid: 14959 + - uid: 15079 components: - rot: 3.141592653589793 rad pos: 30.5,-76.5 parent: 2 type: Transform - - uid: 14960 + - uid: 15080 components: - rot: 3.141592653589793 rad pos: 31.5,-76.5 parent: 2 type: Transform - - uid: 14961 + - uid: 15081 components: - rot: 3.141592653589793 rad pos: 32.5,-71.5 parent: 2 type: Transform - - uid: 14962 + - uid: 15082 components: - rot: 3.141592653589793 rad pos: 32.5,-72.5 parent: 2 type: Transform - - uid: 14963 + - uid: 15083 components: - rot: 3.141592653589793 rad pos: 32.5,-73.5 parent: 2 type: Transform - - uid: 14964 + - uid: 15084 components: - rot: 3.141592653589793 rad pos: 46.5,-71.5 parent: 2 type: Transform - - uid: 14965 + - uid: 15085 components: - rot: 3.141592653589793 rad pos: 46.5,-72.5 parent: 2 type: Transform - - uid: 14966 + - uid: 15086 components: - rot: 3.141592653589793 rad pos: 46.5,-73.5 parent: 2 type: Transform - - uid: 14967 + - uid: 15087 components: - rot: 3.141592653589793 rad pos: 47.5,-76.5 parent: 2 type: Transform - - uid: 14968 + - uid: 15088 components: - rot: 3.141592653589793 rad pos: 48.5,-76.5 parent: 2 type: Transform - - uid: 14969 + - uid: 15089 components: - rot: 3.141592653589793 rad pos: 49.5,-76.5 parent: 2 type: Transform - - uid: 14970 + - uid: 15090 components: - rot: 3.141592653589793 rad pos: -14.5,66.5 parent: 2 type: Transform - - uid: 14971 + - ShutdownSubscribers: + - 73 + type: DeviceNetwork + - uid: 15091 components: - rot: 3.141592653589793 rad pos: -20.5,66.5 parent: 2 type: Transform - - uid: 14972 + - uid: 15092 components: - pos: 45.5,3.5 parent: 2 type: Transform - - uid: 14973 + - uid: 15093 components: - pos: 8.5,-83.5 parent: 2 type: Transform - - uid: 14974 + - uid: 15094 components: - pos: -46.5,37.5 parent: 2 type: Transform - - uid: 14975 + - uid: 15095 components: - pos: -45.5,37.5 parent: 2 type: Transform - - uid: 14976 + - uid: 15096 components: - pos: -72.5,-36.5 parent: 2 type: Transform - - uid: 14977 + - uid: 15097 components: - pos: -73.5,-36.5 parent: 2 type: Transform + - uid: 15098 + components: + - pos: 6.5,-7.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 14592 + - 98 + type: DeviceNetwork + - uid: 15099 + components: + - pos: -2.5,-5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 99 + - 14593 + type: DeviceNetwork + - uid: 15100 + components: + - pos: 0.5,-5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 14592 + - 98 + - 99 + - 14593 + type: DeviceNetwork + - uid: 15101 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 14592 + - 98 + type: DeviceNetwork + - uid: 15102 + components: + - pos: 0.5,-18.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 100 + - 14594 + type: DeviceNetwork + - uid: 15103 + components: + - pos: -1.5,-24.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 100 + - 14594 + type: DeviceNetwork + - uid: 15104 + components: + - pos: 22.5,-33.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 78 + - 14595 + type: DeviceNetwork + - uid: 15105 + components: + - pos: 28.5,-33.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 78 + - 14595 + type: DeviceNetwork + - uid: 15106 + components: + - pos: 7.5,-11.5 + parent: 2 + type: Transform + - uid: 15107 + components: + - pos: 25.5,-40.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 78 + - 14595 + type: DeviceNetwork - proto: Fireplace entities: - - uid: 14978 + - uid: 15108 components: - pos: 31.5,-27.5 parent: 2 type: Transform - - uid: 14979 + - uid: 15109 components: - pos: 12.5,14.5 parent: 2 type: Transform + - uid: 15110 + components: + - pos: -0.5,-3.5 + parent: 2 + type: Transform + - uid: 15111 + components: + - pos: 5.5,-9.5 + parent: 2 + type: Transform - proto: Flash entities: - - uid: 14980 + - uid: 15112 components: - pos: 2.3260884,20.921833 parent: 2 type: Transform - - uid: 14981 + - uid: 15113 components: - pos: 2.5760884,21.156208 parent: 2 type: Transform - - uid: 14982 + - uid: 15114 components: - pos: -15.513895,-23.550434 parent: 2 type: Transform - proto: FlashlightLantern entities: - - uid: 14983 + - uid: 15115 components: - pos: -57.60324,-35.44005 parent: 2 type: Transform - - uid: 14984 + - uid: 15116 components: - pos: 2.4386559,-17.536861 parent: 2 type: Transform - - uid: 14985 + - uid: 15117 components: - pos: 11.541302,-66.381775 parent: 2 type: Transform - - uid: 14986 + - uid: 15118 components: - pos: 10.459883,-56.492657 parent: 2 type: Transform - - uid: 14987 + - uid: 15119 components: - pos: 6.4653053,-69.51486 parent: 2 type: Transform - - uid: 14988 - components: - - pos: 19.460886,-28.487753 - parent: 2 - type: Transform - - uid: 14989 + - uid: 15120 components: - pos: -31.518282,-62.54614 parent: 2 type: Transform - - uid: 14990 + - uid: 15121 components: - pos: 2.6315942,23.576332 parent: 2 type: Transform - - uid: 14991 + - uid: 15122 components: - pos: 58.39165,-37.43153 parent: 2 type: Transform - proto: FlashlightSeclite entities: - - uid: 14992 + - uid: 15123 components: - pos: 17.395416,21.653858 parent: 2 type: Transform - - uid: 14993 + - uid: 15124 components: - rot: 3.141592653589793 rad pos: 7.161119,12.488324 @@ -98793,129 +99825,129 @@ entities: type: Transform - proto: Floodlight entities: - - uid: 14994 + - uid: 15125 components: - pos: 6.532791,48.672844 parent: 2 type: Transform - - uid: 14995 + - uid: 15126 components: - pos: 9.471183,54.298565 parent: 2 type: Transform - - uid: 14996 + - uid: 15127 components: - pos: -69.53465,-52.447685 parent: 2 type: Transform - proto: FloodlightBroken entities: - - uid: 14997 + - uid: 15128 components: - pos: 11.494867,-70.44923 parent: 2 type: Transform - proto: FloorDrain entities: - - uid: 14998 + - uid: 15129 components: - pos: 3.5,-48.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14999 + - uid: 15130 components: - pos: -1.5,-66.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15000 + - uid: 15131 components: - pos: 3.5,8.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15001 + - uid: 15132 components: - pos: -15.5,-78.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15002 + - uid: 15133 components: - pos: -1.5,-64.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15003 + - uid: 15134 components: - pos: -7.5,-65.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15004 + - uid: 15135 components: - pos: -9.5,-22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15005 + - uid: 15136 components: - pos: -15.5,-75.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15006 + - uid: 15137 components: - pos: -20.5,-89.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15007 + - uid: 15138 components: - pos: -25.5,-89.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15008 + - uid: 15139 components: - pos: 53.5,17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15009 + - uid: 15140 components: - pos: 57.5,5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15010 + - uid: 15141 components: - pos: 62.5,12.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15011 + - uid: 15142 components: - pos: 62.5,22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15012 + - uid: 15143 components: - rot: 3.141592653589793 rad pos: 71.5,-49.5 @@ -98923,28 +99955,28 @@ entities: type: Transform - fixtures: {} type: Fixtures - - uid: 15013 + - uid: 15144 components: - pos: -9.5,-69.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15015 + - uid: 15145 components: - pos: 3.5,-46.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15016 + - uid: 15146 components: - pos: 1.5,12.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15017 + - uid: 15147 components: - rot: 3.141592653589793 rad pos: 45.5,6.5 @@ -98952,7 +99984,7 @@ entities: type: Transform - fixtures: {} type: Fixtures - - uid: 15018 + - uid: 15148 components: - pos: -15.5,-34.5 parent: 2 @@ -98961,7 +99993,7 @@ entities: type: Fixtures - proto: FloorTileItemBar entities: - - uid: 15019 + - uid: 15149 components: - pos: 37.575134,45.699768 parent: 2 @@ -98970,7 +100002,7 @@ entities: type: Stack - proto: FloorTileItemFreezer entities: - - uid: 15020 + - uid: 15150 components: - pos: -9.469288,-100.35687 parent: 2 @@ -98979,7 +100011,7 @@ entities: type: Stack - proto: FloorTileItemLaundry entities: - - uid: 15021 + - uid: 15151 components: - pos: -9.484913,-95.4242 parent: 2 @@ -98988,7 +100020,7 @@ entities: type: Stack - proto: FloorTileItemWhite entities: - - uid: 15022 + - uid: 15152 components: - pos: -10.013714,-95.45264 parent: 2 @@ -98997,238 +100029,231 @@ entities: type: Stack - proto: FloraRockSolid01 entities: - - uid: 15023 + - uid: 15153 components: - pos: -35.842815,62.48777 parent: 2 type: Transform - - uid: 15024 + - uid: 15154 components: - pos: 64.48079,45.764553 parent: 2 type: Transform - proto: FloraRockSolid03 entities: - - uid: 15025 + - uid: 15155 components: - pos: 63.527668,48.936428 parent: 2 type: Transform - - uid: 15026 + - uid: 15156 components: - pos: 13.129076,49.02767 parent: 2 type: Transform - - uid: 15027 + - uid: 15157 components: - pos: 16.257528,57.816456 parent: 2 type: Transform - - uid: 15028 + - uid: 15158 components: - pos: 78.52854,-58.425747 parent: 2 type: Transform - proto: FloraTree01 entities: - - uid: 15029 + - uid: 15159 components: - pos: -40.510788,5.4778786 parent: 2 type: Transform - - uid: 15030 + - uid: 15160 components: - pos: 45.883274,-86.48348 parent: 2 type: Transform - proto: FloraTree02 entities: - - uid: 15031 + - uid: 15161 components: - pos: -3.160706,55.605114 parent: 2 type: Transform - - uid: 15032 + - uid: 15162 components: - pos: 33.292767,-85.71786 parent: 2 type: Transform - proto: FloraTree03 entities: - - uid: 15033 + - uid: 15163 components: - pos: 33.02714,-87.53036 parent: 2 type: Transform - proto: FloraTree04 entities: - - uid: 15034 + - uid: 15164 components: - pos: 31.9344,-39.9966 parent: 2 type: Transform - - uid: 15035 + - uid: 15165 components: - pos: 60.920433,-8.196068 parent: 2 type: Transform - - uid: 15036 + - uid: 15166 components: - pos: -9.341627,55.436527 parent: 2 type: Transform - - uid: 15037 + - uid: 15167 components: - pos: -35.771816,4.543429 parent: 2 type: Transform - proto: FloraTree05 entities: - - uid: 15038 + - uid: 15168 components: - pos: 54.09217,-7.7980886 parent: 2 type: Transform - - uid: 15039 + - uid: 15169 components: - pos: -8.496121,50.8569 parent: 2 type: Transform - proto: FloraTree06 entities: - - uid: 15040 + - uid: 15170 components: - pos: -35.026413,5.9935036 parent: 2 type: Transform - proto: FloraTreeLarge03 entities: - - uid: 15041 + - uid: 15171 components: - pos: 15.442133,-83.60979 parent: 2 type: Transform - proto: FoamBlade entities: - - uid: 15042 + - uid: 15172 components: - pos: -14.780027,-76.18346 parent: 2 type: Transform - proto: FoamCrossbow entities: - - uid: 15043 + - uid: 15173 components: - pos: -11.410641,41.56952 parent: 2 type: Transform - proto: FoodBakedCookieRaisin entities: - - uid: 15044 + - uid: 15174 components: - pos: -2.526709,-33.523388 parent: 2 type: Transform - proto: FoodBowlBig entities: - - uid: 15045 + - uid: 15175 components: - pos: -22.492924,44.20428 parent: 2 type: Transform - - uid: 15046 + - uid: 15176 components: - pos: -22.508549,43.813656 parent: 2 type: Transform - proto: FoodBoxDonkpocketDink entities: - - uid: 15047 + - uid: 15177 components: - pos: 46.42201,-49.40806 parent: 2 type: Transform - proto: FoodBoxDonkpocketHonk entities: - - uid: 15048 + - uid: 15178 components: - pos: 32.37506,-20.42581 parent: 2 type: Transform - proto: FoodBoxDonkpocketPizza entities: - - uid: 15049 + - uid: 15179 components: - pos: -30.632925,-69.35548 parent: 2 type: Transform - - uid: 15050 + - uid: 15180 components: - pos: 46.42201,-49.329933 parent: 2 type: Transform - proto: FoodBoxDonkpocketSpicy entities: - - uid: 15051 + - uid: 15181 components: - pos: -39.41441,-32.343586 parent: 2 type: Transform - proto: FoodBoxDonut entities: - - uid: 15052 + - uid: 15182 components: - pos: 52.62345,11.736868 parent: 2 type: Transform - - uid: 15053 + - uid: 15183 components: - pos: 25.290524,19.578499 parent: 2 type: Transform - proto: FoodBreadBanana entities: - - uid: 15054 + - uid: 15184 components: - pos: -36.588596,16.602194 parent: 2 type: Transform - proto: FoodBurgerBrain entities: - - uid: 15055 + - uid: 15185 components: - pos: -12.411479,-50.405228 parent: 2 type: Transform -- proto: FoodBurgerCorgi - entities: - - uid: 1881 - components: - - pos: 2.9938226,-10.883618 - parent: 2 - type: Transform - proto: FoodCakeSpacemanSlice entities: - - uid: 15057 + - uid: 15186 components: - pos: -34.24552,17.570845 parent: 2 type: Transform - proto: FoodCondimentBottleEnzyme entities: - - uid: 15058 + - uid: 15187 components: - pos: 3.5430002,6.7808695 parent: 2 type: Transform - - uid: 15059 + - uid: 15188 components: - pos: 3.2617502,6.8589945 parent: 2 type: Transform - proto: FoodCornTrash entities: - - uid: 15060 + - uid: 15189 components: - rot: -1.5707963267948966 rad pos: 48.732845,33.42303 @@ -99236,28 +100261,28 @@ entities: type: Transform - proto: FoodDonkpocketBerry entities: - - uid: 15061 + - uid: 15190 components: - pos: -9.518124,43.595463 parent: 2 type: Transform - proto: FoodDonkpocketDink entities: - - uid: 15062 + - uid: 15191 components: - pos: -10.231451,43.574326 parent: 2 type: Transform - proto: FoodDonutChocolate entities: - - uid: 15063 + - uid: 15192 components: - pos: 8.49275,13.726382 parent: 2 type: Transform - proto: FoodFrozenPopsicleTrash entities: - - uid: 15064 + - uid: 15193 components: - rot: -1.5707963267948966 rad pos: 50.420345,33.45428 @@ -99265,158 +100290,163 @@ entities: type: Transform - proto: FoodLemon entities: - - uid: 15065 + - uid: 15194 components: - pos: 55.628414,-67.334946 parent: 2 type: Transform - proto: FoodMealEggplantParm entities: - - uid: 15066 + - uid: 15195 components: - pos: -23.359459,-71.33451 parent: 2 type: Transform - proto: FoodMealFriesCarrot entities: - - uid: 15067 + - uid: 15196 components: - pos: -21.429913,47.709663 parent: 2 type: Transform - proto: FoodMealPotatoYaki entities: - - uid: 15068 + - uid: 15197 components: - pos: 44.419395,-49.295273 parent: 2 type: Transform - proto: FoodMeat entities: - - uid: 15069 + - uid: 15198 components: - pos: -16.53665,-77.55797 parent: 2 type: Transform - - uid: 15070 + - uid: 15199 components: - pos: 64.3404,48.319218 parent: 2 type: Transform - proto: FoodMeatHawaiianKebab entities: - - uid: 15071 + - uid: 15200 components: - pos: -12.469789,31.726183 parent: 2 type: Transform - proto: FoodPieBananaCream entities: - - uid: 15072 + - uid: 15201 components: - pos: 1.5036734,4.5642977 parent: 2 type: Transform - - uid: 15074 + - uid: 15202 components: - pos: -21.504532,37.662663 parent: 2 type: Transform - - uid: 15075 + - uid: 15203 components: - pos: 5.023752,11.565053 parent: 2 type: Transform + - uid: 15204 + components: + - pos: -0.36896515,-23.435265 + parent: 2 + type: Transform - proto: FoodPizzaMoldySlice entities: - - uid: 15076 + - uid: 15205 components: - pos: -58.327778,-27.35657 parent: 2 type: Transform - proto: FoodPizzaPineapple entities: - - uid: 15077 + - uid: 15206 components: - pos: -25.559431,-79.20157 parent: 2 type: Transform - proto: FoodPizzaVegetableSlice entities: - - uid: 15078 + - uid: 15207 components: - pos: 34.483707,-35.33738 parent: 2 type: Transform - proto: FoodPlatePlastic entities: - - uid: 15079 + - uid: 15208 components: - pos: 58.37584,20.738062 parent: 2 type: Transform - - uid: 15080 + - uid: 15209 components: - pos: 57.68834,19.831812 parent: 2 type: Transform - proto: FoodPlateSmallTrash entities: - - uid: 15081 + - uid: 15210 components: - pos: 12.393527,-66.326096 parent: 2 type: Transform - proto: FoodPlateTrash entities: - - uid: 15082 + - uid: 15211 components: - pos: 49.46722,33.501156 parent: 2 type: Transform - proto: FoodRiceBoiled entities: - - uid: 15083 + - uid: 15212 components: - pos: -19.538637,41.826466 parent: 2 type: Transform - proto: FoodRiceEgg entities: - - uid: 15084 + - uid: 15213 components: - pos: -19.538637,43.451466 parent: 2 type: Transform - proto: FoodRicePork entities: - - uid: 15085 + - uid: 15214 components: - pos: -14.4963455,47.699337 parent: 2 type: Transform - - uid: 15086 + - uid: 15215 components: - pos: -19.554262,42.701466 parent: 2 type: Transform - proto: FoodRicePudding entities: - - uid: 15087 + - uid: 15216 components: - pos: -18.492641,33.633274 parent: 2 type: Transform - proto: FoodSaladValid entities: - - uid: 15088 + - uid: 15217 components: - pos: -7.4460807,4.484113 parent: 2 type: Transform - proto: FoodSnackBoritos entities: - - uid: 15089 + - uid: 15218 components: - rot: -1.5707963267948966 rad pos: -11.473979,-49.827103 @@ -99424,14 +100454,14 @@ entities: type: Transform - proto: FoodSnackDanDanNoodles entities: - - uid: 15090 + - uid: 15219 components: - pos: -17.010939,42.53945 parent: 2 type: Transform - proto: FoodSnackRaisins entities: - - uid: 15091 + - uid: 15220 components: - rot: -1.5707963267948966 rad pos: -54.526974,-39.17369 @@ -99439,56 +100469,56 @@ entities: type: Transform - proto: FoodSnackSus entities: - - uid: 15092 + - uid: 15221 components: - pos: -12.469789,32.52306 parent: 2 type: Transform - proto: FoodSoupClown entities: - - uid: 15093 + - uid: 15222 components: - pos: 48.47484,-21.900894 parent: 2 type: Transform - proto: FoodSoupVegetable entities: - - uid: 15094 + - uid: 15223 components: - pos: -16.443905,21.40528 parent: 2 type: Transform - proto: FoodTartGapple entities: - - uid: 15095 + - uid: 15224 components: - pos: 44.89154,-26.413532 parent: 2 type: Transform - proto: FoodTartMime entities: - - uid: 15096 + - uid: 15225 components: - pos: -28.494537,45.97597 parent: 2 type: Transform - proto: FoodTinPeachesMaint entities: - - uid: 15097 + - uid: 15226 components: - pos: -27.385347,-52.20374 parent: 2 type: Transform - proto: FoodTinPeachesMaintOpen entities: - - uid: 15098 + - uid: 15227 components: - pos: 50.52597,42.757114 parent: 2 type: Transform - proto: FoodTinPeachesTrash entities: - - uid: 15099 + - uid: 15228 components: - rot: -1.5707963267948966 rad pos: 50.40472,33.469906 @@ -99496,7 +100526,7 @@ entities: type: Transform - proto: ForensicScanner entities: - - uid: 15100 + - uid: 15229 components: - rot: -1.5707963267948966 rad pos: 22.266937,-14.419123 @@ -99504,7 +100534,7 @@ entities: type: Transform - proto: GarlicSeeds entities: - - uid: 15101 + - uid: 15230 components: - rot: 3.141592653589793 rad pos: -9.594382,12.492181 @@ -99512,126 +100542,126 @@ entities: type: Transform - proto: GasAnalyzer entities: - - uid: 15102 + - uid: 15231 components: - pos: -22.469156,-58.33799 parent: 2 type: Transform - - uid: 15103 + - uid: 15232 components: - pos: 53.6123,-53.30506 parent: 2 type: Transform - - uid: 15104 + - uid: 15233 components: - pos: -35.42214,-48.770245 parent: 2 type: Transform - - uid: 15105 + - uid: 15234 components: - pos: 4.481148,-75.45175 parent: 2 type: Transform - - uid: 15106 + - uid: 15235 components: - pos: -55.480183,-48.446095 parent: 2 type: Transform - - uid: 15107 + - uid: 15236 components: - pos: -73.40059,-39.44707 parent: 2 type: Transform - proto: GasCanisterBrokenBase entities: - - uid: 15108 + - uid: 15237 components: - pos: -28.5,-21.5 parent: 2 type: Transform - proto: GasFilterFlipped entities: - - uid: 15109 + - uid: 15238 components: - rot: 3.141592653589793 rad pos: 45.5,-59.5 parent: 2 type: Transform - - uid: 15110 + - uid: 15239 components: - pos: -44.5,-46.5 parent: 2 type: Transform - - uid: 15111 + - uid: 15240 components: - pos: -44.5,-44.5 parent: 2 type: Transform - - uid: 15112 + - uid: 15241 components: - pos: -44.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15113 + - uid: 15242 components: - pos: -44.5,-48.5 parent: 2 type: Transform - - uid: 15114 + - uid: 15243 components: - pos: -44.5,-50.5 parent: 2 type: Transform - - uid: 15115 + - uid: 15244 components: - pos: -44.5,-52.5 parent: 2 type: Transform - - uid: 15116 + - uid: 15245 components: - pos: -44.5,-54.5 parent: 2 type: Transform - proto: GasMinerCarbonDioxide entities: - - uid: 15117 + - uid: 15246 components: - pos: -49.5,-50.5 parent: 2 type: Transform - proto: GasMinerNitrogenStationLarge entities: - - uid: 15118 + - uid: 15247 components: - pos: -49.5,-54.5 parent: 2 type: Transform - proto: GasMinerOxygenStationLarge entities: - - uid: 15119 + - uid: 15248 components: - pos: -49.5,-52.5 parent: 2 type: Transform - proto: GasMinerPlasma entities: - - uid: 15120 + - uid: 15249 components: - pos: -49.5,-46.5 parent: 2 type: Transform - proto: GasMinerWaterVapor entities: - - uid: 15121 + - uid: 15250 components: - pos: -49.5,-48.5 parent: 2 type: Transform - proto: GasMixer entities: - - uid: 15122 + - uid: 15251 components: - rot: 1.5707963267948966 rad pos: 55.5,-59.5 @@ -99639,7 +100669,7 @@ entities: type: Transform - proto: GasMixerFlipped entities: - - uid: 15123 + - uid: 15252 components: - pos: -42.5,-51.5 parent: 2 @@ -99647,7 +100677,7 @@ entities: - inletTwoConcentration: 0 inletOneConcentration: 1 type: GasMixer - - uid: 15124 + - uid: 15253 components: - pos: -42.5,-52.5 parent: 2 @@ -99655,7 +100685,7 @@ entities: - inletTwoConcentration: 1 inletOneConcentration: 0 type: GasMixer - - uid: 15125 + - uid: 15254 components: - rot: -1.5707963267948966 rad pos: -42.5,-55.5 @@ -99666,7 +100696,7 @@ entities: type: GasMixer - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 15126 + - uid: 15255 components: - pos: -42.5,-49.5 parent: 2 @@ -99674,7 +100704,7 @@ entities: - inletTwoConcentration: 0 inletOneConcentration: 1 type: GasMixer - - uid: 15127 + - uid: 15256 components: - pos: -42.5,-47.5 parent: 2 @@ -99682,7 +100712,7 @@ entities: - inletTwoConcentration: 0 inletOneConcentration: 1 type: GasMixer - - uid: 15128 + - uid: 15257 components: - pos: -42.5,-45.5 parent: 2 @@ -99690,7 +100720,7 @@ entities: - inletTwoConcentration: 0 inletOneConcentration: 1 type: GasMixer - - uid: 15129 + - uid: 15258 components: - pos: -42.5,-43.5 parent: 2 @@ -99700,91 +100730,91 @@ entities: type: GasMixer - proto: GasOutletInjector entities: - - uid: 15130 + - uid: 15259 components: - rot: 1.5707963267948966 rad pos: -48.5,-54.5 parent: 2 type: Transform - - uid: 15131 + - uid: 15260 components: - rot: 1.5707963267948966 rad pos: -48.5,-52.5 parent: 2 type: Transform - - uid: 15132 + - uid: 15261 components: - rot: 1.5707963267948966 rad pos: -48.5,-50.5 parent: 2 type: Transform - - uid: 15133 + - uid: 15262 components: - rot: 1.5707963267948966 rad pos: -48.5,-48.5 parent: 2 type: Transform - - uid: 15134 + - uid: 15263 components: - rot: 1.5707963267948966 rad pos: -48.5,-46.5 parent: 2 type: Transform - - uid: 15135 + - uid: 15264 components: - rot: 1.5707963267948966 rad pos: -48.5,-44.5 parent: 2 type: Transform - - uid: 15136 + - uid: 15265 components: - rot: 1.5707963267948966 rad pos: -48.5,-42.5 parent: 2 type: Transform - - uid: 15137 + - uid: 15266 components: - pos: -42.5,-35.5 parent: 2 type: Transform - proto: GasPassiveVent entities: - - uid: 15138 + - uid: 15267 components: - pos: -44.5,-36.5 parent: 2 type: Transform - - uid: 15139 + - uid: 15268 components: - rot: -1.5707963267948966 rad pos: -63.5,-43.5 parent: 2 type: Transform - - uid: 15140 + - uid: 15269 components: - pos: -50.5,-52.5 parent: 2 type: Transform - - uid: 15141 + - uid: 15270 components: - pos: 73.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15142 + - uid: 15271 components: - rot: 3.141592653589793 rad pos: 51.5,-60.5 parent: 2 type: Transform - - uid: 15143 + - uid: 15272 components: - rot: 3.141592653589793 rad pos: 48.5,-60.5 parent: 2 type: Transform - - uid: 15144 + - uid: 15273 components: - rot: 3.141592653589793 rad pos: 49.5,-63.5 @@ -99792,56 +100822,56 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15145 + - uid: 15274 components: - pos: -50.5,-54.5 parent: 2 type: Transform - - uid: 15146 + - uid: 15275 components: - pos: -50.5,-50.5 parent: 2 type: Transform - - uid: 15147 + - uid: 15276 components: - pos: -50.5,-48.5 parent: 2 type: Transform - - uid: 15148 + - uid: 15277 components: - pos: -50.5,-46.5 parent: 2 type: Transform - - uid: 15149 + - uid: 15278 components: - pos: -50.5,-44.5 parent: 2 type: Transform - - uid: 15150 + - uid: 15279 components: - pos: -50.5,-42.5 parent: 2 type: Transform - - uid: 15151 + - uid: 15280 components: - rot: 3.141592653589793 rad pos: -38.5,-60.5 parent: 2 type: Transform - - uid: 15152 + - uid: 15281 components: - pos: 1.5,26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15153 + - uid: 15282 components: - rot: 3.141592653589793 rad pos: 70.5,32.5 parent: 2 type: Transform - - uid: 15154 + - uid: 15283 components: - rot: 3.141592653589793 rad pos: 3.5,64.5 @@ -99849,7 +100879,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15155 + - uid: 15284 components: - rot: 3.141592653589793 rad pos: 2.5,63.5 @@ -99857,7 +100887,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15156 + - uid: 15285 components: - rot: 3.141592653589793 rad pos: -5.5,63.5 @@ -99865,7 +100895,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15157 + - uid: 15286 components: - rot: 3.141592653589793 rad pos: -6.5,64.5 @@ -99873,7 +100903,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15158 + - uid: 15287 components: - rot: 1.5707963267948966 rad pos: -0.5,69.5 @@ -99881,7 +100911,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15159 + - uid: 15288 components: - rot: -1.5707963267948966 rad pos: -2.5,69.5 @@ -99889,7 +100919,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15160 + - uid: 15289 components: - rot: 3.141592653589793 rad pos: 66.5,-40.5 @@ -99897,27 +100927,27 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15161 + - uid: 15290 components: - pos: 72.5,-29.5 parent: 2 type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 15162 + - uid: 15291 components: - rot: 3.141592653589793 rad pos: -55.5,-63.5 parent: 2 type: Transform - - uid: 15163 + - uid: 15292 components: - pos: 71.5,-29.5 parent: 2 type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 15164 + - uid: 15293 components: - rot: 1.5707963267948966 rad pos: 68.5,-38.5 @@ -99925,13 +100955,13 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 15165 + - uid: 15294 components: - rot: 3.141592653589793 rad pos: 55.5,-51.5 parent: 2 type: Transform - - uid: 15166 + - uid: 15295 components: - rot: 1.5707963267948966 rad pos: 68.5,-37.5 @@ -99939,13 +100969,13 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 15167 + - uid: 15296 components: - rot: -1.5707963267948966 rad pos: -44.5,-35.5 parent: 2 type: Transform - - uid: 15168 + - uid: 15297 components: - rot: 1.5707963267948966 rad pos: -76.5,-40.5 @@ -99953,7 +100983,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15169 + - uid: 15298 components: - rot: 1.5707963267948966 rad pos: -76.5,-42.5 @@ -99963,45 +100993,22 @@ entities: type: AtmosPipeColor - proto: GasPipeBend entities: - - uid: 12533 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-6.5 - parent: 2 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12558 + - uid: 15299 components: - rot: -1.5707963267948966 rad - pos: 2.5,-3.5 - parent: 2 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12839 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-3.5 - parent: 2 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 13143 - components: - - pos: 2.5,-10.5 + pos: 2.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15170 + - uid: 15300 components: - pos: -70.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 15171 + - uid: 15301 components: - rot: 1.5707963267948966 rad pos: -73.5,-23.5 @@ -100009,7 +101016,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15172 + - uid: 15302 components: - rot: -1.5707963267948966 rad pos: -71.5,-32.5 @@ -100017,7 +101024,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15173 + - uid: 15303 components: - rot: 1.5707963267948966 rad pos: -72.5,-32.5 @@ -100025,7 +101032,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15174 + - uid: 15304 components: - rot: -1.5707963267948966 rad pos: -62.5,-42.5 @@ -100035,7 +101042,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15175 + - uid: 15305 components: - rot: -1.5707963267948966 rad pos: -70.5,-46.5 @@ -100045,7 +101052,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15176 + - uid: 15306 components: - rot: 3.141592653589793 rad pos: -68.5,-46.5 @@ -100055,14 +101062,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15177 + - uid: 15307 components: - pos: -3.5,16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15178 + - uid: 15308 components: - rot: -1.5707963267948966 rad pos: 35.5,3.5 @@ -100072,7 +101079,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15179 + - uid: 15309 components: - rot: 3.141592653589793 rad pos: 20.5,-42.5 @@ -100080,7 +101087,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15180 + - uid: 15310 components: - rot: 1.5707963267948966 rad pos: -3.5,-53.5 @@ -100088,7 +101095,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15181 + - uid: 15311 components: - rot: 1.5707963267948966 rad pos: -1.5,-46.5 @@ -100096,21 +101103,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15182 + - uid: 15312 components: - pos: -7.5,-46.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15183 + - uid: 15313 components: - pos: -6.5,-63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15184 + - uid: 15314 components: - rot: -1.5707963267948966 rad pos: 22.5,-5.5 @@ -100118,7 +101125,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15185 + - uid: 15315 components: - rot: 3.141592653589793 rad pos: 7.5,13.5 @@ -100126,21 +101133,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15186 + - uid: 15316 components: - pos: 36.5,5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15190 + - uid: 15317 components: - pos: 29.5,21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15191 + - uid: 15318 components: - rot: 3.141592653589793 rad pos: 29.5,18.5 @@ -100148,7 +101155,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15192 + - uid: 15319 components: - rot: 3.141592653589793 rad pos: -12.5,5.5 @@ -100156,7 +101163,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15193 + - uid: 15320 components: - rot: 1.5707963267948966 rad pos: -9.5,-1.5 @@ -100164,14 +101171,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15194 + - uid: 15321 components: - pos: -4.5,-60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15195 + - uid: 15322 components: - rot: 1.5707963267948966 rad pos: -6.5,-60.5 @@ -100179,7 +101186,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15196 + - uid: 15323 components: - rot: -1.5707963267948966 rad pos: -6.5,-61.5 @@ -100187,7 +101194,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15197 + - uid: 15324 components: - rot: 1.5707963267948966 rad pos: 26.5,-22.5 @@ -100195,7 +101202,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15198 + - uid: 15325 components: - rot: 3.141592653589793 rad pos: 36.5,11.5 @@ -100205,7 +101212,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15199 + - uid: 15326 components: - rot: 1.5707963267948966 rad pos: 28.5,10.5 @@ -100213,14 +101220,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15200 + - uid: 15327 components: - pos: -12.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15201 + - uid: 15328 components: - rot: 3.141592653589793 rad pos: 5.5,12.5 @@ -100228,14 +101235,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15202 + - uid: 15329 components: - pos: 34.5,5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15203 + - uid: 15330 components: - rot: 3.141592653589793 rad pos: 11.5,-43.5 @@ -100243,7 +101250,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15204 + - uid: 15331 components: - rot: 1.5707963267948966 rad pos: -14.5,-41.5 @@ -100251,7 +101258,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15205 + - uid: 15332 components: - rot: 1.5707963267948966 rad pos: -9.5,-53.5 @@ -100259,7 +101266,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15206 + - uid: 15333 components: - rot: 3.141592653589793 rad pos: -7.5,-63.5 @@ -100267,7 +101274,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15207 + - uid: 15334 components: - pos: 35.5,9.5 parent: 2 @@ -100276,7 +101283,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15208 + - uid: 15335 components: - rot: 3.141592653589793 rad pos: 17.5,-5.5 @@ -100284,7 +101291,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15209 + - uid: 15336 components: - rot: 1.5707963267948966 rad pos: 31.5,10.5 @@ -100292,7 +101299,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15210 + - uid: 15337 components: - rot: 3.141592653589793 rad pos: 29.5,15.5 @@ -100300,14 +101307,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15211 + - uid: 15338 components: - pos: 29.5,17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15212 + - uid: 15339 components: - rot: 1.5707963267948966 rad pos: 25.5,12.5 @@ -100315,21 +101322,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15213 + - uid: 15340 components: - pos: 14.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15214 + - uid: 15341 components: - pos: 11.5,12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15215 + - uid: 15342 components: - rot: -1.5707963267948966 rad pos: 23.5,16.5 @@ -100337,7 +101344,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15216 + - uid: 15343 components: - rot: 3.141592653589793 rad pos: 26.5,9.5 @@ -100345,7 +101352,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15218 + - uid: 15344 components: - rot: 3.141592653589793 rad pos: 21.5,7.5 @@ -100353,7 +101360,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15219 + - uid: 15345 components: - rot: -1.5707963267948966 rad pos: 20.5,7.5 @@ -100361,7 +101368,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15220 + - uid: 15346 components: - rot: 1.5707963267948966 rad pos: 18.5,7.5 @@ -100369,14 +101376,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15221 + - uid: 15347 components: - pos: 1.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15223 + - uid: 15348 components: - rot: -1.5707963267948966 rad pos: 10.5,2.5 @@ -100384,7 +101391,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15224 + - uid: 15349 components: - rot: 1.5707963267948966 rad pos: 9.5,2.5 @@ -100392,7 +101399,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15225 + - uid: 15350 components: - rot: 3.141592653589793 rad pos: 9.5,-1.5 @@ -100400,14 +101407,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15226 + - uid: 15351 components: - pos: 11.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15227 + - uid: 15352 components: - rot: -1.5707963267948966 rad pos: 11.5,-9.5 @@ -100415,7 +101422,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15228 + - uid: 15353 components: - rot: 1.5707963267948966 rad pos: 19.5,21.5 @@ -100425,7 +101432,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15229 + - uid: 15354 components: - rot: 1.5707963267948966 rad pos: 23.5,20.5 @@ -100433,7 +101440,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15230 + - uid: 15355 components: - rot: -1.5707963267948966 rad pos: 25.5,20.5 @@ -100441,7 +101448,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15231 + - uid: 15356 components: - rot: -1.5707963267948966 rad pos: -23.5,-16.5 @@ -100449,7 +101456,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15232 + - uid: 15357 components: - rot: 1.5707963267948966 rad pos: 26.5,-6.5 @@ -100457,7 +101464,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15233 + - uid: 15358 components: - rot: 3.141592653589793 rad pos: 25.5,-7.5 @@ -100465,7 +101472,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15234 + - uid: 15359 components: - rot: 3.141592653589793 rad pos: 20.5,-23.5 @@ -100473,7 +101480,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15235 + - uid: 15360 components: - rot: 3.141592653589793 rad pos: 24.5,-52.5 @@ -100481,7 +101488,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15236 + - uid: 15361 components: - rot: -1.5707963267948966 rad pos: -10.5,5.5 @@ -100489,7 +101496,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15237 + - uid: 15362 components: - rot: 1.5707963267948966 rad pos: -10.5,7.5 @@ -100497,7 +101504,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15238 + - uid: 15363 components: - rot: 3.141592653589793 rad pos: -9.5,-5.5 @@ -100505,7 +101512,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15239 + - uid: 15364 components: - rot: 3.141592653589793 rad pos: -10.5,-6.5 @@ -100513,7 +101520,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15240 + - uid: 15365 components: - rot: 3.141592653589793 rad pos: -4.5,-61.5 @@ -100521,14 +101528,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15241 + - uid: 15366 components: - pos: 11.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15242 + - uid: 15367 components: - rot: 1.5707963267948966 rad pos: -21.5,-84.5 @@ -100536,14 +101543,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15243 + - uid: 15368 components: - pos: 36.5,8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15244 + - uid: 15369 components: - rot: -1.5707963267948966 rad pos: -3.5,7.5 @@ -100551,7 +101558,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15245 + - uid: 15370 components: - rot: 3.141592653589793 rad pos: -3.5,-60.5 @@ -100559,7 +101566,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15246 + - uid: 15371 components: - rot: 1.5707963267948966 rad pos: -7.5,-59.5 @@ -100567,14 +101574,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15247 + - uid: 15372 components: - pos: 1.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15248 + - uid: 15373 components: - rot: 1.5707963267948966 rad pos: 34.5,10.5 @@ -100582,7 +101589,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15249 + - uid: 15374 components: - rot: 3.141592653589793 rad pos: 4.5,16.5 @@ -100590,14 +101597,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15250 + - uid: 15375 components: - pos: -4.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15251 + - uid: 15376 components: - rot: -1.5707963267948966 rad pos: -6.5,8.5 @@ -100605,7 +101612,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15252 + - uid: 15377 components: - rot: 3.141592653589793 rad pos: -16.5,-38.5 @@ -100613,7 +101620,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15253 + - uid: 15378 components: - rot: 3.141592653589793 rad pos: 1.5,5.5 @@ -100621,14 +101628,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15254 + - uid: 15379 components: - pos: 8.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15255 + - uid: 15380 components: - rot: -1.5707963267948966 rad pos: 19.5,17.5 @@ -100636,17 +101643,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15256 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-31.5 - parent: 2 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15257 + - uid: 15381 components: - rot: 3.141592653589793 rad pos: 41.5,-27.5 @@ -100654,17 +101651,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15258 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-31.5 - parent: 2 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15259 + - uid: 15382 components: - rot: -1.5707963267948966 rad pos: -16.5,30.5 @@ -100672,15 +101659,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15260 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-14.5 - parent: 2 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15261 + - uid: 15383 components: - pos: 36.5,12.5 parent: 2 @@ -100689,7 +101668,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15262 + - uid: 15384 components: - rot: 3.141592653589793 rad pos: 0.5,7.5 @@ -100697,21 +101676,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15263 + - uid: 15385 components: - pos: 2.5,5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15264 + - uid: 15386 components: - pos: 4.5,0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15265 + - uid: 15387 components: - rot: 3.141592653589793 rad pos: 4.5,-0.5 @@ -100719,7 +101698,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15266 + - uid: 15388 components: - rot: -1.5707963267948966 rad pos: -7.5,-53.5 @@ -100727,7 +101706,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15267 + - uid: 15389 components: - rot: 1.5707963267948966 rad pos: -8.5,8.5 @@ -100735,7 +101714,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15268 + - uid: 15390 components: - rot: 3.141592653589793 rad pos: 26.5,-18.5 @@ -100743,7 +101722,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15269 + - uid: 15391 components: - rot: 3.141592653589793 rad pos: 21.5,-18.5 @@ -100751,7 +101730,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15270 + - uid: 15392 components: - rot: 1.5707963267948966 rad pos: 10.5,11.5 @@ -100759,14 +101738,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15271 + - uid: 15393 components: - pos: 24.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15274 + - uid: 15394 components: - rot: -1.5707963267948966 rad pos: -15.5,29.5 @@ -100774,7 +101753,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15276 + - uid: 15395 components: - rot: 1.5707963267948966 rad pos: -24.5,-85.5 @@ -100782,7 +101761,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15277 + - uid: 15396 components: - rot: -1.5707963267948966 rad pos: 34.5,-6.5 @@ -100790,7 +101769,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15278 + - uid: 15397 components: - rot: 1.5707963267948966 rad pos: 15.5,-17.5 @@ -100798,7 +101777,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15279 + - uid: 15398 components: - rot: -1.5707963267948966 rad pos: -1.5,-53.5 @@ -100806,7 +101785,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15280 + - uid: 15399 components: - rot: 1.5707963267948966 rad pos: -23.5,-73.5 @@ -100814,7 +101793,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15281 + - uid: 15400 components: - rot: -1.5707963267948966 rad pos: 30.5,-22.5 @@ -100822,21 +101801,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15282 + - uid: 15401 components: - pos: 36.5,-16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15283 + - uid: 15402 components: - pos: 34.5,-18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15284 + - uid: 15403 components: - rot: 1.5707963267948966 rad pos: 41.5,-24.5 @@ -100844,7 +101823,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15285 + - uid: 15404 components: - rot: -1.5707963267948966 rad pos: 47.5,-28.5 @@ -100852,14 +101831,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15286 + - uid: 15405 components: - pos: 46.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15287 + - uid: 15406 components: - rot: 3.141592653589793 rad pos: 44.5,-28.5 @@ -100867,7 +101846,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15288 + - uid: 15407 components: - rot: 1.5707963267948966 rad pos: 44.5,-23.5 @@ -100875,7 +101854,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15289 + - uid: 15408 components: - rot: -1.5707963267948966 rad pos: -27.5,-79.5 @@ -100883,7 +101862,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15290 + - uid: 15409 components: - rot: 1.5707963267948966 rad pos: -25.5,-72.5 @@ -100891,7 +101870,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15291 + - uid: 15410 components: - rot: 1.5707963267948966 rad pos: -20.5,-61.5 @@ -100899,7 +101878,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15292 + - uid: 15411 components: - rot: 1.5707963267948966 rad pos: 32.5,-41.5 @@ -100907,7 +101886,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15293 + - uid: 15412 components: - rot: -1.5707963267948966 rad pos: 32.5,-42.5 @@ -100915,7 +101894,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15294 + - uid: 15413 components: - rot: 3.141592653589793 rad pos: 30.5,14.5 @@ -100923,7 +101902,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15295 + - uid: 15414 components: - rot: 3.141592653589793 rad pos: 47.5,21.5 @@ -100931,7 +101910,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15296 + - uid: 15415 components: - rot: 3.141592653589793 rad pos: 50.5,13.5 @@ -100939,7 +101918,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15297 + - uid: 15416 components: - rot: 3.141592653589793 rad pos: 49.5,12.5 @@ -100947,7 +101926,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15298 + - uid: 15417 components: - rot: -1.5707963267948966 rad pos: 58.5,12.5 @@ -100955,7 +101934,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15299 + - uid: 15418 components: - rot: 3.141592653589793 rad pos: 59.5,11.5 @@ -100963,7 +101942,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15300 + - uid: 15419 components: - rot: -1.5707963267948966 rad pos: 44.5,-3.5 @@ -100971,7 +101950,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15301 + - uid: 15420 components: - rot: 3.141592653589793 rad pos: 25.5,-60.5 @@ -100979,7 +101958,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15302 + - uid: 15421 components: - rot: 3.141592653589793 rad pos: 52.5,-11.5 @@ -100987,7 +101966,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15303 + - uid: 15422 components: - rot: 3.141592653589793 rad pos: 55.5,-12.5 @@ -100995,28 +101974,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15304 + - uid: 15423 components: - pos: 57.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15305 + - uid: 15424 components: - pos: 49.5,-52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15306 + - uid: 15425 components: - pos: 63.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15307 + - uid: 15426 components: - rot: 3.141592653589793 rad pos: 62.5,-42.5 @@ -101024,7 +102003,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15308 + - uid: 15427 components: - rot: 1.5707963267948966 rad pos: 62.5,-35.5 @@ -101032,14 +102011,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15309 + - uid: 15428 components: - pos: 61.5,-35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15310 + - uid: 15429 components: - rot: -1.5707963267948966 rad pos: 64.5,-35.5 @@ -101047,14 +102026,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15311 + - uid: 15430 components: - pos: 64.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15312 + - uid: 15431 components: - rot: 3.141592653589793 rad pos: 60.5,-35.5 @@ -101062,7 +102041,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15313 + - uid: 15432 components: - rot: -1.5707963267948966 rad pos: 61.5,-32.5 @@ -101070,7 +102049,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15314 + - uid: 15433 components: - rot: 3.141592653589793 rad pos: 63.5,-32.5 @@ -101078,7 +102057,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15315 + - uid: 15434 components: - rot: 1.5707963267948966 rad pos: 61.5,-10.5 @@ -101086,7 +102065,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15316 + - uid: 15435 components: - rot: -1.5707963267948966 rad pos: 62.5,-10.5 @@ -101094,14 +102073,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15317 + - uid: 15436 components: - pos: 64.5,-46.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15318 + - uid: 15437 components: - rot: 1.5707963267948966 rad pos: 60.5,-46.5 @@ -101109,7 +102088,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15319 + - uid: 15438 components: - rot: 1.5707963267948966 rad pos: 42.5,-45.5 @@ -101117,7 +102096,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15320 + - uid: 15439 components: - rot: 3.141592653589793 rad pos: 26.5,-58.5 @@ -101125,7 +102104,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15321 + - uid: 15440 components: - rot: -1.5707963267948966 rad pos: 34.5,-52.5 @@ -101133,7 +102112,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15322 + - uid: 15441 components: - rot: 3.141592653589793 rad pos: 28.5,-49.5 @@ -101141,19 +102120,19 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15323 + - uid: 15442 components: - rot: 3.141592653589793 rad pos: 50.5,-58.5 parent: 2 type: Transform - - uid: 15324 + - uid: 15443 components: - rot: 3.141592653589793 rad pos: 47.5,-58.5 parent: 2 type: Transform - - uid: 15325 + - uid: 15444 components: - rot: 1.5707963267948966 rad pos: -24.5,-22.5 @@ -101161,7 +102140,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15326 + - uid: 15445 components: - rot: 1.5707963267948966 rad pos: -23.5,-21.5 @@ -101169,7 +102148,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15327 + - uid: 15446 components: - rot: -1.5707963267948966 rad pos: -25.5,-17.5 @@ -101177,7 +102156,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15328 + - uid: 15447 components: - rot: 3.141592653589793 rad pos: 50.5,-54.5 @@ -101185,14 +102164,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15329 + - uid: 15448 components: - pos: 52.5,-54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15330 + - uid: 15449 components: - rot: 3.141592653589793 rad pos: 52.5,-57.5 @@ -101200,28 +102179,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15331 + - uid: 15450 components: - pos: -14.5,6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15332 + - uid: 15451 components: - pos: -18.5,-4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15333 + - uid: 15452 components: - pos: -20.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15334 + - uid: 15453 components: - rot: -1.5707963267948966 rad pos: -18.5,-46.5 @@ -101229,7 +102208,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15335 + - uid: 15454 components: - rot: 3.141592653589793 rad pos: -20.5,-47.5 @@ -101237,7 +102216,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15336 + - uid: 15455 components: - rot: 1.5707963267948966 rad pos: 2.5,-56.5 @@ -101245,7 +102224,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15337 + - uid: 15456 components: - rot: 3.141592653589793 rad pos: -42.5,-15.5 @@ -101253,7 +102232,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15338 + - uid: 15457 components: - rot: 1.5707963267948966 rad pos: -26.5,6.5 @@ -101261,7 +102240,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15339 + - uid: 15458 components: - rot: 3.141592653589793 rad pos: -26.5,-5.5 @@ -101269,7 +102248,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15340 + - uid: 15459 components: - rot: 3.141592653589793 rad pos: -24.5,-4.5 @@ -101277,7 +102256,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15341 + - uid: 15460 components: - rot: 1.5707963267948966 rad pos: -24.5,7.5 @@ -101285,7 +102264,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15342 + - uid: 15461 components: - rot: 1.5707963267948966 rad pos: -44.5,-11.5 @@ -101293,7 +102272,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15343 + - uid: 15462 components: - rot: 3.141592653589793 rad pos: -44.5,-10.5 @@ -101301,28 +102280,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15344 + - uid: 15463 components: - pos: -42.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15345 + - uid: 15464 components: - pos: -41.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15346 + - uid: 15465 components: - pos: -31.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15347 + - uid: 15466 components: - rot: 1.5707963267948966 rad pos: -53.5,-5.5 @@ -101330,7 +102309,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15348 + - uid: 15467 components: - rot: 1.5707963267948966 rad pos: -52.5,-6.5 @@ -101338,28 +102317,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15349 + - uid: 15468 components: - pos: -50.5,-17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15350 + - uid: 15469 components: - pos: -51.5,-19.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15351 + - uid: 15470 components: - pos: -47.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15352 + - uid: 15471 components: - rot: 1.5707963267948966 rad pos: -54.5,-17.5 @@ -101367,7 +102346,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15353 + - uid: 15472 components: - rot: -1.5707963267948966 rad pos: -54.5,-23.5 @@ -101375,7 +102354,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15354 + - uid: 15473 components: - rot: -1.5707963267948966 rad pos: -53.5,-25.5 @@ -101383,7 +102362,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15355 + - uid: 15474 components: - rot: 3.141592653589793 rad pos: -50.5,-55.5 @@ -101391,7 +102370,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15356 + - uid: 15475 components: - rot: 3.141592653589793 rad pos: -50.5,-53.5 @@ -101399,7 +102378,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15357 + - uid: 15476 components: - rot: 3.141592653589793 rad pos: -50.5,-51.5 @@ -101407,7 +102386,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15358 + - uid: 15477 components: - rot: 3.141592653589793 rad pos: -50.5,-49.5 @@ -101415,7 +102394,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15359 + - uid: 15478 components: - rot: 3.141592653589793 rad pos: -50.5,-47.5 @@ -101423,7 +102402,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15360 + - uid: 15479 components: - rot: 3.141592653589793 rad pos: -50.5,-45.5 @@ -101431,7 +102410,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15361 + - uid: 15480 components: - rot: 3.141592653589793 rad pos: -50.5,-43.5 @@ -101439,7 +102418,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15362 + - uid: 15481 components: - rot: 1.5707963267948966 rad pos: -43.5,-52.5 @@ -101447,7 +102426,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15363 + - uid: 15482 components: - rot: 3.141592653589793 rad pos: -44.5,-57.5 @@ -101455,7 +102434,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15364 + - uid: 15483 components: - pos: -37.5,-48.5 parent: 2 @@ -101464,7 +102443,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15365 + - uid: 15484 components: - rot: 1.5707963267948966 rad pos: -40.5,-48.5 @@ -101474,7 +102453,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15366 + - uid: 15485 components: - rot: -1.5707963267948966 rad pos: -34.5,-57.5 @@ -101482,7 +102461,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15367 + - uid: 15486 components: - rot: 1.5707963267948966 rad pos: -34.5,-40.5 @@ -101490,7 +102469,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15368 + - uid: 15487 components: - rot: -1.5707963267948966 rad pos: -32.5,-40.5 @@ -101498,7 +102477,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15369 + - uid: 15488 components: - rot: 1.5707963267948966 rad pos: -35.5,-41.5 @@ -101506,7 +102485,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15370 + - uid: 15489 components: - rot: -1.5707963267948966 rad pos: -31.5,-41.5 @@ -101514,14 +102493,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15371 + - uid: 15490 components: - pos: -38.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15372 + - uid: 15491 components: - rot: 3.141592653589793 rad pos: -40.5,-35.5 @@ -101529,14 +102508,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15373 + - uid: 15492 components: - pos: -40.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15374 + - uid: 15493 components: - rot: 3.141592653589793 rad pos: -20.5,-60.5 @@ -101544,7 +102523,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15375 + - uid: 15494 components: - rot: 1.5707963267948966 rad pos: -42.5,-69.5 @@ -101552,7 +102531,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15376 + - uid: 15495 components: - pos: -20.5,-58.5 parent: 2 @@ -101561,7 +102540,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15377 + - uid: 15496 components: - rot: 1.5707963267948966 rad pos: -25.5,-57.5 @@ -101569,21 +102548,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15378 + - uid: 15497 components: - pos: -41.5,31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15379 + - uid: 15498 components: - pos: -40.5,33.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15380 + - uid: 15499 components: - rot: -1.5707963267948966 rad pos: -49.5,31.5 @@ -101591,7 +102570,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15381 + - uid: 15500 components: - rot: 1.5707963267948966 rad pos: -37.5,13.5 @@ -101599,7 +102578,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15382 + - uid: 15501 components: - rot: 1.5707963267948966 rad pos: -38.5,14.5 @@ -101607,19 +102586,19 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15383 + - uid: 15502 components: - rot: -1.5707963267948966 rad pos: -33.5,-53.5 parent: 2 type: Transform - - uid: 15384 + - uid: 15503 components: - rot: -1.5707963267948966 rad pos: -33.5,-55.5 parent: 2 type: Transform - - uid: 15385 + - uid: 15504 components: - rot: 1.5707963267948966 rad pos: 19.5,-53.5 @@ -101629,7 +102608,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15386 + - uid: 15505 components: - rot: 1.5707963267948966 rad pos: -45.5,-71.5 @@ -101639,7 +102618,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15387 + - uid: 15506 components: - rot: -1.5707963267948966 rad pos: -45.5,-76.5 @@ -101647,7 +102626,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15388 + - uid: 15507 components: - rot: -1.5707963267948966 rad pos: -40.5,-72.5 @@ -101655,7 +102634,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15389 + - uid: 15508 components: - rot: 1.5707963267948966 rad pos: -46.5,-72.5 @@ -101663,7 +102642,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15390 + - uid: 15509 components: - rot: -1.5707963267948966 rad pos: -46.5,-75.5 @@ -101671,7 +102650,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15391 + - uid: 15510 components: - rot: 3.141592653589793 rad pos: -54.5,-75.5 @@ -101679,7 +102658,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15392 + - uid: 15511 components: - rot: 1.5707963267948966 rad pos: -54.5,-76.5 @@ -101687,7 +102666,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15393 + - uid: 15512 components: - rot: -1.5707963267948966 rad pos: -19.5,-43.5 @@ -101695,7 +102674,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15394 + - uid: 15513 components: - rot: 1.5707963267948966 rad pos: -19.5,-41.5 @@ -101703,14 +102682,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15395 + - uid: 15514 components: - pos: -15.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15396 + - uid: 15515 components: - rot: 3.141592653589793 rad pos: -15.5,-43.5 @@ -101718,7 +102697,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15397 + - uid: 15516 components: - rot: -1.5707963267948966 rad pos: 2.5,11.5 @@ -101726,7 +102705,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15398 + - uid: 15517 components: - rot: 3.141592653589793 rad pos: 1.5,11.5 @@ -101734,14 +102713,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15399 + - uid: 15518 components: - pos: -5.5,-64.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15400 + - uid: 15519 components: - rot: 1.5707963267948966 rad pos: 45.5,27.5 @@ -101751,7 +102730,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15401 + - uid: 15520 components: - rot: 1.5707963267948966 rad pos: 44.5,26.5 @@ -101759,7 +102738,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15402 + - uid: 15521 components: - rot: -1.5707963267948966 rad pos: 52.5,27.5 @@ -101767,7 +102746,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15403 + - uid: 15522 components: - rot: -1.5707963267948966 rad pos: 54.5,26.5 @@ -101775,14 +102754,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15404 + - uid: 15523 components: - pos: -15.5,45.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15405 + - uid: 15524 components: - rot: 3.141592653589793 rad pos: -17.5,45.5 @@ -101790,7 +102769,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15406 + - uid: 15525 components: - rot: 1.5707963267948966 rad pos: 47.5,50.5 @@ -101798,7 +102777,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15407 + - uid: 15526 components: - rot: 1.5707963267948966 rad pos: 45.5,49.5 @@ -101806,7 +102785,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15408 + - uid: 15527 components: - rot: -1.5707963267948966 rad pos: 47.5,46.5 @@ -101814,7 +102793,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15409 + - uid: 15528 components: - rot: -1.5707963267948966 rad pos: 45.5,45.5 @@ -101822,7 +102801,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15410 + - uid: 15529 components: - rot: 3.141592653589793 rad pos: 2.5,69.5 @@ -101830,7 +102809,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15411 + - uid: 15530 components: - rot: -1.5707963267948966 rad pos: -5.5,69.5 @@ -101838,14 +102817,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15412 + - uid: 15531 components: - pos: 3.5,69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15413 + - uid: 15532 components: - rot: 1.5707963267948966 rad pos: -6.5,69.5 @@ -101853,7 +102832,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15414 + - uid: 15533 components: - rot: -1.5707963267948966 rad pos: -1.5,67.5 @@ -101861,7 +102840,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15415 + - uid: 15534 components: - rot: 1.5707963267948966 rad pos: -2.5,67.5 @@ -101869,7 +102848,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15416 + - uid: 15535 components: - rot: -1.5707963267948966 rad pos: -0.5,46.5 @@ -101877,7 +102856,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15417 + - uid: 15536 components: - rot: -1.5707963267948966 rad pos: 1.5,44.5 @@ -101885,7 +102864,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15418 + - uid: 15537 components: - rot: 3.141592653589793 rad pos: -21.5,51.5 @@ -101893,7 +102872,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15419 + - uid: 15538 components: - rot: 3.141592653589793 rad pos: -22.5,50.5 @@ -101901,7 +102880,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15420 + - uid: 15539 components: - rot: -1.5707963267948966 rad pos: -13.5,51.5 @@ -101909,7 +102888,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15421 + - uid: 15540 components: - rot: -1.5707963267948966 rad pos: -12.5,50.5 @@ -101917,28 +102896,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15422 + - uid: 15541 components: - pos: 1.5,59.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15423 + - uid: 15542 components: - pos: -0.5,58.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15424 + - uid: 15543 components: - pos: 40.5,47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15425 + - uid: 15544 components: - rot: -1.5707963267948966 rad pos: 40.5,44.5 @@ -101946,7 +102925,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15426 + - uid: 15545 components: - rot: 1.5707963267948966 rad pos: 29.5,47.5 @@ -101954,7 +102933,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15427 + - uid: 15546 components: - rot: 1.5707963267948966 rad pos: 23.5,46.5 @@ -101962,7 +102941,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15428 + - uid: 15547 components: - rot: 3.141592653589793 rad pos: 29.5,44.5 @@ -101970,7 +102949,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15429 + - uid: 15548 components: - rot: 3.141592653589793 rad pos: -22.5,-98.5 @@ -101978,7 +102957,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15430 + - uid: 15549 components: - rot: -1.5707963267948966 rad pos: -6.5,-93.5 @@ -101986,28 +102965,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15431 + - uid: 15550 components: - pos: 62.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15432 + - uid: 15551 components: - pos: 75.5,-33.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15433 + - uid: 15552 components: - pos: 74.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15434 + - uid: 15553 components: - rot: -1.5707963267948966 rad pos: 73.5,-48.5 @@ -102015,7 +102994,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15435 + - uid: 15554 components: - rot: -1.5707963267948966 rad pos: 75.5,-46.5 @@ -102023,7 +103002,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15436 + - uid: 15555 components: - rot: 1.5707963267948966 rad pos: 73.5,-46.5 @@ -102031,7 +103010,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15437 + - uid: 15556 components: - rot: -1.5707963267948966 rad pos: 71.5,-47.5 @@ -102039,7 +103018,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15438 + - uid: 15557 components: - rot: 1.5707963267948966 rad pos: 71.5,-45.5 @@ -102047,7 +103026,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15439 + - uid: 15558 components: - rot: -1.5707963267948966 rad pos: 74.5,-45.5 @@ -102055,14 +103034,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15440 + - uid: 15559 components: - pos: 72.5,-36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15441 + - uid: 15560 components: - rot: 3.141592653589793 rad pos: 72.5,-37.5 @@ -102070,7 +103049,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15442 + - uid: 15561 components: - rot: -1.5707963267948966 rad pos: 67.5,-37.5 @@ -102078,18 +103057,18 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15443 + - uid: 15562 components: - pos: -56.5,-58.5 parent: 2 type: Transform - - uid: 15444 + - uid: 15563 components: - rot: 3.141592653589793 rad pos: -57.5,-60.5 parent: 2 type: Transform - - uid: 15445 + - uid: 15564 components: - rot: 3.141592653589793 rad pos: -56.5,-61.5 @@ -102097,25 +103076,25 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15446 + - uid: 15565 components: - pos: -55.5,-61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 15447 + - uid: 15566 components: - pos: 55.5,-48.5 parent: 2 type: Transform - - uid: 15448 + - uid: 15567 components: - rot: 3.141592653589793 rad pos: 53.5,-48.5 parent: 2 type: Transform - - uid: 15449 + - uid: 15568 components: - rot: 3.141592653589793 rad pos: 53.5,-6.5 @@ -102123,7 +103102,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15450 + - uid: 15569 components: - rot: 1.5707963267948966 rad pos: 67.5,-36.5 @@ -102131,7 +103110,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15451 + - uid: 15570 components: - rot: 3.141592653589793 rad pos: -10.5,-21.5 @@ -102139,14 +103118,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15452 + - uid: 15571 components: - pos: -8.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15453 + - uid: 15572 components: - rot: 3.141592653589793 rad pos: -25.5,-60.5 @@ -102156,7 +103135,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15454 + - uid: 15573 components: - rot: -1.5707963267948966 rad pos: -22.5,-62.5 @@ -102164,7 +103143,7 @@ entities: type: Transform - color: '#97C3FCCC' type: AtmosPipeColor - - uid: 15455 + - uid: 15574 components: - rot: 3.141592653589793 rad pos: -23.5,-62.5 @@ -102172,7 +103151,7 @@ entities: type: Transform - color: '#97C3FCCC' type: AtmosPipeColor - - uid: 15456 + - uid: 15575 components: - rot: 1.5707963267948966 rad pos: -48.5,-35.5 @@ -102180,7 +103159,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15457 + - uid: 15576 components: - rot: 1.5707963267948966 rad pos: 18.5,-82.5 @@ -102188,7 +103167,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15458 + - uid: 15577 components: - rot: 3.141592653589793 rad pos: 25.5,-72.5 @@ -102196,7 +103175,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15459 + - uid: 15578 components: - rot: 3.141592653589793 rad pos: 24.5,-73.5 @@ -102204,7 +103183,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15460 + - uid: 15579 components: - rot: 3.141592653589793 rad pos: 29.5,-85.5 @@ -102212,7 +103191,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15461 + - uid: 15580 components: - rot: 3.141592653589793 rad pos: 47.5,-86.5 @@ -102220,7 +103199,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15462 + - uid: 15581 components: - rot: -1.5707963267948966 rad pos: 45.5,6.5 @@ -102228,7 +103207,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15463 + - uid: 15582 components: - rot: 3.141592653589793 rad pos: -45.5,33.5 @@ -102236,7 +103215,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15464 + - uid: 15583 components: - rot: 3.141592653589793 rad pos: -47.5,31.5 @@ -102244,7 +103223,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15465 + - uid: 15584 components: - rot: -1.5707963267948966 rad pos: -46.5,34.5 @@ -102252,7 +103231,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15466 + - uid: 15585 components: - rot: 1.5707963267948966 rad pos: -47.5,34.5 @@ -102260,7 +103239,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15467 + - uid: 15586 components: - rot: 1.5707963267948966 rad pos: -6.5,16.5 @@ -102268,7 +103247,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15468 + - uid: 15587 components: - pos: -62.5,-39.5 parent: 2 @@ -102277,7 +103256,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15469 + - uid: 15588 components: - pos: -67.5,-43.5 parent: 2 @@ -102286,7 +103265,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15470 + - uid: 15589 components: - rot: -1.5707963267948966 rad pos: -65.5,-44.5 @@ -102294,7 +103273,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15471 + - uid: 15590 components: - rot: 1.5707963267948966 rad pos: -65.5,-43.5 @@ -102302,7 +103281,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15472 + - uid: 15591 components: - rot: -1.5707963267948966 rad pos: -71.5,-41.5 @@ -102312,7 +103291,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15473 + - uid: 15592 components: - rot: -1.5707963267948966 rad pos: -45.5,-23.5 @@ -102320,7 +103299,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15474 + - uid: 15593 components: - rot: 3.141592653589793 rad pos: -51.5,-24.5 @@ -102328,58 +103307,66 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor + - uid: 15594 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-14.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor - proto: GasPipeFourway entities: - - uid: 15475 + - uid: 15595 components: - pos: 38.5,1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15476 + - uid: 15596 components: - pos: 31.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15477 + - uid: 15597 components: - pos: 21.5,16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15478 + - uid: 15598 components: - pos: 31.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15479 + - uid: 15599 components: - pos: 21.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15480 + - uid: 15600 components: - pos: 17.5,17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15481 + - uid: 15601 components: - pos: 34.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15482 + - uid: 15602 components: - pos: -24.5,-60.5 parent: 2 @@ -102388,175 +103375,161 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15483 - components: - - pos: 26.5,-30.5 - parent: 2 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15484 + - uid: 15603 components: - pos: -5.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15485 + - uid: 15604 components: - pos: -33.5,20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15486 + - uid: 15605 components: - pos: -3.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15487 + - uid: 15606 components: - pos: 30.5,-18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15488 + - uid: 15607 components: - pos: -32.5,23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15489 - components: - - pos: 24.5,-29.5 - parent: 2 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15490 + - uid: 15608 components: - pos: -18.5,29.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15491 + - uid: 15609 components: - pos: 49.5,20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15492 + - uid: 15610 components: - pos: 50.5,21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15493 + - uid: 15611 components: - pos: 42.5,1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15494 + - uid: 15612 components: - pos: 44.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15495 + - uid: 15613 components: - pos: 64.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15496 + - uid: 15614 components: - pos: 29.5,-47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15497 + - uid: 15615 components: - pos: -41.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15498 + - uid: 15616 components: - pos: -42.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15499 + - uid: 15617 components: - pos: -20.5,30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15500 + - uid: 15618 components: - pos: -31.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15501 + - uid: 15619 components: - pos: -32.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15502 + - uid: 15620 components: - pos: -45.5,11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15503 + - uid: 15621 components: - pos: -5.5,-14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15504 + - uid: 15622 components: - pos: -16.5,43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15505 + - uid: 15623 components: - pos: -15.5,44.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15506 + - uid: 15624 components: - pos: 68.5,-33.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15507 + - uid: 15625 components: - pos: -70.5,-42.5 parent: 2 @@ -102567,45 +103540,76 @@ entities: type: AmbientSound - proto: GasPipeStraight entities: - - uid: 12639 + - uid: 15626 components: - - rot: 3.141592653589793 rad - pos: 1.5,-3.5 + - pos: 22.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 12650 + - uid: 15627 components: - - rot: 1.5707963267948966 rad - pos: 1.5,-3.5 + - pos: 28.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 12834 + - uid: 15628 + components: + - pos: 28.5,-34.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15629 + components: + - pos: 22.5,-35.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15630 + components: + - pos: 2.5,-4.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15631 components: - rot: 3.141592653589793 rad - pos: 0.5,-5.5 + pos: 1.5,-3.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15632 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-3.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 13963 + - enabled: True + type: AmbientSound + - uid: 15633 components: - - pos: 0.5,-4.5 + - pos: 2.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 14309 + - uid: 15634 components: - pos: 1.5,-4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15508 + - uid: 15635 components: - rot: -1.5707963267948966 rad pos: -49.5,-23.5 @@ -102613,14 +103617,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15509 + - uid: 15636 components: - pos: -47.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15510 + - uid: 15637 components: - pos: -71.5,-43.5 parent: 2 @@ -102629,7 +103633,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15511 + - uid: 15638 components: - rot: 1.5707963267948966 rad pos: -73.5,-42.5 @@ -102639,7 +103643,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15512 + - uid: 15639 components: - rot: 1.5707963267948966 rad pos: -67.5,-42.5 @@ -102649,7 +103653,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15513 + - uid: 15640 components: - rot: -1.5707963267948966 rad pos: -69.5,-40.5 @@ -102659,14 +103663,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15514 + - uid: 15641 components: - pos: -72.5,-36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15515 + - uid: 15642 components: - rot: 1.5707963267948966 rad pos: -68.5,-42.5 @@ -102676,7 +103680,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15516 + - uid: 15643 components: - pos: -70.5,-40.5 parent: 2 @@ -102685,7 +103689,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15517 + - uid: 15644 components: - rot: 3.141592653589793 rad pos: -62.5,-40.5 @@ -102695,7 +103699,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15518 + - uid: 15645 components: - pos: -68.5,-41.5 parent: 2 @@ -102704,7 +103708,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15519 + - uid: 15646 components: - rot: -1.5707963267948966 rad pos: -65.5,-39.5 @@ -102714,7 +103718,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15520 + - uid: 15647 components: - rot: 1.5707963267948966 rad pos: -69.5,-42.5 @@ -102724,7 +103728,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15521 + - uid: 15648 components: - pos: -68.5,-42.5 parent: 2 @@ -102733,7 +103737,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15522 + - uid: 15649 components: - pos: -73.5,-27.5 parent: 2 @@ -102742,112 +103746,112 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15523 + - uid: 15650 components: - pos: -71.5,-30.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15524 + - uid: 15651 components: - pos: -71.5,-28.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15525 + - uid: 15652 components: - pos: -73.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15526 + - uid: 15653 components: - pos: -71.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15527 + - uid: 15654 components: - pos: -73.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15528 + - uid: 15655 components: - pos: -73.5,-30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15529 + - uid: 15656 components: - pos: -73.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15530 + - uid: 15657 components: - pos: -73.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15531 + - uid: 15658 components: - pos: -73.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15532 + - uid: 15659 components: - pos: -73.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15533 + - uid: 15660 components: - pos: -73.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15534 + - uid: 15661 components: - pos: -73.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15535 + - uid: 15662 components: - pos: -72.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15536 + - uid: 15663 components: - pos: -72.5,-35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15537 + - uid: 15664 components: - pos: -72.5,-33.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15538 + - uid: 15665 components: - rot: 1.5707963267948966 rad pos: -66.5,-42.5 @@ -102855,7 +103859,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15539 + - uid: 15666 components: - rot: 1.5707963267948966 rad pos: -65.5,-42.5 @@ -102865,7 +103869,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15540 + - uid: 15667 components: - rot: 1.5707963267948966 rad pos: -64.5,-42.5 @@ -102875,7 +103879,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15541 + - uid: 15668 components: - rot: 3.141592653589793 rad pos: -62.5,-41.5 @@ -102885,7 +103889,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15542 + - uid: 15669 components: - rot: -1.5707963267948966 rad pos: -74.5,-41.5 @@ -102893,28 +103897,28 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15543 + - uid: 15670 components: - pos: -73.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15544 + - uid: 15671 components: - pos: -73.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15545 + - uid: 15672 components: - pos: -71.5,-29.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15546 + - uid: 15673 components: - pos: -71.5,-27.5 parent: 2 @@ -102923,7 +103927,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15547 + - uid: 15674 components: - rot: 3.141592653589793 rad pos: -71.5,-45.5 @@ -102933,7 +103937,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15548 + - uid: 15675 components: - rot: 3.141592653589793 rad pos: -71.5,-44.5 @@ -102943,7 +103947,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15549 + - uid: 15676 components: - rot: 3.141592653589793 rad pos: -67.5,-45.5 @@ -102953,7 +103957,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15550 + - uid: 15677 components: - rot: 1.5707963267948966 rad pos: -72.5,-23.5 @@ -102961,7 +103965,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15551 + - uid: 15678 components: - rot: -1.5707963267948966 rad pos: -64.5,-39.5 @@ -102971,21 +103975,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15552 + - uid: 15679 components: - pos: -6.5,15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15553 + - uid: 15680 components: - pos: -3.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15554 + - uid: 15681 components: - rot: 3.141592653589793 rad pos: -3.5,13.5 @@ -102993,7 +103997,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15555 + - uid: 15682 components: - rot: 3.141592653589793 rad pos: -3.5,12.5 @@ -103001,7 +104005,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15556 + - uid: 15683 components: - rot: 1.5707963267948966 rad pos: -11.5,5.5 @@ -103011,7 +104015,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15557 + - uid: 15684 components: - rot: 3.141592653589793 rad pos: 38.5,10.5 @@ -103019,7 +104023,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15558 + - uid: 15685 components: - rot: 3.141592653589793 rad pos: 26.5,-26.5 @@ -103029,7 +104033,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15559 + - uid: 15686 components: - rot: 1.5707963267948966 rad pos: 32.5,9.5 @@ -103039,7 +104043,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15560 + - uid: 15687 components: - pos: 28.5,-31.5 parent: 2 @@ -103048,7 +104052,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15561 + - uid: 15688 components: - rot: 3.141592653589793 rad pos: 42.5,10.5 @@ -103056,21 +104060,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15562 + - uid: 15689 components: - pos: -18.5,31.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15563 + - uid: 15690 components: - pos: 46.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15564 + - uid: 15691 components: - rot: 3.141592653589793 rad pos: 34.5,-36.5 @@ -103078,14 +104082,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15565 + - uid: 15692 components: - pos: 46.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15566 + - uid: 15693 components: - rot: -1.5707963267948966 rad pos: 24.5,-42.5 @@ -103093,14 +104097,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15567 + - uid: 15694 components: - pos: 34.5,-21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15568 + - uid: 15695 components: - rot: 3.141592653589793 rad pos: -9.5,-40.5 @@ -103110,7 +104114,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15569 + - uid: 15696 components: - rot: 3.141592653589793 rad pos: -5.5,-34.5 @@ -103118,7 +104122,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15570 + - uid: 15697 components: - rot: -1.5707963267948966 rad pos: -12.5,-41.5 @@ -103126,7 +104130,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15571 + - uid: 15698 components: - rot: 3.141592653589793 rad pos: -14.5,-42.5 @@ -103134,7 +104138,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15572 + - uid: 15699 components: - rot: 3.141592653589793 rad pos: -14.5,-44.5 @@ -103144,7 +104148,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15573 + - uid: 15700 components: - rot: 1.5707963267948966 rad pos: -14.5,-60.5 @@ -103152,7 +104156,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15574 + - uid: 15701 components: - rot: 3.141592653589793 rad pos: -12.5,-44.5 @@ -103162,7 +104166,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15575 + - uid: 15702 components: - rot: 1.5707963267948966 rad pos: -10.5,-42.5 @@ -103170,42 +104174,42 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15576 + - uid: 15703 components: - pos: -7.5,-48.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15577 + - uid: 15704 components: - pos: -7.5,-47.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15578 + - uid: 15705 components: - pos: -0.5,-45.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15579 + - uid: 15706 components: - pos: -0.5,-44.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15580 + - uid: 15707 components: - pos: -0.5,-43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15581 + - uid: 15708 components: - rot: -1.5707963267948966 rad pos: 1.5,-41.5 @@ -103213,14 +104217,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15582 + - uid: 15709 components: - pos: -8.5,-45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15583 + - uid: 15710 components: - rot: 3.141592653589793 rad pos: 3.5,-44.5 @@ -103230,14 +104234,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15584 + - uid: 15711 components: - pos: -12.5,-61.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15585 + - uid: 15712 components: - rot: 3.141592653589793 rad pos: -7.5,-62.5 @@ -103247,7 +104251,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15586 + - uid: 15713 components: - rot: -1.5707963267948966 rad pos: -4.5,-59.5 @@ -103255,7 +104259,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15587 + - uid: 15714 components: - rot: -1.5707963267948966 rad pos: -6.5,-59.5 @@ -103263,7 +104267,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15588 + - uid: 15715 components: - rot: -1.5707963267948966 rad pos: 27.5,-6.5 @@ -103271,7 +104275,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15589 + - uid: 15716 components: - rot: -1.5707963267948966 rad pos: 29.5,-6.5 @@ -103279,7 +104283,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15590 + - uid: 15717 components: - rot: 3.141592653589793 rad pos: 40.5,6.5 @@ -103287,7 +104291,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15591 + - uid: 15718 components: - pos: 46.5,-26.5 parent: 2 @@ -103296,28 +104300,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15592 + - uid: 15719 components: - pos: 46.5,-27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15593 + - uid: 15720 components: - pos: 46.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15594 + - uid: 15721 components: - pos: 46.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15595 + - uid: 15722 components: - pos: 8.5,11.5 parent: 2 @@ -103326,14 +104330,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15596 + - uid: 15723 components: - pos: 8.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15597 + - uid: 15724 components: - rot: -1.5707963267948966 rad pos: -12.5,-38.5 @@ -103341,7 +104345,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15598 + - uid: 15725 components: - rot: 3.141592653589793 rad pos: 34.5,-32.5 @@ -103349,7 +104353,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15599 + - uid: 15726 components: - rot: 1.5707963267948966 rad pos: 9.5,17.5 @@ -103357,7 +104361,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15600 + - uid: 15727 components: - rot: 1.5707963267948966 rad pos: 6.5,8.5 @@ -103365,7 +104369,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15601 + - uid: 15728 components: - rot: -1.5707963267948966 rad pos: 45.5,-23.5 @@ -103373,14 +104377,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15602 + - uid: 15729 components: - pos: 30.5,-21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15603 + - uid: 15730 components: - rot: 3.141592653589793 rad pos: 34.5,-35.5 @@ -103388,7 +104392,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15604 + - uid: 15731 components: - rot: 3.141592653589793 rad pos: -5.5,-35.5 @@ -103396,7 +104400,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15609 + - uid: 15732 components: - rot: -1.5707963267948966 rad pos: 20.5,21.5 @@ -103404,7 +104408,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15610 + - uid: 15733 components: - rot: 1.5707963267948966 rad pos: 23.5,21.5 @@ -103412,7 +104416,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15611 + - uid: 15734 components: - rot: 1.5707963267948966 rad pos: 24.5,21.5 @@ -103420,7 +104424,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15612 + - uid: 15735 components: - rot: 1.5707963267948966 rad pos: 25.5,21.5 @@ -103428,7 +104432,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15613 + - uid: 15736 components: - rot: 1.5707963267948966 rad pos: 28.5,21.5 @@ -103436,21 +104440,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15614 + - uid: 15737 components: - pos: 29.5,20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15615 + - uid: 15738 components: - pos: 29.5,19.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15616 + - uid: 15739 components: - rot: 3.141592653589793 rad pos: 30.5,17.5 @@ -103458,14 +104462,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15617 + - uid: 15740 components: - pos: 24.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15618 + - uid: 15741 components: - rot: -1.5707963267948966 rad pos: 2.5,-61.5 @@ -103473,7 +104477,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15619 + - uid: 15742 components: - rot: 1.5707963267948966 rad pos: 4.5,-61.5 @@ -103481,7 +104485,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15620 + - uid: 15743 components: - rot: -1.5707963267948966 rad pos: -7.5,-61.5 @@ -103489,7 +104493,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15621 + - uid: 15744 components: - pos: -8.5,-62.5 parent: 2 @@ -103498,7 +104502,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15622 + - uid: 15745 components: - rot: 3.141592653589793 rad pos: -0.5,-63.5 @@ -103506,7 +104510,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15623 + - uid: 15746 components: - rot: 1.5707963267948966 rad pos: -2.5,-60.5 @@ -103514,7 +104518,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15624 + - uid: 15747 components: - rot: -1.5707963267948966 rad pos: 5.5,-60.5 @@ -103522,7 +104526,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15625 + - uid: 15748 components: - rot: -1.5707963267948966 rad pos: 6.5,-60.5 @@ -103530,7 +104534,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15626 + - uid: 15749 components: - rot: -1.5707963267948966 rad pos: 7.5,-60.5 @@ -103538,7 +104542,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15627 + - uid: 15750 components: - rot: -1.5707963267948966 rad pos: 8.5,-60.5 @@ -103546,7 +104550,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15628 + - uid: 15751 components: - rot: -1.5707963267948966 rad pos: 5.5,-61.5 @@ -103554,7 +104558,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15629 + - uid: 15752 components: - rot: -1.5707963267948966 rad pos: 7.5,-61.5 @@ -103564,7 +104568,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15630 + - uid: 15753 components: - rot: -1.5707963267948966 rad pos: 8.5,-61.5 @@ -103572,7 +104576,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15631 + - uid: 15754 components: - rot: 3.141592653589793 rad pos: -5.5,-28.5 @@ -103580,14 +104584,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15632 + - uid: 15755 components: - pos: -3.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15633 + - uid: 15756 components: - rot: -1.5707963267948966 rad pos: 28.5,-43.5 @@ -103595,7 +104599,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15634 + - uid: 15757 components: - rot: 1.5707963267948966 rad pos: -36.5,20.5 @@ -103603,14 +104607,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15635 + - uid: 15758 components: - pos: -20.5,-83.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15636 + - uid: 15759 components: - pos: -20.5,-74.5 parent: 2 @@ -103619,21 +104623,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15637 + - uid: 15760 components: - pos: -25.5,-75.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15638 + - uid: 15761 components: - pos: -25.5,-73.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15639 + - uid: 15762 components: - rot: 1.5707963267948966 rad pos: -24.5,-72.5 @@ -103641,7 +104645,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15640 + - uid: 15763 components: - pos: 35.5,6.5 parent: 2 @@ -103650,7 +104654,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15641 + - uid: 15764 components: - rot: 1.5707963267948966 rad pos: 33.5,9.5 @@ -103660,7 +104664,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15643 + - uid: 15765 components: - rot: 1.5707963267948966 rad pos: -25.5,-80.5 @@ -103668,7 +104672,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15644 + - uid: 15766 components: - rot: 3.141592653589793 rad pos: 5.5,13.5 @@ -103676,28 +104680,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15645 + - uid: 15767 components: - pos: -3.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15646 + - uid: 15768 components: - pos: -3.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15647 + - uid: 15769 components: - pos: -3.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15648 + - uid: 15770 components: - rot: 1.5707963267948966 rad pos: -5.5,-25.5 @@ -103705,7 +104709,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15649 + - uid: 15771 components: - rot: 3.141592653589793 rad pos: -11.5,-26.5 @@ -103713,7 +104717,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15650 + - uid: 15772 components: - rot: 1.5707963267948966 rad pos: -6.5,-27.5 @@ -103721,7 +104725,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15651 + - uid: 15773 components: - rot: 1.5707963267948966 rad pos: 0.5,-25.5 @@ -103729,7 +104733,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15652 + - uid: 15774 components: - pos: 3.5,-28.5 parent: 2 @@ -103738,7 +104742,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15653 + - uid: 15775 components: - rot: 1.5707963267948966 rad pos: 3.5,-25.5 @@ -103746,7 +104750,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15654 + - uid: 15776 components: - rot: 1.5707963267948966 rad pos: 1.5,-25.5 @@ -103754,7 +104758,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15655 + - uid: 15777 components: - rot: 3.141592653589793 rad pos: -5.5,-36.5 @@ -103762,7 +104766,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15656 + - uid: 15778 components: - rot: 3.141592653589793 rad pos: -5.5,-37.5 @@ -103770,7 +104774,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15657 + - uid: 15779 components: - rot: 3.141592653589793 rad pos: -5.5,-38.5 @@ -103778,7 +104782,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15658 + - uid: 15780 components: - rot: 3.141592653589793 rad pos: -5.5,-39.5 @@ -103786,7 +104790,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15659 + - uid: 15781 components: - rot: 3.141592653589793 rad pos: -5.5,-40.5 @@ -103794,7 +104798,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15660 + - uid: 15782 components: - rot: 1.5707963267948966 rad pos: 9.5,-27.5 @@ -103802,7 +104806,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15661 + - uid: 15783 components: - rot: 3.141592653589793 rad pos: 14.5,-28.5 @@ -103810,7 +104814,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15662 + - uid: 15784 components: - rot: 1.5707963267948966 rad pos: 13.5,-27.5 @@ -103818,7 +104822,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15663 + - uid: 15785 components: - rot: 1.5707963267948966 rad pos: 13.5,-25.5 @@ -103826,7 +104830,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15664 + - uid: 15786 components: - rot: 3.141592653589793 rad pos: 14.5,-35.5 @@ -103834,14 +104838,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15665 + - uid: 15787 components: - pos: 15.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15666 + - uid: 15788 components: - rot: 1.5707963267948966 rad pos: 22.5,-43.5 @@ -103849,7 +104853,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15667 + - uid: 15789 components: - rot: 1.5707963267948966 rad pos: 12.5,-25.5 @@ -103857,7 +104861,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15668 + - uid: 15790 components: - rot: 1.5707963267948966 rad pos: 21.5,-43.5 @@ -103865,7 +104869,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15669 + - uid: 15791 components: - rot: 1.5707963267948966 rad pos: 30.5,-43.5 @@ -103873,14 +104877,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15670 + - uid: 15792 components: - pos: 20.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15671 + - uid: 15793 components: - pos: 20.5,-19.5 parent: 2 @@ -103889,7 +104893,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15672 + - uid: 15794 components: - rot: -1.5707963267948966 rad pos: 23.5,-12.5 @@ -103899,7 +104903,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15673 + - uid: 15795 components: - rot: -1.5707963267948966 rad pos: 25.5,-12.5 @@ -103907,7 +104911,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15674 + - uid: 15796 components: - rot: 1.5707963267948966 rad pos: 4.5,19.5 @@ -103915,7 +104919,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15675 + - uid: 15797 components: - rot: -1.5707963267948966 rad pos: 21.5,21.5 @@ -103923,7 +104927,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15676 + - uid: 15798 components: - pos: 19.5,20.5 parent: 2 @@ -103932,7 +104936,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15677 + - uid: 15799 components: - rot: -1.5707963267948966 rad pos: 35.5,12.5 @@ -103940,7 +104944,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15678 + - uid: 15800 components: - rot: 1.5707963267948966 rad pos: 16.5,-43.5 @@ -103948,7 +104952,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15679 + - uid: 15801 components: - rot: 1.5707963267948966 rad pos: 18.5,-43.5 @@ -103956,7 +104960,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15680 + - uid: 15802 components: - pos: 0.5,15.5 parent: 2 @@ -103965,7 +104969,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15681 + - uid: 15803 components: - rot: 3.141592653589793 rad pos: 40.5,4.5 @@ -103973,7 +104977,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15682 + - uid: 15804 components: - rot: 3.141592653589793 rad pos: 42.5,8.5 @@ -103981,7 +104985,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15683 + - uid: 15805 components: - rot: 1.5707963267948966 rad pos: 16.5,-41.5 @@ -103989,7 +104993,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15684 + - uid: 15806 components: - rot: 1.5707963267948966 rad pos: 18.5,-41.5 @@ -103997,14 +105001,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15685 + - uid: 15807 components: - pos: -3.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15686 + - uid: 15808 components: - rot: 3.141592653589793 rad pos: 29.5,16.5 @@ -104012,7 +105016,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15687 + - uid: 15809 components: - rot: 1.5707963267948966 rad pos: 27.5,17.5 @@ -104020,7 +105024,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15688 + - uid: 15810 components: - rot: 1.5707963267948966 rad pos: 10.5,-25.5 @@ -104028,7 +105032,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15689 + - uid: 15811 components: - rot: -1.5707963267948966 rad pos: 13.5,17.5 @@ -104036,7 +105040,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15690 + - uid: 15812 components: - rot: 1.5707963267948966 rad pos: 1.5,17.5 @@ -104044,14 +105048,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15691 + - uid: 15813 components: - pos: 0.5,16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15692 + - uid: 15814 components: - rot: 1.5707963267948966 rad pos: -2.5,13.5 @@ -104061,7 +105065,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15693 + - uid: 15815 components: - rot: -1.5707963267948966 rad pos: -5.5,14.5 @@ -104069,70 +105073,70 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15694 + - uid: 15816 components: - pos: -6.5,13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15695 + - uid: 15817 components: - pos: -6.5,11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15696 + - uid: 15818 components: - pos: -6.5,10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15697 + - uid: 15819 components: - pos: -8.5,4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15698 + - uid: 15820 components: - pos: 3.5,-29.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15699 + - uid: 15821 components: - pos: 15.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15700 + - uid: 15822 components: - pos: 15.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15701 + - uid: 15823 components: - pos: 15.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15702 + - uid: 15824 components: - pos: -23.5,-77.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15703 + - uid: 15825 components: - pos: 17.5,18.5 parent: 2 @@ -104141,7 +105145,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15704 + - uid: 15826 components: - rot: 1.5707963267948966 rad pos: 9.5,8.5 @@ -104149,7 +105153,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15707 + - uid: 15827 components: - rot: 1.5707963267948966 rad pos: 0.5,-1.5 @@ -104157,7 +105161,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15708 + - uid: 15828 components: - pos: -18.5,32.5 parent: 2 @@ -104166,42 +105170,42 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15709 + - uid: 15829 components: - pos: -20.5,28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15710 + - uid: 15830 components: - pos: 34.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15711 + - uid: 15831 components: - pos: 31.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15712 + - uid: 15832 components: - pos: 24.5,-27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15713 + - uid: 15833 components: - pos: 36.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15714 + - uid: 15834 components: - rot: -1.5707963267948966 rad pos: 28.5,-18.5 @@ -104209,14 +105213,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15715 + - uid: 15835 components: - pos: 47.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15716 + - uid: 15836 components: - rot: 3.141592653589793 rad pos: 34.5,-38.5 @@ -104224,7 +105228,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15717 + - uid: 15837 components: - pos: 21.5,15.5 parent: 2 @@ -104233,14 +105237,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15718 + - uid: 15838 components: - pos: 8.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15719 + - uid: 15839 components: - rot: 1.5707963267948966 rad pos: 29.5,-22.5 @@ -104248,7 +105252,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15720 + - uid: 15840 components: - rot: 3.141592653589793 rad pos: 38.5,6.5 @@ -104258,28 +105262,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15721 + - uid: 15841 components: - pos: -20.5,31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15722 + - uid: 15842 components: - pos: 8.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15723 + - uid: 15843 components: - pos: -18.5,30.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15724 + - uid: 15844 components: - rot: 1.5707963267948966 rad pos: -4.5,-1.5 @@ -104287,7 +105291,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15725 + - uid: 15845 components: - rot: 3.141592653589793 rad pos: -5.5,-32.5 @@ -104295,7 +105299,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15726 + - uid: 15846 components: - rot: -1.5707963267948966 rad pos: 6.5,-41.5 @@ -104303,56 +105307,56 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15727 + - uid: 15847 components: - pos: 15.5,-30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15728 + - uid: 15848 components: - pos: -3.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15729 + - uid: 15849 components: - pos: -3.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15730 + - uid: 15850 components: - pos: -3.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15731 + - uid: 15851 components: - pos: -3.5,-7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15732 + - uid: 15852 components: - pos: -3.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15733 + - uid: 15853 components: - pos: -5.5,-7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15734 + - uid: 15854 components: - rot: -1.5707963267948966 rad pos: 24.5,10.5 @@ -104360,7 +105364,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15735 + - uid: 15855 components: - rot: 1.5707963267948966 rad pos: 17.5,-29.5 @@ -104370,7 +105374,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15736 + - uid: 15856 components: - rot: 1.5707963267948966 rad pos: 18.5,-29.5 @@ -104378,7 +105382,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15737 + - uid: 15857 components: - rot: -1.5707963267948966 rad pos: 20.5,-29.5 @@ -104386,9 +105390,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15738 + - uid: 15858 components: - rot: -1.5707963267948966 rad pos: 22.5,-29.5 @@ -104396,7 +105398,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15739 + - uid: 15859 components: - rot: 1.5707963267948966 rad pos: -15.5,-42.5 @@ -104404,7 +105406,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15740 + - uid: 15860 components: - rot: 1.5707963267948966 rad pos: -14.5,-42.5 @@ -104412,7 +105414,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15741 + - uid: 15861 components: - rot: 3.141592653589793 rad pos: -14.5,-45.5 @@ -104420,7 +105422,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15742 + - uid: 15862 components: - rot: 3.141592653589793 rad pos: -17.5,-58.5 @@ -104430,7 +105432,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15743 + - uid: 15863 components: - rot: 3.141592653589793 rad pos: -17.5,-59.5 @@ -104438,7 +105440,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15744 + - uid: 15864 components: - rot: 1.5707963267948966 rad pos: -16.5,-60.5 @@ -104446,7 +105448,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15745 + - uid: 15865 components: - rot: 1.5707963267948966 rad pos: -15.5,-60.5 @@ -104454,7 +105456,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15746 + - uid: 15866 components: - rot: 3.141592653589793 rad pos: -12.5,-46.5 @@ -104462,7 +105464,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15747 + - uid: 15867 components: - rot: 3.141592653589793 rad pos: -12.5,-43.5 @@ -104470,7 +105472,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15748 + - uid: 15868 components: - rot: 1.5707963267948966 rad pos: -13.5,-42.5 @@ -104478,7 +105480,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15749 + - uid: 15869 components: - rot: 1.5707963267948966 rad pos: -11.5,-42.5 @@ -104486,14 +105488,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15750 + - uid: 15870 components: - pos: -9.5,-59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15751 + - uid: 15871 components: - pos: -9.5,-58.5 parent: 2 @@ -104502,21 +105504,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15752 + - uid: 15872 components: - pos: -9.5,-57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15753 + - uid: 15873 components: - pos: -9.5,-56.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15754 + - uid: 15874 components: - pos: -9.5,-55.5 parent: 2 @@ -104525,7 +105527,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15755 + - uid: 15875 components: - rot: 3.141592653589793 rad pos: -1.5,-52.5 @@ -104533,42 +105535,42 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15756 + - uid: 15876 components: - pos: -7.5,-52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15757 + - uid: 15877 components: - pos: -7.5,-51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15758 + - uid: 15878 components: - pos: -7.5,-50.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15759 + - uid: 15879 components: - pos: -7.5,-49.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15760 + - uid: 15880 components: - pos: -0.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15761 + - uid: 15881 components: - rot: -1.5707963267948966 rad pos: 0.5,-41.5 @@ -104576,7 +105578,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15762 + - uid: 15882 components: - rot: -1.5707963267948966 rad pos: 2.5,-41.5 @@ -104584,21 +105586,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15763 + - uid: 15883 components: - pos: -8.5,-44.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15764 + - uid: 15884 components: - pos: -8.5,-43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15765 + - uid: 15885 components: - rot: 3.141592653589793 rad pos: 5.5,-43.5 @@ -104606,7 +105608,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15766 + - uid: 15886 components: - rot: -1.5707963267948966 rad pos: -9.5,-60.5 @@ -104614,7 +105616,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15767 + - uid: 15887 components: - rot: -1.5707963267948966 rad pos: -8.5,-60.5 @@ -104622,14 +105624,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15768 + - uid: 15888 components: - pos: -6.5,-64.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15769 + - uid: 15889 components: - rot: 3.141592653589793 rad pos: -7.5,-61.5 @@ -104637,7 +105639,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15770 + - uid: 15890 components: - rot: -1.5707963267948966 rad pos: -5.5,-59.5 @@ -104645,14 +105647,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15771 + - uid: 15891 components: - pos: 34.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15772 + - uid: 15892 components: - rot: 1.5707963267948966 rad pos: 29.5,9.5 @@ -104662,7 +105664,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15773 + - uid: 15893 components: - rot: 1.5707963267948966 rad pos: 37.5,0.5 @@ -104670,7 +105672,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15774 + - uid: 15894 components: - rot: 1.5707963267948966 rad pos: 7.5,8.5 @@ -104678,14 +105680,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15775 + - uid: 15895 components: - pos: 17.5,-3.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15776 + - uid: 15896 components: - rot: -1.5707963267948966 rad pos: 11.5,-0.5 @@ -104693,7 +105695,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15777 + - uid: 15897 components: - rot: -1.5707963267948966 rad pos: 15.5,-0.5 @@ -104701,7 +105703,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15778 + - uid: 15898 components: - rot: -1.5707963267948966 rad pos: 38.5,15.5 @@ -104709,7 +105711,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15779 + - uid: 15899 components: - rot: -1.5707963267948966 rad pos: 36.5,15.5 @@ -104717,7 +105719,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15780 + - uid: 15900 components: - rot: -1.5707963267948966 rad pos: 34.5,1.5 @@ -104725,7 +105727,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15781 + - uid: 15901 components: - rot: -1.5707963267948966 rad pos: 30.5,1.5 @@ -104733,7 +105735,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15782 + - uid: 15902 components: - rot: -1.5707963267948966 rad pos: 31.5,1.5 @@ -104741,7 +105743,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15783 + - uid: 15903 components: - rot: -1.5707963267948966 rad pos: 32.5,1.5 @@ -104749,7 +105751,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15784 + - uid: 15904 components: - rot: -1.5707963267948966 rad pos: 36.5,1.5 @@ -104757,14 +105759,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15785 + - uid: 15905 components: - pos: 42.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15786 + - uid: 15906 components: - rot: 1.5707963267948966 rad pos: 22.5,16.5 @@ -104772,7 +105774,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15787 + - uid: 15907 components: - rot: 1.5707963267948966 rad pos: 24.5,17.5 @@ -104780,7 +105782,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15788 + - uid: 15908 components: - rot: 1.5707963267948966 rad pos: 25.5,17.5 @@ -104788,7 +105790,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15789 + - uid: 15909 components: - rot: 1.5707963267948966 rad pos: 26.5,17.5 @@ -104796,35 +105798,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15790 + - uid: 15910 components: - pos: 38.5,2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15791 + - uid: 15911 components: - pos: 38.5,4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15792 + - uid: 15912 components: - pos: 25.5,10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15793 + - uid: 15913 components: - pos: 25.5,11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15794 + - uid: 15914 components: - rot: 1.5707963267948966 rad pos: 26.5,12.5 @@ -104832,14 +105834,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15795 + - uid: 15915 components: - pos: 21.5,11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15796 + - uid: 15916 components: - rot: 1.5707963267948966 rad pos: 27.5,9.5 @@ -104849,7 +105851,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15797 + - uid: 15917 components: - rot: 1.5707963267948966 rad pos: -6.5,-1.5 @@ -104857,21 +105859,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15798 + - uid: 15918 components: - pos: -5.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15799 + - uid: 15919 components: - pos: -5.5,-17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15800 + - uid: 15920 components: - rot: -1.5707963267948966 rad pos: 29.5,-42.5 @@ -104879,7 +105881,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15801 + - uid: 15921 components: - rot: 3.141592653589793 rad pos: 17.5,-2.5 @@ -104887,7 +105889,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15802 + - uid: 15922 components: - rot: 3.141592653589793 rad pos: 38.5,9.5 @@ -104897,7 +105899,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15803 + - uid: 15923 components: - rot: -1.5707963267948966 rad pos: 7.5,12.5 @@ -104905,7 +105907,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15804 + - uid: 15924 components: - rot: 3.141592653589793 rad pos: -3.5,-56.5 @@ -104913,7 +105915,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15805 + - uid: 15925 components: - rot: 3.141592653589793 rad pos: -3.5,-57.5 @@ -104921,7 +105923,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15806 + - uid: 15926 components: - rot: 3.141592653589793 rad pos: -1.5,-47.5 @@ -104929,42 +105931,42 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15807 + - uid: 15927 components: - pos: 15.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15808 + - uid: 15928 components: - pos: -3.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15809 + - uid: 15929 components: - pos: -3.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15810 + - uid: 15930 components: - pos: -3.5,-22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15811 + - uid: 15931 components: - pos: -3.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15812 + - uid: 15932 components: - rot: 1.5707963267948966 rad pos: 10.5,-27.5 @@ -104972,7 +105974,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15813 + - uid: 15933 components: - rot: -1.5707963267948966 rad pos: 7.5,-27.5 @@ -104980,7 +105982,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15814 + - uid: 15934 components: - rot: 1.5707963267948966 rad pos: 6.5,-27.5 @@ -104988,7 +105990,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15815 + - uid: 15935 components: - rot: 1.5707963267948966 rad pos: 11.5,-25.5 @@ -104996,14 +105998,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15816 + - uid: 15936 components: - pos: -20.5,29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15817 + - uid: 15937 components: - rot: -1.5707963267948966 rad pos: 19.5,-43.5 @@ -105011,7 +106013,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15818 + - uid: 15938 components: - rot: 1.5707963267948966 rad pos: 26.5,-16.5 @@ -105019,7 +106021,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15819 + - uid: 15939 components: - rot: 1.5707963267948966 rad pos: 32.5,-16.5 @@ -105027,7 +106029,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15820 + - uid: 15940 components: - rot: 1.5707963267948966 rad pos: -6.5,1.5 @@ -105035,7 +106037,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15821 + - uid: 15941 components: - rot: 1.5707963267948966 rad pos: -7.5,1.5 @@ -105043,21 +106045,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15822 + - uid: 15942 components: - pos: -8.5,5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15823 + - uid: 15943 components: - pos: -8.5,6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15824 + - uid: 15944 components: - rot: 1.5707963267948966 rad pos: 11.5,17.5 @@ -105065,7 +106067,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15825 + - uid: 15945 components: - rot: -1.5707963267948966 rad pos: 23.5,10.5 @@ -105075,14 +106077,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15826 + - uid: 15946 components: - pos: -23.5,-82.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15827 + - uid: 15947 components: - rot: 1.5707963267948966 rad pos: 30.5,-16.5 @@ -105090,7 +106092,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15828 + - uid: 15948 components: - rot: 3.141592653589793 rad pos: 8.5,1.5 @@ -105098,7 +106100,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15829 + - uid: 15949 components: - rot: 3.141592653589793 rad pos: 30.5,-19.5 @@ -105108,14 +106110,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15830 + - uid: 15950 components: - pos: -5.5,-23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15831 + - uid: 15951 components: - rot: -1.5707963267948966 rad pos: 4.5,-42.5 @@ -105123,7 +106125,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15832 + - uid: 15952 components: - rot: 1.5707963267948966 rad pos: -10.5,-27.5 @@ -105131,15 +106133,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15833 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-14.5 - parent: 2 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15834 + - uid: 15953 components: - rot: 1.5707963267948966 rad pos: -6.5,-25.5 @@ -105147,7 +106141,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15835 + - uid: 15954 components: - rot: 1.5707963267948966 rad pos: -4.5,-25.5 @@ -105155,7 +106149,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15836 + - uid: 15955 components: - rot: -1.5707963267948966 rad pos: 29.5,-18.5 @@ -105163,7 +106157,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15837 + - uid: 15956 components: - rot: -1.5707963267948966 rad pos: 27.5,-18.5 @@ -105171,7 +106165,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15838 + - uid: 15957 components: - rot: 1.5707963267948966 rad pos: 28.5,-16.5 @@ -105179,7 +106173,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15839 + - uid: 15958 components: - rot: 1.5707963267948966 rad pos: 25.5,-16.5 @@ -105187,7 +106181,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15840 + - uid: 15959 components: - rot: 3.141592653589793 rad pos: 14.5,-29.5 @@ -105195,7 +106189,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15841 + - uid: 15960 components: - rot: 1.5707963267948966 rad pos: 8.5,-27.5 @@ -105203,7 +106197,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15842 + - uid: 15961 components: - rot: 1.5707963267948966 rad pos: 11.5,-27.5 @@ -105211,14 +106205,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15843 + - uid: 15962 components: - pos: -3.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15844 + - uid: 15963 components: - rot: 3.141592653589793 rad pos: 36.5,-29.5 @@ -105226,14 +106220,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15845 + - uid: 15964 components: - pos: 47.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15846 + - uid: 15965 components: - rot: -1.5707963267948966 rad pos: 9.5,16.5 @@ -105241,7 +106235,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15847 + - uid: 15966 components: - rot: -1.5707963267948966 rad pos: 13.5,16.5 @@ -105249,7 +106243,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15848 + - uid: 15967 components: - rot: -1.5707963267948966 rad pos: 35.5,1.5 @@ -105257,7 +106251,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15849 + - uid: 15968 components: - rot: -1.5707963267948966 rad pos: 29.5,1.5 @@ -105265,7 +106259,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15850 + - uid: 15969 components: - rot: -1.5707963267948966 rad pos: 34.5,15.5 @@ -105273,7 +106267,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15851 + - uid: 15970 components: - rot: -1.5707963267948966 rad pos: 32.5,15.5 @@ -105281,7 +106275,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15852 + - uid: 15971 components: - rot: -1.5707963267948966 rad pos: 41.5,15.5 @@ -105289,7 +106283,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15853 + - uid: 15972 components: - rot: -1.5707963267948966 rad pos: 13.5,-0.5 @@ -105297,7 +106291,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15854 + - uid: 15973 components: - rot: -1.5707963267948966 rad pos: 30.5,-42.5 @@ -105305,7 +106299,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15855 + - uid: 15974 components: - rot: -1.5707963267948966 rad pos: -7.5,-42.5 @@ -105313,7 +106307,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15856 + - uid: 15975 components: - rot: 1.5707963267948966 rad pos: -5.5,-42.5 @@ -105321,7 +106315,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15857 + - uid: 15976 components: - rot: -1.5707963267948966 rad pos: 2.5,-42.5 @@ -105329,7 +106323,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15858 + - uid: 15977 components: - rot: 3.141592653589793 rad pos: 14.5,-33.5 @@ -105337,7 +106331,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15859 + - uid: 15978 components: - rot: -1.5707963267948966 rad pos: 10.5,-42.5 @@ -105345,7 +106339,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15860 + - uid: 15979 components: - rot: 3.141592653589793 rad pos: -5.5,-33.5 @@ -105353,7 +106347,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15861 + - uid: 15980 components: - rot: 3.141592653589793 rad pos: -5.5,-31.5 @@ -105361,7 +106355,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15862 + - uid: 15981 components: - rot: 3.141592653589793 rad pos: -5.5,-29.5 @@ -105369,7 +106363,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15863 + - uid: 15982 components: - rot: 1.5707963267948966 rad pos: 19.5,-5.5 @@ -105377,14 +106371,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15864 + - uid: 15983 components: - pos: 10.5,7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15865 + - uid: 15984 components: - rot: 3.141592653589793 rad pos: 42.5,7.5 @@ -105392,7 +106386,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15866 + - uid: 15985 components: - rot: 3.141592653589793 rad pos: 8.5,4.5 @@ -105402,7 +106396,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15867 + - uid: 15986 components: - rot: 3.141592653589793 rad pos: 38.5,7.5 @@ -105410,14 +106404,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15868 + - uid: 15987 components: - pos: 34.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15869 + - uid: 15988 components: - pos: 10.5,18.5 parent: 2 @@ -105426,21 +106420,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15870 + - uid: 15989 components: - pos: -5.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15871 + - uid: 15990 components: - pos: -9.5,-4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15872 + - uid: 15991 components: - rot: -1.5707963267948966 rad pos: 6.5,-61.5 @@ -105448,21 +106442,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15873 + - uid: 15992 components: - pos: 0.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15874 + - uid: 15993 components: - pos: 34.5,4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15875 + - uid: 15994 components: - rot: 3.141592653589793 rad pos: 28.5,-32.5 @@ -105470,15 +106464,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15876 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-32.5 - parent: 2 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15877 + - uid: 15995 components: - rot: 1.5707963267948966 rad pos: 15.5,-30.5 @@ -105486,7 +106472,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15878 + - uid: 15996 components: - rot: 1.5707963267948966 rad pos: 17.5,-30.5 @@ -105496,7 +106482,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15880 + - uid: 15997 components: - rot: -1.5707963267948966 rad pos: 14.5,16.5 @@ -105504,7 +106490,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15881 + - uid: 15998 components: - rot: -1.5707963267948966 rad pos: 10.5,16.5 @@ -105512,7 +106498,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15882 + - uid: 15999 components: - rot: -1.5707963267948966 rad pos: 8.5,16.5 @@ -105520,28 +106506,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15883 + - uid: 16000 components: - pos: 21.5,10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15884 + - uid: 16001 components: - pos: 21.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15885 + - uid: 16002 components: - pos: 21.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15886 + - uid: 16003 components: - rot: 1.5707963267948966 rad pos: 27.5,12.5 @@ -105551,21 +106537,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15887 + - uid: 16004 components: - pos: 25.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15888 + - uid: 16005 components: - pos: 25.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15889 + - uid: 16006 components: - rot: -1.5707963267948966 rad pos: 22.5,7.5 @@ -105573,7 +106559,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15890 + - uid: 16007 components: - rot: -1.5707963267948966 rad pos: 23.5,7.5 @@ -105581,7 +106567,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15891 + - uid: 16008 components: - rot: 1.5707963267948966 rad pos: 24.5,7.5 @@ -105589,7 +106575,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15892 + - uid: 16009 components: - pos: 38.5,3.5 parent: 2 @@ -105598,21 +106584,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15893 + - uid: 16010 components: - pos: 31.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15894 + - uid: 16011 components: - pos: 31.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15895 + - uid: 16012 components: - rot: -1.5707963267948966 rad pos: 30.5,15.5 @@ -105620,7 +106606,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15896 + - uid: 16013 components: - rot: 1.5707963267948966 rad pos: 20.5,-5.5 @@ -105628,21 +106614,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15897 + - uid: 16014 components: - pos: 20.5,12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15898 + - uid: 16015 components: - pos: 20.5,11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15899 + - uid: 16016 components: - pos: 20.5,9.5 parent: 2 @@ -105651,14 +106637,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15900 + - uid: 16017 components: - pos: 20.5,8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15901 + - uid: 16018 components: - rot: 1.5707963267948966 rad pos: 19.5,7.5 @@ -105666,7 +106652,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15902 + - uid: 16019 components: - rot: 3.141592653589793 rad pos: 18.5,6.5 @@ -105674,7 +106660,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15903 + - uid: 16020 components: - rot: 3.141592653589793 rad pos: 18.5,5.5 @@ -105682,7 +106668,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15904 + - uid: 16021 components: - rot: 3.141592653589793 rad pos: 18.5,4.5 @@ -105690,7 +106676,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15905 + - uid: 16022 components: - rot: 1.5707963267948966 rad pos: 19.5,13.5 @@ -105700,7 +106686,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15906 + - uid: 16023 components: - rot: 1.5707963267948966 rad pos: 18.5,13.5 @@ -105708,7 +106694,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15907 + - uid: 16024 components: - rot: 3.141592653589793 rad pos: 17.5,14.5 @@ -105716,7 +106702,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15908 + - uid: 16025 components: - rot: 3.141592653589793 rad pos: 17.5,15.5 @@ -105724,7 +106710,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15909 + - uid: 16026 components: - rot: 3.141592653589793 rad pos: 17.5,16.5 @@ -105732,7 +106718,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15910 + - uid: 16027 components: - rot: 3.141592653589793 rad pos: 5.5,18.5 @@ -105742,7 +106728,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15911 + - uid: 16028 components: - rot: 1.5707963267948966 rad pos: 14.5,17.5 @@ -105750,7 +106736,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15912 + - uid: 16029 components: - rot: 1.5707963267948966 rad pos: 3.5,17.5 @@ -105758,7 +106744,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15913 + - uid: 16030 components: - rot: 1.5707963267948966 rad pos: 2.5,17.5 @@ -105766,7 +106752,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15914 + - uid: 16031 components: - rot: 1.5707963267948966 rad pos: -3.5,13.5 @@ -105774,14 +106760,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15915 + - uid: 16032 components: - pos: -8.5,3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15916 + - uid: 16033 components: - rot: 1.5707963267948966 rad pos: -4.5,1.5 @@ -105789,7 +106775,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15917 + - uid: 16034 components: - rot: 1.5707963267948966 rad pos: -3.5,1.5 @@ -105797,7 +106783,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15918 + - uid: 16035 components: - rot: 1.5707963267948966 rad pos: -2.5,1.5 @@ -105805,7 +106791,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15919 + - uid: 16036 components: - rot: 1.5707963267948966 rad pos: -1.5,1.5 @@ -105815,15 +106801,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15920 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,1.5 - parent: 2 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15921 + - uid: 16037 components: - rot: 1.5707963267948966 rad pos: 0.5,1.5 @@ -105831,51 +106809,49 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15922 + - uid: 16038 components: - pos: 1.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15923 + - uid: 16039 components: - pos: 1.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15924 + - uid: 16040 components: - pos: 1.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15925 + - uid: 16041 components: - pos: 1.5,-2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15930 + - uid: 16042 components: - pos: 9.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15931 + - uid: 16043 components: - pos: 9.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15932 + - uid: 16044 components: - rot: 1.5707963267948966 rad pos: 10.5,-1.5 @@ -105883,56 +106859,56 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15933 + - uid: 16045 components: - pos: 11.5,-2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15934 + - uid: 16046 components: - pos: 11.5,-3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15935 + - uid: 16047 components: - pos: 11.5,-4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15936 + - uid: 16048 components: - pos: 11.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15937 + - uid: 16049 components: - pos: 11.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15938 + - uid: 16050 components: - pos: 11.5,-7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15939 + - uid: 16051 components: - pos: 11.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15940 + - uid: 16052 components: - rot: -1.5707963267948966 rad pos: 9.5,-9.5 @@ -105940,7 +106916,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15941 + - uid: 16053 components: - rot: 3.141592653589793 rad pos: 19.5,19.5 @@ -105950,7 +106926,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15942 + - uid: 16054 components: - rot: 1.5707963267948966 rad pos: 26.5,21.5 @@ -105958,7 +106934,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15943 + - uid: 16055 components: - rot: 1.5707963267948966 rad pos: 27.5,21.5 @@ -105966,14 +106942,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15944 + - uid: 16056 components: - pos: 23.5,18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15945 + - uid: 16057 components: - pos: 23.5,19.5 parent: 2 @@ -105982,7 +106958,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15946 + - uid: 16058 components: - rot: 1.5707963267948966 rad pos: 24.5,20.5 @@ -105990,7 +106966,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15947 + - uid: 16059 components: - rot: 3.141592653589793 rad pos: 25.5,21.5 @@ -105998,7 +106974,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15948 + - uid: 16060 components: - rot: -1.5707963267948966 rad pos: -15.5,-38.5 @@ -106006,7 +106982,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15949 + - uid: 16061 components: - rot: -1.5707963267948966 rad pos: -14.5,-38.5 @@ -106014,21 +106990,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15950 + - uid: 16062 components: - pos: 7.5,17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15951 + - uid: 16063 components: - pos: 17.5,19.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15952 + - uid: 16064 components: - rot: 3.141592653589793 rad pos: 16.5,19.5 @@ -106036,14 +107012,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15953 + - uid: 16065 components: - pos: 34.5,2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15954 + - uid: 16066 components: - rot: -1.5707963267948966 rad pos: 30.5,0.5 @@ -106051,7 +107027,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15955 + - uid: 16067 components: - rot: 1.5707963267948966 rad pos: -6.5,-64.5 @@ -106059,14 +107035,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15956 + - uid: 16068 components: - pos: 21.5,-12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15957 + - uid: 16069 components: - rot: 3.141592653589793 rad pos: 34.5,-0.5 @@ -106074,7 +107050,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15958 + - uid: 16070 components: - rot: 3.141592653589793 rad pos: 34.5,-1.5 @@ -106082,7 +107058,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15959 + - uid: 16071 components: - rot: 3.141592653589793 rad pos: 34.5,-2.5 @@ -106090,7 +107066,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15960 + - uid: 16072 components: - rot: 3.141592653589793 rad pos: 34.5,-3.5 @@ -106098,7 +107074,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15961 + - uid: 16073 components: - rot: 3.141592653589793 rad pos: 34.5,-4.5 @@ -106106,7 +107082,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15962 + - uid: 16074 components: - rot: 3.141592653589793 rad pos: 34.5,-5.5 @@ -106114,7 +107090,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15963 + - uid: 16075 components: - rot: -1.5707963267948966 rad pos: 33.5,-6.5 @@ -106122,7 +107098,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15964 + - uid: 16076 components: - rot: -1.5707963267948966 rad pos: 32.5,-6.5 @@ -106130,7 +107106,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15965 + - uid: 16077 components: - rot: -1.5707963267948966 rad pos: 30.5,-6.5 @@ -106138,7 +107114,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15966 + - uid: 16078 components: - rot: -1.5707963267948966 rad pos: 28.5,-6.5 @@ -106146,7 +107122,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15967 + - uid: 16079 components: - rot: 1.5707963267948966 rad pos: 5.5,19.5 @@ -106154,7 +107130,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15968 + - uid: 16080 components: - rot: 1.5707963267948966 rad pos: 3.5,19.5 @@ -106164,7 +107140,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15969 + - uid: 16081 components: - rot: 1.5707963267948966 rad pos: 2.5,19.5 @@ -106172,7 +107148,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15970 + - uid: 16082 components: - rot: -1.5707963267948966 rad pos: 1.5,19.5 @@ -106180,21 +107156,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15971 + - uid: 16083 components: - pos: 26.5,-9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15972 + - uid: 16084 components: - pos: 26.5,-10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15973 + - uid: 16085 components: - rot: -1.5707963267948966 rad pos: 24.5,-12.5 @@ -106202,7 +107178,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15974 + - uid: 16086 components: - rot: -1.5707963267948966 rad pos: 22.5,-12.5 @@ -106210,7 +107186,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15975 + - uid: 16087 components: - rot: 3.141592653589793 rad pos: 26.5,-14.5 @@ -106218,7 +107194,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15976 + - uid: 16088 components: - rot: 3.141592653589793 rad pos: 26.5,-15.5 @@ -106226,7 +107202,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15977 + - uid: 16089 components: - rot: 3.141592653589793 rad pos: 26.5,-17.5 @@ -106234,7 +107210,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15978 + - uid: 16090 components: - rot: 1.5707963267948966 rad pos: 23.5,-23.5 @@ -106242,7 +107218,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15979 + - uid: 16091 components: - rot: 1.5707963267948966 rad pos: 22.5,-23.5 @@ -106250,7 +107226,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15980 + - uid: 16092 components: - rot: 1.5707963267948966 rad pos: 28.5,-22.5 @@ -106258,7 +107234,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15981 + - uid: 16093 components: - rot: 3.141592653589793 rad pos: 21.5,-15.5 @@ -106266,7 +107242,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15982 + - uid: 16094 components: - rot: 1.5707963267948966 rad pos: 21.5,-23.5 @@ -106274,7 +107250,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15983 + - uid: 16095 components: - pos: 24.5,-26.5 parent: 2 @@ -106283,14 +107259,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15984 + - uid: 16096 components: - pos: 24.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15985 + - uid: 16097 components: - rot: 3.141592653589793 rad pos: 26.5,-25.5 @@ -106298,7 +107274,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15986 + - uid: 16098 components: - rot: 3.141592653589793 rad pos: 26.5,-28.5 @@ -106306,7 +107282,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15987 + - uid: 16099 components: - rot: 3.141592653589793 rad pos: 26.5,-29.5 @@ -106314,7 +107290,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15988 + - uid: 16100 components: - rot: -1.5707963267948966 rad pos: 28.5,-30.5 @@ -106322,7 +107298,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15989 + - uid: 16101 components: - rot: -1.5707963267948966 rad pos: 26.5,-29.5 @@ -106330,30 +107306,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15990 + - uid: 16102 components: - pos: 28.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15991 + - uid: 16103 components: - - pos: 22.5,-32.5 + - pos: 22.5,-31.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15992 + - uid: 16104 components: - pos: 22.5,-33.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15993 + - uid: 16105 components: - rot: 3.141592653589793 rad pos: 21.5,-29.5 @@ -106361,21 +107335,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15995 + - uid: 16106 components: - pos: -11.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15996 + - uid: 16107 components: - pos: -8.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15997 + - uid: 16108 components: - rot: 1.5707963267948966 rad pos: 2.5,-25.5 @@ -106383,14 +107357,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15998 - components: - - pos: 2.5,-11.5 - parent: 2 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15999 + - uid: 16109 components: - rot: 1.5707963267948966 rad pos: -6.5,7.5 @@ -106398,7 +107365,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16000 + - uid: 16110 components: - rot: 1.5707963267948966 rad pos: -7.5,7.5 @@ -106406,7 +107373,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16001 + - uid: 16111 components: - rot: 1.5707963267948966 rad pos: -8.5,7.5 @@ -106414,7 +107381,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16002 + - uid: 16112 components: - rot: 1.5707963267948966 rad pos: -9.5,7.5 @@ -106422,7 +107389,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16003 + - uid: 16113 components: - rot: -1.5707963267948966 rad pos: -9.5,1.5 @@ -106430,7 +107397,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16004 + - uid: 16114 components: - rot: -1.5707963267948966 rad pos: -11.5,1.5 @@ -106440,7 +107407,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16005 + - uid: 16115 components: - rot: -1.5707963267948966 rad pos: -12.5,1.5 @@ -106448,63 +107415,63 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16006 + - uid: 16116 components: - pos: -9.5,-2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16007 + - uid: 16117 components: - pos: -9.5,-3.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16008 + - uid: 16118 components: - pos: -10.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16009 + - uid: 16119 components: - pos: -10.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16010 + - uid: 16120 components: - pos: -10.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16011 + - uid: 16121 components: - pos: -10.5,-3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16012 + - uid: 16122 components: - pos: -10.5,-4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16013 + - uid: 16123 components: - pos: -10.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16014 + - uid: 16124 components: - rot: 3.141592653589793 rad pos: -2.5,-64.5 @@ -106512,7 +107479,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16015 + - uid: 16125 components: - rot: 3.141592653589793 rad pos: -2.5,-63.5 @@ -106520,7 +107487,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16016 + - uid: 16126 components: - rot: 3.141592653589793 rad pos: -2.5,-62.5 @@ -106528,7 +107495,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16017 + - uid: 16127 components: - rot: -1.5707963267948966 rad pos: -3.5,-61.5 @@ -106536,7 +107503,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16018 + - uid: 16128 components: - rot: -1.5707963267948966 rad pos: -0.5,-61.5 @@ -106544,7 +107511,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16019 + - uid: 16129 components: - rot: -1.5707963267948966 rad pos: 0.5,-61.5 @@ -106552,7 +107519,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16020 + - uid: 16130 components: - rot: -1.5707963267948966 rad pos: 1.5,-61.5 @@ -106560,14 +107527,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16021 + - uid: 16131 components: - pos: -8.5,-63.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16022 + - uid: 16132 components: - rot: -1.5707963267948966 rad pos: -10.5,-61.5 @@ -106575,7 +107542,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16023 + - uid: 16133 components: - rot: -1.5707963267948966 rad pos: -11.5,-61.5 @@ -106583,7 +107550,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16024 + - uid: 16134 components: - rot: -1.5707963267948966 rad pos: -12.5,-61.5 @@ -106591,7 +107558,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16025 + - uid: 16135 components: - rot: -1.5707963267948966 rad pos: -13.5,-61.5 @@ -106599,7 +107566,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16026 + - uid: 16136 components: - rot: -1.5707963267948966 rad pos: -14.5,-61.5 @@ -106607,7 +107574,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16027 + - uid: 16137 components: - pos: -15.5,-62.5 parent: 2 @@ -106616,21 +107583,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16028 + - uid: 16138 components: - pos: -15.5,-63.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16029 + - uid: 16139 components: - pos: -15.5,-64.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16030 + - uid: 16140 components: - rot: 3.141592653589793 rad pos: -0.5,-61.5 @@ -106638,7 +107605,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16031 + - uid: 16141 components: - rot: 3.141592653589793 rad pos: -0.5,-62.5 @@ -106648,7 +107615,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16032 + - uid: 16142 components: - rot: 3.141592653589793 rad pos: -0.5,-64.5 @@ -106656,7 +107623,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16033 + - uid: 16143 components: - rot: -1.5707963267948966 rad pos: -10.5,-60.5 @@ -106664,7 +107631,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16034 + - uid: 16144 components: - rot: -1.5707963267948966 rad pos: -11.5,-60.5 @@ -106672,7 +107639,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16035 + - uid: 16145 components: - pos: -12.5,-62.5 parent: 2 @@ -106681,21 +107648,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16036 + - uid: 16146 components: - pos: -12.5,-63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16037 + - uid: 16147 components: - pos: -12.5,-64.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16038 + - uid: 16148 components: - rot: -1.5707963267948966 rad pos: 0.5,-60.5 @@ -106703,7 +107670,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16039 + - uid: 16149 components: - rot: -1.5707963267948966 rad pos: 1.5,-60.5 @@ -106711,7 +107678,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16040 + - uid: 16150 components: - rot: 1.5707963267948966 rad pos: 3.5,-60.5 @@ -106719,7 +107686,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16041 + - uid: 16151 components: - rot: -1.5707963267948966 rad pos: 4.5,-60.5 @@ -106727,7 +107694,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16042 + - uid: 16152 components: - rot: 3.141592653589793 rad pos: 5.5,-44.5 @@ -106737,7 +107704,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16043 + - uid: 16153 components: - rot: 3.141592653589793 rad pos: 5.5,-42.5 @@ -106745,7 +107712,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16044 + - uid: 16154 components: - rot: 3.141592653589793 rad pos: 3.5,-43.5 @@ -106753,7 +107720,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16045 + - uid: 16155 components: - rot: -1.5707963267948966 rad pos: 1.5,-42.5 @@ -106761,7 +107728,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16046 + - uid: 16156 components: - rot: -1.5707963267948966 rad pos: 0.5,-42.5 @@ -106769,7 +107736,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16047 + - uid: 16157 components: - rot: -1.5707963267948966 rad pos: -0.5,-42.5 @@ -106777,7 +107744,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16048 + - uid: 16158 components: - rot: -1.5707963267948966 rad pos: -1.5,-42.5 @@ -106785,7 +107752,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16049 + - uid: 16159 components: - rot: -1.5707963267948966 rad pos: -2.5,-42.5 @@ -106793,7 +107760,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16050 + - uid: 16160 components: - rot: -1.5707963267948966 rad pos: 4.5,-41.5 @@ -106801,7 +107768,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16051 + - uid: 16161 components: - rot: 3.141592653589793 rad pos: -1.5,-51.5 @@ -106809,7 +107776,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16052 + - uid: 16162 components: - rot: 3.141592653589793 rad pos: -9.5,-60.5 @@ -106817,7 +107784,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16053 + - uid: 16163 components: - rot: 1.5707963267948966 rad pos: -13.5,-60.5 @@ -106825,7 +107792,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16054 + - uid: 16164 components: - rot: -1.5707963267948966 rad pos: -13.5,-41.5 @@ -106833,7 +107800,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16055 + - uid: 16165 components: - rot: -1.5707963267948966 rad pos: 19.5,-29.5 @@ -106841,7 +107808,9 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16056 + - enabled: True + type: AmbientSound + - uid: 16166 components: - rot: -1.5707963267948966 rad pos: 21.5,10.5 @@ -106849,7 +107818,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16057 + - uid: 16167 components: - rot: 1.5707963267948966 rad pos: 6.5,-25.5 @@ -106857,7 +107826,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16058 + - uid: 16168 components: - rot: 1.5707963267948966 rad pos: -4.5,-27.5 @@ -106865,7 +107834,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16059 + - uid: 16169 components: - rot: 1.5707963267948966 rad pos: -3.5,-27.5 @@ -106873,7 +107842,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16060 + - uid: 16170 components: - rot: 1.5707963267948966 rad pos: -2.5,-27.5 @@ -106881,7 +107850,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16061 + - uid: 16171 components: - rot: 1.5707963267948966 rad pos: 0.5,-27.5 @@ -106889,7 +107858,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16062 + - uid: 16172 components: - rot: 1.5707963267948966 rad pos: -9.5,-27.5 @@ -106897,42 +107866,42 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16063 + - uid: 16173 components: - pos: -3.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16064 + - uid: 16174 components: - pos: -3.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16065 + - uid: 16175 components: - pos: -3.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16066 + - uid: 16176 components: - pos: -3.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16067 + - uid: 16177 components: - pos: -3.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16068 + - uid: 16178 components: - rot: 1.5707963267948966 rad pos: 17.5,-41.5 @@ -106940,7 +107909,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16069 + - uid: 16179 components: - rot: 1.5707963267948966 rad pos: 23.5,-43.5 @@ -106948,7 +107917,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16070 + - uid: 16180 components: - rot: -1.5707963267948966 rad pos: 25.5,-43.5 @@ -106956,7 +107925,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16071 + - uid: 16181 components: - rot: -1.5707963267948966 rad pos: 26.5,-43.5 @@ -106964,7 +107933,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16072 + - uid: 16182 components: - rot: -1.5707963267948966 rad pos: 27.5,-43.5 @@ -106972,7 +107941,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16073 + - uid: 16183 components: - rot: -1.5707963267948966 rad pos: 29.5,-43.5 @@ -106980,7 +107949,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16074 + - uid: 16184 components: - rot: -1.5707963267948966 rad pos: 21.5,-12.5 @@ -106988,7 +107957,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16075 + - uid: 16185 components: - rot: 3.141592653589793 rad pos: -11.5,-40.5 @@ -106998,7 +107967,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16076 + - uid: 16186 components: - pos: 35.5,7.5 parent: 2 @@ -107007,7 +107976,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16077 + - uid: 16187 components: - rot: 1.5707963267948966 rad pos: -34.5,20.5 @@ -107015,7 +107984,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16078 + - uid: 16188 components: - rot: 1.5707963267948966 rad pos: -32.5,20.5 @@ -107023,7 +107992,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16079 + - uid: 16189 components: - rot: -1.5707963267948966 rad pos: -26.5,-77.5 @@ -107031,7 +108000,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16080 + - uid: 16190 components: - rot: 3.141592653589793 rad pos: -18.5,-74.5 @@ -107039,7 +108008,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16081 + - uid: 16191 components: - rot: 3.141592653589793 rad pos: -18.5,-77.5 @@ -107047,7 +108016,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16082 + - uid: 16192 components: - rot: 1.5707963267948966 rad pos: -24.5,-78.5 @@ -107055,7 +108024,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16083 + - uid: 16193 components: - rot: 1.5707963267948966 rad pos: -25.5,-78.5 @@ -107063,7 +108032,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16084 + - uid: 16194 components: - rot: 1.5707963267948966 rad pos: -17.5,-61.5 @@ -107071,7 +108040,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16085 + - uid: 16195 components: - rot: 1.5707963267948966 rad pos: -16.5,-61.5 @@ -107079,14 +108048,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16086 + - uid: 16196 components: - pos: -24.5,-87.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16087 + - uid: 16197 components: - rot: 1.5707963267948966 rad pos: -18.5,-61.5 @@ -107094,14 +108063,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16088 + - uid: 16198 components: - pos: -3.5,-4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16089 + - uid: 16199 components: - pos: 35.5,4.5 parent: 2 @@ -107110,21 +108079,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16090 + - uid: 16200 components: - pos: 17.5,-4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16091 + - uid: 16201 components: - pos: 17.5,-1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16092 + - uid: 16202 components: - rot: -1.5707963267948966 rad pos: 16.5,-0.5 @@ -107132,7 +108101,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16093 + - uid: 16203 components: - rot: -1.5707963267948966 rad pos: 12.5,-0.5 @@ -107140,7 +108109,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16094 + - uid: 16204 components: - rot: -1.5707963267948966 rad pos: 35.5,15.5 @@ -107148,7 +108117,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16095 + - uid: 16205 components: - rot: -1.5707963267948966 rad pos: 33.5,15.5 @@ -107156,7 +108125,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16096 + - uid: 16206 components: - rot: 3.141592653589793 rad pos: 21.5,13.5 @@ -107164,7 +108133,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16098 + - uid: 16207 components: - rot: 1.5707963267948966 rad pos: 30.5,9.5 @@ -107174,15 +108143,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16100 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-14.5 - parent: 2 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16102 + - uid: 16208 components: - rot: -1.5707963267948966 rad pos: -4.5,7.5 @@ -107190,29 +108151,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16103 + - uid: 16209 components: - pos: -3.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16104 + - uid: 16210 components: - pos: 7.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16105 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-1.5 - parent: 2 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16106 + - uid: 16211 components: - rot: 3.141592653589793 rad pos: 2.5,4.5 @@ -107220,14 +108173,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16107 + - uid: 16212 components: - pos: 0.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16108 + - uid: 16213 components: - rot: 1.5707963267948966 rad pos: -1.5,11.5 @@ -107237,7 +108190,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16109 + - uid: 16214 components: - rot: 1.5707963267948966 rad pos: -7.5,-1.5 @@ -107245,7 +108198,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16110 + - uid: 16215 components: - rot: 1.5707963267948966 rad pos: 1.5,-1.5 @@ -107253,28 +108206,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16111 + - uid: 16216 components: - pos: 10.5,4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16112 + - uid: 16217 components: - pos: 10.5,6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16113 + - uid: 16218 components: - pos: 10.5,5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16114 + - uid: 16219 components: - rot: 3.141592653589793 rad pos: -21.5,-86.5 @@ -107282,14 +108235,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16115 + - uid: 16220 components: - pos: -19.5,-58.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16116 + - uid: 16221 components: - rot: 1.5707963267948966 rad pos: 24.5,-16.5 @@ -107297,7 +108250,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16117 + - uid: 16222 components: - rot: 1.5707963267948966 rad pos: 29.5,-16.5 @@ -107305,14 +108258,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16118 + - uid: 16223 components: - pos: 31.5,-17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16119 + - uid: 16224 components: - pos: 31.5,-15.5 parent: 2 @@ -107321,7 +108274,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16120 + - uid: 16225 components: - rot: 3.141592653589793 rad pos: 10.5,-3.5 @@ -107329,7 +108282,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16121 + - uid: 16226 components: - rot: 3.141592653589793 rad pos: 10.5,-2.5 @@ -107337,7 +108290,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16122 + - uid: 16227 components: - rot: -1.5707963267948966 rad pos: 7.5,-0.5 @@ -107345,7 +108298,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16123 + - uid: 16228 components: - rot: 3.141592653589793 rad pos: 10.5,-1.5 @@ -107353,7 +108306,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16124 + - uid: 16229 components: - rot: 1.5707963267948966 rad pos: 18.5,12.5 @@ -107361,7 +108314,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16125 + - uid: 16230 components: - rot: 1.5707963267948966 rad pos: 19.5,12.5 @@ -107371,7 +108324,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16126 + - uid: 16231 components: - rot: -1.5707963267948966 rad pos: 5.5,-0.5 @@ -107379,7 +108332,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16127 + - uid: 16232 components: - rot: -1.5707963267948966 rad pos: 6.5,-0.5 @@ -107387,7 +108340,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16128 + - uid: 16233 components: - rot: -1.5707963267948966 rad pos: 9.5,-0.5 @@ -107395,7 +108348,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16129 + - uid: 16234 components: - rot: 3.141592653589793 rad pos: -9.5,-41.5 @@ -107403,14 +108356,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16130 + - uid: 16235 components: - pos: 8.5,6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16131 + - uid: 16236 components: - rot: 3.141592653589793 rad pos: 21.5,14.5 @@ -107418,28 +108371,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16132 + - uid: 16237 components: - pos: -3.5,-30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16133 + - uid: 16238 components: - pos: -3.5,-31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16134 + - uid: 16239 components: - pos: -3.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16135 + - uid: 16240 components: - rot: 1.5707963267948966 rad pos: -0.5,-1.5 @@ -107447,7 +108400,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16136 + - uid: 16241 components: - rot: 1.5707963267948966 rad pos: 9.5,-25.5 @@ -107455,7 +108408,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16137 + - uid: 16242 components: - rot: 1.5707963267948966 rad pos: 8.5,-25.5 @@ -107463,7 +108416,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16138 + - uid: 16243 components: - rot: -1.5707963267948966 rad pos: 18.5,17.5 @@ -107471,7 +108424,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16139 + - uid: 16244 components: - rot: 1.5707963267948966 rad pos: -0.5,13.5 @@ -107479,28 +108432,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16140 + - uid: 16245 components: - pos: -6.5,12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16141 + - uid: 16246 components: - pos: -6.5,9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16142 + - uid: 16247 components: - pos: 15.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16143 + - uid: 16248 components: - rot: 1.5707963267948966 rad pos: 4.5,-27.5 @@ -107508,7 +108461,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16144 + - uid: 16249 components: - rot: 1.5707963267948966 rad pos: 5.5,-27.5 @@ -107516,7 +108469,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16145 + - uid: 16250 components: - rot: 1.5707963267948966 rad pos: 13.5,-43.5 @@ -107524,7 +108477,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16146 + - uid: 16251 components: - rot: -1.5707963267948966 rad pos: 6.5,-42.5 @@ -107532,7 +108485,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16147 + - uid: 16252 components: - rot: 3.141592653589793 rad pos: 14.5,-36.5 @@ -107540,7 +108493,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16148 + - uid: 16253 components: - rot: -1.5707963267948966 rad pos: 11.5,-41.5 @@ -107548,7 +108501,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16149 + - uid: 16254 components: - rot: 3.141592653589793 rad pos: 14.5,-39.5 @@ -107556,7 +108509,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16150 + - uid: 16255 components: - rot: 3.141592653589793 rad pos: 14.5,-40.5 @@ -107564,7 +108517,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16151 + - uid: 16256 components: - rot: -1.5707963267948966 rad pos: 12.5,-41.5 @@ -107572,7 +108525,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16152 + - uid: 16257 components: - rot: 3.141592653589793 rad pos: 14.5,-38.5 @@ -107580,7 +108533,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16153 + - uid: 16258 components: - rot: -1.5707963267948966 rad pos: 13.5,-41.5 @@ -107588,14 +108541,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16154 + - uid: 16259 components: - pos: 15.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16155 + - uid: 16260 components: - rot: -1.5707963267948966 rad pos: 8.5,-41.5 @@ -107603,7 +108556,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16156 + - uid: 16261 components: - rot: -1.5707963267948966 rad pos: 7.5,-41.5 @@ -107611,7 +108564,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16157 + - uid: 16262 components: - rot: -1.5707963267948966 rad pos: 9.5,-41.5 @@ -107619,14 +108572,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16158 + - uid: 16263 components: - pos: 15.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16159 + - uid: 16264 components: - rot: 3.141592653589793 rad pos: 40.5,-72.5 @@ -107634,7 +108587,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16160 + - uid: 16265 components: - rot: 3.141592653589793 rad pos: 16.5,17.5 @@ -107642,7 +108595,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16161 + - uid: 16266 components: - rot: 3.141592653589793 rad pos: 16.5,18.5 @@ -107650,7 +108603,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16162 + - uid: 16267 components: - rot: 3.141592653589793 rad pos: 16.5,20.5 @@ -107658,7 +108611,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16163 + - uid: 16268 components: - rot: 3.141592653589793 rad pos: 16.5,21.5 @@ -107666,7 +108619,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16164 + - uid: 16269 components: - rot: -1.5707963267948966 rad pos: 33.5,0.5 @@ -107674,7 +108627,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16165 + - uid: 16270 components: - rot: -1.5707963267948966 rad pos: 32.5,0.5 @@ -107682,7 +108635,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16166 + - uid: 16271 components: - rot: -1.5707963267948966 rad pos: 31.5,0.5 @@ -107692,7 +108645,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16167 + - uid: 16272 components: - rot: -1.5707963267948966 rad pos: 29.5,0.5 @@ -107700,7 +108653,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16168 + - uid: 16273 components: - rot: -1.5707963267948966 rad pos: 28.5,0.5 @@ -107708,7 +108661,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16169 + - uid: 16274 components: - rot: 3.141592653589793 rad pos: 14.5,-34.5 @@ -107716,14 +108669,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16170 + - uid: 16275 components: - pos: 15.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16171 + - uid: 16276 components: - rot: 3.141592653589793 rad pos: 14.5,-31.5 @@ -107731,49 +108684,49 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16172 + - uid: 16277 components: - pos: 15.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16173 + - uid: 16278 components: - pos: 15.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16174 + - uid: 16279 components: - pos: 15.5,-31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16175 + - uid: 16280 components: - pos: 15.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16176 + - uid: 16281 components: - pos: 15.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16177 + - uid: 16282 components: - pos: 15.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16178 + - uid: 16283 components: - rot: 1.5707963267948966 rad pos: 19.5,-17.5 @@ -107781,14 +108734,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16179 + - uid: 16284 components: - pos: 15.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16180 + - uid: 16285 components: - rot: 1.5707963267948966 rad pos: 16.5,-17.5 @@ -107796,7 +108749,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16181 + - uid: 16286 components: - rot: 1.5707963267948966 rad pos: 17.5,-17.5 @@ -107804,7 +108757,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16182 + - uid: 16287 components: - rot: 1.5707963267948966 rad pos: 18.5,-17.5 @@ -107812,7 +108765,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16183 + - uid: 16288 components: - rot: 3.141592653589793 rad pos: 15.5,-27.5 @@ -107820,14 +108773,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16184 + - uid: 16289 components: - pos: 26.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16185 + - uid: 16290 components: - rot: 1.5707963267948966 rad pos: -2.5,-25.5 @@ -107835,7 +108788,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16186 + - uid: 16291 components: - rot: -1.5707963267948966 rad pos: 20.5,-30.5 @@ -107843,9 +108796,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16187 + - uid: 16292 components: - rot: -1.5707963267948966 rad pos: 19.5,-30.5 @@ -107853,7 +108804,9 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16189 + - enabled: True + type: AmbientSound + - uid: 16293 components: - rot: -1.5707963267948966 rad pos: 23.5,-30.5 @@ -107861,14 +108814,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16190 + - uid: 16294 components: - pos: 28.5,-30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16191 + - uid: 16295 components: - rot: 3.141592653589793 rad pos: 15.5,-28.5 @@ -107876,14 +108829,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16192 + - uid: 16296 components: - pos: -3.5,-16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16193 + - uid: 16297 components: - rot: 1.5707963267948966 rad pos: 16.5,-30.5 @@ -107891,15 +108844,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16194 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-25.5 - parent: 2 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16195 + - uid: 16298 components: - rot: 3.141592653589793 rad pos: 15.5,-26.5 @@ -107907,14 +108852,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16196 + - uid: 16299 components: - pos: -3.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16197 + - uid: 16300 components: - rot: 1.5707963267948966 rad pos: -29.5,-80.5 @@ -107922,7 +108867,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16198 + - uid: 16301 components: - rot: -1.5707963267948966 rad pos: -20.5,-73.5 @@ -107930,14 +108875,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16199 + - uid: 16302 components: - pos: -3.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16200 + - uid: 16303 components: - rot: -1.5707963267948966 rad pos: -8.5,-41.5 @@ -107945,21 +108890,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16201 + - uid: 16304 components: - pos: -23.5,-76.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16202 + - uid: 16305 components: - pos: -23.5,-75.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16203 + - uid: 16306 components: - rot: -1.5707963267948966 rad pos: -19.5,-73.5 @@ -107967,7 +108912,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16204 + - uid: 16307 components: - rot: -1.5707963267948966 rad pos: 8.5,12.5 @@ -107975,7 +108920,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16205 + - uid: 16308 components: - rot: 3.141592653589793 rad pos: 8.5,12.5 @@ -107983,7 +108928,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16206 + - uid: 16309 components: - rot: -1.5707963267948966 rad pos: -9.5,-41.5 @@ -107991,7 +108936,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16207 + - uid: 16310 components: - rot: 3.141592653589793 rad pos: -12.5,-45.5 @@ -107999,14 +108944,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16208 + - uid: 16311 components: - pos: -9.5,-54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16209 + - uid: 16312 components: - rot: 3.141592653589793 rad pos: -3.5,-54.5 @@ -108014,7 +108959,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16210 + - uid: 16313 components: - rot: 3.141592653589793 rad pos: -3.5,-55.5 @@ -108022,7 +108967,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16211 + - uid: 16314 components: - rot: 3.141592653589793 rad pos: -1.5,-49.5 @@ -108030,7 +108975,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16212 + - uid: 16315 components: - rot: -1.5707963267948966 rad pos: -1.5,-41.5 @@ -108038,7 +108983,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16213 + - uid: 16316 components: - rot: -1.5707963267948966 rad pos: -2.5,-41.5 @@ -108046,35 +108991,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16214 + - uid: 16317 components: - pos: -5.5,-16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16215 - components: - - pos: 2.5,-13.5 - parent: 2 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16216 + - uid: 16318 components: - pos: -5.5,-13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16217 + - uid: 16319 components: - pos: -5.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16218 + - uid: 16320 components: - rot: -1.5707963267948966 rad pos: -6.5,-41.5 @@ -108082,84 +109020,77 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16219 + - uid: 16321 components: - pos: -5.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16220 + - uid: 16322 components: - pos: -5.5,-4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16221 + - uid: 16323 components: - pos: -5.5,-3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16222 + - uid: 16324 components: - pos: -5.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16223 + - uid: 16325 components: - pos: -5.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16224 + - uid: 16326 components: - pos: -5.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16225 - components: - - pos: -5.5,-21.5 - parent: 2 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16226 + - uid: 16327 components: - pos: -5.5,-15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16227 + - uid: 16328 components: - pos: -5.5,-20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16228 + - uid: 16329 components: - pos: -5.5,-19.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16229 + - uid: 16330 components: - pos: -5.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16230 + - uid: 16331 components: - rot: 1.5707963267948966 rad pos: -1.5,13.5 @@ -108169,7 +109100,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16231 + - uid: 16332 components: - rot: 3.141592653589793 rad pos: -1.5,-48.5 @@ -108177,7 +109108,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16232 + - uid: 16333 components: - rot: 3.141592653589793 rad pos: -21.5,-88.5 @@ -108185,7 +109116,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16233 + - uid: 16334 components: - rot: 3.141592653589793 rad pos: 34.5,-31.5 @@ -108193,7 +109124,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16234 + - uid: 16335 components: - rot: -1.5707963267948966 rad pos: -1.5,-14.5 @@ -108201,7 +109132,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16235 + - uid: 16336 components: - rot: 3.141592653589793 rad pos: 34.5,-30.5 @@ -108209,7 +109140,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16236 + - uid: 16337 components: - rot: 1.5707963267948966 rad pos: 43.5,-24.5 @@ -108217,7 +109148,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16237 + - uid: 16338 components: - rot: 1.5707963267948966 rad pos: -28.5,-78.5 @@ -108225,7 +109156,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16238 + - uid: 16339 components: - rot: 1.5707963267948966 rad pos: -29.5,-78.5 @@ -108233,7 +109164,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16239 + - uid: 16340 components: - rot: -1.5707963267948966 rad pos: -21.5,30.5 @@ -108241,7 +109172,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16240 + - uid: 16341 components: - rot: 3.141592653589793 rad pos: 34.5,-37.5 @@ -108249,7 +109180,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16241 + - uid: 16342 components: - rot: 3.141592653589793 rad pos: 34.5,-33.5 @@ -108257,14 +109188,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16242 - components: - - pos: 24.5,-30.5 - parent: 2 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16243 + - uid: 16343 components: - rot: -1.5707963267948966 rad pos: 30.5,12.5 @@ -108274,7 +109198,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16244 + - uid: 16344 components: - rot: -1.5707963267948966 rad pos: 19.5,16.5 @@ -108282,7 +109206,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16245 + - uid: 16345 components: - rot: 3.141592653589793 rad pos: -12.5,6.5 @@ -108290,7 +109214,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16246 + - uid: 16346 components: - rot: -1.5707963267948966 rad pos: 32.5,12.5 @@ -108298,7 +109222,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16247 + - uid: 16347 components: - rot: 3.141592653589793 rad pos: 30.5,-20.5 @@ -108308,7 +109232,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16248 + - uid: 16348 components: - rot: 3.141592653589793 rad pos: 10.5,10.5 @@ -108316,7 +109240,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16249 + - uid: 16349 components: - rot: 1.5707963267948966 rad pos: 8.5,8.5 @@ -108324,7 +109248,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16250 + - uid: 16350 components: - rot: -1.5707963267948966 rad pos: -22.5,30.5 @@ -108332,7 +109256,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16251 + - uid: 16351 components: - rot: -1.5707963267948966 rad pos: -20.5,29.5 @@ -108340,28 +109264,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16252 + - uid: 16352 components: - pos: -20.5,26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16253 - components: - - pos: 26.5,-31.5 - parent: 2 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16254 + - uid: 16353 components: - pos: 26.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16255 + - uid: 16354 components: - rot: 3.141592653589793 rad pos: 2.5,-2.5 @@ -108369,37 +109286,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16257 + - uid: 16355 components: - pos: -3.5,-3.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16258 + - uid: 16356 components: - pos: -3.5,-2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16259 + - uid: 16357 components: - pos: -3.5,-15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16260 + - uid: 16358 components: - pos: 47.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16261 + - uid: 16359 components: - rot: 3.141592653589793 rad pos: 8.5,5.5 @@ -108407,7 +109322,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16262 + - uid: 16360 components: - rot: -1.5707963267948966 rad pos: 29.5,12.5 @@ -108415,7 +109330,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16263 + - uid: 16361 components: - rot: 3.141592653589793 rad pos: 40.5,3.5 @@ -108425,7 +109340,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16264 + - uid: 16362 components: - rot: 1.5707963267948966 rad pos: 42.5,-27.5 @@ -108433,7 +109348,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16265 + - uid: 16363 components: - rot: 1.5707963267948966 rad pos: 17.5,12.5 @@ -108441,7 +109356,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16266 + - uid: 16364 components: - rot: 1.5707963267948966 rad pos: 43.5,-27.5 @@ -108449,7 +109364,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16267 + - uid: 16365 components: - rot: -1.5707963267948966 rad pos: 10.5,12.5 @@ -108457,21 +109372,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16268 + - uid: 16366 components: - pos: 26.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16269 + - uid: 16367 components: - pos: 26.5,-16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16270 + - uid: 16368 components: - rot: -1.5707963267948966 rad pos: 27.5,-30.5 @@ -108481,7 +109396,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16271 + - uid: 16369 components: - rot: -1.5707963267948966 rad pos: 22.5,-42.5 @@ -108489,7 +109404,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16272 + - uid: 16370 components: - rot: -1.5707963267948966 rad pos: 23.5,-42.5 @@ -108497,7 +109412,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16273 + - uid: 16371 components: - rot: -1.5707963267948966 rad pos: 27.5,-42.5 @@ -108505,7 +109420,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16274 + - uid: 16372 components: - rot: 3.141592653589793 rad pos: 8.5,2.5 @@ -108513,14 +109428,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16275 + - uid: 16373 components: - pos: -11.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16276 + - uid: 16374 components: - rot: 3.141592653589793 rad pos: -8.5,-23.5 @@ -108528,7 +109443,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16277 + - uid: 16375 components: - rot: 3.141592653589793 rad pos: 10.5,9.5 @@ -108536,14 +109451,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16278 - components: - - pos: 2.5,-12.5 - parent: 2 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16279 + - uid: 16376 components: - rot: -1.5707963267948966 rad pos: 20.5,16.5 @@ -108551,14 +109459,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16280 - components: - - pos: 23.5,-33.5 - parent: 2 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16281 + - uid: 16377 components: - rot: 1.5707963267948966 rad pos: 23.5,-54.5 @@ -108568,28 +109469,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16282 + - uid: 16378 components: - pos: -3.5,-17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16283 + - uid: 16379 components: - pos: -5.5,-22.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16284 + - uid: 16380 components: - pos: -5.5,-18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16285 + - uid: 16381 components: - rot: -1.5707963267948966 rad pos: -23.5,30.5 @@ -108597,7 +109498,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16286 + - uid: 16382 components: - rot: -1.5707963267948966 rad pos: -16.5,29.5 @@ -108605,7 +109506,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16287 + - uid: 16383 components: - rot: -1.5707963267948966 rad pos: -19.5,29.5 @@ -108613,7 +109514,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16288 + - uid: 16384 components: - rot: -1.5707963267948966 rad pos: 10.5,-9.5 @@ -108621,7 +109522,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16289 + - uid: 16385 components: - rot: 3.141592653589793 rad pos: 34.5,-34.5 @@ -108629,7 +109530,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16290 + - uid: 16386 components: - rot: 1.5707963267948966 rad pos: 6.5,19.5 @@ -108637,7 +109538,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16291 + - uid: 16387 components: - rot: 3.141592653589793 rad pos: 40.5,1.5 @@ -108645,21 +109546,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16292 + - uid: 16388 components: - pos: 0.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16293 + - uid: 16389 components: - pos: 0.5,10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16294 + - uid: 16390 components: - rot: 1.5707963267948966 rad pos: -0.5,11.5 @@ -108667,7 +109568,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16295 + - uid: 16391 components: - rot: 3.141592653589793 rad pos: 2.5,3.5 @@ -108675,12 +109576,12 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16296 + - uid: 16392 components: - pos: 2.5,12.5 parent: 2 type: Transform - - uid: 16297 + - uid: 16393 components: - rot: 3.141592653589793 rad pos: 8.5,3.5 @@ -108688,26 +109589,26 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16298 + - uid: 16394 components: - pos: 34.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16299 + - uid: 16395 components: - pos: 2.5,13.5 parent: 2 type: Transform - - uid: 16300 + - uid: 16396 components: - pos: 2.5,-0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16301 + - uid: 16397 components: - rot: 1.5707963267948966 rad pos: 3.5,0.5 @@ -108715,7 +109616,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16302 + - uid: 16398 components: - rot: 1.5707963267948966 rad pos: -2.5,-1.5 @@ -108723,7 +109624,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16303 + - uid: 16399 components: - rot: 1.5707963267948966 rad pos: -5.5,-1.5 @@ -108731,7 +109632,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16304 + - uid: 16400 components: - rot: 3.141592653589793 rad pos: -1.5,-50.5 @@ -108739,7 +109640,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16305 + - uid: 16401 components: - rot: -1.5707963267948966 rad pos: 37.5,11.5 @@ -108747,7 +109648,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16306 + - uid: 16402 components: - rot: 1.5707963267948966 rad pos: 8.5,17.5 @@ -108755,7 +109656,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16307 + - uid: 16403 components: - rot: 1.5707963267948966 rad pos: 7.5,17.5 @@ -108763,7 +109664,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16308 + - uid: 16404 components: - rot: 1.5707963267948966 rad pos: 6.5,17.5 @@ -108771,14 +109672,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16309 + - uid: 16405 components: - pos: -8.5,7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16310 + - uid: 16406 components: - rot: 1.5707963267948966 rad pos: 12.5,17.5 @@ -108786,7 +109687,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16311 + - uid: 16407 components: - rot: 3.141592653589793 rad pos: -3.5,-58.5 @@ -108796,14 +109697,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16312 + - uid: 16408 components: - pos: -3.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16313 + - uid: 16409 components: - rot: -1.5707963267948966 rad pos: -6.5,-42.5 @@ -108811,7 +109712,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16314 + - uid: 16410 components: - rot: 3.141592653589793 rad pos: 2.5,2.5 @@ -108819,7 +109720,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16315 + - uid: 16411 components: - rot: -1.5707963267948966 rad pos: 18.5,-12.5 @@ -108827,7 +109728,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16316 + - uid: 16412 components: - rot: 1.5707963267948966 rad pos: 22.5,-16.5 @@ -108835,7 +109736,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16317 + - uid: 16413 components: - rot: 1.5707963267948966 rad pos: 23.5,-16.5 @@ -108843,7 +109744,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16318 + - uid: 16414 components: - rot: 1.5707963267948966 rad pos: 27.5,-16.5 @@ -108851,7 +109752,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16319 + - uid: 16415 components: - rot: 1.5707963267948966 rad pos: 31.5,-16.5 @@ -108859,28 +109760,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16320 + - uid: 16416 components: - pos: 21.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16321 + - uid: 16417 components: - pos: 21.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16322 + - uid: 16418 components: - pos: 21.5,-11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16323 + - uid: 16419 components: - pos: 21.5,-9.5 parent: 2 @@ -108889,7 +109790,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16324 + - uid: 16420 components: - pos: 21.5,-7.5 parent: 2 @@ -108898,21 +109799,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16325 + - uid: 16421 components: - pos: 21.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16326 + - uid: 16422 components: - pos: 21.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16328 + - uid: 16423 components: - rot: 3.141592653589793 rad pos: 26.5,-23.5 @@ -108920,7 +109821,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16329 + - uid: 16424 components: - rot: 1.5707963267948966 rad pos: 27.5,-22.5 @@ -108928,14 +109829,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16330 + - uid: 16425 components: - pos: 20.5,-22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16331 + - uid: 16426 components: - rot: 3.141592653589793 rad pos: 26.5,-13.5 @@ -108943,14 +109844,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16332 + - uid: 16427 components: - pos: 31.5,-16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16333 + - uid: 16428 components: - pos: 33.5,-15.5 parent: 2 @@ -108959,21 +109860,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16334 + - uid: 16429 components: - pos: -5.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16335 + - uid: 16430 components: - pos: -5.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16336 + - uid: 16431 components: - rot: -1.5707963267948966 rad pos: 28.5,-42.5 @@ -108981,16 +109882,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16337 - components: - - pos: 26.5,-33.5 - parent: 2 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16338 + - uid: 16432 components: - rot: -1.5707963267948966 rad pos: 25.5,-29.5 @@ -109000,7 +109892,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16339 + - uid: 16433 components: - rot: -1.5707963267948966 rad pos: 6.5,12.5 @@ -109008,7 +109900,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16340 + - uid: 16434 components: - rot: -1.5707963267948966 rad pos: 9.5,12.5 @@ -109018,7 +109910,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16341 + - uid: 16435 components: - rot: -1.5707963267948966 rad pos: 20.5,-12.5 @@ -109026,7 +109918,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16342 + - uid: 16436 components: - rot: 1.5707963267948966 rad pos: 15.5,-41.5 @@ -109034,7 +109926,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16343 + - uid: 16437 components: - rot: -1.5707963267948966 rad pos: -17.5,29.5 @@ -109042,7 +109934,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16344 + - uid: 16438 components: - rot: -1.5707963267948966 rad pos: -17.5,30.5 @@ -109050,7 +109942,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16345 + - uid: 16439 components: - rot: -1.5707963267948966 rad pos: -18.5,30.5 @@ -109058,7 +109950,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16346 + - uid: 16440 components: - rot: -1.5707963267948966 rad pos: -19.5,30.5 @@ -109066,7 +109958,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16347 + - uid: 16441 components: - rot: -1.5707963267948966 rad pos: -22.5,29.5 @@ -109074,7 +109966,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16348 + - uid: 16442 components: - rot: -1.5707963267948966 rad pos: -21.5,29.5 @@ -109084,28 +109976,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16349 + - uid: 16443 components: - pos: 36.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16350 + - uid: 16444 components: - pos: 36.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16351 - components: - - pos: 23.5,-32.5 - parent: 2 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 16352 + - uid: 16445 components: - rot: 3.141592653589793 rad pos: -10.5,6.5 @@ -109113,21 +109998,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16353 + - uid: 16446 components: - pos: -18.5,27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16354 + - uid: 16447 components: - pos: 36.5,-22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16355 + - uid: 16448 components: - pos: 47.5,-26.5 parent: 2 @@ -109136,7 +110021,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16356 + - uid: 16449 components: - rot: -1.5707963267948966 rad pos: 25.5,-30.5 @@ -109146,7 +110031,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16357 + - uid: 16450 components: - rot: 3.141592653589793 rad pos: 34.5,-29.5 @@ -109154,7 +110039,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16358 + - uid: 16451 components: - rot: -1.5707963267948966 rad pos: 19.5,-12.5 @@ -109162,7 +110047,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16359 + - uid: 16452 components: - rot: -1.5707963267948966 rad pos: -1.5,-61.5 @@ -109170,7 +110055,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16360 + - uid: 16453 components: - pos: -10.5,-2.5 parent: 2 @@ -109179,7 +110064,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16361 + - uid: 16454 components: - rot: -1.5707963267948966 rad pos: 24.5,-30.5 @@ -109187,7 +110072,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16363 + - uid: 16455 components: - rot: 1.5707963267948966 rad pos: 16.5,17.5 @@ -109195,7 +110080,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16364 + - uid: 16456 components: - rot: 1.5707963267948966 rad pos: 18.5,-5.5 @@ -109203,7 +110088,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16365 + - uid: 16457 components: - rot: -1.5707963267948966 rad pos: 15.5,16.5 @@ -109211,7 +110096,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16366 + - uid: 16458 components: - rot: -1.5707963267948966 rad pos: 18.5,16.5 @@ -109219,7 +110104,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16367 + - uid: 16459 components: - rot: -1.5707963267948966 rad pos: 17.5,16.5 @@ -109227,7 +110112,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16368 + - uid: 16460 components: - rot: -1.5707963267948966 rad pos: 33.5,12.5 @@ -109237,7 +110122,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16369 + - uid: 16461 components: - rot: 3.141592653589793 rad pos: 40.5,2.5 @@ -109245,21 +110130,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16370 + - uid: 16462 components: - pos: -20.5,27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16371 + - uid: 16463 components: - - pos: 22.5,-31.5 + - pos: 22.5,-32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16372 + - uid: 16464 components: - pos: -20.5,32.5 parent: 2 @@ -109268,7 +110153,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16373 + - uid: 16465 components: - rot: 1.5707963267948966 rad pos: 46.5,-28.5 @@ -109276,14 +110161,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16374 + - uid: 16466 components: - pos: 36.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16375 + - uid: 16467 components: - rot: 1.5707963267948966 rad pos: 42.5,-24.5 @@ -109291,7 +110176,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16376 + - uid: 16468 components: - rot: 1.5707963267948966 rad pos: -7.5,-64.5 @@ -109299,14 +110184,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16377 + - uid: 16469 components: - pos: -23.5,-81.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16378 + - uid: 16470 components: - rot: 1.5707963267948966 rad pos: -27.5,-80.5 @@ -109314,7 +110199,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16379 + - uid: 16471 components: - rot: -1.5707963267948966 rad pos: 8.5,-42.5 @@ -109322,14 +110207,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16380 + - uid: 16472 components: - pos: -23.5,-79.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16381 + - uid: 16473 components: - rot: 1.5707963267948966 rad pos: -28.5,-80.5 @@ -109337,7 +110222,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16382 + - uid: 16474 components: - rot: 1.5707963267948966 rad pos: -26.5,-80.5 @@ -109345,7 +110230,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16383 + - uid: 16475 components: - rot: -1.5707963267948966 rad pos: 7.5,-42.5 @@ -109353,7 +110238,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16384 + - uid: 16476 components: - rot: -1.5707963267948966 rad pos: 5.5,-42.5 @@ -109361,7 +110246,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16385 + - uid: 16477 components: - rot: 3.141592653589793 rad pos: 14.5,-37.5 @@ -109369,7 +110254,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16386 + - uid: 16478 components: - rot: 1.5707963267948966 rad pos: 12.5,-43.5 @@ -109377,7 +110262,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16387 + - uid: 16479 components: - rot: 1.5707963267948966 rad pos: 14.5,-25.5 @@ -109385,7 +110270,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16388 + - uid: 16480 components: - rot: 1.5707963267948966 rad pos: 14.5,-43.5 @@ -109393,14 +110278,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16389 + - uid: 16481 components: - pos: 15.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16390 + - uid: 16482 components: - rot: 3.141592653589793 rad pos: 5.5,14.5 @@ -109408,7 +110293,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16391 + - uid: 16483 components: - rot: 3.141592653589793 rad pos: 5.5,15.5 @@ -109416,21 +110301,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16392 + - uid: 16484 components: - pos: -3.5,-27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16393 + - uid: 16485 components: - pos: 20.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16394 + - uid: 16486 components: - pos: 20.5,-20.5 parent: 2 @@ -109439,7 +110324,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16395 + - uid: 16487 components: - rot: -1.5707963267948966 rad pos: 39.5,15.5 @@ -109447,7 +110332,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16396 + - uid: 16488 components: - rot: -1.5707963267948966 rad pos: 14.5,-0.5 @@ -109455,7 +110340,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16397 + - uid: 16489 components: - rot: -1.5707963267948966 rad pos: 37.5,15.5 @@ -109463,7 +110348,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16398 + - uid: 16490 components: - rot: 3.141592653589793 rad pos: -21.5,-85.5 @@ -109471,7 +110356,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16399 + - uid: 16491 components: - rot: 3.141592653589793 rad pos: -21.5,-87.5 @@ -109479,7 +110364,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16400 + - uid: 16492 components: - rot: -1.5707963267948966 rad pos: -22.5,-88.5 @@ -109487,7 +110372,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16401 + - uid: 16493 components: - rot: -1.5707963267948966 rad pos: -23.5,-88.5 @@ -109495,14 +110380,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16402 + - uid: 16494 components: - pos: -24.5,-86.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16403 + - uid: 16495 components: - rot: -1.5707963267948966 rad pos: 27.5,-29.5 @@ -109512,7 +110397,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16405 + - uid: 16496 components: - rot: -1.5707963267948966 rad pos: 31.5,-6.5 @@ -109520,28 +110405,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16406 + - uid: 16497 components: - pos: -3.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16407 + - uid: 16498 components: - pos: -3.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16408 + - uid: 16499 components: - pos: -5.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16409 + - uid: 16500 components: - rot: -1.5707963267948966 rad pos: 22.5,10.5 @@ -109549,7 +110434,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16410 + - uid: 16501 components: - rot: -1.5707963267948966 rad pos: 25.5,10.5 @@ -109557,7 +110442,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16411 + - uid: 16502 components: - rot: -1.5707963267948966 rad pos: 16.5,-29.5 @@ -109565,7 +110450,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16412 + - uid: 16503 components: - rot: -1.5707963267948966 rad pos: 21.5,-29.5 @@ -109573,7 +110458,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16413 + - uid: 16504 components: - rot: -1.5707963267948966 rad pos: -10.5,-41.5 @@ -109581,7 +110466,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16414 + - uid: 16505 components: - rot: 3.141592653589793 rad pos: -5.5,-30.5 @@ -109589,28 +110474,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16415 + - uid: 16506 components: - pos: -3.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16416 + - uid: 16507 components: - pos: -19.5,-60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16417 + - uid: 16508 components: - pos: -19.5,-59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16418 + - uid: 16509 components: - rot: 1.5707963267948966 rad pos: 19.5,-41.5 @@ -109618,7 +110503,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16419 + - uid: 16510 components: - rot: 1.5707963267948966 rad pos: -0.5,-25.5 @@ -109626,7 +110511,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16420 + - uid: 16511 components: - rot: 1.5707963267948966 rad pos: -0.5,-27.5 @@ -109634,7 +110519,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16421 + - uid: 16512 components: - rot: 1.5707963267948966 rad pos: -1.5,-27.5 @@ -109642,7 +110527,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16422 + - uid: 16513 components: - rot: 1.5707963267948966 rad pos: 1.5,-27.5 @@ -109650,7 +110535,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16423 + - uid: 16514 components: - rot: 1.5707963267948966 rad pos: -7.5,-27.5 @@ -109658,14 +110543,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16424 + - uid: 16515 components: - pos: -3.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16425 + - uid: 16516 components: - rot: 3.141592653589793 rad pos: 34.5,-39.5 @@ -109673,7 +110558,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16426 + - uid: 16517 components: - rot: 3.141592653589793 rad pos: 34.5,-40.5 @@ -109681,28 +110566,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16427 + - uid: 16518 components: - pos: 34.5,-22.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16428 + - uid: 16519 components: - pos: -18.5,28.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16429 + - uid: 16520 components: - pos: -18.5,26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16430 + - uid: 16521 components: - rot: -1.5707963267948966 rad pos: 3.5,-41.5 @@ -109710,7 +110595,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16431 + - uid: 16522 components: - rot: -1.5707963267948966 rad pos: -7.5,-41.5 @@ -109718,7 +110603,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16432 + - uid: 16523 components: - rot: 1.5707963267948966 rad pos: -3.5,-41.5 @@ -109726,7 +110611,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16433 + - uid: 16524 components: - rot: -1.5707963267948966 rad pos: -2.5,-14.5 @@ -109736,7 +110621,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16434 + - uid: 16525 components: - rot: -1.5707963267948966 rad pos: 31.5,-42.5 @@ -109744,7 +110629,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16435 + - uid: 16526 components: - pos: -23.5,-74.5 parent: 2 @@ -109753,7 +110638,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16436 + - uid: 16527 components: - rot: -1.5707963267948966 rad pos: -22.5,-73.5 @@ -109761,7 +110646,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16437 + - uid: 16528 components: - rot: 1.5707963267948966 rad pos: 33.5,-18.5 @@ -109769,7 +110654,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16438 + - uid: 16529 components: - rot: 1.5707963267948966 rad pos: 32.5,-18.5 @@ -109777,7 +110662,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16439 + - uid: 16530 components: - rot: 3.141592653589793 rad pos: 34.5,-19.5 @@ -109785,7 +110670,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16440 + - uid: 16531 components: - rot: 3.141592653589793 rad pos: 34.5,-20.5 @@ -109793,7 +110678,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16441 + - uid: 16532 components: - rot: 3.141592653589793 rad pos: 36.5,-20.5 @@ -109801,7 +110686,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16442 + - uid: 16533 components: - rot: 3.141592653589793 rad pos: 36.5,-19.5 @@ -109809,7 +110694,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16443 + - uid: 16534 components: - rot: 3.141592653589793 rad pos: 36.5,-18.5 @@ -109817,7 +110702,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16444 + - uid: 16535 components: - rot: 3.141592653589793 rad pos: 36.5,-17.5 @@ -109825,7 +110710,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16445 + - uid: 16536 components: - rot: -1.5707963267948966 rad pos: 35.5,-16.5 @@ -109833,7 +110718,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16446 + - uid: 16537 components: - rot: -1.5707963267948966 rad pos: 34.5,-16.5 @@ -109841,14 +110726,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16447 + - uid: 16538 components: - pos: 25.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16448 + - uid: 16539 components: - rot: 3.141592653589793 rad pos: 24.5,-45.5 @@ -109856,7 +110741,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16449 + - uid: 16540 components: - rot: 3.141592653589793 rad pos: 24.5,-44.5 @@ -109864,7 +110749,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16450 + - uid: 16541 components: - rot: 3.141592653589793 rad pos: 26.5,-45.5 @@ -109872,7 +110757,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16451 + - uid: 16542 components: - rot: 3.141592653589793 rad pos: 26.5,-44.5 @@ -109880,7 +110765,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16452 + - uid: 16543 components: - rot: 3.141592653589793 rad pos: 26.5,-43.5 @@ -109888,7 +110773,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16454 + - uid: 16544 components: - rot: -1.5707963267948966 rad pos: 40.5,-25.5 @@ -109896,7 +110781,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16455 + - uid: 16545 components: - rot: -1.5707963267948966 rad pos: 35.5,-26.5 @@ -109904,7 +110789,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16456 + - uid: 16546 components: - rot: -1.5707963267948966 rad pos: 36.5,-26.5 @@ -109912,7 +110797,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16457 + - uid: 16547 components: - rot: -1.5707963267948966 rad pos: 37.5,-26.5 @@ -109920,7 +110805,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16458 + - uid: 16548 components: - rot: -1.5707963267948966 rad pos: 38.5,-26.5 @@ -109928,7 +110813,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16459 + - uid: 16549 components: - rot: -1.5707963267948966 rad pos: 39.5,-26.5 @@ -109936,7 +110821,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16460 + - uid: 16550 components: - rot: -1.5707963267948966 rad pos: 40.5,-26.5 @@ -109944,14 +110829,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16461 + - uid: 16551 components: - pos: 36.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16462 + - uid: 16552 components: - rot: -1.5707963267948966 rad pos: 39.5,-25.5 @@ -109959,7 +110844,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16463 + - uid: 16553 components: - rot: -1.5707963267948966 rad pos: 38.5,-25.5 @@ -109967,7 +110852,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16464 + - uid: 16554 components: - rot: -1.5707963267948966 rad pos: 37.5,-25.5 @@ -109975,21 +110860,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16465 + - uid: 16555 components: - pos: 34.5,-28.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16466 + - uid: 16556 components: - pos: 36.5,-27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16467 + - uid: 16557 components: - rot: 1.5707963267948966 rad pos: 45.5,-28.5 @@ -109997,63 +110882,63 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16468 + - uid: 16558 components: - pos: -27.5,-78.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16469 + - uid: 16559 components: - pos: -20.5,-82.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16470 + - uid: 16560 components: - pos: -20.5,-81.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16471 + - uid: 16561 components: - pos: -20.5,-79.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16472 + - uid: 16562 components: - pos: -20.5,-78.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16473 + - uid: 16563 components: - pos: -20.5,-77.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16474 + - uid: 16564 components: - pos: -20.5,-76.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16475 + - uid: 16565 components: - pos: -20.5,-73.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16476 + - uid: 16566 components: - pos: -25.5,-74.5 parent: 2 @@ -110062,7 +110947,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16477 + - uid: 16567 components: - rot: 1.5707963267948966 rad pos: -23.5,-72.5 @@ -110070,7 +110955,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16478 + - uid: 16568 components: - rot: 1.5707963267948966 rad pos: -22.5,-72.5 @@ -110078,7 +110963,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16479 + - uid: 16569 components: - rot: 3.141592653589793 rad pos: -20.5,-71.5 @@ -110086,7 +110971,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16480 + - uid: 16570 components: - rot: 1.5707963267948966 rad pos: -21.5,-72.5 @@ -110094,21 +110979,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16481 + - uid: 16571 components: - pos: -23.5,-84.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16482 + - uid: 16572 components: - pos: -23.5,-83.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16483 + - uid: 16573 components: - rot: 1.5707963267948966 rad pos: -27.5,-78.5 @@ -110116,7 +111001,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16484 + - uid: 16574 components: - rot: 1.5707963267948966 rad pos: -26.5,-78.5 @@ -110124,7 +111009,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16485 + - uid: 16575 components: - rot: 3.141592653589793 rad pos: -18.5,-76.5 @@ -110132,7 +111017,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16486 + - uid: 16576 components: - rot: 3.141592653589793 rad pos: -18.5,-75.5 @@ -110140,7 +111025,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16487 + - uid: 16577 components: - rot: -1.5707963267948966 rad pos: -21.5,-73.5 @@ -110148,7 +111033,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16488 + - uid: 16578 components: - rot: 3.141592653589793 rad pos: -25.5,-76.5 @@ -110156,14 +111041,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16489 + - uid: 16579 components: - pos: -20.5,-80.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16490 + - uid: 16580 components: - rot: 3.141592653589793 rad pos: -18.5,-70.5 @@ -110171,14 +111056,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16491 + - uid: 16581 components: - pos: 9.5,-43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16492 + - uid: 16582 components: - pos: 9.5,-44.5 parent: 2 @@ -110187,28 +111072,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16493 + - uid: 16583 components: - pos: 9.5,-45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16494 + - uid: 16584 components: - pos: 10.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16495 + - uid: 16585 components: - pos: 10.5,-43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16496 + - uid: 16586 components: - pos: 10.5,-44.5 parent: 2 @@ -110217,7 +111102,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16497 + - uid: 16587 components: - pos: 10.5,-45.5 parent: 2 @@ -110226,7 +111111,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16498 + - uid: 16588 components: - rot: -1.5707963267948966 rad pos: -21.5,-88.5 @@ -110234,7 +111119,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16499 + - uid: 16589 components: - rot: 3.141592653589793 rad pos: -18.5,-69.5 @@ -110242,7 +111127,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16500 + - uid: 16590 components: - rot: 3.141592653589793 rad pos: -18.5,-68.5 @@ -110252,7 +111137,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16501 + - uid: 16591 components: - rot: 3.141592653589793 rad pos: -20.5,-68.5 @@ -110262,7 +111147,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16502 + - uid: 16592 components: - rot: 3.141592653589793 rad pos: -20.5,-67.5 @@ -110270,7 +111155,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16503 + - uid: 16593 components: - rot: 3.141592653589793 rad pos: -18.5,-66.5 @@ -110278,7 +111163,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16504 + - uid: 16594 components: - rot: 3.141592653589793 rad pos: -18.5,-65.5 @@ -110288,7 +111173,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16505 + - uid: 16595 components: - rot: 3.141592653589793 rad pos: -20.5,-65.5 @@ -110298,7 +111183,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16506 + - uid: 16596 components: - rot: 3.141592653589793 rad pos: -20.5,-64.5 @@ -110306,7 +111191,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16507 + - uid: 16597 components: - pos: -20.5,-62.5 parent: 2 @@ -110315,14 +111200,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16508 + - uid: 16598 components: - pos: -18.5,-63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16509 + - uid: 16599 components: - pos: -18.5,-62.5 parent: 2 @@ -110331,14 +111216,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16510 + - uid: 16600 components: - pos: -18.5,-61.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16511 + - uid: 16601 components: - rot: 3.141592653589793 rad pos: 36.5,-30.5 @@ -110346,7 +111231,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16512 + - uid: 16602 components: - rot: 3.141592653589793 rad pos: 36.5,-32.5 @@ -110354,7 +111239,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16513 + - uid: 16603 components: - rot: 3.141592653589793 rad pos: 36.5,-33.5 @@ -110362,7 +111247,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16514 + - uid: 16604 components: - rot: 3.141592653589793 rad pos: 36.5,-34.5 @@ -110370,7 +111255,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16515 + - uid: 16605 components: - rot: 3.141592653589793 rad pos: 36.5,-35.5 @@ -110378,7 +111263,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16516 + - uid: 16606 components: - rot: 3.141592653589793 rad pos: 36.5,-36.5 @@ -110386,7 +111271,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16517 + - uid: 16607 components: - rot: 3.141592653589793 rad pos: 36.5,-37.5 @@ -110394,7 +111279,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16518 + - uid: 16608 components: - rot: 3.141592653589793 rad pos: 36.5,-38.5 @@ -110402,7 +111287,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16519 + - uid: 16609 components: - rot: 3.141592653589793 rad pos: 36.5,-39.5 @@ -110410,7 +111295,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16520 + - uid: 16610 components: - rot: 3.141592653589793 rad pos: 36.5,-40.5 @@ -110418,7 +111303,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16521 + - uid: 16611 components: - rot: 3.141592653589793 rad pos: 36.5,-41.5 @@ -110426,7 +111311,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16522 + - uid: 16612 components: - rot: 3.141592653589793 rad pos: 36.5,-42.5 @@ -110434,7 +111319,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16523 + - uid: 16613 components: - rot: 1.5707963267948966 rad pos: 35.5,-43.5 @@ -110442,7 +111327,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16524 + - uid: 16614 components: - rot: 1.5707963267948966 rad pos: 34.5,-43.5 @@ -110450,7 +111335,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16525 + - uid: 16615 components: - rot: 1.5707963267948966 rad pos: 33.5,-43.5 @@ -110458,7 +111343,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16526 + - uid: 16616 components: - rot: 1.5707963267948966 rad pos: 32.5,-43.5 @@ -110466,7 +111351,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16527 + - uid: 16617 components: - rot: -1.5707963267948966 rad pos: 35.5,0.5 @@ -110474,7 +111359,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16528 + - uid: 16618 components: - rot: -1.5707963267948966 rad pos: 36.5,0.5 @@ -110482,7 +111367,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16529 + - uid: 16619 components: - rot: 1.5707963267948966 rad pos: 37.5,1.5 @@ -110490,7 +111375,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16530 + - uid: 16620 components: - rot: -1.5707963267948966 rad pos: 38.5,0.5 @@ -110498,7 +111383,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16531 + - uid: 16621 components: - rot: -1.5707963267948966 rad pos: 39.5,0.5 @@ -110506,7 +111391,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16532 + - uid: 16622 components: - rot: 1.5707963267948966 rad pos: 20.5,12.5 @@ -110514,21 +111399,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16533 + - uid: 16623 components: - pos: 11.5,18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16534 + - uid: 16624 components: - pos: 11.5,17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16535 + - uid: 16625 components: - rot: 3.141592653589793 rad pos: 7.5,18.5 @@ -110538,7 +111423,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16536 + - uid: 16626 components: - rot: 3.141592653589793 rad pos: -11.5,-37.5 @@ -110546,7 +111431,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16537 + - uid: 16627 components: - rot: 3.141592653589793 rad pos: -11.5,-36.5 @@ -110554,7 +111439,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16538 + - uid: 16628 components: - rot: 3.141592653589793 rad pos: -11.5,-35.5 @@ -110562,7 +111447,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16539 + - uid: 16629 components: - rot: 3.141592653589793 rad pos: -11.5,-34.5 @@ -110570,7 +111455,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16540 + - uid: 16630 components: - rot: 3.141592653589793 rad pos: -11.5,-33.5 @@ -110578,7 +111463,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16541 + - uid: 16631 components: - rot: 3.141592653589793 rad pos: -9.5,-38.5 @@ -110586,7 +111471,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16542 + - uid: 16632 components: - rot: -1.5707963267948966 rad pos: -10.5,-37.5 @@ -110594,7 +111479,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16543 + - uid: 16633 components: - rot: -1.5707963267948966 rad pos: -11.5,-37.5 @@ -110602,7 +111487,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16544 + - uid: 16634 components: - rot: -1.5707963267948966 rad pos: -12.5,-37.5 @@ -110610,7 +111495,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16545 + - uid: 16635 components: - rot: -1.5707963267948966 rad pos: -13.5,-37.5 @@ -110620,7 +111505,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16546 + - uid: 16636 components: - rot: 3.141592653589793 rad pos: -9.5,-36.5 @@ -110628,7 +111513,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16547 + - uid: 16637 components: - rot: 3.141592653589793 rad pos: -9.5,-35.5 @@ -110636,7 +111521,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16548 + - uid: 16638 components: - rot: 3.141592653589793 rad pos: -9.5,-34.5 @@ -110646,7 +111531,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16549 + - uid: 16639 components: - rot: 3.141592653589793 rad pos: -9.5,-33.5 @@ -110654,7 +111539,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16550 + - uid: 16640 components: - rot: -1.5707963267948966 rad pos: -13.5,-38.5 @@ -110662,14 +111547,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16551 + - uid: 16641 components: - pos: 11.5,10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16552 + - uid: 16642 components: - rot: 1.5707963267948966 rad pos: -4.5,-10.5 @@ -110677,7 +111562,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16553 + - uid: 16643 components: - rot: 1.5707963267948966 rad pos: -3.5,-10.5 @@ -110685,7 +111570,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16554 + - uid: 16644 components: - rot: 1.5707963267948966 rad pos: -2.5,-10.5 @@ -110695,7 +111580,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16555 + - uid: 16645 components: - rot: 1.5707963267948966 rad pos: -1.5,-10.5 @@ -110705,7 +111590,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16556 + - uid: 16646 components: - rot: -1.5707963267948966 rad pos: 35.5,-41.5 @@ -110713,7 +111598,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16557 + - uid: 16647 components: - rot: -1.5707963267948966 rad pos: 36.5,-41.5 @@ -110721,7 +111606,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16558 + - uid: 16648 components: - rot: -1.5707963267948966 rad pos: 37.5,-41.5 @@ -110729,7 +111614,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16559 + - uid: 16649 components: - rot: -1.5707963267948966 rad pos: 39.5,-41.5 @@ -110737,7 +111622,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16560 + - uid: 16650 components: - rot: -1.5707963267948966 rad pos: 38.5,-41.5 @@ -110745,7 +111630,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16561 + - uid: 16651 components: - rot: -1.5707963267948966 rad pos: 40.5,-41.5 @@ -110753,7 +111638,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16562 + - uid: 16652 components: - rot: -1.5707963267948966 rad pos: 41.5,-41.5 @@ -110761,7 +111646,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16563 + - uid: 16653 components: - rot: -1.5707963267948966 rad pos: 37.5,-43.5 @@ -110769,7 +111654,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16564 + - uid: 16654 components: - rot: -1.5707963267948966 rad pos: 38.5,-43.5 @@ -110777,7 +111662,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16565 + - uid: 16655 components: - rot: -1.5707963267948966 rad pos: 39.5,-43.5 @@ -110785,7 +111670,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16566 + - uid: 16656 components: - rot: -1.5707963267948966 rad pos: 40.5,-43.5 @@ -110793,7 +111678,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16567 + - uid: 16657 components: - rot: -1.5707963267948966 rad pos: 41.5,-43.5 @@ -110801,35 +111686,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16568 + - uid: 16658 components: - pos: 21.5,-43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16569 + - uid: 16659 components: - pos: 21.5,-45.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16570 + - uid: 16660 components: - pos: 20.5,-45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16571 + - uid: 16661 components: - pos: 20.5,-46.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16572 + - uid: 16662 components: - rot: 3.141592653589793 rad pos: 40.5,7.5 @@ -110837,7 +111722,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16573 + - uid: 16663 components: - rot: 3.141592653589793 rad pos: 30.5,16.5 @@ -110845,7 +111730,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16574 + - uid: 16664 components: - rot: 3.141592653589793 rad pos: 30.5,15.5 @@ -110853,7 +111738,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16575 + - uid: 16665 components: - rot: 3.141592653589793 rad pos: 30.5,20.5 @@ -110861,7 +111746,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16576 + - uid: 16666 components: - rot: 3.141592653589793 rad pos: 30.5,21.5 @@ -110869,7 +111754,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16577 + - uid: 16667 components: - rot: 3.141592653589793 rad pos: 30.5,22.5 @@ -110877,7 +111762,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16578 + - uid: 16668 components: - rot: 3.141592653589793 rad pos: 30.5,23.5 @@ -110885,7 +111770,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16579 + - uid: 16669 components: - rot: 3.141592653589793 rad pos: 30.5,24.5 @@ -110893,7 +111778,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16580 + - uid: 16670 components: - rot: 3.141592653589793 rad pos: 30.5,25.5 @@ -110901,7 +111786,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16581 + - uid: 16671 components: - rot: 3.141592653589793 rad pos: 30.5,26.5 @@ -110909,7 +111794,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16582 + - uid: 16672 components: - rot: 3.141592653589793 rad pos: 30.5,27.5 @@ -110917,7 +111802,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16583 + - uid: 16673 components: - rot: 3.141592653589793 rad pos: 28.5,18.5 @@ -110925,7 +111810,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16584 + - uid: 16674 components: - rot: 3.141592653589793 rad pos: 28.5,19.5 @@ -110933,7 +111818,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16585 + - uid: 16675 components: - rot: 3.141592653589793 rad pos: 28.5,20.5 @@ -110941,7 +111826,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16586 + - uid: 16676 components: - rot: 3.141592653589793 rad pos: 28.5,21.5 @@ -110949,7 +111834,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16587 + - uid: 16677 components: - rot: 3.141592653589793 rad pos: 28.5,23.5 @@ -110957,7 +111842,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16588 + - uid: 16678 components: - rot: 3.141592653589793 rad pos: 28.5,24.5 @@ -110965,7 +111850,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16589 + - uid: 16679 components: - rot: 3.141592653589793 rad pos: 28.5,25.5 @@ -110973,7 +111858,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16590 + - uid: 16680 components: - rot: 3.141592653589793 rad pos: 28.5,26.5 @@ -110981,7 +111866,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16591 + - uid: 16681 components: - rot: 3.141592653589793 rad pos: 28.5,27.5 @@ -110989,7 +111874,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16592 + - uid: 16682 components: - rot: 1.5707963267948966 rad pos: 40.5,15.5 @@ -110997,7 +111882,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16593 + - uid: 16683 components: - rot: -1.5707963267948966 rad pos: 43.5,15.5 @@ -111005,7 +111890,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16594 + - uid: 16684 components: - rot: -1.5707963267948966 rad pos: 43.5,14.5 @@ -111013,7 +111898,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16595 + - uid: 16685 components: - rot: -1.5707963267948966 rad pos: 42.5,14.5 @@ -111021,7 +111906,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16596 + - uid: 16686 components: - rot: -1.5707963267948966 rad pos: 40.5,14.5 @@ -111029,7 +111914,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16597 + - uid: 16687 components: - rot: -1.5707963267948966 rad pos: 39.5,14.5 @@ -111037,7 +111922,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16598 + - uid: 16688 components: - rot: -1.5707963267948966 rad pos: 38.5,14.5 @@ -111045,7 +111930,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16599 + - uid: 16689 components: - rot: -1.5707963267948966 rad pos: 37.5,14.5 @@ -111053,7 +111938,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16600 + - uid: 16690 components: - rot: -1.5707963267948966 rad pos: 36.5,14.5 @@ -111061,7 +111946,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16601 + - uid: 16691 components: - rot: -1.5707963267948966 rad pos: 35.5,14.5 @@ -111069,7 +111954,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16602 + - uid: 16692 components: - rot: -1.5707963267948966 rad pos: 34.5,14.5 @@ -111077,7 +111962,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16603 + - uid: 16693 components: - rot: -1.5707963267948966 rad pos: 33.5,14.5 @@ -111085,7 +111970,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16604 + - uid: 16694 components: - rot: -1.5707963267948966 rad pos: 32.5,14.5 @@ -111093,7 +111978,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16605 + - uid: 16695 components: - rot: -1.5707963267948966 rad pos: 31.5,14.5 @@ -111101,7 +111986,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16606 + - uid: 16696 components: - rot: 1.5707963267948966 rad pos: 44.5,14.5 @@ -111109,7 +111994,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16607 + - uid: 16697 components: - rot: 1.5707963267948966 rad pos: 45.5,15.5 @@ -111117,7 +112002,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16608 + - uid: 16698 components: - rot: 1.5707963267948966 rad pos: 46.5,15.5 @@ -111125,7 +112010,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16609 + - uid: 16699 components: - rot: 1.5707963267948966 rad pos: 46.5,14.5 @@ -111133,7 +112018,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16610 + - uid: 16700 components: - rot: 1.5707963267948966 rad pos: 48.5,15.5 @@ -111141,7 +112026,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16611 + - uid: 16701 components: - rot: 1.5707963267948966 rad pos: 48.5,14.5 @@ -111149,7 +112034,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16612 + - uid: 16702 components: - rot: -1.5707963267948966 rad pos: 49.5,14.5 @@ -111157,7 +112042,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16613 + - uid: 16703 components: - rot: 3.141592653589793 rad pos: 49.5,16.5 @@ -111165,7 +112050,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16614 + - uid: 16704 components: - rot: 3.141592653589793 rad pos: 49.5,17.5 @@ -111173,7 +112058,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16615 + - uid: 16705 components: - rot: 3.141592653589793 rad pos: 49.5,18.5 @@ -111181,7 +112066,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16616 + - uid: 16706 components: - rot: 3.141592653589793 rad pos: 49.5,19.5 @@ -111189,7 +112074,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16617 + - uid: 16707 components: - rot: -1.5707963267948966 rad pos: 50.5,20.5 @@ -111197,7 +112082,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16618 + - uid: 16708 components: - rot: 3.141592653589793 rad pos: 50.5,20.5 @@ -111205,7 +112090,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16619 + - uid: 16709 components: - rot: 3.141592653589793 rad pos: 50.5,18.5 @@ -111213,7 +112098,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16620 + - uid: 16710 components: - rot: 3.141592653589793 rad pos: 50.5,17.5 @@ -111221,7 +112106,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16621 + - uid: 16711 components: - rot: 3.141592653589793 rad pos: 50.5,16.5 @@ -111229,7 +112114,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16622 + - uid: 16712 components: - rot: 3.141592653589793 rad pos: 50.5,15.5 @@ -111237,7 +112122,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16623 + - uid: 16713 components: - rot: 1.5707963267948966 rad pos: 48.5,20.5 @@ -111245,7 +112130,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16624 + - uid: 16714 components: - rot: 1.5707963267948966 rad pos: 47.5,20.5 @@ -111253,7 +112138,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16625 + - uid: 16715 components: - rot: 1.5707963267948966 rad pos: 49.5,21.5 @@ -111261,7 +112146,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16626 + - uid: 16716 components: - rot: 1.5707963267948966 rad pos: 48.5,21.5 @@ -111269,7 +112154,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16627 + - uid: 16717 components: - rot: 3.141592653589793 rad pos: 49.5,21.5 @@ -111277,7 +112162,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16628 + - uid: 16718 components: - rot: 3.141592653589793 rad pos: 49.5,22.5 @@ -111285,7 +112170,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16629 + - uid: 16719 components: - rot: 3.141592653589793 rad pos: 50.5,22.5 @@ -111293,7 +112178,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16630 + - uid: 16720 components: - rot: 3.141592653589793 rad pos: 46.5,21.5 @@ -111301,7 +112186,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16631 + - uid: 16721 components: - rot: 3.141592653589793 rad pos: 46.5,22.5 @@ -111309,7 +112194,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16632 + - uid: 16722 components: - rot: 3.141592653589793 rad pos: 47.5,22.5 @@ -111317,7 +112202,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16633 + - uid: 16723 components: - rot: 1.5707963267948966 rad pos: 51.5,21.5 @@ -111325,7 +112210,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16634 + - uid: 16724 components: - rot: 1.5707963267948966 rad pos: 52.5,21.5 @@ -111333,7 +112218,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16635 + - uid: 16725 components: - rot: 3.141592653589793 rad pos: 53.5,22.5 @@ -111341,7 +112226,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16636 + - uid: 16726 components: - rot: 3.141592653589793 rad pos: 52.5,22.5 @@ -111349,7 +112234,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16637 + - uid: 16727 components: - rot: 3.141592653589793 rad pos: 52.5,21.5 @@ -111357,7 +112242,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16638 + - uid: 16728 components: - rot: 1.5707963267948966 rad pos: 51.5,20.5 @@ -111365,7 +112250,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16639 + - uid: 16729 components: - rot: 1.5707963267948966 rad pos: 53.5,20.5 @@ -111373,7 +112258,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16640 + - uid: 16730 components: - rot: 1.5707963267948966 rad pos: 54.5,20.5 @@ -111381,7 +112266,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16641 + - uid: 16731 components: - rot: 1.5707963267948966 rad pos: 56.5,20.5 @@ -111389,7 +112274,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16642 + - uid: 16732 components: - rot: 1.5707963267948966 rad pos: 57.5,20.5 @@ -111397,7 +112282,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16643 + - uid: 16733 components: - rot: 3.141592653589793 rad pos: 55.5,21.5 @@ -111405,7 +112290,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16644 + - uid: 16734 components: - rot: 3.141592653589793 rad pos: 55.5,22.5 @@ -111413,7 +112298,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16645 + - uid: 16735 components: - rot: 3.141592653589793 rad pos: 58.5,21.5 @@ -111421,7 +112306,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16646 + - uid: 16736 components: - rot: 3.141592653589793 rad pos: 58.5,22.5 @@ -111429,7 +112314,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16647 + - uid: 16737 components: - rot: 1.5707963267948966 rad pos: 54.5,21.5 @@ -111437,7 +112322,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16648 + - uid: 16738 components: - rot: 1.5707963267948966 rad pos: 55.5,21.5 @@ -111445,7 +112330,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16649 + - uid: 16739 components: - rot: 1.5707963267948966 rad pos: 57.5,21.5 @@ -111453,7 +112338,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16650 + - uid: 16740 components: - rot: 1.5707963267948966 rad pos: 58.5,21.5 @@ -111461,7 +112346,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16651 + - uid: 16741 components: - rot: 3.141592653589793 rad pos: 56.5,22.5 @@ -111469,7 +112354,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16652 + - uid: 16742 components: - rot: 3.141592653589793 rad pos: 59.5,22.5 @@ -111477,7 +112362,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16653 + - uid: 16743 components: - rot: 3.141592653589793 rad pos: 59.5,20.5 @@ -111485,7 +112370,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16654 + - uid: 16744 components: - rot: 3.141592653589793 rad pos: 59.5,19.5 @@ -111493,7 +112378,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16655 + - uid: 16745 components: - rot: 1.5707963267948966 rad pos: 60.5,18.5 @@ -111501,7 +112386,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16656 + - uid: 16746 components: - rot: -1.5707963267948966 rad pos: 59.5,19.5 @@ -111509,7 +112394,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16657 + - uid: 16747 components: - rot: -1.5707963267948966 rad pos: 60.5,19.5 @@ -111517,7 +112402,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16658 + - uid: 16748 components: - rot: -1.5707963267948966 rad pos: 60.5,16.5 @@ -111525,7 +112410,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16659 + - uid: 16749 components: - rot: -1.5707963267948966 rad pos: 59.5,16.5 @@ -111533,7 +112418,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16660 + - uid: 16750 components: - rot: -1.5707963267948966 rad pos: 60.5,15.5 @@ -111541,21 +112426,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16661 + - uid: 16751 components: - pos: 49.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16662 + - uid: 16752 components: - pos: 49.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16663 + - uid: 16753 components: - rot: -1.5707963267948966 rad pos: 51.5,13.5 @@ -111565,7 +112450,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16664 + - uid: 16754 components: - rot: -1.5707963267948966 rad pos: 50.5,12.5 @@ -111573,7 +112458,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16665 + - uid: 16755 components: - rot: -1.5707963267948966 rad pos: 51.5,12.5 @@ -111583,14 +112468,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16666 + - uid: 16756 components: - pos: 58.5,18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16667 + - uid: 16757 components: - pos: 58.5,17.5 parent: 2 @@ -111599,63 +112484,63 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16668 + - uid: 16758 components: - pos: 59.5,17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16669 + - uid: 16759 components: - pos: 59.5,16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16670 + - uid: 16760 components: - pos: 58.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16671 + - uid: 16761 components: - pos: 58.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16672 + - uid: 16762 components: - pos: 58.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16673 + - uid: 16763 components: - pos: 59.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16674 + - uid: 16764 components: - pos: 59.5,13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16675 + - uid: 16765 components: - pos: 59.5,12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16676 + - uid: 16766 components: - rot: 1.5707963267948966 rad pos: 44.5,20.5 @@ -111663,7 +112548,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16677 + - uid: 16767 components: - rot: 1.5707963267948966 rad pos: 43.5,20.5 @@ -111671,7 +112556,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16678 + - uid: 16768 components: - rot: 1.5707963267948966 rad pos: 42.5,20.5 @@ -111679,7 +112564,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16679 + - uid: 16769 components: - rot: 1.5707963267948966 rad pos: 41.5,20.5 @@ -111687,7 +112572,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16680 + - uid: 16770 components: - rot: -1.5707963267948966 rad pos: 39.5,20.5 @@ -111695,7 +112580,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16681 + - uid: 16771 components: - rot: -1.5707963267948966 rad pos: 38.5,20.5 @@ -111703,7 +112588,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16682 + - uid: 16772 components: - rot: -1.5707963267948966 rad pos: 37.5,20.5 @@ -111711,7 +112596,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16683 + - uid: 16773 components: - rot: -1.5707963267948966 rad pos: 36.5,20.5 @@ -111719,7 +112604,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16684 + - uid: 16774 components: - rot: -1.5707963267948966 rad pos: 35.5,20.5 @@ -111727,7 +112612,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16685 + - uid: 16775 components: - rot: -1.5707963267948966 rad pos: 49.5,19.5 @@ -111735,7 +112620,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16686 + - uid: 16776 components: - rot: -1.5707963267948966 rad pos: 48.5,19.5 @@ -111743,7 +112628,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16687 + - uid: 16777 components: - rot: -1.5707963267948966 rad pos: 47.5,19.5 @@ -111751,7 +112636,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16688 + - uid: 16778 components: - rot: -1.5707963267948966 rad pos: 46.5,19.5 @@ -111759,7 +112644,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16689 + - uid: 16779 components: - rot: -1.5707963267948966 rad pos: 45.5,19.5 @@ -111767,7 +112652,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16690 + - uid: 16780 components: - rot: -1.5707963267948966 rad pos: 43.5,19.5 @@ -111775,7 +112660,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16691 + - uid: 16781 components: - rot: -1.5707963267948966 rad pos: 42.5,19.5 @@ -111783,7 +112668,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16692 + - uid: 16782 components: - rot: -1.5707963267948966 rad pos: 41.5,19.5 @@ -111791,7 +112676,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16693 + - uid: 16783 components: - rot: -1.5707963267948966 rad pos: 40.5,19.5 @@ -111799,7 +112684,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16694 + - uid: 16784 components: - rot: -1.5707963267948966 rad pos: 38.5,19.5 @@ -111807,7 +112692,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16695 + - uid: 16785 components: - rot: -1.5707963267948966 rad pos: 37.5,19.5 @@ -111817,7 +112702,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16696 + - uid: 16786 components: - rot: -1.5707963267948966 rad pos: 36.5,19.5 @@ -111825,7 +112710,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16697 + - uid: 16787 components: - rot: -1.5707963267948966 rad pos: 35.5,19.5 @@ -111833,7 +112718,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16698 + - uid: 16788 components: - rot: -1.5707963267948966 rad pos: 39.5,1.5 @@ -111841,7 +112726,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16699 + - uid: 16789 components: - rot: -1.5707963267948966 rad pos: 40.5,1.5 @@ -111849,7 +112734,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16700 + - uid: 16790 components: - rot: -1.5707963267948966 rad pos: 41.5,1.5 @@ -111857,7 +112742,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16701 + - uid: 16791 components: - rot: -1.5707963267948966 rad pos: 43.5,1.5 @@ -111865,7 +112750,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16702 + - uid: 16792 components: - rot: -1.5707963267948966 rad pos: 41.5,0.5 @@ -111873,7 +112758,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16703 + - uid: 16793 components: - rot: -1.5707963267948966 rad pos: 42.5,0.5 @@ -111881,7 +112766,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16704 + - uid: 16794 components: - rot: -1.5707963267948966 rad pos: 43.5,0.5 @@ -111889,7 +112774,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16705 + - uid: 16795 components: - rot: -1.5707963267948966 rad pos: 44.5,1.5 @@ -111897,7 +112782,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16706 + - uid: 16796 components: - rot: -1.5707963267948966 rad pos: 45.5,1.5 @@ -111905,7 +112790,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16707 + - uid: 16797 components: - rot: -1.5707963267948966 rad pos: 46.5,1.5 @@ -111913,7 +112798,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16708 + - uid: 16798 components: - rot: -1.5707963267948966 rad pos: 47.5,1.5 @@ -111921,7 +112806,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16709 + - uid: 16799 components: - rot: -1.5707963267948966 rad pos: 48.5,1.5 @@ -111929,7 +112814,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16710 + - uid: 16800 components: - rot: -1.5707963267948966 rad pos: 49.5,1.5 @@ -111937,7 +112822,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16711 + - uid: 16801 components: - rot: -1.5707963267948966 rad pos: 50.5,1.5 @@ -111945,7 +112830,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16712 + - uid: 16802 components: - rot: -1.5707963267948966 rad pos: 51.5,1.5 @@ -111953,7 +112838,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16713 + - uid: 16803 components: - rot: -1.5707963267948966 rad pos: 46.5,0.5 @@ -111961,7 +112846,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16714 + - uid: 16804 components: - rot: -1.5707963267948966 rad pos: 47.5,0.5 @@ -111969,7 +112854,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16715 + - uid: 16805 components: - rot: -1.5707963267948966 rad pos: 48.5,0.5 @@ -111977,7 +112862,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16716 + - uid: 16806 components: - rot: -1.5707963267948966 rad pos: 49.5,0.5 @@ -111985,7 +112870,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16717 + - uid: 16807 components: - rot: -1.5707963267948966 rad pos: 50.5,0.5 @@ -111993,7 +112878,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16718 + - uid: 16808 components: - rot: -1.5707963267948966 rad pos: 51.5,0.5 @@ -112001,7 +112886,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16719 + - uid: 16809 components: - rot: -1.5707963267948966 rad pos: 52.5,0.5 @@ -112009,7 +112894,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16720 + - uid: 16810 components: - rot: -1.5707963267948966 rad pos: 54.5,0.5 @@ -112017,7 +112902,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16721 + - uid: 16811 components: - rot: -1.5707963267948966 rad pos: 55.5,0.5 @@ -112027,7 +112912,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16722 + - uid: 16812 components: - rot: -1.5707963267948966 rad pos: 56.5,0.5 @@ -112037,7 +112922,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16723 + - uid: 16813 components: - rot: -1.5707963267948966 rad pos: 53.5,1.5 @@ -112045,7 +112930,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16724 + - uid: 16814 components: - rot: -1.5707963267948966 rad pos: 54.5,1.5 @@ -112053,7 +112938,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16725 + - uid: 16815 components: - rot: -1.5707963267948966 rad pos: 55.5,1.5 @@ -112063,105 +112948,105 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16726 + - uid: 16816 components: - pos: 52.5,0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16727 + - uid: 16817 components: - pos: 52.5,-0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16728 + - uid: 16818 components: - pos: 52.5,-1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16729 + - uid: 16819 components: - pos: 52.5,-2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16730 + - uid: 16820 components: - pos: 52.5,-3.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16731 + - uid: 16821 components: - pos: 52.5,-4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16732 + - uid: 16822 components: - pos: 52.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16733 + - uid: 16823 components: - pos: 52.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16734 + - uid: 16824 components: - pos: 52.5,-7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16735 + - uid: 16825 components: - pos: 53.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16736 + - uid: 16826 components: - pos: 53.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16737 + - uid: 16827 components: - pos: 53.5,-2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16738 + - uid: 16828 components: - pos: 53.5,-3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16739 + - uid: 16829 components: - pos: 53.5,-4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16740 + - uid: 16830 components: - rot: 1.5707963267948966 rad pos: 54.5,-5.5 @@ -112169,7 +113054,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16741 + - uid: 16831 components: - rot: 1.5707963267948966 rad pos: 55.5,-5.5 @@ -112177,14 +113062,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16742 + - uid: 16832 components: - pos: 42.5,0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16743 + - uid: 16833 components: - pos: 42.5,-0.5 parent: 2 @@ -112193,7 +113078,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16744 + - uid: 16834 components: - rot: 3.141592653589793 rad pos: 44.5,-0.5 @@ -112203,7 +113088,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16745 + - uid: 16835 components: - rot: 3.141592653589793 rad pos: 44.5,-2.5 @@ -112211,7 +113096,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16746 + - uid: 16836 components: - rot: 1.5707963267948966 rad pos: 43.5,-3.5 @@ -112219,7 +113104,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16747 + - uid: 16837 components: - rot: 1.5707963267948966 rad pos: 42.5,-3.5 @@ -112227,7 +113112,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16748 + - uid: 16838 components: - rot: 1.5707963267948966 rad pos: 41.5,-3.5 @@ -112235,7 +113120,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16749 + - uid: 16839 components: - rot: 1.5707963267948966 rad pos: 40.5,-3.5 @@ -112245,7 +113130,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16750 + - uid: 16840 components: - rot: 1.5707963267948966 rad pos: 39.5,-3.5 @@ -112253,7 +113138,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16751 + - uid: 16841 components: - rot: 1.5707963267948966 rad pos: 38.5,-3.5 @@ -112261,7 +113146,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16752 + - uid: 16842 components: - rot: 1.5707963267948966 rad pos: 37.5,-3.5 @@ -112269,7 +113154,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16753 + - uid: 16843 components: - rot: 1.5707963267948966 rad pos: 41.5,-2.5 @@ -112277,7 +113162,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16754 + - uid: 16844 components: - rot: 1.5707963267948966 rad pos: 40.5,-2.5 @@ -112287,7 +113172,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16755 + - uid: 16845 components: - rot: 1.5707963267948966 rad pos: 39.5,-2.5 @@ -112295,7 +113180,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16756 + - uid: 16846 components: - rot: 1.5707963267948966 rad pos: 38.5,-2.5 @@ -112303,7 +113188,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16757 + - uid: 16847 components: - rot: 1.5707963267948966 rad pos: 37.5,-2.5 @@ -112311,56 +113196,56 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16758 + - uid: 16848 components: - pos: 42.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16759 + - uid: 16849 components: - pos: 42.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16760 + - uid: 16850 components: - pos: 41.5,13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16761 + - uid: 16851 components: - pos: 41.5,12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16762 + - uid: 16852 components: - pos: 41.5,11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16763 + - uid: 16853 components: - pos: 41.5,9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16764 + - uid: 16854 components: - pos: 42.5,11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16765 + - uid: 16855 components: - rot: -1.5707963267948966 rad pos: 39.5,10.5 @@ -112370,49 +113255,49 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16766 + - uid: 16856 components: - pos: 24.5,-46.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16767 + - uid: 16857 components: - pos: 24.5,-47.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16768 + - uid: 16858 components: - pos: 24.5,-48.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16769 + - uid: 16859 components: - pos: 24.5,-49.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16770 + - uid: 16860 components: - pos: 24.5,-50.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16771 + - uid: 16861 components: - pos: 24.5,-51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16772 + - uid: 16862 components: - rot: 3.141592653589793 rad pos: 25.5,-59.5 @@ -112420,7 +113305,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16773 + - uid: 16863 components: - rot: 3.141592653589793 rad pos: 25.5,-53.5 @@ -112428,7 +113313,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16774 + - uid: 16864 components: - rot: 3.141592653589793 rad pos: 25.5,-54.5 @@ -112436,77 +113321,77 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16775 + - uid: 16865 components: - pos: 26.5,-46.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16776 + - uid: 16866 components: - pos: 26.5,-47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16777 + - uid: 16867 components: - pos: 26.5,-48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16778 + - uid: 16868 components: - pos: 26.5,-49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16779 + - uid: 16869 components: - pos: 26.5,-50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16780 + - uid: 16870 components: - pos: 26.5,-51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16781 + - uid: 16871 components: - pos: 26.5,-52.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16782 + - uid: 16872 components: - pos: 26.5,-54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16783 + - uid: 16873 components: - pos: 26.5,-55.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16784 + - uid: 16874 components: - pos: 26.5,-57.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16785 + - uid: 16875 components: - rot: 1.5707963267948966 rad pos: 43.5,-2.5 @@ -112514,7 +113399,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16786 + - uid: 16876 components: - rot: 1.5707963267948966 rad pos: 44.5,-2.5 @@ -112522,7 +113407,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16787 + - uid: 16877 components: - rot: 1.5707963267948966 rad pos: 45.5,-2.5 @@ -112532,7 +113417,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16788 + - uid: 16878 components: - rot: 1.5707963267948966 rad pos: 45.5,-1.5 @@ -112542,28 +113427,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16789 + - uid: 16879 components: - pos: 52.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16790 + - uid: 16880 components: - pos: 52.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16791 + - uid: 16881 components: - pos: 52.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16792 + - uid: 16882 components: - rot: 1.5707963267948966 rad pos: 53.5,-11.5 @@ -112571,7 +113456,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16793 + - uid: 16883 components: - rot: 1.5707963267948966 rad pos: 54.5,-11.5 @@ -112579,7 +113464,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16794 + - uid: 16884 components: - rot: 1.5707963267948966 rad pos: 56.5,-12.5 @@ -112587,7 +113472,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16795 + - uid: 16885 components: - rot: 1.5707963267948966 rad pos: 56.5,-5.5 @@ -112595,21 +113480,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16796 + - uid: 16886 components: - pos: 62.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16797 + - uid: 16887 components: - pos: 62.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16798 + - uid: 16888 components: - pos: 73.5,-27.5 parent: 2 @@ -112618,14 +113503,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16799 + - uid: 16889 components: - pos: 49.5,-56.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16800 + - uid: 16890 components: - rot: 1.5707963267948966 rad pos: 42.5,-43.5 @@ -112633,7 +113518,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16801 + - uid: 16891 components: - rot: 1.5707963267948966 rad pos: 43.5,-41.5 @@ -112641,7 +113526,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16802 + - uid: 16892 components: - rot: 1.5707963267948966 rad pos: 45.5,-41.5 @@ -112649,7 +113534,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16803 + - uid: 16893 components: - rot: 1.5707963267948966 rad pos: 46.5,-41.5 @@ -112657,7 +113542,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16804 + - uid: 16894 components: - rot: 1.5707963267948966 rad pos: 47.5,-41.5 @@ -112665,7 +113550,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16805 + - uid: 16895 components: - rot: 1.5707963267948966 rad pos: 48.5,-41.5 @@ -112673,7 +113558,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16806 + - uid: 16896 components: - rot: 1.5707963267948966 rad pos: 44.5,-43.5 @@ -112681,7 +113566,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16807 + - uid: 16897 components: - rot: 1.5707963267948966 rad pos: 46.5,-43.5 @@ -112689,7 +113574,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16808 + - uid: 16898 components: - rot: 1.5707963267948966 rad pos: 47.5,-43.5 @@ -112697,7 +113582,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16809 + - uid: 16899 components: - rot: 1.5707963267948966 rad pos: 48.5,-43.5 @@ -112705,63 +113590,63 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16810 + - uid: 16900 components: - pos: 43.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16811 + - uid: 16901 components: - pos: 43.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16812 + - uid: 16902 components: - pos: 43.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16813 + - uid: 16903 components: - pos: 43.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16814 + - uid: 16904 components: - pos: 43.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16815 + - uid: 16905 components: - pos: 42.5,-39.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16816 + - uid: 16906 components: - pos: 42.5,-40.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16817 + - uid: 16907 components: - pos: 42.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16818 + - uid: 16908 components: - rot: 3.141592653589793 rad pos: 49.5,-44.5 @@ -112769,7 +113654,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16819 + - uid: 16909 components: - rot: 1.5707963267948966 rad pos: 51.5,-41.5 @@ -112777,7 +113662,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16820 + - uid: 16910 components: - rot: 1.5707963267948966 rad pos: 52.5,-41.5 @@ -112785,7 +113670,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16821 + - uid: 16911 components: - rot: 1.5707963267948966 rad pos: 53.5,-41.5 @@ -112793,7 +113678,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16822 + - uid: 16912 components: - rot: 1.5707963267948966 rad pos: 54.5,-41.5 @@ -112801,7 +113686,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16823 + - uid: 16913 components: - rot: 1.5707963267948966 rad pos: 55.5,-41.5 @@ -112809,21 +113694,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16824 + - uid: 16914 components: - pos: 57.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16825 + - uid: 16915 components: - pos: 57.5,-43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16826 + - uid: 16916 components: - rot: 1.5707963267948966 rad pos: 50.5,-45.5 @@ -112831,7 +113716,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16827 + - uid: 16917 components: - rot: 1.5707963267948966 rad pos: 51.5,-45.5 @@ -112839,7 +113724,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16828 + - uid: 16918 components: - rot: -1.5707963267948966 rad pos: 52.5,-45.5 @@ -112847,7 +113732,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16829 + - uid: 16919 components: - rot: 1.5707963267948966 rad pos: 53.5,-45.5 @@ -112855,7 +113740,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16830 + - uid: 16920 components: - rot: 1.5707963267948966 rad pos: 54.5,-45.5 @@ -112863,7 +113748,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16831 + - uid: 16921 components: - rot: 3.141592653589793 rad pos: 55.5,-44.5 @@ -112871,7 +113756,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16832 + - uid: 16922 components: - rot: 3.141592653589793 rad pos: 55.5,-43.5 @@ -112881,56 +113766,56 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16833 + - uid: 16923 components: - pos: 50.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16834 + - uid: 16924 components: - pos: 50.5,-43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16835 + - uid: 16925 components: - pos: 50.5,-44.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16836 + - uid: 16926 components: - pos: 50.5,-45.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16837 + - uid: 16927 components: - pos: 50.5,-47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16838 + - uid: 16928 components: - pos: 50.5,-48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16839 + - uid: 16929 components: - pos: 49.5,-53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16840 + - uid: 16930 components: - rot: -1.5707963267948966 rad pos: 48.5,-45.5 @@ -112938,7 +113823,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16841 + - uid: 16931 components: - rot: -1.5707963267948966 rad pos: 47.5,-45.5 @@ -112946,7 +113831,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16842 + - uid: 16932 components: - rot: -1.5707963267948966 rad pos: 46.5,-45.5 @@ -112954,7 +113839,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16843 + - uid: 16933 components: - rot: -1.5707963267948966 rad pos: 45.5,-45.5 @@ -112962,7 +113847,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16844 + - uid: 16934 components: - rot: 1.5707963267948966 rad pos: 49.5,-46.5 @@ -112970,7 +113855,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16845 + - uid: 16935 components: - rot: 1.5707963267948966 rad pos: 48.5,-46.5 @@ -112978,7 +113863,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16846 + - uid: 16936 components: - rot: 1.5707963267948966 rad pos: 47.5,-46.5 @@ -112986,7 +113871,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16847 + - uid: 16937 components: - rot: 1.5707963267948966 rad pos: 46.5,-46.5 @@ -112994,7 +113879,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16848 + - uid: 16938 components: - rot: 1.5707963267948966 rad pos: 45.5,-46.5 @@ -113002,7 +113887,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16849 + - uid: 16939 components: - rot: 3.141592653589793 rad pos: 73.5,-32.5 @@ -113010,7 +113895,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16850 + - uid: 16940 components: - rot: -1.5707963267948966 rad pos: 58.5,-44.5 @@ -113018,7 +113903,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16851 + - uid: 16941 components: - rot: -1.5707963267948966 rad pos: 59.5,-44.5 @@ -113026,7 +113911,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16852 + - uid: 16942 components: - rot: -1.5707963267948966 rad pos: 60.5,-44.5 @@ -113034,7 +113919,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16853 + - uid: 16943 components: - rot: -1.5707963267948966 rad pos: 57.5,-45.5 @@ -113042,7 +113927,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16854 + - uid: 16944 components: - rot: -1.5707963267948966 rad pos: 58.5,-45.5 @@ -113050,7 +113935,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16855 + - uid: 16945 components: - rot: -1.5707963267948966 rad pos: 59.5,-45.5 @@ -113058,7 +113943,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16856 + - uid: 16946 components: - rot: -1.5707963267948966 rad pos: 60.5,-45.5 @@ -113066,7 +113951,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16857 + - uid: 16947 components: - rot: -1.5707963267948966 rad pos: 61.5,-45.5 @@ -113074,7 +113959,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16858 + - uid: 16948 components: - rot: -1.5707963267948966 rad pos: 62.5,-45.5 @@ -113082,7 +113967,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16859 + - uid: 16949 components: - rot: 3.141592653589793 rad pos: 61.5,-43.5 @@ -113090,7 +113975,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16860 + - uid: 16950 components: - rot: 3.141592653589793 rad pos: 61.5,-42.5 @@ -113098,7 +113983,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16861 + - uid: 16951 components: - rot: 3.141592653589793 rad pos: 61.5,-41.5 @@ -113106,7 +113991,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16862 + - uid: 16952 components: - rot: 3.141592653589793 rad pos: 61.5,-40.5 @@ -113114,7 +113999,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16863 + - uid: 16953 components: - rot: 3.141592653589793 rad pos: 61.5,-39.5 @@ -113122,7 +114007,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16864 + - uid: 16954 components: - rot: 3.141592653589793 rad pos: 61.5,-37.5 @@ -113130,7 +114015,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16865 + - uid: 16955 components: - rot: 3.141592653589793 rad pos: 61.5,-36.5 @@ -113138,7 +114023,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16866 + - uid: 16956 components: - rot: 3.141592653589793 rad pos: 63.5,-44.5 @@ -113146,7 +114031,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16867 + - uid: 16957 components: - rot: 3.141592653589793 rad pos: 63.5,-43.5 @@ -113154,28 +114039,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16868 + - uid: 16958 components: - pos: 62.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16869 + - uid: 16959 components: - pos: 62.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16870 + - uid: 16960 components: - pos: 62.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16871 + - uid: 16961 components: - rot: -1.5707963267948966 rad pos: 63.5,-35.5 @@ -113183,7 +114068,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16872 + - uid: 16962 components: - rot: 3.141592653589793 rad pos: 61.5,-45.5 @@ -113191,7 +114076,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16873 + - uid: 16963 components: - rot: 1.5707963267948966 rad pos: 62.5,-34.5 @@ -113199,7 +114084,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16874 + - uid: 16964 components: - rot: 1.5707963267948966 rad pos: 61.5,-34.5 @@ -113207,21 +114092,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16875 + - uid: 16965 components: - pos: 64.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16876 + - uid: 16966 components: - pos: 60.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16877 + - uid: 16967 components: - rot: 3.141592653589793 rad pos: 63.5,-30.5 @@ -113229,7 +114114,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16878 + - uid: 16968 components: - rot: 3.141592653589793 rad pos: 63.5,-29.5 @@ -113237,7 +114122,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16879 + - uid: 16969 components: - rot: 3.141592653589793 rad pos: 63.5,-28.5 @@ -113245,7 +114130,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16880 + - uid: 16970 components: - rot: 3.141592653589793 rad pos: 63.5,-27.5 @@ -113255,7 +114140,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16881 + - uid: 16971 components: - rot: 3.141592653589793 rad pos: 61.5,-31.5 @@ -113263,7 +114148,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16882 + - uid: 16972 components: - rot: 3.141592653589793 rad pos: 61.5,-30.5 @@ -113271,7 +114156,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16883 + - uid: 16973 components: - rot: 3.141592653589793 rad pos: 61.5,-29.5 @@ -113279,7 +114164,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16884 + - uid: 16974 components: - rot: 3.141592653589793 rad pos: 61.5,-28.5 @@ -113287,7 +114172,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16885 + - uid: 16975 components: - rot: 3.141592653589793 rad pos: 61.5,-27.5 @@ -113297,7 +114182,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16886 + - uid: 16976 components: - rot: 3.141592653589793 rad pos: 61.5,-26.5 @@ -113305,7 +114190,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16887 + - uid: 16977 components: - rot: 3.141592653589793 rad pos: 61.5,-25.5 @@ -113315,7 +114200,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16888 + - uid: 16978 components: - pos: 61.5,-23.5 parent: 2 @@ -113324,7 +114209,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16889 + - uid: 16979 components: - pos: 61.5,-22.5 parent: 2 @@ -113333,7 +114218,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16890 + - uid: 16980 components: - pos: 61.5,-21.5 parent: 2 @@ -113342,7 +114227,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16891 + - uid: 16981 components: - pos: 61.5,-20.5 parent: 2 @@ -113351,7 +114236,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16892 + - uid: 16982 components: - pos: 61.5,-19.5 parent: 2 @@ -113360,7 +114245,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16893 + - uid: 16983 components: - pos: 61.5,-18.5 parent: 2 @@ -113369,7 +114254,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16894 + - uid: 16984 components: - pos: 61.5,-17.5 parent: 2 @@ -113378,7 +114263,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16895 + - uid: 16985 components: - pos: 61.5,-16.5 parent: 2 @@ -113387,7 +114272,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16896 + - uid: 16986 components: - pos: 61.5,-15.5 parent: 2 @@ -113396,7 +114281,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16897 + - uid: 16987 components: - pos: 61.5,-14.5 parent: 2 @@ -113405,56 +114290,56 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16898 + - uid: 16988 components: - pos: 61.5,-13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16899 + - uid: 16989 components: - pos: 61.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16900 + - uid: 16990 components: - pos: 61.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16901 + - uid: 16991 components: - pos: 62.5,-7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16902 + - uid: 16992 components: - pos: 62.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16903 + - uid: 16993 components: - pos: 62.5,-9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16904 + - uid: 16994 components: - pos: 61.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16905 + - uid: 16995 components: - pos: 61.5,-4.5 parent: 2 @@ -113463,14 +114348,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16906 + - uid: 16996 components: - pos: 61.5,-3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16907 + - uid: 16997 components: - pos: 63.5,-25.5 parent: 2 @@ -113479,7 +114364,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16908 + - uid: 16998 components: - pos: 63.5,-24.5 parent: 2 @@ -113488,7 +114373,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16909 + - uid: 16999 components: - pos: 63.5,-23.5 parent: 2 @@ -113497,7 +114382,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16910 + - uid: 17000 components: - pos: 63.5,-22.5 parent: 2 @@ -113506,7 +114391,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16911 + - uid: 17001 components: - pos: 63.5,-21.5 parent: 2 @@ -113515,7 +114400,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16912 + - uid: 17002 components: - pos: 63.5,-20.5 parent: 2 @@ -113524,7 +114409,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16913 + - uid: 17003 components: - pos: 63.5,-19.5 parent: 2 @@ -113533,7 +114418,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16914 + - uid: 17004 components: - pos: 63.5,-18.5 parent: 2 @@ -113542,7 +114427,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16915 + - uid: 17005 components: - pos: 63.5,-17.5 parent: 2 @@ -113551,7 +114436,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16916 + - uid: 17006 components: - pos: 63.5,-16.5 parent: 2 @@ -113560,7 +114445,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16917 + - uid: 17007 components: - pos: 63.5,-15.5 parent: 2 @@ -113569,7 +114454,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16918 + - uid: 17008 components: - pos: 63.5,-14.5 parent: 2 @@ -113578,63 +114463,63 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16919 + - uid: 17009 components: - pos: 63.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16920 + - uid: 17010 components: - pos: 63.5,-12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16921 + - uid: 17011 components: - pos: 63.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16922 + - uid: 17012 components: - pos: 63.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16923 + - uid: 17013 components: - pos: 63.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16924 + - uid: 17014 components: - pos: 63.5,-7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16925 + - uid: 17015 components: - pos: 63.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16926 + - uid: 17016 components: - pos: 63.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16927 + - uid: 17017 components: - pos: 63.5,-4.5 parent: 2 @@ -113643,28 +114528,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16928 + - uid: 17018 components: - pos: 63.5,-3.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16929 + - uid: 17019 components: - pos: 64.5,-48.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16930 + - uid: 17020 components: - pos: 64.5,-49.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16931 + - uid: 17021 components: - pos: 64.5,-50.5 parent: 2 @@ -113673,28 +114558,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16932 + - uid: 17022 components: - pos: 64.5,-51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16933 + - uid: 17023 components: - pos: 60.5,-47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16934 + - uid: 17024 components: - pos: 60.5,-49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16935 + - uid: 17025 components: - pos: 60.5,-50.5 parent: 2 @@ -113703,35 +114588,35 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16936 + - uid: 17026 components: - pos: 60.5,-51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16937 + - uid: 17027 components: - pos: 50.5,-49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16938 + - uid: 17028 components: - pos: 49.5,-57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16939 + - uid: 17029 components: - pos: 49.5,-58.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16940 + - uid: 17030 components: - pos: 49.5,-59.5 parent: 2 @@ -113740,28 +114625,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16941 + - uid: 17031 components: - pos: 50.5,-50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16942 + - uid: 17032 components: - pos: 50.5,-51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16943 + - uid: 17033 components: - pos: 49.5,-55.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16944 + - uid: 17034 components: - rot: 1.5707963267948966 rad pos: 44.5,-45.5 @@ -113769,7 +114654,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16945 + - uid: 17035 components: - rot: 1.5707963267948966 rad pos: 43.5,-45.5 @@ -113777,7 +114662,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16946 + - uid: 17036 components: - rot: 1.5707963267948966 rad pos: 65.5,-47.5 @@ -113785,7 +114670,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16947 + - uid: 17037 components: - rot: 1.5707963267948966 rad pos: 66.5,-47.5 @@ -113795,7 +114680,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16948 + - uid: 17038 components: - rot: 1.5707963267948966 rad pos: 67.5,-47.5 @@ -113803,7 +114688,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16949 + - uid: 17039 components: - rot: 1.5707963267948966 rad pos: 68.5,-47.5 @@ -113811,7 +114696,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16950 + - uid: 17040 components: - rot: 1.5707963267948966 rad pos: 68.5,-48.5 @@ -113819,7 +114704,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16951 + - uid: 17041 components: - rot: 1.5707963267948966 rad pos: 67.5,-48.5 @@ -113827,7 +114712,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16952 + - uid: 17042 components: - rot: 1.5707963267948966 rad pos: 66.5,-48.5 @@ -113835,7 +114720,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16953 + - uid: 17043 components: - rot: 1.5707963267948966 rad pos: 65.5,-48.5 @@ -113843,7 +114728,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16954 + - uid: 17044 components: - rot: 1.5707963267948966 rad pos: 64.5,-48.5 @@ -113851,7 +114736,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16955 + - uid: 17045 components: - rot: 1.5707963267948966 rad pos: 63.5,-48.5 @@ -113859,7 +114744,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16956 + - uid: 17046 components: - rot: 1.5707963267948966 rad pos: 62.5,-48.5 @@ -113867,7 +114752,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16957 + - uid: 17047 components: - rot: 1.5707963267948966 rad pos: 61.5,-48.5 @@ -113875,7 +114760,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16958 + - uid: 17048 components: - rot: 1.5707963267948966 rad pos: 70.5,-48.5 @@ -113883,7 +114768,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16959 + - uid: 17049 components: - rot: 1.5707963267948966 rad pos: 69.5,-48.5 @@ -113891,7 +114776,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16960 + - uid: 17050 components: - rot: 3.141592653589793 rad pos: 25.5,-55.5 @@ -113899,7 +114784,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16961 + - uid: 17051 components: - rot: 1.5707963267948966 rad pos: 27.5,-58.5 @@ -113907,7 +114792,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16962 + - uid: 17052 components: - rot: 1.5707963267948966 rad pos: 28.5,-58.5 @@ -113915,7 +114800,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16963 + - uid: 17053 components: - rot: 3.141592653589793 rad pos: 25.5,-56.5 @@ -113923,7 +114808,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16964 + - uid: 17054 components: - rot: 1.5707963267948966 rad pos: 26.5,-60.5 @@ -113931,7 +114816,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16965 + - uid: 17055 components: - rot: 1.5707963267948966 rad pos: 27.5,-60.5 @@ -113939,7 +114824,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16966 + - uid: 17056 components: - rot: 1.5707963267948966 rad pos: 28.5,-60.5 @@ -113947,7 +114832,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16967 + - uid: 17057 components: - rot: 1.5707963267948966 rad pos: 29.5,-60.5 @@ -113955,7 +114840,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16968 + - uid: 17058 components: - rot: 1.5707963267948966 rad pos: 30.5,-60.5 @@ -113963,7 +114848,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16969 + - uid: 17059 components: - rot: 1.5707963267948966 rad pos: 31.5,-60.5 @@ -113971,7 +114856,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16970 + - uid: 17060 components: - rot: 3.141592653589793 rad pos: 29.5,-57.5 @@ -113981,56 +114866,56 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16971 + - uid: 17061 components: - pos: 29.5,-55.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16972 + - uid: 17062 components: - pos: 29.5,-54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16973 + - uid: 17063 components: - pos: 29.5,-53.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16974 + - uid: 17064 components: - pos: 29.5,-51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16975 + - uid: 17065 components: - pos: 29.5,-50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16976 + - uid: 17066 components: - pos: 29.5,-49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16977 + - uid: 17067 components: - pos: 29.5,-48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16978 + - uid: 17068 components: - rot: -1.5707963267948966 rad pos: 30.5,-47.5 @@ -114038,7 +114923,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16979 + - uid: 17069 components: - rot: -1.5707963267948966 rad pos: 31.5,-47.5 @@ -114046,7 +114931,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16980 + - uid: 17070 components: - rot: -1.5707963267948966 rad pos: 32.5,-47.5 @@ -114054,7 +114939,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16981 + - uid: 17071 components: - rot: 3.141592653589793 rad pos: 29.5,-46.5 @@ -114062,7 +114947,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16982 + - uid: 17072 components: - rot: 1.5707963267948966 rad pos: 30.5,-58.5 @@ -114070,21 +114955,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16983 + - uid: 17073 components: - pos: 32.5,-59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16984 + - uid: 17074 components: - pos: 32.5,-58.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16985 + - uid: 17075 components: - pos: 32.5,-57.5 parent: 2 @@ -114093,28 +114978,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16986 + - uid: 17076 components: - pos: 32.5,-55.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16987 + - uid: 17077 components: - pos: 32.5,-54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16988 + - uid: 17078 components: - pos: 32.5,-53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16989 + - uid: 17079 components: - rot: 1.5707963267948966 rad pos: 33.5,-52.5 @@ -114122,7 +115007,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16990 + - uid: 17080 components: - rot: 3.141592653589793 rad pos: 34.5,-51.5 @@ -114130,7 +115015,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16991 + - uid: 17081 components: - rot: 3.141592653589793 rad pos: 34.5,-50.5 @@ -114138,7 +115023,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16992 + - uid: 17082 components: - rot: -1.5707963267948966 rad pos: 33.5,-49.5 @@ -114146,7 +115031,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16993 + - uid: 17083 components: - rot: 3.141592653589793 rad pos: 34.5,-47.5 @@ -114154,7 +115039,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16994 + - uid: 17084 components: - rot: 3.141592653589793 rad pos: 34.5,-46.5 @@ -114162,7 +115047,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16995 + - uid: 17085 components: - rot: -1.5707963267948966 rad pos: 32.5,-49.5 @@ -114170,7 +115055,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16996 + - uid: 17086 components: - rot: -1.5707963267948966 rad pos: 31.5,-49.5 @@ -114178,7 +115063,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16997 + - uid: 17087 components: - rot: -1.5707963267948966 rad pos: 30.5,-49.5 @@ -114186,7 +115071,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16998 + - uid: 17088 components: - rot: -1.5707963267948966 rad pos: 29.5,-49.5 @@ -114194,7 +115079,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16999 + - uid: 17089 components: - rot: 3.141592653589793 rad pos: 48.5,-59.5 @@ -114202,20 +115087,20 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17000 + - uid: 17090 components: - rot: 3.141592653589793 rad pos: 51.5,-59.5 parent: 2 type: Transform - - uid: 17001 + - uid: 17091 components: - pos: 49.5,-60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17002 + - uid: 17092 components: - pos: 49.5,-62.5 parent: 2 @@ -114224,7 +115109,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17003 + - uid: 17093 components: - rot: -1.5707963267948966 rad pos: -14.5,7.5 @@ -114232,7 +115117,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17004 + - uid: 17094 components: - rot: -1.5707963267948966 rad pos: -15.5,7.5 @@ -114240,7 +115125,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17005 + - uid: 17095 components: - rot: -1.5707963267948966 rad pos: -16.5,7.5 @@ -114248,7 +115133,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17006 + - uid: 17096 components: - rot: -1.5707963267948966 rad pos: -17.5,7.5 @@ -114256,7 +115141,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17007 + - uid: 17097 components: - rot: -1.5707963267948966 rad pos: -18.5,7.5 @@ -114264,7 +115149,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17008 + - uid: 17098 components: - rot: 1.5707963267948966 rad pos: -15.5,1.5 @@ -114274,7 +115159,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17009 + - uid: 17099 components: - rot: 1.5707963267948966 rad pos: -16.5,1.5 @@ -114282,21 +115167,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17010 + - uid: 17100 components: - pos: -19.5,6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17011 + - uid: 17101 components: - pos: -19.5,5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17012 + - uid: 17102 components: - rot: 1.5707963267948966 rad pos: -9.5,-25.5 @@ -114304,7 +115189,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17013 + - uid: 17103 components: - rot: 1.5707963267948966 rad pos: -10.5,-25.5 @@ -114312,7 +115197,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17014 + - uid: 17104 components: - rot: 1.5707963267948966 rad pos: -11.5,-25.5 @@ -114320,7 +115205,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17015 + - uid: 17105 components: - rot: 1.5707963267948966 rad pos: -12.5,-25.5 @@ -114328,7 +115213,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17016 + - uid: 17106 components: - rot: 1.5707963267948966 rad pos: -13.5,-25.5 @@ -114336,7 +115221,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17017 + - uid: 17107 components: - rot: 1.5707963267948966 rad pos: -14.5,-25.5 @@ -114344,7 +115229,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17018 + - uid: 17108 components: - rot: 1.5707963267948966 rad pos: -15.5,-25.5 @@ -114352,7 +115237,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17019 + - uid: 17109 components: - rot: 1.5707963267948966 rad pos: -16.5,-25.5 @@ -114360,7 +115245,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17020 + - uid: 17110 components: - rot: 1.5707963267948966 rad pos: -17.5,-25.5 @@ -114368,7 +115253,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17021 + - uid: 17111 components: - rot: 1.5707963267948966 rad pos: -12.5,-27.5 @@ -114376,7 +115261,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17022 + - uid: 17112 components: - rot: 1.5707963267948966 rad pos: -13.5,-27.5 @@ -114384,7 +115269,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17023 + - uid: 17113 components: - rot: 1.5707963267948966 rad pos: -14.5,-27.5 @@ -114392,7 +115277,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17024 + - uid: 17114 components: - rot: 1.5707963267948966 rad pos: -15.5,-27.5 @@ -114400,7 +115285,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17025 + - uid: 17115 components: - rot: 1.5707963267948966 rad pos: -16.5,-27.5 @@ -114408,7 +115293,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17026 + - uid: 17116 components: - rot: 1.5707963267948966 rad pos: -17.5,-27.5 @@ -114416,7 +115301,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17027 + - uid: 17117 components: - rot: -1.5707963267948966 rad pos: -18.5,-27.5 @@ -114424,7 +115309,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17028 + - uid: 17118 components: - rot: -1.5707963267948966 rad pos: -19.5,-27.5 @@ -114432,7 +115317,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17029 + - uid: 17119 components: - rot: 3.141592653589793 rad pos: -18.5,-26.5 @@ -114440,7 +115325,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17030 + - uid: 17120 components: - rot: 3.141592653589793 rad pos: -18.5,-27.5 @@ -114448,7 +115333,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17031 + - uid: 17121 components: - rot: 3.141592653589793 rad pos: -18.5,-28.5 @@ -114456,7 +115341,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17032 + - uid: 17122 components: - rot: 3.141592653589793 rad pos: -18.5,-29.5 @@ -114464,7 +115349,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17033 + - uid: 17123 components: - rot: 3.141592653589793 rad pos: -18.5,-30.5 @@ -114472,7 +115357,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17034 + - uid: 17124 components: - rot: 3.141592653589793 rad pos: -20.5,-28.5 @@ -114480,7 +115365,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17035 + - uid: 17125 components: - rot: 3.141592653589793 rad pos: -20.5,-29.5 @@ -114488,7 +115373,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17036 + - uid: 17126 components: - rot: 3.141592653589793 rad pos: -20.5,-30.5 @@ -114496,7 +115381,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17037 + - uid: 17127 components: - rot: 3.141592653589793 rad pos: -20.5,-31.5 @@ -114504,7 +115389,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17038 + - uid: 17128 components: - rot: 3.141592653589793 rad pos: -20.5,-32.5 @@ -114512,7 +115397,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17039 + - uid: 17129 components: - rot: 3.141592653589793 rad pos: -20.5,-26.5 @@ -114520,7 +115405,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17040 + - uid: 17130 components: - rot: 3.141592653589793 rad pos: -20.5,-25.5 @@ -114528,7 +115413,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17041 + - uid: 17131 components: - rot: 3.141592653589793 rad pos: -20.5,-24.5 @@ -114536,7 +115421,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17042 + - uid: 17132 components: - rot: 3.141592653589793 rad pos: -20.5,-23.5 @@ -114544,7 +115429,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17043 + - uid: 17133 components: - rot: 3.141592653589793 rad pos: -18.5,-24.5 @@ -114552,7 +115437,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17044 + - uid: 17134 components: - rot: 3.141592653589793 rad pos: -18.5,-23.5 @@ -114560,7 +115445,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17045 + - uid: 17135 components: - rot: 3.141592653589793 rad pos: -18.5,-22.5 @@ -114568,7 +115453,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17046 + - uid: 17136 components: - rot: 3.141592653589793 rad pos: -18.5,-20.5 @@ -114576,7 +115461,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17047 + - uid: 17137 components: - rot: 3.141592653589793 rad pos: -20.5,-21.5 @@ -114584,7 +115469,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17048 + - uid: 17138 components: - rot: 3.141592653589793 rad pos: -20.5,-20.5 @@ -114592,7 +115477,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17049 + - uid: 17139 components: - rot: 3.141592653589793 rad pos: -20.5,-19.5 @@ -114600,7 +115485,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17050 + - uid: 17140 components: - rot: 3.141592653589793 rad pos: -18.5,-18.5 @@ -114608,7 +115493,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17051 + - uid: 17141 components: - rot: 3.141592653589793 rad pos: -18.5,-17.5 @@ -114616,14 +115501,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17052 + - uid: 17142 components: - pos: -23.5,-15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17053 + - uid: 17143 components: - rot: 3.141592653589793 rad pos: -20.5,-17.5 @@ -114631,7 +115516,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17054 + - uid: 17144 components: - rot: 3.141592653589793 rad pos: -20.5,-16.5 @@ -114639,7 +115524,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17055 + - uid: 17145 components: - rot: 3.141592653589793 rad pos: -20.5,-15.5 @@ -114647,7 +115532,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17056 + - uid: 17146 components: - rot: 3.141592653589793 rad pos: -18.5,-15.5 @@ -114655,7 +115540,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17057 + - uid: 17147 components: - rot: 3.141592653589793 rad pos: -18.5,-14.5 @@ -114663,7 +115548,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17058 + - uid: 17148 components: - rot: 3.141592653589793 rad pos: -18.5,-13.5 @@ -114671,7 +115556,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17059 + - uid: 17149 components: - rot: 3.141592653589793 rad pos: -18.5,-12.5 @@ -114679,7 +115564,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17060 + - uid: 17150 components: - rot: 3.141592653589793 rad pos: -18.5,-11.5 @@ -114687,7 +115572,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17061 + - uid: 17151 components: - rot: -1.5707963267948966 rad pos: -21.5,-13.5 @@ -114697,7 +115582,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17062 + - uid: 17152 components: - rot: -1.5707963267948966 rad pos: -22.5,-13.5 @@ -114705,7 +115590,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17063 + - uid: 17153 components: - rot: -1.5707963267948966 rad pos: -23.5,-13.5 @@ -114713,7 +115598,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17064 + - uid: 17154 components: - rot: -1.5707963267948966 rad pos: -19.5,-10.5 @@ -114721,7 +115606,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17065 + - uid: 17155 components: - rot: -1.5707963267948966 rad pos: -20.5,-10.5 @@ -114729,7 +115614,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17066 + - uid: 17156 components: - rot: -1.5707963267948966 rad pos: -21.5,-10.5 @@ -114739,7 +115624,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17067 + - uid: 17157 components: - rot: -1.5707963267948966 rad pos: -22.5,-10.5 @@ -114747,7 +115632,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17068 + - uid: 17158 components: - rot: -1.5707963267948966 rad pos: -25.5,-10.5 @@ -114755,7 +115640,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17069 + - uid: 17159 components: - rot: -1.5707963267948966 rad pos: -26.5,-10.5 @@ -114765,7 +115650,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17070 + - uid: 17160 components: - rot: -1.5707963267948966 rad pos: -27.5,-10.5 @@ -114773,7 +115658,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17071 + - uid: 17161 components: - rot: 1.5707963267948966 rad pos: -26.5,-13.5 @@ -114783,7 +115668,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17072 + - uid: 17162 components: - rot: 1.5707963267948966 rad pos: -27.5,-13.5 @@ -114791,91 +115676,91 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17073 + - uid: 17163 components: - pos: -20.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17074 + - uid: 17164 components: - pos: -20.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17075 + - uid: 17165 components: - pos: -20.5,-10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17076 + - uid: 17166 components: - pos: -20.5,-9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17077 + - uid: 17167 components: - pos: -20.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17078 + - uid: 17168 components: - pos: -20.5,-7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17079 + - uid: 17169 components: - pos: -20.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17080 + - uid: 17170 components: - pos: -18.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17081 + - uid: 17171 components: - pos: -18.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17082 + - uid: 17172 components: - pos: -18.5,-7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17083 + - uid: 17173 components: - pos: -18.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17084 + - uid: 17174 components: - pos: -18.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17085 + - uid: 17175 components: - rot: -1.5707963267948966 rad pos: -21.5,-22.5 @@ -114885,7 +115770,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17086 + - uid: 17176 components: - rot: -1.5707963267948966 rad pos: -22.5,-22.5 @@ -114893,7 +115778,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17087 + - uid: 17177 components: - rot: -1.5707963267948966 rad pos: -23.5,-22.5 @@ -114901,7 +115786,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17088 + - uid: 17178 components: - rot: -1.5707963267948966 rad pos: -19.5,-21.5 @@ -114909,7 +115794,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17089 + - uid: 17179 components: - rot: -1.5707963267948966 rad pos: -20.5,-21.5 @@ -114917,7 +115802,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17090 + - uid: 17180 components: - rot: -1.5707963267948966 rad pos: -21.5,-21.5 @@ -114925,7 +115810,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17091 + - uid: 17181 components: - rot: -1.5707963267948966 rad pos: -22.5,-21.5 @@ -114933,28 +115818,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17092 + - uid: 17182 components: - pos: -25.5,-15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17093 + - uid: 17183 components: - pos: -25.5,-16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17094 + - uid: 17184 components: - pos: -25.5,-14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17095 + - uid: 17185 components: - rot: 1.5707963267948966 rad pos: -26.5,-17.5 @@ -114962,7 +115847,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17096 + - uid: 17186 components: - rot: 1.5707963267948966 rad pos: -27.5,-17.5 @@ -114970,7 +115855,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17097 + - uid: 17187 components: - rot: 3.141592653589793 rad pos: -20.5,-18.5 @@ -114978,42 +115863,42 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17098 + - uid: 17188 components: - pos: -23.5,-14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17099 + - uid: 17189 components: - pos: -23.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17100 + - uid: 17190 components: - pos: -23.5,-12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17101 + - uid: 17191 components: - pos: -23.5,-11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17102 + - uid: 17192 components: - pos: -18.5,-16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17103 + - uid: 17193 components: - rot: -1.5707963267948966 rad pos: -24.5,-16.5 @@ -115021,7 +115906,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17104 + - uid: 17194 components: - rot: -1.5707963267948966 rad pos: -25.5,-16.5 @@ -115029,7 +115914,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17105 + - uid: 17195 components: - rot: -1.5707963267948966 rad pos: -26.5,-16.5 @@ -115037,7 +115922,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17106 + - uid: 17196 components: - rot: -1.5707963267948966 rad pos: -27.5,-16.5 @@ -115045,7 +115930,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17107 + - uid: 17197 components: - rot: -1.5707963267948966 rad pos: -28.5,-16.5 @@ -115053,7 +115938,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17108 + - uid: 17198 components: - rot: -1.5707963267948966 rad pos: -17.5,-42.5 @@ -115061,7 +115946,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17109 + - uid: 17199 components: - rot: -1.5707963267948966 rad pos: -16.5,-42.5 @@ -115069,7 +115954,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17110 + - uid: 17200 components: - rot: 1.5707963267948966 rad pos: 31.5,-58.5 @@ -115077,7 +115962,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17111 + - uid: 17201 components: - rot: 1.5707963267948966 rad pos: 32.5,-58.5 @@ -115085,7 +115970,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17112 + - uid: 17202 components: - rot: 1.5707963267948966 rad pos: 33.5,-58.5 @@ -115093,7 +115978,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17113 + - uid: 17203 components: - rot: 1.5707963267948966 rad pos: 34.5,-58.5 @@ -115101,7 +115986,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17114 + - uid: 17204 components: - rot: 1.5707963267948966 rad pos: 35.5,-58.5 @@ -115109,7 +115994,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17115 + - uid: 17205 components: - rot: 1.5707963267948966 rad pos: 36.5,-58.5 @@ -115117,7 +116002,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17116 + - uid: 17206 components: - rot: 1.5707963267948966 rad pos: 33.5,-60.5 @@ -115125,7 +116010,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17117 + - uid: 17207 components: - rot: 1.5707963267948966 rad pos: 34.5,-60.5 @@ -115133,7 +116018,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17118 + - uid: 17208 components: - rot: 1.5707963267948966 rad pos: 35.5,-60.5 @@ -115141,7 +116026,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17119 + - uid: 17209 components: - rot: 1.5707963267948966 rad pos: 36.5,-60.5 @@ -115149,7 +116034,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17120 + - uid: 17210 components: - rot: 1.5707963267948966 rad pos: 37.5,-60.5 @@ -115157,7 +116042,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17121 + - uid: 17211 components: - rot: -1.5707963267948966 rad pos: 50.5,-61.5 @@ -115165,7 +116050,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17122 + - uid: 17212 components: - rot: -1.5707963267948966 rad pos: 51.5,-61.5 @@ -115173,7 +116058,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17123 + - uid: 17213 components: - rot: -1.5707963267948966 rad pos: 52.5,-61.5 @@ -115181,7 +116066,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17124 + - uid: 17214 components: - rot: -1.5707963267948966 rad pos: 53.5,-61.5 @@ -115189,7 +116074,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17125 + - uid: 17215 components: - rot: -1.5707963267948966 rad pos: 37.5,-58.5 @@ -115197,7 +116082,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17126 + - uid: 17216 components: - rot: -1.5707963267948966 rad pos: 38.5,-60.5 @@ -115205,7 +116090,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17127 + - uid: 17217 components: - rot: -1.5707963267948966 rad pos: 39.5,-60.5 @@ -115213,7 +116098,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17128 + - uid: 17218 components: - rot: 3.141592653589793 rad pos: 38.5,-57.5 @@ -115223,7 +116108,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17129 + - uid: 17219 components: - rot: 3.141592653589793 rad pos: 38.5,-56.5 @@ -115231,7 +116116,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17130 + - uid: 17220 components: - rot: 3.141592653589793 rad pos: 40.5,-59.5 @@ -115239,7 +116124,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17131 + - uid: 17221 components: - rot: 3.141592653589793 rad pos: 40.5,-58.5 @@ -115247,7 +116132,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17132 + - uid: 17222 components: - rot: 3.141592653589793 rad pos: 40.5,-57.5 @@ -115257,7 +116142,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17133 + - uid: 17223 components: - rot: 3.141592653589793 rad pos: 40.5,-56.5 @@ -115265,7 +116150,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17134 + - uid: 17224 components: - rot: 3.141592653589793 rad pos: 38.5,-59.5 @@ -115273,7 +116158,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17135 + - uid: 17225 components: - rot: 3.141592653589793 rad pos: 38.5,-60.5 @@ -115281,7 +116166,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17136 + - uid: 17226 components: - rot: 3.141592653589793 rad pos: 38.5,-61.5 @@ -115289,7 +116174,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17137 + - uid: 17227 components: - rot: 3.141592653589793 rad pos: 38.5,-62.5 @@ -115297,7 +116182,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17138 + - uid: 17228 components: - rot: 3.141592653589793 rad pos: 40.5,-61.5 @@ -115305,7 +116190,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17139 + - uid: 17229 components: - rot: 3.141592653589793 rad pos: 40.5,-62.5 @@ -115313,7 +116198,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17140 + - uid: 17230 components: - rot: 3.141592653589793 rad pos: 40.5,-63.5 @@ -115321,7 +116206,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17141 + - uid: 17231 components: - rot: 3.141592653589793 rad pos: 40.5,-64.5 @@ -115329,7 +116214,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17142 + - uid: 17232 components: - rot: 3.141592653589793 rad pos: 38.5,-64.5 @@ -115337,7 +116222,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17143 + - uid: 17233 components: - rot: 3.141592653589793 rad pos: 38.5,-65.5 @@ -115345,7 +116230,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17144 + - uid: 17234 components: - rot: 3.141592653589793 rad pos: 38.5,-66.5 @@ -115353,7 +116238,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17145 + - uid: 17235 components: - rot: 3.141592653589793 rad pos: 38.5,-67.5 @@ -115361,7 +116246,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17146 + - uid: 17236 components: - rot: 3.141592653589793 rad pos: 38.5,-68.5 @@ -115369,7 +116254,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17147 + - uid: 17237 components: - rot: 3.141592653589793 rad pos: 40.5,-66.5 @@ -115377,7 +116262,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17148 + - uid: 17238 components: - rot: 3.141592653589793 rad pos: 40.5,-67.5 @@ -115385,7 +116270,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17149 + - uid: 17239 components: - rot: 3.141592653589793 rad pos: 40.5,-68.5 @@ -115393,14 +116278,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17150 + - uid: 17240 components: - pos: 50.5,-53.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17151 + - uid: 17241 components: - rot: 3.141592653589793 rad pos: 52.5,-56.5 @@ -115410,7 +116295,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17152 + - uid: 17242 components: - rot: 3.141592653589793 rad pos: 52.5,-55.5 @@ -115418,7 +116303,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17153 + - uid: 17243 components: - rot: 1.5707963267948966 rad pos: 51.5,-54.5 @@ -115426,7 +116311,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17154 + - uid: 17244 components: - rot: 3.141592653589793 rad pos: -14.5,2.5 @@ -115434,7 +116319,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17155 + - uid: 17245 components: - rot: 3.141592653589793 rad pos: -14.5,3.5 @@ -115442,7 +116327,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17156 + - uid: 17246 components: - rot: 3.141592653589793 rad pos: -14.5,4.5 @@ -115450,7 +116335,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17157 + - uid: 17247 components: - rot: 3.141592653589793 rad pos: -14.5,5.5 @@ -115458,7 +116343,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17158 + - uid: 17248 components: - rot: -1.5707963267948966 rad pos: -15.5,6.5 @@ -115466,7 +116351,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17159 + - uid: 17249 components: - rot: -1.5707963267948966 rad pos: -16.5,6.5 @@ -115474,7 +116359,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17160 + - uid: 17250 components: - rot: -1.5707963267948966 rad pos: -17.5,6.5 @@ -115482,7 +116367,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17161 + - uid: 17251 components: - rot: 3.141592653589793 rad pos: -18.5,7.5 @@ -115490,7 +116375,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17162 + - uid: 17252 components: - rot: 3.141592653589793 rad pos: -18.5,8.5 @@ -115498,7 +116383,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17163 + - uid: 17253 components: - rot: 3.141592653589793 rad pos: -18.5,9.5 @@ -115506,7 +116391,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17164 + - uid: 17254 components: - rot: 3.141592653589793 rad pos: -18.5,10.5 @@ -115514,7 +116399,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17165 + - uid: 17255 components: - rot: 3.141592653589793 rad pos: -18.5,11.5 @@ -115522,7 +116407,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17166 + - uid: 17256 components: - rot: 3.141592653589793 rad pos: -20.5,8.5 @@ -115530,7 +116415,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17167 + - uid: 17257 components: - rot: 3.141592653589793 rad pos: -20.5,9.5 @@ -115538,7 +116423,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17168 + - uid: 17258 components: - rot: 3.141592653589793 rad pos: -20.5,10.5 @@ -115546,7 +116431,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17169 + - uid: 17259 components: - rot: 3.141592653589793 rad pos: -20.5,11.5 @@ -115554,7 +116439,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17170 + - uid: 17260 components: - rot: -1.5707963267948966 rad pos: -19.5,-4.5 @@ -115562,7 +116447,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17171 + - uid: 17261 components: - rot: -1.5707963267948966 rad pos: -20.5,-4.5 @@ -115570,7 +116455,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17172 + - uid: 17262 components: - rot: -1.5707963267948966 rad pos: -21.5,-4.5 @@ -115578,7 +116463,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17173 + - uid: 17263 components: - rot: -1.5707963267948966 rad pos: -22.5,-4.5 @@ -115586,7 +116471,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17174 + - uid: 17264 components: - rot: -1.5707963267948966 rad pos: -23.5,-4.5 @@ -115594,7 +116479,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17175 + - uid: 17265 components: - rot: -1.5707963267948966 rad pos: -21.5,-5.5 @@ -115602,7 +116487,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17176 + - uid: 17266 components: - rot: -1.5707963267948966 rad pos: -22.5,-5.5 @@ -115610,7 +116495,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17177 + - uid: 17267 components: - rot: -1.5707963267948966 rad pos: -23.5,-5.5 @@ -115618,7 +116503,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17178 + - uid: 17268 components: - rot: -1.5707963267948966 rad pos: -24.5,-5.5 @@ -115626,7 +116511,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17179 + - uid: 17269 components: - rot: -1.5707963267948966 rad pos: -25.5,-5.5 @@ -115634,7 +116519,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17180 + - uid: 17270 components: - rot: -1.5707963267948966 rad pos: -29.5,-13.5 @@ -115642,7 +116527,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17181 + - uid: 17271 components: - rot: -1.5707963267948966 rad pos: -30.5,-13.5 @@ -115652,7 +116537,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17182 + - uid: 17272 components: - rot: -1.5707963267948966 rad pos: -29.5,-10.5 @@ -115660,7 +116545,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17183 + - uid: 17273 components: - rot: -1.5707963267948966 rad pos: -30.5,-10.5 @@ -115668,7 +116553,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17184 + - uid: 17274 components: - rot: -1.5707963267948966 rad pos: -31.5,-10.5 @@ -115676,13 +116561,13 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17185 + - uid: 17275 components: - rot: -1.5707963267948966 rad pos: 51.5,-60.5 parent: 2 type: Transform - - uid: 17186 + - uid: 17276 components: - rot: -1.5707963267948966 rad pos: 52.5,-60.5 @@ -115690,126 +116575,126 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17187 + - uid: 17277 components: - pos: -18.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17188 + - uid: 17278 components: - pos: -18.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17189 + - uid: 17279 components: - pos: -18.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17190 + - uid: 17280 components: - pos: -18.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17191 + - uid: 17281 components: - pos: -18.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17192 + - uid: 17282 components: - pos: -18.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17193 + - uid: 17283 components: - pos: -18.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17194 + - uid: 17284 components: - pos: -18.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17195 + - uid: 17285 components: - pos: -18.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17196 + - uid: 17286 components: - pos: -18.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17197 + - uid: 17287 components: - pos: -20.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17198 + - uid: 17288 components: - pos: -20.5,-35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17199 + - uid: 17289 components: - pos: -20.5,-36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17200 + - uid: 17290 components: - pos: -20.5,-37.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17201 + - uid: 17291 components: - pos: -20.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17202 + - uid: 17292 components: - pos: -20.5,-39.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17203 + - uid: 17293 components: - pos: -20.5,-40.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17204 + - uid: 17294 components: - pos: -18.5,-44.5 parent: 2 @@ -115818,14 +116703,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17205 + - uid: 17295 components: - pos: -18.5,-45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17206 + - uid: 17296 components: - rot: 3.141592653589793 rad pos: -20.5,-42.5 @@ -115833,7 +116718,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17207 + - uid: 17297 components: - rot: 3.141592653589793 rad pos: -20.5,-44.5 @@ -115843,7 +116728,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17208 + - uid: 17298 components: - rot: 3.141592653589793 rad pos: -20.5,-45.5 @@ -115851,7 +116736,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17209 + - uid: 17299 components: - rot: 3.141592653589793 rad pos: -20.5,-46.5 @@ -115859,7 +116744,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17210 + - uid: 17300 components: - rot: 1.5707963267948966 rad pos: 45.5,-72.5 @@ -115867,7 +116752,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17211 + - uid: 17301 components: - rot: 3.141592653589793 rad pos: 29.5,-79.5 @@ -115875,7 +116760,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17212 + - uid: 17302 components: - rot: 3.141592653589793 rad pos: 29.5,-84.5 @@ -115883,7 +116768,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17213 + - uid: 17303 components: - rot: 3.141592653589793 rad pos: 48.5,-79.5 @@ -115891,7 +116776,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17214 + - uid: 17304 components: - rot: 3.141592653589793 rad pos: 48.5,-75.5 @@ -115899,7 +116784,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17215 + - uid: 17305 components: - rot: 1.5707963267948966 rad pos: 41.5,-72.5 @@ -115907,7 +116792,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17216 + - uid: 17306 components: - rot: 1.5707963267948966 rad pos: 39.5,-72.5 @@ -115915,35 +116800,35 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17217 + - uid: 17307 components: - pos: 38.5,-70.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17218 + - uid: 17308 components: - pos: 38.5,-69.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17219 + - uid: 17309 components: - pos: 40.5,-69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17220 + - uid: 17310 components: - pos: 40.5,-70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17221 + - uid: 17311 components: - rot: 1.5707963267948966 rad pos: 44.5,-73.5 @@ -115951,7 +116836,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17222 + - uid: 17312 components: - rot: 1.5707963267948966 rad pos: 43.5,-73.5 @@ -115959,7 +116844,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17223 + - uid: 17313 components: - rot: 1.5707963267948966 rad pos: 42.5,-73.5 @@ -115967,7 +116852,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17224 + - uid: 17314 components: - rot: 3.141592653589793 rad pos: 30.5,-81.5 @@ -115975,7 +116860,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17225 + - uid: 17315 components: - rot: 3.141592653589793 rad pos: 29.5,-80.5 @@ -115983,7 +116868,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17226 + - uid: 17316 components: - rot: 1.5707963267948966 rad pos: 46.5,-72.5 @@ -115991,7 +116876,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17227 + - uid: 17317 components: - rot: 3.141592653589793 rad pos: 47.5,-79.5 @@ -115999,7 +116884,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17228 + - uid: 17318 components: - rot: 1.5707963267948966 rad pos: 40.5,-72.5 @@ -116007,7 +116892,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17229 + - uid: 17319 components: - rot: 3.141592653589793 rad pos: 47.5,-73.5 @@ -116015,7 +116900,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17230 + - uid: 17320 components: - rot: 3.141592653589793 rad pos: 29.5,-78.5 @@ -116023,7 +116908,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17231 + - uid: 17321 components: - rot: 3.141592653589793 rad pos: 30.5,-73.5 @@ -116031,7 +116916,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17232 + - uid: 17322 components: - rot: 3.141592653589793 rad pos: 29.5,-81.5 @@ -116039,7 +116924,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17233 + - uid: 17323 components: - rot: 3.141592653589793 rad pos: 2.5,-59.5 @@ -116047,7 +116932,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17234 + - uid: 17324 components: - rot: 3.141592653589793 rad pos: 2.5,-58.5 @@ -116057,7 +116942,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17235 + - uid: 17325 components: - rot: 3.141592653589793 rad pos: 3.5,-60.5 @@ -116065,7 +116950,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17236 + - uid: 17326 components: - rot: 3.141592653589793 rad pos: 3.5,-59.5 @@ -116073,7 +116958,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17237 + - uid: 17327 components: - rot: 3.141592653589793 rad pos: 3.5,-58.5 @@ -116081,7 +116966,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17238 + - uid: 17328 components: - rot: 3.141592653589793 rad pos: 2.5,-57.5 @@ -116089,7 +116974,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17239 + - uid: 17329 components: - rot: 3.141592653589793 rad pos: -41.5,-7.5 @@ -116097,14 +116982,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17240 + - uid: 17330 components: - pos: -31.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17241 + - uid: 17331 components: - rot: 1.5707963267948966 rad pos: -29.5,-17.5 @@ -116112,7 +116997,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17242 + - uid: 17332 components: - rot: 1.5707963267948966 rad pos: -30.5,-17.5 @@ -116120,7 +117005,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17243 + - uid: 17333 components: - rot: -1.5707963267948966 rad pos: -30.5,-16.5 @@ -116128,7 +117013,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17244 + - uid: 17334 components: - rot: -1.5707963267948966 rad pos: -31.5,-16.5 @@ -116136,28 +117021,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17245 + - uid: 17335 components: - pos: -31.5,-18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17246 + - uid: 17336 components: - pos: -31.5,-16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17247 + - uid: 17337 components: - pos: -31.5,-14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17248 + - uid: 17338 components: - rot: 3.141592653589793 rad pos: -32.5,-11.5 @@ -116165,7 +117050,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17249 + - uid: 17339 components: - rot: 3.141592653589793 rad pos: -32.5,-12.5 @@ -116173,7 +117058,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17250 + - uid: 17340 components: - rot: 3.141592653589793 rad pos: -32.5,-13.5 @@ -116181,7 +117066,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17251 + - uid: 17341 components: - rot: 3.141592653589793 rad pos: -32.5,-14.5 @@ -116189,7 +117074,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17252 + - uid: 17342 components: - rot: 3.141592653589793 rad pos: -32.5,-15.5 @@ -116197,7 +117082,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17253 + - uid: 17343 components: - rot: 1.5707963267948966 rad pos: -32.5,-11.5 @@ -116205,7 +117090,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17254 + - uid: 17344 components: - rot: 1.5707963267948966 rad pos: -33.5,-11.5 @@ -116213,7 +117098,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17255 + - uid: 17345 components: - rot: 1.5707963267948966 rad pos: -34.5,-11.5 @@ -116221,7 +117106,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17256 + - uid: 17346 components: - rot: 1.5707963267948966 rad pos: -35.5,-11.5 @@ -116229,7 +117114,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17257 + - uid: 17347 components: - rot: 1.5707963267948966 rad pos: -33.5,-10.5 @@ -116237,7 +117122,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17258 + - uid: 17348 components: - rot: 1.5707963267948966 rad pos: -34.5,-10.5 @@ -116245,112 +117130,112 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17259 + - uid: 17349 components: - pos: -32.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17260 + - uid: 17350 components: - pos: -32.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17261 + - uid: 17351 components: - pos: -32.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17262 + - uid: 17352 components: - pos: -31.5,-19.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17263 + - uid: 17353 components: - pos: -31.5,-20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17264 + - uid: 17354 components: - pos: -31.5,-21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17265 + - uid: 17355 components: - pos: -32.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17266 + - uid: 17356 components: - pos: -32.5,-22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17267 + - uid: 17357 components: - pos: -32.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17268 + - uid: 17358 components: - pos: -32.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17269 + - uid: 17359 components: - pos: -31.5,-22.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17270 + - uid: 17360 components: - pos: -31.5,-23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17271 + - uid: 17361 components: - pos: -31.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17272 + - uid: 17362 components: - pos: -31.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17273 + - uid: 17363 components: - pos: -31.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17274 + - uid: 17364 components: - rot: 3.141592653589793 rad pos: -32.5,-26.5 @@ -116358,7 +117243,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17275 + - uid: 17365 components: - rot: 3.141592653589793 rad pos: -32.5,-27.5 @@ -116366,7 +117251,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17276 + - uid: 17366 components: - rot: 3.141592653589793 rad pos: -32.5,-28.5 @@ -116374,7 +117259,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17277 + - uid: 17367 components: - rot: 3.141592653589793 rad pos: -32.5,-29.5 @@ -116382,7 +117267,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17278 + - uid: 17368 components: - rot: 3.141592653589793 rad pos: -32.5,-30.5 @@ -116390,7 +117275,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17279 + - uid: 17369 components: - rot: 3.141592653589793 rad pos: -31.5,-28.5 @@ -116398,7 +117283,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17280 + - uid: 17370 components: - rot: 3.141592653589793 rad pos: -31.5,-29.5 @@ -116406,7 +117291,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17281 + - uid: 17371 components: - rot: 3.141592653589793 rad pos: -31.5,-30.5 @@ -116414,7 +117299,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17282 + - uid: 17372 components: - rot: 1.5707963267948966 rad pos: -32.5,-15.5 @@ -116422,7 +117307,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17283 + - uid: 17373 components: - rot: 1.5707963267948966 rad pos: -33.5,-15.5 @@ -116432,7 +117317,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17284 + - uid: 17374 components: - rot: 1.5707963267948966 rad pos: -33.5,-17.5 @@ -116440,7 +117325,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17285 + - uid: 17375 components: - rot: -1.5707963267948966 rad pos: -37.5,-11.5 @@ -116448,7 +117333,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17286 + - uid: 17376 components: - rot: -1.5707963267948966 rad pos: -38.5,-11.5 @@ -116456,7 +117341,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17287 + - uid: 17377 components: - rot: -1.5707963267948966 rad pos: -39.5,-11.5 @@ -116464,7 +117349,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17288 + - uid: 17378 components: - rot: -1.5707963267948966 rad pos: -40.5,-11.5 @@ -116472,7 +117357,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17289 + - uid: 17379 components: - rot: -1.5707963267948966 rad pos: -36.5,-10.5 @@ -116480,7 +117365,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17290 + - uid: 17380 components: - rot: -1.5707963267948966 rad pos: -37.5,-10.5 @@ -116488,7 +117373,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17291 + - uid: 17381 components: - rot: -1.5707963267948966 rad pos: -38.5,-10.5 @@ -116496,7 +117381,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17292 + - uid: 17382 components: - rot: -1.5707963267948966 rad pos: -39.5,-10.5 @@ -116504,7 +117389,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17293 + - uid: 17383 components: - rot: -1.5707963267948966 rad pos: -40.5,-10.5 @@ -116512,7 +117397,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17294 + - uid: 17384 components: - rot: -1.5707963267948966 rad pos: -41.5,-10.5 @@ -116520,28 +117405,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17295 + - uid: 17385 components: - pos: -42.5,-11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17296 + - uid: 17386 components: - pos: -42.5,-12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17297 + - uid: 17387 components: - pos: -42.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17298 + - uid: 17388 components: - pos: -42.5,-14.5 parent: 2 @@ -116550,42 +117435,42 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17299 + - uid: 17389 components: - pos: -41.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17300 + - uid: 17390 components: - pos: -41.5,-13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17301 + - uid: 17391 components: - pos: -41.5,-14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17302 + - uid: 17392 components: - pos: -41.5,-15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17303 + - uid: 17393 components: - pos: -20.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17304 + - uid: 17394 components: - rot: -1.5707963267948966 rad pos: -19.5,6.5 @@ -116593,7 +117478,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17305 + - uid: 17395 components: - rot: -1.5707963267948966 rad pos: -20.5,6.5 @@ -116601,7 +117486,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17306 + - uid: 17396 components: - rot: -1.5707963267948966 rad pos: -21.5,6.5 @@ -116609,7 +117494,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17307 + - uid: 17397 components: - rot: -1.5707963267948966 rad pos: -22.5,6.5 @@ -116617,7 +117502,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17308 + - uid: 17398 components: - rot: -1.5707963267948966 rad pos: -23.5,6.5 @@ -116625,7 +117510,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17309 + - uid: 17399 components: - rot: -1.5707963267948966 rad pos: -21.5,7.5 @@ -116633,7 +117518,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17310 + - uid: 17400 components: - rot: -1.5707963267948966 rad pos: -22.5,7.5 @@ -116641,7 +117526,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17311 + - uid: 17401 components: - rot: -1.5707963267948966 rad pos: -23.5,7.5 @@ -116649,7 +117534,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17312 + - uid: 17402 components: - rot: -1.5707963267948966 rad pos: -24.5,6.5 @@ -116657,7 +117542,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17313 + - uid: 17403 components: - rot: -1.5707963267948966 rad pos: -25.5,6.5 @@ -116665,7 +117550,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17314 + - uid: 17404 components: - rot: 3.141592653589793 rad pos: -26.5,-3.5 @@ -116673,7 +117558,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17315 + - uid: 17405 components: - rot: 3.141592653589793 rad pos: -26.5,-2.5 @@ -116681,7 +117566,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17316 + - uid: 17406 components: - rot: 3.141592653589793 rad pos: -26.5,-1.5 @@ -116689,7 +117574,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17317 + - uid: 17407 components: - rot: 3.141592653589793 rad pos: -26.5,-0.5 @@ -116697,7 +117582,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17318 + - uid: 17408 components: - rot: 3.141592653589793 rad pos: -26.5,0.5 @@ -116705,7 +117590,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17319 + - uid: 17409 components: - rot: 3.141592653589793 rad pos: -26.5,2.5 @@ -116713,7 +117598,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17320 + - uid: 17410 components: - rot: 3.141592653589793 rad pos: -26.5,3.5 @@ -116721,7 +117606,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17321 + - uid: 17411 components: - rot: 3.141592653589793 rad pos: -26.5,4.5 @@ -116729,7 +117614,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17322 + - uid: 17412 components: - rot: 3.141592653589793 rad pos: -26.5,5.5 @@ -116737,7 +117622,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17323 + - uid: 17413 components: - rot: 3.141592653589793 rad pos: -24.5,6.5 @@ -116745,7 +117630,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17324 + - uid: 17414 components: - rot: 3.141592653589793 rad pos: -24.5,5.5 @@ -116753,7 +117638,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17325 + - uid: 17415 components: - rot: 3.141592653589793 rad pos: -24.5,4.5 @@ -116761,7 +117646,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17326 + - uid: 17416 components: - rot: 3.141592653589793 rad pos: -24.5,3.5 @@ -116769,7 +117654,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17327 + - uid: 17417 components: - rot: 3.141592653589793 rad pos: -24.5,2.5 @@ -116777,7 +117662,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17328 + - uid: 17418 components: - rot: 3.141592653589793 rad pos: -24.5,1.5 @@ -116785,7 +117670,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17329 + - uid: 17419 components: - rot: 3.141592653589793 rad pos: -24.5,-0.5 @@ -116793,7 +117678,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17330 + - uid: 17420 components: - rot: 3.141592653589793 rad pos: -24.5,-1.5 @@ -116801,7 +117686,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17331 + - uid: 17421 components: - rot: 3.141592653589793 rad pos: -24.5,-3.5 @@ -116809,7 +117694,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17332 + - uid: 17422 components: - rot: -1.5707963267948966 rad pos: -43.5,-10.5 @@ -116817,7 +117702,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17333 + - uid: 17423 components: - rot: -1.5707963267948966 rad pos: -42.5,-11.5 @@ -116825,7 +117710,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17334 + - uid: 17424 components: - rot: -1.5707963267948966 rad pos: -43.5,-11.5 @@ -116833,7 +117718,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17335 + - uid: 17425 components: - rot: 3.141592653589793 rad pos: -41.5,-10.5 @@ -116841,7 +117726,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17336 + - uid: 17426 components: - rot: 3.141592653589793 rad pos: -42.5,-7.5 @@ -116849,7 +117734,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17337 + - uid: 17427 components: - rot: 1.5707963267948966 rad pos: -42.5,-5.5 @@ -116857,7 +117742,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17338 + - uid: 17428 components: - rot: 1.5707963267948966 rad pos: -43.5,-5.5 @@ -116865,7 +117750,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17339 + - uid: 17429 components: - rot: 1.5707963267948966 rad pos: -44.5,-5.5 @@ -116873,7 +117758,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17340 + - uid: 17430 components: - rot: 1.5707963267948966 rad pos: -45.5,-5.5 @@ -116881,7 +117766,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17341 + - uid: 17431 components: - rot: 3.141592653589793 rad pos: -41.5,-9.5 @@ -116889,7 +117774,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17342 + - uid: 17432 components: - rot: 3.141592653589793 rad pos: -42.5,-9.5 @@ -116897,7 +117782,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17343 + - uid: 17433 components: - rot: 3.141592653589793 rad pos: -42.5,-8.5 @@ -116905,7 +117790,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17344 + - uid: 17434 components: - rot: 1.5707963267948966 rad pos: -43.5,-6.5 @@ -116913,7 +117798,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17345 + - uid: 17435 components: - rot: 1.5707963267948966 rad pos: -44.5,-6.5 @@ -116921,7 +117806,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17346 + - uid: 17436 components: - rot: 1.5707963267948966 rad pos: -45.5,-6.5 @@ -116929,7 +117814,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17347 + - uid: 17437 components: - rot: 1.5707963267948966 rad pos: -46.5,-6.5 @@ -116937,7 +117822,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17348 + - uid: 17438 components: - rot: 1.5707963267948966 rad pos: -47.5,-5.5 @@ -116945,7 +117830,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17349 + - uid: 17439 components: - rot: 1.5707963267948966 rad pos: -48.5,-5.5 @@ -116953,7 +117838,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17350 + - uid: 17440 components: - rot: 1.5707963267948966 rad pos: -49.5,-5.5 @@ -116961,7 +117846,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17351 + - uid: 17441 components: - rot: 1.5707963267948966 rad pos: -50.5,-5.5 @@ -116969,7 +117854,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17352 + - uid: 17442 components: - rot: 1.5707963267948966 rad pos: -51.5,-5.5 @@ -116977,7 +117862,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17353 + - uid: 17443 components: - rot: 1.5707963267948966 rad pos: -52.5,-5.5 @@ -116985,7 +117870,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17354 + - uid: 17444 components: - rot: 1.5707963267948966 rad pos: -48.5,-6.5 @@ -116993,7 +117878,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17355 + - uid: 17445 components: - rot: 1.5707963267948966 rad pos: -49.5,-6.5 @@ -117001,7 +117886,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17356 + - uid: 17446 components: - rot: 1.5707963267948966 rad pos: -50.5,-6.5 @@ -117009,7 +117894,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17357 + - uid: 17447 components: - rot: 1.5707963267948966 rad pos: -51.5,-6.5 @@ -117017,119 +117902,119 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17358 + - uid: 17448 components: - pos: -53.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17359 + - uid: 17449 components: - pos: -53.5,-7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17360 + - uid: 17450 components: - pos: -53.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17361 + - uid: 17451 components: - pos: -53.5,-9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17362 + - uid: 17452 components: - pos: -53.5,-10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17363 + - uid: 17453 components: - pos: -53.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17364 + - uid: 17454 components: - pos: -53.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17365 + - uid: 17455 components: - pos: -52.5,-7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17366 + - uid: 17456 components: - pos: -52.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17367 + - uid: 17457 components: - pos: -52.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17368 + - uid: 17458 components: - pos: -52.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17369 + - uid: 17459 components: - pos: -52.5,-11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17370 + - uid: 17460 components: - pos: -52.5,-12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17371 + - uid: 17461 components: - pos: -52.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17372 + - uid: 17462 components: - pos: -52.5,-14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17373 + - uid: 17463 components: - pos: -52.5,-15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17374 + - uid: 17464 components: - rot: 3.141592653589793 rad pos: -53.5,-14.5 @@ -117137,7 +118022,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17375 + - uid: 17465 components: - rot: 3.141592653589793 rad pos: -53.5,-15.5 @@ -117145,7 +118030,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17376 + - uid: 17466 components: - rot: 3.141592653589793 rad pos: -53.5,-16.5 @@ -117153,7 +118038,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17377 + - uid: 17467 components: - rot: 3.141592653589793 rad pos: -53.5,-17.5 @@ -117161,7 +118046,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17378 + - uid: 17468 components: - rot: 3.141592653589793 rad pos: -53.5,-18.5 @@ -117169,7 +118054,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17379 + - uid: 17469 components: - rot: 1.5707963267948966 rad pos: -51.5,-17.5 @@ -117177,7 +118062,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17380 + - uid: 17470 components: - rot: 1.5707963267948966 rad pos: -52.5,-19.5 @@ -117185,21 +118070,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17381 + - uid: 17471 components: - pos: -50.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17382 + - uid: 17472 components: - pos: -50.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17383 + - uid: 17473 components: - pos: -50.5,-21.5 parent: 2 @@ -117208,35 +118093,35 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17384 + - uid: 17474 components: - pos: -51.5,-20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17385 + - uid: 17475 components: - pos: -51.5,-21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17386 + - uid: 17476 components: - pos: -51.5,-22.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17387 + - uid: 17477 components: - pos: -47.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17388 + - uid: 17478 components: - rot: 1.5707963267948966 rad pos: -48.5,-19.5 @@ -117244,7 +118129,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17389 + - uid: 17479 components: - rot: 1.5707963267948966 rad pos: -49.5,-19.5 @@ -117254,7 +118139,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17390 + - uid: 17480 components: - rot: 3.141592653589793 rad pos: -41.5,-6.5 @@ -117262,7 +118147,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17391 + - uid: 17481 components: - rot: -1.5707963267948966 rad pos: -60.5,-23.5 @@ -117270,7 +118155,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17392 + - uid: 17482 components: - rot: -1.5707963267948966 rad pos: -62.5,-23.5 @@ -117278,77 +118163,77 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17393 + - uid: 17483 components: - pos: -53.5,-20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17394 + - uid: 17484 components: - pos: -53.5,-21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17395 + - uid: 17485 components: - pos: -53.5,-22.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17396 + - uid: 17486 components: - pos: -53.5,-23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17397 + - uid: 17487 components: - pos: -53.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17398 + - uid: 17488 components: - pos: -54.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17399 + - uid: 17489 components: - pos: -54.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17400 + - uid: 17490 components: - pos: -54.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17401 + - uid: 17491 components: - pos: -54.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17402 + - uid: 17492 components: - pos: -54.5,-22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17403 + - uid: 17493 components: - rot: -1.5707963267948966 rad pos: -53.5,-17.5 @@ -117356,7 +118241,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17404 + - uid: 17494 components: - rot: 1.5707963267948966 rad pos: -54.5,-25.5 @@ -117364,7 +118249,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17405 + - uid: 17495 components: - rot: 1.5707963267948966 rad pos: -55.5,-25.5 @@ -117372,7 +118257,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17406 + - uid: 17496 components: - rot: 1.5707963267948966 rad pos: -56.5,-25.5 @@ -117380,7 +118265,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17407 + - uid: 17497 components: - rot: 1.5707963267948966 rad pos: -57.5,-25.5 @@ -117388,7 +118273,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17408 + - uid: 17498 components: - rot: 1.5707963267948966 rad pos: -58.5,-25.5 @@ -117396,7 +118281,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17409 + - uid: 17499 components: - rot: 1.5707963267948966 rad pos: -55.5,-23.5 @@ -117404,7 +118289,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17410 + - uid: 17500 components: - rot: 1.5707963267948966 rad pos: -57.5,-23.5 @@ -117412,7 +118297,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17411 + - uid: 17501 components: - rot: 1.5707963267948966 rad pos: -58.5,-23.5 @@ -117420,7 +118305,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17412 + - uid: 17502 components: - rot: -1.5707963267948966 rad pos: -59.5,-23.5 @@ -117428,7 +118313,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17413 + - uid: 17503 components: - rot: -1.5707963267948966 rad pos: -61.5,-23.5 @@ -117436,7 +118321,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17414 + - uid: 17504 components: - rot: -1.5707963267948966 rad pos: -63.5,-23.5 @@ -117444,7 +118329,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17415 + - uid: 17505 components: - rot: -1.5707963267948966 rad pos: -64.5,-23.5 @@ -117452,7 +118337,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17416 + - uid: 17506 components: - rot: -1.5707963267948966 rad pos: -65.5,-23.5 @@ -117460,7 +118345,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17417 + - uid: 17507 components: - rot: -1.5707963267948966 rad pos: -66.5,-23.5 @@ -117468,7 +118353,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17418 + - uid: 17508 components: - rot: -1.5707963267948966 rad pos: -67.5,-23.5 @@ -117476,49 +118361,49 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17419 + - uid: 17509 components: - pos: -68.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17420 + - uid: 17510 components: - pos: -68.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17421 + - uid: 17511 components: - pos: -68.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17422 + - uid: 17512 components: - pos: -68.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17423 + - uid: 17513 components: - pos: -68.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17424 + - uid: 17514 components: - pos: -68.5,-30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17425 + - uid: 17515 components: - rot: -1.5707963267948966 rad pos: -60.5,-25.5 @@ -117526,7 +118411,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17426 + - uid: 17516 components: - rot: -1.5707963267948966 rad pos: -61.5,-25.5 @@ -117534,7 +118419,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17427 + - uid: 17517 components: - rot: -1.5707963267948966 rad pos: -62.5,-25.5 @@ -117542,7 +118427,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17428 + - uid: 17518 components: - rot: -1.5707963267948966 rad pos: -63.5,-25.5 @@ -117552,14 +118437,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17429 + - uid: 17519 components: - pos: -64.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17430 + - uid: 17520 components: - rot: 3.141592653589793 rad pos: -64.5,-28.5 @@ -117567,7 +118452,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17431 + - uid: 17521 components: - rot: 3.141592653589793 rad pos: -64.5,-29.5 @@ -117575,7 +118460,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17432 + - uid: 17522 components: - rot: 3.141592653589793 rad pos: -64.5,-30.5 @@ -117583,7 +118468,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17433 + - uid: 17523 components: - rot: 1.5707963267948966 rad pos: -47.5,-42.5 @@ -117591,7 +118476,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17434 + - uid: 17524 components: - rot: 1.5707963267948966 rad pos: -47.5,-44.5 @@ -117599,7 +118484,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17435 + - uid: 17525 components: - rot: 1.5707963267948966 rad pos: -47.5,-46.5 @@ -117607,7 +118492,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17436 + - uid: 17526 components: - rot: 1.5707963267948966 rad pos: -47.5,-48.5 @@ -117615,7 +118500,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17437 + - uid: 17527 components: - rot: 1.5707963267948966 rad pos: -47.5,-50.5 @@ -117623,7 +118508,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17438 + - uid: 17528 components: - rot: 1.5707963267948966 rad pos: -47.5,-52.5 @@ -117631,7 +118516,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17439 + - uid: 17529 components: - rot: 1.5707963267948966 rad pos: -47.5,-54.5 @@ -117639,7 +118524,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17440 + - uid: 17530 components: - rot: 1.5707963267948966 rad pos: -49.5,-55.5 @@ -117647,7 +118532,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17441 + - uid: 17531 components: - rot: 1.5707963267948966 rad pos: -48.5,-55.5 @@ -117655,7 +118540,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17442 + - uid: 17532 components: - rot: 1.5707963267948966 rad pos: -47.5,-55.5 @@ -117663,7 +118548,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17443 + - uid: 17533 components: - rot: 1.5707963267948966 rad pos: -49.5,-53.5 @@ -117671,7 +118556,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17444 + - uid: 17534 components: - rot: 1.5707963267948966 rad pos: -48.5,-53.5 @@ -117679,7 +118564,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17445 + - uid: 17535 components: - rot: 1.5707963267948966 rad pos: -47.5,-53.5 @@ -117687,7 +118572,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17446 + - uid: 17536 components: - rot: 1.5707963267948966 rad pos: -49.5,-51.5 @@ -117695,7 +118580,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17447 + - uid: 17537 components: - rot: 1.5707963267948966 rad pos: -48.5,-51.5 @@ -117703,7 +118588,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17448 + - uid: 17538 components: - rot: 1.5707963267948966 rad pos: -47.5,-51.5 @@ -117711,7 +118596,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17449 + - uid: 17539 components: - rot: 1.5707963267948966 rad pos: -49.5,-49.5 @@ -117719,7 +118604,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17450 + - uid: 17540 components: - rot: 1.5707963267948966 rad pos: -48.5,-49.5 @@ -117727,7 +118612,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17451 + - uid: 17541 components: - rot: 1.5707963267948966 rad pos: -47.5,-49.5 @@ -117735,7 +118620,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17452 + - uid: 17542 components: - rot: 1.5707963267948966 rad pos: -49.5,-47.5 @@ -117743,7 +118628,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17453 + - uid: 17543 components: - rot: 1.5707963267948966 rad pos: -48.5,-47.5 @@ -117751,7 +118636,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17454 + - uid: 17544 components: - rot: 1.5707963267948966 rad pos: -47.5,-47.5 @@ -117759,7 +118644,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17455 + - uid: 17545 components: - rot: 1.5707963267948966 rad pos: -49.5,-45.5 @@ -117767,7 +118652,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17456 + - uid: 17546 components: - rot: 1.5707963267948966 rad pos: -48.5,-45.5 @@ -117775,7 +118660,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17457 + - uid: 17547 components: - rot: 1.5707963267948966 rad pos: -47.5,-45.5 @@ -117783,7 +118668,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17458 + - uid: 17548 components: - rot: 1.5707963267948966 rad pos: -49.5,-43.5 @@ -117791,7 +118676,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17459 + - uid: 17549 components: - rot: 1.5707963267948966 rad pos: -48.5,-43.5 @@ -117799,7 +118684,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17460 + - uid: 17550 components: - rot: 1.5707963267948966 rad pos: -47.5,-43.5 @@ -117807,7 +118692,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17461 + - uid: 17551 components: - rot: 1.5707963267948966 rad pos: -46.5,-52.5 @@ -117815,7 +118700,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17462 + - uid: 17552 components: - rot: 1.5707963267948966 rad pos: -45.5,-52.5 @@ -117823,7 +118708,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17463 + - uid: 17553 components: - rot: 1.5707963267948966 rad pos: -46.5,-54.5 @@ -117831,7 +118716,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17464 + - uid: 17554 components: - rot: 1.5707963267948966 rad pos: -45.5,-54.5 @@ -117839,7 +118724,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17465 + - uid: 17555 components: - rot: 1.5707963267948966 rad pos: -46.5,-50.5 @@ -117847,7 +118732,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17466 + - uid: 17556 components: - rot: 1.5707963267948966 rad pos: -45.5,-50.5 @@ -117855,7 +118740,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17467 + - uid: 17557 components: - rot: 1.5707963267948966 rad pos: -46.5,-48.5 @@ -117863,7 +118748,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17468 + - uid: 17558 components: - rot: 1.5707963267948966 rad pos: -45.5,-48.5 @@ -117871,7 +118756,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17469 + - uid: 17559 components: - rot: 1.5707963267948966 rad pos: -46.5,-46.5 @@ -117879,7 +118764,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17470 + - uid: 17560 components: - rot: 1.5707963267948966 rad pos: -45.5,-46.5 @@ -117887,7 +118772,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17471 + - uid: 17561 components: - rot: 1.5707963267948966 rad pos: -46.5,-44.5 @@ -117895,7 +118780,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17472 + - uid: 17562 components: - rot: 1.5707963267948966 rad pos: -45.5,-44.5 @@ -117903,7 +118788,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17473 + - uid: 17563 components: - rot: 1.5707963267948966 rad pos: -46.5,-42.5 @@ -117911,7 +118796,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17474 + - uid: 17564 components: - rot: 1.5707963267948966 rad pos: -45.5,-42.5 @@ -117919,7 +118804,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17475 + - uid: 17565 components: - rot: 1.5707963267948966 rad pos: -45.5,-55.5 @@ -117927,7 +118812,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17476 + - uid: 17566 components: - rot: 1.5707963267948966 rad pos: -46.5,-55.5 @@ -117935,7 +118820,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17477 + - uid: 17567 components: - rot: 1.5707963267948966 rad pos: -46.5,-53.5 @@ -117943,7 +118828,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17478 + - uid: 17568 components: - rot: 1.5707963267948966 rad pos: -45.5,-53.5 @@ -117951,7 +118836,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17479 + - uid: 17569 components: - rot: 1.5707963267948966 rad pos: -43.5,-53.5 @@ -117959,7 +118844,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17480 + - uid: 17570 components: - rot: 1.5707963267948966 rad pos: -46.5,-51.5 @@ -117967,7 +118852,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17481 + - uid: 17571 components: - rot: 1.5707963267948966 rad pos: -45.5,-51.5 @@ -117975,7 +118860,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17482 + - uid: 17572 components: - rot: 1.5707963267948966 rad pos: -43.5,-51.5 @@ -117983,7 +118868,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17483 + - uid: 17573 components: - rot: 1.5707963267948966 rad pos: -46.5,-49.5 @@ -117991,7 +118876,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17484 + - uid: 17574 components: - rot: 1.5707963267948966 rad pos: -45.5,-49.5 @@ -117999,7 +118884,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17485 + - uid: 17575 components: - rot: 1.5707963267948966 rad pos: -43.5,-49.5 @@ -118007,7 +118892,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17486 + - uid: 17576 components: - rot: 1.5707963267948966 rad pos: -46.5,-47.5 @@ -118015,7 +118900,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17487 + - uid: 17577 components: - rot: 1.5707963267948966 rad pos: -45.5,-47.5 @@ -118023,7 +118908,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17488 + - uid: 17578 components: - rot: 1.5707963267948966 rad pos: -43.5,-47.5 @@ -118031,7 +118916,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17489 + - uid: 17579 components: - rot: 1.5707963267948966 rad pos: -46.5,-45.5 @@ -118039,7 +118924,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17490 + - uid: 17580 components: - rot: 1.5707963267948966 rad pos: -45.5,-45.5 @@ -118047,7 +118932,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17491 + - uid: 17581 components: - rot: 1.5707963267948966 rad pos: -43.5,-45.5 @@ -118055,7 +118940,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17492 + - uid: 17582 components: - rot: 1.5707963267948966 rad pos: -46.5,-43.5 @@ -118063,7 +118948,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17493 + - uid: 17583 components: - rot: 1.5707963267948966 rad pos: -45.5,-43.5 @@ -118071,7 +118956,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17494 + - uid: 17584 components: - rot: 1.5707963267948966 rad pos: -43.5,-43.5 @@ -118079,7 +118964,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17495 + - uid: 17585 components: - rot: 3.141592653589793 rad pos: -42.5,-54.5 @@ -118087,7 +118972,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17496 + - uid: 17586 components: - rot: 3.141592653589793 rad pos: -43.5,-54.5 @@ -118095,7 +118980,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17497 + - uid: 17587 components: - rot: 3.141592653589793 rad pos: -43.5,-53.5 @@ -118103,98 +118988,98 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17498 + - uid: 17588 components: - pos: -42.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17499 + - uid: 17589 components: - pos: -42.5,-48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17500 + - uid: 17590 components: - pos: -42.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17501 + - uid: 17591 components: - pos: -42.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17502 + - uid: 17592 components: - pos: -42.5,-42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17503 + - uid: 17593 components: - pos: -44.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17504 + - uid: 17594 components: - pos: -44.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17505 + - uid: 17595 components: - pos: -44.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17506 + - uid: 17596 components: - pos: -44.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17507 + - uid: 17597 components: - pos: -44.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17508 + - uid: 17598 components: - pos: -44.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17509 + - uid: 17599 components: - pos: -44.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17510 + - uid: 17600 components: - pos: -44.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17511 + - uid: 17601 components: - rot: 1.5707963267948966 rad pos: -43.5,-57.5 @@ -118202,7 +119087,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17512 + - uid: 17602 components: - rot: 1.5707963267948966 rad pos: -42.5,-57.5 @@ -118210,7 +119095,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17513 + - uid: 17603 components: - rot: 1.5707963267948966 rad pos: -41.5,-57.5 @@ -118218,7 +119103,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17514 + - uid: 17604 components: - rot: 1.5707963267948966 rad pos: -40.5,-57.5 @@ -118226,7 +119111,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17515 + - uid: 17605 components: - rot: 1.5707963267948966 rad pos: -41.5,-55.5 @@ -118236,7 +119121,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17516 + - uid: 17606 components: - rot: 1.5707963267948966 rad pos: -36.5,-57.5 @@ -118244,7 +119129,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17517 + - uid: 17607 components: - rot: 3.141592653589793 rad pos: -42.5,-39.5 @@ -118252,25 +119137,25 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17518 + - uid: 17608 components: - rot: 3.141592653589793 rad pos: -42.5,-38.5 parent: 2 type: Transform - - uid: 17519 + - uid: 17609 components: - rot: 3.141592653589793 rad pos: -42.5,-37.5 parent: 2 type: Transform - - uid: 17520 + - uid: 17610 components: - rot: 3.141592653589793 rad pos: -42.5,-36.5 parent: 2 type: Transform - - uid: 17521 + - uid: 17611 components: - rot: 3.141592653589793 rad pos: -38.5,-59.5 @@ -118278,7 +119163,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17522 + - uid: 17612 components: - rot: 3.141592653589793 rad pos: -40.5,-52.5 @@ -118288,7 +119173,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17523 + - uid: 17613 components: - rot: 3.141592653589793 rad pos: -37.5,-52.5 @@ -118298,7 +119183,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17524 + - uid: 17614 components: - rot: 1.5707963267948966 rad pos: -37.5,-55.5 @@ -118308,7 +119193,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17525 + - uid: 17615 components: - rot: -1.5707963267948966 rad pos: -38.5,-55.5 @@ -118318,7 +119203,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17526 + - uid: 17616 components: - rot: 1.5707963267948966 rad pos: -39.5,-48.5 @@ -118328,7 +119213,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17527 + - uid: 17617 components: - rot: 3.141592653589793 rad pos: -38.5,-47.5 @@ -118338,7 +119223,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17528 + - uid: 17618 components: - rot: 3.141592653589793 rad pos: -38.5,-46.5 @@ -118348,7 +119233,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17529 + - uid: 17619 components: - rot: 1.5707963267948966 rad pos: -35.5,-57.5 @@ -118356,35 +119241,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17530 + - uid: 17620 components: - pos: -31.5,-31.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17531 + - uid: 17621 components: - pos: -32.5,-31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17532 + - uid: 17622 components: - pos: -32.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17533 + - uid: 17623 components: - pos: -31.5,-32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17534 + - uid: 17624 components: - rot: 3.141592653589793 rad pos: -31.5,-33.5 @@ -118392,7 +119277,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17535 + - uid: 17625 components: - rot: 3.141592653589793 rad pos: -32.5,-34.5 @@ -118400,7 +119285,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17536 + - uid: 17626 components: - rot: 1.5707963267948966 rad pos: -31.5,-33.5 @@ -118408,7 +119293,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17537 + - uid: 17627 components: - rot: 1.5707963267948966 rad pos: -30.5,-33.5 @@ -118416,7 +119301,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17538 + - uid: 17628 components: - rot: 1.5707963267948966 rad pos: -29.5,-33.5 @@ -118424,7 +119309,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17539 + - uid: 17629 components: - rot: 1.5707963267948966 rad pos: -28.5,-33.5 @@ -118432,7 +119317,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17540 + - uid: 17630 components: - rot: 1.5707963267948966 rad pos: -27.5,-33.5 @@ -118440,7 +119325,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17541 + - uid: 17631 components: - rot: 1.5707963267948966 rad pos: -26.5,-33.5 @@ -118448,7 +119333,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17542 + - uid: 17632 components: - rot: 1.5707963267948966 rad pos: -25.5,-33.5 @@ -118456,7 +119341,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17543 + - uid: 17633 components: - rot: 1.5707963267948966 rad pos: -34.5,-33.5 @@ -118464,7 +119349,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17544 + - uid: 17634 components: - rot: 1.5707963267948966 rad pos: -35.5,-33.5 @@ -118472,7 +119357,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17545 + - uid: 17635 components: - rot: 1.5707963267948966 rad pos: -36.5,-33.5 @@ -118480,7 +119365,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17546 + - uid: 17636 components: - rot: 1.5707963267948966 rad pos: -37.5,-33.5 @@ -118488,7 +119373,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17547 + - uid: 17637 components: - rot: 1.5707963267948966 rad pos: -32.5,-34.5 @@ -118496,7 +119381,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17548 + - uid: 17638 components: - rot: 1.5707963267948966 rad pos: -33.5,-34.5 @@ -118504,7 +119389,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17549 + - uid: 17639 components: - rot: 1.5707963267948966 rad pos: -34.5,-34.5 @@ -118512,7 +119397,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17550 + - uid: 17640 components: - rot: 1.5707963267948966 rad pos: -35.5,-34.5 @@ -118520,7 +119405,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17551 + - uid: 17641 components: - rot: 1.5707963267948966 rad pos: -36.5,-34.5 @@ -118528,7 +119413,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17552 + - uid: 17642 components: - rot: 1.5707963267948966 rad pos: -37.5,-34.5 @@ -118536,70 +119421,70 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17553 + - uid: 17643 components: - pos: -32.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17554 + - uid: 17644 components: - pos: -32.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17555 + - uid: 17645 components: - pos: -32.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17556 + - uid: 17646 components: - pos: -31.5,-35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17557 + - uid: 17647 components: - pos: -31.5,-36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17558 + - uid: 17648 components: - pos: -31.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17559 + - uid: 17649 components: - pos: -31.5,-37.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17560 + - uid: 17650 components: - pos: -31.5,-40.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17561 + - uid: 17651 components: - pos: -32.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17562 + - uid: 17652 components: - rot: -1.5707963267948966 rad pos: -29.5,-34.5 @@ -118607,7 +119492,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17563 + - uid: 17653 components: - rot: -1.5707963267948966 rad pos: -28.5,-34.5 @@ -118615,7 +119500,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17564 + - uid: 17654 components: - rot: -1.5707963267948966 rad pos: -27.5,-34.5 @@ -118623,7 +119508,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17565 + - uid: 17655 components: - rot: -1.5707963267948966 rad pos: -26.5,-34.5 @@ -118631,7 +119516,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17566 + - uid: 17656 components: - rot: -1.5707963267948966 rad pos: -25.5,-34.5 @@ -118639,7 +119524,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17567 + - uid: 17657 components: - rot: -1.5707963267948966 rad pos: -24.5,-34.5 @@ -118647,7 +119532,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17568 + - uid: 17658 components: - pos: -37.5,-55.5 parent: 2 @@ -118656,7 +119541,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17569 + - uid: 17659 components: - pos: -37.5,-56.5 parent: 2 @@ -118665,7 +119550,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17570 + - uid: 17660 components: - rot: 1.5707963267948966 rad pos: -36.5,-55.5 @@ -118673,7 +119558,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17571 + - uid: 17661 components: - rot: 3.141592653589793 rad pos: -35.5,-54.5 @@ -118681,7 +119566,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17572 + - uid: 17662 components: - rot: 3.141592653589793 rad pos: -35.5,-52.5 @@ -118689,7 +119574,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17573 + - uid: 17663 components: - rot: 3.141592653589793 rad pos: -35.5,-51.5 @@ -118697,7 +119582,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17574 + - uid: 17664 components: - rot: 3.141592653589793 rad pos: -35.5,-50.5 @@ -118705,7 +119590,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17575 + - uid: 17665 components: - rot: 3.141592653589793 rad pos: -35.5,-49.5 @@ -118713,7 +119598,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17576 + - uid: 17666 components: - rot: 3.141592653589793 rad pos: -35.5,-48.5 @@ -118721,7 +119606,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17577 + - uid: 17667 components: - rot: 3.141592653589793 rad pos: -35.5,-47.5 @@ -118729,7 +119614,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17578 + - uid: 17668 components: - rot: 3.141592653589793 rad pos: -35.5,-46.5 @@ -118737,7 +119622,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17579 + - uid: 17669 components: - rot: 3.141592653589793 rad pos: -35.5,-45.5 @@ -118745,7 +119630,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17580 + - uid: 17670 components: - rot: 3.141592653589793 rad pos: -35.5,-43.5 @@ -118753,7 +119638,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17581 + - uid: 17671 components: - rot: 3.141592653589793 rad pos: -35.5,-42.5 @@ -118761,7 +119646,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17582 + - uid: 17672 components: - rot: 3.141592653589793 rad pos: -34.5,-56.5 @@ -118769,7 +119654,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17583 + - uid: 17673 components: - rot: 3.141592653589793 rad pos: -34.5,-55.5 @@ -118777,7 +119662,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17584 + - uid: 17674 components: - rot: 3.141592653589793 rad pos: -34.5,-54.5 @@ -118785,7 +119670,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17585 + - uid: 17675 components: - rot: 3.141592653589793 rad pos: -34.5,-53.5 @@ -118793,7 +119678,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17586 + - uid: 17676 components: - rot: 3.141592653589793 rad pos: -34.5,-52.5 @@ -118801,7 +119686,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17587 + - uid: 17677 components: - rot: 3.141592653589793 rad pos: -34.5,-51.5 @@ -118809,7 +119694,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17588 + - uid: 17678 components: - rot: 3.141592653589793 rad pos: -34.5,-50.5 @@ -118817,7 +119702,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17589 + - uid: 17679 components: - rot: 3.141592653589793 rad pos: -34.5,-49.5 @@ -118825,7 +119710,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17590 + - uid: 17680 components: - rot: 3.141592653589793 rad pos: -34.5,-48.5 @@ -118833,7 +119718,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17591 + - uid: 17681 components: - rot: 3.141592653589793 rad pos: -34.5,-47.5 @@ -118841,7 +119726,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17592 + - uid: 17682 components: - rot: 3.141592653589793 rad pos: -34.5,-46.5 @@ -118849,7 +119734,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17593 + - uid: 17683 components: - rot: -1.5707963267948966 rad pos: -33.5,-40.5 @@ -118857,14 +119742,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17594 + - uid: 17684 components: - pos: -34.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17595 + - uid: 17685 components: - rot: -1.5707963267948966 rad pos: -34.5,-41.5 @@ -118872,7 +119757,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17596 + - uid: 17686 components: - rot: -1.5707963267948966 rad pos: -33.5,-41.5 @@ -118880,7 +119765,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17597 + - uid: 17687 components: - rot: -1.5707963267948966 rad pos: -32.5,-41.5 @@ -118888,7 +119773,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17598 + - uid: 17688 components: - pos: -38.5,-44.5 parent: 2 @@ -118897,7 +119782,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17599 + - uid: 17689 components: - pos: -38.5,-43.5 parent: 2 @@ -118906,35 +119791,35 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17600 + - uid: 17690 components: - pos: -38.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17601 + - uid: 17691 components: - pos: -38.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17602 + - uid: 17692 components: - pos: -38.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17603 + - uid: 17693 components: - pos: -38.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17604 + - uid: 17694 components: - pos: -38.5,-37.5 parent: 2 @@ -118943,14 +119828,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17605 + - uid: 17695 components: - pos: -38.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17606 + - uid: 17696 components: - rot: -1.5707963267948966 rad pos: -39.5,-35.5 @@ -118958,7 +119843,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17607 + - uid: 17697 components: - rot: -1.5707963267948966 rad pos: -41.5,-34.5 @@ -118968,7 +119853,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17608 + - uid: 17698 components: - rot: -1.5707963267948966 rad pos: -42.5,-34.5 @@ -118976,7 +119861,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17609 + - uid: 17699 components: - rot: 3.141592653589793 rad pos: -41.5,-8.5 @@ -118984,7 +119869,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17610 + - uid: 17700 components: - rot: -1.5707963267948966 rad pos: -23.5,-57.5 @@ -118992,7 +119877,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17611 + - uid: 17701 components: - rot: -1.5707963267948966 rad pos: -22.5,-57.5 @@ -119000,7 +119885,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17612 + - uid: 17702 components: - rot: -1.5707963267948966 rad pos: -20.5,-57.5 @@ -119008,7 +119893,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17613 + - uid: 17703 components: - rot: -1.5707963267948966 rad pos: -21.5,-57.5 @@ -119018,7 +119903,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17614 + - uid: 17704 components: - rot: -1.5707963267948966 rad pos: -19.5,-60.5 @@ -119026,7 +119911,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17615 + - uid: 17705 components: - rot: -1.5707963267948966 rad pos: -19.5,-71.5 @@ -119034,7 +119919,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17616 + - uid: 17706 components: - rot: -1.5707963267948966 rad pos: -20.5,-71.5 @@ -119042,7 +119927,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17617 + - uid: 17707 components: - rot: -1.5707963267948966 rad pos: -21.5,-71.5 @@ -119050,7 +119935,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17618 + - uid: 17708 components: - rot: -1.5707963267948966 rad pos: -22.5,-71.5 @@ -119058,7 +119943,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17619 + - uid: 17709 components: - rot: -1.5707963267948966 rad pos: -23.5,-71.5 @@ -119066,7 +119951,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17620 + - uid: 17710 components: - rot: -1.5707963267948966 rad pos: -24.5,-71.5 @@ -119074,7 +119959,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17621 + - uid: 17711 components: - rot: -1.5707963267948966 rad pos: -25.5,-71.5 @@ -119082,7 +119967,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17622 + - uid: 17712 components: - rot: -1.5707963267948966 rad pos: -26.5,-71.5 @@ -119092,7 +119977,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17623 + - uid: 17713 components: - rot: 3.141592653589793 rad pos: -28.5,-71.5 @@ -119100,7 +119985,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17624 + - uid: 17714 components: - rot: -1.5707963267948966 rad pos: -27.5,-71.5 @@ -119108,7 +119993,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17625 + - uid: 17715 components: - rot: 3.141592653589793 rad pos: -28.5,-70.5 @@ -119116,7 +120001,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17626 + - uid: 17716 components: - rot: -1.5707963267948966 rad pos: -31.5,-71.5 @@ -119124,7 +120009,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17627 + - uid: 17717 components: - rot: -1.5707963267948966 rad pos: -32.5,-71.5 @@ -119134,7 +120019,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17628 + - uid: 17718 components: - rot: -1.5707963267948966 rad pos: -33.5,-71.5 @@ -119144,7 +120029,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17629 + - uid: 17719 components: - rot: -1.5707963267948966 rad pos: -34.5,-71.5 @@ -119152,7 +120037,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17630 + - uid: 17720 components: - rot: -1.5707963267948966 rad pos: -35.5,-71.5 @@ -119162,7 +120047,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17631 + - uid: 17721 components: - rot: -1.5707963267948966 rad pos: -36.5,-71.5 @@ -119172,7 +120057,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17632 + - uid: 17722 components: - rot: -1.5707963267948966 rad pos: -37.5,-71.5 @@ -119182,7 +120067,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17633 + - uid: 17723 components: - rot: -1.5707963267948966 rad pos: -38.5,-71.5 @@ -119190,7 +120075,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17634 + - uid: 17724 components: - rot: -1.5707963267948966 rad pos: -39.5,-71.5 @@ -119200,7 +120085,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17635 + - uid: 17725 components: - rot: -1.5707963267948966 rad pos: -21.5,-69.5 @@ -119208,7 +120093,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17636 + - uid: 17726 components: - rot: -1.5707963267948966 rad pos: -22.5,-69.5 @@ -119216,7 +120101,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17637 + - uid: 17727 components: - rot: -1.5707963267948966 rad pos: -23.5,-69.5 @@ -119224,7 +120109,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17638 + - uid: 17728 components: - rot: -1.5707963267948966 rad pos: -24.5,-69.5 @@ -119232,7 +120117,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17639 + - uid: 17729 components: - rot: -1.5707963267948966 rad pos: -25.5,-69.5 @@ -119240,7 +120125,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17640 + - uid: 17730 components: - rot: -1.5707963267948966 rad pos: -26.5,-69.5 @@ -119250,7 +120135,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17641 + - uid: 17731 components: - rot: -1.5707963267948966 rad pos: -28.5,-71.5 @@ -119258,7 +120143,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17642 + - uid: 17732 components: - rot: -1.5707963267948966 rad pos: -29.5,-69.5 @@ -119266,7 +120151,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17643 + - uid: 17733 components: - rot: -1.5707963267948966 rad pos: -31.5,-69.5 @@ -119274,7 +120159,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17644 + - uid: 17734 components: - rot: -1.5707963267948966 rad pos: -32.5,-69.5 @@ -119282,7 +120167,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17645 + - uid: 17735 components: - rot: -1.5707963267948966 rad pos: -33.5,-69.5 @@ -119290,7 +120175,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17646 + - uid: 17736 components: - rot: -1.5707963267948966 rad pos: -34.5,-69.5 @@ -119298,7 +120183,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17647 + - uid: 17737 components: - rot: -1.5707963267948966 rad pos: -35.5,-69.5 @@ -119308,7 +120193,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17648 + - uid: 17738 components: - rot: -1.5707963267948966 rad pos: -36.5,-69.5 @@ -119318,7 +120203,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17649 + - uid: 17739 components: - rot: -1.5707963267948966 rad pos: -37.5,-69.5 @@ -119328,7 +120213,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17650 + - uid: 17740 components: - rot: -1.5707963267948966 rad pos: -38.5,-69.5 @@ -119338,7 +120223,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17651 + - uid: 17741 components: - rot: -1.5707963267948966 rad pos: -39.5,-69.5 @@ -119348,7 +120233,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17652 + - uid: 17742 components: - rot: -1.5707963267948966 rad pos: -40.5,-69.5 @@ -119358,7 +120243,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17653 + - uid: 17743 components: - rot: -1.5707963267948966 rad pos: -41.5,-69.5 @@ -119366,14 +120251,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17654 + - uid: 17744 components: - pos: -42.5,-70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17655 + - uid: 17745 components: - rot: 1.5707963267948966 rad pos: -22.5,-58.5 @@ -119381,7 +120266,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17656 + - uid: 17746 components: - rot: 1.5707963267948966 rad pos: -21.5,-58.5 @@ -119391,7 +120276,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17657 + - uid: 17747 components: - rot: 3.141592653589793 rad pos: 21.5,-28.5 @@ -119399,14 +120284,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17658 + - uid: 17748 components: - pos: 23.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17659 + - uid: 17749 components: - rot: 1.5707963267948966 rad pos: -35.5,20.5 @@ -119416,7 +120301,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17660 + - uid: 17750 components: - rot: -1.5707963267948966 rad pos: -13.5,39.5 @@ -119424,7 +120309,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17661 + - uid: 17751 components: - rot: -1.5707963267948966 rad pos: -15.5,39.5 @@ -119432,7 +120317,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17662 + - uid: 17752 components: - rot: -1.5707963267948966 rad pos: -14.5,39.5 @@ -119440,7 +120325,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17663 + - uid: 17753 components: - rot: -1.5707963267948966 rad pos: -20.5,23.5 @@ -119448,91 +120333,91 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17664 + - uid: 17754 components: - pos: -20.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17665 + - uid: 17755 components: - pos: -20.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17666 + - uid: 17756 components: - pos: -20.5,17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17667 + - uid: 17757 components: - pos: -20.5,18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17668 + - uid: 17758 components: - pos: -20.5,19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17669 + - uid: 17759 components: - pos: -18.5,13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17670 + - uid: 17760 components: - pos: -18.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17671 + - uid: 17761 components: - pos: -18.5,15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17672 + - uid: 17762 components: - pos: -18.5,16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17673 + - uid: 17763 components: - pos: -18.5,17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17674 + - uid: 17764 components: - pos: -18.5,18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17675 + - uid: 17765 components: - pos: -18.5,20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17676 + - uid: 17766 components: - rot: 3.141592653589793 rad pos: -18.5,21.5 @@ -119540,7 +120425,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17677 + - uid: 17767 components: - rot: -1.5707963267948966 rad pos: -21.5,20.5 @@ -119548,7 +120433,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17678 + - uid: 17768 components: - rot: -1.5707963267948966 rad pos: -22.5,20.5 @@ -119556,7 +120441,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17679 + - uid: 17769 components: - rot: 3.141592653589793 rad pos: -18.5,22.5 @@ -119564,7 +120449,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17680 + - uid: 17770 components: - rot: -1.5707963267948966 rad pos: -19.5,23.5 @@ -119572,7 +120457,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17681 + - uid: 17771 components: - rot: -1.5707963267948966 rad pos: -21.5,23.5 @@ -119582,7 +120467,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17682 + - uid: 17772 components: - rot: -1.5707963267948966 rad pos: -22.5,23.5 @@ -119590,7 +120475,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17683 + - uid: 17773 components: - rot: -1.5707963267948966 rad pos: -23.5,23.5 @@ -119598,7 +120483,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17684 + - uid: 17774 components: - rot: -1.5707963267948966 rad pos: -25.5,23.5 @@ -119606,7 +120491,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17685 + - uid: 17775 components: - rot: -1.5707963267948966 rad pos: -26.5,23.5 @@ -119616,7 +120501,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17686 + - uid: 17776 components: - rot: -1.5707963267948966 rad pos: -27.5,23.5 @@ -119624,7 +120509,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17687 + - uid: 17777 components: - rot: 1.5707963267948966 rad pos: -27.5,20.5 @@ -119634,7 +120519,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17688 + - uid: 17778 components: - rot: 1.5707963267948966 rad pos: -26.5,20.5 @@ -119644,7 +120529,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17689 + - uid: 17779 components: - rot: 1.5707963267948966 rad pos: -25.5,20.5 @@ -119652,7 +120537,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17690 + - uid: 17780 components: - rot: 1.5707963267948966 rad pos: -24.5,20.5 @@ -119660,7 +120545,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17691 + - uid: 17781 components: - rot: 1.5707963267948966 rad pos: -29.5,23.5 @@ -119670,7 +120555,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17692 + - uid: 17782 components: - rot: 1.5707963267948966 rad pos: -30.5,23.5 @@ -119678,7 +120563,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17693 + - uid: 17783 components: - rot: 1.5707963267948966 rad pos: -31.5,23.5 @@ -119686,7 +120571,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17694 + - uid: 17784 components: - rot: 1.5707963267948966 rad pos: -29.5,20.5 @@ -119696,7 +120581,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17695 + - uid: 17785 components: - rot: 1.5707963267948966 rad pos: -30.5,20.5 @@ -119704,7 +120589,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17696 + - uid: 17786 components: - rot: 1.5707963267948966 rad pos: -31.5,20.5 @@ -119712,7 +120597,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17697 + - uid: 17787 components: - rot: 1.5707963267948966 rad pos: -33.5,23.5 @@ -119720,7 +120605,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17698 + - uid: 17788 components: - rot: 1.5707963267948966 rad pos: -34.5,23.5 @@ -119728,7 +120613,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17699 + - uid: 17789 components: - rot: 1.5707963267948966 rad pos: -35.5,23.5 @@ -119738,7 +120623,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17700 + - uid: 17790 components: - rot: 1.5707963267948966 rad pos: -36.5,23.5 @@ -119746,77 +120631,77 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17701 + - uid: 17791 components: - pos: -32.5,24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17702 + - uid: 17792 components: - pos: -32.5,25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17703 + - uid: 17793 components: - pos: -32.5,26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17704 + - uid: 17794 components: - pos: -32.5,27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17705 + - uid: 17795 components: - pos: -33.5,21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17706 + - uid: 17796 components: - pos: -33.5,22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17707 + - uid: 17797 components: - pos: -33.5,23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17708 + - uid: 17798 components: - pos: -33.5,24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17709 + - uid: 17799 components: - pos: -33.5,25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17710 + - uid: 17800 components: - pos: -33.5,26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17711 + - uid: 17801 components: - pos: -33.5,27.5 parent: 2 @@ -119825,7 +120710,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17712 + - uid: 17802 components: - rot: 1.5707963267948966 rad pos: -37.5,23.5 @@ -119833,7 +120718,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17713 + - uid: 17803 components: - rot: 1.5707963267948966 rad pos: -38.5,23.5 @@ -119841,7 +120726,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17714 + - uid: 17804 components: - rot: 1.5707963267948966 rad pos: -39.5,23.5 @@ -119849,7 +120734,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17715 + - uid: 17805 components: - rot: 1.5707963267948966 rad pos: -37.5,20.5 @@ -119857,7 +120742,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17716 + - uid: 17806 components: - rot: 1.5707963267948966 rad pos: -38.5,20.5 @@ -119865,7 +120750,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17717 + - uid: 17807 components: - rot: 1.5707963267948966 rad pos: -39.5,20.5 @@ -119873,7 +120758,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17718 + - uid: 17808 components: - rot: 1.5707963267948966 rad pos: -40.5,20.5 @@ -119881,21 +120766,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17719 + - uid: 17809 components: - pos: -40.5,24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17720 + - uid: 17810 components: - pos: -40.5,25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17721 + - uid: 17811 components: - pos: -40.5,26.5 parent: 2 @@ -119904,63 +120789,63 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17722 + - uid: 17812 components: - pos: -40.5,27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17723 + - uid: 17813 components: - pos: -41.5,21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17724 + - uid: 17814 components: - pos: -41.5,22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17725 + - uid: 17815 components: - pos: -41.5,23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17726 + - uid: 17816 components: - pos: -41.5,24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17727 + - uid: 17817 components: - pos: -41.5,25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17728 + - uid: 17818 components: - pos: -41.5,26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17729 + - uid: 17819 components: - pos: -41.5,27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17730 + - uid: 17820 components: - rot: -1.5707963267948966 rad pos: -12.5,39.5 @@ -119968,49 +120853,49 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17731 + - uid: 17821 components: - pos: -40.5,32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17732 + - uid: 17822 components: - pos: -40.5,31.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17733 + - uid: 17823 components: - pos: -41.5,30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17734 + - uid: 17824 components: - pos: -40.5,29.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17735 + - uid: 17825 components: - pos: -40.5,28.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17736 + - uid: 17826 components: - pos: -41.5,28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17737 + - uid: 17827 components: - rot: -1.5707963267948966 rad pos: -40.5,29.5 @@ -120018,7 +120903,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17738 + - uid: 17828 components: - rot: -1.5707963267948966 rad pos: -39.5,29.5 @@ -120026,7 +120911,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17739 + - uid: 17829 components: - rot: -1.5707963267948966 rad pos: -38.5,29.5 @@ -120034,7 +120919,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17740 + - uid: 17830 components: - rot: -1.5707963267948966 rad pos: -39.5,30.5 @@ -120044,7 +120929,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17741 + - uid: 17831 components: - rot: -1.5707963267948966 rad pos: -38.5,30.5 @@ -120052,7 +120937,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17742 + - uid: 17832 components: - rot: -1.5707963267948966 rad pos: -41.5,33.5 @@ -120060,7 +120945,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17743 + - uid: 17833 components: - rot: -1.5707963267948966 rad pos: -42.5,33.5 @@ -120068,7 +120953,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17744 + - uid: 17834 components: - rot: -1.5707963267948966 rad pos: -43.5,33.5 @@ -120076,7 +120961,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17745 + - uid: 17835 components: - rot: -1.5707963267948966 rad pos: -42.5,31.5 @@ -120084,7 +120969,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17746 + - uid: 17836 components: - rot: -1.5707963267948966 rad pos: -43.5,31.5 @@ -120092,7 +120977,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17747 + - uid: 17837 components: - pos: -49.5,32.5 parent: 2 @@ -120101,7 +120986,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17748 + - uid: 17838 components: - rot: 1.5707963267948966 rad pos: -48.5,33.5 @@ -120109,7 +120994,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17749 + - uid: 17839 components: - rot: 1.5707963267948966 rad pos: -47.5,33.5 @@ -120117,7 +121002,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17750 + - uid: 17840 components: - rot: 1.5707963267948966 rad pos: -46.5,33.5 @@ -120125,7 +121010,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17751 + - uid: 17841 components: - rot: 1.5707963267948966 rad pos: -45.5,31.5 @@ -120133,7 +121018,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17752 + - uid: 17842 components: - rot: -1.5707963267948966 rad pos: -21.5,13.5 @@ -120143,7 +121028,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17753 + - uid: 17843 components: - rot: -1.5707963267948966 rad pos: -22.5,13.5 @@ -120151,7 +121036,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17754 + - uid: 17844 components: - rot: -1.5707963267948966 rad pos: -23.5,13.5 @@ -120159,7 +121044,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17755 + - uid: 17845 components: - rot: -1.5707963267948966 rad pos: -24.5,13.5 @@ -120167,7 +121052,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17756 + - uid: 17846 components: - rot: -1.5707963267948966 rad pos: -19.5,12.5 @@ -120175,7 +121060,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17757 + - uid: 17847 components: - rot: -1.5707963267948966 rad pos: -20.5,12.5 @@ -120183,7 +121068,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17758 + - uid: 17848 components: - rot: -1.5707963267948966 rad pos: -21.5,12.5 @@ -120193,7 +121078,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17759 + - uid: 17849 components: - rot: -1.5707963267948966 rad pos: -22.5,12.5 @@ -120201,7 +121086,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17760 + - uid: 17850 components: - rot: -1.5707963267948966 rad pos: -23.5,12.5 @@ -120209,7 +121094,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17761 + - uid: 17851 components: - rot: -1.5707963267948966 rad pos: -24.5,12.5 @@ -120217,7 +121102,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17762 + - uid: 17852 components: - rot: -1.5707963267948966 rad pos: -25.5,12.5 @@ -120225,7 +121110,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17763 + - uid: 17853 components: - pos: 71.5,-30.5 parent: 2 @@ -120234,7 +121119,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17764 + - uid: 17854 components: - rot: -1.5707963267948966 rad pos: -27.5,1.5 @@ -120242,7 +121127,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17765 + - uid: 17855 components: - rot: -1.5707963267948966 rad pos: -29.5,1.5 @@ -120250,7 +121135,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17766 + - uid: 17856 components: - rot: -1.5707963267948966 rad pos: -30.5,1.5 @@ -120258,7 +121143,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17767 + - uid: 17857 components: - rot: -1.5707963267948966 rad pos: -31.5,1.5 @@ -120266,7 +121151,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17768 + - uid: 17858 components: - rot: -1.5707963267948966 rad pos: -32.5,1.5 @@ -120274,7 +121159,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17769 + - uid: 17859 components: - rot: -1.5707963267948966 rad pos: -33.5,1.5 @@ -120282,7 +121167,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17770 + - uid: 17860 components: - rot: -1.5707963267948966 rad pos: -34.5,1.5 @@ -120290,7 +121175,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17771 + - uid: 17861 components: - rot: -1.5707963267948966 rad pos: -35.5,1.5 @@ -120298,7 +121183,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17772 + - uid: 17862 components: - rot: -1.5707963267948966 rad pos: -36.5,1.5 @@ -120306,7 +121191,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17773 + - uid: 17863 components: - rot: -1.5707963267948966 rad pos: -25.5,0.5 @@ -120314,7 +121199,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17774 + - uid: 17864 components: - rot: -1.5707963267948966 rad pos: -26.5,0.5 @@ -120322,7 +121207,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17775 + - uid: 17865 components: - rot: -1.5707963267948966 rad pos: -27.5,0.5 @@ -120330,7 +121215,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17776 + - uid: 17866 components: - rot: -1.5707963267948966 rad pos: -28.5,0.5 @@ -120338,7 +121223,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17777 + - uid: 17867 components: - rot: -1.5707963267948966 rad pos: -30.5,0.5 @@ -120346,7 +121231,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17778 + - uid: 17868 components: - rot: -1.5707963267948966 rad pos: -31.5,0.5 @@ -120354,7 +121239,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17779 + - uid: 17869 components: - rot: -1.5707963267948966 rad pos: -32.5,0.5 @@ -120362,7 +121247,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17780 + - uid: 17870 components: - rot: -1.5707963267948966 rad pos: -33.5,0.5 @@ -120370,7 +121255,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17781 + - uid: 17871 components: - rot: -1.5707963267948966 rad pos: -34.5,0.5 @@ -120378,7 +121263,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17782 + - uid: 17872 components: - rot: -1.5707963267948966 rad pos: -35.5,0.5 @@ -120386,7 +121271,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17783 + - uid: 17873 components: - rot: -1.5707963267948966 rad pos: -36.5,0.5 @@ -120394,7 +121279,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17784 + - uid: 17874 components: - rot: -1.5707963267948966 rad pos: -37.5,0.5 @@ -120402,21 +121287,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17785 + - uid: 17875 components: - pos: -28.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17786 + - uid: 17876 components: - pos: -28.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17787 + - uid: 17877 components: - pos: -28.5,-1.5 parent: 2 @@ -120425,35 +121310,35 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17788 + - uid: 17878 components: - pos: -28.5,-2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17789 + - uid: 17879 components: - pos: -29.5,-0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17790 + - uid: 17880 components: - pos: -29.5,-1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17791 + - uid: 17881 components: - pos: -29.5,-2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17792 + - uid: 17882 components: - rot: 3.141592653589793 rad pos: -37.5,2.5 @@ -120461,7 +121346,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17793 + - uid: 17883 components: - rot: 3.141592653589793 rad pos: -37.5,3.5 @@ -120469,7 +121354,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17794 + - uid: 17884 components: - rot: 3.141592653589793 rad pos: -37.5,4.5 @@ -120477,7 +121362,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17795 + - uid: 17885 components: - rot: 3.141592653589793 rad pos: -37.5,6.5 @@ -120485,7 +121370,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17796 + - uid: 17886 components: - rot: 3.141592653589793 rad pos: -37.5,7.5 @@ -120493,7 +121378,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17797 + - uid: 17887 components: - rot: 3.141592653589793 rad pos: -38.5,1.5 @@ -120501,7 +121386,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17798 + - uid: 17888 components: - rot: 3.141592653589793 rad pos: -38.5,2.5 @@ -120509,7 +121394,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17799 + - uid: 17889 components: - rot: 3.141592653589793 rad pos: -38.5,4.5 @@ -120517,7 +121402,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17800 + - uid: 17890 components: - rot: 3.141592653589793 rad pos: -38.5,5.5 @@ -120525,7 +121410,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17801 + - uid: 17891 components: - rot: 3.141592653589793 rad pos: -38.5,6.5 @@ -120533,7 +121418,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17802 + - uid: 17892 components: - rot: 3.141592653589793 rad pos: -38.5,7.5 @@ -120541,7 +121426,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17803 + - uid: 17893 components: - rot: 3.141592653589793 rad pos: -37.5,9.5 @@ -120549,7 +121434,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17804 + - uid: 17894 components: - rot: 3.141592653589793 rad pos: -37.5,10.5 @@ -120557,7 +121442,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17805 + - uid: 17895 components: - rot: 3.141592653589793 rad pos: -37.5,11.5 @@ -120565,7 +121450,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17806 + - uid: 17896 components: - rot: 3.141592653589793 rad pos: -37.5,12.5 @@ -120573,7 +121458,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17807 + - uid: 17897 components: - rot: 3.141592653589793 rad pos: -38.5,9.5 @@ -120581,7 +121466,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17808 + - uid: 17898 components: - rot: 3.141592653589793 rad pos: -38.5,10.5 @@ -120589,7 +121474,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17809 + - uid: 17899 components: - rot: 3.141592653589793 rad pos: -38.5,11.5 @@ -120597,7 +121482,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17810 + - uid: 17900 components: - rot: 3.141592653589793 rad pos: -38.5,12.5 @@ -120605,14 +121490,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17811 + - uid: 17901 components: - pos: -38.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17812 + - uid: 17902 components: - rot: 1.5707963267948966 rad pos: -37.5,14.5 @@ -120620,7 +121505,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17813 + - uid: 17903 components: - rot: 1.5707963267948966 rad pos: -36.5,14.5 @@ -120628,7 +121513,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17814 + - uid: 17904 components: - rot: 1.5707963267948966 rad pos: -35.5,14.5 @@ -120636,7 +121521,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17815 + - uid: 17905 components: - rot: 1.5707963267948966 rad pos: -34.5,14.5 @@ -120644,7 +121529,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17816 + - uid: 17906 components: - rot: 1.5707963267948966 rad pos: -33.5,14.5 @@ -120652,7 +121537,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17817 + - uid: 17907 components: - rot: 1.5707963267948966 rad pos: -32.5,14.5 @@ -120660,7 +121545,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17818 + - uid: 17908 components: - rot: 1.5707963267948966 rad pos: -31.5,14.5 @@ -120668,7 +121553,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17819 + - uid: 17909 components: - rot: 1.5707963267948966 rad pos: -36.5,13.5 @@ -120676,7 +121561,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17820 + - uid: 17910 components: - rot: 1.5707963267948966 rad pos: -35.5,13.5 @@ -120684,7 +121569,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17821 + - uid: 17911 components: - rot: 1.5707963267948966 rad pos: -34.5,13.5 @@ -120692,7 +121577,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17822 + - uid: 17912 components: - rot: 1.5707963267948966 rad pos: -33.5,13.5 @@ -120700,7 +121585,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17823 + - uid: 17913 components: - rot: 1.5707963267948966 rad pos: -32.5,13.5 @@ -120710,7 +121595,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17824 + - uid: 17914 components: - rot: 1.5707963267948966 rad pos: -31.5,13.5 @@ -120718,7 +121603,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17825 + - uid: 17915 components: - rot: -1.5707963267948966 rad pos: -38.5,1.5 @@ -120726,7 +121611,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17826 + - uid: 17916 components: - rot: -1.5707963267948966 rad pos: -39.5,1.5 @@ -120734,7 +121619,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17827 + - uid: 17917 components: - rot: -1.5707963267948966 rad pos: -40.5,1.5 @@ -120742,7 +121627,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17828 + - uid: 17918 components: - rot: -1.5707963267948966 rad pos: -40.5,0.5 @@ -120750,7 +121635,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17829 + - uid: 17919 components: - rot: -1.5707963267948966 rad pos: -41.5,0.5 @@ -120758,7 +121643,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17830 + - uid: 17920 components: - rot: -1.5707963267948966 rad pos: -42.5,0.5 @@ -120766,7 +121651,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17831 + - uid: 17921 components: - rot: -1.5707963267948966 rad pos: -43.5,0.5 @@ -120774,7 +121659,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17832 + - uid: 17922 components: - rot: -1.5707963267948966 rad pos: -42.5,1.5 @@ -120782,7 +121667,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17833 + - uid: 17923 components: - rot: -1.5707963267948966 rad pos: -43.5,1.5 @@ -120790,7 +121675,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17834 + - uid: 17924 components: - rot: -1.5707963267948966 rad pos: -30.5,13.5 @@ -120798,7 +121683,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17835 + - uid: 17925 components: - rot: 3.141592653589793 rad pos: -30.5,13.5 @@ -120806,7 +121691,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17836 + - uid: 17926 components: - rot: 3.141592653589793 rad pos: -30.5,12.5 @@ -120814,7 +121699,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17837 + - uid: 17927 components: - rot: 3.141592653589793 rad pos: -30.5,11.5 @@ -120822,7 +121707,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17838 + - uid: 17928 components: - rot: 3.141592653589793 rad pos: -30.5,10.5 @@ -120830,7 +121715,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17839 + - uid: 17929 components: - rot: 3.141592653589793 rad pos: -29.5,12.5 @@ -120838,7 +121723,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17840 + - uid: 17930 components: - rot: 3.141592653589793 rad pos: -29.5,11.5 @@ -120848,7 +121733,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17841 + - uid: 17931 components: - rot: 3.141592653589793 rad pos: -29.5,10.5 @@ -120856,7 +121741,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17842 + - uid: 17932 components: - rot: 3.141592653589793 rad pos: -29.5,14.5 @@ -120864,7 +121749,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17843 + - uid: 17933 components: - rot: -1.5707963267948966 rad pos: -44.5,1.5 @@ -120872,7 +121757,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17844 + - uid: 17934 components: - rot: -1.5707963267948966 rad pos: -44.5,0.5 @@ -120880,7 +121765,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17845 + - uid: 17935 components: - rot: -1.5707963267948966 rad pos: -45.5,0.5 @@ -120888,7 +121773,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17846 + - uid: 17936 components: - rot: -1.5707963267948966 rad pos: -46.5,0.5 @@ -120896,49 +121781,49 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17847 + - uid: 17937 components: - pos: -45.5,2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17848 + - uid: 17938 components: - pos: -45.5,3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17849 + - uid: 17939 components: - pos: -45.5,4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17850 + - uid: 17940 components: - pos: -45.5,5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17851 + - uid: 17941 components: - pos: -47.5,1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17852 + - uid: 17942 components: - pos: -47.5,2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17853 + - uid: 17943 components: - rot: 3.141592653589793 rad pos: -47.5,4.5 @@ -120946,7 +121831,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17854 + - uid: 17944 components: - rot: 3.141592653589793 rad pos: -47.5,5.5 @@ -120954,7 +121839,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17855 + - uid: 17945 components: - rot: 3.141592653589793 rad pos: -47.5,6.5 @@ -120962,7 +121847,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17856 + - uid: 17946 components: - rot: 3.141592653589793 rad pos: -47.5,7.5 @@ -120970,7 +121855,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17857 + - uid: 17947 components: - rot: 3.141592653589793 rad pos: -47.5,8.5 @@ -120978,7 +121863,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17858 + - uid: 17948 components: - rot: 3.141592653589793 rad pos: -47.5,9.5 @@ -120988,7 +121873,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17859 + - uid: 17949 components: - rot: -1.5707963267948966 rad pos: -48.5,10.5 @@ -120996,7 +121881,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17860 + - uid: 17950 components: - rot: 3.141592653589793 rad pos: -46.5,11.5 @@ -121004,7 +121889,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17861 + - uid: 17951 components: - rot: 3.141592653589793 rad pos: -46.5,12.5 @@ -121012,7 +121897,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17862 + - uid: 17952 components: - rot: 3.141592653589793 rad pos: -46.5,13.5 @@ -121022,7 +121907,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17863 + - uid: 17953 components: - rot: 1.5707963267948966 rad pos: -49.5,10.5 @@ -121030,7 +121915,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17864 + - uid: 17954 components: - rot: 1.5707963267948966 rad pos: -50.5,10.5 @@ -121038,14 +121923,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17865 + - uid: 17955 components: - pos: -52.5,11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17866 + - uid: 17956 components: - pos: -52.5,12.5 parent: 2 @@ -121054,28 +121939,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17867 + - uid: 17957 components: - pos: -52.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17868 + - uid: 17958 components: - pos: -52.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17869 + - uid: 17959 components: - pos: -52.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17870 + - uid: 17960 components: - rot: -1.5707963267948966 rad pos: -45.5,10.5 @@ -121083,7 +121968,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17871 + - uid: 17961 components: - rot: -1.5707963267948966 rad pos: -44.5,10.5 @@ -121093,7 +121978,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17872 + - uid: 17962 components: - rot: -1.5707963267948966 rad pos: -43.5,10.5 @@ -121101,7 +121986,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17873 + - uid: 17963 components: - rot: 1.5707963267948966 rad pos: -46.5,7.5 @@ -121109,7 +121994,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17874 + - uid: 17964 components: - rot: 1.5707963267948966 rad pos: -47.5,7.5 @@ -121117,7 +122002,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17875 + - uid: 17965 components: - rot: 1.5707963267948966 rad pos: -48.5,7.5 @@ -121125,7 +122010,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17876 + - uid: 17966 components: - rot: 1.5707963267948966 rad pos: -49.5,7.5 @@ -121133,7 +122018,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17877 + - uid: 17967 components: - rot: 1.5707963267948966 rad pos: -50.5,7.5 @@ -121143,28 +122028,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17878 + - uid: 17968 components: - pos: -45.5,8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17879 + - uid: 17969 components: - pos: -45.5,9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17880 + - uid: 17970 components: - pos: -45.5,10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17881 + - uid: 17971 components: - rot: 3.141592653589793 rad pos: -45.5,12.5 @@ -121172,7 +122057,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17882 + - uid: 17972 components: - rot: 3.141592653589793 rad pos: -45.5,13.5 @@ -121180,7 +122065,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17883 + - uid: 17973 components: - rot: 1.5707963267948966 rad pos: -44.5,11.5 @@ -121188,7 +122073,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17884 + - uid: 17974 components: - rot: 1.5707963267948966 rad pos: -46.5,11.5 @@ -121196,7 +122081,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17885 + - uid: 17975 components: - rot: 1.5707963267948966 rad pos: -47.5,11.5 @@ -121204,7 +122089,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17886 + - uid: 17976 components: - rot: 1.5707963267948966 rad pos: -48.5,11.5 @@ -121212,7 +122097,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17887 + - uid: 17977 components: - rot: -1.5707963267948966 rad pos: -49.5,11.5 @@ -121220,7 +122105,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17888 + - uid: 17978 components: - rot: 1.5707963267948966 rad pos: -50.5,11.5 @@ -121228,7 +122113,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17889 + - uid: 17979 components: - rot: 3.141592653589793 rad pos: -51.5,12.5 @@ -121236,7 +122121,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17890 + - uid: 17980 components: - rot: 3.141592653589793 rad pos: -51.5,13.5 @@ -121244,14 +122129,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17891 + - uid: 17981 components: - pos: -46.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17892 + - uid: 17982 components: - rot: 3.141592653589793 rad pos: -18.5,25.5 @@ -121259,7 +122144,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17893 + - uid: 17983 components: - rot: 3.141592653589793 rad pos: -20.5,21.5 @@ -121267,7 +122152,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17894 + - uid: 17984 components: - rot: 3.141592653589793 rad pos: -20.5,22.5 @@ -121275,7 +122160,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17895 + - uid: 17985 components: - rot: 3.141592653589793 rad pos: -20.5,23.5 @@ -121283,7 +122168,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17896 + - uid: 17986 components: - rot: 3.141592653589793 rad pos: -20.5,24.5 @@ -121291,7 +122176,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17897 + - uid: 17987 components: - rot: 1.5707963267948966 rad pos: 37.5,-72.5 @@ -121299,7 +122184,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17898 + - uid: 17988 components: - rot: 1.5707963267948966 rad pos: 22.5,-54.5 @@ -121307,7 +122192,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17899 + - uid: 17989 components: - rot: 1.5707963267948966 rad pos: 25.5,-53.5 @@ -121315,7 +122200,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17900 + - uid: 17990 components: - rot: 1.5707963267948966 rad pos: 24.5,-53.5 @@ -121323,7 +122208,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17901 + - uid: 17991 components: - rot: 1.5707963267948966 rad pos: 23.5,-53.5 @@ -121331,7 +122216,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17902 + - uid: 17992 components: - rot: 1.5707963267948966 rad pos: 22.5,-53.5 @@ -121341,7 +122226,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17903 + - uid: 17993 components: - rot: 1.5707963267948966 rad pos: 21.5,-53.5 @@ -121351,7 +122236,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17904 + - uid: 17994 components: - rot: 1.5707963267948966 rad pos: 20.5,-53.5 @@ -121359,7 +122244,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17905 + - uid: 17995 components: - rot: -1.5707963267948966 rad pos: -43.5,-71.5 @@ -121369,7 +122254,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17906 + - uid: 17996 components: - rot: -1.5707963267948966 rad pos: -44.5,-71.5 @@ -121379,35 +122264,35 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17907 + - uid: 17997 components: - pos: -45.5,-72.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17908 + - uid: 17998 components: - pos: -45.5,-73.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17909 + - uid: 17999 components: - pos: -45.5,-74.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17910 + - uid: 18000 components: - pos: -45.5,-75.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17911 + - uid: 18001 components: - rot: -1.5707963267948966 rad pos: -46.5,-76.5 @@ -121417,7 +122302,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17912 + - uid: 18002 components: - rot: -1.5707963267948966 rad pos: -47.5,-76.5 @@ -121425,7 +122310,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17913 + - uid: 18003 components: - rot: -1.5707963267948966 rad pos: -48.5,-76.5 @@ -121433,7 +122318,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17914 + - uid: 18004 components: - rot: -1.5707963267948966 rad pos: -49.5,-76.5 @@ -121441,7 +122326,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17915 + - uid: 18005 components: - rot: -1.5707963267948966 rad pos: -50.5,-76.5 @@ -121449,7 +122334,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17916 + - uid: 18006 components: - rot: -1.5707963267948966 rad pos: -51.5,-76.5 @@ -121457,7 +122342,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17917 + - uid: 18007 components: - rot: -1.5707963267948966 rad pos: -52.5,-76.5 @@ -121465,7 +122350,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17918 + - uid: 18008 components: - rot: -1.5707963267948966 rad pos: -53.5,-76.5 @@ -121473,7 +122358,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17919 + - uid: 18009 components: - rot: -1.5707963267948966 rad pos: -41.5,-72.5 @@ -121481,7 +122366,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17920 + - uid: 18010 components: - rot: -1.5707963267948966 rad pos: -42.5,-72.5 @@ -121489,7 +122374,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17921 + - uid: 18011 components: - rot: -1.5707963267948966 rad pos: -43.5,-72.5 @@ -121497,7 +122382,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17922 + - uid: 18012 components: - rot: -1.5707963267948966 rad pos: -44.5,-72.5 @@ -121505,7 +122390,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17923 + - uid: 18013 components: - rot: -1.5707963267948966 rad pos: -45.5,-72.5 @@ -121513,7 +122398,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17924 + - uid: 18014 components: - rot: 3.141592653589793 rad pos: -46.5,-73.5 @@ -121521,7 +122406,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17925 + - uid: 18015 components: - rot: 3.141592653589793 rad pos: -46.5,-74.5 @@ -121529,7 +122414,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17926 + - uid: 18016 components: - rot: 1.5707963267948966 rad pos: -47.5,-75.5 @@ -121537,7 +122422,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17927 + - uid: 18017 components: - rot: 1.5707963267948966 rad pos: -48.5,-75.5 @@ -121547,7 +122432,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17928 + - uid: 18018 components: - rot: 1.5707963267948966 rad pos: -49.5,-75.5 @@ -121557,7 +122442,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17929 + - uid: 18019 components: - rot: 1.5707963267948966 rad pos: -50.5,-75.5 @@ -121567,7 +122452,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17930 + - uid: 18020 components: - rot: 1.5707963267948966 rad pos: -51.5,-75.5 @@ -121575,7 +122460,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17931 + - uid: 18021 components: - rot: 1.5707963267948966 rad pos: -52.5,-75.5 @@ -121583,7 +122468,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17932 + - uid: 18022 components: - rot: 1.5707963267948966 rad pos: -53.5,-75.5 @@ -121593,7 +122478,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17933 + - uid: 18023 components: - rot: 1.5707963267948966 rad pos: -18.5,-41.5 @@ -121601,7 +122486,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17934 + - uid: 18024 components: - rot: 1.5707963267948966 rad pos: -17.5,-41.5 @@ -121609,7 +122494,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17935 + - uid: 18025 components: - rot: 1.5707963267948966 rad pos: -16.5,-41.5 @@ -121617,21 +122502,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17936 + - uid: 18026 components: - pos: -15.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17937 + - uid: 18027 components: - pos: -19.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17938 + - uid: 18028 components: - rot: 3.141592653589793 rad pos: 1.5,12.5 @@ -121639,7 +122524,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17939 + - uid: 18029 components: - rot: 3.141592653589793 rad pos: 1.5,13.5 @@ -121647,7 +122532,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17940 + - uid: 18030 components: - rot: 3.141592653589793 rad pos: 1.5,14.5 @@ -121655,7 +122540,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17941 + - uid: 18031 components: - rot: 3.141592653589793 rad pos: 1.5,15.5 @@ -121665,7 +122550,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17942 + - uid: 18032 components: - rot: 3.141592653589793 rad pos: 1.5,16.5 @@ -121673,7 +122558,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17943 + - uid: 18033 components: - rot: 3.141592653589793 rad pos: 1.5,17.5 @@ -121681,7 +122566,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17944 + - uid: 18034 components: - rot: 3.141592653589793 rad pos: 1.5,18.5 @@ -121689,7 +122574,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17945 + - uid: 18035 components: - rot: 3.141592653589793 rad pos: 1.5,19.5 @@ -121697,7 +122582,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17946 + - uid: 18036 components: - rot: 3.141592653589793 rad pos: 1.5,20.5 @@ -121705,7 +122590,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17947 + - uid: 18037 components: - rot: 3.141592653589793 rad pos: 1.5,21.5 @@ -121713,7 +122598,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17948 + - uid: 18038 components: - rot: 3.141592653589793 rad pos: 1.5,22.5 @@ -121723,7 +122608,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17949 + - uid: 18039 components: - rot: 3.141592653589793 rad pos: 1.5,23.5 @@ -121731,7 +122616,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17950 + - uid: 18040 components: - rot: 3.141592653589793 rad pos: 1.5,24.5 @@ -121741,7 +122626,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17951 + - uid: 18041 components: - rot: 3.141592653589793 rad pos: 1.5,25.5 @@ -121751,7 +122636,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17952 + - uid: 18042 components: - rot: -1.5707963267948966 rad pos: 28.5,1.5 @@ -121759,14 +122644,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17953 + - uid: 18043 components: - pos: -20.5,-59.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17954 + - uid: 18044 components: - rot: -1.5707963267948966 rad pos: -69.5,-23.5 @@ -121774,7 +122659,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17955 + - uid: 18045 components: - rot: -1.5707963267948966 rad pos: -70.5,-23.5 @@ -121782,7 +122667,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17956 + - uid: 18046 components: - rot: -1.5707963267948966 rad pos: -71.5,-23.5 @@ -121790,7 +122675,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17957 + - uid: 18047 components: - rot: -1.5707963267948966 rad pos: -65.5,-25.5 @@ -121800,7 +122685,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17958 + - uid: 18048 components: - rot: -1.5707963267948966 rad pos: -66.5,-25.5 @@ -121810,7 +122695,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17959 + - uid: 18049 components: - rot: -1.5707963267948966 rad pos: -67.5,-25.5 @@ -121820,7 +122705,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17960 + - uid: 18050 components: - rot: -1.5707963267948966 rad pos: -68.5,-25.5 @@ -121828,7 +122713,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17961 + - uid: 18051 components: - rot: -1.5707963267948966 rad pos: -69.5,-25.5 @@ -121838,7 +122723,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17962 + - uid: 18052 components: - rot: -1.5707963267948966 rad pos: -70.5,-25.5 @@ -121846,7 +122731,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17963 + - uid: 18053 components: - rot: 1.5707963267948966 rad pos: 18.5,-30.5 @@ -121854,7 +122739,9 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17964 + - enabled: True + type: AmbientSound + - uid: 18054 components: - rot: 3.141592653589793 rad pos: -23.5,-61.5 @@ -121862,7 +122749,7 @@ entities: type: Transform - color: '#97C3FCCC' type: AtmosPipeColor - - uid: 17965 + - uid: 18055 components: - rot: 3.141592653589793 rad pos: 30.5,-83.5 @@ -121870,7 +122757,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17966 + - uid: 18056 components: - rot: 3.141592653589793 rad pos: 25.5,-58.5 @@ -121878,7 +122765,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17967 + - uid: 18057 components: - rot: 3.141592653589793 rad pos: 25.5,-57.5 @@ -121886,7 +122773,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17968 + - uid: 18058 components: - rot: 3.141592653589793 rad pos: 47.5,-80.5 @@ -121894,7 +122781,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17969 + - uid: 18059 components: - rot: 3.141592653589793 rad pos: 42.5,5.5 @@ -121902,7 +122789,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17970 + - uid: 18060 components: - rot: 3.141592653589793 rad pos: 42.5,2.5 @@ -121910,7 +122797,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17971 + - uid: 18061 components: - rot: 3.141592653589793 rad pos: 42.5,4.5 @@ -121918,7 +122805,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17972 + - uid: 18062 components: - rot: 3.141592653589793 rad pos: 42.5,3.5 @@ -121926,7 +122813,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17973 + - uid: 18063 components: - rot: -1.5707963267948966 rad pos: 25.5,-42.5 @@ -121934,7 +122821,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17974 + - uid: 18064 components: - rot: 3.141592653589793 rad pos: 45.5,21.5 @@ -121942,7 +122829,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17975 + - uid: 18065 components: - rot: 3.141592653589793 rad pos: 45.5,22.5 @@ -121952,7 +122839,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17976 + - uid: 18066 components: - rot: 3.141592653589793 rad pos: 45.5,23.5 @@ -121962,7 +122849,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17977 + - uid: 18067 components: - rot: 3.141592653589793 rad pos: 45.5,24.5 @@ -121972,7 +122859,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17978 + - uid: 18068 components: - rot: 3.141592653589793 rad pos: 45.5,25.5 @@ -121982,7 +122869,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17979 + - uid: 18069 components: - rot: 3.141592653589793 rad pos: 45.5,26.5 @@ -121990,7 +122877,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17980 + - uid: 18070 components: - rot: 3.141592653589793 rad pos: 44.5,21.5 @@ -121998,7 +122885,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17981 + - uid: 18071 components: - rot: 3.141592653589793 rad pos: 44.5,22.5 @@ -122008,7 +122895,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17982 + - uid: 18072 components: - rot: 3.141592653589793 rad pos: 44.5,23.5 @@ -122018,7 +122905,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17983 + - uid: 18073 components: - rot: 3.141592653589793 rad pos: 44.5,24.5 @@ -122026,7 +122913,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17984 + - uid: 18074 components: - rot: 3.141592653589793 rad pos: 44.5,25.5 @@ -122034,7 +122921,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17985 + - uid: 18075 components: - rot: 3.141592653589793 rad pos: 44.5,20.5 @@ -122042,7 +122929,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17986 + - uid: 18076 components: - rot: 1.5707963267948966 rad pos: 46.5,27.5 @@ -122052,7 +122939,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17987 + - uid: 18077 components: - rot: 1.5707963267948966 rad pos: 47.5,27.5 @@ -122062,7 +122949,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17988 + - uid: 18078 components: - rot: 1.5707963267948966 rad pos: 45.5,26.5 @@ -122070,7 +122957,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17989 + - uid: 18079 components: - rot: 1.5707963267948966 rad pos: 46.5,26.5 @@ -122078,7 +122965,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17990 + - uid: 18080 components: - rot: 1.5707963267948966 rad pos: 47.5,26.5 @@ -122086,7 +122973,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17991 + - uid: 18081 components: - rot: 1.5707963267948966 rad pos: 48.5,26.5 @@ -122094,7 +122981,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17992 + - uid: 18082 components: - rot: 1.5707963267948966 rad pos: 49.5,26.5 @@ -122102,7 +122989,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17993 + - uid: 18083 components: - rot: 1.5707963267948966 rad pos: 50.5,26.5 @@ -122110,7 +122997,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17994 + - uid: 18084 components: - rot: 1.5707963267948966 rad pos: 51.5,26.5 @@ -122118,7 +123005,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17995 + - uid: 18085 components: - rot: 1.5707963267948966 rad pos: 52.5,26.5 @@ -122126,7 +123013,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17996 + - uid: 18086 components: - rot: 1.5707963267948966 rad pos: 53.5,26.5 @@ -122134,7 +123021,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17997 + - uid: 18087 components: - rot: 1.5707963267948966 rad pos: 48.5,27.5 @@ -122142,7 +123029,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17998 + - uid: 18088 components: - rot: 1.5707963267948966 rad pos: 49.5,27.5 @@ -122152,7 +123039,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17999 + - uid: 18089 components: - rot: 1.5707963267948966 rad pos: 50.5,27.5 @@ -122162,7 +123049,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18000 + - uid: 18090 components: - rot: 1.5707963267948966 rad pos: 51.5,27.5 @@ -122172,7 +123059,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18001 + - uid: 18091 components: - rot: 3.141592653589793 rad pos: 52.5,28.5 @@ -122180,7 +123067,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18002 + - uid: 18092 components: - rot: 3.141592653589793 rad pos: 52.5,29.5 @@ -122188,7 +123075,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18003 + - uid: 18093 components: - rot: 3.141592653589793 rad pos: 52.5,30.5 @@ -122198,7 +123085,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18004 + - uid: 18094 components: - rot: 3.141592653589793 rad pos: 52.5,31.5 @@ -122208,7 +123095,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18005 + - uid: 18095 components: - rot: 3.141592653589793 rad pos: 52.5,32.5 @@ -122218,7 +123105,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18006 + - uid: 18096 components: - rot: 3.141592653589793 rad pos: 52.5,33.5 @@ -122228,7 +123115,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18007 + - uid: 18097 components: - rot: 3.141592653589793 rad pos: 52.5,34.5 @@ -122236,7 +123123,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18008 + - uid: 18098 components: - rot: 3.141592653589793 rad pos: 52.5,35.5 @@ -122244,7 +123131,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18009 + - uid: 18099 components: - rot: 3.141592653589793 rad pos: 52.5,36.5 @@ -122252,7 +123139,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18010 + - uid: 18100 components: - rot: 3.141592653589793 rad pos: 52.5,37.5 @@ -122260,7 +123147,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18011 + - uid: 18101 components: - rot: 3.141592653589793 rad pos: 52.5,38.5 @@ -122270,7 +123157,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18012 + - uid: 18102 components: - rot: 3.141592653589793 rad pos: 52.5,39.5 @@ -122278,7 +123165,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18013 + - uid: 18103 components: - rot: 3.141592653589793 rad pos: 52.5,40.5 @@ -122286,7 +123173,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18014 + - uid: 18104 components: - rot: 3.141592653589793 rad pos: 52.5,41.5 @@ -122296,7 +123183,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18015 + - uid: 18105 components: - rot: 3.141592653589793 rad pos: 52.5,42.5 @@ -122304,7 +123191,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18016 + - uid: 18106 components: - rot: 3.141592653589793 rad pos: 54.5,27.5 @@ -122312,7 +123199,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18017 + - uid: 18107 components: - rot: 3.141592653589793 rad pos: 54.5,28.5 @@ -122320,7 +123207,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18018 + - uid: 18108 components: - rot: 3.141592653589793 rad pos: 54.5,29.5 @@ -122328,7 +123215,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18019 + - uid: 18109 components: - rot: 3.141592653589793 rad pos: 54.5,30.5 @@ -122338,7 +123225,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18020 + - uid: 18110 components: - rot: 3.141592653589793 rad pos: 54.5,31.5 @@ -122346,7 +123233,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18021 + - uid: 18111 components: - rot: 3.141592653589793 rad pos: 54.5,32.5 @@ -122354,7 +123241,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18022 + - uid: 18112 components: - rot: 3.141592653589793 rad pos: 54.5,33.5 @@ -122362,7 +123249,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18023 + - uid: 18113 components: - rot: 3.141592653589793 rad pos: 54.5,34.5 @@ -122372,7 +123259,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18024 + - uid: 18114 components: - rot: 3.141592653589793 rad pos: 54.5,35.5 @@ -122380,7 +123267,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18025 + - uid: 18115 components: - rot: 3.141592653589793 rad pos: 54.5,36.5 @@ -122388,7 +123275,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18026 + - uid: 18116 components: - rot: 3.141592653589793 rad pos: 54.5,37.5 @@ -122396,7 +123283,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18027 + - uid: 18117 components: - rot: 3.141592653589793 rad pos: 54.5,38.5 @@ -122404,7 +123291,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18028 + - uid: 18118 components: - rot: 3.141592653589793 rad pos: 54.5,39.5 @@ -122412,7 +123299,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18029 + - uid: 18119 components: - rot: 3.141592653589793 rad pos: 54.5,40.5 @@ -122420,7 +123307,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18030 + - uid: 18120 components: - rot: 3.141592653589793 rad pos: 54.5,41.5 @@ -122428,7 +123315,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18031 + - uid: 18121 components: - rot: 3.141592653589793 rad pos: 54.5,42.5 @@ -122436,7 +123323,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18032 + - uid: 18122 components: - rot: 3.141592653589793 rad pos: 54.5,44.5 @@ -122446,7 +123333,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18033 + - uid: 18123 components: - rot: 3.141592653589793 rad pos: 54.5,45.5 @@ -122454,7 +123341,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18034 + - uid: 18124 components: - rot: 3.141592653589793 rad pos: 54.5,46.5 @@ -122464,7 +123351,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18035 + - uid: 18125 components: - rot: 3.141592653589793 rad pos: 54.5,47.5 @@ -122472,7 +123359,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18036 + - uid: 18126 components: - rot: 3.141592653589793 rad pos: 54.5,48.5 @@ -122482,7 +123369,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18037 + - uid: 18127 components: - rot: 3.141592653589793 rad pos: 54.5,49.5 @@ -122490,7 +123377,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18038 + - uid: 18128 components: - rot: 3.141592653589793 rad pos: 54.5,51.5 @@ -122500,7 +123387,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18039 + - uid: 18129 components: - rot: 3.141592653589793 rad pos: 54.5,52.5 @@ -122510,7 +123397,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18040 + - uid: 18130 components: - rot: 3.141592653589793 rad pos: 54.5,53.5 @@ -122518,7 +123405,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18041 + - uid: 18131 components: - rot: 3.141592653589793 rad pos: 54.5,54.5 @@ -122528,7 +123415,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18042 + - uid: 18132 components: - rot: 3.141592653589793 rad pos: 54.5,55.5 @@ -122536,7 +123423,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18043 + - uid: 18133 components: - rot: 3.141592653589793 rad pos: 52.5,44.5 @@ -122546,7 +123433,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18044 + - uid: 18134 components: - rot: 3.141592653589793 rad pos: 52.5,45.5 @@ -122554,7 +123441,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18045 + - uid: 18135 components: - rot: 3.141592653589793 rad pos: 52.5,46.5 @@ -122564,7 +123451,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18046 + - uid: 18136 components: - rot: 3.141592653589793 rad pos: 52.5,47.5 @@ -122572,7 +123459,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18047 + - uid: 18137 components: - rot: 3.141592653589793 rad pos: 52.5,48.5 @@ -122582,7 +123469,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18048 + - uid: 18138 components: - rot: 3.141592653589793 rad pos: 52.5,50.5 @@ -122590,7 +123477,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18049 + - uid: 18139 components: - rot: 3.141592653589793 rad pos: 52.5,51.5 @@ -122598,7 +123485,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18050 + - uid: 18140 components: - rot: 3.141592653589793 rad pos: 52.5,52.5 @@ -122606,7 +123493,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18051 + - uid: 18141 components: - rot: 3.141592653589793 rad pos: 52.5,53.5 @@ -122614,7 +123501,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18052 + - uid: 18142 components: - rot: 3.141592653589793 rad pos: 52.5,54.5 @@ -122624,7 +123511,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18053 + - uid: 18143 components: - rot: 3.141592653589793 rad pos: 52.5,55.5 @@ -122632,49 +123519,49 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18054 + - uid: 18144 components: - pos: -16.5,31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18055 + - uid: 18145 components: - pos: -15.5,30.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18056 + - uid: 18146 components: - pos: -15.5,31.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18057 + - uid: 18147 components: - pos: -15.5,32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18058 + - uid: 18148 components: - pos: -16.5,32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18059 + - uid: 18149 components: - pos: -16.5,33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18060 + - uid: 18150 components: - rot: 1.5707963267948966 rad pos: -15.5,34.5 @@ -122682,7 +123569,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18061 + - uid: 18151 components: - rot: 1.5707963267948966 rad pos: -14.5,34.5 @@ -122690,7 +123577,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18062 + - uid: 18152 components: - rot: 1.5707963267948966 rad pos: -13.5,34.5 @@ -122698,7 +123585,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18063 + - uid: 18153 components: - rot: 1.5707963267948966 rad pos: -14.5,33.5 @@ -122706,7 +123593,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18064 + - uid: 18154 components: - rot: 1.5707963267948966 rad pos: -13.5,33.5 @@ -122716,133 +123603,133 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18065 + - uid: 18155 components: - pos: -16.5,35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18066 + - uid: 18156 components: - pos: -16.5,36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18067 + - uid: 18157 components: - pos: -16.5,37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18068 + - uid: 18158 components: - pos: -16.5,38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18069 + - uid: 18159 components: - pos: -16.5,40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18070 + - uid: 18160 components: - pos: -16.5,41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18071 + - uid: 18161 components: - pos: -16.5,42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18072 + - uid: 18162 components: - pos: -15.5,34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18073 + - uid: 18163 components: - pos: -15.5,35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18074 + - uid: 18164 components: - pos: -15.5,36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18075 + - uid: 18165 components: - pos: -15.5,37.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18076 + - uid: 18166 components: - pos: -15.5,39.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18077 + - uid: 18167 components: - pos: -15.5,40.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18078 + - uid: 18168 components: - pos: -15.5,41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18079 + - uid: 18169 components: - pos: -15.5,42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18080 + - uid: 18170 components: - pos: -15.5,43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18081 + - uid: 18171 components: - pos: -16.5,44.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18082 + - uid: 18172 components: - pos: -16.5,45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18083 + - uid: 18173 components: - rot: 1.5707963267948966 rad pos: -17.5,43.5 @@ -122850,7 +123737,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18084 + - uid: 18174 components: - rot: 1.5707963267948966 rad pos: -18.5,43.5 @@ -122858,7 +123745,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18085 + - uid: 18175 components: - rot: 1.5707963267948966 rad pos: -19.5,43.5 @@ -122866,7 +123753,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18086 + - uid: 18176 components: - rot: 1.5707963267948966 rad pos: -16.5,44.5 @@ -122874,7 +123761,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18087 + - uid: 18177 components: - rot: 1.5707963267948966 rad pos: -17.5,44.5 @@ -122882,7 +123769,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18088 + - uid: 18178 components: - rot: 1.5707963267948966 rad pos: -18.5,44.5 @@ -122890,7 +123777,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18089 + - uid: 18179 components: - rot: 1.5707963267948966 rad pos: -19.5,44.5 @@ -122900,7 +123787,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18090 + - uid: 18180 components: - rot: -1.5707963267948966 rad pos: -16.5,45.5 @@ -122908,7 +123795,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18091 + - uid: 18181 components: - rot: 3.141592653589793 rad pos: -17.5,46.5 @@ -122916,7 +123803,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18092 + - uid: 18182 components: - rot: 3.141592653589793 rad pos: -17.5,47.5 @@ -122924,7 +123811,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18093 + - uid: 18183 components: - rot: 3.141592653589793 rad pos: -17.5,48.5 @@ -122932,7 +123819,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18094 + - uid: 18184 components: - rot: 3.141592653589793 rad pos: -17.5,49.5 @@ -122940,7 +123827,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18095 + - uid: 18185 components: - rot: 3.141592653589793 rad pos: -16.5,47.5 @@ -122948,7 +123835,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18096 + - uid: 18186 components: - rot: 3.141592653589793 rad pos: -16.5,48.5 @@ -122956,7 +123843,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18097 + - uid: 18187 components: - rot: 3.141592653589793 rad pos: -16.5,49.5 @@ -122964,7 +123851,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18098 + - uid: 18188 components: - rot: 1.5707963267948966 rad pos: -15.5,43.5 @@ -122972,7 +123859,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18099 + - uid: 18189 components: - rot: -1.5707963267948966 rad pos: -15.5,46.5 @@ -122980,7 +123867,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18100 + - uid: 18190 components: - rot: -1.5707963267948966 rad pos: -14.5,46.5 @@ -122988,7 +123875,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18101 + - uid: 18191 components: - rot: -1.5707963267948966 rad pos: -13.5,46.5 @@ -122996,7 +123883,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18102 + - uid: 18192 components: - rot: -1.5707963267948966 rad pos: -12.5,46.5 @@ -123004,7 +123891,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18103 + - uid: 18193 components: - rot: -1.5707963267948966 rad pos: -13.5,44.5 @@ -123012,7 +123899,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18104 + - uid: 18194 components: - rot: -1.5707963267948966 rad pos: -12.5,44.5 @@ -123020,26 +123907,26 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18105 + - uid: 18195 components: - pos: 1.5,47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18106 + - uid: 18196 components: - rot: 3.141592653589793 rad pos: 70.5,35.5 parent: 2 type: Transform - - uid: 18107 + - uid: 18197 components: - rot: 3.141592653589793 rad pos: 70.5,34.5 parent: 2 type: Transform - - uid: 18108 + - uid: 18198 components: - rot: 3.141592653589793 rad pos: 70.5,33.5 @@ -123047,7 +123934,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 18109 + - uid: 18199 components: - rot: -1.5707963267948966 rad pos: -14.5,38.5 @@ -123055,7 +123942,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18110 + - uid: 18200 components: - rot: -1.5707963267948966 rad pos: -13.5,38.5 @@ -123063,7 +123950,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18111 + - uid: 18201 components: - rot: -1.5707963267948966 rad pos: -12.5,38.5 @@ -123071,7 +123958,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18112 + - uid: 18202 components: - rot: -1.5707963267948966 rad pos: 53.5,50.5 @@ -123079,7 +123966,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18113 + - uid: 18203 components: - rot: -1.5707963267948966 rad pos: 52.5,50.5 @@ -123087,7 +123974,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18114 + - uid: 18204 components: - rot: -1.5707963267948966 rad pos: 51.5,50.5 @@ -123095,7 +123982,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18115 + - uid: 18205 components: - rot: -1.5707963267948966 rad pos: 50.5,50.5 @@ -123105,7 +123992,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18116 + - uid: 18206 components: - rot: -1.5707963267948966 rad pos: 49.5,50.5 @@ -123115,7 +124002,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18117 + - uid: 18207 components: - rot: -1.5707963267948966 rad pos: 48.5,50.5 @@ -123123,7 +124010,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18118 + - uid: 18208 components: - rot: -1.5707963267948966 rad pos: 51.5,49.5 @@ -123131,7 +124018,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18119 + - uid: 18209 components: - rot: -1.5707963267948966 rad pos: 50.5,49.5 @@ -123139,7 +124026,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18120 + - uid: 18210 components: - rot: -1.5707963267948966 rad pos: 49.5,49.5 @@ -123149,7 +124036,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18121 + - uid: 18211 components: - rot: -1.5707963267948966 rad pos: 48.5,49.5 @@ -123157,7 +124044,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18122 + - uid: 18212 components: - rot: -1.5707963267948966 rad pos: 47.5,49.5 @@ -123165,7 +124052,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18123 + - uid: 18213 components: - rot: -1.5707963267948966 rad pos: 46.5,49.5 @@ -123173,21 +124060,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18124 + - uid: 18214 components: - pos: 47.5,49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18125 + - uid: 18215 components: - pos: 47.5,48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18126 + - uid: 18216 components: - pos: 47.5,47.5 parent: 2 @@ -123196,21 +124083,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18127 + - uid: 18217 components: - pos: 45.5,48.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18128 + - uid: 18218 components: - pos: 45.5,47.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18129 + - uid: 18219 components: - pos: 45.5,46.5 parent: 2 @@ -123219,7 +124106,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18130 + - uid: 18220 components: - rot: -1.5707963267948966 rad pos: 46.5,46.5 @@ -123227,7 +124114,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18131 + - uid: 18221 components: - rot: -1.5707963267948966 rad pos: 45.5,46.5 @@ -123237,7 +124124,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18132 + - uid: 18222 components: - rot: -1.5707963267948966 rad pos: 43.5,46.5 @@ -123245,7 +124132,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18133 + - uid: 18223 components: - rot: -1.5707963267948966 rad pos: 44.5,46.5 @@ -123253,7 +124140,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18134 + - uid: 18224 components: - rot: -1.5707963267948966 rad pos: 42.5,46.5 @@ -123261,7 +124148,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18135 + - uid: 18225 components: - rot: -1.5707963267948966 rad pos: 41.5,46.5 @@ -123271,7 +124158,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18136 + - uid: 18226 components: - rot: -1.5707963267948966 rad pos: 44.5,45.5 @@ -123279,7 +124166,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18137 + - uid: 18227 components: - rot: -1.5707963267948966 rad pos: 43.5,45.5 @@ -123287,7 +124174,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18138 + - uid: 18228 components: - rot: -1.5707963267948966 rad pos: 42.5,45.5 @@ -123295,7 +124182,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18139 + - uid: 18229 components: - rot: -1.5707963267948966 rad pos: 41.5,45.5 @@ -123305,7 +124192,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18140 + - uid: 18230 components: - rot: 3.141592653589793 rad pos: 2.5,67.5 @@ -123313,7 +124200,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18141 + - uid: 18231 components: - rot: 3.141592653589793 rad pos: 2.5,66.5 @@ -123321,7 +124208,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18142 + - uid: 18232 components: - rot: 3.141592653589793 rad pos: 2.5,65.5 @@ -123331,7 +124218,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18143 + - uid: 18233 components: - rot: 3.141592653589793 rad pos: 2.5,64.5 @@ -123341,7 +124228,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18144 + - uid: 18234 components: - rot: 3.141592653589793 rad pos: -5.5,67.5 @@ -123349,7 +124236,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18145 + - uid: 18235 components: - rot: 3.141592653589793 rad pos: -5.5,66.5 @@ -123357,7 +124244,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18146 + - uid: 18236 components: - rot: 3.141592653589793 rad pos: -5.5,65.5 @@ -123367,7 +124254,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18147 + - uid: 18237 components: - rot: 3.141592653589793 rad pos: -5.5,64.5 @@ -123377,7 +124264,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18148 + - uid: 18238 components: - rot: 3.141592653589793 rad pos: -6.5,68.5 @@ -123385,7 +124272,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18149 + - uid: 18239 components: - rot: 3.141592653589793 rad pos: -6.5,67.5 @@ -123393,7 +124280,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18150 + - uid: 18240 components: - rot: 3.141592653589793 rad pos: -6.5,66.5 @@ -123401,7 +124288,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18151 + - uid: 18241 components: - rot: 3.141592653589793 rad pos: -6.5,65.5 @@ -123411,7 +124298,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18152 + - uid: 18242 components: - rot: 3.141592653589793 rad pos: 3.5,68.5 @@ -123419,7 +124306,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18153 + - uid: 18243 components: - rot: 3.141592653589793 rad pos: 3.5,67.5 @@ -123427,7 +124314,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18154 + - uid: 18244 components: - rot: 3.141592653589793 rad pos: 3.5,66.5 @@ -123435,7 +124322,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18155 + - uid: 18245 components: - rot: 3.141592653589793 rad pos: 3.5,65.5 @@ -123445,7 +124332,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18156 + - uid: 18246 components: - rot: 1.5707963267948966 rad pos: 0.5,69.5 @@ -123453,7 +124340,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18157 + - uid: 18247 components: - rot: 1.5707963267948966 rad pos: -3.5,69.5 @@ -123461,21 +124348,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18158 + - uid: 18248 components: - pos: -2.5,66.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18159 + - uid: 18249 components: - pos: -2.5,65.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18160 + - uid: 18250 components: - pos: -2.5,64.5 parent: 2 @@ -123484,21 +124371,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18161 + - uid: 18251 components: - pos: -2.5,63.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18162 + - uid: 18252 components: - pos: -2.5,61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18163 + - uid: 18253 components: - pos: -2.5,60.5 parent: 2 @@ -123507,49 +124394,49 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18164 + - uid: 18254 components: - pos: -2.5,59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18165 + - uid: 18255 components: - pos: -1.5,65.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18166 + - uid: 18256 components: - pos: -1.5,64.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18167 + - uid: 18257 components: - pos: -1.5,63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18168 + - uid: 18258 components: - pos: -1.5,62.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18169 + - uid: 18259 components: - pos: -1.5,60.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18170 + - uid: 18260 components: - rot: -1.5707963267948966 rad pos: -11.5,46.5 @@ -123557,7 +124444,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18171 + - uid: 18261 components: - rot: -1.5707963267948966 rad pos: -10.5,46.5 @@ -123565,7 +124452,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18172 + - uid: 18262 components: - rot: -1.5707963267948966 rad pos: -9.5,46.5 @@ -123573,7 +124460,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18173 + - uid: 18263 components: - rot: -1.5707963267948966 rad pos: -8.5,46.5 @@ -123581,7 +124468,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18174 + - uid: 18264 components: - rot: -1.5707963267948966 rad pos: -7.5,46.5 @@ -123589,7 +124476,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18175 + - uid: 18265 components: - rot: -1.5707963267948966 rad pos: -6.5,46.5 @@ -123597,7 +124484,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18176 + - uid: 18266 components: - rot: -1.5707963267948966 rad pos: -5.5,46.5 @@ -123605,7 +124492,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18177 + - uid: 18267 components: - rot: -1.5707963267948966 rad pos: -4.5,46.5 @@ -123613,7 +124500,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18178 + - uid: 18268 components: - rot: -1.5707963267948966 rad pos: -3.5,46.5 @@ -123621,7 +124508,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18179 + - uid: 18269 components: - rot: -1.5707963267948966 rad pos: -2.5,46.5 @@ -123629,7 +124516,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18180 + - uid: 18270 components: - rot: -1.5707963267948966 rad pos: -1.5,46.5 @@ -123637,7 +124524,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18181 + - uid: 18271 components: - rot: -1.5707963267948966 rad pos: -11.5,44.5 @@ -123645,7 +124532,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18182 + - uid: 18272 components: - rot: -1.5707963267948966 rad pos: -10.5,44.5 @@ -123653,7 +124540,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18183 + - uid: 18273 components: - rot: -1.5707963267948966 rad pos: -9.5,44.5 @@ -123661,7 +124548,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18184 + - uid: 18274 components: - rot: -1.5707963267948966 rad pos: -8.5,44.5 @@ -123669,7 +124556,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18185 + - uid: 18275 components: - rot: -1.5707963267948966 rad pos: -7.5,44.5 @@ -123677,7 +124564,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18186 + - uid: 18276 components: - rot: -1.5707963267948966 rad pos: -6.5,44.5 @@ -123685,7 +124572,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18187 + - uid: 18277 components: - rot: -1.5707963267948966 rad pos: -5.5,44.5 @@ -123693,7 +124580,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18188 + - uid: 18278 components: - rot: -1.5707963267948966 rad pos: -4.5,44.5 @@ -123701,7 +124588,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18189 + - uid: 18279 components: - rot: -1.5707963267948966 rad pos: -3.5,44.5 @@ -123709,7 +124596,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18190 + - uid: 18280 components: - rot: -1.5707963267948966 rad pos: -2.5,44.5 @@ -123717,7 +124604,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18191 + - uid: 18281 components: - rot: -1.5707963267948966 rad pos: -1.5,44.5 @@ -123725,7 +124612,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18192 + - uid: 18282 components: - rot: -1.5707963267948966 rad pos: -0.5,44.5 @@ -123733,7 +124620,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18193 + - uid: 18283 components: - rot: -1.5707963267948966 rad pos: 0.5,44.5 @@ -123741,7 +124628,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18194 + - uid: 18284 components: - rot: 3.141592653589793 rad pos: 1.5,45.5 @@ -123749,7 +124636,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18195 + - uid: 18285 components: - rot: 3.141592653589793 rad pos: -0.5,47.5 @@ -123757,98 +124644,98 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18196 + - uid: 18286 components: - pos: 1.5,48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18197 + - uid: 18287 components: - pos: 1.5,49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18198 + - uid: 18288 components: - pos: 1.5,50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18199 + - uid: 18289 components: - pos: 1.5,51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18200 + - uid: 18290 components: - pos: 1.5,52.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18201 + - uid: 18291 components: - pos: 1.5,53.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18202 + - uid: 18292 components: - pos: 1.5,54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18203 + - uid: 18293 components: - pos: -0.5,49.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18204 + - uid: 18294 components: - pos: -0.5,50.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18205 + - uid: 18295 components: - pos: -0.5,51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18206 + - uid: 18296 components: - pos: -0.5,52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18207 + - uid: 18297 components: - pos: -0.5,53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18208 + - uid: 18298 components: - pos: -0.5,54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18209 + - uid: 18299 components: - rot: -1.5707963267948966 rad pos: -17.5,51.5 @@ -123856,7 +124743,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18210 + - uid: 18300 components: - rot: -1.5707963267948966 rad pos: -18.5,51.5 @@ -123864,7 +124751,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18211 + - uid: 18301 components: - rot: -1.5707963267948966 rad pos: -19.5,51.5 @@ -123872,7 +124759,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18212 + - uid: 18302 components: - rot: -1.5707963267948966 rad pos: -18.5,50.5 @@ -123880,7 +124767,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18213 + - uid: 18303 components: - rot: -1.5707963267948966 rad pos: -19.5,50.5 @@ -123888,7 +124775,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18214 + - uid: 18304 components: - rot: -1.5707963267948966 rad pos: -20.5,50.5 @@ -123896,7 +124783,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18215 + - uid: 18305 components: - rot: 3.141592653589793 rad pos: -20.5,50.5 @@ -123904,7 +124791,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18216 + - uid: 18306 components: - rot: 3.141592653589793 rad pos: -20.5,49.5 @@ -123914,7 +124801,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18217 + - uid: 18307 components: - rot: 3.141592653589793 rad pos: -21.5,49.5 @@ -123924,7 +124811,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18218 + - uid: 18308 components: - rot: 3.141592653589793 rad pos: -16.5,50.5 @@ -123932,7 +124819,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18219 + - uid: 18309 components: - rot: 1.5707963267948966 rad pos: -16.5,50.5 @@ -123940,7 +124827,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18220 + - uid: 18310 components: - rot: 1.5707963267948966 rad pos: -15.5,50.5 @@ -123948,7 +124835,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18221 + - uid: 18311 components: - rot: 1.5707963267948966 rad pos: -14.5,50.5 @@ -123956,7 +124843,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18222 + - uid: 18312 components: - rot: 1.5707963267948966 rad pos: -13.5,50.5 @@ -123964,7 +124851,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18223 + - uid: 18313 components: - rot: 1.5707963267948966 rad pos: -15.5,51.5 @@ -123972,7 +124859,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18224 + - uid: 18314 components: - rot: 1.5707963267948966 rad pos: -14.5,51.5 @@ -123980,140 +124867,140 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18225 + - uid: 18315 components: - pos: -21.5,52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18226 + - uid: 18316 components: - pos: -21.5,53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18227 + - uid: 18317 components: - pos: -21.5,54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18228 + - uid: 18318 components: - pos: -21.5,55.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18229 + - uid: 18319 components: - pos: -21.5,56.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18230 + - uid: 18320 components: - pos: -21.5,57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18231 + - uid: 18321 components: - pos: -22.5,51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18232 + - uid: 18322 components: - pos: -22.5,52.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18233 + - uid: 18323 components: - pos: -22.5,53.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18234 + - uid: 18324 components: - pos: -22.5,54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18235 + - uid: 18325 components: - pos: -22.5,55.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18236 + - uid: 18326 components: - pos: -22.5,56.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18237 + - uid: 18327 components: - pos: -22.5,57.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18238 + - uid: 18328 components: - pos: -22.5,58.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18239 + - uid: 18329 components: - pos: -22.5,59.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18240 + - uid: 18330 components: - pos: -21.5,59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18241 + - uid: 18331 components: - pos: -21.5,60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18242 + - uid: 18332 components: - pos: -21.5,61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18243 + - uid: 18333 components: - pos: -22.5,62.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18244 + - uid: 18334 components: - rot: -1.5707963267948966 rad pos: -20.5,62.5 @@ -124123,7 +125010,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18245 + - uid: 18335 components: - rot: -1.5707963267948966 rad pos: -19.5,62.5 @@ -124133,7 +125020,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18246 + - uid: 18336 components: - rot: -1.5707963267948966 rad pos: -18.5,62.5 @@ -124141,7 +125028,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18247 + - uid: 18337 components: - rot: -1.5707963267948966 rad pos: -21.5,61.5 @@ -124149,7 +125036,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18248 + - uid: 18338 components: - rot: -1.5707963267948966 rad pos: -20.5,61.5 @@ -124159,7 +125046,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18249 + - uid: 18339 components: - rot: -1.5707963267948966 rad pos: -19.5,61.5 @@ -124167,7 +125054,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18250 + - uid: 18340 components: - rot: -1.5707963267948966 rad pos: -18.5,61.5 @@ -124177,140 +125064,140 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18251 + - uid: 18341 components: - pos: -22.5,63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18252 + - uid: 18342 components: - pos: -22.5,64.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18253 + - uid: 18343 components: - pos: -22.5,65.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18254 + - uid: 18344 components: - pos: -22.5,67.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18255 + - uid: 18345 components: - pos: -22.5,68.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18256 + - uid: 18346 components: - pos: -22.5,69.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18257 + - uid: 18347 components: - pos: -22.5,70.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18258 + - uid: 18348 components: - pos: -22.5,71.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18259 + - uid: 18349 components: - pos: -22.5,72.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18260 + - uid: 18350 components: - pos: -21.5,63.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18261 + - uid: 18351 components: - pos: -21.5,64.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18262 + - uid: 18352 components: - pos: -21.5,65.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18263 + - uid: 18353 components: - pos: -21.5,66.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18264 + - uid: 18354 components: - pos: -21.5,67.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18265 + - uid: 18355 components: - pos: -21.5,68.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18266 + - uid: 18356 components: - pos: -21.5,69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18267 + - uid: 18357 components: - pos: -21.5,70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18268 + - uid: 18358 components: - pos: -21.5,71.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18269 + - uid: 18359 components: - pos: -21.5,72.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18270 + - uid: 18360 components: - rot: -1.5707963267948966 rad pos: -16.5,62.5 @@ -124318,7 +125205,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18271 + - uid: 18361 components: - rot: -1.5707963267948966 rad pos: -15.5,62.5 @@ -124326,7 +125213,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18272 + - uid: 18362 components: - rot: -1.5707963267948966 rad pos: -14.5,62.5 @@ -124336,7 +125223,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18273 + - uid: 18363 components: - rot: -1.5707963267948966 rad pos: -16.5,61.5 @@ -124344,7 +125231,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18274 + - uid: 18364 components: - rot: -1.5707963267948966 rad pos: -15.5,61.5 @@ -124352,7 +125239,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18275 + - uid: 18365 components: - rot: -1.5707963267948966 rad pos: -14.5,61.5 @@ -124362,7 +125249,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18276 + - uid: 18366 components: - rot: -1.5707963267948966 rad pos: -13.5,61.5 @@ -124370,168 +125257,168 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18277 + - uid: 18367 components: - pos: -13.5,61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18278 + - uid: 18368 components: - pos: -13.5,60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18279 + - uid: 18369 components: - pos: -13.5,59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18280 + - uid: 18370 components: - pos: -12.5,62.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18281 + - uid: 18371 components: - pos: -12.5,63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18282 + - uid: 18372 components: - pos: -12.5,64.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18283 + - uid: 18373 components: - pos: -12.5,65.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18284 + - uid: 18374 components: - pos: -12.5,66.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18285 + - uid: 18375 components: - pos: -12.5,67.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18286 + - uid: 18376 components: - pos: -12.5,68.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18287 + - uid: 18377 components: - pos: -12.5,69.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18288 + - uid: 18378 components: - pos: -12.5,70.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18289 + - uid: 18379 components: - pos: -12.5,71.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18290 + - uid: 18380 components: - pos: -12.5,72.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18291 + - uid: 18381 components: - pos: -13.5,63.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18292 + - uid: 18382 components: - pos: -13.5,64.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18293 + - uid: 18383 components: - pos: -13.5,65.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18294 + - uid: 18384 components: - pos: -13.5,67.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18295 + - uid: 18385 components: - pos: -13.5,68.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18296 + - uid: 18386 components: - pos: -13.5,69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18297 + - uid: 18387 components: - pos: -13.5,70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18298 + - uid: 18388 components: - pos: -13.5,71.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18299 + - uid: 18389 components: - pos: -13.5,72.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18300 + - uid: 18390 components: - rot: 1.5707963267948966 rad pos: -11.5,59.5 @@ -124539,7 +125426,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18301 + - uid: 18391 components: - rot: 1.5707963267948966 rad pos: -10.5,59.5 @@ -124547,7 +125434,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18302 + - uid: 18392 components: - rot: 1.5707963267948966 rad pos: -9.5,59.5 @@ -124555,7 +125442,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18303 + - uid: 18393 components: - rot: 1.5707963267948966 rad pos: -8.5,59.5 @@ -124563,7 +125450,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18304 + - uid: 18394 components: - rot: 1.5707963267948966 rad pos: -7.5,59.5 @@ -124571,7 +125458,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18305 + - uid: 18395 components: - rot: 1.5707963267948966 rad pos: -6.5,59.5 @@ -124579,7 +125466,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18306 + - uid: 18396 components: - rot: 1.5707963267948966 rad pos: -5.5,59.5 @@ -124587,7 +125474,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18307 + - uid: 18397 components: - rot: 1.5707963267948966 rad pos: -4.5,59.5 @@ -124595,7 +125482,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18308 + - uid: 18398 components: - rot: 1.5707963267948966 rad pos: -12.5,58.5 @@ -124603,7 +125490,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18309 + - uid: 18399 components: - rot: 1.5707963267948966 rad pos: -11.5,58.5 @@ -124611,7 +125498,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18310 + - uid: 18400 components: - rot: 1.5707963267948966 rad pos: -10.5,58.5 @@ -124619,7 +125506,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18311 + - uid: 18401 components: - rot: 1.5707963267948966 rad pos: -9.5,58.5 @@ -124627,7 +125514,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18312 + - uid: 18402 components: - rot: 1.5707963267948966 rad pos: -8.5,58.5 @@ -124635,7 +125522,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18313 + - uid: 18403 components: - rot: 1.5707963267948966 rad pos: -7.5,58.5 @@ -124643,7 +125530,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18314 + - uid: 18404 components: - rot: 1.5707963267948966 rad pos: -6.5,58.5 @@ -124651,7 +125538,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18315 + - uid: 18405 components: - rot: 1.5707963267948966 rad pos: -5.5,58.5 @@ -124659,98 +125546,98 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18316 + - uid: 18406 components: - pos: -12.5,58.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18317 + - uid: 18407 components: - pos: -12.5,57.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18318 + - uid: 18408 components: - pos: -12.5,56.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18319 + - uid: 18409 components: - pos: -12.5,55.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18320 + - uid: 18410 components: - pos: -12.5,54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18321 + - uid: 18411 components: - pos: -12.5,53.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18322 + - uid: 18412 components: - pos: -12.5,52.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18323 + - uid: 18413 components: - pos: -12.5,51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18324 + - uid: 18414 components: - pos: -13.5,56.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18325 + - uid: 18415 components: - pos: -13.5,55.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18326 + - uid: 18416 components: - pos: -13.5,54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18327 + - uid: 18417 components: - pos: -13.5,53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18328 + - uid: 18418 components: - pos: -13.5,52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18329 + - uid: 18419 components: - rot: 1.5707963267948966 rad pos: -3.5,59.5 @@ -124758,7 +125645,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18330 + - uid: 18420 components: - rot: 1.5707963267948966 rad pos: -2.5,59.5 @@ -124766,7 +125653,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18331 + - uid: 18421 components: - rot: 1.5707963267948966 rad pos: -4.5,58.5 @@ -124774,7 +125661,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18332 + - uid: 18422 components: - rot: 1.5707963267948966 rad pos: -3.5,58.5 @@ -124782,7 +125669,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18333 + - uid: 18423 components: - rot: -1.5707963267948966 rad pos: 0.5,59.5 @@ -124790,7 +125677,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18334 + - uid: 18424 components: - rot: 1.5707963267948966 rad pos: -1.5,58.5 @@ -124798,14 +125685,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18335 + - uid: 18425 components: - pos: -0.5,57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18336 + - uid: 18426 components: - rot: 1.5707963267948966 rad pos: -0.5,59.5 @@ -124813,35 +125700,35 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18337 + - uid: 18427 components: - pos: -0.5,55.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18338 + - uid: 18428 components: - pos: 1.5,58.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18339 + - uid: 18429 components: - pos: 1.5,56.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18340 + - uid: 18430 components: - pos: 1.5,55.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18341 + - uid: 18431 components: - rot: -1.5707963267948966 rad pos: 39.5,47.5 @@ -124849,7 +125736,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18342 + - uid: 18432 components: - rot: -1.5707963267948966 rad pos: 38.5,47.5 @@ -124859,7 +125746,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18343 + - uid: 18433 components: - rot: -1.5707963267948966 rad pos: 37.5,47.5 @@ -124867,7 +125754,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18344 + - uid: 18434 components: - rot: -1.5707963267948966 rad pos: 36.5,47.5 @@ -124875,7 +125762,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18345 + - uid: 18435 components: - rot: -1.5707963267948966 rad pos: 35.5,47.5 @@ -124883,7 +125770,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18346 + - uid: 18436 components: - rot: -1.5707963267948966 rad pos: 34.5,47.5 @@ -124891,7 +125778,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18347 + - uid: 18437 components: - rot: -1.5707963267948966 rad pos: 33.5,47.5 @@ -124899,7 +125786,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18348 + - uid: 18438 components: - rot: -1.5707963267948966 rad pos: 32.5,47.5 @@ -124907,7 +125794,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18349 + - uid: 18439 components: - rot: -1.5707963267948966 rad pos: 31.5,47.5 @@ -124917,7 +125804,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18350 + - uid: 18440 components: - rot: -1.5707963267948966 rad pos: 30.5,47.5 @@ -124925,7 +125812,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18351 + - uid: 18441 components: - rot: -1.5707963267948966 rad pos: 28.5,45.5 @@ -124933,7 +125820,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18352 + - uid: 18442 components: - rot: -1.5707963267948966 rad pos: 27.5,45.5 @@ -124941,7 +125828,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18353 + - uid: 18443 components: - rot: -1.5707963267948966 rad pos: 26.5,45.5 @@ -124949,7 +125836,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18354 + - uid: 18444 components: - rot: -1.5707963267948966 rad pos: 25.5,45.5 @@ -124957,7 +125844,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18355 + - uid: 18445 components: - rot: -1.5707963267948966 rad pos: 28.5,46.5 @@ -124965,7 +125852,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18356 + - uid: 18446 components: - rot: -1.5707963267948966 rad pos: 27.5,46.5 @@ -124975,7 +125862,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18357 + - uid: 18447 components: - rot: -1.5707963267948966 rad pos: 26.5,46.5 @@ -124983,7 +125870,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18358 + - uid: 18448 components: - rot: -1.5707963267948966 rad pos: 25.5,46.5 @@ -124991,7 +125878,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18359 + - uid: 18449 components: - rot: -1.5707963267948966 rad pos: 24.5,46.5 @@ -124999,7 +125886,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18360 + - uid: 18450 components: - rot: 1.5707963267948966 rad pos: 30.5,44.5 @@ -125007,7 +125894,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18361 + - uid: 18451 components: - rot: 1.5707963267948966 rad pos: 31.5,44.5 @@ -125017,7 +125904,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18362 + - uid: 18452 components: - rot: 1.5707963267948966 rad pos: 32.5,44.5 @@ -125025,7 +125912,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18363 + - uid: 18453 components: - rot: 1.5707963267948966 rad pos: 33.5,44.5 @@ -125033,7 +125920,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18364 + - uid: 18454 components: - rot: 1.5707963267948966 rad pos: 34.5,44.5 @@ -125041,7 +125928,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18365 + - uid: 18455 components: - rot: 1.5707963267948966 rad pos: 35.5,44.5 @@ -125049,7 +125936,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18366 + - uid: 18456 components: - rot: 1.5707963267948966 rad pos: 36.5,44.5 @@ -125057,7 +125944,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18367 + - uid: 18457 components: - rot: 1.5707963267948966 rad pos: 37.5,44.5 @@ -125065,7 +125952,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18368 + - uid: 18458 components: - rot: 1.5707963267948966 rad pos: 38.5,44.5 @@ -125073,7 +125960,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18369 + - uid: 18459 components: - rot: 1.5707963267948966 rad pos: 39.5,44.5 @@ -125081,7 +125968,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18370 + - uid: 18460 components: - rot: 3.141592653589793 rad pos: -6.5,-91.5 @@ -125089,14 +125976,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18371 + - uid: 18461 components: - pos: -22.5,-90.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18372 + - uid: 18462 components: - pos: -22.5,-91.5 parent: 2 @@ -125105,7 +125992,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18373 + - uid: 18463 components: - pos: -22.5,-92.5 parent: 2 @@ -125114,7 +126001,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18374 + - uid: 18464 components: - pos: -22.5,-93.5 parent: 2 @@ -125123,7 +126010,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18375 + - uid: 18465 components: - pos: -22.5,-94.5 parent: 2 @@ -125132,28 +126019,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18376 + - uid: 18466 components: - pos: -22.5,-95.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18377 + - uid: 18467 components: - pos: -20.5,-89.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18378 + - uid: 18468 components: - pos: -20.5,-90.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18379 + - uid: 18469 components: - pos: -20.5,-91.5 parent: 2 @@ -125162,7 +126049,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18380 + - uid: 18470 components: - pos: -20.5,-92.5 parent: 2 @@ -125171,7 +126058,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18381 + - uid: 18471 components: - pos: -20.5,-93.5 parent: 2 @@ -125180,7 +126067,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18382 + - uid: 18472 components: - pos: -20.5,-94.5 parent: 2 @@ -125189,14 +126076,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18383 + - uid: 18473 components: - pos: -20.5,-95.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18384 + - uid: 18474 components: - rot: 3.141592653589793 rad pos: -22.5,-97.5 @@ -125204,7 +126091,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18385 + - uid: 18475 components: - rot: 1.5707963267948966 rad pos: -21.5,-97.5 @@ -125212,7 +126099,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18386 + - uid: 18476 components: - rot: 1.5707963267948966 rad pos: -22.5,-97.5 @@ -125220,7 +126107,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18387 + - uid: 18477 components: - rot: 1.5707963267948966 rad pos: -23.5,-97.5 @@ -125228,7 +126115,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18388 + - uid: 18478 components: - rot: 1.5707963267948966 rad pos: -24.5,-97.5 @@ -125236,7 +126123,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18389 + - uid: 18479 components: - rot: 1.5707963267948966 rad pos: -25.5,-97.5 @@ -125244,7 +126131,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18390 + - uid: 18480 components: - rot: 1.5707963267948966 rad pos: -26.5,-97.5 @@ -125254,7 +126141,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18391 + - uid: 18481 components: - rot: 1.5707963267948966 rad pos: -27.5,-97.5 @@ -125262,7 +126149,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18392 + - uid: 18482 components: - rot: 1.5707963267948966 rad pos: -28.5,-97.5 @@ -125270,7 +126157,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18393 + - uid: 18483 components: - rot: 1.5707963267948966 rad pos: -29.5,-97.5 @@ -125278,7 +126165,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18394 + - uid: 18484 components: - rot: 1.5707963267948966 rad pos: -30.5,-97.5 @@ -125286,7 +126173,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18395 + - uid: 18485 components: - rot: 1.5707963267948966 rad pos: -23.5,-96.5 @@ -125294,7 +126181,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18396 + - uid: 18486 components: - rot: 1.5707963267948966 rad pos: -24.5,-96.5 @@ -125302,7 +126189,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18397 + - uid: 18487 components: - rot: 1.5707963267948966 rad pos: -25.5,-96.5 @@ -125310,7 +126197,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18398 + - uid: 18488 components: - rot: 1.5707963267948966 rad pos: -26.5,-96.5 @@ -125318,7 +126205,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18399 + - uid: 18489 components: - rot: 1.5707963267948966 rad pos: -27.5,-96.5 @@ -125326,7 +126213,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18400 + - uid: 18490 components: - rot: 1.5707963267948966 rad pos: -28.5,-96.5 @@ -125336,7 +126223,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18401 + - uid: 18491 components: - rot: 1.5707963267948966 rad pos: -29.5,-96.5 @@ -125344,7 +126231,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18402 + - uid: 18492 components: - rot: 1.5707963267948966 rad pos: -30.5,-96.5 @@ -125352,7 +126239,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18403 + - uid: 18493 components: - rot: 1.5707963267948966 rad pos: -20.5,-98.5 @@ -125360,7 +126247,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18404 + - uid: 18494 components: - rot: 1.5707963267948966 rad pos: -19.5,-98.5 @@ -125368,7 +126255,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18405 + - uid: 18495 components: - rot: 1.5707963267948966 rad pos: -18.5,-98.5 @@ -125376,7 +126263,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18406 + - uid: 18496 components: - rot: 1.5707963267948966 rad pos: -17.5,-98.5 @@ -125384,7 +126271,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18407 + - uid: 18497 components: - rot: 1.5707963267948966 rad pos: -16.5,-98.5 @@ -125392,7 +126279,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18408 + - uid: 18498 components: - rot: 1.5707963267948966 rad pos: -19.5,-97.5 @@ -125400,7 +126287,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18409 + - uid: 18499 components: - rot: 1.5707963267948966 rad pos: -18.5,-97.5 @@ -125410,7 +126297,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18410 + - uid: 18500 components: - rot: 1.5707963267948966 rad pos: -17.5,-97.5 @@ -125418,7 +126305,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18411 + - uid: 18501 components: - rot: 1.5707963267948966 rad pos: -16.5,-97.5 @@ -125426,7 +126313,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18412 + - uid: 18502 components: - rot: 1.5707963267948966 rad pos: -15.5,-97.5 @@ -125434,7 +126321,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18413 + - uid: 18503 components: - rot: 1.5707963267948966 rad pos: -14.5,-97.5 @@ -125442,7 +126329,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18414 + - uid: 18504 components: - rot: 1.5707963267948966 rad pos: -13.5,-97.5 @@ -125450,7 +126337,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18415 + - uid: 18505 components: - rot: 1.5707963267948966 rad pos: -12.5,-97.5 @@ -125458,7 +126345,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18416 + - uid: 18506 components: - rot: 1.5707963267948966 rad pos: -11.5,-97.5 @@ -125466,7 +126353,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18417 + - uid: 18507 components: - rot: 1.5707963267948966 rad pos: -10.5,-97.5 @@ -125474,7 +126361,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18418 + - uid: 18508 components: - rot: 1.5707963267948966 rad pos: -15.5,-98.5 @@ -125482,7 +126369,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18419 + - uid: 18509 components: - rot: 1.5707963267948966 rad pos: -14.5,-98.5 @@ -125490,7 +126377,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18420 + - uid: 18510 components: - rot: 1.5707963267948966 rad pos: -13.5,-98.5 @@ -125500,7 +126387,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18421 + - uid: 18511 components: - rot: 1.5707963267948966 rad pos: -12.5,-98.5 @@ -125508,7 +126395,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18422 + - uid: 18512 components: - rot: 1.5707963267948966 rad pos: -11.5,-98.5 @@ -125516,7 +126403,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18423 + - uid: 18513 components: - rot: 1.5707963267948966 rad pos: -10.5,-98.5 @@ -125524,7 +126411,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18424 + - uid: 18514 components: - rot: 1.5707963267948966 rad pos: -9.5,-98.5 @@ -125532,7 +126419,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18425 + - uid: 18515 components: - rot: 1.5707963267948966 rad pos: -8.5,-98.5 @@ -125540,7 +126427,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18426 + - uid: 18516 components: - rot: 1.5707963267948966 rad pos: -9.5,-97.5 @@ -125548,21 +126435,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18427 + - uid: 18517 components: - pos: -8.5,-96.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18428 + - uid: 18518 components: - pos: -8.5,-95.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18429 + - uid: 18519 components: - pos: -8.5,-94.5 parent: 2 @@ -125571,56 +126458,56 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18430 + - uid: 18520 components: - pos: -8.5,-93.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18431 + - uid: 18521 components: - pos: -8.5,-92.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18432 + - uid: 18522 components: - pos: -7.5,-97.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18433 + - uid: 18523 components: - pos: -7.5,-96.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18434 + - uid: 18524 components: - pos: -7.5,-95.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18435 + - uid: 18525 components: - pos: -7.5,-94.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18436 + - uid: 18526 components: - pos: -8.5,-90.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18437 + - uid: 18527 components: - pos: -8.5,-89.5 parent: 2 @@ -125629,7 +126516,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18438 + - uid: 18528 components: - pos: -8.5,-88.5 parent: 2 @@ -125638,28 +126525,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18439 + - uid: 18529 components: - pos: -8.5,-87.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18440 + - uid: 18530 components: - pos: -8.5,-86.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18441 + - uid: 18531 components: - pos: -8.5,-85.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18442 + - uid: 18532 components: - rot: 3.141592653589793 rad pos: -6.5,-89.5 @@ -125669,7 +126556,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18443 + - uid: 18533 components: - rot: 3.141592653589793 rad pos: -6.5,-90.5 @@ -125677,7 +126564,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18444 + - uid: 18534 components: - rot: 3.141592653589793 rad pos: -6.5,-92.5 @@ -125685,7 +126572,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18445 + - uid: 18535 components: - rot: 3.141592653589793 rad pos: -6.5,-88.5 @@ -125695,7 +126582,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18446 + - uid: 18536 components: - rot: 3.141592653589793 rad pos: -6.5,-87.5 @@ -125705,7 +126592,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18447 + - uid: 18537 components: - rot: 3.141592653589793 rad pos: -6.5,-86.5 @@ -125715,7 +126602,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18448 + - uid: 18538 components: - rot: 3.141592653589793 rad pos: -6.5,-85.5 @@ -125723,7 +126610,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18449 + - uid: 18539 components: - rot: -1.5707963267948966 rad pos: -31.5,-96.5 @@ -125733,7 +126620,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18450 + - uid: 18540 components: - rot: -1.5707963267948966 rad pos: -31.5,-97.5 @@ -125741,7 +126628,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18451 + - uid: 18541 components: - rot: -1.5707963267948966 rad pos: -32.5,-96.5 @@ -125749,7 +126636,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18452 + - uid: 18542 components: - rot: -1.5707963267948966 rad pos: -32.5,-97.5 @@ -125757,7 +126644,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18453 + - uid: 18543 components: - rot: -1.5707963267948966 rad pos: -33.5,-96.5 @@ -125765,7 +126652,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18454 + - uid: 18544 components: - rot: -1.5707963267948966 rad pos: -33.5,-97.5 @@ -125773,7 +126660,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18455 + - uid: 18545 components: - rot: 1.5707963267948966 rad pos: 36.5,-72.5 @@ -125781,7 +126668,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18456 + - uid: 18546 components: - rot: 1.5707963267948966 rad pos: 63.5,-34.5 @@ -125789,14 +126676,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18457 + - uid: 18547 components: - pos: 70.5,-48.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18458 + - uid: 18548 components: - rot: -1.5707963267948966 rad pos: 61.5,-33.5 @@ -125804,7 +126691,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18459 + - uid: 18549 components: - rot: -1.5707963267948966 rad pos: 62.5,-33.5 @@ -125812,7 +126699,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18460 + - uid: 18550 components: - rot: -1.5707963267948966 rad pos: 63.5,-33.5 @@ -125820,7 +126707,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18461 + - uid: 18551 components: - rot: -1.5707963267948966 rad pos: 64.5,-33.5 @@ -125828,7 +126715,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18462 + - uid: 18552 components: - rot: -1.5707963267948966 rad pos: 66.5,-33.5 @@ -125836,7 +126723,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18463 + - uid: 18553 components: - rot: -1.5707963267948966 rad pos: 67.5,-33.5 @@ -125844,7 +126731,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18464 + - uid: 18554 components: - rot: -1.5707963267948966 rad pos: 66.5,-34.5 @@ -125852,7 +126739,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18465 + - uid: 18555 components: - rot: -1.5707963267948966 rad pos: 68.5,-34.5 @@ -125860,7 +126747,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18466 + - uid: 18556 components: - rot: -1.5707963267948966 rad pos: 69.5,-34.5 @@ -125868,7 +126755,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18467 + - uid: 18557 components: - rot: -1.5707963267948966 rad pos: 69.5,-33.5 @@ -125876,7 +126763,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18468 + - uid: 18558 components: - rot: -1.5707963267948966 rad pos: 70.5,-33.5 @@ -125884,7 +126771,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18469 + - uid: 18559 components: - rot: -1.5707963267948966 rad pos: 70.5,-34.5 @@ -125892,14 +126779,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18470 + - uid: 18560 components: - pos: 72.5,-32.5 parent: 2 type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 18471 + - uid: 18561 components: - rot: -1.5707963267948966 rad pos: 71.5,-34.5 @@ -125907,7 +126794,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18472 + - uid: 18562 components: - rot: -1.5707963267948966 rad pos: 72.5,-34.5 @@ -125915,70 +126802,70 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18473 + - uid: 18563 components: - pos: 74.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18474 + - uid: 18564 components: - pos: 74.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18475 + - uid: 18565 components: - pos: 74.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18476 + - uid: 18566 components: - pos: 74.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18477 + - uid: 18567 components: - pos: 74.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18478 + - uid: 18568 components: - pos: 74.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18479 + - uid: 18569 components: - pos: 75.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18480 + - uid: 18570 components: - pos: 75.5,-35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18481 + - uid: 18571 components: - pos: 75.5,-36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18482 + - uid: 18572 components: - rot: 1.5707963267948966 rad pos: 74.5,-37.5 @@ -125986,21 +126873,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18483 + - uid: 18573 components: - pos: 75.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18484 + - uid: 18574 components: - pos: 75.5,-39.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18485 + - uid: 18575 components: - rot: 3.141592653589793 rad pos: 72.5,-30.5 @@ -126008,7 +126895,7 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 18486 + - uid: 18576 components: - rot: 3.141592653589793 rad pos: 75.5,-41.5 @@ -126016,7 +126903,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18487 + - uid: 18577 components: - rot: 3.141592653589793 rad pos: 75.5,-42.5 @@ -126024,7 +126911,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18488 + - uid: 18578 components: - rot: 3.141592653589793 rad pos: 74.5,-42.5 @@ -126032,7 +126919,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18489 + - uid: 18579 components: - rot: 3.141592653589793 rad pos: 74.5,-43.5 @@ -126040,7 +126927,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18490 + - uid: 18580 components: - rot: 3.141592653589793 rad pos: 74.5,-44.5 @@ -126048,7 +126935,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18491 + - uid: 18581 components: - rot: 3.141592653589793 rad pos: 75.5,-43.5 @@ -126056,7 +126943,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18492 + - uid: 18582 components: - rot: 3.141592653589793 rad pos: 75.5,-44.5 @@ -126064,7 +126951,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18493 + - uid: 18583 components: - rot: 3.141592653589793 rad pos: 75.5,-45.5 @@ -126072,7 +126959,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18494 + - uid: 18584 components: - rot: 1.5707963267948966 rad pos: 71.5,-48.5 @@ -126080,7 +126967,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18495 + - uid: 18585 components: - rot: 1.5707963267948966 rad pos: 74.5,-46.5 @@ -126088,7 +126975,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18496 + - uid: 18586 components: - rot: 1.5707963267948966 rad pos: 69.5,-47.5 @@ -126096,7 +126983,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18497 + - uid: 18587 components: - rot: -1.5707963267948966 rad pos: 73.5,-45.5 @@ -126104,7 +126991,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18498 + - uid: 18588 components: - rot: -1.5707963267948966 rad pos: 72.5,-45.5 @@ -126112,21 +126999,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18499 + - uid: 18589 components: - pos: 5.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18500 + - uid: 18590 components: - pos: 5.5,-27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18501 + - uid: 18591 components: - rot: -1.5707963267948966 rad pos: 4.5,-25.5 @@ -126134,7 +127021,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18502 + - uid: 18592 components: - rot: -1.5707963267948966 rad pos: 62.5,-11.5 @@ -126142,7 +127029,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18503 + - uid: 18593 components: - pos: 66.5,-39.5 parent: 2 @@ -126151,7 +127038,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18504 + - uid: 18594 components: - rot: 1.5707963267948966 rad pos: 73.5,-37.5 @@ -126159,7 +127046,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18505 + - uid: 18595 components: - rot: -1.5707963267948966 rad pos: 70.5,-36.5 @@ -126167,7 +127054,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18506 + - uid: 18596 components: - rot: -1.5707963267948966 rad pos: 68.5,-36.5 @@ -126175,7 +127062,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18507 + - uid: 18597 components: - rot: -1.5707963267948966 rad pos: 69.5,-37.5 @@ -126183,7 +127070,7 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 18508 + - uid: 18598 components: - rot: -1.5707963267948966 rad pos: 69.5,-36.5 @@ -126193,14 +127080,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18509 + - uid: 18599 components: - pos: 71.5,-32.5 parent: 2 type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 18510 + - uid: 18600 components: - rot: 1.5707963267948966 rad pos: 71.5,-33.5 @@ -126208,7 +127095,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18511 + - uid: 18601 components: - rot: 1.5707963267948966 rad pos: 72.5,-33.5 @@ -126216,12 +127103,12 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18512 + - uid: 18602 components: - pos: -55.5,-62.5 parent: 2 type: Transform - - uid: 18513 + - uid: 18603 components: - rot: -1.5707963267948966 rad pos: 71.5,-38.5 @@ -126229,7 +127116,7 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 18514 + - uid: 18604 components: - rot: -1.5707963267948966 rad pos: 69.5,-38.5 @@ -126239,7 +127126,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18515 + - uid: 18605 components: - rot: 3.141592653589793 rad pos: 73.5,-31.5 @@ -126247,7 +127134,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18516 + - uid: 18606 components: - rot: 3.141592653589793 rad pos: 73.5,-30.5 @@ -126257,7 +127144,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18517 + - uid: 18607 components: - pos: 5.5,-28.5 parent: 2 @@ -126266,14 +127153,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18518 + - uid: 18608 components: - pos: 5.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18519 + - uid: 18609 components: - rot: 1.5707963267948966 rad pos: 60.5,-34.5 @@ -126281,7 +127168,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18520 + - uid: 18610 components: - rot: 3.141592653589793 rad pos: 55.5,-50.5 @@ -126289,31 +127176,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 18521 + - uid: 18611 components: - rot: 3.141592653589793 rad pos: 55.5,-49.5 parent: 2 type: Transform - - uid: 18522 + - uid: 18612 components: - rot: 1.5707963267948966 rad pos: 54.5,-48.5 parent: 2 type: Transform - - uid: 18523 + - uid: 18613 components: - pos: -54.5,-62.5 parent: 2 type: Transform - - uid: 18524 + - uid: 18614 components: - pos: -54.5,-61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 18525 + - uid: 18615 components: - rot: -1.5707963267948966 rad pos: 61.5,-11.5 @@ -126321,7 +127208,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18526 + - uid: 18616 components: - rot: -1.5707963267948966 rad pos: 60.5,-11.5 @@ -126329,7 +127216,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18527 + - uid: 18617 components: - rot: -1.5707963267948966 rad pos: 59.5,-11.5 @@ -126337,7 +127224,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18528 + - uid: 18618 components: - rot: -1.5707963267948966 rad pos: 58.5,-11.5 @@ -126345,7 +127232,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18529 + - uid: 18619 components: - rot: -1.5707963267948966 rad pos: 57.5,-11.5 @@ -126353,7 +127240,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18530 + - uid: 18620 components: - rot: -1.5707963267948966 rad pos: 56.5,-11.5 @@ -126361,7 +127248,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18531 + - uid: 18621 components: - rot: 1.5707963267948966 rad pos: 54.5,-6.5 @@ -126369,7 +127256,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18532 + - uid: 18622 components: - rot: 1.5707963267948966 rad pos: 55.5,-6.5 @@ -126377,7 +127264,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18533 + - uid: 18623 components: - rot: 1.5707963267948966 rad pos: 56.5,-6.5 @@ -126385,7 +127272,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18534 + - uid: 18624 components: - rot: 1.5707963267948966 rad pos: 57.5,-6.5 @@ -126393,7 +127280,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18535 + - uid: 18625 components: - rot: 1.5707963267948966 rad pos: 58.5,-6.5 @@ -126401,7 +127288,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18536 + - uid: 18626 components: - rot: 1.5707963267948966 rad pos: 59.5,-6.5 @@ -126409,7 +127296,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18537 + - uid: 18627 components: - rot: 1.5707963267948966 rad pos: 60.5,-6.5 @@ -126417,7 +127304,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18538 + - uid: 18628 components: - rot: 1.5707963267948966 rad pos: 31.5,-72.5 @@ -126425,7 +127312,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18539 + - uid: 18629 components: - rot: 1.5707963267948966 rad pos: 35.5,-72.5 @@ -126433,7 +127320,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18540 + - uid: 18630 components: - rot: 1.5707963267948966 rad pos: -19.5,25.5 @@ -126441,7 +127328,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18541 + - uid: 18631 components: - rot: 1.5707963267948966 rad pos: -18.5,25.5 @@ -126449,7 +127336,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18542 + - uid: 18632 components: - rot: 1.5707963267948966 rad pos: -17.5,25.5 @@ -126457,7 +127344,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18543 + - uid: 18633 components: - rot: 1.5707963267948966 rad pos: -16.5,25.5 @@ -126465,7 +127352,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18544 + - uid: 18634 components: - rot: 1.5707963267948966 rad pos: -17.5,24.5 @@ -126475,7 +127362,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18545 + - uid: 18635 components: - rot: 1.5707963267948966 rad pos: -16.5,24.5 @@ -126483,7 +127370,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18546 + - uid: 18636 components: - rot: -1.5707963267948966 rad pos: 71.5,-36.5 @@ -126491,7 +127378,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18547 + - uid: 18637 components: - rot: -1.5707963267948966 rad pos: 71.5,-37.5 @@ -126499,14 +127386,14 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 18548 + - uid: 18638 components: - pos: -5.5,-9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18549 + - uid: 18639 components: - rot: -1.5707963267948966 rad pos: -4.5,-12.5 @@ -126514,7 +127401,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18550 + - uid: 18640 components: - rot: -1.5707963267948966 rad pos: -5.5,-12.5 @@ -126522,7 +127409,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18551 + - uid: 18641 components: - rot: -1.5707963267948966 rad pos: -6.5,-12.5 @@ -126530,7 +127417,9 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18552 + - enabled: True + type: AmbientSound + - uid: 18642 components: - rot: -1.5707963267948966 rad pos: -7.5,-12.5 @@ -126538,7 +127427,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18553 + - uid: 18643 components: - rot: -1.5707963267948966 rad pos: -6.5,-14.5 @@ -126546,9 +127435,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18554 + - uid: 18644 components: - rot: -1.5707963267948966 rad pos: -7.5,-14.5 @@ -126556,7 +127443,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18555 + - uid: 18645 components: - rot: 3.141592653589793 rad pos: -11.5,-23.5 @@ -126564,7 +127451,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18556 + - uid: 18646 components: - rot: 3.141592653589793 rad pos: -11.5,-21.5 @@ -126572,7 +127459,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18557 + - uid: 18647 components: - rot: 3.141592653589793 rad pos: -11.5,-20.5 @@ -126582,7 +127469,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18558 + - uid: 18648 components: - rot: 3.141592653589793 rad pos: -11.5,-19.5 @@ -126590,7 +127477,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18559 + - uid: 18649 components: - rot: 3.141592653589793 rad pos: -10.5,-19.5 @@ -126598,7 +127485,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18560 + - uid: 18650 components: - rot: 3.141592653589793 rad pos: -10.5,-20.5 @@ -126608,7 +127495,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18561 + - uid: 18651 components: - rot: -1.5707963267948966 rad pos: -9.5,-21.5 @@ -126616,7 +127503,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18562 + - uid: 18652 components: - pos: -25.5,-58.5 parent: 2 @@ -126625,7 +127512,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18563 + - uid: 18653 components: - rot: 3.141592653589793 rad pos: -28.5,-72.5 @@ -126635,7 +127522,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18564 + - uid: 18654 components: - rot: 3.141592653589793 rad pos: -28.5,-73.5 @@ -126643,7 +127530,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18565 + - uid: 18655 components: - rot: 3.141592653589793 rad pos: -30.5,-72.5 @@ -126653,7 +127540,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18566 + - uid: 18656 components: - rot: 3.141592653589793 rad pos: -30.5,-73.5 @@ -126661,7 +127548,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18567 + - uid: 18657 components: - rot: 1.5707963267948966 rad pos: 34.5,-72.5 @@ -126669,7 +127556,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18568 + - uid: 18658 components: - rot: 1.5707963267948966 rad pos: 33.5,-72.5 @@ -126677,7 +127564,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18569 + - uid: 18659 components: - rot: -1.5707963267948966 rad pos: -45.5,-35.5 @@ -126685,7 +127572,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 18570 + - uid: 18660 components: - rot: -1.5707963267948966 rad pos: -46.5,-35.5 @@ -126693,7 +127580,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 18571 + - uid: 18661 components: - rot: -1.5707963267948966 rad pos: -47.5,-35.5 @@ -126701,7 +127588,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 18572 + - uid: 18662 components: - rot: 3.141592653589793 rad pos: 30.5,-80.5 @@ -126709,7 +127596,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18573 + - uid: 18663 components: - rot: 3.141592653589793 rad pos: 47.5,-76.5 @@ -126717,7 +127604,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18574 + - uid: 18664 components: - rot: 3.141592653589793 rad pos: 47.5,-77.5 @@ -126725,7 +127612,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18575 + - uid: 18665 components: - rot: 3.141592653589793 rad pos: 47.5,-78.5 @@ -126733,7 +127620,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18576 + - uid: 18666 components: - rot: 3.141592653589793 rad pos: 29.5,-82.5 @@ -126741,7 +127628,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18577 + - uid: 18667 components: - rot: 1.5707963267948966 rad pos: 47.5,-73.5 @@ -126749,7 +127636,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18578 + - uid: 18668 components: - rot: 3.141592653589793 rad pos: 48.5,-80.5 @@ -126757,7 +127644,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18579 + - uid: 18669 components: - rot: 1.5707963267948966 rad pos: 43.5,-72.5 @@ -126765,7 +127652,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18580 + - uid: 18670 components: - rot: 3.141592653589793 rad pos: 29.5,-75.5 @@ -126773,7 +127660,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18581 + - uid: 18671 components: - rot: 1.5707963267948966 rad pos: 29.5,-72.5 @@ -126781,7 +127668,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18582 + - uid: 18672 components: - rot: 1.5707963267948966 rad pos: 28.5,-72.5 @@ -126789,7 +127676,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18583 + - uid: 18673 components: - rot: 1.5707963267948966 rad pos: 27.5,-72.5 @@ -126797,7 +127684,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18584 + - uid: 18674 components: - rot: 1.5707963267948966 rad pos: 26.5,-72.5 @@ -126805,7 +127692,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18585 + - uid: 18675 components: - rot: 1.5707963267948966 rad pos: 39.5,-73.5 @@ -126813,7 +127700,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18586 + - uid: 18676 components: - rot: 1.5707963267948966 rad pos: 38.5,-73.5 @@ -126821,7 +127708,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18587 + - uid: 18677 components: - rot: 1.5707963267948966 rad pos: 37.5,-73.5 @@ -126829,7 +127716,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18588 + - uid: 18678 components: - rot: 1.5707963267948966 rad pos: 36.5,-73.5 @@ -126837,7 +127724,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18589 + - uid: 18679 components: - rot: 1.5707963267948966 rad pos: 35.5,-73.5 @@ -126845,7 +127732,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18590 + - uid: 18680 components: - rot: 1.5707963267948966 rad pos: 34.5,-73.5 @@ -126853,7 +127740,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18591 + - uid: 18681 components: - rot: 1.5707963267948966 rad pos: 33.5,-73.5 @@ -126861,7 +127748,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18592 + - uid: 18682 components: - rot: 1.5707963267948966 rad pos: 31.5,-73.5 @@ -126869,7 +127756,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18593 + - uid: 18683 components: - rot: 1.5707963267948966 rad pos: 30.5,-73.5 @@ -126877,7 +127764,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18594 + - uid: 18684 components: - rot: 3.141592653589793 rad pos: 29.5,-74.5 @@ -126885,7 +127772,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18595 + - uid: 18685 components: - rot: 1.5707963267948966 rad pos: 28.5,-73.5 @@ -126893,7 +127780,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18596 + - uid: 18686 components: - rot: 1.5707963267948966 rad pos: 27.5,-73.5 @@ -126901,7 +127788,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18597 + - uid: 18687 components: - rot: 1.5707963267948966 rad pos: 26.5,-73.5 @@ -126909,7 +127796,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18598 + - uid: 18688 components: - rot: -1.5707963267948966 rad pos: 25.5,-73.5 @@ -126917,7 +127804,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18599 + - uid: 18689 components: - rot: 1.5707963267948966 rad pos: 26.5,-82.5 @@ -126925,7 +127812,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18600 + - uid: 18690 components: - rot: 3.141592653589793 rad pos: 29.5,-76.5 @@ -126933,7 +127820,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18601 + - uid: 18691 components: - rot: 3.141592653589793 rad pos: 29.5,-77.5 @@ -126941,7 +127828,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18602 + - uid: 18692 components: - rot: 1.5707963267948966 rad pos: 27.5,-82.5 @@ -126949,7 +127836,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18603 + - uid: 18693 components: - rot: 1.5707963267948966 rad pos: 28.5,-82.5 @@ -126957,7 +127844,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18604 + - uid: 18694 components: - rot: 1.5707963267948966 rad pos: 24.5,-83.5 @@ -126965,7 +127852,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18605 + - uid: 18695 components: - rot: 1.5707963267948966 rad pos: 25.5,-83.5 @@ -126973,7 +127860,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18606 + - uid: 18696 components: - rot: 1.5707963267948966 rad pos: 26.5,-83.5 @@ -126981,7 +127868,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18607 + - uid: 18697 components: - rot: 1.5707963267948966 rad pos: 27.5,-83.5 @@ -126989,7 +127876,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18608 + - uid: 18698 components: - rot: 1.5707963267948966 rad pos: 28.5,-83.5 @@ -126997,7 +127884,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18609 + - uid: 18699 components: - rot: -1.5707963267948966 rad pos: 23.5,-82.5 @@ -127007,7 +127894,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18610 + - uid: 18700 components: - rot: -1.5707963267948966 rad pos: 22.5,-82.5 @@ -127017,7 +127904,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18611 + - uid: 18701 components: - rot: -1.5707963267948966 rad pos: 21.5,-82.5 @@ -127027,7 +127914,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18612 + - uid: 18702 components: - rot: -1.5707963267948966 rad pos: 20.5,-82.5 @@ -127037,7 +127924,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18613 + - uid: 18703 components: - rot: -1.5707963267948966 rad pos: 19.5,-82.5 @@ -127045,7 +127932,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18614 + - uid: 18704 components: - rot: -1.5707963267948966 rad pos: 23.5,-83.5 @@ -127053,7 +127940,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18615 + - uid: 18705 components: - rot: -1.5707963267948966 rad pos: 22.5,-83.5 @@ -127061,7 +127948,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18616 + - uid: 18706 components: - rot: -1.5707963267948966 rad pos: 21.5,-83.5 @@ -127069,7 +127956,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18617 + - uid: 18707 components: - rot: -1.5707963267948966 rad pos: 20.5,-83.5 @@ -127077,7 +127964,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18618 + - uid: 18708 components: - rot: -1.5707963267948966 rad pos: 29.5,-82.5 @@ -127085,7 +127972,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18619 + - uid: 18709 components: - rot: 1.5707963267948966 rad pos: 25.5,-82.5 @@ -127093,7 +127980,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18620 + - uid: 18710 components: - rot: 1.5707963267948966 rad pos: 24.5,-82.5 @@ -127101,7 +127988,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18621 + - uid: 18711 components: - rot: 3.141592653589793 rad pos: 30.5,-74.5 @@ -127109,7 +127996,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18622 + - uid: 18712 components: - rot: 3.141592653589793 rad pos: 30.5,-78.5 @@ -127117,7 +128004,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18623 + - uid: 18713 components: - rot: 3.141592653589793 rad pos: 30.5,-77.5 @@ -127125,7 +128012,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18624 + - uid: 18714 components: - rot: 3.141592653589793 rad pos: 30.5,-75.5 @@ -127133,7 +128020,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18625 + - uid: 18715 components: - rot: 3.141592653589793 rad pos: 30.5,-76.5 @@ -127141,7 +128028,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18626 + - uid: 18716 components: - rot: 3.141592653589793 rad pos: 30.5,-79.5 @@ -127149,7 +128036,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18627 + - uid: 18717 components: - rot: 1.5707963267948966 rad pos: 41.5,-73.5 @@ -127157,7 +128044,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18628 + - uid: 18718 components: - rot: 3.141592653589793 rad pos: 48.5,-74.5 @@ -127165,7 +128052,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18629 + - uid: 18719 components: - rot: 3.141592653589793 rad pos: 48.5,-76.5 @@ -127173,7 +128060,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18630 + - uid: 18720 components: - rot: 3.141592653589793 rad pos: 48.5,-83.5 @@ -127181,7 +128068,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18631 + - uid: 18721 components: - rot: 3.141592653589793 rad pos: 48.5,-84.5 @@ -127189,7 +128076,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18632 + - uid: 18722 components: - rot: 3.141592653589793 rad pos: 48.5,-77.5 @@ -127197,7 +128084,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18633 + - uid: 18723 components: - rot: 3.141592653589793 rad pos: 48.5,-78.5 @@ -127205,7 +128092,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18634 + - uid: 18724 components: - rot: 3.141592653589793 rad pos: 48.5,-81.5 @@ -127213,7 +128100,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18635 + - uid: 18725 components: - rot: 3.141592653589793 rad pos: 48.5,-82.5 @@ -127221,7 +128108,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18636 + - uid: 18726 components: - rot: 1.5707963267948966 rad pos: 44.5,-72.5 @@ -127229,7 +128116,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18637 + - uid: 18727 components: - rot: 1.5707963267948966 rad pos: 42.5,-72.5 @@ -127237,7 +128124,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18638 + - uid: 18728 components: - rot: 3.141592653589793 rad pos: 47.5,-84.5 @@ -127245,7 +128132,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18639 + - uid: 18729 components: - rot: 3.141592653589793 rad pos: 47.5,-74.5 @@ -127253,7 +128140,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18640 + - uid: 18730 components: - rot: 3.141592653589793 rad pos: 47.5,-75.5 @@ -127261,7 +128148,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18641 + - uid: 18731 components: - rot: 1.5707963267948966 rad pos: 45.5,-73.5 @@ -127269,7 +128156,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18642 + - uid: 18732 components: - rot: 1.5707963267948966 rad pos: 46.5,-73.5 @@ -127277,7 +128164,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18643 + - uid: 18733 components: - rot: 3.141592653589793 rad pos: 47.5,-85.5 @@ -127285,7 +128172,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18644 + - uid: 18734 components: - rot: 3.141592653589793 rad pos: 47.5,-81.5 @@ -127293,7 +128180,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18645 + - uid: 18735 components: - rot: 3.141592653589793 rad pos: 47.5,-82.5 @@ -127301,7 +128188,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18646 + - uid: 18736 components: - rot: 3.141592653589793 rad pos: 47.5,-83.5 @@ -127309,7 +128196,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18647 + - uid: 18737 components: - rot: 1.5707963267948966 rad pos: -21.5,66.5 @@ -127317,7 +128204,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18648 + - uid: 18738 components: - rot: 1.5707963267948966 rad pos: -20.5,66.5 @@ -127325,7 +128212,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18649 + - uid: 18739 components: - rot: 1.5707963267948966 rad pos: -19.5,66.5 @@ -127333,7 +128220,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18650 + - uid: 18740 components: - rot: 1.5707963267948966 rad pos: -15.5,66.5 @@ -127341,7 +128228,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18651 + - uid: 18741 components: - rot: 1.5707963267948966 rad pos: -14.5,66.5 @@ -127349,7 +128236,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18652 + - uid: 18742 components: - rot: -1.5707963267948966 rad pos: 32.5,-72.5 @@ -127357,7 +128244,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18653 + - uid: 18743 components: - rot: -1.5707963267948966 rad pos: 32.5,-73.5 @@ -127365,7 +128252,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18654 + - uid: 18744 components: - rot: -1.5707963267948966 rad pos: 14.5,-22.5 @@ -127373,7 +128260,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18655 + - uid: 18745 components: - rot: -1.5707963267948966 rad pos: 13.5,-22.5 @@ -127383,7 +128270,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18656 + - uid: 18746 components: - rot: -1.5707963267948966 rad pos: 12.5,-22.5 @@ -127391,7 +128278,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18657 + - uid: 18747 components: - rot: -1.5707963267948966 rad pos: 11.5,-22.5 @@ -127399,7 +128286,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18658 + - uid: 18748 components: - rot: -1.5707963267948966 rad pos: 10.5,-22.5 @@ -127407,7 +128294,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18659 + - uid: 18749 components: - rot: -1.5707963267948966 rad pos: 9.5,-22.5 @@ -127415,7 +128302,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18660 + - uid: 18750 components: - rot: -1.5707963267948966 rad pos: 8.5,-22.5 @@ -127423,28 +128310,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18661 + - uid: 18751 components: - pos: 12.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18662 + - uid: 18752 components: - pos: 12.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18663 + - uid: 18753 components: - pos: 12.5,-23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18664 + - uid: 18754 components: - pos: 12.5,-24.5 parent: 2 @@ -127453,7 +128340,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18665 + - uid: 18755 components: - rot: 3.141592653589793 rad pos: 40.5,9.5 @@ -127461,7 +128348,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18666 + - uid: 18756 components: - rot: 3.141592653589793 rad pos: 40.5,8.5 @@ -127469,7 +128356,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18667 + - uid: 18757 components: - rot: 1.5707963267948966 rad pos: 43.5,6.5 @@ -127477,7 +128364,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18668 + - uid: 18758 components: - rot: 1.5707963267948966 rad pos: 44.5,6.5 @@ -127485,7 +128372,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18669 + - uid: 18759 components: - rot: 1.5707963267948966 rad pos: 41.5,5.5 @@ -127493,7 +128380,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18670 + - uid: 18760 components: - rot: 1.5707963267948966 rad pos: 42.5,5.5 @@ -127501,7 +128388,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18671 + - uid: 18761 components: - rot: 1.5707963267948966 rad pos: 43.5,5.5 @@ -127511,7 +128398,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18672 + - uid: 18762 components: - rot: 1.5707963267948966 rad pos: 44.5,5.5 @@ -127519,7 +128406,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18673 + - uid: 18763 components: - rot: 1.5707963267948966 rad pos: -46.5,31.5 @@ -127527,147 +128414,147 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18674 + - uid: 18764 components: - pos: -47.5,33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18675 + - uid: 18765 components: - pos: -47.5,32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18676 + - uid: 18766 components: - pos: -45.5,34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18677 + - uid: 18767 components: - pos: -45.5,35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18678 + - uid: 18768 components: - pos: -45.5,36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18679 + - uid: 18769 components: - pos: -45.5,37.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18680 + - uid: 18770 components: - pos: -45.5,38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18681 + - uid: 18771 components: - pos: -45.5,39.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18682 + - uid: 18772 components: - pos: -45.5,40.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18683 + - uid: 18773 components: - pos: -45.5,41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18684 + - uid: 18774 components: - pos: -45.5,42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18685 + - uid: 18775 components: - pos: -46.5,35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18686 + - uid: 18776 components: - pos: -46.5,36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18687 + - uid: 18777 components: - pos: -46.5,37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18688 + - uid: 18778 components: - pos: -46.5,38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18689 + - uid: 18779 components: - pos: -46.5,39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18690 + - uid: 18780 components: - pos: -46.5,40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18691 + - uid: 18781 components: - pos: -46.5,41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18692 + - uid: 18782 components: - pos: -46.5,42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18693 + - uid: 18783 components: - pos: 68.5,-32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18694 + - uid: 18784 components: - rot: 1.5707963267948966 rad pos: 64.5,-31.5 @@ -127675,7 +128562,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18695 + - uid: 18785 components: - rot: 1.5707963267948966 rad pos: 65.5,-31.5 @@ -127685,7 +128572,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18696 + - uid: 18786 components: - rot: 1.5707963267948966 rad pos: 66.5,-31.5 @@ -127695,7 +128582,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18697 + - uid: 18787 components: - rot: 3.141592653589793 rad pos: -3.5,10.5 @@ -127703,14 +128590,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18698 + - uid: 18788 components: - pos: -3.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18699 + - uid: 18789 components: - rot: -1.5707963267948966 rad pos: -70.5,-40.5 @@ -127720,7 +128607,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18700 + - uid: 18790 components: - rot: -1.5707963267948966 rad pos: -64.5,-43.5 @@ -127728,7 +128615,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 18701 + - uid: 18791 components: - pos: -70.5,-45.5 parent: 2 @@ -127737,7 +128624,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18702 + - uid: 18792 components: - rot: 1.5707963267948966 rad pos: -74.5,-41.5 @@ -127745,7 +128632,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 18703 + - uid: 18793 components: - rot: 1.5707963267948966 rad pos: -74.5,-42.5 @@ -127755,7 +128642,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18704 + - uid: 18794 components: - rot: 1.5707963267948966 rad pos: -75.5,-42.5 @@ -127763,7 +128650,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18705 + - uid: 18795 components: - rot: 1.5707963267948966 rad pos: -75.5,-40.5 @@ -127771,7 +128658,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18706 + - uid: 18796 components: - rot: 1.5707963267948966 rad pos: -73.5,-40.5 @@ -127781,7 +128668,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18707 + - uid: 18797 components: - rot: 1.5707963267948966 rad pos: -74.5,-40.5 @@ -127791,7 +128678,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18708 + - uid: 18798 components: - rot: 1.5707963267948966 rad pos: -68.5,-41.5 @@ -127801,7 +128688,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18709 + - uid: 18799 components: - rot: 1.5707963267948966 rad pos: -69.5,-41.5 @@ -127811,26 +128698,26 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18710 + - uid: 18800 components: - pos: -44.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 18711 + - uid: 18801 components: - pos: -44.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 18712 + - uid: 18802 components: - pos: -44.5,-38.5 parent: 2 type: Transform - - uid: 18713 + - uid: 18803 components: - rot: -1.5707963267948966 rad pos: -50.5,-23.5 @@ -127838,7 +128725,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18714 + - uid: 18804 components: - rot: -1.5707963267948966 rad pos: -48.5,-23.5 @@ -127846,7 +128733,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18715 + - uid: 18805 components: - rot: -1.5707963267948966 rad pos: -47.5,-23.5 @@ -127854,7 +128741,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18716 + - uid: 18806 components: - rot: -1.5707963267948966 rad pos: -46.5,-23.5 @@ -127862,9 +128749,171 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor + - uid: 18807 + components: + - pos: 2.5,-3.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 18808 + components: + - pos: -0.5,-3.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 18809 + components: + - pos: -1.5,-2.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 18810 + components: + - pos: -0.5,-2.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 18811 + components: + - pos: -0.5,-1.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 18812 + components: + - pos: -0.5,0.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 18813 + components: + - pos: -0.5,-0.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 18814 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-21.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 18815 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-21.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 18816 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-23.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 18817 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-21.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 18818 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-24.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 18819 + components: + - pos: 28.5,-36.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 18820 + components: + - pos: 28.5,-37.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 18821 + components: + - pos: 22.5,-36.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - proto: GasPipeTJunction entities: - - uid: 18717 + - uid: 18822 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-30.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 18823 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-29.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 18824 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-25.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 18825 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-21.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 18826 + components: + - pos: -0.5,1.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 18827 + components: + - pos: -1.5,-1.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 18828 components: - rot: 1.5707963267948966 rad pos: -50.5,-19.5 @@ -127872,7 +128921,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18718 + - uid: 18829 components: - rot: 1.5707963267948966 rad pos: -51.5,-23.5 @@ -127880,7 +128929,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18719 + - uid: 18830 components: - pos: -71.5,-42.5 parent: 2 @@ -127889,7 +128938,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18720 + - uid: 18831 components: - rot: 1.5707963267948966 rad pos: -70.5,-39.5 @@ -127899,7 +128948,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18721 + - uid: 18832 components: - rot: 1.5707963267948966 rad pos: -72.5,-37.5 @@ -127907,7 +128956,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18722 + - uid: 18833 components: - rot: -1.5707963267948966 rad pos: -73.5,-31.5 @@ -127915,7 +128964,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18723 + - uid: 18834 components: - rot: 3.141592653589793 rad pos: -69.5,-39.5 @@ -127925,7 +128974,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18724 + - uid: 18835 components: - rot: 3.141592653589793 rad pos: -66.5,-39.5 @@ -127935,7 +128984,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18725 + - uid: 18836 components: - rot: 3.141592653589793 rad pos: -68.5,-39.5 @@ -127945,7 +128994,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18726 + - uid: 18837 components: - rot: 3.141592653589793 rad pos: -67.5,-39.5 @@ -127955,7 +129004,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18727 + - uid: 18838 components: - rot: 1.5707963267948966 rad pos: -71.5,-31.5 @@ -127963,7 +129012,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18728 + - uid: 18839 components: - rot: 3.141592653589793 rad pos: -71.5,-46.5 @@ -127973,7 +129022,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18729 + - uid: 18840 components: - rot: 1.5707963267948966 rad pos: -68.5,-43.5 @@ -127983,7 +129032,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18730 + - uid: 18841 components: - rot: 3.141592653589793 rad pos: -67.5,-46.5 @@ -127993,7 +129042,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18731 + - uid: 18842 components: - rot: 1.5707963267948966 rad pos: -67.5,-44.5 @@ -128003,7 +129052,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18732 + - uid: 18843 components: - rot: 1.5707963267948966 rad pos: -3.5,11.5 @@ -128011,7 +129060,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18733 + - uid: 18844 components: - rot: 1.5707963267948966 rad pos: 63.5,-31.5 @@ -128019,7 +129068,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18734 + - uid: 18845 components: - rot: 1.5707963267948966 rad pos: 40.5,5.5 @@ -128027,28 +129076,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18735 + - uid: 18846 components: - pos: 28.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18736 + - uid: 18847 components: - pos: -8.5,-53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18738 + - uid: 18848 components: - pos: -12.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18739 + - uid: 18849 components: - rot: -1.5707963267948966 rad pos: 26.5,-7.5 @@ -128056,7 +129105,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18740 + - uid: 18850 components: - rot: 1.5707963267948966 rad pos: 8.5,10.5 @@ -128064,7 +129113,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18741 + - uid: 18851 components: - rot: 1.5707963267948966 rad pos: 8.5,0.5 @@ -128072,7 +129121,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18742 + - uid: 18852 components: - rot: -1.5707963267948966 rad pos: -11.5,-38.5 @@ -128080,7 +129129,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18743 + - uid: 18853 components: - rot: -1.5707963267948966 rad pos: 7.5,14.5 @@ -128088,7 +129137,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18745 + - uid: 18854 components: - rot: 3.141592653589793 rad pos: 22.5,21.5 @@ -128096,7 +129145,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18746 + - uid: 18855 components: - rot: 3.141592653589793 rad pos: 2.5,-60.5 @@ -128104,21 +129153,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18747 + - uid: 18856 components: - pos: -5.5,-60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18748 + - uid: 18857 components: - pos: -8.5,-61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18749 + - uid: 18858 components: - rot: 1.5707963267948966 rad pos: -8.5,-64.5 @@ -128126,7 +129175,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18750 + - uid: 18859 components: - rot: 3.141592653589793 rad pos: -24.5,-80.5 @@ -128134,7 +129183,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18751 + - uid: 18860 components: - rot: -1.5707963267948966 rad pos: 20.5,13.5 @@ -128142,7 +129191,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18752 + - uid: 18861 components: - rot: 3.141592653589793 rad pos: 31.5,-43.5 @@ -128150,7 +129199,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18753 + - uid: 18862 components: - rot: 3.141592653589793 rad pos: 17.5,-43.5 @@ -128158,7 +129207,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18754 + - uid: 18863 components: - rot: 1.5707963267948966 rad pos: 35.5,8.5 @@ -128168,7 +129217,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18755 + - uid: 18864 components: - rot: -1.5707963267948966 rad pos: 26.5,10.5 @@ -128176,14 +129225,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18756 + - uid: 18865 components: - pos: 7.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18757 + - uid: 18866 components: - rot: -1.5707963267948966 rad pos: 0.5,13.5 @@ -128191,14 +129240,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18758 + - uid: 18867 components: - pos: -24.5,-57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18759 + - uid: 18868 components: - rot: -1.5707963267948966 rad pos: 2.5,-1.5 @@ -128206,7 +129255,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18760 + - uid: 18869 components: - rot: 1.5707963267948966 rad pos: 2.5,0.5 @@ -128214,7 +129263,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18761 + - uid: 18870 components: - rot: 1.5707963267948966 rad pos: -20.5,-33.5 @@ -128222,7 +129271,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18762 + - uid: 18871 components: - rot: 1.5707963267948966 rad pos: 15.5,-29.5 @@ -128230,7 +129279,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18763 + - uid: 18872 components: - rot: 3.141592653589793 rad pos: -11.5,-41.5 @@ -128238,7 +129287,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18764 + - uid: 18873 components: - rot: -1.5707963267948966 rad pos: -14.5,-43.5 @@ -128246,7 +129295,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18765 + - uid: 18874 components: - rot: 3.141592653589793 rad pos: -17.5,-60.5 @@ -128254,7 +129303,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18766 + - uid: 18875 components: - rot: 3.141592653589793 rad pos: -9.5,-42.5 @@ -128262,21 +129311,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18767 + - uid: 18876 components: - pos: -0.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18768 + - uid: 18877 components: - pos: -8.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18769 + - uid: 18878 components: - rot: -1.5707963267948966 rad pos: -7.5,-60.5 @@ -128284,7 +129333,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18770 + - uid: 18879 components: - rot: -1.5707963267948966 rad pos: -3.5,-59.5 @@ -128292,7 +129341,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18771 + - uid: 18880 components: - rot: 1.5707963267948966 rad pos: 35.5,5.5 @@ -128302,7 +129351,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18772 + - uid: 18881 components: - rot: 3.141592653589793 rad pos: 28.5,9.5 @@ -128312,7 +129361,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18773 + - uid: 18882 components: - rot: -1.5707963267948966 rad pos: 17.5,-0.5 @@ -128320,14 +129369,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18774 + - uid: 18883 components: - pos: 41.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18775 + - uid: 18884 components: - rot: 3.141592653589793 rad pos: 33.5,1.5 @@ -128335,7 +129384,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18776 + - uid: 18885 components: - rot: 1.5707963267948966 rad pos: 23.5,17.5 @@ -128343,7 +129392,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18777 + - uid: 18886 components: - rot: 1.5707963267948966 rad pos: 7.5,16.5 @@ -128351,14 +129400,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18778 + - uid: 18887 components: - pos: 44.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18779 + - uid: 18888 components: - rot: 3.141592653589793 rad pos: -3.5,-42.5 @@ -128366,7 +129415,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18780 + - uid: 18889 components: - rot: 3.141592653589793 rad pos: 12.5,-27.5 @@ -128374,14 +129423,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18781 + - uid: 18890 components: - pos: -7.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18782 + - uid: 18891 components: - rot: 3.141592653589793 rad pos: 33.5,-16.5 @@ -128389,7 +129438,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18783 + - uid: 18892 components: - rot: 1.5707963267948966 rad pos: -18.5,-25.5 @@ -128397,7 +129446,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18784 + - uid: 18893 components: - rot: 3.141592653589793 rad pos: -8.5,1.5 @@ -128405,7 +129454,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18785 + - uid: 18894 components: - rot: 3.141592653589793 rad pos: 17.5,13.5 @@ -128413,14 +129462,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18786 + - uid: 18895 components: - pos: 28.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18787 + - uid: 18896 components: - rot: -1.5707963267948966 rad pos: 38.5,8.5 @@ -128428,7 +129477,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18788 + - uid: 18897 components: - rot: -1.5707963267948966 rad pos: 38.5,5.5 @@ -128436,7 +129485,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18789 + - uid: 18898 components: - rot: -1.5707963267948966 rad pos: 38.5,11.5 @@ -128444,14 +129493,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18790 + - uid: 18899 components: - pos: 34.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18791 + - uid: 18900 components: - rot: 3.141592653589793 rad pos: -8.5,-27.5 @@ -128459,7 +129508,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18792 + - uid: 18901 components: - rot: -1.5707963267948966 rad pos: -8.5,2.5 @@ -128467,7 +129516,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18793 + - uid: 18902 components: - rot: 3.141592653589793 rad pos: 2.5,-27.5 @@ -128475,7 +129524,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18794 + - uid: 18903 components: - rot: 3.141592653589793 rad pos: 12.5,16.5 @@ -128483,7 +129532,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18795 + - uid: 18904 components: - rot: 3.141592653589793 rad pos: -5.5,-41.5 @@ -128491,14 +129540,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18796 + - uid: 18905 components: - pos: 3.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18797 + - uid: 18906 components: - rot: 3.141592653589793 rad pos: 8.5,-0.5 @@ -128506,7 +129555,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18798 + - uid: 18907 components: - rot: 3.141592653589793 rad pos: 16.5,16.5 @@ -128514,7 +129563,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18799 + - uid: 18908 components: - rot: 3.141592653589793 rad pos: 25.5,7.5 @@ -128522,7 +129571,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18800 + - uid: 18909 components: - rot: 3.141592653589793 rad pos: 28.5,17.5 @@ -128530,7 +129579,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18801 + - uid: 18910 components: - rot: 1.5707963267948966 rad pos: 20.5,10.5 @@ -128538,14 +129587,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18802 + - uid: 18911 components: - pos: 4.5,17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18803 + - uid: 18912 components: - rot: -1.5707963267948966 rad pos: 9.5,1.5 @@ -128553,7 +129602,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18804 + - uid: 18913 components: - rot: 1.5707963267948966 rad pos: 19.5,18.5 @@ -128563,7 +129612,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18805 + - uid: 18914 components: - rot: -1.5707963267948966 rad pos: 30.5,18.5 @@ -128571,14 +129620,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18806 + - uid: 18915 components: - pos: 21.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18807 + - uid: 18916 components: - rot: -1.5707963267948966 rad pos: 26.5,-12.5 @@ -128586,7 +129635,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18808 + - uid: 18917 components: - rot: 1.5707963267948966 rad pos: 26.5,-24.5 @@ -128594,7 +129643,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18809 + - uid: 18918 components: - rot: -1.5707963267948966 rad pos: 21.5,-17.5 @@ -128602,14 +129651,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18810 + - uid: 18919 components: - pos: 20.5,-17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18811 + - uid: 18920 components: - rot: 3.141592653589793 rad pos: 23.5,-29.5 @@ -128617,7 +129666,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18812 + - uid: 18921 components: - rot: 1.5707963267948966 rad pos: -8.5,-22.5 @@ -128625,21 +129674,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18813 + - uid: 18922 components: - pos: -10.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18814 + - uid: 18923 components: - pos: -2.5,-61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18815 + - uid: 18924 components: - rot: 3.141592653589793 rad pos: -9.5,-61.5 @@ -128647,21 +129696,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18816 + - uid: 18925 components: - pos: -15.5,-61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18817 + - uid: 18926 components: - pos: -0.5,-60.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18818 + - uid: 18927 components: - rot: 3.141592653589793 rad pos: -1.5,-60.5 @@ -128669,14 +129718,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18819 + - uid: 18928 components: - pos: -12.5,-60.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18820 + - uid: 18929 components: - rot: 3.141592653589793 rad pos: 3.5,-61.5 @@ -128684,14 +129733,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18821 + - uid: 18930 components: - pos: 5.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18822 + - uid: 18931 components: - rot: 1.5707963267948966 rad pos: -8.5,-46.5 @@ -128699,14 +129748,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18823 + - uid: 18932 components: - pos: 5.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18824 + - uid: 18933 components: - rot: 3.141592653589793 rad pos: -11.5,-27.5 @@ -128714,21 +129763,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18825 + - uid: 18934 components: - pos: 24.5,-43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18826 + - uid: 18935 components: - pos: 20.5,-43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18827 + - uid: 18936 components: - rot: 3.141592653589793 rad pos: 31.5,9.5 @@ -128738,7 +129787,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18828 + - uid: 18937 components: - rot: -1.5707963267948966 rad pos: -23.5,-78.5 @@ -128746,7 +129795,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18829 + - uid: 18938 components: - rot: -1.5707963267948966 rad pos: -23.5,-80.5 @@ -128754,7 +129803,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18830 + - uid: 18939 components: - rot: 3.141592653589793 rad pos: 34.5,9.5 @@ -128764,7 +129813,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18832 + - uid: 18940 components: - rot: -1.5707963267948966 rad pos: 1.5,6.5 @@ -128772,7 +129821,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18833 + - uid: 18941 components: - rot: 1.5707963267948966 rad pos: 2.5,1.5 @@ -128780,14 +129829,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18834 + - uid: 18942 components: - pos: 10.5,-0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18835 + - uid: 18943 components: - rot: 1.5707963267948966 rad pos: -9.5,-39.5 @@ -128795,21 +129844,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18836 + - uid: 18944 components: - pos: 15.5,17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18837 + - uid: 18945 components: - pos: 0.5,17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18838 + - uid: 18946 components: - rot: 3.141592653589793 rad pos: -7.5,8.5 @@ -128817,7 +129866,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18839 + - uid: 18947 components: - rot: -1.5707963267948966 rad pos: -20.5,-84.5 @@ -128825,7 +129874,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18840 + - uid: 18948 components: - rot: 3.141592653589793 rad pos: 15.5,-43.5 @@ -128833,7 +129882,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18841 + - uid: 18949 components: - rot: 1.5707963267948966 rad pos: 14.5,-32.5 @@ -128841,7 +129890,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18842 + - uid: 18950 components: - rot: 3.141592653589793 rad pos: 21.5,-30.5 @@ -128849,7 +129898,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18843 + - uid: 18951 components: - rot: 1.5707963267948966 rad pos: 15.5,-23.5 @@ -128857,7 +129906,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18844 + - uid: 18952 components: - rot: 1.5707963267948966 rad pos: 14.5,-30.5 @@ -128865,14 +129914,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18845 + - uid: 18953 components: - pos: 22.5,-30.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18846 + - uid: 18954 components: - rot: 3.141592653589793 rad pos: -8.5,-25.5 @@ -128880,7 +129929,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18847 + - uid: 18955 components: - rot: -1.5707963267948966 rad pos: 15.5,-25.5 @@ -128888,7 +129937,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18848 + - uid: 18956 components: - rot: -1.5707963267948966 rad pos: 15.5,-22.5 @@ -128896,7 +129945,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18849 + - uid: 18957 components: - rot: -1.5707963267948966 rad pos: -0.5,-46.5 @@ -128904,14 +129953,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18850 + - uid: 18958 components: - pos: 0.5,11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18851 + - uid: 18959 components: - rot: -1.5707963267948966 rad pos: -3.5,-11.5 @@ -128919,7 +129968,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18852 + - uid: 18960 components: - rot: 1.5707963267948966 rad pos: -5.5,-10.5 @@ -128927,7 +129976,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18853 + - uid: 18961 components: - rot: -1.5707963267948966 rad pos: 36.5,-31.5 @@ -128935,14 +129984,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18854 + - uid: 18962 components: - pos: -5.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18855 + - uid: 18963 components: - rot: 1.5707963267948966 rad pos: -4.5,13.5 @@ -128952,15 +130001,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18856 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-14.5 - parent: 2 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 18857 + - uid: 18964 components: - rot: -1.5707963267948966 rad pos: -3.5,-12.5 @@ -128968,14 +130009,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18858 + - uid: 18965 components: - pos: -20.5,-88.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18859 + - uid: 18966 components: - rot: -1.5707963267948966 rad pos: 10.5,3.5 @@ -128983,7 +130024,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18860 + - uid: 18967 components: - rot: 1.5707963267948966 rad pos: -11.5,-22.5 @@ -128991,7 +130032,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18861 + - uid: 18968 components: - rot: 3.141592653589793 rad pos: 44.5,-24.5 @@ -128999,7 +130040,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18862 + - uid: 18969 components: - rot: 1.5707963267948966 rad pos: 34.5,3.5 @@ -129007,7 +130048,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18863 + - uid: 18970 components: - rot: 3.141592653589793 rad pos: -19.5,-61.5 @@ -129015,14 +130056,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18864 + - uid: 18971 components: - pos: -5.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18865 + - uid: 18972 components: - rot: 3.141592653589793 rad pos: -8.5,-1.5 @@ -129030,7 +130071,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18866 + - uid: 18973 components: - rot: -1.5707963267948966 rad pos: -11.5,-39.5 @@ -129038,7 +130079,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18867 + - uid: 18974 components: - rot: 3.141592653589793 rad pos: 5.5,17.5 @@ -129046,7 +130087,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18868 + - uid: 18975 components: - rot: 3.141592653589793 rad pos: -2.5,-53.5 @@ -129054,7 +130095,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18869 + - uid: 18976 components: - rot: -1.5707963267948966 rad pos: 21.5,-14.5 @@ -129062,7 +130103,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18870 + - uid: 18977 components: - rot: 3.141592653589793 rad pos: 31.5,-18.5 @@ -129070,7 +130111,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18871 + - uid: 18978 components: - rot: -1.5707963267948966 rad pos: -18.5,-64.5 @@ -129078,7 +130119,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18872 + - uid: 18979 components: - rot: 1.5707963267948966 rad pos: 21.5,-16.5 @@ -129086,7 +130127,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18873 + - uid: 18980 components: - rot: -1.5707963267948966 rad pos: 20.5,-41.5 @@ -129094,7 +130135,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18874 + - uid: 18981 components: - rot: -1.5707963267948966 rad pos: 10.5,8.5 @@ -129102,7 +130143,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18875 + - uid: 18982 components: - rot: -1.5707963267948966 rad pos: 11.5,11.5 @@ -129110,35 +130151,35 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18876 + - uid: 18983 components: - pos: -22.5,-89.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18877 + - uid: 18984 components: - pos: 26.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18878 + - uid: 18985 components: - pos: 10.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18879 + - uid: 18986 components: - pos: 9.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18880 + - uid: 18987 components: - rot: 3.141592653589793 rad pos: 14.5,-41.5 @@ -129146,14 +130187,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18881 + - uid: 18988 components: - pos: 5.5,16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18882 + - uid: 18989 components: - rot: 1.5707963267948966 rad pos: -24.5,-88.5 @@ -129161,7 +130202,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18883 + - uid: 18990 components: - rot: -1.5707963267948966 rad pos: 24.5,-24.5 @@ -129169,35 +130210,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18884 + - uid: 18991 components: - pos: 7.5,19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18885 + - uid: 18992 components: - pos: -3.5,-1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18886 + - uid: 18993 components: - pos: -19.5,-57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18887 + - uid: 18994 components: - pos: 41.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18888 + - uid: 18995 components: - rot: 3.141592653589793 rad pos: 41.5,-25.5 @@ -129205,7 +130246,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18889 + - uid: 18996 components: - rot: 1.5707963267948966 rad pos: 36.5,-25.5 @@ -129213,7 +130254,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18890 + - uid: 18997 components: - rot: 1.5707963267948966 rad pos: 34.5,-26.5 @@ -129221,14 +130262,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18891 + - uid: 18998 components: - pos: -27.5,-77.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18892 + - uid: 18999 components: - rot: 3.141592653589793 rad pos: -25.5,-77.5 @@ -129236,7 +130277,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18893 + - uid: 19000 components: - rot: -1.5707963267948966 rad pos: -23.5,-85.5 @@ -129244,7 +130285,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18894 + - uid: 19001 components: - rot: 1.5707963267948966 rad pos: -18.5,-72.5 @@ -129252,7 +130293,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18895 + - uid: 19002 components: - rot: -1.5707963267948966 rad pos: -18.5,-73.5 @@ -129260,7 +130301,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18896 + - uid: 19003 components: - rot: -1.5707963267948966 rad pos: -20.5,-72.5 @@ -129268,7 +130309,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18897 + - uid: 19004 components: - rot: -1.5707963267948966 rad pos: -20.5,-69.5 @@ -129276,7 +130317,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18898 + - uid: 19005 components: - rot: 1.5707963267948966 rad pos: -20.5,-75.5 @@ -129284,7 +130325,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18899 + - uid: 19006 components: - rot: 1.5707963267948966 rad pos: -20.5,-70.5 @@ -129292,7 +130333,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18900 + - uid: 19007 components: - rot: -1.5707963267948966 rad pos: -18.5,-71.5 @@ -129300,7 +130341,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18901 + - uid: 19008 components: - rot: -1.5707963267948966 rad pos: -21.5,-89.5 @@ -129308,7 +130349,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18902 + - uid: 19009 components: - rot: -1.5707963267948966 rad pos: -18.5,-67.5 @@ -129316,7 +130357,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18903 + - uid: 19010 components: - rot: 1.5707963267948966 rad pos: -20.5,-66.5 @@ -129324,7 +130365,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18904 + - uid: 19011 components: - rot: 1.5707963267948966 rad pos: -20.5,-63.5 @@ -129332,14 +130373,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18905 + - uid: 19012 components: - pos: -18.5,-60.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18906 + - uid: 19013 components: - rot: 1.5707963267948966 rad pos: 34.5,-23.5 @@ -129347,7 +130388,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18907 + - uid: 19014 components: - rot: 3.141592653589793 rad pos: 36.5,-43.5 @@ -129355,7 +130396,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18908 + - uid: 19015 components: - rot: 3.141592653589793 rad pos: 34.5,-41.5 @@ -129363,14 +130404,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18909 + - uid: 19016 components: - pos: 33.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18910 + - uid: 19017 components: - rot: 3.141592653589793 rad pos: 10.5,17.5 @@ -129378,7 +130419,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18911 + - uid: 19018 components: - rot: 3.141592653589793 rad pos: 11.5,16.5 @@ -129386,7 +130427,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18912 + - uid: 19019 components: - rot: -1.5707963267948966 rad pos: -9.5,-37.5 @@ -129394,7 +130435,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18913 + - uid: 19020 components: - rot: 1.5707963267948966 rad pos: -3.5,-14.5 @@ -129402,14 +130443,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18914 + - uid: 19021 components: - pos: 21.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18915 + - uid: 19022 components: - rot: 3.141592653589793 rad pos: 56.5,21.5 @@ -129417,14 +130458,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18916 + - uid: 19023 components: - pos: 40.5,10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18917 + - uid: 19024 components: - rot: 1.5707963267948966 rad pos: 28.5,22.5 @@ -129432,7 +130473,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18918 + - uid: 19025 components: - rot: -1.5707963267948966 rad pos: 30.5,19.5 @@ -129440,21 +130481,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18919 + - uid: 19026 components: - pos: 42.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18920 + - uid: 19027 components: - pos: 44.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18921 + - uid: 19028 components: - rot: 3.141592653589793 rad pos: 45.5,14.5 @@ -129462,14 +130503,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18922 + - uid: 19029 components: - pos: 47.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18923 + - uid: 19030 components: - rot: 3.141592653589793 rad pos: 47.5,15.5 @@ -129477,7 +130518,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18924 + - uid: 19031 components: - rot: -1.5707963267948966 rad pos: 49.5,15.5 @@ -129485,7 +130526,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18925 + - uid: 19032 components: - rot: -1.5707963267948966 rad pos: 50.5,14.5 @@ -129493,7 +130534,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18926 + - uid: 19033 components: - rot: -1.5707963267948966 rad pos: 50.5,19.5 @@ -129501,7 +130542,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18927 + - uid: 19034 components: - rot: 3.141592653589793 rad pos: 46.5,20.5 @@ -129509,7 +130550,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18928 + - uid: 19035 components: - rot: 3.141592653589793 rad pos: 53.5,21.5 @@ -129517,7 +130558,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18929 + - uid: 19036 components: - rot: -1.5707963267948966 rad pos: 58.5,20.5 @@ -129525,7 +130566,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18930 + - uid: 19037 components: - rot: 3.141592653589793 rad pos: 55.5,20.5 @@ -129533,7 +130574,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18931 + - uid: 19038 components: - rot: 3.141592653589793 rad pos: 52.5,20.5 @@ -129541,7 +130582,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18932 + - uid: 19039 components: - rot: -1.5707963267948966 rad pos: 59.5,21.5 @@ -129549,7 +130590,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18933 + - uid: 19040 components: - rot: 1.5707963267948966 rad pos: 59.5,18.5 @@ -129557,7 +130598,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18934 + - uid: 19041 components: - rot: 1.5707963267948966 rad pos: 59.5,15.5 @@ -129565,7 +130606,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18935 + - uid: 19042 components: - rot: 1.5707963267948966 rad pos: 58.5,16.5 @@ -129573,7 +130614,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18936 + - uid: 19043 components: - rot: 1.5707963267948966 rad pos: 58.5,19.5 @@ -129581,14 +130622,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18937 + - uid: 19044 components: - pos: 40.5,20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18938 + - uid: 19045 components: - rot: 3.141592653589793 rad pos: 45.5,20.5 @@ -129596,7 +130637,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18939 + - uid: 19046 components: - rot: 3.141592653589793 rad pos: 39.5,19.5 @@ -129604,7 +130645,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18940 + - uid: 19047 components: - rot: 3.141592653589793 rad pos: 40.5,0.5 @@ -129612,14 +130653,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18941 + - uid: 19048 components: - pos: 44.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18942 + - uid: 19049 components: - rot: 3.141592653589793 rad pos: 45.5,0.5 @@ -129627,21 +130668,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18943 + - uid: 19050 components: - pos: 53.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18944 + - uid: 19051 components: - pos: 52.5,1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18945 + - uid: 19052 components: - rot: 1.5707963267948966 rad pos: 53.5,-5.5 @@ -129649,7 +130690,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18946 + - uid: 19053 components: - rot: -1.5707963267948966 rad pos: 42.5,-1.5 @@ -129657,7 +130698,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18947 + - uid: 19054 components: - rot: 3.141592653589793 rad pos: 42.5,-2.5 @@ -129665,7 +130706,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18948 + - uid: 19055 components: - rot: -1.5707963267948966 rad pos: 41.5,10.5 @@ -129673,7 +130714,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18949 + - uid: 19056 components: - rot: -1.5707963267948966 rad pos: 42.5,9.5 @@ -129681,7 +130722,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18950 + - uid: 19057 components: - rot: -1.5707963267948966 rad pos: 26.5,-53.5 @@ -129689,7 +130730,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18951 + - uid: 19058 components: - rot: -1.5707963267948966 rad pos: 26.5,-56.5 @@ -129697,7 +130738,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18952 + - uid: 19059 components: - rot: 3.141592653589793 rad pos: 61.5,-6.5 @@ -129705,7 +130746,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18953 + - uid: 19060 components: - rot: -1.5707963267948966 rad pos: 63.5,-11.5 @@ -129713,7 +130754,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18954 + - uid: 19061 components: - rot: -1.5707963267948966 rad pos: 62.5,-39.5 @@ -129721,7 +130762,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18955 + - uid: 19062 components: - rot: 3.141592653589793 rad pos: 42.5,-41.5 @@ -129729,7 +130770,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18956 + - uid: 19063 components: - rot: 3.141592653589793 rad pos: 43.5,-43.5 @@ -129737,7 +130778,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18957 + - uid: 19064 components: - rot: 3.141592653589793 rad pos: 45.5,-43.5 @@ -129745,28 +130786,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18958 + - uid: 19065 components: - pos: 44.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18959 + - uid: 19066 components: - pos: 49.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18960 + - uid: 19067 components: - pos: 49.5,-43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18961 + - uid: 19068 components: - rot: 3.141592653589793 rad pos: 49.5,-45.5 @@ -129774,21 +130815,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18962 + - uid: 19069 components: - pos: 50.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18963 + - uid: 19070 components: - pos: 56.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18964 + - uid: 19071 components: - rot: 3.141592653589793 rad pos: 56.5,-45.5 @@ -129796,7 +130837,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18965 + - uid: 19072 components: - rot: 3.141592653589793 rad pos: 55.5,-45.5 @@ -129804,7 +130845,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18966 + - uid: 19073 components: - rot: -1.5707963267948966 rad pos: 50.5,-46.5 @@ -129812,7 +130853,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18967 + - uid: 19074 components: - rot: 1.5707963267948966 rad pos: 49.5,-54.5 @@ -129820,7 +130861,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18968 + - uid: 19075 components: - rot: 1.5707963267948966 rad pos: 57.5,-44.5 @@ -129828,7 +130869,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18969 + - uid: 19076 components: - rot: -1.5707963267948966 rad pos: 63.5,-45.5 @@ -129836,7 +130877,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18970 + - uid: 19077 components: - rot: -1.5707963267948966 rad pos: 61.5,-44.5 @@ -129844,7 +130885,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18971 + - uid: 19078 components: - rot: 1.5707963267948966 rad pos: 63.5,-46.5 @@ -129852,7 +130893,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18972 + - uid: 19079 components: - rot: -1.5707963267948966 rad pos: 61.5,-46.5 @@ -129860,7 +130901,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18973 + - uid: 19080 components: - rot: 1.5707963267948966 rad pos: 60.5,-33.5 @@ -129868,14 +130909,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18974 + - uid: 19081 components: - pos: 60.5,-32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18975 + - uid: 19082 components: - rot: -1.5707963267948966 rad pos: 63.5,-26.5 @@ -129885,7 +130926,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18976 + - uid: 19083 components: - rot: 1.5707963267948966 rad pos: 61.5,-24.5 @@ -129895,14 +130936,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18977 + - uid: 19084 components: - pos: 55.5,-11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18978 + - uid: 19085 components: - rot: 1.5707963267948966 rad pos: 60.5,-48.5 @@ -129910,7 +130951,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18979 + - uid: 19086 components: - rot: 1.5707963267948966 rad pos: 64.5,-47.5 @@ -129918,7 +130959,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18980 + - uid: 19087 components: - rot: 1.5707963267948966 rad pos: 50.5,-52.5 @@ -129926,7 +130967,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18981 + - uid: 19088 components: - rot: 3.141592653589793 rad pos: 29.5,-58.5 @@ -129934,7 +130975,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18982 + - uid: 19089 components: - rot: 3.141592653589793 rad pos: 32.5,-60.5 @@ -129942,7 +130983,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18983 + - uid: 19090 components: - rot: 1.5707963267948966 rad pos: 29.5,-56.5 @@ -129950,7 +130991,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18984 + - uid: 19091 components: - rot: 1.5707963267948966 rad pos: 29.5,-52.5 @@ -129958,7 +130999,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18985 + - uid: 19092 components: - rot: 1.5707963267948966 rad pos: 32.5,-56.5 @@ -129966,7 +131007,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18986 + - uid: 19093 components: - rot: -1.5707963267948966 rad pos: 34.5,-48.5 @@ -129974,14 +131015,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18987 + - uid: 19094 components: - pos: 32.5,-52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18988 + - uid: 19095 components: - rot: -1.5707963267948966 rad pos: 34.5,-49.5 @@ -129989,19 +131030,19 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18989 + - uid: 19096 components: - rot: -1.5707963267948966 rad pos: 51.5,-58.5 parent: 2 type: Transform - - uid: 18990 + - uid: 19097 components: - rot: -1.5707963267948966 rad pos: 48.5,-58.5 parent: 2 type: Transform - - uid: 18991 + - uid: 19098 components: - rot: 1.5707963267948966 rad pos: 49.5,-61.5 @@ -130009,14 +131050,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18992 + - uid: 19099 components: - pos: -19.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18993 + - uid: 19100 components: - rot: 3.141592653589793 rad pos: -13.5,1.5 @@ -130024,7 +131065,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18994 + - uid: 19101 components: - rot: 3.141592653589793 rad pos: -14.5,1.5 @@ -130032,14 +131073,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18995 + - uid: 19102 components: - pos: -13.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18996 + - uid: 19103 components: - rot: 1.5707963267948966 rad pos: -20.5,-27.5 @@ -130047,7 +131088,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18997 + - uid: 19104 components: - rot: -1.5707963267948966 rad pos: -18.5,-19.5 @@ -130055,7 +131096,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18998 + - uid: 19105 components: - rot: -1.5707963267948966 rad pos: -20.5,-22.5 @@ -130063,7 +131104,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18999 + - uid: 19106 components: - rot: -1.5707963267948966 rad pos: -18.5,-21.5 @@ -130071,7 +131112,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19000 + - uid: 19107 components: - rot: 1.5707963267948966 rad pos: -20.5,-14.5 @@ -130079,7 +131120,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19001 + - uid: 19108 components: - rot: -1.5707963267948966 rad pos: -20.5,-13.5 @@ -130087,7 +131128,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19002 + - uid: 19109 components: - rot: -1.5707963267948966 rad pos: -18.5,-10.5 @@ -130095,14 +131136,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19003 + - uid: 19110 components: - pos: -23.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19004 + - uid: 19111 components: - rot: 3.141592653589793 rad pos: -24.5,-10.5 @@ -130110,21 +131151,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19005 + - uid: 19112 components: - pos: -24.5,-13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19006 + - uid: 19113 components: - pos: -28.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19007 + - uid: 19114 components: - rot: 3.141592653589793 rad pos: -28.5,-13.5 @@ -130132,14 +131173,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19008 + - uid: 19115 components: - pos: -25.5,-13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19009 + - uid: 19116 components: - rot: 3.141592653589793 rad pos: -28.5,-17.5 @@ -130147,7 +131188,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19010 + - uid: 19117 components: - rot: 1.5707963267948966 rad pos: -18.5,-42.5 @@ -130155,7 +131196,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19011 + - uid: 19118 components: - rot: -1.5707963267948966 rad pos: 38.5,-58.5 @@ -130163,7 +131204,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19012 + - uid: 19119 components: - rot: -1.5707963267948966 rad pos: 40.5,-60.5 @@ -130171,7 +131212,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19013 + - uid: 19120 components: - rot: 1.5707963267948966 rad pos: 38.5,-63.5 @@ -130179,7 +131220,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19014 + - uid: 19121 components: - rot: -1.5707963267948966 rad pos: 40.5,-65.5 @@ -130187,7 +131228,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19015 + - uid: 19122 components: - rot: 3.141592653589793 rad pos: -18.5,6.5 @@ -130195,7 +131236,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19016 + - uid: 19123 components: - rot: 3.141592653589793 rad pos: -20.5,7.5 @@ -130203,7 +131244,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19017 + - uid: 19124 components: - rot: 1.5707963267948966 rad pos: -31.5,-13.5 @@ -130211,7 +131252,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19018 + - uid: 19125 components: - rot: -1.5707963267948966 rad pos: -18.5,-31.5 @@ -130219,7 +131260,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19019 + - uid: 19126 components: - rot: 1.5707963267948966 rad pos: -20.5,-41.5 @@ -130227,7 +131268,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19020 + - uid: 19127 components: - rot: 1.5707963267948966 rad pos: -18.5,-43.5 @@ -130235,7 +131276,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19021 + - uid: 19128 components: - rot: 1.5707963267948966 rad pos: -20.5,-43.5 @@ -130243,14 +131284,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19022 + - uid: 19129 components: - pos: 48.5,-73.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19023 + - uid: 19130 components: - rot: 1.5707963267948966 rad pos: 40.5,-71.5 @@ -130258,7 +131299,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19024 + - uid: 19131 components: - rot: -1.5707963267948966 rad pos: 38.5,-71.5 @@ -130266,7 +131307,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19025 + - uid: 19132 components: - rot: -1.5707963267948966 rad pos: 29.5,-83.5 @@ -130274,21 +131315,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19026 + - uid: 19133 components: - pos: 47.5,-72.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19027 + - uid: 19134 components: - pos: -29.5,-16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19028 + - uid: 19135 components: - rot: 1.5707963267948966 rad pos: -32.5,-16.5 @@ -130296,7 +131337,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19029 + - uid: 19136 components: - rot: 1.5707963267948966 rad pos: -31.5,-17.5 @@ -130304,7 +131345,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19030 + - uid: 19137 components: - rot: -1.5707963267948966 rad pos: -32.5,-17.5 @@ -130312,7 +131353,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19031 + - uid: 19138 components: - rot: -1.5707963267948966 rad pos: -31.5,-15.5 @@ -130320,7 +131361,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19032 + - uid: 19139 components: - rot: 1.5707963267948966 rad pos: -32.5,-25.5 @@ -130328,7 +131369,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19033 + - uid: 19140 components: - rot: -1.5707963267948966 rad pos: -31.5,-27.5 @@ -130336,7 +131377,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19034 + - uid: 19141 components: - rot: 3.141592653589793 rad pos: -35.5,-10.5 @@ -130344,14 +131385,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19035 + - uid: 19142 components: - pos: -36.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19036 + - uid: 19143 components: - rot: 1.5707963267948966 rad pos: 42.5,6.5 @@ -130359,7 +131400,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19037 + - uid: 19144 components: - rot: -1.5707963267948966 rad pos: -24.5,-2.5 @@ -130367,7 +131408,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19038 + - uid: 19145 components: - rot: -1.5707963267948966 rad pos: -24.5,0.5 @@ -130375,7 +131416,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19039 + - uid: 19146 components: - rot: -1.5707963267948966 rad pos: -26.5,1.5 @@ -130383,7 +131424,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19040 + - uid: 19147 components: - rot: -1.5707963267948966 rad pos: -18.5,12.5 @@ -130391,7 +131432,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19041 + - uid: 19148 components: - rot: 3.141592653589793 rad pos: -52.5,-17.5 @@ -130399,21 +131440,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19042 + - uid: 19149 components: - pos: -32.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19043 + - uid: 19150 components: - pos: -46.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19044 + - uid: 19151 components: - rot: 3.141592653589793 rad pos: -47.5,-6.5 @@ -130421,7 +131462,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19045 + - uid: 19152 components: - rot: -1.5707963267948966 rad pos: -53.5,-13.5 @@ -130429,7 +131470,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19046 + - uid: 19153 components: - rot: -1.5707963267948966 rad pos: -52.5,-16.5 @@ -130437,7 +131478,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19047 + - uid: 19154 components: - rot: 1.5707963267948966 rad pos: -53.5,-19.5 @@ -130445,7 +131486,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19048 + - uid: 19155 components: - rot: 3.141592653589793 rad pos: -59.5,-25.5 @@ -130453,21 +131494,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19049 + - uid: 19156 components: - pos: -56.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19050 + - uid: 19157 components: - pos: -68.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19051 + - uid: 19158 components: - rot: 1.5707963267948966 rad pos: -68.5,-27.5 @@ -130475,14 +131516,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19052 + - uid: 19159 components: - pos: -64.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19053 + - uid: 19160 components: - rot: -1.5707963267948966 rad pos: -64.5,-27.5 @@ -130490,7 +131531,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19054 + - uid: 19161 components: - rot: 3.141592653589793 rad pos: -43.5,-55.5 @@ -130498,7 +131539,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 19055 + - uid: 19162 components: - rot: -1.5707963267948966 rad pos: -42.5,-53.5 @@ -130506,7 +131547,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 19056 + - uid: 19163 components: - rot: 3.141592653589793 rad pos: -40.5,-55.5 @@ -130516,7 +131557,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 19057 + - uid: 19164 components: - rot: 1.5707963267948966 rad pos: -44.5,-41.5 @@ -130526,7 +131567,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 19058 + - uid: 19165 components: - rot: -1.5707963267948966 rad pos: -42.5,-41.5 @@ -130534,7 +131575,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 19059 + - uid: 19166 components: - rot: 3.141592653589793 rad pos: -37.5,-57.5 @@ -130544,7 +131585,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 19060 + - uid: 19167 components: - rot: -1.5707963267948966 rad pos: -37.5,-51.5 @@ -130554,7 +131595,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 19061 + - uid: 19168 components: - rot: 1.5707963267948966 rad pos: -40.5,-51.5 @@ -130564,7 +131605,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 19062 + - uid: 19169 components: - rot: 1.5707963267948966 rad pos: -40.5,-50.5 @@ -130574,7 +131615,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 19063 + - uid: 19170 components: - rot: 1.5707963267948966 rad pos: -40.5,-49.5 @@ -130584,7 +131625,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 19064 + - uid: 19171 components: - rot: -1.5707963267948966 rad pos: -37.5,-49.5 @@ -130594,7 +131635,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 19065 + - uid: 19172 components: - rot: -1.5707963267948966 rad pos: -37.5,-50.5 @@ -130604,7 +131645,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 19066 + - uid: 19173 components: - pos: -38.5,-57.5 parent: 2 @@ -130613,7 +131654,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 19067 + - uid: 19174 components: - rot: 3.141592653589793 rad pos: -38.5,-48.5 @@ -130623,14 +131664,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 19068 + - uid: 19175 components: - pos: -33.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19069 + - uid: 19176 components: - rot: 3.141592653589793 rad pos: -30.5,-34.5 @@ -130638,7 +131679,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19070 + - uid: 19177 components: - rot: 1.5707963267948966 rad pos: -32.5,-37.5 @@ -130646,7 +131687,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19071 + - uid: 19178 components: - rot: -1.5707963267948966 rad pos: -31.5,-39.5 @@ -130654,7 +131695,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19072 + - uid: 19179 components: - rot: 3.141592653589793 rad pos: -35.5,-55.5 @@ -130662,7 +131703,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19073 + - uid: 19180 components: - rot: 1.5707963267948966 rad pos: -35.5,-53.5 @@ -130670,7 +131711,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19074 + - uid: 19181 components: - rot: -1.5707963267948966 rad pos: -35.5,-44.5 @@ -130678,7 +131719,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19075 + - uid: 19182 components: - rot: 1.5707963267948966 rad pos: -34.5,-43.5 @@ -130686,7 +131727,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19076 + - uid: 19183 components: - rot: 1.5707963267948966 rad pos: -34.5,-45.5 @@ -130694,7 +131735,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19077 + - uid: 19184 components: - rot: 1.5707963267948966 rad pos: -34.5,-44.5 @@ -130702,7 +131743,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19078 + - uid: 19185 components: - rot: -1.5707963267948966 rad pos: -34.5,-42.5 @@ -130710,7 +131751,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19079 + - uid: 19186 components: - rot: -1.5707963267948966 rad pos: -23.5,-60.5 @@ -130720,21 +131761,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 19080 + - uid: 19187 components: - pos: -27.5,-69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19081 + - uid: 19188 components: - pos: -40.5,-71.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19082 + - uid: 19189 components: - rot: 3.141592653589793 rad pos: -29.5,-71.5 @@ -130742,14 +131783,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19083 + - uid: 19190 components: - pos: -30.5,-69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19084 + - uid: 19191 components: - rot: -1.5707963267948966 rad pos: -42.5,-71.5 @@ -130757,7 +131798,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19085 + - uid: 19192 components: - rot: 1.5707963267948966 rad pos: -23.5,-58.5 @@ -130767,7 +131808,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 19086 + - uid: 19193 components: - rot: -1.5707963267948966 rad pos: -20.5,13.5 @@ -130775,7 +131816,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19087 + - uid: 19194 components: - rot: 1.5707963267948966 rad pos: -20.5,16.5 @@ -130783,7 +131824,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19088 + - uid: 19195 components: - rot: -1.5707963267948966 rad pos: -18.5,19.5 @@ -130791,7 +131832,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19089 + - uid: 19196 components: - rot: -1.5707963267948966 rad pos: -20.5,20.5 @@ -130799,7 +131840,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19090 + - uid: 19197 components: - rot: -1.5707963267948966 rad pos: -18.5,23.5 @@ -130807,28 +131848,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19091 + - uid: 19198 components: - pos: -24.5,23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19092 + - uid: 19199 components: - pos: -23.5,20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19093 + - uid: 19200 components: - pos: -28.5,23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19094 + - uid: 19201 components: - rot: 3.141592653589793 rad pos: -28.5,20.5 @@ -130838,7 +131879,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 19095 + - uid: 19202 components: - rot: 3.141592653589793 rad pos: -40.5,23.5 @@ -130846,7 +131887,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19096 + - uid: 19203 components: - rot: 3.141592653589793 rad pos: -41.5,20.5 @@ -130854,7 +131895,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19097 + - uid: 19204 components: - rot: 1.5707963267948966 rad pos: -40.5,30.5 @@ -130862,7 +131903,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19098 + - uid: 19205 components: - rot: 1.5707963267948966 rad pos: -41.5,29.5 @@ -130870,7 +131911,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19099 + - uid: 19206 components: - rot: 3.141592653589793 rad pos: -44.5,33.5 @@ -130878,28 +131919,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19100 + - uid: 19207 components: - pos: -49.5,33.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19101 + - uid: 19208 components: - pos: -28.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19102 + - uid: 19209 components: - pos: -29.5,0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19103 + - uid: 19210 components: - rot: 3.141592653589793 rad pos: -37.5,1.5 @@ -130907,7 +131948,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19104 + - uid: 19211 components: - rot: 3.141592653589793 rad pos: -38.5,0.5 @@ -130915,7 +131956,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19105 + - uid: 19212 components: - rot: 1.5707963267948966 rad pos: -38.5,3.5 @@ -130923,7 +131964,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19106 + - uid: 19213 components: - rot: -1.5707963267948966 rad pos: -37.5,5.5 @@ -130931,7 +131972,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19107 + - uid: 19214 components: - rot: 1.5707963267948966 rad pos: -37.5,8.5 @@ -130939,7 +131980,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19108 + - uid: 19215 components: - rot: -1.5707963267948966 rad pos: -38.5,8.5 @@ -130947,21 +131988,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19109 + - uid: 19216 components: - pos: -39.5,0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19110 + - uid: 19217 components: - pos: -41.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19111 + - uid: 19218 components: - rot: -1.5707963267948966 rad pos: -30.5,14.5 @@ -130969,7 +132010,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19112 + - uid: 19219 components: - rot: -1.5707963267948966 rad pos: -29.5,13.5 @@ -130977,7 +132018,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19113 + - uid: 19220 components: - rot: 1.5707963267948966 rad pos: -47.5,0.5 @@ -130985,7 +132026,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19114 + - uid: 19221 components: - rot: 1.5707963267948966 rad pos: -45.5,1.5 @@ -130993,7 +132034,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19115 + - uid: 19222 components: - rot: -1.5707963267948966 rad pos: -47.5,3.5 @@ -131001,14 +132042,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19116 + - uid: 19223 components: - pos: -47.5,10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19117 + - uid: 19224 components: - rot: 3.141592653589793 rad pos: -46.5,10.5 @@ -131016,7 +132057,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19118 + - uid: 19225 components: - rot: 3.141592653589793 rad pos: -51.5,10.5 @@ -131024,7 +132065,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19119 + - uid: 19226 components: - rot: 1.5707963267948966 rad pos: -52.5,10.5 @@ -131032,7 +132073,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19120 + - uid: 19227 components: - rot: 1.5707963267948966 rad pos: -45.5,6.5 @@ -131040,7 +132081,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19121 + - uid: 19228 components: - rot: -1.5707963267948966 rad pos: -45.5,7.5 @@ -131048,7 +132089,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19122 + - uid: 19229 components: - rot: 3.141592653589793 rad pos: -51.5,11.5 @@ -131056,7 +132097,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19123 + - uid: 19230 components: - rot: 1.5707963267948966 rad pos: -20.5,25.5 @@ -131064,7 +132105,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19124 + - uid: 19231 components: - rot: 1.5707963267948966 rad pos: -18.5,24.5 @@ -131072,7 +132113,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19125 + - uid: 19232 components: - rot: 3.141592653589793 rad pos: -4.5,-41.5 @@ -131080,14 +132121,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19126 + - uid: 19233 components: - pos: -4.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19127 + - uid: 19234 components: - rot: 1.5707963267948966 rad pos: -26.5,-4.5 @@ -131095,7 +132136,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19128 + - uid: 19235 components: - rot: -1.5707963267948966 rad pos: 25.5,-52.5 @@ -131103,7 +132144,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19129 + - uid: 19236 components: - rot: 3.141592653589793 rad pos: 44.5,19.5 @@ -131111,7 +132152,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19130 + - uid: 19237 components: - rot: 1.5707963267948966 rad pos: 54.5,43.5 @@ -131119,7 +132160,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19131 + - uid: 19238 components: - rot: -1.5707963267948966 rad pos: 52.5,43.5 @@ -131127,7 +132168,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19132 + - uid: 19239 components: - rot: -1.5707963267948966 rad pos: 54.5,50.5 @@ -131135,7 +132176,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19133 + - uid: 19240 components: - rot: -1.5707963267948966 rad pos: 52.5,49.5 @@ -131143,7 +132184,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19134 + - uid: 19241 components: - rot: 1.5707963267948966 rad pos: -16.5,34.5 @@ -131151,7 +132192,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19135 + - uid: 19242 components: - rot: 1.5707963267948966 rad pos: -15.5,33.5 @@ -131159,7 +132200,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19136 + - uid: 19243 components: - rot: 1.5707963267948966 rad pos: -16.5,39.5 @@ -131167,7 +132208,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19137 + - uid: 19244 components: - rot: 1.5707963267948966 rad pos: -15.5,38.5 @@ -131175,7 +132216,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19138 + - uid: 19245 components: - rot: 1.5707963267948966 rad pos: -16.5,46.5 @@ -131183,7 +132224,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19139 + - uid: 19246 components: - rot: 3.141592653589793 rad pos: -14.5,44.5 @@ -131191,7 +132232,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19140 + - uid: 19247 components: - rot: 3.141592653589793 rad pos: 40.5,46.5 @@ -131199,14 +132240,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19141 + - uid: 19248 components: - pos: 40.5,45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19142 + - uid: 19249 components: - rot: 1.5707963267948966 rad pos: -1.5,61.5 @@ -131214,7 +132255,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19143 + - uid: 19250 components: - rot: 1.5707963267948966 rad pos: -2.5,62.5 @@ -131222,7 +132263,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19144 + - uid: 19251 components: - rot: 3.141592653589793 rad pos: -1.5,59.5 @@ -131230,7 +132271,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19145 + - uid: 19252 components: - rot: -1.5707963267948966 rad pos: 1.5,46.5 @@ -131238,7 +132279,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19146 + - uid: 19253 components: - rot: 1.5707963267948966 rad pos: -0.5,48.5 @@ -131246,35 +132287,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19147 + - uid: 19254 components: - pos: -17.5,50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19148 + - uid: 19255 components: - pos: -16.5,51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19149 + - uid: 19256 components: - pos: -21.5,50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19150 + - uid: 19257 components: - pos: -20.5,51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19151 + - uid: 19258 components: - rot: -1.5707963267948966 rad pos: -21.5,58.5 @@ -131282,7 +132323,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19152 + - uid: 19259 components: - rot: 1.5707963267948966 rad pos: -22.5,60.5 @@ -131290,7 +132331,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19153 + - uid: 19260 components: - rot: 1.5707963267948966 rad pos: -22.5,61.5 @@ -131298,7 +132339,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19154 + - uid: 19261 components: - rot: 1.5707963267948966 rad pos: -21.5,62.5 @@ -131306,7 +132347,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19155 + - uid: 19262 components: - rot: 3.141592653589793 rad pos: -17.5,62.5 @@ -131316,7 +132357,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 19156 + - uid: 19263 components: - pos: -17.5,61.5 parent: 2 @@ -131325,7 +132366,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 19157 + - uid: 19264 components: - rot: 1.5707963267948966 rad pos: -22.5,66.5 @@ -131333,7 +132374,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19158 + - uid: 19265 components: - rot: -1.5707963267948966 rad pos: -13.5,62.5 @@ -131341,7 +132382,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19159 + - uid: 19266 components: - rot: -1.5707963267948966 rad pos: -12.5,61.5 @@ -131349,7 +132390,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19160 + - uid: 19267 components: - rot: -1.5707963267948966 rad pos: -12.5,60.5 @@ -131357,7 +132398,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19161 + - uid: 19268 components: - rot: 1.5707963267948966 rad pos: -13.5,58.5 @@ -131365,7 +132406,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19162 + - uid: 19269 components: - rot: -1.5707963267948966 rad pos: -13.5,66.5 @@ -131373,7 +132414,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19163 + - uid: 19270 components: - rot: 1.5707963267948966 rad pos: -12.5,59.5 @@ -131381,7 +132422,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19164 + - uid: 19271 components: - rot: 1.5707963267948966 rad pos: -13.5,57.5 @@ -131389,7 +132430,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19165 + - uid: 19272 components: - rot: 3.141592653589793 rad pos: -2.5,58.5 @@ -131397,7 +132438,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19166 + - uid: 19273 components: - rot: 1.5707963267948966 rad pos: -0.5,56.5 @@ -131405,7 +132446,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19167 + - uid: 19274 components: - rot: -1.5707963267948966 rad pos: 1.5,57.5 @@ -131413,7 +132454,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19168 + - uid: 19275 components: - rot: 3.141592653589793 rad pos: 29.5,46.5 @@ -131421,14 +132462,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19169 + - uid: 19276 components: - pos: 29.5,45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19170 + - uid: 19277 components: - rot: -1.5707963267948966 rad pos: -22.5,-96.5 @@ -131436,7 +132477,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19171 + - uid: 19278 components: - rot: -1.5707963267948966 rad pos: -20.5,-96.5 @@ -131444,7 +132485,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19172 + - uid: 19279 components: - rot: 3.141592653589793 rad pos: -20.5,-97.5 @@ -131452,7 +132493,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19173 + - uid: 19280 components: - rot: 3.141592653589793 rad pos: -21.5,-98.5 @@ -131460,7 +132501,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19174 + - uid: 19281 components: - rot: 3.141592653589793 rad pos: -8.5,-97.5 @@ -131468,7 +132509,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19175 + - uid: 19282 components: - rot: 3.141592653589793 rad pos: -7.5,-98.5 @@ -131476,7 +132517,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19176 + - uid: 19283 components: - rot: 1.5707963267948966 rad pos: -8.5,-91.5 @@ -131484,7 +132525,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19177 + - uid: 19284 components: - rot: 1.5707963267948966 rad pos: -7.5,-93.5 @@ -131492,7 +132533,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19178 + - uid: 19285 components: - rot: 3.141592653589793 rad pos: 65.5,-33.5 @@ -131500,14 +132541,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19179 + - uid: 19286 components: - pos: 65.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19180 + - uid: 19287 components: - rot: 3.141592653589793 rad pos: 67.5,-34.5 @@ -131515,14 +132556,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19181 + - uid: 19288 components: - pos: 73.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19182 + - uid: 19289 components: - rot: 3.141592653589793 rad pos: 73.5,-33.5 @@ -131530,7 +132571,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19183 + - uid: 19290 components: - rot: -1.5707963267948966 rad pos: 75.5,-40.5 @@ -131538,7 +132579,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19184 + - uid: 19291 components: - rot: 1.5707963267948966 rad pos: 74.5,-41.5 @@ -131546,14 +132587,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19185 + - uid: 19292 components: - pos: 72.5,-48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19186 + - uid: 19293 components: - rot: 1.5707963267948966 rad pos: 73.5,-47.5 @@ -131561,14 +132602,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19187 + - uid: 19294 components: - pos: 70.5,-47.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19188 + - uid: 19295 components: - rot: 1.5707963267948966 rad pos: 71.5,-46.5 @@ -131576,7 +132617,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19189 + - uid: 19296 components: - rot: -1.5707963267948966 rad pos: 75.5,-37.5 @@ -131584,7 +132625,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19190 + - uid: 19297 components: - rot: 3.141592653589793 rad pos: 74.5,-33.5 @@ -131592,13 +132633,13 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19191 + - uid: 19298 components: - rot: -1.5707963267948966 rad pos: -56.5,-60.5 parent: 2 type: Transform - - uid: 19192 + - uid: 19299 components: - rot: 1.5707963267948966 rad pos: 61.5,-38.5 @@ -131606,14 +132647,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19193 + - uid: 19300 components: - pos: 3.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19194 + - uid: 19301 components: - rot: 3.141592653589793 rad pos: 38.5,-72.5 @@ -131621,7 +132662,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19195 + - uid: 19302 components: - rot: 3.141592653589793 rad pos: 40.5,-73.5 @@ -131629,21 +132670,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19196 + - uid: 19303 components: - pos: -30.5,-71.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19197 + - uid: 19304 components: - pos: -28.5,-69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19198 + - uid: 19305 components: - rot: -1.5707963267948966 rad pos: 30.5,-82.5 @@ -131651,28 +132692,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19199 + - uid: 19306 components: - pos: 30.5,-72.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19200 + - uid: 19307 components: - pos: 29.5,-73.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19201 + - uid: 19308 components: - pos: -44.5,31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19202 + - uid: 19309 components: - rot: 1.5707963267948966 rad pos: -6.5,14.5 @@ -131680,14 +132721,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19203 + - uid: 19310 components: - pos: -71.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19204 + - uid: 19311 components: - rot: -1.5707963267948966 rad pos: -73.5,-24.5 @@ -131695,7 +132736,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19205 + - uid: 19312 components: - pos: -68.5,-40.5 parent: 2 @@ -131704,7 +132745,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 19206 + - uid: 19313 components: - pos: -71.5,-40.5 parent: 2 @@ -131713,7 +132754,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 19207 + - uid: 19314 components: - rot: 1.5707963267948966 rad pos: -70.5,-41.5 @@ -131725,13 +132766,13 @@ entities: type: AmbientSound - proto: GasPort entities: - - uid: 19208 + - uid: 19315 components: - rot: -1.5707963267948966 rad pos: -66.5,-41.5 parent: 2 type: Transform - - uid: 19209 + - uid: 19316 components: - rot: -1.5707963267948966 rad pos: -66.5,-46.5 @@ -131739,52 +132780,52 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19210 + - uid: 19317 components: - pos: 45.5,-58.5 parent: 2 type: Transform - - uid: 19211 + - uid: 19318 components: - rot: -1.5707963267948966 rad pos: 46.5,-59.5 parent: 2 type: Transform - - uid: 19212 + - uid: 19319 components: - rot: 3.141592653589793 rad pos: 45.5,-60.5 parent: 2 type: Transform - - uid: 19213 + - uid: 19320 components: - pos: 47.5,-56.5 parent: 2 type: Transform - - uid: 19214 + - uid: 19321 components: - pos: 50.5,-56.5 parent: 2 type: Transform - - uid: 19215 + - uid: 19322 components: - rot: 3.141592653589793 rad pos: 55.5,-61.5 parent: 2 type: Transform - - uid: 19216 + - uid: 19323 components: - rot: 1.5707963267948966 rad pos: 53.5,-59.5 parent: 2 type: Transform - - uid: 19217 + - uid: 19324 components: - rot: -1.5707963267948966 rad pos: 57.5,-59.5 parent: 2 type: Transform - - uid: 19218 + - uid: 19325 components: - name: scrubber to connector port type: MetaData @@ -131792,7 +132833,7 @@ entities: pos: 54.5,-60.5 parent: 2 type: Transform - - uid: 19219 + - uid: 19326 components: - rot: -1.5707963267948966 rad pos: -39.5,-49.5 @@ -131800,7 +132841,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19220 + - uid: 19327 components: - rot: -1.5707963267948966 rad pos: -39.5,-50.5 @@ -131808,7 +132849,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19221 + - uid: 19328 components: - rot: -1.5707963267948966 rad pos: -39.5,-51.5 @@ -131816,7 +132857,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19222 + - uid: 19329 components: - rot: 1.5707963267948966 rad pos: -38.5,-49.5 @@ -131824,7 +132865,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19223 + - uid: 19330 components: - rot: 1.5707963267948966 rad pos: -38.5,-50.5 @@ -131832,7 +132873,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19224 + - uid: 19331 components: - rot: 1.5707963267948966 rad pos: -38.5,-51.5 @@ -131840,13 +132881,13 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19225 + - uid: 19332 components: - rot: 3.141592653589793 rad pos: -24.5,-62.5 parent: 2 type: Transform - - uid: 19226 + - uid: 19333 components: - rot: 3.141592653589793 rad pos: -5.5,-65.5 @@ -131854,7 +132895,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19227 + - uid: 19334 components: - rot: -1.5707963267948966 rad pos: -33.5,-43.5 @@ -131862,7 +132903,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19228 + - uid: 19335 components: - rot: -1.5707963267948966 rad pos: -33.5,-44.5 @@ -131870,7 +132911,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19229 + - uid: 19336 components: - rot: -1.5707963267948966 rad pos: -33.5,-45.5 @@ -131878,12 +132919,12 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19230 + - uid: 19337 components: - pos: 70.5,38.5 parent: 2 type: Transform - - uid: 19231 + - uid: 19338 components: - rot: -1.5707963267948966 rad pos: 72.5,-37.5 @@ -131891,7 +132932,7 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 19232 + - uid: 19339 components: - rot: -1.5707963267948966 rad pos: 72.5,-38.5 @@ -131899,7 +132940,7 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 19233 + - uid: 19340 components: - rot: 3.141592653589793 rad pos: 71.5,-33.5 @@ -131907,7 +132948,7 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 19234 + - uid: 19341 components: - rot: 3.141592653589793 rad pos: 72.5,-33.5 @@ -131915,30 +132956,30 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 19235 + - uid: 19342 components: - rot: 1.5707963267948966 rad pos: -57.5,-58.5 parent: 2 type: Transform - - uid: 19236 + - uid: 19343 components: - pos: -54.5,-59.5 parent: 2 type: Transform - - uid: 19237 + - uid: 19344 components: - rot: 3.141592653589793 rad pos: -48.5,-38.5 parent: 2 type: Transform - - uid: 19238 + - uid: 19345 components: - rot: -1.5707963267948966 rad pos: -66.5,-40.5 parent: 2 type: Transform - - uid: 19239 + - uid: 19346 components: - rot: 1.5707963267948966 rad pos: -72.5,-46.5 @@ -131948,7 +132989,7 @@ entities: type: AtmosPipeColor - proto: GasPressurePump entities: - - uid: 19240 + - uid: 19347 components: - rot: -1.5707963267948966 rad pos: -67.5,-41.5 @@ -131956,92 +132997,92 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19241 + - uid: 19348 components: - rot: 1.5707963267948966 rad pos: -73.5,-41.5 parent: 2 type: Transform - - uid: 19242 + - uid: 19349 components: - pos: -70.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19243 + - uid: 19350 components: - pos: -68.5,-45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19244 + - uid: 19351 components: - rot: 3.141592653589793 rad pos: 50.5,-57.5 parent: 2 type: Transform - - uid: 19245 + - uid: 19352 components: - pos: 47.5,-57.5 parent: 2 type: Transform - - uid: 19246 + - uid: 19353 components: - rot: 3.141592653589793 rad pos: 55.5,-60.5 parent: 2 type: Transform - - uid: 19247 + - uid: 19354 components: - rot: 1.5707963267948966 rad pos: 54.5,-59.5 parent: 2 type: Transform - - uid: 19248 + - uid: 19355 components: - rot: 1.5707963267948966 rad pos: -44.5,-53.5 parent: 2 type: Transform - - uid: 19249 + - uid: 19356 components: - rot: 1.5707963267948966 rad pos: -44.5,-55.5 parent: 2 type: Transform - - uid: 19250 + - uid: 19357 components: - rot: 1.5707963267948966 rad pos: -44.5,-51.5 parent: 2 type: Transform - - uid: 19251 + - uid: 19358 components: - rot: 1.5707963267948966 rad pos: -44.5,-49.5 parent: 2 type: Transform - - uid: 19252 + - uid: 19359 components: - rot: 1.5707963267948966 rad pos: -44.5,-47.5 parent: 2 type: Transform - - uid: 19253 + - uid: 19360 components: - rot: 1.5707963267948966 rad pos: -44.5,-45.5 parent: 2 type: Transform - - uid: 19254 + - uid: 19361 components: - rot: 1.5707963267948966 rad pos: -44.5,-43.5 parent: 2 type: Transform - - uid: 19255 + - uid: 19362 components: - rot: 1.5707963267948966 rad pos: -39.5,-55.5 @@ -132049,34 +133090,34 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19256 + - uid: 19363 components: - pos: -40.5,-54.5 parent: 2 type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 19257 + - uid: 19364 components: - rot: 3.141592653589793 rad pos: -42.5,-40.5 parent: 2 type: Transform - - uid: 19258 + - uid: 19365 components: - pos: -37.5,-54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19259 + - uid: 19366 components: - pos: -38.5,-45.5 parent: 2 type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19260 + - uid: 19367 components: - rot: 3.141592653589793 rad pos: -24.5,-61.5 @@ -132084,7 +133125,7 @@ entities: type: Transform - color: '#97C3FCCC' type: AtmosPipeColor - - uid: 19261 + - uid: 19368 components: - rot: 3.141592653589793 rad pos: -25.5,-59.5 @@ -132092,14 +133133,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19262 + - uid: 19369 components: - pos: -23.5,-59.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19263 + - uid: 19370 components: - rot: 3.141592653589793 rad pos: 72.5,-31.5 @@ -132107,19 +133148,19 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 19264 + - uid: 19371 components: - pos: 71.5,-31.5 parent: 2 type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 19265 + - uid: 19372 components: - pos: -56.5,-59.5 parent: 2 type: Transform - - uid: 19266 + - uid: 19373 components: - rot: -1.5707963267948966 rad pos: 70.5,-38.5 @@ -132127,13 +133168,13 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 19267 + - uid: 19374 components: - rot: 3.141592653589793 rad pos: -54.5,-60.5 parent: 2 type: Transform - - uid: 19268 + - uid: 19375 components: - rot: 1.5707963267948966 rad pos: 70.5,-37.5 @@ -132141,12 +133182,12 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 19269 + - uid: 19376 components: - pos: -48.5,-37.5 parent: 2 type: Transform - - uid: 19270 + - uid: 19377 components: - rot: 3.141592653589793 rad pos: -70.5,-43.5 @@ -132154,7 +133195,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19271 + - uid: 19378 components: - rot: -1.5707963267948966 rad pos: -67.5,-40.5 @@ -132164,62 +133205,62 @@ entities: type: AtmosPipeColor - proto: GasRecyclerMachineCircuitboard entities: - - uid: 19272 + - uid: 19379 components: - pos: 53.993114,35.55658 parent: 2 type: Transform - proto: GasThermoMachineFreezer entities: - - uid: 19273 + - uid: 19380 components: - pos: 51.5,-57.5 parent: 2 type: Transform - - uid: 19274 + - uid: 19381 components: - pos: 2.5,14.5 parent: 2 type: Transform - - uid: 19275 + - uid: 19382 components: - pos: -33.5,-52.5 parent: 2 type: Transform - - uid: 19276 + - uid: 19383 components: - pos: 2.5,68.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19277 + - uid: 19384 components: - pos: 2.5,70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19278 + - uid: 19385 components: - pos: -5.5,68.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19279 + - uid: 19386 components: - pos: -5.5,70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19280 + - uid: 19387 components: - pos: 53.5,-47.5 parent: 2 type: Transform - - uid: 19281 + - uid: 19388 components: - pos: -22.5,-61.5 parent: 2 @@ -132228,28 +133269,28 @@ entities: type: AtmosPipeColor - proto: GasThermoMachineFreezerEnabled entities: - - uid: 19282 + - uid: 19389 components: - pos: -66.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19283 + - uid: 19390 components: - pos: -69.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19284 + - uid: 19391 components: - pos: -67.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19285 + - uid: 19392 components: - pos: -68.5,-38.5 parent: 2 @@ -132258,24 +133299,24 @@ entities: type: AtmosPipeColor - proto: GasThermoMachineHeater entities: - - uid: 19286 + - uid: 19393 components: - pos: 48.5,-57.5 parent: 2 type: Transform - - uid: 19287 + - uid: 19394 components: - pos: -33.5,-54.5 parent: 2 type: Transform - - uid: 19288 + - uid: 19395 components: - pos: -57.5,-59.5 parent: 2 type: Transform - proto: GasValve entities: - - uid: 19289 + - uid: 19396 components: - pos: -44.5,-40.5 parent: 2 @@ -132284,7 +133325,7 @@ entities: type: GasValve - enabled: False type: AmbientSound - - uid: 19290 + - uid: 19397 components: - rot: 1.5707963267948966 rad pos: -72.5,-41.5 @@ -132296,7 +133337,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19291 + - uid: 19398 components: - rot: -1.5707963267948966 rad pos: -72.5,-40.5 @@ -132308,7 +133349,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19292 + - uid: 19399 components: - rot: -1.5707963267948966 rad pos: -72.5,-42.5 @@ -132320,7 +133361,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19293 + - uid: 19400 components: - rot: -1.5707963267948966 rad pos: 56.5,-59.5 @@ -132330,7 +133371,7 @@ entities: type: GasValve - enabled: False type: AmbientSound - - uid: 19294 + - uid: 19401 components: - rot: 1.5707963267948966 rad pos: 53.5,-60.5 @@ -132340,7 +133381,7 @@ entities: type: GasValve - enabled: False type: AmbientSound - - uid: 19295 + - uid: 19402 components: - rot: -1.5707963267948966 rad pos: -43.5,-41.5 @@ -132348,7 +133389,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19296 + - uid: 19403 components: - pos: -40.5,-53.5 parent: 2 @@ -132359,7 +133400,7 @@ entities: type: AmbientSound - color: '#947507FF' type: AtmosPipeColor - - uid: 19297 + - uid: 19404 components: - rot: 3.141592653589793 rad pos: -38.5,-58.5 @@ -132371,7 +133412,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19298 + - uid: 19405 components: - pos: -37.5,-53.5 parent: 2 @@ -132382,7 +133423,7 @@ entities: type: AmbientSound - color: '#947507FF' type: AtmosPipeColor - - uid: 19299 + - uid: 19406 components: - pos: -38.5,-42.5 parent: 2 @@ -132393,7 +133434,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19300 + - uid: 19407 components: - rot: -1.5707963267948966 rad pos: -34.5,-53.5 @@ -132405,7 +133446,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19301 + - uid: 19408 components: - rot: 1.5707963267948966 rad pos: -34.5,-55.5 @@ -132417,7 +133458,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19302 + - uid: 19409 components: - pos: -48.5,-36.5 parent: 2 @@ -132426,7 +133467,7 @@ entities: type: GasValve - enabled: False type: AmbientSound - - uid: 19303 + - uid: 19410 components: - rot: 1.5707963267948966 rad pos: -66.5,-44.5 @@ -132438,7 +133479,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19304 + - uid: 19411 components: - rot: 1.5707963267948966 rad pos: -71.5,-37.5 @@ -132452,20 +133493,33 @@ entities: type: AtmosPipeColor - proto: GasVentPump entities: - - uid: 12853 + - uid: 19412 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 99 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 19413 components: - rot: 3.141592653589793 rad pos: 1.5,-5.5 parent: 2 type: Transform - ShutdownSubscribers: - - 12968 + - 98 type: DeviceNetwork - enabled: False type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19305 + - uid: 19414 components: - rot: -1.5707963267948966 rad pos: -70.5,-31.5 @@ -132475,7 +133529,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19306 + - uid: 19415 components: - rot: 3.141592653589793 rad pos: -72.5,-38.5 @@ -132485,7 +133539,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19307 + - uid: 19416 components: - rot: 1.5707963267948966 rad pos: -72.5,-25.5 @@ -132495,7 +133549,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19308 + - uid: 19417 components: - rot: 1.5707963267948966 rad pos: -9.5,2.5 @@ -132505,7 +133559,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19309 + - uid: 19418 components: - pos: -1.5,-59.5 parent: 2 @@ -132514,7 +133568,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19310 + - uid: 19419 components: - rot: 3.141592653589793 rad pos: -14.5,-46.5 @@ -132524,7 +133578,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19311 + - uid: 19420 components: - pos: 25.5,-5.5 parent: 2 @@ -132533,7 +133587,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19312 + - uid: 19421 components: - rot: 1.5707963267948966 rad pos: -12.5,-39.5 @@ -132543,7 +133597,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19313 + - uid: 19422 components: - rot: 3.141592653589793 rad pos: -0.5,-65.5 @@ -132553,7 +133607,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19314 + - uid: 19423 components: - rot: 3.141592653589793 rad pos: -23.5,-86.5 @@ -132563,7 +133617,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19315 + - uid: 19424 components: - pos: 2.5,-26.5 parent: 2 @@ -132572,7 +133626,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19316 + - uid: 19425 components: - pos: 20.5,-40.5 parent: 2 @@ -132581,7 +133635,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19317 + - uid: 19426 components: - rot: -1.5707963267948966 rad pos: 6.5,16.5 @@ -132591,7 +133645,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19318 + - uid: 19427 components: - pos: 26.5,11.5 parent: 2 @@ -132600,7 +133654,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19319 + - uid: 19428 components: - rot: 1.5707963267948966 rad pos: 5.5,8.5 @@ -132610,7 +133664,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19320 + - uid: 19429 components: - rot: -1.5707963267948966 rad pos: -4.5,-14.5 @@ -132620,7 +133674,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19321 + - uid: 19430 components: - pos: -17.5,-57.5 parent: 2 @@ -132629,7 +133683,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19322 + - uid: 19431 components: - rot: -1.5707963267948966 rad pos: 32.5,10.5 @@ -132639,7 +133693,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19323 + - uid: 19432 components: - rot: 1.5707963267948966 rad pos: 16.5,13.5 @@ -132649,7 +133703,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19324 + - uid: 19433 components: - rot: -1.5707963267948966 rad pos: 45.5,-27.5 @@ -132659,7 +133713,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19326 + - uid: 19434 components: - pos: 10.5,19.5 parent: 2 @@ -132668,7 +133722,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19328 + - uid: 19435 components: - rot: -1.5707963267948966 rad pos: 29.5,10.5 @@ -132678,7 +133732,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19329 + - uid: 19436 components: - rot: 3.141592653589793 rad pos: 18.5,3.5 @@ -132688,7 +133742,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19331 + - uid: 19437 components: - rot: 1.5707963267948966 rad pos: 8.5,1.5 @@ -132698,7 +133752,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19332 + - uid: 19438 components: - rot: 1.5707963267948966 rad pos: 8.5,-9.5 @@ -132708,7 +133762,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19333 + - uid: 19439 components: - pos: 22.5,22.5 parent: 2 @@ -132717,7 +133771,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19334 + - uid: 19440 components: - rot: 3.141592653589793 rad pos: 15.5,16.5 @@ -132727,7 +133781,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19335 + - uid: 19441 components: - rot: 1.5707963267948966 rad pos: -0.5,17.5 @@ -132737,7 +133791,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19337 + - uid: 19442 components: - rot: -1.5707963267948966 rad pos: -10.5,-22.5 @@ -132747,7 +133801,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19338 + - uid: 19443 components: - rot: -1.5707963267948966 rad pos: -9.5,-6.5 @@ -132757,7 +133811,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19339 + - uid: 19444 components: - rot: 3.141592653589793 rad pos: -6.5,-65.5 @@ -132767,7 +133821,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19340 + - uid: 19445 components: - rot: 3.141592653589793 rad pos: -12.5,-65.5 @@ -132777,7 +133831,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19341 + - uid: 19446 components: - pos: -2.5,-52.5 parent: 2 @@ -132786,7 +133840,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19342 + - uid: 19447 components: - rot: 3.141592653589793 rad pos: 5.5,-45.5 @@ -132796,7 +133850,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19343 + - uid: 19448 components: - rot: 3.141592653589793 rad pos: -0.5,-47.5 @@ -132806,7 +133860,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19344 + - uid: 19449 components: - rot: -1.5707963267948966 rad pos: 9.5,-60.5 @@ -132816,7 +133870,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19345 + - uid: 19450 components: - rot: -1.5707963267948966 rad pos: 35.5,10.5 @@ -132826,7 +133880,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19346 + - uid: 19451 components: - rot: 1.5707963267948966 rad pos: -30.5,-80.5 @@ -132836,7 +133890,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19347 + - uid: 19452 components: - rot: 3.141592653589793 rad pos: 36.5,7.5 @@ -132846,7 +133900,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19348 + - uid: 19453 components: - rot: 3.141592653589793 rad pos: 11.5,9.5 @@ -132856,7 +133910,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19349 + - uid: 19454 components: - rot: 1.5707963267948966 rad pos: 9.5,3.5 @@ -132866,7 +133920,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19350 + - uid: 19455 components: - pos: 20.5,14.5 parent: 2 @@ -132875,7 +133929,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19351 + - uid: 19456 components: - pos: 5.5,19.5 parent: 2 @@ -132884,7 +133938,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19352 + - uid: 19457 components: - rot: 3.141592653589793 rad pos: 0.5,12.5 @@ -132894,7 +133948,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19353 + - uid: 19458 components: - pos: -24.5,-79.5 parent: 2 @@ -132903,7 +133957,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19354 + - uid: 19459 components: - rot: 3.141592653589793 rad pos: -18.5,-78.5 @@ -132913,7 +133967,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19355 + - uid: 19460 components: - rot: -1.5707963267948966 rad pos: 20.5,18.5 @@ -132923,7 +133977,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19356 + - uid: 19461 components: - pos: 17.5,20.5 parent: 2 @@ -132932,7 +133986,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19357 + - uid: 19462 components: - rot: 1.5707963267948966 rad pos: 33.5,5.5 @@ -132942,7 +133996,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19358 + - uid: 19463 components: - pos: -4.5,-40.5 parent: 2 @@ -132951,7 +134005,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19359 + - uid: 19464 components: - rot: 3.141592653589793 rad pos: -4.5,12.5 @@ -132961,7 +134015,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19360 + - uid: 19465 components: - pos: -29.5,-70.5 parent: 2 @@ -132970,7 +134024,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19361 + - uid: 19466 components: - rot: 1.5707963267948966 rad pos: -23.5,29.5 @@ -132980,7 +134034,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19362 + - uid: 19467 components: - pos: 47.5,-23.5 parent: 2 @@ -132989,7 +134043,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19363 + - uid: 19468 components: - rot: 1.5707963267948966 rad pos: 27.5,0.5 @@ -132999,7 +134053,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19364 + - uid: 19469 components: - pos: -7.5,9.5 parent: 2 @@ -133008,7 +134062,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19365 + - uid: 19470 components: - rot: -1.5707963267948966 rad pos: 15.5,-32.5 @@ -133018,7 +134072,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19366 + - uid: 19471 components: - rot: 1.5707963267948966 rad pos: 17.5,-12.5 @@ -133028,7 +134082,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19367 + - uid: 19472 components: - pos: 30.5,-17.5 parent: 2 @@ -133037,7 +134091,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19368 + - uid: 19473 components: - pos: -18.5,33.5 parent: 2 @@ -133046,7 +134100,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19369 + - uid: 19474 components: - rot: 3.141592653589793 rad pos: 36.5,4.5 @@ -133056,7 +134110,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19370 + - uid: 19475 components: - rot: -1.5707963267948966 rad pos: 27.5,-24.5 @@ -133066,7 +134120,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19371 + - uid: 19476 components: - rot: 3.141592653589793 rad pos: -24.5,-89.5 @@ -133076,7 +134130,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19372 + - uid: 19477 components: - rot: 1.5707963267948966 rad pos: -19.5,-64.5 @@ -133086,7 +134140,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19373 + - uid: 19478 components: - pos: 31.5,-14.5 parent: 2 @@ -133095,7 +134149,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19374 + - uid: 19479 components: - rot: -1.5707963267948966 rad pos: 42.5,-26.5 @@ -133105,7 +134159,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19375 + - uid: 19480 components: - rot: -1.5707963267948966 rad pos: -17.5,-72.5 @@ -133115,7 +134169,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19376 + - uid: 19481 components: - rot: 1.5707963267948966 rad pos: -19.5,-67.5 @@ -133125,7 +134179,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19377 + - uid: 19482 components: - rot: -1.5707963267948966 rad pos: -19.5,-88.5 @@ -133135,7 +134189,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19378 + - uid: 19483 components: - rot: 3.141592653589793 rad pos: 10.5,-46.5 @@ -133145,7 +134199,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19379 + - uid: 19484 components: - rot: -1.5707963267948966 rad pos: 35.5,-23.5 @@ -133155,7 +134209,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19380 + - uid: 19485 components: - pos: -16.5,-37.5 parent: 2 @@ -133164,7 +134218,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19381 + - uid: 19486 components: - pos: -11.5,-32.5 parent: 2 @@ -133173,7 +134227,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19382 + - uid: 19487 components: - rot: -1.5707963267948966 rad pos: -0.5,-10.5 @@ -133183,7 +134237,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19383 + - uid: 19488 components: - rot: 3.141592653589793 rad pos: 21.5,-46.5 @@ -133193,7 +134247,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19384 + - uid: 19489 components: - pos: 30.5,28.5 parent: 2 @@ -133202,7 +134256,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19385 + - uid: 19490 components: - pos: 45.5,15.5 parent: 2 @@ -133211,7 +134265,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19386 + - uid: 19491 components: - rot: -1.5707963267948966 rad pos: 61.5,15.5 @@ -133221,7 +134275,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19387 + - uid: 19492 components: - rot: -1.5707963267948966 rad pos: 52.5,13.5 @@ -133231,7 +134285,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19388 + - uid: 19493 components: - rot: -1.5707963267948966 rad pos: 61.5,18.5 @@ -133241,7 +134295,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19389 + - uid: 19494 components: - pos: 59.5,23.5 parent: 2 @@ -133250,7 +134304,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19390 + - uid: 19495 components: - pos: 56.5,23.5 parent: 2 @@ -133259,7 +134313,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19391 + - uid: 19496 components: - pos: 53.5,23.5 parent: 2 @@ -133268,7 +134322,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19392 + - uid: 19497 components: - pos: 50.5,23.5 parent: 2 @@ -133277,7 +134331,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19393 + - uid: 19498 components: - pos: 47.5,23.5 parent: 2 @@ -133286,7 +134340,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19394 + - uid: 19499 components: - rot: 3.141592653589793 rad pos: 47.5,13.5 @@ -133296,7 +134350,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19395 + - uid: 19500 components: - rot: -1.5707963267948966 rad pos: 60.5,11.5 @@ -133306,7 +134360,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19396 + - uid: 19501 components: - pos: 39.5,20.5 parent: 2 @@ -133315,7 +134369,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19397 + - uid: 19502 components: - rot: 1.5707963267948966 rad pos: 34.5,19.5 @@ -133325,7 +134379,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19398 + - uid: 19503 components: - pos: 45.5,1.5 parent: 2 @@ -133334,7 +134388,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19399 + - uid: 19504 components: - rot: -1.5707963267948966 rad pos: 57.5,0.5 @@ -133344,7 +134398,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19400 + - uid: 19505 components: - rot: 1.5707963267948966 rad pos: 43.5,-1.5 @@ -133354,7 +134408,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19401 + - uid: 19506 components: - rot: 1.5707963267948966 rad pos: 36.5,-3.5 @@ -133364,7 +134418,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19402 + - uid: 19507 components: - rot: 3.141592653589793 rad pos: 41.5,8.5 @@ -133374,7 +134428,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19403 + - uid: 19508 components: - rot: 1.5707963267948966 rad pos: 29.5,19.5 @@ -133384,7 +134438,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19404 + - uid: 19509 components: - rot: 1.5707963267948966 rad pos: 38.5,10.5 @@ -133394,7 +134448,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19405 + - uid: 19510 components: - rot: -1.5707963267948966 rad pos: 46.5,-1.5 @@ -133404,7 +134458,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19406 + - uid: 19511 components: - rot: -1.5707963267948966 rad pos: 57.5,-5.5 @@ -133414,7 +134468,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19407 + - uid: 19512 components: - rot: 3.141592653589793 rad pos: 49.5,-42.5 @@ -133424,7 +134478,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19408 + - uid: 19513 components: - pos: 42.5,-37.5 parent: 2 @@ -133433,7 +134487,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19409 + - uid: 19514 components: - rot: 3.141592653589793 rad pos: 56.5,-42.5 @@ -133443,7 +134497,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19410 + - uid: 19515 components: - rot: 3.141592653589793 rad pos: 44.5,-42.5 @@ -133453,7 +134507,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19411 + - uid: 19516 components: - rot: 3.141592653589793 rad pos: 57.5,-45.5 @@ -133463,7 +134517,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19412 + - uid: 19517 components: - rot: 3.141592653589793 rad pos: 61.5,-47.5 @@ -133473,7 +134527,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19413 + - uid: 19518 components: - rot: 1.5707963267948966 rad pos: 59.5,-32.5 @@ -133483,7 +134537,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19414 + - uid: 19519 components: - rot: -1.5707963267948966 rad pos: 62.5,-24.5 @@ -133493,7 +134547,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19415 + - uid: 19520 components: - pos: 61.5,-2.5 parent: 2 @@ -133502,7 +134556,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19416 + - uid: 19521 components: - rot: 3.141592653589793 rad pos: 60.5,-52.5 @@ -133512,7 +134566,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19417 + - uid: 19522 components: - rot: 1.5707963267948966 rad pos: 44.5,-46.5 @@ -133522,7 +134576,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19418 + - uid: 19523 components: - rot: -1.5707963267948966 rad pos: 51.5,-52.5 @@ -133532,7 +134586,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19419 + - uid: 19524 components: - rot: 1.5707963267948966 rad pos: 25.5,-56.5 @@ -133542,7 +134596,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19420 + - uid: 19525 components: - rot: -1.5707963267948966 rad pos: 30.5,-56.5 @@ -133552,7 +134606,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19421 + - uid: 19526 components: - rot: -1.5707963267948966 rad pos: 30.5,-52.5 @@ -133562,7 +134616,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19422 + - uid: 19527 components: - rot: 1.5707963267948966 rad pos: 28.5,-47.5 @@ -133572,7 +134626,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19423 + - uid: 19528 components: - rot: -1.5707963267948966 rad pos: 33.5,-47.5 @@ -133582,7 +134636,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19424 + - uid: 19529 components: - pos: 29.5,-45.5 parent: 2 @@ -133591,7 +134645,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19425 + - uid: 19530 components: - rot: -1.5707963267948966 rad pos: 53.5,-57.5 @@ -133601,7 +134655,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19426 + - uid: 19531 components: - pos: -13.5,2.5 parent: 2 @@ -133610,7 +134664,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19427 + - uid: 19532 components: - rot: 1.5707963267948966 rad pos: -17.5,1.5 @@ -133620,7 +134674,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19428 + - uid: 19533 components: - rot: 3.141592653589793 rad pos: -24.5,-14.5 @@ -133630,7 +134684,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19429 + - uid: 19534 components: - pos: -28.5,-12.5 parent: 2 @@ -133639,7 +134693,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19430 + - uid: 19535 components: - rot: -1.5707963267948966 rad pos: -19.5,-14.5 @@ -133649,7 +134703,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19431 + - uid: 19536 components: - rot: 3.141592653589793 rad pos: -24.5,-23.5 @@ -133659,7 +134713,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19432 + - uid: 19537 components: - pos: 38.5,-55.5 parent: 2 @@ -133668,7 +134722,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19433 + - uid: 19538 components: - rot: -1.5707963267948966 rad pos: 39.5,-63.5 @@ -133678,7 +134732,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19434 + - uid: 19539 components: - rot: -1.5707963267948966 rad pos: -19.5,-41.5 @@ -133688,7 +134742,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19435 + - uid: 19540 components: - rot: -1.5707963267948966 rad pos: -19.5,-47.5 @@ -133698,7 +134752,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19436 + - uid: 19541 components: - rot: -1.5707963267948966 rad pos: -19.5,-33.5 @@ -133708,7 +134762,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19437 + - uid: 19542 components: - rot: 1.5707963267948966 rad pos: 37.5,-71.5 @@ -133718,7 +134772,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19438 + - uid: 19543 components: - rot: -1.5707963267948966 rad pos: 3.5,-56.5 @@ -133728,7 +134782,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19439 + - uid: 19544 components: - pos: -28.5,-16.5 parent: 2 @@ -133737,7 +134791,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19440 + - uid: 19545 components: - rot: 1.5707963267948966 rad pos: -32.5,-27.5 @@ -133747,7 +134801,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19441 + - uid: 19546 components: - rot: 1.5707963267948966 rad pos: -34.5,-15.5 @@ -133757,7 +134811,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19442 + - uid: 19547 components: - rot: 3.141592653589793 rad pos: -36.5,-12.5 @@ -133767,7 +134821,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19443 + - uid: 19548 components: - rot: 3.141592653589793 rad pos: -41.5,-16.5 @@ -133777,7 +134831,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19444 + - uid: 19549 components: - rot: -1.5707963267948966 rad pos: -25.5,-4.5 @@ -133787,7 +134841,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19445 + - uid: 19550 components: - rot: 3.141592653589793 rad pos: -44.5,-12.5 @@ -133797,7 +134851,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19446 + - uid: 19551 components: - rot: 3.141592653589793 rad pos: -46.5,-6.5 @@ -133807,7 +134861,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19447 + - uid: 19552 components: - rot: 1.5707963267948966 rad pos: -54.5,-13.5 @@ -133817,7 +134871,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19448 + - uid: 19553 components: - rot: -1.5707963267948966 rad pos: -50.5,-24.5 @@ -133827,7 +134881,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19449 + - uid: 19554 components: - pos: -45.5,-22.5 parent: 2 @@ -133836,7 +134890,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19450 + - uid: 19555 components: - pos: -59.5,-24.5 parent: 2 @@ -133845,7 +134899,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19451 + - uid: 19556 components: - rot: 1.5707963267948966 rad pos: -65.5,-27.5 @@ -133855,7 +134909,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19452 + - uid: 19557 components: - rot: 3.141592653589793 rad pos: -64.5,-31.5 @@ -133865,7 +134919,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19453 + - uid: 19558 components: - rot: 1.5707963267948966 rad pos: -32.5,-39.5 @@ -133875,7 +134929,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19454 + - uid: 19559 components: - pos: -30.5,-33.5 parent: 2 @@ -133884,7 +134938,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19455 + - uid: 19560 components: - rot: 1.5707963267948966 rad pos: -38.5,-34.5 @@ -133894,7 +134948,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19456 + - uid: 19561 components: - rot: -1.5707963267948966 rad pos: -23.5,-34.5 @@ -133904,7 +134958,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19457 + - uid: 19562 components: - pos: -23.5,-57.5 parent: 2 @@ -133913,7 +134967,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19458 + - uid: 19563 components: - rot: 1.5707963267948966 rad pos: -41.5,-71.5 @@ -133923,7 +134977,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19459 + - uid: 19564 components: - pos: 21.5,-27.5 parent: 2 @@ -133932,7 +134986,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19460 + - uid: 19565 components: - rot: -1.5707963267948966 rad pos: 29.5,-30.5 @@ -133942,7 +134996,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19461 + - uid: 19566 components: - rot: 1.5707963267948966 rad pos: -19.5,19.5 @@ -133952,7 +135006,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19462 + - uid: 19567 components: - rot: 3.141592653589793 rad pos: -28.5,22.5 @@ -133962,7 +135016,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19463 + - uid: 19568 components: - rot: 3.141592653589793 rad pos: -32.5,22.5 @@ -133972,7 +135026,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19464 + - uid: 19569 components: - pos: -32.5,28.5 parent: 2 @@ -133981,7 +135035,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19465 + - uid: 19570 components: - rot: 1.5707963267948966 rad pos: -41.5,23.5 @@ -133991,7 +135045,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19466 + - uid: 19571 components: - rot: 3.141592653589793 rad pos: -24.5,22.5 @@ -134001,7 +135055,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19467 + - uid: 19572 components: - rot: 1.5707963267948966 rad pos: -50.5,33.5 @@ -134011,7 +135065,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19468 + - uid: 19573 components: - rot: 1.5707963267948966 rad pos: -50.5,31.5 @@ -134021,7 +135075,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19469 + - uid: 19574 components: - pos: -44.5,34.5 parent: 2 @@ -134030,7 +135084,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19470 + - uid: 19575 components: - rot: -1.5707963267948966 rad pos: -37.5,30.5 @@ -134040,7 +135094,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19471 + - uid: 19576 components: - rot: 1.5707963267948966 rad pos: -26.5,12.5 @@ -134050,7 +135104,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19472 + - uid: 19577 components: - rot: 3.141592653589793 rad pos: -28.5,-3.5 @@ -134060,7 +135114,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19473 + - uid: 19578 components: - rot: 3.141592653589793 rad pos: -29.5,9.5 @@ -134070,7 +135124,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19474 + - uid: 19579 components: - pos: -29.5,15.5 parent: 2 @@ -134079,7 +135133,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19475 + - uid: 19580 components: - rot: -1.5707963267948966 rad pos: -36.5,8.5 @@ -134089,7 +135143,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19476 + - uid: 19581 components: - rot: 1.5707963267948966 rad pos: -38.5,5.5 @@ -134099,7 +135153,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19477 + - uid: 19582 components: - rot: 3.141592653589793 rad pos: -41.5,0.5 @@ -134109,7 +135163,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19478 + - uid: 19583 components: - rot: 3.141592653589793 rad pos: -45.5,0.5 @@ -134119,7 +135173,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19479 + - uid: 19584 components: - rot: -1.5707963267948966 rad pos: -44.5,6.5 @@ -134129,7 +135183,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19480 + - uid: 19585 components: - rot: 1.5707963267948966 rad pos: -51.5,7.5 @@ -134139,7 +135193,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19481 + - uid: 19586 components: - rot: -1.5707963267948966 rad pos: -43.5,11.5 @@ -134149,7 +135203,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19482 + - uid: 19587 components: - pos: -45.5,14.5 parent: 2 @@ -134158,7 +135212,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19483 + - uid: 19588 components: - pos: -51.5,14.5 parent: 2 @@ -134167,7 +135221,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19484 + - uid: 19589 components: - rot: 1.5707963267948966 rad pos: -52.5,11.5 @@ -134177,7 +135231,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19485 + - uid: 19590 components: - rot: 3.141592653589793 rad pos: 19.5,-54.5 @@ -134187,7 +135241,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19486 + - uid: 19591 components: - rot: 3.141592653589793 rad pos: 19.5,-54.5 @@ -134197,7 +135251,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19487 + - uid: 19592 components: - pos: -54.5,-74.5 parent: 2 @@ -134206,7 +135260,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19488 + - uid: 19593 components: - pos: -8.5,-26.5 parent: 2 @@ -134215,7 +135269,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19489 + - uid: 19594 components: - rot: 3.141592653589793 rad pos: 33.5,-42.5 @@ -134225,7 +135279,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19490 + - uid: 19595 components: - rot: 1.5707963267948966 rad pos: -36.5,-44.5 @@ -134235,7 +135289,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19491 + - uid: 19596 components: - rot: 1.5707963267948966 rad pos: -30.5,-78.5 @@ -134245,7 +135299,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19492 + - uid: 19597 components: - rot: 1.5707963267948966 rad pos: 39.5,46.5 @@ -134255,7 +135309,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19493 + - uid: 19598 components: - pos: 54.5,56.5 parent: 2 @@ -134264,7 +135318,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19494 + - uid: 19599 components: - rot: -1.5707963267948966 rad pos: 55.5,43.5 @@ -134274,7 +135328,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19495 + - uid: 19600 components: - rot: -1.5707963267948966 rad pos: -12.5,33.5 @@ -134284,7 +135338,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19496 + - uid: 19601 components: - rot: 1.5707963267948966 rad pos: -20.5,44.5 @@ -134294,7 +135348,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19497 + - uid: 19602 components: - pos: -14.5,45.5 parent: 2 @@ -134303,7 +135357,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19498 + - uid: 19603 components: - rot: 3.141592653589793 rad pos: 70.5,37.5 @@ -134311,7 +135365,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 19499 + - uid: 19604 components: - rot: -1.5707963267948966 rad pos: -11.5,38.5 @@ -134321,7 +135375,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19500 + - uid: 19605 components: - pos: -1.5,66.5 parent: 2 @@ -134330,7 +135384,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19501 + - uid: 19606 components: - rot: -1.5707963267948966 rad pos: -0.5,61.5 @@ -134340,7 +135394,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19502 + - uid: 19607 components: - rot: 1.5707963267948966 rad pos: 0.5,46.5 @@ -134350,17 +135404,20 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19503 + - uid: 19608 components: - rot: 1.5707963267948966 rad pos: -13.5,60.5 parent: 2 type: Transform + - ShutdownSubscribers: + - 73 + type: DeviceNetwork - enabled: False type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19504 + - uid: 19609 components: - rot: 3.141592653589793 rad pos: -17.5,60.5 @@ -134370,7 +135427,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19505 + - uid: 19610 components: - pos: -12.5,73.5 parent: 2 @@ -134379,7 +135436,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19506 + - uid: 19611 components: - pos: -22.5,73.5 parent: 2 @@ -134388,7 +135445,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19507 + - uid: 19612 components: - rot: -1.5707963267948966 rad pos: -21.5,60.5 @@ -134398,7 +135455,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19508 + - uid: 19613 components: - rot: 1.5707963267948966 rad pos: 0.5,57.5 @@ -134408,7 +135465,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19509 + - uid: 19614 components: - rot: -1.5707963267948966 rad pos: 30.5,46.5 @@ -134418,7 +135475,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19510 + - uid: 19615 components: - rot: 3.141592653589793 rad pos: 23.5,45.5 @@ -134428,7 +135485,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19511 + - uid: 19616 components: - rot: -1.5707963267948966 rad pos: -7.5,-91.5 @@ -134438,7 +135495,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19512 + - uid: 19617 components: - rot: 1.5707963267948966 rad pos: -21.5,-96.5 @@ -134448,7 +135505,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19513 + - uid: 19618 components: - rot: -1.5707963267948966 rad pos: -7.5,-97.5 @@ -134458,7 +135515,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19514 + - uid: 19619 components: - pos: -8.5,-84.5 parent: 2 @@ -134467,7 +135524,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19515 + - uid: 19620 components: - rot: 1.5707963267948966 rad pos: -34.5,-97.5 @@ -134477,7 +135534,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19516 + - uid: 19621 components: - pos: 65.5,-32.5 parent: 2 @@ -134486,7 +135543,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19517 + - uid: 19622 components: - rot: 3.141592653589793 rad pos: 68.5,-34.5 @@ -134496,7 +135553,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19518 + - uid: 19623 components: - rot: 1.5707963267948966 rad pos: 74.5,-40.5 @@ -134506,7 +135563,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19519 + - uid: 19624 components: - rot: -1.5707963267948966 rad pos: 74.5,-47.5 @@ -134516,7 +135573,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19520 + - uid: 19625 components: - rot: 1.5707963267948966 rad pos: 66.5,-37.5 @@ -134526,7 +135583,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19521 + - uid: 19626 components: - pos: 74.5,-32.5 parent: 2 @@ -134535,7 +135592,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19522 + - uid: 19627 components: - pos: 73.5,-29.5 parent: 2 @@ -134544,7 +135601,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19523 + - uid: 19628 components: - rot: 3.141592653589793 rad pos: 3.5,-30.5 @@ -134554,7 +135611,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19524 + - uid: 19629 components: - rot: -1.5707963267948966 rad pos: -18.5,66.5 @@ -134564,7 +135621,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19525 + - uid: 19630 components: - rot: 3.141592653589793 rad pos: 72.5,-49.5 @@ -134574,7 +135631,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19526 + - uid: 19631 components: - rot: -1.5707963267948966 rad pos: -15.5,24.5 @@ -134584,7 +135641,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19527 + - uid: 19632 components: - rot: 1.5707963267948966 rad pos: -8.5,-14.5 @@ -134594,7 +135651,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19528 + - uid: 19633 components: - pos: -11.5,-18.5 parent: 2 @@ -134603,7 +135660,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19529 + - uid: 19634 components: - rot: 3.141592653589793 rad pos: -30.5,-74.5 @@ -134613,7 +135670,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19530 + - uid: 19635 components: - rot: -1.5707963267948966 rad pos: 62.5,-38.5 @@ -134623,7 +135680,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19531 + - uid: 19636 components: - rot: 3.141592653589793 rad pos: 30.5,-84.5 @@ -134633,7 +135690,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19532 + - uid: 19637 components: - rot: -1.5707963267948966 rad pos: 48.5,-72.5 @@ -134643,7 +135700,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19533 + - uid: 19638 components: - pos: 25.5,-71.5 parent: 2 @@ -134652,7 +135709,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19534 + - uid: 19639 components: - rot: 3.141592653589793 rad pos: 18.5,-83.5 @@ -134662,7 +135719,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19535 + - uid: 19640 components: - rot: -1.5707963267948966 rad pos: 48.5,-86.5 @@ -134672,7 +135729,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19536 + - uid: 19641 components: - pos: 12.5,-22.5 parent: 2 @@ -134681,7 +135738,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19537 + - uid: 19642 components: - rot: -1.5707963267948966 rad pos: 45.5,5.5 @@ -134691,7 +135748,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19538 + - uid: 19643 components: - pos: -45.5,43.5 parent: 2 @@ -134700,7 +135757,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19539 + - uid: 19644 components: - pos: 68.5,-31.5 parent: 2 @@ -134709,7 +135766,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19540 + - uid: 19645 components: - rot: -1.5707963267948966 rad pos: -5.5,16.5 @@ -134722,22 +135779,48 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor + - uid: 19646 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-21.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 100 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 19647 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-37.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 78 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor - proto: GasVentScrubber entities: - - uid: 14256 + - uid: 19648 components: - - rot: -1.5707963267948966 rad + - rot: 1.5707963267948966 rad pos: 1.5,-6.5 parent: 2 type: Transform - ShutdownSubscribers: - - 12968 + - 98 type: DeviceNetwork - enabled: False type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19541 + - uid: 19649 components: - rot: 1.5707963267948966 rad pos: -74.5,-24.5 @@ -134747,7 +135830,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19542 + - uid: 19650 components: - rot: 3.141592653589793 rad pos: -73.5,-38.5 @@ -134757,7 +135840,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19543 + - uid: 19651 components: - rot: -1.5707963267948966 rad pos: -2.5,11.5 @@ -134767,7 +135850,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19544 + - uid: 19652 components: - pos: 25.5,-51.5 parent: 2 @@ -134776,17 +135859,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19545 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-10.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 19546 + - uid: 19653 components: - pos: 22.5,-4.5 parent: 2 @@ -134795,7 +135868,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19547 + - uid: 19654 components: - pos: 11.5,19.5 parent: 2 @@ -134804,7 +135877,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19548 + - uid: 19655 components: - rot: 1.5707963267948966 rad pos: 27.5,1.5 @@ -134814,7 +135887,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19549 + - uid: 19656 components: - rot: 3.141592653589793 rad pos: 7.5,-26.5 @@ -134824,7 +135897,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19551 + - uid: 19657 components: - pos: -8.5,-0.5 parent: 2 @@ -134833,7 +135906,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19552 + - uid: 19658 components: - pos: 31.5,-41.5 parent: 2 @@ -134842,7 +135915,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19553 + - uid: 19659 components: - pos: 31.5,16.5 parent: 2 @@ -134851,7 +135924,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19554 + - uid: 19660 components: - rot: 3.141592653589793 rad pos: -5.5,6.5 @@ -134861,7 +135934,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19555 + - uid: 19661 components: - rot: -1.5707963267948966 rad pos: -8.5,-39.5 @@ -134871,7 +135944,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19556 + - uid: 19662 components: - rot: 3.141592653589793 rad pos: 31.5,11.5 @@ -134881,7 +135954,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19557 + - uid: 19663 components: - rot: 1.5707963267948966 rad pos: 37.5,8.5 @@ -134891,7 +135964,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19558 + - uid: 19664 components: - rot: 1.5707963267948966 rad pos: 37.5,5.5 @@ -134901,7 +135974,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19559 + - uid: 19665 components: - rot: 3.141592653589793 rad pos: 28.5,11.5 @@ -134911,7 +135984,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19560 + - uid: 19666 components: - pos: 38.5,12.5 parent: 2 @@ -134920,7 +135993,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19561 + - uid: 19667 components: - rot: 3.141592653589793 rad pos: -4.5,-43.5 @@ -134930,7 +136003,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19562 + - uid: 19668 components: - rot: 1.5707963267948966 rad pos: 16.5,12.5 @@ -134940,7 +136013,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19563 + - uid: 19669 components: - rot: 3.141592653589793 rad pos: 34.5,11.5 @@ -134950,7 +136023,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19565 + - uid: 19670 components: - rot: -1.5707963267948966 rad pos: 26.5,7.5 @@ -134960,7 +136033,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19566 + - uid: 19671 components: - rot: -1.5707963267948966 rad pos: 8.5,19.5 @@ -134970,7 +136043,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19567 + - uid: 19672 components: - rot: -1.5707963267948966 rad pos: 22.5,-18.5 @@ -134980,7 +136053,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19568 + - uid: 19673 components: - rot: -1.5707963267948966 rad pos: 29.5,-29.5 @@ -134990,7 +136063,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19569 + - uid: 19674 components: - pos: 23.5,-27.5 parent: 2 @@ -134999,7 +136072,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19570 + - uid: 19675 components: - rot: -1.5707963267948966 rad pos: -8.5,-5.5 @@ -135009,7 +136082,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19571 + - uid: 19676 components: - rot: 3.141592653589793 rad pos: -2.5,-65.5 @@ -135019,7 +136092,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19572 + - uid: 19677 components: - rot: 3.141592653589793 rad pos: -8.5,-65.5 @@ -135029,7 +136102,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19573 + - uid: 19678 components: - rot: 3.141592653589793 rad pos: -15.5,-65.5 @@ -135039,7 +136112,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19574 + - uid: 19679 components: - rot: 3.141592653589793 rad pos: -5.5,-61.5 @@ -135049,7 +136122,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19575 + - uid: 19680 components: - rot: 3.141592653589793 rad pos: -8.5,-54.5 @@ -135059,7 +136132,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19576 + - uid: 19681 components: - rot: 3.141592653589793 rad pos: 3.5,-45.5 @@ -135069,7 +136142,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19577 + - uid: 19682 components: - rot: 3.141592653589793 rad pos: -8.5,-47.5 @@ -135079,7 +136152,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19578 + - uid: 19683 components: - rot: -1.5707963267948966 rad pos: 9.5,-61.5 @@ -135089,7 +136162,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19579 + - uid: 19684 components: - rot: 3.141592653589793 rad pos: -12.5,-47.5 @@ -135099,7 +136172,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19580 + - uid: 19685 components: - rot: 3.141592653589793 rad pos: -20.5,-85.5 @@ -135109,7 +136182,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19581 + - uid: 19686 components: - rot: -1.5707963267948966 rad pos: -24.5,-77.5 @@ -135119,7 +136192,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19582 + - uid: 19687 components: - rot: 1.5707963267948966 rad pos: -28.5,-77.5 @@ -135129,7 +136202,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19583 + - uid: 19688 components: - pos: 17.5,0.5 parent: 2 @@ -135138,7 +136211,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19584 + - uid: 19689 components: - pos: 33.5,2.5 parent: 2 @@ -135147,7 +136220,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19585 + - uid: 19690 components: - rot: -1.5707963267948966 rad pos: 1.5,11.5 @@ -135157,7 +136230,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19586 + - uid: 19691 components: - rot: -1.5707963267948966 rad pos: 9.5,0.5 @@ -135167,7 +136240,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19587 + - uid: 19692 components: - rot: 1.5707963267948966 rad pos: -23.5,-89.5 @@ -135177,7 +136250,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19588 + - uid: 19693 components: - rot: 3.141592653589793 rad pos: -21.5,-90.5 @@ -135187,7 +136260,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19589 + - uid: 19694 components: - pos: 33.5,-14.5 parent: 2 @@ -135196,7 +136269,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19590 + - uid: 19695 components: - rot: 3.141592653589793 rad pos: 10.5,-4.5 @@ -135206,7 +136279,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19591 + - uid: 19696 components: - pos: 25.5,22.5 parent: 2 @@ -135215,7 +136288,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19592 + - uid: 19697 components: - pos: 16.5,22.5 parent: 2 @@ -135224,7 +136297,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19593 + - uid: 19698 components: - rot: -1.5707963267948966 rad pos: 16.5,-23.5 @@ -135234,7 +136307,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19595 + - uid: 19699 components: - rot: 1.5707963267948966 rad pos: -4.5,-11.5 @@ -135244,7 +136317,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19596 + - uid: 19700 components: - rot: -1.5707963267948966 rad pos: 22.5,12.5 @@ -135254,7 +136327,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19597 + - uid: 19701 components: - rot: 3.141592653589793 rad pos: 46.5,-30.5 @@ -135264,7 +136337,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19598 + - uid: 19702 components: - rot: -1.5707963267948966 rad pos: 45.5,-24.5 @@ -135274,7 +136347,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19599 + - uid: 19703 components: - pos: -20.5,33.5 parent: 2 @@ -135283,7 +136356,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19600 + - uid: 19704 components: - rot: -1.5707963267948966 rad pos: 3.5,1.5 @@ -135293,7 +136366,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19601 + - uid: 19705 components: - pos: 21.5,17.5 parent: 2 @@ -135302,7 +136375,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19602 + - uid: 19706 components: - rot: 1.5707963267948966 rad pos: 0.5,6.5 @@ -135312,7 +136385,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19603 + - uid: 19707 components: - rot: 1.5707963267948966 rad pos: -28.5,-79.5 @@ -135322,7 +136395,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19604 + - uid: 19708 components: - rot: 1.5707963267948966 rad pos: 20.5,-14.5 @@ -135332,7 +136405,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19605 + - uid: 19709 components: - pos: 12.5,17.5 parent: 2 @@ -135341,7 +136414,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19606 + - uid: 19710 components: - rot: 1.5707963267948966 rad pos: 23.5,-24.5 @@ -135351,7 +136424,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19607 + - uid: 19711 components: - rot: 1.5707963267948966 rad pos: 6.5,14.5 @@ -135361,7 +136434,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19608 + - uid: 19712 components: - rot: -1.5707963267948966 rad pos: 42.5,-25.5 @@ -135371,7 +136444,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19609 + - uid: 19713 components: - rot: -1.5707963267948966 rad pos: -19.5,-75.5 @@ -135381,7 +136454,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19610 + - uid: 19714 components: - rot: -1.5707963267948966 rad pos: -19.5,-70.5 @@ -135391,7 +136464,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19611 + - uid: 19715 components: - rot: -1.5707963267948966 rad pos: -19.5,-66.5 @@ -135401,7 +136474,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19612 + - uid: 19716 components: - rot: -1.5707963267948966 rad pos: -19.5,-63.5 @@ -135411,7 +136484,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19613 + - uid: 19717 components: - rot: 3.141592653589793 rad pos: 9.5,-46.5 @@ -135421,7 +136494,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19614 + - uid: 19718 components: - rot: 1.5707963267948966 rad pos: 35.5,-31.5 @@ -135431,7 +136504,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19615 + - uid: 19719 components: - rot: -1.5707963267948966 rad pos: 9.5,10.5 @@ -135441,7 +136514,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19616 + - uid: 19720 components: - rot: 1.5707963267948966 rad pos: -14.5,-37.5 @@ -135451,7 +136524,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19617 + - uid: 19721 components: - pos: -9.5,-32.5 parent: 2 @@ -135460,7 +136533,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19618 + - uid: 19722 components: - rot: 1.5707963267948966 rad pos: 0.5,19.5 @@ -135470,7 +136543,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19619 + - uid: 19723 components: - pos: -0.5,-13.5 parent: 2 @@ -135479,7 +136552,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19620 + - uid: 19724 components: - rot: 3.141592653589793 rad pos: 20.5,-47.5 @@ -135489,7 +136562,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19621 + - uid: 19725 components: - pos: 28.5,28.5 parent: 2 @@ -135498,7 +136571,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19622 + - uid: 19726 components: - rot: 3.141592653589793 rad pos: 44.5,14.5 @@ -135508,7 +136581,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19623 + - uid: 19727 components: - pos: 47.5,16.5 parent: 2 @@ -135517,7 +136590,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19624 + - uid: 19728 components: - rot: -1.5707963267948966 rad pos: 52.5,12.5 @@ -135527,7 +136600,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19625 + - uid: 19729 components: - pos: 46.5,23.5 parent: 2 @@ -135536,7 +136609,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19626 + - uid: 19730 components: - pos: 49.5,23.5 parent: 2 @@ -135545,7 +136618,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19627 + - uid: 19731 components: - pos: 52.5,23.5 parent: 2 @@ -135554,7 +136627,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19628 + - uid: 19732 components: - pos: 55.5,23.5 parent: 2 @@ -135563,7 +136636,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19629 + - uid: 19733 components: - pos: 58.5,23.5 parent: 2 @@ -135572,7 +136645,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19630 + - uid: 19734 components: - rot: -1.5707963267948966 rad pos: 61.5,19.5 @@ -135582,7 +136655,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19631 + - uid: 19735 components: - rot: -1.5707963267948966 rad pos: 61.5,16.5 @@ -135592,7 +136665,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19632 + - uid: 19736 components: - rot: 1.5707963267948966 rad pos: 57.5,12.5 @@ -135602,7 +136675,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19633 + - uid: 19737 components: - rot: 3.141592653589793 rad pos: 40.5,19.5 @@ -135612,7 +136685,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19634 + - uid: 19738 components: - rot: 1.5707963267948966 rad pos: 34.5,20.5 @@ -135622,7 +136695,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19635 + - uid: 19739 components: - rot: -1.5707963267948966 rad pos: 56.5,1.5 @@ -135632,7 +136705,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19636 + - uid: 19740 components: - rot: 1.5707963267948966 rad pos: 41.5,-1.5 @@ -135642,7 +136715,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19637 + - uid: 19741 components: - rot: 1.5707963267948966 rad pos: 36.5,-2.5 @@ -135652,7 +136725,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19638 + - uid: 19742 components: - rot: -1.5707963267948966 rad pos: 29.5,22.5 @@ -135662,7 +136735,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19639 + - uid: 19743 components: - rot: 3.141592653589793 rad pos: 38.5,0.5 @@ -135672,7 +136745,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19640 + - uid: 19744 components: - rot: -1.5707963267948966 rad pos: 46.5,-2.5 @@ -135682,7 +136755,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19641 + - uid: 19745 components: - rot: 1.5707963267948966 rad pos: 41.5,9.5 @@ -135692,7 +136765,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19642 + - uid: 19746 components: - rot: -1.5707963267948966 rad pos: 57.5,-12.5 @@ -135702,7 +136775,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19643 + - uid: 19747 components: - rot: 3.141592653589793 rad pos: 73.5,-28.5 @@ -135712,7 +136785,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19644 + - uid: 19748 components: - pos: 43.5,-37.5 parent: 2 @@ -135721,7 +136794,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19645 + - uid: 19749 components: - rot: -1.5707963267948966 rad pos: 50.5,-43.5 @@ -135731,7 +136804,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19646 + - uid: 19750 components: - pos: 55.5,-42.5 parent: 2 @@ -135740,7 +136813,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19647 + - uid: 19751 components: - pos: 45.5,-42.5 parent: 2 @@ -135749,7 +136822,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19648 + - uid: 19752 components: - pos: 56.5,-44.5 parent: 2 @@ -135758,7 +136831,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19649 + - uid: 19753 components: - rot: 3.141592653589793 rad pos: 63.5,-47.5 @@ -135768,7 +136841,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19650 + - uid: 19754 components: - rot: 1.5707963267948966 rad pos: 62.5,-26.5 @@ -135778,7 +136851,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19651 + - uid: 19755 components: - pos: 63.5,-2.5 parent: 2 @@ -135787,7 +136860,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19652 + - uid: 19756 components: - rot: 3.141592653589793 rad pos: 64.5,-52.5 @@ -135797,7 +136870,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19653 + - uid: 19757 components: - rot: 3.141592653589793 rad pos: 42.5,-46.5 @@ -135807,7 +136880,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19654 + - uid: 19758 components: - rot: -1.5707963267948966 rad pos: 50.5,-54.5 @@ -135817,7 +136890,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19655 + - uid: 19759 components: - rot: 1.5707963267948966 rad pos: 48.5,-52.5 @@ -135827,7 +136900,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19656 + - uid: 19760 components: - rot: 3.141592653589793 rad pos: 70.5,-49.5 @@ -135837,7 +136910,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19657 + - uid: 19761 components: - rot: 1.5707963267948966 rad pos: 31.5,-52.5 @@ -135847,7 +136920,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19658 + - uid: 19762 components: - rot: -1.5707963267948966 rad pos: 33.5,-56.5 @@ -135857,7 +136930,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19659 + - uid: 19763 components: - rot: 1.5707963267948966 rad pos: 33.5,-48.5 @@ -135867,7 +136940,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19660 + - uid: 19764 components: - pos: 34.5,-45.5 parent: 2 @@ -135876,7 +136949,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19661 + - uid: 19765 components: - pos: 28.5,-48.5 parent: 2 @@ -135885,7 +136958,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19662 + - uid: 19766 components: - rot: 3.141592653589793 rad pos: -13.5,6.5 @@ -135895,7 +136968,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19663 + - uid: 19767 components: - rot: 3.141592653589793 rad pos: -19.5,4.5 @@ -135905,7 +136978,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19664 + - uid: 19768 components: - pos: -24.5,-9.5 parent: 2 @@ -135914,7 +136987,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19665 + - uid: 19769 components: - rot: 3.141592653589793 rad pos: -28.5,-11.5 @@ -135924,7 +136997,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19666 + - uid: 19770 components: - rot: 1.5707963267948966 rad pos: -19.5,-19.5 @@ -135934,7 +137007,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19667 + - uid: 19771 components: - rot: 3.141592653589793 rad pos: -23.5,-22.5 @@ -135944,7 +137017,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19668 + - uid: 19772 components: - rot: -1.5707963267948966 rad pos: 54.5,-61.5 @@ -135954,7 +137027,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19669 + - uid: 19773 components: - rot: 1.5707963267948966 rad pos: 50.5,-60.5 @@ -135962,7 +137035,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 19670 + - uid: 19774 components: - pos: 40.5,-55.5 parent: 2 @@ -135971,7 +137044,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19671 + - uid: 19775 components: - rot: 1.5707963267948966 rad pos: 39.5,-65.5 @@ -135981,7 +137054,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19672 + - uid: 19776 components: - rot: -1.5707963267948966 rad pos: -17.5,-43.5 @@ -135991,7 +137064,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19673 + - uid: 19777 components: - rot: 1.5707963267948966 rad pos: -19.5,-31.5 @@ -136001,7 +137074,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19674 + - uid: 19778 components: - rot: 1.5707963267948966 rad pos: -19.5,-46.5 @@ -136011,7 +137084,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19675 + - uid: 19779 components: - rot: -1.5707963267948966 rad pos: 30.5,-85.5 @@ -136021,7 +137094,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19676 + - uid: 19780 components: - rot: -1.5707963267948966 rad pos: 49.5,-73.5 @@ -136031,7 +137104,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19677 + - uid: 19781 components: - rot: -1.5707963267948966 rad pos: 41.5,-71.5 @@ -136041,7 +137114,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19678 + - uid: 19782 components: - pos: 3.5,-57.5 parent: 2 @@ -136050,7 +137123,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19679 + - uid: 19783 components: - rot: 3.141592653589793 rad pos: -29.5,-17.5 @@ -136060,7 +137133,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19680 + - uid: 19784 components: - rot: -1.5707963267948966 rad pos: -31.5,-25.5 @@ -136070,7 +137143,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19681 + - uid: 19785 components: - rot: 1.5707963267948966 rad pos: -34.5,-17.5 @@ -136080,7 +137153,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19682 + - uid: 19786 components: - pos: -35.5,-9.5 parent: 2 @@ -136089,7 +137162,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19683 + - uid: 19787 components: - rot: -1.5707963267948966 rad pos: -41.5,-15.5 @@ -136099,7 +137172,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19684 + - uid: 19788 components: - pos: -44.5,-9.5 parent: 2 @@ -136108,7 +137181,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19685 + - uid: 19789 components: - rot: 3.141592653589793 rad pos: -47.5,-22.5 @@ -136118,7 +137191,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19686 + - uid: 19790 components: - rot: 3.141592653589793 rad pos: -50.5,-22.5 @@ -136128,7 +137201,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19687 + - uid: 19791 components: - rot: 1.5707963267948966 rad pos: -53.5,-16.5 @@ -136138,7 +137211,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19688 + - uid: 19792 components: - pos: -47.5,-5.5 parent: 2 @@ -136147,7 +137220,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19689 + - uid: 19793 components: - rot: 3.141592653589793 rad pos: -56.5,-24.5 @@ -136157,7 +137230,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19690 + - uid: 19794 components: - rot: -1.5707963267948966 rad pos: -67.5,-27.5 @@ -136167,7 +137240,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19691 + - uid: 19795 components: - rot: 3.141592653589793 rad pos: -68.5,-31.5 @@ -136177,7 +137250,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19692 + - uid: 19796 components: - rot: -1.5707963267948966 rad pos: -31.5,-37.5 @@ -136187,7 +137260,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19693 + - uid: 19797 components: - rot: 3.141592653589793 rad pos: -33.5,-34.5 @@ -136197,7 +137270,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19694 + - uid: 19798 components: - rot: 1.5707963267948966 rad pos: -38.5,-33.5 @@ -136207,7 +137280,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19695 + - uid: 19799 components: - rot: -1.5707963267948966 rad pos: -24.5,-33.5 @@ -136217,7 +137290,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19696 + - uid: 19800 components: - rot: 1.5707963267948966 rad pos: -43.5,-34.5 @@ -136230,7 +137303,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19697 + - uid: 19801 components: - rot: 3.141592653589793 rad pos: -24.5,-58.5 @@ -136240,7 +137313,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19698 + - uid: 19802 components: - rot: 3.141592653589793 rad pos: -27.5,-70.5 @@ -136250,7 +137323,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19699 + - uid: 19803 components: - rot: -1.5707963267948966 rad pos: -18.5,-57.5 @@ -136260,7 +137333,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19700 + - uid: 19804 components: - rot: 3.141592653589793 rad pos: -42.5,-72.5 @@ -136270,7 +137343,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19701 + - uid: 19805 components: - rot: -1.5707963267948966 rad pos: -19.5,16.5 @@ -136280,7 +137353,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19702 + - uid: 19806 components: - rot: 3.141592653589793 rad pos: -23.5,19.5 @@ -136290,7 +137363,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19703 + - uid: 19807 components: - pos: -28.5,21.5 parent: 2 @@ -136299,7 +137372,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19704 + - uid: 19808 components: - rot: 3.141592653589793 rad pos: -33.5,19.5 @@ -136309,7 +137382,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19705 + - uid: 19809 components: - rot: 1.5707963267948966 rad pos: -42.5,20.5 @@ -136319,7 +137392,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19706 + - uid: 19810 components: - pos: -33.5,28.5 parent: 2 @@ -136328,7 +137401,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19707 + - uid: 19811 components: - rot: -1.5707963267948966 rad pos: -37.5,29.5 @@ -136338,7 +137411,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19708 + - uid: 19812 components: - rot: 1.5707963267948966 rad pos: -25.5,13.5 @@ -136348,7 +137421,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19709 + - uid: 19813 components: - rot: 3.141592653589793 rad pos: -29.5,-3.5 @@ -136358,7 +137431,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19710 + - uid: 19814 components: - rot: 3.141592653589793 rad pos: -39.5,-0.5 @@ -136368,7 +137441,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19711 + - uid: 19815 components: - rot: -1.5707963267948966 rad pos: -37.5,3.5 @@ -136378,7 +137451,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19712 + - uid: 19816 components: - rot: 1.5707963267948966 rad pos: -39.5,8.5 @@ -136388,7 +137461,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19713 + - uid: 19817 components: - pos: -30.5,15.5 parent: 2 @@ -136397,7 +137470,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19714 + - uid: 19818 components: - rot: 3.141592653589793 rad pos: -30.5,9.5 @@ -136407,7 +137480,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19715 + - uid: 19819 components: - rot: 3.141592653589793 rad pos: -52.5,7.5 @@ -136417,7 +137490,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19716 + - uid: 19820 components: - pos: -51.5,11.5 parent: 2 @@ -136426,7 +137499,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19717 + - uid: 19821 components: - pos: -52.5,14.5 parent: 2 @@ -136435,7 +137508,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19718 + - uid: 19822 components: - rot: -1.5707963267948966 rad pos: -42.5,10.5 @@ -136445,7 +137518,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19719 + - uid: 19823 components: - rot: 1.5707963267948966 rad pos: -48.5,3.5 @@ -136455,7 +137528,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19720 + - uid: 19824 components: - rot: 3.141592653589793 rad pos: -47.5,-0.5 @@ -136465,7 +137538,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19721 + - uid: 19825 components: - pos: -46.5,15.5 parent: 2 @@ -136474,7 +137547,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19722 + - uid: 19826 components: - rot: 1.5707963267948966 rad pos: 21.5,-54.5 @@ -136484,7 +137557,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19723 + - uid: 19827 components: - rot: 3.141592653589793 rad pos: -54.5,-77.5 @@ -136494,7 +137567,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19724 + - uid: 19828 components: - rot: 3.141592653589793 rad pos: -7.5,-26.5 @@ -136504,7 +137577,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19725 + - uid: 19829 components: - pos: 17.5,-42.5 parent: 2 @@ -136513,7 +137586,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19726 + - uid: 19830 components: - rot: 1.5707963267948966 rad pos: -25.5,-2.5 @@ -136523,7 +137596,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19727 + - uid: 19831 components: - rot: 1.5707963267948966 rad pos: -35.5,-42.5 @@ -136533,7 +137606,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19728 + - uid: 19832 components: - rot: 1.5707963267948966 rad pos: 39.5,45.5 @@ -136543,7 +137616,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19729 + - uid: 19833 components: - rot: 1.5707963267948966 rad pos: 51.5,43.5 @@ -136553,7 +137626,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19730 + - uid: 19834 components: - pos: 52.5,56.5 parent: 2 @@ -136562,7 +137635,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19731 + - uid: 19835 components: - rot: -1.5707963267948966 rad pos: -12.5,34.5 @@ -136572,7 +137645,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19732 + - uid: 19836 components: - rot: 1.5707963267948966 rad pos: -24.5,30.5 @@ -136582,7 +137655,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19733 + - uid: 19837 components: - rot: -1.5707963267948966 rad pos: -14.5,43.5 @@ -136592,7 +137665,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19734 + - uid: 19838 components: - rot: 1.5707963267948966 rad pos: -20.5,43.5 @@ -136602,14 +137675,14 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19735 + - uid: 19839 components: - pos: 70.5,36.5 parent: 2 type: Transform - enabled: False type: AmbientSound - - uid: 19736 + - uid: 19840 components: - rot: -1.5707963267948966 rad pos: -11.5,39.5 @@ -136619,7 +137692,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19737 + - uid: 19841 components: - rot: -1.5707963267948966 rad pos: 1.5,69.5 @@ -136629,7 +137702,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19738 + - uid: 19842 components: - rot: 1.5707963267948966 rad pos: -4.5,69.5 @@ -136639,7 +137712,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19739 + - uid: 19843 components: - rot: -1.5707963267948966 rad pos: -1.5,62.5 @@ -136649,7 +137722,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19740 + - uid: 19844 components: - pos: -1.5,68.5 parent: 2 @@ -136658,7 +137731,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19741 + - uid: 19845 components: - rot: -1.5707963267948966 rad pos: 0.5,48.5 @@ -136668,7 +137741,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19742 + - uid: 19846 components: - rot: 1.5707963267948966 rad pos: -22.5,58.5 @@ -136678,7 +137751,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19743 + - uid: 19847 components: - pos: -17.5,63.5 parent: 2 @@ -136687,7 +137760,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19744 + - uid: 19848 components: - pos: -21.5,73.5 parent: 2 @@ -136696,7 +137769,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19745 + - uid: 19849 components: - pos: -13.5,73.5 parent: 2 @@ -136705,17 +137778,20 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19746 + - uid: 19850 components: - rot: -1.5707963267948966 rad pos: -12.5,57.5 parent: 2 type: Transform + - ShutdownSubscribers: + - 73 + type: DeviceNetwork - enabled: False type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19747 + - uid: 19851 components: - rot: -1.5707963267948966 rad pos: 0.5,56.5 @@ -136725,7 +137801,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19748 + - uid: 19852 components: - rot: -1.5707963267948966 rad pos: 30.5,45.5 @@ -136735,7 +137811,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19749 + - uid: 19853 components: - rot: 1.5707963267948966 rad pos: 24.5,45.5 @@ -136745,7 +137821,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19750 + - uid: 19854 components: - pos: -7.5,-92.5 parent: 2 @@ -136754,7 +137830,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19751 + - uid: 19855 components: - pos: -21.5,-97.5 parent: 2 @@ -136763,7 +137839,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19752 + - uid: 19856 components: - rot: -1.5707963267948966 rad pos: -6.5,-98.5 @@ -136773,7 +137849,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19753 + - uid: 19857 components: - pos: -6.5,-84.5 parent: 2 @@ -136782,7 +137858,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19754 + - uid: 19858 components: - rot: 1.5707963267948966 rad pos: -34.5,-96.5 @@ -136792,7 +137868,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19755 + - uid: 19859 components: - rot: 3.141592653589793 rad pos: 65.5,-35.5 @@ -136802,7 +137878,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19756 + - uid: 19860 components: - pos: 67.5,-33.5 parent: 2 @@ -136811,7 +137887,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19757 + - uid: 19861 components: - rot: 3.141592653589793 rad pos: 73.5,-35.5 @@ -136821,7 +137897,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19758 + - uid: 19862 components: - rot: -1.5707963267948966 rad pos: 75.5,-41.5 @@ -136831,7 +137907,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19759 + - uid: 19863 components: - rot: -1.5707963267948966 rad pos: 72.5,-46.5 @@ -136841,7 +137917,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19760 + - uid: 19864 components: - pos: 66.5,-38.5 parent: 2 @@ -136850,7 +137926,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19761 + - uid: 19865 components: - rot: 3.141592653589793 rad pos: 5.5,-30.5 @@ -136860,7 +137936,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19762 + - uid: 19866 components: - rot: 1.5707963267948966 rad pos: 59.5,-34.5 @@ -136870,7 +137946,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19763 + - uid: 19867 components: - rot: 3.141592653589793 rad pos: -54.5,-63.5 @@ -136878,7 +137954,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 19764 + - uid: 19868 components: - rot: -1.5707963267948966 rad pos: -15.5,25.5 @@ -136888,7 +137964,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19765 + - uid: 19869 components: - rot: 1.5707963267948966 rad pos: -8.5,-12.5 @@ -136898,7 +137974,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19766 + - uid: 19870 components: - rot: -1.5707963267948966 rad pos: -7.5,-22.5 @@ -136908,7 +137984,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19767 + - uid: 19871 components: - pos: -10.5,-18.5 parent: 2 @@ -136917,7 +137993,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19768 + - uid: 19872 components: - rot: 3.141592653589793 rad pos: -30.5,-70.5 @@ -136927,7 +138003,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19769 + - uid: 19873 components: - rot: 3.141592653589793 rad pos: -28.5,-74.5 @@ -136937,7 +138013,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19770 + - uid: 19874 components: - rot: 1.5707963267948966 rad pos: 61.5,-39.5 @@ -136947,7 +138023,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19771 + - uid: 19875 components: - rot: 1.5707963267948966 rad pos: 19.5,-83.5 @@ -136957,7 +138033,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19772 + - uid: 19876 components: - pos: 24.5,-72.5 parent: 2 @@ -136966,7 +138042,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19773 + - uid: 19877 components: - rot: 3.141592653589793 rad pos: 48.5,-85.5 @@ -136976,7 +138052,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19774 + - uid: 19878 components: - rot: 1.5707963267948966 rad pos: -16.5,66.5 @@ -136986,7 +138062,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19775 + - uid: 19879 components: - rot: 1.5707963267948966 rad pos: 7.5,-22.5 @@ -136996,7 +138072,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19776 + - uid: 19880 components: - pos: 45.5,7.5 parent: 2 @@ -137005,7 +138081,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19777 + - uid: 19881 components: - rot: 3.141592653589793 rad pos: -44.5,30.5 @@ -137015,7 +138091,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19778 + - uid: 19882 components: - pos: -46.5,43.5 parent: 2 @@ -137024,7 +138100,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19779 + - uid: 19883 components: - rot: -1.5707963267948966 rad pos: 67.5,-31.5 @@ -137034,7 +138110,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19780 + - uid: 19884 components: - rot: 1.5707963267948966 rad pos: -4.5,16.5 @@ -137047,7 +138123,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19781 + - uid: 19885 components: - rot: 1.5707963267948966 rad pos: -75.5,-41.5 @@ -137058,5269 +138134,5289 @@ entities: type: DeviceNetwork - enabled: False type: AmbientSound -- proto: GasVolumePump - entities: - - uid: 19782 + - uid: 19886 components: - - rot: -1.5707963267948966 rad - pos: -39.5,-57.5 + - rot: 3.141592653589793 rad + pos: -1.5,-3.5 parent: 2 type: Transform + - ShutdownSubscribers: + - 99 + type: DeviceNetwork + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor -- proto: Gauze1 - entities: - - uid: 19783 + - uid: 19887 components: - - pos: -6.3074856,-49.39305 + - pos: -1.5,-22.5 parent: 2 type: Transform -- proto: GeneratorBasic - entities: - - uid: 19784 + - ShutdownSubscribers: + - 100 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 19888 components: - - pos: -58.5,-88.5 + - rot: 3.141592653589793 rad + pos: 28.5,-38.5 parent: 2 type: Transform -- proto: GeneratorPlasma + - ShutdownSubscribers: + - 78 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasVolumePump entities: - - uid: 19785 - components: - - pos: -65.5,-51.5 - parent: 2 - type: Transform - - uid: 19786 + - uid: 19889 components: - - pos: -58.5,-86.5 + - rot: -1.5707963267948966 rad + pos: -39.5,-57.5 parent: 2 type: Transform - - uid: 19787 + - color: '#990000FF' + type: AtmosPipeColor +- proto: Gauze1 + entities: + - uid: 19890 components: - - pos: 4.5,-22.5 + - pos: -6.3074856,-49.39305 parent: 2 type: Transform - - uid: 19788 +- proto: GeneratorBasic15kW + entities: + - uid: 19893 components: - - pos: 4.5,-23.5 + - pos: -58.5,-88.5 parent: 2 type: Transform - proto: Girder entities: - - uid: 19789 + - uid: 19896 components: - pos: -36.5,-68.5 parent: 2 type: Transform - - uid: 19790 + - uid: 19897 components: - pos: 20.5,-54.5 parent: 2 type: Transform - - uid: 19791 + - uid: 19898 components: - pos: -22.5,-64.5 parent: 2 type: Transform - - uid: 19792 + - uid: 19899 components: - pos: -23.5,-42.5 parent: 2 type: Transform - - uid: 19793 + - uid: 19900 components: - pos: -28.5,-39.5 parent: 2 type: Transform - - uid: 19794 + - uid: 19901 components: - pos: -16.5,13.5 parent: 2 type: Transform - proto: GoldOre1 entities: - - uid: 19795 + - uid: 19902 components: - rot: 3.141592653589793 rad pos: 19.789879,45.273663 parent: 2 type: Transform - - uid: 19796 + - uid: 19903 components: - pos: 79.30878,-64.25522 parent: 2 type: Transform - proto: GrassBattlemap entities: - - uid: 19797 + - uid: 19904 components: - pos: 10.688803,-6.590752 parent: 2 type: Transform - proto: GravityGenerator entities: - - uid: 19798 + - uid: 19905 components: - pos: -19.5,2.5 parent: 2 type: Transform - proto: GrenadeFlashBang entities: - - uid: 19799 + - uid: 19906 components: - pos: 52.279568,11.553763 parent: 2 type: Transform - proto: Grille entities: - - uid: 1880 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-2.5 - parent: 2 - type: Transform - - uid: 19800 + - uid: 19907 components: - pos: -62.5,-35.5 parent: 2 type: Transform - - uid: 19801 + - uid: 19908 components: - pos: -44.5,-37.5 parent: 2 type: Transform - - uid: 19802 + - uid: 19909 components: - rot: -1.5707963267948966 rad pos: -77.5,-43.5 parent: 2 type: Transform - - uid: 19803 + - uid: 19910 components: - rot: 3.141592653589793 rad pos: -71.5,-27.5 parent: 2 type: Transform - - uid: 19804 + - uid: 19911 components: - rot: -1.5707963267948966 rad pos: -74.5,-42.5 parent: 2 type: Transform - - uid: 19805 + - uid: 19912 components: - pos: -76.5,-32.5 parent: 2 type: Transform - - uid: 19806 + - uid: 19913 components: - rot: 1.5707963267948966 rad pos: -64.5,-42.5 parent: 2 type: Transform - - uid: 19807 + - uid: 19914 components: - rot: 1.5707963267948966 rad pos: -64.5,-41.5 parent: 2 type: Transform - - uid: 19808 + - uid: 19915 components: - rot: 1.5707963267948966 rad pos: -64.5,-40.5 parent: 2 type: Transform - - uid: 19809 + - uid: 19916 components: - rot: 1.5707963267948966 rad pos: -64.5,-39.5 parent: 2 type: Transform - - uid: 19810 + - uid: 19917 components: - rot: 1.5707963267948966 rad pos: -74.5,-35.5 parent: 2 type: Transform - - uid: 19811 + - uid: 19918 components: - rot: 1.5707963267948966 rad pos: -74.5,-34.5 parent: 2 type: Transform - - uid: 19812 + - uid: 19919 components: - rot: -1.5707963267948966 rad pos: -75.5,-43.5 parent: 2 type: Transform - - uid: 19813 + - uid: 19920 components: - rot: -1.5707963267948966 rad pos: -77.5,-39.5 parent: 2 type: Transform - - uid: 19814 + - uid: 19921 components: - rot: -1.5707963267948966 rad pos: -75.5,-39.5 parent: 2 type: Transform - - uid: 19815 + - uid: 19922 components: - rot: -1.5707963267948966 rad pos: -76.5,-43.5 parent: 2 type: Transform - - uid: 19816 + - uid: 19923 components: - pos: -5.5,20.5 parent: 2 type: Transform - - uid: 19817 + - uid: 19924 components: - rot: 1.5707963267948966 rad pos: -7.5,13.5 parent: 2 type: Transform - - uid: 19818 + - uid: 19925 components: - pos: -4.5,20.5 parent: 2 type: Transform - - uid: 19819 + - uid: 19926 components: - rot: 3.141592653589793 rad pos: 5.5,18.5 parent: 2 type: Transform - - uid: 19820 + - uid: 19927 components: - rot: -1.5707963267948966 rad pos: -46.5,45.5 parent: 2 type: Transform - - uid: 19821 + - uid: 19928 components: - rot: -1.5707963267948966 rad pos: -45.5,45.5 parent: 2 type: Transform - - uid: 19822 + - uid: 19929 components: - rot: -1.5707963267948966 rad pos: -47.5,45.5 parent: 2 type: Transform - - uid: 19823 + - uid: 19930 components: - pos: 32.5,-9.5 parent: 2 type: Transform - - uid: 19824 + - uid: 19931 components: - rot: 3.141592653589793 rad pos: 28.5,-63.5 parent: 2 type: Transform - - uid: 19825 + - uid: 19932 components: - pos: 19.5,-0.5 parent: 2 type: Transform - - uid: 19826 + - uid: 19933 components: - pos: -24.5,-91.5 parent: 2 type: Transform - - uid: 19827 + - uid: 19934 components: - pos: -18.5,-88.5 parent: 2 type: Transform - - uid: 19828 + - uid: 19935 components: - pos: -18.5,-58.5 parent: 2 type: Transform - - uid: 19829 + - uid: 19936 components: - pos: 31.5,-15.5 parent: 2 type: Transform - - uid: 19830 + - uid: 19937 components: - pos: -9.5,-55.5 parent: 2 type: Transform - - uid: 19831 + - uid: 19938 components: - pos: -12.5,-55.5 parent: 2 type: Transform - - uid: 19832 + - uid: 19939 components: - pos: -4.5,-56.5 parent: 2 type: Transform - - uid: 19833 + - uid: 19940 components: - pos: 22.5,-20.5 parent: 2 type: Transform - - uid: 19834 + - uid: 19941 components: - pos: 21.5,5.5 parent: 2 type: Transform - - uid: 19835 + - uid: 19942 components: - pos: 23.5,5.5 parent: 2 type: Transform - - uid: 19836 + - uid: 19943 components: - pos: 25.5,5.5 parent: 2 type: Transform - - uid: 19837 + - uid: 19944 components: - pos: 3.5,-39.5 parent: 2 type: Transform - - uid: 19838 + - uid: 19945 components: - pos: -7.5,-56.5 parent: 2 type: Transform - - uid: 19839 + - uid: 19946 components: - pos: 1.5,-47.5 parent: 2 type: Transform - - uid: 19840 + - uid: 19947 components: - pos: 29.5,26.5 parent: 2 type: Transform - - uid: 19841 + - uid: 19948 components: - pos: -13.5,-56.5 parent: 2 type: Transform - - uid: 19842 + - uid: 19949 components: - pos: -7.5,-57.5 parent: 2 type: Transform - - uid: 19843 + - uid: 19950 components: - pos: 7.5,-59.5 parent: 2 type: Transform - - uid: 19844 + - uid: 19951 components: - pos: -18.5,-68.5 parent: 2 type: Transform - - uid: 19845 + - uid: 19952 components: - pos: -20.5,-68.5 parent: 2 type: Transform - - uid: 19846 + - uid: 19953 components: - pos: -3.5,-44.5 parent: 2 type: Transform - - uid: 19847 - components: - - pos: 0.5,-24.5 - parent: 2 - type: Transform - - uid: 19848 + - uid: 19954 components: - pos: 12.5,-34.5 parent: 2 type: Transform - - uid: 19849 + - uid: 19955 components: - pos: -1.5,49.5 parent: 2 type: Transform - - uid: 19850 + - uid: 19956 components: - rot: 3.141592653589793 rad pos: 3.5,-44.5 parent: 2 type: Transform - - uid: 19851 + - uid: 19957 components: - pos: 7.5,18.5 parent: 2 type: Transform - - uid: 19852 + - uid: 19958 components: - rot: 1.5707963267948966 rad pos: 23.5,-46.5 parent: 2 type: Transform - - uid: 19853 + - uid: 19959 components: - pos: 2.5,-62.5 parent: 2 type: Transform - - uid: 19854 + - uid: 19960 components: - pos: 3.5,-78.5 parent: 2 type: Transform - - uid: 19855 + - uid: 19961 components: - pos: -6.5,-55.5 parent: 2 type: Transform - - uid: 19856 + - uid: 19962 components: - pos: -12.5,-58.5 parent: 2 type: Transform - - uid: 19857 + - uid: 19963 components: - rot: 1.5707963267948966 rad pos: -17.5,26.5 parent: 2 type: Transform - - uid: 19858 + - uid: 19964 components: - pos: -1.5,-35.5 parent: 2 type: Transform - - uid: 19859 + - uid: 19965 components: - pos: -28.5,-47.5 parent: 2 type: Transform - - uid: 19861 + - uid: 19966 components: - pos: 24.5,-60.5 parent: 2 type: Transform - - uid: 19862 + - uid: 19967 components: - rot: 3.141592653589793 rad pos: 22.5,30.5 parent: 2 type: Transform - - uid: 19867 + - uid: 19968 components: - pos: 21.5,-3.5 parent: 2 type: Transform - - uid: 19868 + - uid: 19969 components: - pos: 23.5,-3.5 parent: 2 type: Transform - - uid: 19869 + - uid: 19970 components: - pos: -6.5,-58.5 parent: 2 type: Transform - - uid: 19870 + - uid: 19971 components: - pos: 25.5,24.5 parent: 2 type: Transform - - uid: 19871 + - uid: 19972 components: - pos: -10.5,-57.5 parent: 2 type: Transform - - uid: 19872 - components: - - pos: 1.5,-24.5 - parent: 2 - type: Transform - - uid: 19873 + - uid: 19973 components: - pos: 29.5,9.5 parent: 2 type: Transform - - uid: 19874 + - uid: 19974 components: - rot: 3.141592653589793 rad pos: 22.5,32.5 parent: 2 type: Transform - - uid: 19875 + - uid: 19975 components: - pos: 15.5,18.5 parent: 2 type: Transform - - uid: 19876 + - uid: 19976 components: - pos: -13.5,-11.5 parent: 2 type: Transform - - uid: 19877 + - uid: 19977 components: - rot: 3.141592653589793 rad pos: 33.5,-63.5 parent: 2 type: Transform - - uid: 19878 + - uid: 19978 components: - rot: 3.141592653589793 rad pos: 22.5,-55.5 parent: 2 type: Transform - - uid: 19879 + - uid: 19979 components: - pos: -9.5,-62.5 parent: 2 type: Transform - - uid: 19880 + - uid: 19980 components: - pos: 4.5,-85.5 parent: 2 type: Transform - - uid: 19881 + - uid: 19981 components: - pos: 18.5,-38.5 parent: 2 type: Transform - - uid: 19882 + - uid: 19982 components: - pos: 17.5,-36.5 parent: 2 type: Transform - - uid: 19883 + - uid: 19983 components: - pos: 17.5,-34.5 parent: 2 type: Transform - - uid: 19884 + - uid: 19984 components: - pos: -27.5,-89.5 parent: 2 type: Transform - - uid: 19885 + - uid: 19985 components: - pos: -1.5,-33.5 parent: 2 type: Transform - - uid: 19886 + - uid: 19986 components: - pos: 4.5,-84.5 parent: 2 type: Transform - - uid: 19887 + - uid: 19987 components: - pos: -14.5,-77.5 parent: 2 type: Transform - - uid: 19888 + - uid: 19988 components: - pos: -21.5,-91.5 parent: 2 type: Transform - - uid: 19889 + - uid: 19989 components: - pos: 4.5,-88.5 parent: 2 type: Transform - - uid: 19890 + - uid: 19990 components: - pos: -25.5,-91.5 parent: 2 type: Transform - - uid: 19891 + - uid: 19991 components: - pos: 4.5,-81.5 parent: 2 type: Transform - - uid: 19892 + - uid: 19992 components: - pos: -18.5,-89.5 parent: 2 type: Transform - - uid: 19893 + - uid: 19993 components: - pos: 4.5,-87.5 parent: 2 type: Transform - - uid: 19894 + - uid: 19994 components: - pos: 19.5,0.5 parent: 2 type: Transform - - uid: 19895 + - uid: 19995 components: - pos: 19.5,-38.5 parent: 2 type: Transform - - uid: 19896 - components: - - pos: 2.5,-24.5 - parent: 2 - type: Transform - - uid: 19897 + - uid: 19996 components: - pos: 23.5,-12.5 parent: 2 type: Transform - - uid: 19898 + - uid: 19997 components: - pos: 21.5,-15.5 parent: 2 type: Transform - - uid: 19899 + - uid: 19998 components: - pos: 19.5,1.5 parent: 2 type: Transform - - uid: 19900 + - uid: 19999 components: - pos: 28.5,-20.5 parent: 2 type: Transform - - uid: 19901 + - uid: 20000 components: - rot: 3.141592653589793 rad pos: 20.5,-55.5 parent: 2 type: Transform - - uid: 19902 + - uid: 20001 components: - rot: 3.141592653589793 rad pos: 21.5,-55.5 parent: 2 type: Transform - - uid: 19903 + - uid: 20002 components: - pos: 18.5,-66.5 parent: 2 type: Transform - - uid: 19904 + - uid: 20003 components: - pos: 18.5,-65.5 parent: 2 type: Transform - - uid: 19905 + - uid: 20004 components: - rot: 3.141592653589793 rad pos: 28.5,-62.5 parent: 2 type: Transform - - uid: 19906 + - uid: 20005 components: - pos: 42.5,-23.5 parent: 2 type: Transform - - uid: 19907 + - uid: 20006 components: - pos: 41.5,-23.5 parent: 2 type: Transform - - uid: 19908 + - uid: 20007 components: - rot: 3.141592653589793 rad pos: 31.5,-64.5 parent: 2 type: Transform - - uid: 19909 + - uid: 20008 components: - pos: -21.5,11.5 parent: 2 type: Transform - - uid: 19911 + - uid: 20009 components: - pos: -10.5,-11.5 parent: 2 type: Transform - - uid: 19912 + - uid: 20010 components: - pos: -12.5,-16.5 parent: 2 type: Transform - - uid: 19913 + - uid: 20011 components: - rot: -1.5707963267948966 rad pos: -26.5,-9.5 parent: 2 type: Transform - - uid: 19914 + - uid: 20012 components: - pos: 12.5,-33.5 parent: 2 type: Transform - - uid: 19915 + - uid: 20013 components: - pos: 12.5,-32.5 parent: 2 type: Transform - - uid: 19916 + - uid: 20014 components: - rot: 3.141592653589793 rad pos: 26.5,-20.5 parent: 2 type: Transform - - uid: 19917 + - uid: 20015 components: - pos: 3.5,-36.5 parent: 2 type: Transform - - uid: 19918 + - uid: 20016 components: - pos: 2.5,-39.5 parent: 2 type: Transform - - uid: 19919 + - uid: 20017 components: - rot: 3.141592653589793 rad pos: 22.5,29.5 parent: 2 type: Transform - - uid: 19920 + - uid: 20018 components: - rot: 3.141592653589793 rad pos: 22.5,31.5 parent: 2 type: Transform - - uid: 19921 + - uid: 20019 components: - rot: 3.141592653589793 rad pos: 22.5,33.5 parent: 2 type: Transform - - uid: 19922 + - uid: 20020 components: - rot: 3.141592653589793 rad pos: 22.5,37.5 parent: 2 type: Transform - - uid: 19923 + - uid: 20021 components: - pos: 5.5,-58.5 parent: 2 type: Transform - - uid: 19924 + - uid: 20022 components: - rot: -1.5707963267948966 rad pos: 43.5,5.5 parent: 2 type: Transform - - uid: 19925 + - uid: 20023 components: - pos: 4.5,-86.5 parent: 2 type: Transform - - uid: 19926 + - uid: 20024 components: - pos: 4.5,-83.5 parent: 2 type: Transform - - uid: 19927 + - uid: 20025 components: - pos: 18.5,33.5 parent: 2 type: Transform - - uid: 19928 + - uid: 20026 components: - pos: -1.5,-31.5 parent: 2 type: Transform - - uid: 19929 + - uid: 20027 components: - pos: 15.5,-68.5 parent: 2 type: Transform - - uid: 19930 + - uid: 20028 components: - pos: 42.5,-28.5 parent: 2 type: Transform - - uid: 19931 + - uid: 20029 components: - pos: 41.5,-28.5 parent: 2 type: Transform - - uid: 19932 + - uid: 20030 components: - rot: -1.5707963267948966 rad pos: -31.5,-77.5 parent: 2 type: Transform - - uid: 19933 + - uid: 20031 components: - pos: -1.5,-32.5 parent: 2 type: Transform - - uid: 19934 + - uid: 20032 components: - rot: 3.141592653589793 rad pos: 6.5,-20.5 parent: 2 type: Transform - - uid: 19935 + - uid: 20033 components: - pos: 0.5,-62.5 parent: 2 type: Transform - - uid: 19936 + - uid: 20034 components: - pos: 7.5,-61.5 parent: 2 type: Transform - - uid: 19937 + - uid: 20035 components: - pos: 26.5,-3.5 parent: 2 type: Transform - - uid: 19938 + - uid: 20036 components: - pos: -13.5,37.5 parent: 2 type: Transform - - uid: 19939 + - uid: 20037 components: - pos: -15.5,-77.5 parent: 2 type: Transform - - uid: 19940 + - uid: 20038 components: - pos: 3.5,-79.5 parent: 2 type: Transform - - uid: 19941 + - uid: 20039 components: - pos: 19.5,2.5 parent: 2 type: Transform - - uid: 19942 + - uid: 20040 components: - rot: -1.5707963267948966 rad pos: -21.5,-20.5 parent: 2 type: Transform - - uid: 19943 + - uid: 20041 components: - pos: 34.5,9.5 parent: 2 type: Transform - - uid: 19944 + - uid: 20042 components: - pos: 35.5,4.5 parent: 2 type: Transform - - uid: 19945 + - uid: 20043 components: - pos: 1.5,-56.5 parent: 2 type: Transform - - uid: 19946 + - uid: 20044 components: - pos: 1.5,-57.5 parent: 2 type: Transform - - uid: 19947 + - uid: 20045 components: - pos: -10.5,-56.5 parent: 2 type: Transform - - uid: 19948 + - uid: 20046 components: - pos: -13.5,-57.5 parent: 2 type: Transform - - uid: 19949 + - uid: 20047 components: - pos: -4.5,-44.5 parent: 2 type: Transform - - uid: 19950 + - uid: 20048 components: - pos: -5.5,-44.5 parent: 2 type: Transform - - uid: 19951 + - uid: 20049 components: - pos: 5.5,-44.5 parent: 2 type: Transform - - uid: 19952 + - uid: 20050 components: - pos: 4.5,-44.5 parent: 2 type: Transform - - uid: 19953 + - uid: 20051 components: - pos: 18.5,32.5 parent: 2 type: Transform - - uid: 19954 + - uid: 20052 components: - pos: -0.5,-62.5 parent: 2 type: Transform - - uid: 19955 + - uid: 20053 components: - pos: -8.5,-62.5 parent: 2 type: Transform - - uid: 19956 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 2 - type: Transform - - uid: 19957 + - uid: 20054 components: - pos: 3.5,-77.5 parent: 2 type: Transform - - uid: 19958 + - uid: 20055 components: - rot: 3.141592653589793 rad pos: 33.5,-62.5 parent: 2 type: Transform - - uid: 19959 + - uid: 20056 components: - rot: 3.141592653589793 rad pos: 30.5,-64.5 parent: 2 type: Transform - - uid: 19960 + - uid: 20057 components: - pos: 9.5,14.5 parent: 2 type: Transform - - uid: 19961 + - uid: 20058 components: - rot: 3.141592653589793 rad pos: 22.5,28.5 parent: 2 type: Transform - - uid: 19963 + - uid: 20059 components: - pos: 68.5,-56.5 parent: 2 type: Transform - - uid: 19964 + - uid: 20060 components: - pos: -1.5,-57.5 parent: 2 type: Transform - - uid: 19965 + - uid: 20061 components: - pos: -1.5,-56.5 parent: 2 type: Transform - - uid: 19966 + - uid: 20062 components: - pos: 2.5,-58.5 parent: 2 type: Transform - - uid: 19967 + - uid: 20063 components: - pos: -3.5,-58.5 parent: 2 type: Transform - - uid: 19968 + - uid: 20064 components: - pos: 4.5,-62.5 parent: 2 type: Transform - - uid: 19969 + - uid: 20065 components: - pos: -0.5,-58.5 parent: 2 type: Transform - - uid: 19970 + - uid: 20066 components: - pos: 31.5,-38.5 parent: 2 type: Transform - - uid: 19971 + - uid: 20067 components: - pos: 33.5,-36.5 parent: 2 type: Transform - - uid: 19972 + - uid: 20068 components: - pos: 33.5,-34.5 parent: 2 type: Transform - - uid: 19973 + - uid: 20069 components: - pos: 26.5,5.5 parent: 2 type: Transform - - uid: 19974 + - uid: 20070 components: - pos: 9.5,13.5 parent: 2 type: Transform - - uid: 19975 + - uid: 20071 components: - pos: 17.5,18.5 parent: 2 type: Transform - - uid: 19976 + - uid: 20072 components: - rot: 3.141592653589793 rad pos: -7.5,-76.5 parent: 2 type: Transform - - uid: 19977 + - uid: 20073 components: - pos: 24.5,-59.5 parent: 2 type: Transform - - uid: 19978 + - uid: 20074 components: - pos: -29.5,45.5 parent: 2 type: Transform - - uid: 19979 + - uid: 20075 components: - pos: 24.5,-58.5 parent: 2 type: Transform - - uid: 19980 + - uid: 20076 components: - pos: -6.5,-36.5 parent: 2 type: Transform - - uid: 19981 + - uid: 20077 components: - pos: 19.5,-1.5 parent: 2 type: Transform - - uid: 19982 + - uid: 20078 components: - pos: -1.5,-34.5 parent: 2 type: Transform - - uid: 19983 + - uid: 20079 components: - pos: -27.5,-88.5 parent: 2 type: Transform - - uid: 19984 + - uid: 20080 components: - pos: -20.5,-91.5 parent: 2 type: Transform - - uid: 19985 + - uid: 20081 components: - pos: 17.5,-35.5 parent: 2 type: Transform - - uid: 19986 + - uid: 20082 components: - pos: 33.5,-35.5 parent: 2 type: Transform - - uid: 19987 + - uid: 20083 components: - pos: 22.5,5.5 parent: 2 type: Transform - - uid: 19988 + - uid: 20084 components: - pos: 27.5,5.5 parent: 2 type: Transform - - uid: 19989 + - uid: 20085 components: - pos: 35.5,7.5 parent: 2 type: Transform - - uid: 19990 + - uid: 20086 components: - pos: 32.5,9.5 parent: 2 type: Transform - - uid: 19991 + - uid: 20087 components: - rot: 3.141592653589793 rad pos: 22.5,34.5 parent: 2 type: Transform - - uid: 19992 + - uid: 20088 components: - pos: -3.5,-55.5 parent: 2 type: Transform - - uid: 19993 + - uid: 20089 components: - pos: -0.5,-55.5 parent: 2 type: Transform - - uid: 19994 + - uid: 20090 components: - pos: 2.5,-55.5 parent: 2 type: Transform - - uid: 19995 + - uid: 20091 components: - pos: -20.5,-58.5 parent: 2 type: Transform - - uid: 19996 + - uid: 20092 components: - pos: -9.5,-58.5 parent: 2 type: Transform - - uid: 19997 + - uid: 20093 components: - rot: -1.5707963267948966 rad pos: -31.5,-79.5 parent: 2 type: Transform - - uid: 19998 + - uid: 20094 components: - rot: 3.141592653589793 rad pos: 37.5,-35.5 parent: 2 type: Transform - - uid: 19999 + - uid: 20095 components: - pos: 33.5,-15.5 parent: 2 type: Transform - - uid: 20000 + - uid: 20096 components: - pos: -13.5,39.5 parent: 2 type: Transform - - uid: 20001 + - uid: 20097 components: - pos: -4.5,-57.5 parent: 2 type: Transform - - uid: 20002 + - uid: 20098 components: - pos: 19.5,3.5 parent: 2 type: Transform - - uid: 20003 + - uid: 20099 components: - pos: 4.5,-82.5 parent: 2 type: Transform - - uid: 20004 + - uid: 20100 components: - pos: 32.5,-38.5 parent: 2 type: Transform - - uid: 20005 + - uid: 20101 components: - rot: 3.141592653589793 rad pos: 6.5,-19.5 parent: 2 type: Transform - - uid: 20006 + - uid: 20102 components: - pos: 23.5,-20.5 parent: 2 type: Transform - - uid: 20007 + - uid: 20103 components: - pos: 25.5,-20.5 parent: 2 type: Transform - - uid: 20008 + - uid: 20104 components: - pos: 27.5,-20.5 parent: 2 type: Transform - - uid: 20009 + - uid: 20105 components: - pos: 19.5,-15.5 parent: 2 type: Transform - - uid: 20010 + - uid: 20106 components: - pos: 23.5,-11.5 parent: 2 type: Transform - - uid: 20011 + - uid: 20107 components: - pos: 25.5,-3.5 parent: 2 type: Transform - - uid: 20012 + - uid: 20108 components: - pos: 27.5,-3.5 parent: 2 type: Transform - - uid: 20013 + - uid: 20109 components: - pos: 22.5,-3.5 parent: 2 type: Transform - - uid: 20014 + - uid: 20110 components: - rot: 3.141592653589793 rad pos: -9.5,-76.5 parent: 2 type: Transform - - uid: 20015 + - uid: 20111 components: - rot: 3.141592653589793 rad pos: 24.5,-20.5 parent: 2 type: Transform - - uid: 20016 + - uid: 20112 components: - pos: 16.5,-68.5 parent: 2 type: Transform - - uid: 20017 + - uid: 20113 components: - rot: 3.141592653589793 rad pos: 31.5,13.5 parent: 2 type: Transform - - uid: 20018 + - uid: 20114 components: - rot: 3.141592653589793 rad pos: 34.5,13.5 parent: 2 type: Transform - - uid: 20019 + - uid: 20115 components: - pos: -6.5,-37.5 parent: 2 type: Transform - - uid: 20020 + - uid: 20116 components: - pos: -6.5,-38.5 parent: 2 type: Transform - - uid: 20021 + - uid: 20117 components: - pos: -9.5,-40.5 parent: 2 type: Transform - - uid: 20022 + - uid: 20118 components: - pos: -10.5,-40.5 parent: 2 type: Transform - - uid: 20023 + - uid: 20119 components: - pos: -11.5,-40.5 parent: 2 type: Transform - - uid: 20024 + - uid: 20120 components: - rot: -1.5707963267948966 rad pos: 68.5,-4.5 parent: 2 type: Transform - - uid: 20025 + - uid: 20121 components: - pos: -12.5,-11.5 parent: 2 type: Transform - - uid: 20026 + - uid: 20122 components: - pos: -9.5,-11.5 parent: 2 type: Transform - - uid: 20027 + - uid: 20123 components: - pos: -8.5,-11.5 parent: 2 type: Transform - - uid: 20028 + - uid: 20124 components: - pos: -10.5,-16.5 parent: 2 type: Transform - - uid: 20029 + - uid: 20125 components: - rot: 3.141592653589793 rad pos: 28.5,13.5 parent: 2 type: Transform - - uid: 20030 + - uid: 20126 components: - rot: 3.141592653589793 rad pos: 39.5,8.5 parent: 2 type: Transform - - uid: 20031 + - uid: 20127 components: - rot: 3.141592653589793 rad pos: 39.5,5.5 parent: 2 type: Transform - - uid: 20032 + - uid: 20128 components: - pos: -12.5,14.5 parent: 2 type: Transform - - uid: 20033 + - uid: 20129 components: - rot: 1.5707963267948966 rad pos: 20.5,-44.5 parent: 2 type: Transform - - uid: 20034 + - uid: 20130 components: - pos: 37.5,-36.5 parent: 2 type: Transform - - uid: 20035 + - uid: 20131 components: - pos: 33.5,37.5 parent: 2 type: Transform - - uid: 20036 + - uid: 20132 components: - pos: 32.5,37.5 parent: 2 type: Transform - - uid: 20037 + - uid: 20133 components: - pos: 31.5,37.5 parent: 2 type: Transform - - uid: 20038 + - uid: 20134 components: - pos: 30.5,37.5 parent: 2 type: Transform - - uid: 20039 + - uid: 20135 components: - pos: 29.5,37.5 parent: 2 type: Transform - - uid: 20040 + - uid: 20136 components: - pos: 28.5,37.5 parent: 2 type: Transform - - uid: 20041 + - uid: 20137 components: - pos: 27.5,37.5 parent: 2 type: Transform - - uid: 20042 + - uid: 20138 components: - pos: 26.5,37.5 parent: 2 type: Transform - - uid: 20043 + - uid: 20139 components: - pos: 25.5,37.5 parent: 2 type: Transform - - uid: 20044 + - uid: 20140 components: - rot: 3.141592653589793 rad pos: 23.5,37.5 parent: 2 type: Transform - - uid: 20045 + - uid: 20141 components: - pos: 43.5,11.5 parent: 2 type: Transform - - uid: 20046 + - uid: 20142 components: - pos: 43.5,10.5 parent: 2 type: Transform - - uid: 20047 + - uid: 20143 components: - pos: 53.5,14.5 parent: 2 type: Transform - - uid: 20048 + - uid: 20144 components: - pos: 52.5,14.5 parent: 2 type: Transform - - uid: 20049 + - uid: 20145 components: - pos: 54.5,14.5 parent: 2 type: Transform - - uid: 20050 + - uid: 20146 components: - pos: 51.5,13.5 parent: 2 type: Transform - - uid: 20051 + - uid: 20147 components: - pos: 51.5,11.5 parent: 2 type: Transform - - uid: 20052 + - uid: 20148 components: - pos: 55.5,13.5 parent: 2 type: Transform - - uid: 20053 + - uid: 20149 components: - pos: 55.5,12.5 parent: 2 type: Transform - - uid: 20054 + - uid: 20150 components: - pos: 55.5,11.5 parent: 2 type: Transform - - uid: 20055 + - uid: 20151 components: - pos: 52.5,10.5 parent: 2 type: Transform - - uid: 20056 + - uid: 20152 components: - pos: 54.5,10.5 parent: 2 type: Transform - - uid: 20057 + - uid: 20153 components: - pos: 27.5,22.5 parent: 2 type: Transform - - uid: 20058 + - uid: 20154 components: - pos: -15.5,2.5 parent: 2 type: Transform - - uid: 20059 + - uid: 20155 components: - pos: 48.5,-0.5 parent: 2 type: Transform - - uid: 20060 + - uid: 20156 components: - pos: 43.5,-0.5 parent: 2 type: Transform - - uid: 20061 + - uid: 20157 components: - pos: 42.5,-0.5 parent: 2 type: Transform - - uid: 20062 + - uid: 20158 components: - pos: 41.5,-0.5 parent: 2 type: Transform - - uid: 20063 + - uid: 20159 components: - pos: 39.5,-0.5 parent: 2 type: Transform - - uid: 20064 + - uid: 20160 components: - pos: 37.5,-0.5 parent: 2 type: Transform - - uid: 20065 + - uid: 20161 components: - pos: 35.5,-1.5 parent: 2 type: Transform - - uid: 20066 + - uid: 20162 components: - pos: 35.5,-2.5 parent: 2 type: Transform - - uid: 20067 + - uid: 20163 components: - pos: 35.5,-4.5 parent: 2 type: Transform - - uid: 20068 + - uid: 20164 components: - pos: 35.5,-5.5 parent: 2 type: Transform - - uid: 20069 + - uid: 20165 components: - rot: -1.5707963267948966 rad pos: 36.5,24.5 parent: 2 type: Transform - - uid: 20070 + - uid: 20166 components: - rot: -1.5707963267948966 rad pos: 38.5,24.5 parent: 2 type: Transform - - uid: 20071 + - uid: 20167 components: - rot: -1.5707963267948966 rad pos: 40.5,24.5 parent: 2 type: Transform - - uid: 20072 + - uid: 20168 components: - rot: -1.5707963267948966 rad pos: 42.5,24.5 parent: 2 type: Transform - - uid: 20073 + - uid: 20169 components: - rot: 3.141592653589793 rad pos: 22.5,27.5 parent: 2 type: Transform - - uid: 20074 + - uid: 20170 components: - pos: 43.5,7.5 parent: 2 type: Transform - - uid: 20075 + - uid: 20171 components: - pos: 66.5,25.5 parent: 2 type: Transform - - uid: 20076 + - uid: 20172 components: - pos: 66.5,23.5 parent: 2 type: Transform - - uid: 20077 + - uid: 20173 components: - pos: 64.5,27.5 parent: 2 type: Transform - - uid: 20078 + - uid: 20174 components: - pos: 62.5,27.5 parent: 2 type: Transform - - uid: 20079 + - uid: 20175 components: - rot: -1.5707963267948966 rad pos: 42.5,-44.5 parent: 2 type: Transform - - uid: 20080 + - uid: 20176 components: - pos: 46.5,9.5 parent: 2 type: Transform - - uid: 20081 + - uid: 20177 components: - rot: -1.5707963267948966 rad pos: 67.5,-7.5 parent: 2 type: Transform - - uid: 20082 + - uid: 20178 components: - rot: -1.5707963267948966 rad pos: 66.5,-0.5 parent: 2 type: Transform - - uid: 20083 + - uid: 20179 components: - rot: -1.5707963267948966 rad pos: 66.5,-1.5 parent: 2 type: Transform - - uid: 20084 + - uid: 20180 components: - pos: 60.5,-4.5 parent: 2 type: Transform - - uid: 20085 + - uid: 20181 components: - rot: -1.5707963267948966 rad pos: 67.5,-8.5 parent: 2 type: Transform - - uid: 20086 + - uid: 20182 components: - rot: -1.5707963267948966 rad pos: 67.5,-9.5 parent: 2 type: Transform - - uid: 20087 + - uid: 20183 components: - rot: -1.5707963267948966 rad pos: 68.5,-2.5 parent: 2 type: Transform - - uid: 20088 + - uid: 20184 components: - rot: -1.5707963267948966 rad pos: 68.5,-10.5 parent: 2 type: Transform - - uid: 20089 + - uid: 20185 components: - rot: -1.5707963267948966 rad pos: 68.5,-12.5 parent: 2 type: Transform - - uid: 20090 + - uid: 20186 components: - rot: -1.5707963267948966 rad pos: 68.5,-6.5 parent: 2 type: Transform - - uid: 20091 + - uid: 20187 components: - pos: 61.5,-18.5 parent: 2 type: Transform - - uid: 20092 + - uid: 20188 components: - pos: 63.5,-18.5 parent: 2 type: Transform - - uid: 20093 + - uid: 20189 components: - pos: 61.5,-20.5 parent: 2 type: Transform - - uid: 20094 + - uid: 20190 components: - pos: 63.5,-20.5 parent: 2 type: Transform - - uid: 20095 + - uid: 20191 components: - pos: 61.5,-22.5 parent: 2 type: Transform - - uid: 20096 + - uid: 20192 components: - pos: 63.5,-22.5 parent: 2 type: Transform - - uid: 20097 + - uid: 20193 components: - pos: 61.5,-24.5 parent: 2 type: Transform - - uid: 20098 + - uid: 20194 components: - pos: 63.5,-24.5 parent: 2 type: Transform - - uid: 20099 + - uid: 20195 components: - pos: 63.5,-26.5 parent: 2 type: Transform - - uid: 20100 + - uid: 20196 components: - pos: 49.5,-62.5 parent: 2 type: Transform - - uid: 20101 + - uid: 20197 components: - pos: 56.5,-46.5 parent: 2 type: Transform - - uid: 20102 + - uid: 20198 components: - pos: 63.5,-50.5 parent: 2 type: Transform - - uid: 20103 + - uid: 20199 components: - pos: 61.5,-50.5 parent: 2 type: Transform - - uid: 20104 + - uid: 20200 components: - pos: 58.5,-51.5 parent: 2 type: Transform - - uid: 20105 + - uid: 20201 components: - pos: 58.5,-52.5 parent: 2 type: Transform - - uid: 20106 + - uid: 20202 components: - pos: 54.5,-51.5 parent: 2 type: Transform - - uid: 20107 + - uid: 20203 components: - pos: 54.5,-52.5 parent: 2 type: Transform - - uid: 20108 + - uid: 20204 components: - pos: 54.5,-53.5 parent: 2 type: Transform - - uid: 20109 + - uid: 20205 components: - pos: 61.5,-56.5 parent: 2 type: Transform - - uid: 20110 + - uid: 20206 components: - pos: 62.5,-56.5 parent: 2 type: Transform - - uid: 20111 + - uid: 20207 components: - pos: 63.5,-56.5 parent: 2 type: Transform - - uid: 20112 + - uid: 20208 components: - pos: 66.5,-51.5 parent: 2 type: Transform - - uid: 20113 + - uid: 20209 components: - pos: 66.5,-52.5 parent: 2 type: Transform - - uid: 20114 + - uid: 20210 components: - pos: 36.5,33.5 parent: 2 type: Transform - - uid: 20115 + - uid: 20211 components: - pos: 36.5,32.5 parent: 2 type: Transform - - uid: 20116 + - uid: 20212 components: - pos: 36.5,31.5 parent: 2 type: Transform - - uid: 20117 + - uid: 20213 components: - pos: 36.5,30.5 parent: 2 type: Transform - - uid: 20118 + - uid: 20214 components: - pos: 36.5,29.5 parent: 2 type: Transform - - uid: 20119 + - uid: 20215 components: - pos: 36.5,28.5 parent: 2 type: Transform - - uid: 20120 + - uid: 20216 components: - pos: 36.5,27.5 parent: 2 type: Transform - - uid: 20121 + - uid: 20217 components: - pos: 51.5,-62.5 parent: 2 type: Transform - - uid: 20122 + - uid: 20218 components: - rot: -1.5707963267948966 rad pos: 71.5,-50.5 parent: 2 type: Transform - - uid: 20123 + - uid: 20219 components: - pos: 68.5,-42.5 parent: 2 type: Transform - - uid: 20124 + - uid: 20220 components: - pos: 77.5,-38.5 parent: 2 type: Transform - - uid: 20125 + - uid: 20221 components: - pos: 78.5,-46.5 parent: 2 type: Transform - - uid: 20126 + - uid: 20222 components: - rot: 1.5707963267948966 rad pos: 33.5,-57.5 parent: 2 type: Transform - - uid: 20127 + - uid: 20223 components: - rot: 1.5707963267948966 rad pos: 32.5,-57.5 parent: 2 type: Transform - - uid: 20128 + - uid: 20224 components: - rot: 1.5707963267948966 rad pos: 30.5,-57.5 parent: 2 type: Transform - - uid: 20129 + - uid: 20225 components: - rot: 1.5707963267948966 rad pos: 29.5,-57.5 parent: 2 type: Transform - - uid: 20130 + - uid: 20226 components: - rot: 1.5707963267948966 rad pos: 27.5,-54.5 parent: 2 type: Transform - - uid: 20131 + - uid: 20227 components: - rot: 1.5707963267948966 rad pos: 27.5,-55.5 parent: 2 type: Transform - - uid: 20132 + - uid: 20228 components: - rot: 1.5707963267948966 rad pos: 27.5,-51.5 parent: 2 type: Transform - - uid: 20133 + - uid: 20229 components: - rot: 1.5707963267948966 rad pos: 27.5,-47.5 parent: 2 type: Transform - - uid: 20134 + - uid: 20230 components: - rot: 3.141592653589793 rad pos: 64.5,-37.5 parent: 2 type: Transform - - uid: 20135 + - uid: 20231 components: - pos: -12.5,-44.5 parent: 2 type: Transform - - uid: 20136 + - uid: 20232 components: - pos: -13.5,-44.5 parent: 2 type: Transform - - uid: 20137 + - uid: 20233 components: - pos: -14.5,-44.5 parent: 2 type: Transform - - uid: 20138 + - uid: 20234 components: - rot: 3.141592653589793 rad pos: 49.5,-59.5 parent: 2 type: Transform - - uid: 20139 + - uid: 20235 components: - rot: 3.141592653589793 rad pos: 50.5,-59.5 parent: 2 type: Transform - - uid: 20140 + - uid: 20236 components: - pos: -19.5,5.5 parent: 2 type: Transform - - uid: 20141 + - uid: 20237 components: - pos: -23.5,2.5 parent: 2 type: Transform - - uid: 20142 + - uid: 20238 components: - pos: -2.5,42.5 parent: 2 type: Transform - - uid: 20143 + - uid: 20239 components: - rot: -1.5707963267948966 rad pos: -21.5,-22.5 parent: 2 type: Transform - - uid: 20144 + - uid: 20240 components: - pos: -21.5,-13.5 parent: 2 type: Transform - - uid: 20145 + - uid: 20241 components: - pos: -21.5,-14.5 parent: 2 type: Transform - - uid: 20146 + - uid: 20242 components: - pos: -21.5,-9.5 parent: 2 type: Transform - - uid: 20147 + - uid: 20243 components: - pos: -21.5,-10.5 parent: 2 type: Transform - - uid: 20148 + - uid: 20244 components: - pos: -26.5,-10.5 parent: 2 type: Transform - - uid: 20149 + - uid: 20245 components: - pos: -26.5,-11.5 parent: 2 type: Transform - - uid: 20150 + - uid: 20246 components: - pos: -30.5,-12.5 parent: 2 type: Transform - - uid: 20151 + - uid: 20247 components: - pos: -30.5,-13.5 parent: 2 type: Transform - - uid: 20152 + - uid: 20248 components: - pos: -22.5,-3.5 parent: 2 type: Transform - - uid: 20153 + - uid: 20249 components: - pos: -21.5,-3.5 parent: 2 type: Transform - - uid: 20154 + - uid: 20250 components: - pos: -22.5,-1.5 parent: 2 type: Transform - - uid: 20155 + - uid: 20251 components: - pos: -21.5,-1.5 parent: 2 type: Transform - - uid: 20156 + - uid: 20252 components: - pos: -17.5,-1.5 parent: 2 type: Transform - - uid: 20157 + - uid: 20253 components: - pos: -16.5,-1.5 parent: 2 type: Transform - - uid: 20158 + - uid: 20254 components: - pos: -19.5,0.5 parent: 2 type: Transform - - uid: 20159 + - uid: 20255 components: - pos: -17.5,0.5 parent: 2 type: Transform - - uid: 20160 + - uid: 20256 components: - pos: -16.5,0.5 parent: 2 type: Transform - - uid: 20161 + - uid: 20257 components: - pos: -17.5,-3.5 parent: 2 type: Transform - - uid: 20162 + - uid: 20258 components: - pos: -16.5,-3.5 parent: 2 type: Transform - - uid: 20163 + - uid: 20259 components: - rot: 1.5707963267948966 rad pos: -26.5,-13.5 parent: 2 type: Transform - - uid: 20164 + - uid: 20260 components: - rot: -1.5707963267948966 rad pos: -24.5,-18.5 parent: 2 type: Transform - - uid: 20165 + - uid: 20261 components: - pos: 52.5,-57.5 parent: 2 type: Transform - - uid: 20166 + - uid: 20262 components: - rot: 3.141592653589793 rad pos: 56.5,-55.5 parent: 2 type: Transform - - uid: 20167 + - uid: 20263 components: - rot: 3.141592653589793 rad pos: 59.5,-54.5 parent: 2 type: Transform - - uid: 20168 + - uid: 20264 components: - rot: 3.141592653589793 rad pos: 65.5,-54.5 parent: 2 type: Transform - - uid: 20169 + - uid: 20265 components: - pos: 41.5,-74.5 parent: 2 type: Transform - - uid: 20170 + - uid: 20266 components: - pos: 32.5,-77.5 parent: 2 type: Transform - - uid: 20171 + - uid: 20267 components: - pos: 32.5,-78.5 parent: 2 type: Transform - - uid: 20172 + - uid: 20268 components: - pos: 32.5,-79.5 parent: 2 type: Transform - - uid: 20173 + - uid: 20269 components: - rot: 3.141592653589793 rad pos: 25.5,-80.5 parent: 2 type: Transform - - uid: 20174 + - uid: 20270 components: - rot: 3.141592653589793 rad pos: 51.5,-73.5 parent: 2 type: Transform - - uid: 20175 + - uid: 20271 components: - rot: 1.5707963267948966 rad pos: 34.5,-84.5 parent: 2 type: Transform - - uid: 20176 + - uid: 20272 components: - pos: 17.5,-71.5 parent: 2 type: Transform - - uid: 20177 + - uid: 20273 components: - pos: 18.5,-71.5 parent: 2 type: Transform - - uid: 20178 + - uid: 20274 components: - rot: 1.5707963267948966 rad pos: 34.5,-85.5 parent: 2 type: Transform - - uid: 20179 + - uid: 20275 components: - rot: 1.5707963267948966 rad pos: 34.5,-86.5 parent: 2 type: Transform - - uid: 20180 + - uid: 20276 components: - pos: 15.5,-71.5 parent: 2 type: Transform - - uid: 20181 + - uid: 20277 components: - pos: 18.5,-74.5 parent: 2 type: Transform - - uid: 20182 + - uid: 20278 components: - pos: 17.5,-74.5 parent: 2 type: Transform - - uid: 20183 + - uid: 20279 components: - pos: 14.5,-71.5 parent: 2 type: Transform - - uid: 20184 + - uid: 20280 components: - pos: 14.5,-74.5 parent: 2 type: Transform - - uid: 20185 + - uid: 20281 components: - pos: 15.5,-74.5 parent: 2 type: Transform - - uid: 20186 + - uid: 20282 components: - rot: 1.5707963267948966 rad pos: 44.5,-86.5 parent: 2 type: Transform - - uid: 20187 + - uid: 20283 components: - rot: 1.5707963267948966 rad pos: 44.5,-87.5 parent: 2 type: Transform - - uid: 20188 + - uid: 20284 components: - rot: 1.5707963267948966 rad pos: 34.5,-87.5 parent: 2 type: Transform - - uid: 20189 + - uid: 20285 components: - rot: 1.5707963267948966 rad pos: 44.5,-84.5 parent: 2 type: Transform - - uid: 20190 + - uid: 20286 components: - rot: 1.5707963267948966 rad pos: 44.5,-85.5 parent: 2 type: Transform - - uid: 20191 + - uid: 20287 components: - rot: 1.5707963267948966 rad pos: 42.5,-69.5 parent: 2 type: Transform - - uid: 20192 + - uid: 20288 components: - rot: 1.5707963267948966 rad pos: 43.5,-69.5 parent: 2 type: Transform - - uid: 20193 + - uid: 20289 components: - rot: 1.5707963267948966 rad pos: 44.5,-69.5 parent: 2 type: Transform - - uid: 20194 + - uid: 20290 components: - rot: 1.5707963267948966 rad pos: 34.5,-69.5 parent: 2 type: Transform - - uid: 20195 + - uid: 20291 components: - rot: 1.5707963267948966 rad pos: 35.5,-69.5 parent: 2 type: Transform - - uid: 20196 + - uid: 20292 components: - rot: 1.5707963267948966 rad pos: 36.5,-69.5 parent: 2 type: Transform - - uid: 20197 + - uid: 20293 components: - rot: 1.5707963267948966 rad pos: 37.5,-66.5 parent: 2 type: Transform - - uid: 20198 + - uid: 20294 components: - rot: -1.5707963267948966 rad pos: -37.5,-14.5 parent: 2 type: Transform - - uid: 20199 + - uid: 20295 components: - pos: -33.5,-17.5 parent: 2 type: Transform - - uid: 20200 + - uid: 20296 components: - pos: -33.5,-15.5 parent: 2 type: Transform - - uid: 20201 + - uid: 20297 components: - rot: 3.141592653589793 rad pos: -33.5,-12.5 parent: 2 type: Transform - - uid: 20202 + - uid: 20298 components: - rot: 3.141592653589793 rad pos: -33.5,-9.5 parent: 2 type: Transform - - uid: 20203 + - uid: 20299 components: - rot: 3.141592653589793 rad pos: -40.5,-9.5 parent: 2 type: Transform - - uid: 20204 + - uid: 20300 components: - rot: 3.141592653589793 rad pos: -40.5,-12.5 parent: 2 type: Transform - - uid: 20205 + - uid: 20301 components: - pos: 50.5,-31.5 parent: 2 type: Transform - - uid: 20206 + - uid: 20302 components: - pos: 51.5,-31.5 parent: 2 type: Transform - - uid: 20207 + - uid: 20303 components: - rot: -1.5707963267948966 rad pos: -21.5,-35.5 parent: 2 type: Transform - - uid: 20208 + - uid: 20304 components: - pos: -38.5,-37.5 parent: 2 type: Transform - - uid: 20209 + - uid: 20305 components: - pos: -37.5,-37.5 parent: 2 type: Transform - - uid: 20210 + - uid: 20306 components: - pos: -45.5,-18.5 parent: 2 type: Transform - - uid: 20211 + - uid: 20307 components: - rot: 3.141592653589793 rad pos: -43.5,-13.5 parent: 2 type: Transform - - uid: 20212 + - uid: 20308 components: - rot: 3.141592653589793 rad pos: -46.5,-7.5 parent: 2 type: Transform - - uid: 20213 + - uid: 20309 components: - rot: 3.141592653589793 rad pos: -49.5,-19.5 parent: 2 type: Transform - - uid: 20214 + - uid: 20310 components: - pos: -68.5,-22.5 parent: 2 type: Transform - - uid: 20215 + - uid: 20311 components: - pos: -67.5,-22.5 parent: 2 type: Transform - - uid: 20216 + - uid: 20312 components: - pos: -66.5,-22.5 parent: 2 type: Transform - - uid: 20217 + - uid: 20313 components: - pos: -65.5,-22.5 parent: 2 type: Transform - - uid: 20218 + - uid: 20314 components: - pos: -64.5,-22.5 parent: 2 type: Transform - - uid: 20219 + - uid: 20315 components: - pos: -66.5,-29.5 parent: 2 type: Transform - - uid: 20220 + - uid: 20316 components: - pos: -56.5,-11.5 parent: 2 type: Transform - - uid: 20221 + - uid: 20317 components: - pos: -56.5,-12.5 parent: 2 type: Transform - - uid: 20222 + - uid: 20318 components: - pos: -56.5,-13.5 parent: 2 type: Transform - - uid: 20223 + - uid: 20319 components: - pos: -56.5,-14.5 parent: 2 type: Transform - - uid: 20224 + - uid: 20320 components: - pos: -56.5,-15.5 parent: 2 type: Transform - - uid: 20225 + - uid: 20321 components: - pos: -61.5,-35.5 parent: 2 type: Transform - - uid: 20226 + - uid: 20322 components: - pos: -60.5,-35.5 parent: 2 type: Transform - - uid: 20227 + - uid: 20323 components: - pos: -62.5,-38.5 parent: 2 type: Transform - - uid: 20228 + - uid: 20324 components: - pos: -61.5,-31.5 parent: 2 type: Transform - - uid: 20229 + - uid: 20325 components: - pos: -47.5,-54.5 parent: 2 type: Transform - - uid: 20230 + - uid: 20326 components: - pos: -47.5,-52.5 parent: 2 type: Transform - - uid: 20231 + - uid: 20327 components: - pos: -47.5,-50.5 parent: 2 type: Transform - - uid: 20232 + - uid: 20328 components: - pos: -47.5,-48.5 parent: 2 type: Transform - - uid: 20233 + - uid: 20329 components: - pos: -47.5,-46.5 parent: 2 type: Transform - - uid: 20234 + - uid: 20330 components: - pos: -47.5,-44.5 parent: 2 type: Transform - - uid: 20235 + - uid: 20331 components: - pos: -47.5,-42.5 parent: 2 type: Transform - - uid: 20236 + - uid: 20332 components: - pos: -41.5,-34.5 parent: 2 type: Transform - - uid: 20237 + - uid: 20333 components: - pos: -41.5,-35.5 parent: 2 type: Transform - - uid: 20238 + - uid: 20334 components: - pos: -59.5,-3.5 parent: 2 type: Transform - - uid: 20239 + - uid: 20335 components: - pos: -60.5,-3.5 parent: 2 type: Transform - - uid: 20240 + - uid: 20336 components: - pos: -61.5,-3.5 parent: 2 type: Transform - - uid: 20241 + - uid: 20337 components: - pos: -62.5,-3.5 parent: 2 type: Transform - - uid: 20242 + - uid: 20338 components: - pos: -66.5,-3.5 parent: 2 type: Transform - - uid: 20243 + - uid: 20339 components: - pos: -67.5,-3.5 parent: 2 type: Transform - - uid: 20244 + - uid: 20340 components: - pos: -68.5,-3.5 parent: 2 type: Transform - - uid: 20245 + - uid: 20341 components: - pos: -69.5,-3.5 parent: 2 type: Transform - - uid: 20246 + - uid: 20342 components: - pos: -76.5,-3.5 parent: 2 type: Transform - - uid: 20247 + - uid: 20343 components: - pos: -73.5,-3.5 parent: 2 type: Transform - - uid: 20248 + - uid: 20344 components: - pos: -74.5,-3.5 parent: 2 type: Transform - - uid: 20249 + - uid: 20345 components: - pos: -75.5,-3.5 parent: 2 type: Transform - - uid: 20250 + - uid: 20346 components: - pos: -76.5,-7.5 parent: 2 type: Transform - - uid: 20251 + - uid: 20347 components: - pos: -76.5,-8.5 parent: 2 type: Transform - - uid: 20252 + - uid: 20348 components: - pos: -76.5,-9.5 parent: 2 type: Transform - - uid: 20253 + - uid: 20349 components: - pos: -76.5,-10.5 parent: 2 type: Transform - - uid: 20254 + - uid: 20350 components: - pos: -76.5,-14.5 parent: 2 type: Transform - - uid: 20255 + - uid: 20351 components: - pos: -76.5,-15.5 parent: 2 type: Transform - - uid: 20256 + - uid: 20352 components: - pos: -76.5,-16.5 parent: 2 type: Transform - - uid: 20257 + - uid: 20353 components: - pos: -76.5,-17.5 parent: 2 type: Transform - - uid: 20258 + - uid: 20354 components: - pos: -76.5,-21.5 parent: 2 type: Transform - - uid: 20259 + - uid: 20355 components: - pos: -76.5,-22.5 parent: 2 type: Transform - - uid: 20260 + - uid: 20356 components: - rot: -1.5707963267948966 rad pos: -76.5,-24.5 parent: 2 type: Transform - - uid: 20261 + - uid: 20357 components: - pos: -76.5,-23.5 parent: 2 type: Transform - - uid: 20262 + - uid: 20358 components: - pos: -35.5,-58.5 parent: 2 type: Transform - - uid: 20263 + - uid: 20359 components: - rot: 3.141592653589793 rad pos: -38.5,-59.5 parent: 2 type: Transform - - uid: 20264 + - uid: 20360 components: - pos: -41.5,-58.5 parent: 2 type: Transform - - uid: 20265 + - uid: 20361 components: - pos: -42.5,-58.5 parent: 2 type: Transform - - uid: 20266 + - uid: 20362 components: - pos: -44.5,-58.5 parent: 2 type: Transform - - uid: 20267 + - uid: 20363 components: - pos: -21.5,-61.5 parent: 2 type: Transform - - uid: 20268 + - uid: 20364 components: - rot: -1.5707963267948966 rad pos: -53.5,-83.5 parent: 2 type: Transform - - uid: 20269 + - uid: 20365 components: - pos: -28.5,-72.5 parent: 2 type: Transform - - uid: 20270 + - uid: 20366 components: - pos: -35.5,-76.5 parent: 2 type: Transform - - uid: 20271 + - uid: 20367 components: - pos: -35.5,-77.5 parent: 2 type: Transform - - uid: 20272 + - uid: 20368 components: - pos: -35.5,-78.5 parent: 2 type: Transform - - uid: 20273 + - uid: 20369 components: - pos: -35.5,-81.5 parent: 2 type: Transform - - uid: 20274 + - uid: 20370 components: - pos: -35.5,-82.5 parent: 2 type: Transform - - uid: 20275 + - uid: 20371 components: - pos: -35.5,-83.5 parent: 2 type: Transform - - uid: 20276 + - uid: 20372 components: - pos: -40.5,-86.5 parent: 2 type: Transform - - uid: 20277 + - uid: 20373 components: - pos: -43.5,-86.5 parent: 2 type: Transform - - uid: 20278 + - uid: 20374 components: - pos: -21.5,-59.5 parent: 2 type: Transform - - uid: 20279 + - uid: 20375 components: - rot: -1.5707963267948966 rad pos: -55.5,-83.5 parent: 2 type: Transform - - uid: 20280 + - uid: 20376 components: - pos: -57.5,-75.5 parent: 2 type: Transform - - uid: 20281 + - uid: 20377 components: - pos: -57.5,-76.5 parent: 2 type: Transform - - uid: 20282 + - uid: 20378 components: - pos: -57.5,-77.5 parent: 2 type: Transform - - uid: 20283 + - uid: 20379 components: - pos: -58.5,-52.5 parent: 2 type: Transform - - uid: 20284 + - uid: 20380 components: - pos: -58.5,-51.5 parent: 2 type: Transform - - uid: 20285 + - uid: 20381 components: - pos: -58.5,-48.5 parent: 2 type: Transform - - uid: 20286 + - uid: 20382 components: - pos: -58.5,-47.5 parent: 2 type: Transform - - uid: 20287 + - uid: 20383 components: - pos: -55.5,-85.5 parent: 2 type: Transform - - uid: 20289 + - uid: 20384 components: - rot: 1.5707963267948966 rad pos: -58.5,-59.5 parent: 2 type: Transform - - uid: 20290 + - uid: 20385 components: - pos: -48.5,-81.5 parent: 2 type: Transform - - uid: 20291 + - uid: 20386 components: - pos: 50.5,58.5 parent: 2 type: Transform - - uid: 20292 + - uid: 20387 components: - rot: -1.5707963267948966 rad pos: -3.5,27.5 parent: 2 type: Transform - - uid: 20293 + - uid: 20388 components: - pos: 50.5,57.5 parent: 2 type: Transform - - uid: 20294 + - uid: 20389 components: - pos: 58.5,58.5 parent: 2 type: Transform - - uid: 20295 + - uid: 20390 components: - pos: -2.5,35.5 parent: 2 type: Transform - - uid: 20296 + - uid: 20391 components: - pos: -1.5,35.5 parent: 2 type: Transform - - uid: 20297 + - uid: 20392 components: - pos: -0.5,35.5 parent: 2 type: Transform - - uid: 20298 + - uid: 20393 components: - pos: 6.5,25.5 parent: 2 type: Transform - - uid: 20299 + - uid: 20394 components: - pos: 4.5,25.5 parent: 2 type: Transform - - uid: 20300 + - uid: 20395 components: - pos: 2.5,25.5 parent: 2 type: Transform - - uid: 20301 + - uid: 20396 components: - pos: 58.5,56.5 parent: 2 type: Transform - - uid: 20302 + - uid: 20397 components: - rot: -1.5707963267948966 rad pos: -1.5,27.5 parent: 2 type: Transform - - uid: 20303 + - uid: 20398 components: - pos: -21.5,24.5 parent: 2 type: Transform - - uid: 20304 + - uid: 20399 components: - pos: -21.5,23.5 parent: 2 type: Transform - - uid: 20305 + - uid: 20400 components: - pos: -26.5,21.5 parent: 2 type: Transform - - uid: 20306 + - uid: 20401 components: - rot: -1.5707963267948966 rad pos: -26.5,23.5 parent: 2 type: Transform - - uid: 20307 + - uid: 20402 components: - pos: -1.5,42.5 parent: 2 type: Transform - - uid: 20308 + - uid: 20403 components: - pos: -29.5,23.5 parent: 2 type: Transform - - uid: 20309 + - uid: 20404 components: - pos: -29.5,21.5 parent: 2 type: Transform - - uid: 20310 + - uid: 20405 components: - rot: 1.5707963267948966 rad pos: -50.5,21.5 parent: 2 type: Transform - - uid: 20311 + - uid: 20406 components: - rot: 1.5707963267948966 rad pos: -49.5,21.5 parent: 2 type: Transform - - uid: 20312 + - uid: 20407 components: - rot: -1.5707963267948966 rad pos: -50.5,18.5 parent: 2 type: Transform - - uid: 20313 + - uid: 20408 components: - rot: -1.5707963267948966 rad pos: -50.5,24.5 parent: 2 type: Transform - - uid: 20314 + - uid: 20409 components: - pos: 58.5,57.5 parent: 2 type: Transform - - uid: 20315 + - uid: 20410 components: - pos: 50.5,56.5 parent: 2 type: Transform - - uid: 20316 + - uid: 20411 components: - pos: -33.5,27.5 parent: 2 type: Transform - - uid: 20317 + - uid: 20412 components: - pos: -33.5,32.5 parent: 2 type: Transform - - uid: 20318 + - uid: 20413 components: - pos: -32.5,32.5 parent: 2 type: Transform - - uid: 20319 + - uid: 20414 components: - pos: -31.5,32.5 parent: 2 type: Transform - - uid: 20320 + - uid: 20415 components: - pos: -31.5,27.5 parent: 2 type: Transform - - uid: 20321 + - uid: 20416 components: - pos: -30.5,27.5 parent: 2 type: Transform - - uid: 20322 + - uid: 20417 components: - rot: -1.5707963267948966 rad pos: -52.5,21.5 parent: 2 type: Transform - - uid: 20323 + - uid: 20418 components: - rot: -1.5707963267948966 rad pos: -53.5,21.5 parent: 2 type: Transform - - uid: 20324 + - uid: 20419 components: - rot: -1.5707963267948966 rad pos: -49.5,29.5 parent: 2 type: Transform - - uid: 20325 + - uid: 20420 components: - rot: -1.5707963267948966 rad pos: -52.5,29.5 parent: 2 type: Transform - - uid: 20326 + - uid: 20421 components: - rot: -1.5707963267948966 rad pos: -52.5,35.5 parent: 2 type: Transform - - uid: 20327 + - uid: 20422 components: - rot: -1.5707963267948966 rad pos: -49.5,35.5 parent: 2 type: Transform - - uid: 20328 + - uid: 20423 components: - pos: -52.5,24.5 parent: 2 type: Transform - - uid: 20329 + - uid: 20424 components: - pos: -52.5,18.5 parent: 2 type: Transform - - uid: 20330 + - uid: 20425 components: - pos: -39.5,31.5 parent: 2 type: Transform - - uid: 20331 + - uid: 20426 components: - rot: 1.5707963267948966 rad pos: -17.5,24.5 parent: 2 type: Transform - - uid: 20332 + - uid: 20427 components: - rot: 1.5707963267948966 rad pos: -21.5,12.5 parent: 2 type: Transform - - uid: 20333 + - uid: 20428 components: - rot: 1.5707963267948966 rad pos: -22.5,9.5 parent: 2 type: Transform - - uid: 20334 + - uid: 20429 components: - rot: 1.5707963267948966 rad pos: -23.5,9.5 parent: 2 type: Transform - - uid: 20335 + - uid: 20430 components: - rot: 1.5707963267948966 rad pos: -25.5,9.5 parent: 2 type: Transform - - uid: 20336 + - uid: 20431 components: - rot: 1.5707963267948966 rad pos: -26.5,9.5 parent: 2 type: Transform - - uid: 20337 + - uid: 20432 components: - pos: -36.5,7.5 parent: 2 type: Transform - - uid: 20338 + - uid: 20433 components: - pos: -41.5,2.5 parent: 2 type: Transform - - uid: 20339 + - uid: 20434 components: - pos: -35.5,2.5 parent: 2 type: Transform - - uid: 20340 + - uid: 20435 components: - pos: -34.5,2.5 parent: 2 type: Transform - - uid: 20341 + - uid: 20436 components: - pos: -40.5,2.5 parent: 2 type: Transform - - uid: 20342 + - uid: 20437 components: - pos: -39.5,2.5 parent: 2 type: Transform - - uid: 20343 + - uid: 20438 components: - pos: -36.5,2.5 parent: 2 type: Transform - - uid: 20344 + - uid: 20439 components: - pos: -39.5,7.5 parent: 2 type: Transform - - uid: 20345 + - uid: 20440 components: - pos: -1.5,50.5 parent: 2 type: Transform - - uid: 20346 + - uid: 20441 components: - pos: 29.5,24.5 parent: 2 type: Transform - - uid: 20347 + - uid: 20442 components: - rot: -1.5707963267948966 rad pos: -49.5,13.5 parent: 2 type: Transform - - uid: 20348 + - uid: 20443 components: - pos: -46.5,13.5 parent: 2 type: Transform - - uid: 20349 + - uid: 20444 components: - pos: -53.5,11.5 parent: 2 type: Transform - - uid: 20350 + - uid: 20445 components: - pos: -53.5,10.5 parent: 2 type: Transform - - uid: 20351 + - uid: 20446 components: - rot: -1.5707963267948966 rad pos: -48.5,13.5 parent: 2 type: Transform - - uid: 20352 + - uid: 20447 components: - rot: 1.5707963267948966 rad pos: -52.5,-0.5 parent: 2 type: Transform - - uid: 20353 + - uid: 20448 components: - pos: 2.5,-94.5 parent: 2 type: Transform - - uid: 20354 + - uid: 20449 components: - pos: 2.5,-95.5 parent: 2 type: Transform - - uid: 20355 + - uid: 20450 components: - pos: 2.5,-96.5 parent: 2 type: Transform - - uid: 20356 + - uid: 20451 components: - pos: 2.5,-97.5 parent: 2 type: Transform - - uid: 20357 + - uid: 20452 components: - pos: 2.5,-98.5 parent: 2 type: Transform - - uid: 20358 + - uid: 20453 components: - pos: 2.5,-99.5 parent: 2 type: Transform - - uid: 20359 + - uid: 20454 components: - pos: 2.5,-100.5 parent: 2 type: Transform - - uid: 20360 + - uid: 20455 components: - pos: 2.5,-101.5 parent: 2 type: Transform - - uid: 20361 + - uid: 20456 components: - pos: 2.5,-102.5 parent: 2 type: Transform - - uid: 20362 + - uid: 20457 components: - pos: 2.5,-103.5 parent: 2 type: Transform - - uid: 20363 + - uid: 20458 components: - pos: 2.5,-104.5 parent: 2 type: Transform - - uid: 20364 + - uid: 20459 components: - pos: 4.5,-107.5 parent: 2 type: Transform - - uid: 20365 + - uid: 20460 components: - pos: 5.5,-107.5 parent: 2 type: Transform - - uid: 20366 + - uid: 20461 components: - pos: 6.5,-107.5 parent: 2 type: Transform - - uid: 20367 + - uid: 20462 components: - pos: 7.5,-107.5 parent: 2 type: Transform - - uid: 20368 + - uid: 20463 components: - pos: 8.5,-107.5 parent: 2 type: Transform - - uid: 20369 + - uid: 20464 components: - pos: 9.5,-107.5 parent: 2 type: Transform - - uid: 20370 + - uid: 20465 components: - pos: 10.5,-107.5 parent: 2 type: Transform - - uid: 20371 + - uid: 20466 components: - pos: 11.5,-107.5 parent: 2 type: Transform - - uid: 20372 + - uid: 20467 components: - pos: 12.5,-107.5 parent: 2 type: Transform - - uid: 20373 + - uid: 20468 components: - pos: 13.5,-107.5 parent: 2 type: Transform - - uid: 20374 + - uid: 20469 components: - pos: 14.5,-107.5 parent: 2 type: Transform - - uid: 20375 + - uid: 20470 components: - pos: 15.5,-107.5 parent: 2 type: Transform - - uid: 20376 + - uid: 20471 components: - pos: 16.5,-107.5 parent: 2 type: Transform - - uid: 20377 + - uid: 20472 components: - pos: 17.5,-107.5 parent: 2 type: Transform - - uid: 20378 + - uid: 20473 components: - pos: 20.5,-105.5 parent: 2 type: Transform - - uid: 20379 + - uid: 20474 components: - pos: 20.5,-104.5 parent: 2 type: Transform - - uid: 20380 + - uid: 20475 components: - pos: 20.5,-103.5 parent: 2 type: Transform - - uid: 20381 + - uid: 20476 components: - pos: 20.5,-102.5 parent: 2 type: Transform - - uid: 20382 + - uid: 20477 components: - pos: 20.5,-101.5 parent: 2 type: Transform - - uid: 20383 + - uid: 20478 components: - pos: 20.5,-100.5 parent: 2 type: Transform - - uid: 20384 + - uid: 20479 components: - pos: 20.5,-99.5 parent: 2 type: Transform - - uid: 20385 + - uid: 20480 components: - pos: 20.5,-98.5 parent: 2 type: Transform - - uid: 20386 + - uid: 20481 components: - pos: 20.5,-97.5 parent: 2 type: Transform - - uid: 20387 + - uid: 20482 components: - pos: 20.5,-96.5 parent: 2 type: Transform - - uid: 20388 + - uid: 20483 components: - pos: 20.5,-95.5 parent: 2 type: Transform - - uid: 20389 + - uid: 20484 components: - pos: 20.5,-94.5 parent: 2 type: Transform - - uid: 20390 + - uid: 20485 components: - pos: 13.5,-92.5 parent: 2 type: Transform - - uid: 20391 + - uid: 20486 components: - pos: 14.5,-92.5 parent: 2 type: Transform - - uid: 20392 + - uid: 20487 components: - pos: 15.5,-92.5 parent: 2 type: Transform - - uid: 20393 + - uid: 20488 components: - pos: 16.5,-92.5 parent: 2 type: Transform - - uid: 20394 + - uid: 20489 components: - pos: 17.5,-92.5 parent: 2 type: Transform - - uid: 20395 + - uid: 20490 components: - pos: 18.5,-92.5 parent: 2 type: Transform - - uid: 20396 + - uid: 20491 components: - pos: 38.5,-57.5 parent: 2 type: Transform - - uid: 20397 + - uid: 20492 components: - pos: 40.5,-57.5 parent: 2 type: Transform - - uid: 20398 + - uid: 20493 components: - pos: 37.5,-21.5 parent: 2 type: Transform - - uid: 20399 + - uid: 20494 components: - pos: 37.5,-22.5 parent: 2 type: Transform - - uid: 20400 + - uid: 20495 components: - rot: -1.5707963267948966 rad pos: -76.5,-11.5 parent: 2 type: Transform - - uid: 20401 + - uid: 20496 components: - rot: -1.5707963267948966 rad pos: -76.5,-13.5 parent: 2 type: Transform - - uid: 20402 + - uid: 20497 components: - pos: 55.5,-15.5 parent: 2 type: Transform - - uid: 20403 + - uid: 20498 components: - pos: 56.5,-15.5 parent: 2 type: Transform - - uid: 20404 + - uid: 20499 components: - pos: 58.5,-15.5 parent: 2 type: Transform - - uid: 20405 + - uid: 20500 components: - pos: 59.5,-15.5 parent: 2 type: Transform - - uid: 20406 + - uid: 20501 components: - pos: 58.5,-59.5 parent: 2 type: Transform - - uid: 20407 + - uid: 20502 components: - pos: 58.5,-60.5 parent: 2 type: Transform - - uid: 20408 + - uid: 20503 components: - pos: 42.5,-31.5 parent: 2 type: Transform - - uid: 20409 + - uid: 20504 components: - pos: 37.5,-64.5 parent: 2 type: Transform - - uid: 20410 + - uid: 20505 components: - rot: 3.141592653589793 rad pos: 24.5,37.5 parent: 2 type: Transform - - uid: 20411 + - uid: 20506 components: - rot: 3.141592653589793 rad pos: 21.5,37.5 parent: 2 type: Transform - - uid: 20412 + - uid: 20507 components: - pos: 32.5,35.5 parent: 2 type: Transform - - uid: 20413 + - uid: 20508 components: - pos: 26.5,35.5 parent: 2 type: Transform - - uid: 20414 + - uid: 20509 components: - pos: 34.5,37.5 parent: 2 type: Transform - - uid: 20415 + - uid: 20510 components: - pos: 35.5,37.5 parent: 2 type: Transform - - uid: 20416 + - uid: 20511 components: - pos: 36.5,37.5 parent: 2 type: Transform - - uid: 20417 + - uid: 20512 components: - pos: 36.5,36.5 parent: 2 type: Transform - - uid: 20418 + - uid: 20513 components: - pos: 36.5,35.5 parent: 2 type: Transform - - uid: 20419 + - uid: 20514 components: - pos: 36.5,34.5 parent: 2 type: Transform - - uid: 20420 + - uid: 20515 components: - pos: -45.5,-42.5 parent: 2 type: Transform - - uid: 20421 + - uid: 20516 components: - pos: -45.5,-43.5 parent: 2 type: Transform - - uid: 20422 + - uid: 20517 components: - pos: -45.5,-44.5 parent: 2 type: Transform - - uid: 20423 + - uid: 20518 components: - pos: -45.5,-45.5 parent: 2 type: Transform - - uid: 20424 + - uid: 20519 components: - pos: -45.5,-46.5 parent: 2 type: Transform - - uid: 20425 + - uid: 20520 components: - pos: -45.5,-47.5 parent: 2 type: Transform - - uid: 20426 + - uid: 20521 components: - pos: -45.5,-48.5 parent: 2 type: Transform - - uid: 20427 + - uid: 20522 components: - pos: -45.5,-49.5 parent: 2 type: Transform - - uid: 20428 + - uid: 20523 components: - pos: -45.5,-50.5 parent: 2 type: Transform - - uid: 20429 + - uid: 20524 components: - pos: -45.5,-51.5 parent: 2 type: Transform - - uid: 20430 + - uid: 20525 components: - pos: -45.5,-52.5 parent: 2 type: Transform - - uid: 20431 + - uid: 20526 components: - pos: -45.5,-53.5 parent: 2 type: Transform - - uid: 20432 + - uid: 20527 components: - pos: -45.5,-54.5 parent: 2 type: Transform - - uid: 20433 + - uid: 20528 components: - pos: -45.5,-55.5 parent: 2 type: Transform - - uid: 20434 + - uid: 20529 components: - rot: 3.141592653589793 rad pos: 46.5,3.5 parent: 2 type: Transform - - uid: 20435 + - uid: 20530 components: - rot: -1.5707963267948966 rad pos: 27.5,20.5 parent: 2 type: Transform - - uid: 20436 + - uid: 20531 components: - pos: 41.5,-31.5 parent: 2 type: Transform - - uid: 20437 + - uid: 20532 components: - pos: -48.5,-82.5 parent: 2 type: Transform - - uid: 20438 + - uid: 20533 components: - pos: -48.5,-83.5 parent: 2 type: Transform - - uid: 20439 - components: - - pos: 1.5,-18.5 - parent: 2 - type: Transform - - uid: 20440 - components: - - pos: 2.5,-18.5 - parent: 2 - type: Transform - - uid: 20441 + - uid: 20534 components: - pos: 54.5,61.5 parent: 2 type: Transform - - uid: 20442 + - uid: 20535 components: - pos: 55.5,61.5 parent: 2 type: Transform - - uid: 20443 + - uid: 20536 components: - pos: 53.5,61.5 parent: 2 type: Transform - - uid: 20445 + - uid: 20537 components: - pos: 20.5,-35.5 parent: 2 type: Transform - - uid: 20446 + - uid: 20538 components: - pos: 20.5,-36.5 parent: 2 type: Transform - - uid: 20447 + - uid: 20539 components: - pos: -30.5,-72.5 parent: 2 type: Transform - - uid: 20448 + - uid: 20540 components: - pos: 10.5,18.5 parent: 2 type: Transform - - uid: 20449 + - uid: 20541 components: - pos: 12.5,18.5 parent: 2 type: Transform - - uid: 20450 + - uid: 20542 components: - rot: -1.5707963267948966 rad pos: 59.5,33.5 parent: 2 type: Transform - - uid: 20451 + - uid: 20543 components: - rot: -1.5707963267948966 rad pos: 59.5,32.5 parent: 2 type: Transform - - uid: 20452 + - uid: 20544 components: - rot: 3.141592653589793 rad pos: 59.5,43.5 parent: 2 type: Transform - - uid: 20453 + - uid: 20545 components: - pos: 2.5,51.5 parent: 2 type: Transform - - uid: 20454 + - uid: 20546 components: - pos: -14.5,65.5 parent: 2 type: Transform - - uid: 20455 + - uid: 20547 components: - rot: 3.141592653589793 rad pos: -14.5,67.5 parent: 2 type: Transform - - uid: 20456 + - uid: 20548 components: - rot: -1.5707963267948966 rad pos: 7.5,35.5 parent: 2 type: Transform - - uid: 20457 + - uid: 20549 components: - rot: -1.5707963267948966 rad pos: 8.5,35.5 parent: 2 type: Transform - - uid: 20458 + - uid: 20550 components: - rot: -1.5707963267948966 rad pos: 7.5,29.5 parent: 2 type: Transform - - uid: 20459 + - uid: 20551 components: - rot: -1.5707963267948966 rad pos: 8.5,29.5 parent: 2 type: Transform - - uid: 20460 + - uid: 20552 components: - rot: -1.5707963267948966 rad pos: 68.5,11.5 parent: 2 type: Transform - - uid: 20461 + - uid: 20553 components: - rot: -1.5707963267948966 rad pos: 68.5,10.5 parent: 2 type: Transform - - uid: 20462 + - uid: 20554 components: - rot: -1.5707963267948966 rad pos: 68.5,8.5 parent: 2 type: Transform - - uid: 20463 + - uid: 20555 components: - rot: -1.5707963267948966 rad pos: 68.5,7.5 parent: 2 type: Transform - - uid: 20464 + - uid: 20556 components: - rot: -1.5707963267948966 rad pos: -7.5,28.5 parent: 2 type: Transform - - uid: 20465 + - uid: 20557 components: - rot: -1.5707963267948966 rad pos: -7.5,27.5 parent: 2 type: Transform - - uid: 20466 + - uid: 20558 components: - rot: -1.5707963267948966 rad pos: -33.5,35.5 parent: 2 type: Transform - - uid: 20467 + - uid: 20559 components: - rot: -1.5707963267948966 rad pos: -32.5,35.5 parent: 2 type: Transform - - uid: 20468 + - uid: 20560 components: - rot: -1.5707963267948966 rad pos: -31.5,35.5 parent: 2 type: Transform - - uid: 20469 + - uid: 20561 components: - rot: 1.5707963267948966 rad pos: 46.5,-17.5 parent: 2 type: Transform - - uid: 20470 + - uid: 20562 components: - rot: 1.5707963267948966 rad pos: 45.5,-17.5 parent: 2 type: Transform - - uid: 20471 + - uid: 20563 components: - rot: 3.141592653589793 rad pos: -19.5,44.5 parent: 2 type: Transform - - uid: 20472 + - uid: 20564 components: - pos: 2.5,50.5 parent: 2 type: Transform - - uid: 20473 + - uid: 20565 components: - pos: 2.5,47.5 parent: 2 type: Transform - - uid: 20474 + - uid: 20566 components: - rot: 3.141592653589793 rad pos: 41.5,32.5 parent: 2 type: Transform - - uid: 20475 + - uid: 20567 components: - rot: 3.141592653589793 rad pos: 41.5,31.5 parent: 2 type: Transform - - uid: 20476 + - uid: 20568 components: - rot: 3.141592653589793 rad pos: 41.5,30.5 parent: 2 type: Transform - - uid: 20477 + - uid: 20569 components: - rot: 1.5707963267948966 rad pos: 45.5,40.5 parent: 2 type: Transform - - uid: 20478 + - uid: 20570 components: - rot: 1.5707963267948966 rad pos: 47.5,40.5 parent: 2 type: Transform - - uid: 20479 + - uid: 20571 components: - rot: -1.5707963267948966 rad pos: 41.5,42.5 parent: 2 type: Transform - - uid: 20480 + - uid: 20572 components: - rot: -1.5707963267948966 rad pos: 40.5,42.5 parent: 2 type: Transform - - uid: 20481 + - uid: 20573 components: - rot: -1.5707963267948966 rad pos: 39.5,42.5 parent: 2 type: Transform - - uid: 20482 + - uid: 20574 components: - rot: 3.141592653589793 rad pos: -20.5,65.5 parent: 2 type: Transform - - uid: 20483 + - uid: 20575 components: - pos: -2.5,60.5 parent: 2 type: Transform - - uid: 20484 + - uid: 20576 components: - pos: -0.5,60.5 parent: 2 type: Transform - - uid: 20485 + - uid: 20577 components: - pos: 71.5,39.5 parent: 2 type: Transform - - uid: 20486 + - uid: 20578 components: - pos: 73.5,39.5 parent: 2 type: Transform - - uid: 20487 + - uid: 20579 components: - pos: 73.5,33.5 parent: 2 type: Transform - - uid: 20488 + - uid: 20580 components: - pos: 71.5,33.5 parent: 2 type: Transform - - uid: 20489 + - uid: 20581 components: - pos: 5.5,69.5 parent: 2 type: Transform - - uid: 20490 + - uid: 20582 components: - pos: -8.5,69.5 parent: 2 type: Transform - - uid: 20491 + - uid: 20583 components: - pos: -3.5,42.5 parent: 2 type: Transform - - uid: 20492 + - uid: 20584 components: - pos: 78.5,46.5 parent: 2 type: Transform - - uid: 20493 + - uid: 20585 components: - pos: 79.5,46.5 parent: 2 type: Transform - - uid: 20494 + - uid: 20586 components: - pos: 80.5,46.5 parent: 2 type: Transform - - uid: 20495 + - uid: 20587 components: - pos: 81.5,46.5 parent: 2 type: Transform - - uid: 20496 + - uid: 20588 components: - pos: 82.5,46.5 parent: 2 type: Transform - - uid: 20497 + - uid: 20589 components: - pos: 86.5,46.5 parent: 2 type: Transform - - uid: 20498 + - uid: 20590 components: - pos: 87.5,46.5 parent: 2 type: Transform - - uid: 20499 + - uid: 20591 components: - pos: 88.5,46.5 parent: 2 type: Transform - - uid: 20500 + - uid: 20592 components: - pos: 89.5,46.5 parent: 2 type: Transform - - uid: 20501 + - uid: 20593 components: - pos: 90.5,46.5 parent: 2 type: Transform - - uid: 20502 + - uid: 20594 components: - pos: 93.5,41.5 parent: 2 type: Transform - - uid: 20503 + - uid: 20595 components: - pos: 93.5,40.5 parent: 2 type: Transform - - uid: 20504 + - uid: 20596 components: - pos: 93.5,39.5 parent: 2 type: Transform - - uid: 20505 + - uid: 20597 components: - pos: 93.5,38.5 parent: 2 type: Transform - - uid: 20506 + - uid: 20598 components: - pos: 93.5,37.5 parent: 2 type: Transform - - uid: 20507 + - uid: 20599 components: - pos: 93.5,36.5 parent: 2 type: Transform - - uid: 20508 + - uid: 20600 components: - pos: 93.5,35.5 parent: 2 type: Transform - - uid: 20509 + - uid: 20601 components: - pos: 93.5,34.5 parent: 2 type: Transform - - uid: 20510 + - uid: 20602 components: - pos: 93.5,33.5 parent: 2 type: Transform - - uid: 20511 + - uid: 20603 components: - pos: 93.5,32.5 parent: 2 type: Transform - - uid: 20512 + - uid: 20604 components: - pos: 93.5,31.5 parent: 2 type: Transform - - uid: 20513 + - uid: 20605 components: - pos: 93.5,30.5 parent: 2 type: Transform - - uid: 20514 + - uid: 20606 components: - pos: 90.5,26.5 parent: 2 type: Transform - - uid: 20515 + - uid: 20607 components: - pos: 89.5,26.5 parent: 2 type: Transform - - uid: 20516 + - uid: 20608 components: - pos: 88.5,26.5 parent: 2 type: Transform - - uid: 20517 + - uid: 20609 components: - pos: 87.5,26.5 parent: 2 type: Transform - - uid: 20518 + - uid: 20610 components: - pos: 86.5,26.5 parent: 2 type: Transform - - uid: 20519 + - uid: 20611 components: - pos: 85.5,26.5 parent: 2 type: Transform - - uid: 20520 + - uid: 20612 components: - pos: 81.5,26.5 parent: 2 type: Transform - - uid: 20521 + - uid: 20613 components: - pos: 80.5,26.5 parent: 2 type: Transform - - uid: 20522 + - uid: 20614 components: - pos: 79.5,26.5 parent: 2 type: Transform - - uid: 20523 + - uid: 20615 components: - pos: 78.5,26.5 parent: 2 type: Transform - - uid: 20524 + - uid: 20616 components: - pos: 77.5,26.5 parent: 2 type: Transform - - uid: 20525 + - uid: 20617 components: - pos: 70.5,29.5 parent: 2 type: Transform - - uid: 20526 + - uid: 20618 components: - pos: 71.5,29.5 parent: 2 type: Transform - - uid: 20527 + - uid: 20619 components: - pos: 72.5,29.5 parent: 2 type: Transform - - uid: 20528 + - uid: 20620 components: - pos: 73.5,29.5 parent: 2 type: Transform - - uid: 20529 + - uid: 20621 components: - pos: 74.5,29.5 parent: 2 type: Transform - - uid: 20530 + - uid: 20622 components: - pos: -33.5,40.5 parent: 2 type: Transform - - uid: 20531 + - uid: 20623 components: - pos: -32.5,40.5 parent: 2 type: Transform - - uid: 20532 + - uid: 20624 components: - pos: -32.5,37.5 parent: 2 type: Transform - - uid: 20533 + - uid: 20625 components: - pos: -16.5,55.5 parent: 2 type: Transform - - uid: 20534 + - uid: 20626 components: - pos: -16.5,56.5 parent: 2 type: Transform - - uid: 20535 + - uid: 20627 components: - pos: -14.5,56.5 parent: 2 type: Transform - - uid: 20536 + - uid: 20628 components: - pos: -14.5,55.5 parent: 2 type: Transform - - uid: 20537 + - uid: 20629 components: - pos: -20.5,62.5 parent: 2 type: Transform - - uid: 20538 + - uid: 20630 components: - pos: -14.5,62.5 parent: 2 type: Transform - - uid: 20539 + - uid: 20631 components: - pos: -11.5,69.5 parent: 2 type: Transform - - uid: 20540 + - uid: 20632 components: - pos: -11.5,68.5 parent: 2 type: Transform - - uid: 20541 + - uid: 20633 components: - pos: -11.5,67.5 parent: 2 type: Transform - - uid: 20542 + - uid: 20634 components: - pos: -11.5,73.5 parent: 2 type: Transform - - uid: 20543 + - uid: 20635 components: - pos: -14.5,73.5 parent: 2 type: Transform - - uid: 20544 + - uid: 20636 components: - pos: -20.5,73.5 parent: 2 type: Transform - - uid: 20545 + - uid: 20637 components: - pos: -23.5,73.5 parent: 2 type: Transform - - uid: 20546 + - uid: 20638 components: - pos: -23.5,63.5 parent: 2 type: Transform - - uid: 20547 + - uid: 20639 components: - pos: -23.5,62.5 parent: 2 type: Transform - - uid: 20548 + - uid: 20640 components: - pos: -23.5,61.5 parent: 2 type: Transform - - uid: 20549 + - uid: 20641 components: - rot: 1.5707963267948966 rad pos: 39.5,52.5 parent: 2 type: Transform - - uid: 20550 + - uid: 20642 components: - rot: 3.141592653589793 rad pos: -11.5,51.5 parent: 2 type: Transform - - uid: 20551 + - uid: 20643 components: - rot: 3.141592653589793 rad pos: -11.5,53.5 parent: 2 type: Transform - - uid: 20552 + - uid: 20644 components: - rot: 3.141592653589793 rad pos: -5.5,47.5 parent: 2 type: Transform - - uid: 20553 + - uid: 20645 components: - rot: 3.141592653589793 rad pos: -3.5,47.5 parent: 2 type: Transform - - uid: 20554 + - uid: 20646 components: - rot: 3.141592653589793 rad pos: -5.5,57.5 parent: 2 type: Transform - - uid: 20555 + - uid: 20647 components: - rot: 3.141592653589793 rad pos: -7.5,57.5 parent: 2 type: Transform - - uid: 20556 + - uid: 20648 components: - rot: 3.141592653589793 rad pos: -20.5,67.5 parent: 2 type: Transform - - uid: 20557 + - uid: 20649 components: - rot: -1.5707963267948966 rad pos: -26.5,54.5 parent: 2 type: Transform - - uid: 20558 + - uid: 20650 components: - rot: -1.5707963267948966 rad pos: -26.5,53.5 parent: 2 type: Transform - - uid: 20559 + - uid: 20651 components: - pos: 46.5,43.5 parent: 2 type: Transform - - uid: 20560 + - uid: 20652 components: - rot: -1.5707963267948966 rad pos: -16.5,-88.5 parent: 2 type: Transform - - uid: 20561 + - uid: 20653 components: - rot: -1.5707963267948966 rad pos: -2.5,-82.5 parent: 2 type: Transform - - uid: 20562 + - uid: 20654 components: - rot: -1.5707963267948966 rad pos: -0.5,-82.5 parent: 2 type: Transform - - uid: 20563 + - uid: 20655 components: - pos: -26.5,-97.5 parent: 2 type: Transform - - uid: 20564 + - uid: 20656 components: - pos: -18.5,-97.5 parent: 2 type: Transform - - uid: 20565 + - uid: 20657 components: - pos: -21.5,-94.5 parent: 2 type: Transform - - uid: 20566 + - uid: 20658 components: - pos: -22.5,-94.5 parent: 2 type: Transform - - uid: 20567 + - uid: 20659 components: - pos: -23.5,-94.5 parent: 2 type: Transform - - uid: 20568 + - uid: 20660 components: - pos: -3.5,-97.5 parent: 2 type: Transform - - uid: 20569 + - uid: 20661 components: - pos: -3.5,-98.5 parent: 2 type: Transform - - uid: 20570 + - uid: 20662 components: - pos: -5.5,-101.5 parent: 2 type: Transform - - uid: 20571 + - uid: 20663 components: - pos: -6.5,-101.5 parent: 2 type: Transform - - uid: 20572 + - uid: 20664 components: - pos: -8.5,-101.5 parent: 2 type: Transform - - uid: 20573 + - uid: 20665 components: - pos: -9.5,-101.5 parent: 2 type: Transform - - uid: 20574 + - uid: 20666 components: - rot: 3.141592653589793 rad pos: -44.5,-89.5 parent: 2 type: Transform - - uid: 20575 + - uid: 20667 components: - rot: 3.141592653589793 rad pos: -44.5,-90.5 parent: 2 type: Transform - - uid: 20576 + - uid: 20668 components: - pos: -36.5,-100.5 parent: 2 type: Transform - - uid: 20577 + - uid: 20669 components: - pos: -21.5,-101.5 parent: 2 type: Transform - - uid: 20578 + - uid: 20670 components: - pos: -34.5,-100.5 parent: 2 type: Transform - - uid: 20579 + - uid: 20671 components: - rot: 1.5707963267948966 rad pos: -39.5,-89.5 parent: 2 type: Transform - - uid: 20580 + - uid: 20672 components: - rot: 1.5707963267948966 rad pos: -39.5,-90.5 parent: 2 type: Transform - - uid: 20581 + - uid: 20673 components: - rot: 1.5707963267948966 rad pos: -44.5,-95.5 parent: 2 type: Transform - - uid: 20582 + - uid: 20674 components: - rot: 1.5707963267948966 rad pos: -44.5,-96.5 parent: 2 type: Transform - - uid: 20583 + - uid: 20675 components: - rot: 1.5707963267948966 rad pos: -42.5,-98.5 parent: 2 type: Transform - - uid: 20584 + - uid: 20676 components: - rot: 1.5707963267948966 rad pos: -41.5,-98.5 parent: 2 type: Transform - - uid: 20585 + - uid: 20677 components: - pos: -23.5,-101.5 parent: 2 type: Transform - - uid: 20586 + - uid: 20678 components: - pos: -22.5,-101.5 parent: 2 type: Transform - - uid: 20587 + - uid: 20679 components: - rot: 3.141592653589793 rad pos: -73.5,-27.5 parent: 2 type: Transform - - uid: 20588 + - uid: 20680 components: - pos: 78.5,-38.5 parent: 2 type: Transform - - uid: 20589 + - uid: 20681 components: - pos: 76.5,-35.5 parent: 2 type: Transform - - uid: 20590 + - uid: 20682 components: - pos: 77.5,-35.5 parent: 2 type: Transform - - uid: 20591 + - uid: 20683 components: - pos: 78.5,-35.5 parent: 2 type: Transform - - uid: 20592 + - uid: 20684 components: - pos: 79.5,-35.5 parent: 2 type: Transform - - uid: 20593 + - uid: 20685 components: - pos: 77.5,-32.5 parent: 2 type: Transform - - uid: 20594 + - uid: 20686 components: - pos: 78.5,-32.5 parent: 2 type: Transform - - uid: 20595 + - uid: 20687 components: - pos: 78.5,-44.5 parent: 2 type: Transform - - uid: 20596 + - uid: 20688 components: - pos: 78.5,-45.5 parent: 2 type: Transform - - uid: 20597 + - uid: 20689 components: - pos: 69.5,-42.5 parent: 2 type: Transform - - uid: 20598 + - uid: 20690 components: - pos: 70.5,-42.5 parent: 2 type: Transform - - uid: 20599 + - uid: 20691 components: - rot: -1.5707963267948966 rad pos: 72.5,-50.5 parent: 2 type: Transform - - uid: 20600 + - uid: 20692 components: - pos: 63.5,-61.5 parent: 2 type: Transform - - uid: 20601 + - uid: 20693 components: - pos: 62.5,-61.5 parent: 2 type: Transform - - uid: 20602 + - uid: 20694 components: - pos: 61.5,-61.5 parent: 2 type: Transform - - uid: 20603 + - uid: 20695 components: - pos: 52.5,-61.5 parent: 2 type: Transform - - uid: 20604 + - uid: 20696 components: - pos: 50.5,-64.5 parent: 2 type: Transform - - uid: 20605 + - uid: 20697 components: - pos: 3.5,-28.5 parent: 2 type: Transform - - uid: 20606 + - uid: 20698 components: - pos: 1.5,-30.5 parent: 2 type: Transform - - uid: 20607 + - uid: 20699 components: - pos: 61.5,-70.5 parent: 2 type: Transform - - uid: 20608 + - uid: 20700 components: - pos: 5.5,-28.5 parent: 2 type: Transform - - uid: 20609 + - uid: 20701 components: - pos: 1.5,-31.5 parent: 2 type: Transform - - uid: 20610 + - uid: 20702 components: - pos: 9.5,-31.5 parent: 2 type: Transform - - uid: 20611 + - uid: 20703 components: - pos: 9.5,-34.5 parent: 2 type: Transform - - uid: 20612 + - uid: 20704 components: - rot: -1.5707963267948966 rad pos: 69.5,-36.5 parent: 2 type: Transform - - uid: 20613 + - uid: 20705 components: - rot: -1.5707963267948966 rad pos: 69.5,-38.5 parent: 2 type: Transform - - uid: 20614 + - uid: 20706 components: - rot: 3.141592653589793 rad pos: 68.5,-39.5 parent: 2 type: Transform - - uid: 20615 + - uid: 20707 components: - rot: 3.141592653589793 rad pos: 66.5,-39.5 parent: 2 type: Transform - - uid: 20617 + - uid: 20708 components: - rot: 3.141592653589793 rad pos: 73.5,-30.5 parent: 2 type: Transform - - uid: 20618 + - uid: 20709 components: - rot: 3.141592653589793 rad pos: 71.5,-27.5 parent: 2 type: Transform - - uid: 20619 + - uid: 20710 components: - rot: 3.141592653589793 rad pos: 73.5,-27.5 parent: 2 type: Transform - - uid: 20620 + - uid: 20711 components: - rot: 1.5707963267948966 rad pos: -58.5,-60.5 parent: 2 type: Transform - - uid: 20621 + - uid: 20712 components: - rot: 1.5707963267948966 rad pos: -54.5,-57.5 parent: 2 type: Transform - - uid: 20622 + - uid: 20713 components: - rot: 1.5707963267948966 rad pos: -52.5,-60.5 parent: 2 type: Transform - - uid: 20623 + - uid: 20714 components: - rot: 3.141592653589793 rad pos: 31.5,-33.5 parent: 2 type: Transform - - uid: 20624 + - uid: 20715 components: - rot: 3.141592653589793 rad pos: 19.5,-33.5 parent: 2 type: Transform - - uid: 20625 + - uid: 20716 components: - pos: 60.5,-70.5 parent: 2 type: Transform - - uid: 20626 + - uid: 20717 components: - pos: 2.5,-36.5 parent: 2 type: Transform - - uid: 20627 + - uid: 20718 components: - pos: 51.5,-68.5 parent: 2 type: Transform - - uid: 20628 + - uid: 20719 components: - pos: 50.5,-68.5 parent: 2 type: Transform - - uid: 20629 + - uid: 20720 components: - rot: -1.5707963267948966 rad pos: 43.5,-44.5 parent: 2 type: Transform - - uid: 20630 + - uid: 20721 components: - rot: -1.5707963267948966 rad pos: 44.5,-44.5 parent: 2 type: Transform - - uid: 20631 + - uid: 20722 components: - rot: -1.5707963267948966 rad pos: 16.5,38.5 parent: 2 type: Transform - - uid: 20632 + - uid: 20723 components: - rot: -1.5707963267948966 rad pos: 18.5,37.5 parent: 2 type: Transform - - uid: 20633 + - uid: 20724 components: - rot: -1.5707963267948966 rad pos: 14.5,37.5 parent: 2 type: Transform - - uid: 20634 + - uid: 20725 components: - pos: 62.5,-70.5 parent: 2 type: Transform - - uid: 20635 + - uid: 20726 components: - pos: 71.5,-64.5 parent: 2 type: Transform - - uid: 20636 + - uid: 20727 components: - rot: -1.5707963267948966 rad pos: 54.5,-68.5 parent: 2 type: Transform - - uid: 20637 + - uid: 20728 components: - rot: -1.5707963267948966 rad pos: 55.5,-68.5 parent: 2 type: Transform - - uid: 20638 + - uid: 20729 components: - rot: -1.5707963267948966 rad pos: 56.5,-68.5 parent: 2 type: Transform - - uid: 20639 + - uid: 20730 components: - pos: 54.5,-25.5 parent: 2 type: Transform - - uid: 20640 + - uid: 20731 components: - pos: 56.5,-25.5 parent: 2 type: Transform - - uid: 20641 + - uid: 20732 components: - pos: 58.5,-25.5 parent: 2 type: Transform - - uid: 20642 + - uid: 20733 components: - pos: 68.5,-57.5 parent: 2 type: Transform - - uid: 20644 + - uid: 20734 components: - pos: 71.5,-54.5 parent: 2 type: Transform - - uid: 20645 + - uid: 20735 components: - pos: 70.5,-54.5 parent: 2 type: Transform - - uid: 20646 + - uid: 20736 components: - pos: -12.5,43.5 parent: 2 type: Transform - - uid: 20647 + - uid: 20737 components: - pos: -8.5,43.5 parent: 2 type: Transform - - uid: 20648 + - uid: 20738 components: - pos: 73.5,46.5 parent: 2 type: Transform - - uid: 20649 + - uid: 20739 components: - pos: 72.5,46.5 parent: 2 type: Transform - - uid: 20650 + - uid: 20740 components: - rot: -1.5707963267948966 rad pos: 70.5,-50.5 parent: 2 type: Transform - - uid: 20651 + - uid: 20741 components: - rot: -1.5707963267948966 rad pos: -25.5,-18.5 parent: 2 type: Transform - - uid: 20652 + - uid: 20742 components: - pos: 36.5,18.5 parent: 2 type: Transform - - uid: 20653 + - uid: 20743 components: - pos: 35.5,18.5 parent: 2 type: Transform - - uid: 20654 + - uid: 20744 components: - pos: 34.5,18.5 parent: 2 type: Transform - - uid: 20655 + - uid: 20745 components: - rot: 3.141592653589793 rad pos: 71.5,-30.5 parent: 2 type: Transform - - uid: 20656 + - uid: 20746 components: - rot: 1.5707963267948966 rad pos: -52.5,-85.5 parent: 2 type: Transform - - uid: 20657 + - uid: 20747 components: - rot: 1.5707963267948966 rad pos: -52.5,-89.5 parent: 2 type: Transform - - uid: 20658 + - uid: 20748 components: - rot: 1.5707963267948966 rad pos: -49.5,-87.5 parent: 2 type: Transform - - uid: 20659 + - uid: 20749 components: - rot: 1.5707963267948966 rad pos: -50.5,-87.5 parent: 2 type: Transform - - uid: 20660 + - uid: 20750 components: - pos: -31.5,72.5 parent: 2 type: Transform - - uid: 20661 + - uid: 20751 components: - pos: -30.5,72.5 parent: 2 type: Transform - - uid: 20662 + - uid: 20752 components: - pos: -29.5,72.5 parent: 2 type: Transform - - uid: 20663 + - uid: 20753 components: - pos: -28.5,72.5 parent: 2 type: Transform - - uid: 20664 + - uid: 20754 components: - pos: -27.5,72.5 parent: 2 type: Transform - - uid: 20665 + - uid: 20755 components: - pos: -26.5,72.5 parent: 2 type: Transform - - uid: 20666 + - uid: 20756 components: - pos: -40.5,-62.5 parent: 2 type: Transform - - uid: 20667 + - uid: 20757 components: - pos: -41.5,-62.5 parent: 2 type: Transform - - uid: 20668 + - uid: 20758 components: - pos: -47.5,-34.5 parent: 2 type: Transform - - uid: 20669 + - uid: 20759 components: - pos: -47.5,-35.5 parent: 2 type: Transform - - uid: 20670 + - uid: 20760 components: - pos: 46.5,-78.5 parent: 2 type: Transform - - uid: 20671 + - uid: 20761 components: - pos: 46.5,-77.5 parent: 2 type: Transform - - uid: 20672 + - uid: 20762 components: - pos: 46.5,-79.5 parent: 2 type: Transform - - uid: 20673 + - uid: 20763 components: - rot: 3.141592653589793 rad pos: 24.5,-80.5 parent: 2 type: Transform - - uid: 20674 + - uid: 20764 components: - rot: 3.141592653589793 rad pos: 28.5,-89.5 parent: 2 type: Transform - - uid: 20675 + - uid: 20765 components: - rot: 3.141592653589793 rad pos: 25.5,-75.5 parent: 2 type: Transform - - uid: 20676 + - uid: 20766 components: - rot: 3.141592653589793 rad pos: 26.5,-75.5 parent: 2 type: Transform - - uid: 20677 + - uid: 20767 components: - rot: 3.141592653589793 rad pos: 28.5,-90.5 parent: 2 type: Transform - - uid: 20678 + - uid: 20768 components: - rot: 3.141592653589793 rad pos: 14.5,-78.5 parent: 2 type: Transform - - uid: 20679 + - uid: 20769 components: - rot: 3.141592653589793 rad pos: 13.5,-78.5 parent: 2 type: Transform - - uid: 20680 + - uid: 20770 components: - rot: 3.141592653589793 rad pos: 25.5,-86.5 parent: 2 type: Transform - - uid: 20681 + - uid: 20771 components: - rot: 3.141592653589793 rad pos: 25.5,-67.5 parent: 2 type: Transform - - uid: 20682 + - uid: 20772 components: - rot: 1.5707963267948966 rad pos: 37.5,-74.5 parent: 2 type: Transform - - uid: 20683 + - uid: 20773 components: - rot: 3.141592653589793 rad pos: 26.5,-67.5 parent: 2 type: Transform - - uid: 20684 + - uid: 20774 components: - rot: 3.141592653589793 rad pos: 17.5,-78.5 parent: 2 type: Transform - - uid: 20685 + - uid: 20775 components: - rot: 3.141592653589793 rad pos: 16.5,-78.5 parent: 2 type: Transform - - uid: 20686 + - uid: 20776 components: - rot: 3.141592653589793 rad pos: 14.5,-88.5 parent: 2 type: Transform - - uid: 20687 + - uid: 20777 components: - rot: 3.141592653589793 rad pos: 13.5,-88.5 parent: 2 type: Transform - - uid: 20688 + - uid: 20778 components: - rot: 3.141592653589793 rad pos: 17.5,-88.5 parent: 2 type: Transform - - uid: 20689 + - uid: 20779 components: - rot: 3.141592653589793 rad pos: 16.5,-88.5 parent: 2 type: Transform - - uid: 20690 + - uid: 20780 components: - rot: 3.141592653589793 rad pos: 24.5,-86.5 parent: 2 type: Transform - - uid: 20691 + - uid: 20781 components: - rot: 3.141592653589793 rad pos: 51.5,-72.5 parent: 2 type: Transform - - uid: 20692 + - uid: 20782 components: - rot: 3.141592653589793 rad pos: 51.5,-71.5 parent: 2 type: Transform - - uid: 20693 + - uid: 20783 components: - pos: 9.5,-18.5 parent: 2 type: Transform - - uid: 20694 + - uid: 20784 components: - rot: 3.141592653589793 rad pos: 6.5,-22.5 parent: 2 type: Transform - - uid: 20695 + - uid: 20785 components: - rot: 3.141592653589793 rad pos: 6.5,-23.5 parent: 2 type: Transform - - uid: 20696 + - uid: 20786 components: - pos: 45.5,9.5 parent: 2 type: Transform - - uid: 20697 + - uid: 20787 components: - pos: 48.5,7.5 parent: 2 type: Transform - - uid: 20698 + - uid: 20788 components: - rot: -1.5707963267948966 rad pos: 1.5,-74.5 parent: 2 type: Transform - - uid: 20699 + - uid: 20789 components: - pos: -76.5,-25.5 parent: 2 type: Transform - - uid: 20700 + - uid: 20790 components: - pos: -76.5,-12.5 parent: 2 type: Transform - - uid: 20701 + - uid: 20791 components: - rot: -1.5707963267948966 rad pos: 31.5,35.5 parent: 2 type: Transform - - uid: 20702 + - uid: 20792 components: - rot: -1.5707963267948966 rad pos: 30.5,35.5 parent: 2 type: Transform - - uid: 20703 + - uid: 20793 components: - rot: -1.5707963267948966 rad pos: 29.5,35.5 parent: 2 type: Transform - - uid: 20704 + - uid: 20794 components: - rot: -1.5707963267948966 rad pos: 28.5,35.5 parent: 2 type: Transform - - uid: 20705 + - uid: 20795 components: - rot: -1.5707963267948966 rad pos: 27.5,35.5 parent: 2 type: Transform - - uid: 20706 + - uid: 20796 components: - pos: 67.5,-32.5 parent: 2 type: Transform - - uid: 20707 + - uid: 20797 components: - rot: 1.5707963267948966 rad pos: -77.5,-51.5 parent: 2 type: Transform - - uid: 20708 + - uid: 20798 components: - rot: 1.5707963267948966 rad pos: 38.5,-74.5 parent: 2 type: Transform - - uid: 20709 + - uid: 20799 components: - rot: 1.5707963267948966 rad pos: 39.5,-74.5 parent: 2 type: Transform - - uid: 20710 + - uid: 20800 components: - rot: 1.5707963267948966 rad pos: 40.5,-74.5 parent: 2 type: Transform - - uid: 20711 + - uid: 20801 components: - rot: 1.5707963267948966 rad pos: -80.5,-54.5 parent: 2 type: Transform - - uid: 20712 + - uid: 20802 components: - rot: 1.5707963267948966 rad pos: -8.5,13.5 parent: 2 type: Transform - - uid: 20713 + - uid: 20803 components: - rot: 1.5707963267948966 rad pos: -78.5,-56.5 parent: 2 type: Transform - - uid: 20714 + - uid: 20804 components: - pos: -72.5,-50.5 parent: 2 type: Transform - - uid: 20715 + - uid: 20805 components: - rot: 1.5707963267948966 rad pos: -77.5,-56.5 parent: 2 type: Transform - - uid: 20716 + - uid: 20806 components: - rot: 1.5707963267948966 rad pos: -80.5,-53.5 parent: 2 type: Transform - - uid: 20717 + - uid: 20807 components: - rot: 1.5707963267948966 rad pos: -78.5,-51.5 parent: 2 type: Transform - - uid: 20718 + - uid: 20808 components: - rot: -1.5707963267948966 rad pos: -72.5,-57.5 parent: 2 type: Transform - - uid: 20719 + - uid: 20809 components: - rot: -1.5707963267948966 rad pos: -74.5,-40.5 parent: 2 type: Transform - - uid: 20720 + - uid: 20810 components: - pos: -70.5,-47.5 parent: 2 type: Transform - - uid: 20721 + - uid: 20811 components: - pos: -69.5,-47.5 parent: 2 type: Transform - - uid: 20722 + - uid: 20812 components: - pos: -68.5,-47.5 parent: 2 type: Transform - - uid: 20723 + - uid: 20813 components: - pos: -64.5,-43.5 parent: 2 type: Transform - - uid: 20724 + - uid: 20814 components: - pos: -82.5,-28.5 parent: 2 type: Transform - - uid: 20725 + - uid: 20815 components: - pos: -82.5,-29.5 parent: 2 type: Transform - - uid: 20726 + - uid: 20816 components: - pos: -82.5,-30.5 parent: 2 type: Transform - - uid: 20727 + - uid: 20817 components: - pos: -82.5,-31.5 parent: 2 type: Transform - - uid: 20728 + - uid: 20818 components: - pos: -82.5,-32.5 parent: 2 type: Transform - - uid: 20729 + - uid: 20819 components: - pos: -82.5,-33.5 parent: 2 type: Transform - - uid: 20730 + - uid: 20820 components: - pos: -82.5,-34.5 parent: 2 type: Transform - - uid: 20731 + - uid: 20821 components: - pos: -82.5,-35.5 parent: 2 type: Transform - - uid: 20732 + - uid: 20822 components: - pos: -82.5,-36.5 parent: 2 type: Transform - - uid: 20733 + - uid: 20823 components: - pos: -82.5,-37.5 parent: 2 type: Transform - - uid: 20734 + - uid: 20824 components: - pos: -82.5,-38.5 parent: 2 type: Transform - - uid: 20735 + - uid: 20825 components: - pos: -82.5,-39.5 parent: 2 type: Transform - - uid: 20736 + - uid: 20826 components: - pos: -82.5,-40.5 parent: 2 type: Transform - - uid: 20737 + - uid: 20827 components: - pos: -82.5,-41.5 parent: 2 type: Transform - - uid: 20738 + - uid: 20828 components: - pos: -82.5,-42.5 parent: 2 type: Transform - - uid: 20739 + - uid: 20829 components: - pos: -82.5,-43.5 parent: 2 type: Transform - - uid: 20740 + - uid: 20830 components: - pos: -82.5,-44.5 parent: 2 type: Transform - - uid: 20741 + - uid: 20831 components: - pos: -82.5,-45.5 parent: 2 type: Transform - - uid: 20742 + - uid: 20832 components: - pos: -82.5,-46.5 parent: 2 type: Transform - - uid: 20743 + - uid: 20833 components: - pos: -82.5,-47.5 parent: 2 type: Transform - - uid: 20744 + - uid: 20834 components: - pos: -82.5,-48.5 parent: 2 type: Transform - - uid: 20745 + - uid: 20835 components: - pos: -82.5,-27.5 parent: 2 type: Transform - - uid: 20746 + - uid: 20836 components: - pos: -82.5,-26.5 parent: 2 type: Transform - - uid: 20747 + - uid: 20837 components: - pos: -81.5,-26.5 parent: 2 type: Transform - - uid: 20748 + - uid: 20838 components: - rot: 1.5707963267948966 rad pos: -15.5,9.5 parent: 2 type: Transform - - uid: 20749 + - uid: 20839 components: - pos: -51.5,-13.5 parent: 2 type: Transform - - uid: 20750 + - uid: 20840 components: - rot: 1.5707963267948966 rad pos: -14.5,9.5 parent: 2 type: Transform - - uid: 20751 + - uid: 20841 components: - rot: 3.141592653589793 rad pos: -61.5,-44.5 parent: 2 type: Transform - - uid: 20752 + - uid: 20842 components: - rot: 1.5707963267948966 rad pos: -13.5,9.5 parent: 2 type: Transform - - uid: 20753 + - uid: 20843 components: - pos: -60.5,-38.5 parent: 2 type: Transform - - uid: 20754 + - uid: 20844 components: - rot: -1.5707963267948966 rad pos: -46.5,-38.5 parent: 2 type: Transform - - uid: 20755 + - uid: 20845 components: - pos: -52.5,-38.5 parent: 2 type: Transform - - uid: 20756 + - uid: 20846 components: - rot: 3.141592653589793 rad pos: -78.5,-45.5 parent: 2 type: Transform - - uid: 20757 + - uid: 20847 components: - pos: -42.5,-37.5 parent: 2 type: Transform - - uid: 20758 + - uid: 20848 components: - rot: -1.5707963267948966 rad pos: -53.5,-31.5 parent: 2 type: Transform - - uid: 20759 + - uid: 20849 components: - rot: -1.5707963267948966 rad pos: -53.5,-32.5 parent: 2 type: Transform - - uid: 21363 + - uid: 20850 components: - rot: 3.141592653589793 rad pos: 20.5,-34.5 parent: 2 type: Transform + - uid: 20851 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 2 + type: Transform + - uid: 20852 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 2 + type: Transform + - uid: 20853 + components: + - pos: 3.5,-3.5 + parent: 2 + type: Transform + - uid: 20854 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-40.5 + parent: 2 + type: Transform + - uid: 20855 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-40.5 + parent: 2 + type: Transform + - uid: 20856 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-40.5 + parent: 2 + type: Transform + - uid: 20857 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-40.5 + parent: 2 + type: Transform - proto: GrilleBroken entities: - - uid: 20760 + - uid: 20858 components: - rot: 3.141592653589793 rad pos: -2.5,-71.5 parent: 2 type: Transform - - uid: 20761 + - uid: 20859 components: - pos: -2.5,-71.5 parent: 2 type: Transform - - uid: 20762 + - uid: 20860 components: - rot: -1.5707963267948966 rad pos: -54.5,-83.5 parent: 2 type: Transform - - uid: 20763 + - uid: 20861 components: - rot: 1.5707963267948966 rad pos: -54.5,-83.5 parent: 2 type: Transform - - uid: 20764 + - uid: 20862 components: - rot: -1.5707963267948966 rad pos: 2.5,49.5 parent: 2 type: Transform - - uid: 20765 + - uid: 20863 components: - rot: 1.5707963267948966 rad pos: 2.5,49.5 parent: 2 type: Transform - - uid: 20766 + - uid: 20864 components: - rot: 3.141592653589793 rad pos: 2.5,48.5 parent: 2 type: Transform - - uid: 20767 + - uid: 20865 components: - pos: 2.5,48.5 parent: 2 type: Transform - proto: GunpetInstrument entities: - - uid: 20768 + - uid: 20866 components: - pos: 18.804333,-20.357145 parent: 2 type: Transform - proto: GunSafeDisabler entities: - - uid: 14763 + - uid: 20867 components: - pos: 23.5,20.5 parent: 2 type: Transform - proto: Handcuffs entities: - - uid: 20769 + - uid: 20868 components: - pos: -1.4479281,19.547018 parent: 2 type: Transform - - uid: 20770 + - uid: 20869 components: - pos: -15.367192,-23.36869 parent: 2 type: Transform - proto: HandheldHealthAnalyzer entities: - - uid: 20771 + - uid: 20870 components: - pos: 10.274347,-58.341446 parent: 2 type: Transform - - uid: 20772 + - uid: 20871 components: - pos: 10.539972,-58.60707 parent: 2 type: Transform - - uid: 20773 + - uid: 20872 components: - pos: 45.505707,8.483616 parent: 2 type: Transform - proto: HandLabeler entities: - - uid: 20775 + - uid: 20873 components: - pos: 7.5090528,-45.828945 parent: 2 type: Transform - - uid: 20776 + - uid: 20874 components: - pos: 39.184,-39.455414 parent: 2 type: Transform - - uid: 20777 + - uid: 20875 components: - pos: -33.328754,17.574179 parent: 2 type: Transform - - uid: 20778 + - uid: 20876 components: - pos: -28.559744,21.679361 parent: 2 type: Transform - - uid: 20779 + - uid: 20877 components: - rot: 3.141592653589793 rad pos: -32.198154,29.656374 @@ -142328,21 +143424,21 @@ entities: type: Transform - proto: HappyHonkNukie entities: - - uid: 20781 + - uid: 20878 components: - pos: 22.60001,-29.307062 parent: 2 type: Transform - proto: HarmonicaInstrument entities: - - uid: 20782 + - uid: 20879 components: - pos: 53.479427,24.562923 parent: 2 type: Transform - proto: HeatExchanger entities: - - uid: 20783 + - uid: 20880 components: - rot: -1.5707963267948966 rad pos: -63.5,-42.5 @@ -142350,7 +143446,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 20784 + - uid: 20881 components: - rot: -1.5707963267948966 rad pos: -63.5,-39.5 @@ -142358,14 +143454,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 20785 + - uid: 20882 components: - pos: -62.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 20786 + - uid: 20883 components: - pos: -62.5,-40.5 parent: 2 @@ -142374,60 +143470,60 @@ entities: type: AtmosPipeColor - proto: Hemostat entities: - - uid: 20787 + - uid: 20884 components: - pos: 0.5210637,-64.93571 parent: 2 type: Transform - - uid: 20788 + - uid: 20885 components: - pos: 73.5331,-48.317677 parent: 2 type: Transform - proto: HighSecArmoryLocked entities: - - uid: 20789 + - uid: 20886 components: - pos: 28.5,26.5 parent: 2 type: Transform - - uid: 20790 + - uid: 20887 components: - pos: 30.5,26.5 parent: 2 type: Transform - - uid: 20791 + - uid: 20888 components: - pos: 30.5,24.5 parent: 2 type: Transform - - uid: 20792 + - uid: 20889 components: - pos: 28.5,24.5 parent: 2 type: Transform - proto: HighSecCaptainLocked entities: - - uid: 20793 + - uid: 20890 components: - name: vault type: MetaData - pos: 43.5,-24.5 parent: 2 type: Transform - - uid: 20794 + - uid: 20891 components: - name: vault type: MetaData - pos: 43.5,-27.5 parent: 2 type: Transform - - uid: 20795 + - uid: 20892 components: - pos: -1.5,64.5 parent: 2 type: Transform - - uid: 20796 + - uid: 20893 components: - name: AI type: MetaData @@ -142436,34 +143532,34 @@ entities: type: Transform - proto: HighSecCommandLocked entities: - - uid: 20797 + - uid: 20894 components: - pos: 13.5,-21.5 parent: 2 type: Transform - proto: HolofanProjector entities: - - uid: 20798 + - uid: 20895 components: - pos: -42.447636,35.63477 parent: 2 type: Transform - - uid: 20799 + - uid: 20896 components: - pos: -37.369167,-8.432599 parent: 2 type: Transform - proto: HospitalCurtains entities: - - uid: 20800 + - uid: 20897 components: - pos: 60.5,21.5 parent: 2 type: Transform - - SecondsUntilStateChange: -550279.06 + - SecondsUntilStateChange: -561749.25 state: Opening type: Door - - uid: 20801 + - uid: 20898 components: - rot: 3.141592653589793 rad pos: 60.5,13.5 @@ -142471,400 +143567,419 @@ entities: type: Transform - proto: HospitalCurtainsOpen entities: - - uid: 20802 + - uid: 20899 components: - pos: -2.5,-55.5 parent: 2 type: Transform - - uid: 20803 + - uid: 20900 components: - pos: -5.5,-55.5 parent: 2 type: Transform - - uid: 20804 + - uid: 20901 components: - pos: -11.5,-55.5 parent: 2 type: Transform - - uid: 20805 + - uid: 20902 components: - pos: 3.5,-62.5 parent: 2 type: Transform - - SecondsUntilStateChange: -624840.75 + - SecondsUntilStateChange: -636310.94 state: Closing type: Door - - uid: 20806 + - uid: 20903 components: - pos: 0.5,-55.5 parent: 2 type: Transform - - uid: 20807 + - uid: 20904 components: - pos: -8.5,-55.5 parent: 2 type: Transform - proto: hydroponicsSoil entities: - - uid: 20808 + - uid: 20905 components: - pos: 9.5,55.5 parent: 2 type: Transform - - uid: 20809 + - uid: 20906 components: - pos: 8.5,55.5 parent: 2 type: Transform - - uid: 20810 + - uid: 20907 components: - pos: 10.5,55.5 parent: 2 type: Transform - - uid: 20811 + - uid: 20908 components: - pos: 11.5,55.5 parent: 2 type: Transform - - uid: 20812 + - uid: 20909 components: - pos: 7.5,55.5 parent: 2 type: Transform - - uid: 20813 + - uid: 20910 components: - pos: 11.5,52.5 parent: 2 type: Transform - - uid: 20814 + - uid: 20911 components: - pos: 10.5,52.5 parent: 2 type: Transform - - uid: 20815 + - uid: 20912 components: - pos: 9.5,52.5 parent: 2 type: Transform - - uid: 20816 + - uid: 20913 components: - pos: -6.5,49.5 parent: 2 type: Transform - - uid: 20817 + - uid: 20914 components: - pos: -4.5,55.5 parent: 2 type: Transform - - uid: 20818 + - uid: 20915 components: - rot: -1.5707963267948966 rad pos: -28.5,4.5 parent: 2 type: Transform - - uid: 20819 + - uid: 20916 components: - rot: -1.5707963267948966 rad pos: -28.5,3.5 parent: 2 type: Transform - - uid: 20820 + - uid: 20917 components: - rot: -1.5707963267948966 rad pos: -4.5,19.5 parent: 2 type: Transform - - uid: 20821 + - uid: 20918 components: - rot: -1.5707963267948966 rad pos: -7.5,19.5 parent: 2 type: Transform + - uid: 20919 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,-68.5 + parent: 2 + type: Transform + - uid: 20920 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,-68.5 + parent: 2 + type: Transform - proto: HydroponicsToolClippers entities: - - uid: 20822 + - uid: 20921 components: - pos: -47.467487,-3.558907 parent: 2 type: Transform - proto: HydroponicsToolHatchet entities: - - uid: 20823 + - uid: 20922 components: - pos: 9.725508,-56.44578 parent: 2 type: Transform - proto: HydroponicsToolMiniHoe entities: - - uid: 20824 + - uid: 20923 components: - pos: 57.497448,6.490094 parent: 2 type: Transform - - uid: 20825 + - uid: 20924 components: - pos: -28.501194,4.4131045 parent: 2 type: Transform - - uid: 20826 + - uid: 20925 components: - pos: 55.4544,56.501 parent: 2 type: Transform - - uid: 20827 + - uid: 20926 components: - pos: 7.1714664,53.671818 parent: 2 type: Transform +- proto: HydroponicsToolScythe + entities: + - uid: 23637 + components: + - pos: -2.5396576,10.576576 + parent: 2 + type: Transform - proto: HydroponicsToolSpade entities: - - uid: 20828 + - uid: 20927 components: - pos: 57.622448,6.583844 parent: 2 type: Transform - - uid: 20829 + - uid: 20928 components: - pos: -28.61099,3.5269613 parent: 2 type: Transform - - uid: 20830 + - uid: 20929 components: - pos: 55.54815,56.53225 parent: 2 type: Transform - proto: hydroponicsTray entities: - - uid: 20831 + - uid: 20930 components: - pos: -10.5,11.5 parent: 2 type: Transform - - uid: 20832 + - uid: 20931 components: - pos: -6.5,10.5 parent: 2 type: Transform - - uid: 20833 + - uid: 20932 components: - pos: -10.5,10.5 parent: 2 type: Transform - - uid: 20834 + - uid: 20933 components: - pos: -4.5,7.5 parent: 2 type: Transform - - uid: 20835 + - uid: 20934 components: - pos: -8.5,9.5 parent: 2 type: Transform - - uid: 20836 + - uid: 20935 components: - pos: -6.5,7.5 parent: 2 type: Transform - - uid: 20837 + - uid: 20936 components: - pos: -6.5,9.5 parent: 2 type: Transform - - uid: 20838 + - uid: 20937 components: - pos: -8.5,8.5 parent: 2 type: Transform - - uid: 20839 + - uid: 20938 components: - pos: -4.5,8.5 parent: 2 type: Transform - - uid: 20840 + - uid: 20939 components: - pos: -8.5,10.5 parent: 2 type: Transform - - uid: 20841 + - uid: 20940 components: - pos: -6.5,11.5 parent: 2 type: Transform - - uid: 20842 + - uid: 20941 components: - pos: -6.5,8.5 parent: 2 type: Transform - - uid: 20843 + - uid: 20942 components: - pos: -10.5,8.5 parent: 2 type: Transform - - uid: 20844 + - uid: 20943 components: - pos: -8.5,7.5 parent: 2 type: Transform - - uid: 20845 + - uid: 20944 components: - pos: -10.5,7.5 parent: 2 type: Transform - - uid: 20846 + - uid: 20945 components: - pos: -10.5,9.5 parent: 2 type: Transform - - uid: 20847 + - uid: 20946 components: - pos: -8.5,11.5 parent: 2 type: Transform - - uid: 20848 + - uid: 20947 components: - pos: 58.5,8.5 parent: 2 type: Transform - - uid: 20849 + - uid: 20948 components: - pos: 58.5,7.5 parent: 2 type: Transform - - uid: 20850 + - uid: 20949 components: - pos: 58.5,6.5 parent: 2 type: Transform - - uid: 20851 + - uid: 20950 components: - pos: 56.5,8.5 parent: 2 type: Transform - - uid: 20852 + - uid: 20951 components: - pos: 56.5,7.5 parent: 2 type: Transform - - uid: 20853 + - uid: 20952 components: - pos: 56.5,6.5 parent: 2 type: Transform - - uid: 20854 + - uid: 20953 components: - pos: 52.5,55.5 parent: 2 type: Transform - - uid: 20855 + - uid: 20954 components: - pos: 56.5,55.5 parent: 2 type: Transform - proto: HydroponicsTrayMachineCircuitboard entities: - - uid: 20856 + - uid: 20955 components: - pos: 38.518326,-56.124916 parent: 2 type: Transform - proto: InflatableDoorStack1 entities: - - uid: 20857 + - uid: 20956 components: - pos: 41.577766,-55.382984 parent: 2 type: Transform - proto: InflatableWall entities: - - uid: 20858 + - uid: 20957 components: - pos: -51.5,-66.5 parent: 2 type: Transform - - uid: 20859 + - uid: 20958 components: - pos: -51.5,-67.5 parent: 2 type: Transform - - uid: 20860 + - uid: 20959 components: - pos: -49.5,-72.5 parent: 2 type: Transform - proto: InflatableWallStack entities: - - uid: 20861 + - uid: 20960 components: - pos: 7.4753633,-16.474928 parent: 2 type: Transform - proto: InflatableWallStack1 entities: - - uid: 20862 + - uid: 20961 components: - pos: -38.56672,-98.45029 parent: 2 type: Transform - proto: IngotGold entities: - - uid: 20863 + - uid: 20962 components: - pos: 48.54513,-24.041304 parent: 2 type: Transform - - uid: 20864 + - uid: 20963 components: - pos: 48.16234,-27.566782 parent: 2 type: Transform - proto: IngotGold1 entities: - - uid: 20865 + - uid: 20964 components: - pos: 14.545005,56.593597 parent: 2 type: Transform - - uid: 20866 + - uid: 20965 components: - pos: 59.385517,-51.41954 parent: 2 type: Transform - - uid: 20867 + - uid: 20966 components: - pos: 59.432392,-51.591415 parent: 2 type: Transform - proto: IntercomAll entities: - - uid: 20868 + - uid: 20967 components: - pos: 20.5,-20.5 parent: 2 type: Transform - proto: IntercomCommand entities: - - uid: 20869 + - uid: 20968 components: - pos: -34.5,-14.5 parent: 2 type: Transform - - uid: 20870 + - uid: 20969 components: - pos: 64.5,0.5 parent: 2 type: Transform - - uid: 20871 + - uid: 20970 components: - pos: 64.5,-50.5 parent: 2 type: Transform - - uid: 20872 + - uid: 20971 components: - rot: -1.5707963267948966 rad pos: 9.5,21.5 parent: 2 type: Transform - - uid: 20874 + - uid: 20972 components: - rot: -1.5707963267948966 rad pos: -16.5,-57.5 @@ -142872,147 +143987,147 @@ entities: type: Transform - proto: IntercomCommon entities: - - uid: 20875 + - uid: 20973 components: - pos: -38.5,-70.5 parent: 2 type: Transform - - uid: 20876 + - uid: 20974 components: - rot: 1.5707963267948966 rad pos: -14.5,57.5 parent: 2 type: Transform - - uid: 20878 + - uid: 20975 components: - pos: 37.5,-69.5 parent: 2 type: Transform - - uid: 20879 + - uid: 20976 components: - rot: -1.5707963267948966 rad pos: 29.5,-2.5 parent: 2 type: Transform - - uid: 20880 + - uid: 20977 components: - rot: -1.5707963267948966 rad pos: 7.5,6.5 parent: 2 type: Transform - - uid: 20881 + - uid: 20978 components: - pos: 14.5,4.5 parent: 2 type: Transform - - uid: 20882 + - uid: 20979 components: - pos: 9.5,11.5 parent: 2 type: Transform - - uid: 20883 + - uid: 20980 components: - rot: 1.5707963267948966 rad pos: 15.5,-3.5 parent: 2 type: Transform - - uid: 20884 + - uid: 20981 components: - pos: -31.5,11.5 parent: 2 type: Transform - - uid: 20886 + - uid: 20982 components: - pos: -30.5,2.5 parent: 2 type: Transform - - uid: 20887 + - uid: 20983 components: - pos: -15.5,-24.5 parent: 2 type: Transform - - uid: 20888 + - uid: 20984 components: - pos: 4.5,-39.5 parent: 2 type: Transform - - uid: 20889 + - uid: 20985 components: - pos: 39.5,-40.5 parent: 2 type: Transform - - uid: 20890 + - uid: 20986 components: - pos: 29.5,-15.5 parent: 2 type: Transform - - uid: 20891 + - uid: 20987 components: - pos: 39.5,3.5 parent: 2 type: Transform - - uid: 20892 + - uid: 20988 components: - pos: 54.5,-4.5 parent: 2 type: Transform - - uid: 20893 + - uid: 20989 components: - rot: -1.5707963267948966 rad pos: 13.5,-8.5 parent: 2 type: Transform - - uid: 20894 + - uid: 20990 components: - rot: 1.5707963267948966 rad pos: -1.5,48.5 parent: 2 type: Transform - - uid: 20895 + - uid: 20991 components: - rot: 1.5707963267948966 rad pos: -19.5,40.5 parent: 2 type: Transform - - uid: 20896 + - uid: 20992 components: - rot: -1.5707963267948966 rad pos: -2.5,-18.5 parent: 2 type: Transform - - uid: 20897 + - uid: 20993 components: - pos: -14.5,-40.5 parent: 2 type: Transform - - uid: 20898 + - uid: 20994 components: - rot: -1.5707963267948966 rad pos: 17.5,-28.5 parent: 2 type: Transform - - uid: 20899 + - uid: 20995 components: - pos: 17.5,-51.5 parent: 2 type: Transform - - uid: 20900 + - uid: 20996 components: - pos: -25.5,-94.5 parent: 2 type: Transform - - uid: 20901 + - uid: 20997 components: - rot: 1.5707963267948966 rad pos: -21.5,29.5 parent: 2 type: Transform - - uid: 20902 + - uid: 20998 components: - pos: 23.5,-69.5 parent: 2 type: Transform - - uid: 20903 + - uid: 20999 components: - rot: -1.5707963267948966 rad pos: 20.5,-84.5 @@ -143020,198 +144135,198 @@ entities: type: Transform - proto: IntercomEngineering entities: - - uid: 20904 + - uid: 21000 components: - pos: -24.5,-7.5 parent: 2 type: Transform - - uid: 20905 + - uid: 21001 components: - pos: -35.5,-4.5 parent: 2 type: Transform - - uid: 20906 + - uid: 21002 components: - rot: -1.5707963267948966 rad pos: -52.5,-9.5 parent: 2 type: Transform - - uid: 20907 + - uid: 21003 components: - pos: -61.5,-26.5 parent: 2 type: Transform - - uid: 20908 + - uid: 21004 components: - pos: -28.5,-32.5 parent: 2 type: Transform - - uid: 20909 + - uid: 21005 components: - rot: -1.5707963267948966 rad pos: -32.5,-49.5 parent: 2 type: Transform - - uid: 20910 + - uid: 21006 components: - pos: -67.5,-35.5 parent: 2 type: Transform - proto: IntercomMedical entities: - - uid: 20911 + - uid: 21007 components: - pos: -13.5,-58.5 parent: 2 type: Transform - - uid: 20912 + - uid: 21008 components: - rot: 1.5707963267948966 rad pos: -32.5,-70.5 parent: 2 type: Transform - - uid: 20913 + - uid: 21009 components: - pos: -24.5,-56.5 parent: 2 type: Transform - - uid: 20914 + - uid: 21010 components: - pos: 2.5,-51.5 parent: 2 type: Transform - - uid: 20915 + - uid: 21011 components: - pos: -25.5,-68.5 parent: 2 type: Transform - - uid: 20916 + - uid: 21012 components: - rot: -1.5707963267948966 rad pos: -4.5,-64.5 parent: 2 type: Transform - - uid: 20917 + - uid: 21013 components: - rot: 1.5707963267948966 rad pos: -13.5,-36.5 parent: 2 type: Transform - - uid: 20918 + - uid: 21014 components: - rot: 1.5707963267948966 rad pos: -27.5,-85.5 parent: 2 type: Transform - - uid: 20919 + - uid: 21015 components: - rot: -1.5707963267948966 rad pos: -21.5,-80.5 parent: 2 type: Transform - - uid: 20920 + - uid: 21016 components: - pos: -19.5,-74.5 parent: 2 type: Transform - proto: IntercomScience entities: - - uid: 20921 + - uid: 21017 components: - pos: 42.5,-34.5 parent: 2 type: Transform - - uid: 20922 + - uid: 21018 components: - pos: 44.5,-40.5 parent: 2 type: Transform - - uid: 20923 + - uid: 21019 components: - rot: 1.5707963267948966 rad pos: 40.5,-45.5 parent: 2 type: Transform - - uid: 20924 + - uid: 21020 components: - rot: -1.5707963267948966 rad pos: 53.5,-55.5 parent: 2 type: Transform - - uid: 20925 + - uid: 21021 components: - pos: 67.5,-42.5 parent: 2 type: Transform - - uid: 20926 + - uid: 21022 components: - rot: -1.5707963267948966 rad pos: 76.5,-40.5 parent: 2 type: Transform - - uid: 20927 + - uid: 21023 components: - pos: 60.5,-30.5 parent: 2 type: Transform - - uid: 20928 + - uid: 21024 components: - pos: 53.5,-38.5 parent: 2 type: Transform - proto: IntercomSecurity entities: - - uid: 20929 + - uid: 21025 components: - rot: 1.5707963267948966 rad pos: 3.5,14.5 parent: 2 type: Transform - - uid: 20930 + - uid: 21026 components: - rot: -1.5707963267948966 rad pos: -13.5,24.5 parent: 2 type: Transform - - uid: 20931 + - uid: 21027 components: - pos: -16.5,-19.5 parent: 2 type: Transform - - uid: 20932 + - uid: 21028 components: - rot: 1.5707963267948966 rad pos: -2.5,18.5 parent: 2 type: Transform - - uid: 20933 + - uid: 21029 components: - pos: 26.5,24.5 parent: 2 type: Transform - - uid: 20934 + - uid: 21030 components: - pos: 16.5,24.5 parent: 2 type: Transform - - uid: 20935 + - uid: 21031 components: - rot: 1.5707963267948966 rad pos: 18.5,-45.5 parent: 2 type: Transform - - uid: 20936 + - uid: 21032 components: - rot: 1.5707963267948966 rad pos: 16.5,-13.5 parent: 2 type: Transform - - uid: 20937 + - uid: 21033 components: - pos: 4.5,-55.5 parent: 2 type: Transform - - uid: 20938 + - uid: 21034 components: - rot: -1.5707963267948966 rad pos: 43.5,9.5 @@ -143219,53 +144334,58 @@ entities: type: Transform - proto: IntercomService entities: - - uid: 20939 + - uid: 21035 components: - pos: 20.5,15.5 parent: 2 type: Transform - - uid: 20940 + - uid: 21036 components: - pos: -26.5,16.5 parent: 2 type: Transform - - uid: 20941 + - uid: 21037 components: - rot: 1.5707963267948966 rad pos: -11.5,5.5 parent: 2 type: Transform + - uid: 21038 + components: + - pos: 1.5,-18.5 + parent: 2 + type: Transform - proto: IntercomSupply entities: - - uid: 20942 + - uid: 21039 components: - rot: -1.5707963267948966 rad pos: -29.5,24.5 parent: 2 type: Transform - - uid: 20943 + - uid: 21040 components: - pos: -48.5,17.5 parent: 2 type: Transform - - uid: 20944 + - uid: 21041 components: - rot: 1.5707963267948966 rad pos: -26.5,20.5 parent: 2 type: Transform - - uid: 20945 + - uid: 21042 components: - rot: 1.5707963267948966 rad pos: -35.5,30.5 parent: 2 type: Transform - - uid: 20946 + - uid: 21043 components: - pos: -43.5,26.5 parent: 2 type: Transform - - uid: 20947 + - uid: 21044 components: - rot: -1.5707963267948966 rad pos: -39.5,28.5 @@ -143273,7 +144393,7 @@ entities: type: Transform - proto: JanitorialTrolley entities: - - uid: 20948 + - uid: 21045 components: - rot: -1.5707963267948966 rad pos: -7.5,-22.5 @@ -143281,19 +144401,19 @@ entities: type: Transform - proto: JetpackBlueFilled entities: - - uid: 20949 + - uid: 21046 components: - rot: 3.141592653589793 rad pos: 33.468403,-14.391748 parent: 2 type: Transform - - uid: 20950 + - uid: 21047 components: - rot: 3.141592653589793 rad pos: 33.499653,-14.469873 parent: 2 type: Transform - - uid: 20951 + - uid: 21048 components: - rot: 3.141592653589793 rad pos: 33.640278,-14.579248 @@ -143301,316 +144421,295 @@ entities: type: Transform - proto: KitchenMicrowave entities: - - uid: 20952 + - uid: 21049 components: - pos: -31.5,-69.5 parent: 2 type: Transform - - uid: 20953 + - uid: 21050 components: - pos: 2.5,7.5 parent: 2 type: Transform - - uid: 20954 + - uid: 21051 components: - pos: 4.5,6.5 parent: 2 type: Transform - - uid: 20955 + - uid: 21052 components: - pos: 31.5,-20.5 parent: 2 type: Transform - - uid: 20956 + - uid: 21053 components: - pos: 52.5,18.5 parent: 2 type: Transform - - uid: 20957 + - uid: 21054 components: - pos: 45.5,-49.5 parent: 2 type: Transform - - uid: 20958 + - uid: 21055 components: - pos: -38.5,-32.5 parent: 2 type: Transform - - uid: 20959 + - uid: 21056 components: - pos: -22.5,45.5 parent: 2 type: Transform - - uid: 20960 + - uid: 21057 components: - pos: -8.5,41.5 parent: 2 type: Transform - proto: KitchenReagentGrinder entities: - - uid: 20961 + - uid: 21058 components: - pos: -3.5,5.5 parent: 2 type: Transform - - uid: 20962 + - uid: 21059 components: - pos: 3.5,-47.5 parent: 2 type: Transform - - uid: 20963 + - uid: 21060 components: - pos: 3.5,7.5 parent: 2 type: Transform - - uid: 20964 + - uid: 21061 components: - pos: 53.5,18.5 parent: 2 type: Transform - proto: KitchenSpike entities: - - uid: 20965 + - uid: 21062 components: - pos: -0.5,11.5 parent: 2 type: Transform - proto: Lamp entities: - - uid: 20966 + - uid: 21063 components: - rot: -1.5707963267948966 rad pos: -3.8543606,-48.096176 parent: 2 type: Transform - - uid: 20967 + - uid: 21064 components: - rot: 1.5707963267948966 rad pos: 24.558033,-21.226107 parent: 2 type: Transform - - uid: 20968 + - uid: 21065 components: - pos: 21.425192,-12.111239 parent: 2 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: Objects/Tools/flashlight.rsi/flashlight.png - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - - uid: 20969 + - uid: 21066 components: - rot: -1.5707963267948966 rad pos: 7.6524577,20.90233 parent: 2 type: Transform - - uid: 20970 + - uid: 21067 components: - rot: -1.5707963267948966 rad pos: -9.565374,-37.00866 parent: 2 type: Transform - - uid: 20971 + - uid: 21068 components: - rot: 1.5707963267948966 rad pos: 51.608532,-40.935013 parent: 2 type: Transform - - uid: 20972 + - uid: 21069 components: - pos: 59.696476,-1.1797758 parent: 2 type: Transform - - uid: 20973 + - uid: 21070 components: - rot: 1.5707963267948966 rad pos: -33.336697,29.910027 parent: 2 type: Transform - - uid: 20974 + - uid: 21071 components: - pos: -24.34436,11.920202 parent: 2 type: Transform - - uid: 20975 + - uid: 21072 components: - rot: 1.5707963267948966 rad pos: -28.600471,45.10426 parent: 2 type: Transform - - uid: 20976 + - uid: 21073 components: - pos: -12.458234,-18.122696 parent: 2 type: Transform - proto: LampBanana entities: - - uid: 20978 + - uid: 21074 components: - pos: -22.53235,37.89803 parent: 2 type: Transform + - uid: 21075 + components: + - rot: -1.5707963267948966 rad + pos: 2.6784086,-21.06689 + parent: 2 + type: Transform - proto: LampGold entities: - - uid: 20979 + - uid: 21076 components: - pos: -22.537891,-69.31316 parent: 2 type: Transform - - uid: 20980 + - uid: 21077 components: - pos: -18.78946,-56.159798 parent: 2 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: Objects/Tools/flashlight.rsi/flashlight.png - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - - uid: 20981 + - uid: 21078 components: - pos: -10.485052,-3.11381 parent: 2 type: Transform - - uid: 20982 + - uid: 21079 components: - rot: 1.5707963267948966 rad pos: 43.557644,-4.1465535 parent: 2 type: Transform - - uid: 20983 + - uid: 21080 components: - pos: 37.53909,-2.5487528 parent: 2 type: Transform - - uid: 20984 + - uid: 21081 components: - pos: 32.892563,-50.10114 parent: 2 type: Transform - - uid: 20985 + - uid: 21082 components: - pos: 28.845686,-50.06989 parent: 2 type: Transform - - uid: 20986 + - uid: 21083 components: - rot: 1.5707963267948966 rad pos: -22.520432,-96.69095 parent: 2 type: Transform + - uid: 21084 + components: + - rot: 1.5707963267948966 rad + pos: 3.3403625,-9.918977 + parent: 2 + type: Transform - proto: LandMineExplosive entities: - - uid: 10113 + - uid: 21085 components: - pos: 32.5,36.5 parent: 2 type: Transform - - uid: 12351 + - uid: 21086 components: - pos: 36.5,26.5 parent: 2 type: Transform - - uid: 12368 + - uid: 21087 components: - pos: 26.5,36.5 parent: 2 type: Transform - - uid: 12623 + - uid: 21088 components: - pos: 22.5,35.5 parent: 2 type: Transform - proto: LargeBeaker entities: - - uid: 20987 + - uid: 21089 components: - pos: 3.6272888,-45.59047 parent: 2 type: Transform - - uid: 20988 + - uid: 21090 components: - pos: 3.2216597,-45.50144 parent: 2 type: Transform - - uid: 20989 + - uid: 21091 components: - pos: 3.6444578,-45.294815 parent: 2 type: Transform - - uid: 20990 + - uid: 21092 components: - pos: 4.621125,7.7027445 parent: 2 type: Transform - - uid: 20991 + - uid: 21093 components: - pos: -25.403534,-78.32023 parent: 2 type: Transform - - uid: 20992 + - uid: 21094 components: - pos: -25.716034,-78.71085 parent: 2 type: Transform - - uid: 20993 + - uid: 21095 components: - pos: -25.591316,-84.223625 parent: 2 type: Transform +- proto: LauncherCreamPie + entities: + - uid: 21096 + components: + - pos: 0.32515657,-23.45843 + parent: 2 + type: Transform - proto: Lighter entities: - - uid: 20995 + - uid: 21097 components: - pos: 13.70992,-34.538578 parent: 2 type: Transform - - uid: 20996 + - uid: 21098 components: - pos: 15.667978,-79.47625 parent: 2 type: Transform - proto: LightTube entities: - - uid: 20997 + - uid: 21099 components: - pos: -39.78844,-85.422134 parent: 2 type: Transform - proto: LockerAtmosphericsFilled entities: - - uid: 20998 + - uid: 21100 components: - pos: -33.5,-32.5 parent: 2 @@ -143633,7 +144732,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20999 + - uid: 21101 components: - pos: -39.5,-36.5 parent: 2 @@ -143656,7 +144755,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21000 + - uid: 21102 components: - pos: -37.5,-36.5 parent: 2 @@ -143679,7 +144778,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21001 + - uid: 21103 components: - pos: -35.5,-36.5 parent: 2 @@ -143704,7 +144803,7 @@ entities: type: EntityStorage - proto: LockerBoozeFilled entities: - - uid: 21002 + - uid: 21104 components: - pos: 22.5,12.5 parent: 2 @@ -143729,7 +144828,7 @@ entities: type: EntityStorage - proto: LockerBotanistFilled entities: - - uid: 21003 + - uid: 21105 components: - pos: -4.5,11.5 parent: 2 @@ -143754,7 +144853,7 @@ entities: type: EntityStorage - proto: LockerCaptainFilled entities: - - uid: 21004 + - uid: 21106 components: - pos: 29.5,-27.5 parent: 2 @@ -143779,14 +144878,14 @@ entities: type: EntityStorage - proto: LockerChemistryFilled entities: - - uid: 21005 + - uid: 21107 components: - pos: 7.5,-50.5 parent: 2 type: Transform - proto: LockerChiefEngineerFilled entities: - - uid: 21006 + - uid: 21108 components: - pos: -37.5,-15.5 parent: 2 @@ -143811,7 +144910,7 @@ entities: type: EntityStorage - proto: LockerChiefMedicalOfficerFilled entities: - - uid: 21007 + - uid: 21109 components: - pos: -18.5,-54.5 parent: 2 @@ -143836,7 +144935,7 @@ entities: type: EntityStorage - proto: LockerDetectiveFilled entities: - - uid: 21008 + - uid: 21110 components: - pos: 17.5,-10.5 parent: 2 @@ -143861,7 +144960,7 @@ entities: type: EntityStorage - proto: LockerElectricalSupplies entities: - - uid: 21009 + - uid: 21111 components: - pos: -7.5,-17.5 parent: 2 @@ -143886,7 +144985,7 @@ entities: type: EntityStorage - proto: LockerElectricalSuppliesFilled entities: - - uid: 21010 + - uid: 21112 components: - pos: 46.5,-3.5 parent: 2 @@ -143909,7 +145008,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21011 + - uid: 21113 components: - pos: -53.5,0.5 parent: 2 @@ -143932,7 +145031,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21012 + - uid: 21114 components: - pos: 32.5,25.5 parent: 2 @@ -143955,7 +145054,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21013 + - uid: 21115 components: - pos: 39.5,-28.5 parent: 2 @@ -143980,7 +145079,7 @@ entities: type: EntityStorage - proto: LockerEngineerFilled entities: - - uid: 21014 + - uid: 21116 components: - pos: -39.5,-7.5 parent: 2 @@ -144003,7 +145102,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21015 + - uid: 21117 components: - pos: -39.5,-12.5 parent: 2 @@ -144026,7 +145125,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21016 + - uid: 21118 components: - pos: -39.5,-8.5 parent: 2 @@ -144049,7 +145148,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21017 + - uid: 21119 components: - pos: -39.5,-9.5 parent: 2 @@ -144072,7 +145171,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21018 + - uid: 21120 components: - pos: -50.5,-20.5 parent: 2 @@ -144097,7 +145196,7 @@ entities: type: EntityStorage - proto: LockerEvidence entities: - - uid: 21019 + - uid: 21121 components: - pos: 4.5,-57.5 parent: 2 @@ -144120,7 +145219,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21020 + - uid: 21122 components: - pos: 34.5,-45.5 parent: 2 @@ -144143,7 +145242,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21021 + - uid: 21123 components: - pos: 18.5,23.5 parent: 2 @@ -144166,17 +145265,17 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21022 + - uid: 21124 components: - pos: 37.5,12.5 parent: 2 type: Transform - - uid: 21023 + - uid: 21125 components: - pos: 37.5,11.5 parent: 2 type: Transform - - uid: 21024 + - uid: 21126 components: - pos: 41.5,16.5 parent: 2 @@ -144199,7 +145298,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21025 + - uid: 21127 components: - pos: 40.5,16.5 parent: 2 @@ -144222,7 +145321,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21026 + - uid: 21128 components: - pos: 39.5,16.5 parent: 2 @@ -144245,7 +145344,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21027 + - uid: 21129 components: - pos: 38.5,16.5 parent: 2 @@ -144268,7 +145367,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21028 + - uid: 21130 components: - pos: 42.5,16.5 parent: 2 @@ -144291,7 +145390,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21029 + - uid: 21131 components: - pos: 37.5,16.5 parent: 2 @@ -144314,14 +145413,14 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21030 + - uid: 21132 components: - pos: 37.5,10.5 parent: 2 type: Transform - proto: LockerFreezer entities: - - uid: 21031 + - uid: 21133 components: - pos: -38.5,37.5 parent: 2 @@ -144344,7 +145443,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21032 + - uid: 21134 components: - pos: -38.5,36.5 parent: 2 @@ -144367,7 +145466,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21033 + - uid: 21135 components: - pos: 1.5,14.5 parent: 2 @@ -144390,7 +145489,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21034 + - uid: 21136 components: - pos: -5.5,-95.5 parent: 2 @@ -144415,14 +145514,14 @@ entities: type: EntityStorage - proto: LockerHeadOfPersonnelFilled entities: - - uid: 10126 + - uid: 21137 components: - - pos: 3.5,-7.5 + - pos: -1.5,-3.5 parent: 2 type: Transform - proto: LockerHeadOfSecurityFilled entities: - - uid: 21036 + - uid: 12233 components: - pos: 4.5,22.5 parent: 2 @@ -144450,8 +145549,8 @@ entities: showEnts: False occludes: True ents: - - 24037 - - 19863 + - 12235 + - 12234 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -144459,7 +145558,7 @@ entities: type: ContainerContainer - proto: LockerMedicalFilled entities: - - uid: 21037 + - uid: 21138 components: - pos: -15.5,-49.5 parent: 2 @@ -144482,7 +145581,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21038 + - uid: 21139 components: - pos: -15.5,-47.5 parent: 2 @@ -144505,7 +145604,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21039 + - uid: 21140 components: - pos: -15.5,-45.5 parent: 2 @@ -144528,26 +145627,26 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21040 + - uid: 21141 components: - pos: -15.5,-61.5 parent: 2 type: Transform - - uid: 21041 + - uid: 21142 components: - pos: -14.5,-61.5 parent: 2 type: Transform - proto: LockerParamedicFilled entities: - - uid: 21042 + - uid: 21143 components: - pos: 2.5,-64.5 parent: 2 type: Transform - proto: LockerQuarterMasterFilled entities: - - uid: 21043 + - uid: 21144 components: - pos: -34.5,31.5 parent: 2 @@ -144572,7 +145671,7 @@ entities: type: EntityStorage - proto: LockerResearchDirectorFilled entities: - - uid: 21044 + - uid: 21145 components: - pos: 63.5,-55.5 parent: 2 @@ -144597,7 +145696,7 @@ entities: type: EntityStorage - proto: LockerSalvageSpecialistFilled entities: - - uid: 21045 + - uid: 21146 components: - pos: -36.5,32.5 parent: 2 @@ -144620,7 +145719,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21046 + - uid: 21147 components: - pos: -36.5,30.5 parent: 2 @@ -144643,7 +145742,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21047 + - uid: 21148 components: - pos: -36.5,28.5 parent: 2 @@ -144666,14 +145765,14 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21048 + - uid: 21149 components: - pos: -45.5,44.5 parent: 2 type: Transform - proto: LockerScienceFilled entities: - - uid: 21049 + - uid: 21150 components: - pos: 44.5,-45.5 parent: 2 @@ -144696,7 +145795,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21050 + - uid: 21151 components: - pos: 42.5,-45.5 parent: 2 @@ -144719,7 +145818,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21051 + - uid: 21152 components: - pos: 41.5,-45.5 parent: 2 @@ -144744,7 +145843,7 @@ entities: type: EntityStorage - proto: LockerSecurity entities: - - uid: 21052 + - uid: 21153 components: - pos: 19.5,-47.5 parent: 2 @@ -144767,7 +145866,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21053 + - uid: 21154 components: - pos: 52.5,13.5 parent: 2 @@ -144792,17 +145891,17 @@ entities: type: EntityStorage - proto: LockerSecurityFilled entities: - - uid: 21054 + - uid: 21155 components: - pos: 31.5,19.5 parent: 2 type: Transform - - uid: 21055 + - uid: 21156 components: - pos: 32.5,19.5 parent: 2 type: Transform - - uid: 21056 + - uid: 21157 components: - pos: -0.5,17.5 parent: 2 @@ -144825,7 +145924,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21057 + - uid: 21158 components: - pos: -0.5,19.5 parent: 2 @@ -144848,19 +145947,19 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21058 + - uid: 21159 components: - pos: -14.5,23.5 parent: 2 type: Transform - - uid: 21059 + - uid: 21160 components: - pos: -0.5,21.5 parent: 2 type: Transform - proto: LockerSyndicatePersonal entities: - - uid: 12254 + - uid: 12394 components: - pos: -53.5,-86.5 parent: 2 @@ -144888,9 +145987,9 @@ entities: showEnts: False occludes: True ents: - - 12257 - - 12258 - - 12255 + - 12396 + - 12397 + - 12395 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -144898,14 +145997,19 @@ entities: type: ContainerContainer - proto: LockerWallMedicalDoctorFilled entities: - - uid: 21060 + - uid: 21161 components: - pos: 6.5,-58.5 parent: 2 type: Transform + - uid: 31191 + components: + - pos: -15.5,-51.5 + parent: 2 + type: Transform - proto: LockerWallMedicalFilled entities: - - uid: 21061 + - uid: 21162 components: - pos: -26.5,-56.5 parent: 2 @@ -144930,7 +146034,7 @@ entities: type: EntityStorage - proto: LockerWardenFilled entities: - - uid: 21062 + - uid: 21163 components: - pos: 20.5,23.5 parent: 2 @@ -144955,7 +146059,7 @@ entities: type: EntityStorage - proto: LockerWeldingSuppliesFilled entities: - - uid: 21063 + - uid: 21164 components: - pos: 38.5,-53.5 parent: 2 @@ -144978,7 +146082,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21064 + - uid: 21165 components: - pos: 13.5,-47.5 parent: 2 @@ -145001,7 +146105,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21065 + - uid: 21166 components: - pos: -53.5,-61.5 parent: 2 @@ -145026,14 +146130,14 @@ entities: type: EntityStorage - proto: Machete entities: - - uid: 21066 + - uid: 21167 components: - pos: -18.481012,-81.49154 parent: 2 type: Transform - proto: MachineAnomalyGenerator entities: - - uid: 21067 + - uid: 21168 components: - pos: 62.5,-30.5 parent: 2 @@ -145042,31 +146146,31 @@ entities: type: AmbientSound - proto: MachineAnomalyVessel entities: - - uid: 21068 + - uid: 21169 components: - pos: 58.5,-32.5 parent: 2 type: Transform - - uid: 21069 + - uid: 21170 components: - pos: 57.5,-32.5 parent: 2 type: Transform - proto: MachineAPE entities: - - uid: 21070 + - uid: 21171 components: - rot: 1.5707963267948966 rad pos: 57.5,-34.5 parent: 2 type: Transform - - uid: 21071 + - uid: 21172 components: - rot: 1.5707963267948966 rad pos: 57.5,-35.5 parent: 2 type: Transform - - uid: 21072 + - uid: 21173 components: - rot: 1.5707963267948966 rad pos: 58.5,-35.5 @@ -145074,105 +146178,105 @@ entities: type: Transform - proto: MachineArtifactAnalyzer entities: - - uid: 21073 + - uid: 21174 components: - rot: -1.5707963267948966 rad pos: 72.5,-28.5 parent: 2 type: Transform - links: - - 12337 + - 12475 type: DeviceLinkSink - proto: MachineFrame entities: - - uid: 21074 + - uid: 21175 components: - pos: -7.5,-63.5 parent: 2 type: Transform - - uid: 21075 + - uid: 21176 components: - pos: -9.5,-63.5 parent: 2 type: Transform - proto: MachineFrameDestroyed entities: - - uid: 21076 + - uid: 21177 components: - pos: 45.5,44.5 parent: 2 type: Transform - - uid: 21077 + - uid: 21178 components: - pos: -16.5,-8.5 parent: 2 type: Transform - - uid: 21078 + - uid: 21179 components: - pos: -36.5,-29.5 parent: 2 type: Transform - proto: MagazinePistol entities: - - uid: 21079 + - uid: 21180 components: - pos: 32.305683,32.48245 parent: 2 type: Transform - - uid: 21080 + - uid: 21181 components: - pos: 32.32131,32.48245 parent: 2 type: Transform - - uid: 21081 + - uid: 21182 components: - pos: 32.32131,32.48245 parent: 2 type: Transform - - uid: 21082 + - uid: 21183 components: - pos: 32.305683,32.48245 parent: 2 type: Transform - - uid: 21083 + - uid: 21184 components: - pos: 32.42361,32.439632 parent: 2 type: Transform - - uid: 21084 + - uid: 21185 components: - pos: 32.439236,32.392757 parent: 2 type: Transform - proto: MagazinePistolSubMachineGun entities: - - uid: 21085 + - uid: 21186 components: - pos: 29.960567,32.527683 parent: 2 type: Transform - - uid: 21086 + - uid: 21187 components: - pos: 29.952528,32.56383 parent: 2 type: Transform - - uid: 21087 + - uid: 21188 components: - pos: 29.936903,32.548206 parent: 2 type: Transform - - uid: 21088 + - uid: 21189 components: - pos: 29.968153,32.610706 parent: 2 type: Transform - - uid: 21089 + - uid: 21190 components: - rot: 3.141592653589793 rad pos: 29.992437,32.514297 parent: 2 type: Transform - - uid: 21090 + - uid: 21191 components: - rot: 3.141592653589793 rad pos: 29.976812,32.483047 @@ -145180,698 +146284,719 @@ entities: type: Transform - proto: MagazinePistolSubMachineGunTopMounted entities: - - uid: 21091 + - uid: 21192 components: - pos: 6.551134,22.646631 parent: 2 type: Transform - - uid: 21092 + - uid: 21193 components: - pos: 6.5377827,22.587479 parent: 2 type: Transform - proto: MagicDiceBag entities: - - uid: 21093 + - uid: 21194 components: - pos: -47.440662,5.801874 parent: 2 type: Transform - proto: MaintenanceFluffSpawner entities: - - uid: 21094 + - uid: 21195 + components: + - rot: 3.141592653589793 rad + pos: 30.5,46.5 + parent: 2 + type: Transform + - uid: 21196 + components: + - rot: 3.141592653589793 rad + pos: 54.5,60.5 + parent: 2 + type: Transform + - uid: 21197 + components: + - rot: 3.141592653589793 rad + pos: 22.5,51.5 + parent: 2 + type: Transform + - uid: 21198 + components: + - rot: 3.141592653589793 rad + pos: 70.5,-66.5 + parent: 2 + type: Transform + - uid: 21199 components: - pos: 15.5,-66.5 parent: 2 type: Transform - - uid: 21095 + - uid: 21200 components: - pos: 12.5,-53.5 parent: 2 type: Transform - - uid: 21096 + - uid: 21201 components: - pos: -15.5,-29.5 parent: 2 type: Transform - - uid: 21097 + - uid: 21202 components: - rot: -1.5707963267948966 rad pos: -16.5,-16.5 parent: 2 type: Transform - - uid: 21098 + - uid: 21203 components: - rot: -1.5707963267948966 rad pos: -8.5,-10.5 parent: 2 type: Transform - - uid: 21099 + - uid: 21204 components: - rot: -1.5707963267948966 rad pos: -11.5,-8.5 parent: 2 type: Transform - - uid: 21100 + - uid: 21205 components: - pos: -35.5,-22.5 parent: 2 type: Transform - - uid: 21101 + - uid: 21206 components: - pos: 43.5,-8.5 parent: 2 type: Transform - - uid: 21102 + - uid: 21207 components: - pos: -50.5,-62.5 parent: 2 type: Transform - - uid: 21103 + - uid: 21208 components: - pos: -36.5,-69.5 parent: 2 type: Transform - - uid: 21104 + - uid: 21209 components: - pos: 57.5,-3.5 parent: 2 type: Transform - - uid: 21105 + - uid: 21210 components: - pos: -3.5,30.5 parent: 2 type: Transform - - uid: 21106 + - uid: 21211 components: - pos: -15.5,21.5 parent: 2 type: Transform - - uid: 21107 + - uid: 21212 components: - pos: -49.5,15.5 parent: 2 type: Transform - - uid: 21108 + - uid: 21213 components: - pos: 15.5,57.5 parent: 2 type: Transform - - uid: 21109 + - uid: 21214 components: - pos: -14.5,-82.5 parent: 2 type: Transform - - uid: 21110 + - uid: 21215 components: - rot: 3.141592653589793 rad pos: 43.5,-62.5 parent: 2 type: Transform - - uid: 21111 + - uid: 21216 components: - pos: -32.5,-7.5 parent: 2 type: Transform + - uid: 21217 + components: + - pos: 6.5,-13.5 + parent: 2 + type: Transform - proto: MaintenancePlantSpawner entities: - - uid: 21112 + - uid: 21218 components: - pos: -55.5,-66.5 parent: 2 type: Transform - - uid: 21113 + - uid: 21219 components: - pos: -52.5,-68.5 parent: 2 type: Transform - - uid: 21114 + - uid: 21220 components: - pos: -53.5,-68.5 parent: 2 type: Transform - - uid: 21115 + - uid: 21221 components: - pos: -56.5,-68.5 parent: 2 type: Transform - - uid: 21116 + - uid: 21222 components: - pos: -53.5,-66.5 parent: 2 type: Transform - - uid: 21117 + - uid: 21223 components: - pos: -54.5,-67.5 parent: 2 type: Transform - - uid: 21118 + - uid: 21224 components: - pos: -26.5,31.5 parent: 2 type: Transform - - uid: 21119 + - uid: 21225 components: - pos: 52.5,39.5 parent: 2 type: Transform - - uid: 21120 + - uid: 21226 components: - pos: -7.5,49.5 parent: 2 type: Transform - - uid: 21121 + - uid: 21227 components: - pos: -28.5,-98.5 parent: 2 type: Transform - - uid: 21122 + - uid: 21228 components: - pos: -54.5,-66.5 parent: 2 type: Transform - - uid: 21123 + - uid: 21229 components: - pos: 22.5,-50.5 parent: 2 type: Transform - - uid: 21124 + - uid: 21230 components: - pos: -4.5,53.5 parent: 2 type: Transform - - uid: 21125 + - uid: 21231 components: - pos: 10.5,53.5 parent: 2 type: Transform - - uid: 21126 + - uid: 21232 components: - pos: 8.5,53.5 parent: 2 type: Transform - - uid: 21127 + - uid: 21233 components: - pos: 7.5,54.5 parent: 2 type: Transform - proto: MaintenanceToolSpawner entities: - - uid: 21128 + - uid: 21234 components: - pos: -13.5,12.5 parent: 2 type: Transform - - uid: 21129 + - uid: 21235 components: - pos: 36.5,-50.5 parent: 2 type: Transform - - uid: 21130 + - uid: 21236 components: - rot: 1.5707963267948966 rad pos: -55.5,-6.5 parent: 2 type: Transform - - uid: 21131 + - uid: 21237 components: - pos: -52.5,-15.5 parent: 2 type: Transform - - uid: 21132 + - uid: 21238 components: - pos: -24.5,-52.5 parent: 2 type: Transform - - uid: 21133 + - uid: 21239 components: - pos: 0.5,23.5 parent: 2 type: Transform - - uid: 21134 + - uid: 21240 components: - pos: -3.5,34.5 parent: 2 type: Transform - - uid: 21135 + - uid: 21241 components: - pos: -49.5,14.5 parent: 2 type: Transform - - uid: 21136 + - uid: 21242 components: - pos: 3.5,-17.5 parent: 2 type: Transform - - uid: 21137 + - uid: 21243 components: - pos: 59.5,2.5 parent: 2 type: Transform - - uid: 21138 - components: - - pos: 18.5,-30.5 - parent: 2 - type: Transform - - uid: 21139 + - uid: 21244 components: - pos: 53.5,47.5 parent: 2 type: Transform - - uid: 21140 + - uid: 21245 components: - pos: 67.5,8.5 parent: 2 type: Transform - - uid: 21141 + - uid: 21246 components: - pos: 18.5,39.5 parent: 2 type: Transform - - uid: 21142 + - uid: 21247 components: - pos: 16.5,56.5 parent: 2 type: Transform - - uid: 21143 + - uid: 21248 components: - pos: -4.5,-82.5 parent: 2 type: Transform - - uid: 21144 + - uid: 21249 components: - pos: -8.5,-82.5 parent: 2 type: Transform - - uid: 21145 + - uid: 21250 components: - pos: 58.5,-30.5 parent: 2 type: Transform - - uid: 21146 + - uid: 21251 components: - pos: 53.5,-28.5 parent: 2 type: Transform - - uid: 21147 + - uid: 21252 components: - pos: 46.5,-63.5 parent: 2 type: Transform - - uid: 21148 + - uid: 21253 components: - pos: 44.5,-8.5 parent: 2 type: Transform + - uid: 21254 + components: + - pos: 5.5,-13.5 + parent: 2 + type: Transform - proto: MaintenanceWeaponSpawner entities: - - uid: 21149 + - uid: 21255 components: - rot: 3.141592653589793 rad pos: 55.5,60.5 parent: 2 type: Transform - - uid: 21150 + - uid: 21256 components: - pos: -49.5,-74.5 parent: 2 type: Transform - - uid: 21151 + - uid: 21257 components: - pos: -52.5,-86.5 parent: 2 type: Transform - - uid: 21152 + - uid: 21258 components: - pos: -52.5,-88.5 parent: 2 type: Transform - - uid: 21153 + - uid: 21259 components: - pos: 35.5,-12.5 parent: 2 type: Transform - - uid: 21154 + - uid: 21260 components: - pos: -29.5,-28.5 parent: 2 type: Transform - - uid: 21155 + - uid: 21261 components: - pos: -12.5,17.5 parent: 2 type: Transform - - uid: 21156 - components: - - pos: 18.5,-27.5 - parent: 2 - type: Transform - - uid: 21157 + - uid: 21262 components: - pos: 51.5,45.5 parent: 2 type: Transform - - uid: 21158 + - uid: 21263 components: - pos: 43.5,37.5 parent: 2 type: Transform - - uid: 21159 + - uid: 21264 components: - pos: -6.5,-88.5 parent: 2 type: Transform - - uid: 21160 + - uid: 21265 components: - rot: 3.141592653589793 rad pos: 49.5,-66.5 parent: 2 type: Transform - - uid: 21161 + - uid: 21266 components: - rot: 3.141592653589793 rad pos: 66.5,-61.5 parent: 2 type: Transform - - uid: 21162 + - uid: 21267 components: - pos: -48.5,16.5 parent: 2 type: Transform - - uid: 21163 + - uid: 21268 components: - pos: -28.5,-5.5 parent: 2 type: Transform - - uid: 21164 + - uid: 21269 components: - pos: 42.5,-7.5 parent: 2 type: Transform - proto: Matchbox entities: - - uid: 21165 + - uid: 21270 components: - pos: 61.092392,-1.3427626 parent: 2 type: Transform - - uid: 21166 + - uid: 21271 components: - pos: -38.035473,16.606607 parent: 2 type: Transform - proto: MaterialCloth entities: - - uid: 1971 + - uid: 21272 components: - - pos: 0.42819965,-7.3874526 + - pos: 2.4694777,-7.332773 parent: 2 type: Transform - - uid: 19864 + - uid: 21273 + components: + - pos: 2.5319777,-7.395273 + parent: 2 + type: Transform + - uid: 21274 components: - - pos: 0.36569965,-7.2624526 + - pos: 2.4851027,-7.379648 parent: 2 type: Transform - proto: MaterialDiamond1 entities: - - uid: 21169 + - uid: 21275 components: - pos: 59.45189,-51.928257 parent: 2 type: Transform - proto: MaterialDurathread entities: - - uid: 21605 + - uid: 21276 components: - - pos: 0.67819965,-7.6374526 + - pos: 2.6569777,-7.614023 parent: 2 type: Transform - proto: MaterialReclaimer entities: - - uid: 21172 + - uid: 21277 components: - pos: -39.5,18.5 parent: 2 type: Transform - proto: MaterialWoodPlank entities: - - uid: 21173 + - uid: 21278 components: - rot: 3.141592653589793 rad pos: 38.425755,46.464603 parent: 2 type: Transform - - uid: 21174 + - uid: 21279 components: - pos: -32.447933,-98.42257 parent: 2 type: Transform - proto: MaterialWoodPlank1 entities: - - uid: 21175 + - uid: 21280 components: - pos: 50.46261,24.730665 parent: 2 type: Transform - - uid: 21176 + - uid: 21281 components: - pos: 17.500986,29.51836 parent: 2 type: Transform - proto: MedicalBed entities: - - uid: 21177 + - uid: 21282 components: - pos: 44.5,5.5 parent: 2 type: Transform - - uid: 21178 + - uid: 21283 components: - pos: -9.5,-57.5 parent: 2 type: Transform - - uid: 21179 + - uid: 21284 components: - pos: -12.5,-57.5 parent: 2 type: Transform - - uid: 21180 + - uid: 21285 components: - pos: -3.5,-57.5 parent: 2 type: Transform - - uid: 21181 + - uid: 21286 components: - pos: -0.5,-57.5 parent: 2 type: Transform - - uid: 21182 + - uid: 21287 components: - pos: -21.5,-54.5 parent: 2 type: Transform - - uid: 21183 + - uid: 21288 components: - pos: 44.5,4.5 parent: 2 type: Transform - - uid: 21184 + - uid: 21289 components: - pos: -6.5,-57.5 parent: 2 type: Transform - - uid: 21185 + - uid: 21290 components: - pos: 6.5,-56.5 parent: 2 type: Transform - proto: MedicalTechFab entities: - - uid: 21186 + - uid: 21291 components: - pos: -16.5,-48.5 parent: 2 type: Transform -- proto: MedkitAdvancedFilled - entities: - - uid: 10095 - components: - - rot: -1.5707963267948966 rad - pos: 29.406387,-38.287434 - parent: 2 - type: Transform - proto: MedkitBruteFilled entities: - - uid: 21187 + - uid: 21292 components: - pos: 45.394405,8.60885 parent: 2 type: Transform - - uid: 21188 + - uid: 21293 components: - pos: 19.413246,-20.453436 parent: 2 type: Transform - - uid: 21189 + - uid: 21294 components: - pos: 9.446222,-62.560196 parent: 2 type: Transform - - uid: 21190 + - uid: 21295 components: - pos: 29.573622,4.6594224 parent: 2 type: Transform - - uid: 21191 + - uid: 21296 components: - pos: 9.774347,-62.35707 parent: 2 type: Transform - - uid: 21192 + - uid: 21297 components: - pos: 55.59084,42.504738 parent: 2 type: Transform - proto: MedkitBurnFilled entities: - - uid: 21193 + - uid: 21298 components: - pos: 9.368097,-58.216446 parent: 2 type: Transform - - uid: 21194 + - uid: 21299 components: - pos: 9.633722,-58.372696 parent: 2 type: Transform - - uid: 21195 + - uid: 21300 components: - pos: 18.55885,-21.682238 parent: 2 type: Transform - proto: MedkitCombatFilled entities: - - uid: 24382 + - uid: 21301 components: - pos: -22.488134,-54.362434 parent: 2 type: Transform - proto: MedkitFilled entities: - - uid: 21197 + - uid: 21302 components: - pos: 18.506996,-21.230959 parent: 2 type: Transform - - uid: 21198 + - uid: 21303 components: - pos: 24.82079,23.494219 parent: 2 type: Transform - - uid: 21199 + - uid: 21304 components: - pos: 52.41982,-43.535877 parent: 2 type: Transform - proto: MedkitOxygenFilled entities: - - uid: 21200 + - uid: 21305 components: - pos: 10.352472,-61.403946 parent: 2 type: Transform - - uid: 21201 + - uid: 21306 components: - pos: 10.649347,-61.57582 parent: 2 type: Transform - - uid: 21202 + - uid: 21307 components: - pos: 18.533411,-22.207966 parent: 2 type: Transform - - uid: 21203 + - uid: 21308 components: - pos: -23.768847,-36.553474 parent: 2 type: Transform - - uid: 21204 + - uid: 21309 components: - pos: 59.446957,-3.3832169 parent: 2 type: Transform - - uid: 21205 + - uid: 21310 components: - pos: 65.55114,-6.3846307 parent: 2 type: Transform - - uid: 21206 + - uid: 21311 components: - pos: -34.54821,20.589455 parent: 2 type: Transform - - uid: 21207 + - uid: 21312 components: - pos: 64.63776,28.514448 parent: 2 type: Transform - - uid: 21208 + - uid: 21313 components: - pos: -70.47538,-28.482313 parent: 2 type: Transform - proto: MedkitRadiationFilled entities: - - uid: 21209 + - uid: 21314 components: - pos: 10.352472,-60.278946 parent: 2 type: Transform - - uid: 21210 + - uid: 21315 components: - pos: 10.649347,-60.466446 parent: 2 type: Transform - - uid: 21211 + - uid: 21316 components: - pos: -62.43085,-27.543978 parent: 2 type: Transform - proto: MedkitToxinFilled entities: - - uid: 21212 + - uid: 21317 components: - pos: 10.350285,-59.237457 parent: 2 type: Transform - - uid: 21213 + - uid: 21318 components: - pos: 10.649347,-59.372696 parent: 2 type: Transform - proto: MicroManipulatorStockPart entities: - - uid: 21214 + - uid: 21319 components: - pos: 57.42882,-47.52101 parent: 2 type: Transform - proto: MicrowaveMachineCircuitboard entities: - - uid: 21215 + - uid: 21320 components: - pos: 41.53089,-54.195484 parent: 2 type: Transform - proto: Mirror entities: - - uid: 1883 + - uid: 21321 components: - rot: -1.5707963267948966 rad pos: -32.5,-3.5 parent: 2 type: Transform - - uid: 15929 + - uid: 21322 components: - rot: -1.5707963267948966 rad pos: -32.5,-2.5 @@ -145879,14 +147004,14 @@ entities: type: Transform - proto: ModularGrenade entities: - - uid: 21216 + - uid: 21323 components: - pos: 65.475975,-29.06539 parent: 2 type: Transform - proto: MonkeyCube entities: - - uid: 21217 + - uid: 21324 components: - rot: -1.5707963267948966 rad pos: -10.530531,-95.43873 @@ -145894,93 +147019,93 @@ entities: type: Transform - proto: MonkeyCubeBox entities: - - uid: 21218 + - uid: 21325 components: - pos: -24.421421,-84.24069 parent: 2 type: Transform - proto: MonkeyCubeWrapped entities: - - uid: 21220 + - uid: 21326 components: - pos: 73.2274,-38.215343 parent: 2 type: Transform - - uid: 21221 + - uid: 21327 components: - pos: 73.19615,-38.35597 parent: 2 type: Transform - - uid: 21222 + - uid: 21328 components: - pos: -6.631571,49.76703 parent: 2 type: Transform - - uid: 21223 + - uid: 21329 components: - pos: -6.787821,49.64203 parent: 2 type: Transform - proto: MoonBattlemap entities: - - uid: 21224 + - uid: 21330 components: - pos: 10.548178,-6.825127 parent: 2 type: Transform - proto: MopBucket entities: - - uid: 21225 + - uid: 21331 components: - pos: -9.522026,-69.41262 parent: 2 type: Transform - - uid: 21226 + - uid: 21332 components: - pos: -7.441774,-23.373123 parent: 2 type: Transform - - uid: 21227 + - uid: 21333 components: - pos: 52.057404,15.557394 parent: 2 type: Transform - - uid: 21228 + - uid: 21334 components: - pos: 15.4907,31.562498 parent: 2 type: Transform - - uid: 21229 + - uid: 21335 components: - pos: -8.510638,-21.457159 parent: 2 type: Transform - proto: MopItem entities: - - uid: 21230 + - uid: 21336 components: - rot: -1.5707963267948966 rad pos: -9.459526,-68.63137 parent: 2 type: Transform - - uid: 21231 + - uid: 21337 components: - pos: -13.596031,-22.66943 parent: 2 type: Transform - - uid: 21232 + - uid: 21338 components: - pos: -13.473024,-22.732498 parent: 2 type: Transform - - uid: 21233 + - uid: 21339 components: - pos: 51.744904,15.651144 parent: 2 type: Transform - proto: Morgue entities: - - uid: 21234 + - uid: 21340 components: - rot: -1.5707963267948966 rad pos: -11.5,-65.5 @@ -146004,7 +147129,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21235 + - uid: 21341 components: - rot: -1.5707963267948966 rad pos: -11.5,-64.5 @@ -146028,7 +147153,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21236 + - uid: 21342 components: - rot: 1.5707963267948966 rad pos: -13.5,-64.5 @@ -146052,7 +147177,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21237 + - uid: 21343 components: - rot: 1.5707963267948966 rad pos: -13.5,-65.5 @@ -146076,7 +147201,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21238 + - uid: 21344 components: - rot: 1.5707963267948966 rad pos: -13.5,-66.5 @@ -146100,7 +147225,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21239 + - uid: 21345 components: - rot: -1.5707963267948966 rad pos: -14.5,-64.5 @@ -146124,7 +147249,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21240 + - uid: 21346 components: - rot: -1.5707963267948966 rad pos: -14.5,-65.5 @@ -146148,7 +147273,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21241 + - uid: 21347 components: - rot: -1.5707963267948966 rad pos: -14.5,-66.5 @@ -146172,7 +147297,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21242 + - uid: 21348 components: - rot: -1.5707963267948966 rad pos: -11.5,-66.5 @@ -146196,7 +147321,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21243 + - uid: 21349 components: - rot: -1.5707963267948966 rad pos: -11.5,-63.5 @@ -146220,7 +147345,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21244 + - uid: 21350 components: - rot: 1.5707963267948966 rad pos: -16.5,-63.5 @@ -146244,7 +147369,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21245 + - uid: 21351 components: - rot: 1.5707963267948966 rad pos: -16.5,-64.5 @@ -146268,7 +147393,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21246 + - uid: 21352 components: - rot: 1.5707963267948966 rad pos: -16.5,-65.5 @@ -146292,7 +147417,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21247 + - uid: 21353 components: - rot: 1.5707963267948966 rad pos: -16.5,-66.5 @@ -146316,7 +147441,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21248 + - uid: 21354 components: - rot: -1.5707963267948966 rad pos: -28.5,10.5 @@ -146340,7 +147465,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21249 + - uid: 21355 components: - rot: -1.5707963267948966 rad pos: -28.5,9.5 @@ -146366,259 +147491,259 @@ entities: type: EntityStorage - proto: MouseTimedSpawner entities: - - uid: 21250 + - uid: 21356 components: - pos: -56.5,-48.5 parent: 2 type: Transform - - uid: 21251 + - uid: 21357 components: - pos: 43.5,-10.5 parent: 2 type: Transform - - uid: 21252 + - uid: 21358 components: - pos: 62.5,13.5 parent: 2 type: Transform - - uid: 21253 + - uid: 21359 components: - pos: 5.5,-70.5 parent: 2 type: Transform - proto: Multitool entities: - - uid: 21254 + - uid: 21360 components: - pos: 53.354275,-43.443607 parent: 2 type: Transform - - uid: 21255 + - uid: 21361 components: - pos: -25.14612,-19.37103 parent: 2 type: Transform - - uid: 21256 + - uid: 21362 components: - pos: -23.347115,-36.422188 parent: 2 type: Transform - - uid: 21257 + - uid: 21363 components: - rot: -1.5707963267948966 rad pos: -36.559425,-33.012554 parent: 2 type: Transform - - uid: 21258 + - uid: 21364 components: - pos: -56.47646,-35.42343 parent: 2 type: Transform - - uid: 21259 + - uid: 21365 components: - pos: -40.522213,25.653383 parent: 2 type: Transform - - uid: 21260 + - uid: 21366 components: - rot: 3.141592653589793 rad pos: -32.80296,29.595348 parent: 2 type: Transform - - uid: 21261 + - uid: 21367 components: - pos: -27.507483,24.649845 parent: 2 type: Transform - - uid: 21262 + - uid: 21368 components: - pos: 73.29074,-44.41717 parent: 2 type: Transform - - uid: 21263 + - uid: 21369 components: - pos: 58.474205,51.52541 parent: 2 type: Transform - - uid: 21264 + - uid: 21370 components: - pos: -57.653404,-25.398897 parent: 2 type: Transform - devices: - 'UID: 31532': 12404 + 'UID: 31532': 12547 type: NetworkConfigurator - - uid: 21265 + - uid: 21371 components: - pos: -9.540877,-65.36475 parent: 2 type: Transform - - uid: 21266 + - uid: 21372 components: - pos: 72.48785,36.5135 parent: 2 type: Transform - - uid: 21267 + - uid: 21373 components: - pos: -29.3818,-98.32888 parent: 2 type: Transform - devices: - 'UID: 39451': 19515 - 'UID: 39450': 19754 - 'UID: 39636': 910 + 'UID: 39451': 19620 + 'UID: 39450': 19858 + 'UID: 39636': 913 type: NetworkConfigurator - - uid: 21268 + - uid: 21374 components: - pos: 65.54721,-51.514313 parent: 2 type: Transform - - uid: 21269 + - uid: 21375 components: - pos: -28.40416,-19.522995 parent: 2 type: Transform - - uid: 21270 + - uid: 21376 components: - pos: -26.512882,-61.421627 parent: 2 type: Transform - - uid: 21271 + - uid: 21377 components: - pos: -71.37105,-28.43189 parent: 2 type: Transform - devices: - 'UID: 32940': 927 - 'UID: 32944': 14976 - 'UID: 32945': 14977 + 'UID: 32940': 930 + 'UID: 32944': 15096 + 'UID: 32945': 15097 linkModeActive: False type: NetworkConfigurator - proto: NitrogenCanister entities: - - uid: 21272 + - uid: 21378 components: - pos: -8.5,-72.5 parent: 2 type: Transform - - uid: 21273 + - uid: 21379 components: - pos: 45.5,-51.5 parent: 2 type: Transform - - uid: 21274 + - uid: 21380 components: - pos: -50.5,-54.5 parent: 2 type: Transform - - uid: 21275 + - uid: 21381 components: - pos: -39.5,-38.5 parent: 2 type: Transform - - uid: 21276 + - uid: 21382 components: - pos: -51.5,-70.5 parent: 2 type: Transform - - uid: 21277 + - uid: 21383 components: - pos: -26.5,37.5 parent: 2 type: Transform - - uid: 21278 + - uid: 21384 components: - pos: -28.5,41.5 parent: 2 type: Transform - - uid: 21279 + - uid: 21385 components: - pos: 72.5,-35.5 parent: 2 type: Transform - - uid: 21280 + - uid: 21386 components: - pos: 46.5,-51.5 parent: 2 type: Transform - - uid: 21281 + - uid: 21387 components: - pos: -22.5,-62.5 parent: 2 type: Transform - - uid: 21282 + - uid: 21388 components: - pos: 3.5,-73.5 parent: 2 type: Transform - proto: NitrogenTankFilled entities: - - uid: 21283 + - uid: 21389 components: - pos: -22.469156,-57.61924 parent: 2 type: Transform - - uid: 21284 + - uid: 21390 components: - pos: -54.344475,0.46202505 parent: 2 type: Transform - - uid: 21285 + - uid: 21391 components: - pos: -49.491314,1.5773844 parent: 2 type: Transform - - uid: 21286 + - uid: 21392 components: - pos: -70.575325,-25.445038 parent: 2 type: Transform - - uid: 21287 + - uid: 21393 components: - pos: 64.52838,29.170698 parent: 2 type: Transform - proto: NitrousOxideCanister entities: - - uid: 21288 + - uid: 21394 components: - pos: -38.5,-38.5 parent: 2 type: Transform - - uid: 21289 + - uid: 21395 components: - pos: 54.5,-55.5 parent: 2 type: Transform - - uid: 21290 + - uid: 21396 components: - pos: -76.5,-46.5 parent: 2 type: Transform - proto: NitrousOxideTank entities: - - uid: 21291 + - uid: 21397 components: - pos: -3.498691,-65.92361 parent: 2 type: Transform - proto: NitrousOxideTankFilled entities: - - uid: 21292 + - uid: 21398 components: - pos: -15.868101,-35.49305 parent: 2 type: Transform - proto: NodeScanner entities: - - uid: 21293 + - uid: 21399 components: - pos: 73.66279,-38.523205 parent: 2 type: Transform - proto: NuclearBomb entities: - - uid: 21294 + - uid: 21400 components: - rot: -1.5707963267948966 rad pos: 46.5,-22.5 @@ -146626,856 +147751,856 @@ entities: type: Transform - proto: NuclearBombKeg entities: - - uid: 21295 + - uid: 21401 components: - pos: 46.5,-29.5 parent: 2 type: Transform - proto: Ointment entities: - - uid: 21296 + - uid: 21402 components: - rot: -1.5707963267948966 rad pos: 47.628784,4.507307 parent: 2 type: Transform - - uid: 21297 + - uid: 21403 components: - pos: -12.245195,-56.394966 parent: 2 type: Transform - - uid: 21298 + - uid: 21404 components: - pos: -9.307695,-56.332466 parent: 2 type: Transform - - uid: 21299 + - uid: 21405 components: - pos: -6.2759557,-56.37934 parent: 2 type: Transform - - uid: 21300 + - uid: 21406 components: - pos: -3.256374,-56.363716 parent: 2 type: Transform - - uid: 21301 + - uid: 21407 components: - pos: -0.2810341,-56.37934 parent: 2 type: Transform - proto: OnionRedSeeds entities: - - uid: 21302 + - uid: 21408 components: - pos: -32.362232,6.029836 parent: 2 type: Transform - proto: OnionSeeds entities: - - uid: 21303 + - uid: 21409 components: - pos: -32.52041,6.4317174 parent: 2 type: Transform - proto: OperatingTable entities: - - uid: 21304 + - uid: 21410 components: - pos: -15.5,-33.5 parent: 2 type: Transform - - uid: 21305 + - uid: 21411 components: - pos: -1.5,-65.5 parent: 2 type: Transform - - uid: 21306 + - uid: 21412 components: - pos: -7.5,-97.5 parent: 2 type: Transform - - uid: 21307 + - uid: 21413 components: - pos: 71.5,-48.5 parent: 2 type: Transform - proto: OreBag entities: - - uid: 21308 + - uid: 21414 components: - pos: -41.057323,35.546143 parent: 2 type: Transform - proto: OreProcessor entities: - - uid: 21309 + - uid: 21415 components: - pos: -41.5,26.5 parent: 2 type: Transform - proto: OxygenCanister entities: - - uid: 21310 + - uid: 21416 components: - pos: -76.5,-44.5 parent: 2 type: Transform - - uid: 21311 + - uid: 21417 components: - pos: -9.5,-72.5 parent: 2 type: Transform - - uid: 21312 + - uid: 21418 components: - pos: 59.5,29.5 parent: 2 type: Transform - - uid: 21313 + - uid: 21419 components: - pos: 45.5,-52.5 parent: 2 type: Transform - - uid: 21314 + - uid: 21420 components: - pos: -25.5,-31.5 parent: 2 type: Transform - - uid: 21315 + - uid: 21421 components: - pos: -50.5,-52.5 parent: 2 type: Transform - - uid: 21316 + - uid: 21422 components: - pos: -37.5,-38.5 parent: 2 type: Transform - - uid: 21317 + - uid: 21423 components: - pos: -25.5,-55.5 parent: 2 type: Transform - - uid: 21318 + - uid: 21424 components: - pos: -34.5,-30.5 parent: 2 type: Transform - - uid: 21319 + - uid: 21425 components: - pos: -48.5,28.5 parent: 2 type: Transform - - uid: 21320 + - uid: 21426 components: - pos: -31.5,17.5 parent: 2 type: Transform - - uid: 21321 + - uid: 21427 components: - pos: -29.5,41.5 parent: 2 type: Transform - - uid: 21322 + - uid: 21428 components: - pos: 73.5,-35.5 parent: 2 type: Transform - - uid: 21323 + - uid: 21429 components: - pos: 46.5,-52.5 parent: 2 type: Transform - - uid: 21324 + - uid: 21430 components: - pos: -25.5,-62.5 parent: 2 type: Transform - - uid: 21325 + - uid: 21431 components: - pos: 4.5,-73.5 parent: 2 type: Transform - proto: OxygenTankFilled entities: - - uid: 21326 + - uid: 21432 components: - pos: -54.60223,0.49364984 parent: 2 type: Transform - - uid: 21327 + - uid: 21433 components: - pos: -22.609781,-57.353615 parent: 2 type: Transform - proto: PaintingAmogusTriptych entities: - - uid: 21328 + - uid: 21434 components: - pos: -16.5,-36.5 parent: 2 type: Transform - - uid: 21329 + - uid: 21435 components: - pos: 45.5,-12.5 parent: 2 type: Transform - proto: PaintingMonkey entities: - - uid: 21330 + - uid: 21436 components: - pos: 13.5,-9.5 parent: 2 type: Transform - proto: PaintingNightHawks entities: - - uid: 21331 + - uid: 21437 components: - pos: -9.5,-34.5 parent: 2 type: Transform - proto: PaintingSkeletonBoof entities: - - uid: 21332 + - uid: 21438 components: - pos: 9.5,-3.5 parent: 2 type: Transform - proto: PaintingSkeletonCigarette entities: - - uid: 21333 + - uid: 21439 components: - pos: -14.5,-36.5 parent: 2 type: Transform - proto: PaintingTheGreatWave entities: - - uid: 21334 + - uid: 21440 components: - pos: 30.5,-26.5 parent: 2 type: Transform - proto: PaintingTheScream entities: - - uid: 21336 + - uid: 21441 components: - pos: -7.5,-35.5 parent: 2 type: Transform - proto: PaintingTheSonOfMan entities: - - uid: 21337 + - uid: 21442 components: - pos: -25.5,16.5 parent: 2 type: Transform - proto: Paper entities: - - uid: 21349 + - uid: 21443 components: - pos: 20.483978,-12.296361 parent: 2 type: Transform - - uid: 21350 + - uid: 21444 components: - pos: 20.661783,-12.471693 parent: 2 type: Transform - - uid: 21351 + - uid: 21445 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21353 + - uid: 21446 components: - pos: 6.351438,20.675463 parent: 2 type: Transform - - uid: 21355 + - uid: 21447 components: - rot: -1.5707963267948966 rad pos: -12.583234,-18.98207 parent: 2 type: Transform - - uid: 21360 + - uid: 21448 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21361 + - uid: 21449 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21362 + - uid: 21450 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21366 + - uid: 21451 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21367 + - uid: 21452 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21368 + - uid: 21453 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21369 + - uid: 21454 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21370 + - uid: 21455 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21371 + - uid: 21456 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21372 + - uid: 21457 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21373 + - uid: 21458 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21376 + - uid: 21459 components: - rot: 3.141592653589793 rad pos: -10.57877,-37.384254 parent: 2 type: Transform - - uid: 21377 + - uid: 21460 components: - rot: 3.141592653589793 rad pos: -10.57877,-37.384254 parent: 2 type: Transform - - uid: 21378 + - uid: 21461 components: - rot: 3.141592653589793 rad pos: -10.57877,-37.384254 parent: 2 type: Transform - - uid: 21379 + - uid: 21462 components: - rot: 3.141592653589793 rad pos: -10.57877,-37.384254 parent: 2 type: Transform - - uid: 21380 + - uid: 21463 components: - rot: 3.141592653589793 rad pos: -10.57877,-37.384254 parent: 2 type: Transform - - uid: 21381 + - uid: 21464 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21382 + - uid: 21465 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21383 + - uid: 21466 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21384 + - uid: 21467 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21385 + - uid: 21468 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21386 + - uid: 21469 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21387 + - uid: 21470 components: - rot: 3.141592653589793 rad pos: 16.421602,22.571196 parent: 2 type: Transform - - uid: 21388 + - uid: 21471 components: - rot: 3.141592653589793 rad pos: 16.515352,22.55557 parent: 2 type: Transform - - uid: 21389 + - uid: 21472 components: - rot: 3.141592653589793 rad pos: 16.499727,22.571196 parent: 2 type: Transform - - uid: 21390 + - uid: 21473 components: - rot: 3.141592653589793 rad pos: 16.499727,22.571196 parent: 2 type: Transform - - uid: 21391 + - uid: 21474 components: - rot: 3.141592653589793 rad pos: 16.499727,22.571196 parent: 2 type: Transform - - uid: 21392 + - uid: 21475 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21393 + - uid: 21476 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21394 + - uid: 21477 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21395 + - uid: 21478 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21396 + - uid: 21479 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21397 + - uid: 21480 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21398 + - uid: 21481 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21399 + - uid: 21482 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21400 + - uid: 21483 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21401 + - uid: 21484 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21402 + - uid: 21485 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21403 + - uid: 21486 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21404 + - uid: 21487 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21405 + - uid: 21488 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21406 + - uid: 21489 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21407 + - uid: 21490 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21408 + - uid: 21491 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21409 + - uid: 21492 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21410 + - uid: 21493 components: - rot: 1.5707963267948966 rad pos: 37.488216,-3.5194297 parent: 2 type: Transform - - uid: 21411 + - uid: 21494 components: - rot: 1.5707963267948966 rad pos: 37.488216,-3.5194297 parent: 2 type: Transform - - uid: 21412 + - uid: 21495 components: - rot: 1.5707963267948966 rad pos: 37.488216,-3.5194297 parent: 2 type: Transform - - uid: 21413 + - uid: 21496 components: - rot: 1.5707963267948966 rad pos: 37.488216,-3.5194297 parent: 2 type: Transform - - uid: 21414 + - uid: 21497 components: - rot: 1.5707963267948966 rad pos: 37.59759,-3.6288047 parent: 2 type: Transform - - uid: 21415 + - uid: 21498 components: - rot: 1.5707963267948966 rad pos: 37.59759,-3.6288047 parent: 2 type: Transform - - uid: 21416 + - uid: 21499 components: - rot: 1.5707963267948966 rad pos: 37.550716,-3.6131797 parent: 2 type: Transform - - uid: 21417 + - uid: 21500 components: - rot: 1.5707963267948966 rad pos: 37.550716,-3.6131797 parent: 2 type: Transform - - uid: 21418 + - uid: 21501 components: - rot: 1.5707963267948966 rad pos: 37.56634,-3.6131797 parent: 2 type: Transform - - uid: 21419 + - uid: 21502 components: - rot: 1.5707963267948966 rad pos: 37.59759,-3.6288047 parent: 2 type: Transform - - uid: 21420 + - uid: 21503 components: - rot: 1.5707963267948966 rad pos: 37.59759,-3.6288047 parent: 2 type: Transform - - uid: 21421 + - uid: 21504 components: - rot: 1.5707963267948966 rad pos: 37.59759,-3.6288047 parent: 2 type: Transform - - uid: 21422 + - uid: 21505 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21423 + - uid: 21506 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21424 + - uid: 21507 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21425 + - uid: 21508 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21426 + - uid: 21509 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21427 + - uid: 21510 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21428 + - uid: 21511 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21429 + - uid: 21512 components: - rot: 1.5707963267948966 rad pos: 51.483532,-41.966263 parent: 2 type: Transform - - uid: 21430 + - uid: 21513 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21431 + - uid: 21514 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21432 + - uid: 21515 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21433 + - uid: 21516 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21434 + - uid: 21517 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21435 + - uid: 21518 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21436 + - uid: 21519 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21437 + - uid: 21520 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21438 + - uid: 21521 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21439 + - uid: 21522 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21440 + - uid: 21523 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21441 + - uid: 21524 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21442 + - uid: 21525 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21443 + - uid: 21526 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21444 + - uid: 21527 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21445 + - uid: 21528 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21446 + - uid: 21529 components: - rot: -1.5707963267948966 rad pos: -35.467735,-16.567335 parent: 2 type: Transform - - uid: 21447 + - uid: 21530 components: - rot: -1.5707963267948966 rad pos: -35.467735,-16.567335 parent: 2 type: Transform - - uid: 21448 + - uid: 21531 components: - rot: -1.5707963267948966 rad pos: -35.467735,-16.567335 parent: 2 type: Transform - - uid: 21449 + - uid: 21532 components: - rot: -1.5707963267948966 rad pos: -35.467735,-16.567335 parent: 2 type: Transform - - uid: 21450 + - uid: 21533 components: - pos: 1.3868889,23.62748 parent: 2 type: Transform - - uid: 21451 + - uid: 21534 components: - pos: 1.3868889,23.643105 parent: 2 type: Transform - - uid: 21452 + - uid: 21535 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21453 + - uid: 21536 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21454 + - uid: 21537 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21455 + - uid: 21538 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21456 + - uid: 21539 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21457 + - uid: 21540 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21458 + - uid: 21541 components: - pos: -31.206972,15.691786 parent: 2 type: Transform - - uid: 21459 + - uid: 21542 components: - pos: -31.206972,15.691786 parent: 2 type: Transform - - uid: 21460 + - uid: 21543 components: - pos: -31.363222,15.551161 parent: 2 type: Transform - - uid: 21461 + - uid: 21544 components: - pos: -31.363222,15.551161 parent: 2 type: Transform - - uid: 21462 + - uid: 21545 components: - pos: 10.165828,-6.3936543 parent: 2 type: Transform - - uid: 21463 + - uid: 21546 components: - pos: 10.165828,-6.3936543 parent: 2 type: Transform - - uid: 21464 + - uid: 21547 components: - - pos: 10.165828,-6.3936543 + - pos: 9.367039,-7.0613875 parent: 2 type: Transform - - uid: 21465 + - uid: 21548 components: - pos: -11.489469,-13.479897 parent: 2 @@ -147485,7 +148610,7 @@ entities: Anything suspicious, please inform security. type: Paper - - uid: 21466 + - uid: 21549 components: - pos: -42.540462,17.447073 parent: 2 @@ -147495,53 +148620,53 @@ entities: type: Paper - proto: PaperBin10 entities: - - uid: 21467 + - uid: 21550 components: - rot: -1.5707963267948966 rad pos: 22.5,-21.5 parent: 2 type: Transform - - uid: 21468 + - uid: 21551 components: - pos: -22.48288,-97.58025 parent: 2 type: Transform - proto: PaperBin5 entities: - - uid: 21469 + - uid: 21552 components: - pos: -19.490406,-56.387535 parent: 2 type: Transform - - uid: 21470 + - uid: 21553 components: - pos: -34.544167,24.426237 parent: 2 type: Transform - - uid: 21472 + - uid: 21554 components: - rot: 3.141592653589793 rad pos: -25.63709,-36.050198 parent: 2 type: Transform - - uid: 21473 + - uid: 21555 components: - pos: -27.800707,-9.411719 parent: 2 type: Transform - - uid: 21474 + - uid: 21556 components: - pos: 39.827625,-39.412262 parent: 2 type: Transform - - uid: 21475 + - uid: 21557 components: - pos: -17.5,-61.5 parent: 2 type: Transform - proto: PaperCaptainsThoughts entities: - - uid: 21476 + - uid: 21558 components: - rot: 1.5707963267948966 rad pos: 30.690884,-28.507551 @@ -147549,21 +148674,21 @@ entities: type: Transform - proto: PaperRolling entities: - - uid: 21477 + - uid: 21559 components: - pos: 51.67759,57.788548 parent: 2 type: Transform - proto: ParticleAcceleratorControlBoxUnfinished entities: - - uid: 21478 + - uid: 21560 components: - pos: -66.5,-30.5 parent: 2 type: Transform - proto: ParticleAcceleratorEmitterForeUnfinished entities: - - uid: 21479 + - uid: 21561 components: - rot: 3.141592653589793 rad pos: -66.5,-24.5 @@ -147571,15 +148696,15 @@ entities: type: Transform - proto: ParticleAcceleratorEmitterPortUnfinished entities: - - uid: 21480 + - uid: 21562 components: - rot: 3.141592653589793 rad pos: -67.5,-24.5 parent: 2 type: Transform -- proto: ParticleAcceleratorEmitterStarboardUnfinished +- proto: ParticleAcceleratorEmitterStarboard entities: - - uid: 21481 + - uid: 21563 components: - rot: 3.141592653589793 rad pos: -65.5,-24.5 @@ -147587,7 +148712,7 @@ entities: type: Transform - proto: ParticleAcceleratorEndCapUnfinished entities: - - uid: 21482 + - uid: 21564 components: - rot: 3.141592653589793 rad pos: -66.5,-27.5 @@ -147595,7 +148720,7 @@ entities: type: Transform - proto: ParticleAcceleratorFuelChamberUnfinished entities: - - uid: 21483 + - uid: 21565 components: - rot: 3.141592653589793 rad pos: -65.5,-26.5 @@ -147603,7 +148728,7 @@ entities: type: Transform - proto: ParticleAcceleratorPowerBoxUnfinished entities: - - uid: 21484 + - uid: 21566 components: - rot: 3.141592653589793 rad pos: -66.5,-25.5 @@ -147611,40 +148736,40 @@ entities: type: Transform - proto: PartRodMetal entities: - - uid: 21485 + - uid: 21567 components: - pos: -40.15428,-18.425268 parent: 2 type: Transform - - uid: 21486 + - uid: 21568 components: - pos: -39.68701,25.670773 parent: 2 type: Transform - - uid: 21487 + - uid: 21569 components: - pos: -40.541622,33.38082 parent: 2 type: Transform - - uid: 21488 + - uid: 21570 components: - pos: -47.52058,40.270145 parent: 2 type: Transform - proto: PartRodMetal1 entities: - - uid: 21489 + - uid: 21571 components: - pos: -34.56476,-25.498856 parent: 2 type: Transform - - uid: 21490 + - uid: 21572 components: - rot: -1.5707963267948966 rad pos: 3.9014397,49.543682 parent: 2 type: Transform - - uid: 21491 + - uid: 21573 components: - rot: 3.141592653589793 rad pos: 1.4099668,48.504288 @@ -147652,76 +148777,82 @@ entities: type: Transform - proto: Pen entities: - - uid: 21493 + - uid: 21574 components: - rot: -1.5707963267948966 rad pos: -4.7918606,-48.471176 parent: 2 type: Transform - - uid: 21494 + - uid: 21575 components: - rot: 3.141592653589793 rad pos: -10.781895,-37.52488 parent: 2 type: Transform - - uid: 21495 + - uid: 21576 components: - rot: 3.141592653589793 rad pos: 16.218477,22.61807 parent: 2 type: Transform - - uid: 21496 + - uid: 21577 components: - pos: 16.327852,21.55557 parent: 2 type: Transform - - uid: 21497 + - uid: 21578 components: - pos: 43.66009,-3.5506787 parent: 2 type: Transform - - uid: 21498 + - uid: 21579 components: - pos: 37.66009,-3.7069297 parent: 2 type: Transform - - uid: 21499 + - uid: 21580 components: - rot: -1.5707963267948966 rad pos: -35.775307,-16.265104 parent: 2 type: Transform + - uid: 21581 + components: + - rot: 1.5707963267948966 rad + pos: 3.6684875,-10.184602 + parent: 2 + type: Transform - proto: PersonalAI entities: - - uid: 21500 + - uid: 21582 components: - flags: SessionSpecific type: MetaData - pos: 26.517971,-21.50738 parent: 2 type: Transform - - uid: 21501 + - uid: 21583 components: - flags: SessionSpecific type: MetaData - pos: 11.402888,8.363556 parent: 2 type: Transform - - uid: 21502 + - uid: 21584 components: - flags: SessionSpecific type: MetaData - pos: 12.500859,-4.4425125 parent: 2 type: Transform - - uid: 21503 + - uid: 21585 components: - flags: SessionSpecific type: MetaData - pos: 56.49031,-41.437515 parent: 2 type: Transform - - uid: 21504 + - uid: 21586 components: - flags: SessionSpecific type: MetaData @@ -147730,14 +148861,14 @@ entities: type: Transform - proto: PhoneInstrument entities: - - uid: 21505 + - uid: 21587 components: - pos: 60.321476,-1.3655583 parent: 2 type: Transform - proto: PianoInstrument entities: - - uid: 21506 + - uid: 21588 components: - rot: -1.5707963267948966 rad pos: 8.5,0.5 @@ -147745,224 +148876,229 @@ entities: type: Transform - proto: Pickaxe entities: - - uid: 21507 + - uid: 21589 components: - pos: -38.26402,27.606245 parent: 2 type: Transform - - uid: 21508 + - uid: 21590 components: - pos: -38.54527,27.71562 parent: 2 type: Transform - - uid: 21509 + - uid: 21591 components: - pos: -47.972298,26.558094 parent: 2 type: Transform - - uid: 21510 + - uid: 21592 components: - pos: 68.4767,50.00708 parent: 2 type: Transform - - uid: 21511 + - uid: 21593 components: - pos: 20.350138,46.202785 parent: 2 type: Transform - - uid: 21512 + - uid: 21594 components: - pos: -47.48462,39.252865 parent: 2 type: Transform - proto: PillCanister entities: - - uid: 21513 + - uid: 21595 components: - pos: -10.04752,-37.290504 parent: 2 type: Transform - proto: PillDexalin entities: - - uid: 21514 + - uid: 21596 components: - pos: -10.034681,-32.27196 parent: 2 type: Transform - - uid: 21515 + - uid: 21597 components: - pos: -10.034681,-32.27196 parent: 2 type: Transform - - uid: 21516 + - uid: 21598 components: - pos: -10.019056,-32.27196 parent: 2 type: Transform - - uid: 21517 + - uid: 21599 components: - pos: -10.019056,-32.27196 parent: 2 type: Transform - proto: PillDylovene entities: - - uid: 21518 + - uid: 21600 components: - pos: -9.519056,-32.52196 parent: 2 type: Transform - - uid: 21519 + - uid: 21601 components: - pos: -9.519056,-32.52196 parent: 2 type: Transform - - uid: 21520 + - uid: 21602 components: - pos: -9.503431,-32.52196 parent: 2 type: Transform - - uid: 21521 + - uid: 21603 components: - pos: -9.487806,-32.537586 parent: 2 type: Transform - proto: PillHyronalin entities: - - uid: 21522 + - uid: 21604 components: - pos: -9.534681,-32.256336 parent: 2 type: Transform - - uid: 21523 + - uid: 21605 components: - pos: -9.534681,-32.256336 parent: 2 type: Transform - - uid: 21524 + - uid: 21606 components: - pos: -9.534681,-32.256336 parent: 2 type: Transform - - uid: 21525 + - uid: 21607 components: - pos: -9.534681,-32.256336 parent: 2 type: Transform - proto: PillIron entities: - - uid: 21526 + - uid: 21608 components: - pos: -9.034681,-32.506336 parent: 2 type: Transform - - uid: 21527 + - uid: 21609 components: - pos: -9.034681,-32.506336 parent: 2 type: Transform - - uid: 21528 + - uid: 21610 components: - pos: -9.034681,-32.506336 parent: 2 type: Transform - - uid: 21529 + - uid: 21611 components: - pos: -9.034681,-32.506336 parent: 2 type: Transform - proto: PillKelotane entities: - - uid: 21530 + - uid: 21612 components: - pos: -9.034681,-32.24071 parent: 2 type: Transform - - uid: 21531 + - uid: 21613 components: - pos: -9.034681,-32.24071 parent: 2 type: Transform - - uid: 21532 + - uid: 21614 components: - pos: -9.034681,-32.24071 parent: 2 type: Transform - - uid: 21533 + - uid: 21615 components: - pos: -9.034681,-32.24071 parent: 2 type: Transform - proto: PillSpaceDrugs entities: - - uid: 21534 + - uid: 21616 components: - pos: -8.5,-32.5 parent: 2 type: Transform - - uid: 21535 + - uid: 21617 components: - pos: -8.5,-32.5 parent: 2 type: Transform - - uid: 21536 + - uid: 21618 components: - pos: -8.5,-32.5 parent: 2 type: Transform - - uid: 21537 + - uid: 21619 components: - pos: -8.5,-32.5 parent: 2 type: Transform - proto: PillTricordrazine entities: - - uid: 21538 + - uid: 21620 components: - pos: -8.519056,-32.256336 parent: 2 type: Transform - - uid: 21539 + - uid: 21621 components: - pos: -8.503431,-32.256336 parent: 2 type: Transform - - uid: 21540 + - uid: 21622 components: - pos: -8.519056,-32.256336 parent: 2 type: Transform - - uid: 21541 + - uid: 21623 components: - pos: -8.519056,-32.256336 parent: 2 type: Transform - proto: PinpointerNuclear entities: - - uid: 21542 + - uid: 21624 components: - pos: 47.542713,-21.502851 parent: 2 type: Transform - proto: PlasmaCanister entities: - - uid: 21543 + - uid: 9862 + components: + - pos: 55.5,-55.5 + parent: 2 + type: Transform + - uid: 21625 components: - pos: -40.5,-39.5 parent: 2 type: Transform - - uid: 21544 + - uid: 21626 components: - pos: -50.5,-46.5 parent: 2 type: Transform - - uid: 21545 + - uid: 21627 components: - pos: -75.5,-44.5 parent: 2 type: Transform - proto: PlasmaOre1 entities: - - uid: 21546 + - uid: 21628 components: - rot: 3.141592653589793 rad pos: 13.8918705,48.240677 @@ -147970,47 +149106,47 @@ entities: type: Transform - proto: PlasticFlapsAirtightClear entities: - - uid: 21547 + - uid: 21629 components: - pos: -49.5,19.5 parent: 2 type: Transform - - uid: 21548 + - uid: 21630 components: - pos: -49.5,23.5 parent: 2 type: Transform - - uid: 21549 + - uid: 21631 components: - pos: -49.5,30.5 parent: 2 type: Transform - - uid: 21550 + - uid: 21632 components: - pos: -49.5,34.5 parent: 2 type: Transform - - uid: 21551 + - uid: 21633 components: - pos: -52.5,34.5 parent: 2 type: Transform - - uid: 21552 + - uid: 21634 components: - pos: -52.5,30.5 parent: 2 type: Transform - - uid: 21553 + - uid: 21635 components: - pos: -53.5,23.5 parent: 2 type: Transform - - uid: 21554 + - uid: 21636 components: - pos: -53.5,19.5 parent: 2 type: Transform - - uid: 21555 + - uid: 21637 components: - rot: -1.5707963267948966 rad pos: 18.5,-56.5 @@ -148018,12 +149154,12 @@ entities: type: Transform - proto: PlasticFlapsAirtightOpaque entities: - - uid: 21556 + - uid: 21638 components: - pos: -35.5,25.5 parent: 2 type: Transform - - uid: 21557 + - uid: 21639 components: - rot: -1.5707963267948966 rad pos: -37.5,-99.5 @@ -148031,35 +149167,35 @@ entities: type: Transform - proto: PlasticFlapsClear entities: - - uid: 21558 + - uid: 21640 components: - pos: -26.5,25.5 parent: 2 type: Transform - - uid: 21559 + - uid: 21641 components: - pos: -29.5,25.5 parent: 2 type: Transform - - uid: 21560 + - uid: 21642 components: - rot: -1.5707963267948966 rad pos: -47.5,13.5 parent: 2 type: Transform - - uid: 21561 + - uid: 21643 components: - rot: 1.5707963267948966 rad pos: -42.5,16.5 parent: 2 type: Transform - - uid: 21562 + - uid: 21644 components: - rot: -1.5707963267948966 rad pos: -11.5,-11.5 parent: 2 type: Transform - - uid: 21563 + - uid: 21645 components: - rot: 1.5707963267948966 rad pos: -16.5,9.5 @@ -148067,29 +149203,29 @@ entities: type: Transform - proto: PlasticFlapsOpaque entities: - - uid: 21564 + - uid: 21646 components: - pos: -11.5,27.5 parent: 2 type: Transform - - uid: 21565 + - uid: 21647 components: - rot: -1.5707963267948966 rad pos: -9.5,25.5 parent: 2 type: Transform - - uid: 21566 + - uid: 21648 components: - pos: -7.5,22.5 parent: 2 type: Transform - - uid: 21567 + - uid: 21649 components: - rot: 3.141592653589793 rad pos: 44.5,37.5 parent: 2 type: Transform - - uid: 21568 + - uid: 21650 components: - rot: 1.5707963267948966 rad pos: 48.5,37.5 @@ -148097,119 +149233,114 @@ entities: type: Transform - proto: PlushieAtmosian entities: - - uid: 21569 + - uid: 21651 components: - pos: -22.54358,-34.49993 parent: 2 type: Transform - proto: PlushieBee entities: - - uid: 21570 + - uid: 21652 components: - pos: 10.893783,54.42024 parent: 2 type: Transform - - uid: 21571 + - uid: 21653 components: - pos: 8.284408,54.20149 parent: 2 type: Transform - - uid: 21572 + - uid: 21654 components: - pos: -7.8529105,54.918877 parent: 2 type: Transform - - uid: 21573 + - uid: 21655 components: - pos: -6.6029105,50.731377 parent: 2 type: Transform - proto: PlushieCarp entities: - - uid: 21574 + - uid: 21656 components: - pos: -38.3623,28.544445 parent: 2 type: Transform - proto: PlushieDiona entities: - - uid: 21575 + - uid: 21657 components: - pos: 17.550053,-79.57761 parent: 2 type: Transform - proto: PlushieHampter entities: - - uid: 21576 + - uid: 21658 components: - pos: -46.5,-30.5 parent: 2 type: Transform - - uid: 21577 + - uid: 21659 components: - pos: 2.519814,7.511129 parent: 2 type: Transform - proto: PlushieLizard entities: - - uid: 21578 + - uid: 21660 components: - pos: 61.496056,-69.34596 parent: 2 type: Transform - - uid: 24582 - components: - - pos: 26.571735,-36.529423 - parent: 2 - type: Transform - proto: PlushieNar entities: - - uid: 21579 + - uid: 21661 components: - pos: 44.413727,31.423994 parent: 2 type: Transform - proto: PlushieNuke entities: - - uid: 21580 + - uid: 21662 components: - pos: -14.485033,-78.68338 parent: 2 type: Transform - - uid: 21581 + - uid: 21663 components: - pos: 54.50363,58.48181 parent: 2 type: Transform - proto: PlushieRatvar entities: - - uid: 21582 + - uid: 21664 components: - pos: 22.555937,-28.535349 parent: 2 type: Transform - proto: PlushieRGBee entities: - - uid: 24208 + - uid: 21665 components: - pos: 56.511868,-8.541915 parent: 2 type: Transform - proto: PlushieSharkGrey entities: - - uid: 21583 + - uid: 21666 components: - pos: -56.49192,-87.62071 parent: 2 type: Transform - proto: PlushieSharkPink entities: - - uid: 21584 + - uid: 21667 components: - pos: -44.508965,16.421295 parent: 2 type: Transform - - uid: 21585 + - uid: 21668 components: - desc: It eerily feels... cute? name: Cult shark plushie @@ -148223,141 +149354,204 @@ entities: type: PointLight - proto: PlushieSlime entities: - - uid: 21586 + - uid: 21669 components: - pos: 44.49185,33.486496 parent: 2 type: Transform - proto: PlushieSnake entities: - - uid: 21587 + - uid: 21670 components: - pos: 43.507477,33.486496 parent: 2 type: Transform - - uid: 21588 + - uid: 21671 components: - pos: -55.49481,-49.261024 parent: 2 type: Transform - proto: PlushieSpaceLizard entities: - - uid: 21589 + - uid: 21672 components: - pos: -44.46209,15.43692 parent: 2 type: Transform - - uid: 21590 + - uid: 21673 components: - pos: 42.55435,33.392746 parent: 2 type: Transform +- proto: PlushieVox + entities: + - uid: 21674 + components: + - pos: 32.421734,-47.539772 + parent: 2 + type: Transform - proto: PortableFlasher entities: - - uid: 21591 + - uid: 21675 components: - pos: 32.5,31.5 parent: 2 type: Transform +- proto: PortableGeneratorJrPacman + entities: + - uid: 31180 + components: + - pos: -30.5,-61.5 + parent: 2 + type: Transform + - uid: 31181 + components: + - pos: 15.5,-72.5 + parent: 2 + type: Transform + - uid: 31182 + components: + - pos: -54.5,-30.5 + parent: 2 + type: Transform + - uid: 31183 + components: + - pos: 30.5,44.5 + parent: 2 + type: Transform +- proto: PortableGeneratorPacman + entities: + - uid: 19891 + components: + - pos: -58.5,-86.5 + parent: 2 + type: Transform + - uid: 19892 + components: + - pos: -65.5,-51.5 + parent: 2 + type: Transform + - uid: 19894 + components: + - pos: 4.5,-22.5 + parent: 2 + type: Transform + - uid: 19895 + components: + - pos: 4.5,-23.5 + parent: 2 + type: Transform - proto: PortableScrubber entities: - - uid: 21592 + - uid: 21676 components: - pos: -9.5,-68.5 parent: 2 type: Transform - - uid: 21593 + - uid: 21677 components: - pos: -33.5,-43.5 parent: 2 type: Transform - - uid: 21594 + - uid: 21678 components: - pos: -33.5,-44.5 parent: 2 type: Transform - - uid: 21595 + - uid: 21679 components: - pos: -33.5,-45.5 parent: 2 type: Transform - proto: PosterBroken entities: - - uid: 21596 + - uid: 21680 components: - pos: 0.5,-70.5 parent: 2 type: Transform - proto: PosterContrabandAmbrosiaVulgaris entities: - - uid: 21597 + - uid: 21681 components: - pos: -10.5,-34.5 parent: 2 type: Transform - proto: PosterContrabandAtmosiaDeclarationIndependence entities: - - uid: 21598 + - uid: 21682 components: - pos: -36.5,-52.5 parent: 2 type: Transform - proto: PosterContrabandBeachStarYamamoto entities: - - uid: 21599 + - uid: 21683 components: - pos: -9.5,-31.5 parent: 2 type: Transform - proto: PosterContrabandBorgFancy entities: - - uid: 21600 + - uid: 21684 components: - pos: 16.5,-4.5 parent: 2 type: Transform - proto: PosterContrabandBountyHunters entities: - - uid: 21601 + - uid: 21685 components: - pos: 14.5,-56.5 parent: 2 type: Transform - - uid: 21602 + - uid: 21686 components: - pos: -42.5,26.5 parent: 2 type: Transform - proto: PosterContrabandCC64KAd entities: - - uid: 21603 + - uid: 21687 components: - pos: 20.5,-3.5 parent: 2 type: Transform - proto: PosterContrabandClown entities: - - uid: 21604 + - uid: 21688 components: - rot: 1.5707963267948966 rad pos: -23.5,39.5 parent: 2 type: Transform + - uid: 21689 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-24.5 + parent: 2 + type: Transform + - uid: 21690 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-18.5 + parent: 2 + type: Transform - proto: PosterContrabandCommunistState entities: - - uid: 21607 + - uid: 21691 components: - pos: 0.5,-15.5 parent: 2 type: Transform - - uid: 21608 + - uid: 21692 components: - pos: 53.5,-64.5 parent: 2 type: Transform - proto: PosterContrabandCybersun600 entities: - - uid: 21609 + - uid: 21693 components: - rot: 1.5707963267948966 rad pos: -15.5,48.5 @@ -148365,28 +149559,28 @@ entities: type: Transform - proto: PosterContrabandDDayPromo entities: - - uid: 21610 + - uid: 21694 components: - pos: 14.5,33.5 parent: 2 type: Transform - proto: PosterContrabandDonutCorp entities: - - uid: 21611 + - uid: 21695 components: - pos: 49.5,34.5 parent: 2 type: Transform - proto: PosterContrabandEAT entities: - - uid: 21612 + - uid: 21696 components: - pos: 4.5,4.5 parent: 2 type: Transform - proto: PosterContrabandEnlistGorlex entities: - - uid: 21613 + - uid: 21697 components: - rot: 1.5707963267948966 rad pos: 53.5,54.5 @@ -148394,247 +149588,247 @@ entities: type: Transform - proto: PosterContrabandFreeSyndicateEncryptionKey entities: - - uid: 21614 + - uid: 21698 components: - pos: -53.5,-85.5 parent: 2 type: Transform - proto: PosterContrabandFreeTonto entities: - - uid: 21615 + - uid: 21699 components: - pos: -6.5,-14.5 parent: 2 type: Transform - proto: PosterContrabandFunPolice entities: - - uid: 21616 + - uid: 21700 components: - pos: 4.5,18.5 parent: 2 type: Transform - proto: PosterContrabandGreyTide entities: - - uid: 21617 + - uid: 21701 components: - pos: 55.5,-9.5 parent: 2 type: Transform - - uid: 21618 + - uid: 21702 components: - pos: 41.5,-57.5 parent: 2 type: Transform - - uid: 21619 + - uid: 21703 components: - pos: -19.5,64.5 parent: 2 type: Transform - proto: PosterContrabandHackingGuide entities: - - uid: 21620 + - uid: 21704 components: - pos: 15.5,40.5 parent: 2 type: Transform - proto: PosterContrabandHighEffectEngineering entities: - - uid: 21621 + - uid: 21705 components: - pos: -48.5,-7.5 parent: 2 type: Transform - proto: PosterContrabandKosmicheskayaStantsiya entities: - - uid: 21622 + - uid: 21706 components: - pos: -25.5,-63.5 parent: 2 type: Transform - proto: PosterContrabandLamarr entities: - - uid: 21623 + - uid: 21707 components: - pos: 10.5,35.5 parent: 2 type: Transform - proto: PosterContrabandLustyExomorph entities: - - uid: 21624 + - uid: 21708 components: - pos: -9.5,-73.5 parent: 2 type: Transform - - uid: 21625 + - uid: 21709 components: - pos: 45.5,50.5 parent: 2 type: Transform - proto: PosterContrabandMaskedMen entities: - - uid: 21626 + - uid: 21710 components: - pos: 47.5,51.5 parent: 2 type: Transform - proto: PosterContrabandMissingGloves entities: - - uid: 21627 + - uid: 21711 components: - pos: 20.5,19.5 parent: 2 type: Transform - - uid: 21628 + - uid: 21712 components: - pos: 41.5,-52.5 parent: 2 type: Transform - - uid: 21629 + - uid: 21713 components: - pos: -26.5,-18.5 parent: 2 type: Transform - proto: PosterContrabandNuclearDeviceInformational entities: - - uid: 21630 + - uid: 21714 components: - pos: 39.5,-24.5 parent: 2 type: Transform - proto: PosterContrabandPower entities: - - uid: 21631 + - uid: 21715 components: - pos: -61.5,-22.5 parent: 2 type: Transform - - uid: 21632 + - uid: 21716 components: - pos: -23.5,-7.5 parent: 2 type: Transform - proto: PosterContrabandRebelsUnite entities: - - uid: 21633 + - uid: 21717 components: - pos: -0.5,-72.5 parent: 2 type: Transform - - uid: 21634 + - uid: 21718 components: - pos: -42.5,-73.5 parent: 2 type: Transform - proto: PosterContrabandRedRum entities: - - uid: 21635 + - uid: 21719 components: - pos: 13.5,4.5 parent: 2 type: Transform - - uid: 21636 + - uid: 21720 components: - pos: 11.5,15.5 parent: 2 type: Transform - - uid: 21637 + - uid: 21721 components: - pos: 35.5,49.5 parent: 2 type: Transform - proto: PosterContrabandRevolt entities: - - uid: 21638 + - uid: 21722 components: - pos: -40.5,-73.5 parent: 2 type: Transform - - uid: 21639 + - uid: 21723 components: - pos: -7.5,-73.5 parent: 2 type: Transform - - uid: 21640 + - uid: 21724 components: - pos: 57.5,55.5 parent: 2 type: Transform - - uid: 21641 + - uid: 21725 components: - pos: 51.5,55.5 parent: 2 type: Transform - - uid: 21642 + - uid: 21726 components: - pos: 56.5,60.5 parent: 2 type: Transform - - uid: 21643 + - uid: 21727 components: - pos: 52.5,60.5 parent: 2 type: Transform - - uid: 21644 + - uid: 21728 components: - pos: 51.5,59.5 parent: 2 type: Transform - - uid: 21645 + - uid: 21729 components: - pos: 57.5,59.5 parent: 2 type: Transform - proto: PosterContrabandRevolver entities: - - uid: 21646 + - uid: 21730 components: - pos: -30.5,-42.5 parent: 2 type: Transform - - uid: 21647 + - uid: 21731 components: - pos: 42.5,49.5 parent: 2 type: Transform - proto: PosterContrabandRIPBadger entities: - - uid: 21648 + - uid: 21732 components: - pos: -41.5,-27.5 parent: 2 type: Transform - proto: PosterContrabandRise entities: - - uid: 21649 + - uid: 21733 components: - pos: 63.5,10.5 parent: 2 type: Transform - - uid: 21650 + - uid: 21734 components: - pos: -28.5,-50.5 parent: 2 type: Transform - - uid: 21651 + - uid: 21735 components: - pos: -40.5,-69.5 parent: 2 type: Transform - - uid: 21652 + - uid: 21736 components: - pos: 57.5,53.5 parent: 2 type: Transform - proto: PosterContrabandRobustSoftdrinks entities: - - uid: 21653 + - uid: 21737 components: - pos: -6.5,-31.5 parent: 2 type: Transform - proto: PosterContrabandShamblersJuice entities: - - uid: 21654 + - uid: 21738 components: - name: changs type: MetaData @@ -148644,274 +149838,275 @@ entities: type: Transform - proto: PosterContrabandSmoke entities: - - uid: 21655 + - uid: 21739 components: - pos: -6.5,-51.5 parent: 2 type: Transform - proto: PosterContrabandSyndicatePistol entities: - - uid: 21656 + - uid: 21740 components: - pos: -46.5,-71.5 parent: 2 type: Transform - proto: PosterContrabandSyndicateRecruitment entities: - - uid: 21657 + - uid: 21741 components: - pos: -44.5,-74.5 parent: 2 type: Transform - - uid: 21658 + - uid: 21742 components: - pos: 30.5,48.5 parent: 2 type: Transform - proto: PosterContrabandTheGriffin entities: - - uid: 21659 + - uid: 21743 components: - pos: -43.5,-73.5 parent: 2 type: Transform - proto: PosterContrabandTools entities: - - uid: 21660 + - uid: 21744 components: - pos: -54.5,-69.5 parent: 2 type: Transform - - uid: 21661 + - uid: 21745 components: - pos: -22.5,-19.5 parent: 2 type: Transform - proto: PosterContrabandVoteWeh entities: - - uid: 21662 + - uid: 21746 components: - pos: -46.5,-65.5 parent: 2 type: Transform - - uid: 21663 + - uid: 21747 components: - pos: 59.5,41.5 parent: 2 type: Transform - proto: PosterContrabandWehWatches entities: - - uid: 21664 + - uid: 21748 components: - pos: 55.5,-4.5 parent: 2 type: Transform - proto: PosterLegit12Gauge entities: - - uid: 21665 + - uid: 21749 components: - pos: 31.5,23.5 parent: 2 type: Transform - proto: PosterLegit50thAnniversaryVintageReprint entities: - - uid: 21666 + - uid: 21750 components: - pos: 44.5,-34.5 parent: 2 type: Transform - proto: PosterLegitAnatomyPoster entities: - - uid: 21667 + - uid: 21751 components: - pos: -4.5,-63.5 parent: 2 type: Transform - proto: PosterLegitBlessThisSpess entities: - - uid: 21668 + - uid: 21752 components: - pos: 61.5,-4.5 parent: 2 type: Transform - proto: PosterLegitBuild entities: - - uid: 21669 + - uid: 21753 components: - pos: -34.5,-4.5 parent: 2 type: Transform - proto: PosterLegitCarbonDioxide entities: - - uid: 21670 + - uid: 21754 components: - pos: 46.5,-55.5 parent: 2 type: Transform - proto: PosterLegitCleanliness entities: - - uid: 21671 + - uid: 21755 components: - pos: -10.5,-24.5 parent: 2 type: Transform - - uid: 21672 + - uid: 21756 components: - pos: 1.5,-58.5 parent: 2 type: Transform - proto: PosterLegitCohibaRobustoAd entities: - - uid: 21673 + - uid: 21757 components: - pos: 13.5,-30.5 parent: 2 type: Transform - - uid: 21674 + - uid: 21758 components: - pos: 57.5,-9.5 parent: 2 type: Transform - proto: PosterLegitDickGumshue entities: - - uid: 21675 + - uid: 21759 components: - pos: 17.5,-15.5 parent: 2 type: Transform - proto: PosterLegitDoNotQuestion entities: - - uid: 21676 + - uid: 21760 components: - pos: 23.5,19.5 parent: 2 type: Transform - - uid: 21677 + - uid: 21761 components: - pos: -17.5,-21.5 parent: 2 type: Transform - proto: PosterLegitEnlist entities: - - uid: 21678 + - uid: 21762 components: - pos: -17.5,-31.5 parent: 2 type: Transform - - uid: 21679 + - uid: 21763 components: - pos: 59.5,-9.5 parent: 2 type: Transform - - uid: 21680 + - uid: 21764 components: - pos: -13.5,27.5 parent: 2 type: Transform - proto: PosterLegitFoamForceAd entities: - - uid: 21681 + - uid: 21765 components: - pos: 1.5,-39.5 parent: 2 type: Transform - proto: PosterLegitFruitBowl entities: - - uid: 21682 + - uid: 21766 components: - pos: -4.5,9.5 parent: 2 type: Transform - - uid: 21683 + - uid: 21767 components: - pos: -22.5,49.5 parent: 2 type: Transform - proto: PosterLegitGetYourLEGS entities: - - uid: 21684 + - uid: 21768 components: - pos: -16.5,64.5 parent: 2 type: Transform - proto: PosterLegitHelpOthers entities: - - uid: 21685 + - uid: 21769 components: - pos: -7.5,-40.5 parent: 2 type: Transform - proto: PosterLegitHereForYourSafety entities: - - uid: 21686 + - uid: 21770 components: - pos: 28.5,9.5 parent: 2 type: Transform - proto: PosterLegitHighClassMartini entities: - - uid: 21687 + - uid: 21771 components: - pos: 8.5,11.5 parent: 2 type: Transform - - uid: 21688 + - uid: 21772 components: - pos: -39.5,-74.5 parent: 2 type: Transform - proto: PosterLegitIan entities: - - uid: 15275 + - uid: 21773 components: - - rot: 1.5707963267948966 rad - pos: -1.5,-2.5 + - rot: 3.141592653589793 rad + pos: 5.5,-2.5 parent: 2 type: Transform - - uid: 21689 + - uid: 21774 components: - pos: 21.5,-40.5 parent: 2 type: Transform - proto: PosterLegitIonRifle entities: - - uid: 21690 + - uid: 21775 components: - pos: 27.5,33.5 parent: 2 type: Transform - proto: PosterLegitJustAWeekAway entities: - - uid: 21335 + - uid: 21776 components: - pos: 27.5,-33.5 parent: 2 type: Transform - - uid: 21691 + - uid: 21777 components: - pos: -37.5,-31.5 parent: 2 type: Transform - - uid: 24573 - components: - - pos: 25.5,-35.5 - parent: 2 - type: Transform - - uid: 24581 + - uid: 21778 components: - pos: 30.5,-35.5 parent: 2 type: Transform - proto: PosterLegitLoveIan entities: - - uid: 21692 + - uid: 21779 components: - pos: 21.5,-33.5 parent: 2 type: Transform + - uid: 21780 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 2 + type: Transform - proto: PosterLegitMime entities: - - uid: 21693 + - uid: 21781 components: - rot: 1.5707963267948966 rad pos: -27.5,47.5 @@ -148919,37 +150114,37 @@ entities: type: Transform - proto: PosterLegitNanomichiAd entities: - - uid: 21694 + - uid: 21782 components: - pos: -21.5,-27.5 parent: 2 type: Transform - proto: PosterLegitNanotrasenLogo entities: - - uid: 21695 + - uid: 21783 components: - pos: 28.5,-31.5 parent: 2 type: Transform - - uid: 21696 + - uid: 21784 components: - pos: 25.5,-33.5 parent: 2 type: Transform - proto: PosterLegitNoERP entities: - - uid: 21697 + - uid: 21785 components: - pos: 40.5,49.5 parent: 2 type: Transform - - uid: 21698 + - uid: 21786 components: - rot: 3.141592653589793 rad pos: -15.5,-36.5 parent: 2 type: Transform - - uid: 21699 + - uid: 21787 components: - rot: 3.141592653589793 rad pos: -47.5,9.5 @@ -148957,52 +150152,52 @@ entities: type: Transform - proto: PosterLegitObey entities: - - uid: 21700 + - uid: 21788 components: - pos: 31.5,-3.5 parent: 2 type: Transform - proto: PosterLegitPDAAd entities: - - uid: 21701 + - uid: 21789 components: - pos: 29.5,-40.5 parent: 2 type: Transform - proto: PosterLegitReportCrimes entities: - - uid: 21702 + - uid: 21790 components: - pos: 18.5,-15.5 parent: 2 type: Transform - - uid: 21703 + - uid: 21791 components: - pos: 30.5,-46.5 parent: 2 type: Transform - proto: PosterLegitSafetyEyeProtection entities: - - uid: 21704 + - uid: 21792 components: - pos: -33.5,-31.5 parent: 2 type: Transform - proto: PosterLegitSafetyInternals entities: - - uid: 21705 + - uid: 21793 components: - pos: -39.5,-31.5 parent: 2 type: Transform - - uid: 21706 + - uid: 21794 components: - pos: 24.5,-54.5 parent: 2 type: Transform - proto: PosterLegitSafetyMothHardhat entities: - - uid: 21707 + - uid: 21795 components: - rot: 1.5707963267948966 rad pos: -28.5,-15.5 @@ -149010,17 +150205,17 @@ entities: type: Transform - proto: PosterLegitSecWatch entities: - - uid: 21708 + - uid: 21796 components: - pos: 10.5,15.5 parent: 2 type: Transform - - uid: 21709 + - uid: 21797 components: - pos: 18.5,-9.5 parent: 2 type: Transform - - uid: 21710 + - uid: 21798 components: - rot: 3.141592653589793 rad pos: -18.5,-44.5 @@ -149028,19 +150223,19 @@ entities: type: Transform - proto: PosterLegitStateLaws entities: - - uid: 21711 + - uid: 21799 components: - pos: 37.5,-32.5 parent: 2 type: Transform - - uid: 21712 + - uid: 21800 components: - pos: -17.5,27.5 parent: 2 type: Transform - proto: PosterLegitThereIsNoGasGiant entities: - - uid: 21713 + - uid: 21801 components: - rot: -1.5707963267948966 rad pos: -41.5,-40.5 @@ -149048,7 +150243,7 @@ entities: type: Transform - proto: PosterLegitVacation entities: - - uid: 21714 + - uid: 21802 components: - rot: 1.5707963267948966 rad pos: 47.5,-70.5 @@ -149056,304 +150251,323 @@ entities: type: Transform - proto: PosterLegitWalk entities: - - uid: 21715 + - uid: 21803 components: - pos: -7.5,-28.5 parent: 2 type: Transform - proto: PottedPlant1 entities: - - uid: 21717 + - uid: 21804 components: - pos: -2.5,-40.5 parent: 2 type: Transform - proto: PottedPlant14 entities: - - uid: 21718 + - uid: 21805 components: - pos: 36.5,-16.5 parent: 2 type: Transform - proto: PottedPlant24 entities: - - uid: 21719 + - uid: 21806 components: - pos: -6.5,-40.5 parent: 2 type: Transform - proto: PottedPlant26 entities: - - uid: 21720 + - uid: 21807 components: - pos: 6.5,-52.5 parent: 2 type: Transform - proto: PottedPlant27 entities: - - uid: 21721 + - uid: 21808 components: - pos: 46.5,31.5 parent: 2 type: Transform - - uid: 21722 + - uid: 21809 components: - pos: -43.5,-87.5 parent: 2 type: Transform - proto: PottedPlant28 entities: - - uid: 21723 + - uid: 21810 components: - pos: 46.5,30.5 parent: 2 type: Transform - - uid: 21724 + - uid: 21811 components: - pos: -54.5,-47.5 parent: 2 type: Transform - proto: PottedPlant29 entities: - - uid: 21725 + - uid: 21812 components: - pos: 46.5,29.5 parent: 2 type: Transform - - uid: 21726 + - uid: 21813 components: - pos: -54.5,-50.5 parent: 2 type: Transform - - uid: 21727 + - uid: 21814 components: - pos: -40.5,-87.5 parent: 2 type: Transform - proto: PottedPlant3 entities: - - uid: 21728 + - uid: 21815 components: - pos: 14.5,-16.5 parent: 2 type: Transform - - uid: 21729 + - uid: 21816 components: - pos: 54.5,-1.5 parent: 2 type: Transform - proto: PottedPlant5 entities: - - uid: 21730 + - uid: 21817 components: - pos: -26.5,8.5 parent: 2 type: Transform - - uid: 21731 + - uid: 21818 components: - pos: 50.5,-1.5 parent: 2 type: Transform - proto: PottedPlant8 entities: - - uid: 21732 + - uid: 21819 components: - pos: -22.5,8.5 parent: 2 type: Transform - proto: PottedPlantBioluminscent entities: - - uid: 21733 + - uid: 21820 components: - pos: -27.5,17.5 parent: 2 type: Transform - proto: PottedPlantRandom entities: - - uid: 21734 + - uid: 21821 components: - pos: 20.5,18.5 parent: 2 type: Transform - - uid: 21735 + - uid: 21822 components: - pos: 1.5,-40.5 parent: 2 type: Transform - - uid: 21736 + - uid: 21823 components: - pos: 24.5,-81.5 parent: 2 type: Transform - - uid: 21737 + - uid: 21824 components: - pos: -44.5,8.5 parent: 2 type: Transform - - uid: 21738 + - uid: 21825 components: - pos: -49.5,8.5 parent: 2 type: Transform - - uid: 21739 + - uid: 21826 components: - pos: 23.5,-43.5 parent: 2 type: Transform - - uid: 21740 + - uid: 21827 components: - pos: 27.5,-43.5 parent: 2 type: Transform - - uid: 21741 + - uid: 21828 components: - pos: -23.5,-73.5 parent: 2 type: Transform - - uid: 21742 + - uid: 21829 components: - pos: -49.5,12.5 parent: 2 type: Transform - - uid: 21743 + - uid: 21830 components: - pos: -19.5,-73.5 parent: 2 type: Transform - - uid: 21744 + - uid: 21831 components: - pos: -2.5,46.5 parent: 2 type: Transform - - uid: 21745 + - uid: 21832 components: - pos: -14.5,42.5 parent: 2 type: Transform - - uid: 21746 + - uid: 21833 components: - pos: -6.5,46.5 parent: 2 type: Transform - - uid: 21747 + - uid: 21834 components: - pos: 24.5,-85.5 parent: 2 type: Transform - - uid: 21748 + - uid: 21835 components: - pos: 25.5,-74.5 parent: 2 type: Transform - - uid: 21749 + - uid: 21836 components: - pos: -20.5,-66.5 parent: 2 type: Transform - - uid: 21750 + - uid: 21837 components: - pos: -18.5,-66.5 parent: 2 type: Transform - proto: PottedPlantRandomPlastic entities: - - uid: 21751 + - uid: 21838 components: - pos: -6.5,-45.5 parent: 2 type: Transform - - uid: 21752 + - uid: 21839 components: - pos: -55.5,-58.5 parent: 2 type: Transform - - uid: 21753 + - uid: 21840 components: - pos: 54.5,31.5 parent: 2 type: Transform - - uid: 21754 + - uid: 21841 components: - pos: -12.5,-96.5 parent: 2 type: Transform - - uid: 21755 + - uid: 21842 components: - pos: -57.5,-60.5 parent: 2 type: Transform - proto: PowerCellRecharger entities: - - uid: 21756 + - uid: 21843 components: - pos: -10.5,-61.5 parent: 2 type: Transform - - uid: 21757 + - uid: 21844 components: - pos: -11.5,-61.5 parent: 2 type: Transform - - uid: 21758 + - uid: 21845 components: - pos: -26.5,-20.5 parent: 2 type: Transform - - uid: 21759 + - uid: 21846 components: - pos: 8.5,14.5 parent: 2 type: Transform - - uid: 21760 + - uid: 21847 components: - pos: -23.5,-8.5 parent: 2 type: Transform - - uid: 21761 + - uid: 21848 components: - pos: -35.5,-13.5 parent: 2 type: Transform - - uid: 21762 + - uid: 21849 components: - pos: -32.5,17.5 parent: 2 type: Transform - - uid: 21763 + - uid: 21850 components: - pos: -22.5,-33.5 parent: 2 type: Transform - - uid: 21764 + - uid: 21851 components: - pos: 38.5,-55.5 parent: 2 type: Transform - - uid: 21765 + - uid: 21852 components: - pos: -22.5,17.5 parent: 2 type: Transform - - uid: 21766 + - uid: 21853 components: - pos: 43.5,-40.5 parent: 2 type: Transform - proto: PowerDrill entities: - - uid: 21767 + - uid: 21854 components: - pos: 62.617344,-53.460384 parent: 2 type: Transform - - uid: 21768 + - uid: 21855 components: - pos: -52.61403,65.565544 parent: 2 type: Transform - proto: Poweredlight entities: - - uid: 14561 + - uid: 21856 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-28.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 21857 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - links: + - 23885 + type: DeviceLinkSink + - uid: 21858 components: - rot: 3.141592653589793 rad pos: -35.5,-18.5 @@ -149361,14 +150575,14 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 21769 + - uid: 21859 components: - pos: 62.5,-28.5 parent: 2 type: Transform - enabled: False type: AmbientSound - - uid: 21770 + - uid: 21860 components: - rot: 3.141592653589793 rad pos: -61.5,-37.5 @@ -149376,14 +150590,14 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 21771 + - uid: 21861 components: - pos: -44.5,-8.5 parent: 2 type: Transform - enabled: False type: AmbientSound - - uid: 21772 + - uid: 21862 components: - rot: 3.141592653589793 rad pos: -5.5,14.5 @@ -149391,7 +150605,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 21773 + - uid: 21863 components: - rot: -1.5707963267948966 rad pos: -22.5,-77.5 @@ -149399,7 +150613,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21774 + - uid: 21864 components: - rot: 1.5707963267948966 rad pos: -42.5,-9.5 @@ -149407,7 +150621,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21775 + - uid: 21865 components: - rot: -1.5707963267948966 rad pos: 48.5,-29.5 @@ -149415,7 +150629,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21777 + - uid: 21866 components: - rot: -1.5707963267948966 rad pos: 14.5,8.5 @@ -149423,7 +150637,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21778 + - uid: 21867 components: - rot: 3.141592653589793 rad pos: -10.5,-1.5 @@ -149431,7 +150645,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21779 + - uid: 21868 components: - rot: 3.141592653589793 rad pos: -2.5,-1.5 @@ -149439,14 +150653,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21780 + - uid: 21869 components: - pos: 4.5,-59.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21781 + - uid: 21870 components: - rot: 1.5707963267948966 rad pos: -5.5,-31.5 @@ -149454,7 +150668,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21783 + - uid: 21871 components: - rot: -1.5707963267948966 rad pos: 16.5,-22.5 @@ -149462,21 +150676,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21784 + - uid: 21872 components: - pos: 30.5,-47.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21785 + - uid: 21873 components: - pos: 40.5,-25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21786 + - uid: 21874 components: - rot: 1.5707963267948966 rad pos: 44.5,-23.5 @@ -149484,7 +150698,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21787 + - uid: 21875 components: - rot: 3.141592653589793 rad pos: -10.5,-61.5 @@ -149492,7 +150706,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21788 + - uid: 21876 components: - rot: 3.141592653589793 rad pos: -4.5,-61.5 @@ -149500,7 +150714,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21789 + - uid: 21877 components: - rot: 1.5707963267948966 rad pos: -20.5,-77.5 @@ -149508,7 +150722,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21790 + - uid: 21878 components: - rot: 3.141592653589793 rad pos: -9.5,-27.5 @@ -149516,7 +150730,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21791 + - uid: 21879 components: - rot: 3.141592653589793 rad pos: 12.5,-27.5 @@ -149524,21 +150738,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21792 + - uid: 21880 components: - pos: 21.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21793 + - uid: 21881 components: - pos: 29.5,-45.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21794 + - uid: 21882 components: - rot: -1.5707963267948966 rad pos: 42.5,8.5 @@ -149546,7 +150760,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21795 + - uid: 21883 components: - rot: 3.141592653589793 rad pos: 24.5,-2.5 @@ -149554,14 +150768,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21796 + - uid: 21884 components: - pos: 33.5,-45.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21797 + - uid: 21885 components: - rot: 3.141592653589793 rad pos: 2.5,-43.5 @@ -149569,7 +150783,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21798 + - uid: 21886 components: - rot: -1.5707963267948966 rad pos: 7.5,-46.5 @@ -149577,7 +150791,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21799 + - uid: 21887 components: - rot: -1.5707963267948966 rad pos: -27.5,-70.5 @@ -149585,7 +150799,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21800 + - uid: 21888 components: - rot: -1.5707963267948966 rad pos: 30.5,0.5 @@ -149593,14 +150807,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21801 + - uid: 21889 components: - pos: -23.5,-8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21802 + - uid: 21890 components: - rot: -1.5707963267948966 rad pos: 10.5,-60.5 @@ -149608,7 +150822,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21803 + - uid: 21891 components: - rot: 1.5707963267948966 rad pos: -5.5,-35.5 @@ -149616,7 +150830,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21805 + - uid: 21892 components: - rot: 3.141592653589793 rad pos: -8.5,44.5 @@ -149624,7 +150838,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21806 + - uid: 21893 components: - rot: -1.5707963267948966 rad pos: -0.5,62.5 @@ -149632,14 +150846,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21807 + - uid: 21894 components: - pos: 4.5,3.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21808 + - uid: 21895 components: - rot: 1.5707963267948966 rad pos: 44.5,-28.5 @@ -149647,7 +150861,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21810 + - uid: 21896 components: - rot: -1.5707963267948966 rad pos: 42.5,-25.5 @@ -149655,7 +150869,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21811 + - uid: 21897 components: - rot: -1.5707963267948966 rad pos: 32.5,-29.5 @@ -149663,7 +150877,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21812 + - uid: 21898 components: - rot: 1.5707963267948966 rad pos: 8.5,-9.5 @@ -149671,28 +150885,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21813 + - uid: 21899 components: - pos: -21.5,-84.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21814 + - uid: 21900 components: - pos: 12.5,3.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21815 + - uid: 21901 components: - pos: 29.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21816 + - uid: 21902 components: - rot: -1.5707963267948966 rad pos: -18.5,-9.5 @@ -149700,14 +150914,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21817 + - uid: 21903 components: - pos: 4.5,-56.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21818 + - uid: 21904 components: - rot: -1.5707963267948966 rad pos: 34.5,3.5 @@ -149717,7 +150931,7 @@ entities: type: PointLight - powerLoad: 0 type: ApcPowerReceiver - - uid: 21819 + - uid: 21905 components: - rot: 1.5707963267948966 rad pos: -35.5,-50.5 @@ -149725,7 +150939,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21820 + - uid: 21906 components: - rot: -1.5707963267948966 rad pos: 65.5,-2.5 @@ -149733,14 +150947,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21821 + - uid: 21907 components: - pos: 27.5,-16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21822 + - uid: 21908 components: - rot: 1.5707963267948966 rad pos: -3.5,-65.5 @@ -149748,7 +150962,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21823 + - uid: 21909 components: - rot: 1.5707963267948966 rad pos: -9.5,-64.5 @@ -149756,7 +150970,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21824 + - uid: 21910 components: - rot: -1.5707963267948966 rad pos: 0.5,-45.5 @@ -149764,7 +150978,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21825 + - uid: 21911 components: - rot: 1.5707963267948966 rad pos: -9.5,-48.5 @@ -149772,14 +150986,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21826 + - uid: 21912 components: - pos: -23.5,-69.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21827 + - uid: 21913 components: - rot: 3.141592653589793 rad pos: -22.5,-73.5 @@ -149787,14 +151001,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21828 + - uid: 21914 components: - pos: 16.5,-16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21829 + - uid: 21915 components: - rot: 1.5707963267948966 rad pos: -5.5,-11.5 @@ -149802,7 +151016,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21830 + - uid: 21916 components: - rot: -1.5707963267948966 rad pos: 48.5,-22.5 @@ -149810,14 +151024,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21831 + - uid: 21917 components: - pos: 24.5,4.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21833 + - uid: 21918 components: - rot: 1.5707963267948966 rad pos: 10.5,11.5 @@ -149825,14 +151039,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21834 + - uid: 21919 components: - pos: 16.5,14.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21835 + - uid: 21920 components: - rot: 1.5707963267948966 rad pos: -12.5,-37.5 @@ -149840,14 +151054,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21836 + - uid: 21921 components: - pos: -8.5,-35.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21837 + - uid: 21922 components: - rot: 1.5707963267948966 rad pos: -10.5,8.5 @@ -149855,14 +151069,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21838 + - uid: 21923 components: - pos: 6.5,22.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21839 + - uid: 21924 components: - rot: 1.5707963267948966 rad pos: 24.5,-47.5 @@ -149870,14 +151084,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21840 + - uid: 21925 components: - pos: 13.5,17.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21841 + - uid: 21926 components: - rot: 1.5707963267948966 rad pos: 14.5,21.5 @@ -149885,14 +151099,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21842 + - uid: 21927 components: - pos: 44.5,8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21843 + - uid: 21928 components: - rot: 3.141592653589793 rad pos: 47.5,4.5 @@ -149900,28 +151114,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21844 + - uid: 21929 components: - pos: 44.5,2.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21845 + - uid: 21930 components: - pos: -4.5,3.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21846 + - uid: 21931 components: - pos: 11.5,22.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21847 + - uid: 21932 components: - rot: -1.5707963267948966 rad pos: -3.5,-6.5 @@ -149929,7 +151143,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21848 + - uid: 21933 components: - rot: 3.141592653589793 rad pos: -2.5,-27.5 @@ -149937,7 +151151,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21849 + - uid: 21934 components: - rot: 1.5707963267948966 rad pos: -5.5,-18.5 @@ -149945,14 +151159,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21850 + - uid: 21935 components: - pos: -9.5,-21.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21851 + - uid: 21936 components: - rot: 1.5707963267948966 rad pos: -13.5,-22.5 @@ -149960,7 +151174,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21852 + - uid: 21937 components: - rot: -1.5707963267948966 rad pos: 39.5,-2.5 @@ -149968,7 +151182,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21853 + - uid: 21938 components: - rot: 3.141592653589793 rad pos: 36.5,-6.5 @@ -149976,7 +151190,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21854 + - uid: 21939 components: - rot: 1.5707963267948966 rad pos: 26.5,31.5 @@ -149984,7 +151198,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21855 + - uid: 21940 components: - rot: 3.141592653589793 rad pos: 29.5,27.5 @@ -149992,7 +151206,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21856 + - uid: 21941 components: - rot: -1.5707963267948966 rad pos: 30.5,20.5 @@ -150000,7 +151214,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21857 + - uid: 21942 components: - rot: 1.5707963267948966 rad pos: 28.5,14.5 @@ -150008,35 +151222,35 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21858 + - uid: 21943 components: - pos: 33.5,16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21859 + - uid: 21944 components: - pos: 39.5,16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21860 + - uid: 21945 components: - pos: 55.5,9.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21861 + - uid: 21946 components: - pos: 51.5,9.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21862 + - uid: 21947 components: - rot: 3.141592653589793 rad pos: 55.5,15.5 @@ -150044,7 +151258,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21863 + - uid: 21948 components: - rot: 3.141592653589793 rad pos: 51.5,15.5 @@ -150052,7 +151266,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21864 + - uid: 21949 components: - rot: 3.141592653589793 rad pos: 48.5,12.5 @@ -150060,7 +151274,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21865 + - uid: 21950 components: - rot: 3.141592653589793 rad pos: 58.5,12.5 @@ -150068,7 +151282,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21866 + - uid: 21951 components: - rot: -1.5707963267948966 rad pos: 59.5,20.5 @@ -150076,7 +151290,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21867 + - uid: 21952 components: - rot: 3.141592653589793 rad pos: 59.5,4.5 @@ -150084,7 +151298,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21868 + - uid: 21953 components: - rot: 3.141592653589793 rad pos: 48.5,18.5 @@ -150092,7 +151306,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21869 + - uid: 21954 components: - rot: 1.5707963267948966 rad pos: 32.5,-3.5 @@ -150100,7 +151314,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21870 + - uid: 21955 components: - rot: 3.141592653589793 rad pos: 24.5,6.5 @@ -150108,7 +151322,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21871 + - uid: 21956 components: - rot: 3.141592653589793 rad pos: 29.5,6.5 @@ -150116,7 +151330,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21872 + - uid: 21957 components: - rot: 1.5707963267948966 rad pos: 24.5,-13.5 @@ -150124,7 +151338,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21873 + - uid: 21958 components: - rot: 3.141592653589793 rad pos: 21.5,-6.5 @@ -150132,7 +151346,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21874 + - uid: 21959 components: - rot: -1.5707963267948966 rad pos: 26.5,-9.5 @@ -150140,7 +151354,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21875 + - uid: 21960 components: - rot: 3.141592653589793 rad pos: 57.5,-6.5 @@ -150148,14 +151362,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21876 + - uid: 21961 components: - pos: 57.5,-10.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21877 + - uid: 21962 components: - rot: -1.5707963267948966 rad pos: 54.5,-8.5 @@ -150163,7 +151377,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21878 + - uid: 21963 components: - rot: 1.5707963267948966 rad pos: 59.5,-1.5 @@ -150171,7 +151385,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21879 + - uid: 21964 components: - rot: 3.141592653589793 rad pos: 57.5,-14.5 @@ -150179,7 +151393,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21880 + - uid: 21965 components: - rot: 3.141592653589793 rad pos: 33.5,-60.5 @@ -150187,7 +151401,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21881 + - uid: 21966 components: - rot: 3.141592653589793 rad pos: 45.5,-43.5 @@ -150195,14 +151409,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21882 + - uid: 21967 components: - pos: 72.5,-43.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21883 + - uid: 21968 components: - rot: 3.141592653589793 rad pos: 67.5,-49.5 @@ -150210,7 +151424,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21884 + - uid: 21969 components: - rot: 3.141592653589793 rad pos: 60.5,-49.5 @@ -150218,7 +151432,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21885 + - uid: 21970 components: - rot: 3.141592653589793 rad pos: 57.5,-45.5 @@ -150226,14 +151440,14 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 21886 + - uid: 21971 components: - pos: 56.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21887 + - uid: 21972 components: - rot: -1.5707963267948966 rad pos: 53.5,-42.5 @@ -150241,7 +151455,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21888 + - uid: 21973 components: - rot: 1.5707963267948966 rad pos: 48.5,-38.5 @@ -150249,7 +151463,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21889 + - uid: 21974 components: - rot: 1.5707963267948966 rad pos: 48.5,-47.5 @@ -150257,21 +151471,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21890 + - uid: 21975 components: - pos: 39.5,-35.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21891 + - uid: 21976 components: - pos: 44.5,-35.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21892 + - uid: 21977 components: - rot: 3.141592653589793 rad pos: 10.5,-43.5 @@ -150279,7 +151493,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21893 + - uid: 21978 components: - rot: 3.141592653589793 rad pos: 35.5,-43.5 @@ -150287,7 +151501,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21894 + - uid: 21979 components: - rot: 3.141592653589793 rad pos: 28.5,-6.5 @@ -150295,7 +151509,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21895 + - uid: 21980 components: - rot: 3.141592653589793 rad pos: 16.5,-43.5 @@ -150303,21 +151517,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21896 + - uid: 21981 components: - pos: 33.5,-39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21897 + - uid: 21982 components: - pos: 45.5,-45.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21898 + - uid: 21983 components: - rot: 3.141592653589793 rad pos: 42.5,-49.5 @@ -150325,7 +151539,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21899 + - uid: 21984 components: - rot: 3.141592653589793 rad pos: 65.5,-35.5 @@ -150333,7 +151547,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21900 + - uid: 21985 components: - rot: -1.5707963267948966 rad pos: 64.5,-53.5 @@ -150341,14 +151555,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21901 + - uid: 21986 components: - pos: 32.5,-47.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21902 + - uid: 21987 components: - rot: -1.5707963267948966 rad pos: 34.5,-51.5 @@ -150356,7 +151570,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21903 + - uid: 21988 components: - rot: 1.5707963267948966 rad pos: 28.5,-50.5 @@ -150364,7 +151578,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21904 + - uid: 21989 components: - rot: -1.5707963267948966 rad pos: 34.5,-55.5 @@ -150372,7 +151586,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21905 + - uid: 21990 components: - rot: 1.5707963267948966 rad pos: 28.5,-56.5 @@ -150380,7 +151594,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21906 + - uid: 21991 components: - rot: 1.5707963267948966 rad pos: 24.5,-52.5 @@ -150388,7 +151602,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21907 + - uid: 21992 components: - rot: -1.5707963267948966 rad pos: 26.5,-56.5 @@ -150396,21 +151610,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21908 + - uid: 21993 components: - pos: 28.5,-58.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21909 + - uid: 21994 components: - pos: -15.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21910 + - uid: 21995 components: - rot: 3.141592653589793 rad pos: 37.5,-60.5 @@ -150418,15 +151632,15 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21911 + - uid: 21996 components: - rot: 3.141592653589793 rad - pos: -25.5,-17.5 + pos: -27.5,-17.5 parent: 2 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 21912 + - enabled: False + type: AmbientSound + - uid: 21997 components: - rot: -1.5707963267948966 rad pos: 16.5,-31.5 @@ -150434,7 +151648,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21913 + - uid: 21998 components: - rot: 1.5707963267948966 rad pos: -20.5,-15.5 @@ -150442,7 +151656,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21914 + - uid: 21999 components: - rot: 1.5707963267948966 rad pos: -20.5,-19.5 @@ -150450,7 +151664,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21915 + - uid: 22000 components: - rot: 1.5707963267948966 rad pos: -26.5,-21.5 @@ -150458,14 +151672,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21916 + - uid: 22001 components: - pos: -30.5,-16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21917 + - uid: 22002 components: - rot: 3.141592653589793 rad pos: -28.5,-14.5 @@ -150473,7 +151687,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21918 + - uid: 22003 components: - rot: 1.5707963267948966 rad pos: -39.5,-8.5 @@ -150481,7 +151695,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21919 + - uid: 22004 components: - rot: 1.5707963267948966 rad pos: 38.5,-54.5 @@ -150489,14 +151703,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21920 + - uid: 22005 components: - pos: 56.5,-58.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21921 + - uid: 22006 components: - rot: -1.5707963267948966 rad pos: 51.5,-56.5 @@ -150504,14 +151718,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21922 + - uid: 22007 components: - pos: 45.5,-56.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21923 + - uid: 22008 components: - rot: -1.5707963267948966 rad pos: 52.5,-50.5 @@ -150519,7 +151733,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21924 + - uid: 22009 components: - rot: 1.5707963267948966 rad pos: 48.5,-61.5 @@ -150527,7 +151741,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21925 + - uid: 22010 components: - rot: -1.5707963267948966 rad pos: 12.5,-5.5 @@ -150535,7 +151749,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21926 + - uid: 22011 components: - rot: -1.5707963267948966 rad pos: 49.5,-86.5 @@ -150543,7 +151757,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21927 + - uid: 22012 components: - rot: 1.5707963267948966 rad pos: 24.5,-84.5 @@ -150551,7 +151765,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21928 + - uid: 22013 components: - rot: -1.5707963267948966 rad pos: 49.5,-91.5 @@ -150559,21 +151773,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21929 + - uid: 22014 components: - pos: 41.5,-70.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21930 + - uid: 22015 components: - pos: 37.5,-70.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21931 + - uid: 22016 components: - rot: 1.5707963267948966 rad pos: 38.5,-61.5 @@ -150581,7 +151795,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21933 + - uid: 22017 components: - rot: 3.141592653589793 rad pos: -35.5,-13.5 @@ -150589,21 +151803,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21934 + - uid: 22018 components: - pos: -35.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21935 + - uid: 22019 components: - pos: -16.5,-25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21936 + - uid: 22020 components: - rot: 1.5707963267948966 rad pos: -20.5,-29.5 @@ -150611,7 +151825,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21937 + - uid: 22021 components: - rot: 1.5707963267948966 rad pos: -20.5,-37.5 @@ -150619,7 +151833,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21938 + - uid: 22022 components: - rot: 1.5707963267948966 rad pos: -20.5,-41.5 @@ -150627,7 +151841,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21939 + - uid: 22023 components: - rot: -1.5707963267948966 rad pos: 44.5,-3.5 @@ -150635,7 +151849,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21940 + - uid: 22024 components: - rot: -1.5707963267948966 rad pos: -6.5,11.5 @@ -150643,28 +151857,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21941 + - uid: 22025 components: - pos: -41.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21942 + - uid: 22026 components: - pos: -36.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21943 + - uid: 22027 components: - pos: -36.5,-53.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21944 + - uid: 22028 components: - rot: 3.141592653589793 rad pos: -43.5,-57.5 @@ -150672,7 +151886,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 21945 + - uid: 22029 components: - rot: 1.5707963267948966 rad pos: -46.5,-43.5 @@ -150680,7 +151894,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21946 + - uid: 22030 components: - rot: 1.5707963267948966 rad pos: -46.5,-45.5 @@ -150688,7 +151902,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21947 + - uid: 22031 components: - rot: 1.5707963267948966 rad pos: -46.5,-47.5 @@ -150696,7 +151910,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21948 + - uid: 22032 components: - rot: 1.5707963267948966 rad pos: -46.5,-49.5 @@ -150704,7 +151918,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21949 + - uid: 22033 components: - rot: 1.5707963267948966 rad pos: -46.5,-51.5 @@ -150712,7 +151926,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21950 + - uid: 22034 components: - rot: 1.5707963267948966 rad pos: -46.5,-53.5 @@ -150720,7 +151934,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21951 + - uid: 22035 components: - rot: 1.5707963267948966 rad pos: -46.5,-55.5 @@ -150728,7 +151942,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21952 + - uid: 22036 components: - rot: -1.5707963267948966 rad pos: -31.5,-39.5 @@ -150736,14 +151950,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21953 + - uid: 22037 components: - pos: -27.5,-33.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21954 + - uid: 22038 components: - rot: -1.5707963267948966 rad pos: -22.5,-33.5 @@ -150751,7 +151965,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21955 + - uid: 22039 components: - rot: 3.141592653589793 rad pos: -33.5,-35.5 @@ -150759,7 +151973,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21956 + - uid: 22040 components: - rot: 3.141592653589793 rad pos: -39.5,-36.5 @@ -150767,7 +151981,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21957 + - uid: 22041 components: - rot: -1.5707963267948966 rad pos: -33.5,-47.5 @@ -150775,23 +151989,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21958 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-28.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 21959 - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-43.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 21960 + - uid: 22042 components: - rot: -1.5707963267948966 rad pos: -54.5,-48.5 @@ -150799,7 +151997,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21961 + - uid: 22043 components: - rot: -1.5707963267948966 rad pos: 18.5,5.5 @@ -150807,7 +152005,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21962 + - uid: 22044 components: - rot: 1.5707963267948966 rad pos: 16.5,1.5 @@ -150815,7 +152013,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21963 + - uid: 22045 components: - rot: -1.5707963267948966 rad pos: -12.5,5.5 @@ -150823,14 +152021,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21964 + - uid: 22046 components: - pos: -18.5,-4.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21965 + - uid: 22047 components: - rot: 3.141592653589793 rad pos: -14.5,-6.5 @@ -150838,7 +152036,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21966 + - uid: 22048 components: - rot: 3.141592653589793 rad pos: -19.5,6.5 @@ -150846,7 +152044,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21967 + - uid: 22049 components: - rot: 1.5707963267948966 rad pos: -26.5,5.5 @@ -150854,7 +152052,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21968 + - uid: 22050 components: - rot: 1.5707963267948966 rad pos: -26.5,-1.5 @@ -150862,21 +152060,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21969 + - uid: 22051 components: - pos: -72.5,-23.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21970 + - uid: 22052 components: - pos: -66.5,-30.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21971 + - uid: 22053 components: - rot: -1.5707963267948966 rad pos: -53.5,-24.5 @@ -150884,7 +152082,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21972 + - uid: 22054 components: - rot: 1.5707963267948966 rad pos: -68.5,-25.5 @@ -150892,7 +152090,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21973 + - uid: 22055 components: - rot: -1.5707963267948966 rad pos: -52.5,-14.5 @@ -150900,7 +152098,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21974 + - uid: 22056 components: - rot: 1.5707963267948966 rad pos: -55.5,-8.5 @@ -150908,14 +152106,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21975 + - uid: 22057 components: - pos: -51.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21976 + - uid: 22058 components: - rot: -1.5707963267948966 rad pos: -50.5,-18.5 @@ -150923,14 +152121,14 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 21977 + - uid: 22059 components: - pos: -46.5,-19.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21978 + - uid: 22060 components: - rot: 1.5707963267948966 rad pos: -42.5,-21.5 @@ -150938,7 +152136,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21979 + - uid: 22061 components: - rot: 1.5707963267948966 rad pos: -48.5,-11.5 @@ -150946,7 +152144,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21980 + - uid: 22062 components: - rot: 1.5707963267948966 rad pos: -48.5,-15.5 @@ -150954,14 +152152,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21981 + - uid: 22063 components: - pos: -45.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21982 + - uid: 22064 components: - rot: -1.5707963267948966 rad pos: -31.5,-13.5 @@ -150969,7 +152167,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21983 + - uid: 22065 components: - rot: 1.5707963267948966 rad pos: -32.5,-24.5 @@ -150977,7 +152175,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21984 + - uid: 22066 components: - rot: -1.5707963267948966 rad pos: 2.5,13.5 @@ -150985,7 +152183,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21985 + - uid: 22067 components: - rot: -1.5707963267948966 rad pos: -2.5,11.5 @@ -150993,14 +152191,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21986 + - uid: 22068 components: - pos: -4.5,8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21987 + - uid: 22069 components: - rot: 3.141592653589793 rad pos: 3.5,5.5 @@ -151008,7 +152206,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21988 + - uid: 22070 components: - rot: -1.5707963267948966 rad pos: 6.5,10.5 @@ -151016,7 +152214,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21989 + - uid: 22071 components: - rot: 1.5707963267948966 rad pos: -1.5,18.5 @@ -151024,21 +152222,21 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 21990 + - uid: 22072 components: - pos: 1.5,21.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21991 + - uid: 22073 components: - pos: -42.5,1.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21992 + - uid: 22074 components: - rot: -1.5707963267948966 rad pos: 8.5,15.5 @@ -151046,7 +152244,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21993 + - uid: 22075 components: - rot: 3.141592653589793 rad pos: 23.5,16.5 @@ -151054,21 +152252,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21994 + - uid: 22076 components: - pos: 25.5,23.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21995 + - uid: 22077 components: - pos: 38.5,2.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21996 + - uid: 22078 components: - rot: 3.141592653589793 rad pos: 49.5,0.5 @@ -151076,7 +152274,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21997 + - uid: 22079 components: - rot: -1.5707963267948966 rad pos: 54.5,0.5 @@ -151084,7 +152282,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21998 + - uid: 22080 components: - rot: 3.141592653589793 rad pos: -23.5,17.5 @@ -151092,7 +152290,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21999 + - uid: 22081 components: - rot: 3.141592653589793 rad pos: -50.5,29.5 @@ -151100,14 +152298,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22000 + - uid: 22082 components: - pos: -22.5,25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22001 + - uid: 22083 components: - rot: -1.5707963267948966 rad pos: -18.5,15.5 @@ -151115,7 +152313,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22002 + - uid: 22084 components: - rot: -1.5707963267948966 rad pos: -18.5,22.5 @@ -151123,14 +152321,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22003 + - uid: 22085 components: - pos: -27.5,23.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22004 + - uid: 22086 components: - rot: 1.5707963267948966 rad pos: -34.5,23.5 @@ -151138,7 +152336,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22005 + - uid: 22087 components: - rot: 3.141592653589793 rad pos: -29.5,17.5 @@ -151146,7 +152344,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22006 + - uid: 22088 components: - rot: -1.5707963267948966 rad pos: -30.5,30.5 @@ -151154,7 +152352,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22007 + - uid: 22089 components: - rot: 3.141592653589793 rad pos: -39.5,18.5 @@ -151162,7 +152360,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22008 + - uid: 22090 components: - rot: -1.5707963267948966 rad pos: -36.5,23.5 @@ -151170,14 +152368,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22009 + - uid: 22091 components: - pos: -43.5,25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22010 + - uid: 22092 components: - rot: 1.5707963267948966 rad pos: -48.5,21.5 @@ -151185,7 +152383,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22011 + - uid: 22093 components: - rot: 1.5707963267948966 rad pos: -48.5,26.5 @@ -151193,7 +152391,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22012 + - uid: 22094 components: - rot: -1.5707963267948966 rad pos: -36.5,30.5 @@ -151201,7 +152399,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22013 + - uid: 22095 components: - rot: 3.141592653589793 rad pos: -47.5,28.5 @@ -151209,14 +152407,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22014 + - uid: 22096 components: - pos: -47.5,36.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22015 + - uid: 22097 components: - rot: 1.5707963267948966 rad pos: -48.5,32.5 @@ -151224,7 +152422,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22016 + - uid: 22098 components: - rot: 3.141592653589793 rad pos: -51.5,19.5 @@ -151232,21 +152430,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22017 + - uid: 22099 components: - pos: -7.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22018 + - uid: 22100 components: - pos: -1.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22019 + - uid: 22101 components: - rot: -1.5707963267948966 rad pos: -11.5,-47.5 @@ -151254,7 +152452,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22020 + - uid: 22102 components: - rot: 3.141592653589793 rad pos: 1.5,-54.5 @@ -151262,14 +152460,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22021 + - uid: 22103 components: - pos: -3.5,-52.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22022 + - uid: 22104 components: - rot: 3.141592653589793 rad pos: -7.5,-54.5 @@ -151277,14 +152475,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22023 + - uid: 22105 components: - pos: -11.5,-52.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22024 + - uid: 22106 components: - rot: 1.5707963267948966 rad pos: -15.5,-53.5 @@ -151292,21 +152490,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22025 + - uid: 22107 components: - pos: -17.5,-54.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22026 + - uid: 22108 components: - pos: -17.5,-59.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22027 + - uid: 22109 components: - rot: -1.5707963267948966 rad pos: -22.5,11.5 @@ -151314,14 +152512,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22028 + - uid: 22110 components: - pos: -26.5,15.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22029 + - uid: 22111 components: - rot: -1.5707963267948966 rad pos: 26.5,11.5 @@ -151329,7 +152527,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22030 + - uid: 22112 components: - rot: 1.5707963267948966 rad pos: -48.5,16.5 @@ -151337,14 +152535,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22031 + - uid: 22113 components: - pos: -47.5,8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22032 + - uid: 22114 components: - rot: 3.141592653589793 rad pos: -46.5,-0.5 @@ -151352,21 +152550,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22033 + - uid: 22115 components: - pos: 8.5,-25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22034 + - uid: 22116 components: - pos: 1.5,-25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22035 + - uid: 22117 components: - rot: -1.5707963267948966 rad pos: 36.5,-34.5 @@ -151374,7 +152572,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22036 + - uid: 22118 components: - rot: 1.5707963267948966 rad pos: 34.5,-29.5 @@ -151382,7 +152580,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22037 + - uid: 22119 components: - rot: -1.5707963267948966 rad pos: 36.5,-24.5 @@ -151390,28 +152588,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22038 + - uid: 22120 components: - pos: 21.5,-21.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22039 + - uid: 22121 components: - pos: 29.5,-21.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22040 + - uid: 22122 components: - pos: -29.5,1.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22041 + - uid: 22123 components: - rot: 3.141592653589793 rad pos: -38.5,-0.5 @@ -151419,7 +152617,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22042 + - uid: 22124 components: - rot: 3.141592653589793 rad pos: -51.5,10.5 @@ -151427,7 +152625,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22043 + - uid: 22125 components: - rot: 1.5707963267948966 rad pos: 19.5,-46.5 @@ -151435,14 +152633,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22044 + - uid: 22126 components: - pos: 32.5,19.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22045 + - uid: 22127 components: - rot: -1.5707963267948966 rad pos: 13.5,-11.5 @@ -151450,7 +152648,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22046 + - uid: 22128 components: - rot: 3.141592653589793 rad pos: 3.5,-65.5 @@ -151458,7 +152656,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22047 + - uid: 22129 components: - rot: 1.5707963267948966 rad pos: 38.5,19.5 @@ -151466,14 +152664,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22048 + - uid: 22130 components: - pos: 64.5,-43.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22049 + - uid: 22131 components: - rot: 3.141592653589793 rad pos: -24.5,-6.5 @@ -151481,7 +152679,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22050 + - uid: 22132 components: - rot: 1.5707963267948966 rad pos: -26.5,-60.5 @@ -151489,14 +152687,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22051 + - uid: 22133 components: - pos: -23.5,-57.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22052 + - uid: 22134 components: - rot: 1.5707963267948966 rad pos: -31.5,-73.5 @@ -151504,7 +152702,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22053 + - uid: 22135 components: - rot: -1.5707963267948966 rad pos: 18.5,9.5 @@ -151512,7 +152710,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22054 + - uid: 22136 components: - rot: 3.141592653589793 rad pos: -18.5,65.5 @@ -151520,14 +152718,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22055 + - uid: 22137 components: - pos: -21.5,45.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22056 + - uid: 22138 components: - rot: 1.5707963267948966 rad pos: -16.5,32.5 @@ -151535,7 +152733,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22057 + - uid: 22139 components: - rot: -1.5707963267948966 rad pos: -14.5,40.5 @@ -151543,7 +152741,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22058 + - uid: 22140 components: - rot: 1.5707963267948966 rad pos: -18.5,46.5 @@ -151551,7 +152749,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22059 + - uid: 22141 components: - rot: 1.5707963267948966 rad pos: -20.5,28.5 @@ -151559,7 +152757,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22060 + - uid: 22142 components: - rot: -1.5707963267948966 rad pos: -2.5,52.5 @@ -151567,7 +152765,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22061 + - uid: 22143 components: - rot: 1.5707963267948966 rad pos: -10.5,55.5 @@ -151575,7 +152773,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22062 + - uid: 22144 components: - rot: 1.5707963267948966 rad pos: -10.5,49.5 @@ -151583,7 +152781,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22063 + - uid: 22145 components: - rot: -1.5707963267948966 rad pos: -40.5,32.5 @@ -151591,14 +152789,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22064 + - uid: 22146 components: - pos: -1.5,46.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22065 + - uid: 22147 components: - rot: 1.5707963267948966 rad pos: -0.5,51.5 @@ -151606,7 +152804,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22066 + - uid: 22148 components: - rot: 1.5707963267948966 rad pos: -0.5,57.5 @@ -151614,21 +152812,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22067 + - uid: 22149 components: - pos: -6.5,59.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22068 + - uid: 22150 components: - pos: -19.5,51.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22069 + - uid: 22151 components: - rot: 1.5707963267948966 rad pos: -22.5,55.5 @@ -151636,7 +152834,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22070 + - uid: 22152 components: - rot: 1.5707963267948966 rad pos: -22.5,66.5 @@ -151644,7 +152842,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22071 + - uid: 22153 components: - rot: -1.5707963267948966 rad pos: -12.5,66.5 @@ -151652,7 +152850,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22072 + - uid: 22154 components: - rot: 1.5707963267948966 rad pos: -13.5,60.5 @@ -151660,7 +152858,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22073 + - uid: 22155 components: - rot: -1.5707963267948966 rad pos: -12.5,54.5 @@ -151668,7 +152866,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22074 + - uid: 22156 components: - rot: 3.141592653589793 rad pos: 28.5,44.5 @@ -151676,7 +152874,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22075 + - uid: 22157 components: - rot: 3.141592653589793 rad pos: -44.5,-85.5 @@ -151684,7 +152882,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22076 + - uid: 22158 components: - rot: -1.5707963267948966 rad pos: -35.5,-95.5 @@ -151692,7 +152890,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22077 + - uid: 22159 components: - rot: 3.141592653589793 rad pos: -71.5,-32.5 @@ -151700,7 +152898,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22078 + - uid: 22160 components: - rot: -1.5707963267948966 rad pos: 18.5,-2.5 @@ -151708,7 +152906,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22079 + - uid: 22161 components: - rot: 1.5707963267948966 rad pos: 60.5,-8.5 @@ -151716,7 +152914,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22080 + - uid: 22162 components: - rot: 1.5707963267948966 rad pos: 57.5,-33.5 @@ -151724,7 +152922,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22081 + - uid: 22163 components: - rot: -1.5707963267948966 rad pos: 75.5,-35.5 @@ -151732,7 +152930,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22082 + - uid: 22164 components: - rot: -1.5707963267948966 rad pos: -5.5,-65.5 @@ -151740,7 +152938,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22083 + - uid: 22165 components: - rot: -1.5707963267948966 rad pos: -15.5,-21.5 @@ -151748,14 +152946,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22084 + - uid: 22166 components: - pos: 67.5,-36.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22085 + - uid: 22167 components: - rot: 1.5707963267948966 rad pos: 60.5,-31.5 @@ -151763,14 +152961,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22086 + - uid: 22168 components: - pos: -62.5,-23.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22087 + - uid: 22169 components: - rot: -1.5707963267948966 rad pos: 73.5,-28.5 @@ -151778,7 +152976,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22088 + - uid: 22170 components: - rot: -1.5707963267948966 rad pos: -53.5,-59.5 @@ -151786,7 +152984,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22089 + - uid: 22171 components: - rot: 1.5707963267948966 rad pos: 71.5,-31.5 @@ -151794,7 +152992,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22090 + - uid: 22172 components: - rot: 3.141592653589793 rad pos: 4.5,-35.5 @@ -151802,7 +153000,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22091 + - uid: 22173 components: - rot: -1.5707963267948966 rad pos: 32.5,28.5 @@ -151810,21 +153008,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22092 + - uid: 22174 components: - pos: 58.5,-28.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22093 + - uid: 22175 components: - pos: 34.5,-16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22094 + - uid: 22176 components: - rot: -1.5707963267948966 rad pos: 6.5,-30.5 @@ -151832,14 +153030,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22095 + - uid: 22177 components: - pos: 55.5,-47.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22096 + - uid: 22178 components: - rot: -1.5707963267948966 rad pos: -43.5,4.5 @@ -151847,7 +153045,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22097 + - uid: 22179 components: - rot: -1.5707963267948966 rad pos: 76.5,-49.5 @@ -151855,7 +153053,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22098 + - uid: 22180 components: - rot: -1.5707963267948966 rad pos: -60.5,-28.5 @@ -151863,14 +153061,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22099 + - uid: 22181 components: - pos: -50.5,35.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22100 + - uid: 22182 components: - rot: -1.5707963267948966 rad pos: -14.5,25.5 @@ -151878,7 +153076,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22101 + - uid: 22183 components: - rot: 1.5707963267948966 rad pos: -0.5,6.5 @@ -151886,7 +153084,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22102 + - uid: 22184 components: - rot: 3.141592653589793 rad pos: 25.5,-25.5 @@ -151894,14 +153092,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22103 + - uid: 22185 components: - pos: -21.5,8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22104 + - uid: 22186 components: - rot: 3.141592653589793 rad pos: -33.5,-0.5 @@ -151909,14 +153107,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22105 + - uid: 22187 components: - pos: -51.5,23.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22106 + - uid: 22188 components: - rot: -1.5707963267948966 rad pos: -44.5,15.5 @@ -151924,7 +153122,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22107 + - uid: 22189 components: - rot: -1.5707963267948966 rad pos: -10.5,-18.5 @@ -151932,7 +153130,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22108 + - uid: 22190 components: - rot: 1.5707963267948966 rad pos: -25.5,-15.5 @@ -151940,7 +153138,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22109 + - uid: 22191 components: - rot: 1.5707963267948966 rad pos: -14.5,-0.5 @@ -151948,7 +153146,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22110 + - uid: 22192 components: - rot: -1.5707963267948966 rad pos: -45.5,10.5 @@ -151956,7 +153154,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22111 + - uid: 22193 components: - rot: 1.5707963267948966 rad pos: 2.5,-49.5 @@ -151964,7 +153162,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22112 + - uid: 22194 components: - rot: -1.5707963267948966 rad pos: 32.5,-21.5 @@ -151972,7 +153170,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22113 + - uid: 22195 components: - rot: 1.5707963267948966 rad pos: 18.5,-21.5 @@ -151980,7 +153178,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22114 + - uid: 22196 components: - rot: 1.5707963267948966 rad pos: -0.5,9.5 @@ -151988,7 +153186,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22115 + - uid: 22197 components: - rot: -1.5707963267948966 rad pos: 6.5,5.5 @@ -151996,7 +153194,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22116 + - uid: 22198 components: - rot: 3.141592653589793 rad pos: 9.5,-1.5 @@ -152004,7 +153202,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22117 + - uid: 22199 components: - rot: 1.5707963267948966 rad pos: -50.5,-38.5 @@ -152012,21 +153210,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22118 + - uid: 22200 components: - pos: -49.5,-34.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22119 + - uid: 22201 components: - pos: 28.5,-80.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22120 + - uid: 22202 components: - rot: -1.5707963267948966 rad pos: 31.5,-88.5 @@ -152034,7 +153232,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22121 + - uid: 22203 components: - rot: -1.5707963267948966 rad pos: 49.5,-80.5 @@ -152042,14 +153240,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22122 + - uid: 22204 components: - pos: 48.5,-71.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22123 + - uid: 22205 components: - rot: -1.5707963267948966 rad pos: 19.5,-82.5 @@ -152057,7 +153255,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22124 + - uid: 22206 components: - rot: 3.141592653589793 rad pos: 12.5,-86.5 @@ -152065,7 +153263,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22125 + - uid: 22207 components: - rot: 1.5707963267948966 rad pos: 22.5,-72.5 @@ -152073,14 +153271,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22126 + - uid: 22208 components: - pos: 29.5,-71.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22127 + - uid: 22209 components: - rot: -1.5707963267948966 rad pos: 40.5,-66.5 @@ -152088,21 +153286,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22128 + - uid: 22210 components: - pos: 24.5,-69.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22129 + - uid: 22211 components: - pos: 15.5,-79.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22130 + - uid: 22212 components: - rot: 1.5707963267948966 rad pos: 37.5,11.5 @@ -152110,7 +153308,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22131 + - uid: 22213 components: - rot: 3.141592653589793 rad pos: 28.5,-2.5 @@ -152118,7 +153316,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22132 + - uid: 22214 components: - rot: -1.5707963267948966 rad pos: -38.5,-47.5 @@ -152126,7 +153324,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 22133 + - uid: 22215 components: - rot: 1.5707963267948966 rad pos: -44.5,-41.5 @@ -152134,7 +153332,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 22134 + - uid: 22216 components: - rot: 1.5707963267948966 rad pos: 20.5,22.5 @@ -152142,7 +153340,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 22135 + - uid: 22217 components: - rot: -1.5707963267948966 rad pos: -45.5,41.5 @@ -152150,7 +153348,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 22136 + - uid: 22218 components: - rot: 1.5707963267948966 rad pos: -50.5,44.5 @@ -152158,7 +153356,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 22137 + - uid: 22219 components: - rot: 3.141592653589793 rad pos: 67.5,-31.5 @@ -152166,7 +153364,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 22138 + - uid: 22220 components: - rot: 1.5707963267948966 rad pos: 65.5,-29.5 @@ -152174,7 +153372,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 22139 + - uid: 22221 components: - rot: -1.5707963267948966 rad pos: -3.5,17.5 @@ -152182,7 +153380,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 22140 + - uid: 22222 components: - rot: 1.5707963267948966 rad pos: -8.5,17.5 @@ -152190,7 +153388,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 22141 + - uid: 22223 components: - rot: 3.141592653589793 rad pos: -44.5,-17.5 @@ -152198,21 +153396,21 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 22142 + - uid: 22224 components: - pos: 77.5,-43.5 parent: 2 type: Transform - enabled: False type: AmbientSound - - uid: 22143 + - uid: 22225 components: - pos: -71.5,-37.5 parent: 2 type: Transform - enabled: False type: AmbientSound - - uid: 22144 + - uid: 22226 components: - rot: 3.141592653589793 rad pos: -65.5,-46.5 @@ -152220,7 +153418,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 22145 + - uid: 22227 components: - rot: 3.141592653589793 rad pos: -71.5,-46.5 @@ -152228,14 +153426,14 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 22146 + - uid: 22228 components: - pos: -65.5,-36.5 parent: 2 type: Transform - enabled: False type: AmbientSound - - uid: 22147 + - uid: 22229 components: - rot: 3.141592653589793 rad pos: -66.5,-34.5 @@ -152243,7 +153441,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 22148 + - uid: 22230 components: - rot: -1.5707963267948966 rad pos: -30.5,-32.5 @@ -152251,16 +153449,81 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 22187 + - uid: 22231 components: - pos: -35.5,-15.5 parent: 2 type: Transform - enabled: False type: AmbientSound + - uid: 22232 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 22233 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - links: + - 23885 + type: DeviceLinkSink + - uid: 22234 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-38.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 22235 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-37.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 22236 + components: + - pos: 24.5,-34.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 22237 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-23.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 22238 + components: + - pos: -1.5,-19.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 22239 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-11.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound - proto: PoweredlightEmpty entities: - - uid: 22149 + - uid: 22240 components: - rot: 3.141592653589793 rad pos: -39.5,-85.5 @@ -152268,7 +153531,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22150 + - uid: 22241 components: - rot: 3.141592653589793 rad pos: -40.5,-92.5 @@ -152276,7 +153539,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22151 + - uid: 22242 components: - rot: 3.141592653589793 rad pos: -40.5,-97.5 @@ -152284,7 +153547,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22152 + - uid: 22243 components: - rot: 3.141592653589793 rad pos: -28.5,-98.5 @@ -152292,7 +153555,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22153 + - uid: 22244 components: - rot: 3.141592653589793 rad pos: -16.5,-98.5 @@ -152300,21 +153563,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22154 + - uid: 22245 components: - pos: -13.5,13.5 parent: 2 type: Transform - proto: PoweredlightExterior entities: - - uid: 22155 + - uid: 22246 components: - pos: -1.5,72.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22156 + - uid: 22247 components: - rot: 1.5707963267948966 rad pos: -7.5,68.5 @@ -152322,7 +153585,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22157 + - uid: 22248 components: - rot: -1.5707963267948966 rad pos: 4.5,68.5 @@ -152330,7 +153593,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22158 + - uid: 22249 components: - rot: -1.5707963267948966 rad pos: -54.5,-85.5 @@ -152338,7 +153601,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22159 + - uid: 22250 components: - rot: -1.5707963267948966 rad pos: -54.5,-89.5 @@ -152346,46 +153609,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver -- proto: PoweredlightLED - entities: - - uid: 21342 - components: - - pos: 1.5,-3.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 21365 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-6.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 23743 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-7.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - proto: PoweredLightPostSmall entities: - - uid: 22160 + - uid: 22251 components: - pos: -0.5,-85.5 parent: 2 type: Transform - - uid: 22161 + - uid: 22252 components: - pos: -2.5,-85.5 parent: 2 type: Transform - proto: PoweredlightSodium entities: - - uid: 22162 + - uid: 22253 components: - rot: 3.141592653589793 rad pos: 72.5,34.5 @@ -152393,7 +153631,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22163 + - uid: 22254 components: - rot: 1.5707963267948966 rad pos: 14.5,-65.5 @@ -152401,28 +153639,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22164 + - uid: 22255 components: - pos: -18.5,4.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22165 + - uid: 22256 components: - pos: -40.5,-15.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22166 + - uid: 22257 components: - pos: -20.5,-95.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22167 + - uid: 22258 components: - rot: 3.141592653589793 rad pos: -7.5,-100.5 @@ -152430,7 +153668,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22168 + - uid: 22259 components: - rot: -1.5707963267948966 rad pos: 12.5,-20.5 @@ -152440,56 +153678,40 @@ entities: type: ApcPowerReceiver - proto: PoweredSmallLight entities: - - uid: 10112 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-35.5 - parent: 2 - type: Transform - - uid: 21358 - components: - - pos: 24.5,-34.5 - parent: 2 - type: Transform - - uid: 21359 - components: - - pos: 30.5,-32.5 - parent: 2 - type: Transform - - uid: 22169 + - uid: 22260 components: - pos: -43.5,-34.5 parent: 2 type: Transform - - uid: 22170 + - uid: 22261 components: - pos: -52.5,-36.5 parent: 2 type: Transform - - uid: 22171 + - uid: 22262 components: - pos: -76.5,-31.5 parent: 2 type: Transform - - uid: 22172 + - uid: 22263 components: - pos: 51.5,-82.5 parent: 2 type: Transform - - uid: 22173 + - uid: 22264 components: - rot: -1.5707963267948966 rad pos: -49.5,46.5 parent: 2 type: Transform - - uid: 22174 + - uid: 22265 components: - pos: 20.5,-52.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22175 + - uid: 22266 components: - rot: 3.141592653589793 rad pos: 16.5,-55.5 @@ -152497,29 +153719,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22176 + - uid: 22267 components: - pos: 16.5,-52.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22177 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-39.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 22178 + - uid: 22268 components: - pos: 1.5,-40.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22179 + - uid: 22269 components: - rot: 1.5707963267948966 rad pos: -31.5,-47.5 @@ -152527,7 +153741,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22180 + - uid: 22270 components: - rot: 3.141592653589793 rad pos: 20.5,-32.5 @@ -152535,7 +153749,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22181 + - uid: 22271 components: - rot: -1.5707963267948966 rad pos: -4.5,-74.5 @@ -152543,21 +153757,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22182 + - uid: 22272 components: - pos: 0.5,-73.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22183 + - uid: 22273 components: - pos: 33.5,-10.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22184 + - uid: 22274 components: - rot: 3.141592653589793 rad pos: 10.5,-17.5 @@ -152565,7 +153779,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22185 + - uid: 22275 components: - rot: 1.5707963267948966 rad pos: 17.5,-12.5 @@ -152573,7 +153787,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22186 + - uid: 22276 components: - rot: -1.5707963267948966 rad pos: 22.5,-13.5 @@ -152581,7 +153795,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22188 + - uid: 22277 components: - rot: 1.5707963267948966 rad pos: -74.5,-12.5 @@ -152589,7 +153803,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22189 + - uid: 22278 components: - rot: 1.5707963267948966 rad pos: 6.5,49.5 @@ -152597,14 +153811,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22190 + - uid: 22279 components: - pos: 33.5,-89.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22191 + - uid: 22280 components: - rot: -1.5707963267948966 rad pos: -7.5,-5.5 @@ -152612,7 +153826,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22193 + - uid: 22281 components: - rot: -1.5707963267948966 rad pos: 26.5,-29.5 @@ -152620,7 +153834,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22194 + - uid: 22282 components: - rot: 1.5707963267948966 rad pos: -2.5,-78.5 @@ -152628,14 +153842,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22195 + - uid: 22283 components: - pos: -15.5,-63.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22196 + - uid: 22284 components: - rot: 3.141592653589793 rad pos: -13.5,-67.5 @@ -152643,14 +153857,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22197 + - uid: 22285 components: - pos: -20.5,-66.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22198 + - uid: 22286 components: - rot: 3.141592653589793 rad pos: -5.5,-50.5 @@ -152658,28 +153872,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22199 + - uid: 22287 components: - pos: -20.5,-63.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22200 + - uid: 22288 components: - pos: -15.5,-75.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22201 + - uid: 22289 components: - pos: -15.5,-69.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22202 + - uid: 22290 components: - rot: 3.141592653589793 rad pos: -15.5,-79.5 @@ -152687,7 +153901,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22203 + - uid: 22291 components: - rot: 1.5707963267948966 rad pos: -30.5,-80.5 @@ -152695,7 +153909,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22204 + - uid: 22292 components: - rot: 1.5707963267948966 rad pos: -30.5,-78.5 @@ -152703,7 +153917,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22205 + - uid: 22293 components: - rot: 3.141592653589793 rad pos: -26.5,-90.5 @@ -152711,7 +153925,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22206 + - uid: 22294 components: - rot: 3.141592653589793 rad pos: -22.5,-90.5 @@ -152719,7 +153933,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22207 + - uid: 22295 components: - rot: 3.141592653589793 rad pos: -30.5,-7.5 @@ -152727,7 +153941,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22208 + - uid: 22296 components: - rot: -1.5707963267948966 rad pos: 22.5,12.5 @@ -152735,7 +153949,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22209 + - uid: 22297 components: - rot: -1.5707963267948966 rad pos: -14.5,-37.5 @@ -152743,7 +153957,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22210 + - uid: 22298 components: - rot: -1.5707963267948966 rad pos: 55.5,29.5 @@ -152751,28 +153965,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22211 + - uid: 22299 components: - pos: 49.5,-33.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22212 + - uid: 22300 components: - pos: -8.5,-29.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22213 + - uid: 22301 components: - pos: -16.5,-29.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22214 + - uid: 22302 components: - rot: -1.5707963267948966 rad pos: 30.5,25.5 @@ -152780,21 +153994,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22215 + - uid: 22303 components: - pos: 37.5,8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22216 + - uid: 22304 components: - pos: 37.5,5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22217 + - uid: 22305 components: - rot: 1.5707963267948966 rad pos: 34.5,11.5 @@ -152802,7 +154016,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22218 + - uid: 22306 components: - rot: 1.5707963267948966 rad pos: 31.5,11.5 @@ -152810,7 +154024,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22219 + - uid: 22307 components: - rot: 1.5707963267948966 rad pos: 28.5,11.5 @@ -152818,7 +154032,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22220 + - uid: 22308 components: - rot: 3.141592653589793 rad pos: 45.5,14.5 @@ -152826,7 +154040,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22221 + - uid: 22309 components: - rot: 1.5707963267948966 rad pos: 58.5,23.5 @@ -152834,7 +154048,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22222 + - uid: 22310 components: - rot: 1.5707963267948966 rad pos: 55.5,23.5 @@ -152842,7 +154056,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22223 + - uid: 22311 components: - rot: 1.5707963267948966 rad pos: 52.5,23.5 @@ -152850,7 +154064,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22224 + - uid: 22312 components: - rot: 1.5707963267948966 rad pos: 49.5,23.5 @@ -152858,7 +154072,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22225 + - uid: 22313 components: - rot: 1.5707963267948966 rad pos: 46.5,23.5 @@ -152866,21 +154080,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22226 + - uid: 22314 components: - pos: 61.5,19.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22227 + - uid: 22315 components: - pos: 61.5,16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22228 + - uid: 22316 components: - rot: 1.5707963267948966 rad pos: 62.5,11.5 @@ -152888,14 +154102,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22229 + - uid: 22317 components: - pos: 62.5,22.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22230 + - uid: 22318 components: - rot: -1.5707963267948966 rad pos: 54.5,12.5 @@ -152903,7 +154117,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22231 + - uid: 22319 components: - rot: 1.5707963267948966 rad pos: 62.5,6.5 @@ -152911,14 +154125,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22232 + - uid: 22320 components: - pos: 60.5,2.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22233 + - uid: 22321 components: - rot: 1.5707963267948966 rad pos: 56.5,-1.5 @@ -152926,14 +154140,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22234 + - uid: 22322 components: - pos: 35.5,20.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22235 + - uid: 22323 components: - rot: 1.5707963267948966 rad pos: 44.5,18.5 @@ -152941,7 +154155,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22236 + - uid: 22324 components: - rot: -1.5707963267948966 rad pos: 48.5,-2.5 @@ -152949,14 +154163,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22237 + - uid: 22325 components: - pos: 49.5,-7.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22238 + - uid: 22326 components: - rot: -1.5707963267948966 rad pos: 62.5,-38.5 @@ -152964,7 +154178,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22239 + - uid: 22327 components: - rot: -1.5707963267948966 rad pos: 39.5,-45.5 @@ -152972,7 +154186,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22240 + - uid: 22328 components: - rot: 1.5707963267948966 rad pos: 62.5,-19.5 @@ -152980,7 +154194,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22241 + - uid: 22329 components: - rot: -1.5707963267948966 rad pos: 62.5,-15.5 @@ -152988,14 +154202,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22242 + - uid: 22330 components: - pos: -18.5,-0.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22243 + - uid: 22331 components: - rot: -1.5707963267948966 rad pos: -28.5,-21.5 @@ -153003,28 +154217,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22244 + - uid: 22332 components: - pos: 46.5,-51.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22245 + - uid: 22333 components: - pos: 12.5,-72.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22246 + - uid: 22334 components: - pos: 45.5,-89.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22247 + - uid: 22335 components: - rot: 1.5707963267948966 rad pos: 48.5,-94.5 @@ -153032,14 +154246,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22248 + - uid: 22336 components: - pos: 20.5,-73.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22249 + - uid: 22337 components: - rot: 1.5707963267948966 rad pos: -32.5,-5.5 @@ -153047,28 +154261,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22250 + - uid: 22338 components: - pos: -20.5,-45.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22251 + - uid: 22339 components: - pos: -26.5,-26.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22252 + - uid: 22340 components: - pos: 43.5,-51.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22253 + - uid: 22341 components: - rot: 1.5707963267948966 rad pos: 36.5,-51.5 @@ -153076,7 +154290,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22254 + - uid: 22342 components: - rot: -1.5707963267948966 rad pos: 15.5,-48.5 @@ -153084,42 +154298,42 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22255 + - uid: 22343 components: - pos: 10.5,-55.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22256 + - uid: 22344 components: - pos: 15.5,-57.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22257 + - uid: 22345 components: - pos: 9.5,-64.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22258 + - uid: 22346 components: - pos: -5.5,-68.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22259 + - uid: 22347 components: - pos: -33.5,-69.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22260 + - uid: 22348 components: - rot: 1.5707963267948966 rad pos: -56.5,-78.5 @@ -153127,7 +154341,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22261 + - uid: 22349 components: - rot: 3.141592653589793 rad pos: -51.5,-79.5 @@ -153135,14 +154349,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22262 + - uid: 22350 components: - pos: -26.5,-66.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22263 + - uid: 22351 components: - rot: 1.5707963267948966 rad pos: -28.5,-61.5 @@ -153150,7 +154364,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22264 + - uid: 22352 components: - rot: 1.5707963267948966 rad pos: -50.5,-68.5 @@ -153158,21 +154372,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22265 + - uid: 22353 components: - pos: -37.5,-63.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22266 + - uid: 22354 components: - pos: -44.5,-63.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22267 + - uid: 22355 components: - rot: 1.5707963267948966 rad pos: -22.5,-55.5 @@ -153180,14 +154394,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22268 + - uid: 22356 components: - pos: -29.5,-43.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22269 + - uid: 22357 components: - rot: 1.5707963267948966 rad pos: -28.5,-53.5 @@ -153195,14 +154409,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22270 + - uid: 22358 components: - pos: -22.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22271 + - uid: 22359 components: - rot: 1.5707963267948966 rad pos: -29.5,-41.5 @@ -153210,21 +154424,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22272 - components: - - pos: 24.5,-32.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 22273 + - uid: 22360 components: - pos: 44.5,-13.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22274 + - uid: 22361 components: - rot: 1.5707963267948966 rad pos: 35.5,-13.5 @@ -153232,21 +154439,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22275 + - uid: 22362 components: - pos: 39.5,-7.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22276 + - uid: 22363 components: - pos: 31.5,-8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22277 + - uid: 22364 components: - rot: 1.5707963267948966 rad pos: 46.5,-7.5 @@ -153254,7 +154461,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22278 + - uid: 22365 components: - rot: 1.5707963267948966 rad pos: 65.5,24.5 @@ -153262,14 +154469,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22279 + - uid: 22366 components: - pos: 57.5,26.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22280 + - uid: 22367 components: - rot: 3.141592653589793 rad pos: 49.5,26.5 @@ -153277,28 +154484,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22281 + - uid: 22368 components: - pos: -41.5,-24.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22282 + - uid: 22369 components: - pos: -39.5,-28.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22283 + - uid: 22370 components: - pos: -45.5,-27.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22284 + - uid: 22371 components: - rot: 1.5707963267948966 rad pos: -44.5,-30.5 @@ -153306,7 +154513,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22285 + - uid: 22372 components: - rot: -1.5707963267948966 rad pos: -35.5,-29.5 @@ -153314,7 +154521,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22286 + - uid: 22373 components: - rot: -1.5707963267948966 rad pos: -54.5,-33.5 @@ -153322,7 +154529,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22287 + - uid: 22374 components: - rot: 1.5707963267948966 rad pos: -57.5,-38.5 @@ -153330,7 +154537,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22288 + - uid: 22375 components: - rot: 1.5707963267948966 rad pos: -29.5,-29.5 @@ -153338,14 +154545,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22289 + - uid: 22376 components: - pos: -29.5,-25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22290 + - uid: 22377 components: - rot: 3.141592653589793 rad pos: -35.5,-26.5 @@ -153353,14 +154560,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22291 + - uid: 22378 components: - pos: 15.5,-8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22292 + - uid: 22379 components: - rot: 1.5707963267948966 rad pos: 14.5,-4.5 @@ -153368,7 +154575,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22293 + - uid: 22380 components: - rot: 3.141592653589793 rad pos: 14.5,-14.5 @@ -153376,7 +154583,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22294 + - uid: 22381 components: - rot: 1.5707963267948966 rad pos: -0.5,-13.5 @@ -153384,20 +154591,20 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22295 + - uid: 22382 components: - pos: 1.5,-16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22296 + - uid: 22383 components: - rot: -1.5707963267948966 rad pos: -72.5,-34.5 parent: 2 type: Transform - - uid: 22297 + - uid: 22384 components: - rot: 1.5707963267948966 rad pos: -32.5,-7.5 @@ -153405,7 +154612,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22298 + - uid: 22385 components: - rot: 1.5707963267948966 rad pos: 62.5,28.5 @@ -153413,56 +154620,56 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22299 + - uid: 22386 components: - pos: -49.5,-42.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22300 + - uid: 22387 components: - pos: -49.5,-44.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22301 + - uid: 22388 components: - pos: -49.5,-46.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22302 + - uid: 22389 components: - pos: -49.5,-48.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22303 + - uid: 22390 components: - pos: -49.5,-50.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22304 + - uid: 22391 components: - pos: -49.5,-52.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22305 + - uid: 22392 components: - pos: -49.5,-54.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22306 + - uid: 22393 components: - rot: 1.5707963267948966 rad pos: 15.5,33.5 @@ -153470,14 +154677,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22307 + - uid: 22394 components: - pos: 21.5,25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22308 + - uid: 22395 components: - rot: 3.141592653589793 rad pos: 11.5,24.5 @@ -153485,14 +154692,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22309 + - uid: 22396 components: - pos: -6.5,32.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22310 + - uid: 22397 components: - rot: -1.5707963267948966 rad pos: 0.5,33.5 @@ -153500,7 +154707,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22311 + - uid: 22398 components: - rot: 1.5707963267948966 rad pos: -0.5,-10.5 @@ -153508,7 +154715,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22312 + - uid: 22399 components: - rot: 1.5707963267948966 rad pos: -54.5,-0.5 @@ -153516,7 +154723,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22313 + - uid: 22400 components: - rot: -1.5707963267948966 rad pos: -28.5,-3.5 @@ -153524,7 +154731,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22314 + - uid: 22401 components: - rot: 1.5707963267948966 rad pos: -41.5,4.5 @@ -153532,7 +154739,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22315 + - uid: 22402 components: - rot: 3.141592653589793 rad pos: -30.5,3.5 @@ -153540,7 +154747,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22316 + - uid: 22403 components: - rot: 1.5707963267948966 rad pos: -33.5,9.5 @@ -153548,7 +154755,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22317 + - uid: 22404 components: - rot: -1.5707963267948966 rad pos: -28.5,9.5 @@ -153556,7 +154763,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22318 + - uid: 22405 components: - rot: -1.5707963267948966 rad pos: -29.5,14.5 @@ -153564,14 +154771,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22319 + - uid: 22406 components: - pos: -35.5,15.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22320 + - uid: 22407 components: - rot: -1.5707963267948966 rad pos: -35.5,9.5 @@ -153579,7 +154786,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22321 + - uid: 22408 components: - rot: 1.5707963267948966 rad pos: -40.5,9.5 @@ -153587,7 +154794,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22322 + - uid: 22409 components: - rot: -1.5707963267948966 rad pos: -12.5,19.5 @@ -153595,7 +154802,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22323 + - uid: 22410 components: - rot: 1.5707963267948966 rad pos: -16.5,21.5 @@ -153603,7 +154810,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22324 + - uid: 22411 components: - rot: 3.141592653589793 rad pos: -9.5,21.5 @@ -153611,14 +154818,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22325 + - uid: 22412 components: - pos: -0.5,24.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22326 + - uid: 22413 components: - rot: -1.5707963267948966 rad pos: -42.5,10.5 @@ -153626,7 +154833,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22327 + - uid: 22414 components: - rot: 1.5707963267948966 rad pos: -52.5,14.5 @@ -153634,7 +154841,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22328 + - uid: 22415 components: - rot: -1.5707963267948966 rad pos: -51.5,7.5 @@ -153642,28 +154849,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22329 + - uid: 22416 components: - pos: -44.5,-2.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22330 + - uid: 22417 components: - pos: -40.5,-2.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22331 + - uid: 22418 components: - pos: -49.5,1.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22332 + - uid: 22419 components: - rot: -1.5707963267948966 rad pos: -37.5,-39.5 @@ -153671,14 +154878,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22333 + - uid: 22420 components: - pos: -35.5,-38.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22334 + - uid: 22421 components: - rot: -1.5707963267948966 rad pos: 2.5,-69.5 @@ -153686,7 +154893,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22335 + - uid: 22422 components: - rot: 3.141592653589793 rad pos: -63.5,-21.5 @@ -153694,7 +154901,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22336 + - uid: 22423 components: - rot: 3.141592653589793 rad pos: -69.5,-21.5 @@ -153702,21 +154909,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22337 + - uid: 22424 components: - pos: -68.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22338 + - uid: 22425 components: - pos: -64.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22339 + - uid: 22426 components: - rot: -1.5707963267948966 rad pos: -57.5,-10.5 @@ -153724,7 +154931,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22340 + - uid: 22427 components: - rot: -1.5707963267948966 rad pos: -57.5,-16.5 @@ -153732,7 +154939,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22341 + - uid: 22428 components: - rot: -1.5707963267948966 rad pos: 61.5,24.5 @@ -153740,7 +154947,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22342 + - uid: 22429 components: - rot: -1.5707963267948966 rad pos: 63.5,24.5 @@ -153748,7 +154955,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22343 + - uid: 22430 components: - rot: 3.141592653589793 rad pos: 63.5,13.5 @@ -153756,7 +154963,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22344 + - uid: 22431 components: - rot: 3.141592653589793 rad pos: 63.5,11.5 @@ -153764,7 +154971,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22345 + - uid: 22432 components: - rot: 3.141592653589793 rad pos: 63.5,9.5 @@ -153772,15 +154979,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22346 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-29.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 22347 + - uid: 22433 components: - rot: 3.141592653589793 rad pos: -47.5,53.5 @@ -153788,7 +154987,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22348 + - uid: 22434 components: - rot: 3.141592653589793 rad pos: -41.5,53.5 @@ -153796,7 +154995,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22349 + - uid: 22435 components: - rot: 1.5707963267948966 rad pos: -40.5,52.5 @@ -153804,7 +155003,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22350 + - uid: 22436 components: - rot: 1.5707963267948966 rad pos: -46.5,52.5 @@ -153812,7 +155011,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22351 + - uid: 22437 components: - rot: -1.5707963267948966 rad pos: 23.5,34.5 @@ -153820,7 +155019,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22352 + - uid: 22438 components: - rot: 1.5707963267948966 rad pos: 13.5,-45.5 @@ -153828,21 +155027,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22353 + - uid: 22439 components: - pos: -51.5,-73.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22354 + - uid: 22440 components: - pos: -8.5,-71.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22355 + - uid: 22441 components: - rot: 1.5707963267948966 rad pos: 7.5,-17.5 @@ -153850,7 +155049,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22356 + - uid: 22442 components: - rot: 3.141592653589793 rad pos: 39.5,-30.5 @@ -153858,14 +155057,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22358 + - uid: 22443 components: - pos: -30.5,-54.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22359 + - uid: 22444 components: - rot: 3.141592653589793 rad pos: 10.5,-47.5 @@ -153873,14 +155072,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22360 + - uid: 22445 components: - pos: 56.5,59.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22361 + - uid: 22446 components: - rot: 3.141592653589793 rad pos: 52.5,55.5 @@ -153888,7 +155087,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22362 + - uid: 22447 components: - rot: 3.141592653589793 rad pos: 58.5,42.5 @@ -153896,7 +155095,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22363 + - uid: 22448 components: - rot: 3.141592653589793 rad pos: 51.5,42.5 @@ -153904,14 +155103,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22364 + - uid: 22449 components: - pos: 15.5,39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22365 + - uid: 22450 components: - rot: 1.5707963267948966 rad pos: 60.5,46.5 @@ -153919,7 +155118,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22366 + - uid: 22451 components: - rot: 1.5707963267948966 rad pos: 65.5,9.5 @@ -153927,21 +155126,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22367 + - uid: 22452 components: - pos: 9.5,34.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22368 + - uid: 22453 components: - pos: -23.5,31.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22369 + - uid: 22454 components: - rot: 3.141592653589793 rad pos: 57.5,28.5 @@ -153949,7 +155148,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22370 + - uid: 22455 components: - rot: 1.5707963267948966 rad pos: -21.5,33.5 @@ -153957,28 +155156,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22371 + - uid: 22456 components: - pos: 46.5,39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22372 + - uid: 22457 components: - pos: 54.5,50.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22373 + - uid: 22458 components: - pos: 45.5,32.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22374 + - uid: 22459 components: - rot: -1.5707963267948966 rad pos: 48.5,46.5 @@ -153986,7 +155185,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22375 + - uid: 22460 components: - rot: -1.5707963267948966 rad pos: -11.5,33.5 @@ -153994,14 +155193,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22376 + - uid: 22461 components: - pos: -11.5,39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22377 + - uid: 22462 components: - rot: 3.141592653589793 rad pos: 43.5,44.5 @@ -154009,7 +155208,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22378 + - uid: 22463 components: - rot: 3.141592653589793 rad pos: -20.5,37.5 @@ -154017,14 +155216,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22379 + - uid: 22464 components: - pos: -27.5,46.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22380 + - uid: 22465 components: - rot: -1.5707963267948966 rad pos: -20.5,48.5 @@ -154032,14 +155231,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22381 + - uid: 22466 components: - pos: -10.5,29.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22382 + - uid: 22467 components: - rot: -1.5707963267948966 rad pos: -17.5,69.5 @@ -154047,7 +155246,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22383 + - uid: 22468 components: - rot: -1.5707963267948966 rad pos: -12.5,74.5 @@ -154055,7 +155254,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22384 + - uid: 22469 components: - rot: 1.5707963267948966 rad pos: -22.5,74.5 @@ -154063,7 +155262,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22385 + - uid: 22470 components: - rot: 3.141592653589793 rad pos: -15.5,60.5 @@ -154071,14 +155270,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22386 + - uid: 22471 components: - pos: -18.5,55.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22387 + - uid: 22472 components: - rot: -1.5707963267948966 rad pos: -24.5,42.5 @@ -154086,7 +155285,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22388 + - uid: 22473 components: - rot: 3.141592653589793 rad pos: -25.5,33.5 @@ -154094,21 +155293,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22389 + - uid: 22474 components: - pos: -30.5,39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22390 + - uid: 22475 components: - pos: -42.5,39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22391 + - uid: 22476 components: - rot: 3.141592653589793 rad pos: -28.5,27.5 @@ -154116,7 +155315,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22392 + - uid: 22477 components: - rot: 3.141592653589793 rad pos: 54.5,52.5 @@ -154124,7 +155323,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22393 + - uid: 22478 components: - rot: -1.5707963267948966 rad pos: -45.5,-87.5 @@ -154132,7 +155331,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22394 + - uid: 22479 components: - rot: 1.5707963267948966 rad pos: 8.5,-37.5 @@ -154140,7 +155339,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22395 + - uid: 22480 components: - rot: 1.5707963267948966 rad pos: 74.5,-40.5 @@ -154148,28 +155347,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22396 + - uid: 22481 components: - pos: 67.5,-33.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22397 + - uid: 22482 components: - pos: 67.5,-11.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22398 + - uid: 22483 components: - pos: 67.5,-3.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22399 + - uid: 22484 components: - rot: -1.5707963267948966 rad pos: -5.5,-56.5 @@ -154177,21 +155376,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22400 + - uid: 22485 components: - pos: 67.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22401 + - uid: 22486 components: - pos: 67.5,-13.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22402 + - uid: 22487 components: - rot: -1.5707963267948966 rad pos: -8.5,-56.5 @@ -154199,7 +155398,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22403 + - uid: 22488 components: - rot: -1.5707963267948966 rad pos: -11.5,-56.5 @@ -154207,7 +155406,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22404 + - uid: 22489 components: - rot: -1.5707963267948966 rad pos: 0.5,-56.5 @@ -154215,7 +155414,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22405 + - uid: 22490 components: - rot: -1.5707963267948966 rad pos: -2.5,-56.5 @@ -154223,21 +155422,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22406 + - uid: 22491 components: - pos: 78.5,-33.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22407 + - uid: 22492 components: - pos: 78.5,-36.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22408 + - uid: 22493 components: - rot: 1.5707963267948966 rad pos: 54.5,-55.5 @@ -154245,7 +155444,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22409 + - uid: 22494 components: - rot: 3.141592653589793 rad pos: 41.5,-33.5 @@ -154253,7 +155452,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22410 + - uid: 22495 components: - rot: 1.5707963267948966 rad pos: 77.5,-57.5 @@ -154261,7 +155460,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22411 + - uid: 22496 components: - rot: -1.5707963267948966 rad pos: 43.5,-63.5 @@ -154269,7 +155468,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22412 + - uid: 22497 components: - rot: -1.5707963267948966 rad pos: 56.5,-66.5 @@ -154277,7 +155476,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22413 + - uid: 22498 components: - rot: 3.141592653589793 rad pos: 54.5,-37.5 @@ -154285,7 +155484,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22414 + - uid: 22499 components: - rot: 1.5707963267948966 rad pos: 53.5,-26.5 @@ -154293,14 +155492,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22415 + - uid: 22500 components: - pos: 59.5,-26.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22416 + - uid: 22501 components: - rot: -1.5707963267948966 rad pos: 63.5,-68.5 @@ -154308,7 +155507,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22417 + - uid: 22502 components: - rot: 1.5707963267948966 rad pos: 58.5,-66.5 @@ -154316,7 +155515,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22418 + - uid: 22503 components: - rot: 3.141592653589793 rad pos: 67.5,-66.5 @@ -154324,7 +155523,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22419 + - uid: 22504 components: - rot: 1.5707963267948966 rad pos: 72.5,-67.5 @@ -154332,7 +155531,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22420 + - uid: 22505 components: - rot: 1.5707963267948966 rad pos: 75.5,-53.5 @@ -154340,7 +155539,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22421 + - uid: 22506 components: - rot: 1.5707963267948966 rad pos: 73.5,-63.5 @@ -154348,7 +155547,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22422 + - uid: 22507 components: - rot: -1.5707963267948966 rad pos: 72.5,-55.5 @@ -154356,7 +155555,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22423 + - uid: 22508 components: - rot: 3.141592653589793 rad pos: -11.5,41.5 @@ -154364,7 +155563,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22424 + - uid: 22509 components: - rot: 1.5707963267948966 rad pos: -42.5,13.5 @@ -154372,7 +155571,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22425 + - uid: 22510 components: - rot: -1.5707963267948966 rad pos: 30.5,-94.5 @@ -154380,7 +155579,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22426 + - uid: 22511 components: - rot: 1.5707963267948966 rad pos: -8.5,-18.5 @@ -154388,7 +155587,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22427 + - uid: 22512 components: - rot: -1.5707963267948966 rad pos: -7.5,-12.5 @@ -154396,7 +155595,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22428 + - uid: 22513 components: - rot: 1.5707963267948966 rad pos: -13.5,-13.5 @@ -154404,21 +155603,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22429 + - uid: 22514 components: - pos: -8.5,-8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22430 + - uid: 22515 components: - pos: -12.5,-8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22431 + - uid: 22516 components: - rot: 1.5707963267948966 rad pos: -16.5,-9.5 @@ -154426,14 +155625,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22432 + - uid: 22517 components: - pos: -15.5,-12.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22433 + - uid: 22518 components: - rot: -1.5707963267948966 rad pos: -28.5,-5.5 @@ -154441,7 +155640,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22434 + - uid: 22519 components: - rot: -1.5707963267948966 rad pos: -28.5,-7.5 @@ -154449,7 +155648,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22435 + - uid: 22520 components: - rot: -1.5707963267948966 rad pos: -8.5,-68.5 @@ -154457,21 +155656,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22436 + - uid: 22521 components: - pos: 13.5,-31.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22437 + - uid: 22522 components: - pos: -19.5,-51.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22438 + - uid: 22523 components: - rot: 3.141592653589793 rad pos: -19.5,-49.5 @@ -154479,7 +155678,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22439 + - uid: 22524 components: - rot: 1.5707963267948966 rad pos: 28.5,-14.5 @@ -154487,7 +155686,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22440 + - uid: 22525 components: - rot: 1.5707963267948966 rad pos: 29.5,-12.5 @@ -154495,14 +155694,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22441 + - uid: 22526 components: - pos: 22.5,-83.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22442 + - uid: 22527 components: - rot: 3.141592653589793 rad pos: 5.5,-23.5 @@ -154510,14 +155709,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22443 + - uid: 22528 components: - pos: -57.5,-18.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22444 + - uid: 22529 components: - rot: 1.5707963267948966 rad pos: 6.5,-78.5 @@ -154525,14 +155724,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22445 + - uid: 22530 components: - pos: 3.5,-73.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22446 + - uid: 22531 components: - rot: -1.5707963267948966 rad pos: 6.5,-85.5 @@ -154540,98 +155739,104 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22447 + - uid: 22532 components: - rot: 3.141592653589793 rad pos: 32.5,-25.5 parent: 2 type: Transform - - uid: 22448 + - uid: 22533 components: - rot: 3.141592653589793 rad pos: 18.5,-25.5 parent: 2 type: Transform - - uid: 22449 + - uid: 22534 components: - pos: -52.5,43.5 parent: 2 type: Transform - - uid: 22450 + - uid: 22535 components: - rot: -1.5707963267948966 rad pos: -37.5,42.5 parent: 2 type: Transform - - uid: 22451 + - uid: 22536 components: - rot: 3.141592653589793 rad pos: -10.5,-33.5 parent: 2 type: Transform - - uid: 22452 + - uid: 22537 components: - pos: -15.5,-33.5 parent: 2 type: Transform - - uid: 22453 + - uid: 22538 components: - pos: 51.5,-89.5 parent: 2 type: Transform - - uid: 22454 + - uid: 22539 components: - rot: 3.141592653589793 rad pos: 33.5,-82.5 parent: 2 type: Transform - - uid: 22455 + - uid: 22540 components: - rot: 3.141592653589793 rad pos: 45.5,-82.5 parent: 2 type: Transform - - uid: 22456 + - uid: 22541 components: - pos: -59.5,-54.5 parent: 2 type: Transform - - uid: 22457 + - uid: 22542 components: - pos: -76.5,-40.5 parent: 2 type: Transform - - uid: 22458 + - uid: 22543 components: - rot: 3.141592653589793 rad pos: -76.5,-46.5 parent: 2 type: Transform - - uid: 22459 - components: - - pos: -49.5,-31.5 - parent: 2 - type: Transform - - uid: 22460 + - uid: 22544 components: - rot: 1.5707963267948966 rad pos: -51.5,-23.5 parent: 2 type: Transform - - uid: 22461 + - uid: 22545 components: - rot: 3.141592653589793 rad pos: -63.5,-45.5 parent: 2 type: Transform - - uid: 22462 + - uid: 22546 components: - pos: -53.5,-27.5 parent: 2 type: Transform + - uid: 22547 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-28.5 + parent: 2 + type: Transform + - uid: 22548 + components: + - pos: 31.5,-32.5 + parent: 2 + type: Transform - proto: PoweredSmallLightEmpty entities: - - uid: 22463 + - uid: 22549 components: - rot: -1.5707963267948966 rad pos: -36.5,-79.5 @@ -154639,7 +155844,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22464 + - uid: 22550 components: - rot: 3.141592653589793 rad pos: -37.5,-84.5 @@ -154647,7 +155852,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22465 + - uid: 22551 components: - rot: 3.141592653589793 rad pos: -46.5,-84.5 @@ -154655,7 +155860,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22466 + - uid: 22552 components: - rot: 1.5707963267948966 rad pos: -47.5,-79.5 @@ -154663,14 +155868,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22467 + - uid: 22553 components: - pos: -42.5,-74.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22468 + - uid: 22554 components: - rot: -1.5707963267948966 rad pos: -36.5,-72.5 @@ -154678,7 +155883,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22469 + - uid: 22555 components: - rot: 1.5707963267948966 rad pos: -47.5,-72.5 @@ -154686,7 +155891,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22470 + - uid: 22556 components: - rot: 1.5707963267948966 rad pos: -56.5,-80.5 @@ -154694,7 +155899,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22471 + - uid: 22557 components: - rot: 1.5707963267948966 rad pos: -56.5,-74.5 @@ -154702,7 +155907,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22472 + - uid: 22558 components: - rot: 1.5707963267948966 rad pos: -56.5,-72.5 @@ -154710,7 +155915,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22473 + - uid: 22559 components: - rot: -1.5707963267948966 rad pos: -27.5,-36.5 @@ -154718,14 +155923,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22474 + - uid: 22560 components: - pos: 57.5,34.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22475 + - uid: 22561 components: - rot: -1.5707963267948966 rad pos: 43.5,47.5 @@ -154733,7 +155938,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22476 + - uid: 22562 components: - rot: 1.5707963267948966 rad pos: 36.5,50.5 @@ -154741,7 +155946,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22477 + - uid: 22563 components: - rot: 3.141592653589793 rad pos: 37.5,43.5 @@ -154749,7 +155954,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22478 + - uid: 22564 components: - pos: 34.5,47.5 parent: 2 @@ -154758,7 +155963,7 @@ entities: type: ApcPowerReceiver - proto: Protolathe entities: - - uid: 22479 + - uid: 22565 components: - pos: 43.5,-35.5 parent: 2 @@ -154772,1096 +155977,1096 @@ entities: type: MaterialStorage - proto: ProtolatheMachineCircuitboard entities: - - uid: 21471 + - uid: 22566 components: - pos: -37.545918,-18.274307 parent: 2 type: Transform - proto: ProximitySensor entities: - - uid: 22480 + - uid: 22567 components: - pos: 59.550594,-52.45363 parent: 2 type: Transform - proto: Rack entities: - - uid: 14713 + - uid: 22568 components: - pos: 26.5,30.5 parent: 2 type: Transform - - uid: 20873 + - uid: 22569 components: - pos: 26.5,29.5 parent: 2 type: Transform - - uid: 22481 + - uid: 22570 components: - pos: 29.5,-13.5 parent: 2 type: Transform - - uid: 22482 + - uid: 22571 components: - pos: 13.5,-72.5 parent: 2 type: Transform - - uid: 22483 + - uid: 22572 components: - pos: 10.5,-16.5 parent: 2 type: Transform - - uid: 22484 + - uid: 22573 components: - pos: 31.5,-11.5 parent: 2 type: Transform - - uid: 22485 + - uid: 22574 components: - pos: 22.5,-54.5 parent: 2 type: Transform - - uid: 22486 + - uid: 22575 components: - pos: 33.5,-11.5 parent: 2 type: Transform - - uid: 22487 + - uid: 22576 components: - pos: 33.5,-13.5 parent: 2 type: Transform - - uid: 22488 + - uid: 22577 components: - pos: 31.5,-13.5 parent: 2 type: Transform - - uid: 22489 + - uid: 22578 components: - pos: 29.5,-11.5 parent: 2 type: Transform - - uid: 22490 + - uid: 22579 components: - pos: -6.5,-68.5 parent: 2 type: Transform - - uid: 22491 + - uid: 22580 components: - pos: 4.5,-69.5 parent: 2 type: Transform - - uid: 22492 + - uid: 22581 components: - pos: 6.5,-69.5 parent: 2 type: Transform - - uid: 22493 + - uid: 22582 components: - rot: 3.141592653589793 rad pos: -28.5,-19.5 parent: 2 type: Transform - - uid: 22494 + - uid: 22583 components: - pos: -16.5,-15.5 parent: 2 type: Transform - - uid: 22495 + - uid: 22584 components: - pos: 36.5,-50.5 parent: 2 type: Transform - - uid: 22496 + - uid: 22585 components: - pos: 37.5,-50.5 parent: 2 type: Transform - - uid: 22497 + - uid: 22586 components: - pos: 42.5,-7.5 parent: 2 type: Transform - - uid: 22498 + - uid: 22587 components: - pos: -8.5,-10.5 parent: 2 type: Transform - - uid: 22499 + - uid: 22588 components: - pos: -16.5,-16.5 parent: 2 type: Transform - - uid: 22500 + - uid: 22589 components: - pos: -9.5,-10.5 parent: 2 type: Transform - - uid: 22501 + - uid: 22590 components: - pos: -11.5,-8.5 parent: 2 type: Transform - - uid: 22502 + - uid: 22591 components: - pos: -50.5,-29.5 parent: 2 type: Transform - - uid: 22503 + - uid: 22592 components: - pos: -50.5,-28.5 parent: 2 type: Transform - - uid: 22504 + - uid: 22593 components: - pos: -50.5,-27.5 parent: 2 type: Transform - - uid: 22505 + - uid: 22594 components: - pos: -45.5,-19.5 parent: 2 type: Transform - - uid: 22506 + - uid: 22595 components: - pos: -47.5,-19.5 parent: 2 type: Transform - - uid: 22507 + - uid: 22596 components: - pos: -55.5,-6.5 parent: 2 type: Transform - - uid: 22508 + - uid: 22597 components: - pos: -31.5,-56.5 parent: 2 type: Transform - - uid: 22509 + - uid: 22598 components: - pos: -56.5,-70.5 parent: 2 type: Transform - - uid: 22510 + - uid: 22599 components: - pos: -38.5,-67.5 parent: 2 type: Transform - - uid: 22511 + - uid: 22600 components: - pos: -32.5,-62.5 parent: 2 type: Transform - - uid: 22512 + - uid: 22601 components: - pos: -31.5,-62.5 parent: 2 type: Transform - - uid: 22513 + - uid: 22602 components: - pos: -46.5,-30.5 parent: 2 type: Transform - - uid: 22514 + - uid: 22603 components: - pos: -44.5,-25.5 parent: 2 type: Transform - - uid: 22515 + - uid: 22604 components: - pos: -42.5,-24.5 parent: 2 type: Transform - - uid: 22516 + - uid: 22605 components: - pos: 35.5,-12.5 parent: 2 type: Transform - - uid: 22517 + - uid: 22606 components: - pos: -31.5,-43.5 parent: 2 type: Transform - - uid: 22518 + - uid: 22607 components: - pos: -29.5,-46.5 parent: 2 type: Transform - - uid: 22519 + - uid: 22608 components: - pos: -28.5,-28.5 parent: 2 type: Transform - - uid: 22520 + - uid: 22609 components: - pos: -23.5,-28.5 parent: 2 type: Transform - - uid: 22521 + - uid: 22610 components: - pos: -34.5,-25.5 parent: 2 type: Transform - - uid: 22522 + - uid: 22611 components: - pos: -42.5,-20.5 parent: 2 type: Transform - - uid: 22523 + - uid: 22612 components: - pos: -42.5,-21.5 parent: 2 type: Transform - - uid: 22524 + - uid: 22613 components: - pos: 4.5,-17.5 parent: 2 type: Transform - - uid: 22525 + - uid: 22614 components: - pos: 3.5,-17.5 parent: 2 type: Transform - - uid: 22526 + - uid: 22615 components: - pos: -44.5,16.5 parent: 2 type: Transform - - uid: 22527 + - uid: 22616 components: - pos: -3.5,21.5 parent: 2 type: Transform - - uid: 22528 + - uid: 22617 components: - pos: 0.5,23.5 parent: 2 type: Transform - - uid: 22529 + - uid: 22618 components: - pos: -3.5,34.5 parent: 2 type: Transform - - uid: 22530 + - uid: 22619 components: - pos: 15.5,34.5 parent: 2 type: Transform - - uid: 22531 + - uid: 22620 components: - pos: -12.5,17.5 parent: 2 type: Transform - - uid: 22532 + - uid: 22621 components: - pos: -49.5,15.5 parent: 2 type: Transform - - uid: 22533 + - uid: 22622 components: - pos: -49.5,14.5 parent: 2 type: Transform - - uid: 22534 + - uid: 22623 components: - pos: -44.5,15.5 parent: 2 type: Transform - - uid: 22535 + - uid: 22624 components: - pos: -47.5,-3.5 parent: 2 type: Transform - - uid: 22536 + - uid: 22625 components: - pos: -52.5,2.5 parent: 2 type: Transform - - uid: 22537 + - uid: 22626 components: - pos: -56.5,-4.5 parent: 2 type: Transform - - uid: 22538 + - uid: 22627 components: - pos: 18.5,39.5 parent: 2 type: Transform - - uid: 22539 + - uid: 22628 components: - pos: -24.5,-67.5 parent: 2 type: Transform - - uid: 22540 + - uid: 22629 components: - pos: -23.5,-67.5 parent: 2 type: Transform - - uid: 22541 + - uid: 22630 components: - pos: 9.5,-16.5 parent: 2 type: Transform - - uid: 22542 + - uid: 22631 components: - pos: 39.5,-30.5 parent: 2 type: Transform - - uid: 22543 + - uid: 22632 components: - pos: 59.5,2.5 parent: 2 type: Transform - - uid: 22544 - components: - - pos: 18.5,-27.5 - parent: 2 - type: Transform - - uid: 22545 + - uid: 22633 components: - pos: -34.5,-72.5 parent: 2 type: Transform - - uid: 22546 + - uid: 22634 components: - pos: -33.5,-72.5 parent: 2 type: Transform - - uid: 22547 + - uid: 22635 components: - pos: -41.5,37.5 parent: 2 type: Transform - - uid: 22548 + - uid: 22636 components: - pos: -36.5,35.5 parent: 2 type: Transform - - uid: 22549 + - uid: 22637 components: - pos: -26.5,39.5 parent: 2 type: Transform - - uid: 22550 + - uid: 22638 components: - pos: -26.5,30.5 parent: 2 type: Transform - - uid: 22551 + - uid: 22639 components: - pos: -8.5,-82.5 parent: 2 type: Transform - - uid: 22552 + - uid: 22640 components: - pos: -14.5,-82.5 parent: 2 type: Transform - - uid: 22553 + - uid: 22641 components: - pos: -4.5,-82.5 parent: 2 type: Transform - - uid: 22554 + - uid: 22642 components: - pos: -6.5,-88.5 parent: 2 type: Transform - - uid: 22555 + - uid: 22643 components: - pos: -19.5,53.5 parent: 2 type: Transform - - uid: 22556 + - uid: 22644 components: - pos: 42.5,-32.5 parent: 2 type: Transform - - uid: 22557 + - uid: 22645 components: - pos: 54.5,-63.5 parent: 2 type: Transform - - uid: 22558 + - uid: 22646 components: - pos: 54.5,-64.5 parent: 2 type: Transform - - uid: 22559 + - uid: 22647 components: - pos: 54.5,-30.5 parent: 2 type: Transform - - uid: 22560 + - uid: 22648 components: - pos: 37.5,-10.5 parent: 2 type: Transform - - uid: 22561 + - uid: 22649 components: - pos: -8.5,-17.5 parent: 2 type: Transform - - uid: 22562 + - uid: 22650 components: - rot: 1.5707963267948966 rad pos: -28.5,-20.5 parent: 2 type: Transform - - uid: 22563 + - uid: 22651 components: - pos: -48.5,16.5 parent: 2 type: Transform - - uid: 22564 + - uid: 22652 components: - pos: -13.5,-13.5 parent: 2 type: Transform - - uid: 22565 + - uid: 22653 components: - pos: -13.5,-12.5 parent: 2 type: Transform - - uid: 22566 + - uid: 22654 components: - pos: -20.5,-51.5 parent: 2 type: Transform - - uid: 22567 + - uid: 22655 components: - pos: 44.5,-8.5 parent: 2 type: Transform - - uid: 22568 + - uid: 22656 components: - pos: 7.5,-80.5 parent: 2 type: Transform - - uid: 22569 + - uid: 22657 components: - pos: 31.5,27.5 parent: 2 type: Transform - - uid: 22571 + - uid: 22658 components: - pos: 27.5,27.5 parent: 2 type: Transform + - uid: 22659 + components: + - pos: 6.5,-13.5 + parent: 2 + type: Transform - proto: RadiationCollector entities: - - uid: 22573 + - uid: 22660 components: - pos: -63.5,-20.5 parent: 2 type: Transform - - uid: 22574 + - uid: 22661 components: - pos: -64.5,-20.5 parent: 2 type: Transform - - uid: 22575 + - uid: 22662 components: - pos: -65.5,-20.5 parent: 2 type: Transform - - uid: 22576 + - uid: 22663 components: - pos: -67.5,-20.5 parent: 2 type: Transform - - uid: 22577 + - uid: 22664 components: - pos: -68.5,-20.5 parent: 2 type: Transform - - uid: 22578 + - uid: 22665 components: - pos: -69.5,-20.5 parent: 2 type: Transform - - uid: 22579 + - uid: 22666 components: - pos: -63.5,-6.5 parent: 2 type: Transform - - uid: 22580 + - uid: 22667 components: - pos: -64.5,-6.5 parent: 2 type: Transform - - uid: 22581 + - uid: 22668 components: - pos: -65.5,-6.5 parent: 2 type: Transform - - uid: 22582 + - uid: 22669 components: - pos: -69.5,-6.5 parent: 2 type: Transform - - uid: 22583 + - uid: 22670 components: - pos: -68.5,-6.5 parent: 2 type: Transform - - uid: 22584 + - uid: 22671 components: - pos: -67.5,-6.5 parent: 2 type: Transform - proto: RadioHandheld entities: - - uid: 22585 + - uid: 22672 components: - pos: -21.414516,35.539524 parent: 2 type: Transform - proto: Railing entities: - - uid: 22586 + - uid: 22673 components: - rot: -1.5707963267948966 rad pos: -8.5,18.5 parent: 2 type: Transform - - uid: 22587 + - uid: 22674 components: - pos: 24.5,-1.5 parent: 2 type: Transform - - uid: 22588 + - uid: 22675 components: - pos: 25.5,-1.5 parent: 2 type: Transform - - uid: 22589 + - uid: 22676 components: - rot: -1.5707963267948966 rad pos: 21.5,1.5 parent: 2 type: Transform - - uid: 22590 + - uid: 22677 components: - rot: 3.141592653589793 rad pos: 24.5,-19.5 parent: 2 type: Transform - - uid: 22591 + - uid: 22678 components: - rot: -1.5707963267948966 rad pos: 21.5,0.5 parent: 2 type: Transform - - uid: 22592 + - uid: 22679 components: - rot: 3.141592653589793 rad pos: 25.5,3.5 parent: 2 type: Transform - - uid: 22593 + - uid: 22680 components: - rot: 3.141592653589793 rad pos: 11.5,1.5 parent: 2 type: Transform - - uid: 22594 + - uid: 22681 components: - pos: 22.5,-1.5 parent: 2 type: Transform - - uid: 22595 + - uid: 22682 components: - pos: 10.5,0.5 parent: 2 type: Transform - - uid: 22596 + - uid: 22683 components: - rot: 1.5707963267948966 rad pos: 26.5,2.5 parent: 2 type: Transform - - uid: 22597 + - uid: 22684 components: - rot: 3.141592653589793 rad pos: 24.5,3.5 parent: 2 type: Transform - - uid: 22598 + - uid: 22685 components: - pos: 6.5,0.5 parent: 2 type: Transform - - uid: 22599 + - uid: 22686 components: - rot: 3.141592653589793 rad pos: 22.5,3.5 parent: 2 type: Transform - - uid: 22600 + - uid: 22687 components: - rot: 3.141592653589793 rad pos: 10.5,1.5 parent: 2 type: Transform - - uid: 22601 + - uid: 22688 components: - rot: 3.141592653589793 rad pos: 26.5,-19.5 parent: 2 type: Transform - - uid: 22602 + - uid: 22689 components: - rot: 1.5707963267948966 rad pos: 26.5,-0.5 parent: 2 type: Transform - - uid: 22603 + - uid: 22690 components: - rot: 3.141592653589793 rad pos: 25.5,-19.5 parent: 2 type: Transform - - uid: 22604 + - uid: 22691 components: - rot: 3.141592653589793 rad pos: 23.5,-19.5 parent: 2 type: Transform - - uid: 22605 + - uid: 22692 components: - pos: 23.5,-1.5 parent: 2 type: Transform - - uid: 22606 + - uid: 22693 components: - rot: 3.141592653589793 rad pos: 28.5,-19.5 parent: 2 type: Transform - - uid: 22607 + - uid: 22694 components: - rot: -1.5707963267948966 rad pos: 21.5,-0.5 parent: 2 type: Transform - - uid: 22608 + - uid: 22695 components: - rot: -1.5707963267948966 rad pos: 21.5,2.5 parent: 2 type: Transform - - uid: 22609 + - uid: 22696 components: - pos: 11.5,0.5 parent: 2 type: Transform - - uid: 22610 + - uid: 22697 components: - rot: 3.141592653589793 rad pos: 6.5,1.5 parent: 2 type: Transform - - uid: 22611 + - uid: 22698 components: - rot: 3.141592653589793 rad pos: 7.5,1.5 parent: 2 type: Transform - - uid: 22612 + - uid: 22699 components: - pos: 7.5,0.5 parent: 2 type: Transform - - uid: 22613 + - uid: 22700 components: - rot: 3.141592653589793 rad pos: 23.5,3.5 parent: 2 type: Transform - - uid: 22614 + - uid: 22701 components: - rot: 3.141592653589793 rad pos: 27.5,-19.5 parent: 2 type: Transform - - uid: 22615 + - uid: 22702 components: - rot: 1.5707963267948966 rad pos: 26.5,1.5 parent: 2 type: Transform - - uid: 22616 + - uid: 22703 components: - rot: 3.141592653589793 rad pos: 22.5,-19.5 parent: 2 type: Transform - - uid: 22617 + - uid: 22704 components: - rot: 3.141592653589793 rad pos: 54.5,19.5 parent: 2 type: Transform - - uid: 22618 + - uid: 22705 components: - rot: 3.141592653589793 rad pos: 53.5,19.5 parent: 2 type: Transform - - uid: 22619 + - uid: 22706 components: - rot: 3.141592653589793 rad pos: 52.5,19.5 parent: 2 type: Transform - - uid: 22620 + - uid: 22707 components: - rot: -1.5707963267948966 rad pos: 51.5,18.5 parent: 2 type: Transform - - uid: 22621 + - uid: 22708 components: - rot: -1.5707963267948966 rad pos: 51.5,17.5 parent: 2 type: Transform - - uid: 22622 + - uid: 22709 components: - rot: -1.5707963267948966 rad pos: 51.5,15.5 parent: 2 type: Transform - - uid: 22623 + - uid: 22710 components: - rot: 1.5707963267948966 rad pos: 55.5,18.5 parent: 2 type: Transform - - uid: 22624 + - uid: 22711 components: - rot: 1.5707963267948966 rad pos: 55.5,17.5 parent: 2 type: Transform - - uid: 22625 + - uid: 22712 components: - rot: 1.5707963267948966 rad pos: 55.5,15.5 parent: 2 type: Transform - - uid: 22626 + - uid: 22713 components: - rot: 3.141592653589793 rad pos: 58.5,8.5 parent: 2 type: Transform - - uid: 22627 + - uid: 22714 components: - rot: 3.141592653589793 rad pos: 56.5,8.5 parent: 2 type: Transform - - uid: 22628 + - uid: 22715 components: - rot: -1.5707963267948966 rad pos: 55.5,6.5 parent: 2 type: Transform - - uid: 22629 + - uid: 22716 components: - rot: 1.5707963267948966 rad pos: 59.5,7.5 parent: 2 type: Transform - - uid: 22630 + - uid: 22717 components: - rot: 1.5707963267948966 rad pos: 59.5,6.5 parent: 2 type: Transform - - uid: 22631 + - uid: 22718 components: - pos: 58.5,5.5 parent: 2 type: Transform - - uid: 22632 + - uid: 22719 components: - pos: 56.5,5.5 parent: 2 type: Transform - - uid: 22633 + - uid: 22720 components: - rot: 3.141592653589793 rad pos: 57.5,8.5 parent: 2 type: Transform - - uid: 22634 + - uid: 22721 components: - rot: 1.5707963267948966 rad pos: 61.5,-8.5 parent: 2 type: Transform - - uid: 22635 + - uid: 22722 components: - pos: 54.5,-9.5 parent: 2 type: Transform - - uid: 22636 + - uid: 22723 components: - rot: 3.141592653589793 rad pos: 54.5,-7.5 parent: 2 type: Transform - - uid: 22637 + - uid: 22724 components: - rot: 1.5707963267948966 rad pos: 50.5,-5.5 parent: 2 type: Transform - - uid: 22638 + - uid: 22725 components: - rot: 1.5707963267948966 rad pos: 50.5,-11.5 parent: 2 type: Transform - - uid: 22639 + - uid: 22726 components: - rot: -1.5707963267948966 rad pos: 53.5,-8.5 parent: 2 type: Transform - - uid: 22640 + - uid: 22727 components: - rot: 1.5707963267948966 rad pos: 46.5,-86.5 parent: 2 type: Transform - - uid: 22641 + - uid: 22728 components: - rot: -1.5707963267948966 rad pos: 32.5,-84.5 parent: 2 type: Transform - - uid: 22642 + - uid: 22729 components: - rot: -1.5707963267948966 rad pos: 32.5,-85.5 parent: 2 type: Transform - - uid: 22643 + - uid: 22730 components: - rot: 1.5707963267948966 rad pos: 46.5,-87.5 parent: 2 type: Transform - - uid: 22644 + - uid: 22731 components: - rot: -1.5707963267948966 rad pos: 32.5,-86.5 parent: 2 type: Transform - - uid: 22645 + - uid: 22732 components: - rot: 1.5707963267948966 rad pos: 46.5,-84.5 parent: 2 type: Transform - - uid: 22646 + - uid: 22733 components: - rot: -1.5707963267948966 rad pos: 32.5,-87.5 parent: 2 type: Transform - - uid: 22647 + - uid: 22734 components: - rot: 3.141592653589793 rad pos: -39.5,-29.5 parent: 2 type: Transform - - uid: 22648 + - uid: 22735 components: - rot: 3.141592653589793 rad pos: -38.5,-29.5 parent: 2 type: Transform - - uid: 22649 + - uid: 22736 components: - rot: -1.5707963267948966 rad pos: 66.5,-8.5 parent: 2 type: Transform - - uid: 22650 + - uid: 22737 components: - rot: -1.5707963267948966 rad pos: 66.5,-7.5 parent: 2 type: Transform - - uid: 22651 + - uid: 22738 components: - rot: -1.5707963267948966 rad pos: 66.5,-9.5 parent: 2 type: Transform - - uid: 22652 + - uid: 22739 components: - rot: 3.141592653589793 rad pos: -40.5,38.5 parent: 2 type: Transform - - uid: 22653 + - uid: 22740 components: - rot: 3.141592653589793 rad pos: -43.5,38.5 parent: 2 type: Transform - - uid: 22654 + - uid: 22741 components: - pos: 60.5,-9.5 parent: 2 type: Transform - - uid: 22655 + - uid: 22742 components: - rot: 3.141592653589793 rad pos: 60.5,-7.5 parent: 2 type: Transform - - uid: 22656 + - uid: 22743 components: - rot: 1.5707963267948966 rad pos: -39.5,3.5 parent: 2 type: Transform - - uid: 22657 + - uid: 22744 components: - rot: 1.5707963267948966 rad pos: -39.5,4.5 parent: 2 type: Transform - - uid: 22658 + - uid: 22745 components: - pos: 31.5,-40.5 parent: 2 type: Transform - - uid: 22659 + - uid: 22746 components: - rot: 1.5707963267948966 rad pos: 32.5,-39.5 parent: 2 type: Transform - - uid: 22660 + - uid: 22747 components: - rot: 1.5707963267948966 rad pos: -39.5,5.5 parent: 2 type: Transform - - uid: 22661 + - uid: 22748 components: - rot: 1.5707963267948966 rad pos: -39.5,6.5 parent: 2 type: Transform - - uid: 22662 + - uid: 22749 components: - rot: -1.5707963267948966 rad pos: -36.5,6.5 parent: 2 type: Transform - - uid: 22663 + - uid: 22750 components: - rot: -1.5707963267948966 rad pos: -36.5,5.5 parent: 2 type: Transform - - uid: 22664 + - uid: 22751 components: - rot: -1.5707963267948966 rad pos: -36.5,4.5 parent: 2 type: Transform - - uid: 22665 + - uid: 22752 components: - rot: -1.5707963267948966 rad pos: -36.5,3.5 parent: 2 type: Transform - - uid: 22666 + - uid: 22753 components: - rot: 1.5707963267948966 rad pos: 46.5,-85.5 parent: 2 type: Transform - - uid: 22667 + - uid: 22754 components: - rot: 1.5707963267948966 rad pos: 13.5,-84.5 parent: 2 type: Transform - - uid: 22668 + - uid: 22755 components: - rot: 1.5707963267948966 rad pos: 13.5,-83.5 parent: 2 type: Transform - - uid: 22669 + - uid: 22756 components: - rot: 1.5707963267948966 rad pos: 13.5,-82.5 parent: 2 type: Transform - - uid: 22670 + - uid: 22757 components: - rot: -1.5707963267948966 rad pos: 17.5,-82.5 parent: 2 type: Transform - - uid: 22671 + - uid: 22758 components: - rot: -1.5707963267948966 rad pos: 17.5,-83.5 parent: 2 type: Transform - - uid: 22672 + - uid: 22759 components: - rot: -1.5707963267948966 rad pos: 17.5,-84.5 parent: 2 type: Transform - - uid: 22673 + - uid: 22760 components: - rot: 3.141592653589793 rad pos: 16.5,-85.5 parent: 2 type: Transform - - uid: 22674 + - uid: 22761 components: - rot: 3.141592653589793 rad pos: 15.5,-85.5 parent: 2 type: Transform - - uid: 22675 + - uid: 22762 components: - rot: 3.141592653589793 rad pos: 14.5,-85.5 parent: 2 type: Transform - - uid: 22676 + - uid: 22763 components: - pos: 14.5,-81.5 parent: 2 type: Transform - - uid: 22677 + - uid: 22764 components: - pos: 15.5,-81.5 parent: 2 type: Transform - - uid: 22678 + - uid: 22765 components: - pos: 16.5,-81.5 parent: 2 type: Transform - - uid: 22679 + - uid: 22766 components: - rot: -1.5707963267948966 rad pos: 67.5,-28.5 @@ -155870,7 +157075,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 22680 + - uid: 22767 components: - rot: -1.5707963267948966 rad pos: 67.5,-27.5 @@ -155879,7 +157084,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 22681 + - uid: 22768 components: - pos: 68.5,-29.5 parent: 2 @@ -155887,7 +157092,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 22682 + - uid: 22769 components: - pos: 69.5,-29.5 parent: 2 @@ -155895,31 +157100,31 @@ entities: missingComponents: - Damageable - Destructible - - uid: 22683 + - uid: 22770 components: - rot: 1.5707963267948966 rad pos: -6.5,18.5 parent: 2 type: Transform - - uid: 22684 + - uid: 22771 components: - rot: 1.5707963267948966 rad pos: -3.5,18.5 parent: 2 type: Transform - - uid: 22685 + - uid: 22772 components: - rot: -1.5707963267948966 rad pos: -5.5,18.5 parent: 2 type: Transform - - uid: 22686 + - uid: 22773 components: - rot: 3.141592653589793 rad pos: -7.5,19.5 parent: 2 type: Transform - - uid: 22687 + - uid: 22774 components: - rot: 3.141592653589793 rad pos: -4.5,19.5 @@ -155927,162 +157132,162 @@ entities: type: Transform - proto: RailingCorner entities: - - uid: 22688 + - uid: 22775 components: - rot: -1.5707963267948966 rad pos: -5.5,17.5 parent: 2 type: Transform - - uid: 22689 + - uid: 22776 components: - rot: -1.5707963267948966 rad pos: -8.5,17.5 parent: 2 type: Transform - - uid: 22690 + - uid: 22777 components: - rot: 3.141592653589793 rad pos: -8.5,19.5 parent: 2 type: Transform - - uid: 22691 + - uid: 22778 components: - pos: -6.5,17.5 parent: 2 type: Transform - - uid: 22692 + - uid: 22779 components: - rot: 1.5707963267948966 rad pos: 61.5,-7.5 parent: 2 type: Transform - - uid: 22693 + - uid: 22780 components: - rot: -1.5707963267948966 rad pos: 5.5,0.5 parent: 2 type: Transform - - uid: 22694 + - uid: 22781 components: - pos: 26.5,-1.5 parent: 2 type: Transform - - uid: 22695 + - uid: 22782 components: - rot: 1.5707963267948966 rad pos: 26.5,3.5 parent: 2 type: Transform - - uid: 22696 + - uid: 22783 components: - rot: 3.141592653589793 rad pos: 5.5,1.5 parent: 2 type: Transform - - uid: 22697 + - uid: 22784 components: - pos: 12.5,0.5 parent: 2 type: Transform - - uid: 22698 + - uid: 22785 components: - rot: 3.141592653589793 rad pos: 21.5,3.5 parent: 2 type: Transform - - uid: 22699 + - uid: 22786 components: - rot: 1.5707963267948966 rad pos: 12.5,1.5 parent: 2 type: Transform - - uid: 22700 + - uid: 22787 components: - rot: -1.5707963267948966 rad pos: 21.5,-1.5 parent: 2 type: Transform - - uid: 22701 + - uid: 22788 components: - rot: 1.5707963267948966 rad pos: 29.5,-19.5 parent: 2 type: Transform - - uid: 22702 + - uid: 22789 components: - rot: 3.141592653589793 rad pos: 21.5,-19.5 parent: 2 type: Transform - - uid: 22703 + - uid: 22790 components: - pos: 32.5,-40.5 parent: 2 type: Transform - - uid: 22704 + - uid: 22791 components: - rot: 3.141592653589793 rad pos: 51.5,19.5 parent: 2 type: Transform - - uid: 22705 + - uid: 22792 components: - rot: 1.5707963267948966 rad pos: 55.5,19.5 parent: 2 type: Transform - - uid: 22706 + - uid: 22793 components: - pos: 59.5,5.5 parent: 2 type: Transform - - uid: 22707 + - uid: 22794 components: - rot: -1.5707963267948966 rad pos: 55.5,5.5 parent: 2 type: Transform - - uid: 22708 + - uid: 22795 components: - rot: 3.141592653589793 rad pos: 55.5,8.5 parent: 2 type: Transform - - uid: 22709 + - uid: 22796 components: - rot: 1.5707963267948966 rad pos: 59.5,8.5 parent: 2 type: Transform - - uid: 22710 + - uid: 22797 components: - rot: 1.5707963267948966 rad pos: 50.5,-10.5 parent: 2 type: Transform - - uid: 22711 + - uid: 22798 components: - pos: 50.5,-6.5 parent: 2 type: Transform - - uid: 22712 + - uid: 22799 components: - rot: -1.5707963267948966 rad pos: 53.5,-9.5 parent: 2 type: Transform - - uid: 22713 + - uid: 22800 components: - rot: 3.141592653589793 rad pos: 53.5,-7.5 parent: 2 type: Transform - - uid: 22714 + - uid: 22801 components: - pos: 61.5,-9.5 parent: 2 type: Transform - - uid: 22715 + - uid: 22802 components: - rot: -1.5707963267948966 rad pos: 67.5,-29.5 @@ -156091,24 +157296,24 @@ entities: missingComponents: - Damageable - Destructible - - uid: 22716 + - uid: 22803 components: - pos: -3.5,17.5 parent: 2 type: Transform - - uid: 22717 + - uid: 22804 components: - rot: 1.5707963267948966 rad pos: -6.5,19.5 parent: 2 type: Transform - - uid: 22718 + - uid: 22805 components: - rot: 3.141592653589793 rad pos: -5.5,19.5 parent: 2 type: Transform - - uid: 22719 + - uid: 22806 components: - rot: 1.5707963267948966 rad pos: -3.5,19.5 @@ -156116,24 +157321,24 @@ entities: type: Transform - proto: RailingCornerSmall entities: - - uid: 22720 + - uid: 22807 components: - pos: 17.5,-85.5 parent: 2 type: Transform - - uid: 22721 + - uid: 22808 components: - rot: 3.141592653589793 rad pos: 13.5,-81.5 parent: 2 type: Transform - - uid: 22722 + - uid: 22809 components: - rot: 1.5707963267948966 rad pos: 17.5,-81.5 parent: 2 type: Transform - - uid: 22723 + - uid: 22810 components: - rot: -1.5707963267948966 rad pos: 13.5,-85.5 @@ -156141,635 +157346,655 @@ entities: type: Transform - proto: RandomArcade entities: - - uid: 22724 + - uid: 22811 components: - pos: 44.5,12.5 parent: 2 type: Transform - - uid: 22725 + - uid: 22812 components: - pos: 45.5,12.5 parent: 2 type: Transform - - uid: 22726 + - uid: 22813 components: - pos: 9.5,34.5 parent: 2 type: Transform - - uid: 22727 + - uid: 22814 components: - pos: 7.5,34.5 parent: 2 type: Transform - - uid: 22728 + - uid: 22815 components: - rot: 3.141592653589793 rad pos: 9.5,30.5 parent: 2 type: Transform - - uid: 22729 + - uid: 22816 components: - rot: 3.141592653589793 rad pos: 7.5,30.5 parent: 2 type: Transform - - uid: 22730 + - uid: 22817 components: - pos: 4.5,-32.5 parent: 2 type: Transform - - uid: 22731 + - uid: 22818 components: - pos: 4.5,-30.5 parent: 2 type: Transform - - uid: 22732 + - uid: 22819 components: - pos: 2.5,-30.5 parent: 2 type: Transform - - uid: 22733 + - uid: 22820 components: - pos: 2.5,-32.5 parent: 2 type: Transform - - uid: 22734 + - uid: 22821 components: - pos: 6.5,-30.5 parent: 2 type: Transform - - uid: 22735 + - uid: 22822 components: - pos: 6.5,-32.5 parent: 2 type: Transform - proto: RandomArtifactSpawner entities: - - uid: 22736 + - uid: 22823 components: - pos: 67.5,-37.5 parent: 2 type: Transform - - uid: 22737 + - uid: 22824 components: - pos: -46.5,65.5 parent: 2 type: Transform - - uid: 22738 + - uid: 22825 components: - pos: 71.5,-28.5 parent: 2 type: Transform - proto: RandomArtifactSpawner20 entities: - - uid: 22739 + - uid: 22826 components: - pos: 50.5,51.5 parent: 2 type: Transform - - uid: 22740 + - uid: 22827 components: - pos: -20.5,-99.5 parent: 2 type: Transform - - uid: 22741 + - uid: 22828 components: - pos: 11.5,53.5 parent: 2 type: Transform - - uid: 22742 + - uid: 22829 components: - pos: -51.5,22.5 parent: 2 type: Transform - - uid: 22743 + - uid: 22830 components: - pos: 78.5,-34.5 parent: 2 type: Transform - proto: RandomDrinkBottle entities: - - uid: 22744 + - uid: 22831 components: - pos: 15.5,13.5 parent: 2 type: Transform - proto: RandomDrinkGlass entities: - - uid: 22745 + - uid: 22832 components: - pos: 15.5,11.5 parent: 2 type: Transform - - uid: 22746 + - uid: 22833 components: - pos: 15.5,11.5 parent: 2 type: Transform - - uid: 22747 + - uid: 22834 components: - pos: 18.5,15.5 parent: 2 type: Transform - - uid: 22748 + - uid: 22835 components: - pos: -8.5,1.5 parent: 2 type: Transform + - uid: 22836 + components: + - pos: 27.5,-35.5 + parent: 2 + type: Transform + - uid: 22837 + components: + - pos: 27.5,-37.5 + parent: 2 + type: Transform + - uid: 22838 + components: + - pos: 22.5,-38.5 + parent: 2 + type: Transform - proto: RandomFoodBakedSingle entities: - - uid: 22749 + - uid: 22839 components: - pos: 2.5,0.5 parent: 2 type: Transform - - uid: 22750 + - uid: 22840 components: - pos: -4.5,1.5 parent: 2 type: Transform - - uid: 22751 + - uid: 22841 components: - pos: -8.5,0.5 parent: 2 type: Transform - proto: RandomFoodMeal entities: - - uid: 22752 + - uid: 22842 components: - pos: 25.5,-68.5 parent: 2 type: Transform - proto: RandomFoodSingle entities: - - uid: 22753 + - uid: 22843 components: - pos: 11.5,7.5 parent: 2 type: Transform - - uid: 22754 + - uid: 22844 components: - pos: 4.5,15.5 parent: 2 type: Transform - - uid: 22755 + - uid: 22845 components: - pos: 67.5,10.5 parent: 2 type: Transform - proto: RandomInstruments entities: - - uid: 22756 + - uid: 22846 + components: + - pos: -0.5,-8.5 + parent: 2 + type: Transform + - uid: 22847 components: - pos: 54.5,-28.5 parent: 2 type: Transform - proto: RandomPainting entities: - - uid: 22757 + - uid: 22848 components: - pos: 49.5,48.5 parent: 2 type: Transform - proto: RandomPosterAny entities: - - uid: 22758 + - uid: 22849 components: - pos: -52.5,-61.5 parent: 2 type: Transform - - uid: 22759 + - uid: 22850 components: - pos: -55.5,-57.5 parent: 2 type: Transform - - uid: 22760 + - uid: 22851 components: - pos: -57.5,-57.5 parent: 2 type: Transform - proto: RandomPosterContraband entities: - - uid: 22761 + - uid: 22852 components: - pos: 7.5,-68.5 parent: 2 type: Transform - - uid: 22762 + - uid: 22853 components: - pos: -30.5,-45.5 parent: 2 type: Transform - - uid: 22763 + - uid: 22854 components: - pos: -24.5,-50.5 parent: 2 type: Transform - - uid: 22764 + - uid: 22855 components: - pos: -26.5,-50.5 parent: 2 type: Transform - - uid: 22765 + - uid: 22856 components: - pos: -5.5,-94.5 parent: 2 type: Transform - - uid: 22766 + - uid: 22857 components: - pos: -36.5,-92.5 parent: 2 type: Transform - - uid: 22767 + - uid: 22858 components: - pos: -48.5,-73.5 parent: 2 type: Transform - - uid: 22768 + - uid: 22859 components: - pos: -41.5,-65.5 parent: 2 type: Transform - - uid: 22769 + - uid: 22860 components: - pos: -39.5,-88.5 parent: 2 type: Transform - - uid: 22770 + - uid: 22861 components: - pos: -20.5,-94.5 parent: 2 type: Transform - - uid: 22771 + - uid: 22862 components: - pos: -29.5,-53.5 parent: 2 type: Transform - - uid: 22772 + - uid: 22863 components: - pos: -11.5,-99.5 parent: 2 type: Transform - - uid: 22773 + - uid: 22864 components: - pos: -27.5,-95.5 parent: 2 type: Transform - - uid: 22774 + - uid: 22865 components: - pos: -15.5,14.5 parent: 2 type: Transform - - uid: 22775 + - uid: 22866 components: - pos: -9.5,14.5 parent: 2 type: Transform - - uid: 22776 + - uid: 22867 components: - pos: 11.5,-54.5 parent: 2 type: Transform - - uid: 22777 + - uid: 22868 components: - pos: 15.5,-46.5 parent: 2 type: Transform - - uid: 22778 + - uid: 22869 components: - pos: 11.5,-48.5 parent: 2 type: Transform - - uid: 22779 + - uid: 22870 components: - pos: -24.5,-43.5 parent: 2 type: Transform - - uid: 22780 + - uid: 22871 components: - pos: -25.5,-37.5 parent: 2 type: Transform - - uid: 22781 + - uid: 22872 components: - pos: -13.5,-32.5 parent: 2 type: Transform - - uid: 22782 + - uid: 22873 components: - pos: -15.5,-30.5 parent: 2 type: Transform - - uid: 22783 + - uid: 22874 components: - pos: 16.5,-49.5 parent: 2 type: Transform - - uid: 22784 + - uid: 22875 components: - pos: 11.5,-48.5 parent: 2 type: Transform - - uid: 22785 + - uid: 22876 components: - pos: 12.5,-54.5 parent: 2 type: Transform - - uid: 22786 + - uid: 22877 components: - pos: 13.5,-63.5 parent: 2 type: Transform - - uid: 22787 + - uid: 22878 components: - pos: 41.5,-50.5 parent: 2 type: Transform - - uid: 22788 + - uid: 22879 components: - pos: 37.5,-47.5 parent: 2 type: Transform - - uid: 22789 + - uid: 22880 components: - pos: 61.5,-16.5 parent: 2 type: Transform - - uid: 22790 + - uid: 22881 components: - pos: 55.5,1.5 parent: 2 type: Transform - - uid: 22791 + - uid: 22882 components: - pos: 54.5,30.5 parent: 2 type: Transform - - uid: 22792 + - uid: 22883 components: - pos: 52.5,30.5 parent: 2 type: Transform - - uid: 22793 + - uid: 22884 components: - pos: 59.5,30.5 parent: 2 type: Transform - - uid: 22794 + - uid: 22885 components: - pos: 60.5,27.5 parent: 2 type: Transform - - uid: 22795 + - uid: 22886 components: - pos: 12.5,-13.5 parent: 2 type: Transform - - uid: 22796 + - uid: 22887 components: - pos: 8.5,-13.5 parent: 2 type: Transform - - uid: 22797 + - uid: 22888 components: - pos: -9.5,-94.5 parent: 2 type: Transform - - uid: 22798 + - uid: 22889 components: - pos: -17.5,-95.5 parent: 2 type: Transform - - uid: 22799 + - uid: 22890 components: - pos: -24.5,-94.5 parent: 2 type: Transform - - uid: 22800 + - uid: 22891 components: - pos: -11.5,63.5 parent: 2 type: Transform - - uid: 22801 + - uid: 22892 components: - pos: 53.5,-66.5 parent: 2 type: Transform - - uid: 22802 + - uid: 22893 components: - pos: 6.5,-28.5 parent: 2 type: Transform - - uid: 22803 + - uid: 22894 components: - pos: 1.5,-29.5 parent: 2 type: Transform - - uid: 22804 + - uid: 22895 components: - pos: 52.5,-34.5 parent: 2 type: Transform - - uid: 22805 + - uid: 22896 components: - pos: 59.5,-27.5 parent: 2 type: Transform - - uid: 22806 + - uid: 22897 components: - pos: 44.5,-32.5 parent: 2 type: Transform - - uid: 22807 + - uid: 22898 components: - pos: 69.5,-62.5 parent: 2 type: Transform - - uid: 22808 + - uid: 22899 components: - pos: 58.5,-61.5 parent: 2 type: Transform - - uid: 22809 + - uid: 22900 components: - pos: 57.5,-67.5 parent: 2 type: Transform - - uid: 22810 + - uid: 22901 components: - pos: 48.5,-64.5 parent: 2 type: Transform - - uid: 22811 + - uid: 22902 components: - pos: -29.5,-62.5 parent: 2 type: Transform - - uid: 22812 + - uid: 22903 components: - rot: 3.141592653589793 rad pos: 15.5,-78.5 parent: 2 type: Transform - - uid: 22813 + - uid: 22904 components: - rot: 3.141592653589793 rad pos: 15.5,-88.5 parent: 2 type: Transform - - uid: 22814 + - uid: 22905 components: - pos: 4.5,-72.5 parent: 2 type: Transform - proto: RandomPosterLegit entities: - - uid: 22815 + - uid: 22906 components: - pos: -40.5,-7.5 parent: 2 type: Transform - - uid: 22816 + - uid: 22907 components: - pos: -24.5,14.5 parent: 2 type: Transform - - uid: 22817 + - uid: 22908 components: - pos: -21.5,-40.5 parent: 2 type: Transform - - uid: 22818 + - uid: 22909 components: - rot: 3.141592653589793 rad pos: -19.5,32.5 parent: 2 type: Transform - - uid: 22819 + - uid: 22910 components: - rot: 3.141592653589793 rad pos: -13.5,35.5 parent: 2 type: Transform - - uid: 22820 + - uid: 22911 components: - rot: 3.141592653589793 rad pos: -8.5,47.5 parent: 2 type: Transform - - uid: 22821 + - uid: 22912 components: - rot: 3.141592653589793 rad pos: 23.5,-74.5 parent: 2 type: Transform - - uid: 22822 + - uid: 22913 components: - pos: 50.5,-80.5 parent: 2 type: Transform - - uid: 22823 + - uid: 22914 components: - pos: 49.5,-70.5 parent: 2 type: Transform - - uid: 22824 + - uid: 22915 components: - rot: 3.141592653589793 rad pos: -1.5,55.5 parent: 2 type: Transform - - uid: 22825 + - uid: 22916 components: - rot: 3.141592653589793 rad pos: -7.5,60.5 parent: 2 type: Transform - - uid: 22826 + - uid: 22917 components: - rot: 3.141592653589793 rad pos: -5.5,60.5 parent: 2 type: Transform - - uid: 22827 + - uid: 22918 components: - rot: 3.141592653589793 rad pos: -14.5,58.5 parent: 2 type: Transform - - uid: 22828 + - uid: 22919 components: - rot: 3.141592653589793 rad pos: -20.5,57.5 parent: 2 type: Transform - - uid: 22829 + - uid: 22920 components: - rot: 3.141592653589793 rad pos: -23.5,60.5 parent: 2 type: Transform - - uid: 22830 + - uid: 22921 components: - rot: 3.141592653589793 rad pos: -23.5,67.5 parent: 2 type: Transform - - uid: 22831 + - uid: 22922 components: - rot: 3.141592653589793 rad pos: -11.5,65.5 parent: 2 type: Transform - - uid: 22832 + - uid: 22923 components: - pos: 2.5,-28.5 parent: 2 type: Transform - - uid: 22833 + - uid: 22924 components: - pos: 32.5,-91.5 parent: 2 type: Transform - - uid: 22834 + - uid: 22925 components: - pos: 66.5,-62.5 parent: 2 type: Transform - - uid: 22835 + - uid: 22926 components: - pos: 34.5,-57.5 parent: 2 type: Transform - - uid: 22836 + - uid: 22927 components: - pos: 41.5,-65.5 parent: 2 type: Transform - - uid: 22837 + - uid: 22928 components: - pos: -44.5,12.5 parent: 2 type: Transform - - uid: 22838 + - uid: 22929 components: - pos: 28.5,-79.5 parent: 2 type: Transform - - uid: 22839 + - uid: 22930 components: - rot: 3.141592653589793 rad pos: 31.5,-70.5 parent: 2 type: Transform - - uid: 22840 + - uid: 22931 components: - pos: 5.5,-75.5 parent: 2 type: Transform - proto: RandomSnacks entities: - - uid: 22841 + - uid: 22932 components: - rot: -1.5707963267948966 rad pos: 37.5,-50.5 @@ -156777,421 +158002,416 @@ entities: type: Transform - proto: RandomSoap entities: - - uid: 22842 + - uid: 22933 components: - pos: -6.5,-68.5 parent: 2 type: Transform - - uid: 22843 + - uid: 22934 components: - pos: -50.5,62.5 parent: 2 type: Transform - - uid: 22844 + - uid: 22935 components: - pos: -56.5,-62.5 parent: 2 type: Transform - proto: RandomSpawner entities: - - uid: 22845 + - uid: 22936 components: - pos: 34.5,15.5 parent: 2 type: Transform - - uid: 22846 + - uid: 22937 components: - pos: 16.5,-65.5 parent: 2 type: Transform - - uid: 22847 + - uid: 22938 components: - pos: -5.5,-26.5 parent: 2 type: Transform - - uid: 22848 + - uid: 22939 components: - pos: 25.5,7.5 parent: 2 type: Transform - - uid: 22849 + - uid: 22940 components: - pos: -6.5,-74.5 parent: 2 type: Transform - - uid: 22850 + - uid: 22941 components: - pos: 35.5,-72.5 parent: 2 type: Transform - - uid: 22851 + - uid: 22942 components: - pos: 22.5,17.5 parent: 2 type: Transform - - uid: 22852 + - uid: 22943 components: - pos: 5.5,13.5 parent: 2 type: Transform - - uid: 22853 + - uid: 22944 components: - pos: 6.5,15.5 parent: 2 type: Transform - - uid: 22854 + - uid: 22945 components: - pos: 17.5,0.5 parent: 2 type: Transform - - uid: 22855 + - uid: 22946 components: - pos: 33.5,0.5 parent: 2 type: Transform - - uid: 22856 + - uid: 22947 components: - pos: 32.5,-2.5 parent: 2 type: Transform - - uid: 22857 + - uid: 22948 components: - pos: 26.5,-11.5 parent: 2 type: Transform - - uid: 22858 + - uid: 22949 components: - pos: -5.5,-32.5 parent: 2 type: Transform - - uid: 22859 + - uid: 22950 components: - pos: -2.5,-46.5 parent: 2 type: Transform - - uid: 22860 + - uid: 22951 components: - pos: 35.5,-17.5 parent: 2 type: Transform - - uid: 22861 + - uid: 22952 components: - pos: 49.5,32.5 parent: 2 type: Transform - - uid: 22862 + - uid: 22953 components: - pos: 49.5,33.5 parent: 2 type: Transform - - uid: 22863 + - uid: 22954 components: - pos: 50.5,32.5 parent: 2 type: Transform - - uid: 22864 + - uid: 22955 components: - pos: 48.5,32.5 parent: 2 type: Transform - - uid: 22865 + - uid: 22956 components: - pos: 50.5,33.5 parent: 2 type: Transform - - uid: 22866 + - uid: 22957 components: - pos: 54.5,-12.5 parent: 2 type: Transform - - uid: 22867 + - uid: 22958 components: - pos: 52.5,-6.5 parent: 2 type: Transform - - uid: 22868 + - uid: 22959 components: - pos: 52.5,0.5 parent: 2 type: Transform - - uid: 22869 + - uid: 22960 components: - pos: 50.5,-45.5 parent: 2 type: Transform - - uid: 22870 + - uid: 22961 components: - pos: 42.5,-49.5 parent: 2 type: Transform - - uid: 22871 + - uid: 22962 components: - pos: -4.5,-0.5 parent: 2 type: Transform - - uid: 22872 + - uid: 22963 components: - pos: 7.5,2.5 parent: 2 type: Transform - - uid: 22873 + - uid: 22964 components: - pos: 17.5,-41.5 parent: 2 type: Transform - - uid: 22874 + - uid: 22965 components: - pos: -7.5,-53.5 parent: 2 type: Transform - - uid: 22875 + - uid: 22966 components: - rot: 3.141592653589793 rad pos: 29.5,-72.5 parent: 2 type: Transform - - uid: 22876 + - uid: 22967 components: - pos: -37.5,-6.5 parent: 2 type: Transform - - uid: 22877 + - uid: 22968 components: - pos: -25.5,-67.5 parent: 2 type: Transform - - uid: 22878 - components: - - pos: -27.5,-58.5 - parent: 2 - type: Transform - - uid: 22879 + - uid: 22969 components: - pos: -24.5,-53.5 parent: 2 type: Transform - - uid: 22880 + - uid: 22970 components: - pos: -26.5,-46.5 parent: 2 type: Transform - - uid: 22881 + - uid: 22971 components: - pos: -20.5,-29.5 parent: 2 type: Transform - - uid: 22882 + - uid: 22972 components: - pos: -32.5,-23.5 parent: 2 type: Transform - - uid: 22883 + - uid: 22973 components: - pos: -23.5,-13.5 parent: 2 type: Transform - - uid: 22884 + - uid: 22974 components: - pos: -53.5,-18.5 parent: 2 type: Transform - - uid: 22885 + - uid: 22975 components: - pos: -32.5,-34.5 parent: 2 type: Transform - - uid: 22886 + - uid: 22976 components: - pos: -33.5,-46.5 parent: 2 type: Transform - - uid: 22887 + - uid: 22977 components: - pos: -37.5,-76.5 parent: 2 type: Transform - - uid: 22888 + - uid: 22978 components: - pos: -46.5,-78.5 parent: 2 type: Transform - - uid: 22889 + - uid: 22979 components: - pos: -45.5,-73.5 parent: 2 type: Transform - - uid: 22890 + - uid: 22980 components: - pos: -52.5,-74.5 parent: 2 type: Transform - - uid: 22892 + - uid: 22981 components: - pos: -45.5,-28.5 parent: 2 type: Transform - - uid: 22893 + - uid: 22982 components: - pos: -57.5,-33.5 parent: 2 type: Transform - - uid: 22894 + - uid: 22983 components: - pos: -31.5,-51.5 parent: 2 type: Transform - - uid: 22895 + - uid: 22984 components: - rot: 3.141592653589793 rad pos: -47.5,11.5 parent: 2 type: Transform - - uid: 22896 + - uid: 22985 components: - rot: 3.141592653589793 rad pos: -45.5,6.5 parent: 2 type: Transform - - uid: 22897 + - uid: 22986 components: - rot: 3.141592653589793 rad pos: -46.5,3.5 parent: 2 type: Transform - - uid: 22898 + - uid: 22987 components: - rot: 3.141592653589793 rad pos: -34.5,0.5 parent: 2 type: Transform - - uid: 22899 + - uid: 22988 components: - rot: 3.141592653589793 rad pos: 25.5,-71.5 parent: 2 type: Transform - - uid: 22900 + - uid: 22989 components: - rot: 3.141592653589793 rad pos: 17.5,-84.5 parent: 2 type: Transform - - uid: 22901 + - uid: 22990 components: - pos: 48.5,33.5 parent: 2 type: Transform - - uid: 22902 + - uid: 22991 components: - pos: 22.5,7.5 parent: 2 type: Transform - - uid: 22903 + - uid: 22992 components: - pos: 26.5,-18.5 parent: 2 type: Transform - - uid: 22904 + - uid: 22993 components: - rot: -1.5707963267948966 rad pos: 14.5,-27.5 parent: 2 type: Transform - - uid: 22905 + - uid: 22994 components: - pos: -15.5,36.5 parent: 2 type: Transform - - uid: 22906 + - uid: 22995 components: - pos: -19.5,26.5 parent: 2 type: Transform - - uid: 22907 + - uid: 22996 components: - pos: -17.5,44.5 parent: 2 type: Transform - - uid: 22908 + - uid: 22997 components: - pos: -14.5,45.5 parent: 2 type: Transform - - uid: 22909 + - uid: 22998 components: - pos: 0.5,32.5 parent: 2 type: Transform - - uid: 22910 + - uid: 22999 components: - pos: 53.5,36.5 parent: 2 type: Transform - - uid: 22911 + - uid: 23000 components: - pos: 65.5,22.5 parent: 2 type: Transform - - uid: 22912 + - uid: 23001 components: - pos: -23.5,-98.5 parent: 2 type: Transform - - uid: 22913 + - uid: 23002 components: - pos: -33.5,-97.5 parent: 2 type: Transform - - uid: 22914 + - uid: 23003 components: - pos: -41.5,-89.5 parent: 2 type: Transform - - uid: 22915 + - uid: 23004 components: - pos: -43.5,-91.5 parent: 2 type: Transform - - uid: 22916 + - uid: 23005 components: - pos: -10.5,-97.5 parent: 2 type: Transform - - uid: 22917 + - uid: 23006 components: - pos: -8.5,-85.5 parent: 2 type: Transform - - uid: 22918 + - uid: 23007 components: - rot: 3.141592653589793 rad pos: 29.5,-81.5 parent: 2 type: Transform - - uid: 22919 + - uid: 23008 components: - rot: 3.141592653589793 rad pos: 30.5,-84.5 parent: 2 type: Transform - - uid: 22920 + - uid: 23009 components: - rot: 3.141592653589793 rad pos: 49.5,-88.5 parent: 2 type: Transform - - uid: 22921 + - uid: 23010 components: - rot: 3.141592653589793 rad pos: 48.5,-80.5 parent: 2 type: Transform - - uid: 22922 + - uid: 23011 components: - pos: 13.5,7.5 parent: 2 type: Transform - - uid: 22923 + - uid: 23012 components: - rot: 3.141592653589793 rad pos: 49.5,-73.5 @@ -157199,407 +158419,407 @@ entities: type: Transform - proto: RCD entities: - - uid: 22924 + - uid: 23013 components: - pos: -35.581818,-15.369191 parent: 2 type: Transform - proto: RCDAmmo entities: - - uid: 22925 + - uid: 23014 components: - pos: -35.753693,-15.681691 parent: 2 type: Transform - proto: ReagentContainerFlour entities: - - uid: 22926 + - uid: 23015 components: - pos: 2.337051,6.9047713 parent: 2 type: Transform - - uid: 22927 + - uid: 23016 components: - pos: 2.696426,6.7797713 parent: 2 type: Transform - - uid: 22928 + - uid: 23017 components: - pos: 2.399551,6.5610213 parent: 2 type: Transform - - uid: 22929 + - uid: 23018 components: - pos: 54.086075,18.83411 parent: 2 type: Transform - - uid: 22930 + - uid: 23019 components: - pos: 53.9767,18.568485 parent: 2 type: Transform - - uid: 22931 + - uid: 23020 components: - pos: 54.2892,18.568485 parent: 2 type: Transform - proto: ReagentContainerRice entities: - - uid: 22932 + - uid: 23021 components: - pos: -22.276304,44.96307 parent: 2 type: Transform - - uid: 22933 + - uid: 23022 components: - pos: -22.620054,44.759945 parent: 2 type: Transform - proto: ReagentContainerSugar entities: - - uid: 22934 + - uid: 23023 components: - pos: 4.6055,7.306335 parent: 2 type: Transform - proto: Recycler entities: - - uid: 22935 + - uid: 23024 components: - rot: 1.5707963267948966 rad pos: 17.5,-55.5 parent: 2 type: Transform - links: - - 25400 + - 25491 type: DeviceLinkSink - proto: ReinforcedPlasmaWindow entities: - - uid: 22936 + - uid: 23025 components: - pos: -42.5,-37.5 parent: 2 type: Transform - - uid: 22937 + - uid: 23026 components: - rot: -1.5707963267948966 rad pos: -77.5,-43.5 parent: 2 type: Transform - - uid: 22938 + - uid: 23027 components: - rot: -1.5707963267948966 rad pos: -76.5,-43.5 parent: 2 type: Transform - - uid: 22939 + - uid: 23028 components: - rot: -1.5707963267948966 rad pos: -75.5,-43.5 parent: 2 type: Transform - - uid: 22940 + - uid: 23029 components: - rot: -1.5707963267948966 rad pos: -74.5,-42.5 parent: 2 type: Transform - - uid: 22941 + - uid: 23030 components: - rot: 3.141592653589793 rad pos: 28.5,-20.5 parent: 2 type: Transform - - uid: 22942 + - uid: 23031 components: - pos: -23.5,2.5 parent: 2 type: Transform - - uid: 22943 + - uid: 23032 components: - pos: 71.5,-27.5 parent: 2 type: Transform - - uid: 22944 + - uid: 23033 components: - pos: 29.5,26.5 parent: 2 type: Transform - - uid: 22945 + - uid: 23034 components: - pos: -15.5,2.5 parent: 2 type: Transform - - uid: 22946 + - uid: 23035 components: - rot: 3.141592653589793 rad pos: 23.5,-20.5 parent: 2 type: Transform - - uid: 22947 + - uid: 23036 components: - pos: 29.5,24.5 parent: 2 type: Transform - - uid: 22948 + - uid: 23037 components: - rot: 3.141592653589793 rad pos: 25.5,-20.5 parent: 2 type: Transform - - uid: 22949 + - uid: 23038 components: - pos: -19.5,5.5 parent: 2 type: Transform - - uid: 22950 + - uid: 23039 components: - rot: 3.141592653589793 rad pos: 22.5,-20.5 parent: 2 type: Transform - - uid: 22951 + - uid: 23040 components: - rot: 3.141592653589793 rad pos: 27.5,-20.5 parent: 2 type: Transform - - uid: 22952 + - uid: 23041 components: - rot: 3.141592653589793 rad pos: 6.5,-20.5 parent: 2 type: Transform - - uid: 22953 + - uid: 23042 components: - rot: 3.141592653589793 rad pos: 26.5,-20.5 parent: 2 type: Transform - - uid: 22954 + - uid: 23043 components: - rot: 3.141592653589793 rad pos: 24.5,-20.5 parent: 2 type: Transform - - uid: 22955 + - uid: 23044 components: - pos: 66.5,-39.5 parent: 2 type: Transform - - uid: 22956 + - uid: 23045 components: - pos: -41.5,-35.5 parent: 2 type: Transform - - uid: 22957 + - uid: 23046 components: - pos: -41.5,-34.5 parent: 2 type: Transform - - uid: 22958 + - uid: 23047 components: - pos: -56.5,-11.5 parent: 2 type: Transform - - uid: 22959 + - uid: 23048 components: - pos: -56.5,-12.5 parent: 2 type: Transform - - uid: 22960 + - uid: 23049 components: - pos: -56.5,-13.5 parent: 2 type: Transform - - uid: 22961 + - uid: 23050 components: - pos: -56.5,-14.5 parent: 2 type: Transform - - uid: 22962 + - uid: 23051 components: - pos: -68.5,-22.5 parent: 2 type: Transform - - uid: 22963 + - uid: 23052 components: - pos: -67.5,-22.5 parent: 2 type: Transform - - uid: 22964 + - uid: 23053 components: - pos: -66.5,-22.5 parent: 2 type: Transform - - uid: 22965 + - uid: 23054 components: - pos: -65.5,-22.5 parent: 2 type: Transform - - uid: 22966 + - uid: 23055 components: - pos: -64.5,-22.5 parent: 2 type: Transform - - uid: 22967 + - uid: 23056 components: - pos: -47.5,-54.5 parent: 2 type: Transform - - uid: 22968 + - uid: 23057 components: - pos: -47.5,-50.5 parent: 2 type: Transform - - uid: 22969 + - uid: 23058 components: - pos: -47.5,-52.5 parent: 2 type: Transform - - uid: 22970 + - uid: 23059 components: - pos: -47.5,-48.5 parent: 2 type: Transform - - uid: 22971 + - uid: 23060 components: - pos: -47.5,-46.5 parent: 2 type: Transform - - uid: 22972 + - uid: 23061 components: - pos: -47.5,-44.5 parent: 2 type: Transform - - uid: 22973 + - uid: 23062 components: - pos: -47.5,-42.5 parent: 2 type: Transform - - uid: 22974 + - uid: 23063 components: - rot: 1.5707963267948966 rad pos: -52.5,-85.5 parent: 2 type: Transform - - uid: 22975 + - uid: 23064 components: - rot: 1.5707963267948966 rad pos: -52.5,-89.5 parent: 2 type: Transform - - uid: 22976 + - uid: 23065 components: - pos: -49.5,-87.5 parent: 2 type: Transform - - uid: 22977 + - uid: 23066 components: - pos: -50.5,-87.5 parent: 2 type: Transform - - uid: 22978 + - uid: 23067 components: - pos: -0.5,60.5 parent: 2 type: Transform - - uid: 22979 + - uid: 23068 components: - pos: -2.5,60.5 parent: 2 type: Transform - - uid: 22980 + - uid: 23069 components: - pos: 5.5,69.5 parent: 2 type: Transform - - uid: 22981 + - uid: 23070 components: - pos: -8.5,69.5 parent: 2 type: Transform - - uid: 22982 + - uid: 23071 components: - pos: -56.5,-15.5 parent: 2 type: Transform - - uid: 22983 + - uid: 23072 components: - pos: 68.5,-39.5 parent: 2 type: Transform - - uid: 22984 + - uid: 23073 components: - pos: 73.5,-30.5 parent: 2 type: Transform - - uid: 22985 + - uid: 23074 components: - pos: 73.5,-27.5 parent: 2 type: Transform - - uid: 22986 + - uid: 23075 components: - pos: 69.5,-36.5 parent: 2 type: Transform - - uid: 22987 + - uid: 23076 components: - pos: 69.5,-38.5 parent: 2 type: Transform - - uid: 22988 + - uid: 23077 components: - pos: -44.5,-37.5 parent: 2 type: Transform - - uid: 22989 + - uid: 23078 components: - pos: 71.5,-30.5 parent: 2 type: Transform - - uid: 22990 + - uid: 23079 components: - rot: 3.141592653589793 rad pos: 6.5,-22.5 parent: 2 type: Transform - - uid: 22991 + - uid: 23080 components: - rot: 3.141592653589793 rad pos: 6.5,-23.5 parent: 2 type: Transform - - uid: 22992 + - uid: 23081 components: - pos: 9.5,-18.5 parent: 2 type: Transform - - uid: 22993 + - uid: 23082 components: - rot: 3.141592653589793 rad pos: 6.5,-19.5 parent: 2 type: Transform - - uid: 22994 + - uid: 23083 components: - pos: 67.5,-32.5 parent: 2 type: Transform - - uid: 22995 + - uid: 23084 components: - rot: -1.5707963267948966 rad pos: -75.5,-39.5 parent: 2 type: Transform - - uid: 22996 + - uid: 23085 components: - rot: -1.5707963267948966 rad pos: -74.5,-40.5 parent: 2 type: Transform - - uid: 22997 + - uid: 23086 components: - rot: -1.5707963267948966 rad pos: -77.5,-39.5 @@ -157607,3020 +158827,3005 @@ entities: type: Transform - proto: ReinforcedWindow entities: - - uid: 14156 + - uid: 23087 components: - - rot: 3.141592653589793 rad - pos: 20.5,-34.5 + - rot: -1.5707963267948966 rad + pos: 26.5,-40.5 parent: 2 type: Transform - - uid: 15073 + - uid: 23088 components: - - rot: 1.5707963267948966 rad - pos: 0.5,-2.5 + - rot: 3.141592653589793 rad + pos: 20.5,-34.5 parent: 2 type: Transform - - uid: 22998 + - uid: 23089 components: - pos: -61.5,-35.5 parent: 2 type: Transform - - uid: 22999 + - uid: 23090 components: - rot: 1.5707963267948966 rad pos: -13.5,9.5 parent: 2 type: Transform - - uid: 23000 + - uid: 23091 components: - rot: 1.5707963267948966 rad pos: -64.5,-39.5 parent: 2 type: Transform - - uid: 23001 + - uid: 23092 components: - rot: 1.5707963267948966 rad pos: -74.5,-35.5 parent: 2 type: Transform - - uid: 23002 + - uid: 23093 components: - rot: 1.5707963267948966 rad pos: -74.5,-34.5 parent: 2 type: Transform - - uid: 23003 + - uid: 23094 components: - rot: 1.5707963267948966 rad pos: -64.5,-42.5 parent: 2 type: Transform - - uid: 23004 + - uid: 23095 components: - rot: 1.5707963267948966 rad pos: -64.5,-41.5 parent: 2 type: Transform - - uid: 23005 + - uid: 23096 components: - rot: 1.5707963267948966 rad pos: -64.5,-40.5 parent: 2 type: Transform - - uid: 23006 + - uid: 23097 components: - pos: -64.5,-43.5 parent: 2 type: Transform - - uid: 23007 + - uid: 23098 components: - pos: -76.5,-32.5 parent: 2 type: Transform - - uid: 23008 + - uid: 23099 components: - rot: 1.5707963267948966 rad pos: -7.5,13.5 parent: 2 type: Transform - - uid: 23009 + - uid: 23100 components: - rot: 1.5707963267948966 rad pos: 40.5,-74.5 parent: 2 type: Transform - - uid: 23010 + - uid: 23101 components: - rot: 1.5707963267948966 rad pos: 39.5,-74.5 parent: 2 type: Transform - - uid: 23011 + - uid: 23102 components: - rot: 1.5707963267948966 rad pos: 38.5,-74.5 parent: 2 type: Transform - - uid: 23012 + - uid: 23103 components: - rot: 3.141592653589793 rad pos: 5.5,18.5 parent: 2 type: Transform - - uid: 23013 + - uid: 23104 components: - rot: -1.5707963267948966 rad pos: -46.5,45.5 parent: 2 type: Transform - - uid: 23014 + - uid: 23105 components: - rot: -1.5707963267948966 rad pos: -47.5,45.5 parent: 2 type: Transform - - uid: 23015 + - uid: 23106 components: - pos: 69.5,-42.5 parent: 2 type: Transform - - uid: 23016 + - uid: 23107 components: - pos: 68.5,-42.5 parent: 2 type: Transform - - uid: 23017 + - uid: 23108 components: - pos: 78.5,-45.5 parent: 2 type: Transform - - uid: 23018 + - uid: 23109 components: - pos: 3.5,-39.5 parent: 2 type: Transform - - uid: 23019 + - uid: 23110 components: - pos: 70.5,-42.5 parent: 2 type: Transform - - uid: 23020 + - uid: 23111 components: - rot: 3.141592653589793 rad pos: 28.5,-62.5 parent: 2 type: Transform - - uid: 23021 + - uid: 23112 components: - rot: 3.141592653589793 rad pos: 31.5,-64.5 parent: 2 type: Transform - - uid: 23022 + - uid: 23113 components: - rot: 3.141592653589793 rad pos: 22.5,-55.5 parent: 2 type: Transform - - uid: 23023 + - uid: 23114 components: - rot: 3.141592653589793 rad pos: 33.5,-63.5 parent: 2 type: Transform - - uid: 23024 + - uid: 23115 components: - pos: 32.5,-9.5 parent: 2 type: Transform - - uid: 23025 + - uid: 23116 components: - pos: 3.5,-28.5 parent: 2 type: Transform - - uid: 23026 + - uid: 23117 components: - rot: -1.5707963267948966 rad pos: -15.5,-77.5 parent: 2 type: Transform - - uid: 23027 + - uid: 23118 components: - pos: 19.5,-15.5 parent: 2 type: Transform - - uid: 23028 + - uid: 23119 components: - pos: -18.5,-89.5 parent: 2 type: Transform - - uid: 23029 + - uid: 23120 components: - rot: 3.141592653589793 rad pos: 31.5,-33.5 parent: 2 type: Transform - - uid: 23030 + - uid: 23121 components: - pos: 7.5,-59.5 parent: 2 type: Transform - - uid: 23031 + - uid: 23122 components: - rot: 3.141592653589793 rad pos: -9.5,-76.5 parent: 2 type: Transform - - uid: 23032 + - uid: 23123 components: - rot: -1.5707963267948966 rad pos: 35.5,4.5 parent: 2 type: Transform - - uid: 23033 + - uid: 23124 components: - pos: -20.5,-91.5 parent: 2 type: Transform - - uid: 23034 + - uid: 23125 components: - pos: -1.5,-35.5 parent: 2 type: Transform - - uid: 23035 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-18.5 - parent: 2 - type: Transform - - uid: 23036 + - uid: 23126 components: - rot: 1.5707963267948966 rad pos: 39.5,52.5 parent: 2 type: Transform - - uid: 23037 + - uid: 23127 components: - rot: 1.5707963267948966 rad pos: 23.5,-46.5 parent: 2 type: Transform - - uid: 23038 + - uid: 23128 components: - pos: -17.5,-1.5 parent: 2 type: Transform - - uid: 23039 + - uid: 23129 components: - rot: -1.5707963267948966 rad pos: -13.5,-11.5 parent: 2 type: Transform - - uid: 23040 + - uid: 23130 components: - pos: -45.5,-50.5 parent: 2 type: Transform - - uid: 23041 + - uid: 23131 components: - rot: -1.5707963267948966 rad pos: -14.5,-77.5 parent: 2 type: Transform - - uid: 23042 + - uid: 23132 components: - pos: 20.5,-35.5 parent: 2 type: Transform - - uid: 23043 + - uid: 23133 components: - pos: 20.5,-36.5 parent: 2 type: Transform - - uid: 23044 + - uid: 23134 components: - pos: 43.5,11.5 parent: 2 type: Transform - - uid: 23045 + - uid: 23135 components: - pos: -16.5,-1.5 parent: 2 type: Transform - - uid: 23046 + - uid: 23136 components: - rot: -1.5707963267948966 rad pos: 5.5,-44.5 parent: 2 type: Transform - - uid: 23047 + - uid: 23137 components: - rot: -1.5707963267948966 rad pos: -10.5,-11.5 parent: 2 type: Transform - - uid: 23048 + - uid: 23138 components: - pos: 17.5,18.5 parent: 2 type: Transform - - uid: 23049 + - uid: 23139 components: - pos: -1.5,-32.5 parent: 2 type: Transform - - uid: 23050 + - uid: 23140 components: - pos: 23.5,-12.5 parent: 2 type: Transform - - uid: 23051 + - uid: 23141 components: - pos: -1.5,-34.5 parent: 2 type: Transform - - uid: 23052 + - uid: 23142 components: - rot: -1.5707963267948966 rad pos: 32.5,9.5 parent: 2 type: Transform - - uid: 23053 + - uid: 23143 components: - rot: 3.141592653589793 rad pos: 28.5,13.5 parent: 2 type: Transform - - uid: 23054 + - uid: 23144 components: - pos: 31.5,-38.5 parent: 2 type: Transform - - uid: 23055 + - uid: 23145 components: - pos: 18.5,-38.5 parent: 2 type: Transform - - uid: 23056 + - uid: 23146 components: - rot: 3.141592653589793 rad pos: 10.5,18.5 parent: 2 type: Transform - - uid: 23057 + - uid: 23147 components: - rot: 3.141592653589793 rad pos: 21.5,-55.5 parent: 2 type: Transform - - uid: 23058 + - uid: 23148 components: - rot: 3.141592653589793 rad pos: 33.5,-15.5 parent: 2 type: Transform - - uid: 23059 + - uid: 23149 components: - rot: 3.141592653589793 rad pos: 37.5,-35.5 parent: 2 type: Transform - - uid: 23060 + - uid: 23150 components: - rot: -1.5707963267948966 rad pos: 34.5,9.5 parent: 2 type: Transform - - uid: 23061 + - uid: 23151 components: - pos: 43.5,7.5 parent: 2 type: Transform - - uid: 23062 + - uid: 23152 components: - pos: 23.5,-11.5 parent: 2 type: Transform - - uid: 23063 + - uid: 23153 components: - pos: 35.5,18.5 parent: 2 type: Transform - - uid: 23064 + - uid: 23154 components: - rot: 3.141592653589793 rad pos: 39.5,5.5 parent: 2 type: Transform - - uid: 23065 + - uid: 23155 components: - rot: 3.141592653589793 rad pos: 34.5,13.5 parent: 2 type: Transform - - uid: 23066 + - uid: 23156 components: - rot: 3.141592653589793 rad pos: 31.5,-15.5 parent: 2 type: Transform - - uid: 23067 + - uid: 23157 components: - pos: 37.5,-21.5 parent: 2 type: Transform - - uid: 23068 + - uid: 23158 components: - pos: 37.5,-22.5 parent: 2 type: Transform - - uid: 23069 + - uid: 23159 components: - pos: 43.5,10.5 parent: 2 type: Transform - - uid: 23072 + - uid: 23160 components: - pos: 17.5,-34.5 parent: 2 type: Transform - - uid: 23073 + - uid: 23161 components: - pos: 17.5,-35.5 parent: 2 type: Transform - - uid: 23074 + - uid: 23162 components: - pos: 17.5,-36.5 parent: 2 type: Transform - - uid: 23075 + - uid: 23163 components: - pos: 19.5,-38.5 parent: 2 type: Transform - - uid: 23076 + - uid: 23164 components: - pos: 32.5,-38.5 parent: 2 type: Transform - - uid: 23077 + - uid: 23165 components: - pos: 33.5,-34.5 parent: 2 type: Transform - - uid: 23078 + - uid: 23166 components: - pos: 33.5,-36.5 parent: 2 type: Transform - - uid: 23079 + - uid: 23167 components: - pos: 33.5,-35.5 parent: 2 type: Transform - - uid: 23080 + - uid: 23168 components: - rot: -1.5707963267948966 rad pos: -9.5,-11.5 parent: 2 type: Transform - - uid: 23081 + - uid: 23169 components: - pos: 48.5,-0.5 parent: 2 type: Transform - - uid: 23082 + - uid: 23170 components: - rot: -1.5707963267948966 rad pos: -26.5,-10.5 parent: 2 type: Transform - - uid: 23083 + - uid: 23171 components: - rot: 1.5707963267948966 rad pos: -26.5,-13.5 parent: 2 type: Transform - - uid: 23084 + - uid: 23172 components: - rot: -1.5707963267948966 rad pos: 4.5,-44.5 parent: 2 type: Transform - - uid: 23085 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-18.5 - parent: 2 - type: Transform - - uid: 23086 + - uid: 23173 components: - pos: 12.5,-33.5 parent: 2 type: Transform - - uid: 23087 + - uid: 23174 components: - pos: 12.5,-32.5 parent: 2 type: Transform - - uid: 23088 + - uid: 23175 components: - pos: 2.5,-39.5 parent: 2 type: Transform - - uid: 23089 + - uid: 23176 components: - pos: -18.5,-58.5 parent: 2 type: Transform - - uid: 23090 + - uid: 23177 components: - pos: -20.5,-58.5 parent: 2 type: Transform - - uid: 23091 + - uid: 23178 components: - pos: 27.5,22.5 parent: 2 type: Transform - - uid: 23092 + - uid: 23179 components: - pos: -27.5,-89.5 parent: 2 type: Transform - - uid: 23093 + - uid: 23180 components: - pos: -48.5,-81.5 parent: 2 type: Transform - - uid: 23094 + - uid: 23181 components: - pos: -48.5,-82.5 parent: 2 type: Transform - - uid: 23095 + - uid: 23182 components: - pos: 21.5,-15.5 parent: 2 type: Transform - - uid: 23096 + - uid: 23183 components: - pos: -22.5,-3.5 parent: 2 type: Transform - - uid: 23097 + - uid: 23184 components: - pos: -16.5,-3.5 parent: 2 type: Transform - - uid: 23098 + - uid: 23185 components: - pos: 9.5,13.5 parent: 2 type: Transform - - uid: 23099 + - uid: 23186 components: - rot: -1.5707963267948966 rad pos: 27.5,20.5 parent: 2 type: Transform - - uid: 23100 + - uid: 23187 components: - rot: -1.5707963267948966 rad pos: -12.5,-11.5 parent: 2 type: Transform - - uid: 23101 + - uid: 23188 components: - rot: 3.141592653589793 rad pos: 31.5,13.5 parent: 2 type: Transform - - uid: 23102 + - uid: 23189 components: - pos: -24.5,-91.5 parent: 2 type: Transform - - uid: 23103 + - uid: 23190 components: - rot: -1.5707963267948966 rad pos: -0.5,-82.5 parent: 2 type: Transform - - uid: 23104 + - uid: 23191 components: - rot: 3.141592653589793 rad pos: 39.5,8.5 parent: 2 type: Transform - - uid: 23105 + - uid: 23192 components: - pos: 42.5,-28.5 parent: 2 type: Transform - - uid: 23106 + - uid: 23193 components: - pos: 16.5,-68.5 parent: 2 type: Transform - - uid: 23107 + - uid: 23194 components: - rot: 3.141592653589793 rad pos: -7.5,-76.5 parent: 2 type: Transform - - uid: 23108 + - uid: 23195 components: - rot: -1.5707963267948966 rad pos: -8.5,-11.5 parent: 2 type: Transform - - uid: 23109 + - uid: 23196 components: - pos: -27.5,-88.5 parent: 2 type: Transform - - uid: 23110 + - uid: 23197 components: - rot: -1.5707963267948966 rad pos: -26.5,-11.5 parent: 2 type: Transform - - uid: 23111 + - uid: 23198 components: - pos: -1.5,-31.5 parent: 2 type: Transform - - uid: 23112 + - uid: 23199 components: - pos: 1.5,-30.5 parent: 2 type: Transform - - uid: 23113 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-24.5 - parent: 2 - type: Transform - - uid: 23114 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-24.5 - parent: 2 - type: Transform - - uid: 23115 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-24.5 - parent: 2 - type: Transform - - uid: 23116 + - uid: 23200 components: - rot: 3.141592653589793 rad pos: 3.5,-44.5 parent: 2 type: Transform - - uid: 23117 + - uid: 23201 components: - rot: -1.5707963267948966 rad pos: 29.5,9.5 parent: 2 type: Transform - - uid: 23118 + - uid: 23202 components: - rot: -1.5707963267948966 rad pos: 7.5,18.5 parent: 2 type: Transform - - uid: 23119 + - uid: 23203 components: - pos: -21.5,-3.5 parent: 2 type: Transform - - uid: 23120 + - uid: 23204 components: - pos: 37.5,-36.5 parent: 2 type: Transform - - uid: 23121 + - uid: 23205 components: - rot: -1.5707963267948966 rad pos: 1.5,-74.5 parent: 2 type: Transform - - uid: 23122 + - uid: 23206 components: - pos: -29.5,45.5 parent: 2 type: Transform - - uid: 23123 + - uid: 23207 components: - pos: 9.5,14.5 parent: 2 type: Transform - - uid: 23124 + - uid: 23208 components: - pos: -25.5,-91.5 parent: 2 type: Transform - - uid: 23125 + - uid: 23209 components: - pos: -21.5,-91.5 parent: 2 type: Transform - - uid: 23126 + - uid: 23210 components: - rot: -1.5707963267948966 rad pos: 35.5,7.5 parent: 2 type: Transform - - uid: 23127 + - uid: 23211 components: - rot: -1.5707963267948966 rad pos: -31.5,-79.5 parent: 2 type: Transform - - uid: 23128 + - uid: 23212 components: - rot: -1.5707963267948966 rad pos: -31.5,-77.5 parent: 2 type: Transform - - uid: 23129 + - uid: 23213 components: - pos: 15.5,18.5 parent: 2 type: Transform - - uid: 23130 + - uid: 23214 components: - pos: 5.5,-28.5 parent: 2 type: Transform - - uid: 23131 + - uid: 23215 components: - pos: 18.5,-65.5 parent: 2 type: Transform - - uid: 23132 + - uid: 23216 components: - rot: 3.141592653589793 rad pos: 28.5,-63.5 parent: 2 type: Transform - - uid: 23133 + - uid: 23217 components: - pos: -45.5,-49.5 parent: 2 type: Transform - - uid: 23134 + - uid: 23218 components: - pos: 7.5,-61.5 parent: 2 type: Transform - - uid: 23135 + - uid: 23219 components: - rot: 3.141592653589793 rad pos: 12.5,18.5 parent: 2 type: Transform - - uid: 23136 + - uid: 23220 components: - pos: 1.5,-31.5 parent: 2 type: Transform - - uid: 23137 + - uid: 23221 components: - rot: -1.5707963267948966 rad pos: -13.5,37.5 parent: 2 type: Transform - - uid: 23138 + - uid: 23222 components: - pos: 15.5,-68.5 parent: 2 type: Transform - - uid: 23139 + - uid: 23223 components: - rot: 3.141592653589793 rad pos: 30.5,-64.5 parent: 2 type: Transform - - uid: 23140 + - uid: 23224 components: - rot: 3.141592653589793 rad pos: 33.5,-62.5 parent: 2 type: Transform - - uid: 23141 + - uid: 23225 components: - rot: -1.5707963267948966 rad pos: -2.5,-82.5 parent: 2 type: Transform - - uid: 23142 + - uid: 23226 components: - pos: -18.5,-88.5 parent: 2 type: Transform - - uid: 23143 + - uid: 23227 components: - rot: -1.5707963267948966 rad pos: 1.5,-47.5 parent: 2 type: Transform - - uid: 23144 + - uid: 23228 components: - pos: -1.5,-33.5 parent: 2 type: Transform - - uid: 23146 + - uid: 23229 components: - pos: -22.5,-1.5 parent: 2 type: Transform - - uid: 23147 + - uid: 23230 components: - pos: -21.5,-1.5 parent: 2 type: Transform - - uid: 23148 + - uid: 23231 components: - pos: -17.5,-3.5 parent: 2 type: Transform - - uid: 23149 + - uid: 23232 components: - pos: 12.5,-34.5 parent: 2 type: Transform - - uid: 23150 + - uid: 23233 components: - rot: 3.141592653589793 rad pos: 20.5,-55.5 parent: 2 type: Transform - - uid: 23151 + - uid: 23234 components: - pos: 18.5,-66.5 parent: 2 type: Transform - - uid: 23152 + - uid: 23235 components: - pos: 42.5,-23.5 parent: 2 type: Transform - - uid: 23153 + - uid: 23236 components: - pos: 41.5,-28.5 parent: 2 type: Transform - - uid: 23154 + - uid: 23237 components: - pos: 41.5,-23.5 parent: 2 type: Transform - - uid: 23155 + - uid: 23238 components: - pos: -2.5,42.5 parent: 2 type: Transform - - uid: 23156 + - uid: 23239 components: - pos: 6.5,25.5 parent: 2 type: Transform - - uid: 23157 + - uid: 23240 components: - pos: 2.5,25.5 parent: 2 type: Transform - - uid: 23158 + - uid: 23241 components: - pos: 54.5,61.5 parent: 2 type: Transform - - uid: 23159 + - uid: 23242 components: - pos: 18.5,32.5 parent: 2 type: Transform - - uid: 23160 + - uid: 23243 components: - pos: 18.5,33.5 parent: 2 type: Transform - - uid: 23161 + - uid: 23244 components: - rot: -1.5707963267948966 rad pos: 7.5,35.5 parent: 2 type: Transform - - uid: 23162 + - uid: 23245 components: - pos: 4.5,25.5 parent: 2 type: Transform - - uid: 23163 + - uid: 23246 components: - rot: -1.5707963267948966 rad pos: 36.5,24.5 parent: 2 type: Transform - - uid: 23164 + - uid: 23247 components: - rot: -1.5707963267948966 rad pos: 38.5,24.5 parent: 2 type: Transform - - uid: 23165 + - uid: 23248 components: - rot: -1.5707963267948966 rad pos: 40.5,24.5 parent: 2 type: Transform - - uid: 23166 + - uid: 23249 components: - rot: 3.141592653589793 rad pos: 52.5,14.5 parent: 2 type: Transform - - uid: 23167 + - uid: 23250 components: - rot: 3.141592653589793 rad pos: 53.5,14.5 parent: 2 type: Transform - - uid: 23168 + - uid: 23251 components: - rot: 3.141592653589793 rad pos: 54.5,14.5 parent: 2 type: Transform - - uid: 23169 + - uid: 23252 components: - rot: 3.141592653589793 rad pos: 51.5,13.5 parent: 2 type: Transform - - uid: 23170 + - uid: 23253 components: - rot: 3.141592653589793 rad pos: 51.5,11.5 parent: 2 type: Transform - - uid: 23171 + - uid: 23254 components: - rot: 3.141592653589793 rad pos: 52.5,10.5 parent: 2 type: Transform - - uid: 23172 + - uid: 23255 components: - rot: 3.141592653589793 rad pos: 54.5,10.5 parent: 2 type: Transform - - uid: 23173 + - uid: 23256 components: - rot: 3.141592653589793 rad pos: 55.5,11.5 parent: 2 type: Transform - - uid: 23174 + - uid: 23257 components: - rot: 3.141592653589793 rad pos: 55.5,12.5 parent: 2 type: Transform - - uid: 23175 + - uid: 23258 components: - rot: 3.141592653589793 rad pos: 55.5,13.5 parent: 2 type: Transform - - uid: 23176 + - uid: 23259 components: - pos: 46.5,9.5 parent: 2 type: Transform - - uid: 23177 + - uid: 23260 components: - rot: -1.5707963267948966 rad pos: 42.5,24.5 parent: 2 type: Transform - - uid: 23178 + - uid: 23261 components: - rot: -1.5707963267948966 rad pos: 43.5,5.5 parent: 2 type: Transform - - uid: 23179 + - uid: 23262 components: - pos: 24.5,-58.5 parent: 2 type: Transform - - uid: 23180 + - uid: 23263 components: - pos: 24.5,-59.5 parent: 2 type: Transform - - uid: 23181 + - uid: 23264 components: - pos: 66.5,25.5 parent: 2 type: Transform - - uid: 23182 + - uid: 23265 components: - pos: 66.5,23.5 parent: 2 type: Transform - - uid: 23183 + - uid: 23266 components: - pos: 64.5,27.5 parent: 2 type: Transform - - uid: 23184 + - uid: 23267 components: - pos: 62.5,27.5 parent: 2 type: Transform - - uid: 23185 + - uid: 23268 components: - rot: 1.5707963267948966 rad pos: 68.5,-6.5 parent: 2 type: Transform - - uid: 23186 + - uid: 23269 components: - pos: 60.5,-4.5 parent: 2 type: Transform - - uid: 23187 + - uid: 23270 components: - rot: 1.5707963267948966 rad pos: 68.5,-12.5 parent: 2 type: Transform - - uid: 23188 + - uid: 23271 components: - rot: 1.5707963267948966 rad pos: 68.5,-10.5 parent: 2 type: Transform - - uid: 23189 + - uid: 23272 components: - rot: 1.5707963267948966 rad pos: 68.5,-4.5 parent: 2 type: Transform - - uid: 23190 + - uid: 23273 components: - pos: 59.5,-15.5 parent: 2 type: Transform - - uid: 23191 + - uid: 23274 components: - pos: 58.5,-15.5 parent: 2 type: Transform - - uid: 23192 + - uid: 23275 components: - pos: 56.5,-15.5 parent: 2 type: Transform - - uid: 23193 + - uid: 23276 components: - pos: 55.5,-15.5 parent: 2 type: Transform - - uid: 23194 + - uid: 23277 components: - pos: 63.5,-26.5 parent: 2 type: Transform - - uid: 23195 + - uid: 23278 components: - pos: 63.5,-24.5 parent: 2 type: Transform - - uid: 23196 + - uid: 23279 components: - pos: 61.5,-22.5 parent: 2 type: Transform - - uid: 23197 + - uid: 23280 components: - pos: 61.5,-20.5 parent: 2 type: Transform - - uid: 23198 + - uid: 23281 components: - pos: 63.5,-18.5 parent: 2 type: Transform - - uid: 23199 + - uid: 23282 components: - pos: 61.5,-24.5 parent: 2 type: Transform - - uid: 23200 + - uid: 23283 components: - pos: 63.5,-22.5 parent: 2 type: Transform - - uid: 23201 + - uid: 23284 components: - pos: 63.5,-20.5 parent: 2 type: Transform - - uid: 23202 + - uid: 23285 components: - pos: 61.5,-18.5 parent: 2 type: Transform - - uid: 23203 + - uid: 23286 components: - rot: 1.5707963267948966 rad pos: 68.5,-2.5 parent: 2 type: Transform - - uid: 23204 + - uid: 23287 components: - pos: 64.5,-37.5 parent: 2 type: Transform - - uid: 23205 + - uid: 23288 components: - pos: 78.5,-38.5 parent: 2 type: Transform - - uid: 23206 + - uid: 23289 components: - pos: 77.5,-32.5 parent: 2 type: Transform - - uid: 23207 + - uid: 23290 components: - pos: 78.5,-32.5 parent: 2 type: Transform - - uid: 23208 + - uid: 23291 components: - pos: 77.5,-38.5 parent: 2 type: Transform - - uid: 23209 + - uid: 23292 components: - rot: -1.5707963267948966 rad pos: 42.5,-31.5 parent: 2 type: Transform - - uid: 23210 + - uid: 23293 components: - pos: 56.5,-46.5 parent: 2 type: Transform - - uid: 23211 + - uid: 23294 components: - pos: 61.5,-56.5 parent: 2 type: Transform - - uid: 23212 + - uid: 23295 components: - pos: 61.5,-50.5 parent: 2 type: Transform - - uid: 23213 + - uid: 23296 components: - pos: 63.5,-50.5 parent: 2 type: Transform - - uid: 23214 + - uid: 23297 components: - pos: 62.5,-56.5 parent: 2 type: Transform - - uid: 23215 + - uid: 23298 components: - pos: 58.5,-52.5 parent: 2 type: Transform - - uid: 23216 + - uid: 23299 components: - pos: 58.5,-51.5 parent: 2 type: Transform - - uid: 23217 + - uid: 23300 components: - pos: 66.5,-52.5 parent: 2 type: Transform - - uid: 23218 + - uid: 23301 components: - pos: 66.5,-51.5 parent: 2 type: Transform - - uid: 23219 + - uid: 23302 components: - pos: 63.5,-56.5 parent: 2 type: Transform - - uid: 23220 + - uid: 23303 components: - pos: 54.5,-51.5 parent: 2 type: Transform - - uid: 23221 + - uid: 23304 components: - pos: 54.5,-52.5 parent: 2 type: Transform - - uid: 23222 + - uid: 23305 components: - pos: 54.5,-53.5 parent: 2 type: Transform - - uid: 23223 + - uid: 23306 components: - pos: 50.5,-31.5 parent: 2 type: Transform - - uid: 23224 + - uid: 23307 components: - pos: 51.5,-31.5 parent: 2 type: Transform - - uid: 23225 + - uid: 23308 components: - pos: 79.5,-35.5 parent: 2 type: Transform - - uid: 23226 + - uid: 23309 components: - pos: 58.5,-25.5 parent: 2 type: Transform - - uid: 23227 + - uid: 23310 components: - pos: 76.5,-35.5 parent: 2 type: Transform - - uid: 23228 + - uid: 23311 components: - pos: 77.5,-35.5 parent: 2 type: Transform - - uid: 23229 + - uid: 23312 components: - pos: 78.5,-35.5 parent: 2 type: Transform - - uid: 23230 + - uid: 23313 components: - pos: 78.5,-46.5 parent: 2 type: Transform - - uid: 23231 + - uid: 23314 components: - pos: -45.5,-51.5 parent: 2 type: Transform - - uid: 23232 + - uid: 23315 components: - pos: 49.5,-59.5 parent: 2 type: Transform - - uid: 23233 + - uid: 23316 components: - pos: 50.5,-59.5 parent: 2 type: Transform - - uid: 23234 + - uid: 23317 components: - pos: 52.5,-61.5 parent: 2 type: Transform - - uid: 23235 + - uid: 23318 components: - pos: 49.5,-62.5 parent: 2 type: Transform - - uid: 23236 + - uid: 23319 components: - pos: 51.5,-62.5 parent: 2 type: Transform - - uid: 23237 + - uid: 23320 components: - pos: 43.5,-69.5 parent: 2 type: Transform - - uid: 23238 + - uid: 23321 components: - pos: 42.5,-69.5 parent: 2 type: Transform - - uid: 23239 + - uid: 23322 components: - pos: 35.5,-69.5 parent: 2 type: Transform - - uid: 23240 + - uid: 23323 components: - pos: 44.5,-69.5 parent: 2 type: Transform - - uid: 23241 + - uid: 23324 components: - rot: 1.5707963267948966 rad pos: 20.5,-44.5 parent: 2 type: Transform - - uid: 23242 + - uid: 23325 components: - pos: -40.5,-12.5 parent: 2 type: Transform - - uid: 23243 + - uid: 23326 components: - pos: -40.5,-9.5 parent: 2 type: Transform - - uid: 23244 + - uid: 23327 components: - pos: -33.5,-17.5 parent: 2 type: Transform - - uid: 23245 + - uid: 23328 components: - pos: -33.5,-15.5 parent: 2 type: Transform - - uid: 23246 + - uid: 23329 components: - rot: -1.5707963267948966 rad pos: -30.5,-12.5 parent: 2 type: Transform - - uid: 23247 + - uid: 23330 components: - rot: -1.5707963267948966 rad pos: -30.5,-13.5 parent: 2 type: Transform - - uid: 23248 + - uid: 23331 components: - pos: -26.5,-9.5 parent: 2 type: Transform - - uid: 23249 + - uid: 23332 components: - rot: -1.5707963267948966 rad pos: -21.5,-35.5 parent: 2 type: Transform - - uid: 23250 + - uid: 23333 components: - pos: 58.5,-59.5 parent: 2 type: Transform - - uid: 23251 + - uid: 23334 components: - pos: 58.5,-60.5 parent: 2 type: Transform - - uid: 23252 + - uid: 23335 components: - pos: 54.5,-25.5 parent: 2 type: Transform - - uid: 23253 + - uid: 23336 components: - rot: 3.141592653589793 rad pos: 56.5,-55.5 parent: 2 type: Transform - - uid: 23254 + - uid: 23337 components: - rot: 3.141592653589793 rad pos: 59.5,-54.5 parent: 2 type: Transform - - uid: 23255 + - uid: 23338 components: - rot: 3.141592653589793 rad pos: 65.5,-54.5 parent: 2 type: Transform - - uid: 23256 + - uid: 23339 components: - rot: 1.5707963267948966 rad pos: 44.5,-85.5 parent: 2 type: Transform - - uid: 23257 + - uid: 23340 components: - pos: 41.5,-74.5 parent: 2 type: Transform - - uid: 23258 + - uid: 23341 components: - rot: -1.5707963267948966 rad pos: 37.5,-74.5 parent: 2 type: Transform - - uid: 23259 + - uid: 23342 components: - pos: 37.5,-66.5 parent: 2 type: Transform - - uid: 23260 + - uid: 23343 components: - pos: 36.5,-69.5 parent: 2 type: Transform - - uid: 23261 + - uid: 23344 components: - pos: 34.5,-69.5 parent: 2 type: Transform - - uid: 23262 + - uid: 23345 components: - pos: 37.5,-64.5 parent: 2 type: Transform - - uid: 23263 + - uid: 23346 components: - rot: 1.5707963267948966 rad pos: 34.5,-86.5 parent: 2 type: Transform - - uid: 23264 + - uid: 23347 components: - rot: 1.5707963267948966 rad pos: 34.5,-87.5 parent: 2 type: Transform - - uid: 23265 + - uid: 23348 components: - rot: 1.5707963267948966 rad pos: 46.5,-78.5 parent: 2 type: Transform - - uid: 23266 + - uid: 23349 components: - rot: 1.5707963267948966 rad pos: 16.5,-88.5 parent: 2 type: Transform - - uid: 23267 + - uid: 23350 components: - rot: 1.5707963267948966 rad pos: 13.5,-78.5 parent: 2 type: Transform - - uid: 23268 + - uid: 23351 components: - rot: 1.5707963267948966 rad pos: 14.5,-88.5 parent: 2 type: Transform - - uid: 23269 + - uid: 23352 components: - rot: 1.5707963267948966 rad pos: 17.5,-78.5 parent: 2 type: Transform - - uid: 23270 + - uid: 23353 components: - rot: 1.5707963267948966 rad pos: 44.5,-84.5 parent: 2 type: Transform - - uid: 23271 + - uid: 23354 components: - pos: 17.5,-74.5 parent: 2 type: Transform - - uid: 23272 + - uid: 23355 components: - pos: 18.5,-74.5 parent: 2 type: Transform - - uid: 23273 + - uid: 23356 components: - pos: 14.5,-74.5 parent: 2 type: Transform - - uid: 23274 + - uid: 23357 components: - pos: 17.5,-71.5 parent: 2 type: Transform - - uid: 23275 + - uid: 23358 components: - rot: 1.5707963267948966 rad pos: 44.5,-86.5 parent: 2 type: Transform - - uid: 23276 + - uid: 23359 components: - pos: 15.5,-71.5 parent: 2 type: Transform - - uid: 23277 + - uid: 23360 components: - pos: 15.5,-74.5 parent: 2 type: Transform - - uid: 23278 + - uid: 23361 components: - rot: 3.141592653589793 rad pos: 26.5,-67.5 parent: 2 type: Transform - - uid: 23279 + - uid: 23362 components: - rot: 3.141592653589793 rad pos: 28.5,-90.5 parent: 2 type: Transform - - uid: 23280 + - uid: 23363 components: - rot: 3.141592653589793 rad pos: 24.5,-80.5 parent: 2 type: Transform - - uid: 23281 + - uid: 23364 components: - pos: 14.5,-71.5 parent: 2 type: Transform - - uid: 23282 + - uid: 23365 components: - pos: 18.5,-71.5 parent: 2 type: Transform - - uid: 23283 + - uid: 23366 components: - rot: 3.141592653589793 rad pos: 25.5,-80.5 parent: 2 type: Transform - - uid: 23284 + - uid: 23367 components: - rot: 1.5707963267948966 rad pos: 46.5,-79.5 parent: 2 type: Transform - - uid: 23285 + - uid: 23368 components: - rot: 1.5707963267948966 rad pos: 13.5,-88.5 parent: 2 type: Transform - - uid: 23286 + - uid: 23369 components: - rot: 1.5707963267948966 rad pos: 17.5,-88.5 parent: 2 type: Transform - - uid: 23287 + - uid: 23370 components: - rot: 1.5707963267948966 rad pos: 32.5,-77.5 parent: 2 type: Transform - - uid: 23288 + - uid: 23371 components: - rot: 1.5707963267948966 rad pos: 16.5,-78.5 parent: 2 type: Transform - - uid: 23289 + - uid: 23372 components: - rot: 1.5707963267948966 rad pos: 14.5,-78.5 parent: 2 type: Transform - - uid: 23290 + - uid: 23373 components: - rot: 3.141592653589793 rad pos: 25.5,-67.5 parent: 2 type: Transform - - uid: 23291 + - uid: 23374 components: - rot: -1.5707963267948966 rad pos: 50.5,-64.5 parent: 2 type: Transform - - uid: 23292 + - uid: 23375 components: - pos: -33.5,-9.5 parent: 2 type: Transform - - uid: 23293 + - uid: 23376 components: - pos: -33.5,-12.5 parent: 2 type: Transform - - uid: 23294 + - uid: 23377 components: - pos: -45.5,-47.5 parent: 2 type: Transform - - uid: 23295 + - uid: 23378 components: - rot: -1.5707963267948966 rad pos: -37.5,-14.5 parent: 2 type: Transform - - uid: 23296 + - uid: 23379 components: - pos: -45.5,-48.5 parent: 2 type: Transform - - uid: 23297 + - uid: 23380 components: - pos: 78.5,-44.5 parent: 2 type: Transform - - uid: 23298 + - uid: 23381 components: - pos: 68.5,-56.5 parent: 2 type: Transform - - uid: 23299 + - uid: 23382 components: - pos: -43.5,-13.5 parent: 2 type: Transform - - uid: 23300 + - uid: 23383 components: - pos: 48.5,7.5 parent: 2 type: Transform - - uid: 23301 + - uid: 23384 components: - pos: 70.5,-54.5 parent: 2 type: Transform - - uid: 23302 + - uid: 23385 components: - pos: 61.5,-61.5 parent: 2 type: Transform - - uid: 23303 + - uid: 23386 components: - pos: 62.5,-61.5 parent: 2 type: Transform - - uid: 23304 + - uid: 23387 components: - pos: 63.5,-61.5 parent: 2 type: Transform - - uid: 23305 + - uid: 23388 components: - pos: 71.5,-64.5 parent: 2 type: Transform - - uid: 23306 + - uid: 23389 components: - pos: -38.5,-37.5 parent: 2 type: Transform - - uid: 23307 + - uid: 23390 components: - pos: -37.5,-37.5 parent: 2 type: Transform - - uid: 23308 + - uid: 23391 components: - pos: -46.5,-7.5 parent: 2 type: Transform - - uid: 23309 + - uid: 23392 components: - pos: -45.5,-18.5 parent: 2 type: Transform - - uid: 23310 + - uid: 23393 components: - rot: 3.141592653589793 rad pos: -49.5,-19.5 parent: 2 type: Transform - - uid: 23311 + - uid: 23394 components: - pos: -61.5,-31.5 parent: 2 type: Transform - - uid: 23312 + - uid: 23395 components: - rot: 3.141592653589793 rad pos: -61.5,-44.5 parent: 2 type: Transform - - uid: 23313 + - uid: 23396 components: - pos: -45.5,-43.5 parent: 2 type: Transform - - uid: 23314 + - uid: 23397 components: - pos: -45.5,-45.5 parent: 2 type: Transform - - uid: 23315 + - uid: 23398 components: - pos: -45.5,-46.5 parent: 2 type: Transform - - uid: 23316 + - uid: 23399 components: - pos: -45.5,-44.5 parent: 2 type: Transform - - uid: 23317 + - uid: 23400 components: - pos: -45.5,-42.5 parent: 2 type: Transform - - uid: 23318 + - uid: 23401 components: - pos: -35.5,-58.5 parent: 2 type: Transform - - uid: 23319 + - uid: 23402 components: - rot: 3.141592653589793 rad pos: -38.5,-59.5 parent: 2 type: Transform - - uid: 23320 + - uid: 23403 components: - pos: -44.5,-58.5 parent: 2 type: Transform - - uid: 23321 + - uid: 23404 components: - pos: -42.5,-58.5 parent: 2 type: Transform - - uid: 23322 + - uid: 23405 components: - pos: -41.5,-58.5 parent: 2 type: Transform - - uid: 23323 + - uid: 23406 components: - rot: 3.141592653589793 rad pos: -73.5,-27.5 parent: 2 type: Transform - - uid: 23324 + - uid: 23407 components: - pos: -62.5,-35.5 parent: 2 type: Transform - - uid: 23325 + - uid: 23408 components: - rot: 1.5707963267948966 rad pos: -52.5,-60.5 parent: 2 type: Transform - - uid: 23326 + - uid: 23409 components: - rot: 1.5707963267948966 rad pos: -58.5,-60.5 parent: 2 type: Transform - - uid: 23327 + - uid: 23410 components: - rot: 1.5707963267948966 rad pos: -58.5,-59.5 parent: 2 type: Transform - - uid: 23328 + - uid: 23411 components: - pos: -58.5,-52.5 parent: 2 type: Transform - - uid: 23329 + - uid: 23412 components: - pos: -58.5,-51.5 parent: 2 type: Transform - - uid: 23330 + - uid: 23413 components: - pos: -58.5,-48.5 parent: 2 type: Transform - - uid: 23331 + - uid: 23414 components: - pos: -58.5,-47.5 parent: 2 type: Transform - - uid: 23332 + - uid: 23415 components: - pos: -41.5,-62.5 parent: 2 type: Transform - - uid: 23333 + - uid: 23416 components: - pos: -40.5,-62.5 parent: 2 type: Transform - - uid: 23334 + - uid: 23417 components: - rot: -1.5707963267948966 rad pos: -55.5,-83.5 parent: 2 type: Transform - - uid: 23335 + - uid: 23418 components: - rot: -1.5707963267948966 rad pos: -53.5,-83.5 parent: 2 type: Transform - - uid: 23336 + - uid: 23419 components: - pos: -57.5,-75.5 parent: 2 type: Transform - - uid: 23337 + - uid: 23420 components: - pos: -57.5,-76.5 parent: 2 type: Transform - - uid: 23338 + - uid: 23421 components: - pos: -57.5,-77.5 parent: 2 type: Transform - - uid: 23339 + - uid: 23422 components: - pos: -48.5,-83.5 parent: 2 type: Transform - - uid: 23340 + - uid: 23423 components: - pos: -35.5,-82.5 parent: 2 type: Transform - - uid: 23341 + - uid: 23424 components: - pos: -35.5,-81.5 parent: 2 type: Transform - - uid: 23342 + - uid: 23425 components: - pos: -35.5,-77.5 parent: 2 type: Transform - - uid: 23343 + - uid: 23426 components: - pos: -35.5,-83.5 parent: 2 type: Transform - - uid: 23344 + - uid: 23427 components: - pos: -35.5,-76.5 parent: 2 type: Transform - - uid: 23345 + - uid: 23428 components: - pos: -35.5,-78.5 parent: 2 type: Transform - - uid: 23346 + - uid: 23429 components: - pos: -40.5,-86.5 parent: 2 type: Transform - - uid: 23347 + - uid: 23430 components: - pos: -43.5,-86.5 parent: 2 type: Transform - - uid: 23348 + - uid: 23431 components: - rot: 3.141592653589793 rad pos: 19.5,-33.5 parent: 2 type: Transform - - uid: 23349 + - uid: 23432 components: - rot: -1.5707963267948966 rad pos: -46.5,-38.5 parent: 2 type: Transform - - uid: 23350 + - uid: 23433 components: - rot: -1.5707963267948966 rad pos: 8.5,35.5 parent: 2 type: Transform - - uid: 23351 + - uid: 23434 components: - pos: 53.5,61.5 parent: 2 type: Transform - - uid: 23352 + - uid: 23435 components: - pos: 50.5,56.5 parent: 2 type: Transform - - uid: 23353 + - uid: 23436 components: - rot: -1.5707963267948966 rad pos: -7.5,28.5 parent: 2 type: Transform - - uid: 23354 + - uid: 23437 components: - rot: -1.5707963267948966 rad pos: -7.5,27.5 parent: 2 type: Transform - - uid: 23355 + - uid: 23438 components: - pos: 55.5,61.5 parent: 2 type: Transform - - uid: 23356 + - uid: 23439 components: - pos: -0.5,35.5 parent: 2 type: Transform - - uid: 23357 + - uid: 23440 components: - pos: -1.5,35.5 parent: 2 type: Transform - - uid: 23358 + - uid: 23441 components: - pos: -2.5,35.5 parent: 2 type: Transform - - uid: 23359 + - uid: 23442 components: - pos: 50.5,57.5 parent: 2 type: Transform - - uid: 23360 + - uid: 23443 components: - pos: 58.5,56.5 parent: 2 type: Transform - - uid: 23361 + - uid: 23444 components: - rot: -1.5707963267948966 rad pos: 7.5,29.5 parent: 2 type: Transform - - uid: 23362 + - uid: 23445 components: - rot: -1.5707963267948966 rad pos: -26.5,23.5 parent: 2 type: Transform - - uid: 23363 + - uid: 23446 components: - pos: -3.5,42.5 parent: 2 type: Transform - - uid: 23364 + - uid: 23447 components: - pos: 45.5,9.5 parent: 2 type: Transform - - uid: 23365 + - uid: 23448 components: - pos: -29.5,21.5 parent: 2 type: Transform - - uid: 23366 + - uid: 23449 components: - pos: -29.5,23.5 parent: 2 type: Transform - - uid: 23367 + - uid: 23450 components: - pos: -26.5,21.5 parent: 2 type: Transform - - uid: 23368 + - uid: 23451 components: - pos: -31.5,27.5 parent: 2 type: Transform - - uid: 23369 + - uid: 23452 components: - pos: -33.5,27.5 parent: 2 type: Transform - - uid: 23370 + - uid: 23453 components: - pos: -30.5,27.5 parent: 2 type: Transform - - uid: 23371 + - uid: 23454 components: - rot: 1.5707963267948966 rad pos: -49.5,21.5 parent: 2 type: Transform - - uid: 23372 + - uid: 23455 components: - rot: 1.5707963267948966 rad pos: -50.5,21.5 parent: 2 type: Transform - - uid: 23373 + - uid: 23456 components: - rot: -1.5707963267948966 rad pos: -50.5,18.5 parent: 2 type: Transform - - uid: 23374 + - uid: 23457 components: - rot: -1.5707963267948966 rad pos: -50.5,24.5 parent: 2 type: Transform - - uid: 23375 + - uid: 23458 components: - rot: -1.5707963267948966 rad pos: 8.5,29.5 parent: 2 type: Transform - - uid: 23376 + - uid: 23459 components: - pos: 58.5,57.5 parent: 2 type: Transform - - uid: 23377 + - uid: 23460 components: - pos: 50.5,58.5 parent: 2 type: Transform - - uid: 23378 + - uid: 23461 components: - pos: 58.5,58.5 parent: 2 type: Transform - - uid: 23379 + - uid: 23462 components: - rot: 1.5707963267948966 rad pos: 67.5,-8.5 parent: 2 type: Transform - - uid: 23380 + - uid: 23463 components: - pos: -33.5,32.5 parent: 2 type: Transform - - uid: 23381 + - uid: 23464 components: - pos: -32.5,32.5 parent: 2 type: Transform - - uid: 23382 + - uid: 23465 components: - pos: -31.5,32.5 parent: 2 type: Transform - - uid: 23383 + - uid: 23466 components: - pos: -49.5,29.5 parent: 2 type: Transform - - uid: 23384 + - uid: 23467 components: - pos: -49.5,35.5 parent: 2 type: Transform - - uid: 23385 + - uid: 23468 components: - pos: -52.5,35.5 parent: 2 type: Transform - - uid: 23386 + - uid: 23469 components: - pos: -52.5,29.5 parent: 2 type: Transform - - uid: 23387 + - uid: 23470 components: - pos: -52.5,18.5 parent: 2 type: Transform - - uid: 23388 + - uid: 23471 components: - pos: -52.5,24.5 parent: 2 type: Transform - - uid: 23389 + - uid: 23472 components: - rot: -1.5707963267948966 rad pos: -52.5,21.5 parent: 2 type: Transform - - uid: 23390 + - uid: 23473 components: - rot: -1.5707963267948966 rad pos: -53.5,21.5 parent: 2 type: Transform - - uid: 23391 + - uid: 23474 components: - rot: -1.5707963267948966 rad pos: -31.5,35.5 parent: 2 type: Transform - - uid: 23392 + - uid: 23475 components: - pos: -39.5,31.5 parent: 2 type: Transform - - uid: 23393 + - uid: 23476 components: - rot: -1.5707963267948966 rad pos: -32.5,35.5 parent: 2 type: Transform - - uid: 23394 + - uid: 23477 components: - rot: -1.5707963267948966 rad pos: -17.5,26.5 parent: 2 type: Transform - - uid: 23395 + - uid: 23478 components: - rot: 1.5707963267948966 rad pos: 66.5,-1.5 parent: 2 type: Transform - - uid: 23396 + - uid: 23479 components: - pos: -53.5,11.5 parent: 2 type: Transform - - uid: 23397 + - uid: 23480 components: - pos: -53.5,10.5 parent: 2 type: Transform - - uid: 23398 + - uid: 23481 components: - rot: -1.5707963267948966 rad pos: -49.5,13.5 parent: 2 type: Transform - - uid: 23399 + - uid: 23482 components: - rot: -1.5707963267948966 rad pos: -48.5,13.5 parent: 2 type: Transform - - uid: 23400 + - uid: 23483 components: - pos: 56.5,-25.5 parent: 2 type: Transform - - uid: 23401 + - uid: 23484 components: - rot: 1.5707963267948966 rad pos: 67.5,-7.5 parent: 2 type: Transform - - uid: 23402 + - uid: 23485 components: - rot: 1.5707963267948966 rad pos: 67.5,-9.5 parent: 2 type: Transform - - uid: 23403 + - uid: 23486 components: - rot: 1.5707963267948966 rad pos: 66.5,-0.5 parent: 2 type: Transform - - uid: 23404 + - uid: 23487 components: - rot: 1.5707963267948966 rad pos: 46.5,-77.5 parent: 2 type: Transform - - uid: 23405 + - uid: 23488 components: - pos: 25.5,24.5 parent: 2 type: Transform - - uid: 23406 + - uid: 23489 components: - pos: -45.5,-52.5 parent: 2 type: Transform - - uid: 23407 + - uid: 23490 components: - pos: -45.5,-53.5 parent: 2 type: Transform - - uid: 23408 + - uid: 23491 components: - pos: -45.5,-54.5 parent: 2 type: Transform - - uid: 23409 + - uid: 23492 components: - pos: -45.5,-55.5 parent: 2 type: Transform - - uid: 23410 + - uid: 23493 components: - pos: 24.5,-60.5 parent: 2 type: Transform - - uid: 23411 + - uid: 23494 components: - pos: 46.5,43.5 parent: 2 type: Transform - - uid: 23412 + - uid: 23495 components: - rot: 3.141592653589793 rad pos: 46.5,3.5 parent: 2 type: Transform - - uid: 23413 + - uid: 23496 components: - rot: 3.141592653589793 rad pos: 59.5,43.5 parent: 2 type: Transform - - uid: 23414 + - uid: 23497 components: - rot: -1.5707963267948966 rad pos: -13.5,39.5 parent: 2 type: Transform - - uid: 23415 + - uid: 23498 components: - pos: -14.5,56.5 parent: 2 type: Transform - - uid: 23416 + - uid: 23499 components: - pos: -11.5,69.5 parent: 2 type: Transform - - uid: 23417 + - uid: 23500 components: - pos: -14.5,55.5 parent: 2 type: Transform - - uid: 23418 + - uid: 23501 components: - pos: -16.5,55.5 parent: 2 type: Transform - - uid: 23419 + - uid: 23502 components: - pos: -16.5,56.5 parent: 2 type: Transform - - uid: 23420 + - uid: 23503 components: - pos: -23.5,61.5 parent: 2 type: Transform - - uid: 23421 + - uid: 23504 components: - pos: -23.5,62.5 parent: 2 type: Transform - - uid: 23422 + - uid: 23505 components: - pos: -11.5,68.5 parent: 2 type: Transform - - uid: 23423 + - uid: 23506 components: - pos: -11.5,67.5 parent: 2 type: Transform - - uid: 23424 + - uid: 23507 components: - pos: -14.5,73.5 parent: 2 type: Transform - - uid: 23425 + - uid: 23508 components: - pos: -20.5,73.5 parent: 2 type: Transform - - uid: 23426 + - uid: 23509 components: - pos: -11.5,73.5 parent: 2 type: Transform - - uid: 23427 + - uid: 23510 components: - pos: -23.5,63.5 parent: 2 type: Transform - - uid: 23428 + - uid: 23511 components: - pos: -23.5,73.5 parent: 2 type: Transform - - uid: 23429 + - uid: 23512 components: - rot: -1.5707963267948966 rad pos: -17.5,24.5 parent: 2 type: Transform - - uid: 23430 + - uid: 23513 components: - rot: -1.5707963267948966 rad pos: 68.5,11.5 parent: 2 type: Transform - - uid: 23431 + - uid: 23514 components: - rot: -1.5707963267948966 rad pos: 68.5,10.5 parent: 2 type: Transform - - uid: 23432 + - uid: 23515 components: - rot: -1.5707963267948966 rad pos: 68.5,8.5 parent: 2 type: Transform - - uid: 23433 + - uid: 23516 components: - rot: -1.5707963267948966 rad pos: 68.5,7.5 parent: 2 type: Transform - - uid: 23434 + - uid: 23517 components: - rot: -1.5707963267948966 rad pos: 59.5,33.5 parent: 2 type: Transform - - uid: 23435 + - uid: 23518 components: - rot: -1.5707963267948966 rad pos: 59.5,32.5 parent: 2 type: Transform - - uid: 23436 + - uid: 23519 components: - rot: -1.5707963267948966 rad pos: -1.5,27.5 parent: 2 type: Transform - - uid: 23437 + - uid: 23520 components: - rot: -1.5707963267948966 rad pos: -3.5,27.5 parent: 2 type: Transform - - uid: 23438 + - uid: 23521 components: - rot: -1.5707963267948966 rad pos: -33.5,35.5 parent: 2 type: Transform - - uid: 23439 + - uid: 23522 components: - rot: 3.141592653589793 rad pos: -32.5,37.5 parent: 2 type: Transform - - uid: 23440 + - uid: 23523 components: - rot: 1.5707963267948966 rad pos: 46.5,-17.5 parent: 2 type: Transform - - uid: 23441 + - uid: 23524 components: - rot: 1.5707963267948966 rad pos: 45.5,-17.5 parent: 2 type: Transform - - uid: 23442 + - uid: 23525 components: - pos: -46.5,13.5 parent: 2 type: Transform - - uid: 23443 + - uid: 23526 components: - pos: -1.5,42.5 parent: 2 type: Transform - - uid: 23444 + - uid: 23527 components: - rot: 1.5707963267948966 rad pos: 47.5,40.5 parent: 2 type: Transform - - uid: 23445 + - uid: 23528 components: - rot: 1.5707963267948966 rad pos: 45.5,40.5 parent: 2 type: Transform - - uid: 23446 + - uid: 23529 components: - rot: -1.5707963267948966 rad pos: 41.5,42.5 parent: 2 type: Transform - - uid: 23447 + - uid: 23530 components: - rot: 3.141592653589793 rad pos: 41.5,32.5 parent: 2 type: Transform - - uid: 23448 + - uid: 23531 components: - rot: 3.141592653589793 rad pos: 41.5,31.5 parent: 2 type: Transform - - uid: 23449 + - uid: 23532 components: - rot: 3.141592653589793 rad pos: 41.5,30.5 parent: 2 type: Transform - - uid: 23450 + - uid: 23533 components: - rot: -1.5707963267948966 rad pos: 40.5,42.5 parent: 2 type: Transform - - uid: 23451 + - uid: 23534 components: - rot: -1.5707963267948966 rad pos: 39.5,42.5 parent: 2 type: Transform - - uid: 23452 + - uid: 23535 components: - pos: 71.5,39.5 parent: 2 type: Transform - - uid: 23453 + - uid: 23536 components: - pos: 73.5,39.5 parent: 2 type: Transform - - uid: 23454 + - uid: 23537 components: - pos: 73.5,33.5 parent: 2 type: Transform - - uid: 23455 + - uid: 23538 components: - pos: 71.5,33.5 parent: 2 type: Transform - - uid: 23456 + - uid: 23539 components: - pos: -33.5,40.5 parent: 2 type: Transform - - uid: 23457 + - uid: 23540 components: - pos: -32.5,40.5 parent: 2 type: Transform - - uid: 23458 + - uid: 23541 components: - pos: -26.5,54.5 parent: 2 type: Transform - - uid: 23459 + - uid: 23542 components: - pos: -26.5,53.5 parent: 2 type: Transform - - uid: 23460 + - uid: 23543 components: - rot: -1.5707963267948966 rad pos: -16.5,-88.5 parent: 2 type: Transform - - uid: 23461 + - uid: 23544 components: - pos: -18.5,-97.5 parent: 2 type: Transform - - uid: 23462 + - uid: 23545 components: - pos: -26.5,-97.5 parent: 2 type: Transform - - uid: 23463 + - uid: 23546 components: - pos: -23.5,-94.5 parent: 2 type: Transform - - uid: 23464 + - uid: 23547 components: - pos: -22.5,-94.5 parent: 2 type: Transform - - uid: 23465 + - uid: 23548 components: - pos: -21.5,-94.5 parent: 2 type: Transform - - uid: 23466 + - uid: 23549 components: - pos: -9.5,-101.5 parent: 2 type: Transform - - uid: 23467 + - uid: 23550 components: - pos: -8.5,-101.5 parent: 2 type: Transform - - uid: 23468 + - uid: 23551 components: - pos: -6.5,-101.5 parent: 2 type: Transform - - uid: 23469 + - uid: 23552 components: - pos: -5.5,-101.5 parent: 2 type: Transform - - uid: 23470 + - uid: 23553 components: - pos: -3.5,-97.5 parent: 2 type: Transform - - uid: 23471 + - uid: 23554 components: - pos: -3.5,-98.5 parent: 2 type: Transform - - uid: 23472 + - uid: 23555 components: - rot: 3.141592653589793 rad pos: -44.5,-90.5 parent: 2 type: Transform - - uid: 23473 + - uid: 23556 components: - rot: 3.141592653589793 rad pos: -44.5,-89.5 parent: 2 type: Transform - - uid: 23474 + - uid: 23557 components: - pos: -39.5,-90.5 parent: 2 type: Transform - - uid: 23475 + - uid: 23558 components: - pos: -39.5,-89.5 parent: 2 type: Transform - - uid: 23476 + - uid: 23559 components: - pos: -34.5,-100.5 parent: 2 type: Transform - - uid: 23477 + - uid: 23560 components: - pos: -36.5,-100.5 parent: 2 type: Transform - - uid: 23478 + - uid: 23561 components: - rot: 1.5707963267948966 rad pos: -44.5,-95.5 parent: 2 type: Transform - - uid: 23479 + - uid: 23562 components: - rot: 1.5707963267948966 rad pos: -44.5,-96.5 parent: 2 type: Transform - - uid: 23480 + - uid: 23563 components: - rot: 1.5707963267948966 rad pos: -42.5,-98.5 parent: 2 type: Transform - - uid: 23481 + - uid: 23564 components: - rot: 1.5707963267948966 rad pos: -41.5,-98.5 parent: 2 type: Transform - - uid: 23482 + - uid: 23565 components: - pos: -23.5,-101.5 parent: 2 type: Transform - - uid: 23483 + - uid: 23566 components: - pos: -22.5,-101.5 parent: 2 type: Transform - - uid: 23484 + - uid: 23567 components: - pos: -21.5,-101.5 parent: 2 type: Transform - - uid: 23485 + - uid: 23568 components: - rot: -1.5707963267948966 rad pos: 72.5,-50.5 parent: 2 type: Transform - - uid: 23486 + - uid: 23569 components: - rot: -1.5707963267948966 rad pos: 70.5,-50.5 parent: 2 type: Transform - - uid: 23487 + - uid: 23570 components: - rot: -1.5707963267948966 rad pos: 71.5,-50.5 parent: 2 type: Transform - - uid: 23488 + - uid: 23571 components: - pos: 51.5,-68.5 parent: 2 type: Transform - - uid: 23489 + - uid: 23572 components: - rot: 3.141592653589793 rad pos: 55.5,-68.5 parent: 2 type: Transform - - uid: 23490 + - uid: 23573 components: - rot: 3.141592653589793 rad pos: 56.5,-68.5 parent: 2 type: Transform - - uid: 23491 + - uid: 23574 components: - pos: 61.5,-70.5 parent: 2 type: Transform - - uid: 23492 + - uid: 23575 components: - pos: 62.5,-70.5 parent: 2 type: Transform - - uid: 23493 + - uid: 23576 components: - rot: 3.141592653589793 rad pos: 54.5,-68.5 parent: 2 type: Transform - - uid: 23494 + - uid: 23577 components: - pos: 50.5,-68.5 parent: 2 type: Transform - - uid: 23495 + - uid: 23578 components: - pos: 3.5,-36.5 parent: 2 type: Transform - - uid: 23496 + - uid: 23579 components: - pos: 68.5,-57.5 parent: 2 type: Transform - - uid: 23497 + - uid: 23580 components: - pos: 71.5,-54.5 parent: 2 type: Transform - - uid: 23498 + - uid: 23581 components: - rot: 1.5707963267948966 rad pos: -54.5,-57.5 parent: 2 type: Transform - - uid: 23499 + - uid: 23582 components: - rot: -1.5707963267948966 rad pos: 41.5,-31.5 parent: 2 type: Transform - - uid: 23500 + - uid: 23583 components: - pos: 60.5,-70.5 parent: 2 type: Transform - - uid: 23501 + - uid: 23584 components: - pos: 9.5,-31.5 parent: 2 type: Transform - - uid: 23502 + - uid: 23585 components: - pos: 9.5,-34.5 parent: 2 type: Transform - - uid: 23503 + - uid: 23586 components: - pos: 2.5,-36.5 parent: 2 type: Transform - - uid: 23504 + - uid: 23587 components: - pos: 36.5,18.5 parent: 2 type: Transform - - uid: 23505 + - uid: 23588 components: - pos: 34.5,18.5 parent: 2 type: Transform - - uid: 23506 + - uid: 23589 components: - pos: 52.5,-57.5 parent: 2 type: Transform - - uid: 23507 + - uid: 23590 components: - pos: -60.5,-35.5 parent: 2 type: Transform - - uid: 23508 + - uid: 23591 components: - pos: -52.5,-38.5 parent: 2 type: Transform - - uid: 23509 + - uid: 23592 components: - pos: -47.5,-34.5 parent: 2 type: Transform - - uid: 23510 + - uid: 23593 components: - pos: -47.5,-35.5 parent: 2 type: Transform - - uid: 23511 + - uid: 23594 components: - rot: 3.141592653589793 rad pos: 51.5,-72.5 parent: 2 type: Transform - - uid: 23512 + - uid: 23595 components: - rot: 3.141592653589793 rad pos: 51.5,-71.5 parent: 2 type: Transform - - uid: 23513 + - uid: 23596 components: - rot: 3.141592653589793 rad pos: 24.5,-86.5 parent: 2 type: Transform - - uid: 23514 + - uid: 23597 components: - rot: 3.141592653589793 rad pos: 25.5,-86.5 parent: 2 type: Transform - - uid: 23515 + - uid: 23598 components: - rot: 3.141592653589793 rad pos: 25.5,-75.5 parent: 2 type: Transform - - uid: 23516 + - uid: 23599 components: - rot: 3.141592653589793 rad pos: 28.5,-89.5 parent: 2 type: Transform - - uid: 23517 + - uid: 23600 components: - rot: 1.5707963267948966 rad pos: 32.5,-79.5 parent: 2 type: Transform - - uid: 23518 + - uid: 23601 components: - rot: 1.5707963267948966 rad pos: 34.5,-84.5 parent: 2 type: Transform - - uid: 23519 + - uid: 23602 components: - rot: 1.5707963267948966 rad pos: 34.5,-85.5 parent: 2 type: Transform - - uid: 23520 + - uid: 23603 components: - rot: 3.141592653589793 rad pos: 26.5,-75.5 parent: 2 type: Transform - - uid: 23521 + - uid: 23604 components: - rot: 3.141592653589793 rad pos: 51.5,-73.5 parent: 2 type: Transform - - uid: 23522 + - uid: 23605 components: - rot: 1.5707963267948966 rad pos: 32.5,-78.5 parent: 2 type: Transform - - uid: 23523 + - uid: 23606 components: - rot: 1.5707963267948966 rad pos: 44.5,-87.5 parent: 2 type: Transform - - uid: 23524 + - uid: 23607 components: - rot: -1.5707963267948966 rad pos: -45.5,45.5 parent: 2 type: Transform - - uid: 23526 + - uid: 23608 components: - rot: 1.5707963267948966 rad pos: -8.5,13.5 parent: 2 type: Transform - - uid: 23527 + - uid: 23609 components: - pos: -4.5,20.5 parent: 2 type: Transform - - uid: 23528 + - uid: 23610 components: - pos: -5.5,20.5 parent: 2 type: Transform - - uid: 23529 + - uid: 23611 components: - rot: 3.141592653589793 rad pos: -71.5,-27.5 parent: 2 type: Transform - - uid: 23530 + - uid: 23612 components: - pos: -70.5,-47.5 parent: 2 type: Transform - - uid: 23531 + - uid: 23613 components: - pos: -69.5,-47.5 parent: 2 type: Transform - - uid: 23532 + - uid: 23614 components: - pos: -68.5,-47.5 parent: 2 type: Transform - - uid: 23533 + - uid: 23615 components: - pos: -60.5,-38.5 parent: 2 type: Transform - - uid: 23534 + - uid: 23616 components: - pos: -62.5,-38.5 parent: 2 type: Transform - - uid: 23535 + - uid: 23617 components: - pos: -51.5,-13.5 parent: 2 type: Transform - - uid: 23536 + - uid: 23618 components: - rot: 3.141592653589793 rad pos: -78.5,-45.5 parent: 2 type: Transform - - uid: 23537 + - uid: 23619 components: - rot: 1.5707963267948966 rad pos: -15.5,9.5 parent: 2 type: Transform - - uid: 23538 + - uid: 23620 components: - rot: 1.5707963267948966 rad pos: -14.5,9.5 parent: 2 type: Transform - - uid: 23741 + - uid: 23621 components: - - pos: -2.5,-4.5 + - pos: 3.5,-3.5 parent: 2 type: Transform -- proto: RemoteSignaller - entities: - - uid: 1970 + - uid: 23622 components: - - rot: -1.5707963267948966 rad - pos: 29.437637,-37.36556 + - rot: 3.141592653589793 rad + pos: 2.5,-3.5 parent: 2 type: Transform - - uid: 15273 + - uid: 23623 components: - - name: HoP's office shutter controls - type: MetaData - - pos: -1.2480074,-4.4823575 + - rot: 3.141592653589793 rad + pos: 1.5,-3.5 parent: 2 type: Transform - - linkedPorts: - 23682: - - Pressed: Toggle - 15217: - - Pressed: Toggle - 15222: - - Pressed: Toggle - 15272: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 20444 + - uid: 23624 components: - rot: -1.5707963267948966 rad - pos: 29.500137,-37.52181 + pos: 23.5,-40.5 parent: 2 type: Transform - - uid: 21343 + - uid: 23625 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-40.5 + parent: 2 + type: Transform + - uid: 23626 components: - rot: -1.5707963267948966 rad - pos: 29.437637,-37.756184 + pos: 24.5,-40.5 + parent: 2 + type: Transform +- proto: RemoteSignaller + entities: + - uid: 23627 + components: + - pos: 4.3008337,-7.3968306 parent: 2 type: Transform + - linkedPorts: + 556: + - Pressed: DoorBolt + 557: + - Pressed: DoorBolt + 627: + - Pressed: DoorBolt + type: DeviceLinkSource - proto: ResearchAndDevelopmentServer entities: - - uid: 23539 + - uid: 23628 components: - pos: 55.5,-49.5 parent: 2 type: Transform - proto: Retractor entities: - - uid: 23540 + - uid: 23629 components: - pos: 0.5210637,-65.43571 parent: 2 type: Transform - - uid: 23541 + - uid: 23630 components: - pos: 73.5331,-48.86455 parent: 2 type: Transform - proto: RevolverCapGun entities: - - uid: 23542 + - uid: 23631 components: - pos: 48.521713,-29.492037 parent: 2 type: Transform - - uid: 23543 + - uid: 23632 components: - pos: 3.523116,-35.41609 parent: 2 type: Transform - proto: RiceSeeds entities: - - uid: 23544 + - uid: 23633 components: - pos: -32.424732,6.232961 parent: 2 type: Transform - proto: RockGuitarInstrument entities: - - uid: 23545 + - uid: 23634 components: - pos: -10.563177,-6.285685 parent: 2 type: Transform - proto: RollerBed entities: - - uid: 23546 + - uid: 23635 components: - pos: -29.534147,-77.30682 parent: 2 type: Transform - - uid: 23547 + - uid: 23636 components: - pos: -29.534147,-79.2912 parent: 2 type: Transform +- proto: SalvageHumanCorpseSpawner + entities: + - uid: 31190 + components: + - pos: -7.5,-97.5 + parent: 2 + type: Transform - proto: SalvageMagnet entities: - - uid: 23550 + - uid: 23638 components: - rot: -1.5707963267948966 rad pos: -46.5,32.5 @@ -160628,83 +161833,83 @@ entities: type: Transform - proto: Saw entities: - - uid: 23551 + - uid: 23639 components: - pos: 0.4741887,-64.29508 parent: 2 type: Transform - - uid: 23552 + - uid: 23640 components: - pos: 73.565475,-49.416637 parent: 2 type: Transform - proto: SawElectric entities: - - uid: 23553 + - uid: 23641 components: - pos: 0.5054387,-66.18094 parent: 2 type: Transform - proto: Scalpel entities: - - uid: 23554 + - uid: 23642 components: - pos: 69.49932,-48.836205 parent: 2 type: Transform - - uid: 23555 + - uid: 23643 components: - pos: 0.4585637,-63.810703 parent: 2 type: Transform - proto: ScalpelShiv entities: - - uid: 23556 + - uid: 23644 components: - rot: -1.5707963267948966 rad pos: -7.55561,-100.43354 parent: 2 type: Transform - - uid: 23557 + - uid: 23645 components: - pos: 54.135303,18.76531 parent: 2 type: Transform - proto: ScreenTimerElectronics entities: - - uid: 23558 + - uid: 23646 components: - pos: -8.601834,37.95101 parent: 2 type: Transform - proto: Screwdriver entities: - - uid: 23559 + - uid: 23647 components: - pos: 43.519844,-49.259262 parent: 2 type: Transform - - uid: 23560 + - uid: 23648 components: - pos: -25.458826,-24.443584 parent: 2 type: Transform - - uid: 23561 + - uid: 23649 components: - pos: -9.599733,-10.450774 parent: 2 type: Transform - - uid: 23562 + - uid: 23650 components: - pos: -62.449627,-28.095568 parent: 2 type: Transform - - uid: 23563 + - uid: 23651 components: - pos: -38.450848,-27.350416 parent: 2 type: Transform - - uid: 23564 + - uid: 23652 components: - rot: 12.566370614359172 rad pos: 72.048706,-43.392498 @@ -160712,7 +161917,7 @@ entities: type: Transform - proto: SecurityTechFab entities: - - uid: 23565 + - uid: 23653 components: - pos: 20.5,22.5 parent: 2 @@ -160724,49 +161929,49 @@ entities: type: MaterialStorage - proto: SeedExtractor entities: - - uid: 23566 + - uid: 23654 components: - pos: -9.5,12.5 parent: 2 type: Transform - - uid: 23567 + - uid: 23655 components: - pos: 57.5,8.5 parent: 2 type: Transform - proto: ShardGlass entities: - - uid: 23568 + - uid: 23656 components: - pos: -54.711452,-83.287796 parent: 2 type: Transform - proto: ShardGlassReinforced entities: - - uid: 23569 + - uid: 23657 components: - rot: 1.5707963267948966 rad pos: -54.638016,-82.45104 parent: 2 type: Transform - - uid: 23570 + - uid: 23658 components: - rot: 3.141592653589793 rad pos: 2.3392181,49.47093 parent: 2 type: Transform - - uid: 23571 + - uid: 23659 components: - rot: 3.141592653589793 rad pos: 1.651718,49.767803 parent: 2 type: Transform - - uid: 23572 + - uid: 23660 components: - pos: 3.3860931,48.767803 parent: 2 type: Transform - - uid: 23573 + - uid: 23661 components: - rot: -1.5707963267948966 rad pos: 1.745468,48.361553 @@ -160774,31 +161979,31 @@ entities: type: Transform - proto: SheetGlass entities: - - uid: 23574 + - uid: 23662 components: - pos: 38.525932,-39.04589 parent: 2 type: Transform - count: 28 type: Stack - - uid: 23575 + - uid: 23663 components: - pos: -42.541218,-17.668886 parent: 2 type: Transform - - uid: 23576 + - uid: 23664 components: - pos: -55.463116,-25.47082 parent: 2 type: Transform - - uid: 23577 + - uid: 23665 components: - pos: -24.799974,-52.361668 parent: 2 type: Transform - proto: SheetGlass1 entities: - - uid: 23578 + - uid: 23666 components: - rot: 12.566370614359172 rad pos: 77.45773,-46.509197 @@ -160808,199 +162013,199 @@ entities: type: Stack - proto: SheetPaper1 entities: - - uid: 23579 + - uid: 23667 components: - pos: -4.555317,-48.4215 parent: 2 type: Transform - proto: SheetPlasma entities: - - uid: 23580 + - uid: 23668 components: - pos: 62.516293,-33.369144 parent: 2 type: Transform - proto: SheetPlasma1 entities: - - uid: 23581 + - uid: 23669 components: - pos: 7.512034,-46.1751 parent: 2 type: Transform - - uid: 23582 + - uid: 23670 components: - pos: 39.28695,-35.266556 parent: 2 type: Transform - - uid: 23583 + - uid: 23671 components: - pos: 39.583824,-35.40718 parent: 2 type: Transform - proto: SheetPlasteel entities: - - uid: 23584 + - uid: 23672 components: - pos: -42.49803,-16.612768 parent: 2 type: Transform - - uid: 23585 + - uid: 23673 components: - pos: -43.304523,25.592714 parent: 2 type: Transform - proto: SheetPlastic entities: - - uid: 23586 + - uid: 23674 components: - pos: 38.479057,-36.60921 parent: 2 type: Transform - - uid: 23587 + - uid: 23675 components: - pos: -42.44606,-18.09971 parent: 2 type: Transform - proto: SheetRGlass entities: - - uid: 23588 + - uid: 23676 components: - pos: -42.558216,-17.530426 parent: 2 type: Transform - proto: SheetSteel entities: - - uid: 23589 + - uid: 23677 components: - rot: 3.141592653589793 rad pos: -37.461926,-7.6284776 parent: 2 type: Transform - - uid: 23590 + - uid: 23678 components: - pos: 38.51507,-38.238213 parent: 2 type: Transform - - uid: 23591 + - uid: 23679 components: - pos: 38.494682,-37.42171 parent: 2 type: Transform - - uid: 23592 + - uid: 23680 components: - pos: -27.53877,-10.535285 parent: 2 type: Transform - - uid: 23593 + - uid: 23681 components: - pos: -39.513657,-16.565893 parent: 2 type: Transform - - uid: 23594 + - uid: 23682 components: - pos: -39.544514,-17.164497 parent: 2 type: Transform - - uid: 23595 + - uid: 23683 components: - pos: 58.50727,52.410095 parent: 2 type: Transform - - uid: 23596 + - uid: 23684 components: - pos: 77.369896,-46.771843 parent: 2 type: Transform - - uid: 23597 + - uid: 23685 components: - pos: -42.505978,14.552313 parent: 2 type: Transform - - uid: 23598 + - uid: 23686 components: - pos: -72.541214,-39.47832 parent: 2 type: Transform - proto: ShipBattlemap entities: - - uid: 23599 + - uid: 23687 components: - pos: 12.360678,-6.028252 parent: 2 type: Transform - proto: Shovel entities: - - uid: 23600 + - uid: 23688 components: - pos: -52.711685,-67.34979 parent: 2 type: Transform - - uid: 23601 + - uid: 23689 components: - pos: -40.5417,35.280518 parent: 2 type: Transform - - uid: 23602 + - uid: 23690 components: - pos: -40.51045,34.905518 parent: 2 type: Transform - - uid: 23603 + - uid: 23691 components: - pos: -48.500484,26.545332 parent: 2 type: Transform - proto: ShowcaseRobot entities: - - uid: 23604 + - uid: 23692 components: - pos: 62.5,-45.5 parent: 2 type: Transform - - uid: 23605 + - uid: 23693 components: - pos: -0.5,63.5 parent: 2 type: Transform - - uid: 23606 + - uid: 23694 components: - pos: -2.5,63.5 parent: 2 type: Transform - proto: ShowcaseRobotAntique entities: - - uid: 23607 + - uid: 23695 components: - pos: 61.5,-46.5 parent: 2 type: Transform - proto: ShowcaseRobotMarauder entities: - - uid: 23608 + - uid: 23696 components: - pos: 63.5,-46.5 parent: 2 type: Transform - proto: ShowcaseRobotWhite entities: - - uid: 23609 + - uid: 23697 components: - pos: 62.5,-47.5 parent: 2 type: Transform - proto: ShuttersNormal entities: - - uid: 23610 + - uid: 23698 components: - pos: -9.5,-24.5 parent: 2 type: Transform - - uid: 23611 + - uid: 23699 components: - pos: -8.5,-24.5 parent: 2 type: Transform - - uid: 23612 + - uid: 23700 components: - rot: -1.5707963267948966 rad pos: 66.5,-45.5 @@ -161010,15 +162215,15 @@ entities: type: Occluder - canCollide: False type: Physics - - SecondsUntilStateChange: -160363.23 + - SecondsUntilStateChange: -171833.38 state: Closing type: Door - airBlocked: False type: Airtight - links: - - 23752 + - 23833 type: DeviceLinkSink - - uid: 23613 + - uid: 23701 components: - rot: -1.5707963267948966 rad pos: 66.5,-46.5 @@ -161028,68 +162233,41 @@ entities: type: Occluder - canCollide: False type: Physics - - SecondsUntilStateChange: -160363.23 + - SecondsUntilStateChange: -171833.38 state: Closing type: Door - airBlocked: False type: Airtight - links: - - 23752 + - 23833 type: DeviceLinkSink - proto: ShuttersNormalOpen entities: - - uid: 15217 - components: - - pos: -0.5,-2.5 - parent: 2 - type: Transform - - links: - - 15273 - - 15605 - type: DeviceLinkSink - - uid: 15222 - components: - - pos: 0.5,-2.5 - parent: 2 - type: Transform - - links: - - 15273 - - 15605 - type: DeviceLinkSink - - uid: 15272 - components: - - pos: 3.5,-2.5 - parent: 2 - type: Transform - - links: - - 15273 - - 15605 - type: DeviceLinkSink - - uid: 23614 + - uid: 23702 components: - pos: -4.5,20.5 parent: 2 type: Transform - invokeCounter: 4 links: - - 23803 + - 23881 type: DeviceLinkSink - - uid: 23615 + - uid: 23703 components: - pos: -5.5,20.5 parent: 2 type: Transform - invokeCounter: 4 links: - - 23803 + - 23881 type: DeviceLinkSink - - uid: 23616 + - uid: 23704 components: - rot: -1.5707963267948966 rad pos: 15.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -141418.3 + - SecondsUntilStateChange: -152888.44 state: Opening type: Door - canCollide: True @@ -161099,20 +162277,20 @@ entities: - airBlocked: True type: Airtight - links: - - 23749 + - 23830 type: DeviceLinkSink - - uid: 23617 + - uid: 23705 components: - rot: -1.5707963267948966 rad pos: 15.5,9.5 parent: 2 type: Transform - - uid: 23618 + - uid: 23706 components: - pos: -32.5,32.5 parent: 2 type: Transform - - SecondsUntilStateChange: -170976.72 + - SecondsUntilStateChange: -182446.86 state: Opening type: Door - canCollide: True @@ -161122,14 +162300,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23781 + - 23861 type: DeviceLinkSink - - uid: 23619 + - uid: 23707 components: - pos: 37.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -79066.57 + - SecondsUntilStateChange: -90536.7 state: Opening type: Door - canCollide: True @@ -161139,23 +162317,23 @@ entities: - airBlocked: True type: Airtight - links: - - 23751 + - 23832 type: DeviceLinkSink - - uid: 23620 + - uid: 23708 components: - pos: -8.5,4.5 parent: 2 type: Transform - links: - - 23799 + - 23877 type: DeviceLinkSink - - uid: 23621 + - uid: 23709 components: - rot: -1.5707963267948966 rad pos: 15.5,11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -141418.3 + - SecondsUntilStateChange: -152888.44 state: Opening type: Door - canCollide: True @@ -161165,15 +162343,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23749 + - 23830 type: DeviceLinkSink - - uid: 23622 + - uid: 23710 components: - rot: -1.5707963267948966 rad pos: 15.5,10.5 parent: 2 type: Transform - - SecondsUntilStateChange: -141418.3 + - SecondsUntilStateChange: -152888.44 state: Opening type: Door - canCollide: True @@ -161183,14 +162361,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23749 + - 23830 type: DeviceLinkSink - - uid: 23625 + - uid: 23711 components: - pos: 18.5,15.5 parent: 2 type: Transform - - SecondsUntilStateChange: -141418.3 + - SecondsUntilStateChange: -152888.44 state: Opening type: Door - canCollide: True @@ -161200,14 +162378,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23749 + - 23830 type: DeviceLinkSink - - uid: 23626 + - uid: 23712 components: - pos: 17.5,15.5 parent: 2 type: Transform - - SecondsUntilStateChange: -141418.3 + - SecondsUntilStateChange: -152888.44 state: Opening type: Door - canCollide: True @@ -161217,23 +162395,23 @@ entities: - airBlocked: True type: Airtight - links: - - 23749 + - 23830 type: DeviceLinkSink - - uid: 23627 + - uid: 23713 components: - pos: -6.5,4.5 parent: 2 type: Transform - links: - - 23799 + - 23877 type: DeviceLinkSink - - uid: 23628 + - uid: 23714 components: - rot: 1.5707963267948966 rad pos: 48.5,6.5 parent: 2 type: Transform - - SecondsUntilStateChange: -76612.4 + - SecondsUntilStateChange: -88082.53 state: Opening type: Door - canCollide: True @@ -161243,15 +162421,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23748 + - 23829 type: DeviceLinkSink - - uid: 23629 + - uid: 23715 components: - rot: -1.5707963267948966 rad pos: 35.5,4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -140505.56 + - SecondsUntilStateChange: -151975.7 state: Opening type: Door - canCollide: True @@ -161261,15 +162439,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23791 + - 23871 type: DeviceLinkSink - - uid: 23630 + - uid: 23716 components: - rot: -1.5707963267948966 rad pos: 15.5,12.5 parent: 2 type: Transform - - SecondsUntilStateChange: -141418.3 + - SecondsUntilStateChange: -152888.44 state: Opening type: Door - canCollide: True @@ -161279,14 +162457,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23749 + - 23830 type: DeviceLinkSink - - uid: 23631 + - uid: 23717 components: - pos: 61.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -170890.98 + - SecondsUntilStateChange: -182361.12 state: Opening type: Door - canCollide: True @@ -161296,15 +162474,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23792 + - 23872 type: DeviceLinkSink - - uid: 23632 + - uid: 23718 components: - rot: -1.5707963267948966 rad pos: 15.5,14.5 parent: 2 type: Transform - - SecondsUntilStateChange: -141418.3 + - SecondsUntilStateChange: -152888.44 state: Opening type: Door - canCollide: True @@ -161314,14 +162492,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23749 + - 23830 type: DeviceLinkSink - - uid: 23633 + - uid: 23719 components: - pos: 45.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -76612.4 + - SecondsUntilStateChange: -88082.53 state: Opening type: Door - canCollide: True @@ -161331,14 +162509,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23748 + - 23829 type: DeviceLinkSink - - uid: 23634 + - uid: 23720 components: - pos: 43.5,7.5 parent: 2 type: Transform - - SecondsUntilStateChange: -76612.4 + - SecondsUntilStateChange: -88082.53 state: Opening type: Door - canCollide: True @@ -161348,14 +162526,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23748 + - 23829 type: DeviceLinkSink - - uid: 23635 + - uid: 23721 components: - pos: 62.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -170890.98 + - SecondsUntilStateChange: -182361.12 state: Opening type: Door - canCollide: True @@ -161365,14 +162543,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23792 + - 23872 type: DeviceLinkSink - - uid: 23636 + - uid: 23722 components: - pos: 63.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -170890.98 + - SecondsUntilStateChange: -182361.12 state: Opening type: Door - canCollide: True @@ -161382,14 +162560,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23792 + - 23872 type: DeviceLinkSink - - uid: 23638 + - uid: 23723 components: - pos: -30.5,27.5 parent: 2 type: Transform - - SecondsUntilStateChange: -170976.72 + - SecondsUntilStateChange: -182446.86 state: Opening type: Door - canCollide: True @@ -161399,14 +162577,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23781 + - 23861 type: DeviceLinkSink - - uid: 23639 + - uid: 23724 components: - pos: 29.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -140505.56 + - SecondsUntilStateChange: -151975.7 state: Opening type: Door - canCollide: True @@ -161416,14 +162594,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23791 + - 23871 type: DeviceLinkSink - - uid: 23640 + - uid: 23725 components: - pos: 34.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -140505.56 + - SecondsUntilStateChange: -151975.7 state: Opening type: Door - canCollide: True @@ -161433,14 +162611,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23791 + - 23871 type: DeviceLinkSink - - uid: 23641 + - uid: 23726 components: - pos: -31.5,27.5 parent: 2 type: Transform - - SecondsUntilStateChange: -170976.72 + - SecondsUntilStateChange: -182446.86 state: Opening type: Door - canCollide: True @@ -161450,15 +162628,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23781 + - 23861 type: DeviceLinkSink - - uid: 23642 + - uid: 23727 components: - rot: -1.5707963267948966 rad pos: 35.5,7.5 parent: 2 type: Transform - - SecondsUntilStateChange: -140505.56 + - SecondsUntilStateChange: -151975.7 state: Opening type: Door - canCollide: True @@ -161468,14 +162646,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23791 + - 23871 type: DeviceLinkSink - - uid: 23643 + - uid: 23728 components: - pos: -33.5,27.5 parent: 2 type: Transform - - SecondsUntilStateChange: -170976.72 + - SecondsUntilStateChange: -182446.86 state: Opening type: Door - canCollide: True @@ -161485,14 +162663,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23781 + - 23861 type: DeviceLinkSink - - uid: 23644 + - uid: 23729 components: - pos: -49.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -131155.5 + - SecondsUntilStateChange: -142625.64 state: Opening type: Door - canCollide: True @@ -161502,14 +162680,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23766 + - 23847 type: DeviceLinkSink - - uid: 23645 + - uid: 23730 components: - pos: -48.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -131155.5 + - SecondsUntilStateChange: -142625.64 state: Opening type: Door - canCollide: True @@ -161519,14 +162697,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23766 + - 23847 type: DeviceLinkSink - - uid: 23646 + - uid: 23731 components: - pos: -31.5,32.5 parent: 2 type: Transform - - SecondsUntilStateChange: -170976.72 + - SecondsUntilStateChange: -182446.86 state: Opening type: Door - canCollide: True @@ -161536,14 +162714,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23781 + - 23861 type: DeviceLinkSink - - uid: 23647 + - uid: 23732 components: - pos: 32.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -140505.56 + - SecondsUntilStateChange: -151975.7 state: Opening type: Door - canCollide: True @@ -161553,14 +162731,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23791 + - 23871 type: DeviceLinkSink - - uid: 23648 + - uid: 23733 components: - pos: 39.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -79066.57 + - SecondsUntilStateChange: -90536.7 state: Opening type: Door - canCollide: True @@ -161570,14 +162748,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23751 + - 23832 type: DeviceLinkSink - - uid: 23649 + - uid: 23734 components: - pos: -33.5,32.5 parent: 2 type: Transform - - SecondsUntilStateChange: -170976.72 + - SecondsUntilStateChange: -182446.86 state: Opening type: Door - canCollide: True @@ -161587,14 +162765,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23781 + - 23861 type: DeviceLinkSink - - uid: 23650 + - uid: 23735 components: - pos: -46.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -131155.5 + - SecondsUntilStateChange: -142625.64 state: Opening type: Door - canCollide: True @@ -161604,14 +162782,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23766 + - 23847 type: DeviceLinkSink - - uid: 23651 + - uid: 23736 components: - pos: -47.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -131155.5 + - SecondsUntilStateChange: -142625.64 state: Opening type: Door - canCollide: True @@ -161621,14 +162799,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23766 + - 23847 type: DeviceLinkSink - - uid: 23652 + - uid: 23737 components: - pos: 43.5,5.5 parent: 2 type: Transform - - SecondsUntilStateChange: -76612.4 + - SecondsUntilStateChange: -88082.53 state: Opening type: Door - canCollide: True @@ -161638,14 +162816,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23748 + - 23829 type: DeviceLinkSink - - uid: 23653 + - uid: 23738 components: - pos: 59.5,-54.5 parent: 2 type: Transform - - SecondsUntilStateChange: -170890.98 + - SecondsUntilStateChange: -182361.12 state: Opening type: Door - canCollide: True @@ -161655,14 +162833,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23792 + - 23872 type: DeviceLinkSink - - uid: 23654 + - uid: 23739 components: - pos: 65.5,-54.5 parent: 2 type: Transform - - SecondsUntilStateChange: -170890.98 + - SecondsUntilStateChange: -182361.12 state: Opening type: Door - canCollide: True @@ -161672,15 +162850,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23792 + - 23872 type: DeviceLinkSink - - uid: 23655 + - uid: 23740 components: - rot: 1.5707963267948966 rad pos: 66.5,-51.5 parent: 2 type: Transform - - SecondsUntilStateChange: -170890.98 + - SecondsUntilStateChange: -182361.12 state: Opening type: Door - canCollide: True @@ -161690,15 +162868,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23792 + - 23872 type: DeviceLinkSink - - uid: 23656 + - uid: 23741 components: - rot: 1.5707963267948966 rad pos: 66.5,-52.5 parent: 2 type: Transform - - SecondsUntilStateChange: -170890.98 + - SecondsUntilStateChange: -182361.12 state: Opening type: Door - canCollide: True @@ -161708,15 +162886,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23792 + - 23872 type: DeviceLinkSink - - uid: 23657 + - uid: 23742 components: - rot: -1.5707963267948966 rad pos: 58.5,-51.5 parent: 2 type: Transform - - SecondsUntilStateChange: -170890.98 + - SecondsUntilStateChange: -182361.12 state: Opening type: Door - canCollide: True @@ -161726,15 +162904,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23792 + - 23872 type: DeviceLinkSink - - uid: 23658 + - uid: 23743 components: - rot: -1.5707963267948966 rad pos: 58.5,-52.5 parent: 2 type: Transform - - SecondsUntilStateChange: -170890.98 + - SecondsUntilStateChange: -182361.12 state: Opening type: Door - canCollide: True @@ -161744,14 +162922,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23792 + - 23872 type: DeviceLinkSink - - uid: 23659 + - uid: 23744 components: - pos: 61.5,-50.5 parent: 2 type: Transform - - SecondsUntilStateChange: -170890.98 + - SecondsUntilStateChange: -182361.12 state: Opening type: Door - canCollide: True @@ -161761,14 +162939,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23792 + - 23872 type: DeviceLinkSink - - uid: 23660 + - uid: 23745 components: - pos: 63.5,-50.5 parent: 2 type: Transform - - SecondsUntilStateChange: -170890.98 + - SecondsUntilStateChange: -182361.12 state: Opening type: Door - canCollide: True @@ -161778,14 +162956,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23792 + - 23872 type: DeviceLinkSink - - uid: 23661 + - uid: 23746 components: - pos: -20.5,-58.5 parent: 2 type: Transform - - SecondsUntilStateChange: -170831.78 + - SecondsUntilStateChange: -182301.92 state: Opening type: Door - canCollide: True @@ -161795,14 +162973,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23793 + - 23873 type: DeviceLinkSink - - uid: 23662 + - uid: 23747 components: - pos: -18.5,-58.5 parent: 2 type: Transform - - SecondsUntilStateChange: -170831.78 + - SecondsUntilStateChange: -182301.92 state: Opening type: Door - canCollide: True @@ -161812,14 +162990,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23793 + - 23873 type: DeviceLinkSink - - uid: 23663 + - uid: 23748 components: - pos: -37.5,-14.5 parent: 2 type: Transform - - SecondsUntilStateChange: -121044.61 + - SecondsUntilStateChange: -132514.75 state: Opening type: Door - canCollide: True @@ -161828,13 +163006,13 @@ entities: type: Occluder - airBlocked: True type: Airtight - - uid: 23664 + - uid: 23749 components: - rot: -1.5707963267948966 rad pos: -33.5,-15.5 parent: 2 type: Transform - - SecondsUntilStateChange: -121044.61 + - SecondsUntilStateChange: -132514.75 state: Opening type: Door - canCollide: True @@ -161844,15 +163022,15 @@ entities: - airBlocked: True type: Airtight - links: - - 19865 + - 23827 type: DeviceLinkSink - - uid: 23665 + - uid: 23750 components: - rot: -1.5707963267948966 rad pos: -33.5,-17.5 parent: 2 type: Transform - - SecondsUntilStateChange: -121044.61 + - SecondsUntilStateChange: -132514.75 state: Opening type: Door - canCollide: True @@ -161862,15 +163040,15 @@ entities: - airBlocked: True type: Airtight - links: - - 19865 + - 23827 type: DeviceLinkSink - - uid: 23668 + - uid: 23751 components: - rot: -1.5707963267948966 rad pos: 7.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -110240.555 + - SecondsUntilStateChange: -121710.69 state: Opening type: Door - canCollide: True @@ -161880,15 +163058,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23796 + - 23875 type: DeviceLinkSink - - uid: 23669 + - uid: 23752 components: - rot: -1.5707963267948966 rad pos: 7.5,8.5 parent: 2 type: Transform - - SecondsUntilStateChange: -110240.555 + - SecondsUntilStateChange: -121710.69 state: Opening type: Door - canCollide: True @@ -161898,15 +163076,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23796 + - 23875 type: DeviceLinkSink - - uid: 23670 + - uid: 23753 components: - rot: -1.5707963267948966 rad pos: 7.5,7.5 parent: 2 type: Transform - - SecondsUntilStateChange: -110240.555 + - SecondsUntilStateChange: -121710.69 state: Opening type: Door - canCollide: True @@ -161916,14 +163094,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23796 + - 23875 type: DeviceLinkSink - - uid: 23671 + - uid: 23754 components: - pos: 2.5,4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -110240.555 + - SecondsUntilStateChange: -121710.69 state: Opening type: Door - canCollide: True @@ -161933,22 +163111,22 @@ entities: - airBlocked: True type: Airtight - links: - - 23796 + - 23875 type: DeviceLinkSink - - uid: 23672 + - uid: 23755 components: - pos: 1.5,4.5 parent: 2 type: Transform - links: - - 23796 + - 23875 type: DeviceLinkSink - - uid: 23673 + - uid: 23756 components: - pos: 0.5,4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -110240.555 + - SecondsUntilStateChange: -121710.69 state: Opening type: Door - canCollide: True @@ -161958,14 +163136,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23796 + - 23875 type: DeviceLinkSink - - uid: 23674 + - uid: 23757 components: - pos: 5.5,11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -110240.555 + - SecondsUntilStateChange: -121710.69 state: Opening type: Door - canCollide: True @@ -161975,32 +163153,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23796 + - 23875 type: DeviceLinkSink - - uid: 23675 + - uid: 23758 components: - pos: 4.5,11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -110240.555 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - links: - - 23796 - type: DeviceLinkSink - - uid: 23682 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 2 - type: Transform - - SecondsUntilStateChange: -121087.46 + - SecondsUntilStateChange: -121710.69 state: Opening type: Door - canCollide: True @@ -162010,16 +163170,15 @@ entities: - airBlocked: True type: Airtight - links: - - 15273 - - 15605 + - 23875 type: DeviceLinkSink - - uid: 23683 + - uid: 23759 components: - rot: -1.5707963267948966 rad pos: 1.5,-46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -76482.16 + - SecondsUntilStateChange: -87952.29 state: Opening type: Door - canCollide: True @@ -162029,14 +163188,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23747 + - 23828 type: DeviceLinkSink - - uid: 23684 + - uid: 23760 components: - pos: 34.5,18.5 parent: 2 type: Transform - - SecondsUntilStateChange: -139001.16 + - SecondsUntilStateChange: -150471.3 state: Opening type: Door - canCollide: True @@ -162046,14 +163205,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23797 + - 23876 type: DeviceLinkSink - - uid: 23685 + - uid: 23761 components: - pos: 35.5,18.5 parent: 2 type: Transform - - SecondsUntilStateChange: -139001.16 + - SecondsUntilStateChange: -150471.3 state: Opening type: Door - canCollide: True @@ -162063,14 +163222,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23797 + - 23876 type: DeviceLinkSink - - uid: 23686 + - uid: 23762 components: - pos: 36.5,18.5 parent: 2 type: Transform - - SecondsUntilStateChange: -139001.16 + - SecondsUntilStateChange: -150471.3 state: Opening type: Door - canCollide: True @@ -162080,23 +163239,23 @@ entities: - airBlocked: True type: Airtight - links: - - 23797 + - 23876 type: DeviceLinkSink - - uid: 23687 + - uid: 23763 components: - pos: -7.5,4.5 parent: 2 type: Transform - links: - - 23799 + - 23877 type: DeviceLinkSink - - uid: 23688 + - uid: 23764 components: - rot: 1.5707963267948966 rad pos: 48.5,7.5 parent: 2 type: Transform - - SecondsUntilStateChange: -76612.4 + - SecondsUntilStateChange: -88082.53 state: Opening type: Door - canCollide: True @@ -162106,14 +163265,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23748 + - 23829 type: DeviceLinkSink - - uid: 23689 + - uid: 23765 components: - pos: 46.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -76612.4 + - SecondsUntilStateChange: -88082.53 state: Opening type: Door - canCollide: True @@ -162123,15 +163282,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23748 + - 23829 type: DeviceLinkSink - - uid: 23690 + - uid: 23766 components: - rot: 1.5707963267948966 rad pos: 35.5,-1.5 parent: 2 type: Transform - - SecondsUntilStateChange: -79066.57 + - SecondsUntilStateChange: -90536.7 state: Opening type: Door - canCollide: True @@ -162141,15 +163300,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23751 + - 23832 type: DeviceLinkSink - - uid: 23691 + - uid: 23767 components: - rot: 1.5707963267948966 rad pos: 35.5,-2.5 parent: 2 type: Transform - - SecondsUntilStateChange: -79066.57 + - SecondsUntilStateChange: -90536.7 state: Opening type: Door - canCollide: True @@ -162159,15 +163318,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23751 + - 23832 type: DeviceLinkSink - - uid: 23692 + - uid: 23768 components: - rot: 1.5707963267948966 rad pos: 35.5,-4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -79066.57 + - SecondsUntilStateChange: -90536.7 state: Opening type: Door - canCollide: True @@ -162177,15 +163336,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23751 + - 23832 type: DeviceLinkSink - - uid: 23693 + - uid: 23769 components: - rot: 1.5707963267948966 rad pos: 35.5,-5.5 parent: 2 type: Transform - - SecondsUntilStateChange: -79066.57 + - SecondsUntilStateChange: -90536.7 state: Opening type: Door - canCollide: True @@ -162195,14 +163354,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23751 + - 23832 type: DeviceLinkSink - - uid: 23694 + - uid: 23770 components: - pos: 41.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -79062.07 + - SecondsUntilStateChange: -90532.2 state: Opening type: Door - canCollide: True @@ -162212,14 +163371,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23800 + - 23878 type: DeviceLinkSink - - uid: 23695 + - uid: 23771 components: - pos: 42.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -79062.07 + - SecondsUntilStateChange: -90532.2 state: Opening type: Door - canCollide: True @@ -162229,14 +163388,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23800 + - 23878 type: DeviceLinkSink - - uid: 23696 + - uid: 23772 components: - pos: 43.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -79062.07 + - SecondsUntilStateChange: -90532.2 state: Opening type: Door - canCollide: True @@ -162246,14 +163405,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23800 + - 23878 type: DeviceLinkSink - - uid: 23697 + - uid: 23773 components: - pos: 46.5,3.5 parent: 2 type: Transform - - SecondsUntilStateChange: -76612.4 + - SecondsUntilStateChange: -88082.53 state: Opening type: Door - canCollide: True @@ -162263,15 +163422,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23748 + - 23829 type: DeviceLinkSink - - uid: 23698 + - uid: 23774 components: - rot: -1.5707963267948966 rad pos: 1.5,-47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -76482.16 + - SecondsUntilStateChange: -87952.29 state: Opening type: Door - canCollide: True @@ -162281,15 +163440,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23747 + - 23828 type: DeviceLinkSink - - uid: 23699 + - uid: 23775 components: - rot: -1.5707963267948966 rad pos: 1.5,-48.5 parent: 2 type: Transform - - SecondsUntilStateChange: -76482.16 + - SecondsUntilStateChange: -87952.29 state: Opening type: Door - canCollide: True @@ -162299,14 +163458,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23747 + - 23828 type: DeviceLinkSink - - uid: 23700 + - uid: 23776 components: - pos: 3.5,-44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -76482.16 + - SecondsUntilStateChange: -87952.29 state: Opening type: Door - canCollide: True @@ -162316,14 +163475,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23747 + - 23828 type: DeviceLinkSink - - uid: 23701 + - uid: 23777 components: - pos: 4.5,-44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -76482.16 + - SecondsUntilStateChange: -87952.29 state: Opening type: Door - canCollide: True @@ -162333,14 +163492,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23747 + - 23828 type: DeviceLinkSink - - uid: 23702 + - uid: 23778 components: - pos: 5.5,-44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -76482.16 + - SecondsUntilStateChange: -87952.29 state: Opening type: Door - canCollide: True @@ -162350,14 +163509,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23747 + - 23828 type: DeviceLinkSink - - uid: 23703 + - uid: 23779 components: - pos: 3.5,-51.5 parent: 2 type: Transform - - SecondsUntilStateChange: -76482.16 + - SecondsUntilStateChange: -87952.29 state: Opening type: Door - canCollide: True @@ -162367,241 +163526,273 @@ entities: - airBlocked: True type: Airtight - links: - - 23747 + - 23828 type: DeviceLinkSink - - uid: 23704 + - uid: 23780 components: - pos: 23.5,5.5 parent: 2 type: Transform - links: - - 23801 + - 23879 type: DeviceLinkSink - - uid: 23705 + - uid: 23781 components: - pos: 22.5,5.5 parent: 2 type: Transform - links: - - 23801 + - 23879 type: DeviceLinkSink - - uid: 23706 + - uid: 23782 components: - pos: 21.5,5.5 parent: 2 type: Transform - links: - - 23801 + - 23879 type: DeviceLinkSink - - uid: 23707 + - uid: 23783 components: - pos: 25.5,5.5 parent: 2 type: Transform - links: - - 23801 + - 23879 type: DeviceLinkSink - - uid: 23708 + - uid: 23784 components: - pos: 26.5,5.5 parent: 2 type: Transform - links: - - 23801 + - 23879 type: DeviceLinkSink - - uid: 23709 + - uid: 23785 components: - pos: 27.5,5.5 parent: 2 type: Transform - links: - - 23801 + - 23879 type: DeviceLinkSink - - uid: 23710 + - uid: 23786 components: - pos: 27.5,-3.5 parent: 2 type: Transform - links: - - 23801 + - 23879 type: DeviceLinkSink - - uid: 23711 + - uid: 23787 components: - pos: 26.5,-3.5 parent: 2 type: Transform - links: - - 23801 + - 23879 type: DeviceLinkSink - - uid: 23712 + - uid: 23788 components: - pos: 25.5,-3.5 parent: 2 type: Transform - links: - - 23801 + - 23879 type: DeviceLinkSink - - uid: 23713 + - uid: 23789 components: - pos: 23.5,-3.5 parent: 2 type: Transform - links: - - 23801 + - 23879 type: DeviceLinkSink - - uid: 23714 + - uid: 23790 components: - pos: 22.5,-3.5 parent: 2 type: Transform - - uid: 23715 + - uid: 23791 components: - pos: 21.5,-3.5 parent: 2 type: Transform - links: - - 23801 + - 23879 type: DeviceLinkSink - - uid: 23716 + - uid: 23792 components: - rot: 1.5707963267948966 rad pos: 19.5,3.5 parent: 2 type: Transform - links: - - 23801 + - 23879 type: DeviceLinkSink - - uid: 23717 + - uid: 23793 components: - rot: 1.5707963267948966 rad pos: 19.5,2.5 parent: 2 type: Transform - links: - - 23801 + - 23879 type: DeviceLinkSink - - uid: 23718 + - uid: 23794 components: - rot: 1.5707963267948966 rad pos: 19.5,1.5 parent: 2 type: Transform - links: - - 23801 + - 23879 type: DeviceLinkSink - - uid: 23719 + - uid: 23795 components: - rot: 1.5707963267948966 rad pos: 19.5,0.5 parent: 2 type: Transform - links: - - 23801 + - 23879 type: DeviceLinkSink - - uid: 23720 + - uid: 23796 components: - rot: 1.5707963267948966 rad pos: 19.5,-0.5 parent: 2 type: Transform - links: - - 23801 + - 23879 type: DeviceLinkSink - - uid: 23721 + - uid: 23797 components: - rot: 1.5707963267948966 rad pos: 19.5,-1.5 parent: 2 type: Transform - links: - - 23801 + - 23879 type: DeviceLinkSink - - uid: 23722 + - uid: 23798 components: - pos: 22.5,-20.5 parent: 2 type: Transform - - uid: 23723 + - uid: 23799 components: - pos: 23.5,-20.5 parent: 2 type: Transform - - uid: 23724 + - uid: 23800 components: - pos: 24.5,-20.5 parent: 2 type: Transform - - uid: 23725 + - uid: 23801 components: - pos: 25.5,-20.5 parent: 2 type: Transform - - uid: 23726 + - uid: 23802 components: - pos: 26.5,-20.5 parent: 2 type: Transform - - uid: 23727 + - uid: 23803 components: - pos: 27.5,-20.5 parent: 2 type: Transform - - uid: 23728 + - uid: 23804 components: - pos: 28.5,-20.5 parent: 2 type: Transform + - uid: 23805 + components: + - pos: 4.5,-3.5 + parent: 2 + type: Transform + - links: + - 23885 + type: DeviceLinkSink + - uid: 23806 + components: + - pos: 1.5,-3.5 + parent: 2 + type: Transform + - links: + - 23885 + type: DeviceLinkSink + - uid: 23807 + components: + - pos: 3.5,-3.5 + parent: 2 + type: Transform + - links: + - 23885 + type: DeviceLinkSink + - uid: 23808 + components: + - pos: 2.5,-3.5 + parent: 2 + type: Transform + - links: + - 23885 + type: DeviceLinkSink - proto: ShuttleConsoleCircuitboard entities: - - uid: 23729 + - uid: 23809 components: - pos: 8.934531,42.902378 parent: 2 type: Transform - proto: ShuttleWindow entities: - - uid: 23730 + - uid: 23810 components: - rot: -1.5707963267948966 rad pos: -72.5,-57.5 parent: 2 type: Transform - - uid: 23731 + - uid: 23811 components: - rot: 1.5707963267948966 rad pos: -77.5,-51.5 parent: 2 type: Transform - - uid: 23732 + - uid: 23812 components: - rot: 3.141592653589793 rad pos: -80.5,-53.5 parent: 2 type: Transform - - uid: 23733 + - uid: 23813 components: - rot: 1.5707963267948966 rad pos: -77.5,-56.5 parent: 2 type: Transform - - uid: 23734 + - uid: 23814 components: - rot: 1.5707963267948966 rad pos: -80.5,-54.5 parent: 2 type: Transform - - uid: 23735 + - uid: 23815 components: - pos: -72.5,-50.5 parent: 2 type: Transform - - uid: 23736 + - uid: 23816 components: - rot: 3.141592653589793 rad pos: -78.5,-51.5 parent: 2 type: Transform - - uid: 23737 + - uid: 23817 components: - rot: 1.5707963267948966 rad pos: -78.5,-56.5 @@ -162609,127 +163800,109 @@ entities: type: Transform - proto: SignAi entities: - - uid: 23738 + - uid: 23818 components: - pos: -3.5,60.5 parent: 2 type: Transform - proto: SignalButtonDirectional entities: - - uid: 14155 + - uid: 23819 components: - rot: -1.5707963267948966 rad pos: -50.5,13.5 parent: 2 type: Transform - linkedPorts: - 109: + 112: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 15605 - components: - - name: HoP's office shutter controls - type: MetaData - - rot: 1.5707963267948966 rad - pos: 2.5,-6.5 - parent: 2 - type: Transform - - linkedPorts: - 23682: - - Pressed: Toggle - 15217: - - Pressed: Toggle - 15222: - - Pressed: Toggle - 15272: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 19327 + - uid: 23820 components: - rot: 1.5707963267948966 rad pos: -53.5,8.5 parent: 2 type: Transform - linkedPorts: - 110: + 113: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 19330 + - uid: 23821 components: - rot: 1.5707963267948966 rad pos: -44.5,10.5 parent: 2 type: Transform - linkedPorts: - 108: + 111: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 19336 + - uid: 23822 components: - pos: -22.5,40.5 parent: 2 type: Transform - linkedPorts: - 790: + 795: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 19550 + - uid: 23823 components: - rot: 3.141592653589793 rad pos: -22.5,28.5 parent: 2 type: Transform - linkedPorts: - 111: + 114: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 19564 + - uid: 23824 components: - rot: -1.5707963267948966 rad pos: -17.5,35.5 parent: 2 type: Transform - linkedPorts: - 112: + 115: - Pressed: DoorBolt - 672: + 677: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 19594 + - uid: 23825 components: - rot: -1.5707963267948966 rad pos: -25.5,44.5 parent: 2 type: Transform - linkedPorts: - 788: + 794: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 19860 + - uid: 23826 components: - rot: 1.5707963267948966 rad pos: -13.5,33.5 parent: 2 type: Transform - linkedPorts: - 113: + 116: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 19865 + - uid: 23827 components: - rot: -1.5707963267948966 rad pos: -33.5,-18.5 parent: 2 type: Transform - linkedPorts: - 23665: + 23750: - Pressed: Toggle - 23664: + 23749: - Pressed: Toggle type: DeviceLinkSource - proto: SignalSwitch entities: - - uid: 23747 + - uid: 23828 components: - rot: -1.5707963267948966 rad pos: 8.5,-48.5 @@ -162738,30 +163911,30 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23703: + 23779: - On: Open - Off: Close - 23699: + 23775: - On: Open - Off: Close - 23698: + 23774: - On: Open - Off: Close - 23683: + 23759: - On: Open - Off: Close - 23700: + 23776: - On: Open - Off: Close - 23701: + 23777: - On: Open - Off: Close - 23702: + 23778: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23748 + - uid: 23829 components: - rot: -1.5707963267948966 rad pos: 47.5,8.5 @@ -162770,30 +163943,30 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23628: + 23714: - On: Open - Off: Close - 23688: + 23764: - On: Open - Off: Close - 23689: + 23765: - On: Open - Off: Close - 23633: + 23719: - On: Open - Off: Close - 23634: + 23720: - On: Open - Off: Close - 23652: + 23737: - On: Open - Off: Close - 23697: + 23773: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23749 + - uid: 23830 components: - pos: 16.5,15.5 parent: 2 @@ -162801,42 +163974,42 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23616: + 23704: - On: Open - Off: Close - 23621: + 23709: - On: Open - Off: Close - 23622: + 23710: - On: Open - Off: Close - 23630: + 23716: - On: Open - Off: Close - 23626: + 23712: - On: Open - Off: Close - 23625: + 23711: - On: Open - Off: Close - 23632: + 23718: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23750 + - uid: 23831 components: - rot: 3.141592653589793 rad pos: -13.5,-16.5 parent: 2 type: Transform - linkedPorts: - 2090: + 2096: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23751 + - uid: 23832 components: - rot: -1.5707963267948966 rad pos: 40.5,-3.5 @@ -162845,141 +164018,141 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23648: + 23733: - On: Open - Off: Close - 23619: + 23707: - On: Open - Off: Close - 23690: + 23766: - On: Open - Off: Close - 23691: + 23767: - On: Open - Off: Close - 23692: + 23768: - On: Open - Off: Close - 23693: + 23769: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23752 + - uid: 23833 components: - rot: 1.5707963267948966 rad pos: 66.5,-44.5 parent: 2 type: Transform - linkedPorts: - 23612: + 23700: - On: Open - Off: Close - 23613: + 23701: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23753 + - uid: 23834 components: - rot: 3.141592653589793 rad pos: 70.5,-39.5 parent: 2 type: Transform - linkedPorts: - 2069: + 2075: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23754 + - uid: 23835 components: - pos: 47.5,-55.5 parent: 2 type: Transform - linkedPorts: - 2027: + 2033: - On: Open - Off: Close - 2026: + 2032: - On: Open - Off: Close - 2025: + 2031: - On: Open - Off: Close - 2024: + 2030: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23755 + - uid: 23836 components: - rot: -1.5707963267948966 rad pos: 52.5,-56.5 parent: 2 type: Transform - linkedPorts: - 2028: + 2034: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23756 + - uid: 23837 components: - pos: -51.5,32.5 parent: 2 type: Transform - linkedPorts: - 2042: + 2048: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23757 + - uid: 23838 components: - rot: 3.141592653589793 rad pos: 60.5,-55.5 parent: 2 type: Transform - linkedPorts: - 2030: + 2036: - On: Open - Off: Close - 2031: + 2037: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23758 + - uid: 23839 components: - pos: 16.5,-51.5 parent: 2 type: Transform - linkedPorts: - 2023: + 2029: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23759 + - uid: 23840 components: - pos: -62.5,-26.5 parent: 2 type: Transform - linkedPorts: - 2100: + 2106: - On: Open - Off: Close - 2099: + 2105: - On: Open - Off: Close - 2098: + 2104: - On: Open - Off: Close - 2097: + 2103: - On: Open - Off: Close - 2096: + 2102: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23760 + - uid: 23841 components: - pos: -52.5,-11.5 parent: 2 @@ -162987,69 +164160,69 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2091: + 2097: - On: Open - Off: Close - 2092: + 2098: - On: Open - Off: Close - 2093: + 2099: - On: Open - Off: Close - 2094: + 2100: - On: Open - Off: Close - 2095: + 2101: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23761 + - uid: 23842 components: - pos: -36.5,-40.5 parent: 2 type: Transform - linkedPorts: - 2036: + 2042: - On: Open - Off: Close - 2035: + 2041: - On: Open - Off: Close - 2034: + 2040: - On: Open - Off: Close - 2033: + 2039: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23762 + - uid: 23843 components: - pos: -51.5,21.5 parent: 2 type: Transform - linkedPorts: - 2043: + 2049: - On: Open - Off: Close - 2044: + 2050: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23763 + - uid: 23844 components: - pos: -49.5,24.5 parent: 2 type: Transform - linkedPorts: - 2038: + 2044: - On: Open - Off: Close - 2037: + 2043: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23764 + - uid: 23845 components: - pos: 50.5,48.5 parent: 2 @@ -163057,14 +164230,14 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2049: + 2055: - On: Open - Off: Close - 2051: + 2057: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23765 + - uid: 23846 components: - pos: 52.5,48.5 parent: 2 @@ -163072,14 +164245,14 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2053: + 2059: - On: Open - Off: Close - 2045: + 2051: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23766 + - uid: 23847 components: - pos: -46.5,17.5 parent: 2 @@ -163087,21 +164260,21 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23644: + 23729: - On: Open - Off: Close - 23645: + 23730: - On: Open - Off: Close - 23650: + 23735: - On: Open - Off: Close - 23651: + 23736: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23767 + - uid: 23848 components: - pos: 58.5,48.5 parent: 2 @@ -163109,40 +164282,40 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2047: + 2053: - On: Open - Off: Close - 2064: + 2070: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23768 + - uid: 23849 components: - pos: 54.5,46.5 parent: 2 type: Transform - linkedPorts: - 2054: + 2060: - On: Open - Off: Close - 2058: + 2064: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23769 + - uid: 23850 components: - pos: 52.5,46.5 parent: 2 type: Transform - linkedPorts: - 2046: + 2052: - On: Open - Off: Close - 2040: + 2046: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23770 + - uid: 23851 components: - pos: 54.5,48.5 parent: 2 @@ -163150,14 +164323,14 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2058: + 2064: - On: Open - Off: Close - 2063: + 2069: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23771 + - uid: 23852 components: - pos: 56.5,44.5 parent: 2 @@ -163165,14 +164338,14 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2040: + 2046: - On: Open - Off: Close - 2039: + 2045: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23772 + - uid: 23853 components: - pos: 50.5,44.5 parent: 2 @@ -163180,14 +164353,14 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2060: + 2066: - On: Open - Off: Close - 2046: + 2052: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23773 + - uid: 23854 components: - pos: 52.5,44.5 parent: 2 @@ -163195,27 +164368,27 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2039: + 2045: - On: Close - Off: Open - 2048: + 2054: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23774 + - uid: 23855 components: - pos: 58.5,46.5 parent: 2 type: Transform - linkedPorts: - 2045: + 2051: - On: Open - Off: Close - 2061: + 2067: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23775 + - uid: 23856 components: - pos: 54.5,44.5 parent: 2 @@ -163223,27 +164396,27 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2056: + 2062: - On: Open - Off: Close - 2055: + 2061: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23776 + - uid: 23857 components: - pos: 50.5,46.5 parent: 2 type: Transform - linkedPorts: - 2057: + 2063: - On: Close - Off: Open - 2063: + 2069: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23777 + - uid: 23858 components: - pos: 56.5,46.5 parent: 2 @@ -163251,14 +164424,14 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2064: + 2070: - On: Open - Off: Close - 2054: + 2060: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23778 + - uid: 23859 components: - pos: 58.5,44.5 parent: 2 @@ -163266,36 +164439,36 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2056: + 2062: - On: Open - Off: Close - 2062: + 2068: - On: Open - Off: Close - 2039: + 2045: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23779 + - uid: 23860 components: - pos: 56.5,48.5 parent: 2 type: Transform - linkedPorts: - 2052: + 2058: - On: Open - Off: Close - 2051: + 2057: - On: Open - Off: Close - 2058: + 2064: - On: Close - Off: Open - 2062: + 2068: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23781 + - uid: 23861 components: - rot: 1.5707963267948966 rad pos: -35.5,29.5 @@ -163304,60 +164477,60 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23643: + 23728: - On: Open - Off: Close - 23641: + 23726: - On: Open - Off: Close - 23638: + 23723: - On: Open - Off: Close - 23649: + 23734: - On: Open - Off: Close - 23618: + 23706: - On: Open - Off: Close - 23646: + 23731: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23782 + - uid: 23862 components: - pos: 54.5,51.5 parent: 2 type: Transform - linkedPorts: - 2051: + 2057: - On: Open - Off: Close - 2045: + 2051: - On: Open - Off: Close - 2055: + 2061: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23783 + - uid: 23863 components: - pos: 5.5,49.5 parent: 2 type: Transform - linkedPorts: - 2021: + 2027: - On: Open - Off: Close - 2022: + 2028: - On: Open - Off: Close - 2020: + 2026: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23784 + - uid: 23864 components: - pos: 27.5,44.5 parent: 2 @@ -163365,64 +164538,64 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2075: + 2081: - On: Open - Off: Close - 2078: + 2084: - On: Open - Off: Close - 2079: + 2085: - On: Open - Off: Close - 2074: + 2080: - On: Open - Off: Close - 2072: + 2078: - On: Open - Off: Close - 2073: + 2079: - On: Open - Off: Close - 2081: + 2087: - On: Open - Off: Close - 2080: + 2086: - On: Open - Off: Close - 2077: + 2083: - On: Open - Off: Close - 2076: + 2082: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23785 + - uid: 23865 components: - pos: -28.5,-96.5 parent: 2 type: Transform - linkedPorts: - 2065: + 2071: - On: Open - Off: Close - 2066: + 2072: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23786 + - uid: 23866 components: - pos: -16.5,-96.5 parent: 2 type: Transform - linkedPorts: - 2067: + 2073: - On: Open - Off: Close - 2068: + 2074: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23787 + - uid: 23867 components: - rot: 3.141592653589793 rad pos: -5.5,-89.5 @@ -163431,32 +164604,32 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2089: + 2095: - On: Open - Off: Close - 2082: + 2088: - On: Open - Off: Close - 2083: + 2089: - On: Open - Off: Close - 2086: + 2092: - On: Open - Off: Close - 2084: + 2090: - On: Open - Off: Close - 2085: + 2091: - On: Open - Off: Close - 2087: + 2093: - On: Open - Off: Close - 2088: + 2094: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23788 + - uid: 23868 components: - pos: -8.5,-94.5 parent: 2 @@ -163464,53 +164637,53 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2089: + 2095: - On: Open - Off: Close - 2082: + 2088: - On: Open - Off: Close - 2083: + 2089: - On: Open - Off: Close - 2084: + 2090: - On: Open - Off: Close - 2086: + 2092: - On: Open - Off: Close - 2085: + 2091: - On: Open - Off: Close - 2087: + 2093: - On: Open - Off: Close - 2088: + 2094: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23789 + - uid: 23869 components: - rot: 3.141592653589793 rad pos: 48.5,-59.5 parent: 2 type: Transform - linkedPorts: - 2029: + 2035: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23790 + - uid: 23870 components: - pos: 69.5,-32.5 parent: 2 type: Transform - linkedPorts: - 2070: + 2076: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23791 + - uid: 23871 components: - pos: 33.483017,17.346874 parent: 2 @@ -163518,24 +164691,24 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23639: + 23724: - On: Open - Off: Close - 23647: + 23732: - On: Open - Off: Close - 23640: + 23725: - On: Open - Off: Close - 23642: + 23727: - On: Open - Off: Close - 23629: + 23715: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23792 + - uid: 23872 components: - rot: 3.141592653589793 rad pos: 64.5,-55.5 @@ -163544,42 +164717,42 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23636: + 23722: - On: Open - Off: Close - 23635: + 23721: - On: Open - Off: Close - 23631: + 23717: - On: Open - Off: Close - 23654: + 23739: - On: Open - Off: Close - 23653: + 23738: - On: Open - Off: Close - 23656: + 23741: - On: Open - Off: Close - 23655: + 23740: - On: Open - Off: Close - 23657: + 23742: - On: Open - Off: Close - 23658: + 23743: - On: Open - Off: Close - 23659: + 23744: - On: Open - Off: Close - 23660: + 23745: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23793 + - uid: 23873 components: - rot: -1.5707963267948966 rad pos: -16.5,-55.5 @@ -163588,26 +164761,26 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23662: + 23747: - On: Open - Off: Close - 23661: + 23746: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23795 + - uid: 23874 components: - pos: -51.5,36.5 parent: 2 type: Transform - linkedPorts: - 2041: + 2047: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23796 + - uid: 23875 components: - rot: 1.5707963267948966 rad pos: 3.5,10.5 @@ -163616,33 +164789,33 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23668: + 23751: - On: Open - Off: Close - 23669: + 23752: - On: Open - Off: Close - 23670: + 23753: - On: Open - Off: Close - 23675: + 23758: - On: Open - Off: Close - 23674: + 23757: - On: Open - Off: Close - 23673: + 23756: - On: Open - Off: Close - 23672: + 23755: - On: Open - Off: Close - 23671: + 23754: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23797 + - uid: 23876 components: - pos: 33.487907,17.698355 parent: 2 @@ -163650,35 +164823,35 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23684: + 23760: - On: Open - Off: Close - 23685: + 23761: - On: Open - Off: Close - 23686: + 23762: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23799 + - uid: 23877 components: - rot: -1.5707963267948966 rad pos: -5.5,10.5 parent: 2 type: Transform - linkedPorts: - 23620: + 23708: - On: Open - Off: Close - 23687: + 23763: - On: Open - Off: Close - 23627: + 23713: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23800 + - uid: 23878 components: - rot: -1.5707963267948966 rad pos: 45.5,-2.5 @@ -163687,189 +164860,211 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23696: + 23772: - On: Open - Off: Close - 23695: + 23771: - On: Open - Off: Close - 23694: + 23770: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23801 + - uid: 23879 components: - rot: -1.5707963267948966 rad pos: 29.5,-1.5 parent: 2 type: Transform - linkedPorts: - 23706: + 23782: - On: Open - Off: Close - 23705: + 23781: - On: Open - Off: Close - 23704: + 23780: - On: Open - Off: Close - 23707: + 23783: - On: Open - Off: Close - 23708: + 23784: - On: Open - Off: Close - 23709: + 23785: - On: Open - Off: Close - 23710: + 23786: - On: Open - Off: Close - 23711: + 23787: - On: Open - Off: Close - 23712: + 23788: - On: Open - Off: Close - 23713: + 23789: - On: Open - Off: Close - 23715: + 23791: - On: Open - Off: Close - 23721: + 23797: - On: Open - Off: Close - 23720: + 23796: - On: Open - Off: Close - 23719: + 23795: - On: Open - Off: Close - 23718: + 23794: - On: Open - Off: Close - 23717: + 23793: - On: Open - Off: Close - 23716: + 23792: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23802 + - uid: 23880 components: - rot: -1.5707963267948966 rad pos: 31.5,-23.5 parent: 2 type: Transform - - uid: 23803 + - uid: 23881 components: - pos: -2.5,16.5 parent: 2 type: Transform - linkedPorts: - 23614: + 23702: - On: Open - Off: Close - Status: Toggle - 23615: + 23703: - On: Open - Off: Close - Status: Toggle type: DeviceLinkSource - type: ItemCooldown - - uid: 23804 + - uid: 23882 components: - pos: -74.5,-43.5 parent: 2 type: Transform - linkedPorts: - 2018: + 2024: - On: Open - Off: Close - Status: Toggle - 2019: + 2025: - On: Open - Off: Close - Status: Toggle - 2017: + 2023: - On: Open - Off: Close - Status: Toggle type: DeviceLinkSource - - uid: 23805 + - uid: 23883 components: - pos: -74.5,-38.5 parent: 2 type: Transform - linkedPorts: - 2015: + 2021: - On: Open - Off: Close - Status: Toggle - 2014: + 2020: - On: Open - Off: Close - Status: Toggle - 2016: + 2022: - On: Open - Off: Close - Status: Toggle type: DeviceLinkSource - - uid: 23806 + - uid: 23884 components: - rot: -1.5707963267948966 rad pos: -41.5,-39.5 parent: 2 type: Transform - linkedPorts: - 2071: + 2077: - On: Open - Off: Close - Status: Toggle - 2032: + 2038: - On: Open - Off: Close - Status: Toggle type: DeviceLinkSource - proto: SignalSwitchDirectional entities: - - uid: 1940 + - uid: 23885 components: - - rot: 3.141592653589793 rad - pos: 28.5,-40.5 + - rot: 1.5707963267948966 rad + pos: 0.5,-7.5 parent: 2 type: Transform + - linkedPorts: + 23807: + - On: Open + - Off: Close + - Status: Toggle + 23805: + - Off: Close + - On: Open + - Status: Toggle + 23808: + - On: Open + - Off: Close + - Status: Toggle + 23806: + - On: Open + - Off: Close + - Status: Toggle + 22233: + - Status: Toggle + 21857: + - Status: Toggle + type: DeviceLinkSource - proto: SignAnomaly entities: - - uid: 23807 + - uid: 23886 components: - pos: 76.5,-42.5 parent: 2 type: Transform - proto: SignAnomaly2 entities: - - uid: 23808 + - uid: 23887 components: - pos: 63.5,-41.5 parent: 2 type: Transform - proto: SignArmory entities: - - uid: 23809 + - uid: 23888 components: - pos: 29.5,24.5 parent: 2 type: Transform - proto: SignAtmos entities: - - uid: 23810 + - uid: 23889 components: - pos: -21.5,-31.5 parent: 2 type: Transform - - uid: 23811 + - uid: 23890 components: - name: Thermoelectric Generator type: MetaData @@ -163877,7 +165072,7 @@ entities: pos: -71.5,-33.5 parent: 2 type: Transform - - uid: 23812 + - uid: 23891 components: - name: Thermo-Electric Generator type: MetaData @@ -163887,24 +165082,24 @@ entities: type: Transform - proto: SignAtmosMinsky entities: - - uid: 23813 + - uid: 23892 components: - pos: -30.5,-29.5 parent: 2 type: Transform - - uid: 23814 + - uid: 23893 components: - pos: -21.5,-33.5 parent: 2 type: Transform - proto: SignBar entities: - - uid: 23815 + - uid: 23894 components: - pos: 15.5,5.5 parent: 2 type: Transform - - uid: 23816 + - uid: 23895 components: - rot: 1.5707963267948966 rad pos: 12.5,4.5 @@ -163912,97 +165107,97 @@ entities: type: Transform - proto: SignBiohazardMed entities: - - uid: 23817 + - uid: 23896 components: - pos: -23.5,-74.5 parent: 2 type: Transform - proto: SignBridge entities: - - uid: 23818 + - uid: 23897 components: - pos: 17.5,-26.5 parent: 2 type: Transform - - uid: 23819 + - uid: 23898 components: - pos: 33.5,-26.5 parent: 2 type: Transform - proto: SignCanisters entities: - - uid: 23820 + - uid: 23899 components: - pos: -36.5,-39.5 parent: 2 type: Transform - - uid: 23821 + - uid: 23900 components: - pos: 47.5,-50.5 parent: 2 type: Transform - proto: SignCargo entities: - - uid: 23822 + - uid: 23901 components: - pos: -21.5,22.5 parent: 2 type: Transform - proto: SignCargoDock entities: - - uid: 23823 + - uid: 23902 components: - pos: -35.532974,23.594805 parent: 2 type: Transform - proto: SignChem entities: - - uid: 23824 + - uid: 23903 components: - pos: 2.5,-44.5 parent: 2 type: Transform - proto: SignCloning entities: - - uid: 23825 + - uid: 23904 components: - pos: -7.5,-62.5 parent: 2 type: Transform - proto: SignConference entities: - - uid: 23826 + - uid: 23905 components: - pos: 22.5,-26.5 parent: 2 type: Transform - proto: SignDangerMed entities: - - uid: 23827 + - uid: 23906 components: - pos: 15.5,35.5 parent: 2 type: Transform - proto: SignDirectionalBar entities: - - uid: 23828 + - uid: 23907 components: - pos: -19.478512,48.31118 parent: 2 type: Transform - - uid: 23829 + - uid: 23908 components: - rot: 1.5707963267948966 rad pos: -17.472397,9.2931385 parent: 2 type: Transform - - uid: 23830 + - uid: 23909 components: - rot: 3.141592653589793 rad pos: 23.49888,-45.152493 parent: 2 type: Transform - - uid: 23831 + - uid: 23910 components: - rot: 1.5707963267948966 rad pos: -27.50719,3.4686704 @@ -164010,52 +165205,52 @@ entities: type: Transform - proto: SignDirectionalBridge entities: - - uid: 23832 + - uid: 23911 components: - pos: -19.478844,48.09307 parent: 2 type: Transform - - uid: 23833 + - uid: 23912 components: - rot: 1.5707963267948966 rad pos: -1.5055174,1.4292434 parent: 2 type: Transform - - uid: 23834 + - uid: 23913 components: - rot: 1.5707963267948966 rad pos: -2.4872613,-24.496803 parent: 2 type: Transform - - uid: 23835 + - uid: 23914 components: - pos: 27.5,-7.5 parent: 2 type: Transform - - uid: 23836 + - uid: 23915 components: - pos: 15.5507345,4.4965997 parent: 2 type: Transform - - uid: 23837 + - uid: 23916 components: - rot: 1.5707963267948966 rad pos: -11.506838,1.2987667 parent: 2 type: Transform - - uid: 23838 + - uid: 23917 components: - rot: 1.5707963267948966 rad pos: -1.4898663,-40.13394 parent: 2 type: Transform - - uid: 23839 + - uid: 23918 components: - rot: 1.5707963267948966 rad pos: -17.465254,8.332064 parent: 2 type: Transform - - uid: 23840 + - uid: 23919 components: - rot: 1.5707963267948966 rad pos: -27.50719,3.2186704 @@ -164063,19 +165258,19 @@ entities: type: Transform - proto: SignDirectionalChapel entities: - - uid: 23841 + - uid: 23920 components: - rot: -1.5707963267948966 rad pos: -27.5,2.5 parent: 2 type: Transform - - uid: 23842 + - uid: 23921 components: - rot: 3.141592653589793 rad pos: -17.448181,-40.311073 parent: 2 type: Transform - - uid: 23843 + - uid: 23922 components: - rot: -1.5707963267948966 rad pos: -21.478504,9.770466 @@ -164083,238 +165278,238 @@ entities: type: Transform - proto: SignDirectionalEng entities: - - uid: 23844 + - uid: 23923 components: - rot: -1.5707963267948966 rad pos: 23.456676,-44.465714 parent: 2 type: Transform - - uid: 23845 + - uid: 23924 components: - rot: -1.5707963267948966 rad pos: 13.481093,-40.52887 parent: 2 type: Transform - - uid: 23846 + - uid: 23925 components: - rot: -1.5707963267948966 rad pos: -1.5094987,0.23005629 parent: 2 type: Transform - - uid: 23847 + - uid: 23926 components: - rot: -1.5707963267948966 rad pos: 15.5186825,0.3410281 parent: 2 type: Transform - - uid: 23848 + - uid: 23927 components: - rot: -1.5707963267948966 rad pos: -6.468719,-24.535433 parent: 2 type: Transform - - uid: 23849 + - uid: 23928 components: - rot: -1.5707963267948966 rad pos: 13.494198,-28.706446 parent: 2 type: Transform - - uid: 23850 + - uid: 23929 components: - rot: -1.5707963267948966 rad pos: 27.506605,-7.2696166 parent: 2 type: Transform - - uid: 23851 + - uid: 23930 components: - pos: -11.54485,0.20892155 parent: 2 type: Transform - - uid: 23852 + - uid: 23931 components: - rot: -1.5707963267948966 rad pos: -12.525326,-40.537384 parent: 2 type: Transform - - uid: 23853 + - uid: 23932 components: - rot: -1.5707963267948966 rad pos: 37.56283,-40.519398 parent: 2 type: Transform - - uid: 23854 + - uid: 23933 components: - pos: -19.479143,47.185772 parent: 2 type: Transform - - uid: 23855 + - uid: 23934 components: - pos: -21.4735,10.205865 parent: 2 type: Transform - - uid: 23856 + - uid: 23935 components: - rot: 3.141592653589793 rad pos: -17.5,-33.5 parent: 2 type: Transform - - uid: 23857 + - uid: 23936 components: - pos: -27.491566,-1.4688294 parent: 2 type: Transform - proto: SignDirectionalEvac entities: - - uid: 23858 + - uid: 23937 components: - rot: 1.5707963267948966 rad pos: 23.453842,-7.240517 parent: 2 type: Transform - - uid: 23859 + - uid: 23938 components: - rot: 3.141592653589793 rad pos: 13.494197,-24.550196 parent: 2 type: Transform - - uid: 23860 + - uid: 23939 components: - rot: 3.141592653589793 rad pos: 17.50633,-38.506306 parent: 2 type: Transform - - uid: 23861 + - uid: 23940 components: - rot: 3.141592653589793 rad pos: 27.469652,-44.466072 parent: 2 type: Transform - - uid: 23862 + - uid: 23941 components: - rot: 3.141592653589793 rad pos: 33.56561,-38.47694 parent: 2 type: Transform - - uid: 23863 + - uid: 23942 components: - rot: 1.5707963267948966 rad pos: 15.500585,1.4258997 parent: 2 type: Transform - - uid: 23864 + - uid: 23943 components: - rot: 1.5707963267948966 rad pos: -2.4941144,-24.735882 parent: 2 type: Transform - - uid: 23865 + - uid: 23944 components: - rot: 1.5707963267948966 rad pos: -1.5055175,1.6636184 parent: 2 type: Transform - - uid: 23866 + - uid: 23945 components: - rot: 1.5707963267948966 rad pos: -11.506838,1.7987667 parent: 2 type: Transform - - uid: 23867 + - uid: 23946 components: - rot: 1.5707963267948966 rad pos: -1.4898663,-40.82144 parent: 2 type: Transform - - uid: 23868 + - uid: 23947 components: - rot: 1.5707963267948966 rad pos: 35.5,3.5 parent: 2 type: Transform - - uid: 23869 + - uid: 23948 components: - pos: -19.483376,48.548702 parent: 2 type: Transform - - uid: 23870 + - uid: 23949 components: - rot: 1.5707963267948966 rad pos: -17.48425,-7.298242 parent: 2 type: Transform - - uid: 23871 + - uid: 23950 components: - rot: 1.5707963267948966 rad pos: -17.5155,-24.43221 parent: 2 type: Transform - - uid: 23872 + - uid: 23951 components: - rot: 1.5707963267948966 rad pos: -17.453,-40.550083 parent: 2 type: Transform - - uid: 23873 + - uid: 23952 components: - rot: 1.5707963267948966 rad pos: -17.465254,9.066439 parent: 2 type: Transform - - uid: 23874 + - uid: 23953 components: - rot: 3.141592653589793 rad pos: 60.5,-42.5 parent: 2 type: Transform - - uid: 23875 + - uid: 23954 components: - pos: -17.5,22.5 parent: 2 type: Transform - - uid: 23876 + - uid: 23955 components: - pos: -17.5,33.5 parent: 2 type: Transform - proto: SignDirectionalFood entities: - - uid: 23877 + - uid: 23956 components: - rot: -1.5707963267948966 rad pos: 23.455772,-7.472424 parent: 2 type: Transform - - uid: 23878 + - uid: 23957 components: - rot: 3.141592653589793 rad pos: -6.442209,-23.658274 parent: 2 type: Transform - - uid: 23879 + - uid: 23958 components: - rot: -1.5707963267948966 rad pos: 13.515763,-23.596605 parent: 2 type: Transform - - uid: 23880 + - uid: 23959 components: - rot: 3.141592653589793 rad pos: 13.482204,-40.04481 parent: 2 type: Transform - - uid: 23881 + - uid: 23960 components: - rot: 3.141592653589793 rad pos: -6.4057527,-39.46833 parent: 2 type: Transform - - uid: 23882 + - uid: 23961 components: - rot: 3.141592653589793 rad pos: 23.49562,-45.402493 parent: 2 type: Transform - - uid: 23883 + - uid: 23962 components: - rot: 1.5707963267948966 rad pos: -27.50719,2.7655454 @@ -164322,62 +165517,68 @@ entities: type: Transform - proto: SignDirectionalHop entities: - - uid: 14355 + - uid: 23963 components: - rot: 3.141592653589793 rad - pos: -2.5195708,-23.764477 + pos: -6.407528,-39.689182 parent: 2 type: Transform - - uid: 14502 + - uid: 23964 components: - - rot: -1.5707963267948966 rad - pos: 13.506188,-24.076977 + - rot: 3.141592653589793 rad + pos: -2.5195708,-23.764477 parent: 2 type: Transform - - uid: 14656 + - uid: 23965 components: - rot: -1.5707963267948966 rad - pos: 25.5,-40.5 + pos: 13.506188,-24.076977 parent: 2 type: Transform - - uid: 14684 + - uid: 23966 components: - rot: 3.141592653589793 rad pos: 13.449441,-39.80865 parent: 2 type: Transform - - uid: 15014 + - uid: 23967 components: - rot: 1.5707963267948966 rad pos: -2.5029292,-2.2492237 parent: 2 type: Transform - - uid: 24067 + - uid: 23968 components: - rot: -1.5707963267948966 rad pos: 28.50559,-7.2209973 parent: 2 type: Transform + - uid: 23969 + components: + - rot: -1.5707963267948966 rad + pos: 23.500246,-45.63412 + parent: 2 + type: Transform - proto: SignDirectionalJanitor entities: - - uid: 23884 + - uid: 23970 components: - pos: -6.5,-2.5 parent: 2 type: Transform - - uid: 23885 + - uid: 23971 components: - rot: -1.5707963267948966 rad pos: 13.511264,-23.825424 parent: 2 type: Transform - - uid: 23886 + - uid: 23972 components: - rot: -1.5707963267948966 rad pos: 13.468106,-40.766113 parent: 2 type: Transform - - uid: 23887 + - uid: 23973 components: - rot: 3.141592653589793 rad pos: -6.4057527,-39.226246 @@ -164385,230 +165586,230 @@ entities: type: Transform - proto: SignDirectionalMed entities: - - uid: 23888 + - uid: 23974 components: - pos: -19.479143,47.404522 parent: 2 type: Transform - - uid: 23889 + - uid: 23975 components: - rot: -1.5707963267948966 rad pos: 13.494197,-24.31582 parent: 2 type: Transform - - uid: 23890 + - uid: 23976 components: - rot: -1.5707963267948966 rad pos: 23.456676,-44.23134 parent: 2 type: Transform - - uid: 23891 + - uid: 23977 components: - rot: -1.5707963267948966 rad pos: 13.481093,-40.279392 parent: 2 type: Transform - - uid: 23892 + - uid: 23978 components: - rot: -1.5707963267948966 rad pos: 15.518682,0.809778 parent: 2 type: Transform - - uid: 23893 + - uid: 23979 components: - pos: -1.509499,0.7144314 parent: 2 type: Transform - - uid: 23894 + - uid: 23980 components: - pos: -6.468719,-24.785433 parent: 2 type: Transform - - uid: 23895 + - uid: 23981 components: - pos: -11.538088,0.45501685 parent: 2 type: Transform - - uid: 23896 + - uid: 23982 components: - rot: -1.5707963267948966 rad pos: 37.560596,-40.278557 parent: 2 type: Transform - - uid: 23897 + - uid: 23983 components: - pos: -17.51201,-24.680704 parent: 2 type: Transform - - uid: 23898 + - uid: 23984 components: - pos: -21.471863,9.993778 parent: 2 type: Transform - - uid: 23899 + - uid: 23985 components: - pos: -17.494442,-12.803106 parent: 2 type: Transform - - uid: 23900 + - uid: 23986 components: - pos: -27.491566,-1.7032045 parent: 2 type: Transform - proto: SignDirectionalSci entities: - - uid: 23901 + - uid: 23987 components: - rot: 1.5707963267948966 rad pos: -2.4872613,-24.231178 parent: 2 type: Transform - - uid: 23902 + - uid: 23988 components: - rot: 1.5707963267948966 rad pos: 27.465042,-44.22285 parent: 2 type: Transform - - uid: 23903 + - uid: 23989 components: - pos: 15.550735,4.2699327 parent: 2 type: Transform - - uid: 23904 + - uid: 23990 components: - pos: 13.494197,-28.22207 parent: 2 type: Transform - - uid: 23905 + - uid: 23991 components: - pos: 27.506117,-7.7341094 parent: 2 type: Transform - - uid: 23906 + - uid: 23992 components: - rot: 1.5707963267948966 rad pos: -11.506838,1.5487667 parent: 2 type: Transform - - uid: 23907 + - uid: 23993 components: - rot: 1.5707963267948966 rad pos: -1.4898663,-40.368317 parent: 2 type: Transform - - uid: 23908 + - uid: 23994 components: - pos: -19.479143,47.623272 parent: 2 type: Transform - - uid: 23909 + - uid: 23995 components: - rot: 1.5707963267948966 rad pos: -17.465254,8.816439 parent: 2 type: Transform - - uid: 23910 + - uid: 23996 components: - rot: 1.5707963267948966 rad pos: -17.460167,-40.790154 parent: 2 type: Transform - - uid: 23911 + - uid: 23997 components: - pos: -17.507042,-24.18393 parent: 2 type: Transform - - uid: 23912 + - uid: 23998 components: - pos: -27.491566,-1.2344544 parent: 2 type: Transform - proto: SignDirectionalSec entities: - - uid: 23913 + - uid: 23999 components: - rot: 3.141592653589793 rad pos: 23.45433,-7.7213244 parent: 2 type: Transform - - uid: 23914 + - uid: 24000 components: - rot: 3.141592653589793 rad pos: 27.468637,-44.695934 parent: 2 type: Transform - - uid: 23915 + - uid: 24001 components: - rot: 3.141592653589793 rad pos: 33.55467,-38.221992 parent: 2 type: Transform - - uid: 23916 + - uid: 24002 components: - rot: 3.141592653589793 rad pos: 17.50898,-38.26922 parent: 2 type: Transform - - uid: 23917 + - uid: 24003 components: - rot: 3.141592653589793 rad pos: 15.5581455,4.7444477 parent: 2 type: Transform - - uid: 23918 + - uid: 24004 components: - rot: 3.141592653589793 rad pos: 13.4980955,-24.785376 parent: 2 type: Transform - - uid: 23919 + - uid: 24005 components: - rot: 1.5707963267948966 rad pos: -6.4826374,-24.301481 parent: 2 type: Transform - - uid: 23920 + - uid: 24006 components: - rot: 1.5707963267948966 rad pos: -1.4980723,1.197365 parent: 2 type: Transform - - uid: 23921 + - uid: 24007 components: - rot: 1.5707963267948966 rad pos: -11.517976,1.041115 parent: 2 type: Transform - - uid: 23922 + - uid: 24008 components: - rot: 1.5707963267948966 rad pos: -1.4758278,-40.604027 parent: 2 type: Transform - - uid: 23923 + - uid: 24009 components: - pos: -19.471409,47.857254 parent: 2 type: Transform - - uid: 23924 + - uid: 24010 components: - rot: 1.5707963267948966 rad pos: -17.523046,-28.22695 parent: 2 type: Transform - - uid: 23925 + - uid: 24011 components: - rot: 1.5707963267948966 rad pos: -17.476206,8.574429 parent: 2 type: Transform - - uid: 23926 + - uid: 24012 components: - rot: 1.5707963267948966 rad pos: -17.478817,-7.5615916 parent: 2 type: Transform - - uid: 23927 + - uid: 24013 components: - rot: 1.5707963267948966 rad pos: -27.522816,2.2499206 @@ -164616,12 +165817,12 @@ entities: type: Transform - proto: SignDirectionalSolar entities: - - uid: 23928 + - uid: 24014 components: - pos: -0.5,-76.5 parent: 2 type: Transform - - uid: 23929 + - uid: 24015 components: - rot: 3.141592653589793 rad pos: 65.5,27.5 @@ -164629,225 +165830,225 @@ entities: type: Transform - proto: SignDirectionalSupply entities: - - uid: 23930 + - uid: 24016 components: - rot: -1.5707963267948966 rad pos: 23.453947,-44.6932 parent: 2 type: Transform - - uid: 23931 + - uid: 24017 components: - rot: -1.5707963267948966 rad pos: 15.5186825,0.5754031 parent: 2 type: Transform - - uid: 23932 + - uid: 24018 components: - rot: -1.5707963267948966 rad pos: -1.5094988,0.4800564 parent: 2 type: Transform - - uid: 23933 + - uid: 24019 components: - rot: -1.5707963267948966 rad pos: 13.494197,-28.47207 parent: 2 type: Transform - - uid: 23934 + - uid: 24020 components: - rot: 3.141592653589793 rad pos: -11.522463,0.70501685 parent: 2 type: Transform - - uid: 23935 + - uid: 24021 components: - rot: -1.5707963267948966 rad pos: -12.525326,-40.287384 parent: 2 type: Transform - - uid: 23936 + - uid: 24022 components: - rot: -1.5707963267948966 rad pos: 37.56283,-40.753773 parent: 2 type: Transform - - uid: 23937 + - uid: 24023 components: - rot: 3.141592653589793 rad pos: -21.4735,9.533642 parent: 2 type: Transform - - uid: 23938 + - uid: 24024 components: - rot: 3.141592653589793 rad pos: -2.5,-23.5 parent: 2 type: Transform - - uid: 23939 + - uid: 24025 components: - rot: 3.141592653589793 rad pos: -17.496458,-33.756527 parent: 2 type: Transform - - uid: 23940 + - uid: 24026 components: - rot: 3.141592653589793 rad pos: -17.5,-12.5 parent: 2 type: Transform - - uid: 23941 + - uid: 24027 components: - rot: 3.141592653589793 rad pos: -27.491566,3.7030454 parent: 2 type: Transform - - uid: 23942 + - uid: 24028 components: - pos: -19.471409,48.794754 parent: 2 type: Transform - proto: SignDisposalSpace entities: - - uid: 23943 + - uid: 24029 components: - pos: 23.5,-52.5 parent: 2 type: Transform - proto: SignElectrical entities: - - uid: 23944 + - uid: 24030 components: - pos: -78.5,-5.5 parent: 2 type: Transform - - uid: 23945 + - uid: 24031 components: - pos: -78.5,-19.5 parent: 2 type: Transform - - uid: 23946 + - uid: 24032 components: - pos: -71.5,-2.5 parent: 2 type: Transform - - uid: 23947 + - uid: 24033 components: - pos: -64.5,-2.5 parent: 2 type: Transform - - uid: 23948 + - uid: 24034 components: - pos: 24.5,39.5 parent: 2 type: Transform - - uid: 23949 + - uid: 24035 components: - pos: 32.5,39.5 parent: 2 type: Transform - - uid: 23950 + - uid: 24036 components: - pos: 38.5,31.5 parent: 2 type: Transform - proto: SignElectricalMed entities: - - uid: 23951 + - uid: 24037 components: - pos: -12.5,-70.5 parent: 2 type: Transform - - uid: 23952 + - uid: 24038 components: - pos: 42.5,-60.5 parent: 2 type: Transform - - uid: 23953 + - uid: 24039 components: - pos: 8.5,-44.5 parent: 2 type: Transform - - uid: 23954 + - uid: 24040 components: - pos: 37.5,-44.5 parent: 2 type: Transform - - uid: 23955 + - uid: 24041 components: - pos: 37.5,-29.5 parent: 2 type: Transform - - uid: 23956 + - uid: 24042 components: - pos: 46.5,-6.5 parent: 2 type: Transform - - uid: 23957 + - uid: 24043 components: - pos: 47.5,-0.5 parent: 2 type: Transform - - uid: 23958 + - uid: 24044 components: - pos: 33.5,23.5 parent: 2 type: Transform - - uid: 23959 + - uid: 24045 components: - pos: -29.5,-54.5 parent: 2 type: Transform - proto: SignEngine entities: - - uid: 23960 + - uid: 24046 components: - pos: -43.5,-9.5 parent: 2 type: Transform - - uid: 23961 + - uid: 24047 components: - pos: -49.5,-18.5 parent: 2 type: Transform - proto: SignEngineering entities: - - uid: 23962 + - uid: 24048 components: - pos: -21.5,-8.5 parent: 2 type: Transform - - uid: 23963 + - uid: 24049 components: - pos: -21.5,-15.5 parent: 2 type: Transform - proto: SignEscapePods entities: - - uid: 23964 + - uid: 24050 components: - pos: 29.5,-93.5 parent: 2 type: Transform - - uid: 23965 + - uid: 24051 components: - pos: -16.5,68.5 parent: 2 type: Transform - - uid: 23966 + - uid: 24052 components: - pos: 49.5,-93.5 parent: 2 type: Transform - proto: SignEVA entities: - - uid: 23967 + - uid: 24053 components: - pos: 34.5,-15.5 parent: 2 type: Transform - proto: SignExplosives entities: - - uid: 23968 + - uid: 24054 components: - rot: 1.5707963267948966 rad pos: 68.5,-26.5 @@ -164855,98 +166056,98 @@ entities: type: Transform - proto: SignFlammableMed entities: - - uid: 23969 + - uid: 24055 components: - pos: -42.5,-63.5 parent: 2 type: Transform - proto: SignGravity entities: - - uid: 23970 + - uid: 24056 components: - pos: -18.5,-3.5 parent: 2 type: Transform - proto: SignHydro3 entities: - - uid: 23971 + - uid: 24057 components: - pos: -5.5,4.5 parent: 2 type: Transform - proto: SignInterrogation entities: - - uid: 23972 + - uid: 24058 components: - pos: 18.5,18.5 parent: 2 type: Transform - proto: SignLaserMed entities: - - uid: 23973 + - uid: 24059 components: - rot: 3.141592653589793 rad pos: -63.5,-29.5 parent: 2 type: Transform - - uid: 23974 + - uid: 24060 components: - pos: -62.5,-22.5 parent: 2 type: Transform - - uid: 23975 + - uid: 24061 components: - pos: -70.5,-22.5 parent: 2 type: Transform - proto: SignLibrary entities: - - uid: 23976 + - uid: 24062 components: - pos: 9.5,-2.5 parent: 2 type: Transform - proto: SignMagneticsMed entities: - - uid: 23977 + - uid: 24063 components: - pos: -47.5,27.5 parent: 2 type: Transform - proto: SignMedical entities: - - uid: 23978 + - uid: 24064 components: - pos: -2.5,-44.5 parent: 2 type: Transform - proto: SignMinerDock entities: - - uid: 23979 + - uid: 24065 components: - pos: -44.5,27.5 parent: 2 type: Transform - proto: SignMorgue entities: - - uid: 23980 + - uid: 24066 components: - pos: -15.5,-68.5 parent: 2 type: Transform - - uid: 23981 + - uid: 24067 components: - pos: -12.5,-62.5 parent: 2 type: Transform - proto: SignPrison entities: - - uid: 23982 + - uid: 24068 components: - pos: 39.5,24.5 parent: 2 type: Transform - - uid: 23983 + - uid: 24069 components: - name: open prison sign type: MetaData @@ -164955,24 +166156,24 @@ entities: type: Transform - proto: SignRadiationMed entities: - - uid: 23984 + - uid: 24070 components: - pos: -63.5,-25.5 parent: 2 type: Transform - proto: SignRedFive entities: - - uid: 23985 + - uid: 24071 components: - pos: 57.5,22.5 parent: 2 type: Transform - - uid: 23986 + - uid: 24072 components: - pos: 41.5,17.5 parent: 2 type: Transform - - uid: 23987 + - uid: 24073 components: - rot: 3.141592653589793 rad pos: 39.5,5.5 @@ -164980,17 +166181,17 @@ entities: type: Transform - proto: SignRedFour entities: - - uid: 23988 + - uid: 24074 components: - pos: 40.5,17.5 parent: 2 type: Transform - - uid: 23989 + - uid: 24075 components: - pos: 54.5,22.5 parent: 2 type: Transform - - uid: 23990 + - uid: 24076 components: - rot: 3.141592653589793 rad pos: 39.5,8.5 @@ -164998,71 +166199,71 @@ entities: type: Transform - proto: SignRedNine entities: - - uid: 23991 + - uid: 24077 components: - pos: 51.62568,41.505035 parent: 2 type: Transform - proto: SignRedOne entities: - - uid: 23992 + - uid: 24078 components: - pos: 45.5,22.5 parent: 2 type: Transform - - uid: 23993 + - uid: 24079 components: - rot: 3.141592653589793 rad pos: 28.5,13.5 parent: 2 type: Transform - - uid: 23994 + - uid: 24080 components: - pos: 30.70196,-15.491432 parent: 2 type: Transform - - uid: 23995 + - uid: 24081 components: - pos: 37.5,17.5 parent: 2 type: Transform - proto: SignRedSeven entities: - - uid: 23996 + - uid: 24082 components: - pos: 60.5,17.5 parent: 2 type: Transform - proto: SignRedSix entities: - - uid: 23997 + - uid: 24083 components: - pos: 42.5,17.5 parent: 2 type: Transform - - uid: 23998 + - uid: 24084 components: - pos: 60.5,20.5 parent: 2 type: Transform - - uid: 23999 + - uid: 24085 components: - pos: 51.40693,41.505035 parent: 2 type: Transform - proto: SignRedThree entities: - - uid: 24000 + - uid: 24086 components: - pos: 51.5,22.5 parent: 2 type: Transform - - uid: 24001 + - uid: 24087 components: - pos: 39.5,17.5 parent: 2 type: Transform - - uid: 24002 + - uid: 24088 components: - rot: 3.141592653589793 rad pos: 34.5,13.5 @@ -165070,18 +166271,18 @@ entities: type: Transform - proto: SignRedTwo entities: - - uid: 24003 + - uid: 24089 components: - pos: 48.5,22.5 parent: 2 type: Transform - - uid: 24004 + - uid: 24090 components: - rot: 3.141592653589793 rad pos: 38.5,17.5 parent: 2 type: Transform - - uid: 24005 + - uid: 24091 components: - rot: 3.141592653589793 rad pos: 31.5,13.5 @@ -165089,130 +166290,130 @@ entities: type: Transform - proto: SignRedZero entities: - - uid: 24006 + - uid: 24092 components: - pos: 30.467585,-15.491432 parent: 2 type: Transform - - uid: 24007 + - uid: 24093 components: - pos: 30.23321,-15.491432 parent: 2 type: Transform - proto: SignRND entities: - - uid: 24008 + - uid: 24094 components: - pos: 47.5,-38.5 parent: 2 type: Transform - proto: SignRobo entities: - - uid: 24009 + - uid: 24095 components: - pos: 66.5,-47.5 parent: 2 type: Transform - proto: SignScience1 entities: - - uid: 24010 + - uid: 24096 components: - pos: 38.5,-40.5 parent: 2 type: Transform - proto: SignShipDock entities: - - uid: 24011 + - uid: 24097 components: - name: docking arm type: MetaData - pos: -14.5,70.5 parent: 2 type: Transform - - uid: 24012 + - uid: 24098 components: - name: docking arm type: MetaData - pos: -20.5,70.5 parent: 2 type: Transform - - uid: 24013 + - uid: 24099 components: - pos: 76.5,-32.5 parent: 2 type: Transform - proto: SignShock entities: - - uid: 24014 + - uid: 24100 components: - pos: 17.5,-30.5 parent: 2 type: Transform - - uid: 24015 + - uid: 24101 components: - pos: 11.5,-15.5 parent: 2 type: Transform - proto: SignSmoking entities: - - uid: 24016 + - uid: 24102 components: - pos: 1.5,-49.5 parent: 2 type: Transform - - uid: 24017 + - uid: 24103 components: - pos: -10.5,-49.5 parent: 2 type: Transform - proto: SignSomethingOld entities: - - uid: 24018 + - uid: 24104 components: - pos: -29.5,2.5 parent: 2 type: Transform - proto: SignSpace entities: - - uid: 24019 + - uid: 24105 components: - pos: -2.5,-76.5 parent: 2 type: Transform - - uid: 24020 + - uid: 24106 components: - pos: -58.5,-53.5 parent: 2 type: Transform - - uid: 24021 + - uid: 24107 components: - pos: -49.5,18.5 parent: 2 type: Transform - proto: SignSurgery entities: - - uid: 24022 + - uid: 24108 components: - pos: -1.5,-62.5 parent: 2 type: Transform - proto: SignTelecomms entities: - - uid: 24023 + - uid: 24109 components: - pos: 13.5,-22.5 parent: 2 type: Transform - proto: SignToolStorage entities: - - uid: 24024 + - uid: 24110 components: - pos: -33.5,-13.5 parent: 2 type: Transform - proto: SignToxins2 entities: - - uid: 24025 + - uid: 24111 components: - name: toxin lab sign type: MetaData @@ -165221,40 +166422,40 @@ entities: type: Transform - proto: SignVirology entities: - - uid: 24026 + - uid: 24112 components: - pos: -18.5,-62.5 parent: 2 type: Transform - proto: SilverOre1 entities: - - uid: 24027 + - uid: 24113 components: - pos: 73.48065,-67.68085 parent: 2 type: Transform - proto: SingularityGenerator entities: - - uid: 24028 + - uid: 24114 components: - pos: -66.5,-13.5 parent: 2 type: Transform - proto: SinkStemlessWater entities: - - uid: 24029 + - uid: 24115 components: - rot: 1.5707963267948966 rad pos: -31.5,-3.5 parent: 2 type: Transform - - uid: 24030 + - uid: 24116 components: - rot: 1.5707963267948966 rad pos: -31.5,-2.5 parent: 2 type: Transform - - uid: 24031 + - uid: 24117 components: - rot: -1.5707963267948966 rad pos: -4.5,-96.5 @@ -165262,86 +166463,86 @@ entities: type: Transform - proto: SinkWide entities: - - uid: 24032 + - uid: 24118 components: - rot: 3.141592653589793 rad pos: -9.5,-33.5 parent: 2 type: Transform - - uid: 24033 + - uid: 24119 components: - rot: -1.5707963267948966 rad pos: 7.5,-48.5 parent: 2 type: Transform - - uid: 24034 + - uid: 24120 components: - pos: 1.5,9.5 parent: 2 type: Transform - - uid: 24035 + - uid: 24121 components: - rot: 3.141592653589793 rad pos: 17.5,9.5 parent: 2 type: Transform - - uid: 24036 + - uid: 24122 components: - rot: -1.5707963267948966 rad pos: -8.5,-69.5 parent: 2 type: Transform - - uid: 24038 + - uid: 24123 components: - rot: -1.5707963267948966 rad pos: -2.5,5.5 parent: 2 type: Transform - - uid: 24039 + - uid: 24124 components: - rot: -1.5707963267948966 rad pos: -2.5,6.5 parent: 2 type: Transform - - uid: 24040 + - uid: 24125 components: - rot: 3.141592653589793 rad pos: -21.5,41.5 parent: 2 type: Transform - - uid: 24041 + - uid: 24126 components: - rot: 3.141592653589793 rad pos: 62.5,21.5 parent: 2 type: Transform - - uid: 24042 + - uid: 24127 components: - pos: 63.5,13.5 parent: 2 type: Transform - - uid: 24043 + - uid: 24128 components: - pos: 63.5,11.5 parent: 2 type: Transform - - uid: 24044 + - uid: 24129 components: - pos: 63.5,9.5 parent: 2 type: Transform - - uid: 24045 + - uid: 24130 components: - rot: 1.5707963267948966 rad pos: -33.5,9.5 parent: 2 type: Transform - - uid: 24046 + - uid: 24131 components: - pos: -3.5,56.5 parent: 2 type: Transform - - uid: 24047 + - uid: 24132 components: - rot: 3.141592653589793 rad pos: 46.5,-39.5 @@ -165349,7 +166550,7 @@ entities: type: Transform - proto: SmallLight entities: - - uid: 24048 + - uid: 24133 components: - rot: -1.5707963267948966 rad pos: 17.5,-48.5 @@ -165357,787 +166558,787 @@ entities: type: Transform - proto: SMESBasic entities: - - uid: 24049 + - uid: 24134 components: - pos: -65.5,-53.5 parent: 2 type: Transform - - uid: 24050 + - uid: 24135 components: - pos: -69.5,-35.5 parent: 2 type: Transform - - uid: 24051 + - uid: 24136 components: - pos: 4.5,-20.5 parent: 2 type: Transform - - uid: 24052 + - uid: 24137 components: - pos: -2.5,-78.5 parent: 2 type: Transform - - uid: 24053 + - uid: 24138 components: - pos: 48.5,-3.5 parent: 2 type: Transform - - uid: 24054 + - uid: 24139 components: - pos: -48.5,-21.5 parent: 2 type: Transform - - uid: 24055 + - uid: 24140 components: - pos: -46.5,-21.5 parent: 2 type: Transform - - uid: 24056 + - uid: 24141 components: - pos: -44.5,-21.5 parent: 2 type: Transform - - uid: 24057 + - uid: 24142 components: - pos: -50.5,-9.5 parent: 2 type: Transform - - uid: 24058 + - uid: 24143 components: - pos: -56.5,-20.5 parent: 2 type: Transform - - uid: 24059 + - uid: 24144 components: - pos: -28.5,-37.5 parent: 2 type: Transform - - uid: 24060 + - uid: 24145 components: - pos: -55.5,-88.5 parent: 2 type: Transform - - uid: 24061 + - uid: 24146 components: - pos: 73.5,38.5 parent: 2 type: Transform - - uid: 24062 + - uid: 24147 components: - pos: 73.5,34.5 parent: 2 type: Transform - - uid: 24063 + - uid: 24148 components: - pos: -0.5,-78.5 parent: 2 type: Transform - - uid: 24064 + - uid: 24149 components: - pos: -70.5,-30.5 parent: 2 type: Transform - - uid: 24065 + - uid: 24150 components: - pos: -74.5,-30.5 parent: 2 type: Transform - - uid: 24066 + - uid: 24151 components: - pos: -72.5,-30.5 parent: 2 type: Transform - proto: Soap entities: - - uid: 24068 + - uid: 24152 components: - pos: -13.533843,-21.411894 parent: 2 type: Transform - - uid: 24069 + - uid: 24153 components: - pos: -13.440093,-21.677519 parent: 2 type: Transform - proto: soda_dispenser entities: - - uid: 23525 - components: - - rot: 3.141592653589793 rad - pos: 22.5,-39.5 - parent: 2 - type: Transform - - uid: 24071 + - uid: 24154 components: - rot: -1.5707963267948966 rad pos: 18.5,11.5 parent: 2 type: Transform - - uid: 24072 + - uid: 24155 components: - pos: -40.5,-74.5 parent: 2 type: Transform - - uid: 24073 + - uid: 24156 components: - pos: 37.5,51.5 parent: 2 type: Transform - - uid: 24074 + - uid: 24157 components: - rot: 3.141592653589793 rad pos: -20.5,47.5 parent: 2 type: Transform + - uid: 24158 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-34.5 + parent: 2 + type: Transform - proto: SodiumLightTube entities: - - uid: 24075 + - uid: 24159 components: - pos: -42.50719,-90.42425 parent: 2 type: Transform - - uid: 24076 + - uid: 24160 components: - pos: -13.634616,12.467242 parent: 2 type: Transform - proto: SolarPanel entities: - - uid: 24077 + - uid: 24161 components: - pos: 10.5,-101.5 parent: 2 type: Transform - - uid: 24078 + - uid: 24162 components: - pos: 16.5,-95.5 parent: 2 type: Transform - - uid: 24079 + - uid: 24163 components: - pos: 18.5,-95.5 parent: 2 type: Transform - - uid: 24080 + - uid: 24164 components: - pos: 6.5,-104.5 parent: 2 type: Transform - - uid: 24081 + - uid: 24165 components: - pos: 10.5,-95.5 parent: 2 type: Transform - - uid: 24082 + - uid: 24166 components: - pos: 12.5,-101.5 parent: 2 type: Transform - - uid: 24083 + - uid: 24167 components: - pos: 8.5,-104.5 parent: 2 type: Transform - - uid: 24084 + - uid: 24168 components: - pos: 14.5,-98.5 parent: 2 type: Transform - - uid: 24085 + - uid: 24169 components: - pos: 10.5,-98.5 parent: 2 type: Transform - - uid: 24086 + - uid: 24170 components: - pos: 8.5,-98.5 parent: 2 type: Transform - - uid: 24087 + - uid: 24171 components: - pos: 8.5,-95.5 parent: 2 type: Transform - - uid: 24088 + - uid: 24172 components: - pos: 12.5,-95.5 parent: 2 type: Transform - - uid: 24089 + - uid: 24173 components: - pos: 12.5,-98.5 parent: 2 type: Transform - - uid: 24090 + - uid: 24174 components: - pos: 14.5,-101.5 parent: 2 type: Transform - - uid: 24091 + - uid: 24175 components: - pos: 14.5,-95.5 parent: 2 type: Transform - - uid: 24092 + - uid: 24176 components: - pos: 6.5,-95.5 parent: 2 type: Transform - - uid: 24093 + - uid: 24177 components: - pos: 8.5,-101.5 parent: 2 type: Transform - - uid: 24094 + - uid: 24178 components: - pos: 4.5,-95.5 parent: 2 type: Transform - - uid: 24095 + - uid: 24179 components: - pos: 12.5,-104.5 parent: 2 type: Transform - - uid: 24096 + - uid: 24180 components: - pos: 16.5,-101.5 parent: 2 type: Transform - - uid: 24097 + - uid: 24181 components: - pos: 18.5,-101.5 parent: 2 type: Transform - - uid: 24098 + - uid: 24182 components: - pos: 18.5,-98.5 parent: 2 type: Transform - - uid: 24099 + - uid: 24183 components: - pos: 16.5,-98.5 parent: 2 type: Transform - - uid: 24100 + - uid: 24184 components: - pos: 18.5,-104.5 parent: 2 type: Transform - - uid: 24101 + - uid: 24185 components: - pos: 16.5,-104.5 parent: 2 type: Transform - - uid: 24102 + - uid: 24186 components: - pos: 4.5,-104.5 parent: 2 type: Transform - - uid: 24103 + - uid: 24187 components: - pos: 4.5,-101.5 parent: 2 type: Transform - - uid: 24104 + - uid: 24188 components: - pos: 6.5,-101.5 parent: 2 type: Transform - - uid: 24105 + - uid: 24189 components: - pos: 4.5,-98.5 parent: 2 type: Transform - - uid: 24106 + - uid: 24190 components: - pos: 6.5,-98.5 parent: 2 type: Transform - - uid: 24107 + - uid: 24191 components: - pos: 14.5,-104.5 parent: 2 type: Transform - - uid: 24108 + - uid: 24192 components: - pos: 10.5,-104.5 parent: 2 type: Transform - - uid: 24109 + - uid: 24193 components: - rot: 1.5707963267948966 rad pos: 90.5,44.5 parent: 2 type: Transform - - uid: 24110 + - uid: 24194 components: - rot: 1.5707963267948966 rad pos: 90.5,43.5 parent: 2 type: Transform - - uid: 24111 + - uid: 24195 components: - rot: 1.5707963267948966 rad pos: 90.5,41.5 parent: 2 type: Transform - - uid: 24112 + - uid: 24196 components: - rot: 1.5707963267948966 rad pos: 90.5,42.5 parent: 2 type: Transform - - uid: 24113 + - uid: 24197 components: - rot: 1.5707963267948966 rad pos: 90.5,40.5 parent: 2 type: Transform - - uid: 24114 + - uid: 24198 components: - rot: 1.5707963267948966 rad pos: 90.5,39.5 parent: 2 type: Transform - - uid: 24115 + - uid: 24199 components: - rot: 1.5707963267948966 rad pos: 90.5,38.5 parent: 2 type: Transform - - uid: 24116 + - uid: 24200 components: - rot: 1.5707963267948966 rad pos: 90.5,37.5 parent: 2 type: Transform - - uid: 24117 + - uid: 24201 components: - rot: 1.5707963267948966 rad pos: 87.5,44.5 parent: 2 type: Transform - - uid: 24118 + - uid: 24202 components: - rot: 1.5707963267948966 rad pos: 87.5,43.5 parent: 2 type: Transform - - uid: 24119 + - uid: 24203 components: - rot: 1.5707963267948966 rad pos: 87.5,42.5 parent: 2 type: Transform - - uid: 24120 + - uid: 24204 components: - rot: 1.5707963267948966 rad pos: 87.5,41.5 parent: 2 type: Transform - - uid: 24121 + - uid: 24205 components: - rot: 1.5707963267948966 rad pos: 87.5,40.5 parent: 2 type: Transform - - uid: 24122 + - uid: 24206 components: - rot: 1.5707963267948966 rad pos: 87.5,39.5 parent: 2 type: Transform - - uid: 24123 + - uid: 24207 components: - rot: 1.5707963267948966 rad pos: 87.5,38.5 parent: 2 type: Transform - - uid: 24124 + - uid: 24208 components: - rot: 1.5707963267948966 rad pos: 87.5,37.5 parent: 2 type: Transform - - uid: 24125 + - uid: 24209 components: - rot: 1.5707963267948966 rad pos: 84.5,44.5 parent: 2 type: Transform - - uid: 24126 + - uid: 24210 components: - rot: 1.5707963267948966 rad pos: 84.5,43.5 parent: 2 type: Transform - - uid: 24127 + - uid: 24211 components: - rot: 1.5707963267948966 rad pos: 84.5,42.5 parent: 2 type: Transform - - uid: 24128 + - uid: 24212 components: - rot: 1.5707963267948966 rad pos: 84.5,41.5 parent: 2 type: Transform - - uid: 24129 + - uid: 24213 components: - rot: 1.5707963267948966 rad pos: 84.5,40.5 parent: 2 type: Transform - - uid: 24130 + - uid: 24214 components: - rot: 1.5707963267948966 rad pos: 84.5,39.5 parent: 2 type: Transform - - uid: 24131 + - uid: 24215 components: - rot: 1.5707963267948966 rad pos: 84.5,38.5 parent: 2 type: Transform - - uid: 24132 + - uid: 24216 components: - rot: 1.5707963267948966 rad pos: 84.5,37.5 parent: 2 type: Transform - - uid: 24133 + - uid: 24217 components: - rot: 1.5707963267948966 rad pos: 81.5,44.5 parent: 2 type: Transform - - uid: 24134 + - uid: 24218 components: - rot: 1.5707963267948966 rad pos: 81.5,43.5 parent: 2 type: Transform - - uid: 24135 + - uid: 24219 components: - rot: 1.5707963267948966 rad pos: 81.5,42.5 parent: 2 type: Transform - - uid: 24136 + - uid: 24220 components: - rot: 1.5707963267948966 rad pos: 81.5,41.5 parent: 2 type: Transform - - uid: 24137 + - uid: 24221 components: - rot: 1.5707963267948966 rad pos: 81.5,40.5 parent: 2 type: Transform - - uid: 24138 + - uid: 24222 components: - rot: 1.5707963267948966 rad pos: 81.5,39.5 parent: 2 type: Transform - - uid: 24139 + - uid: 24223 components: - rot: 1.5707963267948966 rad pos: 81.5,38.5 parent: 2 type: Transform - - uid: 24140 + - uid: 24224 components: - rot: 1.5707963267948966 rad pos: 81.5,37.5 parent: 2 type: Transform - - uid: 24141 + - uid: 24225 components: - rot: 1.5707963267948966 rad pos: 78.5,44.5 parent: 2 type: Transform - - uid: 24142 + - uid: 24226 components: - rot: 1.5707963267948966 rad pos: 78.5,43.5 parent: 2 type: Transform - - uid: 24143 + - uid: 24227 components: - rot: 1.5707963267948966 rad pos: 78.5,42.5 parent: 2 type: Transform - - uid: 24144 + - uid: 24228 components: - rot: 1.5707963267948966 rad pos: 78.5,41.5 parent: 2 type: Transform - - uid: 24145 + - uid: 24229 components: - rot: 1.5707963267948966 rad pos: 78.5,40.5 parent: 2 type: Transform - - uid: 24146 + - uid: 24230 components: - rot: 1.5707963267948966 rad pos: 78.5,39.5 parent: 2 type: Transform - - uid: 24147 + - uid: 24231 components: - rot: 1.5707963267948966 rad pos: 78.5,38.5 parent: 2 type: Transform - - uid: 24148 + - uid: 24232 components: - rot: 1.5707963267948966 rad pos: 78.5,37.5 parent: 2 type: Transform - - uid: 24149 + - uid: 24233 components: - rot: 1.5707963267948966 rad pos: 78.5,35.5 parent: 2 type: Transform - - uid: 24150 + - uid: 24234 components: - rot: 1.5707963267948966 rad pos: 78.5,34.5 parent: 2 type: Transform - - uid: 24151 + - uid: 24235 components: - rot: 1.5707963267948966 rad pos: 78.5,33.5 parent: 2 type: Transform - - uid: 24152 + - uid: 24236 components: - rot: 1.5707963267948966 rad pos: 78.5,32.5 parent: 2 type: Transform - - uid: 24153 + - uid: 24237 components: - rot: 1.5707963267948966 rad pos: 78.5,31.5 parent: 2 type: Transform - - uid: 24154 + - uid: 24238 components: - rot: 1.5707963267948966 rad pos: 78.5,30.5 parent: 2 type: Transform - - uid: 24155 + - uid: 24239 components: - rot: 1.5707963267948966 rad pos: 78.5,29.5 parent: 2 type: Transform - - uid: 24156 + - uid: 24240 components: - rot: 1.5707963267948966 rad pos: 78.5,28.5 parent: 2 type: Transform - - uid: 24157 + - uid: 24241 components: - rot: 1.5707963267948966 rad pos: 81.5,35.5 parent: 2 type: Transform - - uid: 24158 + - uid: 24242 components: - rot: 1.5707963267948966 rad pos: 81.5,34.5 parent: 2 type: Transform - - uid: 24159 + - uid: 24243 components: - rot: 1.5707963267948966 rad pos: 81.5,33.5 parent: 2 type: Transform - - uid: 24160 + - uid: 24244 components: - rot: 1.5707963267948966 rad pos: 81.5,32.5 parent: 2 type: Transform - - uid: 24161 + - uid: 24245 components: - rot: 1.5707963267948966 rad pos: 81.5,31.5 parent: 2 type: Transform - - uid: 24162 + - uid: 24246 components: - rot: 1.5707963267948966 rad pos: 81.5,30.5 parent: 2 type: Transform - - uid: 24163 + - uid: 24247 components: - rot: 1.5707963267948966 rad pos: 81.5,29.5 parent: 2 type: Transform - - uid: 24164 + - uid: 24248 components: - rot: 1.5707963267948966 rad pos: 81.5,28.5 parent: 2 type: Transform - - uid: 24165 + - uid: 24249 components: - rot: 1.5707963267948966 rad pos: 84.5,35.5 parent: 2 type: Transform - - uid: 24166 + - uid: 24250 components: - rot: 1.5707963267948966 rad pos: 84.5,34.5 parent: 2 type: Transform - - uid: 24167 + - uid: 24251 components: - rot: 1.5707963267948966 rad pos: 84.5,33.5 parent: 2 type: Transform - - uid: 24168 + - uid: 24252 components: - rot: 1.5707963267948966 rad pos: 84.5,32.5 parent: 2 type: Transform - - uid: 24169 + - uid: 24253 components: - rot: 1.5707963267948966 rad pos: 84.5,31.5 parent: 2 type: Transform - - uid: 24170 + - uid: 24254 components: - rot: 1.5707963267948966 rad pos: 84.5,30.5 parent: 2 type: Transform - - uid: 24171 + - uid: 24255 components: - rot: 1.5707963267948966 rad pos: 84.5,29.5 parent: 2 type: Transform - - uid: 24172 + - uid: 24256 components: - rot: 1.5707963267948966 rad pos: 84.5,28.5 parent: 2 type: Transform - - uid: 24173 + - uid: 24257 components: - rot: 1.5707963267948966 rad pos: 87.5,35.5 parent: 2 type: Transform - - uid: 24174 + - uid: 24258 components: - rot: 1.5707963267948966 rad pos: 87.5,34.5 parent: 2 type: Transform - - uid: 24175 + - uid: 24259 components: - rot: 1.5707963267948966 rad pos: 87.5,33.5 parent: 2 type: Transform - - uid: 24176 + - uid: 24260 components: - rot: 1.5707963267948966 rad pos: 87.5,32.5 parent: 2 type: Transform - - uid: 24177 + - uid: 24261 components: - rot: 1.5707963267948966 rad pos: 87.5,31.5 parent: 2 type: Transform - - uid: 24178 + - uid: 24262 components: - rot: 1.5707963267948966 rad pos: 87.5,30.5 parent: 2 type: Transform - - uid: 24179 + - uid: 24263 components: - rot: 1.5707963267948966 rad pos: 87.5,29.5 parent: 2 type: Transform - - uid: 24180 + - uid: 24264 components: - rot: 1.5707963267948966 rad pos: 87.5,28.5 parent: 2 type: Transform - - uid: 24181 + - uid: 24265 components: - rot: 1.5707963267948966 rad pos: 90.5,35.5 parent: 2 type: Transform - - uid: 24182 + - uid: 24266 components: - rot: 1.5707963267948966 rad pos: 90.5,34.5 parent: 2 type: Transform - - uid: 24183 + - uid: 24267 components: - rot: 1.5707963267948966 rad pos: 90.5,33.5 parent: 2 type: Transform - - uid: 24184 + - uid: 24268 components: - rot: 1.5707963267948966 rad pos: 90.5,32.5 parent: 2 type: Transform - - uid: 24185 + - uid: 24269 components: - rot: 1.5707963267948966 rad pos: 90.5,31.5 parent: 2 type: Transform - - uid: 24186 + - uid: 24270 components: - rot: 1.5707963267948966 rad pos: 90.5,30.5 parent: 2 type: Transform - - uid: 24187 + - uid: 24271 components: - rot: 1.5707963267948966 rad pos: 90.5,29.5 parent: 2 type: Transform - - uid: 24188 + - uid: 24272 components: - rot: 1.5707963267948966 rad pos: 90.5,28.5 @@ -166145,72 +167346,72 @@ entities: type: Transform - proto: SolarPanelBroken entities: - - uid: 24189 + - uid: 24273 components: - pos: -4.5,-73.5 parent: 2 type: Transform - - uid: 24190 + - uid: 24274 components: - rot: 3.141592653589793 rad pos: 62.5,29.5 parent: 2 type: Transform - - uid: 24191 + - uid: 24275 components: - pos: 46.5,-62.5 parent: 2 type: Transform - proto: SolarTracker entities: - - uid: 24192 + - uid: 24276 components: - pos: 11.5,-105.5 parent: 2 type: Transform - - uid: 24193 + - uid: 24277 components: - pos: 91.5,36.5 parent: 2 type: Transform - proto: SolidSecretDoor entities: - - uid: 2637 + - uid: 24278 components: - pos: -36.5,-19.5 parent: 2 type: Transform - - SecondsUntilStateChange: -25363.727 + - SecondsUntilStateChange: -36833.85 state: Opening type: Door - proto: SpaceCash entities: - - uid: 24194 + - uid: 24279 components: - rot: 1.5707963267948966 rad pos: 53.352566,29.426033 parent: 2 type: Transform - - uid: 24195 + - uid: 24280 components: - pos: 53.49319,28.910408 parent: 2 type: Transform - - uid: 24196 + - uid: 24281 components: - pos: 53.58694,28.691658 parent: 2 type: Transform - proto: SpaceCash1000 entities: - - uid: 24197 + - uid: 24282 components: - pos: 59.59177,-29.360462 parent: 2 type: Transform - proto: SpaceMedipen entities: - - uid: 24199 + - uid: 24283 components: - rot: -1.5707963267948966 rad pos: -55.678448,-39.42407 @@ -166218,1010 +167419,1036 @@ entities: type: Transform - proto: SpaceQuartz1 entities: - - uid: 24200 + - uid: 24284 components: - pos: -31.635456,29.591772 parent: 2 type: Transform - proto: SpaceVillainArcadeComputerCircuitboard entities: - - uid: 24201 + - uid: 24285 components: - pos: -12.610414,35.61681 parent: 2 type: Transform - proto: SpawnMobAlexander entities: - - uid: 24202 + - uid: 24286 components: - pos: 3.5,5.5 parent: 2 type: Transform - proto: SpawnMobBear entities: - - uid: 24203 + - uid: 24287 components: - pos: -37.5,63.5 parent: 2 type: Transform - proto: SpawnMobCat entities: - - uid: 24204 + - uid: 24288 components: - pos: -12.5,-38.5 parent: 2 type: Transform - - uid: 24205 + - uid: 24289 components: - pos: 57.5,16.5 parent: 2 type: Transform - proto: SpawnMobCatGeneric entities: - - uid: 24206 + - uid: 24290 components: - pos: -55.5,-64.5 parent: 2 type: Transform - proto: SpawnMobCleanBot entities: - - uid: 24207 + - uid: 24291 components: - pos: 15.5,-42.5 parent: 2 type: Transform - proto: SpawnMobCorgi entities: - - uid: 12256 + - uid: 24292 components: - - pos: -1.5,-5.5 + - pos: 3.5,-7.5 parent: 2 type: Transform - proto: SpawnMobCow entities: - - uid: 24209 + - uid: 24293 components: - pos: -7.5,18.5 parent: 2 type: Transform - - uid: 24210 + - uid: 24294 components: - pos: -4.5,18.5 parent: 2 type: Transform - proto: SpawnMobFoxRenault entities: - - uid: 24211 + - uid: 24295 components: - pos: 32.5,-28.5 parent: 2 type: Transform - proto: SpawnMobHamsterHamlet entities: - - uid: 24212 + - uid: 24296 components: - pos: 30.5,-23.5 parent: 2 type: Transform - proto: SpawnMobKangaroo entities: - - uid: 24213 + - uid: 24297 components: - pos: -54.5,62.5 parent: 2 type: Transform - proto: SpawnMobKangarooWillow entities: - - uid: 24214 + - uid: 24298 components: - pos: 25.5,-0.5 parent: 2 type: Transform - proto: SpawnMobMcGriff entities: - - uid: 24215 + - uid: 24299 components: - pos: 26.5,23.5 parent: 2 type: Transform - proto: SpawnMobMedibot entities: - - uid: 24216 + - uid: 24300 components: - pos: -8.5,-46.5 parent: 2 type: Transform +- proto: SpawnMobMonkey + entities: + - uid: 24301 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-89.5 + parent: 2 + type: Transform + - uid: 24302 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-89.5 + parent: 2 + type: Transform - proto: SpawnMobMonkeyPunpun entities: - - uid: 24217 + - uid: 24303 components: - pos: 16.5,9.5 parent: 2 type: Transform - proto: SpawnMobMouse entities: - - uid: 24218 + - uid: 24304 components: - pos: 2.5,-69.5 parent: 2 type: Transform - - uid: 24219 + - uid: 24305 components: - pos: -0.5,33.5 parent: 2 type: Transform - - uid: 24220 + - uid: 24306 components: - pos: -28.5,-41.5 parent: 2 type: Transform - - uid: 24221 + - uid: 24307 components: - pos: -29.5,-47.5 parent: 2 type: Transform - - uid: 24222 + - uid: 24308 components: - pos: 49.5,-33.5 parent: 2 type: Transform - - uid: 24223 + - uid: 24309 components: - pos: -7.5,-81.5 parent: 2 type: Transform - - uid: 24224 + - uid: 24310 components: - pos: 6.5,32.5 parent: 2 type: Transform - - uid: 24225 + - uid: 24311 components: - pos: 35.5,22.5 parent: 2 type: Transform - - uid: 24226 + - uid: 24312 components: - pos: -15.5,13.5 parent: 2 type: Transform - - uid: 24227 + - uid: 24313 components: - pos: 52.5,36.5 parent: 2 type: Transform - - uid: 24228 + - uid: 24314 components: - pos: -51.5,-0.5 parent: 2 type: Transform - - uid: 24229 + - uid: 24315 components: - pos: -38.5,-64.5 parent: 2 type: Transform - - uid: 24230 + - uid: 24316 components: - pos: -40.5,-81.5 parent: 2 type: Transform - - uid: 24231 + - uid: 24317 components: - pos: -45.5,-77.5 parent: 2 type: Transform - - uid: 24232 + - uid: 24318 components: - pos: 48.5,-65.5 parent: 2 type: Transform - proto: SpawnMobPossumMorty entities: - - uid: 24233 + - uid: 24319 components: - pos: -15.5,-63.5 parent: 2 type: Transform - proto: SpawnMobRaccoonMorticia entities: - - uid: 24234 + - uid: 24320 components: - pos: -33.5,31.5 parent: 2 type: Transform - proto: SpawnMobShiva entities: - - uid: 24235 + - uid: 24321 components: - pos: 4.5,19.5 parent: 2 type: Transform - proto: SpawnMobSlothPaperwork entities: - - uid: 24236 + - uid: 24322 components: - pos: 12.5,-7.5 parent: 2 type: Transform - proto: SpawnMobSpaceSpider entities: - - uid: 24237 + - uid: 24323 components: - pos: -47.5,68.5 parent: 2 type: Transform - proto: SpawnMobWalter entities: - - uid: 24238 + - uid: 24324 components: - pos: -0.5,-53.5 parent: 2 type: Transform - proto: SpawnPointAssistant entities: - - uid: 24239 + - uid: 24325 components: - pos: -25.5,-22.5 parent: 2 type: Transform - - uid: 24240 + - uid: 24326 components: - pos: -23.5,-22.5 parent: 2 type: Transform - - uid: 24241 + - uid: 24327 components: - pos: 41.5,-72.5 parent: 2 type: Transform - - uid: 24242 + - uid: 24328 components: - pos: 38.5,-72.5 parent: 2 type: Transform - - uid: 24243 + - uid: 24329 components: - pos: 40.5,-55.5 parent: 2 type: Transform - - uid: 24244 + - uid: 24330 components: - pos: -51.5,14.5 parent: 2 type: Transform - - uid: 24245 + - uid: 24331 components: - pos: -45.5,5.5 parent: 2 type: Transform - - uid: 24246 + - uid: 24332 components: - pos: -52.5,7.5 parent: 2 type: Transform - - uid: 24247 + - uid: 24333 components: - pos: 39.5,-54.5 parent: 2 type: Transform - - uid: 24248 + - uid: 24334 components: - pos: -46.5,7.5 parent: 2 type: Transform - - uid: 24249 + - uid: 24335 components: - pos: -19.5,34.5 parent: 2 type: Transform - - uid: 24250 + - uid: 24336 components: - pos: -11.5,32.5 parent: 2 type: Transform - - uid: 24251 + - uid: 24337 components: - pos: -23.5,30.5 parent: 2 type: Transform - - uid: 24252 + - uid: 24338 components: - pos: -42.5,10.5 parent: 2 type: Transform - - uid: 24253 + - uid: 24339 components: - pos: -24.5,-20.5 parent: 2 type: Transform - - uid: 24254 + - uid: 24340 components: - pos: -44.5,3.5 parent: 2 type: Transform - - uid: 24255 + - uid: 24341 components: - pos: 43.5,-72.5 parent: 2 type: Transform - - uid: 24256 + - uid: 24342 components: - pos: 36.5,-72.5 parent: 2 type: Transform - proto: SpawnPointAtmos entities: - - uid: 24257 + - uid: 24343 components: - pos: -39.5,-34.5 parent: 2 type: Transform - - uid: 24258 + - uid: 24344 components: - pos: -37.5,-35.5 parent: 2 type: Transform - - uid: 24259 + - uid: 24345 components: - pos: -36.5,-34.5 parent: 2 type: Transform - proto: SpawnPointBartender entities: - - uid: 24260 + - uid: 24346 components: - pos: 17.5,13.5 parent: 2 type: Transform - - uid: 24261 + - uid: 24347 components: - pos: 17.5,11.5 parent: 2 type: Transform +- proto: SpawnPointBorg + entities: + - uid: 31184 + components: + - pos: 64.5,-44.5 + parent: 2 + type: Transform + - uid: 31185 + components: + - pos: 60.5,-44.5 + parent: 2 + type: Transform - proto: SpawnPointBotanist entities: - - uid: 24262 + - uid: 24348 components: - pos: -5.5,7.5 parent: 2 type: Transform - - uid: 24263 + - uid: 24349 components: - pos: -7.5,7.5 parent: 2 type: Transform - - uid: 24264 + - uid: 24350 components: - pos: -9.5,7.5 parent: 2 type: Transform - proto: SpawnPointBoxer entities: - - uid: 24265 + - uid: 24351 components: - pos: 22.5,2.5 parent: 2 type: Transform - proto: SpawnPointCaptain entities: - - uid: 24266 + - uid: 24352 components: - pos: 26.5,-22.5 parent: 2 type: Transform - proto: SpawnPointCargoTechnician entities: - - uid: 24267 + - uid: 24353 components: - pos: -46.5,16.5 parent: 2 type: Transform - - uid: 24268 + - uid: 24354 components: - pos: -31.5,24.5 parent: 2 type: Transform - - uid: 24269 + - uid: 24355 components: - pos: -33.5,22.5 parent: 2 type: Transform - - uid: 24270 + - uid: 24356 components: - pos: -31.5,19.5 parent: 2 type: Transform - - uid: 24271 + - uid: 24357 components: - pos: -31.5,21.5 parent: 2 type: Transform - proto: SpawnPointChaplain entities: - - uid: 24272 + - uid: 24358 components: - pos: -30.5,13.5 parent: 2 type: Transform - - uid: 24273 + - uid: 24359 components: - pos: -30.5,14.5 parent: 2 type: Transform - proto: SpawnPointChef entities: - - uid: 24274 + - uid: 24360 components: - pos: 0.5,7.5 parent: 2 type: Transform - - uid: 24275 + - uid: 24361 components: - pos: 5.5,7.5 parent: 2 type: Transform - - uid: 24276 + - uid: 24362 components: - pos: 5.5,9.5 parent: 2 type: Transform - proto: SpawnPointChemist entities: - - uid: 24277 + - uid: 24363 components: - pos: 3.5,-50.5 parent: 2 type: Transform - - uid: 24278 + - uid: 24364 components: - pos: 3.5,-48.5 parent: 2 type: Transform - - uid: 24279 + - uid: 24365 components: - pos: 3.5,-46.5 parent: 2 type: Transform - proto: SpawnPointChiefEngineer entities: - - uid: 24280 + - uid: 24366 components: - pos: -36.5,-17.5 parent: 2 type: Transform - proto: SpawnPointChiefMedicalOfficer entities: - - uid: 24281 + - uid: 24367 components: - pos: -18.5,-55.5 parent: 2 type: Transform - proto: SpawnPointClown entities: - - uid: 24282 + - uid: 24368 components: - pos: -21.5,38.5 parent: 2 type: Transform + - uid: 24369 + components: + - pos: 0.5,-21.5 + parent: 2 + type: Transform - proto: SpawnPointDetective entities: - - uid: 24283 + - uid: 24370 components: - pos: 19.5,-11.5 parent: 2 type: Transform - proto: SpawnPointHeadOfPersonnel entities: - - uid: 23794 + - uid: 24371 components: - - pos: 3.5,-6.5 + - pos: 4.5,-5.5 parent: 2 type: Transform - proto: SpawnPointHeadOfSecurity entities: - - uid: 24285 + - uid: 24372 components: - pos: 5.5,21.5 parent: 2 type: Transform - proto: SpawnPointJanitor entities: - - uid: 24286 + - uid: 24373 components: - pos: -11.5,-18.5 parent: 2 type: Transform - - uid: 24287 + - uid: 24374 components: - pos: -10.5,-22.5 parent: 2 type: Transform - - uid: 24288 + - uid: 24375 components: - pos: -12.5,-22.5 parent: 2 type: Transform - proto: SpawnPointLatejoin entities: - - uid: 24289 + - uid: 24376 components: - pos: 39.5,-72.5 parent: 2 type: Transform - - uid: 24290 + - uid: 24377 components: - pos: 40.5,-72.5 parent: 2 type: Transform - - uid: 24291 + - uid: 24378 components: - pos: 42.5,-72.5 parent: 2 type: Transform - - uid: 24292 + - uid: 24379 components: - pos: 37.5,-72.5 parent: 2 type: Transform - proto: SpawnPointLawyer entities: - - uid: 24293 + - uid: 24380 components: - pos: 42.5,-2.5 parent: 2 type: Transform - - uid: 24294 + - uid: 24381 components: - pos: 39.5,-4.5 parent: 2 type: Transform - proto: SpawnPointLibrarian entities: - - uid: 24295 + - uid: 24382 components: - pos: 11.5,-9.5 parent: 2 type: Transform - - uid: 24296 + - uid: 24383 components: - pos: 9.5,-9.5 parent: 2 type: Transform - proto: SpawnPointMedicalDoctor entities: - - uid: 24297 + - uid: 24384 components: - pos: -14.5,-46.5 parent: 2 type: Transform - - uid: 24298 + - uid: 24385 components: - pos: -12.5,-46.5 parent: 2 type: Transform - - uid: 24299 + - uid: 24386 components: - pos: -12.5,-48.5 parent: 2 type: Transform - - uid: 24300 + - uid: 24387 components: - pos: -14.5,-48.5 parent: 2 type: Transform - - uid: 24301 + - uid: 24388 components: - pos: -28.5,-74.5 parent: 2 type: Transform - proto: SpawnPointMedicalIntern entities: - - uid: 24302 - components: - - pos: -15.5,-38.5 - parent: 2 - type: Transform - - uid: 24303 + - uid: 24390 components: - pos: -1.5,-47.5 parent: 2 type: Transform - proto: SpawnPointMime entities: - - uid: 24304 + - uid: 24391 components: - pos: -27.5,45.5 parent: 2 type: Transform - proto: SpawnPointMusician entities: - - uid: 24305 + - uid: 24392 components: - pos: -9.5,-5.5 parent: 2 type: Transform - - uid: 24306 + - uid: 24393 components: - pos: -7.5,-5.5 parent: 2 type: Transform - proto: SpawnPointObserver entities: - - uid: 24307 + - uid: 24394 components: - pos: -4.5,-41.5 parent: 2 type: Transform - proto: SpawnPointParamedic entities: - - uid: 24308 + - uid: 24395 components: - pos: 3.5,-64.5 parent: 2 type: Transform - proto: SpawnPointPsychologist entities: - - uid: 24309 + - uid: 24389 components: - - pos: -15.5,-38.5 + - pos: -11.5,-36.5 parent: 2 type: Transform - proto: SpawnPointQuartermaster entities: - - uid: 24310 + - uid: 24397 components: - pos: -31.5,30.5 parent: 2 type: Transform - proto: SpawnPointReporter entities: - - uid: 24311 + - uid: 24398 components: - pos: -25.5,11.5 parent: 2 type: Transform - proto: SpawnPointResearchAssistant entities: - - uid: 24312 + - uid: 24399 components: - pos: 49.5,-40.5 parent: 2 type: Transform - proto: SpawnPointResearchDirector entities: - - uid: 24313 + - uid: 24400 components: - pos: 63.5,-52.5 parent: 2 type: Transform - proto: SpawnPointSalvageSpecialist entities: - - uid: 24314 + - uid: 24401 components: - pos: -37.5,32.5 parent: 2 type: Transform - - uid: 24315 + - uid: 24402 components: - pos: -37.5,30.5 parent: 2 type: Transform - - uid: 24316 + - uid: 24403 components: - pos: -37.5,28.5 parent: 2 type: Transform - proto: SpawnPointScientist entities: - - uid: 24317 + - uid: 24404 components: - pos: 45.5,-46.5 parent: 2 type: Transform - - uid: 24318 + - uid: 24405 components: - pos: 43.5,-46.5 parent: 2 type: Transform - - uid: 24319 + - uid: 24406 components: - pos: 41.5,-46.5 parent: 2 type: Transform - - uid: 24320 + - uid: 24407 components: - pos: 44.5,-47.5 parent: 2 type: Transform - - uid: 24321 + - uid: 24408 components: - pos: 74.5,-34.5 parent: 2 type: Transform - proto: SpawnPointSecurityCadet entities: - - uid: 24322 + - uid: 24409 components: - pos: 23.5,18.5 parent: 2 type: Transform - - uid: 24323 + - uid: 24410 components: - pos: 25.5,18.5 parent: 2 type: Transform - proto: SpawnPointSecurityOfficer entities: - - uid: 24324 + - uid: 24411 components: - pos: 1.5,19.5 parent: 2 type: Transform - - uid: 24325 + - uid: 24412 components: - pos: 7.5,16.5 parent: 2 type: Transform - - uid: 24326 + - uid: 24413 components: - pos: 5.5,16.5 parent: 2 type: Transform - - uid: 24327 + - uid: 24414 components: - pos: 0.5,18.5 parent: 2 type: Transform - - uid: 24328 + - uid: 24415 components: - pos: 1.5,17.5 parent: 2 type: Transform - - uid: 24329 + - uid: 24416 components: - pos: 6.5,13.5 parent: 2 type: Transform - proto: SpawnPointSeniorEngineer entities: - - uid: 24330 + - uid: 24417 components: - pos: -38.5,-8.5 parent: 2 type: Transform - proto: SpawnPointSeniorOfficer entities: - - uid: 24331 + - uid: 24418 components: - pos: 6.5,17.5 parent: 2 type: Transform - proto: SpawnPointSeniorPhysician entities: - - uid: 24332 + - uid: 24419 components: - pos: -13.5,-47.5 parent: 2 type: Transform - proto: SpawnPointSeniorResearcher entities: - - uid: 24333 + - uid: 24420 components: - pos: 45.5,-37.5 parent: 2 type: Transform - proto: SpawnPointServiceWorker entities: - - uid: 24334 + - uid: 24421 components: - pos: -21.5,44.5 parent: 2 type: Transform - - uid: 24335 + - uid: 24422 components: - pos: -10.5,42.5 parent: 2 type: Transform - - uid: 24336 + - uid: 24423 components: - pos: -21.5,48.5 parent: 2 type: Transform - proto: SpawnPointStationEngineer entities: - - uid: 24337 + - uid: 24424 components: - pos: -37.5,-10.5 parent: 2 type: Transform - - uid: 24338 + - uid: 24425 components: - pos: -38.5,-12.5 parent: 2 type: Transform - - uid: 24339 + - uid: 24426 components: - pos: -36.5,-12.5 parent: 2 type: Transform - - uid: 24340 + - uid: 24427 components: - pos: -35.5,-10.5 parent: 2 type: Transform - - uid: 24341 + - uid: 24428 components: - pos: -35.5,-7.5 parent: 2 type: Transform - proto: SpawnPointTechnicalAssistant entities: - - uid: 24342 + - uid: 24429 components: - pos: -23.5,-10.5 parent: 2 type: Transform - - uid: 24343 + - uid: 24430 components: - pos: -24.5,-12.5 parent: 2 type: Transform - proto: SpawnPointWarden entities: - - uid: 24344 + - uid: 24431 components: - pos: 23.5,21.5 parent: 2 type: Transform - proto: SpawnVehicleJanicart entities: - - uid: 24345 + - uid: 24432 components: - pos: -12.5,-23.5 parent: 2 type: Transform - proto: SpawnVehicleSecway entities: - - uid: 24346 + - uid: 24433 components: - pos: 10.5,22.5 parent: 2 type: Transform - - uid: 24347 + - uid: 24434 components: - pos: 10.5,21.5 parent: 2 type: Transform - - uid: 24348 + - uid: 24435 components: - pos: 10.5,20.5 parent: 2 type: Transform - proto: SpawnVendingMachineRestockFoodDrink entities: - - uid: 24349 + - uid: 24436 components: - pos: 37.5,-10.5 parent: 2 type: Transform - - uid: 24350 + - uid: 24437 components: - pos: -13.5,-12.5 parent: 2 type: Transform - proto: SprayBottle entities: - - uid: 24351 + - uid: 24438 components: - pos: 53.44381,-51.454926 parent: 2 type: Transform - proto: SprayBottleSpaceCleaner entities: - - uid: 24352 + - uid: 24439 components: - pos: -13.517906,-22.26318 parent: 2 type: Transform - - uid: 24353 + - uid: 24440 components: - pos: -13.721031,-22.20068 parent: 2 type: Transform - - uid: 24354 + - uid: 24441 components: - pos: -13.62392,-22.29671 parent: 2 type: Transform - - uid: 24355 + - uid: 24442 components: - pos: -13.389545,-22.218584 parent: 2 type: Transform - proto: StasisBed entities: - - uid: 24356 + - uid: 24443 components: - pos: 4.5,-64.5 parent: 2 type: Transform - - uid: 24357 + - uid: 24444 components: - pos: 4.5,-63.5 parent: 2 type: Transform - proto: StationMap entities: - - uid: 24358 + - uid: 24445 components: - pos: 5.5,-24.5 parent: 2 type: Transform - - uid: 24359 + - uid: 24446 components: - pos: 12.5,-40.5 parent: 2 type: Transform - - uid: 24360 + - uid: 24447 components: - pos: -32.5,2.5 parent: 2 type: Transform - - uid: 24361 + - uid: 24448 components: - pos: -0.5,4.5 parent: 2 type: Transform - - uid: 24362 + - uid: 24449 components: - pos: -18.5,52.5 parent: 2 type: Transform - - uid: 24363 + - uid: 24450 components: - pos: 45.5,-70.5 parent: 2 type: Transform - - uid: 24364 + - uid: 24451 components: - pos: 41.5,-40.5 parent: 2 type: Transform - - uid: 24365 + - uid: 24452 components: - pos: 48.5,3.5 parent: 2 type: Transform - - uid: 24366 + - uid: 24453 components: - pos: 20.5,9.5 parent: 2 type: Transform - - uid: 24367 + - uid: 24454 components: - pos: -8.5,47.5 parent: 2 type: Transform - - uid: 24368 + - uid: 24455 components: - pos: 12.5,-79.5 parent: 2 type: Transform - - uid: 24369 + - uid: 24456 components: - pos: -69.5,-36.5 parent: 2 type: Transform - proto: StationMapCircuitboard entities: - - uid: 24370 + - uid: 24457 components: - pos: -8.453156,37.616253 parent: 2 type: Transform - proto: SteelOre1 entities: - - uid: 24371 + - uid: 24458 components: - rot: 3.141592653589793 rad pos: 20.04077,49.432205 @@ -167229,13 +168456,13 @@ entities: type: Transform - proto: Stool entities: - - uid: 24372 + - uid: 24459 components: - rot: -1.5707963267948966 rad pos: 9.5,5.5 parent: 2 type: Transform - - uid: 24373 + - uid: 24460 components: - rot: -1.5707963267948966 rad pos: -33.5,13.5 @@ -167243,13 +168470,13 @@ entities: type: Transform - proto: StoolBar entities: - - uid: 24375 + - uid: 24461 components: - rot: 1.5707963267948966 rad pos: 14.5,10.5 parent: 2 type: Transform - - uid: 24376 + - uid: 24462 components: - name: stool type: MetaData @@ -167257,7 +168484,7 @@ entities: pos: -6.5,3.5 parent: 2 type: Transform - - uid: 24378 + - uid: 24463 components: - name: stool type: MetaData @@ -167265,24 +168492,24 @@ entities: pos: 1.5,3.5 parent: 2 type: Transform - - uid: 24379 + - uid: 24464 components: - rot: 1.5707963267948966 rad pos: 14.5,13.5 parent: 2 type: Transform - - uid: 24380 + - uid: 24465 components: - rot: 1.5707963267948966 rad pos: 14.5,12.5 parent: 2 type: Transform - - uid: 24381 + - uid: 24466 components: - pos: 5.5,12.5 parent: 2 type: Transform - - uid: 24383 + - uid: 24467 components: - name: stool type: MetaData @@ -167290,7 +168517,7 @@ entities: pos: 0.5,3.5 parent: 2 type: Transform - - uid: 24384 + - uid: 24468 components: - name: stool type: MetaData @@ -167298,78 +168525,78 @@ entities: pos: 2.5,3.5 parent: 2 type: Transform - - uid: 24385 + - uid: 24469 components: - rot: 1.5707963267948966 rad pos: 14.5,11.5 parent: 2 type: Transform - - uid: 24386 + - uid: 24470 components: - rot: -1.5707963267948966 rad pos: 8.5,9.5 parent: 2 type: Transform - - uid: 24387 + - uid: 24471 components: - rot: -1.5707963267948966 rad pos: 8.5,8.5 parent: 2 type: Transform - - uid: 24388 + - uid: 24472 components: - rot: -1.5707963267948966 rad pos: 8.5,7.5 parent: 2 type: Transform - - uid: 24389 + - uid: 24473 components: - rot: 1.5707963267948966 rad pos: 14.5,9.5 parent: 2 type: Transform - - uid: 24390 + - uid: 24474 components: - rot: 3.141592653589793 rad pos: -40.5,-79.5 parent: 2 type: Transform - - uid: 24391 + - uid: 24475 components: - rot: 3.141592653589793 rad pos: -41.5,-79.5 parent: 2 type: Transform - - uid: 24392 + - uid: 24476 components: - rot: 3.141592653589793 rad pos: -42.5,-79.5 parent: 2 type: Transform - - uid: 24393 + - uid: 24477 components: - rot: 3.141592653589793 rad pos: -43.5,-79.5 parent: 2 type: Transform - - uid: 24394 + - uid: 24478 components: - rot: -1.5707963267948966 rad pos: -39.5,-78.5 parent: 2 type: Transform - - uid: 24395 + - uid: 24479 components: - rot: 1.5707963267948966 rad pos: -44.5,-78.5 parent: 2 type: Transform - - uid: 24396 + - uid: 24480 components: - pos: 4.5,12.5 parent: 2 type: Transform - - uid: 24397 + - uid: 24481 components: - name: stool type: MetaData @@ -167377,7 +168604,7 @@ entities: pos: -7.5,3.5 parent: 2 type: Transform - - uid: 24398 + - uid: 24482 components: - name: stool type: MetaData @@ -167385,500 +168612,515 @@ entities: pos: -8.5,3.5 parent: 2 type: Transform - - uid: 24399 + - uid: 24483 components: - rot: 3.141592653589793 rad pos: 39.5,48.5 parent: 2 type: Transform - - uid: 24400 + - uid: 24484 components: - rot: 3.141592653589793 rad pos: 38.5,48.5 parent: 2 type: Transform - - uid: 24401 + - uid: 24485 components: - rot: 3.141592653589793 rad pos: 37.5,48.5 parent: 2 type: Transform - - uid: 24402 + - uid: 24486 components: - rot: 3.141592653589793 rad pos: 36.5,48.5 parent: 2 type: Transform - - uid: 24403 + - uid: 24487 components: - name: donk stool type: MetaData - pos: -9.5,44.5 parent: 2 type: Transform - - uid: 24404 + - uid: 24488 components: - name: donk stool type: MetaData - pos: -10.5,44.5 parent: 2 type: Transform - - uid: 24405 + - uid: 24489 components: - pos: -30.5,-96.5 parent: 2 type: Transform - - uid: 24406 + - uid: 24490 components: - name: donk stool type: MetaData - pos: -11.5,44.5 parent: 2 type: Transform + - uid: 24491 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-34.5 + parent: 2 + type: Transform + - uid: 24492 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-35.5 + parent: 2 + type: Transform + - uid: 24493 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-36.5 + parent: 2 + type: Transform + - uid: 24494 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-37.5 + parent: 2 + type: Transform - proto: StorageCanister entities: - - uid: 24407 + - uid: 24495 components: - pos: -75.5,-45.5 parent: 2 type: Transform - - uid: 24408 + - uid: 24496 components: - pos: 45.5,-54.5 parent: 2 type: Transform - - uid: 24409 + - uid: 24497 components: - pos: 45.5,-58.5 parent: 2 type: Transform - - uid: 24410 + - uid: 24498 components: - pos: -16.5,-10.5 parent: 2 type: Transform - - uid: 24411 + - uid: 24499 components: - pos: -38.5,-51.5 parent: 2 type: Transform - - uid: 24412 + - uid: 24500 components: - pos: -38.5,-50.5 parent: 2 type: Transform - - uid: 24413 + - uid: 24501 components: - pos: -38.5,-49.5 parent: 2 type: Transform - - uid: 24414 + - uid: 24502 components: - pos: -34.5,-39.5 parent: 2 type: Transform - - uid: 24415 + - uid: 24503 components: - pos: -35.5,-39.5 parent: 2 type: Transform - - uid: 24416 + - uid: 24504 components: - pos: -50.5,-44.5 parent: 2 type: Transform - - uid: 24417 + - uid: 24505 components: - pos: -50.5,-42.5 parent: 2 type: Transform - - uid: 24418 + - uid: 24506 components: - pos: 53.5,-37.5 parent: 2 type: Transform - - uid: 24419 + - uid: 24507 components: - pos: -24.5,-55.5 parent: 2 type: Transform - - uid: 24420 + - uid: 24508 components: - pos: -26.5,-55.5 parent: 2 type: Transform - - uid: 24421 + - uid: 24509 components: - pos: 51.5,-35.5 parent: 2 type: Transform - - uid: 24422 + - uid: 24510 components: - pos: -50.5,-35.5 parent: 2 type: Transform - - uid: 24423 + - uid: 24511 components: - pos: -50.5,-34.5 parent: 2 type: Transform - - uid: 24424 + - uid: 24512 components: - pos: -35.5,-38.5 parent: 2 type: Transform - - uid: 24425 + - uid: 24513 components: - pos: -75.5,-46.5 parent: 2 type: Transform - proto: Stunbaton entities: - - uid: 24426 + - uid: 24514 components: - pos: 8.313212,12.723815 parent: 2 type: Transform - - uid: 24427 + - uid: 24515 components: - pos: 8.262076,12.8623 parent: 2 type: Transform - proto: SubstationBasic entities: - - uid: 24428 + - uid: 24516 + components: + - pos: 18.5,-27.5 + parent: 2 + type: Transform + - uid: 24517 components: - pos: -69.5,-34.5 parent: 2 type: Transform - - uid: 24429 + - uid: 24518 components: - pos: -34.5,-3.5 parent: 2 type: Transform - - uid: 24430 + - uid: 24519 components: - pos: -12.5,-69.5 parent: 2 type: Transform - - uid: 24431 + - uid: 24520 components: - pos: 15.5,-58.5 parent: 2 type: Transform - - uid: 24432 + - uid: 24521 components: - pos: 30.5,-2.5 parent: 2 type: Transform - - uid: 24433 + - uid: 24522 components: - pos: -8.5,-19.5 parent: 2 type: Transform - - uid: 24434 - components: - - pos: 19.5,-27.5 - parent: 2 - type: Transform - - uid: 24435 + - uid: 24523 components: - pos: 38.5,-28.5 parent: 2 type: Transform - - uid: 24436 + - uid: 24524 components: - pos: 69.5,-59.5 parent: 2 type: Transform - - uid: 24437 + - uid: 24525 components: - pos: 33.5,25.5 parent: 2 type: Transform - - uid: 24438 + - uid: 24526 components: - pos: 63.5,7.5 parent: 2 type: Transform - - uid: 24439 + - uid: 24527 components: - pos: 47.5,-3.5 parent: 2 type: Transform - - uid: 24440 + - uid: 24528 components: - pos: 48.5,-5.5 parent: 2 type: Transform - - uid: 24441 + - uid: 24529 components: - pos: 38.5,-46.5 parent: 2 type: Transform - - uid: 24442 + - uid: 24530 components: - pos: -16.5,-0.5 parent: 2 type: Transform - - uid: 24443 + - uid: 24531 components: - pos: -28.5,-23.5 parent: 2 type: Transform - - uid: 24444 + - uid: 24532 components: - pos: 43.5,-58.5 parent: 2 type: Transform - - uid: 24445 + - uid: 24533 components: - pos: -50.5,-8.5 parent: 2 type: Transform - - uid: 24446 + - uid: 24534 components: - pos: -57.5,-20.5 parent: 2 type: Transform - - uid: 24447 + - uid: 24535 components: - pos: -27.5,-37.5 parent: 2 type: Transform - - uid: 24448 + - uid: 24536 components: - pos: -31.5,-54.5 parent: 2 type: Transform - - uid: 24449 + - uid: 24537 components: - pos: -55.5,-89.5 parent: 2 type: Transform - - uid: 24450 + - uid: 24538 components: - pos: -8.5,35.5 parent: 2 type: Transform - - uid: 24451 + - uid: 24539 components: - pos: -23.5,15.5 parent: 2 type: Transform - - uid: 24452 + - uid: 24540 components: - pos: 4.5,-19.5 parent: 2 type: Transform - - uid: 24453 + - uid: 24541 components: - pos: 11.5,-45.5 parent: 2 type: Transform - - uid: 24454 + - uid: 24542 components: - pos: 11.5,-47.5 parent: 2 type: Transform - - uid: 24455 + - uid: 24543 components: - pos: 50.5,29.5 parent: 2 type: Transform - - uid: 24456 + - uid: 24544 components: - pos: -10.5,62.5 parent: 2 type: Transform - - uid: 24457 + - uid: 24545 components: - pos: 8.5,-16.5 parent: 2 type: Transform - - uid: 24458 + - uid: 24546 components: - pos: -65.5,-54.5 parent: 2 type: Transform - proto: SuitStorageAtmos entities: - - uid: 24459 + - uid: 24547 components: - pos: -40.5,-36.5 parent: 2 type: Transform - - uid: 24460 + - uid: 24548 components: - pos: -36.5,-36.5 parent: 2 type: Transform - - uid: 24461 + - uid: 24549 components: - pos: -38.5,-36.5 parent: 2 type: Transform - proto: SuitStorageCaptain entities: - - uid: 24462 + - uid: 24550 components: - pos: 28.5,-29.5 parent: 2 type: Transform - proto: SuitStorageCE entities: - - uid: 24463 + - uid: 24551 components: - pos: -37.5,-16.5 parent: 2 type: Transform - proto: SuitStorageCMO entities: - - uid: 24572 + - uid: 24552 components: - pos: -22.5,-55.5 parent: 2 type: Transform - proto: SuitStorageEngi entities: - - uid: 24465 + - uid: 24553 components: - pos: -34.5,-5.5 parent: 2 type: Transform - - uid: 24466 + - uid: 24554 components: - pos: -34.5,-7.5 parent: 2 type: Transform - - uid: 24467 + - uid: 24555 components: - pos: -34.5,-8.5 parent: 2 type: Transform - - uid: 24468 + - uid: 24556 components: - pos: -34.5,-6.5 parent: 2 type: Transform - - uid: 24469 + - uid: 24557 components: - pos: -55.5,-15.5 parent: 2 type: Transform - proto: SuitStorageEVA entities: - - uid: 24470 + - uid: 24558 components: - pos: 29.5,-10.5 parent: 2 type: Transform - - uid: 24471 + - uid: 24559 components: - pos: 29.5,-12.5 parent: 2 type: Transform - - uid: 24472 + - uid: 24560 components: - pos: 33.5,-10.5 parent: 2 type: Transform - - uid: 24473 + - uid: 24561 components: - pos: 31.5,-12.5 parent: 2 type: Transform - - uid: 24474 + - uid: 24562 components: - pos: 31.5,-10.5 parent: 2 type: Transform - - uid: 24475 + - uid: 24563 components: - pos: 33.5,-12.5 parent: 2 type: Transform - proto: SuitStorageEVAPrisoner entities: - - uid: 24476 + - uid: 24564 components: - pos: 63.5,4.5 parent: 2 type: Transform - - uid: 24477 + - uid: 24565 components: - pos: 63.5,5.5 parent: 2 type: Transform - proto: SuitStorageHOS entities: - - uid: 24478 + - uid: 24566 components: - pos: 5.5,22.5 parent: 2 type: Transform - proto: SuitStorageRD entities: - - uid: 24479 + - uid: 24567 components: - pos: 65.5,-52.5 parent: 2 type: Transform - proto: SuitStorageSalv entities: - - uid: 24480 + - uid: 24568 components: - pos: -36.5,33.5 parent: 2 type: Transform - - uid: 24481 + - uid: 24569 components: - pos: -36.5,29.5 parent: 2 type: Transform - - uid: 24482 + - uid: 24570 components: - pos: -36.5,31.5 parent: 2 type: Transform - proto: SuitStorageSec entities: - - uid: 24484 + - uid: 24571 components: - pos: 26.5,27.5 parent: 2 type: Transform - - uid: 24485 + - uid: 24572 components: - pos: 32.5,27.5 parent: 2 type: Transform - proto: SuitStorageWarden entities: - - uid: 24487 + - uid: 24573 components: - pos: 20.5,20.5 parent: 2 type: Transform - proto: SuperMatterBinStockPart entities: - - uid: 24488 + - uid: 24574 components: - pos: -50.47893,-29.292162 parent: 2 type: Transform - proto: SurveillanceCameraCommand entities: - - uid: 16188 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-5.5 - parent: 2 - type: Transform - - nameSet: True - id: HoP office - type: SurveillanceCamera - - uid: 24490 + - uid: 24575 components: - rot: 1.5707963267948966 rad pos: -17.5,-55.5 @@ -167889,7 +169131,7 @@ entities: nameSet: True id: chief medical officer type: SurveillanceCamera - - uid: 24491 + - uid: 24576 components: - rot: -1.5707963267948966 rad pos: 4.5,21.5 @@ -167900,7 +169142,7 @@ entities: nameSet: True id: 'head of security ' type: SurveillanceCamera - - uid: 24492 + - uid: 24577 components: - rot: 3.141592653589793 rad pos: 46.5,-27.5 @@ -167911,7 +169153,7 @@ entities: nameSet: True id: vault b type: SurveillanceCamera - - uid: 24493 + - uid: 24578 components: - rot: 3.141592653589793 rad pos: 46.5,-21.5 @@ -167922,7 +169164,7 @@ entities: nameSet: True id: vault a type: SurveillanceCamera - - uid: 24494 + - uid: 24579 components: - pos: 31.5,-22.5 parent: 2 @@ -167932,7 +169174,7 @@ entities: nameSet: True id: bridge type: SurveillanceCamera - - uid: 24495 + - uid: 24580 components: - rot: 3.141592653589793 rad pos: 64.5,-51.5 @@ -167943,7 +169185,7 @@ entities: nameSet: True id: research director type: SurveillanceCamera - - uid: 24496 + - uid: 24581 components: - rot: -1.5707963267948966 rad pos: 31.5,-10.5 @@ -167954,7 +169196,7 @@ entities: nameSet: True id: EVA closet type: SurveillanceCamera - - uid: 24497 + - uid: 24582 components: - pos: 28.5,-43.5 parent: 2 @@ -167964,9 +169206,20 @@ entities: nameSet: True id: personnel type: SurveillanceCamera + - uid: 24583 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: hop + type: SurveillanceCamera - proto: SurveillanceCameraEngineering entities: - - uid: 24498 + - uid: 24584 components: - rot: -1.5707963267948966 rad pos: -44.5,-41.5 @@ -167977,7 +169230,7 @@ entities: nameSet: True id: atmospherics type: SurveillanceCamera - - uid: 24499 + - uid: 24585 components: - rot: 3.141592653589793 rad pos: -29.5,-16.5 @@ -167988,7 +169241,7 @@ entities: nameSet: True id: engineering main corridor type: SurveillanceCamera - - uid: 24500 + - uid: 24586 components: - pos: -38.5,-13.5 parent: 2 @@ -167998,7 +169251,7 @@ entities: nameSet: True id: engineer canteen type: SurveillanceCamera - - uid: 24501 + - uid: 24587 components: - rot: -1.5707963267948966 rad pos: -48.5,-9.5 @@ -168009,7 +169262,7 @@ entities: nameSet: True id: 'AME ' type: SurveillanceCamera - - uid: 24502 + - uid: 24588 components: - pos: -52.5,-20.5 parent: 2 @@ -168019,7 +169272,7 @@ entities: nameSet: True id: engineering console room type: SurveillanceCamera - - uid: 24503 + - uid: 24589 components: - pos: -67.5,-28.5 parent: 2 @@ -168029,7 +169282,7 @@ entities: nameSet: True id: particle accelerator type: SurveillanceCamera - - uid: 24504 + - uid: 24590 components: - rot: -1.5707963267948966 rad pos: -22.5,4.5 @@ -168042,7 +169295,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraGeneral entities: - - uid: 24505 + - uid: 24591 components: - pos: -6.5,-27.5 parent: 2 @@ -168052,7 +169305,7 @@ entities: nameSet: True id: janitorial closet type: SurveillanceCamera - - uid: 24506 + - uid: 24592 components: - rot: 1.5707963267948966 rad pos: -22.5,-23.5 @@ -168063,7 +169316,7 @@ entities: nameSet: True id: north youtool type: SurveillanceCamera - - uid: 24507 + - uid: 24593 components: - rot: 3.141592653589793 rad pos: 8.5,3.5 @@ -168074,7 +169327,7 @@ entities: nameSet: True id: food court type: SurveillanceCamera - - uid: 24508 + - uid: 24594 components: - rot: 1.5707963267948966 rad pos: 41.5,-56.5 @@ -168085,7 +169338,7 @@ entities: nameSet: True id: south youtool type: SurveillanceCamera - - uid: 24509 + - uid: 24595 components: - pos: 37.5,-73.5 parent: 2 @@ -168095,7 +169348,7 @@ entities: nameSet: True id: arrivals type: SurveillanceCamera - - uid: 24510 + - uid: 24596 components: - rot: -1.5707963267948966 rad pos: 60.5,-7.5 @@ -168106,7 +169359,7 @@ entities: nameSet: True id: evac type: SurveillanceCamera - - uid: 24511 + - uid: 24597 components: - rot: 3.141592653589793 rad pos: -12.5,-8.5 @@ -168119,7 +169372,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraMedical entities: - - uid: 24512 + - uid: 24598 components: - rot: -1.5707963267948966 rad pos: -20.5,-61.5 @@ -168130,7 +169383,7 @@ entities: nameSet: True id: medbay corridor type: SurveillanceCamera - - uid: 24513 + - uid: 24599 components: - rot: 1.5707963267948966 rad pos: 0.5,-47.5 @@ -168141,7 +169394,7 @@ entities: nameSet: True id: medbay reception type: SurveillanceCamera - - uid: 24514 + - uid: 24600 components: - pos: -10.5,-61.5 parent: 2 @@ -168151,7 +169404,7 @@ entities: nameSet: True id: medical doctors corridor type: SurveillanceCamera - - uid: 24515 + - uid: 24601 components: - rot: 3.141592653589793 rad pos: -6.5,-52.5 @@ -168162,7 +169415,7 @@ entities: nameSet: True id: medical beds type: SurveillanceCamera - - uid: 24516 + - uid: 24602 components: - rot: -1.5707963267948966 rad pos: -25.5,-70.5 @@ -168173,7 +169426,7 @@ entities: nameSet: True id: virology reception type: SurveillanceCamera - - uid: 24517 + - uid: 24603 components: - pos: -26.5,-80.5 parent: 2 @@ -168183,7 +169436,7 @@ entities: nameSet: True id: virology treatment type: SurveillanceCamera - - uid: 24518 + - uid: 24604 components: - rot: -1.5707963267948966 rad pos: -23.5,-83.5 @@ -168196,63 +169449,63 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraRouterCommand entities: - - uid: 24519 + - uid: 24605 components: - pos: -18.5,-48.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterEngineering entities: - - uid: 24520 + - uid: 24606 components: - pos: -21.5,-47.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterGeneral entities: - - uid: 24521 + - uid: 24607 components: - pos: -18.5,-45.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterMedical entities: - - uid: 24522 + - uid: 24608 components: - pos: -18.5,-46.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterScience entities: - - uid: 24523 + - uid: 24609 components: - pos: -21.5,-45.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterSecurity entities: - - uid: 24524 + - uid: 24610 components: - pos: -21.5,-48.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterService entities: - - uid: 24525 + - uid: 24611 components: - pos: -18.5,-47.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterSupply entities: - - uid: 24526 + - uid: 24612 components: - pos: -21.5,-46.5 parent: 2 type: Transform - proto: SurveillanceCameraScience entities: - - uid: 24527 + - uid: 24613 components: - rot: 1.5707963267948966 rad pos: 76.5,-48.5 @@ -168263,7 +169516,7 @@ entities: nameSet: True id: robotics type: SurveillanceCamera - - uid: 24528 + - uid: 24614 components: - rot: 1.5707963267948966 rad pos: 46.5,-36.5 @@ -168274,7 +169527,7 @@ entities: nameSet: True id: r&d type: SurveillanceCamera - - uid: 24529 + - uid: 24615 components: - rot: 1.5707963267948966 rad pos: 65.5,-47.5 @@ -168285,7 +169538,7 @@ entities: nameSet: True id: science robotics showcase type: SurveillanceCamera - - uid: 24530 + - uid: 24616 components: - rot: 3.141592653589793 rad pos: 37.5,-41.5 @@ -168296,7 +169549,7 @@ entities: nameSet: True id: science entrance type: SurveillanceCamera - - uid: 24531 + - uid: 24617 components: - rot: 1.5707963267948966 rad pos: 75.5,-38.5 @@ -168309,7 +169562,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraSecurity entities: - - uid: 24532 + - uid: 24618 components: - rot: 1.5707963267948966 rad pos: 23.5,34.5 @@ -168320,7 +169573,7 @@ entities: nameSet: True id: space armory type: SurveillanceCamera - - uid: 24533 + - uid: 24619 components: - rot: 1.5707963267948966 rad pos: 50.5,14.5 @@ -168331,7 +169584,7 @@ entities: nameSet: True id: open prison north west type: SurveillanceCamera - - uid: 24534 + - uid: 24620 components: - rot: -1.5707963267948966 rad pos: 56.5,10.5 @@ -168342,7 +169595,7 @@ entities: nameSet: True id: open prison south type: SurveillanceCamera - - uid: 24535 + - uid: 24621 components: - rot: 1.5707963267948966 rad pos: 42.5,9.5 @@ -168353,7 +169606,7 @@ entities: nameSet: True id: brig south type: SurveillanceCamera - - uid: 24536 + - uid: 24622 components: - rot: 3.141592653589793 rad pos: 33.5,16.5 @@ -168364,7 +169617,7 @@ entities: nameSet: True id: brig type: SurveillanceCamera - - uid: 24537 + - uid: 24623 components: - rot: 1.5707963267948966 rad pos: 32.5,31.5 @@ -168375,7 +169628,7 @@ entities: nameSet: True id: armory type: SurveillanceCamera - - uid: 24538 + - uid: 24624 components: - rot: 3.141592653589793 rad pos: 8.5,17.5 @@ -168386,7 +169639,7 @@ entities: nameSet: True id: security canteen type: SurveillanceCamera - - uid: 24539 + - uid: 24625 components: - rot: -1.5707963267948966 rad pos: 17.5,-11.5 @@ -168399,7 +169652,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraService entities: - - uid: 24540 + - uid: 24626 components: - rot: 1.5707963267948966 rad pos: 12.5,-6.5 @@ -168410,7 +169663,7 @@ entities: nameSet: True id: library type: SurveillanceCamera - - uid: 24542 + - uid: 24627 components: - rot: 1.5707963267948966 rad pos: 6.5,6.5 @@ -168421,7 +169674,7 @@ entities: nameSet: True id: Kitchen type: SurveillanceCamera - - uid: 24543 + - uid: 24628 components: - rot: 1.5707963267948966 rad pos: 14.5,8.5 @@ -168432,7 +169685,7 @@ entities: nameSet: True id: bar type: SurveillanceCamera - - uid: 24544 + - uid: 24629 components: - rot: 1.5707963267948966 rad pos: -6.5,9.5 @@ -168445,7 +169698,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraSupply entities: - - uid: 24545 + - uid: 24630 components: - pos: -43.5,18.5 parent: 2 @@ -168455,7 +169708,7 @@ entities: nameSet: True id: cargo dock type: SurveillanceCamera - - uid: 24546 + - uid: 24631 components: - rot: 1.5707963267948966 rad pos: -30.5,22.5 @@ -168466,7 +169719,7 @@ entities: nameSet: True id: cargo type: SurveillanceCamera - - uid: 24547 + - uid: 24632 components: - pos: -43.5,28.5 parent: 2 @@ -168476,7 +169729,7 @@ entities: nameSet: True id: salvage magnet type: SurveillanceCamera - - uid: 24548 + - uid: 24633 components: - rot: 3.141592653589793 rad pos: -44.5,16.5 @@ -168489,14 +169742,14 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraWirelessRouterEntertainment entities: - - uid: 24549 + - uid: 24634 components: - pos: -27.5,12.5 parent: 2 type: Transform - proto: SurveillanceWirelessCameraAnchoredConstructed entities: - - uid: 24550 + - uid: 24635 components: - rot: 3.141592653589793 rad pos: -26.5,13.5 @@ -168507,7 +169760,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceWirelessCameraMovableEntertainment entities: - - uid: 24551 + - uid: 24636 components: - pos: -24.5,13.5 parent: 2 @@ -168517,7 +169770,7 @@ entities: nameSet: True id: news camera type: SurveillanceCamera - - uid: 24552 + - uid: 24637 components: - rot: -1.5707963267948966 rad pos: 29.5,3.5 @@ -168525,2237 +169778,2254 @@ entities: type: Transform - proto: SynthesizerInstrument entities: - - uid: 24553 + - uid: 24638 components: - pos: -10.500677,-5.723185 parent: 2 type: Transform - proto: Syringe entities: - - uid: 24554 + - uid: 24639 components: - pos: -25.497284,-79.35806 parent: 2 type: Transform - proto: Table entities: - - uid: 21338 + - uid: 24640 components: - pos: -37.5,-18.5 parent: 2 type: Transform - - uid: 24555 + - uid: 24641 components: - rot: -1.5707963267948966 rad pos: -66.5,-34.5 parent: 2 type: Transform - - uid: 24556 + - uid: 24642 components: - rot: -1.5707963267948966 rad pos: -67.5,-34.5 parent: 2 type: Transform - - uid: 24557 + - uid: 24643 components: - pos: -25.5,-52.5 parent: 2 type: Transform - - uid: 24558 + - uid: 24644 components: - rot: 3.141592653589793 rad pos: -37.5,-7.5 parent: 2 type: Transform - - uid: 24559 + - uid: 24645 components: - rot: 3.141592653589793 rad pos: -36.5,-7.5 parent: 2 type: Transform - - uid: 24561 + - uid: 24646 components: - rot: 1.5707963267948966 rad pos: 2.5,7.5 parent: 2 type: Transform - - uid: 24562 + - uid: 24647 components: - pos: 4.5,15.5 parent: 2 type: Transform - - uid: 24563 + - uid: 24648 components: - rot: 3.141592653589793 rad pos: 18.5,11.5 parent: 2 type: Transform - - uid: 24564 + - uid: 24649 components: - rot: 3.141592653589793 rad pos: 18.5,13.5 parent: 2 type: Transform - - uid: 24565 + - uid: 24650 components: - pos: 7.5,-46.5 parent: 2 type: Transform - - uid: 24566 + - uid: 24651 components: - pos: -25.5,-78.5 parent: 2 type: Transform - - uid: 24567 + - uid: 24652 components: - pos: -19.5,-85.5 parent: 2 type: Transform - - uid: 24569 + - uid: 24653 components: - rot: 1.5707963267948966 rad pos: 2.5,6.5 parent: 2 type: Transform - - uid: 24570 + - uid: 24654 components: - rot: 3.141592653589793 rad pos: 4.5,-50.5 parent: 2 type: Transform - - uid: 24574 + - uid: 24655 components: - rot: -1.5707963267948966 rad pos: 6.5,12.5 parent: 2 type: Transform - - uid: 24575 + - uid: 24656 components: - pos: 10.5,-56.5 parent: 2 type: Transform - - uid: 24576 + - uid: 24657 components: - pos: -28.5,21.5 parent: 2 type: Transform - - uid: 24577 + - uid: 24658 components: - rot: 3.141592653589793 rad pos: 73.5,-38.5 parent: 2 type: Transform - - uid: 24578 + - uid: 24659 components: - rot: 1.5707963267948966 rad pos: 4.5,6.5 parent: 2 type: Transform - - uid: 24579 + - uid: 24660 components: - pos: 3.5,-45.5 parent: 2 type: Transform - - uid: 24580 + - uid: 24661 components: - rot: 3.141592653589793 rad pos: 18.5,12.5 parent: 2 type: Transform - - uid: 24583 + - uid: 24662 components: - rot: -1.5707963267948966 rad pos: -12.5,-56.5 parent: 2 type: Transform - - uid: 24584 + - uid: 24663 components: - rot: -1.5707963267948966 rad pos: -9.5,-56.5 parent: 2 type: Transform - - uid: 24585 + - uid: 24664 components: - rot: -1.5707963267948966 rad pos: -6.5,-56.5 parent: 2 type: Transform - - uid: 24586 + - uid: 24665 components: - rot: -1.5707963267948966 rad pos: -3.5,-56.5 parent: 2 type: Transform - - uid: 24587 + - uid: 24666 components: - rot: -1.5707963267948966 rad pos: -0.5,-56.5 parent: 2 type: Transform - - uid: 24588 + - uid: 24667 components: - rot: -1.5707963267948966 rad pos: 2.5,-56.5 parent: 2 type: Transform - - uid: 24589 + - uid: 24668 components: - rot: 3.141592653589793 rad pos: 64.5,-36.5 parent: 2 type: Transform - - uid: 24590 + - uid: 24669 components: - pos: 10.5,-58.5 parent: 2 type: Transform - - uid: 24591 + - uid: 24670 components: - pos: 10.5,-59.5 parent: 2 type: Transform - - uid: 24592 + - uid: 24671 components: - pos: 10.5,-61.5 parent: 2 type: Transform - - uid: 24593 + - uid: 24672 components: - pos: 10.5,-62.5 parent: 2 type: Transform - - uid: 24594 + - uid: 24673 components: - pos: 9.5,-62.5 parent: 2 type: Transform - - uid: 24595 + - uid: 24674 components: - pos: 8.5,-62.5 parent: 2 type: Transform - - uid: 24596 + - uid: 24675 components: - pos: -13.5,-21.5 parent: 2 type: Transform - - uid: 24597 + - uid: 24676 components: - pos: -13.5,-23.5 parent: 2 type: Transform - - uid: 24598 + - uid: 24677 components: - pos: -12.5,-19.5 parent: 2 type: Transform - - uid: 24599 + - uid: 24678 components: - pos: 3.5,-47.5 parent: 2 type: Transform - - uid: 24600 + - uid: 24679 components: - pos: 8.5,13.5 parent: 2 type: Transform - - uid: 24601 + - uid: 24680 components: - pos: 7.5,12.5 parent: 2 type: Transform - - uid: 24602 + - uid: 24681 components: - pos: -22.5,-78.5 parent: 2 type: Transform - - uid: 24603 + - uid: 24682 components: - pos: -20.5,-78.5 parent: 2 type: Transform - - uid: 24605 + - uid: 24683 components: - rot: 1.5707963267948966 rad pos: 3.5,7.5 parent: 2 type: Transform - - uid: 24606 + - uid: 24684 components: - rot: 1.5707963267948966 rad pos: 3.5,6.5 parent: 2 type: Transform - - uid: 24607 + - uid: 24685 components: - pos: 10.5,-60.5 parent: 2 type: Transform - - uid: 24608 + - uid: 24686 components: - rot: -1.5707963267948966 rad pos: 8.5,14.5 parent: 2 type: Transform - - uid: 24609 + - uid: 24687 components: - pos: 56.5,-41.5 parent: 2 type: Transform - - uid: 24610 + - uid: 24688 components: - pos: -25.5,-79.5 parent: 2 type: Transform - - uid: 24611 + - uid: 24689 components: - pos: -26.5,-20.5 parent: 2 type: Transform - - uid: 24612 + - uid: 24690 components: - pos: 5.5,15.5 parent: 2 type: Transform - - uid: 24613 + - uid: 24691 components: - pos: -62.5,-28.5 parent: 2 type: Transform - - uid: 24614 + - uid: 24692 components: - pos: -43.5,35.5 parent: 2 type: Transform - - uid: 24615 + - uid: 24693 components: - pos: -22.5,-76.5 parent: 2 type: Transform - - uid: 24616 + - uid: 24694 components: - pos: -20.5,-77.5 parent: 2 type: Transform - - uid: 24617 + - uid: 24695 components: - pos: -6.5,-73.5 parent: 2 type: Transform - - uid: 24618 + - uid: 24696 components: - pos: 9.5,-56.5 parent: 2 type: Transform - - uid: 24619 + - uid: 24697 components: - pos: -23.5,-71.5 parent: 2 type: Transform - - uid: 24620 + - uid: 24698 components: - pos: -11.5,-67.5 parent: 2 type: Transform - - uid: 24621 + - uid: 24699 components: - pos: -24.5,-71.5 parent: 2 type: Transform - - uid: 24622 + - uid: 24700 components: - pos: -22.5,-71.5 parent: 2 type: Transform - - uid: 24623 + - uid: 24701 components: - pos: -22.5,-70.5 parent: 2 type: Transform - - uid: 24624 + - uid: 24702 components: - pos: -13.5,-22.5 parent: 2 type: Transform - - uid: 24625 + - uid: 24703 components: - pos: -22.5,-69.5 parent: 2 type: Transform - - uid: 24626 + - uid: 24704 components: - pos: -30.5,-69.5 parent: 2 type: Transform - - uid: 24627 + - uid: 24705 components: - rot: 3.141592653589793 rad pos: -31.5,-69.5 parent: 2 type: Transform - - uid: 24628 + - uid: 24706 components: - pos: -8.5,-15.5 parent: 2 type: Transform - - uid: 24629 + - uid: 24707 components: - pos: 15.5,-64.5 parent: 2 type: Transform - - uid: 24630 + - uid: 24708 components: - pos: 16.5,-64.5 parent: 2 type: Transform - - uid: 24631 + - uid: 24709 components: - rot: 1.5707963267948966 rad pos: 4.5,7.5 parent: 2 type: Transform - - uid: 24632 + - uid: 24710 components: - rot: 3.141592653589793 rad pos: 18.5,11.5 parent: 2 type: Transform - - uid: 24633 + - uid: 24711 components: - pos: 8.5,12.5 parent: 2 type: Transform - - uid: 24634 + - uid: 24712 components: - pos: 9.5,-58.5 parent: 2 type: Transform - - uid: 24635 + - uid: 24713 components: - pos: -7.5,-15.5 parent: 2 type: Transform - - uid: 24636 + - uid: 24714 components: - pos: -19.5,-87.5 parent: 2 type: Transform - - uid: 24637 + - uid: 24715 components: - pos: -19.5,-84.5 parent: 2 type: Transform - - uid: 24638 + - uid: 24716 components: - pos: -26.5,-86.5 parent: 2 type: Transform - - uid: 24639 + - uid: 24717 components: - pos: -26.5,-84.5 parent: 2 type: Transform - - uid: 24640 + - uid: 24718 components: - pos: -25.5,-84.5 parent: 2 type: Transform - - uid: 24641 + - uid: 24719 components: - pos: -24.5,-84.5 parent: 2 type: Transform - - uid: 24642 + - uid: 24720 components: - pos: 12.5,20.5 parent: 2 type: Transform - - uid: 24643 + - uid: 24721 components: - pos: 12.5,19.5 parent: 2 type: Transform - - uid: 24644 + - uid: 24722 components: - pos: 12.5,21.5 parent: 2 type: Transform - - uid: 24645 + - uid: 24723 components: - pos: -10.5,-32.5 parent: 2 type: Transform - - uid: 24646 + - uid: 24724 components: - pos: -9.5,-32.5 parent: 2 type: Transform - - uid: 24647 + - uid: 24725 components: - pos: -8.5,-32.5 parent: 2 type: Transform - - uid: 24648 + - uid: 24726 components: - pos: -8.5,-33.5 parent: 2 type: Transform - - uid: 24649 + - uid: 24727 components: - rot: 3.141592653589793 rad pos: 17.5,22.5 parent: 2 type: Transform - - uid: 24650 + - uid: 24728 components: - pos: 17.5,21.5 parent: 2 type: Transform - - uid: 24651 + - uid: 24729 components: - pos: 16.5,21.5 parent: 2 type: Transform - - uid: 24652 + - uid: 24730 components: - pos: 15.5,21.5 parent: 2 type: Transform - - uid: 24653 + - uid: 24731 components: - rot: 3.141592653589793 rad pos: 15.5,22.5 parent: 2 type: Transform - - uid: 24654 + - uid: 24732 components: - rot: 3.141592653589793 rad pos: 16.5,22.5 parent: 2 type: Transform - - uid: 24655 + - uid: 24733 components: - pos: -9.5,-15.5 parent: 2 type: Transform - - uid: 24656 + - uid: 24734 components: - pos: 53.5,35.5 parent: 2 type: Transform - - uid: 24657 + - uid: 24735 components: - pos: 54.5,35.5 parent: 2 type: Transform - - uid: 24658 + - uid: 24736 components: - rot: 1.5707963267948966 rad pos: 54.5,18.5 parent: 2 type: Transform - - uid: 24659 + - uid: 24737 components: - rot: 1.5707963267948966 rad pos: 53.5,18.5 parent: 2 type: Transform - - uid: 24660 + - uid: 24738 components: - rot: 1.5707963267948966 rad pos: 52.5,18.5 parent: 2 type: Transform - - uid: 24661 + - uid: 24739 components: - pos: 45.5,8.5 parent: 2 type: Transform - - uid: 24662 + - uid: 24740 components: - pos: 62.5,18.5 parent: 2 type: Transform - - uid: 24663 + - uid: 24741 components: - pos: 62.5,15.5 parent: 2 type: Transform - - uid: 24664 + - uid: 24742 components: - pos: 59.5,24.5 parent: 2 type: Transform - - uid: 24665 + - uid: 24743 components: - pos: 47.5,24.5 parent: 2 type: Transform - - uid: 24666 + - uid: 24744 components: - pos: 53.5,24.5 parent: 2 type: Transform - - uid: 24667 + - uid: 24745 components: - pos: 50.5,24.5 parent: 2 type: Transform - - uid: 24668 + - uid: 24746 components: - pos: 56.5,24.5 parent: 2 type: Transform - - uid: 24669 + - uid: 24747 components: - pos: 48.5,18.5 parent: 2 type: Transform - - uid: 24670 + - uid: 24748 components: - pos: 57.5,20.5 parent: 2 type: Transform - - uid: 24671 + - uid: 24749 components: - pos: 57.5,19.5 parent: 2 type: Transform - - uid: 24672 + - uid: 24750 components: - pos: 58.5,19.5 parent: 2 type: Transform - - uid: 24673 + - uid: 24751 components: - pos: 51.5,7.5 parent: 2 type: Transform - - uid: 24674 + - uid: 24752 components: - pos: 52.5,7.5 parent: 2 type: Transform - - uid: 24675 + - uid: 24753 components: - pos: 52.5,6.5 parent: 2 type: Transform - - uid: 24676 + - uid: 24754 components: - pos: 51.5,6.5 parent: 2 type: Transform - - uid: 24677 + - uid: 24755 components: - rot: 3.141592653589793 rad pos: 52.5,11.5 parent: 2 type: Transform - - uid: 24678 + - uid: 24756 components: - pos: 58.5,20.5 parent: 2 type: Transform - - uid: 24679 + - uid: 24757 components: - rot: -1.5707963267948966 rad pos: 47.5,4.5 parent: 2 type: Transform - - uid: 24680 + - uid: 24758 components: - rot: -1.5707963267948966 rad pos: 65.5,-6.5 parent: 2 type: Transform - - uid: 24681 + - uid: 24759 components: - pos: 41.5,-39.5 parent: 2 type: Transform - - uid: 24682 + - uid: 24760 components: - pos: 40.5,-39.5 parent: 2 type: Transform - - uid: 24683 + - uid: 24761 components: - pos: 39.5,-39.5 parent: 2 type: Transform - - uid: 24684 + - uid: 24762 components: - pos: 38.5,-39.5 parent: 2 type: Transform - - uid: 24685 + - uid: 24763 components: - pos: 38.5,-38.5 parent: 2 type: Transform - - uid: 24686 + - uid: 24764 components: - pos: 38.5,-37.5 parent: 2 type: Transform - - uid: 24687 + - uid: 24765 components: - pos: 53.5,-40.5 parent: 2 type: Transform - - uid: 24688 + - uid: 24766 components: - pos: 52.5,-40.5 parent: 2 type: Transform - - uid: 24689 + - uid: 24767 components: - pos: 51.5,-40.5 parent: 2 type: Transform - - uid: 24690 + - uid: 24768 components: - pos: 51.5,-41.5 parent: 2 type: Transform - - uid: 24691 + - uid: 24769 components: - pos: 51.5,-42.5 parent: 2 type: Transform - - uid: 24692 + - uid: 24770 components: - pos: 51.5,-43.5 parent: 2 type: Transform - - uid: 24693 + - uid: 24771 components: - pos: 53.5,-43.5 parent: 2 type: Transform - - uid: 24694 + - uid: 24772 components: - rot: -1.5707963267948966 rad pos: 52.5,-43.5 parent: 2 type: Transform - - uid: 24695 + - uid: 24773 components: - rot: 3.141592653589793 rad pos: 77.5,-46.5 parent: 2 type: Transform - - uid: 24696 + - uid: 24774 components: - pos: 38.5,-36.5 parent: 2 type: Transform - - uid: 24697 + - uid: 24775 components: - pos: 42.5,-35.5 parent: 2 type: Transform - - uid: 24698 + - uid: 24776 components: - pos: 41.5,-35.5 parent: 2 type: Transform - - uid: 24699 + - uid: 24777 components: - pos: 46.5,-49.5 parent: 2 type: Transform - - uid: 24700 + - uid: 24778 components: - pos: 45.5,-49.5 parent: 2 type: Transform - - uid: 24701 + - uid: 24779 components: - pos: 44.5,-49.5 parent: 2 type: Transform - - uid: 24702 + - uid: 24780 components: - pos: 43.5,-49.5 parent: 2 type: Transform - - uid: 24703 + - uid: 24781 components: - pos: 42.5,-49.5 parent: 2 type: Transform - - uid: 24704 + - uid: 24782 components: - pos: 42.5,-48.5 parent: 2 type: Transform - - uid: 24705 + - uid: 24783 components: - pos: 71.5,-43.5 parent: 2 type: Transform - - uid: 24706 + - uid: 24784 components: - pos: 73.5,-44.5 parent: 2 type: Transform - - uid: 24707 + - uid: 24785 components: - rot: -1.5707963267948966 rad pos: 73.5,-47.5 parent: 2 type: Transform - - uid: 24708 + - uid: 24786 components: - pos: 69.5,-49.5 parent: 2 type: Transform - - uid: 24709 + - uid: 24787 components: - rot: -1.5707963267948966 rad pos: 69.5,-47.5 parent: 2 type: Transform - - uid: 24710 + - uid: 24788 components: - pos: 73.5,-43.5 parent: 2 type: Transform - - uid: 24711 + - uid: 24789 components: - pos: 72.5,-43.5 parent: 2 type: Transform - - uid: 24712 + - uid: 24790 components: - pos: -11.5,-48.5 parent: 2 type: Transform - - uid: 24713 + - uid: 24791 components: - pos: -11.5,-49.5 parent: 2 type: Transform - - uid: 24714 + - uid: 24792 components: - pos: -11.5,-50.5 parent: 2 type: Transform - - uid: 24715 + - uid: 24793 components: - pos: -12.5,-50.5 parent: 2 type: Transform - - uid: 24716 + - uid: 24794 components: - pos: 53.5,-51.5 parent: 2 type: Transform - - uid: 24717 + - uid: 24795 components: - pos: 53.5,-52.5 parent: 2 type: Transform - - uid: 24718 + - uid: 24796 components: - pos: 53.5,-53.5 parent: 2 type: Transform - - uid: 24719 + - uid: 24797 components: - rot: 3.141592653589793 rad pos: -24.5,-19.5 parent: 2 type: Transform - - uid: 24720 + - uid: 24798 components: - rot: 3.141592653589793 rad pos: -25.5,-19.5 parent: 2 type: Transform - - uid: 24721 + - uid: 24799 components: - pos: -22.5,-20.5 parent: 2 type: Transform - - uid: 24722 + - uid: 24800 components: - rot: 1.5707963267948966 rad pos: -23.5,-24.5 parent: 2 type: Transform - - uid: 24723 + - uid: 24801 components: - rot: 1.5707963267948966 rad pos: -24.5,-24.5 parent: 2 type: Transform - - uid: 24724 + - uid: 24802 components: - rot: 1.5707963267948966 rad pos: -25.5,-24.5 parent: 2 type: Transform - - uid: 24725 + - uid: 24803 components: - pos: -26.5,-19.5 parent: 2 type: Transform - - uid: 24726 + - uid: 24804 components: - pos: 30.5,-61.5 parent: 2 type: Transform - - uid: 24727 + - uid: 24805 components: - pos: 31.5,-61.5 parent: 2 type: Transform - - uid: 24728 + - uid: 24806 components: - pos: 40.5,-53.5 parent: 2 type: Transform - - uid: 24729 + - uid: 24807 components: - pos: 41.5,-53.5 parent: 2 type: Transform - - uid: 24730 + - uid: 24808 components: - pos: 41.5,-54.5 parent: 2 type: Transform - - uid: 24731 + - uid: 24809 components: - pos: 41.5,-55.5 parent: 2 type: Transform - - uid: 24732 + - uid: 24810 components: - rot: 3.141592653589793 rad pos: 26.5,-68.5 parent: 2 type: Transform - - uid: 24734 + - uid: 24811 components: - pos: -34.5,-13.5 parent: 2 type: Transform - - uid: 24735 + - uid: 24812 components: - pos: -35.5,-13.5 parent: 2 type: Transform - - uid: 24736 + - uid: 24813 components: - pos: -36.5,-8.5 parent: 2 type: Transform - - uid: 24737 + - uid: 24814 components: - pos: -34.5,-12.5 parent: 2 type: Transform - - uid: 24738 + - uid: 24815 components: - pos: -39.5,-16.5 parent: 2 type: Transform - - uid: 24739 + - uid: 24816 components: - pos: -39.5,-17.5 parent: 2 type: Transform - - uid: 24740 + - uid: 24817 components: - pos: -39.5,-18.5 parent: 2 type: Transform - - uid: 24741 + - uid: 24818 components: - pos: -40.5,-18.5 parent: 2 type: Transform - - uid: 24742 + - uid: 24819 components: - pos: -42.5,-18.5 parent: 2 type: Transform - - uid: 24743 + - uid: 24820 components: - pos: -42.5,-17.5 parent: 2 type: Transform - - uid: 24744 + - uid: 24821 components: - pos: -42.5,-16.5 parent: 2 type: Transform - - uid: 24745 + - uid: 24822 components: - rot: 1.5707963267948966 rad pos: -12.5,-5.5 parent: 2 type: Transform - - uid: 24746 + - uid: 24823 components: - pos: -30.5,-37.5 parent: 2 type: Transform - - uid: 24747 + - uid: 24824 components: - rot: 3.141592653589793 rad pos: -52.5,-13.5 parent: 2 type: Transform - - uid: 24748 + - uid: 24825 components: - pos: -57.5,-30.5 parent: 2 type: Transform - - uid: 24749 + - uid: 24826 components: - pos: -62.5,-27.5 parent: 2 type: Transform - - uid: 24750 + - uid: 24827 components: - pos: -35.5,-46.5 parent: 2 type: Transform - - uid: 24751 + - uid: 24828 components: - pos: -35.5,-47.5 parent: 2 type: Transform - - uid: 24752 + - uid: 24829 components: - pos: -35.5,-48.5 parent: 2 type: Transform - - uid: 24753 + - uid: 24830 components: - pos: -35.5,-49.5 parent: 2 type: Transform - - uid: 24754 + - uid: 24831 components: - pos: -35.5,-50.5 parent: 2 type: Transform - - uid: 24755 + - uid: 24832 components: - pos: -52.5,-15.5 parent: 2 type: Transform - - uid: 24756 + - uid: 24833 components: - pos: -52.5,-14.5 parent: 2 type: Transform - - uid: 24757 + - uid: 24834 components: - pos: -52.5,-12.5 parent: 2 type: Transform - - uid: 24758 + - uid: 24835 components: - pos: -70.5,-25.5 parent: 2 type: Transform - - uid: 24759 + - uid: 24836 components: - pos: -70.5,-26.5 parent: 2 type: Transform - - uid: 24760 + - uid: 24837 components: - pos: -71.5,-26.5 parent: 2 type: Transform - - uid: 24761 + - uid: 24838 components: - rot: 3.141592653589793 rad pos: 20.5,-45.5 parent: 2 type: Transform - - uid: 24762 + - uid: 24839 components: - pos: -28.5,-52.5 parent: 2 type: Transform - - uid: 24763 + - uid: 24840 components: - pos: -27.5,-52.5 parent: 2 type: Transform - - uid: 24765 + - uid: 24841 components: - pos: -24.5,-52.5 parent: 2 type: Transform - - uid: 24766 + - uid: 24842 components: - pos: -38.5,-27.5 parent: 2 type: Transform - - uid: 24767 + - uid: 24843 components: - pos: -43.5,-27.5 parent: 2 type: Transform - - uid: 24768 + - uid: 24844 components: - pos: -54.5,-38.5 parent: 2 type: Transform - - uid: 24769 + - uid: 24845 components: - pos: -54.5,-39.5 parent: 2 type: Transform - - uid: 24770 + - uid: 24846 components: - pos: -55.5,-39.5 parent: 2 type: Transform - - uid: 24771 + - uid: 24847 components: - pos: -57.5,-35.5 parent: 2 type: Transform - - uid: 24772 + - uid: 24848 components: - pos: -56.5,-35.5 parent: 2 type: Transform - - uid: 24773 + - uid: 24849 components: - pos: -22.5,-33.5 parent: 2 type: Transform - - uid: 24774 + - uid: 24850 components: - pos: 38.5,-55.5 parent: 2 type: Transform - - uid: 24775 + - uid: 24851 components: - pos: 38.5,-56.5 parent: 2 type: Transform - - uid: 24776 + - uid: 24852 components: - pos: -34.5,17.5 parent: 2 type: Transform - - uid: 24777 + - uid: 24853 components: - pos: -27.5,24.5 parent: 2 type: Transform - - uid: 24778 + - uid: 24854 components: - pos: -22.5,17.5 parent: 2 type: Transform - - uid: 24779 + - uid: 24855 components: - pos: -39.5,25.5 parent: 2 type: Transform - - uid: 24780 + - uid: 24856 components: - pos: -40.5,25.5 parent: 2 type: Transform - - uid: 24781 + - uid: 24857 components: - pos: -43.5,25.5 parent: 2 type: Transform - - uid: 24782 + - uid: 24858 components: - rot: 1.5707963267948966 rad pos: 33.5,-14.5 parent: 2 type: Transform - - uid: 24783 + - uid: 24859 components: - pos: -3.5,31.5 parent: 2 type: Transform - - uid: 24784 + - uid: 24860 components: - pos: -3.5,30.5 parent: 2 type: Transform - - uid: 24785 + - uid: 24861 components: - pos: 2.5,23.5 parent: 2 type: Transform - - uid: 24786 + - uid: 24862 components: - pos: 1.5,23.5 parent: 2 type: Transform - - uid: 24787 + - uid: 24863 components: - pos: -33.5,17.5 parent: 2 type: Transform - - uid: 24788 + - uid: 24864 components: - pos: -32.5,17.5 parent: 2 type: Transform - - uid: 24789 + - uid: 24865 components: - pos: -34.5,26.5 parent: 2 type: Transform - - uid: 24790 + - uid: 24866 components: - pos: -33.5,29.5 parent: 2 type: Transform - - uid: 24791 + - uid: 24867 components: - rot: -1.5707963267948966 rad pos: -38.5,18.5 parent: 2 type: Transform - - uid: 24792 + - uid: 24868 components: - pos: -32.5,29.5 parent: 2 type: Transform - - uid: 24793 + - uid: 24869 components: - pos: -31.5,29.5 parent: 2 type: Transform - - uid: 24794 + - uid: 24870 components: - rot: -1.5707963267948966 rad pos: -37.5,18.5 parent: 2 type: Transform - - uid: 24795 + - uid: 24871 components: - pos: -42.5,35.5 parent: 2 type: Transform - - uid: 24796 + - uid: 24872 components: - pos: -41.5,35.5 parent: 2 type: Transform - - uid: 24797 + - uid: 24873 components: - pos: -40.5,35.5 parent: 2 type: Transform - - uid: 24798 + - uid: 24874 components: - pos: -40.5,34.5 parent: 2 type: Transform - - uid: 24799 + - uid: 24875 components: - pos: -40.5,33.5 parent: 2 type: Transform - - uid: 24800 + - uid: 24876 components: - pos: -40.5,32.5 parent: 2 type: Transform - - uid: 24801 + - uid: 24877 components: - pos: -38.5,28.5 parent: 2 type: Transform - - uid: 24802 + - uid: 24878 components: - pos: -38.5,27.5 parent: 2 type: Transform - - uid: 24803 + - uid: 24879 components: - pos: -37.5,27.5 parent: 2 type: Transform - - uid: 24804 + - uid: 24880 components: - pos: -36.5,27.5 parent: 2 type: Transform - - uid: 24805 + - uid: 24881 components: - rot: 3.141592653589793 rad pos: -22.5,11.5 parent: 2 type: Transform - - uid: 24806 + - uid: 24882 components: - rot: 3.141592653589793 rad pos: -23.5,11.5 parent: 2 type: Transform - - uid: 24807 + - uid: 24883 components: - rot: 3.141592653589793 rad pos: -24.5,11.5 parent: 2 type: Transform - - uid: 24808 + - uid: 24884 components: - pos: -15.5,23.5 parent: 2 type: Transform - - uid: 24809 + - uid: 24885 components: - pos: -16.5,21.5 parent: 2 type: Transform - - uid: 24810 + - uid: 24886 components: - pos: -16.5,20.5 parent: 2 type: Transform - - uid: 24811 + - uid: 24887 components: - pos: -15.5,21.5 parent: 2 type: Transform - - uid: 24812 + - uid: 24888 components: - pos: -48.5,26.5 parent: 2 type: Transform - - uid: 24813 + - uid: 24889 components: - pos: -47.5,26.5 parent: 2 type: Transform - - uid: 24814 + - uid: 24890 components: - pos: -28.5,8.5 parent: 2 type: Transform - - uid: 24815 + - uid: 24891 components: - pos: -29.5,8.5 parent: 2 type: Transform - - uid: 24816 + - uid: 24892 components: - pos: -54.5,0.5 parent: 2 type: Transform - - uid: 24817 + - uid: 24893 components: - pos: 54.5,12.5 parent: 2 type: Transform - - uid: 24818 + - uid: 24894 components: - pos: -25.5,-67.5 parent: 2 type: Transform - - uid: 24819 + - uid: 24895 components: - rot: 1.5707963267948966 rad pos: -12.5,-6.5 parent: 2 type: Transform - - uid: 24820 + - uid: 24896 components: - pos: -34.5,20.5 parent: 2 type: Transform - - uid: 24821 + - uid: 24897 components: - rot: -1.5707963267948966 rad pos: 2.5,-65.5 parent: 2 type: Transform - - uid: 24822 + - uid: 24898 components: - pos: -58.5,-27.5 parent: 2 type: Transform - - uid: 24823 + - uid: 24899 components: - pos: -57.5,-27.5 parent: 2 type: Transform - - uid: 24824 + - uid: 24900 components: - pos: -56.5,-27.5 parent: 2 type: Transform - - uid: 24825 + - uid: 24901 components: - pos: 7.5,-45.5 parent: 2 type: Transform - - uid: 24826 + - uid: 24902 components: - rot: 3.141592653589793 rad pos: 34.5,-35.5 parent: 2 type: Transform - - uid: 24827 + - uid: 24903 components: - pos: 41.5,-58.5 parent: 2 type: Transform - - uid: 24828 + - uid: 24904 components: - pos: 77.5,-47.5 parent: 2 type: Transform - - uid: 24829 + - uid: 24905 components: - rot: 1.5707963267948966 rad pos: -9.5,-65.5 parent: 2 type: Transform - - uid: 24830 + - uid: 24906 components: - pos: -2.5,-33.5 parent: 2 type: Transform - - uid: 24831 + - uid: 24907 components: - pos: 11.5,-66.5 parent: 2 type: Transform - - uid: 24832 + - uid: 24908 components: - pos: 12.5,-66.5 parent: 2 type: Transform - - uid: 24833 + - uid: 24909 components: - pos: 7.5,-16.5 parent: 2 type: Transform - - uid: 24834 + - uid: 24910 components: - pos: -7.5,-30.5 parent: 2 type: Transform - - uid: 24835 - components: - - pos: 18.5,-30.5 - parent: 2 - type: Transform - - uid: 24836 + - uid: 24911 components: - rot: 3.141592653589793 rad pos: -29.5,-69.5 parent: 2 type: Transform - - uid: 24837 + - uid: 24912 components: - pos: 53.5,60.5 parent: 2 type: Transform - - uid: 24838 + - uid: 24913 components: - pos: 54.5,60.5 parent: 2 type: Transform - - uid: 24839 + - uid: 24914 components: - pos: 55.5,60.5 parent: 2 type: Transform - - uid: 24840 + - uid: 24915 components: - pos: 57.5,42.5 parent: 2 type: Transform - - uid: 24841 + - uid: 24916 components: - pos: 56.5,42.5 parent: 2 type: Transform - - uid: 24842 + - uid: 24917 components: - pos: 55.5,42.5 parent: 2 type: Transform - - uid: 24843 + - uid: 24918 components: - pos: 50.5,42.5 parent: 2 type: Transform - - uid: 24844 + - uid: 24919 components: - pos: 58.5,52.5 parent: 2 type: Transform - - uid: 24845 + - uid: 24920 components: - pos: 58.5,51.5 parent: 2 type: Transform - - uid: 24846 + - uid: 24921 components: - pos: -8.5,39.5 parent: 2 type: Transform - - uid: 24847 + - uid: 24922 components: - pos: -8.5,38.5 parent: 2 type: Transform - - uid: 24848 + - uid: 24923 components: - pos: -8.5,37.5 parent: 2 type: Transform - - uid: 24849 + - uid: 24924 components: - pos: -9.5,39.5 parent: 2 type: Transform - - uid: 24850 + - uid: 24925 components: - pos: -9.5,37.5 parent: 2 type: Transform - - uid: 24851 + - uid: 24926 components: - rot: 3.141592653589793 rad pos: 67.5,8.5 parent: 2 type: Transform - - uid: 24852 + - uid: 24927 components: - pos: -22.5,45.5 parent: 2 type: Transform - - uid: 24853 + - uid: 24928 components: - pos: -22.5,44.5 parent: 2 type: Transform - - uid: 24854 + - uid: 24929 components: - pos: -22.5,43.5 parent: 2 type: Transform - - uid: 24855 + - uid: 24930 components: - pos: 64.5,29.5 parent: 2 type: Transform - - uid: 24856 + - uid: 24931 components: - pos: 64.5,28.5 parent: 2 type: Transform - - uid: 24857 + - uid: 24932 components: - pos: -0.5,-77.5 parent: 2 type: Transform - - uid: 24858 + - uid: 24933 components: - pos: 72.5,36.5 parent: 2 type: Transform - - uid: 24859 + - uid: 24934 components: - pos: 73.5,36.5 parent: 2 type: Transform - - uid: 24860 + - uid: 24935 components: - pos: 71.5,36.5 parent: 2 type: Transform - - uid: 24861 + - uid: 24936 components: - rot: -1.5707963267948966 rad pos: -11.5,37.5 parent: 2 type: Transform - - uid: 24862 + - uid: 24937 components: - rot: -1.5707963267948966 rad pos: -12.5,37.5 parent: 2 type: Transform - - uid: 24863 + - uid: 24938 components: - rot: 3.141592653589793 rad pos: 37.5,51.5 parent: 2 type: Transform - - uid: 24864 + - uid: 24939 components: - rot: 3.141592653589793 rad pos: 38.5,51.5 parent: 2 type: Transform - - uid: 24865 + - uid: 24940 components: - pos: -2.5,43.5 parent: 2 type: Transform - - uid: 24866 + - uid: 24941 components: - rot: 1.5707963267948966 rad pos: -9.5,41.5 parent: 2 type: Transform - - uid: 24867 + - uid: 24942 components: - rot: 1.5707963267948966 rad pos: -8.5,41.5 parent: 2 type: Transform - - uid: 24868 + - uid: 24943 components: - pos: -10.5,41.5 parent: 2 type: Transform - - uid: 24869 + - uid: 24944 components: - pos: -20.5,47.5 parent: 2 type: Transform - - uid: 24870 + - uid: 24945 components: - pos: -21.5,47.5 parent: 2 type: Transform - - uid: 24871 + - uid: 24946 components: - pos: -16.5,24.5 parent: 2 type: Transform - - uid: 24872 + - uid: 24947 components: - pos: -16.5,23.5 parent: 2 type: Transform - - uid: 24873 + - uid: 24948 components: - pos: 30.5,47.5 parent: 2 type: Transform - - uid: 24874 + - uid: 24949 components: - pos: 30.5,46.5 parent: 2 type: Transform - - uid: 24875 + - uid: 24950 components: - rot: 3.141592653589793 rad pos: -55.5,-48.5 parent: 2 type: Transform - - uid: 24876 + - uid: 24951 components: - rot: 3.141592653589793 rad pos: -55.5,-49.5 parent: 2 type: Transform - - uid: 24877 + - uid: 24952 components: - pos: -22.5,-100.5 parent: 2 type: Transform - - uid: 24878 + - uid: 24953 components: - pos: -14.5,-96.5 parent: 2 type: Transform - - uid: 24879 + - uid: 24954 components: - pos: -15.5,-96.5 parent: 2 type: Transform - - uid: 24880 + - uid: 24955 components: - pos: -30.5,-98.5 parent: 2 type: Transform - - uid: 24881 + - uid: 24956 components: - pos: -29.5,-98.5 parent: 2 type: Transform - - uid: 24882 + - uid: 24957 components: - pos: -21.5,-100.5 parent: 2 type: Transform - - uid: 24883 + - uid: 24958 components: - pos: -23.5,-100.5 parent: 2 type: Transform - - uid: 24884 + - uid: 24959 components: - pos: -10.5,-83.5 parent: 2 type: Transform - - uid: 24885 + - uid: 24960 components: - pos: -4.5,-85.5 parent: 2 type: Transform - - uid: 24886 + - uid: 24961 components: - pos: -12.5,-84.5 parent: 2 type: Transform - - uid: 24887 + - uid: 24962 components: - pos: -13.5,-88.5 parent: 2 type: Transform - - uid: 24888 + - uid: 24963 components: - pos: -38.5,-97.5 parent: 2 type: Transform - - uid: 24889 + - uid: 24964 components: - pos: -38.5,-98.5 parent: 2 type: Transform - - uid: 24890 + - uid: 24965 components: - rot: 3.141592653589793 rad pos: -70.5,-28.5 parent: 2 type: Transform - - uid: 24891 + - uid: 24966 components: - rot: 3.141592653589793 rad pos: -71.5,-28.5 parent: 2 type: Transform - - uid: 24892 + - uid: 24967 components: - pos: 69.5,-48.5 parent: 2 type: Transform - - uid: 24893 + - uid: 24968 components: - pos: 77.5,-44.5 parent: 2 type: Transform - - uid: 24894 + - uid: 24969 components: - pos: 77.5,-43.5 parent: 2 type: Transform - - uid: 24895 + - uid: 24970 components: - pos: 76.5,-43.5 parent: 2 type: Transform - - uid: 24896 + - uid: 24971 components: - pos: 73.5,-49.5 parent: 2 type: Transform - - uid: 24897 + - uid: 24972 components: - pos: 73.5,-48.5 parent: 2 type: Transform - - uid: 24898 + - uid: 24973 components: - rot: -1.5707963267948966 rad pos: 22.5,-47.5 parent: 2 type: Transform - - uid: 24899 + - uid: 24974 components: - rot: 3.141592653589793 rad pos: 6.5,-57.5 parent: 2 type: Transform - - uid: 24900 + - uid: 24975 components: - rot: 1.5707963267948966 rad pos: -16.5,-21.5 parent: 2 type: Transform - - uid: 24901 + - uid: 24976 components: - rot: -1.5707963267948966 rad pos: -15.5,-23.5 parent: 2 type: Transform - - uid: 24902 + - uid: 24977 components: - pos: 53.5,-67.5 parent: 2 type: Transform - - uid: 24903 + - uid: 24978 components: - rot: 3.141592653589793 rad pos: 63.5,-36.5 parent: 2 type: Transform - - uid: 24904 + - uid: 24979 components: - pos: 59.5,-29.5 parent: 2 type: Transform - - uid: 24905 + - uid: 24980 components: - pos: 53.5,-65.5 parent: 2 type: Transform - - uid: 24906 + - uid: 24981 components: - rot: 3.141592653589793 rad pos: 58.5,-37.5 parent: 2 type: Transform - - uid: 24907 + - uid: 24982 components: - rot: 3.141592653589793 rad pos: 57.5,-37.5 parent: 2 type: Transform - - uid: 24908 + - uid: 24983 components: - rot: 3.141592653589793 rad pos: 53.5,-28.5 parent: 2 type: Transform - - uid: 24909 + - uid: 24984 components: - rot: 3.141592653589793 rad pos: 54.5,-28.5 parent: 2 type: Transform - - uid: 24910 + - uid: 24985 components: - rot: 3.141592653589793 rad pos: 70.5,-65.5 parent: 2 type: Transform - - uid: 24911 + - uid: 24986 components: - rot: 3.141592653589793 rad pos: 70.5,-66.5 parent: 2 type: Transform - - uid: 24912 + - uid: 24987 components: - rot: 3.141592653589793 rad pos: 69.5,-66.5 parent: 2 type: Transform - - uid: 24913 + - uid: 24988 components: - rot: 3.141592653589793 rad pos: 43.5,-62.5 parent: 2 type: Transform - - uid: 24914 + - uid: 24989 components: - pos: 67.5,-64.5 parent: 2 type: Transform - - uid: 24915 + - uid: 24990 components: - pos: 67.5,-65.5 parent: 2 type: Transform - - uid: 24916 + - uid: 24991 components: - pos: 45.5,-63.5 parent: 2 type: Transform - - uid: 24917 + - uid: 24992 components: - pos: 46.5,-63.5 parent: 2 type: Transform - - uid: 24918 + - uid: 24993 components: - pos: 39.5,-35.5 parent: 2 type: Transform - - uid: 24919 + - uid: 24994 components: - pos: 38.5,-35.5 parent: 2 type: Transform - - uid: 24920 + - uid: 24995 components: - pos: -37.5,-8.5 parent: 2 type: Transform - - uid: 24921 + - uid: 24996 components: - rot: 3.141592653589793 rad pos: -25.5,-6.5 parent: 2 type: Transform - - uid: 24922 + - uid: 24997 components: - rot: -1.5707963267948966 rad pos: -36.5,18.5 parent: 2 type: Transform - - uid: 24923 + - uid: 24998 components: - pos: -12.5,-18.5 parent: 2 type: Transform - - uid: 24924 + - uid: 24999 components: - rot: -1.5707963267948966 rad pos: -26.5,-6.5 parent: 2 type: Transform - - uid: 24925 + - uid: 25000 components: - pos: -26.5,-61.5 parent: 2 type: Transform - - uid: 24926 + - uid: 25001 components: - pos: -22.5,-57.5 parent: 2 type: Transform - - uid: 24927 + - uid: 25002 components: - pos: -22.5,-58.5 parent: 2 type: Transform - - uid: 24928 + - uid: 25003 components: - pos: -26.5,-59.5 parent: 2 type: Transform - - uid: 24929 + - uid: 25004 components: - rot: -1.5707963267948966 rad pos: 7.5,-47.5 parent: 2 type: Transform - - uid: 24930 + - uid: 25005 components: - rot: 3.141592653589793 rad pos: 25.5,-68.5 parent: 2 type: Transform - - uid: 24931 + - uid: 25006 components: - rot: 3.141592653589793 rad pos: 50.5,-72.5 parent: 2 type: Transform - - uid: 24932 + - uid: 25007 components: - rot: -1.5707963267948966 rad pos: 4.5,-75.5 parent: 2 type: Transform - - uid: 24933 + - uid: 25008 components: - rot: -1.5707963267948966 rad pos: 3.5,-75.5 parent: 2 type: Transform - - uid: 24934 + - uid: 25009 components: - rot: -1.5707963267948966 rad pos: 2.5,-75.5 parent: 2 type: Transform - - uid: 24935 + - uid: 25010 components: - rot: 1.5707963267948966 rad pos: -47.5,38.5 parent: 2 type: Transform - - uid: 24936 + - uid: 25011 components: - rot: 1.5707963267948966 rad pos: -47.5,39.5 parent: 2 type: Transform - - uid: 24937 + - uid: 25012 components: - rot: 1.5707963267948966 rad pos: -47.5,40.5 parent: 2 type: Transform - - uid: 24938 + - uid: 25013 components: - pos: -2.5,10.5 parent: 2 type: Transform - - uid: 24939 + - uid: 25014 components: - pos: -72.5,-39.5 parent: 2 type: Transform - - uid: 24940 + - uid: 25015 components: - pos: -73.5,-39.5 parent: 2 type: Transform - - uid: 24941 + - uid: 25016 components: - rot: -1.5707963267948966 rad pos: -66.5,-43.5 parent: 2 type: Transform - - uid: 24942 + - uid: 25017 components: - rot: -1.5707963267948966 rad pos: -64.5,-34.5 parent: 2 type: Transform - - uid: 24943 + - uid: 25018 components: - rot: -1.5707963267948966 rad pos: -65.5,-34.5 parent: 2 type: Transform + - uid: 25019 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-34.5 + parent: 2 + type: Transform + - uid: 25020 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-35.5 + parent: 2 + type: Transform + - uid: 25021 + components: + - pos: -0.5,-8.5 + parent: 2 + type: Transform + - uid: 25022 + components: + - pos: 5.5,-13.5 + parent: 2 + type: Transform - proto: TableCarpet entities: - - uid: 21345 + - uid: 25023 components: - pos: 23.5,-35.5 parent: 2 type: Transform - - uid: 24944 + - uid: 25024 components: - rot: -1.5707963267948966 rad pos: 10.5,-7.5 parent: 2 type: Transform - - uid: 24945 + - uid: 25025 components: - rot: -1.5707963267948966 rad pos: 10.5,-6.5 parent: 2 type: Transform - - uid: 24946 + - uid: 25026 components: - rot: -1.5707963267948966 rad pos: 9.5,-7.5 parent: 2 type: Transform - - uid: 24947 + - uid: 25027 components: - rot: -1.5707963267948966 rad pos: 9.5,-6.5 parent: 2 type: Transform - - uid: 24948 + - uid: 25028 components: - pos: -24.5,34.5 parent: 2 type: Transform - - uid: 24949 + - uid: 25029 components: - rot: 3.141592653589793 rad pos: -1.5,31.5 parent: 2 type: Transform - - uid: 24950 + - uid: 25030 components: - rot: 3.141592653589793 rad pos: -0.5,31.5 parent: 2 type: Transform - - uid: 24951 + - uid: 25031 components: - rot: 3.141592653589793 rad pos: -0.5,30.5 parent: 2 type: Transform - - uid: 24952 + - uid: 25032 components: - rot: 3.141592653589793 rad pos: -1.5,30.5 parent: 2 type: Transform - - uid: 24953 + - uid: 25033 components: - pos: 53.5,29.5 parent: 2 type: Transform - - uid: 24954 + - uid: 25034 components: - pos: 53.5,28.5 parent: 2 type: Transform - - uid: 24955 + - uid: 25035 components: - pos: 54.5,29.5 parent: 2 type: Transform - - uid: 24956 + - uid: 25036 components: - pos: 54.5,28.5 parent: 2 type: Transform - - uid: 24957 + - uid: 25037 components: - pos: 8.5,32.5 parent: 2 type: Transform - - uid: 24958 + - uid: 25038 components: - rot: 3.141592653589793 rad pos: -18.5,62.5 parent: 2 type: Transform - - uid: 24959 + - uid: 25039 components: - rot: 3.141592653589793 rad pos: -18.5,61.5 parent: 2 type: Transform - - uid: 24960 + - uid: 25040 components: - rot: 3.141592653589793 rad pos: -17.5,62.5 parent: 2 type: Transform - - uid: 24961 + - uid: 25041 components: - rot: 3.141592653589793 rad pos: -17.5,61.5 parent: 2 type: Transform - - uid: 24962 + - uid: 25042 components: - rot: 3.141592653589793 rad pos: -16.5,62.5 parent: 2 type: Transform - - uid: 24963 + - uid: 25043 components: - rot: 3.141592653589793 rad pos: -16.5,61.5 parent: 2 type: Transform - - uid: 24964 + - uid: 25044 components: - pos: 37.5,45.5 parent: 2 type: Transform - - uid: 24965 + - uid: 25045 components: - pos: 38.5,45.5 parent: 2 type: Transform - - uid: 24966 + - uid: 25046 components: - pos: 38.5,46.5 parent: 2 type: Transform - - uid: 24967 + - uid: 25047 components: - pos: 37.5,46.5 parent: 2 type: Transform - proto: TableCounterMetal entities: - - uid: 15928 + - uid: 25048 components: - pos: 32.5,30.5 parent: 2 type: Transform - - uid: 23739 + - uid: 25049 components: - pos: 32.5,29.5 parent: 2 type: Transform - - uid: 24968 + - uid: 25050 components: - pos: 0.5,-67.5 parent: 2 type: Transform - - uid: 24969 + - uid: 25051 components: - pos: -3.5,5.5 parent: 2 type: Transform - - uid: 24970 + - uid: 25052 components: - pos: 0.5,-64.5 parent: 2 type: Transform - - uid: 24971 + - uid: 25053 components: - pos: 0.5,-65.5 parent: 2 type: Transform - - uid: 24972 + - uid: 25054 components: - pos: 0.5,-66.5 parent: 2 type: Transform - - uid: 24973 + - uid: 25055 components: - pos: -3.5,-64.5 parent: 2 type: Transform - - uid: 24974 + - uid: 25056 components: - pos: -3.5,-65.5 parent: 2 type: Transform - - uid: 24975 + - uid: 25057 components: - pos: -3.5,-66.5 parent: 2 type: Transform - - uid: 24976 + - uid: 25058 components: - pos: -16.5,-77.5 parent: 2 type: Transform - - uid: 24977 + - uid: 25059 components: - pos: -4.5,5.5 parent: 2 type: Transform - - uid: 24978 + - uid: 25060 components: - pos: 4.5,11.5 parent: 2 type: Transform - - uid: 24979 + - uid: 25061 components: - pos: 5.5,11.5 parent: 2 type: Transform - - uid: 24980 + - uid: 25062 components: - pos: 0.5,-63.5 parent: 2 type: Transform - - uid: 24981 + - uid: 25063 components: - rot: 1.5707963267948966 rad pos: -21.5,-34.5 @@ -170763,79 +172033,69 @@ entities: type: Transform - proto: TableCounterWood entities: - - uid: 10060 + - uid: 25064 components: - pos: 3.5,-35.5 parent: 2 type: Transform - - uid: 15705 - components: - - pos: 23.5,-37.5 - parent: 2 - type: Transform - - uid: 19910 - components: - - pos: 22.5,-37.5 - parent: 2 - type: Transform - - uid: 24982 + - uid: 25065 components: - rot: -1.5707963267948966 rad pos: 37.5,-5.5 parent: 2 type: Transform - - uid: 24983 + - uid: 25066 components: - pos: 18.5,15.5 parent: 2 type: Transform - - uid: 24984 + - uid: 25067 components: - pos: 17.5,15.5 parent: 2 type: Transform - - uid: 24985 + - uid: 25068 components: - rot: -1.5707963267948966 rad pos: 37.5,-4.5 parent: 2 type: Transform - - uid: 24986 + - uid: 25069 components: - rot: -1.5707963267948966 rad pos: 37.5,-3.5 parent: 2 type: Transform - - uid: 24987 + - uid: 25070 components: - rot: -1.5707963267948966 rad pos: 37.5,-2.5 parent: 2 type: Transform - - uid: 24988 + - uid: 25071 components: - rot: -1.5707963267948966 rad pos: 38.5,-2.5 parent: 2 type: Transform - - uid: 24989 + - uid: 25072 components: - rot: -1.5707963267948966 rad pos: 39.5,-2.5 parent: 2 type: Transform - - uid: 24990 + - uid: 25073 components: - pos: 57.5,32.5 parent: 2 type: Transform - - uid: 24991 + - uid: 25074 components: - rot: 3.141592653589793 rad pos: -10.5,-95.5 parent: 2 type: Transform - - uid: 24992 + - uid: 25075 components: - rot: 3.141592653589793 rad pos: -9.5,-95.5 @@ -170843,64 +172103,64 @@ entities: type: Transform - proto: TableFrame entities: - - uid: 24993 + - uid: 25076 components: - pos: -25.5,-99.5 parent: 2 type: Transform - - uid: 24994 + - uid: 25077 components: - pos: -33.5,-98.5 parent: 2 type: Transform - - uid: 24995 + - uid: 25078 components: - pos: -34.5,-98.5 parent: 2 type: Transform - proto: TableGlass entities: - - uid: 24996 + - uid: 25079 components: - rot: -1.5707963267948966 rad pos: 30.5,4.5 parent: 2 type: Transform - - uid: 24997 + - uid: 25080 components: - rot: -1.5707963267948966 rad pos: 29.5,4.5 parent: 2 type: Transform - - uid: 24998 + - uid: 25081 components: - pos: -25.5,55.5 parent: 2 type: Transform - - uid: 24999 + - uid: 25082 components: - rot: 1.5707963267948966 rad pos: 63.5,-33.5 parent: 2 type: Transform - - uid: 25000 + - uid: 25083 components: - rot: 1.5707963267948966 rad pos: 62.5,-33.5 parent: 2 type: Transform - - uid: 25001 + - uid: 25084 components: - pos: 15.5,-79.5 parent: 2 type: Transform - - uid: 25002 + - uid: 25085 components: - rot: -1.5707963267948966 rad pos: 15.5,-87.5 parent: 2 type: Transform - - uid: 25003 + - uid: 25086 components: - rot: 3.141592653589793 rad pos: 26.5,-81.5 @@ -170908,1775 +172168,1840 @@ entities: type: Transform - proto: TableReinforced entities: - - uid: 5719 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-37.5 - parent: 2 - type: Transform - - uid: 10106 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-38.5 - parent: 2 - type: Transform - - uid: 14154 - components: - - pos: -0.5,-2.5 - parent: 2 - type: Transform - - uid: 21346 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-39.5 - parent: 2 - type: Transform - - uid: 25004 + - uid: 25087 components: - rot: 3.141592653589793 rad pos: -14.5,-35.5 parent: 2 type: Transform - - uid: 25005 + - uid: 25088 components: - rot: 3.141592653589793 rad pos: 48.5,-30.5 parent: 2 type: Transform - - uid: 25006 + - uid: 25089 components: - pos: 2.5,4.5 parent: 2 type: Transform - - uid: 25007 + - uid: 25090 components: - pos: -8.5,4.5 parent: 2 type: Transform - - uid: 25009 + - uid: 25091 components: - rot: -1.5707963267948966 rad pos: 45.5,-26.5 parent: 2 type: Transform - - uid: 25010 + - uid: 25092 components: - pos: 26.5,32.5 parent: 2 type: Transform - - uid: 25011 + - uid: 25093 components: - pos: -6.5,4.5 parent: 2 type: Transform - - uid: 25012 + - uid: 25094 components: - pos: -28.5,-9.5 parent: 2 type: Transform - - uid: 25013 + - uid: 25095 components: - pos: 1.5,-48.5 parent: 2 type: Transform - - uid: 25014 + - uid: 25096 components: - rot: 1.5707963267948966 rad pos: 25.5,19.5 parent: 2 type: Transform - - uid: 25015 + - uid: 25097 components: - rot: 3.141592653589793 rad pos: 26.5,-21.5 parent: 2 type: Transform - - uid: 25016 + - uid: 25098 components: - pos: 37.5,49.5 parent: 2 type: Transform - - uid: 25017 + - uid: 25099 components: - rot: 3.141592653589793 rad pos: 48.5,-21.5 parent: 2 type: Transform - - uid: 25018 + - uid: 25100 components: - pos: 27.5,32.5 parent: 2 type: Transform - - uid: 25019 + - uid: 25101 components: - rot: -1.5707963267948966 rad pos: 32.5,-22.5 parent: 2 type: Transform - - uid: 25020 + - uid: 25102 components: - rot: 3.141592653589793 rad pos: 47.5,-30.5 parent: 2 type: Transform - - uid: 25021 + - uid: 25103 components: - rot: -1.5707963267948966 rad pos: 36.5,19.5 parent: 2 type: Transform - - uid: 25022 + - uid: 25104 components: - pos: -23.5,-87.5 parent: 2 type: Transform - - uid: 25023 + - uid: 25105 components: - pos: -7.5,4.5 parent: 2 type: Transform - - uid: 25024 + - uid: 25106 components: - rot: 1.5707963267948966 rad pos: 21.5,-44.5 parent: 2 type: Transform - - uid: 25026 + - uid: 25107 components: - pos: 0.5,4.5 parent: 2 type: Transform - - uid: 25028 + - uid: 25108 components: - rot: 1.5707963267948966 rad pos: 24.5,19.5 parent: 2 type: Transform - - uid: 25029 + - uid: 25109 components: - rot: -1.5707963267948966 rad pos: 32.5,-20.5 parent: 2 type: Transform - - uid: 25030 + - uid: 25110 components: - rot: -1.5707963267948966 rad pos: 31.5,-20.5 parent: 2 type: Transform - - uid: 25031 + - uid: 25111 components: - rot: -1.5707963267948966 rad pos: 32.5,-21.5 parent: 2 type: Transform - - uid: 25032 + - uid: 25112 components: - rot: -1.5707963267948966 rad pos: 32.5,-22.5 parent: 2 type: Transform - - uid: 25033 + - uid: 25113 components: - rot: -1.5707963267948966 rad pos: 19.5,-20.5 parent: 2 type: Transform - - uid: 25034 + - uid: 25114 components: - rot: -1.5707963267948966 rad pos: 18.5,-20.5 parent: 2 type: Transform - - uid: 25035 + - uid: 25115 components: - rot: -1.5707963267948966 rad pos: 18.5,-21.5 parent: 2 type: Transform - - uid: 25037 + - uid: 25116 components: - pos: 7.5,7.5 parent: 2 type: Transform - - uid: 25038 + - uid: 25117 components: - rot: 1.5707963267948966 rad pos: 22.5,-21.5 parent: 2 type: Transform - - uid: 25039 + - uid: 25118 components: - pos: 1.5,-46.5 parent: 2 type: Transform - - uid: 25040 + - uid: 25119 components: - pos: 28.5,32.5 parent: 2 type: Transform - - uid: 25041 + - uid: 25120 components: - pos: 30.5,32.5 parent: 2 type: Transform - - uid: 25042 + - uid: 25121 components: - pos: 31.5,32.5 parent: 2 type: Transform - - uid: 25043 + - uid: 25122 components: - pos: 18.5,-22.5 parent: 2 type: Transform - - uid: 25044 + - uid: 25123 components: - pos: 1.5,4.5 parent: 2 type: Transform - - uid: 25045 + - uid: 25124 components: - rot: 3.141592653589793 rad pos: 48.5,-28.5 parent: 2 type: Transform - - uid: 25046 + - uid: 25125 components: - rot: 1.5707963267948966 rad pos: 26.5,19.5 parent: 2 type: Transform - - uid: 25047 + - uid: 25126 components: - rot: -1.5707963267948966 rad pos: -26.5,-12.5 parent: 2 type: Transform - - uid: 25048 + - uid: 25127 components: - pos: 47.5,49.5 parent: 2 type: Transform - - uid: 25050 + - uid: 25128 components: - pos: 7.5,8.5 parent: 2 type: Transform - - uid: 25051 + - uid: 25129 components: - pos: 39.5,49.5 parent: 2 type: Transform - - uid: 25052 + - uid: 25130 components: - pos: 38.5,49.5 parent: 2 type: Transform - - uid: 25053 + - uid: 25131 components: - rot: 3.141592653589793 rad pos: 48.5,-22.5 parent: 2 type: Transform - - uid: 25054 + - uid: 25132 components: - rot: 3.141592653589793 rad pos: 48.5,-24.5 parent: 2 type: Transform - - uid: 25055 + - uid: 25133 components: - pos: 36.5,49.5 parent: 2 type: Transform - - uid: 25056 + - uid: 25134 components: - rot: 3.141592653589793 rad pos: 48.5,-29.5 parent: 2 type: Transform - - uid: 25057 + - uid: 25135 components: - rot: 3.141592653589793 rad pos: 47.5,-27.5 parent: 2 type: Transform - - uid: 25058 + - uid: 25136 components: - rot: 3.141592653589793 rad pos: 47.5,-21.5 parent: 2 type: Transform - - uid: 25059 + - uid: 25137 components: - pos: 32.5,32.5 parent: 2 type: Transform - - uid: 25061 + - uid: 25138 components: - rot: 3.141592653589793 rad pos: 3.5,-51.5 parent: 2 type: Transform - - uid: 25062 + - uid: 25139 components: - rot: 3.141592653589793 rad pos: 28.5,-21.5 parent: 2 type: Transform - - uid: 25063 + - uid: 25140 components: - pos: 7.5,9.5 parent: 2 type: Transform - - uid: 25064 + - uid: 25141 components: - rot: 3.141592653589793 rad pos: 48.5,-23.5 parent: 2 type: Transform - - uid: 25065 + - uid: 25142 components: - rot: 3.141592653589793 rad pos: 48.5,-27.5 parent: 2 type: Transform - - uid: 25066 + - uid: 25143 components: - pos: -34.5,23.5 parent: 2 type: Transform - - uid: 25067 + - uid: 25144 components: - rot: 3.141592653589793 rad pos: 24.5,-21.5 parent: 2 type: Transform - - uid: 25068 + - uid: 25145 components: - rot: -1.5707963267948966 rad pos: 44.5,-26.5 parent: 2 type: Transform - - uid: 25069 + - uid: 25146 components: - rot: -1.5707963267948966 rad pos: 47.5,-25.5 parent: 2 type: Transform - - uid: 25070 + - uid: 25147 components: - rot: -1.5707963267948966 rad pos: 48.5,-25.5 parent: 2 type: Transform - - uid: 25071 + - uid: 25148 components: - pos: -22.5,-87.5 parent: 2 type: Transform - - uid: 25072 + - uid: 25149 components: - pos: 24.5,23.5 parent: 2 type: Transform - - uid: 25073 + - uid: 25150 components: - pos: 22.5,23.5 parent: 2 type: Transform - - uid: 25074 + - uid: 25151 components: - pos: 25.5,23.5 parent: 2 type: Transform - - uid: 25075 + - uid: 25152 components: - pos: 23.5,23.5 parent: 2 type: Transform - - uid: 25076 + - uid: 25153 components: - pos: -11.5,43.5 parent: 2 type: Transform - - uid: 25077 + - uid: 25154 components: - rot: 1.5707963267948966 rad pos: -9.5,43.5 parent: 2 type: Transform - - uid: 25078 + - uid: 25155 components: - rot: 1.5707963267948966 rad pos: 48.5,6.5 parent: 2 type: Transform - - uid: 25079 + - uid: 25156 components: - rot: -1.5707963267948966 rad pos: 36.5,17.5 parent: 2 type: Transform - - uid: 25080 + - uid: 25157 components: - pos: -17.5,-22.5 parent: 2 type: Transform - - uid: 25081 + - uid: 25158 components: - pos: -17.5,-23.5 parent: 2 type: Transform - - uid: 25082 + - uid: 25159 components: - pos: 42.5,-40.5 parent: 2 type: Transform - - uid: 25083 + - uid: 25160 components: - pos: 43.5,-40.5 parent: 2 type: Transform - - uid: 25084 + - uid: 25161 components: - pos: -27.5,-9.5 parent: 2 type: Transform - - uid: 25085 + - uid: 25162 components: - pos: -22.5,-8.5 parent: 2 type: Transform - - uid: 25086 + - uid: 25163 components: - pos: -23.5,-8.5 parent: 2 type: Transform - - uid: 25087 + - uid: 25164 components: - pos: -27.5,-10.5 parent: 2 type: Transform - - uid: 25088 + - uid: 25165 components: - pos: -27.5,-11.5 parent: 2 type: Transform - - uid: 25089 + - uid: 25166 components: - pos: 57.5,-47.5 parent: 2 type: Transform - - uid: 25090 + - uid: 25167 components: - rot: 1.5707963267948966 rad pos: 22.5,-44.5 parent: 2 type: Transform - - uid: 25091 + - uid: 25168 components: - pos: -25.5,-35.5 parent: 2 type: Transform - - uid: 25092 + - uid: 25169 components: - pos: -25.5,-36.5 parent: 2 type: Transform - - uid: 25093 + - uid: 25170 components: - pos: -24.5,-36.5 parent: 2 type: Transform - - uid: 25094 + - uid: 25171 components: - pos: -23.5,-36.5 parent: 2 type: Transform - - uid: 25095 + - uid: 25172 components: - pos: -36.5,-33.5 parent: 2 type: Transform - - uid: 25096 + - uid: 25173 components: - pos: -36.5,-32.5 parent: 2 type: Transform - - uid: 25097 + - uid: 25174 components: - pos: -37.5,-32.5 parent: 2 type: Transform - - uid: 25098 + - uid: 25175 components: - pos: -38.5,-32.5 parent: 2 type: Transform - - uid: 25099 + - uid: 25176 components: - pos: -39.5,-32.5 parent: 2 type: Transform - - uid: 25100 + - uid: 25177 components: - pos: -58.5,-25.5 parent: 2 type: Transform - - uid: 25101 + - uid: 25178 components: - pos: -57.5,-25.5 parent: 2 type: Transform - - uid: 25102 + - uid: 25179 components: - pos: -56.5,-25.5 parent: 2 type: Transform - - uid: 25103 + - uid: 25180 components: - pos: -55.5,-25.5 parent: 2 type: Transform - - uid: 25104 + - uid: 25181 components: - pos: -54.5,-25.5 parent: 2 type: Transform - - uid: 25105 + - uid: 25182 components: - pos: -15.5,12.5 parent: 2 type: Transform - - uid: 25106 + - uid: 25183 components: - rot: -1.5707963267948966 rad pos: -52.5,-88.5 parent: 2 type: Transform - - uid: 25107 + - uid: 25184 components: - rot: -1.5707963267948966 rad pos: -52.5,-86.5 parent: 2 type: Transform - - uid: 25108 + - uid: 25185 components: - rot: -1.5707963267948966 rad pos: -17.5,25.5 parent: 2 type: Transform - - uid: 25109 + - uid: 25186 components: - rot: 3.141592653589793 rad pos: -26.5,22.5 parent: 2 type: Transform - - uid: 25110 + - uid: 25187 components: - pos: 17.5,32.5 parent: 2 type: Transform - - uid: 25111 + - uid: 25188 components: - pos: 17.5,31.5 parent: 2 type: Transform - - uid: 25112 + - uid: 25189 components: - pos: -34.5,24.5 parent: 2 type: Transform - - uid: 25113 + - uid: 25190 components: - pos: -14.5,12.5 parent: 2 type: Transform - - uid: 25114 + - uid: 25191 components: - pos: -13.5,12.5 parent: 2 type: Transform - - uid: 25115 + - uid: 25192 components: - pos: -16.5,12.5 parent: 2 type: Transform - - uid: 25116 + - uid: 25193 components: - pos: -10.5,-61.5 parent: 2 type: Transform - - uid: 25117 + - uid: 25194 components: - pos: 0.5,-61.5 parent: 2 type: Transform - - uid: 25118 + - uid: 25195 components: - pos: -0.5,-61.5 parent: 2 type: Transform - - uid: 25119 + - uid: 25196 components: - pos: -11.5,-61.5 parent: 2 type: Transform - - uid: 25120 + - uid: 25197 components: - pos: -16.5,-61.5 parent: 2 type: Transform - - uid: 25121 + - uid: 25198 components: - pos: -17.5,-61.5 parent: 2 type: Transform - - uid: 25122 + - uid: 25199 components: - rot: 3.141592653589793 rad pos: -15.5,-35.5 parent: 2 type: Transform - - uid: 25123 + - uid: 25200 components: - rot: 3.141592653589793 rad pos: -16.5,-35.5 parent: 2 type: Transform - - uid: 25125 + - uid: 25201 components: - rot: 1.5707963267948966 rad pos: -10.5,43.5 parent: 2 type: Transform - - uid: 25126 + - uid: 25202 components: - pos: -20.5,49.5 parent: 2 type: Transform - - uid: 25127 + - uid: 25203 components: - rot: 3.141592653589793 rad pos: -15.5,65.5 parent: 2 type: Transform - - uid: 25128 + - uid: 25204 components: - rot: 3.141592653589793 rad pos: -16.5,65.5 parent: 2 type: Transform - - uid: 25129 + - uid: 25205 components: - pos: -21.5,49.5 parent: 2 type: Transform - - uid: 25130 + - uid: 25206 components: - rot: 3.141592653589793 rad pos: -19.5,43.5 parent: 2 type: Transform - - uid: 25131 + - uid: 25207 components: - rot: 3.141592653589793 rad pos: -19.5,41.5 parent: 2 type: Transform - - uid: 25132 + - uid: 25208 components: - rot: 3.141592653589793 rad pos: -19.5,42.5 parent: 2 type: Transform - - uid: 25133 + - uid: 25209 components: - pos: 48.5,50.5 parent: 2 type: Transform - - uid: 25134 + - uid: 25210 components: - pos: 47.5,50.5 parent: 2 type: Transform - - uid: 25135 + - uid: 25211 components: - pos: 46.5,49.5 parent: 2 type: Transform - - uid: 25136 + - uid: 25212 components: - pos: 45.5,49.5 parent: 2 type: Transform - - uid: 25137 + - uid: 25213 components: - rot: 3.141592653589793 rad pos: -9.5,-100.5 parent: 2 type: Transform - - uid: 25138 + - uid: 25214 components: - rot: 1.5707963267948966 rad pos: 55.5,-67.5 parent: 2 type: Transform - - uid: 25139 + - uid: 25215 components: - pos: 29.5,32.5 parent: 2 type: Transform - - uid: 25140 + - uid: 25216 components: - pos: 65.5,-28.5 parent: 2 type: Transform - - uid: 25141 + - uid: 25217 components: - pos: 65.5,-29.5 parent: 2 type: Transform - - uid: 25142 + - uid: 25218 components: - pos: -7.5,14.5 parent: 2 type: Transform - - uid: 25143 + - uid: 25219 components: - pos: -8.5,14.5 parent: 2 type: Transform + - uid: 25220 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 2 + type: Transform - proto: TableReinforcedGlass entities: - - uid: 25144 + - uid: 25221 components: - pos: -30.5,-77.5 parent: 2 type: Transform - - uid: 25145 + - uid: 25222 components: - pos: -30.5,-79.5 parent: 2 type: Transform - proto: TableWood entities: - - uid: 786 + - uid: 25223 components: - - rot: 3.141592653589793 rad - pos: 2.5,-10.5 + - pos: -1.5,-6.5 parent: 2 type: Transform - - uid: 10161 + - uid: 25224 components: - rot: -1.5707963267948966 rad - pos: 0.5,-7.5 + pos: 3.5,-9.5 parent: 2 type: Transform - - uid: 10224 + - uid: 25225 components: - rot: -1.5707963267948966 rad - pos: -1.5,-4.5 + pos: 3.5,-10.5 parent: 2 type: Transform - - uid: 14166 + - uid: 25226 components: - - pos: 4.5,-5.5 + - rot: -1.5707963267948966 rad + pos: 2.5,-19.5 parent: 2 type: Transform - - uid: 20616 + - uid: 25227 components: - - rot: 3.141592653589793 rad - pos: 22.5,-39.5 + - rot: -1.5707963267948966 rad + pos: 2.5,-21.5 parent: 2 type: Transform - - uid: 20643 + - uid: 25228 components: - - rot: 3.141592653589793 rad - pos: 3.5,-10.5 + - rot: -1.5707963267948966 rad + pos: 2.5,-20.5 parent: 2 type: Transform - - uid: 20774 + - uid: 25229 components: - - rot: 3.141592653589793 rad - pos: 3.5,-11.5 + - rot: 1.5707963267948966 rad + pos: 27.5,-37.5 parent: 2 type: Transform - - uid: 20780 + - uid: 25230 components: - - rot: 3.141592653589793 rad - pos: 2.5,-11.5 + - rot: 1.5707963267948966 rad + pos: 27.5,-35.5 parent: 2 type: Transform - - uid: 21196 + - uid: 25231 components: - - pos: -22.5,-54.5 + - rot: 1.5707963267948966 rad + pos: 21.5,-29.5 parent: 2 type: Transform - - uid: 24198 + - uid: 25232 components: - - rot: 3.141592653589793 rad - pos: 23.5,-39.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-7.5 parent: 2 type: Transform - - uid: 25146 + - uid: 25233 + components: + - pos: -22.5,-54.5 + parent: 2 + type: Transform + - uid: 25234 components: - pos: -27.5,46.5 parent: 2 type: Transform - - uid: 25147 + - uid: 25235 components: - rot: 3.141592653589793 rad pos: 5.5,20.5 parent: 2 type: Transform - - uid: 25148 + - uid: 25236 components: - pos: 22.5,10.5 parent: 2 type: Transform - - uid: 25149 + - uid: 25237 components: - pos: -19.5,-56.5 parent: 2 type: Transform - - uid: 25150 + - uid: 25238 components: - rot: -1.5707963267948966 rad pos: 9.5,-12.5 parent: 2 type: Transform - - uid: 25151 + - uid: 25239 components: - pos: 59.5,-1.5 parent: 2 type: Transform - - uid: 25152 + - uid: 25240 components: - rot: 1.5707963267948966 rad pos: 22.5,-29.5 parent: 2 type: Transform - - uid: 25154 + - uid: 25241 components: - pos: -4.5,-48.5 parent: 2 type: Transform - - uid: 25155 + - uid: 25242 components: - rot: -1.5707963267948966 rad pos: 2.5,21.5 parent: 2 type: Transform - - uid: 25156 + - uid: 25243 components: - rot: 1.5707963267948966 rad pos: 23.5,-29.5 parent: 2 type: Transform - - uid: 25157 + - uid: 25244 components: - pos: 15.5,13.5 parent: 2 type: Transform - - uid: 25159 + - uid: 25245 components: - rot: 1.5707963267948966 rad pos: 13.5,-34.5 parent: 2 type: Transform - - uid: 25160 + - uid: 25246 components: - pos: -28.5,46.5 parent: 2 type: Transform - - uid: 25161 + - uid: 25247 components: - pos: -20.5,-56.5 parent: 2 type: Transform - - uid: 25162 + - uid: 25248 components: - pos: -18.5,-56.5 parent: 2 type: Transform - - uid: 25164 + - uid: 25249 components: - rot: -1.5707963267948966 rad pos: 22.5,-28.5 parent: 2 type: Transform - - uid: 25165 + - uid: 25250 components: - pos: 15.5,10.5 parent: 2 type: Transform - - uid: 25167 + - uid: 25251 components: - pos: 15.5,9.5 parent: 2 type: Transform - - uid: 25168 + - uid: 25252 components: - pos: 15.5,12.5 parent: 2 type: Transform - - uid: 25169 + - uid: 25253 components: - pos: 20.5,-12.5 parent: 2 type: Transform - - uid: 25170 + - uid: 25254 components: - pos: 19.5,-12.5 parent: 2 type: Transform - - uid: 25171 + - uid: 25255 components: - rot: 3.141592653589793 rad pos: -3.5,52.5 parent: 2 type: Transform - - uid: 25172 + - uid: 25256 components: - rot: -1.5707963267948966 rad pos: 2.5,20.5 parent: 2 type: Transform - - uid: 25173 + - uid: 25257 components: - rot: -1.5707963267948966 rad pos: 1.5,21.5 parent: 2 type: Transform - - uid: 25174 + - uid: 25258 components: - pos: 6.5,20.5 parent: 2 type: Transform - - uid: 25175 + - uid: 25259 components: - pos: -2.5,-48.5 parent: 2 type: Transform - - uid: 25176 + - uid: 25260 components: - pos: -2.5,-49.5 parent: 2 type: Transform - - uid: 25177 + - uid: 25261 components: - pos: -5.5,-48.5 parent: 2 type: Transform - - uid: 25178 + - uid: 25262 components: - pos: -6.5,-48.5 parent: 2 type: Transform - - uid: 25179 + - uid: 25263 components: - pos: 7.5,20.5 parent: 2 type: Transform - - uid: 25180 + - uid: 25264 components: - rot: 1.5707963267948966 rad pos: 13.5,-32.5 parent: 2 type: Transform - - uid: 25181 + - uid: 25265 components: - pos: -6.5,-49.5 parent: 2 type: Transform - - uid: 25182 + - uid: 25266 components: - pos: 21.5,-12.5 parent: 2 type: Transform - - uid: 25183 + - uid: 25267 components: - pos: 22.5,-14.5 parent: 2 type: Transform - - uid: 25184 + - uid: 25268 components: - rot: -1.5707963267948966 rad pos: 8.5,-12.5 parent: 2 type: Transform - - uid: 25185 + - uid: 25269 components: - rot: 1.5707963267948966 rad pos: 2.5,0.5 parent: 2 type: Transform - - uid: 25186 + - uid: 25270 components: - rot: 1.5707963267948966 rad pos: 2.5,1.5 parent: 2 type: Transform - - uid: 25187 + - uid: 25271 components: - rot: 1.5707963267948966 rad pos: 12.5,-4.5 parent: 2 type: Transform - - uid: 25188 + - uid: 25272 components: - pos: -3.5,-48.5 parent: 2 type: Transform - - uid: 25190 + - uid: 25273 components: - pos: 15.5,11.5 parent: 2 type: Transform - - uid: 25191 + - uid: 25274 components: - pos: -1.5,17.5 parent: 2 type: Transform - - uid: 25192 + - uid: 25275 components: - pos: -28.5,44.5 parent: 2 type: Transform - - uid: 25193 + - uid: 25276 components: - rot: -1.5707963267948966 rad pos: 11.5,8.5 parent: 2 type: Transform - - uid: 25194 + - uid: 25277 components: - pos: -10.5,-5.5 parent: 2 type: Transform - - uid: 25195 + - uid: 25278 components: - pos: -28.5,45.5 parent: 2 type: Transform - - uid: 25196 + - uid: 25279 components: - pos: -10.5,-3.5 parent: 2 type: Transform - - uid: 25197 + - uid: 25280 components: - pos: -10.5,-4.5 parent: 2 type: Transform - - uid: 25198 + - uid: 25281 components: - pos: -10.5,-6.5 parent: 2 type: Transform - - uid: 25199 + - uid: 25282 components: - pos: 22.5,11.5 parent: 2 type: Transform - - uid: 25200 + - uid: 25283 components: - rot: -1.5707963267948966 rad pos: 11.5,7.5 parent: 2 type: Transform - - uid: 25201 + - uid: 25284 components: - rot: 3.141592653589793 rad pos: 12.5,11.5 parent: 2 type: Transform - - uid: 25202 + - uid: 25285 components: - rot: 3.141592653589793 rad pos: 11.5,11.5 parent: 2 type: Transform - - uid: 25203 + - uid: 25286 components: - rot: -1.5707963267948966 rad pos: -14.5,-37.5 parent: 2 type: Transform - - uid: 25204 + - uid: 25287 components: - rot: 3.141592653589793 rad pos: -9.5,-35.5 parent: 2 type: Transform - - uid: 25205 + - uid: 25288 components: - rot: 3.141592653589793 rad pos: -9.5,-36.5 parent: 2 type: Transform - - uid: 25206 + - uid: 25289 components: - rot: 3.141592653589793 rad pos: -9.5,-37.5 parent: 2 type: Transform - - uid: 25207 + - uid: 25290 components: - rot: 3.141592653589793 rad pos: -10.5,-37.5 parent: 2 type: Transform - - uid: 25208 + - uid: 25291 components: - rot: 3.141592653589793 rad pos: -11.5,-37.5 parent: 2 type: Transform - - uid: 25209 + - uid: 25292 components: - pos: -14.5,-39.5 parent: 2 type: Transform - - uid: 25210 + - uid: 25293 components: - pos: -12.5,-35.5 parent: 2 type: Transform - - uid: 25211 + - uid: 25294 components: - rot: 3.141592653589793 rad pos: 20.5,12.5 parent: 2 type: Transform - - uid: 25212 + - uid: 25295 components: - pos: 22.5,13.5 parent: 2 type: Transform - - uid: 25213 + - uid: 25296 components: - rot: 3.141592653589793 rad pos: -4.5,1.5 parent: 2 type: Transform - - uid: 25214 + - uid: 25297 components: - rot: 3.141592653589793 rad pos: -8.5,0.5 parent: 2 type: Transform - - uid: 25215 + - uid: 25298 components: - rot: 3.141592653589793 rad pos: -8.5,1.5 parent: 2 type: Transform - - uid: 25216 + - uid: 25299 components: - pos: -1.5,19.5 parent: 2 type: Transform - - uid: 25217 + - uid: 25300 components: - rot: -1.5707963267948966 rad pos: 2.5,19.5 parent: 2 type: Transform - - uid: 25218 + - uid: 25301 components: - pos: -17.5,41.5 parent: 2 type: Transform - - uid: 25219 + - uid: 25302 components: - pos: 40.5,21.5 parent: 2 type: Transform - - uid: 25220 + - uid: 25303 components: - pos: 38.5,21.5 parent: 2 type: Transform - - uid: 25221 + - uid: 25304 components: - pos: 38.5,18.5 parent: 2 type: Transform - - uid: 25222 + - uid: 25305 components: - pos: 40.5,18.5 parent: 2 type: Transform - - uid: 25223 + - uid: 25306 components: - rot: -1.5707963267948966 rad pos: 43.5,-4.5 parent: 2 type: Transform - - uid: 25224 + - uid: 25307 components: - rot: -1.5707963267948966 rad pos: 43.5,-3.5 parent: 2 type: Transform - - uid: 25225 + - uid: 25308 components: - rot: -1.5707963267948966 rad pos: 43.5,-2.5 parent: 2 type: Transform - - uid: 25226 + - uid: 25309 components: - rot: -1.5707963267948966 rad pos: 6.5,22.5 parent: 2 type: Transform - - uid: 25227 + - uid: 25310 components: - pos: 61.5,-53.5 parent: 2 type: Transform - - uid: 25228 + - uid: 25311 components: - pos: 62.5,-53.5 parent: 2 type: Transform - - uid: 25229 + - uid: 25312 components: - pos: 63.5,-53.5 parent: 2 type: Transform - - uid: 25230 + - uid: 25313 components: - pos: -16.5,-45.5 parent: 2 type: Transform - - uid: 25231 + - uid: 25314 components: - pos: -16.5,-47.5 parent: 2 type: Transform - - uid: 25232 + - uid: 25315 components: - pos: -16.5,-49.5 parent: 2 type: Transform - - uid: 25233 + - uid: 25316 components: - rot: 3.141592653589793 rad pos: 34.5,-50.5 parent: 2 type: Transform - - uid: 25234 + - uid: 25317 components: - rot: 3.141592653589793 rad pos: 33.5,-50.5 parent: 2 type: Transform - - uid: 25235 + - uid: 25318 components: - rot: 3.141592653589793 rad pos: 32.5,-50.5 parent: 2 type: Transform - - uid: 25236 + - uid: 25319 components: - rot: 3.141592653589793 rad pos: 30.5,-50.5 parent: 2 type: Transform - - uid: 25237 + - uid: 25320 components: - rot: 3.141592653589793 rad pos: 29.5,-50.5 parent: 2 type: Transform - - uid: 25238 + - uid: 25321 components: - rot: 3.141592653589793 rad pos: 28.5,-50.5 parent: 2 type: Transform - - uid: 25239 + - uid: 25322 components: - rot: 3.141592653589793 rad pos: 30.5,-48.5 parent: 2 type: Transform - - uid: 25240 + - uid: 25323 components: - rot: 3.141592653589793 rad pos: 31.5,-48.5 parent: 2 type: Transform - - uid: 25241 + - uid: 25324 components: - rot: 3.141592653589793 rad pos: 32.5,-48.5 parent: 2 type: Transform - - uid: 25242 + - uid: 25325 components: - pos: 60.5,-1.5 parent: 2 type: Transform - - uid: 25243 + - uid: 25326 components: - pos: 62.5,-1.5 parent: 2 type: Transform - - uid: 25244 + - uid: 25327 components: - pos: 61.5,-1.5 parent: 2 type: Transform - - uid: 25245 + - uid: 25328 components: - rot: 1.5707963267948966 rad pos: -35.5,-17.5 parent: 2 type: Transform - - uid: 25246 + - uid: 25329 components: - rot: 1.5707963267948966 rad pos: -35.5,-16.5 parent: 2 type: Transform - - uid: 25247 + - uid: 25330 components: - rot: 1.5707963267948966 rad pos: -35.5,-15.5 parent: 2 type: Transform - - uid: 25248 + - uid: 25331 components: - pos: 65.5,-51.5 parent: 2 type: Transform - - uid: 25249 + - uid: 25332 components: - pos: 59.5,-51.5 parent: 2 type: Transform - - uid: 25250 + - uid: 25333 components: - pos: 59.5,-52.5 parent: 2 type: Transform - - uid: 25251 + - uid: 25334 components: - pos: -39.5,-76.5 parent: 2 type: Transform - - uid: 25252 + - uid: 25335 components: - pos: -39.5,-77.5 parent: 2 type: Transform - - uid: 25253 + - uid: 25336 components: - pos: -40.5,-77.5 parent: 2 type: Transform - - uid: 25254 + - uid: 25337 components: - pos: -40.5,-78.5 parent: 2 type: Transform - - uid: 25255 + - uid: 25338 components: - pos: -41.5,-78.5 parent: 2 type: Transform - - uid: 25256 + - uid: 25339 components: - pos: -42.5,-78.5 parent: 2 type: Transform - - uid: 25257 + - uid: 25340 components: - pos: -43.5,-78.5 parent: 2 type: Transform - - uid: 25258 + - uid: 25341 components: - pos: -43.5,-77.5 parent: 2 type: Transform - - uid: 25259 + - uid: 25342 components: - pos: -44.5,-77.5 parent: 2 type: Transform - - uid: 25260 + - uid: 25343 components: - pos: -44.5,-76.5 parent: 2 type: Transform - - uid: 25261 + - uid: 25344 components: - rot: -1.5707963267948966 rad pos: -40.5,-74.5 parent: 2 type: Transform - - uid: 25262 + - uid: 25345 components: - rot: -1.5707963267948966 rad pos: -43.5,-74.5 parent: 2 type: Transform - - uid: 25263 + - uid: 25346 components: - pos: 23.5,-28.5 parent: 2 type: Transform - - uid: 25264 + - uid: 25347 components: - pos: 30.5,-28.5 parent: 2 type: Transform - - uid: 25265 + - uid: 25348 components: - pos: 30.5,-29.5 parent: 2 type: Transform - - uid: 25266 + - uid: 25349 components: - pos: 59.5,-3.5 parent: 2 type: Transform - - uid: 25267 + - uid: 25350 components: - rot: 3.141592653589793 rad pos: -27.5,14.5 parent: 2 type: Transform - - uid: 25268 + - uid: 25351 components: - rot: 3.141592653589793 rad pos: -26.5,14.5 parent: 2 type: Transform - - uid: 25269 + - uid: 25352 components: - rot: 3.141592653589793 rad pos: -36.5,16.5 parent: 2 type: Transform - - uid: 25270 + - uid: 25353 components: - rot: 3.141592653589793 rad pos: -37.5,16.5 parent: 2 type: Transform - - uid: 25271 + - uid: 25354 components: - rot: 3.141592653589793 rad pos: -38.5,16.5 parent: 2 type: Transform - - uid: 25272 + - uid: 25355 components: - rot: 3.141592653589793 rad pos: -39.5,16.5 parent: 2 type: Transform - - uid: 25273 + - uid: 25356 components: - rot: 3.141592653589793 rad pos: -31.5,15.5 parent: 2 type: Transform - - uid: 25274 + - uid: 25357 components: - rot: 3.141592653589793 rad pos: -30.5,15.5 parent: 2 type: Transform - - uid: 25275 + - uid: 25358 components: - rot: 3.141592653589793 rad pos: -29.5,15.5 parent: 2 type: Transform - - uid: 25276 + - uid: 25359 components: - rot: 1.5707963267948966 rad pos: -48.5,6.5 parent: 2 type: Transform - - uid: 25277 + - uid: 25360 components: - rot: 1.5707963267948966 rad pos: -48.5,5.5 parent: 2 type: Transform - - uid: 25278 + - uid: 25361 components: - rot: 1.5707963267948966 rad pos: -47.5,5.5 parent: 2 type: Transform - - uid: 25279 + - uid: 25362 components: - rot: 1.5707963267948966 rad pos: -47.5,6.5 parent: 2 type: Transform - - uid: 25280 + - uid: 25363 components: - pos: -52.5,13.5 parent: 2 type: Transform - - uid: 25281 + - uid: 25364 components: - pos: -42.5,8.5 parent: 2 type: Transform - - uid: 25282 + - uid: 25365 components: - pos: -51.5,8.5 parent: 2 type: Transform - - uid: 25283 + - uid: 25366 components: - pos: -17.5,42.5 parent: 2 type: Transform - - uid: 25284 + - uid: 25367 components: - pos: -14.5,47.5 parent: 2 type: Transform - - uid: 25285 + - uid: 25368 components: - pos: -16.5,42.5 parent: 2 type: Transform - - uid: 25286 + - uid: 25369 components: - pos: -16.5,41.5 parent: 2 type: Transform - - uid: 25287 + - uid: 25370 components: - rot: 3.141592653589793 rad pos: -5.5,-15.5 parent: 2 type: Transform - - uid: 25289 + - uid: 25371 components: - pos: -33.5,-67.5 parent: 2 type: Transform - - uid: 25290 + - uid: 25372 components: - rot: -1.5707963267948966 rad pos: 30.5,-27.5 parent: 2 type: Transform - - uid: 25291 + - uid: 25373 components: - pos: -31.5,-73.5 parent: 2 type: Transform - - uid: 25292 + - uid: 25374 components: - rot: 3.141592653589793 rad pos: 67.5,10.5 parent: 2 type: Transform - - uid: 25293 + - uid: 25375 components: - pos: -23.5,29.5 parent: 2 type: Transform - - uid: 25294 + - uid: 25376 components: - rot: 1.5707963267948966 rad pos: -24.5,29.5 parent: 2 type: Transform - - uid: 25295 + - uid: 25377 components: - pos: -18.5,33.5 parent: 2 type: Transform - - uid: 25296 + - uid: 25378 components: - pos: -21.5,35.5 parent: 2 type: Transform - - uid: 25297 + - uid: 25379 components: - pos: -12.5,35.5 parent: 2 type: Transform - - uid: 25298 + - uid: 25380 components: - pos: -12.5,32.5 parent: 2 type: Transform - - uid: 25299 + - uid: 25381 components: - pos: -12.5,31.5 parent: 2 type: Transform - - uid: 25300 + - uid: 25382 components: - pos: 65.5,-0.5 parent: 2 type: Transform - - uid: 25301 + - uid: 25383 components: - pos: 65.5,-1.5 parent: 2 type: Transform - - uid: 25302 + - uid: 25384 components: - rot: 1.5707963267948966 rad pos: 42.5,48.5 parent: 2 type: Transform - - uid: 25303 + - uid: 25385 components: - rot: 1.5707963267948966 rad pos: 43.5,48.5 parent: 2 type: Transform - - uid: 25304 + - uid: 25386 components: - rot: 1.5707963267948966 rad pos: 33.5,44.5 parent: 2 type: Transform - - uid: 25305 + - uid: 25387 components: - rot: 1.5707963267948966 rad pos: 32.5,47.5 parent: 2 type: Transform - - uid: 25306 + - uid: 25388 components: - rot: 1.5707963267948966 rad pos: 32.5,46.5 parent: 2 type: Transform - - uid: 25307 + - uid: 25389 components: - rot: 1.5707963267948966 rad pos: 40.5,43.5 parent: 2 type: Transform - - uid: 25308 + - uid: 25390 components: - rot: 3.141592653589793 rad pos: -21.5,37.5 parent: 2 type: Transform - - uid: 25309 + - uid: 25391 components: - rot: 3.141592653589793 rad pos: -22.5,37.5 parent: 2 type: Transform - - uid: 25310 + - uid: 25392 components: - pos: -19.5,37.5 parent: 2 type: Transform - - uid: 25311 + - uid: 25393 components: - pos: -22.5,-97.5 parent: 2 type: Transform - - uid: 25312 + - uid: 25394 components: - pos: -22.5,-98.5 parent: 2 type: Transform - - uid: 25313 + - uid: 25395 components: - rot: 3.141592653589793 rad pos: -7.5,-100.5 parent: 2 type: Transform - - uid: 25314 + - uid: 25396 components: - rot: 3.141592653589793 rad pos: -6.5,-100.5 parent: 2 type: Transform - - uid: 25315 + - uid: 25397 components: - pos: -22.5,-96.5 parent: 2 type: Transform - - uid: 25316 + - uid: 25398 components: - pos: -33.5,8.5 parent: 2 type: Transform - - uid: 25317 + - uid: 25399 components: - pos: -32.5,8.5 parent: 2 type: Transform - - uid: 25318 + - uid: 25400 components: - pos: 54.5,-35.5 parent: 2 type: Transform - - uid: 25319 + - uid: 25401 components: - pos: 58.5,-30.5 parent: 2 type: Transform - - uid: 25320 + - uid: 25402 components: - rot: 3.141592653589793 rad pos: 49.5,-66.5 parent: 2 type: Transform - - uid: 25321 + - uid: 25403 components: - rot: -1.5707963267948966 rad pos: 57.5,-30.5 parent: 2 type: Transform - - uid: 25322 + - uid: 25404 components: - pos: 12.5,-5.5 parent: 2 type: Transform - - uid: 25324 + - uid: 25405 components: - pos: 18.5,-14.5 parent: 2 type: Transform - - uid: 25325 + - uid: 25406 components: - rot: 1.5707963267948966 rad pos: -4.5,0.5 parent: 2 type: Transform - - uid: 25326 + - uid: 25407 components: - pos: -31.5,-74.5 parent: 2 type: Transform - - uid: 25327 + - uid: 25408 components: - pos: 12.5,-6.5 parent: 2 type: Transform + - uid: 25409 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 2 + type: Transform + - uid: 25410 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-28.5 + parent: 2 + type: Transform + - uid: 25411 + components: + - pos: -0.5,-23.5 + parent: 2 + type: Transform + - uid: 25412 + components: + - pos: 0.5,-23.5 + parent: 2 + type: Transform + - uid: 25413 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-36.5 + parent: 2 + type: Transform + - uid: 25414 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-34.5 + parent: 2 + type: Transform + - uid: 25415 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-38.5 + parent: 2 + type: Transform + - uid: 25416 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-39.5 + parent: 2 + type: Transform + - uid: 25417 + components: + - pos: 28.5,-39.5 + parent: 2 + type: Transform +- proto: TegCenter + entities: + - uid: 25418 + components: + - rot: -1.5707963267948966 rad + pos: -69.5,-44.5 + parent: 2 + type: Transform +- proto: TegCirculator + entities: + - uid: 25419 + components: + - rot: 3.141592653589793 rad + pos: -70.5,-44.5 + parent: 2 + type: Transform + - color: '#FF3300FF' + type: PointLight + - uid: 25420 + components: + - pos: -68.5,-44.5 + parent: 2 + type: Transform + - color: '#FF3300FF' + type: PointLight - proto: TelecomServer entities: - - uid: 14310 + - uid: 14436 components: - pos: 8.5,-20.5 parent: 2 @@ -172686,7 +174011,7 @@ entities: showEnts: False occludes: True ents: - - 14311 + - 14437 machine_board: !type:Container showEnts: False occludes: True @@ -172696,7 +174021,7 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 14312 + - uid: 14438 components: - pos: 9.5,-20.5 parent: 2 @@ -172706,7 +174031,7 @@ entities: showEnts: False occludes: True ents: - - 14313 + - 14439 machine_board: !type:Container showEnts: False occludes: True @@ -172716,7 +174041,7 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 14314 + - uid: 14440 components: - pos: 10.5,-20.5 parent: 2 @@ -172726,7 +174051,7 @@ entities: showEnts: False occludes: True ents: - - 14315 + - 14441 machine_board: !type:Container showEnts: False occludes: True @@ -172736,7 +174061,7 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 14316 + - uid: 14442 components: - pos: 11.5,-20.5 parent: 2 @@ -172746,7 +174071,7 @@ entities: showEnts: False occludes: True ents: - - 14317 + - 14443 machine_board: !type:Container showEnts: False occludes: True @@ -172756,7 +174081,7 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 14318 + - uid: 14444 components: - pos: 9.5,-22.5 parent: 2 @@ -172766,7 +174091,7 @@ entities: showEnts: False occludes: True ents: - - 14319 + - 14445 machine_board: !type:Container showEnts: False occludes: True @@ -172776,7 +174101,7 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 14320 + - uid: 14446 components: - pos: 8.5,-22.5 parent: 2 @@ -172786,8 +174111,8 @@ entities: showEnts: False occludes: True ents: - - 14322 - - 14321 + - 14448 + - 14447 machine_board: !type:Container showEnts: False occludes: True @@ -172797,7 +174122,7 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 14323 + - uid: 14449 components: - pos: 10.5,-22.5 parent: 2 @@ -172807,7 +174132,7 @@ entities: showEnts: False occludes: True ents: - - 14324 + - 14450 machine_board: !type:Container showEnts: False occludes: True @@ -172817,7 +174142,7 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 14325 + - uid: 14451 components: - pos: 11.5,-22.5 parent: 2 @@ -172827,7 +174152,7 @@ entities: showEnts: False occludes: True ents: - - 14326 + - 14452 machine_board: !type:Container showEnts: False occludes: True @@ -172839,26 +174164,26 @@ entities: type: ContainerContainer - proto: ThermomachineFreezerMachineCircuitBoard entities: - - uid: 25328 + - uid: 25421 components: - pos: -36.51641,35.415855 parent: 2 type: Transform - proto: Thruster entities: - - uid: 25329 + - uid: 25422 components: - rot: 1.5707963267948966 rad pos: -58.5,-87.5 parent: 2 type: Transform - - uid: 25330 + - uid: 25423 components: - rot: 1.5707963267948966 rad pos: -56.5,-84.5 parent: 2 type: Transform - - uid: 25331 + - uid: 25424 components: - rot: 1.5707963267948966 rad pos: -56.5,-90.5 @@ -172866,39 +174191,39 @@ entities: type: Transform - proto: TimerTrigger entities: - - uid: 25332 + - uid: 25425 components: - pos: 65.507225,-28.362265 parent: 2 type: Transform - proto: TobaccoSeeds entities: - - uid: 25333 + - uid: 25426 components: - pos: -32.36416,6.3223424 parent: 2 type: Transform - proto: ToiletDirtyWater entities: - - uid: 25334 + - uid: 25427 components: - rot: 1.5707963267948966 rad pos: -32.5,-5.5 parent: 2 type: Transform - - uid: 25335 + - uid: 25428 components: - rot: 1.5707963267948966 rad pos: -32.5,-7.5 parent: 2 type: Transform - - uid: 25336 + - uid: 25429 components: - rot: -1.5707963267948966 rad pos: -28.5,-5.5 parent: 2 type: Transform - - uid: 25337 + - uid: 25430 components: - rot: -1.5707963267948966 rad pos: -28.5,-7.5 @@ -172906,12 +174231,12 @@ entities: type: Transform - proto: ToiletEmpty entities: - - uid: 25338 + - uid: 25431 components: - pos: 61.5,24.5 parent: 2 type: Transform - - uid: 25339 + - uid: 25432 components: - pos: 63.5,24.5 parent: 2 @@ -172920,346 +174245,353 @@ entities: type: Construction - proto: TomatoSeeds entities: - - uid: 25340 + - uid: 25433 components: - pos: -32.45791,6.4317174 parent: 2 type: Transform - proto: ToolboxElectrical entities: - - uid: 25341 + - uid: 25434 components: - pos: 46.470684,-5.411702 parent: 2 type: Transform - proto: ToolboxElectricalFilled entities: - - uid: 25342 + - uid: 25435 components: - pos: -36.493176,-7.9722276 parent: 2 type: Transform - - uid: 25343 + - uid: 25436 components: - pos: 32.521046,-20.990738 parent: 2 type: Transform - - uid: 25344 + - uid: 25437 components: - pos: -24.509478,-19.362955 parent: 2 type: Transform - - uid: 25345 + - uid: 25438 components: - pos: -12.493107,-98.55707 parent: 2 type: Transform - - uid: 25346 + - uid: 25439 components: - pos: 67.55947,-64.54127 parent: 2 type: Transform - proto: ToolboxEmergencyFilled entities: - - uid: 25347 + - uid: 25440 components: - pos: 32.521046,-22.058308 parent: 2 type: Transform - - uid: 25348 + - uid: 25441 components: - pos: 4.5177064,-69.50256 parent: 2 type: Transform - - uid: 25349 + - uid: 25442 components: - pos: -22.596659,-20.233759 parent: 2 type: Transform - - uid: 25350 + - uid: 25443 components: - pos: -28.343418,-52.353195 parent: 2 type: Transform - - uid: 25351 + - uid: 25444 components: - pos: -38.44295,-67.482124 parent: 2 type: Transform - - uid: 25352 + - uid: 25445 components: - pos: -35.451088,-50.209225 parent: 2 type: Transform - - uid: 25353 + - uid: 25446 components: - pos: 54.54983,-30.496807 parent: 2 type: Transform - - uid: 25354 + - uid: 25447 components: - pos: 65.53578,-10.518121 parent: 2 type: Transform - - uid: 25355 + - uid: 25448 components: - pos: -12.486199,-5.5686293 parent: 2 type: Transform - - uid: 25356 + - uid: 25449 components: - pos: -36.5088,-7.6284776 parent: 2 type: Transform - proto: ToolboxGoldFilled entities: - - uid: 25357 + - uid: 25450 components: - pos: 32.512478,-22.558695 parent: 2 type: Transform - proto: ToolboxMechanical entities: - - uid: 25358 + - uid: 25451 components: - pos: -22.637089,-8.36341 parent: 2 type: Transform - proto: ToolboxMechanicalFilled entities: - - uid: 25359 + - uid: 25452 components: - pos: -36.493176,-7.2222276 parent: 2 type: Transform - - uid: 25360 + - uid: 25453 components: - pos: -15.996035,12.5348 parent: 2 type: Transform - - uid: 25361 + - uid: 25454 components: - pos: 32.521046,-21.537613 parent: 2 type: Transform - - uid: 25362 + - uid: 25455 components: - pos: -22.52499,-67.50294 parent: 2 type: Transform - - uid: 25363 + - uid: 25456 components: - pos: 41.46839,-54.726734 parent: 2 type: Transform - - uid: 25364 + - uid: 25457 components: - pos: -36.497368,-32.593475 parent: 2 type: Transform - - uid: 25365 + - uid: 25458 components: - pos: -26.431704,-19.50094 parent: 2 type: Transform - proto: ToyAi entities: - - uid: 25366 + - uid: 25459 components: - pos: 48.41234,-27.902035 parent: 2 type: Transform - - uid: 25367 + - uid: 25460 components: - pos: -1.529743,69.62148 parent: 2 type: Transform - proto: ToyAmongPequeno entities: - - uid: 25368 + - uid: 25461 components: - pos: 64.471924,-66.472046 parent: 2 type: Transform - proto: ToyDurand entities: - - uid: 25369 + - uid: 25462 components: - pos: -18.14669,61.77462 parent: 2 type: Transform +- proto: ToyFigurineClown + entities: + - uid: 25463 + components: + - pos: 2.672367,-19.349606 + parent: 2 + type: Transform - proto: ToyFigurineHamlet entities: - - uid: 25371 + - uid: 25464 components: - pos: 19.529411,-12.229433 parent: 2 type: Transform -- proto: ToyFigurineHeadOfPersonnel +- proto: ToyFigurineMime entities: - - uid: 21352 + - uid: 25465 components: - - pos: 4.705401,-5.19915 + - pos: 2.266117,-19.537106 parent: 2 type: Transform - proto: ToyFigurinePassenger entities: - - uid: 25373 + - uid: 25466 components: - pos: -17.943565,62.415245 parent: 2 type: Transform - proto: ToyGygax entities: - - uid: 25374 + - uid: 25467 components: - pos: -17.318565,61.89962 parent: 2 type: Transform - proto: ToyHonk entities: - - uid: 25375 + - uid: 25468 components: - pos: 62.0246,-1.3985255 parent: 2 type: Transform - - uid: 25376 + - uid: 25469 components: - pos: -17.287315,62.508995 parent: 2 type: Transform - proto: ToyIan entities: - - uid: 12244 - components: - - pos: 4.346026,-5.464775 - parent: 2 - type: Transform - - uid: 25377 + - uid: 25470 components: - pos: 48.44359,-22.433285 parent: 2 type: Transform - proto: ToyNuke entities: - - uid: 25378 + - uid: 25471 components: - pos: 48.50609,-28.933285 parent: 2 type: Transform - proto: ToyRubberDuck entities: - - uid: 25379 + - uid: 25472 components: - pos: 48.59984,-28.457928 parent: 2 type: Transform - - uid: 25380 + - uid: 25473 components: - pos: 48.396713,-28.473553 parent: 2 type: Transform - - uid: 25381 + - uid: 25474 components: - pos: 48.50609,-28.286053 parent: 2 type: Transform - proto: ToySpawner entities: - - uid: 25382 + - uid: 25475 components: - pos: 53.5,-65.5 parent: 2 type: Transform - - uid: 25383 + - uid: 25476 components: - pos: 54.5,-35.5 parent: 2 type: Transform - proto: ToySword entities: - - uid: 12082 + - uid: 12221 components: - flags: InContainer type: MetaData - - parent: 12077 + - parent: 12216 type: Transform - proto: TrashBananaPeel entities: - - uid: 25387 + - uid: 25477 components: - pos: 46.551132,46.620934 parent: 2 type: Transform - - uid: 25388 + - uid: 25478 components: - pos: 48.49847,33.344906 parent: 2 type: Transform - - uid: 25389 + - uid: 25479 components: - pos: 50.451595,31.673027 parent: 2 type: Transform - - uid: 25390 + - uid: 25480 components: - pos: 5.4959826,24.50416 parent: 2 type: Transform + - uid: 25481 + components: + - pos: 0.5065335,-21.863766 + parent: 2 + type: Transform - proto: trayScanner entities: - - uid: 25391 + - uid: 25482 components: - pos: -36.91505,-7.9878526 parent: 2 type: Transform - - uid: 25392 + - uid: 25483 components: - pos: -47.457436,-19.479069 parent: 2 type: Transform - - uid: 25393 + - uid: 25484 components: - pos: -42.463882,-20.49279 parent: 2 type: Transform - - uid: 25394 + - uid: 25485 components: - pos: 39.581177,-30.49341 parent: 2 type: Transform - - uid: 25395 + - uid: 25486 components: - pos: 73.06597,36.576 parent: 2 type: Transform - - uid: 25396 + - uid: 25487 components: - pos: 77.48675,-44.195305 parent: 2 type: Transform - - uid: 25397 + - uid: 25488 components: - pos: -26.403507,-59.437252 parent: 2 type: Transform - proto: TromboneInstrument entities: - - uid: 25398 + - uid: 25489 components: - pos: 68.56264,48.54323 parent: 2 type: Transform - proto: TrumpetInstrument entities: - - uid: 25399 + - uid: 25490 components: - pos: -10.547552,-5.035685 parent: 2 type: Transform - proto: TwoWayLever entities: - - uid: 25400 + - uid: 25491 components: - pos: 16.5,-53.5 parent: 2 @@ -173267,150 +174599,150 @@ entities: - nextSignalLeft: True type: TwoWayLever - linkedPorts: - 12440: + 12583: - Left: Forward - Right: Reverse - Middle: Off - 12438: + 12581: - Left: Forward - Right: Reverse - Middle: Off - 12439: + 12582: - Left: Forward - Right: Reverse - Middle: Off - 12436: + 12579: - Left: Forward - Right: Reverse - Middle: Off - 12433: + 12576: - Left: Forward - Right: Reverse - Middle: Off - 12430: + 12573: - Left: Forward - Right: Reverse - Middle: Off - 12432: + 12575: - Left: Forward - Right: Reverse - Middle: Off - 12434: + 12577: - Left: Forward - Right: Reverse - Middle: Off - 22935: + 23024: - Left: Forward - Right: Reverse - Middle: Off - 12431: + 12574: - Left: Forward - Right: Reverse - Middle: Off - 12437: + 12580: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25401 + - uid: 25492 components: - pos: -28.5,24.5 parent: 2 type: Transform - linkedPorts: - 12448: + 12591: - Left: Forward - Right: Reverse - Middle: Off - 12449: + 12592: - Left: Forward - Right: Reverse - Middle: Off - 12447: + 12590: - Left: Forward - Right: Reverse - Middle: Off - 12446: + 12589: - Left: Forward - Right: Reverse - Middle: Off - 12445: + 12588: - Left: Forward - Right: Reverse - Middle: Off - 12444: + 12587: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - type: ItemCooldown - - uid: 25402 + - uid: 25493 components: - pos: -41.5,17.5 parent: 2 type: Transform - linkedPorts: - 12490: + 12633: - Left: Forward - Right: Reverse - Middle: Off - 12530: + 12673: - Left: Forward - Right: Reverse - Middle: Off - 12489: + 12632: - Left: Forward - Right: Reverse - Middle: Off - 12471: + 12614: - Left: Forward - Right: Reverse - Middle: Off - 12491: + 12634: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25403 + - uid: 25494 components: - pos: -48.5,24.5 parent: 2 type: Transform - linkedPorts: - 12462: + 12605: - Left: Forward - Right: Reverse - Middle: Off - 12461: + 12604: - Left: Forward - Right: Reverse - Middle: Off - 12460: + 12603: - Left: Forward - Right: Reverse - Middle: Off - 12459: + 12602: - Left: Forward - Right: Reverse - Middle: Off - 12467: + 12610: - Left: Forward - Right: Reverse - Middle: Off - 12468: + 12611: - Left: Forward - Right: Reverse - Middle: Off - 12469: + 12612: - Left: Forward - Right: Reverse - Middle: Off - 12470: + 12613: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25404 + - uid: 25495 components: - pos: -48.5,18.5 parent: 2 @@ -173418,40 +174750,40 @@ entities: - nextSignalLeft: True type: TwoWayLever - linkedPorts: - 12458: + 12601: - Left: Forward - Right: Reverse - Middle: Off - 12457: + 12600: - Left: Forward - Right: Reverse - Middle: Off - 12456: + 12599: - Left: Forward - Right: Reverse - Middle: Off - 12455: + 12598: - Left: Forward - Right: Reverse - Middle: Off - 12465: + 12608: - Left: Forward - Right: Reverse - Middle: Off - 12466: + 12609: - Left: Forward - Right: Reverse - Middle: Off - 12464: + 12607: - Left: Forward - Right: Reverse - Middle: Off - 12463: + 12606: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25405 + - uid: 25496 components: - pos: -36.5,24.5 parent: 2 @@ -173459,99 +174791,99 @@ entities: - nextSignalLeft: True type: TwoWayLever - linkedPorts: - 12454: + 12597: - Left: Forward - Right: Reverse - Middle: Off - 12453: + 12596: - Left: Forward - Right: Reverse - Middle: Off - 12452: + 12595: - Left: Forward - Right: Reverse - Middle: Off - 12450: + 12593: - Left: Forward - Right: Reverse - Middle: Off - 12451: + 12594: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25406 + - uid: 25497 components: - pos: -11.5,28.5 parent: 2 type: Transform - linkedPorts: - 12507: + 12650: - Left: Forward - Right: Reverse - Middle: Off - 12508: + 12651: - Left: Forward - Right: Reverse - Middle: Off - 12509: + 12652: - Left: Forward - Right: Reverse - Middle: Off - 12510: + 12653: - Left: Forward - Right: Reverse - Middle: Off - 12511: + 12654: - Left: Forward - Right: Reverse - Middle: Off - 12506: + 12649: - Left: Forward - Right: Reverse - Middle: Off - 12495: + 12638: - Left: Forward - Right: Reverse - Middle: Off - 12496: + 12639: - Left: Forward - Right: Reverse - Middle: Off - 12497: + 12640: - Left: Forward - Right: Reverse - Middle: Off - 12513: + 12656: - Left: Forward - Right: Reverse - Middle: Off - 12512: + 12655: - Left: Forward - Right: Reverse - Middle: Off - 12488: + 12631: - Left: Reverse - Right: Forward - Middle: Off - 12487: + 12630: - Left: Reverse - Right: Forward - Middle: Off - 12514: + 12657: - Left: Reverse - Right: Forward - Middle: Off - 12515: + 12658: - Left: Reverse - Right: Forward - Middle: Off - 12486: + 12629: - Left: Reverse - Right: Forward - Middle: Off type: DeviceLinkSource - - uid: 25407 + - uid: 25498 components: - pos: -48.5,29.5 parent: 2 @@ -173559,36 +174891,36 @@ entities: - nextSignalLeft: True type: TwoWayLever - linkedPorts: - 12483: + 12626: - Left: Forward - Right: Reverse - Middle: Off - 12473: + 12616: - Left: Forward - Right: Reverse - Middle: Off - 12472: + 12615: - Left: Forward - Right: Reverse - Middle: Off - 12474: + 12617: - Left: Forward - Right: Reverse - Middle: Off - 12475: + 12618: - Left: Forward - Right: Reverse - Middle: Off - 12476: + 12619: - Left: Forward - Right: Reverse - Middle: Off - 12485: + 12628: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25408 + - uid: 25499 components: - pos: -48.5,35.5 parent: 2 @@ -173596,36 +174928,36 @@ entities: - nextSignalLeft: True type: TwoWayLever - linkedPorts: - 12482: + 12625: - Left: Forward - Right: Reverse - Middle: Off - 12477: + 12620: - Left: Forward - Right: Reverse - Middle: Off - 12478: + 12621: - Left: Forward - Right: Reverse - Middle: Off - 12479: + 12622: - Left: Forward - Right: Reverse - Middle: Off - 12480: + 12623: - Left: Forward - Right: Reverse - Middle: Off - 12481: + 12624: - Left: Forward - Right: Reverse - Middle: Off - 12484: + 12627: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25409 + - uid: 25500 components: - pos: -46.5,14.5 parent: 2 @@ -173633,21 +174965,21 @@ entities: - nextSignalLeft: True type: TwoWayLever - linkedPorts: - 12493: + 12636: - Left: Forward - Right: Reverse - Middle: Off - 12492: + 12635: - Left: Forward - Right: Reverse - Middle: Off - 12494: + 12637: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - type: ItemCooldown - - uid: 25410 + - uid: 25501 components: - pos: 47.5,39.5 parent: 2 @@ -173655,217 +174987,238 @@ entities: - nextSignalLeft: True type: TwoWayLever - linkedPorts: - 12498: + 12641: - Left: Forward - Right: Reverse - Middle: Off - 12499: + 12642: - Left: Forward - Right: Reverse - Middle: Off - 12500: + 12643: - Left: Forward - Right: Reverse - Middle: Off - 12501: + 12644: - Left: Forward - Right: Reverse - Middle: Off - 12502: + 12645: - Left: Forward - Right: Reverse - Middle: Off - 12503: + 12646: - Left: Forward - Right: Reverse - Middle: Off - 12504: + 12647: - Left: Forward - Right: Reverse - Middle: Off - 12505: + 12648: - Left: Forward - Right: Reverse - Middle: Off - 12516: + 12659: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25411 + - uid: 25502 components: - pos: -36.5,-98.5 parent: 2 type: Transform - linkedPorts: - 12518: + 12661: - Left: Forward - Right: Reverse - Middle: Off - 12517: + 12660: - Left: Forward - Right: Reverse - Middle: Off - 12519: + 12662: - Left: Forward - Right: Reverse - Middle: Off - 12520: + 12663: - Left: Forward - Right: Reverse - Middle: Off - 12521: + 12664: - Left: Forward - Right: Reverse - Middle: Off - 12522: + 12665: - Left: Forward - Right: Reverse - Middle: Off - 12523: + 12666: - Left: Forward - Right: Reverse - Middle: Off - 12527: + 12670: - Left: Forward - Right: Reverse - Middle: Off - 12526: + 12669: - Left: Forward - Right: Reverse - Middle: Off - 12524: + 12667: - Left: Forward - Right: Reverse - Middle: Off - 12525: + 12668: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25412 + - uid: 25503 components: - pos: -36.5,-104.5 parent: 2 type: Transform - linkedPorts: - 12525: + 12668: - Left: Forward - Right: Reverse - Middle: Off - 12524: + 12667: - Left: Forward - Right: Reverse - Middle: Off - 12526: + 12669: - Left: Forward - Right: Reverse - Middle: Off - 12527: + 12670: - Left: Forward - Right: Reverse - Middle: Off - 12523: + 12666: - Left: Forward - Right: Reverse - Middle: Off - 12522: + 12665: - Left: Forward - Right: Reverse - Middle: Off - 12521: + 12664: - Left: Forward - Right: Reverse - Middle: Off - 12520: + 12663: - Left: Forward - Right: Reverse - Middle: Off - 12519: + 12662: - Left: Forward - Right: Reverse - Middle: Off - 12517: + 12660: - Left: Forward - Right: Reverse - Middle: Off - 12518: + 12661: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25413 + - uid: 25504 components: - pos: -9.5,-12.5 parent: 2 type: Transform - linkedPorts: - 12441: + 12584: - Left: Reverse - Right: Reverse - Middle: Off - 12442: + 12585: - Left: Reverse - Right: Reverse - Middle: Off - 12435: + 12578: - Left: Reverse - Right: Reverse - Middle: Off - 12529: + 12672: - Left: Reverse - Right: Reverse - Middle: Off - 12528: + 12671: - Left: Reverse - Right: Reverse - Middle: Off - 12443: + 12586: - Left: Reverse - Right: Reverse - Middle: Off type: DeviceLinkSource + - uid: 31189 + components: + - pos: -15.5,10.5 + parent: 2 + type: Transform + - nextSignalLeft: True + type: TwoWayLever + - linkedPorts: + 24396: + - Left: Reverse + - Right: Forward + - Middle: Off + 31187: + - Left: Reverse + - Right: Forward + - Middle: Off + 31188: + - Left: Reverse + - Right: Forward + - Middle: Off + type: DeviceLinkSource + - type: ItemCooldown - proto: UnfinishedMachineFrame entities: - - uid: 25414 + - uid: 25505 components: - pos: -26.5,-24.5 parent: 2 type: Transform - - uid: 25416 + - uid: 25506 components: - pos: -10.5,39.5 parent: 2 type: Transform - - uid: 25417 + - uid: 25507 components: - pos: 53.5,-30.5 parent: 2 type: Transform - proto: UniformPrinter entities: - - uid: 10612 + - uid: 25508 components: - - rot: 3.141592653589793 rad - pos: 1.5,-7.5 + - pos: 2.5,-4.5 parent: 2 type: Transform - proto: UniformShortsRedWithTop entities: - - uid: 25419 + - uid: 25509 components: - pos: 30.57281,4.627015 parent: 2 type: Transform - proto: UprightPianoInstrument entities: - - uid: 25420 + - uid: 25510 components: - rot: -1.5707963267948966 rad pos: -47.5,-75.5 parent: 2 type: Transform - - uid: 25421 + - uid: 25511 components: - rot: -1.5707963267948966 rad pos: 8.5,5.5 @@ -173873,43 +175226,43 @@ entities: type: Transform - proto: Vaccinator entities: - - uid: 25422 + - uid: 25512 components: - pos: -22.5,-77.5 parent: 2 type: Transform - - uid: 25423 + - uid: 25513 components: - pos: -20.5,-76.5 parent: 2 type: Transform - proto: VehicleKeyJanicart entities: - - uid: 25424 + - uid: 25514 components: - pos: -13.519899,-23.451248 parent: 2 type: Transform - proto: VehicleKeySecway entities: - - uid: 25425 + - uid: 25515 components: - pos: 12.469265,19.745214 parent: 2 type: Transform - - uid: 25426 + - uid: 25516 components: - pos: 12.39114,19.557714 parent: 2 type: Transform - - uid: 25427 + - uid: 25517 components: - pos: 12.594265,19.82334 parent: 2 type: Transform - proto: VendingBarDrobe entities: - - uid: 25428 + - uid: 25518 components: - flags: SessionSpecific type: MetaData @@ -173918,7 +175271,7 @@ entities: type: Transform - proto: VendingMachineAtmosDrobe entities: - - uid: 25429 + - uid: 25519 components: - flags: SessionSpecific type: MetaData @@ -173927,37 +175280,37 @@ entities: type: Transform - proto: VendingMachineBooze entities: - - uid: 24070 + - uid: 25520 components: - flags: SessionSpecific type: MetaData - - pos: 24.5,-39.5 + - pos: -41.5,-74.5 parent: 2 type: Transform - - uid: 25430 + - uid: 25521 components: - flags: SessionSpecific type: MetaData - - pos: -41.5,-74.5 + - pos: 18.5,10.5 parent: 2 type: Transform - - uid: 25431 + - uid: 25522 components: - flags: SessionSpecific type: MetaData - - pos: 18.5,10.5 + - pos: 36.5,51.5 parent: 2 type: Transform - - uid: 25432 + - uid: 25523 components: - flags: SessionSpecific type: MetaData - - pos: 36.5,51.5 + - pos: 29.5,-36.5 parent: 2 type: Transform - proto: VendingMachineCargoDrobe entities: - - uid: 25433 + - uid: 25524 components: - flags: SessionSpecific type: MetaData @@ -173966,30 +175319,30 @@ entities: type: Transform - proto: VendingMachineCart entities: - - uid: 21347 + - uid: 25525 components: - flags: SessionSpecific type: MetaData - - pos: -1.5,-6.5 + - pos: 1.5,-4.5 parent: 2 type: Transform - proto: VendingMachineChang entities: - - uid: 25435 + - uid: 25526 components: - flags: SessionSpecific type: MetaData - pos: 53.5,3.5 parent: 2 type: Transform - - uid: 25436 + - uid: 25527 components: - flags: SessionSpecific type: MetaData - pos: -2.5,-31.5 parent: 2 type: Transform - - uid: 25437 + - uid: 25528 components: - flags: SessionSpecific type: MetaData @@ -173998,7 +175351,7 @@ entities: type: Transform - proto: VendingMachineChapel entities: - - uid: 25438 + - uid: 25529 components: - flags: SessionSpecific type: MetaData @@ -174007,7 +175360,7 @@ entities: type: Transform - proto: VendingMachineChefDrobe entities: - - uid: 25439 + - uid: 25530 components: - flags: SessionSpecific type: MetaData @@ -174016,7 +175369,7 @@ entities: type: Transform - proto: VendingMachineChefvend entities: - - uid: 25440 + - uid: 25531 components: - flags: SessionSpecific type: MetaData @@ -174025,7 +175378,7 @@ entities: type: Transform - proto: VendingMachineChemDrobe entities: - - uid: 25441 + - uid: 25532 components: - flags: SessionSpecific type: MetaData @@ -174034,7 +175387,7 @@ entities: type: Transform - proto: VendingMachineChemicals entities: - - uid: 25442 + - uid: 25533 components: - flags: SessionSpecific type: MetaData @@ -174043,42 +175396,42 @@ entities: type: Transform - proto: VendingMachineCigs entities: - - uid: 25443 + - uid: 25534 components: - flags: SessionSpecific type: MetaData - pos: 2.5,58.5 parent: 2 type: Transform - - uid: 25444 + - uid: 25535 components: - flags: SessionSpecific type: MetaData - pos: -6.5,-34.5 parent: 2 type: Transform - - uid: 25445 + - uid: 25536 components: - flags: SessionSpecific type: MetaData - pos: 7.5,-2.5 parent: 2 type: Transform - - uid: 25446 + - uid: 25537 components: - flags: SessionSpecific type: MetaData - pos: 61.5,-13.5 parent: 2 type: Transform - - uid: 25447 + - uid: 25538 components: - flags: SessionSpecific type: MetaData - pos: -13.5,8.5 parent: 2 type: Transform - - uid: 25448 + - uid: 25539 components: - flags: SessionSpecific type: MetaData @@ -174087,7 +175440,7 @@ entities: type: Transform - proto: VendingMachineClothing entities: - - uid: 25449 + - uid: 25540 components: - flags: SessionSpecific type: MetaData @@ -174096,77 +175449,77 @@ entities: type: Transform - proto: VendingMachineCoffee entities: - - uid: 25450 + - uid: 25541 components: - flags: SessionSpecific type: MetaData - pos: -10.5,-52.5 parent: 2 type: Transform - - uid: 25451 + - uid: 25542 components: - flags: SessionSpecific type: MetaData - pos: 37.5,-17.5 parent: 2 type: Transform - - uid: 25452 + - uid: 25543 components: - flags: SessionSpecific type: MetaData - pos: 45.5,17.5 parent: 2 type: Transform - - uid: 25453 + - uid: 25544 components: - flags: SessionSpecific type: MetaData - pos: 51.5,3.5 parent: 2 type: Transform - - uid: 25454 + - uid: 25545 components: - flags: SessionSpecific type: MetaData - pos: 60.5,-13.5 parent: 2 type: Transform - - uid: 25455 + - uid: 25546 components: - flags: SessionSpecific type: MetaData - pos: -33.5,-22.5 parent: 2 type: Transform - - uid: 25456 + - uid: 25547 components: - flags: SessionSpecific type: MetaData - pos: -43.5,4.5 parent: 2 type: Transform - - uid: 25457 + - uid: 25548 components: - flags: SessionSpecific type: MetaData - pos: -0.5,43.5 parent: 2 type: Transform - - uid: 25458 + - uid: 25549 components: - flags: SessionSpecific type: MetaData - pos: -14.5,49.5 parent: 2 type: Transform - - uid: 25459 + - uid: 25550 components: - flags: SessionSpecific type: MetaData - pos: 51.5,-37.5 parent: 2 type: Transform - - uid: 25460 + - uid: 25551 components: - flags: SessionSpecific type: MetaData @@ -174175,21 +175528,21 @@ entities: type: Transform - proto: VendingMachineCola entities: - - uid: 25461 + - uid: 25552 components: - flags: SessionSpecific type: MetaData - pos: 8.5,-2.5 parent: 2 type: Transform - - uid: 25462 + - uid: 25553 components: - flags: SessionSpecific type: MetaData - pos: 27.5,-11.5 parent: 2 type: Transform - - uid: 25463 + - uid: 25554 components: - flags: SessionSpecific type: MetaData @@ -174198,14 +175551,14 @@ entities: type: Transform - proto: VendingMachineCondiments entities: - - uid: 25464 + - uid: 25555 components: - flags: SessionSpecific type: MetaData - pos: 8.5,10.5 parent: 2 type: Transform - - uid: 25465 + - uid: 25556 components: - flags: SessionSpecific type: MetaData @@ -174214,7 +175567,7 @@ entities: type: Transform - proto: VendingMachineDetDrobe entities: - - uid: 25466 + - uid: 25557 components: - flags: SessionSpecific type: MetaData @@ -174223,14 +175576,14 @@ entities: type: Transform - proto: VendingMachineDinnerware entities: - - uid: 25467 + - uid: 25558 components: - flags: SessionSpecific type: MetaData - pos: -0.5,5.5 parent: 2 type: Transform - - uid: 25468 + - uid: 25559 components: - flags: SessionSpecific type: MetaData @@ -174239,28 +175592,28 @@ entities: type: Transform - proto: VendingMachineDiscount entities: - - uid: 25469 + - uid: 25560 components: - flags: SessionSpecific type: MetaData - pos: -6.5,-32.5 parent: 2 type: Transform - - uid: 25470 + - uid: 25561 components: - flags: SessionSpecific type: MetaData - pos: -33.5,-23.5 parent: 2 type: Transform - - uid: 25471 + - uid: 25562 components: - flags: SessionSpecific type: MetaData - pos: -43.5,3.5 parent: 2 type: Transform - - uid: 25472 + - uid: 25563 components: - flags: SessionSpecific type: MetaData @@ -174269,7 +175622,7 @@ entities: type: Transform - proto: VendingMachineEngiDrobe entities: - - uid: 25473 + - uid: 25564 components: - flags: SessionSpecific type: MetaData @@ -174278,7 +175631,7 @@ entities: type: Transform - proto: VendingMachineEngivend entities: - - uid: 25474 + - uid: 25565 components: - flags: SessionSpecific type: MetaData @@ -174287,7 +175640,7 @@ entities: type: Transform - proto: VendingMachineGames entities: - - uid: 25475 + - uid: 25566 components: - flags: SessionSpecific type: MetaData @@ -174296,7 +175649,7 @@ entities: type: Transform - proto: VendingMachineGeneDrobe entities: - - uid: 25476 + - uid: 25567 components: - flags: SessionSpecific type: MetaData @@ -174305,7 +175658,7 @@ entities: type: Transform - proto: VendingMachineHappyHonk entities: - - uid: 25477 + - uid: 25568 components: - flags: SessionSpecific type: MetaData @@ -174314,7 +175667,7 @@ entities: type: Transform - proto: VendingMachineHydrobe entities: - - uid: 25478 + - uid: 25569 components: - flags: SessionSpecific type: MetaData @@ -174323,7 +175676,7 @@ entities: type: Transform - proto: VendingMachineJaniDrobe entities: - - uid: 25479 + - uid: 25570 components: - flags: SessionSpecific type: MetaData @@ -174332,7 +175685,7 @@ entities: type: Transform - proto: VendingMachineLawDrobe entities: - - uid: 25480 + - uid: 25571 components: - flags: SessionSpecific type: MetaData @@ -174341,14 +175694,14 @@ entities: type: Transform - proto: VendingMachineMedical entities: - - uid: 25481 + - uid: 25572 components: - flags: SessionSpecific type: MetaData - pos: -28.5,-75.5 parent: 2 type: Transform - - uid: 25482 + - uid: 25573 components: - flags: SessionSpecific type: MetaData @@ -174357,7 +175710,7 @@ entities: type: Transform - proto: VendingMachineMediDrobe entities: - - uid: 25483 + - uid: 25574 components: - flags: SessionSpecific type: MetaData @@ -174366,7 +175719,7 @@ entities: type: Transform - proto: VendingMachineNutri entities: - - uid: 25484 + - uid: 25575 components: - flags: SessionSpecific type: MetaData @@ -174375,14 +175728,14 @@ entities: type: Transform - proto: VendingMachineRestockSmokes entities: - - uid: 25485 + - uid: 25576 components: - pos: -26.439571,39.52594 parent: 2 type: Transform - proto: VendingMachineRoboDrobe entities: - - uid: 25486 + - uid: 25577 components: - flags: SessionSpecific type: MetaData @@ -174391,7 +175744,7 @@ entities: type: Transform - proto: VendingMachineRobotics entities: - - uid: 25487 + - uid: 25578 components: - flags: SessionSpecific type: MetaData @@ -174400,7 +175753,7 @@ entities: type: Transform - proto: VendingMachineSalvage entities: - - uid: 25488 + - uid: 25579 components: - flags: SessionSpecific type: MetaData @@ -174409,7 +175762,7 @@ entities: type: Transform - proto: VendingMachineSciDrobe entities: - - uid: 25489 + - uid: 25580 components: - flags: SessionSpecific type: MetaData @@ -174418,7 +175771,7 @@ entities: type: Transform - proto: VendingMachineSec entities: - - uid: 25490 + - uid: 25581 components: - flags: SessionSpecific type: MetaData @@ -174427,7 +175780,7 @@ entities: type: Transform - proto: VendingMachineSecDrobe entities: - - uid: 25491 + - uid: 25582 components: - flags: SessionSpecific type: MetaData @@ -174436,14 +175789,14 @@ entities: type: Transform - proto: VendingMachineSeeds entities: - - uid: 25492 + - uid: 25583 components: - flags: SessionSpecific type: MetaData - pos: -8.5,12.5 parent: 2 type: Transform - - uid: 25493 + - uid: 25584 components: - flags: SessionSpecific type: MetaData @@ -174452,7 +175805,7 @@ entities: type: Transform - proto: VendingMachineSeedsUnlocked entities: - - uid: 25494 + - uid: 25585 components: - flags: SessionSpecific type: MetaData @@ -174461,7 +175814,7 @@ entities: type: Transform - proto: VendingMachineSmartFridge entities: - - uid: 25495 + - uid: 25586 components: - flags: SessionSpecific type: MetaData @@ -174470,14 +175823,14 @@ entities: type: Transform - proto: VendingMachineSnack entities: - - uid: 25496 + - uid: 25587 components: - flags: SessionSpecific type: MetaData - pos: 2.5,57.5 parent: 2 type: Transform - - uid: 25497 + - uid: 25588 components: - flags: SessionSpecific type: MetaData @@ -174486,35 +175839,42 @@ entities: type: Transform - proto: VendingMachineSovietSoda entities: - - uid: 25498 + - uid: 25589 + components: + - flags: SessionSpecific + type: MetaData + - pos: -1.5,-8.5 + parent: 2 + type: Transform + - uid: 25590 components: - flags: SessionSpecific type: MetaData - pos: 61.5,-15.5 parent: 2 type: Transform - - uid: 25499 + - uid: 25591 components: - flags: SessionSpecific type: MetaData - pos: -37.5,-72.5 parent: 2 type: Transform - - uid: 25500 + - uid: 25592 components: - flags: SessionSpecific type: MetaData - pos: -40.5,27.5 parent: 2 type: Transform - - uid: 25501 + - uid: 25593 components: - flags: SessionSpecific type: MetaData - pos: 44.5,-15.5 parent: 2 type: Transform - - uid: 25502 + - uid: 25594 components: - flags: SessionSpecific type: MetaData @@ -174523,7 +175883,7 @@ entities: type: Transform - proto: VendingMachineTankDispenserEngineering entities: - - uid: 25503 + - uid: 25595 components: - flags: SessionSpecific type: MetaData @@ -174532,42 +175892,42 @@ entities: type: Transform - proto: VendingMachineTankDispenserEVA entities: - - uid: 25504 + - uid: 25596 components: - flags: SessionSpecific type: MetaData - pos: 28.5,-14.5 parent: 2 type: Transform - - uid: 25505 + - uid: 25597 components: - flags: SessionSpecific type: MetaData - pos: -22.5,-36.5 parent: 2 type: Transform - - uid: 25506 + - uid: 25598 components: - flags: SessionSpecific type: MetaData - pos: -35.5,-51.5 parent: 2 type: Transform - - uid: 25507 + - uid: 25599 components: - flags: SessionSpecific type: MetaData - pos: -48.5,36.5 parent: 2 type: Transform - - uid: 25508 + - uid: 25600 components: - flags: SessionSpecific type: MetaData - pos: 28.5,47.5 parent: 2 type: Transform - - uid: 25509 + - uid: 25601 components: - flags: SessionSpecific type: MetaData @@ -174576,51 +175936,58 @@ entities: type: Transform - proto: VendingMachineTheater entities: - - uid: 25511 + - uid: 25602 components: - flags: SessionSpecific type: MetaData - pos: -8.5,-4.5 parent: 2 type: Transform - - uid: 25512 + - uid: 25603 components: - flags: SessionSpecific type: MetaData - pos: -20.5,31.5 parent: 2 type: Transform - - uid: 25513 + - uid: 25604 components: - flags: SessionSpecific type: MetaData - pos: 11.5,-82.5 parent: 2 type: Transform + - uid: 25605 + components: + - flags: SessionSpecific + type: MetaData + - pos: 2.5,-22.5 + parent: 2 + type: Transform - proto: VendingMachineVendomat entities: - - uid: 25514 + - uid: 25606 components: - flags: SessionSpecific type: MetaData - pos: 27.5,-12.5 parent: 2 type: Transform - - uid: 25515 + - uid: 25607 components: - flags: SessionSpecific type: MetaData - pos: -27.5,-70.5 parent: 2 type: Transform - - uid: 25516 + - uid: 25608 components: - flags: SessionSpecific type: MetaData - pos: -43.5,6.5 parent: 2 type: Transform - - uid: 25517 + - uid: 25609 components: - flags: SessionSpecific type: MetaData @@ -174629,7 +175996,7 @@ entities: type: Transform - proto: VendingMachineViroDrobe entities: - - uid: 25518 + - uid: 25610 components: - flags: SessionSpecific type: MetaData @@ -174638,7 +176005,7 @@ entities: type: Transform - proto: VendingMachineWinter entities: - - uid: 25519 + - uid: 25611 components: - flags: SessionSpecific type: MetaData @@ -174647,28 +176014,28 @@ entities: type: Transform - proto: VendingMachineYouTool entities: - - uid: 25520 + - uid: 25612 components: - flags: SessionSpecific type: MetaData - pos: 39.5,-53.5 parent: 2 type: Transform - - uid: 25521 + - uid: 25613 components: - flags: SessionSpecific type: MetaData - pos: -37.5,-4.5 parent: 2 type: Transform - - uid: 25522 + - uid: 25614 components: - flags: SessionSpecific type: MetaData - pos: -23.5,-19.5 parent: 2 type: Transform - - uid: 25523 + - uid: 25615 components: - flags: SessionSpecific type: MetaData @@ -174677,14391 +176044,14291 @@ entities: type: Transform - proto: VoiceTrigger entities: - - uid: 25524 + - uid: 25616 components: - pos: 65.475975,-28.50289 parent: 2 type: Transform - proto: WallmountTelevision entities: - - uid: 25525 + - uid: 25617 components: - pos: 17.5,8.5 parent: 2 type: Transform - proto: WallPlastitanium entities: - - uid: 25526 + - uid: 25618 components: - pos: 62.5,-46.5 parent: 2 type: Transform - - uid: 25527 + - uid: 25619 components: - pos: -53.5,-84.5 parent: 2 type: Transform - - uid: 25528 + - uid: 25620 components: - pos: -55.5,-84.5 parent: 2 type: Transform - - uid: 25529 + - uid: 25621 components: - pos: -53.5,-85.5 parent: 2 type: Transform - - uid: 25530 + - uid: 25622 components: - pos: -51.5,-85.5 parent: 2 type: Transform - - uid: 25531 + - uid: 25623 components: - pos: -51.5,-86.5 parent: 2 type: Transform - - uid: 25532 + - uid: 25624 components: - rot: 1.5707963267948966 rad pos: -50.5,-88.5 parent: 2 type: Transform - - uid: 25533 + - uid: 25625 components: - rot: 1.5707963267948966 rad pos: -50.5,-86.5 parent: 2 type: Transform - - uid: 25534 + - uid: 25626 components: - pos: -51.5,-88.5 parent: 2 type: Transform - - uid: 25535 + - uid: 25627 components: - pos: -51.5,-89.5 parent: 2 type: Transform - - uid: 25536 + - uid: 25628 components: - pos: -56.5,-89.5 parent: 2 type: Transform - - uid: 25537 + - uid: 25629 components: - pos: -57.5,-89.5 parent: 2 type: Transform - - uid: 25538 + - uid: 25630 components: - pos: -55.5,-90.5 parent: 2 type: Transform - - uid: 25539 + - uid: 25631 components: - pos: -57.5,-87.5 parent: 2 type: Transform - - uid: 25540 + - uid: 25632 components: - pos: -53.5,-90.5 parent: 2 type: Transform - - uid: 25541 + - uid: 25633 components: - pos: -53.5,-89.5 parent: 2 type: Transform - - uid: 25542 + - uid: 25634 components: - pos: -57.5,-86.5 parent: 2 type: Transform - - uid: 25543 + - uid: 25635 components: - pos: -57.5,-88.5 parent: 2 type: Transform - - uid: 25544 + - uid: 25636 components: - pos: -57.5,-85.5 parent: 2 type: Transform - - uid: 25545 + - uid: 25637 components: - pos: -56.5,-85.5 parent: 2 type: Transform - proto: WallReinforced entities: - - uid: 177 + - uid: 25638 components: - - pos: -16.5,-56.5 + - rot: 3.141592653589793 rad + pos: 24.5,-31.5 parent: 2 type: Transform - - uid: 787 + - uid: 25639 components: - - pos: 21.5,-37.5 + - rot: 3.141592653589793 rad + pos: 23.5,-31.5 parent: 2 type: Transform - - uid: 1923 + - uid: 25640 components: - - pos: -23.5,-53.5 + - rot: 3.141592653589793 rad + pos: 23.5,-33.5 parent: 2 type: Transform - - uid: 2743 + - uid: 25641 components: - - pos: 4.5,-8.5 + - pos: 29.5,-33.5 parent: 2 type: Transform - - uid: 2832 + - uid: 25642 components: - - rot: 1.5707963267948966 rad - pos: 25.5,-35.5 + - pos: 6.5,-6.5 parent: 2 type: Transform - - uid: 2885 + - uid: 25643 components: - - pos: 28.5,-40.5 + - pos: -0.5,-7.5 parent: 2 type: Transform - - uid: 2887 + - uid: 25644 components: - rot: 1.5707963267948966 rad - pos: 25.5,-38.5 + pos: 19.5,-31.5 parent: 2 type: Transform - - uid: 2889 + - uid: 25645 components: - - rot: 1.5707963267948966 rad - pos: 25.5,-39.5 + - pos: 0.5,-2.5 parent: 2 type: Transform - - uid: 3022 + - uid: 25646 components: - - rot: 1.5707963267948966 rad - pos: 25.5,-36.5 + - pos: 0.5,-3.5 parent: 2 type: Transform - - uid: 10111 + - uid: 25647 components: - - pos: 2.5,-8.5 + - pos: 0.5,-6.5 parent: 2 type: Transform - - uid: 10127 + - uid: 25648 components: - - rot: -1.5707963267948966 rad - pos: -1.5,-7.5 + - rot: 1.5707963267948966 rad + pos: 0.5,-4.5 parent: 2 type: Transform - - uid: 10203 + - uid: 25649 components: - - rot: -1.5707963267948966 rad - pos: -0.5,-7.5 + - pos: -2.5,-6.5 parent: 2 type: Transform - - uid: 11812 + - uid: 25650 components: - - pos: 25.5,-40.5 + - rot: 1.5707963267948966 rad + pos: 19.5,-30.5 parent: 2 type: Transform - - uid: 11942 + - uid: 25651 components: - - rot: 3.141592653589793 rad - pos: 3.5,-8.5 + - pos: -0.5,-2.5 parent: 2 type: Transform - - uid: 12071 + - uid: 25652 components: - - pos: 4.5,-2.5 + - pos: 0.5,-7.5 parent: 2 type: Transform - - uid: 12204 + - uid: 25653 components: - - pos: 1.5,-2.5 + - rot: 1.5707963267948966 rad + pos: 19.5,-29.5 parent: 2 type: Transform - - uid: 13969 + - uid: 25654 components: - - pos: 5.5,-8.5 + - pos: 4.5,-8.5 parent: 2 type: Transform - - uid: 15606 + - uid: 25655 components: - - pos: 23.5,-40.5 + - pos: -2.5,-4.5 parent: 2 type: Transform - - uid: 15607 + - uid: 25656 components: - - pos: 24.5,-40.5 + - pos: -1.5,-7.5 parent: 2 type: Transform - - uid: 15926 + - uid: 25657 components: - - rot: 1.5707963267948966 rad - pos: 25.5,-37.5 + - pos: -16.5,-56.5 parent: 2 type: Transform - - uid: 16101 + - uid: 25658 components: - - pos: -2.5,-5.5 + - pos: -23.5,-53.5 parent: 2 type: Transform - - uid: 19866 + - uid: 25659 components: - - pos: 22.5,-40.5 + - pos: 28.5,-40.5 parent: 2 type: Transform - - uid: 21339 + - uid: 25660 components: - - pos: 0.5,-8.5 + - pos: 2.5,-8.5 parent: 2 type: Transform - - uid: 21340 + - uid: 25661 components: - - pos: -1.5,-2.5 + - rot: 3.141592653589793 rad + pos: 3.5,-8.5 parent: 2 type: Transform - - uid: 21341 + - uid: 25662 components: - - pos: 1.5,-8.5 + - pos: 5.5,-8.5 parent: 2 type: Transform - - uid: 21354 + - uid: 25663 components: - - rot: 1.5707963267948966 rad - pos: 25.5,-34.5 + - pos: 22.5,-40.5 parent: 2 type: Transform - - uid: 21375 + - uid: 25664 components: - - pos: -38.5,-20.5 + - pos: 0.5,-8.5 parent: 2 type: Transform - - uid: 21716 + - uid: 25665 components: - - pos: 5.5,-6.5 + - pos: -1.5,-2.5 parent: 2 type: Transform - - uid: 21832 + - uid: 25666 components: - - pos: 5.5,-5.5 + - pos: -38.5,-20.5 parent: 2 type: Transform - - uid: 22192 + - uid: 25667 components: - - pos: -2.5,-3.5 + - pos: 6.5,-4.5 parent: 2 type: Transform - - uid: 22357 + - uid: 25668 components: - - pos: -0.5,-8.5 + - pos: -2.5,-3.5 parent: 2 type: Transform - - uid: 22572 + - uid: 25669 components: - - pos: 5.5,-7.5 + - pos: 6.5,-5.5 parent: 2 type: Transform - - uid: 22891 + - uid: 25670 components: - pos: -2.5,-2.5 parent: 2 type: Transform - - uid: 23070 - components: - - pos: -2.5,-6.5 - parent: 2 - type: Transform - - uid: 23145 + - uid: 25671 components: - pos: -2.5,-7.5 parent: 2 type: Transform - - uid: 23548 - components: - - pos: 2.5,-2.5 - parent: 2 - type: Transform - - uid: 23549 + - uid: 25672 components: - pos: -38.5,-21.5 parent: 2 type: Transform - - uid: 23623 + - uid: 25673 components: - pos: -37.5,-21.5 parent: 2 type: Transform - - uid: 23624 + - uid: 25674 components: - pos: -36.5,-21.5 parent: 2 type: Transform - - uid: 23637 + - uid: 25675 components: - pos: -35.5,-21.5 parent: 2 type: Transform - - uid: 23666 + - uid: 25676 components: - pos: -34.5,-21.5 parent: 2 type: Transform - - uid: 23667 + - uid: 25677 components: - pos: -33.5,-21.5 parent: 2 type: Transform - - uid: 23676 + - uid: 25678 components: - pos: -33.5,-20.5 parent: 2 type: Transform - - uid: 24483 + - uid: 25679 components: - pos: -22.5,-53.5 parent: 2 type: Transform - - uid: 24486 + - uid: 25680 components: - pos: -23.5,-54.5 parent: 2 type: Transform - - uid: 24489 + - uid: 25681 components: - pos: -22.5,-56.5 parent: 2 type: Transform - - uid: 24541 + - uid: 25682 components: - pos: -23.5,-55.5 parent: 2 type: Transform - - uid: 24560 + - uid: 25683 components: - pos: -23.5,-56.5 parent: 2 type: Transform - - uid: 25546 + - uid: 25684 components: - rot: -1.5707963267948966 rad pos: -51.5,-33.5 parent: 2 type: Transform - - uid: 25547 + - uid: 25685 components: - rot: -1.5707963267948966 rad pos: -50.5,-33.5 parent: 2 type: Transform - - uid: 25548 + - uid: 25686 components: - rot: -1.5707963267948966 rad pos: -49.5,-33.5 parent: 2 type: Transform - - uid: 25549 + - uid: 25687 components: - rot: -1.5707963267948966 rad pos: -49.5,-24.5 parent: 2 type: Transform - - uid: 25550 + - uid: 25688 components: - rot: 1.5707963267948966 rad pos: -49.5,-25.5 parent: 2 type: Transform - - uid: 25551 + - uid: 25689 components: - rot: 1.5707963267948966 rad pos: -45.5,-24.5 parent: 2 type: Transform - - uid: 25552 + - uid: 25690 components: - rot: -1.5707963267948966 rad pos: -48.5,-24.5 parent: 2 type: Transform - - uid: 25553 + - uid: 25691 components: - rot: -1.5707963267948966 rad pos: -48.5,-33.5 parent: 2 type: Transform - - uid: 25554 + - uid: 25692 components: - rot: 1.5707963267948966 rad pos: -52.5,-35.5 parent: 2 type: Transform - - uid: 25555 + - uid: 25693 components: - pos: -42.5,-33.5 parent: 2 type: Transform - - uid: 25556 + - uid: 25694 components: - pos: -43.5,-33.5 parent: 2 type: Transform - - uid: 25557 + - uid: 25695 components: - pos: -45.5,-33.5 parent: 2 type: Transform - - uid: 25558 + - uid: 25696 components: - pos: -46.5,-24.5 parent: 2 type: Transform - - uid: 25559 + - uid: 25697 components: - rot: -1.5707963267948966 rad pos: -63.5,-33.5 parent: 2 type: Transform - - uid: 25560 + - uid: 25698 components: - rot: 3.141592653589793 rad pos: -41.5,-33.5 parent: 2 type: Transform - - uid: 25561 + - uid: 25699 components: - rot: 3.141592653589793 rad pos: -58.5,-43.5 parent: 2 type: Transform - - uid: 25562 + - uid: 25700 components: - rot: 1.5707963267948966 rad pos: -63.5,-38.5 parent: 2 type: Transform - - uid: 25563 + - uid: 25701 components: - rot: 1.5707963267948966 rad pos: -65.5,-35.5 parent: 2 type: Transform - - uid: 25564 + - uid: 25702 components: - rot: 1.5707963267948966 rad pos: -67.5,-35.5 parent: 2 type: Transform - - uid: 25565 + - uid: 25703 components: - rot: 1.5707963267948966 rad pos: -59.5,-38.5 parent: 2 type: Transform - - uid: 25566 + - uid: 25704 components: - pos: -44.5,-33.5 parent: 2 type: Transform - - uid: 25567 + - uid: 25705 components: - rot: 3.141592653589793 rad pos: -59.5,-44.5 parent: 2 type: Transform - - uid: 25568 + - uid: 25706 components: - pos: -61.5,-38.5 parent: 2 type: Transform - - uid: 25569 + - uid: 25707 components: - rot: 1.5707963267948966 rad pos: -59.5,-35.5 parent: 2 type: Transform - - uid: 25570 + - uid: 25708 components: - rot: 1.5707963267948966 rad pos: -66.5,-35.5 parent: 2 type: Transform - - uid: 25571 + - uid: 25709 components: - rot: 1.5707963267948966 rad pos: -64.5,-35.5 parent: 2 type: Transform - - uid: 25572 + - uid: 25710 components: - rot: 3.141592653589793 rad pos: -58.5,-44.5 parent: 2 type: Transform - - uid: 25573 + - uid: 25711 components: - pos: -64.5,-44.5 parent: 2 type: Transform - - uid: 25574 + - uid: 25712 components: - pos: -78.5,-44.5 parent: 2 type: Transform - - uid: 25575 + - uid: 25713 components: - pos: -76.5,-39.5 parent: 2 type: Transform - - uid: 25576 + - uid: 25714 components: - rot: 3.141592653589793 rad pos: -61.5,-26.5 parent: 2 type: Transform - - uid: 25577 + - uid: 25715 components: - pos: -71.5,-36.5 parent: 2 type: Transform - - uid: 25578 + - uid: 25716 components: - pos: -70.5,-36.5 parent: 2 type: Transform - - uid: 25579 + - uid: 25717 components: - pos: -69.5,-36.5 parent: 2 type: Transform - - uid: 25580 + - uid: 25718 components: - pos: -68.5,-36.5 parent: 2 type: Transform - - uid: 25581 + - uid: 25719 components: - pos: -74.5,-36.5 parent: 2 type: Transform - - uid: 25582 + - uid: 25720 components: - pos: -68.5,-35.5 parent: 2 type: Transform - - uid: 25583 + - uid: 25721 components: - pos: -68.5,-34.5 parent: 2 type: Transform - - uid: 25584 + - uid: 25722 components: - pos: -71.5,-34.5 parent: 2 type: Transform - - uid: 25585 + - uid: 25723 components: - rot: -1.5707963267948966 rad pos: -74.5,-43.5 parent: 2 type: Transform - - uid: 25586 + - uid: 25724 components: - rot: -1.5707963267948966 rad pos: -74.5,-39.5 parent: 2 type: Transform - - uid: 25587 + - uid: 25725 components: - rot: -1.5707963267948966 rad pos: -74.5,-38.5 parent: 2 type: Transform - - uid: 25588 + - uid: 25726 components: - rot: -1.5707963267948966 rad pos: -74.5,-37.5 parent: 2 type: Transform - - uid: 25589 + - uid: 25727 components: - pos: -76.5,-30.5 parent: 2 type: Transform - - uid: 25590 + - uid: 25728 components: - pos: -77.5,-30.5 parent: 2 type: Transform - - uid: 25591 + - uid: 25729 components: - pos: -64.5,-46.5 parent: 2 type: Transform - - uid: 25592 + - uid: 25730 components: - rot: 1.5707963267948966 rad pos: -64.5,-38.5 parent: 2 type: Transform - - uid: 25593 + - uid: 25731 components: - rot: -1.5707963267948966 rad pos: -78.5,-43.5 parent: 2 type: Transform - - uid: 25594 + - uid: 25732 components: - rot: -1.5707963267948966 rad pos: -78.5,-39.5 parent: 2 type: Transform - - uid: 25595 + - uid: 25733 components: - pos: -2.5,16.5 parent: 2 type: Transform - - uid: 25596 + - uid: 25734 components: - pos: 52.5,-88.5 parent: 2 type: Transform - - uid: 25597 + - uid: 25735 components: - pos: 51.5,-88.5 parent: 2 type: Transform - - uid: 25598 + - uid: 25736 components: - pos: 50.5,-88.5 parent: 2 type: Transform - - uid: 25599 + - uid: 25737 components: - pos: 50.5,-90.5 parent: 2 type: Transform - - uid: 25600 + - uid: 25738 components: - pos: 51.5,-90.5 parent: 2 type: Transform - - uid: 25601 + - uid: 25739 components: - pos: 52.5,-90.5 parent: 2 type: Transform - - uid: 25602 + - uid: 25740 components: - pos: 50.5,-83.5 parent: 2 type: Transform - - uid: 25603 + - uid: 25741 components: - pos: 52.5,-81.5 parent: 2 type: Transform - - uid: 25604 + - uid: 25742 components: - pos: 50.5,-81.5 parent: 2 type: Transform - - uid: 25605 + - uid: 25743 components: - pos: 51.5,-83.5 parent: 2 type: Transform - - uid: 25606 + - uid: 25744 components: - pos: 51.5,-81.5 parent: 2 type: Transform - - uid: 25607 + - uid: 25745 components: - pos: 52.5,-83.5 parent: 2 type: Transform - - uid: 25608 + - uid: 25746 components: - pos: 70.5,-26.5 parent: 2 type: Transform - - uid: 25609 + - uid: 25747 components: - pos: 64.5,-29.5 parent: 2 type: Transform - - uid: 25610 + - uid: 25748 components: - pos: 64.5,-28.5 parent: 2 type: Transform - - uid: 25611 + - uid: 25749 components: - pos: 66.5,-26.5 parent: 2 type: Transform - - uid: 25612 + - uid: 25750 components: - pos: 67.5,-26.5 parent: 2 type: Transform - - uid: 25613 + - uid: 25751 components: - rot: -1.5707963267948966 rad pos: -48.5,41.5 parent: 2 type: Transform - - uid: 25614 + - uid: 25752 components: - rot: -1.5707963267948966 rad pos: -49.5,41.5 parent: 2 type: Transform - - uid: 25615 + - uid: 25753 components: - rot: -1.5707963267948966 rad pos: -50.5,41.5 parent: 2 type: Transform - - uid: 25616 + - uid: 25754 components: - rot: -1.5707963267948966 rad pos: -50.5,45.5 parent: 2 type: Transform - - uid: 25617 + - uid: 25755 components: - rot: -1.5707963267948966 rad pos: -50.5,46.5 parent: 2 type: Transform - - uid: 25618 + - uid: 25756 components: - rot: -1.5707963267948966 rad pos: -53.5,41.5 parent: 2 type: Transform - - uid: 25619 + - uid: 25757 components: - rot: -1.5707963267948966 rad pos: -52.5,41.5 parent: 2 type: Transform - - uid: 25620 + - uid: 25758 components: - rot: -1.5707963267948966 rad pos: -51.5,41.5 parent: 2 type: Transform - - uid: 25621 + - uid: 25759 components: - rot: -1.5707963267948966 rad pos: -51.5,44.5 parent: 2 type: Transform - - uid: 25622 + - uid: 25760 components: - rot: -1.5707963267948966 rad pos: -52.5,44.5 parent: 2 type: Transform - - uid: 25623 + - uid: 25761 components: - rot: -1.5707963267948966 rad pos: -53.5,44.5 parent: 2 type: Transform - - uid: 25624 + - uid: 25762 components: - rot: -1.5707963267948966 rad pos: -48.5,45.5 parent: 2 type: Transform - - uid: 25625 + - uid: 25763 components: - rot: -1.5707963267948966 rad pos: -43.5,40.5 parent: 2 type: Transform - - uid: 25626 + - uid: 25764 components: - rot: -1.5707963267948966 rad pos: -44.5,40.5 parent: 2 type: Transform - - uid: 25627 + - uid: 25765 components: - rot: 1.5707963267948966 rad pos: 29.5,-64.5 parent: 2 type: Transform - - uid: 25628 + - uid: 25766 components: - rot: 3.141592653589793 rad pos: 34.5,-10.5 parent: 2 type: Transform - - uid: 25629 + - uid: 25767 components: - rot: 3.141592653589793 rad pos: 23.5,-57.5 parent: 2 type: Transform - - uid: 25630 + - uid: 25768 components: - pos: 11.5,-30.5 parent: 2 type: Transform - - uid: 25631 + - uid: 25769 components: - rot: -1.5707963267948966 rad pos: 37.5,3.5 parent: 2 type: Transform - - uid: 25632 + - uid: 25770 components: - pos: 72.5,-42.5 parent: 2 type: Transform - - uid: 25633 + - uid: 25771 components: - pos: 71.5,-42.5 parent: 2 type: Transform - - uid: 25634 + - uid: 25772 components: - rot: -1.5707963267948966 rad pos: 36.5,9.5 parent: 2 type: Transform - - uid: 25635 + - uid: 25773 components: - rot: -1.5707963267948966 rad pos: 0.5,-79.5 parent: 2 type: Transform - - uid: 25636 + - uid: 25774 components: - rot: 3.141592653589793 rad pos: 26.5,-61.5 parent: 2 type: Transform - - uid: 25637 + - uid: 25775 components: - rot: 3.141592653589793 rad pos: 30.5,-9.5 parent: 2 type: Transform - - uid: 25638 + - uid: 25776 components: - rot: 3.141592653589793 rad pos: 33.5,-61.5 parent: 2 type: Transform - - uid: 25639 + - uid: 25777 components: - rot: -1.5707963267948966 rad pos: 65.5,-38.5 parent: 2 type: Transform - - uid: 25640 + - uid: 25778 components: - rot: -1.5707963267948966 rad pos: 37.5,6.5 parent: 2 type: Transform - - uid: 25641 + - uid: 25779 components: - pos: 66.5,-42.5 parent: 2 type: Transform - - uid: 25642 + - uid: 25780 components: - rot: 3.141592653589793 rad pos: 24.5,-61.5 parent: 2 type: Transform - - uid: 25643 + - uid: 25781 components: - pos: 67.5,-42.5 parent: 2 type: Transform - - uid: 25644 + - uid: 25782 components: - rot: -1.5707963267948966 rad pos: 33.5,12.5 parent: 2 type: Transform - - uid: 25645 + - uid: 25783 components: - rot: -1.5707963267948966 rad pos: -25.5,-83.5 parent: 2 type: Transform - - uid: 25646 + - uid: 25784 components: - pos: 30.5,-26.5 parent: 2 type: Transform - - uid: 25647 + - uid: 25785 components: - pos: 19.5,-26.5 parent: 2 type: Transform - - uid: 25648 + - uid: 25786 components: - pos: 18.5,-67.5 parent: 2 type: Transform - - uid: 25649 + - uid: 25787 components: - rot: -1.5707963267948966 rad pos: 34.5,-83.5 parent: 2 type: Transform - - uid: 25650 + - uid: 25788 components: - rot: 3.141592653589793 rad pos: 26.5,24.5 parent: 2 type: Transform - - uid: 25651 + - uid: 25789 components: - pos: -16.5,-80.5 parent: 2 type: Transform - - uid: 25652 + - uid: 25790 components: - pos: -13.5,-80.5 parent: 2 type: Transform - - uid: 25653 + - uid: 25791 components: - rot: 3.141592653589793 rad pos: 31.5,-19.5 parent: 2 type: Transform - - uid: 25654 + - uid: 25792 components: - pos: 38.5,17.5 parent: 2 type: Transform - - uid: 25655 + - uid: 25793 components: - pos: 30.5,9.5 parent: 2 type: Transform - - uid: 25656 + - uid: 25794 components: - pos: -14.5,-80.5 parent: 2 type: Transform - - uid: 25657 + - uid: 25795 components: - pos: -16.5,-74.5 parent: 2 type: Transform - - uid: 25658 + - uid: 25796 components: - pos: -13.5,-75.5 parent: 2 type: Transform - - uid: 25659 + - uid: 25797 components: - rot: -1.5707963267948966 rad pos: -31.5,-80.5 parent: 2 type: Transform - - uid: 25660 + - uid: 25798 components: - pos: -27.5,-84.5 parent: 2 type: Transform - - uid: 25661 + - uid: 25799 components: - pos: -27.5,-85.5 parent: 2 type: Transform - - uid: 25662 + - uid: 25800 components: - rot: -1.5707963267948966 rad pos: -18.5,-83.5 parent: 2 type: Transform - - uid: 25663 + - uid: 25801 components: - pos: -27.5,-90.5 parent: 2 type: Transform - - uid: 25664 + - uid: 25802 components: - rot: -1.5707963267948966 rad pos: 43.5,49.5 parent: 2 type: Transform - - uid: 25665 + - uid: 25803 components: - rot: 3.141592653589793 rad pos: 24.5,24.5 parent: 2 type: Transform - - uid: 25666 + - uid: 25804 components: - rot: 1.5707963267948966 rad pos: 27.5,19.5 parent: 2 type: Transform - - uid: 25667 + - uid: 25805 components: - rot: 1.5707963267948966 rad pos: 33.5,32.5 parent: 2 type: Transform - - uid: 25668 + - uid: 25806 components: - rot: 1.5707963267948966 rad pos: 16.5,15.5 parent: 2 type: Transform - - uid: 25669 + - uid: 25807 components: - rot: 3.141592653589793 rad pos: 39.5,12.5 parent: 2 type: Transform - - uid: 25670 + - uid: 25808 components: - pos: 42.5,51.5 parent: 2 type: Transform - - uid: 25671 + - uid: 25809 components: - pos: -15.5,-2.5 parent: 2 type: Transform - - uid: 25672 + - uid: 25810 components: - pos: -18.5,-86.5 parent: 2 type: Transform - - uid: 25673 + - uid: 25811 components: - pos: -22.5,-48.5 parent: 2 type: Transform - - uid: 25674 + - uid: 25812 components: - pos: 3.5,15.5 parent: 2 type: Transform - - uid: 25676 + - uid: 25813 components: - pos: 7.5,-71.5 parent: 2 type: Transform - - uid: 25677 + - uid: 25814 components: - pos: -1.5,-30.5 parent: 2 type: Transform - - uid: 25678 + - uid: 25815 components: - pos: -23.5,5.5 parent: 2 type: Transform - - uid: 25679 + - uid: 25816 components: - pos: 44.5,-25.5 parent: 2 type: Transform - - uid: 25680 + - uid: 25817 components: - pos: 49.5,-25.5 parent: 2 type: Transform - - uid: 25681 + - uid: 25818 components: - pos: 49.5,-23.5 parent: 2 type: Transform - - uid: 25682 + - uid: 25819 components: - pos: 39.5,-24.5 parent: 2 type: Transform - - uid: 25683 - components: - - pos: 28.5,-33.5 - parent: 2 - type: Transform - - uid: 25684 + - uid: 25820 components: - pos: 27.5,26.5 parent: 2 type: Transform - - uid: 25685 + - uid: 25821 components: - pos: 31.5,26.5 parent: 2 type: Transform - - uid: 25686 + - uid: 25822 components: - pos: 31.5,25.5 parent: 2 type: Transform - - uid: 25687 + - uid: 25823 components: - rot: 3.141592653589793 rad pos: 30.5,33.5 parent: 2 type: Transform - - uid: 25688 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-21.5 - parent: 2 - type: Transform - - uid: 25689 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-20.5 - parent: 2 - type: Transform - - uid: 25690 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-22.5 - parent: 2 - type: Transform - - uid: 25691 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-19.5 - parent: 2 - type: Transform - - uid: 25692 + - uid: 25824 components: - rot: -1.5707963267948966 rad pos: 4.5,-18.5 parent: 2 type: Transform - - uid: 25693 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-18.5 - parent: 2 - type: Transform - - uid: 25694 + - uid: 25825 components: - pos: 19.5,15.5 parent: 2 type: Transform - - uid: 25695 + - uid: 25826 components: - rot: -1.5707963267948966 rad pos: 20.5,-31.5 parent: 2 type: Transform - - uid: 25696 + - uid: 25827 components: - pos: 3.5,18.5 parent: 2 type: Transform - - uid: 25697 + - uid: 25828 components: - pos: 4.5,18.5 parent: 2 type: Transform - - uid: 25698 + - uid: 25829 components: - pos: -15.5,-0.5 parent: 2 type: Transform - - uid: 25699 + - uid: 25830 components: - pos: 13.5,15.5 parent: 2 type: Transform - - uid: 25700 + - uid: 25831 components: - pos: -23.5,-1.5 parent: 2 type: Transform - - uid: 25701 + - uid: 25832 components: - pos: -23.5,-3.5 parent: 2 type: Transform - - uid: 25702 + - uid: 25833 components: - pos: -20.5,-3.5 parent: 2 type: Transform - - uid: 25703 + - uid: 25834 components: - pos: -20.5,-2.5 parent: 2 type: Transform - - uid: 25704 + - uid: 25835 components: - pos: -18.5,-1.5 parent: 2 type: Transform - - uid: 25705 + - uid: 25836 components: - rot: 3.141592653589793 rad pos: 29.5,-20.5 parent: 2 type: Transform - - uid: 25706 + - uid: 25837 components: - rot: -1.5707963267948966 rad pos: 44.5,49.5 parent: 2 type: Transform - - uid: 25707 + - uid: 25838 components: - rot: -1.5707963267948966 rad pos: 43.5,42.5 parent: 2 type: Transform - - uid: 25708 + - uid: 25839 components: - rot: -1.5707963267948966 rad pos: 38.5,42.5 parent: 2 type: Transform - - uid: 25709 + - uid: 25840 components: - rot: -1.5707963267948966 rad pos: 34.5,42.5 parent: 2 type: Transform - - uid: 25710 + - uid: 25841 components: - rot: -1.5707963267948966 rad pos: 33.5,43.5 parent: 2 type: Transform - - uid: 25711 + - uid: 25842 components: - pos: 35.5,50.5 parent: 2 type: Transform - - uid: 25712 + - uid: 25843 components: - pos: 35.5,52.5 parent: 2 type: Transform - - uid: 25713 + - uid: 25844 components: - pos: 36.5,52.5 parent: 2 type: Transform - - uid: 25714 + - uid: 25845 components: - pos: 34.5,48.5 parent: 2 type: Transform - - uid: 25715 + - uid: 25846 components: - pos: -15.5,-1.5 parent: 2 type: Transform - - uid: 25716 + - uid: 25847 components: - rot: -1.5707963267948966 rad pos: 36.5,11.5 parent: 2 type: Transform - - uid: 25717 + - uid: 25848 components: - rot: 3.141592653589793 rad pos: 33.5,-19.5 parent: 2 type: Transform - - uid: 25718 + - uid: 25849 components: - rot: 1.5707963267948966 rad pos: 29.5,-63.5 parent: 2 type: Transform - - uid: 25719 + - uid: 25850 components: - rot: -1.5707963267948966 rad pos: 39.5,3.5 parent: 2 type: Transform - - uid: 25720 + - uid: 25851 components: - rot: -1.5707963267948966 rad pos: 1.5,-76.5 parent: 2 type: Transform - - uid: 25721 + - uid: 25852 components: - rot: 3.141592653589793 rad pos: -15.5,5.5 parent: 2 type: Transform - - uid: 25722 + - uid: 25853 components: - rot: 3.141592653589793 rad pos: 17.5,-21.5 parent: 2 type: Transform - - uid: 25723 + - uid: 25854 components: - rot: 3.141592653589793 rad pos: 17.5,-22.5 parent: 2 type: Transform - - uid: 25724 + - uid: 25855 components: - rot: 3.141592653589793 rad pos: 30.5,-19.5 parent: 2 type: Transform - - uid: 25725 + - uid: 25856 components: - pos: 28.5,-13.5 parent: 2 type: Transform - - uid: 25726 + - uid: 25857 components: - rot: 3.141592653589793 rad pos: 20.5,-20.5 parent: 2 type: Transform - - uid: 25727 + - uid: 25858 components: - rot: 3.141592653589793 rad pos: 17.5,-23.5 parent: 2 type: Transform - - uid: 25728 + - uid: 25859 components: - rot: -1.5707963267948966 rad pos: -0.5,-84.5 parent: 2 type: Transform - - uid: 25729 + - uid: 25860 components: - rot: 3.141592653589793 rad pos: 28.5,-61.5 parent: 2 type: Transform - - uid: 25730 + - uid: 25861 components: - pos: -23.5,1.5 parent: 2 type: Transform - - uid: 25731 + - uid: 25862 components: - pos: 8.5,-71.5 parent: 2 type: Transform - - uid: 25732 + - uid: 25863 components: - pos: 5.5,-80.5 parent: 2 type: Transform - - uid: 25733 + - uid: 25864 components: - rot: -1.5707963267948966 rad pos: 0.5,-77.5 parent: 2 type: Transform - - uid: 25734 + - uid: 25865 components: - pos: -18.5,-2.5 parent: 2 type: Transform - - uid: 25735 + - uid: 25866 components: - rot: -1.5707963267948966 rad pos: 33.5,10.5 parent: 2 type: Transform - - uid: 25736 + - uid: 25867 components: - rot: -1.5707963267948966 rad pos: -28.5,-81.5 parent: 2 type: Transform - - uid: 25737 + - uid: 25868 components: - rot: -1.5707963267948966 rad pos: -19.5,-81.5 parent: 2 type: Transform - - uid: 25738 + - uid: 25869 components: - rot: -1.5707963267948966 rad pos: -24.5,-81.5 parent: 2 type: Transform - - uid: 25739 + - uid: 25870 components: - pos: -13.5,-78.5 parent: 2 type: Transform - - uid: 25740 + - uid: 25871 components: - pos: -21.5,-57.5 parent: 2 type: Transform - - uid: 25742 + - uid: 25872 components: - pos: 29.5,33.5 parent: 2 type: Transform - - uid: 25743 + - uid: 25873 components: - rot: 1.5707963267948966 rad pos: 38.5,-17.5 parent: 2 type: Transform - - uid: 25744 + - uid: 25874 components: - rot: 1.5707963267948966 rad pos: 37.5,-19.5 parent: 2 type: Transform - - uid: 25745 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-24.5 - parent: 2 - type: Transform - - uid: 25746 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-24.5 - parent: 2 - type: Transform - - uid: 25747 + - uid: 25875 components: - rot: 3.141592653589793 rad pos: 3.5,-18.5 parent: 2 type: Transform - - uid: 25749 + - uid: 25876 components: - pos: 33.5,-28.5 parent: 2 type: Transform - - uid: 25751 + - uid: 25877 components: - pos: 20.5,-33.5 parent: 2 type: Transform - - uid: 25752 + - uid: 25878 components: - pos: 33.5,-29.5 parent: 2 type: Transform - - uid: 25753 + - uid: 25879 components: - pos: 40.5,-30.5 parent: 2 type: Transform - - uid: 25754 + - uid: 25880 components: - pos: 3.5,22.5 parent: 2 type: Transform - - uid: 25755 + - uid: 25881 components: - pos: 40.5,-31.5 parent: 2 type: Transform - - uid: 25756 + - uid: 25882 components: - pos: 40.5,-29.5 parent: 2 type: Transform - - uid: 25757 + - uid: 25883 components: - pos: 32.5,-26.5 parent: 2 type: Transform - - uid: 25758 + - uid: 25884 components: - rot: 3.141592653589793 rad pos: 42.5,17.5 parent: 2 type: Transform - - uid: 25759 + - uid: 25885 components: - pos: 43.5,16.5 parent: 2 type: Transform - - uid: 25760 + - uid: 25886 components: - pos: 43.5,9.5 parent: 2 type: Transform - - uid: 25761 + - uid: 25887 components: - rot: 3.141592653589793 rad pos: 43.5,3.5 parent: 2 type: Transform - - uid: 25762 + - uid: 25888 components: - pos: 28.5,-10.5 parent: 2 type: Transform - - uid: 25763 + - uid: 25889 components: - rot: 3.141592653589793 rad pos: 13.5,-23.5 parent: 2 type: Transform - - uid: 25764 + - uid: 25890 components: - rot: 3.141592653589793 rad pos: 13.5,-20.5 parent: 2 type: Transform - - uid: 25765 + - uid: 25891 components: - rot: 3.141592653589793 rad pos: 13.5,-19.5 parent: 2 type: Transform - - uid: 25766 + - uid: 25892 components: - rot: 3.141592653589793 rad pos: 13.5,-17.5 parent: 2 type: Transform - - uid: 25767 + - uid: 25893 components: - rot: 3.141592653589793 rad pos: 13.5,-16.5 parent: 2 type: Transform - - uid: 25768 + - uid: 25894 components: - rot: 3.141592653589793 rad pos: 13.5,-15.5 parent: 2 type: Transform - - uid: 25769 + - uid: 25895 components: - pos: 25.5,-26.5 parent: 2 type: Transform - - uid: 25770 + - uid: 25896 components: - pos: 21.5,-26.5 parent: 2 type: Transform - - uid: 25771 + - uid: 25897 components: - rot: 1.5707963267948966 rad pos: 33.5,-33.5 parent: 2 type: Transform - - uid: 25772 + - uid: 25898 components: - rot: -1.5707963267948966 rad pos: 38.5,6.5 parent: 2 type: Transform - - uid: 25773 + - uid: 25899 components: - rot: -1.5707963267948966 rad pos: 39.5,6.5 parent: 2 type: Transform - - uid: 25774 + - uid: 25900 components: - rot: -1.5707963267948966 rad pos: 38.5,3.5 parent: 2 type: Transform - - uid: 25775 + - uid: 25901 components: - pos: 29.5,-9.5 parent: 2 type: Transform - - uid: 25776 + - uid: 25902 components: - rot: 3.141592653589793 rad pos: -15.5,-3.5 parent: 2 type: Transform - - uid: 25777 + - uid: 25903 components: - rot: 3.141592653589793 rad pos: -16.5,5.5 parent: 2 type: Transform - - uid: 25778 + - uid: 25904 components: - rot: -1.5707963267948966 rad pos: 36.5,10.5 parent: 2 type: Transform - - uid: 25779 + - uid: 25905 components: - pos: 38.5,-24.5 parent: 2 type: Transform - - uid: 25780 + - uid: 25906 components: - pos: -15.5,-2.5 parent: 2 type: Transform - - uid: 25781 + - uid: 25907 components: - pos: 41.5,52.5 parent: 2 type: Transform - - uid: 25782 + - uid: 25908 components: - rot: -1.5707963267948966 rad pos: 5.5,-24.5 parent: 2 type: Transform - - uid: 25783 + - uid: 25909 components: - rot: 3.141592653589793 rad pos: 27.5,24.5 parent: 2 type: Transform - - uid: 25784 + - uid: 25910 components: - rot: -1.5707963267948966 rad pos: 9.5,23.5 parent: 2 type: Transform - - uid: 25785 + - uid: 25911 components: - pos: -0.5,15.5 parent: 2 type: Transform - - uid: 25786 + - uid: 25912 components: - rot: -1.5707963267948966 rad pos: 5.5,23.5 parent: 2 type: Transform - - uid: 25787 + - uid: 25913 components: - rot: -1.5707963267948966 rad pos: 4.5,23.5 parent: 2 type: Transform - - uid: 25788 + - uid: 25914 components: - rot: -1.5707963267948966 rad pos: 3.5,23.5 parent: 2 type: Transform - - uid: 25789 + - uid: 25915 components: - pos: 42.5,50.5 parent: 2 type: Transform - - uid: 25790 + - uid: 25916 components: - pos: 27.5,-15.5 parent: 2 type: Transform - - uid: 25791 + - uid: 25917 components: - pos: 2.5,22.5 parent: 2 type: Transform - - uid: 25792 + - uid: 25918 components: - pos: 1.5,22.5 parent: 2 type: Transform - - uid: 25793 + - uid: 25919 components: - pos: -2.5,-30.5 parent: 2 type: Transform - - uid: 25794 + - uid: 25920 components: - pos: 1.5,-39.5 parent: 2 type: Transform - - uid: 25795 + - uid: 25921 components: - pos: 5.5,-40.5 parent: 2 type: Transform - - uid: 25796 + - uid: 25922 components: - rot: 3.141592653589793 rad pos: 3.5,12.5 parent: 2 type: Transform - - uid: 25797 + - uid: 25923 components: - rot: -1.5707963267948966 rad pos: 63.5,18.5 parent: 2 type: Transform - - uid: 25798 + - uid: 25924 components: - rot: -1.5707963267948966 rad pos: 30.5,11.5 parent: 2 type: Transform - - uid: 25799 + - uid: 25925 components: - pos: 7.5,-24.5 parent: 2 type: Transform - - uid: 25800 + - uid: 25926 components: - pos: 9.5,-24.5 parent: 2 type: Transform - - uid: 25801 + - uid: 25927 components: - rot: 3.141592653589793 rad pos: 3.5,-24.5 parent: 2 type: Transform - - uid: 25802 + - uid: 25928 components: - pos: 1.5,-29.5 parent: 2 type: Transform - - uid: 25803 + - uid: 25929 components: - pos: 27.5,-14.5 parent: 2 type: Transform - - uid: 25804 + - uid: 25930 components: - rot: -1.5707963267948966 rad pos: -16.5,-57.5 parent: 2 type: Transform - - uid: 25805 - components: - - rot: 3.141592653589793 rad - pos: 23.5,-33.5 - parent: 2 - type: Transform - - uid: 25806 + - uid: 25931 components: - rot: 3.141592653589793 rad pos: 21.5,-33.5 parent: 2 type: Transform - - uid: 25807 + - uid: 25932 components: - pos: 13.5,-24.5 parent: 2 type: Transform - - uid: 25808 + - uid: 25933 components: - pos: 37.5,-24.5 parent: 2 type: Transform - - uid: 25809 + - uid: 25934 components: - rot: -1.5707963267948966 rad pos: 36.5,12.5 parent: 2 type: Transform - - uid: 25810 + - uid: 25935 components: - pos: 3.5,19.5 parent: 2 type: Transform - - uid: 25811 + - uid: 25936 components: - pos: 3.5,21.5 parent: 2 type: Transform - - uid: 25812 + - uid: 25937 components: - pos: 13.5,19.5 parent: 2 type: Transform - - uid: 25813 + - uid: 25938 components: - pos: 13.5,20.5 parent: 2 type: Transform - - uid: 25814 + - uid: 25939 components: - pos: 13.5,21.5 parent: 2 type: Transform - - uid: 25815 + - uid: 25940 components: - pos: 20.5,-38.5 parent: 2 type: Transform - - uid: 25816 + - uid: 25941 components: - pos: 6.5,-24.5 parent: 2 type: Transform - - uid: 25817 + - uid: 25942 components: - pos: -13.5,-77.5 parent: 2 type: Transform - - uid: 25818 + - uid: 25943 components: - rot: -1.5707963267948966 rad pos: -27.5,-83.5 parent: 2 type: Transform - - uid: 25819 + - uid: 25944 components: - rot: -1.5707963267948966 rad pos: -24.5,-82.5 parent: 2 type: Transform - - uid: 25820 + - uid: 25945 components: - rot: -1.5707963267948966 rad pos: -27.5,-81.5 parent: 2 type: Transform - - uid: 25821 + - uid: 25946 components: - pos: 1.5,-32.5 parent: 2 type: Transform - - uid: 25822 + - uid: 25947 components: - rot: 1.5707963267948966 rad pos: 22.5,25.5 parent: 2 type: Transform - - uid: 25823 + - uid: 25948 components: - rot: -1.5707963267948966 rad pos: 33.5,11.5 parent: 2 type: Transform - - uid: 25824 + - uid: 25949 components: - rot: -1.5707963267948966 rad pos: 30.5,13.5 parent: 2 type: Transform - - uid: 25825 + - uid: 25950 components: - rot: 3.141592653589793 rad pos: 23.5,-55.5 parent: 2 type: Transform - - uid: 25826 + - uid: 25951 components: - rot: 3.141592653589793 rad pos: 23.5,-56.5 parent: 2 type: Transform - - uid: 25827 + - uid: 25952 components: - pos: 18.5,-64.5 parent: 2 type: Transform - - uid: 25828 + - uid: 25953 components: - pos: 15.5,-62.5 parent: 2 type: Transform - - uid: 25829 + - uid: 25954 components: - pos: 15.5,-61.5 parent: 2 type: Transform - - uid: 25830 + - uid: 25955 components: - pos: 17.5,-56.5 parent: 2 type: Transform - - uid: 25831 + - uid: 25956 components: - pos: 15.5,-60.5 parent: 2 type: Transform - - uid: 25832 + - uid: 25957 components: - pos: 15.5,-59.5 parent: 2 type: Transform - - uid: 25833 + - uid: 25958 components: - pos: 16.5,-59.5 parent: 2 type: Transform - - uid: 25834 + - uid: 25959 components: - pos: 16.5,-58.5 parent: 2 type: Transform - - uid: 25835 + - uid: 25960 components: - pos: 16.5,-57.5 parent: 2 type: Transform - - uid: 25836 + - uid: 25961 components: - pos: 16.5,-56.5 parent: 2 type: Transform - - uid: 25837 + - uid: 25962 components: - pos: 17.5,-67.5 parent: 2 type: Transform - - uid: 25838 + - uid: 25963 components: - rot: 3.141592653589793 rad pos: 22.5,24.5 parent: 2 type: Transform - - uid: 25839 + - uid: 25964 components: - rot: 3.141592653589793 rad pos: 27.5,-61.5 parent: 2 type: Transform - - uid: 25840 + - uid: 25965 components: - rot: 1.5707963267948966 rad pos: 32.5,-64.5 parent: 2 type: Transform - - uid: 25841 + - uid: 25966 components: - rot: 3.141592653589793 rad pos: 34.5,-14.5 parent: 2 type: Transform - - uid: 25842 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-29.5 - parent: 2 - type: Transform - - uid: 25843 + - uid: 25967 components: - pos: 40.5,-23.5 parent: 2 type: Transform - - uid: 25844 + - uid: 25968 components: - pos: 40.5,-24.5 parent: 2 type: Transform - - uid: 25845 + - uid: 25969 components: - pos: 49.5,-24.5 parent: 2 type: Transform - - uid: 25846 + - uid: 25970 components: - pos: 43.5,-26.5 parent: 2 type: Transform - - uid: 25847 + - uid: 25971 components: - pos: 17.5,-63.5 parent: 2 type: Transform - - uid: 25848 + - uid: 25972 components: - rot: 3.141592653589793 rad pos: 23.5,24.5 parent: 2 type: Transform - - uid: 25849 + - uid: 25973 components: - pos: -2.5,18.5 parent: 2 type: Transform - - uid: 25850 + - uid: 25974 components: - rot: -1.5707963267948966 rad pos: -16.5,-58.5 parent: 2 type: Transform - - uid: 25851 + - uid: 25975 components: - rot: -1.5707963267948966 rad pos: 30.5,10.5 parent: 2 type: Transform - - uid: 25852 + - uid: 25976 components: - pos: 39.5,17.5 parent: 2 type: Transform - - uid: 25853 + - uid: 25977 components: - pos: 37.5,17.5 parent: 2 type: Transform - - uid: 25854 + - uid: 25978 components: - rot: -1.5707963267948966 rad pos: 33.5,18.5 parent: 2 type: Transform - - uid: 25855 + - uid: 25979 components: - rot: -1.5707963267948966 rad pos: 63.5,15.5 parent: 2 type: Transform - - uid: 25856 + - uid: 25980 components: - rot: 1.5707963267948966 rad pos: 27.5,16.5 parent: 2 type: Transform - - uid: 25857 + - uid: 25981 components: - rot: -1.5707963267948966 rad pos: 36.5,3.5 parent: 2 type: Transform - - uid: 25858 + - uid: 25982 components: - rot: 1.5707963267948966 rad pos: 38.5,9.5 parent: 2 type: Transform - - uid: 25859 + - uid: 25983 components: - rot: -1.5707963267948966 rad pos: 36.5,6.5 parent: 2 type: Transform - - uid: 25860 + - uid: 25984 components: - rot: 1.5707963267948966 rad pos: 32.5,-33.5 parent: 2 type: Transform - - uid: 25861 + - uid: 25985 components: - pos: 25.5,-28.5 parent: 2 type: Transform - - uid: 25862 + - uid: 25986 components: - pos: 20.5,-26.5 parent: 2 type: Transform - - uid: 25863 + - uid: 25987 components: - pos: 17.5,-26.5 parent: 2 type: Transform - - uid: 25864 + - uid: 25988 components: - pos: 18.5,-26.5 parent: 2 type: Transform - - uid: 25865 + - uid: 25989 components: - rot: 3.141592653589793 rad pos: 34.5,-15.5 parent: 2 type: Transform - - uid: 25866 + - uid: 25990 components: - rot: 3.141592653589793 rad pos: 37.5,-20.5 parent: 2 type: Transform - - uid: 25867 + - uid: 25991 components: - rot: 3.141592653589793 rad pos: 37.5,-20.5 parent: 2 type: Transform - - uid: 25868 + - uid: 25992 components: - rot: 3.141592653589793 rad pos: 37.5,-23.5 parent: 2 type: Transform - - uid: 25869 + - uid: 25993 components: - rot: 3.141592653589793 rad pos: 40.5,3.5 parent: 2 type: Transform - - uid: 25870 + - uid: 25994 components: - rot: 3.141592653589793 rad pos: 43.5,4.5 parent: 2 type: Transform - - uid: 25871 + - uid: 25995 components: - rot: 3.141592653589793 rad pos: 43.5,12.5 parent: 2 type: Transform - - uid: 25872 + - uid: 25996 components: - pos: 44.5,16.5 parent: 2 type: Transform - - uid: 25873 + - uid: 25997 components: - pos: 43.5,13.5 parent: 2 type: Transform - - uid: 25874 + - uid: 25998 components: - pos: 45.5,16.5 parent: 2 type: Transform - - uid: 25875 + - uid: 25999 components: - pos: 46.5,16.5 parent: 2 type: Transform - - uid: 25876 + - uid: 26000 components: - pos: 46.5,13.5 parent: 2 type: Transform - - uid: 25877 + - uid: 26001 components: - pos: 45.5,13.5 parent: 2 type: Transform - - uid: 25878 + - uid: 26002 components: - rot: 3.141592653589793 rad pos: 21.5,-39.5 parent: 2 type: Transform - - uid: 25879 + - uid: 26003 components: - pos: 20.5,-37.5 parent: 2 type: Transform - - uid: 25880 + - uid: 26004 components: - pos: 30.5,-34.5 parent: 2 type: Transform - - uid: 25881 + - uid: 26005 components: - pos: 30.5,-35.5 parent: 2 type: Transform - - uid: 25882 + - uid: 26006 components: - pos: 30.5,-36.5 parent: 2 type: Transform - - uid: 25883 + - uid: 26007 components: - pos: 30.5,-37.5 parent: 2 type: Transform - - uid: 25885 + - uid: 26008 components: - pos: 30.5,-33.5 parent: 2 type: Transform - - uid: 25886 + - uid: 26009 components: - pos: 24.5,-33.5 parent: 2 type: Transform - - uid: 25888 + - uid: 26010 components: - pos: 21.5,-31.5 parent: 2 type: Transform - - uid: 25889 + - uid: 26011 components: - pos: 28.5,9.5 parent: 2 type: Transform - - uid: 25890 + - uid: 26012 components: - pos: 31.5,9.5 parent: 2 type: Transform - - uid: 25891 + - uid: 26013 components: - pos: 35.5,9.5 parent: 2 type: Transform - - uid: 25892 + - uid: 26014 components: - pos: 35.5,8.5 parent: 2 type: Transform - - uid: 25893 + - uid: 26015 components: - pos: 35.5,6.5 parent: 2 type: Transform - - uid: 25894 + - uid: 26016 components: - pos: 23.5,19.5 parent: 2 type: Transform - - uid: 25895 + - uid: 26017 components: - pos: 17.5,-38.5 parent: 2 type: Transform - - uid: 25896 + - uid: 26018 components: - pos: 33.5,-38.5 parent: 2 type: Transform - - uid: 25897 + - uid: 26019 components: - rot: 3.141592653589793 rad pos: 17.5,-37.5 parent: 2 type: Transform - - uid: 25898 + - uid: 26020 components: - pos: 31.5,22.5 parent: 2 type: Transform - - uid: 25899 + - uid: 26021 components: - pos: 31.5,23.5 parent: 2 type: Transform - - uid: 25900 + - uid: 26022 components: - pos: 31.5,24.5 parent: 2 type: Transform - - uid: 25901 + - uid: 26023 components: - pos: 33.5,26.5 parent: 2 type: Transform - - uid: 25902 + - uid: 26024 components: - pos: 33.5,28.5 parent: 2 type: Transform - - uid: 25903 + - uid: 26025 components: - rot: 3.141592653589793 rad pos: 25.5,27.5 parent: 2 type: Transform - - uid: 25904 + - uid: 26026 components: - pos: 33.5,30.5 parent: 2 type: Transform - - uid: 25905 + - uid: 26027 components: - pos: -2.5,-29.5 parent: 2 type: Transform - - uid: 25906 + - uid: 26028 components: - pos: -2.5,-44.5 parent: 2 type: Transform - - uid: 25907 + - uid: 26029 components: - pos: 19.5,24.5 parent: 2 type: Transform - - uid: 25908 + - uid: 26030 components: - pos: 19.5,18.5 parent: 2 type: Transform - - uid: 25909 + - uid: 26031 components: - pos: 12.5,-35.5 parent: 2 type: Transform - - uid: 25910 + - uid: 26032 components: - pos: 12.5,-30.5 parent: 2 type: Transform - - uid: 25911 + - uid: 26033 components: - pos: 0.5,-28.5 parent: 2 type: Transform - - uid: 25912 + - uid: 26034 components: - pos: -2.5,-28.5 parent: 2 type: Transform - - uid: 25913 + - uid: 26035 components: - pos: -0.5,-28.5 parent: 2 type: Transform - - uid: 25914 + - uid: 26036 components: - pos: -1.5,-28.5 parent: 2 type: Transform - - uid: 25915 + - uid: 26037 components: - pos: 1.5,-28.5 parent: 2 type: Transform - - uid: 25916 + - uid: 26038 components: - pos: 1.5,-34.5 parent: 2 type: Transform - - uid: 25917 + - uid: 26039 components: - rot: -1.5707963267948966 rad pos: 13.5,-36.5 parent: 2 type: Transform - - uid: 25918 + - uid: 26040 components: - rot: -1.5707963267948966 rad pos: 13.5,-38.5 parent: 2 type: Transform - - uid: 25919 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-21.5 - parent: 2 - type: Transform - - uid: 25920 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-18.5 - parent: 2 - type: Transform - - uid: 25921 + - uid: 26041 components: - rot: -1.5707963267948966 rad pos: 10.5,-18.5 parent: 2 type: Transform - - uid: 25922 + - uid: 26042 components: - rot: -1.5707963267948966 rad pos: 6.5,-18.5 parent: 2 type: Transform - - uid: 25923 + - uid: 26043 components: - pos: -2.5,19.5 parent: 2 type: Transform - - uid: 25924 + - uid: 26044 components: - pos: -2.5,17.5 parent: 2 type: Transform - - uid: 25925 + - uid: 26045 components: - rot: 3.141592653589793 rad pos: 30.5,-20.5 parent: 2 type: Transform - - uid: 25926 + - uid: 26046 components: - pos: -1.5,-40.5 parent: 2 type: Transform - - uid: 25927 + - uid: 26047 components: - pos: 0.5,-40.5 parent: 2 type: Transform - - uid: 25928 + - uid: 26048 components: - pos: -0.5,-40.5 parent: 2 type: Transform - - uid: 25929 + - uid: 26049 components: - rot: 1.5707963267948966 rad pos: 38.5,-18.5 parent: 2 type: Transform - - uid: 25930 + - uid: 26050 components: - rot: 1.5707963267948966 rad pos: 38.5,-16.5 parent: 2 type: Transform - - uid: 25931 + - uid: 26051 components: - rot: 1.5707963267948966 rad pos: 38.5,-19.5 parent: 2 type: Transform - - uid: 25932 + - uid: 26052 components: - rot: 1.5707963267948966 rad pos: 33.5,31.5 parent: 2 type: Transform - - uid: 25933 + - uid: 26053 components: - rot: 1.5707963267948966 rad pos: 33.5,33.5 parent: 2 type: Transform - - uid: 25934 + - uid: 26054 components: - rot: 1.5707963267948966 rad pos: 25.5,31.5 parent: 2 type: Transform - - uid: 25935 + - uid: 26055 components: - rot: 1.5707963267948966 rad pos: 25.5,32.5 parent: 2 type: Transform - - uid: 25936 + - uid: 26056 components: - rot: 1.5707963267948966 rad pos: 25.5,33.5 parent: 2 type: Transform - - uid: 25937 + - uid: 26057 components: - rot: 1.5707963267948966 rad pos: 26.5,33.5 parent: 2 type: Transform - - uid: 25938 + - uid: 26058 components: - rot: 3.141592653589793 rad pos: 28.5,33.5 parent: 2 type: Transform - - uid: 25939 + - uid: 26059 components: - rot: 1.5707963267948966 rad pos: 32.5,33.5 parent: 2 type: Transform - - uid: 25940 + - uid: 26060 components: - pos: 13.5,-39.5 parent: 2 type: Transform - - uid: 25941 + - uid: 26061 components: - rot: -1.5707963267948966 rad pos: 33.5,13.5 parent: 2 type: Transform - - uid: 25942 + - uid: 26062 components: - rot: 1.5707963267948966 rad pos: -17.5,-53.5 parent: 2 type: Transform - - uid: 25943 + - uid: 26063 components: - rot: 1.5707963267948966 rad pos: -19.5,-53.5 parent: 2 type: Transform - - uid: 25944 + - uid: 26064 components: - rot: 1.5707963267948966 rad pos: -20.5,-53.5 parent: 2 type: Transform - - uid: 25945 + - uid: 26065 components: - rot: 1.5707963267948966 rad pos: -21.5,-53.5 parent: 2 type: Transform - - uid: 25946 + - uid: 26066 components: - pos: -21.5,-58.5 parent: 2 type: Transform - - uid: 25948 + - uid: 26067 components: - pos: 33.5,-26.5 parent: 2 type: Transform - - uid: 25949 - components: - - pos: 26.5,-33.5 - parent: 2 - type: Transform - - uid: 25950 + - uid: 26068 components: - pos: 27.5,-28.5 parent: 2 type: Transform - - uid: 25951 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-27.5 - parent: 2 - type: Transform - - uid: 25952 + - uid: 26069 components: - pos: -22.5,-49.5 parent: 2 type: Transform - - uid: 25953 + - uid: 26070 components: - rot: 1.5707963267948966 rad pos: 17.5,-33.5 parent: 2 type: Transform - - uid: 25954 + - uid: 26071 components: - rot: 3.141592653589793 rad pos: 33.5,-23.5 parent: 2 type: Transform - - uid: 25955 + - uid: 26072 components: - pos: 27.5,-29.5 parent: 2 type: Transform - - uid: 25956 + - uid: 26073 components: - rot: 3.141592653589793 rad pos: 30.5,-40.5 parent: 2 type: Transform - - uid: 25957 + - uid: 26074 components: - pos: 9.5,12.5 parent: 2 type: Transform - - uid: 25958 + - uid: 26075 components: - pos: 8.5,11.5 parent: 2 type: Transform - - uid: 25959 + - uid: 26076 components: - pos: 25.5,-33.5 parent: 2 type: Transform - - uid: 25960 - components: - - pos: 24.5,-31.5 - parent: 2 - type: Transform - - uid: 25961 + - uid: 26077 components: - pos: -17.5,-80.5 parent: 2 type: Transform - - uid: 25962 + - uid: 26078 components: - pos: -15.5,-80.5 parent: 2 type: Transform - - uid: 25963 + - uid: 26079 components: - pos: -14.5,-74.5 parent: 2 type: Transform - - uid: 25964 + - uid: 26080 components: - rot: -1.5707963267948966 rad pos: -31.5,-78.5 parent: 2 type: Transform - - uid: 25965 + - uid: 26081 components: - rot: -1.5707963267948966 rad pos: -25.5,-81.5 parent: 2 type: Transform - - uid: 25966 + - uid: 26082 components: - rot: -1.5707963267948966 rad pos: -26.5,-81.5 parent: 2 type: Transform - - uid: 25967 + - uid: 26083 components: - rot: -1.5707963267948966 rad pos: -19.5,-82.5 parent: 2 type: Transform - - uid: 25968 + - uid: 26084 components: - rot: -1.5707963267948966 rad pos: -29.5,-81.5 parent: 2 type: Transform - - uid: 25969 + - uid: 26085 components: - rot: -1.5707963267948966 rad pos: -30.5,-81.5 parent: 2 type: Transform - - uid: 25970 + - uid: 26086 components: - rot: -1.5707963267948966 rad pos: -31.5,-81.5 parent: 2 type: Transform - - uid: 25971 + - uid: 26087 components: - pos: -27.5,-86.5 parent: 2 type: Transform - - uid: 25972 + - uid: 26088 components: - rot: -1.5707963267948966 rad pos: -19.5,-83.5 parent: 2 type: Transform - - uid: 25973 + - uid: 26089 components: - pos: -22.5,-91.5 parent: 2 type: Transform - - uid: 25974 + - uid: 26090 components: - rot: -1.5707963267948966 rad pos: 44.5,-66.5 parent: 2 type: Transform - - uid: 25975 + - uid: 26091 components: - pos: 57.5,-50.5 parent: 2 type: Transform - - uid: 25976 + - uid: 26092 components: - pos: -51.5,-52.5 parent: 2 type: Transform - - uid: 25977 + - uid: 26093 components: - rot: 1.5707963267948966 rad pos: -17.5,-58.5 parent: 2 type: Transform - - uid: 25978 + - uid: 26094 components: - rot: 3.141592653589793 rad pos: 21.5,-20.5 parent: 2 type: Transform - - uid: 25979 + - uid: 26095 components: - pos: 29.5,-26.5 parent: 2 type: Transform - - uid: 25980 + - uid: 26096 components: - rot: 3.141592653589793 rad pos: 33.5,-21.5 parent: 2 type: Transform - - uid: 25981 + - uid: 26097 components: - rot: 3.141592653589793 rad pos: 33.5,-27.5 parent: 2 type: Transform - - uid: 25982 + - uid: 26098 components: - rot: 3.141592653589793 rad pos: 13.5,-18.5 parent: 2 type: Transform - - uid: 25983 + - uid: 26099 components: - rot: 3.141592653589793 rad pos: 41.5,17.5 parent: 2 type: Transform - - uid: 25984 + - uid: 26100 components: - rot: 3.141592653589793 rad pos: 43.5,17.5 parent: 2 type: Transform - - uid: 25985 + - uid: 26101 components: - rot: -1.5707963267948966 rad pos: 27.5,12.5 parent: 2 type: Transform - - uid: 25986 + - uid: 26102 components: - rot: -1.5707963267948966 rad pos: 27.5,13.5 parent: 2 type: Transform - - uid: 25987 + - uid: 26103 components: - rot: -1.5707963267948966 rad pos: 27.5,11.5 parent: 2 type: Transform - - uid: 25988 + - uid: 26104 components: - pos: 14.5,15.5 parent: 2 type: Transform - - uid: 25989 + - uid: 26105 components: - pos: 9.5,15.5 parent: 2 type: Transform - - uid: 25990 + - uid: 26106 components: - pos: 9.5,-71.5 parent: 2 type: Transform - - uid: 25991 + - uid: 26107 components: - pos: 5.5,-78.5 parent: 2 type: Transform - - uid: 25992 + - uid: 26108 components: - rot: 3.141592653589793 rad pos: 30.5,-39.5 parent: 2 type: Transform - - uid: 25993 + - uid: 26109 components: - pos: 28.5,-9.5 parent: 2 type: Transform - - uid: 25994 + - uid: 26110 components: - pos: 31.5,20.5 parent: 2 type: Transform - - uid: 25995 + - uid: 26111 components: - rot: -1.5707963267948966 rad pos: 30.5,12.5 parent: 2 type: Transform - - uid: 25996 + - uid: 26112 components: - pos: 0.5,15.5 parent: 2 type: Transform - - uid: 25997 + - uid: 26113 components: - rot: -1.5707963267948966 rad pos: 9.5,11.5 parent: 2 type: Transform - - uid: 25998 + - uid: 26114 components: - rot: 3.141592653589793 rad pos: 6.5,11.5 parent: 2 type: Transform - - uid: 25999 + - uid: 26115 components: - rot: 1.5707963267948966 rad pos: 3.5,14.5 parent: 2 type: Transform - - uid: 26000 + - uid: 26116 components: - pos: -1.5,15.5 parent: 2 type: Transform - - uid: 26001 + - uid: 26117 components: - pos: 9.5,-2.5 parent: 2 type: Transform - - uid: 26002 + - uid: 26118 components: - rot: 1.5707963267948966 rad pos: 18.5,-33.5 parent: 2 type: Transform - - uid: 26003 + - uid: 26119 components: - rot: 1.5707963267948966 rad pos: 15.5,15.5 parent: 2 type: Transform - - uid: 26004 + - uid: 26120 components: - rot: -1.5707963267948966 rad pos: 63.5,17.5 parent: 2 type: Transform - - uid: 26005 + - uid: 26121 components: - rot: -1.5707963267948966 rad pos: -2.5,-84.5 parent: 2 type: Transform - - uid: 26006 + - uid: 26122 components: - pos: 16.5,-63.5 parent: 2 type: Transform - - uid: 26007 + - uid: 26123 components: - pos: 17.5,-68.5 parent: 2 type: Transform - - uid: 26008 + - uid: 26124 components: - pos: -23.5,0.5 parent: 2 type: Transform - - uid: 26009 + - uid: 26125 components: - pos: 25.5,-29.5 parent: 2 type: Transform - - uid: 26010 + - uid: 26126 components: - pos: -23.5,-2.5 parent: 2 type: Transform - - uid: 26011 + - uid: 26127 components: - rot: 3.141592653589793 rad pos: 33.5,-20.5 parent: 2 type: Transform - - uid: 26012 + - uid: 26128 components: - pos: -23.5,3.5 parent: 2 type: Transform - - uid: 26013 + - uid: 26129 components: - pos: -23.5,4.5 parent: 2 type: Transform - - uid: 26014 + - uid: 26130 components: - pos: -21.5,5.5 parent: 2 type: Transform - - uid: 26015 + - uid: 26131 components: - pos: 49.5,-26.5 parent: 2 type: Transform - - uid: 26016 + - uid: 26132 components: - pos: 47.5,-20.5 parent: 2 type: Transform - - uid: 26017 + - uid: 26133 components: - pos: 44.5,-20.5 parent: 2 type: Transform - - uid: 26018 + - uid: 26134 components: - pos: 43.5,-22.5 parent: 2 type: Transform - - uid: 26019 + - uid: 26135 components: - pos: 43.5,-25.5 parent: 2 type: Transform - - uid: 26020 + - uid: 26136 components: - pos: 43.5,-23.5 parent: 2 type: Transform - - uid: 26021 + - uid: 26137 components: - pos: 43.5,-28.5 parent: 2 type: Transform - - uid: 26022 + - uid: 26138 components: - pos: 1.5,15.5 parent: 2 type: Transform - - uid: 26023 + - uid: 26139 components: - pos: 40.5,-28.5 parent: 2 type: Transform - - uid: 26024 + - uid: 26140 components: - pos: 26.5,26.5 parent: 2 type: Transform - - uid: 26025 + - uid: 26141 components: - pos: 25.5,26.5 parent: 2 type: Transform - - uid: 26026 + - uid: 26142 components: - pos: 25.5,28.5 parent: 2 type: Transform - - uid: 26027 + - uid: 26143 components: - rot: 3.141592653589793 rad pos: 33.5,29.5 parent: 2 type: Transform - - uid: 26028 + - uid: 26144 components: - pos: 25.5,30.5 parent: 2 type: Transform - - uid: 26029 + - uid: 26145 components: - pos: 32.5,26.5 parent: 2 type: Transform - - uid: 26030 + - uid: 26146 components: - rot: -1.5707963267948966 rad pos: 13.5,23.5 parent: 2 type: Transform - - uid: 26031 + - uid: 26147 components: - rot: -1.5707963267948966 rad pos: 8.5,23.5 parent: 2 type: Transform - - uid: 26032 + - uid: 26148 components: - pos: -2.5,-39.5 parent: 2 type: Transform - - uid: 26033 + - uid: 26149 components: - rot: -1.5707963267948966 rad pos: -1.5,-39.5 parent: 2 type: Transform - - uid: 26034 + - uid: 26150 components: - rot: -1.5707963267948966 rad pos: 12.5,-24.5 parent: 2 type: Transform - - uid: 26035 + - uid: 26151 components: - pos: 11.5,-24.5 parent: 2 type: Transform - - uid: 26036 + - uid: 26152 components: - pos: 10.5,-24.5 parent: 2 type: Transform - - uid: 26037 + - uid: 26153 components: - rot: -1.5707963267948966 rad pos: 4.5,-24.5 parent: 2 type: Transform - - uid: 26038 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-23.5 - parent: 2 - type: Transform - - uid: 26039 + - uid: 26154 components: - rot: -1.5707963267948966 rad pos: 5.5,-18.5 parent: 2 type: Transform - - uid: 26040 + - uid: 26155 components: - pos: -2.5,21.5 parent: 2 type: Transform - - uid: 26041 + - uid: 26156 components: - pos: -0.5,22.5 parent: 2 type: Transform - - uid: 26042 + - uid: 26157 components: - pos: 0.5,22.5 parent: 2 type: Transform - - uid: 26043 + - uid: 26158 components: - pos: -2.5,22.5 parent: 2 type: Transform - - uid: 26044 + - uid: 26159 components: - pos: -2.5,20.5 parent: 2 type: Transform - - uid: 26045 + - uid: 26160 components: - pos: 6.5,-40.5 parent: 2 type: Transform - - uid: 26046 + - uid: 26161 components: - pos: 5.5,-39.5 parent: 2 type: Transform - - uid: 26047 + - uid: 26162 components: - pos: 8.5,18.5 parent: 2 type: Transform - - uid: 26048 + - uid: 26163 components: - rot: 3.141592653589793 rad pos: 27.5,23.5 parent: 2 type: Transform - - uid: 26049 + - uid: 26164 components: - pos: -15.5,4.5 parent: 2 type: Transform - - uid: 26050 + - uid: 26165 components: - pos: -15.5,3.5 parent: 2 type: Transform - - uid: 26051 + - uid: 26166 components: - pos: 9.5,18.5 parent: 2 type: Transform - - uid: 26052 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-30.5 - parent: 2 - type: Transform - - uid: 26053 + - uid: 26167 components: - pos: -18.5,-85.5 parent: 2 type: Transform - - uid: 26054 + - uid: 26168 components: - rot: 3.141592653589793 rad pos: 3.5,11.5 parent: 2 type: Transform - - uid: 26055 + - uid: 26169 components: - rot: -1.5707963267948966 rad pos: 37.5,42.5 parent: 2 type: Transform - - uid: 26056 + - uid: 26170 components: - rot: 3.141592653589793 rad pos: 62.5,42.5 parent: 2 type: Transform - - uid: 26057 + - uid: 26171 components: - rot: -1.5707963267948966 rad pos: 32.5,43.5 parent: 2 type: Transform - - uid: 26058 + - uid: 26172 components: - rot: 3.141592653589793 rad pos: 18.5,-19.5 parent: 2 type: Transform - - uid: 26059 + - uid: 26173 components: - rot: -1.5707963267948966 rad pos: 42.5,49.5 parent: 2 type: Transform - - uid: 26060 + - uid: 26174 components: - rot: -1.5707963267948966 rad pos: 34.5,43.5 parent: 2 type: Transform - - uid: 26061 + - uid: 26175 components: - pos: -23.5,-0.5 parent: 2 type: Transform - - uid: 26062 + - uid: 26176 components: - rot: -1.5707963267948966 rad pos: 63.5,16.5 parent: 2 type: Transform - - uid: 26063 + - uid: 26177 components: - pos: -20.5,5.5 parent: 2 type: Transform - - uid: 26064 + - uid: 26178 components: - rot: 3.141592653589793 rad pos: 13.5,18.5 parent: 2 type: Transform - - uid: 26065 + - uid: 26179 components: - rot: -1.5707963267948966 rad pos: 64.5,14.5 parent: 2 type: Transform - - uid: 26066 + - uid: 26180 components: - rot: -1.5707963267948966 rad pos: -0.5,-80.5 parent: 2 type: Transform - - uid: 26067 + - uid: 26181 components: - rot: -1.5707963267948966 rad pos: 0.5,-78.5 parent: 2 type: Transform - - uid: 26068 + - uid: 26182 components: - rot: 3.141592653589793 rad pos: -17.5,5.5 parent: 2 type: Transform - - uid: 26069 + - uid: 26183 components: - rot: 3.141592653589793 rad pos: 19.5,-19.5 parent: 2 type: Transform - - uid: 26070 + - uid: 26184 components: - pos: 40.5,52.5 parent: 2 type: Transform - - uid: 26072 + - uid: 26185 components: - pos: -29.5,44.5 parent: 2 type: Transform - - uid: 26073 + - uid: 26186 components: - pos: 40.5,17.5 parent: 2 type: Transform - - uid: 26074 + - uid: 26187 components: - pos: -15.5,-74.5 parent: 2 type: Transform - - uid: 26075 + - uid: 26188 components: - rot: 3.141592653589793 rad pos: 30.5,-15.5 parent: 2 type: Transform - - uid: 26076 + - uid: 26189 components: - rot: -1.5707963267948966 rad pos: 27.5,10.5 parent: 2 type: Transform - - uid: 26077 + - uid: 26190 components: - pos: -15.5,1.5 parent: 2 type: Transform - - uid: 26078 + - uid: 26191 components: - pos: -15.5,0.5 parent: 2 type: Transform - - uid: 26079 + - uid: 26192 components: - pos: 38.5,52.5 parent: 2 type: Transform - - uid: 26080 + - uid: 26193 components: - rot: 3.141592653589793 rad pos: 34.5,-13.5 parent: 2 type: Transform - - uid: 26081 + - uid: 26194 components: - pos: 43.5,-20.5 parent: 2 type: Transform - - uid: 26082 + - uid: 26195 components: - rot: 1.5707963267948966 rad pos: 32.5,-63.5 parent: 2 type: Transform - - uid: 26083 + - uid: 26196 components: - pos: 0.5,-39.5 parent: 2 type: Transform - - uid: 26084 + - uid: 26197 components: - pos: 4.5,-39.5 parent: 2 type: Transform - - uid: 26085 + - uid: 26198 components: - pos: 2.5,15.5 parent: 2 type: Transform - - uid: 26086 + - uid: 26199 components: - rot: -1.5707963267948966 rad pos: 25.5,-31.5 parent: 2 type: Transform - - uid: 26087 + - uid: 26200 components: - rot: -1.5707963267948966 rad pos: 14.5,-68.5 parent: 2 type: Transform - - uid: 26088 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-28.5 - parent: 2 - type: Transform - - uid: 26089 + - uid: 26201 components: - pos: 7.5,11.5 parent: 2 type: Transform - - uid: 26090 + - uid: 26202 components: - pos: 10.5,15.5 parent: 2 type: Transform - - uid: 26091 + - uid: 26203 components: - rot: -1.5707963267948966 rad pos: 36.5,42.5 parent: 2 type: Transform - - uid: 26092 + - uid: 26204 components: - rot: -1.5707963267948966 rad pos: -0.5,-81.5 parent: 2 type: Transform - - uid: 26093 + - uid: 26205 components: - rot: -1.5707963267948966 rad pos: 37.5,9.5 parent: 2 type: Transform - - uid: 26094 + - uid: 26206 components: - rot: -1.5707963267948966 rad pos: -26.5,-83.5 parent: 2 type: Transform - - uid: 26095 + - uid: 26207 components: - rot: -1.5707963267948966 rad pos: -24.5,-83.5 parent: 2 type: Transform - - uid: 26096 + - uid: 26208 components: - pos: -22.5,5.5 parent: 2 type: Transform - - uid: 26097 + - uid: 26209 components: - rot: -1.5707963267948966 rad pos: 27.5,14.5 parent: 2 type: Transform - - uid: 26098 + - uid: 26210 components: - pos: -29.5,43.5 parent: 2 type: Transform - - uid: 26099 + - uid: 26211 components: - rot: 3.141592653589793 rad pos: 33.5,-22.5 parent: 2 type: Transform - - uid: 26100 + - uid: 26212 components: - rot: 3.141592653589793 rad pos: 20.5,24.5 parent: 2 type: Transform - - uid: 26101 + - uid: 26213 components: - rot: 1.5707963267948966 rad pos: 7.5,-18.5 parent: 2 type: Transform - - uid: 26102 + - uid: 26214 components: - rot: -1.5707963267948966 rad pos: 10.5,23.5 parent: 2 type: Transform - - uid: 26103 + - uid: 26215 components: - rot: -1.5707963267948966 rad pos: 27.5,15.5 parent: 2 type: Transform - - uid: 26104 + - uid: 26216 components: - pos: -15.5,3.5 parent: 2 type: Transform - - uid: 26105 + - uid: 26217 components: - rot: -1.5707963267948966 rad pos: -31.5,-76.5 parent: 2 type: Transform - - uid: 26106 + - uid: 26218 components: - pos: -18.5,-80.5 parent: 2 type: Transform - - uid: 26107 + - uid: 26219 components: - rot: -1.5707963267948966 rad pos: 12.5,-68.5 parent: 2 type: Transform - - uid: 26108 + - uid: 26220 components: - rot: -1.5707963267948966 rad pos: 14.5,18.5 parent: 2 type: Transform - - uid: 26109 + - uid: 26221 components: - pos: 27.5,25.5 parent: 2 type: Transform - - uid: 26110 + - uid: 26222 components: - rot: -1.5707963267948966 rad pos: 12.5,23.5 parent: 2 type: Transform - - uid: 26111 + - uid: 26223 components: - rot: -1.5707963267948966 rad pos: 11.5,23.5 parent: 2 type: Transform - - uid: 26112 + - uid: 26224 components: - pos: -13.5,-74.5 parent: 2 type: Transform - - uid: 26113 + - uid: 26225 components: - pos: -13.5,-79.5 parent: 2 type: Transform - - uid: 26114 + - uid: 26226 components: - pos: -19.5,-80.5 parent: 2 type: Transform - - uid: 26115 + - uid: 26227 components: - pos: -13.5,-76.5 parent: 2 type: Transform - - uid: 26116 + - uid: 26228 components: - pos: 9.5,20.5 parent: 2 type: Transform - - uid: 26117 + - uid: 26229 components: - rot: -1.5707963267948966 rad pos: 13.5,-68.5 parent: 2 type: Transform - - uid: 26118 + - uid: 26230 components: - pos: -18.5,-50.5 parent: 2 type: Transform - - uid: 26119 + - uid: 26231 components: - rot: -1.5707963267948966 rad pos: -16.5,-53.5 parent: 2 type: Transform - - uid: 26120 + - uid: 26232 components: - rot: 3.141592653589793 rad pos: 33.5,-37.5 parent: 2 type: Transform - - uid: 26121 + - uid: 26233 components: - rot: 3.141592653589793 rad pos: 34.5,-11.5 parent: 2 type: Transform - - uid: 26122 + - uid: 26234 components: - rot: 3.141592653589793 rad pos: 34.5,-12.5 parent: 2 type: Transform - - uid: 26123 + - uid: 26235 components: - pos: -16.5,-54.5 parent: 2 type: Transform - - uid: 26124 + - uid: 26236 components: - rot: 3.141592653589793 rad pos: 34.5,-9.5 parent: 2 type: Transform - - uid: 26125 + - uid: 26237 components: - rot: 3.141592653589793 rad pos: 33.5,-9.5 parent: 2 type: Transform - - uid: 26126 + - uid: 26238 components: - rot: -1.5707963267948966 rad pos: -16.5,-55.5 parent: 2 type: Transform - - uid: 26127 + - uid: 26239 components: - pos: 19.5,-56.5 parent: 2 type: Transform - - uid: 26128 + - uid: 26240 components: - pos: -21.5,-56.5 parent: 2 type: Transform - - uid: 26129 + - uid: 26241 components: - pos: 33.5,48.5 parent: 2 type: Transform - - uid: 26130 + - uid: 26242 components: - pos: 31.5,-26.5 parent: 2 type: Transform - - uid: 26131 + - uid: 26243 components: - pos: 11.5,15.5 parent: 2 type: Transform - - uid: 26132 + - uid: 26244 components: - rot: 3.141592653589793 rad pos: 17.5,-19.5 parent: 2 type: Transform - - uid: 26133 + - uid: 26245 components: - pos: -2.5,-38.5 parent: 2 type: Transform - - uid: 26134 + - uid: 26246 components: - rot: -1.5707963267948966 rad pos: 63.5,14.5 parent: 2 type: Transform - - uid: 26135 + - uid: 26247 components: - pos: 12.5,-36.5 parent: 2 type: Transform - - uid: 26136 + - uid: 26248 components: - rot: 3.141592653589793 rad pos: 27.5,33.5 parent: 2 type: Transform - - uid: 26137 + - uid: 26249 components: - pos: 35.5,51.5 parent: 2 type: Transform - - uid: 26138 + - uid: 26250 components: - pos: 5.5,-79.5 parent: 2 type: Transform - - uid: 26139 + - uid: 26251 components: - pos: 33.5,-30.5 parent: 2 type: Transform - - uid: 26140 + - uid: 26252 components: - pos: 28.5,-12.5 parent: 2 type: Transform - - uid: 26141 + - uid: 26253 components: - rot: 3.141592653589793 rad pos: 17.5,-20.5 parent: 2 type: Transform - - uid: 26142 + - uid: 26254 components: - pos: 37.5,52.5 parent: 2 type: Transform - - uid: 26143 + - uid: 26255 components: - pos: 29.5,-15.5 parent: 2 type: Transform - - uid: 26144 + - uid: 26256 components: - rot: 3.141592653589793 rad pos: 32.5,-19.5 parent: 2 type: Transform - - uid: 26145 + - uid: 26257 components: - rot: 3.141592653589793 rad pos: -18.5,-3.5 parent: 2 type: Transform - - uid: 26146 + - uid: 26258 components: - rot: 3.141592653589793 rad pos: 19.5,-55.5 parent: 2 type: Transform - - uid: 26147 + - uid: 26259 components: - rot: -1.5707963267948966 rad pos: 35.5,42.5 parent: 2 type: Transform - - uid: 26148 + - uid: 26260 components: - rot: 3.141592653589793 rad pos: -18.5,5.5 parent: 2 type: Transform - - uid: 26149 + - uid: 26261 components: - pos: 35.5,5.5 parent: 2 type: Transform - - uid: 26150 + - uid: 26262 components: - pos: 35.5,3.5 parent: 2 type: Transform - - uid: 26151 + - uid: 26263 components: - pos: 33.5,9.5 parent: 2 type: Transform - - uid: 26152 + - uid: 26264 components: - pos: 27.5,9.5 parent: 2 type: Transform - - uid: 26153 + - uid: 26265 components: - rot: 3.141592653589793 rad pos: 29.5,-40.5 parent: 2 type: Transform - - uid: 26155 + - uid: 26266 components: - pos: 30.5,-38.5 parent: 2 type: Transform - - uid: 26156 + - uid: 26267 components: - rot: 3.141592653589793 rad pos: 25.5,-61.5 parent: 2 type: Transform - - uid: 26157 + - uid: 26268 components: - rot: -1.5707963267948966 rad pos: 7.5,23.5 parent: 2 type: Transform - - uid: 26158 + - uid: 26269 components: - rot: -1.5707963267948966 rad pos: 6.5,23.5 parent: 2 type: Transform - - uid: 26159 + - uid: 26270 components: - pos: 9.5,22.5 parent: 2 type: Transform - - uid: 26160 + - uid: 26271 components: - pos: 9.5,21.5 parent: 2 type: Transform - - uid: 26161 + - uid: 26272 components: - rot: 3.141592653589793 rad pos: 36.5,13.5 parent: 2 type: Transform - - uid: 26162 + - uid: 26273 components: - pos: 3.5,20.5 parent: 2 type: Transform - - uid: 26163 + - uid: 26274 components: - pos: 8.5,-24.5 parent: 2 type: Transform - - uid: 26164 + - uid: 26275 components: - pos: 12.5,-31.5 parent: 2 type: Transform - - uid: 26165 + - uid: 26276 components: - pos: 1.5,-33.5 parent: 2 type: Transform - - uid: 26166 + - uid: 26277 components: - pos: -18.5,-87.5 parent: 2 type: Transform - - uid: 26167 + - uid: 26278 components: - pos: 28.5,-11.5 parent: 2 type: Transform - - uid: 26168 + - uid: 26279 components: - pos: 13.5,-22.5 parent: 2 type: Transform - - uid: 26169 + - uid: 26280 components: - pos: 12.5,-18.5 parent: 2 type: Transform - - uid: 26170 + - uid: 26281 components: - pos: 5.5,-82.5 parent: 2 type: Transform - - uid: 26171 + - uid: 26282 components: - pos: 12.5,-69.5 parent: 2 type: Transform - - uid: 26172 + - uid: 26283 components: - - pos: 23.5,-31.5 + - rot: 3.141592653589793 rad + pos: 26.5,-33.5 parent: 2 type: Transform - - uid: 26173 + - uid: 26284 components: - pos: 27.5,-27.5 parent: 2 type: Transform - - uid: 26174 + - uid: 26285 components: - pos: -6.5,-44.5 parent: 2 type: Transform - - uid: 26175 + - uid: 26286 components: - rot: 1.5707963267948966 rad pos: -18.5,-53.5 parent: 2 type: Transform - - uid: 26176 + - uid: 26287 components: - pos: -2.5,-37.5 parent: 2 type: Transform - - uid: 26177 + - uid: 26288 components: - pos: 13.5,-40.5 parent: 2 type: Transform - - uid: 26178 + - uid: 26289 components: - pos: 12.5,-40.5 parent: 2 type: Transform - - uid: 26179 + - uid: 26290 components: - pos: 10.5,-40.5 parent: 2 type: Transform - - uid: 26180 + - uid: 26291 components: - pos: 11.5,-40.5 parent: 2 type: Transform - - uid: 26181 + - uid: 26292 components: - pos: -1.5,-36.5 parent: 2 type: Transform - - uid: 26182 + - uid: 26293 components: - pos: 27.5,-13.5 parent: 2 type: Transform - - uid: 26183 + - uid: 26294 components: - rot: 1.5707963267948966 rad pos: 12.5,15.5 parent: 2 type: Transform - - uid: 26184 + - uid: 26295 components: - rot: 3.141592653589793 rad pos: 31.5,-9.5 parent: 2 type: Transform - - uid: 26185 + - uid: 26296 components: - pos: 28.5,-15.5 parent: 2 type: Transform - - uid: 26186 + - uid: 26297 components: - pos: 42.5,52.5 parent: 2 type: Transform - - uid: 26187 + - uid: 26298 components: - rot: 3.141592653589793 rad pos: 20.5,-19.5 parent: 2 type: Transform - - uid: 26188 + - uid: 26299 components: - pos: -18.5,-84.5 parent: 2 type: Transform - - uid: 26189 + - uid: 26300 components: - pos: -20.5,-1.5 parent: 2 type: Transform - - uid: 26190 + - uid: 26301 components: - rot: -1.5707963267948966 rad pos: 0.5,-76.5 parent: 2 type: Transform - - uid: 26191 + - uid: 26302 components: - rot: 1.5707963267948966 rad pos: 3.5,13.5 parent: 2 type: Transform - - uid: 26192 + - uid: 26303 components: - pos: 18.5,18.5 parent: 2 type: Transform - - uid: 26193 + - uid: 26304 components: - rot: -1.5707963267948966 rad pos: -0.5,-83.5 parent: 2 type: Transform - - uid: 26194 + - uid: 26305 components: - rot: -1.5707963267948966 rad pos: 0.5,-80.5 parent: 2 type: Transform - - uid: 26195 + - uid: 26306 components: - pos: 15.5,-63.5 parent: 2 type: Transform - - uid: 26196 + - uid: 26307 components: - pos: 17.5,-64.5 parent: 2 type: Transform - - uid: 26197 + - uid: 26308 components: - pos: 49.5,-21.5 parent: 2 type: Transform - - uid: 26198 + - uid: 26309 components: - pos: 45.5,-20.5 parent: 2 type: Transform - - uid: 26199 + - uid: 26310 components: - pos: 46.5,-20.5 parent: 2 type: Transform - - uid: 26200 + - uid: 26311 components: - pos: 43.5,-29.5 parent: 2 type: Transform - - uid: 26201 + - uid: 26312 components: - pos: 43.5,-30.5 parent: 2 type: Transform - - uid: 26202 + - uid: 26313 components: - pos: 43.5,-31.5 parent: 2 type: Transform - - uid: 26203 + - uid: 26314 components: - pos: 44.5,-31.5 parent: 2 type: Transform - - uid: 26204 + - uid: 26315 components: - pos: 49.5,-31.5 parent: 2 type: Transform - - uid: 26205 + - uid: 26316 components: - pos: 49.5,-30.5 parent: 2 type: Transform - - uid: 26206 + - uid: 26317 components: - pos: 49.5,-29.5 parent: 2 type: Transform - - uid: 26207 + - uid: 26318 components: - pos: 49.5,-28.5 parent: 2 type: Transform - - uid: 26208 + - uid: 26319 components: - pos: 48.5,-20.5 parent: 2 type: Transform - - uid: 26209 + - uid: 26320 components: - pos: 48.5,-31.5 parent: 2 type: Transform - - uid: 26210 + - uid: 26321 components: - pos: 47.5,-31.5 parent: 2 type: Transform - - uid: 26211 + - uid: 26322 components: - pos: 46.5,-31.5 parent: 2 type: Transform - - uid: 26212 + - uid: 26323 components: - pos: 45.5,-31.5 parent: 2 type: Transform - - uid: 26213 + - uid: 26324 components: - pos: 49.5,-27.5 parent: 2 type: Transform - - uid: 26214 + - uid: 26325 components: - pos: 49.5,-20.5 parent: 2 type: Transform - - uid: 26215 + - uid: 26326 components: - pos: 43.5,-21.5 parent: 2 type: Transform - - uid: 26216 + - uid: 26327 components: - pos: 49.5,-22.5 parent: 2 type: Transform - - uid: 26217 + - uid: 26328 components: - pos: 48.5,-26.5 parent: 2 type: Transform - - uid: 26218 + - uid: 26329 components: - pos: 47.5,-26.5 parent: 2 type: Transform - - uid: 26219 + - uid: 26330 components: - rot: -1.5707963267948966 rad pos: 46.5,-25.5 parent: 2 type: Transform - - uid: 26220 + - uid: 26331 components: - rot: -1.5707963267948966 rad pos: 45.5,-25.5 parent: 2 type: Transform - - uid: 26221 + - uid: 26332 components: - rot: -1.5707963267948966 rad pos: 46.5,-26.5 parent: 2 type: Transform - - uid: 26222 + - uid: 26333 components: - rot: 3.141592653589793 rad pos: 47.5,3.5 parent: 2 type: Transform - - uid: 26223 + - uid: 26334 components: - pos: -27.5,-91.5 parent: 2 type: Transform - - uid: 26224 + - uid: 26335 components: - pos: -18.5,-90.5 parent: 2 type: Transform - - uid: 26225 + - uid: 26336 components: - pos: -18.5,-91.5 parent: 2 type: Transform - - uid: 26226 + - uid: 26337 components: - pos: -19.5,-91.5 parent: 2 type: Transform - - uid: 26227 + - uid: 26338 components: - pos: -23.5,-91.5 parent: 2 type: Transform - - uid: 26228 + - uid: 26339 components: - pos: -26.5,-91.5 parent: 2 type: Transform - - uid: 26229 + - uid: 26340 components: - pos: -27.5,-87.5 parent: 2 type: Transform - - uid: 26230 + - uid: 26341 components: - pos: 7.5,-37.5 parent: 2 type: Transform - - uid: 26231 + - uid: 26342 components: - rot: 1.5707963267948966 rad pos: 15.5,28.5 parent: 2 type: Transform - - uid: 26232 + - uid: 26343 components: - pos: 5.5,30.5 parent: 2 type: Transform - - uid: 26233 + - uid: 26344 components: - pos: 18.5,24.5 parent: 2 type: Transform - - uid: 26234 + - uid: 26345 components: - pos: 17.5,24.5 parent: 2 type: Transform - - uid: 26235 + - uid: 26346 components: - pos: 16.5,24.5 parent: 2 type: Transform - - uid: 26236 + - uid: 26347 components: - pos: 15.5,24.5 parent: 2 type: Transform - - uid: 26237 + - uid: 26348 components: - pos: 13.5,24.5 parent: 2 type: Transform - - uid: 26238 + - uid: 26349 components: - rot: 1.5707963267948966 rad pos: 15.5,29.5 parent: 2 type: Transform - - uid: 26239 + - uid: 26350 components: - pos: 44.5,-32.5 parent: 2 type: Transform - - uid: 26240 + - uid: 26351 components: - pos: 49.5,44.5 parent: 2 type: Transform - - uid: 26241 + - uid: 26352 components: - pos: 19.5,30.5 parent: 2 type: Transform - - uid: 26242 + - uid: 26353 components: - pos: 19.5,29.5 parent: 2 type: Transform - - uid: 26243 + - uid: 26354 components: - pos: 19.5,28.5 parent: 2 type: Transform - - uid: 26244 + - uid: 26355 components: - pos: 19.5,27.5 parent: 2 type: Transform - - uid: 26245 + - uid: 26356 components: - rot: 1.5707963267948966 rad pos: 20.5,26.5 parent: 2 type: Transform - - uid: 26246 + - uid: 26357 components: - rot: 1.5707963267948966 rad pos: 19.5,26.5 parent: 2 type: Transform - - uid: 26247 + - uid: 26358 components: - rot: 1.5707963267948966 rad pos: 21.5,26.5 parent: 2 type: Transform - - uid: 26248 + - uid: 26359 components: - rot: 1.5707963267948966 rad pos: 22.5,26.5 parent: 2 type: Transform - - uid: 26249 + - uid: 26360 components: - pos: 3.5,31.5 parent: 2 type: Transform - - uid: 26250 + - uid: 26361 components: - pos: 4.5,30.5 parent: 2 type: Transform - - uid: 26251 + - uid: 26362 components: - pos: 3.5,33.5 parent: 2 type: Transform - - uid: 26252 + - uid: 26363 components: - pos: 11.5,29.5 parent: 2 type: Transform - - uid: 26253 + - uid: 26364 components: - pos: 11.5,35.5 parent: 2 type: Transform - - uid: 26254 + - uid: 26365 components: - pos: 9.5,29.5 parent: 2 type: Transform - - uid: 26255 + - uid: 26366 components: - pos: 4.5,31.5 parent: 2 type: Transform - - uid: 26256 + - uid: 26367 components: - pos: 11.5,33.5 parent: 2 type: Transform - - uid: 26257 + - uid: 26368 components: - pos: 6.5,35.5 parent: 2 type: Transform - - uid: 26258 + - uid: 26369 components: - pos: 66.5,4.5 parent: 2 type: Transform - - uid: 26259 + - uid: 26370 components: - pos: 66.5,5.5 parent: 2 type: Transform - - uid: 26260 + - uid: 26371 components: - pos: 66.5,3.5 parent: 2 type: Transform - - uid: 26261 + - uid: 26372 components: - pos: 66.5,2.5 parent: 2 type: Transform - - uid: 26262 + - uid: 26373 components: - pos: 66.5,1.5 parent: 2 type: Transform - - uid: 26263 + - uid: 26374 components: - rot: 1.5707963267948966 rad pos: 14.5,26.5 parent: 2 type: Transform - - uid: 26264 + - uid: 26375 components: - rot: 1.5707963267948966 rad pos: 15.5,26.5 parent: 2 type: Transform - - uid: 26265 + - uid: 26376 components: - rot: 1.5707963267948966 rad pos: 15.5,27.5 parent: 2 type: Transform - - uid: 26266 + - uid: 26377 components: - rot: 1.5707963267948966 rad pos: 13.5,26.5 parent: 2 type: Transform - - uid: 26267 + - uid: 26378 components: - rot: 1.5707963267948966 rad pos: 12.5,26.5 parent: 2 type: Transform - - uid: 26268 + - uid: 26379 components: - rot: 1.5707963267948966 rad pos: 11.5,26.5 parent: 2 type: Transform - - uid: 26269 + - uid: 26380 components: - rot: 1.5707963267948966 rad pos: 10.5,26.5 parent: 2 type: Transform - - uid: 26270 + - uid: 26381 components: - rot: 1.5707963267948966 rad pos: 10.5,25.5 parent: 2 type: Transform - - uid: 26271 + - uid: 26382 components: - rot: 1.5707963267948966 rad pos: 9.5,25.5 parent: 2 type: Transform - - uid: 26272 + - uid: 26383 components: - rot: 1.5707963267948966 rad pos: 8.5,25.5 parent: 2 type: Transform - - uid: 26273 + - uid: 26384 components: - rot: 1.5707963267948966 rad pos: 7.5,25.5 parent: 2 type: Transform - - uid: 26274 + - uid: 26385 components: - rot: 1.5707963267948966 rad pos: 5.5,25.5 parent: 2 type: Transform - - uid: 26275 + - uid: 26386 components: - rot: 1.5707963267948966 rad pos: 3.5,25.5 parent: 2 type: Transform - - uid: 26276 + - uid: 26387 components: - rot: 1.5707963267948966 rad pos: 18.5,30.5 parent: 2 type: Transform - - uid: 26277 + - uid: 26388 components: - rot: 1.5707963267948966 rad pos: 15.5,30.5 parent: 2 type: Transform - - uid: 26278 + - uid: 26389 components: - rot: 1.5707963267948966 rad pos: 14.5,30.5 parent: 2 type: Transform - - uid: 26279 + - uid: 26390 components: - rot: 1.5707963267948966 rad pos: 14.5,31.5 parent: 2 type: Transform - - uid: 26280 + - uid: 26391 components: - rot: 1.5707963267948966 rad pos: 13.5,31.5 parent: 2 type: Transform - - uid: 26281 + - uid: 26392 components: - pos: 49.5,50.5 parent: 2 type: Transform - - uid: 26282 + - uid: 26393 components: - rot: 1.5707963267948966 rad pos: 14.5,33.5 parent: 2 type: Transform - - uid: 26283 + - uid: 26394 components: - rot: 1.5707963267948966 rad pos: 13.5,33.5 parent: 2 type: Transform - - uid: 26284 + - uid: 26395 components: - pos: -1.5,26.5 parent: 2 type: Transform - - uid: 26285 + - uid: 26396 components: - pos: 59.5,41.5 parent: 2 type: Transform - - uid: 26286 + - uid: 26397 components: - rot: 1.5707963267948966 rad pos: 14.5,34.5 parent: 2 type: Transform - - uid: 26287 + - uid: 26398 components: - rot: 1.5707963267948966 rad pos: 18.5,31.5 parent: 2 type: Transform - - uid: 26288 + - uid: 26399 components: - pos: 10.5,29.5 parent: 2 type: Transform - - uid: 26289 + - uid: 26400 components: - pos: 11.5,34.5 parent: 2 type: Transform - - uid: 26290 + - uid: 26401 components: - pos: 5.5,35.5 parent: 2 type: Transform - - uid: 26291 + - uid: 26402 components: - pos: 18.5,34.5 parent: 2 type: Transform - - uid: 26292 + - uid: 26403 components: - pos: 10.5,35.5 parent: 2 type: Transform - - uid: 26293 + - uid: 26404 components: - pos: 11.5,30.5 parent: 2 type: Transform - - uid: 26294 + - uid: 26405 components: - pos: 1.5,25.5 parent: 2 type: Transform - - uid: 26295 + - uid: 26406 components: - pos: 0.5,25.5 parent: 2 type: Transform - - uid: 26296 + - uid: 26407 components: - pos: -0.5,25.5 parent: 2 type: Transform - - uid: 26297 + - uid: 26408 components: - pos: -1.5,25.5 parent: 2 type: Transform - - uid: 26298 + - uid: 26409 components: - pos: -1.5,28.5 parent: 2 type: Transform - - uid: 26299 + - uid: 26410 components: - pos: -3.5,25.5 parent: 2 type: Transform - - uid: 26300 + - uid: 26411 components: - pos: -3.5,24.5 parent: 2 type: Transform - - uid: 26301 + - uid: 26412 components: - pos: 59.5,48.5 parent: 2 type: Transform - - uid: 26302 + - uid: 26413 components: - pos: 34.5,26.5 parent: 2 type: Transform - - uid: 26303 + - uid: 26414 components: - pos: 34.5,25.5 parent: 2 type: Transform - - uid: 26304 + - uid: 26415 components: - pos: 34.5,24.5 parent: 2 type: Transform - - uid: 26305 + - uid: 26416 components: - rot: -1.5707963267948966 rad pos: 37.5,21.5 parent: 2 type: Transform - - uid: 26306 + - uid: 26417 components: - pos: 36.5,21.5 parent: 2 type: Transform - - uid: 26307 + - uid: 26418 components: - pos: 33.5,21.5 parent: 2 type: Transform - - uid: 26308 + - uid: 26419 components: - pos: 33.5,20.5 parent: 2 type: Transform - - uid: 26309 + - uid: 26420 components: - rot: -1.5707963267948966 rad pos: 37.5,22.5 parent: 2 type: Transform - - uid: 26310 + - uid: 26421 components: - rot: -1.5707963267948966 rad pos: 38.5,22.5 parent: 2 type: Transform - - uid: 26311 + - uid: 26422 components: - pos: 35.5,21.5 parent: 2 type: Transform - - uid: 26312 + - uid: 26423 components: - rot: -1.5707963267948966 rad pos: 37.5,19.5 parent: 2 type: Transform - - uid: 26313 + - uid: 26424 components: - rot: -1.5707963267948966 rad pos: 39.5,22.5 parent: 2 type: Transform - - uid: 26314 + - uid: 26425 components: - rot: -1.5707963267948966 rad pos: 40.5,22.5 parent: 2 type: Transform - - uid: 26315 + - uid: 26426 components: - rot: -1.5707963267948966 rad pos: 37.5,18.5 parent: 2 type: Transform - - uid: 26316 + - uid: 26427 components: - rot: 3.141592653589793 rad pos: 35.5,24.5 parent: 2 type: Transform - - uid: 26317 + - uid: 26428 components: - rot: 3.141592653589793 rad pos: 37.5,24.5 parent: 2 type: Transform - - uid: 26318 + - uid: 26429 components: - rot: -1.5707963267948966 rad pos: 39.5,24.5 parent: 2 type: Transform - - uid: 26319 + - uid: 26430 components: - rot: -1.5707963267948966 rad pos: 46.5,25.5 parent: 2 type: Transform - - uid: 26320 + - uid: 26431 components: - rot: -1.5707963267948966 rad pos: 61.5,25.5 parent: 2 type: Transform - - uid: 26321 + - uid: 26432 components: - rot: -1.5707963267948966 rad pos: 59.5,25.5 parent: 2 type: Transform - - uid: 26322 + - uid: 26433 components: - rot: -1.5707963267948966 rad pos: 58.5,25.5 parent: 2 type: Transform - - uid: 26323 + - uid: 26434 components: - rot: -1.5707963267948966 rad pos: 47.5,25.5 parent: 2 type: Transform - - uid: 26324 + - uid: 26435 components: - rot: -1.5707963267948966 rad pos: 60.5,25.5 parent: 2 type: Transform - - uid: 26325 + - uid: 26436 components: - rot: -1.5707963267948966 rad pos: 57.5,25.5 parent: 2 type: Transform - - uid: 26326 + - uid: 26437 components: - rot: -1.5707963267948966 rad pos: 54.5,25.5 parent: 2 type: Transform - - uid: 26327 + - uid: 26438 components: - rot: -1.5707963267948966 rad pos: 50.5,25.5 parent: 2 type: Transform - - uid: 26328 + - uid: 26439 components: - rot: -1.5707963267948966 rad pos: 45.5,25.5 parent: 2 type: Transform - - uid: 26329 + - uid: 26440 components: - rot: -1.5707963267948966 rad pos: 45.5,24.5 parent: 2 type: Transform - - uid: 26330 + - uid: 26441 components: - rot: -1.5707963267948966 rad pos: 45.5,23.5 parent: 2 type: Transform - - uid: 26331 + - uid: 26442 components: - rot: -1.5707963267948966 rad pos: 56.5,25.5 parent: 2 type: Transform - - uid: 26332 + - uid: 26443 components: - rot: -1.5707963267948966 rad pos: 55.5,25.5 parent: 2 type: Transform - - uid: 26333 + - uid: 26444 components: - rot: -1.5707963267948966 rad pos: 49.5,25.5 parent: 2 type: Transform - - uid: 26334 + - uid: 26445 components: - rot: -1.5707963267948966 rad pos: 48.5,25.5 parent: 2 type: Transform - - uid: 26335 + - uid: 26446 components: - rot: -1.5707963267948966 rad pos: 53.5,25.5 parent: 2 type: Transform - - uid: 26336 + - uid: 26447 components: - rot: -1.5707963267948966 rad pos: 62.5,25.5 parent: 2 type: Transform - - uid: 26337 + - uid: 26448 components: - rot: -1.5707963267948966 rad pos: 52.5,25.5 parent: 2 type: Transform - - uid: 26338 + - uid: 26449 components: - rot: -1.5707963267948966 rad pos: 51.5,25.5 parent: 2 type: Transform - - uid: 26339 + - uid: 26450 components: - rot: -1.5707963267948966 rad pos: 64.5,25.5 parent: 2 type: Transform - - uid: 26340 + - uid: 26451 components: - rot: -1.5707963267948966 rad pos: 63.5,25.5 parent: 2 type: Transform - - uid: 26341 + - uid: 26452 components: - rot: -1.5707963267948966 rad pos: 64.5,24.5 parent: 2 type: Transform - - uid: 26342 + - uid: 26453 components: - rot: -1.5707963267948966 rad pos: 64.5,23.5 parent: 2 type: Transform - - uid: 26343 + - uid: 26454 components: - rot: -1.5707963267948966 rad pos: 64.5,22.5 parent: 2 type: Transform - - uid: 26344 + - uid: 26455 components: - pos: 64.5,21.5 parent: 2 type: Transform - - uid: 26345 + - uid: 26456 components: - rot: -1.5707963267948966 rad pos: 64.5,20.5 parent: 2 type: Transform - - uid: 26346 + - uid: 26457 components: - rot: -1.5707963267948966 rad pos: 63.5,20.5 parent: 2 type: Transform - - uid: 26347 + - uid: 26458 components: - rot: -1.5707963267948966 rad pos: 63.5,19.5 parent: 2 type: Transform - - uid: 26348 + - uid: 26459 components: - rot: -1.5707963267948966 rad pos: 45.5,22.5 parent: 2 type: Transform - - uid: 26349 + - uid: 26460 components: - rot: -1.5707963267948966 rad pos: 44.5,22.5 parent: 2 type: Transform - - uid: 26350 + - uid: 26461 components: - rot: -1.5707963267948966 rad pos: 43.5,22.5 parent: 2 type: Transform - - uid: 26351 + - uid: 26462 components: - rot: -1.5707963267948966 rad pos: 41.5,22.5 parent: 2 type: Transform - - uid: 26352 + - uid: 26463 components: - rot: 3.141592653589793 rad pos: 31.5,33.5 parent: 2 type: Transform - - uid: 26353 + - uid: 26464 components: - pos: 43.5,24.5 parent: 2 type: Transform - - uid: 26354 + - uid: 26465 components: - pos: 43.5,25.5 parent: 2 type: Transform - - uid: 26355 + - uid: 26466 components: - pos: 43.5,26.5 parent: 2 type: Transform - - uid: 26356 + - uid: 26467 components: - pos: 43.5,27.5 parent: 2 type: Transform - - uid: 26357 + - uid: 26468 components: - pos: 51.5,59.5 parent: 2 type: Transform - - uid: 26358 + - uid: 26469 components: - pos: 50.5,59.5 parent: 2 type: Transform - - uid: 26359 + - uid: 26470 components: - pos: 50.5,55.5 parent: 2 type: Transform - - uid: 26360 + - uid: 26471 components: - pos: 51.5,55.5 parent: 2 type: Transform - - uid: 26361 + - uid: 26472 components: - pos: 51.5,54.5 parent: 2 type: Transform - - uid: 26362 + - uid: 26473 components: - pos: 57.5,54.5 parent: 2 type: Transform - - uid: 26363 + - uid: 26474 components: - pos: 57.5,55.5 parent: 2 type: Transform - - uid: 26364 + - uid: 26475 components: - pos: 57.5,59.5 parent: 2 type: Transform - - uid: 26365 + - uid: 26476 components: - pos: 58.5,59.5 parent: 2 type: Transform - - uid: 26366 + - uid: 26477 components: - pos: 58.5,55.5 parent: 2 type: Transform - - uid: 26367 + - uid: 26478 components: - pos: 51.5,60.5 parent: 2 type: Transform - - uid: 26368 + - uid: 26479 components: - pos: 52.5,60.5 parent: 2 type: Transform - - uid: 26369 + - uid: 26480 components: - pos: 52.5,61.5 parent: 2 type: Transform - - uid: 26370 + - uid: 26481 components: - pos: 56.5,61.5 parent: 2 type: Transform - - uid: 26371 + - uid: 26482 components: - pos: 56.5,60.5 parent: 2 type: Transform - - uid: 26372 + - uid: 26483 components: - pos: 65.5,27.5 parent: 2 type: Transform - - uid: 26373 + - uid: 26484 components: - rot: -1.5707963267948966 rad pos: 64.5,13.5 parent: 2 type: Transform - - uid: 26374 + - uid: 26485 components: - rot: -1.5707963267948966 rad pos: 64.5,12.5 parent: 2 type: Transform - - uid: 26375 + - uid: 26486 components: - rot: -1.5707963267948966 rad pos: 64.5,11.5 parent: 2 type: Transform - - uid: 26376 + - uid: 26487 components: - rot: -1.5707963267948966 rad pos: 64.5,10.5 parent: 2 type: Transform - - uid: 26377 + - uid: 26488 components: - rot: -1.5707963267948966 rad pos: 64.5,8.5 parent: 2 type: Transform - - uid: 26378 + - uid: 26489 components: - rot: -1.5707963267948966 rad pos: 64.5,9.5 parent: 2 type: Transform - - uid: 26379 + - uid: 26490 components: - rot: -1.5707963267948966 rad pos: 64.5,7.5 parent: 2 type: Transform - - uid: 26380 + - uid: 26491 components: - rot: -1.5707963267948966 rad pos: 64.5,6.5 parent: 2 type: Transform - - uid: 26381 + - uid: 26492 components: - pos: 66.5,27.5 parent: 2 type: Transform - - uid: 26382 + - uid: 26493 components: - pos: 66.5,27.5 parent: 2 type: Transform - - uid: 26383 + - uid: 26494 components: - pos: 66.5,26.5 parent: 2 type: Transform - - uid: 26384 + - uid: 26495 components: - pos: 66.5,24.5 parent: 2 type: Transform - - uid: 26385 + - uid: 26496 components: - pos: 66.5,22.5 parent: 2 type: Transform - - uid: 26386 + - uid: 26497 components: - pos: 66.5,21.5 parent: 2 type: Transform - - uid: 26387 + - uid: 26498 components: - pos: 66.5,20.5 parent: 2 type: Transform - - uid: 26388 + - uid: 26499 components: - pos: 66.5,19.5 parent: 2 type: Transform - - uid: 26389 + - uid: 26500 components: - pos: 66.5,18.5 parent: 2 type: Transform - - uid: 26390 + - uid: 26501 components: - pos: 65.5,18.5 parent: 2 type: Transform - - uid: 26391 + - uid: 26502 components: - pos: 65.5,17.5 parent: 2 type: Transform - - uid: 26392 + - uid: 26503 components: - pos: 65.5,16.5 parent: 2 type: Transform - - uid: 26393 + - uid: 26504 components: - pos: 66.5,16.5 parent: 2 type: Transform - - uid: 26394 + - uid: 26505 components: - pos: 66.5,15.5 parent: 2 type: Transform - - uid: 26395 + - uid: 26506 components: - pos: 66.5,14.5 parent: 2 type: Transform - - uid: 26396 + - uid: 26507 components: - pos: 66.5,13.5 parent: 2 type: Transform - - uid: 26397 + - uid: 26508 components: - pos: 67.5,5.5 parent: 2 type: Transform - - uid: 26398 + - uid: 26509 components: - pos: 68.5,9.5 parent: 2 type: Transform - - uid: 26399 + - uid: 26510 components: - pos: 67.5,13.5 parent: 2 type: Transform - - uid: 26400 + - uid: 26511 components: - pos: 67.5,12.5 parent: 2 type: Transform - - uid: 26401 + - uid: 26512 components: - pos: 67.5,6.5 parent: 2 type: Transform - - uid: 26402 + - uid: 26513 components: - pos: 43.5,8.5 parent: 2 type: Transform - - uid: 26403 + - uid: 26514 components: - pos: 48.5,4.5 parent: 2 type: Transform - - uid: 26404 + - uid: 26515 components: - pos: 48.5,5.5 parent: 2 type: Transform - - uid: 26405 + - uid: 26516 components: - pos: 49.5,3.5 parent: 2 type: Transform - - uid: 26406 + - uid: 26517 components: - pos: 50.5,3.5 parent: 2 type: Transform - - uid: 26407 + - uid: 26518 components: - pos: 50.5,4.5 parent: 2 type: Transform - - uid: 26408 + - uid: 26519 components: - pos: 51.5,4.5 parent: 2 type: Transform - - uid: 26409 + - uid: 26520 components: - pos: 52.5,4.5 parent: 2 type: Transform - - uid: 26410 + - uid: 26521 components: - pos: 53.5,4.5 parent: 2 type: Transform - - uid: 26411 + - uid: 26522 components: - pos: 54.5,4.5 parent: 2 type: Transform - - uid: 26412 + - uid: 26523 components: - pos: 54.5,3.5 parent: 2 type: Transform - - uid: 26413 + - uid: 26524 components: - pos: 55.5,3.5 parent: 2 type: Transform - - uid: 26414 + - uid: 26525 components: - pos: 56.5,3.5 parent: 2 type: Transform - - uid: 26415 + - uid: 26526 components: - pos: 57.5,3.5 parent: 2 type: Transform - - uid: 26416 + - uid: 26527 components: - pos: 58.5,3.5 parent: 2 type: Transform - - uid: 26417 + - uid: 26528 components: - pos: 64.5,5.5 parent: 2 type: Transform - - uid: 26418 + - uid: 26529 components: - pos: 64.5,4.5 parent: 2 type: Transform - - uid: 26419 + - uid: 26530 components: - pos: 64.5,3.5 parent: 2 type: Transform - - uid: 26420 + - uid: 26531 components: - pos: 63.5,3.5 parent: 2 type: Transform - - uid: 26421 + - uid: 26532 components: - pos: 62.5,3.5 parent: 2 type: Transform - - uid: 26422 + - uid: 26533 components: - pos: 61.5,3.5 parent: 2 type: Transform - - uid: 26423 + - uid: 26534 components: - pos: 60.5,3.5 parent: 2 type: Transform - - uid: 26424 + - uid: 26535 components: - pos: 59.5,3.5 parent: 2 type: Transform - - uid: 26425 + - uid: 26536 components: - rot: -1.5707963267948966 rad pos: 59.5,46.5 parent: 2 type: Transform - - uid: 26426 + - uid: 26537 components: - pos: 68.5,6.5 parent: 2 type: Transform - - uid: 26427 + - uid: 26538 components: - pos: 47.5,-17.5 parent: 2 type: Transform - - uid: 26428 + - uid: 26539 components: - pos: 44.5,13.5 parent: 2 type: Transform - - uid: 26429 + - uid: 26540 components: - pos: 47.5,9.5 parent: 2 type: Transform - - uid: 26430 + - uid: 26541 components: - pos: 44.5,3.5 parent: 2 type: Transform - - uid: 26431 + - uid: 26542 components: - rot: 3.141592653589793 rad pos: 39.5,10.5 parent: 2 type: Transform - - uid: 26432 + - uid: 26543 components: - pos: 48.5,8.5 parent: 2 type: Transform - - uid: 26433 + - uid: 26544 components: - pos: 33.5,19.5 parent: 2 type: Transform - - uid: 26434 + - uid: 26545 components: - rot: -1.5707963267948966 rad pos: 41.5,24.5 parent: 2 type: Transform - - uid: 26435 + - uid: 26546 components: - rot: 3.141592653589793 rad pos: 33.5,27.5 parent: 2 type: Transform - - uid: 26436 + - uid: 26547 components: - rot: 3.141592653589793 rad pos: 25.5,29.5 parent: 2 type: Transform - - uid: 26437 + - uid: 26548 components: - pos: 42.5,22.5 parent: 2 type: Transform - - uid: 26438 + - uid: 26549 components: - pos: 47.5,-16.5 parent: 2 type: Transform - - uid: 26439 + - uid: 26550 components: - rot: -1.5707963267948966 rad pos: 39.5,-16.5 parent: 2 type: Transform - - uid: 26440 + - uid: 26551 components: - rot: -1.5707963267948966 rad pos: 40.5,-16.5 parent: 2 type: Transform - - uid: 26441 + - uid: 26552 components: - rot: -1.5707963267948966 rad pos: 40.5,-15.5 parent: 2 type: Transform - - uid: 26442 + - uid: 26553 components: - rot: -1.5707963267948966 rad pos: 41.5,-15.5 parent: 2 type: Transform - - uid: 26443 + - uid: 26554 components: - pos: 48.5,-15.5 parent: 2 type: Transform - - uid: 26444 + - uid: 26555 components: - pos: 44.5,-17.5 parent: 2 type: Transform - - uid: 26445 + - uid: 26556 components: - pos: 44.5,-16.5 parent: 2 type: Transform - - uid: 26446 + - uid: 26557 components: - pos: 11.5,-18.5 parent: 2 type: Transform - - uid: 26447 + - uid: 26558 components: - pos: 44.5,9.5 parent: 2 type: Transform - - uid: 26448 + - uid: 26559 components: - rot: 1.5707963267948966 rad pos: 69.5,-12.5 parent: 2 type: Transform - - uid: 26449 + - uid: 26560 components: - rot: 1.5707963267948966 rad pos: 69.5,-10.5 parent: 2 type: Transform - - uid: 26450 + - uid: 26561 components: - rot: 1.5707963267948966 rad pos: 66.5,-14.5 parent: 2 type: Transform - - uid: 26451 + - uid: 26562 components: - rot: 1.5707963267948966 rad pos: 69.5,-14.5 parent: 2 type: Transform - - uid: 26452 + - uid: 26563 components: - pos: 48.5,-14.5 parent: 2 type: Transform - - uid: 26453 + - uid: 26564 components: - pos: 48.5,-16.5 parent: 2 type: Transform - - uid: 26454 + - uid: 26565 components: - pos: 43.5,-16.5 parent: 2 type: Transform - - uid: 26455 + - uid: 26566 components: - pos: 49.5,-14.5 parent: 2 type: Transform - - uid: 26456 + - uid: 26567 components: - pos: 50.5,-14.5 parent: 2 type: Transform - - uid: 26457 + - uid: 26568 components: - pos: 51.5,-14.5 parent: 2 type: Transform - - uid: 26458 + - uid: 26569 components: - rot: 3.141592653589793 rad pos: 54.5,-15.5 parent: 2 type: Transform - - uid: 26459 + - uid: 26570 components: - rot: 3.141592653589793 rad pos: 60.5,-15.5 parent: 2 type: Transform - - uid: 26460 + - uid: 26571 components: - rot: 3.141592653589793 rad pos: 57.5,-15.5 parent: 2 type: Transform - - uid: 26461 + - uid: 26572 components: - rot: 3.141592653589793 rad pos: 53.5,-15.5 parent: 2 type: Transform - - uid: 26462 + - uid: 26573 components: - rot: 3.141592653589793 rad pos: 53.5,-16.5 parent: 2 type: Transform - - uid: 26463 + - uid: 26574 components: - rot: 3.141592653589793 rad pos: 51.5,-15.5 parent: 2 type: Transform - - uid: 26464 + - uid: 26575 components: - pos: 63.5,-14.5 parent: 2 type: Transform - - uid: 26465 + - uid: 26576 components: - pos: 64.5,-14.5 parent: 2 type: Transform - - uid: 26466 + - uid: 26577 components: - pos: 65.5,-14.5 parent: 2 type: Transform - - uid: 26467 + - uid: 26578 components: - rot: 1.5707963267948966 rad pos: 69.5,-4.5 parent: 2 type: Transform - - uid: 26468 + - uid: 26579 components: - rot: 3.141592653589793 rad pos: 66.5,-2.5 parent: 2 type: Transform - - uid: 26469 + - uid: 26580 components: - pos: 68.5,-14.5 parent: 2 type: Transform - - uid: 26470 + - uid: 26581 components: - rot: 1.5707963267948966 rad pos: 69.5,-2.5 parent: 2 type: Transform - - uid: 26471 + - uid: 26582 components: - pos: 63.5,-15.5 parent: 2 type: Transform - - uid: 26472 + - uid: 26583 components: - rot: 3.141592653589793 rad pos: 51.5,-16.5 parent: 2 type: Transform - - uid: 26473 + - uid: 26584 components: - pos: 63.5,-16.5 parent: 2 type: Transform - - uid: 26474 + - uid: 26585 components: - pos: 63.5,-17.5 parent: 2 type: Transform - - uid: 26475 + - uid: 26586 components: - pos: 63.5,-19.5 parent: 2 type: Transform - - uid: 26476 + - uid: 26587 components: - pos: 63.5,-21.5 parent: 2 type: Transform - - uid: 26477 + - uid: 26588 components: - pos: 63.5,-23.5 parent: 2 type: Transform - - uid: 26478 + - uid: 26589 components: - pos: 63.5,-25.5 parent: 2 type: Transform - - uid: 26479 + - uid: 26590 components: - pos: 63.5,-27.5 parent: 2 type: Transform - - uid: 26480 + - uid: 26591 components: - pos: 64.5,-27.5 parent: 2 type: Transform - - uid: 26481 + - uid: 26592 components: - pos: 69.5,-31.5 parent: 2 type: Transform - - uid: 26482 + - uid: 26593 components: - pos: 61.5,-16.5 parent: 2 type: Transform - - uid: 26483 + - uid: 26594 components: - pos: 61.5,-17.5 parent: 2 type: Transform - - uid: 26484 + - uid: 26595 components: - pos: 61.5,-19.5 parent: 2 type: Transform - - uid: 26485 + - uid: 26596 components: - pos: 61.5,-21.5 parent: 2 type: Transform - - uid: 26486 + - uid: 26597 components: - pos: 61.5,-23.5 parent: 2 type: Transform - - uid: 26487 + - uid: 26598 components: - pos: 61.5,-25.5 parent: 2 type: Transform - - uid: 26488 + - uid: 26599 components: - pos: 69.5,-32.5 parent: 2 type: Transform - - uid: 26489 + - uid: 26600 components: - pos: 60.5,-16.5 parent: 2 type: Transform - - uid: 26490 + - uid: 26601 components: - pos: -2.5,-36.5 parent: 2 type: Transform - - uid: 26491 + - uid: 26602 components: - pos: 43.5,-15.5 parent: 2 type: Transform - - uid: 26492 + - uid: 26603 components: - pos: 42.5,-15.5 parent: 2 type: Transform - - uid: 26493 + - uid: 26604 components: - pos: 68.5,-15.5 parent: 2 type: Transform - - uid: 26494 + - uid: 26605 components: - rot: 1.5707963267948966 rad pos: 69.5,-6.5 parent: 2 type: Transform - - uid: 26495 + - uid: 26606 components: - rot: -1.5707963267948966 rad pos: 57.5,37.5 parent: 2 type: Transform - - uid: 26496 + - uid: 26607 components: - pos: 70.5,-30.5 parent: 2 type: Transform - - uid: 26497 + - uid: 26608 components: - pos: 72.5,-39.5 parent: 2 type: Transform - - uid: 26498 + - uid: 26609 components: - pos: 76.5,-32.5 parent: 2 type: Transform - - uid: 26499 + - uid: 26610 components: - pos: 65.5,-37.5 parent: 2 type: Transform - - uid: 26500 + - uid: 26611 components: - pos: 63.5,-40.5 parent: 2 type: Transform - - uid: 26501 + - uid: 26612 components: - pos: 63.5,-38.5 parent: 2 type: Transform - - uid: 26502 + - uid: 26613 components: - pos: 76.5,-31.5 parent: 2 type: Transform - - uid: 26503 + - uid: 26614 components: - rot: -1.5707963267948966 rad pos: 60.5,-25.5 parent: 2 type: Transform - - uid: 26504 + - uid: 26615 components: - pos: 52.5,-48.5 parent: 2 type: Transform - - uid: 26505 + - uid: 26616 components: - pos: 52.5,-47.5 parent: 2 type: Transform - - uid: 26506 + - uid: 26617 components: - pos: 52.5,-46.5 parent: 2 type: Transform - - uid: 26507 + - uid: 26618 components: - pos: 53.5,-46.5 parent: 2 type: Transform - - uid: 26508 + - uid: 26619 components: - pos: 54.5,-46.5 parent: 2 type: Transform - - uid: 26509 + - uid: 26620 components: - pos: 71.5,-66.5 parent: 2 type: Transform - - uid: 26510 + - uid: 26621 components: - pos: 75.5,-31.5 parent: 2 type: Transform - - uid: 26511 + - uid: 26622 components: - pos: 75.5,-30.5 parent: 2 type: Transform - - uid: 26512 + - uid: 26623 components: - pos: 74.5,-30.5 parent: 2 type: Transform - - uid: 26513 + - uid: 26624 components: - rot: -1.5707963267948966 rad pos: 70.5,-29.5 parent: 2 type: Transform - - uid: 26514 + - uid: 26625 components: - pos: 64.5,-42.5 parent: 2 type: Transform - - uid: 26515 + - uid: 26626 components: - pos: 55.5,-46.5 parent: 2 type: Transform - - uid: 26516 + - uid: 26627 components: - pos: 57.5,-46.5 parent: 2 type: Transform - - uid: 26517 + - uid: 26628 components: - pos: 58.5,-46.5 parent: 2 type: Transform - - uid: 26518 + - uid: 26629 components: - pos: 58.5,-47.5 parent: 2 type: Transform - - uid: 26519 + - uid: 26630 components: - pos: 58.5,-49.5 parent: 2 type: Transform - - uid: 26520 + - uid: 26631 components: - pos: 59.5,-50.5 parent: 2 type: Transform - - uid: 26521 + - uid: 26632 components: - pos: 60.5,-50.5 parent: 2 type: Transform - - uid: 26522 + - uid: 26633 components: - pos: 64.5,-50.5 parent: 2 type: Transform - - uid: 26523 + - uid: 26634 components: - pos: 65.5,-50.5 parent: 2 type: Transform - - uid: 26524 + - uid: 26635 components: - pos: 63.5,-37.5 parent: 2 type: Transform - - uid: 26525 + - uid: 26636 components: - pos: 7.5,-39.5 parent: 2 type: Transform - - uid: 26526 + - uid: 26637 components: - rot: -1.5707963267948966 rad pos: 53.5,-64.5 parent: 2 type: Transform - - uid: 26527 + - uid: 26638 components: - pos: 63.5,-39.5 parent: 2 type: Transform - - uid: 26528 + - uid: 26639 components: - pos: 63.5,-41.5 parent: 2 type: Transform - - uid: 26529 + - uid: 26640 components: - pos: 52.5,-49.5 parent: 2 type: Transform - - uid: 26530 + - uid: 26641 components: - pos: 53.5,-49.5 parent: 2 type: Transform - - uid: 26531 + - uid: 26642 components: - pos: 53.5,-50.5 parent: 2 type: Transform - - uid: 26532 + - uid: 26643 components: - pos: 54.5,-50.5 parent: 2 type: Transform - - uid: 26533 + - uid: 26644 components: - pos: 55.5,-54.5 parent: 2 type: Transform - - uid: 26534 + - uid: 26645 components: - pos: 65.5,-53.5 parent: 2 type: Transform - - uid: 26535 + - uid: 26646 components: - pos: 54.5,-54.5 parent: 2 type: Transform - - uid: 26536 + - uid: 26647 components: - pos: 59.5,-53.5 parent: 2 type: Transform - - uid: 26537 + - uid: 26648 components: - pos: 56.5,-54.5 parent: 2 type: Transform - - uid: 26538 + - uid: 26649 components: - pos: 64.5,-56.5 parent: 2 type: Transform - - uid: 26539 + - uid: 26650 components: - pos: 64.5,-55.5 parent: 2 type: Transform - - uid: 26540 + - uid: 26651 components: - pos: 60.5,-56.5 parent: 2 type: Transform - - uid: 26541 + - uid: 26652 components: - pos: 60.5,-55.5 parent: 2 type: Transform - - uid: 26542 + - uid: 26653 components: - pos: 66.5,-50.5 parent: 2 type: Transform - - uid: 26543 + - uid: 26654 components: - pos: 66.5,-53.5 parent: 2 type: Transform - - uid: 26544 + - uid: 26655 components: - pos: 65.5,-55.5 parent: 2 type: Transform - - uid: 26545 + - uid: 26656 components: - pos: 59.5,-55.5 parent: 2 type: Transform - - uid: 26546 + - uid: 26657 components: - pos: 58.5,-53.5 parent: 2 type: Transform - - uid: 26547 + - uid: 26658 components: - pos: 58.5,-50.5 parent: 2 type: Transform - - uid: 26548 + - uid: 26659 components: - pos: 76.5,-42.5 parent: 2 type: Transform - - uid: 26549 + - uid: 26660 components: - pos: 44.5,-65.5 parent: 2 type: Transform - - uid: 26550 + - uid: 26661 components: - pos: 70.5,-31.5 parent: 2 type: Transform - - uid: 26551 + - uid: 26662 components: - pos: 64.5,-30.5 parent: 2 type: Transform - - uid: 26552 + - uid: 26663 components: - pos: 73.5,-39.5 parent: 2 type: Transform - - uid: 26553 + - uid: 26664 components: - pos: 73.5,-42.5 parent: 2 type: Transform - - uid: 26554 + - uid: 26665 components: - pos: 73.5,-41.5 parent: 2 type: Transform - - uid: 26555 + - uid: 26666 components: - pos: 68.5,-50.5 parent: 2 type: Transform - - uid: 26556 + - uid: 26667 components: - pos: 67.5,-50.5 parent: 2 type: Transform - - uid: 26557 + - uid: 26668 components: - pos: 65.5,-27.5 parent: 2 type: Transform - - uid: 26558 + - uid: 26669 components: - pos: 65.5,-30.5 parent: 2 type: Transform - - uid: 26559 + - uid: 26670 components: - pos: 76.5,-39.5 parent: 2 type: Transform - - uid: 26560 + - uid: 26671 components: - pos: 76.5,-38.5 parent: 2 type: Transform - - uid: 26561 + - uid: 26672 components: - pos: 79.5,-32.5 parent: 2 type: Transform - - uid: 26562 + - uid: 26673 components: - pos: 79.5,-38.5 parent: 2 type: Transform - - uid: 26563 + - uid: 26674 components: - rot: -1.5707963267948966 rad pos: 74.5,-27.5 parent: 2 type: Transform - - uid: 26564 + - uid: 26675 components: - pos: 78.5,-43.5 parent: 2 type: Transform - - uid: 26565 + - uid: 26676 components: - pos: 76.5,-41.5 parent: 2 type: Transform - - uid: 26566 + - uid: 26677 components: - pos: 76.5,-40.5 parent: 2 type: Transform - - uid: 26567 + - uid: 26678 components: - pos: 24.5,-57.5 parent: 2 type: Transform - - uid: 26568 + - uid: 26679 components: - rot: -1.5707963267948966 rad pos: 32.5,-80.5 parent: 2 type: Transform - - uid: 26569 + - uid: 26680 components: - pos: -45.5,-38.5 parent: 2 type: Transform - - uid: 26570 + - uid: 26681 components: - pos: 53.5,-54.5 parent: 2 type: Transform - - uid: 26571 + - uid: 26682 components: - pos: 53.5,-55.5 parent: 2 type: Transform - - uid: 26572 + - uid: 26683 components: - pos: 53.5,-56.5 parent: 2 type: Transform - - uid: 26573 + - uid: 26684 components: - rot: 3.141592653589793 rad pos: 52.5,-62.5 parent: 2 type: Transform - - uid: 26574 + - uid: 26685 components: - rot: 3.141592653589793 rad pos: 48.5,-62.5 parent: 2 type: Transform - - uid: 26575 + - uid: 26686 components: - rot: 3.141592653589793 rad pos: 47.5,-62.5 parent: 2 type: Transform - - uid: 26576 + - uid: 26687 components: - pos: 34.5,-61.5 parent: 2 type: Transform - - uid: 26577 + - uid: 26688 components: - pos: 35.5,-61.5 parent: 2 type: Transform - - uid: 26578 + - uid: 26689 components: - pos: 36.5,-61.5 parent: 2 type: Transform - - uid: 26579 + - uid: 26690 components: - pos: 37.5,-61.5 parent: 2 type: Transform - - uid: 26580 + - uid: 26691 components: - pos: 37.5,-62.5 parent: 2 type: Transform - - uid: 26581 + - uid: 26692 components: - pos: 37.5,-63.5 parent: 2 type: Transform - - uid: 26582 + - uid: 26693 components: - pos: 37.5,-65.5 parent: 2 type: Transform - - uid: 26583 + - uid: 26694 components: - pos: 37.5,-67.5 parent: 2 type: Transform - - uid: 26584 + - uid: 26695 components: - pos: 37.5,-68.5 parent: 2 type: Transform - - uid: 26585 + - uid: 26696 components: - rot: -1.5707963267948966 rad pos: 48.5,-66.5 parent: 2 type: Transform - - uid: 26586 + - uid: 26697 components: - pos: 41.5,-67.5 parent: 2 type: Transform - - uid: 26587 + - uid: 26698 components: - pos: 41.5,-68.5 parent: 2 type: Transform - - uid: 26588 + - uid: 26699 components: - pos: -33.5,-14.5 parent: 2 type: Transform - - uid: 26589 + - uid: 26700 components: - pos: -33.5,-18.5 parent: 2 type: Transform - - uid: 26590 + - uid: 26701 components: - pos: -33.5,-19.5 parent: 2 type: Transform - - uid: 26591 + - uid: 26702 components: - rot: 1.5707963267948966 rad pos: 44.5,-81.5 parent: 2 type: Transform - - uid: 26592 + - uid: 26703 components: - rot: -1.5707963267948966 rad pos: 57.5,41.5 parent: 2 type: Transform - - uid: 26593 + - uid: 26704 components: - pos: -17.5,-47.5 parent: 2 type: Transform - - uid: 26594 + - uid: 26705 components: - pos: -22.5,-44.5 parent: 2 type: Transform - - uid: 26595 + - uid: 26706 components: - rot: 3.141592653589793 rad pos: 24.5,26.5 parent: 2 type: Transform - - uid: 26596 + - uid: 26707 components: - pos: 56.5,-56.5 parent: 2 type: Transform - - uid: 26597 + - uid: 26708 components: - pos: 56.5,-57.5 parent: 2 type: Transform - - uid: 26598 + - uid: 26709 components: - pos: 57.5,-57.5 parent: 2 type: Transform - - uid: 26599 + - uid: 26710 components: - pos: 57.5,-58.5 parent: 2 type: Transform - - uid: 26600 + - uid: 26711 components: - pos: 58.5,-58.5 parent: 2 type: Transform - - uid: 26601 + - uid: 26712 components: - pos: 58.5,-61.5 parent: 2 type: Transform - - uid: 26602 + - uid: 26713 components: - pos: 53.5,-62.5 parent: 2 type: Transform - - uid: 26603 + - uid: 26714 components: - pos: 53.5,-25.5 parent: 2 type: Transform - - uid: 26604 + - uid: 26715 components: - pos: 52.5,-26.5 parent: 2 type: Transform - - uid: 26605 + - uid: 26716 components: - pos: -17.5,-49.5 parent: 2 type: Transform - - uid: 26606 + - uid: 26717 components: - pos: -17.5,-48.5 parent: 2 type: Transform - - uid: 26607 + - uid: 26718 components: - pos: -22.5,-45.5 parent: 2 type: Transform - - uid: 26608 + - uid: 26719 components: - pos: -22.5,-46.5 parent: 2 type: Transform - - uid: 26609 + - uid: 26720 components: - pos: -22.5,-47.5 parent: 2 type: Transform - - uid: 26610 + - uid: 26721 components: - rot: 1.5707963267948966 rad pos: 33.5,-88.5 parent: 2 type: Transform - - uid: 26611 + - uid: 26722 components: - rot: -1.5707963267948966 rad pos: 36.5,-74.5 parent: 2 type: Transform - - uid: 26612 + - uid: 26723 components: - rot: -1.5707963267948966 rad pos: 36.5,-75.5 parent: 2 type: Transform - - uid: 26613 + - uid: 26724 components: - pos: 42.5,-74.5 parent: 2 type: Transform - - uid: 26614 + - uid: 26725 components: - rot: 3.141592653589793 rad pos: 45.5,-74.5 parent: 2 type: Transform - - uid: 26615 + - uid: 26726 components: - rot: 3.141592653589793 rad pos: 46.5,-74.5 parent: 2 type: Transform - - uid: 26616 + - uid: 26727 components: - rot: 1.5707963267948966 rad pos: 34.5,-90.5 parent: 2 type: Transform - - uid: 26617 + - uid: 26728 components: - rot: 3.141592653589793 rad pos: 46.5,-70.5 parent: 2 type: Transform - - uid: 26618 + - uid: 26729 components: - pos: 33.5,-70.5 parent: 2 type: Transform - - uid: 26619 + - uid: 26730 components: - pos: 32.5,-70.5 parent: 2 type: Transform - - uid: 26620 + - uid: 26731 components: - pos: 12.5,-70.5 parent: 2 type: Transform - - uid: 26621 + - uid: 26732 components: - pos: 45.5,-70.5 parent: 2 type: Transform - - uid: 26622 + - uid: 26733 components: - pos: 41.5,-69.5 parent: 2 type: Transform - - uid: 26623 + - uid: 26734 components: - rot: -1.5707963267948966 rad pos: 42.5,-65.5 parent: 2 type: Transform - - uid: 26624 + - uid: 26735 components: - rot: -1.5707963267948966 rad pos: 41.5,-65.5 parent: 2 type: Transform - - uid: 26625 + - uid: 26736 components: - pos: 45.5,-69.5 parent: 2 type: Transform - - uid: 26626 + - uid: 26737 components: - pos: 37.5,-69.5 parent: 2 type: Transform - - uid: 26627 + - uid: 26738 components: - pos: 33.5,-69.5 parent: 2 type: Transform - - uid: 26628 + - uid: 26739 components: - rot: 1.5707963267948966 rad pos: 28.5,-75.5 parent: 2 type: Transform - - uid: 26629 + - uid: 26740 components: - rot: -1.5707963267948966 rad pos: 31.5,-94.5 parent: 2 type: Transform - - uid: 26630 + - uid: 26741 components: - rot: -1.5707963267948966 rad pos: 32.5,-75.5 parent: 2 type: Transform - - uid: 26631 + - uid: 26742 components: - pos: 7.5,-77.5 parent: 2 type: Transform - - uid: 26632 + - uid: 26743 components: - rot: 3.141592653589793 rad pos: 20.5,-84.5 parent: 2 type: Transform - - uid: 26633 + - uid: 26744 components: - rot: -1.5707963267948966 rad pos: 28.5,-93.5 parent: 2 type: Transform - - uid: 26634 + - uid: 26745 components: - rot: 3.141592653589793 rad pos: 10.5,-86.5 parent: 2 type: Transform - - uid: 26635 + - uid: 26746 components: - rot: 3.141592653589793 rad pos: 11.5,-87.5 parent: 2 type: Transform - - uid: 26636 + - uid: 26747 components: - rot: 3.141592653589793 rad pos: 12.5,-87.5 parent: 2 type: Transform - - uid: 26637 + - uid: 26748 components: - rot: 1.5707963267948966 rad pos: 50.5,-85.5 parent: 2 type: Transform - - uid: 26638 + - uid: 26749 components: - rot: 3.141592653589793 rad pos: 21.5,-82.5 parent: 2 type: Transform - - uid: 26639 + - uid: 26750 components: - rot: -1.5707963267948966 rad pos: 46.5,-76.5 parent: 2 type: Transform - - uid: 26640 + - uid: 26751 components: - rot: 3.141592653589793 rad pos: 20.5,-82.5 parent: 2 type: Transform - - uid: 26641 + - uid: 26752 components: - rot: 1.5707963267948966 rad pos: 45.5,-83.5 parent: 2 type: Transform - - uid: 26642 + - uid: 26753 components: - rot: 3.141592653589793 rad pos: 15.5,-78.5 parent: 2 type: Transform - - uid: 26643 + - uid: 26754 components: - rot: 3.141592653589793 rad pos: 12.5,-88.5 parent: 2 type: Transform - - uid: 26644 + - uid: 26755 components: - rot: 3.141592653589793 rad pos: 18.5,-87.5 parent: 2 type: Transform - - uid: 26645 + - uid: 26756 components: - rot: 3.141592653589793 rad pos: 19.5,-87.5 parent: 2 type: Transform - - uid: 26646 + - uid: 26757 components: - rot: -1.5707963267948966 rad pos: 28.5,-87.5 parent: 2 type: Transform - - uid: 26647 + - uid: 26758 components: - rot: 3.141592653589793 rad pos: 19.5,-86.5 parent: 2 type: Transform - - uid: 26648 + - uid: 26759 components: - rot: 3.141592653589793 rad pos: 20.5,-86.5 parent: 2 type: Transform - - uid: 26649 + - uid: 26760 components: - rot: 3.141592653589793 rad pos: 20.5,-85.5 parent: 2 type: Transform - - uid: 26650 + - uid: 26761 components: - rot: 3.141592653589793 rad pos: 22.5,-84.5 parent: 2 type: Transform - - uid: 26651 + - uid: 26762 components: - rot: 1.5707963267948966 rad pos: 50.5,-75.5 parent: 2 type: Transform - - uid: 26652 + - uid: 26763 components: - rot: 3.141592653589793 rad pos: 20.5,-81.5 parent: 2 type: Transform - - uid: 26653 + - uid: 26764 components: - rot: 3.141592653589793 rad pos: 19.5,-80.5 parent: 2 type: Transform - - uid: 26654 + - uid: 26765 components: - rot: 3.141592653589793 rad pos: 18.5,-78.5 parent: 2 type: Transform - - uid: 26655 + - uid: 26766 components: - pos: 7.5,-75.5 parent: 2 type: Transform - - uid: 26656 + - uid: 26767 components: - rot: -1.5707963267948966 rad pos: 29.5,-93.5 parent: 2 type: Transform - - uid: 26657 + - uid: 26768 components: - rot: -1.5707963267948966 rad pos: 31.5,-95.5 parent: 2 type: Transform - - uid: 26658 + - uid: 26769 components: - rot: -1.5707963267948966 rad pos: 29.5,-95.5 parent: 2 type: Transform - - uid: 26659 + - uid: 26770 components: - rot: -1.5707963267948966 rad pos: 29.5,-94.5 parent: 2 type: Transform - - uid: 26660 + - uid: 26771 components: - rot: -1.5707963267948966 rad pos: 46.5,-80.5 parent: 2 type: Transform - - uid: 26661 + - uid: 26772 components: - pos: 8.5,-77.5 parent: 2 type: Transform - - uid: 26662 + - uid: 26773 components: - rot: 3.141592653589793 rad pos: 19.5,-79.5 parent: 2 type: Transform - - uid: 26663 + - uid: 26774 components: - rot: 3.141592653589793 rad pos: 18.5,-79.5 parent: 2 type: Transform - - uid: 26664 + - uid: 26775 components: - rot: 1.5707963267948966 rad pos: 34.5,-88.5 parent: 2 type: Transform - - uid: 26665 + - uid: 26776 components: - rot: -1.5707963267948966 rad pos: 44.5,-74.5 parent: 2 type: Transform - - uid: 26666 + - uid: 26777 components: - rot: 3.141592653589793 rad pos: 18.5,-88.5 parent: 2 type: Transform - - uid: 26667 + - uid: 26778 components: - pos: 12.5,-71.5 parent: 2 type: Transform - - uid: 26668 + - uid: 26779 components: - pos: 9.5,-72.5 parent: 2 type: Transform - - uid: 26669 + - uid: 26780 components: - pos: 9.5,-73.5 parent: 2 type: Transform - - uid: 26670 + - uid: 26781 components: - pos: 9.5,-74.5 parent: 2 type: Transform - - uid: 26671 + - uid: 26782 components: - pos: 10.5,-74.5 parent: 2 type: Transform - - uid: 26672 + - uid: 26783 components: - pos: 11.5,-74.5 parent: 2 type: Transform - - uid: 26673 + - uid: 26784 components: - pos: 12.5,-74.5 parent: 2 type: Transform - - uid: 26674 + - uid: 26785 components: - pos: 13.5,-74.5 parent: 2 type: Transform - - uid: 26675 + - uid: 26786 components: - pos: 16.5,-74.5 parent: 2 type: Transform - - uid: 26676 + - uid: 26787 components: - pos: 19.5,-74.5 parent: 2 type: Transform - - uid: 26677 + - uid: 26788 components: - pos: 21.5,-74.5 parent: 2 type: Transform - - uid: 26678 + - uid: 26789 components: - pos: 21.5,-72.5 parent: 2 type: Transform - - uid: 26679 + - uid: 26790 components: - pos: 20.5,-72.5 parent: 2 type: Transform - - uid: 26680 + - uid: 26791 components: - pos: 19.5,-72.5 parent: 2 type: Transform - - uid: 26681 + - uid: 26792 components: - pos: 31.5,-70.5 parent: 2 type: Transform - - uid: 26682 + - uid: 26793 components: - pos: 42.5,-75.5 parent: 2 type: Transform - - uid: 26683 + - uid: 26794 components: - pos: 44.5,-75.5 parent: 2 type: Transform - - uid: 26684 + - uid: 26795 components: - rot: -1.5707963267948966 rad pos: 27.5,-87.5 parent: 2 type: Transform - - uid: 26685 + - uid: 26796 components: - rot: -1.5707963267948966 rad pos: 33.5,-83.5 parent: 2 type: Transform - - uid: 26686 + - uid: 26797 components: - rot: 1.5707963267948966 rad pos: 46.5,-81.5 parent: 2 type: Transform - - uid: 26687 + - uid: 26798 components: - rot: -1.5707963267948966 rad pos: 26.5,-87.5 parent: 2 type: Transform - - uid: 26688 + - uid: 26799 components: - rot: -1.5707963267948966 rad pos: 34.5,-75.5 parent: 2 type: Transform - - uid: 26689 + - uid: 26800 components: - rot: 1.5707963267948966 rad pos: 46.5,-83.5 parent: 2 type: Transform - - uid: 26690 + - uid: 26801 components: - rot: -1.5707963267948966 rad pos: 27.5,-79.5 parent: 2 type: Transform - - uid: 26691 + - uid: 26802 components: - pos: 16.5,-71.5 parent: 2 type: Transform - - uid: 26692 + - uid: 26803 components: - pos: 29.5,-69.5 parent: 2 type: Transform - - uid: 26693 + - uid: 26804 components: - pos: 29.5,-70.5 parent: 2 type: Transform - - uid: 26694 + - uid: 26805 components: - pos: 28.5,-68.5 parent: 2 type: Transform - - uid: 26695 + - uid: 26806 components: - pos: 30.5,-70.5 parent: 2 type: Transform - - uid: 26696 + - uid: 26807 components: - pos: 20.5,-74.5 parent: 2 type: Transform - - uid: 26697 + - uid: 26808 components: - pos: 19.5,-71.5 parent: 2 type: Transform - - uid: 26698 + - uid: 26809 components: - pos: 22.5,-70.5 parent: 2 type: Transform - - uid: 26699 + - uid: 26810 components: - rot: -1.5707963267948966 rad pos: 32.5,-93.5 parent: 2 type: Transform - - uid: 26700 + - uid: 26811 components: - pos: 23.5,-82.5 parent: 2 type: Transform - - uid: 26701 + - uid: 26812 components: - rot: 3.141592653589793 rad pos: 22.5,-82.5 parent: 2 type: Transform - - uid: 26702 + - uid: 26813 components: - pos: 23.5,-84.5 parent: 2 type: Transform - - uid: 26703 + - uid: 26814 components: - pos: 21.5,-70.5 parent: 2 type: Transform - - uid: 26704 + - uid: 26815 components: - pos: 22.5,-74.5 parent: 2 type: Transform - - uid: 26705 + - uid: 26816 components: - pos: 23.5,-74.5 parent: 2 type: Transform - - uid: 26706 + - uid: 26817 components: - pos: 23.5,-75.5 parent: 2 type: Transform - - uid: 26707 + - uid: 26818 components: - rot: 1.5707963267948966 rad pos: 28.5,-78.5 parent: 2 type: Transform - - uid: 26708 + - uid: 26819 components: - rot: -1.5707963267948966 rad pos: 23.5,-86.5 parent: 2 type: Transform - - uid: 26709 + - uid: 26820 components: - rot: 1.5707963267948966 rad pos: 28.5,-88.5 parent: 2 type: Transform - - uid: 26710 + - uid: 26821 components: - rot: 1.5707963267948966 rad pos: 50.5,-86.5 parent: 2 type: Transform - - uid: 26711 + - uid: 26822 components: - rot: 3.141592653589793 rad pos: 11.5,-80.5 parent: 2 type: Transform - - uid: 26712 + - uid: 26823 components: - rot: 3.141592653589793 rad pos: 11.5,-86.5 parent: 2 type: Transform - - uid: 26713 + - uid: 26824 components: - pos: 7.5,-73.5 parent: 2 type: Transform - - uid: 26714 + - uid: 26825 components: - rot: 3.141592653589793 rad pos: 12.5,-78.5 parent: 2 type: Transform - - uid: 26715 + - uid: 26826 components: - rot: 3.141592653589793 rad pos: 21.5,-84.5 parent: 2 type: Transform - - uid: 26716 + - uid: 26827 components: - rot: 3.141592653589793 rad pos: 15.5,-88.5 parent: 2 type: Transform - - uid: 26717 + - uid: 26828 components: - rot: 3.141592653589793 rad pos: 20.5,-80.5 parent: 2 type: Transform - - uid: 26718 + - uid: 26829 components: - rot: 1.5707963267948966 rad pos: 28.5,-76.5 parent: 2 type: Transform - - uid: 26719 + - uid: 26830 components: - rot: 1.5707963267948966 rad pos: 32.5,-90.5 parent: 2 type: Transform - - uid: 26720 + - uid: 26831 components: - rot: 1.5707963267948966 rad pos: 32.5,-88.5 parent: 2 type: Transform - - uid: 26721 + - uid: 26832 components: - rot: -1.5707963267948966 rad pos: 41.5,-66.5 parent: 2 type: Transform - - uid: 26722 + - uid: 26833 components: - rot: 1.5707963267948966 rad pos: 46.5,-90.5 parent: 2 type: Transform - - uid: 26723 + - uid: 26834 components: - rot: -1.5707963267948966 rad pos: 23.5,-81.5 parent: 2 type: Transform - - uid: 26724 + - uid: 26835 components: - pos: 21.5,-71.5 parent: 2 type: Transform - - uid: 26725 + - uid: 26836 components: - rot: -1.5707963267948966 rad pos: 53.5,-63.5 parent: 2 type: Transform - - uid: 26726 + - uid: 26837 components: - rot: 1.5707963267948966 rad pos: 49.5,-70.5 parent: 2 type: Transform - - uid: 26727 + - uid: 26838 components: - rot: -1.5707963267948966 rad pos: 23.5,-85.5 parent: 2 type: Transform - - uid: 26728 + - uid: 26839 components: - pos: 23.5,-68.5 parent: 2 type: Transform - - uid: 26729 + - uid: 26840 components: - pos: -34.5,-14.5 parent: 2 type: Transform - - uid: 26730 + - uid: 26841 components: - pos: -35.5,-14.5 parent: 2 type: Transform - - uid: 26731 + - uid: 26842 components: - pos: -38.5,-14.5 parent: 2 type: Transform - - uid: 26732 + - uid: 26843 components: - pos: -39.5,-14.5 parent: 2 type: Transform - - uid: 26733 + - uid: 26844 components: - pos: -40.5,-14.5 parent: 2 type: Transform - - uid: 26734 + - uid: 26845 components: - pos: -17.5,-46.5 parent: 2 type: Transform - - uid: 26735 + - uid: 26846 components: - pos: -17.5,-45.5 parent: 2 type: Transform - - uid: 26736 + - uid: 26847 components: - pos: -17.5,-44.5 parent: 2 type: Transform - - uid: 26737 + - uid: 26848 components: - pos: -18.5,-44.5 parent: 2 type: Transform - - uid: 26738 + - uid: 26849 components: - pos: -20.5,-44.5 parent: 2 type: Transform - - uid: 26739 + - uid: 26850 components: - pos: -21.5,-44.5 parent: 2 type: Transform - - uid: 26744 + - uid: 26851 components: - pos: -38.5,-19.5 parent: 2 type: Transform - - uid: 26745 + - uid: 26852 components: - pos: -38.5,-18.5 parent: 2 type: Transform - - uid: 26746 + - uid: 26853 components: - pos: -38.5,-17.5 parent: 2 type: Transform - - uid: 26747 + - uid: 26854 components: - pos: -38.5,-16.5 parent: 2 type: Transform - - uid: 26748 + - uid: 26855 components: - pos: -38.5,-15.5 parent: 2 type: Transform - - uid: 26749 + - uid: 26856 components: - pos: 77.5,-49.5 parent: 2 type: Transform - - uid: 26750 + - uid: 26857 components: - pos: 73.5,-50.5 parent: 2 type: Transform - - uid: 26751 + - uid: 26858 components: - pos: 73.5,-52.5 parent: 2 type: Transform - - uid: 26752 + - uid: 26859 components: - pos: 73.5,-54.5 parent: 2 type: Transform - - uid: 26753 + - uid: 26860 components: - pos: 72.5,-54.5 parent: 2 type: Transform - - uid: 26754 + - uid: 26861 components: - pos: 69.5,-54.5 parent: 2 type: Transform - - uid: 26755 + - uid: 26862 components: - rot: -1.5707963267948966 rad pos: 69.5,-55.5 parent: 2 type: Transform - - uid: 26756 + - uid: 26863 components: - rot: 3.141592653589793 rad pos: -40.5,-21.5 parent: 2 type: Transform - - uid: 26757 + - uid: 26864 components: - rot: 3.141592653589793 rad pos: -40.5,-22.5 parent: 2 type: Transform - - uid: 26758 + - uid: 26865 components: - pos: -44.5,-24.5 parent: 2 type: Transform - - uid: 26759 + - uid: 26866 components: - pos: -42.5,-14.5 parent: 2 type: Transform - - uid: 26760 + - uid: 26867 components: - pos: -43.5,-14.5 parent: 2 type: Transform - - uid: 26761 + - uid: 26868 components: - pos: -43.5,-12.5 parent: 2 type: Transform - - uid: 26762 + - uid: 26869 components: - pos: -43.5,-9.5 parent: 2 type: Transform - - uid: 26763 + - uid: 26870 components: - pos: -43.5,-8.5 parent: 2 type: Transform - - uid: 26764 + - uid: 26871 components: - pos: -43.5,-7.5 parent: 2 type: Transform - - uid: 26765 + - uid: 26872 components: - pos: -43.5,-19.5 parent: 2 type: Transform - - uid: 26766 + - uid: 26873 components: - pos: -42.5,-19.5 parent: 2 type: Transform - - uid: 26767 + - uid: 26874 components: - pos: -40.5,-19.5 parent: 2 type: Transform - - uid: 26768 + - uid: 26875 components: - pos: -39.5,-19.5 parent: 2 type: Transform - - uid: 26769 + - uid: 26876 components: - pos: -43.5,-15.5 parent: 2 type: Transform - - uid: 26770 + - uid: 26877 components: - pos: -43.5,-16.5 parent: 2 type: Transform - - uid: 26771 + - uid: 26878 components: - pos: -43.5,-17.5 parent: 2 type: Transform - - uid: 26772 + - uid: 26879 components: - pos: -43.5,-18.5 parent: 2 type: Transform - - uid: 26773 + - uid: 26880 components: - pos: 59.5,-61.5 parent: 2 type: Transform - - uid: 26774 + - uid: 26881 components: - pos: 67.5,-58.5 parent: 2 type: Transform - - uid: 26775 + - uid: 26882 components: - rot: -1.5707963267948966 rad pos: 67.5,-60.5 parent: 2 type: Transform - - uid: 26776 + - uid: 26883 components: - pos: 68.5,-58.5 parent: 2 type: Transform - - uid: 26777 + - uid: 26884 components: - pos: 65.5,-61.5 parent: 2 type: Transform - - uid: 26778 + - uid: 26885 components: - pos: 60.5,-61.5 parent: 2 type: Transform - - uid: 26779 + - uid: 26886 components: - pos: 65.5,-60.5 parent: 2 type: Transform - - uid: 26780 + - uid: 26887 components: - pos: 67.5,-59.5 parent: 2 type: Transform - - uid: 26781 + - uid: 26888 components: - pos: 52.5,-29.5 parent: 2 type: Transform - - uid: 26782 + - uid: 26889 components: - pos: 52.5,-28.5 parent: 2 type: Transform - - uid: 26783 + - uid: 26890 components: - pos: 52.5,-27.5 parent: 2 type: Transform - - uid: 26784 + - uid: 26891 components: - pos: 52.5,-30.5 parent: 2 type: Transform - - uid: 26785 + - uid: 26892 components: - pos: 52.5,-31.5 parent: 2 type: Transform - - uid: 26786 + - uid: 26893 components: - pos: 43.5,-32.5 parent: 2 type: Transform - - uid: 26787 + - uid: 26894 components: - pos: 58.5,-68.5 parent: 2 type: Transform - - uid: 26788 + - uid: 26895 components: - pos: 49.5,-32.5 parent: 2 type: Transform - - uid: 26789 + - uid: 26896 components: - pos: 48.5,-32.5 parent: 2 type: Transform - - uid: 26790 + - uid: 26897 components: - pos: 46.5,-32.5 parent: 2 type: Transform - - uid: 26791 + - uid: 26898 components: - pos: 57.5,-68.5 parent: 2 type: Transform - - uid: 26792 + - uid: 26899 components: - pos: 45.5,-32.5 parent: 2 type: Transform - - uid: 26793 + - uid: 26900 components: - pos: 69.5,-67.5 parent: 2 type: Transform - - uid: 26794 + - uid: 26901 components: - pos: 70.5,-67.5 parent: 2 type: Transform - - uid: 26795 + - uid: 26902 components: - pos: 71.5,-67.5 parent: 2 type: Transform - - uid: 26796 + - uid: 26903 components: - pos: 71.5,-63.5 parent: 2 type: Transform - - uid: 26797 + - uid: 26904 components: - pos: 72.5,-63.5 parent: 2 type: Transform - - uid: 26798 + - uid: 26905 components: - pos: 72.5,-60.5 parent: 2 type: Transform - - uid: 26799 + - uid: 26906 components: - pos: 73.5,-60.5 parent: 2 type: Transform - - uid: 26800 + - uid: 26907 components: - pos: 72.5,-61.5 parent: 2 type: Transform - - uid: 26801 + - uid: 26908 components: - pos: 72.5,-62.5 parent: 2 type: Transform - - uid: 26802 + - uid: 26909 components: - pos: 73.5,-59.5 parent: 2 type: Transform - - uid: 26803 + - uid: 26910 components: - pos: 73.5,-58.5 parent: 2 type: Transform - - uid: 26804 + - uid: 26911 components: - pos: 74.5,-58.5 parent: 2 type: Transform - - uid: 26805 + - uid: 26912 components: - pos: 75.5,-58.5 parent: 2 type: Transform - - uid: 26806 + - uid: 26913 components: - pos: 10.5,-38.5 parent: 2 type: Transform - - uid: 26807 + - uid: 26914 components: - pos: -43.5,-23.5 parent: 2 type: Transform - - uid: 26808 + - uid: 26915 components: - rot: 3.141592653589793 rad pos: -59.5,-28.5 parent: 2 type: Transform - - uid: 26809 + - uid: 26916 components: - pos: -43.5,-24.5 parent: 2 type: Transform - - uid: 26810 + - uid: 26917 components: - rot: 3.141592653589793 rad pos: -40.5,-20.5 parent: 2 type: Transform - - uid: 26811 + - uid: 26918 components: - rot: -1.5707963267948966 rad pos: -34.5,-38.5 parent: 2 type: Transform - - uid: 26812 + - uid: 26919 components: - rot: -1.5707963267948966 rad pos: -40.5,-37.5 parent: 2 type: Transform - - uid: 26813 + - uid: 26920 components: - pos: 28.5,-69.5 parent: 2 type: Transform - - uid: 26814 + - uid: 26921 components: - pos: 22.5,-69.5 parent: 2 type: Transform - - uid: 26815 + - uid: 26922 components: - pos: 23.5,-69.5 parent: 2 type: Transform - - uid: 26816 + - uid: 26923 components: - rot: -1.5707963267948966 rad pos: -33.5,-39.5 parent: 2 type: Transform - - uid: 26817 + - uid: 26924 components: - rot: -1.5707963267948966 rad pos: -33.5,-38.5 parent: 2 type: Transform - - uid: 26818 + - uid: 26925 components: - pos: -41.5,-36.5 parent: 2 type: Transform - - uid: 26819 + - uid: 26926 components: - pos: -41.5,-37.5 parent: 2 type: Transform - - uid: 26820 + - uid: 26927 components: - rot: -1.5707963267948966 rad pos: -39.5,-37.5 parent: 2 type: Transform - - uid: 26821 + - uid: 26928 components: - rot: -1.5707963267948966 rad pos: -35.5,-37.5 parent: 2 type: Transform - - uid: 26822 + - uid: 26929 components: - rot: -1.5707963267948966 rad pos: -36.5,-37.5 parent: 2 type: Transform - - uid: 26823 + - uid: 26930 components: - rot: -1.5707963267948966 rad pos: -33.5,-42.5 parent: 2 type: Transform - - uid: 26824 + - uid: 26931 components: - rot: -1.5707963267948966 rad pos: -32.5,-42.5 parent: 2 type: Transform - - uid: 26825 + - uid: 26932 components: - pos: -44.5,-7.5 parent: 2 type: Transform - - uid: 26826 + - uid: 26933 components: - pos: -45.5,-7.5 parent: 2 type: Transform - - uid: 26827 + - uid: 26934 components: - pos: -47.5,-7.5 parent: 2 type: Transform - - uid: 26828 + - uid: 26935 components: - pos: -48.5,-7.5 parent: 2 type: Transform - - uid: 26829 + - uid: 26936 components: - pos: -49.5,-10.5 parent: 2 type: Transform - - uid: 26830 + - uid: 26937 components: - pos: -49.5,-9.5 parent: 2 type: Transform - - uid: 26831 + - uid: 26938 components: - pos: -49.5,-8.5 parent: 2 type: Transform - - uid: 26832 + - uid: 26939 components: - pos: -49.5,-7.5 parent: 2 type: Transform - - uid: 26833 + - uid: 26940 components: - pos: -49.5,-18.5 parent: 2 type: Transform - - uid: 26834 + - uid: 26941 components: - pos: -48.5,-18.5 parent: 2 type: Transform - - uid: 26835 + - uid: 26942 components: - pos: -47.5,-18.5 parent: 2 type: Transform - - uid: 26836 + - uid: 26943 components: - pos: -46.5,-18.5 parent: 2 type: Transform - - uid: 26837 + - uid: 26944 components: - pos: -49.5,-11.5 parent: 2 type: Transform - - uid: 26838 + - uid: 26945 components: - pos: -50.5,-11.5 parent: 2 type: Transform - - uid: 26839 + - uid: 26946 components: - pos: -51.5,-11.5 parent: 2 type: Transform - - uid: 26840 + - uid: 26947 components: - pos: -51.5,-12.5 parent: 2 type: Transform - - uid: 26841 + - uid: 26948 components: - pos: -51.5,-14.5 parent: 2 type: Transform - - uid: 26842 + - uid: 26949 components: - pos: -51.5,-15.5 parent: 2 type: Transform - - uid: 26843 + - uid: 26950 components: - pos: -50.5,-15.5 parent: 2 type: Transform - - uid: 26844 + - uid: 26951 components: - pos: -49.5,-15.5 parent: 2 type: Transform - - uid: 26845 + - uid: 26952 components: - pos: -49.5,-4.5 parent: 2 type: Transform - - uid: 26846 + - uid: 26953 components: - pos: -50.5,-4.5 parent: 2 type: Transform - - uid: 26847 + - uid: 26954 components: - pos: -51.5,-4.5 parent: 2 type: Transform - - uid: 26848 + - uid: 26955 components: - pos: -52.5,-4.5 parent: 2 type: Transform - - uid: 26849 + - uid: 26956 components: - pos: -53.5,-4.5 parent: 2 type: Transform - - uid: 26850 + - uid: 26957 components: - pos: -54.5,-4.5 parent: 2 type: Transform - - uid: 26851 + - uid: 26958 components: - pos: -55.5,-4.5 parent: 2 type: Transform - - uid: 26852 + - uid: 26959 components: - pos: -55.5,-5.5 parent: 2 type: Transform - - uid: 26853 + - uid: 26960 components: - pos: -56.5,-5.5 parent: 2 type: Transform - - uid: 26854 + - uid: 26961 components: - pos: -56.5,-6.5 parent: 2 type: Transform - - uid: 26855 + - uid: 26962 components: - pos: -56.5,-7.5 parent: 2 type: Transform - - uid: 26856 + - uid: 26963 components: - pos: -56.5,-8.5 parent: 2 type: Transform - - uid: 26857 + - uid: 26964 components: - pos: -56.5,-9.5 parent: 2 type: Transform - - uid: 26858 + - uid: 26965 components: - pos: -56.5,-10.5 parent: 2 type: Transform - - uid: 26859 + - uid: 26966 components: - pos: -56.5,-16.5 parent: 2 type: Transform - - uid: 26860 + - uid: 26967 components: - pos: -56.5,-17.5 parent: 2 type: Transform - - uid: 26861 + - uid: 26968 components: - rot: -1.5707963267948966 rad pos: -57.5,-17.5 parent: 2 type: Transform - - uid: 26862 + - uid: 26969 components: - pos: -56.5,-19.5 parent: 2 type: Transform - - uid: 26863 + - uid: 26970 components: - pos: -56.5,-19.5 parent: 2 type: Transform - - uid: 26864 + - uid: 26971 components: - pos: -52.5,-21.5 parent: 2 type: Transform - - uid: 26865 + - uid: 26972 components: - pos: -50.5,-21.5 parent: 2 type: Transform - - uid: 26866 + - uid: 26973 components: - pos: -49.5,-21.5 parent: 2 type: Transform - - uid: 26867 + - uid: 26974 components: - pos: -44.5,-18.5 parent: 2 type: Transform - - uid: 26868 + - uid: 26975 components: - pos: -44.5,-18.5 parent: 2 type: Transform - - uid: 26869 + - uid: 26976 components: - pos: 55.5,-50.5 parent: 2 type: Transform - - uid: 26870 + - uid: 26977 components: - pos: -49.5,-22.5 parent: 2 type: Transform - - uid: 26871 + - uid: 26978 components: - rot: -1.5707963267948966 rad pos: -47.5,-24.5 parent: 2 type: Transform - - uid: 26872 + - uid: 26979 components: - pos: 56.5,-50.5 parent: 2 type: Transform - - uid: 26873 + - uid: 26980 components: - pos: -52.5,-26.5 parent: 2 type: Transform - - uid: 26874 + - uid: 26981 components: - pos: -52.5,-25.5 parent: 2 type: Transform - - uid: 26875 + - uid: 26982 components: - pos: -52.5,-24.5 parent: 2 type: Transform - - uid: 26876 + - uid: 26983 components: - pos: -52.5,-23.5 parent: 2 type: Transform - - uid: 26877 + - uid: 26984 components: - pos: -52.5,-22.5 parent: 2 type: Transform - - uid: 26878 + - uid: 26985 components: - pos: -49.5,-20.5 parent: 2 type: Transform - - uid: 26879 + - uid: 26986 components: - rot: 3.141592653589793 rad pos: -58.5,-22.5 parent: 2 type: Transform - - uid: 26880 + - uid: 26987 components: - rot: 3.141592653589793 rad pos: -59.5,-22.5 parent: 2 type: Transform - - uid: 26881 + - uid: 26988 components: - rot: 3.141592653589793 rad pos: -60.5,-22.5 parent: 2 type: Transform - - uid: 26882 + - uid: 26989 components: - rot: 3.141592653589793 rad pos: -61.5,-22.5 parent: 2 type: Transform - - uid: 26883 + - uid: 26990 components: - rot: 3.141592653589793 rad pos: -62.5,-22.5 parent: 2 type: Transform - - uid: 26884 + - uid: 26991 components: - rot: 3.141592653589793 rad pos: -63.5,-22.5 parent: 2 type: Transform - - uid: 26885 + - uid: 26992 components: - rot: 3.141592653589793 rad pos: -69.5,-22.5 parent: 2 type: Transform - - uid: 26886 + - uid: 26993 components: - rot: 3.141592653589793 rad pos: -70.5,-22.5 parent: 2 type: Transform - - uid: 26887 + - uid: 26994 components: - rot: 3.141592653589793 rad pos: -53.5,-26.5 parent: 2 type: Transform - - uid: 26888 + - uid: 26995 components: - rot: 3.141592653589793 rad pos: -55.5,-26.5 parent: 2 type: Transform - - uid: 26889 + - uid: 26996 components: - rot: 1.5707963267948966 rad pos: -56.5,-26.5 parent: 2 type: Transform - - uid: 26890 + - uid: 26997 components: - rot: 3.141592653589793 rad pos: -57.5,-26.5 parent: 2 type: Transform - - uid: 26891 + - uid: 26998 components: - rot: 3.141592653589793 rad pos: -59.5,-26.5 parent: 2 type: Transform - - uid: 26892 + - uid: 26999 components: - pos: -59.5,-29.5 parent: 2 type: Transform - - uid: 26893 + - uid: 27000 components: - rot: 3.141592653589793 rad pos: -63.5,-29.5 parent: 2 type: Transform - - uid: 26894 + - uid: 27001 components: - pos: -62.5,-26.5 parent: 2 type: Transform - - uid: 26895 + - uid: 27002 components: - pos: -63.5,-27.5 parent: 2 type: Transform - - uid: 26896 + - uid: 27003 components: - pos: -63.5,-28.5 parent: 2 type: Transform - - uid: 26897 + - uid: 27004 components: - pos: -63.5,-26.5 parent: 2 type: Transform - - uid: 26898 + - uid: 27005 components: - pos: -59.5,-31.5 parent: 2 type: Transform - - uid: 26899 + - uid: 27006 components: - pos: -60.5,-31.5 parent: 2 type: Transform - - uid: 26900 + - uid: 27007 components: - pos: -57.5,-19.5 parent: 2 type: Transform - - uid: 26901 + - uid: 27008 components: - pos: -58.5,-19.5 parent: 2 type: Transform - - uid: 26902 + - uid: 27009 components: - pos: -58.5,-20.5 parent: 2 type: Transform - - uid: 26903 + - uid: 27010 components: - pos: -58.5,-21.5 parent: 2 type: Transform - - uid: 26904 + - uid: 27011 components: - pos: -62.5,-31.5 parent: 2 type: Transform - - uid: 26905 + - uid: 27012 components: - pos: -63.5,-31.5 parent: 2 type: Transform - - uid: 26906 + - uid: 27013 components: - pos: -63.5,-32.5 parent: 2 type: Transform - - uid: 26907 + - uid: 27014 components: - rot: 1.5707963267948966 rad pos: -58.5,-26.5 parent: 2 type: Transform - - uid: 26908 + - uid: 27015 components: - rot: 1.5707963267948966 rad pos: -54.5,-26.5 parent: 2 type: Transform - - uid: 26909 + - uid: 27016 components: - rot: 3.141592653589793 rad pos: -40.5,-23.5 parent: 2 type: Transform - - uid: 26910 + - uid: 27017 components: - rot: 3.141592653589793 rad pos: -41.5,-23.5 parent: 2 type: Transform - - uid: 26911 + - uid: 27018 components: - rot: 3.141592653589793 rad pos: -42.5,-23.5 parent: 2 type: Transform - - uid: 26912 + - uid: 27019 components: - pos: -59.5,-27.5 parent: 2 type: Transform - - uid: 26913 + - uid: 27020 components: - pos: -50.5,-55.5 parent: 2 type: Transform - - uid: 26914 + - uid: 27021 components: - pos: -50.5,-53.5 parent: 2 type: Transform - - uid: 26915 + - uid: 27022 components: - pos: -50.5,-51.5 parent: 2 type: Transform - - uid: 26916 + - uid: 27023 components: - pos: -50.5,-49.5 parent: 2 type: Transform - - uid: 26917 + - uid: 27024 components: - pos: -50.5,-47.5 parent: 2 type: Transform - - uid: 26918 + - uid: 27025 components: - pos: -50.5,-45.5 parent: 2 type: Transform - - uid: 26919 + - uid: 27026 components: - pos: -50.5,-43.5 parent: 2 type: Transform - - uid: 26920 + - uid: 27027 components: - pos: -50.5,-41.5 parent: 2 type: Transform - - uid: 26921 + - uid: 27028 components: - pos: -49.5,-41.5 parent: 2 type: Transform - - uid: 26922 + - uid: 27029 components: - pos: -48.5,-41.5 parent: 2 type: Transform - - uid: 26923 + - uid: 27030 components: - pos: -47.5,-41.5 parent: 2 type: Transform - - uid: 26924 + - uid: 27031 components: - pos: -49.5,-43.5 parent: 2 type: Transform - - uid: 26925 + - uid: 27032 components: - pos: -48.5,-43.5 parent: 2 type: Transform - - uid: 26926 + - uid: 27033 components: - pos: -47.5,-43.5 parent: 2 type: Transform - - uid: 26927 + - uid: 27034 components: - pos: -49.5,-45.5 parent: 2 type: Transform - - uid: 26928 + - uid: 27035 components: - pos: -48.5,-45.5 parent: 2 type: Transform - - uid: 26929 + - uid: 27036 components: - pos: -47.5,-45.5 parent: 2 type: Transform - - uid: 26930 + - uid: 27037 components: - pos: -49.5,-47.5 parent: 2 type: Transform - - uid: 26931 + - uid: 27038 components: - pos: -48.5,-47.5 parent: 2 type: Transform - - uid: 26932 + - uid: 27039 components: - pos: -47.5,-47.5 parent: 2 type: Transform - - uid: 26933 + - uid: 27040 components: - pos: -49.5,-49.5 parent: 2 type: Transform - - uid: 26934 + - uid: 27041 components: - pos: -48.5,-49.5 parent: 2 type: Transform - - uid: 26935 + - uid: 27042 components: - pos: -47.5,-49.5 parent: 2 type: Transform - - uid: 26936 + - uid: 27043 components: - pos: -49.5,-51.5 parent: 2 type: Transform - - uid: 26937 + - uid: 27044 components: - pos: -48.5,-51.5 parent: 2 type: Transform - - uid: 26938 + - uid: 27045 components: - pos: -47.5,-51.5 parent: 2 type: Transform - - uid: 26939 + - uid: 27046 components: - pos: -49.5,-53.5 parent: 2 type: Transform - - uid: 26940 + - uid: 27047 components: - pos: -48.5,-53.5 parent: 2 type: Transform - - uid: 26941 + - uid: 27048 components: - pos: -47.5,-53.5 parent: 2 type: Transform - - uid: 26942 + - uid: 27049 components: - pos: -49.5,-55.5 parent: 2 type: Transform - - uid: 26943 + - uid: 27050 components: - pos: -48.5,-55.5 parent: 2 type: Transform - - uid: 26944 + - uid: 27051 components: - pos: -47.5,-55.5 parent: 2 type: Transform - - uid: 26945 + - uid: 27052 components: - pos: -51.5,-55.5 parent: 2 type: Transform - - uid: 26946 + - uid: 27053 components: - pos: -51.5,-54.5 parent: 2 type: Transform - - uid: 26947 + - uid: 27054 components: - pos: -51.5,-53.5 parent: 2 type: Transform - - uid: 26948 + - uid: 27055 components: - pos: -51.5,-51.5 parent: 2 type: Transform - - uid: 26949 + - uid: 27056 components: - pos: -51.5,-50.5 parent: 2 type: Transform - - uid: 26950 + - uid: 27057 components: - pos: -51.5,-49.5 parent: 2 type: Transform - - uid: 26951 + - uid: 27058 components: - pos: -51.5,-48.5 parent: 2 type: Transform - - uid: 26952 + - uid: 27059 components: - pos: -51.5,-47.5 parent: 2 type: Transform - - uid: 26953 + - uid: 27060 components: - pos: -51.5,-46.5 parent: 2 type: Transform - - uid: 26954 + - uid: 27061 components: - pos: -51.5,-45.5 parent: 2 type: Transform - - uid: 26955 + - uid: 27062 components: - pos: -51.5,-44.5 parent: 2 type: Transform - - uid: 26956 + - uid: 27063 components: - pos: -51.5,-43.5 parent: 2 type: Transform - - uid: 26957 + - uid: 27064 components: - pos: -51.5,-42.5 parent: 2 type: Transform - - uid: 26958 + - uid: 27065 components: - pos: -51.5,-41.5 parent: 2 type: Transform - - uid: 26959 + - uid: 27066 components: - pos: -47.5,-38.5 parent: 2 type: Transform - - uid: 26960 + - uid: 27067 components: - pos: -41.5,-39.5 parent: 2 type: Transform - - uid: 26961 + - uid: 27068 components: - pos: -41.5,-38.5 parent: 2 type: Transform - - uid: 26962 + - uid: 27069 components: - rot: 1.5707963267948966 rad pos: -59.5,-30.5 parent: 2 type: Transform - - uid: 26963 + - uid: 27070 components: - rot: 3.141592653589793 rad pos: -58.5,-31.5 parent: 2 type: Transform - - uid: 26964 + - uid: 27071 components: - rot: 3.141592653589793 rad pos: -57.5,-5.5 parent: 2 type: Transform - - uid: 26965 + - uid: 27072 components: - rot: 3.141592653589793 rad pos: -57.5,-4.5 parent: 2 type: Transform - - uid: 26966 + - uid: 27073 components: - rot: 3.141592653589793 rad pos: -58.5,-4.5 parent: 2 type: Transform - - uid: 26967 + - uid: 27074 components: - rot: 3.141592653589793 rad pos: -59.5,-4.5 parent: 2 type: Transform - - uid: 26968 + - uid: 27075 components: - rot: 3.141592653589793 rad pos: -60.5,-4.5 parent: 2 type: Transform - - uid: 26969 + - uid: 27076 components: - rot: 3.141592653589793 rad pos: -61.5,-4.5 parent: 2 type: Transform - - uid: 26970 + - uid: 27077 components: - rot: 3.141592653589793 rad pos: -62.5,-4.5 parent: 2 type: Transform - - uid: 26971 + - uid: 27078 components: - rot: 3.141592653589793 rad pos: -63.5,-4.5 parent: 2 type: Transform - - uid: 26972 + - uid: 27079 components: - rot: 3.141592653589793 rad pos: -64.5,-4.5 parent: 2 type: Transform - - uid: 26973 + - uid: 27080 components: - rot: 3.141592653589793 rad pos: -65.5,-4.5 parent: 2 type: Transform - - uid: 26974 + - uid: 27081 components: - rot: 3.141592653589793 rad pos: -66.5,-4.5 parent: 2 type: Transform - - uid: 26975 + - uid: 27082 components: - rot: 3.141592653589793 rad pos: -67.5,-4.5 parent: 2 type: Transform - - uid: 26976 + - uid: 27083 components: - rot: 3.141592653589793 rad pos: -68.5,-4.5 parent: 2 type: Transform - - uid: 26977 + - uid: 27084 components: - rot: 3.141592653589793 rad pos: -69.5,-4.5 parent: 2 type: Transform - - uid: 26978 + - uid: 27085 components: - rot: 3.141592653589793 rad pos: -70.5,-4.5 parent: 2 type: Transform - - uid: 26979 + - uid: 27086 components: - rot: 3.141592653589793 rad pos: -71.5,-4.5 parent: 2 type: Transform - - uid: 26980 + - uid: 27087 components: - rot: 3.141592653589793 rad pos: -72.5,-4.5 parent: 2 type: Transform - - uid: 26981 + - uid: 27088 components: - rot: 3.141592653589793 rad pos: -73.5,-4.5 parent: 2 type: Transform - - uid: 26982 + - uid: 27089 components: - rot: 3.141592653589793 rad pos: -74.5,-4.5 parent: 2 type: Transform - - uid: 26983 + - uid: 27090 components: - rot: 3.141592653589793 rad pos: -75.5,-4.5 parent: 2 type: Transform - - uid: 26984 + - uid: 27091 components: - rot: 3.141592653589793 rad pos: -75.5,-5.5 parent: 2 type: Transform - - uid: 26985 + - uid: 27092 components: - rot: 3.141592653589793 rad pos: -75.5,-6.5 parent: 2 type: Transform - - uid: 26986 + - uid: 27093 components: - rot: 3.141592653589793 rad pos: -75.5,-7.5 parent: 2 type: Transform - - uid: 26987 + - uid: 27094 components: - rot: 3.141592653589793 rad pos: -75.5,-8.5 parent: 2 type: Transform - - uid: 26988 + - uid: 27095 components: - rot: 3.141592653589793 rad pos: -75.5,-9.5 parent: 2 type: Transform - - uid: 26989 + - uid: 27096 components: - rot: 3.141592653589793 rad pos: -75.5,-10.5 parent: 2 type: Transform - - uid: 26990 + - uid: 27097 components: - rot: 3.141592653589793 rad pos: -75.5,-11.5 parent: 2 type: Transform - - uid: 26991 + - uid: 27098 components: - rot: 3.141592653589793 rad pos: -75.5,-13.5 parent: 2 type: Transform - - uid: 26992 + - uid: 27099 components: - rot: 3.141592653589793 rad pos: -75.5,-14.5 parent: 2 type: Transform - - uid: 26993 + - uid: 27100 components: - rot: 3.141592653589793 rad pos: -75.5,-15.5 parent: 2 type: Transform - - uid: 26994 + - uid: 27101 components: - rot: 3.141592653589793 rad pos: -75.5,-16.5 parent: 2 type: Transform - - uid: 26995 + - uid: 27102 components: - rot: 3.141592653589793 rad pos: -75.5,-17.5 parent: 2 type: Transform - - uid: 26996 + - uid: 27103 components: - rot: 3.141592653589793 rad pos: -75.5,-18.5 parent: 2 type: Transform - - uid: 26997 + - uid: 27104 components: - rot: 3.141592653589793 rad pos: -75.5,-19.5 parent: 2 type: Transform - - uid: 26998 + - uid: 27105 components: - rot: 3.141592653589793 rad pos: -75.5,-20.5 parent: 2 type: Transform - - uid: 26999 + - uid: 27106 components: - rot: 3.141592653589793 rad pos: -75.5,-21.5 parent: 2 type: Transform - - uid: 27000 + - uid: 27107 components: - rot: 3.141592653589793 rad pos: -75.5,-22.5 parent: 2 type: Transform - - uid: 27001 + - uid: 27108 components: - rot: 3.141592653589793 rad pos: -74.5,-22.5 parent: 2 type: Transform - - uid: 27002 + - uid: 27109 components: - rot: 3.141592653589793 rad pos: -73.5,-22.5 parent: 2 type: Transform - - uid: 27003 + - uid: 27110 components: - rot: 3.141592653589793 rad pos: -72.5,-22.5 parent: 2 type: Transform - - uid: 27004 + - uid: 27111 components: - rot: 3.141592653589793 rad pos: -71.5,-22.5 parent: 2 type: Transform - - uid: 27005 + - uid: 27112 components: - pos: -45.5,-57.5 parent: 2 type: Transform - - uid: 27006 + - uid: 27113 components: - pos: -45.5,-56.5 parent: 2 type: Transform - - uid: 27007 + - uid: 27114 components: - pos: -45.5,-58.5 parent: 2 type: Transform - - uid: 27008 + - uid: 27115 components: - rot: 3.141592653589793 rad pos: -39.5,-59.5 parent: 2 type: Transform - - uid: 27009 + - uid: 27116 components: - pos: -43.5,-58.5 parent: 2 type: Transform - - uid: 27010 + - uid: 27117 components: - rot: 3.141592653589793 rad pos: -36.5,-58.5 parent: 2 type: Transform - - uid: 27011 + - uid: 27118 components: - pos: -40.5,-58.5 parent: 2 type: Transform - - uid: 27012 + - uid: 27119 components: - pos: -45.5,-32.5 parent: 2 type: Transform - - uid: 27013 + - uid: 27120 components: - pos: -45.5,-36.5 parent: 2 type: Transform - - uid: 27014 + - uid: 27121 components: - rot: 3.141592653589793 rad pos: -40.5,-59.5 parent: 2 type: Transform - - uid: 27015 + - uid: 27122 components: - rot: -1.5707963267948966 rad pos: -32.5,-43.5 parent: 2 type: Transform - - uid: 27016 + - uid: 27123 components: - rot: 1.5707963267948966 rad pos: -36.5,-38.5 parent: 2 type: Transform - - uid: 27017 + - uid: 27124 components: - rot: 1.5707963267948966 rad pos: -36.5,-39.5 parent: 2 type: Transform - - uid: 27018 + - uid: 27125 components: - rot: 1.5707963267948966 rad pos: -36.5,-40.5 parent: 2 type: Transform - - uid: 27019 + - uid: 27126 components: - rot: 1.5707963267948966 rad pos: -41.5,-40.5 parent: 2 type: Transform - - uid: 27020 + - uid: 27127 components: - pos: -32.5,-44.5 parent: 2 type: Transform - - uid: 27021 + - uid: 27128 components: - pos: -32.5,-45.5 parent: 2 type: Transform - - uid: 27022 + - uid: 27129 components: - pos: -32.5,-46.5 parent: 2 type: Transform - - uid: 27023 + - uid: 27130 components: - pos: -32.5,-47.5 parent: 2 type: Transform - - uid: 27024 + - uid: 27131 components: - pos: -32.5,-48.5 parent: 2 type: Transform - - uid: 27025 + - uid: 27132 components: - pos: -32.5,-49.5 parent: 2 type: Transform - - uid: 27026 + - uid: 27133 components: - pos: -32.5,-51.5 parent: 2 type: Transform - - uid: 27027 + - uid: 27134 components: - pos: -32.5,-52.5 parent: 2 type: Transform - - uid: 27028 + - uid: 27135 components: - pos: -32.5,-53.5 parent: 2 type: Transform - - uid: 27029 + - uid: 27136 components: - pos: -32.5,-54.5 parent: 2 type: Transform - - uid: 27030 + - uid: 27137 components: - pos: -32.5,-55.5 parent: 2 type: Transform - - uid: 27031 + - uid: 27138 components: - pos: -32.5,-56.5 parent: 2 type: Transform - - uid: 27032 + - uid: 27139 components: - pos: -32.5,-57.5 parent: 2 type: Transform - - uid: 27033 + - uid: 27140 components: - pos: -33.5,-57.5 parent: 2 type: Transform - - uid: 27034 + - uid: 27141 components: - pos: -33.5,-58.5 parent: 2 type: Transform - - uid: 27035 + - uid: 27142 components: - pos: -34.5,-58.5 parent: 2 type: Transform - - uid: 27036 + - uid: 27143 components: - pos: 65.5,-31.5 parent: 2 type: Transform - - uid: 27037 + - uid: 27144 components: - pos: -70.5,-3.5 parent: 2 type: Transform - - uid: 27038 + - uid: 27145 components: - pos: -71.5,-3.5 parent: 2 type: Transform - - uid: 27039 + - uid: 27146 components: - pos: -72.5,-3.5 parent: 2 type: Transform - - uid: 27040 + - uid: 27147 components: - pos: -76.5,-4.5 parent: 2 type: Transform - - uid: 27041 + - uid: 27148 components: - pos: -76.5,-5.5 parent: 2 type: Transform - - uid: 27042 + - uid: 27149 components: - pos: -76.5,-6.5 parent: 2 type: Transform - - uid: 27043 + - uid: 27150 components: - rot: -1.5707963267948966 rad pos: -58.5,-17.5 parent: 2 type: Transform - - uid: 27044 + - uid: 27151 components: - pos: -76.5,-18.5 parent: 2 type: Transform - - uid: 27045 + - uid: 27152 components: - pos: -76.5,-19.5 parent: 2 type: Transform - - uid: 27046 + - uid: 27153 components: - pos: -76.5,-20.5 parent: 2 type: Transform - - uid: 27047 + - uid: 27154 components: - pos: -75.5,-23.5 parent: 2 type: Transform - - uid: 27048 + - uid: 27155 components: - pos: -63.5,-3.5 parent: 2 type: Transform - - uid: 27049 + - uid: 27156 components: - pos: -64.5,-3.5 parent: 2 type: Transform - - uid: 27050 + - uid: 27157 components: - pos: -65.5,-3.5 parent: 2 type: Transform - - uid: 27051 + - uid: 27158 components: - pos: -58.5,-3.5 parent: 2 type: Transform - - uid: 27052 + - uid: 27159 components: - pos: -75.5,-24.5 parent: 2 type: Transform - - uid: 27053 + - uid: 27160 components: - pos: -75.5,-27.5 parent: 2 type: Transform - - uid: 27054 + - uid: 27161 components: - pos: -75.5,-26.5 parent: 2 type: Transform - - uid: 27055 + - uid: 27162 components: - pos: -76.5,-26.5 parent: 2 type: Transform - - uid: 27056 + - uid: 27163 components: - pos: -45.5,-31.5 parent: 2 type: Transform - - uid: 27057 + - uid: 27164 components: - rot: -1.5707963267948966 rad pos: -46.5,-31.5 parent: 2 type: Transform - - uid: 27058 + - uid: 27165 components: - rot: -1.5707963267948966 rad pos: -47.5,-31.5 parent: 2 type: Transform - - uid: 27059 + - uid: 27166 components: - rot: -1.5707963267948966 rad pos: -47.5,-32.5 parent: 2 type: Transform - - uid: 27060 + - uid: 27167 components: - rot: -1.5707963267948966 rad pos: -47.5,-33.5 parent: 2 type: Transform - - uid: 27061 + - uid: 27168 components: - rot: -1.5707963267948966 rad pos: -53.5,-35.5 parent: 2 type: Transform - - uid: 27062 + - uid: 27169 components: - rot: -1.5707963267948966 rad pos: -53.5,-38.5 parent: 2 type: Transform - - uid: 27063 + - uid: 27170 components: - rot: -1.5707963267948966 rad pos: -53.5,-39.5 parent: 2 type: Transform - - uid: 27064 + - uid: 27171 components: - rot: -1.5707963267948966 rad pos: -53.5,-40.5 parent: 2 type: Transform - - uid: 27065 + - uid: 27172 components: - rot: -1.5707963267948966 rad pos: -54.5,-40.5 parent: 2 type: Transform - - uid: 27066 + - uid: 27173 components: - rot: -1.5707963267948966 rad pos: -55.5,-40.5 parent: 2 type: Transform - - uid: 27067 + - uid: 27174 components: - rot: -1.5707963267948966 rad pos: -55.5,-41.5 parent: 2 type: Transform - - uid: 27068 + - uid: 27175 components: - rot: -1.5707963267948966 rad pos: -55.5,-42.5 parent: 2 type: Transform - - uid: 27069 + - uid: 27176 components: - rot: -1.5707963267948966 rad pos: -55.5,-43.5 parent: 2 type: Transform - - uid: 27070 + - uid: 27177 components: - rot: -1.5707963267948966 rad pos: -55.5,-44.5 parent: 2 type: Transform - - uid: 27071 + - uid: 27178 components: - rot: -1.5707963267948966 rad pos: -55.5,-45.5 parent: 2 type: Transform - - uid: 27072 + - uid: 27179 components: - rot: -1.5707963267948966 rad pos: -55.5,-46.5 parent: 2 type: Transform - - uid: 27073 + - uid: 27180 components: - pos: -53.5,-46.5 parent: 2 type: Transform - - uid: 27074 + - uid: 27181 components: - pos: -53.5,-51.5 parent: 2 type: Transform - - uid: 27075 + - uid: 27182 components: - pos: -54.5,-51.5 parent: 2 type: Transform - - uid: 27076 + - uid: 27183 components: - pos: -54.5,-46.5 parent: 2 type: Transform - - uid: 27077 + - uid: 27184 components: - rot: -1.5707963267948966 rad pos: -55.5,-51.5 parent: 2 type: Transform - - uid: 27078 + - uid: 27185 components: - rot: -1.5707963267948966 rad pos: -55.5,-52.5 parent: 2 type: Transform - - uid: 27079 + - uid: 27186 components: - rot: -1.5707963267948966 rad pos: -55.5,-53.5 parent: 2 type: Transform - - uid: 27080 + - uid: 27187 components: - rot: -1.5707963267948966 rad pos: -55.5,-54.5 parent: 2 type: Transform - - uid: 27081 + - uid: 27188 components: - rot: -1.5707963267948966 rad pos: -55.5,-55.5 parent: 2 type: Transform - - uid: 27082 + - uid: 27189 components: - rot: -1.5707963267948966 rad pos: -55.5,-56.5 parent: 2 type: Transform - - uid: 27083 + - uid: 27190 components: - rot: -1.5707963267948966 rad pos: -55.5,-57.5 parent: 2 type: Transform - - uid: 27084 + - uid: 27191 components: - rot: -1.5707963267948966 rad pos: -58.5,-32.5 parent: 2 type: Transform - - uid: 27085 + - uid: 27192 components: - rot: -1.5707963267948966 rad pos: -58.5,-33.5 parent: 2 type: Transform - - uid: 27086 + - uid: 27193 components: - rot: -1.5707963267948966 rad pos: -58.5,-34.5 parent: 2 type: Transform - - uid: 27087 + - uid: 27194 components: - rot: -1.5707963267948966 rad pos: -58.5,-35.5 parent: 2 type: Transform - - uid: 27088 + - uid: 27195 components: - rot: -1.5707963267948966 rad pos: -58.5,-38.5 parent: 2 type: Transform - - uid: 27089 + - uid: 27196 components: - rot: -1.5707963267948966 rad pos: -58.5,-39.5 parent: 2 type: Transform - - uid: 27090 + - uid: 27197 components: - rot: -1.5707963267948966 rad pos: -58.5,-40.5 parent: 2 type: Transform - - uid: 27091 + - uid: 27198 components: - rot: -1.5707963267948966 rad pos: -58.5,-41.5 parent: 2 type: Transform - - uid: 27092 + - uid: 27199 components: - rot: -1.5707963267948966 rad pos: -58.5,-42.5 parent: 2 type: Transform - - uid: 27093 + - uid: 27200 components: - rot: -1.5707963267948966 rad pos: -58.5,-45.5 parent: 2 type: Transform - - uid: 27094 + - uid: 27201 components: - rot: -1.5707963267948966 rad pos: -58.5,-46.5 parent: 2 type: Transform - - uid: 27095 + - uid: 27202 components: - rot: -1.5707963267948966 rad pos: -58.5,-49.5 parent: 2 type: Transform - - uid: 27096 + - uid: 27203 components: - rot: -1.5707963267948966 rad pos: -58.5,-50.5 parent: 2 type: Transform - - uid: 27097 + - uid: 27204 components: - rot: -1.5707963267948966 rad pos: -58.5,-53.5 parent: 2 type: Transform - - uid: 27098 + - uid: 27205 components: - rot: -1.5707963267948966 rad pos: -58.5,-55.5 parent: 2 type: Transform - - uid: 27099 + - uid: 27206 components: - rot: -1.5707963267948966 rad pos: -58.5,-56.5 parent: 2 type: Transform - - uid: 27100 + - uid: 27207 components: - rot: -1.5707963267948966 rad pos: -58.5,-57.5 parent: 2 type: Transform - - uid: 27101 + - uid: 27208 components: - rot: -1.5707963267948966 rad pos: -58.5,-58.5 parent: 2 type: Transform - - uid: 27102 + - uid: 27209 components: - rot: -1.5707963267948966 rad pos: -56.5,-64.5 parent: 2 type: Transform - - uid: 27103 + - uid: 27210 components: - rot: -1.5707963267948966 rad pos: -56.5,-65.5 parent: 2 type: Transform - - uid: 27104 + - uid: 27211 components: - rot: -1.5707963267948966 rad pos: -56.5,-66.5 parent: 2 type: Transform - - uid: 27105 + - uid: 27212 components: - rot: 3.141592653589793 rad pos: -36.5,-59.5 parent: 2 type: Transform - - uid: 27106 + - uid: 27213 components: - rot: 3.141592653589793 rad pos: -37.5,-59.5 parent: 2 type: Transform - - uid: 27107 + - uid: 27214 components: - pos: -45.5,-41.5 parent: 2 type: Transform - - uid: 27108 + - uid: 27215 components: - pos: -57.5,-70.5 parent: 2 type: Transform - - uid: 27109 + - uid: 27216 components: - pos: -57.5,-72.5 parent: 2 type: Transform - - uid: 27110 + - uid: 27217 components: - pos: -57.5,-74.5 parent: 2 type: Transform - - uid: 27111 + - uid: 27218 components: - pos: -57.5,-78.5 parent: 2 type: Transform - - uid: 27112 + - uid: 27219 components: - pos: -57.5,-80.5 parent: 2 type: Transform - - uid: 27113 + - uid: 27220 components: - pos: -57.5,-82.5 parent: 2 type: Transform - - uid: 27114 + - uid: 27221 components: - pos: -56.5,-67.5 parent: 2 type: Transform - - uid: 27115 + - uid: 27222 components: - pos: -57.5,-67.5 parent: 2 type: Transform - - uid: 27116 + - uid: 27223 components: - pos: -57.5,-68.5 parent: 2 type: Transform - - uid: 27117 + - uid: 27224 components: - pos: -57.5,-69.5 parent: 2 type: Transform - - uid: 27118 + - uid: 27225 components: - rot: 1.5707963267948966 rad pos: -51.5,-61.5 parent: 2 type: Transform - - uid: 27119 + - uid: 27226 components: - rot: 3.141592653589793 rad pos: -22.5,-50.5 parent: 2 type: Transform - - uid: 27120 + - uid: 27227 components: - pos: -31.5,-57.5 parent: 2 type: Transform - - uid: 27121 + - uid: 27228 components: - pos: -31.5,-58.5 parent: 2 type: Transform - - uid: 27122 + - uid: 27229 components: - pos: -30.5,-58.5 parent: 2 type: Transform - - uid: 27123 + - uid: 27230 components: - pos: -30.5,-59.5 parent: 2 type: Transform - - uid: 27124 + - uid: 27231 components: - pos: -30.5,-60.5 parent: 2 type: Transform - - uid: 27125 + - uid: 27232 components: - pos: -31.5,-60.5 parent: 2 type: Transform - - uid: 27126 + - uid: 27233 components: - pos: -31.5,-61.5 parent: 2 type: Transform - - uid: 27127 + - uid: 27234 components: - pos: -32.5,-61.5 parent: 2 type: Transform - - uid: 27128 + - uid: 27235 components: - pos: -33.5,-61.5 parent: 2 type: Transform - - uid: 27129 + - uid: 27236 components: - pos: -33.5,-62.5 parent: 2 type: Transform - - uid: 27130 + - uid: 27237 components: - pos: -34.5,-62.5 parent: 2 type: Transform - - uid: 27131 + - uid: 27238 components: - pos: -35.5,-62.5 parent: 2 type: Transform - - uid: 27132 + - uid: 27239 components: - pos: -36.5,-62.5 parent: 2 type: Transform - - uid: 27133 + - uid: 27240 components: - pos: -37.5,-62.5 parent: 2 type: Transform - - uid: 27134 + - uid: 27241 components: - pos: -38.5,-62.5 parent: 2 type: Transform - - uid: 27135 + - uid: 27242 components: - pos: -39.5,-62.5 parent: 2 type: Transform - - uid: 27136 + - uid: 27243 components: - pos: -42.5,-62.5 parent: 2 type: Transform - - uid: 27137 + - uid: 27244 components: - pos: -43.5,-62.5 parent: 2 type: Transform - - uid: 27138 + - uid: 27245 components: - pos: -44.5,-62.5 parent: 2 type: Transform - - uid: 27139 + - uid: 27246 components: - pos: -45.5,-62.5 parent: 2 type: Transform - - uid: 27140 + - uid: 27247 components: - pos: -46.5,-62.5 parent: 2 type: Transform - - uid: 27141 + - uid: 27248 components: - pos: -47.5,-62.5 parent: 2 type: Transform - - uid: 27142 + - uid: 27249 components: - pos: -48.5,-62.5 parent: 2 type: Transform - - uid: 27143 + - uid: 27250 components: - pos: -49.5,-62.5 parent: 2 type: Transform - - uid: 27144 + - uid: 27251 components: - pos: -50.5,-61.5 parent: 2 type: Transform - - uid: 27145 + - uid: 27252 components: - pos: -49.5,-61.5 parent: 2 type: Transform - - uid: 27146 + - uid: 27253 components: - pos: -59.5,-78.5 parent: 2 type: Transform - - uid: 27147 + - uid: 27254 components: - pos: -50.5,-77.5 parent: 2 type: Transform - - uid: 27148 + - uid: 27255 components: - pos: -50.5,-78.5 parent: 2 type: Transform - - uid: 27149 + - uid: 27256 components: - pos: -57.5,-83.5 parent: 2 type: Transform - - uid: 27150 + - uid: 27257 components: - pos: -56.5,-83.5 parent: 2 type: Transform - - uid: 27151 + - uid: 27258 components: - pos: -52.5,-83.5 parent: 2 type: Transform - - uid: 27152 + - uid: 27259 components: - pos: -52.5,-82.5 parent: 2 type: Transform - - uid: 27153 + - uid: 27260 components: - pos: -52.5,-81.5 parent: 2 type: Transform - - uid: 27154 + - uid: 27261 components: - pos: -51.5,-81.5 parent: 2 type: Transform - - uid: 27155 + - uid: 27262 components: - pos: -51.5,-80.5 parent: 2 type: Transform - - uid: 27156 + - uid: 27263 components: - pos: -50.5,-80.5 parent: 2 type: Transform - - uid: 27157 + - uid: 27264 components: - pos: -50.5,-79.5 parent: 2 type: Transform - - uid: 27158 + - uid: 27265 components: - pos: -59.5,-80.5 parent: 2 type: Transform - - uid: 27159 + - uid: 27266 components: - pos: -59.5,-82.5 parent: 2 type: Transform - - uid: 27160 + - uid: 27267 components: - pos: -58.5,-82.5 parent: 2 type: Transform - - uid: 27161 + - uid: 27268 components: - pos: -58.5,-78.5 parent: 2 type: Transform - - uid: 27162 + - uid: 27269 components: - pos: -58.5,-74.5 parent: 2 type: Transform - - uid: 27163 + - uid: 27270 components: - pos: -59.5,-74.5 parent: 2 type: Transform - - uid: 27164 + - uid: 27271 components: - pos: -59.5,-72.5 parent: 2 type: Transform - - uid: 27165 + - uid: 27272 components: - pos: -58.5,-70.5 parent: 2 type: Transform - - uid: 27166 + - uid: 27273 components: - pos: -59.5,-70.5 parent: 2 type: Transform - - uid: 27167 + - uid: 27274 components: - rot: 1.5707963267948966 rad pos: -34.5,-73.5 parent: 2 type: Transform - - uid: 27168 + - uid: 27275 components: - rot: 1.5707963267948966 rad pos: -48.5,-80.5 parent: 2 type: Transform - - uid: 27169 + - uid: 27276 components: - rot: 1.5707963267948966 rad pos: -48.5,-79.5 parent: 2 type: Transform - - uid: 27170 + - uid: 27277 components: - rot: 1.5707963267948966 rad pos: -49.5,-77.5 parent: 2 type: Transform - - uid: 27171 + - uid: 27278 components: - rot: 1.5707963267948966 rad pos: -46.5,-85.5 parent: 2 type: Transform - - uid: 27172 + - uid: 27279 components: - rot: 1.5707963267948966 rad pos: -47.5,-84.5 parent: 2 type: Transform - - uid: 27173 + - uid: 27280 components: - rot: 1.5707963267948966 rad pos: -45.5,-86.5 parent: 2 type: Transform - - uid: 27174 + - uid: 27281 components: - rot: 1.5707963267948966 rad pos: -46.5,-86.5 parent: 2 type: Transform - - uid: 27175 + - uid: 27282 components: - rot: 1.5707963267948966 rad pos: -35.5,-73.5 parent: 2 type: Transform - - uid: 27176 + - uid: 27283 components: - rot: 1.5707963267948966 rad pos: -48.5,-77.5 parent: 2 type: Transform - - uid: 27177 + - uid: 27284 components: - rot: 1.5707963267948966 rad pos: -35.5,-80.5 parent: 2 type: Transform - - uid: 27178 + - uid: 27285 components: - rot: 1.5707963267948966 rad pos: -35.5,-75.5 parent: 2 type: Transform - - uid: 27179 + - uid: 27286 components: - rot: 1.5707963267948966 rad pos: -35.5,-74.5 parent: 2 type: Transform - - uid: 27180 + - uid: 27287 components: - rot: 1.5707963267948966 rad pos: -48.5,-78.5 parent: 2 type: Transform - - uid: 27181 + - uid: 27288 components: - rot: 1.5707963267948966 rad pos: -47.5,-85.5 parent: 2 type: Transform - - uid: 27182 + - uid: 27289 components: - rot: 1.5707963267948966 rad pos: -38.5,-86.5 parent: 2 type: Transform - - uid: 27183 + - uid: 27290 components: - rot: 1.5707963267948966 rad pos: -37.5,-85.5 parent: 2 type: Transform - - uid: 27184 + - uid: 27291 components: - rot: 1.5707963267948966 rad pos: -37.5,-86.5 parent: 2 type: Transform - - uid: 27185 + - uid: 27292 components: - rot: 1.5707963267948966 rad pos: -48.5,-84.5 parent: 2 type: Transform - - uid: 27186 + - uid: 27293 components: - rot: 1.5707963267948966 rad pos: -35.5,-79.5 parent: 2 type: Transform - - uid: 27187 + - uid: 27294 components: - rot: 1.5707963267948966 rad pos: -35.5,-84.5 parent: 2 type: Transform - - uid: 27188 + - uid: 27295 components: - rot: 1.5707963267948966 rad pos: -36.5,-84.5 parent: 2 type: Transform - - uid: 27189 + - uid: 27296 components: - rot: 1.5707963267948966 rad pos: -36.5,-85.5 parent: 2 type: Transform - - uid: 27190 + - uid: 27297 components: - rot: 1.5707963267948966 rad pos: -33.5,-73.5 parent: 2 type: Transform - - uid: 27191 + - uid: 27298 components: - rot: 1.5707963267948966 rad pos: -32.5,-74.5 parent: 2 type: Transform - - uid: 27192 + - uid: 27299 components: - rot: 1.5707963267948966 rad pos: -32.5,-75.5 parent: 2 type: Transform - - uid: 27193 + - uid: 27300 components: - rot: 1.5707963267948966 rad pos: -31.5,-75.5 parent: 2 type: Transform - - uid: 27194 + - uid: 27301 components: - pos: -44.5,-86.5 parent: 2 type: Transform - - uid: 27195 + - uid: 27302 components: - pos: -39.5,-86.5 parent: 2 type: Transform - - uid: 27196 + - uid: 27303 components: - rot: 1.5707963267948966 rad pos: 48.5,-70.5 parent: 2 type: Transform - - uid: 27197 + - uid: 27304 components: - pos: -17.5,-50.5 parent: 2 type: Transform - - uid: 27198 + - uid: 27305 components: - rot: 1.5707963267948966 rad pos: -57.5,-62.5 parent: 2 type: Transform - - uid: 27199 + - uid: 27306 components: - rot: 1.5707963267948966 rad pos: -58.5,-61.5 parent: 2 type: Transform - - uid: 27200 + - uid: 27307 components: - rot: 1.5707963267948966 rad pos: -58.5,-62.5 parent: 2 type: Transform - - uid: 27201 + - uid: 27308 components: - pos: -19.5,-50.5 parent: 2 type: Transform - - uid: 27202 + - uid: 27309 components: - pos: 25.5,-30.5 parent: 2 type: Transform - - uid: 27203 + - uid: 27310 components: - pos: 27.5,-30.5 parent: 2 type: Transform - - uid: 27204 + - uid: 27311 components: - rot: -1.5707963267948966 rad pos: 30.5,-31.5 parent: 2 type: Transform - - uid: 27205 + - uid: 27312 components: - rot: -1.5707963267948966 rad pos: 31.5,-31.5 parent: 2 type: Transform - - uid: 27206 + - uid: 27313 components: - pos: 27.5,-31.5 parent: 2 type: Transform - - uid: 27207 + - uid: 27314 components: - pos: 28.5,-31.5 parent: 2 type: Transform - - uid: 27208 + - uid: 27315 components: - rot: -1.5707963267948966 rad pos: 32.5,-31.5 parent: 2 type: Transform - - uid: 27209 + - uid: 27316 components: - rot: -1.5707963267948966 rad pos: 33.5,-31.5 parent: 2 type: Transform - - uid: 27210 + - uid: 27317 components: - pos: -21.5,-50.5 parent: 2 type: Transform - - uid: 27211 + - uid: 27318 components: - pos: -53.5,-50.5 parent: 2 type: Transform - - uid: 27212 + - uid: 27319 components: - pos: -53.5,-47.5 parent: 2 type: Transform - - uid: 27213 + - uid: 27320 components: - pos: -53.5,-48.5 parent: 2 type: Transform - - uid: 27214 + - uid: 27321 components: - pos: -53.5,-49.5 parent: 2 type: Transform - - uid: 27215 + - uid: 27322 components: - pos: -59.5,-53.5 parent: 2 type: Transform - - uid: 27216 + - uid: 27323 components: - pos: -60.5,-53.5 parent: 2 type: Transform - - uid: 27217 + - uid: 27324 components: - pos: -59.5,-55.5 parent: 2 type: Transform - - uid: 27218 + - uid: 27325 components: - pos: -60.5,-55.5 parent: 2 type: Transform - - uid: 27219 + - uid: 27326 components: - pos: 25.5,-27.5 parent: 2 type: Transform - - uid: 27220 + - uid: 27327 components: - pos: 68.5,12.5 parent: 2 type: Transform - - uid: 27221 + - uid: 27328 components: - rot: 1.5707963267948966 rad pos: 8.5,-18.5 parent: 2 type: Transform - - uid: 27222 + - uid: 27329 components: - pos: 5.5,34.5 parent: 2 type: Transform - - uid: 27223 + - uid: 27330 components: - pos: 9.5,35.5 parent: 2 type: Transform - - uid: 27224 + - uid: 27331 components: - pos: 11.5,31.5 parent: 2 type: Transform - - uid: 27225 + - uid: 27332 components: - pos: -3.5,26.5 parent: 2 type: Transform - - uid: 27226 + - uid: 27333 components: - pos: -7.5,33.5 parent: 2 type: Transform - - uid: 27227 + - uid: 27334 components: - pos: -6.5,33.5 parent: 2 type: Transform - - uid: 27228 + - uid: 27335 components: - pos: -5.5,33.5 parent: 2 type: Transform - - uid: 27229 + - uid: 27336 components: - pos: -16.5,53.5 parent: 2 type: Transform - - uid: 27230 + - uid: 27337 components: - pos: -23.5,72.5 parent: 2 type: Transform - - uid: 27231 + - uid: 27338 components: - pos: -7.5,30.5 parent: 2 type: Transform - - uid: 27232 + - uid: 27339 components: - pos: -7.5,29.5 parent: 2 type: Transform - - uid: 27233 + - uid: 27340 components: - pos: -7.5,26.5 parent: 2 type: Transform - - uid: 27234 + - uid: 27341 components: - pos: -7.5,31.5 parent: 2 type: Transform - - uid: 27235 + - uid: 27342 components: - pos: -6.5,31.5 parent: 2 type: Transform - - uid: 27236 + - uid: 27343 components: - pos: -5.5,31.5 parent: 2 type: Transform - - uid: 27237 + - uid: 27344 components: - pos: -4.5,31.5 parent: 2 type: Transform - - uid: 27238 + - uid: 27345 components: - pos: -4.5,30.5 parent: 2 type: Transform - - uid: 27239 + - uid: 27346 components: - pos: -4.5,29.5 parent: 2 type: Transform - - uid: 27240 + - uid: 27347 components: - pos: -3.5,29.5 parent: 2 type: Transform - - uid: 27241 + - uid: 27348 components: - pos: -1.5,29.5 parent: 2 type: Transform - - uid: 27242 + - uid: 27349 components: - pos: -0.5,29.5 parent: 2 type: Transform - - uid: 27243 + - uid: 27350 components: - pos: 0.5,29.5 parent: 2 type: Transform - - uid: 27244 + - uid: 27351 components: - pos: 1.5,29.5 parent: 2 type: Transform - - uid: 27245 + - uid: 27352 components: - pos: 1.5,30.5 parent: 2 type: Transform - - uid: 27246 + - uid: 27353 components: - pos: 1.5,31.5 parent: 2 type: Transform - - uid: 27247 + - uid: 27354 components: - pos: 2.5,31.5 parent: 2 type: Transform - - uid: 27248 + - uid: 27355 components: - pos: 2.5,33.5 parent: 2 type: Transform - - uid: 27249 + - uid: 27356 components: - pos: 1.5,33.5 parent: 2 type: Transform - - uid: 27250 + - uid: 27357 components: - pos: 1.5,34.5 parent: 2 type: Transform - - uid: 27251 + - uid: 27358 components: - pos: 1.5,35.5 parent: 2 type: Transform - - uid: 27252 + - uid: 27359 components: - pos: 0.5,35.5 parent: 2 type: Transform - - uid: 27253 + - uid: 27360 components: - pos: -3.5,35.5 parent: 2 type: Transform - - uid: 27254 + - uid: 27361 components: - pos: -4.5,35.5 parent: 2 type: Transform - - uid: 27255 + - uid: 27362 components: - pos: -4.5,34.5 parent: 2 type: Transform - - uid: 27256 + - uid: 27363 components: - pos: -4.5,33.5 parent: 2 type: Transform - - uid: 27257 + - uid: 27364 components: - pos: -23.5,58.5 parent: 2 type: Transform - - uid: 27258 + - uid: 27365 components: - pos: -20.5,72.5 parent: 2 type: Transform - - uid: 27259 + - uid: 27366 components: - pos: -23.5,57.5 parent: 2 type: Transform - - uid: 27260 + - uid: 27367 components: - pos: 49.5,41.5 parent: 2 type: Transform - - uid: 27261 + - uid: 27368 components: - pos: 12.5,31.5 parent: 2 type: Transform - - uid: 27262 + - uid: 27369 components: - pos: 6.5,29.5 parent: 2 type: Transform - - uid: 27263 + - uid: 27370 components: - pos: 4.5,33.5 parent: 2 type: Transform - - uid: 27264 + - uid: 27371 components: - pos: -4.5,24.5 parent: 2 type: Transform - - uid: 27265 + - uid: 27372 components: - pos: -5.5,24.5 parent: 2 type: Transform - - uid: 27266 + - uid: 27373 components: - pos: -6.5,24.5 parent: 2 type: Transform - - uid: 27267 + - uid: 27374 components: - pos: -7.5,24.5 parent: 2 type: Transform - - uid: 27268 + - uid: 27375 components: - pos: -7.5,25.5 parent: 2 type: Transform - - uid: 27269 + - uid: 27376 components: - pos: -34.5,27.5 parent: 2 type: Transform - - uid: 27270 + - uid: 27377 components: - pos: -35.5,27.5 parent: 2 type: Transform - - uid: 27271 + - uid: 27378 components: - pos: -35.5,28.5 parent: 2 type: Transform - - uid: 27272 + - uid: 27379 components: - pos: -35.5,26.5 parent: 2 type: Transform - - uid: 27273 + - uid: 27380 components: - pos: -49.5,27.5 parent: 2 type: Transform - - uid: 27274 + - uid: 27381 components: - pos: -49.5,24.5 parent: 2 type: Transform - - uid: 27275 + - uid: 27382 components: - rot: -1.5707963267948966 rad pos: -49.5,16.5 parent: 2 type: Transform - - uid: 27276 + - uid: 27383 components: - pos: -49.5,25.5 parent: 2 type: Transform - - uid: 27277 + - uid: 27384 components: - pos: -49.5,26.5 parent: 2 type: Transform - - uid: 27278 + - uid: 27385 components: - pos: -49.5,17.5 parent: 2 type: Transform - - uid: 27279 + - uid: 27386 components: - pos: -49.5,18.5 parent: 2 type: Transform - - uid: 27280 + - uid: 27387 components: - pos: -51.5,18.5 parent: 2 type: Transform - - uid: 27281 + - uid: 27388 components: - pos: -51.5,24.5 parent: 2 type: Transform - - uid: 27282 + - uid: 27389 components: - pos: 4.5,34.5 parent: 2 type: Transform - - uid: 27283 + - uid: 27390 components: - pos: 5.5,29.5 parent: 2 type: Transform - - uid: 27284 + - uid: 27391 components: - pos: 12.5,33.5 parent: 2 type: Transform - - uid: 27285 + - uid: 27392 components: - pos: -3.5,28.5 parent: 2 type: Transform - - uid: 27286 + - uid: 27393 components: - pos: 58.5,41.5 parent: 2 type: Transform - - uid: 27287 + - uid: 27394 components: - rot: -1.5707963267948966 rad pos: 55.5,41.5 parent: 2 type: Transform - - uid: 27288 + - uid: 27395 components: - pos: 54.5,51.5 parent: 2 type: Transform - - uid: 27289 + - uid: 27396 components: - pos: 57.5,60.5 parent: 2 type: Transform - - uid: 27290 + - uid: 27397 components: - rot: -1.5707963267948966 rad pos: 56.5,41.5 parent: 2 type: Transform - - uid: 27291 + - uid: 27398 components: - rot: -1.5707963267948966 rad pos: 42.5,38.5 parent: 2 type: Transform - - uid: 27292 + - uid: 27399 components: - pos: -29.5,27.5 parent: 2 type: Transform - - uid: 27293 + - uid: 27400 components: - pos: -35.5,29.5 parent: 2 type: Transform - - uid: 27294 + - uid: 27401 components: - pos: -29.5,29.5 parent: 2 type: Transform - - uid: 27295 + - uid: 27402 components: - pos: -29.5,30.5 parent: 2 type: Transform - - uid: 27296 + - uid: 27403 components: - pos: -29.5,31.5 parent: 2 type: Transform - - uid: 27297 + - uid: 27404 components: - pos: -29.5,32.5 parent: 2 type: Transform - - uid: 27298 + - uid: 27405 components: - pos: -35.5,30.5 parent: 2 type: Transform - - uid: 27299 + - uid: 27406 components: - pos: -35.5,31.5 parent: 2 type: Transform - - uid: 27300 + - uid: 27407 components: - pos: -35.5,32.5 parent: 2 type: Transform - - uid: 27301 + - uid: 27408 components: - pos: -34.5,32.5 parent: 2 type: Transform - - uid: 27302 + - uid: 27409 components: - pos: -30.5,32.5 parent: 2 type: Transform - - uid: 27303 + - uid: 27410 components: - pos: -49.5,32.5 parent: 2 type: Transform - - uid: 27304 + - uid: 27411 components: - pos: -50.5,32.5 parent: 2 type: Transform - - uid: 27305 + - uid: 27412 components: - pos: -51.5,32.5 parent: 2 type: Transform - - uid: 27306 + - uid: 27413 components: - pos: -52.5,32.5 parent: 2 type: Transform - - uid: 27307 + - uid: 27414 components: - pos: -49.5,28.5 parent: 2 type: Transform - - uid: 27308 + - uid: 27415 components: - pos: -50.5,28.5 parent: 2 type: Transform - - uid: 27309 + - uid: 27416 components: - pos: -51.5,28.5 parent: 2 type: Transform - - uid: 27310 + - uid: 27417 components: - pos: -52.5,28.5 parent: 2 type: Transform - - uid: 27311 + - uid: 27418 components: - pos: -49.5,36.5 parent: 2 type: Transform - - uid: 27312 + - uid: 27419 components: - pos: -50.5,36.5 parent: 2 type: Transform - - uid: 27313 + - uid: 27420 components: - pos: -51.5,36.5 parent: 2 type: Transform - - uid: 27314 + - uid: 27421 components: - pos: -52.5,36.5 parent: 2 type: Transform - - uid: 27315 + - uid: 27422 components: - rot: -1.5707963267948966 rad pos: -53.5,24.5 parent: 2 type: Transform - - uid: 27316 + - uid: 27423 components: - rot: -1.5707963267948966 rad pos: -53.5,18.5 parent: 2 type: Transform - - uid: 27317 + - uid: 27424 components: - pos: -49.5,37.5 parent: 2 type: Transform - - uid: 27318 + - uid: 27425 components: - pos: -48.5,37.5 parent: 2 type: Transform - - uid: 27319 + - uid: 27426 components: - pos: -35.5,34.5 parent: 2 type: Transform - - uid: 27320 + - uid: 27427 components: - pos: -35.5,33.5 parent: 2 type: Transform - - uid: 27321 + - uid: 27428 components: - pos: 49.5,43.5 parent: 2 type: Transform - - uid: 27322 + - uid: 27429 components: - pos: 49.5,48.5 parent: 2 type: Transform - - uid: 27323 + - uid: 27430 components: - pos: 59.5,49.5 parent: 2 type: Transform - - uid: 27324 + - uid: 27431 components: - pos: 49.5,49.5 parent: 2 type: Transform - - uid: 27325 + - uid: 27432 components: - pos: 59.5,44.5 parent: 2 type: Transform - - uid: 27326 + - uid: 27433 components: - rot: 3.141592653589793 rad pos: 61.5,42.5 parent: 2 type: Transform - - uid: 27327 + - uid: 27434 components: - pos: 49.5,42.5 parent: 2 type: Transform - - uid: 27328 + - uid: 27435 components: - pos: 59.5,42.5 parent: 2 type: Transform - - uid: 27329 + - uid: 27436 components: - pos: 66.5,-31.5 parent: 2 type: Transform - - uid: 27330 + - uid: 27437 components: - pos: 66.5,-32.5 parent: 2 type: Transform - - uid: 27331 + - uid: 27438 components: - rot: -1.5707963267948966 rad pos: 59.5,-25.5 parent: 2 type: Transform - - uid: 27332 + - uid: 27439 components: - rot: 3.141592653589793 rad pos: 10.5,-80.5 parent: 2 type: Transform - - uid: 27333 + - uid: 27440 components: - pos: -57.5,-0.5 parent: 2 type: Transform - - uid: 27334 + - uid: 27441 components: - pos: -56.5,-0.5 parent: 2 type: Transform - - uid: 27335 + - uid: 27442 components: - pos: -55.5,-0.5 parent: 2 type: Transform - - uid: 27336 + - uid: 27443 components: - pos: -57.5,-2.5 parent: 2 type: Transform - - uid: 27337 + - uid: 27444 components: - rot: 3.141592653589793 rad pos: -53.5,1.5 parent: 2 type: Transform - - uid: 27338 + - uid: 27445 components: - rot: 3.141592653589793 rad pos: -54.5,1.5 parent: 2 type: Transform - - uid: 27339 + - uid: 27446 components: - pos: -55.5,1.5 parent: 2 type: Transform - - uid: 27340 + - uid: 27447 components: - pos: -55.5,0.5 parent: 2 type: Transform - - uid: 27341 + - uid: 27448 components: - pos: -50.5,16.5 parent: 2 type: Transform - - uid: 27342 + - uid: 27449 components: - pos: 58.5,48.5 parent: 2 type: Transform - - uid: 27343 + - uid: 27450 components: - pos: 56.5,44.5 parent: 2 type: Transform - - uid: 27344 + - uid: 27451 components: - pos: 50.5,48.5 parent: 2 type: Transform - - uid: 27345 + - uid: 27452 components: - pos: 54.5,46.5 parent: 2 type: Transform - - uid: 27346 + - uid: 27453 components: - pos: 54.5,48.5 parent: 2 type: Transform - - uid: 27347 + - uid: 27454 components: - rot: 3.141592653589793 rad pos: -53.5,2.5 parent: 2 type: Transform - - uid: 27348 + - uid: 27455 components: - rot: 3.141592653589793 rad pos: -53.5,3.5 parent: 2 type: Transform - - uid: 27349 + - uid: 27456 components: - rot: 3.141592653589793 rad pos: -53.5,4.5 parent: 2 type: Transform - - uid: 27350 + - uid: 27457 components: - rot: 3.141592653589793 rad pos: -53.5,5.5 parent: 2 type: Transform - - uid: 27351 + - uid: 27458 components: - rot: 3.141592653589793 rad pos: -53.5,6.5 parent: 2 type: Transform - - uid: 27352 + - uid: 27459 components: - rot: 3.141592653589793 rad pos: -53.5,7.5 parent: 2 type: Transform - - uid: 27353 + - uid: 27460 components: - rot: 3.141592653589793 rad pos: -53.5,8.5 parent: 2 type: Transform - - uid: 27354 + - uid: 27461 components: - rot: 3.141592653589793 rad pos: -53.5,9.5 parent: 2 type: Transform - - uid: 27355 + - uid: 27462 components: - rot: 3.141592653589793 rad pos: -53.5,12.5 parent: 2 type: Transform - - uid: 27356 + - uid: 27463 components: - rot: 3.141592653589793 rad pos: -53.5,13.5 parent: 2 type: Transform - - uid: 27357 + - uid: 27464 components: - rot: 3.141592653589793 rad pos: -53.5,15.5 parent: 2 type: Transform - - uid: 27358 + - uid: 27465 components: - rot: 3.141592653589793 rad pos: -53.5,14.5 parent: 2 type: Transform - - uid: 27359 + - uid: 27466 components: - rot: 3.141592653589793 rad pos: -53.5,16.5 parent: 2 type: Transform - - uid: 27360 + - uid: 27467 components: - rot: 3.141592653589793 rad pos: -52.5,16.5 parent: 2 type: Transform - - uid: 27361 + - uid: 27468 components: - rot: 3.141592653589793 rad pos: -51.5,16.5 parent: 2 type: Transform - - uid: 27362 + - uid: 27469 components: - pos: 56.5,46.5 parent: 2 type: Transform - - uid: 27363 + - uid: 27470 components: - rot: -1.5707963267948966 rad pos: 55.5,40.5 parent: 2 type: Transform - - uid: 27364 + - uid: 27471 components: - pos: -20.5,-50.5 parent: 2 type: Transform - - uid: 27365 + - uid: 27472 components: - pos: 58.5,44.5 parent: 2 type: Transform - - uid: 27366 + - uid: 27473 components: - pos: 58.5,46.5 parent: 2 type: Transform - - uid: 27367 + - uid: 27474 components: - pos: 50.5,44.5 parent: 2 type: Transform - - uid: 27368 + - uid: 27475 components: - pos: 52.5,44.5 parent: 2 type: Transform - - uid: 27369 + - uid: 27476 components: - rot: 1.5707963267948966 rad pos: 66.5,0.5 parent: 2 type: Transform - - uid: 27370 + - uid: 27477 components: - pos: 52.5,46.5 parent: 2 type: Transform - - uid: 27371 + - uid: 27478 components: - pos: 50.5,46.5 parent: 2 type: Transform - - uid: 27372 + - uid: 27479 components: - pos: 56.5,48.5 parent: 2 type: Transform - - uid: 27373 + - uid: 27480 components: - pos: 54.5,44.5 parent: 2 type: Transform - - uid: 27374 + - uid: 27481 components: - rot: 1.5707963267948966 rad pos: 67.5,-10.5 parent: 2 type: Transform - - uid: 27375 + - uid: 27482 components: - pos: 68.5,-16.5 parent: 2 type: Transform - - uid: 27376 + - uid: 27483 components: - rot: 1.5707963267948966 rad pos: 67.5,-6.5 parent: 2 type: Transform - - uid: 27377 + - uid: 27484 components: - rot: 1.5707963267948966 rad pos: 67.5,-2.5 parent: 2 type: Transform - - uid: 27378 + - uid: 27485 components: - pos: 52.5,48.5 parent: 2 type: Transform - - uid: 27379 + - uid: 27486 components: - rot: -1.5707963267948966 rad pos: -7.5,37.5 parent: 2 type: Transform - - uid: 27380 + - uid: 27487 components: - rot: -1.5707963267948966 rad pos: -7.5,39.5 parent: 2 type: Transform - - uid: 27381 + - uid: 27488 components: - rot: 3.141592653589793 rad pos: 21.5,-40.5 parent: 2 type: Transform - - uid: 27382 + - uid: 27489 components: - pos: 13.5,-71.5 parent: 2 type: Transform - - uid: 27383 + - uid: 27490 components: - pos: 24.5,-26.5 parent: 2 type: Transform - - uid: 27384 + - uid: 27491 components: - pos: 22.5,-26.5 parent: 2 type: Transform - - uid: 27385 + - uid: 27492 components: - rot: -1.5707963267948966 rad pos: -75.5,-25.5 parent: 2 type: Transform - - uid: 27386 + - uid: 27493 components: - rot: 3.141592653589793 rad pos: 24.5,27.5 parent: 2 type: Transform - - uid: 27387 + - uid: 27494 components: - pos: 64.5,-61.5 parent: 2 type: Transform - - uid: 27388 + - uid: 27495 components: - pos: 27.5,-33.5 parent: 2 type: Transform - - uid: 27389 + - uid: 27496 components: - pos: -47.5,52.5 parent: 2 type: Transform - - uid: 27390 + - uid: 27497 components: - pos: -41.5,52.5 parent: 2 type: Transform - - uid: 27391 + - uid: 27498 components: - pos: 52.5,-25.5 parent: 2 type: Transform - - uid: 27392 + - uid: 27499 components: - pos: 55.5,-25.5 parent: 2 type: Transform - - uid: 27393 + - uid: 27500 components: - rot: -1.5707963267948966 rad pos: 47.5,-63.5 parent: 2 type: Transform - - uid: 27394 + - uid: 27501 components: - rot: 1.5707963267948966 rad pos: 44.5,-83.5 parent: 2 type: Transform - - uid: 27395 + - uid: 27502 components: - rot: 3.141592653589793 rad pos: 24.5,28.5 parent: 2 type: Transform - - uid: 27396 + - uid: 27503 components: - rot: 3.141592653589793 rad pos: 24.5,29.5 parent: 2 type: Transform - - uid: 27397 + - uid: 27504 components: - rot: 3.141592653589793 rad pos: 24.5,30.5 parent: 2 type: Transform - - uid: 27398 + - uid: 27505 components: - rot: 3.141592653589793 rad pos: 24.5,31.5 parent: 2 type: Transform - - uid: 27399 + - uid: 27506 components: - rot: 3.141592653589793 rad pos: 24.5,32.5 parent: 2 type: Transform - - uid: 27400 + - uid: 27507 components: - rot: 3.141592653589793 rad pos: 24.5,33.5 parent: 2 type: Transform - - uid: 27401 + - uid: 27508 components: - rot: 3.141592653589793 rad pos: 24.5,34.5 parent: 2 type: Transform - - uid: 27402 + - uid: 27509 components: - rot: 3.141592653589793 rad pos: 25.5,34.5 parent: 2 type: Transform - - uid: 27403 + - uid: 27510 components: - rot: 3.141592653589793 rad pos: 26.5,34.5 parent: 2 type: Transform - - uid: 27404 + - uid: 27511 components: - rot: 3.141592653589793 rad pos: 27.5,34.5 parent: 2 type: Transform - - uid: 27405 + - uid: 27512 components: - rot: 3.141592653589793 rad pos: 28.5,34.5 parent: 2 type: Transform - - uid: 27406 + - uid: 27513 components: - rot: 3.141592653589793 rad pos: 30.5,34.5 parent: 2 type: Transform - - uid: 27407 + - uid: 27514 components: - rot: 3.141592653589793 rad pos: 31.5,34.5 parent: 2 type: Transform - - uid: 27408 + - uid: 27515 components: - rot: 3.141592653589793 rad pos: 32.5,34.5 parent: 2 type: Transform - - uid: 27409 + - uid: 27516 components: - rot: 3.141592653589793 rad pos: 33.5,34.5 parent: 2 type: Transform - - uid: 27410 + - uid: 27517 components: - rot: 3.141592653589793 rad pos: 34.5,34.5 parent: 2 type: Transform - - uid: 27411 + - uid: 27518 components: - rot: 3.141592653589793 rad pos: 34.5,33.5 parent: 2 type: Transform - - uid: 27412 + - uid: 27519 components: - rot: 3.141592653589793 rad pos: 34.5,32.5 parent: 2 type: Transform - - uid: 27413 + - uid: 27520 components: - rot: 3.141592653589793 rad pos: 34.5,31.5 parent: 2 type: Transform - - uid: 27414 + - uid: 27521 components: - rot: 3.141592653589793 rad pos: 34.5,30.5 parent: 2 type: Transform - - uid: 27415 + - uid: 27522 components: - rot: 3.141592653589793 rad pos: 34.5,29.5 parent: 2 type: Transform - - uid: 27416 + - uid: 27523 components: - rot: 3.141592653589793 rad pos: 34.5,28.5 parent: 2 type: Transform - - uid: 27417 + - uid: 27524 components: - rot: 3.141592653589793 rad pos: 34.5,27.5 parent: 2 type: Transform - - uid: 27418 + - uid: 27525 components: - rot: 3.141592653589793 rad pos: 12.5,-79.5 parent: 2 type: Transform - - uid: 27419 + - uid: 27526 components: - rot: 3.141592653589793 rad pos: 11.5,-79.5 parent: 2 type: Transform - - uid: 27420 + - uid: 27527 components: - rot: -1.5707963267948966 rad pos: 57.5,-25.5 parent: 2 type: Transform - - uid: 27421 + - uid: 27528 components: - rot: 1.5707963267948966 rad pos: 39.5,9.5 parent: 2 type: Transform - - uid: 27422 + - uid: 27529 components: - pos: 34.5,21.5 parent: 2 type: Transform - - uid: 27423 + - uid: 27530 components: - pos: 67.5,-67.5 parent: 2 type: Transform - - uid: 27424 + - uid: 27531 components: - pos: 69.5,-69.5 parent: 2 type: Transform - - uid: 27425 + - uid: 27532 components: - pos: -78.5,-19.5 parent: 2 type: Transform - - uid: 27426 + - uid: 27533 components: - pos: -78.5,-5.5 parent: 2 type: Transform - - uid: 27427 + - uid: 27534 components: - pos: -71.5,-2.5 parent: 2 type: Transform - - uid: 27428 + - uid: 27535 components: - pos: -64.5,-2.5 parent: 2 type: Transform - - uid: 27429 + - uid: 27536 components: - pos: -64.5,-47.5 parent: 2 type: Transform - - uid: 27430 + - uid: 27537 components: - pos: 38.5,31.5 parent: 2 type: Transform - - uid: 27431 + - uid: 27538 components: - pos: 32.5,39.5 parent: 2 type: Transform - - uid: 27432 + - uid: 27539 components: - pos: 24.5,39.5 parent: 2 type: Transform - - uid: 27433 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-38.5 - parent: 2 - type: Transform - - uid: 27434 + - uid: 27540 components: - pos: 73.5,-40.5 parent: 2 type: Transform - - uid: 27435 + - uid: 27541 components: - pos: 77.5,-42.5 parent: 2 type: Transform - - uid: 27436 + - uid: 27542 components: - pos: 77.5,-48.5 parent: 2 type: Transform - - uid: 27437 + - uid: 27543 components: - pos: 78.5,-48.5 parent: 2 type: Transform - - uid: 27438 + - uid: 27544 components: - pos: 78.5,-42.5 parent: 2 type: Transform - - uid: 27439 + - uid: 27545 components: - pos: 78.5,-47.5 parent: 2 type: Transform - - uid: 27440 + - uid: 27546 components: - pos: 27.5,-26.5 parent: 2 type: Transform - - uid: 27442 + - uid: 27547 components: - pos: 59.5,50.5 parent: 2 type: Transform - - uid: 27443 + - uid: 27548 components: - pos: -32.5,-73.5 parent: 2 type: Transform - - uid: 27444 + - uid: 27549 components: - rot: -1.5707963267948966 rad pos: 46.5,50.5 parent: 2 type: Transform - - uid: 27445 + - uid: 27550 components: - rot: -1.5707963267948966 rad pos: 45.5,50.5 parent: 2 type: Transform - - uid: 27446 + - uid: 27551 components: - rot: -1.5707963267948966 rad pos: 44.5,50.5 parent: 2 type: Transform - - uid: 27447 + - uid: 27552 components: - pos: 48.5,44.5 parent: 2 type: Transform - - uid: 27448 + - uid: 27553 components: - pos: 47.5,44.5 parent: 2 type: Transform - - uid: 27449 + - uid: 27554 components: - pos: 47.5,43.5 parent: 2 type: Transform - - uid: 27450 + - uid: 27555 components: - pos: 45.5,43.5 parent: 2 type: Transform - - uid: 27451 + - uid: 27556 components: - pos: 44.5,43.5 parent: 2 type: Transform - - uid: 27452 + - uid: 27557 components: - pos: 59.5,51.5 parent: 2 type: Transform - - uid: 27453 + - uid: 27558 components: - pos: 59.5,52.5 parent: 2 type: Transform - - uid: 27454 + - uid: 27559 components: - pos: 59.5,53.5 parent: 2 type: Transform - - uid: 27455 + - uid: 27560 components: - pos: 58.5,53.5 parent: 2 type: Transform - - uid: 27456 + - uid: 27561 components: - pos: 57.5,53.5 parent: 2 type: Transform - - uid: 27457 + - uid: 27562 components: - pos: 51.5,53.5 parent: 2 type: Transform - - uid: 27458 + - uid: 27563 components: - pos: 50.5,53.5 parent: 2 type: Transform - - uid: 27459 + - uid: 27564 components: - pos: 49.5,53.5 parent: 2 type: Transform - - uid: 27460 + - uid: 27565 components: - pos: 49.5,52.5 parent: 2 type: Transform - - uid: 27461 + - uid: 27566 components: - pos: 49.5,51.5 parent: 2 type: Transform - - uid: 27462 + - uid: 27567 components: - rot: -1.5707963267948966 rad pos: 55.5,39.5 parent: 2 type: Transform - - uid: 27463 + - uid: 27568 components: - rot: -1.5707963267948966 rad pos: 55.5,38.5 parent: 2 type: Transform - - uid: 27464 + - uid: 27569 components: - pos: 61.5,30.5 parent: 2 type: Transform - - uid: 27465 + - uid: 27570 components: - pos: 59.5,31.5 parent: 2 type: Transform - - uid: 27466 + - uid: 27571 components: - pos: 59.5,34.5 parent: 2 type: Transform - - uid: 27467 + - uid: 27572 components: - rot: -1.5707963267948966 rad pos: 58.5,35.5 parent: 2 type: Transform - - uid: 27468 + - uid: 27573 components: - rot: -1.5707963267948966 rad pos: 57.5,35.5 parent: 2 type: Transform - - uid: 27469 + - uid: 27574 components: - rot: -1.5707963267948966 rad pos: 43.5,-65.5 parent: 2 type: Transform - - uid: 27470 + - uid: 27575 components: - pos: 10.5,-36.5 parent: 2 type: Transform - - uid: 27471 + - uid: 27576 components: - rot: -1.5707963267948966 rad pos: 57.5,38.5 parent: 2 type: Transform - - uid: 27472 + - uid: 27577 components: - rot: 3.141592653589793 rad pos: 61.5,41.5 parent: 2 type: Transform - - uid: 27473 + - uid: 27578 components: - rot: 3.141592653589793 rad pos: 60.5,41.5 parent: 2 type: Transform - - uid: 27474 + - uid: 27579 components: - rot: -1.5707963267948966 rad pos: 42.5,42.5 parent: 2 type: Transform - - uid: 27475 + - uid: 27580 components: - rot: -1.5707963267948966 rad pos: 43.5,43.5 parent: 2 type: Transform - - uid: 27476 + - uid: 27581 components: - rot: -1.5707963267948966 rad pos: 49.5,46.5 parent: 2 type: Transform - - uid: 27477 + - uid: 27582 components: - rot: -1.5707963267948966 rad pos: -7.5,41.5 parent: 2 type: Transform - - uid: 27478 + - uid: 27583 components: - rot: -1.5707963267948966 rad pos: -7.5,40.5 parent: 2 type: Transform - - uid: 27479 + - uid: 27584 components: - rot: -1.5707963267948966 rad pos: -7.5,34.5 parent: 2 type: Transform - - uid: 27480 + - uid: 27585 components: - rot: -1.5707963267948966 rad pos: -7.5,35.5 parent: 2 type: Transform - - uid: 27481 + - uid: 27586 components: - rot: -1.5707963267948966 rad pos: -7.5,36.5 parent: 2 type: Transform - - uid: 27482 + - uid: 27587 components: - rot: 3.141592653589793 rad pos: 3.5,60.5 parent: 2 type: Transform - - uid: 27483 + - uid: 27588 components: - rot: -1.5707963267948966 rad pos: -7.5,42.5 parent: 2 type: Transform - - uid: 27484 + - uid: 27589 components: - pos: -18.5,68.5 parent: 2 type: Transform - - uid: 27485 + - uid: 27590 components: - pos: -16.5,59.5 parent: 2 type: Transform - - uid: 27486 + - uid: 27591 components: - pos: -16.5,58.5 parent: 2 type: Transform - - uid: 27487 + - uid: 27592 components: - pos: -23.5,59.5 parent: 2 type: Transform - - uid: 27488 + - uid: 27593 components: - pos: -23.5,64.5 parent: 2 type: Transform - - uid: 27489 + - uid: 27594 components: - pos: -23.5,65.5 parent: 2 type: Transform - - uid: 27490 + - uid: 27595 components: - pos: -16.5,54.5 parent: 2 type: Transform - - uid: 27491 + - uid: 27596 components: - pos: -14.5,52.5 parent: 2 type: Transform - - uid: 27492 + - uid: 27597 components: - pos: -14.5,53.5 parent: 2 type: Transform - - uid: 27493 + - uid: 27598 components: - pos: -16.5,52.5 parent: 2 type: Transform - - uid: 27494 + - uid: 27599 components: - pos: -15.5,52.5 parent: 2 type: Transform - - uid: 27495 + - uid: 27600 components: - pos: -23.5,71.5 parent: 2 type: Transform - - uid: 27496 + - uid: 27601 components: - pos: -23.5,70.5 parent: 2 type: Transform - - uid: 27497 + - uid: 27602 components: - pos: -23.5,69.5 parent: 2 type: Transform - - uid: 27498 + - uid: 27603 components: - pos: -20.5,71.5 parent: 2 type: Transform - - uid: 27499 + - uid: 27604 components: - pos: -20.5,70.5 parent: 2 type: Transform - - uid: 27500 + - uid: 27605 components: - pos: -16.5,69.5 parent: 2 type: Transform - - uid: 27501 + - uid: 27606 components: - pos: -23.5,60.5 parent: 2 type: Transform - - uid: 27502 + - uid: 27607 components: - pos: -23.5,74.5 parent: 2 type: Transform - - uid: 27503 + - uid: 27608 components: - pos: -23.5,75.5 parent: 2 type: Transform - - uid: 27504 + - uid: 27609 components: - pos: -20.5,75.5 parent: 2 type: Transform - - uid: 27505 + - uid: 27610 components: - pos: -20.5,74.5 parent: 2 type: Transform - - uid: 27506 + - uid: 27611 components: - pos: -15.5,59.5 parent: 2 type: Transform - - uid: 27507 + - uid: 27612 components: - pos: -14.5,59.5 parent: 2 type: Transform - - uid: 27508 + - uid: 27613 components: - pos: -11.5,74.5 parent: 2 type: Transform - - uid: 27509 + - uid: 27614 components: - pos: -11.5,75.5 parent: 2 type: Transform - - uid: 27510 + - uid: 27615 components: - pos: -14.5,75.5 parent: 2 type: Transform - - uid: 27511 + - uid: 27616 components: - pos: -14.5,74.5 parent: 2 type: Transform - - uid: 27512 + - uid: 27617 components: - pos: -14.5,57.5 parent: 2 type: Transform - - uid: 27513 + - uid: 27618 components: - pos: -16.5,57.5 parent: 2 type: Transform - - uid: 27514 + - uid: 27619 components: - pos: -14.5,54.5 parent: 2 type: Transform - - uid: 27515 + - uid: 27620 components: - pos: -23.5,67.5 parent: 2 type: Transform - - uid: 27516 + - uid: 27621 components: - pos: -23.5,68.5 parent: 2 type: Transform - - uid: 27517 + - uid: 27622 components: - pos: -16.5,70.5 parent: 2 type: Transform - - uid: 27518 + - uid: 27623 components: - pos: -11.5,66.5 parent: 2 type: Transform - - uid: 27519 + - uid: 27624 components: - pos: -23.5,66.5 parent: 2 type: Transform - - uid: 27520 + - uid: 27625 components: - pos: -18.5,69.5 parent: 2 type: Transform - - uid: 27521 + - uid: 27626 components: - pos: -11.5,65.5 parent: 2 type: Transform - - uid: 27522 + - uid: 27627 components: - pos: -11.5,64.5 parent: 2 type: Transform - - uid: 27523 + - uid: 27628 components: - pos: -10.5,63.5 parent: 2 type: Transform - - uid: 27524 + - uid: 27629 components: - pos: -14.5,70.5 parent: 2 type: Transform - - uid: 27525 + - uid: 27630 components: - pos: -14.5,72.5 parent: 2 type: Transform - - uid: 27526 + - uid: 27631 components: - pos: -11.5,72.5 parent: 2 type: Transform - - uid: 27527 + - uid: 27632 components: - pos: -11.5,71.5 parent: 2 type: Transform - - uid: 27528 + - uid: 27633 components: - pos: -11.5,70.5 parent: 2 type: Transform - - uid: 27529 + - uid: 27634 components: - pos: -14.5,69.5 parent: 2 type: Transform - - uid: 27530 + - uid: 27635 components: - rot: -1.5707963267948966 rad pos: -14.5,58.5 parent: 2 type: Transform - - uid: 27531 + - uid: 27636 components: - pos: -14.5,71.5 parent: 2 type: Transform - - uid: 27532 + - uid: 27637 components: - pos: -18.5,70.5 parent: 2 type: Transform - - uid: 27533 + - uid: 27638 components: - pos: -20.5,69.5 parent: 2 type: Transform - - uid: 27534 + - uid: 27639 components: - pos: -20.5,68.5 parent: 2 type: Transform - - uid: 27535 + - uid: 27640 components: - pos: -19.5,68.5 parent: 2 type: Transform - - uid: 27536 + - uid: 27641 components: - pos: -14.5,68.5 parent: 2 type: Transform - - uid: 27537 + - uid: 27642 components: - pos: -15.5,68.5 parent: 2 type: Transform - - uid: 27538 + - uid: 27643 components: - pos: -16.5,68.5 parent: 2 type: Transform - - uid: 27539 + - uid: 27644 components: - rot: -1.5707963267948966 rad pos: -28.5,33.5 parent: 2 type: Transform - - uid: 27540 + - uid: 27645 components: - rot: -1.5707963267948966 rad pos: -28.5,34.5 parent: 2 type: Transform - - uid: 27541 + - uid: 27646 components: - rot: -1.5707963267948966 rad pos: -29.5,35.5 parent: 2 type: Transform - - uid: 27542 + - uid: 27647 components: - rot: -1.5707963267948966 rad pos: -28.5,35.5 parent: 2 type: Transform - - uid: 27543 + - uid: 27648 components: - rot: -1.5707963267948966 rad pos: -30.5,35.5 parent: 2 type: Transform - - uid: 27544 + - uid: 27649 components: - rot: -1.5707963267948966 rad pos: -34.5,35.5 parent: 2 type: Transform - - uid: 27545 + - uid: 27650 components: - rot: -1.5707963267948966 rad pos: -35.5,35.5 parent: 2 type: Transform - - uid: 27546 + - uid: 27651 components: - rot: -1.5707963267948966 rad pos: -28.5,32.5 parent: 2 type: Transform - - uid: 27547 + - uid: 27652 components: - pos: 60.5,30.5 parent: 2 type: Transform - - uid: 27548 + - uid: 27653 components: - pos: 9.5,-35.5 parent: 2 type: Transform - - uid: 27549 + - uid: 27654 components: - pos: 3.5,58.5 parent: 2 type: Transform - - uid: 27550 + - uid: 27655 components: - pos: 2.5,45.5 parent: 2 type: Transform - - uid: 27551 + - uid: 27656 components: - pos: 2.5,44.5 parent: 2 type: Transform - - uid: 27552 + - uid: 27657 components: - pos: 2.5,52.5 parent: 2 type: Transform - - uid: 27553 + - uid: 27658 components: - pos: 2.5,53.5 parent: 2 type: Transform - - uid: 27554 + - uid: 27659 components: - pos: 2.5,54.5 parent: 2 type: Transform - - uid: 27555 + - uid: 27660 components: - pos: 2.5,55.5 parent: 2 type: Transform - - uid: 27556 + - uid: 27661 components: - pos: 3.5,56.5 parent: 2 type: Transform - - uid: 27557 + - uid: 27662 components: - pos: -7.5,43.5 parent: 2 type: Transform - - uid: 27558 + - uid: 27663 components: - pos: 3.5,59.5 parent: 2 type: Transform - - uid: 27559 + - uid: 27664 components: - pos: 2.5,56.5 parent: 2 type: Transform - - uid: 27560 + - uid: 27665 components: - pos: -4.5,42.5 parent: 2 type: Transform - - uid: 27561 + - uid: 27666 components: - pos: -5.5,42.5 parent: 2 type: Transform - - uid: 27562 + - uid: 27667 components: - pos: -0.5,42.5 parent: 2 type: Transform - - uid: 27563 + - uid: 27668 components: - pos: 0.5,42.5 parent: 2 type: Transform - - uid: 27564 + - uid: 27669 components: - pos: 2.5,60.5 parent: 2 type: Transform - - uid: 27565 + - uid: 27670 components: - pos: 5.5,49.5 parent: 2 type: Transform - - uid: 27566 + - uid: 27671 components: - pos: 10.5,50.5 parent: 2 type: Transform - - uid: 27567 + - uid: 27672 components: - pos: 10.5,46.5 parent: 2 type: Transform - - uid: 27568 + - uid: 27673 components: - pos: 34.5,49.5 parent: 2 type: Transform - - uid: 27569 + - uid: 27674 components: - pos: 35.5,49.5 parent: 2 type: Transform - - uid: 27570 + - uid: 27675 components: - rot: -1.5707963267948966 rad pos: 21.5,44.5 parent: 2 type: Transform - - uid: 27571 + - uid: 27676 components: - rot: -1.5707963267948966 rad pos: 21.5,46.5 parent: 2 type: Transform - - uid: 27572 + - uid: 27677 components: - pos: 59.5,35.5 parent: 2 type: Transform - - uid: 27573 + - uid: 27678 components: - rot: -1.5707963267948966 rad pos: 42.5,37.5 parent: 2 type: Transform - - uid: 27574 + - uid: 27679 components: - rot: -1.5707963267948966 rad pos: 44.5,34.5 parent: 2 type: Transform - - uid: 27575 + - uid: 27680 components: - rot: -1.5707963267948966 rad pos: 44.5,36.5 parent: 2 type: Transform - - uid: 27576 + - uid: 27681 components: - rot: -1.5707963267948966 rad pos: 44.5,35.5 parent: 2 type: Transform - - uid: 27577 + - uid: 27682 components: - rot: -1.5707963267948966 rad pos: 43.5,38.5 parent: 2 type: Transform - - uid: 27578 + - uid: 27683 components: - rot: 1.5707963267948966 rad pos: 44.5,40.5 parent: 2 type: Transform - - uid: 27579 + - uid: 27684 components: - rot: 1.5707963267948966 rad pos: 44.5,39.5 parent: 2 type: Transform - - uid: 27580 + - uid: 27685 components: - rot: 1.5707963267948966 rad pos: 44.5,38.5 parent: 2 type: Transform - - uid: 27581 + - uid: 27686 components: - rot: -1.5707963267948966 rad pos: 42.5,36.5 parent: 2 type: Transform - - uid: 27582 + - uid: 27687 components: - rot: 1.5707963267948966 rad pos: 46.5,40.5 parent: 2 type: Transform - - uid: 27583 + - uid: 27688 components: - rot: 1.5707963267948966 rad pos: 48.5,40.5 parent: 2 type: Transform - - uid: 27584 + - uid: 27689 components: - rot: 1.5707963267948966 rad pos: 48.5,41.5 parent: 2 type: Transform - - uid: 27585 + - uid: 27690 components: - rot: -1.5707963267948966 rad pos: 43.5,36.5 parent: 2 type: Transform - - uid: 27586 + - uid: 27691 components: - rot: 3.141592653589793 rad pos: 42.5,34.5 parent: 2 type: Transform - - uid: 27587 + - uid: 27692 components: - rot: 3.141592653589793 rad pos: 41.5,34.5 parent: 2 type: Transform - - uid: 27588 + - uid: 27693 components: - rot: 3.141592653589793 rad pos: 41.5,33.5 parent: 2 type: Transform - - uid: 27589 + - uid: 27694 components: - rot: 3.141592653589793 rad pos: 41.5,29.5 parent: 2 type: Transform - - uid: 27590 + - uid: 27695 components: - rot: 3.141592653589793 rad pos: 42.5,28.5 parent: 2 type: Transform - - uid: 27591 + - uid: 27696 components: - rot: 3.141592653589793 rad pos: 42.5,29.5 parent: 2 type: Transform - - uid: 27592 + - uid: 27697 components: - rot: 3.141592653589793 rad pos: 43.5,28.5 parent: 2 type: Transform - - uid: 27593 + - uid: 27698 components: - rot: -1.5707963267948966 rad pos: 57.5,36.5 parent: 2 type: Transform - - uid: 27594 + - uid: 27699 components: - rot: -1.5707963267948966 rad pos: 56.5,38.5 parent: 2 type: Transform - - uid: 27595 + - uid: 27700 components: - pos: 71.5,-65.5 parent: 2 type: Transform - - uid: 27596 + - uid: 27701 components: - rot: 1.5707963267948966 rad pos: 43.5,34.5 parent: 2 type: Transform - - uid: 27597 + - uid: 27702 components: - rot: -1.5707963267948966 rad pos: 62.5,30.5 parent: 2 type: Transform - - uid: 27598 + - uid: 27703 components: - rot: -1.5707963267948966 rad pos: 64.5,30.5 parent: 2 type: Transform - - uid: 27599 + - uid: 27704 components: - rot: -1.5707963267948966 rad pos: 65.5,30.5 parent: 2 type: Transform - - uid: 27600 + - uid: 27705 components: - rot: -1.5707963267948966 rad pos: 65.5,28.5 parent: 2 type: Transform - - uid: 27601 + - uid: 27706 components: - rot: -1.5707963267948966 rad pos: 65.5,29.5 parent: 2 type: Transform - - uid: 27602 + - uid: 27707 components: - pos: 30.5,48.5 parent: 2 type: Transform - - uid: 27603 + - uid: 27708 components: - rot: -1.5707963267948966 rad pos: 27.5,47.5 parent: 2 type: Transform - - uid: 27604 + - uid: 27709 components: - rot: -1.5707963267948966 rad pos: 27.5,43.5 parent: 2 type: Transform - - uid: 27605 + - uid: 27710 components: - rot: -1.5707963267948966 rad pos: 28.5,43.5 parent: 2 type: Transform - - uid: 27606 + - uid: 27711 components: - rot: -1.5707963267948966 rad pos: 30.5,43.5 parent: 2 type: Transform - - uid: 27607 + - uid: 27712 components: - rot: -1.5707963267948966 rad pos: 31.5,43.5 parent: 2 type: Transform - - uid: 27608 + - uid: 27713 components: - pos: 2.5,46.5 parent: 2 type: Transform - - uid: 27609 + - uid: 27714 components: - pos: -6.5,43.5 parent: 2 type: Transform - - uid: 27610 + - uid: 27715 components: - pos: -5.5,43.5 parent: 2 type: Transform - - uid: 27611 + - uid: 27716 components: - pos: 2.5,43.5 parent: 2 type: Transform - - uid: 27612 + - uid: 27717 components: - pos: 1.5,43.5 parent: 2 type: Transform - - uid: 27613 + - uid: 27718 components: - pos: 0.5,43.5 parent: 2 type: Transform - - uid: 27614 + - uid: 27719 components: - pos: -8.5,60.5 parent: 2 type: Transform - - uid: 27615 + - uid: 27720 components: - pos: -3.5,60.5 parent: 2 type: Transform - - uid: 27616 + - uid: 27721 components: - pos: -4.5,60.5 parent: 2 type: Transform - - uid: 27617 + - uid: 27722 components: - pos: -5.5,60.5 parent: 2 type: Transform - - uid: 27618 + - uid: 27723 components: - pos: -6.5,60.5 parent: 2 type: Transform - - uid: 27619 + - uid: 27724 components: - pos: -7.5,60.5 parent: 2 type: Transform - - uid: 27620 + - uid: 27725 components: - pos: 1.5,60.5 parent: 2 type: Transform - - uid: 27621 + - uid: 27726 components: - pos: 0.5,60.5 parent: 2 type: Transform - - uid: 27622 + - uid: 27727 components: - rot: -1.5707963267948966 rad pos: -7.5,38.5 parent: 2 type: Transform - - uid: 27623 + - uid: 27728 components: - pos: 18.5,35.5 parent: 2 type: Transform - - uid: 27624 + - uid: 27729 components: - pos: 19.5,35.5 parent: 2 type: Transform - - uid: 27625 + - uid: 27730 components: - pos: 19.5,36.5 parent: 2 type: Transform - - uid: 27626 + - uid: 27731 components: - pos: 19.5,37.5 parent: 2 type: Transform - - uid: 27627 + - uid: 27732 components: - pos: 19.5,38.5 parent: 2 type: Transform - - uid: 27628 + - uid: 27733 components: - pos: 19.5,39.5 parent: 2 type: Transform - - uid: 27629 + - uid: 27734 components: - pos: 19.5,40.5 parent: 2 type: Transform - - uid: 27630 + - uid: 27735 components: - pos: 18.5,40.5 parent: 2 type: Transform - - uid: 27631 + - uid: 27736 components: - pos: 17.5,40.5 parent: 2 type: Transform - - uid: 27632 + - uid: 27737 components: - pos: 17.5,41.5 parent: 2 type: Transform - - uid: 27633 + - uid: 27738 components: - pos: 15.5,41.5 parent: 2 type: Transform - - uid: 27634 + - uid: 27739 components: - pos: 15.5,40.5 parent: 2 type: Transform - - uid: 27635 + - uid: 27740 components: - pos: 14.5,40.5 parent: 2 type: Transform - - uid: 27636 + - uid: 27741 components: - pos: 13.5,40.5 parent: 2 type: Transform - - uid: 27637 + - uid: 27742 components: - pos: 13.5,39.5 parent: 2 type: Transform - - uid: 27638 + - uid: 27743 components: - pos: 13.5,38.5 parent: 2 type: Transform - - uid: 27639 + - uid: 27744 components: - pos: 13.5,37.5 parent: 2 type: Transform - - uid: 27640 + - uid: 27745 components: - pos: 13.5,36.5 parent: 2 type: Transform - - uid: 27641 + - uid: 27746 components: - pos: 13.5,35.5 parent: 2 type: Transform - - uid: 27642 + - uid: 27747 components: - pos: 14.5,35.5 parent: 2 type: Transform - - uid: 27643 + - uid: 27748 components: - pos: 0.5,61.5 parent: 2 type: Transform - - uid: 27644 + - uid: 27749 components: - pos: 0.5,63.5 parent: 2 type: Transform - - uid: 27645 + - uid: 27750 components: - pos: 0.5,62.5 parent: 2 type: Transform - - uid: 27646 + - uid: 27751 components: - pos: -3.5,63.5 parent: 2 type: Transform - - uid: 27647 + - uid: 27752 components: - pos: -3.5,62.5 parent: 2 type: Transform - - uid: 27648 + - uid: 27753 components: - pos: -3.5,61.5 parent: 2 type: Transform - - uid: 27649 + - uid: 27754 components: - pos: 0.5,64.5 parent: 2 type: Transform - - uid: 27650 + - uid: 27755 components: - pos: -0.5,64.5 parent: 2 type: Transform - - uid: 27651 + - uid: 27756 components: - pos: -2.5,64.5 parent: 2 type: Transform - - uid: 27652 + - uid: 27757 components: - pos: -3.5,64.5 parent: 2 type: Transform - - uid: 27653 + - uid: 27758 components: - pos: -4.5,64.5 parent: 2 type: Transform - - uid: 27654 + - uid: 27759 components: - pos: -5.5,64.5 parent: 2 type: Transform - - uid: 27655 + - uid: 27760 components: - pos: -5.5,65.5 parent: 2 type: Transform - - uid: 27656 + - uid: 27761 components: - pos: -5.5,65.5 parent: 2 type: Transform - - uid: 27657 + - uid: 27762 components: - pos: -6.5,65.5 parent: 2 type: Transform - - uid: 27658 + - uid: 27763 components: - pos: -7.5,65.5 parent: 2 type: Transform - - uid: 27659 + - uid: 27764 components: - pos: -7.5,66.5 parent: 2 type: Transform - - uid: 27660 + - uid: 27765 components: - pos: -8.5,66.5 parent: 2 type: Transform - - uid: 27661 + - uid: 27766 components: - pos: -8.5,67.5 parent: 2 type: Transform - - uid: 27662 + - uid: 27767 components: - pos: -8.5,68.5 parent: 2 type: Transform - - uid: 27663 + - uid: 27768 components: - pos: -8.5,70.5 parent: 2 type: Transform - - uid: 27664 + - uid: 27769 components: - pos: -8.5,71.5 parent: 2 type: Transform - - uid: 27665 + - uid: 27770 components: - pos: -8.5,72.5 parent: 2 type: Transform - - uid: 27666 + - uid: 27771 components: - pos: -7.5,72.5 parent: 2 type: Transform - - uid: 27667 + - uid: 27772 components: - pos: -7.5,73.5 parent: 2 type: Transform - - uid: 27668 + - uid: 27773 components: - pos: -6.5,73.5 parent: 2 type: Transform - - uid: 27669 + - uid: 27774 components: - pos: -6.5,74.5 parent: 2 type: Transform - - uid: 27670 + - uid: 27775 components: - pos: -5.5,74.5 parent: 2 type: Transform - - uid: 27671 + - uid: 27776 components: - pos: -4.5,74.5 parent: 2 type: Transform - - uid: 27672 + - uid: 27777 components: - pos: -3.5,74.5 parent: 2 type: Transform - - uid: 27673 + - uid: 27778 components: - pos: -2.5,74.5 parent: 2 type: Transform - - uid: 27674 + - uid: 27779 components: - pos: -1.5,74.5 parent: 2 type: Transform - - uid: 27675 + - uid: 27780 components: - pos: -0.5,74.5 parent: 2 type: Transform - - uid: 27676 + - uid: 27781 components: - pos: 0.5,74.5 parent: 2 type: Transform - - uid: 27677 + - uid: 27782 components: - pos: 1.5,74.5 parent: 2 type: Transform - - uid: 27678 + - uid: 27783 components: - pos: 2.5,74.5 parent: 2 type: Transform - - uid: 27679 + - uid: 27784 components: - pos: 3.5,74.5 parent: 2 type: Transform - - uid: 27680 + - uid: 27785 components: - pos: 3.5,73.5 parent: 2 type: Transform - - uid: 27681 + - uid: 27786 components: - pos: 4.5,73.5 parent: 2 type: Transform - - uid: 27682 + - uid: 27787 components: - pos: 4.5,72.5 parent: 2 type: Transform - - uid: 27683 + - uid: 27788 components: - pos: 5.5,72.5 parent: 2 type: Transform - - uid: 27684 + - uid: 27789 components: - pos: 5.5,71.5 parent: 2 type: Transform - - uid: 27685 + - uid: 27790 components: - pos: 5.5,70.5 parent: 2 type: Transform - - uid: 27686 + - uid: 27791 components: - pos: 5.5,68.5 parent: 2 type: Transform - - uid: 27687 + - uid: 27792 components: - pos: 5.5,67.5 parent: 2 type: Transform - - uid: 27688 + - uid: 27793 components: - pos: 5.5,66.5 parent: 2 type: Transform - - uid: 27689 + - uid: 27794 components: - pos: 4.5,66.5 parent: 2 type: Transform - - uid: 27690 + - uid: 27795 components: - pos: 4.5,65.5 parent: 2 type: Transform - - uid: 27691 + - uid: 27796 components: - pos: 3.5,65.5 parent: 2 type: Transform - - uid: 27692 + - uid: 27797 components: - pos: 2.5,64.5 parent: 2 type: Transform - - uid: 27693 + - uid: 27798 components: - pos: 2.5,65.5 parent: 2 type: Transform - - uid: 27694 + - uid: 27799 components: - pos: 1.5,64.5 parent: 2 type: Transform - - uid: 27695 + - uid: 27800 components: - rot: 3.141592653589793 rad pos: 69.5,39.5 parent: 2 type: Transform - - uid: 27696 + - uid: 27801 components: - rot: 3.141592653589793 rad pos: 69.5,38.5 parent: 2 type: Transform - - uid: 27697 + - uid: 27802 components: - rot: 3.141592653589793 rad pos: 69.5,37.5 parent: 2 type: Transform - - uid: 27698 + - uid: 27803 components: - rot: 3.141592653589793 rad pos: 75.5,39.5 parent: 2 type: Transform - - uid: 27699 + - uid: 27804 components: - rot: 3.141592653589793 rad pos: 75.5,38.5 parent: 2 type: Transform - - uid: 27700 + - uid: 27805 components: - rot: 3.141592653589793 rad pos: 75.5,37.5 parent: 2 type: Transform - - uid: 27701 + - uid: 27806 components: - rot: 3.141592653589793 rad pos: 74.5,39.5 parent: 2 type: Transform - - uid: 27702 + - uid: 27807 components: - rot: 3.141592653589793 rad pos: 72.5,39.5 parent: 2 type: Transform - - uid: 27703 + - uid: 27808 components: - rot: 3.141592653589793 rad pos: 70.5,39.5 parent: 2 type: Transform - - uid: 27704 + - uid: 27809 components: - rot: 3.141592653589793 rad pos: 69.5,35.5 parent: 2 type: Transform - - uid: 27705 + - uid: 27810 components: - rot: 3.141592653589793 rad pos: 69.5,34.5 parent: 2 type: Transform - - uid: 27706 + - uid: 27811 components: - rot: 3.141592653589793 rad pos: 69.5,33.5 parent: 2 type: Transform - - uid: 27707 + - uid: 27812 components: - rot: 3.141592653589793 rad pos: 70.5,33.5 parent: 2 type: Transform - - uid: 27708 + - uid: 27813 components: - rot: 3.141592653589793 rad pos: 72.5,33.5 parent: 2 type: Transform - - uid: 27709 + - uid: 27814 components: - rot: 3.141592653589793 rad pos: 74.5,33.5 parent: 2 type: Transform - - uid: 27710 + - uid: 27815 components: - rot: 3.141592653589793 rad pos: 75.5,33.5 parent: 2 type: Transform - - uid: 27711 + - uid: 27816 components: - rot: 3.141592653589793 rad pos: 75.5,34.5 parent: 2 type: Transform - - uid: 27712 + - uid: 27817 components: - rot: 3.141592653589793 rad pos: 75.5,35.5 parent: 2 type: Transform - - uid: 27713 + - uid: 27818 components: - pos: 76.5,37.5 parent: 2 type: Transform - - uid: 27714 + - uid: 27819 components: - pos: 77.5,37.5 parent: 2 type: Transform - - uid: 27715 + - uid: 27820 components: - pos: 76.5,35.5 parent: 2 type: Transform - - uid: 27716 + - uid: 27821 components: - pos: 77.5,35.5 parent: 2 type: Transform - - uid: 27717 + - uid: 27822 components: - pos: 68.5,37.5 parent: 2 type: Transform - - uid: 27718 + - uid: 27823 components: - pos: 67.5,37.5 parent: 2 type: Transform - - uid: 27719 + - uid: 27824 components: - pos: 67.5,35.5 parent: 2 type: Transform - - uid: 27720 + - uid: 27825 components: - pos: 68.5,35.5 parent: 2 type: Transform - - uid: 27721 + - uid: 27826 components: - pos: 64.5,32.5 parent: 2 type: Transform - - uid: 27722 + - uid: 27827 components: - pos: 64.5,31.5 parent: 2 type: Transform - - uid: 27723 + - uid: 27828 components: - pos: 62.5,32.5 parent: 2 type: Transform - - uid: 27724 + - uid: 27829 components: - pos: 62.5,31.5 parent: 2 type: Transform - - uid: 27725 + - uid: 27830 components: - pos: -38.5,43.5 parent: 2 type: Transform - - uid: 27726 + - uid: 27831 components: - pos: -38.5,42.5 parent: 2 type: Transform - - uid: 27727 + - uid: 27832 components: - pos: -38.5,41.5 parent: 2 type: Transform - - uid: 27728 + - uid: 27833 components: - pos: -36.5,43.5 parent: 2 type: Transform - - uid: 27729 + - uid: 27834 components: - pos: -36.5,42.5 parent: 2 type: Transform - - uid: 27730 + - uid: 27835 components: - pos: -36.5,41.5 parent: 2 type: Transform - - uid: 27731 + - uid: 27836 components: - pos: -38.5,40.5 parent: 2 type: Transform - - uid: 27732 + - uid: 27837 components: - pos: -39.5,40.5 parent: 2 type: Transform - - uid: 27733 + - uid: 27838 components: - pos: -40.5,40.5 parent: 2 type: Transform - - uid: 27734 + - uid: 27839 components: - pos: -41.5,40.5 parent: 2 type: Transform - - uid: 27735 + - uid: 27840 components: - pos: -42.5,40.5 parent: 2 type: Transform - - uid: 27736 + - uid: 27841 components: - rot: -1.5707963267948966 rad pos: -48.5,46.5 parent: 2 type: Transform - - uid: 27737 + - uid: 27842 components: - rot: -1.5707963267948966 rad pos: -48.5,47.5 parent: 2 type: Transform - - uid: 27738 + - uid: 27843 components: - rot: -1.5707963267948966 rad pos: -50.5,47.5 parent: 2 type: Transform - - uid: 27739 + - uid: 27844 components: - pos: -48.5,40.5 parent: 2 type: Transform - - uid: 27740 + - uid: 27845 components: - pos: -48.5,39.5 parent: 2 type: Transform - - uid: 27741 + - uid: 27846 components: - pos: -48.5,38.5 parent: 2 type: Transform - - uid: 27742 + - uid: 27847 components: - pos: -36.5,40.5 parent: 2 type: Transform - - uid: 27743 + - uid: 27848 components: - pos: -35.5,40.5 parent: 2 type: Transform - - uid: 27744 + - uid: 27849 components: - pos: -34.5,40.5 parent: 2 type: Transform - - uid: 27745 + - uid: 27850 components: - pos: -31.5,40.5 parent: 2 type: Transform - - uid: 27746 + - uid: 27851 components: - pos: -30.5,40.5 parent: 2 type: Transform - - uid: 27747 + - uid: 27852 components: - pos: -30.5,41.5 parent: 2 type: Transform - - uid: 27748 + - uid: 27853 components: - pos: -30.5,42.5 parent: 2 type: Transform - - uid: 27749 + - uid: 27854 components: - pos: -29.5,42.5 parent: 2 type: Transform - - uid: 27750 + - uid: 27855 components: - pos: -26.5,47.5 parent: 2 type: Transform - - uid: 27751 + - uid: 27856 components: - pos: -27.5,47.5 parent: 2 type: Transform - - uid: 27752 + - uid: 27857 components: - pos: -28.5,47.5 parent: 2 type: Transform - - uid: 27753 + - uid: 27858 components: - pos: -29.5,47.5 parent: 2 type: Transform - - uid: 27754 + - uid: 27859 components: - pos: -29.5,46.5 parent: 2 type: Transform - - uid: 27755 + - uid: 27860 components: - pos: -25.5,47.5 parent: 2 type: Transform - - uid: 27756 + - uid: 27861 components: - pos: -25.5,48.5 parent: 2 type: Transform - - uid: 27757 + - uid: 27862 components: - pos: 32.5,48.5 parent: 2 type: Transform - - uid: 27758 + - uid: 27863 components: - pos: 31.5,48.5 parent: 2 type: Transform - - uid: 27759 + - uid: 27864 components: - pos: 31.5,47.5 parent: 2 type: Transform - - uid: 27760 + - uid: 27865 components: - pos: 31.5,46.5 parent: 2 type: Transform - - uid: 27761 + - uid: 27866 components: - pos: 31.5,44.5 parent: 2 type: Transform - - uid: 27762 + - uid: 27867 components: - pos: 27.5,46.5 parent: 2 type: Transform - - uid: 27763 + - uid: 27868 components: - pos: 27.5,44.5 parent: 2 type: Transform - - uid: 27764 + - uid: 27869 components: - pos: 28.5,48.5 parent: 2 type: Transform - - uid: 27765 + - uid: 27870 components: - rot: -1.5707963267948966 rad pos: -1.5,73.5 parent: 2 type: Transform - - uid: 27766 + - uid: 27871 components: - pos: 46.5,51.5 parent: 2 type: Transform - - uid: 27767 + - uid: 27872 components: - pos: 47.5,51.5 parent: 2 type: Transform - - uid: 27768 + - uid: 27873 components: - pos: 48.5,51.5 parent: 2 type: Transform - - uid: 27769 + - uid: 27874 components: - pos: 30.5,42.5 parent: 2 type: Transform - - uid: 27770 + - uid: 27875 components: - pos: 30.5,41.5 parent: 2 type: Transform - - uid: 27771 + - uid: 27876 components: - pos: 28.5,42.5 parent: 2 type: Transform - - uid: 27772 + - uid: 27877 components: - pos: 28.5,41.5 parent: 2 type: Transform - - uid: 27773 + - uid: 27878 components: - pos: 27.5,48.5 parent: 2 type: Transform - - uid: 27774 + - uid: 27879 components: - pos: -8.5,63.5 parent: 2 type: Transform - - uid: 27775 + - uid: 27880 components: - pos: -9.5,63.5 parent: 2 type: Transform - - uid: 27776 + - uid: 27881 components: - pos: -11.5,63.5 parent: 2 type: Transform - - uid: 27777 + - uid: 27882 components: - pos: -8.5,62.5 parent: 2 type: Transform - - uid: 27778 + - uid: 27883 components: - pos: -8.5,61.5 parent: 2 type: Transform - - uid: 27779 + - uid: 27884 components: - pos: 10.5,-35.5 parent: 2 type: Transform - - uid: 27780 + - uid: 27885 components: - pos: 9.5,-30.5 parent: 2 type: Transform - - uid: 27781 + - uid: 27886 components: - pos: 10.5,-37.5 parent: 2 type: Transform - - uid: 27782 + - uid: 27887 components: - pos: -25.5,49.5 parent: 2 type: Transform - - uid: 27783 + - uid: 27888 components: - pos: -25.5,50.5 parent: 2 type: Transform - - uid: 27784 + - uid: 27889 components: - pos: -26.5,50.5 parent: 2 type: Transform - - uid: 27785 + - uid: 27890 components: - pos: -26.5,51.5 parent: 2 type: Transform - - uid: 27786 + - uid: 27891 components: - pos: -26.5,52.5 parent: 2 type: Transform - - uid: 27787 + - uid: 27892 components: - pos: -26.5,55.5 parent: 2 type: Transform - - uid: 27788 + - uid: 27893 components: - pos: -26.5,56.5 parent: 2 type: Transform - - uid: 27789 + - uid: 27894 components: - pos: -25.5,56.5 parent: 2 type: Transform - - uid: 27790 + - uid: 27895 components: - pos: -25.5,57.5 parent: 2 type: Transform - - uid: 27791 + - uid: 27896 components: - pos: -24.5,57.5 parent: 2 type: Transform - - uid: 27792 + - uid: 27897 components: - pos: 3.5,57.5 parent: 2 type: Transform - - uid: 27793 + - uid: 27898 components: - pos: 10.5,-30.5 parent: 2 type: Transform - - uid: 27794 + - uid: 27899 components: - pos: 9.5,-33.5 parent: 2 type: Transform - - uid: 27795 + - uid: 27900 components: - rot: 3.141592653589793 rad pos: -16.5,-81.5 parent: 2 type: Transform - - uid: 27796 + - uid: 27901 components: - rot: 3.141592653589793 rad pos: -16.5,-82.5 parent: 2 type: Transform - - uid: 27797 + - uid: 27902 components: - rot: 3.141592653589793 rad pos: -16.5,-83.5 parent: 2 type: Transform - - uid: 27798 + - uid: 27903 components: - rot: 3.141592653589793 rad pos: -16.5,-84.5 parent: 2 type: Transform - - uid: 27799 + - uid: 27904 components: - rot: 3.141592653589793 rad pos: -16.5,-85.5 parent: 2 type: Transform - - uid: 27800 + - uid: 27905 components: - rot: 3.141592653589793 rad pos: -16.5,-86.5 parent: 2 type: Transform - - uid: 27801 + - uid: 27906 components: - rot: 3.141592653589793 rad pos: -16.5,-87.5 parent: 2 type: Transform - - uid: 27802 + - uid: 27907 components: - rot: 3.141592653589793 rad pos: -16.5,-89.5 parent: 2 type: Transform - - uid: 27803 + - uid: 27908 components: - rot: 3.141592653589793 rad pos: -15.5,-89.5 parent: 2 type: Transform - - uid: 27804 + - uid: 27909 components: - rot: 3.141592653589793 rad pos: -14.5,-89.5 parent: 2 type: Transform - - uid: 27805 + - uid: 27910 components: - rot: 3.141592653589793 rad pos: -13.5,-89.5 parent: 2 type: Transform - - uid: 27806 + - uid: 27911 components: - rot: 3.141592653589793 rad pos: -12.5,-89.5 parent: 2 type: Transform - - uid: 27807 + - uid: 27912 components: - rot: 3.141592653589793 rad pos: -11.5,-89.5 parent: 2 type: Transform - - uid: 27808 + - uid: 27913 components: - rot: 3.141592653589793 rad pos: -10.5,-89.5 parent: 2 type: Transform - - uid: 27809 + - uid: 27914 components: - rot: 3.141592653589793 rad pos: -9.5,-89.5 parent: 2 type: Transform - - uid: 27810 + - uid: 27915 components: - rot: 3.141592653589793 rad pos: -8.5,-89.5 parent: 2 type: Transform - - uid: 27811 + - uid: 27916 components: - rot: 3.141592653589793 rad pos: -9.5,-94.5 parent: 2 type: Transform - - uid: 27812 + - uid: 27917 components: - pos: -5.5,-94.5 parent: 2 type: Transform - - uid: 27813 + - uid: 27918 components: - rot: 3.141592653589793 rad pos: -6.5,-89.5 parent: 2 type: Transform - - uid: 27814 + - uid: 27919 components: - rot: 3.141592653589793 rad pos: -5.5,-89.5 parent: 2 type: Transform - - uid: 27815 + - uid: 27920 components: - rot: 3.141592653589793 rad pos: -4.5,-89.5 parent: 2 type: Transform - - uid: 27816 + - uid: 27921 components: - rot: 3.141592653589793 rad pos: -3.5,-89.5 parent: 2 type: Transform - - uid: 27817 + - uid: 27922 components: - rot: 3.141592653589793 rad pos: -3.5,-85.5 parent: 2 type: Transform - - uid: 27818 + - uid: 27923 components: - rot: 3.141592653589793 rad pos: -3.5,-86.5 parent: 2 type: Transform - - uid: 27819 + - uid: 27924 components: - rot: 3.141592653589793 rad pos: -3.5,-87.5 parent: 2 type: Transform - - uid: 27820 + - uid: 27925 components: - rot: 3.141592653589793 rad pos: -3.5,-88.5 parent: 2 type: Transform - - uid: 27821 + - uid: 27926 components: - rot: 3.141592653589793 rad pos: -3.5,-84.5 parent: 2 type: Transform - - uid: 27822 + - uid: 27927 components: - rot: -1.5707963267948966 rad pos: 29.5,48.5 parent: 2 type: Transform - - uid: 27823 + - uid: 27928 components: - pos: -18.5,-95.5 parent: 2 type: Transform - - uid: 27824 + - uid: 27929 components: - pos: -18.5,-99.5 parent: 2 type: Transform - - uid: 27825 + - uid: 27930 components: - pos: -26.5,-95.5 parent: 2 type: Transform - - uid: 27826 + - uid: 27931 components: - pos: -26.5,-99.5 parent: 2 type: Transform - - uid: 27827 + - uid: 27932 components: - pos: -18.5,-94.5 parent: 2 type: Transform - - uid: 27828 + - uid: 27933 components: - pos: -19.5,-94.5 parent: 2 type: Transform - - uid: 27829 + - uid: 27934 components: - pos: -20.5,-94.5 parent: 2 type: Transform - - uid: 27830 + - uid: 27935 components: - pos: -24.5,-94.5 parent: 2 type: Transform - - uid: 27831 + - uid: 27936 components: - pos: -25.5,-94.5 parent: 2 type: Transform - - uid: 27832 + - uid: 27937 components: - pos: -26.5,-94.5 parent: 2 type: Transform - - uid: 27833 + - uid: 27938 components: - pos: -18.5,-100.5 parent: 2 type: Transform - - uid: 27834 + - uid: 27939 components: - pos: -19.5,-100.5 parent: 2 type: Transform - - uid: 27835 + - uid: 27940 components: - pos: -20.5,-100.5 parent: 2 type: Transform - - uid: 27836 + - uid: 27941 components: - pos: -26.5,-100.5 parent: 2 type: Transform - - uid: 27837 + - uid: 27942 components: - pos: -25.5,-100.5 parent: 2 type: Transform - - uid: 27838 + - uid: 27943 components: - pos: -24.5,-100.5 parent: 2 type: Transform - - uid: 27839 + - uid: 27944 components: - pos: -17.5,-95.5 parent: 2 type: Transform - - uid: 27840 + - uid: 27945 components: - pos: -16.5,-95.5 parent: 2 type: Transform - - uid: 27841 + - uid: 27946 components: - pos: -15.5,-95.5 parent: 2 type: Transform - - uid: 27842 + - uid: 27947 components: - pos: -14.5,-95.5 parent: 2 type: Transform - - uid: 27843 + - uid: 27948 components: - pos: -17.5,-99.5 parent: 2 type: Transform - - uid: 27844 + - uid: 27949 components: - pos: -16.5,-99.5 parent: 2 type: Transform - - uid: 27845 + - uid: 27950 components: - pos: -15.5,-99.5 parent: 2 type: Transform - - uid: 27846 + - uid: 27951 components: - pos: -14.5,-99.5 parent: 2 type: Transform - - uid: 27847 + - uid: 27952 components: - pos: -27.5,-95.5 parent: 2 type: Transform - - uid: 27848 + - uid: 27953 components: - pos: -28.5,-95.5 parent: 2 type: Transform - - uid: 27849 + - uid: 27954 components: - pos: -29.5,-95.5 parent: 2 type: Transform - - uid: 27850 + - uid: 27955 components: - pos: -30.5,-95.5 parent: 2 type: Transform - - uid: 27851 + - uid: 27956 components: - pos: -27.5,-99.5 parent: 2 type: Transform - - uid: 27852 + - uid: 27957 components: - pos: -28.5,-99.5 parent: 2 type: Transform - - uid: 27853 + - uid: 27958 components: - pos: -29.5,-99.5 parent: 2 type: Transform - - uid: 27854 + - uid: 27959 components: - pos: -30.5,-99.5 parent: 2 type: Transform - - uid: 27855 + - uid: 27960 components: - pos: -13.5,-95.5 parent: 2 type: Transform - - uid: 27856 + - uid: 27961 components: - pos: -13.5,-99.5 parent: 2 type: Transform - - uid: 27857 + - uid: 27962 components: - pos: -31.5,-95.5 parent: 2 type: Transform - - uid: 27858 + - uid: 27963 components: - pos: -31.5,-99.5 parent: 2 type: Transform - - uid: 27859 + - uid: 27964 components: - pos: -10.5,-94.5 parent: 2 type: Transform - - uid: 27860 + - uid: 27965 components: - pos: -11.5,-94.5 parent: 2 type: Transform - - uid: 27861 + - uid: 27966 components: - pos: -11.5,-95.5 parent: 2 type: Transform - - uid: 27862 + - uid: 27967 components: - pos: -12.5,-95.5 parent: 2 type: Transform - - uid: 27863 + - uid: 27968 components: - pos: -4.5,-94.5 parent: 2 type: Transform - - uid: 27864 + - uid: 27969 components: - pos: -4.5,-95.5 parent: 2 type: Transform - - uid: 27865 + - uid: 27970 components: - pos: -3.5,-95.5 parent: 2 type: Transform - - uid: 27866 + - uid: 27971 components: - pos: -7.5,-101.5 parent: 2 type: Transform - - uid: 27867 + - uid: 27972 components: - pos: -4.5,-101.5 parent: 2 type: Transform - - uid: 27868 + - uid: 27973 components: - pos: -4.5,-100.5 parent: 2 type: Transform - - uid: 27869 + - uid: 27974 components: - pos: -3.5,-100.5 parent: 2 type: Transform - - uid: 27870 + - uid: 27975 components: - pos: -10.5,-101.5 parent: 2 type: Transform - - uid: 27871 + - uid: 27976 components: - pos: -10.5,-100.5 parent: 2 type: Transform - - uid: 27872 + - uid: 27977 components: - pos: -11.5,-100.5 parent: 2 type: Transform - - uid: 27873 + - uid: 27978 components: - pos: -11.5,-99.5 parent: 2 type: Transform - - uid: 27874 + - uid: 27979 components: - pos: -12.5,-99.5 parent: 2 type: Transform - - uid: 27875 + - uid: 27980 components: - pos: -3.5,-96.5 parent: 2 type: Transform - - uid: 27876 + - uid: 27981 components: - pos: -3.5,-99.5 parent: 2 type: Transform - - uid: 27877 + - uid: 27982 components: - pos: -39.5,-87.5 parent: 2 type: Transform - - uid: 27878 + - uid: 27983 components: - pos: -39.5,-88.5 parent: 2 type: Transform - - uid: 27879 + - uid: 27984 components: - pos: -44.5,-87.5 parent: 2 type: Transform - - uid: 27880 + - uid: 27985 components: - pos: -44.5,-88.5 parent: 2 type: Transform - - uid: 27881 + - uid: 27986 components: - pos: -32.5,-99.5 parent: 2 type: Transform - - uid: 27882 + - uid: 27987 components: - pos: -33.5,-99.5 parent: 2 type: Transform - - uid: 27883 + - uid: 27988 components: - pos: -34.5,-99.5 parent: 2 type: Transform - - uid: 27884 + - uid: 27989 components: - pos: -36.5,-99.5 parent: 2 type: Transform - - uid: 27885 + - uid: 27990 components: - pos: -38.5,-99.5 parent: 2 type: Transform - - uid: 27886 + - uid: 27991 components: - pos: -39.5,-99.5 parent: 2 type: Transform - - uid: 27887 + - uid: 27992 components: - pos: -34.5,-101.5 parent: 2 type: Transform - - uid: 27888 + - uid: 27993 components: - pos: -36.5,-101.5 parent: 2 type: Transform - - uid: 27889 + - uid: 27994 components: - pos: -6.5,-94.5 parent: 2 type: Transform - - uid: 27890 + - uid: 27995 components: - pos: -8.5,-94.5 parent: 2 type: Transform - - uid: 27891 + - uid: 27996 components: - pos: 66.5,-15.5 parent: 2 type: Transform - - uid: 27892 + - uid: 27997 components: - pos: 66.5,-16.5 parent: 2 type: Transform - - uid: 27893 + - uid: 27998 components: - pos: -39.5,-91.5 parent: 2 type: Transform - - uid: 27894 + - uid: 27999 components: - pos: -44.5,-91.5 parent: 2 type: Transform - - uid: 27895 + - uid: 28000 components: - rot: 1.5707963267948966 rad pos: -32.5,-95.5 parent: 2 type: Transform - - uid: 27896 + - uid: 28001 components: - rot: 1.5707963267948966 rad pos: -33.5,-95.5 parent: 2 type: Transform - - uid: 27897 + - uid: 28002 components: - rot: 1.5707963267948966 rad pos: -34.5,-95.5 parent: 2 type: Transform - - uid: 27898 + - uid: 28003 components: - rot: 1.5707963267948966 rad pos: -34.5,-94.5 parent: 2 type: Transform - - uid: 27899 + - uid: 28004 components: - rot: 1.5707963267948966 rad pos: -34.5,-93.5 parent: 2 type: Transform - - uid: 27900 + - uid: 28005 components: - rot: 1.5707963267948966 rad pos: -34.5,-92.5 parent: 2 type: Transform - - uid: 27901 + - uid: 28006 components: - rot: 1.5707963267948966 rad pos: -35.5,-92.5 parent: 2 type: Transform - - uid: 27902 + - uid: 28007 components: - rot: 1.5707963267948966 rad pos: -36.5,-92.5 parent: 2 type: Transform - - uid: 27903 + - uid: 28008 components: - rot: 1.5707963267948966 rad pos: -37.5,-92.5 parent: 2 type: Transform - - uid: 27904 + - uid: 28009 components: - rot: 1.5707963267948966 rad pos: -38.5,-92.5 parent: 2 type: Transform - - uid: 27905 + - uid: 28010 components: - rot: 1.5707963267948966 rad pos: -39.5,-92.5 parent: 2 type: Transform - - uid: 27906 + - uid: 28011 components: - rot: 1.5707963267948966 rad pos: -39.5,-98.5 parent: 2 type: Transform - - uid: 27907 + - uid: 28012 components: - rot: 1.5707963267948966 rad pos: -40.5,-98.5 parent: 2 type: Transform - - uid: 27908 + - uid: 28013 components: - rot: 1.5707963267948966 rad pos: -43.5,-98.5 parent: 2 type: Transform - - uid: 27909 + - uid: 28014 components: - rot: 1.5707963267948966 rad pos: -44.5,-97.5 parent: 2 type: Transform - - uid: 27910 + - uid: 28015 components: - rot: 1.5707963267948966 rad pos: -44.5,-98.5 parent: 2 type: Transform - - uid: 27911 + - uid: 28016 components: - rot: 1.5707963267948966 rad pos: -44.5,-94.5 parent: 2 type: Transform - - uid: 27912 + - uid: 28017 components: - rot: 1.5707963267948966 rad pos: -44.5,-93.5 parent: 2 type: Transform - - uid: 27913 + - uid: 28018 components: - rot: 1.5707963267948966 rad pos: -44.5,-92.5 parent: 2 type: Transform - - uid: 27914 + - uid: 28019 components: - pos: -20.5,-101.5 parent: 2 type: Transform - - uid: 27915 + - uid: 28020 components: - pos: -24.5,-101.5 parent: 2 type: Transform - - uid: 27916 + - uid: 28021 components: - pos: -75.5,-28.5 parent: 2 type: Transform - - uid: 27917 + - uid: 28022 components: - pos: -75.5,-29.5 parent: 2 type: Transform - - uid: 27918 + - uid: 28023 components: - pos: -75.5,-30.5 parent: 2 type: Transform - - uid: 27919 + - uid: 28024 components: - pos: -75.5,-32.5 parent: 2 type: Transform - - uid: 27920 + - uid: 28025 components: - pos: -77.5,-32.5 parent: 2 type: Transform - - uid: 27921 + - uid: 28026 components: - pos: -69.5,-33.5 parent: 2 type: Transform - - uid: 27922 + - uid: 28027 components: - pos: -70.5,-33.5 parent: 2 type: Transform - - uid: 27923 + - uid: 28028 components: - pos: -71.5,-33.5 parent: 2 type: Transform - - uid: 27924 + - uid: 28029 components: - pos: -74.5,-33.5 parent: 2 type: Transform - - uid: 27925 + - uid: 28030 components: - pos: -75.5,-33.5 parent: 2 type: Transform - - uid: 27926 + - uid: 28031 components: - pos: 70.5,-39.5 parent: 2 type: Transform - - uid: 27927 + - uid: 28032 components: - pos: 71.5,-39.5 parent: 2 type: Transform - - uid: 27928 + - uid: 28033 components: - rot: -1.5707963267948966 rad pos: 65.5,-39.5 parent: 2 type: Transform - - uid: 27929 + - uid: 28034 components: - rot: -1.5707963267948966 rad pos: 74.5,-29.5 parent: 2 type: Transform - - uid: 27930 + - uid: 28035 components: - rot: -1.5707963267948966 rad pos: 69.5,-39.5 parent: 2 type: Transform - - uid: 27931 + - uid: 28036 components: - pos: 29.5,34.5 parent: 2 type: Transform - - uid: 27932 + - uid: 28037 components: - rot: -1.5707963267948966 rad pos: 77.5,-50.5 parent: 2 type: Transform - - uid: 27933 + - uid: 28038 components: - rot: -1.5707963267948966 rad pos: 53.5,-68.5 parent: 2 type: Transform - - uid: 27934 + - uid: 28039 components: - rot: -1.5707963267948966 rad pos: 46.5,-66.5 parent: 2 type: Transform - - uid: 27935 + - uid: 28040 components: - rot: -1.5707963267948966 rad pos: 49.5,-64.5 parent: 2 type: Transform - - uid: 27936 + - uid: 28041 components: - rot: -1.5707963267948966 rad pos: 52.5,-64.5 parent: 2 type: Transform - - uid: 27937 + - uid: 28042 components: - rot: -1.5707963267948966 rad pos: 47.5,-64.5 parent: 2 type: Transform - - uid: 27938 + - uid: 28043 components: - rot: -1.5707963267948966 rad pos: 45.5,-66.5 parent: 2 type: Transform - - uid: 27939 + - uid: 28044 components: - pos: 66.5,-67.5 parent: 2 type: Transform - - uid: 27940 + - uid: 28045 components: - pos: 65.5,-67.5 parent: 2 type: Transform - - uid: 27941 + - uid: 28046 components: - pos: 65.5,-68.5 parent: 2 type: Transform - - uid: 27942 + - uid: 28047 components: - pos: 64.5,-68.5 parent: 2 type: Transform - - uid: 27943 + - uid: 28048 components: - pos: 63.5,-69.5 parent: 2 type: Transform - - uid: 27944 + - uid: 28049 components: - pos: 69.5,-50.5 parent: 2 type: Transform - - uid: 27945 + - uid: 28050 components: - rot: -1.5707963267948966 rad pos: 70.5,-27.5 parent: 2 type: Transform - - uid: 27946 + - uid: 28051 components: - rot: -1.5707963267948966 rad pos: 52.5,-68.5 parent: 2 type: Transform - - uid: 27947 + - uid: 28052 components: - rot: -1.5707963267948966 rad pos: 47.5,-66.5 parent: 2 type: Transform - - uid: 27948 + - uid: 28053 components: - rot: -1.5707963267948966 rad pos: 49.5,-68.5 parent: 2 type: Transform - - uid: 27949 + - uid: 28054 components: - rot: -1.5707963267948966 rad pos: 76.5,-50.5 parent: 2 type: Transform - - uid: 27950 + - uid: 28055 components: - rot: -1.5707963267948966 rad pos: 48.5,-67.5 parent: 2 type: Transform - - uid: 27951 + - uid: 28056 components: - rot: -1.5707963267948966 rad pos: 48.5,-64.5 parent: 2 type: Transform - - uid: 27952 + - uid: 28057 components: - rot: -1.5707963267948966 rad pos: 49.5,-67.5 parent: 2 type: Transform - - uid: 27953 + - uid: 28058 components: - rot: -1.5707963267948966 rad pos: 51.5,-64.5 parent: 2 type: Transform - - uid: 27954 + - uid: 28059 components: - pos: 7.5,-38.5 parent: 2 type: Transform - - uid: 27955 + - uid: 28060 components: - rot: 3.141592653589793 rad pos: 74.5,-28.5 parent: 2 type: Transform - - uid: 27956 + - uid: 28061 components: - rot: 3.141592653589793 rad pos: 70.5,-28.5 parent: 2 type: Transform - - uid: 27957 + - uid: 28062 components: - pos: 5.5,-36.5 parent: 2 type: Transform - - uid: 27958 + - uid: 28063 components: - pos: 1.5,-36.5 parent: 2 type: Transform - - uid: 27959 + - uid: 28064 components: - pos: 5.5,-37.5 parent: 2 type: Transform - - uid: 27960 + - uid: 28065 components: - pos: 4.5,-36.5 parent: 2 type: Transform - - uid: 27961 + - uid: 28066 components: - pos: 6.5,-37.5 parent: 2 type: Transform - - uid: 27962 + - uid: 28067 components: - pos: 63.5,-70.5 parent: 2 type: Transform - - uid: 27963 + - uid: 28068 components: - pos: 1.5,-35.5 parent: 2 type: Transform - - uid: 27964 + - uid: 28069 components: - pos: 66.5,-60.5 parent: 2 type: Transform - - uid: 27965 + - uid: 28070 components: - pos: 76.5,-52.5 parent: 2 type: Transform - - uid: 27966 + - uid: 28071 components: - pos: 76.5,-51.5 parent: 2 type: Transform - - uid: 27967 + - uid: 28072 components: - pos: 73.5,-51.5 parent: 2 type: Transform - - uid: 27968 + - uid: 28073 components: - pos: 73.5,-53.5 parent: 2 type: Transform - - uid: 27969 + - uid: 28074 components: - pos: 75.5,-57.5 parent: 2 type: Transform - - uid: 27970 + - uid: 28075 components: - pos: 76.5,-57.5 parent: 2 type: Transform - - uid: 27971 + - uid: 28076 components: - pos: 68.5,-55.5 parent: 2 type: Transform - - uid: 27972 + - uid: 28077 components: - rot: 1.5707963267948966 rad pos: -53.5,-57.5 parent: 2 type: Transform - - uid: 27973 + - uid: 28078 components: - rot: 1.5707963267948966 rad pos: -52.5,-57.5 parent: 2 type: Transform - - uid: 27974 + - uid: 28079 components: - rot: 1.5707963267948966 rad pos: -51.5,-57.5 parent: 2 type: Transform - - uid: 27975 + - uid: 28080 components: - rot: 1.5707963267948966 rad pos: -50.5,-57.5 parent: 2 type: Transform - - uid: 27976 + - uid: 28081 components: - rot: 1.5707963267948966 rad pos: -50.5,-59.5 parent: 2 type: Transform - - uid: 27977 + - uid: 28082 components: - rot: 1.5707963267948966 rad pos: -51.5,-59.5 parent: 2 type: Transform - - uid: 27978 + - uid: 28083 components: - rot: 1.5707963267948966 rad pos: -52.5,-59.5 parent: 2 type: Transform - - uid: 27979 + - uid: 28084 components: - rot: 1.5707963267948966 rad pos: -52.5,-61.5 parent: 2 type: Transform - - uid: 27980 + - uid: 28085 components: - rot: 1.5707963267948966 rad pos: -57.5,-63.5 parent: 2 type: Transform - - uid: 27981 + - uid: 28086 components: - rot: 1.5707963267948966 rad pos: -56.5,-63.5 parent: 2 type: Transform - - uid: 27982 + - uid: 28087 components: - pos: 13.5,-37.5 parent: 2 type: Transform - - uid: 27983 + - uid: 28088 components: - pos: 59.5,-69.5 parent: 2 type: Transform - - uid: 27984 + - uid: 28089 components: - pos: 9.5,-32.5 parent: 2 type: Transform - - uid: 27985 + - uid: 28090 components: - rot: 1.5707963267948966 rad pos: 65.5,-42.5 parent: 2 type: Transform - - uid: 27986 + - uid: 28091 components: - pos: 10.5,-39.5 parent: 2 type: Transform - - uid: 27987 + - uid: 28092 components: - rot: -1.5707963267948966 rad pos: 7.5,-40.5 parent: 2 type: Transform - - uid: 27988 + - uid: 28093 components: - pos: 47.5,-32.5 parent: 2 type: Transform - - uid: 27989 + - uid: 28094 components: - pos: 69.5,-68.5 parent: 2 type: Transform - - uid: 27990 + - uid: 28095 components: - pos: 64.5,-69.5 parent: 2 type: Transform - - uid: 27991 + - uid: 28096 components: - pos: 59.5,-70.5 parent: 2 type: Transform - - uid: 27992 + - uid: 28097 components: - pos: 58.5,-69.5 parent: 2 type: Transform - - uid: 27993 + - uid: 28098 components: - pos: 67.5,-68.5 parent: 2 type: Transform - - uid: 27994 + - uid: 28099 components: - pos: 67.5,-69.5 parent: 2 type: Transform - - uid: 27995 + - uid: 28100 components: - pos: 76.5,-56.5 parent: 2 type: Transform - - uid: 27996 + - uid: 28101 components: - pos: 76.5,-55.5 parent: 2 type: Transform - - uid: 27997 + - uid: 28102 components: - pos: 76.5,-54.5 parent: 2 type: Transform - - uid: 27998 + - uid: 28103 components: - pos: 76.5,-53.5 parent: 2 type: Transform - - uid: 27999 + - uid: 28104 components: - rot: 3.141592653589793 rad pos: 48.5,3.5 parent: 2 type: Transform - - uid: 28000 + - uid: 28105 components: - pos: -45.5,-37.5 parent: 2 type: Transform - - uid: 28001 + - uid: 28106 components: - rot: 1.5707963267948966 rad pos: 32.5,20.5 parent: 2 type: Transform - - uid: 28002 + - uid: 28107 components: - rot: 1.5707963267948966 rad pos: 46.5,-88.5 parent: 2 type: Transform - - uid: 28003 + - uid: 28108 components: - pos: 35.5,-75.5 parent: 2 type: Transform - - uid: 28004 + - uid: 28109 components: - pos: 8.5,-84.5 parent: 2 type: Transform - - uid: 28005 + - uid: 28110 components: - pos: 7.5,-84.5 parent: 2 type: Transform - - uid: 28006 + - uid: 28111 components: - pos: 7.5,-85.5 parent: 2 type: Transform - - uid: 28007 + - uid: 28112 components: - pos: 9.5,-84.5 parent: 2 type: Transform - - uid: 28008 + - uid: 28113 components: - pos: 7.5,-86.5 parent: 2 type: Transform - - uid: 28009 + - uid: 28114 components: - pos: 5.5,-84.5 parent: 2 type: Transform - - uid: 28010 + - uid: 28115 components: - pos: 5.5,-85.5 parent: 2 type: Transform - - uid: 28011 + - uid: 28116 components: - pos: 5.5,-86.5 parent: 2 type: Transform - - uid: 28012 + - uid: 28117 components: - pos: 5.5,-81.5 parent: 2 type: Transform - - uid: 28013 + - uid: 28118 components: - pos: 5.5,-83.5 parent: 2 type: Transform - - uid: 28014 + - uid: 28119 components: - rot: 1.5707963267948966 rad pos: 47.5,-70.5 parent: 2 type: Transform - - uid: 28015 + - uid: 28120 components: - rot: 1.5707963267948966 rad pos: 28.5,-77.5 parent: 2 type: Transform - - uid: 28016 + - uid: 28121 components: - pos: 27.5,-75.5 parent: 2 type: Transform - - uid: 28017 + - uid: 28122 components: - rot: -1.5707963267948966 rad pos: 43.5,-75.5 parent: 2 type: Transform - - uid: 28018 + - uid: 28123 components: - pos: 64.5,-41.5 parent: 2 type: Transform - - uid: 28019 + - uid: 28124 components: - pos: -47.5,-37.5 parent: 2 type: Transform - - uid: 28020 + - uid: 28125 components: - pos: -47.5,-36.5 parent: 2 type: Transform - - uid: 28021 + - uid: 28126 components: - pos: -51.5,-34.5 parent: 2 type: Transform - - uid: 28022 + - uid: 28127 components: - pos: -51.5,-35.5 parent: 2 type: Transform - - uid: 28023 + - uid: 28128 components: - pos: -51.5,-38.5 parent: 2 type: Transform - - uid: 28024 + - uid: 28129 components: - pos: -51.5,-39.5 parent: 2 type: Transform - - uid: 28025 + - uid: 28130 components: - pos: -51.5,-40.5 parent: 2 type: Transform - - uid: 28026 + - uid: 28131 components: - rot: -1.5707963267948966 rad pos: -75.5,-12.5 parent: 2 type: Transform - - uid: 28027 + - uid: 28132 components: - rot: 1.5707963267948966 rad pos: 26.5,-86.5 parent: 2 type: Transform - - uid: 28028 + - uid: 28133 components: - rot: -1.5707963267948966 rad pos: 31.5,-93.5 parent: 2 type: Transform - - uid: 28029 + - uid: 28134 components: - rot: -1.5707963267948966 rad pos: 28.5,-91.5 parent: 2 type: Transform - - uid: 28030 + - uid: 28135 components: - rot: -1.5707963267948966 rad pos: 32.5,-92.5 parent: 2 type: Transform - - uid: 28031 + - uid: 28136 components: - rot: -1.5707963267948966 rad pos: 32.5,-91.5 parent: 2 type: Transform - - uid: 28032 + - uid: 28137 components: - rot: 1.5707963267948966 rad pos: 50.5,-70.5 parent: 2 type: Transform - - uid: 28033 + - uid: 28138 components: - rot: -1.5707963267948966 rad pos: 46.5,-75.5 parent: 2 type: Transform - - uid: 28034 + - uid: 28139 components: - rot: 1.5707963267948966 rad pos: 24.5,-75.5 parent: 2 type: Transform - - uid: 28035 + - uid: 28140 components: - rot: 1.5707963267948966 rad pos: 50.5,-76.5 parent: 2 type: Transform - - uid: 28036 + - uid: 28141 components: - rot: 1.5707963267948966 rad pos: 50.5,-78.5 parent: 2 type: Transform - - uid: 28037 + - uid: 28142 components: - rot: 1.5707963267948966 rad pos: 50.5,-79.5 parent: 2 type: Transform - - uid: 28038 + - uid: 28143 components: - pos: 49.5,-94.5 parent: 2 type: Transform - - uid: 28039 + - uid: 28144 components: - pos: 46.5,-91.5 parent: 2 type: Transform - - uid: 28040 + - uid: 28145 components: - pos: 47.5,-93.5 parent: 2 type: Transform - - uid: 28041 + - uid: 28146 components: - pos: 46.5,-93.5 parent: 2 type: Transform - - uid: 28042 + - uid: 28147 components: - pos: 50.5,-91.5 parent: 2 type: Transform - - uid: 28043 + - uid: 28148 components: - rot: -1.5707963267948966 rad pos: 23.5,-80.5 parent: 2 type: Transform - - uid: 28044 + - uid: 28149 components: - rot: 1.5707963267948966 rad pos: 50.5,-77.5 parent: 2 type: Transform - - uid: 28045 + - uid: 28150 components: - rot: 1.5707963267948966 rad pos: 50.5,-84.5 parent: 2 type: Transform - - uid: 28046 + - uid: 28151 components: - pos: 49.5,-95.5 parent: 2 type: Transform - - uid: 28047 + - uid: 28152 components: - pos: 47.5,-95.5 parent: 2 type: Transform - - uid: 28048 + - uid: 28153 components: - pos: 46.5,-92.5 parent: 2 type: Transform - - uid: 28049 + - uid: 28154 components: - pos: 50.5,-93.5 parent: 2 type: Transform - - uid: 28050 + - uid: 28155 components: - pos: 49.5,-93.5 parent: 2 type: Transform - - uid: 28051 + - uid: 28156 components: - rot: -1.5707963267948966 rad pos: 26.5,-80.5 parent: 2 type: Transform - - uid: 28052 + - uid: 28157 components: - rot: -1.5707963267948966 rad pos: 26.5,-79.5 parent: 2 type: Transform - - uid: 28053 + - uid: 28158 components: - rot: 1.5707963267948966 rad pos: 51.5,-74.5 parent: 2 type: Transform - - uid: 28054 + - uid: 28159 components: - rot: 1.5707963267948966 rad pos: 51.5,-70.5 parent: 2 type: Transform - - uid: 28055 + - uid: 28160 components: - pos: 47.5,-94.5 parent: 2 type: Transform - - uid: 28056 + - uid: 28161 components: - rot: -1.5707963267948966 rad pos: 28.5,-92.5 parent: 2 type: Transform - - uid: 28057 + - uid: 28162 components: - rot: -1.5707963267948966 rad pos: 2.5,-76.5 parent: 2 type: Transform - - uid: 28058 + - uid: 28163 components: - pos: 5.5,-76.5 parent: 2 type: Transform - - uid: 28059 + - uid: 28164 components: - rot: -1.5707963267948966 rad pos: 34.5,-74.5 parent: 2 type: Transform - - uid: 28060 + - uid: 28165 components: - rot: -1.5707963267948966 rad pos: 34.5,-81.5 parent: 2 type: Transform - - uid: 28061 + - uid: 28166 components: - rot: 1.5707963267948966 rad pos: 44.5,-90.5 parent: 2 type: Transform - - uid: 28062 + - uid: 28167 components: - rot: 1.5707963267948966 rad pos: 44.5,-88.5 parent: 2 type: Transform - - uid: 28063 + - uid: 28168 components: - pos: 8.5,-79.5 parent: 2 type: Transform - - uid: 28064 + - uid: 28169 components: - pos: 8.5,-80.5 parent: 2 type: Transform - - uid: 28065 + - uid: 28170 components: - pos: 50.5,-92.5 parent: 2 type: Transform - - uid: 28066 + - uid: 28171 components: - rot: 3.141592653589793 rad pos: 27.5,-67.5 parent: 2 type: Transform - - uid: 28067 + - uid: 28172 components: - rot: 3.141592653589793 rad pos: 24.5,-67.5 parent: 2 type: Transform - - uid: 28068 + - uid: 28173 components: - rot: 3.141592653589793 rad pos: 24.5,-68.5 parent: 2 type: Transform - - uid: 28069 + - uid: 28174 components: - rot: 3.141592653589793 rad pos: 27.5,-68.5 parent: 2 type: Transform - - uid: 28070 + - uid: 28175 components: - rot: -1.5707963267948966 rad pos: 32.5,-74.5 parent: 2 type: Transform - - uid: 28071 + - uid: 28176 components: - rot: -1.5707963267948966 rad pos: 28.5,-79.5 parent: 2 type: Transform - - uid: 28072 + - uid: 28177 components: - rot: -1.5707963267948966 rad pos: 33.5,-74.5 parent: 2 type: Transform - - uid: 28073 + - uid: 28178 components: - rot: 1.5707963267948966 rad pos: 50.5,-74.5 parent: 2 type: Transform - - uid: 28074 + - uid: 28179 components: - rot: 1.5707963267948966 rad pos: 45.5,-88.5 parent: 2 type: Transform - - uid: 28075 + - uid: 28180 components: - pos: 7.5,-74.5 parent: 2 type: Transform - - uid: 28076 + - uid: 28181 components: - pos: 7.5,-76.5 parent: 2 type: Transform - - uid: 28077 + - uid: 28182 components: - pos: 7.5,-72.5 parent: 2 type: Transform - - uid: 28078 + - uid: 28183 components: - pos: 10.5,-81.5 parent: 2 type: Transform - - uid: 28079 + - uid: 28184 components: - pos: 10.5,-82.5 parent: 2 type: Transform - - uid: 28080 + - uid: 28185 components: - pos: 10.5,-84.5 parent: 2 type: Transform - - uid: 28081 + - uid: 28186 components: - pos: 10.5,-85.5 parent: 2 type: Transform - - uid: 28082 + - uid: 28187 components: - pos: 5.5,-77.5 parent: 2 type: Transform - - uid: 28083 + - uid: 28188 components: - pos: 8.5,-78.5 parent: 2 type: Transform - - uid: 28084 + - uid: 28189 components: - rot: 1.5707963267948966 rad pos: 50.5,-87.5 parent: 2 type: Transform - - uid: 28085 + - uid: 28190 components: - rot: 1.5707963267948966 rad pos: 50.5,-80.5 parent: 2 type: Transform - - uid: 28086 + - uid: 28191 components: - rot: -1.5707963267948966 rad pos: 32.5,-81.5 parent: 2 type: Transform - - uid: 28087 + - uid: 28192 components: - rot: -1.5707963267948966 rad pos: 32.5,-76.5 parent: 2 type: Transform - - uid: 28088 + - uid: 28193 components: - rot: -1.5707963267948966 rad pos: 32.5,-83.5 parent: 2 type: Transform - - uid: 28089 + - uid: 28194 components: - rot: 3.141592653589793 rad pos: 3.5,-20.5 parent: 2 type: Transform - - uid: 28090 + - uid: 28195 components: - rot: 3.141592653589793 rad pos: 3.5,-22.5 parent: 2 type: Transform - - uid: 28091 + - uid: 28196 components: - rot: 3.141592653589793 rad pos: 3.5,-23.5 parent: 2 type: Transform - - uid: 28092 + - uid: 28197 components: - rot: 3.141592653589793 rad pos: 3.5,-21.5 parent: 2 type: Transform - - uid: 28093 + - uid: 28198 components: - rot: 3.141592653589793 rad pos: 3.5,-19.5 parent: 2 type: Transform - - uid: 28094 + - uid: 28199 components: - rot: 3.141592653589793 rad pos: 39.5,13.5 parent: 2 type: Transform - - uid: 28095 + - uid: 28200 components: - rot: 3.141592653589793 rad pos: 37.5,13.5 parent: 2 type: Transform - - uid: 28096 + - uid: 28201 components: - rot: 3.141592653589793 rad pos: 38.5,13.5 parent: 2 type: Transform - - uid: 28097 + - uid: 28202 components: - rot: 3.141592653589793 rad pos: 47.5,8.5 parent: 2 type: Transform - - uid: 28098 + - uid: 28203 components: - pos: 8.5,-81.5 parent: 2 type: Transform - - uid: 28099 + - uid: 28204 components: - pos: 8.5,-82.5 parent: 2 type: Transform - - uid: 28100 + - uid: 28205 components: - pos: 9.5,-82.5 parent: 2 type: Transform - - uid: 28101 + - uid: 28206 components: - rot: -1.5707963267948966 rad pos: 3.5,-76.5 parent: 2 type: Transform - - uid: 28102 + - uid: 28207 components: - rot: -1.5707963267948966 rad pos: 4.5,-76.5 parent: 2 type: Transform - - uid: 28103 + - uid: 28208 components: - rot: -1.5707963267948966 rad pos: -44.5,45.5 parent: 2 type: Transform - - uid: 28104 + - uid: 28209 components: - rot: -1.5707963267948966 rad pos: -51.5,45.5 parent: 2 type: Transform - - uid: 28105 + - uid: 28210 components: - rot: -1.5707963267948966 rad pos: -44.5,44.5 parent: 2 type: Transform - - uid: 28106 + - uid: 28211 components: - rot: -1.5707963267948966 rad pos: -44.5,43.5 parent: 2 type: Transform - - uid: 28107 + - uid: 28212 components: - rot: -1.5707963267948966 rad pos: -44.5,42.5 parent: 2 type: Transform - - uid: 28108 + - uid: 28213 components: - rot: -1.5707963267948966 rad pos: -44.5,41.5 parent: 2 type: Transform - - uid: 28109 + - uid: 28214 components: - pos: 65.5,-26.5 parent: 2 type: Transform - - uid: 28110 + - uid: 28215 components: - pos: 68.5,-26.5 parent: 2 type: Transform - - uid: 28111 + - uid: 28216 components: - pos: 69.5,-26.5 parent: 2 type: Transform - - uid: 28112 - components: - - pos: -0.5,-23.5 - parent: 2 - type: Transform - - uid: 28113 - components: - - pos: -0.5,-22.5 - parent: 2 - type: Transform - - uid: 28114 + - uid: 28217 components: - pos: -17.5,-83.5 parent: 2 type: Transform - - uid: 28115 + - uid: 28218 components: - rot: -1.5707963267948966 rad pos: -1.5,16.5 parent: 2 type: Transform - - uid: 28116 + - uid: 28219 components: - pos: -65.5,-47.5 parent: 2 type: Transform - - uid: 28117 + - uid: 28220 components: - pos: -66.5,-47.5 parent: 2 type: Transform - - uid: 28118 + - uid: 28221 components: - pos: -67.5,-47.5 parent: 2 type: Transform - - uid: 28119 + - uid: 28222 components: - pos: -71.5,-47.5 parent: 2 type: Transform - - uid: 28120 + - uid: 28223 components: - pos: -72.5,-47.5 parent: 2 type: Transform - - uid: 28121 + - uid: 28224 components: - pos: -73.5,-47.5 parent: 2 type: Transform - - uid: 28122 + - uid: 28225 components: - pos: -74.5,-47.5 parent: 2 type: Transform - - uid: 28123 + - uid: 28226 components: - rot: -1.5707963267948966 rad pos: -68.5,-33.5 parent: 2 type: Transform - - uid: 28124 + - uid: 28227 components: - rot: -1.5707963267948966 rad pos: -63.5,-46.5 parent: 2 type: Transform - - uid: 28125 + - uid: 28228 components: - rot: -1.5707963267948966 rad pos: -62.5,-46.5 parent: 2 type: Transform - - uid: 28126 + - uid: 28229 components: - rot: -1.5707963267948966 rad pos: -62.5,-44.5 parent: 2 type: Transform - - uid: 28127 + - uid: 28230 components: - pos: -78.5,-46.5 parent: 2 type: Transform - - uid: 28128 + - uid: 28231 components: - pos: -78.5,-47.5 parent: 2 type: Transform - - uid: 28129 + - uid: 28232 components: - pos: -77.5,-47.5 parent: 2 type: Transform - - uid: 28130 + - uid: 28233 components: - pos: -76.5,-47.5 parent: 2 type: Transform - - uid: 28131 + - uid: 28234 components: - pos: -75.5,-47.5 parent: 2 type: Transform - - uid: 28132 + - uid: 28235 components: - pos: -49.5,-26.5 parent: 2 type: Transform - - uid: 28133 + - uid: 28236 components: - pos: -50.5,-26.5 parent: 2 type: Transform - - uid: 28134 + - uid: 28237 components: - rot: -1.5707963267948966 rad pos: -63.5,-34.5 parent: 2 type: Transform - - uid: 28135 + - uid: 28238 components: - rot: 1.5707963267948966 rad pos: -63.5,-35.5 parent: 2 type: Transform - - uid: 28136 + - uid: 28239 components: - rot: 3.141592653589793 rad pos: -60.5,-44.5 parent: 2 type: Transform + - uid: 28240 + components: + - pos: 6.5,-3.5 + parent: 2 + type: Transform + - uid: 28241 + components: + - pos: 19.5,-27.5 + parent: 2 + type: Transform + - uid: 28242 + components: + - pos: 5.5,-3.5 + parent: 2 + type: Transform + - uid: 28243 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-38.5 + parent: 2 + type: Transform + - uid: 28244 + components: + - pos: 6.5,-8.5 + parent: 2 + type: Transform + - uid: 28245 + components: + - pos: 19.5,-28.5 + parent: 2 + type: Transform - proto: WallShuttle entities: - - uid: 28137 + - uid: 28246 components: - rot: -1.5707963267948966 rad pos: -74.5,-57.5 parent: 2 type: Transform - - uid: 28138 + - uid: 28247 components: - rot: -1.5707963267948966 rad pos: -64.5,-56.5 parent: 2 type: Transform - - uid: 28139 + - uid: 28248 components: - rot: -1.5707963267948966 rad pos: -64.5,-57.5 parent: 2 type: Transform - - uid: 28140 + - uid: 28249 components: - rot: 1.5707963267948966 rad pos: -76.5,-51.5 parent: 2 type: Transform - - uid: 28141 + - uid: 28250 components: - rot: -1.5707963267948966 rad pos: -65.5,-57.5 parent: 2 type: Transform - - uid: 28142 + - uid: 28251 components: - rot: -1.5707963267948966 rad pos: -63.5,-57.5 parent: 2 type: Transform - - uid: 28143 + - uid: 28252 components: - rot: -1.5707963267948966 rad pos: -70.5,-57.5 parent: 2 type: Transform - - uid: 28144 + - uid: 28253 components: - rot: 1.5707963267948966 rad pos: -75.5,-55.5 parent: 2 type: Transform - - uid: 28145 + - uid: 28254 components: - rot: -1.5707963267948966 rad pos: -64.5,-54.5 parent: 2 type: Transform - - uid: 28146 + - uid: 28255 components: - rot: -1.5707963267948966 rad pos: -64.5,-51.5 parent: 2 type: Transform - - uid: 28147 + - uid: 28256 components: - rot: -1.5707963267948966 rad pos: -64.5,-53.5 parent: 2 type: Transform - - uid: 28148 + - uid: 28257 components: - rot: 1.5707963267948966 rad pos: -75.5,-51.5 parent: 2 type: Transform - - uid: 28149 + - uid: 28258 components: - rot: -1.5707963267948966 rad pos: -63.5,-50.5 parent: 2 type: Transform - - uid: 28150 + - uid: 28259 components: - rot: 1.5707963267948966 rad pos: -65.5,-50.5 parent: 2 type: Transform - - uid: 28151 + - uid: 28260 components: - rot: 1.5707963267948966 rad pos: -64.5,-50.5 parent: 2 type: Transform - - uid: 28152 + - uid: 28261 components: - rot: 1.5707963267948966 rad pos: -74.5,-50.5 parent: 2 type: Transform - - uid: 28153 + - uid: 28262 components: - rot: -1.5707963267948966 rad pos: -64.5,-55.5 parent: 2 type: Transform - - uid: 28154 + - uid: 28263 components: - rot: -1.5707963267948966 rad pos: -67.5,-55.5 parent: 2 type: Transform - - uid: 28155 + - uid: 28264 components: - rot: 1.5707963267948966 rad pos: -70.5,-50.5 parent: 2 type: Transform - - uid: 28156 + - uid: 28265 components: - rot: 1.5707963267948966 rad pos: -68.5,-51.5 parent: 2 type: Transform - - uid: 28157 + - uid: 28266 components: - rot: 1.5707963267948966 rad pos: -67.5,-51.5 parent: 2 type: Transform - - uid: 28158 + - uid: 28267 components: - rot: -1.5707963267948966 rad pos: -64.5,-52.5 parent: 2 type: Transform - - uid: 28159 + - uid: 28268 components: - rot: 1.5707963267948966 rad pos: -75.5,-56.5 parent: 2 type: Transform - - uid: 28160 + - uid: 28269 components: - rot: 1.5707963267948966 rad pos: -75.5,-52.5 parent: 2 type: Transform - - uid: 28161 + - uid: 28270 components: - rot: 1.5707963267948966 rad pos: -76.5,-56.5 parent: 2 type: Transform - - uid: 28162 + - uid: 28271 components: - rot: 1.5707963267948966 rad pos: -67.5,-52.5 parent: 2 type: Transform - - uid: 28163 + - uid: 28272 components: - rot: -1.5707963267948966 rad pos: -68.5,-56.5 parent: 2 type: Transform - - uid: 28164 + - uid: 28273 components: - rot: -1.5707963267948966 rad pos: -67.5,-56.5 @@ -189069,11892 +190336,11894 @@ entities: type: Transform - proto: WallShuttleDiagonal entities: - - uid: 28165 + - uid: 28274 components: - rot: 3.141592653589793 rad pos: -79.5,-52.5 parent: 2 type: Transform - - uid: 28166 + - uid: 28275 components: - pos: -80.5,-52.5 parent: 2 type: Transform - - uid: 28167 + - uid: 28276 components: - rot: 1.5707963267948966 rad pos: -75.5,-57.5 parent: 2 type: Transform - - uid: 28168 + - uid: 28277 components: - rot: 1.5707963267948966 rad pos: -66.5,-57.5 parent: 2 type: Transform - - uid: 28169 + - uid: 28278 components: - rot: 1.5707963267948966 rad pos: -80.5,-55.5 parent: 2 type: Transform - - uid: 28170 + - uid: 28279 components: - rot: 3.141592653589793 rad pos: -69.5,-57.5 parent: 2 type: Transform - - uid: 28171 + - uid: 28280 components: - rot: -1.5707963267948966 rad pos: -79.5,-55.5 parent: 2 type: Transform - - uid: 28172 + - uid: 28281 components: - pos: -75.5,-50.5 parent: 2 type: Transform - - uid: 28173 + - uid: 28282 components: - rot: -1.5707963267948966 rad pos: -69.5,-50.5 parent: 2 type: Transform - - uid: 28174 + - uid: 28283 components: - pos: -66.5,-50.5 parent: 2 type: Transform - - uid: 28175 + - uid: 28284 components: - rot: 1.5707963267948966 rad pos: -79.5,-56.5 parent: 2 type: Transform - - uid: 28176 + - uid: 28285 components: - rot: 1.5707963267948966 rad pos: -69.5,-51.5 parent: 2 type: Transform - - uid: 28177 + - uid: 28286 components: - rot: -1.5707963267948966 rad pos: -66.5,-56.5 parent: 2 type: Transform - - uid: 28178 + - uid: 28287 components: - rot: 3.141592653589793 rad pos: -66.5,-51.5 parent: 2 type: Transform - - uid: 28179 + - uid: 28288 components: - pos: -79.5,-51.5 parent: 2 type: Transform - - uid: 28180 + - uid: 28289 components: - pos: -69.5,-56.5 parent: 2 type: Transform - proto: WallSolid entities: - - uid: 10117 + - uid: 28290 components: - - pos: 0.5,-10.5 + - rot: -1.5707963267948966 rad + pos: 2.5,-10.5 parent: 2 type: Transform - - uid: 10128 + - uid: 28291 components: - - pos: 2.5,-7.5 + - rot: -1.5707963267948966 rad + pos: 2.5,-12.5 parent: 2 type: Transform - - uid: 11941 + - uid: 28292 components: - - pos: -34.5,-19.5 + - rot: -1.5707963267948966 rad + pos: 2.5,-11.5 parent: 2 type: Transform - - uid: 13019 + - uid: 28293 components: - - pos: 0.5,-12.5 + - rot: -1.5707963267948966 rad + pos: 8.5,-15.5 parent: 2 type: Transform - - uid: 13074 + - uid: 28294 components: - - pos: 5.5,-10.5 + - rot: -1.5707963267948966 rad + pos: 1.5,-11.5 parent: 2 type: Transform - - uid: 13144 + - uid: 28295 components: - - pos: 0.5,-11.5 + - rot: -1.5707963267948966 rad + pos: 6.5,-12.5 parent: 2 type: Transform - - uid: 15706 + - uid: 28296 components: - - pos: -37.5,-19.5 + - pos: 0.5,-24.5 parent: 2 type: Transform - - uid: 20288 + - uid: 28297 components: - - pos: 0.5,-9.5 + - pos: 1.5,-24.5 parent: 2 type: Transform - - uid: 20885 + - uid: 28298 components: - - pos: -35.5,-19.5 + - pos: -1.5,-18.5 parent: 2 type: Transform - - uid: 20994 + - uid: 28299 components: - - rot: 1.5707963267948966 rad - pos: 2.5,-4.5 + - pos: -0.5,-24.5 parent: 2 type: Transform - - uid: 21035 + - uid: 28300 components: - - rot: 1.5707963267948966 rad - pos: 3.5,-4.5 + - pos: 2.5,-18.5 parent: 2 type: Transform - - uid: 21168 + - uid: 28301 components: - - rot: 1.5707963267948966 rad - pos: 4.5,-4.5 + - pos: 1.5,-18.5 parent: 2 type: Transform - - uid: 21606 + - uid: 28302 components: - - rot: 1.5707963267948966 rad - pos: 5.5,-4.5 + - pos: -2.5,-20.5 parent: 2 type: Transform - - uid: 21932 + - uid: 28303 + components: + - pos: -0.5,-18.5 + parent: 2 + type: Transform + - uid: 28304 + components: + - pos: -2.5,-24.5 + parent: 2 + type: Transform + - uid: 28305 + components: + - pos: -2.5,-23.5 + parent: 2 + type: Transform + - uid: 28306 + components: + - pos: -2.5,-21.5 + parent: 2 + type: Transform + - uid: 28307 + components: + - pos: -2.5,-22.5 + parent: 2 + type: Transform + - uid: 28308 components: - rot: -1.5707963267948966 rad - pos: -2.5,-8.5 + pos: -1.5,-10.5 parent: 2 type: Transform - - uid: 23071 + - uid: 28309 components: - - pos: 0.5,-13.5 + - pos: -34.5,-19.5 parent: 2 type: Transform - - uid: 23746 + - uid: 28310 components: - - rot: 1.5707963267948966 rad - pos: 2.5,-6.5 + - pos: 0.5,-12.5 parent: 2 type: Transform - - uid: 23798 + - uid: 28311 + components: + - pos: 0.5,-11.5 + parent: 2 + type: Transform + - uid: 28312 + components: + - pos: -37.5,-19.5 + parent: 2 + type: Transform + - uid: 28313 + components: + - pos: -35.5,-19.5 + parent: 2 + type: Transform + - uid: 28314 + components: + - pos: -2.5,-8.5 + parent: 2 + type: Transform + - uid: 28315 + components: + - pos: 0.5,-13.5 + parent: 2 + type: Transform + - uid: 28316 components: - rot: 3.141592653589793 rad pos: -48.5,-74.5 parent: 2 type: Transform - - uid: 28181 + - uid: 28317 components: - rot: -1.5707963267948966 rad pos: -42.5,-30.5 parent: 2 type: Transform - - uid: 28182 + - uid: 28318 components: - rot: -1.5707963267948966 rad pos: -37.5,-30.5 parent: 2 type: Transform - - uid: 28183 + - uid: 28319 components: - rot: 1.5707963267948966 rad pos: -17.5,10.5 parent: 2 type: Transform - - uid: 28184 + - uid: 28320 components: - rot: -1.5707963267948966 rad pos: -69.5,-32.5 parent: 2 type: Transform - - uid: 28185 + - uid: 28321 components: - rot: 3.141592653589793 rad pos: -41.5,-32.5 parent: 2 type: Transform - - uid: 28186 + - uid: 28322 components: - rot: 3.141592653589793 rad pos: -41.5,-31.5 parent: 2 type: Transform - - uid: 28187 + - uid: 28323 components: - pos: -42.5,-31.5 parent: 2 type: Transform - - uid: 28188 + - uid: 28324 components: - rot: -1.5707963267948966 rad pos: -53.5,-33.5 parent: 2 type: Transform - - uid: 28189 + - uid: 28325 components: - rot: -1.5707963267948966 rad pos: -53.5,-34.5 parent: 2 type: Transform - - uid: 28190 + - uid: 28326 components: - pos: -10.5,13.5 parent: 2 type: Transform - - uid: 28191 + - uid: 28327 components: - pos: -9.5,16.5 parent: 2 type: Transform - - uid: 28192 + - uid: 28328 components: - rot: 1.5707963267948966 rad pos: -8.5,20.5 parent: 2 type: Transform - - uid: 28193 + - uid: 28329 components: - pos: -11.5,12.5 parent: 2 type: Transform - - uid: 28194 + - uid: 28330 components: - pos: -9.5,18.5 parent: 2 type: Transform - - uid: 28195 - components: - - pos: -42.5,-69.5 - parent: 2 - type: Transform - - uid: 28196 - components: - - pos: -41.5,-69.5 - parent: 2 - type: Transform - - uid: 28197 + - uid: 28331 components: - rot: 3.141592653589793 rad pos: -16.5,-32.5 parent: 2 type: Transform - - uid: 28198 + - uid: 28332 components: - rot: 1.5707963267948966 rad pos: -16.5,-28.5 parent: 2 type: Transform - - uid: 28199 + - uid: 28333 components: - pos: 37.5,-56.5 parent: 2 type: Transform - - uid: 28200 + - uid: 28334 components: - pos: 17.5,-31.5 parent: 2 type: Transform - - uid: 28201 + - uid: 28335 components: - pos: -11.5,-3.5 parent: 2 type: Transform - - uid: 28202 + - uid: 28336 components: - rot: 3.141592653589793 rad pos: 15.5,8.5 parent: 2 type: Transform - - uid: 28203 + - uid: 28337 components: - pos: 40.5,-0.5 parent: 2 type: Transform - - uid: 28204 + - uid: 28338 components: - rot: 3.141592653589793 rad pos: 23.5,9.5 parent: 2 type: Transform - - uid: 28205 + - uid: 28339 components: - pos: -17.5,-34.5 parent: 2 type: Transform - - uid: 28206 + - uid: 28340 components: - rot: 1.5707963267948966 rad pos: -11.5,8.5 parent: 2 type: Transform - - uid: 28207 + - uid: 28341 components: - rot: 1.5707963267948966 rad pos: 28.5,-57.5 parent: 2 type: Transform - - uid: 28208 + - uid: 28342 components: - pos: 37.5,-53.5 parent: 2 type: Transform - - uid: 28209 + - uid: 28343 components: - rot: 1.5707963267948966 rad pos: 19.5,-23.5 parent: 2 type: Transform - - uid: 28210 + - uid: 28344 components: - rot: -1.5707963267948966 rad pos: 31.5,-2.5 parent: 2 type: Transform - - uid: 28211 + - uid: 28345 components: - rot: 3.141592653589793 rad pos: 15.5,-51.5 parent: 2 type: Transform - - uid: 28212 + - uid: 28346 components: - rot: -1.5707963267948966 rad pos: -14.5,-11.5 parent: 2 type: Transform - - uid: 28213 + - uid: 28347 components: - pos: -11.5,-72.5 parent: 2 type: Transform - - uid: 28214 + - uid: 28348 components: - rot: -1.5707963267948966 rad pos: -14.5,-20.5 parent: 2 type: Transform - - uid: 28215 + - uid: 28349 components: - pos: 11.5,-61.5 parent: 2 type: Transform - - uid: 28216 + - uid: 28350 components: - pos: 11.5,-63.5 parent: 2 type: Transform - - uid: 28217 + - uid: 28351 components: - pos: 9.5,-63.5 parent: 2 type: Transform - - uid: 28218 + - uid: 28352 components: - pos: 7.5,-63.5 parent: 2 type: Transform - - uid: 28219 + - uid: 28353 components: - rot: -1.5707963267948966 rad pos: -10.5,-70.5 parent: 2 type: Transform - - uid: 28220 + - uid: 28354 components: - rot: -1.5707963267948966 rad pos: -10.5,-69.5 parent: 2 type: Transform - - uid: 28221 + - uid: 28355 components: - rot: -1.5707963267948966 rad pos: -7.5,-70.5 parent: 2 type: Transform - - uid: 28222 + - uid: 28356 components: - rot: -1.5707963267948966 rad pos: -15.5,-68.5 parent: 2 type: Transform - - uid: 28223 + - uid: 28357 components: - rot: -1.5707963267948966 rad pos: -17.5,-68.5 parent: 2 type: Transform - - uid: 28224 + - uid: 28358 components: - rot: -1.5707963267948966 rad pos: -10.5,-68.5 parent: 2 type: Transform - - uid: 28225 + - uid: 28359 components: - rot: -1.5707963267948966 rad pos: -7.5,-67.5 parent: 2 type: Transform - - uid: 28226 + - uid: 28360 components: - rot: -1.5707963267948966 rad pos: -5.5,-67.5 parent: 2 type: Transform - - uid: 28227 + - uid: 28361 components: - pos: 1.5,-64.5 parent: 2 type: Transform - - uid: 28228 + - uid: 28362 components: - pos: 1.5,-63.5 parent: 2 type: Transform - - uid: 28229 + - uid: 28363 components: - pos: -17.5,-63.5 parent: 2 type: Transform - - uid: 28230 + - uid: 28364 components: - pos: 4.5,-51.5 parent: 2 type: Transform - - uid: 28231 + - uid: 28365 components: - pos: -12.5,-72.5 parent: 2 type: Transform - - uid: 28232 + - uid: 28366 components: - pos: -14.5,-70.5 parent: 2 type: Transform - - uid: 28234 + - uid: 28367 components: - pos: -3.5,-74.5 parent: 2 type: Transform - - uid: 28235 + - uid: 28368 components: - pos: 9.5,-68.5 parent: 2 type: Transform - - uid: 28236 + - uid: 28369 components: - rot: 3.141592653589793 rad pos: -1.5,9.5 parent: 2 type: Transform - - uid: 28237 + - uid: 28370 components: - rot: 1.5707963267948966 rad pos: -6.5,-21.5 parent: 2 type: Transform - - uid: 28238 + - uid: 28371 components: - rot: -1.5707963267948966 rad pos: 12.5,-44.5 parent: 2 type: Transform - - uid: 28239 + - uid: 28372 components: - rot: 1.5707963267948966 rad pos: 34.5,-44.5 parent: 2 type: Transform - - uid: 28240 + - uid: 28373 components: - pos: 1.5,-67.5 parent: 2 type: Transform - - uid: 28241 + - uid: 28374 components: - pos: 5.5,-63.5 parent: 2 type: Transform - - uid: 28242 + - uid: 28375 components: - pos: 13.5,-59.5 parent: 2 type: Transform - - uid: 28243 + - uid: 28376 components: - rot: 1.5707963267948966 rad pos: 18.5,-23.5 parent: 2 type: Transform - - uid: 28244 + - uid: 28377 components: - pos: -21.5,-64.5 parent: 2 type: Transform - - uid: 28245 + - uid: 28378 components: - pos: -21.5,-66.5 parent: 2 type: Transform - - uid: 28246 + - uid: 28379 components: - pos: -21.5,-67.5 parent: 2 type: Transform - - uid: 28247 + - uid: 28380 components: - pos: -21.5,-68.5 parent: 2 type: Transform - - uid: 28248 + - uid: 28381 components: - pos: -22.5,-68.5 parent: 2 type: Transform - - uid: 28249 + - uid: 28382 components: - pos: -25.5,-68.5 parent: 2 type: Transform - - uid: 28250 + - uid: 28383 components: - pos: -26.5,-69.5 parent: 2 type: Transform - - uid: 28251 + - uid: 28384 components: - pos: -23.5,-74.5 parent: 2 type: Transform - - uid: 28252 + - uid: 28385 components: - pos: -22.5,-74.5 parent: 2 type: Transform - - uid: 28253 + - uid: 28386 components: - pos: -16.5,-71.5 parent: 2 type: Transform - - uid: 28254 + - uid: 28387 components: - pos: -21.5,-75.5 parent: 2 type: Transform - - uid: 28255 + - uid: 28388 components: - pos: -10.5,-74.5 parent: 2 type: Transform - - uid: 28256 + - uid: 28389 components: - pos: -8.5,-73.5 parent: 2 type: Transform - - uid: 28257 + - uid: 28390 components: - pos: 3.5,-69.5 parent: 2 type: Transform - - uid: 28258 + - uid: 28391 components: - pos: 7.5,-68.5 parent: 2 type: Transform - - uid: 28259 + - uid: 28392 components: - pos: 7.5,-66.5 parent: 2 type: Transform - - uid: 28260 + - uid: 28393 components: - pos: 9.5,-66.5 parent: 2 type: Transform - - uid: 28261 + - uid: 28394 components: - pos: -19.5,-74.5 parent: 2 type: Transform - - uid: 28262 + - uid: 28395 components: - rot: 3.141592653589793 rad pos: 14.5,-15.5 parent: 2 type: Transform - - uid: 28263 + - uid: 28396 components: - pos: 9.5,-13.5 parent: 2 type: Transform - - uid: 28264 + - uid: 28397 components: - rot: -1.5707963267948966 rad pos: -16.5,-44.5 parent: 2 type: Transform - - uid: 28265 + - uid: 28398 components: - rot: 1.5707963267948966 rad pos: 31.5,-23.5 parent: 2 type: Transform - - uid: 28266 + - uid: 28399 components: - rot: -1.5707963267948966 rad pos: 31.5,3.5 parent: 2 type: Transform - - uid: 28267 + - uid: 28400 components: - pos: 7.5,6.5 parent: 2 type: Transform - - uid: 28268 + - uid: 28401 components: - rot: 3.141592653589793 rad pos: 62.5,14.5 parent: 2 type: Transform - - uid: 28269 + - uid: 28402 components: - rot: 3.141592653589793 rad pos: -1.5,8.5 parent: 2 type: Transform - - uid: 28270 + - uid: 28403 components: - pos: 6.5,-68.5 parent: 2 type: Transform - - uid: 28271 + - uid: 28404 components: - pos: 15.5,4.5 parent: 2 type: Transform - - uid: 28272 + - uid: 28405 components: - rot: 3.141592653589793 rad pos: 61.5,17.5 parent: 2 type: Transform - - uid: 28273 + - uid: 28406 components: - pos: -8.5,-34.5 parent: 2 type: Transform - - uid: 28274 + - uid: 28407 components: - rot: -1.5707963267948966 rad pos: 13.5,-4.5 parent: 2 type: Transform - - uid: 28275 + - uid: 28408 components: - - rot: 1.5707963267948966 rad - pos: 4.5,-13.5 + - pos: 2.5,-9.5 parent: 2 type: Transform - - uid: 28276 + - uid: 28409 components: - rot: -1.5707963267948966 rad pos: -13.5,36.5 parent: 2 type: Transform - - uid: 28278 + - uid: 28410 components: - pos: 7.5,-62.5 parent: 2 type: Transform - - uid: 28279 + - uid: 28411 components: - pos: 13.5,-54.5 parent: 2 type: Transform - - uid: 28280 + - uid: 28412 components: - pos: -17.5,-64.5 parent: 2 type: Transform - - uid: 28281 + - uid: 28413 components: - pos: 7.5,-55.5 parent: 2 type: Transform - - uid: 28282 + - uid: 28414 components: - pos: -10.5,-2.5 parent: 2 type: Transform - - uid: 28283 + - uid: 28415 components: - rot: 3.141592653589793 rad pos: 22.5,15.5 parent: 2 type: Transform - - uid: 28284 + - uid: 28416 components: - rot: 3.141592653589793 rad pos: 21.5,15.5 parent: 2 type: Transform - - uid: 28285 + - uid: 28417 components: - rot: -1.5707963267948966 rad pos: 13.5,-3.5 parent: 2 type: Transform - - uid: 28286 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-13.5 - parent: 2 - type: Transform - - uid: 28288 + - uid: 28418 components: - rot: 1.5707963267948966 rad pos: 66.5,-4.5 parent: 2 type: Transform - - uid: 28289 + - uid: 28419 components: - pos: 37.5,-39.5 parent: 2 type: Transform - - uid: 28290 + - uid: 28420 components: - pos: -6.5,-5.5 parent: 2 type: Transform - - uid: 28291 + - uid: 28421 components: - rot: 3.141592653589793 rad pos: 6.5,-16.5 parent: 2 type: Transform - - uid: 28292 + - uid: 28422 components: - pos: 43.5,-57.5 parent: 2 type: Transform - - uid: 28293 + - uid: 28423 components: - pos: 37.5,-27.5 parent: 2 type: Transform - - uid: 28294 + - uid: 28424 components: - pos: 13.5,-50.5 parent: 2 type: Transform - - uid: 28295 + - uid: 28425 components: - pos: -17.5,-28.5 parent: 2 type: Transform - - uid: 28296 + - uid: 28426 components: - rot: -1.5707963267948966 rad pos: -3.5,-78.5 parent: 2 type: Transform - - uid: 28297 + - uid: 28427 components: - rot: -1.5707963267948966 rad pos: -2.5,-83.5 parent: 2 type: Transform - - uid: 28298 + - uid: 28428 components: - rot: -1.5707963267948966 rad pos: -5.5,-76.5 parent: 2 type: Transform - - uid: 28299 + - uid: 28429 components: - pos: -9.5,-7.5 parent: 2 type: Transform - - uid: 28300 + - uid: 28430 components: - rot: -1.5707963267948966 rad pos: 29.5,-1.5 parent: 2 type: Transform - - uid: 28301 + - uid: 28431 components: - pos: -6.5,-16.5 parent: 2 type: Transform - - uid: 28302 + - uid: 28432 components: - - pos: -2.5,-10.5 + - rot: -1.5707963267948966 rad + pos: -2.5,-10.5 parent: 2 type: Transform - - uid: 28303 + - uid: 28433 components: - pos: 13.5,-48.5 parent: 2 type: Transform - - uid: 28304 + - uid: 28434 components: - pos: -2.5,-18.5 parent: 2 type: Transform - - uid: 28305 - components: - - pos: -2.5,-17.5 - parent: 2 - type: Transform - - uid: 28306 + - uid: 28435 components: - pos: -0.5,-15.5 parent: 2 type: Transform - - uid: 28307 + - uid: 28436 components: - pos: -2.5,-14.5 parent: 2 type: Transform - - uid: 28308 + - uid: 28437 components: - pos: -2.5,-13.5 parent: 2 type: Transform - - uid: 28309 + - uid: 28438 components: - pos: -2.5,-19.5 parent: 2 type: Transform - - uid: 28311 + - uid: 28439 components: - rot: 1.5707963267948966 rad pos: 7.5,-10.5 parent: 2 type: Transform - - uid: 28312 + - uid: 28440 components: - rot: 3.141592653589793 rad pos: -10.5,-49.5 parent: 2 type: Transform - - uid: 28313 + - uid: 28441 components: - rot: 3.141592653589793 rad pos: -11.5,-44.5 parent: 2 type: Transform - - uid: 28314 + - uid: 28442 components: - rot: 3.141592653589793 rad pos: -10.5,-50.5 parent: 2 type: Transform - - uid: 28315 + - uid: 28443 components: - rot: 3.141592653589793 rad pos: 23.5,15.5 parent: 2 type: Transform - - uid: 28316 + - uid: 28444 components: - rot: 3.141592653589793 rad pos: 19.5,10.5 parent: 2 type: Transform - - uid: 28317 + - uid: 28445 components: - pos: 16.5,-13.5 parent: 2 type: Transform - - uid: 28318 + - uid: 28446 components: - pos: 7.5,-12.5 parent: 2 type: Transform - - uid: 28319 + - uid: 28447 components: - pos: -32.5,-69.5 parent: 2 type: Transform - - uid: 28320 + - uid: 28448 components: - pos: -32.5,-72.5 parent: 2 type: Transform - - uid: 28321 + - uid: 28449 components: - pos: 18.5,-44.5 parent: 2 type: Transform - - uid: 28322 + - uid: 28450 components: - pos: 42.5,-52.5 parent: 2 type: Transform - - uid: 28323 + - uid: 28451 components: - rot: -1.5707963267948966 rad pos: -9.5,57.5 parent: 2 type: Transform - - uid: 28324 + - uid: 28452 components: - pos: 38.5,-27.5 parent: 2 type: Transform - - uid: 28325 + - uid: 28453 components: - pos: 37.5,-28.5 parent: 2 type: Transform - - uid: 28326 + - uid: 28454 components: - pos: 0.5,-72.5 parent: 2 type: Transform - - uid: 28327 + - uid: 28455 components: - pos: -9.5,-17.5 parent: 2 type: Transform - - uid: 28328 + - uid: 28456 components: - rot: 3.141592653589793 rad pos: 16.5,-51.5 parent: 2 type: Transform - - uid: 28329 + - uid: 28457 components: - pos: -9.5,-18.5 parent: 2 type: Transform - - uid: 28330 + - uid: 28458 components: - rot: -1.5707963267948966 rad pos: -10.5,-76.5 parent: 2 type: Transform - - uid: 28331 + - uid: 28459 components: - rot: -1.5707963267948966 rad pos: 19.5,19.5 parent: 2 type: Transform - - uid: 28332 + - uid: 28460 components: - pos: 42.5,-56.5 parent: 2 type: Transform - - uid: 28333 + - uid: 28461 components: - pos: -17.5,-38.5 parent: 2 type: Transform - - uid: 28334 + - uid: 28462 components: - rot: -1.5707963267948966 rad pos: 20.5,19.5 parent: 2 type: Transform - - uid: 28335 + - uid: 28463 components: - pos: 1.5,-75.5 parent: 2 type: Transform - - uid: 28336 + - uid: 28464 components: - pos: 1.5,-73.5 parent: 2 type: Transform - - uid: 28337 + - uid: 28465 components: - pos: 7.5,-28.5 parent: 2 type: Transform - - uid: 28338 + - uid: 28466 components: - pos: -11.5,9.5 parent: 2 type: Transform - - uid: 28339 + - uid: 28467 components: - pos: -30.5,-76.5 parent: 2 type: Transform - - uid: 28340 + - uid: 28468 components: - rot: -1.5707963267948966 rad pos: -13.5,-20.5 parent: 2 type: Transform - - uid: 28341 + - uid: 28469 components: - pos: 11.5,-65.5 parent: 2 type: Transform - - uid: 28342 + - uid: 28470 components: - pos: 13.5,-63.5 parent: 2 type: Transform - - uid: 28343 + - uid: 28471 components: - pos: 15.5,-56.5 parent: 2 type: Transform - - uid: 28344 + - uid: 28472 components: - pos: 8.5,-63.5 parent: 2 type: Transform - - uid: 28345 + - uid: 28473 components: - pos: 11.5,-62.5 parent: 2 type: Transform - - uid: 28346 + - uid: 28474 components: - pos: 8.5,-57.5 parent: 2 type: Transform - - uid: 28347 + - uid: 28475 components: - pos: 11.5,-60.5 parent: 2 type: Transform - - uid: 28348 + - uid: 28476 components: - pos: 11.5,-59.5 parent: 2 type: Transform - - uid: 28349 + - uid: 28477 components: - pos: 11.5,-58.5 parent: 2 type: Transform - - uid: 28350 + - uid: 28478 components: - pos: 11.5,-57.5 parent: 2 type: Transform - - uid: 28351 + - uid: 28479 components: - pos: 10.5,-57.5 parent: 2 type: Transform - - uid: 28352 + - uid: 28480 components: - pos: 9.5,-57.5 parent: 2 type: Transform - - uid: 28353 + - uid: 28481 components: - rot: -1.5707963267948966 rad pos: -7.5,-69.5 parent: 2 type: Transform - - uid: 28354 + - uid: 28482 components: - rot: -1.5707963267948966 rad pos: -9.5,-70.5 parent: 2 type: Transform - - uid: 28355 + - uid: 28483 components: - rot: -1.5707963267948966 rad pos: -12.5,-68.5 parent: 2 type: Transform - - uid: 28356 + - uid: 28484 components: - rot: -1.5707963267948966 rad pos: -13.5,-68.5 parent: 2 type: Transform - - uid: 28357 + - uid: 28485 components: - rot: -1.5707963267948966 rad pos: -16.5,-68.5 parent: 2 type: Transform - - uid: 28358 + - uid: 28486 components: - rot: -1.5707963267948966 rad pos: -17.5,-67.5 parent: 2 type: Transform - - uid: 28359 + - uid: 28487 components: - rot: -1.5707963267948966 rad pos: -10.5,-67.5 parent: 2 type: Transform - - uid: 28360 + - uid: 28488 components: - rot: -1.5707963267948966 rad pos: -9.5,-67.5 parent: 2 type: Transform - - uid: 28361 + - uid: 28489 components: - rot: -1.5707963267948966 rad pos: -6.5,-67.5 parent: 2 type: Transform - - uid: 28362 + - uid: 28490 components: - pos: 1.5,-62.5 parent: 2 type: Transform - - uid: 28363 + - uid: 28491 components: - pos: 1.5,-65.5 parent: 2 type: Transform - - uid: 28364 + - uid: 28492 components: - pos: -1.5,-62.5 parent: 2 type: Transform - - uid: 28365 + - uid: 28493 components: - pos: -17.5,-65.5 parent: 2 type: Transform - - uid: 28366 + - uid: 28494 components: - pos: -7.5,-62.5 parent: 2 type: Transform - - uid: 28367 + - uid: 28495 components: - pos: 12.5,-50.5 parent: 2 type: Transform - - uid: 28368 + - uid: 28496 components: - rot: 1.5707963267948966 rad pos: -13.5,-55.5 parent: 2 type: Transform - - uid: 28369 + - uid: 28497 components: - rot: 1.5707963267948966 rad pos: 30.5,-44.5 parent: 2 type: Transform - - uid: 28370 + - uid: 28498 components: - pos: -23.5,-7.5 parent: 2 type: Transform - - uid: 28371 + - uid: 28499 components: - pos: -21.5,-7.5 parent: 2 type: Transform - - uid: 28372 + - uid: 28500 components: - pos: -26.5,-7.5 parent: 2 type: Transform - - uid: 28373 + - uid: 28501 components: - pos: -16.5,-7.5 parent: 2 type: Transform - - uid: 28374 + - uid: 28502 components: - pos: -14.5,-7.5 parent: 2 type: Transform - - uid: 28375 + - uid: 28503 components: - pos: -12.5,-7.5 parent: 2 type: Transform - - uid: 28376 + - uid: 28504 components: - pos: -11.5,-5.5 parent: 2 type: Transform - - uid: 28377 + - uid: 28505 components: - pos: -11.5,-7.5 parent: 2 type: Transform - - uid: 28378 + - uid: 28506 components: - rot: 3.141592653589793 rad pos: -17.5,9.5 parent: 2 type: Transform - - uid: 28379 + - uid: 28507 components: - rot: 3.141592653589793 rad pos: 23.5,-14.5 parent: 2 type: Transform - - uid: 28380 + - uid: 28508 components: - rot: 3.141592653589793 rad pos: 23.5,-13.5 parent: 2 type: Transform - - uid: 28381 + - uid: 28509 components: - rot: 3.141592653589793 rad pos: 17.5,-15.5 parent: 2 type: Transform - - uid: 28382 + - uid: 28510 components: - rot: 3.141592653589793 rad pos: 16.5,-15.5 parent: 2 type: Transform - - uid: 28383 + - uid: 28511 components: - rot: 3.141592653589793 rad pos: 22.5,-7.5 parent: 2 type: Transform - - uid: 28384 + - uid: 28512 components: - rot: 3.141592653589793 rad pos: 23.5,-9.5 parent: 2 type: Transform - - uid: 28385 + - uid: 28513 components: - rot: -1.5707963267948966 rad pos: 19.5,22.5 parent: 2 type: Transform - - uid: 28386 + - uid: 28514 components: - pos: 37.5,-31.5 parent: 2 type: Transform - - uid: 28387 + - uid: 28515 components: - pos: 28.5,-3.5 parent: 2 type: Transform - - uid: 28388 + - uid: 28516 components: - pos: -7.5,-34.5 parent: 2 type: Transform - - uid: 28389 + - uid: 28517 components: - pos: -20.5,-74.5 parent: 2 type: Transform - - uid: 28390 + - uid: 28518 components: - rot: -1.5707963267948966 rad pos: -17.5,-51.5 parent: 2 type: Transform - - uid: 28391 + - uid: 28519 components: - pos: 41.5,-52.5 parent: 2 type: Transform - - uid: 28392 + - uid: 28520 components: - pos: 13.5,-52.5 parent: 2 type: Transform - - uid: 28393 + - uid: 28521 components: - rot: -1.5707963267948966 rad pos: 37.5,-37.5 parent: 2 type: Transform - - uid: 28394 + - uid: 28522 components: - pos: 17.5,-28.5 parent: 2 type: Transform - - uid: 28395 + - uid: 28523 components: - pos: -12.5,-70.5 parent: 2 type: Transform - - uid: 28396 + - uid: 28524 components: - pos: -26.5,-70.5 parent: 2 type: Transform - - uid: 28397 + - uid: 28525 components: - pos: -24.5,-68.5 parent: 2 type: Transform - - uid: 28398 + - uid: 28526 components: - pos: 7.5,-44.5 parent: 2 type: Transform - - uid: 28402 + - uid: 28527 components: - rot: -1.5707963267948966 rad pos: 37.5,-34.5 parent: 2 type: Transform - - uid: 28403 + - uid: 28528 components: - pos: -6.5,-14.5 parent: 2 type: Transform - - uid: 28404 + - uid: 28529 components: - pos: -6.5,-28.5 parent: 2 type: Transform - - uid: 28405 + - uid: 28530 components: - pos: -22.5,-19.5 parent: 2 type: Transform - - uid: 28406 + - uid: 28531 components: - pos: -21.5,-19.5 parent: 2 type: Transform - - uid: 28407 + - uid: 28532 components: - pos: 37.5,-57.5 parent: 2 type: Transform - - uid: 28408 + - uid: 28533 components: - rot: -1.5707963267948966 rad pos: 8.5,-45.5 parent: 2 type: Transform - - uid: 28409 + - uid: 28534 components: - - rot: 1.5707963267948966 rad - pos: 5.5,-11.5 + - pos: 5.5,-12.5 parent: 2 type: Transform - - uid: 28410 + - uid: 28535 components: - pos: -1.5,5.5 parent: 2 type: Transform - - uid: 28411 + - uid: 28536 components: - rot: 1.5707963267948966 rad pos: -15.5,-28.5 parent: 2 type: Transform - - uid: 28412 + - uid: 28537 components: - rot: -1.5707963267948966 rad pos: 9.5,-3.5 parent: 2 type: Transform - - uid: 28414 + - uid: 28538 components: - rot: 1.5707963267948966 rad pos: -12.5,-20.5 parent: 2 type: Transform - - uid: 28415 + - uid: 28539 components: - rot: -1.5707963267948966 rad pos: 8.5,-47.5 parent: 2 type: Transform - - uid: 28416 + - uid: 28540 components: - pos: -3.5,-72.5 parent: 2 type: Transform - - uid: 28417 + - uid: 28541 components: - pos: -0.5,-72.5 parent: 2 type: Transform - - uid: 28418 + - uid: 28542 components: - pos: -13.5,-28.5 parent: 2 type: Transform - - uid: 28419 + - uid: 28543 components: - pos: -11.5,-6.5 parent: 2 type: Transform - - uid: 28420 + - uid: 28544 components: - rot: -1.5707963267948966 rad pos: -13.5,35.5 parent: 2 type: Transform - - uid: 28421 + - uid: 28545 components: - pos: 7.5,-13.5 parent: 2 type: Transform - - uid: 28422 + - uid: 28546 components: - rot: -1.5707963267948966 rad pos: 19.5,21.5 parent: 2 type: Transform - - uid: 28423 + - uid: 28547 components: - pos: 11.5,-48.5 parent: 2 type: Transform - - uid: 28424 + - uid: 28548 components: - rot: 3.141592653589793 rad pos: -2.5,9.5 parent: 2 type: Transform - - uid: 28425 + - uid: 28549 components: - pos: 10.5,-48.5 parent: 2 type: Transform - - uid: 28426 + - uid: 28550 components: - pos: 7.5,-56.5 parent: 2 type: Transform - - uid: 28427 + - uid: 28551 components: - pos: 7.5,-57.5 parent: 2 type: Transform - - uid: 28428 + - uid: 28552 components: - rot: -1.5707963267948966 rad pos: 13.5,-7.5 parent: 2 type: Transform - - uid: 28429 + - uid: 28553 components: - rot: -1.5707963267948966 rad pos: -9.5,14.5 parent: 2 type: Transform - - uid: 28430 + - uid: 28554 components: - pos: -6.5,-3.5 parent: 2 type: Transform - - uid: 28431 + - uid: 28555 components: - pos: -7.5,-3.5 parent: 2 type: Transform - - uid: 28432 + - uid: 28556 components: - pos: -8.5,-3.5 parent: 2 type: Transform - - uid: 28433 + - uid: 28557 components: - pos: -6.5,-2.5 parent: 2 type: Transform - - uid: 28434 + - uid: 28558 components: - rot: 3.141592653589793 rad pos: 2.5,-51.5 parent: 2 type: Transform - - uid: 28435 + - uid: 28559 components: - pos: 13.5,-2.5 parent: 2 type: Transform - - uid: 28436 + - uid: 28560 components: - pos: 12.5,-47.5 parent: 2 type: Transform - - uid: 28437 + - uid: 28561 components: - rot: 3.141592653589793 rad pos: 60.5,14.5 parent: 2 type: Transform - - uid: 28438 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-13.5 - parent: 2 - type: Transform - - uid: 28440 - components: - - pos: 5.5,-2.5 - parent: 2 - type: Transform - - uid: 28441 + - uid: 28562 components: - rot: 3.141592653589793 rad pos: 62.5,17.5 parent: 2 type: Transform - - uid: 28442 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-12.5 - parent: 2 - type: Transform - - uid: 28443 + - uid: 28563 components: - pos: 15.5,-3.5 parent: 2 type: Transform - - uid: 28444 + - uid: 28564 components: - pos: 12.5,-2.5 parent: 2 type: Transform - - uid: 28445 + - uid: 28565 components: - pos: -11.5,1.5 parent: 2 type: Transform - - uid: 28446 + - uid: 28566 components: - pos: 2.5,-28.5 parent: 2 type: Transform - - uid: 28447 + - uid: 28567 components: - pos: 11.5,-15.5 parent: 2 type: Transform - - uid: 28448 + - uid: 28568 components: - pos: 42.5,-57.5 parent: 2 type: Transform - - uid: 28449 + - uid: 28569 components: - rot: 1.5707963267948966 rad pos: -4.5,-62.5 parent: 2 type: Transform - - uid: 28450 + - uid: 28570 components: - rot: 3.141592653589793 rad pos: -12.5,-51.5 parent: 2 type: Transform - - uid: 28451 + - uid: 28571 components: - pos: 40.5,-27.5 parent: 2 type: Transform - - uid: 28452 + - uid: 28572 components: - pos: 13.5,-28.5 parent: 2 type: Transform - - uid: 28453 - components: - - pos: 18.5,-31.5 - parent: 2 - type: Transform - - uid: 28454 + - uid: 28573 components: - pos: -21.5,-81.5 parent: 2 type: Transform - - uid: 28455 + - uid: 28574 components: - pos: -4.5,13.5 parent: 2 type: Transform - - uid: 28456 + - uid: 28575 components: - rot: 3.141592653589793 rad pos: 23.5,10.5 parent: 2 type: Transform - - uid: 28457 + - uid: 28576 components: - rot: 3.141592653589793 rad pos: 22.5,9.5 parent: 2 type: Transform - - uid: 28458 + - uid: 28577 components: - rot: 3.141592653589793 rad pos: 60.5,17.5 parent: 2 type: Transform - - uid: 28459 + - uid: 28578 components: - pos: -6.5,-6.5 parent: 2 type: Transform - - uid: 28460 + - uid: 28579 components: - pos: 15.5,-6.5 parent: 2 type: Transform - - uid: 28461 + - uid: 28580 components: - pos: 15.5,-2.5 parent: 2 type: Transform - - uid: 28462 + - uid: 28581 components: - rot: 1.5707963267948966 rad pos: 27.5,-53.5 parent: 2 type: Transform - - uid: 28463 + - uid: 28582 components: - pos: 27.5,-56.5 parent: 2 type: Transform - - uid: 28464 + - uid: 28583 components: - pos: 27.5,-50.5 parent: 2 type: Transform - - uid: 28465 + - uid: 28584 components: - pos: 23.5,-50.5 parent: 2 type: Transform - - uid: 28466 + - uid: 28585 components: - pos: 23.5,-54.5 parent: 2 type: Transform - - uid: 28467 + - uid: 28586 components: - pos: 23.5,-52.5 parent: 2 type: Transform - - uid: 28468 + - uid: 28587 components: - pos: 23.5,-51.5 parent: 2 type: Transform - - uid: 28469 + - uid: 28588 components: - pos: 23.5,-49.5 parent: 2 type: Transform - - uid: 28470 + - uid: 28589 components: - rot: 3.141592653589793 rad pos: 22.5,-51.5 parent: 2 type: Transform - - uid: 28471 + - uid: 28590 components: - pos: -17.5,-31.5 parent: 2 type: Transform - - uid: 28472 + - uid: 28591 components: - rot: -1.5707963267948966 rad pos: 8.5,-3.5 parent: 2 type: Transform - - uid: 28473 + - uid: 28592 components: - pos: 19.5,-2.5 parent: 2 type: Transform - - uid: 28474 + - uid: 28593 components: - pos: 24.5,5.5 parent: 2 type: Transform - - uid: 28475 + - uid: 28594 components: - pos: 16.5,-7.5 parent: 2 type: Transform - - uid: 28476 + - uid: 28595 components: - pos: -9.5,-16.5 parent: 2 type: Transform - - uid: 28477 + - uid: 28596 components: - pos: 2.5,10.5 parent: 2 type: Transform - - uid: 28478 + - uid: 28597 components: - pos: 14.5,-44.5 parent: 2 type: Transform - - uid: 28479 + - uid: 28598 components: - rot: 3.141592653589793 rad pos: 33.5,-7.5 parent: 2 type: Transform - - uid: 28480 + - uid: 28599 components: - rot: 3.141592653589793 rad pos: 35.5,-7.5 parent: 2 type: Transform - - uid: 28481 + - uid: 28600 components: - rot: 3.141592653589793 rad pos: 31.5,-7.5 parent: 2 type: Transform - - uid: 28482 + - uid: 28601 components: - rot: 3.141592653589793 rad pos: 20.5,-7.5 parent: 2 type: Transform - - uid: 28483 + - uid: 28602 components: - rot: 3.141592653589793 rad pos: 22.5,-15.5 parent: 2 type: Transform - - uid: 28484 + - uid: 28603 components: - rot: 3.141592653589793 rad pos: 37.5,-16.5 parent: 2 type: Transform - - uid: 28485 + - uid: 28604 components: - rot: 3.141592653589793 rad pos: 37.5,-15.5 parent: 2 type: Transform - - uid: 28486 + - uid: 28605 components: - rot: 3.141592653589793 rad pos: 36.5,-15.5 parent: 2 type: Transform - - uid: 28487 + - uid: 28606 components: - pos: 59.5,0.5 parent: 2 type: Transform - - uid: 28488 + - uid: 28607 components: - rot: 3.141592653589793 rad pos: -12.5,9.5 parent: 2 type: Transform - - uid: 28489 + - uid: 28608 components: - pos: -27.5,10.5 parent: 2 type: Transform - - uid: 28490 + - uid: 28609 components: - pos: -21.5,9.5 parent: 2 type: Transform - - uid: 28491 + - uid: 28610 components: - pos: -14.5,-32.5 parent: 2 type: Transform - - uid: 28492 + - uid: 28611 components: - pos: -21.5,14.5 parent: 2 type: Transform - - uid: 28493 + - uid: 28612 components: - pos: -10.5,-7.5 parent: 2 type: Transform - - uid: 28494 + - uid: 28613 components: - pos: -11.5,-4.5 parent: 2 type: Transform - - uid: 28495 + - uid: 28614 components: - pos: -15.5,-7.5 parent: 2 type: Transform - - uid: 28496 + - uid: 28615 components: - pos: -17.5,-7.5 parent: 2 type: Transform - - uid: 28497 + - uid: 28616 components: - pos: -21.5,-8.5 parent: 2 type: Transform - - uid: 28498 + - uid: 28617 components: - pos: -22.5,-7.5 parent: 2 type: Transform - - uid: 28499 + - uid: 28618 components: - pos: -24.5,-7.5 parent: 2 type: Transform - - uid: 28500 + - uid: 28619 components: - pos: -17.5,-8.5 parent: 2 type: Transform - - uid: 28501 + - uid: 28620 components: - rot: -1.5707963267948966 rad pos: -23.5,-18.5 parent: 2 type: Transform - - uid: 28502 + - uid: 28621 components: - rot: 3.141592653589793 rad pos: 23.5,-15.5 parent: 2 type: Transform - - uid: 28503 + - uid: 28622 components: - rot: 3.141592653589793 rad pos: 23.5,-10.5 parent: 2 type: Transform - - uid: 28504 + - uid: 28623 components: - pos: 19.5,-3.5 parent: 2 type: Transform - - uid: 28505 + - uid: 28624 components: - rot: -1.5707963267948966 rad pos: 13.5,-9.5 parent: 2 type: Transform - - uid: 28506 + - uid: 28625 components: - pos: 1.5,10.5 parent: 2 type: Transform - - uid: 28507 + - uid: 28626 components: - pos: -11.5,-2.5 parent: 2 type: Transform - - uid: 28508 + - uid: 28627 components: - pos: -6.5,-7.5 parent: 2 type: Transform - - uid: 28509 + - uid: 28628 components: - pos: -8.5,-2.5 parent: 2 type: Transform - - uid: 28510 + - uid: 28629 components: - pos: -17.5,-9.5 parent: 2 type: Transform - - uid: 28511 + - uid: 28630 components: - pos: -17.5,-10.5 parent: 2 type: Transform - - uid: 28512 + - uid: 28631 components: - pos: -6.5,-17.5 parent: 2 type: Transform - - uid: 28513 + - uid: 28632 components: - rot: 1.5707963267948966 rad pos: -6.5,-20.5 parent: 2 type: Transform - - uid: 28514 + - uid: 28633 components: - pos: 35.5,-6.5 parent: 2 type: Transform - - uid: 28515 + - uid: 28634 components: - pos: 45.5,-0.5 parent: 2 type: Transform - - uid: 28516 + - uid: 28635 components: - pos: -2.5,-15.5 parent: 2 type: Transform - - uid: 28517 + - uid: 28636 components: - pos: -1.5,-15.5 parent: 2 type: Transform - - uid: 28518 + - uid: 28637 components: - pos: -6.5,-4.5 parent: 2 type: Transform - - uid: 28520 + - uid: 28638 components: - rot: 1.5707963267948966 rad pos: -6.5,-23.5 parent: 2 type: Transform - - uid: 28521 + - uid: 28639 components: - rot: 1.5707963267948966 rad pos: -6.5,-24.5 parent: 2 type: Transform - - uid: 28522 + - uid: 28640 components: - rot: 1.5707963267948966 rad pos: -10.5,-24.5 parent: 2 type: Transform - - uid: 28523 + - uid: 28641 components: - rot: 3.141592653589793 rad pos: 1.5,-44.5 parent: 2 type: Transform - - uid: 28524 + - uid: 28642 components: - rot: 3.141592653589793 rad pos: -10.5,-45.5 parent: 2 type: Transform - - uid: 28525 + - uid: 28643 components: - rot: 1.5707963267948966 rad pos: 29.5,-44.5 parent: 2 type: Transform - - uid: 28526 + - uid: 28644 components: - pos: -26.5,-8.5 parent: 2 type: Transform - - uid: 28527 + - uid: 28645 components: - rot: -1.5707963267948966 rad pos: 8.5,-44.5 parent: 2 type: Transform - - uid: 28528 + - uid: 28646 components: - pos: -8.5,-28.5 parent: 2 type: Transform - - uid: 28529 + - uid: 28647 components: - rot: 3.141592653589793 rad pos: 18.5,8.5 parent: 2 type: Transform - - uid: 28530 + - uid: 28648 components: - pos: 16.5,-44.5 parent: 2 type: Transform - - uid: 28531 + - uid: 28649 components: - pos: 16.5,-46.5 parent: 2 type: Transform - - uid: 28532 + - uid: 28650 components: - pos: 12.5,-28.5 parent: 2 type: Transform - - uid: 28533 + - uid: 28651 components: - pos: 11.5,-28.5 parent: 2 type: Transform - - uid: 28534 - components: - - pos: -1.5,-10.5 - parent: 2 - type: Transform - - uid: 28535 + - uid: 28652 components: - pos: 6.5,-28.5 parent: 2 type: Transform - - uid: 28536 + - uid: 28653 components: - pos: 12.5,-46.5 parent: 2 type: Transform - - uid: 28537 + - uid: 28654 components: - pos: 12.5,-45.5 parent: 2 type: Transform - - uid: 28538 + - uid: 28655 components: - pos: -9.5,-28.5 parent: 2 type: Transform - - uid: 28540 + - uid: 28656 components: - - rot: 1.5707963267948966 rad - pos: 5.5,-9.5 + - pos: 3.5,-12.5 parent: 2 type: Transform - - uid: 28541 + - uid: 28657 components: - pos: 9.5,-48.5 parent: 2 type: Transform - - uid: 28542 + - uid: 28658 components: - pos: 2.5,-44.5 parent: 2 type: Transform - - uid: 28543 + - uid: 28659 components: - pos: 8.5,-48.5 parent: 2 type: Transform - - uid: 28544 + - uid: 28660 components: - rot: 1.5707963267948966 rad pos: -13.5,-24.5 parent: 2 type: Transform - - uid: 28545 + - uid: 28661 components: - pos: -10.5,-34.5 parent: 2 type: Transform - - uid: 28546 + - uid: 28662 components: - pos: 35.5,-44.5 parent: 2 type: Transform - - uid: 28547 + - uid: 28663 components: - pos: 41.5,-49.5 parent: 2 type: Transform - - uid: 28548 + - uid: 28664 components: - pos: 39.5,-47.5 parent: 2 type: Transform - - uid: 28549 + - uid: 28665 components: - pos: 39.5,-44.5 parent: 2 type: Transform - - uid: 28550 + - uid: 28666 components: - pos: 41.5,-48.5 parent: 2 type: Transform - - uid: 28551 + - uid: 28667 components: - pos: -3.5,-51.5 parent: 2 type: Transform - - uid: 28552 + - uid: 28668 components: - pos: -5.5,-51.5 parent: 2 type: Transform - - uid: 28553 + - uid: 28669 components: - pos: -6.5,-51.5 parent: 2 type: Transform - - uid: 28554 + - uid: 28670 components: - pos: -2.5,-50.5 parent: 2 type: Transform - - uid: 28555 + - uid: 28671 components: - rot: 3.141592653589793 rad pos: 1.5,-45.5 parent: 2 type: Transform - - uid: 28556 + - uid: 28672 components: - pos: 7.5,-54.5 parent: 2 type: Transform - - uid: 28557 + - uid: 28673 components: - rot: -1.5707963267948966 rad pos: -14.5,-40.5 parent: 2 type: Transform - - uid: 28558 + - uid: 28674 components: - rot: -1.5707963267948966 rad pos: -12.5,-40.5 parent: 2 type: Transform - - uid: 28559 + - uid: 28675 components: - rot: 1.5707963267948966 rad pos: -4.5,-58.5 parent: 2 type: Transform - - uid: 28560 + - uid: 28676 components: - rot: 1.5707963267948966 rad pos: -1.5,-58.5 parent: 2 type: Transform - - uid: 28561 + - uid: 28677 components: - rot: 1.5707963267948966 rad pos: -7.5,-58.5 parent: 2 type: Transform - - uid: 28562 + - uid: 28678 components: - rot: 1.5707963267948966 rad pos: 4.5,-55.5 parent: 2 type: Transform - - uid: 28563 + - uid: 28679 components: - rot: 1.5707963267948966 rad pos: -10.5,-55.5 parent: 2 type: Transform - - uid: 28564 + - uid: 28680 components: - rot: 1.5707963267948966 rad pos: -13.5,-58.5 parent: 2 type: Transform - - uid: 28565 + - uid: 28681 components: - rot: 1.5707963267948966 rad pos: 4.5,-58.5 parent: 2 type: Transform - - uid: 28566 + - uid: 28682 components: - rot: 1.5707963267948966 rad pos: -1.5,-55.5 parent: 2 type: Transform - - uid: 28567 + - uid: 28683 components: - rot: 1.5707963267948966 rad pos: -4.5,-55.5 parent: 2 type: Transform - - uid: 28568 + - uid: 28684 components: - rot: 1.5707963267948966 rad pos: 1.5,-58.5 parent: 2 type: Transform - - uid: 28569 + - uid: 28685 components: - rot: 1.5707963267948966 rad pos: -7.5,-55.5 parent: 2 type: Transform - - uid: 28570 + - uid: 28686 components: - rot: 3.141592653589793 rad pos: -11.5,-51.5 parent: 2 type: Transform - - uid: 28571 + - uid: 28687 components: - rot: 3.141592653589793 rad pos: -14.5,-51.5 parent: 2 type: Transform - - uid: 28572 + - uid: 28688 components: - rot: 3.141592653589793 rad pos: -15.5,-51.5 parent: 2 type: Transform - - uid: 28573 + - uid: 28689 components: - pos: 9.5,-51.5 parent: 2 type: Transform - - uid: 28574 + - uid: 28690 components: - pos: 7.5,-52.5 parent: 2 type: Transform - - uid: 28575 + - uid: 28691 components: - pos: 9.5,-53.5 parent: 2 type: Transform - - uid: 28576 + - uid: 28692 components: - pos: 11.5,-50.5 parent: 2 type: Transform - - uid: 28577 + - uid: 28693 components: - pos: -17.5,-66.5 parent: 2 type: Transform - - uid: 28578 + - uid: 28694 components: - pos: -17.5,-62.5 parent: 2 type: Transform - - uid: 28579 + - uid: 28695 components: - pos: -16.5,-62.5 parent: 2 type: Transform - - uid: 28580 + - uid: 28696 components: - pos: -15.5,-62.5 parent: 2 type: Transform - - uid: 28581 + - uid: 28697 components: - pos: -14.5,-62.5 parent: 2 type: Transform - - uid: 28582 + - uid: 28698 components: - pos: -12.5,-62.5 parent: 2 type: Transform - - uid: 28583 + - uid: 28699 components: - pos: -11.5,-62.5 parent: 2 type: Transform - - uid: 28584 + - uid: 28700 components: - pos: 1.5,-66.5 parent: 2 type: Transform - - uid: 28585 + - uid: 28701 components: - pos: 1.5,-68.5 parent: 2 type: Transform - - uid: 28586 + - uid: 28702 components: - pos: 0.5,-68.5 parent: 2 type: Transform - - uid: 28587 + - uid: 28703 components: - pos: -0.5,-68.5 parent: 2 type: Transform - - uid: 28588 + - uid: 28704 components: - pos: -2.5,-68.5 parent: 2 type: Transform - - uid: 28589 + - uid: 28705 components: - pos: -3.5,-68.5 parent: 2 type: Transform - - uid: 28590 + - uid: 28706 components: - pos: -4.5,-68.5 parent: 2 type: Transform - - uid: 28591 + - uid: 28707 components: - pos: -4.5,-67.5 parent: 2 type: Transform - - uid: 28592 + - uid: 28708 components: - pos: 5.5,-62.5 parent: 2 type: Transform - - uid: 28593 + - uid: 28709 components: - pos: 5.5,-64.5 parent: 2 type: Transform - - uid: 28594 + - uid: 28710 components: - pos: 5.5,-65.5 parent: 2 type: Transform - - uid: 28595 + - uid: 28711 components: - pos: 5.5,-66.5 parent: 2 type: Transform - - uid: 28596 + - uid: 28712 components: - pos: 4.5,-66.5 parent: 2 type: Transform - - uid: 28597 + - uid: 28713 components: - pos: 3.5,-66.5 parent: 2 type: Transform - - uid: 28598 + - uid: 28714 components: - pos: 2.5,-66.5 parent: 2 type: Transform - - uid: 28599 + - uid: 28715 components: - rot: -1.5707963267948966 rad pos: -11.5,-68.5 parent: 2 type: Transform - - uid: 28600 + - uid: 28716 components: - rot: -1.5707963267948966 rad pos: -7.5,-68.5 parent: 2 type: Transform - - uid: 28601 + - uid: 28717 components: - pos: 56.5,-32.5 parent: 2 type: Transform - - uid: 28602 + - uid: 28718 components: - pos: 11.5,-54.5 parent: 2 type: Transform - - uid: 28603 + - uid: 28719 components: - pos: 10.5,-54.5 parent: 2 type: Transform - - uid: 28604 + - uid: 28720 components: - pos: -21.5,-62.5 parent: 2 type: Transform - - uid: 28605 + - uid: 28721 components: - pos: -20.5,-62.5 parent: 2 type: Transform - - uid: 28606 + - uid: 28722 components: - pos: -18.5,-62.5 parent: 2 type: Transform - - uid: 28607 + - uid: 28723 components: - pos: 12.5,-54.5 parent: 2 type: Transform - - uid: 28608 + - uid: 28724 components: - pos: 14.5,-56.5 parent: 2 type: Transform - - uid: 28609 + - uid: 28725 components: - pos: 14.5,-54.5 parent: 2 type: Transform - - uid: 28610 + - uid: 28726 components: - pos: 13.5,-60.5 parent: 2 type: Transform - - uid: 28611 + - uid: 28727 components: - pos: 13.5,-61.5 parent: 2 type: Transform - - uid: 28612 + - uid: 28728 components: - pos: 13.5,-62.5 parent: 2 type: Transform - - uid: 28613 + - uid: 28729 components: - pos: 13.5,-64.5 parent: 2 type: Transform - - uid: 28614 + - uid: 28730 components: - pos: 12.5,-65.5 parent: 2 type: Transform - - uid: 28615 + - uid: 28731 components: - pos: 10.5,-65.5 parent: 2 type: Transform - - uid: 28616 + - uid: 28732 components: - pos: 10.5,-66.5 parent: 2 type: Transform - - uid: 28617 + - uid: 28733 components: - pos: -8.5,-20.5 parent: 2 type: Transform - - uid: 28618 + - uid: 28734 components: - rot: -1.5707963267948966 rad pos: -10.5,-20.5 parent: 2 type: Transform - - uid: 28619 + - uid: 28735 components: - rot: -1.5707963267948966 rad pos: -9.5,-20.5 parent: 2 type: Transform - - uid: 28620 + - uid: 28736 components: - rot: -1.5707963267948966 rad pos: -7.5,-20.5 parent: 2 type: Transform - - uid: 28621 + - uid: 28737 components: - rot: -1.5707963267948966 rad pos: -14.5,-21.5 parent: 2 type: Transform - - uid: 28622 + - uid: 28738 components: - rot: -1.5707963267948966 rad pos: -14.5,-23.5 parent: 2 type: Transform - - uid: 28623 + - uid: 28739 components: - rot: -1.5707963267948966 rad pos: -14.5,-24.5 parent: 2 type: Transform - - uid: 28624 + - uid: 28740 components: - pos: 38.5,-52.5 parent: 2 type: Transform - - uid: 28625 + - uid: 28741 components: - pos: 37.5,-52.5 parent: 2 type: Transform - - uid: 28626 + - uid: 28742 components: - pos: -7.5,-16.5 parent: 2 type: Transform - - uid: 28627 + - uid: 28743 components: - pos: -6.5,-12.5 parent: 2 type: Transform - - uid: 28628 + - uid: 28744 components: - rot: -1.5707963267948966 rad pos: -14.5,-13.5 parent: 2 type: Transform - - uid: 28629 + - uid: 28745 components: - rot: -1.5707963267948966 rad pos: -15.5,-44.5 parent: 2 type: Transform - - uid: 28630 + - uid: 28746 components: - pos: 17.5,-30.5 parent: 2 type: Transform - - uid: 28631 + - uid: 28747 components: - pos: -21.5,-63.5 parent: 2 type: Transform - - uid: 28632 + - uid: 28748 components: - pos: -21.5,-65.5 parent: 2 type: Transform - - uid: 28633 + - uid: 28749 components: - pos: -26.5,-68.5 parent: 2 type: Transform - - uid: 28634 + - uid: 28750 components: - pos: -26.5,-74.5 parent: 2 type: Transform - - uid: 28635 + - uid: 28751 components: - pos: -25.5,-74.5 parent: 2 type: Transform - - uid: 28636 + - uid: 28752 components: - pos: -15.5,-70.5 parent: 2 type: Transform - - uid: 28637 + - uid: 28753 components: - pos: -16.5,-70.5 parent: 2 type: Transform - - uid: 28638 + - uid: 28754 components: - pos: -16.5,-73.5 parent: 2 type: Transform - - uid: 28639 + - uid: 28755 components: - pos: -21.5,-76.5 parent: 2 type: Transform - - uid: 28640 + - uid: 28756 components: - pos: -6.5,-72.5 parent: 2 type: Transform - - uid: 28641 + - uid: 28757 components: - pos: 36.5,-49.5 parent: 2 type: Transform - - uid: 28642 + - uid: 28758 components: - pos: -7.5,-72.5 parent: 2 type: Transform - - uid: 28643 + - uid: 28759 components: - pos: -10.5,-72.5 parent: 2 type: Transform - - uid: 28644 + - uid: 28760 components: - pos: -10.5,-73.5 parent: 2 type: Transform - - uid: 28645 + - uid: 28761 components: - pos: -9.5,-73.5 parent: 2 type: Transform - - uid: 28646 + - uid: 28762 components: - pos: -7.5,-73.5 parent: 2 type: Transform - - uid: 28647 + - uid: 28763 components: - pos: 3.5,-70.5 parent: 2 type: Transform - - uid: 28648 + - uid: 28764 components: - pos: 3.5,-68.5 parent: 2 type: Transform - - uid: 28649 + - uid: 28765 components: - pos: 4.5,-68.5 parent: 2 type: Transform - - uid: 28650 + - uid: 28766 components: - pos: 5.5,-68.5 parent: 2 type: Transform - - uid: 28651 + - uid: 28767 components: - pos: 7.5,-67.5 parent: 2 type: Transform - - uid: 28652 + - uid: 28768 components: - pos: 8.5,-66.5 parent: 2 type: Transform - - uid: 28653 + - uid: 28769 components: - pos: -21.5,-74.5 parent: 2 type: Transform - - uid: 28654 + - uid: 28770 components: - pos: -13.5,-69.5 parent: 2 type: Transform - - uid: 28655 + - uid: 28771 components: - pos: -21.5,-82.5 parent: 2 type: Transform - - uid: 28656 + - uid: 28772 components: - pos: -21.5,-83.5 parent: 2 type: Transform - - uid: 28657 + - uid: 28773 components: - pos: 10.5,-13.5 parent: 2 type: Transform - - uid: 28658 + - uid: 28774 components: - pos: -10.5,-63.5 parent: 2 type: Transform - - uid: 28659 + - uid: 28775 components: - pos: -10.5,-65.5 parent: 2 type: Transform - - uid: 28660 + - uid: 28776 components: - rot: 1.5707963267948966 rad pos: -4.5,-65.5 parent: 2 type: Transform - - uid: 28661 + - uid: 28777 components: - rot: 1.5707963267948966 rad pos: -4.5,-66.5 parent: 2 type: Transform - - uid: 28662 + - uid: 28778 components: - pos: 40.5,-52.5 parent: 2 type: Transform - - uid: 28663 + - uid: 28779 components: - rot: 1.5707963267948966 rad pos: -4.5,-64.5 parent: 2 type: Transform - - uid: 28664 + - uid: 28780 components: - rot: 1.5707963267948966 rad pos: -4.5,-63.5 parent: 2 type: Transform - - uid: 28665 + - uid: 28781 components: - pos: -6.5,-35.5 parent: 2 type: Transform - - uid: 28666 + - uid: 28782 components: - pos: -13.5,-32.5 parent: 2 type: Transform - - uid: 28667 + - uid: 28783 components: - pos: -25.5,-7.5 parent: 2 type: Transform - - uid: 28668 + - uid: 28784 components: - rot: 3.141592653589793 rad pos: 21.5,-9.5 parent: 2 type: Transform - - uid: 28669 + - uid: 28785 components: - pos: 12.5,-13.5 parent: 2 type: Transform - - uid: 28670 + - uid: 28786 components: - pos: 3.5,-72.5 parent: 2 type: Transform - - uid: 28671 + - uid: 28787 components: - pos: 10.5,-68.5 parent: 2 type: Transform - - uid: 28672 + - uid: 28788 components: - pos: 7.5,-51.5 parent: 2 type: Transform - - uid: 28673 + - uid: 28789 components: - rot: 3.141592653589793 rad pos: 16.5,-14.5 parent: 2 type: Transform - - uid: 28674 + - uid: 28790 components: - rot: 1.5707963267948966 rad pos: 1.5,-55.5 parent: 2 type: Transform - - uid: 28675 + - uid: 28791 components: - rot: 1.5707963267948966 rad pos: -10.5,-58.5 parent: 2 type: Transform - - uid: 28676 + - uid: 28792 components: - pos: -5.5,9.5 parent: 2 type: Transform - - uid: 28677 + - uid: 28793 components: - rot: -1.5707963267948966 rad pos: 13.5,-6.5 parent: 2 type: Transform - - uid: 28678 + - uid: 28794 components: - pos: 9.5,-28.5 parent: 2 type: Transform - - uid: 28679 + - uid: 28795 components: - - rot: 3.141592653589793 rad - pos: 6.5,-3.5 + - pos: 5.5,-2.5 parent: 2 type: Transform - - uid: 28680 + - uid: 28796 components: - rot: 3.141592653589793 rad pos: -1.5,13.5 parent: 2 type: Transform - - uid: 28681 + - uid: 28797 components: - pos: -5.5,11.5 parent: 2 type: Transform - - uid: 28682 + - uid: 28798 components: - pos: 17.5,-7.5 parent: 2 type: Transform - - uid: 28683 + - uid: 28799 components: - pos: -9.5,13.5 parent: 2 type: Transform - - uid: 28684 + - uid: 28800 components: - pos: -5.5,12.5 parent: 2 type: Transform - - uid: 28685 + - uid: 28801 components: - pos: -11.5,5.5 parent: 2 type: Transform - - uid: 28686 + - uid: 28802 components: - pos: 13.5,-51.5 parent: 2 type: Transform - - uid: 28687 + - uid: 28803 components: - pos: 24.5,-3.5 parent: 2 type: Transform - - uid: 28688 + - uid: 28804 components: - pos: 15.5,-7.5 parent: 2 type: Transform - - uid: 28689 + - uid: 28805 components: - rot: -1.5707963267948966 rad pos: 31.5,-0.5 parent: 2 type: Transform - - uid: 28690 + - uid: 28806 components: - pos: 20.5,5.5 parent: 2 type: Transform - - uid: 28691 + - uid: 28807 components: - rot: -1.5707963267948966 rad pos: 31.5,2.5 parent: 2 type: Transform - - uid: 28692 + - uid: 28808 components: - pos: -1.5,0.5 parent: 2 type: Transform - - uid: 28693 + - uid: 28809 components: - pos: -1.5,1.5 parent: 2 type: Transform - - uid: 28694 + - uid: 28810 components: - pos: 15.5,5.5 parent: 2 type: Transform - - uid: 28695 + - uid: 28811 components: - pos: 30.5,-1.5 parent: 2 type: Transform - - uid: 28696 + - uid: 28812 components: - rot: 3.141592653589793 rad pos: 23.5,11.5 parent: 2 type: Transform - - uid: 28697 + - uid: 28813 components: - pos: 19.5,4.5 parent: 2 type: Transform - - uid: 28699 + - uid: 28814 components: - pos: -1.5,4.5 parent: 2 type: Transform - - uid: 28702 + - uid: 28815 components: - pos: 14.5,4.5 parent: 2 type: Transform - - uid: 28703 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-13.5 - parent: 2 - type: Transform - - uid: 28705 + - uid: 28816 components: - pos: -5.5,4.5 parent: 2 type: Transform - - uid: 28706 + - uid: 28817 components: - pos: 13.5,4.5 parent: 2 type: Transform - - uid: 28708 + - uid: 28818 components: - pos: 7.5,-3.5 parent: 2 type: Transform - - uid: 28709 + - uid: 28819 components: - pos: -13.5,-72.5 parent: 2 type: Transform - - uid: 28710 + - uid: 28820 components: - pos: 19.5,5.5 parent: 2 type: Transform - - uid: 28711 + - uid: 28821 components: - rot: 3.141592653589793 rad pos: 23.5,14.5 parent: 2 type: Transform - - uid: 28713 + - uid: 28822 components: - pos: -12.5,-28.5 parent: 2 type: Transform - - uid: 28714 + - uid: 28823 components: - pos: 15.5,-4.5 parent: 2 type: Transform - - uid: 28715 + - uid: 28824 components: - pos: 15.5,0.5 parent: 2 type: Transform - - uid: 28716 + - uid: 28825 components: - rot: 3.141592653589793 rad pos: -1.5,12.5 parent: 2 type: Transform - - uid: 28717 + - uid: 28826 components: - pos: 37.5,-38.5 parent: 2 type: Transform - - uid: 28718 + - uid: 28827 components: - rot: -1.5707963267948966 rad pos: -12.5,-76.5 parent: 2 type: Transform - - uid: 28719 + - uid: 28828 components: - rot: -1.5707963267948966 rad pos: -4.5,-76.5 parent: 2 type: Transform - - uid: 28720 + - uid: 28829 components: - rot: -1.5707963267948966 rad pos: -3.5,-79.5 parent: 2 type: Transform - - uid: 28721 + - uid: 28830 components: - rot: -1.5707963267948966 rad pos: -2.5,-76.5 parent: 2 type: Transform - - uid: 28722 + - uid: 28831 components: - rot: 1.5707963267948966 rad pos: 27.5,-52.5 parent: 2 type: Transform - - uid: 28723 + - uid: 28832 components: - pos: 8.5,4.5 parent: 2 type: Transform - - uid: 28724 + - uid: 28833 components: - pos: 37.5,-32.5 parent: 2 type: Transform - - uid: 28725 + - uid: 28834 components: - pos: 39.5,-27.5 parent: 2 type: Transform - - uid: 28726 + - uid: 28835 components: - pos: 39.5,-31.5 parent: 2 type: Transform - - uid: 28727 + - uid: 28836 components: - rot: -1.5707963267948966 rad pos: -17.5,-40.5 parent: 2 type: Transform - - uid: 28728 + - uid: 28837 components: - pos: -17.5,-39.5 parent: 2 type: Transform - - uid: 28729 + - uid: 28838 components: - rot: -1.5707963267948966 rad pos: -3.5,-77.5 parent: 2 type: Transform - - uid: 28730 + - uid: 28839 components: - rot: -1.5707963267948966 rad pos: -2.5,-81.5 parent: 2 type: Transform - - uid: 28731 + - uid: 28840 components: - rot: -1.5707963267948966 rad pos: -2.5,-80.5 parent: 2 type: Transform - - uid: 28732 + - uid: 28841 components: - rot: -1.5707963267948966 rad pos: -3.5,-80.5 parent: 2 type: Transform - - uid: 28733 + - uid: 28842 components: - rot: -1.5707963267948966 rad pos: -6.5,-76.5 parent: 2 type: Transform - - uid: 28734 + - uid: 28843 components: - pos: 7.5,4.5 parent: 2 type: Transform - - uid: 28735 + - uid: 28844 components: - rot: 1.5707963267948966 rad pos: -6.5,-22.5 parent: 2 type: Transform - - uid: 28736 + - uid: 28845 components: - pos: 38.5,-31.5 parent: 2 type: Transform - - uid: 28737 + - uid: 28846 components: - pos: -6.5,-18.5 parent: 2 type: Transform - - uid: 28738 + - uid: 28847 components: - pos: -6.5,-15.5 parent: 2 type: Transform - - uid: 28741 + - uid: 28848 components: - rot: 3.141592653589793 rad pos: -10.5,-47.5 parent: 2 type: Transform - - uid: 28742 + - uid: 28849 components: - rot: 1.5707963267948966 rad pos: -7.5,-24.5 parent: 2 type: Transform - - uid: 28743 + - uid: 28850 components: - pos: -4.5,9.5 parent: 2 type: Transform - - uid: 28744 + - uid: 28851 components: - rot: 1.5707963267948966 rad pos: 28.5,-44.5 parent: 2 type: Transform - - uid: 28745 + - uid: 28852 components: - pos: -21.5,-15.5 parent: 2 type: Transform - - uid: 28746 + - uid: 28853 components: - rot: -1.5707963267948966 rad pos: -27.5,-18.5 parent: 2 type: Transform - - uid: 28747 + - uid: 28854 components: - pos: -26.5,-15.5 parent: 2 type: Transform - - uid: 28748 + - uid: 28855 components: - pos: 19.5,23.5 parent: 2 type: Transform - - uid: 28749 + - uid: 28856 components: - pos: 27.5,-44.5 parent: 2 type: Transform - - uid: 28750 + - uid: 28857 components: - pos: -6.5,-30.5 parent: 2 type: Transform - - uid: 28751 + - uid: 28858 components: - pos: -6.5,-31.5 parent: 2 type: Transform - - uid: 28752 + - uid: 28859 components: - rot: -1.5707963267948966 rad pos: 10.5,-44.5 parent: 2 type: Transform - - uid: 28753 + - uid: 28860 components: - rot: -1.5707963267948966 rad pos: 11.5,-44.5 parent: 2 type: Transform - - uid: 28754 + - uid: 28861 components: - pos: 12.5,-48.5 parent: 2 type: Transform - - uid: 28755 + - uid: 28862 components: - pos: 9.5,-15.5 parent: 2 type: Transform - - uid: 28756 - components: - - pos: 8.5,-15.5 - parent: 2 - type: Transform - - uid: 28757 + - uid: 28863 components: - pos: 7.5,-15.5 parent: 2 type: Transform - - uid: 28758 + - uid: 28864 components: - pos: 6.5,-15.5 parent: 2 type: Transform - - uid: 28759 + - uid: 28865 components: - pos: 5.5,-15.5 parent: 2 type: Transform - - uid: 28760 + - uid: 28866 components: - pos: -10.5,-28.5 parent: 2 type: Transform - - uid: 28762 + - uid: 28867 components: - rot: 1.5707963267948966 rad pos: 7.5,-9.5 parent: 2 type: Transform - - uid: 28763 + - uid: 28868 components: - rot: 1.5707963267948966 rad pos: 7.5,-8.5 parent: 2 type: Transform - - uid: 28764 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-8.5 - parent: 2 - type: Transform - - uid: 28765 + - uid: 28869 components: - pos: 8.5,-40.5 parent: 2 type: Transform - - uid: 28766 + - uid: 28870 components: - rot: 3.141592653589793 rad pos: -10.5,-48.5 parent: 2 type: Transform - - uid: 28767 + - uid: 28871 components: - rot: 3.141592653589793 rad pos: 1.5,-49.5 parent: 2 type: Transform - - uid: 28768 + - uid: 28872 components: - rot: 3.141592653589793 rad pos: 1.5,-50.5 parent: 2 type: Transform - - uid: 28769 + - uid: 28873 components: - pos: -2.5,-51.5 parent: 2 type: Transform - - uid: 28770 + - uid: 28874 components: - rot: -1.5707963267948966 rad pos: -15.5,-40.5 parent: 2 type: Transform - - uid: 28771 + - uid: 28875 components: - rot: -1.5707963267948966 rad pos: -13.5,-40.5 parent: 2 type: Transform - - uid: 28772 + - uid: 28876 components: - rot: -1.5707963267948966 rad pos: 30.5,5.5 parent: 2 type: Transform - - uid: 28773 + - uid: 28877 components: - pos: 3.5,-15.5 parent: 2 type: Transform - - uid: 28774 + - uid: 28878 components: - pos: 14.5,-11.5 parent: 2 type: Transform - - uid: 28775 + - uid: 28879 components: - pos: 8.5,-13.5 parent: 2 type: Transform - - uid: 28776 + - uid: 28880 components: - rot: -1.5707963267948966 rad pos: 13.5,-5.5 parent: 2 type: Transform - - uid: 28777 + - uid: 28881 components: - pos: 8.5,-28.5 parent: 2 type: Transform - - uid: 28778 + - uid: 28882 components: - pos: 16.5,-12.5 parent: 2 type: Transform - - uid: 28779 + - uid: 28883 components: - pos: 16.5,-11.5 parent: 2 type: Transform - - uid: 28780 + - uid: 28884 components: - pos: 16.5,-10.5 parent: 2 type: Transform - - uid: 28781 + - uid: 28885 components: - pos: 16.5,-9.5 parent: 2 type: Transform - - uid: 28782 + - uid: 28886 components: - pos: 17.5,-9.5 parent: 2 type: Transform - - uid: 28783 + - uid: 28887 components: - pos: 0.5,-15.5 parent: 2 type: Transform - - uid: 28784 + - uid: 28888 components: - pos: 1.5,-15.5 parent: 2 type: Transform - - uid: 28785 + - uid: 28889 components: - pos: 11.5,-13.5 parent: 2 type: Transform - - uid: 28786 + - uid: 28890 components: - pos: 2.5,-15.5 parent: 2 type: Transform - - uid: 28787 + - uid: 28891 components: - pos: 14.5,-10.5 parent: 2 type: Transform - - uid: 28788 + - uid: 28892 components: - pos: 14.5,-9.5 parent: 2 type: Transform - - uid: 28789 + - uid: 28893 components: - pos: 19.5,-9.5 parent: 2 type: Transform - - uid: 28790 + - uid: 28894 components: - rot: 3.141592653589793 rad pos: 19.5,9.5 parent: 2 type: Transform - - uid: 28791 + - uid: 28895 components: - rot: 3.141592653589793 rad pos: 19.5,11.5 parent: 2 type: Transform - - uid: 28792 + - uid: 28896 components: - rot: 3.141592653589793 rad pos: 19.5,13.5 parent: 2 type: Transform - - uid: 28793 + - uid: 28897 components: - pos: -42.5,-29.5 parent: 2 type: Transform - - uid: 28794 + - uid: 28898 components: - pos: -37.5,-29.5 parent: 2 type: Transform - - uid: 28795 + - uid: 28899 components: - pos: 13.5,-13.5 parent: 2 type: Transform - - uid: 28796 + - uid: 28900 components: - pos: 14.5,-13.5 parent: 2 type: Transform - - uid: 28797 + - uid: 28901 components: - rot: 3.141592653589793 rad pos: 47.5,37.5 parent: 2 type: Transform - - uid: 28798 + - uid: 28902 components: - rot: 3.141592653589793 rad pos: 19.5,12.5 parent: 2 type: Transform - - uid: 28799 + - uid: 28903 components: - rot: 3.141592653589793 rad pos: 20.5,9.5 parent: 2 type: Transform - - uid: 28800 + - uid: 28904 components: - pos: 18.5,-9.5 parent: 2 type: Transform - - uid: 28801 + - uid: 28905 components: - rot: -1.5707963267948966 rad pos: 13.5,-8.5 parent: 2 type: Transform - - uid: 28802 + - uid: 28906 components: - pos: -5.5,10.5 parent: 2 type: Transform - - uid: 28803 + - uid: 28907 components: - rot: 3.141592653589793 rad pos: -1.5,11.5 parent: 2 type: Transform - - uid: 28804 + - uid: 28908 components: - pos: 4.5,4.5 parent: 2 type: Transform - - uid: 28805 + - uid: 28909 components: - pos: -1.5,6.5 parent: 2 type: Transform - - uid: 28806 + - uid: 28910 components: - rot: 3.141592653589793 rad pos: -1.5,10.5 parent: 2 type: Transform - - uid: 28807 - components: - - pos: 5.5,-3.5 - parent: 2 - type: Transform - - uid: 28808 + - uid: 28911 components: - pos: 7.5,5.5 parent: 2 type: Transform - - uid: 28809 + - uid: 28912 components: - rot: -1.5707963267948966 rad pos: -8.5,57.5 parent: 2 type: Transform - - uid: 28810 + - uid: 28913 components: - rot: 3.141592653589793 rad pos: 28.5,-7.5 parent: 2 type: Transform - - uid: 28811 + - uid: 28914 components: - pos: -3.5,-70.5 parent: 2 type: Transform - - uid: 28812 + - uid: 28915 components: - pos: 8.5,-50.5 parent: 2 type: Transform - - uid: 28813 + - uid: 28916 components: - pos: -17.5,-37.5 parent: 2 type: Transform - - uid: 28814 + - uid: 28917 components: - pos: -26.5,34.5 parent: 2 type: Transform - - uid: 28815 + - uid: 28918 components: - pos: -28.5,37.5 parent: 2 type: Transform - - uid: 28817 + - uid: 28919 components: - pos: 3.5,4.5 parent: 2 type: Transform - - uid: 28818 + - uid: 28920 components: - rot: 3.141592653589793 rad pos: 22.5,-9.5 parent: 2 type: Transform - - uid: 28819 + - uid: 28921 components: - pos: -9.5,4.5 parent: 2 type: Transform - - uid: 28820 + - uid: 28922 components: - pos: -9.5,-34.5 parent: 2 type: Transform - - uid: 28821 + - uid: 28923 components: - rot: -1.5707963267948966 rad pos: -16.5,-40.5 parent: 2 type: Transform - - uid: 28822 + - uid: 28924 components: - rot: -1.5707963267948966 rad pos: -7.5,-40.5 parent: 2 type: Transform - - uid: 28823 + - uid: 28925 components: - pos: -7.5,-28.5 parent: 2 type: Transform - - uid: 28824 + - uid: 28926 components: - pos: 15.5,1.5 parent: 2 type: Transform - - uid: 28825 + - uid: 28927 components: - rot: 1.5707963267948966 rad pos: -15.5,-24.5 parent: 2 type: Transform - - uid: 28826 + - uid: 28928 components: - pos: -17.5,-16.5 parent: 2 type: Transform - - uid: 28827 + - uid: 28929 components: - pos: 42.5,-6.5 parent: 2 type: Transform - - uid: 28828 + - uid: 28930 components: - pos: -17.5,-32.5 parent: 2 type: Transform - - uid: 28829 + - uid: 28931 components: - pos: -25.5,42.5 parent: 2 type: Transform - - uid: 28830 + - uid: 28932 components: - pos: -28.5,36.5 parent: 2 type: Transform - - uid: 28831 + - uid: 28933 components: - pos: -4.5,-70.5 parent: 2 type: Transform - - uid: 28832 + - uid: 28934 components: - pos: -4.5,-71.5 parent: 2 type: Transform - - uid: 28833 + - uid: 28935 components: - pos: 39.5,-52.5 parent: 2 type: Transform - - uid: 28834 + - uid: 28936 components: - pos: -0.5,4.5 parent: 2 type: Transform - - uid: 28835 + - uid: 28937 components: - pos: -4.5,-72.5 parent: 2 type: Transform - - uid: 28836 + - uid: 28938 components: - pos: 16.5,-49.5 parent: 2 type: Transform - - uid: 28837 + - uid: 28939 components: - pos: 16.5,-50.5 parent: 2 type: Transform - - uid: 28838 + - uid: 28940 components: - pos: 14.5,-55.5 parent: 2 type: Transform - - uid: 28839 + - uid: 28941 components: - pos: -17.5,-17.5 parent: 2 type: Transform - - uid: 28840 + - uid: 28942 components: - rot: 3.141592653589793 rad pos: 32.5,-7.5 parent: 2 type: Transform - - uid: 28841 + - uid: 28943 components: - pos: -21.5,-24.5 parent: 2 type: Transform - - uid: 28842 + - uid: 28944 components: - pos: 41.5,-57.5 parent: 2 type: Transform - - uid: 28843 + - uid: 28945 components: - rot: 1.5707963267948966 rad pos: -12.5,-24.5 parent: 2 type: Transform - - uid: 28844 + - uid: 28946 components: - pos: 36.5,-0.5 parent: 2 type: Transform - - uid: 28845 + - uid: 28947 components: - pos: 9.5,-54.5 parent: 2 type: Transform - - uid: 28846 + - uid: 28948 components: - pos: -17.5,-15.5 parent: 2 type: Transform - - uid: 28847 + - uid: 28949 components: - pos: 37.5,-40.5 parent: 2 type: Transform - - uid: 28848 + - uid: 28950 components: - pos: 38.5,-40.5 parent: 2 type: Transform - - uid: 28849 + - uid: 28951 components: - pos: 40.5,-40.5 parent: 2 type: Transform - - uid: 28850 + - uid: 28952 components: - pos: 27.5,-46.5 parent: 2 type: Transform - - uid: 28851 + - uid: 28953 components: - rot: 1.5707963267948966 rad pos: 27.5,-49.5 parent: 2 type: Transform - - uid: 28852 + - uid: 28954 components: - pos: 39.5,-40.5 parent: 2 type: Transform - - uid: 28853 + - uid: 28955 components: - pos: -11.5,4.5 parent: 2 type: Transform - - uid: 28854 + - uid: 28956 components: - pos: -2.5,13.5 parent: 2 type: Transform - - uid: 28855 + - uid: 28957 components: - rot: 3.141592653589793 rad pos: 23.5,12.5 parent: 2 type: Transform - - uid: 28856 + - uid: 28958 components: - rot: 3.141592653589793 rad pos: 23.5,13.5 parent: 2 type: Transform - - uid: 28857 + - uid: 28959 components: - pos: 28.5,5.5 parent: 2 type: Transform - - uid: 28858 + - uid: 28960 components: - rot: 3.141592653589793 rad pos: 3.5,10.5 parent: 2 type: Transform - - uid: 28859 + - uid: 28961 components: - rot: -1.5707963267948966 rad pos: 31.5,4.5 parent: 2 type: Transform - - uid: 28860 + - uid: 28962 components: - rot: -1.5707963267948966 rad pos: 31.5,-1.5 parent: 2 type: Transform - - uid: 28861 + - uid: 28963 components: - pos: -29.5,-76.5 parent: 2 type: Transform - - uid: 28862 + - uid: 28964 components: - pos: -11.5,11.5 parent: 2 type: Transform - - uid: 28863 + - uid: 28965 components: - pos: -2.5,4.5 parent: 2 type: Transform - - uid: 28865 + - uid: 28966 components: - rot: 3.141592653589793 rad pos: 61.5,14.5 parent: 2 type: Transform - - uid: 28866 + - uid: 28967 components: - rot: -1.5707963267948966 rad pos: 19.5,20.5 parent: 2 type: Transform - - uid: 28867 + - uid: 28968 components: - pos: 6.5,4.5 parent: 2 type: Transform - - uid: 28868 + - uid: 28969 components: - rot: -1.5707963267948966 rad pos: -18.5,38.5 parent: 2 type: Transform - - uid: 28869 + - uid: 28970 components: - pos: -17.5,-35.5 parent: 2 type: Transform - - uid: 28870 + - uid: 28971 components: - rot: 1.5707963267948966 rad pos: -14.5,-28.5 parent: 2 type: Transform - - uid: 28871 + - uid: 28972 components: - pos: -10.5,-62.5 parent: 2 type: Transform - - uid: 28872 + - uid: 28973 components: - pos: -10.5,-64.5 parent: 2 type: Transform - - uid: 28873 + - uid: 28974 components: - pos: -2.5,-70.5 parent: 2 type: Transform - - uid: 28874 + - uid: 28975 components: - pos: -1.5,-70.5 parent: 2 type: Transform - - uid: 28875 + - uid: 28976 components: - rot: 3.141592653589793 rad pos: 29.5,-7.5 parent: 2 type: Transform - - uid: 28876 + - uid: 28977 components: - pos: 13.5,-53.5 parent: 2 type: Transform - - uid: 28877 + - uid: 28978 components: - rot: -1.5707963267948966 rad pos: -10.5,57.5 parent: 2 type: Transform - - uid: 28878 + - uid: 28979 components: - pos: -5.5,-72.5 parent: 2 type: Transform - - uid: 28879 + - uid: 28980 components: - pos: 0.5,-70.5 parent: 2 type: Transform - - uid: 28880 + - uid: 28981 components: - pos: 1.5,-70.5 parent: 2 type: Transform - - uid: 28881 + - uid: 28982 components: - pos: 13.5,-46.5 parent: 2 type: Transform - - uid: 28882 + - uid: 28983 components: - pos: 42.5,-54.5 parent: 2 type: Transform - - uid: 28883 + - uid: 28984 components: - pos: -1.5,-11.5 parent: 2 type: Transform - - uid: 28884 + - uid: 28985 components: - pos: 13.5,-44.5 parent: 2 type: Transform - - uid: 28885 + - uid: 28986 components: - pos: 17.5,-44.5 parent: 2 type: Transform - - uid: 28886 + - uid: 28987 components: - pos: -28.5,-76.5 parent: 2 type: Transform - - uid: 28887 + - uid: 28988 components: - pos: -21.5,-80.5 parent: 2 type: Transform - - uid: 28888 + - uid: 28989 components: - pos: -11.5,10.5 parent: 2 type: Transform - - uid: 28889 + - uid: 28990 components: - pos: -0.5,-70.5 parent: 2 type: Transform - - uid: 28890 + - uid: 28991 components: - pos: -27.5,-76.5 parent: 2 type: Transform - - uid: 28891 + - uid: 28992 components: - pos: -20.5,-65.5 parent: 2 type: Transform - - uid: 28892 + - uid: 28993 components: - pos: -14.5,-72.5 parent: 2 type: Transform - - uid: 28893 + - uid: 28994 components: - pos: -17.5,-74.5 parent: 2 type: Transform - - uid: 28894 + - uid: 28995 components: - pos: -21.5,-79.5 parent: 2 type: Transform - - uid: 28895 + - uid: 28996 components: - pos: -21.5,-78.5 parent: 2 type: Transform - - uid: 28896 + - uid: 28997 components: - pos: -21.5,-77.5 parent: 2 type: Transform - - uid: 28897 + - uid: 28998 components: - pos: -26.5,-76.5 parent: 2 type: Transform - - uid: 28898 + - uid: 28999 components: - pos: -26.5,-75.5 parent: 2 type: Transform - - uid: 28899 + - uid: 29000 components: - rot: 3.141592653589793 rad pos: -10.5,-51.5 parent: 2 type: Transform - - uid: 28900 + - uid: 29001 components: - rot: 3.141592653589793 rad pos: -16.5,-51.5 parent: 2 type: Transform - - uid: 28901 + - uid: 29002 components: - pos: 16.5,-48.5 parent: 2 type: Transform - - uid: 28902 + - uid: 29003 components: - pos: -17.5,-67.5 parent: 2 type: Transform - - uid: 28903 + - uid: 29004 components: - pos: 10.5,-15.5 parent: 2 type: Transform - - uid: 28904 + - uid: 29005 components: - pos: 12.5,4.5 parent: 2 type: Transform - - uid: 28905 + - uid: 29006 components: - rot: 3.141592653589793 rad pos: 23.5,-7.5 parent: 2 type: Transform - - uid: 28906 + - uid: 29007 components: - pos: -32.5,-70.5 parent: 2 type: Transform - - uid: 28907 + - uid: 29008 components: - rot: 3.141592653589793 rad pos: 30.5,-7.5 parent: 2 type: Transform - - uid: 28908 + - uid: 29009 components: - pos: -27.5,-72.5 parent: 2 type: Transform - - uid: 28909 + - uid: 29010 components: - pos: 13.5,-65.5 parent: 2 type: Transform - - uid: 28910 + - uid: 29011 components: - pos: 10.5,-63.5 parent: 2 type: Transform - - uid: 28911 + - uid: 29012 components: - rot: 3.141592653589793 rad pos: 23.5,-8.5 parent: 2 type: Transform - - uid: 28912 + - uid: 29013 components: - pos: -6.5,-50.5 parent: 2 type: Transform - - uid: 28913 + - uid: 29014 components: - pos: -13.5,-70.5 parent: 2 type: Transform - - uid: 28914 + - uid: 29015 components: - pos: 14.5,-12.5 parent: 2 type: Transform - - uid: 28915 + - uid: 29016 components: - pos: 29.5,5.5 parent: 2 type: Transform - - uid: 28916 + - uid: 29017 components: - rot: -1.5707963267948966 rad pos: 31.5,5.5 parent: 2 type: Transform - - uid: 28917 + - uid: 29018 components: - rot: 1.5707963267948966 rad pos: 27.5,-48.5 parent: 2 type: Transform - - uid: 28918 + - uid: 29019 components: - pos: 27.5,-45.5 parent: 2 type: Transform - - uid: 28919 + - uid: 29020 components: - rot: 3.141592653589793 rad pos: 20.5,15.5 parent: 2 type: Transform - - uid: 28920 + - uid: 29021 components: - pos: -17.5,-13.5 parent: 2 type: Transform - - uid: 28921 + - uid: 29022 components: - pos: 43.5,-6.5 parent: 2 type: Transform - - uid: 28922 + - uid: 29023 components: - pos: 37.5,-54.5 parent: 2 type: Transform - - uid: 28923 + - uid: 29024 components: - pos: 17.5,-27.5 parent: 2 type: Transform - - uid: 28924 + - uid: 29025 components: - pos: -25.5,43.5 parent: 2 type: Transform - - uid: 28925 + - uid: 29026 components: - pos: -25.5,44.5 parent: 2 type: Transform - - uid: 28926 + - uid: 29027 components: - pos: -25.5,46.5 parent: 2 type: Transform - - uid: 28927 + - uid: 29028 components: - pos: -27.5,36.5 parent: 2 type: Transform - - uid: 28928 + - uid: 29029 components: - rot: 3.141592653589793 rad pos: 27.5,-7.5 parent: 2 type: Transform - - uid: 28929 + - uid: 29030 components: - rot: 3.141592653589793 rad pos: 21.5,-51.5 parent: 2 type: Transform - - uid: 28930 + - uid: 29031 components: - pos: -6.5,-39.5 parent: 2 type: Transform - - uid: 28931 + - uid: 29032 components: - rot: 1.5707963267948966 rad pos: -16.5,-24.5 parent: 2 type: Transform - - uid: 28932 + - uid: 29033 components: - pos: -17.5,-24.5 parent: 2 type: Transform - - uid: 28933 + - uid: 29034 components: - pos: 42.5,-55.5 parent: 2 type: Transform - - uid: 28934 + - uid: 29035 components: - pos: -26.5,32.5 parent: 2 type: Transform - - uid: 28935 + - uid: 29036 components: - pos: 37.5,-55.5 parent: 2 type: Transform - - uid: 28936 + - uid: 29037 components: - rot: 3.141592653589793 rad pos: 20.5,-51.5 parent: 2 type: Transform - - uid: 28937 + - uid: 29038 components: - pos: 15.5,-5.5 parent: 2 type: Transform - - uid: 28938 + - uid: 29039 components: - rot: 3.141592653589793 rad pos: 27.5,-9.5 parent: 2 type: Transform - - uid: 28939 + - uid: 29040 components: - rot: 3.141592653589793 rad pos: 21.5,-7.5 parent: 2 type: Transform - - uid: 28940 + - uid: 29041 components: - rot: -1.5707963267948966 rad pos: 6.5,-44.5 parent: 2 type: Transform - - uid: 28941 + - uid: 29042 components: - pos: 1.5,-72.5 parent: 2 type: Transform - - uid: 28942 + - uid: 29043 components: - rot: -1.5707963267948966 rad pos: 29.5,-2.5 parent: 2 type: Transform - - uid: 28943 + - uid: 29044 components: - rot: 3.141592653589793 rad pos: 34.5,-7.5 parent: 2 type: Transform - - uid: 28944 + - uid: 29045 components: - pos: 42.5,-53.5 parent: 2 type: Transform - - uid: 28945 + - uid: 29046 components: - rot: 3.141592653589793 rad pos: -10.5,-44.5 parent: 2 type: Transform - - uid: 28946 + - uid: 29047 components: - rot: 3.141592653589793 rad pos: 7.5,10.5 parent: 2 type: Transform - - uid: 28947 + - uid: 29048 components: - rot: -1.5707963267948966 rad pos: -11.5,-76.5 parent: 2 type: Transform - - uid: 28948 + - uid: 29049 components: - rot: 3.141592653589793 rad pos: 60.5,12.5 parent: 2 type: Transform - - uid: 28949 + - uid: 29050 components: - pos: 20.5,-3.5 parent: 2 type: Transform - - uid: 28950 + - uid: 29051 components: - pos: 2.5,-72.5 parent: 2 type: Transform - - uid: 28951 + - uid: 29052 components: - pos: 11.5,-68.5 parent: 2 type: Transform - - uid: 28952 + - uid: 29053 components: - pos: -18.5,-65.5 parent: 2 type: Transform - - uid: 28953 + - uid: 29054 components: - pos: 7.5,-58.5 parent: 2 type: Transform - - uid: 28954 + - uid: 29055 components: - rot: 1.5707963267948966 rad pos: 32.5,-44.5 parent: 2 type: Transform - - uid: 28955 + - uid: 29056 components: - rot: 1.5707963267948966 rad pos: 33.5,-44.5 parent: 2 type: Transform - - uid: 28956 + - uid: 29057 components: - pos: -2.5,-16.5 parent: 2 type: Transform - - uid: 28957 + - uid: 29058 components: - pos: -11.5,-28.5 parent: 2 type: Transform - - uid: 28958 + - uid: 29059 components: - pos: -7.5,-35.5 parent: 2 type: Transform - - uid: 28959 + - uid: 29060 components: - rot: 3.141592653589793 rad pos: 19.5,-7.5 parent: 2 type: Transform - - uid: 28960 + - uid: 29061 components: - pos: 29.5,-3.5 parent: 2 type: Transform - - uid: 28961 + - uid: 29062 components: - rot: -1.5707963267948966 rad pos: 31.5,-3.5 parent: 2 type: Transform - - uid: 28962 + - uid: 29063 components: - rot: 1.5707963267948966 rad pos: 27.5,-57.5 parent: 2 type: Transform - - uid: 28963 + - uid: 29064 components: - pos: -17.5,-33.5 parent: 2 type: Transform - - uid: 28964 + - uid: 29065 components: - pos: 35.5,-0.5 parent: 2 type: Transform - - uid: 28965 + - uid: 29066 components: - rot: -1.5707963267948966 rad pos: -11.5,14.5 parent: 2 type: Transform - - uid: 28966 + - uid: 29067 components: - pos: -23.5,36.5 parent: 2 type: Transform - - uid: 28967 + - uid: 29068 components: - pos: -23.5,37.5 parent: 2 type: Transform - - uid: 28968 + - uid: 29069 components: - pos: -23.5,39.5 parent: 2 type: Transform - - uid: 28969 + - uid: 29070 components: - pos: -5.5,13.5 parent: 2 type: Transform - - uid: 28970 + - uid: 29071 components: - pos: -10.5,-66.5 parent: 2 type: Transform - - uid: 28971 + - uid: 29072 components: - rot: -1.5707963267948966 rad pos: 21.5,19.5 parent: 2 type: Transform - - uid: 28972 + - uid: 29073 components: - pos: 20.5,-48.5 parent: 2 type: Transform - - uid: 28973 + - uid: 29074 components: - rot: -1.5707963267948966 rad pos: -3.5,-76.5 parent: 2 type: Transform - - uid: 28974 + - uid: 29075 components: - pos: -3.5,-73.5 parent: 2 type: Transform - - uid: 28975 + - uid: 29076 components: - pos: -2.5,-72.5 parent: 2 type: Transform - - uid: 28976 + - uid: 29077 components: - rot: 1.5707963267948966 rad pos: 32.5,-23.5 parent: 2 type: Transform - - uid: 28977 + - uid: 29078 components: - pos: 57.5,-64.5 parent: 2 type: Transform - - uid: 28978 + - uid: 29079 components: - pos: -14.5,-16.5 parent: 2 type: Transform - - uid: 28979 + - uid: 29080 components: - pos: -14.5,-19.5 parent: 2 type: Transform - - uid: 28980 + - uid: 29081 components: - pos: -17.5,-19.5 parent: 2 type: Transform - - uid: 28981 + - uid: 29082 components: - pos: -17.5,-18.5 parent: 2 type: Transform - - uid: 28982 + - uid: 29083 components: - pos: -17.5,-36.5 parent: 2 type: Transform - - uid: 28983 + - uid: 29084 components: - rot: -1.5707963267948966 rad pos: -7.5,-39.5 parent: 2 type: Transform - - uid: 28984 + - uid: 29085 components: - pos: 13.5,-30.5 parent: 2 type: Transform - - uid: 28985 + - uid: 29086 components: - pos: 16.5,-47.5 parent: 2 type: Transform - - uid: 28986 + - uid: 29087 components: - rot: 3.141592653589793 rad pos: 17.5,-51.5 parent: 2 type: Transform - - uid: 28987 + - uid: 29088 components: - pos: -14.5,-17.5 parent: 2 type: Transform - - uid: 28988 + - uid: 29089 components: - pos: 9.5,4.5 parent: 2 type: Transform - - uid: 28989 + - uid: 29090 components: - pos: 37.5,-29.5 parent: 2 type: Transform - - uid: 28990 + - uid: 29091 components: - pos: -23.5,-68.5 parent: 2 type: Transform - - uid: 28991 + - uid: 29092 components: - pos: 11.5,-56.5 parent: 2 type: Transform - - uid: 28992 + - uid: 29093 components: - pos: -7.5,-33.5 parent: 2 type: Transform - - uid: 28993 + - uid: 29094 components: - rot: 3.141592653589793 rad pos: -12.5,-32.5 parent: 2 type: Transform - - uid: 28994 + - uid: 29095 components: - pos: -12.5,-31.5 parent: 2 type: Transform - - uid: 28995 + - uid: 29096 components: - pos: -13.5,-34.5 parent: 2 type: Transform - - uid: 28996 + - uid: 29097 components: - pos: -13.5,-35.5 parent: 2 type: Transform - - uid: 28997 + - uid: 29098 components: - pos: -13.5,-36.5 parent: 2 type: Transform - - uid: 28998 + - uid: 29099 components: - pos: -13.5,-37.5 parent: 2 type: Transform - - uid: 28999 + - uid: 29100 components: - pos: -13.5,-39.5 parent: 2 type: Transform - - uid: 29000 + - uid: 29101 components: - pos: -16.5,-36.5 parent: 2 type: Transform - - uid: 29001 + - uid: 29102 components: - pos: -15.5,-36.5 parent: 2 type: Transform - - uid: 29002 + - uid: 29103 components: - pos: -14.5,-36.5 parent: 2 type: Transform - - uid: 29003 + - uid: 29104 components: - pos: -7.5,-32.5 parent: 2 type: Transform - - uid: 29004 + - uid: 29105 components: - pos: -7.5,-31.5 parent: 2 type: Transform - - uid: 29005 + - uid: 29106 components: - pos: -10.5,-31.5 parent: 2 type: Transform - - uid: 29006 + - uid: 29107 components: - pos: -9.5,-31.5 parent: 2 type: Transform - - uid: 29007 + - uid: 29108 components: - pos: -8.5,-31.5 parent: 2 type: Transform - - uid: 29008 + - uid: 29109 components: - pos: 10.5,-28.5 parent: 2 type: Transform - - uid: 29009 + - uid: 29110 components: - rot: 3.141592653589793 rad pos: 17.5,8.5 parent: 2 type: Transform - - uid: 29010 + - uid: 29111 components: - pos: 23.5,-47.5 parent: 2 type: Transform - - uid: 29011 + - uid: 29112 components: - rot: -1.5707963267948966 rad pos: 49.5,-36.5 parent: 2 type: Transform - - uid: 29012 + - uid: 29113 components: - rot: -1.5707963267948966 rad pos: 43.5,-34.5 parent: 2 type: Transform - - uid: 29013 + - uid: 29114 components: - rot: 1.5707963267948966 rad pos: 36.5,-9.5 parent: 2 type: Transform - - uid: 29014 + - uid: 29115 components: - rot: 1.5707963267948966 rad pos: 36.5,-10.5 parent: 2 type: Transform - - uid: 29015 + - uid: 29116 components: - rot: 1.5707963267948966 rad pos: 36.5,-11.5 parent: 2 type: Transform - - uid: 29016 + - uid: 29117 components: - rot: 1.5707963267948966 rad pos: 36.5,-7.5 parent: 2 type: Transform - - uid: 29017 + - uid: 29118 components: - pos: -6.5,-8.5 parent: 2 type: Transform - - uid: 29018 + - uid: 29119 components: - pos: -6.5,-10.5 parent: 2 type: Transform - - uid: 29019 + - uid: 29120 components: - pos: -17.5,-11.5 parent: 2 type: Transform - - uid: 29020 + - uid: 29121 components: - pos: -17.5,-12.5 parent: 2 type: Transform - - uid: 29021 + - uid: 29122 components: - pos: -11.5,0.5 parent: 2 type: Transform - - uid: 29022 + - uid: 29123 components: - pos: -13.5,14.5 parent: 2 type: Transform - - uid: 29023 + - uid: 29124 components: - pos: -15.5,14.5 parent: 2 type: Transform - - uid: 29024 + - uid: 29125 components: - pos: -21.5,13.5 parent: 2 type: Transform - - uid: 29025 + - uid: 29126 components: - pos: -21.5,10.5 parent: 2 type: Transform - - uid: 29026 + - uid: 29127 components: - pos: -17.5,13.5 parent: 2 type: Transform - - uid: 29027 + - uid: 29128 components: - pos: -17.5,12.5 parent: 2 type: Transform - - uid: 29028 + - uid: 29129 components: - pos: -17.5,14.5 parent: 2 type: Transform - - uid: 29029 + - uid: 29130 components: - pos: -16.5,14.5 parent: 2 type: Transform - - uid: 29030 + - uid: 29131 components: - pos: -15.5,-32.5 parent: 2 type: Transform - - uid: 29031 + - uid: 29132 components: - pos: -9.5,-30.5 parent: 2 type: Transform - - uid: 29032 + - uid: 29133 components: - pos: -15.5,-30.5 parent: 2 type: Transform - - uid: 29033 + - uid: 29134 components: - pos: -14.5,-30.5 parent: 2 type: Transform - - uid: 29034 + - uid: 29135 components: - pos: -14.5,-29.5 parent: 2 type: Transform - - uid: 29035 + - uid: 29136 components: - rot: -1.5707963267948966 rad pos: -15.5,16.5 parent: 2 type: Transform - - uid: 29036 + - uid: 29137 components: - rot: -1.5707963267948966 rad pos: -14.5,16.5 parent: 2 type: Transform - - uid: 29037 + - uid: 29138 components: - rot: -1.5707963267948966 rad pos: -13.5,16.5 parent: 2 type: Transform - - uid: 29038 + - uid: 29139 components: - rot: -1.5707963267948966 rad pos: -12.5,16.5 parent: 2 type: Transform - - uid: 29039 + - uid: 29140 components: - rot: -1.5707963267948966 rad pos: -11.5,16.5 parent: 2 type: Transform - - uid: 29040 + - uid: 29141 components: - rot: -1.5707963267948966 rad pos: -11.5,17.5 parent: 2 type: Transform - - uid: 29041 + - uid: 29142 components: - rot: -1.5707963267948966 rad pos: -9.5,17.5 parent: 2 type: Transform - - uid: 29042 + - uid: 29143 components: - pos: -15.5,-11.5 parent: 2 type: Transform - - uid: 29043 + - uid: 29144 components: - pos: -8.5,-16.5 parent: 2 type: Transform - - uid: 29044 + - uid: 29145 components: - pos: 23.5,-45.5 parent: 2 type: Transform - - uid: 29045 + - uid: 29146 components: - pos: 23.5,-44.5 parent: 2 type: Transform - - uid: 29046 + - uid: 29147 components: - pos: 23.5,-48.5 parent: 2 type: Transform - - uid: 29047 + - uid: 29148 components: - pos: 15.5,-46.5 parent: 2 type: Transform - - uid: 29048 + - uid: 29149 components: - pos: 18.5,-45.5 parent: 2 type: Transform - - uid: 29049 + - uid: 29150 components: - pos: 18.5,-46.5 parent: 2 type: Transform - - uid: 29050 + - uid: 29151 components: - pos: 18.5,-47.5 parent: 2 type: Transform - - uid: 29051 + - uid: 29152 components: - rot: -1.5707963267948966 rad pos: 31.5,0.5 parent: 2 type: Transform - - uid: 29052 + - uid: 29153 components: - pos: 61.5,7.5 parent: 2 type: Transform - - uid: 29053 + - uid: 29154 components: - pos: 61.5,5.5 parent: 2 type: Transform - - uid: 29054 + - uid: 29155 components: - pos: 64.5,1.5 parent: 2 type: Transform - - uid: 29055 + - uid: 29156 components: - pos: 65.5,0.5 parent: 2 type: Transform - - uid: 29056 + - uid: 29157 components: - pos: 60.5,0.5 parent: 2 type: Transform - - uid: 29057 + - uid: 29158 components: - pos: 17.5,30.5 parent: 2 type: Transform - - uid: 29058 + - uid: 29159 components: - rot: 1.5707963267948966 rad pos: 55.5,54.5 parent: 2 type: Transform - - uid: 29059 + - uid: 29160 components: - rot: 1.5707963267948966 rad pos: 56.5,54.5 parent: 2 type: Transform - - uid: 29060 + - uid: 29161 components: - rot: -1.5707963267948966 rad pos: -13.5,47.5 parent: 2 type: Transform - - uid: 29061 + - uid: 29162 components: - rot: -1.5707963267948966 rad pos: -13.5,48.5 parent: 2 type: Transform - - uid: 29062 + - uid: 29163 components: - pos: 47.5,34.5 parent: 2 type: Transform - - uid: 29063 + - uid: 29164 components: - pos: 47.5,33.5 parent: 2 type: Transform - - uid: 29064 + - uid: 29165 components: - pos: 47.5,31.5 parent: 2 type: Transform - - uid: 29065 + - uid: 29166 components: - pos: -9.5,47.5 parent: 2 type: Transform - - uid: 29066 + - uid: 29167 components: - pos: -10.5,47.5 parent: 2 type: Transform - - uid: 29067 + - uid: 29168 components: - rot: -1.5707963267948966 rad pos: -10.5,48.5 parent: 2 type: Transform - - uid: 29068 + - uid: 29169 components: - pos: -3.5,20.5 parent: 2 type: Transform - - uid: 29069 + - uid: 29170 components: - pos: -6.5,20.5 parent: 2 type: Transform - - uid: 29070 + - uid: 29171 components: - pos: -7.5,20.5 parent: 2 type: Transform - - uid: 29071 + - uid: 29172 components: - pos: -9.5,19.5 parent: 2 type: Transform - - uid: 29072 + - uid: 29173 components: - pos: -9.5,20.5 parent: 2 type: Transform - - uid: 29073 + - uid: 29174 components: - pos: -11.5,20.5 parent: 2 type: Transform - - uid: 29074 + - uid: 29175 components: - pos: -11.5,19.5 parent: 2 type: Transform - - uid: 29075 + - uid: 29176 components: - pos: 33.5,23.5 parent: 2 type: Transform - - uid: 29076 + - uid: 29177 components: - pos: 34.5,23.5 parent: 2 type: Transform - - uid: 29077 + - uid: 29178 components: - pos: 33.5,17.5 parent: 2 type: Transform - - uid: 29078 + - uid: 29179 components: - rot: 3.141592653589793 rad pos: 51.5,14.5 parent: 2 type: Transform - - uid: 29079 + - uid: 29180 components: - rot: 3.141592653589793 rad pos: 55.5,14.5 parent: 2 type: Transform - - uid: 29080 + - uid: 29181 components: - rot: 3.141592653589793 rad pos: 55.5,10.5 parent: 2 type: Transform - - uid: 29081 + - uid: 29182 components: - rot: 3.141592653589793 rad pos: 51.5,10.5 parent: 2 type: Transform - - uid: 29082 + - uid: 29183 components: - pos: 61.5,6.5 parent: 2 type: Transform - - uid: 29083 + - uid: 29184 components: - pos: 43.5,18.5 parent: 2 type: Transform - - uid: 29084 + - uid: 29185 components: - pos: 43.5,21.5 parent: 2 type: Transform - - uid: 29085 + - uid: 29186 components: - pos: 44.5,-0.5 parent: 2 type: Transform - - uid: 29086 + - uid: 29187 components: - pos: 47.5,-0.5 parent: 2 type: Transform - - uid: 29087 + - uid: 29188 components: - pos: 48.5,24.5 parent: 2 type: Transform - - uid: 29088 + - uid: 29189 components: - pos: 48.5,23.5 parent: 2 type: Transform - - uid: 29089 + - uid: 29190 components: - pos: 48.5,22.5 parent: 2 type: Transform - - uid: 29090 + - uid: 29191 components: - pos: 51.5,24.5 parent: 2 type: Transform - - uid: 29091 + - uid: 29192 components: - pos: 51.5,23.5 parent: 2 type: Transform - - uid: 29092 + - uid: 29193 components: - pos: 51.5,22.5 parent: 2 type: Transform - - uid: 29093 + - uid: 29194 components: - pos: 54.5,24.5 parent: 2 type: Transform - - uid: 29094 + - uid: 29195 components: - pos: 54.5,23.5 parent: 2 type: Transform - - uid: 29095 + - uid: 29196 components: - pos: 54.5,22.5 parent: 2 type: Transform - - uid: 29096 + - uid: 29197 components: - pos: 57.5,24.5 parent: 2 type: Transform - - uid: 29097 + - uid: 29198 components: - pos: 57.5,23.5 parent: 2 type: Transform - - uid: 29098 + - uid: 29199 components: - pos: 57.5,22.5 parent: 2 type: Transform - - uid: 29099 + - uid: 29200 components: - pos: 60.5,24.5 parent: 2 type: Transform - - uid: 29100 + - uid: 29201 components: - pos: 60.5,23.5 parent: 2 type: Transform - - uid: 29101 + - uid: 29202 components: - pos: 60.5,22.5 parent: 2 type: Transform - - uid: 29102 + - uid: 29203 components: - pos: 62.5,20.5 parent: 2 type: Transform - - uid: 29103 + - uid: 29204 components: - pos: 61.5,20.5 parent: 2 type: Transform - - uid: 29104 + - uid: 29205 components: - pos: 60.5,20.5 parent: 2 type: Transform - - uid: 29105 + - uid: 29206 components: - rot: 1.5707963267948966 rad pos: 46.5,27.5 parent: 2 type: Transform - - uid: 29106 + - uid: 29207 components: - rot: 1.5707963267948966 rad pos: 45.5,27.5 parent: 2 type: Transform - - uid: 29107 + - uid: 29208 components: - rot: 1.5707963267948966 rad pos: 44.5,27.5 parent: 2 type: Transform - - uid: 29108 + - uid: 29209 components: - rot: 1.5707963267948966 rad pos: 53.5,54.5 parent: 2 type: Transform - - uid: 29109 + - uid: 29210 components: - pos: 62.5,24.5 parent: 2 type: Transform - - uid: 29110 + - uid: 29211 components: - pos: 62.5,23.5 parent: 2 type: Transform - - uid: 29111 + - uid: 29212 components: - rot: 1.5707963267948966 rad pos: 48.5,11.5 parent: 2 type: Transform - - uid: 29112 + - uid: 29213 components: - rot: 1.5707963267948966 rad pos: 48.5,17.5 parent: 2 type: Transform - - uid: 29113 + - uid: 29214 components: - rot: 1.5707963267948966 rad pos: 58.5,17.5 parent: 2 type: Transform - - uid: 29114 + - uid: 29215 components: - rot: 1.5707963267948966 rad pos: 58.5,11.5 parent: 2 type: Transform - - uid: 29115 + - uid: 29216 components: - rot: 3.141592653589793 rad pos: 61.5,12.5 parent: 2 type: Transform - - uid: 29116 + - uid: 29217 components: - rot: 3.141592653589793 rad pos: 61.5,11.5 parent: 2 type: Transform - - uid: 29117 + - uid: 29218 components: - rot: 3.141592653589793 rad pos: 61.5,10.5 parent: 2 type: Transform - - uid: 29118 + - uid: 29219 components: - rot: 3.141592653589793 rad pos: 61.5,9.5 parent: 2 type: Transform - - uid: 29119 + - uid: 29220 components: - rot: 3.141592653589793 rad pos: 61.5,8.5 parent: 2 type: Transform - - uid: 29120 + - uid: 29221 components: - rot: 3.141592653589793 rad pos: 62.5,8.5 parent: 2 type: Transform - - uid: 29121 + - uid: 29222 components: - rot: 3.141592653589793 rad pos: 63.5,8.5 parent: 2 type: Transform - - uid: 29122 + - uid: 29223 components: - rot: 3.141592653589793 rad pos: 63.5,12.5 parent: 2 type: Transform - - uid: 29123 + - uid: 29224 components: - rot: 3.141592653589793 rad pos: 63.5,10.5 parent: 2 type: Transform - - uid: 29124 + - uid: 29225 components: - rot: -1.5707963267948966 rad pos: 51.5,12.5 parent: 2 type: Transform - - uid: 29125 + - uid: 29226 components: - pos: 58.5,-0.5 parent: 2 type: Transform - - uid: 29126 + - uid: 29227 components: - pos: 61.5,0.5 parent: 2 type: Transform - - uid: 29127 + - uid: 29228 components: - pos: 62.5,0.5 parent: 2 type: Transform - - uid: 29128 + - uid: 29229 components: - rot: 1.5707963267948966 rad pos: 55.5,2.5 parent: 2 type: Transform - - uid: 29129 + - uid: 29230 components: - rot: 1.5707963267948966 rad pos: 55.5,1.5 parent: 2 type: Transform - - uid: 29130 + - uid: 29231 components: - rot: 1.5707963267948966 rad pos: 55.5,0.5 parent: 2 type: Transform - - uid: 29131 + - uid: 29232 components: - rot: 1.5707963267948966 rad pos: 55.5,-1.5 parent: 2 type: Transform - - uid: 29132 + - uid: 29233 components: - rot: 1.5707963267948966 rad pos: 49.5,-0.5 parent: 2 type: Transform - - uid: 29133 + - uid: 29234 components: - rot: 1.5707963267948966 rad pos: 49.5,-2.5 parent: 2 type: Transform - - uid: 29134 + - uid: 29235 components: - rot: 1.5707963267948966 rad pos: 49.5,-1.5 parent: 2 type: Transform - - uid: 29135 + - uid: 29236 components: - rot: 1.5707963267948966 rad pos: 50.5,-2.5 parent: 2 type: Transform - - uid: 29136 + - uid: 29237 components: - rot: 1.5707963267948966 rad pos: 50.5,-3.5 parent: 2 type: Transform - - uid: 29137 + - uid: 29238 components: - rot: 1.5707963267948966 rad pos: 55.5,-2.5 parent: 2 type: Transform - - uid: 29138 + - uid: 29239 components: - rot: 1.5707963267948966 rad pos: 54.5,-2.5 parent: 2 type: Transform - - uid: 29139 + - uid: 29240 components: - rot: 1.5707963267948966 rad pos: 54.5,-3.5 parent: 2 type: Transform - - uid: 29140 + - uid: 29241 components: - rot: 1.5707963267948966 rad pos: 50.5,-4.5 parent: 2 type: Transform - - uid: 29141 + - uid: 29242 components: - rot: 1.5707963267948966 rad pos: 49.5,-4.5 parent: 2 type: Transform - - uid: 29142 + - uid: 29243 components: - rot: 1.5707963267948966 rad pos: 48.5,-4.5 parent: 2 type: Transform - - uid: 29143 + - uid: 29244 components: - rot: 1.5707963267948966 rad pos: 47.5,-4.5 parent: 2 type: Transform - - uid: 29144 + - uid: 29245 components: - rot: 1.5707963267948966 rad pos: 46.5,-4.5 parent: 2 type: Transform - - uid: 29145 + - uid: 29246 components: - rot: -1.5707963267948966 rad pos: 45.5,-2.5 parent: 2 type: Transform - - uid: 29146 + - uid: 29247 components: - pos: 49.5,-5.5 parent: 2 type: Transform - - uid: 29147 + - uid: 29248 components: - pos: 49.5,-6.5 parent: 2 type: Transform - - uid: 29148 + - uid: 29249 components: - pos: 49.5,-10.5 parent: 2 type: Transform - - uid: 29149 + - uid: 29250 components: - pos: 48.5,-10.5 parent: 2 type: Transform - - uid: 29150 + - uid: 29251 components: - rot: 1.5707963267948966 rad pos: 54.5,-4.5 parent: 2 type: Transform - - uid: 29151 + - uid: 29252 components: - rot: 1.5707963267948966 rad pos: 55.5,-4.5 parent: 2 type: Transform - - uid: 29152 + - uid: 29253 components: - rot: 1.5707963267948966 rad pos: 56.5,-4.5 parent: 2 type: Transform - - uid: 29153 + - uid: 29254 components: - rot: 1.5707963267948966 rad pos: 58.5,-4.5 parent: 2 type: Transform - - uid: 29154 + - uid: 29255 components: - pos: 19.5,-48.5 parent: 2 type: Transform - - uid: 29155 + - uid: 29256 components: - pos: 18.5,-48.5 parent: 2 type: Transform - - uid: 29156 + - uid: 29257 components: - rot: -1.5707963267948966 rad pos: 45.5,-4.5 parent: 2 type: Transform - - uid: 29157 + - uid: 29258 components: - rot: -1.5707963267948966 rad pos: 40.5,-2.5 parent: 2 type: Transform - - uid: 29158 + - uid: 29259 components: - rot: -1.5707963267948966 rad pos: 40.5,-3.5 parent: 2 type: Transform - - uid: 29159 + - uid: 29260 components: - rot: -1.5707963267948966 rad pos: 45.5,-1.5 parent: 2 type: Transform - - uid: 29160 + - uid: 29261 components: - rot: -1.5707963267948966 rad pos: 40.5,-5.5 parent: 2 type: Transform - - uid: 29161 + - uid: 29262 components: - rot: -1.5707963267948966 rad pos: 39.5,-6.5 parent: 2 type: Transform - - uid: 29162 + - uid: 29263 components: - rot: -1.5707963267948966 rad pos: 45.5,-5.5 parent: 2 type: Transform - - uid: 29163 + - uid: 29264 components: - rot: -1.5707963267948966 rad pos: 37.5,-6.5 parent: 2 type: Transform - - uid: 29164 + - uid: 29265 components: - rot: -1.5707963267948966 rad pos: 37.5,-7.5 parent: 2 type: Transform - - uid: 29165 + - uid: 29266 components: - rot: -1.5707963267948966 rad pos: 45.5,-3.5 parent: 2 type: Transform - - uid: 29166 + - uid: 29267 components: - pos: 40.5,-6.5 parent: 2 type: Transform - - uid: 29167 + - uid: 29268 components: - pos: -14.5,-18.5 parent: 2 type: Transform - - uid: 29168 + - uid: 29269 components: - pos: 24.5,-54.5 parent: 2 type: Transform - - uid: 29169 + - uid: 29270 components: - pos: -17.5,-21.5 parent: 2 type: Transform - - uid: 29170 + - uid: 29271 components: - pos: 55.5,-7.5 parent: 2 type: Transform - - uid: 29171 + - uid: 29272 components: - pos: 49.5,-3.5 parent: 2 type: Transform - - uid: 29172 + - uid: 29273 components: - pos: 58.5,0.5 parent: 2 type: Transform - - uid: 29173 + - uid: 29274 components: - pos: 58.5,-1.5 parent: 2 type: Transform - - uid: 29174 + - uid: 29275 components: - pos: 58.5,-2.5 parent: 2 type: Transform - - uid: 29175 + - uid: 29276 components: - pos: 57.5,-2.5 parent: 2 type: Transform - - uid: 29176 + - uid: 29277 components: - pos: 59.5,-4.5 parent: 2 type: Transform - - uid: 29177 + - uid: 29278 components: - pos: 48.5,-9.5 parent: 2 type: Transform - - uid: 29178 + - uid: 29279 components: - pos: 48.5,-6.5 parent: 2 type: Transform - - uid: 29179 + - uid: 29280 components: - pos: 48.5,-7.5 parent: 2 type: Transform - - uid: 29180 + - uid: 29281 components: - pos: 6.5,-17.5 parent: 2 type: Transform - - uid: 29181 + - uid: 29282 components: - rot: 1.5707963267948966 rad pos: 66.5,-6.5 parent: 2 type: Transform - - uid: 29182 + - uid: 29283 components: - rot: 1.5707963267948966 rad pos: 66.5,-12.5 parent: 2 type: Transform - - uid: 29183 + - uid: 29284 components: - rot: 1.5707963267948966 rad pos: 66.5,-10.5 parent: 2 type: Transform - - uid: 29184 + - uid: 29285 components: - pos: 65.5,-4.5 parent: 2 type: Transform - - uid: 29185 + - uid: 29286 components: - pos: 63.5,-4.5 parent: 2 type: Transform - - uid: 29186 + - uid: 29287 components: - pos: 61.5,-4.5 parent: 2 type: Transform - - uid: 29187 + - uid: 29288 components: - rot: -1.5707963267948966 rad pos: 62.5,-4.5 parent: 2 type: Transform - - uid: 29188 + - uid: 29289 components: - pos: 53.5,-14.5 parent: 2 type: Transform - - uid: 29189 + - uid: 29290 components: - pos: 61.5,-14.5 parent: 2 type: Transform - - uid: 29190 + - uid: 29291 components: - pos: 60.5,-14.5 parent: 2 type: Transform - - uid: 29191 + - uid: 29292 components: - pos: 59.5,-7.5 parent: 2 type: Transform - - uid: 29192 + - uid: 29293 components: - pos: 58.5,-7.5 parent: 2 type: Transform - - uid: 29193 + - uid: 29294 components: - pos: 57.5,-7.5 parent: 2 type: Transform - - uid: 29194 + - uid: 29295 components: - pos: 56.5,-7.5 parent: 2 type: Transform - - uid: 29195 + - uid: 29296 components: - pos: 59.5,-9.5 parent: 2 type: Transform - - uid: 29196 + - uid: 29297 components: - pos: 58.5,-9.5 parent: 2 type: Transform - - uid: 29197 + - uid: 29298 components: - pos: 57.5,-9.5 parent: 2 type: Transform - - uid: 29198 + - uid: 29299 components: - pos: 56.5,-9.5 parent: 2 type: Transform - - uid: 29199 + - uid: 29300 components: - pos: 55.5,-9.5 parent: 2 type: Transform - - uid: 29200 + - uid: 29301 components: - pos: 55.5,-8.5 parent: 2 type: Transform - - uid: 29201 + - uid: 29302 components: - rot: 3.141592653589793 rad pos: 58.5,-3.5 parent: 2 type: Transform - - uid: 29202 + - uid: 29303 components: - pos: 60.5,-29.5 parent: 2 type: Transform - - uid: 29203 + - uid: 29304 components: - pos: 60.5,-30.5 parent: 2 type: Transform - - uid: 29204 + - uid: 29305 components: - pos: 49.5,-11.5 parent: 2 type: Transform - - uid: 29205 + - uid: 29306 components: - pos: 49.5,-12.5 parent: 2 type: Transform - - uid: 29206 + - uid: 29307 components: - pos: 50.5,-12.5 parent: 2 type: Transform - - uid: 29207 + - uid: 29308 components: - pos: 35.5,-11.5 parent: 2 type: Transform - - uid: 29208 + - uid: 29309 components: - pos: 37.5,-9.5 parent: 2 type: Transform - - uid: 29209 + - uid: 29310 components: - pos: 38.5,-9.5 parent: 2 type: Transform - - uid: 29210 + - uid: 29311 components: - pos: 39.5,-9.5 parent: 2 type: Transform - - uid: 29211 + - uid: 29312 components: - pos: 39.5,-8.5 parent: 2 type: Transform - - uid: 29212 + - uid: 29313 components: - pos: 41.5,-6.5 parent: 2 type: Transform - - uid: 29213 + - uid: 29314 components: - pos: 41.5,-7.5 parent: 2 type: Transform - - uid: 29214 + - uid: 29315 components: - pos: 41.5,-8.5 parent: 2 type: Transform - - uid: 29215 + - uid: 29316 components: - pos: 41.5,-9.5 parent: 2 type: Transform - - uid: 29216 + - uid: 29317 components: - pos: 41.5,-10.5 parent: 2 type: Transform - - uid: 29217 + - uid: 29318 components: - pos: 39.5,-10.5 parent: 2 type: Transform - - uid: 29218 + - uid: 29319 components: - pos: 39.5,-11.5 parent: 2 type: Transform - - uid: 29219 + - uid: 29320 components: - pos: 37.5,-11.5 parent: 2 type: Transform - - uid: 29220 + - uid: 29321 components: - pos: 37.5,-12.5 parent: 2 type: Transform - - uid: 29221 + - uid: 29322 components: - pos: 37.5,-14.5 parent: 2 type: Transform - - uid: 29222 + - uid: 29323 components: - pos: 45.5,-6.5 parent: 2 type: Transform - - uid: 29223 + - uid: 29324 components: - pos: 45.5,-7.5 parent: 2 type: Transform - - uid: 29224 + - uid: 29325 components: - pos: 45.5,-8.5 parent: 2 type: Transform - - uid: 29225 + - uid: 29326 components: - pos: 45.5,-9.5 parent: 2 type: Transform - - uid: 29226 + - uid: 29327 components: - pos: 43.5,-9.5 parent: 2 type: Transform - - uid: 29227 + - uid: 29328 components: - pos: 45.5,-10.5 parent: 2 type: Transform - - uid: 29228 + - uid: 29329 components: - pos: 45.5,-12.5 parent: 2 type: Transform - - uid: 29229 + - uid: 29330 components: - pos: 44.5,-12.5 parent: 2 type: Transform - - uid: 29230 + - uid: 29331 components: - pos: 42.5,-12.5 parent: 2 type: Transform - - uid: 29231 + - uid: 29332 components: - pos: 41.5,-12.5 parent: 2 type: Transform - - uid: 29232 + - uid: 29333 components: - pos: 41.5,-13.5 parent: 2 type: Transform - - uid: 29233 + - uid: 29334 components: - pos: 40.5,-13.5 parent: 2 type: Transform - - uid: 29234 + - uid: 29335 components: - pos: 39.5,-13.5 parent: 2 type: Transform - - uid: 29235 + - uid: 29336 components: - pos: 46.5,-12.5 parent: 2 type: Transform - - uid: 29236 + - uid: 29337 components: - pos: 47.5,-12.5 parent: 2 type: Transform - - uid: 29237 + - uid: 29338 components: - pos: 47.5,-11.5 parent: 2 type: Transform - - uid: 29238 + - uid: 29339 components: - pos: 47.5,-10.5 parent: 2 type: Transform - - uid: 29239 + - uid: 29340 components: - pos: 46.5,-6.5 parent: 2 type: Transform - - uid: 29240 + - uid: 29341 components: - pos: 69.5,-35.5 parent: 2 type: Transform - - uid: 29241 + - uid: 29342 components: - pos: 66.5,-36.5 parent: 2 type: Transform - - uid: 29242 + - uid: 29343 components: - pos: 58.5,-40.5 parent: 2 type: Transform - - uid: 29243 + - uid: 29344 components: - pos: 58.5,-41.5 parent: 2 type: Transform - - uid: 29244 + - uid: 29345 components: - pos: 58.5,-42.5 parent: 2 type: Transform - - uid: 29245 + - uid: 29346 components: - pos: 65.5,-36.5 parent: 2 type: Transform - - uid: 29246 + - uid: 29347 components: - rot: 1.5707963267948966 rad pos: 60.5,-38.5 parent: 2 type: Transform - - uid: 29247 + - uid: 29348 components: - rot: 1.5707963267948966 rad pos: 60.5,-39.5 parent: 2 type: Transform - - uid: 29248 + - uid: 29349 components: - pos: 60.5,-41.5 parent: 2 type: Transform - - uid: 29249 + - uid: 29350 components: - pos: 41.5,-40.5 parent: 2 type: Transform - - uid: 29250 + - uid: 29351 components: - rot: -1.5707963267948966 rad pos: 44.5,-34.5 parent: 2 type: Transform - - uid: 29251 + - uid: 29352 components: - rot: -1.5707963267948966 rad pos: 47.5,-34.5 parent: 2 type: Transform - - uid: 29252 + - uid: 29353 components: - rot: -1.5707963267948966 rad pos: 42.5,-34.5 parent: 2 type: Transform - - uid: 29253 + - uid: 29354 components: - rot: -1.5707963267948966 rad pos: 51.5,-36.5 parent: 2 type: Transform - - uid: 29254 + - uid: 29355 components: - rot: 3.141592653589793 rad pos: 44.5,-40.5 parent: 2 type: Transform - - uid: 29255 + - uid: 29356 components: - pos: 47.5,-40.5 parent: 2 type: Transform - - uid: 29256 + - uid: 29357 components: - pos: 47.5,-44.5 parent: 2 type: Transform - - uid: 29257 + - uid: 29358 components: - pos: 46.5,-44.5 parent: 2 type: Transform - - uid: 29258 + - uid: 29359 components: - pos: 45.5,-44.5 parent: 2 type: Transform - - uid: 29259 + - uid: 29360 components: - pos: 41.5,-44.5 parent: 2 type: Transform - - uid: 29260 + - uid: 29361 components: - rot: -1.5707963267948966 rad pos: 40.5,-34.5 parent: 2 type: Transform - - uid: 29261 + - uid: 29362 components: - rot: -1.5707963267948966 rad pos: 52.5,-36.5 parent: 2 type: Transform - - uid: 29262 + - uid: 29363 components: - pos: 53.5,-38.5 parent: 2 type: Transform - - uid: 29263 + - uid: 29364 components: - rot: -1.5707963267948966 rad pos: 41.5,-34.5 parent: 2 type: Transform - - uid: 29264 + - uid: 29365 components: - pos: 47.5,-39.5 parent: 2 type: Transform - - uid: 29265 + - uid: 29366 components: - pos: 47.5,-38.5 parent: 2 type: Transform - - uid: 29266 + - uid: 29367 components: - pos: 54.5,-39.5 parent: 2 type: Transform - - uid: 29267 + - uid: 29368 components: - pos: 52.5,-38.5 parent: 2 type: Transform - - uid: 29268 + - uid: 29369 components: - pos: 54.5,-38.5 parent: 2 type: Transform - - uid: 29269 + - uid: 29370 components: - pos: 56.5,-33.5 parent: 2 type: Transform - - uid: 29270 + - uid: 29371 components: - pos: 59.5,-37.5 parent: 2 type: Transform - - uid: 29271 + - uid: 29372 components: - pos: 59.5,-36.5 parent: 2 type: Transform - - uid: 29272 + - uid: 29373 components: - pos: 58.5,-36.5 parent: 2 type: Transform - - uid: 29273 + - uid: 29374 components: - pos: 47.5,-47.5 parent: 2 type: Transform - - uid: 29274 + - uid: 29375 components: - pos: 54.5,-40.5 parent: 2 type: Transform - - uid: 29275 + - uid: 29376 components: - pos: 55.5,-40.5 parent: 2 type: Transform - - uid: 29276 + - uid: 29377 components: - pos: 54.5,-42.5 parent: 2 type: Transform - - uid: 29277 + - uid: 29378 components: - pos: 54.5,-43.5 parent: 2 type: Transform - - uid: 29278 + - uid: 29379 components: - pos: 51.5,-48.5 parent: 2 type: Transform - - uid: 29279 + - uid: 29380 components: - pos: 48.5,-48.5 parent: 2 type: Transform - - uid: 29280 + - uid: 29381 components: - pos: 47.5,-48.5 parent: 2 type: Transform - - uid: 29281 + - uid: 29382 components: - pos: 56.5,-40.5 parent: 2 type: Transform - - uid: 29282 + - uid: 29383 components: - pos: 57.5,-40.5 parent: 2 type: Transform - - uid: 29283 + - uid: 29384 components: - rot: -1.5707963267948966 rad pos: 48.5,-36.5 parent: 2 type: Transform - - uid: 29284 + - uid: 29385 components: - pos: 58.5,-43.5 parent: 2 type: Transform - - uid: 29285 + - uid: 29386 components: - pos: 55.5,-43.5 parent: 2 type: Transform - - uid: 29286 + - uid: 29387 components: - pos: 56.5,-43.5 parent: 2 type: Transform - - uid: 29287 + - uid: 29388 components: - pos: 47.5,-49.5 parent: 2 type: Transform - - uid: 29288 + - uid: 29389 components: - pos: 47.5,-50.5 parent: 2 type: Transform - - uid: 29289 + - uid: 29390 components: - pos: 46.5,-50.5 parent: 2 type: Transform - - uid: 29290 + - uid: 29391 components: - pos: 45.5,-50.5 parent: 2 type: Transform - - uid: 29291 + - uid: 29392 components: - pos: 44.5,-50.5 parent: 2 type: Transform - - uid: 29292 + - uid: 29393 components: - pos: 43.5,-50.5 parent: 2 type: Transform - - uid: 29293 + - uid: 29394 components: - pos: 42.5,-50.5 parent: 2 type: Transform - - uid: 29294 + - uid: 29395 components: - pos: 41.5,-50.5 parent: 2 type: Transform - - uid: 29295 + - uid: 29396 components: - pos: 57.5,-31.5 parent: 2 type: Transform - - uid: 29296 + - uid: 29397 components: - pos: 47.5,-35.5 parent: 2 type: Transform - - uid: 29297 + - uid: 29398 components: - rot: -1.5707963267948966 rad pos: 46.5,-34.5 parent: 2 type: Transform - - uid: 29298 + - uid: 29399 components: - pos: 66.5,-49.5 parent: 2 type: Transform - - uid: 29299 + - uid: 29400 components: - pos: 66.5,-44.5 parent: 2 type: Transform - - uid: 29300 + - uid: 29401 components: - pos: 66.5,-43.5 parent: 2 type: Transform - - uid: 29301 + - uid: 29402 components: - pos: 37.5,-44.5 parent: 2 type: Transform - - uid: 29302 + - uid: 29403 components: - pos: 40.5,-45.5 parent: 2 type: Transform - - uid: 29303 + - uid: 29404 components: - pos: 40.5,-47.5 parent: 2 type: Transform - - uid: 29304 + - uid: 29405 components: - pos: 40.5,-44.5 parent: 2 type: Transform - - uid: 29305 + - uid: 29406 components: - pos: 40.5,-48.5 parent: 2 type: Transform - - uid: 29306 + - uid: 29407 components: - rot: -1.5707963267948966 rad pos: -17.5,23.5 parent: 2 type: Transform - - uid: 29307 + - uid: 29408 components: - pos: 46.5,-40.5 parent: 2 type: Transform - - uid: 29308 + - uid: 29409 components: - pos: 52.5,-59.5 parent: 2 type: Transform - - uid: 29309 + - uid: 29410 components: - pos: 52.5,-60.5 parent: 2 type: Transform - - uid: 29310 + - uid: 29411 components: - pos: 66.5,-35.5 parent: 2 type: Transform - - uid: 29311 + - uid: 29412 components: - pos: 67.5,-35.5 parent: 2 type: Transform - - uid: 29312 + - uid: 29413 components: - pos: 68.5,-35.5 parent: 2 type: Transform - - uid: 29313 + - uid: 29414 components: - rot: -1.5707963267948966 rad pos: 66.5,-47.5 parent: 2 type: Transform - - uid: 29314 + - uid: 29415 components: - rot: 3.141592653589793 rad pos: 40.5,-46.5 parent: 2 type: Transform - - uid: 29315 + - uid: 29416 components: - pos: 8.5,-51.5 parent: 2 type: Transform - - uid: 29316 + - uid: 29417 components: - pos: 38.5,-47.5 parent: 2 type: Transform - - uid: 29317 + - uid: 29418 components: - pos: 37.5,-47.5 parent: 2 type: Transform - - uid: 29318 + - uid: 29419 components: - pos: 37.5,-46.5 parent: 2 type: Transform - - uid: 29319 + - uid: 29420 components: - pos: 37.5,-45.5 parent: 2 type: Transform - - uid: 29320 + - uid: 29421 components: - pos: 57.5,-63.5 parent: 2 type: Transform - - uid: 29321 + - uid: 29422 components: - pos: 57.5,-36.5 parent: 2 type: Transform - - uid: 29322 + - uid: 29423 components: - pos: 74.5,-50.5 parent: 2 type: Transform - - uid: 29323 + - uid: 29424 components: - pos: 59.5,-30.5 parent: 2 type: Transform - - uid: 29324 + - uid: 29425 components: - pos: 56.5,-31.5 parent: 2 type: Transform - - uid: 29325 + - uid: 29426 components: - pos: 58.5,-31.5 parent: 2 type: Transform - - uid: 29326 + - uid: 29427 components: - rot: -1.5707963267948966 rad pos: 47.5,-36.5 parent: 2 type: Transform - - uid: 29327 + - uid: 29428 components: - rot: 1.5707963267948966 rad pos: 29.5,-46.5 parent: 2 type: Transform - - uid: 29328 + - uid: 29429 components: - rot: 1.5707963267948966 rad pos: 30.5,-46.5 parent: 2 type: Transform - - uid: 29329 + - uid: 29430 components: - rot: 1.5707963267948966 rad pos: 32.5,-46.5 parent: 2 type: Transform - - uid: 29330 + - uid: 29431 components: - rot: 1.5707963267948966 rad pos: 34.5,-46.5 parent: 2 type: Transform - - uid: 29331 + - uid: 29432 components: - rot: 1.5707963267948966 rad pos: 35.5,-46.5 parent: 2 type: Transform - - uid: 29332 + - uid: 29433 components: - rot: 1.5707963267948966 rad pos: 35.5,-45.5 parent: 2 type: Transform - - uid: 29333 + - uid: 29434 components: - rot: 1.5707963267948966 rad pos: 35.5,-47.5 parent: 2 type: Transform - - uid: 29334 + - uid: 29435 components: - rot: 1.5707963267948966 rad pos: 35.5,-48.5 parent: 2 type: Transform - - uid: 29335 + - uid: 29436 components: - rot: 1.5707963267948966 rad pos: 35.5,-49.5 parent: 2 type: Transform - - uid: 29336 + - uid: 29437 components: - rot: 1.5707963267948966 rad pos: 35.5,-50.5 parent: 2 type: Transform - - uid: 29337 + - uid: 29438 components: - rot: 1.5707963267948966 rad pos: 35.5,-51.5 parent: 2 type: Transform - - uid: 29338 + - uid: 29439 components: - rot: 1.5707963267948966 rad pos: 35.5,-53.5 parent: 2 type: Transform - - uid: 29339 + - uid: 29440 components: - pos: 35.5,-52.5 parent: 2 type: Transform - - uid: 29340 + - uid: 29441 components: - rot: 1.5707963267948966 rad pos: 35.5,-55.5 parent: 2 type: Transform - - uid: 29341 + - uid: 29442 components: - rot: 1.5707963267948966 rad pos: 35.5,-56.5 parent: 2 type: Transform - - uid: 29342 + - uid: 29443 components: - rot: 1.5707963267948966 rad pos: 35.5,-57.5 parent: 2 type: Transform - - uid: 29343 + - uid: 29444 components: - rot: 1.5707963267948966 rad pos: 34.5,-57.5 parent: 2 type: Transform - - uid: 29344 + - uid: 29445 components: - pos: 60.5,-37.5 parent: 2 type: Transform - - uid: 29345 + - uid: 29446 components: - pos: 44.5,-55.5 parent: 2 type: Transform - - uid: 29346 + - uid: 29447 components: - pos: 44.5,-54.5 parent: 2 type: Transform - - uid: 29347 + - uid: 29448 components: - pos: 44.5,-53.5 parent: 2 type: Transform - - uid: 29348 + - uid: 29449 components: - pos: 44.5,-52.5 parent: 2 type: Transform - - uid: 29349 + - uid: 29450 components: - pos: 44.5,-51.5 parent: 2 type: Transform - - uid: 29350 + - uid: 29451 components: - pos: 45.5,-55.5 parent: 2 type: Transform - - uid: 29351 + - uid: 29452 components: - rot: 3.141592653589793 rad pos: 46.5,-55.5 parent: 2 type: Transform - - uid: 29352 + - uid: 29453 components: - pos: 47.5,-55.5 parent: 2 type: Transform - - uid: 29353 + - uid: 29454 components: - rot: 3.141592653589793 rad pos: 44.5,-57.5 parent: 2 type: Transform - - uid: 29354 + - uid: 29455 components: - rot: 3.141592653589793 rad pos: 44.5,-58.5 parent: 2 type: Transform - - uid: 29355 + - uid: 29456 components: - rot: 3.141592653589793 rad pos: 44.5,-59.5 parent: 2 type: Transform - - uid: 29356 + - uid: 29457 components: - rot: 3.141592653589793 rad pos: 44.5,-60.5 parent: 2 type: Transform - - uid: 29357 + - uid: 29458 components: - pos: 41.5,-63.5 parent: 2 type: Transform - - uid: 29358 + - uid: 29459 components: - pos: 41.5,-62.5 parent: 2 type: Transform - - uid: 29359 + - uid: 29460 components: - pos: 46.5,-61.5 parent: 2 type: Transform - - uid: 29360 + - uid: 29461 components: - pos: 52.5,-56.5 parent: 2 type: Transform - - uid: 29361 + - uid: 29462 components: - pos: 48.5,-59.5 parent: 2 type: Transform - - uid: 29362 + - uid: 29463 components: - pos: 47.5,-59.5 parent: 2 type: Transform - - uid: 29363 + - uid: 29464 components: - pos: 47.5,-60.5 parent: 2 type: Transform - - uid: 29364 + - uid: 29465 components: - pos: 47.5,-61.5 parent: 2 type: Transform - - uid: 29365 + - uid: 29466 components: - pos: 45.5,-61.5 parent: 2 type: Transform - - uid: 29366 + - uid: 29467 components: - pos: 44.5,-61.5 parent: 2 type: Transform - - uid: 29367 + - uid: 29468 components: - pos: 43.5,-61.5 parent: 2 type: Transform - - uid: 29368 + - uid: 29469 components: - pos: 42.5,-61.5 parent: 2 type: Transform - - uid: 29369 + - uid: 29470 components: - pos: 41.5,-61.5 parent: 2 type: Transform - - uid: 29370 + - uid: 29471 components: - pos: -18.5,0.5 parent: 2 type: Transform - - uid: 29371 + - uid: 29472 components: - pos: -20.5,0.5 parent: 2 type: Transform - - uid: 29372 + - uid: 29473 components: - rot: -1.5707963267948966 rad pos: -22.5,-16.5 parent: 2 type: Transform - - uid: 29373 + - uid: 29474 components: - pos: -30.5,-9.5 parent: 2 type: Transform - - uid: 29374 + - uid: 29475 components: - pos: -27.5,-15.5 parent: 2 type: Transform - - uid: 29375 + - uid: 29476 components: - pos: -28.5,-15.5 parent: 2 type: Transform - - uid: 29376 + - uid: 29477 components: - pos: -29.5,-15.5 parent: 2 type: Transform - - uid: 29377 + - uid: 29478 components: - pos: -30.5,-15.5 parent: 2 type: Transform - - uid: 29378 + - uid: 29479 components: - pos: -30.5,-11.5 parent: 2 type: Transform - - uid: 29379 + - uid: 29480 components: - pos: -30.5,-14.5 parent: 2 type: Transform - - uid: 29380 + - uid: 29481 components: - pos: -33.5,-13.5 parent: 2 type: Transform - - uid: 29381 + - uid: 29482 components: - pos: -27.5,-19.5 parent: 2 type: Transform - - uid: 29382 + - uid: 29483 components: - rot: -1.5707963267948966 rad pos: -22.5,-18.5 parent: 2 type: Transform - - uid: 29383 + - uid: 29484 components: - pos: -30.5,-19.5 parent: 2 type: Transform - - uid: 29384 + - uid: 29485 components: - rot: -1.5707963267948966 rad pos: -27.5,-6.5 parent: 2 type: Transform - - uid: 29385 + - uid: 29486 components: - rot: -1.5707963267948966 rad pos: -27.5,-5.5 parent: 2 type: Transform - - uid: 29386 + - uid: 29487 components: - rot: -1.5707963267948966 rad pos: -27.5,-4.5 parent: 2 type: Transform - - uid: 29387 + - uid: 29488 components: - rot: -1.5707963267948966 rad pos: -27.5,-3.5 parent: 2 type: Transform - - uid: 29388 + - uid: 29489 components: - rot: -1.5707963267948966 rad pos: -27.5,-2.5 parent: 2 type: Transform - - uid: 29389 + - uid: 29490 components: - rot: -1.5707963267948966 rad pos: -27.5,-1.5 parent: 2 type: Transform - - uid: 29390 + - uid: 29491 components: - pos: -28.5,2.5 parent: 2 type: Transform - - uid: 29391 + - uid: 29492 components: - pos: -28.5,-1.5 parent: 2 type: Transform - - uid: 29392 + - uid: 29493 components: - rot: 3.141592653589793 rad pos: -27.5,-7.5 parent: 2 type: Transform - - uid: 29393 + - uid: 29494 components: - rot: -1.5707963267948966 rad pos: -27.5,2.5 parent: 2 type: Transform - - uid: 29394 + - uid: 29495 components: - rot: -1.5707963267948966 rad pos: -27.5,3.5 parent: 2 type: Transform - - uid: 29395 + - uid: 29496 components: - rot: -1.5707963267948966 rad pos: -27.5,4.5 parent: 2 type: Transform - - uid: 29396 + - uid: 29497 components: - rot: -1.5707963267948966 rad pos: -27.5,5.5 parent: 2 type: Transform - - uid: 29397 + - uid: 29498 components: - rot: -1.5707963267948966 rad pos: -27.5,7.5 parent: 2 type: Transform - - uid: 29398 + - uid: 29499 components: - rot: -1.5707963267948966 rad pos: -27.5,8.5 parent: 2 type: Transform - - uid: 29399 + - uid: 29500 components: - rot: -1.5707963267948966 rad pos: -27.5,9.5 parent: 2 type: Transform - - uid: 29400 + - uid: 29501 components: - pos: -28.5,12.5 parent: 2 type: Transform - - uid: 29401 + - uid: 29502 components: - rot: -1.5707963267948966 rad pos: -29.5,-18.5 parent: 2 type: Transform - - uid: 29402 + - uid: 29503 components: - rot: -1.5707963267948966 rad pos: -28.5,-18.5 parent: 2 type: Transform - - uid: 29403 + - uid: 29504 components: - pos: -22.5,-25.5 parent: 2 type: Transform - - uid: 29404 + - uid: 29505 components: - pos: -23.5,-25.5 parent: 2 type: Transform - - uid: 29405 + - uid: 29506 components: - pos: -24.5,-25.5 parent: 2 type: Transform - - uid: 29406 + - uid: 29507 components: - pos: -25.5,-25.5 parent: 2 type: Transform - - uid: 29407 + - uid: 29508 components: - pos: -26.5,-25.5 parent: 2 type: Transform - - uid: 29408 + - uid: 29509 components: - pos: -27.5,-25.5 parent: 2 type: Transform - - uid: 29409 + - uid: 29510 components: - pos: -27.5,-23.5 parent: 2 type: Transform - - uid: 29410 + - uid: 29511 components: - pos: -27.5,-24.5 parent: 2 type: Transform - - uid: 29411 + - uid: 29512 components: - pos: -27.5,-21.5 parent: 2 type: Transform - - uid: 29412 + - uid: 29513 components: - pos: -27.5,-20.5 parent: 2 type: Transform - - uid: 29413 + - uid: 29514 components: - rot: -1.5707963267948966 rad pos: -21.5,-23.5 parent: 2 type: Transform - - uid: 29414 + - uid: 29515 components: - rot: -1.5707963267948966 rad pos: -26.5,-18.5 parent: 2 type: Transform - - uid: 29415 + - uid: 29516 components: - rot: -1.5707963267948966 rad pos: -28.5,-24.5 parent: 2 type: Transform - - uid: 29416 + - uid: 29517 components: - rot: -1.5707963267948966 rad pos: -29.5,-24.5 parent: 2 type: Transform - - uid: 29417 + - uid: 29518 components: - rot: -1.5707963267948966 rad pos: -30.5,-24.5 parent: 2 type: Transform - - uid: 29418 + - uid: 29519 components: - rot: -1.5707963267948966 rad pos: -30.5,-20.5 parent: 2 type: Transform - - uid: 29419 + - uid: 29520 components: - pos: -30.5,-21.5 parent: 2 type: Transform - - uid: 29420 + - uid: 29521 components: - pos: -30.5,-22.5 parent: 2 type: Transform - - uid: 29421 + - uid: 29522 components: - pos: 50.5,41.5 parent: 2 type: Transform - - uid: 29422 + - uid: 29523 components: - pos: -21.5,-25.5 parent: 2 type: Transform - - uid: 29423 + - uid: 29524 components: - pos: -21.5,-27.5 parent: 2 type: Transform - - uid: 29424 + - uid: 29525 components: - pos: -21.5,-28.5 parent: 2 type: Transform - - uid: 29425 + - uid: 29526 components: - pos: -21.5,-29.5 parent: 2 type: Transform - - uid: 29426 + - uid: 29527 components: - pos: -21.5,-30.5 parent: 2 type: Transform - - uid: 29427 + - uid: 29528 components: - pos: -21.5,-31.5 parent: 2 type: Transform - - uid: 29428 + - uid: 29529 components: - pos: -21.5,-33.5 parent: 2 type: Transform - - uid: 29429 + - uid: 29530 components: - pos: -21.5,-36.5 parent: 2 type: Transform - - uid: 29430 + - uid: 29531 components: - pos: -21.5,-37.5 parent: 2 type: Transform - - uid: 29431 + - uid: 29532 components: - pos: -21.5,-38.5 parent: 2 type: Transform - - uid: 29432 + - uid: 29533 components: - pos: -21.5,-39.5 parent: 2 type: Transform - - uid: 29433 + - uid: 29534 components: - pos: -21.5,-40.5 parent: 2 type: Transform - - uid: 29434 + - uid: 29535 components: - pos: -21.5,-41.5 parent: 2 type: Transform - - uid: 29435 + - uid: 29536 components: - pos: -21.5,-43.5 parent: 2 type: Transform - - uid: 29436 + - uid: 29537 components: - pos: 37.5,-49.5 parent: 2 type: Transform - - uid: 29437 + - uid: 29538 components: - pos: 38.5,-49.5 parent: 2 type: Transform - - uid: 29438 + - uid: 29539 components: - pos: 39.5,-50.5 parent: 2 type: Transform - - uid: 29439 + - uid: 29540 components: - pos: 38.5,-50.5 parent: 2 type: Transform - - uid: 29440 + - uid: 29541 components: - pos: -1.5,-12.5 parent: 2 type: Transform - - uid: 29441 + - uid: 29542 components: - pos: -1.5,-13.5 parent: 2 type: Transform - - uid: 29442 + - uid: 29543 components: - pos: 57.5,-61.5 parent: 2 type: Transform - - uid: 29443 + - uid: 29544 components: - pos: 6.5,-58.5 parent: 2 type: Transform - - uid: 29444 + - uid: 29545 components: - pos: -22.5,-27.5 parent: 2 type: Transform - - uid: 29445 + - uid: 29546 components: - pos: -17.5,-30.5 parent: 2 type: Transform - - uid: 29446 + - uid: 29547 components: - rot: 3.141592653589793 rad pos: 42.5,-58.5 parent: 2 type: Transform - - uid: 29447 + - uid: 29548 components: - rot: 3.141592653589793 rad pos: 42.5,-60.5 parent: 2 type: Transform - - uid: 29448 + - uid: 29549 components: - pos: 9.5,-69.5 parent: 2 type: Transform - - uid: 29449 + - uid: 29550 components: - pos: 5.5,-72.5 parent: 2 type: Transform - - uid: 29450 + - uid: 29551 components: - pos: -40.5,-13.5 parent: 2 type: Transform - - uid: 29451 + - uid: 29552 components: - pos: -40.5,-8.5 parent: 2 type: Transform - - uid: 29452 + - uid: 29553 components: - pos: -40.5,-7.5 parent: 2 type: Transform - - uid: 29453 + - uid: 29554 components: - pos: -33.5,-8.5 parent: 2 type: Transform - - uid: 29454 + - uid: 29555 components: - pos: -30.5,-8.5 parent: 2 type: Transform - - uid: 29456 + - uid: 29556 components: - pos: -30.5,-25.5 parent: 2 type: Transform - - uid: 29457 + - uid: 29557 components: - pos: -33.5,-25.5 parent: 2 type: Transform - - uid: 29459 + - uid: 29558 components: - pos: -23.5,-27.5 parent: 2 type: Transform - - uid: 29460 + - uid: 29559 components: - pos: -24.5,-27.5 parent: 2 type: Transform - - uid: 29461 + - uid: 29560 components: - rot: 1.5707963267948966 rad pos: -26.5,-28.5 parent: 2 type: Transform - - uid: 29462 + - uid: 29561 components: - pos: -26.5,-27.5 parent: 2 type: Transform - - uid: 29463 + - uid: 29562 components: - pos: -27.5,-27.5 parent: 2 type: Transform - - uid: 29464 + - uid: 29563 components: - pos: -28.5,-27.5 parent: 2 type: Transform - - uid: 29465 + - uid: 29564 components: - pos: -29.5,-27.5 parent: 2 type: Transform - - uid: 29466 + - uid: 29565 components: - pos: -30.5,-27.5 parent: 2 type: Transform - - uid: 29467 + - uid: 29566 components: - pos: -33.5,-27.5 parent: 2 type: Transform - - uid: 29468 + - uid: 29567 components: - pos: -34.5,-27.5 parent: 2 type: Transform - - uid: 29469 + - uid: 29568 components: - pos: -35.5,-27.5 parent: 2 type: Transform - - uid: 29470 + - uid: 29569 components: - pos: -36.5,-27.5 parent: 2 type: Transform - - uid: 29471 + - uid: 29570 components: - pos: -33.5,-28.5 parent: 2 type: Transform - - uid: 29472 + - uid: 29571 components: - pos: -33.5,-29.5 parent: 2 type: Transform - - uid: 29473 + - uid: 29572 components: - pos: -33.5,-30.5 parent: 2 type: Transform - - uid: 29474 + - uid: 29573 components: - pos: -30.5,-28.5 parent: 2 type: Transform - - uid: 29475 + - uid: 29574 components: - pos: -30.5,-29.5 parent: 2 type: Transform - - uid: 29476 + - uid: 29575 components: - pos: -30.5,-30.5 parent: 2 type: Transform - - uid: 29477 + - uid: 29576 components: - pos: -45.5,-26.5 parent: 2 type: Transform - - uid: 29478 + - uid: 29577 components: - pos: -36.5,-26.5 parent: 2 type: Transform - - uid: 29479 + - uid: 29578 components: - pos: -36.5,-25.5 parent: 2 type: Transform - - uid: 29480 + - uid: 29579 components: - pos: -37.5,-25.5 parent: 2 type: Transform - - uid: 29481 + - uid: 29580 components: - pos: -38.5,-25.5 parent: 2 type: Transform - - uid: 29486 + - uid: 29581 components: - pos: -36.5,-22.5 parent: 2 type: Transform - - uid: 29487 + - uid: 29582 components: - pos: -36.5,-23.5 parent: 2 type: Transform - - uid: 29488 + - uid: 29583 components: - pos: -38.5,-23.5 parent: 2 type: Transform - - uid: 29489 + - uid: 29584 components: - pos: -38.5,-24.5 parent: 2 type: Transform - - uid: 29491 + - uid: 29585 components: - pos: 52.5,-35.5 parent: 2 type: Transform - - uid: 29492 + - uid: 29586 components: - pos: 53.5,-33.5 parent: 2 type: Transform - - uid: 29493 + - uid: 29587 components: - pos: 54.5,-62.5 parent: 2 type: Transform - - uid: 29494 + - uid: 29588 components: - pos: 44.5,-6.5 parent: 2 type: Transform - - uid: 29495 + - uid: 29589 components: - rot: 1.5707963267948966 rad pos: -28.5,7.5 parent: 2 type: Transform - - uid: 29496 + - uid: 29590 components: - rot: 1.5707963267948966 rad pos: -28.5,6.5 parent: 2 type: Transform - - uid: 29497 + - uid: 29591 components: - rot: 1.5707963267948966 rad pos: -28.5,5.5 parent: 2 type: Transform - - uid: 29498 + - uid: 29592 components: - pos: -49.5,-29.5 parent: 2 type: Transform - - uid: 29499 + - uid: 29593 components: - pos: -50.5,-30.5 parent: 2 type: Transform - - uid: 29500 + - uid: 29594 components: - pos: -43.5,-21.5 parent: 2 type: Transform - - uid: 29501 + - uid: 29595 components: - pos: -43.5,-20.5 parent: 2 type: Transform - - uid: 29502 + - uid: 29596 components: - rot: 1.5707963267948966 rad pos: -42.5,-25.5 parent: 2 type: Transform - - uid: 29503 + - uid: 29597 components: - rot: 1.5707963267948966 rad pos: -40.5,-25.5 parent: 2 type: Transform - - uid: 29504 + - uid: 29598 components: - rot: 1.5707963267948966 rad pos: -39.5,-25.5 parent: 2 type: Transform - - uid: 29505 + - uid: 29599 components: - rot: 1.5707963267948966 rad pos: -40.5,-27.5 parent: 2 type: Transform - - uid: 29506 + - uid: 29600 components: - rot: 1.5707963267948966 rad pos: -41.5,-27.5 parent: 2 type: Transform - - uid: 29507 + - uid: 29601 components: - rot: 1.5707963267948966 rad pos: -42.5,-27.5 parent: 2 type: Transform - - uid: 29508 + - uid: 29602 components: - rot: 1.5707963267948966 rad pos: -39.5,-27.5 parent: 2 type: Transform - - uid: 29509 + - uid: 29603 components: - rot: 1.5707963267948966 rad pos: -23.5,-30.5 parent: 2 type: Transform - - uid: 29510 + - uid: 29604 components: - rot: 1.5707963267948966 rad pos: -25.5,-30.5 parent: 2 type: Transform - - uid: 29511 + - uid: 29605 components: - rot: 1.5707963267948966 rad pos: -26.5,-30.5 parent: 2 type: Transform - - uid: 29512 + - uid: 29606 components: - rot: 1.5707963267948966 rad pos: -26.5,-31.5 parent: 2 type: Transform - - uid: 29513 + - uid: 29607 components: - rot: 1.5707963267948966 rad pos: -26.5,-32.5 parent: 2 type: Transform - - uid: 29514 + - uid: 29608 components: - rot: 1.5707963267948966 rad pos: -27.5,-32.5 parent: 2 type: Transform - - uid: 29515 + - uid: 29609 components: - rot: 1.5707963267948966 rad pos: -28.5,-32.5 parent: 2 type: Transform - - uid: 29516 + - uid: 29610 components: - rot: 1.5707963267948966 rad pos: -29.5,-32.5 parent: 2 type: Transform - - uid: 29517 + - uid: 29611 components: - rot: 1.5707963267948966 rad pos: -29.5,-31.5 parent: 2 type: Transform - - uid: 29518 + - uid: 29612 components: - rot: 1.5707963267948966 rad pos: -30.5,-31.5 parent: 2 type: Transform - - uid: 29519 + - uid: 29613 components: - rot: 1.5707963267948966 rad pos: -26.5,-35.5 parent: 2 type: Transform - - uid: 29520 + - uid: 29614 components: - rot: 1.5707963267948966 rad pos: -26.5,-36.5 parent: 2 type: Transform - - uid: 29521 + - uid: 29615 components: - pos: -29.5,-37.5 parent: 2 type: Transform - - uid: 29522 + - uid: 29616 components: - rot: 1.5707963267948966 rad pos: -28.5,-35.5 parent: 2 type: Transform - - uid: 29523 + - uid: 29617 components: - rot: 1.5707963267948966 rad pos: -29.5,-36.5 parent: 2 type: Transform - - uid: 29524 + - uid: 29618 components: - rot: 1.5707963267948966 rad pos: -30.5,-36.5 parent: 2 type: Transform - - uid: 29525 + - uid: 29619 components: - rot: 1.5707963267948966 rad pos: -33.5,-36.5 parent: 2 type: Transform - - uid: 29526 + - uid: 29620 components: - rot: 1.5707963267948966 rad pos: -34.5,-36.5 parent: 2 type: Transform - - uid: 29527 + - uid: 29621 components: - rot: 1.5707963267948966 rad pos: -34.5,-31.5 parent: 2 type: Transform - - uid: 29528 + - uid: 29622 components: - rot: 1.5707963267948966 rad pos: -34.5,-32.5 parent: 2 type: Transform - - uid: 29529 + - uid: 29623 components: - pos: -34.5,-37.5 parent: 2 type: Transform - - uid: 29530 + - uid: 29624 components: - rot: 1.5707963267948966 rad pos: -34.5,-35.5 parent: 2 type: Transform - - uid: 29531 + - uid: 29625 components: - rot: 1.5707963267948966 rad pos: -33.5,-31.5 parent: 2 type: Transform - - uid: 29532 + - uid: 29626 components: - rot: 1.5707963267948966 rad pos: -29.5,-35.5 parent: 2 type: Transform - - uid: 29533 + - uid: 29627 components: - rot: 1.5707963267948966 rad pos: -22.5,-30.5 parent: 2 type: Transform - - uid: 29534 + - uid: 29628 components: - rot: 1.5707963267948966 rad pos: -24.5,-28.5 parent: 2 type: Transform - - uid: 29535 + - uid: 29629 components: - rot: 3.141592653589793 rad pos: -28.5,-6.5 parent: 2 type: Transform - - uid: 29536 + - uid: 29630 components: - pos: -31.5,-4.5 parent: 2 type: Transform - - uid: 29537 + - uid: 29631 components: - pos: -32.5,-4.5 parent: 2 type: Transform - - uid: 29538 + - uid: 29632 components: - pos: -33.5,-4.5 parent: 2 type: Transform - - uid: 29539 + - uid: 29633 components: - pos: -34.5,-4.5 parent: 2 type: Transform - - uid: 29540 + - uid: 29634 components: - pos: -35.5,-4.5 parent: 2 type: Transform - - uid: 29541 + - uid: 29635 components: - pos: -38.5,-3.5 parent: 2 type: Transform - - uid: 29542 + - uid: 29636 components: - pos: -39.5,-3.5 parent: 2 type: Transform - - uid: 29543 + - uid: 29637 components: - pos: -35.5,-3.5 parent: 2 type: Transform - - uid: 29544 + - uid: 29638 components: - pos: -39.5,-4.5 parent: 2 type: Transform - - uid: 29545 + - uid: 29639 components: - pos: -40.5,-4.5 parent: 2 type: Transform - - uid: 29546 + - uid: 29640 components: - pos: -42.5,-4.5 parent: 2 type: Transform - - uid: 29547 + - uid: 29641 components: - pos: -43.5,-4.5 parent: 2 type: Transform - - uid: 29548 + - uid: 29642 components: - pos: -22.5,-40.5 parent: 2 type: Transform - - uid: 29549 + - uid: 29643 components: - pos: -23.5,-40.5 parent: 2 type: Transform - - uid: 29550 + - uid: 29644 components: - pos: -24.5,-40.5 parent: 2 type: Transform - - uid: 29551 + - uid: 29645 components: - pos: -24.5,-41.5 parent: 2 type: Transform - - uid: 29552 + - uid: 29646 components: - pos: -24.5,-42.5 parent: 2 type: Transform - - uid: 29553 + - uid: 29647 components: - pos: -24.5,-43.5 parent: 2 type: Transform - - uid: 29554 + - uid: 29648 components: - pos: -24.5,-44.5 parent: 2 type: Transform - - uid: 29555 + - uid: 29649 components: - pos: -24.5,-45.5 parent: 2 type: Transform - - uid: 29556 + - uid: 29650 components: - pos: -24.5,-46.5 parent: 2 type: Transform - - uid: 29557 + - uid: 29651 components: - pos: -24.5,-47.5 parent: 2 type: Transform - - uid: 29558 + - uid: 29652 components: - pos: -22.5,-37.5 parent: 2 type: Transform - - uid: 29559 + - uid: 29653 components: - pos: -23.5,-37.5 parent: 2 type: Transform - - uid: 29560 + - uid: 29654 components: - pos: -24.5,-37.5 parent: 2 type: Transform - - uid: 29561 + - uid: 29655 components: - pos: -25.5,-37.5 parent: 2 type: Transform - - uid: 29562 + - uid: 29656 components: - pos: -26.5,-37.5 parent: 2 type: Transform - - uid: 29563 + - uid: 29657 components: - pos: -35.5,-31.5 parent: 2 type: Transform - - uid: 29564 + - uid: 29658 components: - pos: -36.5,-31.5 parent: 2 type: Transform - - uid: 29565 + - uid: 29659 components: - pos: -37.5,-31.5 parent: 2 type: Transform - - uid: 29566 + - uid: 29660 components: - pos: -38.5,-31.5 parent: 2 type: Transform - - uid: 29567 + - uid: 29661 components: - pos: -39.5,-31.5 parent: 2 type: Transform - - uid: 29568 + - uid: 29662 components: - pos: -30.5,-38.5 parent: 2 type: Transform - - uid: 29569 + - uid: 29663 components: - pos: -30.5,-39.5 parent: 2 type: Transform - - uid: 29570 + - uid: 29664 components: - pos: -30.5,-41.5 parent: 2 type: Transform - - uid: 29571 + - uid: 29665 components: - pos: -30.5,-42.5 parent: 2 type: Transform - - uid: 29572 + - uid: 29666 components: - pos: -31.5,-42.5 parent: 2 type: Transform - - uid: 29573 + - uid: 29667 components: - pos: -48.5,-4.5 parent: 2 type: Transform - - uid: 29574 + - uid: 29668 components: - pos: -47.5,-4.5 parent: 2 type: Transform - - uid: 29575 + - uid: 29669 components: - pos: -46.5,-4.5 parent: 2 type: Transform - - uid: 29576 + - uid: 29670 components: - pos: -45.5,-4.5 parent: 2 type: Transform - - uid: 29577 + - uid: 29671 components: - pos: -44.5,-4.5 parent: 2 type: Transform - - uid: 29578 + - uid: 29672 components: - pos: -55.5,-19.5 parent: 2 type: Transform - - uid: 29579 + - uid: 29673 components: - pos: -55.5,-20.5 parent: 2 type: Transform - - uid: 29580 + - uid: 29674 components: - pos: -47.5,-26.5 parent: 2 type: Transform - - uid: 29581 + - uid: 29675 components: - rot: 3.141592653589793 rad pos: -41.5,15.5 parent: 2 type: Transform - - uid: 29582 + - uid: 29676 components: - pos: -31.5,-6.5 parent: 2 type: Transform - - uid: 29583 + - uid: 29677 components: - pos: -32.5,-6.5 parent: 2 type: Transform - - uid: 29584 + - uid: 29678 components: - pos: -32.5,-8.5 parent: 2 type: Transform - - uid: 29585 + - uid: 29679 components: - pos: -31.5,-8.5 parent: 2 type: Transform - - uid: 29586 + - uid: 29680 components: - pos: -33.5,-6.5 parent: 2 type: Transform - - uid: 29587 + - uid: 29681 components: - pos: -33.5,-5.5 parent: 2 type: Transform - - uid: 29588 + - uid: 29682 components: - pos: -37.5,-3.5 parent: 2 type: Transform - - uid: 29589 + - uid: 29683 components: - pos: -36.5,-3.5 parent: 2 type: Transform - - uid: 29590 + - uid: 29684 components: - pos: -65.5,-29.5 parent: 2 type: Transform - - uid: 29591 + - uid: 29685 components: - pos: -70.5,-27.5 parent: 2 type: Transform - - uid: 29592 + - uid: 29686 components: - pos: -74.5,-27.5 parent: 2 type: Transform - - uid: 29593 + - uid: 29687 components: - pos: -69.5,-28.5 parent: 2 type: Transform - - uid: 29594 + - uid: 29688 components: - pos: -69.5,-29.5 parent: 2 type: Transform - - uid: 29595 + - uid: 29689 components: - pos: -69.5,-30.5 parent: 2 type: Transform - - uid: 29596 + - uid: 29690 components: - pos: -57.5,-29.5 parent: 2 type: Transform - - uid: 29597 + - uid: 29691 components: - pos: -53.5,-29.5 parent: 2 type: Transform - - uid: 29598 + - uid: 29692 components: - pos: -49.5,-27.5 parent: 2 type: Transform - - uid: 29599 + - uid: 29693 components: - pos: -49.5,-28.5 parent: 2 type: Transform - - uid: 29600 + - uid: 29694 components: - pos: -56.5,-31.5 parent: 2 type: Transform - - uid: 29601 + - uid: 29695 components: - pos: -57.5,-31.5 parent: 2 type: Transform - - uid: 29602 + - uid: 29696 components: - pos: -63.5,-25.5 parent: 2 type: Transform - - uid: 29603 + - uid: 29697 components: - pos: -57.5,-22.5 parent: 2 type: Transform - - uid: 29604 + - uid: 29698 components: - pos: -55.5,-21.5 parent: 2 type: Transform - - uid: 29605 + - uid: 29699 components: - pos: -55.5,-22.5 parent: 2 type: Transform - - uid: 29606 + - uid: 29700 components: - pos: -49.5,-30.5 parent: 2 type: Transform - - uid: 29607 + - uid: 29701 components: - pos: -67.5,-29.5 parent: 2 type: Transform - - uid: 29608 + - uid: 29702 components: - pos: -54.5,-29.5 parent: 2 type: Transform - - uid: 29609 + - uid: 29703 components: - pos: -56.5,-29.5 parent: 2 type: Transform - - uid: 29610 + - uid: 29704 components: - pos: -36.5,-49.5 parent: 2 type: Transform - - uid: 29611 + - uid: 29705 components: - pos: -36.5,-50.5 parent: 2 type: Transform - - uid: 29612 + - uid: 29706 components: - pos: -36.5,-51.5 parent: 2 type: Transform - - uid: 29613 + - uid: 29707 components: - pos: -36.5,-52.5 parent: 2 type: Transform - - uid: 29614 + - uid: 29708 components: - pos: -36.5,-48.5 parent: 2 type: Transform - - uid: 29615 + - uid: 29709 components: - pos: -36.5,-47.5 parent: 2 type: Transform - - uid: 29616 + - uid: 29710 components: - pos: 69.5,-60.5 parent: 2 type: Transform - - uid: 29617 + - uid: 29711 components: - rot: -1.5707963267948966 rad pos: -30.5,-18.5 parent: 2 type: Transform - - uid: 29618 + - uid: 29712 components: - pos: -29.5,-38.5 parent: 2 type: Transform - - uid: 29619 + - uid: 29713 components: - pos: -28.5,-38.5 parent: 2 type: Transform - - uid: 29620 + - uid: 29714 components: - pos: -27.5,-38.5 parent: 2 type: Transform - - uid: 29621 + - uid: 29715 components: - pos: -26.5,-38.5 parent: 2 type: Transform - - uid: 29622 + - uid: 29716 components: - rot: -1.5707963267948966 rad pos: -21.5,-16.5 parent: 2 type: Transform - - uid: 29623 + - uid: 29717 components: - pos: -33.5,-7.5 parent: 2 type: Transform - - uid: 29624 + - uid: 29718 components: - pos: -57.5,-3.5 parent: 2 type: Transform - - uid: 29625 + - uid: 29719 components: - pos: -69.5,-25.5 parent: 2 type: Transform - - uid: 29626 + - uid: 29720 components: - pos: -69.5,-26.5 parent: 2 type: Transform - - uid: 29627 + - uid: 29721 components: - pos: -69.5,-27.5 parent: 2 type: Transform - - uid: 29628 + - uid: 29722 components: - rot: -1.5707963267948966 rad pos: -43.5,-25.5 parent: 2 type: Transform - - uid: 29629 + - uid: 29723 components: - rot: -1.5707963267948966 rad pos: -45.5,-29.5 parent: 2 type: Transform - - uid: 29630 + - uid: 29724 components: - rot: -1.5707963267948966 rad pos: -45.5,-30.5 parent: 2 type: Transform - - uid: 29631 + - uid: 29725 components: - pos: -46.5,-29.5 parent: 2 type: Transform - - uid: 29632 + - uid: 29726 components: - rot: -1.5707963267948966 rad pos: -47.5,-29.5 parent: 2 type: Transform - - uid: 29633 + - uid: 29727 components: - rot: -1.5707963267948966 rad pos: -47.5,-28.5 parent: 2 type: Transform - - uid: 29634 + - uid: 29728 components: - rot: -1.5707963267948966 rad pos: -57.5,-34.5 parent: 2 type: Transform - - uid: 29635 + - uid: 29729 components: - rot: -1.5707963267948966 rad pos: -56.5,-34.5 parent: 2 type: Transform - - uid: 29636 + - uid: 29730 components: - rot: -1.5707963267948966 rad pos: -54.5,-34.5 parent: 2 type: Transform - - uid: 29637 + - uid: 29731 components: - rot: -1.5707963267948966 rad pos: -57.5,-40.5 parent: 2 type: Transform - - uid: 29638 + - uid: 29732 components: - rot: -1.5707963267948966 rad pos: -34.5,-29.5 parent: 2 type: Transform - - uid: 29639 + - uid: 29733 components: - pos: -55.5,-65.5 parent: 2 type: Transform - - uid: 29640 + - uid: 29734 components: - pos: -54.5,-65.5 parent: 2 type: Transform - - uid: 29641 + - uid: 29735 components: - pos: -53.5,-65.5 parent: 2 type: Transform - - uid: 29642 + - uid: 29736 components: - pos: -51.5,-65.5 parent: 2 type: Transform - - uid: 29643 + - uid: 29737 components: - pos: -51.5,-64.5 parent: 2 type: Transform - - uid: 29644 + - uid: 29738 components: - pos: -51.5,-62.5 parent: 2 type: Transform - - uid: 29645 + - uid: 29739 components: - pos: -56.5,-69.5 parent: 2 type: Transform - - uid: 29646 + - uid: 29740 components: - pos: -23.5,-50.5 parent: 2 type: Transform - - uid: 29647 + - uid: 29741 components: - pos: -24.5,-50.5 parent: 2 type: Transform - - uid: 29648 + - uid: 29742 components: - pos: -25.5,-50.5 parent: 2 type: Transform - - uid: 29649 + - uid: 29743 components: - pos: -24.5,-48.5 parent: 2 type: Transform - - uid: 29650 + - uid: 29744 components: - pos: -26.5,-48.5 parent: 2 type: Transform - - uid: 29651 + - uid: 29745 components: - pos: -25.5,-48.5 parent: 2 type: Transform - - uid: 29652 + - uid: 29746 components: - pos: -26.5,-50.5 parent: 2 type: Transform - - uid: 29653 + - uid: 29747 components: - pos: -27.5,-50.5 parent: 2 type: Transform - - uid: 29654 + - uid: 29748 components: - pos: -28.5,-50.5 parent: 2 type: Transform - - uid: 29655 + - uid: 29749 components: - pos: -28.5,-49.5 parent: 2 type: Transform - - uid: 29656 + - uid: 29750 components: - pos: -28.5,-48.5 parent: 2 type: Transform - - uid: 29657 + - uid: 29751 components: - pos: -28.5,-46.5 parent: 2 type: Transform - - uid: 29658 + - uid: 29752 components: - pos: -28.5,-45.5 parent: 2 type: Transform - - uid: 29659 + - uid: 29753 components: - pos: -29.5,-45.5 parent: 2 type: Transform - - uid: 29660 + - uid: 29754 components: - pos: -29.5,-42.5 parent: 2 type: Transform - - uid: 29661 + - uid: 29755 components: - pos: -28.5,-42.5 parent: 2 type: Transform - - uid: 29662 + - uid: 29756 components: - pos: -27.5,-42.5 parent: 2 type: Transform - - uid: 29663 + - uid: 29757 components: - pos: -26.5,-42.5 parent: 2 type: Transform - - uid: 29664 + - uid: 29758 components: - pos: -26.5,-43.5 parent: 2 type: Transform - - uid: 29665 + - uid: 29759 components: - pos: -26.5,-44.5 parent: 2 type: Transform - - uid: 29666 + - uid: 29760 components: - pos: -26.5,-45.5 parent: 2 type: Transform - - uid: 29667 + - uid: 29761 components: - pos: -30.5,-45.5 parent: 2 type: Transform - - uid: 29668 + - uid: 29762 components: - pos: -29.5,-49.5 parent: 2 type: Transform - - uid: 29669 + - uid: 29763 components: - pos: -31.5,-49.5 parent: 2 type: Transform - - uid: 29670 + - uid: 29764 components: - pos: -27.5,-39.5 parent: 2 type: Transform - - uid: 29671 + - uid: 29765 components: - pos: -27.5,-40.5 parent: 2 type: Transform - - uid: 29672 + - uid: 29766 components: - pos: -23.5,-52.5 parent: 2 type: Transform - - uid: 29677 + - uid: 29767 components: - pos: -24.5,-56.5 parent: 2 type: Transform - - uid: 29678 + - uid: 29768 components: - pos: -25.5,-56.5 parent: 2 type: Transform - - uid: 29679 + - uid: 29769 components: - pos: -26.5,-56.5 parent: 2 type: Transform - - uid: 29680 + - uid: 29770 components: - pos: -27.5,-56.5 parent: 2 type: Transform - - uid: 29681 + - uid: 29771 components: - pos: -29.5,-56.5 parent: 2 type: Transform - - uid: 29682 + - uid: 29772 components: - pos: -30.5,-56.5 parent: 2 type: Transform - - uid: 29683 + - uid: 29773 components: - pos: -30.5,-57.5 parent: 2 type: Transform - - uid: 29684 + - uid: 29774 components: - pos: -52.5,-11.5 parent: 2 type: Transform - - uid: 29685 + - uid: 29775 components: - pos: -52.5,-10.5 parent: 2 type: Transform - - uid: 29686 + - uid: 29776 components: - pos: -52.5,-9.5 parent: 2 type: Transform - - uid: 29687 + - uid: 29777 components: - pos: -52.5,-7.5 parent: 2 type: Transform - - uid: 29688 + - uid: 29778 components: - pos: -51.5,-7.5 parent: 2 type: Transform - - uid: 29689 + - uid: 29779 components: - pos: -50.5,-7.5 parent: 2 type: Transform - - uid: 29690 + - uid: 29780 components: - pos: -27.5,-62.5 parent: 2 type: Transform - - uid: 29691 + - uid: 29781 components: - pos: -29.5,-60.5 parent: 2 type: Transform - - uid: 29692 + - uid: 29782 components: - pos: -29.5,-61.5 parent: 2 type: Transform - - uid: 29693 + - uid: 29783 components: - pos: -27.5,-61.5 parent: 2 type: Transform - - uid: 29694 + - uid: 29784 components: - pos: -29.5,-62.5 parent: 2 type: Transform - - uid: 29695 + - uid: 29785 components: - pos: -29.5,-63.5 parent: 2 type: Transform - - uid: 29696 + - uid: 29786 components: - pos: -29.5,-64.5 parent: 2 type: Transform - - uid: 29697 + - uid: 29787 components: - pos: -28.5,-64.5 parent: 2 type: Transform - - uid: 29698 + - uid: 29788 components: - pos: -28.5,-65.5 parent: 2 type: Transform - - uid: 29699 + - uid: 29789 components: - pos: -27.5,-65.5 parent: 2 type: Transform - - uid: 29700 + - uid: 29790 components: - pos: -25.5,-63.5 parent: 2 type: Transform - - uid: 29701 + - uid: 29791 components: - pos: -24.5,-63.5 parent: 2 type: Transform - - uid: 29702 + - uid: 29792 components: - pos: -24.5,-65.5 parent: 2 type: Transform - - uid: 29703 + - uid: 29793 components: - pos: -27.5,-68.5 parent: 2 type: Transform - - uid: 29704 + - uid: 29794 components: - pos: -28.5,-68.5 parent: 2 type: Transform - - uid: 29705 + - uid: 29795 components: - pos: -29.5,-68.5 parent: 2 type: Transform - - uid: 29706 + - uid: 29796 components: - pos: -29.5,-67.5 parent: 2 type: Transform - - uid: 29707 + - uid: 29797 components: - pos: -31.5,-67.5 parent: 2 type: Transform - - uid: 29708 + - uid: 29798 components: - pos: -30.5,-64.5 parent: 2 type: Transform - - uid: 29709 + - uid: 29799 components: - pos: -30.5,-65.5 parent: 2 type: Transform - - uid: 29710 + - uid: 29800 components: - pos: -32.5,-65.5 parent: 2 type: Transform - - uid: 29711 + - uid: 29801 components: - pos: -32.5,-64.5 parent: 2 type: Transform - - uid: 29712 + - uid: 29802 components: - pos: -33.5,-64.5 parent: 2 type: Transform - - uid: 29713 + - uid: 29803 components: - pos: -55.5,-69.5 parent: 2 type: Transform - - uid: 29714 + - uid: 29804 components: - pos: -54.5,-69.5 parent: 2 type: Transform - - uid: 29715 + - uid: 29805 components: - pos: -52.5,-69.5 parent: 2 type: Transform - - uid: 29716 + - uid: 29806 components: - pos: -52.5,-70.5 parent: 2 type: Transform - - uid: 29717 + - uid: 29807 components: - pos: -52.5,-71.5 parent: 2 type: Transform - - uid: 29718 + - uid: 29808 components: - pos: -51.5,-71.5 parent: 2 type: Transform - - uid: 29719 + - uid: 29809 components: - pos: -51.5,-72.5 parent: 2 type: Transform - - uid: 29720 + - uid: 29810 components: - pos: -50.5,-72.5 parent: 2 type: Transform - - uid: 29721 + - uid: 29811 components: - pos: -50.5,-73.5 parent: 2 type: Transform - - uid: 29722 + - uid: 29812 components: - pos: -50.5,-74.5 parent: 2 type: Transform - - uid: 29723 + - uid: 29813 components: - pos: -50.5,-75.5 parent: 2 type: Transform - - uid: 29724 + - uid: 29814 components: - pos: -58.5,-80.5 parent: 2 type: Transform - - uid: 29725 + - uid: 29815 components: - pos: -58.5,-72.5 parent: 2 type: Transform - - uid: 29726 + - uid: 29816 components: - pos: -49.5,-75.5 parent: 2 type: Transform - - uid: 29727 + - uid: 29817 components: - pos: -48.5,-75.5 parent: 2 type: Transform - - uid: 29728 + - uid: 29818 components: - pos: -48.5,-72.5 parent: 2 type: Transform - - uid: 29729 + - uid: 29819 components: - pos: -48.5,-71.5 parent: 2 type: Transform - - uid: 29730 + - uid: 29820 components: - pos: -47.5,-71.5 parent: 2 type: Transform - - uid: 29731 + - uid: 29821 components: - pos: -46.5,-71.5 parent: 2 type: Transform - - uid: 29732 + - uid: 29822 components: - pos: -46.5,-70.5 parent: 2 type: Transform - - uid: 29733 + - uid: 29823 components: - pos: -45.5,-70.5 parent: 2 type: Transform - - uid: 29734 + - uid: 29824 components: - pos: -45.5,-69.5 parent: 2 type: Transform - - uid: 29735 + - uid: 29825 components: - pos: -44.5,-69.5 parent: 2 type: Transform - - uid: 29736 + - uid: 29826 components: - pos: -43.5,-69.5 parent: 2 type: Transform - - uid: 29737 + - uid: 29827 components: - pos: -40.5,-68.5 parent: 2 type: Transform - - uid: 29738 + - uid: 29828 components: - pos: -40.5,-67.5 parent: 2 type: Transform - - uid: 29739 + - uid: 29829 components: - pos: -40.5,-69.5 parent: 2 type: Transform - - uid: 29740 + - uid: 29830 components: - pos: -39.5,-69.5 parent: 2 type: Transform - - uid: 29741 + - uid: 29831 components: - pos: -38.5,-69.5 parent: 2 type: Transform - - uid: 29742 + - uid: 29832 components: - pos: -38.5,-70.5 parent: 2 type: Transform - - uid: 29743 + - uid: 29833 components: - pos: -37.5,-70.5 parent: 2 type: Transform - - uid: 29744 + - uid: 29834 components: - pos: -37.5,-71.5 parent: 2 type: Transform - - uid: 29745 + - uid: 29835 components: - pos: -36.5,-71.5 parent: 2 type: Transform - - uid: 29746 + - uid: 29836 components: - pos: -35.5,-71.5 parent: 2 type: Transform - - uid: 29747 + - uid: 29837 components: - pos: -35.5,-72.5 parent: 2 type: Transform - - uid: 29748 + - uid: 29838 components: - pos: -43.5,-68.5 parent: 2 type: Transform - - uid: 29749 + - uid: 29839 components: - pos: -40.5,-65.5 parent: 2 type: Transform - - uid: 29750 + - uid: 29840 components: - pos: -41.5,-65.5 parent: 2 type: Transform - - uid: 29751 + - uid: 29841 components: - pos: -42.5,-65.5 parent: 2 type: Transform - - uid: 29752 + - uid: 29842 components: - pos: -43.5,-65.5 parent: 2 type: Transform - - uid: 29753 + - uid: 29843 components: - pos: -44.5,-65.5 parent: 2 type: Transform - - uid: 29754 + - uid: 29844 components: - pos: -45.5,-65.5 parent: 2 type: Transform - - uid: 29755 + - uid: 29845 components: - pos: -46.5,-65.5 parent: 2 type: Transform - - uid: 29756 + - uid: 29846 components: - pos: -47.5,-65.5 parent: 2 type: Transform - - uid: 29757 + - uid: 29847 components: - pos: -48.5,-67.5 parent: 2 type: Transform - - uid: 29758 + - uid: 29848 components: - pos: -48.5,-68.5 parent: 2 type: Transform - - uid: 29759 + - uid: 29849 components: - pos: -48.5,-69.5 parent: 2 type: Transform - - uid: 29760 + - uid: 29850 components: - pos: -48.5,-70.5 parent: 2 type: Transform - - uid: 29761 + - uid: 29851 components: - pos: -48.5,-65.5 parent: 2 type: Transform - - uid: 29762 + - uid: 29852 components: - pos: -51.5,-69.5 parent: 2 type: Transform - - uid: 29763 + - uid: 29853 components: - pos: -51.5,-68.5 parent: 2 type: Transform - - uid: 29764 + - uid: 29854 components: - pos: -35.5,-63.5 parent: 2 type: Transform - - uid: 29765 + - uid: 29855 components: - pos: -35.5,-64.5 parent: 2 type: Transform - - uid: 29766 + - uid: 29856 components: - pos: -36.5,-66.5 parent: 2 type: Transform - - uid: 29767 + - uid: 29857 components: - pos: -36.5,-67.5 parent: 2 type: Transform - - uid: 29768 + - uid: 29858 components: - pos: -35.5,-67.5 parent: 2 type: Transform - - uid: 29769 + - uid: 29859 components: - pos: -35.5,-68.5 parent: 2 type: Transform - - uid: 29770 + - uid: 29860 components: - pos: -34.5,-68.5 parent: 2 type: Transform - - uid: 29771 + - uid: 29861 components: - pos: -38.5,-66.5 parent: 2 type: Transform - - uid: 29772 + - uid: 29862 components: - pos: -35.5,-69.5 parent: 2 type: Transform - - uid: 29773 + - uid: 29863 components: - pos: -33.5,-68.5 parent: 2 type: Transform - - uid: 29774 + - uid: 29864 components: - pos: -32.5,-68.5 parent: 2 type: Transform - - uid: 29775 + - uid: 29865 components: - pos: -31.5,-68.5 parent: 2 type: Transform - - uid: 29776 + - uid: 29866 components: - pos: -42.5,-63.5 parent: 2 type: Transform - - uid: 29777 + - uid: 29867 components: - pos: -46.5,-64.5 parent: 2 type: Transform - - uid: 29778 + - uid: 29868 components: - pos: -40.5,-73.5 parent: 2 type: Transform - - uid: 29779 + - uid: 29869 components: - pos: -44.5,-73.5 parent: 2 type: Transform - - uid: 29780 + - uid: 29870 components: - pos: -39.5,-74.5 parent: 2 type: Transform - - uid: 29781 + - uid: 29871 components: - pos: -42.5,-73.5 parent: 2 type: Transform - - uid: 29782 + - uid: 29872 components: - pos: -41.5,-73.5 parent: 2 type: Transform - - uid: 29783 + - uid: 29873 components: - pos: -43.5,-73.5 parent: 2 type: Transform - - uid: 29784 + - uid: 29874 components: - pos: -44.5,-74.5 parent: 2 type: Transform - - uid: 29785 + - uid: 29875 components: - pos: -39.5,-73.5 parent: 2 type: Transform - - uid: 29786 + - uid: 29876 components: - pos: -23.5,-63.5 parent: 2 type: Transform - - uid: 29787 + - uid: 29877 components: - rot: 3.141592653589793 rad pos: -30.5,-53.5 parent: 2 type: Transform - - uid: 29788 + - uid: 29878 components: - rot: 1.5707963267948966 rad pos: -29.5,-52.5 parent: 2 type: Transform - - uid: 29789 + - uid: 29879 components: - rot: 1.5707963267948966 rad pos: -29.5,-53.5 parent: 2 type: Transform - - uid: 29790 + - uid: 29880 components: - rot: 1.5707963267948966 rad pos: -29.5,-54.5 parent: 2 type: Transform - - uid: 29791 + - uid: 29881 components: - pos: -26.5,-62.5 parent: 2 type: Transform - - uid: 29792 + - uid: 29882 components: - pos: -45.5,-68.5 parent: 2 type: Transform - - uid: 29793 + - uid: 29883 components: - pos: -27.5,-59.5 parent: 2 type: Transform - - uid: 29794 + - uid: 29884 components: - pos: -37.5,-47.5 parent: 2 type: Transform - - uid: 29795 + - uid: 29885 components: - pos: -17.5,31.5 parent: 2 type: Transform - - uid: 29796 + - uid: 29886 components: - pos: -26.5,-63.5 parent: 2 type: Transform - - uid: 29797 + - uid: 29887 components: - pos: -22.5,-63.5 parent: 2 type: Transform - - uid: 29798 + - uid: 29888 components: - pos: 58.5,2.5 parent: 2 type: Transform - - uid: 29800 + - uid: 29889 components: - rot: 3.141592653589793 rad pos: -27.5,-57.5 parent: 2 type: Transform - - uid: 29801 + - uid: 29890 components: - pos: -33.5,-24.5 parent: 2 type: Transform - - uid: 29802 + - uid: 29891 components: - pos: -34.5,-24.5 parent: 2 type: Transform - - uid: 29803 + - uid: 29892 components: - pos: -34.5,-22.5 parent: 2 type: Transform - - uid: 29804 + - uid: 29893 components: - pos: -34.5,-23.5 parent: 2 type: Transform - - uid: 29805 + - uid: 29894 components: - rot: 1.5707963267948966 rad pos: 52.5,54.5 parent: 2 type: Transform - - uid: 29806 + - uid: 29895 components: - rot: -1.5707963267948966 rad pos: -9.5,33.5 parent: 2 type: Transform - - uid: 29807 + - uid: 29896 components: - rot: -1.5707963267948966 rad pos: -10.5,33.5 parent: 2 type: Transform - - uid: 29808 + - uid: 29897 components: - rot: -1.5707963267948966 rad pos: -9.5,30.5 parent: 2 type: Transform - - uid: 29809 + - uid: 29898 components: - rot: -1.5707963267948966 rad pos: -10.5,30.5 parent: 2 type: Transform - - uid: 29810 + - uid: 29899 components: - rot: -1.5707963267948966 rad pos: -11.5,30.5 parent: 2 type: Transform - - uid: 29811 + - uid: 29900 components: - rot: -1.5707963267948966 rad pos: -12.5,30.5 parent: 2 type: Transform - - uid: 29812 + - uid: 29901 components: - pos: -11.5,25.5 parent: 2 type: Transform - - uid: 29813 + - uid: 29902 components: - pos: -12.5,25.5 parent: 2 type: Transform - - uid: 29814 + - uid: 29903 components: - rot: -1.5707963267948966 rad pos: -10.5,34.5 parent: 2 type: Transform - - uid: 29815 + - uid: 29904 components: - pos: -21.5,16.5 parent: 2 type: Transform - - uid: 29816 + - uid: 29905 components: - pos: -21.5,17.5 parent: 2 type: Transform - - uid: 29817 + - uid: 29906 components: - pos: -21.5,18.5 parent: 2 type: Transform - - uid: 29818 + - uid: 29907 components: - pos: -21.5,19.5 parent: 2 type: Transform - - uid: 29819 + - uid: 29908 components: - pos: -17.5,15.5 parent: 2 type: Transform - - uid: 29820 + - uid: 29909 components: - pos: -17.5,16.5 parent: 2 type: Transform - - uid: 29821 + - uid: 29910 components: - pos: -17.5,17.5 parent: 2 type: Transform - - uid: 29822 + - uid: 29911 components: - pos: -17.5,18.5 parent: 2 type: Transform - - uid: 29823 + - uid: 29912 components: - pos: -21.5,22.5 parent: 2 type: Transform - - uid: 29824 + - uid: 29913 components: - pos: -21.5,25.5 parent: 2 type: Transform - - uid: 29825 + - uid: 29914 components: - rot: -1.5707963267948966 rad pos: -13.5,22.5 parent: 2 type: Transform - - uid: 29826 + - uid: 29915 components: - rot: -1.5707963267948966 rad pos: -17.5,27.5 parent: 2 type: Transform - - uid: 29827 + - uid: 29916 components: - pos: -17.5,22.5 parent: 2 type: Transform - - uid: 29828 + - uid: 29917 components: - pos: -17.5,21.5 parent: 2 type: Transform - - uid: 29829 + - uid: 29918 components: - pos: -17.5,20.5 parent: 2 type: Transform - - uid: 29830 + - uid: 29919 components: - pos: -23.5,16.5 parent: 2 type: Transform - - uid: 29831 + - uid: 29920 components: - pos: -26.5,17.5 parent: 2 type: Transform - - uid: 29832 + - uid: 29921 components: - pos: -26.5,26.5 parent: 2 type: Transform - - uid: 29833 + - uid: 29922 components: - pos: -25.5,26.5 parent: 2 type: Transform - - uid: 29834 + - uid: 29923 components: - pos: -26.5,20.5 parent: 2 type: Transform - - uid: 29835 + - uid: 29924 components: - pos: -27.5,26.5 parent: 2 type: Transform - - uid: 29836 + - uid: 29925 components: - pos: -28.5,26.5 parent: 2 type: Transform - - uid: 29837 + - uid: 29926 components: - pos: -26.5,24.5 parent: 2 type: Transform - - uid: 29838 + - uid: 29927 components: - rot: 3.141592653589793 rad pos: -27.5,20.5 parent: 2 type: Transform - - uid: 29839 + - uid: 29928 components: - rot: 3.141592653589793 rad pos: -28.5,20.5 parent: 2 type: Transform - - uid: 29840 + - uid: 29929 components: - rot: 3.141592653589793 rad pos: -29.5,20.5 parent: 2 type: Transform - - uid: 29841 + - uid: 29930 components: - rot: 3.141592653589793 rad pos: -29.5,24.5 parent: 2 type: Transform - - uid: 29842 + - uid: 29931 components: - pos: -26.5,16.5 parent: 2 type: Transform - - uid: 29843 + - uid: 29932 components: - pos: -27.5,16.5 parent: 2 type: Transform - - uid: 29844 + - uid: 29933 components: - pos: -28.5,16.5 parent: 2 type: Transform - - uid: 29845 + - uid: 29934 components: - pos: -29.5,16.5 parent: 2 type: Transform - - uid: 29846 + - uid: 29935 components: - pos: -22.5,14.5 parent: 2 type: Transform - - uid: 29847 + - uid: 29936 components: - pos: -23.5,14.5 parent: 2 type: Transform - - uid: 29848 + - uid: 29937 components: - pos: -24.5,16.5 parent: 2 type: Transform - - uid: 29849 + - uid: 29938 components: - pos: -23.5,26.5 parent: 2 type: Transform - - uid: 29850 + - uid: 29939 components: - pos: -36.5,34.5 parent: 2 type: Transform - - uid: 29851 + - uid: 29940 components: - pos: -24.5,15.5 parent: 2 type: Transform - - uid: 29852 + - uid: 29941 components: - pos: -34.5,16.5 parent: 2 type: Transform - - uid: 29853 + - uid: 29942 components: - pos: -35.5,16.5 parent: 2 type: Transform - - uid: 29854 + - uid: 29943 components: - pos: -35.5,17.5 parent: 2 type: Transform - - uid: 29855 + - uid: 29944 components: - pos: -35.5,23.5 parent: 2 type: Transform - - uid: 29856 + - uid: 29945 components: - pos: -35.5,24.5 parent: 2 type: Transform - - uid: 29857 + - uid: 29946 components: - pos: -33.5,16.5 parent: 2 type: Transform - - uid: 29858 + - uid: 29947 components: - pos: -32.5,16.5 parent: 2 type: Transform - - uid: 29859 + - uid: 29948 components: - pos: -31.5,16.5 parent: 2 type: Transform - - uid: 29860 + - uid: 29949 components: - pos: -30.5,16.5 parent: 2 type: Transform - - uid: 29861 + - uid: 29950 components: - rot: 1.5707963267948966 rad pos: -36.5,17.5 parent: 2 type: Transform - - uid: 29862 + - uid: 29951 components: - rot: 1.5707963267948966 rad pos: -37.5,17.5 parent: 2 type: Transform - - uid: 29863 + - uid: 29952 components: - rot: 1.5707963267948966 rad pos: -38.5,17.5 parent: 2 type: Transform - - uid: 29864 + - uid: 29953 components: - rot: 1.5707963267948966 rad pos: -39.5,17.5 parent: 2 type: Transform - - uid: 29865 + - uid: 29954 components: - rot: 1.5707963267948966 rad pos: -40.5,17.5 parent: 2 type: Transform - - uid: 29866 + - uid: 29955 components: - pos: -38.5,34.5 parent: 2 type: Transform - - uid: 29867 + - uid: 29956 components: - pos: -39.5,32.5 parent: 2 type: Transform - - uid: 29868 + - uid: 29957 components: - pos: -39.5,33.5 parent: 2 type: Transform - - uid: 29869 + - uid: 29958 components: - rot: 1.5707963267948966 rad pos: -40.5,26.5 parent: 2 type: Transform - - uid: 29870 + - uid: 29959 components: - rot: 1.5707963267948966 rad pos: -42.5,26.5 parent: 2 type: Transform - - uid: 29871 + - uid: 29960 components: - rot: 1.5707963267948966 rad pos: -43.5,17.5 parent: 2 type: Transform - - uid: 29872 + - uid: 29961 components: - rot: 1.5707963267948966 rad pos: -43.5,16.5 parent: 2 type: Transform - - uid: 29873 + - uid: 29962 components: - pos: -51.5,21.5 parent: 2 type: Transform - - uid: 29874 + - uid: 29963 components: - rot: 1.5707963267948966 rad pos: -47.5,27.5 parent: 2 type: Transform - - uid: 29875 + - uid: 29964 components: - rot: 1.5707963267948966 rad pos: -48.5,27.5 parent: 2 type: Transform - - uid: 29876 + - uid: 29965 components: - rot: 1.5707963267948966 rad pos: -44.5,27.5 parent: 2 type: Transform - - uid: 29877 + - uid: 29966 components: - rot: 1.5707963267948966 rad pos: -43.5,27.5 parent: 2 type: Transform - - uid: 29878 + - uid: 29967 components: - rot: 1.5707963267948966 rad pos: -43.5,26.5 parent: 2 type: Transform - - uid: 29879 + - uid: 29968 components: - pos: -17.5,35.5 parent: 2 type: Transform - - uid: 29880 + - uid: 29969 components: - rot: -1.5707963267948966 rad pos: -18.5,36.5 parent: 2 type: Transform - - uid: 29881 + - uid: 29970 components: - pos: -17.5,33.5 parent: 2 type: Transform - - uid: 29882 + - uid: 29971 components: - pos: -13.5,30.5 parent: 2 type: Transform - - uid: 29883 + - uid: 29972 components: - pos: -13.5,29.5 parent: 2 type: Transform - - uid: 29884 + - uid: 29973 components: - pos: -13.5,28.5 parent: 2 type: Transform - - uid: 29885 + - uid: 29974 components: - pos: -14.5,28.5 parent: 2 type: Transform - - uid: 29886 + - uid: 29975 components: - pos: -16.5,28.5 parent: 2 type: Transform - - uid: 29887 + - uid: 29976 components: - pos: 51.5,41.5 parent: 2 type: Transform - - uid: 29888 + - uid: 29977 components: - pos: -22.5,26.5 parent: 2 type: Transform - - uid: 29889 + - uid: 29978 components: - pos: -24.5,14.5 parent: 2 type: Transform - - uid: 29890 + - uid: 29979 components: - pos: -27.5,11.5 parent: 2 type: Transform - - uid: 29891 + - uid: 29980 components: - pos: -28.5,11.5 parent: 2 type: Transform - - uid: 29892 + - uid: 29981 components: - pos: -29.5,26.5 parent: 2 type: Transform - - uid: 29893 + - uid: 29982 components: - rot: 3.141592653589793 rad pos: -41.5,13.5 parent: 2 type: Transform - - uid: 29894 + - uid: 29983 components: - pos: -28.5,14.5 parent: 2 type: Transform - - uid: 29895 + - uid: 29984 components: - pos: -28.5,13.5 parent: 2 type: Transform - - uid: 29896 + - uid: 29985 components: - pos: -28.5,15.5 parent: 2 type: Transform - - uid: 29897 + - uid: 29986 components: - rot: 1.5707963267948966 rad pos: -40.5,36.5 parent: 2 type: Transform - - uid: 29898 + - uid: 29987 components: - rot: 1.5707963267948966 rad pos: -41.5,36.5 parent: 2 type: Transform - - uid: 29899 + - uid: 29988 components: - rot: 1.5707963267948966 rad pos: -42.5,36.5 parent: 2 type: Transform - - uid: 29900 + - uid: 29989 components: - rot: 1.5707963267948966 rad pos: -43.5,36.5 parent: 2 type: Transform - - uid: 29901 + - uid: 29990 components: - rot: 1.5707963267948966 rad pos: -44.5,36.5 parent: 2 type: Transform - - uid: 29902 + - uid: 29991 components: - rot: 1.5707963267948966 rad pos: -44.5,37.5 parent: 2 type: Transform - - uid: 29903 + - uid: 29992 components: - rot: 1.5707963267948966 rad pos: -47.5,37.5 parent: 2 type: Transform - - uid: 29904 + - uid: 29993 components: - rot: 1.5707963267948966 rad pos: -39.5,35.5 parent: 2 type: Transform - - uid: 29905 + - uid: 29994 components: - rot: 1.5707963267948966 rad pos: -39.5,36.5 parent: 2 type: Transform - - uid: 29906 + - uid: 29995 components: - pos: -37.5,26.5 parent: 2 type: Transform - - uid: 29907 + - uid: 29996 components: - pos: -36.5,26.5 parent: 2 type: Transform - - uid: 29908 + - uid: 29997 components: - pos: -25.5,38.5 parent: 2 type: Transform - - uid: 29909 + - uid: 29998 components: - pos: -38.5,26.5 parent: 2 type: Transform - - uid: 29910 + - uid: 29999 components: - pos: -39.5,26.5 parent: 2 type: Transform - - uid: 29911 + - uid: 30000 components: - pos: -39.5,27.5 parent: 2 type: Transform - - uid: 29912 + - uid: 30001 components: - pos: -39.5,28.5 parent: 2 type: Transform - - uid: 29913 + - uid: 30002 components: - pos: -39.5,30.5 parent: 2 type: Transform - - uid: 29914 + - uid: 30003 components: - pos: -39.5,34.5 parent: 2 type: Transform - - uid: 29915 + - uid: 30004 components: - pos: -30.5,-1.5 parent: 2 type: Transform - - uid: 29916 + - uid: 30005 components: - pos: -31.5,-1.5 parent: 2 type: Transform - - uid: 29917 + - uid: 30006 components: - pos: -32.5,-1.5 parent: 2 type: Transform - - uid: 29918 + - uid: 30007 components: - pos: -32.5,-2.5 parent: 2 type: Transform - - uid: 29919 + - uid: 30008 components: - pos: -29.5,2.5 parent: 2 type: Transform - - uid: 29920 + - uid: 30009 components: - pos: -30.5,2.5 parent: 2 type: Transform - - uid: 29921 + - uid: 30010 components: - pos: -31.5,2.5 parent: 2 type: Transform - - uid: 29922 + - uid: 30011 components: - pos: -32.5,2.5 parent: 2 type: Transform - - uid: 29923 + - uid: 30012 components: - pos: -33.5,2.5 parent: 2 type: Transform - - uid: 29924 + - uid: 30013 components: - pos: -34.5,-1.5 parent: 2 type: Transform - - uid: 29925 + - uid: 30014 components: - rot: 3.141592653589793 rad pos: -25.5,16.5 parent: 2 type: Transform - - uid: 29926 + - uid: 30015 components: - pos: -22.5,16.5 parent: 2 type: Transform - - uid: 29927 + - uid: 30016 components: - pos: -16.5,22.5 parent: 2 type: Transform - - uid: 29928 + - uid: 30017 components: - pos: -15.5,22.5 parent: 2 type: Transform - - uid: 29929 + - uid: 30018 components: - pos: -14.5,22.5 parent: 2 type: Transform - - uid: 29930 + - uid: 30019 components: - rot: -1.5707963267948966 rad pos: -13.5,24.5 parent: 2 type: Transform - - uid: 29931 + - uid: 30020 components: - pos: -13.5,25.5 parent: 2 type: Transform - - uid: 29932 + - uid: 30021 components: - rot: -1.5707963267948966 rad pos: -13.5,24.5 parent: 2 type: Transform - - uid: 29933 + - uid: 30022 components: - rot: 3.141592653589793 rad pos: -48.5,17.5 parent: 2 type: Transform - - uid: 29934 + - uid: 30023 components: - rot: 3.141592653589793 rad pos: -47.5,17.5 parent: 2 type: Transform - - uid: 29935 + - uid: 30024 components: - rot: 3.141592653589793 rad pos: -29.5,-4.5 parent: 2 type: Transform - - uid: 29936 + - uid: 30025 components: - rot: 3.141592653589793 rad pos: -29.5,-6.5 parent: 2 type: Transform - - uid: 29937 + - uid: 30026 components: - rot: 3.141592653589793 rad pos: -29.5,-8.5 parent: 2 type: Transform - - uid: 29938 + - uid: 30027 components: - rot: 3.141592653589793 rad pos: -28.5,-8.5 parent: 2 type: Transform - - uid: 29939 + - uid: 30028 components: - rot: 3.141592653589793 rad pos: -27.5,-8.5 parent: 2 type: Transform - - uid: 29940 + - uid: 30029 components: - rot: 3.141592653589793 rad pos: -28.5,-4.5 parent: 2 type: Transform - - uid: 29941 + - uid: 30030 components: - rot: -1.5707963267948966 rad pos: -35.5,-1.5 parent: 2 type: Transform - - uid: 29942 + - uid: 30031 components: - rot: -1.5707963267948966 rad pos: -36.5,-1.5 parent: 2 type: Transform - - uid: 29943 + - uid: 30032 components: - rot: -1.5707963267948966 rad pos: -38.5,-1.5 parent: 2 type: Transform - - uid: 29944 + - uid: 30033 components: - rot: -1.5707963267948966 rad pos: -39.5,-1.5 parent: 2 type: Transform - - uid: 29945 + - uid: 30034 components: - rot: -1.5707963267948966 rad pos: -40.5,-1.5 parent: 2 type: Transform - - uid: 29946 + - uid: 30035 components: - rot: -1.5707963267948966 rad pos: -41.5,-1.5 parent: 2 type: Transform - - uid: 29947 + - uid: 30036 components: - rot: -1.5707963267948966 rad pos: -42.5,-1.5 parent: 2 type: Transform - - uid: 29948 + - uid: 30037 components: - pos: -42.5,2.5 parent: 2 type: Transform - - uid: 29949 + - uid: 30038 components: - pos: -43.5,2.5 parent: 2 type: Transform - - uid: 29950 + - uid: 30039 components: - pos: -42.5,3.5 parent: 2 type: Transform - - uid: 29951 + - uid: 30040 components: - pos: -42.5,4.5 parent: 2 type: Transform - - uid: 29952 + - uid: 30041 components: - pos: -42.5,5.5 parent: 2 type: Transform - - uid: 29953 + - uid: 30042 components: - pos: -42.5,6.5 parent: 2 type: Transform - - uid: 29954 + - uid: 30043 components: - pos: -42.5,7.5 parent: 2 type: Transform - - uid: 29955 + - uid: 30044 components: - pos: -41.5,11.5 parent: 2 type: Transform - - uid: 29956 + - uid: 30045 components: - pos: -41.5,10.5 parent: 2 type: Transform - - uid: 29957 + - uid: 30046 components: - pos: -41.5,9.5 parent: 2 type: Transform - - uid: 29958 + - uid: 30047 components: - pos: -41.5,8.5 parent: 2 type: Transform - - uid: 29959 + - uid: 30048 components: - pos: -34.5,12.5 parent: 2 type: Transform - - uid: 29960 + - uid: 30049 components: - pos: -34.5,11.5 parent: 2 type: Transform - - uid: 29961 + - uid: 30050 components: - pos: -34.5,10.5 parent: 2 type: Transform - - uid: 29962 + - uid: 30051 components: - pos: -33.5,3.5 parent: 2 type: Transform - - uid: 29963 + - uid: 30052 components: - pos: -33.5,4.5 parent: 2 type: Transform - - uid: 29964 + - uid: 30053 components: - pos: -33.5,5.5 parent: 2 type: Transform - - uid: 29965 + - uid: 30054 components: - pos: -33.5,6.5 parent: 2 type: Transform - - uid: 29966 + - uid: 30055 components: - pos: -33.5,7.5 parent: 2 type: Transform - - uid: 29967 + - uid: 30056 components: - pos: -43.5,15.5 parent: 2 type: Transform - - uid: 29968 + - uid: 30057 components: - pos: -33.5,12.5 parent: 2 type: Transform - - uid: 29969 + - uid: 30058 components: - pos: -42.5,12.5 parent: 2 type: Transform - - uid: 29970 + - uid: 30059 components: - pos: -32.5,12.5 parent: 2 type: Transform - - uid: 29971 + - uid: 30060 components: - pos: -41.5,7.5 parent: 2 type: Transform - - uid: 29972 + - uid: 30061 components: - pos: -40.5,7.5 parent: 2 type: Transform - - uid: 29973 + - uid: 30062 components: - pos: -35.5,7.5 parent: 2 type: Transform - - uid: 29974 + - uid: 30063 components: - pos: -34.5,7.5 parent: 2 type: Transform - - uid: 29975 + - uid: 30064 components: - rot: 3.141592653589793 rad pos: -41.5,14.5 parent: 2 type: Transform - - uid: 29976 + - uid: 30065 components: - pos: -43.5,12.5 parent: 2 type: Transform - - uid: 29977 + - uid: 30066 components: - pos: -43.5,13.5 parent: 2 type: Transform - - uid: 29978 + - uid: 30067 components: - pos: -32.5,15.5 parent: 2 type: Transform - - uid: 29979 + - uid: 30068 components: - pos: -41.5,12.5 parent: 2 type: Transform - - uid: 29980 + - uid: 30069 components: - pos: -29.5,11.5 parent: 2 type: Transform - - uid: 29981 + - uid: 30070 components: - pos: -34.5,8.5 parent: 2 type: Transform - - uid: 29982 + - uid: 30071 components: - pos: -33.5,-1.5 parent: 2 type: Transform - - uid: 29983 + - uid: 30072 components: - pos: -34.5,9.5 parent: 2 type: Transform - - uid: 29984 + - uid: 30073 components: - rot: 3.141592653589793 rad pos: -32.5,13.5 parent: 2 type: Transform - - uid: 29985 + - uid: 30074 components: - rot: 3.141592653589793 rad pos: -41.5,13.5 parent: 2 type: Transform - - uid: 29986 + - uid: 30075 components: - rot: 3.141592653589793 rad pos: -41.5,16.5 parent: 2 type: Transform - - uid: 29987 + - uid: 30076 components: - rot: 3.141592653589793 rad pos: -41.5,14.5 parent: 2 type: Transform - - uid: 29988 + - uid: 30077 components: - pos: -43.5,-1.5 parent: 2 type: Transform - - uid: 29989 + - uid: 30078 components: - pos: -44.5,2.5 parent: 2 type: Transform - - uid: 29990 + - uid: 30079 components: - pos: -44.5,-1.5 parent: 2 type: Transform - - uid: 29991 + - uid: 30080 components: - pos: -32.5,11.5 parent: 2 type: Transform - - uid: 29992 + - uid: 30081 components: - pos: -31.5,11.5 parent: 2 type: Transform - - uid: 29993 + - uid: 30082 components: - rot: -1.5707963267948966 rad pos: -40.5,16.5 parent: 2 type: Transform - - uid: 29994 + - uid: 30083 components: - rot: 3.141592653589793 rad pos: -40.5,16.5 parent: 2 type: Transform - - uid: 29995 + - uid: 30084 components: - rot: -1.5707963267948966 rad pos: -41.5,16.5 parent: 2 type: Transform - - uid: 29996 + - uid: 30085 components: - rot: 3.141592653589793 rad pos: -40.5,17.5 parent: 2 type: Transform - - uid: 29997 + - uid: 30086 components: - pos: -9.5,-19.5 parent: 2 type: Transform - - uid: 29998 + - uid: 30087 components: - pos: -32.5,7.5 parent: 2 type: Transform - - uid: 29999 + - uid: 30088 components: - pos: -31.5,7.5 parent: 2 type: Transform - - uid: 30000 + - uid: 30089 components: - pos: -29.5,7.5 parent: 2 type: Transform - - uid: 30001 + - uid: 30090 components: - rot: 3.141592653589793 rad pos: -41.5,15.5 parent: 2 type: Transform - - uid: 30002 + - uid: 30091 components: - rot: 1.5707963267948966 rad pos: -48.5,2.5 parent: 2 type: Transform - - uid: 30003 + - uid: 30092 components: - rot: 1.5707963267948966 rad pos: -48.5,1.5 parent: 2 type: Transform - - uid: 30004 + - uid: 30093 components: - rot: 1.5707963267948966 rad pos: -48.5,-0.5 parent: 2 type: Transform - - uid: 30005 + - uid: 30094 components: - rot: 1.5707963267948966 rad pos: -48.5,-1.5 parent: 2 type: Transform - - uid: 30006 + - uid: 30095 components: - rot: 1.5707963267948966 rad pos: -46.5,-1.5 parent: 2 type: Transform - - uid: 30007 + - uid: 30096 components: - rot: 1.5707963267948966 rad pos: -45.5,-1.5 parent: 2 type: Transform - - uid: 30008 + - uid: 30097 components: - rot: 1.5707963267948966 rad pos: -47.5,-1.5 parent: 2 type: Transform - - uid: 30009 + - uid: 30098 components: - rot: 1.5707963267948966 rad pos: -49.5,2.5 parent: 2 type: Transform - - uid: 30010 + - uid: 30099 components: - rot: 1.5707963267948966 rad pos: -50.5,2.5 parent: 2 type: Transform - - uid: 30011 + - uid: 30100 components: - rot: 1.5707963267948966 rad pos: -50.5,3.5 parent: 2 type: Transform - - uid: 30012 + - uid: 30101 components: - rot: 1.5707963267948966 rad pos: -50.5,4.5 parent: 2 type: Transform - - uid: 30013 + - uid: 30102 components: - rot: 1.5707963267948966 rad pos: -50.5,5.5 parent: 2 type: Transform - - uid: 30014 + - uid: 30103 components: - rot: 1.5707963267948966 rad pos: -50.5,6.5 parent: 2 type: Transform - - uid: 30015 + - uid: 30104 components: - rot: 1.5707963267948966 rad pos: -50.5,7.5 parent: 2 type: Transform - - uid: 30016 + - uid: 30105 components: - rot: 1.5707963267948966 rad pos: -50.5,8.5 parent: 2 type: Transform - - uid: 30017 + - uid: 30106 components: - rot: 1.5707963267948966 rad pos: -50.5,9.5 parent: 2 type: Transform - - uid: 30018 + - uid: 30107 components: - rot: 1.5707963267948966 rad pos: -49.5,9.5 parent: 2 type: Transform - - uid: 30019 + - uid: 30108 components: - rot: 1.5707963267948966 rad pos: -48.5,9.5 parent: 2 type: Transform - - uid: 30020 + - uid: 30109 components: - rot: 1.5707963267948966 rad pos: -47.5,9.5 parent: 2 type: Transform - - uid: 30021 + - uid: 30110 components: - rot: 1.5707963267948966 rad pos: -44.5,9.5 parent: 2 type: Transform - - uid: 30022 + - uid: 30111 components: - rot: 1.5707963267948966 rad pos: -43.5,9.5 parent: 2 type: Transform - - uid: 30023 + - uid: 30112 components: - rot: 1.5707963267948966 rad pos: -43.5,8.5 parent: 2 type: Transform - - uid: 30024 + - uid: 30113 components: - rot: 1.5707963267948966 rad pos: -43.5,7.5 parent: 2 type: Transform - - uid: 30025 + - uid: 30114 components: - rot: 1.5707963267948966 rad pos: -44.5,10.5 parent: 2 type: Transform - - uid: 30026 + - uid: 30115 components: - rot: 1.5707963267948966 rad pos: -44.5,12.5 parent: 2 type: Transform - - uid: 30027 + - uid: 30116 components: - pos: -50.5,1.5 parent: 2 type: Transform - - uid: 30028 + - uid: 30117 components: - pos: -50.5,0.5 parent: 2 type: Transform - - uid: 30029 + - uid: 30118 components: - pos: -50.5,-0.5 parent: 2 type: Transform - - uid: 30030 + - uid: 30119 components: - pos: -50.5,-1.5 parent: 2 type: Transform - - uid: 30031 + - uid: 30120 components: - pos: -46.5,-3.5 parent: 2 type: Transform - - uid: 30032 + - uid: 30121 components: - pos: -43.5,-2.5 parent: 2 type: Transform - - uid: 30033 + - uid: 30122 components: - pos: -50.5,-2.5 parent: 2 type: Transform - - uid: 30034 + - uid: 30123 components: - pos: -52.5,-1.5 parent: 2 type: Transform - - uid: 30035 + - uid: 30124 components: - pos: -52.5,0.5 parent: 2 type: Transform - - uid: 30036 + - uid: 30125 components: - pos: -52.5,-2.5 parent: 2 type: Transform - - uid: 30037 + - uid: 30126 components: - pos: -54.5,-2.5 parent: 2 type: Transform - - uid: 30038 + - uid: 30127 components: - rot: 3.141592653589793 rad pos: -11.5,22.5 parent: 2 type: Transform - - uid: 30039 + - uid: 30128 components: - pos: -56.5,-2.5 parent: 2 type: Transform - - uid: 30040 + - uid: 30129 components: - pos: -55.5,-2.5 parent: 2 type: Transform - - uid: 30041 + - uid: 30130 components: - pos: -52.5,1.5 parent: 2 type: Transform - - uid: 30042 + - uid: 30131 components: - pos: -50.5,12.5 parent: 2 type: Transform - - uid: 30043 + - uid: 30132 components: - pos: -50.5,13.5 parent: 2 type: Transform - - uid: 30044 + - uid: 30133 components: - pos: -50.5,14.5 parent: 2 type: Transform - - uid: 30045 + - uid: 30134 components: - pos: -50.5,15.5 parent: 2 type: Transform - - uid: 30046 + - uid: 30135 components: - rot: 3.141592653589793 rad pos: -52.5,12.5 parent: 2 type: Transform - - uid: 30047 + - uid: 30136 components: - rot: 3.141592653589793 rad pos: -52.5,5.5 parent: 2 type: Transform - - uid: 30048 + - uid: 30137 components: - rot: 3.141592653589793 rad pos: -51.5,9.5 parent: 2 type: Transform - - uid: 30049 + - uid: 30138 components: - rot: 3.141592653589793 rad pos: -51.5,5.5 parent: 2 type: Transform - - uid: 30050 + - uid: 30139 components: - rot: 3.141592653589793 rad pos: -46.5,17.5 parent: 2 type: Transform - - uid: 30051 + - uid: 30140 components: - pos: -32.5,-3.5 parent: 2 type: Transform - - uid: 30052 + - uid: 30141 components: - pos: 53.5,41.5 parent: 2 type: Transform - - uid: 30053 + - uid: 30142 components: - pos: 64.5,0.5 parent: 2 type: Transform - - uid: 30054 + - uid: 30143 components: - pos: 67.5,-12.5 parent: 2 type: Transform - - uid: 30055 + - uid: 30144 components: - pos: 67.5,-4.5 parent: 2 type: Transform - - uid: 30056 + - uid: 30145 components: - pos: 53.5,40.5 parent: 2 type: Transform - - uid: 30057 + - uid: 30146 components: - pos: -17.5,36.5 parent: 2 type: Transform - - uid: 30058 + - uid: 30147 components: - pos: -20.5,32.5 parent: 2 type: Transform - - uid: 30059 + - uid: 30148 components: - pos: -21.5,32.5 parent: 2 type: Transform - - uid: 30060 + - uid: 30149 components: - pos: -21.5,31.5 parent: 2 type: Transform - - uid: 30061 + - uid: 30150 components: - rot: -1.5707963267948966 rad pos: -22.5,32.5 parent: 2 type: Transform - - uid: 30062 + - uid: 30151 components: - pos: -21.5,29.5 parent: 2 type: Transform - - uid: 30063 + - uid: 30152 components: - pos: -21.5,28.5 parent: 2 type: Transform - - uid: 30064 + - uid: 30153 components: - pos: -21.5,26.5 parent: 2 type: Transform - - uid: 30065 + - uid: 30154 components: - pos: -17.5,28.5 parent: 2 type: Transform - - uid: 30066 + - uid: 30155 components: - rot: -1.5707963267948966 rad pos: -13.5,27.5 parent: 2 type: Transform - - uid: 30067 + - uid: 30156 components: - rot: -1.5707963267948966 rad pos: -13.5,23.5 parent: 2 type: Transform - - uid: 30068 + - uid: 30157 components: - pos: -35.5,20.5 parent: 2 type: Transform - - uid: 30069 + - uid: 30158 components: - pos: -0.5,10.5 parent: 2 type: Transform - - uid: 30070 + - uid: 30159 components: - rot: 1.5707963267948966 rad pos: -6.5,-11.5 parent: 2 type: Transform - - uid: 30071 + - uid: 30160 components: - pos: 5.5,-55.5 parent: 2 type: Transform - - uid: 30072 + - uid: 30161 components: - pos: 59.5,-31.5 parent: 2 type: Transform - - uid: 30073 + - uid: 30162 components: - rot: -1.5707963267948966 rad pos: -0.5,-76.5 parent: 2 type: Transform - - uid: 30074 + - uid: 30163 components: - pos: 19.5,-51.5 parent: 2 type: Transform - - uid: 30075 + - uid: 30164 components: - pos: 22.5,-48.5 parent: 2 type: Transform - - uid: 30076 + - uid: 30165 components: - rot: 3.141592653589793 rad pos: -31.5,-53.5 parent: 2 type: Transform - - uid: 30077 + - uid: 30166 components: - pos: -27.5,-55.5 parent: 2 type: Transform - - uid: 30078 + - uid: 30167 components: - rot: 3.141592653589793 rad pos: -17.5,8.5 parent: 2 type: Transform - - uid: 30079 + - uid: 30168 components: - pos: -21.5,-6.5 parent: 2 type: Transform - - uid: 30080 + - uid: 30169 components: - rot: 3.141592653589793 rad pos: -44.5,17.5 parent: 2 type: Transform - - uid: 30081 + - uid: 30170 components: - rot: 3.141592653589793 rad pos: -31.5,-72.5 parent: 2 type: Transform - - uid: 30082 + - uid: 30171 components: - pos: -30.5,-68.5 parent: 2 type: Transform - - uid: 30083 + - uid: 30172 components: - pos: -26.5,-72.5 parent: 2 type: Transform - - uid: 30084 + - uid: 30173 components: - pos: -26.5,-71.5 parent: 2 type: Transform - - uid: 30085 + - uid: 30174 components: - pos: 6.5,-55.5 parent: 2 type: Transform - - uid: 30086 + - uid: 30175 components: - pos: -17.5,32.5 parent: 2 type: Transform - - uid: 30087 + - uid: 30176 components: - pos: -18.5,32.5 parent: 2 type: Transform - - uid: 30088 + - uid: 30177 components: - pos: -19.5,32.5 parent: 2 type: Transform - - uid: 30089 + - uid: 30178 components: - pos: 44.5,47.5 parent: 2 type: Transform - - uid: 30090 + - uid: 30179 components: - pos: 44.5,48.5 parent: 2 type: Transform - - uid: 30091 + - uid: 30180 components: - pos: 53.5,39.5 parent: 2 type: Transform - - uid: 30092 + - uid: 30181 components: - pos: 53.5,38.5 parent: 2 type: Transform - - uid: 30093 + - uid: 30182 components: - pos: 52.5,38.5 parent: 2 type: Transform - - uid: 30094 + - uid: 30183 components: - pos: 51.5,38.5 parent: 2 type: Transform - - uid: 30095 + - uid: 30184 components: - pos: 50.5,38.5 parent: 2 type: Transform - - uid: 30096 + - uid: 30185 components: - pos: 55.5,36.5 parent: 2 type: Transform - - uid: 30097 + - uid: 30186 components: - pos: 55.5,35.5 parent: 2 type: Transform - - uid: 30098 + - uid: 30187 components: - pos: 55.5,34.5 parent: 2 type: Transform - - uid: 30099 + - uid: 30188 components: - pos: 54.5,34.5 parent: 2 type: Transform - - uid: 30100 + - uid: 30189 components: - pos: 53.5,34.5 parent: 2 type: Transform - - uid: 30101 + - uid: 30190 components: - pos: 51.5,34.5 parent: 2 type: Transform - - uid: 30102 + - uid: 30191 components: - pos: 50.5,34.5 parent: 2 type: Transform - - uid: 30103 + - uid: 30192 components: - pos: 50.5,35.5 parent: 2 type: Transform - - uid: 30104 + - uid: 30193 components: - pos: 50.5,36.5 parent: 2 type: Transform - - uid: 30105 + - uid: 30194 components: - pos: 50.5,37.5 parent: 2 type: Transform - - uid: 30106 + - uid: 30195 components: - pos: 51.5,33.5 parent: 2 type: Transform - - uid: 30107 + - uid: 30196 components: - pos: 51.5,32.5 parent: 2 type: Transform - - uid: 30108 + - uid: 30197 components: - pos: 53.5,33.5 parent: 2 type: Transform - - uid: 30109 + - uid: 30198 components: - pos: 53.5,32.5 parent: 2 type: Transform - - uid: 30110 + - uid: 30199 components: - pos: 53.5,31.5 parent: 2 type: Transform - - uid: 30111 + - uid: 30200 components: - pos: 53.5,30.5 parent: 2 type: Transform - - uid: 30112 + - uid: 30201 components: - pos: 52.5,30.5 parent: 2 type: Transform - - uid: 30113 + - uid: 30202 components: - pos: 51.5,30.5 parent: 2 type: Transform - - uid: 30114 + - uid: 30203 components: - pos: 49.5,30.5 parent: 2 type: Transform - - uid: 30115 + - uid: 30204 components: - pos: 50.5,30.5 parent: 2 type: Transform - - uid: 30116 + - uid: 30205 components: - pos: 49.5,34.5 parent: 2 type: Transform - - uid: 30117 + - uid: 30206 components: - pos: 48.5,34.5 parent: 2 type: Transform - - uid: 30118 + - uid: 30207 components: - pos: 47.5,30.5 parent: 2 type: Transform - - uid: 30119 + - uid: 30208 components: - pos: 47.5,29.5 parent: 2 type: Transform - - uid: 30120 + - uid: 30209 components: - pos: 47.5,28.5 parent: 2 type: Transform - - uid: 30121 + - uid: 30210 components: - pos: 47.5,27.5 parent: 2 type: Transform - - uid: 30122 + - uid: 30211 components: - pos: 49.5,27.5 parent: 2 type: Transform - - uid: 30123 + - uid: 30212 components: - pos: 50.5,27.5 parent: 2 type: Transform - - uid: 30124 + - uid: 30213 components: - pos: 51.5,27.5 parent: 2 type: Transform - - uid: 30125 + - uid: 30214 components: - pos: 51.5,28.5 parent: 2 type: Transform - - uid: 30126 + - uid: 30215 components: - pos: 51.5,29.5 parent: 2 type: Transform - - uid: 30127 + - uid: 30216 components: - pos: 60.5,27.5 parent: 2 type: Transform - - uid: 30128 + - uid: 30217 components: - pos: 59.5,27.5 parent: 2 type: Transform - - uid: 30129 + - uid: 30218 components: - pos: 57.5,27.5 parent: 2 type: Transform - - uid: 30130 + - uid: 30219 components: - pos: 56.5,27.5 parent: 2 type: Transform - - uid: 30131 + - uid: 30220 components: - pos: 61.5,29.5 parent: 2 type: Transform - - uid: 30132 + - uid: 30221 components: - pos: 61.5,28.5 parent: 2 type: Transform - - uid: 30133 + - uid: 30222 components: - pos: 61.5,27.5 parent: 2 type: Transform - - uid: 30134 + - uid: 30223 components: - pos: 59.5,30.5 parent: 2 type: Transform - - uid: 30135 + - uid: 30224 components: - pos: 58.5,30.5 parent: 2 type: Transform - - uid: 30136 + - uid: 30225 components: - pos: 56.5,30.5 parent: 2 type: Transform - - uid: 30137 + - uid: 30226 components: - pos: 56.5,29.5 parent: 2 type: Transform - - uid: 30138 + - uid: 30227 components: - pos: 56.5,28.5 parent: 2 type: Transform - - uid: 30139 + - uid: 30228 components: - pos: 54.5,30.5 parent: 2 type: Transform - - uid: 30140 + - uid: 30229 components: - pos: 55.5,30.5 parent: 2 type: Transform - - uid: 30141 + - uid: 30230 components: - rot: -1.5707963267948966 rad pos: 49.5,29.5 parent: 2 type: Transform - - uid: 30142 + - uid: 30231 components: - rot: 3.141592653589793 rad pos: -11.5,23.5 parent: 2 type: Transform - - uid: 30143 + - uid: 30232 components: - rot: -1.5707963267948966 rad pos: -23.5,32.5 parent: 2 type: Transform - - uid: 30144 + - uid: 30233 components: - rot: -1.5707963267948966 rad pos: -24.5,32.5 parent: 2 type: Transform - - uid: 30145 + - uid: 30234 components: - rot: -1.5707963267948966 rad pos: -25.5,32.5 parent: 2 type: Transform - - uid: 30146 + - uid: 30235 components: - rot: -1.5707963267948966 rad pos: -22.5,28.5 parent: 2 type: Transform - - uid: 30147 + - uid: 30236 components: - rot: -1.5707963267948966 rad pos: -23.5,28.5 parent: 2 type: Transform - - uid: 30148 + - uid: 30237 components: - rot: -1.5707963267948966 rad pos: -24.5,28.5 parent: 2 type: Transform - - uid: 30149 + - uid: 30238 components: - rot: -1.5707963267948966 rad pos: -25.5,28.5 parent: 2 type: Transform - - uid: 30150 + - uid: 30239 components: - rot: -1.5707963267948966 rad pos: -25.5,31.5 parent: 2 type: Transform - - uid: 30151 + - uid: 30240 components: - rot: -1.5707963267948966 rad pos: -25.5,30.5 parent: 2 type: Transform - - uid: 30152 + - uid: 30241 components: - rot: -1.5707963267948966 rad pos: -25.5,29.5 parent: 2 type: Transform - - uid: 30153 + - uid: 30242 components: - rot: -1.5707963267948966 rad pos: -20.5,36.5 parent: 2 type: Transform - - uid: 30154 + - uid: 30243 components: - rot: -1.5707963267948966 rad pos: -19.5,36.5 parent: 2 type: Transform - - uid: 30155 + - uid: 30244 components: - rot: -1.5707963267948966 rad pos: -21.5,36.5 parent: 2 type: Transform - - uid: 30156 + - uid: 30245 components: - rot: -1.5707963267948966 rad pos: -22.5,36.5 parent: 2 type: Transform - - uid: 30157 + - uid: 30246 components: - rot: -1.5707963267948966 rad pos: -22.5,35.5 parent: 2 type: Transform - - uid: 30158 + - uid: 30247 components: - rot: -1.5707963267948966 rad pos: -22.5,33.5 parent: 2 type: Transform - - uid: 30159 + - uid: 30248 components: - rot: -1.5707963267948966 rad pos: -26.5,29.5 parent: 2 type: Transform - - uid: 30160 + - uid: 30249 components: - rot: -1.5707963267948966 rad pos: -27.5,29.5 parent: 2 type: Transform - - uid: 30161 + - uid: 30250 components: - rot: -1.5707963267948966 rad pos: -27.5,30.5 parent: 2 type: Transform - - uid: 30162 + - uid: 30251 components: - rot: -1.5707963267948966 rad pos: -18.5,37.5 parent: 2 type: Transform - - uid: 30163 + - uid: 30252 components: - rot: -1.5707963267948966 rad pos: -17.5,39.5 parent: 2 type: Transform - - uid: 30164 + - uid: 30253 components: - rot: -1.5707963267948966 rad pos: -18.5,39.5 parent: 2 type: Transform - - uid: 30165 + - uid: 30254 components: - rot: -1.5707963267948966 rad pos: -19.5,39.5 parent: 2 type: Transform - - uid: 30166 + - uid: 30255 components: - rot: -1.5707963267948966 rad pos: -9.5,31.5 parent: 2 type: Transform - - uid: 30167 + - uid: 30256 components: - rot: -1.5707963267948966 rad pos: -9.5,32.5 parent: 2 type: Transform - - uid: 30168 + - uid: 30257 components: - rot: -1.5707963267948966 rad pos: -13.5,31.5 parent: 2 type: Transform - - uid: 30169 + - uid: 30258 components: - rot: -1.5707963267948966 rad pos: -13.5,32.5 parent: 2 type: Transform - - uid: 30170 + - uid: 30259 components: - rot: -1.5707963267948966 rad pos: -9.5,36.5 parent: 2 type: Transform - - uid: 30171 + - uid: 30260 components: - rot: -1.5707963267948966 rad pos: -8.5,36.5 parent: 2 type: Transform - - uid: 30172 + - uid: 30261 components: - rot: -1.5707963267948966 rad pos: -13.5,40.5 parent: 2 type: Transform - - uid: 30173 + - uid: 30262 components: - rot: -1.5707963267948966 rad pos: -12.5,40.5 parent: 2 type: Transform - - uid: 30174 + - uid: 30263 components: - rot: -1.5707963267948966 rad pos: -11.5,40.5 parent: 2 type: Transform - - uid: 30175 + - uid: 30264 components: - rot: -1.5707963267948966 rad pos: -10.5,35.5 parent: 2 type: Transform - - uid: 30176 + - uid: 30265 components: - rot: -1.5707963267948966 rad pos: -19.5,52.5 parent: 2 type: Transform - - uid: 30177 + - uid: 30266 components: - rot: -1.5707963267948966 rad pos: -10.5,40.5 parent: 2 type: Transform - - uid: 30178 + - uid: 30267 components: - rot: -1.5707963267948966 rad pos: -9.5,40.5 parent: 2 type: Transform - - uid: 30179 + - uid: 30268 components: - rot: -1.5707963267948966 rad pos: -8.5,40.5 parent: 2 type: Transform - - uid: 30180 + - uid: 30269 components: - rot: -1.5707963267948966 rad pos: -10.5,36.5 parent: 2 type: Transform - - uid: 30181 + - uid: 30270 components: - rot: -1.5707963267948966 rad pos: -11.5,36.5 parent: 2 type: Transform - - uid: 30182 + - uid: 30271 components: - rot: -1.5707963267948966 rad pos: -12.5,36.5 parent: 2 type: Transform - - uid: 30183 + - uid: 30272 components: - rot: -1.5707963267948966 rad pos: -16.5,64.5 parent: 2 type: Transform - - uid: 30184 + - uid: 30273 components: - rot: -1.5707963267948966 rad pos: -15.5,64.5 parent: 2 type: Transform - - uid: 30185 + - uid: 30274 components: - rot: -1.5707963267948966 rad pos: -14.5,64.5 parent: 2 type: Transform - - uid: 30186 + - uid: 30275 components: - rot: -1.5707963267948966 rad pos: -18.5,64.5 parent: 2 type: Transform - - uid: 30187 + - uid: 30276 components: - rot: -1.5707963267948966 rad pos: -19.5,64.5 parent: 2 type: Transform - - uid: 30188 + - uid: 30277 components: - rot: -1.5707963267948966 rad pos: -20.5,64.5 parent: 2 type: Transform - - uid: 30189 + - uid: 30278 components: - rot: -1.5707963267948966 rad pos: -14.5,63.5 parent: 2 type: Transform - - uid: 30190 + - uid: 30279 components: - rot: -1.5707963267948966 rad pos: -14.5,61.5 parent: 2 type: Transform - - uid: 30191 + - uid: 30280 components: - rot: -1.5707963267948966 rad pos: -14.5,60.5 parent: 2 type: Transform - - uid: 30192 + - uid: 30281 components: - rot: -1.5707963267948966 rad pos: -20.5,63.5 parent: 2 type: Transform - - uid: 30193 + - uid: 30282 components: - rot: -1.5707963267948966 rad pos: -20.5,61.5 parent: 2 type: Transform - - uid: 30194 + - uid: 30283 components: - rot: -1.5707963267948966 rad pos: -20.5,60.5 parent: 2 type: Transform - - uid: 30195 + - uid: 30284 components: - rot: -1.5707963267948966 rad pos: -11.5,62.5 parent: 2 type: Transform - - uid: 30196 + - uid: 30285 components: - rot: -1.5707963267948966 rad pos: -11.5,61.5 parent: 2 type: Transform - - uid: 30197 + - uid: 30286 components: - rot: -1.5707963267948966 rad pos: -11.5,60.5 parent: 2 type: Transform - - uid: 30198 + - uid: 30287 components: - rot: -1.5707963267948966 rad pos: -20.5,59.5 parent: 2 type: Transform - - uid: 30199 + - uid: 30288 components: - rot: -1.5707963267948966 rad pos: -18.5,59.5 parent: 2 type: Transform - - uid: 30200 + - uid: 30289 components: - rot: -1.5707963267948966 rad pos: -18.5,58.5 parent: 2 type: Transform - - uid: 30201 + - uid: 30290 components: - rot: -1.5707963267948966 rad pos: -18.5,57.5 parent: 2 type: Transform - - uid: 30202 + - uid: 30291 components: - rot: -1.5707963267948966 rad pos: -11.5,57.5 parent: 2 type: Transform - - uid: 30203 + - uid: 30292 components: - rot: -1.5707963267948966 rad pos: -20.5,58.5 parent: 2 type: Transform - - uid: 30204 + - uid: 30293 components: - rot: -1.5707963267948966 rad pos: -20.5,57.5 parent: 2 type: Transform - - uid: 30205 + - uid: 30294 components: - rot: -1.5707963267948966 rad pos: -18.5,56.5 parent: 2 type: Transform - - uid: 30206 + - uid: 30295 components: - rot: 1.5707963267948966 rad pos: -19.5,57.5 parent: 2 type: Transform - - uid: 30207 + - uid: 30296 components: - rot: -1.5707963267948966 rad pos: -20.5,56.5 parent: 2 type: Transform - - uid: 30208 + - uid: 30297 components: - rot: -1.5707963267948966 rad pos: -20.5,54.5 parent: 2 type: Transform - - uid: 30209 + - uid: 30298 components: - rot: -1.5707963267948966 rad pos: -18.5,54.5 parent: 2 type: Transform - - uid: 30210 + - uid: 30299 components: - rot: -1.5707963267948966 rad pos: -18.5,53.5 parent: 2 type: Transform - - uid: 30211 + - uid: 30300 components: - rot: -1.5707963267948966 rad pos: -18.5,52.5 parent: 2 type: Transform - - uid: 30212 + - uid: 30301 components: - rot: -1.5707963267948966 rad pos: -22.5,49.5 parent: 2 type: Transform - - uid: 30213 + - uid: 30302 components: - rot: -1.5707963267948966 rad pos: -23.5,54.5 parent: 2 type: Transform - - uid: 30214 + - uid: 30303 components: - rot: -1.5707963267948966 rad pos: -23.5,55.5 parent: 2 type: Transform - - uid: 30215 + - uid: 30304 components: - rot: -1.5707963267948966 rad pos: -11.5,56.5 parent: 2 type: Transform - - uid: 30216 + - uid: 30305 components: - rot: -1.5707963267948966 rad pos: -11.5,55.5 parent: 2 type: Transform - - uid: 30217 + - uid: 30306 components: - rot: -1.5707963267948966 rad pos: -11.5,54.5 parent: 2 type: Transform - - uid: 30218 + - uid: 30307 components: - rot: -1.5707963267948966 rad pos: -20.5,53.5 parent: 2 type: Transform - - uid: 30219 + - uid: 30308 components: - rot: -1.5707963267948966 rad pos: -20.5,52.5 parent: 2 type: Transform - - uid: 30220 + - uid: 30309 components: - rot: -1.5707963267948966 rad pos: -23.5,53.5 parent: 2 type: Transform - - uid: 30221 + - uid: 30310 components: - rot: -1.5707963267948966 rad pos: -23.5,52.5 parent: 2 type: Transform - - uid: 30222 + - uid: 30311 components: - rot: -1.5707963267948966 rad pos: -23.5,49.5 parent: 2 type: Transform - - uid: 30223 + - uid: 30312 components: - rot: -1.5707963267948966 rad pos: -23.5,50.5 parent: 2 type: Transform - - uid: 30224 + - uid: 30313 components: - rot: -1.5707963267948966 rad pos: -23.5,51.5 parent: 2 type: Transform - - uid: 30225 + - uid: 30314 components: - rot: -1.5707963267948966 rad pos: -11.5,50.5 parent: 2 type: Transform - - uid: 30226 + - uid: 30315 components: - rot: -1.5707963267948966 rad pos: -11.5,49.5 parent: 2 type: Transform - - uid: 30227 + - uid: 30316 components: - rot: -1.5707963267948966 rad pos: -14.5,48.5 parent: 2 type: Transform - - uid: 30228 + - uid: 30317 components: - rot: -1.5707963267948966 rad pos: -11.5,48.5 parent: 2 type: Transform - - uid: 30229 + - uid: 30318 components: - rot: -1.5707963267948966 rad pos: -12.5,48.5 parent: 2 type: Transform - - uid: 30230 + - uid: 30319 components: - rot: -1.5707963267948966 rad pos: -15.5,49.5 parent: 2 type: Transform - - uid: 30231 + - uid: 30320 components: - rot: -1.5707963267948966 rad pos: -19.5,49.5 parent: 2 type: Transform - - uid: 30232 + - uid: 30321 components: - rot: -1.5707963267948966 rad pos: -19.5,48.5 parent: 2 type: Transform - - uid: 30233 + - uid: 30322 components: - rot: -1.5707963267948966 rad pos: -19.5,47.5 parent: 2 type: Transform - - uid: 30234 + - uid: 30323 components: - rot: -1.5707963267948966 rad pos: -19.5,46.5 parent: 2 type: Transform - - uid: 30235 + - uid: 30324 components: - rot: -1.5707963267948966 rad pos: -19.5,40.5 parent: 2 type: Transform - - uid: 30236 + - uid: 30325 components: - rot: -1.5707963267948966 rad pos: -15.5,48.5 parent: 2 type: Transform - - uid: 30237 + - uid: 30326 components: - rot: -1.5707963267948966 rad pos: -13.5,43.5 parent: 2 type: Transform - - uid: 30238 + - uid: 30327 components: - rot: -1.5707963267948966 rad pos: -13.5,42.5 parent: 2 type: Transform - - uid: 30239 + - uid: 30328 components: - pos: -25.5,37.5 parent: 2 type: Transform - - uid: 30240 + - uid: 30329 components: - pos: -25.5,36.5 parent: 2 type: Transform - - uid: 30241 + - uid: 30330 components: - pos: -26.5,36.5 parent: 2 type: Transform - - uid: 30242 + - uid: 30331 components: - pos: -25.5,39.5 parent: 2 type: Transform - - uid: 30243 + - uid: 30332 components: - pos: -25.5,40.5 parent: 2 type: Transform - - uid: 30244 + - uid: 30333 components: - pos: -44.5,38.5 parent: 2 type: Transform - - uid: 30245 + - uid: 30334 components: - pos: -30.5,37.5 parent: 2 type: Transform - - uid: 30246 + - uid: 30335 components: - pos: -31.5,37.5 parent: 2 type: Transform - - uid: 30247 + - uid: 30336 components: - pos: -33.5,37.5 parent: 2 type: Transform - - uid: 30248 + - uid: 30337 components: - pos: -33.5,38.5 parent: 2 type: Transform - - uid: 30249 + - uid: 30338 components: - pos: -34.5,38.5 parent: 2 type: Transform - - uid: 30250 + - uid: 30339 components: - pos: -35.5,36.5 parent: 2 type: Transform - - uid: 30251 + - uid: 30340 components: - pos: -37.5,38.5 parent: 2 type: Transform - - uid: 30252 + - uid: 30341 components: - pos: -38.5,38.5 parent: 2 type: Transform - - uid: 30253 + - uid: 30342 components: - rot: 3.141592653589793 rad pos: 67.5,9.5 parent: 2 type: Transform - - uid: 30254 + - uid: 30343 components: - pos: -44.5,13.5 parent: 2 type: Transform - - uid: 30255 + - uid: 30344 components: - rot: -1.5707963267948966 rad pos: -22.5,40.5 parent: 2 type: Transform - - uid: 30256 + - uid: 30345 components: - rot: -1.5707963267948966 rad pos: -21.5,40.5 parent: 2 type: Transform - - uid: 30257 + - uid: 30346 components: - rot: -1.5707963267948966 rad pos: -20.5,40.5 parent: 2 type: Transform - - uid: 30258 + - uid: 30347 components: - pos: -23.5,40.5 parent: 2 type: Transform - - uid: 30259 + - uid: 30348 components: - pos: -23.5,42.5 parent: 2 type: Transform - - uid: 30260 + - uid: 30349 components: - pos: -23.5,43.5 parent: 2 type: Transform - - uid: 30261 + - uid: 30350 components: - pos: -23.5,44.5 parent: 2 type: Transform - - uid: 30262 + - uid: 30351 components: - pos: -23.5,45.5 parent: 2 type: Transform - - uid: 30263 + - uid: 30352 components: - pos: -23.5,46.5 parent: 2 type: Transform - - uid: 30264 + - uid: 30353 components: - pos: -22.5,46.5 parent: 2 type: Transform - - uid: 30265 + - uid: 30354 components: - pos: -21.5,46.5 parent: 2 type: Transform - - uid: 30266 + - uid: 30355 components: - pos: -20.5,46.5 parent: 2 type: Transform - - uid: 30267 + - uid: 30356 components: - pos: -8.5,47.5 parent: 2 type: Transform - - uid: 30268 + - uid: 30357 components: - pos: -7.5,47.5 parent: 2 type: Transform - - uid: 30269 + - uid: 30358 components: - pos: -6.5,47.5 parent: 2 type: Transform - - uid: 30270 + - uid: 30359 components: - pos: -2.5,47.5 parent: 2 type: Transform - - uid: 30271 + - uid: 30360 components: - pos: -1.5,47.5 parent: 2 type: Transform - - uid: 30272 + - uid: 30361 components: - pos: -1.5,48.5 parent: 2 type: Transform - - uid: 30273 + - uid: 30362 components: - pos: -1.5,51.5 parent: 2 type: Transform - - uid: 30274 + - uid: 30363 components: - pos: -1.5,52.5 parent: 2 type: Transform - - uid: 30275 + - uid: 30364 components: - pos: -1.5,53.5 parent: 2 type: Transform - - uid: 30276 + - uid: 30365 components: - pos: -1.5,54.5 parent: 2 type: Transform - - uid: 30277 + - uid: 30366 components: - pos: 45.5,34.5 parent: 2 type: Transform - - uid: 30278 + - uid: 30367 components: - rot: 3.141592653589793 rad pos: 45.5,33.5 parent: 2 type: Transform - - uid: 30279 + - uid: 30368 components: - rot: -1.5707963267948966 rad pos: -4.5,57.5 parent: 2 type: Transform - - uid: 30280 + - uid: 30369 components: - rot: -1.5707963267948966 rad pos: -3.5,57.5 parent: 2 type: Transform - - uid: 30281 + - uid: 30370 components: - rot: -1.5707963267948966 rad pos: -2.5,57.5 parent: 2 type: Transform - - uid: 30282 + - uid: 30371 components: - rot: -1.5707963267948966 rad pos: -1.5,57.5 parent: 2 type: Transform - - uid: 30283 + - uid: 30372 components: - rot: -1.5707963267948966 rad pos: -1.5,56.5 parent: 2 type: Transform - - uid: 30284 + - uid: 30373 components: - rot: -1.5707963267948966 rad pos: -1.5,55.5 parent: 2 type: Transform - - uid: 30285 + - uid: 30374 components: - rot: -1.5707963267948966 rad pos: -9.5,60.5 parent: 2 type: Transform - - uid: 30286 + - uid: 30375 components: - pos: 17.5,35.5 parent: 2 type: Transform - - uid: 30287 + - uid: 30376 components: - pos: 15.5,35.5 parent: 2 type: Transform - - uid: 30288 + - uid: 30377 components: - pos: -28.5,42.5 parent: 2 type: Transform - - uid: 30289 + - uid: 30378 components: - pos: -27.5,42.5 parent: 2 type: Transform - - uid: 30290 + - uid: 30379 components: - pos: -26.5,42.5 parent: 2 type: Transform - - uid: 30291 + - uid: 30380 components: - pos: -39.5,37.5 parent: 2 type: Transform - - uid: 30292 + - uid: 30381 components: - pos: -39.5,38.5 parent: 2 type: Transform - - uid: 30293 + - uid: 30382 components: - pos: -36.5,38.5 parent: 2 type: Transform - - uid: 30294 + - uid: 30383 components: - pos: -35.5,38.5 parent: 2 type: Transform - - uid: 30295 + - uid: 30384 components: - pos: 40.5,49.5 parent: 2 type: Transform - - uid: 30296 + - uid: 30385 components: - pos: 40.5,50.5 parent: 2 type: Transform - - uid: 30297 + - uid: 30386 components: - pos: 44.5,46.5 parent: 2 type: Transform - - uid: 30298 + - uid: 30387 components: - pos: 44.5,44.5 parent: 2 type: Transform - - uid: 30299 + - uid: 30388 components: - pos: -23.5,48.5 parent: 2 type: Transform - - uid: 30300 + - uid: 30389 components: - pos: 7.5,-31.5 parent: 2 type: Transform - - uid: 30301 + - uid: 30390 components: - pos: 7.5,-29.5 parent: 2 type: Transform - - uid: 30302 + - uid: 30391 components: - pos: 7.5,-30.5 parent: 2 type: Transform - - uid: 30303 + - uid: 30392 components: - pos: -22.5,-17.5 parent: 2 type: Transform - - uid: 30304 + - uid: 30393 components: - pos: -16.5,-96.5 parent: 2 type: Transform - - uid: 30305 + - uid: 30394 components: - pos: -28.5,-96.5 parent: 2 type: Transform - - uid: 30306 + - uid: 30395 components: - pos: -13.5,-98.5 parent: 2 type: Transform - - uid: 30307 + - uid: 30396 components: - pos: -13.5,-96.5 parent: 2 type: Transform - - uid: 30308 + - uid: 30397 components: - pos: -31.5,-98.5 parent: 2 type: Transform - - uid: 30309 + - uid: 30398 components: - pos: -31.5,-96.5 parent: 2 type: Transform - - uid: 30310 + - uid: 30399 components: - pos: -43.5,-93.5 parent: 2 type: Transform - - uid: 30311 + - uid: 30400 components: - rot: 1.5707963267948966 rad pos: -39.5,-93.5 parent: 2 type: Transform - - uid: 30312 + - uid: 30401 components: - rot: 1.5707963267948966 rad pos: -40.5,-93.5 parent: 2 type: Transform - - uid: 30313 + - uid: 30402 components: - rot: 3.141592653589793 rad pos: -39.5,-94.5 parent: 2 type: Transform - - uid: 30314 + - uid: 30403 components: - rot: 3.141592653589793 rad pos: -39.5,-97.5 parent: 2 type: Transform - - uid: 30315 + - uid: 30404 components: - pos: 16.5,-4.5 parent: 2 type: Transform - - uid: 30316 + - uid: 30405 components: - rot: 1.5707963267948966 rad pos: 59.5,-8.5 parent: 2 type: Transform - - uid: 30317 + - uid: 30406 components: - pos: -13.5,33.5 parent: 2 type: Transform - - uid: 30318 + - uid: 30407 components: - rot: -1.5707963267948966 rad pos: -14.5,-15.5 parent: 2 type: Transform - - uid: 30319 + - uid: 30408 components: - rot: -1.5707963267948966 rad pos: -14.5,-12.5 parent: 2 type: Transform - - uid: 30320 + - uid: 30409 components: - pos: 60.5,-28.5 parent: 2 type: Transform - - uid: 30321 + - uid: 30410 components: - pos: 7.5,-35.5 parent: 2 type: Transform - - uid: 30322 + - uid: 30411 components: - pos: 7.5,-32.5 parent: 2 type: Transform - - uid: 30323 + - uid: 30412 components: - pos: 57.5,-62.5 parent: 2 type: Transform - - uid: 30324 + - uid: 30413 components: - pos: 5.5,-35.5 parent: 2 type: Transform - - uid: 30325 + - uid: 30414 components: - rot: -1.5707963267948966 rad pos: 39.5,-34.5 parent: 2 type: Transform - - uid: 30326 + - uid: 30415 components: - pos: 56.5,-62.5 parent: 2 type: Transform - - uid: 30327 + - uid: 30416 components: - pos: 7.5,-33.5 parent: 2 type: Transform - - uid: 30328 + - uid: 30417 components: - pos: 7.5,-34.5 parent: 2 type: Transform - - uid: 30329 + - uid: 30418 components: - pos: 52.5,-33.5 parent: 2 type: Transform - - uid: 30330 + - uid: 30419 components: - pos: 52.5,-34.5 parent: 2 type: Transform - - uid: 30331 + - uid: 30420 components: - pos: 55.5,-62.5 parent: 2 type: Transform - - uid: 30332 + - uid: 30421 components: - rot: -1.5707963267948966 rad pos: 38.5,-34.5 parent: 2 type: Transform - - uid: 30333 + - uid: 30422 components: - pos: 9.5,-38.5 parent: 2 type: Transform - - uid: 30334 + - uid: 30423 components: - rot: 3.141592653589793 rad pos: -16.5,-17.5 parent: 2 type: Transform - - uid: 30335 + - uid: 30424 components: - rot: 3.141592653589793 rad pos: -16.5,-19.5 parent: 2 type: Transform - - uid: 30336 + - uid: 30425 components: - rot: 3.141592653589793 rad pos: -14.5,-22.5 parent: 2 type: Transform - - uid: 30337 + - uid: 30426 components: - pos: 73.5,-55.5 parent: 2 type: Transform - - uid: 30338 + - uid: 30427 components: - pos: 52.5,-37.5 parent: 2 type: Transform - - uid: 30339 + - uid: 30428 components: - rot: 1.5707963267948966 rad pos: -57.5,-57.5 parent: 2 type: Transform - - uid: 30340 + - uid: 30429 components: - pos: 60.5,-42.5 parent: 2 type: Transform - - uid: 30341 + - uid: 30430 components: - rot: 1.5707963267948966 rad pos: 60.5,-40.5 parent: 2 type: Transform - - uid: 30342 + - uid: 30431 components: - pos: 55.5,-33.5 parent: 2 type: Transform - - uid: 30343 + - uid: 30432 components: - pos: 56.5,-36.5 parent: 2 type: Transform - - uid: 30344 + - uid: 30433 components: - pos: 56.5,-34.5 parent: 2 type: Transform - - uid: 30345 + - uid: 30434 components: - pos: 60.5,-27.5 parent: 2 type: Transform - - uid: 30346 + - uid: 30435 components: - pos: 59.5,-27.5 parent: 2 type: Transform - - uid: 30347 + - uid: 30436 components: - pos: 58.5,-27.5 parent: 2 type: Transform - - uid: 30348 + - uid: 30437 components: - pos: 56.5,-29.5 parent: 2 type: Transform - - uid: 30349 + - uid: 30438 components: - pos: 56.5,-30.5 parent: 2 type: Transform - - uid: 30350 + - uid: 30439 components: - pos: 56.5,-28.5 parent: 2 type: Transform - - uid: 30351 + - uid: 30440 components: - pos: 61.5,-27.5 parent: 2 type: Transform - - uid: 30352 + - uid: 30441 components: - pos: 56.5,-27.5 parent: 2 type: Transform - - uid: 30353 + - uid: 30442 components: - pos: 53.5,-29.5 parent: 2 type: Transform - - uid: 30354 + - uid: 30443 components: - pos: 54.5,-29.5 parent: 2 type: Transform - - uid: 30355 + - uid: 30444 components: - pos: 44.5,-62.5 parent: 2 type: Transform - - uid: 30356 + - uid: 30445 components: - pos: 44.5,-63.5 parent: 2 type: Transform - - uid: 30357 + - uid: 30446 components: - pos: 53.5,-66.5 parent: 2 type: Transform - - uid: 30358 + - uid: 30447 components: - pos: 56.5,-35.5 parent: 2 type: Transform - - uid: 30359 + - uid: 30448 components: - pos: 57.5,-66.5 parent: 2 type: Transform - - uid: 30360 + - uid: 30449 components: - pos: 57.5,-67.5 parent: 2 type: Transform - - uid: 30361 + - uid: 30450 components: - pos: 65.5,-66.5 parent: 2 type: Transform - - uid: 30362 + - uid: 30451 components: - pos: 65.5,-62.5 parent: 2 type: Transform - - uid: 30363 + - uid: 30452 components: - pos: 65.5,-64.5 parent: 2 type: Transform - - uid: 30364 + - uid: 30453 components: - pos: 65.5,-63.5 parent: 2 type: Transform - - uid: 30365 + - uid: 30454 components: - pos: 73.5,-56.5 parent: 2 type: Transform - - uid: 30366 + - uid: 30455 components: - pos: 74.5,-53.5 parent: 2 type: Transform - - uid: 30367 + - uid: 30456 components: - pos: 66.5,-62.5 parent: 2 type: Transform - - uid: 30368 + - uid: 30457 components: - pos: 67.5,-62.5 parent: 2 type: Transform - - uid: 30369 + - uid: 30458 components: - pos: 70.5,-63.5 parent: 2 type: Transform - - uid: 30370 + - uid: 30459 components: - pos: 70.5,-62.5 parent: 2 type: Transform - - uid: 30371 + - uid: 30460 components: - pos: 69.5,-62.5 parent: 2 type: Transform - - uid: 30372 + - uid: 30461 components: - pos: 69.5,-58.5 parent: 2 type: Transform - - uid: 30373 + - uid: 30462 components: - pos: 70.5,-58.5 parent: 2 type: Transform - - uid: 30374 + - uid: 30463 components: - pos: 70.5,-59.5 parent: 2 type: Transform - - uid: 30375 + - uid: 30464 components: - pos: 70.5,-60.5 parent: 2 type: Transform - - uid: 30376 + - uid: 30465 components: - pos: 72.5,-58.5 parent: 2 type: Transform - - uid: 30377 + - uid: 30466 components: - pos: 56.5,-37.5 parent: 2 type: Transform - - uid: 30378 + - uid: 30467 components: - pos: 56.5,-38.5 parent: 2 type: Transform - - uid: 30379 + - uid: 30468 components: - pos: 62.5,-27.5 parent: 2 type: Transform - - uid: 30380 + - uid: 30469 components: - pos: 18.5,-15.5 parent: 2 type: Transform - - uid: 30381 + - uid: 30470 components: - pos: -12.5,-34.5 parent: 2 type: Transform - - uid: 30382 + - uid: 30471 components: - pos: -22.5,0.5 parent: 2 type: Transform - - uid: 30383 + - uid: 30472 components: - rot: 3.141592653589793 rad pos: 19.5,8.5 parent: 2 type: Transform - - uid: 30384 + - uid: 30473 components: - pos: 16.5,8.5 parent: 2 type: Transform - - uid: 30386 + - uid: 30474 components: - pos: 1.5,-51.5 parent: 2 type: Transform - - uid: 30387 + - uid: 30475 components: - pos: 5.5,-73.5 parent: 2 type: Transform - - uid: 30388 + - uid: 30476 components: - rot: -1.5707963267948966 rad pos: -35.5,18.5 parent: 2 type: Transform - - uid: 30389 + - uid: 30477 components: - rot: -1.5707963267948966 rad pos: -35.5,19.5 parent: 2 type: Transform - - uid: 30390 + - uid: 30478 components: - pos: -16.5,-11.5 parent: 2 type: Transform - - uid: 30391 + - uid: 30479 components: - pos: -13.5,-16.5 parent: 2 type: Transform - - uid: 30392 + - uid: 30480 components: - pos: -8.5,-7.5 parent: 2 type: Transform - - uid: 30393 + - uid: 30481 components: - pos: 6.5,-51.5 parent: 2 type: Transform - - uid: 30394 + - uid: 30482 components: - rot: -1.5707963267948966 rad pos: 8.5,-46.5 parent: 2 type: Transform - - uid: 30395 + - uid: 30483 components: - rot: 1.5707963267948966 rad pos: -27.5,-60.5 parent: 2 type: Transform - - uid: 30396 + - uid: 30484 components: - pos: -21.5,-51.5 parent: 2 type: Transform - - uid: 30397 + - uid: 30485 components: - pos: 5.5,-75.5 parent: 2 type: Transform - - uid: 30398 + - uid: 30486 components: - pos: 4.5,-72.5 parent: 2 type: Transform - - uid: 30399 + - uid: 30487 components: - pos: -11.5,13.5 parent: 2 type: Transform + - uid: 30488 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-24.5 + parent: 2 + type: Transform + - uid: 30489 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-37.5 + parent: 2 + type: Transform - proto: WallSolidRust entities: - - uid: 30400 + - uid: 30490 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-69.5 + parent: 2 + type: Transform + - uid: 30491 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-69.5 + parent: 2 + type: Transform + - uid: 30492 components: - rot: 3.141592653589793 rad pos: -53.5,-30.5 parent: 2 type: Transform - - uid: 30401 + - uid: 30493 components: - rot: 3.141592653589793 rad pos: -56.5,-30.5 parent: 2 type: Transform - - uid: 30402 + - uid: 30494 components: - rot: 3.141592653589793 rad pos: -52.5,-65.5 parent: 2 type: Transform - - uid: 30403 + - uid: 30495 components: - rot: 3.141592653589793 rad pos: -26.5,-65.5 parent: 2 type: Transform - - uid: 30404 + - uid: 30496 components: - rot: 3.141592653589793 rad pos: -25.5,-65.5 parent: 2 type: Transform - - uid: 30405 + - uid: 30497 components: - rot: 3.141592653589793 rad pos: -31.5,-65.5 parent: 2 type: Transform - - uid: 30406 + - uid: 30498 components: - rot: 3.141592653589793 rad pos: -53.5,-69.5 parent: 2 type: Transform - - uid: 30407 + - uid: 30499 components: - rot: 3.141592653589793 rad pos: -48.5,-73.5 parent: 2 type: Transform - - uid: 30408 + - uid: 30500 components: - rot: 3.141592653589793 rad pos: -40.5,-66.5 parent: 2 type: Transform - - uid: 30409 + - uid: 30501 components: - rot: 3.141592653589793 rad pos: -37.5,-66.5 parent: 2 type: Transform - - uid: 30410 + - uid: 30502 components: - pos: -12.5,-33.5 parent: 2 type: Transform - - uid: 30411 + - uid: 30503 components: - rot: 3.141592653589793 rad pos: 13.5,-58.5 parent: 2 type: Transform - - uid: 30412 + - uid: 30504 components: - rot: 3.141592653589793 rad pos: 13.5,-56.5 parent: 2 type: Transform - - uid: 30413 + - uid: 30505 components: - rot: 1.5707963267948966 rad pos: -10.5,-7.5 @@ -200962,7 +202231,7 @@ entities: type: Transform - proto: WardrobeBotanistFilled entities: - - uid: 30414 + - uid: 30506 components: - pos: -4.5,12.5 parent: 2 @@ -200985,7 +202254,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30415 + - uid: 30507 components: - pos: -4.5,10.5 parent: 2 @@ -201010,7 +202279,7 @@ entities: type: EntityStorage - proto: WardrobeGreenFilled entities: - - uid: 30416 + - uid: 30508 components: - pos: -48.5,3.5 parent: 2 @@ -201035,7 +202304,7 @@ entities: type: EntityStorage - proto: WardrobePrisonFilled entities: - - uid: 30417 + - uid: 30509 components: - pos: 28.5,10.5 parent: 2 @@ -201058,7 +202327,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30418 + - uid: 30510 components: - pos: 36.5,5.5 parent: 2 @@ -201081,7 +202350,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30419 + - uid: 30511 components: - pos: 31.5,10.5 parent: 2 @@ -201104,7 +202373,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30420 + - uid: 30512 components: - pos: 34.5,10.5 parent: 2 @@ -201127,7 +202396,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30421 + - uid: 30513 components: - pos: 36.5,8.5 parent: 2 @@ -201150,7 +202419,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30422 + - uid: 30514 components: - pos: 55.5,22.5 parent: 2 @@ -201173,7 +202442,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30423 + - uid: 30515 components: - pos: 52.5,22.5 parent: 2 @@ -201196,7 +202465,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30424 + - uid: 30516 components: - pos: 49.5,22.5 parent: 2 @@ -201219,7 +202488,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30425 + - uid: 30517 components: - pos: 46.5,22.5 parent: 2 @@ -201242,7 +202511,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30426 + - uid: 30518 components: - pos: 58.5,22.5 parent: 2 @@ -201265,7 +202534,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30427 + - uid: 30519 components: - pos: 60.5,19.5 parent: 2 @@ -201288,7 +202557,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30428 + - uid: 30520 components: - pos: 60.5,16.5 parent: 2 @@ -201313,7 +202582,7 @@ entities: type: EntityStorage - proto: WardrobeYellowFilled entities: - - uid: 30429 + - uid: 30521 components: - pos: -49.5,3.5 parent: 2 @@ -201338,56 +202607,56 @@ entities: type: EntityStorage - proto: WarningCO2 entities: - - uid: 30430 + - uid: 30522 components: - pos: -51.5,-50.5 parent: 2 type: Transform - proto: WarningN2 entities: - - uid: 30431 + - uid: 30523 components: - pos: -51.5,-54.5 parent: 2 type: Transform - proto: WarningN2O entities: - - uid: 30432 + - uid: 30524 components: - pos: -51.5,-42.5 parent: 2 type: Transform - proto: WarningO2 entities: - - uid: 30433 + - uid: 30525 components: - pos: -51.5,-52.5 parent: 2 type: Transform - proto: WarningPlasma entities: - - uid: 30434 + - uid: 30526 components: - pos: -51.5,-46.5 parent: 2 type: Transform - proto: WarningTritium entities: - - uid: 30435 + - uid: 30527 components: - pos: -51.5,-44.5 parent: 2 type: Transform - proto: WarningWaste entities: - - uid: 30436 + - uid: 30528 components: - pos: -51.5,-48.5 parent: 2 type: Transform - proto: WarpPoint entities: - - uid: 23680 + - uid: 30529 components: - rot: -1.5707963267948966 rad pos: 1.5,-5.5 @@ -201395,14 +202664,14 @@ entities: type: Transform - location: hop type: WarpPoint - - uid: 30438 + - uid: 30530 components: - pos: 12.5,11.5 parent: 2 type: Transform - location: bar type: WarpPoint - - uid: 30439 + - uid: 30531 components: - name: 'Warp: medical' type: MetaData @@ -201411,7 +202680,7 @@ entities: type: Transform - location: medbay type: WarpPoint - - uid: 30440 + - uid: 30532 components: - name: 'warp: science' type: MetaData @@ -201420,7 +202689,7 @@ entities: type: Transform - location: science reception type: WarpPoint - - uid: 30441 + - uid: 30533 components: - name: 'warp: bridge' type: MetaData @@ -201429,7 +202698,7 @@ entities: type: Transform - location: bridge type: WarpPoint - - uid: 30442 + - uid: 30534 components: - name: 'warp: prison' type: MetaData @@ -201438,7 +202707,7 @@ entities: type: Transform - location: open prison type: WarpPoint - - uid: 30443 + - uid: 30535 components: - name: 'warp: security' type: MetaData @@ -201447,21 +202716,21 @@ entities: type: Transform - location: security type: WarpPoint - - uid: 30444 + - uid: 30536 components: - pos: 61.5,-8.5 parent: 2 type: Transform - location: evac type: WarpPoint - - uid: 30445 + - uid: 30537 components: - name: 'warp: waste' type: MetaData - pos: 17.5,-53.5 parent: 2 type: Transform - - uid: 30446 + - uid: 30538 components: - name: 'warp: engineering' type: MetaData @@ -201470,7 +202739,7 @@ entities: type: Transform - location: engineering reception type: WarpPoint - - uid: 30447 + - uid: 30539 components: - name: 'warp: atmospherics' type: MetaData @@ -201479,7 +202748,7 @@ entities: type: Transform - location: atmospherics type: WarpPoint - - uid: 30448 + - uid: 30540 components: - name: 'warp: singularity' type: MetaData @@ -201488,7 +202757,7 @@ entities: type: Transform - location: singularity type: WarpPoint - - uid: 30449 + - uid: 30541 components: - name: 'warp: forgotten dock' type: MetaData @@ -201497,7 +202766,7 @@ entities: type: Transform - location: forgotten ship dock type: WarpPoint - - uid: 30450 + - uid: 30542 components: - name: 'warp: jani closet' type: MetaData @@ -201506,7 +202775,7 @@ entities: type: Transform - location: janitorial closet type: WarpPoint - - uid: 30451 + - uid: 30543 components: - name: 'warp: courthouse' type: MetaData @@ -201515,7 +202784,7 @@ entities: type: Transform - location: courtroom type: WarpPoint - - uid: 30452 + - uid: 30544 components: - name: 'Warp: psychology' type: MetaData @@ -201524,7 +202793,7 @@ entities: type: Transform - location: psychology type: WarpPoint - - uid: 30453 + - uid: 30545 components: - name: 'warp: virology' type: MetaData @@ -201533,7 +202802,7 @@ entities: type: Transform - location: virology reception type: WarpPoint - - uid: 30454 + - uid: 30546 components: - name: 'warp: cargo' type: MetaData @@ -201543,7 +202812,7 @@ entities: type: Transform - location: cargo type: WarpPoint - - uid: 30455 + - uid: 30547 components: - name: 'warp: salvage' type: MetaData @@ -201553,7 +202822,7 @@ entities: type: Transform - location: salvage type: WarpPoint - - uid: 30456 + - uid: 30548 components: - name: 'warp: arrivals' type: MetaData @@ -201563,7 +202832,7 @@ entities: type: Transform - location: arrivals type: WarpPoint - - uid: 30457 + - uid: 30549 components: - name: 'Warp: kitchen' type: MetaData @@ -201573,7 +202842,7 @@ entities: type: Transform - location: kitchen type: WarpPoint - - uid: 30458 + - uid: 30550 components: - name: 'Warp: botany' type: MetaData @@ -201583,7 +202852,7 @@ entities: type: Transform - location: hydrophonics type: WarpPoint - - uid: 30460 + - uid: 30551 components: - name: 'warp: library' type: MetaData @@ -201593,7 +202862,7 @@ entities: type: Transform - location: library type: WarpPoint - - uid: 30461 + - uid: 30552 components: - name: 'Warp: armory' type: MetaData @@ -201603,7 +202872,7 @@ entities: type: Transform - location: armory type: WarpPoint - - uid: 30462 + - uid: 30553 components: - name: 'warp: revolution bar' type: MetaData @@ -201613,7 +202882,7 @@ entities: type: Transform - location: rebelion bar type: WarpPoint - - uid: 30463 + - uid: 30554 components: - rot: 3.141592653589793 rad pos: -44.5,53.5 @@ -201621,31 +202890,38 @@ entities: type: Transform - location: asteroid type: WarpPoint + - uid: 30555 + components: + - pos: 0.5,-20.5 + parent: 2 + type: Transform + - location: theatre + type: WarpPoint - proto: WaterCooler entities: - - uid: 30464 + - uid: 30556 components: - pos: -8.5,-35.5 parent: 2 type: Transform - - uid: 30465 + - uid: 30557 components: - pos: 55.398575,18.5843 parent: 2 type: Transform - - uid: 30466 + - uid: 30558 components: - pos: 36.5,-6.5 parent: 2 type: Transform - - uid: 30467 + - uid: 30559 components: - pos: 41.5,-47.5 parent: 2 type: Transform - proto: WatermelonSeeds entities: - - uid: 30468 + - uid: 30560 components: - rot: 3.141592653589793 rad pos: -9.469382,12.335931 @@ -201653,433 +202929,439 @@ entities: type: Transform - proto: WaterTank entities: - - uid: 30469 + - uid: 30561 components: - pos: 74.5,-54.5 parent: 2 type: Transform - proto: WaterTankFull entities: - - uid: 30470 + - uid: 30562 components: - pos: -4.5,14.5 parent: 2 type: Transform - - uid: 30471 + - uid: 30563 components: - pos: -19.5,-86.5 parent: 2 type: Transform - - uid: 30472 + - uid: 30564 components: - pos: 7.5,-81.5 parent: 2 type: Transform - - uid: 30473 + - uid: 30565 components: - pos: 45.5,21.5 parent: 2 type: Transform - - uid: 30474 + - uid: 30566 components: - pos: 8.5,-64.5 parent: 2 type: Transform - - uid: 30475 + - uid: 30567 components: - pos: -29.5,-65.5 parent: 2 type: Transform - - uid: 30476 + - uid: 30568 components: - pos: 35.5,-10.5 parent: 2 type: Transform - - uid: 30477 + - uid: 30569 components: - pos: -27.5,-43.5 parent: 2 type: Transform - - uid: 30478 + - uid: 30570 components: - pos: -1.5,-14.5 parent: 2 type: Transform - - uid: 30479 + - uid: 30571 components: - pos: -39.5,-30.5 parent: 2 type: Transform - - uid: 30480 + - uid: 30572 components: - pos: -45.5,-3.5 parent: 2 type: Transform - - uid: 30481 + - uid: 30573 components: - pos: -27.5,37.5 parent: 2 type: Transform - - uid: 30482 + - uid: 30574 components: - pos: -8.5,-8.5 parent: 2 type: Transform - proto: WaterTankHighCapacity entities: - - uid: 30483 + - uid: 30575 components: - pos: -7.5,-21.5 parent: 2 type: Transform - - uid: 30484 + - uid: 30576 components: - pos: -5.5,8.5 parent: 2 type: Transform - proto: WaterVaporCanister entities: - - uid: 30485 + - uid: 30577 components: - pos: -50.5,-48.5 parent: 2 type: Transform - - uid: 30486 + - uid: 30578 components: - pos: -34.5,-28.5 parent: 2 type: Transform - proto: WeaponCapacitorRecharger entities: - - uid: 30487 + - uid: 30579 components: - pos: 28.5,-21.5 parent: 2 type: Transform - - uid: 30488 + - uid: 30580 components: - pos: 2.5,-56.5 parent: 2 type: Transform - - uid: 30489 + - uid: 30581 components: - pos: 6.5,12.5 parent: 2 type: Transform - - uid: 30490 + - uid: 30582 components: - pos: 20.5,-45.5 parent: 2 type: Transform - - uid: 30491 + - uid: 30583 components: - pos: 5.5,20.5 parent: 2 type: Transform - - uid: 30492 + - uid: 30584 components: - pos: 17.5,22.5 parent: 2 type: Transform - - uid: 30493 + - uid: 30585 components: - pos: 25.5,23.5 parent: 2 type: Transform - - uid: 30494 + - uid: 30586 components: - pos: -16.5,24.5 parent: 2 type: Transform - - uid: 30495 + - uid: 30587 components: - pos: -16.5,-21.5 parent: 2 type: Transform - proto: WeaponDisabler entities: - - uid: 30496 + - uid: 30588 components: - pos: 1.6229637,21.593708 parent: 2 type: Transform - - uid: 30497 + - uid: 30589 components: - pos: 12.563014,21.38584 parent: 2 type: Transform - - uid: 30498 + - uid: 30590 components: - pos: 12.453639,21.54209 parent: 2 type: Transform - proto: WeaponLaserCarbine entities: - - uid: 30499 + - uid: 30591 components: - pos: 31.473701,27.53409 parent: 2 type: Transform - - uid: 30501 + - uid: 30592 components: - pos: 27.55704,27.505564 parent: 2 type: Transform - proto: WeaponPistolMk58 entities: - - uid: 30503 + - uid: 30593 components: - pos: 31.657001,32.450115 parent: 2 type: Transform - - uid: 30504 + - uid: 30594 components: - pos: 31.637281,32.558495 parent: 2 type: Transform - - uid: 30505 + - uid: 30595 components: - pos: 31.586092,32.47933 parent: 2 type: Transform - - uid: 30506 + - uid: 30596 components: - pos: 31.657982,32.330257 parent: 2 type: Transform - proto: WeaponRevolverDeckard entities: - - uid: 30507 + - uid: 30597 components: - pos: 30.600538,32.59448 parent: 2 type: Transform - proto: WeaponRevolverInspector entities: - - uid: 19962 + - uid: 30598 components: - pos: 23.444613,-35.267536 parent: 2 type: Transform - proto: WeaponShotgunEnforcer entities: - - uid: 2545 + - uid: 30599 components: - pos: 26.480402,29.704184 parent: 2 type: Transform - - uid: 14675 + - uid: 30600 components: - pos: 26.636652,29.376059 parent: 2 type: Transform - proto: WeaponShotgunKammerer entities: - - uid: 30508 + - uid: 30601 components: - pos: 26.643364,32.60906 parent: 2 type: Transform - - uid: 30509 + - uid: 30602 components: - pos: 26.777893,32.47498 parent: 2 type: Transform - - uid: 30510 + - uid: 30603 components: - pos: 26.709015,32.580257 parent: 2 type: Transform - proto: WeaponSubMachineGunDrozd entities: - - uid: 30511 + - uid: 30604 components: - pos: 27.939907,32.617863 parent: 2 type: Transform - - uid: 30512 + - uid: 30605 components: - pos: 28.718153,32.704456 parent: 2 type: Transform - - uid: 30513 + - uid: 30606 components: - pos: 29.421278,32.68883 parent: 2 type: Transform - proto: WeaponSubMachineGunWt550 entities: - - uid: 30514 + - uid: 30607 components: - pos: 6.384364,22.636343 parent: 2 type: Transform -- proto: WeaponTurretHostile - entities: - - uid: 10108 - components: - - flags: SessionSpecific - type: MetaData - - rot: 1.5707963267948966 rad - pos: -54.5,-87.5 - parent: 2 - type: Transform - proto: Welder entities: - - uid: 30515 + - uid: 30608 components: - pos: -23.377909,-24.435646 parent: 2 type: Transform - - uid: 30516 + - uid: 30609 components: - pos: -11.453522,-74.45183 parent: 2 type: Transform - - uid: 30517 + - uid: 30610 components: - pos: -44.4577,-25.484493 parent: 2 type: Transform - - uid: 30518 + - uid: 30611 components: - pos: -28.416739,-28.473803 parent: 2 type: Transform - - uid: 30519 + - uid: 30612 components: - pos: -52.43758,2.566814 parent: 2 type: Transform - - uid: 30520 + - uid: 30613 components: - pos: -44.442474,-76.91975 parent: 2 type: Transform - - uid: 30521 + - uid: 30614 components: - pos: 76.51503,-43.437786 parent: 2 type: Transform - - uid: 30522 + - uid: 30615 components: - pos: -66.37563,-43.430454 parent: 2 type: Transform - proto: WelderIndustrial entities: - - uid: 30523 + - uid: 30616 components: - pos: -34.41553,-12.611145 parent: 2 type: Transform - - uid: 30524 + - uid: 30617 components: - pos: -35.502888,-46.513077 parent: 2 type: Transform - - uid: 30525 + - uid: 30618 components: - pos: -42.417007,-21.43029 parent: 2 type: Transform - proto: WelderMini entities: - - uid: 30526 + - uid: 30619 components: - pos: -52.426445,-12.844277 parent: 2 type: Transform - proto: WeldingFuelTank entities: - - uid: 30527 + - uid: 30620 components: - pos: -28.5,-43.5 parent: 2 type: Transform - - uid: 30528 + - uid: 30621 components: - pos: 7.5,-64.5 parent: 2 type: Transform - proto: WeldingFuelTankFull entities: - - uid: 30529 + - uid: 30622 components: - pos: -3.5,-71.5 parent: 2 type: Transform - - uid: 30530 + - uid: 30623 components: - pos: -28.5,-25.5 parent: 2 type: Transform - - uid: 30531 + - uid: 30624 components: - pos: -43.5,-63.5 parent: 2 type: Transform - - uid: 30532 + - uid: 30625 components: - pos: -38.5,-30.5 parent: 2 type: Transform - - uid: 30533 + - uid: 30626 components: - pos: -0.5,23.5 parent: 2 type: Transform - - uid: 30534 + - uid: 30627 components: - pos: -51.5,4.5 parent: 2 type: Transform - - uid: 30535 + - uid: 30628 components: - pos: -16.5,-18.5 parent: 2 type: Transform - - uid: 30536 + - uid: 30629 components: - pos: 39.5,-32.5 parent: 2 type: Transform - - uid: 30537 + - uid: 30630 components: - pos: 72.5,-59.5 parent: 2 type: Transform + - uid: 31192 + components: + - pos: 66.5,6.5 + parent: 2 + type: Transform + - uid: 31193 + components: + - pos: 74.5,-55.5 + parent: 2 + type: Transform + - uid: 31194 + components: + - pos: -54.5,-35.5 + parent: 2 + type: Transform +- proto: WeldingFuelTankHighCapacity + entities: + - uid: 31195 + components: + - pos: -53.5,-25.5 + parent: 2 + type: Transform - proto: WetFloorSign entities: - - uid: 30538 + - uid: 30631 components: - pos: -7.8693366,-23.228895 parent: 2 type: Transform - - uid: 30539 + - uid: 30632 components: - pos: 16.379074,-41.325726 parent: 2 type: Transform - - uid: 30540 + - uid: 30633 components: - pos: -7.8537116,-23.36952 parent: 2 type: Transform - - uid: 30541 + - uid: 30634 components: - pos: -7.7912116,-23.603895 parent: 2 type: Transform -- proto: Windoor - entities: - - uid: 10107 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-2.5 - parent: 2 - type: Transform - - uid: 30542 +- proto: Windoor + entities: + - uid: 30635 components: - rot: 1.5707963267948966 rad pos: 26.5,0.5 @@ -202087,114 +203369,135 @@ entities: type: Transform - proto: WindoorBarLocked entities: - - uid: 30543 + - uid: 30636 components: - pos: 18.5,15.5 parent: 2 type: Transform - - uid: 30544 + - uid: 30637 components: - pos: 17.5,15.5 parent: 2 type: Transform - - uid: 30545 + - uid: 30638 components: - rot: 1.5707963267948966 rad pos: 15.5,14.5 parent: 2 type: Transform - - uid: 30546 + - uid: 30639 components: - rot: 1.5707963267948966 rad pos: -39.5,-75.5 parent: 2 type: Transform - - uid: 30547 + - uid: 30640 components: - rot: -1.5707963267948966 rad pos: -44.5,-75.5 parent: 2 type: Transform + - uid: 30641 + components: + - pos: 28.5,-37.5 + parent: 2 + type: Transform - proto: WindoorKitchenHydroponicsLocked entities: - - uid: 30548 + - uid: 30642 components: - pos: -4.5,17.5 parent: 2 type: Transform - - uid: 30549 + - uid: 30643 components: - pos: -7.5,17.5 parent: 2 type: Transform - proto: WindoorSecure entities: - - uid: 30550 + - uid: 30644 + components: + - pos: 1.5,-1.5 + parent: 2 + type: Transform + - uid: 30645 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 2 + type: Transform + - uid: 30646 + components: + - pos: 4.5,-1.5 + parent: 2 + type: Transform + - uid: 30647 components: - pos: 17.5,-53.5 parent: 2 type: Transform - - uid: 30551 + - uid: 30648 components: - pos: -13.5,-9.5 parent: 2 type: Transform - - uid: 30553 + - uid: 30649 components: - pos: 59.5,22.5 parent: 2 type: Transform - - uid: 30554 + - uid: 30650 components: - pos: 56.5,22.5 parent: 2 type: Transform - - uid: 30555 + - uid: 30651 components: - pos: 53.5,22.5 parent: 2 type: Transform - - uid: 30556 + - uid: 30652 components: - pos: 50.5,22.5 parent: 2 type: Transform - - uid: 30557 + - uid: 30653 components: - pos: 47.5,22.5 parent: 2 type: Transform - - uid: 30558 + - uid: 30654 components: - rot: -1.5707963267948966 rad pos: 60.5,18.5 parent: 2 type: Transform - - uid: 30559 + - uid: 30655 components: - rot: -1.5707963267948966 rad pos: 60.5,15.5 parent: 2 type: Transform - - uid: 30560 + - uid: 30656 components: - rot: 1.5707963267948966 rad pos: 59.5,-34.5 parent: 2 type: Transform - - uid: 30561 + - uid: 30657 components: - rot: 1.5707963267948966 rad pos: 59.5,-33.5 parent: 2 type: Transform - - uid: 30562 + - uid: 30658 components: - rot: -1.5707963267948966 rad pos: -34.5,14.5 parent: 2 type: Transform - - uid: 30563 + - uid: 30659 components: - rot: 3.141592653589793 rad pos: 71.5,-47.5 @@ -202202,57 +203505,64 @@ entities: type: Transform - proto: WindoorSecureArmoryLocked entities: - - uid: 30564 + - uid: 30660 components: - rot: 3.141592653589793 rad pos: 25.5,19.5 parent: 2 type: Transform - - uid: 30565 + - uid: 30661 components: - rot: 3.141592653589793 rad pos: 24.5,19.5 parent: 2 type: Transform - - uid: 30566 + - uid: 30662 components: - rot: 1.5707963267948966 rad pos: 30.5,28.5 parent: 2 type: Transform - - uid: 30567 + - uid: 30663 components: - rot: 1.5707963267948966 rad pos: 30.5,30.5 parent: 2 type: Transform - - uid: 30568 + - uid: 30664 components: - rot: -1.5707963267948966 rad pos: 28.5,30.5 parent: 2 type: Transform - - uid: 30569 + - uid: 30665 components: - rot: 3.141592653589793 rad pos: 26.5,19.5 parent: 2 type: Transform - - uid: 30570 + - uid: 30666 components: - rot: -1.5707963267948966 rad pos: 28.5,28.5 parent: 2 type: Transform - - uid: 30571 + - uid: 30667 components: - rot: 3.141592653589793 rad pos: 29.5,30.5 parent: 2 type: Transform +- proto: WindoorSecureBrigLocked + entities: + - uid: 30668 + components: + - pos: 31.5,-52.5 + parent: 2 + type: Transform - proto: WindoorSecureCargoLocked entities: - - uid: 30572 + - uid: 30669 components: - rot: -1.5707963267948966 rad pos: -26.5,22.5 @@ -202260,19 +203570,19 @@ entities: type: Transform - proto: WindoorSecureChemistryLocked entities: - - uid: 30573 + - uid: 30670 components: - rot: 1.5707963267948966 rad pos: 1.5,-48.5 parent: 2 type: Transform - - uid: 30574 + - uid: 30671 components: - rot: 1.5707963267948966 rad pos: 1.5,-46.5 parent: 2 type: Transform - - uid: 30575 + - uid: 30672 components: - rot: 3.141592653589793 rad pos: 3.5,-51.5 @@ -202280,13 +203590,13 @@ entities: type: Transform - proto: WindoorSecureEngineeringLocked entities: - - uid: 30576 + - uid: 30673 components: - rot: -1.5707963267948966 rad pos: -26.5,-12.5 parent: 2 type: Transform - - uid: 30577 + - uid: 30674 components: - rot: -1.5707963267948966 rad pos: -21.5,-34.5 @@ -202294,67 +203604,67 @@ entities: type: Transform - proto: WindoorSecureHeadOfPersonnelLocked entities: - - uid: 12072 + - uid: 30675 components: - - pos: -0.5,-2.5 + - pos: 4.5,-3.5 parent: 2 type: Transform - proto: WindoorSecureMedicalLocked entities: - - uid: 30579 + - uid: 30676 components: - rot: -1.5707963267948966 rad pos: -17.5,-79.5 parent: 2 type: Transform - - uid: 30580 + - uid: 30677 components: - rot: -1.5707963267948966 rad pos: -16.5,-78.5 parent: 2 type: Transform - - uid: 30581 + - uid: 30678 components: - rot: -1.5707963267948966 rad pos: -16.5,-76.5 parent: 2 type: Transform - - uid: 30582 + - uid: 30679 components: - rot: 1.5707963267948966 rad pos: -28.5,-77.5 parent: 2 type: Transform - - uid: 30583 + - uid: 30680 components: - rot: -1.5707963267948966 rad pos: -17.5,-75.5 parent: 2 type: Transform - - uid: 30584 + - uid: 30681 components: - rot: 1.5707963267948966 rad pos: -28.5,-79.5 parent: 2 type: Transform - - uid: 30585 + - uid: 30682 components: - rot: 3.141592653589793 rad pos: -20.5,-88.5 parent: 2 type: Transform - - uid: 30586 + - uid: 30683 components: - rot: 3.141592653589793 rad pos: -25.5,-88.5 parent: 2 type: Transform - - uid: 30587 + - uid: 30684 components: - pos: 3.5,-51.5 parent: 2 type: Transform - - uid: 30588 + - uid: 30685 components: - rot: 1.5707963267948966 rad pos: 48.5,6.5 @@ -202362,13 +203672,13 @@ entities: type: Transform - proto: WindoorSecureScienceLocked entities: - - uid: 30589 + - uid: 30686 components: - rot: 3.141592653589793 rad pos: 42.5,-40.5 parent: 2 type: Transform - - uid: 30590 + - uid: 30687 components: - rot: 3.141592653589793 rad pos: 43.5,-40.5 @@ -202376,121 +203686,116 @@ entities: type: Transform - proto: WindoorSecureSecurityLocked entities: - - uid: 30591 + - uid: 30688 components: - rot: -1.5707963267948966 rad pos: 48.5,6.5 parent: 2 type: Transform - - uid: 30592 + - uid: 30689 components: - rot: 1.5707963267948966 rad pos: 42.5,6.5 parent: 2 type: Transform - - uid: 30593 + - uid: 30690 components: - rot: 3.141592653589793 rad pos: 29.5,13.5 parent: 2 type: Transform - links: - - 2208 + - 2217 type: DeviceLinkSink - - uid: 30594 + - uid: 30691 components: - rot: 1.5707963267948966 rad pos: 39.5,7.5 parent: 2 type: Transform - links: - - 2210 + - 2219 type: DeviceLinkSink - - uid: 30595 + - uid: 30692 components: - rot: 3.141592653589793 rad pos: 5.5,11.5 parent: 2 type: Transform - - uid: 30596 + - uid: 30693 components: - rot: -1.5707963267948966 rad pos: 5.5,-56.5 parent: 2 type: Transform - - uid: 30597 + - uid: 30694 components: - rot: 3.141592653589793 rad pos: 4.5,11.5 parent: 2 type: Transform - - uid: 30598 + - uid: 30695 components: - rot: 3.141592653589793 rad pos: 32.5,13.5 parent: 2 type: Transform - links: - - 2209 + - 2218 type: DeviceLinkSink - - uid: 30599 + - uid: 30696 components: - rot: 1.5707963267948966 rad pos: 39.5,4.5 parent: 2 type: Transform - links: - - 2211 + - 2220 type: DeviceLinkSink - - uid: 30600 + - uid: 30697 components: - rot: 3.141592653589793 rad pos: 17.5,15.5 parent: 2 type: Transform - - uid: 30601 + - uid: 30698 components: - rot: 3.141592653589793 rad pos: 35.5,13.5 parent: 2 type: Transform - links: - - 2207 + - 2216 type: DeviceLinkSink - - uid: 30602 + - uid: 30699 components: - rot: 3.141592653589793 rad pos: 18.5,15.5 parent: 2 type: Transform - - uid: 30603 + - uid: 30700 components: - pos: 21.5,-44.5 parent: 2 type: Transform - - uid: 30604 + - uid: 30701 components: - pos: 22.5,-44.5 parent: 2 type: Transform - - uid: 30605 + - uid: 30702 components: - rot: 1.5707963267948966 rad pos: -17.5,-22.5 parent: 2 type: Transform - - uid: 30606 + - uid: 30703 components: - rot: 1.5707963267948966 rad pos: -17.5,-23.5 parent: 2 type: Transform - - uid: 30607 - components: - - pos: 31.5,-52.5 - parent: 2 - type: Transform - - uid: 30608 + - uid: 30704 components: - rot: 1.5707963267948966 rad pos: -17.5,25.5 @@ -202498,7 +203803,7 @@ entities: type: Transform - proto: WindoorTheatreLocked entities: - - uid: 30609 + - uid: 30705 components: - rot: 3.141592653589793 rad pos: 9.5,-0.5 @@ -202506,768 +203811,768 @@ entities: type: Transform - proto: Window entities: - - uid: 30610 + - uid: 30706 components: - rot: -1.5707963267948966 rad pos: -53.5,-31.5 parent: 2 type: Transform - - uid: 30611 + - uid: 30707 components: - rot: -1.5707963267948966 rad pos: -53.5,-32.5 parent: 2 type: Transform - - uid: 30612 + - uid: 30708 components: - pos: 27.5,-55.5 parent: 2 type: Transform - - uid: 30613 + - uid: 30709 components: - pos: 27.5,-54.5 parent: 2 type: Transform - - uid: 30614 + - uid: 30710 components: - rot: 3.141592653589793 rad pos: -20.5,65.5 parent: 2 type: Transform - - uid: 30615 + - uid: 30711 components: - rot: 3.141592653589793 rad pos: -20.5,67.5 parent: 2 type: Transform - - uid: 30616 + - uid: 30712 components: - rot: 3.141592653589793 rad pos: -14.5,67.5 parent: 2 type: Transform - - uid: 30617 + - uid: 30713 components: - pos: -13.5,-57.5 parent: 2 type: Transform - - uid: 30618 + - uid: 30714 components: - pos: -9.5,-58.5 parent: 2 type: Transform - - uid: 30619 + - uid: 30715 components: - pos: -4.5,-56.5 parent: 2 type: Transform - - uid: 30620 + - uid: 30716 components: - rot: -1.5707963267948966 rad pos: 22.5,5.5 parent: 2 type: Transform - - uid: 30621 + - uid: 30717 components: - pos: -21.5,-13.5 parent: 2 type: Transform - - uid: 30622 + - uid: 30718 components: - pos: -9.5,-40.5 parent: 2 type: Transform - - uid: 30623 + - uid: 30719 components: - rot: -1.5707963267948966 rad pos: 19.5,-1.5 parent: 2 type: Transform - - uid: 30625 + - uid: 30720 components: - pos: -14.5,-44.5 parent: 2 type: Transform - - uid: 30626 + - uid: 30721 components: - pos: -1.5,-56.5 parent: 2 type: Transform - - uid: 30627 + - uid: 30722 components: - pos: 39.5,-0.5 parent: 2 type: Transform - - uid: 30628 + - uid: 30723 components: - pos: -12.5,-58.5 parent: 2 type: Transform - - uid: 30629 + - uid: 30724 components: - pos: -6.5,-55.5 parent: 2 type: Transform - - uid: 30630 + - uid: 30725 components: - pos: -0.5,-62.5 parent: 2 type: Transform - - uid: 30631 + - uid: 30726 components: - pos: 1.5,-56.5 parent: 2 type: Transform - - uid: 30632 + - uid: 30727 components: - pos: -0.5,-58.5 parent: 2 type: Transform - - uid: 30633 + - uid: 30728 components: - pos: -3.5,-58.5 parent: 2 type: Transform - - uid: 30636 + - uid: 30729 components: - pos: 30.5,-57.5 parent: 2 type: Transform - - uid: 30637 + - uid: 30730 components: - pos: 29.5,-57.5 parent: 2 type: Transform - - uid: 30638 + - uid: 30731 components: - pos: 33.5,-57.5 parent: 2 type: Transform - - uid: 30639 + - uid: 30732 components: - rot: -1.5707963267948966 rad pos: 19.5,0.5 parent: 2 type: Transform - - uid: 30640 + - uid: 30733 components: - rot: -1.5707963267948966 rad pos: 26.5,-3.5 parent: 2 type: Transform - - uid: 30641 + - uid: 30734 components: - rot: -1.5707963267948966 rad pos: 23.5,-3.5 parent: 2 type: Transform - - uid: 30642 + - uid: 30735 components: - rot: -1.5707963267948966 rad pos: 22.5,-3.5 parent: 2 type: Transform - - uid: 30643 + - uid: 30736 components: - pos: 35.5,-5.5 parent: 2 type: Transform - - uid: 30644 + - uid: 30737 components: - pos: -21.5,11.5 parent: 2 type: Transform - - uid: 30645 + - uid: 30738 components: - pos: -21.5,12.5 parent: 2 type: Transform - - uid: 30648 + - uid: 30739 components: - pos: -21.5,-10.5 parent: 2 type: Transform - - uid: 30649 + - uid: 30740 components: - pos: -21.5,-14.5 parent: 2 type: Transform - - uid: 30650 + - uid: 30741 components: - pos: 35.5,-1.5 parent: 2 type: Transform - - uid: 30651 + - uid: 30742 components: - pos: 35.5,-2.5 parent: 2 type: Transform - - uid: 30653 + - uid: 30743 components: - pos: -21.5,-9.5 parent: 2 type: Transform - - uid: 30654 + - uid: 30744 components: - pos: -5.5,-44.5 parent: 2 type: Transform - - uid: 30655 + - uid: 30745 components: - pos: -11.5,-40.5 parent: 2 type: Transform - - uid: 30656 + - uid: 30746 components: - pos: -10.5,-40.5 parent: 2 type: Transform - - uid: 30657 + - uid: 30747 components: - pos: 0.5,-62.5 parent: 2 type: Transform - - uid: 30658 + - uid: 30748 components: - pos: 1.5,-57.5 parent: 2 type: Transform - - uid: 30659 + - uid: 30749 components: - pos: -0.5,-55.5 parent: 2 type: Transform - - uid: 30660 + - uid: 30750 components: - pos: 2.5,-55.5 parent: 2 type: Transform - - uid: 30661 + - uid: 30751 components: - pos: 2.5,-62.5 parent: 2 type: Transform - - uid: 30662 + - uid: 30752 components: - pos: -9.5,-62.5 parent: 2 type: Transform - - uid: 30663 + - uid: 30753 components: - pos: -3.5,-55.5 parent: 2 type: Transform - - uid: 30664 + - uid: 30754 components: - pos: -9.5,-55.5 parent: 2 type: Transform - - uid: 30665 + - uid: 30755 components: - pos: 2.5,-58.5 parent: 2 type: Transform - - uid: 30666 + - uid: 30756 components: - pos: 4.5,-62.5 parent: 2 type: Transform - - uid: 30667 + - uid: 30757 components: - pos: -8.5,-62.5 parent: 2 type: Transform - - uid: 30668 + - uid: 30758 components: - pos: -10.5,-56.5 parent: 2 type: Transform - - uid: 30669 + - uid: 30759 components: - pos: -10.5,-57.5 parent: 2 type: Transform - - uid: 30670 + - uid: 30760 components: - pos: -21.5,-61.5 parent: 2 type: Transform - - uid: 30671 + - uid: 30761 components: - pos: -21.5,-59.5 parent: 2 type: Transform - - uid: 30672 + - uid: 30762 components: - pos: -12.5,-44.5 parent: 2 type: Transform - - uid: 30673 + - uid: 30763 components: - pos: -12.5,-55.5 parent: 2 type: Transform - - uid: 30674 + - uid: 30764 components: - pos: -6.5,-36.5 parent: 2 type: Transform - - uid: 30675 + - uid: 30765 components: - pos: -25.5,9.5 parent: 2 type: Transform - - uid: 30676 + - uid: 30766 components: - pos: -3.5,-44.5 parent: 2 type: Transform - - uid: 30677 + - uid: 30767 components: - rot: -1.5707963267948966 rad pos: 19.5,-0.5 parent: 2 type: Transform - - uid: 30678 + - uid: 30768 components: - rot: -1.5707963267948966 rad pos: 25.5,5.5 parent: 2 type: Transform - - uid: 30679 + - uid: 30769 components: - rot: -1.5707963267948966 rad pos: 27.5,-3.5 parent: 2 type: Transform - - uid: 30680 + - uid: 30770 components: - rot: -1.5707963267948966 rad pos: 21.5,-3.5 parent: 2 type: Transform - - uid: 30682 + - uid: 30771 components: - pos: -4.5,-44.5 parent: 2 type: Transform - - uid: 30683 + - uid: 30772 components: - pos: -1.5,-57.5 parent: 2 type: Transform - - uid: 30684 + - uid: 30773 components: - pos: -4.5,-57.5 parent: 2 type: Transform - - uid: 30685 + - uid: 30774 components: - pos: -7.5,-57.5 parent: 2 type: Transform - - uid: 30686 + - uid: 30775 components: - pos: -13.5,-44.5 parent: 2 type: Transform - - uid: 30687 + - uid: 30776 components: - pos: -6.5,-38.5 parent: 2 type: Transform - - uid: 30688 + - uid: 30777 components: - pos: -10.5,-16.5 parent: 2 type: Transform - - uid: 30689 + - uid: 30778 components: - pos: 42.5,-0.5 parent: 2 type: Transform - - uid: 30690 + - uid: 30779 components: - pos: -21.5,-20.5 parent: 2 type: Transform - - uid: 30691 + - uid: 30780 components: - rot: -1.5707963267948966 rad pos: 21.5,5.5 parent: 2 type: Transform - - uid: 30692 + - uid: 30781 components: - rot: -1.5707963267948966 rad pos: 26.5,5.5 parent: 2 type: Transform - - uid: 30693 + - uid: 30782 components: - rot: -1.5707963267948966 rad pos: 23.5,5.5 parent: 2 type: Transform - - uid: 30694 + - uid: 30783 components: - rot: -1.5707963267948966 rad pos: 25.5,-3.5 parent: 2 type: Transform - - uid: 30695 + - uid: 30784 components: - pos: -12.5,43.5 parent: 2 type: Transform - - uid: 30696 + - uid: 30785 components: - pos: 37.5,-0.5 parent: 2 type: Transform - - uid: 30697 + - uid: 30786 components: - rot: 3.141592653589793 rad pos: -20.5,-68.5 parent: 2 type: Transform - - uid: 30698 + - uid: 30787 components: - rot: 3.141592653589793 rad pos: -18.5,-68.5 parent: 2 type: Transform - - uid: 30699 + - uid: 30788 components: - rot: -1.5707963267948966 rad pos: 19.5,3.5 parent: 2 type: Transform - - uid: 30700 + - uid: 30789 components: - rot: -1.5707963267948966 rad pos: 19.5,2.5 parent: 2 type: Transform - - uid: 30701 + - uid: 30790 components: - pos: -6.5,-58.5 parent: 2 type: Transform - - uid: 30702 + - uid: 30791 components: - pos: -6.5,-37.5 parent: 2 type: Transform - - uid: 30703 + - uid: 30792 components: - pos: -7.5,-56.5 parent: 2 type: Transform - - uid: 30704 + - uid: 30793 components: - pos: 41.5,-0.5 parent: 2 type: Transform - - uid: 30705 + - uid: 30794 components: - pos: -13.5,-56.5 parent: 2 type: Transform - - uid: 30706 + - uid: 30795 components: - rot: -1.5707963267948966 rad pos: 19.5,1.5 parent: 2 type: Transform - - uid: 30707 + - uid: 30796 components: - rot: -1.5707963267948966 rad pos: 27.5,5.5 parent: 2 type: Transform - - uid: 30708 + - uid: 30797 components: - pos: 43.5,-0.5 parent: 2 type: Transform - - uid: 30709 + - uid: 30798 components: - pos: -21.5,-22.5 parent: 2 type: Transform - - uid: 30710 + - uid: 30799 components: - pos: 32.5,-57.5 parent: 2 type: Transform - - uid: 30711 + - uid: 30800 components: - pos: -12.5,14.5 parent: 2 type: Transform - - uid: 30712 + - uid: 30801 components: - pos: -23.5,9.5 parent: 2 type: Transform - - uid: 30713 + - uid: 30802 components: - pos: -22.5,9.5 parent: 2 type: Transform - - uid: 30714 + - uid: 30803 components: - pos: -8.5,43.5 parent: 2 type: Transform - - uid: 30715 + - uid: 30804 components: - pos: 35.5,-4.5 parent: 2 type: Transform - - uid: 30716 + - uid: 30805 components: - pos: -12.5,-16.5 parent: 2 type: Transform - - uid: 30717 + - uid: 30806 components: - pos: 43.5,-12.5 parent: 2 type: Transform - - uid: 30718 + - uid: 30807 components: - pos: 42.5,-44.5 parent: 2 type: Transform - - uid: 30719 + - uid: 30808 components: - pos: 43.5,-44.5 parent: 2 type: Transform - - uid: 30720 + - uid: 30809 components: - pos: 44.5,-44.5 parent: 2 type: Transform - - uid: 30721 + - uid: 30810 components: - pos: 27.5,-51.5 parent: 2 type: Transform - - uid: 30722 + - uid: 30811 components: - pos: 27.5,-47.5 parent: 2 type: Transform - - uid: 30723 + - uid: 30812 components: - pos: -19.5,0.5 parent: 2 type: Transform - - uid: 30724 + - uid: 30813 components: - pos: -17.5,0.5 parent: 2 type: Transform - - uid: 30725 + - uid: 30814 components: - pos: -16.5,0.5 parent: 2 type: Transform - - uid: 30726 + - uid: 30815 components: - rot: -1.5707963267948966 rad pos: -24.5,-18.5 parent: 2 type: Transform - - uid: 30727 + - uid: 30816 components: - pos: 38.5,-57.5 parent: 2 type: Transform - - uid: 30728 + - uid: 30817 components: - pos: 40.5,-57.5 parent: 2 type: Transform - - uid: 30729 + - uid: 30818 components: - rot: -1.5707963267948966 rad pos: -25.5,-18.5 parent: 2 type: Transform - - uid: 30730 + - uid: 30819 components: - pos: 5.5,-58.5 parent: 2 type: Transform - - uid: 30731 + - uid: 30820 components: - rot: 1.5707963267948966 rad pos: -66.5,-29.5 parent: 2 type: Transform - - uid: 30732 + - uid: 30821 components: - rot: -1.5707963267948966 rad pos: -28.5,-47.5 parent: 2 type: Transform - - uid: 30733 + - uid: 30822 components: - pos: -38.5,-63.5 parent: 2 type: Transform - - uid: 30734 + - uid: 30823 components: - pos: -38.5,-65.5 parent: 2 type: Transform - - uid: 30735 + - uid: 30824 components: - pos: -21.5,24.5 parent: 2 type: Transform - - uid: 30736 + - uid: 30825 components: - pos: -21.5,23.5 parent: 2 type: Transform - - uid: 30737 + - uid: 30826 components: - pos: -34.5,2.5 parent: 2 type: Transform - - uid: 30738 + - uid: 30827 components: - pos: -26.5,9.5 parent: 2 type: Transform - - uid: 30739 + - uid: 30828 components: - pos: -36.5,2.5 parent: 2 type: Transform - - uid: 30740 + - uid: 30829 components: - pos: -36.5,7.5 parent: 2 type: Transform - - uid: 30741 + - uid: 30830 components: - pos: -39.5,2.5 parent: 2 type: Transform - - uid: 30742 + - uid: 30831 components: - pos: -35.5,2.5 parent: 2 type: Transform - - uid: 30743 + - uid: 30832 components: - pos: -39.5,7.5 parent: 2 type: Transform - - uid: 30744 + - uid: 30833 components: - pos: -41.5,2.5 parent: 2 type: Transform - - uid: 30745 + - uid: 30834 components: - pos: -40.5,2.5 parent: 2 type: Transform - - uid: 30746 + - uid: 30835 components: - rot: 1.5707963267948966 rad pos: -52.5,-0.5 parent: 2 type: Transform - - uid: 30748 + - uid: 30836 components: - pos: -30.5,-72.5 parent: 2 type: Transform - - uid: 30749 + - uid: 30837 components: - pos: -14.5,65.5 parent: 2 type: Transform - - uid: 30750 + - uid: 30838 components: - pos: -14.5,62.5 parent: 2 type: Transform - - uid: 30751 + - uid: 30839 components: - pos: -3.5,47.5 parent: 2 type: Transform - - uid: 30752 + - uid: 30840 components: - pos: -1.5,49.5 parent: 2 type: Transform - - uid: 30753 + - uid: 30841 components: - pos: -5.5,47.5 parent: 2 type: Transform - - uid: 30754 + - uid: 30842 components: - rot: 3.141592653589793 rad pos: -19.5,44.5 parent: 2 type: Transform - - uid: 30755 + - uid: 30843 components: - pos: -7.5,57.5 parent: 2 type: Transform - - uid: 30756 + - uid: 30844 components: - pos: -5.5,57.5 parent: 2 type: Transform - - uid: 30757 + - uid: 30845 components: - pos: 2.5,47.5 parent: 2 type: Transform - - uid: 30758 + - uid: 30846 components: - pos: 2.5,50.5 parent: 2 type: Transform - - uid: 30759 + - uid: 30847 components: - pos: 2.5,51.5 parent: 2 type: Transform - - uid: 30760 + - uid: 30848 components: - pos: -1.5,50.5 parent: 2 type: Transform - - uid: 30761 + - uid: 30849 components: - pos: -11.5,51.5 parent: 2 type: Transform - - uid: 30762 + - uid: 30850 components: - pos: -11.5,53.5 parent: 2 type: Transform - - uid: 30763 + - uid: 30851 components: - pos: -20.5,62.5 parent: 2 type: Transform - - uid: 30764 + - uid: 30852 components: - rot: 3.141592653589793 rad pos: -28.5,-72.5 @@ -203275,119 +204580,129 @@ entities: type: Transform - proto: WindowDirectional entities: - - uid: 30765 + - uid: 30853 + components: + - pos: 3.5,-1.5 + parent: 2 + type: Transform + - uid: 30854 + components: + - pos: 2.5,-1.5 + parent: 2 + type: Transform + - uid: 30855 components: - rot: -1.5707963267948966 rad pos: 10.5,0.5 parent: 2 type: Transform - - uid: 30766 + - uid: 30856 components: - rot: 1.5707963267948966 rad pos: 7.5,1.5 parent: 2 type: Transform - - uid: 30767 + - uid: 30857 components: - pos: 8.5,2.5 parent: 2 type: Transform - - uid: 30768 + - uid: 30858 components: - rot: -1.5707963267948966 rad pos: 10.5,1.5 parent: 2 type: Transform - - uid: 30769 + - uid: 30859 components: - rot: -1.5707963267948966 rad pos: 5.5,-57.5 parent: 2 type: Transform - - uid: 30770 + - uid: 30860 components: - pos: 9.5,2.5 parent: 2 type: Transform - - uid: 30771 + - uid: 30861 components: - rot: 3.141592653589793 rad pos: 8.5,-0.5 parent: 2 type: Transform - - uid: 30772 + - uid: 30862 components: - rot: 1.5707963267948966 rad pos: 7.5,0.5 parent: 2 type: Transform - - uid: 30773 + - uid: 30863 components: - rot: 1.5707963267948966 rad pos: 59.5,-35.5 parent: 2 type: Transform - - uid: 30774 + - uid: 30864 components: - rot: -1.5707963267948966 rad pos: 74.5,-49.5 parent: 2 type: Transform - - uid: 30775 + - uid: 30865 components: - rot: -1.5707963267948966 rad pos: 74.5,-47.5 parent: 2 type: Transform - - uid: 30776 + - uid: 30866 components: - rot: 1.5707963267948966 rad pos: 68.5,-47.5 parent: 2 type: Transform - - uid: 30777 + - uid: 30867 components: - rot: 1.5707963267948966 rad pos: 68.5,-49.5 parent: 2 type: Transform - - uid: 30778 + - uid: 30868 components: - rot: 1.5707963267948966 rad pos: 59.5,-32.5 parent: 2 type: Transform - - uid: 30779 + - uid: 30869 components: - rot: 1.5707963267948966 rad pos: 68.5,-48.5 parent: 2 type: Transform - - uid: 30780 + - uid: 30870 components: - rot: -1.5707963267948966 rad pos: 74.5,-48.5 parent: 2 type: Transform - - uid: 30781 + - uid: 30871 components: - rot: 3.141592653589793 rad pos: 69.5,-47.5 parent: 2 type: Transform - - uid: 30782 + - uid: 30872 components: - rot: 3.141592653589793 rad pos: 70.5,-47.5 parent: 2 type: Transform - - uid: 30783 + - uid: 30873 components: - rot: 3.141592653589793 rad pos: 73.5,-47.5 parent: 2 type: Transform - - uid: 30784 + - uid: 30874 components: - rot: 3.141592653589793 rad pos: 72.5,-47.5 @@ -203395,1569 +204710,1569 @@ entities: type: Transform - proto: WindowReinforcedDirectional entities: - - uid: 30785 + - uid: 30875 components: - rot: 1.5707963267948966 rad pos: -25.5,-24.5 parent: 2 type: Transform - - uid: 30786 + - uid: 30876 components: - rot: 3.141592653589793 rad pos: -24.5,-24.5 parent: 2 type: Transform - - uid: 30787 + - uid: 30877 components: - rot: -1.5707963267948966 rad pos: -11.5,7.5 parent: 2 type: Transform - - uid: 30788 + - uid: 30878 components: - pos: 16.5,-53.5 parent: 2 type: Transform - - uid: 30789 + - uid: 30879 components: - pos: -11.5,6.5 parent: 2 type: Transform - - uid: 30790 + - uid: 30880 components: - pos: 15.5,-53.5 parent: 2 type: Transform - - uid: 30791 + - uid: 30881 components: - rot: 3.141592653589793 rad pos: -11.5,7.5 parent: 2 type: Transform - - uid: 30792 + - uid: 30882 components: - rot: -1.5707963267948966 rad pos: -11.5,6.5 parent: 2 type: Transform - - uid: 30793 + - uid: 30883 components: - rot: 1.5707963267948966 rad pos: -11.5,6.5 parent: 2 type: Transform - - uid: 30794 + - uid: 30884 components: - rot: 1.5707963267948966 rad pos: -11.5,7.5 parent: 2 type: Transform - - uid: 30795 + - uid: 30885 components: - pos: -28.5,-78.5 parent: 2 type: Transform - - uid: 30796 + - uid: 30886 components: - rot: -1.5707963267948966 rad pos: 22.5,-21.5 parent: 2 type: Transform - - uid: 30797 + - uid: 30887 components: - rot: -1.5707963267948966 rad pos: -16.5,-75.5 parent: 2 type: Transform - - uid: 30798 + - uid: 30888 components: - rot: 1.5707963267948966 rad pos: -23.5,-88.5 parent: 2 type: Transform - - uid: 30799 + - uid: 30889 components: - pos: -17.5,-76.5 parent: 2 type: Transform - - uid: 30800 + - uid: 30890 components: - pos: -30.5,-78.5 parent: 2 type: Transform - - uid: 30801 + - uid: 30891 components: - rot: 1.5707963267948966 rad pos: -28.5,-80.5 parent: 2 type: Transform - - uid: 30802 + - uid: 30892 components: - rot: 1.5707963267948966 rad pos: -23.5,-90.5 parent: 2 type: Transform - - uid: 30803 + - uid: 30893 components: - pos: -4.5,4.5 parent: 2 type: Transform - - uid: 30804 + - uid: 30894 components: - rot: -1.5707963267948966 rad pos: 28.5,-21.5 parent: 2 type: Transform - - uid: 30805 + - uid: 30895 components: - rot: 1.5707963267948966 rad pos: 24.5,-21.5 parent: 2 type: Transform - - uid: 30806 + - uid: 30896 components: - rot: 1.5707963267948966 rad pos: 26.5,-21.5 parent: 2 type: Transform - - uid: 30807 + - uid: 30897 components: - rot: -1.5707963267948966 rad pos: 26.5,-21.5 parent: 2 type: Transform - - uid: 30808 + - uid: 30898 components: - pos: 49.5,22.5 parent: 2 type: Transform - - uid: 30809 + - uid: 30899 components: - pos: 25.5,-23.5 parent: 2 type: Transform - - uid: 30810 + - uid: 30900 components: - rot: 3.141592653589793 rad pos: 26.5,28.5 parent: 2 type: Transform - - uid: 30811 + - uid: 30901 components: - rot: 1.5707963267948966 rad pos: 30.5,29.5 parent: 2 type: Transform - - uid: 30812 + - uid: 30902 components: - rot: 3.141592653589793 rad pos: 32.5,28.5 parent: 2 type: Transform - - uid: 30813 + - uid: 30903 components: - rot: 3.141592653589793 rad pos: 27.5,28.5 parent: 2 type: Transform - - uid: 30814 + - uid: 30904 components: - rot: -1.5707963267948966 rad pos: -17.5,-78.5 parent: 2 type: Transform - - uid: 30815 + - uid: 30905 components: - pos: -11.5,-9.5 parent: 2 type: Transform - - uid: 30816 + - uid: 30906 components: - rot: -1.5707963267948966 rad pos: 19.5,-54.5 parent: 2 type: Transform - - uid: 30817 + - uid: 30907 components: - pos: 58.5,22.5 parent: 2 type: Transform - - uid: 30818 + - uid: 30908 components: - pos: 52.5,22.5 parent: 2 type: Transform - - uid: 30819 + - uid: 30909 components: - pos: 55.5,22.5 parent: 2 type: Transform - - uid: 30820 + - uid: 30910 components: - rot: -1.5707963267948966 rad pos: 28.5,29.5 parent: 2 type: Transform - - uid: 30821 + - uid: 30911 components: - rot: 3.141592653589793 rad pos: 26.5,30.5 parent: 2 type: Transform - - uid: 30822 + - uid: 30912 components: - rot: 3.141592653589793 rad pos: -17.5,-78.5 parent: 2 type: Transform - - uid: 30823 + - uid: 30913 components: - rot: -1.5707963267948966 rad pos: -17.5,-76.5 parent: 2 type: Transform - - uid: 30824 + - uid: 30914 components: - rot: -1.5707963267948966 rad pos: -16.5,-79.5 parent: 2 type: Transform - - uid: 30825 + - uid: 30915 components: - rot: 1.5707963267948966 rad pos: -28.5,-78.5 parent: 2 type: Transform - - uid: 30826 + - uid: 30916 components: - rot: 3.141592653589793 rad pos: -26.5,-88.5 parent: 2 type: Transform - - uid: 30827 + - uid: 30917 components: - rot: 3.141592653589793 rad pos: -23.5,-88.5 parent: 2 type: Transform - - uid: 30828 + - uid: 30918 components: - rot: 3.141592653589793 rad pos: -21.5,-88.5 parent: 2 type: Transform - - uid: 30829 + - uid: 30919 components: - pos: 26.5,-23.5 parent: 2 type: Transform - - uid: 30830 + - uid: 30920 components: - rot: 3.141592653589793 rad pos: -24.5,-88.5 parent: 2 type: Transform - - uid: 30831 + - uid: 30921 components: - rot: -1.5707963267948966 rad pos: -22.5,-90.5 parent: 2 type: Transform - - uid: 30832 + - uid: 30922 components: - rot: -1.5707963267948966 rad pos: -22.5,-88.5 parent: 2 type: Transform - - uid: 30833 + - uid: 30923 components: - rot: -1.5707963267948966 rad pos: 28.5,27.5 parent: 2 type: Transform - - uid: 30834 + - uid: 30924 components: - pos: -9.5,-81.5 parent: 2 type: Transform - - uid: 30835 + - uid: 30925 components: - rot: 3.141592653589793 rad pos: 31.5,30.5 parent: 2 type: Transform - - uid: 30836 + - uid: 30926 components: - rot: 3.141592653589793 rad pos: 27.5,30.5 parent: 2 type: Transform - - uid: 30837 + - uid: 30927 components: - rot: 3.141592653589793 rad pos: -8.5,21.5 parent: 2 type: Transform - - uid: 30838 + - uid: 30928 components: - rot: 3.141592653589793 rad pos: 32.5,30.5 parent: 2 type: Transform - - uid: 30839 + - uid: 30929 components: - rot: 1.5707963267948966 rad pos: 23.5,-24.5 parent: 2 type: Transform - - uid: 30840 + - uid: 30930 components: - rot: 3.141592653589793 rad pos: 31.5,28.5 parent: 2 type: Transform - - uid: 30841 + - uid: 30931 components: - rot: -1.5707963267948966 rad pos: -22.5,-89.5 parent: 2 type: Transform - - uid: 30842 + - uid: 30932 components: - rot: 1.5707963267948966 rad pos: -23.5,-89.5 parent: 2 type: Transform - - uid: 30843 + - uid: 30933 components: - pos: -29.5,-78.5 parent: 2 type: Transform - - uid: 30844 + - uid: 30934 components: - rot: 1.5707963267948966 rad pos: 30.5,27.5 parent: 2 type: Transform - - uid: 30845 + - uid: 30935 components: - rot: -1.5707963267948966 rad pos: 24.5,-21.5 parent: 2 type: Transform - - uid: 30846 + - uid: 30936 components: - rot: 1.5707963267948966 rad pos: 28.5,-21.5 parent: 2 type: Transform - - uid: 30847 + - uid: 30937 components: - pos: -3.5,4.5 parent: 2 type: Transform - - uid: 30848 + - uid: 30938 components: - rot: 1.5707963267948966 rad pos: 22.5,-21.5 parent: 2 type: Transform - - uid: 30849 + - uid: 30939 components: - rot: 1.5707963267948966 rad pos: -10.5,-82.5 parent: 2 type: Transform - - uid: 30850 + - uid: 30940 components: - rot: -1.5707963267948966 rad pos: 27.5,-24.5 parent: 2 type: Transform - - uid: 30851 + - uid: 30941 components: - pos: 24.5,-23.5 parent: 2 type: Transform - - uid: 30852 + - uid: 30942 components: - pos: 18.5,-53.5 parent: 2 type: Transform - - uid: 30853 + - uid: 30943 components: - pos: -14.5,-9.5 parent: 2 type: Transform - - uid: 30854 + - uid: 30944 components: - rot: 3.141592653589793 rad pos: -22.5,-88.5 parent: 2 type: Transform - - uid: 30855 + - uid: 30945 components: - rot: 3.141592653589793 rad pos: -19.5,-88.5 parent: 2 type: Transform - - uid: 30856 + - uid: 30946 components: - rot: -1.5707963267948966 rad pos: -10.5,-10.5 parent: 2 type: Transform - - uid: 30857 + - uid: 30947 components: - rot: 1.5707963267948966 rad pos: -15.5,-10.5 parent: 2 type: Transform - - uid: 30858 + - uid: 30948 components: - pos: -10.5,29.5 parent: 2 type: Transform - - uid: 30859 + - uid: 30949 components: - pos: -9.5,29.5 parent: 2 type: Transform - - uid: 30860 + - uid: 30950 components: - pos: 46.5,22.5 parent: 2 type: Transform - - uid: 30861 + - uid: 30951 components: - rot: -1.5707963267948966 rad pos: 60.5,19.5 parent: 2 type: Transform - - uid: 30862 + - uid: 30952 components: - rot: -1.5707963267948966 rad pos: 60.5,16.5 parent: 2 type: Transform - - uid: 30863 + - uid: 30953 components: - pos: -10.5,-82.5 parent: 2 type: Transform - - uid: 30864 + - uid: 30954 components: - pos: 30.5,-52.5 parent: 2 type: Transform - - uid: 30865 + - uid: 30955 components: - pos: 29.5,-52.5 parent: 2 type: Transform - - uid: 30866 + - uid: 30956 components: - pos: 28.5,-52.5 parent: 2 type: Transform - - uid: 30867 + - uid: 30957 components: - pos: 32.5,-52.5 parent: 2 type: Transform - - uid: 30868 + - uid: 30958 components: - pos: 33.5,-52.5 parent: 2 type: Transform - - uid: 30869 + - uid: 30959 components: - pos: 34.5,-52.5 parent: 2 type: Transform - - uid: 30870 + - uid: 30960 components: - rot: 1.5707963267948966 rad pos: 32.5,-47.5 parent: 2 type: Transform - - uid: 30871 + - uid: 30961 components: - rot: 1.5707963267948966 rad pos: 32.5,-48.5 parent: 2 type: Transform - - uid: 30872 + - uid: 30962 components: - pos: 33.5,-48.5 parent: 2 type: Transform - - uid: 30873 + - uid: 30963 components: - pos: 34.5,-48.5 parent: 2 type: Transform - - uid: 30874 + - uid: 30964 components: - rot: 1.5707963267948966 rad pos: 34.5,-48.5 parent: 2 type: Transform - - uid: 30875 + - uid: 30965 components: - rot: 1.5707963267948966 rad pos: 34.5,-47.5 parent: 2 type: Transform - - uid: 30876 + - uid: 30966 components: - rot: 1.5707963267948966 rad pos: 29.5,-47.5 parent: 2 type: Transform - - uid: 30877 + - uid: 30967 components: - rot: 1.5707963267948966 rad pos: 29.5,-48.5 parent: 2 type: Transform - - uid: 30878 + - uid: 30968 components: - pos: 29.5,-48.5 parent: 2 type: Transform - - uid: 30879 + - uid: 30969 components: - pos: 28.5,-48.5 parent: 2 type: Transform - - uid: 30880 + - uid: 30970 components: - rot: 3.141592653589793 rad pos: 62.5,-48.5 parent: 2 type: Transform - - uid: 30881 + - uid: 30971 components: - rot: 1.5707963267948966 rad pos: 61.5,-47.5 parent: 2 type: Transform - - uid: 30882 + - uid: 30972 components: - rot: -1.5707963267948966 rad pos: 63.5,-47.5 parent: 2 type: Transform - - uid: 30883 + - uid: 30973 components: - rot: 3.141592653589793 rad pos: 63.5,-47.5 parent: 2 type: Transform - - uid: 30884 + - uid: 30974 components: - rot: -1.5707963267948966 rad pos: 64.5,-46.5 parent: 2 type: Transform - - uid: 30885 + - uid: 30975 components: - pos: 63.5,-45.5 parent: 2 type: Transform - - uid: 30886 + - uid: 30976 components: - pos: 62.5,-44.5 parent: 2 type: Transform - - uid: 30887 + - uid: 30977 components: - rot: -1.5707963267948966 rad pos: 63.5,-45.5 parent: 2 type: Transform - - uid: 30888 + - uid: 30978 components: - rot: 1.5707963267948966 rad pos: 61.5,-45.5 parent: 2 type: Transform - - uid: 30889 + - uid: 30979 components: - pos: 61.5,-45.5 parent: 2 type: Transform - - uid: 30890 + - uid: 30980 components: - rot: 1.5707963267948966 rad pos: 60.5,-46.5 parent: 2 type: Transform - - uid: 30891 + - uid: 30981 components: - rot: 3.141592653589793 rad pos: 61.5,-47.5 parent: 2 type: Transform - - uid: 30892 + - uid: 30982 components: - rot: 1.5707963267948966 rad pos: -44.5,-13.5 parent: 2 type: Transform - - uid: 30893 + - uid: 30983 components: - rot: 3.141592653589793 rad pos: -46.5,-8.5 parent: 2 type: Transform - - uid: 30894 + - uid: 30984 components: - rot: -1.5707963267948966 rad pos: -8.5,27.5 parent: 2 type: Transform - - uid: 30895 + - uid: 30985 components: - rot: 1.5707963267948966 rad pos: -11.5,28.5 parent: 2 type: Transform - - uid: 30896 + - uid: 30986 components: - rot: -1.5707963267948966 rad pos: -8.5,28.5 parent: 2 type: Transform - - uid: 30897 + - uid: 30987 components: - rot: -1.5707963267948966 rad pos: -34.5,13.5 parent: 2 type: Transform - - uid: 30898 + - uid: 30988 components: - rot: -1.5707963267948966 rad pos: -34.5,15.5 parent: 2 type: Transform - - uid: 30899 + - uid: 30989 components: - rot: 3.141592653589793 rad pos: -3.5,4.5 parent: 2 type: Transform - - uid: 30900 + - uid: 30990 components: - rot: 3.141592653589793 rad pos: -4.5,4.5 parent: 2 type: Transform - - uid: 30901 + - uid: 30991 components: - rot: 1.5707963267948966 rad pos: -3.5,4.5 parent: 2 type: Transform - - uid: 30902 + - uid: 30992 components: - rot: -1.5707963267948966 rad pos: -4.5,4.5 parent: 2 type: Transform - - uid: 30903 + - uid: 30993 components: - pos: -12.5,-9.5 parent: 2 type: Transform - - uid: 30904 + - uid: 30994 components: - rot: 3.141592653589793 rad pos: 30.5,30.5 parent: 2 type: Transform - - uid: 30905 + - uid: 30995 components: - pos: -8.5,-81.5 parent: 2 type: Transform - - uid: 30906 + - uid: 30996 components: - rot: 3.141592653589793 rad pos: -10.5,-84.5 parent: 2 type: Transform - - uid: 30907 + - uid: 30997 components: - rot: 3.141592653589793 rad pos: -9.5,-84.5 parent: 2 type: Transform - - uid: 30908 + - uid: 30998 components: - pos: 45.5,38.5 parent: 2 type: Transform - - uid: 30909 + - uid: 30999 components: - pos: 46.5,38.5 parent: 2 type: Transform - - uid: 30910 + - uid: 31000 components: - pos: 47.5,38.5 parent: 2 type: Transform - - uid: 30911 + - uid: 31001 components: - rot: -1.5707963267948966 rad pos: 49.5,37.5 parent: 2 type: Transform - - uid: 30912 + - uid: 31002 components: - rot: -1.5707963267948966 rad pos: 49.5,36.5 parent: 2 type: Transform - - uid: 30913 + - uid: 31003 components: - rot: 3.141592653589793 rad pos: 48.5,35.5 parent: 2 type: Transform - - uid: 30914 + - uid: 31004 components: - rot: 3.141592653589793 rad pos: 47.5,35.5 parent: 2 type: Transform - - uid: 30915 + - uid: 31005 components: - rot: 3.141592653589793 rad pos: 46.5,35.5 parent: 2 type: Transform - - uid: 30916 + - uid: 31006 components: - rot: 1.5707963267948966 rad pos: 45.5,36.5 parent: 2 type: Transform - - uid: 30917 + - uid: 31007 components: - rot: 3.141592653589793 rad pos: 45.5,36.5 parent: 2 type: Transform - - uid: 30918 + - uid: 31008 components: - pos: -2.5,71.5 parent: 2 type: Transform - - uid: 30919 + - uid: 31009 components: - pos: -1.5,71.5 parent: 2 type: Transform - - uid: 30920 + - uid: 31010 components: - pos: -0.5,71.5 parent: 2 type: Transform - - uid: 30921 + - uid: 31011 components: - rot: 1.5707963267948966 rad pos: -3.5,70.5 parent: 2 type: Transform - - uid: 30922 + - uid: 31012 components: - rot: 1.5707963267948966 rad pos: -3.5,69.5 parent: 2 type: Transform - - uid: 30923 + - uid: 31013 components: - rot: 1.5707963267948966 rad pos: -3.5,68.5 parent: 2 type: Transform - - uid: 30924 + - uid: 31014 components: - rot: 3.141592653589793 rad pos: -2.5,67.5 parent: 2 type: Transform - - uid: 30925 + - uid: 31015 components: - rot: 3.141592653589793 rad pos: -1.5,67.5 parent: 2 type: Transform - - uid: 30926 + - uid: 31016 components: - rot: 3.141592653589793 rad pos: -0.5,67.5 parent: 2 type: Transform - - uid: 30927 + - uid: 31017 components: - rot: -1.5707963267948966 rad pos: 0.5,68.5 parent: 2 type: Transform - - uid: 30928 + - uid: 31018 components: - rot: -1.5707963267948966 rad pos: 0.5,69.5 parent: 2 type: Transform - - uid: 30929 + - uid: 31019 components: - rot: -1.5707963267948966 rad pos: 0.5,70.5 parent: 2 type: Transform - - uid: 30930 + - uid: 31020 components: - pos: -10.5,24.5 parent: 2 type: Transform - - uid: 30931 + - uid: 31021 components: - rot: 3.141592653589793 rad pos: -10.5,21.5 parent: 2 type: Transform - - uid: 30932 + - uid: 31022 components: - rot: 3.141592653589793 rad pos: -9.5,21.5 parent: 2 type: Transform - - uid: 30933 + - uid: 31023 components: - rot: 1.5707963267948966 rad pos: -10.5,24.5 parent: 2 type: Transform - - uid: 30934 + - uid: 31024 components: - pos: -11.5,28.5 parent: 2 type: Transform - - uid: 30935 + - uid: 31025 components: - rot: -1.5707963267948966 rad pos: -8.5,26.5 parent: 2 type: Transform - - uid: 30936 + - uid: 31026 components: - rot: -1.5707963267948966 rad pos: -8.5,24.5 parent: 2 type: Transform - - uid: 30937 + - uid: 31027 components: - rot: -1.5707963267948966 rad pos: -8.5,23.5 parent: 2 type: Transform - - uid: 30938 + - uid: 31028 components: - pos: -8.5,23.5 parent: 2 type: Transform - - uid: 30939 + - uid: 31029 components: - rot: 3.141592653589793 rad pos: -8.5,-84.5 parent: 2 type: Transform - - uid: 30940 + - uid: 31030 components: - rot: -1.5707963267948966 rad pos: -7.5,-83.5 parent: 2 type: Transform - - uid: 30941 + - uid: 31031 components: - rot: -1.5707963267948966 rad pos: -7.5,-82.5 parent: 2 type: Transform - - uid: 30942 + - uid: 31032 components: - rot: 3.141592653589793 rad pos: -10.5,26.5 parent: 2 type: Transform - - uid: 30943 + - uid: 31033 components: - rot: 1.5707963267948966 rad pos: -10.5,26.5 parent: 2 type: Transform - - uid: 30944 + - uid: 31034 components: - rot: 3.141592653589793 rad pos: -11.5,26.5 parent: 2 type: Transform - - uid: 30945 + - uid: 31035 components: - rot: 3.141592653589793 rad pos: -12.5,26.5 parent: 2 type: Transform - - uid: 30946 + - uid: 31036 components: - pos: -11.5,-81.5 parent: 2 type: Transform - - uid: 30947 + - uid: 31037 components: - rot: 1.5707963267948966 rad pos: -12.5,-82.5 parent: 2 type: Transform - - uid: 30948 + - uid: 31038 components: - rot: 3.141592653589793 rad pos: -11.5,-84.5 parent: 2 type: Transform - - uid: 30949 + - uid: 31039 components: - rot: 1.5707963267948966 rad pos: -13.5,-83.5 parent: 2 type: Transform - - uid: 30950 + - uid: 31040 components: - rot: 1.5707963267948966 rad pos: -13.5,-82.5 parent: 2 type: Transform - - uid: 30951 + - uid: 31041 components: - rot: 3.141592653589793 rad pos: -12.5,-84.5 parent: 2 type: Transform - - uid: 30952 + - uid: 31042 components: - rot: 3.141592653589793 rad pos: -12.5,-81.5 parent: 2 type: Transform - - uid: 30953 + - uid: 31043 components: - rot: -1.5707963267948966 rad pos: -11.5,-81.5 parent: 2 type: Transform - - uid: 30954 + - uid: 31044 components: - rot: -1.5707963267948966 rad pos: -10.5,-81.5 parent: 2 type: Transform - - uid: 30955 + - uid: 31045 components: - rot: -1.5707963267948966 rad pos: -10.5,-80.5 parent: 2 type: Transform - - uid: 30956 + - uid: 31046 components: - rot: 3.141592653589793 rad pos: -10.5,-79.5 parent: 2 type: Transform - - uid: 30957 + - uid: 31047 components: - rot: 3.141592653589793 rad pos: -11.5,-79.5 parent: 2 type: Transform - - uid: 30958 + - uid: 31048 components: - rot: 1.5707963267948966 rad pos: -12.5,-80.5 parent: 2 type: Transform - - uid: 30959 + - uid: 31049 components: - rot: 1.5707963267948966 rad pos: -12.5,-79.5 parent: 2 type: Transform - - uid: 30960 + - uid: 31050 components: - rot: -1.5707963267948966 rad pos: -9.5,-81.5 parent: 2 type: Transform - - uid: 30961 + - uid: 31051 components: - rot: -1.5707963267948966 rad pos: -9.5,-80.5 parent: 2 type: Transform - - uid: 30962 + - uid: 31052 components: - rot: 3.141592653589793 rad pos: -9.5,-79.5 parent: 2 type: Transform - - uid: 30963 + - uid: 31053 components: - rot: 1.5707963267948966 rad pos: -9.5,-79.5 parent: 2 type: Transform - - uid: 30964 + - uid: 31054 components: - rot: 1.5707963267948966 rad pos: -9.5,-80.5 parent: 2 type: Transform - - uid: 30965 + - uid: 31055 components: - pos: -8.5,-80.5 parent: 2 type: Transform - - uid: 30966 + - uid: 31056 components: - rot: 1.5707963267948966 rad pos: -8.5,-80.5 parent: 2 type: Transform - - uid: 30967 + - uid: 31057 components: - rot: 1.5707963267948966 rad pos: -8.5,-79.5 parent: 2 type: Transform - - uid: 30968 + - uid: 31058 components: - rot: 1.5707963267948966 rad pos: -7.5,-79.5 parent: 2 type: Transform - - uid: 30969 + - uid: 31059 components: - rot: 1.5707963267948966 rad pos: -7.5,-80.5 parent: 2 type: Transform - - uid: 30970 + - uid: 31060 components: - pos: -7.5,-81.5 parent: 2 type: Transform - - uid: 30971 + - uid: 31061 components: - rot: -1.5707963267948966 rad pos: -5.5,-81.5 parent: 2 type: Transform - - uid: 30972 + - uid: 31062 components: - rot: 3.141592653589793 rad pos: -6.5,-81.5 parent: 2 type: Transform - - uid: 30973 + - uid: 31063 components: - rot: 1.5707963267948966 rad pos: -6.5,-82.5 parent: 2 type: Transform - - uid: 30974 + - uid: 31064 components: - rot: 3.141592653589793 rad pos: -6.5,-83.5 parent: 2 type: Transform - - uid: 30975 + - uid: 31065 components: - rot: -1.5707963267948966 rad pos: -6.5,-83.5 parent: 2 type: Transform - - uid: 30976 + - uid: 31066 components: - rot: -1.5707963267948966 rad pos: -6.5,-84.5 parent: 2 type: Transform - - uid: 30977 + - uid: 31067 components: - rot: 3.141592653589793 rad pos: -7.5,-85.5 parent: 2 type: Transform - - uid: 30978 + - uid: 31068 components: - rot: 1.5707963267948966 rad pos: -9.5,-84.5 parent: 2 type: Transform - - uid: 30979 + - uid: 31069 components: - rot: 1.5707963267948966 rad pos: -8.5,-85.5 parent: 2 type: Transform - - uid: 30980 + - uid: 31070 components: - rot: 1.5707963267948966 rad pos: -9.5,-85.5 parent: 2 type: Transform - - uid: 30981 + - uid: 31071 components: - rot: 1.5707963267948966 rad pos: -9.5,-77.5 parent: 2 type: Transform - - uid: 30982 + - uid: 31072 components: - rot: 3.141592653589793 rad pos: -8.5,-78.5 parent: 2 type: Transform - - uid: 30983 + - uid: 31073 components: - rot: 3.141592653589793 rad pos: -7.5,-78.5 parent: 2 type: Transform - - uid: 30984 + - uid: 31074 components: - rot: -1.5707963267948966 rad pos: -6.5,-78.5 parent: 2 type: Transform - - uid: 30985 + - uid: 31075 components: - rot: -1.5707963267948966 rad pos: -9.5,-77.5 parent: 2 type: Transform - - uid: 30986 + - uid: 31076 components: - pos: -6.5,-79.5 parent: 2 type: Transform - - uid: 30987 + - uid: 31077 components: - pos: -5.5,-79.5 parent: 2 type: Transform - - uid: 30988 + - uid: 31078 components: - rot: -1.5707963267948966 rad pos: -4.5,-80.5 parent: 2 type: Transform - - uid: 30989 + - uid: 31079 components: - rot: 3.141592653589793 rad pos: -4.5,-82.5 parent: 2 type: Transform - - uid: 30990 + - uid: 31080 components: - rot: 1.5707963267948966 rad pos: -5.5,-82.5 parent: 2 type: Transform - - uid: 30991 + - uid: 31081 components: - rot: 1.5707963267948966 rad pos: -5.5,-83.5 parent: 2 type: Transform - - uid: 30992 + - uid: 31082 components: - rot: 1.5707963267948966 rad pos: -6.5,-83.5 parent: 2 type: Transform - - uid: 30993 + - uid: 31083 components: - rot: 1.5707963267948966 rad pos: -6.5,-84.5 parent: 2 type: Transform - - uid: 30994 + - uid: 31084 components: - rot: 3.141592653589793 rad pos: -5.5,-85.5 parent: 2 type: Transform - - uid: 30995 + - uid: 31085 components: - rot: 1.5707963267948966 rad pos: -4.5,-83.5 parent: 2 type: Transform - - uid: 30996 + - uid: 31086 components: - rot: 1.5707963267948966 rad pos: -4.5,-82.5 parent: 2 type: Transform - - uid: 30997 + - uid: 31087 components: - rot: 3.141592653589793 rad pos: -5.5,-87.5 parent: 2 type: Transform - - uid: 30998 + - uid: 31088 components: - rot: 3.141592653589793 rad pos: -6.5,-87.5 parent: 2 type: Transform - - uid: 30999 + - uid: 31089 components: - rot: 3.141592653589793 rad pos: -7.5,-87.5 parent: 2 type: Transform - - uid: 31000 + - uid: 31090 components: - rot: 3.141592653589793 rad pos: -8.5,-87.5 parent: 2 type: Transform - - uid: 31001 + - uid: 31091 components: - rot: 3.141592653589793 rad pos: -9.5,-87.5 parent: 2 type: Transform - - uid: 31002 + - uid: 31092 components: - rot: 3.141592653589793 rad pos: -10.5,-88.5 parent: 2 type: Transform - - uid: 31003 + - uid: 31093 components: - rot: 1.5707963267948966 rad pos: -11.5,-86.5 parent: 2 type: Transform - - uid: 31004 + - uid: 31094 components: - rot: 1.5707963267948966 rad pos: -11.5,-85.5 parent: 2 type: Transform - - uid: 31005 + - uid: 31095 components: - rot: 3.141592653589793 rad pos: -9.5,-86.5 parent: 2 type: Transform - - uid: 31006 + - uid: 31096 components: - rot: 1.5707963267948966 rad pos: -10.5,-85.5 parent: 2 type: Transform - - uid: 31007 + - uid: 31097 components: - rot: 3.141592653589793 rad pos: -11.5,-85.5 parent: 2 type: Transform - - uid: 31008 + - uid: 31098 components: - rot: 3.141592653589793 rad pos: -12.5,-85.5 parent: 2 type: Transform - - uid: 31009 + - uid: 31099 components: - rot: 3.141592653589793 rad pos: -7.5,-86.5 parent: 2 type: Transform - - uid: 31010 + - uid: 31100 components: - rot: 3.141592653589793 rad pos: -6.5,-86.5 parent: 2 type: Transform - - uid: 31011 + - uid: 31101 components: - rot: 1.5707963267948966 rad pos: -5.5,-85.5 parent: 2 type: Transform - - uid: 31012 + - uid: 31102 components: - rot: 1.5707963267948966 rad pos: -13.5,-85.5 parent: 2 type: Transform - - uid: 31013 + - uid: 31103 components: - rot: 1.5707963267948966 rad pos: -14.5,-85.5 parent: 2 type: Transform - - uid: 31014 + - uid: 31104 components: - rot: 1.5707963267948966 rad pos: -14.5,-84.5 parent: 2 type: Transform - - uid: 31015 + - uid: 31105 components: - rot: 1.5707963267948966 rad pos: -14.5,-83.5 parent: 2 type: Transform - - uid: 31016 + - uid: 31106 components: - rot: 3.141592653589793 rad pos: -13.5,-87.5 parent: 2 type: Transform - - uid: 31017 + - uid: 31107 components: - rot: 1.5707963267948966 rad pos: -14.5,-86.5 parent: 2 type: Transform - - uid: 31018 + - uid: 31108 components: - rot: 3.141592653589793 rad pos: -12.5,-86.5 parent: 2 type: Transform - - uid: 31019 + - uid: 31109 components: - rot: 1.5707963267948966 rad pos: -14.5,-82.5 parent: 2 type: Transform - - uid: 31020 + - uid: 31110 components: - rot: 3.141592653589793 rad pos: -14.5,-82.5 parent: 2 type: Transform - - uid: 31021 + - uid: 31111 components: - rot: 1.5707963267948966 rad pos: -15.5,-82.5 parent: 2 type: Transform - - uid: 31022 + - uid: 31112 components: - pos: -15.5,-83.5 parent: 2 type: Transform - - uid: 31023 + - uid: 31113 components: - rot: 3.141592653589793 rad pos: -14.5,-85.5 parent: 2 type: Transform - - uid: 31024 + - uid: 31114 components: - rot: 1.5707963267948966 rad pos: -12.5,-87.5 parent: 2 type: Transform - - uid: 31025 + - uid: 31115 components: - rot: 3.141592653589793 rad pos: -11.5,-88.5 parent: 2 type: Transform - - uid: 31026 + - uid: 31116 components: - rot: 1.5707963267948966 rad pos: -11.5,-87.5 parent: 2 type: Transform - - uid: 31027 + - uid: 31117 components: - rot: 1.5707963267948966 rad pos: -10.5,-87.5 parent: 2 type: Transform - - uid: 31028 + - uid: 31118 components: - rot: 3.141592653589793 rad pos: -8.5,-88.5 parent: 2 type: Transform - - uid: 31029 + - uid: 31119 components: - rot: 1.5707963267948966 rad pos: -8.5,-88.5 parent: 2 type: Transform - - uid: 31030 + - uid: 31120 components: - rot: -1.5707963267948966 rad pos: -6.5,-88.5 parent: 2 type: Transform - - uid: 31031 + - uid: 31121 components: - pos: -6.5,-87.5 parent: 2 type: Transform - - uid: 31032 + - uid: 31122 components: - pos: -5.5,-87.5 parent: 2 type: Transform - - uid: 31033 + - uid: 31123 components: - rot: -1.5707963267948966 rad pos: -4.5,-87.5 parent: 2 type: Transform - - uid: 31034 + - uid: 31124 components: - rot: -1.5707963267948966 rad pos: -12.5,-87.5 parent: 2 type: Transform - - uid: 31035 + - uid: 31125 components: - rot: 3.141592653589793 rad pos: -13.5,-88.5 parent: 2 type: Transform - - uid: 31036 + - uid: 31126 components: - rot: 3.141592653589793 rad pos: -14.5,-88.5 parent: 2 type: Transform - - uid: 31037 + - uid: 31127 components: - rot: 1.5707963267948966 rad pos: -15.5,-87.5 parent: 2 type: Transform - - uid: 31038 + - uid: 31128 components: - pos: -15.5,-85.5 parent: 2 type: Transform - - uid: 31039 + - uid: 31129 components: - rot: 1.5707963267948966 rad pos: -13.5,-86.5 parent: 2 type: Transform - - uid: 31040 + - uid: 31130 components: - rot: 1.5707963267948966 rad pos: -10.5,-86.5 parent: 2 type: Transform - - uid: 31041 + - uid: 31131 components: - rot: -1.5707963267948966 rad pos: -5.5,-77.5 parent: 2 type: Transform - - uid: 31042 + - uid: 31132 components: - rot: -1.5707963267948966 rad pos: -5.5,-78.5 parent: 2 type: Transform - - uid: 31043 + - uid: 31133 components: - rot: -1.5707963267948966 rad pos: -4.5,-79.5 parent: 2 type: Transform - - uid: 31044 + - uid: 31134 components: - rot: -1.5707963267948966 rad pos: -4.5,-78.5 parent: 2 type: Transform - - uid: 31045 + - uid: 31135 components: - rot: -1.5707963267948966 rad pos: -10.5,-78.5 parent: 2 type: Transform - - uid: 31046 + - uid: 31136 components: - rot: 3.141592653589793 rad pos: -11.5,-78.5 parent: 2 type: Transform - - uid: 31047 + - uid: 31137 components: - rot: 3.141592653589793 rad pos: 28.5,30.5 parent: 2 type: Transform - - uid: 31048 + - uid: 31138 components: - pos: 16.5,37.5 parent: 2 type: Transform - - uid: 31049 + - uid: 31139 components: - rot: 3.141592653589793 rad pos: -55.5,-63.5 parent: 2 type: Transform - - uid: 31050 + - uid: 31140 components: - rot: 3.141592653589793 rad pos: -54.5,-63.5 parent: 2 type: Transform - - uid: 31051 + - uid: 31141 components: - rot: -1.5707963267948966 rad pos: -53.5,-63.5 parent: 2 type: Transform - - uid: 31052 + - uid: 31142 components: - rot: -1.5707963267948966 rad pos: -53.5,-64.5 parent: 2 type: Transform - - uid: 31053 + - uid: 31143 components: - rot: 1.5707963267948966 rad pos: 42.5,5.5 parent: 2 type: Transform - - uid: 31054 + - uid: 31144 components: - rot: 1.5707963267948966 rad pos: 42.5,7.5 parent: 2 type: Transform - - uid: 31055 + - uid: 31145 components: - rot: -1.5707963267948966 rad pos: -23.5,-24.5 @@ -204965,71 +206280,71 @@ entities: type: Transform - proto: WoodblockInstrument entities: - - uid: 31056 + - uid: 31146 components: - pos: -47.491924,-64.51194 parent: 2 type: Transform - proto: WoodDoor entities: - - uid: 31057 + - uid: 31147 components: - pos: -31.5,-5.5 parent: 2 type: Transform - - uid: 31058 + - uid: 31148 components: - pos: -31.5,-7.5 parent: 2 type: Transform - - uid: 31059 + - uid: 31149 components: - pos: -38.5,7.5 parent: 2 type: Transform - - uid: 31060 + - uid: 31150 components: - rot: 3.141592653589793 rad pos: -37.5,7.5 parent: 2 type: Transform - - uid: 31061 + - uid: 31151 components: - rot: 3.141592653589793 rad pos: -29.5,-5.5 parent: 2 type: Transform - - uid: 31062 + - uid: 31152 components: - pos: 41.5,49.5 parent: 2 type: Transform - - uid: 31063 + - uid: 31153 components: - pos: 40.5,51.5 parent: 2 type: Transform - - uid: 31064 + - uid: 31154 components: - pos: -39.5,-95.5 parent: 2 type: Transform - - uid: 31065 + - uid: 31155 components: - pos: -39.5,-96.5 parent: 2 type: Transform - - uid: 31066 + - uid: 31156 components: - pos: 61.5,23.5 parent: 2 type: Transform - - uid: 31067 + - uid: 31157 components: - pos: 63.5,23.5 parent: 2 type: Transform - - uid: 31068 + - uid: 31158 components: - rot: 3.141592653589793 rad pos: -29.5,-7.5 @@ -205037,112 +206352,112 @@ entities: type: Transform - proto: Wrench entities: - - uid: 31069 + - uid: 31159 components: - pos: -65.606735,-34.373695 parent: 2 type: Transform - - uid: 31070 + - uid: 31160 components: - pos: 19.497053,-52.46946 parent: 2 type: Transform - - uid: 31071 + - uid: 31161 components: - pos: 43.41047,-49.384262 parent: 2 type: Transform - - uid: 31072 + - uid: 31162 components: - pos: 40.515266,-53.36736 parent: 2 type: Transform - - uid: 31073 + - uid: 31163 components: - pos: 53.570477,-52.25876 parent: 2 type: Transform - - uid: 31074 + - uid: 31164 components: - pos: -52.48202,-14.116064 parent: 2 type: Transform - - uid: 31075 + - uid: 31165 components: - pos: -43.931065,-77.41935 parent: 2 type: Transform - - uid: 31076 + - uid: 31166 components: - pos: -3.6165767,31.44955 parent: 2 type: Transform - - uid: 31077 + - uid: 31167 components: - pos: -52.52865,13.566981 parent: 2 type: Transform - - uid: 31078 + - uid: 31168 components: - pos: -56.484455,-4.5012527 parent: 2 type: Transform - - uid: 31079 + - uid: 31169 components: - pos: -31.403458,-56.573048 parent: 2 type: Transform - - uid: 31080 + - uid: 31170 components: - pos: 56.276398,42.55694 parent: 2 type: Transform - - uid: 31081 + - uid: 31171 components: - pos: 30.53096,47.374912 parent: 2 type: Transform - - uid: 31082 + - uid: 31172 components: - pos: 63.43439,-33.411366 parent: 2 type: Transform - - uid: 31083 + - uid: 31173 components: - pos: 73.54562,-44.324593 parent: 2 type: Transform - - uid: 31084 + - uid: 31174 components: - rot: 1.5707963267948966 rad pos: -37.345474,18.574602 parent: 2 type: Transform - - uid: 31085 + - uid: 31175 components: - pos: -8.112096,-15.394987 parent: 2 type: Transform - - uid: 31086 + - uid: 31176 components: - pos: -66.48501,-43.492954 parent: 2 type: Transform - proto: YellowOxygenTankFilled entities: - - uid: 31087 + - uid: 31177 components: - pos: 64.41901,29.545698 parent: 2 type: Transform - - uid: 31088 + - uid: 31178 components: - pos: 67.49378,-65.34203 parent: 2 type: Transform - proto: Zipties entities: - - uid: 31089 + - uid: 31179 components: - pos: 22.565756,-47.432816 parent: 2 diff --git a/Resources/Maps/packed.yml b/Resources/Maps/packed.yml index fafe88a3f34..dcb50ff468c 100644 --- a/Resources/Maps/packed.yml +++ b/Resources/Maps/packed.yml @@ -1,88566 +1,88765 @@ -meta: - format: 5 - postmapinit: false -tilemap: - 0: Space - 3: FloorArcadeRed - 15: FloorBar - 17: FloorBlue - 18: FloorBlueCircuit - 22: FloorCarpetOffice - 26: FloorDark - 31: FloorDarkMono - 38: FloorEighties - 41: FloorFreezer - 44: FloorGrass - 48: FloorGreenCircuit - 52: FloorHydro - 54: FloorLaundry - 55: FloorLino - 63: FloorRGlass - 64: FloorReinforced - 66: FloorRockVault - 67: FloorShowroom - 75: FloorSteel - 80: FloorSteelDirty - 82: FloorSteelMini - 87: FloorTechMaint - 88: FloorTechMaint2 - 91: FloorWhite - 95: FloorWhiteMini - 101: FloorWood - 103: Lattice - 104: Plating -entities: -- proto: "" - entities: - - uid: 2 - components: - - type: MetaData - - pos: 0.4375,0.484375 - parent: 126 - type: Transform - - chunks: - -1,-1: - ind: -1,-1 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAaAAAAEsAAABLAAABSwAAAEsAAAJLAAADSwAAAUsAAANLAAACSwAAAksAAABLAAAAaAAAAGcAAAAAAAAAAAAAAGgAAABLAAAASwAAAksAAANLAAAASwAAAEsAAABLAAABSwAAAUsAAAJLAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAANLAAAASwAAAksAAABLAAACSwAAAUsAAANLAAADSwAAAksAAAJoAAAANwAAADcAAAA3AAAAaAAAAGgAAABoAAAAaAAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAADaAAAADcAAAA3AAAANwAAAGgAAAAAAAAAAAAAAGgAAAAfAAADaAAAAAAAAAAAAAAAAAAAAGgAAABLAAACSwAAAGgAAAA3AAAANwAAADcAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAUsAAABoAAAAZQAAA2UAAAFlAAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAABLAAACaAAAAGUAAANlAAAAZQAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAADSwAAARoAAAJlAAADZQAAAWUAAAFlAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAABLAAAAaAAAAEsAAANLAAAASwAAA0sAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAABSwAAA2gAAABLAAAASwAAAEsAAANLAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAUsAAANoAAAASwAAAksAAAJLAAACSwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAABLAAADaAAAAGgAAABoAAAAaAAAAEsAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAADSwAAAEsAAANLAAACSwAAA0sAAAFLAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAUsAAABLAAADSwAAA0sAAANLAAACSwAAAg== - -1,0: - ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAA0sAAANLAAACaAAAAEsAAAJLAAABSwAAAwAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAABLAAACaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAB8AAANoAAAAHwAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAA== - 0,0: - ind: 0,0 - tiles: SwAAAEsAAAJLAAAASwAAA0sAAABLAAABSwAAAEsAAABLAAABSwAAAksAAAJLAAADSwAAAksAAAJLAAADSwAAAmgAAABoAAAAaAAAAEsAAAFLAAABSwAAAEsAAABLAAACSwAAA0sAAAJLAAACSwAAAEsAAABLAAABSwAAAEsAAAEAAAAAAAAAAGgAAABLAAACSwAAAUsAAAJLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABoAAAASwAAAksAAAFLAAADSwAAA2gAAABlAAAAZQAAAmUAAAFlAAABZQAAA2UAAAJoAAAAaAAAAAAAAAAAAAAAaAAAAEsAAAJLAAACSwAAAUsAAANoAAAAZQAAAGUAAANlAAAAZQAAAWUAAAJlAAABaAAAAGgAAAAAAAAAAAAAAGgAAABLAAAASwAAAksAAAFLAAABaAAAAGUAAAFlAAAAZQAAAmUAAAFlAAABZQAAA1gAAABoAAAAAAAAAAAAAABoAAAASwAAAUsAAABLAAAASwAAAGgAAABlAAABZQAAA2UAAANlAAAAZQAAA2gAAABoAAAAaAAAAAAAAAAAAAAAaAAAAEsAAAJLAAADSwAAAEsAAAJoAAAAZQAAA2UAAAFlAAADZQAAAmUAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGgAAABLAAACSwAAAUsAAANLAAABaAAAAGgAAAAaAAAAaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABoAAAASwAAA0sAAAJLAAACSwAAAUsAAAFLAAAASwAAA0sAAABLAAAASwAAA0sAAABLAAADSwAAAQAAAAAAAAAAaAAAAEsAAAJLAAAASwAAAUsAAAFLAAACSwAAAEsAAAFLAAABSwAAAEsAAAFLAAACSwAAA0sAAAAAAAAAAAAAAGgAAABLAAADSwAAAksAAANLAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABoAAAASwAAA0sAAANLAAADSwAAAWgAAAApAAAAQwAAACkAAABDAAAAKQAAAGgAAABlAAADZQAAAAAAAAAAAAAAaAAAAEsAAABLAAABSwAAAUsAAAJoAAAAKQAAAEMAAAApAAAAKQAAAEMAAABoAAAAZQAAAWUAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGUAAABlAAACZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAEsAAAFLAAABSwAAAGgAAABoAAAAaAAAAFgAAABlAAADZQAAAA== - 0,-1: - ind: 0,-1 - tiles: aAAAAGgAAABYAAAAQAAAAEAAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABGgAAABoAAAEaAAABGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAxoAAAMaAAACGgAAABoAAAEaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAABoAAAMaAAABGgAAARoAAAAaAAABGgAAAhoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAGgAAAmgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAxoAAAAaAAACGgAAAhoAAANoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAMaAAACGgAAARoAAAMaAAADaAAAAFcAAABXAAAAaAAAAGgAAABoAAAANAAAADQAAAA0AAAANAAAAEsAAAIaAAADGgAAARoAAAAaAAADGgAAAmgAAABYAAAAaAAAAGgAAABoAAAAWAAAAEsAAANLAAACSwAAAEsAAANoAAAAGgAAAhoAAAAaAAADGgAAAxoAAAFoAAAAGgAAAhoAAABYAAAAaAAAAGgAAAA0AAAASwAAA0sAAAFLAAACaAAAABoAAAEaAAACaAAAAGgAAABoAAAAaAAAABoAAAMaAAABaAAAAGgAAABoAAAANAAAAEsAAAFLAAACSwAAAWgAAAAaAAABGgAAA2gAAABLAAADSwAAARoAAAAaAAAAGgAAAmgAAABYAAAAaAAAAGgAAABLAAACaAAAAGgAAABoAAAAGgAAABoAAANoAAAASwAAA0sAAAFoAAAAaAAAAGgAAABLAAACSwAAAksAAABLAAABSwAAAUsAAANLAAACSwAAAEsAAABLAAAASwAAAksAAABLAAADSwAAAUsAAAJLAAADSwAAAEsAAABLAAACSwAAAEsAAABLAAAASwAAAksAAABLAAABSwAAAEsAAAJLAAACSwAAAEsAAANLAAAASwAAAQ== - -1,-2: - ind: -1,-2 - tiles: AAAAAAAAAAA/AAAAZwAAAD8AAAMAAAAAPwAAA2cAAAA/AAABZwAAAD8AAANnAAAAPwAAAAAAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAD8AAAJnAAAAPwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAaAAAAA== - 0,-2: - ind: 0,-2 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAABSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAADSwAAAEsAAAJnAAAAZwAAAGcAAABoAAAAaAAAAFcAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAA0sAAANLAAABZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAACSwAAA2cAAABnAAAAZwAAAGgAAABoAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAUsAAAFnAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAABLAAACAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABnAAAAaAAAAFcAAABoAAAAaAAAAGgAAAAwAAAAMAAAADAAAABoAAAAaAAAAGgAAABLAAACSwAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAMAAAADAAAAAwAAAAaAAAAGgAAABoAAAAQAAAAEAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAADAAAAAwAAAAMAAAAA== - 0,1: - ind: 0,1 - tiles: AAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAABLAAACSwAAAWgAAABoAAAAaAAAAGgAAABlAAAAZQAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAADSwAAAksAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAA0sAAAJLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAAJLAAAASwAAAFgAAABoAAAAaAAAAGgAAABYAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAANoAAAAaAAAAGgAAABLAAACSwAAAEsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAEsAAABLAAACSwAAAksAAANLAAAASwAAAksAAABLAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAAJLAAADSwAAAksAAAJLAAACSwAAAEsAAABLAAAASwAAAwAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAAASwAAA0sAAANLAAAASwAAAUsAAANLAAACSwAAAEsAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAA0sAAAFLAAACSwAAAksAAABLAAAASwAAAUsAAANLAAABAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAABLAAABSwAAAEsAAAJLAAADSwAAAUsAAABLAAADSwAAAgAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAACSwAAAEsAAAFLAAAASwAAAEsAAAFLAAABaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAAksAAAFLAAACSwAAAksAAANLAAADSwAAA2gAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAAFLAAAASwAAAEsAAAJLAAACSwAAAUsAAABYAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAAUsAAAFoAAAAaAAAAEsAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAAASwAAAksAAABLAAACaAAAAEsAAAFLAAADSwAAA2gAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAEsAAAJLAAAASwAAAWgAAABLAAACSwAAAUsAAAJoAAAAaAAAAA== - 1,0: - ind: 1,0 - tiles: SwAAAUsAAAJLAAAASwAAA0sAAABLAAACSwAAAUsAAAJLAAACSwAAAEsAAABLAAADSwAAAUsAAABLAAAASwAAAksAAABLAAACSwAAAksAAAJLAAAASwAAA0sAAANLAAADSwAAAksAAAFLAAAASwAAAEsAAANLAAABSwAAAUsAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAksAAAJoAAAAGgAAABoAAAAaAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABLAAADaAAAAGgAAAAaAAADGgAAAhoAAAFoAAAANgAAAFsAAANbAAABNgAAAGgAAABoAAAAVwAAAGgAAABbAAADWwAAA1sAAABoAAAAGgAAARoAAAAaAAABaAAAADYAAABbAAACWwAAAjYAAABYAAAAaAAAAFcAAABoAAAAWwAAA1sAAANbAAABaAAAADcAAAA3AAAANwAAAGgAAAA2AAAAWwAAA1sAAAM2AAAAaAAAAGgAAABXAAAAaAAAAFsAAAFbAAAAWwAAA2gAAAA3AAAANwAAADcAAABoAAAANgAAAFsAAANbAAABNgAAAGgAAABoAAAAVwAAAGgAAABbAAABWwAAAlsAAAJoAAAANwAAADcAAAA3AAAASwAAA0sAAABLAAAASwAAAg8AAAJoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAFgAAABoAAAAGgAAAUsAAANLAAACSwAAA0sAAAAPAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAGgAAABLAAADSwAAAEsAAANLAAABSwAAA0sAAAJoAAAASwAAAEsAAANLAAAAaAAAAGgAAABoAAAAaAAAAGUAAAFlAAACSwAAA0sAAAFLAAAASwAAAksAAAFLAAACSwAAAksAAANLAAABSwAAA0sAAAFLAAABSwAAAksAAAFlAAADaAAAAEsAAAFLAAAASwAAA0sAAABLAAABSwAAAUsAAABLAAACSwAAAEsAAAFLAAABSwAAAUsAAAJLAAAAZQAAA2UAAAJLAAADSwAAAksAAANLAAAASwAAAUsAAANoAAAASwAAAUsAAAFLAAAASwAAAEsAAAJLAAAASwAAAQ== - 1,-1: - ind: 1,-1 - tiles: aAAAAGgAAABYAAAAWwAAAUsAAANLAAACSwAAABoAAANoAAAASwAAAUsAAANLAAABSwAAAEsAAAJLAAADSwAAA2gAAABoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAEsAAANLAAABSwAAA2gAAABLAAACSwAAAUsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAWUAAANlAAADGgAAAhoAAABoAAAASwAAAEsAAABLAAABaAAAACkAAAApAAAAKQAAAGgAAABoAAAAaAAAAGUAAABlAAADZQAAAxoAAAAaAAADGgAAAEsAAABLAAACSwAAAGgAAAApAAAAKQAAACkAAABoAAAAaAAAAGgAAABlAAABZQAAA2UAAAEaAAADGgAAAxoAAABLAAAASwAAA0sAAAEaAAABKQAAACkAAAApAAAAaAAAAGgAAABoAAAAZQAAAmUAAANlAAADGgAAARoAAAJoAAAASwAAAUsAAAJLAAADaAAAACkAAAApAAAAKQAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAABSwAAAWgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAUsAAAFoAAAANwAAADcAAAAPAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAANLAAADaAAAADcAAAA3AAAADwAAAhoAAAMaAAAAZQAAAGUAAAJlAAACaAAAAGgAAABoAAAASwAAAUsAAABLAAACSwAAAmgAAAA3AAAANwAAAA8AAAAaAAACGgAAAGUAAABlAAADZQAAA2gAAABoAAAAaAAAAEsAAAFLAAADSwAAAUsAAAFoAAAADwAAAA8AAAAPAAAAGgAAAhoAAAFlAAABZQAAAmUAAAFoAAAAaAAAAGgAAABoAAAASwAAAEsAAAJLAAABaAAAAA8AAAIPAAADDwAAA0sAAAFoAAAAZQAAAWUAAAFlAAABaAAAAGgAAABoAAAAaAAAAEsAAABLAAACSwAAAmgAAAAPAAABDwAAAw8AAAJLAAACaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABLAAACSwAAAUsAAAFoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAACSwAAA0sAAABLAAABSwAAAksAAAFLAAADSwAAAUsAAAFLAAABSwAAAEsAAANLAAADSwAAAQ== - 1,-2: - ind: 1,-2 - tiles: aAAAAEsAAAFLAAADaAAAAEsAAANLAAABSwAAAksAAAJLAAADSwAAA0sAAAFLAAABSwAAAksAAAFLAAACSwAAAGgAAABLAAAASwAAAWgAAABLAAACSwAAAEsAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAA0sAAAJoAAAASwAAAEsAAABoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABLAAAASwAAAksAAAJoAAAAaAAAAGgAAABLAAADSwAAAUsAAANLAAACSwAAAksAAAFLAAAASwAAAEsAAAJLAAACSwAAAUsAAAJLAAACSwAAAmgAAABoAAAAaAAAAEsAAABLAAADSwAAA0sAAANLAAACSwAAAksAAAJLAAAAaAAAAEsAAAFLAAADSwAAA2gAAABoAAAAaAAAAGgAAABLAAABSwAAAksAAANLAAADSwAAAUsAAAFLAAABSwAAA2gAAABoAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAANLAAADSwAAA0sAAABLAAAASwAAA2gAAABoAAAASwAAAUsAAABLAAACaAAAAGgAAABoAAAAaAAAAEsAAAFLAAAASwAAA0sAAAFLAAACSwAAAEsAAABoAAAASwAAA0sAAAJLAAACSwAAA0sAAAJoAAAAaAAAAGgAAABLAAAASwAAAUsAAABLAAACSwAAA0sAAAJLAAACaAAAAEsAAAFLAAAASwAAAksAAANLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAJLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAEsAAAJLAAACSwAAAlgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAksAAAJoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAABSwAAABoAAAJoAAAASwAAAEsAAANLAAAAaAAAAGgAAABoAAAAaAAAADAAAABoAAAAaAAAAGgAAABLAAABSwAAAEsAAAMaAAAAaAAAAEsAAABLAAACSwAAA2gAAABoAAAAaAAAAGgAAAAwAAAAWAAAABoAAANoAAAASwAAAEsAAAJLAAACGgAAAhoAAABLAAADSwAAA0sAAAFoAAAASwAAAksAAAJLAAADMAAAAGgAAAAaAAAAaAAAAEsAAAJLAAABSwAAAhoAAANoAAAASwAAA0sAAAFLAAAASwAAAksAAAFLAAACSwAAAA== - 0,-3: - ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAASAAAAEgAAABIAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAEgAAAEAAAABAAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAABIAAABAAAAAQAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAABoAAAAGgAAAhoAAAIaAAABGgAAAGgAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAaAAAABoAAAAaAAADGgAAAxoAAAFoAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAGgAAAAaAAACGgAAAxoAAAEaAAADSwAAAksAAAFoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABnAAAAZwAAAGcAAABoAAAAGgAAAxoAAAAaAAADGgAAA2gAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== - 1,-3: - ind: 1,-3 - tiles: ZwAAAGgAAABnAAAAZwAAAGcAAABoAAAAZwAAAGcAAABnAAAAaAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAhoAAAEaAAABGgAAAGgAAABoAAAAaAAAAEsAAAJLAAAASwAAAksAAAFLAAAAaAAAAGgAAABoAAAAaAAAABoAAAAaAAAAaAAAABoAAAJoAAAAaAAAAGgAAABLAAADaAAAAGgAAABoAAAASwAAA2gAAABoAAAAaAAAAGgAAAAaAAABGgAAAWgAAAAaAAAASwAAAEsAAANoAAAASwAAARoAAABoAAAAGgAAA0sAAABoAAAASwAAAksAAAJoAAAAGgAAAxoAAAFoAAAAGgAAAksAAAJLAAAASwAAAksAAAIaAAABaAAAABoAAAJLAAACaAAAAEsAAANLAAAAaAAAABoAAAAaAAACaAAAABoAAAJLAAADSwAAAUsAAABLAAADGgAAAWgAAAAaAAABSwAAAUsAAAJLAAAASwAAAGgAAAAaAAABGgAAAWgAAAAaAAACSwAAAUsAAAJoAAAASwAAAksAAAFLAAACSwAAA0sAAANoAAAASwAAAEsAAABoAAAAGgAAABoAAAEaAAAAGgAAAmgAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAJLAAADSwAAA0sAAANLAAAASwAAAksAAAJLAAAASwAAA0sAAAJLAAACSwAAAEsAAAJLAAAASwAAAksAAANLAAADSwAAAEsAAAJLAAABSwAAAUsAAAFLAAABSwAAAEsAAANLAAABSwAAA0sAAABLAAACSwAAAUsAAANLAAAASwAAAksAAAJLAAACSwAAAUsAAANLAAAASwAAAksAAAJoAAAAaAAAAGgAAABLAAADaAAAAGgAAABoAAAASwAAAksAAANLAAADSwAAAEsAAANoAAAAaAAAAEsAAANoAAAAaAAAAEsAAAJLAAABSwAAAEsAAANLAAABaAAAAGgAAABLAAACaAAAAEsAAANLAAADaAAAAEsAAABLAAADSwAAAksAAAFLAAAASwAAAksAAAFLAAACSwAAAksAAAJLAAADSwAAAA== - 2,-2: - ind: 2,-2 - tiles: SwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAaAAAAEAAAABAAAAAQAAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABoAAAAQAAAAEAAAABAAAAAaAAAAGgAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGgAAABAAAAAQAAAAEAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAaAAAAEAAAABAAAAAQAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABoAAAAQAAAAEAAAABAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAWgAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAABXAAAAaAAAAGgAAABoAAAAaAAAAFcAAAAaAAADGgAAAWgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAA== - 2,-3: - ind: 2,-3 - tiles: aAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABAAAAAQAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQAAAAEAAAABoAAAAaAAAAEIAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEAAAABAAAAAGgAAAmgAAABCAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABAAAAAQAAAABoAAAJoAAAAQgAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAGcAAABnAAAAGgAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAACSwAAAUsAAAJLAAADSwAAAUsAAANLAAADSwAAAGgAAAAaAAAAWAAAAGgAAABoAAAAaAAAAFgAAABLAAABSwAAAEsAAAFLAAACSwAAAksAAANLAAABSwAAAEsAAAFoAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAJLAAACSwAAAkIAAABCAAAAQgAAAEIAAABCAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABYAAAAWAAAAGgAAABCAAAAQgAAAEIAAABCAAAAQgAAAGgAAABLAAACaAAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAANoAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABoAAAAQAAAAEAAAABAAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAA== - 1,1: - ind: 1,1 - tiles: ZQAAAGgAAABSAAADaAAAAGgAAAAaAAACaAAAAGgAAABoAAAASwAAAEsAAANLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAABZQAAAGUAAABoAAAASwAAAEsAAAJLAAABSwAAAGgAAABLAAACSwAAAmgAAABoAAAAaAAAAGgAAABYAAAAZQAAAmUAAANlAAABaAAAAEsAAAFLAAADSwAAAEsAAAJoAAAASwAAA0sAAAJLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAFLAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAABSwAAA0sAAABLAAADSwAAAksAAABLAAAASwAAAUsAAAFLAAABSwAAAWgAAABLAAABSwAAAksAAANoAAAASwAAAksAAANLAAADSwAAA0sAAAJLAAADSwAAAUsAAAFLAAAASwAAA0sAAAJoAAAASwAAAUsAAAJoAAAASwAAAUsAAANLAAAASwAAAksAAANLAAACSwAAAUsAAABLAAABSwAAAksAAAFLAAABaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAA0sAAANLAAACaAAAAEsAAAFLAAABSwAAA0sAAAJLAAACSwAAA0sAAAJLAAABSwAAAUsAAANoAAAASwAAA0sAAAJLAAABSwAAAGgAAABLAAAASwAAA0sAAANLAAABSwAAAksAAAFLAAADSwAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAFLAAABSwAAAEsAAANLAAACSwAAAxoAAAIaAAADGgAAAGgAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAAASwAAAGgAAAAaAAABGgAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABLAAAASwAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAFLAAADaAAAABoAAAMaAAAAGgAAAGgAAABlAAAAZQAAA2UAAAFlAAADZQAAAGgAAABlAAABZQAAA0sAAABLAAACSwAAAWgAAAAaAAAAGgAAAhoAAANoAAAAZQAAAmUAAABlAAACZQAAAmUAAABoAAAAZQAAAGUAAAFLAAADSwAAA0sAAAFoAAAAGgAAAxoAAAIaAAAAaAAAAGUAAAJlAAACZQAAAmUAAAFlAAABZQAAAmUAAANlAAAASwAAAksAAAJLAAABaAAAAGgAAABoAAAAaAAAAA== - 2,0: - ind: 2,0 - tiles: SwAAAksAAANLAAADSwAAA0sAAABLAAADSwAAAUsAAANLAAADSwAAAksAAAFLAAABSwAAAEsAAAFLAAADSwAAAksAAAFLAAADSwAAAEsAAANLAAADSwAAAksAAAFLAAAASwAAAUsAAAJLAAAAaAAAAGgAAABLAAADaAAAAGgAAAAaAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAACSwAAAWgAAABbAAAAWwAAAlsAAAFbAAACaAAAAGgAAAA3AAAANwAAADcAAABoAAAANwAAAGgAAABLAAADSwAAAUsAAAJoAAAAWwAAA1sAAABbAAACWwAAAhoAAABoAAAAGgAAAksAAAAaAAACaAAAADcAAABoAAAASwAAA0sAAAFLAAAAaAAAAFsAAANbAAADWwAAAFsAAAAaAAABaAAAABoAAAMaAAACGgAAAxoAAAAaAAADaAAAAEsAAANLAAABSwAAAWgAAABoAAAAaAAAAGgAAABoAAAANwAAABoAAAIaAAABGgAAABoAAAEaAAACGgAAAmgAAABLAAABSwAAA0sAAABoAAAAaAAAAGgAAABoAAAAaAAAADcAAABoAAAAGgAAAhoAAAEaAAACGgAAAxoAAAMaAAADSwAAAUsAAAJLAAADWAAAAGgAAABXAAAAVwAAAFcAAAA3AAAAaAAAABoAAAAaAAAAGgAAABoAAAMaAAABaAAAAEsAAAJLAAABSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAGgAAAmgAAAAaAAABGgAAAxoAAAIaAAADGgAAAWgAAABLAAAASwAAAEsAAANoAAAASwAAA0sAAAMwAAAAWwAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAANLAAADaAAAADAAAAAwAAAAMAAAAFsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAEsAAANLAAABSwAAAWgAAABLAAACSwAAAzAAAABbAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAUsAAAFoAAAASwAAAksAAABoAAAAWwAAAksAAANLAAAASwAAA0sAAAJLAAACSwAAAEsAAAFLAAAASwAAAksAAANLAAADSwAAAksAAABLAAADSwAAAEsAAABLAAABSwAAAksAAAFLAAAASwAAAksAAANLAAADSwAAAUsAAAJLAAACSwAAAUsAAANLAAABSwAAAksAAAJLAAADSwAAA0sAAAFLAAADSwAAAksAAABLAAADSwAAA0sAAABLAAADSwAAAUsAAABLAAADSwAAAUsAAAFLAAACSwAAAQ== - 2,-1: - ind: 2,-1 - tiles: SwAAA0sAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAGgAAAmgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAEsAAAJLAAAAaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAGgAAAxoAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAAASwAAAEsAAAJLAAACZQAAAGUAAAJlAAADWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAksAAANLAAAASwAAAGUAAABlAAABZQAAAGgAAABYAAAAaAAAAGgAAABoAAAAGgAAAxoAAAMaAAACSwAAA0sAAANLAAAASwAAAksAAAFlAAAAZQAAAmUAAAJoAAAASwAAA0sAAABLAAAAaAAAACwAAAAsAAAAaAAAAEsAAABLAAABSwAAAEsAAABLAAAAZQAAAmUAAAJlAAAAaAAAAEsAAANLAAAASwAAA2gAAAAsAAAALAAAAGgAAAAaAAADGgAAAhoAAAAaAAAAaAAAABoAAAEaAAADaAAAAGgAAABLAAAAaAAAAGgAAABoAAAALAAAACwAAAAPAAABDwAAAg8AAAIPAAACDwAAAxoAAAAaAAACGgAAABoAAAFLAAAASwAAAksAAANLAAADSwAAAEsAAAFLAAAADwAAAQ8AAAAPAAADDwAAAw8AAAMaAAACGgAAARoAAAMaAAAASwAAAjQAAAA0AAAANAAAADQAAAA0AAAASwAAAg8AAAEPAAADDwAAAQ8AAAMPAAACGgAAAhoAAAAaAAAAaAAAAEsAAAM0AAAASwAAAEsAAAJLAAAANAAAAEsAAAAPAAACDwAAAA8AAAMPAAAADwAAAhoAAAAaAAADGgAAAWgAAABLAAAANAAAABoAAAAaAAAAGgAAADQAAABLAAABDwAAAw8AAAEPAAADDwAAAw8AAAEaAAAAGgAAAxoAAAMaAAADSwAAAzQAAAA0AAAANAAAADQAAAA0AAAASwAAAA8AAAIPAAAADwAAAQ8AAAIPAAAAaAAAABoAAAEaAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAANAAAAGgAAABoAAAASwAAAWgAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAksAAAFLAAABSwAAAEsAAAJLAAAASwAAAksAAAFLAAAASwAAAksAAAJLAAACSwAAAUsAAAFLAAAASwAAAUsAAAJLAAACSwAAAUsAAABLAAAASwAAAA== - 1,-4: - ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAaAAAAGcAAABnAAAAZwAAAGgAAABnAAAAZwAAAGcAAABoAAAAZwAAAGcAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABnAAAAZwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGcAAABnAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAA== - 2,-4: - ind: 2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABoAAAAZwAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABAAAAAQAAAAA== - 0,-4: - ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAA== - -1,-3: - ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAD8AAAFnAAAAPwAAAmcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAJnAAAAPwAAAwAAAAA/AAABZwAAAD8AAAMAAAAAPwAAAWcAAAA/AAABAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAABZwAAAD8AAAFnAAAAPwAAAGcAAAA/AAADAAAAAD8AAABnAAAAPwAAAwAAAAAAAAAAAAAAAGcAAABnAAAAPwAAA2cAAAA/AAABZwAAAD8AAABnAAAAPwAAA2cAAAA/AAAAZwAAAD8AAAMAAAAAAAAAAAAAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGcAAAAAAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGgAAABnAAAAZwAAAD8AAAFnAAAAPwAAAmcAAAA/AAADZwAAAD8AAAJnAAAAPwAAAGcAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAADZwAAAD8AAABnAAAAPwAAAWcAAAA/AAABAAAAAD8AAAJnAAAAPwAAAwAAAABoAAAAaAAAAA== - -2,-3: - ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAA== - 3,-1: - ind: 3,-1 - tiles: aAAAAAMAAABoAAAAaAAAAGgAAABoAAAAUAAAAFAAAABQAAAAUAAAAGgAAABlAAACZQAAA2UAAABlAAACZQAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABQAAAAUAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAUAAAAFAAAABQAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAANbAAAAWwAAAlsAAAFbAAAAaAAAAFsAAABbAAACWwAAA1sAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAABWwAAAFsAAAFbAAADWwAAAWgAAABbAAABWwAAAlsAAANbAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAA1sAAABbAAABWwAAAVsAAANoAAAAWwAAAlsAAANbAAACWwAAA2gAAABbAAAAWwAAAlsAAAFbAAACaAAAAGgAAABoAAAAWwAAAmgAAABoAAAAaAAAAGgAAABbAAAAaAAAAGgAAABoAAAAWwAAAFsAAABbAAACWwAAAlsAAABoAAAAWwAAAVsAAAFbAAACaAAAAFsAAAJbAAACWwAAAlsAAAJoAAAAaAAAAFsAAAFbAAACWwAAA1sAAABbAAABWwAAAFsAAABbAAABWwAAAFsAAAFbAAABWwAAAlsAAAJbAAACaAAAAGgAAABbAAADWwAAAVsAAAFbAAABWwAAAVsAAABbAAABWwAAAlsAAAJbAAABWwAAAlsAAAJbAAACWwAAAUMAAABoAAAAWwAAAFsAAAFbAAABWwAAA1sAAANbAAACWwAAAFsAAAJbAAABaAAAAFsAAAJbAAACWwAAAVsAAANoAAAAaAAAAGgAAABbAAABaAAAAFsAAAJbAAADaAAAAFsAAAJbAAABWwAAAGgAAABbAAADWwAAA1sAAAJbAAABaAAAAGgAAABbAAADWwAAAWgAAABoAAAAaAAAAGgAAABbAAABWwAAAFsAAABbAAADWwAAAlsAAABbAAACWwAAAmgAAABbAAACWwAAA1sAAANbAAACWwAAA1sAAANbAAACWwAAAVsAAAJLAAABSwAAAUsAAABLAAADSwAAAVsAAAFoAAAAWwAAAVsAAABbAAABWwAAAFsAAANoAAAAWwAAAlsAAAFbAAABSwAAA0sAAAFLAAABSwAAAksAAAFbAAACaAAAAA== - 3,-2: - ind: 3,-2 - tiles: aAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAGgAAABoAAAAaAAAAAMAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABlAAABZQAAA2UAAANoAAAAZQAAAA== - 0,2: - ind: 0,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAA0sAAAFLAAABSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABLAAADSwAAAEsAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAASwAAAEsAAAFLAAADAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAaAAAABoAAAIaAAACGgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAAAaAAACGgAAAxoAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAGgAAABoAAAIaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAABoAAAIaAAACGgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAA== - 1,2: - ind: 1,2 - tiles: aAAAAGUAAAFlAAADZQAAAWUAAAJlAAACaAAAAGUAAABlAAABSwAAAksAAAJLAAADWAAAAGgAAABoAAAAaAAAAGgAAABlAAAAZQAAAmUAAAJlAAABZQAAA2gAAABlAAADZQAAAksAAANLAAABSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAUsAAAFLAAADaAAAADAAAAAwAAAAaAAAAEsAAANLAAABSwAAA0sAAAJLAAACSwAAAksAAAJLAAABSwAAA0sAAANLAAADSwAAAWgAAAAaAAAAGgAAAEsAAAJLAAADSwAAAUsAAAJLAAACSwAAAEsAAANLAAAASwAAA0sAAAJLAAADSwAAAUsAAAIaAAACGgAAAhoAAAJoAAAASwAAAEsAAANLAAAASwAAAksAAABLAAADSwAAAUsAAAJLAAAASwAAAEsAAANLAAADaAAAABIAAAASAAAAaAAAAGgAAAAaAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAJoAAAAGgAAAGgAAABoAAAAaAAAAGgAAAAaAAACGgAAAhoAAAJoAAAANwAAADcAAAA3AAAANwAAAGgAAAAaAAAAGgAAAxoAAABoAAAAGgAAAWUAAAJoAAAAGgAAARoAAAIaAAABaAAAADcAAAA3AAAANwAAADcAAABoAAAAGgAAAxoAAAAaAAABaAAAABoAAABlAAAAaAAAABoAAAIaAAAAGgAAAGgAAAA3AAAANwAAADcAAAA3AAAAGgAAAxoAAAMaAAADGgAAA2gAAAAaAAABZQAAAmgAAABoAAAAMAAAAGgAAABoAAAANwAAADcAAAA3AAAANwAAAGgAAAAaAAADGgAAABoAAANoAAAAGgAAA2UAAAEAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAGgAAAWgAAABoAAAAGgAAAWgAAAAaAAADGgAAARoAAAFoAAAAAAAAAAAAAABoAAAAGgAAAhoAAAEaAAACGgAAARoAAAAaAAADGgAAABoAAAIaAAADGgAAABoAAAAaAAABaAAAAAAAAAAAAAAAaAAAABoAAAIaAAAAGgAAAxoAAAMaAAAAGgAAAxoAAAIaAAACGgAAAhoAAAIaAAACGgAAAxoAAAIAAAAAAAAAAGgAAAAaAAAAGgAAARoAAAIaAAABGgAAABoAAAIaAAACGgAAABoAAAAaAAADGgAAAxoAAAIaAAADZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAGgAAAhoAAAEaAAAAGgAAARoAAAEaAAAAGgAAABoAAAAaAAACGgAAAg== - 2,1: - ind: 2,1 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAADcAAABoAAAAaAAAAEsAAABLAAACSwAAAksAAABLAAAASwAAAEsAAANLAAADSwAAAksAAAJLAAACaAAAADcAAAA3AAAANwAAAGgAAABLAAABSwAAAEsAAANLAAACSwAAAEsAAAJLAAADSwAAAksAAAJLAAAASwAAAzcAAAA3AAAANwAAADcAAABoAAAASwAAAUsAAAJLAAABSwAAAEsAAAJLAAADSwAAAEsAAABLAAADSwAAAksAAAFoAAAANwAAADcAAAA3AAAAaAAAAEsAAABLAAABSwAAAUsAAAFLAAAASwAAA0sAAABLAAABaAAAAGgAAABoAAAAaAAAADcAAAA3AAAANwAAAGgAAABLAAABaAAAAFgAAABLAAABSwAAAksAAABLAAADSwAAAmgAAABLAAACSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAJLAAADSwAAAksAAAMaAAAAGgAAABoAAAIaAAACGgAAAGgAAAAaAAABGgAAAhoAAABoAAAAaAAAAEsAAABLAAABSwAAA0sAAAFLAAABaAAAABoAAAEaAAADGgAAARoAAAEaAAABGgAAAxoAAAAaAAACaAAAAGgAAABLAAABSwAAA0sAAANLAAACSwAAAmgAAAAaAAACGgAAARoAAAIaAAADaAAAABoAAAMaAAACGgAAA2gAAABoAAAAGgAAAEsAAANLAAACSwAAAUsAAABoAAAAaAAAABoAAAIaAAACaAAAAGgAAAAaAAACGgAAABoAAAJoAAAAaAAAABoAAAFLAAACSwAAAksAAAJLAAADaAAAAEAAAAAaAAACGgAAAEAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAksAAAFLAAABSwAAAWgAAABAAAAAGgAAABoAAANAAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAASwAAA0sAAAFLAAADSwAAA0sAAABoAAAAQAAAAEAAAABAAAAAQAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAEsAAAFLAAABSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABLAAAASwAAAEsAAAFLAAACSwAAA0sAAAJLAAACSwAAAlAAAABQAAAAaAAAAGcAAABoAAAAVwAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAEsAAABLAAABaAAAAFAAAABLAAAAUAAAAGgAAABnAAAAaAAAAFcAAABoAAAAaAAAAA== - 2,2: - ind: 2,2 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFQAAAAUAAAAGgAAABnAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAUAAAAFAAAABLAAABSwAAAVAAAABoAAAAZwAAAGgAAABXAAAAaAAAAGgAAAAwAAAAaAAAAGgAAABoAAAAUAAAAEsAAANQAAAASwAAAVAAAABQAAAAaAAAAGcAAABoAAAAVwAAAGgAAABoAAAAGgAAA2gAAABoAAAAaAAAAFAAAABLAAABSwAAA1AAAABDAAAAQwAAAGgAAABnAAAAaAAAAFcAAABoAAAAaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAUAAAAFAAAABQAAAAaAAAAEMAAABoAAAAZwAAAGgAAABXAAAAaAAAAGgAAAASAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABDAAAAaAAAAGcAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGUAAABlAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAaAAAAFcAAABoAAAAaAAAAGgAAABlAAACZQAAA2UAAAFlAAABZQAAAWUAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAZQAAAWUAAABlAAAAaAAAAGUAAAJlAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAAAAAAGUAAABlAAACZQAAAmgAAABlAAACZQAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABlAAACZQAAA2UAAANoAAAAGgAAAGUAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAAAAAAAAGgAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAGgAAABoAAAAVwAAAGgAAAAAAAAAAAAAABoAAAAaAAAAGgAAARoAAANoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAAAaAAABGgAAAxoAAAMaAAABaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAGgAAA2gAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== - 1,3: - ind: 1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAGgAAABoAAAMaAAACGgAAAhoAAAMaAAADGgAAAxoAAAIaAAABGgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,3: - ind: 2,3 - tiles: GgAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 4,-1: - ind: 4,-1 - tiles: aAAAAGUAAAJlAAADZQAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAACZQAAAmUAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAA2UAAAJlAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABDAAAAQwAAAEMAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQwAAAEMAAABDAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEMAAABDAAAAQwAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABDAAAAQwAAAEMAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAaAAAAFsAAAFbAAABaAAAAGgAAABoAAAAaAAAAEMAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAADWwAAA1sAAAJbAAAAQwAAAEMAAABDAAAAQwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAlsAAABbAAABWwAAAkMAAABDAAAAQwAAAEMAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAAJbAAACWwAAAlsAAAFDAAAAQwAAAEMAAABDAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABbAAABWwAAAlsAAABbAAABQwAAAEMAAABDAAAAQwAAAGgAAAAaAAACGgAAAhoAAAIaAAAAGgAAABoAAANoAAAAWwAAAVsAAABbAAADWwAAAmgAAABoAAAAaAAAAGgAAABoAAAAGgAAARoAAAMaAAAAGgAAAxoAAAMaAAAAaAAAAGgAAABbAAACaAAAAGgAAAAaAAACGgAAABoAAAAaAAADaAAAABoAAAMaAAABGgAAAhoAAAIaAAAAGgAAAxoAAAFoAAAAWwAAAVcAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAEaAAABGgAAABoAAAMaAAAAaAAAAFsAAAFXAAAAaAAAAA== - 4,-2: - ind: 4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGUAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAAJlAAADZQAAAWgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAVwAAAFcAAABoAAAAVwAAAA== - 3,0: - ind: 3,0 - tiles: WwAAAVsAAAJbAAACWwAAA1sAAAFbAAACWwAAAFsAAAFbAAABSwAAAEsAAABLAAADSwAAAksAAABbAAABWwAAAGgAAABbAAACWwAAAFsAAABoAAAAaAAAAFsAAANbAAADWwAAAlsAAAJbAAADWwAAAlsAAAJbAAABWwAAAlsAAAJoAAAAWwAAAFsAAABbAAABWwAAAVsAAANbAAAAWwAAA1sAAABbAAACWwAAA1sAAAFbAAADWwAAAlsAAABbAAADWwAAA1sAAAJbAAACWwAAA1sAAAFbAAADWwAAA1sAAANbAAADWwAAAVsAAABbAAAAWwAAAVsAAANbAAAAWwAAAWgAAABbAAACWwAAAFsAAAJbAAACWwAAAmgAAABoAAAAWAAAAGgAAABoAAAAWwAAAlsAAANbAAABWwAAAFsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFAAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAFAAAABQAAAAUAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAARoAAAEaAAADSwAAA0sAAANLAAACSwAAAWgAAABbAAACWwAAAWgAAABbAAACWwAAAlsAAAFbAAABWwAAAxoAAAAaAAAAGgAAAksAAANLAAABSwAAA0sAAANoAAAAWwAAAksAAAFoAAAAWwAAAVsAAAJbAAADWwAAA1sAAANbAAABWwAAAFsAAAJbAAADWwAAA1sAAAFLAAADaAAAAFsAAAJLAAADaAAAAFsAAANbAAAAWwAAA1sAAAJbAAACWwAAA1sAAANbAAACWwAAAlsAAAFbAAADWwAAAWgAAABbAAACSwAAA2gAAABbAAADWwAAAFsAAAFbAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAA2gAAABoAAAAWwAAAlsAAANoAAAAaAAAAGgAAABLAAACaAAAAGgAAABXAAAAVwAAAFcAAABoAAAASwAAAVsAAAFbAAABWwAAAFsAAAFbAAABWwAAAFsAAAJbAAABWwAAAlsAAABbAAADWwAAA1sAAAFbAAAAWwAAA0sAAANbAAAAWwAAAVsAAAJbAAADWwAAAFsAAABbAAACWwAAAlsAAAFbAAACaAAAAFcAAABXAAAAVwAAAGgAAABLAAAAWwAAAFsAAABbAAABWwAAAVsAAANbAAADWwAAAFsAAABbAAAAWwAAAw== - 4,0: - ind: 4,0 - tiles: WwAAAlsAAABbAAADWwAAAVsAAANbAAACaAAAAGgAAAAaAAAAaAAAAGgAAABoAAAAaAAAAFsAAAFoAAAAaAAAAFsAAAJbAAAAWwAAAFsAAANbAAADWwAAAVsAAAJbAAAAWwAAA1sAAABbAAAAWwAAAlsAAAFbAAADWwAAAlsAAANbAAACWwAAA1sAAAFbAAABWwAAAFsAAAFbAAAAWwAAAlsAAABbAAADWwAAAFsAAABbAAACWwAAA1sAAAFbAAAAWwAAA1sAAABbAAADWwAAAFsAAAFoAAAAaAAAAFsAAANoAAAAaAAAAGgAAABoAAAAWwAAAFsAAABbAAADaAAAAFsAAABbAAAAWwAAA1sAAABbAAAAaAAAAFsAAAJbAAAAWwAAAlsAAAFbAAABaAAAAFsAAABbAAAAWwAAAFsAAAFoAAAAaAAAAGgAAABoAAAAWwAAAmgAAABbAAACWwAAAVsAAANbAAADWwAAAGgAAABbAAACWwAAAFsAAANbAAAAaAAAAGgAAABoAAAAaAAAAFsAAABoAAAAWwAAA1sAAAJbAAAAWwAAA1sAAAFoAAAAaAAAAGgAAABoAAAAWwAAAWgAAABoAAAAaAAAAGgAAABYAAAAaAAAAFsAAANbAAAAWwAAA1sAAAFbAAAAWwAAAksAAAJSAAADUgAAAlsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAACWwAAAVsAAAJbAAABWwAAA1sAAABoAAAAUgAAAlIAAAJLAAABaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAFIAAAJSAAACSwAAAWgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABfAAADXwAAAEsAAABoAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAAFoAAAASwAAAksAAAJLAAADGgAAAxoAAAEaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAADaAAAABoAAAIaAAABGgAAAxoAAAAaAAABGgAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAWwAAAFsAAAAaAAABGgAAABoAAAAaAAAAGgAAABoAAAFoAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAA== - 5,0: - ind: 5,0 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAFsAAAFbAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABbAAAAWwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAWAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAFcAAABoAAAAaAAAAGgAAABoAAAAZQAAAmgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABXAAAAaAAAAGgAAABoAAAAaAAAAGUAAAFoAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAFcAAABoAAAAaAAAAGgAAABoAAAAZQAAAGUAAAJlAAABAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABXAAAAaAAAAGgAAABoAAAAZQAAAGgAAABlAAABaAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGUAAAFoAAAAZQAAA2gAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 3,1: - ind: 3,1 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAAFbAAADWwAAAWgAAABbAAAAWwAAAWgAAABbAAABWwAAAxIAAAAaAAADEgAAAFsAAABbAAADWwAAA2gAAABbAAABWwAAA1sAAABoAAAAaAAAAGgAAABLAAABWwAAAlsAAAASAAAAGgAAABIAAABbAAADWwAAAVsAAANbAAADWwAAAVsAAAJbAAAAaAAAAGgAAABoAAAAaAAAAFsAAANbAAAAWwAAAlsAAABbAAABWwAAAlsAAANbAAABaAAAAFsAAABbAAABWwAAAmgAAABoAAAAaAAAAGgAAABbAAAAWwAAAlsAAABbAAAAWwAAAVsAAABbAAACWwAAAGgAAABbAAACWwAAAFsAAAFoAAAAaAAAAGgAAABYAAAAWwAAAVsAAAJbAAAAEgAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAFsAAAFbAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAlsAAABbAAABWwAAA1sAAABbAAADWwAAAGgAAABbAAADWwAAAmgAAAASAAAAEgAAABIAAABoAAAAWwAAA1sAAABbAAAAWwAAAFsAAANbAAACWwAAAVsAAANbAAACWwAAAlsAAAJoAAAAGgAAAxoAAAMaAAAAGgAAA1sAAAJbAAACWwAAAlsAAAFbAAAAWwAAA1sAAANbAAACWwAAA1sAAANbAAADaAAAABIAAAASAAAAEgAAAGgAAABbAAADWwAAAVsAAABbAAAAWwAAA1sAAANbAAAAWwAAAWgAAABbAAABWwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAA2gAAABoAAAAaAAAAGgAAABoAAAAGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAaAAAABoAAANoAAAAZwAAAAAAAAAAAAAAaAAAAEAAAABAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABAAAAAQAAAAAAAAAAAAAAAAAAAAGgAAAAaAAABGgAAARoAAAMaAAAAGgAAAhoAAAIaAAABGgAAAhoAAANoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABoAAAAGgAAARoAAAMaAAABGgAAARoAAAAaAAAAGgAAAhoAAAEaAAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAABoAAAIaAAABGgAAABoAAAMaAAABGgAAAhoAAAEaAAACGgAAA2gAAAAAAAAAAAAAAA== - 3,3: - ind: 3,3 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 3,2: - ind: 3,2 - tiles: AAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAARAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAaAAACGgAAAhoAAAIaAAABGgAAABoAAAEaAAADGgAAARoAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAGgAAAhoAAAEaAAAAGgAAARoAAAEaAAABGgAAAxoAAAEaAAABaAAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAABoAAAIaAAABGgAAARIAAAAaAAAAaAAAABoAAAIaAAABGgAAA2gAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAaAAABGgAAABoAAAMaAAABaAAAABoAAAAaAAADGgAAABoAAAJoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAABoAAAAaAAABaAAAAGgAAABoAAAAGgAAAhoAAAFoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAEaAAABGgAAABoAAAJoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABXAAAAVwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== - 4,1: - ind: 4,1 - tiles: WwAAAWgAAABLAAABSwAAAksAAAMaAAADGgAAABoAAANoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQAAAAEAAAABAAAAAQAAAAGgAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAEAAAABAAAAAQAAAAEAAAABoAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAWwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEAAAABoAAAAaAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAFsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABbAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAWwAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAaAAAAGgAAABoAAAAaAAAAGUAAAFoAAAAZQAAA2gAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAGUAAAFoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAA2UAAANoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGUAAAJoAAAAZQAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABXAAAAaAAAAGgAAABoAAAAZQAAAGUAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 4,2: - ind: 4,2 - tiles: AAAAAGgAAABXAAAAaAAAAGgAAABlAAABZQAAAWgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAVwAAAGgAAABoAAAAZQAAA2gAAABlAAABaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFcAAABoAAAAaAAAAGgAAABlAAAAZQAAAmgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABlAAACaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFcAAABoAAAAaAAAAGUAAAFoAAAAZQAAAmgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABoAAAAVwAAAGgAAABoAAAAZQAAAWUAAAFoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFcAAABoAAAAaAAAAGgAAABlAAADZQAAAWgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAFnAAAAPwAAAgAAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAZwAAAD8AAAIAAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAPwAAA2cAAAA/AAACAAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAD8AAABnAAAAPwAAAA== - 4,3: - ind: 4,3 - tiles: aAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAFnAAAAPwAAA2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAZwAAAD8AAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 5,-1: - ind: 5,-1 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABbAAABWwAAAVsAAAFoAAAAAAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAFsAAANbAAADaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAFsAAABbAAADWwAAAmgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABbAAAAWwAAAVsAAAFoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAVsAAANbAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAFsAAABbAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABbAAACWwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAWwAAA1sAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAA== - 5,-2: - ind: 5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAD8AAAEAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAD8AAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 5,2: - ind: 5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAmcAAAA/AAACZwAAAGcAAABnAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAANnAAAAPwAAAgAAAAA/AAABZwAAAD8AAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAABZwAAAD8AAANnAAAAPwAAAmcAAAA/AAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAA2cAAAA/AAABZwAAAD8AAANnAAAAPwAAA2cAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAANnAAAAPwAAAQAAAAA/AAABZwAAAD8AAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAA== - 5,3: - ind: 5,3 - tiles: ZwAAAD8AAAFnAAAAPwAAAmcAAAA/AAADZwAAAD8AAAMAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAA/AAAAZwAAAD8AAAEAAAAAPwAAAWcAAAA/AAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAPwAAAWcAAAA/AAADZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 3,-3: - ind: 3,-3 - tiles: QAAAAEAAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 6,-2: - ind: 6,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAACYAAAAmAAAAJgAAAGgAAAAAAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAmAAAAJgAAACYAAABoAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABoAAAAJgAAACYAAAAmAAAAaAAAAAAAAABnAAAAaAAAAD8AAAE/AAACPwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAACYAAAAmAAAAJgAAAGgAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAAAWwAAAmgAAABoAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAlsAAABbAAAAWwAAAlsAAANbAAACWwAAAWgAAABoAAAAaAAAAD8AAAE/AAAAPwAAA2gAAABoAAAAaAAAAFsAAABbAAADWwAAA1sAAANbAAADWwAAAlsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAABWwAAAVsAAABbAAABWwAAAlsAAANbAAAAGgAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAWwAAAlsAAAFbAAAAWwAAAlsAAAFbAAACWwAAAmgAAABoAAAAaAAAAA== - 6,-1: - ind: 6,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAWwAAAFsAAAJbAAACWwAAAFsAAANbAAAAWwAAAmgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABDAAAAQwAAAGgAAAAWAAAAFgAAABYAAABoAAAAAAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAQwAAAEMAAABLAAADFgAAABYAAAAWAAAAaAAAAAAAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAABYAAAAWAAAAFgAAAGgAAAAAAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGgAAAAWAAAAFgAAABYAAABoAAAAAAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 7,-2: - ind: 7,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAZwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABnAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAZwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAABoAAAIaAAAAGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAaAAAAGgAAAxoAAAJoAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAGgAAAhoAAAMaAAADaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAABoAAAAaAAABGgAAAmgAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 7,-1: - ind: 7,-1 - tiles: aAAAABoAAAMaAAADGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABnAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAZwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 5,1: - ind: 5,1 - tiles: ZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 3,-4: - ind: 3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,-2: - ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAA== - -2,-1: - ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAGgAAABLAAACSwAAA0sAAAJLAAADSwAAA0sAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAASwAAA0sAAAFLAAADSwAAA0sAAANLAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAaAAAAEsAAANLAAABSwAAAksAAANLAAABSwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAfAAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,0: - ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAA== - -2,1: - ind: -2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - type: MapGrid - - type: Broadphase - - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: {} - type: Fixtures - - id: Packed - type: BecomesStation - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: Gravity - - version: 2 - data: - tiles: - -4,-2: - 0: 65280 - -3,-2: - 0: 65535 - -3,-3: - 0: 65535 - -3,-1: - 0: 65535 - -2,-4: - 0: 65535 - -2,-3: - 0: 65535 - -2,-2: - 0: 65535 - -2,-1: - 0: 65535 - -1,-4: - 0: 65433 - -1,-3: - 0: 65535 - -1,-2: - 0: 65535 - -1,-1: - 0: 65535 - -3,0: - 0: 65535 - -2,0: - 0: 65535 - -1,0: - 0: 65535 - -1,3: - 0: 65532 - -1,1: - 0: 65535 - -1,2: - 0: 53247 - 0,0: - 0: 65535 - 0,1: - 0: 65535 - 0,2: - 0: 65535 - 0,3: - 0: 65535 - 1,0: - 0: 65535 - 1,1: - 0: 65535 - 1,2: - 0: 65535 - 1,3: - 0: 65535 - 2,0: - 0: 65535 - 2,1: - 0: 65535 - 2,2: - 0: 65535 - 2,3: - 0: 65535 - 3,0: - 0: 65535 - 3,1: - 0: 65535 - 3,2: - 0: 65535 - 3,3: - 0: 65535 - 0,-4: - 0: 65535 - 0,-3: - 0: 65535 - 0,-2: - 0: 65535 - 0,-1: - 0: 65535 - 1,-4: - 0: 65535 - 1,-3: - 0: 65535 - 1,-2: - 0: 65535 - 1,-1: - 0: 65535 - 2,-4: - 0: 65535 - 2,-3: - 0: 65535 - 2,-2: - 0: 65535 - 2,-1: - 0: 65535 - 3,-4: - 0: 65535 - 3,-3: - 0: 65535 - 3,-2: - 0: 65535 - 3,-1: - 0: 65535 - -6,-2: - 0: 3584 - -5,-2: - 0: 52992 - -5,-1: - 0: 65534 - -5,0: - 0: 65535 - -4,-8: - 0: 61692 - -3,-8: - 0: 61693 - -2,-8: - 0: 61695 - -1,-8: - 0: 65277 - -1,-7: - 0: 36044 - -1,-5: - 0: 63760 - 0,-8: - 0: 65535 - 0,-7: - 0: 65535 - 0,-5: - 0: 65350 - 0,-6: - 0: 17613 - 1,-8: - 0: 65535 - 1,-7: - 0: 65535 - 1,-6: - 0: 43775 - 1,-5: - 0: 65450 - 2,-8: - 0: 65535 - 2,-7: - 0: 63487 - 1: 2048 - 2,-6: - 0: 65535 - 2,-5: - 0: 65535 - 3,-8: - 0: 65535 - 3,-7: - 0: 65535 - 3,-6: - 0: 65535 - 3,-5: - 0: 65535 - -1,4: - 0: 65535 - -1,5: - 0: 15 - 1,4: - 0: 65535 - 1,5: - 0: 65487 - 1,6: - 0: 65535 - 1,7: - 0: 61167 - 2,4: - 0: 65535 - 2,5: - 0: 65535 - 2,6: - 0: 65535 - 2,7: - 0: 65535 - 3,4: - 0: 65535 - 3,5: - 0: 65535 - 3,6: - 0: 65535 - 3,7: - 0: 65535 - 4,0: - 0: 65535 - 4,1: - 0: 65535 - 4,2: - 0: 65535 - 4,3: - 0: 65535 - 5,0: - 0: 65535 - 5,1: - 0: 65535 - 5,2: - 0: 65535 - 5,3: - 0: 65535 - 6,0: - 0: 65535 - 6,1: - 0: 65535 - 6,2: - 0: 65535 - 6,3: - 0: 65535 - 7,0: - 0: 65535 - 7,1: - 0: 65535 - 7,2: - 0: 65535 - 7,3: - 0: 65535 - 4,-4: - 0: 65535 - 4,-3: - 0: 65535 - 4,-2: - 0: 65535 - 4,-1: - 0: 65535 - 5,-4: - 0: 65535 - 5,-3: - 0: 65535 - 5,-2: - 0: 65535 - 5,-1: - 0: 65535 - 6,-4: - 0: 65535 - 6,-3: - 0: 65535 - 6,-2: - 0: 65535 - 6,-1: - 0: 65535 - 7,-4: - 0: 8191 - 2: 57344 - 7,-3: - 0: 61713 - 2: 3822 - 7,-2: - 0: 65535 - 7,-1: - 0: 65535 - 4,-8: - 0: 65535 - 4,-7: - 0: 65535 - 4,-6: - 0: 65535 - 4,-5: - 0: 65535 - 5,-8: - 0: 65535 - 5,-7: - 0: 65535 - 5,-6: - 0: 65535 - 5,-5: - 0: 65535 - 6,-8: - 0: 65535 - 6,-7: - 0: 65535 - 6,-6: - 0: 65535 - 6,-5: - 0: 65535 - 7,-8: - 0: 65535 - 7,-7: - 0: 65535 - 7,-6: - 0: 65535 - 7,-5: - 0: 65535 - 0,-11: - 0: 14080 - 0,-10: - 0: 65523 - 0,-9: - 0: 65535 - 1,-10: - 0: 16368 - 1,-9: - 0: 65331 - 2,-10: - 0: 65535 - 2,-9: - 0: 65535 - 2,-12: - 0: 2188 - 3,-12: - 0: 65535 - 3,-11: - 0: 65535 - 3,-10: - 0: 65535 - 3,-9: - 0: 65535 - 4,-12: - 0: 65535 - 4,-11: - 0: 65535 - 4,-10: - 0: 65535 - 4,-9: - 0: 65535 - 5,-12: - 0: 65535 - 5,-11: - 0: 65535 - 5,-10: - 0: 65535 - 5,-9: - 0: 65535 - 6,-12: - 0: 65535 - 6,-11: - 0: 65535 - 6,-10: - 0: 65535 - 6,-9: - 0: 65535 - 7,-12: - 0: 65535 - 7,-11: - 0: 65535 - 7,-10: - 0: 65535 - 7,-9: - 0: 65535 - 8,-8: - 0: 65535 - 8,-7: - 0: 65535 - 8,-6: - 0: 65535 - 8,-5: - 0: 65535 - 9,-8: - 0: 65535 - 9,-7: - 0: 65535 - 9,-6: - 0: 65535 - 9,-5: - 0: 65535 - 10,-8: - 0: 65535 - 10,-7: - 0: 65535 - 10,-6: - 0: 65535 - 10,-5: - 0: 32767 - 11,-8: - 0: 61937 - 3: 14 - 4: 3584 - 11,-7: - 0: 61937 - 4: 14 - 5: 3584 - 11,-6: - 0: 65521 - 6: 14 - 11,-5: - 0: 53247 - 8,-12: - 0: 65535 - 8,-11: - 0: 65535 - 8,-10: - 0: 65535 - 8,-9: - 0: 65535 - 9,-12: - 0: 65535 - 9,-11: - 0: 65535 - 9,-10: - 0: 65535 - 9,-9: - 0: 65535 - 10,-12: - 0: 65535 - 10,-11: - 0: 65535 - 10,-10: - 0: 65535 - 10,-9: - 0: 65535 - 11,-12: - 0: 65535 - 11,-11: - 0: 65535 - 11,-10: - 0: 65535 - 11,-9: - 0: 61951 - 4: 3584 - 4,4: - 0: 65535 - 4,5: - 0: 65535 - 4,6: - 0: 65535 - 4,7: - 0: 65535 - 5,4: - 0: 65535 - 5,5: - 0: 65535 - 5,6: - 0: 65535 - 5,7: - 0: 65535 - 6,4: - 0: 65535 - 6,5: - 0: 65535 - 6,6: - 0: 65535 - 6,7: - 0: 65535 - 7,4: - 0: 65535 - 7,5: - 0: 65535 - 7,6: - 0: 65535 - 7,7: - 0: 65535 - 8,0: - 0: 65535 - 8,1: - 0: 65535 - 8,2: - 0: 65535 - 8,3: - 0: 65535 - 9,0: - 0: 65535 - 9,1: - 0: 65535 - 9,2: - 0: 65535 - 9,3: - 0: 65535 - 10,0: - 0: 65535 - 10,1: - 0: 65535 - 10,2: - 0: 65535 - 10,3: - 0: 65535 - 11,0: - 0: 65535 - 11,1: - 0: 65535 - 11,2: - 0: 65535 - 11,3: - 0: 65535 - 8,-4: - 0: 65535 - 8,-3: - 0: 65535 - 8,-2: - 0: 65535 - 8,-1: - 0: 65535 - 9,-4: - 0: 65535 - 9,-3: - 0: 65535 - 9,-2: - 0: 65535 - 9,-1: - 0: 65535 - 10,-4: - 0: 65399 - 10,-3: - 0: 65535 - 10,-2: - 0: 65535 - 10,-1: - 0: 65535 - 11,-4: - 0: 65484 - 11,-3: - 0: 65535 - 11,-2: - 0: 65535 - 11,-1: - 0: 65535 - 4,-15: - 0: 65535 - 4,-14: - 0: 13119 - 4,-13: - 0: 13311 - 5,-15: - 0: 65535 - 5,-13: - 0: 8959 - 5,-14: - 0: 8751 - 6,-15: - 0: 65535 - 6,-13: - 0: 61183 - 6,-14: - 0: 61167 - 7,-15: - 0: 63479 - 4: 2048 - 7,-14: - 0: 65527 - 4: 8 - 7,-13: - 0: 65535 - 8,-15: - 0: 61680 - 4: 2048 - 9,-15: - 0: 64752 - 4: 768 - 10,-15: - 0: 13105 - 10,-14: - 0: 13119 - 4: 52224 - 10,-13: - 0: 62271 - 4: 3264 - 2,-14: - 0: 51340 - 2,-13: - 0: 52428 - 3,-15: - 0: 65535 - 3,-14: - 0: 65535 - 3,-13: - 0: 65535 - -4,-10: - 0: 49100 - -4,-9: - 0: 53215 - -4,-11: - 0: 62448 - -3,-11: - 0: 61680 - -3,-10: - 0: 65533 - -3,-9: - 0: 65519 - -2,-11: - 0: 61680 - -2,-10: - 0: 49117 - -2,-9: - 0: 57231 - -1,-11: - 0: 14896 - -1,-10: - 0: 61713 - -1,-9: - 0: 53759 - -5,-10: - 0: 44768 - -5,-9: - 0: 60074 - 12,-4: - 0: 65535 - 12,-3: - 0: 65535 - 12,-2: - 0: 65535 - 12,-1: - 0: 65535 - 13,-4: - 0: 65535 - 13,-3: - 0: 65535 - 13,-2: - 0: 65535 - 13,-1: - 0: 65535 - 14,-4: - 0: 63487 - 14,-3: - 0: 65535 - 14,-2: - 0: 65535 - 14,-1: - 0: 65535 - 15,-4: - 0: 61695 - 15,-3: - 0: 65535 - 15,-2: - 0: 65535 - 15,-1: - 0: 65535 - 12,-8: - 0: 65535 - 12,-7: - 0: 65535 - 12,-6: - 0: 65535 - 12,-5: - 0: 65535 - 13,-8: - 0: 65535 - 13,-7: - 0: 65535 - 13,-6: - 0: 65535 - 13,-5: - 0: 65535 - 14,-6: - 0: 61440 - 14,-5: - 0: 65535 - 15,-6: - 0: 61440 - 15,-5: - 0: 65535 - 1,8: - 0: 8942 - 1,9: - 0: 58094 - 1,10: - 0: 11810 - 1,11: - 0: 57890 - 2,8: - 0: 52479 - 2,9: - 0: 65279 - 2,10: - 0: 3840 - 2,11: - 0: 61440 - 3,8: - 0: 65535 - 3,9: - 0: 65535 - 3,10: - 0: 4095 - 4,8: - 0: 65535 - 4,9: - 0: 65535 - 4,10: - 0: 61439 - 4,11: - 0: 64716 - 5,8: - 0: 65535 - 5,9: - 0: 65535 - 5,10: - 0: 65535 - 5,11: - 0: 65535 - 6,8: - 0: 65535 - 6,9: - 0: 65535 - 6,10: - 0: 65535 - 6,11: - 0: 65535 - 7,8: - 0: 65535 - 7,9: - 0: 65535 - 7,10: - 0: 65535 - 7,11: - 0: 65535 - 8,4: - 0: 65535 - 8,5: - 0: 65535 - 8,6: - 0: 65535 - 8,7: - 0: 65535 - 9,4: - 0: 65535 - 9,5: - 0: 65535 - 9,6: - 0: 65535 - 9,7: - 0: 65535 - 10,4: - 0: 65535 - 10,5: - 0: 65535 - 10,6: - 0: 65535 - 10,7: - 0: 65535 - 11,4: - 0: 65535 - 11,5: - 0: 65535 - 11,6: - 0: 65535 - 11,7: - 0: 65535 - 8,8: - 0: 65535 - 8,9: - 0: 65535 - 8,10: - 0: 65535 - 8,11: - 0: 65535 - 9,8: - 0: 65535 - 9,9: - 0: 65535 - 9,10: - 0: 65535 - 9,11: - 0: 61719 - 10,8: - 0: 65535 - 10,9: - 0: 40959 - 10,10: - 0: 65535 - 10,11: - 0: 64989 - 11,8: - 0: 65535 - 11,9: - 0: 65535 - 11,10: - 0: 30591 - 11,11: - 0: 65523 - 5,12: - 0: 58094 - 6,12: - 0: 61695 - 7,12: - 0: 61695 - 8,12: - 0: 12851 - 11,12: - 0: 61454 - 16,-4: - 0: 65535 - 16,-3: - 0: 65535 - 16,-2: - 0: 65535 - 16,-1: - 0: 65535 - 17,-4: - 0: 65535 - 17,-3: - 0: 65535 - 17,-2: - 0: 65535 - 17,-1: - 0: 65535 - 18,-4: - 0: 65535 - 18,-3: - 0: 47935 - 18,-2: - 0: 65535 - 18,-1: - 0: 65535 - 19,-4: - 0: 65535 - 19,-3: - 0: 65295 - 19,-2: - 0: 65535 - 19,-1: - 0: 65535 - 16,-6: - 0: 61440 - 16,-5: - 0: 65535 - 17,-6: - 0: 61440 - 17,-5: - 0: 65535 - 18,-6: - 0: 4096 - 18,-5: - 0: 65297 - 19,-5: - 0: 65280 - 12,0: - 0: 65535 - 12,1: - 0: 65535 - 12,2: - 0: 65535 - 12,3: - 0: 65535 - 13,0: - 0: 65535 - 13,1: - 0: 65535 - 13,2: - 0: 65535 - 13,3: - 0: 65535 - 14,0: - 0: 65535 - 14,1: - 0: 65535 - 14,2: - 0: 65535 - 14,3: - 0: 65535 - 15,0: - 0: 65535 - 15,1: - 0: 65535 - 15,2: - 0: 65535 - 15,3: - 0: 65535 - 16,0: - 0: 65535 - 16,1: - 0: 65535 - 16,2: - 0: 65535 - 16,3: - 0: 65535 - 17,0: - 0: 65535 - 17,1: - 0: 65535 - 17,2: - 0: 65535 - 17,3: - 0: 65535 - 18,0: - 0: 65535 - 18,1: - 0: 65535 - 18,2: - 0: 65535 - 18,3: - 0: 65535 - 19,0: - 0: 65535 - 19,1: - 0: 65535 - 19,2: - 0: 65535 - 19,3: - 0: 16383 - 20,0: - 0: 65535 - 20,1: - 0: 65535 - 20,2: - 0: 65535 - 20,3: - 0: 61695 - 21,0: - 0: 65535 - 21,1: - 0: 32767 - 21,2: - 0: 65527 - 21,3: - 0: 8191 - 22,0: - 0: 1911 - 22,1: - 0: 9984 - 12,4: - 0: 65535 - 12,5: - 0: 65535 - 12,6: - 0: 65535 - 12,7: - 0: 34959 - 13,4: - 0: 65535 - 13,5: - 0: 65535 - 13,6: - 0: 53247 - 13,7: - 0: 65535 - 14,4: - 0: 65535 - 14,5: - 0: 65535 - 14,6: - 0: 32767 - 14,7: - 0: 65535 - 15,4: - 0: 65535 - 15,5: - 0: 65535 - 15,6: - 0: 61439 - 15,7: - 0: 13311 - 12,12: - 0: 13055 - 13,12: - 0: 35071 - 14,12: - 0: 13311 - 15,12: - 0: 255 - 12,11: - 0: 63344 - 12,8: - 0: 52428 - 12,9: - 0: 52428 - 12,10: - 0: 8 - 13,8: - 0: 65535 - 13,9: - 0: 65535 - 13,10: - 0: 239 - 13,11: - 0: 61440 - 14,8: - 0: 65535 - 14,9: - 0: 65535 - 14,10: - 0: 255 - 14,11: - 0: 61440 - 15,8: - 0: 30583 - 15,9: - 0: 30583 - 15,10: - 0: 3 - 15,11: - 0: 64704 - 16,4: - 0: 65535 - 16,5: - 0: 65535 - 16,6: - 0: 65535 - 16,7: - 0: 61183 - 17,4: - 0: 65535 - 17,5: - 0: 65535 - 17,6: - 0: 65535 - 17,7: - 0: 65535 - 18,4: - 0: 65535 - 18,5: - 0: 14207 - 18,6: - 0: 13183 - 16,11: - 0: 65534 - 16,8: - 0: 61166 - 16,9: - 0: 61166 - 16,10: - 0: 61166 - 17,8: - 0: 65535 - 17,9: - 0: 65535 - 17,10: - 0: 65535 - 17,11: - 0: 65535 - 18,8: - 0: 13107 - 18,9: - 0: 16179 - 18,10: - 0: 4127 - 18,11: - 0: 8183 - 19,10: - 0: 61167 - 19,11: - 0: 61428 - 16,12: - 0: 31 - 19,12: - 0: 65262 - 20,-4: - 0: 65535 - 20,-3: - 0: 61455 - 20,-2: - 0: 65535 - 20,-1: - 0: 65535 - 21,-4: - 0: 65535 - 21,-3: - 0: 61167 - 21,-2: - 0: 65534 - 21,-1: - 0: 65535 - 22,-4: - 0: 30583 - 22,-3: - 0: 65535 - 22,-2: - 0: 65535 - 22,-1: - 0: 65535 - 20,-5: - 0: 65280 - 21,-6: - 0: 65420 - 21,-5: - 0: 65423 - 22,-6: - 0: 65520 - 22,-5: - 0: 32767 - 20,11: - 0: 60924 - 20,10: - 0: 61166 - 21,10: - 0: 65511 - 21,11: - 0: 59389 - 22,10: - 0: 65126 - 22,11: - 0: 39611 - 20,12: - 0: 65535 - 21,12: - 0: 64495 - 5,13: - 0: 3298 - 6,13: - 0: 65520 - 6,14: - 0: 35022 - 6,15: - 0: 8 - 7,13: - 0: 32752 - 7,14: - 0: 19 - 8,13: - 0: 318 - 18,7: - 0: 13107 - 2,-11: - 0: 65535 - 8,-13: - 0: 65328 - 4: 207 - 9,-13: - 0: 65280 - 4: 252 - 11,-13: - 0: 63631 - 4: 1904 - 12,-11: - 0: 62532 - 4: 443 - 12,-10: - 0: 4369 - 12,-9: - 0: 13105 - 23,-6: - 0: 65520 - 23,-5: - 0: 4095 - 24,-6: - 0: 65520 - 24,-5: - 0: 4095 - 25,-6: - 0: 65328 - 25,-5: - 0: 61439 - 26,-7: - 0: 65280 - 26,-6: - 0: 65535 - 26,-5: - 0: 65535 - 27,-7: - 0: 56576 - 27,-6: - 0: 64989 - 27,-5: - 0: 65535 - 25,-3: - 0: 254 - 25,-4: - 0: 61166 - 26,-4: - 0: 65535 - 26,-3: - 0: 4095 - 27,-4: - 0: 56831 - 27,-3: - 0: 3549 - 28,-7: - 0: 65280 - 28,-6: - 0: 65535 - 28,-5: - 0: 65535 - 29,-7: - 0: 4352 - 29,-6: - 0: 61713 - 29,-5: - 0: 65535 - 30,-6: - 0: 12288 - 30,-5: - 0: 13107 - 28,-4: - 0: 65535 - 28,-3: - 0: 4095 - 29,-4: - 0: 4607 - 29,-3: - 0: 273 - 30,-4: - 0: 51 - 2,-15: - 0: 34952 - 3,11: - 0: 61440 - 5,-16: - 0: 28672 - 7,-16: - 0: 28160 - 8,-16: - 0: 3840 - 9,-16: - 0: 3840 - 10,-16: - 0: 61696 - 11,-16: - 0: 61440 - 11,-14: - 0: 34959 - 4: 4352 - 11,-15: - 0: 34952 - 2,-16: - 0: 51200 - 3,-16: - 0: 4096 - -5,-11: - 0: 34944 - 14,-8: - 0: 17476 - 14,-7: - 0: 52292 - 15,-7: - 0: 64256 - 9,13: - 0: 15 - 10,13: - 0: 7 - 10,12: - 0: 50244 - 16,-7: - 0: 65280 - 17,-7: - 0: 65024 - 18,-7: - 0: 63232 - 19,-7: - 0: 63488 - 22,3: - 0: 3874 - 22,2: - 0: 8738 - 23,0: - 0: 4369 - 23,1: - 0: 4369 - 23,2: - 0: 4369 - 23,3: - 0: 273 - 19,4: - 0: 16025 - 19,5: - 0: 4369 - 19,6: - 0: 15 - 19,9: - 0: 3840 - 18,12: - 0: 61713 - 23,-1: - 0: 4352 - 20,-7: - 0: 7936 - 21,-7: - 0: 36608 - 20,9: - 0: 3840 - 21,9: - 0: 3840 - 22,9: - 0: 30464 - 22,12: - 0: 14190 - 12,-12: - 0: 17476 - 4: 48059 - 13,-11: - 0: 4096 - 13,-10: - 0: 4369 - 13,-9: - 0: 159 - 14,-9: - 0: 17520 - 20,4: - 0: 19 - 12,-14: - 0: 1 - 12,-13: - 0: 17479 - 4: 48048 - -5,-8: - 0: 34944 - -3,-4: - 0: 65535 - -4,-1: - 0: 65535 - -4,0: - 0: 65535 - -4,3: - 0: 65280 - -4,4: - 0: 65535 - -4,5: - 0: 255 - -3,4: - 0: 65535 - -3,5: - 0: 15 - -2,4: - 0: 65535 - -2,5: - 0: 15 - 0,4: - 0: 65535 - 0,5: - 0: 15 - -5,3: - 0: 60928 - -5,4: - 0: 52974 - -5,5: - 0: 204 - -3,1: - 0: 52431 - -3,2: - 0: 3276 - -2,1: - 0: 65535 - -2,2: - 0: 4095 - -1,-6: - 0: 2184 - 9,-14: - 0: 136 - 4: 56596 - -4,-4: - 0: 65535 - -4,-3: - 0: 207 - -4,1: - 0: 15 - -4,-5: - 0: 63626 - -4,-6: - 0: 57344 - -3,-6: - 0: 12288 - -3,-5: - 0: 61442 - -2,-5: - 0: 65248 - -6,-6: - 0: 19456 - -6,-5: - 0: 32768 - -5,-6: - 0: 22272 - -5,-5: - 0: 61713 - -7,-4: - 0: 24400 - -6,-4: - 0: 65534 - -6,-3: - 0: 142 - -6,-1: - 0: 32768 - -5,-4: - 0: 65535 - -5,-3: - 0: 63 - -7,0: - 0: 24400 - -6,0: - 0: 65534 - -6,1: - 0: 14 - -5,1: - 0: 15 - -3,3: - 0: 65280 - -2,3: - 0: 65280 - 8,-14: - 4: 65535 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 235 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - type: GridAtmosphere - - chunkCollection: - version: 2 - nodes: - - node: - angle: -4.71238898038469 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 1073: -12,-14 - 1074: -19,-14 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 1159: -5,0 - 1160: -3,0 - 1519: 24,23 - 2421: 58,-2 - 2422: 60,-2 - - node: - color: '#FFFFFFFF' - id: Arrows - decals: - 798: 21,-16 - 1071: -13,-12 - 1072: -20,-12 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 1629: 36,18 - - node: - color: '#FED83DFF' - id: Bot - decals: - 7: 12,-28 - 8: 12,-27 - - node: - color: '#FFFFFFFF' - id: Bot - decals: - 198: 3,-4 - 199: 3,-5 - 200: 3,-7 - 243: 51,9 - 244: 49,9 - 409: 42,-39 - 410: 42,-38 - 411: 43,-38 - 412: 43,-39 - 413: 44,-39 - 414: 44,-38 - 415: 45,-39 - 416: 45,-38 - 465: 22,-35 - 466: 20,-35 - 467: 19,-35 - 1218: 15,-2 - 1219: 14,-2 - 1220: 13,-2 - 1267: 13,26 - 1268: 11,26 - 1269: 10,26 - 1270: 11,24 - 1271: 12,24 - 1272: 13,24 - 1273: 7,25 - 1368: 12,26 - 1511: 22,22 - 1512: 22,23 - 1513: 22,24 - 1514: 22,25 - 1515: 23,25 - 1626: 37,17 - 1627: 38,17 - 1628: 39,17 - 1840: 10,24 - 2130: 52,17 - 2131: 52,18 - 2244: 68,13 - 2245: 66,13 - 2246: 67,13 - 2609: 46,-46 - 2610: 46,-49 - 2611: 47,-49 - 2612: 48,-49 - 2613: 49,-49 - 2619: 44,-43 - 2620: 43,-43 - 2621: 42,-43 - 2622: 41,-43 - 2623: 38,-43 - 2624: 37,-43 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Bot - decals: - 303: 24,-34 - 304: 28,-34 - - node: - color: '#FFFFFFFF' - id: BotGreyscale - decals: - 1593: 14,39 - 1594: 13,40 - 1595: 14,41 - 1596: 15,40 - 1744: 28,44 - 1745: 26,44 - - node: - color: '#FFFFFFFF' - id: BotLeft - decals: - 399: 10,-36 - 400: 10,-37 - 461: 22,-43 - 1918: 10,-6 - 1919: 11,-6 - 1920: 12,-6 - 2241: 68,16 - 2242: 67,16 - 2243: 66,16 - - node: - color: '#FFFFFFFF' - id: BotLeftGreyscale - decals: - 1589: 15,41 - 1590: 13,39 - 1914: 8,-10 - 1915: 8,-9 - - node: - color: '#FFFFFFFF' - id: BotRight - decals: - 460: 20,-43 - 1921: 10,-9 - 1922: 11,-9 - 1923: 12,-9 - - node: - color: '#FFFFFFFF' - id: BotRightGreyscale - decals: - 1591: 13,41 - 1592: 15,39 - 1916: 8,-8 - 1917: 8,-6 - - node: - color: '#FFFFFFFF' - id: Box - decals: - 459: 21,-43 - - node: - color: '#FFFFFFFF' - id: BoxGreyscale - decals: - 804: 16,-43 - 805: 17,-43 - 806: 25,-43 - 807: 26,-43 - 1597: 14,40 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - decals: - 1826: 22,-13 - 1827: 22,-12 - 1828: 22,-11 - 1829: 22,-10 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelEndN - decals: - 2472: 77,9 - 2473: 78,9 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelEndS - decals: - 2474: 77,7 - 2475: 78,7 - - node: - color: '#D381C996' - id: BrickTileSteelLineE - decals: - 2237: 71,13 - 2238: 71,14 - 2239: 71,15 - 2240: 71,16 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineE - decals: - 2476: 77,8 - 2477: 78,8 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineN - decals: - 462: 30,-39 - 463: 29,-39 - 464: 28,-39 - 880: 46,-9 - 881: 47,-9 - - node: - color: '#D381C996' - id: BrickTileSteelLineW - decals: - 2233: 69,13 - 2234: 69,14 - 2235: 69,15 - 2236: 69,16 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineW - decals: - 2478: 78,8 - 2479: 77,8 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerNe - decals: - 1889: 17,-4 - - node: - color: '#A4610696' - id: BrickTileWhiteCornerNe - decals: - 1492: 20,24 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerNe - decals: - 1619: 39,19 - - node: - color: '#EFCC4193' - id: BrickTileWhiteCornerNe - decals: - 371: 27,-28 - 389: 13,-34 - - node: - color: '#EFCC4582' - id: BrickTileWhiteCornerNe - decals: - 406: 41,-39 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerNw - decals: - 1894: 14,-4 - - node: - color: '#A4610696' - id: BrickTileWhiteCornerNw - decals: - 1491: 17,24 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerNw - decals: - 1618: 36,19 - - node: - color: '#EFCC4193' - id: BrickTileWhiteCornerNw - decals: - 370: 25,-28 - 390: 10,-34 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerSe - decals: - 1888: 17,-6 - - node: - color: '#9FED583B' - id: BrickTileWhiteCornerSe - decals: - 850: 47,-8 - - node: - color: '#A4610696' - id: BrickTileWhiteCornerSe - decals: - 1496: 20,20 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerSe - decals: - 1621: 39,17 - - node: - color: '#EFCC4193' - id: BrickTileWhiteCornerSe - decals: - 372: 27,-30 - 392: 13,-37 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerSw - decals: - 1890: 14,-6 - - node: - color: '#9FED583B' - id: BrickTileWhiteCornerSw - decals: - 854: 41,-8 - - node: - color: '#A4610696' - id: BrickTileWhiteCornerSw - decals: - 1497: 17,20 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerSw - decals: - 1620: 36,17 - - node: - color: '#EFCC4193' - id: BrickTileWhiteCornerSw - decals: - 374: 25,-30 - 391: 10,-37 - - node: - color: '#9FED5847' - id: BrickTileWhiteEndE - decals: - 861: 45,-6 - - node: - color: '#9FED5847' - id: BrickTileWhiteEndN - decals: - 879: 47,-4 - - node: - color: '#9FED5847' - id: BrickTileWhiteEndW - decals: - 862: 43,-6 - - node: - color: '#9FED5847' - id: BrickTileWhiteInnerNe - decals: - 871: 41,-8 - - node: - color: '#D381C996' - id: BrickTileWhiteInnerNe - decals: - 2134: 51,20 - - node: - color: '#EFCC4582' - id: BrickTileWhiteInnerNe - decals: - 408: 41,-40 - - node: - color: '#9FED5847' - id: BrickTileWhiteInnerNw - decals: - 870: 47,-8 - - node: - color: '#D381C996' - id: BrickTileWhiteInnerNw - decals: - 2133: 53,20 - - node: - color: '#D381C996' - id: BrickTileWhiteInnerSe - decals: - 2129: 50,19 - - node: - color: '#D381C996' - id: BrickTileWhiteInnerSw - decals: - 2128: 54,19 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineE - decals: - 1891: 17,-5 - - node: - color: '#9FED583B' - id: BrickTileWhiteLineE - decals: - 851: 47,-7 - 852: 47,-6 - 853: 47,-5 - - node: - color: '#9FED5847' - id: BrickTileWhiteLineE - decals: - 872: 41,-7 - 873: 41,-6 - 874: 41,-5 - 875: 41,-4 - - node: - color: '#A4610696' - id: BrickTileWhiteLineE - decals: - 1493: 20,23 - 1494: 20,22 - 1495: 20,21 - - node: - color: '#D381C996' - id: BrickTileWhiteLineE - decals: - 2121: 50,17 - 2122: 50,18 - 2135: 51,21 - 2136: 56,17 - 2137: 56,19 - 2138: 56,20 - - node: - color: '#EFCC4193' - id: BrickTileWhiteLineE - decals: - 388: 13,-36 - - node: - color: '#EFCC4582' - id: BrickTileWhiteLineE - decals: - 490: 17,-42 - 491: 17,-41 - 494: 26,-42 - 495: 26,-41 - 496: 26,-40 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineN - decals: - 1892: 16,-4 - 1893: 15,-4 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineN - decals: - 1163: -13,-12 - 1164: -20,-12 - 1989: 32,36 - - node: - color: '#9FED5847' - id: BrickTileWhiteLineN - decals: - 863: 44,-6 - 865: 46,-8 - 866: 45,-8 - 867: 44,-8 - 868: 43,-8 - 869: 42,-8 - 882: 47,-9 - 883: 46,-9 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineN - decals: - 2265: 80,-4 - 2266: 77,-4 - - node: - color: '#A4610696' - id: BrickTileWhiteLineN - decals: - 1503: 18,24 - 1504: 19,24 - 1991: 30,36 - - node: - color: '#D381C996' - id: BrickTileWhiteLineN - decals: - 1990: 31,36 - 2101: 52,14 - 2102: 51,14 - 2103: 50,14 - 2104: 49,14 - 2105: 48,14 - 2132: 52,20 - 2227: 66,15 - 2228: 67,15 - 2229: 68,15 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineN - decals: - 1161: -3,1 - 1162: -5,1 - 1622: 38,19 - 1623: 37,19 - - node: - color: '#EFCC4193' - id: BrickTileWhiteLineN - decals: - 397: 12,-34 - 398: 11,-34 - - node: - color: '#EFCC4582' - id: BrickTileWhiteLineN - decals: - 403: 38,-39 - 404: 39,-39 - 405: 40,-39 - 407: 42,-40 - 421: 43,-40 - 422: 44,-40 - 423: 45,-40 - 424: 46,-40 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineN - decals: - 2084: 50,13 - 2085: 49,13 - 2089: 51,13 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineS - decals: - 1896: 16,-6 - 1897: 15,-6 - 1986: 32,35 - - node: - color: '#9FED583B' - id: BrickTileWhiteLineS - decals: - 846: 46,-8 - 847: 45,-8 - 848: 44,-8 - 849: 43,-8 - - node: - color: '#9FED5847' - id: BrickTileWhiteLineS - decals: - 864: 44,-6 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineS - decals: - 2264: 77,-6 - - node: - color: '#A4610696' - id: BrickTileWhiteLineS - decals: - 1498: 19,20 - 1499: 18,20 - - node: - color: '#D381C996' - id: BrickTileWhiteLineS - decals: - 2096: 49,14 - 2097: 50,14 - 2098: 51,14 - 2099: 52,14 - 2100: 48,14 - 2123: 51,19 - 2124: 52,19 - 2125: 53,19 - 2230: 68,14 - 2231: 67,14 - 2232: 66,14 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineS - decals: - 1624: 38,17 - 1625: 37,17 - 1987: 31,35 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineS - decals: - 1988: 30,35 - - node: - color: '#EFCC4193' - id: BrickTileWhiteLineS - decals: - 373: 26,-30 - 393: 12,-37 - 394: 11,-37 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineS - decals: - 2086: 51,15 - 2087: 50,15 - 2088: 49,15 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineW - decals: - 1895: 14,-5 - - node: - color: '#9FED583B' - id: BrickTileWhiteLineW - decals: - 855: 41,-7 - 856: 41,-6 - 857: 41,-5 - - node: - color: '#9FED5847' - id: BrickTileWhiteLineW - decals: - 876: 47,-7 - 877: 47,-6 - 878: 47,-5 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineW - decals: - 2271: 78,-2 - 2272: 78,-1 - - node: - color: '#A4610696' - id: BrickTileWhiteLineW - decals: - 1500: 17,21 - 1501: 17,22 - 1502: 17,23 - 1505: 22,20 - 1506: 22,21 - 1507: 22,22 - 1508: 22,23 - 1509: 22,24 - 1510: 22,25 - - node: - color: '#D381C996' - id: BrickTileWhiteLineW - decals: - 2126: 54,17 - 2127: 54,18 - - node: - color: '#EFCC4193' - id: BrickTileWhiteLineW - decals: - 395: 10,-36 - 396: 10,-35 - - node: - color: '#EFCC4582' - id: BrickTileWhiteLineW - decals: - 492: 25,-42 - 493: 25,-41 - 497: 16,-41 - 498: 16,-40 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineW - decals: - 2269: 78,-2 - 2270: 78,-1 - - node: - color: '#FFFFFFFF' - id: Caution - decals: - 1138: -6,-18 - 1409: 9,27 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Caution - decals: - 1408: 9,27 - - node: - color: '#52B4E996' - id: CheckerNESW - decals: - 104: 44,4 - 105: 45,4 - 106: 46,4 - 107: 47,4 - 108: 47,3 - 109: 46,3 - 110: 45,3 - 111: 44,3 - 112: 44,2 - 113: 45,2 - 114: 46,2 - 115: 47,2 - 132: 58,-12 - 133: 57,-12 - 134: 56,-12 - 135: 55,-12 - 136: 54,-12 - 137: 54,-11 - 138: 55,-11 - 139: 56,-11 - 140: 57,-11 - 141: 58,-11 - 142: 58,-10 - 143: 57,-10 - 144: 56,-10 - 145: 55,-10 - 146: 54,-10 - 147: 60,-10 - 148: 61,-10 - 149: 62,-10 - 150: 63,-10 - 151: 63,-11 - 152: 62,-11 - 153: 61,-11 - 154: 60,-11 - 155: 60,-12 - 156: 61,-12 - 157: 62,-12 - 158: 63,-12 - - node: - color: '#8A8A8A96' - id: CheckerNESW - decals: - 159: 60,11 - 160: 61,11 - 161: 62,11 - 162: 63,11 - 163: 62,10 - 164: 63,10 - 165: 63,9 - 166: 62,9 - 167: 61,9 - 168: 60,9 - 169: 61,10 - 170: 60,10 - 171: 60,8 - 172: 62,8 - 173: 61,8 - 174: 63,8 - - node: - color: '#9FED5896' - id: CheckerNESW - decals: - 2273: 80,-3 - 2274: 80,-2 - 2275: 81,-2 - 2276: 81,-3 - 2277: 81,-1 - 2278: 80,-1 - 2279: 76,-9 - 2280: 77,-9 - 2281: 77,-8 - 2282: 76,-8 - 2283: 76,-7 - 2284: 77,-7 - - node: - color: '#D4D4D428' - id: CheckerNESW - decals: - 962: 19,13 - 963: 19,14 - 964: 20,14 - 965: 20,13 - 966: 21,13 - 967: 21,14 - 968: 22,14 - 969: 22,13 - - node: - color: '#F9801D73' - id: CheckerNESW - decals: - 928: 20,9 - 929: 20,10 - - node: - color: '#9FED5822' - id: CheckerNWSE - decals: - 890: 42,-11 - 891: 42,-10 - 892: 43,-11 - 893: 43,-10 - 894: 44,-11 - 895: 44,-10 - - node: - color: '#9FED5896' - id: CheckerNWSE - decals: - 2267: 77,-2 - 2268: 77,-1 - - node: - color: '#A4610696' - id: CheckerNWSE - decals: - 1256: 13,30 - 1257: 13,31 - 1258: 12,31 - 1259: 12,30 - 1260: 11,30 - 1261: 11,31 - - node: - color: '#D381C996' - id: CheckerNWSE - decals: - 2081: 58,9 - 2082: 58,10 - 2083: 58,11 - - node: - color: '#EFCC4593' - id: CheckerNWSE - decals: - 802: 18,-18 - 803: 18,-17 - - node: - color: '#FFFFFF93' - id: CheckerNWSE - decals: - 808: 33,-10 - 809: 33,-11 - 810: 33,-12 - 811: 33,-13 - 812: 34,-13 - 813: 34,-12 - 814: 34,-11 - 815: 34,-10 - 816: 35,-10 - 817: 35,-11 - 818: 35,-12 - 819: 35,-13 - 820: 36,-13 - 821: 36,-12 - 822: 36,-11 - 823: 36,-10 - 824: 37,-10 - 825: 37,-11 - 826: 37,-12 - 827: 37,-13 - - node: - color: '#FFFFFFFF' - id: Delivery - decals: - 201: 4,-7 - 202: 6,-7 - 203: 5,-4 - 204: 6,-4 - 205: 6,-5 - 235: 19,39 - 241: 51,8 - 242: 49,8 - 385: 5,-7 - 417: 46,-39 - 418: 46,-38 - 419: 39,-41 - 420: 41,-41 - 455: 16,-39 - 456: 17,-39 - 457: 25,-39 - 458: 26,-39 - 1049: 25,-3 - 1050: 26,-3 - 1051: 27,-3 - 1062: 24,13 - 1063: 24,14 - 1064: 19,11 - 1065: 18,11 - 1066: 25,16 - 1067: 26,16 - 1068: 27,16 - 1069: 33,-2 - 1070: 35,-2 - 1142: -8,-15 - 1143: -8,-14 - 1144: -8,-13 - 1165: 2,-2 - 1166: 2,-1 - 1167: 2,0 - 1224: 16,-2 - 1225: 17,-1 - 1226: 17,0 - 1227: 17,1 - 1274: 7,24 - 1275: 7,26 - 1739: 40,12 - 1740: 41,12 - 1741: 42,12 - 1816: 39,-1 - 1817: 39,0 - 1818: 39,1 - 1819: 40,2 - 1820: 41,2 - 1821: 42,2 - 1981: 7,9 - 1982: 7,10 - 1983: 38,13 - 1984: 38,14 - 1985: 38,15 - 2106: 53,13 - 2107: 53,14 - 2108: 53,15 - 2141: 58,16 - 2142: 59,16 - 2143: 60,16 - 2144: 58,21 - 2145: 59,21 - 2146: 60,21 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Delivery - decals: - 298: 32,-33 - 299: 32,-32 - 300: 20,-33 - 301: 20,-32 - 302: 20,-31 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Delivery - decals: - 214: 2,-33 - 215: 3,-29 - - node: - color: '#FFFFFFFF' - id: DeliveryGreyscale - decals: - 2109: 52,14 - 2110: 48,14 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Dirt - decals: - 442: 41,-39 - 443: 39,-39 - 444: 46,-40 - 445: 45,-40 - 446: 44,-40 - 447: 44,-41 - 448: 43,-41 - 449: 42,-38 - 450: 43,-39 - 736: 30,-31 - 737: 29,-31 - 738: 30,-32 - 739: 30,-33 - 740: 29,-33 - 741: 29,-32 - 742: 28,-32 - 743: 31,-32 - 744: 32,-31 - 745: 27,-34 - 746: 27,-33 - 747: 26,-33 - 748: 25,-34 - 749: 24,-32 - 750: 23,-32 - 751: 22,-31 - 752: 22,-33 - 753: 24,-33 - 896: 43,-11 - 897: 42,-10 - 898: 30,-13 - 899: 29,-11 - 1060: 21,-31 - 1061: 21,-31 - 1196: -4,-6 - 1197: -4,-5 - 1198: -4,-4 - 1199: -4,-5 - 1279: 6,30 - 1280: 7,31 - 1281: 6,32 - 1282: 9,30 - 1283: 9,29 - 1391: 15,20 - 1392: 14,20 - 1393: 13,23 - 1394: 12,23 - 1395: 11,23 - 1396: 7,22 - 1397: 7,21 - 1398: 10,25 - 1399: 9,27 - 1400: 7,28 - 1401: 13,28 - 1402: 11,28 - 1403: 15,24 - 1404: 12,24 - 1405: 7,24 - 1406: 5,24 - 1407: 7,23 - 1416: 8,17 - 1417: 7,16 - 1418: 5,16 - 1419: 8,18 - 1484: 11,24 - 1485: 10,26 - 1486: 7,25 - 1526: 17,21 - 1527: 18,22 - 1528: 18,23 - 1529: 19,20 - 1564: 22,20 - 1565: 22,25 - 1566: 24,20 - 1567: 24,23 - 1568: 23,24 - 1569: 23,22 - 1570: 23,23 - 1571: 23,21 - 1572: 15,23 - 1573: 14,23 - 1574: 13,24 - 1598: 39,30 - 1599: 40,31 - 1600: 39,33 - 1601: 38,33 - 1602: 37,35 - 1603: 39,35 - 1604: 41,33 - 1605: 40,33 - 1668: 32,17 - 1669: 32,18 - 1670: 33,17 - 1671: 35,20 - 1672: 35,21 - 1673: 33,23 - 1674: 34,24 - 1675: 33,27 - 1676: 32,29 - 1677: 32,30 - 1678: 30,23 - 1679: 30,18 - 1680: 29,17 - 1681: 29,20 - 1682: 30,20 - 1698: 25,18 - 1699: 25,19 - 1700: 25,20 - 1701: 25,22 - 1702: 27,20 - 1703: 25,23 - 1704: 25,24 - 1705: 26,24 - 1706: 27,23 - 1707: 25,25 - 1708: 27,26 - 1844: 8,21 - 1845: 9,21 - 1846: 9,22 - 1847: 9,23 - 1848: 10,23 - 1849: 10,22 - 1850: 8,24 - 1851: 9,24 - 2301: 55,-16 - 2302: 55,-16 - 2303: 56,-16 - 2304: 56,-15 - 2315: 55,-14 - 2316: 57,-16 - 2317: 57,-15 - 2350: 32,-18 - 2351: 33,-17 - 2352: 31,-16 - 2353: 29,-17 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - decals: - 286: 21,-33 - 287: 20,-33 - 288: 28,-34 - 289: 28,-33 - 290: 31,-33 - 431: 40,-41 - 432: 40,-40 - 433: 38,-39 - 434: 41,-40 - 508: 24,-37 - 509: 30,-37 - 510: 31,-36 - 663: 18,-31 - 664: 19,-29 - 1284: 8,29 - 1285: 8,31 - 1369: 12,22 - 1370: 8,20 - 1420: 7,17 - 1421: 8,16 - 1422: 9,19 - 1530: 18,21 - 1552: 23,23 - 1606: 39,32 - 2305: 55,-15 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - decals: - 291: 31,-32 - 292: 30,-33 - 293: 25,-33 - 294: 24,-33 - 295: 23,-31 - 296: 23,-33 - 297: 31,-31 - 435: 41,-39 - 436: 38,-40 - 437: 42,-41 - 438: 42,-40 - 439: 46,-41 - 440: 44,-39 - 441: 43,-40 - 500: 19,-42 - 501: 19,-41 - 502: 21,-39 - 511: 31,-37 - 515: 32,-36 - 516: 32,-35 - 517: 29,-36 - 518: 29,-37 - 519: 27,-37 - 520: 27,-36 - 521: 25,-37 - 522: 25,-36 - 523: 24,-36 - 524: 23,-37 - 525: 22,-37 - 526: 20,-37 - 527: 17,-36 - 528: 18,-35 - 529: 18,-34 - 530: 16,-42 - 531: 17,-42 - 665: 18,-29 - 666: 19,-28 - 667: 20,-29 - 668: 22,-29 - 669: 21,-29 - 670: 22,-28 - 671: 20,-27 - 672: 21,-26 - 673: 21,-27 - 674: 20,-26 - 675: 14,-27 - 676: 15,-26 - 677: 13,-25 - 678: 15,-27 - 679: 15,-28 - 680: 15,-28 - 681: 16,-29 - 682: 16,-25 - 683: 26,-29 - 684: 26,-28 - 685: 27,-29 - 686: 15,-37 - 687: 16,-37 - 688: 15,-34 - 1290: 9,31 - 1291: 7,32 - 1292: 9,32 - 1293: 6,31 - 1294: 8,29 - 1295: 9,28 - 1296: 10,27 - 1297: 10,28 - 1377: 13,25 - 1378: 11,25 - 1379: 12,27 - 1380: 11,26 - 1381: 12,22 - 1382: 13,23 - 1383: 14,24 - 1384: 15,23 - 1385: 15,22 - 1386: 15,21 - 1387: 14,22 - 1388: 15,21 - 1389: 15,20 - 1390: 14,21 - 1425: 7,16 - 1426: 9,17 - 1427: 9,16 - 1428: 9,15 - 1429: 7,15 - 1430: 9,18 - 1431: 7,19 - 1432: 7,19 - 1433: 8,18 - 1434: 9,17 - 1435: 9,16 - 1537: 18,24 - 1538: 17,23 - 1539: 19,23 - 1540: 20,21 - 1541: 20,20 - 1542: 20,20 - 1543: 17,20 - 1544: 17,21 - 1545: 18,20 - 1546: 16,20 - 1547: 16,22 - 1548: 20,20 - 1549: 21,21 - 1550: 22,20 - 1553: 23,20 - 1554: 24,21 - 1555: 22,21 - 1556: 22,22 - 1557: 24,22 - 1558: 23,24 - 1559: 24,24 - 1560: 24,25 - 1561: 23,23 - 1562: 23,22 - 1563: 22,25 - 1611: 38,35 - 1612: 36,35 - 1613: 38,36 - 1614: 37,34 - 1615: 40,32 - 1616: 40,31 - 1617: 40,30 - 1683: 30,17 - 1684: 30,21 - 1685: 33,18 - 1686: 35,19 - 1687: 34,23 - 1688: 33,25 - 1689: 35,23 - 1690: 30,24 - 1691: 29,23 - 1692: 35,28 - 1693: 34,27 - 1694: 33,30 - 1695: 33,29 - 1696: 37,30 - 1697: 36,22 - 1709: 25,21 - 1710: 26,22 - 1711: 26,23 - 1712: 27,20 - 1713: 26,19 - 1714: 25,15 - 1833: 25,27 - 1834: 26,28 - 1835: 27,30 - 1836: 25,32 - 1837: 25,33 - 1838: 26,34 - 1839: 27,34 - 1852: 9,21 - 1853: 10,22 - 1854: 7,21 - 1855: 8,22 - 1856: 8,24 - 2308: 55,-15 - 2309: 55,-14 - 2310: 54,-14 - 2311: 55,-16 - 2312: 57,-16 - 2313: 57,-15 - 2314: 57,-14 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - decals: - 425: 38,-41 - 426: 39,-40 - 427: 40,-39 - 428: 45,-41 - 429: 45,-39 - 430: 43,-38 - 503: 17,-41 - 504: 23,-39 - 505: 21,-37 - 506: 18,-36 - 507: 26,-36 - 512: 31,-35 - 513: 30,-36 - 514: 28,-37 - 659: 21,-28 - 660: 14,-26 - 661: 13,-25 - 662: 25,-29 - 1286: 8,30 - 1287: 7,30 - 1288: 7,31 - 1289: 8,32 - 1371: 13,22 - 1372: 13,21 - 1373: 11,22 - 1374: 8,26 - 1375: 12,25 - 1376: 11,27 - 1423: 7,18 - 1424: 8,19 - 1531: 18,20 - 1532: 19,21 - 1533: 19,22 - 1534: 17,22 - 1535: 19,23 - 1536: 17,24 - 1551: 23,21 - 1607: 39,30 - 1608: 37,33 - 1609: 37,34 - 1610: 39,34 - 2306: 56,-14 - 2307: 55,-16 - - node: - color: '#FFFFFFFF' - id: FlowersBRThree - decals: - 844: 46.966167,-9.531703 - - node: - color: '#FFFFFFFF' - id: FlowersBRTwo - decals: - 845: 46.013042,-9.281703 - - node: - color: '#FFFFFFFF' - id: Flowersy1 - decals: - 843: 46.528667,-10.391078 - - node: - color: '#FFFFFFFF' - id: Flowersy4 - decals: - 842: 45.934917,-10.937953 - - node: - color: '#00000026' - id: FullTileOverlayGreyscale - decals: - 994: 24,-6 - 995: 24,-6 - 996: 24,-5 - 997: 24,-5 - - node: - color: '#0000004D' - id: FullTileOverlayGreyscale - decals: - 1575: 24,17 - 1576: 24,17 - 1577: 24,18 - 1578: 24,18 - - node: - color: '#9FED581F' - id: FullTileOverlayGreyscale - decals: - 1753: 31,48 - 1754: 32,48 - 1755: 29,48 - 1756: 30,48 - - node: - color: '#9FED5834' - id: FullTileOverlayGreyscale - decals: - 860: 42,-9 - 884: 42,-11 - 885: 42,-10 - 886: 43,-10 - 887: 43,-11 - 888: 44,-11 - 889: 44,-10 - - node: - color: '#9FED5896' - id: FullTileOverlayGreyscale - decals: - 2344: 53,-2 - 2345: 53,0 - 2382: 68,5 - 2383: 68,6 - 2445: 68,4 - 2446: 68,3 - - node: - color: '#A4610696' - id: FullTileOverlayGreyscale - decals: - 1277: 8,29 - 1278: 9,29 - 1487: 16,20 - 1488: 16,22 - 1489: 21,20 - 1490: 21,21 - - node: - color: '#D4D4D40C' - id: FullTileOverlayGreyscale - decals: - 1742: 28,44 - 1743: 26,44 - - node: - color: '#DE3A3A31' - id: FullTileOverlayGreyscale - decals: - 1757: 25,48 - 1758: 24,48 - 1759: 23,48 - 1760: 22,48 - - node: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - decals: - 35: 36,20 - 46: 36,28 - 47: 36,27 - 48: 36,26 - 49: 36,25 - 64: 32,27 - 92: 31,18 - 93: 31,20 - 1658: 27,23 - 1659: 27,24 - - node: - color: '#EFCC4125' - id: FullTileOverlayGreyscale - decals: - 1059: 21,-31 - - node: - color: '#EFCC4193' - id: FullTileOverlayGreyscale - decals: - 368: 24,-29 - 369: 28,-29 - - node: - color: '#F5E8281F' - id: FullTileOverlayGreyscale - decals: - 248: 20,-33 - 249: 20,-32 - 250: 20,-31 - 251: 21,-32 - 252: 21,-33 - 253: 22,-33 - 254: 22,-32 - 255: 22,-31 - 256: 23,-31 - 257: 23,-32 - 258: 23,-33 - 259: 32,-31 - 260: 31,-31 - 261: 30,-31 - 262: 29,-31 - 263: 29,-32 - 264: 30,-32 - 265: 31,-32 - 266: 32,-32 - 267: 32,-33 - 268: 31,-33 - 269: 30,-33 - 270: 29,-33 - 271: 28,-33 - 272: 28,-34 - 273: 28,-32 - 274: 27,-34 - 275: 27,-33 - 276: 27,-32 - 277: 26,-32 - 278: 26,-33 - 279: 26,-34 - 280: 25,-34 - 281: 25,-33 - 282: 25,-32 - 283: 24,-32 - 284: 24,-33 - 285: 24,-34 - - node: - color: '#FFFFFFFF' - id: Grassd1 - decals: - 839: 46.966167,-10.031703 - - node: - color: '#FFFFFFFF' - id: Grassd3 - decals: - 841: 46.075542,-9.266078 - - node: - color: '#FFFFFFFF' - id: Grasse1 - decals: - 840: 46.950542,-9.281703 - - node: - color: '#FFFFFFFF' - id: Grasse3 - decals: - 836: 46.966167,-10.891078 - 837: 46.091167,-10.859828 - 838: 46.263042,-10.062953 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale - decals: - 229: 27,46 - 230: 28,46 - 231: 26,46 - 1768: 26,37 - 1769: 27,37 - 1770: 28,37 - 1771: 27,36 - 1772: 27,35 - 1908: 10,-6 - 1909: 11,-6 - 1910: 12,-6 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale - decals: - 2457: 50,4 - 2495: 74,8 - 2496: 73,8 - 2497: 71,8 - 2498: 72,8 - - node: - color: '#9FED5847' - id: HalfTileOverlayGreyscale - decals: - 1749: 34,46 - 1750: 33,46 - 1751: 31,47 - 1752: 30,47 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale - decals: - 1804: 48,0 - 1805: 49,0 - 1806: 50,0 - 1807: 51,0 - 2249: 78,-4 - 2250: 79,-4 - 2251: 81,-4 - 2358: 77,5 - 2363: 79,2 - 2364: 80,2 - 2365: 81,2 - 2376: 75,2 - 2377: 74,2 - 2378: 73,2 - 2379: 72,2 - 2380: 70,2 - 2381: 69,2 - 2447: 68,2 - 2449: 57,3 - 2450: 55,3 - 2451: 54,3 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale - decals: - 187: 7,19 - 188: 9,19 - 1240: 10,28 - 1241: 9,28 - 1242: 8,28 - 1249: 14,25 - 1253: 11,28 - - node: - color: '#D0B78BFF' - id: HalfTileOverlayGreyscale - decals: - 118: 53,-4 - 120: 52,-4 - 125: 49,-5 - 126: 50,-5 - 127: 51,-5 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale - decals: - 26: 62,25 - 27: 63,25 - 28: 64,25 - 2111: 53,11 - 2112: 52,11 - 2113: 51,11 - 2114: 50,11 - 2115: 48,11 - 2116: 49,11 - 2117: 55,11 - - node: - color: '#D4D4D428' - id: HalfTileOverlayGreyscale - decals: - 1045: 26,-4 - - node: - color: '#DE3A3A47' - id: HalfTileOverlayGreyscale - decals: - 1762: 24,47 - 1763: 23,47 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - decals: - 60: 33,30 - 73: 32,24 - 74: 31,24 - 75: 30,24 - 76: 29,24 - 77: 28,24 - 94: 36,31 - 95: 37,31 - 178: 36,24 - 1194: -2,-4 - - node: - color: '#EFB34128' - id: HalfTileOverlayGreyscale - decals: - 1766: 20,46 - 1767: 21,46 - - node: - color: '#EFCC4193' - id: HalfTileOverlayGreyscale - decals: - 305: 25,-36 - 306: 24,-36 - 307: 23,-36 - 308: 27,-36 - 309: 28,-36 - 310: 29,-36 - 313: 32,-35 - 316: 20,-35 - 317: 19,-35 - 329: 16,-34 - 350: 14,-24 - 351: 15,-24 - 352: 16,-24 - 353: 17,-24 - 354: 18,-24 - 355: 19,-24 - 356: 20,-24 - 357: 21,-24 - - node: - color: '#EFCC4582' - id: HalfTileOverlayGreyscale - decals: - 477: 20,-39 - 478: 22,-39 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - decals: - 1951: 10,-2 - 1952: 11,-2 - 1953: 12,-2 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale180 - decals: - 1812: 50,1 - 2482: 71,4 - 2491: 73,4 - 2492: 72,4 - - node: - color: '#9FED5834' - id: HalfTileOverlayGreyscale180 - decals: - 1911: 12,-9 - 1912: 10,-9 - 1913: 11,-9 - - node: - color: '#9FED5837' - id: HalfTileOverlayGreyscale180 - decals: - 921: 46,-2 - 922: 45,-2 - 923: 44,-2 - 924: 43,-2 - 925: 42,-2 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale180 - decals: - 2257: 81,-8 - 2258: 80,-8 - 2259: 79,-8 - 2348: 53,2 - 2366: 81,1 - 2367: 80,1 - 2368: 79,1 - 2369: 78,1 - 2370: 76,1 - 2371: 75,1 - 2372: 74,1 - 2373: 73,1 - 2374: 70,1 - 2375: 71,1 - 2388: 68,0 - 2389: 67,0 - 2390: 66,0 - 2391: 64,0 - 2392: 63,0 - 2404: 60,-8 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale180 - decals: - 183: 8,15 - 184: 7,15 - 192: 9,15 - 1250: 12,21 - 1251: 11,21 - 1252: 10,21 - 1842: 9,21 - - node: - color: '#D0B78BFF' - id: HalfTileOverlayGreyscale180 - decals: - 116: 50,-3 - 117: 49,-3 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale180 - decals: - 32: 62,13 - - node: - color: '#D4D4D428' - id: HalfTileOverlayGreyscale180 - decals: - 1046: 26,-2 - - node: - 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 - 96: 36,30 - 99: 37,30 - 1195: -2,-6 - - node: - color: '#EFCC4193' - id: HalfTileOverlayGreyscale180 - decals: - 333: 16,-37 - 334: 17,-37 - 335: 25,-37 - 336: 26,-37 - 337: 27,-37 - 338: 28,-37 - 339: 29,-37 - 340: 30,-37 - 343: 16,-29 - 344: 15,-29 - 345: 14,-29 - 364: 19,-29 - 365: 20,-29 - 366: 22,-29 - - node: - color: '#EFCC4582' - id: HalfTileOverlayGreyscale180 - decals: - 474: 20,-44 - 475: 21,-44 - 476: 22,-44 - - node: - color: '#34A2C0B2' - id: HalfTileOverlayGreyscale270 - decals: - 959: 18,6 - 960: 18,7 - 961: 18,8 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale270 - decals: - 102: 49,3 - 103: 49,2 - 2436: 55,-6 - 2441: 55,-4 - 2484: 70,5 - 2485: 70,6 - 2486: 70,7 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale270 - decals: - 2248: 76,-5 - 2262: 78,-7 - 2340: 52,3 - 2341: 54,-2 - 2342: 54,-1 - 2343: 54,0 - 2346: 54,1 - 2356: 76,3 - 2357: 76,4 - 2402: 59,-5 - 2403: 59,-4 - 2464: 65,3 - 2465: 65,4 - 2466: 62,3 - 2467: 62,4 - 2468: 59,3 - 2469: 59,4 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale270 - decals: - 185: 7,16 - 186: 7,17 - 197: 7,18 - 1228: 7,22 - 1229: 7,23 - 1230: 7,24 - 1231: 7,25 - 1232: 7,26 - 1233: 7,27 - - node: - color: '#D0B78BFF' - id: HalfTileOverlayGreyscale270 - decals: - 128: 49,-9 - 129: 49,-8 - 130: 49,-7 - 131: 49,-6 - - 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 - 29: 58,18 - 2119: 47,10 - 2120: 47,9 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale270 - decals: - 62: 32,30 - 63: 32,29 - 65: 32,28 - 67: 33,27 - 68: 33,26 - 71: 33,25 - 83: 32,22 - 84: 32,21 - 85: 32,20 - 86: 32,19 - 87: 32,18 - 88: 32,17 - 1193: -3,-5 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale270 - decals: - 2639: 34,-49 - 2640: 34,-48 - 2641: 34,-47 - 2642: 34,-43 - - node: - color: '#EFCC4193' - id: HalfTileOverlayGreyscale270 - decals: - 324: 17,-30 - 325: 17,-31 - 326: 17,-32 - 327: 17,-33 - 332: 15,-36 - 347: 13,-26 - 348: 13,-25 - - node: - color: '#EFCC4582' - id: HalfTileOverlayGreyscale270 - decals: - 471: 19,-43 - 472: 19,-42 - 473: 19,-41 - - node: - color: '#34A2C0B2' - id: HalfTileOverlayGreyscale90 - decals: - 956: 19,6 - 957: 19,8 - 958: 19,7 - - node: - color: '#52B4E94D' - id: HalfTileOverlayGreyscale90 - decals: - 998: 24,-6 - 999: 24,-5 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale90 - decals: - 1814: 51,2 - 1815: 51,3 - 2435: 57,-5 - 2440: 57,-4 - 2493: 74,5 - 2494: 74,6 - - node: - color: '#5A5A5AFF' - id: HalfTileOverlayGreyscale90 - decals: - 216: 12,-35 - 217: 12,-36 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale90 - decals: - 1809: 52,-1 - 1810: 52,-2 - 2253: 82,-6 - 2254: 82,-5 - 2255: 82,-7 - 2354: 78,3 - 2355: 78,4 - 2393: 62,-1 - 2394: 62,-2 - 2395: 62,-3 - 2396: 62,-4 - 2397: 62,-5 - 2398: 62,-7 - 2458: 67,3 - 2459: 67,4 - 2460: 64,3 - 2461: 64,4 - 2462: 61,3 - 2463: 61,4 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale90 - decals: - 189: 9,18 - 190: 9,17 - 191: 9,16 - 1243: 13,27 - 1244: 13,26 - 1245: 15,24 - 1246: 15,23 - 1247: 15,22 - 1248: 15,21 - - node: - color: '#D0B78BFF' - id: HalfTileOverlayGreyscale90 - decals: - 121: 53,-5 - 122: 53,-6 - 123: 53,-7 - 124: 53,-8 - - 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 - 57: 34,30 - 179: 36,23 - 1192: -1,-5 - 1645: 27,17 - 1646: 27,18 - 1647: 27,19 - 1648: 27,20 - 1649: 27,21 - 1650: 27,26 - 1651: 27,27 - 1652: 27,28 - 1653: 27,29 - 1654: 27,30 - 1655: 27,31 - - node: - color: '#EFCC4193' - id: HalfTileOverlayGreyscale90 - decals: - 319: 18,-34 - 320: 18,-33 - 321: 18,-32 - 322: 18,-31 - 323: 18,-30 - 360: 22,-26 - 361: 22,-25 - 362: 23,-28 - - node: - color: '#EFCC4582' - id: HalfTileOverlayGreyscale90 - decals: - 468: 23,-43 - 469: 23,-42 - 470: 23,-41 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 1643: 39,24 - 1644: 40,24 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 1276: 9,26 - 1518: 23,25 - 1666: 31,18 - 1667: 31,20 - 2339: 52,0 - - node: - color: '#FFFFFFFF' - id: LoadingArea - decals: - 1516: 22,23 - 1517: 22,24 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 1221: 13,-2 - 1222: 14,-2 - 1223: 15,-2 - 1841: 9,24 - 2338: 52,-2 - - node: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 70: 32,25 - - node: - color: '#FFFFFFFF' - id: North - decals: - 1200: -17,-14 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale - decals: - 225: 28,39 - 226: 28,40 - 227: 28,41 - 228: 28,42 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale - decals: - 2541: 105,-19 - 2542: 106,-18 - 2543: 107,-19 - 2544: 103,-19 - 2545: 103,-17 - 2546: 106,-17 - 2547: 107,-20 - 2548: 106,-17 - 2549: 104,-16 - 2550: 104,-19 - 2551: 105,-19 - 2552: 104,-17 - 2553: 104,-18 - 2554: 108,-18 - 2555: 108,-16 - - node: - color: '#797C8250' - id: QuarterTileOverlayGreyscale - decals: - 2175: 54,15 - 2176: 54,15 - 2177: 55,15 - 2178: 55,15 - 2179: 56,15 - 2180: 56,15 - 2181: 57,15 - 2182: 57,15 - 2183: 58,15 - 2184: 58,15 - - node: - color: '#80C71FFF' - id: QuarterTileOverlayGreyscale - decals: - 2591: 106,-19 - 2592: 107,-17 - 2593: 103,-16 - 2594: 102,-20 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale - decals: - 2362: 76,2 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - decals: - 193: 7,15 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale - decals: - 31: 58,17 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale - decals: - 1109: -22,-13 - 1110: -21,-13 - 1111: -19,-13 - 1112: -18,-13 - 1113: -17,-13 - 1114: -16,-13 - 1115: -15,-13 - 1116: -14,-13 - 1117: -12,-13 - 1118: -11,-13 - 1119: -10,-13 - 1120: -9,-13 - 1121: -8,-13 - 1122: -7,-13 - 1123: -7,-12 - 1124: -7,-11 - 1125: -7,-10 - 1126: -7,-9 - 1127: -7,-8 - 1128: -7,-7 - 1201: 3,0 - 1202: 3,1 - 1203: 3,2 - 1204: 3,3 - 1205: 3,4 - 1206: 3,5 - 1207: 3,6 - 1208: 3,7 - 1209: 3,8 - 1210: 3,9 - 1211: 3,10 - 1212: 3,11 - 1213: 3,12 - 1214: 3,13 - 1215: 4,13 - 1216: 6,13 - 1217: 5,13 - 1579: 25,17 - 1580: 25,18 - 1581: 25,19 - 1582: 25,20 - 1583: 25,21 - 1584: 25,22 - 1585: 25,23 - 1586: 25,24 - 1587: 25,25 - 1588: 35,29 - 1798: 25,26 - 1992: 18,1 - 1993: 19,1 - 1994: 20,1 - 1995: 21,1 - 1996: 22,1 - 1997: 23,1 - 1998: 24,1 - 1999: 25,1 - 2000: 25,2 - 2001: 25,3 - 2050: 39,15 - 2051: 40,15 - 2052: 41,15 - 2053: 43,15 - 2054: 42,15 - 2055: 44,15 - 2056: 45,15 - 2057: 45,16 - 2058: 45,17 - 2059: 45,18 - 2060: 45,19 - 2061: 46,19 - 2062: 47,19 - 2063: 40,11 - 2064: 40,10 - 2065: 40,8 - 2066: 40,7 - 2067: 40,9 - 2068: 40,6 - 2069: 40,5 - 2070: 40,4 - 2071: 40,3 - - node: - color: '#D5188DFF' - id: QuarterTileOverlayGreyscale - decals: - 2579: 103,-18 - 2580: 106,-16 - 2581: 108,-20 - 2582: 103,-21 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale - decals: - 54: 35,28 - 58: 34,30 - 61: 32,30 - 72: 33,24 - 100: 36,30 - 784: 24,-25 - 785: 24,-24 - 1000: 27,5 - 1001: 26,5 - 1002: 25,5 - 1003: 25,6 - 1004: 26,6 - 1005: 26,6 - 1006: 25,6 - 1007: 25,5 - 1008: 26,5 - 1009: 27,5 - 1010: 27,6 - 1011: 27,6 - 1012: 27,7 - 1013: 27,7 - 1014: 26,7 - 1015: 26,7 - 1016: 25,7 - 1017: 25,7 - 1018: 25,8 - 1019: 25,8 - 1020: 26,8 - 1021: 26,8 - 1022: 27,8 - 1023: 27,8 - 1152: -7,0 - 1153: -6,0 - 1154: -2,0 - 1155: -1,0 - 1156: 0,0 - 1157: 1,0 - 1158: 2,0 - 1634: 38,24 - 1635: 38,23 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - decals: - 1944: 12,-8 - 1946: 11,-8 - 1947: 10,-8 - - node: - color: '#EFCC4193' - id: QuarterTileOverlayGreyscale - decals: - 311: 30,-36 - 328: 17,-34 - - node: - color: '#0E7F1BFF' - id: QuarterTileOverlayGreyscale180 - decals: - 2583: 102,-21 - 2584: 104,-20 - 2585: 107,-16 - 2586: 108,-18 - 2587: 102,-16 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale180 - decals: - 1950: 9,-2 - 2556: 104,-19 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale180 - decals: - 786: 28,-25 - 787: 28,-24 - 2499: 74,7 - - node: - color: '#797979AB' - id: QuarterTileOverlayGreyscale180 - decals: - 1024: 27,5 - 1025: 26,5 - 1026: 25,5 - 1027: 25,6 - 1028: 26,6 - 1029: 27,6 - 1030: 27,7 - 1031: 26,7 - 1032: 25,7 - 1033: 25,8 - 1034: 26,8 - 1035: 27,8 - - node: - color: '#797C8250' - id: QuarterTileOverlayGreyscale180 - decals: - 2147: 60,13 - 2148: 60,13 - 2149: 59,13 - 2150: 59,13 - 2151: 58,13 - 2152: 58,13 - 2153: 58,12 - 2154: 58,12 - 2155: 58,8 - 2156: 58,8 - 2185: 64,13 - 2186: 64,13 - 2187: 64,14 - 2188: 64,14 - 2195: 60,17 - 2196: 60,17 - 2197: 60,18 - 2198: 60,18 - 2199: 60,19 - 2200: 60,19 - 2201: 60,20 - 2202: 60,20 - 2219: 54,22 - 2220: 54,22 - 2221: 55,22 - 2222: 55,22 - 2223: 56,22 - 2224: 56,22 - 2225: 57,22 - 2226: 57,22 - - node: - color: '#80C71FFF' - id: QuarterTileOverlayGreyscale180 - decals: - 2595: 108,-20 - 2596: 103,-21 - - node: - color: '#951710FF' - id: QuarterTileOverlayGreyscale180 - decals: - 2588: 107,-20 - - node: - color: '#9FED5837' - id: QuarterTileOverlayGreyscale180 - decals: - 927: 41,-2 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale180 - decals: - 2386: 69,1 - 2400: 62,0 - 2524: 105,-17 - 2525: 106,-18 - 2526: 103,-19 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - decals: - 196: 9,19 - - node: - color: '#D0B78BFF' - id: QuarterTileOverlayGreyscale180 - decals: - 119: 53,-4 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale180 - decals: - 33: 61,13 - 2576: 106,-19 - 2577: 108,-17 - 2578: 108,-19 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale180 - decals: - 985: 27,-13 - 986: 27,-12 - 987: 27,-11 - 988: 27,-10 - 989: 27,-9 - 990: 27,-8 - 991: 27,-7 - 992: 27,-6 - 993: 27,-5 - 1168: -6,-14 - 1169: -6,-13 - 1170: -6,-12 - 1171: -6,-11 - 1172: -6,-10 - 1173: -6,-9 - 1174: -6,-8 - 1175: -6,-7 - 1176: -6,-6 - 1177: -6,-5 - 1178: -6,-4 - 1179: -6,-3 - 1180: -6,-2 - 1181: -5,-2 - 1182: -4,-2 - 1183: -3,-2 - 1184: -2,-2 - 1185: -1,-2 - 1186: 0,-2 - 1187: 1,-2 - 1799: 27,33 - 1800: 27,34 - 1801: 28,34 - 1802: 28,35 - 1803: 28,36 - 2016: 38,-1 - 2017: 37,-1 - 2018: 36,-1 - 2019: 35,-1 - 2020: 34,-1 - 2021: 33,-1 - 2022: 32,-1 - 2023: 32,-1 - 2024: 31,-1 - 2025: 30,-1 - 2026: 29,-1 - 2027: 28,-1 - 2028: 27,-1 - 2037: 13,-1 - 2038: 14,-1 - 2039: 16,-1 - 2040: 15,-1 - - node: - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale180 - decals: - 1075: -22,-15 - 1076: -21,-15 - 1077: -20,-15 - 1078: -19,-15 - 1079: -18,-15 - 1080: -17,-15 - 1081: -16,-15 - 1082: -15,-15 - 1083: -14,-15 - 1084: -13,-15 - 1085: -12,-15 - 1086: -11,-15 - 1087: -10,-15 - 1088: -9,-15 - 1089: -8,-15 - 1090: -7,-15 - 1091: -6,-15 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - decals: - 40: 35,21 - 66: 32,28 - 89: 32,17 - 97: 37,31 - 180: 36,24 - 2516: 105,-19 - 2517: 104,-18 - 2518: 106,-16 - 2519: 107,-17 - 2520: 107,-19 - 2521: 103,-17 - 2522: 102,-18 - 2523: 103,-20 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale180 - decals: - 1945: 11,-7 - 1948: 10,-7 - 1949: 9,-7 - - node: - color: '#EFCC2E82' - id: QuarterTileOverlayGreyscale180 - decals: - 768: 27,-14 - 769: 27,-15 - 770: 27,-16 - 771: 27,-17 - 772: 27,-18 - 773: 27,-19 - 774: 27,-20 - 775: 27,-21 - 776: 27,-22 - 777: 27,-23 - 778: 27,-24 - 779: 27,-25 - - node: - color: '#EFCC4193' - id: QuarterTileOverlayGreyscale180 - decals: - 342: 18,-29 - - node: - color: '#EFCC4593' - id: QuarterTileOverlayGreyscale180 - decals: - 793: 22,-20 - 794: 22,-19 - 795: 22,-18 - 796: 22,-17 - 797: 22,-16 - - node: - color: '#FED83DFF' - id: QuarterTileOverlayGreyscale180 - decals: - 2557: 105,-16 - 2558: 106,-17 - 2559: 105,-20 - 2560: 102,-20 - 2561: 102,-17 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale270 - decals: - 1959: 8,-2 - - node: - color: '#3C44AAFF' - id: QuarterTileOverlayGreyscale270 - decals: - 2566: 104,-16 - 2567: 102,-19 - 2568: 107,-17 - 2569: 108,-16 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale270 - decals: - 1092: -22,-15 - 1093: -21,-15 - 1094: -20,-15 - 1095: -19,-15 - 1096: -18,-15 - 1097: -17,-15 - 1098: -16,-15 - 1099: -15,-15 - 1100: -14,-15 - 1101: -13,-15 - 1102: -12,-15 - 1103: -11,-15 - 1104: -10,-15 - 1105: -9,-15 - 1106: -8,-15 - 1107: -7,-15 - 1108: -6,-15 - - node: - color: '#797C8250' - id: QuarterTileOverlayGreyscale270 - decals: - 2157: 57,8 - 2158: 57,8 - 2159: 57,9 - 2160: 57,9 - 2161: 57,10 - 2162: 57,10 - 2163: 57,11 - 2164: 57,11 - 2165: 57,12 - 2166: 57,12 - 2167: 57,13 - 2168: 57,13 - 2169: 56,13 - 2170: 56,13 - 2171: 55,13 - 2172: 55,13 - 2173: 54,13 - 2174: 54,13 - 2203: 58,20 - 2204: 58,20 - - node: - color: '#951710FF' - id: QuarterTileOverlayGreyscale270 - decals: - 2589: 103,-19 - 2590: 105,-16 - - node: - color: '#9FED5837' - id: QuarterTileOverlayGreyscale270 - decals: - 926: 47,-2 - - node: - color: '#9FED5853' - id: QuarterTileOverlayGreyscale270 - decals: - 1954: 5,-2 - 1955: 6,-2 - 1956: 7,-2 - 1957: 4,-2 - 1958: 3,-2 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale270 - decals: - 2261: 78,-6 - 2347: 54,2 - 2527: 106,-19 - 2528: 105,-18 - 2529: 103,-16 - 2530: 102,-17 - 2531: 103,-18 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale270 - decals: - 195: 7,19 - 1254: 13,21 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale270 - decals: - 30: 58,19 - 34: 63,13 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale270 - decals: - 930: 8,9 - 931: 9,9 - 932: 10,9 - 933: 11,9 - 934: 12,9 - 935: 13,9 - 936: 14,9 - 937: 15,9 - 938: 16,9 - 939: 17,9 - 940: 18,9 - 941: 19,9 - 970: 22,15 - 971: 21,15 - 972: 20,15 - 976: 25,-13 - 977: 25,-12 - 978: 25,-11 - 979: 25,-10 - 980: 25,-9 - 981: 25,-8 - 982: 25,-7 - 983: 25,-6 - 984: 25,-5 - 1129: -7,-5 - 1130: -7,-4 - 1131: -7,-3 - 1132: -7,-2 - 1133: -7,-1 - 1134: -7,0 - 1725: 37,13 - 1726: 36,13 - 1727: 35,13 - 1728: 34,13 - 1729: 33,13 - 1730: 32,13 - 1731: 31,13 - 1732: 30,13 - 1733: 29,13 - 1734: 28,13 - 1735: 25,12 - 1736: 25,13 - 1737: 25,14 - 1738: 25,15 - 1782: 17,35 - 1783: 18,35 - 1784: 19,35 - 1785: 20,35 - 1786: 21,35 - 1787: 22,35 - 1788: 23,35 - 1789: 24,35 - 1790: 25,35 - 1791: 25,34 - 1792: 25,33 - 1793: 25,32 - 1794: 25,31 - 1795: 25,30 - 1796: 25,29 - 1797: 25,28 - 2029: 25,-1 - 2030: 24,-1 - 2031: 23,-1 - 2032: 22,-1 - 2033: 21,-1 - 2034: 20,-1 - 2035: 19,-1 - 2036: 18,-1 - 2041: 39,13 - 2042: 40,13 - 2043: 41,13 - 2044: 42,13 - 2045: 43,13 - 2046: 44,13 - 2047: 45,13 - 2048: 46,13 - 2049: 47,13 - 2510: 40,-1 - 2511: 41,-1 - 2512: 41,-2 - - node: - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale270 - decals: - 780: 24,-25 - 781: 24,-24 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale270 - decals: - 42: 36,16 - 43: 35,17 - 69: 33,28 - 82: 32,23 - 101: 36,31 - - node: - color: '#EFCC2E82' - id: QuarterTileOverlayGreyscale270 - decals: - 756: 25,-25 - 757: 25,-24 - 758: 25,-23 - 759: 25,-22 - 760: 25,-21 - 761: 25,-20 - 762: 25,-19 - 763: 25,-18 - 764: 25,-17 - 765: 25,-16 - 766: 25,-15 - 767: 25,-14 - - node: - color: '#EFCC4193' - id: QuarterTileOverlayGreyscale270 - decals: - 341: 17,-29 - - node: - color: '#EFCC4593' - id: QuarterTileOverlayGreyscale270 - decals: - 788: 20,-20 - 789: 20,-19 - 790: 20,-18 - 791: 20,-17 - 792: 20,-16 - - node: - color: '#F9801DFF' - id: QuarterTileOverlayGreyscale270 - decals: - 2562: 105,-17 - 2563: 104,-17 - 2564: 107,-18 - 2565: 106,-20 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale90 - decals: - 221: 26,39 - 222: 26,40 - 223: 26,41 - 224: 26,42 - - node: - color: '#797C8250' - id: QuarterTileOverlayGreyscale90 - decals: - 2189: 64,16 - 2190: 64,16 - 2191: 63,16 - 2192: 63,16 - 2193: 62,16 - 2194: 62,16 - 2205: 60,25 - 2206: 60,25 - 2207: 59,25 - 2208: 59,25 - 2209: 58,25 - 2210: 58,25 - 2211: 57,25 - 2212: 57,25 - 2213: 56,25 - 2214: 56,25 - 2215: 55,25 - 2216: 55,25 - 2217: 54,25 - 2218: 54,25 - - node: - color: '#8932B8FF' - id: QuarterTileOverlayGreyscale90 - decals: - 2570: 105,-20 - 2571: 102,-16 - 2572: 107,-18 - 2573: 105,-18 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale90 - decals: - 2361: 78,2 - 2452: 53,3 - 2470: 67,2 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale90 - decals: - 194: 9,15 - 1255: 13,25 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale90 - decals: - 2574: 104,-19 - 2575: 104,-16 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale90 - decals: - 942: 8,10 - 943: 9,10 - 944: 10,10 - 945: 11,10 - 946: 12,10 - 947: 13,10 - 948: 14,10 - 949: 15,10 - 950: 16,10 - 951: 17,10 - 952: 18,10 - 953: 19,10 - 973: 19,12 - 974: 20,12 - 975: 21,12 - 1715: 28,15 - 1716: 29,15 - 1717: 30,15 - 1718: 31,15 - 1719: 32,15 - 1720: 33,15 - 1721: 34,15 - 1722: 35,15 - 1723: 36,15 - 1724: 37,15 - 1773: 25,37 - 1774: 24,37 - 1775: 23,37 - 1776: 22,37 - 1777: 21,37 - 1778: 20,37 - 1779: 19,37 - 1780: 18,37 - 1781: 17,37 - 1960: 16,1 - 1961: 15,1 - 1962: 14,1 - 1963: 13,1 - 1964: 12,1 - 1965: 11,1 - 1966: 10,1 - 1967: 9,1 - 1968: 8,1 - 1969: 7,1 - 1970: 6,1 - 1971: 6,2 - 1972: 6,3 - 1973: 6,4 - 1974: 6,5 - 1975: 6,7 - 1976: 6,6 - 1977: 6,8 - 1978: 6,11 - 1979: 6,12 - 1980: 6,13 - 2002: 27,3 - 2003: 27,2 - 2004: 27,1 - 2005: 28,1 - 2006: 29,1 - 2007: 30,1 - 2008: 31,1 - 2009: 32,1 - 2010: 33,1 - 2011: 34,1 - 2012: 35,1 - 2013: 36,1 - 2014: 37,1 - 2015: 38,1 - 2072: 42,3 - 2073: 42,4 - 2074: 42,5 - 2075: 42,6 - 2076: 42,7 - 2077: 42,8 - 2078: 42,9 - 2079: 42,10 - 2080: 42,11 - 2503: 47,0 - 2504: 46,0 - 2505: 45,0 - 2506: 44,0 - 2507: 43,0 - 2508: 42,0 - 2509: 42,1 - - node: - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale90 - decals: - 782: 28,-25 - 783: 28,-24 - 1145: -7,0 - 1146: -6,0 - 1147: -2,0 - 1148: -1,0 - 1149: 0,0 - 1150: 1,0 - 1151: 2,0 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale90 - decals: - 45: 36,21 - 55: 34,28 - 59: 32,30 - 98: 37,30 - 177: 35,24 - 1636: 41,24 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - decals: - 2532: 107,-19 - 2533: 105,-19 - 2534: 103,-18 - 2535: 103,-19 - 2536: 104,-20 - 2537: 107,-17 - 2538: 104,-17 - 2539: 103,-17 - 2540: 106,-19 - - node: - color: '#EFCC4193' - id: QuarterTileOverlayGreyscale90 - decals: - 314: 22,-36 - 318: 18,-35 - 359: 22,-27 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Remains - decals: - 2515: 11,-11 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign1 - decals: - 1042: 23,0 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign2 - decals: - 1041: 24,0 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign3 - decals: - 1040: 25,0 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign4 - decals: - 1036: 26,0 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign5 - decals: - 1037: 27,0 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign6 - decals: - 1038: 28,0 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign7 - decals: - 1039: 29,0 - - node: - color: '#FED83DFF' - id: StandClear - decals: - 9: 12,-28 - 10: 12,-27 - - node: - color: '#FFFFFFFF' - id: StandClear - decals: - 1137: -6,-17 - 1414: 8,29 - 1415: 9,29 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale - decals: - 2455: 49,4 - 2487: 70,8 - - node: - color: '#9FED5847' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1746: 29,47 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale - decals: - 2263: 76,-4 - 2360: 76,5 - 2454: 52,4 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1234: 7,28 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale - decals: - 2118: 47,11 - - node: - color: '#D4D4D428' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1043: 25,-4 - - node: - color: '#DE3A3A47' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1764: 22,47 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1189: -3,-4 - - node: - color: '#EFB34128' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1765: 19,46 - - node: - color: '#EFCC4193' - id: ThreeQuarterTileOverlayGreyscale - decals: - 312: 30,-35 - 330: 15,-34 - 349: 13,-24 - - node: - color: '#EFCC4582' - id: ThreeQuarterTileOverlayGreyscale - decals: - 482: 19,-39 - - node: - color: '#34A2C0B2' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 955: 19,5 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1813: 51,1 - 2434: 57,-8 - 2489: 75,7 - 2490: 74,4 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 2256: 82,-8 - 2387: 69,0 - 2399: 62,-8 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1237: 15,20 - - node: - color: '#D4D4D428' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1048: 27,-2 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1191: -1,-6 - 1657: 27,25 - - node: - color: '#EFCC2E82' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 755: 27,-26 - - node: - color: '#EFCC4193' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 367: 23,-29 - - node: - color: '#EFCC4582' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 479: 23,-44 - - node: - color: '#34A2C0B2' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 954: 18,5 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 1811: 49,1 - 2433: 55,-8 - 2483: 70,4 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 2247: 76,-6 - 2260: 78,-8 - 2349: 52,2 - 2401: 59,-8 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 1235: 7,21 - 1236: 13,20 - - node: - color: '#D4D4D428' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 1047: 25,-2 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 1190: -3,-6 - - node: - color: '#EFCC2E82' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 754: 25,-26 - - node: - color: '#EFCC4193' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 331: 15,-37 - 346: 13,-29 - - node: - color: '#EFCC4582' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 480: 19,-44 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 2456: 51,4 - 2488: 75,8 - - node: - color: '#9FED5847' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1747: 32,47 - 1748: 35,46 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1808: 52,0 - 2252: 82,-4 - 2359: 78,5 - 2448: 58,3 - 2453: 53,4 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1238: 15,25 - 1239: 13,28 - - node: - color: '#D4D4D428' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1044: 27,-4 - - node: - color: '#DE3A3A47' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1761: 25,47 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1188: -1,-4 - 1656: 27,22 - - node: - color: '#EFCC4193' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 315: 22,-35 - 358: 22,-24 - 363: 23,-27 - - node: - color: '#EFCC4582' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 481: 23,-39 - - node: - color: '#FFFFFFFF' - id: VentSmall - decals: - 1830: 23,-12 - 1831: 26,-8 - 1832: 30,-11 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarnCorner - decals: - 211: 3,-33 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: WarnCorner - decals: - 210: 3,-30 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: WarnCornerFlipped - decals: - 206: 2,-30 - - node: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: WarnCornerFlipped - decals: - 207: 2,-33 - - node: - color: '#FFFFFFFF' - id: WarnCornerNE - decals: - 1632: 40,27 - 2294: 57,-14 - - node: - color: '#FFFFFFFF' - id: WarnCornerNW - decals: - 236: 55,10 - 247: 49,9 - 1631: 39,27 - 2293: 54,-14 - 2625: 36,-44 - - node: - color: '#FFFFFFFF' - id: WarnCornerSE - decals: - 1630: 40,26 - 2291: 57,-16 - - node: - color: '#FFFFFFFF' - id: WarnCornerSW - decals: - 1633: 39,26 - 2292: 54,-16 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallGreyscaleNE - decals: - 1935: 9,-7 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallGreyscaleSE - decals: - 1936: 9,-8 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNE - decals: - 1413: 7,28 - 1642: 38,24 - 1665: 27,21 - 2606: 39,-49 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNW - decals: - 237: 55,9 - 1412: 10,28 - 1641: 41,24 - 2605: 41,-49 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSE - decals: - 1136: -7,-15 - 1664: 27,26 - 2608: 39,-45 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSW - decals: - 2607: 41,-45 - - node: - color: '#FFFFFFFF' - id: WarnFull - decals: - 1639: 40,25 - 1640: 39,25 - 2287: 77,0 - 2290: 77,-3 - - node: - color: '#52B4E996' - id: WarnFullGreyscale - decals: - 2481: 71,3 - - node: - color: '#D381C996' - id: WarnFullGreyscale - decals: - 2140: 57,18 - - node: - color: '#FFFFFFFF' - id: WarnFullGreyscale - decals: - 402: 14,-35 - 451: 31,-38 - 452: 32,-38 - 486: 24,-40 - 487: 18,-40 - 1052: 28,-29 - 1053: 24,-29 - 1054: 31,-30 - 1055: 31,-34 - 1056: 26,-35 - 1057: 21,-34 - 1058: 21,-30 - 1262: 12,29 - 1266: 8,20 - 2471: 61,-9 - - node: - color: '#FFFFFFFF' - id: WarnLineE - decals: - 1660: 27,22 - 1661: 27,23 - 1662: 27,24 - 1663: 27,25 - 2296: 57,-15 - 2602: 39,-48 - 2603: 39,-46 - 2604: 39,-47 - - node: - color: '#9FED5896' - id: WarnLineGreyscaleE - decals: - 2406: 62,-6 - - node: - color: '#D381C996' - id: WarnLineGreyscaleE - decals: - 2139: 56,18 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleE - decals: - 380: 27,-29 - 401: 13,-35 - 484: 23,-40 - 489: 17,-40 - 1520: 24,20 - 1521: 24,21 - 1522: 24,23 - 1523: 24,22 - 1524: 24,24 - 1525: 24,25 - 1930: 9,-9 - 1931: 9,-10 - 1932: 9,-6 - 1933: 9,-5 - 1934: 9,-4 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleN - decals: - 2412: 61,0 - 2413: 60,0 - 2414: 58,0 - 2415: 57,0 - 2480: 71,2 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleN - decals: - 375: 26,-36 - 376: 31,-35 - 377: 21,-35 - 378: 26,-28 - 453: 32,-39 - 454: 31,-39 - 485: 21,-39 - 1263: 12,28 - 1265: 8,19 - 1924: 10,-7 - 1925: 11,-7 - 1926: 12,-7 - 2408: 59,-4 - 2409: 60,-4 - 2410: 61,-4 - 2411: 62,-4 - 2442: 57,-4 - 2443: 56,-4 - 2444: 55,-4 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleS - decals: - 2416: 61,-2 - 2417: 60,-2 - 2418: 58,-2 - 2419: 57,-2 - 2420: 59,-2 - 2439: 56,-8 - - node: - color: '#9FED5896' - id: WarnLineGreyscaleS - decals: - 2384: 77,1 - 2385: 72,1 - 2405: 61,-8 - 2407: 65,0 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleS - decals: - 381: 21,-29 - 382: 31,-37 - 383: 32,-37 - 733: 38,-37 - 734: 39,-37 - 735: 40,-37 - 858: 42,-8 - 1264: 14,20 - 1843: 8,21 - 1927: 12,-8 - 1928: 11,-8 - 1929: 10,-8 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleW - decals: - 2437: 55,-7 - 2438: 55,-5 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleW - decals: - 379: 25,-29 - 384: 15,-35 - 386: 13,-28 - 387: 13,-27 - 483: 19,-40 - 488: 25,-40 - 499: 16,-42 - 859: 41,-4 - 1937: 8,-5 - 1938: 8,-4 - 1939: 8,-6 - 1940: 8,-7 - 1941: 8,-8 - 1942: 8,-9 - 1943: 8,-10 - 2500: 69,0 - 2501: 69,1 - 2502: 69,2 - - node: - color: '#FFFFFFFF' - id: WarnLineN - decals: - 1135: -6,-15 - 2090: 51,13 - 2091: 50,13 - 2092: 49,13 - 2288: 78,-2 - 2289: 77,-2 - 2297: 56,-16 - 2298: 55,-16 - 2423: 61,-2 - 2424: 60,-2 - 2425: 59,-2 - 2426: 58,-2 - 2427: 57,-2 - 2597: 40,-45 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 2295: 54,-15 - 2598: 41,-46 - 2599: 41,-47 - 2600: 41,-48 - 2614: 46,-49 - 2615: 46,-48 - 2616: 46,-47 - 2617: 46,-46 - 2618: 46,-45 - 2634: 36,-49 - 2635: 36,-48 - 2636: 36,-47 - 2637: 36,-46 - 2638: 36,-45 - - node: - color: '#FFFFFFFF' - id: WarnLineW - decals: - 218: 13,37 - 219: 14,37 - 220: 15,37 - 232: 19,41 - 233: 18,41 - 234: 17,41 - 238: 54,9 - 239: 53,9 - 240: 52,9 - 245: 51,9 - 246: 50,9 - 799: 22,-16 - 800: 21,-16 - 801: 20,-16 - 1410: 8,28 - 1411: 9,28 - 1637: 40,24 - 1638: 39,24 - 2093: 51,15 - 2094: 50,15 - 2095: 49,15 - 2285: 77,-1 - 2286: 78,-1 - 2299: 56,-14 - 2300: 55,-14 - 2428: 61,0 - 2429: 60,0 - 2430: 59,0 - 2431: 58,0 - 2432: 57,0 - 2601: 40,-49 - 2626: 37,-44 - 2627: 38,-44 - 2628: 39,-44 - 2629: 40,-44 - 2630: 41,-44 - 2631: 42,-44 - 2632: 44,-44 - 2633: 43,-44 - - node: - color: '#FED83DFF' - id: WarningLine - decals: - 0: 19,-37 - 1: 20,-37 - 2: 21,-37 - 3: 22,-37 - 4: 23,-37 - 5: 18,-37 - 6: 24,-37 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarningLine - decals: - 175: 36,21 - 176: 36,22 - 181: 36,23 - 182: 36,24 - 212: 3,-32 - 213: 3,-31 - - node: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: WarningLine - decals: - 208: 2,-32 - 209: 2,-31 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNe - decals: - 1903: 20,-3 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNw - decals: - 1901: 18,-3 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSe - decals: - 1906: 20,-6 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSw - decals: - 1898: 18,-6 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - decals: - 832: 40,-13 - 833: 40,-12 - 834: 40,-11 - 835: 40,-10 - 1822: 21,-13 - 1823: 21,-12 - 1824: 21,-11 - 1825: 21,-10 - 1904: 20,-4 - 1905: 20,-5 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 1139: -2,-11 - 1140: -3,-11 - 1141: -4,-11 - 1902: 19,-3 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - decals: - 1907: 19,-6 - 2643: 36,43 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - decals: - 828: 38,-13 - 829: 38,-12 - 830: 38,-11 - 831: 38,-10 - 1899: 18,-5 - 1900: 18,-4 - - node: - cleanable: True - angle: -4.71238898038469 rad - color: '#00000060' - id: footprint - decals: - 1319: 8.005591,29.808443 - 1320: 8.443091,30.551498 - 1321: 7.7903137,30.363998 - 1322: 7.5403137,30.107054 - 1323: 6.6653137,30.752888 - 1324: 7.7486477,31.218166 - 1325: 7.929203,31.732056 - 1326: 8.665314,31.08622 - 1327: 7.4153137,31.32233 - 1328: 8.116703,30.454277 - 1329: 8.651425,31.044556 - 1339: 7.8406677,26.12399 - 1340: 8.559418,25.93649 - 1341: 8.918793,26.452114 - 1342: 7.8875427,25.56149 - - node: - cleanable: True - angle: -3.141592653589793 rad - color: '#00000060' - id: footprint - decals: - 1330: 7.9222584,30.25727 - 1331: 8.206981,29.875326 - 1332: 8.054203,29.31977 - 1333: 8.387536,28.916994 - 1334: 8.068091,28.375326 - 1335: 8.401425,28.000326 - 1336: 8.165314,27.666994 - 1337: 8.540314,27.41005 - 1338: 9.262536,27.312826 - - node: - angle: -1.5707963267948966 rad - color: '#00000060' - id: footprint - decals: - 1455: 8.091304,16.603054 - 1456: 8.320471,16.964165 - 1457: 7.820471,17.39472 - 1458: 8.362137,16.922499 - 1459: 8.091304,17.797499 - 1460: 8.132971,18.061386 - 1461: 7.834359,18.25583 - 1462: 8.382971,18.450275 - 1463: 8.445471,17.83222 - - node: - cleanable: True - angle: -1.5707963267948966 rad - color: '#00000060' - id: footprint - decals: - 1308: 6.5194807,30.009832 - 1309: 6.887536,30.565388 - 1310: 7.1514254,30.093164 - 1311: 7.5194807,30.676498 - 1312: 8.200036,30.113998 - 1313: 8.422258,30.940388 - 1314: 9.026425,30.315388 - 1315: 6.450036,31.676498 - 1316: 7.241703,31.891777 - 1317: 8.130591,31.03761 - 1318: 7.026425,31.35011 - 1343: 11.25042,22.296373 - 1344: 12.234795,21.765123 - 1345: 12.703545,22.343248 - 1346: 13.734795,21.671373 - 1347: 14.53167,22.202623 - 1348: 14.93792,21.390123 - - node: - color: '#00000060' - id: footprint - decals: - 1472: 8.546305,22.79264 - 1473: 10.350877,23.736956 - - node: - cleanable: True - color: '#00000060' - id: footprint - decals: - 1298: 8.831981,27.987852 - 1299: 9.005591,28.265629 - 1300: 8.769481,28.494795 - 1301: 9.054203,28.842018 - 1302: 8.755591,29.147573 - 1303: 9.109758,29.473963 - 1304: 8.762536,29.828129 - 1305: 9.088925,30.078129 - 1306: 8.755591,30.522573 - 1307: 9.081981,30.522573 - 1357: 13.708358,19.952623 - 1358: 14.145858,20.890123 - 1359: 13.630233,21.452623 - 1360: 13.739608,20.593248 - 1361: 14.130233,20.265123 - 1362: 13.661483,21.890123 - 1363: 14.036483,22.343248 - 1364: 13.458358,23.327623 - 1365: 14.020858,23.452623 - 1366: 14.005233,24.218248 - 1367: 13.645858,22.858873 - 1436: 7.237137,16.09611 - 1437: 7.7232485,16.464165 - 1438: 7.362137,16.915554 - 1439: 7.917693,17.665554 - 1440: 7.521859,18.13083 - 1441: 7.980193,18.56833 - 1442: 7.882971,19.109999 - 1474: 10.046046,23.44008 - 1475: 7.2491713,26.34633 - 1476: 8.389796,26.674456 - 1477: 13.452296,20.69008 - 1478: 13.467921,21.31508 - 1479: 8.999171,26.4967 - 1480: 8.046046,27.90295 - 1481: 8.624171,27.59045 - 1482: 8.983546,28.09045 - 1483: 8.608546,29.3092 - - node: - angle: 1.5707963267948966 rad - color: '#00000060' - id: footprint - decals: - 1464: 7.966304,16.290554 - 1465: 7.626026,15.89472 - 1466: 6.952415,16.39472 - 1467: 6.9801927,15.866943 - 1468: 6.834359,17.01972 - 1469: 6.876026,17.748886 - 1470: 7.542693,18.01972 - 1471: 7.709359,19.228054 - - node: - cleanable: True - angle: 1.5707963267948966 rad - color: '#00000060' - id: footprint - decals: - 1349: 14.972425,21.077623 - 1350: 14.316175,21.655748 - 1351: 13.8318,21.202623 - 1352: 13.003675,21.843248 - 1353: 12.534925,21.390123 - 1354: 11.6443,21.843248 - 1355: 10.972425,21.468248 - - node: - cleanable: True - angle: 3.141592653589793 rad - color: '#00000060' - id: footprint - decals: - 1443: 6.8551927,16.728054 - 1444: 7.570471,17.200275 - 1445: 7.1607485,17.623886 - 1446: 8.2649145,17.76972 - 1447: 7.7857485,18.45722 - 1448: 8.2440815,18.929443 - 1449: 8.2232485,18.65861 - 1450: 8.132971,18.03361 - 1451: 7.292692,18.554443 - 1452: 7.8274145,17.075275 - 1453: 7.167692,16.964165 - 1454: 7.4732485,16.31833 - - node: - cleanable: True - angle: 6.283185307179586 rad - color: '#00000060' - id: footprint - decals: - 1356: 7.894642,22.655748 - - node: - cleanable: True - color: '#0000065D' - id: footprint - decals: - 1857: 8.153207,20.861673 - 1858: 8.434457,21.127298 - 1859: 8.215707,21.486673 - 1860: 8.512582,21.892923 - 1861: 8.309457,22.142923 - 1862: 8.731332,22.627298 - 1863: 8.496957,23.517923 - 1864: 8.262582,24.096048 - - node: - cleanable: True - angle: 1.5707963267948966 rad - color: '#0000065D' - id: footprint - decals: - 1879: 9.684457,21.892923 - 1880: 8.856332,22.736673 - 1881: 8.856332,22.721048 - 1882: 10.309457,22.674173 - 1883: 11.246957,22.017923 - 1884: 10.028207,22.033548 - 1885: 10.215707,22.627298 - 1886: 9.262582,22.174173 - 1887: 9.106332,22.221048 - - node: - cleanable: True - angle: 3.141592653589793 rad - color: '#0000065D' - id: footprint - decals: - 1865: 7.856332,21.033548 - 1866: 8.215707,21.408548 - 1867: 7.950082,21.892923 - 1868: 8.762582,22.283548 - 1869: 8.293832,23.142923 - 1870: 8.965707,23.392923 - - node: - cleanable: True - angle: 4.71238898038469 rad - color: '#0000065D' - id: footprint - decals: - 1871: 8.762582,21.236673 - 1872: 9.184457,21.986673 - 1873: 9.731332,21.486673 - 1874: 9.762582,22.346048 - 1875: 10.543832,21.799173 - 1876: 10.918832,22.111673 - 1877: 11.606332,21.705423 - 1878: 12.215707,22.096048 - - node: - cleanable: True - angle: -4.71238898038469 rad - color: '#47422E3E' - id: footprint - decals: - 606: 20.73215,-33.21596 - 607: 20.810274,-32.762836 - 608: 21.0759,-33.02846 - 609: 20.904024,-32.09096 - 610: 20.685274,-31.528461 - 611: 21.2634,-31.528461 - 612: 20.622774,-31.559711 - 613: 21.2009,-32.450336 - 614: 20.997774,-31.825336 - - node: - cleanable: True - angle: -3.141592653589793 rad - color: '#47422E3E' - id: footprint - decals: - 643: 18.380388,-29.024849 - 644: 18.271013,-28.618599 - 645: 19.052263,-28.993599 - - node: - angle: -1.5707963267948966 rad - color: '#47422E3E' - id: footprint - decals: - 540: 18.842302,-40.29173 - 541: 19.203413,-39.833397 - 542: 19.627026,-40.31256 - 543: 20.231192,-39.784786 - 544: 20.363136,-40.22923 - - node: - cleanable: True - angle: -1.5707963267948966 rad - color: '#47422E3E' - id: footprint - decals: - 599: 31.110344,-32.87221 - 600: 30.782219,-32.387836 - 601: 30.672844,-32.825336 - 602: 29.954094,-32.356586 - 603: 29.922844,-32.93471 - 604: 29.204094,-32.37221 - 605: 29.235344,-33.044086 - 646: 19.366499,-28.623808 - 647: 18.387333,-29.09603 - 648: 18.706778,-28.734919 - 649: 19.366499,-29.075195 - 650: 19.838722,-28.554363 - 651: 20.41511,-28.866863 - 652: 20.310944,-28.255753 - 653: 21.019278,-28.776585 - 654: 21.470667,-28.387695 - 655: 21.998444,-28.922419 - 656: 22.352612,-28.540474 - 657: 22.92456,-29.193253 - 658: 23.306505,-28.811308 - 689: 14.771467,-35.430984 - 690: 15.127949,-35.1208 - 691: 15.553875,-35.36617 - 692: 16.271467,-34.86154 - 693: 16.544615,-35.22728 - 694: 17.183504,-34.74117 - 695: 17.502949,-35.222652 - 718: 26.49693,-36.713375 - 719: 27.137554,-36.369625 - 720: 27.46568,-36.69775 - 721: 28.02818,-36.275875 - 722: 28.668804,-36.588375 - 723: 29.15318,-36.088375 - 724: 29.856304,-36.604 - 725: 30.325054,-36.104 - 726: 30.856304,-36.604 - 727: 21.875406,-36.6665 - 728: 22.328531,-36.1665 - 729: 23.266031,-36.604 - 730: 23.500406,-36.119625 - 731: 24.422281,-36.463375 - 732: 25.219156,-36.400875 - - node: - color: '#47422E3E' - id: footprint - decals: - 545: 20.606192,-39.257008 - 546: 21.106192,-38.76395 - 547: 20.752026,-38.722286 - 548: 21.085358,-39.21534 - 549: 20.606192,-39.21534 - 550: 19.078413,-40.36812 - 551: 16.110773,-41.92628 - 552: 16.312162,-40.836002 - 553: 15.944107,-40.405445 - 554: 16.944107,-39.80128 - 555: 17.013552,-41.03739 - 556: 16.124662,-41.55128 - 557: 16.194107,-40.780445 - 558: 16.582996,-40.947113 - 559: 16.763552,-40.342945 - 572: 21.153759,-38.723778 - 573: 20.771816,-38.58489 - 574: 21.077372,-38.26544 - 575: 20.730148,-37.89044 - 576: 21.209316,-37.64739 - 577: 21.056538,-37.286278 - 578: 21.227804,-36.8777 - 579: 20.790304,-36.912422 - 580: 20.873638,-36.572144 - - node: - cleanable: True - color: '#47422E3E' - id: footprint - decals: - 581: 20.741693,-37.148533 - 582: 21.08197,-36.669365 - 583: 21.352804,-37.419365 - 584: 20.998638,-37.009644 - 585: 20.53336,-36.822144 - 586: 21.276415,-36.558254 - 587: 21.200026,-36.23881 - 588: 20.727804,-36.07909 - 589: 20.838915,-35.481865 - 590: 20.991693,-35.842976 - 591: 21.262526,-35.099922 - 592: 25.855373,-34.212444 - 593: 26.214748,-34.056194 - 594: 25.964748,-33.868694 - 595: 26.402248,-33.54057 - 596: 25.995998,-33.337444 - 597: 25.995998,-32.72807 - 598: 26.433498,-32.88432 - 615: 21.16965,-32.87221 - 616: 21.216524,-32.262836 - 617: 20.8259,-31.512836 - 618: 21.23215,-31.059711 - 619: 30.827486,-32.65346 - 620: 31.030611,-32.044086 - 621: 31.233734,-31.387836 - 622: 31.046236,-30.919086 - 623: 30.874361,-30.903461 - 624: 30.796236,-31.653461 - 625: 30.702486,-31.387836 - 626: 21.688553,-32.68471 - 627: 17.800251,-34.731586 - 628: 17.409626,-33.87221 - 629: 17.925251,-33.075336 - 630: 17.409626,-32.606586 - 631: 18.050251,-31.887836 - 632: 17.534626,-31.450336 - 633: 30.89618,-34.87221 - 634: 30.818054,-33.231586 - 635: 31.474304,-32.606586 - 636: 31.17743,-32.106586 - 637: 21.083513,-29.290474 - 638: 20.739763,-28.759224 - 639: 21.536638,-27.946724 - 640: 20.599138,-27.556099 - 641: 21.349138,-26.587349 - 642: 20.724138,-25.931099 - - node: - angle: 1.5707963267948966 rad - color: '#47422E3E' - id: footprint - decals: - 564: 17.188082,-40.308224 - 565: 16.083914,-42.09989 - 566: 15.889469,-41.794334 - - node: - cleanable: True - angle: 1.5707963267948966 rad - color: '#47422E3E' - id: footprint - decals: - 696: 17.516838,-35.393948 - 697: 16.8548,-34.912464 - 698: 16.808504,-35.310616 - 699: 15.9103565,-34.88006 - 700: 15.822393,-35.71339 - 701: 14.984429,-35.2458 - 702: 15.961281,-35.704132 - 703: 16.516838,-35.61617 - 704: 16.276096,-34.875427 - 705: 17.178875,-34.60228 - 706: 17.512207,-34.14858 - 707: 17.164986,-35.583763 - 708: 18.735516,-36.577396 - 709: 18.00114,-35.858646 - 710: 19.15739,-36.421146 - 711: 19.90739,-36.858646 - 712: 20.079266,-36.608646 - 713: 18.78239,-35.983646 - 714: 19.25114,-36.702396 - 715: 20.266766,-36.03052 - 716: 21.485516,-36.56177 - 717: 20.25114,-36.514896 - - node: - angle: 3.141592653589793 rad - color: '#47422E3E' - id: footprint - decals: - 560: 16.563082,-41.80128 - 561: 16.215858,-41.66239 - 562: 16.806137,-40.704056 - 563: 17.250582,-39.947113 - - node: - angle: 4.71238898038469 rad - color: '#47422E3E' - id: footprint - decals: - 567: 17.215858,-40.42628 - 568: 17.188082,-40.572113 - 569: 17.097803,-39.933224 - 570: 16.792248,-40.336002 - 571: 16.632524,-39.933224 - - node: - angle: -4.71238898038469 rad - color: '#47422E8B' - id: footprint - decals: - 536: 19.2243,-40.044228 - 537: 19.432632,-39.67386 - 538: 19.872448,-39.76645 - 539: 20.455782,-39.363674 - - node: - angle: -3.141592653589793 rad - color: '#47422E8B' - id: footprint - decals: - 532: 16.144655,-41.73583 - 533: 16.436321,-41.476566 - 534: 16.311321,-41.008976 - 535: 16.644655,-40.768234 - - node: - color: '#FFFFFFFF' - id: ghost - decals: - 2513: 13,-11 - - node: - color: '#D4D4D428' - id: guy - decals: - 2514: 40,-19 - - node: - cleanable: True - color: '#DE3A3A12' - id: splatter - decals: - 900: 30.439373,-12.749766 - 901: 30.454998,-12.437266 - 902: 30.751873,-12.421641 - 903: 31.048748,-12.843516 - 904: 30.501873,-12.812266 - 905: 30.361248,-12.640391 - 906: 30.376873,-13.031016 - 907: 30.611248,-12.562266 - 908: 30.908123,-12.390391 - 909: 31.142498,-12.093516 - 910: 30.658123,-11.812266 - 911: 30.454998,-11.890391 - 912: 30.439373,-12.327891 - 913: 30.361248,-12.577891 - 914: 30.017498,-12.343516 - 915: 29.861248,-11.921641 - 916: 30.376873,-11.343516 - 917: 30.876873,-11.531016 - - node: - cleanable: True - color: '#DE3A3A22' - id: splatter - decals: - 918: 30.736248,-12.531016 - 919: 29.954998,-11.531016 - 920: 29.470623,-11.749766 - - node: - cleanable: True - color: '#DE3A3A34' - id: splatter - decals: - 2318: 55.674343,-15.3125925 - 2319: 55.455593,-15.1407175 - 2320: 55.830593,-14.9219675 - 2321: 56.018093,-15.0313425 - 2322: 56.205593,-15.2969675 - 2323: 55.65872,-15.3594675 - 2324: 55.50247,-15.4375925 - 2325: 55.861843,-15.3125925 - 2326: 55.893093,-15.3125925 - 2327: 55.68997,-15.3282175 - 2328: 55.75247,-15.1407175 - 2329: 56.12747,-15.1563425 - 2330: 55.40872,-15.7813425 - 2331: 55.34622,-15.6719675 - 2332: 55.111843,-15.8438425 - 2333: 55.09622,-16.531342 - 2334: 55.174343,-14.3750925 - 2335: 55.549343,-14.7657175 - 2336: 56.455593,-14.1563425 - 2337: 57.111843,-16.250092 - type: DecalGrid - - type: OccluderTree - - type: Shuttle - - type: GridPathfinding - - type: GasTileOverlay - - type: RadiationGridResistance - - type: SpreaderGrid - - uid: 126 - components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: Broadphase - - type: OccluderTree - - type: LoadedMap - - type: GridTree - - type: MovedGrids -- proto: AccordionInstrument - entities: - - uid: 5749 - components: - - pos: 49.5,-10.5 - parent: 2 - type: Transform -- proto: AirAlarm - entities: - - uid: 138 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,13.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 4027 - - 4092 - type: DeviceNetwork - - devices: - - 4027 - - 4092 - type: DeviceList - - uid: 151 - components: - - pos: 56.5,16.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 10418 - - 10417 - - 10416 - - 12554 - - 10358 - - 10403 - type: DeviceNetwork - - devices: - - 10418 - - 10417 - - 10416 - - 12554 - - 10358 - - 10403 - type: DeviceList - - uid: 170 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-41.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 4460 - - 4447 - type: DeviceNetwork - - devices: - - 4460 - - 4447 - type: DeviceList - - uid: 182 - components: - - pos: 67.5,17.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12564 - - 10347 - - 10400 - type: DeviceNetwork - - devices: - - 12564 - - 10347 - - 10400 - type: DeviceList - - uid: 195 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,6.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 6949 - - 4035 - type: DeviceNetwork - - devices: - - 6949 - - 4035 - type: DeviceList - - uid: 360 - components: - - rot: 3.141592653589793 rad - pos: 32.5,-8.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1514 - - 742 - - 873 - - 554 - - 558 - - 6638 - - 6622 - - 6609 - type: DeviceNetwork - - devices: - - 6641 - - 6644 - - 6643 - - 6642 - - 6636 - - 1514 - - 742 - - 873 - - 554 - - 558 - - 1511 - - 1515 - - 1513 - - 6629 - - 6627 - - 6638 - - 6622 - - 6609 - type: DeviceList - - uid: 1017 - components: - - rot: 3.141592653589793 rad - pos: 22.5,-33.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 5657 - - 5656 - - 1018 - - 169 - - 1024 - - 5684 - - 1305 - - 1625 - type: DeviceNetwork - - devices: - - 5657 - - 5656 - - 1018 - - 169 - - 1024 - - 5684 - - 1305 - - 1625 - type: DeviceList - - uid: 1520 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-15.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1560 - type: DeviceNetwork - - devices: - - 1560 - type: DeviceList - - uid: 1647 - components: - - pos: 53.5,26.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 10413 - - 10414 - - 10415 - - 10412 - - 12559 - - 10352 - type: DeviceNetwork - - devices: - - 10413 - - 10414 - - 10415 - - 10412 - - 12559 - - 10352 - type: DeviceList - - uid: 2124 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-3.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 7748 - - 7747 - - 7746 - - 102 - - 7749 - - 7750 - - 2125 - - 7740 - - 7895 - - 6854 - - 7663 - - 7889 - - 131 - - 7950 - - 7837 - - 7838 - type: DeviceNetwork - - devices: - - 7748 - - 7747 - - 7746 - - 102 - - 7749 - - 7750 - - 2125 - - 7740 - - 7895 - - 6854 - - 7663 - - 7889 - - 131 - - 7950 - - 7837 - - 7838 - type: DeviceList - - uid: 2296 - components: - - rot: -1.5707963267948966 rad - pos: 61.5,20.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 10416 - - 10417 - - 10418 - - 185 - - 10413 - - 10414 - - 10415 - - 10356 - - 10375 - type: DeviceNetwork - - devices: - - 10416 - - 10417 - - 10418 - - 185 - - 10413 - - 10414 - - 10415 - - 10356 - - 10375 - type: DeviceList - - uid: 5020 - components: - - pos: 33.5,2.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 6800 - - 6799 - - 6790 - - 6801 - - 6802 - - 6803 - - 8317 - - 253 - - 7709 - - 2315 - - 7938 - - 8003 - - 8004 - - 6644 - - 6641 - - 6642 - - 6643 - - 5144 - - 4919 - - 7011 - - 6621 - - 6620 - type: DeviceNetwork - - devices: - - 6800 - - 6799 - - 6790 - - 6801 - - 6802 - - 6803 - - 8317 - - 253 - - 7709 - - 2315 - - 7938 - - 8003 - - 8004 - - 6644 - - 6641 - - 6642 - - 6643 - - 5144 - - 4919 - - 7011 - - 6621 - - 6620 - type: DeviceList - - uid: 5101 - components: - - rot: 3.141592653589793 rad - pos: 48.5,8.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 10402 - - 10331 - type: DeviceNetwork - - devices: - - 10402 - - 10331 - type: DeviceList - - uid: 5680 - components: - - pos: 11.5,-32.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 5679 - - 5678 - type: DeviceNetwork - - devices: - - 5679 - - 5678 - type: DeviceList - - uid: 6158 - components: - - pos: 13.5,6.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 5968 - - 5964 - type: DeviceNetwork - - devices: - - 5968 - - 5964 - type: DeviceList - - uid: 6632 - components: - - rot: 3.141592653589793 rad - pos: 39.5,-13.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1511 - - 1515 - - 1513 - - 6645 - - 6637 - - 6608 - - 6610 - - 6593 - - 6595 - type: DeviceNetwork - - devices: - - 1511 - - 1515 - - 1513 - - 6645 - - 6637 - - 6608 - - 6610 - - 6593 - - 6595 - type: DeviceList - - uid: 6682 - components: - - rot: 3.141592653589793 rad - pos: 41.5,-8.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 6523 - - 1510 - - 6509 - - 6568 - - 12077 - - 6684 - - 6570 - - 6571 - type: DeviceNetwork - - devices: - - 6523 - - 1510 - - 6509 - - 6568 - - 12077 - - 6684 - - 6570 - - 6571 - type: DeviceList - - uid: 7839 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-15.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 7748 - - 7747 - - 7746 - - 102 - - 7749 - - 7750 - - 7843 - - 7472 - - 7469 - type: DeviceNetwork - - devices: - - 7748 - - 7747 - - 7746 - - 102 - - 7749 - - 7750 - - 7843 - - 7472 - - 7469 - type: DeviceList - - uid: 8011 - components: - - pos: 8.5,2.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 8004 - - 8003 - - 7938 - - 2315 - - 7709 - - 253 - - 7950 - - 131 - - 7889 - - 7663 - - 6854 - - 7895 - - 8008 - - 36 - - 6952 - - 11244 - - 11245 - - 8010 - - 8009 - - 6778 - - 7708 - type: DeviceNetwork - - devices: - - 8004 - - 8003 - - 7938 - - 2315 - - 7709 - - 253 - - 7950 - - 131 - - 7889 - - 7663 - - 6854 - - 7895 - - 8008 - - 36 - - 6952 - - 11244 - - 11245 - - 8010 - - 8009 - - 6778 - - 7708 - type: DeviceList - - uid: 8239 - components: - - pos: 14.5,26.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12522 - - 8237 - - 8238 - - 8222 - - 8229 - type: DeviceNetwork - - devices: - - 12522 - - 8237 - - 8238 - - 8222 - - 8229 - type: DeviceList - - uid: 8922 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-6.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 10206 - - 10205 - type: DeviceNetwork - - devices: - - 8923 - - 6801 - - 6802 - - 6803 - - 6790 - - 6799 - - 6800 - - 6805 - - 6804 - - 10206 - - 10205 - type: DeviceList - - uid: 9587 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,31.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 9586 - - 9585 - - 9584 - - 9589 - - 9570 - - 9569 - type: DeviceNetwork - - devices: - - 9586 - - 9585 - - 9584 - - 9589 - - 9570 - - 9569 - type: DeviceList - - uid: 9637 - components: - - pos: 44.5,5.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 9636 - - 9635 - type: DeviceNetwork - - devices: - - 9636 - - 9635 - type: DeviceList - - uid: 10201 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-5.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12459 - - 10172 - - 10180 - type: DeviceNetwork - - devices: - - 12459 - - 10172 - - 10180 - type: DeviceList - - uid: 10202 - components: - - pos: -1.5,-6.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 10181 - - 10178 - type: DeviceNetwork - - devices: - - 10181 - - 10178 - type: DeviceList - - uid: 10203 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-6.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 10182 - - 10171 - type: DeviceNetwork - - devices: - - 10182 - - 10171 - type: DeviceList - - uid: 10204 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-5.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 8017 - - 8016 - type: DeviceNetwork - - devices: - - 8017 - - 8016 - type: DeviceList - - uid: 10207 - components: - - pos: 22.5,-8.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 10216 - - 10205 - - 10206 - - 10215 - - 10214 - type: DeviceNetwork - - devices: - - 10216 - - 10205 - - 10206 - - 10215 - - 10214 - type: DeviceList - - uid: 10250 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,7.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 10249 - - 10248 - type: DeviceNetwork - - devices: - - 10249 - - 10248 - type: DeviceList - - uid: 10419 - components: - - rot: -1.5707963267948966 rad - pos: 65.5,24.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 10411 - - 10355 - type: DeviceNetwork - - devices: - - 10411 - - 10355 - type: DeviceList - - uid: 10653 - components: - - pos: 30.5,9.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 10652 - - 10643 - type: DeviceNetwork - - devices: - - 10652 - - 10643 - type: DeviceList - - uid: 10930 - components: - - pos: 15.5,-32.5 - parent: 2 - type: Transform - - devices: - - 8659 - type: DeviceList - - uid: 11165 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,19.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 9585 - - 9586 - - 9584 - type: DeviceNetwork - - devices: - - 1103 - - 1104 - - 11472 - - 11250 - - 11249 - - 11248 - - 11322 - - 11323 - - 11324 - - 12516 - - 12085 - - 8240 - - 8810 - - 8242 - - 8243 - - 9586 - - 9585 - - 9584 - type: DeviceList - - uid: 11508 - components: - - rot: 3.141592653589793 rad - pos: 52.5,-2.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11509 - - 11526 - - 11527 - - 11254 - - 11255 - - 11256 - - 11506 - - 11505 - - 6616 - - 3983 - - 2993 - - 2994 - - 11321 - - 11320 - - 11319 - - 8293 - - 8291 - - 5026 - - 5144 - - 4919 - - 7011 - - 6509 - - 6568 - - 6640 - - 6628 - type: DeviceNetwork - - devices: - - 11509 - - 11526 - - 11527 - - 11254 - - 11255 - - 11256 - - 11506 - - 11505 - - 6616 - - 3983 - - 2993 - - 2994 - - 11321 - - 11320 - - 11319 - - 8293 - - 8291 - - 5026 - - 5144 - - 4919 - - 7011 - - 6509 - - 6568 - - 6640 - - 6628 - type: DeviceList - - uid: 11730 - components: - - rot: -1.5707963267948966 rad - pos: 68.5,-5.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11515 - - 11719 - type: DeviceNetwork - - devices: - - 11515 - - 11719 - type: DeviceList - - uid: 11731 - components: - - pos: 54.5,-8.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 5189 - - 10128 - type: DeviceNetwork - - devices: - - 5189 - - 10128 - type: DeviceList - - uid: 11990 - components: - - pos: 23.5,-34.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1018 - - 12396 - - 5620 - - 5619 - - 5656 - - 5657 - - 5617 - - 5618 - - 831 - - 802 - - 5621 - - 5622 - - 4552 - - 4551 - type: DeviceNetwork - - devices: - - 12396 - - 5619 - - 5620 - - 1018 - - 5656 - - 5657 - - 5617 - - 5618 - - 831 - - 802 - - 5621 - - 5622 - - 4552 - - 4551 - type: DeviceList - - uid: 12152 - components: - - pos: 58.5,4.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11254 - - 11255 - - 11256 - - 11506 - - 11505 - - 6616 - - 11317 - - 5176 - - 11325 - - 5188 - - 5190 - - 11332 - - 11355 - - 12158 - - 12159 - - 12161 - - 12162 - - 11938 - - 11945 - type: DeviceNetwork - - devices: - - 11254 - - 11255 - - 11256 - - 11506 - - 11505 - - 6616 - - 11317 - - 5176 - - 11325 - - 5188 - - 5190 - - 11332 - - 11355 - - 12158 - - 12159 - - 12161 - - 12162 - - 11938 - - 11945 - type: DeviceList - - uid: 12163 - components: - - pos: 75.5,3.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11366 - - 11367 - - 12158 - - 12159 - - 12161 - type: DeviceNetwork - - devices: - - 11366 - - 11367 - - 12158 - - 12159 - - 12161 - type: DeviceList - - uid: 12416 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-14.5 - parent: 2 - type: Transform - - uid: 12447 - components: - - pos: 13.5,11.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 36 - - 6952 - - 11245 - - 11244 - - 12449 - - 6931 - - 6930 - - 11247 - - 11246 - - 6951 - - 6950 - type: DeviceNetwork - - devices: - - 11245 - - 11244 - - 12449 - - 36 - - 6952 - - 6931 - - 6930 - - 11247 - - 11246 - - 6951 - - 6950 - type: DeviceList - - uid: 12473 - components: - - pos: 23.5,16.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12472 - - 6928 - - 6929 - - 11264 - - 11263 - - 6930 - - 6931 - - 11246 - - 11247 - - 6927 - - 4183 - type: DeviceNetwork - - devices: - - 11247 - - 11246 - - 12472 - - 11264 - - 11263 - - 6928 - - 6929 - - 6930 - - 6931 - - 6927 - - 4183 - type: DeviceList - - uid: 12476 - components: - - pos: 31.5,16.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 9352 - - 9353 - - 9351 - type: DeviceNetwork - - devices: - - 11264 - - 11263 - - 1103 - - 1104 - - 11472 - - 12475 - - 6928 - - 6929 - - 3457 - - 3458 - - 3459 - - 9359 - - 9358 - - 9351 - - 9353 - - 9352 - type: DeviceList - - uid: 12480 - components: - - pos: 36.5,10.5 - parent: 2 - type: Transform - - devices: - - 12481 - type: DeviceList - - uid: 12484 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,5.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11746 - - 8293 - - 8291 - - 5026 - - 11321 - - 11320 - - 11319 - - 11251 - - 11252 - - 11253 - - 9364 - - 9363 - - 9362 - - 3693 - - 3692 - type: DeviceNetwork - - devices: - - 11319 - - 11320 - - 11321 - - 11251 - - 11252 - - 11253 - - 11746 - - 8293 - - 8291 - - 5026 - - 9364 - - 9363 - - 9362 - - 3693 - - 3692 - type: DeviceList - - uid: 12486 - components: - - pos: 40.5,16.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12485 - - 9364 - - 9363 - - 9362 - - 11251 - - 11252 - - 11253 - - 11413 - - 9351 - - 9353 - - 9352 - - 12087 - - 5103 - - 10365 - type: DeviceNetwork - - devices: - - 11251 - - 11252 - - 11253 - - 12087 - - 11413 - - 12485 - - 9364 - - 9363 - - 9362 - - 9351 - - 9353 - - 9352 - - 5103 - - 10365 - type: DeviceList - - uid: 12488 - components: - - pos: 51.5,-3.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12490 - - 12077 - - 11858 - - 12075 - - 12076 - - 11744 - - 11743 - type: DeviceNetwork - - devices: - - 12077 - - 11858 - - 12075 - - 12490 - - 12076 - - 11744 - - 11743 - type: DeviceList - - uid: 12503 - components: - - pos: 70.5,-0.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11709 - - 11729 - type: DeviceNetwork - - devices: - - 12502 - - 11709 - - 11729 - type: DeviceList - - uid: 12504 - components: - - pos: 78.5,-2.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11365 - type: DeviceNetwork - - devices: - - 11365 - type: DeviceList - - uid: 12506 - components: - - pos: 72.5,9.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11957 - - 11956 - type: DeviceNetwork - - devices: - - 11957 - - 11956 - type: DeviceList - - uid: 12520 - components: - - pos: 19.5,25.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 8237 - - 8238 - - 12086 - - 8236 - - 8235 - type: DeviceNetwork - - devices: - - 12519 - - 12086 - - 8237 - - 8238 - - 8236 - - 8235 - type: DeviceList - - uid: 12528 - components: - - pos: 37.5,20.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 8564 - - 8575 - - 12529 - - 8629 - - 8630 - type: DeviceNetwork - - devices: - - 12529 - - 8564 - - 8575 - - 8629 - - 8630 - type: DeviceList - - uid: 12530 - components: - - rot: 3.141592653589793 rad - pos: 40.5,21.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 8597 - - 8598 - - 12531 - type: DeviceNetwork - - devices: - - 12531 - - 8597 - - 8598 - type: DeviceList - - uid: 12532 - components: - - pos: 42.5,21.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 8684 - - 8685 - type: DeviceNetwork - - devices: - - 8684 - - 8685 - type: DeviceList - - uid: 12537 - components: - - pos: 21.5,47.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 8296 - - 9546 - - 12538 - type: DeviceNetwork - - devices: - - 12538 - - 8296 - - 9546 - type: DeviceList - - uid: 12539 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,41.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 9558 - - 9557 - - 12540 - type: DeviceNetwork - - devices: - - 12540 - - 9558 - - 9557 - type: DeviceList - - uid: 12548 - components: - - pos: 54.5,21.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12087 - - 12550 - - 10366 - - 10351 - type: DeviceNetwork - - devices: - - 12550 - - 12087 - - 10366 - - 10351 - type: DeviceList - - uid: 12562 - components: - - rot: -1.5707963267948966 rad - pos: 64.5,10.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12563 - - 10346 - - 10401 - type: DeviceNetwork - - devices: - - 12563 - - 10346 - - 10401 - type: DeviceList -- proto: AirCanister - entities: - - uid: 2078 - components: - - pos: 28.5,-23.5 - parent: 2 - type: Transform - - uid: 4555 - components: - - pos: 28.5,-24.5 - parent: 2 - type: Transform - - uid: 4572 - components: - - pos: 32.5,-26.5 - parent: 2 - type: Transform - - uid: 5518 - components: - - pos: 66.5,44.5 - parent: 2 - type: Transform - - uid: 5706 - components: - - pos: 85.5,-1.5 - parent: 2 - type: Transform - - uid: 5747 - components: - - pos: 48.5,-13.5 - parent: 2 - type: Transform - - uid: 7858 - components: - - pos: 70.5,-19.5 - parent: 2 - type: Transform - - uid: 10794 - components: - - pos: 78.5,-16.5 - parent: 2 - type: Transform - - uid: 10842 - components: - - pos: 46.5,36.5 - parent: 2 - type: Transform - - uid: 10843 - components: - - pos: 46.5,35.5 - parent: 2 - type: Transform - - uid: 12802 - components: - - pos: 14.5,-9.5 - parent: 2 - type: Transform -- proto: Airlock - entities: - - uid: 467 - components: - - pos: 11.5,11.5 - parent: 2 - type: Transform - - uid: 1078 - components: - - pos: 21.5,16.5 - parent: 2 - type: Transform - - uid: 1079 - components: - - pos: 17.5,15.5 - parent: 2 - type: Transform - - uid: 1080 - components: - - pos: 17.5,13.5 - parent: 2 - type: Transform - - uid: 2290 - components: - - pos: 41.5,36.5 - parent: 2 - type: Transform - - uid: 8842 - components: - - pos: 104.5,-12.5 - parent: 2 - type: Transform -- proto: AirlockArmoryGlassLocked - entities: - - uid: 37 - components: - - pos: 40.5,25.5 - parent: 2 - type: Transform - - uid: 48 - components: - - pos: 39.5,25.5 - parent: 2 - type: Transform -- proto: AirlockAtmosphericsGlassLocked - entities: - - uid: 4773 - components: - - pos: 40.5,-37.5 - parent: 2 - type: Transform - - uid: 4774 - components: - - pos: 39.5,-37.5 - parent: 2 - type: Transform - - uid: 4775 - components: - - pos: 38.5,-37.5 - parent: 2 - type: Transform - - uid: 10863 - components: - - pos: 31.5,-29.5 - parent: 2 - type: Transform - - uid: 10864 - components: - - name: Atmospherics - type: MetaData - - pos: 28.5,-28.5 - parent: 2 - type: Transform -- proto: AirlockBrigGlassLocked - entities: - - uid: 2186 - components: - - pos: 31.5,23.5 - parent: 2 - type: Transform - - uid: 2187 - components: - - pos: 31.5,24.5 - parent: 2 - type: Transform - - uid: 2188 - components: - - pos: 28.5,24.5 - parent: 2 - type: Transform - - uid: 2189 - components: - - pos: 28.5,23.5 - parent: 2 - type: Transform - - uid: 2252 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,31.5 - parent: 2 - type: Transform -- proto: AirlockBrigLocked - entities: - - uid: 32 - components: - - name: Law Office - type: MetaData - - pos: -4.5,-7.5 - parent: 2 - type: Transform - - uid: 35 - components: - - name: Law Office Maint Hatch - type: MetaData - - pos: -0.5,-10.5 - parent: 2 - type: Transform -- proto: AirlockCaptainLocked - entities: - - uid: 389 - components: - - pos: 35.5,40.5 - parent: 2 - type: Transform - - uid: 2616 - components: - - pos: 32.5,44.5 - parent: 2 - type: Transform -- proto: AirlockCargoGlassLocked - entities: - - uid: 2081 - components: - - pos: 16.5,22.5 - parent: 2 - type: Transform - - uid: 2082 - components: - - pos: 16.5,20.5 - parent: 2 - type: Transform - - uid: 2083 - components: - - pos: 21.5,20.5 - parent: 2 - type: Transform - - uid: 11094 - components: - - pos: 21.5,21.5 - parent: 2 - type: Transform -- proto: AirlockChapelLocked - entities: - - uid: 1193 - components: - - pos: 33.5,6.5 - parent: 2 - type: Transform -- proto: AirlockChemistryLocked - entities: - - uid: 6649 - components: - - pos: 54.5,-6.5 - parent: 2 - type: Transform -- proto: AirlockChiefEngineerLocked - entities: - - uid: 948 - components: - - pos: 14.5,-34.5 - parent: 2 - type: Transform -- proto: AirlockChiefMedicalOfficerGlassLocked - entities: - - uid: 5039 - components: - - pos: 56.5,-8.5 - parent: 2 - type: Transform -- proto: AirlockCommandGlassLocked - entities: - - uid: 2756 - components: - - pos: 28.5,38.5 - parent: 2 - type: Transform - - uid: 2757 - components: - - pos: 26.5,38.5 - parent: 2 - type: Transform - - uid: 2758 - components: - - pos: 26.5,43.5 - parent: 2 - type: Transform - - uid: 2759 - components: - - pos: 28.5,43.5 - parent: 2 - type: Transform - - uid: 2760 - components: - - pos: 25.5,41.5 - parent: 2 - type: Transform -- proto: AirlockCommandLocked - entities: - - uid: 2788 - components: - - pos: 16.5,36.5 - parent: 2 - type: Transform - - uid: 8592 - components: - - name: Camera Servers - type: MetaData - - pos: 29.5,36.5 - parent: 2 - type: Transform -- proto: AirlockEngineering - entities: - - uid: 3550 - components: - - pos: 88.5,-2.5 - parent: 2 - type: Transform -- proto: AirlockEngineeringGlassLocked - entities: - - uid: 806 - components: - - pos: 17.5,-29.5 - parent: 2 - type: Transform - - uid: 807 - components: - - pos: 18.5,-29.5 - parent: 2 - type: Transform - - uid: 808 - components: - - pos: 21.5,-29.5 - parent: 2 - type: Transform - - uid: 809 - components: - - pos: 21.5,-33.5 - parent: 2 - type: Transform - - uid: 8272 - components: - - pos: 26.5,-34.5 - parent: 2 - type: Transform - - uid: 8273 - components: - - pos: 31.5,-37.5 - parent: 2 - type: Transform - - uid: 8274 - components: - - pos: 32.5,-37.5 - parent: 2 - type: Transform - - uid: 8276 - components: - - pos: 31.5,-33.5 - parent: 2 - type: Transform - - uid: 8277 - components: - - name: Engineering Lobby - type: MetaData - - pos: 24.5,-28.5 - parent: 2 - type: Transform -- proto: AirlockEngineeringLocked - entities: - - uid: 118 - components: - - pos: 3.5,-9.5 - parent: 2 - type: Transform - - uid: 128 - components: - - pos: 14.5,33.5 - parent: 2 - type: Transform - - uid: 596 - components: - - pos: 15.5,6.5 - parent: 2 - type: Transform - - uid: 815 - components: - - pos: 26.5,-26.5 - parent: 2 - type: Transform - - uid: 1005 - components: - - pos: 21.5,-37.5 - parent: 2 - type: Transform - - uid: 1347 - components: - - pos: 4.5,-33.5 - parent: 2 - type: Transform - - uid: 1743 - components: - - pos: 34.5,-16.5 - parent: 2 - type: Transform - - uid: 3408 - components: - - pos: 69.5,43.5 - parent: 2 - type: Transform - - uid: 3490 - components: - - pos: 48.5,27.5 - parent: 2 - type: Transform - - uid: 4744 - components: - - pos: 44.5,28.5 - parent: 2 - type: Transform - - uid: 5608 - components: - - pos: 18.5,-39.5 - parent: 2 - type: Transform - - uid: 5609 - components: - - pos: 24.5,-39.5 - parent: 2 - type: Transform - - uid: 5726 - components: - - pos: 52.5,-11.5 - parent: 2 - type: Transform - - uid: 5824 - components: - - pos: 24.5,-17.5 - parent: 2 - type: Transform - - uid: 6198 - components: - - pos: 70.5,-13.5 - parent: 2 - type: Transform - - uid: 6899 - components: - - pos: 16.5,-12.5 - parent: 2 - type: Transform -- proto: AirlockExternal - entities: - - uid: 1889 - components: - - rot: 1.5707963267948966 rad - pos: 85.5,4.5 - parent: 2 - type: Transform - - uid: 11758 - components: - - pos: 91.5,-20.5 - parent: 2 - type: Transform - - uid: 11761 - components: - - pos: 91.5,-19.5 - parent: 2 - type: Transform - - uid: 11779 - components: - - pos: 94.5,-19.5 - parent: 2 - type: Transform - - uid: 11780 - components: - - pos: 94.5,-20.5 - parent: 2 - type: Transform - - uid: 11781 - components: - - pos: 99.5,-19.5 - parent: 2 - type: Transform - - uid: 11782 - components: - - pos: 99.5,-20.5 - parent: 2 - type: Transform - - uid: 11783 - components: - - pos: 101.5,-19.5 - parent: 2 - type: Transform - - uid: 11784 - components: - - pos: 101.5,-20.5 - parent: 2 - type: Transform -- proto: AirlockExternalAtmosphericsLocked - entities: - - uid: 4390 - components: - - pos: 37.5,-39.5 - parent: 2 - type: Transform - - uid: 4391 - components: - - pos: 35.5,-37.5 - parent: 2 - type: Transform -- proto: AirlockExternalEngineeringLocked - entities: - - uid: 69 - components: - - pos: 11.5,37.5 - parent: 2 - type: Transform - - uid: 70 - components: - - pos: 11.5,35.5 - parent: 2 - type: Transform - - uid: 171 - components: - - pos: 15.5,-41.5 - parent: 2 - type: Transform - - uid: 173 - components: - - pos: 13.5,-43.5 - parent: 2 - type: Transform - - uid: 225 - components: - - pos: 18.5,-15.5 - parent: 2 - type: Transform - - uid: 226 - components: - - pos: 17.5,-17.5 - parent: 2 - type: Transform - - uid: 1902 - components: - - pos: 74.5,45.5 - parent: 2 - type: Transform - - uid: 2128 - components: - - pos: 72.5,45.5 - parent: 2 - type: Transform - - uid: 4385 - components: - - pos: 33.5,-39.5 - parent: 2 - type: Transform - - uid: 4392 - components: - - pos: 35.5,-41.5 - parent: 2 - type: Transform - - uid: 12931 - components: - - pos: 33.5,-47.5 - parent: 2 - type: Transform - - uid: 12932 - components: - - pos: 32.5,-49.5 - parent: 2 - type: Transform -- proto: AirlockExternalGlass - entities: - - uid: 2002 - components: - - pos: 6.5,26.5 - parent: 2 - type: Transform - - uid: 2003 - components: - - pos: 6.5,24.5 - parent: 2 - type: Transform -- proto: AirlockExternalGlassCargoLocked - entities: - - uid: 6863 - components: - - pos: 6.5,16.5 - parent: 2 - type: Transform - - uid: 7674 - components: - - pos: 6.5,17.5 - parent: 2 - type: Transform - - uid: 7881 - components: - - pos: 4.5,17.5 - parent: 2 - type: Transform - - uid: 7886 - components: - - pos: 4.5,16.5 - parent: 2 - type: Transform -- proto: AirlockExternalGlassLocked - entities: - - uid: 2734 - components: - - pos: -5.5,-18.5 - parent: 2 - type: Transform - - uid: 6839 - components: - - pos: -5.5,-15.5 - parent: 2 - type: Transform -- proto: AirlockExternalGlassShuttleArrivals - entities: - - uid: 1332 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-10.5 - parent: 2 - type: Transform - - uid: 1334 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-10.5 - parent: 2 - type: Transform -- proto: AirlockExternalGlassShuttleEmergencyLocked - entities: - - uid: 139 - components: - - rot: 3.141592653589793 rad - pos: -2.5,2.5 - parent: 2 - type: Transform - - uid: 193 - components: - - rot: 3.141592653589793 rad - pos: -4.5,2.5 - parent: 2 - type: Transform -- proto: AirlockExternalGlassShuttleEscape - entities: - - uid: 8327 - components: - - rot: 1.5707963267948966 rad - pos: 87.5,4.5 - parent: 2 - type: Transform -- proto: AirlockExternalGlassShuttleLocked - entities: - - uid: 2001 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,24.5 - parent: 2 - type: Transform - - uid: 2004 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,26.5 - parent: 2 - type: Transform -- proto: AirlockExternalLocked - entities: - - uid: 1369 - components: - - pos: 1.5,-35.5 - parent: 2 - type: Transform - - uid: 1370 - components: - - pos: -0.5,-35.5 - parent: 2 - type: Transform - - uid: 3202 - components: - - pos: 56.5,49.5 - parent: 2 - type: Transform - - uid: 8728 - components: - - pos: 87.5,-20.5 - parent: 2 - type: Transform - - uid: 10751 - components: - - pos: 84.5,-20.5 - parent: 2 - type: Transform -- proto: AirlockExternalShuttleLocked - entities: - - uid: 2167 - components: - - rot: 3.141592653589793 rad - pos: 56.5,51.5 - parent: 2 - type: Transform -- proto: AirlockFreezer - entities: - - uid: 10 - components: - - pos: 9.5,13.5 - parent: 2 - type: Transform - - uid: 1810 - components: - - pos: 9.5,12.5 - parent: 2 - type: Transform -- proto: AirlockFreezerKitchenHydroLocked - entities: - - uid: 559 - components: - - pos: 32.5,-10.5 - parent: 2 - type: Transform -- proto: AirlockFreezerLocked - entities: - - uid: 6519 - components: - - rot: 3.141592653589793 rad - pos: 28.5,-10.5 - parent: 2 - type: Transform -- proto: AirlockGlass - entities: - - uid: 377 - components: - - pos: 7.5,10.5 - parent: 2 - type: Transform - - uid: 378 - components: - - pos: 7.5,9.5 - parent: 2 - type: Transform - - uid: 568 - components: - - pos: 11.5,8.5 - parent: 2 - type: Transform - - uid: 587 - components: - - pos: 9.5,8.5 - parent: 2 - type: Transform - - uid: 1081 - components: - - pos: 18.5,11.5 - parent: 2 - type: Transform - - uid: 1082 - components: - - pos: 19.5,11.5 - parent: 2 - type: Transform - - uid: 1567 - components: - - pos: 33.5,-1.5 - parent: 2 - type: Transform - - uid: 1568 - components: - - pos: 35.5,-1.5 - parent: 2 - type: Transform - - uid: 1746 - components: - - pos: 28.5,-16.5 - parent: 2 - type: Transform - - uid: 1747 - components: - - pos: 28.5,-15.5 - parent: 2 - type: Transform - - uid: 2177 - components: - - pos: 25.5,16.5 - parent: 2 - type: Transform - - uid: 2178 - components: - - pos: 26.5,16.5 - parent: 2 - type: Transform - - uid: 2179 - components: - - pos: 27.5,16.5 - parent: 2 - type: Transform - - uid: 2180 - components: - - pos: 24.5,13.5 - parent: 2 - type: Transform - - uid: 2181 - components: - - pos: 24.5,14.5 - parent: 2 - type: Transform - - uid: 2541 - components: - - pos: 39.5,7.5 - parent: 2 - type: Transform - - uid: 2550 - components: - - pos: 42.5,2.5 - parent: 2 - type: Transform - - uid: 2551 - components: - - pos: 41.5,2.5 - parent: 2 - type: Transform - - uid: 2552 - components: - - pos: 40.5,2.5 - parent: 2 - type: Transform - - uid: 2557 - components: - - pos: 42.5,12.5 - parent: 2 - type: Transform - - uid: 2558 - components: - - pos: 41.5,12.5 - parent: 2 - type: Transform - - uid: 2559 - components: - - pos: 40.5,12.5 - parent: 2 - type: Transform - - uid: 6786 - components: - - pos: 27.5,-2.5 - parent: 2 - type: Transform - - uid: 6787 - components: - - pos: 26.5,-2.5 - parent: 2 - type: Transform - - uid: 6789 - components: - - pos: 25.5,-2.5 - parent: 2 - type: Transform - - uid: 6851 - components: - - pos: 2.5,0.5 - parent: 2 - type: Transform - - uid: 7764 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-13.5 - parent: 2 - type: Transform - - uid: 7766 - components: - - pos: 22.5,43.5 - parent: 2 - type: Transform - - uid: 7767 - components: - - pos: 23.5,43.5 - parent: 2 - type: Transform - - uid: 7769 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-12.5 - parent: 2 - type: Transform - - uid: 7779 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-14.5 - parent: 2 - type: Transform - - uid: 7870 - components: - - pos: 2.5,-1.5 - parent: 2 - type: Transform - - uid: 7890 - components: - - pos: 2.5,-0.5 - parent: 2 - type: Transform - - uid: 7977 - components: - - pos: 17.5,-0.5 - parent: 2 - type: Transform - - uid: 7982 - components: - - pos: 17.5,0.5 - parent: 2 - type: Transform - - uid: 7983 - components: - - pos: 17.5,1.5 - parent: 2 - type: Transform - - uid: 11760 - components: - - pos: 106.5,-14.5 - parent: 2 - type: Transform - - uid: 11777 - components: - - pos: 106.5,-20.5 - parent: 2 - type: Transform -- proto: AirlockHeadOfPersonnelGlassLocked - entities: - - uid: 203 - components: - - pos: 9.5,-2.5 - parent: 2 - type: Transform - - uid: 205 - components: - - pos: 8.5,-2.5 - parent: 2 - type: Transform -- proto: AirlockHeadOfPersonnelLocked - entities: - - uid: 222 - components: - - pos: 13.5,-3.5 - parent: 2 - type: Transform -- proto: AirlockHeadOfSecurityLocked - entities: - - uid: 2375 - components: - - pos: 42.5,23.5 - parent: 2 - type: Transform -- proto: AirlockHydroGlassLocked - entities: - - uid: 556 - components: - - pos: 42.5,-8.5 - parent: 2 - type: Transform - - uid: 6573 - components: - - pos: 46.5,-2.5 - parent: 2 - type: Transform -- proto: AirlockJanitorLocked - entities: - - uid: 174 - components: - - pos: 4.5,-2.5 - parent: 2 - type: Transform -- proto: AirlockKitchenLocked - entities: - - uid: 562 - components: - - pos: 33.5,-8.5 - parent: 2 - type: Transform -- proto: AirlockMaint - entities: - - uid: 178 - components: - - pos: 1.5,-2.5 - parent: 2 - type: Transform - - uid: 295 - components: - - pos: 14.5,5.5 - parent: 2 - type: Transform - - uid: 480 - components: - - pos: 5.5,-15.5 - parent: 2 - type: Transform - - uid: 605 - components: - - pos: 22.5,-1.5 - parent: 2 - type: Transform - - uid: 6639 - components: - - pos: 66.5,30.5 - parent: 2 - type: Transform - - uid: 11785 - components: - - pos: 109.5,-17.5 - parent: 2 - type: Transform -- proto: AirlockMaintAtmoLocked - entities: - - uid: 10218 - components: - - rot: 3.141592653589793 rad - pos: 40.5,-20.5 - parent: 2 - type: Transform -- proto: AirlockMaintCargoLocked - entities: - - uid: 1062 - components: - - pos: 14.5,19.5 - parent: 2 - type: Transform - - uid: 2115 - components: - - pos: 14.5,28.5 - parent: 2 - type: Transform -- proto: AirlockMaintChapelLocked - entities: - - uid: 1192 - components: - - pos: 29.5,9.5 - parent: 2 - type: Transform -- proto: AirlockMaintChemLocked - entities: - - uid: 5070 - components: - - pos: 50.5,-9.5 - parent: 2 - type: Transform -- proto: AirlockMaintEngiLocked - entities: - - uid: 810 - components: - - name: Engineering Maints Hatch - type: MetaData - - pos: 13.5,-22.5 - parent: 2 - type: Transform -- proto: AirlockMaintGlassLocked - entities: - - uid: 223 - components: - - pos: 2.5,-11.5 - parent: 2 - type: Transform -- proto: AirlockMaintHOPLocked - entities: - - uid: 221 - components: - - pos: 9.5,-10.5 - parent: 2 - type: Transform - - uid: 577 - components: - - name: HoP Office - type: MetaData - - pos: 14.5,-6.5 - parent: 2 - type: Transform -- proto: AirlockMaintHydroLocked - entities: - - uid: 1553 - components: - - pos: 42.5,-11.5 - parent: 2 - type: Transform -- proto: AirlockMaintJanitorLocked - entities: - - uid: 1253 - components: - - pos: 2.5,-5.5 - parent: 2 - type: Transform -- proto: AirlockMaintKitchenLocked - entities: - - uid: 1548 - components: - - pos: 41.5,-12.5 - parent: 2 - type: Transform -- proto: AirlockMaintLocked - entities: - - uid: 96 - components: - - pos: 28.5,-21.5 - parent: 2 - type: Transform - - uid: 204 - components: - - pos: 2.5,-15.5 - parent: 2 - type: Transform - - uid: 1110 - components: - - pos: 21.5,6.5 - parent: 2 - type: Transform - - uid: 1164 - components: - - pos: 18.5,2.5 - parent: 2 - type: Transform - - uid: 1205 - components: - - pos: 26.5,11.5 - parent: 2 - type: Transform - - uid: 1745 - components: - - pos: 32.5,-18.5 - parent: 2 - type: Transform - - uid: 1865 - components: - - pos: 24.5,-21.5 - parent: 2 - type: Transform - - uid: 1990 - components: - - pos: 55.5,-16.5 - parent: 2 - type: Transform - - uid: 2168 - components: - - pos: 19.5,18.5 - parent: 2 - type: Transform - - uid: 2540 - components: - - pos: 35.5,10.5 - parent: 2 - type: Transform - - uid: 2556 - components: - - pos: 39.5,11.5 - parent: 2 - type: Transform - - uid: 2744 - components: - - pos: 24.5,27.5 - parent: 2 - type: Transform - - uid: 2888 - components: - - pos: 62.5,-18.5 - parent: 2 - type: Transform - - uid: 2889 - components: - - pos: 63.5,-18.5 - parent: 2 - type: Transform - - uid: 2890 - components: - - pos: 68.5,-16.5 - parent: 2 - type: Transform - - uid: 3386 - components: - - pos: 68.5,39.5 - parent: 2 - type: Transform - - uid: 3412 - components: - - pos: 68.5,28.5 - parent: 2 - type: Transform - - uid: 3413 - components: - - pos: 68.5,32.5 - parent: 2 - type: Transform - - uid: 3485 - components: - - pos: 47.5,20.5 - parent: 2 - type: Transform - - uid: 4729 - components: - - pos: 28.5,32.5 - parent: 2 - type: Transform - - uid: 5444 - components: - - pos: 68.5,36.5 - parent: 2 - type: Transform - - uid: 5469 - components: - - pos: 67.5,45.5 - parent: 2 - type: Transform - - uid: 5519 - components: - - pos: 88.5,-10.5 - parent: 2 - type: Transform - - uid: 5520 - components: - - pos: 87.5,-1.5 - parent: 2 - type: Transform - - uid: 5650 - components: - - pos: 45.5,46.5 - parent: 2 - type: Transform - - uid: 5716 - components: - - pos: 74.5,-14.5 - parent: 2 - type: Transform - - uid: 5737 - components: - - pos: 71.5,-14.5 - parent: 2 - type: Transform - - uid: 5738 - components: - - pos: 43.5,7.5 - parent: 2 - type: Transform - - uid: 5739 - components: - - pos: 54.5,6.5 - parent: 2 - type: Transform - - uid: 5740 - components: - - pos: 58.5,6.5 - parent: 2 - type: Transform - - uid: 5764 - components: - - pos: 82.5,10.5 - parent: 2 - type: Transform - - uid: 6901 - components: - - pos: 13.5,15.5 - parent: 2 - type: Transform - - uid: 9609 - components: - - pos: 12.5,14.5 - parent: 2 - type: Transform - - uid: 11018 - components: - - pos: 71.5,22.5 - parent: 2 - type: Transform -- proto: AirlockMaintMedLocked - entities: - - uid: 5120 - components: - - pos: 68.5,-9.5 - parent: 2 - type: Transform - - uid: 5121 - components: - - pos: 71.5,-4.5 - parent: 2 - type: Transform - - uid: 5172 - components: - - pos: 68.5,7.5 - parent: 2 - type: Transform - - uid: 5230 - components: - - pos: 81.5,3.5 - parent: 2 - type: Transform - - uid: 5231 - components: - - pos: 80.5,3.5 - parent: 2 - type: Transform - - uid: 11747 - components: - - pos: 75.5,9.5 - parent: 2 - type: Transform -- proto: AirlockMaintRnDLocked - entities: - - uid: 3511 - components: - - pos: 48.5,21.5 - parent: 2 - type: Transform - - uid: 5398 - components: - - pos: 53.5,7.5 - parent: 2 - type: Transform -- proto: AirlockMaintRnDMedLocked - entities: - - uid: 2918 - components: - - pos: 57.5,7.5 - parent: 2 - type: Transform - - uid: 5399 - components: - - pos: 56.5,4.5 - parent: 2 - type: Transform -- proto: AirlockMaintSalvageLocked - entities: - - uid: 7972 - components: - - pos: 10.5,19.5 - parent: 2 - type: Transform -- proto: AirlockMaintSecLocked - entities: - - uid: 2491 - components: - - pos: 33.5,31.5 - parent: 2 - type: Transform - - uid: 7737 - components: - - pos: 0.5,-4.5 - parent: 2 - type: Transform -- proto: AirlockMaintTheatreLocked - entities: - - uid: 1160 - components: - - pos: 26.5,9.5 - parent: 2 - type: Transform - - uid: 2253 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-8.5 - parent: 2 - type: Transform -- proto: AirlockMedicalGlassLocked - entities: - - uid: 5011 - components: - - pos: 45.5,1.5 - parent: 2 - type: Transform - - uid: 5012 - components: - - pos: 48.5,3.5 - parent: 2 - type: Transform - - uid: 11896 - components: - - pos: 71.5,3.5 - parent: 2 - type: Transform - - uid: 12836 - components: - - pos: 61.5,-8.5 - parent: 2 - type: Transform -- proto: AirlockMedicalLocked - entities: - - uid: 11898 - components: - - pos: 76.5,7.5 - parent: 2 - type: Transform -- proto: AirlockQuartermasterGlassLocked - entities: - - uid: 2084 - components: - - pos: 12.5,29.5 - parent: 2 - type: Transform -- proto: AirlockResearchDirectorGlassLocked - entities: - - uid: 5232 - components: - - pos: 62.5,12.5 - parent: 2 - type: Transform -- proto: AirlockResearchDirectorLocked - entities: - - uid: 5253 - components: - - pos: 52.5,24.5 - parent: 2 - type: Transform -- proto: AirlockSalvageGlassLocked - entities: - - uid: 437 - components: - - pos: 8.5,20.5 - parent: 2 - type: Transform -- proto: AirlockScienceGlassLocked - entities: - - uid: 5244 - components: - - pos: 54.5,12.5 - parent: 2 - type: Transform - - uid: 5248 - components: - - pos: 57.5,18.5 - parent: 2 - type: Transform - - uid: 5250 - components: - - pos: 61.5,24.5 - parent: 2 - type: Transform - - uid: 5251 - components: - - pos: 61.5,23.5 - parent: 2 - type: Transform -- proto: AirlockScienceLocked - entities: - - uid: 5247 - components: - - pos: 45.5,12.5 - parent: 2 - type: Transform - - uid: 5249 - components: - - pos: 65.5,15.5 - parent: 2 - type: Transform - - uid: 10448 - components: - - pos: 52.5,14.5 - parent: 2 - type: Transform - - uid: 10449 - components: - - pos: 48.5,14.5 - parent: 2 - type: Transform -- proto: AirlockSecurityGlassLocked - entities: - - uid: 2323 - components: - - pos: 38.5,30.5 - parent: 2 - type: Transform - - uid: 2324 - components: - - pos: 35.5,30.5 - parent: 2 - type: Transform - - uid: 2402 - components: - - pos: 37.5,22.5 - parent: 2 - type: Transform - - uid: 2460 - components: - - pos: 42.5,16.5 - parent: 2 - type: Transform - - uid: 2461 - components: - - pos: 40.5,18.5 - parent: 2 - type: Transform -- proto: AirlockSecurityLocked - entities: - - uid: 7736 - components: - - pos: -0.5,-2.5 - parent: 2 - type: Transform -- proto: AirlockServiceLocked - entities: - - uid: 555 - components: - - pos: 40.5,-3.5 - parent: 2 - type: Transform - - uid: 1527 - components: - - pos: 39.5,-8.5 - parent: 2 - type: Transform -- proto: AirlockTheatreLocked - entities: - - uid: 1159 - components: - - pos: 26.5,4.5 - parent: 2 - type: Transform -- proto: AirlockVirologyGlassLocked - entities: - - uid: 575 - components: - - pos: 53.5,-1.5 - parent: 2 - type: Transform - - uid: 576 - components: - - pos: 53.5,0.5 - parent: 2 - type: Transform - - uid: 598 - components: - - pos: 65.5,-0.5 - parent: 2 - type: Transform - - uid: 2910 - components: - - pos: 77.5,0.5 - parent: 2 - type: Transform - - uid: 2911 - components: - - pos: 77.5,-2.5 - parent: 2 - type: Transform -- proto: AirlockVirologyLocked - entities: - - uid: 599 - components: - - pos: 66.5,-7.5 - parent: 2 - type: Transform - - uid: 600 - components: - - pos: 63.5,-5.5 - parent: 2 - type: Transform - - uid: 601 - components: - - pos: 72.5,0.5 - parent: 2 - type: Transform -- proto: AirSensor - entities: - - uid: 185 - components: - - pos: 59.5,18.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12557 - - 2296 - type: DeviceNetwork - - uid: 2125 - components: - - pos: -3.5,-0.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 7662 - - 2123 - - 2124 - type: DeviceNetwork - - uid: 4554 - components: - - pos: 26.5,-27.5 - parent: 2 - type: Transform - - uid: 5684 - components: - - pos: 26.5,-33.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 4049 - - 1017 - type: DeviceNetwork - - uid: 6636 - components: - - pos: 35.5,-5.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1657 - type: DeviceNetwork - - uid: 6637 - components: - - pos: 37.5,-11.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 6633 - - 6632 - type: DeviceNetwork - - uid: 6638 - components: - - pos: 38.5,-5.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 360 - type: DeviceNetwork - - uid: 6684 - components: - - pos: 44.5,-6.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 6683 - - 6682 - type: DeviceNetwork - - uid: 7843 - components: - - pos: -10.5,-13.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 7842 - - 7839 - type: DeviceNetwork - - uid: 8008 - components: - - pos: 5.5,0.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 8006 - - 8007 - - 8005 - - 8011 - type: DeviceNetwork - - uid: 8317 - components: - - pos: 21.5,0.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 5077 - - 8316 - - 5020 - type: DeviceNetwork - - uid: 8659 - components: - - pos: 17.5,-32.5 - parent: 2 - type: Transform - - uid: 8923 - components: - - pos: 26.5,-5.5 - parent: 2 - type: Transform - - uid: 9589 - components: - - pos: 26.5,32.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 9588 - - 9587 - type: DeviceNetwork - - uid: 10216 - components: - - pos: 22.5,-12.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 10208 - - 10207 - type: DeviceNetwork - - uid: 10950 - components: - - pos: 19.5,-24.5 - parent: 2 - type: Transform - - uid: 11509 - components: - - pos: 47.5,-0.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11507 - - 11508 - type: DeviceNetwork - - uid: 11746 - components: - - pos: 41.5,7.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12483 - - 12484 - type: DeviceNetwork - - uid: 12162 - components: - - pos: 59.5,2.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12153 - - 12154 - - 12152 - type: DeviceNetwork - - uid: 12396 - components: - - pos: 26.5,-36.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1016 - - 11990 - type: DeviceNetwork - - uid: 12402 - components: - - pos: 20.5,-39.5 - parent: 2 - type: Transform - - uid: 12449 - components: - - pos: 10.5,9.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 194 - - 12447 - type: DeviceNetwork - - uid: 12459 - components: - - pos: 5.5,-5.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 10201 - type: DeviceNetwork - - uid: 12462 - components: - - pos: -3.5,-9.5 - parent: 2 - type: Transform - - uid: 12472 - components: - - pos: 22.5,14.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12474 - - 12473 - type: DeviceNetwork - - uid: 12475 - components: - - pos: 31.5,14.5 - parent: 2 - type: Transform - - uid: 12481 - components: - - pos: 34.5,9.5 - parent: 2 - type: Transform - - uid: 12485 - components: - - pos: 43.5,14.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12487 - - 12486 - type: DeviceNetwork - - uid: 12490 - components: - - pos: 49.5,-7.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12489 - - 12488 - type: DeviceNetwork - - uid: 12498 - components: - - pos: 44.5,3.5 - parent: 2 - type: Transform - - uid: 12502 - components: - - pos: 74.5,-1.5 - parent: 2 - type: Transform - - uid: 12515 - components: - - pos: 13.5,3.5 - parent: 2 - type: Transform - - uid: 12516 - components: - - pos: 26.5,19.5 - parent: 2 - type: Transform - - uid: 12518 - components: - - pos: 24.5,25.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12517 - type: DeviceNetwork - - uid: 12519 - components: - - pos: 18.5,23.5 - parent: 2 - type: Transform - - uid: 12522 - components: - - pos: 15.5,23.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 5 - - 8239 - type: DeviceNetwork - - uid: 12529 - components: - - pos: 33.5,21.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12528 - type: DeviceNetwork - - uid: 12531 - components: - - pos: 41.5,23.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12530 - type: DeviceNetwork - - uid: 12538 - components: - - pos: 24.5,45.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12537 - type: DeviceNetwork - - uid: 12540 - components: - - pos: 27.5,40.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12539 - type: DeviceNetwork - - uid: 12543 - components: - - pos: 30.5,40.5 - parent: 2 - type: Transform - - uid: 12544 - components: - - pos: 37.5,43.5 - parent: 2 - type: Transform - - uid: 12550 - components: - - pos: 52.5,18.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12549 - - 12548 - type: DeviceNetwork - - uid: 12553 - components: - - pos: 49.5,9.5 - parent: 2 - type: Transform - - uid: 12554 - components: - - pos: 62.5,14.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 151 - type: DeviceNetwork - - uid: 12559 - components: - - pos: 58.5,24.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 2474 - - 1647 - type: DeviceNetwork - - uid: 12563 - components: - - pos: 61.5,10.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12562 - type: DeviceNetwork - - uid: 12564 - components: - - pos: 67.5,13.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 182 - type: DeviceNetwork -- proto: AltarSpawner - entities: - - uid: 2526 - components: - - pos: 35.5,7.5 - parent: 2 - type: Transform -- proto: AmeController - entities: - - uid: 5234 - components: - - pos: 28.5,-39.5 - parent: 2 - type: Transform -- proto: AnomalyScanner - entities: - - uid: 1838 - components: - - pos: 71.66338,14.074104 - parent: 2 - type: Transform - - uid: 5381 - components: - - pos: 71.46026,14.574104 - parent: 2 - type: Transform - - uid: 5382 - components: - - pos: 71.56963,14.339729 - parent: 2 - type: Transform -- proto: APCBasic - entities: - - uid: 340 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-3.5 - parent: 2 - type: Transform - - uid: 342 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-11.5 - parent: 2 - type: Transform - - uid: 376 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-6.5 - parent: 2 - type: Transform - - uid: 466 - components: - - rot: 3.141592653589793 rad - pos: 10.5,11.5 - parent: 2 - type: Transform - - uid: 681 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-15.5 - parent: 2 - type: Transform - - uid: 751 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-26.5 - parent: 2 - type: Transform - - uid: 947 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-35.5 - parent: 2 - type: Transform - - uid: 1111 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,5.5 - parent: 2 - type: Transform - - uid: 1539 - components: - - pos: 37.5,-2.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - loadingNetworkDemand: 5 - supplyRampPosition: 2.4463015 - type: PowerNetworkBattery - - uid: 1569 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-37.5 - parent: 2 - type: Transform - - uid: 1688 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-15.5 - parent: 2 - type: Transform - - uid: 1748 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-15.5 - parent: 2 - type: Transform - - uid: 1815 - components: - - pos: 41.5,21.5 - parent: 2 - type: Transform - - uid: 1948 - components: - - rot: 3.141592653589793 rad - pos: 36.5,29.5 - parent: 2 - type: Transform - - uid: 2378 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,3.5 - parent: 2 - type: Transform - - uid: 2404 - components: - - pos: 43.5,26.5 - parent: 2 - type: Transform - - uid: 2451 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,33.5 - parent: 2 - type: Transform - - uid: 2481 - components: - - pos: 20.5,34.5 - parent: 2 - type: Transform - - uid: 2721 - components: - - rot: -1.5707963267948966 rad - pos: 68.5,-15.5 - parent: 2 - type: Transform - - uid: 2902 - components: - - pos: 69.5,47.5 - parent: 2 - type: Transform - - uid: 3407 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-8.5 - parent: 2 - type: Transform - - uid: 4113 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-2.5 - parent: 2 - type: Transform - - uid: 4116 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,16.5 - parent: 2 - type: Transform - - uid: 4186 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,7.5 - parent: 2 - type: Transform - - uid: 4309 - components: - - pos: 17.5,-37.5 - parent: 2 - type: Transform - - uid: 4325 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,18.5 - parent: 2 - type: Transform - - uid: 4703 - components: - - rot: 3.141592653589793 rad - pos: 40.5,-1.5 - parent: 2 - type: Transform - - uid: 4772 - components: - - pos: 41.5,-37.5 - parent: 2 - type: Transform - - uid: 4815 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,23.5 - parent: 2 - type: Transform - - uid: 4829 - components: - - rot: 3.141592653589793 rad - pos: 13.5,35.5 - parent: 2 - type: Transform - - uid: 4877 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-35.5 - parent: 2 - type: Transform - - uid: 4883 - components: - - pos: 15.5,34.5 - parent: 2 - type: Transform - - uid: 4886 - components: - - rot: 3.141592653589793 rad - pos: 25.5,43.5 - parent: 2 - type: Transform - - uid: 4918 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,40.5 - parent: 2 - type: Transform - - uid: 5015 - components: - - pos: 66.5,-0.5 - parent: 2 - type: Transform - - uid: 5088 - components: - - rot: -1.5707963267948966 rad - pos: 75.5,-2.5 - parent: 2 - type: Transform - - uid: 5129 - components: - - rot: 1.5707963267948966 rad - pos: 75.5,-4.5 - parent: 2 - type: Transform - - uid: 5130 - components: - - rot: -1.5707963267948966 rad - pos: 73.5,-7.5 - parent: 2 - type: Transform - - uid: 5131 - components: - - pos: 58.5,-8.5 - parent: 2 - type: Transform - - uid: 5155 - components: - - pos: 74.5,9.5 - parent: 2 - type: Transform - - uid: 5201 - components: - - rot: -1.5707963267948966 rad - pos: 64.5,11.5 - parent: 2 - type: Transform - - uid: 5236 - components: - - rot: -1.5707963267948966 rad - pos: 56.5,11.5 - parent: 2 - type: Transform - - uid: 5269 - components: - - pos: 53.5,21.5 - parent: 2 - type: Transform - - uid: 5270 - components: - - rot: 3.141592653589793 rad - pos: 51.5,22.5 - parent: 2 - type: Transform - - uid: 5271 - components: - - pos: 33.5,44.5 - parent: 2 - type: Transform - - uid: 5299 - components: - - pos: 66.5,17.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - loadingNetworkDemand: 5 - supplyRampPosition: 2.4463015 - type: PowerNetworkBattery - - uid: 5427 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 2 - type: Transform - - uid: 5648 - components: - - rot: 3.141592653589793 rad - pos: 68.5,41.5 - parent: 2 - type: Transform - - uid: 5689 - components: - - rot: 3.141592653589793 rad - pos: 69.5,9.5 - parent: 2 - type: Transform - - uid: 6005 - components: - - pos: 78.5,-14.5 - parent: 2 - type: Transform - - uid: 6012 - components: - - rot: 3.141592653589793 rad - pos: 52.5,-9.5 - parent: 2 - type: Transform - - uid: 6015 - components: - - pos: 6.5,-10.5 - parent: 2 - type: Transform - - uid: 6025 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-19.5 - parent: 2 - type: Transform - - uid: 6095 - components: - - rot: 3.141592653589793 rad - pos: 28.5,9.5 - parent: 2 - type: Transform - - uid: 6099 - components: - - rot: 3.141592653589793 rad - pos: 43.5,12.5 - parent: 2 - type: Transform - - uid: 6172 - components: - - pos: 66.5,45.5 - parent: 2 - type: Transform - - uid: 6342 - components: - - pos: 54.5,4.5 - parent: 2 - type: Transform - - uid: 6358 - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-14.5 - parent: 2 - type: Transform - - uid: 6522 - components: - - pos: 39.5,-18.5 - parent: 2 - type: Transform - - startingCharge: 12000 - type: Battery - - uid: 6685 - components: - - rot: 3.141592653589793 rad - pos: 45.5,-8.5 - parent: 2 - type: Transform - - uid: 6686 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-11.5 - parent: 2 - type: Transform - - uid: 6697 - components: - - rot: 3.141592653589793 rad - pos: 11.5,2.5 - parent: 2 - type: Transform - - uid: 6717 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,3.5 - parent: 2 - type: Transform - - uid: 6873 - components: - - pos: 47.5,28.5 - parent: 2 - type: Transform - - uid: 6954 - components: - - rot: 3.141592653589793 rad - pos: 14.5,8.5 - parent: 2 - type: Transform - - uid: 6960 - components: - - pos: 22.5,-22.5 - parent: 2 - type: Transform - - uid: 7473 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-15.5 - parent: 2 - type: Transform - - uid: 8585 - components: - - pos: 30.5,38.5 - parent: 2 - type: Transform - - uid: 9020 - components: - - pos: 110.5,-14.5 - parent: 2 - type: Transform - - uid: 9743 - components: - - pos: 21.5,-8.5 - parent: 2 - type: Transform - - uid: 9744 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-7.5 - parent: 2 - type: Transform - - uid: 9775 - components: - - pos: 23.5,2.5 - parent: 2 - type: Transform - - uid: 10129 - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-7.5 - parent: 2 - type: Transform - - uid: 10545 - components: - - rot: -1.5707963267948966 rad - pos: 61.5,18.5 - parent: 2 - type: Transform - - uid: 10924 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,6.5 - parent: 2 - type: Transform - - uid: 12151 - components: - - rot: -1.5707963267948966 rad - pos: 65.5,23.5 - parent: 2 - type: Transform - - uid: 12934 - components: - - pos: 37.5,-41.5 - parent: 2 - type: Transform -- proto: APCElectronics - entities: - - uid: 6656 - components: - - pos: 90.55121,-10.254825 - parent: 2 - type: Transform -- proto: APCHighCapacity - entities: - - uid: 43 - components: - - rot: 3.141592653589793 rad - pos: 22.5,11.5 - parent: 2 - type: Transform - - uid: 775 - components: - - pos: 3.5,-27.5 - parent: 2 - type: Transform - - uid: 4669 - components: - - pos: 22.5,-29.5 - parent: 2 - type: Transform - - uid: 4676 - components: - - pos: 29.5,-37.5 - parent: 2 - type: Transform - - uid: 6914 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,7.5 - parent: 2 - type: Transform -- proto: APCHyperCapacity - entities: - - uid: 301 - components: - - pos: 19.5,-13.5 - parent: 2 - type: Transform - - uid: 323 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,25.5 - parent: 2 - type: Transform -- proto: APCSuperCapacity - entities: - - uid: 2333 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,25.5 - parent: 2 - type: Transform - - uid: 4928 - components: - - pos: 36.5,-21.5 - parent: 2 - type: Transform -- proto: AtmosDeviceFanTiny - entities: - - uid: 136 - components: - - pos: -2.5,2.5 - parent: 2 - type: Transform - - uid: 373 - components: - - pos: -12.5,-10.5 - parent: 2 - type: Transform - - uid: 608 - components: - - pos: -19.5,-10.5 - parent: 2 - type: Transform - - uid: 2027 - components: - - pos: -4.5,2.5 - parent: 2 - type: Transform - - uid: 6591 - components: - - pos: 32.5,-10.5 - parent: 2 - type: Transform - - uid: 6592 - components: - - pos: 28.5,-10.5 - parent: 2 - type: Transform - - uid: 12295 - components: - - pos: 4.5,24.5 - parent: 2 - type: Transform - - uid: 12296 - components: - - pos: 4.5,26.5 - parent: 2 - type: Transform -- proto: AtmosFixBlockerMarker - entities: - - uid: 1922 - components: - - pos: 47.5,-29.5 - parent: 2 - type: Transform - - uid: 4127 - components: - - pos: 45.5,-27.5 - parent: 2 - type: Transform - - uid: 4139 - components: - - pos: 45.5,-33.5 - parent: 2 - type: Transform - - uid: 4141 - components: - - pos: 47.5,-33.5 - parent: 2 - type: Transform - - uid: 4143 - components: - - pos: 47.5,-27.5 - parent: 2 - type: Transform - - uid: 4148 - components: - - pos: 45.5,-29.5 - parent: 2 - type: Transform - - uid: 4152 - components: - - pos: 46.5,-33.5 - parent: 2 - type: Transform - - uid: 4157 - components: - - pos: 46.5,-29.5 - parent: 2 - type: Transform - - uid: 4175 - components: - - pos: 46.5,-27.5 - parent: 2 - type: Transform -- proto: AtmosFixFreezerMarker - entities: - - uid: 6535 - components: - - pos: 29.5,-12.5 - parent: 2 - type: Transform - - uid: 6539 - components: - - pos: 29.5,-11.5 - parent: 2 - type: Transform - - uid: 6540 - components: - - pos: 29.5,-10.5 - parent: 2 - type: Transform - - uid: 6541 - components: - - pos: 29.5,-9.5 - parent: 2 - type: Transform - - uid: 6542 - components: - - pos: 30.5,-12.5 - parent: 2 - type: Transform - - uid: 6543 - components: - - pos: 30.5,-11.5 - parent: 2 - type: Transform - - uid: 6544 - components: - - pos: 30.5,-10.5 - parent: 2 - type: Transform - - uid: 6545 - components: - - pos: 30.5,-9.5 - parent: 2 - type: Transform - - uid: 6546 - components: - - pos: 31.5,-12.5 - parent: 2 - type: Transform - - uid: 6547 - components: - - pos: 31.5,-11.5 - parent: 2 - type: Transform - - uid: 6548 - components: - - pos: 31.5,-10.5 - parent: 2 - type: Transform - - uid: 6549 - components: - - pos: 31.5,-9.5 - parent: 2 - type: Transform -- proto: AtmosFixNitrogenMarker - entities: - - uid: 4188 - components: - - pos: 45.5,-23.5 - parent: 2 - type: Transform - - uid: 4189 - components: - - pos: 46.5,-23.5 - parent: 2 - type: Transform - - uid: 4191 - components: - - pos: 47.5,-23.5 - parent: 2 - type: Transform -- proto: AtmosFixOxygenMarker - entities: - - uid: 4134 - components: - - pos: 46.5,-25.5 - parent: 2 - type: Transform - - uid: 4142 - components: - - pos: 45.5,-25.5 - parent: 2 - type: Transform - - uid: 4149 - components: - - pos: 47.5,-25.5 - parent: 2 - type: Transform -- proto: AtmosFixPlasmaMarker - entities: - - uid: 4137 - components: - - pos: 47.5,-31.5 - parent: 2 - type: Transform - - uid: 4138 - components: - - pos: 45.5,-31.5 - parent: 2 - type: Transform - - uid: 4153 - components: - - pos: 46.5,-31.5 - parent: 2 - type: Transform -- proto: Autolathe - entities: - - uid: 942 - components: - - pos: 15.5,-23.5 - parent: 2 - type: Transform - - uid: 2120 - components: - - pos: 12.5,21.5 - parent: 2 - type: Transform - - materialWhiteList: - - Steel - - Plastic - - Wood - - Glass - - Cloth - type: MaterialStorage - - uid: 11843 - components: - - pos: 52.5,21.5 - parent: 2 - type: Transform - - materialWhiteList: - - Steel - - Plastic - - Wood - - Glass - - Cloth - type: MaterialStorage -- proto: AutolatheMachineCircuitboard - entities: - - uid: 12370 - components: - - pos: 41.421707,-14.3606415 - parent: 2 - type: Transform -- proto: BananaPhoneInstrument - entities: - - uid: 9600 - components: - - pos: 27.258966,6.8224545 - parent: 2 - type: Transform -- proto: Barricade - entities: - - uid: 2913 - components: - - pos: 59.5,-15.5 - parent: 2 - type: Transform - - uid: 2914 - components: - - pos: 61.5,-17.5 - parent: 2 - type: Transform - - uid: 2915 - components: - - pos: 60.5,-17.5 - parent: 2 - type: Transform - - uid: 2916 - components: - - pos: 64.5,-16.5 - parent: 2 - type: Transform - - uid: 2917 - components: - - pos: 65.5,-16.5 - parent: 2 - type: Transform - - uid: 5703 - components: - - rot: 3.141592653589793 rad - pos: 82.5,-14.5 - parent: 2 - type: Transform -- proto: BarSignMaidCafe - entities: - - uid: 6528 - components: - - pos: 30.5,-1.5 - parent: 2 - type: Transform -- proto: BarSignTheSingulo - entities: - - uid: 12307 - components: - - pos: 66.5,-18.5 - parent: 2 - type: Transform -- proto: Basketball - entities: - - uid: 10804 - components: - - pos: 85.511505,-15.382914 - parent: 2 - type: Transform -- proto: Beaker - entities: - - uid: 366 - components: - - pos: 36.58413,35.51777 - parent: 2 - type: Transform - - uid: 4247 - components: - - pos: 37.031143,-12.408879 - parent: 2 - type: Transform - - uid: 5202 - components: - - pos: 63.66416,-9.582929 - parent: 2 - type: Transform - - uid: 5324 - components: - - pos: 54.76479,17.614588 - parent: 2 - type: Transform - - uid: 11423 - components: - - pos: 63.47666,-9.786054 - parent: 2 - type: Transform - - uid: 11965 - components: - - pos: 64.41618,3.7600718 - parent: 2 - type: Transform -- proto: Bed - entities: - - uid: 388 - components: - - pos: 36.5,42.5 - parent: 2 - type: Transform - - uid: 411 - components: - - pos: 13.5,31.5 - parent: 2 - type: Transform - - uid: 2250 - components: - - pos: 29.5,18.5 - parent: 2 - type: Transform - - uid: 2251 - components: - - pos: 29.5,20.5 - parent: 2 - type: Transform - - uid: 2309 - components: - - pos: 41.5,32.5 - parent: 2 - type: Transform - - uid: 2310 - components: - - pos: 41.5,31.5 - parent: 2 - type: Transform - - uid: 5445 - components: - - pos: 71.5,36.5 - parent: 2 - type: Transform - - uid: 5446 - components: - - pos: 71.5,39.5 - parent: 2 - type: Transform - - uid: 5709 - components: - - pos: 77.5,-12.5 - parent: 2 - type: Transform - - uid: 6936 - components: - - pos: 20.5,17.5 - parent: 2 - type: Transform - - uid: 6942 - components: - - pos: 22.5,17.5 - parent: 2 - type: Transform - - uid: 9623 - components: - - pos: 47.5,4.5 - parent: 2 - type: Transform - - uid: 11838 - components: - - pos: 59.5,-7.5 - parent: 2 - type: Transform - - uid: 11840 - components: - - pos: 59.5,-4.5 - parent: 2 - type: Transform - - uid: 12245 - components: - - pos: 16.5,16.5 - parent: 2 - type: Transform - - uid: 12246 - components: - - pos: 15.5,16.5 - parent: 2 - type: Transform - - uid: 12247 - components: - - pos: 14.5,16.5 - parent: 2 - type: Transform - - uid: 12248 - components: - - pos: 16.5,14.5 - parent: 2 - type: Transform - - uid: 12249 - components: - - pos: 15.5,14.5 - parent: 2 - type: Transform - - uid: 12250 - components: - - pos: 14.5,14.5 - parent: 2 - type: Transform - - uid: 12251 - components: - - pos: 16.5,12.5 - parent: 2 - type: Transform - - uid: 12252 - components: - - pos: 15.5,12.5 - parent: 2 - type: Transform - - uid: 12253 - components: - - pos: 14.5,12.5 - parent: 2 - type: Transform - - uid: 12685 - components: - - pos: 107.5,-24.5 - parent: 2 - type: Transform - - uid: 12688 - components: - - pos: 107.5,-22.5 - parent: 2 - type: Transform - - uid: 12689 - components: - - pos: 107.5,-23.5 - parent: 2 - type: Transform - - uid: 13111 - components: - - pos: 62.5,-4.5 - parent: 2 - type: Transform - - uid: 13112 - components: - - pos: 62.5,-7.5 - parent: 2 - type: Transform -- proto: BedsheetCaptain - entities: - - uid: 379 - components: - - pos: 36.5,42.5 - parent: 2 - type: Transform -- proto: BedsheetClown - entities: - - uid: 5148 - components: - - pos: 27.5,5.5 - parent: 2 - type: Transform -- proto: BedsheetGreen - entities: - - uid: 5252 - components: - - pos: 81.5,-1.5 - parent: 2 - type: Transform - - uid: 7798 - components: - - pos: 81.5,-0.5 - parent: 2 - type: Transform - - uid: 10905 - components: - - pos: 77.5,-8.5 - parent: 2 - type: Transform - - uid: 10908 - components: - - pos: 76.5,-6.5 - parent: 2 - type: Transform -- proto: BedsheetMedical - entities: - - uid: 5197 - components: - - pos: 62.5,-10.5 - parent: 2 - type: Transform - - uid: 9624 - components: - - pos: 47.5,4.5 - parent: 2 - type: Transform - - uid: 11822 - components: - - pos: 66.5,4.5 - parent: 2 - type: Transform - - uid: 11826 - components: - - pos: 60.5,4.5 - parent: 2 - type: Transform - - uid: 11847 - components: - - pos: 59.5,-4.5 - parent: 2 - type: Transform - - uid: 11848 - components: - - pos: 59.5,-7.5 - parent: 2 - type: Transform - - uid: 13113 - components: - - pos: 62.5,-7.5 - parent: 2 - type: Transform - - uid: 13114 - components: - - pos: 62.5,-4.5 - parent: 2 - type: Transform -- proto: BedsheetMime - entities: - - uid: 5147 - components: - - pos: 27.5,5.5 - parent: 2 - type: Transform -- proto: BedsheetOrange - entities: - - uid: 2312 - components: - - pos: 41.5,32.5 - parent: 2 - type: Transform - - uid: 2313 - components: - - pos: 41.5,31.5 - parent: 2 - type: Transform -- proto: BedsheetQM - entities: - - uid: 252 - components: - - pos: 13.5,31.5 - parent: 2 - type: Transform -- proto: BedsheetRainbow - entities: - - uid: 12686 - components: - - pos: 107.5,-24.5 - parent: 2 - type: Transform - - uid: 12687 - components: - - pos: 107.5,-23.5 - parent: 2 - type: Transform - - uid: 12708 - components: - - pos: 107.5,-22.5 - parent: 2 - type: Transform -- proto: BedsheetSpawner - entities: - - uid: 5447 - components: - - pos: 71.5,36.5 - parent: 2 - type: Transform - - uid: 5448 - components: - - pos: 71.5,39.5 - parent: 2 - type: Transform - - uid: 6934 - components: - - pos: 20.5,17.5 - parent: 2 - type: Transform - - uid: 6937 - components: - - pos: 22.5,17.5 - parent: 2 - type: Transform - - uid: 12271 - components: - - pos: 14.5,12.5 - parent: 2 - type: Transform - - uid: 12272 - components: - - pos: 15.5,12.5 - parent: 2 - type: Transform - - uid: 12273 - components: - - pos: 16.5,12.5 - parent: 2 - type: Transform - - uid: 12274 - components: - - pos: 16.5,14.5 - parent: 2 - type: Transform - - uid: 12275 - components: - - pos: 15.5,14.5 - parent: 2 - type: Transform - - uid: 12276 - components: - - pos: 14.5,14.5 - parent: 2 - type: Transform - - uid: 12277 - components: - - pos: 14.5,16.5 - parent: 2 - type: Transform - - uid: 12278 - components: - - pos: 15.5,16.5 - parent: 2 - type: Transform - - uid: 12279 - components: - - pos: 16.5,16.5 - parent: 2 - type: Transform -- proto: BikeHorn - entities: - - uid: 9604 - components: - - pos: 27.587091,6.7912045 - parent: 2 - type: Transform -- proto: BlastDoor - entities: - - uid: 55 - components: - - pos: 35.5,-29.5 - parent: 2 - type: Transform - - links: - - 202 - type: DeviceLinkSink - - uid: 150 - components: - - pos: 47.5,12.5 - parent: 2 - type: Transform - - links: - - 10321 - type: DeviceLinkSink - - uid: 384 - components: - - pos: 5.5,23.5 - parent: 2 - type: Transform - - links: - - 7463 - type: DeviceLinkSink - - uid: 4257 - components: - - pos: 35.5,-33.5 - parent: 2 - type: Transform - - links: - - 4245 - type: DeviceLinkSink - - uid: 5351 - components: - - pos: 63.5,29.5 - parent: 2 - type: Transform - - links: - - 8665 - type: DeviceLinkSink - - uid: 5361 - components: - - pos: 64.5,29.5 - parent: 2 - type: Transform - - links: - - 8665 - type: DeviceLinkSink - - uid: 5875 - components: - - pos: -0.5,-27.5 - parent: 2 - type: Transform - - links: - - 5857 - type: DeviceLinkSink - - uid: 7462 - components: - - pos: 5.5,27.5 - parent: 2 - type: Transform - - links: - - 374 - type: DeviceLinkSink - - uid: 7618 - components: - - pos: 5.5,15.5 - parent: 2 - type: Transform - - links: - - 6856 - type: DeviceLinkSink - - uid: 11016 - components: - - pos: 56.5,32.5 - parent: 2 - type: Transform - - uid: 12890 - components: - - pos: 47.5,-49.5 - parent: 2 - type: Transform - - links: - - 13115 - type: DeviceLinkSink - - uid: 12891 - components: - - pos: 48.5,-49.5 - parent: 2 - type: Transform - - links: - - 13115 - type: DeviceLinkSink -- proto: BlastDoorOpen - entities: - - uid: 2834 - components: - - pos: 12.5,-26.5 - parent: 2 - type: Transform - - links: - - 5685 - type: DeviceLinkSink - - uid: 2835 - components: - - pos: 12.5,-27.5 - parent: 2 - type: Transform - - links: - - 5685 - type: DeviceLinkSink -- proto: BlockGameArcade - entities: - - uid: 1812 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,30.5 - parent: 2 - type: Transform - - uid: 6617 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-6.5 - parent: 2 - type: Transform -- proto: Bonfire - entities: - - uid: 12709 - components: - - pos: 114.5,-17.5 - parent: 2 - type: Transform -- proto: BookChefGaming - entities: - - uid: 297 - components: - - pos: 35.484184,-12.498516 - parent: 2 - type: Transform -- proto: BookshelfFilled - entities: - - uid: 229 - components: - - pos: 8.5,6.5 - parent: 2 - type: Transform - - uid: 230 - components: - - pos: 12.5,7.5 - parent: 2 - type: Transform - - uid: 567 - components: - - pos: 8.5,7.5 - parent: 2 - type: Transform - - uid: 578 - components: - - pos: 10.5,6.5 - parent: 2 - type: Transform - - uid: 588 - components: - - pos: 12.5,6.5 - parent: 2 - type: Transform - - uid: 1484 - components: - - pos: 10.5,7.5 - parent: 2 - type: Transform - - uid: 5100 - components: - - pos: 29.5,6.5 - parent: 2 - type: Transform -- proto: BoozeDispenser - entities: - - uid: 2921 - components: - - pos: 66.5,-15.5 - parent: 2 - type: Transform - - containers: - ReagentDispenser-reagentContainerContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - ReagentDispenser-beaker: !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: [] - beakerSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 6525 - components: - - pos: 38.5,-2.5 - parent: 2 - type: Transform -- proto: BorgCharger - entities: - - uid: 12911 - components: - - pos: 44.5,9.5 - parent: 2 - type: Transform - - uid: 13118 - components: - - pos: 45.5,9.5 - parent: 2 - type: Transform -- proto: BoxBeaker - entities: - - uid: 7811 - components: - - pos: 82.3458,-6.40663 - parent: 2 - type: Transform - - uid: 7854 - components: - - pos: 53.666286,-5.369495 - parent: 2 - type: Transform -- proto: BoxBeanbag - entities: - - uid: 8432 - components: - - pos: 41.499786,24.789263 - parent: 2 - type: Transform -- proto: BoxBodyBag - entities: - - uid: 11987 - components: - - pos: 75.5329,-0.39068663 - parent: 2 - type: Transform -- proto: BoxFlare - entities: - - uid: 8690 - components: - - pos: 32.455227,27.041605 - parent: 2 - type: Transform -- proto: BoxFlashbang - entities: - - uid: 8433 - components: - - pos: 40.45291,22.492388 - parent: 2 - type: Transform - - uid: 8689 - components: - - pos: 32.47085,27.36973 - parent: 2 - type: Transform -- proto: BoxFolderBlack - entities: - - uid: 10293 - components: - - pos: 19.70301,-2.360692 - parent: 2 - type: Transform - - uid: 12101 - components: - - pos: 17.589012,40.69852 - parent: 2 - type: Transform -- proto: BoxFolderBlue - entities: - - uid: 8252 - components: - - pos: 20.522104,32.67386 - parent: 2 - type: Transform - - uid: 10290 - components: - - pos: 19.281136,-2.391942 - parent: 2 - type: Transform - - uid: 11892 - components: - - pos: -1.3771312,-12.370462 - parent: 2 - type: Transform -- proto: BoxFolderRed - entities: - - uid: 6900 - components: - - pos: 43.442894,20.146849 - parent: 2 - type: Transform - - uid: 8249 - components: - - pos: 20.53773,30.345732 - parent: 2 - type: Transform - - uid: 10291 - components: - - pos: 19.374886,-2.470067 - parent: 2 - type: Transform - - uid: 11890 - components: - - pos: -1.5646312,-12.245462 - parent: 2 - type: Transform -- proto: BoxFolderWhite - entities: - - uid: 11421 - components: - - pos: 55.05479,-10.418922 - parent: 2 - type: Transform -- proto: BoxFolderYellow - entities: - - uid: 50 - components: - - pos: 12.5,-35.5 - parent: 2 - type: Transform - - uid: 6888 - components: - - pos: 43.630394,20.021849 - parent: 2 - type: Transform - - uid: 10292 - components: - - pos: 19.48426,-2.579442 - parent: 2 - type: Transform -- proto: BoxHandcuff - entities: - - uid: 8434 - components: - - pos: 40.562286,22.648638 - parent: 2 - type: Transform -- proto: BoxHeadset - entities: - - uid: 7269 - components: - - pos: 20.523739,-19.345793 - parent: 2 - type: Transform -- proto: BoxLatexGloves - entities: - - uid: 1910 - components: - - pos: 78.51021,-6.467936 - parent: 2 - type: Transform -- proto: BoxLightMixed - entities: - - uid: 176 - components: - - pos: 6.475267,-3.36308 - parent: 2 - type: Transform - - uid: 2151 - components: - - pos: 10.494422,21.679125 - parent: 2 - type: Transform - - uid: 5733 - components: - - pos: 72.5,-9.5 - parent: 2 - type: Transform - - uid: 10834 - components: - - pos: 65.52434,11.667425 - parent: 2 - type: Transform -- proto: BoxMagazineRifle - entities: - - uid: 6872 - components: - - flags: InContainer - type: MetaData - - parent: 6871 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 6874 - components: - - flags: InContainer - type: MetaData - - parent: 6871 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: BoxMagazineRiflePractice - entities: - - uid: 6876 - components: - - flags: InContainer - type: MetaData - - parent: 6871 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: BoxMagazineRifleRubber - entities: - - uid: 6875 - components: - - flags: InContainer - type: MetaData - - parent: 6871 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: BoxMouthSwab - entities: - - uid: 2091 - components: - - pos: 78.55708,-7.483561 - parent: 2 - type: Transform -- proto: BoxPerformer - entities: - - uid: 9742 - components: - - pos: 19.585323,-12.603194 - parent: 2 - type: Transform -- proto: BoxSechud - entities: - - uid: 8691 - components: - - pos: 41.4396,22.65098 - parent: 2 - type: Transform -- proto: BoxSterileMask - entities: - - uid: 5246 - components: - - pos: 78.44771,-7.014811 - parent: 2 - type: Transform -- proto: BoxSyringe - entities: - - uid: 7810 - components: - - pos: 82.5958,-6.203505 - parent: 2 - type: Transform - - uid: 7855 - components: - - pos: 53.49441,-5.38512 - parent: 2 - type: Transform -- proto: BoxZiptie - entities: - - uid: 8435 - components: - - pos: 41.124786,22.492388 - parent: 2 - type: Transform -- proto: BrbSign - entities: - - uid: 12244 - components: - - pos: 16.370987,-5.343148 - parent: 2 - type: Transform - - uid: 12269 - components: - - pos: 17.562185,24.7009 - parent: 2 - type: Transform -- proto: BriefcaseBrown - entities: - - uid: 10294 - components: - - pos: 16.51551,-5.391942 - parent: 2 - type: Transform -- proto: BriefcaseBrownFilled - entities: - - uid: 7730 - components: - - pos: -2.5535793,-9.338627 - parent: 2 - type: Transform - - uid: 9398 - components: - - pos: 22.465576,48.64228 - parent: 2 - type: Transform -- proto: BrigTimer - entities: - - uid: 7716 - components: - - pos: 31.5,22.5 - parent: 2 - type: Transform - - linkedPorts: - 2258: - - Start: Close - - Timer: AutoClose - - Timer: Open - type: DeviceLinkSource - - uid: 7718 - components: - - pos: 31.5,19.5 - parent: 2 - type: Transform - - linkedPorts: - 2259: - - Start: Close - - Timer: AutoClose - - Timer: Open - type: DeviceLinkSource -- proto: Brutepack - entities: - - uid: 5712 - components: - - pos: 77.71784,-13.269633 - parent: 2 - type: Transform -- proto: Bucket - entities: - - uid: 781 - components: - - pos: 6.4581156,-3.8073697 - parent: 2 - type: Transform - - uid: 1461 - components: - - pos: 6.6768656,-3.9636197 - parent: 2 - type: Transform - - uid: 2382 - components: - - pos: 47.47656,-6.4677296 - parent: 2 - type: Transform -- proto: CableApcExtension - entities: - - uid: 42 - components: - - pos: 11.5,2.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 51 - components: - - pos: 6.5,15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 59 - components: - - pos: 8.5,-26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 60 - components: - - pos: 9.5,-26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 92 - components: - - pos: 19.5,-14.5 - parent: 2 - type: Transform - - uid: 255 - components: - - pos: 59.5,-3.5 - parent: 2 - type: Transform - - uid: 420 - components: - - pos: 18.5,-14.5 - parent: 2 - type: Transform - - uid: 454 - components: - - pos: 20.5,-14.5 - parent: 2 - type: Transform - - uid: 877 - components: - - pos: 37.5,-41.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 878 - components: - - pos: 37.5,-42.5 - parent: 2 - type: Transform - - uid: 1173 - components: - - pos: 19.5,-13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1194 - components: - - pos: -15.5,15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1307 - components: - - pos: -7.5,15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1323 - components: - - pos: -11.5,15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1327 - components: - - pos: -12.5,15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1328 - components: - - pos: -13.5,15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1329 - components: - - pos: -14.5,15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2135 - components: - - pos: 12.5,18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2146 - components: - - pos: 13.5,18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2403 - components: - - pos: 52.5,-9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3404 - components: - - pos: 22.5,9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3461 - components: - - pos: -17.5,16.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3684 - components: - - pos: 61.5,-7.5 - parent: 2 - type: Transform - - uid: 3685 - components: - - pos: 61.5,-4.5 - parent: 2 - type: Transform - - uid: 3708 - components: - - pos: 22.5,4.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4001 - components: - - pos: -9.5,15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4026 - components: - - pos: -8.5,15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4204 - components: - - pos: 56.5,-3.5 - parent: 2 - type: Transform - - uid: 4677 - components: - - pos: 29.5,-37.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4678 - components: - - pos: 29.5,-38.5 - parent: 2 - type: Transform - - uid: 4679 - components: - - pos: 29.5,-39.5 - parent: 2 - type: Transform - - uid: 4680 - components: - - pos: 29.5,-40.5 - parent: 2 - type: Transform - - uid: 4681 - components: - - pos: 29.5,-41.5 - parent: 2 - type: Transform - - uid: 4683 - components: - - pos: 29.5,-42.5 - parent: 2 - type: Transform - - uid: 4684 - components: - - pos: 29.5,-43.5 - parent: 2 - type: Transform - - uid: 4685 - components: - - pos: 29.5,-44.5 - parent: 2 - type: Transform - - uid: 4686 - components: - - pos: 30.5,-39.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4687 - components: - - pos: 31.5,-39.5 - parent: 2 - type: Transform - - uid: 4688 - components: - - pos: 32.5,-39.5 - parent: 2 - type: Transform - - uid: 4689 - components: - - pos: 30.5,-43.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4690 - components: - - pos: 31.5,-43.5 - parent: 2 - type: Transform - - uid: 4704 - components: - - pos: 32.5,-43.5 - parent: 2 - type: Transform - - uid: 4705 - components: - - pos: 33.5,-43.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4706 - components: - - pos: 33.5,-42.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4707 - components: - - pos: 33.5,-44.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4708 - components: - - pos: 31.5,-44.5 - parent: 2 - type: Transform - - uid: 4709 - components: - - pos: 31.5,-45.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4710 - components: - - pos: 32.5,-45.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4711 - components: - - pos: 26.5,-37.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4712 - components: - - pos: 26.5,-36.5 - parent: 2 - type: Transform - - uid: 4713 - components: - - pos: 26.5,-35.5 - parent: 2 - type: Transform - - uid: 4714 - components: - - pos: 27.5,-35.5 - parent: 2 - type: Transform - - uid: 4715 - components: - - pos: 28.5,-35.5 - parent: 2 - type: Transform - - uid: 4716 - components: - - pos: 29.5,-35.5 - parent: 2 - type: Transform - - uid: 4717 - components: - - pos: 30.5,-35.5 - parent: 2 - type: Transform - - uid: 4718 - components: - - pos: 31.5,-35.5 - parent: 2 - type: Transform - - uid: 4719 - components: - - pos: 32.5,-35.5 - parent: 2 - type: Transform - - uid: 4720 - components: - - pos: 25.5,-35.5 - parent: 2 - type: Transform - - uid: 4721 - components: - - pos: 24.5,-35.5 - parent: 2 - type: Transform - - uid: 4722 - components: - - pos: 23.5,-35.5 - parent: 2 - type: Transform - - uid: 4723 - components: - - pos: 22.5,-35.5 - parent: 2 - type: Transform - - uid: 4724 - components: - - pos: 21.5,-35.5 - parent: 2 - type: Transform - - uid: 4725 - components: - - pos: 20.5,-35.5 - parent: 2 - type: Transform - - uid: 4726 - components: - - pos: 19.5,-35.5 - parent: 2 - type: Transform - - uid: 4727 - components: - - pos: 18.5,-35.5 - parent: 2 - type: Transform - - uid: 4728 - components: - - pos: 17.5,-35.5 - parent: 2 - type: Transform - - uid: 4730 - components: - - pos: 16.5,-35.5 - parent: 2 - type: Transform - - uid: 4731 - components: - - pos: 17.5,-34.5 - parent: 2 - type: Transform - - uid: 4732 - components: - - pos: 17.5,-33.5 - parent: 2 - type: Transform - - uid: 4733 - components: - - pos: 17.5,-32.5 - parent: 2 - type: Transform - - uid: 4734 - components: - - pos: 17.5,-31.5 - parent: 2 - type: Transform - - uid: 4735 - components: - - pos: 9.5,-35.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4736 - components: - - pos: 10.5,-35.5 - parent: 2 - type: Transform - - uid: 4737 - components: - - pos: 11.5,-35.5 - parent: 2 - type: Transform - - uid: 4738 - components: - - pos: 12.5,-35.5 - parent: 2 - type: Transform - - uid: 4739 - components: - - pos: 13.5,-35.5 - parent: 2 - type: Transform - - uid: 4740 - components: - - pos: 13.5,-34.5 - parent: 2 - type: Transform - - uid: 4741 - components: - - pos: 13.5,-33.5 - parent: 2 - type: Transform - - uid: 4742 - components: - - pos: 11.5,-34.5 - parent: 2 - type: Transform - - uid: 4745 - components: - - pos: 12.5,-36.5 - parent: 2 - type: Transform - - uid: 4746 - components: - - pos: 22.5,-22.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4747 - components: - - pos: 22.5,-23.5 - parent: 2 - type: Transform - - uid: 4748 - components: - - pos: 22.5,-24.5 - parent: 2 - type: Transform - - uid: 4749 - components: - - pos: 22.5,-25.5 - parent: 2 - type: Transform - - uid: 4750 - components: - - pos: 22.5,-26.5 - parent: 2 - type: Transform - - uid: 4751 - components: - - pos: 21.5,-26.5 - parent: 2 - type: Transform - - uid: 4752 - components: - - pos: 21.5,-27.5 - parent: 2 - type: Transform - - uid: 4753 - components: - - pos: 20.5,-27.5 - parent: 2 - type: Transform - - uid: 4754 - components: - - pos: 19.5,-27.5 - parent: 2 - type: Transform - - uid: 4755 - components: - - pos: 18.5,-27.5 - parent: 2 - type: Transform - - uid: 4756 - components: - - pos: 17.5,-27.5 - parent: 2 - type: Transform - - uid: 4757 - components: - - pos: 16.5,-27.5 - parent: 2 - type: Transform - - uid: 4758 - components: - - pos: 15.5,-27.5 - parent: 2 - type: Transform - - uid: 4759 - components: - - pos: 14.5,-27.5 - parent: 2 - type: Transform - - uid: 4760 - components: - - pos: 14.5,-26.5 - parent: 2 - type: Transform - - uid: 4761 - components: - - pos: 14.5,-25.5 - parent: 2 - type: Transform - - uid: 4762 - components: - - pos: 14.5,-24.5 - parent: 2 - type: Transform - - uid: 4763 - components: - - pos: 14.5,-23.5 - parent: 2 - type: Transform - - uid: 4764 - components: - - pos: 18.5,-26.5 - parent: 2 - type: Transform - - uid: 4765 - components: - - pos: 18.5,-25.5 - parent: 2 - type: Transform - - uid: 4766 - components: - - pos: 18.5,-24.5 - parent: 2 - type: Transform - - uid: 4767 - components: - - pos: -16.5,15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4827 - components: - - pos: -17.5,15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4882 - components: - - pos: 3.5,-27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4884 - components: - - pos: 3.5,-28.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4887 - components: - - pos: 3.5,-29.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4888 - components: - - pos: 3.5,-30.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4889 - components: - - pos: 3.5,-31.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4890 - components: - - pos: 2.5,-30.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4891 - components: - - pos: 1.5,-30.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4892 - components: - - pos: 0.5,-30.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4893 - components: - - pos: -0.5,-30.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4894 - components: - - pos: 1.5,-31.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4895 - components: - - pos: 0.5,-29.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4896 - components: - - pos: 0.5,-28.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4897 - components: - - pos: 5.5,-35.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4898 - components: - - pos: 4.5,-35.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4899 - components: - - pos: 3.5,-35.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4900 - components: - - pos: 2.5,-35.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4901 - components: - - pos: 1.5,-35.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4902 - components: - - pos: 0.5,-35.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4929 - components: - - pos: 41.5,-37.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4930 - components: - - pos: 41.5,-39.5 - parent: 2 - type: Transform - - uid: 4931 - components: - - pos: 41.5,-38.5 - parent: 2 - type: Transform - - uid: 4932 - components: - - pos: 40.5,-39.5 - parent: 2 - type: Transform - - uid: 4933 - components: - - pos: 39.5,-39.5 - parent: 2 - type: Transform - - uid: 4934 - components: - - pos: 38.5,-39.5 - parent: 2 - type: Transform - - uid: 4935 - components: - - pos: 42.5,-39.5 - parent: 2 - type: Transform - - uid: 4936 - components: - - pos: 43.5,-39.5 - parent: 2 - type: Transform - - uid: 4937 - components: - - pos: 44.5,-39.5 - parent: 2 - type: Transform - - uid: 4938 - components: - - pos: 45.5,-39.5 - parent: 2 - type: Transform - - uid: 4939 - components: - - pos: 46.5,-39.5 - parent: 2 - type: Transform - - uid: 4940 - components: - - pos: 36.5,-21.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4941 - components: - - pos: 36.5,-22.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4942 - components: - - pos: 36.5,-23.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4943 - components: - - pos: 36.5,-24.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4944 - components: - - pos: 36.5,-25.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4945 - components: - - pos: 35.5,-25.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4946 - components: - - pos: 34.5,-25.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4947 - components: - - pos: 33.5,-25.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4948 - components: - - pos: 37.5,-25.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4949 - components: - - pos: 38.5,-25.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4950 - components: - - pos: 38.5,-26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4951 - components: - - pos: 38.5,-27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4952 - components: - - pos: 38.5,-28.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4953 - components: - - pos: 38.5,-29.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4954 - components: - - pos: 38.5,-30.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4955 - components: - - pos: 38.5,-31.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4956 - components: - - pos: 38.5,-32.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4957 - components: - - pos: 38.5,-33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4958 - components: - - pos: 38.5,-34.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4959 - components: - - pos: 38.5,-35.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4960 - components: - - pos: 39.5,-35.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4961 - components: - - pos: 32.5,-25.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4962 - components: - - pos: 31.5,-25.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4963 - components: - - pos: 31.5,-26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4964 - components: - - pos: 31.5,-27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4965 - components: - - pos: 31.5,-28.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4966 - components: - - pos: 30.5,-27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4967 - components: - - pos: 37.5,-22.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4968 - components: - - pos: 38.5,-22.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4969 - components: - - pos: 39.5,-22.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5014 - components: - - pos: 40.5,-22.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5028 - components: - - pos: 41.5,-22.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5029 - components: - - pos: 42.5,-22.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5043 - components: - - pos: 43.5,-22.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5044 - components: - - pos: 43.5,-23.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5065 - components: - - pos: 43.5,-24.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5066 - components: - - pos: 43.5,-25.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5092 - components: - - pos: 43.5,-26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5093 - components: - - pos: 43.5,-27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5105 - components: - - pos: 43.5,-28.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5106 - components: - - pos: 43.5,-29.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5116 - components: - - pos: 43.5,-30.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5117 - components: - - pos: 43.5,-31.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5123 - components: - - pos: 43.5,-32.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5124 - components: - - pos: 43.5,-33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5125 - components: - - pos: 43.5,-34.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5205 - components: - - pos: 61.5,-5.5 - parent: 2 - type: Transform - - uid: 5211 - components: - - pos: 57.5,-3.5 - parent: 2 - type: Transform - - uid: 5212 - components: - - pos: 61.5,-1.5 - parent: 2 - type: Transform - - uid: 5222 - components: - - pos: 61.5,-3.5 - parent: 2 - type: Transform - - uid: 5223 - components: - - pos: 55.5,-3.5 - parent: 2 - type: Transform - - uid: 5267 - components: - - pos: 60.5,-3.5 - parent: 2 - type: Transform - - uid: 5283 - components: - - pos: -17.5,17.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5286 - components: - - pos: -6.5,15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5296 - components: - - pos: -10.5,15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5315 - components: - - pos: 35.5,-39.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5316 - components: - - pos: 35.5,-40.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5345 - components: - - pos: 35.5,-41.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5346 - components: - - pos: 35.5,-42.5 - parent: 2 - type: Transform - - uid: 5355 - components: - - pos: 35.5,-43.5 - parent: 2 - type: Transform - - uid: 5356 - components: - - pos: 35.5,-44.5 - parent: 2 - type: Transform - - uid: 5359 - components: - - pos: 36.5,-43.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5360 - components: - - pos: 37.5,-43.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5367 - components: - - pos: 53.5,21.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5371 - components: - - pos: 38.5,-43.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5372 - components: - - pos: 40.5,-43.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5373 - components: - - pos: 39.5,-43.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5374 - components: - - pos: 35.5,-45.5 - parent: 2 - type: Transform - - uid: 5396 - components: - - pos: 40.5,-44.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5577 - components: - - pos: 17.5,-37.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5578 - components: - - pos: 17.5,-38.5 - parent: 2 - type: Transform - - uid: 5579 - components: - - pos: 17.5,-39.5 - parent: 2 - type: Transform - - uid: 5580 - components: - - pos: 17.5,-40.5 - parent: 2 - type: Transform - - uid: 5581 - components: - - pos: 17.5,-41.5 - parent: 2 - type: Transform - - uid: 5582 - components: - - pos: 16.5,-41.5 - parent: 2 - type: Transform - - uid: 5583 - components: - - pos: 15.5,-41.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5584 - components: - - pos: 14.5,-41.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5585 - components: - - pos: 13.5,-41.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5586 - components: - - pos: 13.5,-42.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5587 - components: - - pos: 18.5,-39.5 - parent: 2 - type: Transform - - uid: 5588 - components: - - pos: 19.5,-39.5 - parent: 2 - type: Transform - - uid: 5589 - components: - - pos: 20.5,-39.5 - parent: 2 - type: Transform - - uid: 5590 - components: - - pos: 21.5,-39.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5591 - components: - - pos: 22.5,-39.5 - parent: 2 - type: Transform - - uid: 5592 - components: - - pos: 23.5,-39.5 - parent: 2 - type: Transform - - uid: 5593 - components: - - pos: 24.5,-39.5 - parent: 2 - type: Transform - - uid: 5594 - components: - - pos: 25.5,-39.5 - parent: 2 - type: Transform - - uid: 5595 - components: - - pos: 26.5,-39.5 - parent: 2 - type: Transform - - uid: 5596 - components: - - pos: 25.5,-40.5 - parent: 2 - type: Transform - - uid: 5597 - components: - - pos: 25.5,-41.5 - parent: 2 - type: Transform - - uid: 5598 - components: - - pos: 19.5,-40.5 - parent: 2 - type: Transform - - uid: 5599 - components: - - pos: 19.5,-41.5 - parent: 2 - type: Transform - - uid: 5600 - components: - - pos: 19.5,-42.5 - parent: 2 - type: Transform - - uid: 5601 - components: - - pos: 19.5,-43.5 - parent: 2 - type: Transform - - uid: 5602 - components: - - pos: 23.5,-43.5 - parent: 2 - type: Transform - - uid: 5603 - components: - - pos: 23.5,-42.5 - parent: 2 - type: Transform - - uid: 5604 - components: - - pos: 23.5,-41.5 - parent: 2 - type: Transform - - uid: 5605 - components: - - pos: 23.5,-40.5 - parent: 2 - type: Transform - - uid: 5889 - components: - - pos: 4.5,-28.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5890 - components: - - pos: 4.5,-27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5891 - components: - - pos: 4.5,-26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5892 - components: - - pos: 4.5,-25.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5893 - components: - - pos: 4.5,-24.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5894 - components: - - pos: 4.5,-23.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5895 - components: - - pos: 5.5,-23.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5896 - components: - - pos: 6.5,-23.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5897 - components: - - pos: 7.5,-23.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5898 - components: - - pos: 8.5,-23.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6460 - components: - - pos: 18.5,-15.5 - parent: 2 - type: Transform - - uid: 6461 - components: - - pos: 18.5,-16.5 - parent: 2 - type: Transform - - uid: 6462 - components: - - pos: 18.5,-17.5 - parent: 2 - type: Transform - - uid: 6463 - components: - - pos: 17.5,-17.5 - parent: 2 - type: Transform - - uid: 6464 - components: - - pos: 16.5,-17.5 - parent: 2 - type: Transform - - uid: 6465 - components: - - pos: 15.5,-17.5 - parent: 2 - type: Transform - - uid: 6466 - components: - - pos: 14.5,-17.5 - parent: 2 - type: Transform - - uid: 6467 - components: - - pos: 21.5,-14.5 - parent: 2 - type: Transform - - uid: 6468 - components: - - pos: 21.5,-15.5 - parent: 2 - type: Transform - - uid: 6469 - components: - - pos: 21.5,-16.5 - parent: 2 - type: Transform - - uid: 6470 - components: - - pos: 21.5,-17.5 - parent: 2 - type: Transform - - uid: 6471 - components: - - pos: 21.5,-18.5 - parent: 2 - type: Transform - - uid: 6472 - components: - - pos: 22.5,-17.5 - parent: 2 - type: Transform - - uid: 6687 - components: - - pos: 32.5,-11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6688 - components: - - pos: 33.5,-11.5 - parent: 2 - type: Transform - - uid: 6689 - components: - - pos: 34.5,-11.5 - parent: 2 - type: Transform - - uid: 6690 - components: - - pos: 35.5,-11.5 - parent: 2 - type: Transform - - uid: 6691 - components: - - pos: 36.5,-11.5 - parent: 2 - type: Transform - - uid: 6692 - components: - - pos: 37.5,-11.5 - parent: 2 - type: Transform - - uid: 6693 - components: - - pos: 38.5,-11.5 - parent: 2 - type: Transform - - uid: 6694 - components: - - pos: 39.5,-11.5 - parent: 2 - type: Transform - - uid: 6695 - components: - - pos: 31.5,-11.5 - parent: 2 - type: Transform - - uid: 6696 - components: - - pos: 30.5,-11.5 - parent: 2 - type: Transform - - uid: 6698 - components: - - pos: 30.5,-10.5 - parent: 2 - type: Transform - - uid: 6699 - components: - - pos: 37.5,-10.5 - parent: 2 - type: Transform - - uid: 6700 - components: - - pos: 39.5,-10.5 - parent: 2 - type: Transform - - uid: 6701 - components: - - pos: 34.5,-10.5 - parent: 2 - type: Transform - - uid: 6702 - components: - - pos: 37.5,-2.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6703 - components: - - pos: 37.5,-3.5 - parent: 2 - type: Transform - - uid: 6704 - components: - - pos: 37.5,-4.5 - parent: 2 - type: Transform - - uid: 6705 - components: - - pos: 37.5,-5.5 - parent: 2 - type: Transform - - uid: 6706 - components: - - pos: 37.5,-6.5 - parent: 2 - type: Transform - - uid: 6707 - components: - - pos: 36.5,-6.5 - parent: 2 - type: Transform - - uid: 6708 - components: - - pos: 35.5,-6.5 - parent: 2 - type: Transform - - uid: 6709 - components: - - pos: 34.5,-6.5 - parent: 2 - type: Transform - - uid: 6710 - components: - - pos: 33.5,-6.5 - parent: 2 - type: Transform - - uid: 6711 - components: - - pos: 32.5,-6.5 - parent: 2 - type: Transform - - uid: 6712 - components: - - pos: 31.5,-6.5 - parent: 2 - type: Transform - - uid: 6713 - components: - - pos: 30.5,-6.5 - parent: 2 - type: Transform - - uid: 6714 - components: - - pos: 31.5,-5.5 - parent: 2 - type: Transform - - uid: 6715 - components: - - pos: 31.5,-4.5 - parent: 2 - type: Transform - - uid: 6716 - components: - - pos: 31.5,-3.5 - parent: 2 - type: Transform - - uid: 6718 - components: - - pos: 34.5,-5.5 - parent: 2 - type: Transform - - uid: 6719 - components: - - pos: 34.5,-4.5 - parent: 2 - type: Transform - - uid: 6722 - components: - - pos: 34.5,-3.5 - parent: 2 - type: Transform - - uid: 6723 - components: - - pos: 38.5,-6.5 - parent: 2 - type: Transform - - uid: 6724 - components: - - pos: 39.5,-6.5 - parent: 2 - type: Transform - - uid: 6725 - components: - - pos: 39.5,-5.5 - parent: 2 - type: Transform - - uid: 6726 - components: - - pos: 39.5,-4.5 - parent: 2 - type: Transform - - uid: 6727 - components: - - pos: 39.5,-3.5 - parent: 2 - type: Transform - - uid: 6728 - components: - - pos: 45.5,-8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6732 - components: - - pos: 45.5,-7.5 - parent: 2 - type: Transform - - uid: 6733 - components: - - pos: 45.5,-6.5 - parent: 2 - type: Transform - - uid: 6734 - components: - - pos: 46.5,-6.5 - parent: 2 - type: Transform - - uid: 6735 - components: - - pos: 46.5,-5.5 - parent: 2 - type: Transform - - uid: 6736 - components: - - pos: 46.5,-4.5 - parent: 2 - type: Transform - - uid: 6737 - components: - - pos: 46.5,-3.5 - parent: 2 - type: Transform - - uid: 6738 - components: - - pos: 44.5,-6.5 - parent: 2 - type: Transform - - uid: 6739 - components: - - pos: 43.5,-6.5 - parent: 2 - type: Transform - - uid: 6740 - components: - - pos: 42.5,-6.5 - parent: 2 - type: Transform - - uid: 6741 - components: - - pos: 42.5,-5.5 - parent: 2 - type: Transform - - uid: 6742 - components: - - pos: 42.5,-4.5 - parent: 2 - type: Transform - - uid: 6743 - components: - - pos: 42.5,-3.5 - parent: 2 - type: Transform - - uid: 6744 - components: - - pos: 42.5,-7.5 - parent: 2 - type: Transform - - uid: 6745 - components: - - pos: 42.5,-8.5 - parent: 2 - type: Transform - - uid: 6746 - components: - - pos: 42.5,-9.5 - parent: 2 - type: Transform - - uid: 6747 - components: - - pos: 42.5,-10.5 - parent: 2 - type: Transform - - uid: 6829 - components: - - pos: -4.5,15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6830 - components: - - pos: 3.5,15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6831 - components: - - pos: -2.5,15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6836 - components: - - pos: -0.5,15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6837 - components: - - pos: -1.5,15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6853 - components: - - pos: -3.5,15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6855 - components: - - pos: -5.5,15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6861 - components: - - pos: 8.5,17.5 - parent: 2 - type: Transform - - uid: 6862 - components: - - pos: 8.5,15.5 - parent: 2 - type: Transform - - uid: 6869 - components: - - pos: 10.5,18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6870 - components: - - pos: 9.5,18.5 - parent: 2 - type: Transform - - uid: 6920 - components: - - pos: 10.5,-26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6921 - components: - - pos: 10.5,-27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6922 - components: - - pos: 10.5,-28.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6923 - components: - - pos: 10.5,-29.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6924 - components: - - pos: 10.5,-30.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6925 - components: - - pos: 11.5,-30.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6926 - components: - - pos: 12.5,-30.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7040 - components: - - pos: 11.5,3.5 - parent: 2 - type: Transform - - uid: 7041 - components: - - pos: 11.5,4.5 - parent: 2 - type: Transform - - uid: 7042 - components: - - pos: 11.5,5.5 - parent: 2 - type: Transform - - uid: 7043 - components: - - pos: 11.5,6.5 - parent: 2 - type: Transform - - uid: 7044 - components: - - pos: 11.5,7.5 - parent: 2 - type: Transform - - uid: 7045 - components: - - pos: 12.5,5.5 - parent: 2 - type: Transform - - uid: 7046 - components: - - pos: 13.5,5.5 - parent: 2 - type: Transform - - uid: 7047 - components: - - pos: 14.5,5.5 - parent: 2 - type: Transform - - uid: 7048 - components: - - pos: 10.5,5.5 - parent: 2 - type: Transform - - uid: 7049 - components: - - pos: 9.5,5.5 - parent: 2 - type: Transform - - uid: 7050 - components: - - pos: 9.5,6.5 - parent: 2 - type: Transform - - uid: 7051 - components: - - pos: 9.5,4.5 - parent: 2 - type: Transform - - uid: 7052 - components: - - pos: 10.5,11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7053 - components: - - pos: 10.5,12.5 - parent: 2 - type: Transform - - uid: 7054 - components: - - pos: 10.5,13.5 - parent: 2 - type: Transform - - uid: 7055 - components: - - pos: 11.5,13.5 - parent: 2 - type: Transform - - uid: 7056 - components: - - pos: 12.5,13.5 - parent: 2 - type: Transform - - uid: 7057 - components: - - pos: 10.5,10.5 - parent: 2 - type: Transform - - uid: 7058 - components: - - pos: 11.5,10.5 - parent: 2 - type: Transform - - uid: 7059 - components: - - pos: 12.5,10.5 - parent: 2 - type: Transform - - uid: 7060 - components: - - pos: 13.5,10.5 - parent: 2 - type: Transform - - uid: 7061 - components: - - pos: 14.5,10.5 - parent: 2 - type: Transform - - uid: 7062 - components: - - pos: 15.5,10.5 - parent: 2 - type: Transform - - uid: 7063 - components: - - pos: 16.5,10.5 - parent: 2 - type: Transform - - uid: 7064 - components: - - pos: 17.5,10.5 - parent: 2 - type: Transform - - uid: 7065 - components: - - pos: 18.5,10.5 - parent: 2 - type: Transform - - uid: 7066 - components: - - pos: 21.5,5.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7067 - components: - - pos: 20.5,5.5 - parent: 2 - type: Transform - - uid: 7068 - components: - - pos: 19.5,5.5 - parent: 2 - type: Transform - - uid: 7069 - components: - - pos: 18.5,5.5 - parent: 2 - type: Transform - - uid: 7070 - components: - - pos: 17.5,5.5 - parent: 2 - type: Transform - - uid: 7071 - components: - - pos: 19.5,6.5 - parent: 2 - type: Transform - - uid: 7072 - components: - - pos: 19.5,7.5 - parent: 2 - type: Transform - - uid: 7073 - components: - - pos: 20.5,6.5 - parent: 2 - type: Transform - - uid: 7074 - components: - - pos: 22.5,5.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7078 - components: - - pos: 22.5,3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7079 - components: - - pos: 21.5,3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7080 - components: - - pos: 20.5,3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7081 - components: - - pos: 19.5,3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7082 - components: - - pos: 18.5,3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7083 - components: - - pos: 17.5,3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7084 - components: - - pos: 22.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7085 - components: - - pos: 22.5,7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7086 - components: - - pos: 22.5,8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7087 - components: - - pos: 22.5,11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7088 - components: - - pos: 22.5,12.5 - parent: 2 - type: Transform - - uid: 7089 - components: - - pos: 22.5,13.5 - parent: 2 - type: Transform - - uid: 7090 - components: - - pos: 22.5,14.5 - parent: 2 - type: Transform - - uid: 7091 - components: - - pos: 22.5,15.5 - parent: 2 - type: Transform - - uid: 7092 - components: - - pos: 21.5,15.5 - parent: 2 - type: Transform - - uid: 7093 - components: - - pos: 21.5,16.5 - parent: 2 - type: Transform - - uid: 7094 - components: - - pos: 21.5,17.5 - parent: 2 - type: Transform - - uid: 7095 - components: - - pos: 21.5,18.5 - parent: 2 - type: Transform - - uid: 7096 - components: - - pos: 20.5,18.5 - parent: 2 - type: Transform - - uid: 7097 - components: - - pos: 21.5,13.5 - parent: 2 - type: Transform - - uid: 7098 - components: - - pos: 20.5,13.5 - parent: 2 - type: Transform - - uid: 7099 - components: - - pos: 19.5,13.5 - parent: 2 - type: Transform - - uid: 7100 - components: - - pos: 18.5,13.5 - parent: 2 - type: Transform - - uid: 7101 - components: - - pos: 17.5,13.5 - parent: 2 - type: Transform - - uid: 7102 - components: - - pos: 16.5,13.5 - parent: 2 - type: Transform - - uid: 7103 - components: - - pos: 15.5,13.5 - parent: 2 - type: Transform - - uid: 7104 - components: - - pos: 19.5,14.5 - parent: 2 - type: Transform - - uid: 7105 - components: - - pos: 19.5,15.5 - parent: 2 - type: Transform - - uid: 7106 - components: - - pos: 18.5,15.5 - parent: 2 - type: Transform - - uid: 7107 - components: - - pos: 17.5,15.5 - parent: 2 - type: Transform - - uid: 7108 - components: - - pos: 16.5,15.5 - parent: 2 - type: Transform - - uid: 7109 - components: - - pos: 15.5,15.5 - parent: 2 - type: Transform - - uid: 7110 - components: - - pos: 28.5,7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7111 - components: - - pos: 27.5,7.5 - parent: 2 - type: Transform - - uid: 7112 - components: - - pos: 26.5,7.5 - parent: 2 - type: Transform - - uid: 7113 - components: - - pos: 26.5,6.5 - parent: 2 - type: Transform - - uid: 7114 - components: - - pos: 26.5,5.5 - parent: 2 - type: Transform - - uid: 7115 - components: - - pos: 26.5,8.5 - parent: 2 - type: Transform - - uid: 7116 - components: - - pos: 28.5,9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7117 - components: - - pos: 28.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7118 - components: - - pos: 27.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7119 - components: - - pos: 29.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7120 - components: - - pos: 29.5,11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7121 - components: - - pos: 30.5,11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7122 - components: - - pos: 31.5,11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7123 - components: - - pos: 32.5,11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7124 - components: - - pos: 33.5,11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7125 - components: - - pos: 34.5,11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7126 - components: - - pos: 35.5,11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7127 - components: - - pos: 36.5,11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7128 - components: - - pos: 37.5,11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7129 - components: - - pos: 33.5,7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7130 - components: - - pos: 32.5,7.5 - parent: 2 - type: Transform - - uid: 7131 - components: - - pos: 31.5,7.5 - parent: 2 - type: Transform - - uid: 7132 - components: - - pos: 30.5,7.5 - parent: 2 - type: Transform - - uid: 7133 - components: - - pos: 30.5,6.5 - parent: 2 - type: Transform - - uid: 7134 - components: - - pos: 30.5,5.5 - parent: 2 - type: Transform - - uid: 7135 - components: - - pos: 34.5,7.5 - parent: 2 - type: Transform - - uid: 7136 - components: - - pos: 35.5,7.5 - parent: 2 - type: Transform - - uid: 7137 - components: - - pos: 36.5,7.5 - parent: 2 - type: Transform - - uid: 7138 - components: - - pos: 37.5,7.5 - parent: 2 - type: Transform - - uid: 7139 - components: - - pos: 38.5,7.5 - parent: 2 - type: Transform - - uid: 7140 - components: - - pos: 37.5,8.5 - parent: 2 - type: Transform - - uid: 7141 - components: - - pos: 37.5,9.5 - parent: 2 - type: Transform - - uid: 7142 - components: - - pos: 37.5,6.5 - parent: 2 - type: Transform - - uid: 7143 - components: - - pos: 37.5,5.5 - parent: 2 - type: Transform - - uid: 7144 - components: - - pos: 35.5,5.5 - parent: 2 - type: Transform - - uid: 7145 - components: - - pos: 35.5,6.5 - parent: 2 - type: Transform - - uid: 7146 - components: - - pos: 35.5,8.5 - parent: 2 - type: Transform - - uid: 7147 - components: - - pos: 35.5,9.5 - parent: 2 - type: Transform - - uid: 7273 - components: - - pos: 22.5,-28.5 - parent: 2 - type: Transform - - uid: 7275 - components: - - pos: 23.5,-28.5 - parent: 2 - type: Transform - - uid: 7276 - components: - - pos: 24.5,-28.5 - parent: 2 - type: Transform - - uid: 7277 - components: - - pos: 25.5,-28.5 - parent: 2 - type: Transform - - uid: 7278 - components: - - pos: 26.5,-28.5 - parent: 2 - type: Transform - - uid: 7279 - components: - - pos: 25.5,-27.5 - parent: 2 - type: Transform - - uid: 7280 - components: - - pos: 25.5,-26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7281 - components: - - pos: 27.5,-28.5 - parent: 2 - type: Transform - - uid: 7282 - components: - - pos: 27.5,-27.5 - parent: 2 - type: Transform - - uid: 7283 - components: - - pos: 27.5,-26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7284 - components: - - pos: 24.5,-27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7346 - components: - - pos: 8.5,18.5 - parent: 2 - type: Transform - - uid: 7452 - components: - - pos: 13.5,16.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7453 - components: - - pos: 12.5,16.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7454 - components: - - pos: 12.5,17.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7588 - components: - - pos: -15.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7589 - components: - - pos: -15.5,-14.5 - parent: 2 - type: Transform - - uid: 7590 - components: - - pos: -15.5,-13.5 - parent: 2 - type: Transform - - uid: 7592 - components: - - pos: -16.5,-13.5 - parent: 2 - type: Transform - - uid: 7593 - components: - - pos: -17.5,-13.5 - parent: 2 - type: Transform - - uid: 7594 - components: - - pos: -18.5,-13.5 - parent: 2 - type: Transform - - uid: 7596 - components: - - pos: -19.5,-13.5 - parent: 2 - type: Transform - - uid: 7597 - components: - - pos: -20.5,-13.5 - parent: 2 - type: Transform - - uid: 7598 - components: - - pos: -19.5,-12.5 - parent: 2 - type: Transform - - uid: 7599 - components: - - pos: -14.5,-13.5 - parent: 2 - type: Transform - - uid: 7600 - components: - - pos: -13.5,-13.5 - parent: 2 - type: Transform - - uid: 7601 - components: - - pos: -12.5,-13.5 - parent: 2 - type: Transform - - uid: 7602 - components: - - pos: -11.5,-13.5 - parent: 2 - type: Transform - - uid: 7603 - components: - - pos: -10.5,-13.5 - parent: 2 - type: Transform - - uid: 7604 - components: - - pos: -9.5,-13.5 - parent: 2 - type: Transform - - uid: 7605 - components: - - pos: -8.5,-13.5 - parent: 2 - type: Transform - - uid: 7606 - components: - - pos: -7.5,-13.5 - parent: 2 - type: Transform - - uid: 7607 - components: - - pos: -6.5,-13.5 - parent: 2 - type: Transform - - uid: 7608 - components: - - pos: -5.5,-13.5 - parent: 2 - type: Transform - - uid: 7609 - components: - - pos: -5.5,-14.5 - parent: 2 - type: Transform - - uid: 7610 - components: - - pos: -5.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7613 - components: - - pos: -12.5,-12.5 - parent: 2 - type: Transform - - uid: 7614 - components: - - pos: -6.5,-12.5 - parent: 2 - type: Transform - - uid: 7615 - components: - - pos: -6.5,-11.5 - parent: 2 - type: Transform - - uid: 7616 - components: - - pos: -6.5,-10.5 - parent: 2 - type: Transform - - uid: 7619 - components: - - pos: -6.5,-9.5 - parent: 2 - type: Transform - - uid: 7620 - components: - - pos: -0.5,-11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7621 - components: - - pos: -1.5,-11.5 - parent: 2 - type: Transform - - uid: 7622 - components: - - pos: -2.5,-11.5 - parent: 2 - type: Transform - - uid: 7623 - components: - - pos: -2.5,-10.5 - parent: 2 - type: Transform - - uid: 7624 - components: - - pos: -2.5,-9.5 - parent: 2 - type: Transform - - uid: 7625 - components: - - pos: -2.5,-8.5 - parent: 2 - type: Transform - - uid: 7626 - components: - - pos: -2.5,-7.5 - parent: 2 - type: Transform - - uid: 7627 - components: - - pos: 0.5,-8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7628 - components: - - pos: 1.5,-8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7629 - components: - - pos: 1.5,-9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7630 - components: - - pos: 2.5,-9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7631 - components: - - pos: 3.5,-9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7632 - components: - - pos: 4.5,-9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7633 - components: - - pos: 5.5,-9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7634 - components: - - pos: 1.5,-10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7635 - components: - - pos: 1.5,-11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7636 - components: - - pos: 1.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7637 - components: - - pos: 1.5,-13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7638 - components: - - pos: 1.5,-14.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7639 - components: - - pos: 1.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7640 - components: - - pos: 1.5,-7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7641 - components: - - pos: 1.5,-6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7642 - components: - - pos: 2.5,-4.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7643 - components: - - pos: 3.5,-4.5 - parent: 2 - type: Transform - - uid: 7644 - components: - - pos: 4.5,-4.5 - parent: 2 - type: Transform - - uid: 7645 - components: - - pos: 5.5,-4.5 - parent: 2 - type: Transform - - uid: 7646 - components: - - pos: 5.5,-5.5 - parent: 2 - type: Transform - - uid: 7647 - components: - - pos: 0.5,-3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7648 - components: - - pos: -0.5,-3.5 - parent: 2 - type: Transform - - uid: 7649 - components: - - pos: -1.5,-3.5 - parent: 2 - type: Transform - - uid: 7650 - components: - - pos: -2.5,-3.5 - parent: 2 - type: Transform - - uid: 7651 - components: - - pos: -2.5,-4.5 - parent: 2 - type: Transform - - uid: 7652 - components: - - pos: -4.5,-2.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7653 - components: - - pos: -5.5,-2.5 - parent: 2 - type: Transform - - uid: 7654 - components: - - pos: -6.5,-2.5 - parent: 2 - type: Transform - - uid: 7655 - components: - - pos: -6.5,-3.5 - parent: 2 - type: Transform - - uid: 7656 - components: - - pos: -6.5,-4.5 - parent: 2 - type: Transform - - uid: 7657 - components: - - pos: -6.5,-5.5 - parent: 2 - type: Transform - - uid: 7658 - components: - - pos: -6.5,-6.5 - parent: 2 - type: Transform - - uid: 7659 - components: - - pos: -6.5,-1.5 - parent: 2 - type: Transform - - uid: 7660 - components: - - pos: -6.5,-0.5 - parent: 2 - type: Transform - - uid: 7661 - components: - - pos: 2.5,15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7665 - components: - - pos: 0.5,15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7673 - components: - - pos: 5.5,15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7677 - components: - - pos: 8.5,16.5 - parent: 2 - type: Transform - - uid: 7680 - components: - - pos: 1.5,15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7682 - components: - - pos: -5.5,-0.5 - parent: 2 - type: Transform - - uid: 7685 - components: - - pos: -4.5,-0.5 - parent: 2 - type: Transform - - uid: 7686 - components: - - pos: -3.5,-0.5 - parent: 2 - type: Transform - - uid: 7687 - components: - - pos: -2.5,-0.5 - parent: 2 - type: Transform - - uid: 7689 - components: - - pos: -1.5,-0.5 - parent: 2 - type: Transform - - uid: 7690 - components: - - pos: -0.5,-0.5 - parent: 2 - type: Transform - - uid: 7691 - components: - - pos: 0.5,-0.5 - parent: 2 - type: Transform - - uid: 7692 - components: - - pos: 1.5,-0.5 - parent: 2 - type: Transform - - uid: 7693 - components: - - pos: 6.5,-10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7694 - components: - - pos: 6.5,-11.5 - parent: 2 - type: Transform - - uid: 7695 - components: - - pos: 6.5,-12.5 - parent: 2 - type: Transform - - uid: 7696 - components: - - pos: 6.5,-13.5 - parent: 2 - type: Transform - - uid: 7697 - components: - - pos: 5.5,-13.5 - parent: 2 - type: Transform - - uid: 7698 - components: - - pos: 4.5,-13.5 - parent: 2 - type: Transform - - uid: 7699 - components: - - pos: 4.5,-14.5 - parent: 2 - type: Transform - - uid: 7700 - components: - - pos: 4.5,-15.5 - parent: 2 - type: Transform - - uid: 7701 - components: - - pos: 4.5,-16.5 - parent: 2 - type: Transform - - uid: 7702 - components: - - pos: 7.5,-12.5 - parent: 2 - type: Transform - - uid: 7703 - components: - - pos: 8.5,-12.5 - parent: 2 - type: Transform - - uid: 7704 - components: - - pos: 5.5,-11.5 - parent: 2 - type: Transform - - uid: 7705 - components: - - pos: 4.5,-11.5 - parent: 2 - type: Transform - - uid: 7714 - components: - - pos: 7.5,15.5 - parent: 2 - type: Transform - - uid: 7885 - components: - - pos: 4.5,15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7964 - components: - - pos: 7.5,17.5 - parent: 2 - type: Transform - - uid: 7965 - components: - - pos: 6.5,17.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7966 - components: - - pos: 5.5,17.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7967 - components: - - pos: 5.5,18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8024 - components: - - pos: 14.5,18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8025 - components: - - pos: 15.5,18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8026 - components: - - pos: 16.5,18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8027 - components: - - pos: 17.5,18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8028 - components: - - pos: 16.5,23.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8029 - components: - - pos: 17.5,23.5 - parent: 2 - type: Transform - - uid: 8030 - components: - - pos: 18.5,23.5 - parent: 2 - type: Transform - - uid: 8031 - components: - - pos: 19.5,23.5 - parent: 2 - type: Transform - - uid: 8032 - components: - - pos: 19.5,22.5 - parent: 2 - type: Transform - - uid: 8033 - components: - - pos: 19.5,21.5 - parent: 2 - type: Transform - - uid: 8034 - components: - - pos: 18.5,20.5 - parent: 2 - type: Transform - - uid: 8035 - components: - - pos: 18.5,21.5 - parent: 2 - type: Transform - - uid: 8036 - components: - - pos: 20.5,21.5 - parent: 2 - type: Transform - - uid: 8037 - components: - - pos: 21.5,21.5 - parent: 2 - type: Transform - - uid: 8038 - components: - - pos: 22.5,21.5 - parent: 2 - type: Transform - - uid: 8039 - components: - - pos: 23.5,21.5 - parent: 2 - type: Transform - - uid: 8040 - components: - - pos: 23.5,22.5 - parent: 2 - type: Transform - - uid: 8041 - components: - - pos: 23.5,23.5 - parent: 2 - type: Transform - - uid: 8042 - components: - - pos: 23.5,24.5 - parent: 2 - type: Transform - - uid: 8043 - components: - - pos: 22.5,24.5 - parent: 2 - type: Transform - - uid: 8044 - components: - - pos: 16.5,25.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8045 - components: - - pos: 15.5,25.5 - parent: 2 - type: Transform - - uid: 8046 - components: - - pos: 14.5,25.5 - parent: 2 - type: Transform - - uid: 8047 - components: - - pos: 13.5,25.5 - parent: 2 - type: Transform - - uid: 8048 - components: - - pos: 12.5,25.5 - parent: 2 - type: Transform - - uid: 8049 - components: - - pos: 11.5,25.5 - parent: 2 - type: Transform - - uid: 8050 - components: - - pos: 10.5,25.5 - parent: 2 - type: Transform - - uid: 8051 - components: - - pos: 9.5,25.5 - parent: 2 - type: Transform - - uid: 8052 - components: - - pos: 8.5,25.5 - parent: 2 - type: Transform - - uid: 8053 - components: - - pos: 7.5,25.5 - parent: 2 - type: Transform - - uid: 8054 - components: - - pos: 7.5,24.5 - parent: 2 - type: Transform - - uid: 8055 - components: - - pos: 6.5,24.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8056 - components: - - pos: 5.5,24.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8057 - components: - - pos: 7.5,26.5 - parent: 2 - type: Transform - - uid: 8058 - components: - - pos: 6.5,26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8059 - components: - - pos: 5.5,26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8060 - components: - - pos: 8.5,24.5 - parent: 2 - type: Transform - - uid: 8061 - components: - - pos: 8.5,23.5 - parent: 2 - type: Transform - - uid: 8062 - components: - - pos: 8.5,22.5 - parent: 2 - type: Transform - - uid: 8063 - components: - - pos: 8.5,21.5 - parent: 2 - type: Transform - - uid: 8064 - components: - - pos: 12.5,24.5 - parent: 2 - type: Transform - - uid: 8065 - components: - - pos: 12.5,23.5 - parent: 2 - type: Transform - - uid: 8066 - components: - - pos: 12.5,22.5 - parent: 2 - type: Transform - - uid: 8067 - components: - - pos: 12.5,21.5 - parent: 2 - type: Transform - - uid: 8068 - components: - - pos: 14.5,24.5 - parent: 2 - type: Transform - - uid: 8069 - components: - - pos: 14.5,23.5 - parent: 2 - type: Transform - - uid: 8070 - components: - - pos: 14.5,22.5 - parent: 2 - type: Transform - - uid: 8071 - components: - - pos: 12.5,26.5 - parent: 2 - type: Transform - - uid: 8072 - components: - - pos: 12.5,27.5 - parent: 2 - type: Transform - - uid: 8073 - components: - - pos: 12.5,28.5 - parent: 2 - type: Transform - - uid: 8074 - components: - - pos: 12.5,29.5 - parent: 2 - type: Transform - - uid: 8075 - components: - - pos: 12.5,30.5 - parent: 2 - type: Transform - - uid: 8076 - components: - - pos: 12.5,31.5 - parent: 2 - type: Transform - - uid: 8077 - components: - - pos: 9.5,26.5 - parent: 2 - type: Transform - - uid: 8078 - components: - - pos: 9.5,27.5 - parent: 2 - type: Transform - - uid: 8079 - components: - - pos: 9.5,28.5 - parent: 2 - type: Transform - - uid: 8080 - components: - - pos: 9.5,29.5 - parent: 2 - type: Transform - - uid: 8081 - components: - - pos: 9.5,30.5 - parent: 2 - type: Transform - - uid: 8082 - components: - - pos: 9.5,31.5 - parent: 2 - type: Transform - - uid: 8083 - components: - - pos: 8.5,31.5 - parent: 2 - type: Transform - - uid: 8084 - components: - - pos: 7.5,31.5 - parent: 2 - type: Transform - - uid: 8085 - components: - - pos: 6.5,31.5 - parent: 2 - type: Transform - - uid: 8086 - components: - - pos: 15.5,34.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8087 - components: - - pos: 15.5,33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8088 - components: - - pos: 15.5,32.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8089 - components: - - pos: 15.5,31.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8090 - components: - - pos: 15.5,30.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8091 - components: - - pos: 15.5,29.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8092 - components: - - pos: 15.5,28.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8093 - components: - - pos: 15.5,27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8094 - components: - - pos: 16.5,27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8095 - components: - - pos: 17.5,27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8096 - components: - - pos: 18.5,27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8097 - components: - - pos: 19.5,27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8098 - components: - - pos: 20.5,27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8099 - components: - - pos: 21.5,27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8100 - components: - - pos: 22.5,27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8101 - components: - - pos: 14.5,33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8102 - components: - - pos: 13.5,33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8103 - components: - - pos: 12.5,33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8104 - components: - - pos: 11.5,33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8105 - components: - - pos: 11.5,34.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8106 - components: - - pos: 11.5,35.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8107 - components: - - pos: 11.5,36.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8108 - components: - - pos: 13.5,35.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8109 - components: - - pos: 13.5,36.5 - parent: 2 - type: Transform - - uid: 8110 - components: - - pos: 13.5,37.5 - parent: 2 - type: Transform - - uid: 8111 - components: - - pos: 13.5,38.5 - parent: 2 - type: Transform - - uid: 8112 - components: - - pos: 14.5,38.5 - parent: 2 - type: Transform - - uid: 8113 - components: - - pos: 14.5,39.5 - parent: 2 - type: Transform - - uid: 8114 - components: - - pos: 14.5,40.5 - parent: 2 - type: Transform - - uid: 8121 - components: - - pos: 7.5,3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8122 - components: - - pos: 6.5,3.5 - parent: 2 - type: Transform - - uid: 8123 - components: - - pos: 5.5,3.5 - parent: 2 - type: Transform - - uid: 8124 - components: - - pos: 4.5,3.5 - parent: 2 - type: Transform - - uid: 8125 - components: - - pos: 4.5,4.5 - parent: 2 - type: Transform - - uid: 8126 - components: - - pos: 4.5,5.5 - parent: 2 - type: Transform - - uid: 8127 - components: - - pos: 4.5,6.5 - parent: 2 - type: Transform - - uid: 8128 - components: - - pos: 4.5,7.5 - parent: 2 - type: Transform - - uid: 8131 - components: - - pos: 4.5,8.5 - parent: 2 - type: Transform - - uid: 8132 - components: - - pos: 4.5,9.5 - parent: 2 - type: Transform - - uid: 8133 - components: - - pos: 4.5,10.5 - parent: 2 - type: Transform - - uid: 8134 - components: - - pos: 4.5,11.5 - parent: 2 - type: Transform - - uid: 8135 - components: - - pos: 4.5,12.5 - parent: 2 - type: Transform - - uid: 8136 - components: - - pos: 4.5,2.5 - parent: 2 - type: Transform - - uid: 8137 - components: - - pos: 4.5,1.5 - parent: 2 - type: Transform - - uid: 8138 - components: - - pos: 4.5,0.5 - parent: 2 - type: Transform - - uid: 8140 - components: - - pos: 4.5,-0.5 - parent: 2 - type: Transform - - uid: 8141 - components: - - pos: 4.5,-1.5 - parent: 2 - type: Transform - - uid: 8142 - components: - - pos: 5.5,-0.5 - parent: 2 - type: Transform - - uid: 8143 - components: - - pos: 6.5,-0.5 - parent: 2 - type: Transform - - uid: 8144 - components: - - pos: 7.5,-0.5 - parent: 2 - type: Transform - - uid: 8146 - components: - - pos: 8.5,-0.5 - parent: 2 - type: Transform - - uid: 8147 - components: - - pos: 9.5,-0.5 - parent: 2 - type: Transform - - uid: 8148 - components: - - pos: 10.5,-0.5 - parent: 2 - type: Transform - - uid: 8149 - components: - - pos: 11.5,-0.5 - parent: 2 - type: Transform - - uid: 8150 - components: - - pos: 12.5,-0.5 - parent: 2 - type: Transform - - uid: 8151 - components: - - pos: 13.5,-0.5 - parent: 2 - type: Transform - - uid: 8152 - components: - - pos: 14.5,-0.5 - parent: 2 - type: Transform - - uid: 8153 - components: - - pos: 15.5,-0.5 - parent: 2 - type: Transform - - uid: 8154 - components: - - pos: 12.5,-1.5 - parent: 2 - type: Transform - - uid: 8155 - components: - - pos: 5.5,10.5 - parent: 2 - type: Transform - - uid: 8156 - components: - - pos: 6.5,10.5 - parent: 2 - type: Transform - - uid: 8285 - components: - - pos: 41.5,21.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8305 - components: - - pos: 52.5,-8.5 - parent: 2 - type: Transform - - uid: 8347 - components: - - pos: 63.5,48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8389 - components: - - pos: 36.5,29.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8391 - components: - - pos: 36.5,30.5 - parent: 2 - type: Transform - - uid: 8392 - components: - - pos: 37.5,30.5 - parent: 2 - type: Transform - - uid: 8393 - components: - - pos: 38.5,30.5 - parent: 2 - type: Transform - - uid: 8394 - components: - - pos: 40.5,30.5 - parent: 2 - type: Transform - - uid: 8395 - components: - - pos: 40.5,31.5 - parent: 2 - type: Transform - - uid: 8396 - components: - - pos: 39.5,30.5 - parent: 2 - type: Transform - - uid: 8397 - components: - - pos: 40.5,32.5 - parent: 2 - type: Transform - - uid: 8398 - components: - - pos: 40.5,33.5 - parent: 2 - type: Transform - - uid: 8399 - components: - - pos: 40.5,34.5 - parent: 2 - type: Transform - - uid: 8400 - components: - - pos: 39.5,34.5 - parent: 2 - type: Transform - - uid: 8401 - components: - - pos: 38.5,34.5 - parent: 2 - type: Transform - - uid: 8402 - components: - - pos: 37.5,34.5 - parent: 2 - type: Transform - - uid: 8403 - components: - - pos: 40.5,35.5 - parent: 2 - type: Transform - - uid: 8404 - components: - - pos: 41.5,35.5 - parent: 2 - type: Transform - - uid: 8405 - components: - - pos: 41.5,36.5 - parent: 2 - type: Transform - - uid: 8406 - components: - - pos: 41.5,32.5 - parent: 2 - type: Transform - - uid: 8407 - components: - - pos: 42.5,32.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8408 - components: - - pos: 42.5,31.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8409 - components: - - pos: 42.5,33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8448 - components: - - pos: 41.5,20.5 - parent: 2 - type: Transform - - uid: 8449 - components: - - pos: 41.5,19.5 - parent: 2 - type: Transform - - uid: 8450 - components: - - pos: 41.5,18.5 - parent: 2 - type: Transform - - uid: 8451 - components: - - pos: 41.5,17.5 - parent: 2 - type: Transform - - uid: 8452 - components: - - pos: 41.5,16.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8453 - components: - - pos: 42.5,17.5 - parent: 2 - type: Transform - - uid: 8454 - components: - - pos: 43.5,17.5 - parent: 2 - type: Transform - - uid: 8455 - components: - - pos: 43.5,16.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8472 - components: - - pos: 37.5,25.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8473 - components: - - pos: 36.5,25.5 - parent: 2 - type: Transform - - uid: 8474 - components: - - pos: 35.5,25.5 - parent: 2 - type: Transform - - uid: 8475 - components: - - pos: 34.5,25.5 - parent: 2 - type: Transform - - uid: 8476 - components: - - pos: 33.5,25.5 - parent: 2 - type: Transform - - uid: 8477 - components: - - pos: 33.5,26.5 - parent: 2 - type: Transform - - uid: 8478 - components: - - pos: 33.5,27.5 - parent: 2 - type: Transform - - uid: 8479 - components: - - pos: 33.5,28.5 - parent: 2 - type: Transform - - uid: 8480 - components: - - pos: 33.5,29.5 - parent: 2 - type: Transform - - uid: 8481 - components: - - pos: 32.5,29.5 - parent: 2 - type: Transform - - uid: 8482 - components: - - pos: 31.5,29.5 - parent: 2 - type: Transform - - uid: 8483 - components: - - pos: 30.5,29.5 - parent: 2 - type: Transform - - uid: 8484 - components: - - pos: 32.5,25.5 - parent: 2 - type: Transform - - uid: 8485 - components: - - pos: 31.5,25.5 - parent: 2 - type: Transform - - uid: 8486 - components: - - pos: 30.5,25.5 - parent: 2 - type: Transform - - uid: 8487 - components: - - pos: 29.5,25.5 - parent: 2 - type: Transform - - uid: 8488 - components: - - pos: 33.5,24.5 - parent: 2 - type: Transform - - uid: 8489 - components: - - pos: 33.5,23.5 - parent: 2 - type: Transform - - uid: 8490 - components: - - pos: 33.5,22.5 - parent: 2 - type: Transform - - uid: 8491 - components: - - pos: 33.5,21.5 - parent: 2 - type: Transform - - uid: 8492 - components: - - pos: 33.5,20.5 - parent: 2 - type: Transform - - uid: 8493 - components: - - pos: 33.5,19.5 - parent: 2 - type: Transform - - uid: 8494 - components: - - pos: 33.5,18.5 - parent: 2 - type: Transform - - uid: 8495 - components: - - pos: 33.5,17.5 - parent: 2 - type: Transform - - uid: 8496 - components: - - pos: 40.5,18.5 - parent: 2 - type: Transform - - uid: 8497 - components: - - pos: 39.5,18.5 - parent: 2 - type: Transform - - uid: 8498 - components: - - pos: 38.5,18.5 - parent: 2 - type: Transform - - uid: 8499 - components: - - pos: 37.5,18.5 - parent: 2 - type: Transform - - uid: 8500 - components: - - pos: 34.5,18.5 - parent: 2 - type: Transform - - uid: 8501 - components: - - pos: 32.5,18.5 - parent: 2 - type: Transform - - uid: 8502 - components: - - pos: 31.5,18.5 - parent: 2 - type: Transform - - uid: 8503 - components: - - pos: 30.5,18.5 - parent: 2 - type: Transform - - uid: 8504 - components: - - pos: 29.5,18.5 - parent: 2 - type: Transform - - uid: 8505 - components: - - pos: 32.5,20.5 - parent: 2 - type: Transform - - uid: 8506 - components: - - pos: 31.5,20.5 - parent: 2 - type: Transform - - uid: 8507 - components: - - pos: 30.5,20.5 - parent: 2 - type: Transform - - uid: 8508 - components: - - pos: 29.5,20.5 - parent: 2 - type: Transform - - uid: 8509 - components: - - pos: 34.5,22.5 - parent: 2 - type: Transform - - uid: 8510 - components: - - pos: 35.5,22.5 - parent: 2 - type: Transform - - uid: 8511 - components: - - pos: 36.5,22.5 - parent: 2 - type: Transform - - uid: 8512 - components: - - pos: 34.5,28.5 - parent: 2 - type: Transform - - uid: 8513 - components: - - pos: 32.5,23.5 - parent: 2 - type: Transform - - uid: 8514 - components: - - pos: 31.5,23.5 - parent: 2 - type: Transform - - uid: 8515 - components: - - pos: 30.5,23.5 - parent: 2 - type: Transform - - uid: 8516 - components: - - pos: 29.5,23.5 - parent: 2 - type: Transform - - uid: 8517 - components: - - pos: 43.5,26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8518 - components: - - pos: 43.5,25.5 - parent: 2 - type: Transform - - uid: 8519 - components: - - pos: 43.5,24.5 - parent: 2 - type: Transform - - uid: 8520 - components: - - pos: 43.5,23.5 - parent: 2 - type: Transform - - uid: 8521 - components: - - pos: 42.5,23.5 - parent: 2 - type: Transform - - uid: 8522 - components: - - pos: 41.5,23.5 - parent: 2 - type: Transform - - uid: 8523 - components: - - pos: 40.5,23.5 - parent: 2 - type: Transform - - uid: 8524 - components: - - pos: 39.5,23.5 - parent: 2 - type: Transform - - uid: 8525 - components: - - pos: 39.5,22.5 - parent: 2 - type: Transform - - uid: 8531 - components: - - pos: 40.5,24.5 - parent: 2 - type: Transform - - uid: 8532 - components: - - pos: 40.5,25.5 - parent: 2 - type: Transform - - uid: 8533 - components: - - pos: 40.5,26.5 - parent: 2 - type: Transform - - uid: 8534 - components: - - pos: 40.5,27.5 - parent: 2 - type: Transform - - uid: 8535 - components: - - pos: 39.5,26.5 - parent: 2 - type: Transform - - uid: 8703 - components: - - pos: 47.5,28.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8704 - components: - - pos: 47.5,27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8705 - components: - - pos: 47.5,26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8706 - components: - - pos: 47.5,25.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8707 - components: - - pos: 47.5,24.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8710 - components: - - pos: 47.5,23.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8712 - components: - - pos: 47.5,22.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8713 - components: - - pos: 46.5,27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8714 - components: - - pos: 46.5,28.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8715 - components: - - pos: 46.5,29.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8716 - components: - - pos: 46.5,30.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8717 - components: - - pos: 46.5,31.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8718 - components: - - pos: 46.5,32.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8730 - components: - - pos: 46.5,33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8731 - components: - - pos: 46.5,34.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8759 - components: - - pos: 46.5,35.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8766 - components: - - pos: 46.5,36.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8779 - components: - - pos: 46.5,37.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8791 - components: - - pos: 46.5,38.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8795 - components: - - pos: 46.5,39.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8796 - components: - - pos: 45.5,39.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8797 - components: - - pos: 45.5,40.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8798 - components: - - pos: 45.5,41.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9131 - components: - - pos: 20.5,34.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9132 - components: - - pos: 20.5,33.5 - parent: 2 - type: Transform - - uid: 9133 - components: - - pos: 20.5,32.5 - parent: 2 - type: Transform - - uid: 9134 - components: - - pos: 20.5,31.5 - parent: 2 - type: Transform - - uid: 9135 - components: - - pos: 19.5,31.5 - parent: 2 - type: Transform - - uid: 9137 - components: - - pos: 18.5,31.5 - parent: 2 - type: Transform - - uid: 9140 - components: - - pos: 21.5,31.5 - parent: 2 - type: Transform - - uid: 9141 - components: - - pos: 22.5,31.5 - parent: 2 - type: Transform - - uid: 9142 - components: - - pos: 23.5,31.5 - parent: 2 - type: Transform - - uid: 9143 - components: - - pos: 23.5,30.5 - parent: 2 - type: Transform - - uid: 9144 - components: - - pos: 23.5,32.5 - parent: 2 - type: Transform - - uid: 9145 - components: - - pos: 21.5,30.5 - parent: 2 - type: Transform - - uid: 9146 - components: - - pos: 21.5,32.5 - parent: 2 - type: Transform - - uid: 9147 - components: - - pos: 18.5,30.5 - parent: 2 - type: Transform - - uid: 9148 - components: - - pos: 18.5,32.5 - parent: 2 - type: Transform - - uid: 9149 - components: - - pos: 20.5,40.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9150 - components: - - pos: 19.5,40.5 - parent: 2 - type: Transform - - uid: 9151 - components: - - pos: 18.5,40.5 - parent: 2 - type: Transform - - uid: 9152 - components: - - pos: 18.5,41.5 - parent: 2 - type: Transform - - uid: 9153 - components: - - pos: 18.5,39.5 - parent: 2 - type: Transform - - uid: 9154 - components: - - pos: 28.5,33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9155 - components: - - pos: 27.5,33.5 - parent: 2 - type: Transform - - uid: 9156 - components: - - pos: 26.5,33.5 - parent: 2 - type: Transform - - uid: 9157 - components: - - pos: 26.5,34.5 - parent: 2 - type: Transform - - uid: 9158 - components: - - pos: 26.5,35.5 - parent: 2 - type: Transform - - uid: 9159 - components: - - pos: 26.5,36.5 - parent: 2 - type: Transform - - uid: 9160 - components: - - pos: 25.5,36.5 - parent: 2 - type: Transform - - uid: 9161 - components: - - pos: 24.5,36.5 - parent: 2 - type: Transform - - uid: 9162 - components: - - pos: 23.5,36.5 - parent: 2 - type: Transform - - uid: 9163 - components: - - pos: 22.5,36.5 - parent: 2 - type: Transform - - uid: 9164 - components: - - pos: 21.5,36.5 - parent: 2 - type: Transform - - uid: 9165 - components: - - pos: 20.5,36.5 - parent: 2 - type: Transform - - uid: 9166 - components: - - pos: 19.5,36.5 - parent: 2 - type: Transform - - uid: 9167 - components: - - pos: 18.5,36.5 - parent: 2 - type: Transform - - uid: 9168 - components: - - pos: 26.5,32.5 - parent: 2 - type: Transform - - uid: 9169 - components: - - pos: 26.5,31.5 - parent: 2 - type: Transform - - uid: 9170 - components: - - pos: 26.5,30.5 - parent: 2 - type: Transform - - uid: 9171 - components: - - pos: 26.5,29.5 - parent: 2 - type: Transform - - uid: 9172 - components: - - pos: 26.5,28.5 - parent: 2 - type: Transform - - uid: 9173 - components: - - pos: 26.5,27.5 - parent: 2 - type: Transform - - uid: 9174 - components: - - pos: 26.5,26.5 - parent: 2 - type: Transform - - uid: 9175 - components: - - pos: 30.5,38.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9176 - components: - - pos: 30.5,37.5 - parent: 2 - type: Transform - - uid: 9177 - components: - - pos: 30.5,36.5 - parent: 2 - type: Transform - - uid: 9178 - components: - - pos: 30.5,35.5 - parent: 2 - type: Transform - - uid: 9179 - components: - - pos: 30.5,34.5 - parent: 2 - type: Transform - - uid: 9180 - components: - - pos: 25.5,43.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9181 - components: - - pos: 25.5,44.5 - parent: 2 - type: Transform - - uid: 9182 - components: - - pos: 25.5,45.5 - parent: 2 - type: Transform - - uid: 9183 - components: - - pos: 25.5,46.5 - parent: 2 - type: Transform - - uid: 9184 - components: - - pos: 24.5,45.5 - parent: 2 - type: Transform - - uid: 9185 - components: - - pos: 23.5,45.5 - parent: 2 - type: Transform - - uid: 9186 - components: - - pos: 22.5,45.5 - parent: 2 - type: Transform - - uid: 9187 - components: - - pos: 21.5,45.5 - parent: 2 - type: Transform - - uid: 9188 - components: - - pos: 20.5,45.5 - parent: 2 - type: Transform - - uid: 9189 - components: - - pos: 22.5,44.5 - parent: 2 - type: Transform - - uid: 9190 - components: - - pos: 22.5,43.5 - parent: 2 - type: Transform - - uid: 9191 - components: - - pos: 22.5,42.5 - parent: 2 - type: Transform - - uid: 9192 - components: - - pos: 22.5,41.5 - parent: 2 - type: Transform - - uid: 9193 - components: - - pos: 22.5,40.5 - parent: 2 - type: Transform - - uid: 9194 - components: - - pos: 22.5,46.5 - parent: 2 - type: Transform - - uid: 9195 - components: - - pos: 26.5,45.5 - parent: 2 - type: Transform - - uid: 9196 - components: - - pos: 27.5,45.5 - parent: 2 - type: Transform - - uid: 9197 - components: - - pos: 28.5,45.5 - parent: 2 - type: Transform - - uid: 9198 - components: - - pos: 29.5,45.5 - parent: 2 - type: Transform - - uid: 9199 - components: - - pos: 30.5,45.5 - parent: 2 - type: Transform - - uid: 9200 - components: - - pos: 31.5,45.5 - parent: 2 - type: Transform - - uid: 9201 - components: - - pos: 30.5,46.5 - parent: 2 - type: Transform - - uid: 9202 - components: - - pos: 30.5,47.5 - parent: 2 - type: Transform - - uid: 9203 - components: - - pos: 33.5,44.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9204 - components: - - pos: 33.5,43.5 - parent: 2 - type: Transform - - uid: 9205 - components: - - pos: 33.5,42.5 - parent: 2 - type: Transform - - uid: 9206 - components: - - pos: 33.5,41.5 - parent: 2 - type: Transform - - uid: 9207 - components: - - pos: 33.5,40.5 - parent: 2 - type: Transform - - uid: 9208 - components: - - pos: 32.5,40.5 - parent: 2 - type: Transform - - uid: 9209 - components: - - pos: 31.5,40.5 - parent: 2 - type: Transform - - uid: 9210 - components: - - pos: 32.5,42.5 - parent: 2 - type: Transform - - uid: 9211 - components: - - pos: 31.5,42.5 - parent: 2 - type: Transform - - uid: 9212 - components: - - pos: 34.5,40.5 - parent: 2 - type: Transform - - uid: 9213 - components: - - pos: 35.5,40.5 - parent: 2 - type: Transform - - uid: 9214 - components: - - pos: 36.5,40.5 - parent: 2 - type: Transform - - uid: 9215 - components: - - pos: 36.5,41.5 - parent: 2 - type: Transform - - uid: 9216 - components: - - pos: 36.5,42.5 - parent: 2 - type: Transform - - uid: 9224 - components: - - pos: 23.5,41.5 - parent: 2 - type: Transform - - uid: 9225 - components: - - pos: 24.5,41.5 - parent: 2 - type: Transform - - uid: 9226 - components: - - pos: 25.5,41.5 - parent: 2 - type: Transform - - uid: 9227 - components: - - pos: 26.5,41.5 - parent: 2 - type: Transform - - uid: 9228 - components: - - pos: 27.5,41.5 - parent: 2 - type: Transform - - uid: 9229 - components: - - pos: 28.5,41.5 - parent: 2 - type: Transform - - uid: 9230 - components: - - pos: 28.5,42.5 - parent: 2 - type: Transform - - uid: 9231 - components: - - pos: 28.5,43.5 - parent: 2 - type: Transform - - uid: 9232 - components: - - pos: 28.5,44.5 - parent: 2 - type: Transform - - uid: 9233 - components: - - pos: 28.5,32.5 - parent: 2 - type: Transform - - uid: 9234 - components: - - pos: 29.5,32.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9235 - components: - - pos: 30.5,32.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9236 - components: - - pos: 31.5,32.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9237 - components: - - pos: 32.5,32.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9238 - components: - - pos: 33.5,32.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9239 - components: - - pos: 34.5,32.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9240 - components: - - pos: 34.5,33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9241 - components: - - pos: 34.5,34.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9242 - components: - - pos: 34.5,35.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9243 - components: - - pos: 34.5,36.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9244 - components: - - pos: 34.5,37.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9245 - components: - - pos: 35.5,37.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9246 - components: - - pos: 35.5,38.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9247 - components: - - pos: 36.5,38.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9248 - components: - - pos: 37.5,38.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9249 - components: - - pos: 38.5,38.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9250 - components: - - pos: 39.5,38.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9251 - components: - - pos: 39.5,39.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9252 - components: - - pos: 39.5,40.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9267 - components: - - pos: 69.5,47.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9268 - components: - - pos: 69.5,45.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9269 - components: - - pos: 69.5,46.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9270 - components: - - pos: 70.5,45.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9271 - components: - - pos: 71.5,45.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9272 - components: - - pos: 72.5,45.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9273 - components: - - pos: 73.5,45.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9274 - components: - - pos: 66.5,45.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9275 - components: - - pos: 66.5,46.5 - parent: 2 - type: Transform - - uid: 9276 - components: - - pos: 66.5,44.5 - parent: 2 - type: Transform - - uid: 9277 - components: - - pos: 67.5,44.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9278 - components: - - pos: 65.5,46.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9279 - components: - - pos: 64.5,46.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9280 - components: - - pos: 63.5,46.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9281 - components: - - pos: 63.5,47.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9282 - components: - - pos: 62.5,48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9283 - components: - - pos: 61.5,48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9284 - components: - - pos: 60.5,48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9285 - components: - - pos: 59.5,48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9286 - components: - - pos: 58.5,48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9287 - components: - - pos: 57.5,48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9288 - components: - - pos: 56.5,48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9289 - components: - - pos: 55.5,48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9290 - components: - - pos: 54.5,48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9291 - components: - - pos: 53.5,48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9292 - components: - - pos: 52.5,48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9293 - components: - - pos: 51.5,48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9294 - components: - - pos: 50.5,48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9295 - components: - - pos: 49.5,48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9296 - components: - - pos: 56.5,49.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9297 - components: - - pos: 56.5,50.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9298 - components: - - pos: 44.5,45.5 - parent: 2 - type: Transform - - uid: 9299 - components: - - pos: 49.5,47.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9300 - components: - - pos: 48.5,47.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9301 - components: - - pos: 47.5,47.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9302 - components: - - pos: 46.5,47.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9303 - components: - - pos: 46.5,46.5 - parent: 2 - type: Transform - - uid: 9304 - components: - - pos: 45.5,46.5 - parent: 2 - type: Transform - - uid: 9305 - components: - - pos: 44.5,46.5 - parent: 2 - type: Transform - - uid: 9310 - components: - - pos: 68.5,41.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9311 - components: - - pos: 68.5,42.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9312 - components: - - pos: 67.5,42.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9313 - components: - - pos: 66.5,42.5 - parent: 2 - type: Transform - - uid: 9314 - components: - - pos: 66.5,41.5 - parent: 2 - type: Transform - - uid: 9315 - components: - - pos: 66.5,40.5 - parent: 2 - type: Transform - - uid: 9316 - components: - - pos: 66.5,39.5 - parent: 2 - type: Transform - - uid: 9317 - components: - - pos: 66.5,38.5 - parent: 2 - type: Transform - - uid: 9318 - components: - - pos: 66.5,37.5 - parent: 2 - type: Transform - - uid: 9319 - components: - - pos: 66.5,36.5 - parent: 2 - type: Transform - - uid: 9320 - components: - - pos: 66.5,35.5 - parent: 2 - type: Transform - - uid: 9321 - components: - - pos: 66.5,34.5 - parent: 2 - type: Transform - - uid: 9322 - components: - - pos: 66.5,33.5 - parent: 2 - type: Transform - - uid: 9323 - components: - - pos: 66.5,32.5 - parent: 2 - type: Transform - - uid: 9324 - components: - - pos: 66.5,31.5 - parent: 2 - type: Transform - - uid: 9325 - components: - - pos: 66.5,30.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9326 - components: - - pos: 66.5,29.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9327 - components: - - pos: 66.5,28.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9328 - components: - - pos: 66.5,27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9329 - components: - - pos: 66.5,26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9330 - components: - - pos: 67.5,28.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9331 - components: - - pos: 68.5,28.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9332 - components: - - pos: 69.5,28.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9333 - components: - - pos: 69.5,29.5 - parent: 2 - type: Transform - - uid: 9334 - components: - - pos: 69.5,30.5 - parent: 2 - type: Transform - - uid: 9335 - components: - - pos: 69.5,31.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9336 - components: - - pos: 69.5,32.5 - parent: 2 - type: Transform - - uid: 9337 - components: - - pos: 69.5,33.5 - parent: 2 - type: Transform - - uid: 9338 - components: - - pos: 68.5,32.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9339 - components: - - pos: 67.5,32.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9340 - components: - - pos: 67.5,36.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9341 - components: - - pos: 68.5,36.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9342 - components: - - pos: 69.5,36.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9343 - components: - - pos: 70.5,36.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9344 - components: - - pos: 67.5,39.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9345 - components: - - pos: 68.5,39.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9346 - components: - - pos: 69.5,39.5 - parent: 2 - type: Transform - - uid: 9347 - components: - - pos: 70.5,39.5 - parent: 2 - type: Transform - - uid: 9694 - components: - - pos: 52.5,-7.5 - parent: 2 - type: Transform - - uid: 9695 - components: - - pos: 52.5,-6.5 - parent: 2 - type: Transform - - uid: 9696 - components: - - pos: 52.5,-5.5 - parent: 2 - type: Transform - - uid: 9697 - components: - - pos: 52.5,-4.5 - parent: 2 - type: Transform - - uid: 9698 - components: - - pos: 51.5,-6.5 - parent: 2 - type: Transform - - uid: 9699 - components: - - pos: 50.5,-6.5 - parent: 2 - type: Transform - - uid: 9700 - components: - - pos: 50.5,-5.5 - parent: 2 - type: Transform - - uid: 9701 - components: - - pos: 50.5,-7.5 - parent: 2 - type: Transform - - uid: 9702 - components: - - pos: 50.5,-8.5 - parent: 2 - type: Transform - - uid: 9703 - components: - - pos: 50.5,-9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9704 - components: - - pos: 50.5,-10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9705 - components: - - pos: 50.5,-11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9706 - components: - - pos: 50.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9707 - components: - - pos: 51.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9708 - components: - - pos: 52.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9709 - components: - - pos: 49.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9710 - components: - - pos: 48.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9711 - components: - - pos: 47.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9712 - components: - - pos: 46.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9713 - components: - - pos: 45.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9715 - components: - - pos: 44.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9778 - components: - - pos: 23.5,2.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9779 - components: - - pos: 23.5,1.5 - parent: 2 - type: Transform - - uid: 9780 - components: - - pos: 23.5,0.5 - parent: 2 - type: Transform - - uid: 9781 - components: - - pos: 22.5,0.5 - parent: 2 - type: Transform - - uid: 9782 - components: - - pos: 21.5,0.5 - parent: 2 - type: Transform - - uid: 9783 - components: - - pos: 20.5,0.5 - parent: 2 - type: Transform - - uid: 9784 - components: - - pos: 19.5,0.5 - parent: 2 - type: Transform - - uid: 9785 - components: - - pos: 24.5,0.5 - parent: 2 - type: Transform - - uid: 9786 - components: - - pos: 25.5,0.5 - parent: 2 - type: Transform - - uid: 9787 - components: - - pos: 26.5,0.5 - parent: 2 - type: Transform - - uid: 9788 - components: - - pos: 27.5,0.5 - parent: 2 - type: Transform - - uid: 9789 - components: - - pos: 28.5,0.5 - parent: 2 - type: Transform - - uid: 9790 - components: - - pos: 29.5,0.5 - parent: 2 - type: Transform - - uid: 9791 - components: - - pos: 30.5,0.5 - parent: 2 - type: Transform - - uid: 9792 - components: - - pos: 31.5,0.5 - parent: 2 - type: Transform - - uid: 9793 - components: - - pos: 32.5,0.5 - parent: 2 - type: Transform - - uid: 9794 - components: - - pos: 33.5,0.5 - parent: 2 - type: Transform - - uid: 9795 - components: - - pos: 34.5,0.5 - parent: 2 - type: Transform - - uid: 9796 - components: - - pos: 35.5,0.5 - parent: 2 - type: Transform - - uid: 9797 - components: - - pos: 36.5,0.5 - parent: 2 - type: Transform - - uid: 9798 - components: - - pos: 37.5,0.5 - parent: 2 - type: Transform - - uid: 9799 - components: - - pos: 38.5,0.5 - parent: 2 - type: Transform - - uid: 9800 - components: - - pos: 26.5,1.5 - parent: 2 - type: Transform - - uid: 9801 - components: - - pos: 26.5,2.5 - parent: 2 - type: Transform - - uid: 9802 - components: - - pos: 26.5,-0.5 - parent: 2 - type: Transform - - uid: 9803 - components: - - pos: 26.5,-1.5 - parent: 2 - type: Transform - - uid: 9804 - components: - - pos: 21.5,-8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9805 - components: - - pos: 21.5,-9.5 - parent: 2 - type: Transform - - uid: 9806 - components: - - pos: 21.5,-10.5 - parent: 2 - type: Transform - - uid: 9807 - components: - - pos: 21.5,-11.5 - parent: 2 - type: Transform - - uid: 9808 - components: - - pos: 22.5,-11.5 - parent: 2 - type: Transform - - uid: 9809 - components: - - pos: 23.5,-11.5 - parent: 2 - type: Transform - - uid: 9810 - components: - - pos: 24.5,-11.5 - parent: 2 - type: Transform - - uid: 9811 - components: - - pos: 25.5,-11.5 - parent: 2 - type: Transform - - uid: 9812 - components: - - pos: 26.5,-11.5 - parent: 2 - type: Transform - - uid: 9813 - components: - - pos: 26.5,-10.5 - parent: 2 - type: Transform - - uid: 9814 - components: - - pos: 26.5,-9.5 - parent: 2 - type: Transform - - uid: 9815 - components: - - pos: 26.5,-8.5 - parent: 2 - type: Transform - - uid: 9816 - components: - - pos: 26.5,-7.5 - parent: 2 - type: Transform - - uid: 9817 - components: - - pos: 26.5,-6.5 - parent: 2 - type: Transform - - uid: 9818 - components: - - pos: 26.5,-5.5 - parent: 2 - type: Transform - - uid: 9819 - components: - - pos: 26.5,-4.5 - parent: 2 - type: Transform - - uid: 9820 - components: - - pos: 26.5,-12.5 - parent: 2 - type: Transform - - uid: 9905 - components: - - pos: 28.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9906 - components: - - pos: 27.5,-19.5 - parent: 2 - type: Transform - - uid: 9907 - components: - - pos: 26.5,-19.5 - parent: 2 - type: Transform - - uid: 9908 - components: - - pos: 26.5,-20.5 - parent: 2 - type: Transform - - uid: 9909 - components: - - pos: 26.5,-21.5 - parent: 2 - type: Transform - - uid: 9910 - components: - - pos: 26.5,-22.5 - parent: 2 - type: Transform - - uid: 9911 - components: - - pos: 26.5,-23.5 - parent: 2 - type: Transform - - uid: 9912 - components: - - pos: 26.5,-24.5 - parent: 2 - type: Transform - - uid: 9913 - components: - - pos: 26.5,-18.5 - parent: 2 - type: Transform - - uid: 9914 - components: - - pos: 26.5,-17.5 - parent: 2 - type: Transform - - uid: 9915 - components: - - pos: 26.5,-16.5 - parent: 2 - type: Transform - - uid: 9916 - components: - - pos: 26.5,-15.5 - parent: 2 - type: Transform - - uid: 9917 - components: - - pos: 26.5,-14.5 - parent: 2 - type: Transform - - uid: 9918 - components: - - pos: 34.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9919 - components: - - pos: 33.5,-15.5 - parent: 2 - type: Transform - - uid: 9920 - components: - - pos: 32.5,-15.5 - parent: 2 - type: Transform - - uid: 9921 - components: - - pos: 31.5,-15.5 - parent: 2 - type: Transform - - uid: 9922 - components: - - pos: 30.5,-15.5 - parent: 2 - type: Transform - - uid: 9923 - components: - - pos: 29.5,-15.5 - parent: 2 - type: Transform - - uid: 9924 - components: - - pos: 32.5,-16.5 - parent: 2 - type: Transform - - uid: 9925 - components: - - pos: 32.5,-17.5 - parent: 2 - type: Transform - - uid: 9926 - components: - - pos: 39.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9929 - components: - - pos: 40.5,-15.5 - parent: 2 - type: Transform - - uid: 9930 - components: - - pos: 35.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9931 - components: - - pos: 36.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9932 - components: - - pos: 37.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9933 - components: - - pos: 39.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9934 - components: - - pos: 39.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9935 - components: - - pos: 38.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9936 - components: - - pos: 37.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9937 - components: - - pos: 36.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9938 - components: - - pos: 35.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9939 - components: - - pos: 34.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9940 - components: - - pos: 33.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9941 - components: - - pos: 32.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9942 - components: - - pos: 31.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9943 - components: - - pos: 30.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9944 - components: - - pos: 40.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9945 - components: - - pos: 41.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9946 - components: - - pos: 41.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9947 - components: - - pos: 42.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9948 - components: - - pos: 43.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9949 - components: - - pos: 44.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9950 - components: - - pos: 45.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9951 - components: - - pos: 46.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9952 - components: - - pos: 47.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9953 - components: - - pos: 48.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9954 - components: - - pos: 49.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9955 - components: - - pos: 50.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9956 - components: - - pos: 51.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9957 - components: - - pos: 52.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9958 - components: - - pos: 53.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9959 - components: - - pos: 47.5,-17.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9960 - components: - - pos: 47.5,-16.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9961 - components: - - pos: 47.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9962 - components: - - pos: 25.5,-21.5 - parent: 2 - type: Transform - - uid: 9963 - components: - - pos: 24.5,-21.5 - parent: 2 - type: Transform - - uid: 9964 - components: - - pos: 23.5,-21.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9965 - components: - - pos: 13.5,-7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9966 - components: - - pos: 12.5,-7.5 - parent: 2 - type: Transform - - uid: 9967 - components: - - pos: 11.5,-7.5 - parent: 2 - type: Transform - - uid: 9968 - components: - - pos: 10.5,-7.5 - parent: 2 - type: Transform - - uid: 9969 - components: - - pos: 9.5,-7.5 - parent: 2 - type: Transform - - uid: 9970 - components: - - pos: 9.5,-6.5 - parent: 2 - type: Transform - - uid: 9971 - components: - - pos: 9.5,-5.5 - parent: 2 - type: Transform - - uid: 9972 - components: - - pos: 9.5,-4.5 - parent: 2 - type: Transform - - uid: 9973 - components: - - pos: 9.5,-3.5 - parent: 2 - type: Transform - - uid: 9974 - components: - - pos: 9.5,-8.5 - parent: 2 - type: Transform - - uid: 9975 - components: - - pos: 9.5,-9.5 - parent: 2 - type: Transform - - uid: 9976 - components: - - pos: 16.5,-6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9977 - components: - - pos: 16.5,-5.5 - parent: 2 - type: Transform - - uid: 9978 - components: - - pos: 16.5,-4.5 - parent: 2 - type: Transform - - uid: 9979 - components: - - pos: 16.5,-3.5 - parent: 2 - type: Transform - - uid: 9980 - components: - - pos: 17.5,-4.5 - parent: 2 - type: Transform - - uid: 9981 - components: - - pos: 18.5,-4.5 - parent: 2 - type: Transform - - uid: 9982 - components: - - pos: 19.5,-4.5 - parent: 2 - type: Transform - - uid: 9983 - components: - - pos: 20.5,-4.5 - parent: 2 - type: Transform - - uid: 9984 - components: - - pos: 15.5,-4.5 - parent: 2 - type: Transform - - uid: 9985 - components: - - pos: 14.5,-4.5 - parent: 2 - type: Transform - - uid: 9986 - components: - - pos: 14.5,-3.5 - parent: 2 - type: Transform - - uid: 9987 - components: - - pos: 14.5,-2.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9988 - components: - - pos: 15.5,-2.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9989 - components: - - pos: 21.5,-7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9990 - components: - - pos: 22.5,-7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9991 - components: - - pos: 22.5,-6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9992 - components: - - pos: 22.5,-5.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9993 - components: - - pos: 22.5,-4.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9994 - components: - - pos: 22.5,-3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9995 - components: - - pos: 22.5,-2.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9996 - components: - - pos: 16.5,-7.5 - parent: 2 - type: Transform - - uid: 9997 - components: - - pos: 17.5,-7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9998 - components: - - pos: 17.5,-8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9999 - components: - - pos: 17.5,-9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10000 - components: - - pos: 17.5,-10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10001 - components: - - pos: 17.5,-11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10002 - components: - - pos: 16.5,-11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10003 - components: - - pos: 16.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10004 - components: - - pos: 16.5,-13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10005 - components: - - pos: 10.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10006 - components: - - pos: 11.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10007 - components: - - pos: 10.5,-14.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10008 - components: - - pos: 10.5,-13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10009 - components: - - pos: 11.5,-13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10010 - components: - - pos: 12.5,-13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10011 - components: - - pos: 13.5,-13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10012 - components: - - pos: 13.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10013 - components: - - pos: 13.5,-11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10014 - components: - - pos: 14.5,-11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10015 - components: - - pos: 10.5,-16.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10016 - components: - - pos: 10.5,-17.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10017 - components: - - pos: 10.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10018 - components: - - pos: 10.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10019 - components: - - pos: 10.5,-20.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10020 - components: - - pos: 10.5,-21.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10021 - components: - - pos: 10.5,-22.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10022 - components: - - pos: 9.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10023 - components: - - pos: 8.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10024 - components: - - pos: 7.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10025 - components: - - pos: 6.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10030 - components: - - pos: 22.5,-29.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10031 - components: - - pos: 22.5,-30.5 - parent: 2 - type: Transform - - uid: 10032 - components: - - pos: 22.5,-31.5 - parent: 2 - type: Transform - - uid: 10033 - components: - - pos: 22.5,-32.5 - parent: 2 - type: Transform - - uid: 10034 - components: - - pos: 23.5,-32.5 - parent: 2 - type: Transform - - uid: 10035 - components: - - pos: 24.5,-32.5 - parent: 2 - type: Transform - - uid: 10036 - components: - - pos: 25.5,-32.5 - parent: 2 - type: Transform - - uid: 10037 - components: - - pos: 26.5,-32.5 - parent: 2 - type: Transform - - uid: 10038 - components: - - pos: 27.5,-32.5 - parent: 2 - type: Transform - - uid: 10039 - components: - - pos: 28.5,-32.5 - parent: 2 - type: Transform - - uid: 10040 - components: - - pos: 29.5,-32.5 - parent: 2 - type: Transform - - uid: 10041 - components: - - pos: 30.5,-32.5 - parent: 2 - type: Transform - - uid: 10042 - components: - - pos: 31.5,-32.5 - parent: 2 - type: Transform - - uid: 10043 - components: - - pos: 32.5,-32.5 - parent: 2 - type: Transform - - uid: 10075 - components: - - pos: 61.5,-11.5 - parent: 2 - type: Transform - - uid: 10081 - components: - - pos: 58.5,-3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10082 - components: - - pos: 61.5,-2.5 - parent: 2 - type: Transform - - uid: 10103 - components: - - pos: 62.5,-7.5 - parent: 2 - type: Transform - - uid: 10114 - components: - - pos: 61.5,-6.5 - parent: 2 - type: Transform - - uid: 10122 - components: - - pos: 61.5,-9.5 - parent: 2 - type: Transform - - uid: 10131 - components: - - pos: 63.5,-7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10132 - components: - - pos: 61.5,-8.5 - parent: 2 - type: Transform - - uid: 10133 - components: - - pos: 61.5,-10.5 - parent: 2 - type: Transform - - uid: 10454 - components: - - pos: 53.5,20.5 - parent: 2 - type: Transform - - uid: 10455 - components: - - pos: 53.5,19.5 - parent: 2 - type: Transform - - uid: 10456 - components: - - pos: 53.5,18.5 - parent: 2 - type: Transform - - uid: 10457 - components: - - pos: 52.5,19.5 - parent: 2 - type: Transform - - uid: 10458 - components: - - pos: 51.5,19.5 - parent: 2 - type: Transform - - uid: 10459 - components: - - pos: 50.5,19.5 - parent: 2 - type: Transform - - uid: 10460 - components: - - pos: 49.5,19.5 - parent: 2 - type: Transform - - uid: 10461 - components: - - pos: 48.5,19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10462 - components: - - pos: 49.5,18.5 - parent: 2 - type: Transform - - uid: 10463 - components: - - pos: 49.5,17.5 - parent: 2 - type: Transform - - uid: 10464 - components: - - pos: 48.5,17.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10465 - components: - - pos: 54.5,18.5 - parent: 2 - type: Transform - - uid: 10466 - components: - - pos: 55.5,18.5 - parent: 2 - type: Transform - - uid: 10467 - components: - - pos: 51.5,22.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10468 - components: - - pos: 56.5,11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10469 - components: - - pos: 51.5,23.5 - parent: 2 - type: Transform - - uid: 10470 - components: - - pos: 51.5,24.5 - parent: 2 - type: Transform - - uid: 10471 - components: - - pos: 50.5,24.5 - parent: 2 - type: Transform - - uid: 10472 - components: - - pos: 55.5,11.5 - parent: 2 - type: Transform - - uid: 10473 - components: - - pos: 54.5,11.5 - parent: 2 - type: Transform - - uid: 10475 - components: - - pos: 54.5,10.5 - parent: 2 - type: Transform - - uid: 10476 - components: - - pos: 54.5,9.5 - parent: 2 - type: Transform - - uid: 10477 - components: - - pos: 53.5,9.5 - parent: 2 - type: Transform - - uid: 10478 - components: - - pos: 52.5,9.5 - parent: 2 - type: Transform - - uid: 10479 - components: - - pos: 51.5,9.5 - parent: 2 - type: Transform - - uid: 10480 - components: - - pos: 50.5,9.5 - parent: 2 - type: Transform - - uid: 10481 - components: - - pos: 49.5,9.5 - parent: 2 - type: Transform - - uid: 10482 - components: - - pos: 48.5,9.5 - parent: 2 - type: Transform - - uid: 10483 - components: - - pos: 48.5,10.5 - parent: 2 - type: Transform - - uid: 10484 - components: - - pos: 47.5,10.5 - parent: 2 - type: Transform - - uid: 10485 - components: - - pos: 46.5,10.5 - parent: 2 - type: Transform - - uid: 10486 - components: - - pos: 45.5,10.5 - parent: 2 - type: Transform - - uid: 10487 - components: - - pos: 43.5,3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10488 - components: - - pos: 44.5,3.5 - parent: 2 - type: Transform - - uid: 10489 - components: - - pos: 45.5,3.5 - parent: 2 - type: Transform - - uid: 10490 - components: - - pos: 46.5,3.5 - parent: 2 - type: Transform - - uid: 10491 - components: - - pos: 47.5,3.5 - parent: 2 - type: Transform - - uid: 10492 - components: - - pos: 43.5,12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10493 - components: - - pos: 43.5,13.5 - parent: 2 - type: Transform - - uid: 10494 - components: - - pos: 43.5,14.5 - parent: 2 - type: Transform - - uid: 10495 - components: - - pos: 44.5,14.5 - parent: 2 - type: Transform - - uid: 10496 - components: - - pos: 45.5,14.5 - parent: 2 - type: Transform - - uid: 10497 - components: - - pos: 46.5,14.5 - parent: 2 - type: Transform - - uid: 10498 - components: - - pos: 46.5,15.5 - parent: 2 - type: Transform - - uid: 10499 - components: - - pos: 46.5,16.5 - parent: 2 - type: Transform - - uid: 10500 - components: - - pos: 46.5,17.5 - parent: 2 - type: Transform - - uid: 10501 - components: - - pos: 46.5,18.5 - parent: 2 - type: Transform - - uid: 10502 - components: - - pos: 47.5,14.5 - parent: 2 - type: Transform - - uid: 10503 - components: - - pos: 42.5,14.5 - parent: 2 - type: Transform - - uid: 10504 - components: - - pos: 41.5,14.5 - parent: 2 - type: Transform - - uid: 10505 - components: - - pos: 40.5,14.5 - parent: 2 - type: Transform - - uid: 10506 - components: - - pos: 39.5,14.5 - parent: 2 - type: Transform - - uid: 10507 - components: - - pos: 38.5,14.5 - parent: 2 - type: Transform - - uid: 10508 - components: - - pos: 37.5,14.5 - parent: 2 - type: Transform - - uid: 10509 - components: - - pos: 36.5,14.5 - parent: 2 - type: Transform - - uid: 10510 - components: - - pos: 35.5,14.5 - parent: 2 - type: Transform - - uid: 10511 - components: - - pos: 34.5,14.5 - parent: 2 - type: Transform - - uid: 10512 - components: - - pos: 33.5,14.5 - parent: 2 - type: Transform - - uid: 10513 - components: - - pos: 32.5,14.5 - parent: 2 - type: Transform - - uid: 10514 - components: - - pos: 31.5,14.5 - parent: 2 - type: Transform - - uid: 10515 - components: - - pos: 30.5,14.5 - parent: 2 - type: Transform - - uid: 10516 - components: - - pos: 29.5,14.5 - parent: 2 - type: Transform - - uid: 10517 - components: - - pos: 28.5,14.5 - parent: 2 - type: Transform - - uid: 10518 - components: - - pos: 27.5,14.5 - parent: 2 - type: Transform - - uid: 10519 - components: - - pos: 26.5,14.5 - parent: 2 - type: Transform - - uid: 10520 - components: - - pos: 65.5,23.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10521 - components: - - pos: 64.5,23.5 - parent: 2 - type: Transform - - uid: 10522 - components: - - pos: 63.5,23.5 - parent: 2 - type: Transform - - uid: 10523 - components: - - pos: 62.5,23.5 - parent: 2 - type: Transform - - uid: 10524 - components: - - pos: 62.5,24.5 - parent: 2 - type: Transform - - uid: 10525 - components: - - pos: 62.5,25.5 - parent: 2 - type: Transform - - uid: 10526 - components: - - pos: 62.5,26.5 - parent: 2 - type: Transform - - uid: 10527 - components: - - pos: 62.5,27.5 - parent: 2 - type: Transform - - uid: 10528 - components: - - pos: 63.5,27.5 - parent: 2 - type: Transform - - uid: 10529 - components: - - pos: 66.5,17.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10530 - components: - - pos: 66.5,16.5 - parent: 2 - type: Transform - - uid: 10531 - components: - - pos: 66.5,15.5 - parent: 2 - type: Transform - - uid: 10532 - components: - - pos: 66.5,14.5 - parent: 2 - type: Transform - - uid: 10533 - components: - - pos: 66.5,13.5 - parent: 2 - type: Transform - - uid: 10534 - components: - - pos: 67.5,14.5 - parent: 2 - type: Transform - - uid: 10535 - components: - - pos: 68.5,14.5 - parent: 2 - type: Transform - - uid: 10536 - components: - - pos: 69.5,14.5 - parent: 2 - type: Transform - - uid: 10537 - components: - - pos: 70.5,14.5 - parent: 2 - type: Transform - - uid: 10538 - components: - - pos: 64.5,11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10539 - components: - - pos: 63.5,11.5 - parent: 2 - type: Transform - - uid: 10540 - components: - - pos: 62.5,11.5 - parent: 2 - type: Transform - - uid: 10541 - components: - - pos: 61.5,11.5 - parent: 2 - type: Transform - - uid: 10542 - components: - - pos: 61.5,10.5 - parent: 2 - type: Transform - - uid: 10543 - components: - - pos: 61.5,9.5 - parent: 2 - type: Transform - - uid: 10544 - components: - - pos: 61.5,8.5 - parent: 2 - type: Transform - - uid: 10546 - components: - - pos: 61.5,18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10547 - components: - - pos: 60.5,18.5 - parent: 2 - type: Transform - - uid: 10548 - components: - - pos: 59.5,18.5 - parent: 2 - type: Transform - - uid: 10549 - components: - - pos: 59.5,17.5 - parent: 2 - type: Transform - - uid: 10550 - components: - - pos: 59.5,16.5 - parent: 2 - type: Transform - - uid: 10551 - components: - - pos: 59.5,15.5 - parent: 2 - type: Transform - - uid: 10552 - components: - - pos: 59.5,14.5 - parent: 2 - type: Transform - - uid: 10553 - components: - - pos: 59.5,13.5 - parent: 2 - type: Transform - - uid: 10554 - components: - - pos: 60.5,14.5 - parent: 2 - type: Transform - - uid: 10555 - components: - - pos: 61.5,14.5 - parent: 2 - type: Transform - - uid: 10556 - components: - - pos: 62.5,14.5 - parent: 2 - type: Transform - - uid: 10557 - components: - - pos: 63.5,14.5 - parent: 2 - type: Transform - - uid: 10558 - components: - - pos: 58.5,14.5 - parent: 2 - type: Transform - - uid: 10559 - components: - - pos: 57.5,14.5 - parent: 2 - type: Transform - - uid: 10560 - components: - - pos: 56.5,14.5 - parent: 2 - type: Transform - - uid: 10561 - components: - - pos: 55.5,14.5 - parent: 2 - type: Transform - - uid: 10562 - components: - - pos: 54.5,14.5 - parent: 2 - type: Transform - - uid: 10563 - components: - - pos: 53.5,14.5 - parent: 2 - type: Transform - - uid: 10564 - components: - - pos: 52.5,14.5 - parent: 2 - type: Transform - - uid: 10565 - components: - - pos: 51.5,14.5 - parent: 2 - type: Transform - - uid: 10566 - components: - - pos: 50.5,14.5 - parent: 2 - type: Transform - - uid: 10567 - components: - - pos: 59.5,19.5 - parent: 2 - type: Transform - - uid: 10568 - components: - - pos: 59.5,20.5 - parent: 2 - type: Transform - - uid: 10569 - components: - - pos: 59.5,21.5 - parent: 2 - type: Transform - - uid: 10570 - components: - - pos: 59.5,22.5 - parent: 2 - type: Transform - - uid: 10571 - components: - - pos: 59.5,23.5 - parent: 2 - type: Transform - - uid: 10572 - components: - - pos: 59.5,24.5 - parent: 2 - type: Transform - - uid: 10573 - components: - - pos: 58.5,24.5 - parent: 2 - type: Transform - - uid: 10574 - components: - - pos: 57.5,24.5 - parent: 2 - type: Transform - - uid: 10575 - components: - - pos: 56.5,24.5 - parent: 2 - type: Transform - - uid: 10576 - components: - - pos: 55.5,24.5 - parent: 2 - type: Transform - - uid: 10577 - components: - - pos: 54.5,24.5 - parent: 2 - type: Transform - - uid: 10578 - components: - - pos: 57.5,11.5 - parent: 2 - type: Transform - - uid: 10579 - components: - - pos: 57.5,10.5 - parent: 2 - type: Transform - - uid: 10580 - components: - - pos: 57.5,9.5 - parent: 2 - type: Transform - - uid: 10581 - components: - - pos: 57.5,8.5 - parent: 2 - type: Transform - - uid: 10582 - components: - - pos: 57.5,7.5 - parent: 2 - type: Transform - - uid: 10583 - components: - - pos: 57.5,6.5 - parent: 2 - type: Transform - - uid: 10584 - components: - - pos: 56.5,6.5 - parent: 2 - type: Transform - - uid: 10925 - components: - - pos: 43.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10926 - components: - - pos: 42.5,6.5 - parent: 2 - type: Transform - - uid: 10927 - components: - - pos: 41.5,6.5 - parent: 2 - type: Transform - - uid: 10932 - components: - - pos: 41.5,5.5 - parent: 2 - type: Transform - - uid: 10933 - components: - - pos: 41.5,4.5 - parent: 2 - type: Transform - - uid: 10934 - components: - - pos: 41.5,3.5 - parent: 2 - type: Transform - - uid: 10935 - components: - - pos: 41.5,2.5 - parent: 2 - type: Transform - - uid: 10936 - components: - - pos: 41.5,1.5 - parent: 2 - type: Transform - - uid: 10937 - components: - - pos: 41.5,0.5 - parent: 2 - type: Transform - - uid: 10938 - components: - - pos: 41.5,-0.5 - parent: 2 - type: Transform - - uid: 10939 - components: - - pos: 41.5,7.5 - parent: 2 - type: Transform - - uid: 10940 - components: - - pos: 41.5,8.5 - parent: 2 - type: Transform - - uid: 10941 - components: - - pos: 41.5,9.5 - parent: 2 - type: Transform - - uid: 10942 - components: - - pos: 41.5,10.5 - parent: 2 - type: Transform - - uid: 10943 - components: - - pos: 41.5,11.5 - parent: 2 - type: Transform - - uid: 10944 - components: - - pos: 44.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10945 - components: - - pos: 45.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10946 - components: - - pos: 46.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10947 - components: - - pos: 47.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10948 - components: - - pos: 48.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10949 - components: - - pos: 49.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10953 - components: - - pos: 50.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10954 - components: - - pos: 51.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10955 - components: - - pos: 52.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10957 - components: - - pos: 54.5,4.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11008 - components: - - pos: 54.5,3.5 - parent: 2 - type: Transform - - uid: 11010 - components: - - pos: 54.5,2.5 - parent: 2 - type: Transform - - uid: 11011 - components: - - pos: 53.5,3.5 - parent: 2 - type: Transform - - uid: 11014 - components: - - pos: 52.5,3.5 - parent: 2 - type: Transform - - uid: 11015 - components: - - pos: 51.5,3.5 - parent: 2 - type: Transform - - uid: 11023 - components: - - pos: 50.5,3.5 - parent: 2 - type: Transform - - uid: 11024 - components: - - pos: 49.5,3.5 - parent: 2 - type: Transform - - uid: 11025 - components: - - pos: 54.5,1.5 - parent: 2 - type: Transform - - uid: 11026 - components: - - pos: 54.5,0.5 - parent: 2 - type: Transform - - uid: 11027 - components: - - pos: 54.5,-0.5 - parent: 2 - type: Transform - - uid: 11029 - components: - - pos: 54.5,-1.5 - parent: 2 - type: Transform - - uid: 11030 - components: - - pos: 53.5,-0.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11031 - components: - - pos: 52.5,-0.5 - parent: 2 - type: Transform - - uid: 11034 - components: - - pos: 51.5,-0.5 - parent: 2 - type: Transform - - uid: 11036 - components: - - pos: 50.5,-0.5 - parent: 2 - type: Transform - - uid: 11037 - components: - - pos: 49.5,-0.5 - parent: 2 - type: Transform - - uid: 11038 - components: - - pos: 48.5,-0.5 - parent: 2 - type: Transform - - uid: 11039 - components: - - pos: 47.5,-0.5 - parent: 2 - type: Transform - - uid: 11040 - components: - - pos: 46.5,-0.5 - parent: 2 - type: Transform - - uid: 11041 - components: - - pos: 45.5,-0.5 - parent: 2 - type: Transform - - uid: 11042 - components: - - pos: 44.5,-0.5 - parent: 2 - type: Transform - - uid: 11043 - components: - - pos: 58.5,-8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11044 - components: - - pos: 58.5,-9.5 - parent: 2 - type: Transform - - uid: 11045 - components: - - pos: 58.5,-10.5 - parent: 2 - type: Transform - - uid: 11046 - components: - - pos: 57.5,-10.5 - parent: 2 - type: Transform - - uid: 11047 - components: - - pos: 56.5,-10.5 - parent: 2 - type: Transform - - uid: 11048 - components: - - pos: 55.5,-10.5 - parent: 2 - type: Transform - - uid: 11049 - components: - - pos: 66.5,-0.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11050 - components: - - pos: 66.5,-1.5 - parent: 2 - type: Transform - - uid: 11051 - components: - - pos: 66.5,-2.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11052 - components: - - pos: 66.5,-3.5 - parent: 2 - type: Transform - - uid: 11053 - components: - - pos: 66.5,-4.5 - parent: 2 - type: Transform - - uid: 11054 - components: - - pos: 66.5,-5.5 - parent: 2 - type: Transform - - uid: 11055 - components: - - pos: 66.5,-6.5 - parent: 2 - type: Transform - - uid: 11056 - components: - - pos: 65.5,-5.5 - parent: 2 - type: Transform - - uid: 11057 - components: - - pos: 65.5,-3.5 - parent: 2 - type: Transform - - uid: 11058 - components: - - pos: 75.5,-4.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11059 - components: - - pos: 76.5,-4.5 - parent: 2 - type: Transform - - uid: 11060 - components: - - pos: 77.5,-4.5 - parent: 2 - type: Transform - - uid: 11061 - components: - - pos: 78.5,-4.5 - parent: 2 - type: Transform - - uid: 11062 - components: - - pos: 79.5,-4.5 - parent: 2 - type: Transform - - uid: 11063 - components: - - pos: 80.5,-4.5 - parent: 2 - type: Transform - - uid: 11064 - components: - - pos: 81.5,-4.5 - parent: 2 - type: Transform - - uid: 11065 - components: - - pos: 80.5,-3.5 - parent: 2 - type: Transform - - uid: 11067 - components: - - pos: 80.5,-2.5 - parent: 2 - type: Transform - - uid: 11069 - components: - - pos: 80.5,-1.5 - parent: 2 - type: Transform - - uid: 11071 - components: - - pos: 77.5,-3.5 - parent: 2 - type: Transform - - uid: 11072 - components: - - pos: 77.5,-2.5 - parent: 2 - type: Transform - - uid: 11073 - components: - - pos: 77.5,-1.5 - parent: 2 - type: Transform - - uid: 11074 - components: - - pos: 77.5,-0.5 - parent: 2 - type: Transform - - uid: 11075 - components: - - pos: 77.5,-5.5 - parent: 2 - type: Transform - - uid: 11076 - components: - - pos: 77.5,-6.5 - parent: 2 - type: Transform - - uid: 11077 - components: - - pos: 77.5,-7.5 - parent: 2 - type: Transform - - uid: 11078 - components: - - pos: 77.5,-8.5 - parent: 2 - type: Transform - - uid: 11079 - components: - - pos: 80.5,-5.5 - parent: 2 - type: Transform - - uid: 11080 - components: - - pos: 80.5,-6.5 - parent: 2 - type: Transform - - uid: 11081 - components: - - pos: 80.5,-7.5 - parent: 2 - type: Transform - - uid: 11082 - components: - - pos: 73.5,-7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11083 - components: - - pos: 72.5,-7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11084 - components: - - pos: 71.5,-7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11085 - components: - - pos: 70.5,-7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11086 - components: - - pos: 69.5,-7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11087 - components: - - pos: 71.5,-6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11088 - components: - - pos: 71.5,-5.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11090 - components: - - pos: 71.5,-4.5 - parent: 2 - type: Transform - - uid: 11091 - components: - - pos: 72.5,-1.5 - parent: 2 - type: Transform - - uid: 11095 - components: - - pos: 75.5,-2.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11096 - components: - - pos: 74.5,-2.5 - parent: 2 - type: Transform - - uid: 11102 - components: - - pos: 73.5,-2.5 - parent: 2 - type: Transform - - uid: 11103 - components: - - pos: 72.5,-2.5 - parent: 2 - type: Transform - - uid: 11104 - components: - - pos: 72.5,-0.5 - parent: 2 - type: Transform - - uid: 11105 - components: - - pos: 71.5,-2.5 - parent: 2 - type: Transform - - uid: 11106 - components: - - pos: 70.5,-2.5 - parent: 2 - type: Transform - - uid: 11107 - components: - - pos: 71.5,-8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11108 - components: - - pos: 71.5,-9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11110 - components: - - pos: 71.5,-10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11111 - components: - - pos: 71.5,-11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11112 - components: - - pos: 71.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11113 - components: - - pos: 71.5,-13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11114 - components: - - pos: 68.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11115 - components: - - pos: 67.5,-15.5 - parent: 2 - type: Transform - - uid: 11116 - components: - - pos: 66.5,-15.5 - parent: 2 - type: Transform - - uid: 11117 - components: - - pos: 66.5,-16.5 - parent: 2 - type: Transform - - uid: 11133 - components: - - pos: 66.5,-17.5 - parent: 2 - type: Transform - - uid: 11134 - components: - - pos: 65.5,-17.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11135 - components: - - pos: 64.5,-17.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11136 - components: - - pos: 63.5,-17.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11137 - components: - - pos: 62.5,-17.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11138 - components: - - pos: 61.5,-17.5 - parent: 2 - type: Transform - - uid: 11139 - components: - - pos: 60.5,-17.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11140 - components: - - pos: 59.5,-17.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11141 - components: - - pos: 66.5,-7.5 - parent: 2 - type: Transform - - uid: 11142 - components: - - pos: 66.5,-8.5 - parent: 2 - type: Transform - - uid: 11143 - components: - - pos: 66.5,-9.5 - parent: 2 - type: Transform - - uid: 11144 - components: - - pos: 66.5,-10.5 - parent: 2 - type: Transform - - uid: 11147 - components: - - pos: 66.5,-11.5 - parent: 2 - type: Transform - - uid: 11368 - components: - - pos: 60.5,-6.5 - parent: 2 - type: Transform - - uid: 11369 - components: - - pos: 59.5,-6.5 - parent: 2 - type: Transform - - uid: 11370 - components: - - pos: 58.5,-6.5 - parent: 2 - type: Transform - - uid: 11371 - components: - - pos: 57.5,-6.5 - parent: 2 - type: Transform - - uid: 11372 - components: - - pos: 56.5,-6.5 - parent: 2 - type: Transform - - uid: 11373 - components: - - pos: 55.5,2.5 - parent: 2 - type: Transform - - uid: 11374 - components: - - pos: 56.5,2.5 - parent: 2 - type: Transform - - uid: 11375 - components: - - pos: 57.5,2.5 - parent: 2 - type: Transform - - uid: 11376 - components: - - pos: 58.5,2.5 - parent: 2 - type: Transform - - uid: 11377 - components: - - pos: 59.5,2.5 - parent: 2 - type: Transform - - uid: 11378 - components: - - pos: 60.5,2.5 - parent: 2 - type: Transform - - uid: 11380 - components: - - pos: 61.5,2.5 - parent: 2 - type: Transform - - uid: 11381 - components: - - pos: 55.5,0.5 - parent: 2 - type: Transform - - uid: 11382 - components: - - pos: 56.5,0.5 - parent: 2 - type: Transform - - uid: 11387 - components: - - pos: 57.5,0.5 - parent: 2 - type: Transform - - uid: 11388 - components: - - pos: 58.5,0.5 - parent: 2 - type: Transform - - uid: 11389 - components: - - pos: 59.5,0.5 - parent: 2 - type: Transform - - uid: 11390 - components: - - pos: 60.5,0.5 - parent: 2 - type: Transform - - uid: 11394 - components: - - pos: 61.5,0.5 - parent: 2 - type: Transform - - uid: 11981 - components: - - pos: 62.5,2.5 - parent: 2 - type: Transform - - uid: 11982 - components: - - pos: 63.5,2.5 - parent: 2 - type: Transform - - uid: 11983 - components: - - pos: 64.5,2.5 - parent: 2 - type: Transform - - uid: 11984 - components: - - pos: 65.5,2.5 - parent: 2 - type: Transform - - uid: 11986 - components: - - pos: 66.5,2.5 - parent: 2 - type: Transform - - uid: 11988 - components: - - pos: 67.5,2.5 - parent: 2 - type: Transform - - uid: 11989 - components: - - pos: 68.5,2.5 - parent: 2 - type: Transform - - uid: 11991 - components: - - pos: 69.5,2.5 - parent: 2 - type: Transform - - uid: 11992 - components: - - pos: 68.5,3.5 - parent: 2 - type: Transform - - uid: 11993 - components: - - pos: 68.5,4.5 - parent: 2 - type: Transform - - uid: 11994 - components: - - pos: 68.5,5.5 - parent: 2 - type: Transform - - uid: 11995 - components: - - pos: 74.5,9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11996 - components: - - pos: 74.5,8.5 - parent: 2 - type: Transform - - uid: 11997 - components: - - pos: 74.5,7.5 - parent: 2 - type: Transform - - uid: 11998 - components: - - pos: 74.5,6.5 - parent: 2 - type: Transform - - uid: 11999 - components: - - pos: 75.5,7.5 - parent: 2 - type: Transform - - uid: 12000 - components: - - pos: 76.5,7.5 - parent: 2 - type: Transform - - uid: 12001 - components: - - pos: 77.5,7.5 - parent: 2 - type: Transform - - uid: 12002 - components: - - pos: 77.5,8.5 - parent: 2 - type: Transform - - uid: 12003 - components: - - pos: 77.5,9.5 - parent: 2 - type: Transform - - uid: 12004 - components: - - pos: 73.5,7.5 - parent: 2 - type: Transform - - uid: 12005 - components: - - pos: 72.5,7.5 - parent: 2 - type: Transform - - uid: 12006 - components: - - pos: 71.5,7.5 - parent: 2 - type: Transform - - uid: 12007 - components: - - pos: 71.5,6.5 - parent: 2 - type: Transform - - uid: 12008 - components: - - pos: 71.5,5.5 - parent: 2 - type: Transform - - uid: 12009 - components: - - pos: 71.5,4.5 - parent: 2 - type: Transform - - uid: 12010 - components: - - pos: 70.5,2.5 - parent: 2 - type: Transform - - uid: 12011 - components: - - pos: 71.5,2.5 - parent: 2 - type: Transform - - uid: 12012 - components: - - pos: 72.5,2.5 - parent: 2 - type: Transform - - uid: 12013 - components: - - pos: 73.5,2.5 - parent: 2 - type: Transform - - uid: 12014 - components: - - pos: 74.5,2.5 - parent: 2 - type: Transform - - uid: 12015 - components: - - pos: 75.5,2.5 - parent: 2 - type: Transform - - uid: 12016 - components: - - pos: 76.5,2.5 - parent: 2 - type: Transform - - uid: 12017 - components: - - pos: 77.5,2.5 - parent: 2 - type: Transform - - uid: 12018 - components: - - pos: 78.5,2.5 - parent: 2 - type: Transform - - uid: 12019 - components: - - pos: 79.5,2.5 - parent: 2 - type: Transform - - uid: 12020 - components: - - pos: 80.5,2.5 - parent: 2 - type: Transform - - uid: 12021 - components: - - pos: 77.5,3.5 - parent: 2 - type: Transform - - uid: 12022 - components: - - pos: 69.5,9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12023 - components: - - pos: 69.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12024 - components: - - pos: 68.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12025 - components: - - pos: 67.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12026 - components: - - pos: 67.5,9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12027 - components: - - pos: 67.5,8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12028 - components: - - pos: 66.5,8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12029 - components: - - pos: 65.5,8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12030 - components: - - pos: 65.5,7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12031 - components: - - pos: 65.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12032 - components: - - pos: 64.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12033 - components: - - pos: 63.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12034 - components: - - pos: 62.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12035 - components: - - pos: 61.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12036 - components: - - pos: 60.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12037 - components: - - pos: 59.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12038 - components: - - pos: 70.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12039 - components: - - pos: 71.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12040 - components: - - pos: 72.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12041 - components: - - pos: 73.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12042 - components: - - pos: 73.5,11.5 - parent: 2 - type: Transform - - uid: 12043 - components: - - pos: 73.5,12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12044 - components: - - pos: 73.5,13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12045 - components: - - pos: 73.5,14.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12046 - components: - - pos: 73.5,15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12047 - components: - - pos: 73.5,16.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12048 - components: - - pos: 73.5,17.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12049 - components: - - pos: 73.5,18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12050 - components: - - pos: 74.5,12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12051 - components: - - pos: 75.5,12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12052 - components: - - pos: 76.5,12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12053 - components: - - pos: 77.5,12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12054 - components: - - pos: 78.5,12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12055 - components: - - pos: 79.5,12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12056 - components: - - pos: 78.5,-14.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12057 - components: - - pos: 78.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12058 - components: - - pos: 79.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12059 - components: - - pos: 80.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12060 - components: - - pos: 81.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12061 - components: - - pos: 82.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12062 - components: - - pos: 83.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12063 - components: - - pos: 84.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12064 - components: - - pos: 85.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12065 - components: - - pos: 86.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12066 - components: - - pos: 86.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12067 - components: - - pos: 86.5,-11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12068 - components: - - pos: 86.5,-10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12069 - components: - - pos: 86.5,-9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12070 - components: - - pos: 86.5,-8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12071 - components: - - pos: 86.5,-7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12072 - components: - - pos: 86.5,-6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12073 - components: - - pos: 86.5,-5.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12074 - components: - - pos: 86.5,-4.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12079 - components: - - pos: 86.5,-3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12084 - components: - - pos: 85.5,-3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12096 - components: - - pos: 84.5,-3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12113 - components: - - pos: 84.5,-2.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12114 - components: - - pos: 84.5,-1.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12115 - components: - - pos: 84.5,-0.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12117 - components: - - pos: 84.5,0.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12118 - components: - - pos: 84.5,1.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12119 - components: - - pos: 84.5,2.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12120 - components: - - pos: 84.5,4.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12121 - components: - - pos: 84.5,3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12122 - components: - - pos: 84.5,8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12123 - components: - - pos: 85.5,8.5 - parent: 2 - type: Transform - - uid: 12124 - components: - - pos: 85.5,9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12125 - components: - - pos: 85.5,10.5 - parent: 2 - type: Transform - - uid: 12126 - components: - - pos: 85.5,11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12127 - components: - - pos: 84.5,11.5 - parent: 2 - type: Transform - - uid: 12128 - components: - - pos: 83.5,11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12129 - components: - - pos: 84.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12130 - components: - - pos: 84.5,5.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12131 - components: - - pos: 83.5,5.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12132 - components: - - pos: 82.5,5.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12133 - components: - - pos: 81.5,5.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12134 - components: - - pos: 80.5,5.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12135 - components: - - pos: 69.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12136 - components: - - pos: 70.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12137 - components: - - pos: 70.5,-16.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12138 - components: - - pos: 70.5,-17.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12500 - components: - - pos: 87.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12501 - components: - - pos: 88.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12505 - components: - - pos: 88.5,-16.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12507 - components: - - pos: 88.5,-17.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12508 - components: - - pos: 88.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12509 - components: - - pos: 88.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12510 - components: - - pos: 88.5,-20.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12511 - components: - - pos: 87.5,-20.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12512 - components: - - pos: 86.5,-20.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12513 - components: - - pos: 89.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12514 - components: - - pos: 90.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12523 - components: - - pos: 91.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12524 - components: - - pos: 92.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12525 - components: - - pos: 93.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12526 - components: - - pos: 100.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12527 - components: - - pos: 101.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12533 - components: - - pos: 102.5,-19.5 - parent: 2 - type: Transform - - uid: 12534 - components: - - pos: 102.5,-18.5 - parent: 2 - type: Transform - - uid: 12535 - components: - - pos: 103.5,-18.5 - parent: 2 - type: Transform - - uid: 12536 - components: - - pos: 104.5,-18.5 - parent: 2 - type: Transform - - uid: 12541 - components: - - pos: 105.5,-18.5 - parent: 2 - type: Transform - - uid: 12542 - components: - - pos: 106.5,-18.5 - parent: 2 - type: Transform - - uid: 12545 - components: - - pos: 107.5,-18.5 - parent: 2 - type: Transform - - uid: 12546 - components: - - pos: 107.5,-17.5 - parent: 2 - type: Transform - - uid: 12547 - components: - - pos: 108.5,-17.5 - parent: 2 - type: Transform - - uid: 12551 - components: - - pos: 109.5,-17.5 - parent: 2 - type: Transform - - uid: 12552 - components: - - pos: 110.5,-17.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12555 - components: - - pos: 110.5,-16.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12558 - components: - - pos: 110.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12560 - components: - - pos: 110.5,-14.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12561 - components: - - pos: 107.5,-16.5 - parent: 2 - type: Transform - - uid: 12565 - components: - - pos: 106.5,-16.5 - parent: 2 - type: Transform - - uid: 12566 - components: - - pos: 106.5,-15.5 - parent: 2 - type: Transform - - uid: 12567 - components: - - pos: 106.5,-14.5 - parent: 2 - type: Transform - - uid: 12568 - components: - - pos: 106.5,-13.5 - parent: 2 - type: Transform - - uid: 12569 - components: - - pos: 106.5,-12.5 - parent: 2 - type: Transform - - uid: 12570 - components: - - pos: 106.5,-11.5 - parent: 2 - type: Transform - - uid: 12571 - components: - - pos: 106.5,-10.5 - parent: 2 - type: Transform - - uid: 12572 - components: - - pos: 105.5,-12.5 - parent: 2 - type: Transform - - uid: 12573 - components: - - pos: 104.5,-12.5 - parent: 2 - type: Transform - - uid: 12574 - components: - - pos: 103.5,-12.5 - parent: 2 - type: Transform - - uid: 12575 - components: - - pos: 102.5,-12.5 - parent: 2 - type: Transform - - uid: 12576 - components: - - pos: 102.5,-13.5 - parent: 2 - type: Transform - - uid: 12577 - components: - - pos: 106.5,-19.5 - parent: 2 - type: Transform - - uid: 12578 - components: - - pos: 106.5,-20.5 - parent: 2 - type: Transform - - uid: 12583 - components: - - pos: 106.5,-21.5 - parent: 2 - type: Transform - - uid: 12584 - components: - - pos: 106.5,-22.5 - parent: 2 - type: Transform - - uid: 12585 - components: - - pos: 106.5,-23.5 - parent: 2 - type: Transform - - uid: 12586 - components: - - pos: 106.5,-24.5 - parent: 2 - type: Transform - - uid: 12587 - components: - - pos: 110.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12588 - components: - - pos: 111.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12589 - components: - - pos: 112.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12590 - components: - - pos: 112.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12591 - components: - - pos: 113.5,-19.5 - parent: 2 - type: Transform - - uid: 12592 - components: - - pos: 114.5,-19.5 - parent: 2 - type: Transform - - uid: 12593 - components: - - pos: 114.5,-18.5 - parent: 2 - type: Transform - - uid: 12594 - components: - - pos: 114.5,-17.5 - parent: 2 - type: Transform - - uid: 12595 - components: - - pos: 114.5,-16.5 - parent: 2 - type: Transform - - uid: 12949 - components: - - pos: 41.5,-44.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12950 - components: - - pos: 42.5,-44.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12951 - components: - - pos: 43.5,-44.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12952 - components: - - pos: 44.5,-44.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12953 - components: - - pos: 45.5,-44.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12954 - components: - - pos: 46.5,-44.5 - parent: 2 - type: Transform - - uid: 12955 - components: - - pos: 47.5,-44.5 - parent: 2 - type: Transform - - uid: 12956 - components: - - pos: 48.5,-44.5 - parent: 2 - type: Transform - - uid: 12957 - components: - - pos: 49.5,-44.5 - parent: 2 - type: Transform - - uid: 12958 - components: - - pos: 49.5,-45.5 - parent: 2 - type: Transform - - uid: 12959 - components: - - pos: 49.5,-46.5 - parent: 2 - type: Transform - - uid: 12960 - components: - - pos: 49.5,-47.5 - parent: 2 - type: Transform - - uid: 12961 - components: - - pos: 49.5,-48.5 - parent: 2 - type: Transform - - uid: 12962 - components: - - pos: 35.5,-46.5 - parent: 2 - type: Transform - - uid: 12963 - components: - - pos: 35.5,-47.5 - parent: 2 - type: Transform - - uid: 12964 - components: - - pos: 34.5,-47.5 - parent: 2 - type: Transform - - uid: 12965 - components: - - pos: 33.5,-47.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12966 - components: - - pos: 32.5,-47.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12967 - components: - - pos: 32.5,-48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12968 - components: - - pos: 35.5,-48.5 - parent: 2 - type: Transform - - uid: 12969 - components: - - pos: 36.5,-48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12970 - components: - - pos: 37.5,-48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12971 - components: - - pos: 38.5,-48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12972 - components: - - pos: 39.5,-48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12973 - components: - - pos: 40.5,-48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12974 - components: - - pos: 41.5,-48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12975 - components: - - pos: 42.5,-48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12976 - components: - - pos: 43.5,-48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound -- proto: CableApcStack - entities: - - uid: 5386 - components: - - pos: 50.555935,8.595494 - parent: 2 - type: Transform - - uid: 5387 - components: - - pos: 50.555935,8.595494 - parent: 2 - type: Transform - - uid: 5627 - components: - - pos: 17.749475,-23.290428 - parent: 2 - type: Transform - - uid: 11130 - components: - - pos: 54.504898,-15.262592 - parent: 2 - type: Transform -- proto: CableApcStack1 - entities: - - uid: 6180 - components: - - pos: 84.31913,7.409586 - parent: 2 - type: Transform -- proto: CableHV - entities: - - uid: 11 - components: - - pos: 13.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 29 - components: - - pos: 12.5,33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 61 - components: - - pos: 15.5,-13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 63 - components: - - pos: 16.5,-11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 64 - components: - - pos: 15.5,-11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 65 - components: - - pos: 14.5,-11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 66 - components: - - pos: 13.5,-11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 603 - components: - - pos: 42.5,41.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 803 - components: - - pos: 23.5,-37.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 828 - components: - - pos: 24.5,-36.5 - parent: 2 - type: Transform - - uid: 829 - components: - - pos: 19.5,-39.5 - parent: 2 - type: Transform - - uid: 830 - components: - - pos: 17.5,-41.5 - parent: 2 - type: Transform - - uid: 1015 - components: - - pos: 23.5,-36.5 - parent: 2 - type: Transform - - uid: 1026 - components: - - pos: 25.5,-42.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1027 - components: - - pos: 25.5,-41.5 - parent: 2 - type: Transform - - uid: 1469 - components: - - pos: 25.5,-36.5 - parent: 2 - type: Transform - - uid: 1941 - components: - - pos: 24.5,-28.5 - parent: 2 - type: Transform - - uid: 2332 - components: - - pos: 43.5,41.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2387 - components: - - pos: 25.5,-28.5 - parent: 2 - type: Transform - - uid: 2711 - components: - - pos: 117.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2832 - components: - - pos: 23.5,-28.5 - parent: 2 - type: Transform - - uid: 2988 - components: - - pos: 22.5,4.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2989 - components: - - pos: 22.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3012 - components: - - pos: 22.5,9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3980 - components: - - pos: 23.5,-41.5 - parent: 2 - type: Transform - - uid: 4020 - components: - - pos: 26.5,-42.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4213 - components: - - pos: 22.5,8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4218 - components: - - pos: 22.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4227 - components: - - pos: 22.5,7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4307 - components: - - pos: 17.5,-40.5 - parent: 2 - type: Transform - - uid: 4335 - components: - - pos: 17.5,-39.5 - parent: 2 - type: Transform - - uid: 4336 - components: - - pos: 18.5,-39.5 - parent: 2 - type: Transform - - uid: 4337 - components: - - pos: 23.5,-42.5 - parent: 2 - type: Transform - - uid: 4504 - components: - - pos: 25.5,-40.5 - parent: 2 - type: Transform - - uid: 4505 - components: - - pos: 25.5,-39.5 - parent: 2 - type: Transform - - uid: 4506 - components: - - pos: 24.5,-39.5 - parent: 2 - type: Transform - - uid: 4507 - components: - - pos: 23.5,-39.5 - parent: 2 - type: Transform - - uid: 4508 - components: - - pos: 23.5,-38.5 - parent: 2 - type: Transform - - uid: 4509 - components: - - pos: 23.5,-40.5 - parent: 2 - type: Transform - - uid: 4510 - components: - - pos: 23.5,-43.5 - parent: 2 - type: Transform - - uid: 4511 - components: - - pos: 22.5,-43.5 - parent: 2 - type: Transform - - uid: 4512 - components: - - pos: 21.5,-43.5 - parent: 2 - type: Transform - - uid: 4513 - components: - - pos: 20.5,-43.5 - parent: 2 - type: Transform - - uid: 4514 - components: - - pos: 19.5,-43.5 - parent: 2 - type: Transform - - uid: 4515 - components: - - pos: 19.5,-41.5 - parent: 2 - type: Transform - - uid: 4516 - components: - - pos: 19.5,-42.5 - parent: 2 - type: Transform - - uid: 4517 - components: - - pos: 19.5,-40.5 - parent: 2 - type: Transform - - uid: 4518 - components: - - pos: 17.5,-42.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4519 - components: - - pos: 16.5,-42.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4520 - components: - - pos: 26.5,-36.5 - parent: 2 - type: Transform - - uid: 4521 - components: - - pos: 27.5,-36.5 - parent: 2 - type: Transform - - uid: 4522 - components: - - pos: 28.5,-36.5 - parent: 2 - type: Transform - - uid: 4523 - components: - - pos: 29.5,-36.5 - parent: 2 - type: Transform - - uid: 4524 - components: - - pos: 30.5,-36.5 - parent: 2 - type: Transform - - uid: 4525 - components: - - pos: 31.5,-36.5 - parent: 2 - type: Transform - - uid: 4526 - components: - - pos: 31.5,-37.5 - parent: 2 - type: Transform - - uid: 4527 - components: - - pos: 31.5,-38.5 - parent: 2 - type: Transform - - uid: 4528 - components: - - pos: 30.5,-38.5 - parent: 2 - type: Transform - - uid: 4529 - components: - - pos: 30.5,-39.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4530 - components: - - pos: 30.5,-40.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4531 - components: - - pos: 30.5,-41.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4532 - components: - - pos: 30.5,-42.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4533 - components: - - pos: 30.5,-43.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4534 - components: - - pos: 30.5,-44.5 - parent: 2 - type: Transform - - uid: 4535 - components: - - pos: 26.5,-35.5 - parent: 2 - type: Transform - - uid: 4536 - components: - - pos: 26.5,-34.5 - parent: 2 - type: Transform - - uid: 4537 - components: - - pos: 26.5,-33.5 - parent: 2 - type: Transform - - uid: 4538 - components: - - pos: 26.5,-32.5 - parent: 2 - type: Transform - - uid: 4541 - components: - - pos: 25.5,-32.5 - parent: 2 - type: Transform - - uid: 4542 - components: - - pos: 27.5,-32.5 - parent: 2 - type: Transform - - uid: 4543 - components: - - pos: 25.5,-31.5 - parent: 2 - type: Transform - - uid: 4544 - components: - - pos: 26.5,-31.5 - parent: 2 - type: Transform - - uid: 4545 - components: - - pos: 27.5,-31.5 - parent: 2 - type: Transform - - uid: 4546 - components: - - pos: 25.5,-30.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4547 - components: - - pos: 26.5,-30.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4548 - components: - - pos: 27.5,-30.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4549 - components: - - pos: 26.5,-29.5 - parent: 2 - type: Transform - - uid: 4550 - components: - - pos: 26.5,-28.5 - parent: 2 - type: Transform - - uid: 4585 - components: - - pos: 22.5,-28.5 - parent: 2 - type: Transform - - uid: 4586 - components: - - pos: 22.5,-27.5 - parent: 2 - type: Transform - - uid: 4588 - components: - - pos: 22.5,-26.5 - parent: 2 - type: Transform - - uid: 4589 - components: - - pos: 22.5,-25.5 - parent: 2 - type: Transform - - uid: 4590 - components: - - pos: 22.5,-24.5 - parent: 2 - type: Transform - - uid: 4591 - components: - - pos: 22.5,-23.5 - parent: 2 - type: Transform - - uid: 4592 - components: - - pos: 21.5,-26.5 - parent: 2 - type: Transform - - uid: 4593 - components: - - pos: 20.5,-26.5 - parent: 2 - type: Transform - - uid: 4594 - components: - - pos: 19.5,-26.5 - parent: 2 - type: Transform - - uid: 4595 - components: - - pos: 18.5,-26.5 - parent: 2 - type: Transform - - uid: 4596 - components: - - pos: 17.5,-26.5 - parent: 2 - type: Transform - - uid: 4597 - components: - - pos: 16.5,-26.5 - parent: 2 - type: Transform - - uid: 4598 - components: - - pos: 15.5,-26.5 - parent: 2 - type: Transform - - uid: 4599 - components: - - pos: 14.5,-26.5 - parent: 2 - type: Transform - - uid: 4600 - components: - - pos: 13.5,-26.5 - parent: 2 - type: Transform - - uid: 4601 - components: - - pos: 12.5,-26.5 - parent: 2 - type: Transform - - uid: 4602 - components: - - pos: 11.5,-26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4603 - components: - - pos: 10.5,-26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4604 - components: - - pos: 10.5,-25.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4781 - components: - - pos: 21.5,-40.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4783 - components: - - pos: 21.5,-39.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4784 - components: - - pos: 21.5,-38.5 - parent: 2 - type: Transform - - uid: 4785 - components: - - pos: 21.5,-37.5 - parent: 2 - type: Transform - - uid: 4786 - components: - - pos: 21.5,-36.5 - parent: 2 - type: Transform - - uid: 4787 - components: - - pos: 21.5,-35.5 - parent: 2 - type: Transform - - uid: 4788 - components: - - pos: 20.5,-35.5 - parent: 2 - type: Transform - - uid: 4789 - components: - - pos: 19.5,-35.5 - parent: 2 - type: Transform - - uid: 4790 - components: - - pos: 18.5,-35.5 - parent: 2 - type: Transform - - uid: 4791 - components: - - pos: 18.5,-34.5 - parent: 2 - type: Transform - - uid: 4792 - components: - - pos: 18.5,-33.5 - parent: 2 - type: Transform - - uid: 4793 - components: - - pos: 18.5,-32.5 - parent: 2 - type: Transform - - uid: 4794 - components: - - pos: 18.5,-31.5 - parent: 2 - type: Transform - - uid: 4795 - components: - - pos: 18.5,-30.5 - parent: 2 - type: Transform - - uid: 4796 - components: - - pos: 18.5,-29.5 - parent: 2 - type: Transform - - uid: 4797 - components: - - pos: 18.5,-28.5 - parent: 2 - type: Transform - - uid: 4798 - components: - - pos: 18.5,-27.5 - parent: 2 - type: Transform - - uid: 4801 - components: - - pos: -13.5,-33.5 - parent: 2 - type: Transform - - uid: 4802 - components: - - pos: -13.5,-32.5 - parent: 2 - type: Transform - - uid: 4803 - components: - - pos: -13.5,-31.5 - parent: 2 - type: Transform - - uid: 4804 - components: - - pos: -11.5,-33.5 - parent: 2 - type: Transform - - uid: 4805 - components: - - pos: -11.5,-32.5 - parent: 2 - type: Transform - - uid: 4806 - components: - - pos: -11.5,-31.5 - parent: 2 - type: Transform - - uid: 4807 - components: - - pos: -12.5,-33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4808 - components: - - pos: -12.5,-34.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4809 - components: - - pos: -8.5,-33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4810 - components: - - pos: -12.5,-36.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4816 - components: - - pos: -12.5,-37.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4817 - components: - - pos: -11.5,-37.5 - parent: 2 - type: Transform - - uid: 4818 - components: - - pos: -11.5,-38.5 - parent: 2 - type: Transform - - uid: 4819 - components: - - pos: -11.5,-39.5 - parent: 2 - type: Transform - - uid: 4820 - components: - - pos: -13.5,-39.5 - parent: 2 - type: Transform - - uid: 4821 - components: - - pos: -13.5,-38.5 - parent: 2 - type: Transform - - uid: 4822 - components: - - pos: -13.5,-37.5 - parent: 2 - type: Transform - - uid: 4823 - components: - - pos: -9.5,-40.5 - parent: 2 - type: Transform - - uid: 4824 - components: - - pos: -9.5,-39.5 - parent: 2 - type: Transform - - uid: 4825 - components: - - pos: -9.5,-38.5 - parent: 2 - type: Transform - - uid: 4826 - components: - - pos: -9.5,-37.5 - parent: 2 - type: Transform - - uid: 4828 - components: - - pos: -7.5,-40.5 - parent: 2 - type: Transform - - uid: 4830 - components: - - pos: -7.5,-39.5 - parent: 2 - type: Transform - - uid: 4831 - components: - - pos: -7.5,-38.5 - parent: 2 - type: Transform - - uid: 4832 - components: - - pos: -7.5,-37.5 - parent: 2 - type: Transform - - uid: 4833 - components: - - pos: -9.5,-33.5 - parent: 2 - type: Transform - - uid: 4834 - components: - - pos: -9.5,-32.5 - parent: 2 - type: Transform - - uid: 4835 - components: - - pos: -9.5,-31.5 - parent: 2 - type: Transform - - uid: 4836 - components: - - pos: -9.5,-30.5 - parent: 2 - type: Transform - - uid: 4837 - components: - - pos: -7.5,-33.5 - parent: 2 - type: Transform - - uid: 4838 - components: - - pos: -7.5,-32.5 - parent: 2 - type: Transform - - uid: 4839 - components: - - pos: -7.5,-31.5 - parent: 2 - type: Transform - - uid: 4840 - components: - - pos: -7.5,-30.5 - parent: 2 - type: Transform - - uid: 4841 - components: - - pos: -5.5,-33.5 - parent: 2 - type: Transform - - uid: 4842 - components: - - pos: -5.5,-32.5 - parent: 2 - type: Transform - - uid: 4843 - components: - - pos: -5.5,-31.5 - parent: 2 - type: Transform - - uid: 4844 - components: - - pos: -3.5,-33.5 - parent: 2 - type: Transform - - uid: 4845 - components: - - pos: -3.5,-32.5 - parent: 2 - type: Transform - - uid: 4846 - components: - - pos: -3.5,-31.5 - parent: 2 - type: Transform - - uid: 4847 - components: - - pos: -5.5,-39.5 - parent: 2 - type: Transform - - uid: 4848 - components: - - pos: -5.5,-38.5 - parent: 2 - type: Transform - - uid: 4849 - components: - - pos: -5.5,-37.5 - parent: 2 - type: Transform - - uid: 4850 - components: - - pos: -3.5,-39.5 - parent: 2 - type: Transform - - uid: 4851 - components: - - pos: -3.5,-38.5 - parent: 2 - type: Transform - - uid: 4852 - components: - - pos: -3.5,-37.5 - parent: 2 - type: Transform - - uid: 4853 - components: - - pos: -8.5,-34.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4854 - components: - - pos: -8.5,-37.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4855 - components: - - pos: -8.5,-36.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4856 - components: - - pos: -4.5,-37.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4857 - components: - - pos: -4.5,-36.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4858 - components: - - pos: -4.5,-33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4859 - components: - - pos: -4.5,-34.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4860 - components: - - pos: -15.5,-35.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4861 - components: - - pos: -14.5,-35.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4862 - components: - - pos: -1.5,-35.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4863 - components: - - pos: -0.5,-35.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4864 - components: - - pos: 0.5,-35.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4865 - components: - - pos: 1.5,-35.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4866 - components: - - pos: 2.5,-35.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4867 - components: - - pos: 2.5,-34.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4868 - components: - - pos: 3.5,-34.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4869 - components: - - pos: 4.5,-34.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4870 - components: - - pos: 4.5,-35.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4871 - components: - - pos: 4.5,-36.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4908 - components: - - pos: 22.5,5.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5146 - components: - - pos: 41.5,41.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5421 - components: - - pos: 14.5,33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5743 - components: - - pos: 12.5,34.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5873 - components: - - pos: 63.5,48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5903 - components: - - pos: 4.5,-33.5 - parent: 2 - type: Transform - - uid: 5904 - components: - - pos: 4.5,-32.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5905 - components: - - pos: 4.5,-31.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5906 - components: - - pos: 4.5,-30.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5907 - components: - - pos: 4.5,-29.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5908 - components: - - pos: 4.5,-28.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5909 - components: - - pos: 4.5,-27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5910 - components: - - pos: 4.5,-26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5911 - components: - - pos: 4.5,-25.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5912 - components: - - pos: 4.5,-24.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5913 - components: - - pos: 4.5,-23.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5922 - components: - - pos: 5.5,-23.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5923 - components: - - pos: 6.5,-23.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5924 - components: - - pos: 7.5,-23.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5925 - components: - - pos: 8.5,-23.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5926 - components: - - pos: 9.5,-23.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5927 - components: - - pos: 10.5,-23.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5928 - components: - - pos: 11.5,-23.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5929 - components: - - pos: 11.5,-22.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5930 - components: - - pos: 11.5,-21.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5931 - components: - - pos: 11.5,-20.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5932 - components: - - pos: 10.5,-20.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5933 - components: - - pos: 10.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5934 - components: - - pos: 10.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5935 - components: - - pos: 10.5,-17.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5936 - components: - - pos: 10.5,-16.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5937 - components: - - pos: 10.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5938 - components: - - pos: 9.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5939 - components: - - pos: 8.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5940 - components: - - pos: 7.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5941 - components: - - pos: 6.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5942 - components: - - pos: 5.5,-15.5 - parent: 2 - type: Transform - - uid: 5943 - components: - - pos: 4.5,-15.5 - parent: 2 - type: Transform - - uid: 5944 - components: - - pos: 3.5,-15.5 - parent: 2 - type: Transform - - uid: 5945 - components: - - pos: 2.5,-15.5 - parent: 2 - type: Transform - - uid: 5946 - components: - - pos: 1.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5947 - components: - - pos: 1.5,-14.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5948 - components: - - pos: 1.5,-13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5949 - components: - - pos: 1.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5950 - components: - - pos: 1.5,-11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5951 - components: - - pos: 1.5,-10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5952 - components: - - pos: 1.5,-9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5953 - components: - - pos: 2.5,-9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5954 - components: - - pos: 3.5,-9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5955 - components: - - pos: 4.5,-9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5956 - components: - - pos: 5.5,-9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5957 - components: - - pos: 6.5,-9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5958 - components: - - pos: 6.5,-8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5959 - components: - - pos: 10.5,-14.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5960 - components: - - pos: 10.5,-13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5961 - components: - - pos: 11.5,-13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5962 - components: - - pos: 12.5,-13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5963 - components: - - pos: 13.5,-13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5970 - components: - - pos: 16.5,-13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5971 - components: - - pos: 16.5,-14.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5972 - components: - - pos: 12.5,-21.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5973 - components: - - pos: 13.5,-21.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5974 - components: - - pos: 14.5,-21.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5975 - components: - - pos: 15.5,-21.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5976 - components: - - pos: 16.5,-21.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5977 - components: - - pos: 17.5,-21.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5978 - components: - - pos: 18.5,-21.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5979 - components: - - pos: 19.5,-21.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5980 - components: - - pos: 20.5,-21.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5981 - components: - - pos: 21.5,-21.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5982 - components: - - pos: 22.5,-21.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5983 - components: - - pos: 23.5,-21.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5984 - components: - - pos: 24.5,-21.5 - parent: 2 - type: Transform - - uid: 5985 - components: - - pos: 25.5,-21.5 - parent: 2 - type: Transform - - uid: 5986 - components: - - pos: 25.5,-20.5 - parent: 2 - type: Transform - - uid: 5987 - components: - - pos: 27.5,-21.5 - parent: 2 - type: Transform - - uid: 5988 - components: - - pos: 28.5,-21.5 - parent: 2 - type: Transform - - uid: 5989 - components: - - pos: 29.5,-21.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5990 - components: - - pos: 30.5,-21.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5991 - components: - - pos: 30.5,-20.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5992 - components: - - pos: 30.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5993 - components: - - pos: 31.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5994 - components: - - pos: 32.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5995 - components: - - pos: 33.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5996 - components: - - pos: 34.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5997 - components: - - pos: 35.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5998 - components: - - pos: 36.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5999 - components: - - pos: 37.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6000 - components: - - pos: 38.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6001 - components: - - pos: 39.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6002 - components: - - pos: 40.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6003 - components: - - pos: 41.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6004 - components: - - pos: 41.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6016 - components: - - pos: 42.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6017 - components: - - pos: 43.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6018 - components: - - pos: 44.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6019 - components: - - pos: 45.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6020 - components: - - pos: 46.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6021 - components: - - pos: 47.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6022 - components: - - pos: 48.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6023 - components: - - pos: 49.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6024 - components: - - pos: 50.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6028 - components: - - pos: 51.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6029 - components: - - pos: 52.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6030 - components: - - pos: 52.5,-17.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6031 - components: - - pos: 52.5,-16.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6032 - components: - - pos: 52.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6033 - components: - - pos: 52.5,-14.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6034 - components: - - pos: 52.5,-13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6035 - components: - - pos: 52.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6036 - components: - - pos: 52.5,-11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6037 - components: - - pos: 52.5,-10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6038 - components: - - pos: 53.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6039 - components: - - pos: 54.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6040 - components: - - pos: 55.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6041 - components: - - pos: 56.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6042 - components: - - pos: 57.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6044 - components: - - pos: 57.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6045 - components: - - pos: 58.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6046 - components: - - pos: 59.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6048 - components: - - pos: 60.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6049 - components: - - pos: 61.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6050 - components: - - pos: 62.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6051 - components: - - pos: 63.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6052 - components: - - pos: 64.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6053 - components: - - pos: 65.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6054 - components: - - pos: 66.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6055 - components: - - pos: 67.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6056 - components: - - pos: 68.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6057 - components: - - pos: 69.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6058 - components: - - pos: 69.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6059 - components: - - pos: 69.5,-17.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6060 - components: - - pos: 69.5,-16.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6061 - components: - - pos: 70.5,-16.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6062 - components: - - pos: 71.5,-16.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6063 - components: - - pos: 71.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6064 - components: - - pos: 71.5,-14.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6065 - components: - - pos: 71.5,-13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6066 - components: - - pos: 70.5,-13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6067 - components: - - pos: 69.5,-13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6070 - components: - - pos: 72.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6071 - components: - - pos: 73.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6072 - components: - - pos: 74.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6073 - components: - - pos: 75.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6074 - components: - - pos: 76.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6075 - components: - - pos: 77.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6076 - components: - - pos: 78.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6077 - components: - - pos: 79.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6078 - components: - - pos: 80.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6079 - components: - - pos: 81.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6080 - components: - - pos: 82.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6081 - components: - - pos: 83.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6082 - components: - - pos: 84.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6083 - components: - - pos: 85.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6084 - components: - - pos: 86.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6087 - components: - - pos: 86.5,-14.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6088 - components: - - pos: 86.5,-13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6089 - components: - - pos: 86.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6090 - components: - - pos: 86.5,-11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6091 - components: - - pos: 86.5,-10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6092 - components: - - pos: 86.5,-9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6093 - components: - - pos: 86.5,-8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6094 - components: - - pos: 86.5,-7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6096 - components: - - pos: 86.5,-6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6097 - components: - - pos: 86.5,-5.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6098 - components: - - pos: 86.5,-4.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6100 - components: - - pos: 86.5,-3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6101 - components: - - pos: 86.5,-2.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6102 - components: - - pos: 85.5,-2.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6103 - components: - - pos: 84.5,-2.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6104 - components: - - pos: 84.5,-1.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6105 - components: - - pos: 84.5,-0.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6106 - components: - - pos: 84.5,0.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6107 - components: - - pos: 84.5,1.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6108 - components: - - pos: 84.5,2.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6109 - components: - - pos: 84.5,3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6110 - components: - - pos: 84.5,4.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6111 - components: - - pos: 83.5,4.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6112 - components: - - pos: 82.5,4.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6141 - components: - - pos: 81.5,4.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6142 - components: - - pos: 81.5,5.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6143 - components: - - pos: 81.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6144 - components: - - pos: 81.5,7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6145 - components: - - pos: 81.5,8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6146 - components: - - pos: 81.5,9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6147 - components: - - pos: 81.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6148 - components: - - pos: 81.5,11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6149 - components: - - pos: 81.5,12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6150 - components: - - pos: 80.5,12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6151 - components: - - pos: 79.5,12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6152 - components: - - pos: 78.5,12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6153 - components: - - pos: 77.5,12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6154 - components: - - pos: 76.5,12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6155 - components: - - pos: 75.5,12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6156 - components: - - pos: 74.5,12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6157 - components: - - pos: 74.5,11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6159 - components: - - pos: 74.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6160 - components: - - pos: 73.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6161 - components: - - pos: 72.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6162 - components: - - pos: 71.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6163 - components: - - pos: 70.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6164 - components: - - pos: 69.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6165 - components: - - pos: 68.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6166 - components: - - pos: 67.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6167 - components: - - pos: 67.5,9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6168 - components: - - pos: 67.5,8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6169 - components: - - pos: 74.5,13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6170 - components: - - pos: 74.5,14.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6171 - components: - - pos: 74.5,15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6173 - components: - - pos: 74.5,16.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6174 - components: - - pos: 74.5,17.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6175 - components: - - pos: 74.5,18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6176 - components: - - pos: 73.5,18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6177 - components: - - pos: 72.5,18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6178 - components: - - pos: 71.5,18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6179 - components: - - pos: 70.5,18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6181 - components: - - pos: 69.5,18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6182 - components: - - pos: 68.5,18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6183 - components: - - pos: 67.5,18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6184 - components: - - pos: 67.5,19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6185 - components: - - pos: 67.5,20.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6186 - components: - - pos: 67.5,21.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6187 - components: - - pos: 67.5,22.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6188 - components: - - pos: 67.5,23.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6189 - components: - - pos: 67.5,24.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6190 - components: - - pos: 66.5,24.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6191 - components: - - pos: 66.5,25.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6192 - components: - - pos: 66.5,26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6193 - components: - - pos: 66.5,27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6194 - components: - - pos: 66.5,28.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6195 - components: - - pos: 66.5,29.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6200 - components: - - pos: 66.5,30.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6201 - components: - - pos: 66.5,31.5 - parent: 2 - type: Transform - - uid: 6202 - components: - - pos: 66.5,32.5 - parent: 2 - type: Transform - - uid: 6203 - components: - - pos: 66.5,33.5 - parent: 2 - type: Transform - - uid: 6204 - components: - - pos: 66.5,34.5 - parent: 2 - type: Transform - - uid: 6205 - components: - - pos: 66.5,35.5 - parent: 2 - type: Transform - - uid: 6206 - components: - - pos: 66.5,36.5 - parent: 2 - type: Transform - - uid: 6207 - components: - - pos: 66.5,37.5 - parent: 2 - type: Transform - - uid: 6208 - components: - - pos: 66.5,38.5 - parent: 2 - type: Transform - - uid: 6213 - components: - - pos: 66.5,39.5 - parent: 2 - type: Transform - - uid: 6214 - components: - - pos: 66.5,40.5 - parent: 2 - type: Transform - - uid: 6215 - components: - - pos: 66.5,41.5 - parent: 2 - type: Transform - - uid: 6216 - components: - - pos: 66.5,42.5 - parent: 2 - type: Transform - - uid: 6217 - components: - - pos: 67.5,42.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6218 - components: - - pos: 68.5,42.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6219 - components: - - pos: 69.5,42.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6220 - components: - - pos: 69.5,43.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6221 - components: - - pos: 69.5,44.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6222 - components: - - pos: 70.5,44.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6223 - components: - - pos: 71.5,44.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6224 - components: - - pos: 71.5,45.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6225 - components: - - pos: 72.5,45.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6226 - components: - - pos: 73.5,45.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6227 - components: - - pos: 74.5,45.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6228 - components: - - pos: 75.5,45.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6229 - components: - - pos: 77.5,47.5 - parent: 2 - type: Transform - - uid: 6230 - components: - - pos: 77.5,48.5 - parent: 2 - type: Transform - - uid: 6231 - components: - - pos: 77.5,49.5 - parent: 2 - type: Transform - - uid: 6232 - components: - - pos: 79.5,47.5 - parent: 2 - type: Transform - - uid: 6233 - components: - - pos: 79.5,48.5 - parent: 2 - type: Transform - - uid: 6234 - components: - - pos: 79.5,49.5 - parent: 2 - type: Transform - - uid: 6235 - components: - - pos: 77.5,41.5 - parent: 2 - type: Transform - - uid: 6236 - components: - - pos: 77.5,42.5 - parent: 2 - type: Transform - - uid: 6237 - components: - - pos: 77.5,43.5 - parent: 2 - type: Transform - - uid: 6239 - components: - - pos: 79.5,41.5 - parent: 2 - type: Transform - - uid: 6240 - components: - - pos: 79.5,42.5 - parent: 2 - type: Transform - - uid: 6241 - components: - - pos: 79.5,43.5 - parent: 2 - type: Transform - - uid: 6242 - components: - - pos: 78.5,43.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6243 - components: - - pos: 78.5,44.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6244 - components: - - pos: 78.5,46.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6245 - components: - - pos: 78.5,47.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6246 - components: - - pos: 81.5,47.5 - parent: 2 - type: Transform - - uid: 6247 - components: - - pos: 81.5,48.5 - parent: 2 - type: Transform - - uid: 6248 - components: - - pos: 81.5,49.5 - parent: 2 - type: Transform - - uid: 6249 - components: - - pos: 81.5,50.5 - parent: 2 - type: Transform - - uid: 6250 - components: - - pos: 83.5,47.5 - parent: 2 - type: Transform - - uid: 6251 - components: - - pos: 83.5,48.5 - parent: 2 - type: Transform - - uid: 6252 - components: - - pos: 83.5,49.5 - parent: 2 - type: Transform - - uid: 6253 - components: - - pos: 83.5,50.5 - parent: 2 - type: Transform - - uid: 6254 - components: - - pos: 82.5,47.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6255 - components: - - pos: 82.5,46.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6256 - components: - - pos: 81.5,40.5 - parent: 2 - type: Transform - - uid: 6257 - components: - - pos: 81.5,41.5 - parent: 2 - type: Transform - - uid: 6258 - components: - - pos: 81.5,42.5 - parent: 2 - type: Transform - - uid: 6259 - components: - - pos: 81.5,43.5 - parent: 2 - type: Transform - - uid: 6260 - components: - - pos: 83.5,40.5 - parent: 2 - type: Transform - - uid: 6261 - components: - - pos: 83.5,41.5 - parent: 2 - type: Transform - - uid: 6262 - components: - - pos: 83.5,42.5 - parent: 2 - type: Transform - - uid: 6263 - components: - - pos: 83.5,43.5 - parent: 2 - type: Transform - - uid: 6264 - components: - - pos: 82.5,43.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6265 - components: - - pos: 82.5,44.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6266 - components: - - pos: 85.5,47.5 - parent: 2 - type: Transform - - uid: 6267 - components: - - pos: 85.5,48.5 - parent: 2 - type: Transform - - uid: 6268 - components: - - pos: 85.5,49.5 - parent: 2 - type: Transform - - uid: 6269 - components: - - pos: 86.5,47.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6270 - components: - - pos: 86.5,46.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6271 - components: - - pos: 87.5,47.5 - parent: 2 - type: Transform - - uid: 6272 - components: - - pos: 87.5,48.5 - parent: 2 - type: Transform - - uid: 6273 - components: - - pos: 87.5,49.5 - parent: 2 - type: Transform - - uid: 6274 - components: - - pos: 85.5,41.5 - parent: 2 - type: Transform - - uid: 6275 - components: - - pos: 85.5,42.5 - parent: 2 - type: Transform - - uid: 6276 - components: - - pos: 85.5,43.5 - parent: 2 - type: Transform - - uid: 6277 - components: - - pos: 87.5,41.5 - parent: 2 - type: Transform - - uid: 6278 - components: - - pos: 87.5,42.5 - parent: 2 - type: Transform - - uid: 6279 - components: - - pos: 87.5,43.5 - parent: 2 - type: Transform - - uid: 6280 - components: - - pos: 86.5,43.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6281 - components: - - pos: 86.5,44.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6282 - components: - - pos: 89.5,45.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6283 - components: - - pos: 88.5,45.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6285 - components: - - pos: 67.5,43.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6286 - components: - - pos: 67.5,44.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6287 - components: - - pos: 67.5,45.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6288 - components: - - pos: 67.5,46.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6289 - components: - - pos: 66.5,46.5 - parent: 2 - type: Transform - - uid: 6290 - components: - - pos: 65.5,46.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6291 - components: - - pos: 64.5,46.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6292 - components: - - pos: 63.5,46.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6293 - components: - - pos: 63.5,47.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6294 - components: - - pos: 62.5,48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6295 - components: - - pos: 61.5,48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6296 - components: - - pos: 60.5,48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6297 - components: - - pos: 59.5,48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6298 - components: - - pos: 58.5,48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6299 - components: - - pos: 57.5,48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6300 - components: - - pos: 56.5,48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6301 - components: - - pos: 55.5,48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6302 - components: - - pos: 54.5,48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6303 - components: - - pos: 53.5,48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6304 - components: - - pos: 52.5,48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6305 - components: - - pos: 51.5,48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6306 - components: - - pos: 50.5,48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6307 - components: - - pos: 49.5,48.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6310 - components: - - pos: 49.5,47.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6311 - components: - - pos: 48.5,47.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6312 - components: - - pos: 47.5,47.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6313 - components: - - pos: 46.5,47.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6314 - components: - - pos: 46.5,46.5 - parent: 2 - type: Transform - - uid: 6315 - components: - - pos: 45.5,46.5 - parent: 2 - type: Transform - - uid: 6317 - components: - - pos: 47.5,26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6318 - components: - - pos: 44.5,46.5 - parent: 2 - type: Transform - - uid: 6319 - components: - - pos: 44.5,45.5 - parent: 2 - type: Transform - - uid: 6320 - components: - - pos: 44.5,44.5 - parent: 2 - type: Transform - - uid: 6321 - components: - - pos: 44.5,43.5 - parent: 2 - type: Transform - - uid: 6322 - components: - - pos: 44.5,42.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6323 - components: - - pos: 44.5,41.5 - parent: 2 - type: Transform - - uid: 6324 - components: - - pos: 44.5,40.5 - parent: 2 - type: Transform - - uid: 6325 - components: - - pos: 44.5,39.5 - parent: 2 - type: Transform - - uid: 6326 - components: - - pos: 45.5,39.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6327 - components: - - pos: 45.5,38.5 - parent: 2 - type: Transform - - uid: 6328 - components: - - pos: 45.5,37.5 - parent: 2 - type: Transform - - uid: 6329 - components: - - pos: 45.5,36.5 - parent: 2 - type: Transform - - uid: 6330 - components: - - pos: 45.5,35.5 - parent: 2 - type: Transform - - uid: 6331 - components: - - pos: 45.5,34.5 - parent: 2 - type: Transform - - uid: 6332 - components: - - pos: 45.5,33.5 - parent: 2 - type: Transform - - uid: 6333 - components: - - pos: 45.5,32.5 - parent: 2 - type: Transform - - uid: 6334 - components: - - pos: 45.5,31.5 - parent: 2 - type: Transform - - uid: 6335 - components: - - pos: 45.5,30.5 - parent: 2 - type: Transform - - uid: 6336 - components: - - pos: 45.5,29.5 - parent: 2 - type: Transform - - uid: 6337 - components: - - pos: 45.5,28.5 - parent: 2 - type: Transform - - uid: 6338 - components: - - pos: 44.5,28.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6339 - components: - - pos: 43.5,28.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6340 - components: - - pos: 46.5,28.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6341 - components: - - pos: 46.5,27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6343 - components: - - pos: 47.5,27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6344 - components: - - pos: 48.5,27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6345 - components: - - pos: 49.5,27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6346 - components: - - pos: 50.5,27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6347 - components: - - pos: 47.5,25.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6348 - components: - - pos: 47.5,24.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6349 - components: - - pos: 47.5,23.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6350 - components: - - pos: 47.5,22.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6351 - components: - - pos: 47.5,21.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6352 - components: - - pos: 47.5,20.5 - parent: 2 - type: Transform - - uid: 6353 - components: - - pos: 47.5,19.5 - parent: 2 - type: Transform - - uid: 6354 - components: - - pos: 47.5,18.5 - parent: 2 - type: Transform - - uid: 6355 - components: - - pos: 47.5,17.5 - parent: 2 - type: Transform - - uid: 6356 - components: - - pos: 47.5,16.5 - parent: 2 - type: Transform - - uid: 6357 - components: - - pos: 47.5,15.5 - parent: 2 - type: Transform - - uid: 6359 - components: - - pos: 47.5,14.5 - parent: 2 - type: Transform - - uid: 6360 - components: - - pos: 46.5,14.5 - parent: 2 - type: Transform - - uid: 6361 - components: - - pos: 45.5,14.5 - parent: 2 - type: Transform - - uid: 6362 - components: - - pos: 44.5,14.5 - parent: 2 - type: Transform - - uid: 6363 - components: - - pos: 43.5,14.5 - parent: 2 - type: Transform - - uid: 6364 - components: - - pos: 42.5,14.5 - parent: 2 - type: Transform - - uid: 6365 - components: - - pos: 41.5,14.5 - parent: 2 - type: Transform - - uid: 6366 - components: - - pos: 41.5,13.5 - parent: 2 - type: Transform - - uid: 6367 - components: - - pos: 41.5,12.5 - parent: 2 - type: Transform - - uid: 6368 - components: - - pos: 41.5,11.5 - parent: 2 - type: Transform - - uid: 6369 - components: - - pos: 41.5,10.5 - parent: 2 - type: Transform - - uid: 6370 - components: - - pos: 41.5,9.5 - parent: 2 - type: Transform - - uid: 6371 - components: - - pos: 41.5,8.5 - parent: 2 - type: Transform - - uid: 6372 - components: - - pos: 41.5,7.5 - parent: 2 - type: Transform - - uid: 6373 - components: - - pos: 42.5,7.5 - parent: 2 - type: Transform - - uid: 6374 - components: - - pos: 43.5,7.5 - parent: 2 - type: Transform - - uid: 6375 - components: - - pos: 44.5,7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6376 - components: - - pos: 44.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6377 - components: - - pos: 45.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6378 - components: - - pos: 46.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6380 - components: - - pos: 47.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6381 - components: - - pos: 48.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6382 - components: - - pos: 49.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6383 - components: - - pos: 50.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6384 - components: - - pos: 51.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6385 - components: - - pos: 52.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6386 - components: - - pos: 53.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6387 - components: - - pos: 54.5,6.5 - parent: 2 - type: Transform - - uid: 6388 - components: - - pos: 55.5,6.5 - parent: 2 - type: Transform - - uid: 6389 - components: - - pos: 56.5,6.5 - parent: 2 - type: Transform - - uid: 6390 - components: - - pos: 57.5,6.5 - parent: 2 - type: Transform - - uid: 6391 - components: - - pos: 58.5,6.5 - parent: 2 - type: Transform - - uid: 6392 - components: - - pos: 59.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6393 - components: - - pos: 60.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6394 - components: - - pos: 61.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6395 - components: - - pos: 62.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6396 - components: - - pos: 63.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6397 - components: - - pos: 64.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6398 - components: - - pos: 65.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6399 - components: - - pos: 65.5,7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6400 - components: - - pos: 65.5,8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6401 - components: - - pos: 66.5,8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6402 - components: - - pos: 40.5,11.5 - parent: 2 - type: Transform - - uid: 6403 - components: - - pos: 39.5,11.5 - parent: 2 - type: Transform - - uid: 6404 - components: - - pos: 38.5,11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6405 - components: - - pos: 37.5,11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6406 - components: - - pos: 36.5,11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6407 - components: - - pos: 35.5,11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6408 - components: - - pos: 34.5,11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6409 - components: - - pos: 33.5,11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6410 - components: - - pos: 32.5,11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6411 - components: - - pos: 31.5,11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6412 - components: - - pos: 30.5,11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6413 - components: - - pos: 29.5,11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6414 - components: - - pos: 29.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6415 - components: - - pos: 28.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6416 - components: - - pos: 27.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6417 - components: - - pos: 26.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6418 - components: - - pos: 25.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6419 - components: - - pos: 24.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6420 - components: - - pos: 23.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6429 - components: - - pos: 22.5,3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6430 - components: - - pos: 21.5,3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6431 - components: - - pos: 20.5,3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6432 - components: - - pos: 19.5,3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6433 - components: - - pos: 18.5,3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6434 - components: - - pos: 17.5,3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6435 - components: - - pos: 16.5,3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6436 - components: - - pos: 15.5,3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6437 - components: - - pos: 15.5,4.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6438 - components: - - pos: 15.5,5.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6439 - components: - - pos: 15.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6440 - components: - - pos: 15.5,7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6441 - components: - - pos: 14.5,7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6443 - components: - - pos: 26.5,-20.5 - parent: 2 - type: Transform - - uid: 6444 - components: - - pos: 26.5,-19.5 - parent: 2 - type: Transform - - uid: 6445 - components: - - pos: 26.5,-18.5 - parent: 2 - type: Transform - - uid: 6446 - components: - - pos: 26.5,-17.5 - parent: 2 - type: Transform - - uid: 6447 - components: - - pos: 27.5,-20.5 - parent: 2 - type: Transform - - uid: 6448 - components: - - pos: 25.5,-17.5 - parent: 2 - type: Transform - - uid: 6449 - components: - - pos: 24.5,-17.5 - parent: 2 - type: Transform - - uid: 6450 - components: - - pos: 23.5,-17.5 - parent: 2 - type: Transform - - uid: 6451 - components: - - pos: 23.5,-16.5 - parent: 2 - type: Transform - - uid: 6452 - components: - - pos: 23.5,-15.5 - parent: 2 - type: Transform - - uid: 6453 - components: - - pos: 23.5,-14.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6454 - components: - - pos: 22.5,-14.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6767 - components: - - pos: 15.5,-42.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6897 - components: - - pos: 16.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7148 - components: - - pos: 14.5,5.5 - parent: 2 - type: Transform - - uid: 7149 - components: - - pos: 13.5,5.5 - parent: 2 - type: Transform - - uid: 7150 - components: - - pos: 12.5,5.5 - parent: 2 - type: Transform - - uid: 7151 - components: - - pos: 11.5,5.5 - parent: 2 - type: Transform - - uid: 7152 - components: - - pos: 11.5,6.5 - parent: 2 - type: Transform - - uid: 7153 - components: - - pos: 11.5,7.5 - parent: 2 - type: Transform - - uid: 7154 - components: - - pos: 11.5,8.5 - parent: 2 - type: Transform - - uid: 7155 - components: - - pos: 11.5,9.5 - parent: 2 - type: Transform - - uid: 7156 - components: - - pos: 11.5,10.5 - parent: 2 - type: Transform - - uid: 7157 - components: - - pos: 11.5,11.5 - parent: 2 - type: Transform - - uid: 7158 - components: - - pos: 11.5,12.5 - parent: 2 - type: Transform - - uid: 7159 - components: - - pos: 11.5,13.5 - parent: 2 - type: Transform - - uid: 7160 - components: - - pos: 12.5,13.5 - parent: 2 - type: Transform - - uid: 7161 - components: - - pos: 12.5,14.5 - parent: 2 - type: Transform - - uid: 7162 - components: - - pos: 12.5,15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7163 - components: - - pos: 11.5,15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7164 - components: - - pos: 11.5,16.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7165 - components: - - pos: 11.5,17.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7166 - components: - - pos: 11.5,18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7167 - components: - - pos: 13.5,33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7168 - components: - - pos: 15.5,33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7169 - components: - - pos: 15.5,32.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7170 - components: - - pos: 15.5,31.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7171 - components: - - pos: 15.5,30.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7172 - components: - - pos: 15.5,29.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7173 - components: - - pos: 15.5,28.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7174 - components: - - pos: 15.5,27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7175 - components: - - pos: 16.5,27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7176 - components: - - pos: 17.5,27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7177 - components: - - pos: 18.5,27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7178 - components: - - pos: 19.5,27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7179 - components: - - pos: 20.5,27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7180 - components: - - pos: 21.5,27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7181 - components: - - pos: 22.5,27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7182 - components: - - pos: 23.5,27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7183 - components: - - pos: 24.5,27.5 - parent: 2 - type: Transform - - uid: 7184 - components: - - pos: 25.5,27.5 - parent: 2 - type: Transform - - uid: 7185 - components: - - pos: 26.5,27.5 - parent: 2 - type: Transform - - uid: 7186 - components: - - pos: 26.5,26.5 - parent: 2 - type: Transform - - uid: 7187 - components: - - pos: 26.5,25.5 - parent: 2 - type: Transform - - uid: 7188 - components: - - pos: 26.5,24.5 - parent: 2 - type: Transform - - uid: 7189 - components: - - pos: 26.5,23.5 - parent: 2 - type: Transform - - uid: 7190 - components: - - pos: 26.5,22.5 - parent: 2 - type: Transform - - uid: 7191 - components: - - pos: 26.5,21.5 - parent: 2 - type: Transform - - uid: 7192 - components: - - pos: 26.5,20.5 - parent: 2 - type: Transform - - uid: 7193 - components: - - pos: 26.5,19.5 - parent: 2 - type: Transform - - uid: 7194 - components: - - pos: 26.5,18.5 - parent: 2 - type: Transform - - uid: 7195 - components: - - pos: 26.5,17.5 - parent: 2 - type: Transform - - uid: 7196 - components: - - pos: 26.5,16.5 - parent: 2 - type: Transform - - uid: 7197 - components: - - pos: 26.5,15.5 - parent: 2 - type: Transform - - uid: 7198 - components: - - pos: 26.5,14.5 - parent: 2 - type: Transform - - uid: 7199 - components: - - pos: 26.5,13.5 - parent: 2 - type: Transform - - uid: 7200 - components: - - pos: 26.5,12.5 - parent: 2 - type: Transform - - uid: 7201 - components: - - pos: 26.5,11.5 - parent: 2 - type: Transform - - uid: 7202 - components: - - pos: 12.5,18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7203 - components: - - pos: 13.5,18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7204 - components: - - pos: 14.5,18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7205 - components: - - pos: 14.5,19.5 - parent: 2 - type: Transform - - uid: 7206 - components: - - pos: 14.5,20.5 - parent: 2 - type: Transform - - uid: 7207 - components: - - pos: 14.5,21.5 - parent: 2 - type: Transform - - uid: 7208 - components: - - pos: 14.5,22.5 - parent: 2 - type: Transform - - uid: 7209 - components: - - pos: 14.5,23.5 - parent: 2 - type: Transform - - uid: 7210 - components: - - pos: 14.5,24.5 - parent: 2 - type: Transform - - uid: 7211 - components: - - pos: 13.5,24.5 - parent: 2 - type: Transform - - uid: 7212 - components: - - pos: 13.5,25.5 - parent: 2 - type: Transform - - uid: 7213 - components: - - pos: 13.5,26.5 - parent: 2 - type: Transform - - uid: 7214 - components: - - pos: 13.5,27.5 - parent: 2 - type: Transform - - uid: 7215 - components: - - pos: 13.5,28.5 - parent: 2 - type: Transform - - uid: 7216 - components: - - pos: 14.5,28.5 - parent: 2 - type: Transform - - uid: 8304 - components: - - pos: 43.5,27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8818 - components: - - pos: 118.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8822 - components: - - pos: 119.5,-17.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9060 - components: - - pos: 120.5,-17.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9370 - components: - - pos: 19.5,45.5 - parent: 2 - type: Transform - - uid: 9371 - components: - - pos: 20.5,45.5 - parent: 2 - type: Transform - - uid: 9372 - components: - - pos: 21.5,45.5 - parent: 2 - type: Transform - - uid: 9373 - components: - - pos: 22.5,45.5 - parent: 2 - type: Transform - - uid: 9374 - components: - - pos: 23.5,45.5 - parent: 2 - type: Transform - - uid: 9375 - components: - - pos: 24.5,45.5 - parent: 2 - type: Transform - - uid: 9376 - components: - - pos: 25.5,45.5 - parent: 2 - type: Transform - - uid: 9377 - components: - - pos: 26.5,45.5 - parent: 2 - type: Transform - - uid: 9378 - components: - - pos: 27.5,45.5 - parent: 2 - type: Transform - - uid: 9379 - components: - - pos: 27.5,44.5 - parent: 2 - type: Transform - - uid: 9380 - components: - - pos: 27.5,43.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9381 - components: - - pos: 27.5,42.5 - parent: 2 - type: Transform - - uid: 9382 - components: - - pos: 27.5,41.5 - parent: 2 - type: Transform - - uid: 9383 - components: - - pos: 27.5,40.5 - parent: 2 - type: Transform - - uid: 9384 - components: - - pos: 27.5,39.5 - parent: 2 - type: Transform - - uid: 9385 - components: - - pos: 27.5,38.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9386 - components: - - pos: 27.5,37.5 - parent: 2 - type: Transform - - uid: 9387 - components: - - pos: 27.5,36.5 - parent: 2 - type: Transform - - uid: 9388 - components: - - pos: 27.5,35.5 - parent: 2 - type: Transform - - uid: 9389 - components: - - pos: 27.5,34.5 - parent: 2 - type: Transform - - uid: 9390 - components: - - pos: 27.5,33.5 - parent: 2 - type: Transform - - uid: 9391 - components: - - pos: 27.5,32.5 - parent: 2 - type: Transform - - uid: 9392 - components: - - pos: 27.5,31.5 - parent: 2 - type: Transform - - uid: 9393 - components: - - pos: 27.5,30.5 - parent: 2 - type: Transform - - uid: 9394 - components: - - pos: 27.5,29.5 - parent: 2 - type: Transform - - uid: 9395 - components: - - pos: 27.5,28.5 - parent: 2 - type: Transform - - uid: 9396 - components: - - pos: 27.5,27.5 - parent: 2 - type: Transform - - uid: 9439 - components: - - pos: 40.5,41.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9440 - components: - - pos: 39.5,41.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9441 - components: - - pos: 39.5,40.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9442 - components: - - pos: 39.5,39.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9443 - components: - - pos: 39.5,38.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9444 - components: - - pos: 38.5,38.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9445 - components: - - pos: 37.5,38.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9446 - components: - - pos: 36.5,38.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9447 - components: - - pos: 35.5,38.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9448 - components: - - pos: 35.5,37.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9449 - components: - - pos: 34.5,37.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9450 - components: - - pos: 34.5,36.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9451 - components: - - pos: 34.5,35.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9452 - components: - - pos: 34.5,34.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9453 - components: - - pos: 34.5,33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9454 - components: - - pos: 34.5,32.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9455 - components: - - pos: 33.5,32.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9456 - components: - - pos: 32.5,32.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9457 - components: - - pos: 31.5,32.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9458 - components: - - pos: 30.5,32.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9459 - components: - - pos: 29.5,32.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9460 - components: - - pos: 28.5,32.5 - parent: 2 - type: Transform - - uid: 9461 - components: - - pos: 14.5,36.5 - parent: 2 - type: Transform - - uid: 9462 - components: - - pos: 15.5,36.5 - parent: 2 - type: Transform - - uid: 9463 - components: - - pos: 16.5,36.5 - parent: 2 - type: Transform - - uid: 9464 - components: - - pos: 17.5,36.5 - parent: 2 - type: Transform - - uid: 9465 - components: - - pos: 18.5,36.5 - parent: 2 - type: Transform - - uid: 9466 - components: - - pos: 19.5,36.5 - parent: 2 - type: Transform - - uid: 9467 - components: - - pos: 20.5,36.5 - parent: 2 - type: Transform - - uid: 9468 - components: - - pos: 21.5,36.5 - parent: 2 - type: Transform - - uid: 9469 - components: - - pos: 22.5,36.5 - parent: 2 - type: Transform - - uid: 9470 - components: - - pos: 23.5,36.5 - parent: 2 - type: Transform - - uid: 9471 - components: - - pos: 24.5,36.5 - parent: 2 - type: Transform - - uid: 9472 - components: - - pos: 25.5,36.5 - parent: 2 - type: Transform - - uid: 9473 - components: - - pos: 26.5,36.5 - parent: 2 - type: Transform - - uid: 9479 - components: - - pos: 18.5,2.5 - parent: 2 - type: Transform - - uid: 9480 - components: - - pos: 18.5,1.5 - parent: 2 - type: Transform - - uid: 9481 - components: - - pos: 18.5,0.5 - parent: 2 - type: Transform - - uid: 9482 - components: - - pos: 18.5,-0.5 - parent: 2 - type: Transform - - uid: 9483 - components: - - pos: 19.5,-0.5 - parent: 2 - type: Transform - - uid: 9484 - components: - - pos: 20.5,-0.5 - parent: 2 - type: Transform - - uid: 9485 - components: - - pos: 21.5,-0.5 - parent: 2 - type: Transform - - uid: 9486 - components: - - pos: 22.5,-0.5 - parent: 2 - type: Transform - - uid: 9487 - components: - - pos: 22.5,-1.5 - parent: 2 - type: Transform - - uid: 9488 - components: - - pos: 22.5,-2.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9489 - components: - - pos: 22.5,-3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9490 - components: - - pos: 22.5,-4.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9491 - components: - - pos: 22.5,-5.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9492 - components: - - pos: 22.5,-6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9493 - components: - - pos: 22.5,-7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9494 - components: - - pos: 21.5,-7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9495 - components: - - pos: 20.5,-7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9496 - components: - - pos: 19.5,-7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9497 - components: - - pos: 18.5,-7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9498 - components: - - pos: 17.5,-7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9499 - components: - - pos: 17.5,-11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9500 - components: - - pos: 17.5,-10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9501 - components: - - pos: 17.5,-9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9502 - components: - - pos: 17.5,-8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9503 - components: - - pos: 75.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9504 - components: - - pos: 75.5,9.5 - parent: 2 - type: Transform - - uid: 9505 - components: - - pos: 75.5,8.5 - parent: 2 - type: Transform - - uid: 9506 - components: - - pos: 74.5,8.5 - parent: 2 - type: Transform - - uid: 9507 - components: - - pos: 73.5,8.5 - parent: 2 - type: Transform - - uid: 9508 - components: - - pos: 72.5,8.5 - parent: 2 - type: Transform - - uid: 9509 - components: - - pos: 71.5,8.5 - parent: 2 - type: Transform - - uid: 9510 - components: - - pos: 71.5,7.5 - parent: 2 - type: Transform - - uid: 9511 - components: - - pos: 71.5,6.5 - parent: 2 - type: Transform - - uid: 9512 - components: - - pos: 71.5,5.5 - parent: 2 - type: Transform - - uid: 9513 - components: - - pos: 71.5,4.5 - parent: 2 - type: Transform - - uid: 9514 - components: - - pos: 71.5,3.5 - parent: 2 - type: Transform - - uid: 9515 - components: - - pos: 71.5,2.5 - parent: 2 - type: Transform - - uid: 9516 - components: - - pos: 71.5,1.5 - parent: 2 - type: Transform - - uid: 9517 - components: - - pos: 72.5,1.5 - parent: 2 - type: Transform - - uid: 9518 - components: - - pos: 72.5,0.5 - parent: 2 - type: Transform - - uid: 9519 - components: - - pos: 72.5,-0.5 - parent: 2 - type: Transform - - uid: 9520 - components: - - pos: 72.5,-1.5 - parent: 2 - type: Transform - - uid: 9521 - components: - - pos: 72.5,-2.5 - parent: 2 - type: Transform - - uid: 9522 - components: - - pos: 72.5,-3.5 - parent: 2 - type: Transform - - uid: 9523 - components: - - pos: 71.5,-3.5 - parent: 2 - type: Transform - - uid: 9524 - components: - - pos: 71.5,-4.5 - parent: 2 - type: Transform - - uid: 9525 - components: - - pos: 71.5,-5.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9526 - components: - - pos: 71.5,-6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9527 - components: - - pos: 71.5,-7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9528 - components: - - pos: 71.5,-8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9529 - components: - - pos: 71.5,-9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9530 - components: - - pos: 71.5,-10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9531 - components: - - pos: 71.5,-11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9532 - components: - - pos: 71.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9583 - components: - - pos: 14.5,35.5 - parent: 2 - type: Transform - - uid: 9821 - components: - - pos: 35.5,-14.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9822 - components: - - pos: 35.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9823 - components: - - pos: 35.5,-16.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9824 - components: - - pos: 34.5,-16.5 - parent: 2 - type: Transform - - uid: 9825 - components: - - pos: 33.5,-16.5 - parent: 2 - type: Transform - - uid: 9826 - components: - - pos: 32.5,-16.5 - parent: 2 - type: Transform - - uid: 9827 - components: - - pos: 32.5,-17.5 - parent: 2 - type: Transform - - uid: 9828 - components: - - pos: 32.5,-18.5 - parent: 2 - type: Transform - - uid: 10228 - components: - - pos: 38.5,13.5 - parent: 2 - type: Transform - - uid: 10229 - components: - - pos: 39.5,13.5 - parent: 2 - type: Transform - - uid: 10230 - components: - - pos: 40.5,13.5 - parent: 2 - type: Transform - - uid: 10231 - components: - - pos: 37.5,13.5 - parent: 2 - type: Transform - - uid: 10232 - components: - - pos: 36.5,13.5 - parent: 2 - type: Transform - - uid: 10233 - components: - - pos: 35.5,13.5 - parent: 2 - type: Transform - - uid: 10234 - components: - - pos: 34.5,13.5 - parent: 2 - type: Transform - - uid: 10235 - components: - - pos: 33.5,13.5 - parent: 2 - type: Transform - - uid: 10236 - components: - - pos: 32.5,13.5 - parent: 2 - type: Transform - - uid: 10237 - components: - - pos: 31.5,13.5 - parent: 2 - type: Transform - - uid: 10238 - components: - - pos: 30.5,13.5 - parent: 2 - type: Transform - - uid: 10239 - components: - - pos: 29.5,13.5 - parent: 2 - type: Transform - - uid: 10240 - components: - - pos: 28.5,13.5 - parent: 2 - type: Transform - - uid: 10241 - components: - - pos: 27.5,13.5 - parent: 2 - type: Transform - - uid: 12596 - components: - - pos: 111.5,-13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12597 - components: - - pos: 111.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12598 - components: - - pos: 111.5,-11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12599 - components: - - pos: 111.5,-10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12600 - components: - - pos: 113.5,-13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12601 - components: - - pos: 113.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12602 - components: - - pos: 113.5,-11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12603 - components: - - pos: 113.5,-10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12604 - components: - - pos: 115.5,-13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12605 - components: - - pos: 115.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12606 - components: - - pos: 115.5,-11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12608 - components: - - pos: 115.5,-10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12609 - components: - - pos: 120.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12610 - components: - - pos: 112.5,-13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12611 - components: - - pos: 114.5,-13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12612 - components: - - pos: 119.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12613 - components: - - pos: 118.5,-17.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12614 - components: - - pos: 117.5,-17.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12615 - components: - - pos: 120.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12616 - components: - - pos: 119.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12617 - components: - - pos: 118.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12618 - components: - - pos: 117.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12619 - components: - - pos: 115.5,-24.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12620 - components: - - pos: 115.5,-23.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12621 - components: - - pos: 115.5,-22.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12622 - components: - - pos: 115.5,-21.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12623 - components: - - pos: 113.5,-24.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12624 - components: - - pos: 113.5,-23.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12625 - components: - - pos: 113.5,-22.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12626 - components: - - pos: 113.5,-21.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12627 - components: - - pos: 111.5,-24.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12628 - components: - - pos: 111.5,-23.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12629 - components: - - pos: 111.5,-22.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12630 - components: - - pos: 111.5,-21.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12631 - components: - - pos: 114.5,-21.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12632 - components: - - pos: 115.5,-20.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12633 - components: - - pos: 116.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12634 - components: - - pos: 115.5,-19.5 - parent: 2 - type: Transform - - uid: 12635 - components: - - pos: 115.5,-14.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12636 - components: - - pos: 115.5,-15.5 - parent: 2 - type: Transform - - uid: 12637 - components: - - pos: 115.5,-16.5 - parent: 2 - type: Transform - - uid: 12638 - components: - - pos: 115.5,-17.5 - parent: 2 - type: Transform - - uid: 12639 - components: - - pos: 115.5,-18.5 - parent: 2 - type: Transform - - uid: 12640 - components: - - pos: 114.5,-19.5 - parent: 2 - type: Transform - - uid: 12641 - components: - - pos: 113.5,-19.5 - parent: 2 - type: Transform - - uid: 12642 - components: - - pos: 112.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12643 - components: - - pos: 112.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12644 - components: - - pos: 112.5,-17.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12645 - components: - - pos: 112.5,-16.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12646 - components: - - pos: 112.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12807 - components: - - pos: 25.5,-27.5 - parent: 2 - type: Transform - - uid: 12808 - components: - - pos: 25.5,-26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12809 - components: - - pos: 25.5,-25.5 - parent: 2 - type: Transform - - uid: 12810 - components: - - pos: 25.5,-24.5 - parent: 2 - type: Transform - - uid: 12811 - components: - - pos: 25.5,-23.5 - parent: 2 - type: Transform - - uid: 12812 - components: - - pos: 25.5,-22.5 - parent: 2 - type: Transform - - uid: 12813 - components: - - pos: 13.5,-25.5 - parent: 2 - type: Transform - - uid: 12814 - components: - - pos: 13.5,-24.5 - parent: 2 - type: Transform - - uid: 12815 - components: - - pos: 13.5,-23.5 - parent: 2 - type: Transform - - uid: 12816 - components: - - pos: 13.5,-22.5 - parent: 2 - type: Transform - - uid: 13046 - components: - - pos: 32.5,-38.5 - parent: 2 - type: Transform - - uid: 13047 - components: - - pos: 32.5,-39.5 - parent: 2 - type: Transform - - uid: 13048 - components: - - pos: 33.5,-39.5 - parent: 2 - type: Transform - - uid: 13049 - components: - - pos: 34.5,-39.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13050 - components: - - pos: 35.5,-39.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13051 - components: - - pos: 35.5,-40.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13052 - components: - - pos: 35.5,-41.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13053 - components: - - pos: 35.5,-42.5 - parent: 2 - type: Transform - - uid: 13054 - components: - - pos: 35.5,-43.5 - parent: 2 - type: Transform - - uid: 13055 - components: - - pos: 35.5,-44.5 - parent: 2 - type: Transform - - uid: 13056 - components: - - pos: 35.5,-45.5 - parent: 2 - type: Transform - - uid: 13057 - components: - - pos: 35.5,-46.5 - parent: 2 - type: Transform - - uid: 13058 - components: - - pos: 36.5,-46.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13059 - components: - - pos: 37.5,-46.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13060 - components: - - pos: 38.5,-46.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13061 - components: - - pos: 39.5,-46.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13062 - components: - - pos: 40.5,-46.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound -- proto: CableHVStack - entities: - - uid: 5629 - components: - - pos: 18.055033,-23.484873 - parent: 2 - type: Transform - - uid: 5638 - components: - - rot: -0.0038357104640454054 rad - pos: 70.31901,45.73474 - parent: 2 - type: Transform - - uid: 5651 - components: - - pos: 70.69434,45.41789 - parent: 2 - type: Transform - - uid: 6308 - components: - - pos: 90.56876,-9.725386 - parent: 2 - type: Transform -- proto: CableMV - entities: - - uid: 57 - components: - - pos: 9.5,-26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 58 - components: - - pos: 8.5,-26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 769 - components: - - pos: 4.5,-30.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1028 - components: - - pos: 4.5,-34.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1029 - components: - - pos: 5.5,-35.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1030 - components: - - pos: 4.5,-33.5 - parent: 2 - type: Transform - - uid: 1031 - components: - - pos: 4.5,-32.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1032 - components: - - pos: 4.5,-31.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1555 - components: - - pos: 41.5,-0.5 - parent: 2 - type: Transform - - uid: 2688 - components: - - pos: 22.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2954 - components: - - pos: 22.5,9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3013 - components: - - pos: 22.5,4.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3014 - components: - - pos: 22.5,5.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3403 - components: - - pos: 22.5,8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3486 - components: - - pos: 51.5,21.5 - parent: 2 - type: Transform - - uid: 3487 - components: - - pos: 50.5,21.5 - parent: 2 - type: Transform - - uid: 3682 - components: - - pos: 48.5,21.5 - parent: 2 - type: Transform - - uid: 3683 - components: - - pos: 49.5,21.5 - parent: 2 - type: Transform - - uid: 4182 - components: - - pos: 22.5,7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4308 - components: - - pos: 17.5,-37.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4312 - components: - - pos: 17.5,-36.5 - parent: 2 - type: Transform - - uid: 4605 - components: - - pos: 10.5,-25.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4606 - components: - - pos: 10.5,-26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4607 - components: - - pos: 11.5,-26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4608 - components: - - pos: 12.5,-26.5 - parent: 2 - type: Transform - - uid: 4609 - components: - - pos: 13.5,-26.5 - parent: 2 - type: Transform - - uid: 4610 - components: - - pos: 14.5,-26.5 - parent: 2 - type: Transform - - uid: 4611 - components: - - pos: 15.5,-26.5 - parent: 2 - type: Transform - - uid: 4612 - components: - - pos: 16.5,-26.5 - parent: 2 - type: Transform - - uid: 4614 - components: - - pos: 17.5,-26.5 - parent: 2 - type: Transform - - uid: 4615 - components: - - pos: 18.5,-26.5 - parent: 2 - type: Transform - - uid: 4616 - components: - - pos: 19.5,-26.5 - parent: 2 - type: Transform - - uid: 4618 - components: - - pos: 20.5,-26.5 - parent: 2 - type: Transform - - uid: 4619 - components: - - pos: 21.5,-26.5 - parent: 2 - type: Transform - - uid: 4620 - components: - - pos: 22.5,-26.5 - parent: 2 - type: Transform - - uid: 4621 - components: - - pos: 22.5,-25.5 - parent: 2 - type: Transform - - uid: 4622 - components: - - pos: 22.5,-24.5 - parent: 2 - type: Transform - - uid: 4623 - components: - - pos: 22.5,-23.5 - parent: 2 - type: Transform - - uid: 4624 - components: - - pos: 22.5,-22.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4625 - components: - - pos: 21.5,-27.5 - parent: 2 - type: Transform - - uid: 4626 - components: - - pos: 21.5,-28.5 - parent: 2 - type: Transform - - uid: 4627 - components: - - pos: 21.5,-29.5 - parent: 2 - type: Transform - - uid: 4628 - components: - - pos: 21.5,-30.5 - parent: 2 - type: Transform - - uid: 4629 - components: - - pos: 21.5,-31.5 - parent: 2 - type: Transform - - uid: 4630 - components: - - pos: 21.5,-32.5 - parent: 2 - type: Transform - - uid: 4631 - components: - - pos: 21.5,-33.5 - parent: 2 - type: Transform - - uid: 4632 - components: - - pos: 21.5,-34.5 - parent: 2 - type: Transform - - uid: 4633 - components: - - pos: 21.5,-35.5 - parent: 2 - type: Transform - - uid: 4634 - components: - - pos: 21.5,-36.5 - parent: 2 - type: Transform - - uid: 4635 - components: - - pos: 21.5,-37.5 - parent: 2 - type: Transform - - uid: 4636 - components: - - pos: 21.5,-38.5 - parent: 2 - type: Transform - - uid: 4637 - components: - - pos: 21.5,-39.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4638 - components: - - pos: 22.5,-39.5 - parent: 2 - type: Transform - - uid: 4639 - components: - - pos: 23.5,-39.5 - parent: 2 - type: Transform - - uid: 4640 - components: - - pos: 24.5,-39.5 - parent: 2 - type: Transform - - uid: 4641 - components: - - pos: 25.5,-39.5 - parent: 2 - type: Transform - - uid: 4642 - components: - - pos: 26.5,-39.5 - parent: 2 - type: Transform - - uid: 4643 - components: - - pos: 26.5,-38.5 - parent: 2 - type: Transform - - uid: 4644 - components: - - pos: 26.5,-37.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4645 - components: - - pos: 26.5,-36.5 - parent: 2 - type: Transform - - uid: 4646 - components: - - pos: 26.5,-35.5 - parent: 2 - type: Transform - - uid: 4647 - components: - - pos: 20.5,-34.5 - parent: 2 - type: Transform - - uid: 4648 - components: - - pos: 19.5,-34.5 - parent: 2 - type: Transform - - uid: 4649 - components: - - pos: 18.5,-34.5 - parent: 2 - type: Transform - - uid: 4650 - components: - - pos: 17.5,-34.5 - parent: 2 - type: Transform - - uid: 4651 - components: - - pos: 16.5,-34.5 - parent: 2 - type: Transform - - uid: 4652 - components: - - pos: 15.5,-34.5 - parent: 2 - type: Transform - - uid: 4653 - components: - - pos: 14.5,-34.5 - parent: 2 - type: Transform - - uid: 4654 - components: - - pos: 13.5,-34.5 - parent: 2 - type: Transform - - uid: 4655 - components: - - pos: 12.5,-34.5 - parent: 2 - type: Transform - - uid: 4656 - components: - - pos: 11.5,-34.5 - parent: 2 - type: Transform - - uid: 4657 - components: - - pos: 11.5,-35.5 - parent: 2 - type: Transform - - uid: 4658 - components: - - pos: 10.5,-35.5 - parent: 2 - type: Transform - - uid: 4659 - components: - - pos: 9.5,-35.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4660 - components: - - pos: 26.5,-34.5 - parent: 2 - type: Transform - - uid: 4661 - components: - - pos: 26.5,-33.5 - parent: 2 - type: Transform - - uid: 4664 - components: - - pos: 26.5,-32.5 - parent: 2 - type: Transform - - uid: 4665 - components: - - pos: 25.5,-32.5 - parent: 2 - type: Transform - - uid: 4666 - components: - - pos: 24.5,-32.5 - parent: 2 - type: Transform - - uid: 4667 - components: - - pos: 23.5,-32.5 - parent: 2 - type: Transform - - uid: 4668 - components: - - pos: 22.5,-32.5 - parent: 2 - type: Transform - - uid: 4670 - components: - - pos: 22.5,-29.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4671 - components: - - pos: 27.5,-36.5 - parent: 2 - type: Transform - - uid: 4673 - components: - - pos: 28.5,-36.5 - parent: 2 - type: Transform - - uid: 4674 - components: - - pos: 29.5,-36.5 - parent: 2 - type: Transform - - uid: 4675 - components: - - pos: 29.5,-37.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4875 - components: - - pos: 4.5,-36.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4876 - components: - - pos: 4.5,-35.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4878 - components: - - pos: 3.5,-30.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4879 - components: - - pos: 3.5,-29.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4880 - components: - - pos: 3.5,-28.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4881 - components: - - pos: 3.5,-27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5185 - components: - - pos: 62.5,-7.5 - parent: 2 - type: Transform - - uid: 5187 - components: - - pos: 62.5,-6.5 - parent: 2 - type: Transform - - uid: 5576 - components: - - pos: 17.5,-35.5 - parent: 2 - type: Transform - - uid: 6455 - components: - - pos: 22.5,-14.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6456 - components: - - pos: 21.5,-14.5 - parent: 2 - type: Transform - - uid: 6457 - components: - - pos: 20.5,-14.5 - parent: 2 - type: Transform - - uid: 6458 - components: - - pos: 19.5,-14.5 - parent: 2 - type: Transform - - uid: 6459 - components: - - pos: 19.5,-13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6768 - components: - - pos: 15.5,-42.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6769 - components: - - pos: 14.5,-42.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6770 - components: - - pos: 13.5,-42.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6771 - components: - - pos: 13.5,-43.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6772 - components: - - pos: 13.5,-44.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6773 - components: - - pos: 13.5,-45.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6780 - components: - - pos: 13.5,-46.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6955 - components: - - pos: 14.5,7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6956 - components: - - pos: 14.5,8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6957 - components: - - pos: 15.5,7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6958 - components: - - pos: 15.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6959 - components: - - pos: 15.5,5.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6961 - components: - - pos: 14.5,5.5 - parent: 2 - type: Transform - - uid: 6962 - components: - - pos: 13.5,5.5 - parent: 2 - type: Transform - - uid: 6963 - components: - - pos: 12.5,5.5 - parent: 2 - type: Transform - - uid: 6964 - components: - - pos: 11.5,5.5 - parent: 2 - type: Transform - - uid: 6965 - components: - - pos: 10.5,5.5 - parent: 2 - type: Transform - - uid: 6966 - components: - - pos: 9.5,5.5 - parent: 2 - type: Transform - - uid: 6967 - components: - - pos: 9.5,4.5 - parent: 2 - type: Transform - - uid: 6968 - components: - - pos: 9.5,3.5 - parent: 2 - type: Transform - - uid: 6969 - components: - - pos: 10.5,3.5 - parent: 2 - type: Transform - - uid: 6970 - components: - - pos: 11.5,3.5 - parent: 2 - type: Transform - - uid: 6971 - components: - - pos: 11.5,2.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6972 - components: - - pos: 8.5,3.5 - parent: 2 - type: Transform - - uid: 6973 - components: - - pos: 7.5,3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6974 - components: - - pos: 9.5,6.5 - parent: 2 - type: Transform - - uid: 6975 - components: - - pos: 9.5,7.5 - parent: 2 - type: Transform - - uid: 6976 - components: - - pos: 9.5,8.5 - parent: 2 - type: Transform - - uid: 6977 - components: - - pos: 9.5,9.5 - parent: 2 - type: Transform - - uid: 6978 - components: - - pos: 9.5,10.5 - parent: 2 - type: Transform - - uid: 6979 - components: - - pos: 10.5,10.5 - parent: 2 - type: Transform - - uid: 6980 - components: - - pos: 10.5,11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6981 - components: - - pos: 11.5,10.5 - parent: 2 - type: Transform - - uid: 6982 - components: - - pos: 12.5,10.5 - parent: 2 - type: Transform - - uid: 6983 - components: - - pos: 13.5,10.5 - parent: 2 - type: Transform - - uid: 6984 - components: - - pos: 14.5,10.5 - parent: 2 - type: Transform - - uid: 6985 - components: - - pos: 15.5,10.5 - parent: 2 - type: Transform - - uid: 6986 - components: - - pos: 16.5,10.5 - parent: 2 - type: Transform - - uid: 6987 - components: - - pos: 17.5,10.5 - parent: 2 - type: Transform - - uid: 6988 - components: - - pos: 18.5,10.5 - parent: 2 - type: Transform - - uid: 6989 - components: - - pos: 19.5,10.5 - parent: 2 - type: Transform - - uid: 6990 - components: - - pos: 19.5,9.5 - parent: 2 - type: Transform - - uid: 6991 - components: - - pos: 19.5,8.5 - parent: 2 - type: Transform - - uid: 6992 - components: - - pos: 19.5,7.5 - parent: 2 - type: Transform - - uid: 6993 - components: - - pos: 19.5,6.5 - parent: 2 - type: Transform - - uid: 6994 - components: - - pos: 19.5,5.5 - parent: 2 - type: Transform - - uid: 6995 - components: - - pos: 20.5,5.5 - parent: 2 - type: Transform - - uid: 6996 - components: - - pos: 21.5,5.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6997 - components: - - pos: 15.5,4.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6998 - components: - - pos: 15.5,3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6999 - components: - - pos: 16.5,3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7000 - components: - - pos: 17.5,3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7001 - components: - - pos: 18.5,3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7002 - components: - - pos: 19.5,3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7003 - components: - - pos: 20.5,3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7004 - components: - - pos: 21.5,3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7005 - components: - - pos: 22.5,3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7016 - components: - - pos: 23.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7017 - components: - - pos: 22.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7018 - components: - - pos: 22.5,11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7019 - components: - - pos: 24.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7020 - components: - - pos: 25.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7021 - components: - - pos: 26.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7022 - components: - - pos: 27.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7023 - components: - - pos: 28.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7024 - components: - - pos: 28.5,9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7025 - components: - - pos: 28.5,7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7026 - components: - - pos: 27.5,7.5 - parent: 2 - type: Transform - - uid: 7027 - components: - - pos: 26.5,7.5 - parent: 2 - type: Transform - - uid: 7028 - components: - - pos: 26.5,8.5 - parent: 2 - type: Transform - - uid: 7029 - components: - - pos: 26.5,9.5 - parent: 2 - type: Transform - - uid: 7030 - components: - - pos: 33.5,7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7031 - components: - - pos: 32.5,7.5 - parent: 2 - type: Transform - - uid: 7032 - components: - - pos: 31.5,7.5 - parent: 2 - type: Transform - - uid: 7033 - components: - - pos: 30.5,7.5 - parent: 2 - type: Transform - - uid: 7036 - components: - - pos: 29.5,7.5 - parent: 2 - type: Transform - - uid: 7037 - components: - - pos: 29.5,8.5 - parent: 2 - type: Transform - - uid: 7038 - components: - - pos: 29.5,9.5 - parent: 2 - type: Transform - - uid: 7039 - components: - - pos: 29.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7217 - components: - - pos: 12.5,34.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7218 - components: - - pos: 12.5,33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7219 - components: - - pos: 13.5,33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7220 - components: - - pos: 14.5,33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7221 - components: - - pos: 15.5,33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7222 - components: - - pos: 15.5,34.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7223 - components: - - pos: 14.5,35.5 - parent: 2 - type: Transform - - uid: 7224 - components: - - pos: 13.5,35.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7225 - components: - - pos: 15.5,32.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7226 - components: - - pos: 15.5,31.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7227 - components: - - pos: 15.5,30.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7228 - components: - - pos: 15.5,29.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7229 - components: - - pos: 15.5,28.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7230 - components: - - pos: 14.5,28.5 - parent: 2 - type: Transform - - uid: 7231 - components: - - pos: 13.5,28.5 - parent: 2 - type: Transform - - uid: 7232 - components: - - pos: 13.5,27.5 - parent: 2 - type: Transform - - uid: 7233 - components: - - pos: 13.5,26.5 - parent: 2 - type: Transform - - uid: 7234 - components: - - pos: 13.5,25.5 - parent: 2 - type: Transform - - uid: 7235 - components: - - pos: 13.5,24.5 - parent: 2 - type: Transform - - uid: 7236 - components: - - pos: 13.5,23.5 - parent: 2 - type: Transform - - uid: 7237 - components: - - pos: 14.5,23.5 - parent: 2 - type: Transform - - uid: 7238 - components: - - pos: 15.5,23.5 - parent: 2 - type: Transform - - uid: 7239 - components: - - pos: 16.5,23.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7240 - components: - - pos: 14.5,25.5 - parent: 2 - type: Transform - - uid: 7241 - components: - - pos: 15.5,25.5 - parent: 2 - type: Transform - - uid: 7242 - components: - - pos: 16.5,25.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7243 - components: - - pos: 10.5,18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7244 - components: - - pos: 9.5,18.5 - parent: 2 - type: Transform - - uid: 7245 - components: - - pos: 8.5,18.5 - parent: 2 - type: Transform - - uid: 7246 - components: - - pos: 8.5,19.5 - parent: 2 - type: Transform - - uid: 7247 - components: - - pos: 8.5,20.5 - parent: 2 - type: Transform - - uid: 7248 - components: - - pos: 8.5,21.5 - parent: 2 - type: Transform - - uid: 7249 - components: - - pos: 8.5,22.5 - parent: 2 - type: Transform - - uid: 7250 - components: - - pos: 9.5,22.5 - parent: 2 - type: Transform - - uid: 7251 - components: - - pos: 10.5,22.5 - parent: 2 - type: Transform - - uid: 7252 - components: - - pos: 11.5,22.5 - parent: 2 - type: Transform - - uid: 7253 - components: - - pos: 12.5,22.5 - parent: 2 - type: Transform - - uid: 7254 - components: - - pos: 13.5,22.5 - parent: 2 - type: Transform - - uid: 7255 - components: - - pos: 13.5,16.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7256 - components: - - pos: 12.5,16.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7257 - components: - - pos: 11.5,16.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7258 - components: - - pos: 11.5,17.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7259 - components: - - pos: 11.5,18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7260 - components: - - pos: 13.5,18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7261 - components: - - pos: 12.5,18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7262 - components: - - pos: 14.5,18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7263 - components: - - pos: 14.5,19.5 - parent: 2 - type: Transform - - uid: 7264 - components: - - pos: 14.5,20.5 - parent: 2 - type: Transform - - uid: 7265 - components: - - pos: 14.5,21.5 - parent: 2 - type: Transform - - uid: 7266 - components: - - pos: 13.5,21.5 - parent: 2 - type: Transform - - uid: 7475 - components: - - pos: 6.5,-9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7476 - components: - - pos: 6.5,-8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7477 - components: - - pos: 6.5,-10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7478 - components: - - pos: 5.5,-9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7479 - components: - - pos: 4.5,-9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7480 - components: - - pos: 3.5,-9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7481 - components: - - pos: 2.5,-9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7482 - components: - - pos: 1.5,-9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7483 - components: - - pos: 0.5,-9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7484 - components: - - pos: 0.5,-8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7485 - components: - - pos: 1.5,-8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7486 - components: - - pos: 1.5,-7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7487 - components: - - pos: 1.5,-6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7488 - components: - - pos: 1.5,-5.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7489 - components: - - pos: 1.5,-4.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7490 - components: - - pos: 1.5,-3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7491 - components: - - pos: 2.5,-4.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7492 - components: - - pos: 0.5,-3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7493 - components: - - pos: 1.5,-2.5 - parent: 2 - type: Transform - - uid: 7494 - components: - - pos: 1.5,-1.5 - parent: 2 - type: Transform - - uid: 7495 - components: - - pos: 1.5,-0.5 - parent: 2 - type: Transform - - uid: 7496 - components: - - pos: 0.5,-0.5 - parent: 2 - type: Transform - - uid: 7497 - components: - - pos: -0.5,-0.5 - parent: 2 - type: Transform - - uid: 7498 - components: - - pos: -1.5,-0.5 - parent: 2 - type: Transform - - uid: 7499 - components: - - pos: -2.5,-0.5 - parent: 2 - type: Transform - - uid: 7500 - components: - - pos: -3.5,-0.5 - parent: 2 - type: Transform - - uid: 7501 - components: - - pos: -4.5,-0.5 - parent: 2 - type: Transform - - uid: 7502 - components: - - pos: -5.5,-0.5 - parent: 2 - type: Transform - - uid: 7503 - components: - - pos: -5.5,-1.5 - parent: 2 - type: Transform - - uid: 7504 - components: - - pos: -5.5,-2.5 - parent: 2 - type: Transform - - uid: 7505 - components: - - pos: -4.5,-2.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7506 - components: - - pos: 0.5,-10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7507 - components: - - pos: 0.5,-11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7508 - components: - - pos: -0.5,-11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7509 - components: - - pos: -0.5,-10.5 - parent: 2 - type: Transform - - uid: 7510 - components: - - pos: -1.5,-10.5 - parent: 2 - type: Transform - - uid: 7511 - components: - - pos: -2.5,-10.5 - parent: 2 - type: Transform - - uid: 7512 - components: - - pos: -2.5,-9.5 - parent: 2 - type: Transform - - uid: 7513 - components: - - pos: -2.5,-8.5 - parent: 2 - type: Transform - - uid: 7514 - components: - - pos: -2.5,-7.5 - parent: 2 - type: Transform - - uid: 7515 - components: - - pos: -3.5,-7.5 - parent: 2 - type: Transform - - uid: 7516 - components: - - pos: -4.5,-7.5 - parent: 2 - type: Transform - - uid: 7517 - components: - - pos: -5.5,-7.5 - parent: 2 - type: Transform - - uid: 7518 - components: - - pos: -5.5,-7.5 - parent: 2 - type: Transform - - uid: 7519 - components: - - pos: -5.5,-6.5 - parent: 2 - type: Transform - - uid: 7520 - components: - - pos: -5.5,-5.5 - parent: 2 - type: Transform - - uid: 7521 - components: - - pos: -5.5,-4.5 - parent: 2 - type: Transform - - uid: 7522 - components: - - pos: -5.5,-3.5 - parent: 2 - type: Transform - - uid: 7523 - components: - - pos: -5.5,-9.5 - parent: 2 - type: Transform - - uid: 7524 - components: - - pos: -5.5,-8.5 - parent: 2 - type: Transform - - uid: 7525 - components: - - pos: -5.5,-10.5 - parent: 2 - type: Transform - - uid: 7531 - components: - - pos: -5.5,-11.5 - parent: 2 - type: Transform - - uid: 7532 - components: - - pos: -5.5,-12.5 - parent: 2 - type: Transform - - uid: 7534 - components: - - pos: -5.5,-13.5 - parent: 2 - type: Transform - - uid: 7535 - components: - - pos: -6.5,-13.5 - parent: 2 - type: Transform - - uid: 7536 - components: - - pos: -7.5,-13.5 - parent: 2 - type: Transform - - uid: 7537 - components: - - pos: -8.5,-13.5 - parent: 2 - type: Transform - - uid: 7538 - components: - - pos: -9.5,-13.5 - parent: 2 - type: Transform - - uid: 7539 - components: - - pos: -10.5,-13.5 - parent: 2 - type: Transform - - uid: 7540 - components: - - pos: -11.5,-13.5 - parent: 2 - type: Transform - - uid: 7541 - components: - - pos: -12.5,-13.5 - parent: 2 - type: Transform - - uid: 7542 - components: - - pos: -13.5,-13.5 - parent: 2 - type: Transform - - uid: 7543 - components: - - pos: -14.5,-13.5 - parent: 2 - type: Transform - - uid: 7544 - components: - - pos: -15.5,-13.5 - parent: 2 - type: Transform - - uid: 7548 - components: - - pos: -15.5,-14.5 - parent: 2 - type: Transform - - uid: 7549 - components: - - pos: -15.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8287 - components: - - pos: 27.5,33.5 - parent: 2 - type: Transform - - uid: 8325 - components: - - pos: 52.5,-9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8341 - components: - - pos: 52.5,-10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8348 - components: - - pos: 43.5,26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8349 - components: - - pos: 43.5,27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8350 - components: - - pos: 43.5,25.5 - parent: 2 - type: Transform - - uid: 8351 - components: - - pos: 43.5,24.5 - parent: 2 - type: Transform - - uid: 8352 - components: - - pos: 43.5,23.5 - parent: 2 - type: Transform - - uid: 8353 - components: - - pos: 42.5,23.5 - parent: 2 - type: Transform - - uid: 8354 - components: - - pos: 41.5,23.5 - parent: 2 - type: Transform - - uid: 8355 - components: - - pos: 40.5,23.5 - parent: 2 - type: Transform - - uid: 8356 - components: - - pos: 39.5,23.5 - parent: 2 - type: Transform - - uid: 8357 - components: - - pos: 41.5,22.5 - parent: 2 - type: Transform - - uid: 8358 - components: - - pos: 41.5,21.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8359 - components: - - pos: 39.5,22.5 - parent: 2 - type: Transform - - uid: 8360 - components: - - pos: 38.5,22.5 - parent: 2 - type: Transform - - uid: 8362 - components: - - pos: 37.5,22.5 - parent: 2 - type: Transform - - uid: 8363 - components: - - pos: 36.5,22.5 - parent: 2 - type: Transform - - uid: 8364 - components: - - pos: 35.5,22.5 - parent: 2 - type: Transform - - uid: 8365 - components: - - pos: 34.5,22.5 - parent: 2 - type: Transform - - uid: 8366 - components: - - pos: 33.5,22.5 - parent: 2 - type: Transform - - uid: 8367 - components: - - pos: 33.5,23.5 - parent: 2 - type: Transform - - uid: 8368 - components: - - pos: 33.5,24.5 - parent: 2 - type: Transform - - uid: 8369 - components: - - pos: 33.5,25.5 - parent: 2 - type: Transform - - uid: 8370 - components: - - pos: 33.5,26.5 - parent: 2 - type: Transform - - uid: 8371 - components: - - pos: 33.5,27.5 - parent: 2 - type: Transform - - uid: 8372 - components: - - pos: 33.5,28.5 - parent: 2 - type: Transform - - uid: 8373 - components: - - pos: 33.5,29.5 - parent: 2 - type: Transform - - uid: 8374 - components: - - pos: 33.5,30.5 - parent: 2 - type: Transform - - uid: 8375 - components: - - pos: 34.5,30.5 - parent: 2 - type: Transform - - uid: 8376 - components: - - pos: 35.5,30.5 - parent: 2 - type: Transform - - uid: 8383 - components: - - pos: 36.5,30.5 - parent: 2 - type: Transform - - uid: 8384 - components: - - pos: 36.5,29.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8385 - components: - - pos: 34.5,25.5 - parent: 2 - type: Transform - - uid: 8386 - components: - - pos: 35.5,25.5 - parent: 2 - type: Transform - - uid: 8387 - components: - - pos: 36.5,25.5 - parent: 2 - type: Transform - - uid: 8388 - components: - - pos: 37.5,25.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8456 - components: - - pos: 33.5,21.5 - parent: 2 - type: Transform - - uid: 8457 - components: - - pos: 32.5,21.5 - parent: 2 - type: Transform - - uid: 8458 - components: - - pos: 31.5,21.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8459 - components: - - pos: 30.5,21.5 - parent: 2 - type: Transform - - uid: 8460 - components: - - pos: 29.5,21.5 - parent: 2 - type: Transform - - uid: 8461 - components: - - pos: 28.5,21.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8462 - components: - - pos: 28.5,20.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8463 - components: - - pos: 33.5,20.5 - parent: 2 - type: Transform - - uid: 8464 - components: - - pos: 33.5,19.5 - parent: 2 - type: Transform - - uid: 8465 - components: - - pos: 33.5,18.5 - parent: 2 - type: Transform - - uid: 8466 - components: - - pos: 32.5,18.5 - parent: 2 - type: Transform - - uid: 8467 - components: - - pos: 31.5,18.5 - parent: 2 - type: Transform - - uid: 8468 - components: - - pos: 30.5,18.5 - parent: 2 - type: Transform - - uid: 8469 - components: - - pos: 29.5,18.5 - parent: 2 - type: Transform - - uid: 8470 - components: - - pos: 28.5,18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8471 - components: - - pos: 28.5,17.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8536 - components: - - pos: 37.5,26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8537 - components: - - pos: 37.5,27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8538 - components: - - pos: 37.5,28.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8539 - components: - - pos: 38.5,25.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8540 - components: - - pos: 39.5,25.5 - parent: 2 - type: Transform - - uid: 8541 - components: - - pos: 40.5,25.5 - parent: 2 - type: Transform - - uid: 8542 - components: - - pos: 41.5,25.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8543 - components: - - pos: 37.5,23.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8544 - components: - - pos: 37.5,24.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8545 - components: - - pos: 37.5,21.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8546 - components: - - pos: 38.5,21.5 - parent: 2 - type: Transform - - uid: 8547 - components: - - pos: 38.5,20.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8548 - components: - - pos: 31.5,17.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8698 - components: - - pos: 47.5,28.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9007 - components: - - pos: 14.5,36.5 - parent: 2 - type: Transform - - uid: 9008 - components: - - pos: 15.5,36.5 - parent: 2 - type: Transform - - uid: 9009 - components: - - pos: 16.5,36.5 - parent: 2 - type: Transform - - uid: 9010 - components: - - pos: 17.5,36.5 - parent: 2 - type: Transform - - uid: 9011 - components: - - pos: 18.5,36.5 - parent: 2 - type: Transform - - uid: 9012 - components: - - pos: 19.5,36.5 - parent: 2 - type: Transform - - uid: 9013 - components: - - pos: 20.5,36.5 - parent: 2 - type: Transform - - uid: 9014 - components: - - pos: 20.5,35.5 - parent: 2 - type: Transform - - uid: 9015 - components: - - pos: 20.5,34.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9021 - components: - - pos: 18.5,37.5 - parent: 2 - type: Transform - - uid: 9022 - components: - - pos: 18.5,38.5 - parent: 2 - type: Transform - - uid: 9023 - components: - - pos: 18.5,39.5 - parent: 2 - type: Transform - - uid: 9024 - components: - - pos: 18.5,40.5 - parent: 2 - type: Transform - - uid: 9025 - components: - - pos: 19.5,40.5 - parent: 2 - type: Transform - - uid: 9026 - components: - - pos: 20.5,40.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9027 - components: - - pos: 21.5,36.5 - parent: 2 - type: Transform - - uid: 9028 - components: - - pos: 22.5,36.5 - parent: 2 - type: Transform - - uid: 9029 - components: - - pos: 23.5,36.5 - parent: 2 - type: Transform - - uid: 9030 - components: - - pos: 24.5,36.5 - parent: 2 - type: Transform - - uid: 9031 - components: - - pos: 25.5,36.5 - parent: 2 - type: Transform - - uid: 9032 - components: - - pos: 26.5,36.5 - parent: 2 - type: Transform - - uid: 9033 - components: - - pos: 27.5,36.5 - parent: 2 - type: Transform - - uid: 9034 - components: - - pos: 28.5,36.5 - parent: 2 - type: Transform - - uid: 9035 - components: - - pos: 28.5,33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9036 - components: - - pos: 27.5,34.5 - parent: 2 - type: Transform - - uid: 9037 - components: - - pos: 28.5,33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9038 - components: - - pos: 29.5,36.5 - parent: 2 - type: Transform - - uid: 9039 - components: - - pos: 30.5,36.5 - parent: 2 - type: Transform - - uid: 9040 - components: - - pos: 30.5,37.5 - parent: 2 - type: Transform - - uid: 9041 - components: - - pos: 30.5,38.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9042 - components: - - pos: 27.5,37.5 - parent: 2 - type: Transform - - uid: 9043 - components: - - pos: 27.5,38.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9044 - components: - - pos: 27.5,39.5 - parent: 2 - type: Transform - - uid: 9045 - components: - - pos: 27.5,40.5 - parent: 2 - type: Transform - - uid: 9046 - components: - - pos: 27.5,41.5 - parent: 2 - type: Transform - - uid: 9047 - components: - - pos: 27.5,42.5 - parent: 2 - type: Transform - - uid: 9048 - components: - - pos: 27.5,43.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9049 - components: - - pos: 27.5,44.5 - parent: 2 - type: Transform - - uid: 9050 - components: - - pos: 27.5,45.5 - parent: 2 - type: Transform - - uid: 9051 - components: - - pos: 26.5,45.5 - parent: 2 - type: Transform - - uid: 9052 - components: - - pos: 25.5,45.5 - parent: 2 - type: Transform - - uid: 9053 - components: - - pos: 25.5,44.5 - parent: 2 - type: Transform - - uid: 9054 - components: - - pos: 25.5,43.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9055 - components: - - pos: 28.5,45.5 - parent: 2 - type: Transform - - uid: 9056 - components: - - pos: 29.5,45.5 - parent: 2 - type: Transform - - uid: 9057 - components: - - pos: 30.5,45.5 - parent: 2 - type: Transform - - uid: 9058 - components: - - pos: 31.5,45.5 - parent: 2 - type: Transform - - uid: 9059 - components: - - pos: 32.5,45.5 - parent: 2 - type: Transform - - uid: 9092 - components: - - pos: 33.5,45.5 - parent: 2 - type: Transform - - uid: 9093 - components: - - pos: 33.5,44.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9094 - components: - - pos: 27.5,35.5 - parent: 2 - type: Transform - - uid: 9095 - components: - - pos: 22.5,37.5 - parent: 2 - type: Transform - - uid: 9096 - components: - - pos: 21.5,38.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9097 - components: - - pos: 22.5,38.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9098 - components: - - pos: 23.5,38.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9099 - components: - - pos: 24.5,38.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9100 - components: - - pos: 24.5,45.5 - parent: 2 - type: Transform - - uid: 9101 - components: - - pos: 23.5,45.5 - parent: 2 - type: Transform - - uid: 9102 - components: - - pos: 22.5,45.5 - parent: 2 - type: Transform - - uid: 9103 - components: - - pos: 21.5,45.5 - parent: 2 - type: Transform - - uid: 9104 - components: - - pos: 20.5,45.5 - parent: 2 - type: Transform - - uid: 9105 - components: - - pos: 19.5,45.5 - parent: 2 - type: Transform - - uid: 9106 - components: - - pos: 18.5,45.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9107 - components: - - pos: 18.5,44.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9108 - components: - - pos: 22.5,46.5 - parent: 2 - type: Transform - - uid: 9111 - components: - - pos: 22.5,47.5 - parent: 2 - type: Transform - - uid: 9112 - components: - - pos: 22.5,48.5 - parent: 2 - type: Transform - - uid: 9113 - components: - - pos: 22.5,49.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9114 - components: - - pos: 23.5,49.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9115 - components: - - pos: 24.5,49.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9116 - components: - - pos: 25.5,49.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9117 - components: - - pos: 26.5,49.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9118 - components: - - pos: 27.5,49.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9119 - components: - - pos: 28.5,49.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9120 - components: - - pos: 29.5,49.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9121 - components: - - pos: 30.5,49.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9122 - components: - - pos: 31.5,49.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9123 - components: - - pos: 32.5,49.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9124 - components: - - pos: 32.5,48.5 - parent: 2 - type: Transform - - uid: 9125 - components: - - pos: 32.5,47.5 - parent: 2 - type: Transform - - uid: 9126 - components: - - pos: 32.5,46.5 - parent: 2 - type: Transform - - uid: 9127 - components: - - pos: 34.5,45.5 - parent: 2 - type: Transform - - uid: 9128 - components: - - pos: 35.5,45.5 - parent: 2 - type: Transform - - uid: 9129 - components: - - pos: 36.5,45.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9130 - components: - - pos: 36.5,46.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9253 - components: - - pos: 70.5,44.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9254 - components: - - pos: 69.5,44.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9255 - components: - - pos: 69.5,45.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9256 - components: - - pos: 69.5,46.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9257 - components: - - pos: 69.5,47.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9258 - components: - - pos: 69.5,43.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9259 - components: - - pos: 69.5,42.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9260 - components: - - pos: 68.5,42.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9261 - components: - - pos: 68.5,41.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9262 - components: - - pos: 67.5,42.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9263 - components: - - pos: 67.5,43.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9264 - components: - - pos: 67.5,44.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9265 - components: - - pos: 66.5,44.5 - parent: 2 - type: Transform - - uid: 9266 - components: - - pos: 66.5,45.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9474 - components: - - pos: 24.5,44.5 - parent: 2 - type: Transform - - uid: 9475 - components: - - pos: 24.5,43.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9476 - components: - - pos: 21.5,43.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9477 - components: - - pos: 21.5,44.5 - parent: 2 - type: Transform - - uid: 9638 - components: - - pos: 52.5,-11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9639 - components: - - pos: 52.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9640 - components: - - pos: 51.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9641 - components: - - pos: 50.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9642 - components: - - pos: 49.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9643 - components: - - pos: 48.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9644 - components: - - pos: 47.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9645 - components: - - pos: 46.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9646 - components: - - pos: 45.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9647 - components: - - pos: 44.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9648 - components: - - pos: 43.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9649 - components: - - pos: 42.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9650 - components: - - pos: 41.5,-12.5 - parent: 2 - type: Transform - - uid: 9651 - components: - - pos: 40.5,-12.5 - parent: 2 - type: Transform - - uid: 9652 - components: - - pos: 39.5,-12.5 - parent: 2 - type: Transform - - uid: 9653 - components: - - pos: 39.5,-11.5 - parent: 2 - type: Transform - - uid: 9654 - components: - - pos: 38.5,-11.5 - parent: 2 - type: Transform - - uid: 9655 - components: - - pos: 37.5,-11.5 - parent: 2 - type: Transform - - uid: 9656 - components: - - pos: 36.5,-11.5 - parent: 2 - type: Transform - - uid: 9657 - components: - - pos: 35.5,-11.5 - parent: 2 - type: Transform - - uid: 9658 - components: - - pos: 34.5,-11.5 - parent: 2 - type: Transform - - uid: 9659 - components: - - pos: 33.5,-11.5 - parent: 2 - type: Transform - - uid: 9660 - components: - - pos: 32.5,-11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9661 - components: - - pos: 39.5,-10.5 - parent: 2 - type: Transform - - uid: 9662 - components: - - pos: 39.5,-9.5 - parent: 2 - type: Transform - - uid: 9663 - components: - - pos: 39.5,-8.5 - parent: 2 - type: Transform - - uid: 9664 - components: - - pos: 39.5,-7.5 - parent: 2 - type: Transform - - uid: 9665 - components: - - pos: 39.5,-6.5 - parent: 2 - type: Transform - - uid: 9666 - components: - - pos: 39.5,-5.5 - parent: 2 - type: Transform - - uid: 9667 - components: - - pos: 39.5,-4.5 - parent: 2 - type: Transform - - uid: 9668 - components: - - pos: 39.5,-3.5 - parent: 2 - type: Transform - - uid: 9669 - components: - - pos: 38.5,-3.5 - parent: 2 - type: Transform - - uid: 9670 - components: - - pos: 37.5,-3.5 - parent: 2 - type: Transform - - uid: 9671 - components: - - pos: 37.5,-2.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9672 - components: - - pos: 40.5,-3.5 - parent: 2 - type: Transform - - uid: 9673 - components: - - pos: 41.5,-3.5 - parent: 2 - type: Transform - - uid: 9674 - components: - - pos: 42.5,-3.5 - parent: 2 - type: Transform - - uid: 9675 - components: - - pos: 42.5,-4.5 - parent: 2 - type: Transform - - uid: 9676 - components: - - pos: 42.5,-5.5 - parent: 2 - type: Transform - - uid: 9677 - components: - - pos: 42.5,-6.5 - parent: 2 - type: Transform - - uid: 9678 - components: - - pos: 43.5,-6.5 - parent: 2 - type: Transform - - uid: 9679 - components: - - pos: 44.5,-6.5 - parent: 2 - type: Transform - - uid: 9680 - components: - - pos: 45.5,-6.5 - parent: 2 - type: Transform - - uid: 9681 - components: - - pos: 45.5,-7.5 - parent: 2 - type: Transform - - uid: 9682 - components: - - pos: 45.5,-8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9683 - components: - - pos: 41.5,-2.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9684 - components: - - pos: 41.5,-1.5 - parent: 2 - type: Transform - - uid: 9685 - components: - - pos: 40.5,-1.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9686 - components: - - pos: 50.5,-11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9687 - components: - - pos: 50.5,-10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9688 - components: - - pos: 50.5,-9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9689 - components: - - pos: 50.5,-8.5 - parent: 2 - type: Transform - - uid: 9690 - components: - - pos: 50.5,-7.5 - parent: 2 - type: Transform - - uid: 9691 - components: - - pos: 51.5,-7.5 - parent: 2 - type: Transform - - uid: 9692 - components: - - pos: 52.5,-7.5 - parent: 2 - type: Transform - - uid: 9693 - components: - - pos: 52.5,-8.5 - parent: 2 - type: Transform - - uid: 9745 - components: - - pos: 16.5,-14.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9746 - components: - - pos: 16.5,-13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9747 - components: - - pos: 16.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9748 - components: - - pos: 16.5,-11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9749 - components: - - pos: 15.5,-11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9750 - components: - - pos: 14.5,-11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9751 - components: - - pos: 13.5,-11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9752 - components: - - pos: 13.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9753 - components: - - pos: 13.5,-13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9754 - components: - - pos: 12.5,-13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9755 - components: - - pos: 11.5,-13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9756 - components: - - pos: 10.5,-13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9757 - components: - - pos: 10.5,-14.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9758 - components: - - pos: 10.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9759 - components: - - pos: 11.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9760 - components: - - pos: 17.5,-11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9761 - components: - - pos: 17.5,-10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9762 - components: - - pos: 17.5,-9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9763 - components: - - pos: 17.5,-8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9764 - components: - - pos: 17.5,-7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9765 - components: - - pos: 16.5,-7.5 - parent: 2 - type: Transform - - uid: 9766 - components: - - pos: 16.5,-6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9767 - components: - - pos: 15.5,-7.5 - parent: 2 - type: Transform - - uid: 9768 - components: - - pos: 14.5,-7.5 - parent: 2 - type: Transform - - uid: 9769 - components: - - pos: 13.5,-7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9770 - components: - - pos: 18.5,-7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9771 - components: - - pos: 19.5,-7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9772 - components: - - pos: 20.5,-7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9773 - components: - - pos: 21.5,-7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9774 - components: - - pos: 21.5,-8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9776 - components: - - pos: 23.5,3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9777 - components: - - pos: 23.5,2.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9829 - components: - - pos: 35.5,-14.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9830 - components: - - pos: 35.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9831 - components: - - pos: 34.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9832 - components: - - pos: 36.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9833 - components: - - pos: 37.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9834 - components: - - pos: 38.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9835 - components: - - pos: 39.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9836 - components: - - pos: 33.5,-15.5 - parent: 2 - type: Transform - - uid: 9837 - components: - - pos: 32.5,-15.5 - parent: 2 - type: Transform - - uid: 9838 - components: - - pos: 32.5,-16.5 - parent: 2 - type: Transform - - uid: 9839 - components: - - pos: 32.5,-17.5 - parent: 2 - type: Transform - - uid: 9840 - components: - - pos: 32.5,-18.5 - parent: 2 - type: Transform - - uid: 9841 - components: - - pos: 32.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9842 - components: - - pos: 31.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9843 - components: - - pos: 30.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9844 - components: - - pos: 29.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9845 - components: - - pos: 28.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9846 - components: - - pos: 33.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9847 - components: - - pos: 34.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9848 - components: - - pos: 35.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9849 - components: - - pos: 36.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9850 - components: - - pos: 37.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9851 - components: - - pos: 38.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9852 - components: - - pos: 39.5,-19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9853 - components: - - pos: 39.5,-18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9854 - components: - - pos: 36.5,-20.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9855 - components: - - pos: 36.5,-21.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9856 - components: - - pos: 51.5,-13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9857 - components: - - pos: 51.5,-14.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9858 - components: - - pos: 50.5,-14.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9859 - components: - - pos: 69.5,-13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9860 - components: - - pos: 70.5,-13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9861 - components: - - pos: 71.5,-13.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9862 - components: - - pos: 71.5,-14.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9863 - components: - - pos: 71.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9864 - components: - - pos: 70.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9865 - components: - - pos: 69.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9866 - components: - - pos: 68.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9867 - components: - - pos: 71.5,-12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9868 - components: - - pos: 71.5,-11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9869 - components: - - pos: 71.5,-10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9870 - components: - - pos: 71.5,-9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9871 - components: - - pos: 71.5,-8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9872 - components: - - pos: 71.5,-7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9873 - components: - - pos: 71.5,-6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9874 - components: - - pos: 71.5,-5.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9875 - components: - - pos: 71.5,-4.5 - parent: 2 - type: Transform - - uid: 9876 - components: - - pos: 71.5,-3.5 - parent: 2 - type: Transform - - uid: 9877 - components: - - pos: 72.5,-3.5 - parent: 2 - type: Transform - - uid: 9878 - components: - - pos: 72.5,-2.5 - parent: 2 - type: Transform - - uid: 9879 - components: - - pos: 73.5,-2.5 - parent: 2 - type: Transform - - uid: 9880 - components: - - pos: 74.5,-2.5 - parent: 2 - type: Transform - - uid: 9881 - components: - - pos: 75.5,-2.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9882 - components: - - pos: 41.5,-37.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9883 - components: - - pos: 40.5,-37.5 - parent: 2 - type: Transform - - uid: 9884 - components: - - pos: 39.5,-37.5 - parent: 2 - type: Transform - - uid: 9885 - components: - - pos: 38.5,-37.5 - parent: 2 - type: Transform - - uid: 9886 - components: - - pos: 38.5,-36.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9887 - components: - - pos: 38.5,-35.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9888 - components: - - pos: 38.5,-34.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9889 - components: - - pos: 38.5,-33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9890 - components: - - pos: 38.5,-32.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9891 - components: - - pos: 38.5,-31.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9892 - components: - - pos: 38.5,-30.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9893 - components: - - pos: 38.5,-29.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9894 - components: - - pos: 38.5,-28.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9895 - components: - - pos: 38.5,-27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9896 - components: - - pos: 39.5,-27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9897 - components: - - pos: 39.5,-26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9898 - components: - - pos: 38.5,-25.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9899 - components: - - pos: 39.5,-25.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9900 - components: - - pos: 38.5,-24.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9901 - components: - - pos: 37.5,-23.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9902 - components: - - pos: 37.5,-24.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9903 - components: - - pos: 36.5,-23.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9904 - components: - - pos: 36.5,-22.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10130 - components: - - pos: 63.5,-7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10672 - components: - - pos: 64.5,11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10673 - components: - - pos: 63.5,11.5 - parent: 2 - type: Transform - - uid: 10674 - components: - - pos: 62.5,11.5 - parent: 2 - type: Transform - - uid: 10675 - components: - - pos: 62.5,12.5 - parent: 2 - type: Transform - - uid: 10676 - components: - - pos: 63.5,12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10677 - components: - - pos: 61.5,12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10678 - components: - - pos: 60.5,12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10679 - components: - - pos: 62.5,13.5 - parent: 2 - type: Transform - - uid: 10680 - components: - - pos: 62.5,14.5 - parent: 2 - type: Transform - - uid: 10681 - components: - - pos: 62.5,15.5 - parent: 2 - type: Transform - - uid: 10682 - components: - - pos: 63.5,15.5 - parent: 2 - type: Transform - - uid: 10683 - components: - - pos: 64.5,15.5 - parent: 2 - type: Transform - - uid: 10684 - components: - - pos: 65.5,15.5 - parent: 2 - type: Transform - - uid: 10685 - components: - - pos: 66.5,15.5 - parent: 2 - type: Transform - - uid: 10686 - components: - - pos: 66.5,16.5 - parent: 2 - type: Transform - - uid: 10687 - components: - - pos: 66.5,17.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10688 - components: - - pos: 61.5,14.5 - parent: 2 - type: Transform - - uid: 10689 - components: - - pos: 60.5,14.5 - parent: 2 - type: Transform - - uid: 10690 - components: - - pos: 59.5,14.5 - parent: 2 - type: Transform - - uid: 10691 - components: - - pos: 58.5,14.5 - parent: 2 - type: Transform - - uid: 10692 - components: - - pos: 57.5,14.5 - parent: 2 - type: Transform - - uid: 10693 - components: - - pos: 57.5,13.5 - parent: 2 - type: Transform - - uid: 10694 - components: - - pos: 57.5,12.5 - parent: 2 - type: Transform - - uid: 10695 - components: - - pos: 57.5,11.5 - parent: 2 - type: Transform - - uid: 10696 - components: - - pos: 56.5,11.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10697 - components: - - pos: 56.5,14.5 - parent: 2 - type: Transform - - uid: 10698 - components: - - pos: 55.5,14.5 - parent: 2 - type: Transform - - uid: 10699 - components: - - pos: 54.5,14.5 - parent: 2 - type: Transform - - uid: 10700 - components: - - pos: 53.5,14.5 - parent: 2 - type: Transform - - uid: 10701 - components: - - pos: 52.5,14.5 - parent: 2 - type: Transform - - uid: 10702 - components: - - pos: 51.5,14.5 - parent: 2 - type: Transform - - uid: 10703 - components: - - pos: 50.5,14.5 - parent: 2 - type: Transform - - uid: 10704 - components: - - pos: 49.5,14.5 - parent: 2 - type: Transform - - uid: 10705 - components: - - pos: 48.5,14.5 - parent: 2 - type: Transform - - uid: 10752 - components: - - pos: 47.5,14.5 - parent: 2 - type: Transform - - uid: 10753 - components: - - pos: 46.5,14.5 - parent: 2 - type: Transform - - uid: 10754 - components: - - pos: 45.5,14.5 - parent: 2 - type: Transform - - uid: 10755 - components: - - pos: 44.5,14.5 - parent: 2 - type: Transform - - uid: 10756 - components: - - pos: 43.5,14.5 - parent: 2 - type: Transform - - uid: 10777 - components: - - pos: 43.5,13.5 - parent: 2 - type: Transform - - uid: 10783 - components: - - pos: 43.5,12.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10784 - components: - - pos: 47.5,15.5 - parent: 2 - type: Transform - - uid: 10785 - components: - - pos: 47.5,16.5 - parent: 2 - type: Transform - - uid: 10786 - components: - - pos: 47.5,17.5 - parent: 2 - type: Transform - - uid: 10787 - components: - - pos: 47.5,18.5 - parent: 2 - type: Transform - - uid: 10788 - components: - - pos: 47.5,19.5 - parent: 2 - type: Transform - - uid: 10805 - components: - - pos: 47.5,20.5 - parent: 2 - type: Transform - - uid: 10806 - components: - - pos: 47.5,21.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10854 - components: - - pos: 47.5,22.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10855 - components: - - pos: 47.5,23.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10857 - components: - - pos: 47.5,24.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10858 - components: - - pos: 47.5,25.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10859 - components: - - pos: 47.5,26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10860 - components: - - pos: 47.5,27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10861 - components: - - pos: 48.5,27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10862 - components: - - pos: 49.5,27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10865 - components: - - pos: 50.5,27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10866 - components: - - pos: 51.5,22.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10867 - components: - - pos: 51.5,20.5 - parent: 2 - type: Transform - - uid: 10868 - components: - - pos: 52.5,20.5 - parent: 2 - type: Transform - - uid: 10869 - components: - - pos: 53.5,20.5 - parent: 2 - type: Transform - - uid: 10870 - components: - - pos: 53.5,21.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10871 - components: - - pos: 53.5,19.5 - parent: 2 - type: Transform - - uid: 10872 - components: - - pos: 54.5,19.5 - parent: 2 - type: Transform - - uid: 10873 - components: - - pos: 55.5,19.5 - parent: 2 - type: Transform - - uid: 10874 - components: - - pos: 56.5,19.5 - parent: 2 - type: Transform - - uid: 10877 - components: - - pos: 57.5,19.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10879 - components: - - pos: 58.5,19.5 - parent: 2 - type: Transform - - uid: 10880 - components: - - pos: 59.5,19.5 - parent: 2 - type: Transform - - uid: 10881 - components: - - pos: 60.5,19.5 - parent: 2 - type: Transform - - uid: 10882 - components: - - pos: 60.5,18.5 - parent: 2 - type: Transform - - uid: 10883 - components: - - pos: 61.5,18.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10884 - components: - - pos: 60.5,17.5 - parent: 2 - type: Transform - - uid: 10885 - components: - - pos: 60.5,16.5 - parent: 2 - type: Transform - - uid: 10886 - components: - - pos: 60.5,15.5 - parent: 2 - type: Transform - - uid: 10887 - components: - - pos: 60.5,20.5 - parent: 2 - type: Transform - - uid: 10888 - components: - - pos: 60.5,21.5 - parent: 2 - type: Transform - - uid: 10889 - components: - - pos: 60.5,22.5 - parent: 2 - type: Transform - - uid: 10890 - components: - - pos: 60.5,23.5 - parent: 2 - type: Transform - - uid: 10891 - components: - - pos: 61.5,23.5 - parent: 2 - type: Transform - - uid: 10892 - components: - - pos: 62.5,23.5 - parent: 2 - type: Transform - - uid: 10893 - components: - - pos: 63.5,23.5 - parent: 2 - type: Transform - - uid: 10894 - components: - - pos: 64.5,23.5 - parent: 2 - type: Transform - - uid: 10895 - components: - - pos: 65.5,23.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10913 - components: - - pos: 41.5,0.5 - parent: 2 - type: Transform - - uid: 10914 - components: - - pos: 41.5,1.5 - parent: 2 - type: Transform - - uid: 10915 - components: - - pos: 41.5,2.5 - parent: 2 - type: Transform - - uid: 10916 - components: - - pos: 41.5,3.5 - parent: 2 - type: Transform - - uid: 10917 - components: - - pos: 42.5,3.5 - parent: 2 - type: Transform - - uid: 10918 - components: - - pos: 43.5,3.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10919 - components: - - pos: 41.5,4.5 - parent: 2 - type: Transform - - uid: 10920 - components: - - pos: 41.5,5.5 - parent: 2 - type: Transform - - uid: 10921 - components: - - pos: 41.5,6.5 - parent: 2 - type: Transform - - uid: 10922 - components: - - pos: 42.5,6.5 - parent: 2 - type: Transform - - uid: 10923 - components: - - pos: 43.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11148 - components: - - pos: 72.5,-7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11149 - components: - - pos: 73.5,-7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11150 - components: - - pos: 72.5,-1.5 - parent: 2 - type: Transform - - uid: 11151 - components: - - pos: 72.5,-0.5 - parent: 2 - type: Transform - - uid: 11152 - components: - - pos: 72.5,0.5 - parent: 2 - type: Transform - - uid: 11153 - components: - - pos: 72.5,1.5 - parent: 2 - type: Transform - - uid: 11154 - components: - - pos: 73.5,1.5 - parent: 2 - type: Transform - - uid: 11155 - components: - - pos: 74.5,1.5 - parent: 2 - type: Transform - - uid: 11156 - components: - - pos: 75.5,1.5 - parent: 2 - type: Transform - - uid: 11157 - components: - - pos: 76.5,1.5 - parent: 2 - type: Transform - - uid: 11161 - components: - - pos: 77.5,1.5 - parent: 2 - type: Transform - - uid: 11162 - components: - - pos: 77.5,0.5 - parent: 2 - type: Transform - - uid: 11166 - components: - - pos: 77.5,-0.5 - parent: 2 - type: Transform - - uid: 11167 - components: - - pos: 77.5,-1.5 - parent: 2 - type: Transform - - uid: 11168 - components: - - pos: 77.5,-2.5 - parent: 2 - type: Transform - - uid: 11170 - components: - - pos: 77.5,-3.5 - parent: 2 - type: Transform - - uid: 11171 - components: - - pos: 77.5,-4.5 - parent: 2 - type: Transform - - uid: 11172 - components: - - pos: 76.5,-4.5 - parent: 2 - type: Transform - - uid: 11173 - components: - - pos: 75.5,-4.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11174 - components: - - pos: 70.5,-9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11175 - components: - - pos: 69.5,-9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11177 - components: - - pos: 68.5,-9.5 - parent: 2 - type: Transform - - uid: 11178 - components: - - pos: 67.5,-9.5 - parent: 2 - type: Transform - - uid: 11179 - components: - - pos: 66.5,-9.5 - parent: 2 - type: Transform - - uid: 11183 - components: - - pos: 66.5,-8.5 - parent: 2 - type: Transform - - uid: 11185 - components: - - pos: 66.5,-7.5 - parent: 2 - type: Transform - - uid: 11186 - components: - - pos: 66.5,-6.5 - parent: 2 - type: Transform - - uid: 11187 - components: - - pos: 66.5,-5.5 - parent: 2 - type: Transform - - uid: 11189 - components: - - pos: 65.5,-5.5 - parent: 2 - type: Transform - - uid: 11197 - components: - - pos: 64.5,-5.5 - parent: 2 - type: Transform - - uid: 11204 - components: - - pos: 63.5,-5.5 - parent: 2 - type: Transform - - uid: 11205 - components: - - pos: 62.5,-5.5 - parent: 2 - type: Transform - - uid: 11207 - components: - - pos: 61.5,-5.5 - parent: 2 - type: Transform - - uid: 11213 - components: - - pos: 60.5,-5.5 - parent: 2 - type: Transform - - uid: 11214 - components: - - pos: 59.5,-5.5 - parent: 2 - type: Transform - - uid: 11215 - components: - - pos: 58.5,-5.5 - parent: 2 - type: Transform - - uid: 11218 - components: - - pos: 58.5,-6.5 - parent: 2 - type: Transform - - uid: 11219 - components: - - pos: 58.5,-7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11220 - components: - - pos: 58.5,-8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11226 - components: - - pos: 66.5,-4.5 - parent: 2 - type: Transform - - uid: 11227 - components: - - pos: 66.5,-3.5 - parent: 2 - type: Transform - - uid: 11228 - components: - - pos: 66.5,-2.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11229 - components: - - pos: 66.5,-1.5 - parent: 2 - type: Transform - - uid: 11230 - components: - - pos: 66.5,-0.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11231 - components: - - pos: 71.5,1.5 - parent: 2 - type: Transform - - uid: 11232 - components: - - pos: 70.5,1.5 - parent: 2 - type: Transform - - uid: 11233 - components: - - pos: 69.5,1.5 - parent: 2 - type: Transform - - uid: 11234 - components: - - pos: 68.5,1.5 - parent: 2 - type: Transform - - uid: 11235 - components: - - pos: 67.5,1.5 - parent: 2 - type: Transform - - uid: 11236 - components: - - pos: 66.5,1.5 - parent: 2 - type: Transform - - uid: 11237 - components: - - pos: 66.5,0.5 - parent: 2 - type: Transform - - uid: 11238 - components: - - pos: 54.5,4.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 11239 - components: - - pos: 54.5,3.5 - parent: 2 - type: Transform - - uid: 11240 - components: - - pos: 54.5,2.5 - parent: 2 - type: Transform - - uid: 11241 - components: - - pos: 54.5,1.5 - parent: 2 - type: Transform - - uid: 11242 - components: - - pos: 54.5,0.5 - parent: 2 - type: Transform - - uid: 11257 - components: - - pos: 55.5,0.5 - parent: 2 - type: Transform - - uid: 11258 - components: - - pos: 56.5,0.5 - parent: 2 - type: Transform - - uid: 11259 - components: - - pos: 57.5,0.5 - parent: 2 - type: Transform - - uid: 11260 - components: - - pos: 58.5,0.5 - parent: 2 - type: Transform - - uid: 11261 - components: - - pos: 59.5,0.5 - parent: 2 - type: Transform - - uid: 11262 - components: - - pos: 60.5,0.5 - parent: 2 - type: Transform - - uid: 11269 - components: - - pos: 61.5,0.5 - parent: 2 - type: Transform - - uid: 11270 - components: - - pos: 62.5,0.5 - parent: 2 - type: Transform - - uid: 11275 - components: - - pos: 63.5,0.5 - parent: 2 - type: Transform - - uid: 11276 - components: - - pos: 64.5,0.5 - parent: 2 - type: Transform - - uid: 11277 - components: - - pos: 65.5,0.5 - parent: 2 - type: Transform - - uid: 12139 - components: - - pos: 72.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12140 - components: - - pos: 73.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12141 - components: - - pos: 74.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12145 - components: - - pos: 75.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12146 - components: - - pos: 76.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12147 - components: - - pos: 77.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12148 - components: - - pos: 78.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12149 - components: - - pos: 78.5,-14.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12171 - components: - - pos: 71.5,2.5 - parent: 2 - type: Transform - - uid: 12173 - components: - - pos: 71.5,3.5 - parent: 2 - type: Transform - - uid: 12174 - components: - - pos: 71.5,4.5 - parent: 2 - type: Transform - - uid: 12175 - components: - - pos: 71.5,5.5 - parent: 2 - type: Transform - - uid: 12176 - components: - - pos: 71.5,6.5 - parent: 2 - type: Transform - - uid: 12185 - components: - - pos: 71.5,7.5 - parent: 2 - type: Transform - - uid: 12186 - components: - - pos: 72.5,7.5 - parent: 2 - type: Transform - - uid: 12187 - components: - - pos: 73.5,7.5 - parent: 2 - type: Transform - - uid: 12188 - components: - - pos: 74.5,7.5 - parent: 2 - type: Transform - - uid: 12189 - components: - - pos: 74.5,8.5 - parent: 2 - type: Transform - - uid: 12190 - components: - - pos: 74.5,9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12191 - components: - - pos: 69.5,9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12192 - components: - - pos: 69.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12193 - components: - - pos: 68.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12194 - components: - - pos: 67.5,10.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12195 - components: - - pos: 67.5,9.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12196 - components: - - pos: 67.5,8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12197 - components: - - pos: 66.5,8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12198 - components: - - pos: 65.5,8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12199 - components: - - pos: 65.5,7.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12200 - components: - - pos: 65.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12202 - components: - - pos: 64.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12203 - components: - - pos: 63.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12204 - components: - - pos: 62.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12205 - components: - - pos: 61.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12206 - components: - - pos: 60.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12207 - components: - - pos: 59.5,6.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12208 - components: - - pos: 58.5,6.5 - parent: 2 - type: Transform - - uid: 12209 - components: - - pos: 57.5,6.5 - parent: 2 - type: Transform - - uid: 12210 - components: - - pos: 57.5,7.5 - parent: 2 - type: Transform - - uid: 12211 - components: - - pos: 57.5,8.5 - parent: 2 - type: Transform - - uid: 12212 - components: - - pos: 57.5,9.5 - parent: 2 - type: Transform - - uid: 12213 - components: - - pos: 57.5,10.5 - parent: 2 - type: Transform - - uid: 12648 - components: - - pos: 112.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12649 - components: - - pos: 111.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12650 - components: - - pos: 110.5,-15.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12651 - components: - - pos: 110.5,-14.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12935 - components: - - pos: 29.5,-38.5 - parent: 2 - type: Transform - - uid: 12936 - components: - - pos: 29.5,-39.5 - parent: 2 - type: Transform - - uid: 12937 - components: - - pos: 30.5,-39.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12938 - components: - - pos: 31.5,-39.5 - parent: 2 - type: Transform - - uid: 12939 - components: - - pos: 32.5,-39.5 - parent: 2 - type: Transform - - uid: 12940 - components: - - pos: 33.5,-39.5 - parent: 2 - type: Transform - - uid: 12941 - components: - - pos: 34.5,-39.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12942 - components: - - pos: 35.5,-39.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12943 - components: - - pos: 35.5,-40.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12944 - components: - - pos: 35.5,-41.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12945 - components: - - pos: 35.5,-42.5 - parent: 2 - type: Transform - - uid: 12946 - components: - - pos: 36.5,-42.5 - parent: 2 - type: Transform - - uid: 12947 - components: - - pos: 37.5,-42.5 - parent: 2 - type: Transform - - uid: 12948 - components: - - pos: 37.5,-41.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound -- proto: CableMVStack - entities: - - uid: 5628 - components: - - pos: 17.902254,-23.387651 - parent: 2 - type: Transform - - uid: 6316 - components: - - pos: 90.66321,-10.120396 - parent: 2 - type: Transform -- proto: CableTerminal - entities: - - uid: 338 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-32.5 - parent: 2 - type: Transform - - uid: 682 - components: - - rot: 3.141592653589793 rad - pos: 25.5,-32.5 - parent: 2 - type: Transform - - uid: 886 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-32.5 - parent: 2 - type: Transform - - uid: 4872 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-34.5 - parent: 2 - type: Transform - - uid: 6284 - components: - - pos: 71.5,45.5 - parent: 2 - type: Transform - - uid: 6442 - components: - - rot: 3.141592653589793 rad - pos: 23.5,-15.5 - parent: 2 - type: Transform - - uid: 12647 - components: - - rot: 3.141592653589793 rad - pos: 112.5,-18.5 - parent: 2 - type: Transform -- proto: CandyBowl - entities: - - uid: 13078 - components: - - pos: 54.503376,-4.6494684 - parent: 2 - type: Transform -- proto: CannabisSeeds - entities: - - uid: 11109 - components: - - pos: 41.505302,37.40492 - parent: 2 - type: Transform -- proto: CaptainIDCard - entities: - - uid: 5431 - components: - - pos: 31.514431,39.594784 - parent: 2 - type: Transform -- proto: CarbonDioxideCanister - entities: - - uid: 4771 - components: - - pos: 45.5,-37.5 - parent: 2 - type: Transform - - uid: 12998 - components: - - pos: 34.5,-45.5 - parent: 2 - type: Transform -- proto: Carpet - entities: - - uid: 3 - components: - - pos: 43.5,22.5 - parent: 2 - type: Transform - - uid: 266 - components: - - pos: 9.5,7.5 - parent: 2 - type: Transform - - uid: 268 - components: - - pos: 11.5,6.5 - parent: 2 - type: Transform - - uid: 269 - components: - - pos: 11.5,7.5 - parent: 2 - type: Transform - - uid: 549 - components: - - pos: 12.5,-2.5 - parent: 2 - type: Transform - - uid: 550 - components: - - pos: 11.5,-2.5 - parent: 2 - type: Transform - - uid: 551 - components: - - pos: 11.5,-3.5 - parent: 2 - type: Transform - - uid: 552 - components: - - pos: 12.5,-3.5 - parent: 2 - type: Transform - - uid: 569 - components: - - pos: 9.5,6.5 - parent: 2 - type: Transform - - uid: 571 - components: - - pos: 37.5,-7.5 - parent: 2 - type: Transform - - uid: 936 - components: - - pos: 36.5,-5.5 - parent: 2 - type: Transform - - uid: 1525 - components: - - pos: 36.5,-7.5 - parent: 2 - type: Transform - - uid: 1533 - components: - - pos: 37.5,-3.5 - parent: 2 - type: Transform - - uid: 1537 - components: - - pos: 36.5,-3.5 - parent: 2 - type: Transform - - uid: 1561 - components: - - pos: 36.5,-4.5 - parent: 2 - type: Transform - - uid: 1586 - components: - - pos: 37.5,-5.5 - parent: 2 - type: Transform - - uid: 1630 - components: - - pos: 37.5,-6.5 - parent: 2 - type: Transform - - uid: 1635 - components: - - pos: 37.5,-4.5 - parent: 2 - type: Transform - - uid: 1637 - components: - - pos: 36.5,-6.5 - parent: 2 - type: Transform - - uid: 2516 - components: - - pos: 39.5,7.5 - parent: 2 - type: Transform - - uid: 2517 - components: - - pos: 38.5,7.5 - parent: 2 - type: Transform - - uid: 2518 - components: - - pos: 37.5,7.5 - parent: 2 - type: Transform - - uid: 2519 - components: - - pos: 36.5,7.5 - parent: 2 - type: Transform - - uid: 2520 - components: - - pos: 35.5,7.5 - parent: 2 - type: Transform - - uid: 2521 - components: - - pos: 35.5,8.5 - parent: 2 - type: Transform - - uid: 2522 - components: - - pos: 35.5,9.5 - parent: 2 - type: Transform - - uid: 2523 - components: - - pos: 35.5,6.5 - parent: 2 - type: Transform - - uid: 2524 - components: - - pos: 35.5,5.5 - parent: 2 - type: Transform - - uid: 2525 - components: - - pos: 34.5,7.5 - parent: 2 - type: Transform - - uid: 2611 - components: - - pos: 37.5,41.5 - parent: 2 - type: Transform - - uid: 2612 - components: - - pos: 36.5,41.5 - parent: 2 - type: Transform - - uid: 2613 - components: - - pos: 36.5,40.5 - parent: 2 - type: Transform - - uid: 2614 - components: - - pos: 37.5,40.5 - parent: 2 - type: Transform - - uid: 2697 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,31.5 - parent: 2 - type: Transform - - uid: 2698 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,31.5 - parent: 2 - type: Transform - - uid: 2699 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,31.5 - parent: 2 - type: Transform - - uid: 2700 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,31.5 - parent: 2 - type: Transform - - uid: 2701 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,31.5 - parent: 2 - type: Transform - - uid: 2702 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,31.5 - parent: 2 - type: Transform - - uid: 2703 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,30.5 - parent: 2 - type: Transform - - uid: 2704 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,30.5 - parent: 2 - type: Transform - - uid: 2705 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,30.5 - parent: 2 - type: Transform - - uid: 2706 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,31.5 - parent: 2 - type: Transform - - uid: 2707 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,32.5 - parent: 2 - type: Transform - - uid: 2708 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,32.5 - parent: 2 - type: Transform - - uid: 2709 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,32.5 - parent: 2 - type: Transform - - uid: 2710 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,31.5 - parent: 2 - type: Transform - - uid: 2761 - components: - - pos: 24.5,40.5 - parent: 2 - type: Transform - - uid: 2762 - components: - - pos: 23.5,40.5 - parent: 2 - type: Transform - - uid: 2763 - components: - - pos: 22.5,40.5 - parent: 2 - type: Transform - - uid: 2764 - components: - - pos: 21.5,40.5 - parent: 2 - type: Transform - - uid: 2765 - components: - - pos: 21.5,39.5 - parent: 2 - type: Transform - - uid: 2766 - components: - - pos: 22.5,39.5 - parent: 2 - type: Transform - - uid: 2767 - components: - - pos: 23.5,39.5 - parent: 2 - type: Transform - - uid: 2768 - components: - - pos: 24.5,39.5 - parent: 2 - type: Transform - - uid: 2769 - components: - - pos: 23.5,43.5 - parent: 2 - type: Transform - - uid: 2770 - components: - - pos: 22.5,43.5 - parent: 2 - type: Transform - - uid: 5453 - components: - - pos: 67.5,35.5 - parent: 2 - type: Transform - - uid: 6529 - components: - - pos: 43.5,20.5 - parent: 2 - type: Transform - - uid: 6530 - components: - - pos: 42.5,20.5 - parent: 2 - type: Transform - - uid: 6531 - components: - - pos: 42.5,19.5 - parent: 2 - type: Transform - - uid: 6532 - components: - - pos: 43.5,19.5 - parent: 2 - type: Transform - - uid: 6533 - components: - - pos: 43.5,18.5 - parent: 2 - type: Transform - - uid: 6534 - components: - - pos: 42.5,18.5 - parent: 2 - type: Transform - - uid: 10807 - components: - - pos: 26.5,47.5 - parent: 2 - type: Transform - - uid: 10808 - components: - - pos: 26.5,48.5 - parent: 2 - type: Transform - - uid: 11009 - components: - - pos: 27.5,47.5 - parent: 2 - type: Transform - - uid: 11012 - components: - - pos: 27.5,48.5 - parent: 2 - type: Transform - - uid: 11013 - components: - - pos: 28.5,47.5 - parent: 2 - type: Transform - - uid: 11131 - components: - - pos: 28.5,48.5 - parent: 2 - type: Transform - - uid: 11940 - components: - - pos: 44.5,22.5 - parent: 2 - type: Transform - - uid: 11941 - components: - - pos: 45.5,22.5 - parent: 2 - type: Transform - - uid: 11942 - components: - - pos: 45.5,23.5 - parent: 2 - type: Transform - - uid: 11943 - components: - - pos: 45.5,24.5 - parent: 2 - type: Transform - - uid: 11944 - components: - - pos: 44.5,23.5 - parent: 2 - type: Transform - - uid: 12263 - components: - - pos: 16.5,13.5 - parent: 2 - type: Transform - - uid: 12264 - components: - - pos: 15.5,13.5 - parent: 2 - type: Transform - - uid: 12265 - components: - - pos: 14.5,13.5 - parent: 2 - type: Transform - - uid: 12266 - components: - - pos: 16.5,15.5 - parent: 2 - type: Transform - - uid: 12267 - components: - - pos: 15.5,15.5 - parent: 2 - type: Transform - - uid: 12268 - components: - - pos: 14.5,15.5 - parent: 2 - type: Transform -- proto: CarpetBlack - entities: - - uid: 5459 - components: - - pos: 67.5,41.5 - parent: 2 - type: Transform -- proto: CarpetBlue - entities: - - uid: 71 - components: - - pos: 32.5,42.5 - parent: 2 - type: Transform - - uid: 73 - components: - - pos: 34.5,40.5 - parent: 2 - type: Transform - - uid: 76 - components: - - pos: 32.5,41.5 - parent: 2 - type: Transform - - uid: 82 - components: - - pos: 32.5,40.5 - parent: 2 - type: Transform - - uid: 247 - components: - - pos: 34.5,42.5 - parent: 2 - type: Transform - - uid: 248 - components: - - pos: 34.5,41.5 - parent: 2 - type: Transform - - uid: 249 - components: - - pos: 33.5,42.5 - parent: 2 - type: Transform - - uid: 5455 - components: - - pos: 67.5,38.5 - parent: 2 - type: Transform - - uid: 5456 - components: - - pos: 67.5,37.5 - parent: 2 - type: Transform - - uid: 9565 - components: - - pos: 33.5,41.5 - parent: 2 - type: Transform - - uid: 9574 - components: - - pos: 33.5,40.5 - parent: 2 - type: Transform -- proto: CarpetChapel - entities: - - uid: 8377 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,9.5 - parent: 2 - type: Transform - - uid: 8378 - components: - - pos: 37.5,8.5 - parent: 2 - type: Transform - - uid: 8379 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,8.5 - parent: 2 - type: Transform - - uid: 8380 - components: - - rot: 3.141592653589793 rad - pos: 36.5,9.5 - parent: 2 - type: Transform - - uid: 8381 - components: - - rot: 3.141592653589793 rad - pos: 38.5,9.5 - parent: 2 - type: Transform - - uid: 8382 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,8.5 - parent: 2 - type: Transform - - uid: 8390 - components: - - rot: 3.141592653589793 rad - pos: 38.5,6.5 - parent: 2 - type: Transform - - uid: 8656 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,6.5 - parent: 2 - type: Transform - - uid: 8657 - components: - - pos: 37.5,5.5 - parent: 2 - type: Transform - - uid: 8767 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,5.5 - parent: 2 - type: Transform - - uid: 8831 - components: - - rot: 3.141592653589793 rad - pos: 36.5,6.5 - parent: 2 - type: Transform - - uid: 8841 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,5.5 - parent: 2 - type: Transform - - uid: 8888 - components: - - rot: 3.141592653589793 rad - pos: 34.5,6.5 - parent: 2 - type: Transform - - uid: 9136 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,5.5 - parent: 2 - type: Transform - - uid: 9138 - components: - - rot: 3.141592653589793 rad - pos: 34.5,9.5 - parent: 2 - type: Transform - - uid: 9139 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,8.5 - parent: 2 - type: Transform - - uid: 9731 - components: - - pos: 30.5,4.5 - parent: 2 - type: Transform - - uid: 9732 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,5.5 - parent: 2 - type: Transform - - uid: 9733 - components: - - rot: 3.141592653589793 rad - pos: 31.5,5.5 - parent: 2 - type: Transform - - uid: 9734 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,4.5 - parent: 2 - type: Transform -- proto: CarpetGreen - entities: - - uid: 3411 - components: - - rot: 3.141592653589793 rad - pos: 67.5,27.5 - parent: 2 - type: Transform - - uid: 3445 - components: - - rot: 3.141592653589793 rad - pos: 67.5,28.5 - parent: 2 - type: Transform - - uid: 3446 - components: - - rot: 3.141592653589793 rad - pos: 67.5,29.5 - parent: 2 - type: Transform - - uid: 5463 - components: - - pos: 69.5,36.5 - parent: 2 - type: Transform - - uid: 5514 - components: - - rot: 3.141592653589793 rad - pos: 67.5,31.5 - parent: 2 - type: Transform - - uid: 5515 - components: - - rot: 3.141592653589793 rad - pos: 67.5,32.5 - parent: 2 - type: Transform - - uid: 5516 - components: - - rot: 3.141592653589793 rad - pos: 67.5,33.5 - parent: 2 - type: Transform - - uid: 6938 - components: - - pos: 21.5,17.5 - parent: 2 - type: Transform - - uid: 6939 - components: - - pos: 21.5,18.5 - parent: 2 - type: Transform - - uid: 6940 - components: - - pos: 22.5,17.5 - parent: 2 - type: Transform - - uid: 6941 - components: - - pos: 22.5,18.5 - parent: 2 - type: Transform - - uid: 12679 - components: - - pos: 105.5,-13.5 - parent: 2 - type: Transform - - uid: 12680 - components: - - pos: 105.5,-12.5 - parent: 2 - type: Transform - - uid: 12681 - components: - - pos: 106.5,-13.5 - parent: 2 - type: Transform - - uid: 12682 - components: - - pos: 106.5,-12.5 - parent: 2 - type: Transform - - uid: 12683 - components: - - pos: 107.5,-13.5 - parent: 2 - type: Transform - - uid: 12684 - components: - - pos: 107.5,-12.5 - parent: 2 - type: Transform -- proto: CarpetOrange - entities: - - uid: 5495 - components: - - pos: 70.5,34.5 - parent: 2 - type: Transform - - uid: 5496 - components: - - pos: 70.5,33.5 - parent: 2 - type: Transform - - uid: 5497 - components: - - pos: 70.5,32.5 - parent: 2 - type: Transform - - uid: 5498 - components: - - pos: 70.5,27.5 - parent: 2 - type: Transform - - uid: 5499 - components: - - pos: 70.5,28.5 - parent: 2 - type: Transform - - uid: 5500 - components: - - pos: 70.5,29.5 - parent: 2 - type: Transform -- proto: CarpetPink - entities: - - uid: 1240 - components: - - pos: 5.5,-13.5 - parent: 2 - type: Transform - - uid: 1244 - components: - - pos: 5.5,-12.5 - parent: 2 - type: Transform - - uid: 5457 - components: - - pos: 67.5,39.5 - parent: 2 - type: Transform - - uid: 5682 - components: - - pos: 6.5,-13.5 - parent: 2 - type: Transform - - uid: 13066 - components: - - pos: 6.5,-12.5 - parent: 2 - type: Transform - - uid: 13067 - components: - - pos: 7.5,-13.5 - parent: 2 - type: Transform - - uid: 13068 - components: - - pos: 7.5,-12.5 - parent: 2 - type: Transform - - uid: 13069 - components: - - pos: 4.5,-13.5 - parent: 2 - type: Transform - - uid: 13070 - components: - - pos: 4.5,-12.5 - parent: 2 - type: Transform -- proto: CarpetPurple - entities: - - uid: 5454 - components: - - pos: 67.5,36.5 - parent: 2 - type: Transform -- proto: CarpetSBlue - entities: - - uid: 5458 - components: - - pos: 67.5,40.5 - parent: 2 - type: Transform - - uid: 5462 - components: - - pos: 69.5,39.5 - parent: 2 - type: Transform - - uid: 10284 - components: - - pos: 18.5,-3.5 - parent: 2 - type: Transform - - uid: 10285 - components: - - pos: 18.5,-2.5 - parent: 2 - type: Transform - - uid: 10286 - components: - - pos: 19.5,-3.5 - parent: 2 - type: Transform - - uid: 10287 - components: - - pos: 19.5,-2.5 - parent: 2 - type: Transform - - uid: 10288 - components: - - pos: 20.5,-3.5 - parent: 2 - type: Transform - - uid: 10289 - components: - - pos: 20.5,-2.5 - parent: 2 - type: Transform -- proto: Catwalk - entities: - - uid: 592 - components: - - pos: 14.5,-21.5 - parent: 2 - type: Transform - - uid: 593 - components: - - pos: 13.5,-21.5 - parent: 2 - type: Transform - - uid: 594 - components: - - pos: 4.5,-31.5 - parent: 2 - type: Transform - - uid: 595 - components: - - pos: 4.5,-32.5 - parent: 2 - type: Transform - - uid: 777 - components: - - pos: 43.5,-33.5 - parent: 2 - type: Transform - - uid: 946 - components: - - pos: 43.5,-24.5 - parent: 2 - type: Transform - - uid: 1006 - components: - - pos: 43.5,-31.5 - parent: 2 - type: Transform - - uid: 1007 - components: - - pos: 43.5,-32.5 - parent: 2 - type: Transform - - uid: 1008 - components: - - pos: 43.5,-29.5 - parent: 2 - type: Transform - - uid: 1009 - components: - - pos: 43.5,-28.5 - parent: 2 - type: Transform - - uid: 1010 - components: - - pos: 43.5,-25.5 - parent: 2 - type: Transform - - uid: 1011 - components: - - pos: 43.5,-26.5 - parent: 2 - type: Transform - - uid: 1012 - components: - - pos: 43.5,-27.5 - parent: 2 - type: Transform - - uid: 1013 - components: - - pos: 43.5,-30.5 - parent: 2 - type: Transform - - uid: 1014 - components: - - pos: 43.5,-23.5 - parent: 2 - type: Transform - - uid: 1374 - components: - - pos: -1.5,-35.5 - parent: 2 - type: Transform - - uid: 1375 - components: - - pos: -2.5,-35.5 - parent: 2 - type: Transform - - uid: 1376 - components: - - pos: -3.5,-35.5 - parent: 2 - type: Transform - - uid: 1377 - components: - - pos: -4.5,-35.5 - parent: 2 - type: Transform - - uid: 1378 - components: - - pos: -4.5,-34.5 - parent: 2 - type: Transform - - uid: 1379 - components: - - pos: -4.5,-33.5 - parent: 2 - type: Transform - - uid: 1380 - components: - - pos: -4.5,-32.5 - parent: 2 - type: Transform - - uid: 1381 - components: - - pos: -4.5,-31.5 - parent: 2 - type: Transform - - uid: 1382 - components: - - pos: -4.5,-36.5 - parent: 2 - type: Transform - - uid: 1383 - components: - - pos: -4.5,-37.5 - parent: 2 - type: Transform - - uid: 1384 - components: - - pos: -4.5,-38.5 - parent: 2 - type: Transform - - uid: 1385 - components: - - pos: -4.5,-39.5 - parent: 2 - type: Transform - - uid: 1398 - components: - - pos: -5.5,-35.5 - parent: 2 - type: Transform - - uid: 1399 - components: - - pos: -6.5,-35.5 - parent: 2 - type: Transform - - uid: 1400 - components: - - pos: -7.5,-35.5 - parent: 2 - type: Transform - - uid: 1401 - components: - - pos: -8.5,-35.5 - parent: 2 - type: Transform - - uid: 1402 - components: - - pos: -8.5,-36.5 - parent: 2 - type: Transform - - uid: 1403 - components: - - pos: -8.5,-37.5 - parent: 2 - type: Transform - - uid: 1404 - components: - - pos: -8.5,-38.5 - parent: 2 - type: Transform - - uid: 1405 - components: - - pos: -8.5,-39.5 - parent: 2 - type: Transform - - uid: 1406 - components: - - pos: -8.5,-40.5 - parent: 2 - type: Transform - - uid: 1407 - components: - - pos: -8.5,-34.5 - parent: 2 - type: Transform - - uid: 1408 - components: - - pos: -8.5,-33.5 - parent: 2 - type: Transform - - uid: 1409 - components: - - pos: -8.5,-32.5 - parent: 2 - type: Transform - - uid: 1410 - components: - - pos: -8.5,-31.5 - parent: 2 - type: Transform - - uid: 1411 - components: - - pos: -8.5,-30.5 - parent: 2 - type: Transform - - uid: 1428 - components: - - pos: -9.5,-35.5 - parent: 2 - type: Transform - - uid: 1429 - components: - - pos: -10.5,-35.5 - parent: 2 - type: Transform - - uid: 1430 - components: - - pos: -11.5,-35.5 - parent: 2 - type: Transform - - uid: 1431 - components: - - pos: -12.5,-35.5 - parent: 2 - type: Transform - - uid: 1432 - components: - - pos: -12.5,-34.5 - parent: 2 - type: Transform - - uid: 1433 - components: - - pos: -12.5,-33.5 - parent: 2 - type: Transform - - uid: 1434 - components: - - pos: -12.5,-32.5 - parent: 2 - type: Transform - - uid: 1435 - components: - - pos: -12.5,-31.5 - parent: 2 - type: Transform - - uid: 1436 - components: - - pos: -12.5,-36.5 - parent: 2 - type: Transform - - uid: 1437 - components: - - pos: -12.5,-37.5 - parent: 2 - type: Transform - - uid: 1438 - components: - - pos: -12.5,-38.5 - parent: 2 - type: Transform - - uid: 1439 - components: - - pos: -12.5,-39.5 - parent: 2 - type: Transform - - uid: 1440 - components: - - pos: -13.5,-35.5 - parent: 2 - type: Transform - - uid: 1441 - components: - - pos: -14.5,-35.5 - parent: 2 - type: Transform - - uid: 1442 - components: - - pos: -15.5,-35.5 - parent: 2 - type: Transform - - uid: 1468 - components: - - pos: 21.5,-40.5 - parent: 2 - type: Transform - - uid: 1472 - components: - - pos: 43.5,-34.5 - parent: 2 - type: Transform - - uid: 1474 - components: - - pos: 13.5,-38.5 - parent: 2 - type: Transform - - uid: 1475 - components: - - pos: 12.5,-38.5 - parent: 2 - type: Transform - - uid: 1476 - components: - - pos: 11.5,-38.5 - parent: 2 - type: Transform - - uid: 1477 - components: - - pos: 10.5,-38.5 - parent: 2 - type: Transform - - uid: 1478 - components: - - pos: 9.5,-38.5 - parent: 2 - type: Transform - - uid: 1479 - components: - - pos: 8.5,-38.5 - parent: 2 - type: Transform - - uid: 1486 - components: - - pos: 21.5,-21.5 - parent: 2 - type: Transform - - uid: 1492 - components: - - pos: 19.5,-21.5 - parent: 2 - type: Transform - - uid: 1493 - components: - - pos: 20.5,-21.5 - parent: 2 - type: Transform - - uid: 1519 - components: - - pos: 18.5,-21.5 - parent: 2 - type: Transform - - uid: 1585 - components: - - pos: 22.5,-21.5 - parent: 2 - type: Transform - - uid: 1780 - components: - - pos: 23.5,-21.5 - parent: 2 - type: Transform - - uid: 2297 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,34.5 - parent: 2 - type: Transform - - uid: 2298 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,33.5 - parent: 2 - type: Transform - - uid: 2299 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,32.5 - parent: 2 - type: Transform - - uid: 3807 - components: - - pos: 79.5,-9.5 - parent: 2 - type: Transform - - uid: 3904 - components: - - pos: 75.5,45.5 - parent: 2 - type: Transform - - uid: 3905 - components: - - pos: 76.5,45.5 - parent: 2 - type: Transform - - uid: 3906 - components: - - pos: 77.5,45.5 - parent: 2 - type: Transform - - uid: 3907 - components: - - pos: 78.5,45.5 - parent: 2 - type: Transform - - uid: 3908 - components: - - pos: 78.5,46.5 - parent: 2 - type: Transform - - uid: 3909 - components: - - pos: 78.5,47.5 - parent: 2 - type: Transform - - uid: 3910 - components: - - pos: 78.5,48.5 - parent: 2 - type: Transform - - uid: 3911 - components: - - pos: 78.5,49.5 - parent: 2 - type: Transform - - uid: 3912 - components: - - pos: 78.5,44.5 - parent: 2 - type: Transform - - uid: 3913 - components: - - pos: 78.5,43.5 - parent: 2 - type: Transform - - uid: 3914 - components: - - pos: 78.5,42.5 - parent: 2 - type: Transform - - uid: 3915 - components: - - pos: 78.5,41.5 - parent: 2 - type: Transform - - uid: 3916 - components: - - pos: 79.5,45.5 - parent: 2 - type: Transform - - uid: 3917 - components: - - pos: 80.5,45.5 - parent: 2 - type: Transform - - uid: 3918 - components: - - pos: 81.5,45.5 - parent: 2 - type: Transform - - uid: 3919 - components: - - pos: 82.5,45.5 - parent: 2 - type: Transform - - uid: 3920 - components: - - pos: 82.5,46.5 - parent: 2 - type: Transform - - uid: 3921 - components: - - pos: 82.5,47.5 - parent: 2 - type: Transform - - uid: 3922 - components: - - pos: 82.5,48.5 - parent: 2 - type: Transform - - uid: 3923 - components: - - pos: 82.5,40.5 - parent: 2 - type: Transform - - uid: 3924 - components: - - pos: 82.5,49.5 - parent: 2 - type: Transform - - uid: 3925 - components: - - pos: 82.5,50.5 - parent: 2 - type: Transform - - uid: 3926 - components: - - pos: 82.5,41.5 - parent: 2 - type: Transform - - uid: 3927 - components: - - pos: 82.5,42.5 - parent: 2 - type: Transform - - uid: 3928 - components: - - pos: 82.5,43.5 - parent: 2 - type: Transform - - uid: 3929 - components: - - pos: 82.5,44.5 - parent: 2 - type: Transform - - uid: 3930 - components: - - pos: 83.5,45.5 - parent: 2 - type: Transform - - uid: 3931 - components: - - pos: 84.5,45.5 - parent: 2 - type: Transform - - uid: 3932 - components: - - pos: 85.5,45.5 - parent: 2 - type: Transform - - uid: 3933 - components: - - pos: 86.5,45.5 - parent: 2 - type: Transform - - uid: 3934 - components: - - pos: 86.5,44.5 - parent: 2 - type: Transform - - uid: 3935 - components: - - pos: 86.5,43.5 - parent: 2 - type: Transform - - uid: 3936 - components: - - pos: 86.5,42.5 - parent: 2 - type: Transform - - uid: 3937 - components: - - pos: 86.5,41.5 - parent: 2 - type: Transform - - uid: 3938 - components: - - pos: 86.5,46.5 - parent: 2 - type: Transform - - uid: 3939 - components: - - pos: 86.5,47.5 - parent: 2 - type: Transform - - uid: 3940 - components: - - pos: 86.5,48.5 - parent: 2 - type: Transform - - uid: 3941 - components: - - pos: 86.5,49.5 - parent: 2 - type: Transform - - uid: 3942 - components: - - pos: 87.5,45.5 - parent: 2 - type: Transform - - uid: 3943 - components: - - pos: 88.5,45.5 - parent: 2 - type: Transform - - uid: 3944 - components: - - pos: 89.5,45.5 - parent: 2 - type: Transform - - uid: 4440 - components: - - pos: 4.5,-30.5 - parent: 2 - type: Transform - - uid: 4441 - components: - - pos: 5.5,-30.5 - parent: 2 - type: Transform - - uid: 4453 - components: - - pos: 10.5,-23.5 - parent: 2 - type: Transform - - uid: 4454 - components: - - pos: 11.5,-23.5 - parent: 2 - type: Transform - - uid: 4776 - components: - - pos: 30.5,-43.5 - parent: 2 - type: Transform - - uid: 4777 - components: - - pos: 30.5,-42.5 - parent: 2 - type: Transform - - uid: 4778 - components: - - pos: 30.5,-41.5 - parent: 2 - type: Transform - - uid: 4779 - components: - - pos: 30.5,-40.5 - parent: 2 - type: Transform - - uid: 4780 - components: - - pos: 30.5,-39.5 - parent: 2 - type: Transform - - uid: 4782 - components: - - pos: 21.5,-39.5 - parent: 2 - type: Transform - - uid: 4799 - components: - - pos: 21.5,-41.5 - parent: 2 - type: Transform - - uid: 4986 - components: - - pos: 51.5,6.5 - parent: 2 - type: Transform - - uid: 5082 - components: - - pos: 53.5,6.5 - parent: 2 - type: Transform - - uid: 5145 - components: - - pos: 46.5,6.5 - parent: 2 - type: Transform - - uid: 5613 - components: - - pos: 35.5,-40.5 - parent: 2 - type: Transform - - uid: 5614 - components: - - pos: 35.5,-39.5 - parent: 2 - type: Transform - - uid: 5615 - components: - - pos: 34.5,-39.5 - parent: 2 - type: Transform - - uid: 5616 - components: - - pos: 36.5,-39.5 - parent: 2 - type: Transform - - uid: 5623 - components: - - pos: 11.5,-26.5 - parent: 2 - type: Transform - - uid: 5624 - components: - - pos: 10.5,-26.5 - parent: 2 - type: Transform - - uid: 5860 - components: - - pos: 16.5,-21.5 - parent: 2 - type: Transform - - uid: 5870 - components: - - pos: 15.5,-21.5 - parent: 2 - type: Transform - - uid: 5871 - components: - - pos: 17.5,-21.5 - parent: 2 - type: Transform - - uid: 5914 - components: - - pos: 32.5,-19.5 - parent: 2 - type: Transform - - uid: 5915 - components: - - pos: 33.5,-19.5 - parent: 2 - type: Transform - - uid: 5916 - components: - - pos: 34.5,-19.5 - parent: 2 - type: Transform - - uid: 5917 - components: - - pos: 35.5,-19.5 - parent: 2 - type: Transform - - uid: 5918 - components: - - pos: 37.5,-19.5 - parent: 2 - type: Transform - - uid: 5919 - components: - - pos: 38.5,-19.5 - parent: 2 - type: Transform - - uid: 5920 - components: - - pos: 39.5,-19.5 - parent: 2 - type: Transform - - uid: 7007 - components: - - pos: 44.5,6.5 - parent: 2 - type: Transform - - uid: 7012 - components: - - pos: 47.5,6.5 - parent: 2 - type: Transform - - uid: 7820 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,27.5 - parent: 2 - type: Transform - - uid: 8283 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,16.5 - parent: 2 - type: Transform - - uid: 8284 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,17.5 - parent: 2 - type: Transform - - uid: 8302 - components: - - pos: 52.5,6.5 - parent: 2 - type: Transform - - uid: 8311 - components: - - pos: 50.5,6.5 - parent: 2 - type: Transform - - uid: 8312 - components: - - pos: 49.5,6.5 - parent: 2 - type: Transform - - uid: 8313 - components: - - pos: 45.5,6.5 - parent: 2 - type: Transform - - uid: 8750 - components: - - pos: 95.5,-19.5 - parent: 2 - type: Transform - - uid: 8751 - components: - - pos: 96.5,-19.5 - parent: 2 - type: Transform - - uid: 8752 - components: - - pos: 97.5,-19.5 - parent: 2 - type: Transform - - uid: 8753 - components: - - pos: 98.5,-19.5 - parent: 2 - type: Transform - - uid: 8754 - components: - - pos: 98.5,-20.5 - parent: 2 - type: Transform - - uid: 8755 - components: - - pos: 97.5,-20.5 - parent: 2 - type: Transform - - uid: 8756 - components: - - pos: 96.5,-20.5 - parent: 2 - type: Transform - - uid: 8757 - components: - - pos: 95.5,-20.5 - parent: 2 - type: Transform - - uid: 8850 - components: - - rot: -1.5707963267948966 rad - pos: 103.5,-10.5 - parent: 2 - type: Transform - - uid: 8851 - components: - - rot: -1.5707963267948966 rad - pos: 102.5,-10.5 - parent: 2 - type: Transform - - uid: 8852 - components: - - rot: -1.5707963267948966 rad - pos: 101.5,-10.5 - parent: 2 - type: Transform - - uid: 8853 - components: - - rot: -1.5707963267948966 rad - pos: 100.5,-10.5 - parent: 2 - type: Transform - - uid: 8854 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,27.5 - parent: 2 - type: Transform - - uid: 8855 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,27.5 - parent: 2 - type: Transform - - uid: 8856 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,27.5 - parent: 2 - type: Transform - - uid: 8916 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,27.5 - parent: 2 - type: Transform - - uid: 8917 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,27.5 - parent: 2 - type: Transform - - uid: 8918 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,27.5 - parent: 2 - type: Transform - - uid: 8919 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,27.5 - parent: 2 - type: Transform - - uid: 9927 - components: - - pos: 54.5,27.5 - parent: 2 - type: Transform - - uid: 9928 - components: - - pos: 58.5,27.5 - parent: 2 - type: Transform - - uid: 10711 - components: - - pos: 63.5,48.5 - parent: 2 - type: Transform - - uid: 10712 - components: - - pos: 62.5,48.5 - parent: 2 - type: Transform - - uid: 10713 - components: - - pos: 61.5,48.5 - parent: 2 - type: Transform - - uid: 10714 - components: - - pos: 60.5,48.5 - parent: 2 - type: Transform - - uid: 10715 - components: - - pos: 59.5,48.5 - parent: 2 - type: Transform - - uid: 10716 - components: - - pos: 58.5,48.5 - parent: 2 - type: Transform - - uid: 10717 - components: - - pos: 57.5,48.5 - parent: 2 - type: Transform - - uid: 10718 - components: - - pos: 56.5,48.5 - parent: 2 - type: Transform - - uid: 10719 - components: - - pos: 54.5,48.5 - parent: 2 - type: Transform - - uid: 10720 - components: - - pos: 53.5,48.5 - parent: 2 - type: Transform - - uid: 10721 - components: - - pos: 52.5,48.5 - parent: 2 - type: Transform - - uid: 10722 - components: - - pos: 51.5,48.5 - parent: 2 - type: Transform - - uid: 10723 - components: - - pos: 50.5,48.5 - parent: 2 - type: Transform - - uid: 10724 - components: - - pos: 49.5,48.5 - parent: 2 - type: Transform - - uid: 10725 - components: - - pos: 55.5,48.5 - parent: 2 - type: Transform - - uid: 10726 - components: - - pos: 43.5,41.5 - parent: 2 - type: Transform - - uid: 10727 - components: - - pos: 42.5,41.5 - parent: 2 - type: Transform - - uid: 10728 - components: - - pos: 41.5,41.5 - parent: 2 - type: Transform - - uid: 10729 - components: - - pos: 40.5,41.5 - parent: 2 - type: Transform - - uid: 10730 - components: - - pos: 67.5,10.5 - parent: 2 - type: Transform - - uid: 10731 - components: - - pos: 68.5,10.5 - parent: 2 - type: Transform - - uid: 10732 - components: - - pos: 70.5,10.5 - parent: 2 - type: Transform - - uid: 10733 - components: - - pos: 69.5,10.5 - parent: 2 - type: Transform - - uid: 10734 - components: - - pos: 71.5,10.5 - parent: 2 - type: Transform - - uid: 10736 - components: - - pos: 73.5,10.5 - parent: 2 - type: Transform - - uid: 10737 - components: - - pos: 84.5,3.5 - parent: 2 - type: Transform - - uid: 10738 - components: - - pos: 83.5,4.5 - parent: 2 - type: Transform - - uid: 10739 - components: - - pos: 84.5,2.5 - parent: 2 - type: Transform - - uid: 10740 - components: - - pos: 84.5,1.5 - parent: 2 - type: Transform - - uid: 10741 - components: - - pos: 84.5,0.5 - parent: 2 - type: Transform - - uid: 10742 - components: - - pos: 84.5,-1.5 - parent: 2 - type: Transform - - uid: 10743 - components: - - pos: 84.5,-2.5 - parent: 2 - type: Transform - - uid: 10744 - components: - - pos: 85.5,-2.5 - parent: 2 - type: Transform - - uid: 10757 - components: - - pos: 84.5,-16.5 - parent: 2 - type: Transform - - uid: 10758 - components: - - pos: 83.5,-16.5 - parent: 2 - type: Transform - - uid: 10759 - components: - - pos: 82.5,-16.5 - parent: 2 - type: Transform - - uid: 10760 - components: - - pos: 78.5,-16.5 - parent: 2 - type: Transform - - uid: 10761 - components: - - pos: 75.5,-16.5 - parent: 2 - type: Transform - - uid: 10762 - components: - - pos: 74.5,-16.5 - parent: 2 - type: Transform - - uid: 10763 - components: - - pos: 72.5,-16.5 - parent: 2 - type: Transform - - uid: 10764 - components: - - pos: 69.5,-16.5 - parent: 2 - type: Transform - - uid: 10765 - components: - - pos: 69.5,-15.5 - parent: 2 - type: Transform - - uid: 10766 - components: - - pos: 69.5,-17.5 - parent: 2 - type: Transform - - uid: 10767 - components: - - pos: 69.5,-18.5 - parent: 2 - type: Transform - - uid: 10768 - components: - - pos: 66.5,29.5 - parent: 2 - type: Transform - - uid: 10769 - components: - - pos: 67.5,46.5 - parent: 2 - type: Transform - - uid: 10770 - components: - - pos: 49.5,47.5 - parent: 2 - type: Transform - - uid: 10771 - components: - - pos: 63.5,47.5 - parent: 2 - type: Transform - - uid: 10772 - components: - - pos: 29.5,32.5 - parent: 2 - type: Transform - - uid: 10773 - components: - - pos: 30.5,32.5 - parent: 2 - type: Transform - - uid: 10774 - components: - - pos: 26.5,10.5 - parent: 2 - type: Transform - - uid: 10775 - components: - - pos: 38.5,11.5 - parent: 2 - type: Transform - - uid: 10776 - components: - - pos: 18.5,3.5 - parent: 2 - type: Transform - - uid: 10778 - components: - - pos: 15.5,7.5 - parent: 2 - type: Transform - - uid: 10779 - components: - - pos: 5.5,-28.5 - parent: 2 - type: Transform - - uid: 10780 - components: - - pos: 5.5,-25.5 - parent: 2 - type: Transform - - uid: 10781 - components: - - pos: 8.5,-24.5 - parent: 2 - type: Transform - - uid: 10782 - components: - - pos: 6.5,-24.5 - parent: 2 - type: Transform - - uid: 10815 - components: - - pos: 81.5,12.5 - parent: 2 - type: Transform - - uid: 10816 - components: - - pos: 81.5,11.5 - parent: 2 - type: Transform - - uid: 10817 - components: - - pos: 81.5,10.5 - parent: 2 - type: Transform - - uid: 10818 - components: - - pos: 81.5,9.5 - parent: 2 - type: Transform - - uid: 10819 - components: - - pos: 81.5,8.5 - parent: 2 - type: Transform - - uid: 10820 - components: - - pos: 81.5,7.5 - parent: 2 - type: Transform - - uid: 10821 - components: - - pos: 81.5,6.5 - parent: 2 - type: Transform - - uid: 10959 - components: - - pos: 15.5,-50.5 - parent: 2 - type: Transform - - uid: 10960 - components: - - pos: 16.5,-50.5 - parent: 2 - type: Transform - - uid: 10962 - components: - - pos: 16.5,-53.5 - parent: 2 - type: Transform - - uid: 10966 - components: - - pos: 15.5,-53.5 - parent: 2 - type: Transform - - uid: 10967 - components: - - pos: 17.5,-46.5 - parent: 2 - type: Transform - - uid: 10968 - components: - - pos: 21.5,-46.5 - parent: 2 - type: Transform - - uid: 10969 - components: - - pos: 25.5,-46.5 - parent: 2 - type: Transform - - uid: 10970 - components: - - pos: 27.5,-50.5 - parent: 2 - type: Transform - - uid: 10971 - components: - - pos: 26.5,-50.5 - parent: 2 - type: Transform - - uid: 10972 - components: - - pos: 27.5,-53.5 - parent: 2 - type: Transform - - uid: 10973 - components: - - pos: 26.5,-53.5 - parent: 2 - type: Transform - - uid: 10974 - components: - - pos: 24.5,-56.5 - parent: 2 - type: Transform - - uid: 10975 - components: - - pos: 21.5,-56.5 - parent: 2 - type: Transform - - uid: 10976 - components: - - pos: 17.5,-56.5 - parent: 2 - type: Transform - - uid: 10977 - components: - - pos: 16.5,-56.5 - parent: 2 - type: Transform - - uid: 10978 - components: - - pos: 16.5,-55.5 - parent: 2 - type: Transform - - uid: 10979 - components: - - pos: 16.5,-54.5 - parent: 2 - type: Transform - - uid: 10980 - components: - - pos: 16.5,-52.5 - parent: 2 - type: Transform - - uid: 10981 - components: - - pos: 16.5,-51.5 - parent: 2 - type: Transform - - uid: 10982 - components: - - pos: 16.5,-49.5 - parent: 2 - type: Transform - - uid: 10983 - components: - - pos: 16.5,-48.5 - parent: 2 - type: Transform - - uid: 10984 - components: - - pos: 16.5,-47.5 - parent: 2 - type: Transform - - uid: 10985 - components: - - pos: 16.5,-46.5 - parent: 2 - type: Transform - - uid: 10986 - components: - - pos: 18.5,-46.5 - parent: 2 - type: Transform - - uid: 10987 - components: - - pos: 19.5,-46.5 - parent: 2 - type: Transform - - uid: 10988 - components: - - pos: 20.5,-46.5 - parent: 2 - type: Transform - - uid: 10989 - components: - - pos: 22.5,-46.5 - parent: 2 - type: Transform - - uid: 10990 - components: - - pos: 23.5,-46.5 - parent: 2 - type: Transform - - uid: 10991 - components: - - pos: 24.5,-46.5 - parent: 2 - type: Transform - - uid: 10992 - components: - - pos: 26.5,-46.5 - parent: 2 - type: Transform - - uid: 10993 - components: - - pos: 26.5,-47.5 - parent: 2 - type: Transform - - uid: 10994 - components: - - pos: 26.5,-48.5 - parent: 2 - type: Transform - - uid: 10995 - components: - - pos: 26.5,-49.5 - parent: 2 - type: Transform - - uid: 10996 - components: - - pos: 26.5,-51.5 - parent: 2 - type: Transform - - uid: 10997 - components: - - pos: 26.5,-52.5 - parent: 2 - type: Transform - - uid: 10998 - components: - - pos: 26.5,-54.5 - parent: 2 - type: Transform - - uid: 10999 - components: - - pos: 26.5,-55.5 - parent: 2 - type: Transform - - uid: 11000 - components: - - pos: 26.5,-56.5 - parent: 2 - type: Transform - - uid: 11001 - components: - - pos: 25.5,-56.5 - parent: 2 - type: Transform - - uid: 11002 - components: - - pos: 23.5,-56.5 - parent: 2 - type: Transform - - uid: 11003 - components: - - pos: 22.5,-56.5 - parent: 2 - type: Transform - - uid: 11004 - components: - - pos: 20.5,-56.5 - parent: 2 - type: Transform - - uid: 11005 - components: - - pos: 19.5,-56.5 - parent: 2 - type: Transform - - uid: 11006 - components: - - pos: 18.5,-56.5 - parent: 2 - type: Transform - - uid: 11733 - components: - - pos: 46.5,36.5 - parent: 2 - type: Transform - - uid: 11734 - components: - - pos: 46.5,35.5 - parent: 2 - type: Transform - - uid: 11735 - components: - - pos: 46.5,34.5 - parent: 2 - type: Transform - - uid: 11736 - components: - - pos: 46.5,33.5 - parent: 2 - type: Transform - - uid: 11737 - components: - - pos: 46.5,32.5 - parent: 2 - type: Transform - - uid: 12308 - components: - - pos: 18.5,-7.5 - parent: 2 - type: Transform - - uid: 12309 - components: - - pos: 19.5,-7.5 - parent: 2 - type: Transform - - uid: 12310 - components: - - pos: 20.5,-7.5 - parent: 2 - type: Transform - - uid: 12311 - components: - - pos: 21.5,-7.5 - parent: 2 - type: Transform - - uid: 12312 - components: - - pos: 22.5,-6.5 - parent: 2 - type: Transform - - uid: 12313 - components: - - pos: 22.5,-5.5 - parent: 2 - type: Transform - - uid: 12321 - components: - - pos: 22.5,-4.5 - parent: 2 - type: Transform - - uid: 12322 - components: - - pos: 22.5,-3.5 - parent: 2 - type: Transform - - uid: 12323 - components: - - pos: 22.5,-2.5 - parent: 2 - type: Transform - - uid: 12325 - components: - - pos: 17.5,-10.5 - parent: 2 - type: Transform - - uid: 12326 - components: - - pos: 17.5,-9.5 - parent: 2 - type: Transform - - uid: 12328 - components: - - pos: 17.5,-8.5 - parent: 2 - type: Transform - - uid: 12329 - components: - - pos: 16.5,-11.5 - parent: 2 - type: Transform - - uid: 12330 - components: - - pos: 15.5,-11.5 - parent: 2 - type: Transform - - uid: 12331 - components: - - pos: 14.5,-11.5 - parent: 2 - type: Transform - - uid: 12332 - components: - - pos: 10.5,-14.5 - parent: 2 - type: Transform - - uid: 12336 - components: - - pos: 10.5,-15.5 - parent: 2 - type: Transform - - uid: 12337 - components: - - pos: 10.5,-16.5 - parent: 2 - type: Transform - - uid: 12338 - components: - - pos: 10.5,-17.5 - parent: 2 - type: Transform - - uid: 12339 - components: - - pos: 10.5,-18.5 - parent: 2 - type: Transform - - uid: 12340 - components: - - pos: 10.5,-19.5 - parent: 2 - type: Transform - - uid: 12341 - components: - - pos: 1.5,-10.5 - parent: 2 - type: Transform - - uid: 12342 - components: - - pos: 1.5,-11.5 - parent: 2 - type: Transform - - uid: 12343 - components: - - pos: 1.5,-12.5 - parent: 2 - type: Transform - - uid: 12344 - components: - - pos: 1.5,-13.5 - parent: 2 - type: Transform - - uid: 12345 - components: - - pos: 1.5,-8.5 - parent: 2 - type: Transform - - uid: 12346 - components: - - pos: 1.5,-7.5 - parent: 2 - type: Transform - - uid: 12347 - components: - - pos: 1.5,-6.5 - parent: 2 - type: Transform - - uid: 12348 - components: - - pos: 1.5,-5.5 - parent: 2 - type: Transform - - uid: 12349 - components: - - pos: 1.5,-4.5 - parent: 2 - type: Transform - - uid: 12350 - components: - - pos: 1.5,-3.5 - parent: 2 - type: Transform - - uid: 12388 - components: - - pos: 35.5,-16.5 - parent: 2 - type: Transform - - uid: 12389 - components: - - pos: 36.5,-16.5 - parent: 2 - type: Transform - - uid: 12390 - components: - - pos: 37.5,-16.5 - parent: 2 - type: Transform - - uid: 12393 - components: - - pos: 38.5,-16.5 - parent: 2 - type: Transform - - uid: 12397 - components: - - pos: 48.5,-18.5 - parent: 2 - type: Transform - - uid: 12398 - components: - - pos: 47.5,-18.5 - parent: 2 - type: Transform - - uid: 12399 - components: - - pos: 46.5,-18.5 - parent: 2 - type: Transform - - uid: 12400 - components: - - pos: 45.5,-18.5 - parent: 2 - type: Transform - - uid: 12401 - components: - - pos: 44.5,-18.5 - parent: 2 - type: Transform - - uid: 12403 - components: - - pos: 43.5,-18.5 - parent: 2 - type: Transform - - uid: 12404 - components: - - pos: 42.5,-18.5 - parent: 2 - type: Transform - - uid: 12405 - components: - - pos: 41.5,-18.5 - parent: 2 - type: Transform - - uid: 12844 - components: - - pos: 22.5,5.5 - parent: 2 - type: Transform - - uid: 12845 - components: - - pos: 22.5,6.5 - parent: 2 - type: Transform - - uid: 12846 - components: - - pos: 22.5,7.5 - parent: 2 - type: Transform - - uid: 13005 - components: - - pos: 31.5,-50.5 - parent: 2 - type: Transform - - uid: 13006 - components: - - pos: 32.5,-50.5 - parent: 2 - type: Transform - - uid: 13007 - components: - - pos: 33.5,-50.5 - parent: 2 - type: Transform - - uid: 13008 - components: - - pos: 34.5,-50.5 - parent: 2 - type: Transform - - uid: 13009 - components: - - pos: 35.5,-50.5 - parent: 2 - type: Transform - - uid: 13010 - components: - - pos: 36.5,-50.5 - parent: 2 - type: Transform - - uid: 13011 - components: - - pos: 37.5,-50.5 - parent: 2 - type: Transform - - uid: 13012 - components: - - pos: 38.5,-50.5 - parent: 2 - type: Transform - - uid: 13013 - components: - - pos: 39.5,-50.5 - parent: 2 - type: Transform - - uid: 13014 - components: - - pos: 40.5,-50.5 - parent: 2 - type: Transform - - uid: 13015 - components: - - pos: 41.5,-50.5 - parent: 2 - type: Transform - - uid: 13016 - components: - - pos: 42.5,-50.5 - parent: 2 - type: Transform - - uid: 13017 - components: - - pos: 43.5,-50.5 - parent: 2 - type: Transform - - uid: 13018 - components: - - pos: 44.5,-50.5 - parent: 2 - type: Transform - - uid: 13019 - components: - - pos: 45.5,-50.5 - parent: 2 - type: Transform - - uid: 13020 - components: - - pos: 46.5,-50.5 - parent: 2 - type: Transform - - uid: 13021 - components: - - pos: 47.5,-50.5 - parent: 2 - type: Transform - - uid: 13022 - components: - - pos: 48.5,-50.5 - parent: 2 - type: Transform - - uid: 13023 - components: - - pos: 49.5,-50.5 - parent: 2 - type: Transform - - uid: 13024 - components: - - pos: 50.5,-50.5 - parent: 2 - type: Transform - - uid: 13025 - components: - - pos: 51.5,-50.5 - parent: 2 - type: Transform - - uid: 13026 - components: - - pos: 51.5,-49.5 - parent: 2 - type: Transform - - uid: 13027 - components: - - pos: 51.5,-48.5 - parent: 2 - type: Transform - - uid: 13028 - components: - - pos: 51.5,-47.5 - parent: 2 - type: Transform - - uid: 13029 - components: - - pos: 51.5,-46.5 - parent: 2 - type: Transform - - uid: 13030 - components: - - pos: 51.5,-45.5 - parent: 2 - type: Transform - - uid: 13031 - components: - - pos: 51.5,-44.5 - parent: 2 - type: Transform - - uid: 13032 - components: - - pos: 51.5,-43.5 - parent: 2 - type: Transform - - uid: 13033 - components: - - pos: 51.5,-42.5 - parent: 2 - type: Transform - - uid: 13034 - components: - - pos: 50.5,-42.5 - parent: 2 - type: Transform - - uid: 13035 - components: - - pos: 49.5,-42.5 - parent: 2 - type: Transform - - uid: 13036 - components: - - pos: 48.5,-42.5 - parent: 2 - type: Transform - - uid: 13037 - components: - - pos: 48.5,-41.5 - parent: 2 - type: Transform - - uid: 13038 - components: - - pos: 48.5,-40.5 - parent: 2 - type: Transform - - uid: 13039 - components: - - pos: 48.5,-39.5 - parent: 2 - type: Transform - - uid: 13040 - components: - - pos: 48.5,-38.5 - parent: 2 - type: Transform - - uid: 13041 - components: - - pos: 48.5,-37.5 - parent: 2 - type: Transform - - uid: 13042 - components: - - pos: 48.5,-36.5 - parent: 2 - type: Transform -- proto: Cautery - entities: - - uid: 7791 - components: - - pos: 67.45054,-3.640809 - parent: 2 - type: Transform -- proto: Chair - entities: - - uid: 38 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-5.5 - parent: 2 - type: Transform - - uid: 56 - components: - - pos: -2.5,-8.5 - parent: 2 - type: Transform - - uid: 84 - components: - - pos: -8.5,-12.5 - parent: 2 - type: Transform - - uid: 85 - components: - - pos: -9.5,-12.5 - parent: 2 - type: Transform - - uid: 88 - components: - - pos: -15.5,-12.5 - parent: 2 - type: Transform - - uid: 790 - components: - - pos: 19.5,-25.5 - parent: 2 - type: Transform - - uid: 791 - components: - - pos: 18.5,-25.5 - parent: 2 - type: Transform - - uid: 792 - components: - - pos: 17.5,-25.5 - parent: 2 - type: Transform - - uid: 793 - components: - - pos: 16.5,-25.5 - parent: 2 - type: Transform - - uid: 794 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-27.5 - parent: 2 - type: Transform - - uid: 795 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-27.5 - parent: 2 - type: Transform - - uid: 796 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-27.5 - parent: 2 - type: Transform - - uid: 797 - components: - - rot: 3.141592653589793 rad - pos: 19.5,-27.5 - parent: 2 - type: Transform - - uid: 939 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-34.5 - parent: 2 - type: Transform - - uid: 1147 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-4.5 - parent: 2 - type: Transform - - uid: 1554 - components: - - pos: 54.5,15.5 - parent: 2 - type: Transform - - uid: 1634 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-4.5 - parent: 2 - type: Transform - - uid: 1655 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-5.5 - parent: 2 - type: Transform - - uid: 1833 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,6.5 - parent: 2 - type: Transform - - uid: 1843 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,7.5 - parent: 2 - type: Transform - - uid: 1851 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,8.5 - parent: 2 - type: Transform - - uid: 1946 - components: - - pos: -16.5,-12.5 - parent: 2 - type: Transform - - uid: 2409 - components: - - rot: 3.141592653589793 rad - pos: 44.5,22.5 - parent: 2 - type: Transform - - uid: 2493 - components: - - pos: 30.5,30.5 - parent: 2 - type: Transform - - uid: 2494 - components: - - rot: 3.141592653589793 rad - pos: 30.5,28.5 - parent: 2 - type: Transform - - uid: 5089 - components: - - pos: 64.5,-1.5 - parent: 2 - type: Transform - - uid: 5090 - components: - - pos: 65.5,-1.5 - parent: 2 - type: Transform - - uid: 5091 - components: - - pos: 66.5,-1.5 - parent: 2 - type: Transform - - uid: 5151 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,2.5 - parent: 2 - type: Transform - - uid: 5173 - components: - - pos: 55.5,15.5 - parent: 2 - type: Transform - - uid: 5256 - components: - - pos: 55.5,-9.5 - parent: 2 - type: Transform - - uid: 5388 - components: - - rot: 3.141592653589793 rad - pos: 47.5,11.5 - parent: 2 - type: Transform - - uid: 5406 - components: - - pos: 67.5,-1.5 - parent: 2 - type: Transform - - uid: 5524 - components: - - rot: 1.5707963267948966 rad - pos: 89.5,0.5 - parent: 2 - type: Transform - - uid: 5525 - components: - - rot: 1.5707963267948966 rad - pos: 89.5,1.5 - parent: 2 - type: Transform - - uid: 5848 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,18.5 - parent: 2 - type: Transform - - uid: 5849 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,17.5 - parent: 2 - type: Transform - - uid: 7546 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,2.5 - parent: 2 - type: Transform - - uid: 7713 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-13.5 - parent: 2 - type: Transform - - uid: 7729 - components: - - pos: -3.5,-8.5 - parent: 2 - type: Transform - - uid: 7976 - components: - - pos: -3.5,-3.5 - parent: 2 - type: Transform - - uid: 7986 - components: - - pos: -0.5,0.5 - parent: 2 - type: Transform - - uid: 7987 - components: - - pos: 0.5,0.5 - parent: 2 - type: Transform - - uid: 7988 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,2.5 - parent: 2 - type: Transform - - uid: 7989 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,3.5 - parent: 2 - type: Transform - - uid: 7990 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,4.5 - parent: 2 - type: Transform - - uid: 7991 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,10.5 - parent: 2 - type: Transform - - uid: 7992 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,11.5 - parent: 2 - type: Transform - - uid: 7993 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,12.5 - parent: 2 - type: Transform - - uid: 7994 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,3.5 - parent: 2 - type: Transform - - uid: 7995 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,4.5 - parent: 2 - type: Transform - - uid: 7996 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,5.5 - parent: 2 - type: Transform - - uid: 9361 - components: - - pos: 25.5,7.5 - parent: 2 - type: Transform - - uid: 10637 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,7.5 - parent: 2 - type: Transform - - uid: 10829 - components: - - pos: 71.5,11.5 - parent: 2 - type: Transform - - uid: 10830 - components: - - pos: 69.5,11.5 - parent: 2 - type: Transform - - uid: 10896 - components: - - rot: -1.5707963267948966 rad - pos: 64.5,14.5 - parent: 2 - type: Transform - - uid: 10897 - components: - - rot: 3.141592653589793 rad - pos: 63.5,13.5 - parent: 2 - type: Transform - - uid: 12177 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,9.5 - parent: 2 - type: Transform - - uid: 12178 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,9.5 - parent: 2 - type: Transform - - uid: 12179 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,8.5 - parent: 2 - type: Transform - - uid: 12180 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,8.5 - parent: 2 - type: Transform - - uid: 12181 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,5.5 - parent: 2 - type: Transform - - uid: 12182 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,5.5 - parent: 2 - type: Transform - - uid: 12183 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,6.5 - parent: 2 - type: Transform - - uid: 12184 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,6.5 - parent: 2 - type: Transform -- proto: ChairMeat - entities: - - uid: 13071 - components: - - pos: 6.5,-12.5 - parent: 2 - type: Transform -- proto: ChairOfficeDark - entities: - - uid: 190 - components: - - pos: -2.5,-11.5 - parent: 2 - type: Transform - - uid: 311 - components: - - pos: 11.5,5.5 - parent: 2 - type: Transform - - uid: 313 - components: - - pos: 10.5,5.5 - parent: 2 - type: Transform - - uid: 314 - components: - - rot: 3.141592653589793 rad - pos: 10.5,3.5 - parent: 2 - type: Transform - - uid: 579 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-3.5 - parent: 2 - type: Transform - - uid: 683 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-16.5 - parent: 2 - type: Transform - - uid: 684 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-18.5 - parent: 2 - type: Transform - - uid: 804 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-24.5 - parent: 2 - type: Transform - - uid: 1852 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,22.5 - parent: 2 - type: Transform - - uid: 2480 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,19.5 - parent: 2 - type: Transform - - uid: 2489 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,27.5 - parent: 2 - type: Transform - - uid: 2724 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,33.5 - parent: 2 - type: Transform - - uid: 2725 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,32.5 - parent: 2 - type: Transform - - uid: 2726 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,30.5 - parent: 2 - type: Transform - - uid: 2727 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,29.5 - parent: 2 - type: Transform - - uid: 4999 - components: - - rot: 3.141592653589793 rad - pos: 34.5,45.5 - parent: 2 - type: Transform - - uid: 5000 - components: - - rot: 3.141592653589793 rad - pos: 31.5,47.5 - parent: 2 - type: Transform - - uid: 5001 - components: - - rot: 3.141592653589793 rad - pos: 23.5,47.5 - parent: 2 - type: Transform - - uid: 5002 - components: - - rot: 3.141592653589793 rad - pos: 20.5,45.5 - parent: 2 - type: Transform - - uid: 5159 - components: - - rot: 3.141592653589793 rad - pos: 55.5,-11.5 - parent: 2 - type: Transform - - uid: 5321 - components: - - rot: -1.5707963267948966 rad - pos: 49.5,18.5 - parent: 2 - type: Transform - - uid: 5389 - components: - - rot: 3.141592653589793 rad - pos: 50.5,10.5 - parent: 2 - type: Transform - - uid: 5742 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-10.5 - parent: 2 - type: Transform - - uid: 7468 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-3.5 - parent: 2 - type: Transform - - uid: 7710 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,24.5 - parent: 2 - type: Transform - - uid: 7792 - components: - - rot: -1.5707963267948966 rad - pos: 70.5,14.5 - parent: 2 - type: Transform - - uid: 8253 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,25.5 - parent: 2 - type: Transform - - uid: 8608 - components: - - rot: 3.141592653589793 rad - pos: 30.500034,25.750826 - parent: 2 - type: Transform - - uid: 8658 - components: - - pos: 50.5,2.5 - parent: 2 - type: Transform - - uid: 10912 - components: - - pos: 74.5,-1.5 - parent: 2 - type: Transform - - uid: 12150 - components: - - rot: 3.141592653589793 rad - pos: 12.5,30.5 - parent: 2 - type: Transform -- proto: ChairOfficeLight - entities: - - uid: 940 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-34.5 - parent: 2 - type: Transform - - uid: 5068 - components: - - rot: 3.141592653589793 rad - pos: 50.5,-4.5 - parent: 2 - type: Transform - - uid: 5069 - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-4.5 - parent: 2 - type: Transform - - uid: 5227 - components: - - rot: 1.5707963267948966 rad - pos: 81.5,-6.5 - parent: 2 - type: Transform - - uid: 7075 - components: - - pos: 44.5,3.5 - parent: 2 - type: Transform - - uid: 7859 - components: - - pos: 71.5,-19.495005 - parent: 2 - type: Transform - - uid: 8664 - components: - - rot: 3.141592653589793 rad - pos: 64.5,24.5 - parent: 2 - type: Transform - - uid: 10670 - components: - - pos: 62.5,9.5 - parent: 2 - type: Transform - - uid: 10901 - components: - - pos: 79.5,-6.5 - parent: 2 - type: Transform - - uid: 11293 - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-11.5 - parent: 2 - type: Transform -- proto: ChairPilotSeat - entities: - - uid: 4971 - components: - - rot: 3.141592653589793 rad - pos: 27.5,47.5 - parent: 2 - type: Transform -- proto: ChairWood - entities: - - uid: 1155 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-10.5 - parent: 2 - type: Transform - - uid: 1166 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-12.5 - parent: 2 - type: Transform - - uid: 1167 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-11.5 - parent: 2 - type: Transform - - uid: 1168 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-10.5 - parent: 2 - type: Transform - - uid: 2689 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,33.5 - parent: 2 - type: Transform - - uid: 2690 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,33.5 - parent: 2 - type: Transform - - uid: 2691 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,32.5 - parent: 2 - type: Transform - - uid: 2692 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,32.5 - parent: 2 - type: Transform - - uid: 2693 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,30.5 - parent: 2 - type: Transform - - uid: 2694 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,29.5 - parent: 2 - type: Transform - - uid: 2695 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,29.5 - parent: 2 - type: Transform - - uid: 2696 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,30.5 - parent: 2 - type: Transform - - uid: 2728 - components: - - pos: 19.5,33.56914 - parent: 2 - type: Transform - - uid: 5502 - components: - - rot: 1.5707963267948966 rad - pos: 69.50498,33.5 - parent: 2 - type: Transform - - uid: 5503 - components: - - rot: -1.5707963267948966 rad - pos: 71.49502,33.5 - parent: 2 - type: Transform - - uid: 5504 - components: - - pos: 70.5,34.495007 - parent: 2 - type: Transform - - uid: 5511 - components: - - rot: 1.5707963267948966 rad - pos: 69.50498,29.5 - parent: 2 - type: Transform - - uid: 5512 - components: - - rot: 1.5707963267948966 rad - pos: 69.50498,27.5 - parent: 2 - type: Transform - - uid: 5513 - components: - - rot: -1.5707963267948966 rad - pos: 71.49502,28.5 - parent: 2 - type: Transform - - uid: 6477 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-9.5 - parent: 2 - type: Transform - - uid: 6478 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-9.5 - parent: 2 - type: Transform - - uid: 6497 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-11.5 - parent: 2 - type: Transform - - uid: 6504 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-12.5 - parent: 2 - type: Transform - - uid: 6943 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,18.5 - parent: 2 - type: Transform - - uid: 8644 - components: - - pos: 84.5,12.495002 - parent: 2 - type: Transform - - uid: 8645 - components: - - pos: 85.5,12.495002 - parent: 2 - type: Transform - - uid: 12710 - components: - - pos: 114.5,-16.5 - parent: 2 - type: Transform -- proto: CheapLighter - entities: - - uid: 6631 - components: - - pos: 37.66267,-3.4032297 - parent: 2 - type: Transform - - uid: 7717 - components: - - pos: 43.77102,20.318724 - parent: 2 - type: Transform -- proto: CheapRollerBed - entities: - - uid: 8145 - components: - - pos: 58.484226,3.6459913 - parent: 2 - type: Transform - - uid: 8232 - components: - - pos: 57.484226,3.6453457 - parent: 2 - type: Transform - - uid: 8234 - components: - - pos: 55.484226,3.6458454 - parent: 2 - type: Transform - - uid: 8299 - components: - - pos: 54.49985,3.645617 - parent: 2 - type: Transform -- proto: CheapRollerBedSpawnFolded - entities: - - uid: 11921 - components: - - pos: 70.44693,7.937353 - parent: 2 - type: Transform -- proto: chem_master - entities: - - uid: 5052 - components: - - pos: 49.5,-4.5 - parent: 2 - type: Transform - - containers: - ChemMaster-reagentContainerContainer: !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: [] - ChemMaster-beaker: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - beakerSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - outputSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 5053 - components: - - pos: 52.5,-3.5 - parent: 2 - type: Transform - - containers: - ChemMaster-reagentContainerContainer: !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: [] - ChemMaster-beaker: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - beakerSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - outputSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: ChemDispenser - entities: - - uid: 5050 - components: - - pos: 49.5,-5.5 - parent: 2 - type: Transform - - containers: - ReagentDispenser-reagentContainerContainer: !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: [] - ReagentDispenser-beaker: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - beakerSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 5051 - components: - - pos: 53.5,-3.5 - parent: 2 - type: Transform - - containers: - ReagentDispenser-reagentContainerContainer: !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: [] - ReagentDispenser-beaker: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - beakerSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: ChemDispenserMachineCircuitboard - entities: - - uid: 12367 - components: - - pos: 36.544582,-17.485641 - parent: 2 - type: Transform -- proto: ChemistryHotplate - entities: - - uid: 11028 - components: - - pos: 51.5,-7.5 - parent: 2 - type: Transform -- proto: ChurchOrganInstrument - entities: - - uid: 8921 - components: - - pos: 35.5,5.5 - parent: 2 - type: Transform -- proto: CigarGold - entities: - - uid: 7936 - components: - - pos: 43.474144,20.053099 - parent: 2 - type: Transform - - uid: 12104 - components: - - pos: 17.464012,39.620396 - parent: 2 - type: Transform - - uid: 12105 - components: - - pos: 17.604637,39.60477 - parent: 2 - type: Transform -- proto: CigPackGreen - entities: - - uid: 5523 - components: - - pos: 87.481125,1.4149053 - parent: 2 - type: Transform - - uid: 9307 - components: - - pos: 69.531136,11.469878 - parent: 2 - type: Transform -- proto: CircuitImprinter - entities: - - uid: 12155 - components: - - pos: 53.5,17.5 - parent: 2 - type: Transform - - materialWhiteList: - - Steel - - Glass - - Gold - type: MaterialStorage -- proto: ClosetBase - entities: - - uid: 5460 - components: - - pos: 69.5,40.5 - parent: 2 - type: Transform - - uid: 5461 - components: - - pos: 69.5,37.5 - parent: 2 - type: Transform -- proto: ClosetBombFilled - entities: - - uid: 12854 - components: - - pos: 55.5,25.5 - parent: 2 - type: Transform -- proto: ClosetChefFilled - entities: - - uid: 6582 - components: - - pos: 38.5,-12.5 - parent: 2 - type: Transform -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 98 - components: - - pos: -17.5,-12.5 - parent: 2 - type: Transform - - uid: 106 - components: - - pos: -10.5,-12.5 - parent: 2 - type: Transform - - uid: 1480 - components: - - pos: 24.5,-4.5 - parent: 2 - type: Transform - - uid: 1481 - components: - - pos: 24.5,-5.5 - parent: 2 - type: Transform - - uid: 5261 - components: - - pos: 49.5,13.5 - parent: 2 - type: Transform - - uid: 5438 - components: - - pos: 9.5,-20.5 - parent: 2 - type: Transform - - uid: 5472 - components: - - pos: 70.5,42.5 - parent: 2 - type: Transform - - uid: 5612 - components: - - pos: 36.5,-38.5 - parent: 2 - type: Transform - - uid: 5736 - components: - - pos: 69.5,-11.5 - parent: 2 - type: Transform - - uid: 5901 - components: - - pos: 5.5,-30.5 - parent: 2 - type: Transform - - uid: 7985 - components: - - pos: -6.5,0.5 - parent: 2 - type: Transform - - uid: 7997 - components: - - pos: 3.5,5.5 - parent: 2 - type: Transform - - uid: 10837 - components: - - pos: 66.5,6.5 - parent: 2 - type: Transform - - uid: 10839 - components: - - pos: 43.5,46.5 - parent: 2 - type: Transform - - uid: 13001 - components: - - pos: 31.5,-46.5 - parent: 2 - type: Transform -- proto: ClosetFireFilled - entities: - - uid: 94 - components: - - pos: -14.5,-12.5 - parent: 2 - type: Transform - - uid: 5260 - components: - - pos: 50.5,13.5 - parent: 2 - type: Transform - - uid: 5902 - components: - - pos: 5.5,-29.5 - parent: 2 - type: Transform - - uid: 7998 - components: - - pos: 3.5,9.5 - parent: 2 - type: Transform - - uid: 10841 - components: - - pos: 39.5,42.5 - parent: 2 - type: Transform -- proto: ClosetJanitorFilled - entities: - - uid: 166 - components: - - pos: 3.5,-3.5 - parent: 2 - type: Transform -- proto: ClosetL3JanitorFilled - entities: - - uid: 167 - components: - - pos: 3.5,-4.5 - parent: 2 - type: Transform -- proto: ClosetL3VirologyFilled - entities: - - uid: 5213 - components: - - pos: 78.5,-1.5 - parent: 2 - type: Transform - - uid: 5214 - components: - - pos: 76.5,-3.5 - parent: 2 - type: Transform - - uid: 5215 - components: - - pos: 76.5,-4.5 - parent: 2 - type: Transform -- proto: ClosetLegal - entities: - - uid: 2712 - components: - - pos: 18.5,33.5 - parent: 2 - type: Transform -- proto: ClosetLegalFilled - entities: - - uid: 6047 - components: - - pos: 17.5,33.5 - parent: 2 - type: Transform -- proto: ClosetMaintenance - entities: - - uid: 10835 - components: - - pos: 65.5,10.5 - parent: 2 - type: Transform -- proto: ClosetMaintenanceFilledRandom - entities: - - uid: 5437 - components: - - pos: 9.5,-19.5 - parent: 2 - type: Transform - - uid: 5729 - components: - - pos: 72.5,-5.5 - parent: 2 - type: Transform - - uid: 8342 - components: - - pos: 23.5,6.5 - parent: 2 - type: Transform - - uid: 9309 - components: - - pos: 72.5,23.5 - parent: 2 - type: Transform - - uid: 10836 - components: - - pos: 65.5,9.5 - parent: 2 - type: Transform - - uid: 13125 - components: - - pos: 53.5,-20.5 - parent: 2 - type: Transform - - uid: 13126 - components: - - pos: 52.5,-20.5 - parent: 2 - type: Transform -- proto: ClosetRadiationSuitFilled - entities: - - uid: 3687 - components: - - pos: 51.5,13.5 - parent: 2 - type: Transform - - uid: 4310 - components: - - pos: 19.5,-34.5 - parent: 2 - type: Transform - - uid: 10906 - components: - - pos: 20.5,-34.5 - parent: 2 - type: Transform - - uid: 10907 - components: - - pos: 22.5,-34.5 - parent: 2 - type: Transform - - uid: 12853 - components: - - pos: 54.5,25.5 - parent: 2 - type: Transform -- proto: ClosetToolFilled - entities: - - uid: 5649 - components: - - pos: 49.5,46.5 - parent: 2 - type: Transform -- proto: ClothingBackpackClown - entities: - - uid: 9611 - components: - - pos: 27.493172,5.5327587 - parent: 2 - type: Transform -- proto: ClothingBackpackMerc - entities: - - uid: 12658 - components: - - pos: 74.49778,21.835997 - parent: 2 - type: Transform -- proto: ClothingBeltChampion - entities: - - uid: 12103 - components: - - pos: 17.510887,40.120396 - parent: 2 - type: Transform -- proto: ClothingBeltHolster - entities: - - uid: 12241 - components: - - pos: 89.35728,1.548007 - parent: 2 - type: Transform -- proto: ClothingBeltMercWebbing - entities: - - uid: 12667 - components: - - pos: 74.357155,21.929747 - parent: 2 - type: Transform -- proto: ClothingBeltStorageWaistbag - entities: - - uid: 7821 - components: - - pos: 20.561836,5.5983276 - parent: 2 - type: Transform -- proto: ClothingBeltUtility - entities: - - uid: 5735 - components: - - pos: 72.5,-9.5 - parent: 2 - type: Transform -- proto: ClothingBeltUtilityEngineering - entities: - - uid: 602 - components: - - pos: 25.514921,-29.44944 - parent: 2 - type: Transform -- proto: ClothingBeltUtilityFilled - entities: - - uid: 872 - components: - - pos: 33.498886,-14.418215 - parent: 2 - type: Transform -- proto: ClothingEyesEyepatch - entities: - - uid: 6421 - components: - - pos: 56.63094,-14.915291 - parent: 2 - type: Transform - - uid: 12219 - components: - - pos: 15.513365,7.482489 - parent: 2 - type: Transform -- proto: ClothingEyesGlasses - entities: - - uid: 5436 - components: - - pos: 45.51781,-19.598537 - parent: 2 - type: Transform - - uid: 6793 - components: - - pos: 60.359756,25.627806 - parent: 2 - type: Transform - - uid: 11827 - components: - - pos: 60.359756,25.45593 - parent: 2 - type: Transform - - uid: 12167 - components: - - pos: 74.534454,-0.21419013 - parent: 2 - type: Transform -- proto: ClothingEyesGlassesGarGiga - entities: - - uid: 8643 - components: - - pos: 74.48007,-6.509521 - parent: 2 - type: Transform -- proto: ClothingEyesGlassesMercenary - entities: - - uid: 12662 - components: - - pos: 74.46653,22.257872 - parent: 2 - type: Transform -- proto: ClothingEyesGlassesMeson - entities: - - uid: 132 - components: - - pos: 12.5,-35.5 - parent: 2 - type: Transform - - uid: 5718 - components: - - pos: 73.5,-12.5 - parent: 2 - type: Transform - - uid: 10825 - components: - - pos: 81.516914,11.673225 - parent: 2 - type: Transform - - uid: 10848 - components: - - pos: 45.471096,27.566444 - parent: 2 - type: Transform -- proto: ClothingEyesGlassesSunglasses - entities: - - uid: 5522 - components: - - pos: 86.49675,1.6024053 - parent: 2 - type: Transform -- proto: ClothingEyesGlassesThermal - entities: - - uid: 12673 - components: - - pos: 32.51945,-30.628448 - parent: 2 - type: Transform -- proto: ClothingEyesHudDiagnostic - entities: - - uid: 11439 - components: - - pos: 17.140316,-23.554987 - parent: 2 - type: Transform -- proto: ClothingEyesHudMedical - entities: - - uid: 11422 - components: - - pos: 55.632915,-10.387672 - parent: 2 - type: Transform -- proto: ClothingHandsGlovesColorYellow - entities: - - uid: 1563 - components: - - pos: 30.487595,-14.515437 - parent: 2 - type: Transform - - uid: 5630 - components: - - pos: 17.199833,-23.332096 - parent: 2 - type: Transform -- proto: ClothingHandsGlovesFingerless - entities: - - uid: 2891 - components: - - pos: 10.782635,21.422426 - parent: 2 - type: Transform -- proto: ClothingHandsGlovesPowerglove - entities: - - uid: 7561 - components: - - pos: 76.51093,-13.595224 - parent: 2 - type: Transform -- proto: ClothingHandsMercGlovesCombat - entities: - - uid: 12663 - components: - - pos: 74.46653,21.773497 - parent: 2 - type: Transform -- proto: ClothingHeadBandMerc - entities: - - uid: 12666 - components: - - pos: 74.419655,22.351622 - parent: 2 - type: Transform -- proto: ClothingHeadFishCap - entities: - - uid: 2885 - components: - - pos: 50.47578,-20.56524 - parent: 2 - type: Transform -- proto: ClothingHeadHatAnimalCat - entities: - - uid: 12652 - components: - - pos: 69.48217,34.466385 - parent: 2 - type: Transform -- proto: ClothingHeadHatAnimalCatBrown - entities: - - uid: 8933 - components: - - pos: 62.47656,19.694616 - parent: 2 - type: Transform -- proto: ClothingHeadHatBeretMerc - entities: - - uid: 12665 - components: - - pos: 74.513405,22.460997 - parent: 2 - type: Transform -- proto: ClothingHeadHatBunny - entities: - - uid: 9109 - components: - - pos: 58.54981,-24.623142 - parent: 2 - type: Transform -- proto: ClothingHeadHatChickenhead - entities: - - uid: 8830 - components: - - pos: 72.52045,21.835241 - parent: 2 - type: Transform -- proto: ClothingHeadHatFedoraGrey - entities: - - uid: 7557 - components: - - rot: 0.00039844278944656253 rad - pos: 74.50803,-5.26333 - parent: 2 - type: Transform -- proto: ClothingHeadHatFez - entities: - - uid: 8843 - components: - - pos: 90.45974,-18.462885 - parent: 2 - type: Transform -- proto: ClothingHeadHatFlowerCrown - entities: - - uid: 8829 - components: - - pos: 84.5185,-12.681175 - parent: 2 - type: Transform -- proto: ClothingHeadHatGreysoft - entities: - - uid: 10851 - components: - - pos: 45.45547,27.660194 - parent: 2 - type: Transform -- proto: ClothingHeadHatHairflower - entities: - - uid: 12099 - components: - - pos: 19.740185,41.04155 - parent: 2 - type: Transform -- proto: ClothingHeadHatHardhatOrange - entities: - - uid: 10798 - components: - - pos: 80.534454,-16.347055 - parent: 2 - type: Transform -- proto: ClothingHeadHatHardhatRed - entities: - - uid: 5719 - components: - - pos: 73.5,-12.5 - parent: 2 - type: Transform - - uid: 10827 - components: - - pos: 81.50129,9.6576 - parent: 2 - type: Transform -- proto: ClothingHeadHatHetmanHat - entities: - - uid: 9018 - components: - - pos: 84.40167,-5.2654653 - parent: 2 - type: Transform -- proto: ClothingHeadHatPaper - entities: - - uid: 8251 - components: - - pos: 36.290367,33.722393 - parent: 2 - type: Transform -- proto: ClothingHeadHatPirate - entities: - - uid: 7554 - components: - - rot: 0.00038670882349833846 rad - pos: 89.44564,-12.263381 - parent: 2 - type: Transform -- proto: ClothingHeadHatRedwizard - entities: - - uid: 6798 - components: - - pos: 86.44191,12.5807 - parent: 2 - type: Transform -- proto: ClothingHeadHatSkub - entities: - - uid: 13076 - components: - - pos: 7.4825606,-11.600726 - parent: 2 - type: Transform -- proto: ClothingHeadHatSquid - entities: - - uid: 12671 - components: - - pos: 65.725685,11.307603 - parent: 2 - type: Transform -- proto: ClothingHeadHatTophat - entities: - - uid: 2920 - components: - - pos: 65.46723,-14.576903 - parent: 2 - type: Transform -- proto: ClothingHeadHatTrucker - entities: - - uid: 3448 - components: - - pos: 17.59203,5.387045 - parent: 2 - type: Transform -- proto: ClothingHeadHatUshanka - entities: - - uid: 12674 - components: - - pos: 74.46565,-6.1472054 - parent: 2 - type: Transform - - uid: 12676 - components: - - pos: 74.46565,-6.1472054 - parent: 2 - type: Transform -- proto: ClothingHeadHatWelding - entities: - - uid: 5377 - components: - - pos: 52.381424,11.673619 - parent: 2 - type: Transform -- proto: ClothingHeadHatWitch1 - entities: - - uid: 6827 - components: - - pos: 83.46587,-12.720913 - parent: 2 - type: Transform -- proto: ClothingHeadHatWizard - entities: - - uid: 11158 - components: - - pos: 86.44739,10.61898 - parent: 2 - type: Transform -- proto: ClothingHeadHelmetMerc - entities: - - uid: 12661 - components: - - pos: 74.46653,22.492247 - parent: 2 - type: Transform -- proto: ClothingHeadHelmetRiot - entities: - - uid: 8425 - components: - - pos: 38.53056,28.406826 - parent: 2 - type: Transform - - uid: 8426 - components: - - pos: 38.53056,28.406826 - parent: 2 - type: Transform - - uid: 8427 - components: - - pos: 38.53056,28.406826 - parent: 2 - type: Transform -- proto: ClothingHeadNurseHat - entities: - - uid: 12672 - components: - - pos: 59.51385,-3.3579187 - parent: 2 - type: Transform -- proto: ClothingHeadsetMining - entities: - - uid: 12669 - components: - - pos: 9.6021385,15.473721 - parent: 2 - type: Transform - - uid: 12670 - components: - - pos: 9.6021385,15.473721 - parent: 2 - type: Transform -- proto: ClothingMaskBear - entities: - - uid: 8828 - components: - - pos: 102.40892,-16.268303 - parent: 2 - type: Transform -- proto: ClothingMaskBreathMedical - entities: - - uid: 12657 - components: - - pos: 67.39722,4.505884 - parent: 2 - type: Transform -- proto: ClothingMaskBreathMedicalSecurity - entities: - - uid: 7757 - components: - - pos: 74.46653,21.992247 - parent: 2 - type: Transform -- proto: ClothingMaskClown - entities: - - uid: 8292 - components: - - pos: 27.23263,5.6674385 - parent: 2 - type: Transform -- proto: ClothingMaskGas - entities: - - uid: 589 - components: - - pos: 33.50367,-14.512851 - parent: 2 - type: Transform - - uid: 841 - components: - - pos: 27.626308,-29.560211 - parent: 2 - type: Transform - - uid: 5343 - components: - - pos: 60.54693,25.63966 - parent: 2 - type: Transform - - uid: 10799 - components: - - pos: 79.33667,-16.51893 - parent: 2 - type: Transform - - uid: 10800 - components: - - pos: 79.664795,-16.36268 - parent: 2 - type: Transform - - uid: 10824 - components: - - pos: 81.53254,11.610725 - parent: 2 - type: Transform -- proto: ClothingMaskGasMerc - entities: - - uid: 12659 - components: - - pos: 74.482155,22.210997 - parent: 2 - type: Transform -- proto: ClothingMaskSexyMime - entities: - - uid: 8345 - components: - - pos: 25.245346,6.3236885 - parent: 2 - type: Transform -- proto: ClothingMaskSterile - entities: - - uid: 11969 - components: - - pos: 59.604156,3.672451 - parent: 2 - type: Transform -- proto: ClothingNeckCloakGoliathCloak - entities: - - uid: 12455 - components: - - pos: 91.43456,-0.49069238 - parent: 2 - type: Transform -- proto: ClothingNeckCloakMoth - entities: - - uid: 9368 - components: - - pos: 17.479858,8.394902 - parent: 2 - type: Transform -- proto: ClothingNeckCloakTrans - entities: - - uid: 688 - components: - - pos: 7.491953,-13.240216 - parent: 2 - type: Transform - - uid: 7009 - components: - - pos: 19.545155,5.62142 - parent: 2 - type: Transform -- proto: ClothingNeckScarfStripedRed - entities: - - uid: 12226 - components: - - pos: 20.513533,26.418814 - parent: 2 - type: Transform -- proto: ClothingNeckScarfStripedZebra - entities: - - uid: 9606 - components: - - pos: 25.521528,7.3736153 - parent: 2 - type: Transform -- proto: ClothingNeckStethoscope - entities: - - uid: 5193 - components: - - pos: 63.38291,-10.442304 - parent: 2 - type: Transform - - uid: 11420 - components: - - pos: 56.414165,-10.356422 - parent: 2 - type: Transform - - uid: 11967 - components: - - pos: 64.40056,4.5256968 - parent: 2 - type: Transform -- proto: ClothingNeckTieRed - entities: - - uid: 8289 - components: - - pos: 19.90453,5.512045 - parent: 2 - type: Transform - - uid: 12228 - components: - - pos: 69.577194,21.53721 - parent: 2 - type: Transform -- proto: ClothingOuterApron - entities: - - uid: 8825 - components: - - pos: 17.68529,8.556451 - parent: 2 - type: Transform -- proto: ClothingOuterArmorBasic - entities: - - uid: 8413 - components: - - pos: 38.421185,28.625576 - parent: 2 - type: Transform - - uid: 8414 - components: - - pos: 38.421185,28.625576 - parent: 2 - type: Transform - - uid: 8415 - components: - - pos: 38.421185,28.625576 - parent: 2 - type: Transform -- proto: ClothingOuterArmorBasicSlim - entities: - - uid: 8416 - components: - - pos: 38.62431,28.406826 - parent: 2 - type: Transform - - uid: 8417 - components: - - pos: 38.62431,28.406826 - parent: 2 - type: Transform - - uid: 8418 - components: - - pos: 38.62431,28.406826 - parent: 2 - type: Transform -- proto: ClothingOuterArmorBulletproof - entities: - - uid: 8419 - components: - - pos: 38.37431,28.438076 - parent: 2 - type: Transform - - uid: 8420 - components: - - pos: 38.37431,28.438076 - parent: 2 - type: Transform - - uid: 8421 - components: - - pos: 38.37431,28.438076 - parent: 2 - type: Transform -- proto: ClothingOuterArmorRiot - entities: - - uid: 8422 - components: - - pos: 38.71806,28.609951 - parent: 2 - type: Transform - - uid: 8423 - components: - - pos: 38.71806,28.609951 - parent: 2 - type: Transform - - uid: 8424 - components: - - pos: 38.71806,28.609951 - parent: 2 - type: Transform - - 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 - type: GroupExamine -- proto: ClothingOuterCoatInspector - entities: - - uid: 12229 - components: - - pos: 69.639694,21.740335 - parent: 2 - type: Transform -- proto: ClothingOuterCoatJensen - entities: - - uid: 7560 - components: - - pos: 76.51827,-13.498972 - parent: 2 - type: Transform -- proto: ClothingOuterCoatLab - entities: - - uid: 5257 - components: - - pos: 60.494953,-9.426679 - parent: 2 - type: Transform -- proto: ClothingOuterCoatPirate - entities: - - uid: 7553 - components: - - pos: 89.47711,-12.560792 - parent: 2 - type: Transform -- proto: ClothingOuterCoatRobo - entities: - - uid: 1847 - components: - - pos: 52.52299,8.566419 - parent: 2 - type: Transform -- proto: ClothingOuterHardsuitBasic - entities: - - uid: 7304 - components: - - flags: InContainer - type: MetaData - - parent: 12094 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterHospitalGown - entities: - - uid: 12499 - components: - - pos: 60.452034,-9.3230715 - parent: 2 - type: Transform -- proto: ClothingOuterPonchoClassic - entities: - - uid: 8930 - components: - - pos: 70.48266,27.712364 - parent: 2 - type: Transform -- proto: ClothingOuterSkub - entities: - - uid: 13075 - components: - - pos: 7.4669356,-11.631976 - parent: 2 - type: Transform -- proto: ClothingOuterSuitChicken - entities: - - uid: 8932 - components: - - pos: 72.52045,21.491491 - parent: 2 - type: Transform -- proto: ClothingOuterSuitFire - entities: - - uid: 5721 - components: - - pos: 73.5,-12.5 - parent: 2 - type: Transform - - uid: 10849 - components: - - pos: 45.51797,27.660194 - parent: 2 - type: Transform -- proto: ClothingOuterVestHazard - entities: - - uid: 880 - components: - - pos: 27.494364,-29.379656 - parent: 2 - type: Transform - - uid: 2150 - components: - - pos: 10.541297,21.522875 - parent: 2 - type: Transform -- proto: ClothingOuterVestWebMerc - entities: - - uid: 12668 - components: - - pos: 74.450905,21.945372 - parent: 2 - type: Transform -- proto: ClothingOuterWizard - entities: - - uid: 11159 - components: - - pos: 86.47864,10.71273 - parent: 2 - type: Transform -- proto: ClothingOuterWizardRed - entities: - - uid: 6797 - components: - - pos: 86.50441,12.690075 - parent: 2 - type: Transform -- proto: ClothingShoesBootsJack - entities: - - uid: 3615 - components: - - pos: 18.604328,5.443143 - parent: 2 - type: Transform -- proto: ClothingShoesBootsMag - entities: - - uid: 10306 - components: - - pos: 8.40589,-8.309399 - parent: 2 - type: Transform - - uid: 10307 - components: - - pos: 8.56214,-8.481274 - parent: 2 - type: Transform -- proto: ClothingShoesBootsMercFilled - entities: - - uid: 12664 - components: - - pos: 74.43528,21.382872 - parent: 2 - type: Transform -- proto: ClothingShoesFlippers - entities: - - uid: 6828 - components: - - pos: 1.4884543,-32.355457 - parent: 2 - type: Transform -- proto: ClothingShoesLeather - entities: - - uid: 7555 - components: - - rot: 0.0006267222343012691 rad - pos: 89.43173,-12.737588 - parent: 2 - type: Transform - - uid: 7558 - components: - - pos: 74.43015,-5.8248997 - parent: 2 - type: Transform - - uid: 12220 - components: - - pos: 30.472458,40.268566 - parent: 2 - type: Transform -- proto: ClothingShoeSlippersDuck - entities: - - uid: 5405 - components: - - pos: 62.48992,19.519245 - parent: 2 - type: Transform -- proto: ClothingShoesSlippers - entities: - - uid: 5470 - components: - - pos: 70.5,40.5 - parent: 2 - type: Transform - - uid: 5471 - components: - - pos: 70.5,37.5 - parent: 2 - type: Transform -- proto: ClothingShoesTourist - entities: - - uid: 9349 - components: - - pos: -10.508648,-14.809846 - parent: 2 - type: Transform -- proto: ClothingShoesWizard - entities: - - uid: 6796 - components: - - pos: 86.50441,12.3932 - parent: 2 - type: Transform - - uid: 11160 - components: - - pos: 86.46301,10.540855 - parent: 2 - type: Transform -- proto: ClothingUnderSocksBee - entities: - - uid: 12287 - components: - - pos: 8.506772,13.431249 - parent: 2 - type: Transform -- proto: ClothingUnderSocksCoder - entities: - - uid: 6795 - components: - - pos: 83.49162,-13.680252 - parent: 2 - type: Transform - - uid: 8931 - components: - - pos: 13.502279,38.53218 - parent: 2 - type: Transform -- proto: ClothingUniformColorRainbow - entities: - - uid: 6826 - components: - - pos: 83.49712,-13.314663 - parent: 2 - type: Transform - - uid: 12705 - components: - - pos: 104.58011,-15.495739 - parent: 2 - type: Transform - - uid: 12706 - components: - - pos: 104.11136,-15.495739 - parent: 2 - type: Transform - - uid: 12707 - components: - - pos: 103.67386,-15.495739 - parent: 2 - type: Transform -- proto: ClothingUniformJumpskirtJanimaidmini - entities: - - uid: 12847 - components: - - pos: 56.502583,35.364388 - parent: 2 - type: Transform -- proto: ClothingUniformJumpskirtTacticalMaid - entities: - - uid: 12653 - components: - - pos: 76.476616,-13.28976 - parent: 2 - type: Transform -- proto: ClothingUniformJumpsuitCossack - entities: - - uid: 8826 - components: - - pos: 84.46417,-5.6717153 - parent: 2 - type: Transform -- proto: ClothingUniformJumpsuitDetectiveGrey - entities: - - uid: 7556 - components: - - pos: 74.49265,-5.4811497 - parent: 2 - type: Transform -- proto: ClothingUniformJumpsuitEngineeringHazard - entities: - - uid: 881 - components: - - pos: 27.529085,-29.483822 - parent: 2 - type: Transform -- proto: ClothingUniformJumpsuitFlannel - entities: - - uid: 8290 - components: - - pos: 19.93578,5.65267 - parent: 2 - type: Transform -- proto: ClothingUniformJumpsuitMercenary - entities: - - uid: 12660 - components: - - pos: 74.46653,21.789122 - parent: 2 - type: Transform -- proto: ClothingUniformJumpsuitMonasticRobeLight - entities: - - uid: 12654 - components: - - pos: 30.690329,7.316777 - parent: 2 - type: Transform - - uid: 12655 - components: - - pos: 30.690329,7.316777 - parent: 2 - type: Transform - - uid: 12656 - components: - - pos: 30.690329,7.316777 - parent: 2 - type: Transform -- proto: ClothingUniformJumpsuitNanotrasen - entities: - - uid: 7391 - components: - - flags: InContainer - type: MetaData - - parent: 12094 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitPsychologist - entities: - - uid: 8306 - components: - - pos: 20.21703,5.52767 - parent: 2 - type: Transform -- proto: ClothingUniformJumpsuitRecruitSyndie - entities: - - uid: 12496 - components: - - pos: 11.480359,-11.451806 - parent: 2 - type: Transform -- proto: ClothingUniformJumpsuitRepairmanSyndie - entities: - - uid: 12675 - components: - - pos: 11.491153,-11.444116 - parent: 2 - type: Transform -- proto: ClothingUniformOveralls - entities: - - uid: 8241 - components: - - pos: 17.468086,5.4733276 - parent: 2 - type: Transform -- proto: ClownRecorder - entities: - - uid: 5149 - components: - - pos: 27.810755,5.5424385 - parent: 2 - type: Transform -- proto: ComfyChair - entities: - - uid: 309 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,3.5 - parent: 2 - type: Transform - - uid: 1660 - components: - - pos: 30.5,-2.5 - parent: 2 - type: Transform - - uid: 1661 - components: - - rot: 3.141592653589793 rad - pos: 29.5,-4.5 - parent: 2 - type: Transform - - uid: 1662 - components: - - pos: 29.5,-2.5 - parent: 2 - type: Transform - - uid: 1664 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-4.5 - parent: 2 - type: Transform - - uid: 2408 - components: - - pos: 44.5,24.5 - parent: 2 - type: Transform - - uid: 2527 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,7.5 - parent: 2 - type: Transform - - uid: 2531 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,3.5 - parent: 2 - type: Transform - - uid: 2720 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,31.5 - parent: 2 - type: Transform - - uid: 2772 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,40.5 - parent: 2 - type: Transform - - uid: 2773 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,39.5 - parent: 2 - type: Transform - - uid: 2774 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,40.5 - parent: 2 - type: Transform - - uid: 2775 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,39.5 - parent: 2 - type: Transform - - uid: 5033 - components: - - pos: 35.5,3.5 - parent: 2 - type: Transform - - uid: 5423 - components: - - rot: 3.141592653589793 rad - pos: 37.5,42.5 - parent: 2 - type: Transform - - uid: 5424 - components: - - rot: 3.141592653589793 rad - pos: 33.5,40.5 - parent: 2 - type: Transform - - uid: 5425 - components: - - pos: 33.5,43.5 - parent: 2 - type: Transform - - uid: 10273 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-3.5 - parent: 2 - type: Transform - - uid: 10636 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,7.5 - parent: 2 - type: Transform - - uid: 11425 - components: - - rot: -1.5707963267948966 rad - pos: 78.5,4.5 - parent: 2 - type: Transform - - uid: 11426 - components: - - rot: -1.5707963267948966 rad - pos: 78.5,5.5 - parent: 2 - type: Transform - - uid: 12677 - components: - - rot: 1.5707963267948966 rad - pos: 105.5,-13.5 - parent: 2 - type: Transform - - uid: 12678 - components: - - rot: -1.5707963267948966 rad - pos: 107.5,-13.5 - parent: 2 - type: Transform -- proto: ComputerAlert - entities: - - uid: 785 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-25.5 - parent: 2 - type: Transform - - uid: 1163 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-33.5 - parent: 2 - type: Transform - - uid: 5079 - components: - - pos: 28.5,48.5 - parent: 2 - type: Transform -- proto: ComputerAnalysisConsole - entities: - - uid: 152 - components: - - pos: 64.5,25.5 - parent: 2 - type: Transform - - linkedPorts: - 8666: - - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver - type: DeviceLinkSource - - uid: 10667 - components: - - rot: 3.141592653589793 rad - pos: 61.5,8.5 - parent: 2 - type: Transform -- proto: computerBodyScanner - entities: - - uid: 31 - components: - - pos: 65.5,-3.5 - parent: 2 - type: Transform - - uid: 1911 - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-11.5 - parent: 2 - type: Transform - - uid: 11401 - components: - - rot: 3.141592653589793 rad - pos: 66.5,-11.5 - parent: 2 - type: Transform - - uid: 12110 - components: - - rot: -1.5707963267948966 rad - pos: 55.5,8.5 - parent: 2 - type: Transform -- proto: ComputerCargoBounty - entities: - - uid: 7809 - components: - - pos: 15.5,25.5 - parent: 2 - type: Transform -- proto: ComputerCargoOrders - entities: - - uid: 2136 - components: - - pos: 20.5,23.5 - parent: 2 - type: Transform - - uid: 7741 - components: - - pos: 11.5,28.5 - parent: 2 - type: Transform -- proto: ComputerCargoShuttle - entities: - - uid: 6864 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,25.5 - parent: 2 - type: Transform -- proto: ComputerComms - entities: - - uid: 405 - components: - - rot: 3.141592653589793 rad - pos: 33.5,39.5 - parent: 2 - type: Transform - - uid: 5059 - components: - - pos: 27.5,48.5 - parent: 2 - type: Transform -- proto: ComputerCrewMonitoring - entities: - - uid: 7925 - components: - - pos: 31.5,48.5 - parent: 2 - type: Transform - - uid: 8430 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,26.5 - parent: 2 - type: Transform - - uid: 9617 - components: - - pos: 49.5,4.5 - parent: 2 - type: Transform - - uid: 9619 - components: - - rot: 3.141592653589793 rad - pos: 44.5,2.5 - parent: 2 - type: Transform - - uid: 10282 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-3.5 - parent: 2 - type: Transform - - uid: 11922 - components: - - pos: 72.5,8.5 - parent: 2 - type: Transform - - uid: 12580 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-16.5 - parent: 2 - type: Transform -- proto: ComputerCriminalRecords - entities: - - uid: 2145 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,17.5 - parent: 2 - type: Transform - - uid: 7981 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-5.5 - parent: 2 - type: Transform - - uid: 8315 - components: - - pos: 23.5,48.5 - parent: 2 - type: Transform - - uid: 12083 - components: - - pos: 29.5,26.5 - parent: 2 - type: Transform - - uid: 12090 - components: - - pos: 45.5,25.5 - parent: 2 - type: Transform - - uid: 12091 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,27.5 - parent: 2 - type: Transform -- proto: ComputerId - entities: - - uid: 401 - components: - - rot: 3.141592653589793 rad - pos: 32.5,39.5 - parent: 2 - type: Transform - - uid: 4988 - components: - - pos: 26.5,48.5 - parent: 2 - type: Transform - - uid: 10275 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-3.5 - parent: 2 - type: Transform -- proto: ComputerMedicalRecords - entities: - - uid: 7725 - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-11.5 - parent: 2 - type: Transform - - uid: 9616 - components: - - rot: -1.5707963267948966 rad - pos: 51.5,2.5 - parent: 2 - type: Transform - - uid: 11035 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-17.5 - parent: 2 - type: Transform - - uid: 12170 - components: - - pos: 34.5,46.5 - parent: 2 - type: Transform -- proto: ComputerPowerMonitoring - entities: - - uid: 776 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-23.5 - parent: 2 - type: Transform - - uid: 4042 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-34.5 - parent: 2 - type: Transform - - uid: 5126 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,45.5 - parent: 2 - type: Transform - - uid: 6898 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-13.5 - parent: 2 - type: Transform -- proto: ComputerRadar - entities: - - uid: 5078 - components: - - pos: 20.5,46.5 - parent: 2 - type: Transform - - uid: 12821 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,15.5 - parent: 2 - type: Transform -- proto: ComputerResearchAndDevelopment - entities: - - uid: 5304 - components: - - rot: 3.141592653589793 rad - pos: 51.5,17.5 - parent: 2 - type: Transform - - uid: 5390 - components: - - pos: 49.5,11.5 - parent: 2 - type: Transform - - uid: 6474 - components: - - pos: 50.5,25.5 - parent: 2 - type: Transform - - uid: 10666 - components: - - rot: 3.141592653589793 rad - pos: 62.5,8.5 - parent: 2 - type: Transform -- proto: ComputerSalvageExpedition - entities: - - uid: 12820 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,21.5 - parent: 2 - type: Transform -- proto: ComputerShuttleCargo - entities: - - uid: 7727 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,25.5 - parent: 2 - type: Transform -- proto: ComputerShuttleSalvage - entities: - - uid: 10140 - components: - - pos: 7.5,18.5 - parent: 2 - type: Transform -- proto: ComputerSolarControl - entities: - - uid: 805 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-24.5 - parent: 2 - type: Transform - - uid: 4305 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-36.5 - parent: 2 - type: Transform - - uid: 5639 - components: - - pos: 70.5,46.5 - parent: 2 - type: Transform -- proto: ComputerStationRecords - entities: - - uid: 10274 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-3.5 - parent: 2 - type: Transform - - uid: 12581 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-18.5 - parent: 2 - type: Transform -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 8346 - components: - - pos: 24.5,48.5 - parent: 2 - type: Transform - - uid: 8431 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,28.5 - parent: 2 - type: Transform - - uid: 12082 - components: - - pos: 30.5,26.5 - parent: 2 - type: Transform - - uid: 12089 - components: - - pos: 44.5,25.5 - parent: 2 - type: Transform -- proto: ComputerTelevision - entities: - - uid: 11475 - components: - - pos: 41.5,20.5 - parent: 2 - type: Transform -- proto: ContainmentFieldGenerator - entities: - - uid: 752 - components: - - pos: 9.5,-26.5 - parent: 2 - type: Transform - - uid: 832 - components: - - pos: 13.5,-31.5 - parent: 2 - type: Transform - - uid: 1113 - components: - - pos: 9.5,-27.5 - parent: 2 - type: Transform - - uid: 1593 - components: - - pos: 9.5,-28.5 - parent: 2 - type: Transform - - uid: 3979 - components: - - pos: 25.5,-47.5 - parent: 2 - type: Transform - - uid: 3984 - components: - - pos: 17.5,-55.5 - parent: 2 - type: Transform - - uid: 10929 - components: - - pos: 17.5,-47.5 - parent: 2 - type: Transform - - uid: 10931 - components: - - pos: 25.5,-55.5 - parent: 2 - type: Transform -- proto: ConveyorBelt - entities: - - uid: 1319 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,15.5 - parent: 2 - type: Transform - - links: - - 944 - type: DeviceLinkSink - - uid: 2028 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,15.5 - parent: 2 - type: Transform - - links: - - 944 - type: DeviceLinkSink - - uid: 2030 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,15.5 - parent: 2 - type: Transform - - links: - - 944 - type: DeviceLinkSink - - uid: 2037 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,27.5 - parent: 2 - type: Transform - - links: - - 7808 - type: DeviceLinkSink - - uid: 2038 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,27.5 - parent: 2 - type: Transform - - links: - - 7808 - type: DeviceLinkSink - - uid: 2039 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,23.5 - parent: 2 - type: Transform - - links: - - 2154 - type: DeviceLinkSink - - uid: 2040 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,23.5 - parent: 2 - type: Transform - - links: - - 2154 - type: DeviceLinkSink - - uid: 2041 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,27.5 - parent: 2 - type: Transform - - links: - - 7808 - type: DeviceLinkSink - - uid: 2042 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,27.5 - parent: 2 - type: Transform - - links: - - 7808 - type: DeviceLinkSink - - uid: 2051 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,23.5 - parent: 2 - type: Transform - - links: - - 2154 - type: DeviceLinkSink - - uid: 2064 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,27.5 - parent: 2 - type: Transform - - links: - - 7808 - type: DeviceLinkSink - - uid: 2066 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,23.5 - parent: 2 - type: Transform - - links: - - 2154 - type: DeviceLinkSink - - uid: 2067 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,23.5 - parent: 2 - type: Transform - - links: - - 2154 - type: DeviceLinkSink - - uid: 5285 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,15.5 - parent: 2 - type: Transform - - links: - - 944 - type: DeviceLinkSink - - uid: 5842 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-28.5 - parent: 2 - type: Transform - - links: - - 5856 - type: DeviceLinkSink - - uid: 5843 - components: - - pos: 1.5,-28.5 - parent: 2 - type: Transform - - links: - - 5856 - type: DeviceLinkSink - - uid: 5844 - components: - - pos: 1.5,-29.5 - parent: 2 - type: Transform - - links: - - 5856 - type: DeviceLinkSink - - uid: 5845 - components: - - pos: 1.5,-30.5 - parent: 2 - type: Transform - - links: - - 5856 - type: DeviceLinkSink - - uid: 5846 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-31.5 - parent: 2 - type: Transform - - links: - - 5856 - type: DeviceLinkSink - - uid: 5847 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-31.5 - parent: 2 - type: Transform - - links: - - 5856 - type: DeviceLinkSink - - uid: 5850 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-31.5 - parent: 2 - type: Transform - - links: - - 5856 - type: DeviceLinkSink - - uid: 5851 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-30.5 - parent: 2 - type: Transform - - links: - - 5856 - type: DeviceLinkSink - - uid: 5852 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-28.5 - parent: 2 - type: Transform - - links: - - 5856 - type: DeviceLinkSink - - uid: 5853 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-27.5 - parent: 2 - type: Transform - - links: - - 5856 - type: DeviceLinkSink - - uid: 5854 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-26.5 - parent: 2 - type: Transform - - links: - - 5856 - type: DeviceLinkSink - - uid: 6775 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,15.5 - parent: 2 - type: Transform - - links: - - 944 - type: DeviceLinkSink - - uid: 6820 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,15.5 - parent: 2 - type: Transform - - links: - - 944 - type: DeviceLinkSink - - uid: 6823 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,15.5 - parent: 2 - type: Transform - - links: - - 944 - type: DeviceLinkSink - - uid: 6825 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,15.5 - parent: 2 - type: Transform - - links: - - 944 - type: DeviceLinkSink - - uid: 6843 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,15.5 - parent: 2 - type: Transform - - links: - - 944 - type: DeviceLinkSink - - uid: 6844 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,15.5 - parent: 2 - type: Transform - - links: - - 944 - type: DeviceLinkSink - - uid: 6846 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,15.5 - parent: 2 - type: Transform - - links: - - 944 - type: DeviceLinkSink - - uid: 7585 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,15.5 - parent: 2 - type: Transform - - links: - - 944 - type: DeviceLinkSink - - uid: 7586 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,15.5 - parent: 2 - type: Transform - - links: - - 944 - type: DeviceLinkSink - - uid: 7667 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,15.5 - parent: 2 - type: Transform - - links: - - 944 - type: DeviceLinkSink - - uid: 7671 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,15.5 - parent: 2 - type: Transform - - links: - - 944 - type: DeviceLinkSink - - uid: 7672 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,15.5 - parent: 2 - type: Transform - - links: - - 944 - type: DeviceLinkSink - - uid: 7841 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,15.5 - parent: 2 - type: Transform - - links: - - 944 - type: DeviceLinkSink - - uid: 7849 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,15.5 - parent: 2 - type: Transform - - links: - - 944 - type: DeviceLinkSink - - uid: 7875 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,15.5 - parent: 2 - type: Transform - - links: - - 944 - type: DeviceLinkSink - - uid: 7876 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,15.5 - parent: 2 - type: Transform - - links: - - 944 - type: DeviceLinkSink - - uid: 7878 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,15.5 - parent: 2 - type: Transform - - links: - - 944 - type: DeviceLinkSink - - uid: 7879 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,15.5 - parent: 2 - type: Transform - - links: - - 944 - type: DeviceLinkSink - - uid: 7880 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,15.5 - parent: 2 - type: Transform - - links: - - 944 - type: DeviceLinkSink - - uid: 7888 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,15.5 - parent: 2 - type: Transform - - links: - - 944 - type: DeviceLinkSink - - uid: 7891 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,15.5 - parent: 2 - type: Transform - - links: - - 944 - type: DeviceLinkSink - - uid: 7949 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,15.5 - parent: 2 - type: Transform - - links: - - 944 - type: DeviceLinkSink -- proto: CowToolboxFilled - entities: - - uid: 5707 - components: - - pos: 84.5,-5.5 - parent: 2 - type: Transform -- proto: CrateArtifactContainer - entities: - - uid: 10439 - components: - - pos: 62.5,22.5 - parent: 2 - type: Transform -- proto: CrateCoffin - entities: - - uid: 2538 - components: - - pos: 38.5,3.5 - parent: 2 - type: Transform -- proto: CrateEmptySpawner - entities: - - uid: 8167 - components: - - pos: 10.5,26.5 - parent: 2 - type: Transform - - uid: 8172 - components: - - pos: 6.5,31.5 - parent: 2 - type: Transform - - uid: 8177 - components: - - pos: 12.5,24.5 - parent: 2 - type: Transform -- proto: CrateEngineeringAMEJar - entities: - - uid: 5263 - components: - - pos: 28.5,-38.5 - parent: 2 - type: Transform -- proto: CrateEngineeringAMEShielding - entities: - - uid: 5235 - components: - - pos: 28.5,-40.5 - parent: 2 - type: Transform - - uid: 5262 - components: - - pos: 28.5,-41.5 - parent: 2 - type: Transform -- proto: CrateEngineeringCableBulk - entities: - - uid: 782 - components: - - pos: 20.5,-23.5 - parent: 2 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - labelSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 5526 - components: - - pos: 87.5,0.5 - parent: 2 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - labelSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: CrateEngineeringCableLV - entities: - - uid: 12353 - components: - - pos: 5.5,-8.5 - parent: 2 - type: Transform -- proto: CrateEngineeringCableMV - entities: - - uid: 5686 - components: - - pos: 10.5,-31.5 - parent: 2 - type: Transform -- proto: CrateEngineeringSecure - entities: - - uid: 5625 - components: - - pos: 11.5,-25.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 784 - - 1239 - - 1460 - - 1842 - - 2129 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: CrateEngineeringSingularityCollector - entities: - - uid: 1596 - components: - - pos: 25.5,-38.5 - parent: 2 - type: Transform - - uid: 1605 - components: - - pos: 26.5,-38.5 - parent: 2 - type: Transform - - uid: 1674 - components: - - pos: 16.5,-38.5 - parent: 2 - type: Transform - - uid: 1678 - components: - - pos: 17.5,-38.5 - parent: 2 - type: Transform -- proto: CrateFilledSpawner - entities: - - uid: 191 - components: - - pos: 12.5,16.5 - parent: 2 - type: Transform - - uid: 7552 - components: - - pos: 13.5,24.5 - parent: 2 - type: Transform - - uid: 8165 - components: - - pos: 11.5,24.5 - parent: 2 - type: Transform - - uid: 8166 - components: - - pos: 10.5,24.5 - parent: 2 - type: Transform - - uid: 8168 - components: - - pos: 11.5,26.5 - parent: 2 - type: Transform - - uid: 8169 - components: - - pos: 12.5,26.5 - parent: 2 - type: Transform - - uid: 8170 - components: - - pos: 13.5,26.5 - parent: 2 - type: Transform - - uid: 8171 - components: - - pos: 6.5,30.5 - parent: 2 - type: Transform - - uid: 8173 - components: - - pos: 6.5,32.5 - parent: 2 - type: Transform - - uid: 8174 - components: - - pos: 7.5,32.5 - parent: 2 - type: Transform -- proto: CrateFreezer - entities: - - uid: 740 - components: - - pos: 31.5,-11.5 - parent: 2 - type: Transform - - uid: 13109 - components: - - pos: 67.5,-5.5 - parent: 2 - type: Transform -- proto: CrateFunATV - entities: - - uid: 9478 - components: - - pos: 7.5,31.5 - parent: 2 - type: Transform -- proto: CrateGenericSteel - entities: - - uid: 3720 - components: - - pos: 89.5,-7.5 - parent: 2 - type: Transform - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - labelSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - uid: 3721 - components: - - pos: 90.5,-7.5 - parent: 2 - type: Transform - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - labelSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- proto: CrateMaterialSteel - entities: - - uid: 5687 - components: - - pos: 11.5,-31.5 - parent: 2 - type: Transform - - uid: 13043 - components: - - pos: 33.5,-52.5 - parent: 2 - type: Transform -- proto: CrateMedicalSurgery - entities: - - uid: 5086 - components: - - pos: 64.5,-3.5 - parent: 2 - type: Transform -- proto: CrateMousetrapBoxes - entities: - - uid: 8819 - components: - - pos: 9.5,-18.5 - parent: 2 - type: Transform -- proto: CrateNPCChicken - entities: - - uid: 6753 - components: - - pos: 46.5,-10.5 - parent: 2 - type: Transform -- proto: CrateNPCCow - entities: - - uid: 6752 - components: - - pos: 47.5,-10.5 - parent: 2 - type: Transform -- proto: CrateNPCHamlet - entities: - - uid: 12796 - components: - - pos: 29.5,47.5 - parent: 2 - type: Transform -- proto: CrateTrashCart - entities: - - uid: 13117 - components: - - pos: 45.5,29.5 - parent: 2 - type: Transform - - uid: 13121 - components: - - pos: 49.5,-11.5 - parent: 2 - type: Transform - - uid: 13122 - components: - - pos: 55.5,5.5 - parent: 2 - type: Transform - - uid: 13123 - components: - - pos: 23.5,8.5 - parent: 2 - type: Transform - - uid: 13124 - components: - - pos: 19.5,26.5 - parent: 2 - type: Transform -- proto: CrateTrashCartJani - entities: - - uid: 12906 - components: - - pos: 6.5,-6.5 - parent: 2 - type: Transform -- proto: CrayonBox - entities: - - uid: 4695 - components: - - pos: 20.5,15.5 - parent: 2 - type: Transform - - uid: 11395 - components: - - pos: 25.423948,6.293049 - parent: 2 - type: Transform - - uid: 11396 - components: - - pos: 30.486448,7.511799 - parent: 2 - type: Transform -- proto: CrayonRainbow - entities: - - uid: 12700 - components: - - pos: 106.45511,-16.386364 - parent: 2 - type: Transform - - uid: 12828 - components: - - flags: InContainer - type: MetaData - - parent: 12094 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: Crematorium - entities: - - uid: 9729 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,4.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrewMonitoringServer - entities: - - uid: 8231 - components: - - pos: 51.5,25.5 - parent: 2 - type: Transform -- proto: CrewMonitoringServerMachineCircuitboard - entities: - - uid: 12359 - components: - - pos: 37.528957,-14.5012665 - parent: 2 - type: Transform -- proto: Crowbar - entities: - - uid: 686 - components: - - pos: 30.5,-14.5 - parent: 2 - type: Transform - - uid: 1048 - components: - - pos: 32.504723,-30.433409 - parent: 2 - type: Transform - - uid: 5326 - components: - - pos: 55.436665,17.567713 - parent: 2 - type: Transform - - uid: 5713 - components: - - pos: 77.53034,-13.472758 - parent: 2 - type: Transform - - uid: 8688 - components: - - pos: 32.5021,27.416605 - parent: 2 - type: Transform - - uid: 11129 - components: - - pos: 54.629898,-15.278217 - parent: 2 - type: Transform -- proto: CryoPod - entities: - - uid: 11462 - components: - - pos: 58.5,-0.5 - parent: 2 - type: Transform - - uid: 11774 - components: - - pos: 60.5,-0.5 - parent: 2 - type: Transform -- proto: CryoPodMachineCircuitboard - entities: - - uid: 12366 - components: - - pos: 37.669582,-14.5950165 - parent: 2 - type: Transform -- proto: CryoxadoneBeakerSmall - entities: - - uid: 11801 - components: - - pos: 61.389576,-0.25500047 - parent: 2 - type: Transform - - uid: 11802 - components: - - pos: 61.483326,-0.38000047 - parent: 2 - type: Transform -- proto: d6Dice - entities: - - uid: 316 - components: - - rot: 3.141592653589793 rad - pos: 11.493689,4.5440345 - parent: 2 - type: Transform - - uid: 5505 - components: - - pos: 70.363464,33.795147 - parent: 2 - type: Transform - - uid: 5506 - components: - - pos: 70.69159,33.810772 - parent: 2 - type: Transform - - uid: 5517 - components: - - rot: 3.141592653589793 rad - pos: 70.50039,33.577915 - parent: 2 - type: Transform -- proto: Defibrillator - entities: - - uid: 11416 - components: - - pos: 67.479836,-4.0156612 - parent: 2 - type: Transform -- proto: DefibrillatorCabinetFilled - entities: - - uid: 9627 - components: - - pos: 45.5,5.5 - parent: 2 - type: Transform - - uid: 12817 - components: - - pos: 74.5,3.5 - parent: 2 - type: Transform - - uid: 12818 - components: - - pos: 63.5,5.5 - parent: 2 - type: Transform - - uid: 13108 - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-10.5 - parent: 2 - type: Transform -- proto: DeployableBarrier - entities: - - uid: 257 - components: - - anchored: False - pos: 39.5,28.5 - parent: 2 - type: Transform - - uid: 258 - components: - - anchored: False - pos: 40.5,28.5 - parent: 2 - type: Transform -- proto: DeskBell - entities: - - uid: 1566 - components: - - pos: 34.50083,-8.541687 - parent: 2 - type: Transform -- proto: DiseaseDiagnoser - entities: - - uid: 12156 - components: - - pos: 82.5,-7.5 - parent: 2 - type: Transform -- proto: DisposalBend - entities: - - uid: 2376 - components: - - rot: 3.141592653589793 rad - pos: 4.5,10.5 - parent: 2 - type: Transform - - uid: 3456 - components: - - pos: 14.5,20.5 - parent: 2 - type: Transform - - uid: 5777 - components: - - pos: 31.5,-28.5 - parent: 2 - type: Transform - - uid: 5778 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-32.5 - parent: 2 - type: Transform - - uid: 5779 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-32.5 - parent: 2 - type: Transform - - uid: 5780 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-33.5 - parent: 2 - type: Transform - - uid: 5781 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-34.5 - parent: 2 - type: Transform - - uid: 5782 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-34.5 - parent: 2 - type: Transform - - uid: 5800 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-28.5 - parent: 2 - type: Transform - - uid: 5820 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-21.5 - parent: 2 - type: Transform - - uid: 5821 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-23.5 - parent: 2 - type: Transform - - uid: 5822 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-23.5 - parent: 2 - type: Transform - - uid: 5823 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-24.5 - parent: 2 - type: Transform - - uid: 5828 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-24.5 - parent: 2 - type: Transform - - uid: 5829 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-30.5 - parent: 2 - type: Transform - - uid: 5840 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-30.5 - parent: 2 - type: Transform - - uid: 7289 - components: - - rot: 3.141592653589793 rad - pos: 35.5,-2.5 - parent: 2 - type: Transform - - uid: 7332 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,13.5 - parent: 2 - type: Transform - - uid: 7352 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,7.5 - parent: 2 - type: Transform - - uid: 7393 - components: - - pos: 29.5,-10.5 - parent: 2 - type: Transform - - uid: 7394 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-10.5 - parent: 2 - type: Transform - - uid: 7395 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-11.5 - parent: 2 - type: Transform - - uid: 7402 - components: - - pos: 42.5,1.5 - parent: 2 - type: Transform - - uid: 7403 - components: - - rot: 3.141592653589793 rad - pos: 41.5,1.5 - parent: 2 - type: Transform - - uid: 7707 - components: - - pos: 33.5,23.5 - parent: 2 - type: Transform - - uid: 7751 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,13.5 - parent: 2 - type: Transform - - uid: 7761 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,18.5 - parent: 2 - type: Transform - - uid: 7953 - components: - - rot: 3.141592653589793 rad - pos: 33.5,18.5 - parent: 2 - type: Transform - - uid: 8263 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,18.5 - parent: 2 - type: Transform - - uid: 8264 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,18.5 - parent: 2 - type: Transform - - uid: 8265 - components: - - rot: 3.141592653589793 rad - pos: 11.5,15.5 - parent: 2 - type: Transform - - uid: 8267 - components: - - pos: 12.5,15.5 - parent: 2 - type: Transform - - uid: 8268 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,13.5 - parent: 2 - type: Transform - - uid: 8269 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,13.5 - parent: 2 - type: Transform - - uid: 8926 - components: - - pos: 37.5,-9.5 - parent: 2 - type: Transform - - uid: 8927 - components: - - rot: 3.141592653589793 rad - pos: 33.5,-9.5 - parent: 2 - type: Transform - - uid: 9401 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,42.5 - parent: 2 - type: Transform - - uid: 9402 - components: - - pos: 32.5,45.5 - parent: 2 - type: Transform - - uid: 9403 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,45.5 - parent: 2 - type: Transform - - uid: 9432 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,35.5 - parent: 2 - type: Transform - - uid: 9433 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,34.5 - parent: 2 - type: Transform - - uid: 9434 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,35.5 - parent: 2 - type: Transform - - uid: 10255 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-3.5 - parent: 2 - type: Transform - - uid: 10266 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-3.5 - parent: 2 - type: Transform - - uid: 10586 - components: - - rot: 3.141592653589793 rad - pos: 54.5,11.5 - parent: 2 - type: Transform - - uid: 10598 - components: - - rot: -1.5707963267948966 rad - pos: 58.5,14.5 - parent: 2 - type: Transform - - uid: 10599 - components: - - pos: 58.5,22.5 - parent: 2 - type: Transform - - uid: 10602 - components: - - rot: 1.5707963267948966 rad - pos: 50.5,18.5 - parent: 2 - type: Transform - - uid: 10622 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,14.5 - parent: 2 - type: Transform - - uid: 11435 - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-6.5 - parent: 2 - type: Transform - - uid: 11440 - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-9.5 - parent: 2 - type: Transform - - uid: 11451 - components: - - pos: 56.5,-0.5 - parent: 2 - type: Transform - - uid: 11452 - components: - - rot: 3.141592653589793 rad - pos: 43.5,-0.5 - parent: 2 - type: Transform - - uid: 11453 - components: - - pos: 43.5,0.5 - parent: 2 - type: Transform - - uid: 11454 - components: - - rot: 3.141592653589793 rad - pos: 52.5,3.5 - parent: 2 - type: Transform - - uid: 11455 - components: - - pos: 54.5,3.5 - parent: 2 - type: Transform - - uid: 12440 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-14.5 - parent: 2 - type: Transform - - uid: 12456 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-0.5 - parent: 2 - type: Transform - - uid: 12470 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-0.5 - parent: 2 - type: Transform -- proto: DisposalJunction - entities: - - uid: 2422 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,13.5 - parent: 2 - type: Transform - - uid: 2475 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,10.5 - parent: 2 - type: Transform - - uid: 5084 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,0.5 - parent: 2 - type: Transform - - uid: 5695 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-25.5 - parent: 2 - type: Transform - - uid: 7401 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,0.5 - parent: 2 - type: Transform - - uid: 8343 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,0.5 - parent: 2 - type: Transform - - uid: 8821 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,0.5 - parent: 2 - type: Transform - - uid: 9411 - components: - - pos: 28.5,44.5 - parent: 2 - type: Transform - - uid: 9435 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,34.5 - parent: 2 - type: Transform - - uid: 10600 - components: - - pos: 58.5,18.5 - parent: 2 - type: Transform - - uid: 11456 - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-0.5 - parent: 2 - type: Transform -- proto: DisposalJunctionFlipped - entities: - - uid: 5141 - components: - - pos: 26.5,23.5 - parent: 2 - type: Transform - - uid: 5142 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,0.5 - parent: 2 - type: Transform - - uid: 7290 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,0.5 - parent: 2 - type: Transform - - uid: 7317 - components: - - pos: 26.5,-11.5 - parent: 2 - type: Transform - - uid: 7400 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,0.5 - parent: 2 - type: Transform - - uid: 10601 - components: - - rot: -1.5707963267948966 rad - pos: 54.5,14.5 - parent: 2 - type: Transform - - uid: 11436 - components: - - rot: 3.141592653589793 rad - pos: 56.5,-6.5 - parent: 2 - type: Transform - - uid: 11460 - components: - - pos: 54.5,1.5 - parent: 2 - type: Transform - - uid: 12457 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-0.5 - parent: 2 - type: Transform -- proto: DisposalPipe - entities: - - uid: 28 - components: - - rot: 3.141592653589793 rad - pos: 26.5,16.5 - parent: 2 - type: Transform - - uid: 256 - components: - - rot: 3.141592653589793 rad - pos: 26.5,15.5 - parent: 2 - type: Transform - - uid: 385 - components: - - rot: 3.141592653589793 rad - pos: 26.5,18.5 - parent: 2 - type: Transform - - uid: 584 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-24.5 - parent: 2 - type: Transform - - uid: 2065 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,18.5 - parent: 2 - type: Transform - - uid: 2118 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,13.5 - parent: 2 - type: Transform - - uid: 2133 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,23.5 - parent: 2 - type: Transform - - uid: 2314 - components: - - rot: 3.141592653589793 rad - pos: 26.5,17.5 - parent: 2 - type: Transform - - uid: 2377 - components: - - rot: 3.141592653589793 rad - pos: 4.5,12.5 - parent: 2 - type: Transform - - uid: 2380 - components: - - pos: 33.5,22.5 - parent: 2 - type: Transform - - uid: 5534 - components: - - pos: 32.5,1.5 - parent: 2 - type: Transform - - uid: 5697 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-28.5 - parent: 2 - type: Transform - - uid: 5698 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-28.5 - parent: 2 - type: Transform - - uid: 5699 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-28.5 - parent: 2 - type: Transform - - uid: 5700 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-28.5 - parent: 2 - type: Transform - - uid: 5770 - components: - - pos: 31.5,-29.5 - parent: 2 - type: Transform - - uid: 5771 - components: - - pos: 31.5,-30.5 - parent: 2 - type: Transform - - uid: 5772 - components: - - pos: 31.5,-31.5 - parent: 2 - type: Transform - - uid: 5773 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-32.5 - parent: 2 - type: Transform - - uid: 5774 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-32.5 - parent: 2 - type: Transform - - uid: 5775 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-32.5 - parent: 2 - type: Transform - - uid: 5776 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-32.5 - parent: 2 - type: Transform - - uid: 5784 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-33.5 - parent: 2 - type: Transform - - uid: 5788 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-32.5 - parent: 2 - type: Transform - - uid: 5789 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-31.5 - parent: 2 - type: Transform - - uid: 5790 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-30.5 - parent: 2 - type: Transform - - uid: 5791 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-29.5 - parent: 2 - type: Transform - - uid: 5792 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-28.5 - parent: 2 - type: Transform - - uid: 5793 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-28.5 - parent: 2 - type: Transform - - uid: 5794 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-28.5 - parent: 2 - type: Transform - - uid: 5795 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-28.5 - parent: 2 - type: Transform - - uid: 5796 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-28.5 - parent: 2 - type: Transform - - uid: 5797 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-28.5 - parent: 2 - type: Transform - - uid: 5798 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-28.5 - parent: 2 - type: Transform - - uid: 5799 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-28.5 - parent: 2 - type: Transform - - uid: 5802 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-23.5 - parent: 2 - type: Transform - - uid: 5803 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-22.5 - parent: 2 - type: Transform - - uid: 5804 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-21.5 - parent: 2 - type: Transform - - uid: 5805 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-21.5 - parent: 2 - type: Transform - - uid: 5806 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-21.5 - parent: 2 - type: Transform - - uid: 5807 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-21.5 - parent: 2 - type: Transform - - uid: 5809 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-21.5 - parent: 2 - type: Transform - - uid: 5810 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-21.5 - parent: 2 - type: Transform - - uid: 5811 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-21.5 - parent: 2 - type: Transform - - uid: 5812 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-21.5 - parent: 2 - type: Transform - - uid: 5814 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-21.5 - parent: 2 - type: Transform - - uid: 5815 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-21.5 - parent: 2 - type: Transform - - uid: 5816 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-21.5 - parent: 2 - type: Transform - - uid: 5817 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-21.5 - parent: 2 - type: Transform - - uid: 5818 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-21.5 - parent: 2 - type: Transform - - uid: 5819 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-21.5 - parent: 2 - type: Transform - - uid: 5825 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-23.5 - parent: 2 - type: Transform - - uid: 5826 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-23.5 - parent: 2 - type: Transform - - uid: 5827 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-22.5 - parent: 2 - type: Transform - - uid: 5830 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-29.5 - parent: 2 - type: Transform - - uid: 5831 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-28.5 - parent: 2 - type: Transform - - uid: 5832 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-27.5 - parent: 2 - type: Transform - - uid: 5833 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-26.5 - parent: 2 - type: Transform - - uid: 5834 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-25.5 - parent: 2 - type: Transform - - uid: 5835 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-24.5 - parent: 2 - type: Transform - - uid: 5836 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-24.5 - parent: 2 - type: Transform - - uid: 5837 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-30.5 - parent: 2 - type: Transform - - uid: 5838 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-30.5 - parent: 2 - type: Transform - - uid: 5841 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-29.5 - parent: 2 - type: Transform - - uid: 6848 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,23.5 - parent: 2 - type: Transform - - uid: 6849 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,23.5 - parent: 2 - type: Transform - - uid: 6850 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,23.5 - parent: 2 - type: Transform - - uid: 6877 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,13.5 - parent: 2 - type: Transform - - uid: 6878 - components: - - rot: 3.141592653589793 rad - pos: 26.5,14.5 - parent: 2 - type: Transform - - uid: 6879 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,13.5 - parent: 2 - type: Transform - - uid: 6883 - components: - - rot: 3.141592653589793 rad - pos: 26.5,22.5 - parent: 2 - type: Transform - - uid: 7291 - components: - - rot: 3.141592653589793 rad - pos: 35.5,-1.5 - parent: 2 - type: Transform - - uid: 7292 - components: - - rot: 3.141592653589793 rad - pos: 35.5,-0.5 - parent: 2 - type: Transform - - uid: 7293 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,0.5 - parent: 2 - type: Transform - - uid: 7296 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,0.5 - parent: 2 - type: Transform - - uid: 7301 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,0.5 - parent: 2 - type: Transform - - uid: 7302 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,0.5 - parent: 2 - type: Transform - - uid: 7303 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,0.5 - parent: 2 - type: Transform - - uid: 7306 - components: - - pos: 26.5,-0.5 - parent: 2 - type: Transform - - uid: 7307 - components: - - pos: 26.5,-1.5 - parent: 2 - type: Transform - - uid: 7308 - components: - - pos: 26.5,-2.5 - parent: 2 - type: Transform - - uid: 7309 - components: - - pos: 26.5,-3.5 - parent: 2 - type: Transform - - uid: 7310 - components: - - pos: 26.5,-4.5 - parent: 2 - type: Transform - - uid: 7311 - components: - - pos: 26.5,-5.5 - parent: 2 - type: Transform - - uid: 7312 - components: - - pos: 26.5,-6.5 - parent: 2 - type: Transform - - uid: 7313 - components: - - pos: 26.5,-7.5 - parent: 2 - type: Transform - - uid: 7314 - components: - - pos: 26.5,-8.5 - parent: 2 - type: Transform - - uid: 7315 - components: - - pos: 26.5,-9.5 - parent: 2 - type: Transform - - uid: 7316 - components: - - pos: 26.5,-10.5 - parent: 2 - type: Transform - - uid: 7318 - components: - - pos: 26.5,-12.5 - parent: 2 - type: Transform - - uid: 7319 - components: - - pos: 26.5,-13.5 - parent: 2 - type: Transform - - uid: 7320 - components: - - pos: 26.5,-14.5 - parent: 2 - type: Transform - - uid: 7321 - components: - - pos: 26.5,-15.5 - parent: 2 - type: Transform - - uid: 7322 - components: - - pos: 26.5,-16.5 - parent: 2 - type: Transform - - uid: 7323 - components: - - pos: 26.5,-17.5 - parent: 2 - type: Transform - - uid: 7324 - components: - - pos: 26.5,-18.5 - parent: 2 - type: Transform - - uid: 7325 - components: - - pos: 26.5,-19.5 - parent: 2 - type: Transform - - uid: 7326 - components: - - pos: 26.5,-20.5 - parent: 2 - type: Transform - - uid: 7330 - components: - - pos: 22.5,14.5 - parent: 2 - type: Transform - - uid: 7333 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,13.5 - parent: 2 - type: Transform - - uid: 7334 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,13.5 - parent: 2 - type: Transform - - uid: 7335 - components: - - pos: 19.5,12.5 - parent: 2 - type: Transform - - uid: 7336 - components: - - pos: 19.5,11.5 - parent: 2 - type: Transform - - uid: 7337 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,10.5 - parent: 2 - type: Transform - - uid: 7338 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,10.5 - parent: 2 - type: Transform - - uid: 7339 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,10.5 - parent: 2 - type: Transform - - uid: 7340 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,10.5 - parent: 2 - type: Transform - - uid: 7341 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,10.5 - parent: 2 - type: Transform - - uid: 7343 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,10.5 - parent: 2 - type: Transform - - uid: 7345 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,10.5 - parent: 2 - type: Transform - - uid: 7347 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,10.5 - parent: 2 - type: Transform - - uid: 7348 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,10.5 - parent: 2 - type: Transform - - uid: 7349 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,10.5 - parent: 2 - type: Transform - - uid: 7350 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,10.5 - parent: 2 - type: Transform - - uid: 7351 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,10.5 - parent: 2 - type: Transform - - uid: 7353 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,7.5 - parent: 2 - type: Transform - - uid: 7354 - components: - - pos: 19.5,8.5 - parent: 2 - type: Transform - - uid: 7355 - components: - - pos: 19.5,9.5 - parent: 2 - type: Transform - - uid: 7358 - components: - - pos: 5.5,9.5 - parent: 2 - type: Transform - - uid: 7359 - components: - - pos: 5.5,8.5 - parent: 2 - type: Transform - - uid: 7360 - components: - - pos: 5.5,7.5 - parent: 2 - type: Transform - - uid: 7361 - components: - - pos: 5.5,6.5 - parent: 2 - type: Transform - - uid: 7362 - components: - - pos: 5.5,5.5 - parent: 2 - type: Transform - - uid: 7363 - components: - - pos: 5.5,4.5 - parent: 2 - type: Transform - - uid: 7367 - components: - - pos: 5.5,3.5 - parent: 2 - type: Transform - - uid: 7368 - components: - - pos: 5.5,2.5 - parent: 2 - type: Transform - - uid: 7369 - components: - - pos: 5.5,1.5 - parent: 2 - type: Transform - - uid: 7370 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,0.5 - parent: 2 - type: Transform - - uid: 7371 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,0.5 - parent: 2 - type: Transform - - uid: 7372 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,0.5 - parent: 2 - type: Transform - - uid: 7373 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,0.5 - parent: 2 - type: Transform - - uid: 7374 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,0.5 - parent: 2 - type: Transform - - uid: 7375 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,0.5 - parent: 2 - type: Transform - - uid: 7377 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,0.5 - parent: 2 - type: Transform - - uid: 7378 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,0.5 - parent: 2 - type: Transform - - uid: 7379 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,0.5 - parent: 2 - type: Transform - - uid: 7380 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,0.5 - parent: 2 - type: Transform - - uid: 7381 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,0.5 - parent: 2 - type: Transform - - uid: 7382 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,0.5 - parent: 2 - type: Transform - - uid: 7383 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,0.5 - parent: 2 - type: Transform - - uid: 7384 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,0.5 - parent: 2 - type: Transform - - uid: 7385 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,0.5 - parent: 2 - type: Transform - - uid: 7386 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,0.5 - parent: 2 - type: Transform - - uid: 7387 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,0.5 - parent: 2 - type: Transform - - uid: 7388 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,0.5 - parent: 2 - type: Transform - - uid: 7389 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,0.5 - parent: 2 - type: Transform - - uid: 7396 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-10.5 - parent: 2 - type: Transform - - uid: 7399 - components: - - rot: 3.141592653589793 rad - pos: 41.5,-0.5 - parent: 2 - type: Transform - - uid: 7404 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,0.5 - parent: 2 - type: Transform - - uid: 7405 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,0.5 - parent: 2 - type: Transform - - uid: 7406 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,0.5 - parent: 2 - type: Transform - - uid: 7407 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,0.5 - parent: 2 - type: Transform - - uid: 7408 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,0.5 - parent: 2 - type: Transform - - uid: 7457 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,23.5 - parent: 2 - type: Transform - - uid: 7458 - components: - - rot: 3.141592653589793 rad - pos: 26.5,19.5 - parent: 2 - type: Transform - - uid: 7459 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,23.5 - parent: 2 - type: Transform - - uid: 7567 - components: - - rot: 3.141592653589793 rad - pos: 26.5,21.5 - parent: 2 - type: Transform - - uid: 7571 - components: - - rot: 3.141592653589793 rad - pos: 4.5,11.5 - parent: 2 - type: Transform - - uid: 7572 - components: - - rot: 3.141592653589793 rad - pos: 26.5,20.5 - parent: 2 - type: Transform - - uid: 7681 - components: - - pos: 33.5,19.5 - parent: 2 - type: Transform - - uid: 7774 - components: - - pos: 33.5,21.5 - parent: 2 - type: Transform - - uid: 7780 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,18.5 - parent: 2 - type: Transform - - uid: 7956 - components: - - pos: 33.5,20.5 - parent: 2 - type: Transform - - uid: 8270 - components: - - pos: 12.5,14.5 - parent: 2 - type: Transform - - uid: 8271 - components: - - pos: 11.5,16.5 - parent: 2 - type: Transform - - uid: 8275 - components: - - pos: 11.5,17.5 - parent: 2 - type: Transform - - uid: 8278 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,18.5 - parent: 2 - type: Transform - - uid: 8279 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,18.5 - parent: 2 - type: Transform - - uid: 8280 - components: - - rot: 3.141592653589793 rad - pos: 14.5,19.5 - parent: 2 - type: Transform - - uid: 8281 - components: - - rot: 3.141592653589793 rad - pos: 11.5,12.5 - parent: 2 - type: Transform - - uid: 8282 - components: - - rot: 3.141592653589793 rad - pos: 11.5,11.5 - parent: 2 - type: Transform - - uid: 8928 - components: - - rot: 3.141592653589793 rad - pos: 33.5,-0.5 - parent: 2 - type: Transform - - uid: 8929 - components: - - rot: 3.141592653589793 rad - pos: 33.5,-1.5 - parent: 2 - type: Transform - - uid: 8973 - components: - - rot: 3.141592653589793 rad - pos: 33.5,-2.5 - parent: 2 - type: Transform - - uid: 8974 - components: - - rot: 3.141592653589793 rad - pos: 33.5,-3.5 - parent: 2 - type: Transform - - uid: 8975 - components: - - rot: 3.141592653589793 rad - pos: 33.5,-4.5 - parent: 2 - type: Transform - - uid: 8976 - components: - - rot: 3.141592653589793 rad - pos: 33.5,-5.5 - parent: 2 - type: Transform - - uid: 8977 - components: - - rot: 3.141592653589793 rad - pos: 33.5,-6.5 - parent: 2 - type: Transform - - uid: 8978 - components: - - rot: 3.141592653589793 rad - pos: 33.5,-7.5 - parent: 2 - type: Transform - - uid: 8979 - components: - - rot: 3.141592653589793 rad - pos: 33.5,-8.5 - parent: 2 - type: Transform - - uid: 8980 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-9.5 - parent: 2 - type: Transform - - uid: 8981 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-9.5 - parent: 2 - type: Transform - - uid: 8982 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-9.5 - parent: 2 - type: Transform - - uid: 9405 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,42.5 - parent: 2 - type: Transform - - uid: 9406 - components: - - pos: 32.5,43.5 - parent: 2 - type: Transform - - uid: 9407 - components: - - pos: 32.5,44.5 - parent: 2 - type: Transform - - uid: 9408 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,45.5 - parent: 2 - type: Transform - - uid: 9409 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,45.5 - parent: 2 - type: Transform - - uid: 9410 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,45.5 - parent: 2 - type: Transform - - uid: 9412 - components: - - pos: 28.5,43.5 - parent: 2 - type: Transform - - uid: 9413 - components: - - pos: 28.5,42.5 - parent: 2 - type: Transform - - uid: 9414 - components: - - pos: 28.5,41.5 - parent: 2 - type: Transform - - uid: 9415 - components: - - pos: 28.5,40.5 - parent: 2 - type: Transform - - uid: 9416 - components: - - pos: 28.5,39.5 - parent: 2 - type: Transform - - uid: 9417 - components: - - pos: 28.5,38.5 - parent: 2 - type: Transform - - uid: 9418 - components: - - pos: 28.5,37.5 - parent: 2 - type: Transform - - uid: 9419 - components: - - pos: 28.5,36.5 - parent: 2 - type: Transform - - uid: 9421 - components: - - pos: 26.5,24.5 - parent: 2 - type: Transform - - uid: 9422 - components: - - pos: 26.5,25.5 - parent: 2 - type: Transform - - uid: 9423 - components: - - pos: 26.5,26.5 - parent: 2 - type: Transform - - uid: 9424 - components: - - pos: 26.5,27.5 - parent: 2 - type: Transform - - uid: 9425 - components: - - pos: 26.5,28.5 - parent: 2 - type: Transform - - uid: 9426 - components: - - pos: 26.5,29.5 - parent: 2 - type: Transform - - uid: 9427 - components: - - pos: 26.5,30.5 - parent: 2 - type: Transform - - uid: 9428 - components: - - pos: 26.5,31.5 - parent: 2 - type: Transform - - uid: 9429 - components: - - pos: 26.5,32.5 - parent: 2 - type: Transform - - uid: 9430 - components: - - pos: 26.5,33.5 - parent: 2 - type: Transform - - uid: 10256 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-3.5 - parent: 2 - type: Transform - - uid: 10257 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-3.5 - parent: 2 - type: Transform - - uid: 10258 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-3.5 - parent: 2 - type: Transform - - uid: 10259 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-3.5 - parent: 2 - type: Transform - - uid: 10260 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-3.5 - parent: 2 - type: Transform - - uid: 10261 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-3.5 - parent: 2 - type: Transform - - uid: 10262 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-3.5 - parent: 2 - type: Transform - - uid: 10263 - components: - - pos: 12.5,-2.5 - parent: 2 - type: Transform - - uid: 10264 - components: - - pos: 12.5,-1.5 - parent: 2 - type: Transform - - uid: 10265 - components: - - pos: 12.5,-0.5 - parent: 2 - type: Transform - - uid: 10587 - components: - - rot: 3.141592653589793 rad - pos: 54.5,12.5 - parent: 2 - type: Transform - - uid: 10588 - components: - - rot: 3.141592653589793 rad - pos: 54.5,13.5 - parent: 2 - type: Transform - - uid: 10589 - components: - - rot: 3.141592653589793 rad - pos: 58.5,21.5 - parent: 2 - type: Transform - - uid: 10590 - components: - - rot: 3.141592653589793 rad - pos: 58.5,20.5 - parent: 2 - type: Transform - - uid: 10591 - components: - - rot: 3.141592653589793 rad - pos: 58.5,19.5 - parent: 2 - type: Transform - - uid: 10592 - components: - - rot: 3.141592653589793 rad - pos: 58.5,17.5 - parent: 2 - type: Transform - - uid: 10593 - components: - - rot: 3.141592653589793 rad - pos: 58.5,16.5 - parent: 2 - type: Transform - - uid: 10594 - components: - - rot: 3.141592653589793 rad - pos: 58.5,15.5 - parent: 2 - type: Transform - - uid: 10595 - components: - - rot: 1.5707963267948966 rad - pos: 57.5,14.5 - parent: 2 - type: Transform - - uid: 10596 - components: - - rot: 1.5707963267948966 rad - pos: 56.5,14.5 - parent: 2 - type: Transform - - uid: 10597 - components: - - rot: 1.5707963267948966 rad - pos: 55.5,14.5 - parent: 2 - type: Transform - - uid: 10603 - components: - - rot: 1.5707963267948966 rad - pos: 51.5,18.5 - parent: 2 - type: Transform - - uid: 10604 - components: - - rot: 1.5707963267948966 rad - pos: 52.5,18.5 - parent: 2 - type: Transform - - uid: 10605 - components: - - rot: 1.5707963267948966 rad - pos: 53.5,18.5 - parent: 2 - type: Transform - - uid: 10606 - components: - - rot: 1.5707963267948966 rad - pos: 54.5,18.5 - parent: 2 - type: Transform - - uid: 10607 - components: - - rot: 1.5707963267948966 rad - pos: 55.5,18.5 - parent: 2 - type: Transform - - uid: 10608 - components: - - rot: 1.5707963267948966 rad - pos: 56.5,18.5 - parent: 2 - type: Transform - - uid: 10609 - components: - - rot: 1.5707963267948966 rad - pos: 57.5,18.5 - parent: 2 - type: Transform - - uid: 10610 - components: - - rot: 1.5707963267948966 rad - pos: 53.5,14.5 - parent: 2 - type: Transform - - uid: 10611 - components: - - rot: 1.5707963267948966 rad - pos: 52.5,14.5 - parent: 2 - type: Transform - - uid: 10612 - components: - - rot: 1.5707963267948966 rad - pos: 51.5,14.5 - parent: 2 - type: Transform - - uid: 10613 - components: - - rot: 1.5707963267948966 rad - pos: 50.5,14.5 - parent: 2 - type: Transform - - uid: 10614 - components: - - rot: 1.5707963267948966 rad - pos: 49.5,14.5 - parent: 2 - type: Transform - - uid: 10615 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,14.5 - parent: 2 - type: Transform - - uid: 10616 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,14.5 - parent: 2 - type: Transform - - uid: 10617 - components: - - rot: 1.5707963267948966 rad - pos: 46.5,14.5 - parent: 2 - type: Transform - - uid: 10618 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,14.5 - parent: 2 - type: Transform - - uid: 10619 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,14.5 - parent: 2 - type: Transform - - uid: 10620 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,14.5 - parent: 2 - type: Transform - - uid: 10621 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,14.5 - parent: 2 - type: Transform - - uid: 10623 - components: - - pos: 41.5,13.5 - parent: 2 - type: Transform - - uid: 10624 - components: - - pos: 41.5,12.5 - parent: 2 - type: Transform - - uid: 10625 - components: - - pos: 41.5,11.5 - parent: 2 - type: Transform - - uid: 10626 - components: - - pos: 41.5,10.5 - parent: 2 - type: Transform - - uid: 10627 - components: - - pos: 41.5,9.5 - parent: 2 - type: Transform - - uid: 10628 - components: - - pos: 41.5,8.5 - parent: 2 - type: Transform - - uid: 10629 - components: - - pos: 41.5,7.5 - parent: 2 - type: Transform - - uid: 10630 - components: - - pos: 41.5,6.5 - parent: 2 - type: Transform - - uid: 10631 - components: - - pos: 41.5,5.5 - parent: 2 - type: Transform - - uid: 10632 - components: - - pos: 41.5,4.5 - parent: 2 - type: Transform - - uid: 10633 - components: - - pos: 41.5,3.5 - parent: 2 - type: Transform - - uid: 10634 - components: - - pos: 41.5,2.5 - parent: 2 - type: Transform - - uid: 11441 - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-9.5 - parent: 2 - type: Transform - - uid: 11442 - components: - - rot: 3.141592653589793 rad - pos: 56.5,-8.5 - parent: 2 - type: Transform - - uid: 11443 - components: - - rot: 3.141592653589793 rad - pos: 56.5,-7.5 - parent: 2 - type: Transform - - uid: 11444 - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-6.5 - parent: 2 - type: Transform - - uid: 11445 - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-6.5 - parent: 2 - type: Transform - - uid: 11446 - components: - - pos: 56.5,-5.5 - parent: 2 - type: Transform - - uid: 11447 - components: - - pos: 56.5,-4.5 - parent: 2 - type: Transform - - uid: 11448 - components: - - pos: 56.5,-3.5 - parent: 2 - type: Transform - - uid: 11449 - components: - - pos: 56.5,-2.5 - parent: 2 - type: Transform - - uid: 11450 - components: - - pos: 56.5,-1.5 - parent: 2 - type: Transform - - uid: 11458 - components: - - rot: -1.5707963267948966 rad - pos: 53.5,3.5 - parent: 2 - type: Transform - - uid: 11459 - components: - - rot: 3.141592653589793 rad - pos: 54.5,2.5 - parent: 2 - type: Transform - - uid: 11461 - components: - - rot: 3.141592653589793 rad - pos: 54.5,0.5 - parent: 2 - type: Transform - - uid: 11463 - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-0.5 - parent: 2 - type: Transform - - uid: 11464 - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-0.5 - parent: 2 - type: Transform - - uid: 11466 - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-0.5 - parent: 2 - type: Transform - - uid: 11467 - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-0.5 - parent: 2 - type: Transform - - uid: 11468 - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-0.5 - parent: 2 - type: Transform - - uid: 11469 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-0.5 - parent: 2 - type: Transform - - uid: 11470 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-0.5 - parent: 2 - type: Transform - - uid: 11471 - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-0.5 - parent: 2 - type: Transform - - uid: 11473 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-0.5 - parent: 2 - type: Transform - - uid: 11474 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-0.5 - parent: 2 - type: Transform - - uid: 11479 - components: - - rot: -1.5707963267948966 rad - pos: 80.5,1.5 - parent: 2 - type: Transform - - uid: 11480 - components: - - rot: -1.5707963267948966 rad - pos: 79.5,1.5 - parent: 2 - type: Transform - - uid: 11481 - components: - - rot: -1.5707963267948966 rad - pos: 78.5,1.5 - parent: 2 - type: Transform - - uid: 11482 - components: - - rot: -1.5707963267948966 rad - pos: 77.5,1.5 - parent: 2 - type: Transform - - uid: 11483 - components: - - rot: -1.5707963267948966 rad - pos: 76.5,1.5 - parent: 2 - type: Transform - - uid: 11484 - components: - - rot: -1.5707963267948966 rad - pos: 75.5,1.5 - parent: 2 - type: Transform - - uid: 11485 - components: - - rot: -1.5707963267948966 rad - pos: 74.5,1.5 - parent: 2 - type: Transform - - uid: 11486 - components: - - rot: -1.5707963267948966 rad - pos: 73.5,1.5 - parent: 2 - type: Transform - - uid: 11487 - components: - - rot: -1.5707963267948966 rad - pos: 72.5,1.5 - parent: 2 - type: Transform - - uid: 11488 - components: - - rot: -1.5707963267948966 rad - pos: 71.5,1.5 - parent: 2 - type: Transform - - uid: 11489 - components: - - rot: -1.5707963267948966 rad - pos: 70.5,1.5 - parent: 2 - type: Transform - - uid: 11490 - components: - - rot: -1.5707963267948966 rad - pos: 69.5,1.5 - parent: 2 - type: Transform - - uid: 11491 - components: - - rot: -1.5707963267948966 rad - pos: 68.5,1.5 - parent: 2 - type: Transform - - uid: 11492 - components: - - rot: -1.5707963267948966 rad - pos: 67.5,1.5 - parent: 2 - type: Transform - - uid: 11493 - components: - - rot: -1.5707963267948966 rad - pos: 66.5,1.5 - parent: 2 - type: Transform - - uid: 11494 - components: - - rot: -1.5707963267948966 rad - pos: 65.5,1.5 - parent: 2 - type: Transform - - uid: 11495 - components: - - rot: -1.5707963267948966 rad - pos: 64.5,1.5 - parent: 2 - type: Transform - - uid: 11496 - components: - - rot: -1.5707963267948966 rad - pos: 63.5,1.5 - parent: 2 - type: Transform - - uid: 11497 - components: - - rot: -1.5707963267948966 rad - pos: 62.5,1.5 - parent: 2 - type: Transform - - uid: 11498 - components: - - rot: -1.5707963267948966 rad - pos: 61.5,1.5 - parent: 2 - type: Transform - - uid: 11499 - components: - - rot: -1.5707963267948966 rad - pos: 60.5,1.5 - parent: 2 - type: Transform - - uid: 11500 - components: - - rot: -1.5707963267948966 rad - pos: 59.5,1.5 - parent: 2 - type: Transform - - uid: 11501 - components: - - rot: -1.5707963267948966 rad - pos: 58.5,1.5 - parent: 2 - type: Transform - - uid: 11502 - components: - - rot: -1.5707963267948966 rad - pos: 57.5,1.5 - parent: 2 - type: Transform - - uid: 11503 - components: - - rot: -1.5707963267948966 rad - pos: 56.5,1.5 - parent: 2 - type: Transform - - uid: 11504 - components: - - rot: -1.5707963267948966 rad - pos: 55.5,1.5 - parent: 2 - type: Transform - - uid: 11776 - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-0.5 - parent: 2 - type: Transform - - uid: 12169 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-13.5 - parent: 2 - type: Transform - - uid: 12426 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-14.5 - parent: 2 - type: Transform - - uid: 12427 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-14.5 - parent: 2 - type: Transform - - uid: 12428 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-14.5 - parent: 2 - type: Transform - - uid: 12429 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-14.5 - parent: 2 - type: Transform - - uid: 12430 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-14.5 - parent: 2 - type: Transform - - uid: 12431 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-14.5 - parent: 2 - type: Transform - - uid: 12432 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-14.5 - parent: 2 - type: Transform - - uid: 12433 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-14.5 - parent: 2 - type: Transform - - uid: 12434 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-14.5 - parent: 2 - type: Transform - - uid: 12435 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-14.5 - parent: 2 - type: Transform - - uid: 12436 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-14.5 - parent: 2 - type: Transform - - uid: 12437 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-14.5 - parent: 2 - type: Transform - - uid: 12438 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-14.5 - parent: 2 - type: Transform - - uid: 12439 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-14.5 - parent: 2 - type: Transform - - uid: 12441 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-12.5 - parent: 2 - type: Transform - - uid: 12442 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-11.5 - parent: 2 - type: Transform - - uid: 12443 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-10.5 - parent: 2 - type: Transform - - uid: 12444 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-9.5 - parent: 2 - type: Transform - - uid: 12445 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-8.5 - parent: 2 - type: Transform - - uid: 12446 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-7.5 - parent: 2 - type: Transform - - uid: 12448 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-6.5 - parent: 2 - type: Transform - - uid: 12450 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-5.5 - parent: 2 - type: Transform - - uid: 12451 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-4.5 - parent: 2 - type: Transform - - uid: 12452 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-3.5 - parent: 2 - type: Transform - - uid: 12453 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-2.5 - parent: 2 - type: Transform - - uid: 12454 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-1.5 - parent: 2 - type: Transform - - uid: 12458 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 2 - type: Transform - - uid: 12460 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-0.5 - parent: 2 - type: Transform - - uid: 12461 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-0.5 - parent: 2 - type: Transform - - uid: 12463 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-0.5 - parent: 2 - type: Transform - - uid: 12464 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-0.5 - parent: 2 - type: Transform - - uid: 12465 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-0.5 - parent: 2 - type: Transform - - uid: 12466 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-0.5 - parent: 2 - type: Transform - - uid: 12467 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 2 - type: Transform - - uid: 12468 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 2 - type: Transform - - uid: 12469 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-0.5 - parent: 2 - type: Transform - - uid: 12482 - components: - - pos: 27.5,2.5 - parent: 2 - type: Transform - - uid: 12491 - components: - - pos: 27.5,1.5 - parent: 2 - type: Transform - - uid: 12837 - components: - - pos: 26.5,-27.5 - parent: 2 - type: Transform - - uid: 12838 - components: - - pos: 26.5,-26.5 - parent: 2 - type: Transform -- proto: DisposalTrunk - entities: - - uid: 183 - components: - - rot: 1.5707963267948966 rad - pos: 57.5,22.5 - parent: 2 - type: Transform - - uid: 184 - components: - - rot: 3.141592653589793 rad - pos: 50.5,17.5 - parent: 2 - type: Transform - - uid: 2132 - components: - - pos: 36.5,19.5 - parent: 2 - type: Transform - - uid: 2320 - components: - - pos: 4.5,13.5 - parent: 2 - type: Transform - - uid: 3263 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,20.5 - parent: 2 - type: Transform - - uid: 5143 - components: - - pos: 32.5,2.5 - parent: 2 - type: Transform - - uid: 5692 - components: - - pos: 16.5,-33.5 - parent: 2 - type: Transform - - uid: 5693 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-33.5 - parent: 2 - type: Transform - - uid: 5694 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-25.5 - parent: 2 - type: Transform - - uid: 5839 - components: - - pos: 2.5,-28.5 - parent: 2 - type: Transform - - uid: 5878 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,7.5 - parent: 2 - type: Transform - - uid: 5969 - components: - - pos: 22.5,15.5 - parent: 2 - type: Transform - - uid: 6008 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,42.5 - parent: 2 - type: Transform - - uid: 7288 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-2.5 - parent: 2 - type: Transform - - uid: 7392 - components: - - rot: 3.141592653589793 rad - pos: 29.5,-11.5 - parent: 2 - type: Transform - - uid: 7398 - components: - - rot: 3.141592653589793 rad - pos: 41.5,-1.5 - parent: 2 - type: Transform - - uid: 8925 - components: - - rot: 3.141592653589793 rad - pos: 37.5,-10.5 - parent: 2 - type: Transform - - uid: 9404 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,44.5 - parent: 2 - type: Transform - - uid: 9420 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,34.5 - parent: 2 - type: Transform - - uid: 10254 - components: - - pos: 20.5,-2.5 - parent: 2 - type: Transform - - uid: 10585 - components: - - rot: -1.5707963267948966 rad - pos: 55.5,11.5 - parent: 2 - type: Transform - - uid: 11434 - components: - - rot: 3.141592653589793 rad - pos: 53.5,-7.5 - parent: 2 - type: Transform - - uid: 11437 - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-9.5 - parent: 2 - type: Transform - - uid: 11457 - components: - - pos: 52.5,4.5 - parent: 2 - type: Transform - - uid: 11478 - components: - - rot: -1.5707963267948966 rad - pos: 81.5,1.5 - parent: 2 - type: Transform - - uid: 12422 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-14.5 - parent: 2 - type: Transform - - uid: 12471 - components: - - pos: -5.5,0.5 - parent: 2 - type: Transform - - uid: 12479 - components: - - pos: 27.5,3.5 - parent: 2 - type: Transform -- proto: DisposalUnit - entities: - - uid: 394 - components: - - pos: 4.5,13.5 - parent: 2 - type: Transform - - uid: 1150 - components: - - pos: 25.5,5.5 - parent: 2 - type: Transform - - uid: 1321 - components: - - pos: 29.5,-11.5 - parent: 2 - type: Transform - - uid: 1531 - components: - - pos: 36.5,-2.5 - parent: 2 - type: Transform - - uid: 2152 - components: - - pos: 13.5,20.5 - parent: 2 - type: Transform - - uid: 2477 - components: - - pos: 36.5,19.5 - parent: 2 - type: Transform - - uid: 4697 - components: - - pos: 22.5,15.5 - parent: 2 - type: Transform - - uid: 4979 - components: - - pos: 27.5,44.5 - parent: 2 - type: Transform - - uid: 5047 - components: - - pos: 52.5,4.5 - parent: 2 - type: Transform - - uid: 5075 - components: - - pos: 53.5,-7.5 - parent: 2 - type: Transform - - uid: 5150 - components: - - pos: 32.5,2.5 - parent: 2 - type: Transform - - uid: 5209 - components: - - pos: 70.5,8.5 - parent: 2 - type: Transform - - uid: 5228 - components: - - pos: 82.5,-3.5 - parent: 2 - type: Transform - - uid: 5341 - components: - - pos: 57.5,22.5 - parent: 2 - type: Transform - - uid: 5392 - components: - - pos: 55.5,11.5 - parent: 2 - type: Transform - - uid: 5411 - components: - - pos: 30.5,42.5 - parent: 2 - type: Transform - - uid: 6427 - components: - - pos: 17.5,7.5 - parent: 2 - type: Transform - - uid: 7297 - components: - - pos: 27.5,-33.5 - parent: 2 - type: Transform - - uid: 7300 - components: - - pos: 16.5,-33.5 - parent: 2 - type: Transform - - uid: 7397 - components: - - pos: 41.5,-1.5 - parent: 2 - type: Transform - - uid: 8361 - components: - - pos: 27.5,-25.5 - parent: 2 - type: Transform - - uid: 8848 - components: - - pos: 105.5,-10.5 - parent: 2 - type: Transform - - uid: 8857 - components: - - pos: 100.5,-10.5 - parent: 2 - type: Transform - - uid: 8924 - components: - - pos: 37.5,-10.5 - parent: 2 - type: Transform - - uid: 9431 - components: - - pos: 28.5,34.5 - parent: 2 - type: Transform - - uid: 10069 - components: - - pos: 54.5,-9.5 - parent: 2 - type: Transform - - uid: 10118 - components: - - pos: 50.5,17.5 - parent: 2 - type: Transform - - uid: 10253 - components: - - pos: 20.5,-2.5 - parent: 2 - type: Transform - - uid: 11433 - components: - - pos: 81.5,1.5 - parent: 2 - type: Transform - - uid: 12421 - components: - - pos: -21.5,-14.5 - parent: 2 - type: Transform - - uid: 12478 - components: - - pos: -5.5,0.5 - parent: 2 - type: Transform - - uid: 12492 - components: - - pos: 27.5,3.5 - parent: 2 - type: Transform -- proto: DisposalYJunction - entities: - - uid: 2442 - components: - - pos: 5.5,10.5 - parent: 2 - type: Transform - - uid: 5696 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-28.5 - parent: 2 - type: Transform - - uid: 5801 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-21.5 - parent: 2 - type: Transform - - uid: 7305 - components: - - pos: 26.5,0.5 - parent: 2 - type: Transform - - uid: 7356 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,10.5 - parent: 2 - type: Transform - - uid: 8820 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,0.5 - parent: 2 - type: Transform -- proto: DogBed - entities: - - uid: 41 - components: - - pos: 12.5,31.5 - parent: 2 - type: Transform - - uid: 9716 - components: - - pos: 51.5,-8.5 - parent: 2 - type: Transform - - uid: 10280 - components: - - pos: 19.5,-5.5 - parent: 2 - type: Transform -- proto: DonkpocketBoxSpawner - entities: - - uid: 11431 - components: - - pos: 76.5,4.5 - parent: 2 - type: Transform -- proto: DoorElectronics - entities: - - uid: 1046 - components: - - pos: 32.489098,-30.527159 - parent: 2 - type: Transform - - uid: 1047 - components: - - pos: 32.489098,-30.324034 - parent: 2 - type: Transform - - uid: 5440 - components: - - pos: 9.474669,-14.422774 - parent: 2 - type: Transform - - uid: 8175 - components: - - pos: 8.486128,32.530212 - parent: 2 - type: Transform -- proto: DoubleEmergencyOxygenTankFilled - entities: - - uid: 5530 - components: - - pos: 64.522316,20.63157 - parent: 2 - type: Transform -- proto: DrinkFlask - entities: - - uid: 9223 - components: - - pos: 37.68926,43.584465 - parent: 2 - type: Transform -- proto: DrinkFlaskBar - entities: - - uid: 12497 - components: - - pos: 63.594597,-16.258825 - parent: 2 - type: Transform -- proto: DrinkGlass - entities: - - uid: 11829 - components: - - pos: 67.3298,-14.594364 - parent: 2 - type: Transform - - uid: 11831 - components: - - pos: 67.6423,-14.594364 - parent: 2 - type: Transform -- proto: DrinkGoldenCup - entities: - - uid: 12097 - components: - - pos: 19.490185,41.41655 - parent: 2 - type: Transform -- proto: DrinkHotCoco - entities: - - uid: 5451 - components: - - pos: 71.508354,37.570084 - parent: 2 - type: Transform -- proto: DrinkLemonadeGlass - entities: - - uid: 5452 - components: - - pos: 71.477104,40.663834 - parent: 2 - type: Transform -- proto: DrinkMugDog - entities: - - uid: 11968 - components: - - pos: 55.92937,-10.550333 - parent: 2 - type: Transform -- proto: DrinkMugRainbow - entities: - - uid: 12701 - components: - - pos: 107.25198,-16.370739 - parent: 2 - type: Transform -- proto: DrinkShaker - entities: - - uid: 1570 - components: - - pos: 40.567554,-11.276576 - parent: 2 - type: Transform - - uid: 11828 - components: - - pos: 67.47043,-15.094364 - parent: 2 - type: Transform -- proto: DrinkWaterCup - entities: - - uid: 5644 - components: - - pos: 16.679596,-23.530558 - parent: 2 - type: Transform - - uid: 5645 - components: - - pos: 16.678108,-23.473524 - parent: 2 - type: Transform - - uid: 5646 - components: - - pos: 16.67348,-23.408709 - parent: 2 - type: Transform - - uid: 5647 - components: - - pos: 16.678108,-23.343895 - parent: 2 - type: Transform - - uid: 10898 - components: - - pos: 64.36203,13.455295 - parent: 2 - type: Transform - - uid: 10899 - components: - - pos: 64.36203,13.580295 - parent: 2 - type: Transform - - uid: 10900 - components: - - pos: 64.36203,13.72092 - parent: 2 - type: Transform -- proto: DrinkWhiskeyBottleFull - entities: - - uid: 6809 - components: - - pos: 57.63163,-13.7188425 - parent: 2 - type: Transform -- proto: EmergencyLight - entities: - - uid: 1547 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-14.5 - parent: 2 - type: Transform - - uid: 7742 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-14.5 - parent: 2 - type: Transform - - uid: 11333 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,33.5 - parent: 2 - type: Transform - - type: ActiveEmergencyLight - - uid: 12374 - components: - - pos: 10.5,1.5 - parent: 2 - type: Transform - - type: ActiveEmergencyLight - - uid: 12375 - components: - - pos: 36.5,1.5 - parent: 2 - type: Transform - - type: ActiveEmergencyLight - - uid: 12376 - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-0.5 - parent: 2 - type: Transform - - type: ActiveEmergencyLight - - uid: 12377 - components: - - pos: 16.5,-33.5 - parent: 2 - type: Transform - - type: ActiveEmergencyLight - - uid: 12379 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,25.5 - parent: 2 - type: Transform - - type: ActiveEmergencyLight - - uid: 12380 - components: - - rot: 3.141592653589793 rad - pos: 25.5,44.5 - parent: 2 - type: Transform - - type: ActiveEmergencyLight - - uid: 12381 - components: - - rot: 3.141592653589793 rad - pos: 11.5,21.5 - parent: 2 - type: Transform - - type: ActiveEmergencyLight - - uid: 12382 - components: - - pos: 33.5,15.5 - parent: 2 - type: Transform - - type: ActiveEmergencyLight - - uid: 12383 - components: - - rot: -1.5707963267948966 rad - pos: 60.5,18.5 - parent: 2 - type: Transform - - type: ActiveEmergencyLight -- proto: EmergencyRollerBedSpawnFolded - entities: - - uid: 9622 - components: - - pos: 45.379837,4.5137033 - parent: 2 - type: Transform -- proto: Emitter - entities: - - uid: 748 - components: - - pos: 9.5,-29.5 - parent: 2 - type: Transform - - uid: 749 - components: - - pos: 9.5,-30.5 - parent: 2 - type: Transform - - uid: 10875 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-47.5 - parent: 2 - type: Transform - - uid: 10876 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-55.5 - parent: 2 - type: Transform - - uid: 10904 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-47.5 - parent: 2 - type: Transform - - uid: 10958 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-55.5 - parent: 2 - type: Transform - - uid: 10963 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-58.5 - parent: 2 - type: Transform - - uid: 10965 - components: - - rot: 3.141592653589793 rad - pos: 25.5,-58.5 - parent: 2 - type: Transform -- proto: EncryptionKeyCargo - entities: - - uid: 412 - components: - - flags: InContainer - type: MetaData - - parent: 5183 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyCommand - entities: - - uid: 413 - components: - - flags: InContainer - type: MetaData - - parent: 10443 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyCommon - entities: - - uid: 414 - components: - - flags: InContainer - type: MetaData - - parent: 12111 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyEngineering - entities: - - uid: 535 - components: - - flags: InContainer - type: MetaData - - parent: 533 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyMedical - entities: - - uid: 421 - components: - - flags: InContainer - type: MetaData - - parent: 12112 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyScience - entities: - - uid: 422 - components: - - flags: InContainer - type: MetaData - - parent: 12232 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeySecurity - entities: - - uid: 423 - components: - - flags: InContainer - type: MetaData - - parent: 12233 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyService - entities: - - uid: 424 - components: - - flags: InContainer - type: MetaData - - parent: 12395 - type: Transform - - canCollide: False - type: Physics -- proto: ExosuitFabricator - entities: - - uid: 12579 - components: - - pos: 51.5,11.5 - parent: 2 - type: Transform -- proto: ExplosivesSignMed - entities: - - uid: 10438 - components: - - pos: 61.5,28.5 - parent: 2 - type: Transform -- proto: ExtinguisherCabinetFilled - entities: - - uid: 315 - components: - - rot: 3.141592653589793 rad - pos: 7.5,4.5 - parent: 2 - type: Transform - - uid: 582 - components: - - pos: 21.5,-4.5 - parent: 2 - type: Transform - - opened: True - type: ItemCabinet - - uid: 783 - components: - - pos: 20.5,-22.5 - parent: 2 - type: Transform - - uid: 1947 - components: - - pos: 32.5,-29.5 - parent: 2 - type: Transform - - uid: 5111 - components: - - pos: 52.5,12.5 - parent: 2 - type: Transform - - uid: 5336 - components: - - pos: 53.5,22.5 - parent: 2 - type: Transform - - uid: 5337 - components: - - pos: 50.5,22.5 - parent: 2 - type: Transform - - uid: 5347 - components: - - pos: 62.5,21.5 - parent: 2 - type: Transform - - uid: 5348 - components: - - pos: 68.5,12.5 - parent: 2 - type: Transform - - uid: 5658 - components: - - pos: 29.5,-33.5 - parent: 2 - type: Transform - - uid: 5659 - components: - - pos: 23.5,-33.5 - parent: 2 - type: Transform - - uid: 6026 - components: - - pos: 8.5,-13.5 - parent: 2 - type: Transform - - uid: 6069 - components: - - pos: 14.5,2.5 - parent: 2 - type: Transform - - uid: 6635 - components: - - pos: 40.5,-5.5 - parent: 2 - type: Transform - - uid: 7818 - components: - - pos: -21.5,-15.5 - parent: 2 - type: Transform - - uid: 7833 - components: - - pos: -9.5,-15.5 - parent: 2 - type: Transform - - uid: 8985 - components: - - pos: 36.5,16.5 - parent: 2 - type: Transform - - uid: 9399 - components: - - pos: 33.5,47.5 - parent: 2 - type: Transform - - uid: 9628 - components: - - pos: 47.5,5.5 - parent: 2 - type: Transform - - uid: 11066 - components: - - pos: 14.5,11.5 - parent: 2 - type: Transform -- proto: FaxMachineBase - entities: - - uid: 1622 - components: - - pos: 63.5,10.5 - parent: 2 - type: Transform - - name: RD Office - type: FaxMachine - - uid: 1649 - components: - - pos: 8.5,3.5 - parent: 2 - type: Transform - - name: Library - type: FaxMachine - - uid: 2134 - components: - - pos: 11.5,31.5 - parent: 2 - type: Transform - - name: QM Office - type: FaxMachine - - uid: 2394 - components: - - pos: 12.5,-33.5 - parent: 2 - type: Transform - - name: CE Office - type: FaxMachine - - uid: 7566 - components: - - pos: 45.5,24.5 - parent: 2 - type: Transform - - name: HoS Office - type: FaxMachine - - uid: 7728 - components: - - pos: -1.5,-11.5 - parent: 2 - type: Transform - - name: Law Office - type: FaxMachine - - uid: 7745 - components: - - pos: 20.5,24.5 - parent: 2 - type: Transform - - name: Cargo - type: FaxMachine - - uid: 8320 - components: - - pos: 36.5,25.5 - parent: 2 - type: Transform - - name: Security - type: FaxMachine - - uid: 9006 - components: - - pos: 18.5,29.5 - parent: 2 - type: Transform - - name: Court House - type: FaxMachine - - uid: 10070 - components: - - pos: 58.5,-9.5 - parent: 2 - type: Transform - - name: CMO Office - type: FaxMachine - - uid: 10271 - components: - - pos: 18.5,-2.5 - parent: 2 - type: Transform - - name: HoP Office - type: FaxMachine - - uid: 11947 - components: - - pos: 23.5,40.5 - parent: 2 - type: Transform - - name: Conference Room - type: FaxMachine -- proto: FaxMachineCaptain - entities: - - uid: 1465 - components: - - pos: 30.5,41.5 - parent: 2 - type: Transform -- proto: filingCabinet - entities: - - uid: 12088 - components: - - pos: 45.5,22.5 - parent: 2 - type: Transform - - uid: 12092 - components: - - pos: 17.5,23.5 - parent: 2 - type: Transform -- proto: filingCabinetDrawerRandom - entities: - - uid: 108 - components: - - pos: -3.5,-12.5 - parent: 2 - type: Transform - - uid: 386 - components: - - pos: 13.5,30.5 - parent: 2 - type: Transform - - uid: 9005 - components: - - pos: 19.5,29.5 - parent: 2 - type: Transform - - uid: 10659 - components: - - pos: 63.5,11.5 - parent: 2 - type: Transform - - uid: 12607 - components: - - pos: 73.5,-0.5 - parent: 2 - type: Transform -- proto: filingCabinetRandom - entities: - - uid: 5158 - components: - - pos: 58.5,-10.5 - parent: 2 - type: Transform - - uid: 7010 - components: - - pos: 30.5,39.5 - parent: 2 - type: Transform - - uid: 7834 - components: - - pos: 41.5,19.5 - parent: 2 - type: Transform - - uid: 8445 - components: - - pos: 36.5,24.5 - parent: 2 - type: Transform - - uid: 10276 - components: - - pos: 15.5,-5.5 - parent: 2 - type: Transform -- proto: filingCabinetTallRandom - entities: - - uid: 5198 - components: - - pos: 60.5,-11.5 - parent: 2 - type: Transform -- proto: FireAlarm - entities: - - uid: 5 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,24.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12522 - - 8237 - - 8238 - type: DeviceNetwork - - devices: - - 12522 - - 8237 - - 8238 - type: DeviceList - - uid: 194 - components: - - pos: 15.5,11.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 36 - - 6952 - - 11245 - - 11244 - - 12449 - - 6931 - - 6930 - - 11247 - - 11246 - type: DeviceNetwork - - devices: - - 36 - - 6952 - - 11245 - - 11244 - - 12449 - - 6931 - - 6930 - - 11247 - - 11246 - type: DeviceList - - uid: 1016 - components: - - pos: 29.5,-34.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1018 - - 12396 - - 5620 - - 5619 - - 5656 - - 5657 - - 5617 - - 5618 - - 831 - - 802 - - 5621 - - 5622 - type: DeviceNetwork - - devices: - - 1018 - - 12396 - - 5620 - - 5619 - - 5656 - - 5657 - - 5617 - - 5618 - - 831 - - 802 - - 5621 - - 5622 - type: DeviceList - - uid: 1657 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-8.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 6641 - - 6644 - - 6643 - - 6642 - - 6636 - - 1514 - - 742 - - 873 - - 554 - - 558 - - 1511 - - 1515 - - 1513 - type: DeviceNetwork - - devices: - - 6641 - - 6644 - - 6643 - - 6642 - - 6636 - - 1514 - - 742 - - 873 - - 554 - - 558 - - 1511 - - 1515 - - 1513 - type: DeviceList - - uid: 2123 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-13.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 7748 - - 7747 - - 7746 - - 102 - - 7749 - - 7750 - - 2125 - - 7740 - - 7895 - - 6854 - - 7663 - - 7889 - - 131 - - 7950 - type: DeviceNetwork - - devices: - - 7748 - - 7747 - - 7746 - - 102 - - 7749 - - 7750 - - 2125 - - 7740 - - 7895 - - 6854 - - 7663 - - 7889 - - 131 - - 7950 - type: DeviceList - - uid: 2474 - components: - - rot: -1.5707963267948966 rad - pos: 61.5,22.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12559 - - 10413 - - 10414 - - 10415 - type: DeviceNetwork - - devices: - - 12559 - - 10413 - - 10414 - - 10415 - type: DeviceList - - uid: 4049 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-33.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 5657 - - 5656 - - 1018 - - 169 - - 1024 - - 5684 - type: DeviceNetwork - - devices: - - 5657 - - 5656 - - 1018 - - 169 - - 1024 - - 5684 - type: DeviceList - - uid: 5077 - components: - - pos: 35.5,2.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 6800 - - 6799 - - 6790 - - 6801 - - 6802 - - 6803 - - 8317 - - 253 - - 7709 - - 2315 - - 7938 - - 8003 - - 8004 - - 6644 - - 6641 - - 6642 - - 6643 - - 6621 - - 4919 - - 7011 - - 6620 - - 5144 - type: DeviceNetwork - - devices: - - 6800 - - 6799 - - 6790 - - 6801 - - 6802 - - 6803 - - 8317 - - 253 - - 7709 - - 2315 - - 7938 - - 8003 - - 8004 - - 6644 - - 6641 - - 6642 - - 6643 - - 6621 - - 4919 - - 7011 - - 6620 - - 5144 - type: DeviceList - - uid: 6633 - components: - - rot: 3.141592653589793 rad - pos: 40.5,-13.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1511 - - 1515 - - 1513 - - 6645 - - 6637 - type: DeviceNetwork - - devices: - - 1511 - - 1515 - - 1513 - - 6645 - - 6637 - type: DeviceList - - uid: 6634 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-4.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 6523 - - 1510 - type: DeviceNetwork - - devices: - - 1514 - - 742 - - 873 - - 554 - - 558 - - 6638 - - 6523 - - 1510 - type: DeviceList - - uid: 6683 - components: - - rot: 3.141592653589793 rad - pos: 43.5,-8.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 6523 - - 1510 - - 6509 - - 6568 - - 12077 - - 6684 - type: DeviceNetwork - - devices: - - 6523 - - 1510 - - 6509 - - 6568 - - 12077 - - 6684 - type: DeviceList - - uid: 7662 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-2.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 7748 - - 7747 - - 7746 - - 102 - - 7749 - - 7750 - - 2125 - - 7740 - - 7895 - - 6854 - - 7663 - - 7889 - - 131 - - 7950 - type: DeviceNetwork - - devices: - - 7748 - - 7747 - - 7746 - - 102 - - 7749 - - 7750 - - 2125 - - 7740 - - 7895 - - 6854 - - 7663 - - 7889 - - 131 - - 7950 - type: DeviceList - - uid: 7842 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-15.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 7748 - - 7747 - - 7746 - - 102 - - 7749 - - 7750 - - 7843 - type: DeviceNetwork - - devices: - - 7748 - - 7747 - - 7746 - - 102 - - 7749 - - 7750 - - 7843 - type: DeviceList - - uid: 8005 - components: - - pos: 13.5,2.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 8004 - - 8003 - - 7938 - - 2315 - - 7709 - - 253 - - 7950 - - 131 - - 7889 - - 7663 - - 6854 - - 7895 - - 8008 - - 36 - - 6952 - - 11244 - - 11245 - type: DeviceNetwork - - devices: - - 8004 - - 8003 - - 7938 - - 2315 - - 7709 - - 253 - - 7950 - - 131 - - 7889 - - 7663 - - 6854 - - 7895 - - 8008 - - 36 - - 6952 - - 11244 - - 11245 - type: DeviceList - - uid: 8006 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,12.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 8004 - - 8003 - - 7938 - - 2315 - - 7709 - - 253 - - 7950 - - 131 - - 7889 - - 7663 - - 6854 - - 7895 - - 8008 - - 36 - - 6952 - - 11244 - - 11245 - type: DeviceNetwork - - devices: - - 8004 - - 8003 - - 7938 - - 2315 - - 7709 - - 253 - - 7950 - - 131 - - 7889 - - 7663 - - 6854 - - 7895 - - 8008 - - 36 - - 6952 - - 11244 - - 11245 - type: DeviceList - - uid: 8007 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-2.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 8004 - - 8003 - - 7938 - - 2315 - - 7709 - - 253 - - 7950 - - 131 - - 7889 - - 7663 - - 6854 - - 7895 - - 8008 - - 36 - - 6952 - - 11244 - - 11245 - type: DeviceNetwork - - devices: - - 8004 - - 8003 - - 7938 - - 2315 - - 7709 - - 253 - - 7950 - - 131 - - 7889 - - 7663 - - 6854 - - 7895 - - 8008 - - 36 - - 6952 - - 11244 - - 11245 - type: DeviceList - - uid: 8316 - components: - - pos: 21.5,2.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 6800 - - 6799 - - 6790 - - 6801 - - 6802 - - 6803 - - 8317 - - 253 - - 7709 - - 2315 - - 7938 - - 8003 - - 8004 - - 6644 - - 6641 - - 6642 - - 6643 - - 6621 - - 4919 - - 7011 - - 6620 - - 5144 - type: DeviceNetwork - - devices: - - 6800 - - 6799 - - 6790 - - 6801 - - 6802 - - 6803 - - 8317 - - 253 - - 7709 - - 2315 - - 7938 - - 8003 - - 8004 - - 6644 - - 6641 - - 6642 - - 6643 - - 6621 - - 4919 - - 7011 - - 6620 - - 5144 - type: DeviceList - - uid: 8920 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-3.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 10206 - - 10205 - type: DeviceNetwork - - devices: - - 8923 - - 6801 - - 6802 - - 6803 - - 6790 - - 6799 - - 6800 - - 10206 - - 10205 - type: DeviceList - - uid: 9588 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,30.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 9586 - - 9585 - - 9584 - - 9589 - type: DeviceNetwork - - devices: - - 9586 - - 9585 - - 9584 - - 9589 - type: DeviceList - - uid: 10208 - components: - - pos: 23.5,-8.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 10216 - - 10205 - - 10206 - type: DeviceNetwork - - devices: - - 10216 - - 10205 - - 10206 - type: DeviceList - - uid: 10956 - components: - - pos: 16.5,-32.5 - parent: 2 - type: Transform - - devices: - - 8659 - type: DeviceList - - uid: 10964 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,19.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 9586 - - 9585 - - 9584 - type: DeviceNetwork - - devices: - - 1103 - - 1104 - - 11472 - - 11250 - - 11249 - - 11248 - - 11322 - - 11323 - - 11324 - - 12516 - - 12085 - - 9586 - - 9585 - - 9584 - type: DeviceList - - uid: 11507 - components: - - rot: 3.141592653589793 rad - pos: 48.5,-2.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11509 - - 11526 - - 11527 - - 11254 - - 11255 - - 11256 - - 11506 - - 11505 - - 6616 - - 3983 - - 2993 - - 2994 - - 11321 - - 11320 - - 11319 - - 8293 - - 8291 - - 5026 - - 5144 - - 4919 - - 7011 - - 6509 - - 6568 - type: DeviceNetwork - - devices: - - 11509 - - 11526 - - 11527 - - 11254 - - 11255 - - 11256 - - 11506 - - 11505 - - 6616 - - 3983 - - 2993 - - 2994 - - 11321 - - 11320 - - 11319 - - 8293 - - 8291 - - 5026 - - 5144 - - 4919 - - 7011 - - 6509 - - 6568 - type: DeviceList - - uid: 12153 - components: - - pos: 55.5,4.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11254 - - 11255 - - 11256 - - 11506 - - 11505 - - 6616 - - 11317 - - 5176 - - 11325 - - 5188 - - 5190 - - 11332 - - 11355 - - 12158 - - 12159 - - 12161 - - 12162 - type: DeviceNetwork - - devices: - - 11254 - - 11255 - - 11256 - - 11506 - - 11505 - - 6616 - - 11317 - - 5176 - - 11325 - - 5188 - - 5190 - - 11332 - - 11355 - - 12158 - - 12159 - - 12161 - - 12162 - type: DeviceList - - uid: 12154 - components: - - pos: 69.5,3.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11254 - - 11255 - - 11256 - - 11506 - - 11505 - - 6616 - - 11317 - - 5176 - - 11325 - - 5188 - - 5190 - - 11332 - - 11355 - - 12158 - - 12159 - - 12161 - - 12162 - type: DeviceNetwork - - devices: - - 11254 - - 11255 - - 11256 - - 11506 - - 11505 - - 6616 - - 11317 - - 5176 - - 11325 - - 5188 - - 5190 - - 11332 - - 11355 - - 12158 - - 12159 - - 12161 - - 12162 - type: DeviceList - - uid: 12474 - components: - - pos: 19.5,16.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12472 - - 6928 - - 6929 - - 11264 - - 11263 - - 6930 - - 6931 - - 11246 - - 11247 - type: DeviceNetwork - - devices: - - 11247 - - 11246 - - 12472 - - 11264 - - 11263 - - 6928 - - 6929 - - 6930 - - 6931 - type: DeviceList - - uid: 12477 - components: - - pos: 28.5,16.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 9352 - - 9353 - - 9351 - type: DeviceNetwork - - devices: - - 11264 - - 11263 - - 1103 - - 1104 - - 11472 - - 12475 - - 6928 - - 6929 - - 3457 - - 3458 - - 3459 - - 9352 - - 9353 - - 9351 - type: DeviceList - - uid: 12483 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,8.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11319 - - 11320 - - 11321 - - 5026 - - 9364 - - 9363 - - 9362 - - 11253 - - 11252 - - 11251 - - 8291 - - 8293 - - 11746 - type: DeviceNetwork - - devices: - - 11746 - - 8293 - - 8291 - - 5026 - - 11321 - - 11320 - - 11319 - - 11251 - - 11252 - - 11253 - - 9364 - - 9363 - - 9362 - type: DeviceList - - uid: 12487 - components: - - pos: 44.5,16.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11253 - - 11252 - - 11251 - - 9362 - - 12087 - - 9352 - - 9353 - - 11413 - - 9363 - - 9364 - - 12485 - - 9351 - type: DeviceNetwork - - devices: - - 12485 - - 9364 - - 9363 - - 9362 - - 11251 - - 11252 - - 11253 - - 11413 - - 9351 - - 9353 - - 9352 - - 12087 - type: DeviceList - - uid: 12489 - components: - - rot: 3.141592653589793 rad - pos: 53.5,-8.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12490 - - 12077 - - 11858 - - 12075 - - 12076 - type: DeviceNetwork - - devices: - - 12077 - - 11858 - - 12075 - - 12490 - - 12076 - type: DeviceList - - uid: 12517 - components: - - pos: 22.5,26.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12518 - - 11324 - - 11323 - - 11322 - - 11248 - - 11249 - - 11250 - type: DeviceNetwork - - devices: - - 11250 - - 11249 - - 11248 - - 11322 - - 11323 - - 11324 - - 12518 - type: DeviceList - - uid: 12521 - components: - - pos: 18.5,25.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 8237 - - 8238 - - 12086 - type: DeviceNetwork - - devices: - - 12519 - - 12086 - - 8237 - - 8238 - type: DeviceList - - uid: 12549 - components: - - pos: 49.5,22.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12087 - - 12550 - type: DeviceNetwork - - devices: - - 12550 - - 12087 - type: DeviceList - - uid: 12556 - components: - - pos: 61.5,16.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1252 - - 1162 - - 6473 - type: DeviceNetwork - - devices: - - 10416 - - 10417 - - 10418 - - 12554 - - 1252 - - 1162 - - 6473 - type: DeviceList - - uid: 12557 - components: - - rot: -1.5707963267948966 rad - pos: 61.5,19.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 10416 - - 10417 - - 10418 - - 185 - - 10413 - - 10414 - - 10415 - type: DeviceNetwork - - devices: - - 10416 - - 10417 - - 10418 - - 185 - - 10413 - - 10414 - - 10415 - type: DeviceList -- proto: FireAxeCabinetFilled - entities: - - uid: 1571 - components: - - pos: 31.5,-22.5 - parent: 2 - type: Transform - - uid: 5428 - components: - - pos: 30.514431,43.46267 - parent: 2 - type: Transform -- proto: FireExtinguisher - entities: - - uid: 5529 - components: - - pos: 64.491066,18.615946 - parent: 2 - type: Transform - - uid: 5722 - components: - - pos: 73.5,-12.5 - parent: 2 - type: Transform - - uid: 10797 - components: - - pos: 80.48026,-16.378305 - parent: 2 - type: Transform - - uid: 10826 - components: - - pos: 81.454414,9.641975 - parent: 2 - type: Transform - - uid: 10850 - components: - - pos: 45.471096,27.597694 - parent: 2 - type: Transform -- proto: FirelockEdge - entities: - - uid: 36 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,9.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 194 - - 12447 - - 8006 - - 8007 - - 8005 - - 8011 - type: DeviceNetwork - - uid: 102 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-12.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 7842 - - 7839 - - 7662 - - 2123 - - 2124 - type: DeviceNetwork - - uid: 131 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 7662 - - 2123 - - 2124 - - 8006 - - 8007 - - 8005 - - 8011 - type: DeviceNetwork - - uid: 253 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-0.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 8006 - - 8007 - - 8005 - - 8011 - - 5077 - - 8316 - - 5020 - type: DeviceNetwork - - uid: 802 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-38.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1016 - - 11990 - type: DeviceNetwork - - uid: 831 - components: - - rot: 3.141592653589793 rad - pos: 32.5,-38.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1016 - - 11990 - type: DeviceNetwork - - uid: 1103 - components: - - rot: 3.141592653589793 rad - pos: 25.5,15.5 - parent: 2 - type: Transform - - uid: 1104 - components: - - rot: 3.141592653589793 rad - pos: 26.5,15.5 - parent: 2 - type: Transform - - uid: 2315 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,1.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 8006 - - 8007 - - 8005 - - 8011 - - 5077 - - 8316 - - 5020 - type: DeviceNetwork - - uid: 2993 - components: - - pos: 50.5,1.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11507 - - 11508 - type: DeviceNetwork - - uid: 2994 - components: - - pos: 49.5,1.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11507 - - 11508 - type: DeviceNetwork - - uid: 3457 - components: - - pos: 25.5,17.5 - parent: 2 - type: Transform - - uid: 3458 - components: - - pos: 26.5,17.5 - parent: 2 - type: Transform - - uid: 3459 - components: - - pos: 27.5,17.5 - parent: 2 - type: Transform - - uid: 3983 - components: - - pos: 51.5,1.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11507 - - 11508 - type: DeviceNetwork - - uid: 4557 - components: - - rot: 3.141592653589793 rad - pos: 39.5,-38.5 - parent: 2 - type: Transform - - uid: 4558 - components: - - rot: 3.141592653589793 rad - pos: 40.5,-38.5 - parent: 2 - type: Transform - - uid: 4560 - components: - - rot: 3.141592653589793 rad - pos: 38.5,-38.5 - parent: 2 - type: Transform - - uid: 4561 - components: - - pos: 38.5,-36.5 - parent: 2 - type: Transform - - uid: 4565 - components: - - pos: 39.5,-36.5 - parent: 2 - type: Transform - - uid: 4566 - components: - - pos: 40.5,-36.5 - parent: 2 - type: Transform - - uid: 5026 - components: - - pos: 42.5,3.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11507 - - 11508 - - 12483 - - 12484 - type: DeviceNetwork - - uid: 5176 - components: - - rot: 3.141592653589793 rad - pos: 55.5,-3.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12153 - - 12154 - - 12152 - type: DeviceNetwork - - uid: 5188 - components: - - rot: 3.141592653589793 rad - pos: 59.5,-3.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12153 - - 12154 - - 12152 - type: DeviceNetwork - - uid: 5190 - components: - - rot: 3.141592653589793 rad - pos: 60.5,-3.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12153 - - 12154 - - 12152 - type: DeviceNetwork - - uid: 5617 - components: - - pos: 31.5,-36.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1016 - - 11990 - type: DeviceNetwork - - uid: 5618 - components: - - pos: 32.5,-36.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1016 - - 11990 - type: DeviceNetwork - - uid: 5619 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-30.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1016 - - 11990 - type: DeviceNetwork - - uid: 5620 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-30.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1016 - - 11990 - type: DeviceNetwork - - uid: 5621 - components: - - pos: 17.5,-28.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1016 - - 11990 - type: DeviceNetwork - - uid: 5622 - components: - - pos: 18.5,-28.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1016 - - 11990 - type: DeviceNetwork - - uid: 5899 - components: - - pos: 4.5,-27.5 - parent: 2 - type: Transform - - uid: 5900 - components: - - pos: 5.5,-27.5 - parent: 2 - type: Transform - - uid: 6616 - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-1.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11507 - - 11508 - - 12153 - - 12154 - - 12152 - type: DeviceNetwork - - uid: 6641 - components: - - rot: 3.141592653589793 rad - pos: 33.5,-2.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1657 - - 5077 - - 8316 - - 5020 - type: DeviceNetwork - - uid: 6642 - components: - - rot: 3.141592653589793 rad - pos: 35.5,-2.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1657 - - 5077 - - 8316 - - 5020 - type: DeviceNetwork - - uid: 6643 - components: - - pos: 35.5,-0.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1657 - - 5077 - - 8316 - - 5020 - type: DeviceNetwork - - uid: 6644 - components: - - pos: 33.5,-0.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1657 - - 5077 - - 8316 - - 5020 - type: DeviceNetwork - - uid: 6790 - components: - - pos: 27.5,-1.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 5077 - - 8316 - - 5020 - type: DeviceNetwork - - uid: 6799 - components: - - pos: 26.5,-1.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 5077 - - 8316 - - 5020 - type: DeviceNetwork - - uid: 6800 - components: - - pos: 25.5,-1.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 5077 - - 8316 - - 5020 - type: DeviceNetwork - - uid: 6801 - components: - - rot: 3.141592653589793 rad - pos: 25.5,-3.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 5077 - - 8316 - - 5020 - type: DeviceNetwork - - uid: 6802 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-3.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 5077 - - 8316 - - 5020 - type: DeviceNetwork - - uid: 6803 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-3.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 5077 - - 8316 - - 5020 - type: DeviceNetwork - - uid: 6854 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-0.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 7662 - - 2123 - - 2124 - - 8006 - - 8007 - - 8005 - - 8011 - type: DeviceNetwork - - uid: 6928 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,13.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12474 - - 12473 - type: DeviceNetwork - - uid: 6929 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,14.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12474 - - 12473 - type: DeviceNetwork - - uid: 6930 - components: - - rot: 3.141592653589793 rad - pos: 19.5,10.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12474 - - 12473 - - 194 - - 12447 - type: DeviceNetwork - - uid: 6931 - components: - - rot: 3.141592653589793 rad - pos: 18.5,10.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12474 - - 12473 - - 194 - - 12447 - type: DeviceNetwork - - uid: 6952 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,10.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 194 - - 12447 - - 8006 - - 8007 - - 8005 - - 8011 - type: DeviceNetwork - - uid: 7663 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,0.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 7662 - - 2123 - - 2124 - - 8006 - - 8007 - - 8005 - - 8011 - type: DeviceNetwork - - uid: 7709 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,0.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 8006 - - 8007 - - 8005 - - 8011 - - 5077 - - 8316 - - 5020 - type: DeviceNetwork - - uid: 7746 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-12.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 7842 - - 7839 - - 7662 - - 2123 - - 2124 - type: DeviceNetwork - - uid: 7747 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-13.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 7842 - - 7839 - - 7662 - - 2123 - - 2124 - type: DeviceNetwork - - uid: 7748 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-14.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 7842 - - 7839 - - 7662 - - 2123 - - 2124 - type: DeviceNetwork - - uid: 7749 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-13.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 7842 - - 7839 - - 7662 - - 2123 - - 2124 - type: DeviceNetwork - - uid: 7750 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-14.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 7842 - - 7839 - - 7662 - - 2123 - - 2124 - type: DeviceNetwork - - uid: 7889 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,0.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 7662 - - 2123 - - 2124 - - 8006 - - 8007 - - 8005 - - 8011 - type: DeviceNetwork - - uid: 7895 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 7662 - - 2123 - - 2124 - - 8006 - - 8007 - - 8005 - - 8011 - type: DeviceNetwork - - uid: 7938 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,1.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 8006 - - 8007 - - 8005 - - 8011 - - 5077 - - 8316 - - 5020 - type: DeviceNetwork - - uid: 7950 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-1.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 7662 - - 2123 - - 2124 - - 8006 - - 8007 - - 8005 - - 8011 - type: DeviceNetwork - - uid: 8003 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,0.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 8006 - - 8007 - - 8005 - - 8011 - - 5077 - - 8316 - - 5020 - type: DeviceNetwork - - uid: 8004 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-0.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 8006 - - 8007 - - 8005 - - 8011 - - 5077 - - 8316 - - 5020 - type: DeviceNetwork - - uid: 8291 - components: - - pos: 41.5,3.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11507 - - 11508 - - 12483 - - 12484 - type: DeviceNetwork - - uid: 8293 - components: - - pos: 40.5,3.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11507 - - 11508 - - 12483 - - 12484 - type: DeviceNetwork - - uid: 9362 - components: - - pos: 40.5,13.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12487 - - 12486 - - 12483 - - 12484 - type: DeviceNetwork - - uid: 9363 - components: - - pos: 41.5,13.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12487 - - 12486 - - 12483 - - 12484 - type: DeviceNetwork - - uid: 9364 - components: - - pos: 42.5,13.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12487 - - 12486 - - 12483 - - 12484 - type: DeviceNetwork - - uid: 9584 - components: - - rot: 3.141592653589793 rad - pos: 27.5,28.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 10964 - - 11165 - - 9588 - - 9587 - type: DeviceNetwork - - uid: 9585 - components: - - rot: 3.141592653589793 rad - pos: 26.5,28.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 10964 - - 11165 - - 9588 - - 9587 - type: DeviceNetwork - - uid: 9586 - components: - - rot: 3.141592653589793 rad - pos: 25.5,28.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 10964 - - 11165 - - 9588 - - 9587 - type: DeviceNetwork - - uid: 11244 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,10.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 194 - - 12447 - - 8006 - - 8007 - - 8005 - - 8011 - type: DeviceNetwork - - uid: 11245 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,9.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 194 - - 12447 - - 8006 - - 8007 - - 8005 - - 8011 - type: DeviceNetwork - - uid: 11246 - components: - - pos: 18.5,12.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12474 - - 12473 - - 194 - - 12447 - type: DeviceNetwork - - uid: 11247 - components: - - pos: 19.5,12.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12474 - - 12473 - - 194 - - 12447 - type: DeviceNetwork - - uid: 11248 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,22.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12517 - type: DeviceNetwork - - uid: 11249 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,21.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12517 - type: DeviceNetwork - - uid: 11250 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,20.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12517 - type: DeviceNetwork - - uid: 11251 - components: - - rot: 3.141592653589793 rad - pos: 40.5,11.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12487 - - 12486 - - 12483 - - 12484 - type: DeviceNetwork - - uid: 11252 - components: - - rot: 3.141592653589793 rad - pos: 41.5,11.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12487 - - 12486 - - 12483 - - 12484 - type: DeviceNetwork - - uid: 11253 - components: - - rot: 3.141592653589793 rad - pos: 42.5,11.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12487 - - 12486 - - 12483 - - 12484 - type: DeviceNetwork - - uid: 11254 - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-1.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11507 - - 11508 - - 12153 - - 12154 - - 12152 - type: DeviceNetwork - - uid: 11255 - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-0.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11507 - - 11508 - - 12153 - - 12154 - - 12152 - type: DeviceNetwork - - uid: 11256 - components: - - rot: 1.5707963267948966 rad - pos: 52.5,0.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11507 - - 11508 - - 12153 - - 12154 - - 12152 - type: DeviceNetwork - - uid: 11263 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,14.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12474 - - 12473 - type: DeviceNetwork - - uid: 11264 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,13.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12474 - - 12473 - type: DeviceNetwork - - uid: 11317 - components: - - rot: 3.141592653589793 rad - pos: 56.5,-3.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12153 - - 12154 - - 12152 - type: DeviceNetwork - - uid: 11319 - components: - - rot: 3.141592653589793 rad - pos: 40.5,1.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11507 - - 11508 - - 12483 - - 12484 - type: DeviceNetwork - - uid: 11320 - components: - - rot: 3.141592653589793 rad - pos: 41.5,1.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11507 - - 11508 - - 12483 - - 12484 - type: DeviceNetwork - - uid: 11321 - components: - - rot: 3.141592653589793 rad - pos: 42.5,1.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11507 - - 11508 - - 12483 - - 12484 - type: DeviceNetwork - - uid: 11322 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,23.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12517 - type: DeviceNetwork - - uid: 11323 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,24.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12517 - type: DeviceNetwork - - uid: 11324 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,25.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12517 - type: DeviceNetwork - - uid: 11325 - components: - - rot: 3.141592653589793 rad - pos: 57.5,-3.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12153 - - 12154 - - 12152 - type: DeviceNetwork - - uid: 11332 - components: - - rot: 3.141592653589793 rad - pos: 61.5,-3.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12153 - - 12154 - - 12152 - type: DeviceNetwork - - uid: 11355 - components: - - rot: 3.141592653589793 rad - pos: 62.5,-3.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12153 - - 12154 - - 12152 - type: DeviceNetwork - - uid: 11413 - components: - - rot: 3.141592653589793 rad - pos: 47.5,12.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12487 - - 12486 - type: DeviceNetwork - - uid: 11472 - components: - - rot: 3.141592653589793 rad - pos: 27.5,15.5 - parent: 2 - type: Transform - - uid: 11505 - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-0.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11507 - - 11508 - - 12153 - - 12154 - - 12152 - type: DeviceNetwork - - uid: 11506 - components: - - rot: -1.5707963267948966 rad - pos: 54.5,0.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11507 - - 11508 - - 12153 - - 12154 - - 12152 - type: DeviceNetwork - - uid: 11526 - components: - - rot: 3.141592653589793 rad - pos: 49.5,-2.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11507 - - 11508 - type: DeviceNetwork - - uid: 11527 - components: - - rot: 3.141592653589793 rad - pos: 50.5,-2.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11507 - - 11508 - type: DeviceNetwork - - uid: 12142 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,33.5 - parent: 2 - type: Transform - - uid: 12143 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,32.5 - parent: 2 - type: Transform - - uid: 12144 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,31.5 - parent: 2 - type: Transform - - uid: 12158 - components: - - rot: -1.5707963267948966 rad - pos: 69.5,0.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12153 - - 12154 - - 12152 - - 12163 - type: DeviceNetwork - - uid: 12159 - components: - - rot: -1.5707963267948966 rad - pos: 69.5,1.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12153 - - 12154 - - 12152 - - 12163 - type: DeviceNetwork - - uid: 12161 - components: - - rot: -1.5707963267948966 rad - pos: 69.5,2.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12153 - - 12154 - - 12152 - - 12163 - type: DeviceNetwork -- proto: FirelockElectronics - entities: - - uid: 1045 - components: - - pos: 32.473473,-30.370909 - parent: 2 - type: Transform -- proto: FirelockGlass - entities: - - uid: 169 - components: - - pos: 21.5,-29.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 4049 - - 1017 - type: DeviceNetwork - - uid: 554 - components: - - pos: 37.5,-4.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1657 - - 360 - type: DeviceNetwork - - uid: 558 - components: - - pos: 37.5,-3.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1657 - - 360 - type: DeviceNetwork - - uid: 742 - components: - - pos: 37.5,-6.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1657 - - 360 - type: DeviceNetwork - - uid: 873 - components: - - pos: 37.5,-5.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1657 - - 360 - type: DeviceNetwork - - uid: 1018 - components: - - pos: 21.5,-33.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1016 - - 11990 - - 4049 - - 1017 - type: DeviceNetwork - - uid: 1024 - components: - - pos: 31.5,-29.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 4049 - - 1017 - type: DeviceNetwork - - uid: 1162 - components: - - pos: 53.5,14.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12556 - type: DeviceNetwork - - uid: 1252 - components: - - pos: 53.5,13.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12556 - type: DeviceNetwork - - uid: 1510 - components: - - pos: 40.5,-7.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 6634 - - 6683 - - 6682 - type: DeviceNetwork - - uid: 1511 - components: - - pos: 34.5,-8.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1657 - - 6633 - - 6632 - type: DeviceNetwork - - uid: 1513 - components: - - pos: 36.5,-8.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1657 - - 6633 - - 6632 - type: DeviceNetwork - - uid: 1514 - components: - - pos: 37.5,-7.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1657 - - 360 - type: DeviceNetwork - - uid: 1515 - components: - - pos: 35.5,-8.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1657 - - 6633 - - 6632 - type: DeviceNetwork - - uid: 4919 - components: - - pos: 39.5,0.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 5077 - - 5020 - - 8316 - - 11507 - - 11508 - type: DeviceNetwork - - uid: 5144 - components: - - pos: 39.5,1.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 5077 - - 5020 - - 8316 - - 11507 - - 11508 - type: DeviceNetwork - - uid: 5656 - components: - - pos: 26.5,-34.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1016 - - 11990 - - 4049 - - 1017 - type: DeviceNetwork - - uid: 5657 - components: - - pos: 31.5,-33.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1016 - - 11990 - - 4049 - - 1017 - type: DeviceNetwork - - uid: 6473 - components: - - pos: 53.5,15.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12556 - type: DeviceNetwork - - uid: 6509 - components: - - pos: 43.5,-2.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 6683 - - 6682 - - 11507 - - 11508 - type: DeviceNetwork - - uid: 6523 - components: - - pos: 40.5,-6.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 6634 - - 6683 - - 6682 - type: DeviceNetwork - - uid: 6568 - components: - - pos: 44.5,-2.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 6683 - - 6682 - - 11507 - - 11508 - type: DeviceNetwork - - uid: 6645 - components: - - pos: 38.5,-8.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 6633 - - 6632 - type: DeviceNetwork - - uid: 7011 - components: - - pos: 39.5,-0.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 5077 - - 5020 - - 8316 - - 11507 - - 11508 - type: DeviceNetwork - - uid: 7740 - components: - - pos: -2.5,-2.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 7662 - - 2123 - - 2124 - type: DeviceNetwork - - uid: 8237 - components: - - pos: 16.5,22.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 5 - - 8239 - - 12521 - - 12520 - type: DeviceNetwork - - uid: 8238 - components: - - pos: 16.5,20.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 5 - - 8239 - - 12521 - - 12520 - type: DeviceNetwork - - uid: 8823 - components: - - pos: 49.5,-19.5 - parent: 2 - type: Transform - - uid: 9351 - components: - - pos: 38.5,13.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12477 - - 12476 - - 12487 - - 12486 - type: DeviceNetwork - - uid: 9352 - components: - - pos: 38.5,15.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12477 - - 12476 - - 12487 - - 12486 - type: DeviceNetwork - - uid: 9353 - components: - - pos: 38.5,14.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12477 - - 12476 - - 12487 - - 12486 - type: DeviceNetwork - - uid: 10205 - components: - - pos: 24.5,-11.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 8920 - - 8922 - - 10208 - - 10207 - type: DeviceNetwork - - uid: 10206 - components: - - pos: 24.5,-10.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 8920 - - 8922 - - 10208 - - 10207 - type: DeviceNetwork - - uid: 10413 - components: - - pos: 58.5,21.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12557 - - 2296 - - 2474 - - 1647 - type: DeviceNetwork - - uid: 10414 - components: - - pos: 59.5,21.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12557 - - 2296 - - 2474 - - 1647 - type: DeviceNetwork - - uid: 10415 - components: - - pos: 60.5,21.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12557 - - 2296 - - 2474 - - 1647 - type: DeviceNetwork - - uid: 10416 - components: - - pos: 58.5,16.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 151 - - 12557 - - 2296 - type: DeviceNetwork - - uid: 10417 - components: - - pos: 59.5,16.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 151 - - 12557 - - 2296 - type: DeviceNetwork - - uid: 10418 - components: - - pos: 60.5,16.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 151 - - 12557 - - 2296 - type: DeviceNetwork - - uid: 10735 - components: - - pos: 61.5,-8.5 - parent: 2 - type: Transform - - uid: 11243 - components: - - pos: 16.5,-2.5 - parent: 2 - type: Transform - - uid: 11265 - components: - - pos: 7.5,-15.5 - parent: 2 - type: Transform - - uid: 11266 - components: - - pos: 7.5,-16.5 - parent: 2 - type: Transform - - uid: 11267 - components: - - pos: 1.5,-14.5 - parent: 2 - type: Transform - - uid: 11268 - components: - - pos: 0.5,-14.5 - parent: 2 - type: Transform - - uid: 11271 - components: - - pos: 52.5,-16.5 - parent: 2 - type: Transform - - uid: 11272 - components: - - pos: 47.5,-17.5 - parent: 2 - type: Transform - - uid: 11273 - components: - - pos: 43.5,43.5 - parent: 2 - type: Transform - - uid: 11274 - components: - - pos: 44.5,43.5 - parent: 2 - type: Transform - - uid: 11279 - components: - - pos: 40.5,42.5 - parent: 2 - type: Transform - - uid: 11280 - components: - - pos: 40.5,41.5 - parent: 2 - type: Transform - - uid: 11283 - components: - - pos: 44.5,40.5 - parent: 2 - type: Transform - - uid: 11284 - components: - - pos: 45.5,40.5 - parent: 2 - type: Transform - - uid: 11285 - components: - - pos: 50.5,48.5 - parent: 2 - type: Transform - - uid: 11286 - components: - - pos: 62.5,48.5 - parent: 2 - type: Transform - - uid: 11287 - components: - - pos: 72.5,18.5 - parent: 2 - type: Transform - - uid: 11288 - components: - - pos: 74.5,14.5 - parent: 2 - type: Transform - - uid: 11294 - components: - - pos: 86.5,-13.5 - parent: 2 - type: Transform - - uid: 11295 - components: - - pos: 83.5,-15.5 - parent: 2 - type: Transform - - uid: 11296 - components: - - pos: 72.5,-15.5 - parent: 2 - type: Transform - - uid: 11297 - components: - - pos: 83.5,-16.5 - parent: 2 - type: Transform - - uid: 11298 - components: - - pos: 72.5,-16.5 - parent: 2 - type: Transform - - uid: 11299 - components: - - pos: 71.5,-12.5 - parent: 2 - type: Transform - - uid: 11300 - components: - - pos: 58.5,-19.5 - parent: 2 - type: Transform - - uid: 11301 - components: - - pos: 68.5,-19.5 - parent: 2 - type: Transform - - uid: 11329 - components: - - pos: 12.5,-21.5 - parent: 2 - type: Transform - - uid: 11334 - components: - - pos: 7.5,-23.5 - parent: 2 - type: Transform - - uid: 11335 - components: - - pos: 7.5,-24.5 - parent: 2 - type: Transform - - uid: 11349 - components: - - pos: 51.5,-16.5 - parent: 2 - type: Transform - - uid: 11351 - components: - - pos: 88.5,-17.5 - parent: 2 - type: Transform - - uid: 11353 - components: - - pos: 67.5,25.5 - parent: 2 - type: Transform - - uid: 11354 - components: - - pos: 66.5,25.5 - parent: 2 - type: Transform - - uid: 11379 - components: - - pos: 72.5,11.5 - parent: 2 - type: Transform - - uid: 11383 - components: - - pos: 72.5,10.5 - parent: 2 - type: Transform - - uid: 11384 - components: - - pos: 65.5,7.5 - parent: 2 - type: Transform - - uid: 11385 - components: - - pos: 66.5,7.5 - parent: 2 - type: Transform - - uid: 11386 - components: - - pos: 76.5,12.5 - parent: 2 - type: Transform - - uid: 11391 - components: - - pos: 23.5,9.5 - parent: 2 - type: Transform - - uid: 11392 - components: - - pos: 22.5,9.5 - parent: 2 - type: Transform - - uid: 11393 - components: - - pos: 21.5,3.5 - parent: 2 - type: Transform - - uid: 11412 - components: - - pos: 48.5,6.5 - parent: 2 - type: Transform - - uid: 11531 - components: - - pos: 73.5,14.5 - parent: 2 - type: Transform - - uid: 11810 - components: - - pos: 30.5,11.5 - parent: 2 - type: Transform - - uid: 11858 - components: - - pos: 50.5,-3.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12489 - - 12488 - type: DeviceNetwork - - uid: 12075 - components: - - pos: 54.5,-4.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12489 - - 12488 - type: DeviceNetwork - - uid: 12076 - components: - - pos: 54.5,-5.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12489 - - 12488 - type: DeviceNetwork - - uid: 12077 - components: - - pos: 48.5,-7.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 6683 - - 6682 - - 12489 - - 12488 - type: DeviceNetwork - - uid: 12085 - components: - - pos: 28.5,25.5 - parent: 2 - type: Transform - - uid: 12086 - components: - - pos: 21.5,22.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12521 - - 12520 - type: DeviceNetwork - - uid: 12087 - components: - - pos: 48.5,18.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12487 - - 12486 - - 12549 - - 12548 - type: DeviceNetwork - - uid: 12394 - components: - - pos: 49.5,-18.5 - parent: 2 - type: Transform -- proto: Fireplace - entities: - - uid: 380 - components: - - pos: 36.5,43.5 - parent: 2 - type: Transform -- proto: Flash - entities: - - uid: 4987 - components: - - pos: 30.4376,48.510555 - parent: 2 - type: Transform -- proto: FlashlightLantern - entities: - - uid: 5714 - components: - - pos: 76.49909,-12.519633 - parent: 2 - type: Transform - - uid: 10814 - components: - - pos: 81.401146,12.491636 - parent: 2 - type: Transform -- proto: Floodlight - entities: - - uid: 4500 - components: - - pos: 34.356434,-54.33789 - parent: 2 - type: Transform -- proto: FloorDrain - entities: - - uid: 741 - components: - - pos: 30.5,-11.5 - parent: 2 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 1859 - components: - - pos: 12.5,12.5 - parent: 2 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 5254 - components: - - pos: 78.5,-0.5 - parent: 2 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 6865 - components: - - pos: 40.5,35.5 - parent: 2 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 8960 - components: - - pos: 102.5,-13.5 - parent: 2 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 10447 - components: - - pos: 51.5,15.5 - parent: 2 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 11900 - components: - - pos: 78.5,10.5 - parent: 2 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 12288 - components: - - pos: 51.5,-5.5 - parent: 2 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 12290 - components: - - pos: 4.5,-4.5 - parent: 2 - type: Transform - - fixtures: {} - type: Fixtures -- proto: FoodBanana - entities: - - uid: 9595 - components: - - pos: 27.618341,6.6818295 - parent: 2 - type: Transform - - uid: 9596 - components: - - pos: 27.618341,6.6818295 - parent: 2 - type: Transform - - uid: 9597 - components: - - pos: 27.618341,6.6818295 - parent: 2 - type: Transform - - uid: 9598 - components: - - pos: 27.618341,6.6818295 - parent: 2 - type: Transform - - uid: 9599 - components: - - pos: 27.618341,6.6818295 - parent: 2 - type: Transform -- proto: FoodBowlBig - entities: - - uid: 5507 - components: - - pos: 70.488464,33.529522 - parent: 2 - type: Transform -- proto: FoodBowlBigTrash - entities: - - uid: 5881 - components: - - pos: -0.3447714,-23.649889 - parent: 2 - type: Transform -- proto: FoodBoxDonkpocket - entities: - - uid: 8862 - components: - - pos: 107.64995,-11.344688 - parent: 2 - type: Transform -- proto: FoodBoxDonkpocketBerry - entities: - - uid: 8863 - components: - - pos: 107.3062,-11.344688 - parent: 2 - type: Transform -- proto: FoodBoxDonkpocketGondola - entities: - - uid: 8861 - components: - - pos: 107.35307,-10.954063 - parent: 2 - type: Transform -- proto: FoodBoxDonut - entities: - - uid: 4982 - components: - - pos: 33.510082,46.65118 - parent: 2 - type: Transform - - uid: 6761 - components: - - pos: 37.49929,-7.4188547 - parent: 2 - type: Transform -- proto: FoodBreadBananaSlice - entities: - - uid: 8651 - components: - - rot: 4.008621544926427E-05 rad - pos: 83.58996,8.734995 - parent: 2 - type: Transform -- proto: FoodCakeChocolateSlice - entities: - - uid: 10832 - components: - - rot: 3.7838042771909386E-05 rad - pos: 70.43763,11.734996 - parent: 2 - type: Transform -- proto: FoodCartCold - entities: - - uid: 1551 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-9.5 - parent: 2 - type: Transform -- proto: FoodCartHot - entities: - - uid: 1557 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-10.5 - parent: 2 - type: Transform -- proto: FoodCondimentBottleEnzyme - entities: - - uid: 296 - components: - - pos: 36.20302,-12.346379 - parent: 2 - type: Transform - - uid: 363 - components: - - pos: 36.093643,-12.174504 - parent: 2 - type: Transform - - uid: 6868 - components: - - pos: 40.839993,34.745388 - parent: 2 - type: Transform -- proto: FoodCondimentPacketKetchup - entities: - - uid: 6760 - components: - - pos: 29.437809,-3.4969797 - parent: 2 - type: Transform -- proto: FoodFrozenPopsicleTrash - entities: - - uid: 5885 - components: - - pos: 1.6864786,-25.212389 - parent: 2 - type: Transform -- proto: FoodFrozenSnowconeRainbow - entities: - - uid: 12702 - components: - - pos: 106.40823,-18.308239 - parent: 2 - type: Transform - - uid: 12703 - components: - - pos: 106.54886,-18.401989 - parent: 2 - type: Transform - - uid: 12704 - components: - - pos: 106.68948,-18.276989 - parent: 2 - type: Transform -- proto: FoodFrozenSnowconeTrash - entities: - - uid: 5884 - components: - - pos: -0.0010213852,-26.399889 - parent: 2 - type: Transform -- proto: FoodMeat - entities: - - uid: 566 - components: - - pos: 31.219597,-12.667201 - parent: 2 - type: Transform - - uid: 1176 - components: - - pos: 31.625847,-12.667201 - parent: 2 - type: Transform - - uid: 1178 - components: - - pos: 31.657097,-12.292201 - parent: 2 - type: Transform - - uid: 1496 - components: - - pos: 31.422722,-12.542201 - parent: 2 - type: Transform - - uid: 1535 - components: - - pos: 31.453972,-12.339076 - parent: 2 - type: Transform -- proto: FoodPieBananaCream - entities: - - uid: 9590 - components: - - pos: 27.383966,6.5099545 - parent: 2 - type: Transform - - uid: 9591 - components: - - pos: 27.383966,6.5099545 - parent: 2 - type: Transform - - uid: 9592 - components: - - pos: 27.383966,6.5099545 - parent: 2 - type: Transform - - uid: 9593 - components: - - pos: 27.383966,6.5099545 - parent: 2 - type: Transform - - uid: 9594 - components: - - pos: 27.383966,6.5099545 - parent: 2 - type: Transform -- proto: FoodPlateSmallTrash - entities: - - uid: 5882 - components: - - pos: 2.1083536,-26.524889 - parent: 2 - type: Transform - - uid: 5883 - components: - - pos: -0.9697714,-25.884264 - parent: 2 - type: Transform -- proto: FoodShakerPepper - entities: - - uid: 6758 - components: - - pos: 33.484684,-5.5126047 - parent: 2 - type: Transform -- proto: FoodShakerSalt - entities: - - uid: 6655 - components: - - pos: 33.71906,-5.5126047 - parent: 2 - type: Transform -- proto: FoodSnackChocolate - entities: - - uid: 12495 - components: - - pos: 11.536887,-11.535692 - parent: 2 - type: Transform -- proto: FoodTinBeansTrash - entities: - - uid: 5886 - components: - - pos: -1.0166464,-26.540514 - parent: 2 - type: Transform - - uid: 5887 - components: - - pos: 0.4677286,-25.024889 - parent: 2 - type: Transform -- proto: FoodTinMRE - entities: - - uid: 5711 - components: - - pos: 77.34284,-13.410258 - parent: 2 - type: Transform -- proto: FoodTinMRETrash - entities: - - uid: 5888 - components: - - pos: 0.8896036,-25.587389 - parent: 2 - type: Transform -- proto: FoodTinPeachesMaint - entities: - - uid: 5476 - components: - - pos: 67.5,38.5 - parent: 2 - type: Transform -- proto: ForkPlastic - entities: - - uid: 6759 - components: - - pos: 33.59406,-4.5126047 - parent: 2 - type: Transform -- proto: GasFilterFlipped - entities: - - uid: 2730 - components: - - rot: 3.141592653589793 rad - pos: 40.5,-33.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2785 - components: - - rot: 3.141592653589793 rad - pos: 40.5,-25.5 - parent: 2 - type: Transform - - uid: 4102 - components: - - rot: 3.141592653589793 rad - pos: 40.5,-29.5 - parent: 2 - type: Transform - - uid: 4154 - components: - - rot: 3.141592653589793 rad - pos: 40.5,-23.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4156 - components: - - rot: 3.141592653589793 rad - pos: 40.5,-27.5 - parent: 2 - type: Transform - - uid: 4176 - components: - - rot: 3.141592653589793 rad - pos: 40.5,-31.5 - parent: 2 - type: Transform - - uid: 4903 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-39.5 - parent: 2 - type: Transform - - uid: 11767 - components: - - rot: -1.5707963267948966 rad - pos: 59.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor -- proto: GasMinerCarbonDioxide - entities: - - uid: 2116 - components: - - pos: 46.5,-27.5 - parent: 2 - type: Transform -- proto: GasMinerNitrogenStation - entities: - - uid: 1182 - components: - - pos: 46.5,-23.5 - parent: 2 - type: Transform -- proto: GasMinerOxygenStation - entities: - - uid: 4098 - components: - - pos: 46.5,-25.5 - parent: 2 - type: Transform -- proto: GasMinerPlasma - entities: - - uid: 2130 - components: - - pos: 46.5,-31.5 - parent: 2 - type: Transform -- proto: GasMinerWaterVapor - entities: - - uid: 2138 - components: - - pos: 46.5,-29.5 - parent: 2 - type: Transform -- proto: GasMixer - entities: - - uid: 1938 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-34.5 - parent: 2 - type: Transform -- proto: GasMixerFlipped - entities: - - uid: 669 - components: - - rot: 3.141592653589793 rad - pos: 39.5,-28.5 - parent: 2 - type: Transform - - uid: 671 - components: - - rot: 3.141592653589793 rad - pos: 39.5,-30.5 - parent: 2 - type: Transform - - uid: 757 - components: - - rot: 3.141592653589793 rad - pos: 39.5,-32.5 - parent: 2 - type: Transform - - uid: 1034 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-23.5 - parent: 2 - type: Transform - - inletTwoConcentration: 0.78 - inletOneConcentration: 0.22 - type: GasMixer - - color: '#03FCD3FF' - type: AtmosPipeColor - - uid: 2751 - components: - - rot: 3.141592653589793 rad - pos: 38.5,-26.5 - parent: 2 - type: Transform - - uid: 4924 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-40.5 - parent: 2 - type: Transform -- proto: GasOutletInjector - entities: - - uid: 474 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-25.5 - parent: 2 - type: Transform - - uid: 2072 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-23.5 - parent: 2 - type: Transform - - uid: 2075 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-33.5 - parent: 2 - type: Transform - - uid: 2140 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-29.5 - parent: 2 - type: Transform - - uid: 2141 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-31.5 - parent: 2 - type: Transform - - uid: 4047 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-27.5 - parent: 2 - type: Transform - - uid: 4355 - components: - - pos: 35.5,-32.5 - parent: 2 - type: Transform - - uid: 12882 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-45.5 - parent: 2 - type: Transform -- proto: GasPassiveVent - entities: - - uid: 351 - components: - - pos: 47.5,-33.5 - parent: 2 - type: Transform - - uid: 361 - components: - - pos: 47.5,-31.5 - parent: 2 - type: Transform - - uid: 367 - components: - - pos: 47.5,-29.5 - parent: 2 - type: Transform - - uid: 628 - components: - - pos: 47.5,-25.5 - parent: 2 - type: Transform - - uid: 675 - components: - - pos: 47.5,-27.5 - parent: 2 - type: Transform - - uid: 745 - components: - - pos: 47.5,-23.5 - parent: 2 - type: Transform - - uid: 3951 - components: - - rot: 3.141592653589793 rad - pos: 48.5,-48.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3953 - components: - - rot: 3.141592653589793 rad - pos: 49.5,-48.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4179 - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-35.5 - parent: 2 - type: Transform - - uid: 4354 - components: - - rot: 3.141592653589793 rad - pos: 35.5,-30.5 - parent: 2 - type: Transform - - uid: 5265 - components: - - rot: 3.141592653589793 rad - pos: 79.5,-9.5 - parent: 2 - type: Transform - - uid: 8677 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,33.5 - parent: 2 - type: Transform - - uid: 10426 - components: - - pos: 63.5,28.5 - parent: 2 - type: Transform - - uid: 10427 - components: - - pos: 64.5,28.5 - parent: 2 - type: Transform - - uid: 11587 - components: - - rot: 3.141592653589793 rad - pos: 47.5,-48.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11588 - components: - - rot: 3.141592653589793 rad - pos: 46.5,-48.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor -- proto: GasPipeBend - entities: - - uid: 34 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-35.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 87 - components: - - rot: 1.5707963267948966 rad - pos: 61.5,2.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 372 - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-24.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 381 - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-28.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 382 - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-30.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 383 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-22.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 387 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-25.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 391 - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-32.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 392 - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-34.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 393 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,10.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 746 - components: - - rot: 3.141592653589793 rad - pos: 35.5,-34.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 889 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-22.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 891 - components: - - pos: 27.5,-25.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1033 - components: - - pos: 39.5,-23.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1039 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-24.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 1040 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-23.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 1149 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1235 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-46.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 1236 - components: - - rot: 3.141592653589793 rad - pos: 42.5,-48.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 1258 - components: - - rot: 3.141592653589793 rad - pos: 43.5,-47.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 1306 - components: - - pos: 31.5,-32.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1456 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-27.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1506 - components: - - rot: 3.141592653589793 rad - pos: 41.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1534 - components: - - rot: 1.5707963267948966 rad - pos: 62.5,1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1685 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-31.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1691 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-28.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1698 - components: - - rot: 3.141592653589793 rad - pos: 40.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1799 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-3.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1807 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,14.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1814 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1816 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1819 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1820 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1944 - components: - - rot: 3.141592653589793 rad - pos: 38.5,-27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2441 - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2609 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-13.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3688 - components: - - rot: 1.5707963267948966 rad - pos: 55.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3690 - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-2.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3956 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-47.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 3982 - components: - - pos: 39.5,-27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4014 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-26.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4015 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-23.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4016 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-22.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4017 - components: - - pos: 40.5,-22.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4028 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-23.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4031 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-26.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4050 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-36.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4091 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-34.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4099 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-24.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4177 - components: - - rot: 3.141592653589793 rad - pos: 40.5,-35.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4219 - components: - - pos: 41.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4365 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-24.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4366 - components: - - pos: 37.5,-24.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4443 - components: - - pos: 32.5,-35.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4498 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-48.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4914 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5010 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,14.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5108 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,15.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5109 - components: - - rot: 1.5707963267948966 rad - pos: 46.5,18.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5765 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6428 - components: - - pos: 32.5,46.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6489 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-3.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6499 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-3.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6500 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-6.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6569 - components: - - rot: 3.141592653589793 rad - pos: 42.5,-6.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6777 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,9.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6833 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-14.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8023 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-4.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8198 - components: - - rot: 3.141592653589793 rad - pos: 17.5,21.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8199 - components: - - pos: 17.5,22.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8202 - components: - - rot: 3.141592653589793 rad - pos: 14.5,22.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8203 - components: - - pos: 14.5,23.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8204 - components: - - rot: 3.141592653589793 rad - pos: 13.5,23.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8205 - components: - - rot: 3.141592653589793 rad - pos: 13.5,20.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8206 - components: - - pos: 13.5,21.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8228 - components: - - pos: 13.5,25.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8338 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,37.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8599 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,22.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8620 - components: - - rot: 3.141592653589793 rad - pos: 35.5,17.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8621 - components: - - rot: 3.141592653589793 rad - pos: 33.5,19.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8628 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,17.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8663 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,30.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8672 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,30.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9545 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,45.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9547 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,45.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9555 - components: - - pos: 28.5,40.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9556 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,39.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9572 - components: - - rot: 3.141592653589793 rad - pos: 18.5,35.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10169 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-11.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10200 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-7.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10334 - components: - - rot: 3.141592653589793 rad - pos: 47.5,10.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10335 - components: - - rot: -1.5707963267948966 rad - pos: 54.5,10.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10364 - components: - - rot: 1.5707963267948966 rad - pos: 50.5,19.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10382 - components: - - rot: 1.5707963267948966 rad - pos: 55.5,13.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10384 - components: - - rot: 1.5707963267948966 rad - pos: 63.5,15.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10399 - components: - - rot: -1.5707963267948966 rad - pos: 55.5,9.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10639 - components: - - pos: 29.5,10.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10644 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,7.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10645 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,6.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11512 - components: - - rot: 3.141592653589793 rad - pos: 65.5,-6.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11578 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-45.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11579 - components: - - pos: 41.5,-47.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11707 - components: - - rot: -1.5707963267948966 rad - pos: 71.5,-9.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11720 - components: - - rot: 1.5707963267948966 rad - pos: 64.5,-4.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11721 - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-4.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11722 - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11765 - components: - - rot: -1.5707963267948966 rad - pos: 61.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11768 - components: - - pos: 61.5,0.5 - parent: 2 - type: Transform - - uid: 11786 - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-1.5 - parent: 2 - type: Transform - - uid: 11789 - components: - - rot: 3.141592653589793 rad - pos: 56.5,-1.5 - parent: 2 - type: Transform - - uid: 11797 - components: - - rot: 1.5707963267948966 rad - pos: 56.5,0.5 - parent: 2 - type: Transform - - uid: 11798 - components: - - pos: 56.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11799 - components: - - rot: 3.141592653589793 rad - pos: 56.5,-2.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11954 - components: - - rot: 1.5707963267948966 rad - pos: 72.5,4.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11955 - components: - - rot: -1.5707963267948966 rad - pos: 73.5,4.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 12301 - components: - - pos: 49.5,-47.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 12858 - components: - - rot: 3.141592653589793 rad - pos: 37.5,-45.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12869 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-53.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12870 - components: - - rot: 3.141592653589793 rad - pos: 41.5,-53.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12875 - components: - - rot: 3.141592653589793 rad - pos: 41.5,-43.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12881 - components: - - rot: 3.141592653589793 rad - pos: 44.5,-45.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12883 - components: - - pos: 49.5,-44.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 12884 - components: - - rot: 3.141592653589793 rad - pos: 47.5,-46.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 12885 - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-46.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor -- proto: GasPipeFourway - entities: - - uid: 62 - components: - - pos: 35.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 350 - components: - - pos: 19.5,9.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 463 - components: - - pos: 18.5,10.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3965 - components: - - pos: 37.5,-44.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4021 - components: - - pos: 55.5,-5.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4770 - components: - - pos: 12.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5169 - components: - - pos: 72.5,2.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5181 - components: - - pos: 25.5,-10.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5200 - components: - - pos: 42.5,13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5240 - components: - - pos: 44.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6520 - components: - - pos: 46.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6623 - components: - - pos: 35.5,-3.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8581 - components: - - pos: 39.5,24.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8589 - components: - - pos: 40.5,23.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10054 - components: - - pos: 59.5,18.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10374 - components: - - pos: 58.5,19.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11732 - components: - - pos: 60.5,-5.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11787 - components: - - pos: 57.5,-2.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor -- proto: GasPipeStraight - entities: - - uid: 26 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 33 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-35.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 53 - components: - - pos: 19.5,8.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 68 - components: - - pos: 33.5,-1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 74 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 86 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 91 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 95 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-31.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 107 - components: - - pos: 11.5,-37.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 117 - components: - - rot: 3.141592653589793 rad - pos: 9.5,6.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 121 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,15.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 122 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,15.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 142 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 143 - components: - - rot: 3.141592653589793 rad - pos: 11.5,8.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 153 - components: - - rot: 3.141592653589793 rad - pos: 11.5,7.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 168 - components: - - rot: 3.141592653589793 rad - pos: 27.5,19.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 175 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 234 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,10.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 235 - components: - - rot: 3.141592653589793 rad - pos: 9.5,9.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 236 - components: - - rot: 3.141592653589793 rad - pos: 9.5,8.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 245 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-30.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 318 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-34.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 319 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-34.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 321 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-34.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 322 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-34.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 352 - components: - - pos: 3.5,4.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 353 - components: - - pos: 3.5,8.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 354 - components: - - pos: 3.5,9.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 375 - components: - - pos: 3.5,2.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 390 - components: - - pos: 3.5,6.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 395 - components: - - pos: 3.5,3.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 396 - components: - - pos: 3.5,5.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 402 - components: - - pos: 3.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 406 - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-34.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 407 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-34.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 409 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-32.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 410 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-32.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 415 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-32.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 416 - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-32.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 425 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 432 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 436 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-22.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 439 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-23.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 440 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,9.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 442 - components: - - pos: 25.5,-26.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 444 - components: - - pos: 25.5,-17.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 447 - components: - - pos: 25.5,-22.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 468 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-23.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 512 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-34.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 609 - components: - - pos: 10.5,-36.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 611 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-34.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 617 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-31.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 666 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 667 - components: - - pos: 55.5,-6.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 668 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 672 - components: - - pos: 31.5,-26.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 676 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-30.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 677 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-30.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 678 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-34.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 743 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-34.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 744 - components: - - pos: 39.5,-33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 755 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-34.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 817 - components: - - pos: 42.5,2.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 818 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-24.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 820 - components: - - pos: 31.5,-25.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 825 - components: - - pos: 42.5,3.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 833 - components: - - pos: 42.5,5.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 835 - components: - - pos: 42.5,4.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 838 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-32.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 839 - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-30.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 842 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-30.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 850 - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-28.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 851 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-28.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 869 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-28.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 879 - components: - - rot: 3.141592653589793 rad - pos: 43.5,-45.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 887 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-27.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 888 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-26.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 890 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-21.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 893 - components: - - rot: 3.141592653589793 rad - pos: 27.5,14.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 894 - components: - - rot: 3.141592653589793 rad - pos: 27.5,15.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 896 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 897 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 898 - components: - - rot: 3.141592653589793 rad - pos: 27.5,16.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 899 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-25.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 901 - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 906 - components: - - pos: 25.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 907 - components: - - pos: 56.5,29.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 908 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 910 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 911 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 912 - components: - - pos: 25.5,-19.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 914 - components: - - pos: 25.5,-4.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 938 - components: - - pos: 25.5,-3.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1019 - components: - - pos: 25.5,-2.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1020 - components: - - pos: 25.5,-1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1035 - components: - - pos: 39.5,-24.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1037 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-23.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 1038 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-23.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 1043 - components: - - pos: 25.5,-0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1044 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1106 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1107 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,9.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1157 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1158 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1181 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,9.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1183 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,9.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1206 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,9.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1207 - components: - - pos: 25.5,-7.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1211 - components: - - pos: 38.5,-25.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1212 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,9.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1213 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,9.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1214 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,9.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1217 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-44.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 1222 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-44.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 1224 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-44.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 1226 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-44.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 1228 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-31.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1229 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1230 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1237 - components: - - rot: 3.141592653589793 rad - pos: 38.5,-45.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 1245 - components: - - rot: 3.141592653589793 rad - pos: 38.5,-47.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 1249 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-45.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 1300 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1301 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1302 - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-24.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1303 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1346 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-24.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1371 - components: - - pos: 31.5,-33.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1457 - components: - - pos: 39.5,-25.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1485 - components: - - pos: 31.5,-34.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1488 - components: - - pos: 31.5,-35.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1489 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-35.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1490 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-35.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1521 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-17.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1528 - components: - - pos: 42.5,6.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1538 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-36.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1541 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-36.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1559 - components: - - pos: 55.5,-2.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1562 - components: - - pos: 55.5,-3.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1564 - components: - - rot: 3.141592653589793 rad - pos: 58.5,18.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1572 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-36.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1573 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-36.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1574 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-36.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1594 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-36.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1595 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-36.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1600 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-36.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1601 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-36.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1602 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-36.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1603 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-36.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1604 - components: - - pos: 17.5,-35.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1606 - components: - - pos: 17.5,-33.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1607 - components: - - pos: 17.5,-32.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1608 - components: - - pos: 17.5,-31.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1609 - components: - - pos: 17.5,-30.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1610 - components: - - pos: 17.5,-29.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1611 - components: - - pos: 17.5,-28.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1612 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-27.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1620 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-17.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1621 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-17.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1624 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-27.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1631 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-33.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1632 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-34.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1633 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-28.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1636 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-28.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1654 - components: - - pos: 33.5,-0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1666 - components: - - pos: 18.5,-29.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1667 - components: - - pos: 18.5,-30.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1668 - components: - - pos: 18.5,-31.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1669 - components: - - pos: 18.5,-32.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1670 - components: - - pos: 18.5,-33.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1671 - components: - - pos: 18.5,-34.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1672 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-35.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1676 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-35.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1677 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-35.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1679 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-35.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1680 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-35.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1681 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-35.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1682 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-17.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1683 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-35.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1684 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-35.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1686 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-27.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1687 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-27.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1689 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-27.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1693 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-27.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1696 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-27.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 1719 - components: - - pos: 25.5,33.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1730 - components: - - pos: 25.5,32.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1749 - components: - - pos: 25.5,31.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1762 - components: - - pos: 25.5,30.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1763 - components: - - pos: 25.5,29.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1764 - components: - - pos: 25.5,28.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1769 - components: - - pos: 25.5,27.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1770 - components: - - pos: 25.5,26.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1771 - components: - - pos: 25.5,25.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1772 - components: - - pos: 25.5,24.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1774 - components: - - pos: 25.5,22.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1800 - components: - - pos: 25.5,20.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1801 - components: - - pos: 25.5,19.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1803 - components: - - pos: 25.5,18.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1804 - components: - - pos: 25.5,17.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1805 - components: - - pos: 25.5,16.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1822 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1823 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1824 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1825 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1826 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1827 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1829 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1830 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1832 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1834 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1835 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1836 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1837 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1839 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1840 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1841 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1844 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 1845 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1846 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1848 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1849 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1850 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1860 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,10.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1861 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,10.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1862 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,10.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1863 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,10.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1864 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,10.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1867 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,10.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1868 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,10.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1869 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,10.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1870 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,10.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1871 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,10.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1872 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,10.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1873 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,10.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1874 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,10.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1875 - components: - - pos: 18.5,11.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1876 - components: - - pos: 18.5,12.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1878 - components: - - pos: 18.5,13.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1879 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,14.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1880 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,14.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1881 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,14.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1882 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,14.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1883 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,14.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1884 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,14.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1885 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,15.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1886 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,15.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1887 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,15.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1888 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,15.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1890 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,15.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1891 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,15.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1892 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,15.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1893 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,15.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1894 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,15.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1895 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,15.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1896 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,15.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1897 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,15.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1898 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,15.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1899 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,15.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1900 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,15.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1901 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,15.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1903 - components: - - rot: 3.141592653589793 rad - pos: 40.5,14.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1904 - components: - - rot: 3.141592653589793 rad - pos: 40.5,13.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1905 - components: - - rot: 3.141592653589793 rad - pos: 40.5,12.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1906 - components: - - rot: 3.141592653589793 rad - pos: 40.5,11.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1907 - components: - - rot: 3.141592653589793 rad - pos: 40.5,10.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1908 - components: - - rot: 3.141592653589793 rad - pos: 40.5,9.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1909 - components: - - rot: 3.141592653589793 rad - pos: 40.5,8.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1912 - components: - - rot: 3.141592653589793 rad - pos: 40.5,5.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1913 - components: - - rot: 3.141592653589793 rad - pos: 40.5,4.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1914 - components: - - rot: 3.141592653589793 rad - pos: 40.5,3.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1915 - components: - - rot: 3.141592653589793 rad - pos: 40.5,2.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1916 - components: - - rot: -1.5707963267948966 rad - pos: 51.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1917 - components: - - rot: -1.5707963267948966 rad - pos: 50.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1918 - components: - - rot: -1.5707963267948966 rad - pos: 49.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1919 - components: - - pos: 42.5,10.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1920 - components: - - pos: 42.5,9.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1921 - components: - - pos: 42.5,11.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1927 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-35.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 1934 - components: - - pos: 42.5,12.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1935 - components: - - rot: 3.141592653589793 rad - pos: 5.5,5.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1937 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-31.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1939 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-16.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1940 - components: - - rot: 3.141592653589793 rad - pos: 40.5,-26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1959 - components: - - rot: 3.141592653589793 rad - pos: 5.5,2.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1960 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1961 - components: - - pos: 21.5,-29.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1962 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-31.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1963 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-2.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1964 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1965 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1966 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-5.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1969 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1970 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1971 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-7.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2021 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-3.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2029 - components: - - pos: 11.5,-38.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 2032 - components: - - pos: 11.5,-39.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 2052 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2062 - components: - - pos: 10.5,-37.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 2063 - components: - - pos: 25.5,-9.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2069 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2070 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-23.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2071 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2148 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-23.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2161 - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2304 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-22.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 2316 - components: - - pos: 25.5,-12.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2317 - components: - - pos: 25.5,-11.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2322 - components: - - pos: 25.5,-13.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2326 - components: - - rot: 3.141592653589793 rad - pos: 42.5,14.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2381 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2384 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-31.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2385 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-31.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2386 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-31.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2388 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-31.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2389 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2390 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2391 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-29.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2396 - components: - - pos: 25.5,-6.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2397 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-29.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2398 - components: - - rot: 3.141592653589793 rad - pos: 5.5,8.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2399 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,9.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2412 - components: - - rot: 3.141592653589793 rad - pos: 27.5,17.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2413 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-20.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2415 - components: - - pos: 42.5,7.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2416 - components: - - pos: 42.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2417 - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2418 - components: - - rot: 3.141592653589793 rad - pos: 27.5,18.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2419 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2423 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2436 - components: - - rot: -1.5707963267948966 rad - pos: 47.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2437 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-28.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2438 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-28.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2439 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-32.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2440 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-30.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2452 - components: - - pos: 27.5,44.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2453 - components: - - pos: 27.5,45.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2454 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,42.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2455 - components: - - rot: 3.141592653589793 rad - pos: 32.5,43.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2472 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-19.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2484 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2487 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2488 - components: - - pos: 25.5,-5.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2490 - components: - - pos: 25.5,-21.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2530 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,46.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2532 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,46.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2546 - components: - - pos: 25.5,-15.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2560 - components: - - pos: 25.5,-8.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2561 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,9.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2667 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,9.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2717 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2731 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-8.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2782 - components: - - rot: 3.141592653589793 rad - pos: 40.5,-24.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3553 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3592 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-3.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3595 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-28.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3686 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-28.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3695 - components: - - rot: 3.141592653589793 rad - pos: 55.5,-0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3704 - components: - - pos: 21.5,-30.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3736 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3835 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3843 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3845 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3846 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3952 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3954 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-48.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 3955 - components: - - pos: 38.5,-46.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 3958 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3959 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3974 - components: - - rot: 3.141592653589793 rad - pos: 5.5,6.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3975 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3976 - components: - - rot: 3.141592653589793 rad - pos: 5.5,7.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3997 - components: - - rot: 3.141592653589793 rad - pos: 5.5,3.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4000 - components: - - pos: 39.5,-31.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4003 - components: - - rot: 3.141592653589793 rad - pos: 5.5,1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4004 - components: - - rot: 3.141592653589793 rad - pos: 5.5,0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4007 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-22.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4008 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-29.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4009 - components: - - pos: 19.5,12.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4013 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-27.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4022 - components: - - pos: 19.5,7.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4023 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4024 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4025 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4032 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-27.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4043 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,9.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4045 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4048 - components: - - rot: -1.5707963267948966 rad - pos: 48.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4051 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-23.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4052 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-25.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4058 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-28.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4060 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-28.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4062 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4063 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4064 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4065 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4067 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-22.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4068 - components: - - pos: 25.5,-25.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4069 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-24.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4070 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4072 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-30.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4073 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4082 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-25.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4083 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-25.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4084 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-22.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4085 - components: - - pos: 19.5,10.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4094 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-25.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4095 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-31.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4097 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-29.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4103 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4104 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4105 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4106 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4108 - components: - - rot: 3.141592653589793 rad - pos: 27.5,29.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4109 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-15.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4111 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4114 - components: - - rot: 3.141592653589793 rad - pos: 27.5,30.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4124 - components: - - rot: 3.141592653589793 rad - pos: 27.5,23.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4125 - components: - - rot: 3.141592653589793 rad - pos: 27.5,21.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4129 - components: - - rot: 3.141592653589793 rad - pos: 40.5,-34.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4131 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-35.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4133 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-24.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4135 - components: - - rot: 3.141592653589793 rad - pos: 40.5,-28.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4136 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-24.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4140 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-24.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4144 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-35.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4147 - components: - - rot: 3.141592653589793 rad - pos: 40.5,-30.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4151 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-24.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4155 - components: - - rot: 3.141592653589793 rad - pos: 27.5,22.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4158 - components: - - rot: 3.141592653589793 rad - pos: 40.5,-32.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4159 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-35.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4160 - components: - - rot: 3.141592653589793 rad - pos: 27.5,32.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4161 - components: - - rot: 3.141592653589793 rad - pos: 27.5,27.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4162 - components: - - rot: 3.141592653589793 rad - pos: 27.5,31.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4163 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-14.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4164 - components: - - rot: 3.141592653589793 rad - pos: 27.5,33.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4165 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4180 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-12.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4181 - components: - - pos: 39.5,-29.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4184 - components: - - pos: 46.5,-3.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4185 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4190 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-35.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4192 - components: - - rot: 3.141592653589793 rad - pos: 27.5,26.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4193 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4194 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4195 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4196 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4197 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4198 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4200 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4201 - components: - - rot: 3.141592653589793 rad - pos: 27.5,28.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4202 - components: - - pos: 42.5,0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4203 - components: - - pos: 42.5,1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4205 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4206 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4207 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4208 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4209 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4210 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4211 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4212 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4214 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4216 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4217 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4221 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4222 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4223 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4224 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4225 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4226 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4228 - components: - - rot: 3.141592653589793 rad - pos: 27.5,25.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4231 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-31.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4232 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-28.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4233 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-4.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4234 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-28.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4235 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4237 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4238 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-9.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4239 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-10.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4240 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-6.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4241 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4242 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4260 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-31.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4269 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-28.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4270 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4271 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4272 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-24.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4273 - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4274 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-18.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4280 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-29.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4281 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-31.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4283 - components: - - pos: 19.5,11.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4284 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-22.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4285 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4286 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4287 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4288 - components: - - pos: 25.5,-14.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4289 - components: - - pos: 25.5,-16.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4290 - components: - - pos: 25.5,-20.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4291 - components: - - pos: 25.5,-18.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4352 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-23.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4353 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-23.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4356 - components: - - pos: 35.5,-33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4357 - components: - - pos: 35.5,-29.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4358 - components: - - pos: 35.5,-28.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4359 - components: - - pos: 35.5,-27.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4360 - components: - - pos: 35.5,-26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4444 - components: - - pos: 32.5,-36.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4445 - components: - - pos: 32.5,-37.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4446 - components: - - pos: 31.5,-37.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4448 - components: - - pos: 31.5,-38.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4449 - components: - - pos: 32.5,-38.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4451 - components: - - pos: 32.5,-39.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4461 - components: - - pos: 22.5,-37.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4462 - components: - - pos: 20.5,-36.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4463 - components: - - pos: 20.5,-37.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4480 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-48.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4493 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-44.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4495 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-44.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4970 - components: - - pos: 27.5,34.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5009 - components: - - pos: 55.5,-1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5023 - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-2.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5024 - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-2.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5025 - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-2.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5036 - components: - - pos: 56.5,-0.5 - parent: 2 - type: Transform - - uid: 5038 - components: - - rot: 1.5707963267948966 rad - pos: 60.5,0.5 - parent: 2 - type: Transform - - uid: 5040 - components: - - rot: -1.5707963267948966 rad - pos: 60.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5042 - components: - - rot: -1.5707963267948966 rad - pos: 58.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5081 - components: - - rot: -1.5707963267948966 rad - pos: 57.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5083 - components: - - pos: 57.5,-7.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5110 - components: - - pos: 46.5,16.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5184 - components: - - pos: 57.5,-8.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5192 - components: - - pos: 55.5,-7.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5194 - components: - - pos: 56.5,27.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5206 - components: - - pos: 57.5,-6.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5258 - components: - - pos: 79.5,-8.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5259 - components: - - pos: 79.5,-7.5 - parent: 2 - type: Transform - - uid: 5273 - components: - - rot: 3.141592653589793 rad - pos: 26.5,2.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5303 - components: - - pos: 55.5,-4.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5429 - components: - - rot: 3.141592653589793 rad - pos: 11.5,6.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5430 - components: - - pos: 11.5,-36.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5666 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-35.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5667 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-35.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5668 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-35.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5669 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-35.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5670 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-34.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5671 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-34.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5672 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-34.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5673 - components: - - pos: 10.5,-38.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5683 - components: - - pos: 38.5,-44.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6425 - components: - - rot: 3.141592653589793 rad - pos: 32.5,45.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6426 - components: - - rot: 3.141592653589793 rad - pos: 32.5,44.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6479 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,46.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6482 - components: - - pos: 33.5,-2.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6484 - components: - - pos: 33.5,-3.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6488 - components: - - pos: 46.5,-5.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6490 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-3.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6498 - components: - - pos: 44.5,-2.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6503 - components: - - pos: 27.5,39.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6507 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,42.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6508 - components: - - pos: 46.5,-4.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6536 - components: - - pos: 56.5,28.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6550 - components: - - pos: 33.5,-4.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6551 - components: - - pos: 33.5,-5.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6553 - components: - - pos: 33.5,-7.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6554 - components: - - pos: 33.5,-8.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6556 - components: - - pos: 35.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6557 - components: - - pos: 35.5,-2.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6559 - components: - - pos: 35.5,-4.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6560 - components: - - pos: 35.5,-5.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6561 - components: - - pos: 35.5,-6.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6562 - components: - - pos: 35.5,-7.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6563 - components: - - pos: 35.5,-8.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6564 - components: - - pos: 35.5,-9.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6566 - components: - - pos: 44.5,-1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6567 - components: - - pos: 46.5,-2.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6575 - components: - - pos: 42.5,-4.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6576 - components: - - pos: 42.5,-5.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6577 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-3.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6579 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-3.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6580 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-3.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6581 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-3.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6585 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-10.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6586 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-10.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6587 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-10.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6589 - components: - - pos: 30.5,-11.5 - parent: 2 - type: Transform - - uid: 6594 - components: - - rot: 3.141592653589793 rad - pos: 33.5,-10.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6596 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-9.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6597 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-9.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6598 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-9.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6599 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-9.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6600 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-9.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6602 - components: - - rot: 3.141592653589793 rad - pos: 39.5,-5.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6603 - components: - - rot: 3.141592653589793 rad - pos: 39.5,-6.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6604 - components: - - rot: 3.141592653589793 rad - pos: 39.5,-7.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6605 - components: - - rot: 3.141592653589793 rad - pos: 39.5,-8.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6606 - components: - - rot: 3.141592653589793 rad - pos: 39.5,-9.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6607 - components: - - rot: 3.141592653589793 rad - pos: 39.5,-10.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6612 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-10.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6613 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-10.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6624 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-6.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6625 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-6.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6626 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-6.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6774 - components: - - pos: 56.5,26.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6818 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6835 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6859 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6915 - components: - - pos: 10.5,-40.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6916 - components: - - pos: 10.5,-39.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6917 - components: - - pos: 10.5,-35.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6918 - components: - - rot: 3.141592653589793 rad - pos: 9.5,7.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6919 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-2.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6946 - components: - - pos: 18.5,9.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6947 - components: - - pos: 18.5,8.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6948 - components: - - pos: 18.5,7.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7006 - components: - - pos: 27.5,36.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7410 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-5.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7411 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-6.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7413 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-8.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7416 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-9.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7418 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-10.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7419 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-11.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7420 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-12.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7421 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7422 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-12.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7423 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-11.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7424 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-10.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7425 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-9.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7426 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-8.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7427 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-7.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7429 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-5.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7430 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-4.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7431 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-3.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7432 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-2.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7433 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-13.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7434 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-13.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7435 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-13.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7436 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-13.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7437 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-13.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7438 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-13.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7439 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-13.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7440 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-13.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7441 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-14.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7442 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-14.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7443 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-14.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7444 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-14.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7445 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-14.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7446 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-14.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7447 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-14.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7448 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-14.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7449 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-14.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7450 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-14.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7578 - components: - - rot: 3.141592653589793 rad - pos: 62.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7670 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7758 - components: - - rot: 1.5707963267948966 rad - pos: 55.5,24.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7789 - components: - - rot: 1.5707963267948966 rad - pos: 58.5,24.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7790 - components: - - rot: 1.5707963267948966 rad - pos: 54.5,24.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8012 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-3.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8013 - components: - - pos: 12.5,-2.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8014 - components: - - pos: 12.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8015 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-3.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8018 - components: - - pos: 16.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8019 - components: - - pos: 16.5,-0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8020 - components: - - pos: 16.5,-1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8021 - components: - - pos: 16.5,-2.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8022 - components: - - pos: 16.5,-3.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8179 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,20.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8180 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,20.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8181 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,20.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8183 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,20.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8184 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,20.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8186 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,20.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8187 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,20.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8188 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,20.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8189 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,20.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8190 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,20.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8191 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,21.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8193 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,21.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8194 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,21.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8195 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,21.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8196 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,21.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8200 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,22.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8201 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,22.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8209 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,21.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8210 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,21.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8211 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,21.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8212 - components: - - pos: 9.5,20.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8213 - components: - - pos: 8.5,24.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8214 - components: - - pos: 8.5,23.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8215 - components: - - pos: 8.5,22.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8216 - components: - - pos: 8.5,21.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8217 - components: - - pos: 8.5,20.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8218 - components: - - pos: 8.5,19.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8219 - components: - - pos: 8.5,18.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8223 - components: - - pos: 13.5,24.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8224 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,25.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8225 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,25.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8226 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,25.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8227 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,25.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8295 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,41.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8297 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,41.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8298 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,41.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8300 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,37.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8303 - components: - - pos: 27.5,43.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8308 - components: - - pos: 27.5,37.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8310 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,42.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8318 - components: - - pos: 27.5,38.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8321 - components: - - pos: 27.5,42.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8322 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,46.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8549 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,23.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8550 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,23.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8551 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,23.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8552 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,23.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8553 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,23.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8554 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,23.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8556 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,24.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8557 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,24.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8558 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,24.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8559 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,24.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8560 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,24.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8576 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,23.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8577 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,23.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8578 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,23.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8579 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,23.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8580 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,23.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8582 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,23.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8583 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,23.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8586 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,24.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8587 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,24.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8588 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,24.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8590 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,24.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8591 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,24.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8593 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,24.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8600 - components: - - rot: 3.141592653589793 rad - pos: 40.5,24.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8604 - components: - - rot: 3.141592653589793 rad - pos: 40.5,25.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8605 - components: - - rot: 3.141592653589793 rad - pos: 39.5,25.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8606 - components: - - rot: 3.141592653589793 rad - pos: 39.5,26.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8611 - components: - - pos: 33.5,22.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8612 - components: - - pos: 33.5,21.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8613 - components: - - pos: 33.5,20.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8614 - components: - - pos: 35.5,23.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8615 - components: - - pos: 35.5,22.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8616 - components: - - pos: 35.5,21.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8617 - components: - - pos: 35.5,20.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8618 - components: - - pos: 35.5,19.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8619 - components: - - pos: 35.5,18.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8622 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,19.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8623 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,19.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8624 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,19.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8625 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,19.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8626 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,17.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8627 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,17.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8631 - components: - - rot: 3.141592653589793 rad - pos: 33.5,25.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8632 - components: - - rot: 3.141592653589793 rad - pos: 33.5,26.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8633 - components: - - rot: 3.141592653589793 rad - pos: 33.5,27.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8634 - components: - - rot: 3.141592653589793 rad - pos: 33.5,28.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8635 - components: - - rot: 3.141592653589793 rad - pos: 33.5,29.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8636 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,30.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8637 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,30.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8654 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,30.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8655 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,30.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8660 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,30.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8661 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,30.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8662 - components: - - pos: 40.5,31.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8675 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,33.5 - parent: 2 - type: Transform - - uid: 8676 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8678 - components: - - rot: 3.141592653589793 rad - pos: 42.5,15.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8680 - components: - - rot: 3.141592653589793 rad - pos: 42.5,16.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8681 - components: - - rot: 3.141592653589793 rad - pos: 41.5,16.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8683 - components: - - rot: 3.141592653589793 rad - pos: 41.5,17.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8702 - components: - - pos: 56.5,33.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9348 - components: - - pos: 56.5,32.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9534 - components: - - pos: 26.5,44.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9535 - components: - - pos: 26.5,43.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9537 - components: - - pos: 26.5,41.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9538 - components: - - pos: 26.5,40.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9539 - components: - - pos: 26.5,39.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9540 - components: - - pos: 26.5,38.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9541 - components: - - pos: 25.5,36.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9542 - components: - - pos: 25.5,35.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9543 - components: - - pos: 25.5,34.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9544 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,45.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9548 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,45.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9549 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,45.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9550 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,45.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9551 - components: - - pos: 22.5,44.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9552 - components: - - pos: 22.5,43.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9553 - components: - - pos: 22.5,42.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9561 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,35.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9562 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,35.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9563 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,35.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9564 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,35.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9566 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,35.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9567 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,35.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9568 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,35.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9575 - components: - - rot: 3.141592653589793 rad - pos: 18.5,37.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9576 - components: - - rot: 3.141592653589793 rad - pos: 18.5,38.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9577 - components: - - rot: 3.141592653589793 rad - pos: 18.5,39.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9578 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,36.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9579 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,36.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9580 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,36.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9629 - components: - - rot: 3.141592653589793 rad - pos: 44.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9630 - components: - - rot: 3.141592653589793 rad - pos: 44.5,2.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9631 - components: - - rot: 3.141592653589793 rad - pos: 47.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9632 - components: - - rot: 3.141592653589793 rad - pos: 47.5,0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9633 - components: - - rot: 3.141592653589793 rad - pos: 47.5,1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9634 - components: - - rot: 3.141592653589793 rad - pos: 47.5,2.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9726 - components: - - pos: 56.5,31.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10045 - components: - - rot: 1.5707963267948966 rad - pos: 52.5,24.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10046 - components: - - rot: 1.5707963267948966 rad - pos: 53.5,24.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10049 - components: - - rot: 3.141592653589793 rad - pos: 59.5,23.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10050 - components: - - rot: 3.141592653589793 rad - pos: 59.5,22.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10051 - components: - - rot: 3.141592653589793 rad - pos: 59.5,21.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10052 - components: - - rot: 3.141592653589793 rad - pos: 59.5,20.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10053 - components: - - rot: 3.141592653589793 rad - pos: 59.5,19.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10055 - components: - - rot: 3.141592653589793 rad - pos: 59.5,17.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10056 - components: - - rot: 3.141592653589793 rad - pos: 59.5,16.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10058 - components: - - rot: 1.5707963267948966 rad - pos: 58.5,14.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10059 - components: - - rot: 1.5707963267948966 rad - pos: 57.5,14.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10060 - components: - - rot: 1.5707963267948966 rad - pos: 56.5,14.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10061 - components: - - rot: 1.5707963267948966 rad - pos: 55.5,14.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10063 - components: - - rot: 1.5707963267948966 rad - pos: 53.5,14.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10064 - components: - - rot: 1.5707963267948966 rad - pos: 52.5,14.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10065 - components: - - rot: 1.5707963267948966 rad - pos: 51.5,14.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10066 - components: - - rot: 1.5707963267948966 rad - pos: 50.5,14.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10067 - components: - - rot: 1.5707963267948966 rad - pos: 49.5,14.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10068 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,14.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10076 - components: - - pos: 79.5,-6.5 - parent: 2 - type: Transform - - uid: 10079 - components: - - pos: 57.5,-3.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10115 - components: - - rot: 1.5707963267948966 rad - pos: 57.5,24.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10117 - components: - - pos: 77.5,0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10127 - components: - - pos: 55.5,-8.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10134 - components: - - pos: 57.5,-5.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10145 - components: - - pos: 1.5,-9.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10146 - components: - - pos: 1.5,-8.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10147 - components: - - pos: 1.5,-7.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10148 - components: - - pos: 1.5,-6.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10149 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-5.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10150 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-5.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10151 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-4.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10152 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-4.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10153 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-2.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10154 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-3.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10155 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-4.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10156 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-5.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10158 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-7.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10159 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-8.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10160 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-9.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10161 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-10.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10162 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-11.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10164 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-11.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10165 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-11.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10166 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-11.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10167 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-11.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10168 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-11.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10175 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-10.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10176 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-10.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10177 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-10.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10183 - components: - - pos: 4.5,-0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10184 - components: - - pos: 4.5,-1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10185 - components: - - pos: 4.5,-2.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10186 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-7.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10187 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-7.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10188 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-7.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10189 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-2.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10190 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10191 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10192 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-7.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10193 - components: - - pos: 8.5,-6.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10194 - components: - - pos: 8.5,-5.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10195 - components: - - pos: 8.5,-4.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10196 - components: - - pos: 8.5,-3.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10197 - components: - - pos: 8.5,-2.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10198 - components: - - pos: 8.5,-1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10199 - components: - - pos: 8.5,-0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10209 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-11.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10210 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-11.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10211 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-11.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10212 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-10.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10213 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-10.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10242 - components: - - rot: 3.141592653589793 rad - pos: 26.5,3.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10243 - components: - - rot: 3.141592653589793 rad - pos: 26.5,4.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10244 - components: - - rot: 3.141592653589793 rad - pos: 26.5,12.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10245 - components: - - rot: 3.141592653589793 rad - pos: 26.5,11.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10247 - components: - - rot: 3.141592653589793 rad - pos: 26.5,9.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10323 - components: - - pos: 54.5,13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10324 - components: - - pos: 54.5,12.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10325 - components: - - pos: 54.5,11.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10326 - components: - - rot: -1.5707963267948966 rad - pos: 53.5,10.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10327 - components: - - rot: -1.5707963267948966 rad - pos: 52.5,10.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10328 - components: - - rot: -1.5707963267948966 rad - pos: 51.5,10.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10329 - components: - - rot: -1.5707963267948966 rad - pos: 50.5,10.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10330 - components: - - rot: -1.5707963267948966 rad - pos: 49.5,10.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10332 - components: - - rot: 3.141592653589793 rad - pos: 47.5,11.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10333 - components: - - rot: 3.141592653589793 rad - pos: 47.5,12.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10337 - components: - - pos: 62.5,13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10338 - components: - - pos: 62.5,12.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10339 - components: - - pos: 62.5,11.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10340 - components: - - rot: -1.5707963267948966 rad - pos: 61.5,14.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10341 - components: - - rot: -1.5707963267948966 rad - pos: 60.5,14.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10342 - components: - - rot: -1.5707963267948966 rad - pos: 63.5,14.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10343 - components: - - rot: -1.5707963267948966 rad - pos: 64.5,14.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10344 - components: - - rot: -1.5707963267948966 rad - pos: 65.5,14.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10345 - components: - - rot: -1.5707963267948966 rad - pos: 66.5,14.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10348 - components: - - rot: -1.5707963267948966 rad - pos: 58.5,18.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10349 - components: - - rot: -1.5707963267948966 rad - pos: 57.5,18.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10350 - components: - - rot: -1.5707963267948966 rad - pos: 56.5,18.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10353 - components: - - rot: -1.5707963267948966 rad - pos: 60.5,24.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10354 - components: - - rot: -1.5707963267948966 rad - pos: 61.5,24.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10359 - components: - - pos: 46.5,17.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10360 - components: - - rot: -1.5707963267948966 rad - pos: 47.5,18.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10361 - components: - - rot: -1.5707963267948966 rad - pos: 48.5,18.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10362 - components: - - rot: -1.5707963267948966 rad - pos: 49.5,18.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10367 - components: - - rot: 1.5707963267948966 rad - pos: 51.5,19.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10368 - components: - - rot: 1.5707963267948966 rad - pos: 52.5,19.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10369 - components: - - rot: 1.5707963267948966 rad - pos: 53.5,19.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10370 - components: - - rot: 1.5707963267948966 rad - pos: 54.5,19.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10371 - components: - - rot: 1.5707963267948966 rad - pos: 55.5,19.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10372 - components: - - rot: 1.5707963267948966 rad - pos: 56.5,19.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10373 - components: - - rot: 1.5707963267948966 rad - pos: 57.5,19.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10376 - components: - - rot: 3.141592653589793 rad - pos: 58.5,17.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10377 - components: - - rot: 3.141592653589793 rad - pos: 58.5,16.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10378 - components: - - rot: 3.141592653589793 rad - pos: 58.5,15.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10379 - components: - - rot: 3.141592653589793 rad - pos: 58.5,14.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10385 - components: - - pos: 63.5,14.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10386 - components: - - pos: 63.5,12.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10387 - components: - - pos: 63.5,11.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10388 - components: - - rot: -1.5707963267948966 rad - pos: 64.5,15.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10389 - components: - - rot: -1.5707963267948966 rad - pos: 65.5,15.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10390 - components: - - rot: -1.5707963267948966 rad - pos: 66.5,15.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10391 - components: - - rot: -1.5707963267948966 rad - pos: 62.5,13.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10392 - components: - - rot: -1.5707963267948966 rad - pos: 61.5,13.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10393 - components: - - rot: -1.5707963267948966 rad - pos: 60.5,13.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10394 - components: - - rot: -1.5707963267948966 rad - pos: 59.5,13.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10395 - components: - - rot: -1.5707963267948966 rad - pos: 56.5,13.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10396 - components: - - rot: 3.141592653589793 rad - pos: 55.5,12.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10397 - components: - - rot: 3.141592653589793 rad - pos: 55.5,11.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10398 - components: - - rot: 3.141592653589793 rad - pos: 55.5,10.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10405 - components: - - pos: 58.5,20.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10406 - components: - - pos: 58.5,21.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10407 - components: - - pos: 58.5,22.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10408 - components: - - rot: -1.5707963267948966 rad - pos: 59.5,23.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10409 - components: - - rot: -1.5707963267948966 rad - pos: 60.5,23.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10410 - components: - - rot: -1.5707963267948966 rad - pos: 61.5,23.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10428 - components: - - pos: 63.5,24.5 - parent: 2 - type: Transform - - uid: 10429 - components: - - pos: 63.5,25.5 - parent: 2 - type: Transform - - uid: 10430 - components: - - pos: 63.5,26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10431 - components: - - pos: 63.5,27.5 - parent: 2 - type: Transform - - uid: 10432 - components: - - pos: 64.5,27.5 - parent: 2 - type: Transform - - uid: 10433 - components: - - pos: 64.5,26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10434 - components: - - pos: 64.5,25.5 - parent: 2 - type: Transform - - uid: 10435 - components: - - pos: 64.5,24.5 - parent: 2 - type: Transform - - uid: 10640 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,10.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10641 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,10.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10642 - components: - - rot: 3.141592653589793 rad - pos: 29.5,9.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10646 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,6.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10647 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,6.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10648 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,6.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10649 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,7.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10650 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,7.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10651 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,7.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11278 - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11281 - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11282 - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11290 - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11305 - components: - - pos: 62.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11306 - components: - - pos: 62.5,0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11313 - components: - - rot: -1.5707963267948966 rad - pos: 54.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11314 - components: - - rot: -1.5707963267948966 rad - pos: 53.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11315 - components: - - rot: -1.5707963267948966 rad - pos: 52.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11318 - components: - - rot: 1.5707963267948966 rad - pos: 64.5,1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11326 - components: - - rot: 1.5707963267948966 rad - pos: 66.5,1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11327 - components: - - rot: 1.5707963267948966 rad - pos: 67.5,1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11328 - components: - - rot: 1.5707963267948966 rad - pos: 68.5,1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11330 - components: - - rot: 1.5707963267948966 rad - pos: 69.5,1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11331 - components: - - rot: 1.5707963267948966 rad - pos: 70.5,1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11336 - components: - - rot: 1.5707963267948966 rad - pos: 72.5,1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11337 - components: - - rot: 1.5707963267948966 rad - pos: 73.5,1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11338 - components: - - rot: 1.5707963267948966 rad - pos: 74.5,1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11339 - components: - - rot: 1.5707963267948966 rad - pos: 75.5,1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11340 - components: - - rot: 1.5707963267948966 rad - pos: 76.5,1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11341 - components: - - rot: 1.5707963267948966 rad - pos: 62.5,2.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11342 - components: - - rot: 1.5707963267948966 rad - pos: 63.5,2.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11343 - components: - - rot: 1.5707963267948966 rad - pos: 64.5,2.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11344 - components: - - rot: 1.5707963267948966 rad - pos: 65.5,2.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11345 - components: - - rot: 1.5707963267948966 rad - pos: 66.5,2.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11346 - components: - - rot: 1.5707963267948966 rad - pos: 67.5,2.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11347 - components: - - rot: 1.5707963267948966 rad - pos: 68.5,2.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11348 - components: - - rot: 1.5707963267948966 rad - pos: 69.5,2.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11350 - components: - - rot: 1.5707963267948966 rad - pos: 70.5,2.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11352 - components: - - rot: 1.5707963267948966 rad - pos: 71.5,2.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11356 - components: - - rot: 1.5707963267948966 rad - pos: 73.5,2.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11357 - components: - - rot: 1.5707963267948966 rad - pos: 74.5,2.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11358 - components: - - rot: 1.5707963267948966 rad - pos: 75.5,2.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11359 - components: - - rot: 1.5707963267948966 rad - pos: 76.5,2.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11361 - components: - - pos: 77.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11362 - components: - - pos: 77.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11363 - components: - - pos: 77.5,-2.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11364 - components: - - pos: 77.5,-3.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11517 - components: - - rot: 3.141592653589793 rad - pos: 66.5,-8.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11518 - components: - - rot: 3.141592653589793 rad - pos: 66.5,-7.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11519 - components: - - rot: 3.141592653589793 rad - pos: 65.5,-5.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11523 - components: - - rot: 3.141592653589793 rad - pos: 65.5,-4.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11524 - components: - - rot: 3.141592653589793 rad - pos: 65.5,-3.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11525 - components: - - rot: 3.141592653589793 rad - pos: 65.5,-2.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11528 - components: - - rot: 3.141592653589793 rad - pos: 65.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11529 - components: - - rot: 3.141592653589793 rad - pos: 65.5,0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11530 - components: - - rot: 1.5707963267948966 rad - pos: 67.5,-9.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11581 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-47.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11699 - components: - - rot: 1.5707963267948966 rad - pos: 68.5,-9.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11700 - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-9.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11701 - components: - - rot: 1.5707963267948966 rad - pos: 70.5,-9.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11702 - components: - - pos: 71.5,-8.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11703 - components: - - pos: 71.5,-7.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11704 - components: - - pos: 71.5,-6.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11705 - components: - - pos: 71.5,-5.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11706 - components: - - pos: 71.5,-4.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11711 - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-5.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11712 - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-5.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11713 - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-5.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11714 - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-5.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11716 - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-5.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11717 - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-5.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11718 - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-5.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11723 - components: - - rot: 1.5707963267948966 rad - pos: 65.5,-4.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11724 - components: - - pos: 66.5,-3.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11725 - components: - - pos: 66.5,-2.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11727 - components: - - pos: 72.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11728 - components: - - pos: 72.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11738 - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-4.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11739 - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-4.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11740 - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-4.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11741 - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-5.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11742 - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-5.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11764 - components: - - rot: 1.5707963267948966 rad - pos: 58.5,0.5 - parent: 2 - type: Transform - - uid: 11788 - components: - - rot: 3.141592653589793 rad - pos: 57.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11790 - components: - - pos: 61.5,-0.5 - parent: 2 - type: Transform - - uid: 11796 - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-1.5 - parent: 2 - type: Transform - - uid: 11925 - components: - - pos: 61.5,-3.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11926 - components: - - pos: 61.5,-4.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11927 - components: - - pos: 61.5,-5.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11928 - components: - - pos: 61.5,-6.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11929 - components: - - pos: 61.5,-7.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11930 - components: - - pos: 61.5,-8.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11931 - components: - - pos: 61.5,-9.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11932 - components: - - pos: 60.5,-6.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11933 - components: - - pos: 60.5,-7.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11934 - components: - - pos: 60.5,-8.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11935 - components: - - pos: 60.5,-9.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11949 - components: - - rot: 3.141592653589793 rad - pos: 71.5,2.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11950 - components: - - rot: 3.141592653589793 rad - pos: 71.5,3.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11951 - components: - - rot: 3.141592653589793 rad - pos: 71.5,4.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11952 - components: - - rot: 3.141592653589793 rad - pos: 72.5,3.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12859 - components: - - rot: 3.141592653589793 rad - pos: 41.5,-49.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12860 - components: - - rot: 3.141592653589793 rad - pos: 43.5,-49.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12867 - components: - - pos: 43.5,-50.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12868 - components: - - pos: 41.5,-50.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12879 - components: - - rot: 3.141592653589793 rad - pos: 44.5,-44.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12880 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-45.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12887 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-44.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 12902 - components: - - rot: 3.141592653589793 rad - pos: 49.5,-45.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 12903 - components: - - rot: 3.141592653589793 rad - pos: 47.5,-45.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor -- proto: GasPipeTJunction - entities: - - uid: 14 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-28.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 39 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,14.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 347 - components: - - pos: 18.5,15.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 355 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-34.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 356 - components: - - pos: 13.5,-35.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 362 - components: - - pos: 22.5,13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 426 - components: - - pos: 9.5,10.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 434 - components: - - pos: 11.5,9.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 756 - components: - - rot: 3.141592653589793 rad - pos: 27.5,13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 892 - components: - - pos: 19.5,13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1036 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-34.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1042 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-24.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1148 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1215 - components: - - pos: 43.5,-48.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 1221 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-28.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 1225 - components: - - pos: 43.5,-44.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 1234 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-46.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 1257 - components: - - pos: 41.5,-44.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 1259 - components: - - pos: 26.5,-28.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1260 - components: - - rot: 3.141592653589793 rad - pos: 28.5,-36.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1261 - components: - - pos: 22.5,-36.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1262 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-35.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1263 - components: - - pos: 20.5,-35.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1304 - components: - - pos: 24.5,-35.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1372 - components: - - pos: 26.5,-27.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1516 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-17.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1529 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-36.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1619 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-17.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1653 - components: - - pos: 33.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1690 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-35.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1692 - components: - - pos: 21.5,-28.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1694 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-32.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1695 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-31.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1717 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1718 - components: - - pos: 40.5,15.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1806 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,15.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1813 - components: - - rot: 3.141592653589793 rad - pos: 3.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1821 - components: - - pos: 25.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 2162 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2383 - components: - - rot: 3.141592653589793 rad - pos: 39.5,-26.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2529 - components: - - rot: 3.141592653589793 rad - pos: 32.5,42.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3691 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,8.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3694 - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-4.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3964 - components: - - rot: 3.141592653589793 rad - pos: 38.5,-48.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4002 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,7.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4011 - components: - - rot: 3.141592653589793 rad - pos: 25.5,-27.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4029 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-23.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4036 - components: - - rot: 3.141592653589793 rad - pos: 26.5,20.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4037 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,20.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4039 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-23.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4044 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-24.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4059 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-28.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4089 - components: - - pos: 16.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4126 - components: - - pos: 14.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4199 - components: - - pos: 27.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4236 - components: - - rot: 3.141592653589793 rad - pos: 42.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4282 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-24.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4367 - components: - - pos: 36.5,-24.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4368 - components: - - pos: 35.5,-24.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4494 - components: - - pos: 47.5,-47.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4496 - components: - - pos: 48.5,-47.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4497 - components: - - pos: 45.5,-47.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4499 - components: - - pos: 46.5,-47.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4768 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,4.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5019 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,40.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5035 - components: - - pos: 57.5,0.5 - parent: 2 - type: Transform - - uid: 5041 - components: - - pos: 59.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5076 - components: - - pos: 25.5,37.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5099 - components: - - rot: 3.141592653589793 rad - pos: 56.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5104 - components: - - pos: 45.5,15.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5112 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-27.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5113 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-11.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5114 - components: - - pos: 26.5,13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5115 - components: - - rot: 3.141592653589793 rad - pos: 26.5,1.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5118 - components: - - pos: 9.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5138 - components: - - pos: 8.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5160 - components: - - pos: 4.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5161 - components: - - pos: -0.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5162 - components: - - rot: 3.141592653589793 rad - pos: 63.5,1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5163 - components: - - pos: 30.5,15.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5165 - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5168 - components: - - rot: 3.141592653589793 rad - pos: 71.5,1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5170 - components: - - rot: -1.5707963267948966 rad - pos: 55.5,0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5171 - components: - - pos: 61.5,-2.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5177 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,7.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5178 - components: - - pos: 1.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5179 - components: - - rot: 3.141592653589793 rad - pos: 41.5,13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5180 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-7.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5199 - components: - - rot: 1.5707963267948966 rad - pos: 56.5,25.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5233 - components: - - rot: 3.141592653589793 rad - pos: 47.5,-1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5237 - components: - - rot: 3.141592653589793 rad - pos: 32.5,13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5238 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,23.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5239 - components: - - rot: 3.141592653589793 rad - pos: 41.5,15.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5241 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,24.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5242 - components: - - pos: 26.5,23.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5284 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,21.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6423 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,41.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6552 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-6.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6555 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-9.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6558 - components: - - pos: 34.5,-6.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6565 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-0.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6578 - components: - - pos: 39.5,-3.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6584 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-10.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6588 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-10.5 - parent: 2 - type: Transform - - uid: 6601 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-4.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6611 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-10.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6819 - components: - - rot: -1.5707963267948966 rad - pos: 47.5,13.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7274 - components: - - rot: 3.141592653589793 rad - pos: 60.5,-1.5 - parent: 2 - type: Transform - - uid: 7409 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-4.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7428 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-6.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7802 - components: - - pos: 50.5,24.5 - parent: 2 - type: Transform - - uid: 8182 - components: - - rot: 3.141592653589793 rad - pos: 23.5,21.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8185 - components: - - rot: 3.141592653589793 rad - pos: 19.5,20.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8192 - components: - - rot: 3.141592653589793 rad - pos: 22.5,20.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8197 - components: - - rot: 3.141592653589793 rad - pos: 18.5,21.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8207 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,21.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8208 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,25.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8309 - components: - - pos: 27.5,46.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8555 - components: - - rot: 3.141592653589793 rad - pos: 33.5,24.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8561 - components: - - pos: 33.5,23.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8562 - components: - - pos: 34.5,23.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8563 - components: - - rot: 3.141592653589793 rad - pos: 34.5,24.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8594 - components: - - pos: 35.5,24.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9367 - components: - - rot: 3.141592653589793 rad - pos: 59.5,-1.5 - parent: 2 - type: Transform - - uid: 9533 - components: - - pos: 26.5,45.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9536 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,42.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9559 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,35.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9560 - components: - - rot: 3.141592653589793 rad - pos: 26.5,35.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9573 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,36.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10044 - components: - - rot: 1.5707963267948966 rad - pos: 56.5,30.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10047 - components: - - rot: 3.141592653589793 rad - pos: 56.5,24.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10048 - components: - - pos: 59.5,24.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10057 - components: - - rot: 3.141592653589793 rad - pos: 59.5,14.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10062 - components: - - pos: 54.5,14.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10116 - components: - - rot: 1.5707963267948966 rad - pos: 59.5,15.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10141 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10142 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-5.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10143 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-11.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10144 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-10.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10157 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-6.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10174 - components: - - pos: 7.5,-11.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10246 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,10.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10336 - components: - - pos: 62.5,14.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10357 - components: - - rot: 3.141592653589793 rad - pos: 48.5,10.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10363 - components: - - rot: -1.5707963267948966 rad - pos: 50.5,18.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10380 - components: - - rot: 3.141592653589793 rad - pos: 58.5,13.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10381 - components: - - rot: 3.141592653589793 rad - pos: 57.5,13.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10383 - components: - - rot: -1.5707963267948966 rad - pos: 63.5,13.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10404 - components: - - pos: 58.5,23.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11360 - components: - - pos: 77.5,1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11510 - components: - - pos: 65.5,1.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11511 - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-9.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11513 - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-6.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11580 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-48.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11710 - components: - - rot: -1.5707963267948966 rad - pos: 64.5,-5.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11715 - components: - - pos: 56.5,-4.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11745 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,6.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11766 - components: - - rot: 3.141592653589793 rad - pos: 58.5,-1.5 - parent: 2 - type: Transform - - uid: 12863 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-51.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12864 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-52.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12865 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-52.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12866 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-51.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12876 - components: - - rot: 3.141592653589793 rad - pos: 42.5,-43.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12877 - components: - - rot: 3.141592653589793 rad - pos: 43.5,-43.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12878 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-43.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12886 - components: - - pos: 47.5,-44.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 12900 - components: - - pos: 48.5,-44.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 12901 - components: - - rot: 3.141592653589793 rad - pos: 48.5,-46.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 12990 - components: - - rot: 3.141592653589793 rad - pos: 37.5,-48.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound -- proto: GasPort - entities: - - uid: 4010 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-23.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4034 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-24.5 - parent: 2 - type: Transform - - uid: 4038 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-23.5 - parent: 2 - type: Transform - - uid: 4040 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-24.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4362 - components: - - rot: 3.141592653589793 rad - pos: 36.5,-25.5 - parent: 2 - type: Transform - - uid: 4363 - components: - - rot: 3.141592653589793 rad - pos: 37.5,-25.5 - parent: 2 - type: Transform - - uid: 4913 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-40.5 - parent: 2 - type: Transform - - uid: 4920 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-40.5 - parent: 2 - type: Transform - - uid: 4921 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-40.5 - parent: 2 - type: Transform - - uid: 4922 - components: - - pos: 43.5,-39.5 - parent: 2 - type: Transform - - uid: 4923 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-40.5 - parent: 2 - type: Transform - - uid: 4925 - components: - - rot: 3.141592653589793 rad - pos: 45.5,-40.5 - parent: 2 - type: Transform - - uid: 4926 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-39.5 - parent: 2 - type: Transform - - uid: 4927 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-39.5 - parent: 2 - type: Transform - - uid: 6480 - components: - - pos: 37.5,-42.5 - parent: 2 - type: Transform - - uid: 7882 - components: - - pos: 38.5,-42.5 - parent: 2 - type: Transform - - uid: 10420 - components: - - rot: 3.141592653589793 rad - pos: 63.5,22.5 - parent: 2 - type: Transform - - uid: 10425 - components: - - rot: 3.141592653589793 rad - pos: 64.5,22.5 - parent: 2 - type: Transform - - uid: 12871 - components: - - pos: 41.5,-42.5 - parent: 2 - type: Transform - - uid: 12872 - components: - - pos: 42.5,-42.5 - parent: 2 - type: Transform - - uid: 12873 - components: - - pos: 43.5,-42.5 - parent: 2 - type: Transform - - uid: 12874 - components: - - pos: 44.5,-42.5 - parent: 2 - type: Transform -- proto: GasPressurePump - entities: - - uid: 670 - components: - - pos: 31.5,-27.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1942 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-30.5 - parent: 2 - type: Transform - - uid: 2781 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-28.5 - parent: 2 - type: Transform - - uid: 4030 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-24.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4033 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-23.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4128 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-34.5 - parent: 2 - type: Transform - - uid: 4130 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-32.5 - parent: 2 - type: Transform - - uid: 4145 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-26.5 - parent: 2 - type: Transform - - uid: 4178 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-24.5 - parent: 2 - type: Transform - - uid: 4361 - components: - - rot: 3.141592653589793 rad - pos: 35.5,-25.5 - parent: 2 - type: Transform - - uid: 5037 - components: - - rot: 3.141592653589793 rad - pos: 57.5,-0.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6583 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-10.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7803 - components: - - rot: -1.5707963267948966 rad - pos: 51.5,24.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7883 - components: - - pos: 37.5,-43.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10423 - components: - - rot: 3.141592653589793 rad - pos: 63.5,23.5 - parent: 2 - type: Transform - - uid: 10424 - components: - - pos: 64.5,23.5 - parent: 2 - type: Transform - - uid: 11577 - components: - - pos: 38.5,-43.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor -- proto: GasThermoMachineFreezer - entities: - - uid: 4364 - components: - - rot: 3.141592653589793 rad - pos: 34.5,-25.5 - parent: 2 - type: Transform - - uid: 4912 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-40.5 - parent: 2 - type: Transform - - uid: 7984 - components: - - rot: 3.141592653589793 rad - pos: 50.5,23.5 - parent: 2 - type: Transform - - uid: 11775 - components: - - pos: 59.5,-0.5 - parent: 2 - type: Transform - - uid: 12989 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-48.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor -- proto: GasThermoMachineFreezerEnabled - entities: - - uid: 1156 - components: - - pos: 30.5,-9.5 - parent: 2 - type: Transform - - targetTemperature: 0 - type: GasThermoMachine -- proto: GasThermoMachineHeater - entities: - - uid: 1216 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-44.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4906 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-40.5 - parent: 2 - type: Transform -- proto: GasValve - entities: - - uid: 1233 - components: - - pos: 42.5,-47.5 - parent: 2 - type: Transform - - open: False - type: GasValve - - enabled: False - type: AmbientSound - - color: '#03FCD3FF' - type: AtmosPipeColor - - uid: 4150 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-35.5 - parent: 2 - type: Transform - - open: False - type: GasValve - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4250 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-48.5 - parent: 2 - type: Transform - - open: False - type: GasValve - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11586 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-47.5 - parent: 2 - type: Transform - - open: False - type: GasValve - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor -- proto: GasVentPump - entities: - - uid: 408 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-29.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1560 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-17.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1520 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 1625 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-32.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1017 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 2393 - components: - - pos: 30.5,-27.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 3692 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,8.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12484 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4027 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,13.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 138 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4035 - components: - - rot: 3.141592653589793 rad - pos: 19.5,6.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 195 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4460 - components: - - rot: 3.141592653589793 rad - pos: 32.5,-40.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 170 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4465 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-38.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 4551 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-36.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11990 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5103 - components: - - pos: 41.5,14.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12486 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5189 - components: - - rot: 3.141592653589793 rad - pos: 57.5,-9.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11731 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5422 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-40.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5533 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,42.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5678 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-36.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 5680 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 5964 - components: - - rot: 3.141592653589793 rad - pos: 11.5,5.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 6158 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6570 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-6.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 6682 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6590 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-12.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6593 - components: - - rot: 3.141592653589793 rad - pos: 35.5,-11.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 6632 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6608 - components: - - rot: 3.141592653589793 rad - pos: 39.5,-11.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 6632 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6609 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-4.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 360 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6620 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,0.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 5020 - - 5077 - - 8316 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6627 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-3.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6640 - components: - - pos: 46.5,-0.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11508 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6778 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,4.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 8011 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6804 - components: - - pos: 26.5,-16.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6927 - components: - - rot: 3.141592653589793 rad - pos: 22.5,12.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12473 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 6951 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,9.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12447 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7469 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-14.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 7839 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 7801 - components: - - rot: 1.5707963267948966 rad - pos: 49.5,24.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 7838 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-6.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 2124 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8009 - components: - - pos: 12.5,0.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 8011 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8016 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-3.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 10204 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8220 - components: - - rot: 3.141592653589793 rad - pos: 9.5,19.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8222 - components: - - pos: 9.5,22.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 8239 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8236 - components: - - pos: 19.5,21.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12520 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8240 - components: - - pos: 26.5,21.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8242 - components: - - pos: 22.5,21.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8296 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,46.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12537 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8301 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,41.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8344 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,42.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8575 - components: - - pos: 34.5,25.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12528 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8596 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,24.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8597 - components: - - rot: 3.141592653589793 rad - pos: 39.5,23.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12530 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8607 - components: - - pos: 39.5,27.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8629 - components: - - pos: 38.5,18.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12528 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8673 - components: - - pos: 40.5,32.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8684 - components: - - pos: 42.5,17.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12532 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8700 - components: - - rot: -1.5707963267948966 rad - pos: 57.5,30.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 8701 - components: - - pos: 56.5,34.5 - parent: 2 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9358 - components: - - pos: 32.5,14.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9558 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,39.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12539 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9570 - components: - - pos: 26.5,36.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 9587 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9581 - components: - - pos: 18.5,40.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9582 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,36.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 9635 - components: - - pos: 47.5,3.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 9637 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10163 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-12.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10170 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-12.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10171 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-6.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 10203 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10172 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-5.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 10201 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10173 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10178 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-10.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 10202 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10214 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-11.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 10207 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10248 - components: - - rot: 3.141592653589793 rad - pos: 26.5,8.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 10250 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10331 - components: - - pos: 48.5,11.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 5101 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10346 - components: - - rot: 3.141592653589793 rad - pos: 62.5,10.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12562 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10347 - components: - - rot: -1.5707963267948966 rad - pos: 67.5,14.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 182 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10351 - components: - - rot: 1.5707963267948966 rad - pos: 55.5,18.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12548 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10352 - components: - - rot: -1.5707963267948966 rad - pos: 57.5,25.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1647 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10355 - components: - - rot: -1.5707963267948966 rad - pos: 62.5,24.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 10419 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10356 - components: - - rot: -1.5707963267948966 rad - pos: 60.5,18.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 2296 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10358 - components: - - rot: -1.5707963267948966 rad - pos: 60.5,15.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 151 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 10643 - components: - - rot: 3.141592653589793 rad - pos: 29.5,8.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 10653 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11365 - components: - - rot: 3.141592653589793 rad - pos: 77.5,-4.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12504 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11366 - components: - - rot: -1.5707963267948966 rad - pos: 78.5,1.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12163 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11514 - components: - - rot: 1.5707963267948966 rad - pos: 64.5,-1.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11515 - components: - - pos: 66.5,-5.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11730 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11516 - components: - - rot: 3.141592653589793 rad - pos: 66.5,-10.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11709 - components: - - pos: 71.5,-3.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12503 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11743 - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-4.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12488 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11924 - components: - - rot: 3.141592653589793 rad - pos: 56.5,-5.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11937 - components: - - rot: 3.141592653589793 rad - pos: 61.5,-10.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11945 - components: - - pos: 63.5,2.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12152 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 11956 - components: - - pos: 71.5,5.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12506 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor -- proto: GasVentScrubber - entities: - - uid: 1305 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-32.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1017 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 1324 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-41.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 3475 - components: - - pos: 79.5,-5.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 3693 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,6.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12484 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4092 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,15.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 138 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4183 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,15.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12473 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4447 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-39.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 170 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4464 - components: - - rot: 3.141592653589793 rad - pos: 22.5,-38.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4552 - components: - - pos: 28.5,-35.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11990 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4553 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-28.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5679 - components: - - pos: 13.5,-33.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 5680 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 5968 - components: - - rot: 3.141592653589793 rad - pos: 9.5,5.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 6158 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6571 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-6.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 6682 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6595 - components: - - rot: 3.141592653589793 rad - pos: 33.5,-11.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 6632 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6610 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-9.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 6632 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6614 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-10.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6621 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,0.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 5020 - - 5077 - - 8316 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6622 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-6.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 360 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6628 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-0.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11508 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6629 - components: - - rot: 3.141592653589793 rad - pos: 34.5,-7.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6805 - components: - - pos: 26.5,-9.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6949 - components: - - rot: 3.141592653589793 rad - pos: 18.5,6.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 195 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 6950 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,10.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12447 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7472 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-13.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 7839 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7708 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,7.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 8011 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7837 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-4.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 2124 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8010 - components: - - rot: 3.141592653589793 rad - pos: 14.5,0.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 8011 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8017 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-4.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 10204 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8221 - components: - - rot: 3.141592653589793 rad - pos: 8.5,17.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8229 - components: - - pos: 8.5,26.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 8239 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8235 - components: - - pos: 18.5,22.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12520 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8243 - components: - - pos: 23.5,22.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8564 - components: - - rot: 3.141592653589793 rad - pos: 34.5,22.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12528 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8595 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,23.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8598 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,22.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12530 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8610 - components: - - pos: 40.5,26.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8630 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,19.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12528 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8674 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,33.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 8685 - components: - - pos: 41.5,18.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12532 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 8810 - components: - - rot: 3.141592653589793 rad - pos: 26.5,22.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9359 - components: - - rot: 3.141592653589793 rad - pos: 30.5,14.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9546 - components: - - pos: 28.5,46.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12537 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9554 - components: - - rot: 3.141592653589793 rad - pos: 22.5,41.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9557 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,42.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12539 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9569 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,37.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 9587 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 9636 - components: - - pos: 44.5,3.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 9637 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10128 - components: - - rot: 3.141592653589793 rad - pos: 55.5,-9.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11731 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10179 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-3.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10180 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-3.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 10201 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10181 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-7.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 10202 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10182 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-7.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 10203 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10215 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-10.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 10207 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10217 - components: - - rot: 3.141592653589793 rad - pos: 29.5,-28.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10249 - components: - - pos: 26.5,5.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 10250 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10365 - components: - - rot: 3.141592653589793 rad - pos: 45.5,14.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12486 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10366 - components: - - rot: 3.141592653589793 rad - pos: 50.5,17.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12548 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10375 - components: - - rot: -1.5707963267948966 rad - pos: 59.5,19.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 2296 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10400 - components: - - rot: -1.5707963267948966 rad - pos: 67.5,15.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 182 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10401 - components: - - rot: 3.141592653589793 rad - pos: 63.5,10.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12562 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10402 - components: - - rot: 1.5707963267948966 rad - pos: 54.5,9.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 5101 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10403 - components: - - pos: 57.5,14.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 151 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10411 - components: - - rot: -1.5707963267948966 rad - pos: 62.5,23.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 10419 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10412 - components: - - rot: 1.5707963267948966 rad - pos: 57.5,23.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 1647 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 10652 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,6.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 10653 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11367 - components: - - rot: -1.5707963267948966 rad - pos: 77.5,2.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12163 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11719 - components: - - rot: 3.141592653589793 rad - pos: 64.5,-6.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 11730 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11726 - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-1.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11729 - components: - - rot: 3.141592653589793 rad - pos: 72.5,-0.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12503 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11744 - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-5.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12488 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11923 - components: - - pos: 60.5,-4.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11936 - components: - - rot: 3.141592653589793 rad - pos: 60.5,-10.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11938 - components: - - pos: 56.5,2.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12152 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 11957 - components: - - pos: 73.5,5.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 12506 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor -- proto: GasVolumePump - entities: - - uid: 1238 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-47.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - uid: 1373 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-22.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 4501 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-45.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor -- proto: Gauze - entities: - - uid: 11966 - components: - - pos: 67.46306,3.7913218 - parent: 2 - type: Transform -- proto: GeneratorBasic - entities: - - uid: 801 - components: - - pos: 13.5,-28.5 - parent: 2 - type: Transform -- proto: GeneratorPlasma - entities: - - uid: 4301 - components: - - pos: 9.5,-31.5 - parent: 2 - type: Transform -- proto: GeneratorPlasmaMachineCircuitboard - entities: - - uid: 12361 - components: - - pos: 37.591457,-17.470016 - parent: 2 - type: Transform -- proto: GeneratorUraniumMachineCircuitboard - entities: - - uid: 12360 - components: - - pos: 37.466457,-17.376266 - parent: 2 - type: Transform -- proto: Girder - entities: - - uid: 1968 - components: - - pos: 89.5,-1.5 - parent: 2 - type: Transform - - uid: 2379 - components: - - pos: 84.5,6.5 - parent: 2 - type: Transform - - uid: 2473 - components: - - pos: 85.5,1.5 - parent: 2 - type: Transform - - uid: 6006 - components: - - pos: 66.5,21.5 - parent: 2 - type: Transform - - uid: 6007 - components: - - pos: 66.5,18.5 - parent: 2 - type: Transform - - uid: 6238 - components: - - pos: 88.5,-3.5 - parent: 2 - type: Transform - - uid: 6309 - components: - - pos: 89.5,-3.5 - parent: 2 - type: Transform - - uid: 13044 - components: - - pos: 36.5,-52.5 - parent: 2 - type: Transform - - uid: 13045 - components: - - pos: 32.5,-56.5 - parent: 2 - type: Transform -- proto: GlowstickRed - entities: - - uid: 7565 - components: - - pos: 49.50738,-16.506752 - parent: 2 - type: Transform -- proto: GravityGenerator - entities: - - uid: 8244 - components: - - pos: 14.5,40.5 - parent: 2 - type: Transform -- proto: Grille - entities: - - uid: 8 - components: - - pos: -14.5,-20.5 - parent: 2 - type: Transform - - uid: 12 - components: - - pos: -18.5,14.5 - parent: 2 - type: Transform - - uid: 15 - components: - - pos: -4.5,-18.5 - parent: 2 - type: Transform - - uid: 16 - components: - - pos: -4.5,-16.5 - parent: 2 - type: Transform - - uid: 19 - components: - - pos: -6.5,-18.5 - parent: 2 - type: Transform - - uid: 20 - components: - - pos: -4.5,-17.5 - parent: 2 - type: Transform - - uid: 44 - components: - - pos: -6.5,-17.5 - parent: 2 - type: Transform - - uid: 83 - components: - - pos: -7.5,-0.5 - parent: 2 - type: Transform - - uid: 103 - components: - - pos: -3.5,-13.5 - parent: 2 - type: Transform - - uid: 104 - components: - - pos: -2.5,-13.5 - parent: 2 - type: Transform - - uid: 105 - components: - - pos: -1.5,-13.5 - parent: 2 - type: Transform - - uid: 115 - components: - - pos: -4.5,-9.5 - parent: 2 - type: Transform - - uid: 116 - components: - - pos: -4.5,-8.5 - parent: 2 - type: Transform - - uid: 129 - components: - - pos: 26.5,-30.5 - parent: 2 - type: Transform - - uid: 130 - components: - - pos: -18.5,-10.5 - parent: 2 - type: Transform - - uid: 141 - components: - - pos: -20.5,-21.5 - parent: 2 - type: Transform - - uid: 144 - components: - - pos: -18.5,-21.5 - parent: 2 - type: Transform - - uid: 147 - components: - - pos: 27.5,-30.5 - parent: 2 - type: Transform - - uid: 196 - components: - - pos: 1.5,-17.5 - parent: 2 - type: Transform - - uid: 197 - components: - - pos: 0.5,-17.5 - parent: 2 - type: Transform - - uid: 240 - components: - - pos: -10.5,-19.5 - parent: 2 - type: Transform - - uid: 241 - components: - - pos: -19.5,-21.5 - parent: 2 - type: Transform - - uid: 244 - components: - - pos: 2.5,11.5 - parent: 2 - type: Transform - - uid: 259 - components: - - pos: 7.5,7.5 - parent: 2 - type: Transform - - uid: 260 - components: - - pos: 7.5,6.5 - parent: 2 - type: Transform - - uid: 261 - components: - - pos: 7.5,5.5 - parent: 2 - type: Transform - - uid: 262 - components: - - pos: 8.5,8.5 - parent: 2 - type: Transform - - uid: 263 - components: - - pos: 10.5,8.5 - parent: 2 - type: Transform - - uid: 264 - components: - - pos: 12.5,8.5 - parent: 2 - type: Transform - - uid: 331 - components: - - pos: -11.5,-15.5 - parent: 2 - type: Transform - - uid: 332 - components: - - pos: -12.5,-15.5 - parent: 2 - type: Transform - - uid: 333 - components: - - pos: -13.5,-15.5 - parent: 2 - type: Transform - - uid: 334 - components: - - pos: -18.5,-15.5 - parent: 2 - type: Transform - - uid: 335 - components: - - pos: -19.5,-15.5 - parent: 2 - type: Transform - - uid: 336 - components: - - pos: -20.5,-15.5 - parent: 2 - type: Transform - - uid: 337 - components: - - pos: -22.5,-14.5 - parent: 2 - type: Transform - - uid: 339 - components: - - pos: -22.5,-13.5 - parent: 2 - type: Transform - - uid: 341 - components: - - pos: -22.5,-12.5 - parent: 2 - type: Transform - - uid: 346 - components: - - pos: -13.5,-20.5 - parent: 2 - type: Transform - - uid: 403 - components: - - pos: -4.5,14.5 - parent: 2 - type: Transform - - uid: 428 - components: - - pos: -6.5,14.5 - parent: 2 - type: Transform - - uid: 429 - components: - - pos: 5.5,20.5 - parent: 2 - type: Transform - - uid: 438 - components: - - pos: -9.5,14.5 - parent: 2 - type: Transform - - uid: 471 - components: - - pos: -10.5,14.5 - parent: 2 - type: Transform - - uid: 507 - components: - - pos: 14.5,-2.5 - parent: 2 - type: Transform - - uid: 508 - components: - - pos: 15.5,-2.5 - parent: 2 - type: Transform - - uid: 511 - components: - - pos: -4.5,-12.5 - parent: 2 - type: Transform - - uid: 597 - components: - - pos: 28.5,-5.5 - parent: 2 - type: Transform - - uid: 607 - components: - - pos: 0.5,14.5 - parent: 2 - type: Transform - - uid: 610 - components: - - pos: -0.5,14.5 - parent: 2 - type: Transform - - uid: 614 - components: - - pos: -1.5,14.5 - parent: 2 - type: Transform - - uid: 660 - components: - - pos: 17.5,-16.5 - parent: 2 - type: Transform - - uid: 661 - components: - - pos: 17.5,-18.5 - parent: 2 - type: Transform - - uid: 662 - components: - - pos: 18.5,-18.5 - parent: 2 - type: Transform - - uid: 663 - components: - - pos: 19.5,-18.5 - parent: 2 - type: Transform - - uid: 664 - components: - - pos: 19.5,-17.5 - parent: 2 - type: Transform - - uid: 665 - components: - - pos: 19.5,-16.5 - parent: 2 - type: Transform - - uid: 674 - components: - - pos: -25.5,-12.5 - parent: 2 - type: Transform - - uid: 687 - components: - - pos: -2.5,14.5 - parent: 2 - type: Transform - - uid: 694 - components: - - pos: -27.5,-14.5 - parent: 2 - type: Transform - - uid: 697 - components: - - pos: -3.5,14.5 - parent: 2 - type: Transform - - uid: 698 - components: - - pos: 7.5,-25.5 - parent: 2 - type: Transform - - uid: 699 - components: - - pos: 6.5,-25.5 - parent: 2 - type: Transform - - uid: 700 - components: - - pos: 6.5,-26.5 - parent: 2 - type: Transform - - uid: 701 - components: - - pos: 6.5,-27.5 - parent: 2 - type: Transform - - uid: 702 - components: - - pos: 6.5,-30.5 - parent: 2 - type: Transform - - uid: 703 - components: - - pos: 6.5,-31.5 - parent: 2 - type: Transform - - uid: 704 - components: - - pos: 6.5,-32.5 - parent: 2 - type: Transform - - uid: 706 - components: - - pos: 5.5,-32.5 - parent: 2 - type: Transform - - uid: 811 - components: - - pos: 25.5,-26.5 - parent: 2 - type: Transform - - uid: 812 - components: - - pos: 27.5,-26.5 - parent: 2 - type: Transform - - uid: 854 - components: - - pos: 19.5,-30.5 - parent: 2 - type: Transform - - uid: 855 - components: - - pos: 19.5,-32.5 - parent: 2 - type: Transform - - uid: 856 - components: - - pos: 24.5,-34.5 - parent: 2 - type: Transform - - uid: 857 - components: - - pos: 25.5,-34.5 - parent: 2 - type: Transform - - uid: 858 - components: - - pos: 28.5,-34.5 - parent: 2 - type: Transform - - uid: 859 - components: - - pos: 27.5,-34.5 - parent: 2 - type: Transform - - uid: 860 - components: - - pos: 33.5,-32.5 - parent: 2 - type: Transform - - uid: 861 - components: - - pos: 33.5,-30.5 - parent: 2 - type: Transform - - uid: 921 - components: - - pos: 13.5,-37.5 - parent: 2 - type: Transform - - uid: 922 - components: - - pos: 12.5,-37.5 - parent: 2 - type: Transform - - uid: 923 - components: - - pos: 11.5,-37.5 - parent: 2 - type: Transform - - uid: 924 - components: - - pos: 10.5,-37.5 - parent: 2 - type: Transform - - uid: 925 - components: - - pos: 14.5,-36.5 - parent: 2 - type: Transform - - uid: 926 - components: - - pos: 14.5,-35.5 - parent: 2 - type: Transform - - uid: 927 - components: - - pos: 14.5,-33.5 - parent: 2 - type: Transform - - uid: 959 - components: - - pos: 24.5,-38.5 - parent: 2 - type: Transform - - uid: 960 - components: - - pos: 23.5,-37.5 - parent: 2 - type: Transform - - uid: 961 - components: - - pos: 22.5,-37.5 - parent: 2 - type: Transform - - uid: 962 - components: - - pos: 20.5,-37.5 - parent: 2 - type: Transform - - uid: 963 - components: - - pos: 19.5,-37.5 - parent: 2 - type: Transform - - uid: 964 - components: - - pos: 18.5,-38.5 - parent: 2 - type: Transform - - uid: 965 - components: - - pos: 18.5,-41.5 - parent: 2 - type: Transform - - uid: 966 - components: - - pos: 18.5,-42.5 - parent: 2 - type: Transform - - uid: 967 - components: - - pos: 18.5,-43.5 - parent: 2 - type: Transform - - uid: 968 - components: - - pos: 18.5,-44.5 - parent: 2 - type: Transform - - uid: 969 - components: - - pos: 19.5,-44.5 - parent: 2 - type: Transform - - uid: 970 - components: - - pos: 20.5,-44.5 - parent: 2 - type: Transform - - uid: 971 - components: - - pos: 21.5,-44.5 - parent: 2 - type: Transform - - uid: 972 - components: - - pos: 22.5,-44.5 - parent: 2 - type: Transform - - uid: 973 - components: - - pos: 23.5,-44.5 - parent: 2 - type: Transform - - uid: 974 - components: - - pos: 24.5,-44.5 - parent: 2 - type: Transform - - uid: 975 - components: - - pos: 24.5,-43.5 - parent: 2 - type: Transform - - uid: 976 - components: - - pos: 24.5,-42.5 - parent: 2 - type: Transform - - uid: 977 - components: - - pos: 24.5,-41.5 - parent: 2 - type: Transform - - uid: 978 - components: - - pos: 25.5,-43.5 - parent: 2 - type: Transform - - uid: 979 - components: - - pos: 26.5,-43.5 - parent: 2 - type: Transform - - uid: 980 - components: - - pos: 17.5,-43.5 - parent: 2 - type: Transform - - uid: 981 - components: - - pos: 16.5,-43.5 - parent: 2 - type: Transform - - uid: 1108 - components: - - pos: -27.5,-12.5 - parent: 2 - type: Transform - - uid: 1180 - components: - - pos: -11.5,-10.5 - parent: 2 - type: Transform - - uid: 1241 - components: - - pos: 38.5,-58.5 - parent: 2 - type: Transform - - uid: 1242 - components: - - pos: 36.5,-58.5 - parent: 2 - type: Transform - - uid: 1243 - components: - - pos: 33.5,-58.5 - parent: 2 - type: Transform - - uid: 1246 - components: - - pos: 37.5,-58.5 - parent: 2 - type: Transform - - uid: 1248 - components: - - pos: 34.5,-58.5 - parent: 2 - type: Transform - - uid: 1316 - components: - - pos: -11.5,-11.5 - parent: 2 - type: Transform - - uid: 1317 - components: - - pos: -13.5,-11.5 - parent: 2 - type: Transform - - uid: 1330 - components: - - pos: -12.5,14.5 - parent: 2 - type: Transform - - uid: 1336 - components: - - pos: -15.5,-11.5 - parent: 2 - type: Transform - - uid: 1338 - components: - - pos: 1.5,-27.5 - parent: 2 - type: Transform - - uid: 1339 - components: - - pos: 0.5,-27.5 - parent: 2 - type: Transform - - uid: 1340 - components: - - pos: -1.5,-28.5 - parent: 2 - type: Transform - - uid: 1341 - components: - - pos: -1.5,-29.5 - parent: 2 - type: Transform - - uid: 1357 - components: - - pos: 1.5,-34.5 - parent: 2 - type: Transform - - uid: 1358 - components: - - pos: 0.5,-34.5 - parent: 2 - type: Transform - - uid: 1359 - components: - - pos: -0.5,-34.5 - parent: 2 - type: Transform - - uid: 1360 - components: - - pos: 1.5,-36.5 - parent: 2 - type: Transform - - uid: 1361 - components: - - pos: 0.5,-36.5 - parent: 2 - type: Transform - - uid: 1362 - components: - - pos: -0.5,-36.5 - parent: 2 - type: Transform - - uid: 1508 - components: - - pos: 34.5,-1.5 - parent: 2 - type: Transform - - uid: 1540 - components: - - pos: 28.5,-6.5 - parent: 2 - type: Transform - - uid: 1546 - components: - - pos: -7.5,14.5 - parent: 2 - type: Transform - - uid: 1556 - components: - - pos: -16.5,-11.5 - parent: 2 - type: Transform - - uid: 1565 - components: - - pos: 28.5,-3.5 - parent: 2 - type: Transform - - uid: 1575 - components: - - pos: 28.5,-4.5 - parent: 2 - type: Transform - - uid: 1675 - components: - - pos: 45.5,-2.5 - parent: 2 - type: Transform - - uid: 1710 - components: - - pos: 46.5,-14.5 - parent: 2 - type: Transform - - uid: 1711 - components: - - pos: 46.5,-15.5 - parent: 2 - type: Transform - - uid: 1712 - components: - - pos: 46.5,-16.5 - parent: 2 - type: Transform - - uid: 1713 - components: - - pos: 42.5,-16.5 - parent: 2 - type: Transform - - uid: 1714 - components: - - pos: 42.5,-15.5 - parent: 2 - type: Transform - - uid: 1715 - components: - - pos: 42.5,-14.5 - parent: 2 - type: Transform - - uid: 1741 - components: - - pos: 28.5,-14.5 - parent: 2 - type: Transform - - uid: 1742 - components: - - pos: 28.5,-17.5 - parent: 2 - type: Transform - - uid: 1773 - components: - - pos: -5.5,14.5 - parent: 2 - type: Transform - - uid: 1854 - components: - - pos: -14.5,-19.5 - parent: 2 - type: Transform - - uid: 1856 - components: - - pos: -3.5,0.5 - parent: 2 - type: Transform - - uid: 1967 - components: - - pos: 88.5,-6.5 - parent: 2 - type: Transform - - uid: 1998 - components: - - pos: 6.5,22.5 - parent: 2 - type: Transform - - uid: 1999 - components: - - pos: 5.5,22.5 - parent: 2 - type: Transform - - uid: 2000 - components: - - pos: 4.5,22.5 - parent: 2 - type: Transform - - uid: 2005 - components: - - pos: 6.5,25.5 - parent: 2 - type: Transform - - uid: 2006 - components: - - pos: 5.5,25.5 - parent: 2 - type: Transform - - uid: 2007 - components: - - pos: 4.5,25.5 - parent: 2 - type: Transform - - uid: 2008 - components: - - pos: 6.5,28.5 - parent: 2 - type: Transform - - uid: 2009 - components: - - pos: 5.5,28.5 - parent: 2 - type: Transform - - uid: 2010 - components: - - pos: 4.5,28.5 - parent: 2 - type: Transform - - uid: 2023 - components: - - pos: -12.5,-20.5 - parent: 2 - type: Transform - - uid: 2031 - components: - - pos: -7.5,-5.5 - parent: 2 - type: Transform - - uid: 2035 - components: - - pos: 11.5,29.5 - parent: 2 - type: Transform - - uid: 2036 - components: - - pos: 13.5,29.5 - parent: 2 - type: Transform - - uid: 2073 - components: - - pos: 44.5,-29.5 - parent: 2 - type: Transform - - uid: 2074 - components: - - pos: 44.5,-23.5 - parent: 2 - type: Transform - - uid: 2076 - components: - - pos: 16.5,21.5 - parent: 2 - type: Transform - - uid: 2077 - components: - - pos: 7.5,20.5 - parent: 2 - type: Transform - - uid: 2079 - components: - - pos: 21.5,23.5 - parent: 2 - type: Transform - - uid: 2080 - components: - - pos: 21.5,24.5 - parent: 2 - type: Transform - - uid: 2137 - components: - - pos: 44.5,-27.5 - parent: 2 - type: Transform - - uid: 2139 - components: - - pos: 44.5,-33.5 - parent: 2 - type: Transform - - uid: 2142 - components: - - pos: 44.5,-25.5 - parent: 2 - type: Transform - - uid: 2182 - components: - - pos: 24.5,15.5 - parent: 2 - type: Transform - - uid: 2183 - components: - - pos: 24.5,12.5 - parent: 2 - type: Transform - - uid: 2236 - components: - - pos: 28.5,21.5 - parent: 2 - type: Transform - - uid: 2237 - components: - - pos: 28.5,20.5 - parent: 2 - type: Transform - - uid: 2238 - components: - - pos: 28.5,18.5 - parent: 2 - type: Transform - - uid: 2239 - components: - - pos: 28.5,17.5 - parent: 2 - type: Transform - - uid: 2254 - components: - - pos: 31.5,21.5 - parent: 2 - type: Transform - - uid: 2255 - components: - - pos: 31.5,17.5 - parent: 2 - type: Transform - - uid: 2274 - components: - - pos: 42.5,32.5 - parent: 2 - type: Transform - - uid: 2279 - components: - - pos: 42.5,31.5 - parent: 2 - type: Transform - - uid: 2280 - components: - - pos: 42.5,33.5 - parent: 2 - type: Transform - - uid: 2281 - components: - - pos: 44.5,34.5 - parent: 2 - type: Transform - - uid: 2282 - components: - - pos: 44.5,35.5 - parent: 2 - type: Transform - - uid: 2283 - components: - - pos: 44.5,36.5 - parent: 2 - type: Transform - - uid: 2351 - components: - - pos: 37.5,24.5 - parent: 2 - type: Transform - - uid: 2352 - components: - - pos: 37.5,23.5 - parent: 2 - type: Transform - - uid: 2353 - components: - - pos: 37.5,26.5 - parent: 2 - type: Transform - - uid: 2354 - components: - - pos: 37.5,27.5 - parent: 2 - type: Transform - - uid: 2355 - components: - - pos: 37.5,28.5 - parent: 2 - type: Transform - - uid: 2357 - components: - - pos: 41.5,25.5 - parent: 2 - type: Transform - - uid: 2358 - components: - - pos: 37.5,21.5 - parent: 2 - type: Transform - - uid: 2359 - components: - - pos: 38.5,20.5 - parent: 2 - type: Transform - - uid: 2365 - components: - - pos: 38.5,25.5 - parent: 2 - type: Transform - - uid: 2371 - components: - - pos: 42.5,24.5 - parent: 2 - type: Transform - - uid: 2372 - components: - - pos: 42.5,22.5 - parent: 2 - type: Transform - - uid: 2392 - components: - - pos: 67.5,-18.5 - parent: 2 - type: Transform - - uid: 2433 - components: - - pos: 24.5,-27.5 - parent: 2 - type: Transform - - uid: 2434 - components: - - pos: 28.5,-27.5 - parent: 2 - type: Transform - - uid: 2456 - components: - - pos: 43.5,16.5 - parent: 2 - type: Transform - - uid: 2457 - components: - - pos: 41.5,16.5 - parent: 2 - type: Transform - - uid: 2512 - components: - - pos: 39.5,8.5 - parent: 2 - type: Transform - - uid: 2513 - components: - - pos: 39.5,9.5 - parent: 2 - type: Transform - - uid: 2514 - components: - - pos: 39.5,6.5 - parent: 2 - type: Transform - - uid: 2515 - components: - - pos: 39.5,5.5 - parent: 2 - type: Transform - - uid: 2618 - components: - - pos: 21.5,38.5 - parent: 2 - type: Transform - - uid: 2619 - components: - - pos: 22.5,38.5 - parent: 2 - type: Transform - - uid: 2620 - components: - - pos: 23.5,38.5 - parent: 2 - type: Transform - - uid: 2621 - components: - - pos: 24.5,38.5 - parent: 2 - type: Transform - - uid: 2622 - components: - - pos: 21.5,43.5 - parent: 2 - type: Transform - - uid: 2623 - components: - - pos: 24.5,43.5 - parent: 2 - type: Transform - - uid: 2624 - components: - - pos: 27.5,38.5 - parent: 2 - type: Transform - - uid: 2625 - components: - - pos: 27.5,43.5 - parent: 2 - type: Transform - - uid: 2649 - components: - - pos: 15.5,42.5 - parent: 2 - type: Transform - - uid: 2650 - components: - - pos: 14.5,42.5 - parent: 2 - type: Transform - - uid: 2651 - components: - - pos: 13.5,42.5 - parent: 2 - type: Transform - - uid: 2676 - components: - - pos: 24.5,34.5 - parent: 2 - type: Transform - - uid: 2677 - components: - - pos: 23.5,34.5 - parent: 2 - type: Transform - - uid: 2678 - components: - - pos: 22.5,33.5 - parent: 2 - type: Transform - - uid: 2679 - components: - - pos: 22.5,32.5 - parent: 2 - type: Transform - - uid: 2680 - components: - - pos: 22.5,30.5 - parent: 2 - type: Transform - - uid: 2681 - components: - - pos: 22.5,29.5 - parent: 2 - type: Transform - - uid: 2729 - components: - - pos: -13.5,1.5 - parent: 2 - type: Transform - - uid: 2732 - components: - - pos: -25.5,-13.5 - parent: 2 - type: Transform - - uid: 2735 - components: - - pos: -4.5,-14.5 - parent: 2 - type: Transform - - uid: 2736 - components: - - pos: -11.5,1.5 - parent: 2 - type: Transform - - uid: 2740 - components: - - pos: -25.5,-14.5 - parent: 2 - type: Transform - - uid: 2741 - components: - - pos: -9.5,1.5 - parent: 2 - type: Transform - - uid: 2742 - components: - - pos: -14.5,1.5 - parent: 2 - type: Transform - - uid: 2743 - components: - - pos: -10.5,1.5 - parent: 2 - type: Transform - - uid: 2789 - components: - - pos: 22.5,49.5 - parent: 2 - type: Transform - - uid: 2790 - components: - - pos: 23.5,49.5 - parent: 2 - type: Transform - - uid: 2791 - components: - - pos: 24.5,49.5 - parent: 2 - type: Transform - - uid: 2792 - components: - - pos: 25.5,49.5 - parent: 2 - type: Transform - - uid: 2793 - components: - - pos: 26.5,49.5 - parent: 2 - type: Transform - - uid: 2794 - components: - - pos: 27.5,49.5 - parent: 2 - type: Transform - - uid: 2795 - components: - - pos: 28.5,49.5 - parent: 2 - type: Transform - - uid: 2796 - components: - - pos: 29.5,49.5 - parent: 2 - type: Transform - - uid: 2797 - components: - - pos: 30.5,49.5 - parent: 2 - type: Transform - - uid: 2798 - components: - - pos: 31.5,49.5 - parent: 2 - type: Transform - - uid: 2799 - components: - - pos: 32.5,49.5 - parent: 2 - type: Transform - - uid: 2806 - components: - - pos: 36.5,45.5 - parent: 2 - type: Transform - - uid: 2807 - components: - - pos: 36.5,46.5 - parent: 2 - type: Transform - - uid: 2808 - components: - - pos: 18.5,44.5 - parent: 2 - type: Transform - - uid: 2809 - components: - - pos: 18.5,45.5 - parent: 2 - type: Transform - - uid: 2828 - components: - - pos: -20.5,-10.5 - parent: 2 - type: Transform - - uid: 2830 - components: - - pos: -7.5,-4.5 - parent: 2 - type: Transform - - uid: 2836 - components: - - pos: 59.5,-14.5 - parent: 2 - type: Transform - - uid: 2837 - components: - - pos: 60.5,-12.5 - parent: 2 - type: Transform - - uid: 2838 - components: - - pos: 62.5,-12.5 - parent: 2 - type: Transform - - uid: 2839 - components: - - pos: 61.5,-12.5 - parent: 2 - type: Transform - - uid: 2840 - components: - - pos: 63.5,-12.5 - parent: 2 - type: Transform - - uid: 2841 - components: - - pos: 60.5,-14.5 - parent: 2 - type: Transform - - uid: 2842 - components: - - pos: 61.5,-14.5 - parent: 2 - type: Transform - - uid: 2843 - components: - - pos: 62.5,-14.5 - parent: 2 - type: Transform - - uid: 2844 - components: - - pos: 63.5,-14.5 - parent: 2 - type: Transform - - uid: 2845 - components: - - pos: 60.5,-8.5 - parent: 2 - type: Transform - - uid: 2846 - components: - - pos: 62.5,-8.5 - parent: 2 - type: Transform - - uid: 2847 - components: - - pos: 63.5,-8.5 - parent: 2 - type: Transform - - uid: 2878 - components: - - pos: 58.5,-17.5 - parent: 2 - type: Transform - - uid: 2879 - components: - - pos: 59.5,-18.5 - parent: 2 - type: Transform - - uid: 2880 - components: - - pos: 60.5,-18.5 - parent: 2 - type: Transform - - uid: 2881 - components: - - pos: 66.5,-18.5 - parent: 2 - type: Transform - - uid: 2882 - components: - - pos: 65.5,-18.5 - parent: 2 - type: Transform - - uid: 2961 - components: - - pos: 49.5,-3.5 - parent: 2 - type: Transform - - uid: 2962 - components: - - pos: 54.5,-3.5 - parent: 2 - type: Transform - - uid: 2964 - components: - - pos: 44.5,1.5 - parent: 2 - type: Transform - - uid: 2965 - components: - - pos: 43.5,1.5 - parent: 2 - type: Transform - - uid: 2966 - components: - - pos: 46.5,1.5 - parent: 2 - type: Transform - - uid: 2967 - components: - - pos: 47.5,1.5 - parent: 2 - type: Transform - - uid: 2968 - components: - - pos: 48.5,4.5 - parent: 2 - type: Transform - - uid: 2986 - components: - - pos: 52.5,1.5 - parent: 2 - type: Transform - - uid: 2987 - components: - - pos: 53.5,-0.5 - parent: 2 - type: Transform - - uid: 3015 - components: - - pos: 57.5,-8.5 - parent: 2 - type: Transform - - uid: 3016 - components: - - pos: 55.5,-8.5 - parent: 2 - type: Transform - - uid: 3017 - components: - - pos: 67.5,-2.5 - parent: 2 - type: Transform - - uid: 3018 - components: - - pos: 66.5,-2.5 - parent: 2 - type: Transform - - uid: 3019 - components: - - pos: 65.5,-2.5 - parent: 2 - type: Transform - - uid: 3020 - components: - - pos: 64.5,-2.5 - parent: 2 - type: Transform - - uid: 3045 - components: - - pos: 55.5,12.5 - parent: 2 - type: Transform - - uid: 3046 - components: - - pos: 53.5,12.5 - parent: 2 - type: Transform - - uid: 3067 - components: - - pos: 42.5,40.5 - parent: 2 - type: Transform - - uid: 3068 - components: - - pos: 41.5,40.5 - parent: 2 - type: Transform - - uid: 3090 - components: - - pos: 43.5,47.5 - parent: 2 - type: Transform - - uid: 3091 - components: - - pos: 44.5,47.5 - parent: 2 - type: Transform - - uid: 3092 - components: - - pos: 45.5,47.5 - parent: 2 - type: Transform - - uid: 3093 - components: - - pos: 45.5,48.5 - parent: 2 - type: Transform - - uid: 3094 - components: - - pos: 46.5,48.5 - parent: 2 - type: Transform - - uid: 3095 - components: - - pos: 47.5,48.5 - parent: 2 - type: Transform - - uid: 3096 - components: - - pos: 48.5,48.5 - parent: 2 - type: Transform - - uid: 3097 - components: - - pos: 48.5,49.5 - parent: 2 - type: Transform - - uid: 3106 - components: - - pos: 46.5,45.5 - parent: 2 - type: Transform - - uid: 3107 - components: - - pos: 47.5,45.5 - parent: 2 - type: Transform - - uid: 3108 - components: - - pos: 48.5,45.5 - parent: 2 - type: Transform - - uid: 3109 - components: - - pos: 49.5,45.5 - parent: 2 - type: Transform - - uid: 3114 - components: - - pos: 50.5,46.5 - parent: 2 - type: Transform - - uid: 3115 - components: - - pos: 50.5,47.5 - parent: 2 - type: Transform - - uid: 3116 - components: - - pos: 51.5,47.5 - parent: 2 - type: Transform - - uid: 3117 - components: - - pos: 52.5,47.5 - parent: 2 - type: Transform - - uid: 3118 - components: - - pos: 53.5,47.5 - parent: 2 - type: Transform - - uid: 3119 - components: - - pos: 54.5,47.5 - parent: 2 - type: Transform - - uid: 3120 - components: - - pos: 55.5,47.5 - parent: 2 - type: Transform - - uid: 3121 - components: - - pos: 56.5,47.5 - parent: 2 - type: Transform - - uid: 3122 - components: - - pos: 57.5,47.5 - parent: 2 - type: Transform - - uid: 3123 - components: - - pos: 59.5,47.5 - parent: 2 - type: Transform - - uid: 3124 - components: - - pos: 58.5,47.5 - parent: 2 - type: Transform - - uid: 3126 - components: - - pos: 62.5,47.5 - parent: 2 - type: Transform - - uid: 3136 - components: - - pos: 60.5,47.5 - parent: 2 - type: Transform - - uid: 3137 - components: - - pos: 61.5,47.5 - parent: 2 - type: Transform - - uid: 3138 - components: - - pos: 47.5,40.5 - parent: 2 - type: Transform - - uid: 3139 - components: - - pos: 47.5,39.5 - parent: 2 - type: Transform - - uid: 3140 - components: - - pos: 47.5,38.5 - parent: 2 - type: Transform - - uid: 3141 - components: - - pos: 47.5,37.5 - parent: 2 - type: Transform - - uid: 3213 - components: - - pos: 62.5,46.5 - parent: 2 - type: Transform - - uid: 3223 - components: - - pos: 50.5,32.5 - parent: 2 - type: Transform - - uid: 3224 - components: - - pos: 50.5,33.5 - parent: 2 - type: Transform - - uid: 3225 - components: - - pos: 50.5,34.5 - parent: 2 - type: Transform - - uid: 3226 - components: - - pos: 50.5,35.5 - parent: 2 - type: Transform - - uid: 3227 - components: - - pos: 50.5,36.5 - parent: 2 - type: Transform - - uid: 3228 - components: - - pos: 50.5,37.5 - parent: 2 - type: Transform - - uid: 3229 - components: - - pos: 50.5,38.5 - parent: 2 - type: Transform - - uid: 3230 - components: - - pos: 50.5,39.5 - parent: 2 - type: Transform - - uid: 3231 - components: - - pos: 51.5,39.5 - parent: 2 - type: Transform - - uid: 3232 - components: - - pos: 51.5,40.5 - parent: 2 - type: Transform - - uid: 3233 - components: - - pos: 52.5,40.5 - parent: 2 - type: Transform - - uid: 3234 - components: - - pos: 53.5,40.5 - parent: 2 - type: Transform - - uid: 3235 - components: - - pos: 53.5,41.5 - parent: 2 - type: Transform - - uid: 3236 - components: - - pos: 54.5,41.5 - parent: 2 - type: Transform - - uid: 3237 - components: - - pos: 55.5,41.5 - parent: 2 - type: Transform - - uid: 3238 - components: - - pos: 56.5,41.5 - parent: 2 - type: Transform - - uid: 3239 - components: - - pos: 57.5,41.5 - parent: 2 - type: Transform - - uid: 3240 - components: - - pos: 58.5,41.5 - parent: 2 - type: Transform - - uid: 3241 - components: - - pos: 59.5,41.5 - parent: 2 - type: Transform - - uid: 3242 - components: - - pos: 59.5,40.5 - parent: 2 - type: Transform - - uid: 3243 - components: - - pos: 60.5,40.5 - parent: 2 - type: Transform - - uid: 3244 - components: - - pos: 61.5,40.5 - parent: 2 - type: Transform - - uid: 3245 - components: - - pos: 61.5,39.5 - parent: 2 - type: Transform - - uid: 3246 - components: - - pos: 62.5,39.5 - parent: 2 - type: Transform - - uid: 3247 - components: - - pos: 62.5,38.5 - parent: 2 - type: Transform - - uid: 3248 - components: - - pos: 62.5,37.5 - parent: 2 - type: Transform - - uid: 3249 - components: - - pos: 62.5,36.5 - parent: 2 - type: Transform - - uid: 3250 - components: - - pos: 62.5,35.5 - parent: 2 - type: Transform - - uid: 3251 - components: - - pos: 62.5,34.5 - parent: 2 - type: Transform - - uid: 3252 - components: - - pos: 62.5,33.5 - parent: 2 - type: Transform - - uid: 3253 - components: - - pos: 62.5,32.5 - parent: 2 - type: Transform - - uid: 3317 - components: - - pos: 64.5,49.5 - parent: 2 - type: Transform - - uid: 3320 - components: - - pos: 65.5,48.5 - parent: 2 - type: Transform - - uid: 3323 - components: - - pos: 50.5,49.5 - parent: 2 - type: Transform - - uid: 3324 - components: - - pos: 51.5,49.5 - parent: 2 - type: Transform - - uid: 3325 - components: - - pos: 52.5,49.5 - parent: 2 - type: Transform - - uid: 3326 - components: - - pos: 53.5,49.5 - parent: 2 - type: Transform - - uid: 3327 - components: - - pos: 54.5,49.5 - parent: 2 - type: Transform - - uid: 3328 - components: - - pos: 58.5,49.5 - parent: 2 - type: Transform - - uid: 3329 - components: - - pos: 59.5,49.5 - parent: 2 - type: Transform - - uid: 3330 - components: - - pos: 60.5,49.5 - parent: 2 - type: Transform - - uid: 3331 - components: - - pos: 61.5,49.5 - parent: 2 - type: Transform - - uid: 3332 - components: - - pos: 62.5,49.5 - parent: 2 - type: Transform - - uid: 3333 - components: - - pos: 55.5,49.5 - parent: 2 - type: Transform - - uid: 3334 - components: - - pos: 57.5,49.5 - parent: 2 - type: Transform - - uid: 3341 - components: - - pos: 66.5,48.5 - parent: 2 - type: Transform - - uid: 3342 - components: - - pos: 64.5,48.5 - parent: 2 - type: Transform - - uid: 3349 - components: - - pos: 67.5,48.5 - parent: 2 - type: Transform - - uid: 3350 - components: - - pos: 67.5,47.5 - parent: 2 - type: Transform - - uid: 3351 - components: - - pos: 68.5,47.5 - parent: 2 - type: Transform - - uid: 3364 - components: - - pos: 72.5,46.5 - parent: 2 - type: Transform - - uid: 3365 - components: - - pos: 73.5,46.5 - parent: 2 - type: Transform - - uid: 3366 - components: - - pos: 74.5,46.5 - parent: 2 - type: Transform - - uid: 3367 - components: - - pos: 72.5,44.5 - parent: 2 - type: Transform - - uid: 3368 - components: - - pos: 73.5,44.5 - parent: 2 - type: Transform - - uid: 3369 - components: - - pos: 74.5,44.5 - parent: 2 - type: Transform - - uid: 3476 - components: - - pos: 57.5,27.5 - parent: 2 - type: Transform - - uid: 3477 - components: - - pos: 57.5,26.5 - parent: 2 - type: Transform - - uid: 3478 - components: - - pos: 58.5,26.5 - parent: 2 - type: Transform - - uid: 3489 - components: - - pos: 48.5,19.5 - parent: 2 - type: Transform - - uid: 3493 - components: - - pos: 55.5,27.5 - parent: 2 - type: Transform - - uid: 3495 - components: - - pos: 55.5,26.5 - parent: 2 - type: Transform - - uid: 3496 - components: - - pos: 48.5,17.5 - parent: 2 - type: Transform - - uid: 3497 - components: - - pos: 54.5,26.5 - parent: 2 - type: Transform - - uid: 3520 - components: - - pos: 57.5,19.5 - parent: 2 - type: Transform - - uid: 3521 - components: - - pos: 57.5,20.5 - parent: 2 - type: Transform - - uid: 3522 - components: - - pos: 57.5,17.5 - parent: 2 - type: Transform - - uid: 3529 - components: - - pos: 75.5,16.5 - parent: 2 - type: Transform - - uid: 3530 - components: - - pos: 75.5,17.5 - parent: 2 - type: Transform - - uid: 3531 - components: - - pos: 75.5,15.5 - parent: 2 - type: Transform - - uid: 3532 - components: - - pos: 78.5,13.5 - parent: 2 - type: Transform - - uid: 3533 - components: - - pos: 79.5,13.5 - parent: 2 - type: Transform - - uid: 3534 - components: - - pos: 80.5,13.5 - parent: 2 - type: Transform - - uid: 3535 - components: - - pos: 77.5,13.5 - parent: 2 - type: Transform - - uid: 3543 - components: - - pos: 90.5,-6.5 - parent: 2 - type: Transform - - uid: 3546 - components: - - pos: 91.5,-6.5 - parent: 2 - type: Transform - - uid: 3568 - components: - - pos: 88.5,-5.5 - parent: 2 - type: Transform - - uid: 3588 - components: - - pos: 90.5,0.5 - parent: 2 - type: Transform - - uid: 3606 - components: - - pos: 90.5,1.5 - parent: 2 - type: Transform - - uid: 3610 - components: - - pos: 88.5,-4.5 - parent: 2 - type: Transform - - uid: 3652 - components: - - pos: 65.5,16.5 - parent: 2 - type: Transform - - uid: 3653 - components: - - pos: 65.5,14.5 - parent: 2 - type: Transform - - uid: 3677 - components: - - pos: 60.5,12.5 - parent: 2 - type: Transform - - uid: 3678 - components: - - pos: 61.5,12.5 - parent: 2 - type: Transform - - uid: 3679 - components: - - pos: 63.5,12.5 - parent: 2 - type: Transform - - uid: 3768 - components: - - pos: 82.5,-8.5 - parent: 2 - type: Transform - - uid: 3769 - components: - - pos: 81.5,-8.5 - parent: 2 - type: Transform - - uid: 3770 - components: - - pos: 80.5,-8.5 - parent: 2 - type: Transform - - uid: 3771 - components: - - pos: 79.5,-8.5 - parent: 2 - type: Transform - - uid: 3851 - components: - - pos: 73.5,-17.5 - parent: 2 - type: Transform - - uid: 3852 - components: - - pos: 74.5,-17.5 - parent: 2 - type: Transform - - uid: 3853 - components: - - pos: 75.5,-17.5 - parent: 2 - type: Transform - - uid: 3854 - components: - - pos: 76.5,-17.5 - parent: 2 - type: Transform - - uid: 3855 - components: - - pos: 77.5,-17.5 - parent: 2 - type: Transform - - uid: 3856 - components: - - pos: 78.5,-17.5 - parent: 2 - type: Transform - - uid: 3857 - components: - - pos: 79.5,-17.5 - parent: 2 - type: Transform - - uid: 3858 - components: - - pos: 80.5,-17.5 - parent: 2 - type: Transform - - uid: 3859 - components: - - pos: 81.5,-17.5 - parent: 2 - type: Transform - - uid: 3860 - components: - - pos: 82.5,-17.5 - parent: 2 - type: Transform - - uid: 3861 - components: - - pos: 83.5,-17.5 - parent: 2 - type: Transform - - uid: 3862 - components: - - pos: 84.5,-17.5 - parent: 2 - type: Transform - - uid: 3863 - components: - - pos: 85.5,-17.5 - parent: 2 - type: Transform - - uid: 3864 - components: - - pos: 86.5,-17.5 - parent: 2 - type: Transform - - uid: 3889 - components: - - pos: 96.5,-22.5 - parent: 2 - type: Transform - - uid: 3892 - components: - - pos: 94.5,-17.5 - parent: 2 - type: Transform - - uid: 3893 - components: - - pos: 98.5,-22.5 - parent: 2 - type: Transform - - uid: 3903 - components: - - pos: 97.5,-17.5 - parent: 2 - type: Transform - - uid: 3957 - components: - - pos: 40.5,-58.5 - parent: 2 - type: Transform - - uid: 3969 - components: - - pos: 39.5,-58.5 - parent: 2 - type: Transform - - uid: 3973 - components: - - pos: 18.5,-59.5 - parent: 2 - type: Transform - - uid: 3977 - components: - - pos: 19.5,-59.5 - parent: 2 - type: Transform - - uid: 3978 - components: - - pos: 24.5,-59.5 - parent: 2 - type: Transform - - uid: 3981 - components: - - pos: 17.5,-59.5 - parent: 2 - type: Transform - - uid: 3985 - components: - - pos: 19.5,-59.5 - parent: 2 - type: Transform - - uid: 3987 - components: - - pos: 14.5,-59.5 - parent: 2 - type: Transform - - uid: 3998 - components: - - pos: 13.5,-59.5 - parent: 2 - type: Transform - - uid: 4046 - components: - - pos: 44.5,-31.5 - parent: 2 - type: Transform - - uid: 4066 - components: - - pos: -18.5,-11.5 - parent: 2 - type: Transform - - uid: 4074 - components: - - pos: 25.5,-30.5 - parent: 2 - type: Transform - - uid: 4243 - components: - - pos: 24.5,-12.5 - parent: 2 - type: Transform - - uid: 4296 - components: - - pos: 24.5,-9.5 - parent: 2 - type: Transform - - uid: 4338 - components: - - pos: 34.5,-33.5 - parent: 2 - type: Transform - - uid: 4339 - components: - - pos: 36.5,-33.5 - parent: 2 - type: Transform - - uid: 4340 - components: - - pos: 37.5,-32.5 - parent: 2 - type: Transform - - uid: 4341 - components: - - pos: 37.5,-31.5 - parent: 2 - type: Transform - - uid: 4342 - components: - - pos: 37.5,-30.5 - parent: 2 - type: Transform - - uid: 4343 - components: - - pos: 36.5,-29.5 - parent: 2 - type: Transform - - uid: 4344 - components: - - pos: 34.5,-29.5 - parent: 2 - type: Transform - - uid: 4345 - components: - - pos: 33.5,-28.5 - parent: 2 - type: Transform - - uid: 4346 - components: - - pos: 33.5,-27.5 - parent: 2 - type: Transform - - uid: 4347 - components: - - pos: 34.5,-26.5 - parent: 2 - type: Transform - - uid: 4348 - components: - - pos: 35.5,-26.5 - parent: 2 - type: Transform - - uid: 4349 - components: - - pos: 36.5,-26.5 - parent: 2 - type: Transform - - uid: 4350 - components: - - pos: 37.5,-28.5 - parent: 2 - type: Transform - - uid: 4351 - components: - - pos: 37.5,-27.5 - parent: 2 - type: Transform - - uid: 4376 - components: - - pos: 33.5,-36.5 - parent: 2 - type: Transform - - uid: 4377 - components: - - pos: 33.5,-35.5 - parent: 2 - type: Transform - - uid: 4378 - components: - - pos: 33.5,-34.5 - parent: 2 - type: Transform - - uid: 4379 - components: - - pos: 37.5,-36.5 - parent: 2 - type: Transform - - uid: 4380 - components: - - pos: 37.5,-35.5 - parent: 2 - type: Transform - - uid: 4381 - components: - - pos: 37.5,-34.5 - parent: 2 - type: Transform - - uid: 4419 - components: - - pos: 46.5,-36.5 - parent: 2 - type: Transform - - uid: 4420 - components: - - pos: 45.5,-36.5 - parent: 2 - type: Transform - - uid: 4421 - components: - - pos: 44.5,-36.5 - parent: 2 - type: Transform - - uid: 4422 - components: - - pos: 43.5,-36.5 - parent: 2 - type: Transform - - uid: 4423 - components: - - pos: 42.5,-36.5 - parent: 2 - type: Transform - - uid: 4424 - components: - - pos: 41.5,-35.5 - parent: 2 - type: Transform - - uid: 4425 - components: - - pos: 41.5,-34.5 - parent: 2 - type: Transform - - uid: 4426 - components: - - pos: 41.5,-33.5 - parent: 2 - type: Transform - - uid: 4427 - components: - - pos: 41.5,-32.5 - parent: 2 - type: Transform - - uid: 4428 - components: - - pos: 41.5,-31.5 - parent: 2 - type: Transform - - uid: 4429 - components: - - pos: 41.5,-30.5 - parent: 2 - type: Transform - - uid: 4430 - components: - - pos: 41.5,-29.5 - parent: 2 - type: Transform - - uid: 4432 - components: - - pos: 41.5,-28.5 - parent: 2 - type: Transform - - uid: 4433 - components: - - pos: 41.5,-27.5 - parent: 2 - type: Transform - - uid: 4434 - components: - - pos: 41.5,-26.5 - parent: 2 - type: Transform - - uid: 4435 - components: - - pos: 41.5,-25.5 - parent: 2 - type: Transform - - uid: 4436 - components: - - pos: 41.5,-24.5 - parent: 2 - type: Transform - - uid: 4437 - components: - - pos: 41.5,-23.5 - parent: 2 - type: Transform - - uid: 4442 - components: - - pos: 41.5,-22.5 - parent: 2 - type: Transform - - uid: 4455 - components: - - pos: 33.5,-44.5 - parent: 2 - type: Transform - - uid: 4456 - components: - - pos: 33.5,-43.5 - parent: 2 - type: Transform - - uid: 4457 - components: - - pos: 33.5,-42.5 - parent: 2 - type: Transform - - uid: 4458 - components: - - pos: 32.5,-45.5 - parent: 2 - type: Transform - - uid: 4459 - components: - - pos: 31.5,-45.5 - parent: 2 - type: Transform - - uid: 4467 - components: - - pos: 39.5,-41.5 - parent: 2 - type: Transform - - uid: 4469 - components: - - pos: 41.5,-41.5 - parent: 2 - type: Transform - - uid: 4473 - components: - - pos: 43.5,-41.5 - parent: 2 - type: Transform - - uid: 4487 - components: - - pos: 47.5,-40.5 - parent: 2 - type: Transform - - uid: 4488 - components: - - pos: 47.5,-39.5 - parent: 2 - type: Transform - - uid: 4489 - components: - - pos: 47.5,-38.5 - parent: 2 - type: Transform - - uid: 4490 - components: - - pos: 47.5,-37.5 - parent: 2 - type: Transform - - uid: 4873 - components: - - pos: -21.5,-20.5 - parent: 2 - type: Transform - - uid: 5297 - components: - - pos: -12.5,1.5 - parent: 2 - type: Transform - - uid: 5302 - components: - - pos: 4.5,19.5 - parent: 2 - type: Transform - - uid: 5362 - components: - - pos: 59.5,26.5 - parent: 2 - type: Transform - - uid: 5483 - components: - - pos: 72.5,33.5 - parent: 2 - type: Transform - - uid: 5484 - components: - - pos: 72.5,32.5 - parent: 2 - type: Transform - - uid: 5485 - components: - - pos: 72.5,31.5 - parent: 2 - type: Transform - - uid: 5486 - components: - - pos: 72.5,29.5 - parent: 2 - type: Transform - - uid: 5487 - components: - - pos: 72.5,28.5 - parent: 2 - type: Transform - - uid: 5488 - components: - - pos: 72.5,27.5 - parent: 2 - type: Transform - - uid: 5681 - components: - - pos: -8.5,14.5 - parent: 2 - type: Transform - - uid: 5751 - components: - - pos: 21.5,53.5 - parent: 2 - type: Transform - - uid: 5752 - components: - - pos: 22.5,53.5 - parent: 2 - type: Transform - - uid: 5753 - components: - - pos: 23.5,53.5 - parent: 2 - type: Transform - - uid: 5754 - components: - - pos: 24.5,53.5 - parent: 2 - type: Transform - - uid: 5755 - components: - - pos: 25.5,53.5 - parent: 2 - type: Transform - - uid: 5756 - components: - - pos: 26.5,53.5 - parent: 2 - type: Transform - - uid: 5757 - components: - - pos: 27.5,53.5 - parent: 2 - type: Transform - - uid: 5758 - components: - - pos: 28.5,53.5 - parent: 2 - type: Transform - - uid: 5759 - components: - - pos: 29.5,53.5 - parent: 2 - type: Transform - - uid: 5760 - components: - - pos: 30.5,53.5 - parent: 2 - type: Transform - - uid: 5761 - components: - - pos: 31.5,53.5 - parent: 2 - type: Transform - - uid: 5762 - components: - - pos: 32.5,53.5 - parent: 2 - type: Transform - - uid: 5763 - components: - - pos: 33.5,53.5 - parent: 2 - type: Transform - - uid: 5967 - components: - - pos: -20.5,-11.5 - parent: 2 - type: Transform - - uid: 6119 - components: - - pos: 12.5,-42.5 - parent: 2 - type: Transform - - uid: 6124 - components: - - pos: 8.5,-40.5 - parent: 2 - type: Transform - - uid: 6125 - components: - - pos: 8.5,-39.5 - parent: 2 - type: Transform - - uid: 6126 - components: - - pos: 9.5,-39.5 - parent: 2 - type: Transform - - uid: 6127 - components: - - pos: 10.5,-39.5 - parent: 2 - type: Transform - - uid: 6128 - components: - - pos: 11.5,-39.5 - parent: 2 - type: Transform - - uid: 6129 - components: - - pos: 12.5,-39.5 - parent: 2 - type: Transform - - uid: 6130 - components: - - pos: 8.5,-42.5 - parent: 2 - type: Transform - - uid: 6131 - components: - - pos: 8.5,-43.5 - parent: 2 - type: Transform - - uid: 6132 - components: - - pos: 9.5,-43.5 - parent: 2 - type: Transform - - uid: 6133 - components: - - pos: 11.5,-43.5 - parent: 2 - type: Transform - - uid: 6501 - components: - - pos: 42.5,-2.5 - parent: 2 - type: Transform - - uid: 6779 - components: - - pos: 1.5,14.5 - parent: 2 - type: Transform - - uid: 6781 - components: - - pos: -11.5,14.5 - parent: 2 - type: Transform - - uid: 6806 - components: - - pos: -7.5,-2.5 - parent: 2 - type: Transform - - uid: 6807 - components: - - pos: -7.5,-6.5 - parent: 2 - type: Transform - - uid: 6810 - components: - - pos: -13.5,-10.5 - parent: 2 - type: Transform - - uid: 6834 - components: - - pos: -27.5,-13.5 - parent: 2 - type: Transform - - uid: 6842 - components: - - pos: -4.5,-11.5 - parent: 2 - type: Transform - - uid: 6845 - components: - - pos: -6.5,-16.5 - parent: 2 - type: Transform - - uid: 6884 - components: - - pos: -7.5,-9.5 - parent: 2 - type: Transform - - uid: 6885 - components: - - pos: -8.5,-11.5 - parent: 2 - type: Transform - - uid: 6886 - components: - - pos: -7.5,-8.5 - parent: 2 - type: Transform - - uid: 6889 - components: - - pos: -7.5,-1.5 - parent: 2 - type: Transform - - uid: 6890 - components: - - pos: -7.5,-10.5 - parent: 2 - type: Transform - - uid: 6891 - components: - - pos: -9.5,-11.5 - parent: 2 - type: Transform - - uid: 6892 - components: - - pos: -6.5,-15.5 - parent: 2 - type: Transform - - uid: 7455 - components: - - pos: -15.5,14.5 - parent: 2 - type: Transform - - uid: 7456 - components: - - pos: -16.5,14.5 - parent: 2 - type: Transform - - uid: 7465 - components: - - pos: -8.5,1.5 - parent: 2 - type: Transform - - uid: 7564 - components: - - pos: -17.5,14.5 - parent: 2 - type: Transform - - uid: 7666 - components: - - pos: 2.5,6.5 - parent: 2 - type: Transform - - uid: 7706 - components: - - pos: -13.5,14.5 - parent: 2 - type: Transform - - uid: 7721 - components: - - pos: -3.5,2.5 - parent: 2 - type: Transform - - uid: 7733 - components: - - pos: -4.5,-4.5 - parent: 2 - type: Transform - - uid: 7734 - components: - - pos: -3.5,-2.5 - parent: 2 - type: Transform - - uid: 7735 - components: - - pos: -1.5,-2.5 - parent: 2 - type: Transform - - uid: 7783 - components: - - pos: -14.5,14.5 - parent: 2 - type: Transform - - uid: 7795 - components: - - pos: 52.5,25.5 - parent: 2 - type: Transform - - uid: 7799 - components: - - pos: 52.5,23.5 - parent: 2 - type: Transform - - uid: 7867 - components: - - pos: -3.5,1.5 - parent: 2 - type: Transform - - uid: 7868 - components: - - pos: 1.5,1.5 - parent: 2 - type: Transform - - uid: 7869 - components: - - pos: -1.5,1.5 - parent: 2 - type: Transform - - uid: 7871 - components: - - pos: -5.5,1.5 - parent: 2 - type: Transform - - uid: 7872 - components: - - pos: 2.5,3.5 - parent: 2 - type: Transform - - uid: 7873 - components: - - pos: 2.5,2.5 - parent: 2 - type: Transform - - uid: 7874 - components: - - pos: 2.5,4.5 - parent: 2 - type: Transform - - uid: 7877 - components: - - pos: 2.5,12.5 - parent: 2 - type: Transform - - uid: 7887 - components: - - pos: -5.5,2.5 - parent: 2 - type: Transform - - uid: 7893 - components: - - pos: 2.5,10.5 - parent: 2 - type: Transform - - uid: 7941 - components: - - pos: -1.5,2.5 - parent: 2 - type: Transform - - uid: 7944 - components: - - pos: 2.5,7.5 - parent: 2 - type: Transform - - uid: 7948 - components: - - pos: 0.5,1.5 - parent: 2 - type: Transform - - uid: 7951 - components: - - pos: 2.5,8.5 - parent: 2 - type: Transform - - uid: 8667 - components: - - pos: 64.5,26.5 - parent: 2 - type: Transform - - uid: 8668 - components: - - pos: 63.5,26.5 - parent: 2 - type: Transform - - uid: 8719 - components: - - pos: 92.5,-17.5 - parent: 2 - type: Transform - - uid: 8721 - components: - - pos: 95.5,-17.5 - parent: 2 - type: Transform - - uid: 8722 - components: - - pos: 97.5,-22.5 - parent: 2 - type: Transform - - uid: 8725 - components: - - pos: 96.5,-17.5 - parent: 2 - type: Transform - - uid: 8727 - components: - - pos: 98.5,-17.5 - parent: 2 - type: Transform - - uid: 8729 - components: - - pos: 93.5,-17.5 - parent: 2 - type: Transform - - uid: 8732 - components: - - pos: 95.5,-22.5 - parent: 2 - type: Transform - - uid: 8733 - components: - - pos: 94.5,-22.5 - parent: 2 - type: Transform - - uid: 8734 - components: - - pos: 93.5,-22.5 - parent: 2 - type: Transform - - uid: 8735 - components: - - pos: 92.5,-22.5 - parent: 2 - type: Transform - - uid: 8775 - components: - - pos: 105.5,-9.5 - parent: 2 - type: Transform - - uid: 8776 - components: - - pos: 106.5,-9.5 - parent: 2 - type: Transform - - uid: 8777 - components: - - pos: 107.5,-9.5 - parent: 2 - type: Transform - - uid: 8783 - components: - - pos: 99.5,-17.5 - parent: 2 - type: Transform - - uid: 8784 - components: - - pos: 100.5,-17.5 - parent: 2 - type: Transform - - uid: 8785 - components: - - pos: 100.5,-22.5 - parent: 2 - type: Transform - - uid: 8786 - components: - - pos: 99.5,-22.5 - parent: 2 - type: Transform - - uid: 8799 - components: - - pos: 105.5,-25.5 - parent: 2 - type: Transform - - uid: 8800 - components: - - pos: 106.5,-25.5 - parent: 2 - type: Transform - - uid: 8801 - components: - - pos: 107.5,-25.5 - parent: 2 - type: Transform - - uid: 8806 - components: - - pos: 105.5,-20.5 - parent: 2 - type: Transform - - uid: 8807 - components: - - pos: 107.5,-20.5 - parent: 2 - type: Transform - - uid: 8837 - components: - - pos: 105.5,-14.5 - parent: 2 - type: Transform - - uid: 8838 - components: - - pos: 107.5,-14.5 - parent: 2 - type: Transform - - uid: 8871 - components: - - pos: 115.5,-20.5 - parent: 2 - type: Transform - - uid: 8872 - components: - - pos: 114.5,-20.5 - parent: 2 - type: Transform - - uid: 8873 - components: - - pos: 112.5,-20.5 - parent: 2 - type: Transform - - uid: 8874 - components: - - pos: 111.5,-20.5 - parent: 2 - type: Transform - - uid: 8889 - components: - - pos: 110.5,-21.5 - parent: 2 - type: Transform - - uid: 8890 - components: - - pos: 110.5,-22.5 - parent: 2 - type: Transform - - uid: 8891 - components: - - pos: 110.5,-23.5 - parent: 2 - type: Transform - - uid: 8892 - components: - - pos: 110.5,-24.5 - parent: 2 - type: Transform - - uid: 8893 - components: - - pos: 110.5,-25.5 - parent: 2 - type: Transform - - uid: 8894 - components: - - pos: 111.5,-25.5 - parent: 2 - type: Transform - - uid: 8895 - components: - - pos: 112.5,-25.5 - parent: 2 - type: Transform - - uid: 8896 - components: - - pos: 113.5,-25.5 - parent: 2 - type: Transform - - uid: 8897 - components: - - pos: 114.5,-25.5 - parent: 2 - type: Transform - - uid: 8898 - components: - - pos: 115.5,-25.5 - parent: 2 - type: Transform - - uid: 8899 - components: - - pos: 116.5,-25.5 - parent: 2 - type: Transform - - uid: 8900 - components: - - pos: 116.5,-24.5 - parent: 2 - type: Transform - - uid: 8901 - components: - - pos: 116.5,-23.5 - parent: 2 - type: Transform - - uid: 8902 - components: - - pos: 116.5,-22.5 - parent: 2 - type: Transform - - uid: 8903 - components: - - pos: 116.5,-21.5 - parent: 2 - type: Transform - - uid: 8938 - components: - - pos: 111.5,-14.5 - parent: 2 - type: Transform - - uid: 8939 - components: - - pos: 112.5,-14.5 - parent: 2 - type: Transform - - uid: 8940 - components: - - pos: 114.5,-14.5 - parent: 2 - type: Transform - - uid: 8941 - components: - - pos: 115.5,-14.5 - parent: 2 - type: Transform - - uid: 8951 - components: - - pos: 116.5,-15.5 - parent: 2 - type: Transform - - uid: 8952 - components: - - pos: 116.5,-16.5 - parent: 2 - type: Transform - - uid: 8953 - components: - - pos: 116.5,-18.5 - parent: 2 - type: Transform - - uid: 8954 - components: - - pos: 116.5,-19.5 - parent: 2 - type: Transform - - uid: 8987 - components: - - pos: 110.5,-13.5 - parent: 2 - type: Transform - - uid: 8988 - components: - - pos: 110.5,-12.5 - parent: 2 - type: Transform - - uid: 8989 - components: - - pos: 110.5,-11.5 - parent: 2 - type: Transform - - uid: 8990 - components: - - pos: 110.5,-10.5 - parent: 2 - type: Transform - - uid: 8991 - components: - - pos: 110.5,-9.5 - parent: 2 - type: Transform - - uid: 8992 - components: - - pos: 111.5,-9.5 - parent: 2 - type: Transform - - uid: 8993 - components: - - pos: 112.5,-9.5 - parent: 2 - type: Transform - - uid: 8994 - components: - - pos: 113.5,-9.5 - parent: 2 - type: Transform - - uid: 8995 - components: - - pos: 114.5,-9.5 - parent: 2 - type: Transform - - uid: 8996 - components: - - pos: 115.5,-9.5 - parent: 2 - type: Transform - - uid: 8997 - components: - - pos: 116.5,-9.5 - parent: 2 - type: Transform - - uid: 8998 - components: - - pos: 116.5,-10.5 - parent: 2 - type: Transform - - uid: 8999 - components: - - pos: 116.5,-11.5 - parent: 2 - type: Transform - - uid: 9000 - components: - - pos: 116.5,-12.5 - parent: 2 - type: Transform - - uid: 9001 - components: - - pos: 116.5,-13.5 - parent: 2 - type: Transform - - uid: 9065 - components: - - pos: 117.5,-14.5 - parent: 2 - type: Transform - - uid: 9066 - components: - - pos: 118.5,-14.5 - parent: 2 - type: Transform - - uid: 9067 - components: - - pos: 119.5,-14.5 - parent: 2 - type: Transform - - uid: 9068 - components: - - pos: 120.5,-14.5 - parent: 2 - type: Transform - - uid: 9069 - components: - - pos: 121.5,-14.5 - parent: 2 - type: Transform - - uid: 9070 - components: - - pos: 121.5,-15.5 - parent: 2 - type: Transform - - uid: 9071 - components: - - pos: 121.5,-16.5 - parent: 2 - type: Transform - - uid: 9072 - components: - - pos: 121.5,-17.5 - parent: 2 - type: Transform - - uid: 9073 - components: - - pos: 121.5,-18.5 - parent: 2 - type: Transform - - uid: 9074 - components: - - pos: 121.5,-19.5 - parent: 2 - type: Transform - - uid: 9075 - components: - - pos: 121.5,-20.5 - parent: 2 - type: Transform - - uid: 9076 - components: - - pos: 120.5,-20.5 - parent: 2 - type: Transform - - uid: 9077 - components: - - pos: 119.5,-20.5 - parent: 2 - type: Transform - - uid: 9078 - components: - - pos: 118.5,-20.5 - parent: 2 - type: Transform - - uid: 9079 - components: - - pos: 117.5,-20.5 - parent: 2 - type: Transform - - uid: 10084 - components: - - pos: 60.5,26.5 - parent: 2 - type: Transform - - uid: 10801 - components: - - pos: 85.5,-14.5 - parent: 2 - type: Transform - - uid: 10951 - components: - - pos: 27.5,-59.5 - parent: 2 - type: Transform - - uid: 10952 - components: - - pos: 28.5,-59.5 - parent: 2 - type: Transform - - uid: 10961 - components: - - pos: 25.5,-59.5 - parent: 2 - type: Transform - - uid: 11070 - components: - - pos: 6.5,19.5 - parent: 2 - type: Transform - - uid: 11309 - components: - - pos: 58.5,-3.5 - parent: 2 - type: Transform - - uid: 11310 - components: - - pos: 58.5,-4.5 - parent: 2 - type: Transform - - uid: 11414 - components: - - pos: 58.5,-7.5 - parent: 2 - type: Transform - - uid: 11532 - components: - - pos: 77.5,19.5 - parent: 2 - type: Transform - - uid: 11533 - components: - - pos: 78.5,18.5 - parent: 2 - type: Transform - - uid: 11534 - components: - - pos: 79.5,18.5 - parent: 2 - type: Transform - - uid: 11535 - components: - - pos: 80.5,16.5 - parent: 2 - type: Transform - - uid: 11536 - components: - - pos: 81.5,16.5 - parent: 2 - type: Transform - - uid: 11537 - components: - - pos: 84.5,15.5 - parent: 2 - type: Transform - - uid: 11538 - components: - - pos: 83.5,15.5 - parent: 2 - type: Transform - - uid: 11539 - components: - - pos: 82.5,15.5 - parent: 2 - type: Transform - - uid: 11540 - components: - - pos: 86.5,-23.5 - parent: 2 - type: Transform - - uid: 11541 - components: - - pos: 87.5,-23.5 - parent: 2 - type: Transform - - uid: 11542 - components: - - pos: 85.5,-25.5 - parent: 2 - type: Transform - - uid: 11543 - components: - - pos: 84.5,-25.5 - parent: 2 - type: Transform - - uid: 11544 - components: - - pos: 83.5,-25.5 - parent: 2 - type: Transform - - uid: 11545 - components: - - pos: 82.5,-25.5 - parent: 2 - type: Transform - - uid: 11546 - components: - - pos: 80.5,-24.5 - parent: 2 - type: Transform - - uid: 11547 - components: - - pos: 79.5,-24.5 - parent: 2 - type: Transform - - uid: 11548 - components: - - pos: 77.5,-24.5 - parent: 2 - type: Transform - - uid: 11549 - components: - - pos: 76.5,-24.5 - parent: 2 - type: Transform - - uid: 11550 - components: - - pos: 58.5,-25.5 - parent: 2 - type: Transform - - uid: 11551 - components: - - pos: 58.5,-26.5 - parent: 2 - type: Transform - - uid: 11552 - components: - - pos: 58.5,-27.5 - parent: 2 - type: Transform - - uid: 11553 - components: - - pos: 58.5,-28.5 - parent: 2 - type: Transform - - uid: 11554 - components: - - pos: 58.5,-29.5 - parent: 2 - type: Transform - - uid: 11555 - components: - - pos: 58.5,-30.5 - parent: 2 - type: Transform - - uid: 11556 - components: - - pos: 58.5,-31.5 - parent: 2 - type: Transform - - uid: 11557 - components: - - pos: 58.5,-32.5 - parent: 2 - type: Transform - - uid: 11558 - components: - - pos: 58.5,-33.5 - parent: 2 - type: Transform - - uid: 11559 - components: - - pos: 58.5,-34.5 - parent: 2 - type: Transform - - uid: 11560 - components: - - pos: 57.5,-34.5 - parent: 2 - type: Transform - - uid: 11561 - components: - - pos: 56.5,-34.5 - parent: 2 - type: Transform - - uid: 11562 - components: - - pos: 74.5,-25.5 - parent: 2 - type: Transform - - uid: 11563 - components: - - pos: 73.5,-25.5 - parent: 2 - type: Transform - - uid: 11564 - components: - - pos: 72.5,-25.5 - parent: 2 - type: Transform - - uid: 11565 - components: - - pos: 70.5,-25.5 - parent: 2 - type: Transform - - uid: 11566 - components: - - pos: 69.5,-25.5 - parent: 2 - type: Transform - - uid: 11567 - components: - - pos: 67.5,-25.5 - parent: 2 - type: Transform - - uid: 11568 - components: - - pos: 66.5,-25.5 - parent: 2 - type: Transform - - uid: 11569 - components: - - pos: 65.5,-25.5 - parent: 2 - type: Transform - - uid: 11570 - components: - - pos: 64.5,-25.5 - parent: 2 - type: Transform - - uid: 11571 - components: - - pos: 63.5,-25.5 - parent: 2 - type: Transform - - uid: 11572 - components: - - pos: 59.5,-25.5 - parent: 2 - type: Transform - - uid: 11573 - components: - - pos: 60.5,-25.5 - parent: 2 - type: Transform - - uid: 11574 - components: - - pos: 61.5,-25.5 - parent: 2 - type: Transform - - uid: 11575 - components: - - pos: 29.5,-60.5 - parent: 2 - type: Transform - - uid: 11582 - components: - - pos: 52.5,-36.5 - parent: 2 - type: Transform - - uid: 11583 - components: - - pos: 52.5,-37.5 - parent: 2 - type: Transform - - uid: 11584 - components: - - pos: 52.5,-38.5 - parent: 2 - type: Transform - - uid: 11585 - components: - - pos: 52.5,-39.5 - parent: 2 - type: Transform - - uid: 11589 - components: - - pos: 47.5,-55.5 - parent: 2 - type: Transform - - uid: 11590 - components: - - pos: 48.5,-55.5 - parent: 2 - type: Transform - - uid: 11591 - components: - - pos: 47.5,-57.5 - parent: 2 - type: Transform - - uid: 11592 - components: - - pos: 47.5,-58.5 - parent: 2 - type: Transform - - uid: 11593 - components: - - pos: 47.5,-59.5 - parent: 2 - type: Transform - - uid: 11594 - components: - - pos: 47.5,-60.5 - parent: 2 - type: Transform - - uid: 11595 - components: - - pos: 45.5,-60.5 - parent: 2 - type: Transform - - uid: 11596 - components: - - pos: 44.5,-60.5 - parent: 2 - type: Transform - - uid: 11597 - components: - - pos: 43.5,-60.5 - parent: 2 - type: Transform - - uid: 11598 - components: - - pos: 41.5,-60.5 - parent: 2 - type: Transform - - uid: 11599 - components: - - pos: 40.5,-60.5 - parent: 2 - type: Transform - - uid: 11600 - components: - - pos: 54.5,-35.5 - parent: 2 - type: Transform - - uid: 11601 - components: - - pos: -2.5,-28.5 - parent: 2 - type: Transform - - uid: 11602 - components: - - pos: -3.5,-28.5 - parent: 2 - type: Transform - - uid: 11603 - components: - - pos: -4.5,-28.5 - parent: 2 - type: Transform - - uid: 11604 - components: - - pos: -5.5,-28.5 - parent: 2 - type: Transform - - uid: 11605 - components: - - pos: -6.5,-28.5 - parent: 2 - type: Transform - - uid: 11606 - components: - - pos: -7.5,-28.5 - parent: 2 - type: Transform - - uid: 11607 - components: - - pos: -8.5,-28.5 - parent: 2 - type: Transform - - uid: 11608 - components: - - pos: -9.5,-28.5 - parent: 2 - type: Transform - - uid: 11609 - components: - - pos: -10.5,-28.5 - parent: 2 - type: Transform - - uid: 11610 - components: - - pos: -11.5,-28.5 - parent: 2 - type: Transform - - uid: 11611 - components: - - pos: -12.5,-28.5 - parent: 2 - type: Transform - - uid: 11612 - components: - - pos: -13.5,-28.5 - parent: 2 - type: Transform - - uid: 11613 - components: - - pos: -14.5,-28.5 - parent: 2 - type: Transform - - uid: 11614 - components: - - pos: -15.5,-28.5 - parent: 2 - type: Transform - - uid: 11615 - components: - - pos: -16.5,-28.5 - parent: 2 - type: Transform - - uid: 11616 - components: - - pos: -16.5,-29.5 - parent: 2 - type: Transform - - uid: 11617 - components: - - pos: -16.5,-30.5 - parent: 2 - type: Transform - - uid: 11618 - components: - - pos: -16.5,-32.5 - parent: 2 - type: Transform - - uid: 11619 - components: - - pos: -17.5,-32.5 - parent: 2 - type: Transform - - uid: 11620 - components: - - pos: -18.5,-32.5 - parent: 2 - type: Transform - - uid: 11621 - components: - - pos: -18.5,-33.5 - parent: 2 - type: Transform - - uid: 11622 - components: - - pos: -18.5,-34.5 - parent: 2 - type: Transform - - uid: 11623 - components: - - pos: -18.5,-35.5 - parent: 2 - type: Transform - - uid: 11624 - components: - - pos: -18.5,-36.5 - parent: 2 - type: Transform - - uid: 11625 - components: - - pos: -18.5,-37.5 - parent: 2 - type: Transform - - uid: 11626 - components: - - pos: -18.5,-38.5 - parent: 2 - type: Transform - - uid: 11627 - components: - - pos: -17.5,-38.5 - parent: 2 - type: Transform - - uid: 11628 - components: - - pos: -16.5,-38.5 - parent: 2 - type: Transform - - uid: 11629 - components: - - pos: -2.5,-41.5 - parent: 2 - type: Transform - - uid: 11630 - components: - - pos: -2.5,-42.5 - parent: 2 - type: Transform - - uid: 11631 - components: - - pos: -3.5,-42.5 - parent: 2 - type: Transform - - uid: 11632 - components: - - pos: -4.5,-42.5 - parent: 2 - type: Transform - - uid: 11633 - components: - - pos: -5.5,-42.5 - parent: 2 - type: Transform - - uid: 11634 - components: - - pos: -6.5,-42.5 - parent: 2 - type: Transform - - uid: 11635 - components: - - pos: -7.5,-42.5 - parent: 2 - type: Transform - - uid: 11636 - components: - - pos: -8.5,-42.5 - parent: 2 - type: Transform - - uid: 11637 - components: - - pos: -9.5,-42.5 - parent: 2 - type: Transform - - uid: 11638 - components: - - pos: -10.5,-42.5 - parent: 2 - type: Transform - - uid: 11639 - components: - - pos: -11.5,-42.5 - parent: 2 - type: Transform - - uid: 11640 - components: - - pos: -12.5,-42.5 - parent: 2 - type: Transform - - uid: 11641 - components: - - pos: -13.5,-42.5 - parent: 2 - type: Transform - - uid: 11642 - components: - - pos: -14.5,-42.5 - parent: 2 - type: Transform - - uid: 11643 - components: - - pos: -16.5,-40.5 - parent: 2 - type: Transform - - uid: 11644 - components: - - pos: -16.5,-41.5 - parent: 2 - type: Transform - - uid: 11645 - components: - - pos: -16.5,-42.5 - parent: 2 - type: Transform - - uid: 11646 - components: - - pos: -15.5,-42.5 - parent: 2 - type: Transform - - uid: 11647 - components: - - pos: 89.5,42.5 - parent: 2 - type: Transform - - uid: 11648 - components: - - pos: 90.5,42.5 - parent: 2 - type: Transform - - uid: 11649 - components: - - pos: 91.5,42.5 - parent: 2 - type: Transform - - uid: 11650 - components: - - pos: 91.5,43.5 - parent: 2 - type: Transform - - uid: 11651 - components: - - pos: 91.5,44.5 - parent: 2 - type: Transform - - uid: 11652 - components: - - pos: 91.5,45.5 - parent: 2 - type: Transform - - uid: 11653 - components: - - pos: 91.5,46.5 - parent: 2 - type: Transform - - uid: 11654 - components: - - pos: 91.5,47.5 - parent: 2 - type: Transform - - uid: 11655 - components: - - pos: 91.5,48.5 - parent: 2 - type: Transform - - uid: 11656 - components: - - pos: 90.5,48.5 - parent: 2 - type: Transform - - uid: 11657 - components: - - pos: 89.5,48.5 - parent: 2 - type: Transform - - uid: 11658 - components: - - pos: 74.5,51.5 - parent: 2 - type: Transform - - uid: 11659 - components: - - pos: 75.5,51.5 - parent: 2 - type: Transform - - uid: 11660 - components: - - pos: 76.5,51.5 - parent: 2 - type: Transform - - uid: 11661 - components: - - pos: 77.5,51.5 - parent: 2 - type: Transform - - uid: 11662 - components: - - pos: 78.5,51.5 - parent: 2 - type: Transform - - uid: 11663 - components: - - pos: 79.5,51.5 - parent: 2 - type: Transform - - uid: 11664 - components: - - pos: 81.5,51.5 - parent: 2 - type: Transform - - uid: 11665 - components: - - pos: 80.5,51.5 - parent: 2 - type: Transform - - uid: 11666 - components: - - pos: 82.5,51.5 - parent: 2 - type: Transform - - uid: 11667 - components: - - pos: 83.5,51.5 - parent: 2 - type: Transform - - uid: 11668 - components: - - pos: 84.5,51.5 - parent: 2 - type: Transform - - uid: 11669 - components: - - pos: 85.5,51.5 - parent: 2 - type: Transform - - uid: 11670 - components: - - pos: 86.5,51.5 - parent: 2 - type: Transform - - uid: 11671 - components: - - pos: 87.5,51.5 - parent: 2 - type: Transform - - uid: 11672 - components: - - pos: 88.5,51.5 - parent: 2 - type: Transform - - uid: 11673 - components: - - pos: 76.5,38.5 - parent: 2 - type: Transform - - uid: 11674 - components: - - pos: 77.5,38.5 - parent: 2 - type: Transform - - uid: 11675 - components: - - pos: 78.5,38.5 - parent: 2 - type: Transform - - uid: 11676 - components: - - pos: 79.5,38.5 - parent: 2 - type: Transform - - uid: 11677 - components: - - pos: 80.5,38.5 - parent: 2 - type: Transform - - uid: 11678 - components: - - pos: 81.5,38.5 - parent: 2 - type: Transform - - uid: 11679 - components: - - pos: 82.5,38.5 - parent: 2 - type: Transform - - uid: 11680 - components: - - pos: 83.5,38.5 - parent: 2 - type: Transform - - uid: 11681 - components: - - pos: 84.5,38.5 - parent: 2 - type: Transform - - uid: 11682 - components: - - pos: 85.5,38.5 - parent: 2 - type: Transform - - uid: 11683 - components: - - pos: 86.5,38.5 - parent: 2 - type: Transform - - uid: 11684 - components: - - pos: 87.5,38.5 - parent: 2 - type: Transform - - uid: 11685 - components: - - pos: 88.5,38.5 - parent: 2 - type: Transform - - uid: 11686 - components: - - pos: 15.5,47.5 - parent: 2 - type: Transform - - uid: 11687 - components: - - pos: 14.5,47.5 - parent: 2 - type: Transform - - uid: 11688 - components: - - pos: 13.5,47.5 - parent: 2 - type: Transform - - uid: 11689 - components: - - pos: 7.5,47.5 - parent: 2 - type: Transform - - uid: 11690 - components: - - pos: 6.5,47.5 - parent: 2 - type: Transform - - uid: 11691 - components: - - pos: 5.5,46.5 - parent: 2 - type: Transform - - uid: 11692 - components: - - pos: 5.5,45.5 - parent: 2 - type: Transform - - uid: 11693 - components: - - pos: 5.5,44.5 - parent: 2 - type: Transform - - uid: 11694 - components: - - pos: 5.5,43.5 - parent: 2 - type: Transform - - uid: 11695 - components: - - pos: 41.5,52.5 - parent: 2 - type: Transform - - uid: 11696 - components: - - pos: 40.5,52.5 - parent: 2 - type: Transform - - uid: 11697 - components: - - pos: 38.5,52.5 - parent: 2 - type: Transform - - uid: 11698 - components: - - pos: 39.5,52.5 - parent: 2 - type: Transform - - uid: 11886 - components: - - pos: 69.5,4.5 - parent: 2 - type: Transform - - uid: 11887 - components: - - pos: 69.5,5.5 - parent: 2 - type: Transform - - uid: 11888 - components: - - pos: 69.5,6.5 - parent: 2 - type: Transform - - uid: 11889 - components: - - pos: 70.5,3.5 - parent: 2 - type: Transform - - uid: 11891 - components: - - pos: 72.5,3.5 - parent: 2 - type: Transform - - uid: 11894 - components: - - pos: 73.5,3.5 - parent: 2 - type: Transform - - uid: 12912 - components: - - pos: 45.5,-48.5 - parent: 2 - type: Transform - - uid: 12913 - components: - - pos: 45.5,-47.5 - parent: 2 - type: Transform - - uid: 12914 - components: - - pos: 45.5,-46.5 - parent: 2 - type: Transform - - uid: 12915 - components: - - pos: 45.5,-45.5 - parent: 2 - type: Transform - - uid: 12916 - components: - - pos: 45.5,-44.5 - parent: 2 - type: Transform - - uid: 12917 - components: - - pos: 43.5,-49.5 - parent: 2 - type: Transform - - uid: 12918 - components: - - pos: 42.5,-49.5 - parent: 2 - type: Transform - - uid: 12919 - components: - - pos: 41.5,-49.5 - parent: 2 - type: Transform -- proto: GrilleBroken - entities: - - uid: 6 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-21.5 - parent: 2 - type: Transform - - uid: 192 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-20.5 - parent: 2 - type: Transform - - uid: 239 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-21.5 - parent: 2 - type: Transform - - uid: 242 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-20.5 - parent: 2 - type: Transform - - uid: 1247 - components: - - pos: 35.5,-58.5 - parent: 2 - type: Transform - - uid: 1335 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-21.5 - parent: 2 - type: Transform - - uid: 2401 - components: - - pos: 89.5,-6.5 - parent: 2 - type: Transform - - uid: 3986 - components: - - pos: 16.5,-59.5 - parent: 2 - type: Transform - - uid: 3988 - components: - - pos: 23.5,-59.5 - parent: 2 - type: Transform - - uid: 5966 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-20.5 - parent: 2 - type: Transform -- proto: GunSafeLaserCarbine - entities: - - uid: 2126 - components: - - pos: 41.5,27.5 - parent: 2 - type: Transform -- proto: GunSafePistolMk58 - entities: - - uid: 2131 - components: - - pos: 38.5,26.5 - parent: 2 - type: Transform -- proto: GunSafeShotgunKammerer - entities: - - uid: 2117 - components: - - pos: 41.5,26.5 - parent: 2 - type: Transform -- proto: Handcuffs - entities: - - uid: 9397 - components: - - pos: 25.512451,48.501656 - parent: 2 - type: Transform -- proto: HandheldHealthAnalyzer - entities: - - uid: 12160 - components: - - pos: 82.45164,-4.4459476 - parent: 2 - type: Transform - - uid: 12368 - components: - - pos: 38.482082,-17.438766 - parent: 2 - type: Transform -- proto: HandheldStationMap - entities: - - uid: 9400 - components: - - pos: 28.498549,47.61997 - parent: 2 - type: Transform -- proto: HandLabeler - entities: - - uid: 5073 - components: - - pos: 52.284637,-7.299825 - parent: 2 - type: Transform - - uid: 5319 - components: - - pos: 49.532963,19.552088 - parent: 2 - type: Transform - - uid: 5320 - components: - - pos: 49.532963,17.552088 - parent: 2 - type: Transform -- proto: HarmonicaInstrument - entities: - - uid: 2957 - components: - - pos: 39.821617,32.534893 - parent: 2 - type: Transform -- proto: HarpInstrument - entities: - - uid: 8319 - components: - - pos: 20.5,-10.5 - parent: 2 - type: Transform -- proto: HeatExchanger - entities: - - uid: 4492 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-51.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - uid: 12861 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-52.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - uid: 12862 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-53.5 - parent: 2 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - uid: 12904 - components: - - rot: 3.141592653589793 rad - pos: 48.5,-45.5 - parent: 2 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor -- proto: Hemostat - entities: - - uid: 10071 - components: - - pos: 67.49741,-3.281434 - parent: 2 - type: Transform -- proto: HighSecCommandLocked - entities: - - uid: 1744 - components: - - pos: 39.5,-16.5 - parent: 2 - type: Transform - - uid: 2912 - components: - - pos: 56.5,28.5 - parent: 2 - type: Transform - - uid: 9110 - components: - - pos: 18.5,38.5 - parent: 2 - type: Transform -- proto: HospitalCurtainsOpen - entities: - - uid: 4682 - components: - - pos: 24.5,-11.5 - parent: 2 - type: Transform - - uid: 5049 - components: - - pos: 61.5,-8.5 - parent: 2 - type: Transform - - uid: 5744 - components: - - pos: 12.5,12.5 - parent: 2 - type: Transform - - uid: 5750 - components: - - pos: 24.5,-10.5 - parent: 2 - type: Transform - - uid: 8827 - components: - - pos: 102.5,-13.5 - parent: 2 - type: Transform - - uid: 11749 - components: - - pos: 59.5,2.5 - parent: 2 - type: Transform - - uid: 11750 - components: - - pos: 60.5,2.5 - parent: 2 - type: Transform - - uid: 11754 - components: - - pos: 62.5,2.5 - parent: 2 - type: Transform - - uid: 11755 - components: - - pos: 61.5,2.5 - parent: 2 - type: Transform - - uid: 11759 - components: - - pos: 63.5,2.5 - parent: 2 - type: Transform - - uid: 11762 - components: - - pos: 64.5,2.5 - parent: 2 - type: Transform - - uid: 11763 - components: - - pos: 65.5,2.5 - parent: 2 - type: Transform - - uid: 11849 - components: - - pos: 58.5,-6.5 - parent: 2 - type: Transform - - uid: 11850 - components: - - pos: 58.5,-5.5 - parent: 2 - type: Transform - - uid: 11902 - components: - - pos: 78.5,10.5 - parent: 2 - type: Transform - - uid: 11903 - components: - - pos: 77.5,10.5 - parent: 2 - type: Transform - - uid: 12254 - components: - - pos: 16.5,12.5 - parent: 2 - type: Transform - - uid: 12255 - components: - - pos: 15.5,12.5 - parent: 2 - type: Transform - - uid: 12256 - components: - - pos: 14.5,12.5 - parent: 2 - type: Transform - - uid: 12257 - components: - - pos: 14.5,14.5 - parent: 2 - type: Transform - - uid: 12258 - components: - - pos: 15.5,14.5 - parent: 2 - type: Transform - - uid: 12259 - components: - - pos: 16.5,14.5 - parent: 2 - type: Transform - - uid: 12260 - components: - - pos: 16.5,16.5 - parent: 2 - type: Transform - - uid: 12261 - components: - - pos: 15.5,16.5 - parent: 2 - type: Transform - - uid: 12262 - components: - - pos: 14.5,16.5 - parent: 2 - type: Transform - - uid: 12834 - components: - - pos: 66.5,2.5 - parent: 2 - type: Transform - - uid: 12835 - components: - - pos: 67.5,2.5 - parent: 2 - type: Transform -- proto: HydroponicsToolHatchet - entities: - - uid: 11125 - components: - - pos: 54.473648,-13.481342 - parent: 2 - type: Transform -- proto: HydroponicsToolMiniHoe - entities: - - uid: 6755 - components: - - pos: 44.63281,-5.3896046 - parent: 2 - type: Transform -- proto: hydroponicsTray - entities: - - uid: 2300 - components: - - pos: 36.5,34.5 - parent: 2 - type: Transform - - uid: 2301 - components: - - pos: 36.5,33.5 - parent: 2 - type: Transform - - uid: 2302 - components: - - pos: 38.5,34.5 - parent: 2 - type: Transform - - uid: 2303 - components: - - pos: 38.5,33.5 - parent: 2 - type: Transform - - uid: 6665 - components: - - pos: 43.5,-9.5 - parent: 2 - type: Transform - - uid: 6666 - components: - - pos: 43.5,-7.5 - parent: 2 - type: Transform - - uid: 6667 - components: - - pos: 44.5,-7.5 - parent: 2 - type: Transform - - uid: 6668 - components: - - pos: 45.5,-7.5 - parent: 2 - type: Transform - - uid: 6669 - components: - - pos: 47.5,-5.5 - parent: 2 - type: Transform - - uid: 6670 - components: - - pos: 47.5,-4.5 - parent: 2 - type: Transform - - uid: 6671 - components: - - pos: 45.5,-5.5 - parent: 2 - type: Transform - - uid: 6673 - components: - - pos: 43.5,-5.5 - parent: 2 - type: Transform - - uid: 6674 - components: - - pos: 41.5,-5.5 - parent: 2 - type: Transform - - uid: 6675 - components: - - pos: 41.5,-4.5 - parent: 2 - type: Transform -- proto: InflatableWall - entities: - - uid: 6524 - components: - - pos: 87.5,-7.5 - parent: 2 - type: Transform - - uid: 6729 - components: - - pos: 86.5,-7.5 - parent: 2 - type: Transform - - uid: 6730 - components: - - pos: 82.5,5.5 - parent: 2 - type: Transform - - uid: 6731 - components: - - pos: 82.5,4.5 - parent: 2 - type: Transform -- proto: IngotGold - entities: - - uid: 8824 - components: - - pos: 89.45974,-12.337885 - parent: 2 - type: Transform - - uid: 12098 - components: - - pos: 19.521435,41.66655 - parent: 2 - type: Transform -- proto: IngotSilver - entities: - - uid: 12100 - components: - - pos: 17.552685,41.54155 - parent: 2 - type: Transform -- proto: IntercomCommand - entities: - - uid: 4587 - components: - - pos: 12.5,-34.5 - parent: 2 - type: Transform - - uid: 7583 - components: - - pos: 44.5,26.5 - parent: 2 - type: Transform - - uid: 9436 - components: - - pos: 25.5,42.5 - parent: 2 - type: Transform - - uid: 9437 - components: - - pos: 33.5,41.5 - parent: 2 - type: Transform - - uid: 11408 - components: - - pos: 17.5,-2.5 - parent: 2 - type: Transform -- proto: IntercomCommon - entities: - - uid: 4989 - components: - - pos: 16.5,11.5 - parent: 2 - type: Transform - - uid: 7816 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-15.5 - parent: 2 - type: Transform - - uid: 8986 - components: - - pos: 32.5,16.5 - parent: 2 - type: Transform -- proto: IntercomEngineering - entities: - - uid: 4692 - components: - - pos: 30.5,-29.5 - parent: 2 - type: Transform - - uid: 4769 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-25.5 - parent: 2 - type: Transform -- proto: IntercomMedical - entities: - - uid: 11407 - components: - - pos: 48.5,1.5 - parent: 2 - type: Transform -- proto: IntercomScience - entities: - - uid: 5107 - components: - - pos: 48.5,20.5 - parent: 2 - type: Transform -- proto: IntercomSecurity - entities: - - uid: 7582 - components: - - pos: 28.5,26.5 - parent: 2 - type: Transform -- proto: IntercomSupply - entities: - - uid: 7743 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,25.5 - parent: 2 - type: Transform -- proto: JanitorialTrolley - entities: - - uid: 12234 - components: - - pos: 4.5,-6.5 - parent: 2 - type: Transform -- proto: JetpackBlueFilled - entities: - - uid: 12827 - components: - - flags: InContainer - type: MetaData - - parent: 12094 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: JetpackMiniFilled - entities: - - uid: 10308 - components: - - pos: 8.484015,-9.278149 - parent: 2 - type: Transform - - uid: 10309 - components: - - pos: 8.484015,-9.496899 - parent: 2 - type: Transform -- proto: KitchenKnife - entities: - - uid: 11124 - components: - - pos: 54.489273,-13.512592 - parent: 2 - type: Transform -- proto: KitchenMicrowave - entities: - - uid: 1578 - components: - - pos: 35.5,-10.5 - parent: 2 - type: Transform - - uid: 2307 - components: - - pos: 37.5,36.5 - parent: 2 - type: Transform - - uid: 8860 - components: - - pos: 107.5,-10.5 - parent: 2 - type: Transform - - uid: 11429 - components: - - pos: 76.5,5.5 - parent: 2 - type: Transform -- proto: KitchenReagentGrinder - entities: - - uid: 2636 - components: - - pos: 40.5,34.5 - parent: 2 - type: Transform - - uid: 4107 - components: - - pos: 37.5,-12.5 - parent: 2 - type: Transform - - uid: 5056 - components: - - pos: 49.5,-6.5 - parent: 2 - type: Transform -- proto: KitchenSpike - entities: - - uid: 364 - components: - - pos: 31.5,-12.5 - parent: 2 - type: Transform -- proto: KnifePlastic - entities: - - uid: 3460 - components: - - pos: 40.183743,34.526638 - parent: 2 - type: Transform -- proto: Lamp - entities: - - uid: 5087 - components: - - pos: 30.398613,6.824299 - parent: 2 - type: Transform -- proto: LampBanana - entities: - - uid: 9601 - components: - - pos: 27.665216,6.7443295 - parent: 2 - type: Transform -- proto: LampGold - entities: - - uid: 310 - components: - - pos: 10.438802,4.97286 - parent: 2 - type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: Objects/Tools/flashlight.rsi/flashlight.png - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - - uid: 2722 - components: - - pos: 20.544691,33.624443 - parent: 2 - type: Transform - - uid: 2723 - components: - - pos: 20.529066,29.655691 - parent: 2 - type: Transform - - uid: 2780 - components: - - pos: 22.507973,40.51647 - parent: 2 - type: Transform - - uid: 4018 - components: - - pos: 32.49905,41.93212 - parent: 2 - type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: Objects/Tools/flashlight.rsi/flashlight.png - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - - uid: 5474 - components: - - pos: 67.5,37.5 - parent: 2 - type: Transform - - uid: 11417 - components: - - pos: 54.632915,-10.081582 - parent: 2 - type: Transform - - uid: 11465 - components: - - rot: 1.5707963267948966 rad - pos: 43.568825,20.850296 - parent: 2 - type: Transform - - uid: 12116 - components: - - pos: 37.37405,43.99462 - parent: 2 - type: Transform -- proto: LampInterrogator - entities: - - uid: 8436 - components: - - pos: 30.526884,29.884686 - parent: 2 - type: Transform -- proto: LargeBeaker - entities: - - uid: 5323 - components: - - pos: 54.42104,17.661463 - parent: 2 - type: Transform -- proto: LightReplacer - entities: - - uid: 177 - components: - - pos: 5.600267,-3.347455 - parent: 2 - type: Transform -- proto: LockerAtmosphericsFilledHardsuit - entities: - - uid: 1458 - components: - - pos: 32.5,-31.5 - parent: 2 - type: Transform - - uid: 1459 - components: - - pos: 32.5,-32.5 - parent: 2 - type: Transform -- proto: LockerBoozeFilled - entities: - - uid: 2901 - components: - - pos: 67.5,-13.5 - parent: 2 - type: Transform - - uid: 4439 - components: - - pos: 40.5,-10.5 - parent: 2 - type: Transform -- proto: LockerBotanistFilled - entities: - - uid: 6679 - components: - - pos: 44.5,-10.5 - parent: 2 - type: Transform -- proto: LockerCaptainFilled - entities: - - uid: 5414 - components: - - pos: 37.5,40.5 - parent: 2 - type: Transform -- proto: LockerChemistryFilled - entities: - - uid: 9714 - components: - - pos: 52.5,-8.5 - parent: 2 - type: Transform -- proto: LockerChiefEngineerFilled - entities: - - uid: 941 - components: - - pos: 10.5,-35.5 - parent: 2 - type: Transform -- proto: LockerChiefMedicalOfficerFilledHardsuit - entities: - - uid: 5191 - components: - - pos: 58.5,-11.5 - parent: 2 - type: Transform -- proto: LockerDetectiveFilled - entities: - - uid: 11476 - components: - - pos: 43.5,18.5 - parent: 2 - type: Transform -- proto: LockerElectricalSuppliesFilled - entities: - - uid: 882 - components: - - pos: 28.5,-33.5 - parent: 2 - type: Transform - - uid: 1760 - components: - - pos: 38.5,-14.5 - parent: 2 - type: Transform - - uid: 12352 - components: - - pos: 4.5,-8.5 - parent: 2 - type: Transform -- proto: LockerEngineerFilledHardsuit - entities: - - uid: 4904 - components: - - pos: 20.5,-32.5 - parent: 2 - type: Transform - - uid: 4905 - components: - - pos: 20.5,-31.5 - parent: 2 - type: Transform - - uid: 5182 - components: - - pos: 20.5,-30.5 - parent: 2 - type: Transform -- proto: LockerEvidence - entities: - - uid: 2430 - components: - - pos: 32.5,28.5 - parent: 2 - type: Transform - - uid: 5013 - components: - - pos: 32.5,21.5 - parent: 2 - type: Transform - - uid: 5018 - components: - - pos: 32.5,17.5 - parent: 2 - type: Transform - - uid: 7980 - components: - - pos: -2.5,-5.5 - parent: 2 - type: Transform - - uid: 9003 - components: - - pos: 17.5,29.5 - parent: 2 - type: Transform -- proto: LockerFreezer - entities: - - uid: 1646 - components: - - pos: 29.5,-12.5 - parent: 2 - type: Transform - - uid: 12094 - components: - - pos: 19.5,39.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 1.8976884 - - 7.138923 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 11861 - - 12102 - - 7304 - - 7391 - - 12827 - - 12828 - - 11863 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerHeadOfPersonnel - entities: - - uid: 10279 - components: - - pos: 18.5,-5.5 - parent: 2 - type: Transform -- proto: LockerHeadOfPersonnelFilled - entities: - - uid: 10278 - components: - - pos: 17.5,-5.5 - parent: 2 - type: Transform -- proto: LockerHeadOfSecurityFilledHardsuit - entities: - - uid: 6422 - components: - - pos: 43.5,25.5 - parent: 2 - type: Transform -- proto: LockerMedical - entities: - - uid: 10911 - components: - - pos: 75.5,-1.5 - parent: 2 - type: Transform -- proto: LockerMedicalFilled - entities: - - uid: 11909 - components: - - pos: 70.5,5.5 - parent: 2 - type: Transform - - uid: 11910 - components: - - pos: 70.5,6.5 - parent: 2 - type: Transform -- proto: LockerMedicine - entities: - - uid: 11970 - components: - - pos: 61.5,4.5 - parent: 2 - type: Transform - - uid: 11971 - components: - - pos: 62.5,4.5 - parent: 2 - type: Transform - - uid: 11972 - components: - - pos: 65.5,4.5 - parent: 2 - type: Transform -- proto: LockerMedicineFilled - entities: - - uid: 4115 - components: - - pos: 57.5,-15.5 - parent: 2 - type: Transform - - uid: 5098 - components: - - pos: 67.5,-6.5 - parent: 2 - type: Transform - - uid: 11402 - components: - - pos: 67.5,-11.5 - parent: 2 - type: Transform - - uid: 11911 - components: - - pos: 74.5,5.5 - parent: 2 - type: Transform -- proto: LockerParamedicFilled - entities: - - uid: 9618 - components: - - pos: 44.5,4.5 - parent: 2 - type: Transform -- proto: LockerQuarterMasterFilled - entities: - - uid: 2149 - components: - - pos: 11.5,30.5 - parent: 2 - type: Transform -- proto: LockerResearchDirectorFilled - entities: - - uid: 10660 - components: - - pos: 61.5,11.5 - parent: 2 - type: Transform -- proto: LockerSalvageSpecialistFilledHardsuit - entities: - - uid: 7962 - components: - - pos: 9.5,17.5 - parent: 2 - type: Transform - - uid: 7963 - components: - - pos: 9.5,18.5 - parent: 2 - type: Transform -- proto: LockerScienceFilled - entities: - - uid: 5338 - components: - - pos: 55.5,22.5 - parent: 2 - type: Transform - - uid: 5339 - components: - - pos: 56.5,22.5 - parent: 2 - type: Transform - - uid: 12829 - components: - - pos: 57.5,25.5 - parent: 2 - type: Transform -- proto: LockerScientist - entities: - - uid: 5322 - components: - - pos: 51.5,21.5 - parent: 2 - type: Transform -- proto: LockerSecurityFilled - entities: - - uid: 2468 - components: - - pos: 37.5,17.5 - parent: 2 - type: Transform - - uid: 2469 - components: - - pos: 38.5,17.5 - parent: 2 - type: Transform - - uid: 2470 - components: - - pos: 39.5,17.5 - parent: 2 - type: Transform -- proto: LockerSyndicatePersonal - entities: - - uid: 6871 - components: - - pos: 41.5,28.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6872 - - 6874 - - 6875 - - 6876 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerWallMedicalFilled - entities: - - uid: 8323 - components: - - pos: 46.5,5.5 - parent: 2 - type: Transform -- proto: LockerWardenFilledHardsuit - entities: - - uid: 7678 - components: - - pos: 38.5,23.5 - parent: 2 - type: Transform -- proto: LockerWeldingSuppliesFilled - entities: - - uid: 883 - components: - - pos: 24.5,-33.5 - parent: 2 - type: Transform -- proto: MachineAnomalyGenerator - entities: - - uid: 5363 - components: - - pos: 70.5,15.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound -- proto: MachineAnomalyVessel - entities: - - uid: 5380 - components: - - pos: 68.5,16.5 - parent: 2 - type: Transform - - uid: 10080 - components: - - pos: 67.5,16.5 - parent: 2 - type: Transform -- proto: MachineAPE - entities: - - uid: 5255 - components: - - rot: 1.5707963267948966 rad - pos: 66.5,13.5 - parent: 2 - type: Transform - - uid: 5272 - components: - - rot: 1.5707963267948966 rad - pos: 67.5,13.5 - parent: 2 - type: Transform -- proto: MachineArtifactAnalyzer - entities: - - uid: 8666 - components: - - pos: 64.5,27.5 - parent: 2 - type: Transform - - links: - - 152 - type: DeviceLinkSink -- proto: MachineFrame - entities: - - uid: 5663 - components: - - pos: 21.5,-43.5 - parent: 2 - type: Transform -- proto: MachineParticleAcceleratorEmitterForeCircuitboard - entities: - - uid: 5610 - components: - - pos: 19.614614,-38.64791 - parent: 2 - type: Transform -- proto: MachineParticleAcceleratorEmitterPortCircuitboard - entities: - - uid: 11948 - components: - - pos: 19.50161,-38.48987 - parent: 2 - type: Transform -- proto: MachineParticleAcceleratorEmitterStarboardCircuitboard - entities: - - uid: 1466 - components: - - pos: 19.434057,-38.4118 - parent: 2 - type: Transform -- proto: MagazinePistolSubMachineGunTopMounted - entities: - - uid: 348 - components: - - pos: 45.548477,23.915247 - parent: 2 - type: Transform - - uid: 7835 - components: - - pos: 45.548477,23.915247 - parent: 2 - type: Transform -- proto: MaintenanceFluffSpawner - entities: - - uid: 6944 - components: - - pos: 22.5,18.5 - parent: 2 - type: Transform - - uid: 12286 - components: - - pos: 80.5,-12.5 - parent: 2 - type: Transform - - uid: 12842 - components: - - pos: 23.5,4.5 - parent: 2 - type: Transform -- proto: MaintenancePlantSpawner - entities: - - uid: 12855 - components: - - pos: 2.5,-8.5 - parent: 2 - type: Transform - - uid: 12856 - components: - - pos: 54.5,-20.5 - parent: 2 - type: Transform - - uid: 12857 - components: - - pos: 71.5,34.5 - parent: 2 - type: Transform -- proto: MaintenanceToolSpawner - entities: - - uid: 12284 - components: - - pos: 4.5,-23.5 - parent: 2 - type: Transform -- proto: MaintenanceWeaponSpawner - entities: - - uid: 12285 - components: - - pos: 74.5,-12.5 - parent: 2 - type: Transform -- proto: MaterialCloth - entities: - - uid: 10295 - components: - - pos: 18.45301,-3.204442 - parent: 2 - type: Transform -- proto: MaterialDurathread - entities: - - uid: 10296 - components: - - pos: 18.624886,-3.516942 - parent: 2 - type: Transform -- proto: MaterialReclaimer - entities: - - uid: 5877 - components: - - pos: 3.5,-32.5 - parent: 2 - type: Transform -- proto: MaterialReclaimerMachineCircuitboard - entities: - - uid: 12365 - components: - - pos: 35.653957,-17.595016 - parent: 2 - type: Transform -- proto: MaterialWoodPlank - entities: - - uid: 2898 - components: - - pos: 65.69583,-13.395477 - parent: 2 - type: Transform - - uid: 2899 - components: - - pos: 65.43021,-13.629852 - parent: 2 - type: Transform -- proto: MechEquipmentGrabber - entities: - - uid: 7823 - components: - - pos: 8.528729,32.584915 - parent: 2 - type: Transform -- proto: MedicalBed - entities: - - uid: 4978 - components: - - pos: 81.5,-1.5 - parent: 2 - type: Transform - - uid: 7800 - components: - - pos: 81.5,-0.5 - parent: 2 - type: Transform - - uid: 10902 - components: - - pos: 76.5,-6.5 - parent: 2 - type: Transform - - uid: 10903 - components: - - pos: 77.5,-8.5 - parent: 2 - type: Transform - - uid: 11304 - components: - - pos: 62.5,-10.5 - parent: 2 - type: Transform - - uid: 11820 - components: - - pos: 66.5,4.5 - parent: 2 - type: Transform - - uid: 11821 - components: - - pos: 60.5,4.5 - parent: 2 - type: Transform -- proto: MedicalTechFab - entities: - - uid: 9369 - components: - - pos: 71.5,8.5 - parent: 2 - type: Transform -- proto: MedkitAdvancedFilled - entities: - - uid: 11919 - components: - - pos: 56.50263,-10.253292 - parent: 2 - type: Transform -- proto: MedkitBruteFilled - entities: - - uid: 11915 - components: - - pos: 72.38061,6.2433724 - parent: 2 - type: Transform -- proto: MedkitBurnFilled - entities: - - uid: 11914 - components: - - pos: 72.61498,6.4464974 - parent: 2 - type: Transform -- proto: MedkitCombatFilled - entities: - - uid: 11920 - components: - - pos: 63.555206,-11.384237 - parent: 2 - type: Transform -- proto: MedkitFilled - entities: - - uid: 4996 - components: - - pos: 32.5,48.5 - parent: 2 - type: Transform - - uid: 5731 - components: - - pos: 69.5,-5.5 - parent: 2 - type: Transform - - uid: 7390 - components: - - pos: 18.523928,24.634445 - parent: 2 - type: Transform - - uid: 9625 - components: - - pos: 46.54082,2.560578 - parent: 2 - type: Transform - - uid: 11307 - components: - - pos: 72.38061,6.5246224 - parent: 2 - type: Transform - - uid: 11908 - components: - - pos: 57.486534,-3.4860651 - parent: 2 - type: Transform -- proto: MedkitOxygenFilled - entities: - - uid: 11916 - components: - - pos: 72.61498,6.0402474 - parent: 2 - type: Transform -- proto: MedkitRadiationFilled - entities: - - uid: 11917 - components: - - pos: 72.34936,5.8058724 - parent: 2 - type: Transform -- proto: MedkitToxinFilled - entities: - - uid: 11918 - components: - - pos: 72.61498,5.5714974 - parent: 2 - type: Transform -- proto: MicrophoneInstrument - entities: - - uid: 9739 - components: - - pos: 19.519224,-9.931319 - parent: 2 - type: Transform -- proto: MinimoogInstrument - entities: - - uid: 12692 - components: - - rot: -1.5707963267948966 rad - pos: 106.5,-17.5 - parent: 2 - type: Transform -- proto: Mirror - entities: - - uid: 9 - components: - - pos: 10.5,14.5 - parent: 2 - type: Transform - - uid: 27 - components: - - pos: 40.5,36.5 - parent: 2 - type: Transform - - uid: 1532 - components: - - pos: 11.5,14.5 - parent: 2 - type: Transform - - uid: 11907 - components: - - pos: 76.5,8.5 - parent: 2 - type: Transform -- proto: MonkeyCubeWrapped - entities: - - uid: 6762 - components: - - pos: 40.329384,-11.450722 - parent: 2 - type: Transform -- proto: MopBucket - entities: - - uid: 13116 - components: - - pos: 5.687049,-5.5586905 - parent: 2 - type: Transform -- proto: MopItem - entities: - - uid: 13119 - components: - - pos: 5.5737967,-5.4805655 - parent: 2 - type: Transform -- proto: Morgue - entities: - - uid: 2119 - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-1.5 - parent: 2 - type: Transform - - uid: 4215 - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-2.5 - parent: 2 - type: Transform - - uid: 4314 - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-3.5 - parent: 2 - type: Transform - - uid: 4315 - components: - - rot: 1.5707963267948966 rad - pos: 71.5,-0.5 - parent: 2 - type: Transform - - uid: 4316 - components: - - rot: 1.5707963267948966 rad - pos: 71.5,-1.5 - parent: 2 - type: Transform - - uid: 4317 - components: - - rot: 1.5707963267948966 rad - pos: 71.5,-2.5 - parent: 2 - type: Transform - - uid: 5122 - components: - - rot: -1.5707963267948966 rad - pos: 74.5,-3.5 - parent: 2 - type: Transform - - uid: 9727 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,5.5 - parent: 2 - type: Transform - - uid: 9728 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,4.5 - parent: 2 - type: Transform -- proto: MouseTimedSpawner - entities: - - uid: 12800 - components: - - pos: 4.5,-29.5 - parent: 2 - type: Transform -- proto: MrDips - entities: - - uid: 9602 - components: - - flags: SessionSpecific - type: MetaData - - pos: 25.415216,6.7130795 - parent: 2 - type: Transform -- proto: Multitool - entities: - - uid: 4976 - components: - - pos: 19.486778,46.604305 - parent: 2 - type: Transform - - uid: 5872 - components: - - pos: 31.020313,-14.418215 - parent: 2 - type: Transform - - uid: 7451 - components: - - pos: 17.945803,24.61882 - parent: 2 - type: Transform - - uid: 10792 - components: - - pos: 69.28111,-15.352209 - parent: 2 - type: Transform -- proto: NetworkConfigurator - entities: - - uid: 909 - components: - - pos: 27.306864,-29.442156 - parent: 2 - type: Transform - - uid: 8340 - components: - - pos: 21.44037,46.69382 - parent: 2 - type: Transform -- proto: NitrogenCanister - entities: - - uid: 4306 - components: - - pos: 43.5,-37.5 - parent: 2 - type: Transform - - uid: 4311 - components: - - pos: 43.5,-38.5 - parent: 2 - type: Transform - - uid: 4571 - components: - - pos: 32.5,-27.5 - parent: 2 - type: Transform - - uid: 5746 - components: - - pos: 49.5,-13.5 - parent: 2 - type: Transform - - uid: 10442 - components: - - pos: 58.5,11.5 - parent: 2 - type: Transform -- proto: NitrousOxideCanister - entities: - - uid: 4334 - components: - - pos: 44.5,-37.5 - parent: 2 - type: Transform -- proto: NuclearBomb - entities: - - uid: 12093 - components: - - pos: 18.5,42.5 - parent: 2 - type: Transform -- proto: Omnitool - entities: - - uid: 12102 - components: - - flags: InContainer - type: MetaData - - parent: 12094 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: OperatingTable - entities: - - uid: 24 - components: - - pos: 65.5,-4.5 - parent: 2 - type: Transform - - uid: 5085 - components: - - pos: 56.5,-14.5 - parent: 2 - type: Transform - - uid: 5186 - components: - - pos: 74.5,-2.5 - parent: 2 - type: Transform - - uid: 11399 - components: - - pos: 66.5,-10.5 - parent: 2 - type: Transform - - uid: 12109 - components: - - pos: 55.5,9.5 - parent: 2 - type: Transform -- proto: OreProcessor - entities: - - uid: 12839 - components: - - pos: 9.5,20.5 - parent: 2 - type: Transform -- proto: OreProcessorMachineCircuitboard - entities: - - uid: 12364 - components: - - pos: 35.575832,-17.470016 - parent: 2 - type: Transform -- proto: OxygenCanister - entities: - - uid: 945 - components: - - pos: 42.5,-38.5 - parent: 2 - type: Transform - - uid: 2833 - components: - - pos: 42.5,-37.5 - parent: 2 - type: Transform - - uid: 4570 - components: - - pos: 32.5,-28.5 - parent: 2 - type: Transform - - uid: 5745 - components: - - pos: 50.5,-13.5 - parent: 2 - type: Transform - - uid: 6424 - components: - - pos: 46.5,7.5 - parent: 2 - type: Transform - - uid: 7969 - components: - - pos: 5.5,19.5 - parent: 2 - type: Transform - - uid: 9620 - components: - - pos: 47.5,2.5 - parent: 2 - type: Transform - - uid: 10314 - components: - - pos: 8.5,-5.5 - parent: 2 - type: Transform - - uid: 10441 - components: - - pos: 58.5,10.5 - parent: 2 - type: Transform - - uid: 12997 - components: - - pos: 34.5,-44.5 - parent: 2 - type: Transform -- proto: OxygenTankFilled - entities: - - uid: 5720 - components: - - pos: 73.5,-12.5 - parent: 2 - type: Transform - - uid: 5734 - components: - - pos: 72.5,-9.5 - parent: 2 - type: Transform - - uid: 10847 - components: - - pos: 45.502346,27.566444 - parent: 2 - type: Transform -- proto: PaintingMonkey - entities: - - uid: 5783 - components: - - pos: 37.485016,-2.1577168 - parent: 2 - type: Transform -- proto: PaintingMoony - entities: - - uid: 12334 - components: - - pos: 28.5,6.5 - parent: 2 - type: Transform -- proto: PaintingOlympia - entities: - - uid: 1195 - components: - - pos: 35.5,42.5 - parent: 2 - type: Transform -- proto: PaintingSadClown - entities: - - uid: 12832 - components: - - pos: 28.5,8.5 - parent: 2 - type: Transform -- proto: PaperBin10 - entities: - - uid: 1483 - components: - - pos: 8.5,4.5 - parent: 2 - type: Transform -- proto: PaperBin5 - entities: - - uid: 6913 - components: - - pos: 43.5,19.5 - parent: 2 - type: Transform -- proto: ParticleAcceleratorControlBoxUnfinished - entities: - - uid: 4800 - components: - - pos: 20.5,-40.5 - parent: 2 - type: Transform -- proto: ParticleAcceleratorEndCapUnfinished - entities: - - uid: 1463 - components: - - pos: 22.5,-39.5 - parent: 2 - type: Transform -- proto: ParticleAcceleratorFuelChamberUnfinished - entities: - - uid: 1464 - components: - - pos: 22.5,-40.5 - parent: 2 - type: Transform -- proto: ParticleAcceleratorPowerBoxUnfinished - entities: - - uid: 1467 - components: - - pos: 22.5,-41.5 - parent: 2 - type: Transform -- proto: PartRodMetal - entities: - - uid: 2896 - components: - - pos: 65.52396,-13.395477 - parent: 2 - type: Transform - - uid: 2897 - components: - - pos: 65.85208,-13.442352 - parent: 2 - type: Transform - - uid: 5641 - components: - - pos: 17.877897,-26.451574 - parent: 2 - type: Transform - - uid: 5642 - components: - - pos: 17.877897,-26.451574 - parent: 2 - type: Transform - - uid: 11126 - components: - - pos: 54.520523,-14.325092 - parent: 2 - type: Transform -- proto: Pen - entities: - - uid: 137 - components: - - pos: -2.0928464,-12.376232 - parent: 2 - type: Transform - - uid: 312 - components: - - pos: 11.095052,4.613485 - parent: 2 - type: Transform - - uid: 7415 - components: - - pos: 23.446625,15.655876 - parent: 2 - type: Transform - - uid: 11973 - components: - - pos: 55.38082,-10.156126 - parent: 2 - type: Transform - - uid: 11974 - components: - - pos: 29.754704,-3.2689257 - parent: 2 - type: Transform - - uid: 11975 - components: - - pos: 18.920185,-2.2376757 - parent: 2 - type: Transform - - uid: 11976 - components: - - pos: -2.4757,-12.360289 - parent: 2 - type: Transform - - uid: 11977 - components: - - pos: 10.85696,4.4728694 - parent: 2 - type: Transform - - uid: 11978 - components: - - pos: 21.523584,22.514828 - parent: 2 - type: Transform - - uid: 11979 - components: - - pos: 44.764744,23.837742 - parent: 2 - type: Transform - - uid: 11980 - components: - - pos: 60.396873,11.712045 - parent: 2 - type: Transform -- proto: PersonalAI - entities: - - uid: 7414 - components: - - flags: SessionSpecific - type: MetaData - - pos: 23.509125,15.577751 - parent: 2 - type: Transform - - uid: 11216 - components: - - flags: SessionSpecific - type: MetaData - - pos: 26.514572,47.589886 - parent: 2 - type: Transform - - uid: 11217 - components: - - flags: SessionSpecific - type: MetaData - - pos: 70.51922,36.549946 - parent: 2 - type: Transform -- proto: PhoneInstrument - entities: - - uid: 7008 - components: - - pos: 34.02968,41.62158 - parent: 2 - type: Transform -- proto: PianoInstrument - entities: - - uid: 1663 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-7.5 - parent: 2 - type: Transform -- proto: Pickaxe - entities: - - uid: 8255 - components: - - pos: 9.562899,15.659067 - parent: 2 - type: Transform -- proto: PinpointerNuclear - entities: - - uid: 11101 - components: - - pos: 31.499657,39.560112 - parent: 2 - type: Transform - - uid: 12106 - components: - - pos: 17.448387,40.88602 - parent: 2 - type: Transform -- proto: PlantBGoneSpray - entities: - - uid: 6754 - components: - - pos: 44.41406,-5.5146046 - parent: 2 - type: Transform -- proto: PlaqueAtmos - entities: - - uid: 4576 - components: - - pos: 29.5,-25.5 - parent: 2 - type: Transform -- proto: PlasmaCanister - entities: - - uid: 12995 - components: - - pos: 44.5,-38.5 - parent: 2 - type: Transform - - uid: 12996 - components: - - pos: 34.5,-43.5 - parent: 2 - type: Transform -- proto: PlasmaReinforcedWindowDirectional - entities: - - uid: 2092 - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-6.5 - parent: 2 - type: Transform - - uid: 5245 - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-7.5 - parent: 2 - type: Transform - - uid: 7722 - components: - - pos: 28.5,25.5 - parent: 2 - type: Transform - - uid: 7753 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,30.5 - parent: 2 - type: Transform - - uid: 7754 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,28.5 - parent: 2 - type: Transform - - uid: 7755 - components: - - pos: 31.5,25.5 - parent: 2 - type: Transform - - uid: 7756 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,26.5 - parent: 2 - type: Transform - - uid: 7759 - components: - - pos: 29.5,25.5 - parent: 2 - type: Transform - - uid: 7760 - components: - - pos: 30.5,25.5 - parent: 2 - type: Transform - - uid: 7794 - components: - - pos: 81.5,-2.5 - parent: 2 - type: Transform - - uid: 10120 - components: - - pos: 76.5,-5.5 - parent: 2 - type: Transform - - uid: 12081 - components: - - rot: 1.5707963267948966 rad - pos: 46.5,9.5 - parent: 2 - type: Transform - - uid: 12107 - components: - - rot: 1.5707963267948966 rad - pos: 46.5,11.5 - parent: 2 - type: Transform -- proto: PlasticFlapsAirtightClear - entities: - - uid: 368 - components: - - pos: 6.5,27.5 - parent: 2 - type: Transform - - uid: 371 - components: - - pos: 4.5,23.5 - parent: 2 - type: Transform - - uid: 481 - components: - - pos: 4.5,-17.5 - parent: 2 - type: Transform - - uid: 482 - components: - - pos: 3.5,-17.5 - parent: 2 - type: Transform - - uid: 483 - components: - - pos: 3.5,-14.5 - parent: 2 - type: Transform - - uid: 484 - components: - - pos: 4.5,-14.5 - parent: 2 - type: Transform - - uid: 5874 - components: - - pos: -0.5,-27.5 - parent: 2 - type: Transform - - uid: 7460 - components: - - pos: 6.5,23.5 - parent: 2 - type: Transform - - uid: 7461 - components: - - pos: 4.5,27.5 - parent: 2 - type: Transform - - uid: 7668 - components: - - pos: 6.5,15.5 - parent: 2 - type: Transform - - uid: 7852 - components: - - pos: 4.5,15.5 - parent: 2 - type: Transform -- proto: Plunger - entities: - - uid: 9718 - components: - - pos: 10.992045,13.876669 - parent: 2 - type: Transform - - uid: 9719 - components: - - pos: 6.0254927,-3.2604024 - parent: 2 - type: Transform -- proto: PlushieNar - entities: - - uid: 5400 - components: - - pos: 62.48992,18.519245 - parent: 2 - type: Transform -- proto: PlushieSharkGrey - entities: - - uid: 5727 - components: - - pos: 25.597736,6.3236885 - parent: 2 - type: Transform -- proto: PlushieSharkPink - entities: - - uid: 13077 - components: - - pos: 6.6388106,-13.475947 - parent: 2 - type: Transform -- proto: PortableFlasher - entities: - - uid: 8412 - components: - - pos: 31.5,26.5 - parent: 2 - type: Transform -- proto: PortableScrubber - entities: - - uid: 4977 - components: - - pos: 47.5,7.5 - parent: 2 - type: Transform - - uid: 6765 - components: - - pos: 46.5,-40.5 - parent: 2 - type: Transform - - uid: 7807 - components: - - pos: 24.5,-23.5 - parent: 2 - type: Transform - - uid: 7817 - components: - - pos: 24.5,-24.5 - parent: 2 - type: Transform -- proto: PosterContrabandAtmosiaDeclarationIndependence - entities: - - uid: 5294 - components: - - pos: 30.5,-22.5 - parent: 2 - type: Transform -- proto: PosterContrabandBeachStarYamamoto - entities: - - uid: 13105 - components: - - pos: 10.5,16.5 - parent: 2 - type: Transform -- proto: PosterContrabandClown - entities: - - uid: 11021 - components: - - pos: 27.5,4.5 - parent: 2 - type: Transform -- proto: PosterContrabandDonk - entities: - - uid: 13090 - components: - - pos: 58.5,-16.5 - parent: 2 - type: Transform -- proto: PosterContrabandEAT - entities: - - uid: 6763 - components: - - pos: 30.5,-8.5 - parent: 2 - type: Transform -- proto: PosterContrabandGreyTide - entities: - - uid: 739 - components: - - pos: 30.5,-18.5 - parent: 2 - type: Transform -- proto: PosterContrabandHackingGuide - entities: - - uid: 8671 - components: - - pos: 31.5,-13.5 - parent: 2 - type: Transform -- proto: PosterContrabandHaveaPuff - entities: - - uid: 13100 - components: - - pos: 44.5,-8.5 - parent: 2 - type: Transform -- proto: PosterContrabandMissingGloves - entities: - - uid: 11068 - components: - - pos: 34.5,-18.5 - parent: 2 - type: Transform -- proto: PosterContrabandMoth - entities: - - uid: 13102 - components: - - pos: 77.5,-14.5 - parent: 2 - type: Transform -- proto: PosterContrabandRedRum - entities: - - uid: 7286 - components: - - pos: 40.5,-2.5 - parent: 2 - type: Transform -- proto: PosterContrabandWaffleCorp - entities: - - uid: 13091 - components: - - pos: 42.5,27.5 - parent: 2 - type: Transform -- proto: PosterLegit50thAnniversaryVintageReprint - entities: - - uid: 11289 - components: - - pos: 56.5,21.5 - parent: 2 - type: Transform -- proto: PosterLegitAnatomyPoster - entities: - - uid: 12830 - components: - - pos: 60.5,5.5 - parent: 2 - type: Transform -- proto: PosterLegitCarpMount - entities: - - uid: 12833 - components: - - pos: 17.5,25.5 - parent: 2 - type: Transform -- proto: PosterLegitCleanliness - entities: - - uid: 11818 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-2.5 - parent: 2 - type: Transform -- proto: PosterLegitCohibaRobustoAd - entities: - - uid: 7287 - components: - - pos: 28.5,-7.5 - parent: 2 - type: Transform -- proto: PosterLegitDickGumshue - entities: - - uid: 13089 - components: - - pos: 68.5,-14.5 - parent: 2 - type: Transform -- proto: PosterLegitEnlist - entities: - - uid: 13104 - components: - - pos: 42.5,26.5 - parent: 2 - type: Transform -- proto: PosterLegitFoamForceAd - entities: - - uid: 11022 - components: - - pos: 20.5,16.5 - parent: 2 - type: Transform -- proto: PosterLegitFruitBowl - entities: - - uid: 13101 - components: - - pos: 41.5,-9.5 - parent: 2 - type: Transform -- proto: PosterLegitHighClassMartini - entities: - - uid: 13099 - components: - - pos: 38.5,-1.5 - parent: 2 - type: Transform -- proto: PosterLegitIan - entities: - - uid: 10251 - components: - - pos: 17.5,-6.5 - parent: 2 - type: Transform -- proto: PosterLegitIonRifle - entities: - - uid: 13103 - components: - - pos: 42.5,28.5 - parent: 2 - type: Transform -- proto: PosterLegitLoveIan - entities: - - uid: 10252 - components: - - pos: 21.5,-3.5 - parent: 2 - type: Transform -- proto: PosterLegitMime - entities: - - uid: 12831 - components: - - pos: 24.5,5.5 - parent: 2 - type: Transform -- proto: PosterLegitNanomichiAd - entities: - - uid: 12320 - components: - - pos: 13.5,-4.5 - parent: 2 - type: Transform -- proto: PosterLegitNanotrasenLogo - entities: - - uid: 404 - components: - - pos: 29.5,37.5 - parent: 2 - type: Transform - - uid: 7464 - components: - - pos: 17.5,-1.5 - parent: 2 - type: Transform - - uid: 8157 - components: - - pos: -21.5,-11.5 - parent: 2 - type: Transform - - uid: 8158 - components: - - pos: -10.5,-11.5 - parent: 2 - type: Transform - - uid: 8159 - components: - - pos: -7.5,0.5 - parent: 2 - type: Transform - - uid: 11092 - components: - - pos: 17.5,38.5 - parent: 2 - type: Transform - - uid: 11854 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-1.5 - parent: 2 - type: Transform - - uid: 12318 - components: - - pos: 29.5,43.5 - parent: 2 - type: Transform - - uid: 12319 - components: - - pos: 20.5,47.5 - parent: 2 - type: Transform -- proto: PosterLegitNTTGC - entities: - - uid: 13097 - components: - - pos: 13.5,8.5 - parent: 2 - type: Transform -- proto: PosterLegitPeriodicTable - entities: - - uid: 13093 - components: - - pos: 59.5,11.5 - parent: 2 - type: Transform - - uid: 13094 - components: - - pos: 54.5,-7.5 - parent: 2 - type: Transform -- proto: PosterLegitRenault - entities: - - uid: 13092 - components: - - pos: 35.5,41.5 - parent: 2 - type: Transform -- proto: PosterLegitReportCrimes - entities: - - uid: 13096 - components: - - pos: 37.5,16.5 - parent: 2 - type: Transform -- proto: PosterLegitSafetyEyeProtection - entities: - - uid: 13083 - components: - - pos: 40.5,-41.5 - parent: 2 - type: Transform - - uid: 13087 - components: - - pos: 55.5,16.5 - parent: 2 - type: Transform -- proto: PosterLegitSafetyInternals - entities: - - uid: 13084 - components: - - pos: 42.5,-41.5 - parent: 2 - type: Transform - - uid: 13088 - components: - - pos: 54.5,16.5 - parent: 2 - type: Transform -- proto: PosterLegitSafetyMothDelam - entities: - - uid: 13081 - components: - - pos: 32.5,-33.5 - parent: 2 - type: Transform -- proto: PosterLegitSafetyMothEpi - entities: - - uid: 13085 - components: - - pos: 53.5,-2.5 - parent: 2 - type: Transform -- proto: PosterLegitSafetyMothHardhat - entities: - - uid: 13080 - components: - - pos: 23.5,-29.5 - parent: 2 - type: Transform -- proto: PosterLegitSafetyMothMeth - entities: - - uid: 13086 - components: - - pos: 49.5,-9.5 - parent: 2 - type: Transform -- proto: PosterLegitSafetyMothPiping - entities: - - uid: 13079 - components: - - pos: 29.5,-23.5 - parent: 2 - type: Transform - - uid: 13082 - components: - - pos: 38.5,-41.5 - parent: 2 - type: Transform -- proto: PosterLegitSafetyReport - entities: - - uid: 13095 - components: - - pos: 22.5,34.5 - parent: 2 - type: Transform -- proto: PosterLegitSecWatch - entities: - - uid: 7732 - components: - - pos: -2.5,-6.5 - parent: 2 - type: Transform - - uid: 8983 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,16.5 - parent: 2 - type: Transform -- proto: PosterLegitStateLaws - entities: - - uid: 7731 - components: - - pos: -4.5,-10.5 - parent: 2 - type: Transform -- proto: PosterLegitUeNo - entities: - - uid: 11093 - components: - - pos: 23.5,26.5 - parent: 2 - type: Transform -- proto: PosterLegitVacation - entities: - - uid: 13098 - components: - - pos: 22.5,2.5 - parent: 2 - type: Transform -- proto: PosterMapPacked - entities: - - uid: 7744 - components: - - pos: -14.5,-11.5 - parent: 2 - type: Transform - - uid: 12314 - components: - - pos: 15.5,2.5 - parent: 2 - type: Transform - - uid: 12315 - components: - - pos: 37.5,2.5 - parent: 2 - type: Transform - - uid: 12316 - components: - - pos: 33.5,16.5 - parent: 2 - type: Transform - - uid: 12317 - components: - - pos: 34.5,47.5 - parent: 2 - type: Transform - - uid: 12335 - components: - - pos: 30.5,-13.5 - parent: 2 - type: Transform -- proto: PottedPlant1 - entities: - - uid: 6619 - components: - - pos: 32.48526,-7.8502135 - parent: 2 - type: Transform -- proto: PottedPlant19 - entities: - - uid: 2615 - components: - - pos: 13.5,-33.5 - parent: 2 - type: Transform -- proto: PottedPlant2 - entities: - - uid: 12720 - components: - - pos: 29.477802,5.1889386 - parent: 2 - type: Transform -- proto: PottedPlant22 - entities: - - uid: 2908 - components: - - pos: 30.5,44.5 - parent: 2 - type: Transform - - uid: 2909 - components: - - pos: 19.5,44.5 - parent: 2 - type: Transform -- proto: PottedPlantBioluminscent - entities: - - uid: 5046 - components: - - pos: 51.5,4.5 - parent: 2 - type: Transform -- proto: PottedPlantRandom - entities: - - uid: 101 - components: - - pos: -21.5,-12.5 - parent: 2 - type: Transform - - uid: 2533 - components: - - pos: 34.5,9.5 - parent: 2 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 4698 - components: - - pos: 20.5,12.5 - parent: 2 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 5314 - components: - - pos: 54.5,20.5 - parent: 2 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 5340 - components: - - pos: 54.5,22.5 - parent: 2 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 5344 - components: - - pos: 59.5,25.5 - parent: 2 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 7298 - components: - - pos: 15.5,-33.5 - parent: 2 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 7299 - components: - - pos: 15.5,-35.5 - parent: 2 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 7999 - components: - - pos: 3.5,1.5 - parent: 2 - type: Transform - - uid: 8000 - components: - - pos: 3.5,13.5 - parent: 2 - type: Transform - - uid: 11221 - components: - - pos: 18.5,35.5 - parent: 2 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 11222 - components: - - pos: 22.5,35.5 - parent: 2 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 11808 - components: - - pos: 45.5,16.5 - parent: 2 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 12164 - components: - - pos: 73.5,8.5 - parent: 2 - type: Transform - - uid: 12165 - components: - - pos: 58.5,-2.5 - parent: 2 - type: Transform -- proto: PottedPlantRD - entities: - - uid: 10662 - components: - - pos: 60.5,10.5 - parent: 2 - type: Transform -- proto: PowerCellHigh - entities: - - uid: 5631 - components: - - pos: 16.332455,-23.225615 - parent: 2 - type: Transform - - uid: 5632 - components: - - pos: 16.4019,-23.383022 - parent: 2 - type: Transform -- proto: PowerCellRecharger - entities: - - uid: 2829 - components: - - pos: 11.5,21.5 - parent: 2 - type: Transform - - uid: 5312 - components: - - pos: 56.5,20.5 - parent: 2 - type: Transform - - canCollide: False - type: Physics - - 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: ContainerContainer - - uid: 6794 - components: - - pos: 19.5,-23.5 - parent: 2 - type: Transform - - canCollide: False - type: Physics - - 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: ContainerContainer - - uid: 7014 - components: - - pos: 17.5,24.5 - parent: 2 - type: Transform - - uid: 9626 - components: - - pos: 46.5,2.5 - parent: 2 - type: Transform - - uid: 11842 - components: - - pos: 31.5,-14.5 - parent: 2 - type: Transform - - canCollide: False - type: Physics - - 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: ContainerContainer - - uid: 12369 - components: - - pos: 38.5,-17.5 - parent: 2 - type: Transform - - uid: 12819 - components: - - pos: 59.5,-3.5 - parent: 2 - type: Transform - - uid: 13106 - components: - - pos: 56.5,-10.5 - parent: 2 - type: Transform - - uid: 13107 - components: - - pos: 63.5,-9.5 - parent: 2 - type: Transform -- proto: PowerCellSmall - entities: - - uid: 5313 - components: - - pos: 56.529827,20.631775 - parent: 2 - type: Transform -- proto: PowerDrill - entities: - - uid: 10671 - components: - - pos: 63.50305,8.626264 - parent: 2 - type: Transform -- proto: Poweredlight - entities: - - uid: 231 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-3.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 399 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,3.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 441 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,2.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 840 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-25.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1112 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-15.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1473 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-41.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1491 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-41.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1765 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-14.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1766 - components: - - rot: 3.141592653589793 rad - pos: 36.5,-17.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2155 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,25.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2157 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,21.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2783 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,42.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2784 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,42.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2787 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,40.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4054 - components: - - pos: -2.5,-7.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4122 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-5.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4562 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-5.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4617 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,6.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4662 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,4.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4663 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,6.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4691 - components: - - rot: 3.141592653589793 rad - pos: 18.5,5.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4699 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,27.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4700 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,19.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4701 - components: - - pos: 23.5,25.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4702 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,12.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4910 - components: - - pos: 14.5,41.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4911 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,35.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4990 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,48.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4991 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,46.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4992 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,46.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4993 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,48.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5060 - components: - - pos: 51.5,-4.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5080 - components: - - pos: 50.5,4.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5127 - components: - - pos: 45.5,-23.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5128 - components: - - pos: 45.5,-25.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5132 - components: - - pos: 45.5,-27.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5133 - components: - - pos: 45.5,-29.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5134 - components: - - pos: 45.5,-31.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5152 - components: - - pos: 45.5,-33.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5154 - components: - - pos: 30.5,2.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5164 - components: - - rot: 3.141592653589793 rad - pos: 58.5,-11.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5166 - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-2.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5167 - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-5.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5195 - components: - - pos: 40.5,-42.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5218 - components: - - rot: 3.141592653589793 rad - pos: 46.5,-40.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5219 - components: - - rot: 3.141592653589793 rad - pos: 38.5,-40.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5220 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-34.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5221 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-22.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5275 - components: - - rot: -1.5707963267948966 rad - pos: 47.5,15.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5277 - components: - - rot: -1.5707963267948966 rad - pos: 55.5,9.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5278 - components: - - rot: 3.141592653589793 rad - pos: 49.5,8.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5279 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,10.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5280 - components: - - rot: 1.5707963267948966 rad - pos: 60.5,9.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - type: Timer - - uid: 5281 - components: - - pos: 62.5,16.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5282 - components: - - pos: 68.5,16.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5290 - components: - - rot: 3.141592653589793 rad - pos: 71.5,13.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5432 - components: - - pos: 30.5,42.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5433 - components: - - rot: 3.141592653589793 rad - pos: 36.5,40.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5766 - components: - - pos: 20.5,15.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5767 - components: - - rot: 3.141592653589793 rad - pos: 20.5,12.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5768 - components: - - pos: 9.5,10.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5769 - components: - - pos: 17.5,10.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5921 - components: - - pos: 40.5,-14.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6009 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,3.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6010 - components: - - pos: 43.5,0.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6011 - components: - - rot: 3.141592653589793 rad - pos: 48.5,-1.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6013 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-3.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6014 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-6.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6027 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-11.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6043 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-8.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6068 - components: - - pos: 13.5,1.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6085 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-1.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6086 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-1.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6486 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,24.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6487 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,24.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6537 - components: - - pos: 56.5,20.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6538 - components: - - rot: 3.141592653589793 rad - pos: 52.5,17.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6630 - components: - - rot: 3.141592653589793 rad - pos: 32.5,-7.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6652 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-5.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6653 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-5.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6654 - components: - - pos: 31.5,-2.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6657 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-9.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6658 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-11.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6660 - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-5.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 7034 - components: - - pos: 4.5,-11.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7294 - components: - - pos: 37.5,1.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 7295 - components: - - pos: 22.5,1.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 7344 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-34.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7364 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-34.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7365 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-36.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7366 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-34.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7470 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-5.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 7527 - components: - - pos: 50.5,11.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7528 - components: - - rot: -1.5707963267948966 rad - pos: 63.5,9.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - type: Timer - - uid: 7530 - components: - - rot: 3.141592653589793 rad - pos: 59.5,13.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - type: Timer - - uid: 7568 - components: - - rot: 3.141592653589793 rad - pos: 23.5,-32.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7569 - components: - - rot: 3.141592653589793 rad - pos: 29.5,-32.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7570 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-36.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7574 - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-2.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7577 - components: - - rot: 3.141592653589793 rad - pos: 54.5,-11.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7579 - components: - - rot: 3.141592653589793 rad - pos: 65.5,-6.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7581 - components: - - rot: 1.5707963267948966 rad - pos: 68.5,6.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7591 - components: - - rot: 3.141592653589793 rad - pos: 74.5,1.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7595 - components: - - rot: 3.141592653589793 rad - pos: 56.5,13.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7683 - components: - - rot: 3.141592653589793 rad - pos: 32.5,13.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7684 - components: - - pos: 37.5,15.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7688 - components: - - pos: 50.5,21.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7719 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-14.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 7720 - components: - - rot: 3.141592653589793 rad - pos: 50.5,17.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7723 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-14.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 7724 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-14.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 7726 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-10.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 7768 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,40.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7813 - components: - - pos: 19.5,-2.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7814 - components: - - pos: 10.5,28.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7815 - components: - - pos: 14.5,25.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7831 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,31.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7832 - components: - - rot: 3.141592653589793 rad - pos: 23.5,29.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7850 - components: - - pos: 20.5,37.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7851 - components: - - pos: 25.5,37.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7856 - components: - - pos: 18.5,24.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7857 - components: - - pos: 34.5,43.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7957 - components: - - pos: -6.5,0.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 7958 - components: - - pos: -0.5,0.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 7959 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,9.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 7960 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,13.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 8129 - components: - - pos: 37.5,-22.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8130 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-26.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8266 - components: - - rot: 3.141592653589793 rad - pos: 55.5,22.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8286 - components: - - rot: 3.141592653589793 rad - pos: 8.5,15.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8335 - components: - - pos: 20.5,-14.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8336 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-19.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8339 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-22.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8530 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-39.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8567 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,11.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8568 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,3.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8569 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,29.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8573 - components: - - pos: 39.5,19.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8574 - components: - - rot: 3.141592653589793 rad - pos: 33.5,17.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8584 - components: - - rot: 3.141592653589793 rad - pos: 31.5,34.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8638 - components: - - rot: 3.141592653589793 rad - pos: 72.5,-3.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8642 - components: - - pos: 79.5,-3.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8849 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,18.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 9061 - components: - - rot: 1.5707963267948966 rad - pos: 105.5,-23.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9062 - components: - - rot: 1.5707963267948966 rad - pos: 105.5,-11.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9063 - components: - - pos: 111.5,-15.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9717 - components: - - rot: 3.141592653589793 rad - pos: 51.5,-8.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 10450 - components: - - rot: 1.5707963267948966 rad - pos: 62.5,27.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 10451 - components: - - rot: -1.5707963267948966 rad - pos: 64.5,22.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 10452 - components: - - pos: 58.5,27.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 10453 - components: - - pos: 54.5,27.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 10708 - components: - - rot: 3.141592653589793 rad - pos: 70.5,1.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10928 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-39.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11118 - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-14.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11225 - components: - - pos: 14.5,41.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11791 - components: - - pos: 14.5,-23.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11855 - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-10.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 11856 - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-10.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 11857 - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-6.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 11859 - components: - - pos: 60.5,4.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 11862 - components: - - pos: 63.5,4.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 11864 - components: - - pos: 66.5,4.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 11865 - components: - - rot: 1.5707963267948966 rad - pos: 70.5,7.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 11869 - components: - - pos: 77.5,5.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 11870 - components: - - pos: 55.5,3.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 11906 - components: - - rot: -1.5707963267948966 rad - pos: 74.5,6.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 12977 - components: - - rot: 3.141592653589793 rad - pos: 40.5,-48.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 12978 - components: - - rot: 3.141592653589793 rad - pos: 35.5,-48.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound -- proto: PoweredlightExterior - entities: - - uid: 5606 - components: - - pos: 14.5,-44.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5607 - components: - - pos: 28.5,-46.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - uid: 7836 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-15.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound -- proto: PoweredlightSodium - entities: - - uid: 7961 - components: - - rot: 3.141592653589793 rad - pos: -17.5,15.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound -- proto: PoweredSmallLight - entities: - - uid: 317 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,4.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 583 - components: - - pos: 0.5,-9.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1811 - components: - - rot: 3.141592653589793 rad - pos: 10.5,12.5 - parent: 2 - type: Transform - - uid: 2292 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,37.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2293 - components: - - pos: 40.5,35.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2294 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,32.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2295 - components: - - rot: 3.141592653589793 rad - pos: 37.5,33.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2424 - components: - - rot: 3.141592653589793 rad - pos: 30.5,23.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2425 - components: - - pos: 30.5,21.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2426 - components: - - rot: 3.141592653589793 rad - pos: 30.5,17.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2482 - components: - - pos: 42.5,20.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2534 - components: - - pos: 37.5,9.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2535 - components: - - pos: 30.5,8.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2536 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,5.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2537 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,7.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2539 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,9.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2919 - components: - - pos: 64.5,-15.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3409 - components: - - rot: -1.5707963267948966 rad - pos: 71.5,30.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3410 - components: - - pos: 70.5,34.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3447 - components: - - rot: 3.141592653589793 rad - pos: 70.5,27.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4071 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-14.5 - parent: 2 - type: Transform - - uid: 4438 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-35.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4470 - components: - - pos: 2.5,-28.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4471 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-32.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4474 - components: - - pos: 8.5,-15.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4475 - components: - - pos: 9.5,-22.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4476 - components: - - pos: 16.5,-21.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4478 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-13.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4479 - components: - - rot: 3.141592653589793 rad - pos: 23.5,-7.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4539 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-14.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4540 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-5.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4563 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,5.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4564 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,9.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4582 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-31.5 - parent: 2 - type: Transform - - uid: 4583 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-31.5 - parent: 2 - type: Transform - - uid: 4584 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-29.5 - parent: 2 - type: Transform - - uid: 4813 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,12.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4814 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,13.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4907 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,33.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4909 - components: - - pos: 19.5,27.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5119 - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-8.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5229 - components: - - rot: 3.141592653589793 rad - pos: 36.5,-36.5 - parent: 2 - type: Transform - - uid: 5264 - components: - - pos: 50.5,15.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5274 - components: - - rot: 1.5707963267948966 rad - pos: 49.5,24.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5464 - components: - - pos: 70.5,40.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5465 - components: - - pos: 70.5,37.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5611 - components: - - pos: 34.5,-38.5 - parent: 2 - type: Transform - - uid: 5674 - components: - - pos: 68.5,42.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5675 - components: - - rot: 1.5707963267948966 rad - pos: 66.5,38.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5676 - components: - - pos: 67.5,29.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5723 - components: - - pos: 73.5,-12.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6492 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-10.5 - parent: 2 - type: Transform - - uid: 6496 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-12.5 - parent: 2 - type: Transform - - uid: 6505 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-9.5 - parent: 2 - type: Transform - - uid: 6511 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-11.5 - parent: 2 - type: Transform - - uid: 6521 - components: - - rot: 3.141592653589793 rad - pos: 29.5,28.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6659 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-12.5 - parent: 2 - type: Transform - - uid: 6661 - components: - - rot: 3.141592653589793 rad - pos: 43.5,-10.5 - parent: 2 - type: Transform - - uid: 6748 - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-9.5 - parent: 2 - type: Transform - - uid: 6858 - components: - - pos: 67.5,-13.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7013 - components: - - pos: 6.5,32.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7015 - components: - - pos: 12.5,31.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7342 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-27.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7417 - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-0.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7675 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,16.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7676 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,12.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7715 - components: - - pos: 21.5,18.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7819 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,29.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7822 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,42.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7824 - components: - - pos: 55.5,48.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7825 - components: - - pos: 57.5,48.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7826 - components: - - rot: -1.5707963267948966 rad - pos: 67.5,24.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7827 - components: - - rot: -1.5707963267948966 rad - pos: 67.5,19.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7828 - components: - - rot: -1.5707963267948966 rad - pos: 75.5,11.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7829 - components: - - rot: 1.5707963267948966 rad - pos: 65.5,7.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7830 - components: - - pos: 12.5,18.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7860 - components: - - pos: 70.5,-5.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7861 - components: - - pos: 75.5,-15.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7862 - components: - - pos: 87.5,-14.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7863 - components: - - pos: 86.5,-2.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7864 - components: - - rot: -1.5707963267948966 rad - pos: 87.5,-9.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7865 - components: - - rot: -1.5707963267948966 rad - pos: 84.5,5.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7866 - components: - - pos: 81.5,12.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7968 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,18.5 - parent: 2 - type: Transform - - uid: 8332 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-17.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8334 - components: - - pos: 14.5,-16.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8526 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-40.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8527 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-40.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8528 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-42.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8529 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-41.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8565 - components: - - pos: 47.5,7.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8566 - components: - - pos: 56.5,6.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8570 - components: - - pos: 36.5,31.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8571 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,28.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8572 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,28.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8601 - components: - - rot: -1.5707963267948966 rad - pos: 58.5,12.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8602 - components: - - rot: -1.5707963267948966 rad - pos: 58.5,8.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8603 - components: - - rot: 3.141592653589793 rad - pos: 71.5,44.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8609 - components: - - pos: 30.5,26.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8639 - components: - - pos: 81.5,-0.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8640 - components: - - rot: 3.141592653589793 rad - pos: 76.5,-8.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8641 - components: - - rot: -1.5707963267948966 rad - pos: 82.5,-6.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8833 - components: - - rot: 3.141592653589793 rad - pos: 34.5,3.5 - parent: 2 - type: Transform - - uid: 8844 - components: - - rot: 1.5707963267948966 rad - pos: 102.5,-12.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9365 - components: - - rot: 1.5707963267948966 rad - pos: 77.5,9.5 - parent: 2 - type: Transform - - uid: 10707 - components: - - rot: 3.141592653589793 rad - pos: 80.5,1.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10710 - components: - - pos: 100.5,-19.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11097 - components: - - pos: 30.5,-19.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11098 - components: - - pos: 39.5,-19.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11099 - components: - - pos: 46.5,-18.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11100 - components: - - pos: 44.5,25.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11438 - components: - - rot: 3.141592653589793 rad - pos: 38.5,3.5 - parent: 2 - type: Transform - - uid: 11521 - components: - - pos: 54.5,-17.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11522 - components: - - pos: 70.5,-15.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11805 - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-11.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11807 - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-14.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11823 - components: - - pos: 89.5,-18.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11824 - components: - - pos: 85.5,-20.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11825 - components: - - pos: 92.5,-19.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11845 - components: - - pos: 64.5,-1.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11846 - components: - - pos: 67.5,-1.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 12354 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-9.5 - parent: 2 - type: Transform - - uid: 12355 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-13.5 - parent: 2 - type: Transform - - uid: 12841 - components: - - rot: 3.141592653589793 rad - pos: 36.5,3.5 - parent: 2 - type: Transform - - uid: 12980 - components: - - rot: 3.141592653589793 rad - pos: 49.5,-48.5 - parent: 2 - type: Transform - - uid: 12981 - components: - - pos: 46.5,-44.5 - parent: 2 - type: Transform - - uid: 12991 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-47.5 - parent: 2 - type: Transform -- proto: Protolathe - entities: - - uid: 5305 - components: - - pos: 53.5,18.5 - parent: 2 - type: Transform - - materialWhiteList: - - Steel - - Glass - - Plastic - - Wood - - Gold - type: MaterialStorage -- proto: ProtolatheMachineCircuitboard - entities: - - uid: 12371 - components: - - pos: 41.593582,-14.5012665 - parent: 2 - type: Transform -- proto: Rack - entities: - - uid: 251 - components: - - pos: -0.5,-5.5 - parent: 2 - type: Transform - - uid: 826 - components: - - pos: 27.5,-29.5 - parent: 2 - type: Transform - - uid: 827 - components: - - pos: 25.5,-29.5 - parent: 2 - type: Transform - - uid: 1462 - components: - - pos: 19.5,-38.5 - parent: 2 - type: Transform - - uid: 1750 - components: - - pos: 35.5,-17.5 - parent: 2 - type: Transform - - uid: 1751 - components: - - pos: 36.5,-17.5 - parent: 2 - type: Transform - - uid: 1752 - components: - - pos: 37.5,-17.5 - parent: 2 - type: Transform - - uid: 1753 - components: - - pos: 41.5,-16.5 - parent: 2 - type: Transform - - uid: 1754 - components: - - pos: 41.5,-15.5 - parent: 2 - type: Transform - - uid: 1755 - components: - - pos: 41.5,-14.5 - parent: 2 - type: Transform - - uid: 1756 - components: - - pos: 37.5,-14.5 - parent: 2 - type: Transform - - uid: 1757 - components: - - pos: 36.5,-14.5 - parent: 2 - type: Transform - - uid: 1786 - components: - - pos: 33.5,-17.5 - parent: 2 - type: Transform - - uid: 2153 - components: - - pos: 38.5,27.5 - parent: 2 - type: Transform - - uid: 5342 - components: - - pos: 60.5,25.5 - parent: 2 - type: Transform - - uid: 5375 - components: - - pos: 52.5,11.5 - parent: 2 - type: Transform - - uid: 5439 - components: - - pos: 9.5,-14.5 - parent: 2 - type: Transform - - uid: 5527 - components: - - pos: 64.5,18.5 - parent: 2 - type: Transform - - uid: 5717 - components: - - pos: 73.5,-12.5 - parent: 2 - type: Transform - - uid: 5732 - components: - - pos: 72.5,-9.5 - parent: 2 - type: Transform - - uid: 5741 - components: - - pos: 12.5,17.5 - parent: 2 - type: Transform - - uid: 5748 - components: - - pos: 49.5,-10.5 - parent: 2 - type: Transform - - uid: 5965 - components: - - rot: 3.141592653589793 rad - pos: 17.5,5.5 - parent: 2 - type: Transform - - uid: 7270 - components: - - pos: 30.5,-30.5 - parent: 2 - type: Transform - - uid: 7584 - components: - - pos: 38.5,28.5 - parent: 2 - type: Transform - - uid: 7970 - components: - - pos: 9.5,15.5 - parent: 2 - type: Transform - - uid: 8164 - components: - - pos: 8.5,32.5 - parent: 2 - type: Transform - - uid: 8817 - components: - - pos: 72.5,21.5 - parent: 2 - type: Transform - - uid: 8934 - components: - - pos: 69.5,21.5 - parent: 2 - type: Transform - - uid: 9017 - components: - - rot: -1.5707963267948966 rad - pos: 110.5,-19.5 - parent: 2 - type: Transform - - uid: 9366 - components: - - pos: 17.5,8.5 - parent: 2 - type: Transform - - uid: 9605 - components: - - pos: 27.5,5.5 - parent: 2 - type: Transform - - uid: 10303 - components: - - pos: 8.5,-9.5 - parent: 2 - type: Transform - - uid: 10304 - components: - - pos: 8.5,-8.5 - parent: 2 - type: Transform - - uid: 10791 - components: - - pos: 69.5,-15.5 - parent: 2 - type: Transform - - uid: 10795 - components: - - pos: 79.5,-16.5 - parent: 2 - type: Transform - - uid: 10796 - components: - - pos: 80.5,-16.5 - parent: 2 - type: Transform - - uid: 10822 - components: - - pos: 81.5,11.5 - parent: 2 - type: Transform - - uid: 10823 - components: - - pos: 81.5,9.5 - parent: 2 - type: Transform - - uid: 10833 - components: - - pos: 65.5,11.5 - parent: 2 - type: Transform - - uid: 10846 - components: - - pos: 45.5,27.5 - parent: 2 - type: Transform - - uid: 10852 - components: - - pos: 45.5,30.5 - parent: 2 - type: Transform - - uid: 11409 - components: - - pos: 31.5,-17.5 - parent: 2 - type: Transform - - uid: 12408 - components: - - pos: 45.5,-19.5 - parent: 2 - type: Transform - - uid: 12843 - components: - - pos: 23.5,4.5 - parent: 2 - type: Transform - - uid: 13002 - components: - - pos: 32.5,-46.5 - parent: 2 - type: Transform -- proto: RadioHandheld - entities: - - uid: 1325 - components: - - pos: 21.5,-19.5 - parent: 2 - type: Transform - - uid: 2165 - components: - - pos: 15.384224,35.641438 - parent: 2 - type: Transform - - uid: 2166 - components: - - pos: 15.602974,35.641438 - parent: 2 - type: Transform - - uid: 4090 - components: - - pos: 21.304989,-19.377043 - parent: 2 - type: Transform - - uid: 7267 - components: - - pos: 21.664364,-19.377043 - parent: 2 - type: Transform - - uid: 7268 - components: - - pos: 21.492489,-19.283293 - parent: 2 - type: Transform - - uid: 8693 - components: - - pos: 32.390015,26.521107 - parent: 2 - type: Transform - - uid: 8694 - components: - - pos: 32.546265,26.521107 - parent: 2 - type: Transform - - uid: 8695 - components: - - pos: 32.68689,26.505482 - parent: 2 - type: Transform -- proto: Railing - entities: - - uid: 6491 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-10.5 - parent: 2 - type: Transform - - uid: 6493 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-9.5 - parent: 2 - type: Transform - - uid: 6506 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-11.5 - parent: 2 - type: Transform - - uid: 6510 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-12.5 - parent: 2 - type: Transform - - uid: 6662 - components: - - rot: 3.141592653589793 rad - pos: 47.5,-8.5 - parent: 2 - type: Transform - - uid: 6663 - components: - - rot: 3.141592653589793 rad - pos: 46.5,-8.5 - parent: 2 - type: Transform -- proto: RandomArcade - entities: - - uid: 8653 - components: - - pos: 83.5,12.5 - parent: 2 - type: Transform -- proto: RandomArtifactSpawner - entities: - - uid: 10421 - components: - - pos: 64.5,28.5 - parent: 2 - type: Transform - - uid: 10422 - components: - - pos: 62.5,28.5 - parent: 2 - type: Transform -- proto: RandomPainting - entities: - - uid: 6945 - components: - - pos: 19.5,17.5 - parent: 2 - type: Transform -- proto: RandomPosterAny - entities: - - uid: 11520 - components: - - pos: 14.5,-22.5 - parent: 2 - type: Transform -- proto: RandomPosterContraband - entities: - - uid: 11164 - components: - - pos: 8.5,33.5 - parent: 2 - type: Transform - - uid: 11176 - components: - - pos: 14.5,6.5 - parent: 2 - type: Transform -- proto: RandomPosterLegit - entities: - - uid: 7573 - components: - - pos: 10.5,2.5 - parent: 2 - type: Transform - - uid: 8117 - components: - - pos: 20.5,2.5 - parent: 2 - type: Transform - - uid: 8670 - components: - - pos: 32.5,-13.5 - parent: 2 - type: Transform - - uid: 11163 - components: - - pos: 15.5,19.5 - parent: 2 - type: Transform - - uid: 11169 - components: - - pos: 18.5,4.5 - parent: 2 - type: Transform - - uid: 11194 - components: - - pos: 57.5,4.5 - parent: 2 - type: Transform -- proto: RandomSoap - entities: - - uid: 8162 - components: - - pos: 4.5,-5.5 - parent: 2 - type: Transform - - uid: 11905 - components: - - pos: 78.5,7.5 - parent: 2 - type: Transform -- proto: RandomSpawner - entities: - - uid: 5688 - components: - - pos: 17.5,-33.5 - parent: 2 - type: Transform - - uid: 5690 - components: - - pos: 25.5,-33.5 - parent: 2 - type: Transform - - uid: 5691 - components: - - pos: 15.5,-25.5 - parent: 2 - type: Transform - - uid: 9308 - components: - - pos: 68.5,8.5 - parent: 2 - type: Transform - - uid: 11866 - components: - - pos: 57.5,-13.5 - parent: 2 - type: Transform - - uid: 11867 - components: - - pos: 62.5,-15.5 - parent: 2 - type: Transform - - uid: 11868 - components: - - pos: 59.5,-16.5 - parent: 2 - type: Transform - - uid: 11874 - components: - - pos: 12.5,15.5 - parent: 2 - type: Transform - - uid: 11876 - components: - - pos: 20.5,26.5 - parent: 2 - type: Transform - - uid: 11879 - components: - - pos: 83.5,7.5 - parent: 2 - type: Transform - - uid: 11880 - components: - - pos: 68.5,11.5 - parent: 2 - type: Transform - - uid: 11881 - components: - - pos: 57.5,5.5 - parent: 2 - type: Transform - - uid: 11882 - components: - - pos: 70.5,29.5 - parent: 2 - type: Transform - - uid: 11883 - components: - - pos: 70.5,28.5 - parent: 2 - type: Transform - - uid: 11884 - components: - - pos: 71.5,37.5 - parent: 2 - type: Transform - - uid: 11893 - components: - - pos: 18.5,36.5 - parent: 2 - type: Transform - - uid: 11895 - components: - - pos: 21.5,37.5 - parent: 2 - type: Transform - - uid: 12409 - components: - - pos: 44.5,-19.5 - parent: 2 - type: Transform - - uid: 12410 - components: - - pos: 29.5,-20.5 - parent: 2 - type: Transform - - uid: 12411 - components: - - pos: 27.5,-19.5 - parent: 2 - type: Transform - - uid: 12412 - components: - - pos: 25.5,-5.5 - parent: 2 - type: Transform - - uid: 12413 - components: - - pos: 36.5,1.5 - parent: 2 - type: Transform - - uid: 12414 - components: - - pos: 47.5,-1.5 - parent: 2 - type: Transform - - uid: 12415 - components: - - pos: 25.5,12.5 - parent: 2 - type: Transform - - uid: 12417 - components: - - pos: 19.5,14.5 - parent: 2 - type: Transform - - uid: 12418 - components: - - pos: 16.5,10.5 - parent: 2 - type: Transform - - uid: 12419 - components: - - pos: 4.5,10.5 - parent: 2 - type: Transform - - uid: 12420 - components: - - pos: 7.5,0.5 - parent: 2 - type: Transform -- proto: RandomVending - entities: - - uid: 8261 - components: - - pos: 24.5,18.5 - parent: 2 - type: Transform -- proto: RandomVendingDrinks - entities: - - uid: 8001 - components: - - pos: 6.5,13.5 - parent: 2 - type: Transform - - uid: 8262 - components: - - pos: 24.5,17.5 - parent: 2 - type: Transform - - uid: 9350 - components: - - pos: 27.5,12.5 - parent: 2 - type: Transform - - uid: 9612 - components: - - pos: 25.5,3.5 - parent: 2 - type: Transform - - uid: 11032 - components: - - pos: 20.5,35.5 - parent: 2 - type: Transform -- proto: RandomVendingSnacks - entities: - - uid: 8002 - components: - - pos: 5.5,13.5 - parent: 2 - type: Transform -- proto: Recycler - entities: - - uid: 5855 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-29.5 - parent: 2 - type: Transform - - links: - - 5856 - type: DeviceLinkSink -- proto: ReinforcedPlasmaWindow - entities: - - uid: 232 - components: - - pos: 44.5,-33.5 - parent: 2 - type: Transform - - uid: 685 - components: - - pos: 33.5,-30.5 - parent: 2 - type: Transform - - uid: 2356 - components: - - pos: 37.5,27.5 - parent: 2 - type: Transform - - uid: 2362 - components: - - pos: 37.5,26.5 - parent: 2 - type: Transform - - uid: 2363 - components: - - pos: 38.5,25.5 - parent: 2 - type: Transform - - uid: 2364 - components: - - pos: 41.5,25.5 - parent: 2 - type: Transform - - uid: 2366 - components: - - pos: 37.5,28.5 - parent: 2 - type: Transform - - uid: 2400 - components: - - pos: 44.5,-25.5 - parent: 2 - type: Transform - - uid: 2411 - components: - - pos: 36.5,-29.5 - parent: 2 - type: Transform - - uid: 2414 - components: - - pos: 44.5,-27.5 - parent: 2 - type: Transform - - uid: 2435 - components: - - pos: 44.5,-29.5 - parent: 2 - type: Transform - - uid: 3949 - components: - - pos: 33.5,-32.5 - parent: 2 - type: Transform - - uid: 3950 - components: - - pos: 34.5,-29.5 - parent: 2 - type: Transform - - uid: 4132 - components: - - pos: 44.5,-23.5 - parent: 2 - type: Transform - - uid: 4230 - components: - - pos: 34.5,-33.5 - parent: 2 - type: Transform - - uid: 4258 - components: - - pos: 37.5,-30.5 - parent: 2 - type: Transform - - uid: 4259 - components: - - pos: 37.5,-31.5 - parent: 2 - type: Transform - - uid: 4264 - components: - - pos: 37.5,-32.5 - parent: 2 - type: Transform - - uid: 4265 - components: - - pos: 36.5,-33.5 - parent: 2 - type: Transform - - uid: 4298 - components: - - pos: 44.5,-31.5 - parent: 2 - type: Transform - - uid: 8699 - components: - - pos: 63.5,26.5 - parent: 2 - type: Transform - - uid: 10088 - components: - - pos: 64.5,26.5 - parent: 2 - type: Transform - - uid: 12984 - components: - - pos: 45.5,-48.5 - parent: 2 - type: Transform - - uid: 12985 - components: - - pos: 45.5,-47.5 - parent: 2 - type: Transform - - uid: 12986 - components: - - pos: 45.5,-46.5 - parent: 2 - type: Transform - - uid: 12987 - components: - - pos: 45.5,-45.5 - parent: 2 - type: Transform - - uid: 12988 - components: - - pos: 45.5,-44.5 - parent: 2 - type: Transform -- proto: ReinforcedUraniumWindow - entities: - - uid: 3885 - components: - - pos: 17.5,-16.5 - parent: 2 - type: Transform - - uid: 3902 - components: - - pos: 19.5,-16.5 - parent: 2 - type: Transform - - uid: 3945 - components: - - pos: 19.5,-17.5 - parent: 2 - type: Transform - - uid: 3946 - components: - - pos: 19.5,-18.5 - parent: 2 - type: Transform - - uid: 3947 - components: - - pos: 18.5,-18.5 - parent: 2 - type: Transform - - uid: 3948 - components: - - pos: 17.5,-18.5 - parent: 2 - type: Transform -- proto: ReinforcedWindow - entities: - - uid: 13 - components: - - pos: -7.5,-4.5 - parent: 2 - type: Transform - - uid: 17 - components: - - pos: -7.5,-5.5 - parent: 2 - type: Transform - - uid: 18 - components: - - pos: -7.5,-1.5 - parent: 2 - type: Transform - - uid: 21 - components: - - pos: -7.5,-6.5 - parent: 2 - type: Transform - - uid: 23 - components: - - pos: -7.5,-2.5 - parent: 2 - type: Transform - - uid: 25 - components: - - pos: -4.5,-11.5 - parent: 2 - type: Transform - - uid: 45 - components: - - pos: -4.5,-14.5 - parent: 2 - type: Transform - - uid: 46 - components: - - pos: -7.5,-8.5 - parent: 2 - type: Transform - - uid: 47 - components: - - pos: -7.5,-10.5 - parent: 2 - type: Transform - - uid: 79 - components: - - pos: -3.5,1.5 - parent: 2 - type: Transform - - uid: 80 - components: - - pos: -1.5,2.5 - parent: 2 - type: Transform - - uid: 89 - components: - - pos: -4.5,-18.5 - parent: 2 - type: Transform - - uid: 90 - components: - - pos: -6.5,-17.5 - parent: 2 - type: Transform - - uid: 93 - components: - - pos: -6.5,-18.5 - parent: 2 - type: Transform - - uid: 99 - components: - - pos: -6.5,-15.5 - parent: 2 - type: Transform - - uid: 100 - components: - - pos: -6.5,-16.5 - parent: 2 - type: Transform - - uid: 119 - components: - - pos: -4.5,-8.5 - parent: 2 - type: Transform - - uid: 120 - components: - - pos: -4.5,-9.5 - parent: 2 - type: Transform - - uid: 123 - components: - - pos: -3.5,-13.5 - parent: 2 - type: Transform - - uid: 124 - components: - - pos: -2.5,-13.5 - parent: 2 - type: Transform - - uid: 125 - components: - - pos: -1.5,-13.5 - parent: 2 - type: Transform - - uid: 198 - components: - - pos: 1.5,-17.5 - parent: 2 - type: Transform - - uid: 199 - components: - - pos: 0.5,-17.5 - parent: 2 - type: Transform - - uid: 233 - components: - - pos: -4.5,-16.5 - parent: 2 - type: Transform - - uid: 325 - components: - - pos: -4.5,-4.5 - parent: 2 - type: Transform - - uid: 326 - components: - - pos: -3.5,-2.5 - parent: 2 - type: Transform - - uid: 327 - components: - - pos: -1.5,-2.5 - parent: 2 - type: Transform - - uid: 328 - components: - - pos: -22.5,-14.5 - parent: 2 - type: Transform - - uid: 329 - components: - - pos: -22.5,-13.5 - parent: 2 - type: Transform - - uid: 330 - components: - - pos: -22.5,-12.5 - parent: 2 - type: Transform - - uid: 345 - components: - - pos: -3.5,2.5 - parent: 2 - type: Transform - - uid: 357 - components: - - pos: -15.5,-11.5 - parent: 2 - type: Transform - - uid: 359 - components: - - pos: -16.5,-11.5 - parent: 2 - type: Transform - - uid: 397 - components: - - pos: 2.5,6.5 - parent: 2 - type: Transform - - uid: 400 - components: - - pos: 2.5,7.5 - parent: 2 - type: Transform - - uid: 418 - components: - - pos: 53.5,12.5 - parent: 2 - type: Transform - - uid: 427 - components: - - pos: 55.5,12.5 - parent: 2 - type: Transform - - uid: 433 - components: - - pos: 5.5,20.5 - parent: 2 - type: Transform - - uid: 445 - components: - - pos: 60.5,12.5 - parent: 2 - type: Transform - - uid: 446 - components: - - pos: 61.5,12.5 - parent: 2 - type: Transform - - uid: 464 - components: - - pos: 63.5,12.5 - parent: 2 - type: Transform - - uid: 465 - components: - - pos: 65.5,16.5 - parent: 2 - type: Transform - - uid: 469 - components: - - pos: -7.5,-9.5 - parent: 2 - type: Transform - - uid: 510 - components: - - pos: -8.5,-11.5 - parent: 2 - type: Transform - - uid: 560 - components: - - pos: 14.5,-2.5 - parent: 2 - type: Transform - - uid: 561 - components: - - pos: 15.5,-2.5 - parent: 2 - type: Transform - - uid: 574 - components: - - pos: 65.5,14.5 - parent: 2 - type: Transform - - uid: 585 - components: - - pos: 57.5,19.5 - parent: 2 - type: Transform - - uid: 590 - components: - - pos: 57.5,20.5 - parent: 2 - type: Transform - - uid: 591 - components: - - pos: 57.5,17.5 - parent: 2 - type: Transform - - uid: 689 - components: - - pos: -20.5,-11.5 - parent: 2 - type: Transform - - uid: 692 - components: - - pos: -11.5,-11.5 - parent: 2 - type: Transform - - uid: 695 - components: - - pos: -11.5,-15.5 - parent: 2 - type: Transform - - uid: 813 - components: - - pos: 27.5,-26.5 - parent: 2 - type: Transform - - uid: 814 - components: - - pos: 25.5,-26.5 - parent: 2 - type: Transform - - uid: 862 - components: - - pos: 19.5,-30.5 - parent: 2 - type: Transform - - uid: 863 - components: - - pos: 19.5,-32.5 - parent: 2 - type: Transform - - uid: 864 - components: - - pos: 27.5,-34.5 - parent: 2 - type: Transform - - uid: 865 - components: - - pos: 28.5,-34.5 - parent: 2 - type: Transform - - uid: 866 - components: - - pos: 25.5,-34.5 - parent: 2 - type: Transform - - uid: 867 - components: - - pos: 24.5,-34.5 - parent: 2 - type: Transform - - uid: 902 - components: - - pos: 35.5,-26.5 - parent: 2 - type: Transform - - uid: 905 - components: - - pos: 37.5,-27.5 - parent: 2 - type: Transform - - uid: 928 - components: - - pos: 14.5,-33.5 - parent: 2 - type: Transform - - uid: 929 - components: - - pos: 14.5,-35.5 - parent: 2 - type: Transform - - uid: 930 - components: - - pos: 14.5,-36.5 - parent: 2 - type: Transform - - uid: 931 - components: - - pos: 13.5,-37.5 - parent: 2 - type: Transform - - uid: 932 - components: - - pos: 12.5,-37.5 - parent: 2 - type: Transform - - uid: 933 - components: - - pos: 11.5,-37.5 - parent: 2 - type: Transform - - uid: 934 - components: - - pos: 10.5,-37.5 - parent: 2 - type: Transform - - uid: 982 - components: - - pos: 20.5,-37.5 - parent: 2 - type: Transform - - uid: 983 - components: - - pos: 19.5,-37.5 - parent: 2 - type: Transform - - uid: 984 - components: - - pos: 22.5,-37.5 - parent: 2 - type: Transform - - uid: 985 - components: - - pos: 23.5,-37.5 - parent: 2 - type: Transform - - uid: 986 - components: - - pos: 24.5,-38.5 - parent: 2 - type: Transform - - uid: 987 - components: - - pos: 18.5,-38.5 - parent: 2 - type: Transform - - uid: 988 - components: - - pos: 18.5,-41.5 - parent: 2 - type: Transform - - uid: 989 - components: - - pos: 18.5,-42.5 - parent: 2 - type: Transform - - uid: 990 - components: - - pos: 18.5,-43.5 - parent: 2 - type: Transform - - uid: 991 - components: - - pos: 17.5,-43.5 - parent: 2 - type: Transform - - uid: 992 - components: - - pos: 16.5,-43.5 - parent: 2 - type: Transform - - uid: 993 - components: - - pos: 18.5,-44.5 - parent: 2 - type: Transform - - uid: 994 - components: - - pos: 19.5,-44.5 - parent: 2 - type: Transform - - uid: 995 - components: - - pos: 20.5,-44.5 - parent: 2 - type: Transform - - uid: 996 - components: - - pos: 21.5,-44.5 - parent: 2 - type: Transform - - uid: 997 - components: - - pos: 22.5,-44.5 - parent: 2 - type: Transform - - uid: 998 - components: - - pos: 23.5,-44.5 - parent: 2 - type: Transform - - uid: 999 - components: - - pos: 24.5,-44.5 - parent: 2 - type: Transform - - uid: 1000 - components: - - pos: 24.5,-43.5 - parent: 2 - type: Transform - - uid: 1001 - components: - - pos: 25.5,-43.5 - parent: 2 - type: Transform - - uid: 1002 - components: - - pos: 26.5,-43.5 - parent: 2 - type: Transform - - uid: 1003 - components: - - pos: 24.5,-42.5 - parent: 2 - type: Transform - - uid: 1004 - components: - - pos: 24.5,-41.5 - parent: 2 - type: Transform - - uid: 1051 - components: - - pos: -13.5,-15.5 - parent: 2 - type: Transform - - uid: 1052 - components: - - pos: 2.5,11.5 - parent: 2 - type: Transform - - uid: 1061 - components: - - pos: 2.5,12.5 - parent: 2 - type: Transform - - uid: 1105 - components: - - pos: -12.5,-15.5 - parent: 2 - type: Transform - - uid: 1161 - components: - - pos: -9.5,-11.5 - parent: 2 - type: Transform - - uid: 1231 - components: - - pos: 33.5,-27.5 - parent: 2 - type: Transform - - uid: 1232 - components: - - pos: 34.5,-26.5 - parent: 2 - type: Transform - - uid: 1251 - components: - - pos: 33.5,-34.5 - parent: 2 - type: Transform - - uid: 1308 - components: - - pos: 7.5,-25.5 - parent: 2 - type: Transform - - uid: 1309 - components: - - pos: 6.5,-25.5 - parent: 2 - type: Transform - - uid: 1310 - components: - - pos: 6.5,-26.5 - parent: 2 - type: Transform - - uid: 1311 - components: - - pos: 6.5,-27.5 - parent: 2 - type: Transform - - uid: 1312 - components: - - pos: 6.5,-30.5 - parent: 2 - type: Transform - - uid: 1313 - components: - - pos: 6.5,-31.5 - parent: 2 - type: Transform - - uid: 1314 - components: - - pos: 6.5,-32.5 - parent: 2 - type: Transform - - uid: 1315 - components: - - pos: 5.5,-32.5 - parent: 2 - type: Transform - - uid: 1320 - components: - - pos: 2.5,8.5 - parent: 2 - type: Transform - - uid: 1322 - components: - - pos: 2.5,10.5 - parent: 2 - type: Transform - - uid: 1342 - components: - - pos: 1.5,-27.5 - parent: 2 - type: Transform - - uid: 1343 - components: - - pos: 0.5,-27.5 - parent: 2 - type: Transform - - uid: 1344 - components: - - pos: -1.5,-28.5 - parent: 2 - type: Transform - - uid: 1345 - components: - - pos: -1.5,-29.5 - parent: 2 - type: Transform - - uid: 1363 - components: - - pos: 1.5,-34.5 - parent: 2 - type: Transform - - uid: 1364 - components: - - pos: 0.5,-34.5 - parent: 2 - type: Transform - - uid: 1365 - components: - - pos: -0.5,-34.5 - parent: 2 - type: Transform - - uid: 1366 - components: - - pos: 1.5,-36.5 - parent: 2 - type: Transform - - uid: 1367 - components: - - pos: 0.5,-36.5 - parent: 2 - type: Transform - - uid: 1368 - components: - - pos: -0.5,-36.5 - parent: 2 - type: Transform - - uid: 1526 - components: - - pos: 0.5,1.5 - parent: 2 - type: Transform - - uid: 1735 - components: - - pos: 42.5,-16.5 - parent: 2 - type: Transform - - uid: 1736 - components: - - pos: 42.5,-15.5 - parent: 2 - type: Transform - - uid: 1737 - components: - - pos: 42.5,-14.5 - parent: 2 - type: Transform - - uid: 1738 - components: - - pos: 46.5,-16.5 - parent: 2 - type: Transform - - uid: 1739 - components: - - pos: 46.5,-15.5 - parent: 2 - type: Transform - - uid: 1740 - components: - - pos: 46.5,-14.5 - parent: 2 - type: Transform - - uid: 1808 - components: - - pos: -4.5,-17.5 - parent: 2 - type: Transform - - uid: 1809 - components: - - pos: -18.5,-11.5 - parent: 2 - type: Transform - - uid: 1855 - components: - - pos: -3.5,0.5 - parent: 2 - type: Transform - - uid: 2022 - components: - - pos: -19.5,-15.5 - parent: 2 - type: Transform - - uid: 2053 - components: - - pos: 4.5,28.5 - parent: 2 - type: Transform - - uid: 2054 - components: - - pos: 6.5,28.5 - parent: 2 - type: Transform - - uid: 2055 - components: - - pos: 5.5,28.5 - parent: 2 - type: Transform - - uid: 2056 - components: - - pos: 4.5,25.5 - parent: 2 - type: Transform - - uid: 2057 - components: - - pos: 5.5,25.5 - parent: 2 - type: Transform - - uid: 2058 - components: - - pos: 6.5,25.5 - parent: 2 - type: Transform - - uid: 2059 - components: - - pos: 4.5,22.5 - parent: 2 - type: Transform - - uid: 2060 - components: - - pos: 5.5,22.5 - parent: 2 - type: Transform - - uid: 2061 - components: - - pos: 6.5,22.5 - parent: 2 - type: Transform - - uid: 2068 - components: - - pos: -13.5,-11.5 - parent: 2 - type: Transform - - uid: 2240 - components: - - pos: 28.5,21.5 - parent: 2 - type: Transform - - uid: 2241 - components: - - pos: 28.5,20.5 - parent: 2 - type: Transform - - uid: 2242 - components: - - pos: 28.5,18.5 - parent: 2 - type: Transform - - uid: 2243 - components: - - pos: 28.5,17.5 - parent: 2 - type: Transform - - uid: 2256 - components: - - pos: 31.5,21.5 - parent: 2 - type: Transform - - uid: 2257 - components: - - pos: 31.5,17.5 - parent: 2 - type: Transform - - uid: 2284 - components: - - pos: 44.5,34.5 - parent: 2 - type: Transform - - uid: 2285 - components: - - pos: 44.5,35.5 - parent: 2 - type: Transform - - uid: 2286 - components: - - pos: 44.5,36.5 - parent: 2 - type: Transform - - uid: 2287 - components: - - pos: 42.5,33.5 - parent: 2 - type: Transform - - uid: 2288 - components: - - pos: 42.5,32.5 - parent: 2 - type: Transform - - uid: 2289 - components: - - pos: 42.5,31.5 - parent: 2 - type: Transform - - uid: 2367 - components: - - pos: 37.5,24.5 - parent: 2 - type: Transform - - uid: 2368 - components: - - pos: 37.5,23.5 - parent: 2 - type: Transform - - uid: 2369 - components: - - pos: 38.5,20.5 - parent: 2 - type: Transform - - uid: 2370 - components: - - pos: 37.5,21.5 - parent: 2 - type: Transform - - uid: 2373 - components: - - pos: 42.5,24.5 - parent: 2 - type: Transform - - uid: 2374 - components: - - pos: 42.5,22.5 - parent: 2 - type: Transform - - uid: 2427 - components: - - pos: 88.5,-6.5 - parent: 2 - type: Transform - - uid: 2458 - components: - - pos: 43.5,16.5 - parent: 2 - type: Transform - - uid: 2459 - components: - - pos: 41.5,16.5 - parent: 2 - type: Transform - - uid: 2476 - components: - - pos: 33.5,-36.5 - parent: 2 - type: Transform - - uid: 2483 - components: - - pos: 37.5,-28.5 - parent: 2 - type: Transform - - uid: 2745 - components: - - pos: 15.5,42.5 - parent: 2 - type: Transform - - uid: 2746 - components: - - pos: 14.5,42.5 - parent: 2 - type: Transform - - uid: 2747 - components: - - pos: 13.5,42.5 - parent: 2 - type: Transform - - uid: 2748 - components: - - pos: 23.5,38.5 - parent: 2 - type: Transform - - uid: 2749 - components: - - pos: 22.5,38.5 - parent: 2 - type: Transform - - uid: 2750 - components: - - pos: 21.5,38.5 - parent: 2 - type: Transform - - uid: 2752 - components: - - pos: 21.5,43.5 - parent: 2 - type: Transform - - uid: 2753 - components: - - pos: 24.5,43.5 - parent: 2 - type: Transform - - uid: 2754 - components: - - pos: 27.5,38.5 - parent: 2 - type: Transform - - uid: 2755 - components: - - pos: 27.5,43.5 - parent: 2 - type: Transform - - uid: 2786 - components: - - pos: -4.5,-12.5 - parent: 2 - type: Transform - - uid: 2817 - components: - - pos: 22.5,49.5 - parent: 2 - type: Transform - - uid: 2818 - components: - - pos: 23.5,49.5 - parent: 2 - type: Transform - - uid: 2819 - components: - - pos: 24.5,49.5 - parent: 2 - type: Transform - - uid: 2820 - components: - - pos: 25.5,49.5 - parent: 2 - type: Transform - - uid: 2821 - components: - - pos: 26.5,49.5 - parent: 2 - type: Transform - - uid: 2822 - components: - - pos: 27.5,49.5 - parent: 2 - type: Transform - - uid: 2823 - components: - - pos: 28.5,49.5 - parent: 2 - type: Transform - - uid: 2824 - components: - - pos: 29.5,49.5 - parent: 2 - type: Transform - - uid: 2825 - components: - - pos: 30.5,49.5 - parent: 2 - type: Transform - - uid: 2826 - components: - - pos: 31.5,49.5 - parent: 2 - type: Transform - - uid: 2827 - components: - - pos: 32.5,49.5 - parent: 2 - type: Transform - - uid: 2859 - components: - - pos: 60.5,-12.5 - parent: 2 - type: Transform - - uid: 2860 - components: - - pos: 61.5,-12.5 - parent: 2 - type: Transform - - uid: 2861 - components: - - pos: 62.5,-12.5 - parent: 2 - type: Transform - - uid: 2862 - components: - - pos: 63.5,-12.5 - parent: 2 - type: Transform - - uid: 2863 - components: - - pos: 62.5,-14.5 - parent: 2 - type: Transform - - uid: 2864 - components: - - pos: 63.5,-14.5 - parent: 2 - type: Transform - - uid: 2865 - components: - - pos: 60.5,-14.5 - parent: 2 - type: Transform - - uid: 2866 - components: - - pos: 61.5,-14.5 - parent: 2 - type: Transform - - uid: 2867 - components: - - pos: 59.5,-14.5 - parent: 2 - type: Transform - - uid: 3069 - components: - - pos: 42.5,40.5 - parent: 2 - type: Transform - - uid: 3070 - components: - - pos: 41.5,40.5 - parent: 2 - type: Transform - - uid: 3086 - components: - - pos: 36.5,46.5 - parent: 2 - type: Transform - - uid: 3087 - components: - - pos: 36.5,45.5 - parent: 2 - type: Transform - - uid: 3088 - components: - - pos: 18.5,45.5 - parent: 2 - type: Transform - - uid: 3089 - components: - - pos: 18.5,44.5 - parent: 2 - type: Transform - - uid: 3098 - components: - - pos: 48.5,49.5 - parent: 2 - type: Transform - - uid: 3099 - components: - - pos: 48.5,48.5 - parent: 2 - type: Transform - - uid: 3100 - components: - - pos: 47.5,48.5 - parent: 2 - type: Transform - - uid: 3101 - components: - - pos: 46.5,48.5 - parent: 2 - type: Transform - - uid: 3102 - components: - - pos: 45.5,48.5 - parent: 2 - type: Transform - - uid: 3103 - components: - - pos: 45.5,47.5 - parent: 2 - type: Transform - - uid: 3104 - components: - - pos: 44.5,47.5 - parent: 2 - type: Transform - - uid: 3105 - components: - - pos: 43.5,47.5 - parent: 2 - type: Transform - - uid: 3110 - components: - - pos: 46.5,45.5 - parent: 2 - type: Transform - - uid: 3111 - components: - - pos: 47.5,45.5 - parent: 2 - type: Transform - - uid: 3112 - components: - - pos: 48.5,45.5 - parent: 2 - type: Transform - - uid: 3113 - components: - - pos: 49.5,45.5 - parent: 2 - type: Transform - - uid: 3127 - components: - - pos: 50.5,46.5 - parent: 2 - type: Transform - - uid: 3128 - components: - - pos: 50.5,47.5 - parent: 2 - type: Transform - - uid: 3129 - components: - - pos: 51.5,47.5 - parent: 2 - type: Transform - - uid: 3130 - components: - - pos: 52.5,47.5 - parent: 2 - type: Transform - - uid: 3131 - components: - - pos: 53.5,47.5 - parent: 2 - type: Transform - - uid: 3132 - components: - - pos: 54.5,47.5 - parent: 2 - type: Transform - - uid: 3133 - components: - - pos: 55.5,47.5 - parent: 2 - type: Transform - - uid: 3134 - components: - - pos: 56.5,47.5 - parent: 2 - type: Transform - - uid: 3135 - components: - - pos: 57.5,47.5 - parent: 2 - type: Transform - - uid: 3142 - components: - - pos: 47.5,40.5 - parent: 2 - type: Transform - - uid: 3143 - components: - - pos: 47.5,39.5 - parent: 2 - type: Transform - - uid: 3144 - components: - - pos: 47.5,38.5 - parent: 2 - type: Transform - - uid: 3145 - components: - - pos: 47.5,37.5 - parent: 2 - type: Transform - - uid: 3209 - components: - - pos: 58.5,47.5 - parent: 2 - type: Transform - - uid: 3210 - components: - - pos: 59.5,47.5 - parent: 2 - type: Transform - - uid: 3211 - components: - - pos: 60.5,47.5 - parent: 2 - type: Transform - - uid: 3212 - components: - - pos: 61.5,47.5 - parent: 2 - type: Transform - - uid: 3214 - components: - - pos: 62.5,47.5 - parent: 2 - type: Transform - - uid: 3265 - components: - - pos: 62.5,46.5 - parent: 2 - type: Transform - - uid: 3284 - components: - - pos: 50.5,32.5 - parent: 2 - type: Transform - - uid: 3285 - components: - - pos: 50.5,33.5 - parent: 2 - type: Transform - - uid: 3286 - components: - - pos: 50.5,34.5 - parent: 2 - type: Transform - - uid: 3287 - components: - - pos: 50.5,35.5 - parent: 2 - type: Transform - - uid: 3288 - components: - - pos: 50.5,36.5 - parent: 2 - type: Transform - - uid: 3289 - components: - - pos: 50.5,38.5 - parent: 2 - type: Transform - - uid: 3290 - components: - - pos: 50.5,37.5 - parent: 2 - type: Transform - - uid: 3291 - components: - - pos: 50.5,39.5 - parent: 2 - type: Transform - - uid: 3292 - components: - - pos: 51.5,39.5 - parent: 2 - type: Transform - - uid: 3293 - components: - - pos: 51.5,40.5 - parent: 2 - type: Transform - - uid: 3294 - components: - - pos: 52.5,40.5 - parent: 2 - type: Transform - - uid: 3295 - components: - - pos: 53.5,40.5 - parent: 2 - type: Transform - - uid: 3296 - components: - - pos: 53.5,41.5 - parent: 2 - type: Transform - - uid: 3297 - components: - - pos: 54.5,41.5 - parent: 2 - type: Transform - - uid: 3298 - components: - - pos: 55.5,41.5 - parent: 2 - type: Transform - - uid: 3299 - components: - - pos: 56.5,41.5 - parent: 2 - type: Transform - - uid: 3300 - components: - - pos: 57.5,41.5 - parent: 2 - type: Transform - - uid: 3301 - components: - - pos: 58.5,41.5 - parent: 2 - type: Transform - - uid: 3302 - components: - - pos: 59.5,41.5 - parent: 2 - type: Transform - - uid: 3303 - components: - - pos: 59.5,40.5 - parent: 2 - type: Transform - - uid: 3304 - components: - - pos: 60.5,40.5 - parent: 2 - type: Transform - - uid: 3305 - components: - - pos: 61.5,40.5 - parent: 2 - type: Transform - - uid: 3306 - components: - - pos: 61.5,39.5 - parent: 2 - type: Transform - - uid: 3307 - components: - - pos: 62.5,39.5 - parent: 2 - type: Transform - - uid: 3308 - components: - - pos: 62.5,38.5 - parent: 2 - type: Transform - - uid: 3309 - components: - - pos: 62.5,37.5 - parent: 2 - type: Transform - - uid: 3310 - components: - - pos: 62.5,36.5 - parent: 2 - type: Transform - - uid: 3311 - components: - - pos: 62.5,34.5 - parent: 2 - type: Transform - - uid: 3312 - components: - - pos: 62.5,33.5 - parent: 2 - type: Transform - - uid: 3313 - components: - - pos: 62.5,32.5 - parent: 2 - type: Transform - - uid: 3314 - components: - - pos: 62.5,35.5 - parent: 2 - type: Transform - - uid: 3335 - components: - - pos: 50.5,49.5 - parent: 2 - type: Transform - - uid: 3336 - components: - - pos: 51.5,49.5 - parent: 2 - type: Transform - - uid: 3337 - components: - - pos: 52.5,49.5 - parent: 2 - type: Transform - - uid: 3338 - components: - - pos: 53.5,49.5 - parent: 2 - type: Transform - - uid: 3339 - components: - - pos: 55.5,49.5 - parent: 2 - type: Transform - - uid: 3340 - components: - - pos: 54.5,49.5 - parent: 2 - type: Transform - - uid: 3343 - components: - - pos: 57.5,49.5 - parent: 2 - type: Transform - - uid: 3344 - components: - - pos: 58.5,49.5 - parent: 2 - type: Transform - - uid: 3345 - components: - - pos: 59.5,49.5 - parent: 2 - type: Transform - - uid: 3346 - components: - - pos: 60.5,49.5 - parent: 2 - type: Transform - - uid: 3347 - components: - - pos: 61.5,49.5 - parent: 2 - type: Transform - - uid: 3348 - components: - - pos: 62.5,49.5 - parent: 2 - type: Transform - - uid: 3389 - components: - - pos: 64.5,49.5 - parent: 2 - type: Transform - - uid: 3390 - components: - - pos: 64.5,48.5 - parent: 2 - type: Transform - - uid: 3391 - components: - - pos: 65.5,48.5 - parent: 2 - type: Transform - - uid: 3392 - components: - - pos: 66.5,48.5 - parent: 2 - type: Transform - - uid: 3393 - components: - - pos: 67.5,48.5 - parent: 2 - type: Transform - - uid: 3394 - components: - - pos: 67.5,47.5 - parent: 2 - type: Transform - - uid: 3395 - components: - - pos: 68.5,47.5 - parent: 2 - type: Transform - - uid: 3397 - components: - - pos: 72.5,46.5 - parent: 2 - type: Transform - - uid: 3398 - components: - - pos: 73.5,46.5 - parent: 2 - type: Transform - - uid: 3399 - components: - - pos: 74.5,46.5 - parent: 2 - type: Transform - - uid: 3400 - components: - - pos: 74.5,44.5 - parent: 2 - type: Transform - - uid: 3401 - components: - - pos: 73.5,44.5 - parent: 2 - type: Transform - - uid: 3402 - components: - - pos: 72.5,44.5 - parent: 2 - type: Transform - - uid: 3479 - components: - - pos: 48.5,17.5 - parent: 2 - type: Transform - - uid: 3480 - components: - - pos: 48.5,19.5 - parent: 2 - type: Transform - - uid: 3499 - components: - - pos: 54.5,26.5 - parent: 2 - type: Transform - - uid: 3500 - components: - - pos: 55.5,26.5 - parent: 2 - type: Transform - - uid: 3501 - components: - - pos: 55.5,27.5 - parent: 2 - type: Transform - - uid: 3502 - components: - - pos: 57.5,27.5 - parent: 2 - type: Transform - - uid: 3503 - components: - - pos: 57.5,26.5 - parent: 2 - type: Transform - - uid: 3504 - components: - - pos: 58.5,26.5 - parent: 2 - type: Transform - - uid: 3594 - components: - - pos: 90.5,-6.5 - parent: 2 - type: Transform - - uid: 3612 - components: - - pos: 88.5,-5.5 - parent: 2 - type: Transform - - uid: 3613 - components: - - pos: 88.5,-4.5 - parent: 2 - type: Transform - - uid: 3618 - components: - - pos: 75.5,17.5 - parent: 2 - type: Transform - - uid: 3619 - components: - - pos: 75.5,16.5 - parent: 2 - type: Transform - - uid: 3620 - components: - - pos: 77.5,13.5 - parent: 2 - type: Transform - - uid: 3621 - components: - - pos: 75.5,15.5 - parent: 2 - type: Transform - - uid: 3622 - components: - - pos: 78.5,13.5 - parent: 2 - type: Transform - - uid: 3623 - components: - - pos: 79.5,13.5 - parent: 2 - type: Transform - - uid: 3624 - components: - - pos: 80.5,13.5 - parent: 2 - type: Transform - - uid: 3705 - components: - - pos: 91.5,-6.5 - parent: 2 - type: Transform - - uid: 3706 - components: - - pos: 90.5,0.5 - parent: 2 - type: Transform - - uid: 3707 - components: - - pos: 90.5,1.5 - parent: 2 - type: Transform - - uid: 3803 - components: - - pos: 82.5,-8.5 - parent: 2 - type: Transform - - uid: 3804 - components: - - pos: 81.5,-8.5 - parent: 2 - type: Transform - - uid: 3805 - components: - - pos: 80.5,-8.5 - parent: 2 - type: Transform - - uid: 3806 - components: - - pos: 79.5,-8.5 - parent: 2 - type: Transform - - uid: 3865 - components: - - pos: 73.5,-17.5 - parent: 2 - type: Transform - - uid: 3866 - components: - - pos: 74.5,-17.5 - parent: 2 - type: Transform - - uid: 3867 - components: - - pos: 75.5,-17.5 - parent: 2 - type: Transform - - uid: 3868 - components: - - pos: 76.5,-17.5 - parent: 2 - type: Transform - - uid: 3869 - components: - - pos: 77.5,-17.5 - parent: 2 - type: Transform - - uid: 3870 - components: - - pos: 78.5,-17.5 - parent: 2 - type: Transform - - uid: 3871 - components: - - pos: 80.5,-17.5 - parent: 2 - type: Transform - - uid: 3872 - components: - - pos: 79.5,-17.5 - parent: 2 - type: Transform - - uid: 3873 - components: - - pos: 81.5,-17.5 - parent: 2 - type: Transform - - uid: 3874 - components: - - pos: 82.5,-17.5 - parent: 2 - type: Transform - - uid: 3875 - components: - - pos: 83.5,-17.5 - parent: 2 - type: Transform - - uid: 3876 - components: - - pos: 84.5,-17.5 - parent: 2 - type: Transform - - uid: 3877 - components: - - pos: 85.5,-17.5 - parent: 2 - type: Transform - - uid: 3878 - components: - - pos: 86.5,-17.5 - parent: 2 - type: Transform - - uid: 4086 - components: - - pos: 33.5,-35.5 - parent: 2 - type: Transform - - uid: 4252 - components: - - pos: 24.5,-27.5 - parent: 2 - type: Transform - - uid: 4253 - components: - - pos: 28.5,-27.5 - parent: 2 - type: Transform - - uid: 4292 - components: - - pos: 36.5,-26.5 - parent: 2 - type: Transform - - uid: 4297 - components: - - pos: 33.5,-28.5 - parent: 2 - type: Transform - - uid: 4327 - components: - - pos: 33.5,-43.5 - parent: 2 - type: Transform - - uid: 4328 - components: - - pos: 33.5,-42.5 - parent: 2 - type: Transform - - uid: 4370 - components: - - pos: 37.5,-36.5 - parent: 2 - type: Transform - - uid: 4371 - components: - - pos: 37.5,-35.5 - parent: 2 - type: Transform - - uid: 4372 - components: - - pos: 37.5,-34.5 - parent: 2 - type: Transform - - uid: 4393 - components: - - pos: 31.5,-45.5 - parent: 2 - type: Transform - - uid: 4394 - components: - - pos: 32.5,-45.5 - parent: 2 - type: Transform - - uid: 4397 - components: - - pos: 41.5,-35.5 - parent: 2 - type: Transform - - uid: 4398 - components: - - pos: 41.5,-34.5 - parent: 2 - type: Transform - - uid: 4399 - components: - - pos: 41.5,-33.5 - parent: 2 - type: Transform - - uid: 4400 - components: - - pos: 41.5,-32.5 - parent: 2 - type: Transform - - uid: 4401 - components: - - pos: 41.5,-31.5 - parent: 2 - type: Transform - - uid: 4402 - components: - - pos: 41.5,-30.5 - parent: 2 - type: Transform - - uid: 4403 - components: - - pos: 41.5,-29.5 - parent: 2 - type: Transform - - uid: 4404 - components: - - pos: 41.5,-28.5 - parent: 2 - type: Transform - - uid: 4405 - components: - - pos: 41.5,-27.5 - parent: 2 - type: Transform - - uid: 4406 - components: - - pos: 41.5,-26.5 - parent: 2 - type: Transform - - uid: 4408 - components: - - pos: 41.5,-25.5 - parent: 2 - type: Transform - - uid: 4409 - components: - - pos: 41.5,-24.5 - parent: 2 - type: Transform - - uid: 4410 - components: - - pos: 41.5,-23.5 - parent: 2 - type: Transform - - uid: 4411 - components: - - pos: 41.5,-22.5 - parent: 2 - type: Transform - - uid: 4412 - components: - - pos: 42.5,-36.5 - parent: 2 - type: Transform - - uid: 4413 - components: - - pos: 43.5,-36.5 - parent: 2 - type: Transform - - uid: 4414 - components: - - pos: 44.5,-36.5 - parent: 2 - type: Transform - - uid: 4415 - components: - - pos: 45.5,-36.5 - parent: 2 - type: Transform - - uid: 4416 - components: - - pos: 46.5,-36.5 - parent: 2 - type: Transform - - uid: 4452 - components: - - pos: 33.5,-44.5 - parent: 2 - type: Transform - - uid: 4482 - components: - - rot: 3.141592653589793 rad - pos: 47.5,-40.5 - parent: 2 - type: Transform - - uid: 4483 - components: - - rot: 3.141592653589793 rad - pos: 47.5,-39.5 - parent: 2 - type: Transform - - uid: 4484 - components: - - rot: 3.141592653589793 rad - pos: 47.5,-38.5 - parent: 2 - type: Transform - - uid: 4485 - components: - - rot: 3.141592653589793 rad - pos: 47.5,-37.5 - parent: 2 - type: Transform - - uid: 4812 - components: - - pos: -13.5,-10.5 - parent: 2 - type: Transform - - uid: 5016 - components: - - pos: 49.5,-3.5 - parent: 2 - type: Transform - - uid: 5017 - components: - - pos: 54.5,-3.5 - parent: 2 - type: Transform - - uid: 5021 - components: - - pos: 55.5,-8.5 - parent: 2 - type: Transform - - uid: 5022 - components: - - pos: 57.5,-8.5 - parent: 2 - type: Transform - - uid: 5094 - components: - - pos: 67.5,-2.5 - parent: 2 - type: Transform - - uid: 5095 - components: - - pos: 66.5,-2.5 - parent: 2 - type: Transform - - uid: 5096 - components: - - pos: 65.5,-2.5 - parent: 2 - type: Transform - - uid: 5097 - components: - - pos: 64.5,-2.5 - parent: 2 - type: Transform - - uid: 5102 - components: - - pos: 59.5,26.5 - parent: 2 - type: Transform - - uid: 5289 - components: - - pos: 4.5,19.5 - parent: 2 - type: Transform - - uid: 5293 - components: - - pos: 2.5,2.5 - parent: 2 - type: Transform - - uid: 5295 - components: - - pos: 2.5,3.5 - parent: 2 - type: Transform - - uid: 5357 - components: - - pos: 1.5,1.5 - parent: 2 - type: Transform - - uid: 5358 - components: - - pos: 2.5,4.5 - parent: 2 - type: Transform - - uid: 5417 - components: - - pos: 43.5,-41.5 - parent: 2 - type: Transform - - uid: 5434 - components: - - pos: 41.5,-41.5 - parent: 2 - type: Transform - - uid: 5435 - components: - - pos: 39.5,-41.5 - parent: 2 - type: Transform - - uid: 5489 - components: - - pos: 72.5,33.5 - parent: 2 - type: Transform - - uid: 5490 - components: - - pos: 72.5,32.5 - parent: 2 - type: Transform - - uid: 5491 - components: - - pos: 72.5,31.5 - parent: 2 - type: Transform - - uid: 5492 - components: - - pos: 72.5,29.5 - parent: 2 - type: Transform - - uid: 5493 - components: - - pos: 72.5,28.5 - parent: 2 - type: Transform - - uid: 5494 - components: - - pos: 72.5,27.5 - parent: 2 - type: Transform - - uid: 5677 - components: - - pos: -20.5,-10.5 - parent: 2 - type: Transform - - uid: 6113 - components: - - pos: 8.5,-40.5 - parent: 2 - type: Transform - - uid: 6114 - components: - - pos: 8.5,-39.5 - parent: 2 - type: Transform - - uid: 6115 - components: - - pos: 9.5,-39.5 - parent: 2 - type: Transform - - uid: 6116 - components: - - pos: 10.5,-39.5 - parent: 2 - type: Transform - - uid: 6117 - components: - - pos: 11.5,-39.5 - parent: 2 - type: Transform - - uid: 6118 - components: - - pos: 12.5,-39.5 - parent: 2 - type: Transform - - uid: 6134 - components: - - pos: 8.5,-42.5 - parent: 2 - type: Transform - - uid: 6135 - components: - - pos: 8.5,-43.5 - parent: 2 - type: Transform - - uid: 6136 - components: - - pos: 9.5,-43.5 - parent: 2 - type: Transform - - uid: 6137 - components: - - pos: 11.5,-43.5 - parent: 2 - type: Transform - - uid: 6140 - components: - - pos: 12.5,-42.5 - parent: 2 - type: Transform - - uid: 6483 - components: - - pos: 45.5,-2.5 - parent: 2 - type: Transform - - uid: 6485 - components: - - pos: 42.5,-2.5 - parent: 2 - type: Transform - - uid: 6814 - components: - - pos: -11.5,-10.5 - parent: 2 - type: Transform - - uid: 6815 - components: - - pos: -18.5,-15.5 - parent: 2 - type: Transform - - uid: 6821 - components: - - pos: -18.5,-10.5 - parent: 2 - type: Transform - - uid: 6840 - components: - - pos: -1.5,1.5 - parent: 2 - type: Transform - - uid: 6841 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 2 - type: Transform - - uid: 6857 - components: - - pos: -5.5,2.5 - parent: 2 - type: Transform - - uid: 6896 - components: - - pos: -20.5,-15.5 - parent: 2 - type: Transform - - uid: 7664 - components: - - pos: -5.5,1.5 - parent: 2 - type: Transform - - uid: 7765 - components: - - pos: 24.5,38.5 - parent: 2 - type: Transform - - uid: 8736 - components: - - pos: 92.5,-17.5 - parent: 2 - type: Transform - - uid: 8737 - components: - - pos: 93.5,-17.5 - parent: 2 - type: Transform - - uid: 8738 - components: - - pos: 94.5,-17.5 - parent: 2 - type: Transform - - uid: 8739 - components: - - pos: 95.5,-17.5 - parent: 2 - type: Transform - - uid: 8740 - components: - - pos: 96.5,-17.5 - parent: 2 - type: Transform - - uid: 8741 - components: - - pos: 97.5,-17.5 - parent: 2 - type: Transform - - uid: 8742 - components: - - pos: 98.5,-17.5 - parent: 2 - type: Transform - - uid: 8743 - components: - - pos: 98.5,-22.5 - parent: 2 - type: Transform - - uid: 8744 - components: - - pos: 97.5,-22.5 - parent: 2 - type: Transform - - uid: 8745 - components: - - pos: 96.5,-22.5 - parent: 2 - type: Transform - - uid: 8746 - components: - - pos: 95.5,-22.5 - parent: 2 - type: Transform - - uid: 8747 - components: - - pos: 94.5,-22.5 - parent: 2 - type: Transform - - uid: 8748 - components: - - pos: 93.5,-22.5 - parent: 2 - type: Transform - - uid: 8749 - components: - - pos: 92.5,-22.5 - parent: 2 - type: Transform - - uid: 8787 - components: - - pos: 99.5,-17.5 - parent: 2 - type: Transform - - uid: 8788 - components: - - pos: 100.5,-17.5 - parent: 2 - type: Transform - - uid: 8789 - components: - - pos: 99.5,-22.5 - parent: 2 - type: Transform - - uid: 8790 - components: - - pos: 100.5,-22.5 - parent: 2 - type: Transform - - uid: 8802 - components: - - pos: 105.5,-25.5 - parent: 2 - type: Transform - - uid: 8803 - components: - - pos: 106.5,-25.5 - parent: 2 - type: Transform - - uid: 8804 - components: - - pos: 107.5,-25.5 - parent: 2 - type: Transform - - uid: 8808 - components: - - pos: 105.5,-20.5 - parent: 2 - type: Transform - - uid: 8809 - components: - - pos: 107.5,-20.5 - parent: 2 - type: Transform - - uid: 8839 - components: - - pos: 105.5,-14.5 - parent: 2 - type: Transform - - uid: 8840 - components: - - pos: 107.5,-14.5 - parent: 2 - type: Transform - - uid: 8845 - components: - - pos: 105.5,-9.5 - parent: 2 - type: Transform - - uid: 8846 - components: - - pos: 106.5,-9.5 - parent: 2 - type: Transform - - uid: 8847 - components: - - pos: 107.5,-9.5 - parent: 2 - type: Transform - - uid: 8879 - components: - - pos: 111.5,-20.5 - parent: 2 - type: Transform - - uid: 8880 - components: - - pos: 112.5,-20.5 - parent: 2 - type: Transform - - uid: 8881 - components: - - pos: 114.5,-20.5 - parent: 2 - type: Transform - - uid: 8882 - components: - - pos: 115.5,-20.5 - parent: 2 - type: Transform - - uid: 8942 - components: - - pos: 111.5,-14.5 - parent: 2 - type: Transform - - uid: 8943 - components: - - pos: 112.5,-14.5 - parent: 2 - type: Transform - - uid: 8944 - components: - - pos: 114.5,-14.5 - parent: 2 - type: Transform - - uid: 8945 - components: - - pos: 115.5,-14.5 - parent: 2 - type: Transform - - uid: 8956 - components: - - pos: 116.5,-15.5 - parent: 2 - type: Transform - - uid: 8957 - components: - - pos: 116.5,-16.5 - parent: 2 - type: Transform - - uid: 8958 - components: - - pos: 116.5,-18.5 - parent: 2 - type: Transform - - uid: 8959 - components: - - pos: 116.5,-19.5 - parent: 2 - type: Transform - - uid: 9571 - components: - - pos: 6.5,19.5 - parent: 2 - type: Transform - - uid: 10085 - components: - - pos: 60.5,26.5 - parent: 2 - type: Transform - - uid: 10086 - components: - - pos: 52.5,25.5 - parent: 2 - type: Transform - - uid: 10087 - components: - - pos: 52.5,23.5 - parent: 2 - type: Transform - - uid: 10123 - components: - - pos: 21.5,24.5 - parent: 2 - type: Transform - - uid: 10124 - components: - - pos: 21.5,23.5 - parent: 2 - type: Transform - - uid: 10125 - components: - - pos: 53.5,-0.5 - parent: 2 - type: Transform - - uid: 10126 - components: - - pos: 52.5,1.5 - parent: 2 - type: Transform - - uid: 12979 - components: - - pos: 43.5,-49.5 - parent: 2 - type: Transform - - uid: 12982 - components: - - pos: 42.5,-49.5 - parent: 2 - type: Transform - - uid: 12983 - components: - - pos: 41.5,-49.5 - parent: 2 - type: Transform -- proto: RemoteSignaller - entities: - - uid: 9222 - components: - - pos: 19.330996,46.803196 - parent: 2 - type: Transform -- proto: ResearchAndDevelopmentServer - entities: - - uid: 8233 - components: - - pos: 49.5,25.5 - parent: 2 - type: Transform -- proto: Retractor - entities: - - uid: 6808 - components: - - pos: 66.55991,-3.281434 - parent: 2 - type: Transform -- proto: RiotShield - entities: - - uid: 8428 - components: - - pos: 38.223476,28.307878 - parent: 2 - type: Transform - - uid: 8429 - components: - - pos: 38.223476,28.307878 - parent: 2 - type: Transform -- proto: RockGuitarInstrument - entities: - - uid: 9741 - components: - - pos: 19.5661,-11.900069 - parent: 2 - type: Transform -- proto: SalvageMagnet - entities: - - uid: 4811 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,16.5 - parent: 2 - type: Transform -- proto: SalvageMagnetMachineCircuitboard - entities: - - uid: 12363 - components: - - pos: 35.466457,-17.345016 - parent: 2 - type: Transform -- proto: Saw - entities: - - uid: 12333 - components: - - pos: 57.474747,-14.628655 - parent: 2 - type: Transform -- proto: SawElectric - entities: - - uid: 5210 - components: - - pos: 67.45054,-4.453309 - parent: 2 - type: Transform - - uid: 5395 - components: - - pos: 55.53906,10.407994 - parent: 2 - type: Transform -- proto: Scalpel - entities: - - uid: 5137 - components: - - pos: 74.5,-0.5 - parent: 2 - type: Transform - - uid: 5394 - components: - - pos: 55.523434,10.407994 - parent: 2 - type: Transform - - uid: 10073 - components: - - pos: 66.473175,-3.547059 - parent: 2 - type: Transform -- proto: Screwdriver - entities: - - uid: 5074 - components: - - pos: 52.237762,-7.56545 - parent: 2 - type: Transform - - uid: 11132 - components: - - pos: 57.5176,-14.309467 - parent: 2 - type: Transform -- proto: SecurityTechFab - entities: - - uid: 1831 - components: - - pos: 38.5,24.5 - parent: 2 - type: Transform -- proto: SeedExtractor - entities: - - uid: 2305 - components: - - pos: 38.5,36.5 - parent: 2 - type: Transform - - uid: 6677 - components: - - pos: 45.5,-4.5 - parent: 2 - type: Transform -- proto: ShardGlass - entities: - - uid: 10809 - components: - - pos: 89.55373,-21.433664 - parent: 2 - type: Transform - - uid: 10810 - components: - - pos: 90.27248,-20.82429 - parent: 2 - type: Transform -- proto: SheetGlass - entities: - - uid: 784 - components: - - flags: InContainer - type: MetaData - - parent: 5625 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1648 - components: - - pos: 33.519444,-17.381672 - parent: 2 - type: Transform - - uid: 5327 - components: - - pos: 56.186665,17.583338 - parent: 2 - type: Transform - - uid: 5328 - components: - - pos: 56.186665,17.583338 - parent: 2 - type: Transform - - uid: 5329 - components: - - pos: 56.186665,17.583338 - parent: 2 - type: Transform - - uid: 5636 - components: - - pos: 16.999237,-26.465462 - parent: 2 - type: Transform - - uid: 5640 - components: - - pos: 16.999237,-26.465462 - parent: 2 - type: Transform - - uid: 10311 - components: - - pos: 8.421515,-6.356274 - parent: 2 - type: Transform -- proto: SheetPlasma - entities: - - uid: 2129 - components: - - flags: InContainer - type: MetaData - - parent: 5625 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 7529 - components: - - pos: 71.06963,13.620979 - parent: 2 - type: Transform -- proto: SheetPlasteel - entities: - - uid: 1842 - components: - - flags: InContainer - type: MetaData - - parent: 5625 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 5635 - components: - - pos: 17.5,-26.5 - parent: 2 - type: Transform - - uid: 10312 - components: - - pos: 8.609015,-6.340649 - parent: 2 - type: Transform -- proto: SheetPlastic - entities: - - uid: 5333 - components: - - pos: 56.436665,17.505213 - parent: 2 - type: Transform - - uid: 5334 - components: - - pos: 56.436665,17.505213 - parent: 2 - type: Transform - - uid: 5335 - components: - - pos: 56.436665,17.505213 - parent: 2 - type: Transform -- proto: SheetSteel - entities: - - uid: 1239 - components: - - flags: InContainer - type: MetaData - - parent: 5625 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1789 - components: - - pos: 33.507664,-17.468887 - parent: 2 - type: Transform - - uid: 5330 - components: - - pos: 56.63979,17.598963 - parent: 2 - type: Transform - - uid: 5331 - components: - - pos: 56.63979,17.598963 - parent: 2 - type: Transform - - uid: 5332 - components: - - pos: 56.63979,17.598963 - parent: 2 - type: Transform - - uid: 5383 - components: - - pos: 50.524685,8.532994 - parent: 2 - type: Transform - - uid: 5384 - components: - - pos: 50.524685,8.532994 - parent: 2 - type: Transform - - uid: 5385 - components: - - pos: 50.524685,8.532994 - parent: 2 - type: Transform - - uid: 5633 - components: - - pos: 16.5,-26.5 - parent: 2 - type: Transform - - uid: 5634 - components: - - pos: 16.5,-26.5 - parent: 2 - type: Transform - - uid: 7271 - components: - - pos: 30.5,-30.5 - parent: 2 - type: Transform - - uid: 7272 - components: - - pos: 30.5,-30.5 - parent: 2 - type: Transform - - uid: 10313 - components: - - pos: 8.53089,-6.434399 - parent: 2 - type: Transform -- proto: SheetSteel1 - entities: - - uid: 4672 - components: - - pos: 90.36041,-10.650079 - parent: 2 - type: Transform - - uid: 6720 - components: - - pos: 90.60682,-10.582865 - parent: 2 - type: Transform - - uid: 6721 - components: - - pos: 90.45002,-10.358817 - parent: 2 - type: Transform -- proto: SheetUranium - entities: - - uid: 1460 - components: - - flags: InContainer - type: MetaData - - parent: 5625 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: Shovel - entities: - - uid: 8254 - components: - - pos: 9.453524,15.534067 - parent: 2 - type: Transform -- proto: ShuttersNormal - entities: - - uid: 5268 - components: - - pos: 44.5,12.5 - parent: 2 - type: Transform - - links: - - 10322 - type: DeviceLinkSink - - uid: 6513 - components: - - pos: 46.5,-11.5 - parent: 2 - type: Transform - - links: - - 6749 - type: DeviceLinkSink - - uid: 6514 - components: - - pos: 47.5,-11.5 - parent: 2 - type: Transform - - links: - - 6513 - - 6749 - type: DeviceLinkSink -- proto: ShuttersNormalOpen - entities: - - uid: 265 - components: - - pos: 34.5,-8.5 - parent: 2 - type: Transform - - links: - - 1471 - type: DeviceLinkSink - - uid: 267 - components: - - pos: 35.5,-8.5 - parent: 2 - type: Transform - - links: - - 1471 - type: DeviceLinkSink - - uid: 270 - components: - - pos: 36.5,-8.5 - parent: 2 - type: Transform - - links: - - 1471 - type: DeviceLinkSink - - uid: 320 - components: - - pos: 8.5,29.5 - parent: 2 - type: Transform - - links: - - 8163 - type: DeviceLinkSink - - uid: 419 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-7.5 - parent: 2 - type: Transform - - links: - - 1151 - type: DeviceLinkSink - - uid: 913 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-4.5 - parent: 2 - type: Transform - - links: - - 1151 - type: DeviceLinkSink - - uid: 1154 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-3.5 - parent: 2 - type: Transform - - links: - - 1151 - type: DeviceLinkSink - - uid: 1658 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-6.5 - parent: 2 - type: Transform - - links: - - 1151 - type: DeviceLinkSink - - uid: 2087 - components: - - pos: 28.5,17.5 - parent: 2 - type: Transform - - links: - - 12825 - type: DeviceLinkSink - - uid: 2831 - components: - - pos: 9.5,29.5 - parent: 2 - type: Transform - - links: - - 8163 - type: DeviceLinkSink - - uid: 2990 - components: - - pos: 50.5,1.5 - parent: 2 - type: Transform - - links: - - 8288 - type: DeviceLinkSink - - uid: 6512 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-5.5 - parent: 2 - type: Transform - - links: - - 1151 - type: DeviceLinkSink - - uid: 12424 - components: - - pos: 49.5,1.5 - parent: 2 - type: Transform - - links: - - 8288 - type: DeviceLinkSink - - uid: 12425 - components: - - pos: 51.5,1.5 - parent: 2 - type: Transform - - links: - - 8288 - type: DeviceLinkSink - - uid: 12822 - components: - - pos: 28.5,20.5 - parent: 2 - type: Transform - - links: - - 12826 - type: DeviceLinkSink - - uid: 12823 - components: - - rot: 3.141592653589793 rad - pos: 28.5,18.5 - parent: 2 - type: Transform - - links: - - 12825 - type: DeviceLinkSink - - uid: 12824 - components: - - rot: 3.141592653589793 rad - pos: 28.5,21.5 - parent: 2 - type: Transform - - links: - - 12826 - type: DeviceLinkSink -- proto: ShuttersRadiationOpen - entities: - - uid: 779 - components: - - pos: 19.5,-37.5 - parent: 2 - type: Transform - - links: - - 1025 - type: DeviceLinkSink - - uid: 780 - components: - - pos: 20.5,-37.5 - parent: 2 - type: Transform - - links: - - 1025 - type: DeviceLinkSink - - uid: 4502 - components: - - pos: 22.5,-37.5 - parent: 2 - type: Transform - - links: - - 1025 - type: DeviceLinkSink - - uid: 4503 - components: - - pos: 23.5,-37.5 - parent: 2 - type: Transform - - links: - - 1025 - type: DeviceLinkSink -- proto: SignAi - entities: - - uid: 12242 - components: - - rot: 3.141592653589793 rad - pos: 57.5,28.5 - parent: 2 - type: Transform -- proto: SignalButton - entities: - - uid: 202 - components: - - pos: 37.5,-29.5 - parent: 2 - type: Transform - - linkedPorts: - 55: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 374 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,28.5 - parent: 2 - type: Transform - - linkedPorts: - 7462: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 1025 - components: - - name: Radiation Shutters - type: MetaData - - rot: 3.141592653589793 rad - pos: 18.5,-37.5 - parent: 2 - type: Transform - - linkedPorts: - 779: - - Pressed: Toggle - 780: - - Pressed: Toggle - 4502: - - Pressed: Toggle - 4503: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 1151 - components: - - name: Bar Shutters - type: MetaData - - pos: 40.15871,-2.7952938 - parent: 2 - type: Transform - - linkedPorts: - 1154: - - Pressed: Toggle - 913: - - Pressed: Toggle - 6512: - - Pressed: Toggle - 1658: - - Pressed: Toggle - 419: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 1471 - components: - - name: Kitchen Counter Shutters - type: MetaData - - pos: 32.5,-9.5 - parent: 2 - type: Transform - - linkedPorts: - 265: - - Pressed: Toggle - 267: - - Pressed: Toggle - 270: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 4245 - components: - - pos: 37.5,-33.5 - parent: 2 - type: Transform - - linkedPorts: - 4257: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 5685 - components: - - name: Engineering Secure Storage Button - type: MetaData - - pos: 12.5,-25.5 - parent: 2 - type: Transform - - linkedPorts: - 2834: - - Pressed: Toggle - 2835: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 6749 - components: - - name: Pen Maints Hatch - type: MetaData - - rot: -1.5707963267948966 rad - pos: 48.5,-9.5 - parent: 2 - type: Transform - - linkedPorts: - 6513: - - Pressed: Toggle - 6514: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 6856 - components: - - name: Conveyor Blast Door - type: MetaData - - rot: 3.141592653589793 rad - pos: 7.5,14.5 - parent: 2 - type: Transform - - linkedPorts: - 7618: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 7463 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,22.5 - parent: 2 - type: Transform - - linkedPorts: - 384: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 8163 - components: - - pos: 10.5,29.5 - parent: 2 - type: Transform - - linkedPorts: - 2831: - - Pressed: Toggle - 320: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 8288 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,2.5 - parent: 2 - type: Transform - - linkedPorts: - 12424: - - Pressed: Toggle - 2990: - - Pressed: Toggle - 12425: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 10321 - components: - - pos: 48.5,12.5 - parent: 2 - type: Transform - - linkedPorts: - 150: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 12825 - components: - - pos: 31.772217,19.196745 - parent: 2 - type: Transform - - linkedPorts: - 2087: - - Pressed: Toggle - 12823: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 12826 - components: - - pos: 31.756592,22.24362 - parent: 2 - type: Transform - - linkedPorts: - 12822: - - Pressed: Toggle - 12824: - - Pressed: Toggle - type: DeviceLinkSource -- proto: SignAnomaly - entities: - - uid: 7376 - components: - - pos: 61.5,25.5 - parent: 2 - type: Transform -- proto: SignAnomaly2 - entities: - - uid: 6475 - components: - - pos: 65.5,13.5 - parent: 2 - type: Transform -- proto: SignArmory - entities: - - uid: 11210 - components: - - pos: 42.47835,25.502422 - parent: 2 - type: Transform -- proto: SignAtmos - entities: - - uid: 4575 - components: - - pos: 28.5,-26.5 - parent: 2 - type: Transform -- proto: SignAtmosMinsky - entities: - - uid: 4574 - components: - - pos: 37.5,-38.5 - parent: 2 - type: Transform -- proto: SignBar - entities: - - uid: 11198 - components: - - pos: 36.515213,-1.5077809 - parent: 2 - type: Transform -- proto: SignBiohazardMed - entities: - - uid: 12243 - components: - - rot: 3.141592653589793 rad - pos: 76.5,0.5 - parent: 2 - type: Transform -- proto: SignCanisters - entities: - - uid: 5153 - components: - - pos: 41.5,-36.5 - parent: 2 - type: Transform -- proto: SignCargo - entities: - - uid: 11211 - components: - - pos: 22.44822,19.533756 - parent: 2 - type: Transform -- proto: SignCargoDock - entities: - - uid: 11212 - components: - - pos: 6.565961,21.533756 - parent: 2 - type: Transform -- proto: SignChapel - entities: - - uid: 11193 - components: - - pos: 39.519363,4.4919653 - parent: 2 - type: Transform -- proto: SignChemistry1 - entities: - - uid: 6817 - components: - - pos: 51.5,-2.5 - parent: 2 - type: Transform -- proto: SignConference - entities: - - uid: 11192 - components: - - pos: 25.484035,39.437214 - parent: 2 - type: Transform -- proto: SignCryogenicsMed - entities: - - uid: 11804 - components: - - pos: 63.5,-0.5 - parent: 2 - type: Transform -- proto: SignDangerMed - entities: - - uid: 10436 - components: - - pos: 61.5,26.5 - parent: 2 - type: Transform -- proto: SignDirectionalBridge - entities: - - uid: 7329 - components: - - rot: 3.141592653589793 rad - pos: 24.503027,16.714216 - parent: 2 - type: Transform - - uid: 8119 - components: - - rot: 3.141592653589793 rad - pos: 7.4992805,2.707316 - parent: 2 - type: Transform - - uid: 11181 - components: - - rot: 3.141592653589793 rad - pos: 28.54057,12.41816 - parent: 2 - type: Transform -- proto: SignDirectionalBrig - entities: - - uid: 12270 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,31.5 - parent: 2 - type: Transform -- proto: SignDirectionalDorms - entities: - - uid: 40 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,11.5 - parent: 2 - type: Transform -- proto: SignDirectionalEng - entities: - - uid: 11817 - components: - - pos: 28.5037,2.3089128 - parent: 2 - type: Transform -- proto: SignDirectionalEvac - entities: - - uid: 1936 - components: - - rot: 3.141592653589793 rad - pos: -6.5,1.5 - parent: 2 - type: Transform - - uid: 7848 - components: - - rot: 3.141592653589793 rad - pos: -0.5,1.5 - parent: 2 - type: Transform - - uid: 7894 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,1.5 - parent: 2 - type: Transform - - uid: 8120 - components: - - rot: -1.5707963267948966 rad - pos: 7.4992805,2.2952788 - parent: 2 - type: Transform - - uid: 11806 - components: - - rot: -1.5707963267948966 rad - pos: 24.498083,2.3033948 - parent: 2 - type: Transform -- proto: SignDirectionalHop - entities: - - uid: 11809 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,2.5 - parent: 2 - type: Transform -- proto: SignDirectionalLibrary - entities: - - uid: 11816 - components: - - rot: -1.5707963267948966 rad - pos: 24.498083,2.6830244 - parent: 2 - type: Transform -- proto: SignDirectionalMed - entities: - - uid: 8118 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,2.5 - parent: 2 - type: Transform - - uid: 11184 - components: - - pos: 39.55419,12.695712 - parent: 2 - type: Transform - - uid: 11813 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,2.5 - parent: 2 - type: Transform - - uid: 11853 - components: - - rot: 1.5707963267948966 rad - pos: 39.50202,2.3010597 - parent: 2 - type: Transform -- proto: SignDirectionalSci - entities: - - uid: 11182 - components: - - rot: 1.5707963267948966 rad - pos: 28.5195,12.147359 - parent: 2 - type: Transform - - uid: 11188 - components: - - rot: 1.5707963267948966 rad - pos: 39.557316,12.409777 - parent: 2 - type: Transform - - uid: 11812 - components: - - rot: 1.5707963267948966 rad - pos: 28.505745,2.6978016 - parent: 2 - type: Transform - - uid: 11851 - components: - - rot: 3.141592653589793 rad - pos: 39.5,2.5 - parent: 2 - type: Transform -- proto: SignDirectionalSec - entities: - - uid: 5416 - components: - - rot: 1.5707963267948966 rad - pos: 7.4984922,11.283884 - parent: 2 - type: Transform - - uid: 7327 - components: - - rot: 3.141592653589793 rad - pos: 24.5,16.5 - parent: 2 - type: Transform - - uid: 11180 - components: - - rot: 3.141592653589793 rad - pos: 28.54057,12.66816 - parent: 2 - type: Transform - - uid: 11852 - components: - - rot: 3.141592653589793 rad - pos: 39.50202,2.708467 - parent: 2 - type: Transform -- proto: SignDirectionalSolar - entities: - - uid: 12297 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-24.5 - parent: 2 - type: Transform - - uid: 12298 - components: - - rot: 3.141592653589793 rad - pos: 68.5,19.5 - parent: 2 - type: Transform - - uid: 12299 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,45.5 - parent: 2 - type: Transform -- proto: SignDirectionalSupply - entities: - - uid: 5418 - components: - - rot: 1.5707963267948966 rad - pos: 7.4984922,11.714439 - parent: 2 - type: Transform - - uid: 7328 - components: - - rot: 3.141592653589793 rad - pos: 24.503027,16.29755 - parent: 2 - type: Transform -- proto: SignDirectionalWash - entities: - - uid: 11815 - components: - - rot: 3.141592653589793 rad - pos: 12.5,11.5 - parent: 2 - type: Transform -- proto: SignElectricalMed - entities: - - uid: 7 - components: - - pos: 14.5,32.5 - parent: 2 - type: Transform - - uid: 1599 - components: - - pos: 24.5,-40.5 - parent: 2 - type: Transform - - uid: 4874 - components: - - pos: 3.5,-33.5 - parent: 2 - type: Transform - - uid: 12351 - components: - - pos: 3.5,-8.5 - parent: 2 - type: Transform - - uid: 13003 - components: - - pos: 36.5,-41.5 - parent: 2 - type: Transform - - uid: 13004 - components: - - pos: 31.5,-49.5 - parent: 2 - type: Transform -- proto: SignEngine - entities: - - uid: 5157 - components: - - pos: 30.5,-37.5 - parent: 2 - type: Transform - - uid: 5301 - components: - - pos: 33.5,-40.5 - parent: 2 - type: Transform -- proto: SignEngineering - entities: - - uid: 5156 - components: - - pos: 24.5,-26.5 - parent: 2 - type: Transform -- proto: SignEscapePods - entities: - - uid: 5027 - components: - - pos: 85.5,3.5 - parent: 2 - type: Transform -- proto: SignEVA - entities: - - uid: 5204 - components: - - pos: 10.5,-2.5 - parent: 2 - type: Transform -- proto: SignExamroom - entities: - - uid: 12239 - components: - - rot: 3.141592653589793 rad - pos: 67.5,5.5 - parent: 2 - type: Transform - - uid: 12240 - components: - - rot: 3.141592653589793 rad - pos: 59.5,-8.5 - parent: 2 - type: Transform -- proto: SignFire - entities: - - uid: 12280 - components: - - rot: 1.5707963267948966 rad - pos: 65.5,26.5 - parent: 2 - type: Transform - - uid: 12993 - components: - - pos: 45.5,-49.5 - parent: 2 - type: Transform - - uid: 12994 - components: - - pos: 45.5,-43.5 - parent: 2 - type: Transform -- proto: SignFlammableMed - entities: - - uid: 1650 - components: - - pos: 33.5,-31.5 - parent: 2 - type: Transform - - uid: 10437 - components: - - pos: 61.5,27.5 - parent: 2 - type: Transform -- proto: SignGravity - entities: - - uid: 11199 - components: - - pos: 16.482166,37.47681 - parent: 2 - type: Transform -- proto: SignHead - entities: - - uid: 11814 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-2.5 - parent: 2 - type: Transform -- proto: SignHydro2 - entities: - - uid: 6651 - components: - - pos: 41.5,-2.5 - parent: 2 - type: Transform -- proto: SignHydro3 - entities: - - uid: 6648 - components: - - pos: 47.5,-2.5 - parent: 2 - type: Transform -- proto: SignInterrogation - entities: - - uid: 11209 - components: - - pos: 31.49329,27.493366 - parent: 2 - type: Transform -- proto: SignKiddiePlaque - entities: - - uid: 12282 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,2.5 - parent: 2 - type: Transform -- proto: SignLaserMed - entities: - - uid: 12289 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-43.5 - parent: 2 - type: Transform -- proto: SignLibrary - entities: - - uid: 11201 - components: - - pos: 7.478853,8.535535 - parent: 2 - type: Transform -- proto: SignMagneticsMed - entities: - - uid: 12283 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,18.5 - parent: 2 - type: Transform -- proto: SignMedical - entities: - - uid: 6788 - components: - - pos: 53.5,1.5 - parent: 2 - type: Transform -- proto: SignMinerDock - entities: - - uid: 7784 - components: - - pos: 6.5,18.5 - parent: 2 - type: Transform -- proto: SignMorgue - entities: - - uid: 11196 - components: - - pos: 71.560074,0.5078441 - parent: 2 - type: Transform -- proto: SignNosmoking - entities: - - uid: 10074 - components: - - pos: 68.5,-4.5 - parent: 2 - type: Transform - - uid: 11397 - components: - - pos: 65.5,-7.5 - parent: 2 - type: Transform -- proto: SignPlaque - entities: - - uid: 12281 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-6.5 - parent: 2 - type: Transform -- proto: SignPrison - entities: - - uid: 11208 - components: - - pos: 35.478874,29.508991 - parent: 2 - type: Transform -- proto: SignRadiationMed - entities: - - uid: 747 - components: - - pos: 18.5,-40.5 - parent: 2 - type: Transform - - uid: 4012 - components: - - pos: 24.5,-37.5 - parent: 2 - type: Transform -- proto: SignRND - entities: - - uid: 11190 - components: - - pos: 57.499714,16.503765 - parent: 2 - type: Transform - - uid: 12293 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,16.5 - parent: 2 - type: Transform -- proto: SignRobo - entities: - - uid: 12291 - components: - - rot: 1.5707963267948966 rad - pos: 46.5,12.5 - parent: 2 - type: Transform - - uid: 12292 - components: - - rot: 1.5707963267948966 rad - pos: 56.5,12.5 - parent: 2 - type: Transform -- proto: SignScience - entities: - - uid: 11191 - components: - - pos: 48.50537,15.474182 - parent: 2 - type: Transform -- proto: SignSecurearea - entities: - - uid: 11939 - components: - - pos: 17.5,-15.5 - parent: 2 - type: Transform -- proto: SignSecureMed - entities: - - uid: 1518 - components: - - pos: 28.5,-25.5 - parent: 2 - type: Transform -- proto: SignSecurity - entities: - - uid: 12294 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,27.5 - parent: 2 - type: Transform -- proto: SignShipDock - entities: - - uid: 9306 - components: - - rot: 3.141592653589793 rad - pos: 57.5,51.5 - parent: 2 - type: Transform -- proto: SignShock - entities: - - uid: 8410 - components: - - pos: 42.5,30.5 - parent: 2 - type: Transform - - uid: 8411 - components: - - pos: 42.5,34.5 - parent: 2 - type: Transform - - uid: 11017 - components: - - pos: 42.5,-13.5 - parent: 2 - type: Transform - - uid: 11019 - components: - - pos: 20.5,38.5 - parent: 2 - type: Transform - - uid: 11020 - components: - - pos: 25.5,38.5 - parent: 2 - type: Transform - - uid: 11089 - components: - - pos: 28.5,22.5 - parent: 2 - type: Transform -- proto: SignSmoking - entities: - - uid: 5466 - components: - - pos: 68.5,38.5 - parent: 2 - type: Transform - - uid: 9721 - components: - - pos: 54.5,-2.5 - parent: 2 - type: Transform -- proto: SignSpace - entities: - - uid: 5397 - components: - - pos: 34.5,-37.5 - parent: 2 - type: Transform - - uid: 7562 - components: - - pos: 2.4978352,-16.484226 - parent: 2 - type: Transform - - uid: 7563 - components: - - pos: 5.529085,-16.484226 - parent: 2 - type: Transform - - uid: 10083 - components: - - pos: 62.5,29.5 - parent: 2 - type: Transform - - uid: 12992 - components: - - pos: 33.5,-48.5 - parent: 2 - type: Transform -- proto: SignSurgery - entities: - - uid: 11202 - components: - - pos: 63.483078,-4.4704685 - parent: 2 - type: Transform - - uid: 11203 - components: - - pos: 54.505295,-16.448315 - parent: 2 - type: Transform -- proto: SignTelecomms - entities: - - uid: 11206 - components: - - pos: 24.48286,-16.522787 - parent: 2 - type: Transform -- proto: SignToolStorage - entities: - - uid: 5704 - components: - - pos: 68.5,40.5 - parent: 2 - type: Transform - - uid: 11200 - components: - - pos: 28.472525,-18.512623 - parent: 2 - type: Transform - - uid: 12302 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-13.5 - parent: 2 - type: Transform -- proto: SignToxins2 - entities: - - uid: 12304 - components: - - rot: 1.5707963267948966 rad - pos: 59.5,12.5 - parent: 2 - type: Transform -- proto: SignVirology - entities: - - uid: 10909 - components: - - pos: 78.5,0.5 - parent: 2 - type: Transform -- proto: SingularityGenerator - entities: - - uid: 750 - components: - - pos: 12.5,-31.5 - parent: 2 - type: Transform - - uid: 11007 - components: - - pos: 21.5,-51.5 - parent: 2 - type: Transform -- proto: Sink - entities: - - uid: 1530 - components: - - pos: 11.5,13.5 - parent: 2 - type: Transform - - uid: 5276 - components: - - rot: 1.5707963267948966 rad - pos: 64.5,-6.5 - parent: 2 - type: Transform - - uid: 6932 - components: - - pos: 10.5,13.5 - parent: 2 - type: Transform - - uid: 7412 - components: - - pos: 78.5,-0.5 - parent: 2 - type: Transform - - uid: 7575 - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-7.5 - parent: 2 - type: Transform - - uid: 10446 - components: - - pos: 51.5,15.5 - parent: 2 - type: Transform - - uid: 10853 - components: - - rot: 3.141592653589793 rad - pos: 103.5,-13.5 - parent: 2 - type: Transform - - uid: 11406 - components: - - pos: 65.5,-8.5 - parent: 2 - type: Transform - - uid: 11899 - components: - - rot: 1.5707963267948966 rad - pos: 77.5,8.5 - parent: 2 - type: Transform - - uid: 12166 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,6.5 - parent: 2 - type: Transform -- proto: SinkWide - entities: - - uid: 4559 - components: - - pos: 37.5,-9.5 - parent: 2 - type: Transform - - uid: 6680 - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-6.5 - parent: 2 - type: Transform - - uid: 9720 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-4.5 - parent: 2 - type: Transform -- proto: Skub - entities: - - uid: 5403 - components: - - pos: 62.485527,20.60704 - parent: 2 - type: Transform - - uid: 13072 - components: - - pos: 7.5138106,-13.335101 - parent: 2 - type: Transform - - uid: 13073 - components: - - pos: 4.5294356,-11.475726 - parent: 2 - type: Transform - - uid: 13074 - components: - - pos: 8.498186,-12.475726 - parent: 2 - type: Transform -- proto: SMESBasic - entities: - - uid: 875 - components: - - name: SMES Bank 1 - type: MetaData - - pos: 25.5,-31.5 - parent: 2 - type: Transform - - uid: 876 - components: - - name: SMES Bank 2 - type: MetaData - - pos: 26.5,-31.5 - parent: 2 - type: Transform - - uid: 885 - components: - - name: SMES Bank 3 - type: MetaData - - pos: 27.5,-31.5 - parent: 2 - type: Transform - - uid: 3405 - components: - - pos: 71.5,44.5 - parent: 2 - type: Transform - - uid: 4075 - components: - - name: Telecomms SMES - type: MetaData - - pos: 23.5,-14.5 - parent: 2 - type: Transform - - uid: 9002 - components: - - pos: 112.5,-17.5 - parent: 2 - type: Transform - - loadingNetworkDemand: 60.000237 - currentSupply: 60.000237 - supplyRampPosition: 60.000237 - type: PowerNetworkBattery - - uid: 10856 - components: - - pos: 3.5,-34.5 - parent: 2 - type: Transform -- proto: SMESMachineCircuitboard - entities: - - uid: 12385 - components: - - pos: 41.421707,-16.360641 - parent: 2 - type: Transform - - uid: 12386 - components: - - pos: 41.546707,-16.470016 - parent: 2 - type: Transform - - uid: 12387 - components: - - pos: 41.640457,-16.579391 - parent: 2 - type: Transform -- proto: SmokingPipeFilledTobacco - entities: - - uid: 6764 - components: - - pos: 29.514105,-5.4211745 - parent: 2 - type: Transform - - uid: 11946 - components: - - pos: 32.982197,41.628204 - parent: 2 - type: Transform -- proto: soda_dispenser - entities: - - uid: 2922 - components: - - pos: 67.5,-17.5 - parent: 2 - type: Transform - - containers: - ReagentDispenser-reagentContainerContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - ReagentDispenser-beaker: !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: [] - beakerSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 6526 - components: - - pos: 39.5,-2.5 - parent: 2 - type: Transform -- proto: SolarPanel - entities: - - uid: 1386 - components: - - pos: -5.5,-31.5 - parent: 2 - type: Transform - - uid: 1387 - components: - - pos: -3.5,-31.5 - parent: 2 - type: Transform - - uid: 1388 - components: - - pos: -3.5,-32.5 - parent: 2 - type: Transform - - uid: 1389 - components: - - pos: -5.5,-32.5 - parent: 2 - type: Transform - - uid: 1390 - components: - - pos: -5.5,-33.5 - parent: 2 - type: Transform - - uid: 1391 - components: - - pos: -3.5,-33.5 - parent: 2 - type: Transform - - uid: 1392 - components: - - pos: -5.5,-37.5 - parent: 2 - type: Transform - - uid: 1393 - components: - - pos: -3.5,-37.5 - parent: 2 - type: Transform - - uid: 1394 - components: - - pos: -3.5,-38.5 - parent: 2 - type: Transform - - uid: 1395 - components: - - pos: -3.5,-39.5 - parent: 2 - type: Transform - - uid: 1396 - components: - - pos: -5.5,-39.5 - parent: 2 - type: Transform - - uid: 1397 - components: - - pos: -5.5,-38.5 - parent: 2 - type: Transform - - uid: 1412 - components: - - pos: -7.5,-33.5 - parent: 2 - type: Transform - - uid: 1413 - components: - - pos: -7.5,-32.5 - parent: 2 - type: Transform - - uid: 1414 - components: - - pos: -7.5,-31.5 - parent: 2 - type: Transform - - uid: 1415 - components: - - pos: -7.5,-30.5 - parent: 2 - type: Transform - - uid: 1416 - components: - - pos: -9.5,-30.5 - parent: 2 - type: Transform - - uid: 1417 - components: - - pos: -9.5,-31.5 - parent: 2 - type: Transform - - uid: 1418 - components: - - pos: -9.5,-32.5 - parent: 2 - type: Transform - - uid: 1419 - components: - - pos: -9.5,-33.5 - parent: 2 - type: Transform - - uid: 1420 - components: - - pos: -9.5,-37.5 - parent: 2 - type: Transform - - uid: 1421 - components: - - pos: -9.5,-38.5 - parent: 2 - type: Transform - - uid: 1422 - components: - - pos: -9.5,-39.5 - parent: 2 - type: Transform - - uid: 1423 - components: - - pos: -9.5,-40.5 - parent: 2 - type: Transform - - uid: 1424 - components: - - pos: -7.5,-40.5 - parent: 2 - type: Transform - - uid: 1425 - components: - - pos: -7.5,-39.5 - parent: 2 - type: Transform - - uid: 1426 - components: - - pos: -7.5,-38.5 - parent: 2 - type: Transform - - uid: 1427 - components: - - pos: -7.5,-37.5 - parent: 2 - type: Transform - - uid: 1444 - components: - - pos: -13.5,-37.5 - parent: 2 - type: Transform - - uid: 1445 - components: - - pos: -13.5,-38.5 - parent: 2 - type: Transform - - uid: 1446 - components: - - pos: -13.5,-39.5 - parent: 2 - type: Transform - - uid: 1447 - components: - - pos: -11.5,-39.5 - parent: 2 - type: Transform - - uid: 1448 - components: - - pos: -11.5,-38.5 - parent: 2 - type: Transform - - uid: 1449 - components: - - pos: -11.5,-37.5 - parent: 2 - type: Transform - - uid: 1450 - components: - - pos: -11.5,-33.5 - parent: 2 - type: Transform - - uid: 1451 - components: - - pos: -11.5,-32.5 - parent: 2 - type: Transform - - uid: 1452 - components: - - pos: -11.5,-31.5 - parent: 2 - type: Transform - - uid: 1453 - components: - - pos: -13.5,-31.5 - parent: 2 - type: Transform - - uid: 1454 - components: - - pos: -13.5,-32.5 - parent: 2 - type: Transform - - uid: 1455 - components: - - pos: -13.5,-33.5 - parent: 2 - type: Transform - - uid: 5535 - components: - - pos: 77.5,49.5 - parent: 2 - type: Transform - - uid: 5536 - components: - - pos: 77.5,48.5 - parent: 2 - type: Transform - - uid: 5537 - components: - - pos: 77.5,47.5 - parent: 2 - type: Transform - - uid: 5538 - components: - - pos: 79.5,47.5 - parent: 2 - type: Transform - - uid: 5539 - components: - - pos: 79.5,48.5 - parent: 2 - type: Transform - - uid: 5540 - components: - - pos: 79.5,49.5 - parent: 2 - type: Transform - - uid: 5541 - components: - - pos: 81.5,50.5 - parent: 2 - type: Transform - - uid: 5542 - components: - - pos: 81.5,49.5 - parent: 2 - type: Transform - - uid: 5543 - components: - - pos: 81.5,48.5 - parent: 2 - type: Transform - - uid: 5544 - components: - - pos: 81.5,47.5 - parent: 2 - type: Transform - - uid: 5545 - components: - - pos: 83.5,47.5 - parent: 2 - type: Transform - - uid: 5546 - components: - - pos: 83.5,48.5 - parent: 2 - type: Transform - - uid: 5547 - components: - - pos: 83.5,49.5 - parent: 2 - type: Transform - - uid: 5548 - components: - - pos: 83.5,50.5 - parent: 2 - type: Transform - - uid: 5549 - components: - - pos: 83.5,40.5 - parent: 2 - type: Transform - - uid: 5550 - components: - - pos: 81.5,40.5 - parent: 2 - type: Transform - - uid: 5551 - components: - - pos: 81.5,41.5 - parent: 2 - type: Transform - - uid: 5552 - components: - - pos: 81.5,42.5 - parent: 2 - type: Transform - - uid: 5553 - components: - - pos: 81.5,43.5 - parent: 2 - type: Transform - - uid: 5554 - components: - - pos: 83.5,43.5 - parent: 2 - type: Transform - - uid: 5555 - components: - - pos: 83.5,42.5 - parent: 2 - type: Transform - - uid: 5556 - components: - - pos: 83.5,41.5 - parent: 2 - type: Transform - - uid: 5557 - components: - - pos: 79.5,41.5 - parent: 2 - type: Transform - - uid: 5558 - components: - - pos: 79.5,42.5 - parent: 2 - type: Transform - - uid: 5559 - components: - - pos: 79.5,43.5 - parent: 2 - type: Transform - - uid: 5560 - components: - - pos: 77.5,43.5 - parent: 2 - type: Transform - - uid: 5561 - components: - - pos: 77.5,42.5 - parent: 2 - type: Transform - - uid: 5562 - components: - - pos: 77.5,41.5 - parent: 2 - type: Transform - - uid: 5563 - components: - - pos: 85.5,41.5 - parent: 2 - type: Transform - - uid: 5564 - components: - - pos: 85.5,42.5 - parent: 2 - type: Transform - - uid: 5565 - components: - - pos: 85.5,43.5 - parent: 2 - type: Transform - - uid: 5566 - components: - - pos: 87.5,43.5 - parent: 2 - type: Transform - - uid: 5567 - components: - - pos: 87.5,42.5 - parent: 2 - type: Transform - - uid: 5568 - components: - - pos: 87.5,41.5 - parent: 2 - type: Transform - - uid: 5569 - components: - - pos: 87.5,47.5 - parent: 2 - type: Transform - - uid: 5570 - components: - - pos: 87.5,48.5 - parent: 2 - type: Transform - - uid: 5571 - components: - - pos: 87.5,49.5 - parent: 2 - type: Transform - - uid: 5572 - components: - - pos: 85.5,49.5 - parent: 2 - type: Transform - - uid: 5573 - components: - - pos: 85.5,48.5 - parent: 2 - type: Transform - - uid: 5574 - components: - - pos: 85.5,47.5 - parent: 2 - type: Transform - - uid: 8904 - components: - - pos: 111.5,-21.5 - parent: 2 - type: Transform - - uid: 8905 - components: - - pos: 111.5,-22.5 - parent: 2 - type: Transform - - uid: 8906 - components: - - pos: 111.5,-23.5 - parent: 2 - type: Transform - - uid: 8907 - components: - - pos: 111.5,-24.5 - parent: 2 - type: Transform - - uid: 8908 - components: - - pos: 113.5,-24.5 - parent: 2 - type: Transform - - uid: 8909 - components: - - pos: 113.5,-23.5 - parent: 2 - type: Transform - - uid: 8910 - components: - - pos: 113.5,-22.5 - parent: 2 - type: Transform - - uid: 8911 - components: - - pos: 113.5,-21.5 - parent: 2 - type: Transform - - uid: 8912 - components: - - pos: 115.5,-21.5 - parent: 2 - type: Transform - - uid: 8913 - components: - - pos: 115.5,-22.5 - parent: 2 - type: Transform - - uid: 8914 - components: - - pos: 115.5,-23.5 - parent: 2 - type: Transform - - uid: 8915 - components: - - pos: 115.5,-24.5 - parent: 2 - type: Transform - - uid: 8961 - components: - - pos: 111.5,-13.5 - parent: 2 - type: Transform - - uid: 8962 - components: - - pos: 111.5,-12.5 - parent: 2 - type: Transform - - uid: 8963 - components: - - pos: 111.5,-11.5 - parent: 2 - type: Transform - - uid: 8964 - components: - - pos: 111.5,-10.5 - parent: 2 - type: Transform - - uid: 8965 - components: - - pos: 113.5,-12.5 - parent: 2 - type: Transform - - uid: 8966 - components: - - pos: 113.5,-13.5 - parent: 2 - type: Transform - - uid: 8967 - components: - - pos: 113.5,-11.5 - parent: 2 - type: Transform - - uid: 8968 - components: - - pos: 113.5,-10.5 - parent: 2 - type: Transform - - uid: 8969 - components: - - pos: 115.5,-13.5 - parent: 2 - type: Transform - - uid: 8970 - components: - - pos: 115.5,-12.5 - parent: 2 - type: Transform - - uid: 8971 - components: - - pos: 115.5,-11.5 - parent: 2 - type: Transform - - uid: 8972 - components: - - pos: 115.5,-10.5 - parent: 2 - type: Transform - - uid: 9081 - components: - - pos: 120.5,-15.5 - parent: 2 - type: Transform - - uid: 9082 - components: - - pos: 119.5,-15.5 - parent: 2 - type: Transform - - uid: 9083 - components: - - pos: 118.5,-15.5 - parent: 2 - type: Transform - - uid: 9084 - components: - - pos: 117.5,-15.5 - parent: 2 - type: Transform - - uid: 9085 - components: - - pos: 119.5,-17.5 - parent: 2 - type: Transform - - uid: 9086 - components: - - pos: 118.5,-17.5 - parent: 2 - type: Transform - - uid: 9087 - components: - - pos: 117.5,-17.5 - parent: 2 - type: Transform - - uid: 9088 - components: - - pos: 120.5,-19.5 - parent: 2 - type: Transform - - uid: 9089 - components: - - pos: 119.5,-19.5 - parent: 2 - type: Transform - - uid: 9090 - components: - - pos: 118.5,-19.5 - parent: 2 - type: Transform - - uid: 9091 - components: - - pos: 117.5,-19.5 - parent: 2 - type: Transform -- proto: SolarTracker - entities: - - uid: 1443 - components: - - pos: -15.5,-35.5 - parent: 2 - type: Transform - - uid: 5575 - components: - - pos: 89.5,45.5 - parent: 2 - type: Transform - - uid: 9080 - components: - - pos: 120.5,-17.5 - parent: 2 - type: Transform -- proto: SpaceCash1000 - entities: - - uid: 11863 - components: - - flags: InContainer - type: MetaData - - parent: 12094 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: SpaceVillainArcadeFilled - entities: - - uid: 1 - components: - - pos: 20.5,10.5 - parent: 2 - type: Transform -- proto: SpawnMechRipley - entities: - - uid: 8178 - components: - - pos: 7.5,30.5 - parent: 2 - type: Transform -- proto: SpawnMobAlexander - entities: - - uid: 1866 - components: - - pos: 34.5,-11.5 - parent: 2 - type: Transform -- proto: SpawnMobBandito - entities: - - uid: 12772 - components: - - pos: 62.5,10.5 - parent: 2 - type: Transform -- proto: SpawnMobCatGeneric - entities: - - uid: 11419 - components: - - pos: 57.5,-11.5 - parent: 2 - type: Transform -- proto: SpawnMobCorgi - entities: - - uid: 10281 - components: - - pos: 19.5,-5.5 - parent: 2 - type: Transform -- proto: SpawnMobCrab - entities: - - uid: 5859 - components: - - pos: 38.5,-28.5 - parent: 2 - type: Transform -- proto: SpawnMobDrone - entities: - - uid: 5652 - components: - - pos: 18.5,-26.5 - parent: 2 - type: Transform - - uid: 5653 - components: - - pos: 19.5,-26.5 - parent: 2 - type: Transform -- proto: SpawnMobFoxRenault - entities: - - uid: 12231 - components: - - pos: 31.5,41.5 - parent: 2 - type: Transform -- proto: SpawnMobMcGriff - entities: - - uid: 8443 - components: - - pos: 40.5,23.5 - parent: 2 - type: Transform -- proto: SpawnMobMonkeyPunpun - entities: - - uid: 6527 - components: - - pos: 39.5,-5.5 - parent: 2 - type: Transform -- proto: SpawnMobMouse - entities: - - uid: 12324 - components: - - pos: 13.5,18.5 - parent: 2 - type: Transform - - uid: 12327 - components: - - pos: 73.5,-15.5 - parent: 2 - type: Transform - - uid: 12797 - components: - - pos: 43.5,44.5 - parent: 2 - type: Transform - - uid: 12798 - components: - - pos: 67.5,39.5 - parent: 2 - type: Transform - - uid: 12799 - components: - - pos: 81.5,7.5 - parent: 2 - type: Transform - - uid: 12801 - components: - - pos: 1.5,-7.5 - parent: 2 - type: Transform -- proto: SpawnMobPossumMorty - entities: - - uid: 12303 - components: - - pos: 73.5,-1.5 - parent: 2 - type: Transform -- proto: SpawnMobRaccoonMorticia - entities: - - uid: 243 - components: - - pos: 12.5,31.5 - parent: 2 - type: Transform -- proto: SpawnMobShiva - entities: - - uid: 8444 - components: - - pos: 44.5,22.5 - parent: 2 - type: Transform -- proto: SpawnMobSlothPaperwork - entities: - - uid: 12305 - components: - - pos: 9.5,5.5 - parent: 2 - type: Transform -- proto: SpawnMobSmile - entities: - - uid: 12771 - components: - - pos: 59.5,19.5 - parent: 2 - type: Transform -- proto: SpawnMobWalter - entities: - - uid: 12230 - components: - - pos: 50.5,-8.5 - parent: 2 - type: Transform -- proto: SpawnPointAssistant - entities: - - uid: 1791 - components: - - pos: 32.5,-15.5 - parent: 2 - type: Transform - - uid: 1792 - components: - - pos: 31.5,-15.5 - parent: 2 - type: Transform - - uid: 1793 - components: - - pos: 30.5,-15.5 - parent: 2 - type: Transform - - uid: 1794 - components: - - pos: 30.5,-16.5 - parent: 2 - type: Transform - - uid: 1795 - components: - - pos: 31.5,-16.5 - parent: 2 - type: Transform - - uid: 1796 - components: - - pos: 32.5,-16.5 - parent: 2 - type: Transform -- proto: SpawnPointAtmos - entities: - - uid: 4577 - components: - - pos: 30.5,-31.5 - parent: 2 - type: Transform - - uid: 4578 - components: - - pos: 29.5,-31.5 - parent: 2 - type: Transform -- proto: SpawnPointBartender - entities: - - uid: 6502 - components: - - pos: 38.5,-10.5 - parent: 2 - type: Transform -- proto: SpawnPointBotanist - entities: - - uid: 6750 - components: - - pos: 43.5,-6.5 - parent: 2 - type: Transform - - uid: 6751 - components: - - pos: 44.5,-6.5 - parent: 2 - type: Transform -- proto: SpawnPointCaptain - entities: - - uid: 8682 - components: - - pos: 33.5,40.5 - parent: 2 - type: Transform -- proto: SpawnPointCargoTechnician - entities: - - uid: 8258 - components: - - pos: 13.5,22.5 - parent: 2 - type: Transform - - uid: 8259 - components: - - pos: 12.5,22.5 - parent: 2 - type: Transform - - uid: 8260 - components: - - pos: 11.5,22.5 - parent: 2 - type: Transform -- proto: SpawnPointChaplain - entities: - - uid: 10638 - components: - - pos: 32.5,8.5 - parent: 2 - type: Transform -- proto: SpawnPointChef - entities: - - uid: 8294 - components: - - pos: 36.5,-11.5 - parent: 2 - type: Transform -- proto: SpawnPointChemist - entities: - - uid: 5071 - components: - - pos: 53.5,-4.5 - parent: 2 - type: Transform - - uid: 6650 - components: - - pos: 50.5,-4.5 - parent: 2 - type: Transform -- proto: SpawnPointChiefEngineer - entities: - - uid: 8692 - components: - - pos: 11.5,-34.5 - parent: 2 - type: Transform -- proto: SpawnPointChiefMedicalOfficer - entities: - - uid: 11418 - components: - - pos: 56.5,-11.5 - parent: 2 - type: Transform -- proto: SpawnPointClown - entities: - - uid: 9608 - components: - - pos: 26.5,6.5 - parent: 2 - type: Transform -- proto: SpawnPointDetective - entities: - - uid: 8679 - components: - - pos: 42.5,19.5 - parent: 2 - type: Transform -- proto: SpawnPointHeadOfPersonnel - entities: - - uid: 12791 - components: - - pos: 19.5,-4.5 - parent: 2 - type: Transform -- proto: SpawnPointHeadOfSecurity - entities: - - uid: 8438 - components: - - pos: 44.5,24.5 - parent: 2 - type: Transform -- proto: SpawnPointJanitor - entities: - - uid: 8711 - components: - - pos: 5.5,-4.5 - parent: 2 - type: Transform -- proto: SpawnPointLatejoin - entities: - - uid: 12803 - components: - - pos: -16.5,-12.5 - parent: 2 - type: Transform - - uid: 12804 - components: - - pos: -15.5,-12.5 - parent: 2 - type: Transform - - uid: 12805 - components: - - pos: -9.5,-12.5 - parent: 2 - type: Transform - - uid: 12806 - components: - - pos: -8.5,-12.5 - parent: 2 - type: Transform -- proto: SpawnPointLawyer - entities: - - uid: 8160 - components: - - pos: -2.5,-11.5 - parent: 2 - type: Transform - - uid: 8161 - components: - - pos: -3.5,-10.5 - parent: 2 - type: Transform -- proto: SpawnPointLibrarian - entities: - - uid: 11708 - components: - - pos: 9.5,3.5 - parent: 2 - type: Transform -- proto: SpawnPointMedicalDoctor - entities: - - uid: 11958 - components: - - pos: 71.5,5.5 - parent: 2 - type: Transform - - uid: 11959 - components: - - pos: 71.5,6.5 - parent: 2 - type: Transform - - uid: 11960 - components: - - pos: 71.5,7.5 - parent: 2 - type: Transform -- proto: SpawnPointMedicalIntern - entities: - - uid: 11961 - components: - - pos: 73.5,5.5 - parent: 2 - type: Transform - - uid: 11962 - components: - - pos: 73.5,6.5 - parent: 2 - type: Transform -- proto: SpawnPointMime - entities: - - uid: 9610 - components: - - pos: 25.5,7.5 - parent: 2 - type: Transform -- proto: SpawnPointMusician - entities: - - uid: 9355 - components: - - pos: 20.5,-11.5 - parent: 2 - type: Transform -- proto: SpawnPointObserver - entities: - - uid: 5419 - components: - - pos: 26.5,1.5 - parent: 2 - type: Transform -- proto: SpawnPointParamedic - entities: - - uid: 8314 - components: - - pos: 46.5,3.5 - parent: 2 - type: Transform -- proto: SpawnPointQuartermaster - entities: - - uid: 11985 - components: - - pos: 12.5,30.5 - parent: 2 - type: Transform -- proto: SpawnPointResearchAssistant - entities: - - uid: 10657 - components: - - pos: 57.5,23.5 - parent: 2 - type: Transform - - uid: 10658 - components: - - pos: 56.5,23.5 - parent: 2 - type: Transform -- proto: SpawnPointResearchDirector - entities: - - uid: 12770 - components: - - pos: 61.5,9.5 - parent: 2 - type: Transform -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 8256 - components: - - pos: 8.5,17.5 - parent: 2 - type: Transform - - uid: 8257 - components: - - pos: 8.5,18.5 - parent: 2 - type: Transform -- proto: SpawnPointScientist - entities: - - uid: 10654 - components: - - pos: 57.5,24.5 - parent: 2 - type: Transform - - uid: 10655 - components: - - pos: 56.5,24.5 - parent: 2 - type: Transform - - uid: 10656 - components: - - pos: 55.5,24.5 - parent: 2 - type: Transform -- proto: SpawnPointSecurityCadet - entities: - - uid: 8437 - components: - - pos: 34.5,27.5 - parent: 2 - type: Transform - - uid: 8696 - components: - - pos: 34.5,26.5 - parent: 2 - type: Transform -- proto: SpawnPointSecurityOfficer - entities: - - uid: 8439 - components: - - pos: 38.5,18.5 - parent: 2 - type: Transform - - uid: 8440 - components: - - pos: 39.5,18.5 - parent: 2 - type: Transform - - uid: 8441 - components: - - pos: 37.5,18.5 - parent: 2 - type: Transform -- proto: SpawnPointSeniorEngineer - entities: - - uid: 12852 - components: - - pos: 24.5,-32.5 - parent: 2 - type: Transform -- proto: SpawnPointSeniorOfficer - entities: - - uid: 12849 - components: - - pos: 35.5,27.5 - parent: 2 - type: Transform -- proto: SpawnPointSeniorPhysician - entities: - - uid: 12851 - components: - - pos: 73.5,7.5 - parent: 2 - type: Transform -- proto: SpawnPointSeniorResearcher - entities: - - uid: 12850 - components: - - pos: 55.5,23.5 - parent: 2 - type: Transform -- proto: SpawnPointServiceWorker - entities: - - uid: 12792 - components: - - pos: 32.5,-5.5 - parent: 2 - type: Transform - - uid: 12793 - components: - - pos: 32.5,-4.5 - parent: 2 - type: Transform - - uid: 12794 - components: - - pos: 34.5,-5.5 - parent: 2 - type: Transform - - uid: 12795 - components: - - pos: 34.5,-4.5 - parent: 2 - type: Transform -- proto: SpawnPointStationEngineer - entities: - - uid: 4579 - components: - - pos: 23.5,-31.5 - parent: 2 - type: Transform - - uid: 4580 - components: - - pos: 22.5,-31.5 - parent: 2 - type: Transform - - uid: 4581 - components: - - pos: 21.5,-31.5 - parent: 2 - type: Transform -- proto: SpawnPointTechnicalAssistant - entities: - - uid: 5660 - components: - - pos: 26.5,-32.5 - parent: 2 - type: Transform - - uid: 5661 - components: - - pos: 25.5,-32.5 - parent: 2 - type: Transform - - uid: 5662 - components: - - pos: 27.5,-32.5 - parent: 2 - type: Transform -- proto: SpawnPointWarden - entities: - - uid: 8442 - components: - - pos: 39.5,23.5 - parent: 2 - type: Transform -- proto: SpawnVehicleJanicart - entities: - - uid: 12910 - components: - - pos: 6.5,-5.5 - parent: 2 - type: Transform -- proto: SpawnVehicleSecway - entities: - - uid: 8446 - components: - - pos: 36.5,21.5 - parent: 2 - type: Transform -- proto: SprayBottle - entities: - - uid: 5072 - components: - - pos: 52.708385,-7.471399 - parent: 2 - type: Transform - - uid: 5393 - components: - - rot: 3.589668631320819E-05 rad - pos: 55.735016,10.470499 - parent: 2 - type: Transform - - uid: 7793 - components: - - pos: 55.34302,10.727416 - parent: 2 - type: Transform -- proto: SprayBottleSpaceCleaner - entities: - - uid: 7812 - components: - - pos: 82.67393,-4.422255 - parent: 2 - type: Transform -- proto: SprayBottleWater - entities: - - uid: 6812 - components: - - pos: 67.05991,-3.359559 - parent: 2 - type: Transform -- proto: StasisBed - entities: - - uid: 11819 - components: - - pos: 63.5,4.5 - parent: 2 - type: Transform -- proto: StasisBedMachineCircuitboard - entities: - - uid: 12358 - components: - - pos: 37.482082,-14.3762665 - parent: 2 - type: Transform -- proto: StationMap - entities: - - uid: 1761 - components: - - pos: 19.5,38.5 - parent: 2 - type: Transform - - uid: 8115 - components: - - pos: -7.5,-7.5 - parent: 2 - type: Transform - - uid: 8116 - components: - - pos: 9.5,2.5 - parent: 2 - type: Transform - - uid: 8984 - components: - - pos: 34.5,16.5 - parent: 2 - type: Transform - - uid: 11292 - components: - - pos: 28.5,-1.5 - parent: 2 - type: Transform -- proto: Stimpack - entities: - - uid: 12493 - components: - - pos: 11.490012,-11.457567 - parent: 2 - type: Transform -- proto: Stool - entities: - - uid: 172 - components: - - pos: 5.5,-4.5 - parent: 2 - type: Transform - - uid: 365 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,30.5 - parent: 2 - type: Transform - - uid: 943 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-36.5 - parent: 2 - type: Transform - - uid: 1665 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-7.5 - parent: 2 - type: Transform - - uid: 2465 - components: - - pos: 38.5,19.5 - parent: 2 - type: Transform - - uid: 2466 - components: - - pos: 39.5,19.5 - parent: 2 - type: Transform - - uid: 3406 - components: - - pos: 71.5,46.5 - parent: 2 - type: Transform - - uid: 4304 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-41.5 - parent: 2 - type: Transform - - uid: 5045 - components: - - pos: 50.5,4.5 - parent: 2 - type: Transform - - uid: 5067 - components: - - pos: 51.5,-6.5 - parent: 2 - type: Transform - - uid: 5879 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-30.5 - parent: 2 - type: Transform - - uid: 6495 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-11.5 - parent: 2 - type: Transform - - uid: 6953 - components: - - rot: 3.141592653589793 rad - pos: 20.5,9.5 - parent: 2 - type: Transform - - uid: 7971 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,16.5 - parent: 2 - type: Transform - - uid: 9360 - components: - - pos: 27.5,7.5 - parent: 2 - type: Transform -- proto: StoolBar - entities: - - uid: 1615 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-5.5 - parent: 2 - type: Transform - - uid: 1616 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-4.5 - parent: 2 - type: Transform - - uid: 1617 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-3.5 - parent: 2 - type: Transform - - uid: 1627 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-7.5 - parent: 2 - type: Transform - - uid: 1628 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-6.5 - parent: 2 - type: Transform - - uid: 2903 - components: - - pos: 61.5,-15.5 - parent: 2 - type: Transform - - uid: 2904 - components: - - pos: 60.5,-15.5 - parent: 2 - type: Transform - - uid: 2905 - components: - - pos: 60.5,-16.5 - parent: 2 - type: Transform - - uid: 12695 - components: - - rot: -1.5707963267948966 rad - pos: 107.5,-17.5 - parent: 2 - type: Transform -- proto: StorageCanister - entities: - - uid: 950 - components: - - pos: 46.5,-38.5 - parent: 2 - type: Transform - - uid: 951 - components: - - pos: 46.5,-37.5 - parent: 2 - type: Transform - - uid: 4568 - components: - - pos: 36.5,-25.5 - parent: 2 - type: Transform - - uid: 4569 - components: - - pos: 37.5,-25.5 - parent: 2 - type: Transform - - uid: 10440 - components: - - pos: 58.5,9.5 - parent: 2 - type: Transform -- proto: Stunbaton - entities: - - uid: 10137 - components: - - pos: 40.348335,22.308064 - parent: 2 - type: Transform - - uid: 10138 - components: - - pos: 40.348335,22.526814 - parent: 2 - type: Transform - - uid: 10139 - components: - - pos: 40.348335,22.745564 - parent: 2 - type: Transform -- proto: SubstationBasic - entities: - - uid: 30 - components: - - name: Cargo Substation - type: MetaData - - pos: 12.5,34.5 - parent: 2 - type: Transform - - uid: 54 - components: - - name: Arrivals Substation - type: MetaData - - pos: 6.5,-8.5 - parent: 2 - type: Transform - - uid: 443 - components: - - name: Gravity Substation - type: MetaData - - pos: 14.5,35.5 - parent: 2 - type: Transform - - supplyRampPosition: 2.3437593 - type: PowerNetworkBattery - - uid: 2160 - components: - - name: Library Substation - type: MetaData - - pos: 14.5,7.5 - parent: 2 - type: Transform - - uid: 4076 - components: - - name: Telecomms Sub - type: MetaData - - pos: 22.5,-14.5 - parent: 2 - type: Transform - - uid: 4096 - components: - - name: Engineering Substation - type: MetaData - - pos: 10.5,-25.5 - parent: 2 - type: Transform - - supplyRampPosition: 2.3437593 - type: PowerNetworkBattery - - uid: 4101 - components: - - name: South West Substation - type: MetaData - - pos: 16.5,-14.5 - parent: 2 - type: Transform - - uid: 4431 - components: - - name: Solars South West Sub - type: MetaData - - pos: 4.5,-36.5 - parent: 2 - type: Transform - - supplyRampPosition: 2.3437593 - type: PowerNetworkBattery - - uid: 4613 - components: - - pos: 90.5,-2.5 - parent: 2 - type: Transform - - uid: 5637 - components: - - name: Solars North East Substation - type: MetaData - - pos: 70.5,44.5 - parent: 2 - type: Transform - - loadingNetworkDemand: 10.019571 - currentSupply: 10.019571 - supplyRampPosition: 10.019571 - type: PowerNetworkBattery - - uid: 6199 - components: - - pos: 69.5,-13.5 - parent: 2 - type: Transform - - uid: 6379 - components: - - name: Science North West Substation - type: MetaData - - pos: 50.5,27.5 - parent: 2 - type: Transform - - supplyRampPosition: 2.3437593 - type: PowerNetworkBattery - - uid: 7576 - components: - - name: Medical South West Substation - type: MetaData - - pos: 52.5,-10.5 - parent: 2 - type: Transform - - uid: 8307 - components: - - name: Toolroom Substation - type: MetaData - - pos: 35.5,-14.5 - parent: 2 - type: Transform - - uid: 8324 - components: - - name: Security Substation - type: MetaData - - pos: 43.5,27.5 - parent: 2 - type: Transform - - uid: 9016 - components: - - pos: 112.5,-15.5 - parent: 2 - type: Transform - - loadingNetworkDemand: 60.000237 - currentReceiving: 60.000237 - currentSupply: 60.000237 - type: PowerNetworkBattery -- proto: SubstationMachineCircuitboard - entities: - - uid: 12372 - components: - - pos: 41.421707,-15.2981415 - parent: 2 - type: Transform - - uid: 12378 - components: - - pos: 41.546707,-15.3918915 - parent: 2 - type: Transform -- proto: SubstationWallBasic - entities: - - uid: 6766 - components: - - name: Singulo Emitter Substation - type: MetaData - - pos: 15.5,-42.5 - parent: 2 - type: Transform -- proto: SuitStorageAtmos - entities: - - uid: 871 - components: - - pos: 15.5,-31.5 - parent: 2 - type: Transform -- proto: SuitStorageCaptain - entities: - - uid: 9438 - components: - - pos: 37.5,41.5 - parent: 2 - type: Transform -- proto: SuitStorageCE - entities: - - uid: 1179 - components: - - pos: 10.5,-36.5 - parent: 2 - type: Transform -- proto: SuitStorageEngi - entities: - - uid: 870 - components: - - pos: 15.5,-30.5 - parent: 2 - type: Transform - - uid: 5654 - components: - - pos: 30.5,-34.5 - parent: 2 - type: Transform - - uid: 5655 - components: - - pos: 32.5,-34.5 - parent: 2 - type: Transform -- proto: SuitStorageEVA - entities: - - uid: 10300 - components: - - pos: 10.5,-8.5 - parent: 2 - type: Transform - - uid: 10301 - components: - - pos: 11.5,-8.5 - parent: 2 - type: Transform - - uid: 10302 - components: - - pos: 12.5,-8.5 - parent: 2 - type: Transform -- proto: SuitStorageEVAAlternate - entities: - - uid: 10297 - components: - - pos: 10.5,-5.5 - parent: 2 - type: Transform - - uid: 10298 - components: - - pos: 11.5,-5.5 - parent: 2 - type: Transform - - uid: 10299 - components: - - pos: 12.5,-5.5 - parent: 2 - type: Transform -- proto: SuitStorageEVAPrisoner - entities: - - uid: 8337 - components: - - pos: 37.5,31.5 - parent: 2 - type: Transform -- proto: SuitStorageNTSRA - entities: - - uid: 12168 - components: - - pos: 49.5,-15.5 - parent: 2 - type: Transform -- proto: SuitStorageRD - entities: - - uid: 10661 - components: - - pos: 60.5,8.5 - parent: 2 - type: Transform -- proto: SuitStorageSec - entities: - - uid: 7946 - components: - - pos: 39.5,21.5 - parent: 2 - type: Transform - - uid: 7947 - components: - - pos: 38.5,21.5 - parent: 2 - type: Transform -- proto: SurveillanceCameraCommand - entities: - - uid: 12735 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-5.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: EVA Storage - type: SurveillanceCamera - - uid: 12736 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-3.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HoP Office - type: SurveillanceCamera - - uid: 12753 - components: - - rot: 3.141592653589793 rad - pos: 15.5,37.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Gravity - type: SurveillanceCamera - - uid: 12754 - components: - - rot: 3.141592653589793 rad - pos: 19.5,41.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Vault - type: SurveillanceCamera - - uid: 12755 - components: - - rot: 3.141592653589793 rad - pos: 24.5,42.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Conference Room - type: SurveillanceCamera - - uid: 12756 - components: - - rot: 3.141592653589793 rad - pos: 21.5,46.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge West - type: SurveillanceCamera - - uid: 12757 - components: - - rot: 3.141592653589793 rad - pos: 28.5,48.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge North - type: SurveillanceCamera - - uid: 12758 - components: - - rot: 3.141592653589793 rad - pos: 33.5,46.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge East - type: SurveillanceCamera - - uid: 12759 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,41.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Office - type: SurveillanceCamera - - uid: 12760 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,41.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Bedroom - type: SurveillanceCamera - - uid: 12761 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,35.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Camera Server Room - type: SurveillanceCamera - - uid: 12762 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,41.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge Entrance - type: SurveillanceCamera -- proto: SurveillanceCameraEngineering - entities: - - uid: 12775 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-16.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Telecomms - type: SurveillanceCamera - - uid: 12778 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-25.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Entrance - type: SurveillanceCamera - - uid: 12779 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-23.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos North - type: SurveillanceCamera - - uid: 12780 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-33.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos South - type: SurveillanceCamera - - uid: 12781 - components: - - pos: 42.5,-40.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Canister Storage - type: SurveillanceCamera - - uid: 12782 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-40.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: AME Room - type: SurveillanceCamera - - uid: 12783 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-40.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Particle Accelerator - type: SurveillanceCamera - - uid: 12784 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-44.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Singulo Airlock - type: SurveillanceCamera - - uid: 12785 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-33.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: CE Office - type: SurveillanceCamera - - uid: 12787 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-29.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Secure Storage - type: SurveillanceCamera - - uid: 12788 - components: - - pos: 19.5,-28.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Break Room - type: SurveillanceCamera - - uid: 12789 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-25.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engi Entrance - type: SurveillanceCamera - - uid: 12790 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-31.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Locker Room - type: SurveillanceCamera -- proto: SurveillanceCameraGeneral - entities: - - uid: 12714 - components: - - pos: 32.5,-7.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Cafeteria - type: SurveillanceCamera - - uid: 12716 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-9.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Theater - type: SurveillanceCamera - - uid: 12719 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,7.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Chapel - type: SurveillanceCamera - - uid: 12721 - components: - - pos: 10.5,3.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Library - type: SurveillanceCamera - - uid: 12722 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,7.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Laundry Room - type: SurveillanceCamera - - uid: 12723 - components: - - rot: 3.141592653589793 rad - pos: 19.5,15.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dormitory - type: SurveillanceCamera - - uid: 12730 - components: - - rot: 3.141592653589793 rad - pos: -0.5,0.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Evac - type: SurveillanceCamera - - uid: 12731 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-12.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arrivals - type: SurveillanceCamera - - uid: 12737 - components: - - rot: 3.141592653589793 rad - pos: 24.5,1.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Central Hall - type: SurveillanceCamera - - uid: 12738 - components: - - rot: 3.141592653589793 rad - pos: 28.5,15.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Central Hall North - type: SurveillanceCamera - - uid: 12739 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,8.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Central Hall East - type: SurveillanceCamera - - uid: 12740 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,8.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Central Hall West - type: SurveillanceCamera - - uid: 12776 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-15.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Toolroom - type: SurveillanceCamera - - uid: 12786 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-28.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Disposals - type: SurveillanceCamera -- proto: SurveillanceCameraMedical - entities: - - uid: 12215 - components: - - rot: -1.5707963267948966 rad - pos: 76.5,-5.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Virology - type: SurveillanceCamera - - uid: 12216 - components: - - rot: 3.141592653589793 rad - pos: 73.5,-0.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Morgue - type: SurveillanceCamera - - uid: 12217 - components: - - rot: 3.141592653589793 rad - pos: 78.5,5.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Break Room - type: SurveillanceCamera - - uid: 12218 - components: - - pos: 72.5,4.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Supply Room - type: SurveillanceCamera - - uid: 12221 - components: - - rot: 1.5707963267948966 rad - pos: 67.5,-5.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Surgery - type: SurveillanceCamera - - uid: 12222 - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-9.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Surgery Secondary - type: SurveillanceCamera - - uid: 12223 - components: - - rot: 3.141592653589793 rad - pos: 62.5,-9.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Private Practice - type: SurveillanceCamera - - uid: 12224 - components: - - rot: 3.141592653589793 rad - pos: 57.5,-9.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: CMO Office - type: SurveillanceCamera - - uid: 12225 - components: - - rot: 3.141592653589793 rad - pos: 51.5,-4.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Chemistry - type: SurveillanceCamera - - uid: 12227 - components: - - rot: 3.141592653589793 rad - pos: 52.5,0.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medical Entrance - type: SurveillanceCamera - - uid: 12235 - components: - - rot: 3.141592653589793 rad - pos: 46.5,4.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Paramedic Room - type: SurveillanceCamera - - uid: 12236 - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-0.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Cryo - type: SurveillanceCamera - - uid: 12237 - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-4.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Surgery Prep - type: SurveillanceCamera - - uid: 12238 - components: - - rot: 3.141592653589793 rad - pos: 64.5,4.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Exam - type: SurveillanceCamera -- proto: SurveillanceCameraRouterCommand - entities: - - uid: 10318 - components: - - pos: 32.5,34.5 - parent: 2 - type: Transform -- proto: SurveillanceCameraRouterEngineering - entities: - - uid: 10320 - components: - - pos: 30.5,34.5 - parent: 2 - type: Transform -- proto: SurveillanceCameraRouterGeneral - entities: - - uid: 8230 - components: - - pos: 49.5,23.5 - parent: 2 - type: Transform -- proto: SurveillanceCameraRouterMedical - entities: - - uid: 10316 - components: - - pos: 32.5,37.5 - parent: 2 - type: Transform -- proto: SurveillanceCameraRouterScience - entities: - - uid: 10317 - components: - - pos: 31.5,37.5 - parent: 2 - type: Transform -- proto: SurveillanceCameraRouterSecurity - entities: - - uid: 10319 - components: - - pos: 31.5,34.5 - parent: 2 - type: Transform -- proto: SurveillanceCameraRouterService - entities: - - uid: 8139 - components: - - pos: 51.5,23.5 - parent: 2 - type: Transform -- proto: SurveillanceCameraRouterSupply - entities: - - uid: 10315 - components: - - pos: 30.5,37.5 - parent: 2 - type: Transform -- proto: SurveillanceCameraScience - entities: - - uid: 12763 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,16.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Science Front - type: SurveillanceCamera - - uid: 12764 - components: - - rot: 3.141592653589793 rad - pos: 53.5,20.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: RND - type: SurveillanceCamera - - uid: 12765 - components: - - rot: -1.5707963267948966 rad - pos: 49.5,24.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Science Server Room - type: SurveillanceCamera - - uid: 12766 - components: - - rot: 3.141592653589793 rad - pos: 57.5,25.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Science Locker Room - type: SurveillanceCamera - - uid: 12767 - components: - - rot: -1.5707963267948966 rad - pos: 62.5,25.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Artifact Lab - type: SurveillanceCamera - - uid: 12768 - components: - - rot: -1.5707963267948966 rad - pos: 66.5,14.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Anomaly Lab - type: SurveillanceCamera - - uid: 12769 - components: - - rot: -1.5707963267948966 rad - pos: 60.5,10.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: RD Office - type: SurveillanceCamera - - uid: 12773 - components: - - rot: 3.141592653589793 rad - pos: 50.5,15.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Science Entrance - type: SurveillanceCamera - - uid: 12774 - components: - - rot: 3.141592653589793 rad - pos: 51.5,11.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Robotics - type: SurveillanceCamera -- proto: SurveillanceCameraSecurity - entities: - - uid: 12732 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-9.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Law Office - type: SurveillanceCamera - - uid: 12733 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-3.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Evac Checkpoint - type: SurveillanceCamera - - uid: 12741 - components: - - rot: 3.141592653589793 rad - pos: 31.5,30.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Interrogation - type: SurveillanceCamera - - uid: 12742 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,34.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Brig Left - type: SurveillanceCamera - - uid: 12743 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,33.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Brig Right - type: SurveillanceCamera - - uid: 12744 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,27.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory - type: SurveillanceCamera - - uid: 12745 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,23.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Warden's Room - type: SurveillanceCamera - - uid: 12746 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,24.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: HoS Room - type: SurveillanceCamera - - uid: 12747 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,19.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Detective Office - type: SurveillanceCamera - - uid: 12748 - components: - - rot: 3.141592653589793 rad - pos: 37.5,19.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security Locker Room - type: SurveillanceCamera - - uid: 12749 - components: - - rot: 3.141592653589793 rad - pos: 30.5,18.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cell 2 - type: SurveillanceCamera - - uid: 12750 - components: - - rot: 3.141592653589793 rad - pos: 30.5,21.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cell 1 - type: SurveillanceCamera - - uid: 12751 - components: - - rot: 3.141592653589793 rad - pos: 30.5,24.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security Entrance - type: SurveillanceCamera - - uid: 12752 - components: - - rot: 3.141592653589793 rad - pos: 21.5,33.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Court House - type: SurveillanceCamera -- proto: SurveillanceCameraService - entities: - - uid: 12711 - components: - - rot: 3.141592653589793 rad - pos: 45.5,-3.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Botany - type: SurveillanceCamera - - uid: 12712 - components: - - rot: 3.141592653589793 rad - pos: 37.5,-9.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Kitchen - type: SurveillanceCamera - - uid: 12713 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-5.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Bar - type: SurveillanceCamera - - uid: 12715 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-11.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Freezer - type: SurveillanceCamera - - uid: 12717 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,7.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Clown Room - type: SurveillanceCamera - - uid: 12718 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,7.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Chaplain's Office - type: SurveillanceCamera - - uid: 12734 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-3.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Janitor's Office - type: SurveillanceCamera -- proto: SurveillanceCameraSupply - entities: - - uid: 12724 - components: - - rot: 3.141592653589793 rad - pos: 19.5,24.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Desk - type: SurveillanceCamera - - uid: 12725 - components: - - rot: 3.141592653589793 rad - pos: 14.5,25.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Bay - type: SurveillanceCamera - - uid: 12726 - components: - - rot: 3.141592653589793 rad - pos: 13.5,31.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: QM Office - type: SurveillanceCamera - - uid: 12727 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,31.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Storage - type: SurveillanceCamera - - uid: 12728 - components: - - pos: 5.5,26.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Dock - type: SurveillanceCamera - - uid: 12729 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,18.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Salvage Bay - type: SurveillanceCamera - - uid: 12777 - components: - - rot: 3.141592653589793 rad - pos: 37.5,-14.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Technical Storage - type: SurveillanceCamera -- proto: SynthesizerInstrument - entities: - - uid: 9740 - components: - - pos: 19.550474,-10.884444 - parent: 2 - type: Transform -- proto: Syringe - entities: - - uid: 10709 - components: - - pos: 63.47666,-9.457929 - parent: 2 - type: Transform - - uid: 11803 - components: - - pos: 61.49895,-0.38000047 - parent: 2 - type: Transform -- proto: Table - entities: - - uid: 52 - components: - - pos: -2.5,-9.5 - parent: 2 - type: Transform - - uid: 163 - components: - - pos: 5.5,-3.5 - parent: 2 - type: Transform - - uid: 164 - components: - - pos: 6.5,-3.5 - parent: 2 - type: Transform - - uid: 165 - components: - - pos: 6.5,-4.5 - parent: 2 - type: Transform - - uid: 300 - components: - - pos: 33.5,-4.5 - parent: 2 - type: Transform - - uid: 679 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-19.5 - parent: 2 - type: Transform - - uid: 778 - components: - - pos: 19.5,-23.5 - parent: 2 - type: Transform - - uid: 786 - components: - - pos: 19.5,-26.5 - parent: 2 - type: Transform - - uid: 787 - components: - - pos: 18.5,-26.5 - parent: 2 - type: Transform - - uid: 788 - components: - - pos: 17.5,-26.5 - parent: 2 - type: Transform - - uid: 789 - components: - - pos: 16.5,-26.5 - parent: 2 - type: Transform - - uid: 884 - components: - - pos: 32.5,-30.5 - parent: 2 - type: Transform - - uid: 1146 - components: - - pos: 43.5,-2.5 - parent: 2 - type: Transform - - uid: 1152 - components: - - pos: 29.5,-3.5 - parent: 2 - type: Transform - - uid: 1153 - components: - - pos: 30.5,-3.5 - parent: 2 - type: Transform - - uid: 1331 - components: - - rot: 3.141592653589793 rad - pos: 20.5,5.5 - parent: 2 - type: Transform - - uid: 1507 - components: - - pos: 36.5,-10.5 - parent: 2 - type: Transform - - uid: 1512 - components: - - pos: 38.5,-2.5 - parent: 2 - type: Transform - - uid: 1524 - components: - - pos: 39.5,-2.5 - parent: 2 - type: Transform - - uid: 1543 - components: - - pos: 35.5,-12.5 - parent: 2 - type: Transform - - uid: 1544 - components: - - pos: 36.5,-12.5 - parent: 2 - type: Transform - - uid: 1549 - components: - - pos: 37.5,-12.5 - parent: 2 - type: Transform - - uid: 1552 - components: - - pos: 35.5,-10.5 - parent: 2 - type: Transform - - uid: 1623 - components: - - pos: 64.5,13.5 - parent: 2 - type: Transform - - uid: 1642 - components: - - pos: 48.5,-7.5 - parent: 2 - type: Transform - - uid: 1656 - components: - - pos: 33.5,-5.5 - parent: 2 - type: Transform - - uid: 1758 - components: - - pos: 33.5,-14.5 - parent: 2 - type: Transform - - uid: 1768 - components: - - pos: 38.5,-17.5 - parent: 2 - type: Transform - - uid: 1777 - components: - - pos: 31.5,-14.5 - parent: 2 - type: Transform - - uid: 1778 - components: - - pos: 30.5,-14.5 - parent: 2 - type: Transform - - uid: 1853 - components: - - pos: -3.5,-9.5 - parent: 2 - type: Transform - - uid: 1857 - components: - - rot: 3.141592653589793 rad - pos: 19.5,5.5 - parent: 2 - type: Transform - - uid: 2121 - components: - - pos: 11.5,21.5 - parent: 2 - type: Transform - - uid: 2122 - components: - - pos: 10.5,21.5 - parent: 2 - type: Transform - - uid: 2127 - components: - - pos: 20.5,24.5 - parent: 2 - type: Transform - - uid: 2147 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,31.5 - parent: 2 - type: Transform - - uid: 2156 - components: - - pos: 15.5,35.5 - parent: 2 - type: Transform - - uid: 2306 - components: - - pos: 37.5,36.5 - parent: 2 - type: Transform - - uid: 2319 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,34.5 - parent: 2 - type: Transform - - uid: 2462 - components: - - pos: 36.5,20.5 - parent: 2 - type: Transform - - uid: 2486 - components: - - pos: 36.5,25.5 - parent: 2 - type: Transform - - uid: 2906 - components: - - pos: 62.5,-16.5 - parent: 2 - type: Transform - - uid: 2907 - components: - - pos: 63.5,-16.5 - parent: 2 - type: Transform - - uid: 3021 - components: - - pos: 51.5,-7.5 - parent: 2 - type: Transform - - uid: 3200 - components: - - pos: 79.5,-7.5 - parent: 2 - type: Transform - - uid: 3474 - components: - - pos: 78.5,-7.5 - parent: 2 - type: Transform - - uid: 3569 - components: - - pos: 63.5,-11.5 - parent: 2 - type: Transform - - uid: 3593 - components: - - pos: 63.5,-9.5 - parent: 2 - type: Transform - - uid: 3611 - components: - - pos: 72.5,6.5 - parent: 2 - type: Transform - - uid: 3614 - components: - - pos: 72.5,5.5 - parent: 2 - type: Transform - - uid: 4117 - components: - - pos: 18.5,-23.5 - parent: 2 - type: Transform - - uid: 4302 - components: - - pos: 17.5,-23.5 - parent: 2 - type: Transform - - uid: 4303 - components: - - pos: 16.5,-23.5 - parent: 2 - type: Transform - - uid: 4693 - components: - - pos: 20.5,15.5 - parent: 2 - type: Transform - - uid: 4694 - components: - - pos: 23.5,15.5 - parent: 2 - type: Transform - - uid: 5003 - components: - - pos: 52.5,-7.5 - parent: 2 - type: Transform - - uid: 5054 - components: - - pos: 49.5,-6.5 - parent: 2 - type: Transform - - uid: 5135 - components: - - pos: 75.5,-0.5 - parent: 2 - type: Transform - - uid: 5136 - components: - - pos: 74.5,-0.5 - parent: 2 - type: Transform - - uid: 5203 - components: - - pos: 66.5,-3.5 - parent: 2 - type: Transform - - uid: 5224 - components: - - pos: 82.5,-6.5 - parent: 2 - type: Transform - - uid: 5225 - components: - - pos: 82.5,-4.5 - parent: 2 - type: Transform - - uid: 5226 - components: - - pos: 81.5,-4.5 - parent: 2 - type: Transform - - uid: 5306 - components: - - pos: 56.5,17.5 - parent: 2 - type: Transform - - uid: 5307 - components: - - pos: 55.5,17.5 - parent: 2 - type: Transform - - uid: 5308 - components: - - pos: 54.5,17.5 - parent: 2 - type: Transform - - uid: 5309 - components: - - pos: 55.5,20.5 - parent: 2 - type: Transform - - uid: 5310 - components: - - pos: 55.5,20.5 - parent: 2 - type: Transform - - uid: 5311 - components: - - pos: 56.5,20.5 - parent: 2 - type: Transform - - uid: 5317 - components: - - rot: 1.5707963267948966 rad - pos: 49.5,19.5 - parent: 2 - type: Transform - - uid: 5318 - components: - - rot: 1.5707963267948966 rad - pos: 49.5,17.5 - parent: 2 - type: Transform - - uid: 5368 - components: - - pos: 55.5,10.5 - parent: 2 - type: Transform - - uid: 5369 - components: - - pos: 50.5,8.5 - parent: 2 - type: Transform - - uid: 5370 - components: - - pos: 52.5,8.5 - parent: 2 - type: Transform - - uid: 5449 - components: - - pos: 71.5,40.5 - parent: 2 - type: Transform - - uid: 5450 - components: - - pos: 71.5,37.5 - parent: 2 - type: Transform - - uid: 5473 - components: - - pos: 67.5,37.5 - parent: 2 - type: Transform - - uid: 5475 - components: - - pos: 67.5,38.5 - parent: 2 - type: Transform - - uid: 5521 - components: - - pos: 86.5,1.5 - parent: 2 - type: Transform - - uid: 5528 - components: - - pos: 64.5,20.5 - parent: 2 - type: Transform - - uid: 5710 - components: - - pos: 77.5,-13.5 - parent: 2 - type: Transform - - uid: 5728 - components: - - pos: 69.5,-5.5 - parent: 2 - type: Transform - - uid: 6572 - components: - - pos: 44.5,-2.5 - parent: 2 - type: Transform - - uid: 6672 - components: - - pos: 44.5,-5.5 - parent: 2 - type: Transform - - uid: 6756 - components: - - pos: 31.5,-7.5 - parent: 2 - type: Transform - - uid: 6811 - components: - - pos: 58.5,-9.5 - parent: 2 - type: Transform - - uid: 7077 - components: - - pos: 30.5,2.5 - parent: 2 - type: Transform - - uid: 7331 - components: - - pos: 18.5,24.5 - parent: 2 - type: Transform - - uid: 7467 - components: - - pos: 17.5,24.5 - parent: 2 - type: Transform - - uid: 7526 - components: - - pos: 67.5,-4.5 - parent: 2 - type: Transform - - uid: 7773 - components: - - pos: 21.5,22.5 - parent: 2 - type: Transform - - uid: 7853 - components: - - pos: 53.5,-5.5 - parent: 2 - type: Transform - - uid: 7978 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-3.5 - parent: 2 - type: Transform - - uid: 8858 - components: - - pos: 107.5,-10.5 - parent: 2 - type: Transform - - uid: 8859 - components: - - pos: 107.5,-11.5 - parent: 2 - type: Transform - - uid: 9354 - components: - - pos: 25.5,6.5 - parent: 2 - type: Transform - - uid: 9356 - components: - - pos: 27.5,6.5 - parent: 2 - type: Transform - - uid: 9621 - components: - - pos: 46.5,2.5 - parent: 2 - type: Transform - - uid: 10072 - components: - - pos: 67.5,-3.5 - parent: 2 - type: Transform - - uid: 10077 - components: - - pos: 78.5,-6.5 - parent: 2 - type: Transform - - uid: 10268 - components: - - pos: 18.5,-3.5 - parent: 2 - type: Transform - - uid: 10269 - components: - - pos: 18.5,-2.5 - parent: 2 - type: Transform - - uid: 10270 - components: - - pos: 19.5,-2.5 - parent: 2 - type: Transform - - uid: 10277 - components: - - pos: 16.5,-5.5 - parent: 2 - type: Transform - - uid: 10663 - components: - - pos: 60.5,11.5 - parent: 2 - type: Transform - - uid: 10664 - components: - - pos: 63.5,9.5 - parent: 2 - type: Transform - - uid: 10665 - components: - - pos: 63.5,10.5 - parent: 2 - type: Transform - - uid: 10668 - components: - - pos: 63.5,8.5 - parent: 2 - type: Transform - - uid: 10803 - components: - - pos: 85.5,-15.5 - parent: 2 - type: Transform - - uid: 10828 - components: - - pos: 70.5,11.5 - parent: 2 - type: Transform - - uid: 11119 - components: - - pos: 54.5,-13.5 - parent: 2 - type: Transform - - uid: 11120 - components: - - pos: 54.5,-14.5 - parent: 2 - type: Transform - - uid: 11121 - components: - - pos: 54.5,-15.5 - parent: 2 - type: Transform - - uid: 11122 - components: - - pos: 57.5,-13.5 - parent: 2 - type: Transform - - uid: 11123 - components: - - pos: 57.5,-14.5 - parent: 2 - type: Transform - - uid: 11302 - components: - - pos: 60.5,-9.5 - parent: 2 - type: Transform - - uid: 11303 - components: - - pos: 63.5,-10.5 - parent: 2 - type: Transform - - uid: 11403 - components: - - pos: 65.5,-11.5 - parent: 2 - type: Transform - - uid: 11404 - components: - - pos: 65.5,-10.5 - parent: 2 - type: Transform - - uid: 11405 - components: - - pos: 65.5,-9.5 - parent: 2 - type: Transform - - uid: 11427 - components: - - rot: 1.5707963267948966 rad - pos: 76.5,4.5 - parent: 2 - type: Transform - - uid: 11428 - components: - - rot: 1.5707963267948966 rad - pos: 76.5,5.5 - parent: 2 - type: Transform - - uid: 11830 - components: - - pos: 59.5,3.5 - parent: 2 - type: Transform - - uid: 11832 - components: - - pos: 59.5,4.5 - parent: 2 - type: Transform - - uid: 11833 - components: - - pos: 67.5,3.5 - parent: 2 - type: Transform - - uid: 11834 - components: - - pos: 67.5,4.5 - parent: 2 - type: Transform - - uid: 11835 - components: - - pos: 64.5,4.5 - parent: 2 - type: Transform - - uid: 11836 - components: - - pos: 64.5,3.5 - parent: 2 - type: Transform - - uid: 11841 - components: - - pos: 59.5,-3.5 - parent: 2 - type: Transform - - uid: 11844 - components: - - pos: 57.5,-3.5 - parent: 2 - type: Transform - - uid: 11904 - components: - - pos: 78.5,7.5 - parent: 2 - type: Transform - - uid: 12582 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-19.5 - parent: 2 - type: Transform - - uid: 13120 - components: - - pos: 48.5,11.5 - parent: 2 - type: Transform -- proto: TableCarpet - entities: - - uid: 5501 - components: - - pos: 70.5,33.5 - parent: 2 - type: Transform - - uid: 5508 - components: - - pos: 70.5,27.5 - parent: 2 - type: Transform - - uid: 5509 - components: - - pos: 70.5,28.5 - parent: 2 - type: Transform - - uid: 5510 - components: - - pos: 70.5,29.5 - parent: 2 - type: Transform - - uid: 6618 - components: - - pos: 29.5,-5.5 - parent: 2 - type: Transform - - uid: 6935 - components: - - pos: 22.5,18.5 - parent: 2 - type: Transform -- proto: TableCounterWood - entities: - - uid: 9735 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-12.5 - parent: 2 - type: Transform - - uid: 9736 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-11.5 - parent: 2 - type: Transform - - uid: 9737 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-10.5 - parent: 2 - type: Transform - - uid: 9738 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-9.5 - parent: 2 - type: Transform -- proto: TableGlass - entities: - - uid: 12696 - components: - - rot: -1.5707963267948966 rad - pos: 104.5,-15.5 - parent: 2 - type: Transform - - uid: 12697 - components: - - rot: -1.5707963267948966 rad - pos: 103.5,-15.5 - parent: 2 - type: Transform - - uid: 12698 - components: - - rot: -1.5707963267948966 rad - pos: 102.5,-15.5 - parent: 2 - type: Transform - - uid: 12699 - components: - - rot: -1.5707963267948966 rad - pos: 102.5,-16.5 - parent: 2 - type: Transform -- proto: TablePlasmaGlass - entities: - - uid: 5708 - components: - - rot: 1.5707963267948966 rad - pos: 70.5,13.5 - parent: 2 - type: Transform - - uid: 5861 - components: - - rot: 1.5707963267948966 rad - pos: 71.5,13.5 - parent: 2 - type: Transform - - uid: 6476 - components: - - rot: 1.5707963267948966 rad - pos: 71.5,14.5 - parent: 2 - type: Transform - - uid: 12690 - components: - - pos: 107.5,-16.5 - parent: 2 - type: Transform - - uid: 12691 - components: - - pos: 106.5,-16.5 - parent: 2 - type: Transform - - uid: 12693 - components: - - pos: 106.5,-18.5 - parent: 2 - type: Transform - - uid: 12694 - components: - - pos: 107.5,-18.5 - parent: 2 - type: Transform - - uid: 13064 - components: - - pos: 7.5,-13.5 - parent: 2 - type: Transform - - uid: 13065 - components: - - pos: 6.5,-13.5 - parent: 2 - type: Transform -- proto: TableReinforced - entities: - - uid: 133 - components: - - pos: -2.5,-12.5 - parent: 2 - type: Transform - - uid: 134 - components: - - pos: -1.5,-12.5 - parent: 2 - type: Transform - - uid: 349 - components: - - pos: 41.5,22.5 - parent: 2 - type: Transform - - uid: 513 - components: - - pos: 40.5,-7.5 - parent: 2 - type: Transform - - uid: 564 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-2.5 - parent: 2 - type: Transform - - uid: 572 - components: - - pos: 37.5,-7.5 - parent: 2 - type: Transform - - uid: 935 - components: - - pos: 12.5,-33.5 - parent: 2 - type: Transform - - uid: 937 - components: - - pos: 12.5,-35.5 - parent: 2 - type: Transform - - uid: 1598 - components: - - pos: 37.5,-4.5 - parent: 2 - type: Transform - - uid: 1618 - components: - - pos: 36.5,-8.5 - parent: 2 - type: Transform - - uid: 1626 - components: - - pos: 35.5,-8.5 - parent: 2 - type: Transform - - uid: 1629 - components: - - pos: 37.5,-3.5 - parent: 2 - type: Transform - - uid: 1651 - components: - - pos: 37.5,-6.5 - parent: 2 - type: Transform - - uid: 1659 - components: - - pos: 37.5,-5.5 - parent: 2 - type: Transform - - uid: 2395 - components: - - pos: 17.5,40.5 - parent: 2 - type: Transform - - uid: 2420 - components: - - pos: 28.5,25.5 - parent: 2 - type: Transform - - uid: 2431 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,27.5 - parent: 2 - type: Transform - - uid: 2432 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,26.5 - parent: 2 - type: Transform - - uid: 2492 - components: - - pos: 30.5,29.5 - parent: 2 - type: Transform - - uid: 2991 - components: - - pos: 50.5,1.5 - parent: 2 - type: Transform - - uid: 2992 - components: - - pos: 51.5,1.5 - parent: 2 - type: Transform - - uid: 3512 - components: - - pos: 48.5,18.5 - parent: 2 - type: Transform - - uid: 4146 - components: - - pos: -1.5,-11.5 - parent: 2 - type: Transform - - uid: 4915 - components: - - pos: 19.5,41.5 - parent: 2 - type: Transform - - uid: 4916 - components: - - pos: 19.5,40.5 - parent: 2 - type: Transform - - uid: 4917 - components: - - pos: 17.5,41.5 - parent: 2 - type: Transform - - uid: 4972 - components: - - pos: 26.5,47.5 - parent: 2 - type: Transform - - uid: 4973 - components: - - pos: 28.5,47.5 - parent: 2 - type: Transform - - uid: 4974 - components: - - pos: 19.5,46.5 - parent: 2 - type: Transform - - uid: 4975 - components: - - pos: 21.5,46.5 - parent: 2 - type: Transform - - uid: 4980 - components: - - pos: 35.5,46.5 - parent: 2 - type: Transform - - uid: 4981 - components: - - pos: 33.5,46.5 - parent: 2 - type: Transform - - uid: 4983 - components: - - pos: 29.5,48.5 - parent: 2 - type: Transform - - uid: 4984 - components: - - pos: 30.5,48.5 - parent: 2 - type: Transform - - uid: 4985 - components: - - pos: 25.5,48.5 - parent: 2 - type: Transform - - uid: 4994 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,48.5 - parent: 2 - type: Transform - - uid: 4995 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,48.5 - parent: 2 - type: Transform - - uid: 5031 - components: - - pos: 50.5,-3.5 - parent: 2 - type: Transform - - uid: 5032 - components: - - pos: 54.5,-4.5 - parent: 2 - type: Transform - - uid: 5365 - components: - - pos: 47.5,12.5 - parent: 2 - type: Transform - - uid: 5813 - components: - - pos: 34.5,-8.5 - parent: 2 - type: Transform - - uid: 7545 - components: - - pos: 55.5,-10.5 - parent: 2 - type: Transform - - uid: 7611 - components: - - pos: 56.5,-10.5 - parent: 2 - type: Transform - - uid: 7612 - components: - - pos: 54.5,-10.5 - parent: 2 - type: Transform - - uid: 7739 - components: - - pos: -2.5,-2.5 - parent: 2 - type: Transform - - uid: 7937 - components: - - pos: 40.5,22.5 - parent: 2 - type: Transform - - uid: 7939 - components: - - pos: 41.5,24.5 - parent: 2 - type: Transform - - uid: 10310 - components: - - pos: 8.5,-6.5 - parent: 2 - type: Transform - - uid: 10474 - components: - - pos: 17.5,39.5 - parent: 2 - type: Transform - - uid: 11800 - components: - - rot: 3.141592653589793 rad - pos: 61.5,-0.5 - parent: 2 - type: Transform - - uid: 11839 - components: - - pos: 12.5,-34.5 - parent: 2 - type: Transform - - uid: 12423 - components: - - pos: 49.5,1.5 - parent: 2 - type: Transform -- proto: TableWood - entities: - - uid: 302 - components: - - pos: 13.5,4.5 - parent: 2 - type: Transform - - uid: 303 - components: - - pos: 13.5,3.5 - parent: 2 - type: Transform - - uid: 304 - components: - - pos: 11.5,4.5 - parent: 2 - type: Transform - - uid: 305 - components: - - pos: 10.5,4.5 - parent: 2 - type: Transform - - uid: 306 - components: - - pos: 8.5,4.5 - parent: 2 - type: Transform - - uid: 307 - components: - - pos: 8.5,3.5 - parent: 2 - type: Transform - - uid: 1177 - components: - - pos: 40.5,-11.5 - parent: 2 - type: Transform - - uid: 2405 - components: - - pos: 44.5,23.5 - parent: 2 - type: Transform - - uid: 2406 - components: - - pos: 45.5,23.5 - parent: 2 - type: Transform - - uid: 2407 - components: - - pos: 45.5,24.5 - parent: 2 - type: Transform - - uid: 2478 - components: - - pos: 43.5,19.5 - parent: 2 - type: Transform - - uid: 2713 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,33.5 - parent: 2 - type: Transform - - uid: 2714 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,32.5 - parent: 2 - type: Transform - - uid: 2715 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,30.5 - parent: 2 - type: Transform - - uid: 2716 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,29.5 - parent: 2 - type: Transform - - uid: 2719 - components: - - pos: 18.5,31.5 - parent: 2 - type: Transform - - uid: 2776 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,40.5 - parent: 2 - type: Transform - - uid: 2777 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,40.5 - parent: 2 - type: Transform - - uid: 2778 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,39.5 - parent: 2 - type: Transform - - uid: 2779 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,39.5 - parent: 2 - type: Transform - - uid: 5407 - components: - - pos: 34.5,41.5 - parent: 2 - type: Transform - - uid: 5408 - components: - - pos: 33.5,41.5 - parent: 2 - type: Transform - - uid: 5409 - components: - - pos: 32.5,41.5 - parent: 2 - type: Transform - - uid: 5410 - components: - - pos: 30.5,41.5 - parent: 2 - type: Transform - - uid: 5412 - components: - - pos: 31.5,39.5 - parent: 2 - type: Transform - - uid: 5413 - components: - - pos: 37.5,43.5 - parent: 2 - type: Transform - - uid: 7547 - components: - - pos: 30.5,6.5 - parent: 2 - type: Transform - - uid: 8646 - components: - - pos: 86.5,10.5 - parent: 2 - type: Transform - - uid: 8647 - components: - - pos: 84.5,10.5 - parent: 2 - type: Transform - - uid: 8648 - components: - - pos: 86.5,12.5 - parent: 2 - type: Transform - - uid: 8649 - components: - - pos: 83.5,8.5 - parent: 2 - type: Transform - - uid: 8650 - components: - - pos: 83.5,7.5 - parent: 2 - type: Transform - - uid: 9004 - components: - - pos: 18.5,29.5 - parent: 2 - type: Transform - - uid: 10635 - components: - - pos: 30.5,7.5 - parent: 2 - type: Transform - - uid: 11477 - components: - - pos: 43.5,20.5 - parent: 2 - type: Transform -- proto: TargetClown - entities: - - uid: 9607 - components: - - pos: 27.5,8.5 - parent: 2 - type: Transform -- proto: TelecomServer - entities: - - uid: 533 - components: - - pos: 16.5,-16.5 - parent: 2 - type: Transform - - 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: [] - type: ContainerContainer - - uid: 5183 - components: - - pos: 13.5,-16.5 - parent: 2 - type: Transform - - 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: [] - type: ContainerContainer - - uid: 10443 - components: - - pos: 14.5,-16.5 - parent: 2 - type: Transform - - 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: [] - type: ContainerContainer - - uid: 12111 - components: - - pos: 15.5,-16.5 - parent: 2 - type: Transform - - 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: [] - type: ContainerContainer - - uid: 12112 - components: - - pos: 13.5,-18.5 - parent: 2 - type: Transform - - 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: [] - type: ContainerContainer - - uid: 12232 - components: - - pos: 14.5,-18.5 - parent: 2 - type: Transform - - 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: [] - type: ContainerContainer - - uid: 12233 - components: - - pos: 15.5,-18.5 - parent: 2 - type: Transform - - 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: [] - type: ContainerContainer - - uid: 12395 - components: - - pos: 16.5,-18.5 - parent: 2 - type: Transform - - 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: [] - type: ContainerContainer -- proto: TintedWindow - entities: - - uid: 1165 - components: - - pos: 24.5,-12.5 - parent: 2 - type: Transform - - uid: 1196 - components: - - pos: 24.5,-9.5 - parent: 2 - type: Transform - - uid: 6813 - components: - - pos: 63.5,-8.5 - parent: 2 - type: Transform - - uid: 7580 - components: - - pos: 62.5,-8.5 - parent: 2 - type: Transform - - uid: 11195 - components: - - pos: 60.5,-8.5 - parent: 2 - type: Transform -- proto: ToiletEmpty - entities: - - uid: 460 - components: - - pos: 8.5,13.5 - parent: 2 - type: Transform - - uid: 461 - components: - - rot: 3.141592653589793 rad - pos: 8.5,12.5 - parent: 2 - type: Transform - - uid: 2291 - components: - - pos: 41.5,37.5 - parent: 2 - type: Transform - - uid: 5701 - components: - - pos: 79.5,-12.5 - parent: 2 - type: Transform - - uid: 5702 - components: - - rot: 3.141592653589793 rad - pos: 79.5,-13.5 - parent: 2 - type: Transform - - uid: 9019 - components: - - pos: 102.5,-12.5 - parent: 2 - type: Transform - - uid: 11901 - components: - - rot: -1.5707963267948966 rad - pos: 78.5,8.5 - parent: 2 - type: Transform -- proto: ToolboxElectricalFilled - entities: - - uid: 5378 - components: - - pos: 52.6158,11.657994 - parent: 2 - type: Transform - - uid: 5626 - components: - - pos: 18.84633,-23.378391 - parent: 2 - type: Transform - - uid: 12356 - components: - - pos: 36.482082,-14.3137665 - parent: 2 - type: Transform -- proto: ToolboxEmergencyFilled - entities: - - uid: 4997 - components: - - rot: 3.573787398636341E-05 rad - pos: 35.50106,46.735016 - parent: 2 - type: Transform - - uid: 11411 - components: - - pos: 31.521385,-17.29768 - parent: 2 - type: Transform -- proto: ToolboxGoldFilled - entities: - - uid: 12095 - components: - - pos: 19.490185,40.6353 - parent: 2 - type: Transform -- proto: ToolboxMechanicalFilled - entities: - - uid: 4998 - components: - - pos: 35.491802,46.459015 - parent: 2 - type: Transform - - uid: 7357 - components: - - pos: 18.414553,24.540695 - parent: 2 - type: Transform - - uid: 11410 - components: - - pos: 31.521385,-17.500805 - parent: 2 - type: Transform - - uid: 12357 - components: - - pos: 36.482082,-14.5012665 - parent: 2 - type: Transform -- proto: ToyAi - entities: - - uid: 12848 - components: - - pos: 56.486958,35.880013 - parent: 2 - type: Transform -- proto: ToyRubberDuck - entities: - - uid: 2321 - components: - - pos: 37.63663,34.272766 - parent: 2 - type: Transform - - uid: 6933 - components: - - pos: 12.5,12.5 - parent: 2 - type: Transform -- proto: ToySpawner - entities: - - uid: 8652 - components: - - pos: 84.5,12.5 - parent: 2 - type: Transform -- proto: TrashBag - entities: - - uid: 10811 - components: - - pos: 89.33498,-20.63679 - parent: 2 - type: Transform -- proto: TrashBananaPeel - entities: - - uid: 5880 - components: - - pos: 0.13960361,-25.931139 - parent: 2 - type: Transform - - uid: 9603 - components: - - pos: 26.493341,6.2912045 - parent: 2 - type: Transform -- proto: TraversalDistorterMachineCircuitboard - entities: - - uid: 12362 - components: - - pos: 36.435207,-17.360641 - parent: 2 - type: Transform -- proto: TrumpetInstrument - entities: - - uid: 5030 - components: - - pos: 84.55714,10.563628 - parent: 2 - type: Transform -- proto: TwoWayLever - entities: - - uid: 944 - components: - - pos: 8.5,16.5 - parent: 2 - type: Transform - - linkedPorts: - 6843: - - Left: Forward - - Right: Reverse - - Middle: Off - 7667: - - Left: Forward - - Right: Reverse - - Middle: Off - 6844: - - Left: Forward - - Right: Reverse - - Middle: Off - 7891: - - Left: Forward - - Right: Reverse - - Middle: Off - 7841: - - Left: Forward - - Right: Reverse - - Middle: Off - 7875: - - Left: Forward - - Right: Reverse - - Middle: Off - 7949: - - Left: Forward - - Right: Reverse - - Middle: Off - 7586: - - Left: Forward - - Right: Reverse - - Middle: Off - 6825: - - Left: Forward - - Right: Reverse - - Middle: Off - 7672: - - Left: Forward - - Right: Reverse - - Middle: Off - 7585: - - Left: Forward - - Right: Reverse - - Middle: Off - 2028: - - Left: Forward - - Right: Reverse - - Middle: Off - 6823: - - Left: Forward - - Right: Reverse - - Middle: Off - 7888: - - Left: Forward - - Right: Reverse - - Middle: Off - 6820: - - Left: Forward - - Right: Reverse - - Middle: Off - 7849: - - Left: Forward - - Right: Reverse - - Middle: Off - 2030: - - Left: Forward - - Right: Reverse - - Middle: Off - 7671: - - Left: Forward - - Right: Reverse - - Middle: Off - 6846: - - Left: Forward - - Right: Reverse - - Middle: Off - 7880: - - Left: Forward - - Right: Reverse - - Middle: Off - 7878: - - Left: Forward - - Right: Reverse - - Middle: Off - 7879: - - Left: Forward - - Right: Reverse - - Middle: Off - 7876: - - Left: Forward - - Right: Reverse - - Middle: Off - 5285: - - Left: Forward - - Right: Reverse - - Middle: Off - 1319: - - Left: Forward - - Right: Reverse - - Middle: Off - 6775: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource - - uid: 2154 - components: - - pos: 8.479812,22.588839 - parent: 2 - type: Transform - - linkedPorts: - 2039: - - Left: Forward - - Right: Reverse - - Middle: Off - 2040: - - Left: Forward - - Right: Reverse - - Middle: Off - 2067: - - Left: Forward - - Right: Reverse - - Middle: Off - 2051: - - Left: Forward - - Right: Reverse - - Middle: Off - 2066: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource - - uid: 5856 - components: - - pos: 2.5,-30.5 - parent: 2 - type: Transform - - linkedPorts: - 5842: - - Left: Forward - - Right: Reverse - - Middle: Off - 5843: - - Left: Forward - - Right: Reverse - - Middle: Off - 5844: - - Left: Forward - - Right: Reverse - - Middle: Off - 5845: - - Left: Forward - - Right: Reverse - - Middle: Off - 5846: - - Left: Forward - - Right: Reverse - - Middle: Off - 5847: - - Left: Forward - - Right: Reverse - - Middle: Off - 5850: - - Left: Forward - - Right: Reverse - - Middle: Off - 5851: - - Left: Forward - - Right: Reverse - - Middle: Off - 5852: - - Left: Forward - - Right: Reverse - - Middle: Off - 5853: - - Left: Forward - - Right: Reverse - - Middle: Off - 5854: - - Left: Forward - - Right: Reverse - - Middle: Off - 5855: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource - - uid: 5857 - components: - - pos: 2.5,-31.5 - parent: 2 - type: Transform - - linkedPorts: - 5875: - - Left: Open - - Right: Open - - Middle: Close - type: DeviceLinkSource - - uid: 7808 - components: - - pos: 8.5,28.5 - parent: 2 - type: Transform - - linkedPorts: - 2038: - - Left: Forward - - Right: Reverse - - Middle: Off - 2037: - - Left: Forward - - Right: Reverse - - Middle: Off - 2041: - - Left: Forward - - Right: Reverse - - Middle: Off - 2042: - - Left: Forward - - Right: Reverse - - Middle: Off - 2064: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource - - uid: 8665 - components: - - pos: 63.5,25.5 - parent: 2 - type: Transform - - linkedPorts: - 5351: - - Left: Open - - Right: Open - - Middle: Close - 5361: - - Left: Open - - Right: Open - - Middle: Close - type: DeviceLinkSource - - uid: 10322 - components: - - pos: 44.5,11.5 - parent: 2 - type: Transform - - linkedPorts: - 5268: - - Left: Open - - Right: Open - - Middle: Close - type: DeviceLinkSource - - uid: 13115 - components: - - pos: 44.5,-46.5 - parent: 2 - type: Transform - - linkedPorts: - 12890: - - Left: Open - - Right: Open - - Middle: Close - 12891: - - Left: Open - - Right: Open - - Middle: Close - type: DeviceLinkSource -- proto: UnfinishedMachineFrame - entities: - - uid: 5664 - components: - - pos: 20.5,-43.5 - parent: 2 - type: Transform - - uid: 5665 - components: - - pos: 22.5,-43.5 - parent: 2 - type: Transform -- proto: UniformPrinter - entities: - - uid: 10283 - components: - - pos: 20.5,-4.5 - parent: 2 - type: Transform -- proto: Vaccinator - entities: - - uid: 12157 - components: - - pos: 81.5,-7.5 - parent: 2 - type: Transform -- proto: VehicleKeyJanicart - entities: - - uid: 4300 - components: - - pos: 6.513515,-4.4061713 - parent: 2 - type: Transform -- proto: VehicleKeySecway - entities: - - uid: 8447 - components: - - pos: 36.51057,20.60821 - parent: 2 - type: Transform -- proto: VendingBarDrobe - entities: - - uid: 4407 - components: - - flags: SessionSpecific - type: MetaData - - pos: 40.5,-9.5 - parent: 2 - type: Transform -- proto: VendingMachineAtmosDrobe - entities: - - uid: 4100 - components: - - flags: SessionSpecific - type: MetaData - - pos: 29.5,-30.5 - parent: 2 - type: Transform -- proto: VendingMachineBooze - entities: - - uid: 540 - components: - - flags: SessionSpecific - type: MetaData - - pos: 38.5,-8.5 - parent: 2 - type: Transform - - uid: 2900 - components: - - flags: SessionSpecific - type: MetaData - - pos: 66.5,-13.5 - parent: 2 - type: Transform -- proto: VendingMachineCargoDrobe - entities: - - uid: 8176 - components: - - flags: SessionSpecific - type: MetaData - - pos: 9.5,32.5 - parent: 2 - type: Transform -- proto: VendingMachineCart - entities: - - uid: 10267 - components: - - flags: SessionSpecific - type: MetaData - - pos: 20.5,-5.5 - parent: 2 - type: Transform -- proto: VendingMachineChapel - entities: - - uid: 12201 - components: - - flags: SessionSpecific - type: MetaData - - pos: 31.5,9.5 - parent: 2 - type: Transform -- proto: VendingMachineChefDrobe - entities: - - uid: 4249 - components: - - flags: SessionSpecific - type: MetaData - - pos: 29.5,-9.5 - parent: 2 - type: Transform -- proto: VendingMachineChefvend - entities: - - uid: 4248 - components: - - flags: SessionSpecific - type: MetaData - - pos: 34.5,-12.5 - parent: 2 - type: Transform -- proto: VendingMachineChemDrobe - entities: - - uid: 5058 - components: - - flags: SessionSpecific - type: MetaData - - pos: 49.5,-8.5 - parent: 2 - type: Transform -- proto: VendingMachineChemicals - entities: - - uid: 5061 - components: - - flags: SessionSpecific - type: MetaData - - pos: 51.5,-4.5 - parent: 2 - type: Transform -- proto: VendingMachineCigs - entities: - - uid: 2771 - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: 24.5,42.5 - parent: 2 - type: Transform - - uid: 5349 - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: 63.5,16.5 - parent: 2 - type: Transform - - uid: 5426 - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: 34.5,43.5 - parent: 2 - type: Transform - - uid: 6615 - components: - - flags: SessionSpecific - type: MetaData - - pos: 32.5,-2.5 - parent: 2 - type: Transform - - uid: 11033 - components: - - flags: SessionSpecific - type: MetaData - - pos: 19.5,35.5 - parent: 2 - type: Transform -- proto: VendingMachineClothing - entities: - - uid: 127 - components: - - flags: SessionSpecific - type: MetaData - - pos: 20.5,7.5 - parent: 2 - type: Transform -- proto: VendingMachineCoffee - entities: - - uid: 586 - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: 11.5,-3.5 - parent: 2 - type: Transform - - uid: 613 - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: 21.5,42.5 - parent: 2 - type: Transform - - uid: 5350 - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: 62.5,16.5 - parent: 2 - type: Transform - - uid: 5468 - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: 67.5,41.5 - parent: 2 - type: Transform - - uid: 8864 - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: 107.5,-12.5 - parent: 2 - type: Transform - - uid: 11224 - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: 45.5,20.5 - parent: 2 - type: Transform - - uid: 11432 - components: - - flags: SessionSpecific - type: MetaData - - pos: 78.5,3.5 - parent: 2 - type: Transform -- proto: VendingMachineCondiments - entities: - - uid: 6757 - components: - - flags: SessionSpecific - type: MetaData - - pos: 31.5,-7.5 - parent: 2 - type: Transform -- proto: VendingMachineDetDrobe - entities: - - uid: 7711 - components: - - flags: SessionSpecific - type: MetaData - - pos: 41.5,17.5 - parent: 2 - type: Transform -- proto: VendingMachineDinnerware - entities: - - uid: 1550 - components: - - flags: SessionSpecific - type: MetaData - - pos: 33.5,-12.5 - parent: 2 - type: Transform -- proto: VendingMachineEngiDrobe - entities: - - uid: 4093 - components: - - flags: SessionSpecific - type: MetaData - - pos: 23.5,-30.5 - parent: 2 - type: Transform -- proto: VendingMachineEngivend - entities: - - uid: 799 - components: - - flags: SessionSpecific - type: MetaData - - pos: 23.5,-27.5 - parent: 2 - type: Transform -- proto: VendingMachineGames - entities: - - uid: 570 - components: - - flags: SessionSpecific - type: MetaData - - pos: 8.5,5.5 - parent: 2 - type: Transform -- proto: VendingMachineGeneDrobe - entities: - - uid: 11912 - components: - - flags: SessionSpecific - type: MetaData - - pos: 74.5,4.5 - parent: 2 - type: Transform -- proto: VendingMachineHydrobe - entities: - - uid: 6664 - components: - - flags: SessionSpecific - type: MetaData - - pos: 44.5,-9.5 - parent: 2 - type: Transform -- proto: VendingMachineJaniDrobe - entities: - - uid: 11963 - components: - - flags: SessionSpecific - type: MetaData - - pos: 3.5,-6.5 - parent: 2 - type: Transform -- proto: VendingMachineLawDrobe - entities: - - uid: 140 - components: - - flags: SessionSpecific - type: MetaData - - pos: -0.5,-7.5 - parent: 2 - type: Transform -- proto: VendingMachineMedical - entities: - - uid: 5048 - components: - - flags: SessionSpecific - type: MetaData - - pos: 53.5,4.5 - parent: 2 - type: Transform -- proto: VendingMachineMediDrobe - entities: - - uid: 11913 - components: - - flags: SessionSpecific - type: MetaData - - pos: 70.5,4.5 - parent: 2 - type: Transform -- proto: VendingMachineNutri - entities: - - uid: 6678 - components: - - flags: SessionSpecific - type: MetaData - - pos: 44.5,-4.5 - parent: 2 - type: Transform -- proto: VendingMachineRoboDrobe - entities: - - uid: 5376 - components: - - flags: SessionSpecific - type: MetaData - - pos: 53.5,11.5 - parent: 2 - type: Transform -- proto: VendingMachineRobotics - entities: - - uid: 10078 - components: - - flags: SessionSpecific - type: MetaData - - pos: 50.5,11.5 - parent: 2 - type: Transform -- proto: VendingMachineSalvage - entities: - - uid: 11811 - components: - - flags: SessionSpecific - name: Salvage Equipment - type: MetaData - - pos: 7.5,19.5 - parent: 2 - type: Transform -- proto: VendingMachineSciDrobe - entities: - - uid: 11953 - components: - - flags: SessionSpecific - type: MetaData - - pos: 58.5,25.5 - parent: 2 - type: Transform -- proto: VendingMachineSec - entities: - - uid: 2467 - components: - - flags: SessionSpecific - type: MetaData - - pos: 36.5,17.5 - parent: 2 - type: Transform -- proto: VendingMachineSecDrobe - entities: - - uid: 2464 - components: - - flags: SessionSpecific - type: MetaData - - pos: 37.5,19.5 - parent: 2 - type: Transform -- proto: VendingMachineSeeds - entities: - - uid: 6676 - components: - - flags: SessionSpecific - type: MetaData - - pos: 43.5,-4.5 - parent: 2 - type: Transform -- proto: VendingMachineSeedsUnlocked - entities: - - uid: 6866 - components: - - flags: SessionSpecific - type: MetaData - - pos: 39.5,36.5 - parent: 2 - type: Transform -- proto: VendingMachineSmartFridge - entities: - - uid: 228 - components: - - flags: SessionSpecific - type: MetaData - - pos: 40.5,-6.5 - parent: 2 - type: Transform - - uid: 2963 - components: - - flags: SessionSpecific - type: MetaData - - pos: 54.5,-5.5 - parent: 2 - type: Transform - - uid: 11837 - components: - - flags: SessionSpecific - type: MetaData - - pos: 62.5,-3.5 - parent: 2 - type: Transform - - uid: 13110 - components: - - flags: SessionSpecific - type: MetaData - - pos: 67.5,-8.5 - parent: 2 - type: Transform -- proto: VendingMachineSovietSoda - entities: - - uid: 5467 - components: - - flags: SessionSpecific - type: MetaData - - pos: 67.5,35.5 - parent: 2 - type: Transform -- proto: VendingMachineSustenance - entities: - - uid: 12080 - components: - - flags: SessionSpecific - type: MetaData - - pos: 41.5,34.5 - parent: 2 - type: Transform -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 7285 - components: - - flags: SessionSpecific - type: MetaData - - pos: 33.5,-25.5 - parent: 2 - type: Transform - - uid: 10305 - components: - - flags: SessionSpecific - type: MetaData - - pos: 8.5,-7.5 - parent: 2 - type: Transform -- proto: VendingMachineTheater - entities: - - uid: 1144 - components: - - flags: SessionSpecific - type: MetaData - - pos: 25.5,8.5 - parent: 2 - type: Transform -- proto: VendingMachineVendomat - entities: - - uid: 12214 - components: - - flags: SessionSpecific - type: MetaData - - pos: 29.5,-14.5 - parent: 2 - type: Transform -- proto: VendingMachineViroDrobe - entities: - - uid: 11964 - components: - - flags: SessionSpecific - type: MetaData - - pos: 79.5,-3.5 - parent: 2 - type: Transform -- proto: VendingMachineWinter - entities: - - uid: 10706 - components: - - flags: SessionSpecific - type: MetaData - - pos: 20.5,8.5 - parent: 2 - type: Transform -- proto: VendingMachineYouTool - entities: - - uid: 798 - components: - - flags: SessionSpecific - type: MetaData - - pos: 23.5,-26.5 - parent: 2 - type: Transform - - uid: 1759 - components: - - flags: SessionSpecific - type: MetaData - - pos: 32.5,-14.5 - parent: 2 - type: Transform -- proto: ViolinInstrument - entities: - - uid: 9357 - components: - - pos: 25.493341,6.5724545 - parent: 2 - type: Transform -- proto: WallmountSubstationElectronics - entities: - - uid: 12384 - components: - - pos: 41.640457,-15.5325165 - parent: 2 - type: Transform -- proto: WallmountTelescreen - entities: - - uid: 10669 - components: - - rot: -1.5707963267948966 rad - pos: 63.5,9.5 - parent: 2 - type: Transform - - uid: 10831 - components: - - pos: 31.5,43.5 - parent: 2 - type: Transform -- proto: WallReinforced - entities: - - uid: 4 - components: - - pos: 5.5,14.5 - parent: 2 - type: Transform - - uid: 22 - components: - - pos: -7.5,-3.5 - parent: 2 - type: Transform - - uid: 49 - components: - - pos: -10.5,1.5 - parent: 2 - type: Transform - - uid: 67 - components: - - pos: 14.5,-13.5 - parent: 2 - type: Transform - - uid: 72 - components: - - pos: 10.5,37.5 - parent: 2 - type: Transform - - uid: 75 - components: - - pos: 10.5,36.5 - parent: 2 - type: Transform - - uid: 97 - components: - - pos: 46.5,-34.5 - parent: 2 - type: Transform - - uid: 156 - components: - - pos: 7.5,-2.5 - parent: 2 - type: Transform - - uid: 157 - components: - - pos: 7.5,-3.5 - parent: 2 - type: Transform - - uid: 158 - components: - - pos: 7.5,-4.5 - parent: 2 - type: Transform - - uid: 159 - components: - - pos: 7.5,-5.5 - parent: 2 - type: Transform - - uid: 160 - components: - - pos: 7.5,-6.5 - parent: 2 - type: Transform - - uid: 161 - components: - - pos: 7.5,-7.5 - parent: 2 - type: Transform - - uid: 179 - components: - - pos: 7.5,-8.5 - parent: 2 - type: Transform - - uid: 180 - components: - - pos: 7.5,-9.5 - parent: 2 - type: Transform - - uid: 181 - components: - - pos: 7.5,-10.5 - parent: 2 - type: Transform - - uid: 206 - components: - - pos: 10.5,-3.5 - parent: 2 - type: Transform - - uid: 207 - components: - - pos: 10.5,-4.5 - parent: 2 - type: Transform - - uid: 208 - components: - - pos: 11.5,-4.5 - parent: 2 - type: Transform - - uid: 209 - components: - - pos: 12.5,-4.5 - parent: 2 - type: Transform - - uid: 210 - components: - - pos: 13.5,-4.5 - parent: 2 - type: Transform - - uid: 211 - components: - - pos: 13.5,-5.5 - parent: 2 - type: Transform - - uid: 212 - components: - - pos: 13.5,-6.5 - parent: 2 - type: Transform - - uid: 213 - components: - - pos: 13.5,-7.5 - parent: 2 - type: Transform - - uid: 214 - components: - - pos: 13.5,-8.5 - parent: 2 - type: Transform - - uid: 215 - components: - - pos: 13.5,-9.5 - parent: 2 - type: Transform - - uid: 216 - components: - - pos: 12.5,-9.5 - parent: 2 - type: Transform - - uid: 217 - components: - - pos: 11.5,-9.5 - parent: 2 - type: Transform - - uid: 218 - components: - - pos: 10.5,-9.5 - parent: 2 - type: Transform - - uid: 219 - components: - - pos: 10.5,-10.5 - parent: 2 - type: Transform - - uid: 220 - components: - - pos: 8.5,-10.5 - parent: 2 - type: Transform - - uid: 246 - components: - - pos: -7.5,1.5 - parent: 2 - type: Transform - - uid: 250 - components: - - pos: -6.5,14.5 - parent: 2 - type: Transform - - uid: 254 - components: - - pos: -8.5,1.5 - parent: 2 - type: Transform - - uid: 324 - components: - - pos: 6.5,14.5 - parent: 2 - type: Transform - - uid: 343 - components: - - pos: 0.5,14.5 - parent: 2 - type: Transform - - uid: 344 - components: - - pos: -12.5,1.5 - parent: 2 - type: Transform - - uid: 398 - components: - - pos: 4.5,20.5 - parent: 2 - type: Transform - - uid: 417 - components: - - pos: 49.5,-30.5 - parent: 2 - type: Transform - - uid: 430 - components: - - pos: 6.5,21.5 - parent: 2 - type: Transform - - uid: 431 - components: - - pos: 6.5,20.5 - parent: 2 - type: Transform - - uid: 435 - components: - - pos: 65.5,24.5 - parent: 2 - type: Transform - - uid: 462 - components: - - pos: -14.5,-11.5 - parent: 2 - type: Transform - - uid: 470 - components: - - pos: 5.5,-16.5 - parent: 2 - type: Transform - - uid: 485 - components: - - pos: 15.5,-6.5 - parent: 2 - type: Transform - - uid: 490 - components: - - pos: 16.5,-6.5 - parent: 2 - type: Transform - - uid: 491 - components: - - pos: 17.5,-6.5 - parent: 2 - type: Transform - - uid: 492 - components: - - pos: 18.5,-6.5 - parent: 2 - type: Transform - - uid: 493 - components: - - pos: 19.5,-6.5 - parent: 2 - type: Transform - - uid: 494 - components: - - pos: 20.5,-6.5 - parent: 2 - type: Transform - - uid: 495 - components: - - pos: 21.5,-6.5 - parent: 2 - type: Transform - - uid: 496 - components: - - pos: 21.5,-5.5 - parent: 2 - type: Transform - - uid: 497 - components: - - pos: 21.5,-4.5 - parent: 2 - type: Transform - - uid: 498 - components: - - pos: 21.5,-3.5 - parent: 2 - type: Transform - - uid: 499 - components: - - pos: 21.5,-2.5 - parent: 2 - type: Transform - - uid: 500 - components: - - pos: 21.5,-1.5 - parent: 2 - type: Transform - - uid: 501 - components: - - pos: 20.5,-1.5 - parent: 2 - type: Transform - - uid: 502 - components: - - pos: 19.5,-1.5 - parent: 2 - type: Transform - - uid: 503 - components: - - pos: 18.5,-1.5 - parent: 2 - type: Transform - - uid: 504 - components: - - pos: 17.5,-1.5 - parent: 2 - type: Transform - - uid: 505 - components: - - pos: 17.5,-2.5 - parent: 2 - type: Transform - - uid: 506 - components: - - pos: 13.5,-2.5 - parent: 2 - type: Transform - - uid: 509 - components: - - pos: -7.5,-11.5 - parent: 2 - type: Transform - - uid: 534 - components: - - pos: 18.5,-13.5 - parent: 2 - type: Transform - - uid: 536 - components: - - pos: 20.5,-13.5 - parent: 2 - type: Transform - - uid: 537 - components: - - pos: 21.5,-13.5 - parent: 2 - type: Transform - - uid: 538 - components: - - pos: 22.5,-13.5 - parent: 2 - type: Transform - - uid: 539 - components: - - pos: 23.5,-13.5 - parent: 2 - type: Transform - - uid: 541 - components: - - pos: 17.5,-13.5 - parent: 2 - type: Transform - - uid: 553 - components: - - pos: -12.5,14.5 - parent: 2 - type: Transform - - uid: 573 - components: - - pos: 16.5,-22.5 - parent: 2 - type: Transform - - uid: 580 - components: - - pos: 17.5,-22.5 - parent: 2 - type: Transform - - uid: 581 - components: - - pos: 18.5,-22.5 - parent: 2 - type: Transform - - uid: 612 - components: - - pos: -15.5,-15.5 - parent: 2 - type: Transform - - uid: 615 - components: - - pos: 17.5,-14.5 - parent: 2 - type: Transform - - uid: 616 - components: - - pos: 17.5,-15.5 - parent: 2 - type: Transform - - uid: 618 - components: - - pos: 14.5,-14.5 - parent: 2 - type: Transform - - uid: 619 - components: - - pos: 15.5,-14.5 - parent: 2 - type: Transform - - uid: 620 - components: - - pos: 13.5,-14.5 - parent: 2 - type: Transform - - uid: 621 - components: - - pos: 12.5,-14.5 - parent: 2 - type: Transform - - uid: 623 - components: - - pos: 11.5,-15.5 - parent: 2 - type: Transform - - uid: 624 - components: - - pos: 11.5,-16.5 - parent: 2 - type: Transform - - uid: 625 - components: - - pos: 11.5,-17.5 - parent: 2 - type: Transform - - uid: 626 - components: - - pos: 11.5,-18.5 - parent: 2 - type: Transform - - uid: 627 - components: - - pos: 11.5,-19.5 - parent: 2 - type: Transform - - uid: 629 - components: - - pos: 12.5,-15.5 - parent: 2 - type: Transform - - uid: 630 - components: - - pos: 12.5,-16.5 - parent: 2 - type: Transform - - uid: 631 - components: - - pos: 12.5,-17.5 - parent: 2 - type: Transform - - uid: 632 - components: - - pos: 12.5,-18.5 - parent: 2 - type: Transform - - uid: 633 - components: - - pos: 12.5,-19.5 - parent: 2 - type: Transform - - uid: 634 - components: - - pos: 12.5,-20.5 - parent: 2 - type: Transform - - uid: 635 - components: - - pos: 15.5,-15.5 - parent: 2 - type: Transform - - uid: 636 - components: - - pos: 14.5,-15.5 - parent: 2 - type: Transform - - uid: 637 - components: - - pos: 13.5,-15.5 - parent: 2 - type: Transform - - uid: 638 - components: - - pos: 13.5,-20.5 - parent: 2 - type: Transform - - uid: 639 - components: - - pos: 14.5,-20.5 - parent: 2 - type: Transform - - uid: 640 - components: - - pos: 15.5,-20.5 - parent: 2 - type: Transform - - uid: 641 - components: - - pos: 16.5,-20.5 - parent: 2 - type: Transform - - uid: 642 - components: - - pos: 19.5,-20.5 - parent: 2 - type: Transform - - uid: 643 - components: - - pos: 20.5,-20.5 - parent: 2 - type: Transform - - uid: 644 - components: - - pos: 21.5,-20.5 - parent: 2 - type: Transform - - uid: 645 - components: - - pos: 22.5,-20.5 - parent: 2 - type: Transform - - uid: 646 - components: - - pos: 23.5,-20.5 - parent: 2 - type: Transform - - uid: 647 - components: - - pos: 24.5,-20.5 - parent: 2 - type: Transform - - uid: 648 - components: - - pos: 13.5,-19.5 - parent: 2 - type: Transform - - uid: 649 - components: - - pos: 14.5,-19.5 - parent: 2 - type: Transform - - uid: 650 - components: - - pos: 15.5,-19.5 - parent: 2 - type: Transform - - uid: 651 - components: - - pos: 16.5,-19.5 - parent: 2 - type: Transform - - uid: 652 - components: - - pos: 17.5,-19.5 - parent: 2 - type: Transform - - uid: 653 - components: - - pos: 18.5,-19.5 - parent: 2 - type: Transform - - uid: 654 - components: - - pos: 19.5,-19.5 - parent: 2 - type: Transform - - uid: 655 - components: - - pos: 24.5,-19.5 - parent: 2 - type: Transform - - uid: 656 - components: - - pos: 24.5,-18.5 - parent: 2 - type: Transform - - uid: 657 - components: - - pos: 24.5,-16.5 - parent: 2 - type: Transform - - uid: 658 - components: - - pos: 24.5,-15.5 - parent: 2 - type: Transform - - uid: 659 - components: - - pos: 24.5,-14.5 - parent: 2 - type: Transform - - uid: 680 - components: - - pos: -17.5,-15.5 - parent: 2 - type: Transform - - uid: 690 - components: - - pos: -17.5,-11.5 - parent: 2 - type: Transform - - uid: 691 - components: - - pos: -21.5,-11.5 - parent: 2 - type: Transform - - uid: 693 - components: - - pos: -9.5,-15.5 - parent: 2 - type: Transform - - uid: 705 - components: - - pos: -7.5,14.5 - parent: 2 - type: Transform - - uid: 707 - components: - - pos: 12.5,-22.5 - parent: 2 - type: Transform - - uid: 708 - components: - - pos: 12.5,-23.5 - parent: 2 - type: Transform - - uid: 709 - components: - - pos: 12.5,-24.5 - parent: 2 - type: Transform - - uid: 710 - components: - - pos: 12.5,-25.5 - parent: 2 - type: Transform - - uid: 711 - components: - - pos: 11.5,-24.5 - parent: 2 - type: Transform - - uid: 712 - components: - - pos: 10.5,-24.5 - parent: 2 - type: Transform - - uid: 713 - components: - - pos: 9.5,-24.5 - parent: 2 - type: Transform - - uid: 714 - components: - - pos: 9.5,-25.5 - parent: 2 - type: Transform - - uid: 715 - components: - - pos: 8.5,-25.5 - parent: 2 - type: Transform - - uid: 716 - components: - - pos: 8.5,-26.5 - parent: 2 - type: Transform - - uid: 717 - components: - - pos: 8.5,-27.5 - parent: 2 - type: Transform - - uid: 718 - components: - - pos: 8.5,-28.5 - parent: 2 - type: Transform - - uid: 719 - components: - - pos: 8.5,-29.5 - parent: 2 - type: Transform - - uid: 720 - components: - - pos: 8.5,-30.5 - parent: 2 - type: Transform - - uid: 721 - components: - - pos: 8.5,-31.5 - parent: 2 - type: Transform - - uid: 722 - components: - - pos: 8.5,-32.5 - parent: 2 - type: Transform - - uid: 723 - components: - - pos: 9.5,-32.5 - parent: 2 - type: Transform - - uid: 724 - components: - - pos: 10.5,-32.5 - parent: 2 - type: Transform - - uid: 725 - components: - - pos: 11.5,-32.5 - parent: 2 - type: Transform - - uid: 726 - components: - - pos: 12.5,-32.5 - parent: 2 - type: Transform - - uid: 727 - components: - - pos: 13.5,-32.5 - parent: 2 - type: Transform - - uid: 728 - components: - - pos: 14.5,-32.5 - parent: 2 - type: Transform - - uid: 729 - components: - - pos: 15.5,-32.5 - parent: 2 - type: Transform - - uid: 730 - components: - - pos: 16.5,-32.5 - parent: 2 - type: Transform - - uid: 731 - components: - - pos: 12.5,-28.5 - parent: 2 - type: Transform - - uid: 732 - components: - - pos: 12.5,-29.5 - parent: 2 - type: Transform - - uid: 733 - components: - - pos: 13.5,-29.5 - parent: 2 - type: Transform - - uid: 734 - components: - - pos: 14.5,-29.5 - parent: 2 - type: Transform - - uid: 735 - components: - - pos: 15.5,-29.5 - parent: 2 - type: Transform - - uid: 736 - components: - - pos: 16.5,-29.5 - parent: 2 - type: Transform - - uid: 737 - components: - - pos: 16.5,-30.5 - parent: 2 - type: Transform - - uid: 738 - components: - - pos: 16.5,-31.5 - parent: 2 - type: Transform - - uid: 753 - components: - - pos: 14.5,-22.5 - parent: 2 - type: Transform - - uid: 754 - components: - - pos: 15.5,-22.5 - parent: 2 - type: Transform - - uid: 758 - components: - - pos: 19.5,-22.5 - parent: 2 - type: Transform - - uid: 759 - components: - - pos: 20.5,-22.5 - parent: 2 - type: Transform - - uid: 760 - components: - - pos: 21.5,-22.5 - parent: 2 - type: Transform - - uid: 761 - components: - - pos: 22.5,-22.5 - parent: 2 - type: Transform - - uid: 762 - components: - - pos: 23.5,-22.5 - parent: 2 - type: Transform - - uid: 764 - components: - - pos: 23.5,-23.5 - parent: 2 - type: Transform - - uid: 765 - components: - - pos: 23.5,-24.5 - parent: 2 - type: Transform - - uid: 766 - components: - - pos: 23.5,-25.5 - parent: 2 - type: Transform - - uid: 767 - components: - - pos: 24.5,-25.5 - parent: 2 - type: Transform - - uid: 768 - components: - - pos: 24.5,-26.5 - parent: 2 - type: Transform - - uid: 823 - components: - - pos: 28.5,-25.5 - parent: 2 - type: Transform - - uid: 824 - components: - - pos: 28.5,-26.5 - parent: 2 - type: Transform - - uid: 895 - components: - - pos: -9.5,14.5 - parent: 2 - type: Transform - - uid: 900 - components: - - pos: -10.5,14.5 - parent: 2 - type: Transform - - uid: 903 - components: - - pos: 48.5,-23.5 - parent: 2 - type: Transform - - uid: 904 - components: - - pos: 44.5,-22.5 - parent: 2 - type: Transform - - uid: 915 - components: - - pos: 9.5,-33.5 - parent: 2 - type: Transform - - uid: 916 - components: - - pos: 9.5,-34.5 - parent: 2 - type: Transform - - uid: 917 - components: - - pos: 9.5,-35.5 - parent: 2 - type: Transform - - uid: 918 - components: - - pos: 9.5,-36.5 - parent: 2 - type: Transform - - uid: 919 - components: - - pos: 9.5,-37.5 - parent: 2 - type: Transform - - uid: 920 - components: - - pos: 14.5,-37.5 - parent: 2 - type: Transform - - uid: 949 - components: - - pos: 15.5,-37.5 - parent: 2 - type: Transform - - uid: 952 - components: - - pos: 18.5,-37.5 - parent: 2 - type: Transform - - uid: 953 - components: - - pos: 15.5,-38.5 - parent: 2 - type: Transform - - uid: 954 - components: - - pos: 15.5,-39.5 - parent: 2 - type: Transform - - uid: 955 - components: - - pos: 15.5,-40.5 - parent: 2 - type: Transform - - uid: 956 - components: - - pos: 24.5,-37.5 - parent: 2 - type: Transform - - uid: 957 - components: - - pos: 24.5,-40.5 - parent: 2 - type: Transform - - uid: 958 - components: - - pos: 18.5,-40.5 - parent: 2 - type: Transform - - uid: 1021 - components: - - pos: 14.5,-43.5 - parent: 2 - type: Transform - - uid: 1022 - components: - - pos: 15.5,-43.5 - parent: 2 - type: Transform - - uid: 1023 - components: - - pos: 15.5,-42.5 - parent: 2 - type: Transform - - uid: 1109 - components: - - pos: -11.5,14.5 - parent: 2 - type: Transform - - uid: 1218 - components: - - pos: 37.5,-29.5 - parent: 2 - type: Transform - - uid: 1219 - components: - - pos: 16.5,-15.5 - parent: 2 - type: Transform - - uid: 1220 - components: - - pos: 37.5,-26.5 - parent: 2 - type: Transform - - uid: 1223 - components: - - pos: 48.5,-29.5 - parent: 2 - type: Transform - - uid: 1227 - components: - - pos: 48.5,-31.5 - parent: 2 - type: Transform - - uid: 1250 - components: - - pos: 30.5,-58.5 - parent: 2 - type: Transform - - uid: 1254 - components: - - pos: 49.5,-31.5 - parent: 2 - type: Transform - - uid: 1255 - components: - - pos: 44.5,-34.5 - parent: 2 - type: Transform - - uid: 1256 - components: - - pos: 49.5,-28.5 - parent: 2 - type: Transform - - uid: 1264 - components: - - pos: 30.5,-46.5 - parent: 2 - type: Transform - - uid: 1265 - components: - - pos: 30.5,-47.5 - parent: 2 - type: Transform - - uid: 1266 - components: - - pos: 30.5,-48.5 - parent: 2 - type: Transform - - uid: 1267 - components: - - pos: 30.5,-49.5 - parent: 2 - type: Transform - - uid: 1268 - components: - - pos: 30.5,-50.5 - parent: 2 - type: Transform - - uid: 1269 - components: - - pos: 30.5,-51.5 - parent: 2 - type: Transform - - uid: 1270 - components: - - pos: 30.5,-52.5 - parent: 2 - type: Transform - - uid: 1271 - components: - - pos: 30.5,-53.5 - parent: 2 - type: Transform - - uid: 1272 - components: - - pos: 30.5,-54.5 - parent: 2 - type: Transform - - uid: 1273 - components: - - pos: 30.5,-55.5 - parent: 2 - type: Transform - - uid: 1274 - components: - - pos: 11.5,-57.5 - parent: 2 - type: Transform - - uid: 1275 - components: - - pos: 49.5,-27.5 - parent: 2 - type: Transform - - uid: 1276 - components: - - pos: 30.5,-57.5 - parent: 2 - type: Transform - - uid: 1277 - components: - - pos: 30.5,-56.5 - parent: 2 - type: Transform - - uid: 1278 - components: - - pos: 12.5,-43.5 - parent: 2 - type: Transform - - uid: 1279 - components: - - pos: 12.5,-44.5 - parent: 2 - type: Transform - - uid: 1280 - components: - - pos: 12.5,-45.5 - parent: 2 - type: Transform - - uid: 1281 - components: - - pos: 11.5,-45.5 - parent: 2 - type: Transform - - uid: 1282 - components: - - pos: 11.5,-46.5 - parent: 2 - type: Transform - - uid: 1283 - components: - - pos: 11.5,-47.5 - parent: 2 - type: Transform - - uid: 1284 - components: - - pos: 11.5,-48.5 - parent: 2 - type: Transform - - uid: 1285 - components: - - pos: 11.5,-49.5 - parent: 2 - type: Transform - - uid: 1286 - components: - - pos: 10.5,-47.5 - parent: 2 - type: Transform - - uid: 1287 - components: - - pos: 10.5,-48.5 - parent: 2 - type: Transform - - uid: 1288 - components: - - pos: 10.5,-49.5 - parent: 2 - type: Transform - - uid: 1289 - components: - - pos: 10.5,-50.5 - parent: 2 - type: Transform - - uid: 1290 - components: - - pos: 10.5,-51.5 - parent: 2 - type: Transform - - uid: 1291 - components: - - pos: 10.5,-52.5 - parent: 2 - type: Transform - - uid: 1292 - components: - - pos: 11.5,-50.5 - parent: 2 - type: Transform - - uid: 1293 - components: - - pos: 11.5,-51.5 - parent: 2 - type: Transform - - uid: 1294 - components: - - pos: 11.5,-52.5 - parent: 2 - type: Transform - - uid: 1295 - components: - - pos: 11.5,-54.5 - parent: 2 - type: Transform - - uid: 1296 - components: - - pos: 11.5,-53.5 - parent: 2 - type: Transform - - uid: 1297 - components: - - pos: 11.5,-55.5 - parent: 2 - type: Transform - - uid: 1298 - components: - - pos: 10.5,-55.5 - parent: 2 - type: Transform - - uid: 1299 - components: - - pos: 30.5,-59.5 - parent: 2 - type: Transform - - uid: 1318 - components: - - pos: -10.5,-11.5 - parent: 2 - type: Transform - - uid: 1326 - components: - - pos: 5.5,-33.5 - parent: 2 - type: Transform - - uid: 1333 - components: - - pos: -7.5,-15.5 - parent: 2 - type: Transform - - uid: 1337 - components: - - pos: 2.5,13.5 - parent: 2 - type: Transform - - uid: 1348 - components: - - pos: 5.5,-34.5 - parent: 2 - type: Transform - - uid: 1349 - components: - - pos: 5.5,-35.5 - parent: 2 - type: Transform - - uid: 1350 - components: - - pos: 5.5,-36.5 - parent: 2 - type: Transform - - uid: 1351 - components: - - pos: 5.5,-37.5 - parent: 2 - type: Transform - - uid: 1352 - components: - - pos: 4.5,-37.5 - parent: 2 - type: Transform - - uid: 1353 - components: - - pos: 3.5,-37.5 - parent: 2 - type: Transform - - uid: 1354 - components: - - pos: 2.5,-37.5 - parent: 2 - type: Transform - - uid: 1355 - components: - - pos: 1.5,-37.5 - parent: 2 - type: Transform - - uid: 1356 - components: - - pos: 0.5,-37.5 - parent: 2 - type: Transform - - uid: 1487 - components: - - pos: 16.5,39.5 - parent: 2 - type: Transform - - uid: 1545 - components: - - pos: -8.5,14.5 - parent: 2 - type: Transform - - uid: 1576 - components: - - pos: 24.5,-13.5 - parent: 2 - type: Transform - - uid: 1577 - components: - - pos: 10.5,-2.5 - parent: 2 - type: Transform - - uid: 1597 - components: - - pos: 40.5,-13.5 - parent: 2 - type: Transform - - uid: 1638 - components: - - pos: 48.5,-3.5 - parent: 2 - type: Transform - - uid: 1639 - components: - - pos: 48.5,-4.5 - parent: 2 - type: Transform - - uid: 1640 - components: - - pos: 48.5,-5.5 - parent: 2 - type: Transform - - uid: 1641 - components: - - pos: 48.5,-6.5 - parent: 2 - type: Transform - - uid: 1643 - components: - - pos: 48.5,-8.5 - parent: 2 - type: Transform - - uid: 1652 - components: - - pos: 48.5,-9.5 - parent: 2 - type: Transform - - uid: 1673 - components: - - rot: 3.141592653589793 rad - pos: 19.5,-15.5 - parent: 2 - type: Transform - - uid: 1699 - components: - - pos: 46.5,-13.5 - parent: 2 - type: Transform - - uid: 1700 - components: - - pos: 45.5,-13.5 - parent: 2 - type: Transform - - uid: 1701 - components: - - pos: 44.5,-13.5 - parent: 2 - type: Transform - - uid: 1702 - components: - - pos: 43.5,-13.5 - parent: 2 - type: Transform - - uid: 1703 - components: - - pos: 42.5,-13.5 - parent: 2 - type: Transform - - uid: 1704 - components: - - pos: 41.5,-13.5 - parent: 2 - type: Transform - - uid: 1705 - components: - - pos: 46.5,-17.5 - parent: 2 - type: Transform - - uid: 1706 - components: - - pos: 45.5,-17.5 - parent: 2 - type: Transform - - uid: 1707 - components: - - pos: 44.5,-17.5 - parent: 2 - type: Transform - - uid: 1708 - components: - - pos: 43.5,-17.5 - parent: 2 - type: Transform - - uid: 1709 - components: - - pos: 42.5,-17.5 - parent: 2 - type: Transform - - uid: 1716 - components: - - pos: 41.5,-17.5 - parent: 2 - type: Transform - - uid: 1720 - components: - - pos: 40.5,-17.5 - parent: 2 - type: Transform - - uid: 1817 - components: - - pos: 41.5,-21.5 - parent: 2 - type: Transform - - uid: 1818 - components: - - pos: 42.5,-21.5 - parent: 2 - type: Transform - - uid: 1828 - components: - - pos: 29.5,-25.5 - parent: 2 - type: Transform - - uid: 1923 - components: - - pos: 45.5,-26.5 - parent: 2 - type: Transform - - uid: 1924 - components: - - pos: 45.5,-22.5 - parent: 2 - type: Transform - - uid: 1925 - components: - - pos: 46.5,-24.5 - parent: 2 - type: Transform - - uid: 1926 - components: - - pos: 47.5,-26.5 - parent: 2 - type: Transform - - uid: 1928 - components: - - pos: 47.5,-28.5 - parent: 2 - type: Transform - - uid: 1929 - components: - - pos: 46.5,-30.5 - parent: 2 - type: Transform - - uid: 1930 - components: - - pos: 45.5,-30.5 - parent: 2 - type: Transform - - uid: 1931 - components: - - pos: 45.5,-32.5 - parent: 2 - type: Transform - - uid: 1932 - components: - - pos: 46.5,-32.5 - parent: 2 - type: Transform - - uid: 1933 - components: - - pos: 45.5,-28.5 - parent: 2 - type: Transform - - uid: 1943 - components: - - pos: 44.5,-24.5 - parent: 2 - type: Transform - - uid: 1945 - components: - - pos: 46.5,-22.5 - parent: 2 - type: Transform - - uid: 1980 - components: - - pos: 58.5,-14.5 - parent: 2 - type: Transform - - uid: 1981 - components: - - pos: 58.5,-13.5 - parent: 2 - type: Transform - - uid: 1984 - components: - - pos: 58.5,-12.5 - parent: 2 - type: Transform - - uid: 1985 - components: - - pos: 57.5,-12.5 - parent: 2 - type: Transform - - uid: 1986 - components: - - pos: 56.5,-12.5 - parent: 2 - type: Transform - - uid: 1987 - components: - - pos: 55.5,-12.5 - parent: 2 - type: Transform - - uid: 1988 - components: - - pos: 54.5,-12.5 - parent: 2 - type: Transform - - uid: 1989 - components: - - pos: 53.5,-12.5 - parent: 2 - type: Transform - - uid: 2011 - components: - - pos: 5.5,29.5 - parent: 2 - type: Transform - - uid: 2012 - components: - - pos: 5.5,30.5 - parent: 2 - type: Transform - - uid: 2013 - components: - - pos: 5.5,31.5 - parent: 2 - type: Transform - - uid: 2014 - components: - - pos: 5.5,32.5 - parent: 2 - type: Transform - - uid: 2015 - components: - - pos: 5.5,33.5 - parent: 2 - type: Transform - - uid: 2016 - components: - - pos: 6.5,33.5 - parent: 2 - type: Transform - - uid: 2017 - components: - - pos: 7.5,33.5 - parent: 2 - type: Transform - - uid: 2018 - components: - - pos: 8.5,33.5 - parent: 2 - type: Transform - - uid: 2019 - components: - - pos: 9.5,33.5 - parent: 2 - type: Transform - - uid: 2020 - components: - - pos: 10.5,33.5 - parent: 2 - type: Transform - - uid: 2024 - components: - - pos: -22.5,-11.5 - parent: 2 - type: Transform - - uid: 2033 - components: - - pos: -14.5,-15.5 - parent: 2 - type: Transform - - uid: 2043 - components: - - pos: -16.5,-15.5 - parent: 2 - type: Transform - - uid: 2085 - components: - - pos: -17.5,14.5 - parent: 2 - type: Transform - - uid: 2102 - components: - - pos: 24.5,28.5 - parent: 2 - type: Transform - - uid: 2143 - components: - - pos: 49.5,-34.5 - parent: 2 - type: Transform - - uid: 2144 - components: - - pos: 49.5,-25.5 - parent: 2 - type: Transform - - uid: 2190 - components: - - pos: 28.5,16.5 - parent: 2 - type: Transform - - uid: 2191 - components: - - pos: 29.5,16.5 - parent: 2 - type: Transform - - uid: 2192 - components: - - pos: 30.5,16.5 - parent: 2 - type: Transform - - uid: 2193 - components: - - pos: 31.5,16.5 - parent: 2 - type: Transform - - uid: 2194 - components: - - pos: 32.5,16.5 - parent: 2 - type: Transform - - uid: 2195 - components: - - pos: 33.5,16.5 - parent: 2 - type: Transform - - uid: 2196 - components: - - pos: 28.5,19.5 - parent: 2 - type: Transform - - uid: 2197 - components: - - pos: 28.5,22.5 - parent: 2 - type: Transform - - uid: 2198 - components: - - pos: 28.5,26.5 - parent: 2 - type: Transform - - uid: 2199 - components: - - pos: 28.5,27.5 - parent: 2 - type: Transform - - uid: 2200 - components: - - pos: 29.5,27.5 - parent: 2 - type: Transform - - uid: 2201 - components: - - pos: 30.5,27.5 - parent: 2 - type: Transform - - uid: 2202 - components: - - pos: 31.5,27.5 - parent: 2 - type: Transform - - uid: 2203 - components: - - pos: 28.5,28.5 - parent: 2 - type: Transform - - uid: 2204 - components: - - pos: 28.5,29.5 - parent: 2 - type: Transform - - uid: 2205 - components: - - pos: 28.5,30.5 - parent: 2 - type: Transform - - uid: 2206 - components: - - pos: 28.5,31.5 - parent: 2 - type: Transform - - uid: 2207 - components: - - pos: 29.5,31.5 - parent: 2 - type: Transform - - uid: 2208 - components: - - pos: 30.5,31.5 - parent: 2 - type: Transform - - uid: 2209 - components: - - pos: 31.5,31.5 - parent: 2 - type: Transform - - uid: 2210 - components: - - pos: 32.5,31.5 - parent: 2 - type: Transform - - uid: 2211 - components: - - pos: 34.5,31.5 - parent: 2 - type: Transform - - uid: 2212 - components: - - pos: 35.5,31.5 - parent: 2 - type: Transform - - uid: 2213 - components: - - pos: 35.5,32.5 - parent: 2 - type: Transform - - uid: 2214 - components: - - pos: 36.5,32.5 - parent: 2 - type: Transform - - uid: 2215 - components: - - pos: 37.5,32.5 - parent: 2 - type: Transform - - uid: 2216 - components: - - pos: 38.5,32.5 - parent: 2 - type: Transform - - uid: 2217 - components: - - pos: 38.5,31.5 - parent: 2 - type: Transform - - uid: 2218 - components: - - pos: 35.5,33.5 - parent: 2 - type: Transform - - uid: 2219 - components: - - pos: 35.5,34.5 - parent: 2 - type: Transform - - uid: 2220 - components: - - pos: 35.5,35.5 - parent: 2 - type: Transform - - uid: 2221 - components: - - pos: 35.5,36.5 - parent: 2 - type: Transform - - uid: 2222 - components: - - pos: 36.5,36.5 - parent: 2 - type: Transform - - uid: 2223 - components: - - pos: 36.5,37.5 - parent: 2 - type: Transform - - uid: 2224 - components: - - pos: 37.5,37.5 - parent: 2 - type: Transform - - uid: 2225 - components: - - pos: 38.5,37.5 - parent: 2 - type: Transform - - uid: 2226 - components: - - pos: 39.5,37.5 - parent: 2 - type: Transform - - uid: 2227 - components: - - pos: 40.5,37.5 - parent: 2 - type: Transform - - uid: 2228 - components: - - pos: 40.5,36.5 - parent: 2 - type: Transform - - uid: 2229 - components: - - pos: 40.5,38.5 - parent: 2 - type: Transform - - uid: 2230 - components: - - pos: 41.5,38.5 - parent: 2 - type: Transform - - uid: 2231 - components: - - pos: 42.5,38.5 - parent: 2 - type: Transform - - uid: 2232 - components: - - pos: 42.5,37.5 - parent: 2 - type: Transform - - uid: 2233 - components: - - pos: 42.5,36.5 - parent: 2 - type: Transform - - uid: 2234 - components: - - pos: 42.5,35.5 - parent: 2 - type: Transform - - uid: 2235 - components: - - pos: 42.5,34.5 - parent: 2 - type: Transform - - uid: 2260 - components: - - pos: 35.5,29.5 - parent: 2 - type: Transform - - uid: 2261 - components: - - pos: 36.5,29.5 - parent: 2 - type: Transform - - uid: 2262 - components: - - pos: 37.5,29.5 - parent: 2 - type: Transform - - uid: 2263 - components: - - pos: 38.5,29.5 - parent: 2 - type: Transform - - uid: 2264 - components: - - pos: 39.5,29.5 - parent: 2 - type: Transform - - uid: 2265 - components: - - pos: 41.5,29.5 - parent: 2 - type: Transform - - uid: 2266 - components: - - pos: 40.5,29.5 - parent: 2 - type: Transform - - uid: 2267 - components: - - pos: 42.5,29.5 - parent: 2 - type: Transform - - uid: 2268 - components: - - pos: 43.5,29.5 - parent: 2 - type: Transform - - uid: 2269 - components: - - pos: 44.5,29.5 - parent: 2 - type: Transform - - uid: 2270 - components: - - pos: 44.5,30.5 - parent: 2 - type: Transform - - uid: 2271 - components: - - pos: 44.5,31.5 - parent: 2 - type: Transform - - uid: 2272 - components: - - pos: 44.5,32.5 - parent: 2 - type: Transform - - uid: 2273 - components: - - pos: 44.5,33.5 - parent: 2 - type: Transform - - uid: 2275 - components: - - pos: 42.5,30.5 - parent: 2 - type: Transform - - uid: 2276 - components: - - pos: 43.5,38.5 - parent: 2 - type: Transform - - uid: 2277 - components: - - pos: 44.5,38.5 - parent: 2 - type: Transform - - uid: 2278 - components: - - pos: 44.5,37.5 - parent: 2 - type: Transform - - uid: 2327 - components: - - pos: 37.5,25.5 - parent: 2 - type: Transform - - uid: 2328 - components: - - pos: 42.5,28.5 - parent: 2 - type: Transform - - uid: 2329 - components: - - pos: 42.5,27.5 - parent: 2 - type: Transform - - uid: 2330 - components: - - pos: 42.5,26.5 - parent: 2 - type: Transform - - uid: 2331 - components: - - pos: 42.5,25.5 - parent: 2 - type: Transform - - uid: 2334 - components: - - pos: 43.5,26.5 - parent: 2 - type: Transform - - uid: 2335 - components: - - pos: 44.5,26.5 - parent: 2 - type: Transform - - uid: 2336 - components: - - pos: 45.5,26.5 - parent: 2 - type: Transform - - uid: 2337 - components: - - pos: 46.5,26.5 - parent: 2 - type: Transform - - uid: 2338 - components: - - pos: 46.5,25.5 - parent: 2 - type: Transform - - uid: 2339 - components: - - pos: 46.5,24.5 - parent: 2 - type: Transform - - uid: 2340 - components: - - pos: 46.5,23.5 - parent: 2 - type: Transform - - uid: 2341 - components: - - pos: 46.5,22.5 - parent: 2 - type: Transform - - uid: 2342 - components: - - pos: 46.5,21.5 - parent: 2 - type: Transform - - uid: 2343 - components: - - pos: 45.5,21.5 - parent: 2 - type: Transform - - uid: 2344 - components: - - pos: 44.5,21.5 - parent: 2 - type: Transform - - uid: 2345 - components: - - pos: 43.5,21.5 - parent: 2 - type: Transform - - uid: 2346 - components: - - pos: 42.5,21.5 - parent: 2 - type: Transform - - uid: 2347 - components: - - pos: 41.5,21.5 - parent: 2 - type: Transform - - uid: 2348 - components: - - pos: 40.5,21.5 - parent: 2 - type: Transform - - uid: 2349 - components: - - pos: 40.5,20.5 - parent: 2 - type: Transform - - uid: 2350 - components: - - pos: 40.5,19.5 - parent: 2 - type: Transform - - uid: 2443 - components: - - pos: 40.5,17.5 - parent: 2 - type: Transform - - uid: 2444 - components: - - pos: 40.5,16.5 - parent: 2 - type: Transform - - uid: 2445 - components: - - pos: 39.5,16.5 - parent: 2 - type: Transform - - uid: 2446 - components: - - pos: 38.5,16.5 - parent: 2 - type: Transform - - uid: 2447 - components: - - pos: 37.5,16.5 - parent: 2 - type: Transform - - uid: 2448 - components: - - pos: 36.5,16.5 - parent: 2 - type: Transform - - uid: 2449 - components: - - pos: 35.5,16.5 - parent: 2 - type: Transform - - uid: 2450 - components: - - pos: 34.5,16.5 - parent: 2 - type: Transform - - uid: 2479 - components: - - pos: -0.5,14.5 - parent: 2 - type: Transform - - uid: 2485 - components: - - pos: 3.5,14.5 - parent: 2 - type: Transform - - uid: 2563 - components: - - pos: 29.5,33.5 - parent: 2 - type: Transform - - uid: 2564 - components: - - pos: 30.5,33.5 - parent: 2 - type: Transform - - uid: 2565 - components: - - pos: 31.5,33.5 - parent: 2 - type: Transform - - uid: 2566 - components: - - pos: 32.5,33.5 - parent: 2 - type: Transform - - uid: 2567 - components: - - pos: 33.5,33.5 - parent: 2 - type: Transform - - uid: 2568 - components: - - pos: 33.5,34.5 - parent: 2 - type: Transform - - uid: 2569 - components: - - pos: 29.5,34.5 - parent: 2 - type: Transform - - uid: 2570 - components: - - pos: 29.5,35.5 - parent: 2 - type: Transform - - uid: 2571 - components: - - pos: 29.5,37.5 - parent: 2 - type: Transform - - uid: 2572 - components: - - pos: 33.5,35.5 - parent: 2 - type: Transform - - uid: 2573 - components: - - pos: 33.5,36.5 - parent: 2 - type: Transform - - uid: 2574 - components: - - pos: 33.5,37.5 - parent: 2 - type: Transform - - uid: 2575 - components: - - pos: 33.5,38.5 - parent: 2 - type: Transform - - uid: 2576 - components: - - pos: 32.5,38.5 - parent: 2 - type: Transform - - uid: 2577 - components: - - pos: 31.5,38.5 - parent: 2 - type: Transform - - uid: 2578 - components: - - pos: 30.5,38.5 - parent: 2 - type: Transform - - uid: 2579 - components: - - pos: 29.5,38.5 - parent: 2 - type: Transform - - uid: 2580 - components: - - pos: 29.5,39.5 - parent: 2 - type: Transform - - uid: 2581 - components: - - pos: 29.5,40.5 - parent: 2 - type: Transform - - uid: 2582 - components: - - pos: 29.5,41.5 - parent: 2 - type: Transform - - uid: 2583 - components: - - pos: 29.5,42.5 - parent: 2 - type: Transform - - uid: 2584 - components: - - pos: 29.5,43.5 - parent: 2 - type: Transform - - uid: 2585 - components: - - pos: 30.5,43.5 - parent: 2 - type: Transform - - uid: 2586 - components: - - pos: 31.5,43.5 - parent: 2 - type: Transform - - uid: 2587 - components: - - pos: 31.5,44.5 - parent: 2 - type: Transform - - uid: 2588 - components: - - pos: 33.5,44.5 - parent: 2 - type: Transform - - uid: 2589 - components: - - pos: 34.5,44.5 - parent: 2 - type: Transform - - uid: 2590 - components: - - pos: 35.5,44.5 - parent: 2 - type: Transform - - uid: 2591 - components: - - pos: 35.5,43.5 - parent: 2 - type: Transform - - uid: 2592 - components: - - pos: 35.5,42.5 - parent: 2 - type: Transform - - uid: 2593 - components: - - pos: 35.5,41.5 - parent: 2 - type: Transform - - uid: 2594 - components: - - pos: 36.5,44.5 - parent: 2 - type: Transform - - uid: 2595 - components: - - pos: 37.5,44.5 - parent: 2 - type: Transform - - uid: 2596 - components: - - pos: 38.5,44.5 - parent: 2 - type: Transform - - uid: 2597 - components: - - pos: 38.5,43.5 - parent: 2 - type: Transform - - uid: 2598 - components: - - pos: 38.5,42.5 - parent: 2 - type: Transform - - uid: 2599 - components: - - pos: 38.5,41.5 - parent: 2 - type: Transform - - uid: 2600 - components: - - pos: 38.5,40.5 - parent: 2 - type: Transform - - uid: 2601 - components: - - pos: 38.5,39.5 - parent: 2 - type: Transform - - uid: 2602 - components: - - pos: 37.5,39.5 - parent: 2 - type: Transform - - uid: 2603 - components: - - pos: 36.5,39.5 - parent: 2 - type: Transform - - uid: 2604 - components: - - pos: 35.5,39.5 - parent: 2 - type: Transform - - uid: 2605 - components: - - pos: 34.5,39.5 - parent: 2 - type: Transform - - uid: 2606 - components: - - pos: 34.5,38.5 - parent: 2 - type: Transform - - uid: 2607 - components: - - pos: -2.5,14.5 - parent: 2 - type: Transform - - uid: 2608 - components: - - pos: -8.5,-15.5 - parent: 2 - type: Transform - - uid: 2610 - components: - - pos: 48.5,-24.5 - parent: 2 - type: Transform - - uid: 2617 - components: - - pos: 2.5,14.5 - parent: 2 - type: Transform - - uid: 2626 - components: - - pos: 20.5,43.5 - parent: 2 - type: Transform - - uid: 2627 - components: - - pos: 20.5,42.5 - parent: 2 - type: Transform - - uid: 2628 - components: - - pos: 19.5,42.5 - parent: 2 - type: Transform - - uid: 2629 - components: - - pos: 19.5,43.5 - parent: 2 - type: Transform - - uid: 2630 - components: - - pos: 18.5,43.5 - parent: 2 - type: Transform - - uid: 2631 - components: - - pos: 17.5,43.5 - parent: 2 - type: Transform - - uid: 2632 - components: - - pos: 17.5,42.5 - parent: 2 - type: Transform - - uid: 2633 - components: - - pos: 16.5,42.5 - parent: 2 - type: Transform - - uid: 2634 - components: - - pos: 16.5,41.5 - parent: 2 - type: Transform - - uid: 2635 - components: - - pos: 16.5,40.5 - parent: 2 - type: Transform - - uid: 2637 - components: - - pos: 16.5,38.5 - parent: 2 - type: Transform - - uid: 2638 - components: - - pos: 17.5,38.5 - parent: 2 - type: Transform - - uid: 2639 - components: - - pos: 19.5,38.5 - parent: 2 - type: Transform - - uid: 2640 - components: - - pos: 20.5,38.5 - parent: 2 - type: Transform - - uid: 2641 - components: - - pos: 20.5,39.5 - parent: 2 - type: Transform - - uid: 2642 - components: - - pos: 20.5,40.5 - parent: 2 - type: Transform - - uid: 2643 - components: - - pos: 20.5,41.5 - parent: 2 - type: Transform - - uid: 2644 - components: - - pos: 25.5,38.5 - parent: 2 - type: Transform - - uid: 2645 - components: - - pos: 25.5,39.5 - parent: 2 - type: Transform - - uid: 2646 - components: - - pos: 25.5,40.5 - parent: 2 - type: Transform - - uid: 2647 - components: - - pos: 25.5,42.5 - parent: 2 - type: Transform - - uid: 2648 - components: - - pos: 25.5,43.5 - parent: 2 - type: Transform - - uid: 2652 - components: - - pos: 12.5,42.5 - parent: 2 - type: Transform - - uid: 2653 - components: - - pos: 12.5,41.5 - parent: 2 - type: Transform - - uid: 2654 - components: - - pos: 12.5,40.5 - parent: 2 - type: Transform - - uid: 2655 - components: - - pos: 12.5,39.5 - parent: 2 - type: Transform - - uid: 2656 - components: - - pos: 12.5,38.5 - parent: 2 - type: Transform - - uid: 2657 - components: - - pos: 12.5,37.5 - parent: 2 - type: Transform - - uid: 2658 - components: - - pos: 16.5,35.5 - parent: 2 - type: Transform - - uid: 2659 - components: - - pos: 15.5,34.5 - parent: 2 - type: Transform - - uid: 2660 - components: - - pos: 12.5,35.5 - parent: 2 - type: Transform - - uid: 2661 - components: - - pos: 31.5,-22.5 - parent: 2 - type: Transform - - uid: 2662 - components: - - pos: 12.5,36.5 - parent: 2 - type: Transform - - uid: 2663 - components: - - pos: 13.5,34.5 - parent: 2 - type: Transform - - uid: 2664 - components: - - pos: 16.5,37.5 - parent: 2 - type: Transform - - uid: 2665 - components: - - pos: 14.5,34.5 - parent: 2 - type: Transform - - uid: 2666 - components: - - pos: -9.5,1.5 - parent: 2 - type: Transform - - uid: 2718 - components: - - pos: 49.5,-32.5 - parent: 2 - type: Transform - - uid: 2737 - components: - - pos: -4.5,-15.5 - parent: 2 - type: Transform - - uid: 2738 - components: - - pos: 10.5,35.5 - parent: 2 - type: Transform - - uid: 2739 - components: - - pos: 10.5,34.5 - parent: 2 - type: Transform - - uid: 2800 - components: - - pos: 33.5,49.5 - parent: 2 - type: Transform - - uid: 2801 - components: - - pos: 33.5,48.5 - parent: 2 - type: Transform - - uid: 2802 - components: - - pos: 33.5,47.5 - parent: 2 - type: Transform - - uid: 2803 - components: - - pos: 34.5,47.5 - parent: 2 - type: Transform - - uid: 2804 - components: - - pos: 35.5,47.5 - parent: 2 - type: Transform - - uid: 2805 - components: - - pos: 36.5,47.5 - parent: 2 - type: Transform - - uid: 2810 - components: - - pos: 18.5,46.5 - parent: 2 - type: Transform - - uid: 2811 - components: - - pos: 18.5,47.5 - parent: 2 - type: Transform - - uid: 2812 - components: - - pos: 19.5,47.5 - parent: 2 - type: Transform - - uid: 2813 - components: - - pos: 20.5,47.5 - parent: 2 - type: Transform - - uid: 2814 - components: - - pos: 21.5,47.5 - parent: 2 - type: Transform - - uid: 2815 - components: - - pos: 21.5,48.5 - parent: 2 - type: Transform - - uid: 2816 - components: - - pos: 21.5,49.5 - parent: 2 - type: Transform - - uid: 2848 - components: - - pos: 59.5,-12.5 - parent: 2 - type: Transform - - uid: 2849 - components: - - pos: 59.5,-11.5 - parent: 2 - type: Transform - - uid: 2850 - components: - - pos: 59.5,-10.5 - parent: 2 - type: Transform - - uid: 2851 - components: - - pos: 59.5,-9.5 - parent: 2 - type: Transform - - uid: 2852 - components: - - pos: 59.5,-8.5 - parent: 2 - type: Transform - - uid: 2853 - components: - - pos: 58.5,-8.5 - parent: 2 - type: Transform - - uid: 2854 - components: - - pos: 54.5,-8.5 - parent: 2 - type: Transform - - uid: 2855 - components: - - pos: 53.5,-8.5 - parent: 2 - type: Transform - - uid: 2856 - components: - - pos: 53.5,-9.5 - parent: 2 - type: Transform - - uid: 2857 - components: - - pos: 53.5,-10.5 - parent: 2 - type: Transform - - uid: 2858 - components: - - pos: 53.5,-11.5 - parent: 2 - type: Transform - - uid: 2868 - components: - - pos: 64.5,-12.5 - parent: 2 - type: Transform - - uid: 2869 - components: - - pos: 64.5,-13.5 - parent: 2 - type: Transform - - uid: 2870 - components: - - pos: 64.5,-14.5 - parent: 2 - type: Transform - - uid: 2933 - components: - - pos: 68.5,-2.5 - parent: 2 - type: Transform - - uid: 2934 - components: - - pos: 68.5,-3.5 - parent: 2 - type: Transform - - uid: 2935 - components: - - pos: 68.5,-4.5 - parent: 2 - type: Transform - - uid: 2936 - components: - - pos: 68.5,-5.5 - parent: 2 - type: Transform - - uid: 2937 - components: - - pos: 68.5,-6.5 - parent: 2 - type: Transform - - uid: 2951 - components: - - pos: 51.5,-3.5 - parent: 2 - type: Transform - - uid: 2952 - components: - - pos: 51.5,-2.5 - parent: 2 - type: Transform - - uid: 2953 - components: - - pos: 52.5,-2.5 - parent: 2 - type: Transform - - uid: 2955 - components: - - pos: 49.5,-9.5 - parent: 2 - type: Transform - - uid: 2956 - components: - - pos: 51.5,-9.5 - parent: 2 - type: Transform - - uid: 3022 - components: - - pos: 43.5,12.5 - parent: 2 - type: Transform - - uid: 3023 - components: - - pos: 43.5,11.5 - parent: 2 - type: Transform - - uid: 3024 - components: - - pos: 43.5,10.5 - parent: 2 - type: Transform - - uid: 3025 - components: - - pos: 43.5,9.5 - parent: 2 - type: Transform - - uid: 3026 - components: - - pos: 43.5,8.5 - parent: 2 - type: Transform - - uid: 3027 - components: - - pos: 44.5,8.5 - parent: 2 - type: Transform - - uid: 3028 - components: - - pos: 45.5,8.5 - parent: 2 - type: Transform - - uid: 3029 - components: - - pos: 46.5,8.5 - parent: 2 - type: Transform - - uid: 3030 - components: - - pos: 47.5,8.5 - parent: 2 - type: Transform - - uid: 3031 - components: - - pos: 48.5,8.5 - parent: 2 - type: Transform - - uid: 3032 - components: - - pos: 48.5,7.5 - parent: 2 - type: Transform - - uid: 3033 - components: - - pos: 49.5,7.5 - parent: 2 - type: Transform - - uid: 3034 - components: - - pos: 50.5,7.5 - parent: 2 - type: Transform - - uid: 3035 - components: - - pos: 51.5,7.5 - parent: 2 - type: Transform - - uid: 3036 - components: - - pos: 52.5,7.5 - parent: 2 - type: Transform - - uid: 3037 - components: - - pos: 56.5,7.5 - parent: 2 - type: Transform - - uid: 3038 - components: - - pos: 55.5,7.5 - parent: 2 - type: Transform - - uid: 3039 - components: - - pos: 54.5,7.5 - parent: 2 - type: Transform - - uid: 3047 - components: - - pos: 48.5,13.5 - parent: 2 - type: Transform - - uid: 3048 - components: - - pos: 48.5,12.5 - parent: 2 - type: Transform - - uid: 3049 - components: - - pos: 48.5,15.5 - parent: 2 - type: Transform - - uid: 3050 - components: - - pos: 48.5,16.5 - parent: 2 - type: Transform - - uid: 3052 - components: - - pos: 48.5,20.5 - parent: 2 - type: Transform - - uid: 3063 - components: - - pos: 40.5,39.5 - parent: 2 - type: Transform - - uid: 3064 - components: - - pos: 40.5,40.5 - parent: 2 - type: Transform - - uid: 3065 - components: - - pos: 43.5,40.5 - parent: 2 - type: Transform - - uid: 3066 - components: - - pos: 43.5,39.5 - parent: 2 - type: Transform - - uid: 3071 - components: - - pos: 39.5,43.5 - parent: 2 - type: Transform - - uid: 3072 - components: - - pos: 40.5,43.5 - parent: 2 - type: Transform - - uid: 3073 - components: - - pos: 41.5,43.5 - parent: 2 - type: Transform - - uid: 3074 - components: - - pos: 42.5,43.5 - parent: 2 - type: Transform - - uid: 3075 - components: - - pos: 42.5,44.5 - parent: 2 - type: Transform - - uid: 3076 - components: - - pos: 42.5,45.5 - parent: 2 - type: Transform - - uid: 3077 - components: - - pos: 42.5,46.5 - parent: 2 - type: Transform - - uid: 3078 - components: - - pos: 42.5,47.5 - parent: 2 - type: Transform - - uid: 3079 - components: - - pos: 45.5,45.5 - parent: 2 - type: Transform - - uid: 3080 - components: - - pos: 45.5,44.5 - parent: 2 - type: Transform - - uid: 3081 - components: - - pos: 45.5,43.5 - parent: 2 - type: Transform - - uid: 3082 - components: - - pos: 46.5,43.5 - parent: 2 - type: Transform - - uid: 3083 - components: - - pos: 46.5,42.5 - parent: 2 - type: Transform - - uid: 3084 - components: - - pos: 46.5,41.5 - parent: 2 - type: Transform - - uid: 3085 - components: - - pos: 46.5,40.5 - parent: 2 - type: Transform - - uid: 3125 - components: - - pos: 50.5,45.5 - parent: 2 - type: Transform - - uid: 3146 - components: - - pos: 47.5,36.5 - parent: 2 - type: Transform - - uid: 3147 - components: - - pos: 47.5,34.5 - parent: 2 - type: Transform - - uid: 3148 - components: - - pos: 47.5,35.5 - parent: 2 - type: Transform - - uid: 3149 - components: - - pos: 47.5,33.5 - parent: 2 - type: Transform - - uid: 3150 - components: - - pos: 47.5,32.5 - parent: 2 - type: Transform - - uid: 3151 - components: - - pos: 47.5,31.5 - parent: 2 - type: Transform - - uid: 3152 - components: - - pos: 47.5,30.5 - parent: 2 - type: Transform - - uid: 3153 - components: - - pos: 47.5,29.5 - parent: 2 - type: Transform - - uid: 3154 - components: - - pos: 47.5,28.5 - parent: 2 - type: Transform - - uid: 3155 - components: - - pos: 48.5,28.5 - parent: 2 - type: Transform - - uid: 3156 - components: - - pos: 49.5,28.5 - parent: 2 - type: Transform - - uid: 3157 - components: - - pos: 50.5,28.5 - parent: 2 - type: Transform - - uid: 3158 - components: - - pos: 51.5,28.5 - parent: 2 - type: Transform - - uid: 3159 - components: - - pos: 51.5,29.5 - parent: 2 - type: Transform - - uid: 3160 - components: - - pos: 51.5,30.5 - parent: 2 - type: Transform - - uid: 3161 - components: - - pos: 51.5,31.5 - parent: 2 - type: Transform - - uid: 3162 - components: - - pos: 51.5,32.5 - parent: 2 - type: Transform - - uid: 3163 - components: - - pos: 51.5,33.5 - parent: 2 - type: Transform - - uid: 3164 - components: - - pos: 51.5,34.5 - parent: 2 - type: Transform - - uid: 3165 - components: - - pos: 51.5,35.5 - parent: 2 - type: Transform - - uid: 3166 - components: - - pos: 51.5,36.5 - parent: 2 - type: Transform - - uid: 3167 - components: - - pos: 51.5,37.5 - parent: 2 - type: Transform - - uid: 3168 - components: - - pos: 51.5,38.5 - parent: 2 - type: Transform - - uid: 3169 - components: - - pos: 52.5,37.5 - parent: 2 - type: Transform - - uid: 3170 - components: - - pos: 52.5,38.5 - parent: 2 - type: Transform - - uid: 3171 - components: - - pos: 52.5,39.5 - parent: 2 - type: Transform - - uid: 3172 - components: - - pos: 53.5,39.5 - parent: 2 - type: Transform - - uid: 3173 - components: - - pos: 53.5,38.5 - parent: 2 - type: Transform - - uid: 3174 - components: - - pos: 54.5,39.5 - parent: 2 - type: Transform - - uid: 3175 - components: - - pos: 54.5,40.5 - parent: 2 - type: Transform - - uid: 3176 - components: - - pos: 55.5,40.5 - parent: 2 - type: Transform - - uid: 3177 - components: - - pos: 55.5,39.5 - parent: 2 - type: Transform - - uid: 3178 - components: - - pos: 56.5,39.5 - parent: 2 - type: Transform - - uid: 3179 - components: - - pos: 56.5,40.5 - parent: 2 - type: Transform - - uid: 3180 - components: - - pos: 57.5,40.5 - parent: 2 - type: Transform - - uid: 3181 - components: - - pos: 57.5,39.5 - parent: 2 - type: Transform - - uid: 3182 - components: - - pos: 58.5,39.5 - parent: 2 - type: Transform - - uid: 3183 - components: - - pos: 58.5,40.5 - parent: 2 - type: Transform - - uid: 3184 - components: - - pos: 59.5,39.5 - parent: 2 - type: Transform - - uid: 3185 - components: - - pos: 60.5,39.5 - parent: 2 - type: Transform - - uid: 3186 - components: - - pos: 60.5,38.5 - parent: 2 - type: Transform - - uid: 3187 - components: - - pos: 59.5,38.5 - parent: 2 - type: Transform - - uid: 3188 - components: - - pos: 60.5,37.5 - parent: 2 - type: Transform - - uid: 3189 - components: - - pos: 61.5,38.5 - parent: 2 - type: Transform - - uid: 3190 - components: - - pos: 61.5,37.5 - parent: 2 - type: Transform - - uid: 3191 - components: - - pos: 61.5,35.5 - parent: 2 - type: Transform - - uid: 3192 - components: - - pos: 61.5,34.5 - parent: 2 - type: Transform - - uid: 3193 - components: - - pos: 61.5,36.5 - parent: 2 - type: Transform - - uid: 3194 - components: - - pos: 61.5,33.5 - parent: 2 - type: Transform - - uid: 3195 - components: - - pos: 61.5,32.5 - parent: 2 - type: Transform - - uid: 3196 - components: - - pos: 61.5,31.5 - parent: 2 - type: Transform - - uid: 3197 - components: - - pos: 61.5,30.5 - parent: 2 - type: Transform - - uid: 3198 - components: - - pos: 61.5,29.5 - parent: 2 - type: Transform - - uid: 3199 - components: - - pos: 61.5,28.5 - parent: 2 - type: Transform - - uid: 3201 - components: - - pos: 65.5,29.5 - parent: 2 - type: Transform - - uid: 3215 - components: - - pos: 55.5,32.5 - parent: 2 - type: Transform - - uid: 3216 - components: - - pos: 54.5,32.5 - parent: 2 - type: Transform - - uid: 3217 - components: - - pos: 53.5,32.5 - parent: 2 - type: Transform - - uid: 3218 - components: - - pos: 52.5,32.5 - parent: 2 - type: Transform - - uid: 3219 - components: - - pos: 60.5,32.5 - parent: 2 - type: Transform - - uid: 3220 - components: - - pos: 59.5,32.5 - parent: 2 - type: Transform - - uid: 3221 - components: - - pos: 58.5,32.5 - parent: 2 - type: Transform - - uid: 3222 - components: - - pos: 57.5,32.5 - parent: 2 - type: Transform - - uid: 3254 - components: - - pos: 52.5,28.5 - parent: 2 - type: Transform - - uid: 3255 - components: - - pos: 53.5,28.5 - parent: 2 - type: Transform - - uid: 3256 - components: - - pos: 54.5,28.5 - parent: 2 - type: Transform - - uid: 3257 - components: - - pos: 55.5,28.5 - parent: 2 - type: Transform - - uid: 3258 - components: - - pos: 60.5,28.5 - parent: 2 - type: Transform - - uid: 3259 - components: - - pos: 59.5,28.5 - parent: 2 - type: Transform - - uid: 3260 - components: - - pos: 58.5,28.5 - parent: 2 - type: Transform - - uid: 3261 - components: - - pos: 57.5,28.5 - parent: 2 - type: Transform - - uid: 3262 - components: - - pos: 62.5,29.5 - parent: 2 - type: Transform - - uid: 3264 - components: - - pos: 62.5,45.5 - parent: 2 - type: Transform - - uid: 3266 - components: - - pos: 63.5,45.5 - parent: 2 - type: Transform - - uid: 3267 - components: - - pos: 64.5,45.5 - parent: 2 - type: Transform - - uid: 3268 - components: - - pos: 65.5,45.5 - parent: 2 - type: Transform - - uid: 3269 - components: - - pos: 65.5,44.5 - parent: 2 - type: Transform - - uid: 3270 - components: - - pos: 65.5,43.5 - parent: 2 - type: Transform - - uid: 3271 - components: - - pos: 65.5,30.5 - parent: 2 - type: Transform - - uid: 3272 - components: - - pos: 65.5,31.5 - parent: 2 - type: Transform - - uid: 3273 - components: - - pos: 65.5,32.5 - parent: 2 - type: Transform - - uid: 3274 - components: - - pos: 65.5,33.5 - parent: 2 - type: Transform - - uid: 3275 - components: - - pos: 65.5,34.5 - parent: 2 - type: Transform - - uid: 3276 - components: - - pos: 65.5,35.5 - parent: 2 - type: Transform - - uid: 3277 - components: - - pos: 65.5,36.5 - parent: 2 - type: Transform - - uid: 3278 - components: - - pos: 65.5,37.5 - parent: 2 - type: Transform - - uid: 3279 - components: - - pos: 65.5,38.5 - parent: 2 - type: Transform - - uid: 3280 - components: - - pos: 65.5,39.5 - parent: 2 - type: Transform - - uid: 3281 - components: - - pos: 65.5,40.5 - parent: 2 - type: Transform - - uid: 3282 - components: - - pos: 65.5,41.5 - parent: 2 - type: Transform - - uid: 3283 - components: - - pos: 65.5,42.5 - parent: 2 - type: Transform - - uid: 3315 - components: - - pos: 49.5,49.5 - parent: 2 - type: Transform - - uid: 3316 - components: - - pos: 63.5,49.5 - parent: 2 - type: Transform - - uid: 3318 - components: - - pos: 55.5,50.5 - parent: 2 - type: Transform - - uid: 3319 - components: - - pos: 57.5,50.5 - parent: 2 - type: Transform - - uid: 3321 - components: - - pos: 55.5,51.5 - parent: 2 - type: Transform - - uid: 3322 - components: - - pos: 57.5,51.5 - parent: 2 - type: Transform - - uid: 3352 - components: - - pos: 72.5,47.5 - parent: 2 - type: Transform - - uid: 3353 - components: - - pos: 71.5,47.5 - parent: 2 - type: Transform - - uid: 3354 - components: - - pos: 69.5,47.5 - parent: 2 - type: Transform - - uid: 3355 - components: - - pos: 70.5,47.5 - parent: 2 - type: Transform - - uid: 3361 - components: - - pos: 72.5,41.5 - parent: 2 - type: Transform - - uid: 3362 - components: - - pos: 71.5,41.5 - parent: 2 - type: Transform - - uid: 3363 - components: - - pos: 71.5,42.5 - parent: 2 - type: Transform - - uid: 3370 - components: - - pos: 72.5,43.5 - parent: 2 - type: Transform - - uid: 3371 - components: - - pos: 71.5,43.5 - parent: 2 - type: Transform - - uid: 3372 - components: - - pos: 70.5,43.5 - parent: 2 - type: Transform - - uid: 3373 - components: - - pos: 72.5,35.5 - parent: 2 - type: Transform - - uid: 3374 - components: - - pos: 71.5,35.5 - parent: 2 - type: Transform - - uid: 3375 - components: - - pos: 72.5,36.5 - parent: 2 - type: Transform - - uid: 3376 - components: - - pos: 72.5,38.5 - parent: 2 - type: Transform - - uid: 3377 - components: - - pos: 72.5,37.5 - parent: 2 - type: Transform - - uid: 3378 - components: - - pos: 72.5,39.5 - parent: 2 - type: Transform - - uid: 3379 - components: - - pos: 72.5,40.5 - parent: 2 - type: Transform - - uid: 3383 - components: - - pos: 70.5,35.5 - parent: 2 - type: Transform - - uid: 3384 - components: - - pos: 69.5,35.5 - parent: 2 - type: Transform - - uid: 3385 - components: - - pos: 68.5,35.5 - parent: 2 - type: Transform - - uid: 3417 - components: - - pos: 70.5,22.5 - parent: 2 - type: Transform - - uid: 3418 - components: - - pos: 69.5,22.5 - parent: 2 - type: Transform - - uid: 3419 - components: - - pos: 68.5,22.5 - parent: 2 - type: Transform - - uid: 3420 - components: - - pos: 68.5,21.5 - parent: 2 - type: Transform - - uid: 3421 - components: - - pos: 68.5,20.5 - parent: 2 - type: Transform - - uid: 3422 - components: - - pos: 68.5,19.5 - parent: 2 - type: Transform - - uid: 3423 - components: - - pos: 69.5,19.5 - parent: 2 - type: Transform - - uid: 3424 - components: - - pos: 70.5,19.5 - parent: 2 - type: Transform - - uid: 3425 - components: - - pos: 71.5,19.5 - parent: 2 - type: Transform - - uid: 3426 - components: - - pos: 72.5,19.5 - parent: 2 - type: Transform - - uid: 3427 - components: - - pos: 73.5,19.5 - parent: 2 - type: Transform - - uid: 3428 - components: - - pos: 73.5,20.5 - parent: 2 - type: Transform - - uid: 3429 - components: - - pos: 73.5,21.5 - parent: 2 - type: Transform - - uid: 3430 - components: - - pos: 73.5,22.5 - parent: 2 - type: Transform - - uid: 3431 - components: - - pos: 72.5,22.5 - parent: 2 - type: Transform - - uid: 3432 - components: - - pos: 73.5,23.5 - parent: 2 - type: Transform - - uid: 3433 - components: - - pos: 73.5,24.5 - parent: 2 - type: Transform - - uid: 3434 - components: - - pos: 72.5,24.5 - parent: 2 - type: Transform - - uid: 3435 - components: - - pos: 71.5,24.5 - parent: 2 - type: Transform - - uid: 3436 - components: - - pos: 70.5,24.5 - parent: 2 - type: Transform - - uid: 3437 - components: - - pos: 69.5,24.5 - parent: 2 - type: Transform - - uid: 3438 - components: - - pos: 68.5,24.5 - parent: 2 - type: Transform - - uid: 3439 - components: - - pos: 68.5,25.5 - parent: 2 - type: Transform - - uid: 3440 - components: - - pos: 68.5,26.5 - parent: 2 - type: Transform - - uid: 3449 - components: - - pos: 65.5,28.5 - parent: 2 - type: Transform - - uid: 3450 - components: - - pos: 65.5,27.5 - parent: 2 - type: Transform - - uid: 3451 - components: - - pos: 65.5,26.5 - parent: 2 - type: Transform - - uid: 3452 - components: - - pos: 65.5,25.5 - parent: 2 - type: Transform - - uid: 3453 - components: - - pos: 61.5,27.5 - parent: 2 - type: Transform - - uid: 3454 - components: - - pos: 61.5,26.5 - parent: 2 - type: Transform - - uid: 3455 - components: - - pos: 61.5,25.5 - parent: 2 - type: Transform - - uid: 3462 - components: - - pos: 61.5,22.5 - parent: 2 - type: Transform - - uid: 3463 - components: - - pos: 61.5,21.5 - parent: 2 - type: Transform - - uid: 3464 - components: - - pos: 62.5,21.5 - parent: 2 - type: Transform - - uid: 3465 - components: - - pos: 63.5,21.5 - parent: 2 - type: Transform - - uid: 3466 - components: - - pos: 64.5,21.5 - parent: 2 - type: Transform - - uid: 3467 - components: - - pos: 65.5,21.5 - parent: 2 - type: Transform - - uid: 3468 - components: - - pos: 65.5,22.5 - parent: 2 - type: Transform - - uid: 3469 - components: - - pos: 65.5,23.5 - parent: 2 - type: Transform - - uid: 3470 - components: - - pos: 61.5,20.5 - parent: 2 - type: Transform - - uid: 3471 - components: - - pos: 61.5,19.5 - parent: 2 - type: Transform - - uid: 3472 - components: - - pos: 61.5,18.5 - parent: 2 - type: Transform - - uid: 3473 - components: - - pos: 61.5,17.5 - parent: 2 - type: Transform - - uid: 3481 - components: - - pos: 50.5,26.5 - parent: 2 - type: Transform - - uid: 3482 - components: - - pos: 52.5,26.5 - parent: 2 - type: Transform - - uid: 3483 - components: - - pos: 51.5,22.5 - parent: 2 - type: Transform - - uid: 3484 - components: - - pos: 52.5,22.5 - parent: 2 - type: Transform - - uid: 3488 - components: - - pos: 51.5,26.5 - parent: 2 - type: Transform - - uid: 3491 - components: - - pos: 49.5,22.5 - parent: 2 - type: Transform - - uid: 3492 - components: - - pos: 50.5,22.5 - parent: 2 - type: Transform - - uid: 3494 - components: - - pos: 51.5,27.5 - parent: 2 - type: Transform - - uid: 3498 - components: - - pos: 49.5,26.5 - parent: 2 - type: Transform - - uid: 3505 - components: - - pos: 48.5,22.5 - parent: 2 - type: Transform - - uid: 3506 - components: - - pos: 48.5,23.5 - parent: 2 - type: Transform - - uid: 3507 - components: - - pos: 48.5,24.5 - parent: 2 - type: Transform - - uid: 3508 - components: - - pos: 48.5,25.5 - parent: 2 - type: Transform - - uid: 3509 - components: - - pos: 48.5,26.5 - parent: 2 - type: Transform - - uid: 3510 - components: - - pos: 53.5,26.5 - parent: 2 - type: Transform - - uid: 3514 - components: - - pos: 53.5,21.5 - parent: 2 - type: Transform - - uid: 3515 - components: - - pos: 53.5,22.5 - parent: 2 - type: Transform - - uid: 3516 - components: - - pos: 55.5,21.5 - parent: 2 - type: Transform - - uid: 3517 - components: - - pos: 54.5,21.5 - parent: 2 - type: Transform - - uid: 3518 - components: - - pos: 56.5,21.5 - parent: 2 - type: Transform - - uid: 3519 - components: - - pos: 57.5,21.5 - parent: 2 - type: Transform - - uid: 3528 - components: - - pos: 61.5,16.5 - parent: 2 - type: Transform - - uid: 3536 - components: - - pos: 74.5,19.5 - parent: 2 - type: Transform - - uid: 3537 - components: - - pos: 75.5,19.5 - parent: 2 - type: Transform - - uid: 3538 - components: - - pos: 75.5,18.5 - parent: 2 - type: Transform - - uid: 3539 - components: - - pos: 75.5,14.5 - parent: 2 - type: Transform - - uid: 3540 - components: - - pos: 75.5,13.5 - parent: 2 - type: Transform - - uid: 3541 - components: - - pos: 76.5,13.5 - parent: 2 - type: Transform - - uid: 3542 - components: - - pos: 81.5,13.5 - parent: 2 - type: Transform - - uid: 3544 - components: - - pos: 91.5,-5.5 - parent: 2 - type: Transform - - uid: 3545 - components: - - pos: 91.5,-4.5 - parent: 2 - type: Transform - - uid: 3547 - components: - - pos: 91.5,-3.5 - parent: 2 - type: Transform - - uid: 3548 - components: - - pos: 91.5,-2.5 - parent: 2 - type: Transform - - uid: 3549 - components: - - pos: 91.5,-1.5 - parent: 2 - type: Transform - - uid: 3552 - components: - - pos: 88.5,2.5 - parent: 2 - type: Transform - - uid: 3554 - components: - - pos: 90.5,-1.5 - parent: 2 - type: Transform - - uid: 3555 - components: - - pos: 90.5,-0.5 - parent: 2 - type: Transform - - uid: 3556 - components: - - pos: 88.5,6.5 - parent: 2 - type: Transform - - uid: 3557 - components: - - pos: 87.5,6.5 - parent: 2 - type: Transform - - uid: 3558 - components: - - pos: 87.5,2.5 - parent: 2 - type: Transform - - uid: 3559 - components: - - pos: 86.5,2.5 - parent: 2 - type: Transform - - uid: 3560 - components: - - pos: 85.5,2.5 - parent: 2 - type: Transform - - uid: 3561 - components: - - pos: 85.5,3.5 - parent: 2 - type: Transform - - uid: 3562 - components: - - pos: 85.5,5.5 - parent: 2 - type: Transform - - uid: 3564 - components: - - pos: 90.5,6.5 - parent: 2 - type: Transform - - uid: 3565 - components: - - pos: 89.5,6.5 - parent: 2 - type: Transform - - uid: 3584 - components: - - pos: 86.5,6.5 - parent: 2 - type: Transform - - uid: 3587 - components: - - pos: 89.5,2.5 - parent: 2 - type: Transform - - uid: 3589 - components: - - pos: 84.5,13.5 - parent: 2 - type: Transform - - uid: 3590 - components: - - pos: 85.5,13.5 - parent: 2 - type: Transform - - uid: 3591 - components: - - pos: 82.5,13.5 - parent: 2 - type: Transform - - uid: 3596 - components: - - pos: 86.5,7.5 - parent: 2 - type: Transform - - uid: 3597 - components: - - pos: 90.5,2.5 - parent: 2 - type: Transform - - uid: 3599 - components: - - pos: 87.5,13.5 - parent: 2 - type: Transform - - uid: 3600 - components: - - pos: 87.5,12.5 - parent: 2 - type: Transform - - uid: 3601 - components: - - pos: 87.5,11.5 - parent: 2 - type: Transform - - uid: 3602 - components: - - pos: 87.5,10.5 - parent: 2 - type: Transform - - uid: 3603 - components: - - pos: 87.5,9.5 - parent: 2 - type: Transform - - uid: 3604 - components: - - pos: 86.5,9.5 - parent: 2 - type: Transform - - uid: 3605 - components: - - pos: 86.5,8.5 - parent: 2 - type: Transform - - uid: 3607 - components: - - pos: 83.5,13.5 - parent: 2 - type: Transform - - uid: 3608 - components: - - pos: 86.5,13.5 - parent: 2 - type: Transform - - uid: 3628 - components: - - pos: 82.5,0.5 - parent: 2 - type: Transform - - uid: 3629 - components: - - pos: 82.5,-1.5 - parent: 2 - type: Transform - - uid: 3630 - components: - - pos: 82.5,-0.5 - parent: 2 - type: Transform - - uid: 3631 - components: - - pos: 82.5,-2.5 - parent: 2 - type: Transform - - uid: 3632 - components: - - pos: 83.5,-2.5 - parent: 2 - type: Transform - - uid: 3633 - components: - - pos: 83.5,-8.5 - parent: 2 - type: Transform - - uid: 3634 - components: - - pos: 69.5,12.5 - parent: 2 - type: Transform - - uid: 3635 - components: - - pos: 70.5,12.5 - parent: 2 - type: Transform - - uid: 3636 - components: - - pos: 71.5,12.5 - parent: 2 - type: Transform - - uid: 3637 - components: - - pos: 72.5,12.5 - parent: 2 - type: Transform - - uid: 3638 - components: - - pos: 72.5,13.5 - parent: 2 - type: Transform - - uid: 3639 - components: - - pos: 72.5,14.5 - parent: 2 - type: Transform - - uid: 3640 - components: - - pos: 72.5,15.5 - parent: 2 - type: Transform - - uid: 3641 - components: - - pos: 72.5,16.5 - parent: 2 - type: Transform - - uid: 3642 - components: - - pos: 72.5,17.5 - parent: 2 - type: Transform - - uid: 3643 - components: - - pos: 71.5,17.5 - parent: 2 - type: Transform - - uid: 3644 - components: - - pos: 70.5,17.5 - parent: 2 - type: Transform - - uid: 3645 - components: - - pos: 69.5,17.5 - parent: 2 - type: Transform - - uid: 3646 - components: - - pos: 68.5,17.5 - parent: 2 - type: Transform - - uid: 3647 - components: - - pos: 68.5,12.5 - parent: 2 - type: Transform - - uid: 3648 - components: - - pos: 67.5,12.5 - parent: 2 - type: Transform - - uid: 3649 - components: - - pos: 67.5,17.5 - parent: 2 - type: Transform - - uid: 3650 - components: - - pos: 66.5,17.5 - parent: 2 - type: Transform - - uid: 3651 - components: - - pos: 65.5,17.5 - parent: 2 - type: Transform - - uid: 3655 - components: - - pos: 66.5,12.5 - parent: 2 - type: Transform - - uid: 3656 - components: - - pos: 65.5,12.5 - parent: 2 - type: Transform - - uid: 3657 - components: - - pos: 64.5,17.5 - parent: 2 - type: Transform - - uid: 3658 - components: - - pos: 63.5,17.5 - parent: 2 - type: Transform - - uid: 3659 - components: - - pos: 62.5,17.5 - parent: 2 - type: Transform - - uid: 3660 - components: - - pos: 58.5,7.5 - parent: 2 - type: Transform - - uid: 3661 - components: - - pos: 59.5,7.5 - parent: 2 - type: Transform - - uid: 3662 - components: - - pos: 59.5,8.5 - parent: 2 - type: Transform - - uid: 3663 - components: - - pos: 59.5,9.5 - parent: 2 - type: Transform - - uid: 3664 - components: - - pos: 59.5,10.5 - parent: 2 - type: Transform - - uid: 3665 - components: - - pos: 59.5,11.5 - parent: 2 - type: Transform - - uid: 3668 - components: - - pos: 64.5,11.5 - parent: 2 - type: Transform - - uid: 3669 - components: - - pos: 64.5,10.5 - parent: 2 - type: Transform - - uid: 3670 - components: - - pos: 64.5,9.5 - parent: 2 - type: Transform - - uid: 3671 - components: - - pos: 64.5,8.5 - parent: 2 - type: Transform - - uid: 3672 - components: - - pos: 64.5,7.5 - parent: 2 - type: Transform - - uid: 3673 - components: - - pos: 63.5,7.5 - parent: 2 - type: Transform - - uid: 3674 - components: - - pos: 62.5,7.5 - parent: 2 - type: Transform - - uid: 3675 - components: - - pos: 61.5,7.5 - parent: 2 - type: Transform - - uid: 3676 - components: - - pos: 60.5,7.5 - parent: 2 - type: Transform - - uid: 3709 - components: - - pos: 91.5,-7.5 - parent: 2 - type: Transform - - uid: 3710 - components: - - pos: 91.5,-8.5 - parent: 2 - type: Transform - - uid: 3711 - components: - - pos: 91.5,-9.5 - parent: 2 - type: Transform - - uid: 3712 - components: - - pos: 91.5,-10.5 - parent: 2 - type: Transform - - uid: 3713 - components: - - pos: 91.5,-11.5 - parent: 2 - type: Transform - - uid: 3714 - components: - - pos: 90.5,-11.5 - parent: 2 - type: Transform - - uid: 3715 - components: - - pos: 89.5,-11.5 - parent: 2 - type: Transform - - uid: 3716 - components: - - pos: 88.5,-11.5 - parent: 2 - type: Transform - - uid: 3717 - components: - - pos: 88.5,-9.5 - parent: 2 - type: Transform - - uid: 3718 - components: - - pos: 88.5,-8.5 - parent: 2 - type: Transform - - uid: 3719 - components: - - pos: 88.5,-7.5 - parent: 2 - type: Transform - - uid: 3722 - components: - - pos: 83.5,-3.5 - parent: 2 - type: Transform - - uid: 3723 - components: - - pos: 83.5,-4.5 - parent: 2 - type: Transform - - uid: 3724 - components: - - pos: 83.5,-7.5 - parent: 2 - type: Transform - - uid: 3725 - components: - - pos: 83.5,-5.5 - parent: 2 - type: Transform - - uid: 3726 - components: - - pos: 83.5,-6.5 - parent: 2 - type: Transform - - uid: 3727 - components: - - pos: 85.5,-6.5 - parent: 2 - type: Transform - - uid: 3728 - components: - - pos: 84.5,-6.5 - parent: 2 - type: Transform - - uid: 3737 - components: - - pos: 85.5,-7.5 - parent: 2 - type: Transform - - uid: 3738 - components: - - pos: 85.5,-8.5 - parent: 2 - type: Transform - - uid: 3739 - components: - - pos: 85.5,-9.5 - parent: 2 - type: Transform - - uid: 3740 - components: - - pos: 85.5,-10.5 - parent: 2 - type: Transform - - uid: 3741 - components: - - pos: 85.5,-11.5 - parent: 2 - type: Transform - - uid: 3744 - components: - - pos: 81.5,0.5 - parent: 2 - type: Transform - - uid: 3745 - components: - - pos: 80.5,0.5 - parent: 2 - type: Transform - - uid: 3746 - components: - - pos: 79.5,0.5 - parent: 2 - type: Transform - - uid: 3747 - components: - - pos: 79.5,-0.5 - parent: 2 - type: Transform - - uid: 3748 - components: - - pos: 79.5,-1.5 - parent: 2 - type: Transform - - uid: 3749 - components: - - pos: 79.5,-2.5 - parent: 2 - type: Transform - - uid: 3750 - components: - - pos: 78.5,-2.5 - parent: 2 - type: Transform - - uid: 3751 - components: - - pos: 78.5,-8.5 - parent: 2 - type: Transform - - uid: 3752 - components: - - pos: 78.5,-9.5 - parent: 2 - type: Transform - - uid: 3753 - components: - - pos: 77.5,-9.5 - parent: 2 - type: Transform - - uid: 3754 - components: - - pos: 76.5,-9.5 - parent: 2 - type: Transform - - uid: 3755 - components: - - pos: 75.5,-9.5 - parent: 2 - type: Transform - - uid: 3756 - components: - - pos: 75.5,-8.5 - parent: 2 - type: Transform - - uid: 3757 - components: - - pos: 75.5,-7.5 - parent: 2 - type: Transform - - uid: 3758 - components: - - pos: 75.5,-6.5 - parent: 2 - type: Transform - - uid: 3759 - components: - - pos: 75.5,-5.5 - parent: 2 - type: Transform - - uid: 3760 - components: - - pos: 75.5,-4.5 - parent: 2 - type: Transform - - uid: 3761 - components: - - pos: 75.5,-3.5 - parent: 2 - type: Transform - - uid: 3762 - components: - - pos: 75.5,-2.5 - parent: 2 - type: Transform - - uid: 3763 - components: - - pos: 76.5,-2.5 - parent: 2 - type: Transform - - uid: 3764 - components: - - pos: 76.5,-1.5 - parent: 2 - type: Transform - - uid: 3765 - components: - - pos: 76.5,-0.5 - parent: 2 - type: Transform - - uid: 3766 - components: - - pos: 76.5,0.5 - parent: 2 - type: Transform - - uid: 3767 - components: - - pos: 78.5,0.5 - parent: 2 - type: Transform - - uid: 3775 - components: - - pos: 74.5,-4.5 - parent: 2 - type: Transform - - uid: 3780 - components: - - pos: 73.5,-4.5 - parent: 2 - type: Transform - - uid: 3784 - components: - - pos: 74.5,-7.5 - parent: 2 - type: Transform - - uid: 3785 - components: - - pos: 73.5,-7.5 - parent: 2 - type: Transform - - uid: 3788 - components: - - pos: 73.5,-8.5 - parent: 2 - type: Transform - - uid: 3789 - components: - - pos: 73.5,-9.5 - parent: 2 - type: Transform - - uid: 3790 - components: - - pos: 73.5,-10.5 - parent: 2 - type: Transform - - uid: 3791 - components: - - pos: 73.5,-11.5 - parent: 2 - type: Transform - - uid: 3792 - components: - - pos: 74.5,-11.5 - parent: 2 - type: Transform - - uid: 3793 - components: - - pos: 75.5,-11.5 - parent: 2 - type: Transform - - uid: 3794 - components: - - pos: 77.5,-11.5 - parent: 2 - type: Transform - - uid: 3795 - components: - - pos: 76.5,-11.5 - parent: 2 - type: Transform - - uid: 3796 - components: - - pos: 78.5,-11.5 - parent: 2 - type: Transform - - uid: 3797 - components: - - pos: 79.5,-11.5 - parent: 2 - type: Transform - - uid: 3798 - components: - - pos: 80.5,-11.5 - parent: 2 - type: Transform - - uid: 3799 - components: - - pos: 81.5,-11.5 - parent: 2 - type: Transform - - uid: 3800 - components: - - pos: 82.5,-11.5 - parent: 2 - type: Transform - - uid: 3801 - components: - - pos: 83.5,-11.5 - parent: 2 - type: Transform - - uid: 3802 - components: - - pos: 84.5,-11.5 - parent: 2 - type: Transform - - uid: 3829 - components: - - pos: 90.5,-12.5 - parent: 2 - type: Transform - - uid: 3830 - components: - - pos: 90.5,-13.5 - parent: 2 - type: Transform - - uid: 3836 - components: - - pos: 71.5,-20.5 - parent: 2 - type: Transform - - uid: 3837 - components: - - pos: 70.5,-20.5 - parent: 2 - type: Transform - - uid: 3838 - components: - - pos: 69.5,-20.5 - parent: 2 - type: Transform - - uid: 3839 - components: - - pos: 67.5,-20.5 - parent: 2 - type: Transform - - uid: 3840 - components: - - pos: 68.5,-20.5 - parent: 2 - type: Transform - - uid: 3841 - components: - - pos: 65.5,-20.5 - parent: 2 - type: Transform - - uid: 3842 - components: - - pos: 66.5,-20.5 - parent: 2 - type: Transform - - uid: 3844 - components: - - pos: 57.5,-20.5 - parent: 2 - type: Transform - - uid: 3847 - components: - - pos: 72.5,-20.5 - parent: 2 - type: Transform - - uid: 3848 - components: - - pos: 72.5,-19.5 - parent: 2 - type: Transform - - uid: 3849 - components: - - pos: 72.5,-18.5 - parent: 2 - type: Transform - - uid: 3850 - components: - - pos: 72.5,-17.5 - parent: 2 - type: Transform - - uid: 3879 - components: - - pos: 90.5,-14.5 - parent: 2 - type: Transform - - uid: 3880 - components: - - pos: 90.5,-15.5 - parent: 2 - type: Transform - - uid: 3881 - components: - - pos: 90.5,-16.5 - parent: 2 - type: Transform - - uid: 3882 - components: - - pos: 90.5,-17.5 - parent: 2 - type: Transform - - uid: 3883 - components: - - pos: 91.5,-17.5 - parent: 2 - type: Transform - - uid: 3884 - components: - - pos: 91.5,-18.5 - parent: 2 - type: Transform - - uid: 3886 - components: - - pos: 91.5,-21.5 - parent: 2 - type: Transform - - uid: 3887 - components: - - pos: 91.5,-22.5 - parent: 2 - type: Transform - - uid: 3888 - components: - - pos: 90.5,-22.5 - parent: 2 - type: Transform - - uid: 3890 - components: - - pos: 88.5,-22.5 - parent: 2 - type: Transform - - uid: 3891 - components: - - pos: 87.5,-22.5 - parent: 2 - type: Transform - - uid: 3894 - components: - - pos: 93.5,-21.5 - parent: 2 - type: Transform - - uid: 3895 - components: - - pos: 87.5,-21.5 - parent: 2 - type: Transform - - uid: 3896 - components: - - pos: 89.5,-22.5 - parent: 2 - type: Transform - - uid: 3897 - components: - - pos: 87.5,-19.5 - parent: 2 - type: Transform - - uid: 3898 - components: - - pos: 87.5,-19.5 - parent: 2 - type: Transform - - uid: 3899 - components: - - pos: 92.5,-18.5 - parent: 2 - type: Transform - - uid: 3900 - components: - - pos: 87.5,-18.5 - parent: 2 - type: Transform - - uid: 3901 - components: - - pos: 87.5,-17.5 - parent: 2 - type: Transform - - uid: 3960 - components: - - pos: 47.5,-24.5 - parent: 2 - type: Transform - - uid: 3961 - components: - - pos: 44.5,-26.5 - parent: 2 - type: Transform - - uid: 3962 - components: - - pos: 46.5,-26.5 - parent: 2 - type: Transform - - uid: 3963 - components: - - pos: 44.5,-28.5 - parent: 2 - type: Transform - - uid: 3966 - components: - - pos: 44.5,-30.5 - parent: 2 - type: Transform - - uid: 3967 - components: - - pos: 47.5,-30.5 - parent: 2 - type: Transform - - uid: 3968 - components: - - pos: 44.5,-32.5 - parent: 2 - type: Transform - - uid: 3970 - components: - - pos: 47.5,-34.5 - parent: 2 - type: Transform - - uid: 3971 - components: - - pos: 47.5,-32.5 - parent: 2 - type: Transform - - uid: 3972 - components: - - pos: 11.5,-58.5 - parent: 2 - type: Transform - - uid: 3989 - components: - - pos: 21.5,-59.5 - parent: 2 - type: Transform - - uid: 3990 - components: - - pos: 20.5,-59.5 - parent: 2 - type: Transform - - uid: 3991 - components: - - pos: 29.5,-59.5 - parent: 2 - type: Transform - - uid: 3992 - components: - - pos: 11.5,-56.5 - parent: 2 - type: Transform - - uid: 3993 - components: - - pos: 11.5,-59.5 - parent: 2 - type: Transform - - uid: 3994 - components: - - pos: 12.5,-59.5 - parent: 2 - type: Transform - - uid: 3995 - components: - - pos: 22.5,-59.5 - parent: 2 - type: Transform - - uid: 3996 - components: - - pos: 15.5,-59.5 - parent: 2 - type: Transform - - uid: 3999 - components: - - pos: 47.5,-22.5 - parent: 2 - type: Transform - - uid: 4005 - components: - - pos: 45.5,-24.5 - parent: 2 - type: Transform - - uid: 4006 - components: - - pos: 46.5,-28.5 - parent: 2 - type: Transform - - uid: 4055 - components: - - pos: 48.5,-33.5 - parent: 2 - type: Transform - - uid: 4056 - components: - - pos: 48.5,-34.5 - parent: 2 - type: Transform - - uid: 4057 - components: - - pos: 49.5,-22.5 - parent: 2 - type: Transform - - uid: 4077 - components: - - pos: 48.5,-22.5 - parent: 2 - type: Transform - - uid: 4078 - components: - - pos: 48.5,-32.5 - parent: 2 - type: Transform - - uid: 4079 - components: - - pos: 49.5,-33.5 - parent: 2 - type: Transform - - uid: 4080 - components: - - pos: 49.5,-29.5 - parent: 2 - type: Transform - - uid: 4081 - components: - - pos: 49.5,-26.5 - parent: 2 - type: Transform - - uid: 4087 - components: - - pos: 49.5,-23.5 - parent: 2 - type: Transform - - uid: 4088 - components: - - pos: 49.5,-24.5 - parent: 2 - type: Transform - - uid: 4112 - components: - - pos: 19.5,-13.5 - parent: 2 - type: Transform - - uid: 4118 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-21.5 - parent: 2 - type: Transform - - uid: 4119 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-21.5 - parent: 2 - type: Transform - - uid: 4120 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-21.5 - parent: 2 - type: Transform - - uid: 4121 - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-21.5 - parent: 2 - type: Transform - - uid: 4123 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-21.5 - parent: 2 - type: Transform - - uid: 4166 - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-21.5 - parent: 2 - type: Transform - - uid: 4167 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-21.5 - parent: 2 - type: Transform - - uid: 4168 - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-21.5 - parent: 2 - type: Transform - - uid: 4169 - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-21.5 - parent: 2 - type: Transform - - uid: 4170 - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-21.5 - parent: 2 - type: Transform - - uid: 4171 - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-21.5 - parent: 2 - type: Transform - - uid: 4172 - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-21.5 - parent: 2 - type: Transform - - uid: 4173 - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-21.5 - parent: 2 - type: Transform - - uid: 4174 - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-20.5 - parent: 2 - type: Transform - - uid: 4187 - components: - - pos: 32.5,-21.5 - parent: 2 - type: Transform - - uid: 4229 - components: - - pos: 37.5,-33.5 - parent: 2 - type: Transform - - uid: 4244 - components: - - pos: 30.5,-22.5 - parent: 2 - type: Transform - - uid: 4246 - components: - - pos: 31.5,-21.5 - parent: 2 - type: Transform - - uid: 4254 - components: - - pos: 33.5,-29.5 - parent: 2 - type: Transform - - uid: 4255 - components: - - pos: 33.5,-31.5 - parent: 2 - type: Transform - - uid: 4256 - components: - - pos: 33.5,-33.5 - parent: 2 - type: Transform - - uid: 4261 - components: - - pos: 48.5,-25.5 - parent: 2 - type: Transform - - uid: 4262 - components: - - pos: 48.5,-26.5 - parent: 2 - type: Transform - - uid: 4263 - components: - - pos: 48.5,-27.5 - parent: 2 - type: Transform - - uid: 4275 - components: - - pos: 45.5,-34.5 - parent: 2 - type: Transform - - uid: 4278 - components: - - pos: 33.5,-26.5 - parent: 2 - type: Transform - - uid: 4279 - components: - - pos: 17.5,-20.5 - parent: 2 - type: Transform - - uid: 4293 - components: - - pos: 18.5,-20.5 - parent: 2 - type: Transform - - uid: 4294 - components: - - pos: 48.5,-30.5 - parent: 2 - type: Transform - - uid: 4295 - components: - - pos: 48.5,-28.5 - parent: 2 - type: Transform - - uid: 4299 - components: - - pos: 50.5,-47.5 - parent: 2 - type: Transform - - uid: 4329 - components: - - pos: 30.5,-45.5 - parent: 2 - type: Transform - - uid: 4330 - components: - - pos: 29.5,-45.5 - parent: 2 - type: Transform - - uid: 4331 - components: - - pos: 27.5,-44.5 - parent: 2 - type: Transform - - uid: 4332 - components: - - pos: 27.5,-43.5 - parent: 2 - type: Transform - - uid: 4333 - components: - - pos: 33.5,-37.5 - parent: 2 - type: Transform - - uid: 4369 - components: - - pos: 37.5,-37.5 - parent: 2 - type: Transform - - uid: 4373 - components: - - pos: 36.5,-37.5 - parent: 2 - type: Transform - - uid: 4374 - components: - - pos: 33.5,-38.5 - parent: 2 - type: Transform - - uid: 4375 - components: - - pos: 33.5,-41.5 - parent: 2 - type: Transform - - uid: 4382 - components: - - pos: 34.5,-37.5 - parent: 2 - type: Transform - - uid: 4383 - components: - - pos: 33.5,-40.5 - parent: 2 - type: Transform - - uid: 4384 - components: - - pos: 34.5,-41.5 - parent: 2 - type: Transform - - uid: 4386 - components: - - pos: 36.5,-41.5 - parent: 2 - type: Transform - - uid: 4387 - components: - - pos: 37.5,-41.5 - parent: 2 - type: Transform - - uid: 4388 - components: - - pos: 37.5,-40.5 - parent: 2 - type: Transform - - uid: 4389 - components: - - pos: 37.5,-38.5 - parent: 2 - type: Transform - - uid: 4395 - components: - - pos: 27.5,-45.5 - parent: 2 - type: Transform - - uid: 4396 - components: - - pos: 28.5,-45.5 - parent: 2 - type: Transform - - uid: 4417 - components: - - pos: 47.5,-36.5 - parent: 2 - type: Transform - - uid: 4418 - components: - - pos: 41.5,-36.5 - parent: 2 - type: Transform - - uid: 4450 - components: - - pos: 33.5,-45.5 - parent: 2 - type: Transform - - uid: 4466 - components: - - rot: 3.141592653589793 rad - pos: 38.5,-41.5 - parent: 2 - type: Transform - - uid: 4468 - components: - - rot: 3.141592653589793 rad - pos: 40.5,-41.5 - parent: 2 - type: Transform - - uid: 4472 - components: - - rot: 3.141592653589793 rad - pos: 42.5,-41.5 - parent: 2 - type: Transform - - uid: 4477 - components: - - rot: 3.141592653589793 rad - pos: 44.5,-41.5 - parent: 2 - type: Transform - - uid: 4481 - components: - - rot: 3.141592653589793 rad - pos: 46.5,-41.5 - parent: 2 - type: Transform - - uid: 4486 - components: - - pos: 47.5,-41.5 - parent: 2 - type: Transform - - uid: 4491 - components: - - pos: 45.5,-42.5 - parent: 2 - type: Transform - - uid: 4567 - components: - - pos: 41.5,-37.5 - parent: 2 - type: Transform - - uid: 4743 - components: - - pos: 44.5,27.5 - parent: 2 - type: Transform - - uid: 4885 - components: - - pos: 13.5,35.5 - parent: 2 - type: Transform - - uid: 5287 - components: - - pos: 6.5,18.5 - parent: 2 - type: Transform - - uid: 5288 - components: - - pos: 4.5,18.5 - parent: 2 - type: Transform - - uid: 5291 - components: - - pos: -0.5,1.5 - parent: 2 - type: Transform - - uid: 5292 - components: - - pos: 2.5,1.5 - parent: 2 - type: Transform - - uid: 5298 - components: - - pos: -13.5,1.5 - parent: 2 - type: Transform - - uid: 5300 - components: - - pos: 45.5,-41.5 - parent: 2 - type: Transform - - uid: 5352 - components: - - pos: -14.5,1.5 - parent: 2 - type: Transform - - uid: 5353 - components: - - pos: 2.5,5.5 - parent: 2 - type: Transform - - uid: 5354 - components: - - pos: 2.5,9.5 - parent: 2 - type: Transform - - uid: 5364 - components: - - pos: 46.5,12.5 - parent: 2 - type: Transform - - uid: 5477 - components: - - pos: 72.5,34.5 - parent: 2 - type: Transform - - uid: 5478 - components: - - pos: 72.5,30.5 - parent: 2 - type: Transform - - uid: 5479 - components: - - pos: 72.5,26.5 - parent: 2 - type: Transform - - uid: 5480 - components: - - pos: 71.5,26.5 - parent: 2 - type: Transform - - uid: 5481 - components: - - pos: 70.5,26.5 - parent: 2 - type: Transform - - uid: 5482 - components: - - pos: 69.5,26.5 - parent: 2 - type: Transform - - uid: 5724 - components: - - pos: 51.5,-10.5 - parent: 2 - type: Transform - - uid: 5725 - components: - - pos: 51.5,-11.5 - parent: 2 - type: Transform - - uid: 6120 - components: - - pos: 12.5,-41.5 - parent: 2 - type: Transform - - uid: 6121 - components: - - pos: 12.5,-40.5 - parent: 2 - type: Transform - - uid: 6122 - components: - - pos: 13.5,-40.5 - parent: 2 - type: Transform - - uid: 6123 - components: - - pos: 14.5,-40.5 - parent: 2 - type: Transform - - uid: 6138 - components: - - pos: 8.5,-41.5 - parent: 2 - type: Transform - - uid: 6139 - components: - - pos: 10.5,-43.5 - parent: 2 - type: Transform - - uid: 6196 - components: - - pos: 69.5,-12.5 - parent: 2 - type: Transform - - uid: 6197 - components: - - pos: 70.5,-12.5 - parent: 2 - type: Transform - - uid: 6209 - components: - - pos: 62.5,-20.5 - parent: 2 - type: Transform - - uid: 6210 - components: - - pos: 64.5,-20.5 - parent: 2 - type: Transform - - uid: 6211 - components: - - pos: 60.5,-20.5 - parent: 2 - type: Transform - - uid: 6212 - components: - - pos: 56.5,-20.5 - parent: 2 - type: Transform - - uid: 6782 - components: - - pos: 58.5,-20.5 - parent: 2 - type: Transform - - uid: 6783 - components: - - pos: 59.5,-20.5 - parent: 2 - type: Transform - - uid: 6784 - components: - - pos: 61.5,-20.5 - parent: 2 - type: Transform - - uid: 6785 - components: - - pos: 63.5,-20.5 - parent: 2 - type: Transform - - uid: 6816 - components: - - pos: -22.5,-15.5 - parent: 2 - type: Transform - - uid: 6822 - components: - - pos: -4.5,-13.5 - parent: 2 - type: Transform - - uid: 6838 - components: - - pos: -10.5,-15.5 - parent: 2 - type: Transform - - uid: 6860 - components: - - pos: -15.5,14.5 - parent: 2 - type: Transform - - uid: 6867 - components: - - pos: 4.5,14.5 - parent: 2 - type: Transform - - uid: 6880 - components: - - pos: 14.5,-12.5 - parent: 2 - type: Transform - - uid: 6881 - components: - - pos: 15.5,-12.5 - parent: 2 - type: Transform - - uid: 6882 - components: - - pos: 17.5,-12.5 - parent: 2 - type: Transform - - uid: 6887 - components: - - pos: -7.5,-7.5 - parent: 2 - type: Transform - - uid: 6895 - components: - - pos: -21.5,-15.5 - parent: 2 - type: Transform - - uid: 6902 - components: - - pos: 10.5,32.5 - parent: 2 - type: Transform - - uid: 6903 - components: - - pos: 10.5,31.5 - parent: 2 - type: Transform - - uid: 6904 - components: - - pos: 10.5,30.5 - parent: 2 - type: Transform - - uid: 6905 - components: - - pos: 10.5,29.5 - parent: 2 - type: Transform - - uid: 6906 - components: - - pos: 12.5,32.5 - parent: 2 - type: Transform - - uid: 6907 - components: - - pos: 13.5,32.5 - parent: 2 - type: Transform - - uid: 6908 - components: - - pos: 11.5,32.5 - parent: 2 - type: Transform - - uid: 6909 - components: - - pos: 14.5,32.5 - parent: 2 - type: Transform - - uid: 6910 - components: - - pos: 14.5,31.5 - parent: 2 - type: Transform - - uid: 6911 - components: - - pos: 14.5,29.5 - parent: 2 - type: Transform - - uid: 6912 - components: - - pos: 14.5,30.5 - parent: 2 - type: Transform - - uid: 7466 - components: - - pos: -3.5,14.5 - parent: 2 - type: Transform - - uid: 7471 - components: - - pos: -1.5,14.5 - parent: 2 - type: Transform - - uid: 7474 - components: - - pos: 1.5,14.5 - parent: 2 - type: Transform - - uid: 7533 - components: - - pos: -4.5,14.5 - parent: 2 - type: Transform - - uid: 7550 - components: - - pos: -5.5,14.5 - parent: 2 - type: Transform - - uid: 7551 - components: - - pos: -6.5,1.5 - parent: 2 - type: Transform - - uid: 7559 - components: - - pos: -11.5,1.5 - parent: 2 - type: Transform - - uid: 7587 - components: - - pos: -14.5,14.5 - parent: 2 - type: Transform - - uid: 7669 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,0.5 - parent: 2 - type: Transform - - uid: 7712 - components: - - pos: -16.5,14.5 - parent: 2 - type: Transform - - uid: 7763 - components: - - pos: -13.5,14.5 - parent: 2 - type: Transform - - uid: 7840 - components: - - pos: -18.5,14.5 - parent: 2 - type: Transform - - uid: 7897 - components: - - pos: 3.5,-33.5 - parent: 2 - type: Transform - - uid: 7898 - components: - - pos: 2.5,-33.5 - parent: 2 - type: Transform - - uid: 7899 - components: - - pos: 1.5,-33.5 - parent: 2 - type: Transform - - uid: 7900 - components: - - pos: -0.5,-13.5 - parent: 2 - type: Transform - - uid: 7901 - components: - - pos: 2.5,-17.5 - parent: 2 - type: Transform - - uid: 7902 - components: - - pos: -0.5,-14.5 - parent: 2 - type: Transform - - uid: 7903 - components: - - pos: -0.5,-15.5 - parent: 2 - type: Transform - - uid: 7904 - components: - - pos: -0.5,-16.5 - parent: 2 - type: Transform - - uid: 7905 - components: - - pos: -0.5,-17.5 - parent: 2 - type: Transform - - uid: 7906 - components: - - pos: 5.5,-17.5 - parent: 2 - type: Transform - - uid: 7907 - components: - - pos: 6.5,-17.5 - parent: 2 - type: Transform - - uid: 7908 - components: - - pos: 7.5,-17.5 - parent: 2 - type: Transform - - uid: 7909 - components: - - pos: 8.5,-17.5 - parent: 2 - type: Transform - - uid: 7910 - components: - - pos: 8.5,-18.5 - parent: 2 - type: Transform - - uid: 7911 - components: - - pos: 8.5,-19.5 - parent: 2 - type: Transform - - uid: 7912 - components: - - pos: 8.5,-20.5 - parent: 2 - type: Transform - - uid: 7913 - components: - - pos: 8.5,-21.5 - parent: 2 - type: Transform - - uid: 7914 - components: - - pos: 8.5,-22.5 - parent: 2 - type: Transform - - uid: 7915 - components: - - pos: 6.5,-28.5 - parent: 2 - type: Transform - - uid: 7916 - components: - - pos: 6.5,-29.5 - parent: 2 - type: Transform - - uid: 7917 - components: - - pos: 7.5,-22.5 - parent: 2 - type: Transform - - uid: 7918 - components: - - pos: 6.5,-22.5 - parent: 2 - type: Transform - - uid: 7919 - components: - - pos: 5.5,-22.5 - parent: 2 - type: Transform - - uid: 7920 - components: - - pos: 4.5,-22.5 - parent: 2 - type: Transform - - uid: 7921 - components: - - pos: 3.5,-22.5 - parent: 2 - type: Transform - - uid: 7922 - components: - - pos: 3.5,-23.5 - parent: 2 - type: Transform - - uid: 7923 - components: - - pos: 3.5,-24.5 - parent: 2 - type: Transform - - uid: 7924 - components: - - pos: 3.5,-25.5 - parent: 2 - type: Transform - - uid: 7926 - components: - - pos: 3.5,-26.5 - parent: 2 - type: Transform - - uid: 7927 - components: - - pos: 3.5,-27.5 - parent: 2 - type: Transform - - uid: 7928 - components: - - pos: 0.5,-33.5 - parent: 2 - type: Transform - - uid: 7929 - components: - - pos: 0.5,-32.5 - parent: 2 - type: Transform - - uid: 7930 - components: - - pos: -0.5,-32.5 - parent: 2 - type: Transform - - uid: 7931 - components: - - pos: -1.5,-32.5 - parent: 2 - type: Transform - - uid: 7932 - components: - - pos: -1.5,-31.5 - parent: 2 - type: Transform - - uid: 7933 - components: - - pos: -1.5,-30.5 - parent: 2 - type: Transform - - uid: 7934 - components: - - pos: -1.5,-27.5 - parent: 2 - type: Transform - - uid: 7935 - components: - - pos: 2.5,-27.5 - parent: 2 - type: Transform - - uid: 8326 - components: - - pos: 52.5,-9.5 - parent: 2 - type: Transform - - uid: 8328 - components: - - pos: 44.5,20.5 - parent: 2 - type: Transform - - uid: 8329 - components: - - pos: 44.5,19.5 - parent: 2 - type: Transform - - uid: 8330 - components: - - pos: 44.5,18.5 - parent: 2 - type: Transform - - uid: 8331 - components: - - pos: 44.5,17.5 - parent: 2 - type: Transform - - uid: 8333 - components: - - pos: 44.5,16.5 - parent: 2 - type: Transform - - uid: 8720 - components: - - pos: 93.5,-18.5 - parent: 2 - type: Transform - - uid: 8723 - components: - - pos: 94.5,-18.5 - parent: 2 - type: Transform - - uid: 8724 - components: - - pos: 94.5,-21.5 - parent: 2 - type: Transform - - uid: 8726 - components: - - pos: 92.5,-21.5 - parent: 2 - type: Transform - - uid: 8758 - components: - - pos: 104.5,-10.5 - parent: 2 - type: Transform - - uid: 8760 - components: - - pos: 99.5,-18.5 - parent: 2 - type: Transform - - uid: 8761 - components: - - pos: 99.5,-21.5 - parent: 2 - type: Transform - - uid: 8762 - components: - - pos: 100.5,-18.5 - parent: 2 - type: Transform - - uid: 8763 - components: - - pos: 101.5,-18.5 - parent: 2 - type: Transform - - uid: 8764 - components: - - pos: 100.5,-21.5 - parent: 2 - type: Transform - - uid: 8765 - components: - - pos: 101.5,-21.5 - parent: 2 - type: Transform - - uid: 8768 - components: - - pos: 101.5,-17.5 - parent: 2 - type: Transform - - uid: 8769 - components: - - pos: 101.5,-16.5 - parent: 2 - type: Transform - - uid: 8770 - components: - - pos: 101.5,-15.5 - parent: 2 - type: Transform - - uid: 8771 - components: - - pos: 101.5,-14.5 - parent: 2 - type: Transform - - uid: 8772 - components: - - pos: 101.5,-13.5 - parent: 2 - type: Transform - - uid: 8773 - components: - - pos: 101.5,-12.5 - parent: 2 - type: Transform - - uid: 8774 - components: - - pos: 101.5,-11.5 - parent: 2 - type: Transform - - uid: 8778 - components: - - pos: 104.5,-9.5 - parent: 2 - type: Transform - - uid: 8780 - components: - - pos: 104.5,-11.5 - parent: 2 - type: Transform - - uid: 8781 - components: - - pos: 103.5,-11.5 - parent: 2 - type: Transform - - uid: 8782 - components: - - pos: 102.5,-11.5 - parent: 2 - type: Transform - - uid: 8792 - components: - - pos: 102.5,-21.5 - parent: 2 - type: Transform - - uid: 8793 - components: - - pos: 103.5,-21.5 - parent: 2 - type: Transform - - uid: 8794 - components: - - pos: 104.5,-21.5 - parent: 2 - type: Transform - - uid: 8811 - components: - - pos: 108.5,-25.5 - parent: 2 - type: Transform - - uid: 8812 - components: - - pos: 108.5,-24.5 - parent: 2 - type: Transform - - uid: 8813 - components: - - pos: 108.5,-23.5 - parent: 2 - type: Transform - - uid: 8814 - components: - - pos: 108.5,-22.5 - parent: 2 - type: Transform - - uid: 8815 - components: - - pos: 108.5,-21.5 - parent: 2 - type: Transform - - uid: 8816 - components: - - pos: 108.5,-20.5 - parent: 2 - type: Transform - - uid: 8865 - components: - - pos: 108.5,-10.5 - parent: 2 - type: Transform - - uid: 8866 - components: - - pos: 108.5,-9.5 - parent: 2 - type: Transform - - uid: 8867 - components: - - pos: 108.5,-11.5 - parent: 2 - type: Transform - - uid: 8868 - components: - - pos: 108.5,-12.5 - parent: 2 - type: Transform - - uid: 8869 - components: - - pos: 108.5,-13.5 - parent: 2 - type: Transform - - uid: 8870 - components: - - pos: 108.5,-14.5 - parent: 2 - type: Transform - - uid: 8875 - components: - - pos: 109.5,-20.5 - parent: 2 - type: Transform - - uid: 8876 - components: - - pos: 110.5,-20.5 - parent: 2 - type: Transform - - uid: 8877 - components: - - pos: 113.5,-20.5 - parent: 2 - type: Transform - - uid: 8878 - components: - - pos: 116.5,-20.5 - parent: 2 - type: Transform - - uid: 8885 - components: - - pos: 109.5,-14.5 - parent: 2 - type: Transform - - uid: 8935 - components: - - pos: 110.5,-14.5 - parent: 2 - type: Transform - - uid: 8936 - components: - - pos: 113.5,-14.5 - parent: 2 - type: Transform - - uid: 8937 - components: - - pos: 116.5,-14.5 - parent: 2 - type: Transform - - uid: 8955 - components: - - pos: 116.5,-17.5 - parent: 2 - type: Transform - - uid: 9217 - components: - - pos: 39.5,-13.5 - parent: 2 - type: Transform - - uid: 9218 - components: - - pos: 39.5,-14.5 - parent: 2 - type: Transform - - uid: 9219 - components: - - pos: 39.5,-15.5 - parent: 2 - type: Transform - - uid: 9220 - components: - - pos: 39.5,-17.5 - parent: 2 - type: Transform - - uid: 10089 - components: - - rot: 3.141592653589793 rad - pos: 39.5,-20.5 - parent: 2 - type: Transform - - uid: 10090 - components: - - rot: 3.141592653589793 rad - pos: 38.5,-20.5 - parent: 2 - type: Transform - - uid: 10091 - components: - - rot: 3.141592653589793 rad - pos: 37.5,-20.5 - parent: 2 - type: Transform - - uid: 10092 - components: - - pos: -4.5,-3.5 - parent: 2 - type: Transform - - uid: 10093 - components: - - pos: -4.5,-5.5 - parent: 2 - type: Transform - - uid: 10094 - components: - - pos: -4.5,-6.5 - parent: 2 - type: Transform - - uid: 10095 - components: - - pos: 3.5,-7.5 - parent: 2 - type: Transform - - uid: 10096 - components: - - pos: 4.5,-7.5 - parent: 2 - type: Transform - - uid: 10097 - components: - - pos: 6.5,-7.5 - parent: 2 - type: Transform - - uid: 10098 - components: - - pos: 6.5,-10.5 - parent: 2 - type: Transform - - uid: 10099 - components: - - pos: 5.5,-10.5 - parent: 2 - type: Transform - - uid: 10100 - components: - - pos: 4.5,-10.5 - parent: 2 - type: Transform - - uid: 10101 - components: - - pos: 3.5,-10.5 - parent: 2 - type: Transform - - uid: 10102 - components: - - pos: 3.5,-8.5 - parent: 2 - type: Transform - - uid: 10104 - components: - - pos: -4.5,-2.5 - parent: 2 - type: Transform - - uid: 10105 - components: - - pos: 5.5,-7.5 - parent: 2 - type: Transform - - uid: 10106 - components: - - pos: -0.5,-6.5 - parent: 2 - type: Transform - - uid: 10107 - components: - - pos: 0.5,-2.5 - parent: 2 - type: Transform - - uid: 10108 - components: - - pos: 0.5,-5.5 - parent: 2 - type: Transform - - uid: 10109 - components: - - pos: 0.5,-6.5 - parent: 2 - type: Transform - - uid: 10110 - components: - - pos: -3.5,-6.5 - parent: 2 - type: Transform - - uid: 10111 - components: - - pos: 0.5,-3.5 - parent: 2 - type: Transform - - uid: 10112 - components: - - pos: -2.5,-6.5 - parent: 2 - type: Transform - - uid: 10113 - components: - - pos: -1.5,-6.5 - parent: 2 - type: Transform - - uid: 10219 - components: - - rot: 3.141592653589793 rad - pos: 41.5,-20.5 - parent: 2 - type: Transform - - uid: 10220 - components: - - rot: 3.141592653589793 rad - pos: 49.5,-20.5 - parent: 2 - type: Transform - - uid: 10221 - components: - - rot: 3.141592653589793 rad - pos: 48.5,-20.5 - parent: 2 - type: Transform - - uid: 10222 - components: - - rot: 3.141592653589793 rad - pos: 47.5,-20.5 - parent: 2 - type: Transform - - uid: 10223 - components: - - rot: 3.141592653589793 rad - pos: 46.5,-20.5 - parent: 2 - type: Transform - - uid: 10224 - components: - - rot: 3.141592653589793 rad - pos: 45.5,-20.5 - parent: 2 - type: Transform - - uid: 10225 - components: - - rot: 3.141592653589793 rad - pos: 44.5,-20.5 - parent: 2 - type: Transform - - uid: 10226 - components: - - rot: 3.141592653589793 rad - pos: 43.5,-20.5 - parent: 2 - type: Transform - - uid: 10227 - components: - - rot: 3.141592653589793 rad - pos: 42.5,-20.5 - parent: 2 - type: Transform - - uid: 10745 - components: - - pos: 85.5,-19.5 - parent: 2 - type: Transform - - uid: 10746 - components: - - pos: 86.5,-19.5 - parent: 2 - type: Transform - - uid: 10747 - components: - - pos: 84.5,-19.5 - parent: 2 - type: Transform - - uid: 10748 - components: - - pos: 84.5,-21.5 - parent: 2 - type: Transform - - uid: 10749 - components: - - pos: 85.5,-21.5 - parent: 2 - type: Transform - - uid: 10750 - components: - - pos: 86.5,-21.5 - parent: 2 - type: Transform - - uid: 10878 - components: - - pos: 26.5,-59.5 - parent: 2 - type: Transform - - uid: 11398 - components: - - pos: 87.5,5.5 - parent: 2 - type: Transform - - uid: 11400 - components: - - pos: 87.5,3.5 - parent: 2 - type: Transform - - uid: 11756 - components: - - pos: 29.5,-24.5 - parent: 2 - type: Transform - - uid: 11757 - components: - - pos: 29.5,-23.5 - parent: 2 - type: Transform - - uid: 11769 - components: - - pos: 37.5,-21.5 - parent: 2 - type: Transform - - uid: 11770 - components: - - pos: 36.5,-21.5 - parent: 2 - type: Transform - - uid: 11771 - components: - - pos: 35.5,-21.5 - parent: 2 - type: Transform - - uid: 11772 - components: - - pos: 34.5,-21.5 - parent: 2 - type: Transform - - uid: 11773 - components: - - pos: 33.5,-21.5 - parent: 2 - type: Transform - - uid: 11778 - components: - - pos: 29.5,-22.5 - parent: 2 - type: Transform - - uid: 11792 - components: - - pos: 104.5,-24.5 - parent: 2 - type: Transform - - uid: 11793 - components: - - pos: 104.5,-23.5 - parent: 2 - type: Transform - - uid: 11794 - components: - - pos: 104.5,-22.5 - parent: 2 - type: Transform - - uid: 11795 - components: - - pos: 104.5,-25.5 - parent: 2 - type: Transform - - uid: 12888 - components: - - pos: 50.5,-49.5 - parent: 2 - type: Transform - - uid: 12889 - components: - - pos: 49.5,-49.5 - parent: 2 - type: Transform - - uid: 12892 - components: - - pos: 46.5,-49.5 - parent: 2 - type: Transform - - uid: 12893 - components: - - pos: 45.5,-49.5 - parent: 2 - type: Transform - - uid: 12894 - components: - - pos: 45.5,-43.5 - parent: 2 - type: Transform - - uid: 12895 - components: - - pos: 46.5,-43.5 - parent: 2 - type: Transform - - uid: 12896 - components: - - pos: 47.5,-43.5 - parent: 2 - type: Transform - - uid: 12897 - components: - - pos: 48.5,-43.5 - parent: 2 - type: Transform - - uid: 12898 - components: - - pos: 49.5,-43.5 - parent: 2 - type: Transform - - uid: 12899 - components: - - pos: 50.5,-43.5 - parent: 2 - type: Transform - - uid: 12905 - components: - - pos: 50.5,-48.5 - parent: 2 - type: Transform - - uid: 12907 - components: - - pos: 50.5,-46.5 - parent: 2 - type: Transform - - uid: 12908 - components: - - pos: 50.5,-45.5 - parent: 2 - type: Transform - - uid: 12909 - components: - - pos: 50.5,-44.5 - parent: 2 - type: Transform - - uid: 12920 - components: - - pos: 44.5,-49.5 - parent: 2 - type: Transform - - uid: 12921 - components: - - pos: 40.5,-49.5 - parent: 2 - type: Transform - - uid: 12922 - components: - - pos: 39.5,-49.5 - parent: 2 - type: Transform - - uid: 12923 - components: - - pos: 38.5,-49.5 - parent: 2 - type: Transform - - uid: 12924 - components: - - pos: 37.5,-49.5 - parent: 2 - type: Transform - - uid: 12925 - components: - - pos: 36.5,-49.5 - parent: 2 - type: Transform - - uid: 12926 - components: - - pos: 35.5,-49.5 - parent: 2 - type: Transform - - uid: 12927 - components: - - pos: 34.5,-49.5 - parent: 2 - type: Transform - - uid: 12928 - components: - - pos: 33.5,-49.5 - parent: 2 - type: Transform - - uid: 12929 - components: - - pos: 33.5,-48.5 - parent: 2 - type: Transform - - uid: 12930 - components: - - pos: 33.5,-46.5 - parent: 2 - type: Transform - - uid: 12933 - components: - - pos: 31.5,-49.5 - parent: 2 - type: Transform -- proto: WallSolid - entities: - - uid: 109 - components: - - pos: -0.5,-12.5 - parent: 2 - type: Transform - - uid: 110 - components: - - pos: -0.5,-11.5 - parent: 2 - type: Transform - - uid: 111 - components: - - pos: -0.5,-9.5 - parent: 2 - type: Transform - - uid: 112 - components: - - pos: -0.5,-8.5 - parent: 2 - type: Transform - - uid: 113 - components: - - pos: 0.5,-8.5 - parent: 2 - type: Transform - - uid: 114 - components: - - pos: 0.5,-7.5 - parent: 2 - type: Transform - - uid: 145 - components: - - pos: 2.5,-3.5 - parent: 2 - type: Transform - - uid: 146 - components: - - pos: 2.5,-4.5 - parent: 2 - type: Transform - - uid: 148 - components: - - pos: 2.5,-6.5 - parent: 2 - type: Transform - - uid: 149 - components: - - pos: 2.5,-7.5 - parent: 2 - type: Transform - - uid: 154 - components: - - pos: 5.5,-2.5 - parent: 2 - type: Transform - - uid: 155 - components: - - pos: 6.5,-2.5 - parent: 2 - type: Transform - - uid: 162 - components: - - pos: 3.5,-2.5 - parent: 2 - type: Transform - - uid: 186 - components: - - pos: 2.5,-10.5 - parent: 2 - type: Transform - - uid: 187 - components: - - pos: 2.5,-12.5 - parent: 2 - type: Transform - - uid: 188 - components: - - pos: 2.5,-13.5 - parent: 2 - type: Transform - - uid: 189 - components: - - pos: 2.5,-14.5 - parent: 2 - type: Transform - - uid: 237 - components: - - pos: 7.5,14.5 - parent: 2 - type: Transform - - uid: 238 - components: - - pos: 7.5,13.5 - parent: 2 - type: Transform - - uid: 271 - components: - - pos: 7.5,8.5 - parent: 2 - type: Transform - - uid: 272 - components: - - pos: 7.5,4.5 - parent: 2 - type: Transform - - uid: 273 - components: - - pos: 7.5,3.5 - parent: 2 - type: Transform - - uid: 274 - components: - - pos: 7.5,2.5 - parent: 2 - type: Transform - - uid: 275 - components: - - pos: 8.5,2.5 - parent: 2 - type: Transform - - uid: 276 - components: - - pos: 9.5,2.5 - parent: 2 - type: Transform - - uid: 277 - components: - - pos: 10.5,2.5 - parent: 2 - type: Transform - - uid: 278 - components: - - pos: 11.5,2.5 - parent: 2 - type: Transform - - uid: 279 - components: - - pos: 12.5,2.5 - parent: 2 - type: Transform - - uid: 280 - components: - - pos: 13.5,2.5 - parent: 2 - type: Transform - - uid: 281 - components: - - pos: 14.5,2.5 - parent: 2 - type: Transform - - uid: 282 - components: - - pos: 14.5,3.5 - parent: 2 - type: Transform - - uid: 283 - components: - - pos: 14.5,4.5 - parent: 2 - type: Transform - - uid: 284 - components: - - pos: 14.5,6.5 - parent: 2 - type: Transform - - uid: 285 - components: - - pos: 13.5,6.5 - parent: 2 - type: Transform - - uid: 286 - components: - - pos: 13.5,7.5 - parent: 2 - type: Transform - - uid: 287 - components: - - pos: 13.5,8.5 - parent: 2 - type: Transform - - uid: 288 - components: - - pos: 14.5,8.5 - parent: 2 - type: Transform - - uid: 298 - components: - - pos: 45.5,-8.5 - parent: 2 - type: Transform - - uid: 299 - components: - - pos: 44.5,-8.5 - parent: 2 - type: Transform - - uid: 369 - components: - - pos: 7.5,12.5 - parent: 2 - type: Transform - - uid: 370 - components: - - pos: 7.5,11.5 - parent: 2 - type: Transform - - uid: 448 - components: - - pos: 8.5,14.5 - parent: 2 - type: Transform - - uid: 449 - components: - - pos: 9.5,14.5 - parent: 2 - type: Transform - - uid: 450 - components: - - pos: 10.5,14.5 - parent: 2 - type: Transform - - uid: 451 - components: - - pos: 11.5,14.5 - parent: 2 - type: Transform - - uid: 452 - components: - - pos: 13.5,14.5 - parent: 2 - type: Transform - - uid: 453 - components: - - pos: 13.5,13.5 - parent: 2 - type: Transform - - uid: 455 - components: - - pos: 13.5,11.5 - parent: 2 - type: Transform - - uid: 456 - components: - - pos: 12.5,11.5 - parent: 2 - type: Transform - - uid: 457 - components: - - pos: 8.5,11.5 - parent: 2 - type: Transform - - uid: 458 - components: - - pos: 9.5,11.5 - parent: 2 - type: Transform - - uid: 459 - components: - - pos: 10.5,11.5 - parent: 2 - type: Transform - - uid: 472 - components: - - pos: 10.5,-11.5 - parent: 2 - type: Transform - - uid: 473 - components: - - pos: 10.5,-12.5 - parent: 2 - type: Transform - - uid: 475 - components: - - pos: 9.5,-13.5 - parent: 2 - type: Transform - - uid: 476 - components: - - pos: 8.5,-13.5 - parent: 2 - type: Transform - - uid: 477 - components: - - pos: 8.5,-14.5 - parent: 2 - type: Transform - - uid: 478 - components: - - pos: 7.5,-14.5 - parent: 2 - type: Transform - - uid: 479 - components: - - pos: 6.5,-14.5 - parent: 2 - type: Transform - - uid: 486 - components: - - pos: 12.5,-11.5 - parent: 2 - type: Transform - - uid: 487 - components: - - pos: 12.5,-10.5 - parent: 2 - type: Transform - - uid: 488 - components: - - pos: 12.5,-12.5 - parent: 2 - type: Transform - - uid: 489 - components: - - pos: 11.5,-12.5 - parent: 2 - type: Transform - - uid: 514 - components: - - pos: 24.5,-2.5 - parent: 2 - type: Transform - - uid: 515 - components: - - pos: 23.5,-3.5 - parent: 2 - type: Transform - - uid: 516 - components: - - pos: 24.5,-3.5 - parent: 2 - type: Transform - - uid: 517 - components: - - pos: 24.5,-1.5 - parent: 2 - type: Transform - - uid: 518 - components: - - pos: 23.5,-1.5 - parent: 2 - type: Transform - - uid: 519 - components: - - pos: 23.5,-4.5 - parent: 2 - type: Transform - - uid: 520 - components: - - pos: 23.5,-5.5 - parent: 2 - type: Transform - - uid: 521 - components: - - pos: 23.5,-6.5 - parent: 2 - type: Transform - - uid: 522 - components: - - pos: 24.5,-6.5 - parent: 2 - type: Transform - - uid: 523 - components: - - pos: 24.5,-7.5 - parent: 2 - type: Transform - - uid: 524 - components: - - pos: 24.5,-8.5 - parent: 2 - type: Transform - - uid: 525 - components: - - pos: 23.5,-8.5 - parent: 2 - type: Transform - - uid: 526 - components: - - pos: 22.5,-8.5 - parent: 2 - type: Transform - - uid: 527 - components: - - pos: 19.5,-8.5 - parent: 2 - type: Transform - - uid: 528 - components: - - pos: 18.5,-8.5 - parent: 2 - type: Transform - - uid: 529 - components: - - pos: 18.5,-9.5 - parent: 2 - type: Transform - - uid: 530 - components: - - pos: 18.5,-10.5 - parent: 2 - type: Transform - - uid: 531 - components: - - pos: 18.5,-11.5 - parent: 2 - type: Transform - - uid: 532 - components: - - pos: 18.5,-12.5 - parent: 2 - type: Transform - - uid: 546 - components: - - pos: 15.5,2.5 - parent: 2 - type: Transform - - uid: 547 - components: - - pos: 16.5,2.5 - parent: 2 - type: Transform - - uid: 548 - components: - - pos: 17.5,2.5 - parent: 2 - type: Transform - - uid: 557 - components: - - pos: 43.5,-11.5 - parent: 2 - type: Transform - - uid: 696 - components: - - pos: 9.5,-21.5 - parent: 2 - type: Transform - - uid: 763 - components: - - pos: 24.5,-22.5 - parent: 2 - type: Transform - - uid: 770 - components: - - pos: 19.5,-29.5 - parent: 2 - type: Transform - - uid: 771 - components: - - pos: 24.5,-29.5 - parent: 2 - type: Transform - - uid: 772 - components: - - pos: 23.5,-29.5 - parent: 2 - type: Transform - - uid: 773 - components: - - pos: 22.5,-29.5 - parent: 2 - type: Transform - - uid: 774 - components: - - pos: 20.5,-29.5 - parent: 2 - type: Transform - - uid: 816 - components: - - pos: 24.5,-30.5 - parent: 2 - type: Transform - - uid: 819 - components: - - pos: 28.5,-30.5 - parent: 2 - type: Transform - - uid: 821 - components: - - pos: 28.5,-29.5 - parent: 2 - type: Transform - - uid: 822 - components: - - pos: 29.5,-29.5 - parent: 2 - type: Transform - - uid: 843 - components: - - pos: 19.5,-31.5 - parent: 2 - type: Transform - - uid: 844 - components: - - pos: 20.5,-33.5 - parent: 2 - type: Transform - - uid: 845 - components: - - pos: 19.5,-33.5 - parent: 2 - type: Transform - - uid: 846 - components: - - pos: 22.5,-33.5 - parent: 2 - type: Transform - - uid: 847 - components: - - pos: 30.5,-33.5 - parent: 2 - type: Transform - - uid: 848 - components: - - pos: 32.5,-33.5 - parent: 2 - type: Transform - - uid: 852 - components: - - pos: 32.5,-29.5 - parent: 2 - type: Transform - - uid: 853 - components: - - pos: 30.5,-29.5 - parent: 2 - type: Transform - - uid: 1041 - components: - - pos: 27.5,-37.5 - parent: 2 - type: Transform - - uid: 1049 - components: - - pos: 13.5,17.5 - parent: 2 - type: Transform - - uid: 1050 - components: - - pos: 13.5,16.5 - parent: 2 - type: Transform - - uid: 1053 - components: - - pos: 10.5,18.5 - parent: 2 - type: Transform - - uid: 1054 - components: - - pos: 10.5,17.5 - parent: 2 - type: Transform - - uid: 1055 - components: - - pos: 10.5,16.5 - parent: 2 - type: Transform - - uid: 1056 - components: - - pos: 10.5,20.5 - parent: 2 - type: Transform - - uid: 1057 - components: - - pos: 12.5,20.5 - parent: 2 - type: Transform - - uid: 1058 - components: - - pos: 11.5,20.5 - parent: 2 - type: Transform - - uid: 1059 - components: - - pos: 12.5,19.5 - parent: 2 - type: Transform - - uid: 1060 - components: - - pos: 13.5,19.5 - parent: 2 - type: Transform - - uid: 1063 - components: - - pos: 14.5,17.5 - parent: 2 - type: Transform - - uid: 1064 - components: - - pos: 15.5,17.5 - parent: 2 - type: Transform - - uid: 1065 - components: - - pos: 16.5,17.5 - parent: 2 - type: Transform - - uid: 1066 - components: - - pos: 17.5,14.5 - parent: 2 - type: Transform - - uid: 1067 - components: - - pos: 17.5,12.5 - parent: 2 - type: Transform - - uid: 1068 - components: - - pos: 17.5,11.5 - parent: 2 - type: Transform - - uid: 1069 - components: - - pos: 16.5,11.5 - parent: 2 - type: Transform - - uid: 1070 - components: - - pos: 15.5,11.5 - parent: 2 - type: Transform - - uid: 1071 - components: - - pos: 14.5,11.5 - parent: 2 - type: Transform - - uid: 1072 - components: - - pos: 17.5,16.5 - parent: 2 - type: Transform - - uid: 1073 - components: - - pos: 17.5,17.5 - parent: 2 - type: Transform - - uid: 1074 - components: - - pos: 18.5,17.5 - parent: 2 - type: Transform - - uid: 1075 - components: - - pos: 19.5,17.5 - parent: 2 - type: Transform - - uid: 1076 - components: - - pos: 19.5,16.5 - parent: 2 - type: Transform - - uid: 1077 - components: - - pos: 20.5,16.5 - parent: 2 - type: Transform - - uid: 1083 - components: - - pos: 20.5,11.5 - parent: 2 - type: Transform - - uid: 1084 - components: - - pos: 21.5,11.5 - parent: 2 - type: Transform - - uid: 1085 - components: - - pos: 21.5,10.5 - parent: 2 - type: Transform - - uid: 1086 - components: - - pos: 21.5,9.5 - parent: 2 - type: Transform - - uid: 1087 - components: - - pos: 21.5,8.5 - parent: 2 - type: Transform - - uid: 1088 - components: - - pos: 21.5,5.5 - parent: 2 - type: Transform - - uid: 1089 - components: - - pos: 21.5,4.5 - parent: 2 - type: Transform - - uid: 1090 - components: - - pos: 20.5,4.5 - parent: 2 - type: Transform - - uid: 1091 - components: - - pos: 19.5,4.5 - parent: 2 - type: Transform - - uid: 1092 - components: - - pos: 18.5,4.5 - parent: 2 - type: Transform - - uid: 1093 - components: - - pos: 17.5,4.5 - parent: 2 - type: Transform - - uid: 1094 - components: - - pos: 16.5,4.5 - parent: 2 - type: Transform - - uid: 1095 - components: - - pos: 16.5,5.5 - parent: 2 - type: Transform - - uid: 1096 - components: - - pos: 16.5,6.5 - parent: 2 - type: Transform - - uid: 1097 - components: - - pos: 16.5,7.5 - parent: 2 - type: Transform - - uid: 1098 - components: - - pos: 16.5,8.5 - parent: 2 - type: Transform - - uid: 1099 - components: - - pos: 21.5,7.5 - parent: 2 - type: Transform - - uid: 1100 - components: - - pos: 15.5,8.5 - parent: 2 - type: Transform - - uid: 1114 - components: - - pos: 45.5,-11.5 - parent: 2 - type: Transform - - uid: 1115 - components: - - pos: 23.5,2.5 - parent: 2 - type: Transform - - uid: 1116 - components: - - pos: 24.5,2.5 - parent: 2 - type: Transform - - uid: 1117 - components: - - pos: 22.5,2.5 - parent: 2 - type: Transform - - uid: 1118 - components: - - pos: 21.5,2.5 - parent: 2 - type: Transform - - uid: 1119 - components: - - pos: 20.5,2.5 - parent: 2 - type: Transform - - uid: 1120 - components: - - pos: 19.5,2.5 - parent: 2 - type: Transform - - uid: 1121 - components: - - pos: 24.5,11.5 - parent: 2 - type: Transform - - uid: 1122 - components: - - pos: 23.5,11.5 - parent: 2 - type: Transform - - uid: 1123 - components: - - pos: 22.5,11.5 - parent: 2 - type: Transform - - uid: 1124 - components: - - pos: 25.5,11.5 - parent: 2 - type: Transform - - uid: 1125 - components: - - pos: 24.5,9.5 - parent: 2 - type: Transform - - uid: 1126 - components: - - pos: 24.5,8.5 - parent: 2 - type: Transform - - uid: 1127 - components: - - pos: 24.5,7.5 - parent: 2 - type: Transform - - uid: 1128 - components: - - pos: 24.5,6.5 - parent: 2 - type: Transform - - uid: 1129 - components: - - pos: 24.5,5.5 - parent: 2 - type: Transform - - uid: 1130 - components: - - pos: 24.5,4.5 - parent: 2 - type: Transform - - uid: 1131 - components: - - pos: 24.5,3.5 - parent: 2 - type: Transform - - uid: 1132 - components: - - pos: 25.5,9.5 - parent: 2 - type: Transform - - uid: 1133 - components: - - pos: 27.5,9.5 - parent: 2 - type: Transform - - uid: 1134 - components: - - pos: 28.5,9.5 - parent: 2 - type: Transform - - uid: 1135 - components: - - pos: 28.5,8.5 - parent: 2 - type: Transform - - uid: 1136 - components: - - pos: 28.5,7.5 - parent: 2 - type: Transform - - uid: 1137 - components: - - pos: 28.5,6.5 - parent: 2 - type: Transform - - uid: 1138 - components: - - pos: 28.5,5.5 - parent: 2 - type: Transform - - uid: 1139 - components: - - pos: 28.5,4.5 - parent: 2 - type: Transform - - uid: 1140 - components: - - pos: 27.5,4.5 - parent: 2 - type: Transform - - uid: 1141 - components: - - pos: 28.5,3.5 - parent: 2 - type: Transform - - uid: 1142 - components: - - pos: 28.5,2.5 - parent: 2 - type: Transform - - uid: 1143 - components: - - pos: 25.5,4.5 - parent: 2 - type: Transform - - uid: 1145 - components: - - pos: 45.5,-9.5 - parent: 2 - type: Transform - - uid: 1169 - components: - - pos: 33.5,5.5 - parent: 2 - type: Transform - - uid: 1170 - components: - - pos: 33.5,4.5 - parent: 2 - type: Transform - - uid: 1171 - components: - - pos: 33.5,3.5 - parent: 2 - type: Transform - - uid: 1172 - components: - - pos: 33.5,2.5 - parent: 2 - type: Transform - - uid: 1174 - components: - - pos: 43.5,-8.5 - parent: 2 - type: Transform - - uid: 1175 - components: - - pos: 32.5,-1.5 - parent: 2 - type: Transform - - uid: 1184 - components: - - pos: 30.5,9.5 - parent: 2 - type: Transform - - uid: 1185 - components: - - pos: 30.5,10.5 - parent: 2 - type: Transform - - uid: 1186 - components: - - pos: 31.5,10.5 - parent: 2 - type: Transform - - uid: 1187 - components: - - pos: 32.5,10.5 - parent: 2 - type: Transform - - uid: 1188 - components: - - pos: 33.5,10.5 - parent: 2 - type: Transform - - uid: 1189 - components: - - pos: 33.5,9.5 - parent: 2 - type: Transform - - uid: 1190 - components: - - pos: 33.5,8.5 - parent: 2 - type: Transform - - uid: 1191 - components: - - pos: 33.5,7.5 - parent: 2 - type: Transform - - uid: 1197 - components: - - pos: 27.5,11.5 - parent: 2 - type: Transform - - uid: 1198 - components: - - pos: 28.5,11.5 - parent: 2 - type: Transform - - uid: 1199 - components: - - pos: 28.5,12.5 - parent: 2 - type: Transform - - uid: 1200 - components: - - pos: 29.5,12.5 - parent: 2 - type: Transform - - uid: 1201 - components: - - pos: 30.5,12.5 - parent: 2 - type: Transform - - uid: 1202 - components: - - pos: 31.5,12.5 - parent: 2 - type: Transform - - uid: 1203 - components: - - pos: 32.5,12.5 - parent: 2 - type: Transform - - uid: 1204 - components: - - pos: 33.5,12.5 - parent: 2 - type: Transform - - uid: 1208 - components: - - pos: 28.5,-37.5 - parent: 2 - type: Transform - - uid: 1209 - components: - - pos: 29.5,-37.5 - parent: 2 - type: Transform - - uid: 1210 - components: - - pos: 30.5,-37.5 - parent: 2 - type: Transform - - uid: 1482 - components: - - pos: 28.5,-1.5 - parent: 2 - type: Transform - - uid: 1494 - components: - - pos: 40.5,-5.5 - parent: 2 - type: Transform - - uid: 1495 - components: - - pos: 40.5,-4.5 - parent: 2 - type: Transform - - uid: 1497 - components: - - pos: 40.5,-2.5 - parent: 2 - type: Transform - - uid: 1498 - components: - - pos: 40.5,-1.5 - parent: 2 - type: Transform - - uid: 1499 - components: - - pos: 39.5,-1.5 - parent: 2 - type: Transform - - uid: 1500 - components: - - pos: 38.5,-1.5 - parent: 2 - type: Transform - - uid: 1501 - components: - - pos: 37.5,-1.5 - parent: 2 - type: Transform - - uid: 1502 - components: - - pos: 36.5,-1.5 - parent: 2 - type: Transform - - uid: 1503 - components: - - pos: 37.5,-2.5 - parent: 2 - type: Transform - - uid: 1504 - components: - - pos: 31.5,-1.5 - parent: 2 - type: Transform - - uid: 1505 - components: - - pos: 37.5,-8.5 - parent: 2 - type: Transform - - uid: 1517 - components: - - pos: 44.5,-11.5 - parent: 2 - type: Transform - - uid: 1522 - components: - - pos: 28.5,-2.5 - parent: 2 - type: Transform - - uid: 1523 - components: - - pos: 30.5,-1.5 - parent: 2 - type: Transform - - uid: 1536 - components: - - pos: 40.5,-8.5 - parent: 2 - type: Transform - - uid: 1542 - components: - - pos: 41.5,-8.5 - parent: 2 - type: Transform - - uid: 1579 - components: - - pos: 28.5,-13.5 - parent: 2 - type: Transform - - uid: 1580 - components: - - pos: 29.5,-13.5 - parent: 2 - type: Transform - - uid: 1581 - components: - - pos: 30.5,-13.5 - parent: 2 - type: Transform - - uid: 1582 - components: - - pos: 31.5,-13.5 - parent: 2 - type: Transform - - uid: 1583 - components: - - pos: 32.5,-13.5 - parent: 2 - type: Transform - - uid: 1584 - components: - - pos: 13.5,12.5 - parent: 2 - type: Transform - - uid: 1587 - components: - - pos: 33.5,-13.5 - parent: 2 - type: Transform - - uid: 1588 - components: - - pos: 34.5,-13.5 - parent: 2 - type: Transform - - uid: 1589 - components: - - pos: 35.5,-13.5 - parent: 2 - type: Transform - - uid: 1590 - components: - - pos: 36.5,-13.5 - parent: 2 - type: Transform - - uid: 1591 - components: - - pos: 37.5,-13.5 - parent: 2 - type: Transform - - uid: 1592 - components: - - pos: 38.5,-13.5 - parent: 2 - type: Transform - - uid: 1644 - components: - - pos: 48.5,-10.5 - parent: 2 - type: Transform - - uid: 1645 - components: - - pos: 48.5,-11.5 - parent: 2 - type: Transform - - uid: 1697 - components: - - pos: 23.5,-34.5 - parent: 2 - type: Transform - - uid: 1721 - components: - - pos: 29.5,-18.5 - parent: 2 - type: Transform - - uid: 1722 - components: - - pos: 28.5,-18.5 - parent: 2 - type: Transform - - uid: 1723 - components: - - pos: 30.5,-18.5 - parent: 2 - type: Transform - - uid: 1724 - components: - - pos: 31.5,-18.5 - parent: 2 - type: Transform - - uid: 1725 - components: - - pos: 33.5,-18.5 - parent: 2 - type: Transform - - uid: 1726 - components: - - pos: 34.5,-18.5 - parent: 2 - type: Transform - - uid: 1727 - components: - - pos: 34.5,-17.5 - parent: 2 - type: Transform - - uid: 1728 - components: - - pos: 34.5,-15.5 - parent: 2 - type: Transform - - uid: 1729 - components: - - pos: 34.5,-14.5 - parent: 2 - type: Transform - - uid: 1731 - components: - - pos: 38.5,-18.5 - parent: 2 - type: Transform - - uid: 1732 - components: - - pos: 37.5,-18.5 - parent: 2 - type: Transform - - uid: 1733 - components: - - pos: 36.5,-18.5 - parent: 2 - type: Transform - - uid: 1734 - components: - - pos: 35.5,-18.5 - parent: 2 - type: Transform - - uid: 1767 - components: - - pos: 23.5,-33.5 - parent: 2 - type: Transform - - uid: 1775 - components: - - pos: 29.5,-34.5 - parent: 2 - type: Transform - - uid: 1776 - components: - - pos: 29.5,-33.5 - parent: 2 - type: Transform - - uid: 1779 - components: - - pos: 48.5,-2.5 - parent: 2 - type: Transform - - uid: 1781 - components: - - pos: 32.5,-12.5 - parent: 2 - type: Transform - - uid: 1782 - components: - - pos: 28.5,-12.5 - parent: 2 - type: Transform - - uid: 1783 - components: - - pos: 28.5,-11.5 - parent: 2 - type: Transform - - uid: 1784 - components: - - pos: 41.5,-10.5 - parent: 2 - type: Transform - - uid: 1785 - components: - - pos: 41.5,-11.5 - parent: 2 - type: Transform - - uid: 1787 - components: - - pos: 41.5,-9.5 - parent: 2 - type: Transform - - uid: 1788 - components: - - pos: 32.5,-8.5 - parent: 2 - type: Transform - - uid: 1790 - components: - - pos: 31.5,-8.5 - parent: 2 - type: Transform - - uid: 1802 - components: - - pos: 28.5,-19.5 - parent: 2 - type: Transform - - uid: 1877 - components: - - pos: 29.5,-8.5 - parent: 2 - type: Transform - - uid: 1949 - components: - - pos: 48.5,-14.5 - parent: 2 - type: Transform - - uid: 1950 - components: - - pos: 48.5,-15.5 - parent: 2 - type: Transform - - uid: 1951 - components: - - pos: 48.5,-16.5 - parent: 2 - type: Transform - - uid: 1952 - components: - - pos: 48.5,-17.5 - parent: 2 - type: Transform - - uid: 1953 - components: - - pos: 50.5,-17.5 - parent: 2 - type: Transform - - uid: 1954 - components: - - pos: 49.5,-17.5 - parent: 2 - type: Transform - - uid: 1955 - components: - - pos: 50.5,-16.5 - parent: 2 - type: Transform - - uid: 1956 - components: - - pos: 50.5,-15.5 - parent: 2 - type: Transform - - uid: 1957 - components: - - pos: 50.5,-14.5 - parent: 2 - type: Transform - - uid: 1958 - components: - - pos: 49.5,-14.5 - parent: 2 - type: Transform - - uid: 1972 - components: - - pos: 58.5,-18.5 - parent: 2 - type: Transform - - uid: 1973 - components: - - pos: 58.5,-16.5 - parent: 2 - type: Transform - - uid: 1974 - components: - - pos: 57.5,-16.5 - parent: 2 - type: Transform - - uid: 1975 - components: - - pos: 56.5,-16.5 - parent: 2 - type: Transform - - uid: 1976 - components: - - pos: 53.5,-15.5 - parent: 2 - type: Transform - - uid: 1977 - components: - - pos: 53.5,-14.5 - parent: 2 - type: Transform - - uid: 1978 - components: - - pos: 53.5,-13.5 - parent: 2 - type: Transform - - uid: 1979 - components: - - pos: 58.5,-15.5 - parent: 2 - type: Transform - - uid: 1982 - components: - - pos: 54.5,-16.5 - parent: 2 - type: Transform - - uid: 1983 - components: - - pos: 53.5,-16.5 - parent: 2 - type: Transform - - uid: 1991 - components: - - pos: 15.5,19.5 - parent: 2 - type: Transform - - uid: 1992 - components: - - pos: 16.5,19.5 - parent: 2 - type: Transform - - uid: 1993 - components: - - pos: 17.5,19.5 - parent: 2 - type: Transform - - uid: 1994 - components: - - pos: 18.5,19.5 - parent: 2 - type: Transform - - uid: 1995 - components: - - pos: 19.5,19.5 - parent: 2 - type: Transform - - uid: 1996 - components: - - pos: 20.5,19.5 - parent: 2 - type: Transform - - uid: 1997 - components: - - pos: 21.5,19.5 - parent: 2 - type: Transform - - uid: 2025 - components: - - pos: 6.5,29.5 - parent: 2 - type: Transform - - uid: 2026 - components: - - pos: 7.5,29.5 - parent: 2 - type: Transform - - uid: 2034 - components: - - pos: 14.5,27.5 - parent: 2 - type: Transform - - uid: 2044 - components: - - pos: 16.5,23.5 - parent: 2 - type: Transform - - uid: 2045 - components: - - pos: 16.5,24.5 - parent: 2 - type: Transform - - uid: 2046 - components: - - pos: 16.5,25.5 - parent: 2 - type: Transform - - uid: 2047 - components: - - pos: 15.5,26.5 - parent: 2 - type: Transform - - uid: 2048 - components: - - pos: 16.5,26.5 - parent: 2 - type: Transform - - uid: 2049 - components: - - pos: 14.5,26.5 - parent: 2 - type: Transform - - uid: 2093 - components: - - pos: 17.5,25.5 - parent: 2 - type: Transform - - uid: 2094 - components: - - pos: 18.5,25.5 - parent: 2 - type: Transform - - uid: 2095 - components: - - pos: 19.5,25.5 - parent: 2 - type: Transform - - uid: 2096 - components: - - pos: 20.5,25.5 - parent: 2 - type: Transform - - uid: 2097 - components: - - pos: 21.5,25.5 - parent: 2 - type: Transform - - uid: 2098 - components: - - pos: 21.5,26.5 - parent: 2 - type: Transform - - uid: 2099 - components: - - pos: 22.5,26.5 - parent: 2 - type: Transform - - uid: 2100 - components: - - pos: 23.5,26.5 - parent: 2 - type: Transform - - uid: 2101 - components: - - pos: 24.5,26.5 - parent: 2 - type: Transform - - uid: 2103 - components: - - pos: 23.5,28.5 - parent: 2 - type: Transform - - uid: 2104 - components: - - pos: 22.5,28.5 - parent: 2 - type: Transform - - uid: 2105 - components: - - pos: 21.5,28.5 - parent: 2 - type: Transform - - uid: 2106 - components: - - pos: 20.5,28.5 - parent: 2 - type: Transform - - uid: 2107 - components: - - pos: 19.5,28.5 - parent: 2 - type: Transform - - uid: 2108 - components: - - pos: 18.5,28.5 - parent: 2 - type: Transform - - uid: 2109 - components: - - pos: 17.5,28.5 - parent: 2 - type: Transform - - uid: 2110 - components: - - pos: 16.5,28.5 - parent: 2 - type: Transform - - uid: 2111 - components: - - pos: 16.5,29.5 - parent: 2 - type: Transform - - uid: 2112 - components: - - pos: 16.5,30.5 - parent: 2 - type: Transform - - uid: 2113 - components: - - pos: 16.5,31.5 - parent: 2 - type: Transform - - uid: 2114 - components: - - pos: 16.5,32.5 - parent: 2 - type: Transform - - uid: 2169 - components: - - pos: 22.5,19.5 - parent: 2 - type: Transform - - uid: 2170 - components: - - pos: 23.5,19.5 - parent: 2 - type: Transform - - uid: 2171 - components: - - pos: 24.5,19.5 - parent: 2 - type: Transform - - uid: 2172 - components: - - pos: 23.5,18.5 - parent: 2 - type: Transform - - uid: 2173 - components: - - pos: 23.5,17.5 - parent: 2 - type: Transform - - uid: 2174 - components: - - pos: 23.5,16.5 - parent: 2 - type: Transform - - uid: 2175 - components: - - pos: 22.5,16.5 - parent: 2 - type: Transform - - uid: 2176 - components: - - pos: 24.5,16.5 - parent: 2 - type: Transform - - uid: 2244 - components: - - pos: 29.5,22.5 - parent: 2 - type: Transform - - uid: 2245 - components: - - pos: 30.5,22.5 - parent: 2 - type: Transform - - uid: 2246 - components: - - pos: 31.5,22.5 - parent: 2 - type: Transform - - uid: 2247 - components: - - pos: 29.5,19.5 - parent: 2 - type: Transform - - uid: 2248 - components: - - pos: 30.5,19.5 - parent: 2 - type: Transform - - uid: 2249 - components: - - pos: 31.5,19.5 - parent: 2 - type: Transform - - uid: 2360 - components: - - pos: 39.5,20.5 - parent: 2 - type: Transform - - uid: 2361 - components: - - pos: 37.5,20.5 - parent: 2 - type: Transform - - uid: 2496 - components: - - pos: 34.5,10.5 - parent: 2 - type: Transform - - uid: 2497 - components: - - pos: 39.5,10.5 - parent: 2 - type: Transform - - uid: 2498 - components: - - pos: 39.5,4.5 - parent: 2 - type: Transform - - uid: 2499 - components: - - pos: 39.5,3.5 - parent: 2 - type: Transform - - uid: 2500 - components: - - pos: 36.5,10.5 - parent: 2 - type: Transform - - uid: 2501 - components: - - pos: 37.5,10.5 - parent: 2 - type: Transform - - uid: 2502 - components: - - pos: 38.5,10.5 - parent: 2 - type: Transform - - uid: 2503 - components: - - pos: 39.5,2.5 - parent: 2 - type: Transform - - uid: 2504 - components: - - pos: 38.5,2.5 - parent: 2 - type: Transform - - uid: 2505 - components: - - pos: 37.5,2.5 - parent: 2 - type: Transform - - uid: 2506 - components: - - pos: 36.5,2.5 - parent: 2 - type: Transform - - uid: 2507 - components: - - pos: 35.5,2.5 - parent: 2 - type: Transform - - uid: 2508 - components: - - pos: 34.5,2.5 - parent: 2 - type: Transform - - uid: 2509 - components: - - pos: 37.5,3.5 - parent: 2 - type: Transform - - uid: 2510 - components: - - pos: 37.5,4.5 - parent: 2 - type: Transform - - uid: 2511 - components: - - pos: 35.5,4.5 - parent: 2 - type: Transform - - uid: 2547 - components: - - pos: 39.5,12.5 - parent: 2 - type: Transform - - uid: 2548 - components: - - pos: 38.5,12.5 - parent: 2 - type: Transform - - uid: 2549 - components: - - pos: 37.5,12.5 - parent: 2 - type: Transform - - uid: 2553 - components: - - pos: 36.5,12.5 - parent: 2 - type: Transform - - uid: 2554 - components: - - pos: 35.5,12.5 - parent: 2 - type: Transform - - uid: 2555 - components: - - pos: 34.5,12.5 - parent: 2 - type: Transform - - uid: 2562 - components: - - pos: 28.5,33.5 - parent: 2 - type: Transform - - uid: 2668 - components: - - pos: 16.5,34.5 - parent: 2 - type: Transform - - uid: 2669 - components: - - pos: 22.5,34.5 - parent: 2 - type: Transform - - uid: 2670 - components: - - pos: 21.5,34.5 - parent: 2 - type: Transform - - uid: 2671 - components: - - pos: 20.5,34.5 - parent: 2 - type: Transform - - uid: 2672 - components: - - pos: 18.5,34.5 - parent: 2 - type: Transform - - uid: 2673 - components: - - pos: 19.5,34.5 - parent: 2 - type: Transform - - uid: 2674 - components: - - pos: 17.5,34.5 - parent: 2 - type: Transform - - uid: 2675 - components: - - pos: 16.5,33.5 - parent: 2 - type: Transform - - uid: 2871 - components: - - pos: 65.5,-12.5 - parent: 2 - type: Transform - - uid: 2872 - components: - - pos: 66.5,-12.5 - parent: 2 - type: Transform - - uid: 2873 - components: - - pos: 67.5,-12.5 - parent: 2 - type: Transform - - uid: 2874 - components: - - pos: 68.5,-12.5 - parent: 2 - type: Transform - - uid: 2875 - components: - - pos: 68.5,-13.5 - parent: 2 - type: Transform - - uid: 2876 - components: - - pos: 68.5,-14.5 - parent: 2 - type: Transform - - uid: 2877 - components: - - pos: 68.5,-15.5 - parent: 2 - type: Transform - - uid: 2883 - components: - - pos: 68.5,-17.5 - parent: 2 - type: Transform - - uid: 2884 - components: - - pos: 68.5,-18.5 - parent: 2 - type: Transform - - uid: 2886 - components: - - pos: 64.5,-18.5 - parent: 2 - type: Transform - - uid: 2887 - components: - - pos: 61.5,-18.5 - parent: 2 - type: Transform - - uid: 2923 - components: - - pos: 63.5,-3.5 - parent: 2 - type: Transform - - uid: 2924 - components: - - pos: 63.5,-4.5 - parent: 2 - type: Transform - - uid: 2925 - components: - - pos: 63.5,-2.5 - parent: 2 - type: Transform - - uid: 2926 - components: - - pos: 63.5,-1.5 - parent: 2 - type: Transform - - uid: 2927 - components: - - pos: 63.5,-0.5 - parent: 2 - type: Transform - - uid: 2928 - components: - - pos: 64.5,-0.5 - parent: 2 - type: Transform - - uid: 2929 - components: - - pos: 66.5,-0.5 - parent: 2 - type: Transform - - uid: 2930 - components: - - pos: 67.5,-0.5 - parent: 2 - type: Transform - - uid: 2931 - components: - - pos: 68.5,-0.5 - parent: 2 - type: Transform - - uid: 2932 - components: - - pos: 68.5,-1.5 - parent: 2 - type: Transform - - uid: 2938 - components: - - pos: 68.5,-7.5 - parent: 2 - type: Transform - - uid: 2939 - components: - - pos: 67.5,-7.5 - parent: 2 - type: Transform - - uid: 2940 - components: - - pos: 68.5,-8.5 - parent: 2 - type: Transform - - uid: 2941 - components: - - pos: 65.5,-7.5 - parent: 2 - type: Transform - - uid: 2942 - components: - - pos: 64.5,-8.5 - parent: 2 - type: Transform - - uid: 2943 - components: - - pos: 63.5,-7.5 - parent: 2 - type: Transform - - uid: 2944 - components: - - pos: 63.5,-6.5 - parent: 2 - type: Transform - - uid: 2945 - components: - - pos: 64.5,-7.5 - parent: 2 - type: Transform - - uid: 2946 - components: - - pos: 64.5,-9.5 - parent: 2 - type: Transform - - uid: 2947 - components: - - pos: 64.5,-10.5 - parent: 2 - type: Transform - - uid: 2948 - components: - - pos: 64.5,-11.5 - parent: 2 - type: Transform - - uid: 2949 - components: - - pos: 68.5,-10.5 - parent: 2 - type: Transform - - uid: 2950 - components: - - pos: 68.5,-11.5 - parent: 2 - type: Transform - - uid: 2958 - components: - - pos: 54.5,-7.5 - parent: 2 - type: Transform - - uid: 2959 - components: - - pos: 54.5,-2.5 - parent: 2 - type: Transform - - uid: 2960 - components: - - pos: 53.5,-2.5 - parent: 2 - type: Transform - - uid: 2969 - components: - - pos: 48.5,1.5 - parent: 2 - type: Transform - - uid: 2970 - components: - - pos: 48.5,2.5 - parent: 2 - type: Transform - - uid: 2971 - components: - - pos: 48.5,5.5 - parent: 2 - type: Transform - - uid: 2972 - components: - - pos: 47.5,5.5 - parent: 2 - type: Transform - - uid: 2973 - components: - - pos: 46.5,5.5 - parent: 2 - type: Transform - - uid: 2974 - components: - - pos: 45.5,5.5 - parent: 2 - type: Transform - - uid: 2975 - components: - - pos: 44.5,5.5 - parent: 2 - type: Transform - - uid: 2976 - components: - - pos: 43.5,5.5 - parent: 2 - type: Transform - - uid: 2977 - components: - - pos: 43.5,6.5 - parent: 2 - type: Transform - - uid: 2978 - components: - - pos: 43.5,4.5 - parent: 2 - type: Transform - - uid: 2979 - components: - - pos: 43.5,3.5 - parent: 2 - type: Transform - - uid: 2980 - components: - - pos: 43.5,2.5 - parent: 2 - type: Transform - - uid: 2981 - components: - - pos: 49.5,5.5 - parent: 2 - type: Transform - - uid: 2982 - components: - - pos: 50.5,5.5 - parent: 2 - type: Transform - - uid: 2983 - components: - - pos: 52.5,5.5 - parent: 2 - type: Transform - - uid: 2984 - components: - - pos: 51.5,5.5 - parent: 2 - type: Transform - - uid: 2985 - components: - - pos: 53.5,1.5 - parent: 2 - type: Transform - - uid: 2995 - components: - - pos: 53.5,5.5 - parent: 2 - type: Transform - - uid: 2996 - components: - - pos: 54.5,5.5 - parent: 2 - type: Transform - - uid: 2997 - components: - - pos: 54.5,4.5 - parent: 2 - type: Transform - - uid: 2998 - components: - - pos: 55.5,4.5 - parent: 2 - type: Transform - - uid: 2999 - components: - - pos: 58.5,5.5 - parent: 2 - type: Transform - - uid: 3000 - components: - - pos: 57.5,4.5 - parent: 2 - type: Transform - - uid: 3001 - components: - - pos: 58.5,4.5 - parent: 2 - type: Transform - - uid: 3002 - components: - - pos: 59.5,5.5 - parent: 2 - type: Transform - - uid: 3003 - components: - - pos: 60.5,5.5 - parent: 2 - type: Transform - - uid: 3004 - components: - - pos: 61.5,5.5 - parent: 2 - type: Transform - - uid: 3005 - components: - - pos: 62.5,5.5 - parent: 2 - type: Transform - - uid: 3006 - components: - - pos: 63.5,5.5 - parent: 2 - type: Transform - - uid: 3007 - components: - - pos: 64.5,5.5 - parent: 2 - type: Transform - - uid: 3008 - components: - - pos: 65.5,5.5 - parent: 2 - type: Transform - - uid: 3009 - components: - - pos: 66.5,5.5 - parent: 2 - type: Transform - - uid: 3010 - components: - - pos: 67.5,5.5 - parent: 2 - type: Transform - - uid: 3011 - components: - - pos: 67.5,6.5 - parent: 2 - type: Transform - - uid: 3040 - components: - - pos: 56.5,8.5 - parent: 2 - type: Transform - - uid: 3041 - components: - - pos: 56.5,9.5 - parent: 2 - type: Transform - - uid: 3042 - components: - - pos: 56.5,10.5 - parent: 2 - type: Transform - - uid: 3043 - components: - - pos: 56.5,11.5 - parent: 2 - type: Transform - - uid: 3044 - components: - - pos: 56.5,12.5 - parent: 2 - type: Transform - - uid: 3051 - components: - - pos: 46.5,20.5 - parent: 2 - type: Transform - - uid: 3053 - components: - - pos: 49.5,16.5 - parent: 2 - type: Transform - - uid: 3054 - components: - - pos: 50.5,16.5 - parent: 2 - type: Transform - - uid: 3055 - components: - - pos: 51.5,16.5 - parent: 2 - type: Transform - - uid: 3056 - components: - - pos: 52.5,16.5 - parent: 2 - type: Transform - - uid: 3057 - components: - - pos: 52.5,15.5 - parent: 2 - type: Transform - - uid: 3058 - components: - - pos: 52.5,13.5 - parent: 2 - type: Transform - - uid: 3059 - components: - - pos: 52.5,12.5 - parent: 2 - type: Transform - - uid: 3060 - components: - - pos: 51.5,12.5 - parent: 2 - type: Transform - - uid: 3061 - components: - - pos: 50.5,12.5 - parent: 2 - type: Transform - - uid: 3062 - components: - - pos: 49.5,12.5 - parent: 2 - type: Transform - - uid: 3203 - components: - - pos: 56.5,36.5 - parent: 2 - type: Transform - - uid: 3204 - components: - - pos: 56.5,37.5 - parent: 2 - type: Transform - - uid: 3205 - components: - - pos: 57.5,37.5 - parent: 2 - type: Transform - - uid: 3206 - components: - - pos: 55.5,37.5 - parent: 2 - type: Transform - - uid: 3207 - components: - - pos: 55.5,35.5 - parent: 2 - type: Transform - - uid: 3208 - components: - - pos: 57.5,35.5 - parent: 2 - type: Transform - - uid: 3356 - components: - - pos: 68.5,46.5 - parent: 2 - type: Transform - - uid: 3357 - components: - - pos: 68.5,45.5 - parent: 2 - type: Transform - - uid: 3358 - components: - - pos: 68.5,44.5 - parent: 2 - type: Transform - - uid: 3359 - components: - - pos: 68.5,43.5 - parent: 2 - type: Transform - - uid: 3360 - components: - - pos: 70.5,41.5 - parent: 2 - type: Transform - - uid: 3380 - components: - - pos: 68.5,40.5 - parent: 2 - type: Transform - - uid: 3381 - components: - - pos: 68.5,41.5 - parent: 2 - type: Transform - - uid: 3382 - components: - - pos: 69.5,41.5 - parent: 2 - type: Transform - - uid: 3387 - components: - - pos: 68.5,37.5 - parent: 2 - type: Transform - - uid: 3388 - components: - - pos: 68.5,38.5 - parent: 2 - type: Transform - - uid: 3396 - components: - - pos: 66.5,45.5 - parent: 2 - type: Transform - - uid: 3414 - components: - - pos: 68.5,31.5 - parent: 2 - type: Transform - - uid: 3415 - components: - - pos: 68.5,30.5 - parent: 2 - type: Transform - - uid: 3416 - components: - - pos: 67.5,30.5 - parent: 2 - type: Transform - - uid: 3441 - components: - - pos: 68.5,27.5 - parent: 2 - type: Transform - - uid: 3442 - components: - - pos: 68.5,29.5 - parent: 2 - type: Transform - - uid: 3443 - components: - - pos: 68.5,33.5 - parent: 2 - type: Transform - - uid: 3444 - components: - - pos: 68.5,34.5 - parent: 2 - type: Transform - - uid: 3523 - components: - - pos: 57.5,16.5 - parent: 2 - type: Transform - - uid: 3524 - components: - - pos: 56.5,16.5 - parent: 2 - type: Transform - - uid: 3525 - components: - - pos: 55.5,16.5 - parent: 2 - type: Transform - - uid: 3526 - components: - - pos: 54.5,16.5 - parent: 2 - type: Transform - - uid: 3527 - components: - - pos: 53.5,16.5 - parent: 2 - type: Transform - - uid: 3551 - components: - - pos: 88.5,-1.5 - parent: 2 - type: Transform - - uid: 3563 - components: - - pos: 85.5,6.5 - parent: 2 - type: Transform - - uid: 3566 - components: - - pos: 76.5,10.5 - parent: 2 - type: Transform - - uid: 3567 - components: - - pos: 79.5,9.5 - parent: 2 - type: Transform - - uid: 3570 - components: - - pos: 78.5,11.5 - parent: 2 - type: Transform - - uid: 3571 - components: - - pos: 77.5,11.5 - parent: 2 - type: Transform - - uid: 3572 - components: - - pos: 82.5,8.5 - parent: 2 - type: Transform - - uid: 3573 - components: - - pos: 82.5,7.5 - parent: 2 - type: Transform - - uid: 3574 - components: - - pos: 76.5,9.5 - parent: 2 - type: Transform - - uid: 3575 - components: - - pos: 70.5,9.5 - parent: 2 - type: Transform - - uid: 3576 - components: - - pos: 74.5,9.5 - parent: 2 - type: Transform - - uid: 3577 - components: - - pos: 73.5,9.5 - parent: 2 - type: Transform - - uid: 3578 - components: - - pos: 72.5,9.5 - parent: 2 - type: Transform - - uid: 3579 - components: - - pos: 71.5,9.5 - parent: 2 - type: Transform - - uid: 3580 - components: - - pos: 83.5,9.5 - parent: 2 - type: Transform - - uid: 3581 - components: - - pos: 82.5,12.5 - parent: 2 - type: Transform - - uid: 3582 - components: - - pos: 82.5,11.5 - parent: 2 - type: Transform - - uid: 3583 - components: - - pos: 82.5,9.5 - parent: 2 - type: Transform - - uid: 3585 - components: - - pos: 79.5,11.5 - parent: 2 - type: Transform - - uid: 3586 - components: - - pos: 76.5,11.5 - parent: 2 - type: Transform - - uid: 3598 - components: - - pos: 83.5,6.5 - parent: 2 - type: Transform - - uid: 3609 - components: - - pos: 84.5,9.5 - parent: 2 - type: Transform - - uid: 3616 - components: - - pos: 67.5,7.5 - parent: 2 - type: Transform - - uid: 3617 - components: - - pos: 69.5,7.5 - parent: 2 - type: Transform - - uid: 3625 - components: - - pos: 82.5,3.5 - parent: 2 - type: Transform - - uid: 3626 - components: - - pos: 82.5,2.5 - parent: 2 - type: Transform - - uid: 3627 - components: - - pos: 82.5,1.5 - parent: 2 - type: Transform - - uid: 3654 - components: - - pos: 65.5,13.5 - parent: 2 - type: Transform - - uid: 3666 - components: - - pos: 59.5,12.5 - parent: 2 - type: Transform - - uid: 3667 - components: - - pos: 64.5,12.5 - parent: 2 - type: Transform - - uid: 3680 - components: - - pos: 69.5,8.5 - parent: 2 - type: Transform - - uid: 3681 - components: - - pos: 69.5,9.5 - parent: 2 - type: Transform - - uid: 3689 - components: - - pos: 75.5,3.5 - parent: 2 - type: Transform - - uid: 3696 - components: - - pos: 79.5,3.5 - parent: 2 - type: Transform - - uid: 3697 - components: - - pos: 82.5,6.5 - parent: 2 - type: Transform - - uid: 3698 - components: - - pos: 79.5,4.5 - parent: 2 - type: Transform - - uid: 3699 - components: - - pos: 79.5,5.5 - parent: 2 - type: Transform - - uid: 3700 - components: - - pos: 79.5,6.5 - parent: 2 - type: Transform - - uid: 3701 - components: - - pos: 79.5,8.5 - parent: 2 - type: Transform - - uid: 3702 - components: - - pos: 79.5,7.5 - parent: 2 - type: Transform - - uid: 3703 - components: - - pos: 79.5,10.5 - parent: 2 - type: Transform - - uid: 3729 - components: - - pos: 85.5,-4.5 - parent: 2 - type: Transform - - uid: 3730 - components: - - pos: 85.5,-5.5 - parent: 2 - type: Transform - - uid: 3731 - components: - - pos: 84.5,-4.5 - parent: 2 - type: Transform - - uid: 3732 - components: - - pos: 86.5,-1.5 - parent: 2 - type: Transform - - uid: 3733 - components: - - pos: 86.5,-0.5 - parent: 2 - type: Transform - - uid: 3734 - components: - - pos: 86.5,0.5 - parent: 2 - type: Transform - - uid: 3735 - components: - - pos: 85.5,0.5 - parent: 2 - type: Transform - - uid: 3742 - components: - - pos: 85.5,-12.5 - parent: 2 - type: Transform - - uid: 3743 - components: - - pos: 85.5,-13.5 - parent: 2 - type: Transform - - uid: 3772 - components: - - pos: 75.5,0.5 - parent: 2 - type: Transform - - uid: 3773 - components: - - pos: 74.5,0.5 - parent: 2 - type: Transform - - uid: 3774 - components: - - pos: 73.5,0.5 - parent: 2 - type: Transform - - uid: 3776 - components: - - pos: 71.5,0.5 - parent: 2 - type: Transform - - uid: 3777 - components: - - pos: 70.5,0.5 - parent: 2 - type: Transform - - uid: 3778 - components: - - pos: 70.5,-0.5 - parent: 2 - type: Transform - - uid: 3779 - components: - - pos: 69.5,-0.5 - parent: 2 - type: Transform - - uid: 3781 - components: - - pos: 72.5,-4.5 - parent: 2 - type: Transform - - uid: 3782 - components: - - pos: 70.5,-4.5 - parent: 2 - type: Transform - - uid: 3783 - components: - - pos: 69.5,-4.5 - parent: 2 - type: Transform - - uid: 3786 - components: - - pos: 73.5,-6.5 - parent: 2 - type: Transform - - uid: 3787 - components: - - pos: 73.5,-5.5 - parent: 2 - type: Transform - - uid: 3808 - components: - - pos: 78.5,-12.5 - parent: 2 - type: Transform - - uid: 3809 - components: - - pos: 78.5,-13.5 - parent: 2 - type: Transform - - uid: 3810 - components: - - pos: 78.5,-14.5 - parent: 2 - type: Transform - - uid: 3811 - components: - - pos: 77.5,-14.5 - parent: 2 - type: Transform - - uid: 3812 - components: - - pos: 76.5,-14.5 - parent: 2 - type: Transform - - uid: 3813 - components: - - pos: 75.5,-14.5 - parent: 2 - type: Transform - - uid: 3814 - components: - - pos: 75.5,-13.5 - parent: 2 - type: Transform - - uid: 3815 - components: - - pos: 75.5,-12.5 - parent: 2 - type: Transform - - uid: 3816 - components: - - pos: 73.5,-14.5 - parent: 2 - type: Transform - - uid: 3817 - components: - - pos: 72.5,-14.5 - parent: 2 - type: Transform - - uid: 3818 - components: - - pos: 72.5,-13.5 - parent: 2 - type: Transform - - uid: 3819 - components: - - pos: 72.5,-12.5 - parent: 2 - type: Transform - - uid: 3820 - components: - - pos: 72.5,-11.5 - parent: 2 - type: Transform - - uid: 3821 - components: - - pos: 70.5,-14.5 - parent: 2 - type: Transform - - uid: 3822 - components: - - pos: 69.5,-14.5 - parent: 2 - type: Transform - - uid: 3823 - components: - - pos: 84.5,-13.5 - parent: 2 - type: Transform - - uid: 3824 - components: - - pos: 84.5,-14.5 - parent: 2 - type: Transform - - uid: 3825 - components: - - pos: 83.5,-14.5 - parent: 2 - type: Transform - - uid: 3826 - components: - - pos: 81.5,-14.5 - parent: 2 - type: Transform - - uid: 3827 - components: - - pos: 80.5,-14.5 - parent: 2 - type: Transform - - uid: 3828 - components: - - pos: 79.5,-14.5 - parent: 2 - type: Transform - - uid: 3831 - components: - - pos: 89.5,-13.5 - parent: 2 - type: Transform - - uid: 3832 - components: - - pos: 88.5,-13.5 - parent: 2 - type: Transform - - uid: 3833 - components: - - pos: 88.5,-12.5 - parent: 2 - type: Transform - - uid: 3834 - components: - - pos: 87.5,-13.5 - parent: 2 - type: Transform - - uid: 4019 - components: - - pos: 30.5,-8.5 - parent: 2 - type: Transform - - uid: 4041 - components: - - pos: 28.5,-8.5 - parent: 2 - type: Transform - - uid: 4053 - components: - - pos: 28.5,-9.5 - parent: 2 - type: Transform - - uid: 4110 - components: - - pos: 21.5,-8.5 - parent: 2 - type: Transform - - uid: 4251 - components: - - pos: 9.5,-12.5 - parent: 2 - type: Transform - - uid: 4266 - components: - - pos: 28.5,-20.5 - parent: 2 - type: Transform - - uid: 4313 - components: - - pos: 16.5,-37.5 - parent: 2 - type: Transform - - uid: 4318 - components: - - pos: 17.5,-37.5 - parent: 2 - type: Transform - - uid: 4319 - components: - - pos: 25.5,-37.5 - parent: 2 - type: Transform - - uid: 4320 - components: - - pos: 26.5,-37.5 - parent: 2 - type: Transform - - uid: 4321 - components: - - pos: 27.5,-38.5 - parent: 2 - type: Transform - - uid: 4322 - components: - - pos: 27.5,-39.5 - parent: 2 - type: Transform - - uid: 4323 - components: - - pos: 27.5,-40.5 - parent: 2 - type: Transform - - uid: 4324 - components: - - pos: 27.5,-41.5 - parent: 2 - type: Transform - - uid: 4326 - components: - - pos: 27.5,-42.5 - parent: 2 - type: Transform - - uid: 5057 - components: - - pos: 32.5,-9.5 - parent: 2 - type: Transform - - uid: 5174 - components: - - pos: 76.5,6.5 - parent: 2 - type: Transform - - uid: 5401 - components: - - pos: 63.5,18.5 - parent: 2 - type: Transform - - uid: 5402 - components: - - pos: 63.5,19.5 - parent: 2 - type: Transform - - uid: 5404 - components: - - pos: 63.5,20.5 - parent: 2 - type: Transform - - uid: 5420 - components: - - pos: 32.5,-11.5 - parent: 2 - type: Transform - - uid: 5441 - components: - - pos: 71.5,38.5 - parent: 2 - type: Transform - - uid: 5442 - components: - - pos: 70.5,38.5 - parent: 2 - type: Transform - - uid: 5443 - components: - - pos: 69.5,38.5 - parent: 2 - type: Transform - - uid: 5862 - components: - - pos: 29.5,-1.5 - parent: 2 - type: Transform - - uid: 5863 - components: - - pos: 28.5,-7.5 - parent: 2 - type: Transform - - uid: 6481 - components: - - pos: 41.5,-2.5 - parent: 2 - type: Transform - - uid: 6494 - components: - - pos: 32.5,3.5 - parent: 2 - type: Transform - - uid: 6515 - components: - - pos: 45.5,-10.5 - parent: 2 - type: Transform - - uid: 6516 - components: - - pos: 31.5,3.5 - parent: 2 - type: Transform - - uid: 6517 - components: - - pos: 30.5,3.5 - parent: 2 - type: Transform - - uid: 6518 - components: - - pos: 29.5,3.5 - parent: 2 - type: Transform - - uid: 6574 - components: - - pos: 47.5,-2.5 - parent: 2 - type: Transform - - uid: 6776 - components: - - pos: -4.5,-10.5 - parent: 2 - type: Transform - - uid: 6824 - components: - - pos: 2.5,-2.5 - parent: 2 - type: Transform - - uid: 6847 - components: - - pos: 5.5,-14.5 - parent: 2 - type: Transform - - uid: 6893 - components: - - pos: 28.5,-22.5 - parent: 2 - type: Transform - - uid: 6894 - components: - - pos: 2.5,-16.5 - parent: 2 - type: Transform - - uid: 7035 - components: - - pos: 75.5,5.5 - parent: 2 - type: Transform - - uid: 7896 - components: - - pos: 10.5,15.5 - parent: 2 - type: Transform - - uid: 8805 - components: - - pos: 104.5,-20.5 - parent: 2 - type: Transform - - uid: 8832 - components: - - pos: 104.5,-13.5 - parent: 2 - type: Transform - - uid: 8834 - components: - - pos: 103.5,-14.5 - parent: 2 - type: Transform - - uid: 8835 - components: - - pos: 104.5,-14.5 - parent: 2 - type: Transform - - uid: 8836 - components: - - pos: 102.5,-14.5 - parent: 2 - type: Transform - - uid: 8883 - components: - - pos: 109.5,-19.5 - parent: 2 - type: Transform - - uid: 8884 - components: - - pos: 109.5,-18.5 - parent: 2 - type: Transform - - uid: 8886 - components: - - pos: 109.5,-15.5 - parent: 2 - type: Transform - - uid: 8887 - components: - - pos: 109.5,-16.5 - parent: 2 - type: Transform - - uid: 9221 - components: - - pos: 39.5,-18.5 - parent: 2 - type: Transform - - uid: 10026 - components: - - pos: 16.5,-10.5 - parent: 2 - type: Transform - - uid: 10027 - components: - - pos: 16.5,-9.5 - parent: 2 - type: Transform - - uid: 10028 - components: - - pos: 16.5,-8.5 - parent: 2 - type: Transform - - uid: 10029 - components: - - pos: 14.5,-8.5 - parent: 2 - type: Transform - - uid: 10812 - components: - - pos: 89.5,-17.5 - parent: 2 - type: Transform - - uid: 11311 - components: - - pos: 75.5,6.5 - parent: 2 - type: Transform - - uid: 11312 - components: - - pos: 75.5,4.5 - parent: 2 - type: Transform - - uid: 11415 - components: - - pos: 77.5,6.5 - parent: 2 - type: Transform - - uid: 11424 - components: - - pos: 78.5,6.5 - parent: 2 - type: Transform - - uid: 11878 - components: - - pos: 69.5,3.5 - parent: 2 - type: Transform - - uid: 11885 - components: - - pos: 74.5,3.5 - parent: 2 - type: Transform - - uid: 11897 - components: - - pos: 76.5,8.5 - parent: 2 - type: Transform -- proto: WallSolidRust - entities: - - uid: 7884 - components: - - pos: 32.5,-58.5 - parent: 2 - type: Transform - - uid: 11576 - components: - - pos: 31.5,-58.5 - parent: 2 - type: Transform -- proto: WallWeaponCapacitorRecharger - entities: - - uid: 11145 - components: - - pos: 39.5,20.5 - parent: 2 - type: Transform - - canCollide: False - type: Physics - - 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 - type: ContainerContainer -- proto: WardrobeAtmosphericsFilled - entities: - - uid: 4267 - components: - - pos: 28.5,-31.5 - parent: 2 - type: Transform -- proto: WardrobeBlueFilled - entities: - - uid: 4220 - components: - - pos: 21.5,12.5 - parent: 2 - type: Transform -- proto: WardrobeChapelFilled - entities: - - uid: 9724 - components: - - pos: 32.5,9.5 - parent: 2 - type: Transform -- proto: WardrobeEngineeringFilled - entities: - - uid: 4268 - components: - - pos: 24.5,-31.5 - parent: 2 - type: Transform -- proto: WardrobeGreenFilled - entities: - - uid: 10813 - components: - - pos: 89.5,-14.5 - parent: 2 - type: Transform -- proto: WardrobeMixedFilled - entities: - - uid: 2495 - components: - - pos: 23.5,12.5 - parent: 2 - type: Transform -- proto: WardrobePinkFilled - entities: - - uid: 5415 - components: - - pos: 5.5,-11.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13063 - components: - - pos: 6.5,-11.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: WardrobePrison - entities: - - uid: 2308 - components: - - pos: 41.5,33.5 - parent: 2 - type: Transform -- proto: WardrobePrisonFilled - entities: - - uid: 2325 - components: - - pos: 36.5,31.5 - parent: 2 - type: Transform - - uid: 8686 - components: - - pos: 29.5,21.5 - parent: 2 - type: Transform - - uid: 8687 - components: - - pos: 29.5,17.5 - parent: 2 - type: Transform -- proto: WardrobeVirologyFilled - entities: - - uid: 10910 - components: - - pos: 82.5,-5.5 - parent: 2 - type: Transform -- proto: WardrobeWhiteFilled - entities: - - uid: 1470 - components: - - pos: 5.5,-31.5 - parent: 2 - type: Transform - - uid: 4696 - components: - - pos: 18.5,16.5 - parent: 2 - type: Transform -- proto: WardrobeYellowFilled - entities: - - uid: 1858 - components: - - pos: 22.5,12.5 - parent: 2 - type: Transform -- proto: WarningCO2 - entities: - - uid: 5208 - components: - - pos: 48.5,-27.5 - parent: 2 - type: Transform -- proto: WarningN2 - entities: - - uid: 5196 - components: - - pos: 48.5,-23.5 - parent: 2 - type: Transform -- proto: WarningO2 - entities: - - uid: 5207 - components: - - pos: 48.5,-25.5 - parent: 2 - type: Transform -- proto: WarningPlasma - entities: - - uid: 5217 - components: - - pos: 48.5,-31.5 - parent: 2 - type: Transform -- proto: WarningWaste - entities: - - uid: 4573 - components: - - pos: 48.5,-33.5 - parent: 2 - type: Transform - - uid: 5216 - components: - - pos: 48.5,-29.5 - parent: 2 - type: Transform -- proto: WaterCooler - entities: - - uid: 5379 - components: - - pos: 64.5,16.5 - parent: 2 - type: Transform - - uid: 5643 - components: - - pos: 14.5,-23.5 - parent: 2 - type: Transform - - uid: 11223 - components: - - pos: 21.5,35.5 - parent: 2 - type: Transform - - uid: 11430 - components: - - pos: 76.5,3.5 - parent: 2 - type: Transform -- proto: WaterTankFull - entities: - - uid: 201 - components: - - pos: 1.5,-16.5 - parent: 2 - type: Transform - - uid: 606 - components: - - pos: 23.5,-2.5 - parent: 2 - type: Transform - - uid: 2164 - components: - - pos: 18.5,26.5 - parent: 2 - type: Transform - - uid: 5532 - components: - - pos: 65.5,18.5 - parent: 2 - type: Transform - - uid: 5715 - components: - - pos: 23.5,7.5 - parent: 2 - type: Transform - - uid: 5730 - components: - - pos: 72.5,-6.5 - parent: 2 - type: Transform - - uid: 5787 - components: - - pos: 29.5,-17.5 - parent: 2 - type: Transform - - uid: 10790 - components: - - pos: 57.5,-17.5 - parent: 2 - type: Transform - - uid: 10838 - components: - - pos: 66.5,47.5 - parent: 2 - type: Transform - - uid: 12407 - components: - - pos: 46.5,-19.5 - parent: 2 - type: Transform -- proto: WaterTankHighCapacity - entities: - - uid: 4277 - components: - - pos: 5.5,-6.5 - parent: 2 - type: Transform - - uid: 6681 - components: - - pos: 47.5,-3.5 - parent: 2 - type: Transform -- proto: WeaponCapacitorRecharger - entities: - - uid: 622 - components: - - pos: 41.5,24.5 - parent: 2 - type: Transform - - uid: 2050 - components: - - pos: 34.5,41.5 - parent: 2 - type: Transform - - uid: 5062 - components: - - pos: 36.5,20.5 - parent: 2 - type: Transform - - uid: 7979 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-3.5 - parent: 2 - type: Transform - - uid: 11146 - components: - - pos: 44.5,23.5 - parent: 2 - type: Transform - - canCollide: False - type: Physics - - 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: ContainerContainer - - uid: 12172 - components: - - pos: 29.5,48.5 - parent: 2 - type: Transform - - canCollide: False - type: Physics -- proto: WeaponDisabler - entities: - - uid: 10135 - components: - - pos: 41.567085,22.308064 - parent: 2 - type: Transform - - uid: 10136 - components: - - pos: 41.567085,22.558064 - parent: 2 - type: Transform -- proto: WeaponRevolverDeckard - entities: - - uid: 11861 - components: - - flags: InContainer - type: MetaData - - parent: 12094 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: WeaponRifleLecter - entities: - - uid: 2311 - components: - - pos: 38.53101,27.682423 - parent: 2 - type: Transform - - uid: 7781 - components: - - pos: 38.546635,27.573048 - parent: 2 - type: Transform - - uid: 7782 - components: - - pos: 38.56226,27.338673 - parent: 2 - type: Transform -- proto: WeaponSubMachineGunWt550 - entities: - - uid: 7940 - components: - - pos: 45.454727,23.618372 - parent: 2 - type: Transform -- proto: WeedSpray - entities: - - uid: 4061 - components: - - pos: 44.304684,-5.2802296 - parent: 2 - type: Transform -- proto: WelderIndustrial - entities: - - uid: 12300 - components: - - pos: 32.547882,-30.463009 - parent: 2 - type: Transform -- proto: WeldingFuelTankFull - entities: - - uid: 200 - components: - - pos: 0.5,-16.5 - parent: 2 - type: Transform - - uid: 800 - components: - - pos: 14.5,-28.5 - parent: 2 - type: Transform - - uid: 2163 - components: - - pos: 17.5,26.5 - parent: 2 - type: Transform - - uid: 5391 - components: - - pos: 47.5,9.5 - parent: 2 - type: Transform - - uid: 5531 - components: - - pos: 65.5,20.5 - parent: 2 - type: Transform - - uid: 5705 - components: - - pos: 85.5,-0.5 - parent: 2 - type: Transform - - uid: 5786 - components: - - pos: 30.5,-17.5 - parent: 2 - type: Transform - - uid: 10789 - components: - - pos: 56.5,-17.5 - parent: 2 - type: Transform - - uid: 10840 - components: - - pos: 45.5,42.5 - parent: 2 - type: Transform - - uid: 12406 - components: - - pos: 47.5,-19.5 - parent: 2 - type: Transform -- proto: WetFloorSign - entities: - - uid: 12306 - components: - - pos: 5.351077,-5.5586295 - parent: 2 - type: Transform - - uid: 12494 - components: - - pos: 11.536887,-11.504442 - parent: 2 - type: Transform -- proto: Windoor - entities: - - uid: 308 - components: - - rot: 3.141592653589793 rad - pos: 9.5,4.5 - parent: 2 - type: Transform - - uid: 563 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-2.5 - parent: 2 - type: Transform - - uid: 1101 - components: - - rot: 3.141592653589793 rad - pos: 19.5,8.5 - parent: 2 - type: Transform - - uid: 1102 - components: - - rot: 3.141592653589793 rad - pos: 18.5,8.5 - parent: 2 - type: Transform - - uid: 2318 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,35.5 - parent: 2 - type: Transform - - uid: 2528 - components: - - rot: 3.141592653589793 rad - pos: 38.5,4.5 - parent: 2 - type: Transform - - uid: 7775 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-1.5 - parent: 2 - type: Transform - - uid: 7778 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-1.5 - parent: 2 - type: Transform -- proto: WindoorBarKitchenLocked - entities: - - uid: 544 - components: - - pos: 35.5,-8.5 - parent: 2 - type: Transform - - uid: 545 - components: - - pos: 36.5,-8.5 - parent: 2 - type: Transform - - uid: 565 - components: - - pos: 34.5,-8.5 - parent: 2 - type: Transform -- proto: WindoorChapelLocked - entities: - - uid: 9730 - components: - - rot: 3.141592653589793 rad - pos: 31.5,5.5 - parent: 2 - type: Transform -- proto: WindoorHydroponicsLocked - entities: - - uid: 6646 - components: - - pos: 43.5,-2.5 - parent: 2 - type: Transform - - uid: 6647 - components: - - pos: 44.5,-2.5 - parent: 2 - type: Transform -- proto: WindoorKitchenHydroponicsLocked - entities: - - uid: 543 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-7.5 - parent: 2 - type: Transform - - uid: 5055 - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-7.5 - parent: 2 - type: Transform -- proto: WindoorSecure - entities: - - uid: 5266 - components: - - pos: 77.5,-5.5 - parent: 2 - type: Transform - - uid: 5876 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-28.5 - parent: 2 - type: Transform - - uid: 6852 - components: - - pos: -2.5,0.5 - parent: 2 - type: Transform - - uid: 7617 - components: - - pos: -4.5,0.5 - parent: 2 - type: Transform - - uid: 7847 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,31.5 - parent: 2 - type: Transform - - uid: 7942 - components: - - pos: -19.5,-12.5 - parent: 2 - type: Transform - - uid: 7943 - components: - - pos: -12.5,-12.5 - parent: 2 - type: Transform - - uid: 8950 - components: - - rot: -1.5707963267948966 rad - pos: 113.5,-19.5 - parent: 2 - type: Transform - - uid: 10121 - components: - - pos: 80.5,-2.5 - parent: 2 - type: Transform -- proto: WindoorSecureArmoryLocked - entities: - - uid: 7679 - components: - - rot: 3.141592653589793 rad - pos: 38.5,21.5 - parent: 2 - type: Transform - - uid: 7752 - components: - - rot: 3.141592653589793 rad - pos: 39.5,21.5 - parent: 2 - type: Transform -- proto: WindoorSecureCargoLocked - entities: - - uid: 4556 - components: - - pos: 9.5,20.5 - parent: 2 - type: Transform - - uid: 10119 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,22.5 - parent: 2 - type: Transform - - uid: 12840 - components: - - rot: 3.141592653589793 rad - pos: 9.5,20.5 - parent: 2 - type: Transform -- proto: WindoorSecureChemistryLocked - entities: - - uid: 12078 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-7.5 - parent: 2 - type: Transform -- proto: WindoorSecureCommandLocked - entities: - - uid: 8247 - components: - - pos: 14.5,38.5 - parent: 2 - type: Transform -- proto: WindoorSecureEngineeringLocked - entities: - - uid: 5858 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-15.5 - parent: 2 - type: Transform - - uid: 5865 - components: - - rot: 3.141592653589793 rad - pos: 23.5,-15.5 - parent: 2 - type: Transform -- proto: WindoorSecureHeadOfPersonnelLocked - entities: - - uid: 10272 - components: - - pos: 16.5,-2.5 - parent: 2 - type: Transform -- proto: WindoorSecureMedicalLocked - entities: - - uid: 5139 - components: - - pos: 50.5,-3.5 - parent: 2 - type: Transform - - uid: 5140 - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-4.5 - parent: 2 - type: Transform - - uid: 9615 - components: - - rot: -1.5707963267948966 rad - pos: 52.5,3.5 - parent: 2 - type: Transform -- proto: WindoorSecureScienceLocked - entities: - - uid: 3513 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,18.5 - parent: 2 - type: Transform - - uid: 5366 - components: - - pos: 47.5,12.5 - parent: 2 - type: Transform - - uid: 8669 - components: - - pos: 62.5,26.5 - parent: 2 - type: Transform - - uid: 8697 - components: - - rot: 3.141592653589793 rad - pos: 62.5,26.5 - parent: 2 - type: Transform - - uid: 12108 - components: - - rot: 1.5707963267948966 rad - pos: 46.5,10.5 - parent: 2 - type: Transform -- proto: WindoorSecureSecurityLocked - entities: - - uid: 2258 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,20.5 - parent: 2 - type: Transform - - links: - - 7716 - type: DeviceLinkSink - - uid: 2259 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,18.5 - parent: 2 - type: Transform - - links: - - 7718 - type: DeviceLinkSink - - uid: 2421 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,25.5 - parent: 2 - type: Transform - - uid: 2428 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,29.5 - parent: 2 - type: Transform - - uid: 2429 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,25.5 - parent: 2 - type: Transform - - uid: 2471 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,18.5 - parent: 2 - type: Transform - - uid: 7738 - components: - - pos: -2.5,-2.5 - parent: 2 - type: Transform - - uid: 7945 - components: - - rot: 3.141592653589793 rad - pos: 19.5,32.5 - parent: 2 - type: Transform - - uid: 7974 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 2 - type: Transform -- proto: Window - entities: - - uid: 289 - components: - - pos: 7.5,5.5 - parent: 2 - type: Transform - - uid: 290 - components: - - pos: 7.5,6.5 - parent: 2 - type: Transform - - uid: 291 - components: - - pos: 7.5,7.5 - parent: 2 - type: Transform - - uid: 292 - components: - - pos: 8.5,8.5 - parent: 2 - type: Transform - - uid: 293 - components: - - pos: 10.5,8.5 - parent: 2 - type: Transform - - uid: 294 - components: - - pos: 12.5,8.5 - parent: 2 - type: Transform - - uid: 834 - components: - - pos: 58.5,-7.5 - parent: 2 - type: Transform - - uid: 1509 - components: - - pos: 34.5,-1.5 - parent: 2 - type: Transform - - uid: 1558 - components: - - pos: 28.5,-6.5 - parent: 2 - type: Transform - - uid: 1613 - components: - - pos: 28.5,-3.5 - parent: 2 - type: Transform - - uid: 1614 - components: - - pos: 28.5,-4.5 - parent: 2 - type: Transform - - uid: 1797 - components: - - pos: 28.5,-14.5 - parent: 2 - type: Transform - - uid: 1798 - components: - - pos: 28.5,-17.5 - parent: 2 - type: Transform - - uid: 2086 - components: - - pos: 7.5,20.5 - parent: 2 - type: Transform - - uid: 2088 - components: - - pos: 11.5,29.5 - parent: 2 - type: Transform - - uid: 2089 - components: - - pos: 13.5,29.5 - parent: 2 - type: Transform - - uid: 2090 - components: - - pos: 16.5,21.5 - parent: 2 - type: Transform - - uid: 2184 - components: - - pos: 24.5,15.5 - parent: 2 - type: Transform - - uid: 2185 - components: - - pos: 24.5,12.5 - parent: 2 - type: Transform - - uid: 2542 - components: - - pos: 39.5,8.5 - parent: 2 - type: Transform - - uid: 2543 - components: - - pos: 39.5,9.5 - parent: 2 - type: Transform - - uid: 2544 - components: - - pos: 39.5,6.5 - parent: 2 - type: Transform - - uid: 2545 - components: - - pos: 39.5,5.5 - parent: 2 - type: Transform - - uid: 2682 - components: - - pos: 22.5,33.5 - parent: 2 - type: Transform - - uid: 2683 - components: - - pos: 22.5,32.5 - parent: 2 - type: Transform - - uid: 2684 - components: - - pos: 22.5,30.5 - parent: 2 - type: Transform - - uid: 2685 - components: - - pos: 22.5,29.5 - parent: 2 - type: Transform - - uid: 2686 - components: - - pos: 23.5,34.5 - parent: 2 - type: Transform - - uid: 2687 - components: - - pos: 24.5,34.5 - parent: 2 - type: Transform - - uid: 2892 - components: - - pos: 60.5,-18.5 - parent: 2 - type: Transform - - uid: 2893 - components: - - pos: 59.5,-18.5 - parent: 2 - type: Transform - - uid: 2894 - components: - - pos: 65.5,-18.5 - parent: 2 - type: Transform - - uid: 2895 - components: - - pos: 66.5,-18.5 - parent: 2 - type: Transform - - uid: 5004 - components: - - pos: 43.5,1.5 - parent: 2 - type: Transform - - uid: 5005 - components: - - pos: 44.5,1.5 - parent: 2 - type: Transform - - uid: 5006 - components: - - pos: 46.5,1.5 - parent: 2 - type: Transform - - uid: 5007 - components: - - pos: 47.5,1.5 - parent: 2 - type: Transform - - uid: 5008 - components: - - pos: 48.5,4.5 - parent: 2 - type: Transform - - uid: 5175 - components: - - pos: 58.5,-3.5 - parent: 2 - type: Transform - - uid: 5785 - components: - - pos: 28.5,-5.5 - parent: 2 - type: Transform - - uid: 9064 - components: - - pos: 67.5,-18.5 - parent: 2 - type: Transform - - uid: 10802 - components: - - pos: 85.5,-14.5 - parent: 2 - type: Transform - - uid: 11308 - components: - - pos: 58.5,-4.5 - parent: 2 - type: Transform - - uid: 11316 - components: - - rot: 3.141592653589793 rad - pos: 70.5,3.5 - parent: 2 - type: Transform - - uid: 11871 - components: - - rot: 3.141592653589793 rad - pos: 72.5,3.5 - parent: 2 - type: Transform - - uid: 11872 - components: - - rot: 3.141592653589793 rad - pos: 73.5,3.5 - parent: 2 - type: Transform - - uid: 11873 - components: - - rot: 3.141592653589793 rad - pos: 69.5,4.5 - parent: 2 - type: Transform - - uid: 11875 - components: - - rot: 3.141592653589793 rad - pos: 69.5,5.5 - parent: 2 - type: Transform - - uid: 11877 - components: - - rot: 3.141592653589793 rad - pos: 69.5,6.5 - parent: 2 - type: Transform -- proto: WindowDirectional - entities: - - uid: 6791 - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-13.5 - parent: 2 - type: Transform - - uid: 6792 - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-13.5 - parent: 2 - type: Transform - - uid: 7776 - components: - - rot: 3.141592653589793 rad - pos: 8.5,12.5 - parent: 2 - type: Transform - - uid: 7777 - components: - - pos: 8.5,13.5 - parent: 2 - type: Transform - - uid: 8708 - components: - - rot: 3.141592653589793 rad - pos: 17.5,8.5 - parent: 2 - type: Transform - - uid: 8709 - components: - - rot: 3.141592653589793 rad - pos: 20.5,8.5 - parent: 2 - type: Transform - - uid: 10444 - components: - - rot: 3.141592653589793 rad - pos: 58.5,8.5 - parent: 2 - type: Transform - - uid: 10445 - components: - - pos: 58.5,12.5 - parent: 2 - type: Transform - - uid: 10844 - components: - - pos: 46.5,37.5 - parent: 2 - type: Transform - - uid: 10845 - components: - - pos: 46.5,32.5 - parent: 2 - type: Transform - - uid: 11860 - components: - - pos: 40.5,35.5 - parent: 2 - type: Transform - - uid: 12373 - components: - - pos: 41.5,35.5 - parent: 2 - type: Transform - - uid: 12999 - components: - - pos: 34.5,-42.5 - parent: 2 - type: Transform - - uid: 13000 - components: - - rot: 3.141592653589793 rad - pos: 34.5,-46.5 - parent: 2 - type: Transform -- proto: WindowFrostedDirectional - entities: - - uid: 5063 - components: - - rot: -1.5707963267948966 rad - pos: 59.5,3.5 - parent: 2 - type: Transform - - uid: 5064 - components: - - rot: -1.5707963267948966 rad - pos: 59.5,4.5 - parent: 2 - type: Transform - - uid: 5243 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,3.5 - parent: 2 - type: Transform - - uid: 7076 - components: - - rot: -1.5707963267948966 rad - pos: 65.5,3.5 - parent: 2 - type: Transform - - uid: 7770 - components: - - rot: 3.141592653589793 rad - pos: 13.5,4.5 - parent: 2 - type: Transform - - uid: 7771 - components: - - pos: 12.5,4.5 - parent: 2 - type: Transform - - uid: 7772 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,4.5 - parent: 2 - type: Transform - - uid: 11291 - components: - - rot: 1.5707963267948966 rad - pos: 67.5,3.5 - parent: 2 - type: Transform - - uid: 11748 - components: - - rot: -1.5707963267948966 rad - pos: 62.5,3.5 - parent: 2 - type: Transform - - uid: 11751 - components: - - rot: -1.5707963267948966 rad - pos: 62.5,4.5 - parent: 2 - type: Transform - - uid: 11752 - components: - - rot: 1.5707963267948966 rad - pos: 67.5,4.5 - parent: 2 - type: Transform - - uid: 11753 - components: - - rot: -1.5707963267948966 rad - pos: 65.5,4.5 - parent: 2 - type: Transform -- proto: WindowReinforcedDirectional - entities: - - uid: 77 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-12.5 - parent: 2 - type: Transform - - uid: 78 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-12.5 - parent: 2 - type: Transform - - uid: 81 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-12.5 - parent: 2 - type: Transform - - uid: 135 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-30.5 - parent: 2 - type: Transform - - uid: 224 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-15.5 - parent: 2 - type: Transform - - uid: 227 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-8.5 - parent: 2 - type: Transform - - uid: 358 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-12.5 - parent: 2 - type: Transform - - uid: 542 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-8.5 - parent: 2 - type: Transform - - uid: 673 - components: - - pos: 27.5,-30.5 - parent: 2 - type: Transform - - uid: 836 - components: - - pos: 25.5,-30.5 - parent: 2 - type: Transform - - uid: 837 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-30.5 - parent: 2 - type: Transform - - uid: 849 - components: - - rot: 3.141592653589793 rad - pos: 25.5,-30.5 - parent: 2 - type: Transform - - uid: 868 - components: - - pos: 26.5,-30.5 - parent: 2 - type: Transform - - uid: 874 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-30.5 - parent: 2 - type: Transform - - uid: 2158 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,47.5 - parent: 2 - type: Transform - - uid: 2159 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,48.5 - parent: 2 - type: Transform - - uid: 2410 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,17.5 - parent: 2 - type: Transform - - uid: 2463 - components: - - rot: 3.141592653589793 rad - pos: 36.5,19.5 - parent: 2 - type: Transform - - uid: 2733 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,30.5 - parent: 2 - type: Transform - - uid: 4276 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-30.5 - parent: 2 - type: Transform - - uid: 5034 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,48.5 - parent: 2 - type: Transform - - uid: 5808 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-30.5 - parent: 2 - type: Transform - - uid: 5864 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-32.5 - parent: 2 - type: Transform - - uid: 5866 - components: - - rot: 3.141592653589793 rad - pos: 22.5,-15.5 - parent: 2 - type: Transform - - uid: 5867 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-31.5 - parent: 2 - type: Transform - - uid: 5868 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-29.5 - parent: 2 - type: Transform - - uid: 5869 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-29.5 - parent: 2 - type: Transform - - uid: 6832 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,0.5 - parent: 2 - type: Transform - - uid: 7762 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,19.5 - parent: 2 - type: Transform - - uid: 7785 - components: - - rot: 3.141592653589793 rad - pos: 23.5,24.5 - parent: 2 - type: Transform - - uid: 7786 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,24.5 - parent: 2 - type: Transform - - uid: 7787 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,22.5 - parent: 2 - type: Transform - - uid: 7788 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,23.5 - parent: 2 - type: Transform - - uid: 7796 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,48.5 - parent: 2 - type: Transform - - uid: 7797 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,48.5 - parent: 2 - type: Transform - - uid: 7804 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,48.5 - parent: 2 - type: Transform - - uid: 7805 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,47.5 - parent: 2 - type: Transform - - uid: 7806 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,48.5 - parent: 2 - type: Transform - - uid: 7844 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,33.5 - parent: 2 - type: Transform - - uid: 7845 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,32.5 - parent: 2 - type: Transform - - uid: 7846 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,29.5 - parent: 2 - type: Transform - - uid: 7892 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,0.5 - parent: 2 - type: Transform - - uid: 7952 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-1.5 - parent: 2 - type: Transform - - uid: 7954 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-1.5 - parent: 2 - type: Transform - - uid: 7955 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-1.5 - parent: 2 - type: Transform - - uid: 7973 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-3.5 - parent: 2 - type: Transform - - uid: 7975 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-5.5 - parent: 2 - type: Transform - - uid: 8245 - components: - - pos: 13.5,38.5 - parent: 2 - type: Transform - - uid: 8246 - components: - - pos: 15.5,38.5 - parent: 2 - type: Transform - - uid: 8248 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,33.5 - parent: 2 - type: Transform - - uid: 8250 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,33.5 - parent: 2 - type: Transform - - uid: 8946 - components: - - rot: -1.5707963267948966 rad - pos: 113.5,-15.5 - parent: 2 - type: Transform - - uid: 8947 - components: - - rot: -1.5707963267948966 rad - pos: 113.5,-16.5 - parent: 2 - type: Transform - - uid: 8948 - components: - - rot: -1.5707963267948966 rad - pos: 113.5,-17.5 - parent: 2 - type: Transform - - uid: 8949 - components: - - rot: -1.5707963267948966 rad - pos: 113.5,-18.5 - parent: 2 - type: Transform - - uid: 9613 - components: - - rot: -1.5707963267948966 rad - pos: 52.5,2.5 - parent: 2 - type: Transform - - uid: 9614 - components: - - rot: -1.5707963267948966 rad - pos: 52.5,4.5 - parent: 2 - type: Transform - - uid: 9722 - components: - - rot: 3.141592653589793 rad - pos: 32.5,5.5 - parent: 2 - type: Transform - - uid: 9723 - components: - - rot: 3.141592653589793 rad - pos: 30.5,5.5 - parent: 2 - type: Transform - - uid: 9725 - components: - - rot: 3.141592653589793 rad - pos: 29.5,5.5 - parent: 2 - type: Transform -- proto: Wirecutter - entities: - - uid: 10793 - components: - - pos: 69.53111,-15.461584 - parent: 2 - type: Transform - - uid: 11128 - components: - - pos: 54.426773,-14.387592 - parent: 2 - type: Transform -- proto: WoodDoor - entities: - - uid: 12391 - components: - - pos: 34.5,4.5 - parent: 2 - type: Transform - - uid: 12392 - components: - - pos: 36.5,4.5 - parent: 2 - type: Transform -- proto: Wrench - entities: - - uid: 604 - components: - - pos: 30.501482,-14.418215 - parent: 2 - type: Transform - - uid: 5325 - components: - - pos: 55.374165,17.598963 - parent: 2 - type: Transform - - uid: 11127 - components: - - pos: 54.489273,-14.340717 - parent: 2 - type: Transform -... +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 3: FloorArcadeRed + 11: FloorBar + 13: FloorBlue + 14: FloorBlueCircuit + 18: FloorCarpetOffice + 22: FloorDark + 27: FloorDarkMono + 34: FloorEighties + 37: FloorFreezer + 40: FloorGrass + 44: FloorGreenCircuit + 48: FloorHydro + 50: FloorLaundry + 51: FloorLino + 59: FloorRGlass + 60: FloorReinforced + 62: FloorRockVault + 63: FloorShowroom + 71: FloorSteel + 76: FloorSteelDirty + 78: FloorSteelMini + 83: FloorTechMaint + 84: FloorTechMaint2 + 87: FloorWhite + 91: FloorWhiteMini + 97: FloorWood + 99: Lattice + 100: Plating +entities: +- proto: "" + entities: + - uid: 2 + components: + - type: MetaData + - pos: 0.4375,0.484375 + parent: 126 + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAADRwAAAAACRwAAAAACZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAGwAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAABRwAAAAAAZAAAAAAAYQAAAAADYQAAAAABYQAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAACZAAAAAAAYQAAAAADYQAAAAAAYQAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAABFgAAAAACYQAAAAADYQAAAAABYQAAAAABYQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAABRwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAACRwAAAAAC + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAACZAAAAAAARwAAAAACRwAAAAABRwAAAAADAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAGwAAAAADZAAAAAAAGwAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: RwAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAABAAAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAADZAAAAAAAYQAAAAAAYQAAAAACYQAAAAABYQAAAAABYQAAAAADYQAAAAACZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAADZAAAAAAAYQAAAAAAYQAAAAADYQAAAAAAYQAAAAABYQAAAAACYQAAAAABZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAABZAAAAAAAYQAAAAABYQAAAAAAYQAAAAACYQAAAAABYQAAAAABYQAAAAADVAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAAAZAAAAAAAYQAAAAABYQAAAAADYQAAAAADYQAAAAAAYQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAACZAAAAAAAYQAAAAADYQAAAAABYQAAAAADYQAAAAACYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAABZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAABAAAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAABRwAAAAACRwAAAAADRwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAABZAAAAAAAJQAAAAAAPwAAAAAAJQAAAAAAPwAAAAAAJQAAAAAAZAAAAAAAYQAAAAADYQAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAACZAAAAAAAJQAAAAAAPwAAAAAAJQAAAAAAJQAAAAAAPwAAAAAAZAAAAAAAYQAAAAABYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAYQAAAAAAYQAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAYQAAAAADYQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: ZAAAAAAAZAAAAAAAVAAAAAAAPAAAAAAAPAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAABFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAADFgAAAAACFgAAAAAAFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAFgAAAAADFgAAAAABFgAAAAABFgAAAAAAFgAAAAABFgAAAAACFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAACFgAAAAACFgAAAAADZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAACFgAAAAABFgAAAAADFgAAAAADZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAARwAAAAACFgAAAAADFgAAAAABFgAAAAAAFgAAAAADFgAAAAACZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAADZAAAAAAAFgAAAAACFgAAAAAAFgAAAAADFgAAAAADFgAAAAABZAAAAAAAFgAAAAACFgAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAMAAAAAAARwAAAAADRwAAAAABRwAAAAACZAAAAAAAFgAAAAABFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAMAAAAAAARwAAAAABRwAAAAACRwAAAAABZAAAAAAAFgAAAAABFgAAAAADZAAAAAAARwAAAAADRwAAAAABFgAAAAAAFgAAAAAAFgAAAAACZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADZAAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAADRwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAAB + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAOwAAAAAAYwAAAAAAOwAAAAADAAAAAAAAOwAAAAADYwAAAAAAOwAAAAABYwAAAAAAOwAAAAADYwAAAAAAOwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAOwAAAAACYwAAAAAAOwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAACYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAABYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAADYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAABYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAACAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAALAAAAAAALAAAAAAALAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAALAAAAAAALAAAAAAALAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAALAAAAAAALAAAAAAALAAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAADRwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAAAVAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAACZAAAAAAARwAAAAABRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAABZAAAAAAARwAAAAACRwAAAAABRwAAAAACZAAAAAAAZAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: RwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAACRwAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAACZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAFgAAAAADFgAAAAACFgAAAAABZAAAAAAAMgAAAAAAVwAAAAADVwAAAAABMgAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAVwAAAAADVwAAAAADVwAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAABZAAAAAAAMgAAAAAAVwAAAAACVwAAAAACMgAAAAAAVAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAVwAAAAADVwAAAAADVwAAAAABZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAMgAAAAAAVwAAAAADVwAAAAADMgAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAVwAAAAABVwAAAAAAVwAAAAADZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAMgAAAAAAVwAAAAADVwAAAAABMgAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAVwAAAAABVwAAAAACVwAAAAACZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAACCwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAFgAAAAABRwAAAAADRwAAAAACRwAAAAADRwAAAAAACwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAACZAAAAAAARwAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAABRwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAABYQAAAAADZAAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAACRwAAAAAAYQAAAAADYQAAAAACRwAAAAADRwAAAAACRwAAAAADRwAAAAAARwAAAAABRwAAAAADZAAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAAB + version: 6 + 1,-1: + ind: 1,-1 + tiles: ZAAAAAAAZAAAAAAAVAAAAAAAVwAAAAABRwAAAAADRwAAAAACRwAAAAAAFgAAAAADZAAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAADZAAAAAAARwAAAAACRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAADYQAAAAADFgAAAAACFgAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAABZAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAADYQAAAAADFgAAAAAAFgAAAAADFgAAAAAARwAAAAAARwAAAAACRwAAAAAAZAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAADYQAAAAABFgAAAAADFgAAAAADFgAAAAAARwAAAAAARwAAAAADRwAAAAABFgAAAAABJQAAAAAAJQAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAADYQAAAAADFgAAAAABFgAAAAACZAAAAAAARwAAAAABRwAAAAACRwAAAAADZAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAABZAAAAAAAMwAAAAAAMwAAAAAACwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAADZAAAAAAAMwAAAAAAMwAAAAAACwAAAAACFgAAAAADFgAAAAAAYQAAAAAAYQAAAAACYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAACZAAAAAAAMwAAAAAAMwAAAAAACwAAAAAAFgAAAAACFgAAAAAAYQAAAAAAYQAAAAADYQAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAABZAAAAAAACwAAAAAACwAAAAAACwAAAAAAFgAAAAACFgAAAAABYQAAAAABYQAAAAACYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAABZAAAAAAACwAAAAACCwAAAAADCwAAAAADRwAAAAABZAAAAAAAYQAAAAABYQAAAAABYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAACZAAAAAAACwAAAAABCwAAAAADCwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAABRwAAAAACRwAAAAABRwAAAAADRwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAADRwAAAAAB + version: 6 + 1,-2: + ind: 1,-2 + tiles: ZAAAAAAARwAAAAABRwAAAAADZAAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAACRwAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAACZAAAAAAARwAAAAAARwAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAACRwAAAAACRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAACRwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAABRwAAAAABRwAAAAADZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAADRwAAAAAARwAAAAAARwAAAAADZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAAARwAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAACZAAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAARwAAAAACRwAAAAACRwAAAAACVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAAAFgAAAAACZAAAAAAARwAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAALAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAADFgAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAALAAAAAAAVAAAAAAAFgAAAAADZAAAAAAARwAAAAAARwAAAAACRwAAAAACFgAAAAACFgAAAAAARwAAAAADRwAAAAADRwAAAAABZAAAAAAARwAAAAACRwAAAAACRwAAAAADLAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAACFgAAAAADZAAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAAA + version: 6 + 0,-3: + ind: 0,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAADgAAAAAADgAAAAAADgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAADgAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAADgAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAABFgAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAADFgAAAAABZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAABFgAAAAADRwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAADFgAAAAADZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + version: 6 + 1,-3: + ind: 1,-3 + tiles: YwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAABZAAAAAAAFgAAAAAARwAAAAAARwAAAAADZAAAAAAARwAAAAABFgAAAAAAZAAAAAAAFgAAAAADRwAAAAAAZAAAAAAARwAAAAACRwAAAAACZAAAAAAAFgAAAAADFgAAAAABZAAAAAAAFgAAAAACRwAAAAACRwAAAAAARwAAAAACRwAAAAACFgAAAAABZAAAAAAAFgAAAAACRwAAAAACZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAFgAAAAAAFgAAAAACZAAAAAAAFgAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAADFgAAAAABZAAAAAAAFgAAAAABRwAAAAABRwAAAAACRwAAAAAARwAAAAAAZAAAAAAAFgAAAAABFgAAAAABZAAAAAAAFgAAAAACRwAAAAABRwAAAAACZAAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAADRwAAAAADZAAAAAAARwAAAAAARwAAAAAAZAAAAAAAFgAAAAAAFgAAAAABFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACRwAAAAADRwAAAAADRwAAAAADRwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAAARwAAAAACRwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAABRwAAAAADRwAAAAAARwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAAARwAAAAADZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAARwAAAAACZAAAAAAARwAAAAADRwAAAAADZAAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAACRwAAAAACRwAAAAADRwAAAAAA + version: 6 + 2,-2: + ind: 2,-2 + tiles: RwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAFgAAAAADFgAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAA + version: 6 + 2,-3: + ind: 2,-3 + tiles: ZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAPgAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAFgAAAAACZAAAAAAAPgAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAFgAAAAACZAAAAAAAPgAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAACRwAAAAADRwAAAAABRwAAAAADRwAAAAADRwAAAAAAZAAAAAAAFgAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAABZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAZAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAZAAAAAAARwAAAAACZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAARwAAAAADZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: YQAAAAAAZAAAAAAATgAAAAADZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAAAYQAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAAAZAAAAAAARwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAYQAAAAACYQAAAAADYQAAAAABZAAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAACZAAAAAAARwAAAAADRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAABZAAAAAAARwAAAAABRwAAAAACRwAAAAADZAAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAADRwAAAAACRwAAAAADRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAACZAAAAAAARwAAAAABRwAAAAACZAAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAACRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAACZAAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAABRwAAAAADZAAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAACRwAAAAABRwAAAAADRwAAAAAARwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAACRwAAAAADFgAAAAACFgAAAAADFgAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAARwAAAAAARwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAADZAAAAAAAFgAAAAADFgAAAAAAFgAAAAAAZAAAAAAAYQAAAAAAYQAAAAADYQAAAAABYQAAAAADYQAAAAAAZAAAAAAAYQAAAAABYQAAAAADRwAAAAAARwAAAAACRwAAAAABZAAAAAAAFgAAAAAAFgAAAAACFgAAAAADZAAAAAAAYQAAAAACYQAAAAAAYQAAAAACYQAAAAACYQAAAAAAZAAAAAAAYQAAAAAAYQAAAAABRwAAAAADRwAAAAADRwAAAAABZAAAAAAAFgAAAAADFgAAAAACFgAAAAAAZAAAAAAAYQAAAAACYQAAAAACYQAAAAACYQAAAAABYQAAAAABYQAAAAACYQAAAAADYQAAAAAARwAAAAACRwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: RwAAAAACRwAAAAADRwAAAAADRwAAAAADRwAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAADRwAAAAACRwAAAAABRwAAAAABRwAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAABRwAAAAADRwAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAABZAAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAACZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAMwAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAACZAAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAACFgAAAAAAZAAAAAAAFgAAAAACRwAAAAAAFgAAAAACZAAAAAAAMwAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAAAZAAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAFgAAAAABZAAAAAAAFgAAAAADFgAAAAACFgAAAAADFgAAAAAAFgAAAAADZAAAAAAARwAAAAADRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAFgAAAAACFgAAAAABFgAAAAAAFgAAAAABFgAAAAACFgAAAAACZAAAAAAARwAAAAABRwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAACFgAAAAADFgAAAAADFgAAAAADRwAAAAABRwAAAAACRwAAAAADVAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAMwAAAAAAZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAADFgAAAAABZAAAAAAARwAAAAACRwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAFgAAAAABFgAAAAADFgAAAAACFgAAAAADFgAAAAABZAAAAAAARwAAAAAARwAAAAAARwAAAAADZAAAAAAARwAAAAADRwAAAAADLAAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAADZAAAAAAALAAAAAAALAAAAAAALAAAAAAAVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAARwAAAAADRwAAAAABRwAAAAABZAAAAAAARwAAAAACRwAAAAADLAAAAAAAVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAABZAAAAAAARwAAAAACRwAAAAAAZAAAAAAAVwAAAAACRwAAAAADRwAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAACRwAAAAACRwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAADRwAAAAACRwAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAAB + version: 6 + 2,-1: + ind: 2,-1 + tiles: RwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAFgAAAAADFgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAACYQAAAAAAYQAAAAACYQAAAAADVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAAARwAAAAAAYQAAAAAAYQAAAAABYQAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAADFgAAAAACRwAAAAADRwAAAAADRwAAAAAARwAAAAACRwAAAAABYQAAAAAAYQAAAAACYQAAAAACZAAAAAAARwAAAAADRwAAAAAARwAAAAAAZAAAAAAAKAAAAAAAKAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAAAYQAAAAACYQAAAAACYQAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAADZAAAAAAAKAAAAAAAKAAAAAAAZAAAAAAAFgAAAAADFgAAAAACFgAAAAAAFgAAAAAAZAAAAAAAFgAAAAABFgAAAAADZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAKAAAAAAAKAAAAAAACwAAAAABCwAAAAACCwAAAAACCwAAAAACCwAAAAADFgAAAAAAFgAAAAACFgAAAAAAFgAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAAARwAAAAABRwAAAAAACwAAAAABCwAAAAAACwAAAAADCwAAAAADCwAAAAADFgAAAAACFgAAAAABFgAAAAADFgAAAAAARwAAAAACMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAARwAAAAACCwAAAAABCwAAAAADCwAAAAABCwAAAAADCwAAAAACFgAAAAACFgAAAAAAFgAAAAAAZAAAAAAARwAAAAADMAAAAAAARwAAAAAARwAAAAACRwAAAAAAMAAAAAAARwAAAAAACwAAAAACCwAAAAAACwAAAAADCwAAAAAACwAAAAACFgAAAAAAFgAAAAADFgAAAAABZAAAAAAARwAAAAAAMAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAMAAAAAAARwAAAAABCwAAAAADCwAAAAABCwAAAAADCwAAAAADCwAAAAABFgAAAAAAFgAAAAADFgAAAAADFgAAAAADRwAAAAADMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAARwAAAAAACwAAAAACCwAAAAAACwAAAAABCwAAAAACCwAAAAAAZAAAAAAAFgAAAAABFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAABRwAAAAAARwAAAAAARwAAAAAA + version: 6 + 1,-4: + ind: 1,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + version: 6 + 2,-4: + ind: 2,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAA + version: 6 + 0,-4: + ind: 0,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAA + version: 6 + -1,-3: + ind: -1,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAOwAAAAABYwAAAAAAOwAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAACYwAAAAAAOwAAAAADAAAAAAAAOwAAAAABYwAAAAAAOwAAAAADAAAAAAAAOwAAAAABYwAAAAAAOwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAABYwAAAAAAOwAAAAABYwAAAAAAOwAAAAAAYwAAAAAAOwAAAAADAAAAAAAAOwAAAAAAYwAAAAAAOwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAOwAAAAADYwAAAAAAOwAAAAABYwAAAAAAOwAAAAAAYwAAAAAAOwAAAAADYwAAAAAAOwAAAAAAYwAAAAAAOwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAOwAAAAABYwAAAAAAOwAAAAACYwAAAAAAOwAAAAADYwAAAAAAOwAAAAACYwAAAAAAOwAAAAAAYwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAADYwAAAAAAOwAAAAAAYwAAAAAAOwAAAAABYwAAAAAAOwAAAAABAAAAAAAAOwAAAAACYwAAAAAAOwAAAAADAAAAAAAAZAAAAAAAZAAAAAAA + version: 6 + -2,-3: + ind: -2,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + version: 6 + 3,-1: + ind: 3,-1 + tiles: ZAAAAAAAAwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAZAAAAAAAYQAAAAACYQAAAAADYQAAAAAAYQAAAAACYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAABVwAAAAAAZAAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABVwAAAAAAVwAAAAABVwAAAAADVwAAAAABZAAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAABVwAAAAADZAAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAADZAAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAAAZAAAAAAAVwAAAAABVwAAAAABVwAAAAACZAAAAAAAVwAAAAACVwAAAAACVwAAAAACVwAAAAACZAAAAAAAZAAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAABVwAAAAABVwAAAAACVwAAAAACVwAAAAACZAAAAAAAZAAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAABVwAAAAABVwAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAACVwAAAAACVwAAAAABPwAAAAAAZAAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAADVwAAAAACVwAAAAAAVwAAAAACVwAAAAABZAAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABZAAAAAAAVwAAAAACVwAAAAADZAAAAAAAVwAAAAACVwAAAAABVwAAAAAAZAAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAABZAAAAAAAZAAAAAAAVwAAAAADVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAACVwAAAAACZAAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAABVwAAAAACRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAABVwAAAAABZAAAAAAAVwAAAAABVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADZAAAAAAAVwAAAAACVwAAAAABVwAAAAABRwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAABVwAAAAACZAAAAAAA + version: 6 + 3,-2: + ind: 3,-2 + tiles: ZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAADYQAAAAADZAAAAAAAYQAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAAAFgAAAAACFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: ZAAAAAAAYQAAAAABYQAAAAADYQAAAAABYQAAAAACYQAAAAACZAAAAAAAYQAAAAAAYQAAAAABRwAAAAACRwAAAAACRwAAAAADVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAACYQAAAAACYQAAAAABYQAAAAADZAAAAAAAYQAAAAADYQAAAAACRwAAAAADRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAABRwAAAAADZAAAAAAALAAAAAAALAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAACRwAAAAABRwAAAAADRwAAAAADRwAAAAADRwAAAAABZAAAAAAAFgAAAAAAFgAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAABRwAAAAACFgAAAAACFgAAAAACFgAAAAACZAAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAADRwAAAAADZAAAAAAADgAAAAAADgAAAAAAZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAACZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAAAZAAAAAAAFgAAAAABYQAAAAACZAAAAAAAFgAAAAABFgAAAAACFgAAAAABZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAABZAAAAAAAFgAAAAAAYQAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAFgAAAAADFgAAAAADFgAAAAADFgAAAAADZAAAAAAAFgAAAAABYQAAAAACZAAAAAAAZAAAAAAALAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAADZAAAAAAAFgAAAAADYQAAAAABAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAABZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAFgAAAAADFgAAAAABFgAAAAABZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAACFgAAAAABFgAAAAAAFgAAAAADFgAAAAAAFgAAAAACFgAAAAADFgAAAAAAFgAAAAAAFgAAAAABZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAADFgAAAAADFgAAAAAAFgAAAAADFgAAAAACFgAAAAACFgAAAAACFgAAAAACFgAAAAACFgAAAAADFgAAAAACAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAAAFgAAAAABFgAAAAACFgAAAAABFgAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAAAFgAAAAADFgAAAAADFgAAAAACFgAAAAADYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAAAFgAAAAABFgAAAAABFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAACFgAAAAAC + version: 6 + 2,1: + ind: 2,1 + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAACZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAADMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAABZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAARwAAAAABZAAAAAAAVAAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAACZAAAAAAARwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAACRwAAAAADFgAAAAAAFgAAAAAAFgAAAAACFgAAAAACFgAAAAAAZAAAAAAAFgAAAAABFgAAAAACFgAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAABZAAAAAAAFgAAAAABFgAAAAADFgAAAAABFgAAAAABFgAAAAABFgAAAAADFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAACRwAAAAACZAAAAAAAFgAAAAACFgAAAAABFgAAAAACFgAAAAADZAAAAAAAFgAAAAADFgAAAAACFgAAAAADZAAAAAAAZAAAAAAAFgAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACZAAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAAFgAAAAABRwAAAAACRwAAAAACRwAAAAACRwAAAAADZAAAAAAAPAAAAAAAFgAAAAACFgAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAABZAAAAAAAPAAAAAAAFgAAAAAAFgAAAAADPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAADRwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAACTAAAAAAATAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAATAAAAAAARwAAAAAATAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAA + version: 6 + 2,2: + ind: 2,2 + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABTAAAAAAATAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAATAAAAAAARwAAAAABRwAAAAABTAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAALAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAARwAAAAADTAAAAAAARwAAAAABTAAAAAAATAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAARwAAAAABRwAAAAADTAAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAATAAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAADgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAADYQAAAAABYQAAAAABYQAAAAABYQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAAAYQAAAAAAZAAAAAAAYQAAAAACYQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYQAAAAAAYQAAAAACYQAAAAACZAAAAAAAYQAAAAACYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYQAAAAACYQAAAAADYQAAAAADZAAAAAAAFgAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAAFgAAAAABFgAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAADFgAAAAADFgAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + version: 6 + 1,3: + ind: 1,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAACFgAAAAACFgAAAAADFgAAAAADFgAAAAADFgAAAAACFgAAAAABFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,3: + ind: 2,3 + tiles: FgAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,-1: + ind: 4,-1 + tiles: ZAAAAAAAYQAAAAACYQAAAAADYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAACYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAACYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAVwAAAAABVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAACPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACVwAAAAACVwAAAAACVwAAAAABPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAABPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAACFgAAAAAAFgAAAAAAFgAAAAADZAAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAADFgAAAAAAFgAAAAADFgAAAAADFgAAAAAAZAAAAAAAZAAAAAAAVwAAAAACZAAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAAAFgAAAAADZAAAAAAAFgAAAAADFgAAAAABFgAAAAACFgAAAAACFgAAAAAAFgAAAAADFgAAAAABZAAAAAAAVwAAAAABUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAAAFgAAAAADFgAAAAAAZAAAAAAAVwAAAAABUwAAAAAAZAAAAAAA + version: 6 + 4,-2: + ind: 4,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAADYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAA + version: 6 + 3,0: + ind: 3,0 + tiles: VwAAAAABVwAAAAACVwAAAAACVwAAAAADVwAAAAABVwAAAAACVwAAAAAAVwAAAAABVwAAAAABRwAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAAAVwAAAAABVwAAAAAAZAAAAAAAVwAAAAACVwAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAACVwAAAAADVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAACZAAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAADVwAAAAACVwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAACVwAAAAADVwAAAAABVwAAAAADVwAAAAADVwAAAAADVwAAAAADVwAAAAABVwAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAABZAAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAACVwAAAAACZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAATAAAAAAATAAAAAAATAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAADRwAAAAADRwAAAAADRwAAAAACRwAAAAABZAAAAAAAVwAAAAACVwAAAAABZAAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAABVwAAAAADFgAAAAAAFgAAAAAAFgAAAAACRwAAAAADRwAAAAABRwAAAAADRwAAAAADZAAAAAAAVwAAAAACRwAAAAABZAAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAADVwAAAAADVwAAAAABVwAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAABRwAAAAADZAAAAAAAVwAAAAACRwAAAAADZAAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAACVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAACVwAAAAABVwAAAAADVwAAAAABZAAAAAAAVwAAAAACRwAAAAADZAAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAADZAAAAAAAZAAAAAAAVwAAAAACVwAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAARwAAAAABVwAAAAABVwAAAAABVwAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAAAVwAAAAADRwAAAAADVwAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAACZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAARwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAD + version: 6 + 4,0: + ind: 4,0 + tiles: VwAAAAACVwAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAACZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABZAAAAAAAZAAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAACVwAAAAADVwAAAAACVwAAAAADVwAAAAABVwAAAAABVwAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAAAVwAAAAABZAAAAAAAZAAAAAAAVwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAVwAAAAAAVwAAAAADZAAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAZAAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAABVwAAAAABZAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACZAAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAADVwAAAAAAZAAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAZAAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAADVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAACRwAAAAACTgAAAAADTgAAAAACVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAABVwAAAAADVwAAAAAAZAAAAAAATgAAAAACTgAAAAACRwAAAAABZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAATgAAAAACTgAAAAACRwAAAAABZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAWwAAAAADWwAAAAAARwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABZAAAAAAARwAAAAACRwAAAAACRwAAAAADFgAAAAADFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAADZAAAAAAAFgAAAAACFgAAAAABFgAAAAADFgAAAAAAFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAVwAAAAAAVwAAAAAAFgAAAAABFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,0: + ind: 5,0 + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAACYQAAAAABAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAZAAAAAAAYQAAAAABZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAAYQAAAAADZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,1: + ind: 3,1 + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABVwAAAAADVwAAAAABZAAAAAAAVwAAAAAAVwAAAAABZAAAAAAAVwAAAAABVwAAAAADDgAAAAAAFgAAAAADDgAAAAAAVwAAAAAAVwAAAAADVwAAAAADZAAAAAAAVwAAAAABVwAAAAADVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABVwAAAAACVwAAAAAADgAAAAAAFgAAAAAADgAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAADVwAAAAABVwAAAAACVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAABZAAAAAAAVwAAAAAAVwAAAAABVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAAAZAAAAAAAVwAAAAACVwAAAAAAVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAVwAAAAABVwAAAAACVwAAAAAADgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAVwAAAAABVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAADVwAAAAAAZAAAAAAAVwAAAAADVwAAAAACZAAAAAAADgAAAAAADgAAAAAADgAAAAAAZAAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAADVwAAAAACVwAAAAACVwAAAAACZAAAAAAAFgAAAAADFgAAAAADFgAAAAAAFgAAAAADVwAAAAACVwAAAAACVwAAAAACVwAAAAABVwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAADVwAAAAADVwAAAAADZAAAAAAADgAAAAAADgAAAAAADgAAAAAAZAAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAABZAAAAAAAVwAAAAABVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAFgAAAAADZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAADFgAAAAAAFgAAAAACFgAAAAACFgAAAAABFgAAAAACFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAABFgAAAAADFgAAAAABFgAAAAABFgAAAAAAFgAAAAAAFgAAAAACFgAAAAABFgAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAAAFgAAAAADFgAAAAABFgAAAAACFgAAAAABFgAAAAACFgAAAAADZAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,3: + ind: 3,3 + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,2: + ind: 3,2 + tiles: AAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAADQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAACFgAAAAABFgAAAAAAFgAAAAABFgAAAAADFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAAAFgAAAAABFgAAAAABFgAAAAABFgAAAAADFgAAAAABFgAAAAABZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAABDgAAAAAAFgAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAADZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAADFgAAAAABZAAAAAAAFgAAAAAAFgAAAAADFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAABFgAAAAABFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + version: 6 + 4,1: + ind: 4,1 + tiles: VwAAAAABZAAAAAAARwAAAAABRwAAAAACRwAAAAADFgAAAAADFgAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAAYQAAAAADZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAABZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAADZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACZAAAAAAAYQAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,2: + ind: 4,2 + tiles: AAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAABZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYQAAAAADZAAAAAAAYQAAAAABZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAACZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAAYQAAAAACZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAABZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAABZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAABYwAAAAAAOwAAAAACAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAYwAAAAAAOwAAAAACAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAADYwAAAAAAOwAAAAACAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAYwAAAAAAOwAAAAAA + version: 6 + 4,3: + ind: 4,3 + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAABYwAAAAAAOwAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAYwAAAAAAOwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,-1: + ind: 5,-1 + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABVwAAAAABVwAAAAABZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAADVwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAADVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAABVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABVwAAAAADVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,-2: + ind: 5,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAOwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAOwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,2: + ind: 5,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAACYwAAAAAAOwAAAAACYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAADYwAAAAAAOwAAAAACAAAAAAAAOwAAAAABYwAAAAAAOwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAABYwAAAAAAOwAAAAADYwAAAAAAOwAAAAACYwAAAAAAOwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAADYwAAAAAAOwAAAAABYwAAAAAAOwAAAAADYwAAAAAAOwAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAADYwAAAAAAOwAAAAABAAAAAAAAOwAAAAABYwAAAAAAOwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,3: + ind: 5,3 + tiles: YwAAAAAAOwAAAAABYwAAAAAAOwAAAAACYwAAAAAAOwAAAAADYwAAAAAAOwAAAAADAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAOwAAAAAAYwAAAAAAOwAAAAABAAAAAAAAOwAAAAABYwAAAAAAOwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAOwAAAAABYwAAAAAAOwAAAAADYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,-3: + ind: 3,-3 + tiles: PAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 6,-2: + ind: 6,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAOwAAAAABOwAAAAACOwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAVwAAAAACZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAOwAAAAABOwAAAAAAOwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAA + version: 6 + 6,-1: + ind: 6,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAPwAAAAAAPwAAAAAARwAAAAADEgAAAAAAEgAAAAAAEgAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 7,-2: + ind: 7,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAACZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAAAFgAAAAABFgAAAAACZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 7,-1: + ind: 7,-1 + tiles: ZAAAAAAAFgAAAAADFgAAAAADFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,1: + ind: 5,1 + tiles: YwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,-4: + ind: 3,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,-2: + ind: -2,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAADRwAAAAADRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAADRwAAAAADRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAADRwAAAAABRwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAGwAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + version: 6 + -2,1: + ind: -2,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - id: Packed + type: BecomesStation + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - version: 2 + data: + tiles: + -4,-2: + 0: 65280 + -3,-2: + 0: 65535 + -3,-3: + 0: 65535 + -3,-1: + 0: 65535 + -2,-4: + 0: 65535 + -2,-3: + 0: 65535 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -1,-4: + 0: 65433 + -1,-3: + 0: 65535 + -1,-2: + 0: 65535 + -1,-1: + 0: 65535 + -3,0: + 0: 65535 + -2,0: + 0: 65535 + -1,0: + 0: 65535 + -1,3: + 0: 65532 + -1,1: + 0: 65535 + -1,2: + 0: 53247 + 0,0: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 65535 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 65535 + 1,3: + 0: 65535 + 2,0: + 0: 65535 + 2,1: + 0: 65535 + 2,2: + 0: 65535 + 2,3: + 0: 65535 + 3,0: + 0: 65535 + 3,1: + 0: 65535 + 3,2: + 0: 65535 + 3,3: + 0: 65535 + 0,-4: + 0: 65535 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 0,-1: + 0: 65535 + 1,-4: + 0: 65535 + 1,-3: + 0: 65535 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-4: + 0: 65535 + 2,-3: + 0: 65535 + 2,-2: + 0: 65535 + 2,-1: + 0: 65535 + 3,-4: + 0: 65535 + 3,-3: + 0: 65535 + 3,-2: + 0: 65535 + 3,-1: + 0: 65535 + -6,-2: + 0: 3584 + -5,-2: + 0: 52992 + -5,-1: + 0: 65534 + -5,0: + 0: 65535 + -4,-8: + 0: 61692 + -3,-8: + 0: 61693 + -2,-8: + 0: 61695 + -1,-8: + 0: 65277 + -1,-7: + 0: 36044 + -1,-5: + 0: 63760 + 0,-8: + 0: 65535 + 0,-7: + 0: 65535 + 0,-5: + 0: 65350 + 0,-6: + 0: 17613 + 1,-8: + 0: 65535 + 1,-7: + 0: 65535 + 1,-6: + 0: 43775 + 1,-5: + 0: 65450 + 2,-8: + 0: 65535 + 2,-7: + 0: 63487 + 1: 2048 + 2,-6: + 0: 65535 + 2,-5: + 0: 65535 + 3,-8: + 0: 65535 + 3,-7: + 0: 65535 + 3,-6: + 0: 65535 + 3,-5: + 0: 65535 + -1,4: + 0: 65535 + -1,5: + 0: 15 + 1,4: + 0: 65535 + 1,5: + 0: 65487 + 1,6: + 0: 65535 + 1,7: + 0: 61167 + 2,4: + 0: 65535 + 2,5: + 0: 65535 + 2,6: + 0: 65535 + 2,7: + 0: 65535 + 3,4: + 0: 65535 + 3,5: + 0: 65535 + 3,6: + 0: 65535 + 3,7: + 0: 65535 + 4,0: + 0: 65535 + 4,1: + 0: 65535 + 4,2: + 0: 65535 + 4,3: + 0: 65535 + 5,0: + 0: 65535 + 5,1: + 0: 65535 + 5,2: + 0: 65535 + 5,3: + 0: 65535 + 6,0: + 0: 65535 + 6,1: + 0: 65535 + 6,2: + 0: 65535 + 6,3: + 0: 65535 + 7,0: + 0: 65535 + 7,1: + 0: 65535 + 7,2: + 0: 65535 + 7,3: + 0: 65535 + 4,-4: + 0: 65535 + 4,-3: + 0: 65535 + 4,-2: + 0: 65535 + 4,-1: + 0: 65535 + 5,-4: + 0: 65535 + 5,-3: + 0: 65535 + 5,-2: + 0: 65535 + 5,-1: + 0: 65535 + 6,-4: + 0: 65535 + 6,-3: + 0: 65535 + 6,-2: + 0: 65535 + 6,-1: + 0: 65535 + 7,-4: + 0: 8191 + 2: 57344 + 7,-3: + 0: 61713 + 2: 3822 + 7,-2: + 0: 65535 + 7,-1: + 0: 65535 + 4,-8: + 0: 65535 + 4,-7: + 0: 65535 + 4,-6: + 0: 65535 + 4,-5: + 0: 65535 + 5,-8: + 0: 65535 + 5,-7: + 0: 65535 + 5,-6: + 0: 65535 + 5,-5: + 0: 65535 + 6,-8: + 0: 65535 + 6,-7: + 0: 65535 + 6,-6: + 0: 65535 + 6,-5: + 0: 65535 + 7,-8: + 0: 65535 + 7,-7: + 0: 65535 + 7,-6: + 0: 65535 + 7,-5: + 0: 65535 + 0,-11: + 0: 14080 + 0,-10: + 0: 65523 + 0,-9: + 0: 65535 + 1,-10: + 0: 16368 + 1,-9: + 0: 65331 + 2,-10: + 0: 65535 + 2,-9: + 0: 65535 + 2,-12: + 0: 2188 + 3,-12: + 0: 65535 + 3,-11: + 0: 65535 + 3,-10: + 0: 65535 + 3,-9: + 0: 65535 + 4,-12: + 0: 65535 + 4,-11: + 0: 65535 + 4,-10: + 0: 65535 + 4,-9: + 0: 65535 + 5,-12: + 0: 65535 + 5,-11: + 0: 65535 + 5,-10: + 0: 65535 + 5,-9: + 0: 65535 + 6,-12: + 0: 65535 + 6,-11: + 0: 65535 + 6,-10: + 0: 65535 + 6,-9: + 0: 65535 + 7,-12: + 0: 65535 + 7,-11: + 0: 65535 + 7,-10: + 0: 65535 + 7,-9: + 0: 65535 + 8,-8: + 0: 65535 + 8,-7: + 0: 65535 + 8,-6: + 0: 65535 + 8,-5: + 0: 65535 + 9,-8: + 0: 65535 + 9,-7: + 0: 65535 + 9,-6: + 0: 65535 + 9,-5: + 0: 65535 + 10,-8: + 0: 65535 + 10,-7: + 0: 65535 + 10,-6: + 0: 65535 + 10,-5: + 0: 32767 + 11,-8: + 0: 61937 + 3: 14 + 4: 3584 + 11,-7: + 0: 61937 + 4: 14 + 5: 3584 + 11,-6: + 0: 65521 + 6: 14 + 11,-5: + 0: 53247 + 8,-12: + 0: 65535 + 8,-11: + 0: 65535 + 8,-10: + 0: 65535 + 8,-9: + 0: 65535 + 9,-12: + 0: 65535 + 9,-11: + 0: 65535 + 9,-10: + 0: 65535 + 9,-9: + 0: 65535 + 10,-12: + 0: 65535 + 10,-11: + 0: 65535 + 10,-10: + 0: 65535 + 10,-9: + 0: 65535 + 11,-12: + 0: 65535 + 11,-11: + 0: 65535 + 11,-10: + 0: 65535 + 11,-9: + 0: 61951 + 4: 3584 + 4,4: + 0: 65535 + 4,5: + 0: 65535 + 4,6: + 0: 65535 + 4,7: + 0: 65535 + 5,4: + 0: 65535 + 5,5: + 0: 65535 + 5,6: + 0: 65535 + 5,7: + 0: 65535 + 6,4: + 0: 65535 + 6,5: + 0: 65535 + 6,6: + 0: 65535 + 6,7: + 0: 65535 + 7,4: + 0: 65535 + 7,5: + 0: 65535 + 7,6: + 0: 65535 + 7,7: + 0: 65535 + 8,0: + 0: 65535 + 8,1: + 0: 65535 + 8,2: + 0: 65535 + 8,3: + 0: 65535 + 9,0: + 0: 65535 + 9,1: + 0: 65535 + 9,2: + 0: 65535 + 9,3: + 0: 65535 + 10,0: + 0: 65535 + 10,1: + 0: 65535 + 10,2: + 0: 65535 + 10,3: + 0: 65535 + 11,0: + 0: 65535 + 11,1: + 0: 65535 + 11,2: + 0: 65535 + 11,3: + 0: 65535 + 8,-4: + 0: 65535 + 8,-3: + 0: 65535 + 8,-2: + 0: 65535 + 8,-1: + 0: 65535 + 9,-4: + 0: 65535 + 9,-3: + 0: 65535 + 9,-2: + 0: 65535 + 9,-1: + 0: 65535 + 10,-4: + 0: 65399 + 10,-3: + 0: 65535 + 10,-2: + 0: 65535 + 10,-1: + 0: 65535 + 11,-4: + 0: 65484 + 11,-3: + 0: 65535 + 11,-2: + 0: 65535 + 11,-1: + 0: 65535 + 4,-15: + 0: 65535 + 4,-14: + 0: 13119 + 4,-13: + 0: 13311 + 5,-15: + 0: 65535 + 5,-13: + 0: 8959 + 5,-14: + 0: 8751 + 6,-15: + 0: 65535 + 6,-13: + 0: 61183 + 6,-14: + 0: 61167 + 7,-15: + 0: 63479 + 4: 2048 + 7,-14: + 0: 65527 + 4: 8 + 7,-13: + 0: 65535 + 8,-15: + 0: 61680 + 4: 2048 + 9,-15: + 0: 64752 + 4: 768 + 10,-15: + 0: 13105 + 10,-14: + 0: 13119 + 4: 52224 + 10,-13: + 0: 62271 + 4: 3264 + 2,-14: + 0: 51340 + 2,-13: + 0: 52428 + 3,-15: + 0: 65535 + 3,-14: + 0: 65535 + 3,-13: + 0: 65535 + -4,-10: + 0: 49100 + -4,-9: + 0: 53215 + -4,-11: + 0: 62448 + -3,-11: + 0: 61680 + -3,-10: + 0: 65533 + -3,-9: + 0: 65519 + -2,-11: + 0: 61680 + -2,-10: + 0: 49117 + -2,-9: + 0: 57231 + -1,-11: + 0: 14896 + -1,-10: + 0: 61713 + -1,-9: + 0: 53759 + -5,-10: + 0: 44768 + -5,-9: + 0: 60074 + 12,-4: + 0: 65535 + 12,-3: + 0: 65535 + 12,-2: + 0: 65535 + 12,-1: + 0: 65535 + 13,-4: + 0: 65535 + 13,-3: + 0: 65535 + 13,-2: + 0: 65535 + 13,-1: + 0: 65535 + 14,-4: + 0: 63487 + 14,-3: + 0: 65535 + 14,-2: + 0: 65535 + 14,-1: + 0: 65535 + 15,-4: + 0: 61695 + 15,-3: + 0: 65535 + 15,-2: + 0: 65535 + 15,-1: + 0: 65535 + 12,-8: + 0: 65535 + 12,-7: + 0: 65535 + 12,-6: + 0: 65535 + 12,-5: + 0: 65535 + 13,-8: + 0: 65535 + 13,-7: + 0: 65535 + 13,-6: + 0: 65535 + 13,-5: + 0: 65535 + 14,-6: + 0: 61440 + 14,-5: + 0: 65535 + 15,-6: + 0: 61440 + 15,-5: + 0: 65535 + 1,8: + 0: 8942 + 1,9: + 0: 58094 + 1,10: + 0: 11810 + 1,11: + 0: 57890 + 2,8: + 0: 52479 + 2,9: + 0: 65279 + 2,10: + 0: 3840 + 2,11: + 0: 61440 + 3,8: + 0: 65535 + 3,9: + 0: 65535 + 3,10: + 0: 4095 + 4,8: + 0: 65535 + 4,9: + 0: 65535 + 4,10: + 0: 61439 + 4,11: + 0: 64716 + 5,8: + 0: 65535 + 5,9: + 0: 65535 + 5,10: + 0: 65535 + 5,11: + 0: 65535 + 6,8: + 0: 65535 + 6,9: + 0: 65535 + 6,10: + 0: 65535 + 6,11: + 0: 65535 + 7,8: + 0: 65535 + 7,9: + 0: 65535 + 7,10: + 0: 65535 + 7,11: + 0: 65535 + 8,4: + 0: 65535 + 8,5: + 0: 65535 + 8,6: + 0: 65535 + 8,7: + 0: 65535 + 9,4: + 0: 65535 + 9,5: + 0: 65535 + 9,6: + 0: 65535 + 9,7: + 0: 65535 + 10,4: + 0: 65535 + 10,5: + 0: 65535 + 10,6: + 0: 65535 + 10,7: + 0: 65535 + 11,4: + 0: 65535 + 11,5: + 0: 65535 + 11,6: + 0: 65535 + 11,7: + 0: 65535 + 8,8: + 0: 65535 + 8,9: + 0: 65535 + 8,10: + 0: 65535 + 8,11: + 0: 65535 + 9,8: + 0: 65535 + 9,9: + 0: 65535 + 9,10: + 0: 65535 + 9,11: + 0: 61719 + 10,8: + 0: 65535 + 10,9: + 0: 40959 + 10,10: + 0: 65535 + 10,11: + 0: 64989 + 11,8: + 0: 65535 + 11,9: + 0: 65535 + 11,10: + 0: 30591 + 11,11: + 0: 65523 + 5,12: + 0: 58094 + 6,12: + 0: 61695 + 7,12: + 0: 61695 + 8,12: + 0: 12851 + 11,12: + 0: 61454 + 16,-4: + 0: 65535 + 16,-3: + 0: 65535 + 16,-2: + 0: 65535 + 16,-1: + 0: 65535 + 17,-4: + 0: 65535 + 17,-3: + 0: 65535 + 17,-2: + 0: 65535 + 17,-1: + 0: 65535 + 18,-4: + 0: 65535 + 18,-3: + 0: 47935 + 18,-2: + 0: 65535 + 18,-1: + 0: 65535 + 19,-4: + 0: 65535 + 19,-3: + 0: 65295 + 19,-2: + 0: 65535 + 19,-1: + 0: 65535 + 16,-6: + 0: 61440 + 16,-5: + 0: 65535 + 17,-6: + 0: 61440 + 17,-5: + 0: 65535 + 18,-6: + 0: 4096 + 18,-5: + 0: 65297 + 19,-5: + 0: 65280 + 12,0: + 0: 65535 + 12,1: + 0: 65535 + 12,2: + 0: 65535 + 12,3: + 0: 65535 + 13,0: + 0: 65535 + 13,1: + 0: 65535 + 13,2: + 0: 65535 + 13,3: + 0: 65535 + 14,0: + 0: 65535 + 14,1: + 0: 65535 + 14,2: + 0: 65535 + 14,3: + 0: 65535 + 15,0: + 0: 65535 + 15,1: + 0: 65535 + 15,2: + 0: 65535 + 15,3: + 0: 65535 + 16,0: + 0: 65535 + 16,1: + 0: 65535 + 16,2: + 0: 65535 + 16,3: + 0: 65535 + 17,0: + 0: 65535 + 17,1: + 0: 65535 + 17,2: + 0: 65535 + 17,3: + 0: 65535 + 18,0: + 0: 65535 + 18,1: + 0: 65535 + 18,2: + 0: 65535 + 18,3: + 0: 65535 + 19,0: + 0: 65535 + 19,1: + 0: 65535 + 19,2: + 0: 65535 + 19,3: + 0: 16383 + 20,0: + 0: 65535 + 20,1: + 0: 65535 + 20,2: + 0: 65535 + 20,3: + 0: 61695 + 21,0: + 0: 65535 + 21,1: + 0: 32767 + 21,2: + 0: 65527 + 21,3: + 0: 8191 + 22,0: + 0: 1911 + 22,1: + 0: 9984 + 12,4: + 0: 65535 + 12,5: + 0: 65535 + 12,6: + 0: 65535 + 12,7: + 0: 34959 + 13,4: + 0: 65535 + 13,5: + 0: 65535 + 13,6: + 0: 53247 + 13,7: + 0: 65535 + 14,4: + 0: 65535 + 14,5: + 0: 65535 + 14,6: + 0: 32767 + 14,7: + 0: 65535 + 15,4: + 0: 65535 + 15,5: + 0: 65535 + 15,6: + 0: 61439 + 15,7: + 0: 13311 + 12,12: + 0: 13055 + 13,12: + 0: 35071 + 14,12: + 0: 13311 + 15,12: + 0: 255 + 12,11: + 0: 63344 + 12,8: + 0: 52428 + 12,9: + 0: 52428 + 12,10: + 0: 8 + 13,8: + 0: 65535 + 13,9: + 0: 65535 + 13,10: + 0: 239 + 13,11: + 0: 61440 + 14,8: + 0: 65535 + 14,9: + 0: 65535 + 14,10: + 0: 255 + 14,11: + 0: 61440 + 15,8: + 0: 30583 + 15,9: + 0: 30583 + 15,10: + 0: 3 + 15,11: + 0: 64704 + 16,4: + 0: 65535 + 16,5: + 0: 65535 + 16,6: + 0: 65535 + 16,7: + 0: 61183 + 17,4: + 0: 65535 + 17,5: + 0: 65535 + 17,6: + 0: 65535 + 17,7: + 0: 65535 + 18,4: + 0: 65535 + 18,5: + 0: 14207 + 18,6: + 0: 13183 + 16,11: + 0: 65534 + 16,8: + 0: 61166 + 16,9: + 0: 61166 + 16,10: + 0: 61166 + 17,8: + 0: 65535 + 17,9: + 0: 65535 + 17,10: + 0: 65535 + 17,11: + 0: 65535 + 18,8: + 0: 13107 + 18,9: + 0: 16179 + 18,10: + 0: 4127 + 18,11: + 0: 8183 + 19,10: + 0: 61167 + 19,11: + 0: 61428 + 16,12: + 0: 31 + 19,12: + 0: 65262 + 20,-4: + 0: 65535 + 20,-3: + 0: 61455 + 20,-2: + 0: 65535 + 20,-1: + 0: 65535 + 21,-4: + 0: 65535 + 21,-3: + 0: 61167 + 21,-2: + 0: 65534 + 21,-1: + 0: 65535 + 22,-4: + 0: 30583 + 22,-3: + 0: 65535 + 22,-2: + 0: 65535 + 22,-1: + 0: 65535 + 20,-5: + 0: 65280 + 21,-6: + 0: 65420 + 21,-5: + 0: 65423 + 22,-6: + 0: 65520 + 22,-5: + 0: 32767 + 20,11: + 0: 60924 + 20,10: + 0: 61166 + 21,10: + 0: 65511 + 21,11: + 0: 59389 + 22,10: + 0: 65126 + 22,11: + 0: 39611 + 20,12: + 0: 65535 + 21,12: + 0: 64495 + 5,13: + 0: 3298 + 6,13: + 0: 65520 + 6,14: + 0: 35022 + 6,15: + 0: 8 + 7,13: + 0: 32752 + 7,14: + 0: 19 + 8,13: + 0: 318 + 18,7: + 0: 13107 + 2,-11: + 0: 65535 + 8,-13: + 0: 65328 + 4: 207 + 9,-13: + 0: 65280 + 4: 252 + 11,-13: + 0: 63631 + 4: 1904 + 12,-11: + 0: 62532 + 4: 443 + 12,-10: + 0: 4369 + 12,-9: + 0: 13105 + 23,-6: + 0: 65520 + 23,-5: + 0: 4095 + 24,-6: + 0: 65520 + 24,-5: + 0: 4095 + 25,-6: + 0: 65328 + 25,-5: + 0: 61439 + 26,-7: + 0: 65280 + 26,-6: + 0: 65535 + 26,-5: + 0: 65535 + 27,-7: + 0: 56576 + 27,-6: + 0: 64989 + 27,-5: + 0: 65535 + 25,-3: + 0: 254 + 25,-4: + 0: 61166 + 26,-4: + 0: 65535 + 26,-3: + 0: 4095 + 27,-4: + 0: 56831 + 27,-3: + 0: 3549 + 28,-7: + 0: 65280 + 28,-6: + 0: 65535 + 28,-5: + 0: 65535 + 29,-7: + 0: 4352 + 29,-6: + 0: 61713 + 29,-5: + 0: 65535 + 30,-6: + 0: 12288 + 30,-5: + 0: 13107 + 28,-4: + 0: 65535 + 28,-3: + 0: 4095 + 29,-4: + 0: 4607 + 29,-3: + 0: 273 + 30,-4: + 0: 51 + 2,-15: + 0: 34952 + 3,11: + 0: 61440 + 5,-16: + 0: 28672 + 7,-16: + 0: 28160 + 8,-16: + 0: 3840 + 9,-16: + 0: 3840 + 10,-16: + 0: 61696 + 11,-16: + 0: 61440 + 11,-14: + 0: 34959 + 4: 4352 + 11,-15: + 0: 34952 + 2,-16: + 0: 51200 + 3,-16: + 0: 4096 + -5,-11: + 0: 34944 + 14,-8: + 0: 17476 + 14,-7: + 0: 52292 + 15,-7: + 0: 64256 + 9,13: + 0: 15 + 10,13: + 0: 7 + 10,12: + 0: 50244 + 16,-7: + 0: 65280 + 17,-7: + 0: 65024 + 18,-7: + 0: 63232 + 19,-7: + 0: 63488 + 22,3: + 0: 3874 + 22,2: + 0: 8738 + 23,0: + 0: 4369 + 23,1: + 0: 4369 + 23,2: + 0: 4369 + 23,3: + 0: 273 + 19,4: + 0: 16025 + 19,5: + 0: 4369 + 19,6: + 0: 15 + 19,9: + 0: 3840 + 18,12: + 0: 61713 + 23,-1: + 0: 4352 + 20,-7: + 0: 7936 + 21,-7: + 0: 36608 + 20,9: + 0: 3840 + 21,9: + 0: 3840 + 22,9: + 0: 30464 + 22,12: + 0: 14190 + 12,-12: + 0: 17476 + 4: 48059 + 13,-11: + 0: 4096 + 13,-10: + 0: 4369 + 13,-9: + 0: 159 + 14,-9: + 0: 17520 + 20,4: + 0: 19 + 12,-14: + 0: 1 + 12,-13: + 0: 17479 + 4: 48048 + -5,-8: + 0: 34944 + -3,-4: + 0: 65535 + -4,-1: + 0: 65535 + -4,0: + 0: 65535 + -4,3: + 0: 65280 + -4,4: + 0: 65535 + -4,5: + 0: 255 + -3,4: + 0: 65535 + -3,5: + 0: 15 + -2,4: + 0: 65535 + -2,5: + 0: 15 + 0,4: + 0: 65535 + 0,5: + 0: 15 + -5,3: + 0: 60928 + -5,4: + 0: 52974 + -5,5: + 0: 204 + -3,1: + 0: 52431 + -3,2: + 0: 3276 + -2,1: + 0: 65535 + -2,2: + 0: 4095 + -1,-6: + 0: 2184 + 9,-14: + 0: 136 + 4: 56596 + -4,-4: + 0: 65535 + -4,-3: + 0: 207 + -4,1: + 0: 15 + -4,-5: + 0: 63626 + -4,-6: + 0: 57344 + -3,-6: + 0: 12288 + -3,-5: + 0: 61442 + -2,-5: + 0: 65248 + -6,-6: + 0: 19456 + -6,-5: + 0: 32768 + -5,-6: + 0: 22272 + -5,-5: + 0: 61713 + -7,-4: + 0: 24400 + -6,-4: + 0: 65534 + -6,-3: + 0: 142 + -6,-1: + 0: 32768 + -5,-4: + 0: 65535 + -5,-3: + 0: 63 + -7,0: + 0: 24400 + -6,0: + 0: 65534 + -6,1: + 0: 14 + -5,1: + 0: 15 + -3,3: + 0: 65280 + -2,3: + 0: 65280 + 8,-14: + 4: 65535 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14996 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 235 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - chunkCollection: + version: 2 + nodes: + - node: + angle: -4.71238898038469 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 1073: -12,-14 + 1074: -19,-14 + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 1159: -5,0 + 1160: -3,0 + 1519: 24,23 + 2421: 58,-2 + 2422: 60,-2 + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 798: 21,-16 + 1071: -13,-12 + 1072: -20,-12 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 1629: 36,18 + - node: + color: '#FED83DFF' + id: Bot + decals: + 7: 12,-28 + 8: 12,-27 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 198: 3,-4 + 199: 3,-5 + 200: 3,-7 + 243: 51,9 + 244: 49,9 + 409: 42,-39 + 410: 42,-38 + 411: 43,-38 + 412: 43,-39 + 413: 44,-39 + 414: 44,-38 + 415: 45,-39 + 416: 45,-38 + 465: 22,-35 + 466: 20,-35 + 467: 19,-35 + 1218: 15,-2 + 1219: 14,-2 + 1220: 13,-2 + 1267: 13,26 + 1268: 11,26 + 1269: 10,26 + 1270: 11,24 + 1271: 12,24 + 1272: 13,24 + 1273: 7,25 + 1368: 12,26 + 1511: 22,22 + 1512: 22,23 + 1513: 22,24 + 1514: 22,25 + 1515: 23,25 + 1626: 37,17 + 1627: 38,17 + 1628: 39,17 + 1840: 10,24 + 2130: 52,17 + 2131: 52,18 + 2244: 68,13 + 2245: 66,13 + 2246: 67,13 + 2609: 46,-46 + 2610: 46,-49 + 2611: 47,-49 + 2612: 48,-49 + 2613: 49,-49 + 2619: 44,-43 + 2620: 43,-43 + 2621: 42,-43 + 2622: 41,-43 + 2623: 38,-43 + 2624: 37,-43 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Bot + decals: + 303: 24,-34 + 304: 28,-34 + - node: + color: '#FFFFFFFF' + id: BotGreyscale + decals: + 1593: 14,39 + 1594: 13,40 + 1595: 14,41 + 1596: 15,40 + 1744: 28,44 + 1745: 26,44 + - node: + color: '#FFFFFFFF' + id: BotLeft + decals: + 399: 10,-36 + 400: 10,-37 + 461: 22,-43 + 1918: 10,-6 + 1919: 11,-6 + 1920: 12,-6 + 2241: 68,16 + 2242: 67,16 + 2243: 66,16 + - node: + color: '#FFFFFFFF' + id: BotLeftGreyscale + decals: + 1589: 15,41 + 1590: 13,39 + 1914: 8,-10 + 1915: 8,-9 + - node: + color: '#FFFFFFFF' + id: BotRight + decals: + 460: 20,-43 + 1921: 10,-9 + 1922: 11,-9 + 1923: 12,-9 + - node: + color: '#FFFFFFFF' + id: BotRightGreyscale + decals: + 1591: 13,41 + 1592: 15,39 + 1916: 8,-8 + 1917: 8,-6 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 459: 21,-43 + - node: + color: '#FFFFFFFF' + id: BoxGreyscale + decals: + 804: 16,-43 + 805: 17,-43 + 806: 25,-43 + 807: 26,-43 + 1597: 14,40 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 1826: 22,-13 + 1827: 22,-12 + 1828: 22,-11 + 1829: 22,-10 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndN + decals: + 2472: 77,9 + 2473: 78,9 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndS + decals: + 2474: 77,7 + 2475: 78,7 + - node: + color: '#D381C996' + id: BrickTileSteelLineE + decals: + 2237: 71,13 + 2238: 71,14 + 2239: 71,15 + 2240: 71,16 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 2476: 77,8 + 2477: 78,8 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 462: 30,-39 + 463: 29,-39 + 464: 28,-39 + 880: 46,-9 + 881: 47,-9 + - node: + color: '#D381C996' + id: BrickTileSteelLineW + decals: + 2233: 69,13 + 2234: 69,14 + 2235: 69,15 + 2236: 69,16 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 2478: 78,8 + 2479: 77,8 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNe + decals: + 1889: 17,-4 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerNe + decals: + 1492: 20,24 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNe + decals: + 1619: 39,19 + - node: + color: '#EFCC4193' + id: BrickTileWhiteCornerNe + decals: + 371: 27,-28 + 389: 13,-34 + - node: + color: '#EFCC4582' + id: BrickTileWhiteCornerNe + decals: + 406: 41,-39 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNw + decals: + 1894: 14,-4 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerNw + decals: + 1491: 17,24 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNw + decals: + 1618: 36,19 + - node: + color: '#EFCC4193' + id: BrickTileWhiteCornerNw + decals: + 370: 25,-28 + 390: 10,-34 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSe + decals: + 1888: 17,-6 + - node: + color: '#9FED583B' + id: BrickTileWhiteCornerSe + decals: + 850: 47,-8 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerSe + decals: + 1496: 20,20 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSe + decals: + 1621: 39,17 + - node: + color: '#EFCC4193' + id: BrickTileWhiteCornerSe + decals: + 372: 27,-30 + 392: 13,-37 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSw + decals: + 1890: 14,-6 + - node: + color: '#9FED583B' + id: BrickTileWhiteCornerSw + decals: + 854: 41,-8 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerSw + decals: + 1497: 17,20 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSw + decals: + 1620: 36,17 + - node: + color: '#EFCC4193' + id: BrickTileWhiteCornerSw + decals: + 374: 25,-30 + 391: 10,-37 + - node: + color: '#9FED5847' + id: BrickTileWhiteEndE + decals: + 861: 45,-6 + - node: + color: '#9FED5847' + id: BrickTileWhiteEndN + decals: + 879: 47,-4 + - node: + color: '#9FED5847' + id: BrickTileWhiteEndW + decals: + 862: 43,-6 + - node: + color: '#9FED5847' + id: BrickTileWhiteInnerNe + decals: + 871: 41,-8 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerNe + decals: + 2134: 51,20 + - node: + color: '#EFCC4582' + id: BrickTileWhiteInnerNe + decals: + 408: 41,-40 + - node: + color: '#9FED5847' + id: BrickTileWhiteInnerNw + decals: + 870: 47,-8 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerNw + decals: + 2133: 53,20 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerSe + decals: + 2129: 50,19 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerSw + decals: + 2128: 54,19 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineE + decals: + 1891: 17,-5 + - node: + color: '#9FED583B' + id: BrickTileWhiteLineE + decals: + 851: 47,-7 + 852: 47,-6 + 853: 47,-5 + - node: + color: '#9FED5847' + id: BrickTileWhiteLineE + decals: + 872: 41,-7 + 873: 41,-6 + 874: 41,-5 + 875: 41,-4 + - node: + color: '#A4610696' + id: BrickTileWhiteLineE + decals: + 1493: 20,23 + 1494: 20,22 + 1495: 20,21 + - node: + color: '#D381C996' + id: BrickTileWhiteLineE + decals: + 2121: 50,17 + 2122: 50,18 + 2135: 51,21 + 2136: 56,17 + 2137: 56,19 + 2138: 56,20 + - node: + color: '#EFCC4193' + id: BrickTileWhiteLineE + decals: + 388: 13,-36 + - node: + color: '#EFCC4582' + id: BrickTileWhiteLineE + decals: + 490: 17,-42 + 491: 17,-41 + 494: 26,-42 + 495: 26,-41 + 496: 26,-40 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineN + decals: + 1892: 16,-4 + 1893: 15,-4 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineN + decals: + 1163: -13,-12 + 1164: -20,-12 + 1989: 32,36 + - node: + color: '#9FED5847' + id: BrickTileWhiteLineN + decals: + 863: 44,-6 + 865: 46,-8 + 866: 45,-8 + 867: 44,-8 + 868: 43,-8 + 869: 42,-8 + 882: 47,-9 + 883: 46,-9 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineN + decals: + 2265: 80,-4 + 2266: 77,-4 + - node: + color: '#A4610696' + id: BrickTileWhiteLineN + decals: + 1503: 18,24 + 1504: 19,24 + 1991: 30,36 + - node: + color: '#D381C996' + id: BrickTileWhiteLineN + decals: + 1990: 31,36 + 2101: 52,14 + 2102: 51,14 + 2103: 50,14 + 2104: 49,14 + 2105: 48,14 + 2132: 52,20 + 2227: 66,15 + 2228: 67,15 + 2229: 68,15 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + decals: + 1161: -3,1 + 1162: -5,1 + 1622: 38,19 + 1623: 37,19 + - node: + color: '#EFCC4193' + id: BrickTileWhiteLineN + decals: + 397: 12,-34 + 398: 11,-34 + - node: + color: '#EFCC4582' + id: BrickTileWhiteLineN + decals: + 403: 38,-39 + 404: 39,-39 + 405: 40,-39 + 407: 42,-40 + 421: 43,-40 + 422: 44,-40 + 423: 45,-40 + 424: 46,-40 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + decals: + 2084: 50,13 + 2085: 49,13 + 2089: 51,13 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineS + decals: + 1896: 16,-6 + 1897: 15,-6 + 1986: 32,35 + - node: + color: '#9FED583B' + id: BrickTileWhiteLineS + decals: + 846: 46,-8 + 847: 45,-8 + 848: 44,-8 + 849: 43,-8 + - node: + color: '#9FED5847' + id: BrickTileWhiteLineS + decals: + 864: 44,-6 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineS + decals: + 2264: 77,-6 + - node: + color: '#A4610696' + id: BrickTileWhiteLineS + decals: + 1498: 19,20 + 1499: 18,20 + - node: + color: '#D381C996' + id: BrickTileWhiteLineS + decals: + 2096: 49,14 + 2097: 50,14 + 2098: 51,14 + 2099: 52,14 + 2100: 48,14 + 2123: 51,19 + 2124: 52,19 + 2125: 53,19 + 2230: 68,14 + 2231: 67,14 + 2232: 66,14 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + decals: + 1624: 38,17 + 1625: 37,17 + 1987: 31,35 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineS + decals: + 1988: 30,35 + - node: + color: '#EFCC4193' + id: BrickTileWhiteLineS + decals: + 373: 26,-30 + 393: 12,-37 + 394: 11,-37 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + decals: + 2086: 51,15 + 2087: 50,15 + 2088: 49,15 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineW + decals: + 1895: 14,-5 + - node: + color: '#9FED583B' + id: BrickTileWhiteLineW + decals: + 855: 41,-7 + 856: 41,-6 + 857: 41,-5 + - node: + color: '#9FED5847' + id: BrickTileWhiteLineW + decals: + 876: 47,-7 + 877: 47,-6 + 878: 47,-5 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineW + decals: + 2271: 78,-2 + 2272: 78,-1 + - node: + color: '#A4610696' + id: BrickTileWhiteLineW + decals: + 1500: 17,21 + 1501: 17,22 + 1502: 17,23 + 1505: 22,20 + 1506: 22,21 + 1507: 22,22 + 1508: 22,23 + 1509: 22,24 + 1510: 22,25 + - node: + color: '#D381C996' + id: BrickTileWhiteLineW + decals: + 2126: 54,17 + 2127: 54,18 + - node: + color: '#EFCC4193' + id: BrickTileWhiteLineW + decals: + 395: 10,-36 + 396: 10,-35 + - node: + color: '#EFCC4582' + id: BrickTileWhiteLineW + decals: + 492: 25,-42 + 493: 25,-41 + 497: 16,-41 + 498: 16,-40 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineW + decals: + 2269: 78,-2 + 2270: 78,-1 + - node: + color: '#FFFFFFFF' + id: Caution + decals: + 1138: -6,-18 + 1409: 9,27 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Caution + decals: + 1408: 9,27 + - node: + color: '#52B4E996' + id: CheckerNESW + decals: + 104: 44,4 + 105: 45,4 + 106: 46,4 + 107: 47,4 + 108: 47,3 + 109: 46,3 + 110: 45,3 + 111: 44,3 + 112: 44,2 + 113: 45,2 + 114: 46,2 + 115: 47,2 + 132: 58,-12 + 133: 57,-12 + 134: 56,-12 + 135: 55,-12 + 136: 54,-12 + 137: 54,-11 + 138: 55,-11 + 139: 56,-11 + 140: 57,-11 + 141: 58,-11 + 142: 58,-10 + 143: 57,-10 + 144: 56,-10 + 145: 55,-10 + 146: 54,-10 + 147: 60,-10 + 148: 61,-10 + 149: 62,-10 + 150: 63,-10 + 151: 63,-11 + 152: 62,-11 + 153: 61,-11 + 154: 60,-11 + 155: 60,-12 + 156: 61,-12 + 157: 62,-12 + 158: 63,-12 + - node: + color: '#8A8A8A96' + id: CheckerNESW + decals: + 159: 60,11 + 160: 61,11 + 161: 62,11 + 162: 63,11 + 163: 62,10 + 164: 63,10 + 165: 63,9 + 166: 62,9 + 167: 61,9 + 168: 60,9 + 169: 61,10 + 170: 60,10 + 171: 60,8 + 172: 62,8 + 173: 61,8 + 174: 63,8 + - node: + color: '#9FED5896' + id: CheckerNESW + decals: + 2273: 80,-3 + 2274: 80,-2 + 2275: 81,-2 + 2276: 81,-3 + 2277: 81,-1 + 2278: 80,-1 + 2279: 76,-9 + 2280: 77,-9 + 2281: 77,-8 + 2282: 76,-8 + 2283: 76,-7 + 2284: 77,-7 + - node: + color: '#D4D4D428' + id: CheckerNESW + decals: + 962: 19,13 + 963: 19,14 + 964: 20,14 + 965: 20,13 + 966: 21,13 + 967: 21,14 + 968: 22,14 + 969: 22,13 + - node: + color: '#F9801D73' + id: CheckerNESW + decals: + 928: 20,9 + 929: 20,10 + - node: + color: '#9FED5822' + id: CheckerNWSE + decals: + 890: 42,-11 + 891: 42,-10 + 892: 43,-11 + 893: 43,-10 + 894: 44,-11 + 895: 44,-10 + - node: + color: '#9FED5896' + id: CheckerNWSE + decals: + 2267: 77,-2 + 2268: 77,-1 + - node: + color: '#A4610696' + id: CheckerNWSE + decals: + 1256: 13,30 + 1257: 13,31 + 1258: 12,31 + 1259: 12,30 + 1260: 11,30 + 1261: 11,31 + - node: + color: '#D381C996' + id: CheckerNWSE + decals: + 2081: 58,9 + 2082: 58,10 + 2083: 58,11 + - node: + color: '#EFCC4593' + id: CheckerNWSE + decals: + 802: 18,-18 + 803: 18,-17 + - node: + color: '#FFFFFF93' + id: CheckerNWSE + decals: + 808: 33,-10 + 809: 33,-11 + 810: 33,-12 + 811: 33,-13 + 812: 34,-13 + 813: 34,-12 + 814: 34,-11 + 815: 34,-10 + 816: 35,-10 + 817: 35,-11 + 818: 35,-12 + 819: 35,-13 + 820: 36,-13 + 821: 36,-12 + 822: 36,-11 + 823: 36,-10 + 824: 37,-10 + 825: 37,-11 + 826: 37,-12 + 827: 37,-13 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 201: 4,-7 + 202: 6,-7 + 203: 5,-4 + 204: 6,-4 + 205: 6,-5 + 235: 19,39 + 241: 51,8 + 242: 49,8 + 385: 5,-7 + 417: 46,-39 + 418: 46,-38 + 419: 39,-41 + 420: 41,-41 + 455: 16,-39 + 456: 17,-39 + 457: 25,-39 + 458: 26,-39 + 1049: 25,-3 + 1050: 26,-3 + 1051: 27,-3 + 1062: 24,13 + 1063: 24,14 + 1064: 19,11 + 1065: 18,11 + 1066: 25,16 + 1067: 26,16 + 1068: 27,16 + 1069: 33,-2 + 1070: 35,-2 + 1142: -8,-15 + 1143: -8,-14 + 1144: -8,-13 + 1165: 2,-2 + 1166: 2,-1 + 1167: 2,0 + 1224: 16,-2 + 1225: 17,-1 + 1226: 17,0 + 1227: 17,1 + 1274: 7,24 + 1275: 7,26 + 1739: 40,12 + 1740: 41,12 + 1741: 42,12 + 1816: 39,-1 + 1817: 39,0 + 1818: 39,1 + 1819: 40,2 + 1820: 41,2 + 1821: 42,2 + 1981: 7,9 + 1982: 7,10 + 1983: 38,13 + 1984: 38,14 + 1985: 38,15 + 2106: 53,13 + 2107: 53,14 + 2108: 53,15 + 2141: 58,16 + 2142: 59,16 + 2143: 60,16 + 2144: 58,21 + 2145: 59,21 + 2146: 60,21 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Delivery + decals: + 298: 32,-33 + 299: 32,-32 + 300: 20,-33 + 301: 20,-32 + 302: 20,-31 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Delivery + decals: + 214: 2,-33 + 215: 3,-29 + - node: + color: '#FFFFFFFF' + id: DeliveryGreyscale + decals: + 2109: 52,14 + 2110: 48,14 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 442: 41,-39 + 443: 39,-39 + 444: 46,-40 + 445: 45,-40 + 446: 44,-40 + 447: 44,-41 + 448: 43,-41 + 449: 42,-38 + 450: 43,-39 + 736: 30,-31 + 737: 29,-31 + 738: 30,-32 + 739: 30,-33 + 740: 29,-33 + 741: 29,-32 + 742: 28,-32 + 743: 31,-32 + 744: 32,-31 + 745: 27,-34 + 746: 27,-33 + 747: 26,-33 + 748: 25,-34 + 749: 24,-32 + 750: 23,-32 + 751: 22,-31 + 752: 22,-33 + 753: 24,-33 + 896: 43,-11 + 897: 42,-10 + 898: 30,-13 + 899: 29,-11 + 1060: 21,-31 + 1061: 21,-31 + 1196: -4,-6 + 1197: -4,-5 + 1198: -4,-4 + 1199: -4,-5 + 1279: 6,30 + 1280: 7,31 + 1281: 6,32 + 1282: 9,30 + 1283: 9,29 + 1391: 15,20 + 1392: 14,20 + 1393: 13,23 + 1394: 12,23 + 1395: 11,23 + 1396: 7,22 + 1397: 7,21 + 1398: 10,25 + 1399: 9,27 + 1400: 7,28 + 1401: 13,28 + 1402: 11,28 + 1403: 15,24 + 1404: 12,24 + 1405: 7,24 + 1406: 5,24 + 1407: 7,23 + 1416: 8,17 + 1417: 7,16 + 1418: 5,16 + 1419: 8,18 + 1484: 11,24 + 1485: 10,26 + 1486: 7,25 + 1526: 17,21 + 1527: 18,22 + 1528: 18,23 + 1529: 19,20 + 1564: 22,20 + 1565: 22,25 + 1566: 24,20 + 1567: 24,23 + 1568: 23,24 + 1569: 23,22 + 1570: 23,23 + 1571: 23,21 + 1572: 15,23 + 1573: 14,23 + 1574: 13,24 + 1598: 39,30 + 1599: 40,31 + 1600: 39,33 + 1601: 38,33 + 1602: 37,35 + 1603: 39,35 + 1604: 41,33 + 1605: 40,33 + 1668: 32,17 + 1669: 32,18 + 1670: 33,17 + 1671: 35,20 + 1672: 35,21 + 1673: 33,23 + 1674: 34,24 + 1675: 33,27 + 1676: 32,29 + 1677: 32,30 + 1678: 30,23 + 1679: 30,18 + 1680: 29,17 + 1681: 29,20 + 1682: 30,20 + 1698: 25,18 + 1699: 25,19 + 1700: 25,20 + 1701: 25,22 + 1702: 27,20 + 1703: 25,23 + 1704: 25,24 + 1705: 26,24 + 1706: 27,23 + 1707: 25,25 + 1708: 27,26 + 1844: 8,21 + 1845: 9,21 + 1846: 9,22 + 1847: 9,23 + 1848: 10,23 + 1849: 10,22 + 1850: 8,24 + 1851: 9,24 + 2301: 55,-16 + 2302: 55,-16 + 2303: 56,-16 + 2304: 56,-15 + 2315: 55,-14 + 2316: 57,-16 + 2317: 57,-15 + 2350: 32,-18 + 2351: 33,-17 + 2352: 31,-16 + 2353: 29,-17 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 286: 21,-33 + 287: 20,-33 + 288: 28,-34 + 289: 28,-33 + 290: 31,-33 + 431: 40,-41 + 432: 40,-40 + 433: 38,-39 + 434: 41,-40 + 508: 24,-37 + 509: 30,-37 + 510: 31,-36 + 663: 18,-31 + 664: 19,-29 + 1284: 8,29 + 1285: 8,31 + 1369: 12,22 + 1370: 8,20 + 1420: 7,17 + 1421: 8,16 + 1422: 9,19 + 1530: 18,21 + 1552: 23,23 + 1606: 39,32 + 2305: 55,-15 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 291: 31,-32 + 292: 30,-33 + 293: 25,-33 + 294: 24,-33 + 295: 23,-31 + 296: 23,-33 + 297: 31,-31 + 435: 41,-39 + 436: 38,-40 + 437: 42,-41 + 438: 42,-40 + 439: 46,-41 + 440: 44,-39 + 441: 43,-40 + 500: 19,-42 + 501: 19,-41 + 502: 21,-39 + 511: 31,-37 + 515: 32,-36 + 516: 32,-35 + 517: 29,-36 + 518: 29,-37 + 519: 27,-37 + 520: 27,-36 + 521: 25,-37 + 522: 25,-36 + 523: 24,-36 + 524: 23,-37 + 525: 22,-37 + 526: 20,-37 + 527: 17,-36 + 528: 18,-35 + 529: 18,-34 + 530: 16,-42 + 531: 17,-42 + 665: 18,-29 + 666: 19,-28 + 667: 20,-29 + 668: 22,-29 + 669: 21,-29 + 670: 22,-28 + 671: 20,-27 + 672: 21,-26 + 673: 21,-27 + 674: 20,-26 + 675: 14,-27 + 676: 15,-26 + 677: 13,-25 + 678: 15,-27 + 679: 15,-28 + 680: 15,-28 + 681: 16,-29 + 682: 16,-25 + 683: 26,-29 + 684: 26,-28 + 685: 27,-29 + 686: 15,-37 + 687: 16,-37 + 688: 15,-34 + 1290: 9,31 + 1291: 7,32 + 1292: 9,32 + 1293: 6,31 + 1294: 8,29 + 1295: 9,28 + 1296: 10,27 + 1297: 10,28 + 1377: 13,25 + 1378: 11,25 + 1379: 12,27 + 1380: 11,26 + 1381: 12,22 + 1382: 13,23 + 1383: 14,24 + 1384: 15,23 + 1385: 15,22 + 1386: 15,21 + 1387: 14,22 + 1388: 15,21 + 1389: 15,20 + 1390: 14,21 + 1425: 7,16 + 1426: 9,17 + 1427: 9,16 + 1428: 9,15 + 1429: 7,15 + 1430: 9,18 + 1431: 7,19 + 1432: 7,19 + 1433: 8,18 + 1434: 9,17 + 1435: 9,16 + 1537: 18,24 + 1538: 17,23 + 1539: 19,23 + 1540: 20,21 + 1541: 20,20 + 1542: 20,20 + 1543: 17,20 + 1544: 17,21 + 1545: 18,20 + 1546: 16,20 + 1547: 16,22 + 1548: 20,20 + 1549: 21,21 + 1550: 22,20 + 1553: 23,20 + 1554: 24,21 + 1555: 22,21 + 1556: 22,22 + 1557: 24,22 + 1558: 23,24 + 1559: 24,24 + 1560: 24,25 + 1561: 23,23 + 1562: 23,22 + 1563: 22,25 + 1611: 38,35 + 1612: 36,35 + 1613: 38,36 + 1614: 37,34 + 1615: 40,32 + 1616: 40,31 + 1617: 40,30 + 1683: 30,17 + 1684: 30,21 + 1685: 33,18 + 1686: 35,19 + 1687: 34,23 + 1688: 33,25 + 1689: 35,23 + 1690: 30,24 + 1691: 29,23 + 1692: 35,28 + 1693: 34,27 + 1694: 33,30 + 1695: 33,29 + 1696: 37,30 + 1697: 36,22 + 1709: 25,21 + 1710: 26,22 + 1711: 26,23 + 1712: 27,20 + 1713: 26,19 + 1714: 25,15 + 1833: 25,27 + 1834: 26,28 + 1835: 27,30 + 1836: 25,32 + 1837: 25,33 + 1838: 26,34 + 1839: 27,34 + 1852: 9,21 + 1853: 10,22 + 1854: 7,21 + 1855: 8,22 + 1856: 8,24 + 2308: 55,-15 + 2309: 55,-14 + 2310: 54,-14 + 2311: 55,-16 + 2312: 57,-16 + 2313: 57,-15 + 2314: 57,-14 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 425: 38,-41 + 426: 39,-40 + 427: 40,-39 + 428: 45,-41 + 429: 45,-39 + 430: 43,-38 + 503: 17,-41 + 504: 23,-39 + 505: 21,-37 + 506: 18,-36 + 507: 26,-36 + 512: 31,-35 + 513: 30,-36 + 514: 28,-37 + 659: 21,-28 + 660: 14,-26 + 661: 13,-25 + 662: 25,-29 + 1286: 8,30 + 1287: 7,30 + 1288: 7,31 + 1289: 8,32 + 1371: 13,22 + 1372: 13,21 + 1373: 11,22 + 1374: 8,26 + 1375: 12,25 + 1376: 11,27 + 1423: 7,18 + 1424: 8,19 + 1531: 18,20 + 1532: 19,21 + 1533: 19,22 + 1534: 17,22 + 1535: 19,23 + 1536: 17,24 + 1551: 23,21 + 1607: 39,30 + 1608: 37,33 + 1609: 37,34 + 1610: 39,34 + 2306: 56,-14 + 2307: 55,-16 + - node: + color: '#FFFFFFFF' + id: FlowersBRThree + decals: + 844: 46.966167,-9.531703 + - node: + color: '#FFFFFFFF' + id: FlowersBRTwo + decals: + 845: 46.013042,-9.281703 + - node: + color: '#FFFFFFFF' + id: Flowersy1 + decals: + 843: 46.528667,-10.391078 + - node: + color: '#FFFFFFFF' + id: Flowersy4 + decals: + 842: 45.934917,-10.937953 + - node: + color: '#00000026' + id: FullTileOverlayGreyscale + decals: + 994: 24,-6 + 995: 24,-6 + 996: 24,-5 + 997: 24,-5 + - node: + color: '#0000004D' + id: FullTileOverlayGreyscale + decals: + 1575: 24,17 + 1576: 24,17 + 1577: 24,18 + 1578: 24,18 + - node: + color: '#9FED581F' + id: FullTileOverlayGreyscale + decals: + 1753: 31,48 + 1754: 32,48 + 1755: 29,48 + 1756: 30,48 + - node: + color: '#9FED5834' + id: FullTileOverlayGreyscale + decals: + 860: 42,-9 + 884: 42,-11 + 885: 42,-10 + 886: 43,-10 + 887: 43,-11 + 888: 44,-11 + 889: 44,-10 + - node: + color: '#9FED5896' + id: FullTileOverlayGreyscale + decals: + 2344: 53,-2 + 2345: 53,0 + 2382: 68,5 + 2383: 68,6 + 2445: 68,4 + 2446: 68,3 + - node: + color: '#A4610696' + id: FullTileOverlayGreyscale + decals: + 1277: 8,29 + 1278: 9,29 + 1487: 16,20 + 1488: 16,22 + 1489: 21,20 + 1490: 21,21 + - node: + color: '#D4D4D40C' + id: FullTileOverlayGreyscale + decals: + 1742: 28,44 + 1743: 26,44 + - node: + color: '#DE3A3A31' + id: FullTileOverlayGreyscale + decals: + 1757: 25,48 + 1758: 24,48 + 1759: 23,48 + 1760: 22,48 + - node: + color: '#DE3A3A96' + id: FullTileOverlayGreyscale + decals: + 35: 36,20 + 46: 36,28 + 47: 36,27 + 48: 36,26 + 49: 36,25 + 64: 32,27 + 92: 31,18 + 93: 31,20 + 1658: 27,23 + 1659: 27,24 + - node: + color: '#EFCC4125' + id: FullTileOverlayGreyscale + decals: + 1059: 21,-31 + - node: + color: '#EFCC4193' + id: FullTileOverlayGreyscale + decals: + 368: 24,-29 + 369: 28,-29 + - node: + color: '#F5E8281F' + id: FullTileOverlayGreyscale + decals: + 248: 20,-33 + 249: 20,-32 + 250: 20,-31 + 251: 21,-32 + 252: 21,-33 + 253: 22,-33 + 254: 22,-32 + 255: 22,-31 + 256: 23,-31 + 257: 23,-32 + 258: 23,-33 + 259: 32,-31 + 260: 31,-31 + 261: 30,-31 + 262: 29,-31 + 263: 29,-32 + 264: 30,-32 + 265: 31,-32 + 266: 32,-32 + 267: 32,-33 + 268: 31,-33 + 269: 30,-33 + 270: 29,-33 + 271: 28,-33 + 272: 28,-34 + 273: 28,-32 + 274: 27,-34 + 275: 27,-33 + 276: 27,-32 + 277: 26,-32 + 278: 26,-33 + 279: 26,-34 + 280: 25,-34 + 281: 25,-33 + 282: 25,-32 + 283: 24,-32 + 284: 24,-33 + 285: 24,-34 + - node: + color: '#FFFFFFFF' + id: Grassd1 + decals: + 839: 46.966167,-10.031703 + - node: + color: '#FFFFFFFF' + id: Grassd3 + decals: + 841: 46.075542,-9.266078 + - node: + color: '#FFFFFFFF' + id: Grasse1 + decals: + 840: 46.950542,-9.281703 + - node: + color: '#FFFFFFFF' + id: Grasse3 + decals: + 836: 46.966167,-10.891078 + 837: 46.091167,-10.859828 + 838: 46.263042,-10.062953 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale + decals: + 229: 27,46 + 230: 28,46 + 231: 26,46 + 1768: 26,37 + 1769: 27,37 + 1770: 28,37 + 1771: 27,36 + 1772: 27,35 + 1908: 10,-6 + 1909: 11,-6 + 1910: 12,-6 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + decals: + 2457: 50,4 + 2495: 74,8 + 2496: 73,8 + 2497: 71,8 + 2498: 72,8 + - node: + color: '#9FED5847' + id: HalfTileOverlayGreyscale + decals: + 1749: 34,46 + 1750: 33,46 + 1751: 31,47 + 1752: 30,47 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale + decals: + 1804: 48,0 + 1805: 49,0 + 1806: 50,0 + 1807: 51,0 + 2249: 78,-4 + 2250: 79,-4 + 2251: 81,-4 + 2358: 77,5 + 2363: 79,2 + 2364: 80,2 + 2365: 81,2 + 2376: 75,2 + 2377: 74,2 + 2378: 73,2 + 2379: 72,2 + 2380: 70,2 + 2381: 69,2 + 2447: 68,2 + 2449: 57,3 + 2450: 55,3 + 2451: 54,3 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale + decals: + 187: 7,19 + 188: 9,19 + 1240: 10,28 + 1241: 9,28 + 1242: 8,28 + 1249: 14,25 + 1253: 11,28 + - node: + color: '#D0B78BFF' + id: HalfTileOverlayGreyscale + decals: + 118: 53,-4 + 120: 52,-4 + 125: 49,-5 + 126: 50,-5 + 127: 51,-5 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale + decals: + 26: 62,25 + 27: 63,25 + 28: 64,25 + 2111: 53,11 + 2112: 52,11 + 2113: 51,11 + 2114: 50,11 + 2115: 48,11 + 2116: 49,11 + 2117: 55,11 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale + decals: + 1045: 26,-4 + - node: + color: '#DE3A3A47' + id: HalfTileOverlayGreyscale + decals: + 1762: 24,47 + 1763: 23,47 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale + decals: + 60: 33,30 + 73: 32,24 + 74: 31,24 + 75: 30,24 + 76: 29,24 + 77: 28,24 + 94: 36,31 + 95: 37,31 + 178: 36,24 + 1194: -2,-4 + - node: + color: '#EFB34128' + id: HalfTileOverlayGreyscale + decals: + 1766: 20,46 + 1767: 21,46 + - node: + color: '#EFCC4193' + id: HalfTileOverlayGreyscale + decals: + 305: 25,-36 + 306: 24,-36 + 307: 23,-36 + 308: 27,-36 + 309: 28,-36 + 310: 29,-36 + 313: 32,-35 + 316: 20,-35 + 317: 19,-35 + 329: 16,-34 + 350: 14,-24 + 351: 15,-24 + 352: 16,-24 + 353: 17,-24 + 354: 18,-24 + 355: 19,-24 + 356: 20,-24 + 357: 21,-24 + - node: + color: '#EFCC4582' + id: HalfTileOverlayGreyscale + decals: + 477: 20,-39 + 478: 22,-39 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale180 + decals: + 1951: 10,-2 + 1952: 11,-2 + 1953: 12,-2 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + decals: + 1812: 50,1 + 2482: 71,4 + 2491: 73,4 + 2492: 72,4 + - node: + color: '#9FED5834' + id: HalfTileOverlayGreyscale180 + decals: + 1911: 12,-9 + 1912: 10,-9 + 1913: 11,-9 + - node: + color: '#9FED5837' + id: HalfTileOverlayGreyscale180 + decals: + 921: 46,-2 + 922: 45,-2 + 923: 44,-2 + 924: 43,-2 + 925: 42,-2 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale180 + decals: + 2257: 81,-8 + 2258: 80,-8 + 2259: 79,-8 + 2348: 53,2 + 2366: 81,1 + 2367: 80,1 + 2368: 79,1 + 2369: 78,1 + 2370: 76,1 + 2371: 75,1 + 2372: 74,1 + 2373: 73,1 + 2374: 70,1 + 2375: 71,1 + 2388: 68,0 + 2389: 67,0 + 2390: 66,0 + 2391: 64,0 + 2392: 63,0 + 2404: 60,-8 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale180 + decals: + 183: 8,15 + 184: 7,15 + 192: 9,15 + 1250: 12,21 + 1251: 11,21 + 1252: 10,21 + 1842: 9,21 + - node: + color: '#D0B78BFF' + id: HalfTileOverlayGreyscale180 + decals: + 116: 50,-3 + 117: 49,-3 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + decals: + 32: 62,13 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale180 + decals: + 1046: 26,-2 + - node: + 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 + 96: 36,30 + 99: 37,30 + 1195: -2,-6 + - node: + color: '#EFCC4193' + id: HalfTileOverlayGreyscale180 + decals: + 333: 16,-37 + 334: 17,-37 + 335: 25,-37 + 336: 26,-37 + 337: 27,-37 + 338: 28,-37 + 339: 29,-37 + 340: 30,-37 + 343: 16,-29 + 344: 15,-29 + 345: 14,-29 + 364: 19,-29 + 365: 20,-29 + 366: 22,-29 + - node: + color: '#EFCC4582' + id: HalfTileOverlayGreyscale180 + decals: + 474: 20,-44 + 475: 21,-44 + 476: 22,-44 + - node: + color: '#34A2C0B2' + id: HalfTileOverlayGreyscale270 + decals: + 959: 18,6 + 960: 18,7 + 961: 18,8 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + decals: + 102: 49,3 + 103: 49,2 + 2436: 55,-6 + 2441: 55,-4 + 2484: 70,5 + 2485: 70,6 + 2486: 70,7 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale270 + decals: + 2248: 76,-5 + 2262: 78,-7 + 2340: 52,3 + 2341: 54,-2 + 2342: 54,-1 + 2343: 54,0 + 2346: 54,1 + 2356: 76,3 + 2357: 76,4 + 2402: 59,-5 + 2403: 59,-4 + 2464: 65,3 + 2465: 65,4 + 2466: 62,3 + 2467: 62,4 + 2468: 59,3 + 2469: 59,4 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + decals: + 185: 7,16 + 186: 7,17 + 197: 7,18 + 1228: 7,22 + 1229: 7,23 + 1230: 7,24 + 1231: 7,25 + 1232: 7,26 + 1233: 7,27 + - node: + color: '#D0B78BFF' + id: HalfTileOverlayGreyscale270 + decals: + 128: 49,-9 + 129: 49,-8 + 130: 49,-7 + 131: 49,-6 + - 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 + 29: 58,18 + 2119: 47,10 + 2120: 47,9 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + decals: + 62: 32,30 + 63: 32,29 + 65: 32,28 + 67: 33,27 + 68: 33,26 + 71: 33,25 + 83: 32,22 + 84: 32,21 + 85: 32,20 + 86: 32,19 + 87: 32,18 + 88: 32,17 + 1193: -3,-5 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale270 + decals: + 2639: 34,-49 + 2640: 34,-48 + 2641: 34,-47 + 2642: 34,-43 + - node: + color: '#EFCC4193' + id: HalfTileOverlayGreyscale270 + decals: + 324: 17,-30 + 325: 17,-31 + 326: 17,-32 + 327: 17,-33 + 332: 15,-36 + 347: 13,-26 + 348: 13,-25 + - node: + color: '#EFCC4582' + id: HalfTileOverlayGreyscale270 + decals: + 471: 19,-43 + 472: 19,-42 + 473: 19,-41 + - node: + color: '#34A2C0B2' + id: HalfTileOverlayGreyscale90 + decals: + 956: 19,6 + 957: 19,8 + 958: 19,7 + - node: + color: '#52B4E94D' + id: HalfTileOverlayGreyscale90 + decals: + 998: 24,-6 + 999: 24,-5 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + decals: + 1814: 51,2 + 1815: 51,3 + 2435: 57,-5 + 2440: 57,-4 + 2493: 74,5 + 2494: 74,6 + - node: + color: '#5A5A5AFF' + id: HalfTileOverlayGreyscale90 + decals: + 216: 12,-35 + 217: 12,-36 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale90 + decals: + 1809: 52,-1 + 1810: 52,-2 + 2253: 82,-6 + 2254: 82,-5 + 2255: 82,-7 + 2354: 78,3 + 2355: 78,4 + 2393: 62,-1 + 2394: 62,-2 + 2395: 62,-3 + 2396: 62,-4 + 2397: 62,-5 + 2398: 62,-7 + 2458: 67,3 + 2459: 67,4 + 2460: 64,3 + 2461: 64,4 + 2462: 61,3 + 2463: 61,4 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + decals: + 189: 9,18 + 190: 9,17 + 191: 9,16 + 1243: 13,27 + 1244: 13,26 + 1245: 15,24 + 1246: 15,23 + 1247: 15,22 + 1248: 15,21 + - node: + color: '#D0B78BFF' + id: HalfTileOverlayGreyscale90 + decals: + 121: 53,-5 + 122: 53,-6 + 123: 53,-7 + 124: 53,-8 + - 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 + 57: 34,30 + 179: 36,23 + 1192: -1,-5 + 1645: 27,17 + 1646: 27,18 + 1647: 27,19 + 1648: 27,20 + 1649: 27,21 + 1650: 27,26 + 1651: 27,27 + 1652: 27,28 + 1653: 27,29 + 1654: 27,30 + 1655: 27,31 + - node: + color: '#EFCC4193' + id: HalfTileOverlayGreyscale90 + decals: + 319: 18,-34 + 320: 18,-33 + 321: 18,-32 + 322: 18,-31 + 323: 18,-30 + 360: 22,-26 + 361: 22,-25 + 362: 23,-28 + - node: + color: '#EFCC4582' + id: HalfTileOverlayGreyscale90 + decals: + 468: 23,-43 + 469: 23,-42 + 470: 23,-41 + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 1643: 39,24 + 1644: 40,24 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 1276: 9,26 + 1518: 23,25 + 1666: 31,18 + 1667: 31,20 + 2339: 52,0 + - node: + color: '#FFFFFFFF' + id: LoadingArea + decals: + 1516: 22,23 + 1517: 22,24 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 1221: 13,-2 + 1222: 14,-2 + 1223: 15,-2 + 1841: 9,24 + 2338: 52,-2 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 70: 32,25 + - node: + color: '#FFFFFFFF' + id: North + decals: + 1200: -17,-14 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale + decals: + 225: 28,39 + 226: 28,40 + 227: 28,41 + 228: 28,42 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + decals: + 2541: 105,-19 + 2542: 106,-18 + 2543: 107,-19 + 2544: 103,-19 + 2545: 103,-17 + 2546: 106,-17 + 2547: 107,-20 + 2548: 106,-17 + 2549: 104,-16 + 2550: 104,-19 + 2551: 105,-19 + 2552: 104,-17 + 2553: 104,-18 + 2554: 108,-18 + 2555: 108,-16 + - node: + color: '#797C8250' + id: QuarterTileOverlayGreyscale + decals: + 2175: 54,15 + 2176: 54,15 + 2177: 55,15 + 2178: 55,15 + 2179: 56,15 + 2180: 56,15 + 2181: 57,15 + 2182: 57,15 + 2183: 58,15 + 2184: 58,15 + - node: + color: '#80C71FFF' + id: QuarterTileOverlayGreyscale + decals: + 2591: 106,-19 + 2592: 107,-17 + 2593: 103,-16 + 2594: 102,-20 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale + decals: + 2362: 76,2 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale + decals: + 193: 7,15 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale + decals: + 31: 58,17 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale + decals: + 1109: -22,-13 + 1110: -21,-13 + 1111: -19,-13 + 1112: -18,-13 + 1113: -17,-13 + 1114: -16,-13 + 1115: -15,-13 + 1116: -14,-13 + 1117: -12,-13 + 1118: -11,-13 + 1119: -10,-13 + 1120: -9,-13 + 1121: -8,-13 + 1122: -7,-13 + 1123: -7,-12 + 1124: -7,-11 + 1125: -7,-10 + 1126: -7,-9 + 1127: -7,-8 + 1128: -7,-7 + 1201: 3,0 + 1202: 3,1 + 1203: 3,2 + 1204: 3,3 + 1205: 3,4 + 1206: 3,5 + 1207: 3,6 + 1208: 3,7 + 1209: 3,8 + 1210: 3,9 + 1211: 3,10 + 1212: 3,11 + 1213: 3,12 + 1214: 3,13 + 1215: 4,13 + 1216: 6,13 + 1217: 5,13 + 1579: 25,17 + 1580: 25,18 + 1581: 25,19 + 1582: 25,20 + 1583: 25,21 + 1584: 25,22 + 1585: 25,23 + 1586: 25,24 + 1587: 25,25 + 1588: 35,29 + 1798: 25,26 + 1992: 18,1 + 1993: 19,1 + 1994: 20,1 + 1995: 21,1 + 1996: 22,1 + 1997: 23,1 + 1998: 24,1 + 1999: 25,1 + 2000: 25,2 + 2001: 25,3 + 2050: 39,15 + 2051: 40,15 + 2052: 41,15 + 2053: 43,15 + 2054: 42,15 + 2055: 44,15 + 2056: 45,15 + 2057: 45,16 + 2058: 45,17 + 2059: 45,18 + 2060: 45,19 + 2061: 46,19 + 2062: 47,19 + 2063: 40,11 + 2064: 40,10 + 2065: 40,8 + 2066: 40,7 + 2067: 40,9 + 2068: 40,6 + 2069: 40,5 + 2070: 40,4 + 2071: 40,3 + - node: + color: '#D5188DFF' + id: QuarterTileOverlayGreyscale + decals: + 2579: 103,-18 + 2580: 106,-16 + 2581: 108,-20 + 2582: 103,-21 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + decals: + 54: 35,28 + 58: 34,30 + 61: 32,30 + 72: 33,24 + 100: 36,30 + 784: 24,-25 + 785: 24,-24 + 1000: 27,5 + 1001: 26,5 + 1002: 25,5 + 1003: 25,6 + 1004: 26,6 + 1005: 26,6 + 1006: 25,6 + 1007: 25,5 + 1008: 26,5 + 1009: 27,5 + 1010: 27,6 + 1011: 27,6 + 1012: 27,7 + 1013: 27,7 + 1014: 26,7 + 1015: 26,7 + 1016: 25,7 + 1017: 25,7 + 1018: 25,8 + 1019: 25,8 + 1020: 26,8 + 1021: 26,8 + 1022: 27,8 + 1023: 27,8 + 1152: -7,0 + 1153: -6,0 + 1154: -2,0 + 1155: -1,0 + 1156: 0,0 + 1157: 1,0 + 1158: 2,0 + 1634: 38,24 + 1635: 38,23 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + decals: + 1944: 12,-8 + 1946: 11,-8 + 1947: 10,-8 + - node: + color: '#EFCC4193' + id: QuarterTileOverlayGreyscale + decals: + 311: 30,-36 + 328: 17,-34 + - node: + color: '#0E7F1BFF' + id: QuarterTileOverlayGreyscale180 + decals: + 2583: 102,-21 + 2584: 104,-20 + 2585: 107,-16 + 2586: 108,-18 + 2587: 102,-16 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale180 + decals: + 1950: 9,-2 + 2556: 104,-19 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + decals: + 786: 28,-25 + 787: 28,-24 + 2499: 74,7 + - node: + color: '#797979AB' + id: QuarterTileOverlayGreyscale180 + decals: + 1024: 27,5 + 1025: 26,5 + 1026: 25,5 + 1027: 25,6 + 1028: 26,6 + 1029: 27,6 + 1030: 27,7 + 1031: 26,7 + 1032: 25,7 + 1033: 25,8 + 1034: 26,8 + 1035: 27,8 + - node: + color: '#797C8250' + id: QuarterTileOverlayGreyscale180 + decals: + 2147: 60,13 + 2148: 60,13 + 2149: 59,13 + 2150: 59,13 + 2151: 58,13 + 2152: 58,13 + 2153: 58,12 + 2154: 58,12 + 2155: 58,8 + 2156: 58,8 + 2185: 64,13 + 2186: 64,13 + 2187: 64,14 + 2188: 64,14 + 2195: 60,17 + 2196: 60,17 + 2197: 60,18 + 2198: 60,18 + 2199: 60,19 + 2200: 60,19 + 2201: 60,20 + 2202: 60,20 + 2219: 54,22 + 2220: 54,22 + 2221: 55,22 + 2222: 55,22 + 2223: 56,22 + 2224: 56,22 + 2225: 57,22 + 2226: 57,22 + - node: + color: '#80C71FFF' + id: QuarterTileOverlayGreyscale180 + decals: + 2595: 108,-20 + 2596: 103,-21 + - node: + color: '#951710FF' + id: QuarterTileOverlayGreyscale180 + decals: + 2588: 107,-20 + - node: + color: '#9FED5837' + id: QuarterTileOverlayGreyscale180 + decals: + 927: 41,-2 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale180 + decals: + 2386: 69,1 + 2400: 62,0 + 2524: 105,-17 + 2525: 106,-18 + 2526: 103,-19 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 + decals: + 196: 9,19 + - node: + color: '#D0B78BFF' + id: QuarterTileOverlayGreyscale180 + decals: + 119: 53,-4 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale180 + decals: + 33: 61,13 + 2576: 106,-19 + 2577: 108,-17 + 2578: 108,-19 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale180 + decals: + 985: 27,-13 + 986: 27,-12 + 987: 27,-11 + 988: 27,-10 + 989: 27,-9 + 990: 27,-8 + 991: 27,-7 + 992: 27,-6 + 993: 27,-5 + 1168: -6,-14 + 1169: -6,-13 + 1170: -6,-12 + 1171: -6,-11 + 1172: -6,-10 + 1173: -6,-9 + 1174: -6,-8 + 1175: -6,-7 + 1176: -6,-6 + 1177: -6,-5 + 1178: -6,-4 + 1179: -6,-3 + 1180: -6,-2 + 1181: -5,-2 + 1182: -4,-2 + 1183: -3,-2 + 1184: -2,-2 + 1185: -1,-2 + 1186: 0,-2 + 1187: 1,-2 + 1799: 27,33 + 1800: 27,34 + 1801: 28,34 + 1802: 28,35 + 1803: 28,36 + 2016: 38,-1 + 2017: 37,-1 + 2018: 36,-1 + 2019: 35,-1 + 2020: 34,-1 + 2021: 33,-1 + 2022: 32,-1 + 2023: 32,-1 + 2024: 31,-1 + 2025: 30,-1 + 2026: 29,-1 + 2027: 28,-1 + 2028: 27,-1 + 2037: 13,-1 + 2038: 14,-1 + 2039: 16,-1 + 2040: 15,-1 + - node: + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale180 + decals: + 1075: -22,-15 + 1076: -21,-15 + 1077: -20,-15 + 1078: -19,-15 + 1079: -18,-15 + 1080: -17,-15 + 1081: -16,-15 + 1082: -15,-15 + 1083: -14,-15 + 1084: -13,-15 + 1085: -12,-15 + 1086: -11,-15 + 1087: -10,-15 + 1088: -9,-15 + 1089: -8,-15 + 1090: -7,-15 + 1091: -6,-15 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale180 + decals: + 40: 35,21 + 66: 32,28 + 89: 32,17 + 97: 37,31 + 180: 36,24 + 2516: 105,-19 + 2517: 104,-18 + 2518: 106,-16 + 2519: 107,-17 + 2520: 107,-19 + 2521: 103,-17 + 2522: 102,-18 + 2523: 103,-20 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale180 + decals: + 1945: 11,-7 + 1948: 10,-7 + 1949: 9,-7 + - node: + color: '#EFCC2E82' + id: QuarterTileOverlayGreyscale180 + decals: + 768: 27,-14 + 769: 27,-15 + 770: 27,-16 + 771: 27,-17 + 772: 27,-18 + 773: 27,-19 + 774: 27,-20 + 775: 27,-21 + 776: 27,-22 + 777: 27,-23 + 778: 27,-24 + 779: 27,-25 + - node: + color: '#EFCC4193' + id: QuarterTileOverlayGreyscale180 + decals: + 342: 18,-29 + - node: + color: '#EFCC4593' + id: QuarterTileOverlayGreyscale180 + decals: + 793: 22,-20 + 794: 22,-19 + 795: 22,-18 + 796: 22,-17 + 797: 22,-16 + - node: + color: '#FED83DFF' + id: QuarterTileOverlayGreyscale180 + decals: + 2557: 105,-16 + 2558: 106,-17 + 2559: 105,-20 + 2560: 102,-20 + 2561: 102,-17 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale270 + decals: + 1959: 8,-2 + - node: + color: '#3C44AAFF' + id: QuarterTileOverlayGreyscale270 + decals: + 2566: 104,-16 + 2567: 102,-19 + 2568: 107,-17 + 2569: 108,-16 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + decals: + 1092: -22,-15 + 1093: -21,-15 + 1094: -20,-15 + 1095: -19,-15 + 1096: -18,-15 + 1097: -17,-15 + 1098: -16,-15 + 1099: -15,-15 + 1100: -14,-15 + 1101: -13,-15 + 1102: -12,-15 + 1103: -11,-15 + 1104: -10,-15 + 1105: -9,-15 + 1106: -8,-15 + 1107: -7,-15 + 1108: -6,-15 + - node: + color: '#797C8250' + id: QuarterTileOverlayGreyscale270 + decals: + 2157: 57,8 + 2158: 57,8 + 2159: 57,9 + 2160: 57,9 + 2161: 57,10 + 2162: 57,10 + 2163: 57,11 + 2164: 57,11 + 2165: 57,12 + 2166: 57,12 + 2167: 57,13 + 2168: 57,13 + 2169: 56,13 + 2170: 56,13 + 2171: 55,13 + 2172: 55,13 + 2173: 54,13 + 2174: 54,13 + 2203: 58,20 + 2204: 58,20 + - node: + color: '#951710FF' + id: QuarterTileOverlayGreyscale270 + decals: + 2589: 103,-19 + 2590: 105,-16 + - node: + color: '#9FED5837' + id: QuarterTileOverlayGreyscale270 + decals: + 926: 47,-2 + - node: + color: '#9FED5853' + id: QuarterTileOverlayGreyscale270 + decals: + 1954: 5,-2 + 1955: 6,-2 + 1956: 7,-2 + 1957: 4,-2 + 1958: 3,-2 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale270 + decals: + 2261: 78,-6 + 2347: 54,2 + 2527: 106,-19 + 2528: 105,-18 + 2529: 103,-16 + 2530: 102,-17 + 2531: 103,-18 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale270 + decals: + 195: 7,19 + 1254: 13,21 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale270 + decals: + 30: 58,19 + 34: 63,13 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale270 + decals: + 930: 8,9 + 931: 9,9 + 932: 10,9 + 933: 11,9 + 934: 12,9 + 935: 13,9 + 936: 14,9 + 937: 15,9 + 938: 16,9 + 939: 17,9 + 940: 18,9 + 941: 19,9 + 970: 22,15 + 971: 21,15 + 972: 20,15 + 976: 25,-13 + 977: 25,-12 + 978: 25,-11 + 979: 25,-10 + 980: 25,-9 + 981: 25,-8 + 982: 25,-7 + 983: 25,-6 + 984: 25,-5 + 1129: -7,-5 + 1130: -7,-4 + 1131: -7,-3 + 1132: -7,-2 + 1133: -7,-1 + 1134: -7,0 + 1725: 37,13 + 1726: 36,13 + 1727: 35,13 + 1728: 34,13 + 1729: 33,13 + 1730: 32,13 + 1731: 31,13 + 1732: 30,13 + 1733: 29,13 + 1734: 28,13 + 1735: 25,12 + 1736: 25,13 + 1737: 25,14 + 1738: 25,15 + 1782: 17,35 + 1783: 18,35 + 1784: 19,35 + 1785: 20,35 + 1786: 21,35 + 1787: 22,35 + 1788: 23,35 + 1789: 24,35 + 1790: 25,35 + 1791: 25,34 + 1792: 25,33 + 1793: 25,32 + 1794: 25,31 + 1795: 25,30 + 1796: 25,29 + 1797: 25,28 + 2029: 25,-1 + 2030: 24,-1 + 2031: 23,-1 + 2032: 22,-1 + 2033: 21,-1 + 2034: 20,-1 + 2035: 19,-1 + 2036: 18,-1 + 2041: 39,13 + 2042: 40,13 + 2043: 41,13 + 2044: 42,13 + 2045: 43,13 + 2046: 44,13 + 2047: 45,13 + 2048: 46,13 + 2049: 47,13 + 2510: 40,-1 + 2511: 41,-1 + 2512: 41,-2 + - node: + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale270 + decals: + 780: 24,-25 + 781: 24,-24 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale270 + decals: + 42: 36,16 + 43: 35,17 + 69: 33,28 + 82: 32,23 + 101: 36,31 + - node: + color: '#EFCC2E82' + id: QuarterTileOverlayGreyscale270 + decals: + 756: 25,-25 + 757: 25,-24 + 758: 25,-23 + 759: 25,-22 + 760: 25,-21 + 761: 25,-20 + 762: 25,-19 + 763: 25,-18 + 764: 25,-17 + 765: 25,-16 + 766: 25,-15 + 767: 25,-14 + - node: + color: '#EFCC4193' + id: QuarterTileOverlayGreyscale270 + decals: + 341: 17,-29 + - node: + color: '#EFCC4593' + id: QuarterTileOverlayGreyscale270 + decals: + 788: 20,-20 + 789: 20,-19 + 790: 20,-18 + 791: 20,-17 + 792: 20,-16 + - node: + color: '#F9801DFF' + id: QuarterTileOverlayGreyscale270 + decals: + 2562: 105,-17 + 2563: 104,-17 + 2564: 107,-18 + 2565: 106,-20 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale90 + decals: + 221: 26,39 + 222: 26,40 + 223: 26,41 + 224: 26,42 + - node: + color: '#797C8250' + id: QuarterTileOverlayGreyscale90 + decals: + 2189: 64,16 + 2190: 64,16 + 2191: 63,16 + 2192: 63,16 + 2193: 62,16 + 2194: 62,16 + 2205: 60,25 + 2206: 60,25 + 2207: 59,25 + 2208: 59,25 + 2209: 58,25 + 2210: 58,25 + 2211: 57,25 + 2212: 57,25 + 2213: 56,25 + 2214: 56,25 + 2215: 55,25 + 2216: 55,25 + 2217: 54,25 + 2218: 54,25 + - node: + color: '#8932B8FF' + id: QuarterTileOverlayGreyscale90 + decals: + 2570: 105,-20 + 2571: 102,-16 + 2572: 107,-18 + 2573: 105,-18 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale90 + decals: + 2361: 78,2 + 2452: 53,3 + 2470: 67,2 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + decals: + 194: 9,15 + 1255: 13,25 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale90 + decals: + 2574: 104,-19 + 2575: 104,-16 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale90 + decals: + 942: 8,10 + 943: 9,10 + 944: 10,10 + 945: 11,10 + 946: 12,10 + 947: 13,10 + 948: 14,10 + 949: 15,10 + 950: 16,10 + 951: 17,10 + 952: 18,10 + 953: 19,10 + 973: 19,12 + 974: 20,12 + 975: 21,12 + 1715: 28,15 + 1716: 29,15 + 1717: 30,15 + 1718: 31,15 + 1719: 32,15 + 1720: 33,15 + 1721: 34,15 + 1722: 35,15 + 1723: 36,15 + 1724: 37,15 + 1773: 25,37 + 1774: 24,37 + 1775: 23,37 + 1776: 22,37 + 1777: 21,37 + 1778: 20,37 + 1779: 19,37 + 1780: 18,37 + 1781: 17,37 + 1960: 16,1 + 1961: 15,1 + 1962: 14,1 + 1963: 13,1 + 1964: 12,1 + 1965: 11,1 + 1966: 10,1 + 1967: 9,1 + 1968: 8,1 + 1969: 7,1 + 1970: 6,1 + 1971: 6,2 + 1972: 6,3 + 1973: 6,4 + 1974: 6,5 + 1975: 6,7 + 1976: 6,6 + 1977: 6,8 + 1978: 6,11 + 1979: 6,12 + 1980: 6,13 + 2002: 27,3 + 2003: 27,2 + 2004: 27,1 + 2005: 28,1 + 2006: 29,1 + 2007: 30,1 + 2008: 31,1 + 2009: 32,1 + 2010: 33,1 + 2011: 34,1 + 2012: 35,1 + 2013: 36,1 + 2014: 37,1 + 2015: 38,1 + 2072: 42,3 + 2073: 42,4 + 2074: 42,5 + 2075: 42,6 + 2076: 42,7 + 2077: 42,8 + 2078: 42,9 + 2079: 42,10 + 2080: 42,11 + 2503: 47,0 + 2504: 46,0 + 2505: 45,0 + 2506: 44,0 + 2507: 43,0 + 2508: 42,0 + 2509: 42,1 + - node: + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale90 + decals: + 782: 28,-25 + 783: 28,-24 + 1145: -7,0 + 1146: -6,0 + 1147: -2,0 + 1148: -1,0 + 1149: 0,0 + 1150: 1,0 + 1151: 2,0 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + decals: + 45: 36,21 + 55: 34,28 + 59: 32,30 + 98: 37,30 + 177: 35,24 + 1636: 41,24 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale90 + decals: + 2532: 107,-19 + 2533: 105,-19 + 2534: 103,-18 + 2535: 103,-19 + 2536: 104,-20 + 2537: 107,-17 + 2538: 104,-17 + 2539: 103,-17 + 2540: 106,-19 + - node: + color: '#EFCC4193' + id: QuarterTileOverlayGreyscale90 + decals: + 314: 22,-36 + 318: 18,-35 + 359: 22,-27 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Remains + decals: + 2515: 11,-11 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign1 + decals: + 1042: 23,0 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign2 + decals: + 1041: 24,0 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign3 + decals: + 1040: 25,0 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign4 + decals: + 1036: 26,0 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign5 + decals: + 1037: 27,0 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign6 + decals: + 1038: 28,0 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign7 + decals: + 1039: 29,0 + - node: + color: '#FED83DFF' + id: StandClear + decals: + 9: 12,-28 + 10: 12,-27 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 1137: -6,-17 + 1414: 8,29 + 1415: 9,29 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale + decals: + 2455: 49,4 + 2487: 70,8 + - node: + color: '#9FED5847' + id: ThreeQuarterTileOverlayGreyscale + decals: + 1746: 29,47 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale + decals: + 2263: 76,-4 + 2360: 76,5 + 2454: 52,4 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale + decals: + 1234: 7,28 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale + decals: + 2118: 47,11 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale + decals: + 1043: 25,-4 + - node: + color: '#DE3A3A47' + id: ThreeQuarterTileOverlayGreyscale + decals: + 1764: 22,47 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale + decals: + 1189: -3,-4 + - node: + color: '#EFB34128' + id: ThreeQuarterTileOverlayGreyscale + decals: + 1765: 19,46 + - node: + color: '#EFCC4193' + id: ThreeQuarterTileOverlayGreyscale + decals: + 312: 30,-35 + 330: 15,-34 + 349: 13,-24 + - node: + color: '#EFCC4582' + id: ThreeQuarterTileOverlayGreyscale + decals: + 482: 19,-39 + - node: + color: '#34A2C0B2' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 955: 19,5 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 1813: 51,1 + 2434: 57,-8 + 2489: 75,7 + 2490: 74,4 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 2256: 82,-8 + 2387: 69,0 + 2399: 62,-8 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 1237: 15,20 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 1048: 27,-2 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 1191: -1,-6 + 1657: 27,25 + - node: + color: '#EFCC2E82' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 755: 27,-26 + - node: + color: '#EFCC4193' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 367: 23,-29 + - node: + color: '#EFCC4582' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 479: 23,-44 + - node: + color: '#34A2C0B2' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 954: 18,5 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 1811: 49,1 + 2433: 55,-8 + 2483: 70,4 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 2247: 76,-6 + 2260: 78,-8 + 2349: 52,2 + 2401: 59,-8 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 1235: 7,21 + 1236: 13,20 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 1047: 25,-2 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 1190: -3,-6 + - node: + color: '#EFCC2E82' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 754: 25,-26 + - node: + color: '#EFCC4193' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 331: 15,-37 + 346: 13,-29 + - node: + color: '#EFCC4582' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 480: 19,-44 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 2456: 51,4 + 2488: 75,8 + - node: + color: '#9FED5847' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 1747: 32,47 + 1748: 35,46 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 1808: 52,0 + 2252: 82,-4 + 2359: 78,5 + 2448: 58,3 + 2453: 53,4 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 1238: 15,25 + 1239: 13,28 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 1044: 27,-4 + - node: + color: '#DE3A3A47' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 1761: 25,47 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 1188: -1,-4 + 1656: 27,22 + - node: + color: '#EFCC4193' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 315: 22,-35 + 358: 22,-24 + 363: 23,-27 + - node: + color: '#EFCC4582' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 481: 23,-39 + - node: + color: '#FFFFFFFF' + id: VentSmall + decals: + 1830: 23,-12 + 1831: 26,-8 + 1832: 30,-11 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarnCorner + decals: + 211: 3,-33 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: WarnCorner + decals: + 210: 3,-30 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: WarnCornerFlipped + decals: + 206: 2,-30 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: WarnCornerFlipped + decals: + 207: 2,-33 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 1632: 40,27 + 2294: 57,-14 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 236: 55,10 + 247: 49,9 + 1631: 39,27 + 2293: 54,-14 + 2625: 36,-44 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 1630: 40,26 + 2291: 57,-16 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 1633: 39,26 + 2292: 54,-16 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleNE + decals: + 1935: 9,-7 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleSE + decals: + 1936: 9,-8 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 1413: 7,28 + 1642: 38,24 + 1665: 27,21 + 2606: 39,-49 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 237: 55,9 + 1412: 10,28 + 1641: 41,24 + 2605: 41,-49 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 1136: -7,-15 + 1664: 27,26 + 2608: 39,-45 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 2607: 41,-45 + - node: + color: '#FFFFFFFF' + id: WarnFull + decals: + 1639: 40,25 + 1640: 39,25 + 2287: 77,0 + 2290: 77,-3 + - node: + color: '#52B4E996' + id: WarnFullGreyscale + decals: + 2481: 71,3 + - node: + color: '#D381C996' + id: WarnFullGreyscale + decals: + 2140: 57,18 + - node: + color: '#FFFFFFFF' + id: WarnFullGreyscale + decals: + 402: 14,-35 + 451: 31,-38 + 452: 32,-38 + 486: 24,-40 + 487: 18,-40 + 1052: 28,-29 + 1053: 24,-29 + 1054: 31,-30 + 1055: 31,-34 + 1056: 26,-35 + 1057: 21,-34 + 1058: 21,-30 + 1262: 12,29 + 1266: 8,20 + 2471: 61,-9 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 1660: 27,22 + 1661: 27,23 + 1662: 27,24 + 1663: 27,25 + 2296: 57,-15 + 2602: 39,-48 + 2603: 39,-46 + 2604: 39,-47 + - node: + color: '#9FED5896' + id: WarnLineGreyscaleE + decals: + 2406: 62,-6 + - node: + color: '#D381C996' + id: WarnLineGreyscaleE + decals: + 2139: 56,18 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleE + decals: + 380: 27,-29 + 401: 13,-35 + 484: 23,-40 + 489: 17,-40 + 1520: 24,20 + 1521: 24,21 + 1522: 24,23 + 1523: 24,22 + 1524: 24,24 + 1525: 24,25 + 1930: 9,-9 + 1931: 9,-10 + 1932: 9,-6 + 1933: 9,-5 + 1934: 9,-4 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleN + decals: + 2412: 61,0 + 2413: 60,0 + 2414: 58,0 + 2415: 57,0 + 2480: 71,2 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleN + decals: + 375: 26,-36 + 376: 31,-35 + 377: 21,-35 + 378: 26,-28 + 453: 32,-39 + 454: 31,-39 + 485: 21,-39 + 1263: 12,28 + 1265: 8,19 + 1924: 10,-7 + 1925: 11,-7 + 1926: 12,-7 + 2408: 59,-4 + 2409: 60,-4 + 2410: 61,-4 + 2411: 62,-4 + 2442: 57,-4 + 2443: 56,-4 + 2444: 55,-4 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleS + decals: + 2416: 61,-2 + 2417: 60,-2 + 2418: 58,-2 + 2419: 57,-2 + 2420: 59,-2 + 2439: 56,-8 + - node: + color: '#9FED5896' + id: WarnLineGreyscaleS + decals: + 2384: 77,1 + 2385: 72,1 + 2405: 61,-8 + 2407: 65,0 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleS + decals: + 381: 21,-29 + 382: 31,-37 + 383: 32,-37 + 733: 38,-37 + 734: 39,-37 + 735: 40,-37 + 858: 42,-8 + 1264: 14,20 + 1843: 8,21 + 1927: 12,-8 + 1928: 11,-8 + 1929: 10,-8 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleW + decals: + 2437: 55,-7 + 2438: 55,-5 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleW + decals: + 379: 25,-29 + 384: 15,-35 + 386: 13,-28 + 387: 13,-27 + 483: 19,-40 + 488: 25,-40 + 499: 16,-42 + 859: 41,-4 + 1937: 8,-5 + 1938: 8,-4 + 1939: 8,-6 + 1940: 8,-7 + 1941: 8,-8 + 1942: 8,-9 + 1943: 8,-10 + 2500: 69,0 + 2501: 69,1 + 2502: 69,2 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 1135: -6,-15 + 2090: 51,13 + 2091: 50,13 + 2092: 49,13 + 2288: 78,-2 + 2289: 77,-2 + 2297: 56,-16 + 2298: 55,-16 + 2423: 61,-2 + 2424: 60,-2 + 2425: 59,-2 + 2426: 58,-2 + 2427: 57,-2 + 2597: 40,-45 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 2295: 54,-15 + 2598: 41,-46 + 2599: 41,-47 + 2600: 41,-48 + 2614: 46,-49 + 2615: 46,-48 + 2616: 46,-47 + 2617: 46,-46 + 2618: 46,-45 + 2634: 36,-49 + 2635: 36,-48 + 2636: 36,-47 + 2637: 36,-46 + 2638: 36,-45 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 218: 13,37 + 219: 14,37 + 220: 15,37 + 232: 19,41 + 233: 18,41 + 234: 17,41 + 238: 54,9 + 239: 53,9 + 240: 52,9 + 245: 51,9 + 246: 50,9 + 799: 22,-16 + 800: 21,-16 + 801: 20,-16 + 1410: 8,28 + 1411: 9,28 + 1637: 40,24 + 1638: 39,24 + 2093: 51,15 + 2094: 50,15 + 2095: 49,15 + 2285: 77,-1 + 2286: 78,-1 + 2299: 56,-14 + 2300: 55,-14 + 2428: 61,0 + 2429: 60,0 + 2430: 59,0 + 2431: 58,0 + 2432: 57,0 + 2601: 40,-49 + 2626: 37,-44 + 2627: 38,-44 + 2628: 39,-44 + 2629: 40,-44 + 2630: 41,-44 + 2631: 42,-44 + 2632: 44,-44 + 2633: 43,-44 + - node: + color: '#FED83DFF' + id: WarningLine + decals: + 0: 19,-37 + 1: 20,-37 + 2: 21,-37 + 3: 22,-37 + 4: 23,-37 + 5: 18,-37 + 6: 24,-37 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + decals: + 175: 36,21 + 176: 36,22 + 181: 36,23 + 182: 36,24 + 212: 3,-32 + 213: 3,-31 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: WarningLine + decals: + 208: 2,-32 + 209: 2,-31 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 1903: 20,-3 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 1901: 18,-3 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 1906: 20,-6 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 1898: 18,-6 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 832: 40,-13 + 833: 40,-12 + 834: 40,-11 + 835: 40,-10 + 1822: 21,-13 + 1823: 21,-12 + 1824: 21,-11 + 1825: 21,-10 + 1904: 20,-4 + 1905: 20,-5 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 1139: -2,-11 + 1140: -3,-11 + 1141: -4,-11 + 1902: 19,-3 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 1907: 19,-6 + 2643: 36,43 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 828: 38,-13 + 829: 38,-12 + 830: 38,-11 + 831: 38,-10 + 1899: 18,-5 + 1900: 18,-4 + - node: + cleanable: True + angle: -4.71238898038469 rad + color: '#00000060' + id: footprint + decals: + 1319: 8.005591,29.808443 + 1320: 8.443091,30.551498 + 1321: 7.7903137,30.363998 + 1322: 7.5403137,30.107054 + 1323: 6.6653137,30.752888 + 1324: 7.7486477,31.218166 + 1325: 7.929203,31.732056 + 1326: 8.665314,31.08622 + 1327: 7.4153137,31.32233 + 1328: 8.116703,30.454277 + 1329: 8.651425,31.044556 + 1339: 7.8406677,26.12399 + 1340: 8.559418,25.93649 + 1341: 8.918793,26.452114 + 1342: 7.8875427,25.56149 + - node: + cleanable: True + angle: -3.141592653589793 rad + color: '#00000060' + id: footprint + decals: + 1330: 7.9222584,30.25727 + 1331: 8.206981,29.875326 + 1332: 8.054203,29.31977 + 1333: 8.387536,28.916994 + 1334: 8.068091,28.375326 + 1335: 8.401425,28.000326 + 1336: 8.165314,27.666994 + 1337: 8.540314,27.41005 + 1338: 9.262536,27.312826 + - node: + angle: -1.5707963267948966 rad + color: '#00000060' + id: footprint + decals: + 1455: 8.091304,16.603054 + 1456: 8.320471,16.964165 + 1457: 7.820471,17.39472 + 1458: 8.362137,16.922499 + 1459: 8.091304,17.797499 + 1460: 8.132971,18.061386 + 1461: 7.834359,18.25583 + 1462: 8.382971,18.450275 + 1463: 8.445471,17.83222 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#00000060' + id: footprint + decals: + 1308: 6.5194807,30.009832 + 1309: 6.887536,30.565388 + 1310: 7.1514254,30.093164 + 1311: 7.5194807,30.676498 + 1312: 8.200036,30.113998 + 1313: 8.422258,30.940388 + 1314: 9.026425,30.315388 + 1315: 6.450036,31.676498 + 1316: 7.241703,31.891777 + 1317: 8.130591,31.03761 + 1318: 7.026425,31.35011 + 1343: 11.25042,22.296373 + 1344: 12.234795,21.765123 + 1345: 12.703545,22.343248 + 1346: 13.734795,21.671373 + 1347: 14.53167,22.202623 + 1348: 14.93792,21.390123 + - node: + color: '#00000060' + id: footprint + decals: + 1472: 8.546305,22.79264 + 1473: 10.350877,23.736956 + - node: + cleanable: True + color: '#00000060' + id: footprint + decals: + 1298: 8.831981,27.987852 + 1299: 9.005591,28.265629 + 1300: 8.769481,28.494795 + 1301: 9.054203,28.842018 + 1302: 8.755591,29.147573 + 1303: 9.109758,29.473963 + 1304: 8.762536,29.828129 + 1305: 9.088925,30.078129 + 1306: 8.755591,30.522573 + 1307: 9.081981,30.522573 + 1357: 13.708358,19.952623 + 1358: 14.145858,20.890123 + 1359: 13.630233,21.452623 + 1360: 13.739608,20.593248 + 1361: 14.130233,20.265123 + 1362: 13.661483,21.890123 + 1363: 14.036483,22.343248 + 1364: 13.458358,23.327623 + 1365: 14.020858,23.452623 + 1366: 14.005233,24.218248 + 1367: 13.645858,22.858873 + 1436: 7.237137,16.09611 + 1437: 7.7232485,16.464165 + 1438: 7.362137,16.915554 + 1439: 7.917693,17.665554 + 1440: 7.521859,18.13083 + 1441: 7.980193,18.56833 + 1442: 7.882971,19.109999 + 1474: 10.046046,23.44008 + 1475: 7.2491713,26.34633 + 1476: 8.389796,26.674456 + 1477: 13.452296,20.69008 + 1478: 13.467921,21.31508 + 1479: 8.999171,26.4967 + 1480: 8.046046,27.90295 + 1481: 8.624171,27.59045 + 1482: 8.983546,28.09045 + 1483: 8.608546,29.3092 + - node: + angle: 1.5707963267948966 rad + color: '#00000060' + id: footprint + decals: + 1464: 7.966304,16.290554 + 1465: 7.626026,15.89472 + 1466: 6.952415,16.39472 + 1467: 6.9801927,15.866943 + 1468: 6.834359,17.01972 + 1469: 6.876026,17.748886 + 1470: 7.542693,18.01972 + 1471: 7.709359,19.228054 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#00000060' + id: footprint + decals: + 1349: 14.972425,21.077623 + 1350: 14.316175,21.655748 + 1351: 13.8318,21.202623 + 1352: 13.003675,21.843248 + 1353: 12.534925,21.390123 + 1354: 11.6443,21.843248 + 1355: 10.972425,21.468248 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#00000060' + id: footprint + decals: + 1443: 6.8551927,16.728054 + 1444: 7.570471,17.200275 + 1445: 7.1607485,17.623886 + 1446: 8.2649145,17.76972 + 1447: 7.7857485,18.45722 + 1448: 8.2440815,18.929443 + 1449: 8.2232485,18.65861 + 1450: 8.132971,18.03361 + 1451: 7.292692,18.554443 + 1452: 7.8274145,17.075275 + 1453: 7.167692,16.964165 + 1454: 7.4732485,16.31833 + - node: + cleanable: True + angle: 6.283185307179586 rad + color: '#00000060' + id: footprint + decals: + 1356: 7.894642,22.655748 + - node: + cleanable: True + color: '#0000065D' + id: footprint + decals: + 1857: 8.153207,20.861673 + 1858: 8.434457,21.127298 + 1859: 8.215707,21.486673 + 1860: 8.512582,21.892923 + 1861: 8.309457,22.142923 + 1862: 8.731332,22.627298 + 1863: 8.496957,23.517923 + 1864: 8.262582,24.096048 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#0000065D' + id: footprint + decals: + 1879: 9.684457,21.892923 + 1880: 8.856332,22.736673 + 1881: 8.856332,22.721048 + 1882: 10.309457,22.674173 + 1883: 11.246957,22.017923 + 1884: 10.028207,22.033548 + 1885: 10.215707,22.627298 + 1886: 9.262582,22.174173 + 1887: 9.106332,22.221048 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#0000065D' + id: footprint + decals: + 1865: 7.856332,21.033548 + 1866: 8.215707,21.408548 + 1867: 7.950082,21.892923 + 1868: 8.762582,22.283548 + 1869: 8.293832,23.142923 + 1870: 8.965707,23.392923 + - node: + cleanable: True + angle: 4.71238898038469 rad + color: '#0000065D' + id: footprint + decals: + 1871: 8.762582,21.236673 + 1872: 9.184457,21.986673 + 1873: 9.731332,21.486673 + 1874: 9.762582,22.346048 + 1875: 10.543832,21.799173 + 1876: 10.918832,22.111673 + 1877: 11.606332,21.705423 + 1878: 12.215707,22.096048 + - node: + cleanable: True + angle: -4.71238898038469 rad + color: '#47422E3E' + id: footprint + decals: + 606: 20.73215,-33.21596 + 607: 20.810274,-32.762836 + 608: 21.0759,-33.02846 + 609: 20.904024,-32.09096 + 610: 20.685274,-31.528461 + 611: 21.2634,-31.528461 + 612: 20.622774,-31.559711 + 613: 21.2009,-32.450336 + 614: 20.997774,-31.825336 + - node: + cleanable: True + angle: -3.141592653589793 rad + color: '#47422E3E' + id: footprint + decals: + 643: 18.380388,-29.024849 + 644: 18.271013,-28.618599 + 645: 19.052263,-28.993599 + - node: + angle: -1.5707963267948966 rad + color: '#47422E3E' + id: footprint + decals: + 540: 18.842302,-40.29173 + 541: 19.203413,-39.833397 + 542: 19.627026,-40.31256 + 543: 20.231192,-39.784786 + 544: 20.363136,-40.22923 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#47422E3E' + id: footprint + decals: + 599: 31.110344,-32.87221 + 600: 30.782219,-32.387836 + 601: 30.672844,-32.825336 + 602: 29.954094,-32.356586 + 603: 29.922844,-32.93471 + 604: 29.204094,-32.37221 + 605: 29.235344,-33.044086 + 646: 19.366499,-28.623808 + 647: 18.387333,-29.09603 + 648: 18.706778,-28.734919 + 649: 19.366499,-29.075195 + 650: 19.838722,-28.554363 + 651: 20.41511,-28.866863 + 652: 20.310944,-28.255753 + 653: 21.019278,-28.776585 + 654: 21.470667,-28.387695 + 655: 21.998444,-28.922419 + 656: 22.352612,-28.540474 + 657: 22.92456,-29.193253 + 658: 23.306505,-28.811308 + 689: 14.771467,-35.430984 + 690: 15.127949,-35.1208 + 691: 15.553875,-35.36617 + 692: 16.271467,-34.86154 + 693: 16.544615,-35.22728 + 694: 17.183504,-34.74117 + 695: 17.502949,-35.222652 + 718: 26.49693,-36.713375 + 719: 27.137554,-36.369625 + 720: 27.46568,-36.69775 + 721: 28.02818,-36.275875 + 722: 28.668804,-36.588375 + 723: 29.15318,-36.088375 + 724: 29.856304,-36.604 + 725: 30.325054,-36.104 + 726: 30.856304,-36.604 + 727: 21.875406,-36.6665 + 728: 22.328531,-36.1665 + 729: 23.266031,-36.604 + 730: 23.500406,-36.119625 + 731: 24.422281,-36.463375 + 732: 25.219156,-36.400875 + - node: + color: '#47422E3E' + id: footprint + decals: + 545: 20.606192,-39.257008 + 546: 21.106192,-38.76395 + 547: 20.752026,-38.722286 + 548: 21.085358,-39.21534 + 549: 20.606192,-39.21534 + 550: 19.078413,-40.36812 + 551: 16.110773,-41.92628 + 552: 16.312162,-40.836002 + 553: 15.944107,-40.405445 + 554: 16.944107,-39.80128 + 555: 17.013552,-41.03739 + 556: 16.124662,-41.55128 + 557: 16.194107,-40.780445 + 558: 16.582996,-40.947113 + 559: 16.763552,-40.342945 + 572: 21.153759,-38.723778 + 573: 20.771816,-38.58489 + 574: 21.077372,-38.26544 + 575: 20.730148,-37.89044 + 576: 21.209316,-37.64739 + 577: 21.056538,-37.286278 + 578: 21.227804,-36.8777 + 579: 20.790304,-36.912422 + 580: 20.873638,-36.572144 + - node: + cleanable: True + color: '#47422E3E' + id: footprint + decals: + 581: 20.741693,-37.148533 + 582: 21.08197,-36.669365 + 583: 21.352804,-37.419365 + 584: 20.998638,-37.009644 + 585: 20.53336,-36.822144 + 586: 21.276415,-36.558254 + 587: 21.200026,-36.23881 + 588: 20.727804,-36.07909 + 589: 20.838915,-35.481865 + 590: 20.991693,-35.842976 + 591: 21.262526,-35.099922 + 592: 25.855373,-34.212444 + 593: 26.214748,-34.056194 + 594: 25.964748,-33.868694 + 595: 26.402248,-33.54057 + 596: 25.995998,-33.337444 + 597: 25.995998,-32.72807 + 598: 26.433498,-32.88432 + 615: 21.16965,-32.87221 + 616: 21.216524,-32.262836 + 617: 20.8259,-31.512836 + 618: 21.23215,-31.059711 + 619: 30.827486,-32.65346 + 620: 31.030611,-32.044086 + 621: 31.233734,-31.387836 + 622: 31.046236,-30.919086 + 623: 30.874361,-30.903461 + 624: 30.796236,-31.653461 + 625: 30.702486,-31.387836 + 626: 21.688553,-32.68471 + 627: 17.800251,-34.731586 + 628: 17.409626,-33.87221 + 629: 17.925251,-33.075336 + 630: 17.409626,-32.606586 + 631: 18.050251,-31.887836 + 632: 17.534626,-31.450336 + 633: 30.89618,-34.87221 + 634: 30.818054,-33.231586 + 635: 31.474304,-32.606586 + 636: 31.17743,-32.106586 + 637: 21.083513,-29.290474 + 638: 20.739763,-28.759224 + 639: 21.536638,-27.946724 + 640: 20.599138,-27.556099 + 641: 21.349138,-26.587349 + 642: 20.724138,-25.931099 + - node: + angle: 1.5707963267948966 rad + color: '#47422E3E' + id: footprint + decals: + 564: 17.188082,-40.308224 + 565: 16.083914,-42.09989 + 566: 15.889469,-41.794334 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#47422E3E' + id: footprint + decals: + 696: 17.516838,-35.393948 + 697: 16.8548,-34.912464 + 698: 16.808504,-35.310616 + 699: 15.9103565,-34.88006 + 700: 15.822393,-35.71339 + 701: 14.984429,-35.2458 + 702: 15.961281,-35.704132 + 703: 16.516838,-35.61617 + 704: 16.276096,-34.875427 + 705: 17.178875,-34.60228 + 706: 17.512207,-34.14858 + 707: 17.164986,-35.583763 + 708: 18.735516,-36.577396 + 709: 18.00114,-35.858646 + 710: 19.15739,-36.421146 + 711: 19.90739,-36.858646 + 712: 20.079266,-36.608646 + 713: 18.78239,-35.983646 + 714: 19.25114,-36.702396 + 715: 20.266766,-36.03052 + 716: 21.485516,-36.56177 + 717: 20.25114,-36.514896 + - node: + angle: 3.141592653589793 rad + color: '#47422E3E' + id: footprint + decals: + 560: 16.563082,-41.80128 + 561: 16.215858,-41.66239 + 562: 16.806137,-40.704056 + 563: 17.250582,-39.947113 + - node: + angle: 4.71238898038469 rad + color: '#47422E3E' + id: footprint + decals: + 567: 17.215858,-40.42628 + 568: 17.188082,-40.572113 + 569: 17.097803,-39.933224 + 570: 16.792248,-40.336002 + 571: 16.632524,-39.933224 + - node: + angle: -4.71238898038469 rad + color: '#47422E8B' + id: footprint + decals: + 536: 19.2243,-40.044228 + 537: 19.432632,-39.67386 + 538: 19.872448,-39.76645 + 539: 20.455782,-39.363674 + - node: + angle: -3.141592653589793 rad + color: '#47422E8B' + id: footprint + decals: + 532: 16.144655,-41.73583 + 533: 16.436321,-41.476566 + 534: 16.311321,-41.008976 + 535: 16.644655,-40.768234 + - node: + color: '#FFFFFFFF' + id: ghost + decals: + 2513: 13,-11 + - node: + color: '#D4D4D428' + id: guy + decals: + 2514: 40,-19 + - node: + cleanable: True + color: '#DE3A3A12' + id: splatter + decals: + 900: 30.439373,-12.749766 + 901: 30.454998,-12.437266 + 902: 30.751873,-12.421641 + 903: 31.048748,-12.843516 + 904: 30.501873,-12.812266 + 905: 30.361248,-12.640391 + 906: 30.376873,-13.031016 + 907: 30.611248,-12.562266 + 908: 30.908123,-12.390391 + 909: 31.142498,-12.093516 + 910: 30.658123,-11.812266 + 911: 30.454998,-11.890391 + 912: 30.439373,-12.327891 + 913: 30.361248,-12.577891 + 914: 30.017498,-12.343516 + 915: 29.861248,-11.921641 + 916: 30.376873,-11.343516 + 917: 30.876873,-11.531016 + - node: + cleanable: True + color: '#DE3A3A22' + id: splatter + decals: + 918: 30.736248,-12.531016 + 919: 29.954998,-11.531016 + 920: 29.470623,-11.749766 + - node: + cleanable: True + color: '#DE3A3A34' + id: splatter + decals: + 2318: 55.674343,-15.3125925 + 2319: 55.455593,-15.1407175 + 2320: 55.830593,-14.9219675 + 2321: 56.018093,-15.0313425 + 2322: 56.205593,-15.2969675 + 2323: 55.65872,-15.3594675 + 2324: 55.50247,-15.4375925 + 2325: 55.861843,-15.3125925 + 2326: 55.893093,-15.3125925 + 2327: 55.68997,-15.3282175 + 2328: 55.75247,-15.1407175 + 2329: 56.12747,-15.1563425 + 2330: 55.40872,-15.7813425 + 2331: 55.34622,-15.6719675 + 2332: 55.111843,-15.8438425 + 2333: 55.09622,-16.531342 + 2334: 55.174343,-14.3750925 + 2335: 55.549343,-14.7657175 + 2336: 56.455593,-14.1563425 + 2337: 57.111843,-16.250092 + type: DecalGrid + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - type: GasTileOverlay + - type: RadiationGridResistance + - type: SpreaderGrid + - uid: 126 + components: + - type: MetaData + - type: Transform + - type: Map + - type: PhysicsMap + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - type: GridTree + - type: MovedGrids +- proto: AccordionInstrument + entities: + - uid: 5749 + components: + - pos: 49.5,-10.5 + parent: 2 + type: Transform +- proto: AirAlarm + entities: + - uid: 138 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,13.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 4027 + - 4092 + type: DeviceNetwork + - devices: + - 4027 + - 4092 + type: DeviceList + - uid: 151 + components: + - pos: 56.5,16.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10418 + - 10417 + - 10416 + - 12554 + - 10358 + - 10403 + type: DeviceNetwork + - devices: + - 10418 + - 10417 + - 10416 + - 12554 + - 10358 + - 10403 + type: DeviceList + - uid: 170 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-41.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 4460 + - 4447 + type: DeviceNetwork + - devices: + - 4460 + - 4447 + type: DeviceList + - uid: 182 + components: + - pos: 67.5,17.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12564 + - 10347 + - 10400 + type: DeviceNetwork + - devices: + - 12564 + - 10347 + - 10400 + type: DeviceList + - uid: 195 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 6949 + - 4035 + type: DeviceNetwork + - devices: + - 6949 + - 4035 + type: DeviceList + - uid: 360 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1514 + - 742 + - 873 + - 554 + - 558 + - 6638 + - 6622 + - 6609 + type: DeviceNetwork + - devices: + - 6641 + - 6644 + - 6643 + - 6642 + - 6636 + - 1514 + - 742 + - 873 + - 554 + - 558 + - 1511 + - 1515 + - 1513 + - 6629 + - 6627 + - 6638 + - 6622 + - 6609 + type: DeviceList + - uid: 1017 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-33.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 5657 + - 5656 + - 1018 + - 169 + - 1024 + - 5684 + - 1305 + - 1625 + type: DeviceNetwork + - devices: + - 5657 + - 5656 + - 1018 + - 169 + - 1024 + - 5684 + - 1305 + - 1625 + type: DeviceList + - uid: 1520 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-15.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1560 + type: DeviceNetwork + - devices: + - 1560 + type: DeviceList + - uid: 1647 + components: + - pos: 53.5,26.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10413 + - 10414 + - 10415 + - 10412 + - 12559 + - 10352 + type: DeviceNetwork + - devices: + - 10413 + - 10414 + - 10415 + - 10412 + - 12559 + - 10352 + type: DeviceList + - uid: 2124 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 7748 + - 7747 + - 7746 + - 102 + - 7749 + - 7750 + - 2125 + - 7740 + - 7895 + - 6854 + - 7663 + - 7889 + - 131 + - 7950 + - 7837 + - 7838 + type: DeviceNetwork + - devices: + - 7748 + - 7747 + - 7746 + - 102 + - 7749 + - 7750 + - 2125 + - 7740 + - 7895 + - 6854 + - 7663 + - 7889 + - 131 + - 7950 + - 7837 + - 7838 + type: DeviceList + - uid: 2296 + components: + - rot: -1.5707963267948966 rad + pos: 61.5,20.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10416 + - 10417 + - 10418 + - 185 + - 10413 + - 10414 + - 10415 + - 10356 + - 10375 + type: DeviceNetwork + - devices: + - 10416 + - 10417 + - 10418 + - 185 + - 10413 + - 10414 + - 10415 + - 10356 + - 10375 + type: DeviceList + - uid: 5020 + components: + - pos: 33.5,2.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 6800 + - 6799 + - 6790 + - 6801 + - 6802 + - 6803 + - 8317 + - 253 + - 7709 + - 2315 + - 7938 + - 8003 + - 8004 + - 6644 + - 6641 + - 6642 + - 6643 + - 5144 + - 4919 + - 7011 + - 6621 + - 6620 + type: DeviceNetwork + - devices: + - 6800 + - 6799 + - 6790 + - 6801 + - 6802 + - 6803 + - 8317 + - 253 + - 7709 + - 2315 + - 7938 + - 8003 + - 8004 + - 6644 + - 6641 + - 6642 + - 6643 + - 5144 + - 4919 + - 7011 + - 6621 + - 6620 + type: DeviceList + - uid: 5101 + components: + - rot: 3.141592653589793 rad + pos: 48.5,8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10402 + - 10331 + type: DeviceNetwork + - devices: + - 10402 + - 10331 + type: DeviceList + - uid: 5680 + components: + - pos: 11.5,-32.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 5679 + - 5678 + type: DeviceNetwork + - devices: + - 5679 + - 5678 + type: DeviceList + - uid: 6158 + components: + - pos: 13.5,6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 5968 + - 5964 + type: DeviceNetwork + - devices: + - 5968 + - 5964 + type: DeviceList + - uid: 6632 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-13.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1511 + - 1515 + - 1513 + - 6645 + - 6637 + - 6608 + - 6610 + - 6593 + - 6595 + type: DeviceNetwork + - devices: + - 1511 + - 1515 + - 1513 + - 6645 + - 6637 + - 6608 + - 6610 + - 6593 + - 6595 + type: DeviceList + - uid: 6682 + components: + - rot: 3.141592653589793 rad + pos: 41.5,-8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 6523 + - 1510 + - 6509 + - 6568 + - 12077 + - 6684 + - 6570 + - 6571 + type: DeviceNetwork + - devices: + - 6523 + - 1510 + - 6509 + - 6568 + - 12077 + - 6684 + - 6570 + - 6571 + type: DeviceList + - uid: 7839 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-15.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 7748 + - 7747 + - 7746 + - 102 + - 7749 + - 7750 + - 7843 + - 7472 + - 7469 + type: DeviceNetwork + - devices: + - 7748 + - 7747 + - 7746 + - 102 + - 7749 + - 7750 + - 7843 + - 7472 + - 7469 + type: DeviceList + - uid: 8011 + components: + - pos: 8.5,2.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 8004 + - 8003 + - 7938 + - 2315 + - 7709 + - 253 + - 7950 + - 131 + - 7889 + - 7663 + - 6854 + - 7895 + - 8008 + - 36 + - 6952 + - 11244 + - 11245 + - 8010 + - 8009 + - 6778 + - 7708 + type: DeviceNetwork + - devices: + - 8004 + - 8003 + - 7938 + - 2315 + - 7709 + - 253 + - 7950 + - 131 + - 7889 + - 7663 + - 6854 + - 7895 + - 8008 + - 36 + - 6952 + - 11244 + - 11245 + - 8010 + - 8009 + - 6778 + - 7708 + type: DeviceList + - uid: 8239 + components: + - pos: 14.5,26.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12522 + - 8237 + - 8238 + - 8222 + - 8229 + type: DeviceNetwork + - devices: + - 12522 + - 8237 + - 8238 + - 8222 + - 8229 + type: DeviceList + - uid: 8922 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10206 + - 10205 + type: DeviceNetwork + - devices: + - 8923 + - 6801 + - 6802 + - 6803 + - 6790 + - 6799 + - 6800 + - 6805 + - 6804 + - 10206 + - 10205 + type: DeviceList + - uid: 9587 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,31.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9586 + - 9585 + - 9584 + - 9589 + - 9570 + - 9569 + type: DeviceNetwork + - devices: + - 9586 + - 9585 + - 9584 + - 9589 + - 9570 + - 9569 + type: DeviceList + - uid: 9637 + components: + - pos: 44.5,5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9636 + - 9635 + type: DeviceNetwork + - devices: + - 9636 + - 9635 + type: DeviceList + - uid: 10201 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12459 + - 10172 + - 10180 + type: DeviceNetwork + - devices: + - 12459 + - 10172 + - 10180 + type: DeviceList + - uid: 10202 + components: + - pos: -1.5,-6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10181 + - 10178 + type: DeviceNetwork + - devices: + - 10181 + - 10178 + type: DeviceList + - uid: 10203 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10182 + - 10171 + type: DeviceNetwork + - devices: + - 10182 + - 10171 + type: DeviceList + - uid: 10204 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 8017 + - 8016 + type: DeviceNetwork + - devices: + - 8017 + - 8016 + type: DeviceList + - uid: 10207 + components: + - pos: 22.5,-8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10216 + - 10205 + - 10206 + - 10215 + - 10214 + type: DeviceNetwork + - devices: + - 10216 + - 10205 + - 10206 + - 10215 + - 10214 + type: DeviceList + - uid: 10250 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,7.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10249 + - 10248 + type: DeviceNetwork + - devices: + - 10249 + - 10248 + type: DeviceList + - uid: 10419 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,24.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10411 + - 10355 + type: DeviceNetwork + - devices: + - 10411 + - 10355 + type: DeviceList + - uid: 10653 + components: + - pos: 30.5,9.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10652 + - 10643 + type: DeviceNetwork + - devices: + - 10652 + - 10643 + type: DeviceList + - uid: 10930 + components: + - pos: 15.5,-32.5 + parent: 2 + type: Transform + - devices: + - 8659 + type: DeviceList + - uid: 11165 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,19.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9585 + - 9586 + - 9584 + type: DeviceNetwork + - devices: + - 1103 + - 1104 + - 11472 + - 11250 + - 11249 + - 11248 + - 11322 + - 11323 + - 11324 + - 12516 + - 12085 + - 8240 + - 8810 + - 8242 + - 8243 + - 9586 + - 9585 + - 9584 + type: DeviceList + - uid: 11508 + components: + - rot: 3.141592653589793 rad + pos: 52.5,-2.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11509 + - 11526 + - 11527 + - 11254 + - 11255 + - 11256 + - 11506 + - 11505 + - 6616 + - 3983 + - 2993 + - 2994 + - 11321 + - 11320 + - 11319 + - 8293 + - 8291 + - 5026 + - 5144 + - 4919 + - 7011 + - 6509 + - 6568 + - 6640 + - 6628 + type: DeviceNetwork + - devices: + - 11509 + - 11526 + - 11527 + - 11254 + - 11255 + - 11256 + - 11506 + - 11505 + - 6616 + - 3983 + - 2993 + - 2994 + - 11321 + - 11320 + - 11319 + - 8293 + - 8291 + - 5026 + - 5144 + - 4919 + - 7011 + - 6509 + - 6568 + - 6640 + - 6628 + type: DeviceList + - uid: 11730 + components: + - rot: -1.5707963267948966 rad + pos: 68.5,-5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11515 + - 11719 + type: DeviceNetwork + - devices: + - 11515 + - 11719 + type: DeviceList + - uid: 11731 + components: + - pos: 54.5,-8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 5189 + - 10128 + type: DeviceNetwork + - devices: + - 5189 + - 10128 + type: DeviceList + - uid: 11990 + components: + - pos: 23.5,-34.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1018 + - 12396 + - 5620 + - 5619 + - 5656 + - 5657 + - 5617 + - 5618 + - 831 + - 802 + - 5621 + - 5622 + - 4552 + - 4551 + type: DeviceNetwork + - devices: + - 12396 + - 5619 + - 5620 + - 1018 + - 5656 + - 5657 + - 5617 + - 5618 + - 831 + - 802 + - 5621 + - 5622 + - 4552 + - 4551 + type: DeviceList + - uid: 12152 + components: + - pos: 58.5,4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11254 + - 11255 + - 11256 + - 11506 + - 11505 + - 6616 + - 11317 + - 5176 + - 11325 + - 5188 + - 5190 + - 11332 + - 11355 + - 12158 + - 12159 + - 12161 + - 12162 + - 11938 + - 11945 + type: DeviceNetwork + - devices: + - 11254 + - 11255 + - 11256 + - 11506 + - 11505 + - 6616 + - 11317 + - 5176 + - 11325 + - 5188 + - 5190 + - 11332 + - 11355 + - 12158 + - 12159 + - 12161 + - 12162 + - 11938 + - 11945 + type: DeviceList + - uid: 12163 + components: + - pos: 75.5,3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11366 + - 11367 + - 12158 + - 12159 + - 12161 + type: DeviceNetwork + - devices: + - 11366 + - 11367 + - 12158 + - 12159 + - 12161 + type: DeviceList + - uid: 12416 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-14.5 + parent: 2 + type: Transform + - uid: 12447 + components: + - pos: 13.5,11.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 36 + - 6952 + - 11245 + - 11244 + - 12449 + - 6931 + - 6930 + - 11247 + - 11246 + - 6951 + - 6950 + type: DeviceNetwork + - devices: + - 11245 + - 11244 + - 12449 + - 36 + - 6952 + - 6931 + - 6930 + - 11247 + - 11246 + - 6951 + - 6950 + type: DeviceList + - uid: 12473 + components: + - pos: 23.5,16.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12472 + - 6928 + - 6929 + - 11264 + - 11263 + - 6930 + - 6931 + - 11246 + - 11247 + - 6927 + - 4183 + type: DeviceNetwork + - devices: + - 11247 + - 11246 + - 12472 + - 11264 + - 11263 + - 6928 + - 6929 + - 6930 + - 6931 + - 6927 + - 4183 + type: DeviceList + - uid: 12476 + components: + - pos: 31.5,16.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9352 + - 9353 + - 9351 + type: DeviceNetwork + - devices: + - 11264 + - 11263 + - 1103 + - 1104 + - 11472 + - 12475 + - 6928 + - 6929 + - 3457 + - 3458 + - 3459 + - 9359 + - 9358 + - 9351 + - 9353 + - 9352 + type: DeviceList + - uid: 12480 + components: + - pos: 36.5,10.5 + parent: 2 + type: Transform + - devices: + - 12481 + type: DeviceList + - uid: 12484 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11746 + - 8293 + - 8291 + - 5026 + - 11321 + - 11320 + - 11319 + - 11251 + - 11252 + - 11253 + - 9364 + - 9363 + - 9362 + - 3693 + - 3692 + type: DeviceNetwork + - devices: + - 11319 + - 11320 + - 11321 + - 11251 + - 11252 + - 11253 + - 11746 + - 8293 + - 8291 + - 5026 + - 9364 + - 9363 + - 9362 + - 3693 + - 3692 + type: DeviceList + - uid: 12486 + components: + - pos: 40.5,16.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12485 + - 9364 + - 9363 + - 9362 + - 11251 + - 11252 + - 11253 + - 11413 + - 9351 + - 9353 + - 9352 + - 12087 + - 5103 + - 10365 + type: DeviceNetwork + - devices: + - 11251 + - 11252 + - 11253 + - 12087 + - 11413 + - 12485 + - 9364 + - 9363 + - 9362 + - 9351 + - 9353 + - 9352 + - 5103 + - 10365 + type: DeviceList + - uid: 12488 + components: + - pos: 51.5,-3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12490 + - 12077 + - 11858 + - 12075 + - 12076 + - 11744 + - 11743 + type: DeviceNetwork + - devices: + - 12077 + - 11858 + - 12075 + - 12490 + - 12076 + - 11744 + - 11743 + type: DeviceList + - uid: 12503 + components: + - pos: 70.5,-0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11709 + - 11729 + type: DeviceNetwork + - devices: + - 12502 + - 11709 + - 11729 + type: DeviceList + - uid: 12504 + components: + - pos: 78.5,-2.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11365 + type: DeviceNetwork + - devices: + - 11365 + type: DeviceList + - uid: 12506 + components: + - pos: 72.5,9.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11957 + - 11956 + type: DeviceNetwork + - devices: + - 11957 + - 11956 + type: DeviceList + - uid: 12520 + components: + - pos: 19.5,25.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 8237 + - 8238 + - 12086 + - 8236 + - 8235 + type: DeviceNetwork + - devices: + - 12519 + - 12086 + - 8237 + - 8238 + - 8236 + - 8235 + type: DeviceList + - uid: 12528 + components: + - pos: 37.5,20.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 8564 + - 8575 + - 12529 + - 8629 + - 8630 + type: DeviceNetwork + - devices: + - 12529 + - 8564 + - 8575 + - 8629 + - 8630 + type: DeviceList + - uid: 12530 + components: + - rot: 3.141592653589793 rad + pos: 40.5,21.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 8597 + - 8598 + - 12531 + type: DeviceNetwork + - devices: + - 12531 + - 8597 + - 8598 + type: DeviceList + - uid: 12532 + components: + - pos: 42.5,21.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 8684 + - 8685 + type: DeviceNetwork + - devices: + - 8684 + - 8685 + type: DeviceList + - uid: 12537 + components: + - pos: 21.5,47.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 8296 + - 9546 + - 12538 + type: DeviceNetwork + - devices: + - 12538 + - 8296 + - 9546 + type: DeviceList + - uid: 12539 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,41.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9558 + - 9557 + - 12540 + type: DeviceNetwork + - devices: + - 12540 + - 9558 + - 9557 + type: DeviceList + - uid: 12548 + components: + - pos: 54.5,21.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12087 + - 12550 + - 10366 + - 10351 + type: DeviceNetwork + - devices: + - 12550 + - 12087 + - 10366 + - 10351 + type: DeviceList + - uid: 12562 + components: + - rot: -1.5707963267948966 rad + pos: 64.5,10.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12563 + - 10346 + - 10401 + type: DeviceNetwork + - devices: + - 12563 + - 10346 + - 10401 + type: DeviceList +- proto: AirCanister + entities: + - uid: 2078 + components: + - pos: 28.5,-23.5 + parent: 2 + type: Transform + - uid: 4555 + components: + - pos: 28.5,-24.5 + parent: 2 + type: Transform + - uid: 4572 + components: + - pos: 32.5,-26.5 + parent: 2 + type: Transform + - uid: 5518 + components: + - pos: 66.5,44.5 + parent: 2 + type: Transform + - uid: 5706 + components: + - pos: 85.5,-1.5 + parent: 2 + type: Transform + - uid: 5747 + components: + - pos: 48.5,-13.5 + parent: 2 + type: Transform + - uid: 7858 + components: + - pos: 70.5,-19.5 + parent: 2 + type: Transform + - uid: 10794 + components: + - pos: 78.5,-16.5 + parent: 2 + type: Transform + - uid: 10842 + components: + - pos: 46.5,36.5 + parent: 2 + type: Transform + - uid: 10843 + components: + - pos: 46.5,35.5 + parent: 2 + type: Transform + - uid: 12802 + components: + - pos: 14.5,-9.5 + parent: 2 + type: Transform +- proto: Airlock + entities: + - uid: 467 + components: + - pos: 11.5,11.5 + parent: 2 + type: Transform + - uid: 1078 + components: + - pos: 21.5,16.5 + parent: 2 + type: Transform + - uid: 1079 + components: + - pos: 17.5,15.5 + parent: 2 + type: Transform + - uid: 1080 + components: + - pos: 17.5,13.5 + parent: 2 + type: Transform + - uid: 2290 + components: + - pos: 41.5,36.5 + parent: 2 + type: Transform + - uid: 8842 + components: + - pos: 104.5,-12.5 + parent: 2 + type: Transform +- proto: AirlockArmoryGlassLocked + entities: + - uid: 37 + components: + - pos: 40.5,25.5 + parent: 2 + type: Transform + - uid: 48 + components: + - pos: 39.5,25.5 + parent: 2 + type: Transform +- proto: AirlockAtmosphericsGlassLocked + entities: + - uid: 4773 + components: + - pos: 40.5,-37.5 + parent: 2 + type: Transform + - uid: 4774 + components: + - pos: 39.5,-37.5 + parent: 2 + type: Transform + - uid: 4775 + components: + - pos: 38.5,-37.5 + parent: 2 + type: Transform + - uid: 10863 + components: + - pos: 31.5,-29.5 + parent: 2 + type: Transform + - uid: 10864 + components: + - name: Atmospherics + type: MetaData + - pos: 28.5,-28.5 + parent: 2 + type: Transform +- proto: AirlockBrigGlassLocked + entities: + - uid: 2186 + components: + - pos: 31.5,23.5 + parent: 2 + type: Transform + - uid: 2187 + components: + - pos: 31.5,24.5 + parent: 2 + type: Transform + - uid: 2188 + components: + - pos: 28.5,24.5 + parent: 2 + type: Transform + - uid: 2189 + components: + - pos: 28.5,23.5 + parent: 2 + type: Transform + - uid: 2252 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,31.5 + parent: 2 + type: Transform +- proto: AirlockBrigLocked + entities: + - uid: 32 + components: + - name: Law Office + type: MetaData + - pos: -4.5,-7.5 + parent: 2 + type: Transform + - uid: 35 + components: + - name: Law Office Maint Hatch + type: MetaData + - pos: -0.5,-10.5 + parent: 2 + type: Transform +- proto: AirlockCaptainLocked + entities: + - uid: 389 + components: + - pos: 35.5,40.5 + parent: 2 + type: Transform + - uid: 2616 + components: + - pos: 32.5,44.5 + parent: 2 + type: Transform +- proto: AirlockCargoGlassLocked + entities: + - uid: 2081 + components: + - pos: 16.5,22.5 + parent: 2 + type: Transform + - uid: 2082 + components: + - pos: 16.5,20.5 + parent: 2 + type: Transform + - uid: 2083 + components: + - pos: 21.5,20.5 + parent: 2 + type: Transform + - uid: 11094 + components: + - pos: 21.5,21.5 + parent: 2 + type: Transform +- proto: AirlockChapelLocked + entities: + - uid: 1193 + components: + - pos: 33.5,6.5 + parent: 2 + type: Transform +- proto: AirlockChemistryLocked + entities: + - uid: 6649 + components: + - pos: 54.5,-6.5 + parent: 2 + type: Transform +- proto: AirlockChiefEngineerLocked + entities: + - uid: 948 + components: + - pos: 14.5,-34.5 + parent: 2 + type: Transform +- proto: AirlockChiefMedicalOfficerGlassLocked + entities: + - uid: 5039 + components: + - pos: 56.5,-8.5 + parent: 2 + type: Transform +- proto: AirlockCommandGlassLocked + entities: + - uid: 2756 + components: + - pos: 28.5,38.5 + parent: 2 + type: Transform + - uid: 2757 + components: + - pos: 26.5,38.5 + parent: 2 + type: Transform + - uid: 2758 + components: + - pos: 26.5,43.5 + parent: 2 + type: Transform + - uid: 2759 + components: + - pos: 28.5,43.5 + parent: 2 + type: Transform + - uid: 2760 + components: + - pos: 25.5,41.5 + parent: 2 + type: Transform +- proto: AirlockCommandLocked + entities: + - uid: 2788 + components: + - pos: 16.5,36.5 + parent: 2 + type: Transform + - uid: 8592 + components: + - name: Camera Servers + type: MetaData + - pos: 29.5,36.5 + parent: 2 + type: Transform +- proto: AirlockEngineering + entities: + - uid: 3550 + components: + - pos: 88.5,-2.5 + parent: 2 + type: Transform +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 806 + components: + - pos: 17.5,-29.5 + parent: 2 + type: Transform + - uid: 807 + components: + - pos: 18.5,-29.5 + parent: 2 + type: Transform + - uid: 808 + components: + - pos: 21.5,-29.5 + parent: 2 + type: Transform + - uid: 809 + components: + - pos: 21.5,-33.5 + parent: 2 + type: Transform + - uid: 8272 + components: + - pos: 26.5,-34.5 + parent: 2 + type: Transform + - uid: 8273 + components: + - pos: 31.5,-37.5 + parent: 2 + type: Transform + - uid: 8274 + components: + - pos: 32.5,-37.5 + parent: 2 + type: Transform + - uid: 8276 + components: + - pos: 31.5,-33.5 + parent: 2 + type: Transform + - uid: 8277 + components: + - name: Engineering Lobby + type: MetaData + - pos: 24.5,-28.5 + parent: 2 + type: Transform +- proto: AirlockEngineeringLocked + entities: + - uid: 118 + components: + - pos: 3.5,-9.5 + parent: 2 + type: Transform + - uid: 128 + components: + - pos: 14.5,33.5 + parent: 2 + type: Transform + - uid: 596 + components: + - pos: 15.5,6.5 + parent: 2 + type: Transform + - uid: 815 + components: + - pos: 26.5,-26.5 + parent: 2 + type: Transform + - uid: 1005 + components: + - pos: 21.5,-37.5 + parent: 2 + type: Transform + - uid: 1347 + components: + - pos: 4.5,-33.5 + parent: 2 + type: Transform + - uid: 1743 + components: + - pos: 34.5,-16.5 + parent: 2 + type: Transform + - uid: 3408 + components: + - pos: 69.5,43.5 + parent: 2 + type: Transform + - uid: 3490 + components: + - pos: 48.5,27.5 + parent: 2 + type: Transform + - uid: 4744 + components: + - pos: 44.5,28.5 + parent: 2 + type: Transform + - uid: 5608 + components: + - pos: 18.5,-39.5 + parent: 2 + type: Transform + - uid: 5609 + components: + - pos: 24.5,-39.5 + parent: 2 + type: Transform + - uid: 5726 + components: + - pos: 52.5,-11.5 + parent: 2 + type: Transform + - uid: 5824 + components: + - pos: 24.5,-17.5 + parent: 2 + type: Transform + - uid: 6198 + components: + - pos: 70.5,-13.5 + parent: 2 + type: Transform + - uid: 6899 + components: + - pos: 16.5,-12.5 + parent: 2 + type: Transform +- proto: AirlockExternal + entities: + - uid: 1889 + components: + - rot: 1.5707963267948966 rad + pos: 85.5,4.5 + parent: 2 + type: Transform + - uid: 11758 + components: + - pos: 91.5,-20.5 + parent: 2 + type: Transform + - uid: 11761 + components: + - pos: 91.5,-19.5 + parent: 2 + type: Transform + - uid: 11779 + components: + - pos: 94.5,-19.5 + parent: 2 + type: Transform + - uid: 11780 + components: + - pos: 94.5,-20.5 + parent: 2 + type: Transform + - uid: 11781 + components: + - pos: 99.5,-19.5 + parent: 2 + type: Transform + - uid: 11782 + components: + - pos: 99.5,-20.5 + parent: 2 + type: Transform + - uid: 11783 + components: + - pos: 101.5,-19.5 + parent: 2 + type: Transform + - uid: 11784 + components: + - pos: 101.5,-20.5 + parent: 2 + type: Transform +- proto: AirlockExternalAtmosphericsLocked + entities: + - uid: 4390 + components: + - pos: 37.5,-39.5 + parent: 2 + type: Transform + - uid: 4391 + components: + - pos: 35.5,-37.5 + parent: 2 + type: Transform +- proto: AirlockExternalEngineeringLocked + entities: + - uid: 69 + components: + - pos: 11.5,37.5 + parent: 2 + type: Transform + - uid: 70 + components: + - pos: 11.5,35.5 + parent: 2 + type: Transform + - uid: 171 + components: + - pos: 15.5,-41.5 + parent: 2 + type: Transform + - uid: 173 + components: + - pos: 13.5,-43.5 + parent: 2 + type: Transform + - uid: 225 + components: + - pos: 18.5,-15.5 + parent: 2 + type: Transform + - uid: 226 + components: + - pos: 17.5,-17.5 + parent: 2 + type: Transform + - uid: 1902 + components: + - pos: 74.5,45.5 + parent: 2 + type: Transform + - uid: 2128 + components: + - pos: 72.5,45.5 + parent: 2 + type: Transform + - uid: 4385 + components: + - pos: 33.5,-39.5 + parent: 2 + type: Transform + - uid: 4392 + components: + - pos: 35.5,-41.5 + parent: 2 + type: Transform + - uid: 12931 + components: + - pos: 33.5,-47.5 + parent: 2 + type: Transform + - uid: 12932 + components: + - pos: 32.5,-49.5 + parent: 2 + type: Transform +- proto: AirlockExternalGlass + entities: + - uid: 2002 + components: + - pos: 6.5,26.5 + parent: 2 + type: Transform + - uid: 2003 + components: + - pos: 6.5,24.5 + parent: 2 + type: Transform +- proto: AirlockExternalGlassCargoLocked + entities: + - uid: 6863 + components: + - pos: 6.5,16.5 + parent: 2 + type: Transform + - uid: 7674 + components: + - pos: 6.5,17.5 + parent: 2 + type: Transform + - uid: 7881 + components: + - pos: 4.5,17.5 + parent: 2 + type: Transform + - uid: 7886 + components: + - pos: 4.5,16.5 + parent: 2 + type: Transform +- proto: AirlockExternalGlassLocked + entities: + - uid: 2734 + components: + - pos: -5.5,-18.5 + parent: 2 + type: Transform + - uid: 6839 + components: + - pos: -5.5,-15.5 + parent: 2 + type: Transform +- proto: AirlockExternalGlassShuttleArrivals + entities: + - uid: 1332 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-10.5 + parent: 2 + type: Transform + - uid: 1334 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-10.5 + parent: 2 + type: Transform +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 139 + components: + - rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 2 + type: Transform + - uid: 193 + components: + - rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 2 + type: Transform +- proto: AirlockExternalGlassShuttleEscape + entities: + - uid: 8327 + components: + - rot: 1.5707963267948966 rad + pos: 87.5,4.5 + parent: 2 + type: Transform +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 2001 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,24.5 + parent: 2 + type: Transform + - uid: 2004 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,26.5 + parent: 2 + type: Transform +- proto: AirlockExternalLocked + entities: + - uid: 1369 + components: + - pos: 1.5,-35.5 + parent: 2 + type: Transform + - uid: 1370 + components: + - pos: -0.5,-35.5 + parent: 2 + type: Transform + - uid: 3202 + components: + - pos: 56.5,49.5 + parent: 2 + type: Transform + - uid: 8728 + components: + - pos: 87.5,-20.5 + parent: 2 + type: Transform + - uid: 10751 + components: + - pos: 84.5,-20.5 + parent: 2 + type: Transform +- proto: AirlockExternalShuttleLocked + entities: + - uid: 2167 + components: + - rot: 3.141592653589793 rad + pos: 56.5,51.5 + parent: 2 + type: Transform +- proto: AirlockFreezer + entities: + - uid: 10 + components: + - pos: 9.5,13.5 + parent: 2 + type: Transform + - uid: 1810 + components: + - pos: 9.5,12.5 + parent: 2 + type: Transform +- proto: AirlockFreezerKitchenHydroLocked + entities: + - uid: 559 + components: + - pos: 32.5,-10.5 + parent: 2 + type: Transform +- proto: AirlockFreezerLocked + entities: + - uid: 6519 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-10.5 + parent: 2 + type: Transform +- proto: AirlockGlass + entities: + - uid: 377 + components: + - pos: 7.5,10.5 + parent: 2 + type: Transform + - uid: 378 + components: + - pos: 7.5,9.5 + parent: 2 + type: Transform + - uid: 568 + components: + - pos: 11.5,8.5 + parent: 2 + type: Transform + - uid: 587 + components: + - pos: 9.5,8.5 + parent: 2 + type: Transform + - uid: 1081 + components: + - pos: 18.5,11.5 + parent: 2 + type: Transform + - uid: 1082 + components: + - pos: 19.5,11.5 + parent: 2 + type: Transform + - uid: 1567 + components: + - pos: 33.5,-1.5 + parent: 2 + type: Transform + - uid: 1568 + components: + - pos: 35.5,-1.5 + parent: 2 + type: Transform + - uid: 1746 + components: + - pos: 28.5,-16.5 + parent: 2 + type: Transform + - uid: 1747 + components: + - pos: 28.5,-15.5 + parent: 2 + type: Transform + - uid: 2177 + components: + - pos: 25.5,16.5 + parent: 2 + type: Transform + - uid: 2178 + components: + - pos: 26.5,16.5 + parent: 2 + type: Transform + - uid: 2179 + components: + - pos: 27.5,16.5 + parent: 2 + type: Transform + - uid: 2180 + components: + - pos: 24.5,13.5 + parent: 2 + type: Transform + - uid: 2181 + components: + - pos: 24.5,14.5 + parent: 2 + type: Transform + - uid: 2541 + components: + - pos: 39.5,7.5 + parent: 2 + type: Transform + - uid: 2550 + components: + - pos: 42.5,2.5 + parent: 2 + type: Transform + - uid: 2551 + components: + - pos: 41.5,2.5 + parent: 2 + type: Transform + - uid: 2552 + components: + - pos: 40.5,2.5 + parent: 2 + type: Transform + - uid: 2557 + components: + - pos: 42.5,12.5 + parent: 2 + type: Transform + - uid: 2558 + components: + - pos: 41.5,12.5 + parent: 2 + type: Transform + - uid: 2559 + components: + - pos: 40.5,12.5 + parent: 2 + type: Transform + - uid: 6786 + components: + - pos: 27.5,-2.5 + parent: 2 + type: Transform + - uid: 6787 + components: + - pos: 26.5,-2.5 + parent: 2 + type: Transform + - uid: 6789 + components: + - pos: 25.5,-2.5 + parent: 2 + type: Transform + - uid: 6851 + components: + - pos: 2.5,0.5 + parent: 2 + type: Transform + - uid: 7764 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-13.5 + parent: 2 + type: Transform + - uid: 7766 + components: + - pos: 22.5,43.5 + parent: 2 + type: Transform + - uid: 7767 + components: + - pos: 23.5,43.5 + parent: 2 + type: Transform + - uid: 7769 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-12.5 + parent: 2 + type: Transform + - uid: 7779 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-14.5 + parent: 2 + type: Transform + - uid: 7870 + components: + - pos: 2.5,-1.5 + parent: 2 + type: Transform + - uid: 7890 + components: + - pos: 2.5,-0.5 + parent: 2 + type: Transform + - uid: 7977 + components: + - pos: 17.5,-0.5 + parent: 2 + type: Transform + - uid: 7982 + components: + - pos: 17.5,0.5 + parent: 2 + type: Transform + - uid: 7983 + components: + - pos: 17.5,1.5 + parent: 2 + type: Transform + - uid: 11760 + components: + - pos: 106.5,-14.5 + parent: 2 + type: Transform + - uid: 11777 + components: + - pos: 106.5,-20.5 + parent: 2 + type: Transform +- proto: AirlockHeadOfPersonnelGlassLocked + entities: + - uid: 203 + components: + - pos: 9.5,-2.5 + parent: 2 + type: Transform + - uid: 205 + components: + - pos: 8.5,-2.5 + parent: 2 + type: Transform +- proto: AirlockHeadOfPersonnelLocked + entities: + - uid: 222 + components: + - pos: 13.5,-3.5 + parent: 2 + type: Transform +- proto: AirlockHeadOfSecurityLocked + entities: + - uid: 2375 + components: + - pos: 42.5,23.5 + parent: 2 + type: Transform +- proto: AirlockHydroGlassLocked + entities: + - uid: 556 + components: + - pos: 42.5,-8.5 + parent: 2 + type: Transform + - uid: 6573 + components: + - pos: 46.5,-2.5 + parent: 2 + type: Transform +- proto: AirlockJanitorLocked + entities: + - uid: 174 + components: + - pos: 4.5,-2.5 + parent: 2 + type: Transform +- proto: AirlockKitchenLocked + entities: + - uid: 562 + components: + - pos: 33.5,-8.5 + parent: 2 + type: Transform +- proto: AirlockMaint + entities: + - uid: 178 + components: + - pos: 1.5,-2.5 + parent: 2 + type: Transform + - uid: 295 + components: + - pos: 14.5,5.5 + parent: 2 + type: Transform + - uid: 480 + components: + - pos: 5.5,-15.5 + parent: 2 + type: Transform + - uid: 605 + components: + - pos: 22.5,-1.5 + parent: 2 + type: Transform + - uid: 6639 + components: + - pos: 66.5,30.5 + parent: 2 + type: Transform + - uid: 11785 + components: + - pos: 109.5,-17.5 + parent: 2 + type: Transform +- proto: AirlockMaintAtmoLocked + entities: + - uid: 10218 + components: + - rot: 3.141592653589793 rad + pos: 40.5,-20.5 + parent: 2 + type: Transform +- proto: AirlockMaintCargoLocked + entities: + - uid: 1062 + components: + - pos: 14.5,19.5 + parent: 2 + type: Transform + - uid: 2115 + components: + - pos: 14.5,28.5 + parent: 2 + type: Transform +- proto: AirlockMaintChapelLocked + entities: + - uid: 1192 + components: + - pos: 29.5,9.5 + parent: 2 + type: Transform +- proto: AirlockMaintChemLocked + entities: + - uid: 5070 + components: + - pos: 50.5,-9.5 + parent: 2 + type: Transform +- proto: AirlockMaintEngiLocked + entities: + - uid: 810 + components: + - name: Engineering Maints Hatch + type: MetaData + - pos: 13.5,-22.5 + parent: 2 + type: Transform +- proto: AirlockMaintGlassLocked + entities: + - uid: 223 + components: + - pos: 2.5,-11.5 + parent: 2 + type: Transform +- proto: AirlockMaintHOPLocked + entities: + - uid: 221 + components: + - pos: 9.5,-10.5 + parent: 2 + type: Transform + - uid: 577 + components: + - name: HoP Office + type: MetaData + - pos: 14.5,-6.5 + parent: 2 + type: Transform +- proto: AirlockMaintHydroLocked + entities: + - uid: 1553 + components: + - pos: 42.5,-11.5 + parent: 2 + type: Transform +- proto: AirlockMaintJanitorLocked + entities: + - uid: 1253 + components: + - pos: 2.5,-5.5 + parent: 2 + type: Transform +- proto: AirlockMaintKitchenLocked + entities: + - uid: 1548 + components: + - pos: 41.5,-12.5 + parent: 2 + type: Transform +- proto: AirlockMaintLocked + entities: + - uid: 96 + components: + - pos: 28.5,-21.5 + parent: 2 + type: Transform + - uid: 204 + components: + - pos: 2.5,-15.5 + parent: 2 + type: Transform + - uid: 1110 + components: + - pos: 21.5,6.5 + parent: 2 + type: Transform + - uid: 1164 + components: + - pos: 18.5,2.5 + parent: 2 + type: Transform + - uid: 1205 + components: + - pos: 26.5,11.5 + parent: 2 + type: Transform + - uid: 1745 + components: + - pos: 32.5,-18.5 + parent: 2 + type: Transform + - uid: 1865 + components: + - pos: 24.5,-21.5 + parent: 2 + type: Transform + - uid: 1990 + components: + - pos: 55.5,-16.5 + parent: 2 + type: Transform + - uid: 2168 + components: + - pos: 19.5,18.5 + parent: 2 + type: Transform + - uid: 2540 + components: + - pos: 35.5,10.5 + parent: 2 + type: Transform + - uid: 2556 + components: + - pos: 39.5,11.5 + parent: 2 + type: Transform + - uid: 2744 + components: + - pos: 24.5,27.5 + parent: 2 + type: Transform + - uid: 2888 + components: + - pos: 62.5,-18.5 + parent: 2 + type: Transform + - uid: 2889 + components: + - pos: 63.5,-18.5 + parent: 2 + type: Transform + - uid: 2890 + components: + - pos: 68.5,-16.5 + parent: 2 + type: Transform + - uid: 3386 + components: + - pos: 68.5,39.5 + parent: 2 + type: Transform + - uid: 3412 + components: + - pos: 68.5,28.5 + parent: 2 + type: Transform + - uid: 3413 + components: + - pos: 68.5,32.5 + parent: 2 + type: Transform + - uid: 3485 + components: + - pos: 47.5,20.5 + parent: 2 + type: Transform + - uid: 4729 + components: + - pos: 28.5,32.5 + parent: 2 + type: Transform + - uid: 5444 + components: + - pos: 68.5,36.5 + parent: 2 + type: Transform + - uid: 5469 + components: + - pos: 67.5,45.5 + parent: 2 + type: Transform + - uid: 5519 + components: + - pos: 88.5,-10.5 + parent: 2 + type: Transform + - uid: 5520 + components: + - pos: 87.5,-1.5 + parent: 2 + type: Transform + - uid: 5650 + components: + - pos: 45.5,46.5 + parent: 2 + type: Transform + - uid: 5716 + components: + - pos: 74.5,-14.5 + parent: 2 + type: Transform + - uid: 5737 + components: + - pos: 71.5,-14.5 + parent: 2 + type: Transform + - uid: 5738 + components: + - pos: 43.5,7.5 + parent: 2 + type: Transform + - uid: 5739 + components: + - pos: 54.5,6.5 + parent: 2 + type: Transform + - uid: 5740 + components: + - pos: 58.5,6.5 + parent: 2 + type: Transform + - uid: 5764 + components: + - pos: 82.5,10.5 + parent: 2 + type: Transform + - uid: 6901 + components: + - pos: 13.5,15.5 + parent: 2 + type: Transform + - uid: 9609 + components: + - pos: 12.5,14.5 + parent: 2 + type: Transform + - uid: 11018 + components: + - pos: 71.5,22.5 + parent: 2 + type: Transform +- proto: AirlockMaintMedLocked + entities: + - uid: 5120 + components: + - pos: 68.5,-9.5 + parent: 2 + type: Transform + - uid: 5121 + components: + - pos: 71.5,-4.5 + parent: 2 + type: Transform + - uid: 5172 + components: + - pos: 68.5,7.5 + parent: 2 + type: Transform + - uid: 5230 + components: + - pos: 81.5,3.5 + parent: 2 + type: Transform + - uid: 5231 + components: + - pos: 80.5,3.5 + parent: 2 + type: Transform + - uid: 11747 + components: + - pos: 75.5,9.5 + parent: 2 + type: Transform +- proto: AirlockMaintRnDLocked + entities: + - uid: 3511 + components: + - pos: 48.5,21.5 + parent: 2 + type: Transform + - uid: 5398 + components: + - pos: 53.5,7.5 + parent: 2 + type: Transform +- proto: AirlockMaintRnDMedLocked + entities: + - uid: 2918 + components: + - pos: 57.5,7.5 + parent: 2 + type: Transform + - uid: 5399 + components: + - pos: 56.5,4.5 + parent: 2 + type: Transform +- proto: AirlockMaintSalvageLocked + entities: + - uid: 7972 + components: + - pos: 10.5,19.5 + parent: 2 + type: Transform +- proto: AirlockMaintSecLocked + entities: + - uid: 2491 + components: + - pos: 33.5,31.5 + parent: 2 + type: Transform + - uid: 7737 + components: + - pos: 0.5,-4.5 + parent: 2 + type: Transform +- proto: AirlockMaintTheatreLocked + entities: + - uid: 1160 + components: + - pos: 26.5,9.5 + parent: 2 + type: Transform + - uid: 2253 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-8.5 + parent: 2 + type: Transform +- proto: AirlockMedicalGlassLocked + entities: + - uid: 5011 + components: + - pos: 45.5,1.5 + parent: 2 + type: Transform + - uid: 5012 + components: + - pos: 48.5,3.5 + parent: 2 + type: Transform + - uid: 11896 + components: + - pos: 71.5,3.5 + parent: 2 + type: Transform + - uid: 12836 + components: + - pos: 61.5,-8.5 + parent: 2 + type: Transform +- proto: AirlockMedicalLocked + entities: + - uid: 11898 + components: + - pos: 76.5,7.5 + parent: 2 + type: Transform +- proto: AirlockQuartermasterGlassLocked + entities: + - uid: 2084 + components: + - pos: 12.5,29.5 + parent: 2 + type: Transform +- proto: AirlockResearchDirectorGlassLocked + entities: + - uid: 5232 + components: + - pos: 62.5,12.5 + parent: 2 + type: Transform +- proto: AirlockResearchDirectorLocked + entities: + - uid: 5253 + components: + - pos: 52.5,24.5 + parent: 2 + type: Transform +- proto: AirlockSalvageGlassLocked + entities: + - uid: 437 + components: + - pos: 8.5,20.5 + parent: 2 + type: Transform +- proto: AirlockScienceGlassLocked + entities: + - uid: 5244 + components: + - pos: 54.5,12.5 + parent: 2 + type: Transform + - uid: 5248 + components: + - pos: 57.5,18.5 + parent: 2 + type: Transform + - uid: 5250 + components: + - pos: 61.5,24.5 + parent: 2 + type: Transform + - uid: 5251 + components: + - pos: 61.5,23.5 + parent: 2 + type: Transform +- proto: AirlockScienceLocked + entities: + - uid: 5247 + components: + - pos: 45.5,12.5 + parent: 2 + type: Transform + - uid: 5249 + components: + - pos: 65.5,15.5 + parent: 2 + type: Transform + - uid: 10448 + components: + - pos: 52.5,14.5 + parent: 2 + type: Transform + - uid: 10449 + components: + - pos: 48.5,14.5 + parent: 2 + type: Transform +- proto: AirlockSecurityGlassLocked + entities: + - uid: 2323 + components: + - pos: 38.5,30.5 + parent: 2 + type: Transform + - uid: 2324 + components: + - pos: 35.5,30.5 + parent: 2 + type: Transform + - uid: 2402 + components: + - pos: 37.5,22.5 + parent: 2 + type: Transform + - uid: 2460 + components: + - pos: 42.5,16.5 + parent: 2 + type: Transform + - uid: 2461 + components: + - pos: 40.5,18.5 + parent: 2 + type: Transform +- proto: AirlockSecurityLocked + entities: + - uid: 7736 + components: + - pos: -0.5,-2.5 + parent: 2 + type: Transform +- proto: AirlockServiceLocked + entities: + - uid: 555 + components: + - pos: 40.5,-3.5 + parent: 2 + type: Transform + - uid: 1527 + components: + - pos: 39.5,-8.5 + parent: 2 + type: Transform +- proto: AirlockTheatreLocked + entities: + - uid: 1159 + components: + - pos: 26.5,4.5 + parent: 2 + type: Transform +- proto: AirlockVirologyGlassLocked + entities: + - uid: 575 + components: + - pos: 53.5,-1.5 + parent: 2 + type: Transform + - uid: 576 + components: + - pos: 53.5,0.5 + parent: 2 + type: Transform + - uid: 598 + components: + - pos: 65.5,-0.5 + parent: 2 + type: Transform + - uid: 2910 + components: + - pos: 77.5,0.5 + parent: 2 + type: Transform + - uid: 2911 + components: + - pos: 77.5,-2.5 + parent: 2 + type: Transform +- proto: AirlockVirologyLocked + entities: + - uid: 599 + components: + - pos: 66.5,-7.5 + parent: 2 + type: Transform + - uid: 600 + components: + - pos: 63.5,-5.5 + parent: 2 + type: Transform + - uid: 601 + components: + - pos: 72.5,0.5 + parent: 2 + type: Transform +- proto: AirSensor + entities: + - uid: 185 + components: + - pos: 59.5,18.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12557 + - 2296 + type: DeviceNetwork + - uid: 2125 + components: + - pos: -3.5,-0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 7662 + - 2123 + - 2124 + type: DeviceNetwork + - uid: 4554 + components: + - pos: 26.5,-27.5 + parent: 2 + type: Transform + - uid: 5684 + components: + - pos: 26.5,-33.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 4049 + - 1017 + type: DeviceNetwork + - uid: 6636 + components: + - pos: 35.5,-5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1657 + type: DeviceNetwork + - uid: 6637 + components: + - pos: 37.5,-11.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 6633 + - 6632 + type: DeviceNetwork + - uid: 6638 + components: + - pos: 38.5,-5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 360 + type: DeviceNetwork + - uid: 6684 + components: + - pos: 44.5,-6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 6683 + - 6682 + type: DeviceNetwork + - uid: 7843 + components: + - pos: -10.5,-13.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 7842 + - 7839 + type: DeviceNetwork + - uid: 8008 + components: + - pos: 5.5,0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 8006 + - 8007 + - 8005 + - 8011 + type: DeviceNetwork + - uid: 8317 + components: + - pos: 21.5,0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 5077 + - 8316 + - 5020 + type: DeviceNetwork + - uid: 8659 + components: + - pos: 17.5,-32.5 + parent: 2 + type: Transform + - uid: 8923 + components: + - pos: 26.5,-5.5 + parent: 2 + type: Transform + - uid: 9589 + components: + - pos: 26.5,32.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9588 + - 9587 + type: DeviceNetwork + - uid: 10216 + components: + - pos: 22.5,-12.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10208 + - 10207 + type: DeviceNetwork + - uid: 10950 + components: + - pos: 19.5,-24.5 + parent: 2 + type: Transform + - uid: 11509 + components: + - pos: 47.5,-0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11507 + - 11508 + type: DeviceNetwork + - uid: 11746 + components: + - pos: 41.5,7.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12483 + - 12484 + type: DeviceNetwork + - uid: 12162 + components: + - pos: 59.5,2.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12153 + - 12154 + - 12152 + type: DeviceNetwork + - uid: 12396 + components: + - pos: 26.5,-36.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1016 + - 11990 + type: DeviceNetwork + - uid: 12402 + components: + - pos: 20.5,-39.5 + parent: 2 + type: Transform + - uid: 12449 + components: + - pos: 10.5,9.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 194 + - 12447 + type: DeviceNetwork + - uid: 12459 + components: + - pos: 5.5,-5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10201 + type: DeviceNetwork + - uid: 12462 + components: + - pos: -3.5,-9.5 + parent: 2 + type: Transform + - uid: 12472 + components: + - pos: 22.5,14.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12474 + - 12473 + type: DeviceNetwork + - uid: 12475 + components: + - pos: 31.5,14.5 + parent: 2 + type: Transform + - uid: 12481 + components: + - pos: 34.5,9.5 + parent: 2 + type: Transform + - uid: 12485 + components: + - pos: 43.5,14.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12487 + - 12486 + type: DeviceNetwork + - uid: 12490 + components: + - pos: 49.5,-7.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12489 + - 12488 + type: DeviceNetwork + - uid: 12498 + components: + - pos: 44.5,3.5 + parent: 2 + type: Transform + - uid: 12502 + components: + - pos: 74.5,-1.5 + parent: 2 + type: Transform + - uid: 12515 + components: + - pos: 13.5,3.5 + parent: 2 + type: Transform + - uid: 12516 + components: + - pos: 26.5,19.5 + parent: 2 + type: Transform + - uid: 12518 + components: + - pos: 24.5,25.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12517 + type: DeviceNetwork + - uid: 12519 + components: + - pos: 18.5,23.5 + parent: 2 + type: Transform + - uid: 12522 + components: + - pos: 15.5,23.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 5 + - 8239 + type: DeviceNetwork + - uid: 12529 + components: + - pos: 33.5,21.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12528 + type: DeviceNetwork + - uid: 12531 + components: + - pos: 41.5,23.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12530 + type: DeviceNetwork + - uid: 12538 + components: + - pos: 24.5,45.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12537 + type: DeviceNetwork + - uid: 12540 + components: + - pos: 27.5,40.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12539 + type: DeviceNetwork + - uid: 12543 + components: + - pos: 30.5,40.5 + parent: 2 + type: Transform + - uid: 12544 + components: + - pos: 37.5,43.5 + parent: 2 + type: Transform + - uid: 12550 + components: + - pos: 52.5,18.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12549 + - 12548 + type: DeviceNetwork + - uid: 12553 + components: + - pos: 49.5,9.5 + parent: 2 + type: Transform + - uid: 12554 + components: + - pos: 62.5,14.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 151 + type: DeviceNetwork + - uid: 12559 + components: + - pos: 58.5,24.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 2474 + - 1647 + type: DeviceNetwork + - uid: 12563 + components: + - pos: 61.5,10.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12562 + type: DeviceNetwork + - uid: 12564 + components: + - pos: 67.5,13.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 182 + type: DeviceNetwork +- proto: AltarSpawner + entities: + - uid: 2526 + components: + - pos: 35.5,7.5 + parent: 2 + type: Transform +- proto: AmeController + entities: + - uid: 5234 + components: + - pos: 28.5,-39.5 + parent: 2 + type: Transform +- proto: AnomalyScanner + entities: + - uid: 1838 + components: + - pos: 71.66338,14.074104 + parent: 2 + type: Transform + - uid: 5381 + components: + - pos: 71.46026,14.574104 + parent: 2 + type: Transform + - uid: 5382 + components: + - pos: 71.56963,14.339729 + parent: 2 + type: Transform +- proto: APCBasic + entities: + - uid: 340 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 2 + type: Transform + - uid: 342 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-11.5 + parent: 2 + type: Transform + - uid: 376 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-6.5 + parent: 2 + type: Transform + - uid: 466 + components: + - rot: 3.141592653589793 rad + pos: 10.5,11.5 + parent: 2 + type: Transform + - uid: 681 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-15.5 + parent: 2 + type: Transform + - uid: 751 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-26.5 + parent: 2 + type: Transform + - uid: 947 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-35.5 + parent: 2 + type: Transform + - uid: 1111 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,5.5 + parent: 2 + type: Transform + - uid: 1539 + components: + - pos: 37.5,-2.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - loadingNetworkDemand: 5 + supplyRampPosition: 2.4463015 + type: PowerNetworkBattery + - uid: 1569 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-37.5 + parent: 2 + type: Transform + - uid: 1688 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-15.5 + parent: 2 + type: Transform + - uid: 1748 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-15.5 + parent: 2 + type: Transform + - uid: 1815 + components: + - pos: 41.5,21.5 + parent: 2 + type: Transform + - uid: 1948 + components: + - rot: 3.141592653589793 rad + pos: 36.5,29.5 + parent: 2 + type: Transform + - uid: 2378 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,3.5 + parent: 2 + type: Transform + - uid: 2404 + components: + - pos: 43.5,26.5 + parent: 2 + type: Transform + - uid: 2451 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,33.5 + parent: 2 + type: Transform + - uid: 2481 + components: + - pos: 20.5,34.5 + parent: 2 + type: Transform + - uid: 2721 + components: + - rot: -1.5707963267948966 rad + pos: 68.5,-15.5 + parent: 2 + type: Transform + - uid: 2902 + components: + - pos: 69.5,47.5 + parent: 2 + type: Transform + - uid: 3407 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 2 + type: Transform + - uid: 4113 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 2 + type: Transform + - uid: 4116 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,16.5 + parent: 2 + type: Transform + - uid: 4186 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,7.5 + parent: 2 + type: Transform + - uid: 4309 + components: + - pos: 17.5,-37.5 + parent: 2 + type: Transform + - uid: 4325 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,18.5 + parent: 2 + type: Transform + - uid: 4703 + components: + - rot: 3.141592653589793 rad + pos: 40.5,-1.5 + parent: 2 + type: Transform + - uid: 4772 + components: + - pos: 41.5,-37.5 + parent: 2 + type: Transform + - uid: 4815 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,23.5 + parent: 2 + type: Transform + - uid: 4829 + components: + - rot: 3.141592653589793 rad + pos: 13.5,35.5 + parent: 2 + type: Transform + - uid: 4877 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-35.5 + parent: 2 + type: Transform + - uid: 4883 + components: + - pos: 15.5,34.5 + parent: 2 + type: Transform + - uid: 4886 + components: + - rot: 3.141592653589793 rad + pos: 25.5,43.5 + parent: 2 + type: Transform + - uid: 4918 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,40.5 + parent: 2 + type: Transform + - uid: 5015 + components: + - pos: 66.5,-0.5 + parent: 2 + type: Transform + - uid: 5088 + components: + - rot: -1.5707963267948966 rad + pos: 75.5,-2.5 + parent: 2 + type: Transform + - uid: 5129 + components: + - rot: 1.5707963267948966 rad + pos: 75.5,-4.5 + parent: 2 + type: Transform + - uid: 5130 + components: + - rot: -1.5707963267948966 rad + pos: 73.5,-7.5 + parent: 2 + type: Transform + - uid: 5131 + components: + - pos: 58.5,-8.5 + parent: 2 + type: Transform + - uid: 5155 + components: + - pos: 74.5,9.5 + parent: 2 + type: Transform + - uid: 5201 + components: + - rot: -1.5707963267948966 rad + pos: 64.5,11.5 + parent: 2 + type: Transform + - uid: 5236 + components: + - rot: -1.5707963267948966 rad + pos: 56.5,11.5 + parent: 2 + type: Transform + - uid: 5269 + components: + - pos: 53.5,21.5 + parent: 2 + type: Transform + - uid: 5270 + components: + - rot: 3.141592653589793 rad + pos: 51.5,22.5 + parent: 2 + type: Transform + - uid: 5271 + components: + - pos: 33.5,44.5 + parent: 2 + type: Transform + - uid: 5299 + components: + - pos: 66.5,17.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - loadingNetworkDemand: 5 + supplyRampPosition: 2.4463015 + type: PowerNetworkBattery + - uid: 5427 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 2 + type: Transform + - uid: 5648 + components: + - rot: 3.141592653589793 rad + pos: 68.5,41.5 + parent: 2 + type: Transform + - uid: 5689 + components: + - rot: 3.141592653589793 rad + pos: 69.5,9.5 + parent: 2 + type: Transform + - uid: 6005 + components: + - pos: 78.5,-14.5 + parent: 2 + type: Transform + - uid: 6012 + components: + - rot: 3.141592653589793 rad + pos: 52.5,-9.5 + parent: 2 + type: Transform + - uid: 6015 + components: + - pos: 6.5,-10.5 + parent: 2 + type: Transform + - uid: 6025 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-19.5 + parent: 2 + type: Transform + - uid: 6095 + components: + - rot: 3.141592653589793 rad + pos: 28.5,9.5 + parent: 2 + type: Transform + - uid: 6099 + components: + - rot: 3.141592653589793 rad + pos: 43.5,12.5 + parent: 2 + type: Transform + - uid: 6172 + components: + - pos: 66.5,45.5 + parent: 2 + type: Transform + - uid: 6342 + components: + - pos: 54.5,4.5 + parent: 2 + type: Transform + - uid: 6358 + components: + - rot: 1.5707963267948966 rad + pos: 50.5,-14.5 + parent: 2 + type: Transform + - uid: 6522 + components: + - pos: 39.5,-18.5 + parent: 2 + type: Transform + - startingCharge: 12000 + type: Battery + - uid: 6685 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-8.5 + parent: 2 + type: Transform + - uid: 6686 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-11.5 + parent: 2 + type: Transform + - uid: 6697 + components: + - rot: 3.141592653589793 rad + pos: 11.5,2.5 + parent: 2 + type: Transform + - uid: 6717 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,3.5 + parent: 2 + type: Transform + - uid: 6873 + components: + - pos: 47.5,28.5 + parent: 2 + type: Transform + - uid: 6954 + components: + - rot: 3.141592653589793 rad + pos: 14.5,8.5 + parent: 2 + type: Transform + - uid: 6960 + components: + - pos: 22.5,-22.5 + parent: 2 + type: Transform + - uid: 7473 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-15.5 + parent: 2 + type: Transform + - uid: 8585 + components: + - pos: 30.5,38.5 + parent: 2 + type: Transform + - uid: 9020 + components: + - pos: 110.5,-14.5 + parent: 2 + type: Transform + - uid: 9743 + components: + - pos: 21.5,-8.5 + parent: 2 + type: Transform + - uid: 9744 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-7.5 + parent: 2 + type: Transform + - uid: 9775 + components: + - pos: 23.5,2.5 + parent: 2 + type: Transform + - uid: 10129 + components: + - rot: -1.5707963267948966 rad + pos: 63.5,-7.5 + parent: 2 + type: Transform + - uid: 10545 + components: + - rot: -1.5707963267948966 rad + pos: 61.5,18.5 + parent: 2 + type: Transform + - uid: 10924 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,6.5 + parent: 2 + type: Transform + - uid: 12151 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,23.5 + parent: 2 + type: Transform + - uid: 12934 + components: + - pos: 37.5,-41.5 + parent: 2 + type: Transform +- proto: APCElectronics + entities: + - uid: 6656 + components: + - pos: 90.55121,-10.254825 + parent: 2 + type: Transform +- proto: APCHighCapacity + entities: + - uid: 43 + components: + - rot: 3.141592653589793 rad + pos: 22.5,11.5 + parent: 2 + type: Transform + - uid: 775 + components: + - pos: 3.5,-27.5 + parent: 2 + type: Transform + - uid: 4669 + components: + - pos: 22.5,-29.5 + parent: 2 + type: Transform + - uid: 4676 + components: + - pos: 29.5,-37.5 + parent: 2 + type: Transform + - uid: 6914 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,7.5 + parent: 2 + type: Transform +- proto: APCHyperCapacity + entities: + - uid: 301 + components: + - pos: 19.5,-13.5 + parent: 2 + type: Transform + - uid: 323 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,25.5 + parent: 2 + type: Transform +- proto: APCSuperCapacity + entities: + - uid: 2333 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,25.5 + parent: 2 + type: Transform + - uid: 4928 + components: + - pos: 36.5,-21.5 + parent: 2 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 136 + components: + - pos: -2.5,2.5 + parent: 2 + type: Transform + - uid: 373 + components: + - pos: -12.5,-10.5 + parent: 2 + type: Transform + - uid: 608 + components: + - pos: -19.5,-10.5 + parent: 2 + type: Transform + - uid: 2027 + components: + - pos: -4.5,2.5 + parent: 2 + type: Transform + - uid: 6591 + components: + - pos: 32.5,-10.5 + parent: 2 + type: Transform + - uid: 6592 + components: + - pos: 28.5,-10.5 + parent: 2 + type: Transform + - uid: 12295 + components: + - pos: 4.5,24.5 + parent: 2 + type: Transform + - uid: 12296 + components: + - pos: 4.5,26.5 + parent: 2 + type: Transform +- proto: AtmosFixBlockerMarker + entities: + - uid: 1922 + components: + - pos: 47.5,-29.5 + parent: 2 + type: Transform + - uid: 4127 + components: + - pos: 45.5,-27.5 + parent: 2 + type: Transform + - uid: 4139 + components: + - pos: 45.5,-33.5 + parent: 2 + type: Transform + - uid: 4141 + components: + - pos: 47.5,-33.5 + parent: 2 + type: Transform + - uid: 4143 + components: + - pos: 47.5,-27.5 + parent: 2 + type: Transform + - uid: 4148 + components: + - pos: 45.5,-29.5 + parent: 2 + type: Transform + - uid: 4152 + components: + - pos: 46.5,-33.5 + parent: 2 + type: Transform + - uid: 4157 + components: + - pos: 46.5,-29.5 + parent: 2 + type: Transform + - uid: 4175 + components: + - pos: 46.5,-27.5 + parent: 2 + type: Transform +- proto: AtmosFixFreezerMarker + entities: + - uid: 6535 + components: + - pos: 29.5,-12.5 + parent: 2 + type: Transform + - uid: 6539 + components: + - pos: 29.5,-11.5 + parent: 2 + type: Transform + - uid: 6540 + components: + - pos: 29.5,-10.5 + parent: 2 + type: Transform + - uid: 6541 + components: + - pos: 29.5,-9.5 + parent: 2 + type: Transform + - uid: 6542 + components: + - pos: 30.5,-12.5 + parent: 2 + type: Transform + - uid: 6543 + components: + - pos: 30.5,-11.5 + parent: 2 + type: Transform + - uid: 6544 + components: + - pos: 30.5,-10.5 + parent: 2 + type: Transform + - uid: 6545 + components: + - pos: 30.5,-9.5 + parent: 2 + type: Transform + - uid: 6546 + components: + - pos: 31.5,-12.5 + parent: 2 + type: Transform + - uid: 6547 + components: + - pos: 31.5,-11.5 + parent: 2 + type: Transform + - uid: 6548 + components: + - pos: 31.5,-10.5 + parent: 2 + type: Transform + - uid: 6549 + components: + - pos: 31.5,-9.5 + parent: 2 + type: Transform +- proto: AtmosFixNitrogenMarker + entities: + - uid: 4188 + components: + - pos: 45.5,-23.5 + parent: 2 + type: Transform + - uid: 4189 + components: + - pos: 46.5,-23.5 + parent: 2 + type: Transform + - uid: 4191 + components: + - pos: 47.5,-23.5 + parent: 2 + type: Transform +- proto: AtmosFixOxygenMarker + entities: + - uid: 4134 + components: + - pos: 46.5,-25.5 + parent: 2 + type: Transform + - uid: 4142 + components: + - pos: 45.5,-25.5 + parent: 2 + type: Transform + - uid: 4149 + components: + - pos: 47.5,-25.5 + parent: 2 + type: Transform +- proto: AtmosFixPlasmaMarker + entities: + - uid: 4137 + components: + - pos: 47.5,-31.5 + parent: 2 + type: Transform + - uid: 4138 + components: + - pos: 45.5,-31.5 + parent: 2 + type: Transform + - uid: 4153 + components: + - pos: 46.5,-31.5 + parent: 2 + type: Transform +- proto: Autolathe + entities: + - uid: 942 + components: + - pos: 15.5,-23.5 + parent: 2 + type: Transform + - uid: 2120 + components: + - pos: 12.5,21.5 + parent: 2 + type: Transform + - materialWhiteList: + - Steel + - Plastic + - Wood + - Glass + - Cloth + type: MaterialStorage + - uid: 11843 + components: + - pos: 52.5,21.5 + parent: 2 + type: Transform + - materialWhiteList: + - Steel + - Plastic + - Wood + - Glass + - Cloth + type: MaterialStorage +- proto: AutolatheMachineCircuitboard + entities: + - uid: 12370 + components: + - pos: 41.421707,-14.3606415 + parent: 2 + type: Transform +- proto: BananaPhoneInstrument + entities: + - uid: 9600 + components: + - pos: 27.258966,6.8224545 + parent: 2 + type: Transform +- proto: Barricade + entities: + - uid: 2913 + components: + - pos: 59.5,-15.5 + parent: 2 + type: Transform + - uid: 2914 + components: + - pos: 61.5,-17.5 + parent: 2 + type: Transform + - uid: 2915 + components: + - pos: 60.5,-17.5 + parent: 2 + type: Transform + - uid: 2916 + components: + - pos: 64.5,-16.5 + parent: 2 + type: Transform + - uid: 2917 + components: + - pos: 65.5,-16.5 + parent: 2 + type: Transform + - uid: 5703 + components: + - rot: 3.141592653589793 rad + pos: 82.5,-14.5 + parent: 2 + type: Transform +- proto: BarSignMaidCafe + entities: + - uid: 6528 + components: + - pos: 30.5,-1.5 + parent: 2 + type: Transform +- proto: BarSignTheSingulo + entities: + - uid: 12307 + components: + - pos: 66.5,-18.5 + parent: 2 + type: Transform +- proto: Basketball + entities: + - uid: 10804 + components: + - pos: 85.511505,-15.382914 + parent: 2 + type: Transform +- proto: Beaker + entities: + - uid: 366 + components: + - pos: 36.58413,35.51777 + parent: 2 + type: Transform + - uid: 4247 + components: + - pos: 37.031143,-12.408879 + parent: 2 + type: Transform + - uid: 5202 + components: + - pos: 63.66416,-9.582929 + parent: 2 + type: Transform + - uid: 5324 + components: + - pos: 54.76479,17.614588 + parent: 2 + type: Transform + - uid: 11423 + components: + - pos: 63.47666,-9.786054 + parent: 2 + type: Transform + - uid: 11965 + components: + - pos: 64.41618,3.7600718 + parent: 2 + type: Transform +- proto: Bed + entities: + - uid: 388 + components: + - pos: 36.5,42.5 + parent: 2 + type: Transform + - uid: 411 + components: + - pos: 13.5,31.5 + parent: 2 + type: Transform + - uid: 2250 + components: + - pos: 29.5,18.5 + parent: 2 + type: Transform + - uid: 2251 + components: + - pos: 29.5,20.5 + parent: 2 + type: Transform + - uid: 2309 + components: + - pos: 41.5,32.5 + parent: 2 + type: Transform + - uid: 2310 + components: + - pos: 41.5,31.5 + parent: 2 + type: Transform + - uid: 5445 + components: + - pos: 71.5,36.5 + parent: 2 + type: Transform + - uid: 5446 + components: + - pos: 71.5,39.5 + parent: 2 + type: Transform + - uid: 5709 + components: + - pos: 77.5,-12.5 + parent: 2 + type: Transform + - uid: 6936 + components: + - pos: 20.5,17.5 + parent: 2 + type: Transform + - uid: 6942 + components: + - pos: 22.5,17.5 + parent: 2 + type: Transform + - uid: 9623 + components: + - pos: 47.5,4.5 + parent: 2 + type: Transform + - uid: 11838 + components: + - pos: 59.5,-7.5 + parent: 2 + type: Transform + - uid: 11840 + components: + - pos: 59.5,-4.5 + parent: 2 + type: Transform + - uid: 12245 + components: + - pos: 16.5,16.5 + parent: 2 + type: Transform + - uid: 12246 + components: + - pos: 15.5,16.5 + parent: 2 + type: Transform + - uid: 12247 + components: + - pos: 14.5,16.5 + parent: 2 + type: Transform + - uid: 12248 + components: + - pos: 16.5,14.5 + parent: 2 + type: Transform + - uid: 12249 + components: + - pos: 15.5,14.5 + parent: 2 + type: Transform + - uid: 12250 + components: + - pos: 14.5,14.5 + parent: 2 + type: Transform + - uid: 12251 + components: + - pos: 16.5,12.5 + parent: 2 + type: Transform + - uid: 12252 + components: + - pos: 15.5,12.5 + parent: 2 + type: Transform + - uid: 12253 + components: + - pos: 14.5,12.5 + parent: 2 + type: Transform + - uid: 12685 + components: + - pos: 107.5,-24.5 + parent: 2 + type: Transform + - uid: 12688 + components: + - pos: 107.5,-22.5 + parent: 2 + type: Transform + - uid: 12689 + components: + - pos: 107.5,-23.5 + parent: 2 + type: Transform + - uid: 13111 + components: + - pos: 62.5,-4.5 + parent: 2 + type: Transform + - uid: 13112 + components: + - pos: 62.5,-7.5 + parent: 2 + type: Transform +- proto: BedsheetCaptain + entities: + - uid: 379 + components: + - pos: 36.5,42.5 + parent: 2 + type: Transform +- proto: BedsheetClown + entities: + - uid: 5148 + components: + - pos: 27.5,5.5 + parent: 2 + type: Transform +- proto: BedsheetGreen + entities: + - uid: 5252 + components: + - pos: 81.5,-1.5 + parent: 2 + type: Transform + - uid: 7798 + components: + - pos: 81.5,-0.5 + parent: 2 + type: Transform + - uid: 10905 + components: + - pos: 77.5,-8.5 + parent: 2 + type: Transform + - uid: 10908 + components: + - pos: 76.5,-6.5 + parent: 2 + type: Transform +- proto: BedsheetMedical + entities: + - uid: 5197 + components: + - pos: 62.5,-10.5 + parent: 2 + type: Transform + - uid: 9624 + components: + - pos: 47.5,4.5 + parent: 2 + type: Transform + - uid: 11822 + components: + - pos: 66.5,4.5 + parent: 2 + type: Transform + - uid: 11826 + components: + - pos: 60.5,4.5 + parent: 2 + type: Transform + - uid: 11847 + components: + - pos: 59.5,-4.5 + parent: 2 + type: Transform + - uid: 11848 + components: + - pos: 59.5,-7.5 + parent: 2 + type: Transform + - uid: 13113 + components: + - pos: 62.5,-7.5 + parent: 2 + type: Transform + - uid: 13114 + components: + - pos: 62.5,-4.5 + parent: 2 + type: Transform +- proto: BedsheetMime + entities: + - uid: 5147 + components: + - pos: 27.5,5.5 + parent: 2 + type: Transform +- proto: BedsheetOrange + entities: + - uid: 2312 + components: + - pos: 41.5,32.5 + parent: 2 + type: Transform + - uid: 2313 + components: + - pos: 41.5,31.5 + parent: 2 + type: Transform +- proto: BedsheetQM + entities: + - uid: 252 + components: + - pos: 13.5,31.5 + parent: 2 + type: Transform +- proto: BedsheetRainbow + entities: + - uid: 12686 + components: + - pos: 107.5,-24.5 + parent: 2 + type: Transform + - uid: 12687 + components: + - pos: 107.5,-23.5 + parent: 2 + type: Transform + - uid: 12708 + components: + - pos: 107.5,-22.5 + parent: 2 + type: Transform +- proto: BedsheetSpawner + entities: + - uid: 5447 + components: + - pos: 71.5,36.5 + parent: 2 + type: Transform + - uid: 5448 + components: + - pos: 71.5,39.5 + parent: 2 + type: Transform + - uid: 6934 + components: + - pos: 20.5,17.5 + parent: 2 + type: Transform + - uid: 6937 + components: + - pos: 22.5,17.5 + parent: 2 + type: Transform + - uid: 12271 + components: + - pos: 14.5,12.5 + parent: 2 + type: Transform + - uid: 12272 + components: + - pos: 15.5,12.5 + parent: 2 + type: Transform + - uid: 12273 + components: + - pos: 16.5,12.5 + parent: 2 + type: Transform + - uid: 12274 + components: + - pos: 16.5,14.5 + parent: 2 + type: Transform + - uid: 12275 + components: + - pos: 15.5,14.5 + parent: 2 + type: Transform + - uid: 12276 + components: + - pos: 14.5,14.5 + parent: 2 + type: Transform + - uid: 12277 + components: + - pos: 14.5,16.5 + parent: 2 + type: Transform + - uid: 12278 + components: + - pos: 15.5,16.5 + parent: 2 + type: Transform + - uid: 12279 + components: + - pos: 16.5,16.5 + parent: 2 + type: Transform +- proto: BikeHorn + entities: + - uid: 9604 + components: + - pos: 27.587091,6.7912045 + parent: 2 + type: Transform +- proto: BlastDoor + entities: + - uid: 55 + components: + - pos: 35.5,-29.5 + parent: 2 + type: Transform + - links: + - 202 + type: DeviceLinkSink + - uid: 150 + components: + - pos: 47.5,12.5 + parent: 2 + type: Transform + - links: + - 10321 + type: DeviceLinkSink + - uid: 384 + components: + - pos: 5.5,23.5 + parent: 2 + type: Transform + - links: + - 7463 + type: DeviceLinkSink + - uid: 4257 + components: + - pos: 35.5,-33.5 + parent: 2 + type: Transform + - links: + - 4245 + type: DeviceLinkSink + - uid: 5351 + components: + - pos: 63.5,29.5 + parent: 2 + type: Transform + - links: + - 8665 + type: DeviceLinkSink + - uid: 5361 + components: + - pos: 64.5,29.5 + parent: 2 + type: Transform + - links: + - 8665 + type: DeviceLinkSink + - uid: 5875 + components: + - pos: -0.5,-27.5 + parent: 2 + type: Transform + - links: + - 5857 + type: DeviceLinkSink + - uid: 7462 + components: + - pos: 5.5,27.5 + parent: 2 + type: Transform + - links: + - 374 + type: DeviceLinkSink + - uid: 7618 + components: + - pos: 5.5,15.5 + parent: 2 + type: Transform + - links: + - 6856 + type: DeviceLinkSink + - uid: 11016 + components: + - pos: 56.5,32.5 + parent: 2 + type: Transform + - uid: 12890 + components: + - pos: 47.5,-49.5 + parent: 2 + type: Transform + - links: + - 13115 + type: DeviceLinkSink + - uid: 12891 + components: + - pos: 48.5,-49.5 + parent: 2 + type: Transform + - links: + - 13115 + type: DeviceLinkSink +- proto: BlastDoorOpen + entities: + - uid: 2834 + components: + - pos: 12.5,-26.5 + parent: 2 + type: Transform + - links: + - 5685 + type: DeviceLinkSink + - uid: 2835 + components: + - pos: 12.5,-27.5 + parent: 2 + type: Transform + - links: + - 5685 + type: DeviceLinkSink +- proto: BlockGameArcade + entities: + - uid: 1812 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,30.5 + parent: 2 + type: Transform + - uid: 6617 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-6.5 + parent: 2 + type: Transform +- proto: Bonfire + entities: + - uid: 12709 + components: + - pos: 114.5,-17.5 + parent: 2 + type: Transform +- proto: BookChefGaming + entities: + - uid: 297 + components: + - pos: 35.484184,-12.498516 + parent: 2 + type: Transform +- proto: BookshelfFilled + entities: + - uid: 229 + components: + - pos: 8.5,6.5 + parent: 2 + type: Transform + - uid: 230 + components: + - pos: 12.5,7.5 + parent: 2 + type: Transform + - uid: 567 + components: + - pos: 8.5,7.5 + parent: 2 + type: Transform + - uid: 578 + components: + - pos: 10.5,6.5 + parent: 2 + type: Transform + - uid: 588 + components: + - pos: 12.5,6.5 + parent: 2 + type: Transform + - uid: 1484 + components: + - pos: 10.5,7.5 + parent: 2 + type: Transform + - uid: 5100 + components: + - pos: 29.5,6.5 + parent: 2 + type: Transform +- proto: BoozeDispenser + entities: + - uid: 2921 + components: + - pos: 66.5,-15.5 + parent: 2 + type: Transform + - containers: + ReagentDispenser-reagentContainerContainer: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + ReagentDispenser-beaker: !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: [] + beakerSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 6525 + components: + - pos: 38.5,-2.5 + parent: 2 + type: Transform +- proto: BorgCharger + entities: + - uid: 12911 + components: + - pos: 44.5,9.5 + parent: 2 + type: Transform + - uid: 13118 + components: + - pos: 45.5,9.5 + parent: 2 + type: Transform +- proto: BoxBeaker + entities: + - uid: 7811 + components: + - pos: 82.3458,-6.40663 + parent: 2 + type: Transform + - uid: 7854 + components: + - pos: 53.666286,-5.369495 + parent: 2 + type: Transform +- proto: BoxBeanbag + entities: + - uid: 8432 + components: + - pos: 41.499786,24.789263 + parent: 2 + type: Transform +- proto: BoxBodyBag + entities: + - uid: 11987 + components: + - pos: 75.5329,-0.39068663 + parent: 2 + type: Transform +- proto: BoxFlare + entities: + - uid: 8690 + components: + - pos: 32.455227,27.041605 + parent: 2 + type: Transform +- proto: BoxFlashbang + entities: + - uid: 8433 + components: + - pos: 40.45291,22.492388 + parent: 2 + type: Transform + - uid: 8689 + components: + - pos: 32.47085,27.36973 + parent: 2 + type: Transform +- proto: BoxFolderBlack + entities: + - uid: 10293 + components: + - pos: 19.70301,-2.360692 + parent: 2 + type: Transform + - uid: 12101 + components: + - pos: 17.589012,40.69852 + parent: 2 + type: Transform +- proto: BoxFolderBlue + entities: + - uid: 8252 + components: + - pos: 20.522104,32.67386 + parent: 2 + type: Transform + - uid: 10290 + components: + - pos: 19.281136,-2.391942 + parent: 2 + type: Transform + - uid: 11892 + components: + - pos: -1.3771312,-12.370462 + parent: 2 + type: Transform +- proto: BoxFolderRed + entities: + - uid: 6900 + components: + - pos: 43.442894,20.146849 + parent: 2 + type: Transform + - uid: 8249 + components: + - pos: 20.53773,30.345732 + parent: 2 + type: Transform + - uid: 10291 + components: + - pos: 19.374886,-2.470067 + parent: 2 + type: Transform + - uid: 11890 + components: + - pos: -1.5646312,-12.245462 + parent: 2 + type: Transform +- proto: BoxFolderWhite + entities: + - uid: 11421 + components: + - pos: 55.05479,-10.418922 + parent: 2 + type: Transform +- proto: BoxFolderYellow + entities: + - uid: 50 + components: + - pos: 12.5,-35.5 + parent: 2 + type: Transform + - uid: 6888 + components: + - pos: 43.630394,20.021849 + parent: 2 + type: Transform + - uid: 10292 + components: + - pos: 19.48426,-2.579442 + parent: 2 + type: Transform +- proto: BoxHandcuff + entities: + - uid: 8434 + components: + - pos: 40.562286,22.648638 + parent: 2 + type: Transform +- proto: BoxHeadset + entities: + - uid: 7269 + components: + - pos: 20.523739,-19.345793 + parent: 2 + type: Transform +- proto: BoxLatexGloves + entities: + - uid: 1910 + components: + - pos: 78.51021,-6.467936 + parent: 2 + type: Transform +- proto: BoxLightMixed + entities: + - uid: 176 + components: + - pos: 6.475267,-3.36308 + parent: 2 + type: Transform + - uid: 2151 + components: + - pos: 10.494422,21.679125 + parent: 2 + type: Transform + - uid: 5733 + components: + - pos: 72.5,-9.5 + parent: 2 + type: Transform + - uid: 10834 + components: + - pos: 65.52434,11.667425 + parent: 2 + type: Transform +- proto: BoxMagazineRifle + entities: + - uid: 6872 + components: + - flags: InContainer + type: MetaData + - parent: 6871 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 6874 + components: + - flags: InContainer + type: MetaData + - parent: 6871 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: BoxMagazineRiflePractice + entities: + - uid: 6876 + components: + - flags: InContainer + type: MetaData + - parent: 6871 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: BoxMagazineRifleRubber + entities: + - uid: 6875 + components: + - flags: InContainer + type: MetaData + - parent: 6871 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: BoxMouthSwab + entities: + - uid: 2091 + components: + - pos: 78.55708,-7.483561 + parent: 2 + type: Transform +- proto: BoxPerformer + entities: + - uid: 9742 + components: + - pos: 19.585323,-12.603194 + parent: 2 + type: Transform +- proto: BoxSechud + entities: + - uid: 8691 + components: + - pos: 41.4396,22.65098 + parent: 2 + type: Transform +- proto: BoxSterileMask + entities: + - uid: 5246 + components: + - pos: 78.44771,-7.014811 + parent: 2 + type: Transform +- proto: BoxSyringe + entities: + - uid: 7810 + components: + - pos: 82.5958,-6.203505 + parent: 2 + type: Transform + - uid: 7855 + components: + - pos: 53.49441,-5.38512 + parent: 2 + type: Transform +- proto: BoxZiptie + entities: + - uid: 8435 + components: + - pos: 41.124786,22.492388 + parent: 2 + type: Transform +- proto: BrbSign + entities: + - uid: 12244 + components: + - pos: 16.370987,-5.343148 + parent: 2 + type: Transform + - uid: 12269 + components: + - pos: 17.562185,24.7009 + parent: 2 + type: Transform +- proto: BriefcaseBrown + entities: + - uid: 10294 + components: + - pos: 16.51551,-5.391942 + parent: 2 + type: Transform +- proto: BriefcaseBrownFilled + entities: + - uid: 7730 + components: + - pos: -2.5535793,-9.338627 + parent: 2 + type: Transform + - uid: 9398 + components: + - pos: 22.465576,48.64228 + parent: 2 + type: Transform +- proto: BrigTimer + entities: + - uid: 7716 + components: + - pos: 31.5,22.5 + parent: 2 + type: Transform + - linkedPorts: + 2258: + - Start: Close + - Timer: AutoClose + - Timer: Open + type: DeviceLinkSource + - uid: 7718 + components: + - pos: 31.5,19.5 + parent: 2 + type: Transform + - linkedPorts: + 2259: + - Start: Close + - Timer: AutoClose + - Timer: Open + type: DeviceLinkSource +- proto: Brutepack + entities: + - uid: 5712 + components: + - pos: 77.71784,-13.269633 + parent: 2 + type: Transform +- proto: Bucket + entities: + - uid: 781 + components: + - pos: 6.4581156,-3.8073697 + parent: 2 + type: Transform + - uid: 1461 + components: + - pos: 6.6768656,-3.9636197 + parent: 2 + type: Transform + - uid: 2382 + components: + - pos: 47.47656,-6.4677296 + parent: 2 + type: Transform +- proto: CableApcExtension + entities: + - uid: 42 + components: + - pos: 11.5,2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 51 + components: + - pos: 6.5,15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 59 + components: + - pos: 8.5,-26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 60 + components: + - pos: 9.5,-26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 92 + components: + - pos: 19.5,-14.5 + parent: 2 + type: Transform + - uid: 255 + components: + - pos: 59.5,-3.5 + parent: 2 + type: Transform + - uid: 420 + components: + - pos: 18.5,-14.5 + parent: 2 + type: Transform + - uid: 454 + components: + - pos: 20.5,-14.5 + parent: 2 + type: Transform + - uid: 877 + components: + - pos: 37.5,-41.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 878 + components: + - pos: 37.5,-42.5 + parent: 2 + type: Transform + - uid: 1173 + components: + - pos: 19.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1194 + components: + - pos: -15.5,15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1307 + components: + - pos: -7.5,15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1323 + components: + - pos: -11.5,15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1327 + components: + - pos: -12.5,15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1328 + components: + - pos: -13.5,15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1329 + components: + - pos: -14.5,15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2135 + components: + - pos: 12.5,18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2146 + components: + - pos: 13.5,18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2403 + components: + - pos: 52.5,-9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3404 + components: + - pos: 22.5,9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3461 + components: + - pos: -17.5,16.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3684 + components: + - pos: 61.5,-7.5 + parent: 2 + type: Transform + - uid: 3685 + components: + - pos: 61.5,-4.5 + parent: 2 + type: Transform + - uid: 3708 + components: + - pos: 22.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4001 + components: + - pos: -9.5,15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4026 + components: + - pos: -8.5,15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4204 + components: + - pos: 56.5,-3.5 + parent: 2 + type: Transform + - uid: 4677 + components: + - pos: 29.5,-37.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4678 + components: + - pos: 29.5,-38.5 + parent: 2 + type: Transform + - uid: 4679 + components: + - pos: 29.5,-39.5 + parent: 2 + type: Transform + - uid: 4680 + components: + - pos: 29.5,-40.5 + parent: 2 + type: Transform + - uid: 4681 + components: + - pos: 29.5,-41.5 + parent: 2 + type: Transform + - uid: 4683 + components: + - pos: 29.5,-42.5 + parent: 2 + type: Transform + - uid: 4684 + components: + - pos: 29.5,-43.5 + parent: 2 + type: Transform + - uid: 4685 + components: + - pos: 29.5,-44.5 + parent: 2 + type: Transform + - uid: 4686 + components: + - pos: 30.5,-39.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4687 + components: + - pos: 31.5,-39.5 + parent: 2 + type: Transform + - uid: 4688 + components: + - pos: 32.5,-39.5 + parent: 2 + type: Transform + - uid: 4689 + components: + - pos: 30.5,-43.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4690 + components: + - pos: 31.5,-43.5 + parent: 2 + type: Transform + - uid: 4704 + components: + - pos: 32.5,-43.5 + parent: 2 + type: Transform + - uid: 4705 + components: + - pos: 33.5,-43.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4706 + components: + - pos: 33.5,-42.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4707 + components: + - pos: 33.5,-44.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4708 + components: + - pos: 31.5,-44.5 + parent: 2 + type: Transform + - uid: 4709 + components: + - pos: 31.5,-45.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4710 + components: + - pos: 32.5,-45.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4711 + components: + - pos: 26.5,-37.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4712 + components: + - pos: 26.5,-36.5 + parent: 2 + type: Transform + - uid: 4713 + components: + - pos: 26.5,-35.5 + parent: 2 + type: Transform + - uid: 4714 + components: + - pos: 27.5,-35.5 + parent: 2 + type: Transform + - uid: 4715 + components: + - pos: 28.5,-35.5 + parent: 2 + type: Transform + - uid: 4716 + components: + - pos: 29.5,-35.5 + parent: 2 + type: Transform + - uid: 4717 + components: + - pos: 30.5,-35.5 + parent: 2 + type: Transform + - uid: 4718 + components: + - pos: 31.5,-35.5 + parent: 2 + type: Transform + - uid: 4719 + components: + - pos: 32.5,-35.5 + parent: 2 + type: Transform + - uid: 4720 + components: + - pos: 25.5,-35.5 + parent: 2 + type: Transform + - uid: 4721 + components: + - pos: 24.5,-35.5 + parent: 2 + type: Transform + - uid: 4722 + components: + - pos: 23.5,-35.5 + parent: 2 + type: Transform + - uid: 4723 + components: + - pos: 22.5,-35.5 + parent: 2 + type: Transform + - uid: 4724 + components: + - pos: 21.5,-35.5 + parent: 2 + type: Transform + - uid: 4725 + components: + - pos: 20.5,-35.5 + parent: 2 + type: Transform + - uid: 4726 + components: + - pos: 19.5,-35.5 + parent: 2 + type: Transform + - uid: 4727 + components: + - pos: 18.5,-35.5 + parent: 2 + type: Transform + - uid: 4728 + components: + - pos: 17.5,-35.5 + parent: 2 + type: Transform + - uid: 4730 + components: + - pos: 16.5,-35.5 + parent: 2 + type: Transform + - uid: 4731 + components: + - pos: 17.5,-34.5 + parent: 2 + type: Transform + - uid: 4732 + components: + - pos: 17.5,-33.5 + parent: 2 + type: Transform + - uid: 4733 + components: + - pos: 17.5,-32.5 + parent: 2 + type: Transform + - uid: 4734 + components: + - pos: 17.5,-31.5 + parent: 2 + type: Transform + - uid: 4735 + components: + - pos: 9.5,-35.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4736 + components: + - pos: 10.5,-35.5 + parent: 2 + type: Transform + - uid: 4737 + components: + - pos: 11.5,-35.5 + parent: 2 + type: Transform + - uid: 4738 + components: + - pos: 12.5,-35.5 + parent: 2 + type: Transform + - uid: 4739 + components: + - pos: 13.5,-35.5 + parent: 2 + type: Transform + - uid: 4740 + components: + - pos: 13.5,-34.5 + parent: 2 + type: Transform + - uid: 4741 + components: + - pos: 13.5,-33.5 + parent: 2 + type: Transform + - uid: 4742 + components: + - pos: 11.5,-34.5 + parent: 2 + type: Transform + - uid: 4745 + components: + - pos: 12.5,-36.5 + parent: 2 + type: Transform + - uid: 4746 + components: + - pos: 22.5,-22.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4747 + components: + - pos: 22.5,-23.5 + parent: 2 + type: Transform + - uid: 4748 + components: + - pos: 22.5,-24.5 + parent: 2 + type: Transform + - uid: 4749 + components: + - pos: 22.5,-25.5 + parent: 2 + type: Transform + - uid: 4750 + components: + - pos: 22.5,-26.5 + parent: 2 + type: Transform + - uid: 4751 + components: + - pos: 21.5,-26.5 + parent: 2 + type: Transform + - uid: 4752 + components: + - pos: 21.5,-27.5 + parent: 2 + type: Transform + - uid: 4753 + components: + - pos: 20.5,-27.5 + parent: 2 + type: Transform + - uid: 4754 + components: + - pos: 19.5,-27.5 + parent: 2 + type: Transform + - uid: 4755 + components: + - pos: 18.5,-27.5 + parent: 2 + type: Transform + - uid: 4756 + components: + - pos: 17.5,-27.5 + parent: 2 + type: Transform + - uid: 4757 + components: + - pos: 16.5,-27.5 + parent: 2 + type: Transform + - uid: 4758 + components: + - pos: 15.5,-27.5 + parent: 2 + type: Transform + - uid: 4759 + components: + - pos: 14.5,-27.5 + parent: 2 + type: Transform + - uid: 4760 + components: + - pos: 14.5,-26.5 + parent: 2 + type: Transform + - uid: 4761 + components: + - pos: 14.5,-25.5 + parent: 2 + type: Transform + - uid: 4762 + components: + - pos: 14.5,-24.5 + parent: 2 + type: Transform + - uid: 4763 + components: + - pos: 14.5,-23.5 + parent: 2 + type: Transform + - uid: 4764 + components: + - pos: 18.5,-26.5 + parent: 2 + type: Transform + - uid: 4765 + components: + - pos: 18.5,-25.5 + parent: 2 + type: Transform + - uid: 4766 + components: + - pos: 18.5,-24.5 + parent: 2 + type: Transform + - uid: 4767 + components: + - pos: -16.5,15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4827 + components: + - pos: -17.5,15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4882 + components: + - pos: 3.5,-27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4884 + components: + - pos: 3.5,-28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4887 + components: + - pos: 3.5,-29.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4888 + components: + - pos: 3.5,-30.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4889 + components: + - pos: 3.5,-31.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4890 + components: + - pos: 2.5,-30.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4891 + components: + - pos: 1.5,-30.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4892 + components: + - pos: 0.5,-30.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4893 + components: + - pos: -0.5,-30.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4894 + components: + - pos: 1.5,-31.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4895 + components: + - pos: 0.5,-29.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4896 + components: + - pos: 0.5,-28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4897 + components: + - pos: 5.5,-35.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4898 + components: + - pos: 4.5,-35.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4899 + components: + - pos: 3.5,-35.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4900 + components: + - pos: 2.5,-35.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4901 + components: + - pos: 1.5,-35.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4902 + components: + - pos: 0.5,-35.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4929 + components: + - pos: 41.5,-37.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4930 + components: + - pos: 41.5,-39.5 + parent: 2 + type: Transform + - uid: 4931 + components: + - pos: 41.5,-38.5 + parent: 2 + type: Transform + - uid: 4932 + components: + - pos: 40.5,-39.5 + parent: 2 + type: Transform + - uid: 4933 + components: + - pos: 39.5,-39.5 + parent: 2 + type: Transform + - uid: 4934 + components: + - pos: 38.5,-39.5 + parent: 2 + type: Transform + - uid: 4935 + components: + - pos: 42.5,-39.5 + parent: 2 + type: Transform + - uid: 4936 + components: + - pos: 43.5,-39.5 + parent: 2 + type: Transform + - uid: 4937 + components: + - pos: 44.5,-39.5 + parent: 2 + type: Transform + - uid: 4938 + components: + - pos: 45.5,-39.5 + parent: 2 + type: Transform + - uid: 4939 + components: + - pos: 46.5,-39.5 + parent: 2 + type: Transform + - uid: 4940 + components: + - pos: 36.5,-21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4941 + components: + - pos: 36.5,-22.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4942 + components: + - pos: 36.5,-23.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4943 + components: + - pos: 36.5,-24.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4944 + components: + - pos: 36.5,-25.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4945 + components: + - pos: 35.5,-25.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4946 + components: + - pos: 34.5,-25.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4947 + components: + - pos: 33.5,-25.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4948 + components: + - pos: 37.5,-25.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4949 + components: + - pos: 38.5,-25.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4950 + components: + - pos: 38.5,-26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4951 + components: + - pos: 38.5,-27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4952 + components: + - pos: 38.5,-28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4953 + components: + - pos: 38.5,-29.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4954 + components: + - pos: 38.5,-30.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4955 + components: + - pos: 38.5,-31.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4956 + components: + - pos: 38.5,-32.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4957 + components: + - pos: 38.5,-33.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4958 + components: + - pos: 38.5,-34.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4959 + components: + - pos: 38.5,-35.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4960 + components: + - pos: 39.5,-35.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4961 + components: + - pos: 32.5,-25.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4962 + components: + - pos: 31.5,-25.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4963 + components: + - pos: 31.5,-26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4964 + components: + - pos: 31.5,-27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4965 + components: + - pos: 31.5,-28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4966 + components: + - pos: 30.5,-27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4967 + components: + - pos: 37.5,-22.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4968 + components: + - pos: 38.5,-22.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4969 + components: + - pos: 39.5,-22.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5014 + components: + - pos: 40.5,-22.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5028 + components: + - pos: 41.5,-22.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5029 + components: + - pos: 42.5,-22.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5043 + components: + - pos: 43.5,-22.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5044 + components: + - pos: 43.5,-23.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5065 + components: + - pos: 43.5,-24.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5066 + components: + - pos: 43.5,-25.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5092 + components: + - pos: 43.5,-26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5093 + components: + - pos: 43.5,-27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5105 + components: + - pos: 43.5,-28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5106 + components: + - pos: 43.5,-29.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5116 + components: + - pos: 43.5,-30.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5117 + components: + - pos: 43.5,-31.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5123 + components: + - pos: 43.5,-32.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5124 + components: + - pos: 43.5,-33.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5125 + components: + - pos: 43.5,-34.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5205 + components: + - pos: 61.5,-5.5 + parent: 2 + type: Transform + - uid: 5211 + components: + - pos: 57.5,-3.5 + parent: 2 + type: Transform + - uid: 5212 + components: + - pos: 61.5,-1.5 + parent: 2 + type: Transform + - uid: 5222 + components: + - pos: 61.5,-3.5 + parent: 2 + type: Transform + - uid: 5223 + components: + - pos: 55.5,-3.5 + parent: 2 + type: Transform + - uid: 5267 + components: + - pos: 60.5,-3.5 + parent: 2 + type: Transform + - uid: 5283 + components: + - pos: -17.5,17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5286 + components: + - pos: -6.5,15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5296 + components: + - pos: -10.5,15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5315 + components: + - pos: 35.5,-39.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5316 + components: + - pos: 35.5,-40.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5345 + components: + - pos: 35.5,-41.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5346 + components: + - pos: 35.5,-42.5 + parent: 2 + type: Transform + - uid: 5355 + components: + - pos: 35.5,-43.5 + parent: 2 + type: Transform + - uid: 5356 + components: + - pos: 35.5,-44.5 + parent: 2 + type: Transform + - uid: 5359 + components: + - pos: 36.5,-43.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5360 + components: + - pos: 37.5,-43.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5367 + components: + - pos: 53.5,21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5371 + components: + - pos: 38.5,-43.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5372 + components: + - pos: 40.5,-43.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5373 + components: + - pos: 39.5,-43.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5374 + components: + - pos: 35.5,-45.5 + parent: 2 + type: Transform + - uid: 5396 + components: + - pos: 40.5,-44.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5577 + components: + - pos: 17.5,-37.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5578 + components: + - pos: 17.5,-38.5 + parent: 2 + type: Transform + - uid: 5579 + components: + - pos: 17.5,-39.5 + parent: 2 + type: Transform + - uid: 5580 + components: + - pos: 17.5,-40.5 + parent: 2 + type: Transform + - uid: 5581 + components: + - pos: 17.5,-41.5 + parent: 2 + type: Transform + - uid: 5582 + components: + - pos: 16.5,-41.5 + parent: 2 + type: Transform + - uid: 5583 + components: + - pos: 15.5,-41.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5584 + components: + - pos: 14.5,-41.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5585 + components: + - pos: 13.5,-41.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5586 + components: + - pos: 13.5,-42.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5587 + components: + - pos: 18.5,-39.5 + parent: 2 + type: Transform + - uid: 5588 + components: + - pos: 19.5,-39.5 + parent: 2 + type: Transform + - uid: 5589 + components: + - pos: 20.5,-39.5 + parent: 2 + type: Transform + - uid: 5590 + components: + - pos: 21.5,-39.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5591 + components: + - pos: 22.5,-39.5 + parent: 2 + type: Transform + - uid: 5592 + components: + - pos: 23.5,-39.5 + parent: 2 + type: Transform + - uid: 5593 + components: + - pos: 24.5,-39.5 + parent: 2 + type: Transform + - uid: 5594 + components: + - pos: 25.5,-39.5 + parent: 2 + type: Transform + - uid: 5595 + components: + - pos: 26.5,-39.5 + parent: 2 + type: Transform + - uid: 5596 + components: + - pos: 25.5,-40.5 + parent: 2 + type: Transform + - uid: 5597 + components: + - pos: 25.5,-41.5 + parent: 2 + type: Transform + - uid: 5598 + components: + - pos: 19.5,-40.5 + parent: 2 + type: Transform + - uid: 5599 + components: + - pos: 19.5,-41.5 + parent: 2 + type: Transform + - uid: 5600 + components: + - pos: 19.5,-42.5 + parent: 2 + type: Transform + - uid: 5601 + components: + - pos: 19.5,-43.5 + parent: 2 + type: Transform + - uid: 5602 + components: + - pos: 23.5,-43.5 + parent: 2 + type: Transform + - uid: 5603 + components: + - pos: 23.5,-42.5 + parent: 2 + type: Transform + - uid: 5604 + components: + - pos: 23.5,-41.5 + parent: 2 + type: Transform + - uid: 5605 + components: + - pos: 23.5,-40.5 + parent: 2 + type: Transform + - uid: 5889 + components: + - pos: 4.5,-28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5890 + components: + - pos: 4.5,-27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5891 + components: + - pos: 4.5,-26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5892 + components: + - pos: 4.5,-25.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5893 + components: + - pos: 4.5,-24.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5894 + components: + - pos: 4.5,-23.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5895 + components: + - pos: 5.5,-23.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5896 + components: + - pos: 6.5,-23.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5897 + components: + - pos: 7.5,-23.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5898 + components: + - pos: 8.5,-23.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6460 + components: + - pos: 18.5,-15.5 + parent: 2 + type: Transform + - uid: 6461 + components: + - pos: 18.5,-16.5 + parent: 2 + type: Transform + - uid: 6462 + components: + - pos: 18.5,-17.5 + parent: 2 + type: Transform + - uid: 6463 + components: + - pos: 17.5,-17.5 + parent: 2 + type: Transform + - uid: 6464 + components: + - pos: 16.5,-17.5 + parent: 2 + type: Transform + - uid: 6465 + components: + - pos: 15.5,-17.5 + parent: 2 + type: Transform + - uid: 6466 + components: + - pos: 14.5,-17.5 + parent: 2 + type: Transform + - uid: 6467 + components: + - pos: 21.5,-14.5 + parent: 2 + type: Transform + - uid: 6468 + components: + - pos: 21.5,-15.5 + parent: 2 + type: Transform + - uid: 6469 + components: + - pos: 21.5,-16.5 + parent: 2 + type: Transform + - uid: 6470 + components: + - pos: 21.5,-17.5 + parent: 2 + type: Transform + - uid: 6471 + components: + - pos: 21.5,-18.5 + parent: 2 + type: Transform + - uid: 6472 + components: + - pos: 22.5,-17.5 + parent: 2 + type: Transform + - uid: 6687 + components: + - pos: 32.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6688 + components: + - pos: 33.5,-11.5 + parent: 2 + type: Transform + - uid: 6689 + components: + - pos: 34.5,-11.5 + parent: 2 + type: Transform + - uid: 6690 + components: + - pos: 35.5,-11.5 + parent: 2 + type: Transform + - uid: 6691 + components: + - pos: 36.5,-11.5 + parent: 2 + type: Transform + - uid: 6692 + components: + - pos: 37.5,-11.5 + parent: 2 + type: Transform + - uid: 6693 + components: + - pos: 38.5,-11.5 + parent: 2 + type: Transform + - uid: 6694 + components: + - pos: 39.5,-11.5 + parent: 2 + type: Transform + - uid: 6695 + components: + - pos: 31.5,-11.5 + parent: 2 + type: Transform + - uid: 6696 + components: + - pos: 30.5,-11.5 + parent: 2 + type: Transform + - uid: 6698 + components: + - pos: 30.5,-10.5 + parent: 2 + type: Transform + - uid: 6699 + components: + - pos: 37.5,-10.5 + parent: 2 + type: Transform + - uid: 6700 + components: + - pos: 39.5,-10.5 + parent: 2 + type: Transform + - uid: 6701 + components: + - pos: 34.5,-10.5 + parent: 2 + type: Transform + - uid: 6702 + components: + - pos: 37.5,-2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6703 + components: + - pos: 37.5,-3.5 + parent: 2 + type: Transform + - uid: 6704 + components: + - pos: 37.5,-4.5 + parent: 2 + type: Transform + - uid: 6705 + components: + - pos: 37.5,-5.5 + parent: 2 + type: Transform + - uid: 6706 + components: + - pos: 37.5,-6.5 + parent: 2 + type: Transform + - uid: 6707 + components: + - pos: 36.5,-6.5 + parent: 2 + type: Transform + - uid: 6708 + components: + - pos: 35.5,-6.5 + parent: 2 + type: Transform + - uid: 6709 + components: + - pos: 34.5,-6.5 + parent: 2 + type: Transform + - uid: 6710 + components: + - pos: 33.5,-6.5 + parent: 2 + type: Transform + - uid: 6711 + components: + - pos: 32.5,-6.5 + parent: 2 + type: Transform + - uid: 6712 + components: + - pos: 31.5,-6.5 + parent: 2 + type: Transform + - uid: 6713 + components: + - pos: 30.5,-6.5 + parent: 2 + type: Transform + - uid: 6714 + components: + - pos: 31.5,-5.5 + parent: 2 + type: Transform + - uid: 6715 + components: + - pos: 31.5,-4.5 + parent: 2 + type: Transform + - uid: 6716 + components: + - pos: 31.5,-3.5 + parent: 2 + type: Transform + - uid: 6718 + components: + - pos: 34.5,-5.5 + parent: 2 + type: Transform + - uid: 6719 + components: + - pos: 34.5,-4.5 + parent: 2 + type: Transform + - uid: 6722 + components: + - pos: 34.5,-3.5 + parent: 2 + type: Transform + - uid: 6723 + components: + - pos: 38.5,-6.5 + parent: 2 + type: Transform + - uid: 6724 + components: + - pos: 39.5,-6.5 + parent: 2 + type: Transform + - uid: 6725 + components: + - pos: 39.5,-5.5 + parent: 2 + type: Transform + - uid: 6726 + components: + - pos: 39.5,-4.5 + parent: 2 + type: Transform + - uid: 6727 + components: + - pos: 39.5,-3.5 + parent: 2 + type: Transform + - uid: 6728 + components: + - pos: 45.5,-8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6732 + components: + - pos: 45.5,-7.5 + parent: 2 + type: Transform + - uid: 6733 + components: + - pos: 45.5,-6.5 + parent: 2 + type: Transform + - uid: 6734 + components: + - pos: 46.5,-6.5 + parent: 2 + type: Transform + - uid: 6735 + components: + - pos: 46.5,-5.5 + parent: 2 + type: Transform + - uid: 6736 + components: + - pos: 46.5,-4.5 + parent: 2 + type: Transform + - uid: 6737 + components: + - pos: 46.5,-3.5 + parent: 2 + type: Transform + - uid: 6738 + components: + - pos: 44.5,-6.5 + parent: 2 + type: Transform + - uid: 6739 + components: + - pos: 43.5,-6.5 + parent: 2 + type: Transform + - uid: 6740 + components: + - pos: 42.5,-6.5 + parent: 2 + type: Transform + - uid: 6741 + components: + - pos: 42.5,-5.5 + parent: 2 + type: Transform + - uid: 6742 + components: + - pos: 42.5,-4.5 + parent: 2 + type: Transform + - uid: 6743 + components: + - pos: 42.5,-3.5 + parent: 2 + type: Transform + - uid: 6744 + components: + - pos: 42.5,-7.5 + parent: 2 + type: Transform + - uid: 6745 + components: + - pos: 42.5,-8.5 + parent: 2 + type: Transform + - uid: 6746 + components: + - pos: 42.5,-9.5 + parent: 2 + type: Transform + - uid: 6747 + components: + - pos: 42.5,-10.5 + parent: 2 + type: Transform + - uid: 6829 + components: + - pos: -4.5,15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6830 + components: + - pos: 3.5,15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6831 + components: + - pos: -2.5,15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6836 + components: + - pos: -0.5,15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6837 + components: + - pos: -1.5,15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6853 + components: + - pos: -3.5,15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6855 + components: + - pos: -5.5,15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6861 + components: + - pos: 8.5,17.5 + parent: 2 + type: Transform + - uid: 6862 + components: + - pos: 8.5,15.5 + parent: 2 + type: Transform + - uid: 6869 + components: + - pos: 10.5,18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6870 + components: + - pos: 9.5,18.5 + parent: 2 + type: Transform + - uid: 6920 + components: + - pos: 10.5,-26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6921 + components: + - pos: 10.5,-27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6922 + components: + - pos: 10.5,-28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6923 + components: + - pos: 10.5,-29.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6924 + components: + - pos: 10.5,-30.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6925 + components: + - pos: 11.5,-30.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6926 + components: + - pos: 12.5,-30.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7040 + components: + - pos: 11.5,3.5 + parent: 2 + type: Transform + - uid: 7041 + components: + - pos: 11.5,4.5 + parent: 2 + type: Transform + - uid: 7042 + components: + - pos: 11.5,5.5 + parent: 2 + type: Transform + - uid: 7043 + components: + - pos: 11.5,6.5 + parent: 2 + type: Transform + - uid: 7044 + components: + - pos: 11.5,7.5 + parent: 2 + type: Transform + - uid: 7045 + components: + - pos: 12.5,5.5 + parent: 2 + type: Transform + - uid: 7046 + components: + - pos: 13.5,5.5 + parent: 2 + type: Transform + - uid: 7047 + components: + - pos: 14.5,5.5 + parent: 2 + type: Transform + - uid: 7048 + components: + - pos: 10.5,5.5 + parent: 2 + type: Transform + - uid: 7049 + components: + - pos: 9.5,5.5 + parent: 2 + type: Transform + - uid: 7050 + components: + - pos: 9.5,6.5 + parent: 2 + type: Transform + - uid: 7051 + components: + - pos: 9.5,4.5 + parent: 2 + type: Transform + - uid: 7052 + components: + - pos: 10.5,11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7053 + components: + - pos: 10.5,12.5 + parent: 2 + type: Transform + - uid: 7054 + components: + - pos: 10.5,13.5 + parent: 2 + type: Transform + - uid: 7055 + components: + - pos: 11.5,13.5 + parent: 2 + type: Transform + - uid: 7056 + components: + - pos: 12.5,13.5 + parent: 2 + type: Transform + - uid: 7057 + components: + - pos: 10.5,10.5 + parent: 2 + type: Transform + - uid: 7058 + components: + - pos: 11.5,10.5 + parent: 2 + type: Transform + - uid: 7059 + components: + - pos: 12.5,10.5 + parent: 2 + type: Transform + - uid: 7060 + components: + - pos: 13.5,10.5 + parent: 2 + type: Transform + - uid: 7061 + components: + - pos: 14.5,10.5 + parent: 2 + type: Transform + - uid: 7062 + components: + - pos: 15.5,10.5 + parent: 2 + type: Transform + - uid: 7063 + components: + - pos: 16.5,10.5 + parent: 2 + type: Transform + - uid: 7064 + components: + - pos: 17.5,10.5 + parent: 2 + type: Transform + - uid: 7065 + components: + - pos: 18.5,10.5 + parent: 2 + type: Transform + - uid: 7066 + components: + - pos: 21.5,5.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7067 + components: + - pos: 20.5,5.5 + parent: 2 + type: Transform + - uid: 7068 + components: + - pos: 19.5,5.5 + parent: 2 + type: Transform + - uid: 7069 + components: + - pos: 18.5,5.5 + parent: 2 + type: Transform + - uid: 7070 + components: + - pos: 17.5,5.5 + parent: 2 + type: Transform + - uid: 7071 + components: + - pos: 19.5,6.5 + parent: 2 + type: Transform + - uid: 7072 + components: + - pos: 19.5,7.5 + parent: 2 + type: Transform + - uid: 7073 + components: + - pos: 20.5,6.5 + parent: 2 + type: Transform + - uid: 7074 + components: + - pos: 22.5,5.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7078 + components: + - pos: 22.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7079 + components: + - pos: 21.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7080 + components: + - pos: 20.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7081 + components: + - pos: 19.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7082 + components: + - pos: 18.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7083 + components: + - pos: 17.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7084 + components: + - pos: 22.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7085 + components: + - pos: 22.5,7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7086 + components: + - pos: 22.5,8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7087 + components: + - pos: 22.5,11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7088 + components: + - pos: 22.5,12.5 + parent: 2 + type: Transform + - uid: 7089 + components: + - pos: 22.5,13.5 + parent: 2 + type: Transform + - uid: 7090 + components: + - pos: 22.5,14.5 + parent: 2 + type: Transform + - uid: 7091 + components: + - pos: 22.5,15.5 + parent: 2 + type: Transform + - uid: 7092 + components: + - pos: 21.5,15.5 + parent: 2 + type: Transform + - uid: 7093 + components: + - pos: 21.5,16.5 + parent: 2 + type: Transform + - uid: 7094 + components: + - pos: 21.5,17.5 + parent: 2 + type: Transform + - uid: 7095 + components: + - pos: 21.5,18.5 + parent: 2 + type: Transform + - uid: 7096 + components: + - pos: 20.5,18.5 + parent: 2 + type: Transform + - uid: 7097 + components: + - pos: 21.5,13.5 + parent: 2 + type: Transform + - uid: 7098 + components: + - pos: 20.5,13.5 + parent: 2 + type: Transform + - uid: 7099 + components: + - pos: 19.5,13.5 + parent: 2 + type: Transform + - uid: 7100 + components: + - pos: 18.5,13.5 + parent: 2 + type: Transform + - uid: 7101 + components: + - pos: 17.5,13.5 + parent: 2 + type: Transform + - uid: 7102 + components: + - pos: 16.5,13.5 + parent: 2 + type: Transform + - uid: 7103 + components: + - pos: 15.5,13.5 + parent: 2 + type: Transform + - uid: 7104 + components: + - pos: 19.5,14.5 + parent: 2 + type: Transform + - uid: 7105 + components: + - pos: 19.5,15.5 + parent: 2 + type: Transform + - uid: 7106 + components: + - pos: 18.5,15.5 + parent: 2 + type: Transform + - uid: 7107 + components: + - pos: 17.5,15.5 + parent: 2 + type: Transform + - uid: 7108 + components: + - pos: 16.5,15.5 + parent: 2 + type: Transform + - uid: 7109 + components: + - pos: 15.5,15.5 + parent: 2 + type: Transform + - uid: 7110 + components: + - pos: 28.5,7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7111 + components: + - pos: 27.5,7.5 + parent: 2 + type: Transform + - uid: 7112 + components: + - pos: 26.5,7.5 + parent: 2 + type: Transform + - uid: 7113 + components: + - pos: 26.5,6.5 + parent: 2 + type: Transform + - uid: 7114 + components: + - pos: 26.5,5.5 + parent: 2 + type: Transform + - uid: 7115 + components: + - pos: 26.5,8.5 + parent: 2 + type: Transform + - uid: 7116 + components: + - pos: 28.5,9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7117 + components: + - pos: 28.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7118 + components: + - pos: 27.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7119 + components: + - pos: 29.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7120 + components: + - pos: 29.5,11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7121 + components: + - pos: 30.5,11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7122 + components: + - pos: 31.5,11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7123 + components: + - pos: 32.5,11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7124 + components: + - pos: 33.5,11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7125 + components: + - pos: 34.5,11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7126 + components: + - pos: 35.5,11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7127 + components: + - pos: 36.5,11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7128 + components: + - pos: 37.5,11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7129 + components: + - pos: 33.5,7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7130 + components: + - pos: 32.5,7.5 + parent: 2 + type: Transform + - uid: 7131 + components: + - pos: 31.5,7.5 + parent: 2 + type: Transform + - uid: 7132 + components: + - pos: 30.5,7.5 + parent: 2 + type: Transform + - uid: 7133 + components: + - pos: 30.5,6.5 + parent: 2 + type: Transform + - uid: 7134 + components: + - pos: 30.5,5.5 + parent: 2 + type: Transform + - uid: 7135 + components: + - pos: 34.5,7.5 + parent: 2 + type: Transform + - uid: 7136 + components: + - pos: 35.5,7.5 + parent: 2 + type: Transform + - uid: 7137 + components: + - pos: 36.5,7.5 + parent: 2 + type: Transform + - uid: 7138 + components: + - pos: 37.5,7.5 + parent: 2 + type: Transform + - uid: 7139 + components: + - pos: 38.5,7.5 + parent: 2 + type: Transform + - uid: 7140 + components: + - pos: 37.5,8.5 + parent: 2 + type: Transform + - uid: 7141 + components: + - pos: 37.5,9.5 + parent: 2 + type: Transform + - uid: 7142 + components: + - pos: 37.5,6.5 + parent: 2 + type: Transform + - uid: 7143 + components: + - pos: 37.5,5.5 + parent: 2 + type: Transform + - uid: 7144 + components: + - pos: 35.5,5.5 + parent: 2 + type: Transform + - uid: 7145 + components: + - pos: 35.5,6.5 + parent: 2 + type: Transform + - uid: 7146 + components: + - pos: 35.5,8.5 + parent: 2 + type: Transform + - uid: 7147 + components: + - pos: 35.5,9.5 + parent: 2 + type: Transform + - uid: 7273 + components: + - pos: 22.5,-28.5 + parent: 2 + type: Transform + - uid: 7275 + components: + - pos: 23.5,-28.5 + parent: 2 + type: Transform + - uid: 7276 + components: + - pos: 24.5,-28.5 + parent: 2 + type: Transform + - uid: 7277 + components: + - pos: 25.5,-28.5 + parent: 2 + type: Transform + - uid: 7278 + components: + - pos: 26.5,-28.5 + parent: 2 + type: Transform + - uid: 7279 + components: + - pos: 25.5,-27.5 + parent: 2 + type: Transform + - uid: 7280 + components: + - pos: 25.5,-26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7281 + components: + - pos: 27.5,-28.5 + parent: 2 + type: Transform + - uid: 7282 + components: + - pos: 27.5,-27.5 + parent: 2 + type: Transform + - uid: 7283 + components: + - pos: 27.5,-26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7284 + components: + - pos: 24.5,-27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7346 + components: + - pos: 8.5,18.5 + parent: 2 + type: Transform + - uid: 7452 + components: + - pos: 13.5,16.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7453 + components: + - pos: 12.5,16.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7454 + components: + - pos: 12.5,17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7588 + components: + - pos: -15.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7589 + components: + - pos: -15.5,-14.5 + parent: 2 + type: Transform + - uid: 7590 + components: + - pos: -15.5,-13.5 + parent: 2 + type: Transform + - uid: 7592 + components: + - pos: -16.5,-13.5 + parent: 2 + type: Transform + - uid: 7593 + components: + - pos: -17.5,-13.5 + parent: 2 + type: Transform + - uid: 7594 + components: + - pos: -18.5,-13.5 + parent: 2 + type: Transform + - uid: 7596 + components: + - pos: -19.5,-13.5 + parent: 2 + type: Transform + - uid: 7597 + components: + - pos: -20.5,-13.5 + parent: 2 + type: Transform + - uid: 7598 + components: + - pos: -19.5,-12.5 + parent: 2 + type: Transform + - uid: 7599 + components: + - pos: -14.5,-13.5 + parent: 2 + type: Transform + - uid: 7600 + components: + - pos: -13.5,-13.5 + parent: 2 + type: Transform + - uid: 7601 + components: + - pos: -12.5,-13.5 + parent: 2 + type: Transform + - uid: 7602 + components: + - pos: -11.5,-13.5 + parent: 2 + type: Transform + - uid: 7603 + components: + - pos: -10.5,-13.5 + parent: 2 + type: Transform + - uid: 7604 + components: + - pos: -9.5,-13.5 + parent: 2 + type: Transform + - uid: 7605 + components: + - pos: -8.5,-13.5 + parent: 2 + type: Transform + - uid: 7606 + components: + - pos: -7.5,-13.5 + parent: 2 + type: Transform + - uid: 7607 + components: + - pos: -6.5,-13.5 + parent: 2 + type: Transform + - uid: 7608 + components: + - pos: -5.5,-13.5 + parent: 2 + type: Transform + - uid: 7609 + components: + - pos: -5.5,-14.5 + parent: 2 + type: Transform + - uid: 7610 + components: + - pos: -5.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7613 + components: + - pos: -12.5,-12.5 + parent: 2 + type: Transform + - uid: 7614 + components: + - pos: -6.5,-12.5 + parent: 2 + type: Transform + - uid: 7615 + components: + - pos: -6.5,-11.5 + parent: 2 + type: Transform + - uid: 7616 + components: + - pos: -6.5,-10.5 + parent: 2 + type: Transform + - uid: 7619 + components: + - pos: -6.5,-9.5 + parent: 2 + type: Transform + - uid: 7620 + components: + - pos: -0.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7621 + components: + - pos: -1.5,-11.5 + parent: 2 + type: Transform + - uid: 7622 + components: + - pos: -2.5,-11.5 + parent: 2 + type: Transform + - uid: 7623 + components: + - pos: -2.5,-10.5 + parent: 2 + type: Transform + - uid: 7624 + components: + - pos: -2.5,-9.5 + parent: 2 + type: Transform + - uid: 7625 + components: + - pos: -2.5,-8.5 + parent: 2 + type: Transform + - uid: 7626 + components: + - pos: -2.5,-7.5 + parent: 2 + type: Transform + - uid: 7627 + components: + - pos: 0.5,-8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7628 + components: + - pos: 1.5,-8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7629 + components: + - pos: 1.5,-9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7630 + components: + - pos: 2.5,-9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7631 + components: + - pos: 3.5,-9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7632 + components: + - pos: 4.5,-9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7633 + components: + - pos: 5.5,-9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7634 + components: + - pos: 1.5,-10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7635 + components: + - pos: 1.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7636 + components: + - pos: 1.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7637 + components: + - pos: 1.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7638 + components: + - pos: 1.5,-14.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7639 + components: + - pos: 1.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7640 + components: + - pos: 1.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7641 + components: + - pos: 1.5,-6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7642 + components: + - pos: 2.5,-4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7643 + components: + - pos: 3.5,-4.5 + parent: 2 + type: Transform + - uid: 7644 + components: + - pos: 4.5,-4.5 + parent: 2 + type: Transform + - uid: 7645 + components: + - pos: 5.5,-4.5 + parent: 2 + type: Transform + - uid: 7646 + components: + - pos: 5.5,-5.5 + parent: 2 + type: Transform + - uid: 7647 + components: + - pos: 0.5,-3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7648 + components: + - pos: -0.5,-3.5 + parent: 2 + type: Transform + - uid: 7649 + components: + - pos: -1.5,-3.5 + parent: 2 + type: Transform + - uid: 7650 + components: + - pos: -2.5,-3.5 + parent: 2 + type: Transform + - uid: 7651 + components: + - pos: -2.5,-4.5 + parent: 2 + type: Transform + - uid: 7652 + components: + - pos: -4.5,-2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7653 + components: + - pos: -5.5,-2.5 + parent: 2 + type: Transform + - uid: 7654 + components: + - pos: -6.5,-2.5 + parent: 2 + type: Transform + - uid: 7655 + components: + - pos: -6.5,-3.5 + parent: 2 + type: Transform + - uid: 7656 + components: + - pos: -6.5,-4.5 + parent: 2 + type: Transform + - uid: 7657 + components: + - pos: -6.5,-5.5 + parent: 2 + type: Transform + - uid: 7658 + components: + - pos: -6.5,-6.5 + parent: 2 + type: Transform + - uid: 7659 + components: + - pos: -6.5,-1.5 + parent: 2 + type: Transform + - uid: 7660 + components: + - pos: -6.5,-0.5 + parent: 2 + type: Transform + - uid: 7661 + components: + - pos: 2.5,15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7665 + components: + - pos: 0.5,15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7673 + components: + - pos: 5.5,15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7677 + components: + - pos: 8.5,16.5 + parent: 2 + type: Transform + - uid: 7680 + components: + - pos: 1.5,15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7682 + components: + - pos: -5.5,-0.5 + parent: 2 + type: Transform + - uid: 7685 + components: + - pos: -4.5,-0.5 + parent: 2 + type: Transform + - uid: 7686 + components: + - pos: -3.5,-0.5 + parent: 2 + type: Transform + - uid: 7687 + components: + - pos: -2.5,-0.5 + parent: 2 + type: Transform + - uid: 7689 + components: + - pos: -1.5,-0.5 + parent: 2 + type: Transform + - uid: 7690 + components: + - pos: -0.5,-0.5 + parent: 2 + type: Transform + - uid: 7691 + components: + - pos: 0.5,-0.5 + parent: 2 + type: Transform + - uid: 7692 + components: + - pos: 1.5,-0.5 + parent: 2 + type: Transform + - uid: 7693 + components: + - pos: 6.5,-10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7694 + components: + - pos: 6.5,-11.5 + parent: 2 + type: Transform + - uid: 7695 + components: + - pos: 6.5,-12.5 + parent: 2 + type: Transform + - uid: 7696 + components: + - pos: 6.5,-13.5 + parent: 2 + type: Transform + - uid: 7697 + components: + - pos: 5.5,-13.5 + parent: 2 + type: Transform + - uid: 7698 + components: + - pos: 4.5,-13.5 + parent: 2 + type: Transform + - uid: 7699 + components: + - pos: 4.5,-14.5 + parent: 2 + type: Transform + - uid: 7700 + components: + - pos: 4.5,-15.5 + parent: 2 + type: Transform + - uid: 7701 + components: + - pos: 4.5,-16.5 + parent: 2 + type: Transform + - uid: 7702 + components: + - pos: 7.5,-12.5 + parent: 2 + type: Transform + - uid: 7703 + components: + - pos: 8.5,-12.5 + parent: 2 + type: Transform + - uid: 7704 + components: + - pos: 5.5,-11.5 + parent: 2 + type: Transform + - uid: 7705 + components: + - pos: 4.5,-11.5 + parent: 2 + type: Transform + - uid: 7714 + components: + - pos: 7.5,15.5 + parent: 2 + type: Transform + - uid: 7885 + components: + - pos: 4.5,15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7964 + components: + - pos: 7.5,17.5 + parent: 2 + type: Transform + - uid: 7965 + components: + - pos: 6.5,17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7966 + components: + - pos: 5.5,17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7967 + components: + - pos: 5.5,18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8024 + components: + - pos: 14.5,18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8025 + components: + - pos: 15.5,18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8026 + components: + - pos: 16.5,18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8027 + components: + - pos: 17.5,18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8028 + components: + - pos: 16.5,23.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8029 + components: + - pos: 17.5,23.5 + parent: 2 + type: Transform + - uid: 8030 + components: + - pos: 18.5,23.5 + parent: 2 + type: Transform + - uid: 8031 + components: + - pos: 19.5,23.5 + parent: 2 + type: Transform + - uid: 8032 + components: + - pos: 19.5,22.5 + parent: 2 + type: Transform + - uid: 8033 + components: + - pos: 19.5,21.5 + parent: 2 + type: Transform + - uid: 8034 + components: + - pos: 18.5,20.5 + parent: 2 + type: Transform + - uid: 8035 + components: + - pos: 18.5,21.5 + parent: 2 + type: Transform + - uid: 8036 + components: + - pos: 20.5,21.5 + parent: 2 + type: Transform + - uid: 8037 + components: + - pos: 21.5,21.5 + parent: 2 + type: Transform + - uid: 8038 + components: + - pos: 22.5,21.5 + parent: 2 + type: Transform + - uid: 8039 + components: + - pos: 23.5,21.5 + parent: 2 + type: Transform + - uid: 8040 + components: + - pos: 23.5,22.5 + parent: 2 + type: Transform + - uid: 8041 + components: + - pos: 23.5,23.5 + parent: 2 + type: Transform + - uid: 8042 + components: + - pos: 23.5,24.5 + parent: 2 + type: Transform + - uid: 8043 + components: + - pos: 22.5,24.5 + parent: 2 + type: Transform + - uid: 8044 + components: + - pos: 16.5,25.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8045 + components: + - pos: 15.5,25.5 + parent: 2 + type: Transform + - uid: 8046 + components: + - pos: 14.5,25.5 + parent: 2 + type: Transform + - uid: 8047 + components: + - pos: 13.5,25.5 + parent: 2 + type: Transform + - uid: 8048 + components: + - pos: 12.5,25.5 + parent: 2 + type: Transform + - uid: 8049 + components: + - pos: 11.5,25.5 + parent: 2 + type: Transform + - uid: 8050 + components: + - pos: 10.5,25.5 + parent: 2 + type: Transform + - uid: 8051 + components: + - pos: 9.5,25.5 + parent: 2 + type: Transform + - uid: 8052 + components: + - pos: 8.5,25.5 + parent: 2 + type: Transform + - uid: 8053 + components: + - pos: 7.5,25.5 + parent: 2 + type: Transform + - uid: 8054 + components: + - pos: 7.5,24.5 + parent: 2 + type: Transform + - uid: 8055 + components: + - pos: 6.5,24.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8056 + components: + - pos: 5.5,24.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8057 + components: + - pos: 7.5,26.5 + parent: 2 + type: Transform + - uid: 8058 + components: + - pos: 6.5,26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8059 + components: + - pos: 5.5,26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8060 + components: + - pos: 8.5,24.5 + parent: 2 + type: Transform + - uid: 8061 + components: + - pos: 8.5,23.5 + parent: 2 + type: Transform + - uid: 8062 + components: + - pos: 8.5,22.5 + parent: 2 + type: Transform + - uid: 8063 + components: + - pos: 8.5,21.5 + parent: 2 + type: Transform + - uid: 8064 + components: + - pos: 12.5,24.5 + parent: 2 + type: Transform + - uid: 8065 + components: + - pos: 12.5,23.5 + parent: 2 + type: Transform + - uid: 8066 + components: + - pos: 12.5,22.5 + parent: 2 + type: Transform + - uid: 8067 + components: + - pos: 12.5,21.5 + parent: 2 + type: Transform + - uid: 8068 + components: + - pos: 14.5,24.5 + parent: 2 + type: Transform + - uid: 8069 + components: + - pos: 14.5,23.5 + parent: 2 + type: Transform + - uid: 8070 + components: + - pos: 14.5,22.5 + parent: 2 + type: Transform + - uid: 8071 + components: + - pos: 12.5,26.5 + parent: 2 + type: Transform + - uid: 8072 + components: + - pos: 12.5,27.5 + parent: 2 + type: Transform + - uid: 8073 + components: + - pos: 12.5,28.5 + parent: 2 + type: Transform + - uid: 8074 + components: + - pos: 12.5,29.5 + parent: 2 + type: Transform + - uid: 8075 + components: + - pos: 12.5,30.5 + parent: 2 + type: Transform + - uid: 8076 + components: + - pos: 12.5,31.5 + parent: 2 + type: Transform + - uid: 8077 + components: + - pos: 9.5,26.5 + parent: 2 + type: Transform + - uid: 8078 + components: + - pos: 9.5,27.5 + parent: 2 + type: Transform + - uid: 8079 + components: + - pos: 9.5,28.5 + parent: 2 + type: Transform + - uid: 8080 + components: + - pos: 9.5,29.5 + parent: 2 + type: Transform + - uid: 8081 + components: + - pos: 9.5,30.5 + parent: 2 + type: Transform + - uid: 8082 + components: + - pos: 9.5,31.5 + parent: 2 + type: Transform + - uid: 8083 + components: + - pos: 8.5,31.5 + parent: 2 + type: Transform + - uid: 8084 + components: + - pos: 7.5,31.5 + parent: 2 + type: Transform + - uid: 8085 + components: + - pos: 6.5,31.5 + parent: 2 + type: Transform + - uid: 8086 + components: + - pos: 15.5,34.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8087 + components: + - pos: 15.5,33.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8088 + components: + - pos: 15.5,32.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8089 + components: + - pos: 15.5,31.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8090 + components: + - pos: 15.5,30.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8091 + components: + - pos: 15.5,29.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8092 + components: + - pos: 15.5,28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8093 + components: + - pos: 15.5,27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8094 + components: + - pos: 16.5,27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8095 + components: + - pos: 17.5,27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8096 + components: + - pos: 18.5,27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8097 + components: + - pos: 19.5,27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8098 + components: + - pos: 20.5,27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8099 + components: + - pos: 21.5,27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8100 + components: + - pos: 22.5,27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8101 + components: + - pos: 14.5,33.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8102 + components: + - pos: 13.5,33.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8103 + components: + - pos: 12.5,33.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8104 + components: + - pos: 11.5,33.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8105 + components: + - pos: 11.5,34.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8106 + components: + - pos: 11.5,35.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8107 + components: + - pos: 11.5,36.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8108 + components: + - pos: 13.5,35.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8109 + components: + - pos: 13.5,36.5 + parent: 2 + type: Transform + - uid: 8110 + components: + - pos: 13.5,37.5 + parent: 2 + type: Transform + - uid: 8111 + components: + - pos: 13.5,38.5 + parent: 2 + type: Transform + - uid: 8112 + components: + - pos: 14.5,38.5 + parent: 2 + type: Transform + - uid: 8113 + components: + - pos: 14.5,39.5 + parent: 2 + type: Transform + - uid: 8114 + components: + - pos: 14.5,40.5 + parent: 2 + type: Transform + - uid: 8121 + components: + - pos: 7.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8122 + components: + - pos: 6.5,3.5 + parent: 2 + type: Transform + - uid: 8123 + components: + - pos: 5.5,3.5 + parent: 2 + type: Transform + - uid: 8124 + components: + - pos: 4.5,3.5 + parent: 2 + type: Transform + - uid: 8125 + components: + - pos: 4.5,4.5 + parent: 2 + type: Transform + - uid: 8126 + components: + - pos: 4.5,5.5 + parent: 2 + type: Transform + - uid: 8127 + components: + - pos: 4.5,6.5 + parent: 2 + type: Transform + - uid: 8128 + components: + - pos: 4.5,7.5 + parent: 2 + type: Transform + - uid: 8131 + components: + - pos: 4.5,8.5 + parent: 2 + type: Transform + - uid: 8132 + components: + - pos: 4.5,9.5 + parent: 2 + type: Transform + - uid: 8133 + components: + - pos: 4.5,10.5 + parent: 2 + type: Transform + - uid: 8134 + components: + - pos: 4.5,11.5 + parent: 2 + type: Transform + - uid: 8135 + components: + - pos: 4.5,12.5 + parent: 2 + type: Transform + - uid: 8136 + components: + - pos: 4.5,2.5 + parent: 2 + type: Transform + - uid: 8137 + components: + - pos: 4.5,1.5 + parent: 2 + type: Transform + - uid: 8138 + components: + - pos: 4.5,0.5 + parent: 2 + type: Transform + - uid: 8140 + components: + - pos: 4.5,-0.5 + parent: 2 + type: Transform + - uid: 8141 + components: + - pos: 4.5,-1.5 + parent: 2 + type: Transform + - uid: 8142 + components: + - pos: 5.5,-0.5 + parent: 2 + type: Transform + - uid: 8143 + components: + - pos: 6.5,-0.5 + parent: 2 + type: Transform + - uid: 8144 + components: + - pos: 7.5,-0.5 + parent: 2 + type: Transform + - uid: 8146 + components: + - pos: 8.5,-0.5 + parent: 2 + type: Transform + - uid: 8147 + components: + - pos: 9.5,-0.5 + parent: 2 + type: Transform + - uid: 8148 + components: + - pos: 10.5,-0.5 + parent: 2 + type: Transform + - uid: 8149 + components: + - pos: 11.5,-0.5 + parent: 2 + type: Transform + - uid: 8150 + components: + - pos: 12.5,-0.5 + parent: 2 + type: Transform + - uid: 8151 + components: + - pos: 13.5,-0.5 + parent: 2 + type: Transform + - uid: 8152 + components: + - pos: 14.5,-0.5 + parent: 2 + type: Transform + - uid: 8153 + components: + - pos: 15.5,-0.5 + parent: 2 + type: Transform + - uid: 8154 + components: + - pos: 12.5,-1.5 + parent: 2 + type: Transform + - uid: 8155 + components: + - pos: 5.5,10.5 + parent: 2 + type: Transform + - uid: 8156 + components: + - pos: 6.5,10.5 + parent: 2 + type: Transform + - uid: 8285 + components: + - pos: 41.5,21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8305 + components: + - pos: 52.5,-8.5 + parent: 2 + type: Transform + - uid: 8347 + components: + - pos: 63.5,48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8389 + components: + - pos: 36.5,29.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8391 + components: + - pos: 36.5,30.5 + parent: 2 + type: Transform + - uid: 8392 + components: + - pos: 37.5,30.5 + parent: 2 + type: Transform + - uid: 8393 + components: + - pos: 38.5,30.5 + parent: 2 + type: Transform + - uid: 8394 + components: + - pos: 40.5,30.5 + parent: 2 + type: Transform + - uid: 8395 + components: + - pos: 40.5,31.5 + parent: 2 + type: Transform + - uid: 8396 + components: + - pos: 39.5,30.5 + parent: 2 + type: Transform + - uid: 8397 + components: + - pos: 40.5,32.5 + parent: 2 + type: Transform + - uid: 8398 + components: + - pos: 40.5,33.5 + parent: 2 + type: Transform + - uid: 8399 + components: + - pos: 40.5,34.5 + parent: 2 + type: Transform + - uid: 8400 + components: + - pos: 39.5,34.5 + parent: 2 + type: Transform + - uid: 8401 + components: + - pos: 38.5,34.5 + parent: 2 + type: Transform + - uid: 8402 + components: + - pos: 37.5,34.5 + parent: 2 + type: Transform + - uid: 8403 + components: + - pos: 40.5,35.5 + parent: 2 + type: Transform + - uid: 8404 + components: + - pos: 41.5,35.5 + parent: 2 + type: Transform + - uid: 8405 + components: + - pos: 41.5,36.5 + parent: 2 + type: Transform + - uid: 8406 + components: + - pos: 41.5,32.5 + parent: 2 + type: Transform + - uid: 8407 + components: + - pos: 42.5,32.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8408 + components: + - pos: 42.5,31.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8409 + components: + - pos: 42.5,33.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8448 + components: + - pos: 41.5,20.5 + parent: 2 + type: Transform + - uid: 8449 + components: + - pos: 41.5,19.5 + parent: 2 + type: Transform + - uid: 8450 + components: + - pos: 41.5,18.5 + parent: 2 + type: Transform + - uid: 8451 + components: + - pos: 41.5,17.5 + parent: 2 + type: Transform + - uid: 8452 + components: + - pos: 41.5,16.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8453 + components: + - pos: 42.5,17.5 + parent: 2 + type: Transform + - uid: 8454 + components: + - pos: 43.5,17.5 + parent: 2 + type: Transform + - uid: 8455 + components: + - pos: 43.5,16.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8472 + components: + - pos: 37.5,25.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8473 + components: + - pos: 36.5,25.5 + parent: 2 + type: Transform + - uid: 8474 + components: + - pos: 35.5,25.5 + parent: 2 + type: Transform + - uid: 8475 + components: + - pos: 34.5,25.5 + parent: 2 + type: Transform + - uid: 8476 + components: + - pos: 33.5,25.5 + parent: 2 + type: Transform + - uid: 8477 + components: + - pos: 33.5,26.5 + parent: 2 + type: Transform + - uid: 8478 + components: + - pos: 33.5,27.5 + parent: 2 + type: Transform + - uid: 8479 + components: + - pos: 33.5,28.5 + parent: 2 + type: Transform + - uid: 8480 + components: + - pos: 33.5,29.5 + parent: 2 + type: Transform + - uid: 8481 + components: + - pos: 32.5,29.5 + parent: 2 + type: Transform + - uid: 8482 + components: + - pos: 31.5,29.5 + parent: 2 + type: Transform + - uid: 8483 + components: + - pos: 30.5,29.5 + parent: 2 + type: Transform + - uid: 8484 + components: + - pos: 32.5,25.5 + parent: 2 + type: Transform + - uid: 8485 + components: + - pos: 31.5,25.5 + parent: 2 + type: Transform + - uid: 8486 + components: + - pos: 30.5,25.5 + parent: 2 + type: Transform + - uid: 8487 + components: + - pos: 29.5,25.5 + parent: 2 + type: Transform + - uid: 8488 + components: + - pos: 33.5,24.5 + parent: 2 + type: Transform + - uid: 8489 + components: + - pos: 33.5,23.5 + parent: 2 + type: Transform + - uid: 8490 + components: + - pos: 33.5,22.5 + parent: 2 + type: Transform + - uid: 8491 + components: + - pos: 33.5,21.5 + parent: 2 + type: Transform + - uid: 8492 + components: + - pos: 33.5,20.5 + parent: 2 + type: Transform + - uid: 8493 + components: + - pos: 33.5,19.5 + parent: 2 + type: Transform + - uid: 8494 + components: + - pos: 33.5,18.5 + parent: 2 + type: Transform + - uid: 8495 + components: + - pos: 33.5,17.5 + parent: 2 + type: Transform + - uid: 8496 + components: + - pos: 40.5,18.5 + parent: 2 + type: Transform + - uid: 8497 + components: + - pos: 39.5,18.5 + parent: 2 + type: Transform + - uid: 8498 + components: + - pos: 38.5,18.5 + parent: 2 + type: Transform + - uid: 8499 + components: + - pos: 37.5,18.5 + parent: 2 + type: Transform + - uid: 8500 + components: + - pos: 34.5,18.5 + parent: 2 + type: Transform + - uid: 8501 + components: + - pos: 32.5,18.5 + parent: 2 + type: Transform + - uid: 8502 + components: + - pos: 31.5,18.5 + parent: 2 + type: Transform + - uid: 8503 + components: + - pos: 30.5,18.5 + parent: 2 + type: Transform + - uid: 8504 + components: + - pos: 29.5,18.5 + parent: 2 + type: Transform + - uid: 8505 + components: + - pos: 32.5,20.5 + parent: 2 + type: Transform + - uid: 8506 + components: + - pos: 31.5,20.5 + parent: 2 + type: Transform + - uid: 8507 + components: + - pos: 30.5,20.5 + parent: 2 + type: Transform + - uid: 8508 + components: + - pos: 29.5,20.5 + parent: 2 + type: Transform + - uid: 8509 + components: + - pos: 34.5,22.5 + parent: 2 + type: Transform + - uid: 8510 + components: + - pos: 35.5,22.5 + parent: 2 + type: Transform + - uid: 8511 + components: + - pos: 36.5,22.5 + parent: 2 + type: Transform + - uid: 8512 + components: + - pos: 34.5,28.5 + parent: 2 + type: Transform + - uid: 8513 + components: + - pos: 32.5,23.5 + parent: 2 + type: Transform + - uid: 8514 + components: + - pos: 31.5,23.5 + parent: 2 + type: Transform + - uid: 8515 + components: + - pos: 30.5,23.5 + parent: 2 + type: Transform + - uid: 8516 + components: + - pos: 29.5,23.5 + parent: 2 + type: Transform + - uid: 8517 + components: + - pos: 43.5,26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8518 + components: + - pos: 43.5,25.5 + parent: 2 + type: Transform + - uid: 8519 + components: + - pos: 43.5,24.5 + parent: 2 + type: Transform + - uid: 8520 + components: + - pos: 43.5,23.5 + parent: 2 + type: Transform + - uid: 8521 + components: + - pos: 42.5,23.5 + parent: 2 + type: Transform + - uid: 8522 + components: + - pos: 41.5,23.5 + parent: 2 + type: Transform + - uid: 8523 + components: + - pos: 40.5,23.5 + parent: 2 + type: Transform + - uid: 8524 + components: + - pos: 39.5,23.5 + parent: 2 + type: Transform + - uid: 8525 + components: + - pos: 39.5,22.5 + parent: 2 + type: Transform + - uid: 8531 + components: + - pos: 40.5,24.5 + parent: 2 + type: Transform + - uid: 8532 + components: + - pos: 40.5,25.5 + parent: 2 + type: Transform + - uid: 8533 + components: + - pos: 40.5,26.5 + parent: 2 + type: Transform + - uid: 8534 + components: + - pos: 40.5,27.5 + parent: 2 + type: Transform + - uid: 8535 + components: + - pos: 39.5,26.5 + parent: 2 + type: Transform + - uid: 8703 + components: + - pos: 47.5,28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8704 + components: + - pos: 47.5,27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8705 + components: + - pos: 47.5,26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8706 + components: + - pos: 47.5,25.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8707 + components: + - pos: 47.5,24.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8710 + components: + - pos: 47.5,23.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8712 + components: + - pos: 47.5,22.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8713 + components: + - pos: 46.5,27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8714 + components: + - pos: 46.5,28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8715 + components: + - pos: 46.5,29.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8716 + components: + - pos: 46.5,30.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8717 + components: + - pos: 46.5,31.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8718 + components: + - pos: 46.5,32.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8730 + components: + - pos: 46.5,33.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8731 + components: + - pos: 46.5,34.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8759 + components: + - pos: 46.5,35.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8766 + components: + - pos: 46.5,36.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8779 + components: + - pos: 46.5,37.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8791 + components: + - pos: 46.5,38.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8795 + components: + - pos: 46.5,39.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8796 + components: + - pos: 45.5,39.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8797 + components: + - pos: 45.5,40.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8798 + components: + - pos: 45.5,41.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9131 + components: + - pos: 20.5,34.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9132 + components: + - pos: 20.5,33.5 + parent: 2 + type: Transform + - uid: 9133 + components: + - pos: 20.5,32.5 + parent: 2 + type: Transform + - uid: 9134 + components: + - pos: 20.5,31.5 + parent: 2 + type: Transform + - uid: 9135 + components: + - pos: 19.5,31.5 + parent: 2 + type: Transform + - uid: 9137 + components: + - pos: 18.5,31.5 + parent: 2 + type: Transform + - uid: 9140 + components: + - pos: 21.5,31.5 + parent: 2 + type: Transform + - uid: 9141 + components: + - pos: 22.5,31.5 + parent: 2 + type: Transform + - uid: 9142 + components: + - pos: 23.5,31.5 + parent: 2 + type: Transform + - uid: 9143 + components: + - pos: 23.5,30.5 + parent: 2 + type: Transform + - uid: 9144 + components: + - pos: 23.5,32.5 + parent: 2 + type: Transform + - uid: 9145 + components: + - pos: 21.5,30.5 + parent: 2 + type: Transform + - uid: 9146 + components: + - pos: 21.5,32.5 + parent: 2 + type: Transform + - uid: 9147 + components: + - pos: 18.5,30.5 + parent: 2 + type: Transform + - uid: 9148 + components: + - pos: 18.5,32.5 + parent: 2 + type: Transform + - uid: 9149 + components: + - pos: 20.5,40.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9150 + components: + - pos: 19.5,40.5 + parent: 2 + type: Transform + - uid: 9151 + components: + - pos: 18.5,40.5 + parent: 2 + type: Transform + - uid: 9152 + components: + - pos: 18.5,41.5 + parent: 2 + type: Transform + - uid: 9153 + components: + - pos: 18.5,39.5 + parent: 2 + type: Transform + - uid: 9154 + components: + - pos: 28.5,33.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9155 + components: + - pos: 27.5,33.5 + parent: 2 + type: Transform + - uid: 9156 + components: + - pos: 26.5,33.5 + parent: 2 + type: Transform + - uid: 9157 + components: + - pos: 26.5,34.5 + parent: 2 + type: Transform + - uid: 9158 + components: + - pos: 26.5,35.5 + parent: 2 + type: Transform + - uid: 9159 + components: + - pos: 26.5,36.5 + parent: 2 + type: Transform + - uid: 9160 + components: + - pos: 25.5,36.5 + parent: 2 + type: Transform + - uid: 9161 + components: + - pos: 24.5,36.5 + parent: 2 + type: Transform + - uid: 9162 + components: + - pos: 23.5,36.5 + parent: 2 + type: Transform + - uid: 9163 + components: + - pos: 22.5,36.5 + parent: 2 + type: Transform + - uid: 9164 + components: + - pos: 21.5,36.5 + parent: 2 + type: Transform + - uid: 9165 + components: + - pos: 20.5,36.5 + parent: 2 + type: Transform + - uid: 9166 + components: + - pos: 19.5,36.5 + parent: 2 + type: Transform + - uid: 9167 + components: + - pos: 18.5,36.5 + parent: 2 + type: Transform + - uid: 9168 + components: + - pos: 26.5,32.5 + parent: 2 + type: Transform + - uid: 9169 + components: + - pos: 26.5,31.5 + parent: 2 + type: Transform + - uid: 9170 + components: + - pos: 26.5,30.5 + parent: 2 + type: Transform + - uid: 9171 + components: + - pos: 26.5,29.5 + parent: 2 + type: Transform + - uid: 9172 + components: + - pos: 26.5,28.5 + parent: 2 + type: Transform + - uid: 9173 + components: + - pos: 26.5,27.5 + parent: 2 + type: Transform + - uid: 9174 + components: + - pos: 26.5,26.5 + parent: 2 + type: Transform + - uid: 9175 + components: + - pos: 30.5,38.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9176 + components: + - pos: 30.5,37.5 + parent: 2 + type: Transform + - uid: 9177 + components: + - pos: 30.5,36.5 + parent: 2 + type: Transform + - uid: 9178 + components: + - pos: 30.5,35.5 + parent: 2 + type: Transform + - uid: 9179 + components: + - pos: 30.5,34.5 + parent: 2 + type: Transform + - uid: 9180 + components: + - pos: 25.5,43.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9181 + components: + - pos: 25.5,44.5 + parent: 2 + type: Transform + - uid: 9182 + components: + - pos: 25.5,45.5 + parent: 2 + type: Transform + - uid: 9183 + components: + - pos: 25.5,46.5 + parent: 2 + type: Transform + - uid: 9184 + components: + - pos: 24.5,45.5 + parent: 2 + type: Transform + - uid: 9185 + components: + - pos: 23.5,45.5 + parent: 2 + type: Transform + - uid: 9186 + components: + - pos: 22.5,45.5 + parent: 2 + type: Transform + - uid: 9187 + components: + - pos: 21.5,45.5 + parent: 2 + type: Transform + - uid: 9188 + components: + - pos: 20.5,45.5 + parent: 2 + type: Transform + - uid: 9189 + components: + - pos: 22.5,44.5 + parent: 2 + type: Transform + - uid: 9190 + components: + - pos: 22.5,43.5 + parent: 2 + type: Transform + - uid: 9191 + components: + - pos: 22.5,42.5 + parent: 2 + type: Transform + - uid: 9192 + components: + - pos: 22.5,41.5 + parent: 2 + type: Transform + - uid: 9193 + components: + - pos: 22.5,40.5 + parent: 2 + type: Transform + - uid: 9194 + components: + - pos: 22.5,46.5 + parent: 2 + type: Transform + - uid: 9195 + components: + - pos: 26.5,45.5 + parent: 2 + type: Transform + - uid: 9196 + components: + - pos: 27.5,45.5 + parent: 2 + type: Transform + - uid: 9197 + components: + - pos: 28.5,45.5 + parent: 2 + type: Transform + - uid: 9198 + components: + - pos: 29.5,45.5 + parent: 2 + type: Transform + - uid: 9199 + components: + - pos: 30.5,45.5 + parent: 2 + type: Transform + - uid: 9200 + components: + - pos: 31.5,45.5 + parent: 2 + type: Transform + - uid: 9201 + components: + - pos: 30.5,46.5 + parent: 2 + type: Transform + - uid: 9202 + components: + - pos: 30.5,47.5 + parent: 2 + type: Transform + - uid: 9203 + components: + - pos: 33.5,44.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9204 + components: + - pos: 33.5,43.5 + parent: 2 + type: Transform + - uid: 9205 + components: + - pos: 33.5,42.5 + parent: 2 + type: Transform + - uid: 9206 + components: + - pos: 33.5,41.5 + parent: 2 + type: Transform + - uid: 9207 + components: + - pos: 33.5,40.5 + parent: 2 + type: Transform + - uid: 9208 + components: + - pos: 32.5,40.5 + parent: 2 + type: Transform + - uid: 9209 + components: + - pos: 31.5,40.5 + parent: 2 + type: Transform + - uid: 9210 + components: + - pos: 32.5,42.5 + parent: 2 + type: Transform + - uid: 9211 + components: + - pos: 31.5,42.5 + parent: 2 + type: Transform + - uid: 9212 + components: + - pos: 34.5,40.5 + parent: 2 + type: Transform + - uid: 9213 + components: + - pos: 35.5,40.5 + parent: 2 + type: Transform + - uid: 9214 + components: + - pos: 36.5,40.5 + parent: 2 + type: Transform + - uid: 9215 + components: + - pos: 36.5,41.5 + parent: 2 + type: Transform + - uid: 9216 + components: + - pos: 36.5,42.5 + parent: 2 + type: Transform + - uid: 9224 + components: + - pos: 23.5,41.5 + parent: 2 + type: Transform + - uid: 9225 + components: + - pos: 24.5,41.5 + parent: 2 + type: Transform + - uid: 9226 + components: + - pos: 25.5,41.5 + parent: 2 + type: Transform + - uid: 9227 + components: + - pos: 26.5,41.5 + parent: 2 + type: Transform + - uid: 9228 + components: + - pos: 27.5,41.5 + parent: 2 + type: Transform + - uid: 9229 + components: + - pos: 28.5,41.5 + parent: 2 + type: Transform + - uid: 9230 + components: + - pos: 28.5,42.5 + parent: 2 + type: Transform + - uid: 9231 + components: + - pos: 28.5,43.5 + parent: 2 + type: Transform + - uid: 9232 + components: + - pos: 28.5,44.5 + parent: 2 + type: Transform + - uid: 9233 + components: + - pos: 28.5,32.5 + parent: 2 + type: Transform + - uid: 9234 + components: + - pos: 29.5,32.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9235 + components: + - pos: 30.5,32.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9236 + components: + - pos: 31.5,32.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9237 + components: + - pos: 32.5,32.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9238 + components: + - pos: 33.5,32.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9239 + components: + - pos: 34.5,32.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9240 + components: + - pos: 34.5,33.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9241 + components: + - pos: 34.5,34.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9242 + components: + - pos: 34.5,35.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9243 + components: + - pos: 34.5,36.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9244 + components: + - pos: 34.5,37.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9245 + components: + - pos: 35.5,37.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9246 + components: + - pos: 35.5,38.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9247 + components: + - pos: 36.5,38.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9248 + components: + - pos: 37.5,38.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9249 + components: + - pos: 38.5,38.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9250 + components: + - pos: 39.5,38.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9251 + components: + - pos: 39.5,39.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9252 + components: + - pos: 39.5,40.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9267 + components: + - pos: 69.5,47.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9268 + components: + - pos: 69.5,45.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9269 + components: + - pos: 69.5,46.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9270 + components: + - pos: 70.5,45.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9271 + components: + - pos: 71.5,45.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9272 + components: + - pos: 72.5,45.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9273 + components: + - pos: 73.5,45.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9274 + components: + - pos: 66.5,45.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9275 + components: + - pos: 66.5,46.5 + parent: 2 + type: Transform + - uid: 9276 + components: + - pos: 66.5,44.5 + parent: 2 + type: Transform + - uid: 9277 + components: + - pos: 67.5,44.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9278 + components: + - pos: 65.5,46.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9279 + components: + - pos: 64.5,46.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9280 + components: + - pos: 63.5,46.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9281 + components: + - pos: 63.5,47.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9282 + components: + - pos: 62.5,48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9283 + components: + - pos: 61.5,48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9284 + components: + - pos: 60.5,48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9285 + components: + - pos: 59.5,48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9286 + components: + - pos: 58.5,48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9287 + components: + - pos: 57.5,48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9288 + components: + - pos: 56.5,48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9289 + components: + - pos: 55.5,48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9290 + components: + - pos: 54.5,48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9291 + components: + - pos: 53.5,48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9292 + components: + - pos: 52.5,48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9293 + components: + - pos: 51.5,48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9294 + components: + - pos: 50.5,48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9295 + components: + - pos: 49.5,48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9296 + components: + - pos: 56.5,49.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9297 + components: + - pos: 56.5,50.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9298 + components: + - pos: 44.5,45.5 + parent: 2 + type: Transform + - uid: 9299 + components: + - pos: 49.5,47.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9300 + components: + - pos: 48.5,47.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9301 + components: + - pos: 47.5,47.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9302 + components: + - pos: 46.5,47.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9303 + components: + - pos: 46.5,46.5 + parent: 2 + type: Transform + - uid: 9304 + components: + - pos: 45.5,46.5 + parent: 2 + type: Transform + - uid: 9305 + components: + - pos: 44.5,46.5 + parent: 2 + type: Transform + - uid: 9310 + components: + - pos: 68.5,41.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9311 + components: + - pos: 68.5,42.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9312 + components: + - pos: 67.5,42.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9313 + components: + - pos: 66.5,42.5 + parent: 2 + type: Transform + - uid: 9314 + components: + - pos: 66.5,41.5 + parent: 2 + type: Transform + - uid: 9315 + components: + - pos: 66.5,40.5 + parent: 2 + type: Transform + - uid: 9316 + components: + - pos: 66.5,39.5 + parent: 2 + type: Transform + - uid: 9317 + components: + - pos: 66.5,38.5 + parent: 2 + type: Transform + - uid: 9318 + components: + - pos: 66.5,37.5 + parent: 2 + type: Transform + - uid: 9319 + components: + - pos: 66.5,36.5 + parent: 2 + type: Transform + - uid: 9320 + components: + - pos: 66.5,35.5 + parent: 2 + type: Transform + - uid: 9321 + components: + - pos: 66.5,34.5 + parent: 2 + type: Transform + - uid: 9322 + components: + - pos: 66.5,33.5 + parent: 2 + type: Transform + - uid: 9323 + components: + - pos: 66.5,32.5 + parent: 2 + type: Transform + - uid: 9324 + components: + - pos: 66.5,31.5 + parent: 2 + type: Transform + - uid: 9325 + components: + - pos: 66.5,30.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9326 + components: + - pos: 66.5,29.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9327 + components: + - pos: 66.5,28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9328 + components: + - pos: 66.5,27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9329 + components: + - pos: 66.5,26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9330 + components: + - pos: 67.5,28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9331 + components: + - pos: 68.5,28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9332 + components: + - pos: 69.5,28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9333 + components: + - pos: 69.5,29.5 + parent: 2 + type: Transform + - uid: 9334 + components: + - pos: 69.5,30.5 + parent: 2 + type: Transform + - uid: 9335 + components: + - pos: 69.5,31.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9336 + components: + - pos: 69.5,32.5 + parent: 2 + type: Transform + - uid: 9337 + components: + - pos: 69.5,33.5 + parent: 2 + type: Transform + - uid: 9338 + components: + - pos: 68.5,32.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9339 + components: + - pos: 67.5,32.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9340 + components: + - pos: 67.5,36.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9341 + components: + - pos: 68.5,36.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9342 + components: + - pos: 69.5,36.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9343 + components: + - pos: 70.5,36.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9344 + components: + - pos: 67.5,39.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9345 + components: + - pos: 68.5,39.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9346 + components: + - pos: 69.5,39.5 + parent: 2 + type: Transform + - uid: 9347 + components: + - pos: 70.5,39.5 + parent: 2 + type: Transform + - uid: 9694 + components: + - pos: 52.5,-7.5 + parent: 2 + type: Transform + - uid: 9695 + components: + - pos: 52.5,-6.5 + parent: 2 + type: Transform + - uid: 9696 + components: + - pos: 52.5,-5.5 + parent: 2 + type: Transform + - uid: 9697 + components: + - pos: 52.5,-4.5 + parent: 2 + type: Transform + - uid: 9698 + components: + - pos: 51.5,-6.5 + parent: 2 + type: Transform + - uid: 9699 + components: + - pos: 50.5,-6.5 + parent: 2 + type: Transform + - uid: 9700 + components: + - pos: 50.5,-5.5 + parent: 2 + type: Transform + - uid: 9701 + components: + - pos: 50.5,-7.5 + parent: 2 + type: Transform + - uid: 9702 + components: + - pos: 50.5,-8.5 + parent: 2 + type: Transform + - uid: 9703 + components: + - pos: 50.5,-9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9704 + components: + - pos: 50.5,-10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9705 + components: + - pos: 50.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9706 + components: + - pos: 50.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9707 + components: + - pos: 51.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9708 + components: + - pos: 52.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9709 + components: + - pos: 49.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9710 + components: + - pos: 48.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9711 + components: + - pos: 47.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9712 + components: + - pos: 46.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9713 + components: + - pos: 45.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9715 + components: + - pos: 44.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9778 + components: + - pos: 23.5,2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9779 + components: + - pos: 23.5,1.5 + parent: 2 + type: Transform + - uid: 9780 + components: + - pos: 23.5,0.5 + parent: 2 + type: Transform + - uid: 9781 + components: + - pos: 22.5,0.5 + parent: 2 + type: Transform + - uid: 9782 + components: + - pos: 21.5,0.5 + parent: 2 + type: Transform + - uid: 9783 + components: + - pos: 20.5,0.5 + parent: 2 + type: Transform + - uid: 9784 + components: + - pos: 19.5,0.5 + parent: 2 + type: Transform + - uid: 9785 + components: + - pos: 24.5,0.5 + parent: 2 + type: Transform + - uid: 9786 + components: + - pos: 25.5,0.5 + parent: 2 + type: Transform + - uid: 9787 + components: + - pos: 26.5,0.5 + parent: 2 + type: Transform + - uid: 9788 + components: + - pos: 27.5,0.5 + parent: 2 + type: Transform + - uid: 9789 + components: + - pos: 28.5,0.5 + parent: 2 + type: Transform + - uid: 9790 + components: + - pos: 29.5,0.5 + parent: 2 + type: Transform + - uid: 9791 + components: + - pos: 30.5,0.5 + parent: 2 + type: Transform + - uid: 9792 + components: + - pos: 31.5,0.5 + parent: 2 + type: Transform + - uid: 9793 + components: + - pos: 32.5,0.5 + parent: 2 + type: Transform + - uid: 9794 + components: + - pos: 33.5,0.5 + parent: 2 + type: Transform + - uid: 9795 + components: + - pos: 34.5,0.5 + parent: 2 + type: Transform + - uid: 9796 + components: + - pos: 35.5,0.5 + parent: 2 + type: Transform + - uid: 9797 + components: + - pos: 36.5,0.5 + parent: 2 + type: Transform + - uid: 9798 + components: + - pos: 37.5,0.5 + parent: 2 + type: Transform + - uid: 9799 + components: + - pos: 38.5,0.5 + parent: 2 + type: Transform + - uid: 9800 + components: + - pos: 26.5,1.5 + parent: 2 + type: Transform + - uid: 9801 + components: + - pos: 26.5,2.5 + parent: 2 + type: Transform + - uid: 9802 + components: + - pos: 26.5,-0.5 + parent: 2 + type: Transform + - uid: 9803 + components: + - pos: 26.5,-1.5 + parent: 2 + type: Transform + - uid: 9804 + components: + - pos: 21.5,-8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9805 + components: + - pos: 21.5,-9.5 + parent: 2 + type: Transform + - uid: 9806 + components: + - pos: 21.5,-10.5 + parent: 2 + type: Transform + - uid: 9807 + components: + - pos: 21.5,-11.5 + parent: 2 + type: Transform + - uid: 9808 + components: + - pos: 22.5,-11.5 + parent: 2 + type: Transform + - uid: 9809 + components: + - pos: 23.5,-11.5 + parent: 2 + type: Transform + - uid: 9810 + components: + - pos: 24.5,-11.5 + parent: 2 + type: Transform + - uid: 9811 + components: + - pos: 25.5,-11.5 + parent: 2 + type: Transform + - uid: 9812 + components: + - pos: 26.5,-11.5 + parent: 2 + type: Transform + - uid: 9813 + components: + - pos: 26.5,-10.5 + parent: 2 + type: Transform + - uid: 9814 + components: + - pos: 26.5,-9.5 + parent: 2 + type: Transform + - uid: 9815 + components: + - pos: 26.5,-8.5 + parent: 2 + type: Transform + - uid: 9816 + components: + - pos: 26.5,-7.5 + parent: 2 + type: Transform + - uid: 9817 + components: + - pos: 26.5,-6.5 + parent: 2 + type: Transform + - uid: 9818 + components: + - pos: 26.5,-5.5 + parent: 2 + type: Transform + - uid: 9819 + components: + - pos: 26.5,-4.5 + parent: 2 + type: Transform + - uid: 9820 + components: + - pos: 26.5,-12.5 + parent: 2 + type: Transform + - uid: 9905 + components: + - pos: 28.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9906 + components: + - pos: 27.5,-19.5 + parent: 2 + type: Transform + - uid: 9907 + components: + - pos: 26.5,-19.5 + parent: 2 + type: Transform + - uid: 9908 + components: + - pos: 26.5,-20.5 + parent: 2 + type: Transform + - uid: 9909 + components: + - pos: 26.5,-21.5 + parent: 2 + type: Transform + - uid: 9910 + components: + - pos: 26.5,-22.5 + parent: 2 + type: Transform + - uid: 9911 + components: + - pos: 26.5,-23.5 + parent: 2 + type: Transform + - uid: 9912 + components: + - pos: 26.5,-24.5 + parent: 2 + type: Transform + - uid: 9913 + components: + - pos: 26.5,-18.5 + parent: 2 + type: Transform + - uid: 9914 + components: + - pos: 26.5,-17.5 + parent: 2 + type: Transform + - uid: 9915 + components: + - pos: 26.5,-16.5 + parent: 2 + type: Transform + - uid: 9916 + components: + - pos: 26.5,-15.5 + parent: 2 + type: Transform + - uid: 9917 + components: + - pos: 26.5,-14.5 + parent: 2 + type: Transform + - uid: 9918 + components: + - pos: 34.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9919 + components: + - pos: 33.5,-15.5 + parent: 2 + type: Transform + - uid: 9920 + components: + - pos: 32.5,-15.5 + parent: 2 + type: Transform + - uid: 9921 + components: + - pos: 31.5,-15.5 + parent: 2 + type: Transform + - uid: 9922 + components: + - pos: 30.5,-15.5 + parent: 2 + type: Transform + - uid: 9923 + components: + - pos: 29.5,-15.5 + parent: 2 + type: Transform + - uid: 9924 + components: + - pos: 32.5,-16.5 + parent: 2 + type: Transform + - uid: 9925 + components: + - pos: 32.5,-17.5 + parent: 2 + type: Transform + - uid: 9926 + components: + - pos: 39.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9929 + components: + - pos: 40.5,-15.5 + parent: 2 + type: Transform + - uid: 9930 + components: + - pos: 35.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9931 + components: + - pos: 36.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9932 + components: + - pos: 37.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9933 + components: + - pos: 39.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9934 + components: + - pos: 39.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9935 + components: + - pos: 38.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9936 + components: + - pos: 37.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9937 + components: + - pos: 36.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9938 + components: + - pos: 35.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9939 + components: + - pos: 34.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9940 + components: + - pos: 33.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9941 + components: + - pos: 32.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9942 + components: + - pos: 31.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9943 + components: + - pos: 30.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9944 + components: + - pos: 40.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9945 + components: + - pos: 41.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9946 + components: + - pos: 41.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9947 + components: + - pos: 42.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9948 + components: + - pos: 43.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9949 + components: + - pos: 44.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9950 + components: + - pos: 45.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9951 + components: + - pos: 46.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9952 + components: + - pos: 47.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9953 + components: + - pos: 48.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9954 + components: + - pos: 49.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9955 + components: + - pos: 50.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9956 + components: + - pos: 51.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9957 + components: + - pos: 52.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9958 + components: + - pos: 53.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9959 + components: + - pos: 47.5,-17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9960 + components: + - pos: 47.5,-16.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9961 + components: + - pos: 47.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9962 + components: + - pos: 25.5,-21.5 + parent: 2 + type: Transform + - uid: 9963 + components: + - pos: 24.5,-21.5 + parent: 2 + type: Transform + - uid: 9964 + components: + - pos: 23.5,-21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9965 + components: + - pos: 13.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9966 + components: + - pos: 12.5,-7.5 + parent: 2 + type: Transform + - uid: 9967 + components: + - pos: 11.5,-7.5 + parent: 2 + type: Transform + - uid: 9968 + components: + - pos: 10.5,-7.5 + parent: 2 + type: Transform + - uid: 9969 + components: + - pos: 9.5,-7.5 + parent: 2 + type: Transform + - uid: 9970 + components: + - pos: 9.5,-6.5 + parent: 2 + type: Transform + - uid: 9971 + components: + - pos: 9.5,-5.5 + parent: 2 + type: Transform + - uid: 9972 + components: + - pos: 9.5,-4.5 + parent: 2 + type: Transform + - uid: 9973 + components: + - pos: 9.5,-3.5 + parent: 2 + type: Transform + - uid: 9974 + components: + - pos: 9.5,-8.5 + parent: 2 + type: Transform + - uid: 9975 + components: + - pos: 9.5,-9.5 + parent: 2 + type: Transform + - uid: 9976 + components: + - pos: 16.5,-6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9977 + components: + - pos: 16.5,-5.5 + parent: 2 + type: Transform + - uid: 9978 + components: + - pos: 16.5,-4.5 + parent: 2 + type: Transform + - uid: 9979 + components: + - pos: 16.5,-3.5 + parent: 2 + type: Transform + - uid: 9980 + components: + - pos: 17.5,-4.5 + parent: 2 + type: Transform + - uid: 9981 + components: + - pos: 18.5,-4.5 + parent: 2 + type: Transform + - uid: 9982 + components: + - pos: 19.5,-4.5 + parent: 2 + type: Transform + - uid: 9983 + components: + - pos: 20.5,-4.5 + parent: 2 + type: Transform + - uid: 9984 + components: + - pos: 15.5,-4.5 + parent: 2 + type: Transform + - uid: 9985 + components: + - pos: 14.5,-4.5 + parent: 2 + type: Transform + - uid: 9986 + components: + - pos: 14.5,-3.5 + parent: 2 + type: Transform + - uid: 9987 + components: + - pos: 14.5,-2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9988 + components: + - pos: 15.5,-2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9989 + components: + - pos: 21.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9990 + components: + - pos: 22.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9991 + components: + - pos: 22.5,-6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9992 + components: + - pos: 22.5,-5.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9993 + components: + - pos: 22.5,-4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9994 + components: + - pos: 22.5,-3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9995 + components: + - pos: 22.5,-2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9996 + components: + - pos: 16.5,-7.5 + parent: 2 + type: Transform + - uid: 9997 + components: + - pos: 17.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9998 + components: + - pos: 17.5,-8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9999 + components: + - pos: 17.5,-9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10000 + components: + - pos: 17.5,-10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10001 + components: + - pos: 17.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10002 + components: + - pos: 16.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10003 + components: + - pos: 16.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10004 + components: + - pos: 16.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10005 + components: + - pos: 10.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10006 + components: + - pos: 11.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10007 + components: + - pos: 10.5,-14.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10008 + components: + - pos: 10.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10009 + components: + - pos: 11.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10010 + components: + - pos: 12.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10011 + components: + - pos: 13.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10012 + components: + - pos: 13.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10013 + components: + - pos: 13.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10014 + components: + - pos: 14.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10015 + components: + - pos: 10.5,-16.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10016 + components: + - pos: 10.5,-17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10017 + components: + - pos: 10.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10018 + components: + - pos: 10.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10019 + components: + - pos: 10.5,-20.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10020 + components: + - pos: 10.5,-21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10021 + components: + - pos: 10.5,-22.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10022 + components: + - pos: 9.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10023 + components: + - pos: 8.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10024 + components: + - pos: 7.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10025 + components: + - pos: 6.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10030 + components: + - pos: 22.5,-29.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10031 + components: + - pos: 22.5,-30.5 + parent: 2 + type: Transform + - uid: 10032 + components: + - pos: 22.5,-31.5 + parent: 2 + type: Transform + - uid: 10033 + components: + - pos: 22.5,-32.5 + parent: 2 + type: Transform + - uid: 10034 + components: + - pos: 23.5,-32.5 + parent: 2 + type: Transform + - uid: 10035 + components: + - pos: 24.5,-32.5 + parent: 2 + type: Transform + - uid: 10036 + components: + - pos: 25.5,-32.5 + parent: 2 + type: Transform + - uid: 10037 + components: + - pos: 26.5,-32.5 + parent: 2 + type: Transform + - uid: 10038 + components: + - pos: 27.5,-32.5 + parent: 2 + type: Transform + - uid: 10039 + components: + - pos: 28.5,-32.5 + parent: 2 + type: Transform + - uid: 10040 + components: + - pos: 29.5,-32.5 + parent: 2 + type: Transform + - uid: 10041 + components: + - pos: 30.5,-32.5 + parent: 2 + type: Transform + - uid: 10042 + components: + - pos: 31.5,-32.5 + parent: 2 + type: Transform + - uid: 10043 + components: + - pos: 32.5,-32.5 + parent: 2 + type: Transform + - uid: 10075 + components: + - pos: 61.5,-11.5 + parent: 2 + type: Transform + - uid: 10081 + components: + - pos: 58.5,-3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10082 + components: + - pos: 61.5,-2.5 + parent: 2 + type: Transform + - uid: 10103 + components: + - pos: 62.5,-7.5 + parent: 2 + type: Transform + - uid: 10114 + components: + - pos: 61.5,-6.5 + parent: 2 + type: Transform + - uid: 10122 + components: + - pos: 61.5,-9.5 + parent: 2 + type: Transform + - uid: 10131 + components: + - pos: 63.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10132 + components: + - pos: 61.5,-8.5 + parent: 2 + type: Transform + - uid: 10133 + components: + - pos: 61.5,-10.5 + parent: 2 + type: Transform + - uid: 10454 + components: + - pos: 53.5,20.5 + parent: 2 + type: Transform + - uid: 10455 + components: + - pos: 53.5,19.5 + parent: 2 + type: Transform + - uid: 10456 + components: + - pos: 53.5,18.5 + parent: 2 + type: Transform + - uid: 10457 + components: + - pos: 52.5,19.5 + parent: 2 + type: Transform + - uid: 10458 + components: + - pos: 51.5,19.5 + parent: 2 + type: Transform + - uid: 10459 + components: + - pos: 50.5,19.5 + parent: 2 + type: Transform + - uid: 10460 + components: + - pos: 49.5,19.5 + parent: 2 + type: Transform + - uid: 10461 + components: + - pos: 48.5,19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10462 + components: + - pos: 49.5,18.5 + parent: 2 + type: Transform + - uid: 10463 + components: + - pos: 49.5,17.5 + parent: 2 + type: Transform + - uid: 10464 + components: + - pos: 48.5,17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10465 + components: + - pos: 54.5,18.5 + parent: 2 + type: Transform + - uid: 10466 + components: + - pos: 55.5,18.5 + parent: 2 + type: Transform + - uid: 10467 + components: + - pos: 51.5,22.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10468 + components: + - pos: 56.5,11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10469 + components: + - pos: 51.5,23.5 + parent: 2 + type: Transform + - uid: 10470 + components: + - pos: 51.5,24.5 + parent: 2 + type: Transform + - uid: 10471 + components: + - pos: 50.5,24.5 + parent: 2 + type: Transform + - uid: 10472 + components: + - pos: 55.5,11.5 + parent: 2 + type: Transform + - uid: 10473 + components: + - pos: 54.5,11.5 + parent: 2 + type: Transform + - uid: 10475 + components: + - pos: 54.5,10.5 + parent: 2 + type: Transform + - uid: 10476 + components: + - pos: 54.5,9.5 + parent: 2 + type: Transform + - uid: 10477 + components: + - pos: 53.5,9.5 + parent: 2 + type: Transform + - uid: 10478 + components: + - pos: 52.5,9.5 + parent: 2 + type: Transform + - uid: 10479 + components: + - pos: 51.5,9.5 + parent: 2 + type: Transform + - uid: 10480 + components: + - pos: 50.5,9.5 + parent: 2 + type: Transform + - uid: 10481 + components: + - pos: 49.5,9.5 + parent: 2 + type: Transform + - uid: 10482 + components: + - pos: 48.5,9.5 + parent: 2 + type: Transform + - uid: 10483 + components: + - pos: 48.5,10.5 + parent: 2 + type: Transform + - uid: 10484 + components: + - pos: 47.5,10.5 + parent: 2 + type: Transform + - uid: 10485 + components: + - pos: 46.5,10.5 + parent: 2 + type: Transform + - uid: 10486 + components: + - pos: 45.5,10.5 + parent: 2 + type: Transform + - uid: 10487 + components: + - pos: 43.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10488 + components: + - pos: 44.5,3.5 + parent: 2 + type: Transform + - uid: 10489 + components: + - pos: 45.5,3.5 + parent: 2 + type: Transform + - uid: 10490 + components: + - pos: 46.5,3.5 + parent: 2 + type: Transform + - uid: 10491 + components: + - pos: 47.5,3.5 + parent: 2 + type: Transform + - uid: 10492 + components: + - pos: 43.5,12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10493 + components: + - pos: 43.5,13.5 + parent: 2 + type: Transform + - uid: 10494 + components: + - pos: 43.5,14.5 + parent: 2 + type: Transform + - uid: 10495 + components: + - pos: 44.5,14.5 + parent: 2 + type: Transform + - uid: 10496 + components: + - pos: 45.5,14.5 + parent: 2 + type: Transform + - uid: 10497 + components: + - pos: 46.5,14.5 + parent: 2 + type: Transform + - uid: 10498 + components: + - pos: 46.5,15.5 + parent: 2 + type: Transform + - uid: 10499 + components: + - pos: 46.5,16.5 + parent: 2 + type: Transform + - uid: 10500 + components: + - pos: 46.5,17.5 + parent: 2 + type: Transform + - uid: 10501 + components: + - pos: 46.5,18.5 + parent: 2 + type: Transform + - uid: 10502 + components: + - pos: 47.5,14.5 + parent: 2 + type: Transform + - uid: 10503 + components: + - pos: 42.5,14.5 + parent: 2 + type: Transform + - uid: 10504 + components: + - pos: 41.5,14.5 + parent: 2 + type: Transform + - uid: 10505 + components: + - pos: 40.5,14.5 + parent: 2 + type: Transform + - uid: 10506 + components: + - pos: 39.5,14.5 + parent: 2 + type: Transform + - uid: 10507 + components: + - pos: 38.5,14.5 + parent: 2 + type: Transform + - uid: 10508 + components: + - pos: 37.5,14.5 + parent: 2 + type: Transform + - uid: 10509 + components: + - pos: 36.5,14.5 + parent: 2 + type: Transform + - uid: 10510 + components: + - pos: 35.5,14.5 + parent: 2 + type: Transform + - uid: 10511 + components: + - pos: 34.5,14.5 + parent: 2 + type: Transform + - uid: 10512 + components: + - pos: 33.5,14.5 + parent: 2 + type: Transform + - uid: 10513 + components: + - pos: 32.5,14.5 + parent: 2 + type: Transform + - uid: 10514 + components: + - pos: 31.5,14.5 + parent: 2 + type: Transform + - uid: 10515 + components: + - pos: 30.5,14.5 + parent: 2 + type: Transform + - uid: 10516 + components: + - pos: 29.5,14.5 + parent: 2 + type: Transform + - uid: 10517 + components: + - pos: 28.5,14.5 + parent: 2 + type: Transform + - uid: 10518 + components: + - pos: 27.5,14.5 + parent: 2 + type: Transform + - uid: 10519 + components: + - pos: 26.5,14.5 + parent: 2 + type: Transform + - uid: 10520 + components: + - pos: 65.5,23.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10521 + components: + - pos: 64.5,23.5 + parent: 2 + type: Transform + - uid: 10522 + components: + - pos: 63.5,23.5 + parent: 2 + type: Transform + - uid: 10523 + components: + - pos: 62.5,23.5 + parent: 2 + type: Transform + - uid: 10524 + components: + - pos: 62.5,24.5 + parent: 2 + type: Transform + - uid: 10525 + components: + - pos: 62.5,25.5 + parent: 2 + type: Transform + - uid: 10526 + components: + - pos: 62.5,26.5 + parent: 2 + type: Transform + - uid: 10527 + components: + - pos: 62.5,27.5 + parent: 2 + type: Transform + - uid: 10528 + components: + - pos: 63.5,27.5 + parent: 2 + type: Transform + - uid: 10529 + components: + - pos: 66.5,17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10530 + components: + - pos: 66.5,16.5 + parent: 2 + type: Transform + - uid: 10531 + components: + - pos: 66.5,15.5 + parent: 2 + type: Transform + - uid: 10532 + components: + - pos: 66.5,14.5 + parent: 2 + type: Transform + - uid: 10533 + components: + - pos: 66.5,13.5 + parent: 2 + type: Transform + - uid: 10534 + components: + - pos: 67.5,14.5 + parent: 2 + type: Transform + - uid: 10535 + components: + - pos: 68.5,14.5 + parent: 2 + type: Transform + - uid: 10536 + components: + - pos: 69.5,14.5 + parent: 2 + type: Transform + - uid: 10537 + components: + - pos: 70.5,14.5 + parent: 2 + type: Transform + - uid: 10538 + components: + - pos: 64.5,11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10539 + components: + - pos: 63.5,11.5 + parent: 2 + type: Transform + - uid: 10540 + components: + - pos: 62.5,11.5 + parent: 2 + type: Transform + - uid: 10541 + components: + - pos: 61.5,11.5 + parent: 2 + type: Transform + - uid: 10542 + components: + - pos: 61.5,10.5 + parent: 2 + type: Transform + - uid: 10543 + components: + - pos: 61.5,9.5 + parent: 2 + type: Transform + - uid: 10544 + components: + - pos: 61.5,8.5 + parent: 2 + type: Transform + - uid: 10546 + components: + - pos: 61.5,18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10547 + components: + - pos: 60.5,18.5 + parent: 2 + type: Transform + - uid: 10548 + components: + - pos: 59.5,18.5 + parent: 2 + type: Transform + - uid: 10549 + components: + - pos: 59.5,17.5 + parent: 2 + type: Transform + - uid: 10550 + components: + - pos: 59.5,16.5 + parent: 2 + type: Transform + - uid: 10551 + components: + - pos: 59.5,15.5 + parent: 2 + type: Transform + - uid: 10552 + components: + - pos: 59.5,14.5 + parent: 2 + type: Transform + - uid: 10553 + components: + - pos: 59.5,13.5 + parent: 2 + type: Transform + - uid: 10554 + components: + - pos: 60.5,14.5 + parent: 2 + type: Transform + - uid: 10555 + components: + - pos: 61.5,14.5 + parent: 2 + type: Transform + - uid: 10556 + components: + - pos: 62.5,14.5 + parent: 2 + type: Transform + - uid: 10557 + components: + - pos: 63.5,14.5 + parent: 2 + type: Transform + - uid: 10558 + components: + - pos: 58.5,14.5 + parent: 2 + type: Transform + - uid: 10559 + components: + - pos: 57.5,14.5 + parent: 2 + type: Transform + - uid: 10560 + components: + - pos: 56.5,14.5 + parent: 2 + type: Transform + - uid: 10561 + components: + - pos: 55.5,14.5 + parent: 2 + type: Transform + - uid: 10562 + components: + - pos: 54.5,14.5 + parent: 2 + type: Transform + - uid: 10563 + components: + - pos: 53.5,14.5 + parent: 2 + type: Transform + - uid: 10564 + components: + - pos: 52.5,14.5 + parent: 2 + type: Transform + - uid: 10565 + components: + - pos: 51.5,14.5 + parent: 2 + type: Transform + - uid: 10566 + components: + - pos: 50.5,14.5 + parent: 2 + type: Transform + - uid: 10567 + components: + - pos: 59.5,19.5 + parent: 2 + type: Transform + - uid: 10568 + components: + - pos: 59.5,20.5 + parent: 2 + type: Transform + - uid: 10569 + components: + - pos: 59.5,21.5 + parent: 2 + type: Transform + - uid: 10570 + components: + - pos: 59.5,22.5 + parent: 2 + type: Transform + - uid: 10571 + components: + - pos: 59.5,23.5 + parent: 2 + type: Transform + - uid: 10572 + components: + - pos: 59.5,24.5 + parent: 2 + type: Transform + - uid: 10573 + components: + - pos: 58.5,24.5 + parent: 2 + type: Transform + - uid: 10574 + components: + - pos: 57.5,24.5 + parent: 2 + type: Transform + - uid: 10575 + components: + - pos: 56.5,24.5 + parent: 2 + type: Transform + - uid: 10576 + components: + - pos: 55.5,24.5 + parent: 2 + type: Transform + - uid: 10577 + components: + - pos: 54.5,24.5 + parent: 2 + type: Transform + - uid: 10578 + components: + - pos: 57.5,11.5 + parent: 2 + type: Transform + - uid: 10579 + components: + - pos: 57.5,10.5 + parent: 2 + type: Transform + - uid: 10580 + components: + - pos: 57.5,9.5 + parent: 2 + type: Transform + - uid: 10581 + components: + - pos: 57.5,8.5 + parent: 2 + type: Transform + - uid: 10582 + components: + - pos: 57.5,7.5 + parent: 2 + type: Transform + - uid: 10583 + components: + - pos: 57.5,6.5 + parent: 2 + type: Transform + - uid: 10584 + components: + - pos: 56.5,6.5 + parent: 2 + type: Transform + - uid: 10925 + components: + - pos: 43.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10926 + components: + - pos: 42.5,6.5 + parent: 2 + type: Transform + - uid: 10927 + components: + - pos: 41.5,6.5 + parent: 2 + type: Transform + - uid: 10932 + components: + - pos: 41.5,5.5 + parent: 2 + type: Transform + - uid: 10933 + components: + - pos: 41.5,4.5 + parent: 2 + type: Transform + - uid: 10934 + components: + - pos: 41.5,3.5 + parent: 2 + type: Transform + - uid: 10935 + components: + - pos: 41.5,2.5 + parent: 2 + type: Transform + - uid: 10936 + components: + - pos: 41.5,1.5 + parent: 2 + type: Transform + - uid: 10937 + components: + - pos: 41.5,0.5 + parent: 2 + type: Transform + - uid: 10938 + components: + - pos: 41.5,-0.5 + parent: 2 + type: Transform + - uid: 10939 + components: + - pos: 41.5,7.5 + parent: 2 + type: Transform + - uid: 10940 + components: + - pos: 41.5,8.5 + parent: 2 + type: Transform + - uid: 10941 + components: + - pos: 41.5,9.5 + parent: 2 + type: Transform + - uid: 10942 + components: + - pos: 41.5,10.5 + parent: 2 + type: Transform + - uid: 10943 + components: + - pos: 41.5,11.5 + parent: 2 + type: Transform + - uid: 10944 + components: + - pos: 44.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10945 + components: + - pos: 45.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10946 + components: + - pos: 46.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10947 + components: + - pos: 47.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10948 + components: + - pos: 48.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10949 + components: + - pos: 49.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10953 + components: + - pos: 50.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10954 + components: + - pos: 51.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10955 + components: + - pos: 52.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10957 + components: + - pos: 54.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11008 + components: + - pos: 54.5,3.5 + parent: 2 + type: Transform + - uid: 11010 + components: + - pos: 54.5,2.5 + parent: 2 + type: Transform + - uid: 11011 + components: + - pos: 53.5,3.5 + parent: 2 + type: Transform + - uid: 11014 + components: + - pos: 52.5,3.5 + parent: 2 + type: Transform + - uid: 11015 + components: + - pos: 51.5,3.5 + parent: 2 + type: Transform + - uid: 11023 + components: + - pos: 50.5,3.5 + parent: 2 + type: Transform + - uid: 11024 + components: + - pos: 49.5,3.5 + parent: 2 + type: Transform + - uid: 11025 + components: + - pos: 54.5,1.5 + parent: 2 + type: Transform + - uid: 11026 + components: + - pos: 54.5,0.5 + parent: 2 + type: Transform + - uid: 11027 + components: + - pos: 54.5,-0.5 + parent: 2 + type: Transform + - uid: 11029 + components: + - pos: 54.5,-1.5 + parent: 2 + type: Transform + - uid: 11030 + components: + - pos: 53.5,-0.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11031 + components: + - pos: 52.5,-0.5 + parent: 2 + type: Transform + - uid: 11034 + components: + - pos: 51.5,-0.5 + parent: 2 + type: Transform + - uid: 11036 + components: + - pos: 50.5,-0.5 + parent: 2 + type: Transform + - uid: 11037 + components: + - pos: 49.5,-0.5 + parent: 2 + type: Transform + - uid: 11038 + components: + - pos: 48.5,-0.5 + parent: 2 + type: Transform + - uid: 11039 + components: + - pos: 47.5,-0.5 + parent: 2 + type: Transform + - uid: 11040 + components: + - pos: 46.5,-0.5 + parent: 2 + type: Transform + - uid: 11041 + components: + - pos: 45.5,-0.5 + parent: 2 + type: Transform + - uid: 11042 + components: + - pos: 44.5,-0.5 + parent: 2 + type: Transform + - uid: 11043 + components: + - pos: 58.5,-8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11044 + components: + - pos: 58.5,-9.5 + parent: 2 + type: Transform + - uid: 11045 + components: + - pos: 58.5,-10.5 + parent: 2 + type: Transform + - uid: 11046 + components: + - pos: 57.5,-10.5 + parent: 2 + type: Transform + - uid: 11047 + components: + - pos: 56.5,-10.5 + parent: 2 + type: Transform + - uid: 11048 + components: + - pos: 55.5,-10.5 + parent: 2 + type: Transform + - uid: 11049 + components: + - pos: 66.5,-0.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11050 + components: + - pos: 66.5,-1.5 + parent: 2 + type: Transform + - uid: 11051 + components: + - pos: 66.5,-2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11052 + components: + - pos: 66.5,-3.5 + parent: 2 + type: Transform + - uid: 11053 + components: + - pos: 66.5,-4.5 + parent: 2 + type: Transform + - uid: 11054 + components: + - pos: 66.5,-5.5 + parent: 2 + type: Transform + - uid: 11055 + components: + - pos: 66.5,-6.5 + parent: 2 + type: Transform + - uid: 11056 + components: + - pos: 65.5,-5.5 + parent: 2 + type: Transform + - uid: 11057 + components: + - pos: 65.5,-3.5 + parent: 2 + type: Transform + - uid: 11058 + components: + - pos: 75.5,-4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11059 + components: + - pos: 76.5,-4.5 + parent: 2 + type: Transform + - uid: 11060 + components: + - pos: 77.5,-4.5 + parent: 2 + type: Transform + - uid: 11061 + components: + - pos: 78.5,-4.5 + parent: 2 + type: Transform + - uid: 11062 + components: + - pos: 79.5,-4.5 + parent: 2 + type: Transform + - uid: 11063 + components: + - pos: 80.5,-4.5 + parent: 2 + type: Transform + - uid: 11064 + components: + - pos: 81.5,-4.5 + parent: 2 + type: Transform + - uid: 11065 + components: + - pos: 80.5,-3.5 + parent: 2 + type: Transform + - uid: 11067 + components: + - pos: 80.5,-2.5 + parent: 2 + type: Transform + - uid: 11069 + components: + - pos: 80.5,-1.5 + parent: 2 + type: Transform + - uid: 11071 + components: + - pos: 77.5,-3.5 + parent: 2 + type: Transform + - uid: 11072 + components: + - pos: 77.5,-2.5 + parent: 2 + type: Transform + - uid: 11073 + components: + - pos: 77.5,-1.5 + parent: 2 + type: Transform + - uid: 11074 + components: + - pos: 77.5,-0.5 + parent: 2 + type: Transform + - uid: 11075 + components: + - pos: 77.5,-5.5 + parent: 2 + type: Transform + - uid: 11076 + components: + - pos: 77.5,-6.5 + parent: 2 + type: Transform + - uid: 11077 + components: + - pos: 77.5,-7.5 + parent: 2 + type: Transform + - uid: 11078 + components: + - pos: 77.5,-8.5 + parent: 2 + type: Transform + - uid: 11079 + components: + - pos: 80.5,-5.5 + parent: 2 + type: Transform + - uid: 11080 + components: + - pos: 80.5,-6.5 + parent: 2 + type: Transform + - uid: 11081 + components: + - pos: 80.5,-7.5 + parent: 2 + type: Transform + - uid: 11082 + components: + - pos: 73.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11083 + components: + - pos: 72.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11084 + components: + - pos: 71.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11085 + components: + - pos: 70.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11086 + components: + - pos: 69.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11087 + components: + - pos: 71.5,-6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11088 + components: + - pos: 71.5,-5.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11090 + components: + - pos: 71.5,-4.5 + parent: 2 + type: Transform + - uid: 11091 + components: + - pos: 72.5,-1.5 + parent: 2 + type: Transform + - uid: 11095 + components: + - pos: 75.5,-2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11096 + components: + - pos: 74.5,-2.5 + parent: 2 + type: Transform + - uid: 11102 + components: + - pos: 73.5,-2.5 + parent: 2 + type: Transform + - uid: 11103 + components: + - pos: 72.5,-2.5 + parent: 2 + type: Transform + - uid: 11104 + components: + - pos: 72.5,-0.5 + parent: 2 + type: Transform + - uid: 11105 + components: + - pos: 71.5,-2.5 + parent: 2 + type: Transform + - uid: 11106 + components: + - pos: 70.5,-2.5 + parent: 2 + type: Transform + - uid: 11107 + components: + - pos: 71.5,-8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11108 + components: + - pos: 71.5,-9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11110 + components: + - pos: 71.5,-10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11111 + components: + - pos: 71.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11112 + components: + - pos: 71.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11113 + components: + - pos: 71.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11114 + components: + - pos: 68.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11115 + components: + - pos: 67.5,-15.5 + parent: 2 + type: Transform + - uid: 11116 + components: + - pos: 66.5,-15.5 + parent: 2 + type: Transform + - uid: 11117 + components: + - pos: 66.5,-16.5 + parent: 2 + type: Transform + - uid: 11133 + components: + - pos: 66.5,-17.5 + parent: 2 + type: Transform + - uid: 11134 + components: + - pos: 65.5,-17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11135 + components: + - pos: 64.5,-17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11136 + components: + - pos: 63.5,-17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11137 + components: + - pos: 62.5,-17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11138 + components: + - pos: 61.5,-17.5 + parent: 2 + type: Transform + - uid: 11139 + components: + - pos: 60.5,-17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11140 + components: + - pos: 59.5,-17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11141 + components: + - pos: 66.5,-7.5 + parent: 2 + type: Transform + - uid: 11142 + components: + - pos: 66.5,-8.5 + parent: 2 + type: Transform + - uid: 11143 + components: + - pos: 66.5,-9.5 + parent: 2 + type: Transform + - uid: 11144 + components: + - pos: 66.5,-10.5 + parent: 2 + type: Transform + - uid: 11147 + components: + - pos: 66.5,-11.5 + parent: 2 + type: Transform + - uid: 11368 + components: + - pos: 60.5,-6.5 + parent: 2 + type: Transform + - uid: 11369 + components: + - pos: 59.5,-6.5 + parent: 2 + type: Transform + - uid: 11370 + components: + - pos: 58.5,-6.5 + parent: 2 + type: Transform + - uid: 11371 + components: + - pos: 57.5,-6.5 + parent: 2 + type: Transform + - uid: 11372 + components: + - pos: 56.5,-6.5 + parent: 2 + type: Transform + - uid: 11373 + components: + - pos: 55.5,2.5 + parent: 2 + type: Transform + - uid: 11374 + components: + - pos: 56.5,2.5 + parent: 2 + type: Transform + - uid: 11375 + components: + - pos: 57.5,2.5 + parent: 2 + type: Transform + - uid: 11376 + components: + - pos: 58.5,2.5 + parent: 2 + type: Transform + - uid: 11377 + components: + - pos: 59.5,2.5 + parent: 2 + type: Transform + - uid: 11378 + components: + - pos: 60.5,2.5 + parent: 2 + type: Transform + - uid: 11380 + components: + - pos: 61.5,2.5 + parent: 2 + type: Transform + - uid: 11381 + components: + - pos: 55.5,0.5 + parent: 2 + type: Transform + - uid: 11382 + components: + - pos: 56.5,0.5 + parent: 2 + type: Transform + - uid: 11387 + components: + - pos: 57.5,0.5 + parent: 2 + type: Transform + - uid: 11388 + components: + - pos: 58.5,0.5 + parent: 2 + type: Transform + - uid: 11389 + components: + - pos: 59.5,0.5 + parent: 2 + type: Transform + - uid: 11390 + components: + - pos: 60.5,0.5 + parent: 2 + type: Transform + - uid: 11394 + components: + - pos: 61.5,0.5 + parent: 2 + type: Transform + - uid: 11981 + components: + - pos: 62.5,2.5 + parent: 2 + type: Transform + - uid: 11982 + components: + - pos: 63.5,2.5 + parent: 2 + type: Transform + - uid: 11983 + components: + - pos: 64.5,2.5 + parent: 2 + type: Transform + - uid: 11984 + components: + - pos: 65.5,2.5 + parent: 2 + type: Transform + - uid: 11986 + components: + - pos: 66.5,2.5 + parent: 2 + type: Transform + - uid: 11988 + components: + - pos: 67.5,2.5 + parent: 2 + type: Transform + - uid: 11989 + components: + - pos: 68.5,2.5 + parent: 2 + type: Transform + - uid: 11991 + components: + - pos: 69.5,2.5 + parent: 2 + type: Transform + - uid: 11992 + components: + - pos: 68.5,3.5 + parent: 2 + type: Transform + - uid: 11993 + components: + - pos: 68.5,4.5 + parent: 2 + type: Transform + - uid: 11994 + components: + - pos: 68.5,5.5 + parent: 2 + type: Transform + - uid: 11995 + components: + - pos: 74.5,9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11996 + components: + - pos: 74.5,8.5 + parent: 2 + type: Transform + - uid: 11997 + components: + - pos: 74.5,7.5 + parent: 2 + type: Transform + - uid: 11998 + components: + - pos: 74.5,6.5 + parent: 2 + type: Transform + - uid: 11999 + components: + - pos: 75.5,7.5 + parent: 2 + type: Transform + - uid: 12000 + components: + - pos: 76.5,7.5 + parent: 2 + type: Transform + - uid: 12001 + components: + - pos: 77.5,7.5 + parent: 2 + type: Transform + - uid: 12002 + components: + - pos: 77.5,8.5 + parent: 2 + type: Transform + - uid: 12003 + components: + - pos: 77.5,9.5 + parent: 2 + type: Transform + - uid: 12004 + components: + - pos: 73.5,7.5 + parent: 2 + type: Transform + - uid: 12005 + components: + - pos: 72.5,7.5 + parent: 2 + type: Transform + - uid: 12006 + components: + - pos: 71.5,7.5 + parent: 2 + type: Transform + - uid: 12007 + components: + - pos: 71.5,6.5 + parent: 2 + type: Transform + - uid: 12008 + components: + - pos: 71.5,5.5 + parent: 2 + type: Transform + - uid: 12009 + components: + - pos: 71.5,4.5 + parent: 2 + type: Transform + - uid: 12010 + components: + - pos: 70.5,2.5 + parent: 2 + type: Transform + - uid: 12011 + components: + - pos: 71.5,2.5 + parent: 2 + type: Transform + - uid: 12012 + components: + - pos: 72.5,2.5 + parent: 2 + type: Transform + - uid: 12013 + components: + - pos: 73.5,2.5 + parent: 2 + type: Transform + - uid: 12014 + components: + - pos: 74.5,2.5 + parent: 2 + type: Transform + - uid: 12015 + components: + - pos: 75.5,2.5 + parent: 2 + type: Transform + - uid: 12016 + components: + - pos: 76.5,2.5 + parent: 2 + type: Transform + - uid: 12017 + components: + - pos: 77.5,2.5 + parent: 2 + type: Transform + - uid: 12018 + components: + - pos: 78.5,2.5 + parent: 2 + type: Transform + - uid: 12019 + components: + - pos: 79.5,2.5 + parent: 2 + type: Transform + - uid: 12020 + components: + - pos: 80.5,2.5 + parent: 2 + type: Transform + - uid: 12021 + components: + - pos: 77.5,3.5 + parent: 2 + type: Transform + - uid: 12022 + components: + - pos: 69.5,9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12023 + components: + - pos: 69.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12024 + components: + - pos: 68.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12025 + components: + - pos: 67.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12026 + components: + - pos: 67.5,9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12027 + components: + - pos: 67.5,8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12028 + components: + - pos: 66.5,8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12029 + components: + - pos: 65.5,8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12030 + components: + - pos: 65.5,7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12031 + components: + - pos: 65.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12032 + components: + - pos: 64.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12033 + components: + - pos: 63.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12034 + components: + - pos: 62.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12035 + components: + - pos: 61.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12036 + components: + - pos: 60.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12037 + components: + - pos: 59.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12038 + components: + - pos: 70.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12039 + components: + - pos: 71.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12040 + components: + - pos: 72.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12041 + components: + - pos: 73.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12042 + components: + - pos: 73.5,11.5 + parent: 2 + type: Transform + - uid: 12043 + components: + - pos: 73.5,12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12044 + components: + - pos: 73.5,13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12045 + components: + - pos: 73.5,14.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12046 + components: + - pos: 73.5,15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12047 + components: + - pos: 73.5,16.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12048 + components: + - pos: 73.5,17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12049 + components: + - pos: 73.5,18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12050 + components: + - pos: 74.5,12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12051 + components: + - pos: 75.5,12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12052 + components: + - pos: 76.5,12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12053 + components: + - pos: 77.5,12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12054 + components: + - pos: 78.5,12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12055 + components: + - pos: 79.5,12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12056 + components: + - pos: 78.5,-14.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12057 + components: + - pos: 78.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12058 + components: + - pos: 79.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12059 + components: + - pos: 80.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12060 + components: + - pos: 81.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12061 + components: + - pos: 82.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12062 + components: + - pos: 83.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12063 + components: + - pos: 84.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12064 + components: + - pos: 85.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12065 + components: + - pos: 86.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12066 + components: + - pos: 86.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12067 + components: + - pos: 86.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12068 + components: + - pos: 86.5,-10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12069 + components: + - pos: 86.5,-9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12070 + components: + - pos: 86.5,-8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12071 + components: + - pos: 86.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12072 + components: + - pos: 86.5,-6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12073 + components: + - pos: 86.5,-5.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12074 + components: + - pos: 86.5,-4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12079 + components: + - pos: 86.5,-3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12084 + components: + - pos: 85.5,-3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12096 + components: + - pos: 84.5,-3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12113 + components: + - pos: 84.5,-2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12114 + components: + - pos: 84.5,-1.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12115 + components: + - pos: 84.5,-0.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12117 + components: + - pos: 84.5,0.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12118 + components: + - pos: 84.5,1.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12119 + components: + - pos: 84.5,2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12120 + components: + - pos: 84.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12121 + components: + - pos: 84.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12122 + components: + - pos: 84.5,8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12123 + components: + - pos: 85.5,8.5 + parent: 2 + type: Transform + - uid: 12124 + components: + - pos: 85.5,9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12125 + components: + - pos: 85.5,10.5 + parent: 2 + type: Transform + - uid: 12126 + components: + - pos: 85.5,11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12127 + components: + - pos: 84.5,11.5 + parent: 2 + type: Transform + - uid: 12128 + components: + - pos: 83.5,11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12129 + components: + - pos: 84.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12130 + components: + - pos: 84.5,5.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12131 + components: + - pos: 83.5,5.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12132 + components: + - pos: 82.5,5.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12133 + components: + - pos: 81.5,5.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12134 + components: + - pos: 80.5,5.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12135 + components: + - pos: 69.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12136 + components: + - pos: 70.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12137 + components: + - pos: 70.5,-16.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12138 + components: + - pos: 70.5,-17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12500 + components: + - pos: 87.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12501 + components: + - pos: 88.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12505 + components: + - pos: 88.5,-16.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12507 + components: + - pos: 88.5,-17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12508 + components: + - pos: 88.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12509 + components: + - pos: 88.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12510 + components: + - pos: 88.5,-20.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12511 + components: + - pos: 87.5,-20.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12512 + components: + - pos: 86.5,-20.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12513 + components: + - pos: 89.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12514 + components: + - pos: 90.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12523 + components: + - pos: 91.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12524 + components: + - pos: 92.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12525 + components: + - pos: 93.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12526 + components: + - pos: 100.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12527 + components: + - pos: 101.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12533 + components: + - pos: 102.5,-19.5 + parent: 2 + type: Transform + - uid: 12534 + components: + - pos: 102.5,-18.5 + parent: 2 + type: Transform + - uid: 12535 + components: + - pos: 103.5,-18.5 + parent: 2 + type: Transform + - uid: 12536 + components: + - pos: 104.5,-18.5 + parent: 2 + type: Transform + - uid: 12541 + components: + - pos: 105.5,-18.5 + parent: 2 + type: Transform + - uid: 12542 + components: + - pos: 106.5,-18.5 + parent: 2 + type: Transform + - uid: 12545 + components: + - pos: 107.5,-18.5 + parent: 2 + type: Transform + - uid: 12546 + components: + - pos: 107.5,-17.5 + parent: 2 + type: Transform + - uid: 12547 + components: + - pos: 108.5,-17.5 + parent: 2 + type: Transform + - uid: 12551 + components: + - pos: 109.5,-17.5 + parent: 2 + type: Transform + - uid: 12552 + components: + - pos: 110.5,-17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12555 + components: + - pos: 110.5,-16.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12558 + components: + - pos: 110.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12560 + components: + - pos: 110.5,-14.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12561 + components: + - pos: 107.5,-16.5 + parent: 2 + type: Transform + - uid: 12565 + components: + - pos: 106.5,-16.5 + parent: 2 + type: Transform + - uid: 12566 + components: + - pos: 106.5,-15.5 + parent: 2 + type: Transform + - uid: 12567 + components: + - pos: 106.5,-14.5 + parent: 2 + type: Transform + - uid: 12568 + components: + - pos: 106.5,-13.5 + parent: 2 + type: Transform + - uid: 12569 + components: + - pos: 106.5,-12.5 + parent: 2 + type: Transform + - uid: 12570 + components: + - pos: 106.5,-11.5 + parent: 2 + type: Transform + - uid: 12571 + components: + - pos: 106.5,-10.5 + parent: 2 + type: Transform + - uid: 12572 + components: + - pos: 105.5,-12.5 + parent: 2 + type: Transform + - uid: 12573 + components: + - pos: 104.5,-12.5 + parent: 2 + type: Transform + - uid: 12574 + components: + - pos: 103.5,-12.5 + parent: 2 + type: Transform + - uid: 12575 + components: + - pos: 102.5,-12.5 + parent: 2 + type: Transform + - uid: 12576 + components: + - pos: 102.5,-13.5 + parent: 2 + type: Transform + - uid: 12577 + components: + - pos: 106.5,-19.5 + parent: 2 + type: Transform + - uid: 12578 + components: + - pos: 106.5,-20.5 + parent: 2 + type: Transform + - uid: 12583 + components: + - pos: 106.5,-21.5 + parent: 2 + type: Transform + - uid: 12584 + components: + - pos: 106.5,-22.5 + parent: 2 + type: Transform + - uid: 12585 + components: + - pos: 106.5,-23.5 + parent: 2 + type: Transform + - uid: 12586 + components: + - pos: 106.5,-24.5 + parent: 2 + type: Transform + - uid: 12587 + components: + - pos: 110.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12588 + components: + - pos: 111.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12589 + components: + - pos: 112.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12590 + components: + - pos: 112.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12591 + components: + - pos: 113.5,-19.5 + parent: 2 + type: Transform + - uid: 12592 + components: + - pos: 114.5,-19.5 + parent: 2 + type: Transform + - uid: 12593 + components: + - pos: 114.5,-18.5 + parent: 2 + type: Transform + - uid: 12594 + components: + - pos: 114.5,-17.5 + parent: 2 + type: Transform + - uid: 12595 + components: + - pos: 114.5,-16.5 + parent: 2 + type: Transform + - uid: 12949 + components: + - pos: 41.5,-44.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12950 + components: + - pos: 42.5,-44.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12951 + components: + - pos: 43.5,-44.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12952 + components: + - pos: 44.5,-44.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12953 + components: + - pos: 45.5,-44.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12954 + components: + - pos: 46.5,-44.5 + parent: 2 + type: Transform + - uid: 12955 + components: + - pos: 47.5,-44.5 + parent: 2 + type: Transform + - uid: 12956 + components: + - pos: 48.5,-44.5 + parent: 2 + type: Transform + - uid: 12957 + components: + - pos: 49.5,-44.5 + parent: 2 + type: Transform + - uid: 12958 + components: + - pos: 49.5,-45.5 + parent: 2 + type: Transform + - uid: 12959 + components: + - pos: 49.5,-46.5 + parent: 2 + type: Transform + - uid: 12960 + components: + - pos: 49.5,-47.5 + parent: 2 + type: Transform + - uid: 12961 + components: + - pos: 49.5,-48.5 + parent: 2 + type: Transform + - uid: 12962 + components: + - pos: 35.5,-46.5 + parent: 2 + type: Transform + - uid: 12963 + components: + - pos: 35.5,-47.5 + parent: 2 + type: Transform + - uid: 12964 + components: + - pos: 34.5,-47.5 + parent: 2 + type: Transform + - uid: 12965 + components: + - pos: 33.5,-47.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12966 + components: + - pos: 32.5,-47.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12967 + components: + - pos: 32.5,-48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12968 + components: + - pos: 35.5,-48.5 + parent: 2 + type: Transform + - uid: 12969 + components: + - pos: 36.5,-48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12970 + components: + - pos: 37.5,-48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12971 + components: + - pos: 38.5,-48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12972 + components: + - pos: 39.5,-48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12973 + components: + - pos: 40.5,-48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12974 + components: + - pos: 41.5,-48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12975 + components: + - pos: 42.5,-48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12976 + components: + - pos: 43.5,-48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound +- proto: CableApcStack + entities: + - uid: 5386 + components: + - pos: 50.555935,8.595494 + parent: 2 + type: Transform + - uid: 5387 + components: + - pos: 50.555935,8.595494 + parent: 2 + type: Transform + - uid: 5627 + components: + - pos: 17.749475,-23.290428 + parent: 2 + type: Transform + - uid: 11130 + components: + - pos: 54.504898,-15.262592 + parent: 2 + type: Transform +- proto: CableApcStack1 + entities: + - uid: 6180 + components: + - pos: 84.31913,7.409586 + parent: 2 + type: Transform +- proto: CableHV + entities: + - uid: 11 + components: + - pos: 13.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 29 + components: + - pos: 12.5,33.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 61 + components: + - pos: 15.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 63 + components: + - pos: 16.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 64 + components: + - pos: 15.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 65 + components: + - pos: 14.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 66 + components: + - pos: 13.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 603 + components: + - pos: 42.5,41.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 803 + components: + - pos: 23.5,-37.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 828 + components: + - pos: 24.5,-36.5 + parent: 2 + type: Transform + - uid: 829 + components: + - pos: 19.5,-39.5 + parent: 2 + type: Transform + - uid: 830 + components: + - pos: 17.5,-41.5 + parent: 2 + type: Transform + - uid: 1015 + components: + - pos: 23.5,-36.5 + parent: 2 + type: Transform + - uid: 1026 + components: + - pos: 25.5,-42.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1027 + components: + - pos: 25.5,-41.5 + parent: 2 + type: Transform + - uid: 1469 + components: + - pos: 25.5,-36.5 + parent: 2 + type: Transform + - uid: 1941 + components: + - pos: 24.5,-28.5 + parent: 2 + type: Transform + - uid: 2332 + components: + - pos: 43.5,41.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2387 + components: + - pos: 25.5,-28.5 + parent: 2 + type: Transform + - uid: 2711 + components: + - pos: 117.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2832 + components: + - pos: 23.5,-28.5 + parent: 2 + type: Transform + - uid: 2988 + components: + - pos: 22.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2989 + components: + - pos: 22.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3012 + components: + - pos: 22.5,9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3980 + components: + - pos: 23.5,-41.5 + parent: 2 + type: Transform + - uid: 4020 + components: + - pos: 26.5,-42.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4213 + components: + - pos: 22.5,8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4218 + components: + - pos: 22.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4227 + components: + - pos: 22.5,7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4307 + components: + - pos: 17.5,-40.5 + parent: 2 + type: Transform + - uid: 4335 + components: + - pos: 17.5,-39.5 + parent: 2 + type: Transform + - uid: 4336 + components: + - pos: 18.5,-39.5 + parent: 2 + type: Transform + - uid: 4337 + components: + - pos: 23.5,-42.5 + parent: 2 + type: Transform + - uid: 4504 + components: + - pos: 25.5,-40.5 + parent: 2 + type: Transform + - uid: 4505 + components: + - pos: 25.5,-39.5 + parent: 2 + type: Transform + - uid: 4506 + components: + - pos: 24.5,-39.5 + parent: 2 + type: Transform + - uid: 4507 + components: + - pos: 23.5,-39.5 + parent: 2 + type: Transform + - uid: 4508 + components: + - pos: 23.5,-38.5 + parent: 2 + type: Transform + - uid: 4509 + components: + - pos: 23.5,-40.5 + parent: 2 + type: Transform + - uid: 4510 + components: + - pos: 23.5,-43.5 + parent: 2 + type: Transform + - uid: 4511 + components: + - pos: 22.5,-43.5 + parent: 2 + type: Transform + - uid: 4512 + components: + - pos: 21.5,-43.5 + parent: 2 + type: Transform + - uid: 4513 + components: + - pos: 20.5,-43.5 + parent: 2 + type: Transform + - uid: 4514 + components: + - pos: 19.5,-43.5 + parent: 2 + type: Transform + - uid: 4515 + components: + - pos: 19.5,-41.5 + parent: 2 + type: Transform + - uid: 4516 + components: + - pos: 19.5,-42.5 + parent: 2 + type: Transform + - uid: 4517 + components: + - pos: 19.5,-40.5 + parent: 2 + type: Transform + - uid: 4518 + components: + - pos: 17.5,-42.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4519 + components: + - pos: 16.5,-42.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4520 + components: + - pos: 26.5,-36.5 + parent: 2 + type: Transform + - uid: 4521 + components: + - pos: 27.5,-36.5 + parent: 2 + type: Transform + - uid: 4522 + components: + - pos: 28.5,-36.5 + parent: 2 + type: Transform + - uid: 4523 + components: + - pos: 29.5,-36.5 + parent: 2 + type: Transform + - uid: 4524 + components: + - pos: 30.5,-36.5 + parent: 2 + type: Transform + - uid: 4525 + components: + - pos: 31.5,-36.5 + parent: 2 + type: Transform + - uid: 4526 + components: + - pos: 31.5,-37.5 + parent: 2 + type: Transform + - uid: 4527 + components: + - pos: 31.5,-38.5 + parent: 2 + type: Transform + - uid: 4528 + components: + - pos: 30.5,-38.5 + parent: 2 + type: Transform + - uid: 4529 + components: + - pos: 30.5,-39.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4530 + components: + - pos: 30.5,-40.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4531 + components: + - pos: 30.5,-41.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4532 + components: + - pos: 30.5,-42.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4533 + components: + - pos: 30.5,-43.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4534 + components: + - pos: 30.5,-44.5 + parent: 2 + type: Transform + - uid: 4535 + components: + - pos: 26.5,-35.5 + parent: 2 + type: Transform + - uid: 4536 + components: + - pos: 26.5,-34.5 + parent: 2 + type: Transform + - uid: 4537 + components: + - pos: 26.5,-33.5 + parent: 2 + type: Transform + - uid: 4538 + components: + - pos: 26.5,-32.5 + parent: 2 + type: Transform + - uid: 4541 + components: + - pos: 25.5,-32.5 + parent: 2 + type: Transform + - uid: 4542 + components: + - pos: 27.5,-32.5 + parent: 2 + type: Transform + - uid: 4543 + components: + - pos: 25.5,-31.5 + parent: 2 + type: Transform + - uid: 4544 + components: + - pos: 26.5,-31.5 + parent: 2 + type: Transform + - uid: 4545 + components: + - pos: 27.5,-31.5 + parent: 2 + type: Transform + - uid: 4546 + components: + - pos: 25.5,-30.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4547 + components: + - pos: 26.5,-30.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4548 + components: + - pos: 27.5,-30.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4549 + components: + - pos: 26.5,-29.5 + parent: 2 + type: Transform + - uid: 4550 + components: + - pos: 26.5,-28.5 + parent: 2 + type: Transform + - uid: 4585 + components: + - pos: 22.5,-28.5 + parent: 2 + type: Transform + - uid: 4586 + components: + - pos: 22.5,-27.5 + parent: 2 + type: Transform + - uid: 4588 + components: + - pos: 22.5,-26.5 + parent: 2 + type: Transform + - uid: 4589 + components: + - pos: 22.5,-25.5 + parent: 2 + type: Transform + - uid: 4590 + components: + - pos: 22.5,-24.5 + parent: 2 + type: Transform + - uid: 4591 + components: + - pos: 22.5,-23.5 + parent: 2 + type: Transform + - uid: 4592 + components: + - pos: 21.5,-26.5 + parent: 2 + type: Transform + - uid: 4593 + components: + - pos: 20.5,-26.5 + parent: 2 + type: Transform + - uid: 4594 + components: + - pos: 19.5,-26.5 + parent: 2 + type: Transform + - uid: 4595 + components: + - pos: 18.5,-26.5 + parent: 2 + type: Transform + - uid: 4596 + components: + - pos: 17.5,-26.5 + parent: 2 + type: Transform + - uid: 4597 + components: + - pos: 16.5,-26.5 + parent: 2 + type: Transform + - uid: 4598 + components: + - pos: 15.5,-26.5 + parent: 2 + type: Transform + - uid: 4599 + components: + - pos: 14.5,-26.5 + parent: 2 + type: Transform + - uid: 4600 + components: + - pos: 13.5,-26.5 + parent: 2 + type: Transform + - uid: 4601 + components: + - pos: 12.5,-26.5 + parent: 2 + type: Transform + - uid: 4602 + components: + - pos: 11.5,-26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4603 + components: + - pos: 10.5,-26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4604 + components: + - pos: 10.5,-25.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4781 + components: + - pos: 21.5,-40.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4783 + components: + - pos: 21.5,-39.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4784 + components: + - pos: 21.5,-38.5 + parent: 2 + type: Transform + - uid: 4785 + components: + - pos: 21.5,-37.5 + parent: 2 + type: Transform + - uid: 4786 + components: + - pos: 21.5,-36.5 + parent: 2 + type: Transform + - uid: 4787 + components: + - pos: 21.5,-35.5 + parent: 2 + type: Transform + - uid: 4788 + components: + - pos: 20.5,-35.5 + parent: 2 + type: Transform + - uid: 4789 + components: + - pos: 19.5,-35.5 + parent: 2 + type: Transform + - uid: 4790 + components: + - pos: 18.5,-35.5 + parent: 2 + type: Transform + - uid: 4791 + components: + - pos: 18.5,-34.5 + parent: 2 + type: Transform + - uid: 4792 + components: + - pos: 18.5,-33.5 + parent: 2 + type: Transform + - uid: 4793 + components: + - pos: 18.5,-32.5 + parent: 2 + type: Transform + - uid: 4794 + components: + - pos: 18.5,-31.5 + parent: 2 + type: Transform + - uid: 4795 + components: + - pos: 18.5,-30.5 + parent: 2 + type: Transform + - uid: 4796 + components: + - pos: 18.5,-29.5 + parent: 2 + type: Transform + - uid: 4797 + components: + - pos: 18.5,-28.5 + parent: 2 + type: Transform + - uid: 4798 + components: + - pos: 18.5,-27.5 + parent: 2 + type: Transform + - uid: 4801 + components: + - pos: -13.5,-33.5 + parent: 2 + type: Transform + - uid: 4802 + components: + - pos: -13.5,-32.5 + parent: 2 + type: Transform + - uid: 4803 + components: + - pos: -13.5,-31.5 + parent: 2 + type: Transform + - uid: 4804 + components: + - pos: -11.5,-33.5 + parent: 2 + type: Transform + - uid: 4805 + components: + - pos: -11.5,-32.5 + parent: 2 + type: Transform + - uid: 4806 + components: + - pos: -11.5,-31.5 + parent: 2 + type: Transform + - uid: 4807 + components: + - pos: -12.5,-33.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4808 + components: + - pos: -12.5,-34.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4809 + components: + - pos: -8.5,-33.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4810 + components: + - pos: -12.5,-36.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4816 + components: + - pos: -12.5,-37.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4817 + components: + - pos: -11.5,-37.5 + parent: 2 + type: Transform + - uid: 4818 + components: + - pos: -11.5,-38.5 + parent: 2 + type: Transform + - uid: 4819 + components: + - pos: -11.5,-39.5 + parent: 2 + type: Transform + - uid: 4820 + components: + - pos: -13.5,-39.5 + parent: 2 + type: Transform + - uid: 4821 + components: + - pos: -13.5,-38.5 + parent: 2 + type: Transform + - uid: 4822 + components: + - pos: -13.5,-37.5 + parent: 2 + type: Transform + - uid: 4823 + components: + - pos: -9.5,-40.5 + parent: 2 + type: Transform + - uid: 4824 + components: + - pos: -9.5,-39.5 + parent: 2 + type: Transform + - uid: 4825 + components: + - pos: -9.5,-38.5 + parent: 2 + type: Transform + - uid: 4826 + components: + - pos: -9.5,-37.5 + parent: 2 + type: Transform + - uid: 4828 + components: + - pos: -7.5,-40.5 + parent: 2 + type: Transform + - uid: 4830 + components: + - pos: -7.5,-39.5 + parent: 2 + type: Transform + - uid: 4831 + components: + - pos: -7.5,-38.5 + parent: 2 + type: Transform + - uid: 4832 + components: + - pos: -7.5,-37.5 + parent: 2 + type: Transform + - uid: 4833 + components: + - pos: -9.5,-33.5 + parent: 2 + type: Transform + - uid: 4834 + components: + - pos: -9.5,-32.5 + parent: 2 + type: Transform + - uid: 4835 + components: + - pos: -9.5,-31.5 + parent: 2 + type: Transform + - uid: 4836 + components: + - pos: -9.5,-30.5 + parent: 2 + type: Transform + - uid: 4837 + components: + - pos: -7.5,-33.5 + parent: 2 + type: Transform + - uid: 4838 + components: + - pos: -7.5,-32.5 + parent: 2 + type: Transform + - uid: 4839 + components: + - pos: -7.5,-31.5 + parent: 2 + type: Transform + - uid: 4840 + components: + - pos: -7.5,-30.5 + parent: 2 + type: Transform + - uid: 4841 + components: + - pos: -5.5,-33.5 + parent: 2 + type: Transform + - uid: 4842 + components: + - pos: -5.5,-32.5 + parent: 2 + type: Transform + - uid: 4843 + components: + - pos: -5.5,-31.5 + parent: 2 + type: Transform + - uid: 4844 + components: + - pos: -3.5,-33.5 + parent: 2 + type: Transform + - uid: 4845 + components: + - pos: -3.5,-32.5 + parent: 2 + type: Transform + - uid: 4846 + components: + - pos: -3.5,-31.5 + parent: 2 + type: Transform + - uid: 4847 + components: + - pos: -5.5,-39.5 + parent: 2 + type: Transform + - uid: 4848 + components: + - pos: -5.5,-38.5 + parent: 2 + type: Transform + - uid: 4849 + components: + - pos: -5.5,-37.5 + parent: 2 + type: Transform + - uid: 4850 + components: + - pos: -3.5,-39.5 + parent: 2 + type: Transform + - uid: 4851 + components: + - pos: -3.5,-38.5 + parent: 2 + type: Transform + - uid: 4852 + components: + - pos: -3.5,-37.5 + parent: 2 + type: Transform + - uid: 4853 + components: + - pos: -8.5,-34.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4854 + components: + - pos: -8.5,-37.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4855 + components: + - pos: -8.5,-36.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4856 + components: + - pos: -4.5,-37.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4857 + components: + - pos: -4.5,-36.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4858 + components: + - pos: -4.5,-33.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4859 + components: + - pos: -4.5,-34.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4860 + components: + - pos: -15.5,-35.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4861 + components: + - pos: -14.5,-35.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4862 + components: + - pos: -1.5,-35.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4863 + components: + - pos: -0.5,-35.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4864 + components: + - pos: 0.5,-35.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4865 + components: + - pos: 1.5,-35.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4866 + components: + - pos: 2.5,-35.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4867 + components: + - pos: 2.5,-34.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4868 + components: + - pos: 3.5,-34.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4869 + components: + - pos: 4.5,-34.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4870 + components: + - pos: 4.5,-35.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4871 + components: + - pos: 4.5,-36.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4908 + components: + - pos: 22.5,5.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5146 + components: + - pos: 41.5,41.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5421 + components: + - pos: 14.5,33.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5743 + components: + - pos: 12.5,34.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5873 + components: + - pos: 63.5,48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5903 + components: + - pos: 4.5,-33.5 + parent: 2 + type: Transform + - uid: 5904 + components: + - pos: 4.5,-32.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5905 + components: + - pos: 4.5,-31.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5906 + components: + - pos: 4.5,-30.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5907 + components: + - pos: 4.5,-29.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5908 + components: + - pos: 4.5,-28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5909 + components: + - pos: 4.5,-27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5910 + components: + - pos: 4.5,-26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5911 + components: + - pos: 4.5,-25.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5912 + components: + - pos: 4.5,-24.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5913 + components: + - pos: 4.5,-23.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5922 + components: + - pos: 5.5,-23.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5923 + components: + - pos: 6.5,-23.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5924 + components: + - pos: 7.5,-23.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5925 + components: + - pos: 8.5,-23.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5926 + components: + - pos: 9.5,-23.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5927 + components: + - pos: 10.5,-23.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5928 + components: + - pos: 11.5,-23.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5929 + components: + - pos: 11.5,-22.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5930 + components: + - pos: 11.5,-21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5931 + components: + - pos: 11.5,-20.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5932 + components: + - pos: 10.5,-20.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5933 + components: + - pos: 10.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5934 + components: + - pos: 10.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5935 + components: + - pos: 10.5,-17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5936 + components: + - pos: 10.5,-16.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5937 + components: + - pos: 10.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5938 + components: + - pos: 9.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5939 + components: + - pos: 8.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5940 + components: + - pos: 7.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5941 + components: + - pos: 6.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5942 + components: + - pos: 5.5,-15.5 + parent: 2 + type: Transform + - uid: 5943 + components: + - pos: 4.5,-15.5 + parent: 2 + type: Transform + - uid: 5944 + components: + - pos: 3.5,-15.5 + parent: 2 + type: Transform + - uid: 5945 + components: + - pos: 2.5,-15.5 + parent: 2 + type: Transform + - uid: 5946 + components: + - pos: 1.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5947 + components: + - pos: 1.5,-14.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5948 + components: + - pos: 1.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5949 + components: + - pos: 1.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5950 + components: + - pos: 1.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5951 + components: + - pos: 1.5,-10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5952 + components: + - pos: 1.5,-9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5953 + components: + - pos: 2.5,-9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5954 + components: + - pos: 3.5,-9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5955 + components: + - pos: 4.5,-9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5956 + components: + - pos: 5.5,-9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5957 + components: + - pos: 6.5,-9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5958 + components: + - pos: 6.5,-8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5959 + components: + - pos: 10.5,-14.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5960 + components: + - pos: 10.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5961 + components: + - pos: 11.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5962 + components: + - pos: 12.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5963 + components: + - pos: 13.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5970 + components: + - pos: 16.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5971 + components: + - pos: 16.5,-14.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5972 + components: + - pos: 12.5,-21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5973 + components: + - pos: 13.5,-21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5974 + components: + - pos: 14.5,-21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5975 + components: + - pos: 15.5,-21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5976 + components: + - pos: 16.5,-21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5977 + components: + - pos: 17.5,-21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5978 + components: + - pos: 18.5,-21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5979 + components: + - pos: 19.5,-21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5980 + components: + - pos: 20.5,-21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5981 + components: + - pos: 21.5,-21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5982 + components: + - pos: 22.5,-21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5983 + components: + - pos: 23.5,-21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5984 + components: + - pos: 24.5,-21.5 + parent: 2 + type: Transform + - uid: 5985 + components: + - pos: 25.5,-21.5 + parent: 2 + type: Transform + - uid: 5986 + components: + - pos: 25.5,-20.5 + parent: 2 + type: Transform + - uid: 5987 + components: + - pos: 27.5,-21.5 + parent: 2 + type: Transform + - uid: 5988 + components: + - pos: 28.5,-21.5 + parent: 2 + type: Transform + - uid: 5989 + components: + - pos: 29.5,-21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5990 + components: + - pos: 30.5,-21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5991 + components: + - pos: 30.5,-20.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5992 + components: + - pos: 30.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5993 + components: + - pos: 31.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5994 + components: + - pos: 32.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5995 + components: + - pos: 33.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5996 + components: + - pos: 34.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5997 + components: + - pos: 35.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5998 + components: + - pos: 36.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5999 + components: + - pos: 37.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6000 + components: + - pos: 38.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6001 + components: + - pos: 39.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6002 + components: + - pos: 40.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6003 + components: + - pos: 41.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6004 + components: + - pos: 41.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6016 + components: + - pos: 42.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6017 + components: + - pos: 43.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6018 + components: + - pos: 44.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6019 + components: + - pos: 45.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6020 + components: + - pos: 46.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6021 + components: + - pos: 47.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6022 + components: + - pos: 48.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6023 + components: + - pos: 49.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6024 + components: + - pos: 50.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6028 + components: + - pos: 51.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6029 + components: + - pos: 52.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6030 + components: + - pos: 52.5,-17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6031 + components: + - pos: 52.5,-16.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6032 + components: + - pos: 52.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6033 + components: + - pos: 52.5,-14.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6034 + components: + - pos: 52.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6035 + components: + - pos: 52.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6036 + components: + - pos: 52.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6037 + components: + - pos: 52.5,-10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6038 + components: + - pos: 53.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6039 + components: + - pos: 54.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6040 + components: + - pos: 55.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6041 + components: + - pos: 56.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6042 + components: + - pos: 57.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6044 + components: + - pos: 57.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6045 + components: + - pos: 58.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6046 + components: + - pos: 59.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6048 + components: + - pos: 60.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6049 + components: + - pos: 61.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6050 + components: + - pos: 62.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6051 + components: + - pos: 63.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6052 + components: + - pos: 64.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6053 + components: + - pos: 65.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6054 + components: + - pos: 66.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6055 + components: + - pos: 67.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6056 + components: + - pos: 68.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6057 + components: + - pos: 69.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6058 + components: + - pos: 69.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6059 + components: + - pos: 69.5,-17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6060 + components: + - pos: 69.5,-16.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6061 + components: + - pos: 70.5,-16.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6062 + components: + - pos: 71.5,-16.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6063 + components: + - pos: 71.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6064 + components: + - pos: 71.5,-14.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6065 + components: + - pos: 71.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6066 + components: + - pos: 70.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6067 + components: + - pos: 69.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6070 + components: + - pos: 72.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6071 + components: + - pos: 73.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6072 + components: + - pos: 74.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6073 + components: + - pos: 75.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6074 + components: + - pos: 76.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6075 + components: + - pos: 77.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6076 + components: + - pos: 78.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6077 + components: + - pos: 79.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6078 + components: + - pos: 80.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6079 + components: + - pos: 81.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6080 + components: + - pos: 82.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6081 + components: + - pos: 83.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6082 + components: + - pos: 84.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6083 + components: + - pos: 85.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6084 + components: + - pos: 86.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6087 + components: + - pos: 86.5,-14.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6088 + components: + - pos: 86.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6089 + components: + - pos: 86.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6090 + components: + - pos: 86.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6091 + components: + - pos: 86.5,-10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6092 + components: + - pos: 86.5,-9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6093 + components: + - pos: 86.5,-8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6094 + components: + - pos: 86.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6096 + components: + - pos: 86.5,-6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6097 + components: + - pos: 86.5,-5.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6098 + components: + - pos: 86.5,-4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6100 + components: + - pos: 86.5,-3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6101 + components: + - pos: 86.5,-2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6102 + components: + - pos: 85.5,-2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6103 + components: + - pos: 84.5,-2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6104 + components: + - pos: 84.5,-1.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6105 + components: + - pos: 84.5,-0.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6106 + components: + - pos: 84.5,0.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6107 + components: + - pos: 84.5,1.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6108 + components: + - pos: 84.5,2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6109 + components: + - pos: 84.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6110 + components: + - pos: 84.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6111 + components: + - pos: 83.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6112 + components: + - pos: 82.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6141 + components: + - pos: 81.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6142 + components: + - pos: 81.5,5.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6143 + components: + - pos: 81.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6144 + components: + - pos: 81.5,7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6145 + components: + - pos: 81.5,8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6146 + components: + - pos: 81.5,9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6147 + components: + - pos: 81.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6148 + components: + - pos: 81.5,11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6149 + components: + - pos: 81.5,12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6150 + components: + - pos: 80.5,12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6151 + components: + - pos: 79.5,12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6152 + components: + - pos: 78.5,12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6153 + components: + - pos: 77.5,12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6154 + components: + - pos: 76.5,12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6155 + components: + - pos: 75.5,12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6156 + components: + - pos: 74.5,12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6157 + components: + - pos: 74.5,11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6159 + components: + - pos: 74.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6160 + components: + - pos: 73.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6161 + components: + - pos: 72.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6162 + components: + - pos: 71.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6163 + components: + - pos: 70.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6164 + components: + - pos: 69.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6165 + components: + - pos: 68.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6166 + components: + - pos: 67.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6167 + components: + - pos: 67.5,9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6168 + components: + - pos: 67.5,8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6169 + components: + - pos: 74.5,13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6170 + components: + - pos: 74.5,14.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6171 + components: + - pos: 74.5,15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6173 + components: + - pos: 74.5,16.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6174 + components: + - pos: 74.5,17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6175 + components: + - pos: 74.5,18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6176 + components: + - pos: 73.5,18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6177 + components: + - pos: 72.5,18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6178 + components: + - pos: 71.5,18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6179 + components: + - pos: 70.5,18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6181 + components: + - pos: 69.5,18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6182 + components: + - pos: 68.5,18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6183 + components: + - pos: 67.5,18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6184 + components: + - pos: 67.5,19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6185 + components: + - pos: 67.5,20.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6186 + components: + - pos: 67.5,21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6187 + components: + - pos: 67.5,22.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6188 + components: + - pos: 67.5,23.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6189 + components: + - pos: 67.5,24.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6190 + components: + - pos: 66.5,24.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6191 + components: + - pos: 66.5,25.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6192 + components: + - pos: 66.5,26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6193 + components: + - pos: 66.5,27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6194 + components: + - pos: 66.5,28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6195 + components: + - pos: 66.5,29.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6200 + components: + - pos: 66.5,30.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6201 + components: + - pos: 66.5,31.5 + parent: 2 + type: Transform + - uid: 6202 + components: + - pos: 66.5,32.5 + parent: 2 + type: Transform + - uid: 6203 + components: + - pos: 66.5,33.5 + parent: 2 + type: Transform + - uid: 6204 + components: + - pos: 66.5,34.5 + parent: 2 + type: Transform + - uid: 6205 + components: + - pos: 66.5,35.5 + parent: 2 + type: Transform + - uid: 6206 + components: + - pos: 66.5,36.5 + parent: 2 + type: Transform + - uid: 6207 + components: + - pos: 66.5,37.5 + parent: 2 + type: Transform + - uid: 6208 + components: + - pos: 66.5,38.5 + parent: 2 + type: Transform + - uid: 6213 + components: + - pos: 66.5,39.5 + parent: 2 + type: Transform + - uid: 6214 + components: + - pos: 66.5,40.5 + parent: 2 + type: Transform + - uid: 6215 + components: + - pos: 66.5,41.5 + parent: 2 + type: Transform + - uid: 6216 + components: + - pos: 66.5,42.5 + parent: 2 + type: Transform + - uid: 6217 + components: + - pos: 67.5,42.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6218 + components: + - pos: 68.5,42.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6219 + components: + - pos: 69.5,42.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6220 + components: + - pos: 69.5,43.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6221 + components: + - pos: 69.5,44.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6222 + components: + - pos: 70.5,44.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6223 + components: + - pos: 71.5,44.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6224 + components: + - pos: 71.5,45.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6225 + components: + - pos: 72.5,45.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6226 + components: + - pos: 73.5,45.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6227 + components: + - pos: 74.5,45.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6228 + components: + - pos: 75.5,45.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6229 + components: + - pos: 77.5,47.5 + parent: 2 + type: Transform + - uid: 6230 + components: + - pos: 77.5,48.5 + parent: 2 + type: Transform + - uid: 6231 + components: + - pos: 77.5,49.5 + parent: 2 + type: Transform + - uid: 6232 + components: + - pos: 79.5,47.5 + parent: 2 + type: Transform + - uid: 6233 + components: + - pos: 79.5,48.5 + parent: 2 + type: Transform + - uid: 6234 + components: + - pos: 79.5,49.5 + parent: 2 + type: Transform + - uid: 6235 + components: + - pos: 77.5,41.5 + parent: 2 + type: Transform + - uid: 6236 + components: + - pos: 77.5,42.5 + parent: 2 + type: Transform + - uid: 6237 + components: + - pos: 77.5,43.5 + parent: 2 + type: Transform + - uid: 6239 + components: + - pos: 79.5,41.5 + parent: 2 + type: Transform + - uid: 6240 + components: + - pos: 79.5,42.5 + parent: 2 + type: Transform + - uid: 6241 + components: + - pos: 79.5,43.5 + parent: 2 + type: Transform + - uid: 6242 + components: + - pos: 78.5,43.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6243 + components: + - pos: 78.5,44.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6244 + components: + - pos: 78.5,46.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6245 + components: + - pos: 78.5,47.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6246 + components: + - pos: 81.5,47.5 + parent: 2 + type: Transform + - uid: 6247 + components: + - pos: 81.5,48.5 + parent: 2 + type: Transform + - uid: 6248 + components: + - pos: 81.5,49.5 + parent: 2 + type: Transform + - uid: 6249 + components: + - pos: 81.5,50.5 + parent: 2 + type: Transform + - uid: 6250 + components: + - pos: 83.5,47.5 + parent: 2 + type: Transform + - uid: 6251 + components: + - pos: 83.5,48.5 + parent: 2 + type: Transform + - uid: 6252 + components: + - pos: 83.5,49.5 + parent: 2 + type: Transform + - uid: 6253 + components: + - pos: 83.5,50.5 + parent: 2 + type: Transform + - uid: 6254 + components: + - pos: 82.5,47.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6255 + components: + - pos: 82.5,46.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6256 + components: + - pos: 81.5,40.5 + parent: 2 + type: Transform + - uid: 6257 + components: + - pos: 81.5,41.5 + parent: 2 + type: Transform + - uid: 6258 + components: + - pos: 81.5,42.5 + parent: 2 + type: Transform + - uid: 6259 + components: + - pos: 81.5,43.5 + parent: 2 + type: Transform + - uid: 6260 + components: + - pos: 83.5,40.5 + parent: 2 + type: Transform + - uid: 6261 + components: + - pos: 83.5,41.5 + parent: 2 + type: Transform + - uid: 6262 + components: + - pos: 83.5,42.5 + parent: 2 + type: Transform + - uid: 6263 + components: + - pos: 83.5,43.5 + parent: 2 + type: Transform + - uid: 6264 + components: + - pos: 82.5,43.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6265 + components: + - pos: 82.5,44.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6266 + components: + - pos: 85.5,47.5 + parent: 2 + type: Transform + - uid: 6267 + components: + - pos: 85.5,48.5 + parent: 2 + type: Transform + - uid: 6268 + components: + - pos: 85.5,49.5 + parent: 2 + type: Transform + - uid: 6269 + components: + - pos: 86.5,47.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6270 + components: + - pos: 86.5,46.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6271 + components: + - pos: 87.5,47.5 + parent: 2 + type: Transform + - uid: 6272 + components: + - pos: 87.5,48.5 + parent: 2 + type: Transform + - uid: 6273 + components: + - pos: 87.5,49.5 + parent: 2 + type: Transform + - uid: 6274 + components: + - pos: 85.5,41.5 + parent: 2 + type: Transform + - uid: 6275 + components: + - pos: 85.5,42.5 + parent: 2 + type: Transform + - uid: 6276 + components: + - pos: 85.5,43.5 + parent: 2 + type: Transform + - uid: 6277 + components: + - pos: 87.5,41.5 + parent: 2 + type: Transform + - uid: 6278 + components: + - pos: 87.5,42.5 + parent: 2 + type: Transform + - uid: 6279 + components: + - pos: 87.5,43.5 + parent: 2 + type: Transform + - uid: 6280 + components: + - pos: 86.5,43.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6281 + components: + - pos: 86.5,44.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6282 + components: + - pos: 89.5,45.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6283 + components: + - pos: 88.5,45.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6285 + components: + - pos: 67.5,43.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6286 + components: + - pos: 67.5,44.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6287 + components: + - pos: 67.5,45.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6288 + components: + - pos: 67.5,46.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6289 + components: + - pos: 66.5,46.5 + parent: 2 + type: Transform + - uid: 6290 + components: + - pos: 65.5,46.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6291 + components: + - pos: 64.5,46.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6292 + components: + - pos: 63.5,46.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6293 + components: + - pos: 63.5,47.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6294 + components: + - pos: 62.5,48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6295 + components: + - pos: 61.5,48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6296 + components: + - pos: 60.5,48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6297 + components: + - pos: 59.5,48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6298 + components: + - pos: 58.5,48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6299 + components: + - pos: 57.5,48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6300 + components: + - pos: 56.5,48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6301 + components: + - pos: 55.5,48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6302 + components: + - pos: 54.5,48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6303 + components: + - pos: 53.5,48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6304 + components: + - pos: 52.5,48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6305 + components: + - pos: 51.5,48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6306 + components: + - pos: 50.5,48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6307 + components: + - pos: 49.5,48.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6310 + components: + - pos: 49.5,47.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6311 + components: + - pos: 48.5,47.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6312 + components: + - pos: 47.5,47.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6313 + components: + - pos: 46.5,47.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6314 + components: + - pos: 46.5,46.5 + parent: 2 + type: Transform + - uid: 6315 + components: + - pos: 45.5,46.5 + parent: 2 + type: Transform + - uid: 6317 + components: + - pos: 47.5,26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6318 + components: + - pos: 44.5,46.5 + parent: 2 + type: Transform + - uid: 6319 + components: + - pos: 44.5,45.5 + parent: 2 + type: Transform + - uid: 6320 + components: + - pos: 44.5,44.5 + parent: 2 + type: Transform + - uid: 6321 + components: + - pos: 44.5,43.5 + parent: 2 + type: Transform + - uid: 6322 + components: + - pos: 44.5,42.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6323 + components: + - pos: 44.5,41.5 + parent: 2 + type: Transform + - uid: 6324 + components: + - pos: 44.5,40.5 + parent: 2 + type: Transform + - uid: 6325 + components: + - pos: 44.5,39.5 + parent: 2 + type: Transform + - uid: 6326 + components: + - pos: 45.5,39.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6327 + components: + - pos: 45.5,38.5 + parent: 2 + type: Transform + - uid: 6328 + components: + - pos: 45.5,37.5 + parent: 2 + type: Transform + - uid: 6329 + components: + - pos: 45.5,36.5 + parent: 2 + type: Transform + - uid: 6330 + components: + - pos: 45.5,35.5 + parent: 2 + type: Transform + - uid: 6331 + components: + - pos: 45.5,34.5 + parent: 2 + type: Transform + - uid: 6332 + components: + - pos: 45.5,33.5 + parent: 2 + type: Transform + - uid: 6333 + components: + - pos: 45.5,32.5 + parent: 2 + type: Transform + - uid: 6334 + components: + - pos: 45.5,31.5 + parent: 2 + type: Transform + - uid: 6335 + components: + - pos: 45.5,30.5 + parent: 2 + type: Transform + - uid: 6336 + components: + - pos: 45.5,29.5 + parent: 2 + type: Transform + - uid: 6337 + components: + - pos: 45.5,28.5 + parent: 2 + type: Transform + - uid: 6338 + components: + - pos: 44.5,28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6339 + components: + - pos: 43.5,28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6340 + components: + - pos: 46.5,28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6341 + components: + - pos: 46.5,27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6343 + components: + - pos: 47.5,27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6344 + components: + - pos: 48.5,27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6345 + components: + - pos: 49.5,27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6346 + components: + - pos: 50.5,27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6347 + components: + - pos: 47.5,25.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6348 + components: + - pos: 47.5,24.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6349 + components: + - pos: 47.5,23.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6350 + components: + - pos: 47.5,22.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6351 + components: + - pos: 47.5,21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6352 + components: + - pos: 47.5,20.5 + parent: 2 + type: Transform + - uid: 6353 + components: + - pos: 47.5,19.5 + parent: 2 + type: Transform + - uid: 6354 + components: + - pos: 47.5,18.5 + parent: 2 + type: Transform + - uid: 6355 + components: + - pos: 47.5,17.5 + parent: 2 + type: Transform + - uid: 6356 + components: + - pos: 47.5,16.5 + parent: 2 + type: Transform + - uid: 6357 + components: + - pos: 47.5,15.5 + parent: 2 + type: Transform + - uid: 6359 + components: + - pos: 47.5,14.5 + parent: 2 + type: Transform + - uid: 6360 + components: + - pos: 46.5,14.5 + parent: 2 + type: Transform + - uid: 6361 + components: + - pos: 45.5,14.5 + parent: 2 + type: Transform + - uid: 6362 + components: + - pos: 44.5,14.5 + parent: 2 + type: Transform + - uid: 6363 + components: + - pos: 43.5,14.5 + parent: 2 + type: Transform + - uid: 6364 + components: + - pos: 42.5,14.5 + parent: 2 + type: Transform + - uid: 6365 + components: + - pos: 41.5,14.5 + parent: 2 + type: Transform + - uid: 6366 + components: + - pos: 41.5,13.5 + parent: 2 + type: Transform + - uid: 6367 + components: + - pos: 41.5,12.5 + parent: 2 + type: Transform + - uid: 6368 + components: + - pos: 41.5,11.5 + parent: 2 + type: Transform + - uid: 6369 + components: + - pos: 41.5,10.5 + parent: 2 + type: Transform + - uid: 6370 + components: + - pos: 41.5,9.5 + parent: 2 + type: Transform + - uid: 6371 + components: + - pos: 41.5,8.5 + parent: 2 + type: Transform + - uid: 6372 + components: + - pos: 41.5,7.5 + parent: 2 + type: Transform + - uid: 6373 + components: + - pos: 42.5,7.5 + parent: 2 + type: Transform + - uid: 6374 + components: + - pos: 43.5,7.5 + parent: 2 + type: Transform + - uid: 6375 + components: + - pos: 44.5,7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6376 + components: + - pos: 44.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6377 + components: + - pos: 45.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6378 + components: + - pos: 46.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6380 + components: + - pos: 47.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6381 + components: + - pos: 48.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6382 + components: + - pos: 49.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6383 + components: + - pos: 50.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6384 + components: + - pos: 51.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6385 + components: + - pos: 52.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6386 + components: + - pos: 53.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6387 + components: + - pos: 54.5,6.5 + parent: 2 + type: Transform + - uid: 6388 + components: + - pos: 55.5,6.5 + parent: 2 + type: Transform + - uid: 6389 + components: + - pos: 56.5,6.5 + parent: 2 + type: Transform + - uid: 6390 + components: + - pos: 57.5,6.5 + parent: 2 + type: Transform + - uid: 6391 + components: + - pos: 58.5,6.5 + parent: 2 + type: Transform + - uid: 6392 + components: + - pos: 59.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6393 + components: + - pos: 60.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6394 + components: + - pos: 61.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6395 + components: + - pos: 62.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6396 + components: + - pos: 63.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6397 + components: + - pos: 64.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6398 + components: + - pos: 65.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6399 + components: + - pos: 65.5,7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6400 + components: + - pos: 65.5,8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6401 + components: + - pos: 66.5,8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6402 + components: + - pos: 40.5,11.5 + parent: 2 + type: Transform + - uid: 6403 + components: + - pos: 39.5,11.5 + parent: 2 + type: Transform + - uid: 6404 + components: + - pos: 38.5,11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6405 + components: + - pos: 37.5,11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6406 + components: + - pos: 36.5,11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6407 + components: + - pos: 35.5,11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6408 + components: + - pos: 34.5,11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6409 + components: + - pos: 33.5,11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6410 + components: + - pos: 32.5,11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6411 + components: + - pos: 31.5,11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6412 + components: + - pos: 30.5,11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6413 + components: + - pos: 29.5,11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6414 + components: + - pos: 29.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6415 + components: + - pos: 28.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6416 + components: + - pos: 27.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6417 + components: + - pos: 26.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6418 + components: + - pos: 25.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6419 + components: + - pos: 24.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6420 + components: + - pos: 23.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6429 + components: + - pos: 22.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6430 + components: + - pos: 21.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6431 + components: + - pos: 20.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6432 + components: + - pos: 19.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6433 + components: + - pos: 18.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6434 + components: + - pos: 17.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6435 + components: + - pos: 16.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6436 + components: + - pos: 15.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6437 + components: + - pos: 15.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6438 + components: + - pos: 15.5,5.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6439 + components: + - pos: 15.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6440 + components: + - pos: 15.5,7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6441 + components: + - pos: 14.5,7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6443 + components: + - pos: 26.5,-20.5 + parent: 2 + type: Transform + - uid: 6444 + components: + - pos: 26.5,-19.5 + parent: 2 + type: Transform + - uid: 6445 + components: + - pos: 26.5,-18.5 + parent: 2 + type: Transform + - uid: 6446 + components: + - pos: 26.5,-17.5 + parent: 2 + type: Transform + - uid: 6447 + components: + - pos: 27.5,-20.5 + parent: 2 + type: Transform + - uid: 6448 + components: + - pos: 25.5,-17.5 + parent: 2 + type: Transform + - uid: 6449 + components: + - pos: 24.5,-17.5 + parent: 2 + type: Transform + - uid: 6450 + components: + - pos: 23.5,-17.5 + parent: 2 + type: Transform + - uid: 6451 + components: + - pos: 23.5,-16.5 + parent: 2 + type: Transform + - uid: 6452 + components: + - pos: 23.5,-15.5 + parent: 2 + type: Transform + - uid: 6453 + components: + - pos: 23.5,-14.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6454 + components: + - pos: 22.5,-14.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6767 + components: + - pos: 15.5,-42.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6897 + components: + - pos: 16.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7148 + components: + - pos: 14.5,5.5 + parent: 2 + type: Transform + - uid: 7149 + components: + - pos: 13.5,5.5 + parent: 2 + type: Transform + - uid: 7150 + components: + - pos: 12.5,5.5 + parent: 2 + type: Transform + - uid: 7151 + components: + - pos: 11.5,5.5 + parent: 2 + type: Transform + - uid: 7152 + components: + - pos: 11.5,6.5 + parent: 2 + type: Transform + - uid: 7153 + components: + - pos: 11.5,7.5 + parent: 2 + type: Transform + - uid: 7154 + components: + - pos: 11.5,8.5 + parent: 2 + type: Transform + - uid: 7155 + components: + - pos: 11.5,9.5 + parent: 2 + type: Transform + - uid: 7156 + components: + - pos: 11.5,10.5 + parent: 2 + type: Transform + - uid: 7157 + components: + - pos: 11.5,11.5 + parent: 2 + type: Transform + - uid: 7158 + components: + - pos: 11.5,12.5 + parent: 2 + type: Transform + - uid: 7159 + components: + - pos: 11.5,13.5 + parent: 2 + type: Transform + - uid: 7160 + components: + - pos: 12.5,13.5 + parent: 2 + type: Transform + - uid: 7161 + components: + - pos: 12.5,14.5 + parent: 2 + type: Transform + - uid: 7162 + components: + - pos: 12.5,15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7163 + components: + - pos: 11.5,15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7164 + components: + - pos: 11.5,16.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7165 + components: + - pos: 11.5,17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7166 + components: + - pos: 11.5,18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7167 + components: + - pos: 13.5,33.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7168 + components: + - pos: 15.5,33.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7169 + components: + - pos: 15.5,32.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7170 + components: + - pos: 15.5,31.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7171 + components: + - pos: 15.5,30.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7172 + components: + - pos: 15.5,29.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7173 + components: + - pos: 15.5,28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7174 + components: + - pos: 15.5,27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7175 + components: + - pos: 16.5,27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7176 + components: + - pos: 17.5,27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7177 + components: + - pos: 18.5,27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7178 + components: + - pos: 19.5,27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7179 + components: + - pos: 20.5,27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7180 + components: + - pos: 21.5,27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7181 + components: + - pos: 22.5,27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7182 + components: + - pos: 23.5,27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7183 + components: + - pos: 24.5,27.5 + parent: 2 + type: Transform + - uid: 7184 + components: + - pos: 25.5,27.5 + parent: 2 + type: Transform + - uid: 7185 + components: + - pos: 26.5,27.5 + parent: 2 + type: Transform + - uid: 7186 + components: + - pos: 26.5,26.5 + parent: 2 + type: Transform + - uid: 7187 + components: + - pos: 26.5,25.5 + parent: 2 + type: Transform + - uid: 7188 + components: + - pos: 26.5,24.5 + parent: 2 + type: Transform + - uid: 7189 + components: + - pos: 26.5,23.5 + parent: 2 + type: Transform + - uid: 7190 + components: + - pos: 26.5,22.5 + parent: 2 + type: Transform + - uid: 7191 + components: + - pos: 26.5,21.5 + parent: 2 + type: Transform + - uid: 7192 + components: + - pos: 26.5,20.5 + parent: 2 + type: Transform + - uid: 7193 + components: + - pos: 26.5,19.5 + parent: 2 + type: Transform + - uid: 7194 + components: + - pos: 26.5,18.5 + parent: 2 + type: Transform + - uid: 7195 + components: + - pos: 26.5,17.5 + parent: 2 + type: Transform + - uid: 7196 + components: + - pos: 26.5,16.5 + parent: 2 + type: Transform + - uid: 7197 + components: + - pos: 26.5,15.5 + parent: 2 + type: Transform + - uid: 7198 + components: + - pos: 26.5,14.5 + parent: 2 + type: Transform + - uid: 7199 + components: + - pos: 26.5,13.5 + parent: 2 + type: Transform + - uid: 7200 + components: + - pos: 26.5,12.5 + parent: 2 + type: Transform + - uid: 7201 + components: + - pos: 26.5,11.5 + parent: 2 + type: Transform + - uid: 7202 + components: + - pos: 12.5,18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7203 + components: + - pos: 13.5,18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7204 + components: + - pos: 14.5,18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7205 + components: + - pos: 14.5,19.5 + parent: 2 + type: Transform + - uid: 7206 + components: + - pos: 14.5,20.5 + parent: 2 + type: Transform + - uid: 7207 + components: + - pos: 14.5,21.5 + parent: 2 + type: Transform + - uid: 7208 + components: + - pos: 14.5,22.5 + parent: 2 + type: Transform + - uid: 7209 + components: + - pos: 14.5,23.5 + parent: 2 + type: Transform + - uid: 7210 + components: + - pos: 14.5,24.5 + parent: 2 + type: Transform + - uid: 7211 + components: + - pos: 13.5,24.5 + parent: 2 + type: Transform + - uid: 7212 + components: + - pos: 13.5,25.5 + parent: 2 + type: Transform + - uid: 7213 + components: + - pos: 13.5,26.5 + parent: 2 + type: Transform + - uid: 7214 + components: + - pos: 13.5,27.5 + parent: 2 + type: Transform + - uid: 7215 + components: + - pos: 13.5,28.5 + parent: 2 + type: Transform + - uid: 7216 + components: + - pos: 14.5,28.5 + parent: 2 + type: Transform + - uid: 8304 + components: + - pos: 43.5,27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8818 + components: + - pos: 118.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8822 + components: + - pos: 119.5,-17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9060 + components: + - pos: 120.5,-17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9370 + components: + - pos: 19.5,45.5 + parent: 2 + type: Transform + - uid: 9371 + components: + - pos: 20.5,45.5 + parent: 2 + type: Transform + - uid: 9372 + components: + - pos: 21.5,45.5 + parent: 2 + type: Transform + - uid: 9373 + components: + - pos: 22.5,45.5 + parent: 2 + type: Transform + - uid: 9374 + components: + - pos: 23.5,45.5 + parent: 2 + type: Transform + - uid: 9375 + components: + - pos: 24.5,45.5 + parent: 2 + type: Transform + - uid: 9376 + components: + - pos: 25.5,45.5 + parent: 2 + type: Transform + - uid: 9377 + components: + - pos: 26.5,45.5 + parent: 2 + type: Transform + - uid: 9378 + components: + - pos: 27.5,45.5 + parent: 2 + type: Transform + - uid: 9379 + components: + - pos: 27.5,44.5 + parent: 2 + type: Transform + - uid: 9380 + components: + - pos: 27.5,43.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9381 + components: + - pos: 27.5,42.5 + parent: 2 + type: Transform + - uid: 9382 + components: + - pos: 27.5,41.5 + parent: 2 + type: Transform + - uid: 9383 + components: + - pos: 27.5,40.5 + parent: 2 + type: Transform + - uid: 9384 + components: + - pos: 27.5,39.5 + parent: 2 + type: Transform + - uid: 9385 + components: + - pos: 27.5,38.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9386 + components: + - pos: 27.5,37.5 + parent: 2 + type: Transform + - uid: 9387 + components: + - pos: 27.5,36.5 + parent: 2 + type: Transform + - uid: 9388 + components: + - pos: 27.5,35.5 + parent: 2 + type: Transform + - uid: 9389 + components: + - pos: 27.5,34.5 + parent: 2 + type: Transform + - uid: 9390 + components: + - pos: 27.5,33.5 + parent: 2 + type: Transform + - uid: 9391 + components: + - pos: 27.5,32.5 + parent: 2 + type: Transform + - uid: 9392 + components: + - pos: 27.5,31.5 + parent: 2 + type: Transform + - uid: 9393 + components: + - pos: 27.5,30.5 + parent: 2 + type: Transform + - uid: 9394 + components: + - pos: 27.5,29.5 + parent: 2 + type: Transform + - uid: 9395 + components: + - pos: 27.5,28.5 + parent: 2 + type: Transform + - uid: 9396 + components: + - pos: 27.5,27.5 + parent: 2 + type: Transform + - uid: 9439 + components: + - pos: 40.5,41.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9440 + components: + - pos: 39.5,41.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9441 + components: + - pos: 39.5,40.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9442 + components: + - pos: 39.5,39.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9443 + components: + - pos: 39.5,38.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9444 + components: + - pos: 38.5,38.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9445 + components: + - pos: 37.5,38.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9446 + components: + - pos: 36.5,38.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9447 + components: + - pos: 35.5,38.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9448 + components: + - pos: 35.5,37.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9449 + components: + - pos: 34.5,37.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9450 + components: + - pos: 34.5,36.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9451 + components: + - pos: 34.5,35.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9452 + components: + - pos: 34.5,34.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9453 + components: + - pos: 34.5,33.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9454 + components: + - pos: 34.5,32.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9455 + components: + - pos: 33.5,32.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9456 + components: + - pos: 32.5,32.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9457 + components: + - pos: 31.5,32.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9458 + components: + - pos: 30.5,32.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9459 + components: + - pos: 29.5,32.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9460 + components: + - pos: 28.5,32.5 + parent: 2 + type: Transform + - uid: 9461 + components: + - pos: 14.5,36.5 + parent: 2 + type: Transform + - uid: 9462 + components: + - pos: 15.5,36.5 + parent: 2 + type: Transform + - uid: 9463 + components: + - pos: 16.5,36.5 + parent: 2 + type: Transform + - uid: 9464 + components: + - pos: 17.5,36.5 + parent: 2 + type: Transform + - uid: 9465 + components: + - pos: 18.5,36.5 + parent: 2 + type: Transform + - uid: 9466 + components: + - pos: 19.5,36.5 + parent: 2 + type: Transform + - uid: 9467 + components: + - pos: 20.5,36.5 + parent: 2 + type: Transform + - uid: 9468 + components: + - pos: 21.5,36.5 + parent: 2 + type: Transform + - uid: 9469 + components: + - pos: 22.5,36.5 + parent: 2 + type: Transform + - uid: 9470 + components: + - pos: 23.5,36.5 + parent: 2 + type: Transform + - uid: 9471 + components: + - pos: 24.5,36.5 + parent: 2 + type: Transform + - uid: 9472 + components: + - pos: 25.5,36.5 + parent: 2 + type: Transform + - uid: 9473 + components: + - pos: 26.5,36.5 + parent: 2 + type: Transform + - uid: 9479 + components: + - pos: 18.5,2.5 + parent: 2 + type: Transform + - uid: 9480 + components: + - pos: 18.5,1.5 + parent: 2 + type: Transform + - uid: 9481 + components: + - pos: 18.5,0.5 + parent: 2 + type: Transform + - uid: 9482 + components: + - pos: 18.5,-0.5 + parent: 2 + type: Transform + - uid: 9483 + components: + - pos: 19.5,-0.5 + parent: 2 + type: Transform + - uid: 9484 + components: + - pos: 20.5,-0.5 + parent: 2 + type: Transform + - uid: 9485 + components: + - pos: 21.5,-0.5 + parent: 2 + type: Transform + - uid: 9486 + components: + - pos: 22.5,-0.5 + parent: 2 + type: Transform + - uid: 9487 + components: + - pos: 22.5,-1.5 + parent: 2 + type: Transform + - uid: 9488 + components: + - pos: 22.5,-2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9489 + components: + - pos: 22.5,-3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9490 + components: + - pos: 22.5,-4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9491 + components: + - pos: 22.5,-5.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9492 + components: + - pos: 22.5,-6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9493 + components: + - pos: 22.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9494 + components: + - pos: 21.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9495 + components: + - pos: 20.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9496 + components: + - pos: 19.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9497 + components: + - pos: 18.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9498 + components: + - pos: 17.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9499 + components: + - pos: 17.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9500 + components: + - pos: 17.5,-10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9501 + components: + - pos: 17.5,-9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9502 + components: + - pos: 17.5,-8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9503 + components: + - pos: 75.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9504 + components: + - pos: 75.5,9.5 + parent: 2 + type: Transform + - uid: 9505 + components: + - pos: 75.5,8.5 + parent: 2 + type: Transform + - uid: 9506 + components: + - pos: 74.5,8.5 + parent: 2 + type: Transform + - uid: 9507 + components: + - pos: 73.5,8.5 + parent: 2 + type: Transform + - uid: 9508 + components: + - pos: 72.5,8.5 + parent: 2 + type: Transform + - uid: 9509 + components: + - pos: 71.5,8.5 + parent: 2 + type: Transform + - uid: 9510 + components: + - pos: 71.5,7.5 + parent: 2 + type: Transform + - uid: 9511 + components: + - pos: 71.5,6.5 + parent: 2 + type: Transform + - uid: 9512 + components: + - pos: 71.5,5.5 + parent: 2 + type: Transform + - uid: 9513 + components: + - pos: 71.5,4.5 + parent: 2 + type: Transform + - uid: 9514 + components: + - pos: 71.5,3.5 + parent: 2 + type: Transform + - uid: 9515 + components: + - pos: 71.5,2.5 + parent: 2 + type: Transform + - uid: 9516 + components: + - pos: 71.5,1.5 + parent: 2 + type: Transform + - uid: 9517 + components: + - pos: 72.5,1.5 + parent: 2 + type: Transform + - uid: 9518 + components: + - pos: 72.5,0.5 + parent: 2 + type: Transform + - uid: 9519 + components: + - pos: 72.5,-0.5 + parent: 2 + type: Transform + - uid: 9520 + components: + - pos: 72.5,-1.5 + parent: 2 + type: Transform + - uid: 9521 + components: + - pos: 72.5,-2.5 + parent: 2 + type: Transform + - uid: 9522 + components: + - pos: 72.5,-3.5 + parent: 2 + type: Transform + - uid: 9523 + components: + - pos: 71.5,-3.5 + parent: 2 + type: Transform + - uid: 9524 + components: + - pos: 71.5,-4.5 + parent: 2 + type: Transform + - uid: 9525 + components: + - pos: 71.5,-5.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9526 + components: + - pos: 71.5,-6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9527 + components: + - pos: 71.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9528 + components: + - pos: 71.5,-8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9529 + components: + - pos: 71.5,-9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9530 + components: + - pos: 71.5,-10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9531 + components: + - pos: 71.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9532 + components: + - pos: 71.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9583 + components: + - pos: 14.5,35.5 + parent: 2 + type: Transform + - uid: 9821 + components: + - pos: 35.5,-14.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9822 + components: + - pos: 35.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9823 + components: + - pos: 35.5,-16.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9824 + components: + - pos: 34.5,-16.5 + parent: 2 + type: Transform + - uid: 9825 + components: + - pos: 33.5,-16.5 + parent: 2 + type: Transform + - uid: 9826 + components: + - pos: 32.5,-16.5 + parent: 2 + type: Transform + - uid: 9827 + components: + - pos: 32.5,-17.5 + parent: 2 + type: Transform + - uid: 9828 + components: + - pos: 32.5,-18.5 + parent: 2 + type: Transform + - uid: 10228 + components: + - pos: 38.5,13.5 + parent: 2 + type: Transform + - uid: 10229 + components: + - pos: 39.5,13.5 + parent: 2 + type: Transform + - uid: 10230 + components: + - pos: 40.5,13.5 + parent: 2 + type: Transform + - uid: 10231 + components: + - pos: 37.5,13.5 + parent: 2 + type: Transform + - uid: 10232 + components: + - pos: 36.5,13.5 + parent: 2 + type: Transform + - uid: 10233 + components: + - pos: 35.5,13.5 + parent: 2 + type: Transform + - uid: 10234 + components: + - pos: 34.5,13.5 + parent: 2 + type: Transform + - uid: 10235 + components: + - pos: 33.5,13.5 + parent: 2 + type: Transform + - uid: 10236 + components: + - pos: 32.5,13.5 + parent: 2 + type: Transform + - uid: 10237 + components: + - pos: 31.5,13.5 + parent: 2 + type: Transform + - uid: 10238 + components: + - pos: 30.5,13.5 + parent: 2 + type: Transform + - uid: 10239 + components: + - pos: 29.5,13.5 + parent: 2 + type: Transform + - uid: 10240 + components: + - pos: 28.5,13.5 + parent: 2 + type: Transform + - uid: 10241 + components: + - pos: 27.5,13.5 + parent: 2 + type: Transform + - uid: 12596 + components: + - pos: 111.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12597 + components: + - pos: 111.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12598 + components: + - pos: 111.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12599 + components: + - pos: 111.5,-10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12600 + components: + - pos: 113.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12601 + components: + - pos: 113.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12602 + components: + - pos: 113.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12603 + components: + - pos: 113.5,-10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12604 + components: + - pos: 115.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12605 + components: + - pos: 115.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12606 + components: + - pos: 115.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12608 + components: + - pos: 115.5,-10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12609 + components: + - pos: 120.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12610 + components: + - pos: 112.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12611 + components: + - pos: 114.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12612 + components: + - pos: 119.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12613 + components: + - pos: 118.5,-17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12614 + components: + - pos: 117.5,-17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12615 + components: + - pos: 120.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12616 + components: + - pos: 119.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12617 + components: + - pos: 118.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12618 + components: + - pos: 117.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12619 + components: + - pos: 115.5,-24.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12620 + components: + - pos: 115.5,-23.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12621 + components: + - pos: 115.5,-22.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12622 + components: + - pos: 115.5,-21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12623 + components: + - pos: 113.5,-24.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12624 + components: + - pos: 113.5,-23.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12625 + components: + - pos: 113.5,-22.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12626 + components: + - pos: 113.5,-21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12627 + components: + - pos: 111.5,-24.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12628 + components: + - pos: 111.5,-23.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12629 + components: + - pos: 111.5,-22.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12630 + components: + - pos: 111.5,-21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12631 + components: + - pos: 114.5,-21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12632 + components: + - pos: 115.5,-20.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12633 + components: + - pos: 116.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12634 + components: + - pos: 115.5,-19.5 + parent: 2 + type: Transform + - uid: 12635 + components: + - pos: 115.5,-14.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12636 + components: + - pos: 115.5,-15.5 + parent: 2 + type: Transform + - uid: 12637 + components: + - pos: 115.5,-16.5 + parent: 2 + type: Transform + - uid: 12638 + components: + - pos: 115.5,-17.5 + parent: 2 + type: Transform + - uid: 12639 + components: + - pos: 115.5,-18.5 + parent: 2 + type: Transform + - uid: 12640 + components: + - pos: 114.5,-19.5 + parent: 2 + type: Transform + - uid: 12641 + components: + - pos: 113.5,-19.5 + parent: 2 + type: Transform + - uid: 12642 + components: + - pos: 112.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12643 + components: + - pos: 112.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12644 + components: + - pos: 112.5,-17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12645 + components: + - pos: 112.5,-16.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12646 + components: + - pos: 112.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12807 + components: + - pos: 25.5,-27.5 + parent: 2 + type: Transform + - uid: 12808 + components: + - pos: 25.5,-26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12809 + components: + - pos: 25.5,-25.5 + parent: 2 + type: Transform + - uid: 12810 + components: + - pos: 25.5,-24.5 + parent: 2 + type: Transform + - uid: 12811 + components: + - pos: 25.5,-23.5 + parent: 2 + type: Transform + - uid: 12812 + components: + - pos: 25.5,-22.5 + parent: 2 + type: Transform + - uid: 12813 + components: + - pos: 13.5,-25.5 + parent: 2 + type: Transform + - uid: 12814 + components: + - pos: 13.5,-24.5 + parent: 2 + type: Transform + - uid: 12815 + components: + - pos: 13.5,-23.5 + parent: 2 + type: Transform + - uid: 12816 + components: + - pos: 13.5,-22.5 + parent: 2 + type: Transform + - uid: 13046 + components: + - pos: 32.5,-38.5 + parent: 2 + type: Transform + - uid: 13047 + components: + - pos: 32.5,-39.5 + parent: 2 + type: Transform + - uid: 13048 + components: + - pos: 33.5,-39.5 + parent: 2 + type: Transform + - uid: 13049 + components: + - pos: 34.5,-39.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13050 + components: + - pos: 35.5,-39.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13051 + components: + - pos: 35.5,-40.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13052 + components: + - pos: 35.5,-41.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13053 + components: + - pos: 35.5,-42.5 + parent: 2 + type: Transform + - uid: 13054 + components: + - pos: 35.5,-43.5 + parent: 2 + type: Transform + - uid: 13055 + components: + - pos: 35.5,-44.5 + parent: 2 + type: Transform + - uid: 13056 + components: + - pos: 35.5,-45.5 + parent: 2 + type: Transform + - uid: 13057 + components: + - pos: 35.5,-46.5 + parent: 2 + type: Transform + - uid: 13058 + components: + - pos: 36.5,-46.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13059 + components: + - pos: 37.5,-46.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13060 + components: + - pos: 38.5,-46.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13061 + components: + - pos: 39.5,-46.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13062 + components: + - pos: 40.5,-46.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound +- proto: CableHVStack + entities: + - uid: 5629 + components: + - pos: 18.055033,-23.484873 + parent: 2 + type: Transform + - uid: 5638 + components: + - rot: -0.0038357104640454054 rad + pos: 70.31901,45.73474 + parent: 2 + type: Transform + - uid: 5651 + components: + - pos: 70.69434,45.41789 + parent: 2 + type: Transform + - uid: 6308 + components: + - pos: 90.56876,-9.725386 + parent: 2 + type: Transform +- proto: CableMV + entities: + - uid: 57 + components: + - pos: 9.5,-26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 58 + components: + - pos: 8.5,-26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 769 + components: + - pos: 4.5,-30.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1028 + components: + - pos: 4.5,-34.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1029 + components: + - pos: 5.5,-35.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1030 + components: + - pos: 4.5,-33.5 + parent: 2 + type: Transform + - uid: 1031 + components: + - pos: 4.5,-32.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1032 + components: + - pos: 4.5,-31.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1555 + components: + - pos: 41.5,-0.5 + parent: 2 + type: Transform + - uid: 2688 + components: + - pos: 22.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2954 + components: + - pos: 22.5,9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3013 + components: + - pos: 22.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3014 + components: + - pos: 22.5,5.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3403 + components: + - pos: 22.5,8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3486 + components: + - pos: 51.5,21.5 + parent: 2 + type: Transform + - uid: 3487 + components: + - pos: 50.5,21.5 + parent: 2 + type: Transform + - uid: 3682 + components: + - pos: 48.5,21.5 + parent: 2 + type: Transform + - uid: 3683 + components: + - pos: 49.5,21.5 + parent: 2 + type: Transform + - uid: 4182 + components: + - pos: 22.5,7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4308 + components: + - pos: 17.5,-37.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4312 + components: + - pos: 17.5,-36.5 + parent: 2 + type: Transform + - uid: 4605 + components: + - pos: 10.5,-25.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4606 + components: + - pos: 10.5,-26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4607 + components: + - pos: 11.5,-26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4608 + components: + - pos: 12.5,-26.5 + parent: 2 + type: Transform + - uid: 4609 + components: + - pos: 13.5,-26.5 + parent: 2 + type: Transform + - uid: 4610 + components: + - pos: 14.5,-26.5 + parent: 2 + type: Transform + - uid: 4611 + components: + - pos: 15.5,-26.5 + parent: 2 + type: Transform + - uid: 4612 + components: + - pos: 16.5,-26.5 + parent: 2 + type: Transform + - uid: 4614 + components: + - pos: 17.5,-26.5 + parent: 2 + type: Transform + - uid: 4615 + components: + - pos: 18.5,-26.5 + parent: 2 + type: Transform + - uid: 4616 + components: + - pos: 19.5,-26.5 + parent: 2 + type: Transform + - uid: 4618 + components: + - pos: 20.5,-26.5 + parent: 2 + type: Transform + - uid: 4619 + components: + - pos: 21.5,-26.5 + parent: 2 + type: Transform + - uid: 4620 + components: + - pos: 22.5,-26.5 + parent: 2 + type: Transform + - uid: 4621 + components: + - pos: 22.5,-25.5 + parent: 2 + type: Transform + - uid: 4622 + components: + - pos: 22.5,-24.5 + parent: 2 + type: Transform + - uid: 4623 + components: + - pos: 22.5,-23.5 + parent: 2 + type: Transform + - uid: 4624 + components: + - pos: 22.5,-22.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4625 + components: + - pos: 21.5,-27.5 + parent: 2 + type: Transform + - uid: 4626 + components: + - pos: 21.5,-28.5 + parent: 2 + type: Transform + - uid: 4627 + components: + - pos: 21.5,-29.5 + parent: 2 + type: Transform + - uid: 4628 + components: + - pos: 21.5,-30.5 + parent: 2 + type: Transform + - uid: 4629 + components: + - pos: 21.5,-31.5 + parent: 2 + type: Transform + - uid: 4630 + components: + - pos: 21.5,-32.5 + parent: 2 + type: Transform + - uid: 4631 + components: + - pos: 21.5,-33.5 + parent: 2 + type: Transform + - uid: 4632 + components: + - pos: 21.5,-34.5 + parent: 2 + type: Transform + - uid: 4633 + components: + - pos: 21.5,-35.5 + parent: 2 + type: Transform + - uid: 4634 + components: + - pos: 21.5,-36.5 + parent: 2 + type: Transform + - uid: 4635 + components: + - pos: 21.5,-37.5 + parent: 2 + type: Transform + - uid: 4636 + components: + - pos: 21.5,-38.5 + parent: 2 + type: Transform + - uid: 4637 + components: + - pos: 17.5,-42.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4638 + components: + - pos: 16.5,-42.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4639 + components: + - pos: 23.5,-39.5 + parent: 2 + type: Transform + - uid: 4640 + components: + - pos: 24.5,-39.5 + parent: 2 + type: Transform + - uid: 4641 + components: + - pos: 25.5,-39.5 + parent: 2 + type: Transform + - uid: 4642 + components: + - pos: 26.5,-39.5 + parent: 2 + type: Transform + - uid: 4643 + components: + - pos: 26.5,-38.5 + parent: 2 + type: Transform + - uid: 4644 + components: + - pos: 26.5,-37.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4645 + components: + - pos: 26.5,-36.5 + parent: 2 + type: Transform + - uid: 4646 + components: + - pos: 26.5,-35.5 + parent: 2 + type: Transform + - uid: 4647 + components: + - pos: 20.5,-34.5 + parent: 2 + type: Transform + - uid: 4648 + components: + - pos: 19.5,-34.5 + parent: 2 + type: Transform + - uid: 4649 + components: + - pos: 18.5,-34.5 + parent: 2 + type: Transform + - uid: 4650 + components: + - pos: 17.5,-34.5 + parent: 2 + type: Transform + - uid: 4651 + components: + - pos: 16.5,-34.5 + parent: 2 + type: Transform + - uid: 4652 + components: + - pos: 15.5,-34.5 + parent: 2 + type: Transform + - uid: 4653 + components: + - pos: 14.5,-34.5 + parent: 2 + type: Transform + - uid: 4654 + components: + - pos: 13.5,-34.5 + parent: 2 + type: Transform + - uid: 4655 + components: + - pos: 12.5,-34.5 + parent: 2 + type: Transform + - uid: 4656 + components: + - pos: 11.5,-34.5 + parent: 2 + type: Transform + - uid: 4657 + components: + - pos: 11.5,-35.5 + parent: 2 + type: Transform + - uid: 4658 + components: + - pos: 10.5,-35.5 + parent: 2 + type: Transform + - uid: 4659 + components: + - pos: 9.5,-35.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4660 + components: + - pos: 26.5,-34.5 + parent: 2 + type: Transform + - uid: 4661 + components: + - pos: 26.5,-33.5 + parent: 2 + type: Transform + - uid: 4664 + components: + - pos: 26.5,-32.5 + parent: 2 + type: Transform + - uid: 4665 + components: + - pos: 25.5,-32.5 + parent: 2 + type: Transform + - uid: 4666 + components: + - pos: 24.5,-32.5 + parent: 2 + type: Transform + - uid: 4667 + components: + - pos: 23.5,-32.5 + parent: 2 + type: Transform + - uid: 4668 + components: + - pos: 22.5,-32.5 + parent: 2 + type: Transform + - uid: 4670 + components: + - pos: 22.5,-29.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4671 + components: + - pos: 27.5,-36.5 + parent: 2 + type: Transform + - uid: 4673 + components: + - pos: 28.5,-36.5 + parent: 2 + type: Transform + - uid: 4674 + components: + - pos: 29.5,-36.5 + parent: 2 + type: Transform + - uid: 4675 + components: + - pos: 29.5,-37.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4875 + components: + - pos: 4.5,-36.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4876 + components: + - pos: 4.5,-35.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4878 + components: + - pos: 3.5,-30.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4879 + components: + - pos: 3.5,-29.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4880 + components: + - pos: 3.5,-28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4881 + components: + - pos: 3.5,-27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5185 + components: + - pos: 62.5,-7.5 + parent: 2 + type: Transform + - uid: 5187 + components: + - pos: 62.5,-6.5 + parent: 2 + type: Transform + - uid: 5576 + components: + - pos: 17.5,-35.5 + parent: 2 + type: Transform + - uid: 6455 + components: + - pos: 22.5,-14.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6456 + components: + - pos: 21.5,-14.5 + parent: 2 + type: Transform + - uid: 6457 + components: + - pos: 20.5,-14.5 + parent: 2 + type: Transform + - uid: 6458 + components: + - pos: 19.5,-14.5 + parent: 2 + type: Transform + - uid: 6459 + components: + - pos: 19.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6768 + components: + - pos: 15.5,-42.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6769 + components: + - pos: 14.5,-42.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6770 + components: + - pos: 13.5,-42.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6771 + components: + - pos: 13.5,-43.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6772 + components: + - pos: 13.5,-44.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6773 + components: + - pos: 13.5,-45.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6780 + components: + - pos: 13.5,-46.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6955 + components: + - pos: 14.5,7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6956 + components: + - pos: 14.5,8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6957 + components: + - pos: 15.5,7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6958 + components: + - pos: 15.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6959 + components: + - pos: 15.5,5.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6961 + components: + - pos: 14.5,5.5 + parent: 2 + type: Transform + - uid: 6962 + components: + - pos: 13.5,5.5 + parent: 2 + type: Transform + - uid: 6963 + components: + - pos: 12.5,5.5 + parent: 2 + type: Transform + - uid: 6964 + components: + - pos: 11.5,5.5 + parent: 2 + type: Transform + - uid: 6965 + components: + - pos: 10.5,5.5 + parent: 2 + type: Transform + - uid: 6966 + components: + - pos: 9.5,5.5 + parent: 2 + type: Transform + - uid: 6967 + components: + - pos: 9.5,4.5 + parent: 2 + type: Transform + - uid: 6968 + components: + - pos: 9.5,3.5 + parent: 2 + type: Transform + - uid: 6969 + components: + - pos: 10.5,3.5 + parent: 2 + type: Transform + - uid: 6970 + components: + - pos: 11.5,3.5 + parent: 2 + type: Transform + - uid: 6971 + components: + - pos: 11.5,2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6972 + components: + - pos: 8.5,3.5 + parent: 2 + type: Transform + - uid: 6973 + components: + - pos: 7.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6974 + components: + - pos: 9.5,6.5 + parent: 2 + type: Transform + - uid: 6975 + components: + - pos: 9.5,7.5 + parent: 2 + type: Transform + - uid: 6976 + components: + - pos: 9.5,8.5 + parent: 2 + type: Transform + - uid: 6977 + components: + - pos: 9.5,9.5 + parent: 2 + type: Transform + - uid: 6978 + components: + - pos: 9.5,10.5 + parent: 2 + type: Transform + - uid: 6979 + components: + - pos: 10.5,10.5 + parent: 2 + type: Transform + - uid: 6980 + components: + - pos: 10.5,11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6981 + components: + - pos: 11.5,10.5 + parent: 2 + type: Transform + - uid: 6982 + components: + - pos: 12.5,10.5 + parent: 2 + type: Transform + - uid: 6983 + components: + - pos: 13.5,10.5 + parent: 2 + type: Transform + - uid: 6984 + components: + - pos: 14.5,10.5 + parent: 2 + type: Transform + - uid: 6985 + components: + - pos: 15.5,10.5 + parent: 2 + type: Transform + - uid: 6986 + components: + - pos: 16.5,10.5 + parent: 2 + type: Transform + - uid: 6987 + components: + - pos: 17.5,10.5 + parent: 2 + type: Transform + - uid: 6988 + components: + - pos: 18.5,10.5 + parent: 2 + type: Transform + - uid: 6989 + components: + - pos: 19.5,10.5 + parent: 2 + type: Transform + - uid: 6990 + components: + - pos: 19.5,9.5 + parent: 2 + type: Transform + - uid: 6991 + components: + - pos: 19.5,8.5 + parent: 2 + type: Transform + - uid: 6992 + components: + - pos: 19.5,7.5 + parent: 2 + type: Transform + - uid: 6993 + components: + - pos: 19.5,6.5 + parent: 2 + type: Transform + - uid: 6994 + components: + - pos: 19.5,5.5 + parent: 2 + type: Transform + - uid: 6995 + components: + - pos: 20.5,5.5 + parent: 2 + type: Transform + - uid: 6996 + components: + - pos: 21.5,5.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6997 + components: + - pos: 15.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6998 + components: + - pos: 15.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6999 + components: + - pos: 16.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7000 + components: + - pos: 17.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7001 + components: + - pos: 18.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7002 + components: + - pos: 19.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7003 + components: + - pos: 20.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7004 + components: + - pos: 21.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7005 + components: + - pos: 22.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7016 + components: + - pos: 23.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7017 + components: + - pos: 22.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7018 + components: + - pos: 22.5,11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7019 + components: + - pos: 24.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7020 + components: + - pos: 25.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7021 + components: + - pos: 26.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7022 + components: + - pos: 27.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7023 + components: + - pos: 28.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7024 + components: + - pos: 28.5,9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7025 + components: + - pos: 28.5,7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7026 + components: + - pos: 27.5,7.5 + parent: 2 + type: Transform + - uid: 7027 + components: + - pos: 26.5,7.5 + parent: 2 + type: Transform + - uid: 7028 + components: + - pos: 26.5,8.5 + parent: 2 + type: Transform + - uid: 7029 + components: + - pos: 26.5,9.5 + parent: 2 + type: Transform + - uid: 7030 + components: + - pos: 33.5,7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7031 + components: + - pos: 32.5,7.5 + parent: 2 + type: Transform + - uid: 7032 + components: + - pos: 31.5,7.5 + parent: 2 + type: Transform + - uid: 7033 + components: + - pos: 30.5,7.5 + parent: 2 + type: Transform + - uid: 7036 + components: + - pos: 29.5,7.5 + parent: 2 + type: Transform + - uid: 7037 + components: + - pos: 29.5,8.5 + parent: 2 + type: Transform + - uid: 7038 + components: + - pos: 29.5,9.5 + parent: 2 + type: Transform + - uid: 7039 + components: + - pos: 29.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7217 + components: + - pos: 12.5,34.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7218 + components: + - pos: 12.5,33.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7219 + components: + - pos: 13.5,33.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7220 + components: + - pos: 14.5,33.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7221 + components: + - pos: 15.5,33.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7222 + components: + - pos: 15.5,34.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7223 + components: + - pos: 14.5,35.5 + parent: 2 + type: Transform + - uid: 7224 + components: + - pos: 13.5,35.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7225 + components: + - pos: 15.5,32.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7226 + components: + - pos: 15.5,31.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7227 + components: + - pos: 15.5,30.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7228 + components: + - pos: 15.5,29.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7229 + components: + - pos: 15.5,28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7230 + components: + - pos: 14.5,28.5 + parent: 2 + type: Transform + - uid: 7231 + components: + - pos: 13.5,28.5 + parent: 2 + type: Transform + - uid: 7232 + components: + - pos: 13.5,27.5 + parent: 2 + type: Transform + - uid: 7233 + components: + - pos: 13.5,26.5 + parent: 2 + type: Transform + - uid: 7234 + components: + - pos: 13.5,25.5 + parent: 2 + type: Transform + - uid: 7235 + components: + - pos: 13.5,24.5 + parent: 2 + type: Transform + - uid: 7236 + components: + - pos: 13.5,23.5 + parent: 2 + type: Transform + - uid: 7237 + components: + - pos: 14.5,23.5 + parent: 2 + type: Transform + - uid: 7238 + components: + - pos: 15.5,23.5 + parent: 2 + type: Transform + - uid: 7239 + components: + - pos: 16.5,23.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7240 + components: + - pos: 14.5,25.5 + parent: 2 + type: Transform + - uid: 7241 + components: + - pos: 15.5,25.5 + parent: 2 + type: Transform + - uid: 7242 + components: + - pos: 16.5,25.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7243 + components: + - pos: 10.5,18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7244 + components: + - pos: 9.5,18.5 + parent: 2 + type: Transform + - uid: 7245 + components: + - pos: 8.5,18.5 + parent: 2 + type: Transform + - uid: 7246 + components: + - pos: 8.5,19.5 + parent: 2 + type: Transform + - uid: 7247 + components: + - pos: 8.5,20.5 + parent: 2 + type: Transform + - uid: 7248 + components: + - pos: 8.5,21.5 + parent: 2 + type: Transform + - uid: 7249 + components: + - pos: 8.5,22.5 + parent: 2 + type: Transform + - uid: 7250 + components: + - pos: 9.5,22.5 + parent: 2 + type: Transform + - uid: 7251 + components: + - pos: 10.5,22.5 + parent: 2 + type: Transform + - uid: 7252 + components: + - pos: 11.5,22.5 + parent: 2 + type: Transform + - uid: 7253 + components: + - pos: 12.5,22.5 + parent: 2 + type: Transform + - uid: 7254 + components: + - pos: 13.5,22.5 + parent: 2 + type: Transform + - uid: 7255 + components: + - pos: 13.5,16.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7256 + components: + - pos: 12.5,16.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7257 + components: + - pos: 11.5,16.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7258 + components: + - pos: 11.5,17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7259 + components: + - pos: 11.5,18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7260 + components: + - pos: 13.5,18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7261 + components: + - pos: 12.5,18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7262 + components: + - pos: 14.5,18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7263 + components: + - pos: 14.5,19.5 + parent: 2 + type: Transform + - uid: 7264 + components: + - pos: 14.5,20.5 + parent: 2 + type: Transform + - uid: 7265 + components: + - pos: 14.5,21.5 + parent: 2 + type: Transform + - uid: 7266 + components: + - pos: 13.5,21.5 + parent: 2 + type: Transform + - uid: 7475 + components: + - pos: 6.5,-9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7476 + components: + - pos: 6.5,-8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7477 + components: + - pos: 6.5,-10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7478 + components: + - pos: 5.5,-9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7479 + components: + - pos: 4.5,-9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7480 + components: + - pos: 3.5,-9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7481 + components: + - pos: 2.5,-9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7482 + components: + - pos: 1.5,-9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7483 + components: + - pos: 0.5,-9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7484 + components: + - pos: 0.5,-8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7485 + components: + - pos: 1.5,-8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7486 + components: + - pos: 1.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7487 + components: + - pos: 1.5,-6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7488 + components: + - pos: 1.5,-5.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7489 + components: + - pos: 1.5,-4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7490 + components: + - pos: 1.5,-3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7491 + components: + - pos: 2.5,-4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7492 + components: + - pos: 0.5,-3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7493 + components: + - pos: 1.5,-2.5 + parent: 2 + type: Transform + - uid: 7494 + components: + - pos: 1.5,-1.5 + parent: 2 + type: Transform + - uid: 7495 + components: + - pos: 1.5,-0.5 + parent: 2 + type: Transform + - uid: 7496 + components: + - pos: 0.5,-0.5 + parent: 2 + type: Transform + - uid: 7497 + components: + - pos: -0.5,-0.5 + parent: 2 + type: Transform + - uid: 7498 + components: + - pos: -1.5,-0.5 + parent: 2 + type: Transform + - uid: 7499 + components: + - pos: -2.5,-0.5 + parent: 2 + type: Transform + - uid: 7500 + components: + - pos: -3.5,-0.5 + parent: 2 + type: Transform + - uid: 7501 + components: + - pos: -4.5,-0.5 + parent: 2 + type: Transform + - uid: 7502 + components: + - pos: -5.5,-0.5 + parent: 2 + type: Transform + - uid: 7503 + components: + - pos: -5.5,-1.5 + parent: 2 + type: Transform + - uid: 7504 + components: + - pos: -5.5,-2.5 + parent: 2 + type: Transform + - uid: 7505 + components: + - pos: -4.5,-2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7506 + components: + - pos: 0.5,-10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7507 + components: + - pos: 0.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7508 + components: + - pos: -0.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7509 + components: + - pos: -0.5,-10.5 + parent: 2 + type: Transform + - uid: 7510 + components: + - pos: -1.5,-10.5 + parent: 2 + type: Transform + - uid: 7511 + components: + - pos: -2.5,-10.5 + parent: 2 + type: Transform + - uid: 7512 + components: + - pos: -2.5,-9.5 + parent: 2 + type: Transform + - uid: 7513 + components: + - pos: -2.5,-8.5 + parent: 2 + type: Transform + - uid: 7514 + components: + - pos: -2.5,-7.5 + parent: 2 + type: Transform + - uid: 7515 + components: + - pos: -3.5,-7.5 + parent: 2 + type: Transform + - uid: 7516 + components: + - pos: -4.5,-7.5 + parent: 2 + type: Transform + - uid: 7517 + components: + - pos: -5.5,-7.5 + parent: 2 + type: Transform + - uid: 7518 + components: + - pos: -5.5,-7.5 + parent: 2 + type: Transform + - uid: 7519 + components: + - pos: -5.5,-6.5 + parent: 2 + type: Transform + - uid: 7520 + components: + - pos: -5.5,-5.5 + parent: 2 + type: Transform + - uid: 7521 + components: + - pos: -5.5,-4.5 + parent: 2 + type: Transform + - uid: 7522 + components: + - pos: -5.5,-3.5 + parent: 2 + type: Transform + - uid: 7523 + components: + - pos: -5.5,-9.5 + parent: 2 + type: Transform + - uid: 7524 + components: + - pos: -5.5,-8.5 + parent: 2 + type: Transform + - uid: 7525 + components: + - pos: -5.5,-10.5 + parent: 2 + type: Transform + - uid: 7531 + components: + - pos: -5.5,-11.5 + parent: 2 + type: Transform + - uid: 7532 + components: + - pos: -5.5,-12.5 + parent: 2 + type: Transform + - uid: 7534 + components: + - pos: -5.5,-13.5 + parent: 2 + type: Transform + - uid: 7535 + components: + - pos: -6.5,-13.5 + parent: 2 + type: Transform + - uid: 7536 + components: + - pos: -7.5,-13.5 + parent: 2 + type: Transform + - uid: 7537 + components: + - pos: -8.5,-13.5 + parent: 2 + type: Transform + - uid: 7538 + components: + - pos: -9.5,-13.5 + parent: 2 + type: Transform + - uid: 7539 + components: + - pos: -10.5,-13.5 + parent: 2 + type: Transform + - uid: 7540 + components: + - pos: -11.5,-13.5 + parent: 2 + type: Transform + - uid: 7541 + components: + - pos: -12.5,-13.5 + parent: 2 + type: Transform + - uid: 7542 + components: + - pos: -13.5,-13.5 + parent: 2 + type: Transform + - uid: 7543 + components: + - pos: -14.5,-13.5 + parent: 2 + type: Transform + - uid: 7544 + components: + - pos: -15.5,-13.5 + parent: 2 + type: Transform + - uid: 7548 + components: + - pos: -15.5,-14.5 + parent: 2 + type: Transform + - uid: 7549 + components: + - pos: -15.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8287 + components: + - pos: 27.5,33.5 + parent: 2 + type: Transform + - uid: 8325 + components: + - pos: 52.5,-9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8341 + components: + - pos: 52.5,-10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8348 + components: + - pos: 43.5,26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8349 + components: + - pos: 43.5,27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8350 + components: + - pos: 43.5,25.5 + parent: 2 + type: Transform + - uid: 8351 + components: + - pos: 43.5,24.5 + parent: 2 + type: Transform + - uid: 8352 + components: + - pos: 43.5,23.5 + parent: 2 + type: Transform + - uid: 8353 + components: + - pos: 42.5,23.5 + parent: 2 + type: Transform + - uid: 8354 + components: + - pos: 41.5,23.5 + parent: 2 + type: Transform + - uid: 8355 + components: + - pos: 40.5,23.5 + parent: 2 + type: Transform + - uid: 8356 + components: + - pos: 39.5,23.5 + parent: 2 + type: Transform + - uid: 8357 + components: + - pos: 41.5,22.5 + parent: 2 + type: Transform + - uid: 8358 + components: + - pos: 41.5,21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8359 + components: + - pos: 39.5,22.5 + parent: 2 + type: Transform + - uid: 8360 + components: + - pos: 38.5,22.5 + parent: 2 + type: Transform + - uid: 8362 + components: + - pos: 37.5,22.5 + parent: 2 + type: Transform + - uid: 8363 + components: + - pos: 36.5,22.5 + parent: 2 + type: Transform + - uid: 8364 + components: + - pos: 35.5,22.5 + parent: 2 + type: Transform + - uid: 8365 + components: + - pos: 34.5,22.5 + parent: 2 + type: Transform + - uid: 8366 + components: + - pos: 33.5,22.5 + parent: 2 + type: Transform + - uid: 8367 + components: + - pos: 33.5,23.5 + parent: 2 + type: Transform + - uid: 8368 + components: + - pos: 33.5,24.5 + parent: 2 + type: Transform + - uid: 8369 + components: + - pos: 33.5,25.5 + parent: 2 + type: Transform + - uid: 8370 + components: + - pos: 33.5,26.5 + parent: 2 + type: Transform + - uid: 8371 + components: + - pos: 33.5,27.5 + parent: 2 + type: Transform + - uid: 8372 + components: + - pos: 33.5,28.5 + parent: 2 + type: Transform + - uid: 8373 + components: + - pos: 33.5,29.5 + parent: 2 + type: Transform + - uid: 8374 + components: + - pos: 33.5,30.5 + parent: 2 + type: Transform + - uid: 8375 + components: + - pos: 34.5,30.5 + parent: 2 + type: Transform + - uid: 8376 + components: + - pos: 35.5,30.5 + parent: 2 + type: Transform + - uid: 8383 + components: + - pos: 36.5,30.5 + parent: 2 + type: Transform + - uid: 8384 + components: + - pos: 36.5,29.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8385 + components: + - pos: 34.5,25.5 + parent: 2 + type: Transform + - uid: 8386 + components: + - pos: 35.5,25.5 + parent: 2 + type: Transform + - uid: 8387 + components: + - pos: 36.5,25.5 + parent: 2 + type: Transform + - uid: 8388 + components: + - pos: 37.5,25.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8456 + components: + - pos: 33.5,21.5 + parent: 2 + type: Transform + - uid: 8457 + components: + - pos: 32.5,21.5 + parent: 2 + type: Transform + - uid: 8458 + components: + - pos: 31.5,21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8459 + components: + - pos: 30.5,21.5 + parent: 2 + type: Transform + - uid: 8460 + components: + - pos: 29.5,21.5 + parent: 2 + type: Transform + - uid: 8461 + components: + - pos: 28.5,21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8462 + components: + - pos: 28.5,20.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8463 + components: + - pos: 33.5,20.5 + parent: 2 + type: Transform + - uid: 8464 + components: + - pos: 33.5,19.5 + parent: 2 + type: Transform + - uid: 8465 + components: + - pos: 33.5,18.5 + parent: 2 + type: Transform + - uid: 8466 + components: + - pos: 32.5,18.5 + parent: 2 + type: Transform + - uid: 8467 + components: + - pos: 31.5,18.5 + parent: 2 + type: Transform + - uid: 8468 + components: + - pos: 30.5,18.5 + parent: 2 + type: Transform + - uid: 8469 + components: + - pos: 29.5,18.5 + parent: 2 + type: Transform + - uid: 8470 + components: + - pos: 28.5,18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8471 + components: + - pos: 28.5,17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8536 + components: + - pos: 37.5,26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8537 + components: + - pos: 37.5,27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8538 + components: + - pos: 37.5,28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8539 + components: + - pos: 38.5,25.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8540 + components: + - pos: 39.5,25.5 + parent: 2 + type: Transform + - uid: 8541 + components: + - pos: 40.5,25.5 + parent: 2 + type: Transform + - uid: 8542 + components: + - pos: 41.5,25.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8543 + components: + - pos: 37.5,23.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8544 + components: + - pos: 37.5,24.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8545 + components: + - pos: 37.5,21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8546 + components: + - pos: 38.5,21.5 + parent: 2 + type: Transform + - uid: 8547 + components: + - pos: 38.5,20.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8548 + components: + - pos: 31.5,17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8698 + components: + - pos: 47.5,28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9007 + components: + - pos: 14.5,36.5 + parent: 2 + type: Transform + - uid: 9008 + components: + - pos: 15.5,36.5 + parent: 2 + type: Transform + - uid: 9009 + components: + - pos: 16.5,36.5 + parent: 2 + type: Transform + - uid: 9010 + components: + - pos: 17.5,36.5 + parent: 2 + type: Transform + - uid: 9011 + components: + - pos: 18.5,36.5 + parent: 2 + type: Transform + - uid: 9012 + components: + - pos: 19.5,36.5 + parent: 2 + type: Transform + - uid: 9013 + components: + - pos: 20.5,36.5 + parent: 2 + type: Transform + - uid: 9014 + components: + - pos: 20.5,35.5 + parent: 2 + type: Transform + - uid: 9015 + components: + - pos: 20.5,34.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9021 + components: + - pos: 18.5,37.5 + parent: 2 + type: Transform + - uid: 9022 + components: + - pos: 18.5,38.5 + parent: 2 + type: Transform + - uid: 9023 + components: + - pos: 18.5,39.5 + parent: 2 + type: Transform + - uid: 9024 + components: + - pos: 18.5,40.5 + parent: 2 + type: Transform + - uid: 9025 + components: + - pos: 19.5,40.5 + parent: 2 + type: Transform + - uid: 9026 + components: + - pos: 20.5,40.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9027 + components: + - pos: 21.5,36.5 + parent: 2 + type: Transform + - uid: 9028 + components: + - pos: 22.5,36.5 + parent: 2 + type: Transform + - uid: 9029 + components: + - pos: 23.5,36.5 + parent: 2 + type: Transform + - uid: 9030 + components: + - pos: 24.5,36.5 + parent: 2 + type: Transform + - uid: 9031 + components: + - pos: 25.5,36.5 + parent: 2 + type: Transform + - uid: 9032 + components: + - pos: 26.5,36.5 + parent: 2 + type: Transform + - uid: 9033 + components: + - pos: 27.5,36.5 + parent: 2 + type: Transform + - uid: 9034 + components: + - pos: 28.5,36.5 + parent: 2 + type: Transform + - uid: 9035 + components: + - pos: 28.5,33.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9036 + components: + - pos: 27.5,34.5 + parent: 2 + type: Transform + - uid: 9037 + components: + - pos: 28.5,33.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9038 + components: + - pos: 29.5,36.5 + parent: 2 + type: Transform + - uid: 9039 + components: + - pos: 30.5,36.5 + parent: 2 + type: Transform + - uid: 9040 + components: + - pos: 30.5,37.5 + parent: 2 + type: Transform + - uid: 9041 + components: + - pos: 30.5,38.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9042 + components: + - pos: 27.5,37.5 + parent: 2 + type: Transform + - uid: 9043 + components: + - pos: 27.5,38.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9044 + components: + - pos: 27.5,39.5 + parent: 2 + type: Transform + - uid: 9045 + components: + - pos: 27.5,40.5 + parent: 2 + type: Transform + - uid: 9046 + components: + - pos: 27.5,41.5 + parent: 2 + type: Transform + - uid: 9047 + components: + - pos: 27.5,42.5 + parent: 2 + type: Transform + - uid: 9048 + components: + - pos: 27.5,43.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9049 + components: + - pos: 27.5,44.5 + parent: 2 + type: Transform + - uid: 9050 + components: + - pos: 27.5,45.5 + parent: 2 + type: Transform + - uid: 9051 + components: + - pos: 26.5,45.5 + parent: 2 + type: Transform + - uid: 9052 + components: + - pos: 25.5,45.5 + parent: 2 + type: Transform + - uid: 9053 + components: + - pos: 25.5,44.5 + parent: 2 + type: Transform + - uid: 9054 + components: + - pos: 25.5,43.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9055 + components: + - pos: 28.5,45.5 + parent: 2 + type: Transform + - uid: 9056 + components: + - pos: 29.5,45.5 + parent: 2 + type: Transform + - uid: 9057 + components: + - pos: 30.5,45.5 + parent: 2 + type: Transform + - uid: 9058 + components: + - pos: 31.5,45.5 + parent: 2 + type: Transform + - uid: 9059 + components: + - pos: 32.5,45.5 + parent: 2 + type: Transform + - uid: 9092 + components: + - pos: 33.5,45.5 + parent: 2 + type: Transform + - uid: 9093 + components: + - pos: 33.5,44.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9094 + components: + - pos: 27.5,35.5 + parent: 2 + type: Transform + - uid: 9095 + components: + - pos: 22.5,37.5 + parent: 2 + type: Transform + - uid: 9096 + components: + - pos: 21.5,38.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9097 + components: + - pos: 22.5,38.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9098 + components: + - pos: 23.5,38.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9099 + components: + - pos: 24.5,38.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9100 + components: + - pos: 24.5,45.5 + parent: 2 + type: Transform + - uid: 9101 + components: + - pos: 23.5,45.5 + parent: 2 + type: Transform + - uid: 9102 + components: + - pos: 22.5,45.5 + parent: 2 + type: Transform + - uid: 9103 + components: + - pos: 21.5,45.5 + parent: 2 + type: Transform + - uid: 9104 + components: + - pos: 20.5,45.5 + parent: 2 + type: Transform + - uid: 9105 + components: + - pos: 19.5,45.5 + parent: 2 + type: Transform + - uid: 9106 + components: + - pos: 18.5,45.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9107 + components: + - pos: 18.5,44.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9108 + components: + - pos: 22.5,46.5 + parent: 2 + type: Transform + - uid: 9111 + components: + - pos: 22.5,47.5 + parent: 2 + type: Transform + - uid: 9112 + components: + - pos: 22.5,48.5 + parent: 2 + type: Transform + - uid: 9113 + components: + - pos: 22.5,49.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9114 + components: + - pos: 23.5,49.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9115 + components: + - pos: 24.5,49.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9116 + components: + - pos: 25.5,49.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9117 + components: + - pos: 26.5,49.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9118 + components: + - pos: 27.5,49.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9119 + components: + - pos: 28.5,49.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9120 + components: + - pos: 29.5,49.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9121 + components: + - pos: 30.5,49.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9122 + components: + - pos: 31.5,49.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9123 + components: + - pos: 32.5,49.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9124 + components: + - pos: 32.5,48.5 + parent: 2 + type: Transform + - uid: 9125 + components: + - pos: 32.5,47.5 + parent: 2 + type: Transform + - uid: 9126 + components: + - pos: 32.5,46.5 + parent: 2 + type: Transform + - uid: 9127 + components: + - pos: 34.5,45.5 + parent: 2 + type: Transform + - uid: 9128 + components: + - pos: 35.5,45.5 + parent: 2 + type: Transform + - uid: 9129 + components: + - pos: 36.5,45.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9130 + components: + - pos: 36.5,46.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9253 + components: + - pos: 70.5,44.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9254 + components: + - pos: 69.5,44.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9255 + components: + - pos: 69.5,45.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9256 + components: + - pos: 69.5,46.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9257 + components: + - pos: 69.5,47.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9258 + components: + - pos: 69.5,43.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9259 + components: + - pos: 69.5,42.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9260 + components: + - pos: 68.5,42.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9261 + components: + - pos: 68.5,41.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9262 + components: + - pos: 67.5,42.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9263 + components: + - pos: 67.5,43.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9264 + components: + - pos: 67.5,44.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9265 + components: + - pos: 66.5,44.5 + parent: 2 + type: Transform + - uid: 9266 + components: + - pos: 66.5,45.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9474 + components: + - pos: 24.5,44.5 + parent: 2 + type: Transform + - uid: 9475 + components: + - pos: 24.5,43.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9476 + components: + - pos: 21.5,43.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9477 + components: + - pos: 21.5,44.5 + parent: 2 + type: Transform + - uid: 9638 + components: + - pos: 52.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9639 + components: + - pos: 52.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9640 + components: + - pos: 51.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9641 + components: + - pos: 50.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9642 + components: + - pos: 49.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9643 + components: + - pos: 48.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9644 + components: + - pos: 47.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9645 + components: + - pos: 46.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9646 + components: + - pos: 45.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9647 + components: + - pos: 44.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9648 + components: + - pos: 43.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9649 + components: + - pos: 42.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9650 + components: + - pos: 41.5,-12.5 + parent: 2 + type: Transform + - uid: 9651 + components: + - pos: 40.5,-12.5 + parent: 2 + type: Transform + - uid: 9652 + components: + - pos: 39.5,-12.5 + parent: 2 + type: Transform + - uid: 9653 + components: + - pos: 39.5,-11.5 + parent: 2 + type: Transform + - uid: 9654 + components: + - pos: 38.5,-11.5 + parent: 2 + type: Transform + - uid: 9655 + components: + - pos: 37.5,-11.5 + parent: 2 + type: Transform + - uid: 9656 + components: + - pos: 36.5,-11.5 + parent: 2 + type: Transform + - uid: 9657 + components: + - pos: 35.5,-11.5 + parent: 2 + type: Transform + - uid: 9658 + components: + - pos: 34.5,-11.5 + parent: 2 + type: Transform + - uid: 9659 + components: + - pos: 33.5,-11.5 + parent: 2 + type: Transform + - uid: 9660 + components: + - pos: 32.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9661 + components: + - pos: 39.5,-10.5 + parent: 2 + type: Transform + - uid: 9662 + components: + - pos: 39.5,-9.5 + parent: 2 + type: Transform + - uid: 9663 + components: + - pos: 39.5,-8.5 + parent: 2 + type: Transform + - uid: 9664 + components: + - pos: 39.5,-7.5 + parent: 2 + type: Transform + - uid: 9665 + components: + - pos: 39.5,-6.5 + parent: 2 + type: Transform + - uid: 9666 + components: + - pos: 39.5,-5.5 + parent: 2 + type: Transform + - uid: 9667 + components: + - pos: 39.5,-4.5 + parent: 2 + type: Transform + - uid: 9668 + components: + - pos: 39.5,-3.5 + parent: 2 + type: Transform + - uid: 9669 + components: + - pos: 38.5,-3.5 + parent: 2 + type: Transform + - uid: 9670 + components: + - pos: 37.5,-3.5 + parent: 2 + type: Transform + - uid: 9671 + components: + - pos: 37.5,-2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9672 + components: + - pos: 40.5,-3.5 + parent: 2 + type: Transform + - uid: 9673 + components: + - pos: 41.5,-3.5 + parent: 2 + type: Transform + - uid: 9674 + components: + - pos: 42.5,-3.5 + parent: 2 + type: Transform + - uid: 9675 + components: + - pos: 42.5,-4.5 + parent: 2 + type: Transform + - uid: 9676 + components: + - pos: 42.5,-5.5 + parent: 2 + type: Transform + - uid: 9677 + components: + - pos: 42.5,-6.5 + parent: 2 + type: Transform + - uid: 9678 + components: + - pos: 43.5,-6.5 + parent: 2 + type: Transform + - uid: 9679 + components: + - pos: 44.5,-6.5 + parent: 2 + type: Transform + - uid: 9680 + components: + - pos: 45.5,-6.5 + parent: 2 + type: Transform + - uid: 9681 + components: + - pos: 45.5,-7.5 + parent: 2 + type: Transform + - uid: 9682 + components: + - pos: 45.5,-8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9683 + components: + - pos: 41.5,-2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9684 + components: + - pos: 41.5,-1.5 + parent: 2 + type: Transform + - uid: 9685 + components: + - pos: 40.5,-1.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9686 + components: + - pos: 50.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9687 + components: + - pos: 50.5,-10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9688 + components: + - pos: 50.5,-9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9689 + components: + - pos: 50.5,-8.5 + parent: 2 + type: Transform + - uid: 9690 + components: + - pos: 50.5,-7.5 + parent: 2 + type: Transform + - uid: 9691 + components: + - pos: 51.5,-7.5 + parent: 2 + type: Transform + - uid: 9692 + components: + - pos: 52.5,-7.5 + parent: 2 + type: Transform + - uid: 9693 + components: + - pos: 52.5,-8.5 + parent: 2 + type: Transform + - uid: 9745 + components: + - pos: 16.5,-14.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9746 + components: + - pos: 16.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9747 + components: + - pos: 16.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9748 + components: + - pos: 16.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9749 + components: + - pos: 15.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9750 + components: + - pos: 14.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9751 + components: + - pos: 13.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9752 + components: + - pos: 13.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9753 + components: + - pos: 13.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9754 + components: + - pos: 12.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9755 + components: + - pos: 11.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9756 + components: + - pos: 10.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9757 + components: + - pos: 10.5,-14.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9758 + components: + - pos: 10.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9759 + components: + - pos: 11.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9760 + components: + - pos: 17.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9761 + components: + - pos: 17.5,-10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9762 + components: + - pos: 17.5,-9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9763 + components: + - pos: 17.5,-8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9764 + components: + - pos: 17.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9765 + components: + - pos: 16.5,-7.5 + parent: 2 + type: Transform + - uid: 9766 + components: + - pos: 16.5,-6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9767 + components: + - pos: 15.5,-7.5 + parent: 2 + type: Transform + - uid: 9768 + components: + - pos: 14.5,-7.5 + parent: 2 + type: Transform + - uid: 9769 + components: + - pos: 13.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9770 + components: + - pos: 18.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9771 + components: + - pos: 19.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9772 + components: + - pos: 20.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9773 + components: + - pos: 21.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9774 + components: + - pos: 21.5,-8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9776 + components: + - pos: 23.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9777 + components: + - pos: 23.5,2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9829 + components: + - pos: 35.5,-14.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9830 + components: + - pos: 35.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9831 + components: + - pos: 34.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9832 + components: + - pos: 36.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9833 + components: + - pos: 37.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9834 + components: + - pos: 38.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9835 + components: + - pos: 39.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9836 + components: + - pos: 33.5,-15.5 + parent: 2 + type: Transform + - uid: 9837 + components: + - pos: 32.5,-15.5 + parent: 2 + type: Transform + - uid: 9838 + components: + - pos: 32.5,-16.5 + parent: 2 + type: Transform + - uid: 9839 + components: + - pos: 32.5,-17.5 + parent: 2 + type: Transform + - uid: 9840 + components: + - pos: 32.5,-18.5 + parent: 2 + type: Transform + - uid: 9841 + components: + - pos: 32.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9842 + components: + - pos: 31.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9843 + components: + - pos: 30.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9844 + components: + - pos: 29.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9845 + components: + - pos: 28.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9846 + components: + - pos: 33.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9847 + components: + - pos: 34.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9848 + components: + - pos: 35.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9849 + components: + - pos: 36.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9850 + components: + - pos: 37.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9851 + components: + - pos: 38.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9852 + components: + - pos: 39.5,-19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9853 + components: + - pos: 39.5,-18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9854 + components: + - pos: 36.5,-20.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9855 + components: + - pos: 36.5,-21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9856 + components: + - pos: 51.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9857 + components: + - pos: 51.5,-14.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9858 + components: + - pos: 50.5,-14.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9859 + components: + - pos: 69.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9860 + components: + - pos: 70.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9861 + components: + - pos: 71.5,-13.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9862 + components: + - pos: 71.5,-14.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9863 + components: + - pos: 71.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9864 + components: + - pos: 70.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9865 + components: + - pos: 69.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9866 + components: + - pos: 68.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9867 + components: + - pos: 71.5,-12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9868 + components: + - pos: 71.5,-11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9869 + components: + - pos: 71.5,-10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9870 + components: + - pos: 71.5,-9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9871 + components: + - pos: 71.5,-8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9872 + components: + - pos: 71.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9873 + components: + - pos: 71.5,-6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9874 + components: + - pos: 71.5,-5.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9875 + components: + - pos: 71.5,-4.5 + parent: 2 + type: Transform + - uid: 9876 + components: + - pos: 71.5,-3.5 + parent: 2 + type: Transform + - uid: 9877 + components: + - pos: 72.5,-3.5 + parent: 2 + type: Transform + - uid: 9878 + components: + - pos: 72.5,-2.5 + parent: 2 + type: Transform + - uid: 9879 + components: + - pos: 73.5,-2.5 + parent: 2 + type: Transform + - uid: 9880 + components: + - pos: 74.5,-2.5 + parent: 2 + type: Transform + - uid: 9881 + components: + - pos: 75.5,-2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9882 + components: + - pos: 41.5,-37.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9883 + components: + - pos: 40.5,-37.5 + parent: 2 + type: Transform + - uid: 9884 + components: + - pos: 39.5,-37.5 + parent: 2 + type: Transform + - uid: 9885 + components: + - pos: 38.5,-37.5 + parent: 2 + type: Transform + - uid: 9886 + components: + - pos: 38.5,-36.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9887 + components: + - pos: 38.5,-35.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9888 + components: + - pos: 38.5,-34.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9889 + components: + - pos: 38.5,-33.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9890 + components: + - pos: 38.5,-32.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9891 + components: + - pos: 38.5,-31.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9892 + components: + - pos: 38.5,-30.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9893 + components: + - pos: 38.5,-29.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9894 + components: + - pos: 38.5,-28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9895 + components: + - pos: 38.5,-27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9896 + components: + - pos: 39.5,-27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9897 + components: + - pos: 39.5,-26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9898 + components: + - pos: 38.5,-25.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9899 + components: + - pos: 39.5,-25.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9900 + components: + - pos: 38.5,-24.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9901 + components: + - pos: 37.5,-23.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9902 + components: + - pos: 37.5,-24.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9903 + components: + - pos: 36.5,-23.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9904 + components: + - pos: 36.5,-22.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10130 + components: + - pos: 63.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10672 + components: + - pos: 64.5,11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10673 + components: + - pos: 63.5,11.5 + parent: 2 + type: Transform + - uid: 10674 + components: + - pos: 62.5,11.5 + parent: 2 + type: Transform + - uid: 10675 + components: + - pos: 62.5,12.5 + parent: 2 + type: Transform + - uid: 10676 + components: + - pos: 63.5,12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10677 + components: + - pos: 61.5,12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10678 + components: + - pos: 60.5,12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10679 + components: + - pos: 62.5,13.5 + parent: 2 + type: Transform + - uid: 10680 + components: + - pos: 62.5,14.5 + parent: 2 + type: Transform + - uid: 10681 + components: + - pos: 62.5,15.5 + parent: 2 + type: Transform + - uid: 10682 + components: + - pos: 63.5,15.5 + parent: 2 + type: Transform + - uid: 10683 + components: + - pos: 64.5,15.5 + parent: 2 + type: Transform + - uid: 10684 + components: + - pos: 65.5,15.5 + parent: 2 + type: Transform + - uid: 10685 + components: + - pos: 66.5,15.5 + parent: 2 + type: Transform + - uid: 10686 + components: + - pos: 66.5,16.5 + parent: 2 + type: Transform + - uid: 10687 + components: + - pos: 66.5,17.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10688 + components: + - pos: 61.5,14.5 + parent: 2 + type: Transform + - uid: 10689 + components: + - pos: 60.5,14.5 + parent: 2 + type: Transform + - uid: 10690 + components: + - pos: 59.5,14.5 + parent: 2 + type: Transform + - uid: 10691 + components: + - pos: 58.5,14.5 + parent: 2 + type: Transform + - uid: 10692 + components: + - pos: 57.5,14.5 + parent: 2 + type: Transform + - uid: 10693 + components: + - pos: 57.5,13.5 + parent: 2 + type: Transform + - uid: 10694 + components: + - pos: 57.5,12.5 + parent: 2 + type: Transform + - uid: 10695 + components: + - pos: 57.5,11.5 + parent: 2 + type: Transform + - uid: 10696 + components: + - pos: 56.5,11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10697 + components: + - pos: 56.5,14.5 + parent: 2 + type: Transform + - uid: 10698 + components: + - pos: 55.5,14.5 + parent: 2 + type: Transform + - uid: 10699 + components: + - pos: 54.5,14.5 + parent: 2 + type: Transform + - uid: 10700 + components: + - pos: 53.5,14.5 + parent: 2 + type: Transform + - uid: 10701 + components: + - pos: 52.5,14.5 + parent: 2 + type: Transform + - uid: 10702 + components: + - pos: 51.5,14.5 + parent: 2 + type: Transform + - uid: 10703 + components: + - pos: 50.5,14.5 + parent: 2 + type: Transform + - uid: 10704 + components: + - pos: 49.5,14.5 + parent: 2 + type: Transform + - uid: 10705 + components: + - pos: 48.5,14.5 + parent: 2 + type: Transform + - uid: 10752 + components: + - pos: 47.5,14.5 + parent: 2 + type: Transform + - uid: 10753 + components: + - pos: 46.5,14.5 + parent: 2 + type: Transform + - uid: 10754 + components: + - pos: 45.5,14.5 + parent: 2 + type: Transform + - uid: 10755 + components: + - pos: 44.5,14.5 + parent: 2 + type: Transform + - uid: 10756 + components: + - pos: 43.5,14.5 + parent: 2 + type: Transform + - uid: 10777 + components: + - pos: 43.5,13.5 + parent: 2 + type: Transform + - uid: 10783 + components: + - pos: 43.5,12.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10784 + components: + - pos: 47.5,15.5 + parent: 2 + type: Transform + - uid: 10785 + components: + - pos: 47.5,16.5 + parent: 2 + type: Transform + - uid: 10786 + components: + - pos: 47.5,17.5 + parent: 2 + type: Transform + - uid: 10787 + components: + - pos: 47.5,18.5 + parent: 2 + type: Transform + - uid: 10788 + components: + - pos: 47.5,19.5 + parent: 2 + type: Transform + - uid: 10805 + components: + - pos: 47.5,20.5 + parent: 2 + type: Transform + - uid: 10806 + components: + - pos: 47.5,21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10854 + components: + - pos: 47.5,22.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10855 + components: + - pos: 47.5,23.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10857 + components: + - pos: 47.5,24.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10858 + components: + - pos: 47.5,25.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10859 + components: + - pos: 47.5,26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10860 + components: + - pos: 47.5,27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10861 + components: + - pos: 48.5,27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10862 + components: + - pos: 49.5,27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10865 + components: + - pos: 50.5,27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10866 + components: + - pos: 51.5,22.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10867 + components: + - pos: 51.5,20.5 + parent: 2 + type: Transform + - uid: 10868 + components: + - pos: 52.5,20.5 + parent: 2 + type: Transform + - uid: 10869 + components: + - pos: 53.5,20.5 + parent: 2 + type: Transform + - uid: 10870 + components: + - pos: 53.5,21.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10871 + components: + - pos: 53.5,19.5 + parent: 2 + type: Transform + - uid: 10872 + components: + - pos: 54.5,19.5 + parent: 2 + type: Transform + - uid: 10873 + components: + - pos: 55.5,19.5 + parent: 2 + type: Transform + - uid: 10874 + components: + - pos: 56.5,19.5 + parent: 2 + type: Transform + - uid: 10877 + components: + - pos: 57.5,19.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10879 + components: + - pos: 58.5,19.5 + parent: 2 + type: Transform + - uid: 10880 + components: + - pos: 59.5,19.5 + parent: 2 + type: Transform + - uid: 10881 + components: + - pos: 60.5,19.5 + parent: 2 + type: Transform + - uid: 10882 + components: + - pos: 60.5,18.5 + parent: 2 + type: Transform + - uid: 10883 + components: + - pos: 61.5,18.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10884 + components: + - pos: 60.5,17.5 + parent: 2 + type: Transform + - uid: 10885 + components: + - pos: 60.5,16.5 + parent: 2 + type: Transform + - uid: 10886 + components: + - pos: 60.5,15.5 + parent: 2 + type: Transform + - uid: 10887 + components: + - pos: 60.5,20.5 + parent: 2 + type: Transform + - uid: 10888 + components: + - pos: 60.5,21.5 + parent: 2 + type: Transform + - uid: 10889 + components: + - pos: 60.5,22.5 + parent: 2 + type: Transform + - uid: 10890 + components: + - pos: 60.5,23.5 + parent: 2 + type: Transform + - uid: 10891 + components: + - pos: 61.5,23.5 + parent: 2 + type: Transform + - uid: 10892 + components: + - pos: 62.5,23.5 + parent: 2 + type: Transform + - uid: 10893 + components: + - pos: 63.5,23.5 + parent: 2 + type: Transform + - uid: 10894 + components: + - pos: 64.5,23.5 + parent: 2 + type: Transform + - uid: 10895 + components: + - pos: 65.5,23.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10913 + components: + - pos: 41.5,0.5 + parent: 2 + type: Transform + - uid: 10914 + components: + - pos: 41.5,1.5 + parent: 2 + type: Transform + - uid: 10915 + components: + - pos: 41.5,2.5 + parent: 2 + type: Transform + - uid: 10916 + components: + - pos: 41.5,3.5 + parent: 2 + type: Transform + - uid: 10917 + components: + - pos: 42.5,3.5 + parent: 2 + type: Transform + - uid: 10918 + components: + - pos: 43.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10919 + components: + - pos: 41.5,4.5 + parent: 2 + type: Transform + - uid: 10920 + components: + - pos: 41.5,5.5 + parent: 2 + type: Transform + - uid: 10921 + components: + - pos: 41.5,6.5 + parent: 2 + type: Transform + - uid: 10922 + components: + - pos: 42.5,6.5 + parent: 2 + type: Transform + - uid: 10923 + components: + - pos: 43.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11148 + components: + - pos: 72.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11149 + components: + - pos: 73.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11150 + components: + - pos: 72.5,-1.5 + parent: 2 + type: Transform + - uid: 11151 + components: + - pos: 72.5,-0.5 + parent: 2 + type: Transform + - uid: 11152 + components: + - pos: 72.5,0.5 + parent: 2 + type: Transform + - uid: 11153 + components: + - pos: 72.5,1.5 + parent: 2 + type: Transform + - uid: 11154 + components: + - pos: 73.5,1.5 + parent: 2 + type: Transform + - uid: 11155 + components: + - pos: 74.5,1.5 + parent: 2 + type: Transform + - uid: 11156 + components: + - pos: 75.5,1.5 + parent: 2 + type: Transform + - uid: 11157 + components: + - pos: 76.5,1.5 + parent: 2 + type: Transform + - uid: 11161 + components: + - pos: 77.5,1.5 + parent: 2 + type: Transform + - uid: 11162 + components: + - pos: 77.5,0.5 + parent: 2 + type: Transform + - uid: 11166 + components: + - pos: 77.5,-0.5 + parent: 2 + type: Transform + - uid: 11167 + components: + - pos: 77.5,-1.5 + parent: 2 + type: Transform + - uid: 11168 + components: + - pos: 77.5,-2.5 + parent: 2 + type: Transform + - uid: 11170 + components: + - pos: 77.5,-3.5 + parent: 2 + type: Transform + - uid: 11171 + components: + - pos: 77.5,-4.5 + parent: 2 + type: Transform + - uid: 11172 + components: + - pos: 76.5,-4.5 + parent: 2 + type: Transform + - uid: 11173 + components: + - pos: 75.5,-4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11174 + components: + - pos: 70.5,-9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11175 + components: + - pos: 69.5,-9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11177 + components: + - pos: 68.5,-9.5 + parent: 2 + type: Transform + - uid: 11178 + components: + - pos: 67.5,-9.5 + parent: 2 + type: Transform + - uid: 11179 + components: + - pos: 66.5,-9.5 + parent: 2 + type: Transform + - uid: 11183 + components: + - pos: 66.5,-8.5 + parent: 2 + type: Transform + - uid: 11185 + components: + - pos: 66.5,-7.5 + parent: 2 + type: Transform + - uid: 11186 + components: + - pos: 66.5,-6.5 + parent: 2 + type: Transform + - uid: 11187 + components: + - pos: 66.5,-5.5 + parent: 2 + type: Transform + - uid: 11189 + components: + - pos: 65.5,-5.5 + parent: 2 + type: Transform + - uid: 11197 + components: + - pos: 64.5,-5.5 + parent: 2 + type: Transform + - uid: 11204 + components: + - pos: 63.5,-5.5 + parent: 2 + type: Transform + - uid: 11205 + components: + - pos: 62.5,-5.5 + parent: 2 + type: Transform + - uid: 11207 + components: + - pos: 61.5,-5.5 + parent: 2 + type: Transform + - uid: 11213 + components: + - pos: 60.5,-5.5 + parent: 2 + type: Transform + - uid: 11214 + components: + - pos: 59.5,-5.5 + parent: 2 + type: Transform + - uid: 11215 + components: + - pos: 58.5,-5.5 + parent: 2 + type: Transform + - uid: 11218 + components: + - pos: 58.5,-6.5 + parent: 2 + type: Transform + - uid: 11219 + components: + - pos: 58.5,-7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11220 + components: + - pos: 58.5,-8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11226 + components: + - pos: 66.5,-4.5 + parent: 2 + type: Transform + - uid: 11227 + components: + - pos: 66.5,-3.5 + parent: 2 + type: Transform + - uid: 11228 + components: + - pos: 66.5,-2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11229 + components: + - pos: 66.5,-1.5 + parent: 2 + type: Transform + - uid: 11230 + components: + - pos: 66.5,-0.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11231 + components: + - pos: 71.5,1.5 + parent: 2 + type: Transform + - uid: 11232 + components: + - pos: 70.5,1.5 + parent: 2 + type: Transform + - uid: 11233 + components: + - pos: 69.5,1.5 + parent: 2 + type: Transform + - uid: 11234 + components: + - pos: 68.5,1.5 + parent: 2 + type: Transform + - uid: 11235 + components: + - pos: 67.5,1.5 + parent: 2 + type: Transform + - uid: 11236 + components: + - pos: 66.5,1.5 + parent: 2 + type: Transform + - uid: 11237 + components: + - pos: 66.5,0.5 + parent: 2 + type: Transform + - uid: 11238 + components: + - pos: 54.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11239 + components: + - pos: 54.5,3.5 + parent: 2 + type: Transform + - uid: 11240 + components: + - pos: 54.5,2.5 + parent: 2 + type: Transform + - uid: 11241 + components: + - pos: 54.5,1.5 + parent: 2 + type: Transform + - uid: 11242 + components: + - pos: 54.5,0.5 + parent: 2 + type: Transform + - uid: 11257 + components: + - pos: 55.5,0.5 + parent: 2 + type: Transform + - uid: 11258 + components: + - pos: 56.5,0.5 + parent: 2 + type: Transform + - uid: 11259 + components: + - pos: 57.5,0.5 + parent: 2 + type: Transform + - uid: 11260 + components: + - pos: 58.5,0.5 + parent: 2 + type: Transform + - uid: 11261 + components: + - pos: 59.5,0.5 + parent: 2 + type: Transform + - uid: 11262 + components: + - pos: 60.5,0.5 + parent: 2 + type: Transform + - uid: 11269 + components: + - pos: 61.5,0.5 + parent: 2 + type: Transform + - uid: 11270 + components: + - pos: 62.5,0.5 + parent: 2 + type: Transform + - uid: 11275 + components: + - pos: 63.5,0.5 + parent: 2 + type: Transform + - uid: 11276 + components: + - pos: 64.5,0.5 + parent: 2 + type: Transform + - uid: 11277 + components: + - pos: 65.5,0.5 + parent: 2 + type: Transform + - uid: 12139 + components: + - pos: 72.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12140 + components: + - pos: 73.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12141 + components: + - pos: 74.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12145 + components: + - pos: 75.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12146 + components: + - pos: 76.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12147 + components: + - pos: 77.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12148 + components: + - pos: 78.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12149 + components: + - pos: 78.5,-14.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12171 + components: + - pos: 71.5,2.5 + parent: 2 + type: Transform + - uid: 12173 + components: + - pos: 71.5,3.5 + parent: 2 + type: Transform + - uid: 12174 + components: + - pos: 71.5,4.5 + parent: 2 + type: Transform + - uid: 12175 + components: + - pos: 71.5,5.5 + parent: 2 + type: Transform + - uid: 12176 + components: + - pos: 71.5,6.5 + parent: 2 + type: Transform + - uid: 12185 + components: + - pos: 71.5,7.5 + parent: 2 + type: Transform + - uid: 12186 + components: + - pos: 72.5,7.5 + parent: 2 + type: Transform + - uid: 12187 + components: + - pos: 73.5,7.5 + parent: 2 + type: Transform + - uid: 12188 + components: + - pos: 74.5,7.5 + parent: 2 + type: Transform + - uid: 12189 + components: + - pos: 74.5,8.5 + parent: 2 + type: Transform + - uid: 12190 + components: + - pos: 74.5,9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12191 + components: + - pos: 69.5,9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12192 + components: + - pos: 69.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12193 + components: + - pos: 68.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12194 + components: + - pos: 67.5,10.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12195 + components: + - pos: 67.5,9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12196 + components: + - pos: 67.5,8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12197 + components: + - pos: 66.5,8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12198 + components: + - pos: 65.5,8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12199 + components: + - pos: 65.5,7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12200 + components: + - pos: 65.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12202 + components: + - pos: 64.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12203 + components: + - pos: 63.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12204 + components: + - pos: 62.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12205 + components: + - pos: 61.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12206 + components: + - pos: 60.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12207 + components: + - pos: 59.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12208 + components: + - pos: 58.5,6.5 + parent: 2 + type: Transform + - uid: 12209 + components: + - pos: 57.5,6.5 + parent: 2 + type: Transform + - uid: 12210 + components: + - pos: 57.5,7.5 + parent: 2 + type: Transform + - uid: 12211 + components: + - pos: 57.5,8.5 + parent: 2 + type: Transform + - uid: 12212 + components: + - pos: 57.5,9.5 + parent: 2 + type: Transform + - uid: 12213 + components: + - pos: 57.5,10.5 + parent: 2 + type: Transform + - uid: 12648 + components: + - pos: 112.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12649 + components: + - pos: 111.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12650 + components: + - pos: 110.5,-15.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12651 + components: + - pos: 110.5,-14.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12935 + components: + - pos: 29.5,-38.5 + parent: 2 + type: Transform + - uid: 12936 + components: + - pos: 29.5,-39.5 + parent: 2 + type: Transform + - uid: 12937 + components: + - pos: 30.5,-39.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12938 + components: + - pos: 31.5,-39.5 + parent: 2 + type: Transform + - uid: 12939 + components: + - pos: 32.5,-39.5 + parent: 2 + type: Transform + - uid: 12940 + components: + - pos: 33.5,-39.5 + parent: 2 + type: Transform + - uid: 12941 + components: + - pos: 34.5,-39.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12942 + components: + - pos: 35.5,-39.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12943 + components: + - pos: 35.5,-40.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12944 + components: + - pos: 35.5,-41.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12945 + components: + - pos: 35.5,-42.5 + parent: 2 + type: Transform + - uid: 12946 + components: + - pos: 36.5,-42.5 + parent: 2 + type: Transform + - uid: 12947 + components: + - pos: 37.5,-42.5 + parent: 2 + type: Transform + - uid: 12948 + components: + - pos: 37.5,-41.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13143 + components: + - pos: 17.5,-41.5 + parent: 2 + type: Transform + - uid: 13144 + components: + - pos: 17.5,-40.5 + parent: 2 + type: Transform + - uid: 13145 + components: + - pos: 17.5,-39.5 + parent: 2 + type: Transform + - uid: 13146 + components: + - pos: 18.5,-39.5 + parent: 2 + type: Transform + - uid: 13147 + components: + - pos: 19.5,-39.5 + parent: 2 + type: Transform + - uid: 13148 + components: + - pos: 19.5,-40.5 + parent: 2 + type: Transform + - uid: 13149 + components: + - pos: 19.5,-41.5 + parent: 2 + type: Transform + - uid: 13150 + components: + - pos: 20.5,-41.5 + parent: 2 + type: Transform + - uid: 13151 + components: + - pos: 21.5,-41.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound +- proto: CableMVStack + entities: + - uid: 5628 + components: + - pos: 17.902254,-23.387651 + parent: 2 + type: Transform + - uid: 6316 + components: + - pos: 90.66321,-10.120396 + parent: 2 + type: Transform +- proto: CableTerminal + entities: + - uid: 338 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-32.5 + parent: 2 + type: Transform + - uid: 682 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-32.5 + parent: 2 + type: Transform + - uid: 886 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-32.5 + parent: 2 + type: Transform + - uid: 4872 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-34.5 + parent: 2 + type: Transform + - uid: 6284 + components: + - pos: 71.5,45.5 + parent: 2 + type: Transform + - uid: 6442 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-15.5 + parent: 2 + type: Transform + - uid: 12647 + components: + - rot: 3.141592653589793 rad + pos: 112.5,-18.5 + parent: 2 + type: Transform +- proto: CandyBowl + entities: + - uid: 13078 + components: + - pos: 54.503376,-4.6494684 + parent: 2 + type: Transform +- proto: CannabisSeeds + entities: + - uid: 11109 + components: + - pos: 41.505302,37.40492 + parent: 2 + type: Transform +- proto: CaptainIDCard + entities: + - uid: 5431 + components: + - pos: 31.514431,39.594784 + parent: 2 + type: Transform +- proto: CarbonDioxideCanister + entities: + - uid: 4771 + components: + - pos: 45.5,-37.5 + parent: 2 + type: Transform + - uid: 12998 + components: + - pos: 34.5,-45.5 + parent: 2 + type: Transform +- proto: Carpet + entities: + - uid: 3 + components: + - pos: 43.5,22.5 + parent: 2 + type: Transform + - uid: 266 + components: + - pos: 9.5,7.5 + parent: 2 + type: Transform + - uid: 268 + components: + - pos: 11.5,6.5 + parent: 2 + type: Transform + - uid: 269 + components: + - pos: 11.5,7.5 + parent: 2 + type: Transform + - uid: 549 + components: + - pos: 12.5,-2.5 + parent: 2 + type: Transform + - uid: 550 + components: + - pos: 11.5,-2.5 + parent: 2 + type: Transform + - uid: 551 + components: + - pos: 11.5,-3.5 + parent: 2 + type: Transform + - uid: 552 + components: + - pos: 12.5,-3.5 + parent: 2 + type: Transform + - uid: 569 + components: + - pos: 9.5,6.5 + parent: 2 + type: Transform + - uid: 571 + components: + - pos: 37.5,-7.5 + parent: 2 + type: Transform + - uid: 936 + components: + - pos: 36.5,-5.5 + parent: 2 + type: Transform + - uid: 1525 + components: + - pos: 36.5,-7.5 + parent: 2 + type: Transform + - uid: 1533 + components: + - pos: 37.5,-3.5 + parent: 2 + type: Transform + - uid: 1537 + components: + - pos: 36.5,-3.5 + parent: 2 + type: Transform + - uid: 1561 + components: + - pos: 36.5,-4.5 + parent: 2 + type: Transform + - uid: 1586 + components: + - pos: 37.5,-5.5 + parent: 2 + type: Transform + - uid: 1630 + components: + - pos: 37.5,-6.5 + parent: 2 + type: Transform + - uid: 1635 + components: + - pos: 37.5,-4.5 + parent: 2 + type: Transform + - uid: 1637 + components: + - pos: 36.5,-6.5 + parent: 2 + type: Transform + - uid: 2516 + components: + - pos: 39.5,7.5 + parent: 2 + type: Transform + - uid: 2517 + components: + - pos: 38.5,7.5 + parent: 2 + type: Transform + - uid: 2518 + components: + - pos: 37.5,7.5 + parent: 2 + type: Transform + - uid: 2519 + components: + - pos: 36.5,7.5 + parent: 2 + type: Transform + - uid: 2520 + components: + - pos: 35.5,7.5 + parent: 2 + type: Transform + - uid: 2521 + components: + - pos: 35.5,8.5 + parent: 2 + type: Transform + - uid: 2522 + components: + - pos: 35.5,9.5 + parent: 2 + type: Transform + - uid: 2523 + components: + - pos: 35.5,6.5 + parent: 2 + type: Transform + - uid: 2524 + components: + - pos: 35.5,5.5 + parent: 2 + type: Transform + - uid: 2525 + components: + - pos: 34.5,7.5 + parent: 2 + type: Transform + - uid: 2611 + components: + - pos: 37.5,41.5 + parent: 2 + type: Transform + - uid: 2612 + components: + - pos: 36.5,41.5 + parent: 2 + type: Transform + - uid: 2613 + components: + - pos: 36.5,40.5 + parent: 2 + type: Transform + - uid: 2614 + components: + - pos: 37.5,40.5 + parent: 2 + type: Transform + - uid: 2697 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,31.5 + parent: 2 + type: Transform + - uid: 2698 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,31.5 + parent: 2 + type: Transform + - uid: 2699 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,31.5 + parent: 2 + type: Transform + - uid: 2700 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,31.5 + parent: 2 + type: Transform + - uid: 2701 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,31.5 + parent: 2 + type: Transform + - uid: 2702 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,31.5 + parent: 2 + type: Transform + - uid: 2703 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,30.5 + parent: 2 + type: Transform + - uid: 2704 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,30.5 + parent: 2 + type: Transform + - uid: 2705 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,30.5 + parent: 2 + type: Transform + - uid: 2706 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,31.5 + parent: 2 + type: Transform + - uid: 2707 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,32.5 + parent: 2 + type: Transform + - uid: 2708 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,32.5 + parent: 2 + type: Transform + - uid: 2709 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,32.5 + parent: 2 + type: Transform + - uid: 2710 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,31.5 + parent: 2 + type: Transform + - uid: 2761 + components: + - pos: 24.5,40.5 + parent: 2 + type: Transform + - uid: 2762 + components: + - pos: 23.5,40.5 + parent: 2 + type: Transform + - uid: 2763 + components: + - pos: 22.5,40.5 + parent: 2 + type: Transform + - uid: 2764 + components: + - pos: 21.5,40.5 + parent: 2 + type: Transform + - uid: 2765 + components: + - pos: 21.5,39.5 + parent: 2 + type: Transform + - uid: 2766 + components: + - pos: 22.5,39.5 + parent: 2 + type: Transform + - uid: 2767 + components: + - pos: 23.5,39.5 + parent: 2 + type: Transform + - uid: 2768 + components: + - pos: 24.5,39.5 + parent: 2 + type: Transform + - uid: 2769 + components: + - pos: 23.5,43.5 + parent: 2 + type: Transform + - uid: 2770 + components: + - pos: 22.5,43.5 + parent: 2 + type: Transform + - uid: 5453 + components: + - pos: 67.5,35.5 + parent: 2 + type: Transform + - uid: 6529 + components: + - pos: 43.5,20.5 + parent: 2 + type: Transform + - uid: 6530 + components: + - pos: 42.5,20.5 + parent: 2 + type: Transform + - uid: 6531 + components: + - pos: 42.5,19.5 + parent: 2 + type: Transform + - uid: 6532 + components: + - pos: 43.5,19.5 + parent: 2 + type: Transform + - uid: 6533 + components: + - pos: 43.5,18.5 + parent: 2 + type: Transform + - uid: 6534 + components: + - pos: 42.5,18.5 + parent: 2 + type: Transform + - uid: 10807 + components: + - pos: 26.5,47.5 + parent: 2 + type: Transform + - uid: 10808 + components: + - pos: 26.5,48.5 + parent: 2 + type: Transform + - uid: 11009 + components: + - pos: 27.5,47.5 + parent: 2 + type: Transform + - uid: 11012 + components: + - pos: 27.5,48.5 + parent: 2 + type: Transform + - uid: 11013 + components: + - pos: 28.5,47.5 + parent: 2 + type: Transform + - uid: 11131 + components: + - pos: 28.5,48.5 + parent: 2 + type: Transform + - uid: 11940 + components: + - pos: 44.5,22.5 + parent: 2 + type: Transform + - uid: 11941 + components: + - pos: 45.5,22.5 + parent: 2 + type: Transform + - uid: 11942 + components: + - pos: 45.5,23.5 + parent: 2 + type: Transform + - uid: 11943 + components: + - pos: 45.5,24.5 + parent: 2 + type: Transform + - uid: 11944 + components: + - pos: 44.5,23.5 + parent: 2 + type: Transform + - uid: 12263 + components: + - pos: 16.5,13.5 + parent: 2 + type: Transform + - uid: 12264 + components: + - pos: 15.5,13.5 + parent: 2 + type: Transform + - uid: 12265 + components: + - pos: 14.5,13.5 + parent: 2 + type: Transform + - uid: 12266 + components: + - pos: 16.5,15.5 + parent: 2 + type: Transform + - uid: 12267 + components: + - pos: 15.5,15.5 + parent: 2 + type: Transform + - uid: 12268 + components: + - pos: 14.5,15.5 + parent: 2 + type: Transform +- proto: CarpetBlack + entities: + - uid: 5459 + components: + - pos: 67.5,41.5 + parent: 2 + type: Transform +- proto: CarpetBlue + entities: + - uid: 71 + components: + - pos: 32.5,42.5 + parent: 2 + type: Transform + - uid: 73 + components: + - pos: 34.5,40.5 + parent: 2 + type: Transform + - uid: 76 + components: + - pos: 32.5,41.5 + parent: 2 + type: Transform + - uid: 82 + components: + - pos: 32.5,40.5 + parent: 2 + type: Transform + - uid: 247 + components: + - pos: 34.5,42.5 + parent: 2 + type: Transform + - uid: 248 + components: + - pos: 34.5,41.5 + parent: 2 + type: Transform + - uid: 249 + components: + - pos: 33.5,42.5 + parent: 2 + type: Transform + - uid: 5455 + components: + - pos: 67.5,38.5 + parent: 2 + type: Transform + - uid: 5456 + components: + - pos: 67.5,37.5 + parent: 2 + type: Transform + - uid: 9565 + components: + - pos: 33.5,41.5 + parent: 2 + type: Transform + - uid: 9574 + components: + - pos: 33.5,40.5 + parent: 2 + type: Transform +- proto: CarpetChapel + entities: + - uid: 8377 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,9.5 + parent: 2 + type: Transform + - uid: 8378 + components: + - pos: 37.5,8.5 + parent: 2 + type: Transform + - uid: 8379 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,8.5 + parent: 2 + type: Transform + - uid: 8380 + components: + - rot: 3.141592653589793 rad + pos: 36.5,9.5 + parent: 2 + type: Transform + - uid: 8381 + components: + - rot: 3.141592653589793 rad + pos: 38.5,9.5 + parent: 2 + type: Transform + - uid: 8382 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,8.5 + parent: 2 + type: Transform + - uid: 8390 + components: + - rot: 3.141592653589793 rad + pos: 38.5,6.5 + parent: 2 + type: Transform + - uid: 8656 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,6.5 + parent: 2 + type: Transform + - uid: 8657 + components: + - pos: 37.5,5.5 + parent: 2 + type: Transform + - uid: 8767 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,5.5 + parent: 2 + type: Transform + - uid: 8831 + components: + - rot: 3.141592653589793 rad + pos: 36.5,6.5 + parent: 2 + type: Transform + - uid: 8841 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,5.5 + parent: 2 + type: Transform + - uid: 8888 + components: + - rot: 3.141592653589793 rad + pos: 34.5,6.5 + parent: 2 + type: Transform + - uid: 9136 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,5.5 + parent: 2 + type: Transform + - uid: 9138 + components: + - rot: 3.141592653589793 rad + pos: 34.5,9.5 + parent: 2 + type: Transform + - uid: 9139 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,8.5 + parent: 2 + type: Transform + - uid: 9731 + components: + - pos: 30.5,4.5 + parent: 2 + type: Transform + - uid: 9732 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,5.5 + parent: 2 + type: Transform + - uid: 9733 + components: + - rot: 3.141592653589793 rad + pos: 31.5,5.5 + parent: 2 + type: Transform + - uid: 9734 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,4.5 + parent: 2 + type: Transform +- proto: CarpetGreen + entities: + - uid: 3411 + components: + - rot: 3.141592653589793 rad + pos: 67.5,27.5 + parent: 2 + type: Transform + - uid: 3445 + components: + - rot: 3.141592653589793 rad + pos: 67.5,28.5 + parent: 2 + type: Transform + - uid: 3446 + components: + - rot: 3.141592653589793 rad + pos: 67.5,29.5 + parent: 2 + type: Transform + - uid: 5463 + components: + - pos: 69.5,36.5 + parent: 2 + type: Transform + - uid: 5514 + components: + - rot: 3.141592653589793 rad + pos: 67.5,31.5 + parent: 2 + type: Transform + - uid: 5515 + components: + - rot: 3.141592653589793 rad + pos: 67.5,32.5 + parent: 2 + type: Transform + - uid: 5516 + components: + - rot: 3.141592653589793 rad + pos: 67.5,33.5 + parent: 2 + type: Transform + - uid: 6938 + components: + - pos: 21.5,17.5 + parent: 2 + type: Transform + - uid: 6939 + components: + - pos: 21.5,18.5 + parent: 2 + type: Transform + - uid: 6940 + components: + - pos: 22.5,17.5 + parent: 2 + type: Transform + - uid: 6941 + components: + - pos: 22.5,18.5 + parent: 2 + type: Transform + - uid: 12679 + components: + - pos: 105.5,-13.5 + parent: 2 + type: Transform + - uid: 12680 + components: + - pos: 105.5,-12.5 + parent: 2 + type: Transform + - uid: 12681 + components: + - pos: 106.5,-13.5 + parent: 2 + type: Transform + - uid: 12682 + components: + - pos: 106.5,-12.5 + parent: 2 + type: Transform + - uid: 12683 + components: + - pos: 107.5,-13.5 + parent: 2 + type: Transform + - uid: 12684 + components: + - pos: 107.5,-12.5 + parent: 2 + type: Transform +- proto: CarpetOrange + entities: + - uid: 5495 + components: + - pos: 70.5,34.5 + parent: 2 + type: Transform + - uid: 5496 + components: + - pos: 70.5,33.5 + parent: 2 + type: Transform + - uid: 5497 + components: + - pos: 70.5,32.5 + parent: 2 + type: Transform + - uid: 5498 + components: + - pos: 70.5,27.5 + parent: 2 + type: Transform + - uid: 5499 + components: + - pos: 70.5,28.5 + parent: 2 + type: Transform + - uid: 5500 + components: + - pos: 70.5,29.5 + parent: 2 + type: Transform +- proto: CarpetPink + entities: + - uid: 1240 + components: + - pos: 5.5,-13.5 + parent: 2 + type: Transform + - uid: 1244 + components: + - pos: 5.5,-12.5 + parent: 2 + type: Transform + - uid: 5457 + components: + - pos: 67.5,39.5 + parent: 2 + type: Transform + - uid: 5682 + components: + - pos: 6.5,-13.5 + parent: 2 + type: Transform + - uid: 13066 + components: + - pos: 6.5,-12.5 + parent: 2 + type: Transform + - uid: 13067 + components: + - pos: 7.5,-13.5 + parent: 2 + type: Transform + - uid: 13068 + components: + - pos: 7.5,-12.5 + parent: 2 + type: Transform + - uid: 13069 + components: + - pos: 4.5,-13.5 + parent: 2 + type: Transform + - uid: 13070 + components: + - pos: 4.5,-12.5 + parent: 2 + type: Transform +- proto: CarpetPurple + entities: + - uid: 5454 + components: + - pos: 67.5,36.5 + parent: 2 + type: Transform +- proto: CarpetSBlue + entities: + - uid: 5458 + components: + - pos: 67.5,40.5 + parent: 2 + type: Transform + - uid: 5462 + components: + - pos: 69.5,39.5 + parent: 2 + type: Transform + - uid: 10284 + components: + - pos: 18.5,-3.5 + parent: 2 + type: Transform + - uid: 10285 + components: + - pos: 18.5,-2.5 + parent: 2 + type: Transform + - uid: 10286 + components: + - pos: 19.5,-3.5 + parent: 2 + type: Transform + - uid: 10287 + components: + - pos: 19.5,-2.5 + parent: 2 + type: Transform + - uid: 10288 + components: + - pos: 20.5,-3.5 + parent: 2 + type: Transform + - uid: 10289 + components: + - pos: 20.5,-2.5 + parent: 2 + type: Transform +- proto: Catwalk + entities: + - uid: 592 + components: + - pos: 14.5,-21.5 + parent: 2 + type: Transform + - uid: 593 + components: + - pos: 13.5,-21.5 + parent: 2 + type: Transform + - uid: 594 + components: + - pos: 4.5,-31.5 + parent: 2 + type: Transform + - uid: 595 + components: + - pos: 4.5,-32.5 + parent: 2 + type: Transform + - uid: 777 + components: + - pos: 43.5,-33.5 + parent: 2 + type: Transform + - uid: 946 + components: + - pos: 43.5,-24.5 + parent: 2 + type: Transform + - uid: 1006 + components: + - pos: 43.5,-31.5 + parent: 2 + type: Transform + - uid: 1007 + components: + - pos: 43.5,-32.5 + parent: 2 + type: Transform + - uid: 1008 + components: + - pos: 43.5,-29.5 + parent: 2 + type: Transform + - uid: 1009 + components: + - pos: 43.5,-28.5 + parent: 2 + type: Transform + - uid: 1010 + components: + - pos: 43.5,-25.5 + parent: 2 + type: Transform + - uid: 1011 + components: + - pos: 43.5,-26.5 + parent: 2 + type: Transform + - uid: 1012 + components: + - pos: 43.5,-27.5 + parent: 2 + type: Transform + - uid: 1013 + components: + - pos: 43.5,-30.5 + parent: 2 + type: Transform + - uid: 1014 + components: + - pos: 43.5,-23.5 + parent: 2 + type: Transform + - uid: 1374 + components: + - pos: -1.5,-35.5 + parent: 2 + type: Transform + - uid: 1375 + components: + - pos: -2.5,-35.5 + parent: 2 + type: Transform + - uid: 1376 + components: + - pos: -3.5,-35.5 + parent: 2 + type: Transform + - uid: 1377 + components: + - pos: -4.5,-35.5 + parent: 2 + type: Transform + - uid: 1378 + components: + - pos: -4.5,-34.5 + parent: 2 + type: Transform + - uid: 1379 + components: + - pos: -4.5,-33.5 + parent: 2 + type: Transform + - uid: 1380 + components: + - pos: -4.5,-32.5 + parent: 2 + type: Transform + - uid: 1381 + components: + - pos: -4.5,-31.5 + parent: 2 + type: Transform + - uid: 1382 + components: + - pos: -4.5,-36.5 + parent: 2 + type: Transform + - uid: 1383 + components: + - pos: -4.5,-37.5 + parent: 2 + type: Transform + - uid: 1384 + components: + - pos: -4.5,-38.5 + parent: 2 + type: Transform + - uid: 1385 + components: + - pos: -4.5,-39.5 + parent: 2 + type: Transform + - uid: 1398 + components: + - pos: -5.5,-35.5 + parent: 2 + type: Transform + - uid: 1399 + components: + - pos: -6.5,-35.5 + parent: 2 + type: Transform + - uid: 1400 + components: + - pos: -7.5,-35.5 + parent: 2 + type: Transform + - uid: 1401 + components: + - pos: -8.5,-35.5 + parent: 2 + type: Transform + - uid: 1402 + components: + - pos: -8.5,-36.5 + parent: 2 + type: Transform + - uid: 1403 + components: + - pos: -8.5,-37.5 + parent: 2 + type: Transform + - uid: 1404 + components: + - pos: -8.5,-38.5 + parent: 2 + type: Transform + - uid: 1405 + components: + - pos: -8.5,-39.5 + parent: 2 + type: Transform + - uid: 1406 + components: + - pos: -8.5,-40.5 + parent: 2 + type: Transform + - uid: 1407 + components: + - pos: -8.5,-34.5 + parent: 2 + type: Transform + - uid: 1408 + components: + - pos: -8.5,-33.5 + parent: 2 + type: Transform + - uid: 1409 + components: + - pos: -8.5,-32.5 + parent: 2 + type: Transform + - uid: 1410 + components: + - pos: -8.5,-31.5 + parent: 2 + type: Transform + - uid: 1411 + components: + - pos: -8.5,-30.5 + parent: 2 + type: Transform + - uid: 1428 + components: + - pos: -9.5,-35.5 + parent: 2 + type: Transform + - uid: 1429 + components: + - pos: -10.5,-35.5 + parent: 2 + type: Transform + - uid: 1430 + components: + - pos: -11.5,-35.5 + parent: 2 + type: Transform + - uid: 1431 + components: + - pos: -12.5,-35.5 + parent: 2 + type: Transform + - uid: 1432 + components: + - pos: -12.5,-34.5 + parent: 2 + type: Transform + - uid: 1433 + components: + - pos: -12.5,-33.5 + parent: 2 + type: Transform + - uid: 1434 + components: + - pos: -12.5,-32.5 + parent: 2 + type: Transform + - uid: 1435 + components: + - pos: -12.5,-31.5 + parent: 2 + type: Transform + - uid: 1436 + components: + - pos: -12.5,-36.5 + parent: 2 + type: Transform + - uid: 1437 + components: + - pos: -12.5,-37.5 + parent: 2 + type: Transform + - uid: 1438 + components: + - pos: -12.5,-38.5 + parent: 2 + type: Transform + - uid: 1439 + components: + - pos: -12.5,-39.5 + parent: 2 + type: Transform + - uid: 1440 + components: + - pos: -13.5,-35.5 + parent: 2 + type: Transform + - uid: 1441 + components: + - pos: -14.5,-35.5 + parent: 2 + type: Transform + - uid: 1442 + components: + - pos: -15.5,-35.5 + parent: 2 + type: Transform + - uid: 1468 + components: + - pos: 21.5,-40.5 + parent: 2 + type: Transform + - uid: 1472 + components: + - pos: 43.5,-34.5 + parent: 2 + type: Transform + - uid: 1474 + components: + - pos: 13.5,-38.5 + parent: 2 + type: Transform + - uid: 1475 + components: + - pos: 12.5,-38.5 + parent: 2 + type: Transform + - uid: 1476 + components: + - pos: 11.5,-38.5 + parent: 2 + type: Transform + - uid: 1477 + components: + - pos: 10.5,-38.5 + parent: 2 + type: Transform + - uid: 1478 + components: + - pos: 9.5,-38.5 + parent: 2 + type: Transform + - uid: 1479 + components: + - pos: 8.5,-38.5 + parent: 2 + type: Transform + - uid: 1486 + components: + - pos: 21.5,-21.5 + parent: 2 + type: Transform + - uid: 1492 + components: + - pos: 19.5,-21.5 + parent: 2 + type: Transform + - uid: 1493 + components: + - pos: 20.5,-21.5 + parent: 2 + type: Transform + - uid: 1519 + components: + - pos: 18.5,-21.5 + parent: 2 + type: Transform + - uid: 1585 + components: + - pos: 22.5,-21.5 + parent: 2 + type: Transform + - uid: 1780 + components: + - pos: 23.5,-21.5 + parent: 2 + type: Transform + - uid: 2297 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,34.5 + parent: 2 + type: Transform + - uid: 2298 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,33.5 + parent: 2 + type: Transform + - uid: 2299 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,32.5 + parent: 2 + type: Transform + - uid: 3807 + components: + - pos: 79.5,-9.5 + parent: 2 + type: Transform + - uid: 3904 + components: + - pos: 75.5,45.5 + parent: 2 + type: Transform + - uid: 3905 + components: + - pos: 76.5,45.5 + parent: 2 + type: Transform + - uid: 3906 + components: + - pos: 77.5,45.5 + parent: 2 + type: Transform + - uid: 3907 + components: + - pos: 78.5,45.5 + parent: 2 + type: Transform + - uid: 3908 + components: + - pos: 78.5,46.5 + parent: 2 + type: Transform + - uid: 3909 + components: + - pos: 78.5,47.5 + parent: 2 + type: Transform + - uid: 3910 + components: + - pos: 78.5,48.5 + parent: 2 + type: Transform + - uid: 3911 + components: + - pos: 78.5,49.5 + parent: 2 + type: Transform + - uid: 3912 + components: + - pos: 78.5,44.5 + parent: 2 + type: Transform + - uid: 3913 + components: + - pos: 78.5,43.5 + parent: 2 + type: Transform + - uid: 3914 + components: + - pos: 78.5,42.5 + parent: 2 + type: Transform + - uid: 3915 + components: + - pos: 78.5,41.5 + parent: 2 + type: Transform + - uid: 3916 + components: + - pos: 79.5,45.5 + parent: 2 + type: Transform + - uid: 3917 + components: + - pos: 80.5,45.5 + parent: 2 + type: Transform + - uid: 3918 + components: + - pos: 81.5,45.5 + parent: 2 + type: Transform + - uid: 3919 + components: + - pos: 82.5,45.5 + parent: 2 + type: Transform + - uid: 3920 + components: + - pos: 82.5,46.5 + parent: 2 + type: Transform + - uid: 3921 + components: + - pos: 82.5,47.5 + parent: 2 + type: Transform + - uid: 3922 + components: + - pos: 82.5,48.5 + parent: 2 + type: Transform + - uid: 3923 + components: + - pos: 82.5,40.5 + parent: 2 + type: Transform + - uid: 3924 + components: + - pos: 82.5,49.5 + parent: 2 + type: Transform + - uid: 3925 + components: + - pos: 82.5,50.5 + parent: 2 + type: Transform + - uid: 3926 + components: + - pos: 82.5,41.5 + parent: 2 + type: Transform + - uid: 3927 + components: + - pos: 82.5,42.5 + parent: 2 + type: Transform + - uid: 3928 + components: + - pos: 82.5,43.5 + parent: 2 + type: Transform + - uid: 3929 + components: + - pos: 82.5,44.5 + parent: 2 + type: Transform + - uid: 3930 + components: + - pos: 83.5,45.5 + parent: 2 + type: Transform + - uid: 3931 + components: + - pos: 84.5,45.5 + parent: 2 + type: Transform + - uid: 3932 + components: + - pos: 85.5,45.5 + parent: 2 + type: Transform + - uid: 3933 + components: + - pos: 86.5,45.5 + parent: 2 + type: Transform + - uid: 3934 + components: + - pos: 86.5,44.5 + parent: 2 + type: Transform + - uid: 3935 + components: + - pos: 86.5,43.5 + parent: 2 + type: Transform + - uid: 3936 + components: + - pos: 86.5,42.5 + parent: 2 + type: Transform + - uid: 3937 + components: + - pos: 86.5,41.5 + parent: 2 + type: Transform + - uid: 3938 + components: + - pos: 86.5,46.5 + parent: 2 + type: Transform + - uid: 3939 + components: + - pos: 86.5,47.5 + parent: 2 + type: Transform + - uid: 3940 + components: + - pos: 86.5,48.5 + parent: 2 + type: Transform + - uid: 3941 + components: + - pos: 86.5,49.5 + parent: 2 + type: Transform + - uid: 3942 + components: + - pos: 87.5,45.5 + parent: 2 + type: Transform + - uid: 3943 + components: + - pos: 88.5,45.5 + parent: 2 + type: Transform + - uid: 3944 + components: + - pos: 89.5,45.5 + parent: 2 + type: Transform + - uid: 4440 + components: + - pos: 4.5,-30.5 + parent: 2 + type: Transform + - uid: 4441 + components: + - pos: 5.5,-30.5 + parent: 2 + type: Transform + - uid: 4453 + components: + - pos: 10.5,-23.5 + parent: 2 + type: Transform + - uid: 4454 + components: + - pos: 11.5,-23.5 + parent: 2 + type: Transform + - uid: 4776 + components: + - pos: 30.5,-43.5 + parent: 2 + type: Transform + - uid: 4777 + components: + - pos: 30.5,-42.5 + parent: 2 + type: Transform + - uid: 4778 + components: + - pos: 30.5,-41.5 + parent: 2 + type: Transform + - uid: 4779 + components: + - pos: 30.5,-40.5 + parent: 2 + type: Transform + - uid: 4780 + components: + - pos: 30.5,-39.5 + parent: 2 + type: Transform + - uid: 4782 + components: + - pos: 21.5,-39.5 + parent: 2 + type: Transform + - uid: 4799 + components: + - pos: 21.5,-41.5 + parent: 2 + type: Transform + - uid: 4986 + components: + - pos: 51.5,6.5 + parent: 2 + type: Transform + - uid: 5082 + components: + - pos: 53.5,6.5 + parent: 2 + type: Transform + - uid: 5145 + components: + - pos: 46.5,6.5 + parent: 2 + type: Transform + - uid: 5613 + components: + - pos: 35.5,-40.5 + parent: 2 + type: Transform + - uid: 5614 + components: + - pos: 35.5,-39.5 + parent: 2 + type: Transform + - uid: 5615 + components: + - pos: 34.5,-39.5 + parent: 2 + type: Transform + - uid: 5616 + components: + - pos: 36.5,-39.5 + parent: 2 + type: Transform + - uid: 5623 + components: + - pos: 11.5,-26.5 + parent: 2 + type: Transform + - uid: 5624 + components: + - pos: 10.5,-26.5 + parent: 2 + type: Transform + - uid: 5860 + components: + - pos: 16.5,-21.5 + parent: 2 + type: Transform + - uid: 5870 + components: + - pos: 15.5,-21.5 + parent: 2 + type: Transform + - uid: 5871 + components: + - pos: 17.5,-21.5 + parent: 2 + type: Transform + - uid: 5914 + components: + - pos: 32.5,-19.5 + parent: 2 + type: Transform + - uid: 5915 + components: + - pos: 33.5,-19.5 + parent: 2 + type: Transform + - uid: 5916 + components: + - pos: 34.5,-19.5 + parent: 2 + type: Transform + - uid: 5917 + components: + - pos: 35.5,-19.5 + parent: 2 + type: Transform + - uid: 5918 + components: + - pos: 37.5,-19.5 + parent: 2 + type: Transform + - uid: 5919 + components: + - pos: 38.5,-19.5 + parent: 2 + type: Transform + - uid: 5920 + components: + - pos: 39.5,-19.5 + parent: 2 + type: Transform + - uid: 7007 + components: + - pos: 44.5,6.5 + parent: 2 + type: Transform + - uid: 7012 + components: + - pos: 47.5,6.5 + parent: 2 + type: Transform + - uid: 7820 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,27.5 + parent: 2 + type: Transform + - uid: 8283 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,16.5 + parent: 2 + type: Transform + - uid: 8284 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,17.5 + parent: 2 + type: Transform + - uid: 8302 + components: + - pos: 52.5,6.5 + parent: 2 + type: Transform + - uid: 8311 + components: + - pos: 50.5,6.5 + parent: 2 + type: Transform + - uid: 8312 + components: + - pos: 49.5,6.5 + parent: 2 + type: Transform + - uid: 8313 + components: + - pos: 45.5,6.5 + parent: 2 + type: Transform + - uid: 8750 + components: + - pos: 95.5,-19.5 + parent: 2 + type: Transform + - uid: 8751 + components: + - pos: 96.5,-19.5 + parent: 2 + type: Transform + - uid: 8752 + components: + - pos: 97.5,-19.5 + parent: 2 + type: Transform + - uid: 8753 + components: + - pos: 98.5,-19.5 + parent: 2 + type: Transform + - uid: 8754 + components: + - pos: 98.5,-20.5 + parent: 2 + type: Transform + - uid: 8755 + components: + - pos: 97.5,-20.5 + parent: 2 + type: Transform + - uid: 8756 + components: + - pos: 96.5,-20.5 + parent: 2 + type: Transform + - uid: 8757 + components: + - pos: 95.5,-20.5 + parent: 2 + type: Transform + - uid: 8850 + components: + - rot: -1.5707963267948966 rad + pos: 103.5,-10.5 + parent: 2 + type: Transform + - uid: 8851 + components: + - rot: -1.5707963267948966 rad + pos: 102.5,-10.5 + parent: 2 + type: Transform + - uid: 8852 + components: + - rot: -1.5707963267948966 rad + pos: 101.5,-10.5 + parent: 2 + type: Transform + - uid: 8853 + components: + - rot: -1.5707963267948966 rad + pos: 100.5,-10.5 + parent: 2 + type: Transform + - uid: 8854 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,27.5 + parent: 2 + type: Transform + - uid: 8855 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,27.5 + parent: 2 + type: Transform + - uid: 8856 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,27.5 + parent: 2 + type: Transform + - uid: 8916 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,27.5 + parent: 2 + type: Transform + - uid: 8917 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,27.5 + parent: 2 + type: Transform + - uid: 8918 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,27.5 + parent: 2 + type: Transform + - uid: 8919 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,27.5 + parent: 2 + type: Transform + - uid: 9927 + components: + - pos: 54.5,27.5 + parent: 2 + type: Transform + - uid: 9928 + components: + - pos: 58.5,27.5 + parent: 2 + type: Transform + - uid: 10711 + components: + - pos: 63.5,48.5 + parent: 2 + type: Transform + - uid: 10712 + components: + - pos: 62.5,48.5 + parent: 2 + type: Transform + - uid: 10713 + components: + - pos: 61.5,48.5 + parent: 2 + type: Transform + - uid: 10714 + components: + - pos: 60.5,48.5 + parent: 2 + type: Transform + - uid: 10715 + components: + - pos: 59.5,48.5 + parent: 2 + type: Transform + - uid: 10716 + components: + - pos: 58.5,48.5 + parent: 2 + type: Transform + - uid: 10717 + components: + - pos: 57.5,48.5 + parent: 2 + type: Transform + - uid: 10718 + components: + - pos: 56.5,48.5 + parent: 2 + type: Transform + - uid: 10719 + components: + - pos: 54.5,48.5 + parent: 2 + type: Transform + - uid: 10720 + components: + - pos: 53.5,48.5 + parent: 2 + type: Transform + - uid: 10721 + components: + - pos: 52.5,48.5 + parent: 2 + type: Transform + - uid: 10722 + components: + - pos: 51.5,48.5 + parent: 2 + type: Transform + - uid: 10723 + components: + - pos: 50.5,48.5 + parent: 2 + type: Transform + - uid: 10724 + components: + - pos: 49.5,48.5 + parent: 2 + type: Transform + - uid: 10725 + components: + - pos: 55.5,48.5 + parent: 2 + type: Transform + - uid: 10726 + components: + - pos: 43.5,41.5 + parent: 2 + type: Transform + - uid: 10727 + components: + - pos: 42.5,41.5 + parent: 2 + type: Transform + - uid: 10728 + components: + - pos: 41.5,41.5 + parent: 2 + type: Transform + - uid: 10729 + components: + - pos: 40.5,41.5 + parent: 2 + type: Transform + - uid: 10730 + components: + - pos: 67.5,10.5 + parent: 2 + type: Transform + - uid: 10731 + components: + - pos: 68.5,10.5 + parent: 2 + type: Transform + - uid: 10732 + components: + - pos: 70.5,10.5 + parent: 2 + type: Transform + - uid: 10733 + components: + - pos: 69.5,10.5 + parent: 2 + type: Transform + - uid: 10734 + components: + - pos: 71.5,10.5 + parent: 2 + type: Transform + - uid: 10736 + components: + - pos: 73.5,10.5 + parent: 2 + type: Transform + - uid: 10737 + components: + - pos: 84.5,3.5 + parent: 2 + type: Transform + - uid: 10738 + components: + - pos: 83.5,4.5 + parent: 2 + type: Transform + - uid: 10739 + components: + - pos: 84.5,2.5 + parent: 2 + type: Transform + - uid: 10740 + components: + - pos: 84.5,1.5 + parent: 2 + type: Transform + - uid: 10741 + components: + - pos: 84.5,0.5 + parent: 2 + type: Transform + - uid: 10742 + components: + - pos: 84.5,-1.5 + parent: 2 + type: Transform + - uid: 10743 + components: + - pos: 84.5,-2.5 + parent: 2 + type: Transform + - uid: 10744 + components: + - pos: 85.5,-2.5 + parent: 2 + type: Transform + - uid: 10757 + components: + - pos: 84.5,-16.5 + parent: 2 + type: Transform + - uid: 10758 + components: + - pos: 83.5,-16.5 + parent: 2 + type: Transform + - uid: 10759 + components: + - pos: 82.5,-16.5 + parent: 2 + type: Transform + - uid: 10760 + components: + - pos: 78.5,-16.5 + parent: 2 + type: Transform + - uid: 10761 + components: + - pos: 75.5,-16.5 + parent: 2 + type: Transform + - uid: 10762 + components: + - pos: 74.5,-16.5 + parent: 2 + type: Transform + - uid: 10763 + components: + - pos: 72.5,-16.5 + parent: 2 + type: Transform + - uid: 10764 + components: + - pos: 69.5,-16.5 + parent: 2 + type: Transform + - uid: 10765 + components: + - pos: 69.5,-15.5 + parent: 2 + type: Transform + - uid: 10766 + components: + - pos: 69.5,-17.5 + parent: 2 + type: Transform + - uid: 10767 + components: + - pos: 69.5,-18.5 + parent: 2 + type: Transform + - uid: 10768 + components: + - pos: 66.5,29.5 + parent: 2 + type: Transform + - uid: 10769 + components: + - pos: 67.5,46.5 + parent: 2 + type: Transform + - uid: 10770 + components: + - pos: 49.5,47.5 + parent: 2 + type: Transform + - uid: 10771 + components: + - pos: 63.5,47.5 + parent: 2 + type: Transform + - uid: 10772 + components: + - pos: 29.5,32.5 + parent: 2 + type: Transform + - uid: 10773 + components: + - pos: 30.5,32.5 + parent: 2 + type: Transform + - uid: 10774 + components: + - pos: 26.5,10.5 + parent: 2 + type: Transform + - uid: 10775 + components: + - pos: 38.5,11.5 + parent: 2 + type: Transform + - uid: 10776 + components: + - pos: 18.5,3.5 + parent: 2 + type: Transform + - uid: 10778 + components: + - pos: 15.5,7.5 + parent: 2 + type: Transform + - uid: 10779 + components: + - pos: 5.5,-28.5 + parent: 2 + type: Transform + - uid: 10780 + components: + - pos: 5.5,-25.5 + parent: 2 + type: Transform + - uid: 10781 + components: + - pos: 8.5,-24.5 + parent: 2 + type: Transform + - uid: 10782 + components: + - pos: 6.5,-24.5 + parent: 2 + type: Transform + - uid: 10815 + components: + - pos: 81.5,12.5 + parent: 2 + type: Transform + - uid: 10816 + components: + - pos: 81.5,11.5 + parent: 2 + type: Transform + - uid: 10817 + components: + - pos: 81.5,10.5 + parent: 2 + type: Transform + - uid: 10818 + components: + - pos: 81.5,9.5 + parent: 2 + type: Transform + - uid: 10819 + components: + - pos: 81.5,8.5 + parent: 2 + type: Transform + - uid: 10820 + components: + - pos: 81.5,7.5 + parent: 2 + type: Transform + - uid: 10821 + components: + - pos: 81.5,6.5 + parent: 2 + type: Transform + - uid: 10959 + components: + - pos: 15.5,-50.5 + parent: 2 + type: Transform + - uid: 10960 + components: + - pos: 16.5,-50.5 + parent: 2 + type: Transform + - uid: 10962 + components: + - pos: 16.5,-53.5 + parent: 2 + type: Transform + - uid: 10966 + components: + - pos: 15.5,-53.5 + parent: 2 + type: Transform + - uid: 10967 + components: + - pos: 17.5,-46.5 + parent: 2 + type: Transform + - uid: 10968 + components: + - pos: 21.5,-46.5 + parent: 2 + type: Transform + - uid: 10969 + components: + - pos: 25.5,-46.5 + parent: 2 + type: Transform + - uid: 10970 + components: + - pos: 27.5,-50.5 + parent: 2 + type: Transform + - uid: 10971 + components: + - pos: 26.5,-50.5 + parent: 2 + type: Transform + - uid: 10972 + components: + - pos: 27.5,-53.5 + parent: 2 + type: Transform + - uid: 10973 + components: + - pos: 26.5,-53.5 + parent: 2 + type: Transform + - uid: 10974 + components: + - pos: 24.5,-56.5 + parent: 2 + type: Transform + - uid: 10975 + components: + - pos: 21.5,-56.5 + parent: 2 + type: Transform + - uid: 10976 + components: + - pos: 17.5,-56.5 + parent: 2 + type: Transform + - uid: 10977 + components: + - pos: 16.5,-56.5 + parent: 2 + type: Transform + - uid: 10978 + components: + - pos: 16.5,-55.5 + parent: 2 + type: Transform + - uid: 10979 + components: + - pos: 16.5,-54.5 + parent: 2 + type: Transform + - uid: 10980 + components: + - pos: 16.5,-52.5 + parent: 2 + type: Transform + - uid: 10981 + components: + - pos: 16.5,-51.5 + parent: 2 + type: Transform + - uid: 10982 + components: + - pos: 16.5,-49.5 + parent: 2 + type: Transform + - uid: 10983 + components: + - pos: 16.5,-48.5 + parent: 2 + type: Transform + - uid: 10984 + components: + - pos: 16.5,-47.5 + parent: 2 + type: Transform + - uid: 10985 + components: + - pos: 16.5,-46.5 + parent: 2 + type: Transform + - uid: 10986 + components: + - pos: 18.5,-46.5 + parent: 2 + type: Transform + - uid: 10987 + components: + - pos: 19.5,-46.5 + parent: 2 + type: Transform + - uid: 10988 + components: + - pos: 20.5,-46.5 + parent: 2 + type: Transform + - uid: 10989 + components: + - pos: 22.5,-46.5 + parent: 2 + type: Transform + - uid: 10990 + components: + - pos: 23.5,-46.5 + parent: 2 + type: Transform + - uid: 10991 + components: + - pos: 24.5,-46.5 + parent: 2 + type: Transform + - uid: 10992 + components: + - pos: 26.5,-46.5 + parent: 2 + type: Transform + - uid: 10993 + components: + - pos: 26.5,-47.5 + parent: 2 + type: Transform + - uid: 10994 + components: + - pos: 26.5,-48.5 + parent: 2 + type: Transform + - uid: 10995 + components: + - pos: 26.5,-49.5 + parent: 2 + type: Transform + - uid: 10996 + components: + - pos: 26.5,-51.5 + parent: 2 + type: Transform + - uid: 10997 + components: + - pos: 26.5,-52.5 + parent: 2 + type: Transform + - uid: 10998 + components: + - pos: 26.5,-54.5 + parent: 2 + type: Transform + - uid: 10999 + components: + - pos: 26.5,-55.5 + parent: 2 + type: Transform + - uid: 11000 + components: + - pos: 26.5,-56.5 + parent: 2 + type: Transform + - uid: 11001 + components: + - pos: 25.5,-56.5 + parent: 2 + type: Transform + - uid: 11002 + components: + - pos: 23.5,-56.5 + parent: 2 + type: Transform + - uid: 11003 + components: + - pos: 22.5,-56.5 + parent: 2 + type: Transform + - uid: 11004 + components: + - pos: 20.5,-56.5 + parent: 2 + type: Transform + - uid: 11005 + components: + - pos: 19.5,-56.5 + parent: 2 + type: Transform + - uid: 11006 + components: + - pos: 18.5,-56.5 + parent: 2 + type: Transform + - uid: 11733 + components: + - pos: 46.5,36.5 + parent: 2 + type: Transform + - uid: 11734 + components: + - pos: 46.5,35.5 + parent: 2 + type: Transform + - uid: 11735 + components: + - pos: 46.5,34.5 + parent: 2 + type: Transform + - uid: 11736 + components: + - pos: 46.5,33.5 + parent: 2 + type: Transform + - uid: 11737 + components: + - pos: 46.5,32.5 + parent: 2 + type: Transform + - uid: 12308 + components: + - pos: 18.5,-7.5 + parent: 2 + type: Transform + - uid: 12309 + components: + - pos: 19.5,-7.5 + parent: 2 + type: Transform + - uid: 12310 + components: + - pos: 20.5,-7.5 + parent: 2 + type: Transform + - uid: 12311 + components: + - pos: 21.5,-7.5 + parent: 2 + type: Transform + - uid: 12312 + components: + - pos: 22.5,-6.5 + parent: 2 + type: Transform + - uid: 12313 + components: + - pos: 22.5,-5.5 + parent: 2 + type: Transform + - uid: 12321 + components: + - pos: 22.5,-4.5 + parent: 2 + type: Transform + - uid: 12322 + components: + - pos: 22.5,-3.5 + parent: 2 + type: Transform + - uid: 12323 + components: + - pos: 22.5,-2.5 + parent: 2 + type: Transform + - uid: 12325 + components: + - pos: 17.5,-10.5 + parent: 2 + type: Transform + - uid: 12326 + components: + - pos: 17.5,-9.5 + parent: 2 + type: Transform + - uid: 12328 + components: + - pos: 17.5,-8.5 + parent: 2 + type: Transform + - uid: 12329 + components: + - pos: 16.5,-11.5 + parent: 2 + type: Transform + - uid: 12330 + components: + - pos: 15.5,-11.5 + parent: 2 + type: Transform + - uid: 12331 + components: + - pos: 14.5,-11.5 + parent: 2 + type: Transform + - uid: 12332 + components: + - pos: 10.5,-14.5 + parent: 2 + type: Transform + - uid: 12336 + components: + - pos: 10.5,-15.5 + parent: 2 + type: Transform + - uid: 12337 + components: + - pos: 10.5,-16.5 + parent: 2 + type: Transform + - uid: 12338 + components: + - pos: 10.5,-17.5 + parent: 2 + type: Transform + - uid: 12339 + components: + - pos: 10.5,-18.5 + parent: 2 + type: Transform + - uid: 12340 + components: + - pos: 10.5,-19.5 + parent: 2 + type: Transform + - uid: 12341 + components: + - pos: 1.5,-10.5 + parent: 2 + type: Transform + - uid: 12342 + components: + - pos: 1.5,-11.5 + parent: 2 + type: Transform + - uid: 12343 + components: + - pos: 1.5,-12.5 + parent: 2 + type: Transform + - uid: 12344 + components: + - pos: 1.5,-13.5 + parent: 2 + type: Transform + - uid: 12345 + components: + - pos: 1.5,-8.5 + parent: 2 + type: Transform + - uid: 12346 + components: + - pos: 1.5,-7.5 + parent: 2 + type: Transform + - uid: 12347 + components: + - pos: 1.5,-6.5 + parent: 2 + type: Transform + - uid: 12348 + components: + - pos: 1.5,-5.5 + parent: 2 + type: Transform + - uid: 12349 + components: + - pos: 1.5,-4.5 + parent: 2 + type: Transform + - uid: 12350 + components: + - pos: 1.5,-3.5 + parent: 2 + type: Transform + - uid: 12388 + components: + - pos: 35.5,-16.5 + parent: 2 + type: Transform + - uid: 12389 + components: + - pos: 36.5,-16.5 + parent: 2 + type: Transform + - uid: 12390 + components: + - pos: 37.5,-16.5 + parent: 2 + type: Transform + - uid: 12393 + components: + - pos: 38.5,-16.5 + parent: 2 + type: Transform + - uid: 12397 + components: + - pos: 48.5,-18.5 + parent: 2 + type: Transform + - uid: 12398 + components: + - pos: 47.5,-18.5 + parent: 2 + type: Transform + - uid: 12399 + components: + - pos: 46.5,-18.5 + parent: 2 + type: Transform + - uid: 12400 + components: + - pos: 45.5,-18.5 + parent: 2 + type: Transform + - uid: 12401 + components: + - pos: 44.5,-18.5 + parent: 2 + type: Transform + - uid: 12403 + components: + - pos: 43.5,-18.5 + parent: 2 + type: Transform + - uid: 12404 + components: + - pos: 42.5,-18.5 + parent: 2 + type: Transform + - uid: 12405 + components: + - pos: 41.5,-18.5 + parent: 2 + type: Transform + - uid: 12844 + components: + - pos: 22.5,5.5 + parent: 2 + type: Transform + - uid: 12845 + components: + - pos: 22.5,6.5 + parent: 2 + type: Transform + - uid: 12846 + components: + - pos: 22.5,7.5 + parent: 2 + type: Transform + - uid: 13005 + components: + - pos: 31.5,-50.5 + parent: 2 + type: Transform + - uid: 13006 + components: + - pos: 32.5,-50.5 + parent: 2 + type: Transform + - uid: 13007 + components: + - pos: 33.5,-50.5 + parent: 2 + type: Transform + - uid: 13008 + components: + - pos: 34.5,-50.5 + parent: 2 + type: Transform + - uid: 13009 + components: + - pos: 35.5,-50.5 + parent: 2 + type: Transform + - uid: 13010 + components: + - pos: 36.5,-50.5 + parent: 2 + type: Transform + - uid: 13011 + components: + - pos: 37.5,-50.5 + parent: 2 + type: Transform + - uid: 13012 + components: + - pos: 38.5,-50.5 + parent: 2 + type: Transform + - uid: 13013 + components: + - pos: 39.5,-50.5 + parent: 2 + type: Transform + - uid: 13014 + components: + - pos: 40.5,-50.5 + parent: 2 + type: Transform + - uid: 13015 + components: + - pos: 41.5,-50.5 + parent: 2 + type: Transform + - uid: 13016 + components: + - pos: 42.5,-50.5 + parent: 2 + type: Transform + - uid: 13017 + components: + - pos: 43.5,-50.5 + parent: 2 + type: Transform + - uid: 13018 + components: + - pos: 44.5,-50.5 + parent: 2 + type: Transform + - uid: 13019 + components: + - pos: 45.5,-50.5 + parent: 2 + type: Transform + - uid: 13020 + components: + - pos: 46.5,-50.5 + parent: 2 + type: Transform + - uid: 13021 + components: + - pos: 47.5,-50.5 + parent: 2 + type: Transform + - uid: 13022 + components: + - pos: 48.5,-50.5 + parent: 2 + type: Transform + - uid: 13023 + components: + - pos: 49.5,-50.5 + parent: 2 + type: Transform + - uid: 13024 + components: + - pos: 50.5,-50.5 + parent: 2 + type: Transform + - uid: 13025 + components: + - pos: 51.5,-50.5 + parent: 2 + type: Transform + - uid: 13026 + components: + - pos: 51.5,-49.5 + parent: 2 + type: Transform + - uid: 13027 + components: + - pos: 51.5,-48.5 + parent: 2 + type: Transform + - uid: 13028 + components: + - pos: 51.5,-47.5 + parent: 2 + type: Transform + - uid: 13029 + components: + - pos: 51.5,-46.5 + parent: 2 + type: Transform + - uid: 13030 + components: + - pos: 51.5,-45.5 + parent: 2 + type: Transform + - uid: 13031 + components: + - pos: 51.5,-44.5 + parent: 2 + type: Transform + - uid: 13032 + components: + - pos: 51.5,-43.5 + parent: 2 + type: Transform + - uid: 13033 + components: + - pos: 51.5,-42.5 + parent: 2 + type: Transform + - uid: 13034 + components: + - pos: 50.5,-42.5 + parent: 2 + type: Transform + - uid: 13035 + components: + - pos: 49.5,-42.5 + parent: 2 + type: Transform + - uid: 13036 + components: + - pos: 48.5,-42.5 + parent: 2 + type: Transform + - uid: 13037 + components: + - pos: 48.5,-41.5 + parent: 2 + type: Transform + - uid: 13038 + components: + - pos: 48.5,-40.5 + parent: 2 + type: Transform + - uid: 13039 + components: + - pos: 48.5,-39.5 + parent: 2 + type: Transform + - uid: 13040 + components: + - pos: 48.5,-38.5 + parent: 2 + type: Transform + - uid: 13041 + components: + - pos: 48.5,-37.5 + parent: 2 + type: Transform + - uid: 13042 + components: + - pos: 48.5,-36.5 + parent: 2 + type: Transform +- proto: Cautery + entities: + - uid: 7791 + components: + - pos: 67.45054,-3.640809 + parent: 2 + type: Transform +- proto: Chair + entities: + - uid: 38 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-5.5 + parent: 2 + type: Transform + - uid: 56 + components: + - pos: -2.5,-8.5 + parent: 2 + type: Transform + - uid: 84 + components: + - pos: -8.5,-12.5 + parent: 2 + type: Transform + - uid: 85 + components: + - pos: -9.5,-12.5 + parent: 2 + type: Transform + - uid: 88 + components: + - pos: -15.5,-12.5 + parent: 2 + type: Transform + - uid: 790 + components: + - pos: 19.5,-25.5 + parent: 2 + type: Transform + - uid: 791 + components: + - pos: 18.5,-25.5 + parent: 2 + type: Transform + - uid: 792 + components: + - pos: 17.5,-25.5 + parent: 2 + type: Transform + - uid: 793 + components: + - pos: 16.5,-25.5 + parent: 2 + type: Transform + - uid: 794 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-27.5 + parent: 2 + type: Transform + - uid: 795 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-27.5 + parent: 2 + type: Transform + - uid: 796 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-27.5 + parent: 2 + type: Transform + - uid: 797 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-27.5 + parent: 2 + type: Transform + - uid: 939 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-34.5 + parent: 2 + type: Transform + - uid: 1147 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-4.5 + parent: 2 + type: Transform + - uid: 1554 + components: + - pos: 54.5,15.5 + parent: 2 + type: Transform + - uid: 1634 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-4.5 + parent: 2 + type: Transform + - uid: 1655 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-5.5 + parent: 2 + type: Transform + - uid: 1833 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,6.5 + parent: 2 + type: Transform + - uid: 1843 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,7.5 + parent: 2 + type: Transform + - uid: 1851 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,8.5 + parent: 2 + type: Transform + - uid: 1946 + components: + - pos: -16.5,-12.5 + parent: 2 + type: Transform + - uid: 2409 + components: + - rot: 3.141592653589793 rad + pos: 44.5,22.5 + parent: 2 + type: Transform + - uid: 2493 + components: + - pos: 30.5,30.5 + parent: 2 + type: Transform + - uid: 2494 + components: + - rot: 3.141592653589793 rad + pos: 30.5,28.5 + parent: 2 + type: Transform + - uid: 5089 + components: + - pos: 64.5,-1.5 + parent: 2 + type: Transform + - uid: 5090 + components: + - pos: 65.5,-1.5 + parent: 2 + type: Transform + - uid: 5091 + components: + - pos: 66.5,-1.5 + parent: 2 + type: Transform + - uid: 5151 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,2.5 + parent: 2 + type: Transform + - uid: 5173 + components: + - pos: 55.5,15.5 + parent: 2 + type: Transform + - uid: 5256 + components: + - pos: 55.5,-9.5 + parent: 2 + type: Transform + - uid: 5388 + components: + - rot: 3.141592653589793 rad + pos: 47.5,11.5 + parent: 2 + type: Transform + - uid: 5406 + components: + - pos: 67.5,-1.5 + parent: 2 + type: Transform + - uid: 5524 + components: + - rot: 1.5707963267948966 rad + pos: 89.5,0.5 + parent: 2 + type: Transform + - uid: 5525 + components: + - rot: 1.5707963267948966 rad + pos: 89.5,1.5 + parent: 2 + type: Transform + - uid: 5848 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,18.5 + parent: 2 + type: Transform + - uid: 5849 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,17.5 + parent: 2 + type: Transform + - uid: 7546 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,2.5 + parent: 2 + type: Transform + - uid: 7713 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-13.5 + parent: 2 + type: Transform + - uid: 7729 + components: + - pos: -3.5,-8.5 + parent: 2 + type: Transform + - uid: 7976 + components: + - pos: -3.5,-3.5 + parent: 2 + type: Transform + - uid: 7986 + components: + - pos: -0.5,0.5 + parent: 2 + type: Transform + - uid: 7987 + components: + - pos: 0.5,0.5 + parent: 2 + type: Transform + - uid: 7988 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,2.5 + parent: 2 + type: Transform + - uid: 7989 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,3.5 + parent: 2 + type: Transform + - uid: 7990 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,4.5 + parent: 2 + type: Transform + - uid: 7991 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,10.5 + parent: 2 + type: Transform + - uid: 7992 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,11.5 + parent: 2 + type: Transform + - uid: 7993 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,12.5 + parent: 2 + type: Transform + - uid: 7994 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 2 + type: Transform + - uid: 7995 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,4.5 + parent: 2 + type: Transform + - uid: 7996 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,5.5 + parent: 2 + type: Transform + - uid: 9361 + components: + - pos: 25.5,7.5 + parent: 2 + type: Transform + - uid: 10637 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,7.5 + parent: 2 + type: Transform + - uid: 10829 + components: + - pos: 71.5,11.5 + parent: 2 + type: Transform + - uid: 10830 + components: + - pos: 69.5,11.5 + parent: 2 + type: Transform + - uid: 10896 + components: + - rot: -1.5707963267948966 rad + pos: 64.5,14.5 + parent: 2 + type: Transform + - uid: 10897 + components: + - rot: 3.141592653589793 rad + pos: 63.5,13.5 + parent: 2 + type: Transform + - uid: 12177 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,9.5 + parent: 2 + type: Transform + - uid: 12178 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,9.5 + parent: 2 + type: Transform + - uid: 12179 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,8.5 + parent: 2 + type: Transform + - uid: 12180 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,8.5 + parent: 2 + type: Transform + - uid: 12181 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,5.5 + parent: 2 + type: Transform + - uid: 12182 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,5.5 + parent: 2 + type: Transform + - uid: 12183 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,6.5 + parent: 2 + type: Transform + - uid: 12184 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,6.5 + parent: 2 + type: Transform +- proto: ChairMeat + entities: + - uid: 13071 + components: + - pos: 6.5,-12.5 + parent: 2 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 190 + components: + - pos: -2.5,-11.5 + parent: 2 + type: Transform + - uid: 311 + components: + - pos: 11.5,5.5 + parent: 2 + type: Transform + - uid: 313 + components: + - pos: 10.5,5.5 + parent: 2 + type: Transform + - uid: 314 + components: + - rot: 3.141592653589793 rad + pos: 10.5,3.5 + parent: 2 + type: Transform + - uid: 579 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-3.5 + parent: 2 + type: Transform + - uid: 683 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-16.5 + parent: 2 + type: Transform + - uid: 684 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-18.5 + parent: 2 + type: Transform + - uid: 804 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-24.5 + parent: 2 + type: Transform + - uid: 1852 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,22.5 + parent: 2 + type: Transform + - uid: 2480 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,19.5 + parent: 2 + type: Transform + - uid: 2489 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,27.5 + parent: 2 + type: Transform + - uid: 2724 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,33.5 + parent: 2 + type: Transform + - uid: 2725 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,32.5 + parent: 2 + type: Transform + - uid: 2726 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,30.5 + parent: 2 + type: Transform + - uid: 2727 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,29.5 + parent: 2 + type: Transform + - uid: 4999 + components: + - rot: 3.141592653589793 rad + pos: 34.5,45.5 + parent: 2 + type: Transform + - uid: 5000 + components: + - rot: 3.141592653589793 rad + pos: 31.5,47.5 + parent: 2 + type: Transform + - uid: 5001 + components: + - rot: 3.141592653589793 rad + pos: 23.5,47.5 + parent: 2 + type: Transform + - uid: 5002 + components: + - rot: 3.141592653589793 rad + pos: 20.5,45.5 + parent: 2 + type: Transform + - uid: 5159 + components: + - rot: 3.141592653589793 rad + pos: 55.5,-11.5 + parent: 2 + type: Transform + - uid: 5321 + components: + - rot: -1.5707963267948966 rad + pos: 49.5,18.5 + parent: 2 + type: Transform + - uid: 5389 + components: + - rot: 3.141592653589793 rad + pos: 50.5,10.5 + parent: 2 + type: Transform + - uid: 5742 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-10.5 + parent: 2 + type: Transform + - uid: 7468 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 2 + type: Transform + - uid: 7710 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,24.5 + parent: 2 + type: Transform + - uid: 7792 + components: + - rot: -1.5707963267948966 rad + pos: 70.5,14.5 + parent: 2 + type: Transform + - uid: 8253 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,25.5 + parent: 2 + type: Transform + - uid: 8608 + components: + - rot: 3.141592653589793 rad + pos: 30.500034,25.750826 + parent: 2 + type: Transform + - uid: 8658 + components: + - pos: 50.5,2.5 + parent: 2 + type: Transform + - uid: 10912 + components: + - pos: 74.5,-1.5 + parent: 2 + type: Transform + - uid: 12150 + components: + - rot: 3.141592653589793 rad + pos: 12.5,30.5 + parent: 2 + type: Transform +- proto: ChairOfficeLight + entities: + - uid: 940 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-34.5 + parent: 2 + type: Transform + - uid: 5068 + components: + - rot: 3.141592653589793 rad + pos: 50.5,-4.5 + parent: 2 + type: Transform + - uid: 5069 + components: + - rot: 1.5707963267948966 rad + pos: 53.5,-4.5 + parent: 2 + type: Transform + - uid: 5227 + components: + - rot: 1.5707963267948966 rad + pos: 81.5,-6.5 + parent: 2 + type: Transform + - uid: 7075 + components: + - pos: 44.5,3.5 + parent: 2 + type: Transform + - uid: 7859 + components: + - pos: 71.5,-19.495005 + parent: 2 + type: Transform + - uid: 8664 + components: + - rot: 3.141592653589793 rad + pos: 64.5,24.5 + parent: 2 + type: Transform + - uid: 10670 + components: + - pos: 62.5,9.5 + parent: 2 + type: Transform + - uid: 10901 + components: + - pos: 79.5,-6.5 + parent: 2 + type: Transform + - uid: 11293 + components: + - rot: 1.5707963267948966 rad + pos: 61.5,-11.5 + parent: 2 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 4971 + components: + - rot: 3.141592653589793 rad + pos: 27.5,47.5 + parent: 2 + type: Transform +- proto: ChairWood + entities: + - uid: 1155 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-10.5 + parent: 2 + type: Transform + - uid: 1166 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-12.5 + parent: 2 + type: Transform + - uid: 1167 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-11.5 + parent: 2 + type: Transform + - uid: 1168 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-10.5 + parent: 2 + type: Transform + - uid: 2689 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,33.5 + parent: 2 + type: Transform + - uid: 2690 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,33.5 + parent: 2 + type: Transform + - uid: 2691 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,32.5 + parent: 2 + type: Transform + - uid: 2692 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,32.5 + parent: 2 + type: Transform + - uid: 2693 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,30.5 + parent: 2 + type: Transform + - uid: 2694 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,29.5 + parent: 2 + type: Transform + - uid: 2695 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,29.5 + parent: 2 + type: Transform + - uid: 2696 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,30.5 + parent: 2 + type: Transform + - uid: 2728 + components: + - pos: 19.5,33.56914 + parent: 2 + type: Transform + - uid: 5502 + components: + - rot: 1.5707963267948966 rad + pos: 69.50498,33.5 + parent: 2 + type: Transform + - uid: 5503 + components: + - rot: -1.5707963267948966 rad + pos: 71.49502,33.5 + parent: 2 + type: Transform + - uid: 5504 + components: + - pos: 70.5,34.495007 + parent: 2 + type: Transform + - uid: 5511 + components: + - rot: 1.5707963267948966 rad + pos: 69.50498,29.5 + parent: 2 + type: Transform + - uid: 5512 + components: + - rot: 1.5707963267948966 rad + pos: 69.50498,27.5 + parent: 2 + type: Transform + - uid: 5513 + components: + - rot: -1.5707963267948966 rad + pos: 71.49502,28.5 + parent: 2 + type: Transform + - uid: 6477 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-9.5 + parent: 2 + type: Transform + - uid: 6478 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-9.5 + parent: 2 + type: Transform + - uid: 6497 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-11.5 + parent: 2 + type: Transform + - uid: 6504 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-12.5 + parent: 2 + type: Transform + - uid: 6943 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,18.5 + parent: 2 + type: Transform + - uid: 8644 + components: + - pos: 84.5,12.495002 + parent: 2 + type: Transform + - uid: 8645 + components: + - pos: 85.5,12.495002 + parent: 2 + type: Transform + - uid: 12710 + components: + - pos: 114.5,-16.5 + parent: 2 + type: Transform +- proto: CheapLighter + entities: + - uid: 6631 + components: + - pos: 37.66267,-3.4032297 + parent: 2 + type: Transform + - uid: 7717 + components: + - pos: 43.77102,20.318724 + parent: 2 + type: Transform +- proto: CheapRollerBed + entities: + - uid: 8145 + components: + - pos: 58.484226,3.6459913 + parent: 2 + type: Transform + - uid: 8232 + components: + - pos: 57.484226,3.6453457 + parent: 2 + type: Transform + - uid: 8234 + components: + - pos: 55.484226,3.6458454 + parent: 2 + type: Transform + - uid: 8299 + components: + - pos: 54.49985,3.645617 + parent: 2 + type: Transform +- proto: CheapRollerBedSpawnFolded + entities: + - uid: 11921 + components: + - pos: 70.44693,7.937353 + parent: 2 + type: Transform +- proto: chem_master + entities: + - uid: 5052 + components: + - pos: 49.5,-4.5 + parent: 2 + type: Transform + - containers: + ChemMaster-reagentContainerContainer: !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: [] + ChemMaster-beaker: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + beakerSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + outputSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 5053 + components: + - pos: 52.5,-3.5 + parent: 2 + type: Transform + - containers: + ChemMaster-reagentContainerContainer: !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: [] + ChemMaster-beaker: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + beakerSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + outputSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: ChemDispenser + entities: + - uid: 5050 + components: + - pos: 49.5,-5.5 + parent: 2 + type: Transform + - containers: + ReagentDispenser-reagentContainerContainer: !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: [] + ReagentDispenser-beaker: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + beakerSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 5051 + components: + - pos: 53.5,-3.5 + parent: 2 + type: Transform + - containers: + ReagentDispenser-reagentContainerContainer: !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: [] + ReagentDispenser-beaker: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + beakerSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: ChemDispenserMachineCircuitboard + entities: + - uid: 12367 + components: + - pos: 36.544582,-17.485641 + parent: 2 + type: Transform +- proto: ChemistryHotplate + entities: + - uid: 11028 + components: + - pos: 51.5,-7.5 + parent: 2 + type: Transform +- proto: ChurchOrganInstrument + entities: + - uid: 8921 + components: + - pos: 35.5,5.5 + parent: 2 + type: Transform +- proto: CigarGold + entities: + - uid: 7936 + components: + - pos: 43.474144,20.053099 + parent: 2 + type: Transform + - uid: 12104 + components: + - pos: 17.464012,39.620396 + parent: 2 + type: Transform + - uid: 12105 + components: + - pos: 17.604637,39.60477 + parent: 2 + type: Transform +- proto: CigPackGreen + entities: + - uid: 5523 + components: + - pos: 87.481125,1.4149053 + parent: 2 + type: Transform + - uid: 9307 + components: + - pos: 69.531136,11.469878 + parent: 2 + type: Transform +- proto: CircuitImprinter + entities: + - uid: 12155 + components: + - pos: 53.5,17.5 + parent: 2 + type: Transform + - materialWhiteList: + - Steel + - Glass + - Gold + type: MaterialStorage +- proto: ClosetBase + entities: + - uid: 5460 + components: + - pos: 69.5,40.5 + parent: 2 + type: Transform + - uid: 5461 + components: + - pos: 69.5,37.5 + parent: 2 + type: Transform +- proto: ClosetBombFilled + entities: + - uid: 12854 + components: + - pos: 55.5,25.5 + parent: 2 + type: Transform +- proto: ClosetChefFilled + entities: + - uid: 6582 + components: + - pos: 38.5,-12.5 + parent: 2 + type: Transform +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 98 + components: + - pos: -17.5,-12.5 + parent: 2 + type: Transform + - uid: 106 + components: + - pos: -10.5,-12.5 + parent: 2 + type: Transform + - uid: 1480 + components: + - pos: 24.5,-4.5 + parent: 2 + type: Transform + - uid: 1481 + components: + - pos: 24.5,-5.5 + parent: 2 + type: Transform + - uid: 5261 + components: + - pos: 49.5,13.5 + parent: 2 + type: Transform + - uid: 5438 + components: + - pos: 9.5,-20.5 + parent: 2 + type: Transform + - uid: 5472 + components: + - pos: 70.5,42.5 + parent: 2 + type: Transform + - uid: 5612 + components: + - pos: 36.5,-38.5 + parent: 2 + type: Transform + - uid: 5736 + components: + - pos: 69.5,-11.5 + parent: 2 + type: Transform + - uid: 5901 + components: + - pos: 5.5,-30.5 + parent: 2 + type: Transform + - uid: 7985 + components: + - pos: -6.5,0.5 + parent: 2 + type: Transform + - uid: 7997 + components: + - pos: 3.5,5.5 + parent: 2 + type: Transform + - uid: 10837 + components: + - pos: 66.5,6.5 + parent: 2 + type: Transform + - uid: 10839 + components: + - pos: 43.5,46.5 + parent: 2 + type: Transform + - uid: 13001 + components: + - pos: 31.5,-46.5 + parent: 2 + type: Transform +- proto: ClosetFireFilled + entities: + - uid: 94 + components: + - pos: -14.5,-12.5 + parent: 2 + type: Transform + - uid: 5260 + components: + - pos: 50.5,13.5 + parent: 2 + type: Transform + - uid: 5902 + components: + - pos: 5.5,-29.5 + parent: 2 + type: Transform + - uid: 7998 + components: + - pos: 3.5,9.5 + parent: 2 + type: Transform + - uid: 10841 + components: + - pos: 39.5,42.5 + parent: 2 + type: Transform +- proto: ClosetJanitorFilled + entities: + - uid: 166 + components: + - pos: 3.5,-3.5 + parent: 2 + type: Transform +- proto: ClosetL3JanitorFilled + entities: + - uid: 167 + components: + - pos: 3.5,-4.5 + parent: 2 + type: Transform +- proto: ClosetL3VirologyFilled + entities: + - uid: 5213 + components: + - pos: 78.5,-1.5 + parent: 2 + type: Transform + - uid: 5214 + components: + - pos: 76.5,-3.5 + parent: 2 + type: Transform + - uid: 5215 + components: + - pos: 76.5,-4.5 + parent: 2 + type: Transform +- proto: ClosetLegal + entities: + - uid: 2712 + components: + - pos: 18.5,33.5 + parent: 2 + type: Transform +- proto: ClosetLegalFilled + entities: + - uid: 6047 + components: + - pos: 17.5,33.5 + parent: 2 + type: Transform +- proto: ClosetMaintenance + entities: + - uid: 10835 + components: + - pos: 65.5,10.5 + parent: 2 + type: Transform +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 5437 + components: + - pos: 9.5,-19.5 + parent: 2 + type: Transform + - uid: 5729 + components: + - pos: 72.5,-5.5 + parent: 2 + type: Transform + - uid: 8342 + components: + - pos: 23.5,6.5 + parent: 2 + type: Transform + - uid: 9309 + components: + - pos: 72.5,23.5 + parent: 2 + type: Transform + - uid: 10836 + components: + - pos: 65.5,9.5 + parent: 2 + type: Transform + - uid: 13125 + components: + - pos: 53.5,-20.5 + parent: 2 + type: Transform + - uid: 13126 + components: + - pos: 52.5,-20.5 + parent: 2 + type: Transform +- proto: ClosetRadiationSuitFilled + entities: + - uid: 3687 + components: + - pos: 51.5,13.5 + parent: 2 + type: Transform + - uid: 4310 + components: + - pos: 19.5,-34.5 + parent: 2 + type: Transform + - uid: 10906 + components: + - pos: 20.5,-34.5 + parent: 2 + type: Transform + - uid: 10907 + components: + - pos: 22.5,-34.5 + parent: 2 + type: Transform + - uid: 12853 + components: + - pos: 54.5,25.5 + parent: 2 + type: Transform +- proto: ClosetToolFilled + entities: + - uid: 5649 + components: + - pos: 49.5,46.5 + parent: 2 + type: Transform +- proto: ClothingBackpackClown + entities: + - uid: 9611 + components: + - pos: 27.493172,5.5327587 + parent: 2 + type: Transform +- proto: ClothingBackpackMerc + entities: + - uid: 12658 + components: + - pos: 74.49778,21.835997 + parent: 2 + type: Transform +- proto: ClothingBeltChampion + entities: + - uid: 12103 + components: + - pos: 17.510887,40.120396 + parent: 2 + type: Transform +- proto: ClothingBeltHolster + entities: + - uid: 12241 + components: + - pos: 89.35728,1.548007 + parent: 2 + type: Transform +- proto: ClothingBeltMercWebbing + entities: + - uid: 12667 + components: + - pos: 74.357155,21.929747 + parent: 2 + type: Transform +- proto: ClothingBeltStorageWaistbag + entities: + - uid: 7821 + components: + - pos: 20.561836,5.5983276 + parent: 2 + type: Transform +- proto: ClothingBeltUtility + entities: + - uid: 5735 + components: + - pos: 72.5,-9.5 + parent: 2 + type: Transform +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 602 + components: + - pos: 25.514921,-29.44944 + parent: 2 + type: Transform +- proto: ClothingBeltUtilityFilled + entities: + - uid: 872 + components: + - pos: 33.498886,-14.418215 + parent: 2 + type: Transform +- proto: ClothingEyesEyepatch + entities: + - uid: 6421 + components: + - pos: 56.63094,-14.915291 + parent: 2 + type: Transform + - uid: 12219 + components: + - pos: 15.513365,7.482489 + parent: 2 + type: Transform +- proto: ClothingEyesGlasses + entities: + - uid: 5436 + components: + - pos: 45.51781,-19.598537 + parent: 2 + type: Transform + - uid: 6793 + components: + - pos: 60.359756,25.627806 + parent: 2 + type: Transform + - uid: 11827 + components: + - pos: 60.359756,25.45593 + parent: 2 + type: Transform + - uid: 12167 + components: + - pos: 74.534454,-0.21419013 + parent: 2 + type: Transform +- proto: ClothingEyesGlassesGarGiga + entities: + - uid: 8643 + components: + - pos: 74.48007,-6.509521 + parent: 2 + type: Transform +- proto: ClothingEyesGlassesMercenary + entities: + - uid: 12662 + components: + - pos: 74.46653,22.257872 + parent: 2 + type: Transform +- proto: ClothingEyesGlassesMeson + entities: + - uid: 132 + components: + - pos: 12.5,-35.5 + parent: 2 + type: Transform + - uid: 5718 + components: + - pos: 73.5,-12.5 + parent: 2 + type: Transform + - uid: 10825 + components: + - pos: 81.516914,11.673225 + parent: 2 + type: Transform + - uid: 10848 + components: + - pos: 45.471096,27.566444 + parent: 2 + type: Transform +- proto: ClothingEyesGlassesSunglasses + entities: + - uid: 5522 + components: + - pos: 86.49675,1.6024053 + parent: 2 + type: Transform +- proto: ClothingEyesGlassesThermal + entities: + - uid: 12673 + components: + - pos: 32.51945,-30.628448 + parent: 2 + type: Transform +- proto: ClothingEyesHudDiagnostic + entities: + - uid: 11439 + components: + - pos: 17.140316,-23.554987 + parent: 2 + type: Transform +- proto: ClothingEyesHudMedical + entities: + - uid: 11422 + components: + - pos: 55.632915,-10.387672 + parent: 2 + type: Transform +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 1563 + components: + - pos: 30.487595,-14.515437 + parent: 2 + type: Transform + - uid: 5630 + components: + - pos: 17.199833,-23.332096 + parent: 2 + type: Transform +- proto: ClothingHandsGlovesFingerless + entities: + - uid: 2891 + components: + - pos: 10.782635,21.422426 + parent: 2 + type: Transform +- proto: ClothingHandsGlovesPowerglove + entities: + - uid: 7561 + components: + - pos: 76.51093,-13.595224 + parent: 2 + type: Transform +- proto: ClothingHandsMercGlovesCombat + entities: + - uid: 12663 + components: + - pos: 74.46653,21.773497 + parent: 2 + type: Transform +- proto: ClothingHeadBandMerc + entities: + - uid: 12666 + components: + - pos: 74.419655,22.351622 + parent: 2 + type: Transform +- proto: ClothingHeadFishCap + entities: + - uid: 2885 + components: + - pos: 50.47578,-20.56524 + parent: 2 + type: Transform +- proto: ClothingHeadHatAnimalCat + entities: + - uid: 12652 + components: + - pos: 69.48217,34.466385 + parent: 2 + type: Transform +- proto: ClothingHeadHatAnimalCatBrown + entities: + - uid: 8933 + components: + - pos: 62.47656,19.694616 + parent: 2 + type: Transform +- proto: ClothingHeadHatBeretMerc + entities: + - uid: 12665 + components: + - pos: 74.513405,22.460997 + parent: 2 + type: Transform +- proto: ClothingHeadHatBunny + entities: + - uid: 9109 + components: + - pos: 58.54981,-24.623142 + parent: 2 + type: Transform +- proto: ClothingHeadHatChickenhead + entities: + - uid: 8830 + components: + - pos: 72.52045,21.835241 + parent: 2 + type: Transform +- proto: ClothingHeadHatFedoraGrey + entities: + - uid: 7557 + components: + - rot: 0.00039844278944656253 rad + pos: 74.50803,-5.26333 + parent: 2 + type: Transform +- proto: ClothingHeadHatFez + entities: + - uid: 8843 + components: + - pos: 90.45974,-18.462885 + parent: 2 + type: Transform +- proto: ClothingHeadHatFlowerCrown + entities: + - uid: 8829 + components: + - pos: 84.5185,-12.681175 + parent: 2 + type: Transform +- proto: ClothingHeadHatGreysoft + entities: + - uid: 10851 + components: + - pos: 45.45547,27.660194 + parent: 2 + type: Transform +- proto: ClothingHeadHatHairflower + entities: + - uid: 12099 + components: + - pos: 19.740185,41.04155 + parent: 2 + type: Transform +- proto: ClothingHeadHatHardhatOrange + entities: + - uid: 10798 + components: + - pos: 80.534454,-16.347055 + parent: 2 + type: Transform +- proto: ClothingHeadHatHardhatRed + entities: + - uid: 5719 + components: + - pos: 73.5,-12.5 + parent: 2 + type: Transform + - uid: 10827 + components: + - pos: 81.50129,9.6576 + parent: 2 + type: Transform +- proto: ClothingHeadHatHetmanHat + entities: + - uid: 9018 + components: + - pos: 84.40167,-5.2654653 + parent: 2 + type: Transform +- proto: ClothingHeadHatPaper + entities: + - uid: 8251 + components: + - pos: 36.290367,33.722393 + parent: 2 + type: Transform +- proto: ClothingHeadHatPirate + entities: + - uid: 7554 + components: + - rot: 0.00038670882349833846 rad + pos: 89.44564,-12.263381 + parent: 2 + type: Transform +- proto: ClothingHeadHatRedwizard + entities: + - uid: 6798 + components: + - pos: 86.44191,12.5807 + parent: 2 + type: Transform +- proto: ClothingHeadHatSkub + entities: + - uid: 13076 + components: + - pos: 7.4825606,-11.600726 + parent: 2 + type: Transform +- proto: ClothingHeadHatSquid + entities: + - uid: 12671 + components: + - pos: 65.725685,11.307603 + parent: 2 + type: Transform +- proto: ClothingHeadHatTophat + entities: + - uid: 2920 + components: + - pos: 65.46723,-14.576903 + parent: 2 + type: Transform +- proto: ClothingHeadHatTrucker + entities: + - uid: 3448 + components: + - pos: 17.59203,5.387045 + parent: 2 + type: Transform +- proto: ClothingHeadHatUshanka + entities: + - uid: 12674 + components: + - pos: 74.46565,-6.1472054 + parent: 2 + type: Transform + - uid: 12676 + components: + - pos: 74.46565,-6.1472054 + parent: 2 + type: Transform +- proto: ClothingHeadHatWelding + entities: + - uid: 5377 + components: + - pos: 52.381424,11.673619 + parent: 2 + type: Transform +- proto: ClothingHeadHatWitch1 + entities: + - uid: 6827 + components: + - pos: 83.46587,-12.720913 + parent: 2 + type: Transform +- proto: ClothingHeadHatWizard + entities: + - uid: 11158 + components: + - pos: 86.44739,10.61898 + parent: 2 + type: Transform +- proto: ClothingHeadHelmetMerc + entities: + - uid: 12661 + components: + - pos: 74.46653,22.492247 + parent: 2 + type: Transform +- proto: ClothingHeadHelmetRiot + entities: + - uid: 8425 + components: + - pos: 38.53056,28.406826 + parent: 2 + type: Transform + - uid: 8426 + components: + - pos: 38.53056,28.406826 + parent: 2 + type: Transform + - uid: 8427 + components: + - pos: 38.53056,28.406826 + parent: 2 + type: Transform +- proto: ClothingHeadNurseHat + entities: + - uid: 12672 + components: + - pos: 59.51385,-3.3579187 + parent: 2 + type: Transform +- proto: ClothingHeadsetMining + entities: + - uid: 12669 + components: + - pos: 9.6021385,15.473721 + parent: 2 + type: Transform + - uid: 12670 + components: + - pos: 9.6021385,15.473721 + parent: 2 + type: Transform +- proto: ClothingMaskBear + entities: + - uid: 8828 + components: + - pos: 102.40892,-16.268303 + parent: 2 + type: Transform +- proto: ClothingMaskBreathMedical + entities: + - uid: 12657 + components: + - pos: 67.39722,4.505884 + parent: 2 + type: Transform +- proto: ClothingMaskBreathMedicalSecurity + entities: + - uid: 7757 + components: + - pos: 74.46653,21.992247 + parent: 2 + type: Transform +- proto: ClothingMaskClown + entities: + - uid: 8292 + components: + - pos: 27.23263,5.6674385 + parent: 2 + type: Transform +- proto: ClothingMaskGas + entities: + - uid: 589 + components: + - pos: 33.50367,-14.512851 + parent: 2 + type: Transform + - uid: 841 + components: + - pos: 27.626308,-29.560211 + parent: 2 + type: Transform + - uid: 5343 + components: + - pos: 60.54693,25.63966 + parent: 2 + type: Transform + - uid: 10799 + components: + - pos: 79.33667,-16.51893 + parent: 2 + type: Transform + - uid: 10800 + components: + - pos: 79.664795,-16.36268 + parent: 2 + type: Transform + - uid: 10824 + components: + - pos: 81.53254,11.610725 + parent: 2 + type: Transform +- proto: ClothingMaskGasMerc + entities: + - uid: 12659 + components: + - pos: 74.482155,22.210997 + parent: 2 + type: Transform +- proto: ClothingMaskSexyMime + entities: + - uid: 8345 + components: + - pos: 25.245346,6.3236885 + parent: 2 + type: Transform +- proto: ClothingMaskSterile + entities: + - uid: 11969 + components: + - pos: 59.604156,3.672451 + parent: 2 + type: Transform +- proto: ClothingNeckCloakGoliathCloak + entities: + - uid: 12455 + components: + - pos: 91.43456,-0.49069238 + parent: 2 + type: Transform +- proto: ClothingNeckCloakMoth + entities: + - uid: 9368 + components: + - pos: 17.479858,8.394902 + parent: 2 + type: Transform +- proto: ClothingNeckCloakTrans + entities: + - uid: 688 + components: + - pos: 7.491953,-13.240216 + parent: 2 + type: Transform + - uid: 7009 + components: + - pos: 19.545155,5.62142 + parent: 2 + type: Transform +- proto: ClothingNeckScarfStripedRed + entities: + - uid: 12226 + components: + - pos: 20.513533,26.418814 + parent: 2 + type: Transform +- proto: ClothingNeckScarfStripedZebra + entities: + - uid: 9606 + components: + - pos: 25.521528,7.3736153 + parent: 2 + type: Transform +- proto: ClothingNeckStethoscope + entities: + - uid: 5193 + components: + - pos: 63.38291,-10.442304 + parent: 2 + type: Transform + - uid: 11420 + components: + - pos: 56.414165,-10.356422 + parent: 2 + type: Transform + - uid: 11967 + components: + - pos: 64.40056,4.5256968 + parent: 2 + type: Transform +- proto: ClothingNeckTieRed + entities: + - uid: 8289 + components: + - pos: 19.90453,5.512045 + parent: 2 + type: Transform + - uid: 12228 + components: + - pos: 69.577194,21.53721 + parent: 2 + type: Transform +- proto: ClothingOuterApron + entities: + - uid: 8825 + components: + - pos: 17.68529,8.556451 + parent: 2 + type: Transform +- proto: ClothingOuterArmorBasic + entities: + - uid: 8413 + components: + - pos: 38.421185,28.625576 + parent: 2 + type: Transform + - uid: 8414 + components: + - pos: 38.421185,28.625576 + parent: 2 + type: Transform + - uid: 8415 + components: + - pos: 38.421185,28.625576 + parent: 2 + type: Transform +- proto: ClothingOuterArmorBasicSlim + entities: + - uid: 8416 + components: + - pos: 38.62431,28.406826 + parent: 2 + type: Transform + - uid: 8417 + components: + - pos: 38.62431,28.406826 + parent: 2 + type: Transform + - uid: 8418 + components: + - pos: 38.62431,28.406826 + parent: 2 + type: Transform +- proto: ClothingOuterArmorBulletproof + entities: + - uid: 8419 + components: + - pos: 38.37431,28.438076 + parent: 2 + type: Transform + - uid: 8420 + components: + - pos: 38.37431,28.438076 + parent: 2 + type: Transform + - uid: 8421 + components: + - pos: 38.37431,28.438076 + parent: 2 + type: Transform +- proto: ClothingOuterArmorRiot + entities: + - uid: 8422 + components: + - pos: 38.71806,28.609951 + parent: 2 + type: Transform + - uid: 8423 + components: + - pos: 38.71806,28.609951 + parent: 2 + type: Transform + - uid: 8424 + components: + - pos: 38.71806,28.609951 + parent: 2 + type: Transform + - 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 + type: GroupExamine +- proto: ClothingOuterCoatInspector + entities: + - uid: 12229 + components: + - pos: 69.639694,21.740335 + parent: 2 + type: Transform +- proto: ClothingOuterCoatJensen + entities: + - uid: 7560 + components: + - pos: 76.51827,-13.498972 + parent: 2 + type: Transform +- proto: ClothingOuterCoatLab + entities: + - uid: 5257 + components: + - pos: 60.494953,-9.426679 + parent: 2 + type: Transform +- proto: ClothingOuterCoatPirate + entities: + - uid: 7553 + components: + - pos: 89.47711,-12.560792 + parent: 2 + type: Transform +- proto: ClothingOuterCoatRobo + entities: + - uid: 1847 + components: + - pos: 52.52299,8.566419 + parent: 2 + type: Transform +- proto: ClothingOuterHardsuitBasic + entities: + - uid: 7304 + components: + - flags: InContainer + type: MetaData + - parent: 12094 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingOuterHospitalGown + entities: + - uid: 12499 + components: + - pos: 60.452034,-9.3230715 + parent: 2 + type: Transform +- proto: ClothingOuterPonchoClassic + entities: + - uid: 8930 + components: + - pos: 70.48266,27.712364 + parent: 2 + type: Transform +- proto: ClothingOuterSkub + entities: + - uid: 13075 + components: + - pos: 7.4669356,-11.631976 + parent: 2 + type: Transform +- proto: ClothingOuterSuitChicken + entities: + - uid: 8932 + components: + - pos: 72.52045,21.491491 + parent: 2 + type: Transform +- proto: ClothingOuterSuitFire + entities: + - uid: 5721 + components: + - pos: 73.5,-12.5 + parent: 2 + type: Transform + - uid: 10849 + components: + - pos: 45.51797,27.660194 + parent: 2 + type: Transform +- proto: ClothingOuterVestHazard + entities: + - uid: 880 + components: + - pos: 27.494364,-29.379656 + parent: 2 + type: Transform + - uid: 2150 + components: + - pos: 10.541297,21.522875 + parent: 2 + type: Transform +- proto: ClothingOuterVestWebMerc + entities: + - uid: 12668 + components: + - pos: 74.450905,21.945372 + parent: 2 + type: Transform +- proto: ClothingOuterWizard + entities: + - uid: 11159 + components: + - pos: 86.47864,10.71273 + parent: 2 + type: Transform +- proto: ClothingOuterWizardRed + entities: + - uid: 6797 + components: + - pos: 86.50441,12.690075 + parent: 2 + type: Transform +- proto: ClothingShoesBootsJack + entities: + - uid: 3615 + components: + - pos: 18.604328,5.443143 + parent: 2 + type: Transform +- proto: ClothingShoesBootsMag + entities: + - uid: 10306 + components: + - pos: 8.40589,-8.309399 + parent: 2 + type: Transform + - uid: 10307 + components: + - pos: 8.56214,-8.481274 + parent: 2 + type: Transform +- proto: ClothingShoesBootsMercFilled + entities: + - uid: 12664 + components: + - pos: 74.43528,21.382872 + parent: 2 + type: Transform +- proto: ClothingShoesFlippers + entities: + - uid: 6828 + components: + - pos: 1.4884543,-32.355457 + parent: 2 + type: Transform +- proto: ClothingShoesLeather + entities: + - uid: 7555 + components: + - rot: 0.0006267222343012691 rad + pos: 89.43173,-12.737588 + parent: 2 + type: Transform + - uid: 7558 + components: + - pos: 74.43015,-5.8248997 + parent: 2 + type: Transform + - uid: 12220 + components: + - pos: 30.472458,40.268566 + parent: 2 + type: Transform +- proto: ClothingShoeSlippersDuck + entities: + - uid: 5405 + components: + - pos: 62.48992,19.519245 + parent: 2 + type: Transform +- proto: ClothingShoesSlippers + entities: + - uid: 5470 + components: + - pos: 70.5,40.5 + parent: 2 + type: Transform + - uid: 5471 + components: + - pos: 70.5,37.5 + parent: 2 + type: Transform +- proto: ClothingShoesTourist + entities: + - uid: 9349 + components: + - pos: -10.508648,-14.809846 + parent: 2 + type: Transform +- proto: ClothingShoesWizard + entities: + - uid: 6796 + components: + - pos: 86.50441,12.3932 + parent: 2 + type: Transform + - uid: 11160 + components: + - pos: 86.46301,10.540855 + parent: 2 + type: Transform +- proto: ClothingUnderSocksBee + entities: + - uid: 12287 + components: + - pos: 8.506772,13.431249 + parent: 2 + type: Transform +- proto: ClothingUnderSocksCoder + entities: + - uid: 6795 + components: + - pos: 83.49162,-13.680252 + parent: 2 + type: Transform + - uid: 8931 + components: + - pos: 13.502279,38.53218 + parent: 2 + type: Transform +- proto: ClothingUniformColorRainbow + entities: + - uid: 6826 + components: + - pos: 83.49712,-13.314663 + parent: 2 + type: Transform + - uid: 12705 + components: + - pos: 104.58011,-15.495739 + parent: 2 + type: Transform + - uid: 12706 + components: + - pos: 104.11136,-15.495739 + parent: 2 + type: Transform + - uid: 12707 + components: + - pos: 103.67386,-15.495739 + parent: 2 + type: Transform +- proto: ClothingUniformJumpskirtJanimaidmini + entities: + - uid: 12847 + components: + - pos: 56.502583,35.364388 + parent: 2 + type: Transform +- proto: ClothingUniformJumpskirtTacticalMaid + entities: + - uid: 12653 + components: + - pos: 76.476616,-13.28976 + parent: 2 + type: Transform +- proto: ClothingUniformJumpsuitCossack + entities: + - uid: 8826 + components: + - pos: 84.46417,-5.6717153 + parent: 2 + type: Transform +- proto: ClothingUniformJumpsuitDetectiveGrey + entities: + - uid: 7556 + components: + - pos: 74.49265,-5.4811497 + parent: 2 + type: Transform +- proto: ClothingUniformJumpsuitEngineeringHazard + entities: + - uid: 881 + components: + - pos: 27.529085,-29.483822 + parent: 2 + type: Transform +- proto: ClothingUniformJumpsuitFlannel + entities: + - uid: 8290 + components: + - pos: 19.93578,5.65267 + parent: 2 + type: Transform +- proto: ClothingUniformJumpsuitMercenary + entities: + - uid: 12660 + components: + - pos: 74.46653,21.789122 + parent: 2 + type: Transform +- proto: ClothingUniformJumpsuitMonasticRobeLight + entities: + - uid: 12654 + components: + - pos: 30.690329,7.316777 + parent: 2 + type: Transform + - uid: 12655 + components: + - pos: 30.690329,7.316777 + parent: 2 + type: Transform + - uid: 12656 + components: + - pos: 30.690329,7.316777 + parent: 2 + type: Transform +- proto: ClothingUniformJumpsuitNanotrasen + entities: + - uid: 7391 + components: + - flags: InContainer + type: MetaData + - parent: 12094 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitPsychologist + entities: + - uid: 8306 + components: + - pos: 20.21703,5.52767 + parent: 2 + type: Transform +- proto: ClothingUniformJumpsuitRecruitSyndie + entities: + - uid: 12496 + components: + - pos: 11.480359,-11.451806 + parent: 2 + type: Transform +- proto: ClothingUniformJumpsuitRepairmanSyndie + entities: + - uid: 12675 + components: + - pos: 11.491153,-11.444116 + parent: 2 + type: Transform +- proto: ClothingUniformOveralls + entities: + - uid: 8241 + components: + - pos: 17.468086,5.4733276 + parent: 2 + type: Transform +- proto: ClownRecorder + entities: + - uid: 5149 + components: + - pos: 27.810755,5.5424385 + parent: 2 + type: Transform +- proto: ComfyChair + entities: + - uid: 309 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,3.5 + parent: 2 + type: Transform + - uid: 1660 + components: + - pos: 30.5,-2.5 + parent: 2 + type: Transform + - uid: 1661 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-4.5 + parent: 2 + type: Transform + - uid: 1662 + components: + - pos: 29.5,-2.5 + parent: 2 + type: Transform + - uid: 1664 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-4.5 + parent: 2 + type: Transform + - uid: 2408 + components: + - pos: 44.5,24.5 + parent: 2 + type: Transform + - uid: 2527 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,7.5 + parent: 2 + type: Transform + - uid: 2531 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,3.5 + parent: 2 + type: Transform + - uid: 2720 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,31.5 + parent: 2 + type: Transform + - uid: 2772 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,40.5 + parent: 2 + type: Transform + - uid: 2773 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,39.5 + parent: 2 + type: Transform + - uid: 2774 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,40.5 + parent: 2 + type: Transform + - uid: 2775 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,39.5 + parent: 2 + type: Transform + - uid: 5033 + components: + - pos: 35.5,3.5 + parent: 2 + type: Transform + - uid: 5423 + components: + - rot: 3.141592653589793 rad + pos: 37.5,42.5 + parent: 2 + type: Transform + - uid: 5424 + components: + - rot: 3.141592653589793 rad + pos: 33.5,40.5 + parent: 2 + type: Transform + - uid: 5425 + components: + - pos: 33.5,43.5 + parent: 2 + type: Transform + - uid: 10273 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-3.5 + parent: 2 + type: Transform + - uid: 10636 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,7.5 + parent: 2 + type: Transform + - uid: 11425 + components: + - rot: -1.5707963267948966 rad + pos: 78.5,4.5 + parent: 2 + type: Transform + - uid: 11426 + components: + - rot: -1.5707963267948966 rad + pos: 78.5,5.5 + parent: 2 + type: Transform + - uid: 12677 + components: + - rot: 1.5707963267948966 rad + pos: 105.5,-13.5 + parent: 2 + type: Transform + - uid: 12678 + components: + - rot: -1.5707963267948966 rad + pos: 107.5,-13.5 + parent: 2 + type: Transform +- proto: ComputerAlert + entities: + - uid: 785 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-25.5 + parent: 2 + type: Transform + - uid: 1163 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-33.5 + parent: 2 + type: Transform + - uid: 5079 + components: + - pos: 28.5,48.5 + parent: 2 + type: Transform +- proto: ComputerAnalysisConsole + entities: + - uid: 152 + components: + - pos: 64.5,25.5 + parent: 2 + type: Transform + - linkedPorts: + 8666: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver + type: DeviceLinkSource + - uid: 10667 + components: + - rot: 3.141592653589793 rad + pos: 61.5,8.5 + parent: 2 + type: Transform +- proto: computerBodyScanner + entities: + - uid: 31 + components: + - pos: 65.5,-3.5 + parent: 2 + type: Transform + - uid: 1911 + components: + - rot: -1.5707963267948966 rad + pos: 62.5,-11.5 + parent: 2 + type: Transform + - uid: 11401 + components: + - rot: 3.141592653589793 rad + pos: 66.5,-11.5 + parent: 2 + type: Transform + - uid: 12110 + components: + - rot: -1.5707963267948966 rad + pos: 55.5,8.5 + parent: 2 + type: Transform +- proto: ComputerCargoBounty + entities: + - uid: 7809 + components: + - pos: 15.5,25.5 + parent: 2 + type: Transform +- proto: ComputerCargoOrders + entities: + - uid: 2136 + components: + - pos: 20.5,23.5 + parent: 2 + type: Transform + - uid: 7741 + components: + - pos: 11.5,28.5 + parent: 2 + type: Transform +- proto: ComputerCargoShuttle + entities: + - uid: 6864 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,25.5 + parent: 2 + type: Transform +- proto: ComputerComms + entities: + - uid: 405 + components: + - rot: 3.141592653589793 rad + pos: 33.5,39.5 + parent: 2 + type: Transform + - uid: 5059 + components: + - pos: 27.5,48.5 + parent: 2 + type: Transform +- proto: ComputerCrewMonitoring + entities: + - uid: 7925 + components: + - pos: 31.5,48.5 + parent: 2 + type: Transform + - uid: 8430 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,26.5 + parent: 2 + type: Transform + - uid: 9617 + components: + - pos: 49.5,4.5 + parent: 2 + type: Transform + - uid: 9619 + components: + - rot: 3.141592653589793 rad + pos: 44.5,2.5 + parent: 2 + type: Transform + - uid: 10282 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-3.5 + parent: 2 + type: Transform + - uid: 11922 + components: + - pos: 72.5,8.5 + parent: 2 + type: Transform + - uid: 12580 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-16.5 + parent: 2 + type: Transform +- proto: ComputerCriminalRecords + entities: + - uid: 2145 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,17.5 + parent: 2 + type: Transform + - uid: 7981 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 2 + type: Transform + - uid: 8315 + components: + - pos: 23.5,48.5 + parent: 2 + type: Transform + - uid: 12083 + components: + - pos: 29.5,26.5 + parent: 2 + type: Transform + - uid: 12090 + components: + - pos: 45.5,25.5 + parent: 2 + type: Transform + - uid: 12091 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,27.5 + parent: 2 + type: Transform +- proto: ComputerId + entities: + - uid: 401 + components: + - rot: 3.141592653589793 rad + pos: 32.5,39.5 + parent: 2 + type: Transform + - uid: 4988 + components: + - pos: 26.5,48.5 + parent: 2 + type: Transform + - uid: 10275 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-3.5 + parent: 2 + type: Transform +- proto: ComputerMedicalRecords + entities: + - uid: 7725 + components: + - rot: 1.5707963267948966 rad + pos: 54.5,-11.5 + parent: 2 + type: Transform + - uid: 9616 + components: + - rot: -1.5707963267948966 rad + pos: 51.5,2.5 + parent: 2 + type: Transform + - uid: 11035 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-17.5 + parent: 2 + type: Transform + - uid: 12170 + components: + - pos: 34.5,46.5 + parent: 2 + type: Transform +- proto: ComputerPowerMonitoring + entities: + - uid: 776 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-23.5 + parent: 2 + type: Transform + - uid: 4042 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-34.5 + parent: 2 + type: Transform + - uid: 5126 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,45.5 + parent: 2 + type: Transform + - uid: 6898 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-13.5 + parent: 2 + type: Transform +- proto: ComputerRadar + entities: + - uid: 5078 + components: + - pos: 20.5,46.5 + parent: 2 + type: Transform + - uid: 12821 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,15.5 + parent: 2 + type: Transform +- proto: ComputerResearchAndDevelopment + entities: + - uid: 5304 + components: + - rot: 3.141592653589793 rad + pos: 51.5,17.5 + parent: 2 + type: Transform + - uid: 5390 + components: + - pos: 49.5,11.5 + parent: 2 + type: Transform + - uid: 6474 + components: + - pos: 50.5,25.5 + parent: 2 + type: Transform + - uid: 10666 + components: + - rot: 3.141592653589793 rad + pos: 62.5,8.5 + parent: 2 + type: Transform +- proto: ComputerSalvageExpedition + entities: + - uid: 12820 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,21.5 + parent: 2 + type: Transform +- proto: ComputerShuttleCargo + entities: + - uid: 7727 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,25.5 + parent: 2 + type: Transform +- proto: ComputerShuttleSalvage + entities: + - uid: 10140 + components: + - pos: 7.5,18.5 + parent: 2 + type: Transform +- proto: ComputerSolarControl + entities: + - uid: 805 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-24.5 + parent: 2 + type: Transform + - uid: 4305 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-36.5 + parent: 2 + type: Transform + - uid: 5639 + components: + - pos: 70.5,46.5 + parent: 2 + type: Transform +- proto: ComputerStationRecords + entities: + - uid: 10274 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-3.5 + parent: 2 + type: Transform + - uid: 12581 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-18.5 + parent: 2 + type: Transform +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 8346 + components: + - pos: 24.5,48.5 + parent: 2 + type: Transform + - uid: 8431 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,28.5 + parent: 2 + type: Transform + - uid: 12082 + components: + - pos: 30.5,26.5 + parent: 2 + type: Transform + - uid: 12089 + components: + - pos: 44.5,25.5 + parent: 2 + type: Transform +- proto: ComputerTelevision + entities: + - uid: 11475 + components: + - pos: 41.5,20.5 + parent: 2 + type: Transform +- proto: ContainmentFieldGenerator + entities: + - uid: 752 + components: + - pos: 9.5,-26.5 + parent: 2 + type: Transform + - uid: 832 + components: + - pos: 13.5,-31.5 + parent: 2 + type: Transform + - uid: 1113 + components: + - pos: 9.5,-27.5 + parent: 2 + type: Transform + - uid: 1593 + components: + - pos: 9.5,-28.5 + parent: 2 + type: Transform + - uid: 3979 + components: + - pos: 25.5,-47.5 + parent: 2 + type: Transform + - uid: 3984 + components: + - pos: 17.5,-55.5 + parent: 2 + type: Transform + - uid: 10929 + components: + - pos: 17.5,-47.5 + parent: 2 + type: Transform + - uid: 10931 + components: + - pos: 25.5,-55.5 + parent: 2 + type: Transform +- proto: ConveyorBelt + entities: + - uid: 1319 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,15.5 + parent: 2 + type: Transform + - links: + - 944 + type: DeviceLinkSink + - uid: 2028 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,15.5 + parent: 2 + type: Transform + - links: + - 944 + type: DeviceLinkSink + - uid: 2030 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,15.5 + parent: 2 + type: Transform + - links: + - 944 + type: DeviceLinkSink + - uid: 2037 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,27.5 + parent: 2 + type: Transform + - links: + - 7808 + type: DeviceLinkSink + - uid: 2038 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,27.5 + parent: 2 + type: Transform + - links: + - 7808 + type: DeviceLinkSink + - uid: 2039 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,23.5 + parent: 2 + type: Transform + - links: + - 2154 + type: DeviceLinkSink + - uid: 2040 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,23.5 + parent: 2 + type: Transform + - links: + - 2154 + type: DeviceLinkSink + - uid: 2041 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,27.5 + parent: 2 + type: Transform + - links: + - 7808 + type: DeviceLinkSink + - uid: 2042 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,27.5 + parent: 2 + type: Transform + - links: + - 7808 + type: DeviceLinkSink + - uid: 2051 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,23.5 + parent: 2 + type: Transform + - links: + - 2154 + type: DeviceLinkSink + - uid: 2064 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,27.5 + parent: 2 + type: Transform + - links: + - 7808 + type: DeviceLinkSink + - uid: 2066 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,23.5 + parent: 2 + type: Transform + - links: + - 2154 + type: DeviceLinkSink + - uid: 2067 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,23.5 + parent: 2 + type: Transform + - links: + - 2154 + type: DeviceLinkSink + - uid: 5285 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,15.5 + parent: 2 + type: Transform + - links: + - 944 + type: DeviceLinkSink + - uid: 5842 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-28.5 + parent: 2 + type: Transform + - links: + - 5856 + type: DeviceLinkSink + - uid: 5843 + components: + - pos: 1.5,-28.5 + parent: 2 + type: Transform + - links: + - 5856 + type: DeviceLinkSink + - uid: 5844 + components: + - pos: 1.5,-29.5 + parent: 2 + type: Transform + - links: + - 5856 + type: DeviceLinkSink + - uid: 5845 + components: + - pos: 1.5,-30.5 + parent: 2 + type: Transform + - links: + - 5856 + type: DeviceLinkSink + - uid: 5846 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-31.5 + parent: 2 + type: Transform + - links: + - 5856 + type: DeviceLinkSink + - uid: 5847 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-31.5 + parent: 2 + type: Transform + - links: + - 5856 + type: DeviceLinkSink + - uid: 5850 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-31.5 + parent: 2 + type: Transform + - links: + - 5856 + type: DeviceLinkSink + - uid: 5851 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-30.5 + parent: 2 + type: Transform + - links: + - 5856 + type: DeviceLinkSink + - uid: 5852 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-28.5 + parent: 2 + type: Transform + - links: + - 5856 + type: DeviceLinkSink + - uid: 5853 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-27.5 + parent: 2 + type: Transform + - links: + - 5856 + type: DeviceLinkSink + - uid: 5854 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-26.5 + parent: 2 + type: Transform + - links: + - 5856 + type: DeviceLinkSink + - uid: 6775 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,15.5 + parent: 2 + type: Transform + - links: + - 944 + type: DeviceLinkSink + - uid: 6820 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,15.5 + parent: 2 + type: Transform + - links: + - 944 + type: DeviceLinkSink + - uid: 6823 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,15.5 + parent: 2 + type: Transform + - links: + - 944 + type: DeviceLinkSink + - uid: 6825 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,15.5 + parent: 2 + type: Transform + - links: + - 944 + type: DeviceLinkSink + - uid: 6843 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,15.5 + parent: 2 + type: Transform + - links: + - 944 + type: DeviceLinkSink + - uid: 6844 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,15.5 + parent: 2 + type: Transform + - links: + - 944 + type: DeviceLinkSink + - uid: 6846 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,15.5 + parent: 2 + type: Transform + - links: + - 944 + type: DeviceLinkSink + - uid: 7585 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,15.5 + parent: 2 + type: Transform + - links: + - 944 + type: DeviceLinkSink + - uid: 7586 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,15.5 + parent: 2 + type: Transform + - links: + - 944 + type: DeviceLinkSink + - uid: 7667 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,15.5 + parent: 2 + type: Transform + - links: + - 944 + type: DeviceLinkSink + - uid: 7671 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,15.5 + parent: 2 + type: Transform + - links: + - 944 + type: DeviceLinkSink + - uid: 7672 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,15.5 + parent: 2 + type: Transform + - links: + - 944 + type: DeviceLinkSink + - uid: 7841 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,15.5 + parent: 2 + type: Transform + - links: + - 944 + type: DeviceLinkSink + - uid: 7849 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,15.5 + parent: 2 + type: Transform + - links: + - 944 + type: DeviceLinkSink + - uid: 7875 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,15.5 + parent: 2 + type: Transform + - links: + - 944 + type: DeviceLinkSink + - uid: 7876 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,15.5 + parent: 2 + type: Transform + - links: + - 944 + type: DeviceLinkSink + - uid: 7878 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,15.5 + parent: 2 + type: Transform + - links: + - 944 + type: DeviceLinkSink + - uid: 7879 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,15.5 + parent: 2 + type: Transform + - links: + - 944 + type: DeviceLinkSink + - uid: 7880 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,15.5 + parent: 2 + type: Transform + - links: + - 944 + type: DeviceLinkSink + - uid: 7888 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,15.5 + parent: 2 + type: Transform + - links: + - 944 + type: DeviceLinkSink + - uid: 7891 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,15.5 + parent: 2 + type: Transform + - links: + - 944 + type: DeviceLinkSink + - uid: 7949 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,15.5 + parent: 2 + type: Transform + - links: + - 944 + type: DeviceLinkSink +- proto: CowToolboxFilled + entities: + - uid: 5707 + components: + - pos: 84.5,-5.5 + parent: 2 + type: Transform +- proto: CrateArtifactContainer + entities: + - uid: 10439 + components: + - pos: 62.5,22.5 + parent: 2 + type: Transform +- proto: CrateCoffin + entities: + - uid: 2538 + components: + - pos: 38.5,3.5 + parent: 2 + type: Transform +- proto: CrateEmptySpawner + entities: + - uid: 8167 + components: + - pos: 10.5,26.5 + parent: 2 + type: Transform + - uid: 8172 + components: + - pos: 6.5,31.5 + parent: 2 + type: Transform + - uid: 8177 + components: + - pos: 12.5,24.5 + parent: 2 + type: Transform +- proto: CrateEngineeringAMEJar + entities: + - uid: 5263 + components: + - pos: 28.5,-38.5 + parent: 2 + type: Transform +- proto: CrateEngineeringAMEShielding + entities: + - uid: 5235 + components: + - pos: 28.5,-40.5 + parent: 2 + type: Transform + - uid: 5262 + components: + - pos: 28.5,-41.5 + parent: 2 + type: Transform +- proto: CrateEngineeringCableBulk + entities: + - uid: 782 + components: + - pos: 20.5,-23.5 + parent: 2 + type: Transform + - containers: + - EntityStorageComponent + - entity_storage + type: Construction + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + labelSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 5526 + components: + - pos: 87.5,0.5 + parent: 2 + type: Transform + - containers: + - EntityStorageComponent + - entity_storage + type: Construction + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + labelSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: CrateEngineeringCableLV + entities: + - uid: 12353 + components: + - pos: 5.5,-8.5 + parent: 2 + type: Transform +- proto: CrateEngineeringCableMV + entities: + - uid: 5686 + components: + - pos: 10.5,-31.5 + parent: 2 + type: Transform +- proto: CrateEngineeringSecure + entities: + - uid: 5625 + components: + - pos: 11.5,-25.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 784 + - 1239 + - 1460 + - 1842 + - 2129 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: CrateEngineeringSingularityCollector + entities: + - uid: 1596 + components: + - pos: 25.5,-38.5 + parent: 2 + type: Transform + - uid: 1605 + components: + - pos: 26.5,-38.5 + parent: 2 + type: Transform + - uid: 1674 + components: + - pos: 16.5,-38.5 + parent: 2 + type: Transform + - uid: 1678 + components: + - pos: 17.5,-38.5 + parent: 2 + type: Transform +- proto: CrateFilledSpawner + entities: + - uid: 191 + components: + - pos: 12.5,16.5 + parent: 2 + type: Transform + - uid: 7552 + components: + - pos: 13.5,24.5 + parent: 2 + type: Transform + - uid: 8165 + components: + - pos: 11.5,24.5 + parent: 2 + type: Transform + - uid: 8166 + components: + - pos: 10.5,24.5 + parent: 2 + type: Transform + - uid: 8168 + components: + - pos: 11.5,26.5 + parent: 2 + type: Transform + - uid: 8169 + components: + - pos: 12.5,26.5 + parent: 2 + type: Transform + - uid: 8170 + components: + - pos: 13.5,26.5 + parent: 2 + type: Transform + - uid: 8171 + components: + - pos: 6.5,30.5 + parent: 2 + type: Transform + - uid: 8173 + components: + - pos: 6.5,32.5 + parent: 2 + type: Transform + - uid: 8174 + components: + - pos: 7.5,32.5 + parent: 2 + type: Transform +- proto: CrateFreezer + entities: + - uid: 740 + components: + - pos: 31.5,-11.5 + parent: 2 + type: Transform + - uid: 13109 + components: + - pos: 67.5,-5.5 + parent: 2 + type: Transform +- proto: CrateFunATV + entities: + - uid: 9478 + components: + - pos: 7.5,31.5 + parent: 2 + type: Transform +- proto: CrateGenericSteel + entities: + - uid: 3720 + components: + - pos: 89.5,-7.5 + parent: 2 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + labelSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - containers: + - EntityStorageComponent + - entity_storage + type: Construction + - uid: 3721 + components: + - pos: 90.5,-7.5 + parent: 2 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + labelSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - containers: + - EntityStorageComponent + - entity_storage + type: Construction +- proto: CrateMaterialSteel + entities: + - uid: 5687 + components: + - pos: 11.5,-31.5 + parent: 2 + type: Transform + - uid: 13043 + components: + - pos: 33.5,-52.5 + parent: 2 + type: Transform +- proto: CrateMedicalSurgery + entities: + - uid: 5086 + components: + - pos: 64.5,-3.5 + parent: 2 + type: Transform +- proto: CrateMousetrapBoxes + entities: + - uid: 8819 + components: + - pos: 9.5,-18.5 + parent: 2 + type: Transform +- proto: CrateNPCChicken + entities: + - uid: 6753 + components: + - pos: 46.5,-10.5 + parent: 2 + type: Transform +- proto: CrateNPCCow + entities: + - uid: 6752 + components: + - pos: 47.5,-10.5 + parent: 2 + type: Transform +- proto: CrateNPCHamlet + entities: + - uid: 12796 + components: + - pos: 29.5,47.5 + parent: 2 + type: Transform +- proto: CrateTrashCart + entities: + - uid: 13117 + components: + - pos: 45.5,29.5 + parent: 2 + type: Transform + - uid: 13121 + components: + - pos: 49.5,-11.5 + parent: 2 + type: Transform + - uid: 13122 + components: + - pos: 55.5,5.5 + parent: 2 + type: Transform + - uid: 13123 + components: + - pos: 23.5,8.5 + parent: 2 + type: Transform + - uid: 13124 + components: + - pos: 19.5,26.5 + parent: 2 + type: Transform +- proto: CrateTrashCartJani + entities: + - uid: 12906 + components: + - pos: 6.5,-6.5 + parent: 2 + type: Transform +- proto: CrayonBox + entities: + - uid: 4695 + components: + - pos: 20.5,15.5 + parent: 2 + type: Transform + - uid: 11395 + components: + - pos: 25.423948,6.293049 + parent: 2 + type: Transform + - uid: 11396 + components: + - pos: 30.486448,7.511799 + parent: 2 + type: Transform +- proto: CrayonRainbow + entities: + - uid: 12700 + components: + - pos: 106.45511,-16.386364 + parent: 2 + type: Transform + - uid: 12828 + components: + - flags: InContainer + type: MetaData + - parent: 12094 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: Crematorium + entities: + - uid: 9729 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,4.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrewMonitoringServer + entities: + - uid: 8231 + components: + - pos: 51.5,25.5 + parent: 2 + type: Transform +- proto: CrewMonitoringServerMachineCircuitboard + entities: + - uid: 12359 + components: + - pos: 37.528957,-14.5012665 + parent: 2 + type: Transform +- proto: Crowbar + entities: + - uid: 686 + components: + - pos: 30.5,-14.5 + parent: 2 + type: Transform + - uid: 1048 + components: + - pos: 32.504723,-30.433409 + parent: 2 + type: Transform + - uid: 5326 + components: + - pos: 55.436665,17.567713 + parent: 2 + type: Transform + - uid: 5713 + components: + - pos: 77.53034,-13.472758 + parent: 2 + type: Transform + - uid: 8688 + components: + - pos: 32.5021,27.416605 + parent: 2 + type: Transform + - uid: 11129 + components: + - pos: 54.629898,-15.278217 + parent: 2 + type: Transform +- proto: CryoPod + entities: + - uid: 11462 + components: + - pos: 58.5,-0.5 + parent: 2 + type: Transform + - uid: 11774 + components: + - pos: 60.5,-0.5 + parent: 2 + type: Transform +- proto: CryoPodMachineCircuitboard + entities: + - uid: 12366 + components: + - pos: 37.669582,-14.5950165 + parent: 2 + type: Transform +- proto: CryoxadoneBeakerSmall + entities: + - uid: 11801 + components: + - pos: 61.389576,-0.25500047 + parent: 2 + type: Transform + - uid: 11802 + components: + - pos: 61.483326,-0.38000047 + parent: 2 + type: Transform +- proto: d6Dice + entities: + - uid: 316 + components: + - rot: 3.141592653589793 rad + pos: 11.493689,4.5440345 + parent: 2 + type: Transform + - uid: 5505 + components: + - pos: 70.363464,33.795147 + parent: 2 + type: Transform + - uid: 5506 + components: + - pos: 70.69159,33.810772 + parent: 2 + type: Transform + - uid: 5517 + components: + - rot: 3.141592653589793 rad + pos: 70.50039,33.577915 + parent: 2 + type: Transform +- proto: Defibrillator + entities: + - uid: 11416 + components: + - pos: 67.479836,-4.0156612 + parent: 2 + type: Transform +- proto: DefibrillatorCabinetFilled + entities: + - uid: 9627 + components: + - pos: 45.5,5.5 + parent: 2 + type: Transform + - uid: 12817 + components: + - pos: 74.5,3.5 + parent: 2 + type: Transform + - uid: 12818 + components: + - pos: 63.5,5.5 + parent: 2 + type: Transform + - uid: 13108 + components: + - rot: 1.5707963267948966 rad + pos: 59.5,-10.5 + parent: 2 + type: Transform +- proto: DeployableBarrier + entities: + - uid: 257 + components: + - anchored: False + pos: 39.5,28.5 + parent: 2 + type: Transform + - uid: 258 + components: + - anchored: False + pos: 40.5,28.5 + parent: 2 + type: Transform +- proto: DeskBell + entities: + - uid: 1566 + components: + - pos: 34.50083,-8.541687 + parent: 2 + type: Transform +- proto: DiseaseDiagnoser + entities: + - uid: 12156 + components: + - pos: 82.5,-7.5 + parent: 2 + type: Transform +- proto: DisposalBend + entities: + - uid: 2376 + components: + - rot: 3.141592653589793 rad + pos: 4.5,10.5 + parent: 2 + type: Transform + - uid: 3456 + components: + - pos: 14.5,20.5 + parent: 2 + type: Transform + - uid: 5777 + components: + - pos: 31.5,-28.5 + parent: 2 + type: Transform + - uid: 5778 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-32.5 + parent: 2 + type: Transform + - uid: 5779 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-32.5 + parent: 2 + type: Transform + - uid: 5780 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-33.5 + parent: 2 + type: Transform + - uid: 5781 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-34.5 + parent: 2 + type: Transform + - uid: 5782 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-34.5 + parent: 2 + type: Transform + - uid: 5800 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-28.5 + parent: 2 + type: Transform + - uid: 5820 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-21.5 + parent: 2 + type: Transform + - uid: 5821 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-23.5 + parent: 2 + type: Transform + - uid: 5822 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-23.5 + parent: 2 + type: Transform + - uid: 5823 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-24.5 + parent: 2 + type: Transform + - uid: 5828 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-24.5 + parent: 2 + type: Transform + - uid: 5829 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-30.5 + parent: 2 + type: Transform + - uid: 5840 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-30.5 + parent: 2 + type: Transform + - uid: 7289 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-2.5 + parent: 2 + type: Transform + - uid: 7332 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,13.5 + parent: 2 + type: Transform + - uid: 7352 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,7.5 + parent: 2 + type: Transform + - uid: 7393 + components: + - pos: 29.5,-10.5 + parent: 2 + type: Transform + - uid: 7394 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-10.5 + parent: 2 + type: Transform + - uid: 7395 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-11.5 + parent: 2 + type: Transform + - uid: 7402 + components: + - pos: 42.5,1.5 + parent: 2 + type: Transform + - uid: 7403 + components: + - rot: 3.141592653589793 rad + pos: 41.5,1.5 + parent: 2 + type: Transform + - uid: 7707 + components: + - pos: 33.5,23.5 + parent: 2 + type: Transform + - uid: 7751 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,13.5 + parent: 2 + type: Transform + - uid: 7761 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,18.5 + parent: 2 + type: Transform + - uid: 7953 + components: + - rot: 3.141592653589793 rad + pos: 33.5,18.5 + parent: 2 + type: Transform + - uid: 8263 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,18.5 + parent: 2 + type: Transform + - uid: 8264 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,18.5 + parent: 2 + type: Transform + - uid: 8265 + components: + - rot: 3.141592653589793 rad + pos: 11.5,15.5 + parent: 2 + type: Transform + - uid: 8267 + components: + - pos: 12.5,15.5 + parent: 2 + type: Transform + - uid: 8268 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,13.5 + parent: 2 + type: Transform + - uid: 8269 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,13.5 + parent: 2 + type: Transform + - uid: 8926 + components: + - pos: 37.5,-9.5 + parent: 2 + type: Transform + - uid: 8927 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-9.5 + parent: 2 + type: Transform + - uid: 9401 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,42.5 + parent: 2 + type: Transform + - uid: 9402 + components: + - pos: 32.5,45.5 + parent: 2 + type: Transform + - uid: 9403 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,45.5 + parent: 2 + type: Transform + - uid: 9432 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,35.5 + parent: 2 + type: Transform + - uid: 9433 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,34.5 + parent: 2 + type: Transform + - uid: 9434 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,35.5 + parent: 2 + type: Transform + - uid: 10255 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-3.5 + parent: 2 + type: Transform + - uid: 10266 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-3.5 + parent: 2 + type: Transform + - uid: 10586 + components: + - rot: 3.141592653589793 rad + pos: 54.5,11.5 + parent: 2 + type: Transform + - uid: 10598 + components: + - rot: -1.5707963267948966 rad + pos: 58.5,14.5 + parent: 2 + type: Transform + - uid: 10599 + components: + - pos: 58.5,22.5 + parent: 2 + type: Transform + - uid: 10602 + components: + - rot: 1.5707963267948966 rad + pos: 50.5,18.5 + parent: 2 + type: Transform + - uid: 10622 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,14.5 + parent: 2 + type: Transform + - uid: 11435 + components: + - rot: 1.5707963267948966 rad + pos: 53.5,-6.5 + parent: 2 + type: Transform + - uid: 11440 + components: + - rot: -1.5707963267948966 rad + pos: 56.5,-9.5 + parent: 2 + type: Transform + - uid: 11451 + components: + - pos: 56.5,-0.5 + parent: 2 + type: Transform + - uid: 11452 + components: + - rot: 3.141592653589793 rad + pos: 43.5,-0.5 + parent: 2 + type: Transform + - uid: 11453 + components: + - pos: 43.5,0.5 + parent: 2 + type: Transform + - uid: 11454 + components: + - rot: 3.141592653589793 rad + pos: 52.5,3.5 + parent: 2 + type: Transform + - uid: 11455 + components: + - pos: 54.5,3.5 + parent: 2 + type: Transform + - uid: 12440 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-14.5 + parent: 2 + type: Transform + - uid: 12456 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 2 + type: Transform + - uid: 12470 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 2 + type: Transform +- proto: DisposalJunction + entities: + - uid: 2422 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,13.5 + parent: 2 + type: Transform + - uid: 2475 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,10.5 + parent: 2 + type: Transform + - uid: 5084 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,0.5 + parent: 2 + type: Transform + - uid: 5695 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-25.5 + parent: 2 + type: Transform + - uid: 7401 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,0.5 + parent: 2 + type: Transform + - uid: 8343 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,0.5 + parent: 2 + type: Transform + - uid: 8821 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,0.5 + parent: 2 + type: Transform + - uid: 9411 + components: + - pos: 28.5,44.5 + parent: 2 + type: Transform + - uid: 9435 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,34.5 + parent: 2 + type: Transform + - uid: 10600 + components: + - pos: 58.5,18.5 + parent: 2 + type: Transform + - uid: 11456 + components: + - rot: -1.5707963267948966 rad + pos: 54.5,-0.5 + parent: 2 + type: Transform +- proto: DisposalJunctionFlipped + entities: + - uid: 5141 + components: + - pos: 26.5,23.5 + parent: 2 + type: Transform + - uid: 5142 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,0.5 + parent: 2 + type: Transform + - uid: 7290 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,0.5 + parent: 2 + type: Transform + - uid: 7317 + components: + - pos: 26.5,-11.5 + parent: 2 + type: Transform + - uid: 7400 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,0.5 + parent: 2 + type: Transform + - uid: 10601 + components: + - rot: -1.5707963267948966 rad + pos: 54.5,14.5 + parent: 2 + type: Transform + - uid: 11436 + components: + - rot: 3.141592653589793 rad + pos: 56.5,-6.5 + parent: 2 + type: Transform + - uid: 11460 + components: + - pos: 54.5,1.5 + parent: 2 + type: Transform + - uid: 12457 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 2 + type: Transform +- proto: DisposalPipe + entities: + - uid: 28 + components: + - rot: 3.141592653589793 rad + pos: 26.5,16.5 + parent: 2 + type: Transform + - uid: 256 + components: + - rot: 3.141592653589793 rad + pos: 26.5,15.5 + parent: 2 + type: Transform + - uid: 385 + components: + - rot: 3.141592653589793 rad + pos: 26.5,18.5 + parent: 2 + type: Transform + - uid: 584 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-24.5 + parent: 2 + type: Transform + - uid: 2065 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,18.5 + parent: 2 + type: Transform + - uid: 2118 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,13.5 + parent: 2 + type: Transform + - uid: 2133 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,23.5 + parent: 2 + type: Transform + - uid: 2314 + components: + - rot: 3.141592653589793 rad + pos: 26.5,17.5 + parent: 2 + type: Transform + - uid: 2377 + components: + - rot: 3.141592653589793 rad + pos: 4.5,12.5 + parent: 2 + type: Transform + - uid: 2380 + components: + - pos: 33.5,22.5 + parent: 2 + type: Transform + - uid: 5534 + components: + - pos: 32.5,1.5 + parent: 2 + type: Transform + - uid: 5697 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-28.5 + parent: 2 + type: Transform + - uid: 5698 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-28.5 + parent: 2 + type: Transform + - uid: 5699 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-28.5 + parent: 2 + type: Transform + - uid: 5700 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-28.5 + parent: 2 + type: Transform + - uid: 5770 + components: + - pos: 31.5,-29.5 + parent: 2 + type: Transform + - uid: 5771 + components: + - pos: 31.5,-30.5 + parent: 2 + type: Transform + - uid: 5772 + components: + - pos: 31.5,-31.5 + parent: 2 + type: Transform + - uid: 5773 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-32.5 + parent: 2 + type: Transform + - uid: 5774 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-32.5 + parent: 2 + type: Transform + - uid: 5775 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-32.5 + parent: 2 + type: Transform + - uid: 5776 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-32.5 + parent: 2 + type: Transform + - uid: 5784 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-33.5 + parent: 2 + type: Transform + - uid: 5788 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-32.5 + parent: 2 + type: Transform + - uid: 5789 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-31.5 + parent: 2 + type: Transform + - uid: 5790 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-30.5 + parent: 2 + type: Transform + - uid: 5791 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-29.5 + parent: 2 + type: Transform + - uid: 5792 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-28.5 + parent: 2 + type: Transform + - uid: 5793 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-28.5 + parent: 2 + type: Transform + - uid: 5794 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-28.5 + parent: 2 + type: Transform + - uid: 5795 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-28.5 + parent: 2 + type: Transform + - uid: 5796 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-28.5 + parent: 2 + type: Transform + - uid: 5797 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-28.5 + parent: 2 + type: Transform + - uid: 5798 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-28.5 + parent: 2 + type: Transform + - uid: 5799 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-28.5 + parent: 2 + type: Transform + - uid: 5802 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-23.5 + parent: 2 + type: Transform + - uid: 5803 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-22.5 + parent: 2 + type: Transform + - uid: 5804 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-21.5 + parent: 2 + type: Transform + - uid: 5805 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-21.5 + parent: 2 + type: Transform + - uid: 5806 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-21.5 + parent: 2 + type: Transform + - uid: 5807 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-21.5 + parent: 2 + type: Transform + - uid: 5809 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-21.5 + parent: 2 + type: Transform + - uid: 5810 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-21.5 + parent: 2 + type: Transform + - uid: 5811 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-21.5 + parent: 2 + type: Transform + - uid: 5812 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-21.5 + parent: 2 + type: Transform + - uid: 5814 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-21.5 + parent: 2 + type: Transform + - uid: 5815 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-21.5 + parent: 2 + type: Transform + - uid: 5816 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-21.5 + parent: 2 + type: Transform + - uid: 5817 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-21.5 + parent: 2 + type: Transform + - uid: 5818 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-21.5 + parent: 2 + type: Transform + - uid: 5819 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-21.5 + parent: 2 + type: Transform + - uid: 5825 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-23.5 + parent: 2 + type: Transform + - uid: 5826 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-23.5 + parent: 2 + type: Transform + - uid: 5827 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-22.5 + parent: 2 + type: Transform + - uid: 5830 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-29.5 + parent: 2 + type: Transform + - uid: 5831 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-28.5 + parent: 2 + type: Transform + - uid: 5832 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-27.5 + parent: 2 + type: Transform + - uid: 5833 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-26.5 + parent: 2 + type: Transform + - uid: 5834 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-25.5 + parent: 2 + type: Transform + - uid: 5835 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-24.5 + parent: 2 + type: Transform + - uid: 5836 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-24.5 + parent: 2 + type: Transform + - uid: 5837 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-30.5 + parent: 2 + type: Transform + - uid: 5838 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-30.5 + parent: 2 + type: Transform + - uid: 5841 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-29.5 + parent: 2 + type: Transform + - uid: 6848 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,23.5 + parent: 2 + type: Transform + - uid: 6849 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,23.5 + parent: 2 + type: Transform + - uid: 6850 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,23.5 + parent: 2 + type: Transform + - uid: 6877 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,13.5 + parent: 2 + type: Transform + - uid: 6878 + components: + - rot: 3.141592653589793 rad + pos: 26.5,14.5 + parent: 2 + type: Transform + - uid: 6879 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,13.5 + parent: 2 + type: Transform + - uid: 6883 + components: + - rot: 3.141592653589793 rad + pos: 26.5,22.5 + parent: 2 + type: Transform + - uid: 7291 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-1.5 + parent: 2 + type: Transform + - uid: 7292 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-0.5 + parent: 2 + type: Transform + - uid: 7293 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,0.5 + parent: 2 + type: Transform + - uid: 7296 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,0.5 + parent: 2 + type: Transform + - uid: 7301 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,0.5 + parent: 2 + type: Transform + - uid: 7302 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,0.5 + parent: 2 + type: Transform + - uid: 7303 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,0.5 + parent: 2 + type: Transform + - uid: 7306 + components: + - pos: 26.5,-0.5 + parent: 2 + type: Transform + - uid: 7307 + components: + - pos: 26.5,-1.5 + parent: 2 + type: Transform + - uid: 7308 + components: + - pos: 26.5,-2.5 + parent: 2 + type: Transform + - uid: 7309 + components: + - pos: 26.5,-3.5 + parent: 2 + type: Transform + - uid: 7310 + components: + - pos: 26.5,-4.5 + parent: 2 + type: Transform + - uid: 7311 + components: + - pos: 26.5,-5.5 + parent: 2 + type: Transform + - uid: 7312 + components: + - pos: 26.5,-6.5 + parent: 2 + type: Transform + - uid: 7313 + components: + - pos: 26.5,-7.5 + parent: 2 + type: Transform + - uid: 7314 + components: + - pos: 26.5,-8.5 + parent: 2 + type: Transform + - uid: 7315 + components: + - pos: 26.5,-9.5 + parent: 2 + type: Transform + - uid: 7316 + components: + - pos: 26.5,-10.5 + parent: 2 + type: Transform + - uid: 7318 + components: + - pos: 26.5,-12.5 + parent: 2 + type: Transform + - uid: 7319 + components: + - pos: 26.5,-13.5 + parent: 2 + type: Transform + - uid: 7320 + components: + - pos: 26.5,-14.5 + parent: 2 + type: Transform + - uid: 7321 + components: + - pos: 26.5,-15.5 + parent: 2 + type: Transform + - uid: 7322 + components: + - pos: 26.5,-16.5 + parent: 2 + type: Transform + - uid: 7323 + components: + - pos: 26.5,-17.5 + parent: 2 + type: Transform + - uid: 7324 + components: + - pos: 26.5,-18.5 + parent: 2 + type: Transform + - uid: 7325 + components: + - pos: 26.5,-19.5 + parent: 2 + type: Transform + - uid: 7326 + components: + - pos: 26.5,-20.5 + parent: 2 + type: Transform + - uid: 7330 + components: + - pos: 22.5,14.5 + parent: 2 + type: Transform + - uid: 7333 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,13.5 + parent: 2 + type: Transform + - uid: 7334 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,13.5 + parent: 2 + type: Transform + - uid: 7335 + components: + - pos: 19.5,12.5 + parent: 2 + type: Transform + - uid: 7336 + components: + - pos: 19.5,11.5 + parent: 2 + type: Transform + - uid: 7337 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,10.5 + parent: 2 + type: Transform + - uid: 7338 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,10.5 + parent: 2 + type: Transform + - uid: 7339 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,10.5 + parent: 2 + type: Transform + - uid: 7340 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,10.5 + parent: 2 + type: Transform + - uid: 7341 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,10.5 + parent: 2 + type: Transform + - uid: 7343 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,10.5 + parent: 2 + type: Transform + - uid: 7345 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,10.5 + parent: 2 + type: Transform + - uid: 7347 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,10.5 + parent: 2 + type: Transform + - uid: 7348 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,10.5 + parent: 2 + type: Transform + - uid: 7349 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,10.5 + parent: 2 + type: Transform + - uid: 7350 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,10.5 + parent: 2 + type: Transform + - uid: 7351 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,10.5 + parent: 2 + type: Transform + - uid: 7353 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,7.5 + parent: 2 + type: Transform + - uid: 7354 + components: + - pos: 19.5,8.5 + parent: 2 + type: Transform + - uid: 7355 + components: + - pos: 19.5,9.5 + parent: 2 + type: Transform + - uid: 7358 + components: + - pos: 5.5,9.5 + parent: 2 + type: Transform + - uid: 7359 + components: + - pos: 5.5,8.5 + parent: 2 + type: Transform + - uid: 7360 + components: + - pos: 5.5,7.5 + parent: 2 + type: Transform + - uid: 7361 + components: + - pos: 5.5,6.5 + parent: 2 + type: Transform + - uid: 7362 + components: + - pos: 5.5,5.5 + parent: 2 + type: Transform + - uid: 7363 + components: + - pos: 5.5,4.5 + parent: 2 + type: Transform + - uid: 7367 + components: + - pos: 5.5,3.5 + parent: 2 + type: Transform + - uid: 7368 + components: + - pos: 5.5,2.5 + parent: 2 + type: Transform + - uid: 7369 + components: + - pos: 5.5,1.5 + parent: 2 + type: Transform + - uid: 7370 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 2 + type: Transform + - uid: 7371 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 2 + type: Transform + - uid: 7372 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,0.5 + parent: 2 + type: Transform + - uid: 7373 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,0.5 + parent: 2 + type: Transform + - uid: 7374 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,0.5 + parent: 2 + type: Transform + - uid: 7375 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,0.5 + parent: 2 + type: Transform + - uid: 7377 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,0.5 + parent: 2 + type: Transform + - uid: 7378 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,0.5 + parent: 2 + type: Transform + - uid: 7379 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,0.5 + parent: 2 + type: Transform + - uid: 7380 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,0.5 + parent: 2 + type: Transform + - uid: 7381 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,0.5 + parent: 2 + type: Transform + - uid: 7382 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,0.5 + parent: 2 + type: Transform + - uid: 7383 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,0.5 + parent: 2 + type: Transform + - uid: 7384 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,0.5 + parent: 2 + type: Transform + - uid: 7385 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,0.5 + parent: 2 + type: Transform + - uid: 7386 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,0.5 + parent: 2 + type: Transform + - uid: 7387 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,0.5 + parent: 2 + type: Transform + - uid: 7388 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,0.5 + parent: 2 + type: Transform + - uid: 7389 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,0.5 + parent: 2 + type: Transform + - uid: 7396 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-10.5 + parent: 2 + type: Transform + - uid: 7399 + components: + - rot: 3.141592653589793 rad + pos: 41.5,-0.5 + parent: 2 + type: Transform + - uid: 7404 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,0.5 + parent: 2 + type: Transform + - uid: 7405 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,0.5 + parent: 2 + type: Transform + - uid: 7406 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,0.5 + parent: 2 + type: Transform + - uid: 7407 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,0.5 + parent: 2 + type: Transform + - uid: 7408 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,0.5 + parent: 2 + type: Transform + - uid: 7457 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,23.5 + parent: 2 + type: Transform + - uid: 7458 + components: + - rot: 3.141592653589793 rad + pos: 26.5,19.5 + parent: 2 + type: Transform + - uid: 7459 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,23.5 + parent: 2 + type: Transform + - uid: 7567 + components: + - rot: 3.141592653589793 rad + pos: 26.5,21.5 + parent: 2 + type: Transform + - uid: 7571 + components: + - rot: 3.141592653589793 rad + pos: 4.5,11.5 + parent: 2 + type: Transform + - uid: 7572 + components: + - rot: 3.141592653589793 rad + pos: 26.5,20.5 + parent: 2 + type: Transform + - uid: 7681 + components: + - pos: 33.5,19.5 + parent: 2 + type: Transform + - uid: 7774 + components: + - pos: 33.5,21.5 + parent: 2 + type: Transform + - uid: 7780 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,18.5 + parent: 2 + type: Transform + - uid: 7956 + components: + - pos: 33.5,20.5 + parent: 2 + type: Transform + - uid: 8270 + components: + - pos: 12.5,14.5 + parent: 2 + type: Transform + - uid: 8271 + components: + - pos: 11.5,16.5 + parent: 2 + type: Transform + - uid: 8275 + components: + - pos: 11.5,17.5 + parent: 2 + type: Transform + - uid: 8278 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,18.5 + parent: 2 + type: Transform + - uid: 8279 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,18.5 + parent: 2 + type: Transform + - uid: 8280 + components: + - rot: 3.141592653589793 rad + pos: 14.5,19.5 + parent: 2 + type: Transform + - uid: 8281 + components: + - rot: 3.141592653589793 rad + pos: 11.5,12.5 + parent: 2 + type: Transform + - uid: 8282 + components: + - rot: 3.141592653589793 rad + pos: 11.5,11.5 + parent: 2 + type: Transform + - uid: 8928 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-0.5 + parent: 2 + type: Transform + - uid: 8929 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-1.5 + parent: 2 + type: Transform + - uid: 8973 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-2.5 + parent: 2 + type: Transform + - uid: 8974 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-3.5 + parent: 2 + type: Transform + - uid: 8975 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-4.5 + parent: 2 + type: Transform + - uid: 8976 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-5.5 + parent: 2 + type: Transform + - uid: 8977 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-6.5 + parent: 2 + type: Transform + - uid: 8978 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-7.5 + parent: 2 + type: Transform + - uid: 8979 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-8.5 + parent: 2 + type: Transform + - uid: 8980 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-9.5 + parent: 2 + type: Transform + - uid: 8981 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,-9.5 + parent: 2 + type: Transform + - uid: 8982 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-9.5 + parent: 2 + type: Transform + - uid: 9405 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,42.5 + parent: 2 + type: Transform + - uid: 9406 + components: + - pos: 32.5,43.5 + parent: 2 + type: Transform + - uid: 9407 + components: + - pos: 32.5,44.5 + parent: 2 + type: Transform + - uid: 9408 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,45.5 + parent: 2 + type: Transform + - uid: 9409 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,45.5 + parent: 2 + type: Transform + - uid: 9410 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,45.5 + parent: 2 + type: Transform + - uid: 9412 + components: + - pos: 28.5,43.5 + parent: 2 + type: Transform + - uid: 9413 + components: + - pos: 28.5,42.5 + parent: 2 + type: Transform + - uid: 9414 + components: + - pos: 28.5,41.5 + parent: 2 + type: Transform + - uid: 9415 + components: + - pos: 28.5,40.5 + parent: 2 + type: Transform + - uid: 9416 + components: + - pos: 28.5,39.5 + parent: 2 + type: Transform + - uid: 9417 + components: + - pos: 28.5,38.5 + parent: 2 + type: Transform + - uid: 9418 + components: + - pos: 28.5,37.5 + parent: 2 + type: Transform + - uid: 9419 + components: + - pos: 28.5,36.5 + parent: 2 + type: Transform + - uid: 9421 + components: + - pos: 26.5,24.5 + parent: 2 + type: Transform + - uid: 9422 + components: + - pos: 26.5,25.5 + parent: 2 + type: Transform + - uid: 9423 + components: + - pos: 26.5,26.5 + parent: 2 + type: Transform + - uid: 9424 + components: + - pos: 26.5,27.5 + parent: 2 + type: Transform + - uid: 9425 + components: + - pos: 26.5,28.5 + parent: 2 + type: Transform + - uid: 9426 + components: + - pos: 26.5,29.5 + parent: 2 + type: Transform + - uid: 9427 + components: + - pos: 26.5,30.5 + parent: 2 + type: Transform + - uid: 9428 + components: + - pos: 26.5,31.5 + parent: 2 + type: Transform + - uid: 9429 + components: + - pos: 26.5,32.5 + parent: 2 + type: Transform + - uid: 9430 + components: + - pos: 26.5,33.5 + parent: 2 + type: Transform + - uid: 10256 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-3.5 + parent: 2 + type: Transform + - uid: 10257 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-3.5 + parent: 2 + type: Transform + - uid: 10258 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-3.5 + parent: 2 + type: Transform + - uid: 10259 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-3.5 + parent: 2 + type: Transform + - uid: 10260 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-3.5 + parent: 2 + type: Transform + - uid: 10261 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-3.5 + parent: 2 + type: Transform + - uid: 10262 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 2 + type: Transform + - uid: 10263 + components: + - pos: 12.5,-2.5 + parent: 2 + type: Transform + - uid: 10264 + components: + - pos: 12.5,-1.5 + parent: 2 + type: Transform + - uid: 10265 + components: + - pos: 12.5,-0.5 + parent: 2 + type: Transform + - uid: 10587 + components: + - rot: 3.141592653589793 rad + pos: 54.5,12.5 + parent: 2 + type: Transform + - uid: 10588 + components: + - rot: 3.141592653589793 rad + pos: 54.5,13.5 + parent: 2 + type: Transform + - uid: 10589 + components: + - rot: 3.141592653589793 rad + pos: 58.5,21.5 + parent: 2 + type: Transform + - uid: 10590 + components: + - rot: 3.141592653589793 rad + pos: 58.5,20.5 + parent: 2 + type: Transform + - uid: 10591 + components: + - rot: 3.141592653589793 rad + pos: 58.5,19.5 + parent: 2 + type: Transform + - uid: 10592 + components: + - rot: 3.141592653589793 rad + pos: 58.5,17.5 + parent: 2 + type: Transform + - uid: 10593 + components: + - rot: 3.141592653589793 rad + pos: 58.5,16.5 + parent: 2 + type: Transform + - uid: 10594 + components: + - rot: 3.141592653589793 rad + pos: 58.5,15.5 + parent: 2 + type: Transform + - uid: 10595 + components: + - rot: 1.5707963267948966 rad + pos: 57.5,14.5 + parent: 2 + type: Transform + - uid: 10596 + components: + - rot: 1.5707963267948966 rad + pos: 56.5,14.5 + parent: 2 + type: Transform + - uid: 10597 + components: + - rot: 1.5707963267948966 rad + pos: 55.5,14.5 + parent: 2 + type: Transform + - uid: 10603 + components: + - rot: 1.5707963267948966 rad + pos: 51.5,18.5 + parent: 2 + type: Transform + - uid: 10604 + components: + - rot: 1.5707963267948966 rad + pos: 52.5,18.5 + parent: 2 + type: Transform + - uid: 10605 + components: + - rot: 1.5707963267948966 rad + pos: 53.5,18.5 + parent: 2 + type: Transform + - uid: 10606 + components: + - rot: 1.5707963267948966 rad + pos: 54.5,18.5 + parent: 2 + type: Transform + - uid: 10607 + components: + - rot: 1.5707963267948966 rad + pos: 55.5,18.5 + parent: 2 + type: Transform + - uid: 10608 + components: + - rot: 1.5707963267948966 rad + pos: 56.5,18.5 + parent: 2 + type: Transform + - uid: 10609 + components: + - rot: 1.5707963267948966 rad + pos: 57.5,18.5 + parent: 2 + type: Transform + - uid: 10610 + components: + - rot: 1.5707963267948966 rad + pos: 53.5,14.5 + parent: 2 + type: Transform + - uid: 10611 + components: + - rot: 1.5707963267948966 rad + pos: 52.5,14.5 + parent: 2 + type: Transform + - uid: 10612 + components: + - rot: 1.5707963267948966 rad + pos: 51.5,14.5 + parent: 2 + type: Transform + - uid: 10613 + components: + - rot: 1.5707963267948966 rad + pos: 50.5,14.5 + parent: 2 + type: Transform + - uid: 10614 + components: + - rot: 1.5707963267948966 rad + pos: 49.5,14.5 + parent: 2 + type: Transform + - uid: 10615 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,14.5 + parent: 2 + type: Transform + - uid: 10616 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,14.5 + parent: 2 + type: Transform + - uid: 10617 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,14.5 + parent: 2 + type: Transform + - uid: 10618 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,14.5 + parent: 2 + type: Transform + - uid: 10619 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,14.5 + parent: 2 + type: Transform + - uid: 10620 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,14.5 + parent: 2 + type: Transform + - uid: 10621 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,14.5 + parent: 2 + type: Transform + - uid: 10623 + components: + - pos: 41.5,13.5 + parent: 2 + type: Transform + - uid: 10624 + components: + - pos: 41.5,12.5 + parent: 2 + type: Transform + - uid: 10625 + components: + - pos: 41.5,11.5 + parent: 2 + type: Transform + - uid: 10626 + components: + - pos: 41.5,10.5 + parent: 2 + type: Transform + - uid: 10627 + components: + - pos: 41.5,9.5 + parent: 2 + type: Transform + - uid: 10628 + components: + - pos: 41.5,8.5 + parent: 2 + type: Transform + - uid: 10629 + components: + - pos: 41.5,7.5 + parent: 2 + type: Transform + - uid: 10630 + components: + - pos: 41.5,6.5 + parent: 2 + type: Transform + - uid: 10631 + components: + - pos: 41.5,5.5 + parent: 2 + type: Transform + - uid: 10632 + components: + - pos: 41.5,4.5 + parent: 2 + type: Transform + - uid: 10633 + components: + - pos: 41.5,3.5 + parent: 2 + type: Transform + - uid: 10634 + components: + - pos: 41.5,2.5 + parent: 2 + type: Transform + - uid: 11441 + components: + - rot: -1.5707963267948966 rad + pos: 55.5,-9.5 + parent: 2 + type: Transform + - uid: 11442 + components: + - rot: 3.141592653589793 rad + pos: 56.5,-8.5 + parent: 2 + type: Transform + - uid: 11443 + components: + - rot: 3.141592653589793 rad + pos: 56.5,-7.5 + parent: 2 + type: Transform + - uid: 11444 + components: + - rot: 1.5707963267948966 rad + pos: 55.5,-6.5 + parent: 2 + type: Transform + - uid: 11445 + components: + - rot: 1.5707963267948966 rad + pos: 54.5,-6.5 + parent: 2 + type: Transform + - uid: 11446 + components: + - pos: 56.5,-5.5 + parent: 2 + type: Transform + - uid: 11447 + components: + - pos: 56.5,-4.5 + parent: 2 + type: Transform + - uid: 11448 + components: + - pos: 56.5,-3.5 + parent: 2 + type: Transform + - uid: 11449 + components: + - pos: 56.5,-2.5 + parent: 2 + type: Transform + - uid: 11450 + components: + - pos: 56.5,-1.5 + parent: 2 + type: Transform + - uid: 11458 + components: + - rot: -1.5707963267948966 rad + pos: 53.5,3.5 + parent: 2 + type: Transform + - uid: 11459 + components: + - rot: 3.141592653589793 rad + pos: 54.5,2.5 + parent: 2 + type: Transform + - uid: 11461 + components: + - rot: 3.141592653589793 rad + pos: 54.5,0.5 + parent: 2 + type: Transform + - uid: 11463 + components: + - rot: 1.5707963267948966 rad + pos: 53.5,-0.5 + parent: 2 + type: Transform + - uid: 11464 + components: + - rot: 1.5707963267948966 rad + pos: 52.5,-0.5 + parent: 2 + type: Transform + - uid: 11466 + components: + - rot: 1.5707963267948966 rad + pos: 51.5,-0.5 + parent: 2 + type: Transform + - uid: 11467 + components: + - rot: 1.5707963267948966 rad + pos: 50.5,-0.5 + parent: 2 + type: Transform + - uid: 11468 + components: + - rot: 1.5707963267948966 rad + pos: 49.5,-0.5 + parent: 2 + type: Transform + - uid: 11469 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,-0.5 + parent: 2 + type: Transform + - uid: 11470 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,-0.5 + parent: 2 + type: Transform + - uid: 11471 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,-0.5 + parent: 2 + type: Transform + - uid: 11473 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-0.5 + parent: 2 + type: Transform + - uid: 11474 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,-0.5 + parent: 2 + type: Transform + - uid: 11479 + components: + - rot: -1.5707963267948966 rad + pos: 80.5,1.5 + parent: 2 + type: Transform + - uid: 11480 + components: + - rot: -1.5707963267948966 rad + pos: 79.5,1.5 + parent: 2 + type: Transform + - uid: 11481 + components: + - rot: -1.5707963267948966 rad + pos: 78.5,1.5 + parent: 2 + type: Transform + - uid: 11482 + components: + - rot: -1.5707963267948966 rad + pos: 77.5,1.5 + parent: 2 + type: Transform + - uid: 11483 + components: + - rot: -1.5707963267948966 rad + pos: 76.5,1.5 + parent: 2 + type: Transform + - uid: 11484 + components: + - rot: -1.5707963267948966 rad + pos: 75.5,1.5 + parent: 2 + type: Transform + - uid: 11485 + components: + - rot: -1.5707963267948966 rad + pos: 74.5,1.5 + parent: 2 + type: Transform + - uid: 11486 + components: + - rot: -1.5707963267948966 rad + pos: 73.5,1.5 + parent: 2 + type: Transform + - uid: 11487 + components: + - rot: -1.5707963267948966 rad + pos: 72.5,1.5 + parent: 2 + type: Transform + - uid: 11488 + components: + - rot: -1.5707963267948966 rad + pos: 71.5,1.5 + parent: 2 + type: Transform + - uid: 11489 + components: + - rot: -1.5707963267948966 rad + pos: 70.5,1.5 + parent: 2 + type: Transform + - uid: 11490 + components: + - rot: -1.5707963267948966 rad + pos: 69.5,1.5 + parent: 2 + type: Transform + - uid: 11491 + components: + - rot: -1.5707963267948966 rad + pos: 68.5,1.5 + parent: 2 + type: Transform + - uid: 11492 + components: + - rot: -1.5707963267948966 rad + pos: 67.5,1.5 + parent: 2 + type: Transform + - uid: 11493 + components: + - rot: -1.5707963267948966 rad + pos: 66.5,1.5 + parent: 2 + type: Transform + - uid: 11494 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,1.5 + parent: 2 + type: Transform + - uid: 11495 + components: + - rot: -1.5707963267948966 rad + pos: 64.5,1.5 + parent: 2 + type: Transform + - uid: 11496 + components: + - rot: -1.5707963267948966 rad + pos: 63.5,1.5 + parent: 2 + type: Transform + - uid: 11497 + components: + - rot: -1.5707963267948966 rad + pos: 62.5,1.5 + parent: 2 + type: Transform + - uid: 11498 + components: + - rot: -1.5707963267948966 rad + pos: 61.5,1.5 + parent: 2 + type: Transform + - uid: 11499 + components: + - rot: -1.5707963267948966 rad + pos: 60.5,1.5 + parent: 2 + type: Transform + - uid: 11500 + components: + - rot: -1.5707963267948966 rad + pos: 59.5,1.5 + parent: 2 + type: Transform + - uid: 11501 + components: + - rot: -1.5707963267948966 rad + pos: 58.5,1.5 + parent: 2 + type: Transform + - uid: 11502 + components: + - rot: -1.5707963267948966 rad + pos: 57.5,1.5 + parent: 2 + type: Transform + - uid: 11503 + components: + - rot: -1.5707963267948966 rad + pos: 56.5,1.5 + parent: 2 + type: Transform + - uid: 11504 + components: + - rot: -1.5707963267948966 rad + pos: 55.5,1.5 + parent: 2 + type: Transform + - uid: 11776 + components: + - rot: 1.5707963267948966 rad + pos: 55.5,-0.5 + parent: 2 + type: Transform + - uid: 12169 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-13.5 + parent: 2 + type: Transform + - uid: 12426 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-14.5 + parent: 2 + type: Transform + - uid: 12427 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-14.5 + parent: 2 + type: Transform + - uid: 12428 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-14.5 + parent: 2 + type: Transform + - uid: 12429 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-14.5 + parent: 2 + type: Transform + - uid: 12430 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-14.5 + parent: 2 + type: Transform + - uid: 12431 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-14.5 + parent: 2 + type: Transform + - uid: 12432 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-14.5 + parent: 2 + type: Transform + - uid: 12433 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-14.5 + parent: 2 + type: Transform + - uid: 12434 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-14.5 + parent: 2 + type: Transform + - uid: 12435 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-14.5 + parent: 2 + type: Transform + - uid: 12436 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-14.5 + parent: 2 + type: Transform + - uid: 12437 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-14.5 + parent: 2 + type: Transform + - uid: 12438 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-14.5 + parent: 2 + type: Transform + - uid: 12439 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-14.5 + parent: 2 + type: Transform + - uid: 12441 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-12.5 + parent: 2 + type: Transform + - uid: 12442 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-11.5 + parent: 2 + type: Transform + - uid: 12443 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-10.5 + parent: 2 + type: Transform + - uid: 12444 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-9.5 + parent: 2 + type: Transform + - uid: 12445 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-8.5 + parent: 2 + type: Transform + - uid: 12446 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-7.5 + parent: 2 + type: Transform + - uid: 12448 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-6.5 + parent: 2 + type: Transform + - uid: 12450 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-5.5 + parent: 2 + type: Transform + - uid: 12451 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-4.5 + parent: 2 + type: Transform + - uid: 12452 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-3.5 + parent: 2 + type: Transform + - uid: 12453 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-2.5 + parent: 2 + type: Transform + - uid: 12454 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-1.5 + parent: 2 + type: Transform + - uid: 12458 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 2 + type: Transform + - uid: 12460 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 2 + type: Transform + - uid: 12461 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 2 + type: Transform + - uid: 12463 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 2 + type: Transform + - uid: 12464 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 2 + type: Transform + - uid: 12465 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 2 + type: Transform + - uid: 12466 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 2 + type: Transform + - uid: 12467 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 2 + type: Transform + - uid: 12468 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 2 + type: Transform + - uid: 12469 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 2 + type: Transform + - uid: 12482 + components: + - pos: 27.5,2.5 + parent: 2 + type: Transform + - uid: 12491 + components: + - pos: 27.5,1.5 + parent: 2 + type: Transform + - uid: 12837 + components: + - pos: 26.5,-27.5 + parent: 2 + type: Transform + - uid: 12838 + components: + - pos: 26.5,-26.5 + parent: 2 + type: Transform +- proto: DisposalTrunk + entities: + - uid: 183 + components: + - rot: 1.5707963267948966 rad + pos: 57.5,22.5 + parent: 2 + type: Transform + - uid: 184 + components: + - rot: 3.141592653589793 rad + pos: 50.5,17.5 + parent: 2 + type: Transform + - uid: 2132 + components: + - pos: 36.5,19.5 + parent: 2 + type: Transform + - uid: 2320 + components: + - pos: 4.5,13.5 + parent: 2 + type: Transform + - uid: 3263 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,20.5 + parent: 2 + type: Transform + - uid: 5143 + components: + - pos: 32.5,2.5 + parent: 2 + type: Transform + - uid: 5692 + components: + - pos: 16.5,-33.5 + parent: 2 + type: Transform + - uid: 5693 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-33.5 + parent: 2 + type: Transform + - uid: 5694 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-25.5 + parent: 2 + type: Transform + - uid: 5839 + components: + - pos: 2.5,-28.5 + parent: 2 + type: Transform + - uid: 5878 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,7.5 + parent: 2 + type: Transform + - uid: 5969 + components: + - pos: 22.5,15.5 + parent: 2 + type: Transform + - uid: 6008 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,42.5 + parent: 2 + type: Transform + - uid: 7288 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-2.5 + parent: 2 + type: Transform + - uid: 7392 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-11.5 + parent: 2 + type: Transform + - uid: 7398 + components: + - rot: 3.141592653589793 rad + pos: 41.5,-1.5 + parent: 2 + type: Transform + - uid: 8925 + components: + - rot: 3.141592653589793 rad + pos: 37.5,-10.5 + parent: 2 + type: Transform + - uid: 9404 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,44.5 + parent: 2 + type: Transform + - uid: 9420 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,34.5 + parent: 2 + type: Transform + - uid: 10254 + components: + - pos: 20.5,-2.5 + parent: 2 + type: Transform + - uid: 10585 + components: + - rot: -1.5707963267948966 rad + pos: 55.5,11.5 + parent: 2 + type: Transform + - uid: 11434 + components: + - rot: 3.141592653589793 rad + pos: 53.5,-7.5 + parent: 2 + type: Transform + - uid: 11437 + components: + - rot: 1.5707963267948966 rad + pos: 54.5,-9.5 + parent: 2 + type: Transform + - uid: 11457 + components: + - pos: 52.5,4.5 + parent: 2 + type: Transform + - uid: 11478 + components: + - rot: -1.5707963267948966 rad + pos: 81.5,1.5 + parent: 2 + type: Transform + - uid: 12422 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-14.5 + parent: 2 + type: Transform + - uid: 12471 + components: + - pos: -5.5,0.5 + parent: 2 + type: Transform + - uid: 12479 + components: + - pos: 27.5,3.5 + parent: 2 + type: Transform +- proto: DisposalUnit + entities: + - uid: 394 + components: + - pos: 4.5,13.5 + parent: 2 + type: Transform + - uid: 1150 + components: + - pos: 25.5,5.5 + parent: 2 + type: Transform + - uid: 1321 + components: + - pos: 29.5,-11.5 + parent: 2 + type: Transform + - uid: 1531 + components: + - pos: 36.5,-2.5 + parent: 2 + type: Transform + - uid: 2152 + components: + - pos: 13.5,20.5 + parent: 2 + type: Transform + - uid: 2477 + components: + - pos: 36.5,19.5 + parent: 2 + type: Transform + - uid: 4697 + components: + - pos: 22.5,15.5 + parent: 2 + type: Transform + - uid: 4979 + components: + - pos: 27.5,44.5 + parent: 2 + type: Transform + - uid: 5047 + components: + - pos: 52.5,4.5 + parent: 2 + type: Transform + - uid: 5075 + components: + - pos: 53.5,-7.5 + parent: 2 + type: Transform + - uid: 5150 + components: + - pos: 32.5,2.5 + parent: 2 + type: Transform + - uid: 5209 + components: + - pos: 70.5,8.5 + parent: 2 + type: Transform + - uid: 5228 + components: + - pos: 82.5,-3.5 + parent: 2 + type: Transform + - uid: 5341 + components: + - pos: 57.5,22.5 + parent: 2 + type: Transform + - uid: 5392 + components: + - pos: 55.5,11.5 + parent: 2 + type: Transform + - uid: 5411 + components: + - pos: 30.5,42.5 + parent: 2 + type: Transform + - uid: 6427 + components: + - pos: 17.5,7.5 + parent: 2 + type: Transform + - uid: 7297 + components: + - pos: 27.5,-33.5 + parent: 2 + type: Transform + - uid: 7300 + components: + - pos: 16.5,-33.5 + parent: 2 + type: Transform + - uid: 7397 + components: + - pos: 41.5,-1.5 + parent: 2 + type: Transform + - uid: 8361 + components: + - pos: 27.5,-25.5 + parent: 2 + type: Transform + - uid: 8848 + components: + - pos: 105.5,-10.5 + parent: 2 + type: Transform + - uid: 8857 + components: + - pos: 100.5,-10.5 + parent: 2 + type: Transform + - uid: 8924 + components: + - pos: 37.5,-10.5 + parent: 2 + type: Transform + - uid: 9431 + components: + - pos: 28.5,34.5 + parent: 2 + type: Transform + - uid: 10069 + components: + - pos: 54.5,-9.5 + parent: 2 + type: Transform + - uid: 10118 + components: + - pos: 50.5,17.5 + parent: 2 + type: Transform + - uid: 10253 + components: + - pos: 20.5,-2.5 + parent: 2 + type: Transform + - uid: 11433 + components: + - pos: 81.5,1.5 + parent: 2 + type: Transform + - uid: 12421 + components: + - pos: -21.5,-14.5 + parent: 2 + type: Transform + - uid: 12478 + components: + - pos: -5.5,0.5 + parent: 2 + type: Transform + - uid: 12492 + components: + - pos: 27.5,3.5 + parent: 2 + type: Transform +- proto: DisposalYJunction + entities: + - uid: 2442 + components: + - pos: 5.5,10.5 + parent: 2 + type: Transform + - uid: 5696 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-28.5 + parent: 2 + type: Transform + - uid: 5801 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-21.5 + parent: 2 + type: Transform + - uid: 7305 + components: + - pos: 26.5,0.5 + parent: 2 + type: Transform + - uid: 7356 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,10.5 + parent: 2 + type: Transform + - uid: 8820 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 2 + type: Transform +- proto: DogBed + entities: + - uid: 41 + components: + - pos: 12.5,31.5 + parent: 2 + type: Transform + - uid: 9716 + components: + - pos: 51.5,-8.5 + parent: 2 + type: Transform + - uid: 10280 + components: + - pos: 19.5,-5.5 + parent: 2 + type: Transform +- proto: DonkpocketBoxSpawner + entities: + - uid: 11431 + components: + - pos: 76.5,4.5 + parent: 2 + type: Transform +- proto: DoorElectronics + entities: + - uid: 1046 + components: + - pos: 32.489098,-30.527159 + parent: 2 + type: Transform + - uid: 1047 + components: + - pos: 32.489098,-30.324034 + parent: 2 + type: Transform + - uid: 5440 + components: + - pos: 9.474669,-14.422774 + parent: 2 + type: Transform + - uid: 8175 + components: + - pos: 8.486128,32.530212 + parent: 2 + type: Transform +- proto: DoubleEmergencyOxygenTankFilled + entities: + - uid: 5530 + components: + - pos: 64.522316,20.63157 + parent: 2 + type: Transform +- proto: DrinkFlask + entities: + - uid: 9223 + components: + - pos: 37.68926,43.584465 + parent: 2 + type: Transform +- proto: DrinkFlaskBar + entities: + - uid: 12497 + components: + - pos: 63.594597,-16.258825 + parent: 2 + type: Transform +- proto: DrinkGlass + entities: + - uid: 11829 + components: + - pos: 67.3298,-14.594364 + parent: 2 + type: Transform + - uid: 11831 + components: + - pos: 67.6423,-14.594364 + parent: 2 + type: Transform +- proto: DrinkGoldenCup + entities: + - uid: 12097 + components: + - pos: 19.490185,41.41655 + parent: 2 + type: Transform +- proto: DrinkHotCoco + entities: + - uid: 5451 + components: + - pos: 71.508354,37.570084 + parent: 2 + type: Transform +- proto: DrinkLemonadeGlass + entities: + - uid: 5452 + components: + - pos: 71.477104,40.663834 + parent: 2 + type: Transform +- proto: DrinkMugDog + entities: + - uid: 11968 + components: + - pos: 55.92937,-10.550333 + parent: 2 + type: Transform +- proto: DrinkMugRainbow + entities: + - uid: 12701 + components: + - pos: 107.25198,-16.370739 + parent: 2 + type: Transform +- proto: DrinkShaker + entities: + - uid: 1570 + components: + - pos: 40.567554,-11.276576 + parent: 2 + type: Transform + - uid: 11828 + components: + - pos: 67.47043,-15.094364 + parent: 2 + type: Transform +- proto: DrinkWaterCup + entities: + - uid: 5644 + components: + - pos: 16.679596,-23.530558 + parent: 2 + type: Transform + - uid: 5645 + components: + - pos: 16.678108,-23.473524 + parent: 2 + type: Transform + - uid: 5646 + components: + - pos: 16.67348,-23.408709 + parent: 2 + type: Transform + - uid: 5647 + components: + - pos: 16.678108,-23.343895 + parent: 2 + type: Transform + - uid: 10898 + components: + - pos: 64.36203,13.455295 + parent: 2 + type: Transform + - uid: 10899 + components: + - pos: 64.36203,13.580295 + parent: 2 + type: Transform + - uid: 10900 + components: + - pos: 64.36203,13.72092 + parent: 2 + type: Transform +- proto: DrinkWhiskeyBottleFull + entities: + - uid: 6809 + components: + - pos: 57.63163,-13.7188425 + parent: 2 + type: Transform +- proto: EmergencyLight + entities: + - uid: 1547 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-14.5 + parent: 2 + type: Transform + - uid: 7742 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-14.5 + parent: 2 + type: Transform + - uid: 11333 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,33.5 + parent: 2 + type: Transform + - type: ActiveEmergencyLight + - uid: 12374 + components: + - pos: 10.5,1.5 + parent: 2 + type: Transform + - type: ActiveEmergencyLight + - uid: 12375 + components: + - pos: 36.5,1.5 + parent: 2 + type: Transform + - type: ActiveEmergencyLight + - uid: 12376 + components: + - rot: -1.5707963267948966 rad + pos: 62.5,-0.5 + parent: 2 + type: Transform + - type: ActiveEmergencyLight + - uid: 12377 + components: + - pos: 16.5,-33.5 + parent: 2 + type: Transform + - type: ActiveEmergencyLight + - uid: 12379 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,25.5 + parent: 2 + type: Transform + - type: ActiveEmergencyLight + - uid: 12380 + components: + - rot: 3.141592653589793 rad + pos: 25.5,44.5 + parent: 2 + type: Transform + - type: ActiveEmergencyLight + - uid: 12381 + components: + - rot: 3.141592653589793 rad + pos: 11.5,21.5 + parent: 2 + type: Transform + - type: ActiveEmergencyLight + - uid: 12382 + components: + - pos: 33.5,15.5 + parent: 2 + type: Transform + - type: ActiveEmergencyLight + - uid: 12383 + components: + - rot: -1.5707963267948966 rad + pos: 60.5,18.5 + parent: 2 + type: Transform + - type: ActiveEmergencyLight +- proto: EmergencyRollerBedSpawnFolded + entities: + - uid: 9622 + components: + - pos: 45.379837,4.5137033 + parent: 2 + type: Transform +- proto: Emitter + entities: + - uid: 748 + components: + - pos: 9.5,-29.5 + parent: 2 + type: Transform + - uid: 749 + components: + - pos: 9.5,-30.5 + parent: 2 + type: Transform + - uid: 10875 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-47.5 + parent: 2 + type: Transform + - uid: 10876 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-55.5 + parent: 2 + type: Transform + - uid: 10904 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-47.5 + parent: 2 + type: Transform + - uid: 10958 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-55.5 + parent: 2 + type: Transform + - uid: 10963 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-58.5 + parent: 2 + type: Transform + - uid: 10965 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-58.5 + parent: 2 + type: Transform +- proto: EncryptionKeyCargo + entities: + - uid: 412 + components: + - flags: InContainer + type: MetaData + - parent: 5183 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyCommand + entities: + - uid: 413 + components: + - flags: InContainer + type: MetaData + - parent: 10443 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyCommon + entities: + - uid: 414 + components: + - flags: InContainer + type: MetaData + - parent: 12111 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyEngineering + entities: + - uid: 535 + components: + - flags: InContainer + type: MetaData + - parent: 533 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyMedical + entities: + - uid: 421 + components: + - flags: InContainer + type: MetaData + - parent: 12112 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyScience + entities: + - uid: 422 + components: + - flags: InContainer + type: MetaData + - parent: 12232 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeySecurity + entities: + - uid: 423 + components: + - flags: InContainer + type: MetaData + - parent: 12233 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyService + entities: + - uid: 424 + components: + - flags: InContainer + type: MetaData + - parent: 12395 + type: Transform + - canCollide: False + type: Physics +- proto: ExosuitFabricator + entities: + - uid: 12579 + components: + - pos: 51.5,11.5 + parent: 2 + type: Transform +- proto: ExplosivesSignMed + entities: + - uid: 10438 + components: + - pos: 61.5,28.5 + parent: 2 + type: Transform +- proto: ExtinguisherCabinetFilled + entities: + - uid: 315 + components: + - rot: 3.141592653589793 rad + pos: 7.5,4.5 + parent: 2 + type: Transform + - uid: 582 + components: + - pos: 21.5,-4.5 + parent: 2 + type: Transform + - opened: True + type: ItemCabinet + - uid: 783 + components: + - pos: 20.5,-22.5 + parent: 2 + type: Transform + - uid: 1947 + components: + - pos: 32.5,-29.5 + parent: 2 + type: Transform + - uid: 5111 + components: + - pos: 52.5,12.5 + parent: 2 + type: Transform + - uid: 5336 + components: + - pos: 53.5,22.5 + parent: 2 + type: Transform + - uid: 5337 + components: + - pos: 50.5,22.5 + parent: 2 + type: Transform + - uid: 5347 + components: + - pos: 62.5,21.5 + parent: 2 + type: Transform + - uid: 5348 + components: + - pos: 68.5,12.5 + parent: 2 + type: Transform + - uid: 5658 + components: + - pos: 29.5,-33.5 + parent: 2 + type: Transform + - uid: 5659 + components: + - pos: 23.5,-33.5 + parent: 2 + type: Transform + - uid: 6026 + components: + - pos: 8.5,-13.5 + parent: 2 + type: Transform + - uid: 6069 + components: + - pos: 14.5,2.5 + parent: 2 + type: Transform + - uid: 6635 + components: + - pos: 40.5,-5.5 + parent: 2 + type: Transform + - uid: 7818 + components: + - pos: -21.5,-15.5 + parent: 2 + type: Transform + - uid: 7833 + components: + - pos: -9.5,-15.5 + parent: 2 + type: Transform + - uid: 8985 + components: + - pos: 36.5,16.5 + parent: 2 + type: Transform + - uid: 9399 + components: + - pos: 33.5,47.5 + parent: 2 + type: Transform + - uid: 9628 + components: + - pos: 47.5,5.5 + parent: 2 + type: Transform + - uid: 11066 + components: + - pos: 14.5,11.5 + parent: 2 + type: Transform +- proto: FaxMachineBase + entities: + - uid: 1622 + components: + - pos: 63.5,10.5 + parent: 2 + type: Transform + - name: RD Office + type: FaxMachine + - uid: 1649 + components: + - pos: 8.5,3.5 + parent: 2 + type: Transform + - name: Library + type: FaxMachine + - uid: 2134 + components: + - pos: 11.5,31.5 + parent: 2 + type: Transform + - name: QM Office + type: FaxMachine + - uid: 2394 + components: + - pos: 12.5,-33.5 + parent: 2 + type: Transform + - name: CE Office + type: FaxMachine + - uid: 7566 + components: + - pos: 45.5,24.5 + parent: 2 + type: Transform + - name: HoS Office + type: FaxMachine + - uid: 7728 + components: + - pos: -1.5,-11.5 + parent: 2 + type: Transform + - name: Law Office + type: FaxMachine + - uid: 7745 + components: + - pos: 20.5,24.5 + parent: 2 + type: Transform + - name: Cargo + type: FaxMachine + - uid: 8320 + components: + - pos: 36.5,25.5 + parent: 2 + type: Transform + - name: Security + type: FaxMachine + - uid: 9006 + components: + - pos: 18.5,29.5 + parent: 2 + type: Transform + - name: Court House + type: FaxMachine + - uid: 10070 + components: + - pos: 58.5,-9.5 + parent: 2 + type: Transform + - name: CMO Office + type: FaxMachine + - uid: 10271 + components: + - pos: 18.5,-2.5 + parent: 2 + type: Transform + - name: HoP Office + type: FaxMachine + - uid: 11947 + components: + - pos: 23.5,40.5 + parent: 2 + type: Transform + - name: Conference Room + type: FaxMachine +- proto: FaxMachineCaptain + entities: + - uid: 1465 + components: + - pos: 30.5,41.5 + parent: 2 + type: Transform +- proto: filingCabinet + entities: + - uid: 12088 + components: + - pos: 45.5,22.5 + parent: 2 + type: Transform + - uid: 12092 + components: + - pos: 17.5,23.5 + parent: 2 + type: Transform +- proto: filingCabinetDrawerRandom + entities: + - uid: 108 + components: + - pos: -3.5,-12.5 + parent: 2 + type: Transform + - uid: 386 + components: + - pos: 13.5,30.5 + parent: 2 + type: Transform + - uid: 9005 + components: + - pos: 19.5,29.5 + parent: 2 + type: Transform + - uid: 10659 + components: + - pos: 63.5,11.5 + parent: 2 + type: Transform + - uid: 12607 + components: + - pos: 73.5,-0.5 + parent: 2 + type: Transform +- proto: filingCabinetRandom + entities: + - uid: 5158 + components: + - pos: 58.5,-10.5 + parent: 2 + type: Transform + - uid: 7010 + components: + - pos: 30.5,39.5 + parent: 2 + type: Transform + - uid: 7834 + components: + - pos: 41.5,19.5 + parent: 2 + type: Transform + - uid: 8445 + components: + - pos: 36.5,24.5 + parent: 2 + type: Transform + - uid: 10276 + components: + - pos: 15.5,-5.5 + parent: 2 + type: Transform +- proto: filingCabinetTallRandom + entities: + - uid: 5198 + components: + - pos: 60.5,-11.5 + parent: 2 + type: Transform +- proto: FireAlarm + entities: + - uid: 5 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,24.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12522 + - 8237 + - 8238 + type: DeviceNetwork + - devices: + - 12522 + - 8237 + - 8238 + type: DeviceList + - uid: 194 + components: + - pos: 15.5,11.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 36 + - 6952 + - 11245 + - 11244 + - 12449 + - 6931 + - 6930 + - 11247 + - 11246 + type: DeviceNetwork + - devices: + - 36 + - 6952 + - 11245 + - 11244 + - 12449 + - 6931 + - 6930 + - 11247 + - 11246 + type: DeviceList + - uid: 1016 + components: + - pos: 29.5,-34.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1018 + - 12396 + - 5620 + - 5619 + - 5656 + - 5657 + - 5617 + - 5618 + - 831 + - 802 + - 5621 + - 5622 + type: DeviceNetwork + - devices: + - 1018 + - 12396 + - 5620 + - 5619 + - 5656 + - 5657 + - 5617 + - 5618 + - 831 + - 802 + - 5621 + - 5622 + type: DeviceList + - uid: 1657 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 6641 + - 6644 + - 6643 + - 6642 + - 6636 + - 1514 + - 742 + - 873 + - 554 + - 558 + - 1511 + - 1515 + - 1513 + type: DeviceNetwork + - devices: + - 6641 + - 6644 + - 6643 + - 6642 + - 6636 + - 1514 + - 742 + - 873 + - 554 + - 558 + - 1511 + - 1515 + - 1513 + type: DeviceList + - uid: 2123 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-13.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 7748 + - 7747 + - 7746 + - 102 + - 7749 + - 7750 + - 2125 + - 7740 + - 7895 + - 6854 + - 7663 + - 7889 + - 131 + - 7950 + type: DeviceNetwork + - devices: + - 7748 + - 7747 + - 7746 + - 102 + - 7749 + - 7750 + - 2125 + - 7740 + - 7895 + - 6854 + - 7663 + - 7889 + - 131 + - 7950 + type: DeviceList + - uid: 2474 + components: + - rot: -1.5707963267948966 rad + pos: 61.5,22.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12559 + - 10413 + - 10414 + - 10415 + type: DeviceNetwork + - devices: + - 12559 + - 10413 + - 10414 + - 10415 + type: DeviceList + - uid: 4049 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-33.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 5657 + - 5656 + - 1018 + - 169 + - 1024 + - 5684 + type: DeviceNetwork + - devices: + - 5657 + - 5656 + - 1018 + - 169 + - 1024 + - 5684 + type: DeviceList + - uid: 5077 + components: + - pos: 35.5,2.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 6800 + - 6799 + - 6790 + - 6801 + - 6802 + - 6803 + - 8317 + - 253 + - 7709 + - 2315 + - 7938 + - 8003 + - 8004 + - 6644 + - 6641 + - 6642 + - 6643 + - 6621 + - 4919 + - 7011 + - 6620 + - 5144 + type: DeviceNetwork + - devices: + - 6800 + - 6799 + - 6790 + - 6801 + - 6802 + - 6803 + - 8317 + - 253 + - 7709 + - 2315 + - 7938 + - 8003 + - 8004 + - 6644 + - 6641 + - 6642 + - 6643 + - 6621 + - 4919 + - 7011 + - 6620 + - 5144 + type: DeviceList + - uid: 6633 + components: + - rot: 3.141592653589793 rad + pos: 40.5,-13.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1511 + - 1515 + - 1513 + - 6645 + - 6637 + type: DeviceNetwork + - devices: + - 1511 + - 1515 + - 1513 + - 6645 + - 6637 + type: DeviceList + - uid: 6634 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 6523 + - 1510 + type: DeviceNetwork + - devices: + - 1514 + - 742 + - 873 + - 554 + - 558 + - 6638 + - 6523 + - 1510 + type: DeviceList + - uid: 6683 + components: + - rot: 3.141592653589793 rad + pos: 43.5,-8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 6523 + - 1510 + - 6509 + - 6568 + - 12077 + - 6684 + type: DeviceNetwork + - devices: + - 6523 + - 1510 + - 6509 + - 6568 + - 12077 + - 6684 + type: DeviceList + - uid: 7662 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 7748 + - 7747 + - 7746 + - 102 + - 7749 + - 7750 + - 2125 + - 7740 + - 7895 + - 6854 + - 7663 + - 7889 + - 131 + - 7950 + type: DeviceNetwork + - devices: + - 7748 + - 7747 + - 7746 + - 102 + - 7749 + - 7750 + - 2125 + - 7740 + - 7895 + - 6854 + - 7663 + - 7889 + - 131 + - 7950 + type: DeviceList + - uid: 7842 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-15.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 7748 + - 7747 + - 7746 + - 102 + - 7749 + - 7750 + - 7843 + type: DeviceNetwork + - devices: + - 7748 + - 7747 + - 7746 + - 102 + - 7749 + - 7750 + - 7843 + type: DeviceList + - uid: 8005 + components: + - pos: 13.5,2.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 8004 + - 8003 + - 7938 + - 2315 + - 7709 + - 253 + - 7950 + - 131 + - 7889 + - 7663 + - 6854 + - 7895 + - 8008 + - 36 + - 6952 + - 11244 + - 11245 + type: DeviceNetwork + - devices: + - 8004 + - 8003 + - 7938 + - 2315 + - 7709 + - 253 + - 7950 + - 131 + - 7889 + - 7663 + - 6854 + - 7895 + - 8008 + - 36 + - 6952 + - 11244 + - 11245 + type: DeviceList + - uid: 8006 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,12.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 8004 + - 8003 + - 7938 + - 2315 + - 7709 + - 253 + - 7950 + - 131 + - 7889 + - 7663 + - 6854 + - 7895 + - 8008 + - 36 + - 6952 + - 11244 + - 11245 + type: DeviceNetwork + - devices: + - 8004 + - 8003 + - 7938 + - 2315 + - 7709 + - 253 + - 7950 + - 131 + - 7889 + - 7663 + - 6854 + - 7895 + - 8008 + - 36 + - 6952 + - 11244 + - 11245 + type: DeviceList + - uid: 8007 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 8004 + - 8003 + - 7938 + - 2315 + - 7709 + - 253 + - 7950 + - 131 + - 7889 + - 7663 + - 6854 + - 7895 + - 8008 + - 36 + - 6952 + - 11244 + - 11245 + type: DeviceNetwork + - devices: + - 8004 + - 8003 + - 7938 + - 2315 + - 7709 + - 253 + - 7950 + - 131 + - 7889 + - 7663 + - 6854 + - 7895 + - 8008 + - 36 + - 6952 + - 11244 + - 11245 + type: DeviceList + - uid: 8316 + components: + - pos: 21.5,2.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 6800 + - 6799 + - 6790 + - 6801 + - 6802 + - 6803 + - 8317 + - 253 + - 7709 + - 2315 + - 7938 + - 8003 + - 8004 + - 6644 + - 6641 + - 6642 + - 6643 + - 6621 + - 4919 + - 7011 + - 6620 + - 5144 + type: DeviceNetwork + - devices: + - 6800 + - 6799 + - 6790 + - 6801 + - 6802 + - 6803 + - 8317 + - 253 + - 7709 + - 2315 + - 7938 + - 8003 + - 8004 + - 6644 + - 6641 + - 6642 + - 6643 + - 6621 + - 4919 + - 7011 + - 6620 + - 5144 + type: DeviceList + - uid: 8920 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10206 + - 10205 + type: DeviceNetwork + - devices: + - 8923 + - 6801 + - 6802 + - 6803 + - 6790 + - 6799 + - 6800 + - 10206 + - 10205 + type: DeviceList + - uid: 9588 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,30.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9586 + - 9585 + - 9584 + - 9589 + type: DeviceNetwork + - devices: + - 9586 + - 9585 + - 9584 + - 9589 + type: DeviceList + - uid: 10208 + components: + - pos: 23.5,-8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10216 + - 10205 + - 10206 + type: DeviceNetwork + - devices: + - 10216 + - 10205 + - 10206 + type: DeviceList + - uid: 10956 + components: + - pos: 16.5,-32.5 + parent: 2 + type: Transform + - devices: + - 8659 + type: DeviceList + - uid: 10964 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,19.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9586 + - 9585 + - 9584 + type: DeviceNetwork + - devices: + - 1103 + - 1104 + - 11472 + - 11250 + - 11249 + - 11248 + - 11322 + - 11323 + - 11324 + - 12516 + - 12085 + - 9586 + - 9585 + - 9584 + type: DeviceList + - uid: 11507 + components: + - rot: 3.141592653589793 rad + pos: 48.5,-2.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11509 + - 11526 + - 11527 + - 11254 + - 11255 + - 11256 + - 11506 + - 11505 + - 6616 + - 3983 + - 2993 + - 2994 + - 11321 + - 11320 + - 11319 + - 8293 + - 8291 + - 5026 + - 5144 + - 4919 + - 7011 + - 6509 + - 6568 + type: DeviceNetwork + - devices: + - 11509 + - 11526 + - 11527 + - 11254 + - 11255 + - 11256 + - 11506 + - 11505 + - 6616 + - 3983 + - 2993 + - 2994 + - 11321 + - 11320 + - 11319 + - 8293 + - 8291 + - 5026 + - 5144 + - 4919 + - 7011 + - 6509 + - 6568 + type: DeviceList + - uid: 12153 + components: + - pos: 55.5,4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11254 + - 11255 + - 11256 + - 11506 + - 11505 + - 6616 + - 11317 + - 5176 + - 11325 + - 5188 + - 5190 + - 11332 + - 11355 + - 12158 + - 12159 + - 12161 + - 12162 + type: DeviceNetwork + - devices: + - 11254 + - 11255 + - 11256 + - 11506 + - 11505 + - 6616 + - 11317 + - 5176 + - 11325 + - 5188 + - 5190 + - 11332 + - 11355 + - 12158 + - 12159 + - 12161 + - 12162 + type: DeviceList + - uid: 12154 + components: + - pos: 69.5,3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11254 + - 11255 + - 11256 + - 11506 + - 11505 + - 6616 + - 11317 + - 5176 + - 11325 + - 5188 + - 5190 + - 11332 + - 11355 + - 12158 + - 12159 + - 12161 + - 12162 + type: DeviceNetwork + - devices: + - 11254 + - 11255 + - 11256 + - 11506 + - 11505 + - 6616 + - 11317 + - 5176 + - 11325 + - 5188 + - 5190 + - 11332 + - 11355 + - 12158 + - 12159 + - 12161 + - 12162 + type: DeviceList + - uid: 12474 + components: + - pos: 19.5,16.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12472 + - 6928 + - 6929 + - 11264 + - 11263 + - 6930 + - 6931 + - 11246 + - 11247 + type: DeviceNetwork + - devices: + - 11247 + - 11246 + - 12472 + - 11264 + - 11263 + - 6928 + - 6929 + - 6930 + - 6931 + type: DeviceList + - uid: 12477 + components: + - pos: 28.5,16.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9352 + - 9353 + - 9351 + type: DeviceNetwork + - devices: + - 11264 + - 11263 + - 1103 + - 1104 + - 11472 + - 12475 + - 6928 + - 6929 + - 3457 + - 3458 + - 3459 + - 9352 + - 9353 + - 9351 + type: DeviceList + - uid: 12483 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11319 + - 11320 + - 11321 + - 5026 + - 9364 + - 9363 + - 9362 + - 11253 + - 11252 + - 11251 + - 8291 + - 8293 + - 11746 + type: DeviceNetwork + - devices: + - 11746 + - 8293 + - 8291 + - 5026 + - 11321 + - 11320 + - 11319 + - 11251 + - 11252 + - 11253 + - 9364 + - 9363 + - 9362 + type: DeviceList + - uid: 12487 + components: + - pos: 44.5,16.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11253 + - 11252 + - 11251 + - 9362 + - 12087 + - 9352 + - 9353 + - 11413 + - 9363 + - 9364 + - 12485 + - 9351 + type: DeviceNetwork + - devices: + - 12485 + - 9364 + - 9363 + - 9362 + - 11251 + - 11252 + - 11253 + - 11413 + - 9351 + - 9353 + - 9352 + - 12087 + type: DeviceList + - uid: 12489 + components: + - rot: 3.141592653589793 rad + pos: 53.5,-8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12490 + - 12077 + - 11858 + - 12075 + - 12076 + type: DeviceNetwork + - devices: + - 12077 + - 11858 + - 12075 + - 12490 + - 12076 + type: DeviceList + - uid: 12517 + components: + - pos: 22.5,26.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12518 + - 11324 + - 11323 + - 11322 + - 11248 + - 11249 + - 11250 + type: DeviceNetwork + - devices: + - 11250 + - 11249 + - 11248 + - 11322 + - 11323 + - 11324 + - 12518 + type: DeviceList + - uid: 12521 + components: + - pos: 18.5,25.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 8237 + - 8238 + - 12086 + type: DeviceNetwork + - devices: + - 12519 + - 12086 + - 8237 + - 8238 + type: DeviceList + - uid: 12549 + components: + - pos: 49.5,22.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12087 + - 12550 + type: DeviceNetwork + - devices: + - 12550 + - 12087 + type: DeviceList + - uid: 12556 + components: + - pos: 61.5,16.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1252 + - 1162 + - 6473 + type: DeviceNetwork + - devices: + - 10416 + - 10417 + - 10418 + - 12554 + - 1252 + - 1162 + - 6473 + type: DeviceList + - uid: 12557 + components: + - rot: -1.5707963267948966 rad + pos: 61.5,19.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10416 + - 10417 + - 10418 + - 185 + - 10413 + - 10414 + - 10415 + type: DeviceNetwork + - devices: + - 10416 + - 10417 + - 10418 + - 185 + - 10413 + - 10414 + - 10415 + type: DeviceList +- proto: FireAxeCabinetFilled + entities: + - uid: 1571 + components: + - pos: 31.5,-22.5 + parent: 2 + type: Transform + - uid: 5428 + components: + - pos: 30.514431,43.46267 + parent: 2 + type: Transform +- proto: FireExtinguisher + entities: + - uid: 5529 + components: + - pos: 64.491066,18.615946 + parent: 2 + type: Transform + - uid: 5722 + components: + - pos: 73.5,-12.5 + parent: 2 + type: Transform + - uid: 10797 + components: + - pos: 80.48026,-16.378305 + parent: 2 + type: Transform + - uid: 10826 + components: + - pos: 81.454414,9.641975 + parent: 2 + type: Transform + - uid: 10850 + components: + - pos: 45.471096,27.597694 + parent: 2 + type: Transform +- proto: FirelockEdge + entities: + - uid: 36 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,9.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 194 + - 12447 + - 8006 + - 8007 + - 8005 + - 8011 + type: DeviceNetwork + - uid: 102 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-12.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 7842 + - 7839 + - 7662 + - 2123 + - 2124 + type: DeviceNetwork + - uid: 131 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 7662 + - 2123 + - 2124 + - 8006 + - 8007 + - 8005 + - 8011 + type: DeviceNetwork + - uid: 253 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 8006 + - 8007 + - 8005 + - 8011 + - 5077 + - 8316 + - 5020 + type: DeviceNetwork + - uid: 802 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-38.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1016 + - 11990 + type: DeviceNetwork + - uid: 831 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-38.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1016 + - 11990 + type: DeviceNetwork + - uid: 1103 + components: + - rot: 3.141592653589793 rad + pos: 25.5,15.5 + parent: 2 + type: Transform + - uid: 1104 + components: + - rot: 3.141592653589793 rad + pos: 26.5,15.5 + parent: 2 + type: Transform + - uid: 2315 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 8006 + - 8007 + - 8005 + - 8011 + - 5077 + - 8316 + - 5020 + type: DeviceNetwork + - uid: 2993 + components: + - pos: 50.5,1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11507 + - 11508 + type: DeviceNetwork + - uid: 2994 + components: + - pos: 49.5,1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11507 + - 11508 + type: DeviceNetwork + - uid: 3457 + components: + - pos: 25.5,17.5 + parent: 2 + type: Transform + - uid: 3458 + components: + - pos: 26.5,17.5 + parent: 2 + type: Transform + - uid: 3459 + components: + - pos: 27.5,17.5 + parent: 2 + type: Transform + - uid: 3983 + components: + - pos: 51.5,1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11507 + - 11508 + type: DeviceNetwork + - uid: 4557 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-38.5 + parent: 2 + type: Transform + - uid: 4558 + components: + - rot: 3.141592653589793 rad + pos: 40.5,-38.5 + parent: 2 + type: Transform + - uid: 4560 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-38.5 + parent: 2 + type: Transform + - uid: 4561 + components: + - pos: 38.5,-36.5 + parent: 2 + type: Transform + - uid: 4565 + components: + - pos: 39.5,-36.5 + parent: 2 + type: Transform + - uid: 4566 + components: + - pos: 40.5,-36.5 + parent: 2 + type: Transform + - uid: 5026 + components: + - pos: 42.5,3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11507 + - 11508 + - 12483 + - 12484 + type: DeviceNetwork + - uid: 5176 + components: + - rot: 3.141592653589793 rad + pos: 55.5,-3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12153 + - 12154 + - 12152 + type: DeviceNetwork + - uid: 5188 + components: + - rot: 3.141592653589793 rad + pos: 59.5,-3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12153 + - 12154 + - 12152 + type: DeviceNetwork + - uid: 5190 + components: + - rot: 3.141592653589793 rad + pos: 60.5,-3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12153 + - 12154 + - 12152 + type: DeviceNetwork + - uid: 5617 + components: + - pos: 31.5,-36.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1016 + - 11990 + type: DeviceNetwork + - uid: 5618 + components: + - pos: 32.5,-36.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1016 + - 11990 + type: DeviceNetwork + - uid: 5619 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-30.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1016 + - 11990 + type: DeviceNetwork + - uid: 5620 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-30.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1016 + - 11990 + type: DeviceNetwork + - uid: 5621 + components: + - pos: 17.5,-28.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1016 + - 11990 + type: DeviceNetwork + - uid: 5622 + components: + - pos: 18.5,-28.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1016 + - 11990 + type: DeviceNetwork + - uid: 5899 + components: + - pos: 4.5,-27.5 + parent: 2 + type: Transform + - uid: 5900 + components: + - pos: 5.5,-27.5 + parent: 2 + type: Transform + - uid: 6616 + components: + - rot: -1.5707963267948966 rad + pos: 54.5,-1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11507 + - 11508 + - 12153 + - 12154 + - 12152 + type: DeviceNetwork + - uid: 6641 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-2.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1657 + - 5077 + - 8316 + - 5020 + type: DeviceNetwork + - uid: 6642 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-2.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1657 + - 5077 + - 8316 + - 5020 + type: DeviceNetwork + - uid: 6643 + components: + - pos: 35.5,-0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1657 + - 5077 + - 8316 + - 5020 + type: DeviceNetwork + - uid: 6644 + components: + - pos: 33.5,-0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1657 + - 5077 + - 8316 + - 5020 + type: DeviceNetwork + - uid: 6790 + components: + - pos: 27.5,-1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 5077 + - 8316 + - 5020 + type: DeviceNetwork + - uid: 6799 + components: + - pos: 26.5,-1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 5077 + - 8316 + - 5020 + type: DeviceNetwork + - uid: 6800 + components: + - pos: 25.5,-1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 5077 + - 8316 + - 5020 + type: DeviceNetwork + - uid: 6801 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 5077 + - 8316 + - 5020 + type: DeviceNetwork + - uid: 6802 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 5077 + - 8316 + - 5020 + type: DeviceNetwork + - uid: 6803 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 5077 + - 8316 + - 5020 + type: DeviceNetwork + - uid: 6854 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 7662 + - 2123 + - 2124 + - 8006 + - 8007 + - 8005 + - 8011 + type: DeviceNetwork + - uid: 6928 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,13.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12474 + - 12473 + type: DeviceNetwork + - uid: 6929 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,14.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12474 + - 12473 + type: DeviceNetwork + - uid: 6930 + components: + - rot: 3.141592653589793 rad + pos: 19.5,10.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12474 + - 12473 + - 194 + - 12447 + type: DeviceNetwork + - uid: 6931 + components: + - rot: 3.141592653589793 rad + pos: 18.5,10.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12474 + - 12473 + - 194 + - 12447 + type: DeviceNetwork + - uid: 6952 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,10.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 194 + - 12447 + - 8006 + - 8007 + - 8005 + - 8011 + type: DeviceNetwork + - uid: 7663 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 7662 + - 2123 + - 2124 + - 8006 + - 8007 + - 8005 + - 8011 + type: DeviceNetwork + - uid: 7709 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 8006 + - 8007 + - 8005 + - 8011 + - 5077 + - 8316 + - 5020 + type: DeviceNetwork + - uid: 7746 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-12.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 7842 + - 7839 + - 7662 + - 2123 + - 2124 + type: DeviceNetwork + - uid: 7747 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-13.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 7842 + - 7839 + - 7662 + - 2123 + - 2124 + type: DeviceNetwork + - uid: 7748 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-14.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 7842 + - 7839 + - 7662 + - 2123 + - 2124 + type: DeviceNetwork + - uid: 7749 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-13.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 7842 + - 7839 + - 7662 + - 2123 + - 2124 + type: DeviceNetwork + - uid: 7750 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-14.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 7842 + - 7839 + - 7662 + - 2123 + - 2124 + type: DeviceNetwork + - uid: 7889 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 7662 + - 2123 + - 2124 + - 8006 + - 8007 + - 8005 + - 8011 + type: DeviceNetwork + - uid: 7895 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 7662 + - 2123 + - 2124 + - 8006 + - 8007 + - 8005 + - 8011 + type: DeviceNetwork + - uid: 7938 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 8006 + - 8007 + - 8005 + - 8011 + - 5077 + - 8316 + - 5020 + type: DeviceNetwork + - uid: 7950 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 7662 + - 2123 + - 2124 + - 8006 + - 8007 + - 8005 + - 8011 + type: DeviceNetwork + - uid: 8003 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 8006 + - 8007 + - 8005 + - 8011 + - 5077 + - 8316 + - 5020 + type: DeviceNetwork + - uid: 8004 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 8006 + - 8007 + - 8005 + - 8011 + - 5077 + - 8316 + - 5020 + type: DeviceNetwork + - uid: 8291 + components: + - pos: 41.5,3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11507 + - 11508 + - 12483 + - 12484 + type: DeviceNetwork + - uid: 8293 + components: + - pos: 40.5,3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11507 + - 11508 + - 12483 + - 12484 + type: DeviceNetwork + - uid: 9362 + components: + - pos: 40.5,13.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12487 + - 12486 + - 12483 + - 12484 + type: DeviceNetwork + - uid: 9363 + components: + - pos: 41.5,13.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12487 + - 12486 + - 12483 + - 12484 + type: DeviceNetwork + - uid: 9364 + components: + - pos: 42.5,13.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12487 + - 12486 + - 12483 + - 12484 + type: DeviceNetwork + - uid: 9584 + components: + - rot: 3.141592653589793 rad + pos: 27.5,28.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10964 + - 11165 + - 9588 + - 9587 + type: DeviceNetwork + - uid: 9585 + components: + - rot: 3.141592653589793 rad + pos: 26.5,28.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10964 + - 11165 + - 9588 + - 9587 + type: DeviceNetwork + - uid: 9586 + components: + - rot: 3.141592653589793 rad + pos: 25.5,28.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10964 + - 11165 + - 9588 + - 9587 + type: DeviceNetwork + - uid: 11244 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,10.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 194 + - 12447 + - 8006 + - 8007 + - 8005 + - 8011 + type: DeviceNetwork + - uid: 11245 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,9.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 194 + - 12447 + - 8006 + - 8007 + - 8005 + - 8011 + type: DeviceNetwork + - uid: 11246 + components: + - pos: 18.5,12.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12474 + - 12473 + - 194 + - 12447 + type: DeviceNetwork + - uid: 11247 + components: + - pos: 19.5,12.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12474 + - 12473 + - 194 + - 12447 + type: DeviceNetwork + - uid: 11248 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,22.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12517 + type: DeviceNetwork + - uid: 11249 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,21.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12517 + type: DeviceNetwork + - uid: 11250 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,20.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12517 + type: DeviceNetwork + - uid: 11251 + components: + - rot: 3.141592653589793 rad + pos: 40.5,11.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12487 + - 12486 + - 12483 + - 12484 + type: DeviceNetwork + - uid: 11252 + components: + - rot: 3.141592653589793 rad + pos: 41.5,11.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12487 + - 12486 + - 12483 + - 12484 + type: DeviceNetwork + - uid: 11253 + components: + - rot: 3.141592653589793 rad + pos: 42.5,11.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12487 + - 12486 + - 12483 + - 12484 + type: DeviceNetwork + - uid: 11254 + components: + - rot: 1.5707963267948966 rad + pos: 52.5,-1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11507 + - 11508 + - 12153 + - 12154 + - 12152 + type: DeviceNetwork + - uid: 11255 + components: + - rot: 1.5707963267948966 rad + pos: 52.5,-0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11507 + - 11508 + - 12153 + - 12154 + - 12152 + type: DeviceNetwork + - uid: 11256 + components: + - rot: 1.5707963267948966 rad + pos: 52.5,0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11507 + - 11508 + - 12153 + - 12154 + - 12152 + type: DeviceNetwork + - uid: 11263 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,14.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12474 + - 12473 + type: DeviceNetwork + - uid: 11264 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,13.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12474 + - 12473 + type: DeviceNetwork + - uid: 11317 + components: + - rot: 3.141592653589793 rad + pos: 56.5,-3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12153 + - 12154 + - 12152 + type: DeviceNetwork + - uid: 11319 + components: + - rot: 3.141592653589793 rad + pos: 40.5,1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11507 + - 11508 + - 12483 + - 12484 + type: DeviceNetwork + - uid: 11320 + components: + - rot: 3.141592653589793 rad + pos: 41.5,1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11507 + - 11508 + - 12483 + - 12484 + type: DeviceNetwork + - uid: 11321 + components: + - rot: 3.141592653589793 rad + pos: 42.5,1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11507 + - 11508 + - 12483 + - 12484 + type: DeviceNetwork + - uid: 11322 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,23.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12517 + type: DeviceNetwork + - uid: 11323 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,24.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12517 + type: DeviceNetwork + - uid: 11324 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,25.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12517 + type: DeviceNetwork + - uid: 11325 + components: + - rot: 3.141592653589793 rad + pos: 57.5,-3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12153 + - 12154 + - 12152 + type: DeviceNetwork + - uid: 11332 + components: + - rot: 3.141592653589793 rad + pos: 61.5,-3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12153 + - 12154 + - 12152 + type: DeviceNetwork + - uid: 11355 + components: + - rot: 3.141592653589793 rad + pos: 62.5,-3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12153 + - 12154 + - 12152 + type: DeviceNetwork + - uid: 11413 + components: + - rot: 3.141592653589793 rad + pos: 47.5,12.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12487 + - 12486 + type: DeviceNetwork + - uid: 11472 + components: + - rot: 3.141592653589793 rad + pos: 27.5,15.5 + parent: 2 + type: Transform + - uid: 11505 + components: + - rot: -1.5707963267948966 rad + pos: 54.5,-0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11507 + - 11508 + - 12153 + - 12154 + - 12152 + type: DeviceNetwork + - uid: 11506 + components: + - rot: -1.5707963267948966 rad + pos: 54.5,0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11507 + - 11508 + - 12153 + - 12154 + - 12152 + type: DeviceNetwork + - uid: 11526 + components: + - rot: 3.141592653589793 rad + pos: 49.5,-2.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11507 + - 11508 + type: DeviceNetwork + - uid: 11527 + components: + - rot: 3.141592653589793 rad + pos: 50.5,-2.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11507 + - 11508 + type: DeviceNetwork + - uid: 12142 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,33.5 + parent: 2 + type: Transform + - uid: 12143 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,32.5 + parent: 2 + type: Transform + - uid: 12144 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,31.5 + parent: 2 + type: Transform + - uid: 12158 + components: + - rot: -1.5707963267948966 rad + pos: 69.5,0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12153 + - 12154 + - 12152 + - 12163 + type: DeviceNetwork + - uid: 12159 + components: + - rot: -1.5707963267948966 rad + pos: 69.5,1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12153 + - 12154 + - 12152 + - 12163 + type: DeviceNetwork + - uid: 12161 + components: + - rot: -1.5707963267948966 rad + pos: 69.5,2.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12153 + - 12154 + - 12152 + - 12163 + type: DeviceNetwork +- proto: FirelockElectronics + entities: + - uid: 1045 + components: + - pos: 32.473473,-30.370909 + parent: 2 + type: Transform +- proto: FirelockGlass + entities: + - uid: 169 + components: + - pos: 21.5,-29.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 4049 + - 1017 + type: DeviceNetwork + - uid: 554 + components: + - pos: 37.5,-4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1657 + - 360 + type: DeviceNetwork + - uid: 558 + components: + - pos: 37.5,-3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1657 + - 360 + type: DeviceNetwork + - uid: 742 + components: + - pos: 37.5,-6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1657 + - 360 + type: DeviceNetwork + - uid: 873 + components: + - pos: 37.5,-5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1657 + - 360 + type: DeviceNetwork + - uid: 1018 + components: + - pos: 21.5,-33.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1016 + - 11990 + - 4049 + - 1017 + type: DeviceNetwork + - uid: 1024 + components: + - pos: 31.5,-29.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 4049 + - 1017 + type: DeviceNetwork + - uid: 1162 + components: + - pos: 53.5,14.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12556 + type: DeviceNetwork + - uid: 1252 + components: + - pos: 53.5,13.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12556 + type: DeviceNetwork + - uid: 1510 + components: + - pos: 40.5,-7.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 6634 + - 6683 + - 6682 + type: DeviceNetwork + - uid: 1511 + components: + - pos: 34.5,-8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1657 + - 6633 + - 6632 + type: DeviceNetwork + - uid: 1513 + components: + - pos: 36.5,-8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1657 + - 6633 + - 6632 + type: DeviceNetwork + - uid: 1514 + components: + - pos: 37.5,-7.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1657 + - 360 + type: DeviceNetwork + - uid: 1515 + components: + - pos: 35.5,-8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1657 + - 6633 + - 6632 + type: DeviceNetwork + - uid: 4919 + components: + - pos: 39.5,0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 5077 + - 5020 + - 8316 + - 11507 + - 11508 + type: DeviceNetwork + - uid: 5144 + components: + - pos: 39.5,1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 5077 + - 5020 + - 8316 + - 11507 + - 11508 + type: DeviceNetwork + - uid: 5656 + components: + - pos: 26.5,-34.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1016 + - 11990 + - 4049 + - 1017 + type: DeviceNetwork + - uid: 5657 + components: + - pos: 31.5,-33.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1016 + - 11990 + - 4049 + - 1017 + type: DeviceNetwork + - uid: 6473 + components: + - pos: 53.5,15.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12556 + type: DeviceNetwork + - uid: 6509 + components: + - pos: 43.5,-2.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 6683 + - 6682 + - 11507 + - 11508 + type: DeviceNetwork + - uid: 6523 + components: + - pos: 40.5,-6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 6634 + - 6683 + - 6682 + type: DeviceNetwork + - uid: 6568 + components: + - pos: 44.5,-2.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 6683 + - 6682 + - 11507 + - 11508 + type: DeviceNetwork + - uid: 6645 + components: + - pos: 38.5,-8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 6633 + - 6632 + type: DeviceNetwork + - uid: 7011 + components: + - pos: 39.5,-0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 5077 + - 5020 + - 8316 + - 11507 + - 11508 + type: DeviceNetwork + - uid: 7740 + components: + - pos: -2.5,-2.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 7662 + - 2123 + - 2124 + type: DeviceNetwork + - uid: 8237 + components: + - pos: 16.5,22.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 5 + - 8239 + - 12521 + - 12520 + type: DeviceNetwork + - uid: 8238 + components: + - pos: 16.5,20.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 5 + - 8239 + - 12521 + - 12520 + type: DeviceNetwork + - uid: 8823 + components: + - pos: 49.5,-19.5 + parent: 2 + type: Transform + - uid: 9351 + components: + - pos: 38.5,13.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12477 + - 12476 + - 12487 + - 12486 + type: DeviceNetwork + - uid: 9352 + components: + - pos: 38.5,15.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12477 + - 12476 + - 12487 + - 12486 + type: DeviceNetwork + - uid: 9353 + components: + - pos: 38.5,14.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12477 + - 12476 + - 12487 + - 12486 + type: DeviceNetwork + - uid: 10205 + components: + - pos: 24.5,-11.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 8920 + - 8922 + - 10208 + - 10207 + type: DeviceNetwork + - uid: 10206 + components: + - pos: 24.5,-10.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 8920 + - 8922 + - 10208 + - 10207 + type: DeviceNetwork + - uid: 10413 + components: + - pos: 58.5,21.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12557 + - 2296 + - 2474 + - 1647 + type: DeviceNetwork + - uid: 10414 + components: + - pos: 59.5,21.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12557 + - 2296 + - 2474 + - 1647 + type: DeviceNetwork + - uid: 10415 + components: + - pos: 60.5,21.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12557 + - 2296 + - 2474 + - 1647 + type: DeviceNetwork + - uid: 10416 + components: + - pos: 58.5,16.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 151 + - 12557 + - 2296 + type: DeviceNetwork + - uid: 10417 + components: + - pos: 59.5,16.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 151 + - 12557 + - 2296 + type: DeviceNetwork + - uid: 10418 + components: + - pos: 60.5,16.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 151 + - 12557 + - 2296 + type: DeviceNetwork + - uid: 10735 + components: + - pos: 61.5,-8.5 + parent: 2 + type: Transform + - uid: 11243 + components: + - pos: 16.5,-2.5 + parent: 2 + type: Transform + - uid: 11265 + components: + - pos: 7.5,-15.5 + parent: 2 + type: Transform + - uid: 11266 + components: + - pos: 7.5,-16.5 + parent: 2 + type: Transform + - uid: 11267 + components: + - pos: 1.5,-14.5 + parent: 2 + type: Transform + - uid: 11268 + components: + - pos: 0.5,-14.5 + parent: 2 + type: Transform + - uid: 11271 + components: + - pos: 52.5,-16.5 + parent: 2 + type: Transform + - uid: 11272 + components: + - pos: 47.5,-17.5 + parent: 2 + type: Transform + - uid: 11273 + components: + - pos: 43.5,43.5 + parent: 2 + type: Transform + - uid: 11274 + components: + - pos: 44.5,43.5 + parent: 2 + type: Transform + - uid: 11279 + components: + - pos: 40.5,42.5 + parent: 2 + type: Transform + - uid: 11280 + components: + - pos: 40.5,41.5 + parent: 2 + type: Transform + - uid: 11283 + components: + - pos: 44.5,40.5 + parent: 2 + type: Transform + - uid: 11284 + components: + - pos: 45.5,40.5 + parent: 2 + type: Transform + - uid: 11285 + components: + - pos: 50.5,48.5 + parent: 2 + type: Transform + - uid: 11286 + components: + - pos: 62.5,48.5 + parent: 2 + type: Transform + - uid: 11287 + components: + - pos: 72.5,18.5 + parent: 2 + type: Transform + - uid: 11288 + components: + - pos: 74.5,14.5 + parent: 2 + type: Transform + - uid: 11294 + components: + - pos: 86.5,-13.5 + parent: 2 + type: Transform + - uid: 11295 + components: + - pos: 83.5,-15.5 + parent: 2 + type: Transform + - uid: 11296 + components: + - pos: 72.5,-15.5 + parent: 2 + type: Transform + - uid: 11297 + components: + - pos: 83.5,-16.5 + parent: 2 + type: Transform + - uid: 11298 + components: + - pos: 72.5,-16.5 + parent: 2 + type: Transform + - uid: 11299 + components: + - pos: 71.5,-12.5 + parent: 2 + type: Transform + - uid: 11300 + components: + - pos: 58.5,-19.5 + parent: 2 + type: Transform + - uid: 11301 + components: + - pos: 68.5,-19.5 + parent: 2 + type: Transform + - uid: 11329 + components: + - pos: 12.5,-21.5 + parent: 2 + type: Transform + - uid: 11334 + components: + - pos: 7.5,-23.5 + parent: 2 + type: Transform + - uid: 11335 + components: + - pos: 7.5,-24.5 + parent: 2 + type: Transform + - uid: 11349 + components: + - pos: 51.5,-16.5 + parent: 2 + type: Transform + - uid: 11351 + components: + - pos: 88.5,-17.5 + parent: 2 + type: Transform + - uid: 11353 + components: + - pos: 67.5,25.5 + parent: 2 + type: Transform + - uid: 11354 + components: + - pos: 66.5,25.5 + parent: 2 + type: Transform + - uid: 11379 + components: + - pos: 72.5,11.5 + parent: 2 + type: Transform + - uid: 11383 + components: + - pos: 72.5,10.5 + parent: 2 + type: Transform + - uid: 11384 + components: + - pos: 65.5,7.5 + parent: 2 + type: Transform + - uid: 11385 + components: + - pos: 66.5,7.5 + parent: 2 + type: Transform + - uid: 11386 + components: + - pos: 76.5,12.5 + parent: 2 + type: Transform + - uid: 11391 + components: + - pos: 23.5,9.5 + parent: 2 + type: Transform + - uid: 11392 + components: + - pos: 22.5,9.5 + parent: 2 + type: Transform + - uid: 11393 + components: + - pos: 21.5,3.5 + parent: 2 + type: Transform + - uid: 11412 + components: + - pos: 48.5,6.5 + parent: 2 + type: Transform + - uid: 11531 + components: + - pos: 73.5,14.5 + parent: 2 + type: Transform + - uid: 11810 + components: + - pos: 30.5,11.5 + parent: 2 + type: Transform + - uid: 11858 + components: + - pos: 50.5,-3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12489 + - 12488 + type: DeviceNetwork + - uid: 12075 + components: + - pos: 54.5,-4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12489 + - 12488 + type: DeviceNetwork + - uid: 12076 + components: + - pos: 54.5,-5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12489 + - 12488 + type: DeviceNetwork + - uid: 12077 + components: + - pos: 48.5,-7.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 6683 + - 6682 + - 12489 + - 12488 + type: DeviceNetwork + - uid: 12085 + components: + - pos: 28.5,25.5 + parent: 2 + type: Transform + - uid: 12086 + components: + - pos: 21.5,22.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12521 + - 12520 + type: DeviceNetwork + - uid: 12087 + components: + - pos: 48.5,18.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12487 + - 12486 + - 12549 + - 12548 + type: DeviceNetwork + - uid: 12394 + components: + - pos: 49.5,-18.5 + parent: 2 + type: Transform +- proto: Fireplace + entities: + - uid: 380 + components: + - pos: 36.5,43.5 + parent: 2 + type: Transform +- proto: Flash + entities: + - uid: 4987 + components: + - pos: 30.4376,48.510555 + parent: 2 + type: Transform +- proto: FlashlightLantern + entities: + - uid: 5714 + components: + - pos: 76.49909,-12.519633 + parent: 2 + type: Transform + - uid: 10814 + components: + - pos: 81.401146,12.491636 + parent: 2 + type: Transform +- proto: Floodlight + entities: + - uid: 4500 + components: + - pos: 34.356434,-54.33789 + parent: 2 + type: Transform +- proto: FloorDrain + entities: + - uid: 741 + components: + - pos: 30.5,-11.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 1859 + components: + - pos: 12.5,12.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 5254 + components: + - pos: 78.5,-0.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 6865 + components: + - pos: 40.5,35.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 8960 + components: + - pos: 102.5,-13.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 10447 + components: + - pos: 51.5,15.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 11900 + components: + - pos: 78.5,10.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 12288 + components: + - pos: 51.5,-5.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 12290 + components: + - pos: 4.5,-4.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures +- proto: FoodBanana + entities: + - uid: 9595 + components: + - pos: 27.618341,6.6818295 + parent: 2 + type: Transform + - uid: 9596 + components: + - pos: 27.618341,6.6818295 + parent: 2 + type: Transform + - uid: 9597 + components: + - pos: 27.618341,6.6818295 + parent: 2 + type: Transform + - uid: 9598 + components: + - pos: 27.618341,6.6818295 + parent: 2 + type: Transform + - uid: 9599 + components: + - pos: 27.618341,6.6818295 + parent: 2 + type: Transform +- proto: FoodBowlBig + entities: + - uid: 5507 + components: + - pos: 70.488464,33.529522 + parent: 2 + type: Transform +- proto: FoodBowlBigTrash + entities: + - uid: 5881 + components: + - pos: -0.3447714,-23.649889 + parent: 2 + type: Transform +- proto: FoodBoxDonkpocket + entities: + - uid: 8862 + components: + - pos: 107.64995,-11.344688 + parent: 2 + type: Transform +- proto: FoodBoxDonkpocketBerry + entities: + - uid: 8863 + components: + - pos: 107.3062,-11.344688 + parent: 2 + type: Transform +- proto: FoodBoxDonkpocketGondola + entities: + - uid: 8861 + components: + - pos: 107.35307,-10.954063 + parent: 2 + type: Transform +- proto: FoodBoxDonut + entities: + - uid: 4982 + components: + - pos: 33.510082,46.65118 + parent: 2 + type: Transform + - uid: 6761 + components: + - pos: 37.49929,-7.4188547 + parent: 2 + type: Transform +- proto: FoodBreadBananaSlice + entities: + - uid: 8651 + components: + - rot: 4.008621544926427E-05 rad + pos: 83.58996,8.734995 + parent: 2 + type: Transform +- proto: FoodCakeChocolateSlice + entities: + - uid: 10832 + components: + - rot: 3.7838042771909386E-05 rad + pos: 70.43763,11.734996 + parent: 2 + type: Transform +- proto: FoodCartCold + entities: + - uid: 1551 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-9.5 + parent: 2 + type: Transform +- proto: FoodCartHot + entities: + - uid: 1557 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-10.5 + parent: 2 + type: Transform +- proto: FoodCondimentBottleEnzyme + entities: + - uid: 296 + components: + - pos: 36.20302,-12.346379 + parent: 2 + type: Transform + - uid: 363 + components: + - pos: 36.093643,-12.174504 + parent: 2 + type: Transform + - uid: 6868 + components: + - pos: 40.839993,34.745388 + parent: 2 + type: Transform +- proto: FoodCondimentPacketKetchup + entities: + - uid: 6760 + components: + - pos: 29.437809,-3.4969797 + parent: 2 + type: Transform +- proto: FoodFrozenPopsicleTrash + entities: + - uid: 5885 + components: + - pos: 1.6864786,-25.212389 + parent: 2 + type: Transform +- proto: FoodFrozenSnowconeRainbow + entities: + - uid: 12702 + components: + - pos: 106.40823,-18.308239 + parent: 2 + type: Transform + - uid: 12703 + components: + - pos: 106.54886,-18.401989 + parent: 2 + type: Transform + - uid: 12704 + components: + - pos: 106.68948,-18.276989 + parent: 2 + type: Transform +- proto: FoodFrozenSnowconeTrash + entities: + - uid: 5884 + components: + - pos: -0.0010213852,-26.399889 + parent: 2 + type: Transform +- proto: FoodMeat + entities: + - uid: 566 + components: + - pos: 31.219597,-12.667201 + parent: 2 + type: Transform + - uid: 1176 + components: + - pos: 31.625847,-12.667201 + parent: 2 + type: Transform + - uid: 1178 + components: + - pos: 31.657097,-12.292201 + parent: 2 + type: Transform + - uid: 1496 + components: + - pos: 31.422722,-12.542201 + parent: 2 + type: Transform + - uid: 1535 + components: + - pos: 31.453972,-12.339076 + parent: 2 + type: Transform +- proto: FoodPieBananaCream + entities: + - uid: 9590 + components: + - pos: 27.383966,6.5099545 + parent: 2 + type: Transform + - uid: 9591 + components: + - pos: 27.383966,6.5099545 + parent: 2 + type: Transform + - uid: 9592 + components: + - pos: 27.383966,6.5099545 + parent: 2 + type: Transform + - uid: 9593 + components: + - pos: 27.383966,6.5099545 + parent: 2 + type: Transform + - uid: 9594 + components: + - pos: 27.383966,6.5099545 + parent: 2 + type: Transform +- proto: FoodPlateSmallTrash + entities: + - uid: 5882 + components: + - pos: 2.1083536,-26.524889 + parent: 2 + type: Transform + - uid: 5883 + components: + - pos: -0.9697714,-25.884264 + parent: 2 + type: Transform +- proto: FoodShakerPepper + entities: + - uid: 6758 + components: + - pos: 33.484684,-5.5126047 + parent: 2 + type: Transform +- proto: FoodShakerSalt + entities: + - uid: 6655 + components: + - pos: 33.71906,-5.5126047 + parent: 2 + type: Transform +- proto: FoodSnackChocolate + entities: + - uid: 12495 + components: + - pos: 11.536887,-11.535692 + parent: 2 + type: Transform +- proto: FoodTinBeansTrash + entities: + - uid: 5886 + components: + - pos: -1.0166464,-26.540514 + parent: 2 + type: Transform + - uid: 5887 + components: + - pos: 0.4677286,-25.024889 + parent: 2 + type: Transform +- proto: FoodTinMRE + entities: + - uid: 5711 + components: + - pos: 77.34284,-13.410258 + parent: 2 + type: Transform +- proto: FoodTinMRETrash + entities: + - uid: 5888 + components: + - pos: 0.8896036,-25.587389 + parent: 2 + type: Transform +- proto: FoodTinPeachesMaint + entities: + - uid: 5476 + components: + - pos: 67.5,38.5 + parent: 2 + type: Transform +- proto: ForkPlastic + entities: + - uid: 6759 + components: + - pos: 33.59406,-4.5126047 + parent: 2 + type: Transform +- proto: GasFilterFlipped + entities: + - uid: 2730 + components: + - rot: 3.141592653589793 rad + pos: 40.5,-33.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2785 + components: + - rot: 3.141592653589793 rad + pos: 40.5,-25.5 + parent: 2 + type: Transform + - uid: 4102 + components: + - rot: 3.141592653589793 rad + pos: 40.5,-29.5 + parent: 2 + type: Transform + - uid: 4154 + components: + - rot: 3.141592653589793 rad + pos: 40.5,-23.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4156 + components: + - rot: 3.141592653589793 rad + pos: 40.5,-27.5 + parent: 2 + type: Transform + - uid: 4176 + components: + - rot: 3.141592653589793 rad + pos: 40.5,-31.5 + parent: 2 + type: Transform + - uid: 4903 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-39.5 + parent: 2 + type: Transform + - uid: 11767 + components: + - rot: -1.5707963267948966 rad + pos: 59.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasMinerCarbonDioxide + entities: + - uid: 2116 + components: + - pos: 46.5,-27.5 + parent: 2 + type: Transform +- proto: GasMinerNitrogenStation + entities: + - uid: 1182 + components: + - pos: 46.5,-23.5 + parent: 2 + type: Transform +- proto: GasMinerOxygenStation + entities: + - uid: 4098 + components: + - pos: 46.5,-25.5 + parent: 2 + type: Transform +- proto: GasMinerPlasma + entities: + - uid: 2130 + components: + - pos: 46.5,-31.5 + parent: 2 + type: Transform +- proto: GasMinerWaterVapor + entities: + - uid: 2138 + components: + - pos: 46.5,-29.5 + parent: 2 + type: Transform +- proto: GasMixer + entities: + - uid: 1938 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-34.5 + parent: 2 + type: Transform +- proto: GasMixerFlipped + entities: + - uid: 669 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-28.5 + parent: 2 + type: Transform + - uid: 671 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-30.5 + parent: 2 + type: Transform + - uid: 757 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-32.5 + parent: 2 + type: Transform + - uid: 1034 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,-23.5 + parent: 2 + type: Transform + - inletTwoConcentration: 0.78 + inletOneConcentration: 0.22 + type: GasMixer + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 2751 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-26.5 + parent: 2 + type: Transform + - uid: 4924 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-40.5 + parent: 2 + type: Transform +- proto: GasOutletInjector + entities: + - uid: 474 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-25.5 + parent: 2 + type: Transform + - uid: 2072 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-23.5 + parent: 2 + type: Transform + - uid: 2075 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-33.5 + parent: 2 + type: Transform + - uid: 2140 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-29.5 + parent: 2 + type: Transform + - uid: 2141 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-31.5 + parent: 2 + type: Transform + - uid: 4047 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-27.5 + parent: 2 + type: Transform + - uid: 4355 + components: + - pos: 35.5,-32.5 + parent: 2 + type: Transform + - uid: 12882 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,-45.5 + parent: 2 + type: Transform +- proto: GasPassiveVent + entities: + - uid: 351 + components: + - pos: 47.5,-33.5 + parent: 2 + type: Transform + - uid: 361 + components: + - pos: 47.5,-31.5 + parent: 2 + type: Transform + - uid: 367 + components: + - pos: 47.5,-29.5 + parent: 2 + type: Transform + - uid: 628 + components: + - pos: 47.5,-25.5 + parent: 2 + type: Transform + - uid: 675 + components: + - pos: 47.5,-27.5 + parent: 2 + type: Transform + - uid: 745 + components: + - pos: 47.5,-23.5 + parent: 2 + type: Transform + - uid: 3951 + components: + - rot: 3.141592653589793 rad + pos: 48.5,-48.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3953 + components: + - rot: 3.141592653589793 rad + pos: 49.5,-48.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4179 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,-35.5 + parent: 2 + type: Transform + - uid: 4354 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-30.5 + parent: 2 + type: Transform + - uid: 5265 + components: + - rot: 3.141592653589793 rad + pos: 79.5,-9.5 + parent: 2 + type: Transform + - uid: 8677 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,33.5 + parent: 2 + type: Transform + - uid: 10426 + components: + - pos: 63.5,28.5 + parent: 2 + type: Transform + - uid: 10427 + components: + - pos: 64.5,28.5 + parent: 2 + type: Transform + - uid: 11587 + components: + - rot: 3.141592653589793 rad + pos: 47.5,-48.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11588 + components: + - rot: 3.141592653589793 rad + pos: 46.5,-48.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasPipeBend + entities: + - uid: 34 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-35.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 87 + components: + - rot: 1.5707963267948966 rad + pos: 61.5,2.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 372 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,-24.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 381 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,-28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 382 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,-30.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 383 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-22.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 387 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-25.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 391 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,-32.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 392 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,-34.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 393 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,10.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 746 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-34.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 889 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-22.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 891 + components: + - pos: 27.5,-25.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1033 + components: + - pos: 39.5,-23.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1039 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-24.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1040 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-23.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1149 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1235 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-46.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1236 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-48.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1258 + components: + - rot: 3.141592653589793 rad + pos: 43.5,-47.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1306 + components: + - pos: 31.5,-32.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1456 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-27.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1506 + components: + - rot: 3.141592653589793 rad + pos: 41.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1534 + components: + - rot: 1.5707963267948966 rad + pos: 62.5,1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1685 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-31.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1691 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-28.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1698 + components: + - rot: 3.141592653589793 rad + pos: 40.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1799 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-3.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1807 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,14.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1814 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1816 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1819 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1820 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1944 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2441 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,-26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2609 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-13.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3688 + components: + - rot: 1.5707963267948966 rad + pos: 55.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3690 + components: + - rot: -1.5707963267948966 rad + pos: 62.5,-2.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3956 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-47.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 3982 + components: + - pos: 39.5,-27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4014 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-26.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4015 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-23.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4016 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-22.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4017 + components: + - pos: 40.5,-22.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4028 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-23.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4031 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-26.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4050 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-36.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4091 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-34.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4099 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-24.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4177 + components: + - rot: 3.141592653589793 rad + pos: 40.5,-35.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4219 + components: + - pos: 41.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4365 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-24.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4366 + components: + - pos: 37.5,-24.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4443 + components: + - pos: 32.5,-35.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4498 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-48.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4914 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5010 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,14.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5108 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,15.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5109 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,18.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5765 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6428 + components: + - pos: 32.5,46.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6489 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-3.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6499 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-3.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6500 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,-6.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6569 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-6.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6777 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,9.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6833 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-14.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8023 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-4.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8198 + components: + - rot: 3.141592653589793 rad + pos: 17.5,21.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8199 + components: + - pos: 17.5,22.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8202 + components: + - rot: 3.141592653589793 rad + pos: 14.5,22.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8203 + components: + - pos: 14.5,23.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8204 + components: + - rot: 3.141592653589793 rad + pos: 13.5,23.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8205 + components: + - rot: 3.141592653589793 rad + pos: 13.5,20.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8206 + components: + - pos: 13.5,21.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8228 + components: + - pos: 13.5,25.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8338 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,37.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8599 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,22.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8620 + components: + - rot: 3.141592653589793 rad + pos: 35.5,17.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8621 + components: + - rot: 3.141592653589793 rad + pos: 33.5,19.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8628 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,17.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8663 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,30.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8672 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,30.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9545 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,45.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9547 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,45.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9555 + components: + - pos: 28.5,40.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9556 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,39.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9572 + components: + - rot: 3.141592653589793 rad + pos: 18.5,35.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10169 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-11.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10200 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-7.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10334 + components: + - rot: 3.141592653589793 rad + pos: 47.5,10.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10335 + components: + - rot: -1.5707963267948966 rad + pos: 54.5,10.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10364 + components: + - rot: 1.5707963267948966 rad + pos: 50.5,19.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10382 + components: + - rot: 1.5707963267948966 rad + pos: 55.5,13.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10384 + components: + - rot: 1.5707963267948966 rad + pos: 63.5,15.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10399 + components: + - rot: -1.5707963267948966 rad + pos: 55.5,9.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10639 + components: + - pos: 29.5,10.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10644 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,7.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10645 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,6.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11512 + components: + - rot: 3.141592653589793 rad + pos: 65.5,-6.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11578 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-45.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11579 + components: + - pos: 41.5,-47.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11707 + components: + - rot: -1.5707963267948966 rad + pos: 71.5,-9.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11720 + components: + - rot: 1.5707963267948966 rad + pos: 64.5,-4.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11721 + components: + - rot: -1.5707963267948966 rad + pos: 66.5,-4.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11722 + components: + - rot: 1.5707963267948966 rad + pos: 66.5,-1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11765 + components: + - rot: -1.5707963267948966 rad + pos: 61.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11768 + components: + - pos: 61.5,0.5 + parent: 2 + type: Transform + - uid: 11786 + components: + - rot: -1.5707963267948966 rad + pos: 61.5,-1.5 + parent: 2 + type: Transform + - uid: 11789 + components: + - rot: 3.141592653589793 rad + pos: 56.5,-1.5 + parent: 2 + type: Transform + - uid: 11797 + components: + - rot: 1.5707963267948966 rad + pos: 56.5,0.5 + parent: 2 + type: Transform + - uid: 11798 + components: + - pos: 56.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11799 + components: + - rot: 3.141592653589793 rad + pos: 56.5,-2.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11954 + components: + - rot: 1.5707963267948966 rad + pos: 72.5,4.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11955 + components: + - rot: -1.5707963267948966 rad + pos: 73.5,4.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12301 + components: + - pos: 49.5,-47.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12858 + components: + - rot: 3.141592653589793 rad + pos: 37.5,-45.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12869 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-53.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12870 + components: + - rot: 3.141592653589793 rad + pos: 41.5,-53.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12875 + components: + - rot: 3.141592653589793 rad + pos: 41.5,-43.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12881 + components: + - rot: 3.141592653589793 rad + pos: 44.5,-45.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12883 + components: + - pos: 49.5,-44.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12884 + components: + - rot: 3.141592653589793 rad + pos: 47.5,-46.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12885 + components: + - rot: -1.5707963267948966 rad + pos: 49.5,-46.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasPipeFourway + entities: + - uid: 62 + components: + - pos: 35.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 350 + components: + - pos: 19.5,9.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 463 + components: + - pos: 18.5,10.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3965 + components: + - pos: 37.5,-44.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4021 + components: + - pos: 55.5,-5.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4770 + components: + - pos: 12.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5169 + components: + - pos: 72.5,2.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5181 + components: + - pos: 25.5,-10.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5200 + components: + - pos: 42.5,13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5240 + components: + - pos: 44.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6520 + components: + - pos: 46.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6623 + components: + - pos: 35.5,-3.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8581 + components: + - pos: 39.5,24.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8589 + components: + - pos: 40.5,23.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10054 + components: + - pos: 59.5,18.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10374 + components: + - pos: 58.5,19.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11732 + components: + - pos: 60.5,-5.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11787 + components: + - pos: 57.5,-2.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 26 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 33 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-35.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 53 + components: + - pos: 19.5,8.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 68 + components: + - pos: 33.5,-1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 74 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 86 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 91 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 95 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-31.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 107 + components: + - pos: 11.5,-37.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 117 + components: + - rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 121 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,15.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 122 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,15.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 142 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-33.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 143 + components: + - rot: 3.141592653589793 rad + pos: 11.5,8.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 153 + components: + - rot: 3.141592653589793 rad + pos: 11.5,7.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 168 + components: + - rot: 3.141592653589793 rad + pos: 27.5,19.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 175 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 234 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,10.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 235 + components: + - rot: 3.141592653589793 rad + pos: 9.5,9.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 236 + components: + - rot: 3.141592653589793 rad + pos: 9.5,8.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 245 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,-30.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 318 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-34.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 319 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,-34.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 321 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,-34.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 322 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-34.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 352 + components: + - pos: 3.5,4.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 353 + components: + - pos: 3.5,8.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 354 + components: + - pos: 3.5,9.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 375 + components: + - pos: 3.5,2.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 390 + components: + - pos: 3.5,6.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 395 + components: + - pos: 3.5,3.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 396 + components: + - pos: 3.5,5.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 402 + components: + - pos: 3.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 406 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,-34.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 407 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-34.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 409 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-32.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 410 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,-32.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 415 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,-32.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 416 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,-32.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 425 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 432 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 436 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-22.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 439 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-23.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 440 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,9.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 442 + components: + - pos: 25.5,-26.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 444 + components: + - pos: 25.5,-17.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 447 + components: + - pos: 25.5,-22.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 468 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-23.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 512 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-34.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 609 + components: + - pos: 10.5,-36.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 611 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-34.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 617 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-31.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 666 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 667 + components: + - pos: 55.5,-6.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 668 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 672 + components: + - pos: 31.5,-26.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 676 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,-30.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 677 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-30.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 678 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-34.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 743 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-34.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 744 + components: + - pos: 39.5,-33.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 755 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-34.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 817 + components: + - pos: 42.5,2.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 818 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-24.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 820 + components: + - pos: 31.5,-25.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 825 + components: + - pos: 42.5,3.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 833 + components: + - pos: 42.5,5.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 835 + components: + - pos: 42.5,4.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 838 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-32.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 839 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,-30.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 842 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-30.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 850 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,-28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 851 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 869 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,-28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 879 + components: + - rot: 3.141592653589793 rad + pos: 43.5,-45.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 887 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-27.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 888 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-26.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 890 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-21.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 893 + components: + - rot: 3.141592653589793 rad + pos: 27.5,14.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 894 + components: + - rot: 3.141592653589793 rad + pos: 27.5,15.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 896 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 897 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 898 + components: + - rot: 3.141592653589793 rad + pos: 27.5,16.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 899 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-25.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 901 + components: + - rot: 1.5707963267948966 rad + pos: 49.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 906 + components: + - pos: 25.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 907 + components: + - pos: 56.5,29.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 908 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 910 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 911 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 912 + components: + - pos: 25.5,-19.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 914 + components: + - pos: 25.5,-4.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 938 + components: + - pos: 25.5,-3.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1019 + components: + - pos: 25.5,-2.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1020 + components: + - pos: 25.5,-1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1035 + components: + - pos: 39.5,-24.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1037 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-23.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1038 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-23.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1043 + components: + - pos: 25.5,-0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1044 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1106 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1107 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,9.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1157 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1158 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1181 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,9.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1183 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,9.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1206 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,9.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1207 + components: + - pos: 25.5,-7.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1211 + components: + - pos: 38.5,-25.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1212 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,9.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1213 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,9.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1214 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,9.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1217 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,-44.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1222 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-44.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1224 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-44.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1226 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-44.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1228 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-31.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1229 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-33.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1230 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-33.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1237 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-45.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1245 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-47.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1249 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-45.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1300 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1301 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1302 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,-24.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1303 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,-26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1346 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-24.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1371 + components: + - pos: 31.5,-33.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1457 + components: + - pos: 39.5,-25.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1485 + components: + - pos: 31.5,-34.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1488 + components: + - pos: 31.5,-35.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1489 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-35.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1490 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-35.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1521 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-17.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1528 + components: + - pos: 42.5,6.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1538 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-36.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1541 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-36.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1559 + components: + - pos: 55.5,-2.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1562 + components: + - pos: 55.5,-3.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1564 + components: + - rot: 3.141592653589793 rad + pos: 58.5,18.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1572 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-36.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1573 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-36.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1574 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-36.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1594 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-36.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1595 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-36.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1600 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-36.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1601 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-36.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1602 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-36.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1603 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-36.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1604 + components: + - pos: 17.5,-35.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1606 + components: + - pos: 17.5,-33.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1607 + components: + - pos: 17.5,-32.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1608 + components: + - pos: 17.5,-31.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1609 + components: + - pos: 17.5,-30.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1610 + components: + - pos: 17.5,-29.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1611 + components: + - pos: 17.5,-28.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1612 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-27.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1620 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-17.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1621 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-17.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1624 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-27.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1631 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-33.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1632 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-34.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1633 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-28.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1636 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-28.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1654 + components: + - pos: 33.5,-0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1666 + components: + - pos: 18.5,-29.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1667 + components: + - pos: 18.5,-30.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1668 + components: + - pos: 18.5,-31.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1669 + components: + - pos: 18.5,-32.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1670 + components: + - pos: 18.5,-33.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1671 + components: + - pos: 18.5,-34.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1672 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-35.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1676 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-35.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1677 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-35.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1679 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-35.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1680 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-35.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1681 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-35.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1682 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-17.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1683 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-35.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1684 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-35.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1686 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-27.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1687 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-27.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1689 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-27.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1693 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-27.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1696 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-27.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1719 + components: + - pos: 25.5,33.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1730 + components: + - pos: 25.5,32.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1749 + components: + - pos: 25.5,31.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1762 + components: + - pos: 25.5,30.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1763 + components: + - pos: 25.5,29.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1764 + components: + - pos: 25.5,28.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1769 + components: + - pos: 25.5,27.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1770 + components: + - pos: 25.5,26.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1771 + components: + - pos: 25.5,25.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1772 + components: + - pos: 25.5,24.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1774 + components: + - pos: 25.5,22.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1800 + components: + - pos: 25.5,20.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1801 + components: + - pos: 25.5,19.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1803 + components: + - pos: 25.5,18.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1804 + components: + - pos: 25.5,17.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1805 + components: + - pos: 25.5,16.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1822 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1823 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1824 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1825 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1826 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1827 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1829 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1830 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1832 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1834 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1835 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1836 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1837 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1839 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1840 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1841 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1844 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1845 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1846 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1848 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1849 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1850 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1860 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,10.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1861 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,10.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1862 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,10.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1863 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,10.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1864 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,10.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1867 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,10.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1868 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,10.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1869 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,10.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1870 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,10.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1871 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,10.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1872 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,10.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1873 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,10.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1874 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,10.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1875 + components: + - pos: 18.5,11.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1876 + components: + - pos: 18.5,12.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1878 + components: + - pos: 18.5,13.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1879 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,14.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1880 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,14.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1881 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,14.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1882 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,14.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1883 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,14.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1884 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,14.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1885 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,15.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1886 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,15.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1887 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,15.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1888 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,15.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1890 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,15.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1891 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,15.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1892 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,15.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1893 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,15.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1894 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,15.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1895 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,15.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1896 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,15.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1897 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,15.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1898 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,15.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1899 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,15.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1900 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,15.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1901 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,15.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1903 + components: + - rot: 3.141592653589793 rad + pos: 40.5,14.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1904 + components: + - rot: 3.141592653589793 rad + pos: 40.5,13.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1905 + components: + - rot: 3.141592653589793 rad + pos: 40.5,12.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1906 + components: + - rot: 3.141592653589793 rad + pos: 40.5,11.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1907 + components: + - rot: 3.141592653589793 rad + pos: 40.5,10.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1908 + components: + - rot: 3.141592653589793 rad + pos: 40.5,9.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1909 + components: + - rot: 3.141592653589793 rad + pos: 40.5,8.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1912 + components: + - rot: 3.141592653589793 rad + pos: 40.5,5.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1913 + components: + - rot: 3.141592653589793 rad + pos: 40.5,4.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1914 + components: + - rot: 3.141592653589793 rad + pos: 40.5,3.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1915 + components: + - rot: 3.141592653589793 rad + pos: 40.5,2.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1916 + components: + - rot: -1.5707963267948966 rad + pos: 51.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1917 + components: + - rot: -1.5707963267948966 rad + pos: 50.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1918 + components: + - rot: -1.5707963267948966 rad + pos: 49.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1919 + components: + - pos: 42.5,10.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1920 + components: + - pos: 42.5,9.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1921 + components: + - pos: 42.5,11.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1927 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-35.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1934 + components: + - pos: 42.5,12.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1935 + components: + - rot: 3.141592653589793 rad + pos: 5.5,5.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1937 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-31.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1939 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-16.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1940 + components: + - rot: 3.141592653589793 rad + pos: 40.5,-26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1959 + components: + - rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1960 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1961 + components: + - pos: 21.5,-29.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1962 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-31.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1963 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-2.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1964 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1965 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1966 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-5.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1969 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1970 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1971 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-7.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2021 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-3.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2029 + components: + - pos: 11.5,-38.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 2032 + components: + - pos: 11.5,-39.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 2052 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2062 + components: + - pos: 10.5,-37.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 2063 + components: + - pos: 25.5,-9.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2069 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2070 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-23.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2071 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2148 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-23.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2161 + components: + - rot: 1.5707963267948966 rad + pos: 50.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2304 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-22.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 2316 + components: + - pos: 25.5,-12.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2317 + components: + - pos: 25.5,-11.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2322 + components: + - pos: 25.5,-13.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2326 + components: + - rot: 3.141592653589793 rad + pos: 42.5,14.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2381 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2384 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-31.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2385 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-31.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2386 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-31.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2388 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-31.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2389 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2390 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2391 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-29.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2396 + components: + - pos: 25.5,-6.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2397 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-29.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2398 + components: + - rot: 3.141592653589793 rad + pos: 5.5,8.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2399 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,9.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2412 + components: + - rot: 3.141592653589793 rad + pos: 27.5,17.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2413 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-20.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2415 + components: + - pos: 42.5,7.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2416 + components: + - pos: 42.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2417 + components: + - rot: 1.5707963267948966 rad + pos: 51.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2418 + components: + - rot: 3.141592653589793 rad + pos: 27.5,18.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2419 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2423 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2436 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2437 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,-28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2438 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2439 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-32.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2440 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-30.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2452 + components: + - pos: 27.5,44.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2453 + components: + - pos: 27.5,45.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2454 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,42.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2455 + components: + - rot: 3.141592653589793 rad + pos: 32.5,43.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2472 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-19.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2484 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2487 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2488 + components: + - pos: 25.5,-5.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2490 + components: + - pos: 25.5,-21.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2530 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,46.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2532 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,46.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2546 + components: + - pos: 25.5,-15.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2560 + components: + - pos: 25.5,-8.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2561 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,9.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2667 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,9.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2717 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-33.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2731 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-8.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2782 + components: + - rot: 3.141592653589793 rad + pos: 40.5,-24.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3553 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3592 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-3.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3595 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-28.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3686 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-28.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3695 + components: + - rot: 3.141592653589793 rad + pos: 55.5,-0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3704 + components: + - pos: 21.5,-30.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3736 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3835 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3843 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3845 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3846 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3952 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3954 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-48.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 3955 + components: + - pos: 38.5,-46.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 3958 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3959 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3974 + components: + - rot: 3.141592653589793 rad + pos: 5.5,6.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3975 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3976 + components: + - rot: 3.141592653589793 rad + pos: 5.5,7.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3997 + components: + - rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4000 + components: + - pos: 39.5,-31.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4003 + components: + - rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4004 + components: + - rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4007 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-22.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4008 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-29.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4009 + components: + - pos: 19.5,12.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4013 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-27.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4022 + components: + - pos: 19.5,7.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4023 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4024 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4025 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4032 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-27.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4043 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,9.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4045 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4048 + components: + - rot: -1.5707963267948966 rad + pos: 48.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4051 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-23.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4052 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-25.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4058 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-28.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4060 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-28.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4062 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4063 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4064 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4065 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4067 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-22.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4068 + components: + - pos: 25.5,-25.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4069 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-24.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4070 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4072 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-30.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4073 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4082 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-25.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4083 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-25.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4084 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-22.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4085 + components: + - pos: 19.5,10.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4094 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-25.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4095 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-31.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4097 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-29.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4103 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4104 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4105 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4106 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4108 + components: + - rot: 3.141592653589793 rad + pos: 27.5,29.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4109 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-15.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4111 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4114 + components: + - rot: 3.141592653589793 rad + pos: 27.5,30.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4124 + components: + - rot: 3.141592653589793 rad + pos: 27.5,23.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4125 + components: + - rot: 3.141592653589793 rad + pos: 27.5,21.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4129 + components: + - rot: 3.141592653589793 rad + pos: 40.5,-34.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4131 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-35.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4133 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,-24.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4135 + components: + - rot: 3.141592653589793 rad + pos: 40.5,-28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4136 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,-24.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4140 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-24.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4144 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,-35.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4147 + components: + - rot: 3.141592653589793 rad + pos: 40.5,-30.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4151 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-24.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4155 + components: + - rot: 3.141592653589793 rad + pos: 27.5,22.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4158 + components: + - rot: 3.141592653589793 rad + pos: 40.5,-32.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4159 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-35.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4160 + components: + - rot: 3.141592653589793 rad + pos: 27.5,32.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4161 + components: + - rot: 3.141592653589793 rad + pos: 27.5,27.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4162 + components: + - rot: 3.141592653589793 rad + pos: 27.5,31.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4163 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-14.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4164 + components: + - rot: 3.141592653589793 rad + pos: 27.5,33.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4165 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4180 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-12.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4181 + components: + - pos: 39.5,-29.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4184 + components: + - pos: 46.5,-3.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4185 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4190 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,-35.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4192 + components: + - rot: 3.141592653589793 rad + pos: 27.5,26.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4193 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4194 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4195 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4196 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4197 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4198 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4200 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4201 + components: + - rot: 3.141592653589793 rad + pos: 27.5,28.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4202 + components: + - pos: 42.5,0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4203 + components: + - pos: 42.5,1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4205 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4206 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4207 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4208 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4209 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4210 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4211 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4212 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4214 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4216 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4217 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4221 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4222 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4223 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4224 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4225 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4226 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4228 + components: + - rot: 3.141592653589793 rad + pos: 27.5,25.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4231 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-31.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4232 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-28.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4233 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-4.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4234 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-28.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4235 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4237 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4238 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-9.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4239 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-10.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4240 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-6.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4241 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4242 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4260 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-31.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4269 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4270 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4271 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,-26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4272 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-24.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4273 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,-26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4274 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-18.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4280 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-29.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4281 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-31.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4283 + components: + - pos: 19.5,11.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4284 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-22.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4285 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4286 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4287 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4288 + components: + - pos: 25.5,-14.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4289 + components: + - pos: 25.5,-16.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4290 + components: + - pos: 25.5,-20.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4291 + components: + - pos: 25.5,-18.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4352 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-23.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4353 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-23.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4356 + components: + - pos: 35.5,-33.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4357 + components: + - pos: 35.5,-29.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4358 + components: + - pos: 35.5,-28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4359 + components: + - pos: 35.5,-27.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4360 + components: + - pos: 35.5,-26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4444 + components: + - pos: 32.5,-36.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4445 + components: + - pos: 32.5,-37.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4446 + components: + - pos: 31.5,-37.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4448 + components: + - pos: 31.5,-38.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4449 + components: + - pos: 32.5,-38.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4451 + components: + - pos: 32.5,-39.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4461 + components: + - pos: 22.5,-37.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4462 + components: + - pos: 20.5,-36.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4463 + components: + - pos: 20.5,-37.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4480 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-48.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4493 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,-44.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4495 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-44.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4970 + components: + - pos: 27.5,34.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5009 + components: + - pos: 55.5,-1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5023 + components: + - rot: -1.5707963267948966 rad + pos: 60.5,-2.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5024 + components: + - rot: -1.5707963267948966 rad + pos: 59.5,-2.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5025 + components: + - rot: -1.5707963267948966 rad + pos: 58.5,-2.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5036 + components: + - pos: 56.5,-0.5 + parent: 2 + type: Transform + - uid: 5038 + components: + - rot: 1.5707963267948966 rad + pos: 60.5,0.5 + parent: 2 + type: Transform + - uid: 5040 + components: + - rot: -1.5707963267948966 rad + pos: 60.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5042 + components: + - rot: -1.5707963267948966 rad + pos: 58.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5081 + components: + - rot: -1.5707963267948966 rad + pos: 57.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5083 + components: + - pos: 57.5,-7.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5110 + components: + - pos: 46.5,16.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5184 + components: + - pos: 57.5,-8.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5192 + components: + - pos: 55.5,-7.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5194 + components: + - pos: 56.5,27.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5206 + components: + - pos: 57.5,-6.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5258 + components: + - pos: 79.5,-8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5259 + components: + - pos: 79.5,-7.5 + parent: 2 + type: Transform + - uid: 5273 + components: + - rot: 3.141592653589793 rad + pos: 26.5,2.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5303 + components: + - pos: 55.5,-4.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5429 + components: + - rot: 3.141592653589793 rad + pos: 11.5,6.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5430 + components: + - pos: 11.5,-36.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5666 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-35.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5667 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-35.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5668 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-35.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5669 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-35.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5670 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-34.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5671 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-34.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5672 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-34.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5673 + components: + - pos: 10.5,-38.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5683 + components: + - pos: 38.5,-44.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 6425 + components: + - rot: 3.141592653589793 rad + pos: 32.5,45.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6426 + components: + - rot: 3.141592653589793 rad + pos: 32.5,44.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6479 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,46.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6482 + components: + - pos: 33.5,-2.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6484 + components: + - pos: 33.5,-3.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6488 + components: + - pos: 46.5,-5.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6490 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,-3.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6498 + components: + - pos: 44.5,-2.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 6503 + components: + - pos: 27.5,39.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6507 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,42.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 6508 + components: + - pos: 46.5,-4.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6536 + components: + - pos: 56.5,28.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6550 + components: + - pos: 33.5,-4.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6551 + components: + - pos: 33.5,-5.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6553 + components: + - pos: 33.5,-7.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6554 + components: + - pos: 33.5,-8.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6556 + components: + - pos: 35.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6557 + components: + - pos: 35.5,-2.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6559 + components: + - pos: 35.5,-4.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6560 + components: + - pos: 35.5,-5.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6561 + components: + - pos: 35.5,-6.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6562 + components: + - pos: 35.5,-7.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6563 + components: + - pos: 35.5,-8.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6564 + components: + - pos: 35.5,-9.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6566 + components: + - pos: 44.5,-1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6567 + components: + - pos: 46.5,-2.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6575 + components: + - pos: 42.5,-4.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6576 + components: + - pos: 42.5,-5.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6577 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-3.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6579 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-3.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6580 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-3.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6581 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-3.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6585 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-10.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6586 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-10.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6587 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-10.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6589 + components: + - pos: 30.5,-11.5 + parent: 2 + type: Transform + - uid: 6594 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-10.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6596 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-9.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6597 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,-9.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6598 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-9.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6599 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-9.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6600 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,-9.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6602 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-5.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6603 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-6.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6604 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-7.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6605 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-8.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6606 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-9.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6607 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-10.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6612 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-10.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6613 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-10.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6624 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,-6.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6625 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-6.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6626 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-6.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6774 + components: + - pos: 56.5,26.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6818 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6835 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6859 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6915 + components: + - pos: 10.5,-40.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6916 + components: + - pos: 10.5,-39.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 6917 + components: + - pos: 10.5,-35.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6918 + components: + - rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6919 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-2.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6946 + components: + - pos: 18.5,9.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6947 + components: + - pos: 18.5,8.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6948 + components: + - pos: 18.5,7.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7006 + components: + - pos: 27.5,36.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7410 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-5.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7411 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-6.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7413 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-8.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7416 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-9.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7418 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-10.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7419 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-11.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7420 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-12.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7421 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7422 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-12.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7423 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-11.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7424 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-10.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7425 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-9.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7426 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-8.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7427 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-7.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7429 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-5.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7430 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-4.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7431 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-3.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7432 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-2.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7433 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-13.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7434 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-13.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7435 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-13.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7436 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-13.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7437 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-13.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7438 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-13.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7439 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-13.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7440 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-13.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7441 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-14.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7442 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-14.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7443 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-14.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7444 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-14.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7445 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-14.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7446 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-14.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7447 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-14.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7448 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-14.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7449 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-14.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7450 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-14.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7578 + components: + - rot: 3.141592653589793 rad + pos: 62.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7670 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7758 + components: + - rot: 1.5707963267948966 rad + pos: 55.5,24.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7789 + components: + - rot: 1.5707963267948966 rad + pos: 58.5,24.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7790 + components: + - rot: 1.5707963267948966 rad + pos: 54.5,24.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8012 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8013 + components: + - pos: 12.5,-2.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8014 + components: + - pos: 12.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8015 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-3.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8018 + components: + - pos: 16.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8019 + components: + - pos: 16.5,-0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8020 + components: + - pos: 16.5,-1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8021 + components: + - pos: 16.5,-2.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8022 + components: + - pos: 16.5,-3.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8179 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,20.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8180 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,20.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8181 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,20.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8183 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,20.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8184 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,20.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8186 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,20.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8187 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,20.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8188 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,20.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8189 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,20.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8190 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,20.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8191 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,21.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8193 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,21.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8194 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,21.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8195 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,21.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8196 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,21.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8200 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,22.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8201 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,22.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8209 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,21.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8210 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,21.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8211 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,21.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8212 + components: + - pos: 9.5,20.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8213 + components: + - pos: 8.5,24.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8214 + components: + - pos: 8.5,23.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8215 + components: + - pos: 8.5,22.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8216 + components: + - pos: 8.5,21.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8217 + components: + - pos: 8.5,20.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8218 + components: + - pos: 8.5,19.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8219 + components: + - pos: 8.5,18.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8223 + components: + - pos: 13.5,24.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8224 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,25.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8225 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,25.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8226 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,25.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8227 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,25.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8295 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,41.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8297 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,41.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8298 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,41.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8300 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,37.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8303 + components: + - pos: 27.5,43.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8308 + components: + - pos: 27.5,37.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8310 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,42.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8318 + components: + - pos: 27.5,38.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8321 + components: + - pos: 27.5,42.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8322 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,46.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8549 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,23.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8550 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,23.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8551 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,23.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8552 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,23.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8553 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,23.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8554 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,23.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8556 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,24.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8557 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,24.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8558 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,24.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8559 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,24.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8560 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,24.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8576 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,23.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8577 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,23.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8578 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,23.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8579 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,23.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8580 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,23.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8582 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,23.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8583 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,23.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8586 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,24.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8587 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,24.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8588 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,24.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8590 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,24.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8591 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,24.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8593 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,24.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8600 + components: + - rot: 3.141592653589793 rad + pos: 40.5,24.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8604 + components: + - rot: 3.141592653589793 rad + pos: 40.5,25.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8605 + components: + - rot: 3.141592653589793 rad + pos: 39.5,25.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8606 + components: + - rot: 3.141592653589793 rad + pos: 39.5,26.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8611 + components: + - pos: 33.5,22.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8612 + components: + - pos: 33.5,21.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8613 + components: + - pos: 33.5,20.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8614 + components: + - pos: 35.5,23.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8615 + components: + - pos: 35.5,22.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8616 + components: + - pos: 35.5,21.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8617 + components: + - pos: 35.5,20.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8618 + components: + - pos: 35.5,19.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8619 + components: + - pos: 35.5,18.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8622 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,19.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8623 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,19.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8624 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,19.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8625 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,19.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8626 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,17.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8627 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,17.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8631 + components: + - rot: 3.141592653589793 rad + pos: 33.5,25.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8632 + components: + - rot: 3.141592653589793 rad + pos: 33.5,26.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8633 + components: + - rot: 3.141592653589793 rad + pos: 33.5,27.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8634 + components: + - rot: 3.141592653589793 rad + pos: 33.5,28.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8635 + components: + - rot: 3.141592653589793 rad + pos: 33.5,29.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8636 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,30.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8637 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,30.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8654 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,30.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8655 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,30.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8660 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,30.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8661 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,30.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8662 + components: + - pos: 40.5,31.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8675 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,33.5 + parent: 2 + type: Transform + - uid: 8676 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,33.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8678 + components: + - rot: 3.141592653589793 rad + pos: 42.5,15.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8680 + components: + - rot: 3.141592653589793 rad + pos: 42.5,16.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8681 + components: + - rot: 3.141592653589793 rad + pos: 41.5,16.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 8683 + components: + - rot: 3.141592653589793 rad + pos: 41.5,17.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8702 + components: + - pos: 56.5,33.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9348 + components: + - pos: 56.5,32.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9534 + components: + - pos: 26.5,44.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9535 + components: + - pos: 26.5,43.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9537 + components: + - pos: 26.5,41.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9538 + components: + - pos: 26.5,40.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9539 + components: + - pos: 26.5,39.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9540 + components: + - pos: 26.5,38.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9541 + components: + - pos: 25.5,36.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9542 + components: + - pos: 25.5,35.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9543 + components: + - pos: 25.5,34.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9544 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,45.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9548 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,45.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9549 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,45.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9550 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,45.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9551 + components: + - pos: 22.5,44.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9552 + components: + - pos: 22.5,43.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9553 + components: + - pos: 22.5,42.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9561 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,35.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9562 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,35.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9563 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,35.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9564 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,35.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9566 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,35.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9567 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,35.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9568 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,35.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9575 + components: + - rot: 3.141592653589793 rad + pos: 18.5,37.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9576 + components: + - rot: 3.141592653589793 rad + pos: 18.5,38.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9577 + components: + - rot: 3.141592653589793 rad + pos: 18.5,39.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9578 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,36.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9579 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,36.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9580 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,36.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9629 + components: + - rot: 3.141592653589793 rad + pos: 44.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 9630 + components: + - rot: 3.141592653589793 rad + pos: 44.5,2.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9631 + components: + - rot: 3.141592653589793 rad + pos: 47.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9632 + components: + - rot: 3.141592653589793 rad + pos: 47.5,0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9633 + components: + - rot: 3.141592653589793 rad + pos: 47.5,1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 9634 + components: + - rot: 3.141592653589793 rad + pos: 47.5,2.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9726 + components: + - pos: 56.5,31.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10045 + components: + - rot: 1.5707963267948966 rad + pos: 52.5,24.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10046 + components: + - rot: 1.5707963267948966 rad + pos: 53.5,24.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10049 + components: + - rot: 3.141592653589793 rad + pos: 59.5,23.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10050 + components: + - rot: 3.141592653589793 rad + pos: 59.5,22.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10051 + components: + - rot: 3.141592653589793 rad + pos: 59.5,21.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10052 + components: + - rot: 3.141592653589793 rad + pos: 59.5,20.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10053 + components: + - rot: 3.141592653589793 rad + pos: 59.5,19.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10055 + components: + - rot: 3.141592653589793 rad + pos: 59.5,17.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10056 + components: + - rot: 3.141592653589793 rad + pos: 59.5,16.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10058 + components: + - rot: 1.5707963267948966 rad + pos: 58.5,14.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10059 + components: + - rot: 1.5707963267948966 rad + pos: 57.5,14.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10060 + components: + - rot: 1.5707963267948966 rad + pos: 56.5,14.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10061 + components: + - rot: 1.5707963267948966 rad + pos: 55.5,14.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10063 + components: + - rot: 1.5707963267948966 rad + pos: 53.5,14.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10064 + components: + - rot: 1.5707963267948966 rad + pos: 52.5,14.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10065 + components: + - rot: 1.5707963267948966 rad + pos: 51.5,14.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10066 + components: + - rot: 1.5707963267948966 rad + pos: 50.5,14.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10067 + components: + - rot: 1.5707963267948966 rad + pos: 49.5,14.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10068 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,14.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10076 + components: + - pos: 79.5,-6.5 + parent: 2 + type: Transform + - uid: 10079 + components: + - pos: 57.5,-3.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10115 + components: + - rot: 1.5707963267948966 rad + pos: 57.5,24.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10117 + components: + - pos: 77.5,0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10127 + components: + - pos: 55.5,-8.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10134 + components: + - pos: 57.5,-5.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10145 + components: + - pos: 1.5,-9.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10146 + components: + - pos: 1.5,-8.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10147 + components: + - pos: 1.5,-7.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10148 + components: + - pos: 1.5,-6.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10149 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10150 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10151 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10152 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10153 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-2.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10154 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-3.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10155 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-4.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10156 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-5.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10158 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-7.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10159 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-8.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10160 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-9.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10161 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-10.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10162 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10164 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10165 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10166 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10167 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10168 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10175 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10176 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10177 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10183 + components: + - pos: 4.5,-0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10184 + components: + - pos: 4.5,-1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10185 + components: + - pos: 4.5,-2.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10186 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10187 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10188 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10189 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10190 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10191 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10192 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-7.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10193 + components: + - pos: 8.5,-6.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10194 + components: + - pos: 8.5,-5.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10195 + components: + - pos: 8.5,-4.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10196 + components: + - pos: 8.5,-3.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10197 + components: + - pos: 8.5,-2.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10198 + components: + - pos: 8.5,-1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10199 + components: + - pos: 8.5,-0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10209 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-11.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10210 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-11.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10211 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-11.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10212 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-10.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10213 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-10.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10242 + components: + - rot: 3.141592653589793 rad + pos: 26.5,3.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10243 + components: + - rot: 3.141592653589793 rad + pos: 26.5,4.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10244 + components: + - rot: 3.141592653589793 rad + pos: 26.5,12.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10245 + components: + - rot: 3.141592653589793 rad + pos: 26.5,11.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10247 + components: + - rot: 3.141592653589793 rad + pos: 26.5,9.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10323 + components: + - pos: 54.5,13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10324 + components: + - pos: 54.5,12.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10325 + components: + - pos: 54.5,11.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10326 + components: + - rot: -1.5707963267948966 rad + pos: 53.5,10.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10327 + components: + - rot: -1.5707963267948966 rad + pos: 52.5,10.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10328 + components: + - rot: -1.5707963267948966 rad + pos: 51.5,10.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10329 + components: + - rot: -1.5707963267948966 rad + pos: 50.5,10.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10330 + components: + - rot: -1.5707963267948966 rad + pos: 49.5,10.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10332 + components: + - rot: 3.141592653589793 rad + pos: 47.5,11.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10333 + components: + - rot: 3.141592653589793 rad + pos: 47.5,12.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10337 + components: + - pos: 62.5,13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10338 + components: + - pos: 62.5,12.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10339 + components: + - pos: 62.5,11.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10340 + components: + - rot: -1.5707963267948966 rad + pos: 61.5,14.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10341 + components: + - rot: -1.5707963267948966 rad + pos: 60.5,14.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10342 + components: + - rot: -1.5707963267948966 rad + pos: 63.5,14.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10343 + components: + - rot: -1.5707963267948966 rad + pos: 64.5,14.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10344 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,14.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10345 + components: + - rot: -1.5707963267948966 rad + pos: 66.5,14.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10348 + components: + - rot: -1.5707963267948966 rad + pos: 58.5,18.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10349 + components: + - rot: -1.5707963267948966 rad + pos: 57.5,18.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10350 + components: + - rot: -1.5707963267948966 rad + pos: 56.5,18.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10353 + components: + - rot: -1.5707963267948966 rad + pos: 60.5,24.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10354 + components: + - rot: -1.5707963267948966 rad + pos: 61.5,24.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10359 + components: + - pos: 46.5,17.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10360 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,18.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10361 + components: + - rot: -1.5707963267948966 rad + pos: 48.5,18.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10362 + components: + - rot: -1.5707963267948966 rad + pos: 49.5,18.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10367 + components: + - rot: 1.5707963267948966 rad + pos: 51.5,19.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10368 + components: + - rot: 1.5707963267948966 rad + pos: 52.5,19.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10369 + components: + - rot: 1.5707963267948966 rad + pos: 53.5,19.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10370 + components: + - rot: 1.5707963267948966 rad + pos: 54.5,19.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10371 + components: + - rot: 1.5707963267948966 rad + pos: 55.5,19.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10372 + components: + - rot: 1.5707963267948966 rad + pos: 56.5,19.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10373 + components: + - rot: 1.5707963267948966 rad + pos: 57.5,19.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10376 + components: + - rot: 3.141592653589793 rad + pos: 58.5,17.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10377 + components: + - rot: 3.141592653589793 rad + pos: 58.5,16.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10378 + components: + - rot: 3.141592653589793 rad + pos: 58.5,15.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10379 + components: + - rot: 3.141592653589793 rad + pos: 58.5,14.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10385 + components: + - pos: 63.5,14.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10386 + components: + - pos: 63.5,12.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10387 + components: + - pos: 63.5,11.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10388 + components: + - rot: -1.5707963267948966 rad + pos: 64.5,15.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10389 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,15.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10390 + components: + - rot: -1.5707963267948966 rad + pos: 66.5,15.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10391 + components: + - rot: -1.5707963267948966 rad + pos: 62.5,13.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10392 + components: + - rot: -1.5707963267948966 rad + pos: 61.5,13.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10393 + components: + - rot: -1.5707963267948966 rad + pos: 60.5,13.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10394 + components: + - rot: -1.5707963267948966 rad + pos: 59.5,13.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10395 + components: + - rot: -1.5707963267948966 rad + pos: 56.5,13.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10396 + components: + - rot: 3.141592653589793 rad + pos: 55.5,12.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10397 + components: + - rot: 3.141592653589793 rad + pos: 55.5,11.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10398 + components: + - rot: 3.141592653589793 rad + pos: 55.5,10.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10405 + components: + - pos: 58.5,20.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10406 + components: + - pos: 58.5,21.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10407 + components: + - pos: 58.5,22.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10408 + components: + - rot: -1.5707963267948966 rad + pos: 59.5,23.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10409 + components: + - rot: -1.5707963267948966 rad + pos: 60.5,23.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10410 + components: + - rot: -1.5707963267948966 rad + pos: 61.5,23.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10428 + components: + - pos: 63.5,24.5 + parent: 2 + type: Transform + - uid: 10429 + components: + - pos: 63.5,25.5 + parent: 2 + type: Transform + - uid: 10430 + components: + - pos: 63.5,26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10431 + components: + - pos: 63.5,27.5 + parent: 2 + type: Transform + - uid: 10432 + components: + - pos: 64.5,27.5 + parent: 2 + type: Transform + - uid: 10433 + components: + - pos: 64.5,26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10434 + components: + - pos: 64.5,25.5 + parent: 2 + type: Transform + - uid: 10435 + components: + - pos: 64.5,24.5 + parent: 2 + type: Transform + - uid: 10640 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,10.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10641 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,10.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10642 + components: + - rot: 3.141592653589793 rad + pos: 29.5,9.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10646 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,6.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10647 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,6.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10648 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,6.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10649 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,7.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10650 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,7.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10651 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,7.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11278 + components: + - rot: 1.5707963267948966 rad + pos: 52.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11281 + components: + - rot: 1.5707963267948966 rad + pos: 53.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11282 + components: + - rot: 1.5707963267948966 rad + pos: 54.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11290 + components: + - rot: 1.5707963267948966 rad + pos: 55.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11305 + components: + - pos: 62.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11306 + components: + - pos: 62.5,0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11313 + components: + - rot: -1.5707963267948966 rad + pos: 54.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11314 + components: + - rot: -1.5707963267948966 rad + pos: 53.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11315 + components: + - rot: -1.5707963267948966 rad + pos: 52.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11318 + components: + - rot: 1.5707963267948966 rad + pos: 64.5,1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11326 + components: + - rot: 1.5707963267948966 rad + pos: 66.5,1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11327 + components: + - rot: 1.5707963267948966 rad + pos: 67.5,1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11328 + components: + - rot: 1.5707963267948966 rad + pos: 68.5,1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11330 + components: + - rot: 1.5707963267948966 rad + pos: 69.5,1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11331 + components: + - rot: 1.5707963267948966 rad + pos: 70.5,1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11336 + components: + - rot: 1.5707963267948966 rad + pos: 72.5,1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11337 + components: + - rot: 1.5707963267948966 rad + pos: 73.5,1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11338 + components: + - rot: 1.5707963267948966 rad + pos: 74.5,1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11339 + components: + - rot: 1.5707963267948966 rad + pos: 75.5,1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11340 + components: + - rot: 1.5707963267948966 rad + pos: 76.5,1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11341 + components: + - rot: 1.5707963267948966 rad + pos: 62.5,2.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11342 + components: + - rot: 1.5707963267948966 rad + pos: 63.5,2.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11343 + components: + - rot: 1.5707963267948966 rad + pos: 64.5,2.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11344 + components: + - rot: 1.5707963267948966 rad + pos: 65.5,2.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11345 + components: + - rot: 1.5707963267948966 rad + pos: 66.5,2.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11346 + components: + - rot: 1.5707963267948966 rad + pos: 67.5,2.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11347 + components: + - rot: 1.5707963267948966 rad + pos: 68.5,2.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11348 + components: + - rot: 1.5707963267948966 rad + pos: 69.5,2.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11350 + components: + - rot: 1.5707963267948966 rad + pos: 70.5,2.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11352 + components: + - rot: 1.5707963267948966 rad + pos: 71.5,2.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11356 + components: + - rot: 1.5707963267948966 rad + pos: 73.5,2.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11357 + components: + - rot: 1.5707963267948966 rad + pos: 74.5,2.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11358 + components: + - rot: 1.5707963267948966 rad + pos: 75.5,2.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11359 + components: + - rot: 1.5707963267948966 rad + pos: 76.5,2.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11361 + components: + - pos: 77.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11362 + components: + - pos: 77.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11363 + components: + - pos: 77.5,-2.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11364 + components: + - pos: 77.5,-3.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11517 + components: + - rot: 3.141592653589793 rad + pos: 66.5,-8.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11518 + components: + - rot: 3.141592653589793 rad + pos: 66.5,-7.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11519 + components: + - rot: 3.141592653589793 rad + pos: 65.5,-5.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11523 + components: + - rot: 3.141592653589793 rad + pos: 65.5,-4.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11524 + components: + - rot: 3.141592653589793 rad + pos: 65.5,-3.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11525 + components: + - rot: 3.141592653589793 rad + pos: 65.5,-2.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11528 + components: + - rot: 3.141592653589793 rad + pos: 65.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11529 + components: + - rot: 3.141592653589793 rad + pos: 65.5,0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11530 + components: + - rot: 1.5707963267948966 rad + pos: 67.5,-9.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11581 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-47.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11699 + components: + - rot: 1.5707963267948966 rad + pos: 68.5,-9.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11700 + components: + - rot: 1.5707963267948966 rad + pos: 69.5,-9.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11701 + components: + - rot: 1.5707963267948966 rad + pos: 70.5,-9.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11702 + components: + - pos: 71.5,-8.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11703 + components: + - pos: 71.5,-7.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11704 + components: + - pos: 71.5,-6.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11705 + components: + - pos: 71.5,-5.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11706 + components: + - pos: 71.5,-4.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11711 + components: + - rot: -1.5707963267948966 rad + pos: 56.5,-5.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11712 + components: + - rot: -1.5707963267948966 rad + pos: 57.5,-5.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11713 + components: + - rot: -1.5707963267948966 rad + pos: 58.5,-5.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11714 + components: + - rot: -1.5707963267948966 rad + pos: 59.5,-5.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11716 + components: + - rot: -1.5707963267948966 rad + pos: 61.5,-5.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11717 + components: + - rot: -1.5707963267948966 rad + pos: 62.5,-5.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11718 + components: + - rot: -1.5707963267948966 rad + pos: 63.5,-5.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11723 + components: + - rot: 1.5707963267948966 rad + pos: 65.5,-4.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11724 + components: + - pos: 66.5,-3.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11725 + components: + - pos: 66.5,-2.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11727 + components: + - pos: 72.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11728 + components: + - pos: 72.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11738 + components: + - rot: -1.5707963267948966 rad + pos: 55.5,-4.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11739 + components: + - rot: -1.5707963267948966 rad + pos: 54.5,-4.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11740 + components: + - rot: -1.5707963267948966 rad + pos: 53.5,-4.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11741 + components: + - rot: -1.5707963267948966 rad + pos: 54.5,-5.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11742 + components: + - rot: -1.5707963267948966 rad + pos: 53.5,-5.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11764 + components: + - rot: 1.5707963267948966 rad + pos: 58.5,0.5 + parent: 2 + type: Transform + - uid: 11788 + components: + - rot: 3.141592653589793 rad + pos: 57.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11790 + components: + - pos: 61.5,-0.5 + parent: 2 + type: Transform + - uid: 11796 + components: + - rot: 1.5707963267948966 rad + pos: 57.5,-1.5 + parent: 2 + type: Transform + - uid: 11925 + components: + - pos: 61.5,-3.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11926 + components: + - pos: 61.5,-4.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11927 + components: + - pos: 61.5,-5.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11928 + components: + - pos: 61.5,-6.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11929 + components: + - pos: 61.5,-7.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11930 + components: + - pos: 61.5,-8.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11931 + components: + - pos: 61.5,-9.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11932 + components: + - pos: 60.5,-6.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11933 + components: + - pos: 60.5,-7.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11934 + components: + - pos: 60.5,-8.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11935 + components: + - pos: 60.5,-9.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11949 + components: + - rot: 3.141592653589793 rad + pos: 71.5,2.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11950 + components: + - rot: 3.141592653589793 rad + pos: 71.5,3.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11951 + components: + - rot: 3.141592653589793 rad + pos: 71.5,4.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11952 + components: + - rot: 3.141592653589793 rad + pos: 72.5,3.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12859 + components: + - rot: 3.141592653589793 rad + pos: 41.5,-49.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12860 + components: + - rot: 3.141592653589793 rad + pos: 43.5,-49.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12867 + components: + - pos: 43.5,-50.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12868 + components: + - pos: 41.5,-50.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12879 + components: + - rot: 3.141592653589793 rad + pos: 44.5,-44.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12880 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-45.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12887 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,-44.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12902 + components: + - rot: 3.141592653589793 rad + pos: 49.5,-45.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12903 + components: + - rot: 3.141592653589793 rad + pos: 47.5,-45.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 14 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-28.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 39 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,14.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 347 + components: + - pos: 18.5,15.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 355 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-34.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 356 + components: + - pos: 13.5,-35.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 362 + components: + - pos: 22.5,13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 426 + components: + - pos: 9.5,10.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 434 + components: + - pos: 11.5,9.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 756 + components: + - rot: 3.141592653589793 rad + pos: 27.5,13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 892 + components: + - pos: 19.5,13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1036 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-34.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1042 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,-24.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1148 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1215 + components: + - pos: 43.5,-48.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1221 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-28.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1225 + components: + - pos: 43.5,-44.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1234 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-46.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1257 + components: + - pos: 41.5,-44.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1259 + components: + - pos: 26.5,-28.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1260 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-36.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1261 + components: + - pos: 22.5,-36.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1262 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-35.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1263 + components: + - pos: 20.5,-35.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1304 + components: + - pos: 24.5,-35.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1372 + components: + - pos: 26.5,-27.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1516 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-17.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1529 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-36.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1619 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-17.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1653 + components: + - pos: 33.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1690 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-35.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1692 + components: + - pos: 21.5,-28.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1694 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-32.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1695 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-31.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1717 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1718 + components: + - pos: 40.5,15.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1806 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,15.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1813 + components: + - rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1821 + components: + - pos: 25.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2162 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2383 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-26.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2529 + components: + - rot: 3.141592653589793 rad + pos: 32.5,42.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3691 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,8.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3694 + components: + - rot: -1.5707963267948966 rad + pos: 57.5,-4.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3964 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-48.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4002 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,7.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4011 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-27.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4029 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-23.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4036 + components: + - rot: 3.141592653589793 rad + pos: 26.5,20.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4037 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,20.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4039 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-23.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4044 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-24.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4059 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-28.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4089 + components: + - pos: 16.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4126 + components: + - pos: 14.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4199 + components: + - pos: 27.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4236 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4282 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-24.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4367 + components: + - pos: 36.5,-24.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4368 + components: + - pos: 35.5,-24.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4494 + components: + - pos: 47.5,-47.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4496 + components: + - pos: 48.5,-47.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4497 + components: + - pos: 45.5,-47.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4499 + components: + - pos: 46.5,-47.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4768 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,4.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5019 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,40.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5035 + components: + - pos: 57.5,0.5 + parent: 2 + type: Transform + - uid: 5041 + components: + - pos: 59.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5076 + components: + - pos: 25.5,37.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5099 + components: + - rot: 3.141592653589793 rad + pos: 56.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5104 + components: + - pos: 45.5,15.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5112 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-27.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5113 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-11.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5114 + components: + - pos: 26.5,13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5115 + components: + - rot: 3.141592653589793 rad + pos: 26.5,1.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5118 + components: + - pos: 9.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5138 + components: + - pos: 8.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5160 + components: + - pos: 4.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5161 + components: + - pos: -0.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5162 + components: + - rot: 3.141592653589793 rad + pos: 63.5,1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5163 + components: + - pos: 30.5,15.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5165 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5168 + components: + - rot: 3.141592653589793 rad + pos: 71.5,1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5170 + components: + - rot: -1.5707963267948966 rad + pos: 55.5,0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5171 + components: + - pos: 61.5,-2.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5177 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,7.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5178 + components: + - pos: 1.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5179 + components: + - rot: 3.141592653589793 rad + pos: 41.5,13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5180 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5199 + components: + - rot: 1.5707963267948966 rad + pos: 56.5,25.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5233 + components: + - rot: 3.141592653589793 rad + pos: 47.5,-1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5237 + components: + - rot: 3.141592653589793 rad + pos: 32.5,13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5238 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,23.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5239 + components: + - rot: 3.141592653589793 rad + pos: 41.5,15.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5241 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,24.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5242 + components: + - pos: 26.5,23.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5284 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,21.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6423 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,41.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6552 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-6.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6555 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-9.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6558 + components: + - pos: 34.5,-6.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6565 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,-0.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6578 + components: + - pos: 39.5,-3.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6584 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-10.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6588 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-10.5 + parent: 2 + type: Transform + - uid: 6601 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-4.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6611 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-10.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6819 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,13.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7274 + components: + - rot: 3.141592653589793 rad + pos: 60.5,-1.5 + parent: 2 + type: Transform + - uid: 7409 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7428 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7802 + components: + - pos: 50.5,24.5 + parent: 2 + type: Transform + - uid: 8182 + components: + - rot: 3.141592653589793 rad + pos: 23.5,21.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8185 + components: + - rot: 3.141592653589793 rad + pos: 19.5,20.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8192 + components: + - rot: 3.141592653589793 rad + pos: 22.5,20.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8197 + components: + - rot: 3.141592653589793 rad + pos: 18.5,21.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8207 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,21.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8208 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,25.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8309 + components: + - pos: 27.5,46.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8555 + components: + - rot: 3.141592653589793 rad + pos: 33.5,24.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8561 + components: + - pos: 33.5,23.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8562 + components: + - pos: 34.5,23.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8563 + components: + - rot: 3.141592653589793 rad + pos: 34.5,24.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8594 + components: + - pos: 35.5,24.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9367 + components: + - rot: 3.141592653589793 rad + pos: 59.5,-1.5 + parent: 2 + type: Transform + - uid: 9533 + components: + - pos: 26.5,45.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9536 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,42.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9559 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,35.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9560 + components: + - rot: 3.141592653589793 rad + pos: 26.5,35.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9573 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,36.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10044 + components: + - rot: 1.5707963267948966 rad + pos: 56.5,30.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10047 + components: + - rot: 3.141592653589793 rad + pos: 56.5,24.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10048 + components: + - pos: 59.5,24.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10057 + components: + - rot: 3.141592653589793 rad + pos: 59.5,14.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10062 + components: + - pos: 54.5,14.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10116 + components: + - rot: 1.5707963267948966 rad + pos: 59.5,15.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10141 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10142 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10143 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10144 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10157 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10174 + components: + - pos: 7.5,-11.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10246 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,10.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10336 + components: + - pos: 62.5,14.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10357 + components: + - rot: 3.141592653589793 rad + pos: 48.5,10.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10363 + components: + - rot: -1.5707963267948966 rad + pos: 50.5,18.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10380 + components: + - rot: 3.141592653589793 rad + pos: 58.5,13.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10381 + components: + - rot: 3.141592653589793 rad + pos: 57.5,13.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10383 + components: + - rot: -1.5707963267948966 rad + pos: 63.5,13.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10404 + components: + - pos: 58.5,23.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11360 + components: + - pos: 77.5,1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11510 + components: + - pos: 65.5,1.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11511 + components: + - rot: 1.5707963267948966 rad + pos: 66.5,-9.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11513 + components: + - rot: -1.5707963267948966 rad + pos: 66.5,-6.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11580 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-48.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 11710 + components: + - rot: -1.5707963267948966 rad + pos: 64.5,-5.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11715 + components: + - pos: 56.5,-4.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11745 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,6.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11766 + components: + - rot: 3.141592653589793 rad + pos: 58.5,-1.5 + parent: 2 + type: Transform + - uid: 12863 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-51.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12864 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-52.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12865 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-52.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12866 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-51.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 12876 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-43.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12877 + components: + - rot: 3.141592653589793 rad + pos: 43.5,-43.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12878 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-43.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12886 + components: + - pos: 47.5,-44.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12900 + components: + - pos: 48.5,-44.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12901 + components: + - rot: 3.141592653589793 rad + pos: 48.5,-46.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12990 + components: + - rot: 3.141592653589793 rad + pos: 37.5,-48.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound +- proto: GasPort + entities: + - uid: 4010 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-23.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4034 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-24.5 + parent: 2 + type: Transform + - uid: 4038 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-23.5 + parent: 2 + type: Transform + - uid: 4040 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-24.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4362 + components: + - rot: 3.141592653589793 rad + pos: 36.5,-25.5 + parent: 2 + type: Transform + - uid: 4363 + components: + - rot: 3.141592653589793 rad + pos: 37.5,-25.5 + parent: 2 + type: Transform + - uid: 4913 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-40.5 + parent: 2 + type: Transform + - uid: 4920 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-40.5 + parent: 2 + type: Transform + - uid: 4921 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-40.5 + parent: 2 + type: Transform + - uid: 4922 + components: + - pos: 43.5,-39.5 + parent: 2 + type: Transform + - uid: 4923 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-40.5 + parent: 2 + type: Transform + - uid: 4925 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-40.5 + parent: 2 + type: Transform + - uid: 4926 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,-39.5 + parent: 2 + type: Transform + - uid: 4927 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,-39.5 + parent: 2 + type: Transform + - uid: 6480 + components: + - pos: 37.5,-42.5 + parent: 2 + type: Transform + - uid: 7882 + components: + - pos: 38.5,-42.5 + parent: 2 + type: Transform + - uid: 10420 + components: + - rot: 3.141592653589793 rad + pos: 63.5,22.5 + parent: 2 + type: Transform + - uid: 10425 + components: + - rot: 3.141592653589793 rad + pos: 64.5,22.5 + parent: 2 + type: Transform + - uid: 12871 + components: + - pos: 41.5,-42.5 + parent: 2 + type: Transform + - uid: 12872 + components: + - pos: 42.5,-42.5 + parent: 2 + type: Transform + - uid: 12873 + components: + - pos: 43.5,-42.5 + parent: 2 + type: Transform + - uid: 12874 + components: + - pos: 44.5,-42.5 + parent: 2 + type: Transform +- proto: GasPressurePump + entities: + - uid: 670 + components: + - pos: 31.5,-27.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1942 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-30.5 + parent: 2 + type: Transform + - uid: 2781 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-28.5 + parent: 2 + type: Transform + - uid: 4030 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-24.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4033 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-23.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4128 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-34.5 + parent: 2 + type: Transform + - uid: 4130 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-32.5 + parent: 2 + type: Transform + - uid: 4145 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-26.5 + parent: 2 + type: Transform + - uid: 4178 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-24.5 + parent: 2 + type: Transform + - uid: 4361 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-25.5 + parent: 2 + type: Transform + - uid: 5037 + components: + - rot: 3.141592653589793 rad + pos: 57.5,-0.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6583 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-10.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7803 + components: + - rot: -1.5707963267948966 rad + pos: 51.5,24.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7883 + components: + - pos: 37.5,-43.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10423 + components: + - rot: 3.141592653589793 rad + pos: 63.5,23.5 + parent: 2 + type: Transform + - uid: 10424 + components: + - pos: 64.5,23.5 + parent: 2 + type: Transform + - uid: 11577 + components: + - pos: 38.5,-43.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasThermoMachineFreezer + entities: + - uid: 4364 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-25.5 + parent: 2 + type: Transform + - uid: 4912 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-40.5 + parent: 2 + type: Transform + - uid: 7984 + components: + - rot: 3.141592653589793 rad + pos: 50.5,23.5 + parent: 2 + type: Transform + - uid: 11775 + components: + - pos: 59.5,-0.5 + parent: 2 + type: Transform + - uid: 12989 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-48.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasThermoMachineFreezerEnabled + entities: + - uid: 1156 + components: + - pos: 30.5,-9.5 + parent: 2 + type: Transform + - targetTemperature: 0 + type: GasThermoMachine +- proto: GasThermoMachineHeater + entities: + - uid: 1216 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-44.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4906 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,-40.5 + parent: 2 + type: Transform +- proto: GasValve + entities: + - uid: 1233 + components: + - pos: 42.5,-47.5 + parent: 2 + type: Transform + - open: False + type: GasValve + - enabled: False + type: AmbientSound + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 4150 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,-35.5 + parent: 2 + type: Transform + - open: False + type: GasValve + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4250 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-48.5 + parent: 2 + type: Transform + - open: False + type: GasValve + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11586 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-47.5 + parent: 2 + type: Transform + - open: False + type: GasValve + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 408 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-29.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1560 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-17.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1520 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1625 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-32.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1017 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 2393 + components: + - pos: 30.5,-27.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3692 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12484 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4027 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,13.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 138 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4035 + components: + - rot: 3.141592653589793 rad + pos: 19.5,6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 195 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4460 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-40.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 170 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4465 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-38.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 4551 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-36.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11990 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5103 + components: + - pos: 41.5,14.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12486 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5189 + components: + - rot: 3.141592653589793 rad + pos: 57.5,-9.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11731 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5422 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-40.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5533 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,42.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5678 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-36.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 5680 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 5964 + components: + - rot: 3.141592653589793 rad + pos: 11.5,5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 6158 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6570 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 6682 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6590 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-12.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 6593 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-11.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 6632 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6608 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-11.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 6632 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6609 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,-4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 360 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6620 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 5020 + - 5077 + - 8316 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6627 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-3.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6640 + components: + - pos: 46.5,-0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11508 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6778 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 8011 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6804 + components: + - pos: 26.5,-16.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6927 + components: + - rot: 3.141592653589793 rad + pos: 22.5,12.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12473 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 6951 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,9.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12447 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7469 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-14.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 7839 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 7801 + components: + - rot: 1.5707963267948966 rad + pos: 49.5,24.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 7838 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 2124 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8009 + components: + - pos: 12.5,0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 8011 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8016 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10204 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8220 + components: + - rot: 3.141592653589793 rad + pos: 9.5,19.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8222 + components: + - pos: 9.5,22.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 8239 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8236 + components: + - pos: 19.5,21.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12520 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8240 + components: + - pos: 26.5,21.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8242 + components: + - pos: 22.5,21.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8296 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,46.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12537 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8301 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,41.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8344 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,42.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8575 + components: + - pos: 34.5,25.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12528 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8596 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,24.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8597 + components: + - rot: 3.141592653589793 rad + pos: 39.5,23.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12530 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8607 + components: + - pos: 39.5,27.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8629 + components: + - pos: 38.5,18.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12528 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8673 + components: + - pos: 40.5,32.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8684 + components: + - pos: 42.5,17.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12532 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8700 + components: + - rot: -1.5707963267948966 rad + pos: 57.5,30.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8701 + components: + - pos: 56.5,34.5 + parent: 2 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9358 + components: + - pos: 32.5,14.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9558 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,39.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12539 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9570 + components: + - pos: 26.5,36.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9587 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9581 + components: + - pos: 18.5,40.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9582 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,36.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 9635 + components: + - pos: 47.5,3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9637 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10163 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-12.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10170 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-12.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10171 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10203 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10172 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10201 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10173 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10178 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10202 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10214 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-11.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10207 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10248 + components: + - rot: 3.141592653589793 rad + pos: 26.5,8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10250 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10331 + components: + - pos: 48.5,11.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 5101 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10346 + components: + - rot: 3.141592653589793 rad + pos: 62.5,10.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12562 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10347 + components: + - rot: -1.5707963267948966 rad + pos: 67.5,14.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 182 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10351 + components: + - rot: 1.5707963267948966 rad + pos: 55.5,18.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12548 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10352 + components: + - rot: -1.5707963267948966 rad + pos: 57.5,25.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1647 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10355 + components: + - rot: -1.5707963267948966 rad + pos: 62.5,24.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10419 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10356 + components: + - rot: -1.5707963267948966 rad + pos: 60.5,18.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 2296 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10358 + components: + - rot: -1.5707963267948966 rad + pos: 60.5,15.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 151 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 10643 + components: + - rot: 3.141592653589793 rad + pos: 29.5,8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10653 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11365 + components: + - rot: 3.141592653589793 rad + pos: 77.5,-4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12504 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11366 + components: + - rot: -1.5707963267948966 rad + pos: 78.5,1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12163 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11514 + components: + - rot: 1.5707963267948966 rad + pos: 64.5,-1.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11515 + components: + - pos: 66.5,-5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11730 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11516 + components: + - rot: 3.141592653589793 rad + pos: 66.5,-10.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11709 + components: + - pos: 71.5,-3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12503 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11743 + components: + - rot: 1.5707963267948966 rad + pos: 52.5,-4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12488 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11924 + components: + - rot: 3.141592653589793 rad + pos: 56.5,-5.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11937 + components: + - rot: 3.141592653589793 rad + pos: 61.5,-10.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11945 + components: + - pos: 63.5,2.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12152 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 11956 + components: + - pos: 71.5,5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12506 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 1305 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-32.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1017 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 1324 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-41.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 3475 + components: + - pos: 79.5,-5.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 3693 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12484 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4092 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,15.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 138 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4183 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,15.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12473 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4447 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-39.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 170 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4464 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-38.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4552 + components: + - pos: 28.5,-35.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11990 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4553 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-28.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5679 + components: + - pos: 13.5,-33.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 5680 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5968 + components: + - rot: 3.141592653589793 rad + pos: 9.5,5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 6158 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6571 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 6682 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6595 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-11.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 6632 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6610 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-9.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 6632 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6614 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-10.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6621 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 5020 + - 5077 + - 8316 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6622 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 360 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6628 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11508 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6629 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-7.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6805 + components: + - pos: 26.5,-9.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6949 + components: + - rot: 3.141592653589793 rad + pos: 18.5,6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 195 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6950 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,10.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12447 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7472 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-13.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 7839 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7708 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 8011 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 7837 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 2124 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8010 + components: + - rot: 3.141592653589793 rad + pos: 14.5,0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 8011 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8017 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10204 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8221 + components: + - rot: 3.141592653589793 rad + pos: 8.5,17.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8229 + components: + - pos: 8.5,26.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 8239 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8235 + components: + - pos: 18.5,22.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12520 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8243 + components: + - pos: 23.5,22.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8564 + components: + - rot: 3.141592653589793 rad + pos: 34.5,22.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12528 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8595 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,23.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8598 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,22.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12530 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8610 + components: + - pos: 40.5,26.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8630 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,19.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12528 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8674 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,33.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 8685 + components: + - pos: 41.5,18.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12532 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8810 + components: + - rot: 3.141592653589793 rad + pos: 26.5,22.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9359 + components: + - rot: 3.141592653589793 rad + pos: 30.5,14.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9546 + components: + - pos: 28.5,46.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12537 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9554 + components: + - rot: 3.141592653589793 rad + pos: 22.5,41.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9557 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,42.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12539 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9569 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,37.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9587 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 9636 + components: + - pos: 44.5,3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9637 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10128 + components: + - rot: 3.141592653589793 rad + pos: 55.5,-9.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11731 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10179 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10180 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10201 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10181 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10202 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10182 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-7.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10203 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10215 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-10.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10207 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10217 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-28.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10249 + components: + - pos: 26.5,5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10250 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10365 + components: + - rot: 3.141592653589793 rad + pos: 45.5,14.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12486 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10366 + components: + - rot: 3.141592653589793 rad + pos: 50.5,17.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12548 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10375 + components: + - rot: -1.5707963267948966 rad + pos: 59.5,19.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 2296 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10400 + components: + - rot: -1.5707963267948966 rad + pos: 67.5,15.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 182 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10401 + components: + - rot: 3.141592653589793 rad + pos: 63.5,10.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12562 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10402 + components: + - rot: 1.5707963267948966 rad + pos: 54.5,9.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 5101 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10403 + components: + - pos: 57.5,14.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 151 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10411 + components: + - rot: -1.5707963267948966 rad + pos: 62.5,23.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10419 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10412 + components: + - rot: 1.5707963267948966 rad + pos: 57.5,23.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1647 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 10652 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10653 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11367 + components: + - rot: -1.5707963267948966 rad + pos: 77.5,2.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12163 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11719 + components: + - rot: 3.141592653589793 rad + pos: 64.5,-6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 11730 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11726 + components: + - rot: -1.5707963267948966 rad + pos: 67.5,-1.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11729 + components: + - rot: 3.141592653589793 rad + pos: 72.5,-0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12503 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11744 + components: + - rot: 1.5707963267948966 rad + pos: 52.5,-5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12488 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11923 + components: + - pos: 60.5,-4.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11936 + components: + - rot: 3.141592653589793 rad + pos: 60.5,-10.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11938 + components: + - pos: 56.5,2.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12152 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11957 + components: + - pos: 73.5,5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 12506 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasVolumePump + entities: + - uid: 1238 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-47.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 1373 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-22.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 4501 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,-45.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: Gauze + entities: + - uid: 11966 + components: + - pos: 67.46306,3.7913218 + parent: 2 + type: Transform +- proto: Girder + entities: + - uid: 1968 + components: + - pos: 89.5,-1.5 + parent: 2 + type: Transform + - uid: 2379 + components: + - pos: 84.5,6.5 + parent: 2 + type: Transform + - uid: 2473 + components: + - pos: 85.5,1.5 + parent: 2 + type: Transform + - uid: 6006 + components: + - pos: 66.5,21.5 + parent: 2 + type: Transform + - uid: 6007 + components: + - pos: 66.5,18.5 + parent: 2 + type: Transform + - uid: 6238 + components: + - pos: 88.5,-3.5 + parent: 2 + type: Transform + - uid: 6309 + components: + - pos: 89.5,-3.5 + parent: 2 + type: Transform + - uid: 13044 + components: + - pos: 36.5,-52.5 + parent: 2 + type: Transform + - uid: 13045 + components: + - pos: 32.5,-56.5 + parent: 2 + type: Transform +- proto: GlowstickRed + entities: + - uid: 7565 + components: + - pos: 49.50738,-16.506752 + parent: 2 + type: Transform +- proto: GravityGenerator + entities: + - uid: 8244 + components: + - pos: 14.5,40.5 + parent: 2 + type: Transform +- proto: Grille + entities: + - uid: 8 + components: + - pos: -14.5,-20.5 + parent: 2 + type: Transform + - uid: 12 + components: + - pos: -18.5,14.5 + parent: 2 + type: Transform + - uid: 15 + components: + - pos: -4.5,-18.5 + parent: 2 + type: Transform + - uid: 16 + components: + - pos: -4.5,-16.5 + parent: 2 + type: Transform + - uid: 19 + components: + - pos: -6.5,-18.5 + parent: 2 + type: Transform + - uid: 20 + components: + - pos: -4.5,-17.5 + parent: 2 + type: Transform + - uid: 44 + components: + - pos: -6.5,-17.5 + parent: 2 + type: Transform + - uid: 83 + components: + - pos: -7.5,-0.5 + parent: 2 + type: Transform + - uid: 103 + components: + - pos: -3.5,-13.5 + parent: 2 + type: Transform + - uid: 104 + components: + - pos: -2.5,-13.5 + parent: 2 + type: Transform + - uid: 105 + components: + - pos: -1.5,-13.5 + parent: 2 + type: Transform + - uid: 115 + components: + - pos: -4.5,-9.5 + parent: 2 + type: Transform + - uid: 116 + components: + - pos: -4.5,-8.5 + parent: 2 + type: Transform + - uid: 129 + components: + - pos: 26.5,-30.5 + parent: 2 + type: Transform + - uid: 130 + components: + - pos: -18.5,-10.5 + parent: 2 + type: Transform + - uid: 141 + components: + - pos: -20.5,-21.5 + parent: 2 + type: Transform + - uid: 144 + components: + - pos: -18.5,-21.5 + parent: 2 + type: Transform + - uid: 147 + components: + - pos: 27.5,-30.5 + parent: 2 + type: Transform + - uid: 196 + components: + - pos: 1.5,-17.5 + parent: 2 + type: Transform + - uid: 197 + components: + - pos: 0.5,-17.5 + parent: 2 + type: Transform + - uid: 240 + components: + - pos: -10.5,-19.5 + parent: 2 + type: Transform + - uid: 241 + components: + - pos: -19.5,-21.5 + parent: 2 + type: Transform + - uid: 244 + components: + - pos: 2.5,11.5 + parent: 2 + type: Transform + - uid: 259 + components: + - pos: 7.5,7.5 + parent: 2 + type: Transform + - uid: 260 + components: + - pos: 7.5,6.5 + parent: 2 + type: Transform + - uid: 261 + components: + - pos: 7.5,5.5 + parent: 2 + type: Transform + - uid: 262 + components: + - pos: 8.5,8.5 + parent: 2 + type: Transform + - uid: 263 + components: + - pos: 10.5,8.5 + parent: 2 + type: Transform + - uid: 264 + components: + - pos: 12.5,8.5 + parent: 2 + type: Transform + - uid: 331 + components: + - pos: -11.5,-15.5 + parent: 2 + type: Transform + - uid: 332 + components: + - pos: -12.5,-15.5 + parent: 2 + type: Transform + - uid: 333 + components: + - pos: -13.5,-15.5 + parent: 2 + type: Transform + - uid: 334 + components: + - pos: -18.5,-15.5 + parent: 2 + type: Transform + - uid: 335 + components: + - pos: -19.5,-15.5 + parent: 2 + type: Transform + - uid: 336 + components: + - pos: -20.5,-15.5 + parent: 2 + type: Transform + - uid: 337 + components: + - pos: -22.5,-14.5 + parent: 2 + type: Transform + - uid: 339 + components: + - pos: -22.5,-13.5 + parent: 2 + type: Transform + - uid: 341 + components: + - pos: -22.5,-12.5 + parent: 2 + type: Transform + - uid: 346 + components: + - pos: -13.5,-20.5 + parent: 2 + type: Transform + - uid: 403 + components: + - pos: -4.5,14.5 + parent: 2 + type: Transform + - uid: 428 + components: + - pos: -6.5,14.5 + parent: 2 + type: Transform + - uid: 429 + components: + - pos: 5.5,20.5 + parent: 2 + type: Transform + - uid: 438 + components: + - pos: -9.5,14.5 + parent: 2 + type: Transform + - uid: 471 + components: + - pos: -10.5,14.5 + parent: 2 + type: Transform + - uid: 507 + components: + - pos: 14.5,-2.5 + parent: 2 + type: Transform + - uid: 508 + components: + - pos: 15.5,-2.5 + parent: 2 + type: Transform + - uid: 511 + components: + - pos: -4.5,-12.5 + parent: 2 + type: Transform + - uid: 597 + components: + - pos: 28.5,-5.5 + parent: 2 + type: Transform + - uid: 607 + components: + - pos: 0.5,14.5 + parent: 2 + type: Transform + - uid: 610 + components: + - pos: -0.5,14.5 + parent: 2 + type: Transform + - uid: 614 + components: + - pos: -1.5,14.5 + parent: 2 + type: Transform + - uid: 660 + components: + - pos: 17.5,-16.5 + parent: 2 + type: Transform + - uid: 661 + components: + - pos: 17.5,-18.5 + parent: 2 + type: Transform + - uid: 662 + components: + - pos: 18.5,-18.5 + parent: 2 + type: Transform + - uid: 663 + components: + - pos: 19.5,-18.5 + parent: 2 + type: Transform + - uid: 664 + components: + - pos: 19.5,-17.5 + parent: 2 + type: Transform + - uid: 665 + components: + - pos: 19.5,-16.5 + parent: 2 + type: Transform + - uid: 674 + components: + - pos: -25.5,-12.5 + parent: 2 + type: Transform + - uid: 687 + components: + - pos: -2.5,14.5 + parent: 2 + type: Transform + - uid: 694 + components: + - pos: -27.5,-14.5 + parent: 2 + type: Transform + - uid: 697 + components: + - pos: -3.5,14.5 + parent: 2 + type: Transform + - uid: 698 + components: + - pos: 7.5,-25.5 + parent: 2 + type: Transform + - uid: 699 + components: + - pos: 6.5,-25.5 + parent: 2 + type: Transform + - uid: 700 + components: + - pos: 6.5,-26.5 + parent: 2 + type: Transform + - uid: 701 + components: + - pos: 6.5,-27.5 + parent: 2 + type: Transform + - uid: 702 + components: + - pos: 6.5,-30.5 + parent: 2 + type: Transform + - uid: 703 + components: + - pos: 6.5,-31.5 + parent: 2 + type: Transform + - uid: 704 + components: + - pos: 6.5,-32.5 + parent: 2 + type: Transform + - uid: 706 + components: + - pos: 5.5,-32.5 + parent: 2 + type: Transform + - uid: 811 + components: + - pos: 25.5,-26.5 + parent: 2 + type: Transform + - uid: 812 + components: + - pos: 27.5,-26.5 + parent: 2 + type: Transform + - uid: 854 + components: + - pos: 19.5,-30.5 + parent: 2 + type: Transform + - uid: 855 + components: + - pos: 19.5,-32.5 + parent: 2 + type: Transform + - uid: 856 + components: + - pos: 24.5,-34.5 + parent: 2 + type: Transform + - uid: 857 + components: + - pos: 25.5,-34.5 + parent: 2 + type: Transform + - uid: 858 + components: + - pos: 28.5,-34.5 + parent: 2 + type: Transform + - uid: 859 + components: + - pos: 27.5,-34.5 + parent: 2 + type: Transform + - uid: 860 + components: + - pos: 33.5,-32.5 + parent: 2 + type: Transform + - uid: 861 + components: + - pos: 33.5,-30.5 + parent: 2 + type: Transform + - uid: 921 + components: + - pos: 13.5,-37.5 + parent: 2 + type: Transform + - uid: 922 + components: + - pos: 12.5,-37.5 + parent: 2 + type: Transform + - uid: 923 + components: + - pos: 11.5,-37.5 + parent: 2 + type: Transform + - uid: 924 + components: + - pos: 10.5,-37.5 + parent: 2 + type: Transform + - uid: 925 + components: + - pos: 14.5,-36.5 + parent: 2 + type: Transform + - uid: 926 + components: + - pos: 14.5,-35.5 + parent: 2 + type: Transform + - uid: 927 + components: + - pos: 14.5,-33.5 + parent: 2 + type: Transform + - uid: 959 + components: + - pos: 24.5,-38.5 + parent: 2 + type: Transform + - uid: 960 + components: + - pos: 23.5,-37.5 + parent: 2 + type: Transform + - uid: 961 + components: + - pos: 22.5,-37.5 + parent: 2 + type: Transform + - uid: 962 + components: + - pos: 20.5,-37.5 + parent: 2 + type: Transform + - uid: 963 + components: + - pos: 19.5,-37.5 + parent: 2 + type: Transform + - uid: 964 + components: + - pos: 18.5,-38.5 + parent: 2 + type: Transform + - uid: 965 + components: + - pos: 18.5,-41.5 + parent: 2 + type: Transform + - uid: 966 + components: + - pos: 18.5,-42.5 + parent: 2 + type: Transform + - uid: 967 + components: + - pos: 18.5,-43.5 + parent: 2 + type: Transform + - uid: 968 + components: + - pos: 18.5,-44.5 + parent: 2 + type: Transform + - uid: 969 + components: + - pos: 19.5,-44.5 + parent: 2 + type: Transform + - uid: 970 + components: + - pos: 20.5,-44.5 + parent: 2 + type: Transform + - uid: 971 + components: + - pos: 21.5,-44.5 + parent: 2 + type: Transform + - uid: 972 + components: + - pos: 22.5,-44.5 + parent: 2 + type: Transform + - uid: 973 + components: + - pos: 23.5,-44.5 + parent: 2 + type: Transform + - uid: 974 + components: + - pos: 24.5,-44.5 + parent: 2 + type: Transform + - uid: 975 + components: + - pos: 24.5,-43.5 + parent: 2 + type: Transform + - uid: 976 + components: + - pos: 24.5,-42.5 + parent: 2 + type: Transform + - uid: 977 + components: + - pos: 24.5,-41.5 + parent: 2 + type: Transform + - uid: 978 + components: + - pos: 25.5,-43.5 + parent: 2 + type: Transform + - uid: 979 + components: + - pos: 26.5,-43.5 + parent: 2 + type: Transform + - uid: 980 + components: + - pos: 17.5,-43.5 + parent: 2 + type: Transform + - uid: 981 + components: + - pos: 16.5,-43.5 + parent: 2 + type: Transform + - uid: 1108 + components: + - pos: -27.5,-12.5 + parent: 2 + type: Transform + - uid: 1180 + components: + - pos: -11.5,-10.5 + parent: 2 + type: Transform + - uid: 1241 + components: + - pos: 38.5,-58.5 + parent: 2 + type: Transform + - uid: 1242 + components: + - pos: 36.5,-58.5 + parent: 2 + type: Transform + - uid: 1243 + components: + - pos: 33.5,-58.5 + parent: 2 + type: Transform + - uid: 1246 + components: + - pos: 37.5,-58.5 + parent: 2 + type: Transform + - uid: 1248 + components: + - pos: 34.5,-58.5 + parent: 2 + type: Transform + - uid: 1316 + components: + - pos: -11.5,-11.5 + parent: 2 + type: Transform + - uid: 1317 + components: + - pos: -13.5,-11.5 + parent: 2 + type: Transform + - uid: 1330 + components: + - pos: -12.5,14.5 + parent: 2 + type: Transform + - uid: 1336 + components: + - pos: -15.5,-11.5 + parent: 2 + type: Transform + - uid: 1338 + components: + - pos: 1.5,-27.5 + parent: 2 + type: Transform + - uid: 1339 + components: + - pos: 0.5,-27.5 + parent: 2 + type: Transform + - uid: 1340 + components: + - pos: -1.5,-28.5 + parent: 2 + type: Transform + - uid: 1341 + components: + - pos: -1.5,-29.5 + parent: 2 + type: Transform + - uid: 1357 + components: + - pos: 1.5,-34.5 + parent: 2 + type: Transform + - uid: 1358 + components: + - pos: 0.5,-34.5 + parent: 2 + type: Transform + - uid: 1359 + components: + - pos: -0.5,-34.5 + parent: 2 + type: Transform + - uid: 1360 + components: + - pos: 1.5,-36.5 + parent: 2 + type: Transform + - uid: 1361 + components: + - pos: 0.5,-36.5 + parent: 2 + type: Transform + - uid: 1362 + components: + - pos: -0.5,-36.5 + parent: 2 + type: Transform + - uid: 1508 + components: + - pos: 34.5,-1.5 + parent: 2 + type: Transform + - uid: 1540 + components: + - pos: 28.5,-6.5 + parent: 2 + type: Transform + - uid: 1546 + components: + - pos: -7.5,14.5 + parent: 2 + type: Transform + - uid: 1556 + components: + - pos: -16.5,-11.5 + parent: 2 + type: Transform + - uid: 1565 + components: + - pos: 28.5,-3.5 + parent: 2 + type: Transform + - uid: 1575 + components: + - pos: 28.5,-4.5 + parent: 2 + type: Transform + - uid: 1675 + components: + - pos: 45.5,-2.5 + parent: 2 + type: Transform + - uid: 1710 + components: + - pos: 46.5,-14.5 + parent: 2 + type: Transform + - uid: 1711 + components: + - pos: 46.5,-15.5 + parent: 2 + type: Transform + - uid: 1712 + components: + - pos: 46.5,-16.5 + parent: 2 + type: Transform + - uid: 1713 + components: + - pos: 42.5,-16.5 + parent: 2 + type: Transform + - uid: 1714 + components: + - pos: 42.5,-15.5 + parent: 2 + type: Transform + - uid: 1715 + components: + - pos: 42.5,-14.5 + parent: 2 + type: Transform + - uid: 1741 + components: + - pos: 28.5,-14.5 + parent: 2 + type: Transform + - uid: 1742 + components: + - pos: 28.5,-17.5 + parent: 2 + type: Transform + - uid: 1773 + components: + - pos: -5.5,14.5 + parent: 2 + type: Transform + - uid: 1854 + components: + - pos: -14.5,-19.5 + parent: 2 + type: Transform + - uid: 1856 + components: + - pos: -3.5,0.5 + parent: 2 + type: Transform + - uid: 1967 + components: + - pos: 88.5,-6.5 + parent: 2 + type: Transform + - uid: 1998 + components: + - pos: 6.5,22.5 + parent: 2 + type: Transform + - uid: 1999 + components: + - pos: 5.5,22.5 + parent: 2 + type: Transform + - uid: 2000 + components: + - pos: 4.5,22.5 + parent: 2 + type: Transform + - uid: 2005 + components: + - pos: 6.5,25.5 + parent: 2 + type: Transform + - uid: 2006 + components: + - pos: 5.5,25.5 + parent: 2 + type: Transform + - uid: 2007 + components: + - pos: 4.5,25.5 + parent: 2 + type: Transform + - uid: 2008 + components: + - pos: 6.5,28.5 + parent: 2 + type: Transform + - uid: 2009 + components: + - pos: 5.5,28.5 + parent: 2 + type: Transform + - uid: 2010 + components: + - pos: 4.5,28.5 + parent: 2 + type: Transform + - uid: 2023 + components: + - pos: -12.5,-20.5 + parent: 2 + type: Transform + - uid: 2031 + components: + - pos: -7.5,-5.5 + parent: 2 + type: Transform + - uid: 2035 + components: + - pos: 11.5,29.5 + parent: 2 + type: Transform + - uid: 2036 + components: + - pos: 13.5,29.5 + parent: 2 + type: Transform + - uid: 2073 + components: + - pos: 44.5,-29.5 + parent: 2 + type: Transform + - uid: 2074 + components: + - pos: 44.5,-23.5 + parent: 2 + type: Transform + - uid: 2076 + components: + - pos: 16.5,21.5 + parent: 2 + type: Transform + - uid: 2077 + components: + - pos: 7.5,20.5 + parent: 2 + type: Transform + - uid: 2079 + components: + - pos: 21.5,23.5 + parent: 2 + type: Transform + - uid: 2080 + components: + - pos: 21.5,24.5 + parent: 2 + type: Transform + - uid: 2137 + components: + - pos: 44.5,-27.5 + parent: 2 + type: Transform + - uid: 2139 + components: + - pos: 44.5,-33.5 + parent: 2 + type: Transform + - uid: 2142 + components: + - pos: 44.5,-25.5 + parent: 2 + type: Transform + - uid: 2182 + components: + - pos: 24.5,15.5 + parent: 2 + type: Transform + - uid: 2183 + components: + - pos: 24.5,12.5 + parent: 2 + type: Transform + - uid: 2236 + components: + - pos: 28.5,21.5 + parent: 2 + type: Transform + - uid: 2237 + components: + - pos: 28.5,20.5 + parent: 2 + type: Transform + - uid: 2238 + components: + - pos: 28.5,18.5 + parent: 2 + type: Transform + - uid: 2239 + components: + - pos: 28.5,17.5 + parent: 2 + type: Transform + - uid: 2254 + components: + - pos: 31.5,21.5 + parent: 2 + type: Transform + - uid: 2255 + components: + - pos: 31.5,17.5 + parent: 2 + type: Transform + - uid: 2274 + components: + - pos: 42.5,32.5 + parent: 2 + type: Transform + - uid: 2279 + components: + - pos: 42.5,31.5 + parent: 2 + type: Transform + - uid: 2280 + components: + - pos: 42.5,33.5 + parent: 2 + type: Transform + - uid: 2281 + components: + - pos: 44.5,34.5 + parent: 2 + type: Transform + - uid: 2282 + components: + - pos: 44.5,35.5 + parent: 2 + type: Transform + - uid: 2283 + components: + - pos: 44.5,36.5 + parent: 2 + type: Transform + - uid: 2351 + components: + - pos: 37.5,24.5 + parent: 2 + type: Transform + - uid: 2352 + components: + - pos: 37.5,23.5 + parent: 2 + type: Transform + - uid: 2353 + components: + - pos: 37.5,26.5 + parent: 2 + type: Transform + - uid: 2354 + components: + - pos: 37.5,27.5 + parent: 2 + type: Transform + - uid: 2355 + components: + - pos: 37.5,28.5 + parent: 2 + type: Transform + - uid: 2357 + components: + - pos: 41.5,25.5 + parent: 2 + type: Transform + - uid: 2358 + components: + - pos: 37.5,21.5 + parent: 2 + type: Transform + - uid: 2359 + components: + - pos: 38.5,20.5 + parent: 2 + type: Transform + - uid: 2365 + components: + - pos: 38.5,25.5 + parent: 2 + type: Transform + - uid: 2371 + components: + - pos: 42.5,24.5 + parent: 2 + type: Transform + - uid: 2372 + components: + - pos: 42.5,22.5 + parent: 2 + type: Transform + - uid: 2392 + components: + - pos: 67.5,-18.5 + parent: 2 + type: Transform + - uid: 2433 + components: + - pos: 24.5,-27.5 + parent: 2 + type: Transform + - uid: 2434 + components: + - pos: 28.5,-27.5 + parent: 2 + type: Transform + - uid: 2456 + components: + - pos: 43.5,16.5 + parent: 2 + type: Transform + - uid: 2457 + components: + - pos: 41.5,16.5 + parent: 2 + type: Transform + - uid: 2512 + components: + - pos: 39.5,8.5 + parent: 2 + type: Transform + - uid: 2513 + components: + - pos: 39.5,9.5 + parent: 2 + type: Transform + - uid: 2514 + components: + - pos: 39.5,6.5 + parent: 2 + type: Transform + - uid: 2515 + components: + - pos: 39.5,5.5 + parent: 2 + type: Transform + - uid: 2618 + components: + - pos: 21.5,38.5 + parent: 2 + type: Transform + - uid: 2619 + components: + - pos: 22.5,38.5 + parent: 2 + type: Transform + - uid: 2620 + components: + - pos: 23.5,38.5 + parent: 2 + type: Transform + - uid: 2621 + components: + - pos: 24.5,38.5 + parent: 2 + type: Transform + - uid: 2622 + components: + - pos: 21.5,43.5 + parent: 2 + type: Transform + - uid: 2623 + components: + - pos: 24.5,43.5 + parent: 2 + type: Transform + - uid: 2624 + components: + - pos: 27.5,38.5 + parent: 2 + type: Transform + - uid: 2625 + components: + - pos: 27.5,43.5 + parent: 2 + type: Transform + - uid: 2649 + components: + - pos: 15.5,42.5 + parent: 2 + type: Transform + - uid: 2650 + components: + - pos: 14.5,42.5 + parent: 2 + type: Transform + - uid: 2651 + components: + - pos: 13.5,42.5 + parent: 2 + type: Transform + - uid: 2676 + components: + - pos: 24.5,34.5 + parent: 2 + type: Transform + - uid: 2677 + components: + - pos: 23.5,34.5 + parent: 2 + type: Transform + - uid: 2678 + components: + - pos: 22.5,33.5 + parent: 2 + type: Transform + - uid: 2679 + components: + - pos: 22.5,32.5 + parent: 2 + type: Transform + - uid: 2680 + components: + - pos: 22.5,30.5 + parent: 2 + type: Transform + - uid: 2681 + components: + - pos: 22.5,29.5 + parent: 2 + type: Transform + - uid: 2729 + components: + - pos: -13.5,1.5 + parent: 2 + type: Transform + - uid: 2732 + components: + - pos: -25.5,-13.5 + parent: 2 + type: Transform + - uid: 2735 + components: + - pos: -4.5,-14.5 + parent: 2 + type: Transform + - uid: 2736 + components: + - pos: -11.5,1.5 + parent: 2 + type: Transform + - uid: 2740 + components: + - pos: -25.5,-14.5 + parent: 2 + type: Transform + - uid: 2741 + components: + - pos: -9.5,1.5 + parent: 2 + type: Transform + - uid: 2742 + components: + - pos: -14.5,1.5 + parent: 2 + type: Transform + - uid: 2743 + components: + - pos: -10.5,1.5 + parent: 2 + type: Transform + - uid: 2789 + components: + - pos: 22.5,49.5 + parent: 2 + type: Transform + - uid: 2790 + components: + - pos: 23.5,49.5 + parent: 2 + type: Transform + - uid: 2791 + components: + - pos: 24.5,49.5 + parent: 2 + type: Transform + - uid: 2792 + components: + - pos: 25.5,49.5 + parent: 2 + type: Transform + - uid: 2793 + components: + - pos: 26.5,49.5 + parent: 2 + type: Transform + - uid: 2794 + components: + - pos: 27.5,49.5 + parent: 2 + type: Transform + - uid: 2795 + components: + - pos: 28.5,49.5 + parent: 2 + type: Transform + - uid: 2796 + components: + - pos: 29.5,49.5 + parent: 2 + type: Transform + - uid: 2797 + components: + - pos: 30.5,49.5 + parent: 2 + type: Transform + - uid: 2798 + components: + - pos: 31.5,49.5 + parent: 2 + type: Transform + - uid: 2799 + components: + - pos: 32.5,49.5 + parent: 2 + type: Transform + - uid: 2806 + components: + - pos: 36.5,45.5 + parent: 2 + type: Transform + - uid: 2807 + components: + - pos: 36.5,46.5 + parent: 2 + type: Transform + - uid: 2808 + components: + - pos: 18.5,44.5 + parent: 2 + type: Transform + - uid: 2809 + components: + - pos: 18.5,45.5 + parent: 2 + type: Transform + - uid: 2828 + components: + - pos: -20.5,-10.5 + parent: 2 + type: Transform + - uid: 2830 + components: + - pos: -7.5,-4.5 + parent: 2 + type: Transform + - uid: 2836 + components: + - pos: 59.5,-14.5 + parent: 2 + type: Transform + - uid: 2837 + components: + - pos: 60.5,-12.5 + parent: 2 + type: Transform + - uid: 2838 + components: + - pos: 62.5,-12.5 + parent: 2 + type: Transform + - uid: 2839 + components: + - pos: 61.5,-12.5 + parent: 2 + type: Transform + - uid: 2840 + components: + - pos: 63.5,-12.5 + parent: 2 + type: Transform + - uid: 2841 + components: + - pos: 60.5,-14.5 + parent: 2 + type: Transform + - uid: 2842 + components: + - pos: 61.5,-14.5 + parent: 2 + type: Transform + - uid: 2843 + components: + - pos: 62.5,-14.5 + parent: 2 + type: Transform + - uid: 2844 + components: + - pos: 63.5,-14.5 + parent: 2 + type: Transform + - uid: 2845 + components: + - pos: 60.5,-8.5 + parent: 2 + type: Transform + - uid: 2846 + components: + - pos: 62.5,-8.5 + parent: 2 + type: Transform + - uid: 2847 + components: + - pos: 63.5,-8.5 + parent: 2 + type: Transform + - uid: 2878 + components: + - pos: 58.5,-17.5 + parent: 2 + type: Transform + - uid: 2879 + components: + - pos: 59.5,-18.5 + parent: 2 + type: Transform + - uid: 2880 + components: + - pos: 60.5,-18.5 + parent: 2 + type: Transform + - uid: 2881 + components: + - pos: 66.5,-18.5 + parent: 2 + type: Transform + - uid: 2882 + components: + - pos: 65.5,-18.5 + parent: 2 + type: Transform + - uid: 2961 + components: + - pos: 49.5,-3.5 + parent: 2 + type: Transform + - uid: 2962 + components: + - pos: 54.5,-3.5 + parent: 2 + type: Transform + - uid: 2964 + components: + - pos: 44.5,1.5 + parent: 2 + type: Transform + - uid: 2965 + components: + - pos: 43.5,1.5 + parent: 2 + type: Transform + - uid: 2966 + components: + - pos: 46.5,1.5 + parent: 2 + type: Transform + - uid: 2967 + components: + - pos: 47.5,1.5 + parent: 2 + type: Transform + - uid: 2968 + components: + - pos: 48.5,4.5 + parent: 2 + type: Transform + - uid: 2986 + components: + - pos: 52.5,1.5 + parent: 2 + type: Transform + - uid: 2987 + components: + - pos: 53.5,-0.5 + parent: 2 + type: Transform + - uid: 3015 + components: + - pos: 57.5,-8.5 + parent: 2 + type: Transform + - uid: 3016 + components: + - pos: 55.5,-8.5 + parent: 2 + type: Transform + - uid: 3017 + components: + - pos: 67.5,-2.5 + parent: 2 + type: Transform + - uid: 3018 + components: + - pos: 66.5,-2.5 + parent: 2 + type: Transform + - uid: 3019 + components: + - pos: 65.5,-2.5 + parent: 2 + type: Transform + - uid: 3020 + components: + - pos: 64.5,-2.5 + parent: 2 + type: Transform + - uid: 3045 + components: + - pos: 55.5,12.5 + parent: 2 + type: Transform + - uid: 3046 + components: + - pos: 53.5,12.5 + parent: 2 + type: Transform + - uid: 3067 + components: + - pos: 42.5,40.5 + parent: 2 + type: Transform + - uid: 3068 + components: + - pos: 41.5,40.5 + parent: 2 + type: Transform + - uid: 3090 + components: + - pos: 43.5,47.5 + parent: 2 + type: Transform + - uid: 3091 + components: + - pos: 44.5,47.5 + parent: 2 + type: Transform + - uid: 3092 + components: + - pos: 45.5,47.5 + parent: 2 + type: Transform + - uid: 3093 + components: + - pos: 45.5,48.5 + parent: 2 + type: Transform + - uid: 3094 + components: + - pos: 46.5,48.5 + parent: 2 + type: Transform + - uid: 3095 + components: + - pos: 47.5,48.5 + parent: 2 + type: Transform + - uid: 3096 + components: + - pos: 48.5,48.5 + parent: 2 + type: Transform + - uid: 3097 + components: + - pos: 48.5,49.5 + parent: 2 + type: Transform + - uid: 3106 + components: + - pos: 46.5,45.5 + parent: 2 + type: Transform + - uid: 3107 + components: + - pos: 47.5,45.5 + parent: 2 + type: Transform + - uid: 3108 + components: + - pos: 48.5,45.5 + parent: 2 + type: Transform + - uid: 3109 + components: + - pos: 49.5,45.5 + parent: 2 + type: Transform + - uid: 3114 + components: + - pos: 50.5,46.5 + parent: 2 + type: Transform + - uid: 3115 + components: + - pos: 50.5,47.5 + parent: 2 + type: Transform + - uid: 3116 + components: + - pos: 51.5,47.5 + parent: 2 + type: Transform + - uid: 3117 + components: + - pos: 52.5,47.5 + parent: 2 + type: Transform + - uid: 3118 + components: + - pos: 53.5,47.5 + parent: 2 + type: Transform + - uid: 3119 + components: + - pos: 54.5,47.5 + parent: 2 + type: Transform + - uid: 3120 + components: + - pos: 55.5,47.5 + parent: 2 + type: Transform + - uid: 3121 + components: + - pos: 56.5,47.5 + parent: 2 + type: Transform + - uid: 3122 + components: + - pos: 57.5,47.5 + parent: 2 + type: Transform + - uid: 3123 + components: + - pos: 59.5,47.5 + parent: 2 + type: Transform + - uid: 3124 + components: + - pos: 58.5,47.5 + parent: 2 + type: Transform + - uid: 3126 + components: + - pos: 62.5,47.5 + parent: 2 + type: Transform + - uid: 3136 + components: + - pos: 60.5,47.5 + parent: 2 + type: Transform + - uid: 3137 + components: + - pos: 61.5,47.5 + parent: 2 + type: Transform + - uid: 3138 + components: + - pos: 47.5,40.5 + parent: 2 + type: Transform + - uid: 3139 + components: + - pos: 47.5,39.5 + parent: 2 + type: Transform + - uid: 3140 + components: + - pos: 47.5,38.5 + parent: 2 + type: Transform + - uid: 3141 + components: + - pos: 47.5,37.5 + parent: 2 + type: Transform + - uid: 3213 + components: + - pos: 62.5,46.5 + parent: 2 + type: Transform + - uid: 3223 + components: + - pos: 50.5,32.5 + parent: 2 + type: Transform + - uid: 3224 + components: + - pos: 50.5,33.5 + parent: 2 + type: Transform + - uid: 3225 + components: + - pos: 50.5,34.5 + parent: 2 + type: Transform + - uid: 3226 + components: + - pos: 50.5,35.5 + parent: 2 + type: Transform + - uid: 3227 + components: + - pos: 50.5,36.5 + parent: 2 + type: Transform + - uid: 3228 + components: + - pos: 50.5,37.5 + parent: 2 + type: Transform + - uid: 3229 + components: + - pos: 50.5,38.5 + parent: 2 + type: Transform + - uid: 3230 + components: + - pos: 50.5,39.5 + parent: 2 + type: Transform + - uid: 3231 + components: + - pos: 51.5,39.5 + parent: 2 + type: Transform + - uid: 3232 + components: + - pos: 51.5,40.5 + parent: 2 + type: Transform + - uid: 3233 + components: + - pos: 52.5,40.5 + parent: 2 + type: Transform + - uid: 3234 + components: + - pos: 53.5,40.5 + parent: 2 + type: Transform + - uid: 3235 + components: + - pos: 53.5,41.5 + parent: 2 + type: Transform + - uid: 3236 + components: + - pos: 54.5,41.5 + parent: 2 + type: Transform + - uid: 3237 + components: + - pos: 55.5,41.5 + parent: 2 + type: Transform + - uid: 3238 + components: + - pos: 56.5,41.5 + parent: 2 + type: Transform + - uid: 3239 + components: + - pos: 57.5,41.5 + parent: 2 + type: Transform + - uid: 3240 + components: + - pos: 58.5,41.5 + parent: 2 + type: Transform + - uid: 3241 + components: + - pos: 59.5,41.5 + parent: 2 + type: Transform + - uid: 3242 + components: + - pos: 59.5,40.5 + parent: 2 + type: Transform + - uid: 3243 + components: + - pos: 60.5,40.5 + parent: 2 + type: Transform + - uid: 3244 + components: + - pos: 61.5,40.5 + parent: 2 + type: Transform + - uid: 3245 + components: + - pos: 61.5,39.5 + parent: 2 + type: Transform + - uid: 3246 + components: + - pos: 62.5,39.5 + parent: 2 + type: Transform + - uid: 3247 + components: + - pos: 62.5,38.5 + parent: 2 + type: Transform + - uid: 3248 + components: + - pos: 62.5,37.5 + parent: 2 + type: Transform + - uid: 3249 + components: + - pos: 62.5,36.5 + parent: 2 + type: Transform + - uid: 3250 + components: + - pos: 62.5,35.5 + parent: 2 + type: Transform + - uid: 3251 + components: + - pos: 62.5,34.5 + parent: 2 + type: Transform + - uid: 3252 + components: + - pos: 62.5,33.5 + parent: 2 + type: Transform + - uid: 3253 + components: + - pos: 62.5,32.5 + parent: 2 + type: Transform + - uid: 3317 + components: + - pos: 64.5,49.5 + parent: 2 + type: Transform + - uid: 3320 + components: + - pos: 65.5,48.5 + parent: 2 + type: Transform + - uid: 3323 + components: + - pos: 50.5,49.5 + parent: 2 + type: Transform + - uid: 3324 + components: + - pos: 51.5,49.5 + parent: 2 + type: Transform + - uid: 3325 + components: + - pos: 52.5,49.5 + parent: 2 + type: Transform + - uid: 3326 + components: + - pos: 53.5,49.5 + parent: 2 + type: Transform + - uid: 3327 + components: + - pos: 54.5,49.5 + parent: 2 + type: Transform + - uid: 3328 + components: + - pos: 58.5,49.5 + parent: 2 + type: Transform + - uid: 3329 + components: + - pos: 59.5,49.5 + parent: 2 + type: Transform + - uid: 3330 + components: + - pos: 60.5,49.5 + parent: 2 + type: Transform + - uid: 3331 + components: + - pos: 61.5,49.5 + parent: 2 + type: Transform + - uid: 3332 + components: + - pos: 62.5,49.5 + parent: 2 + type: Transform + - uid: 3333 + components: + - pos: 55.5,49.5 + parent: 2 + type: Transform + - uid: 3334 + components: + - pos: 57.5,49.5 + parent: 2 + type: Transform + - uid: 3341 + components: + - pos: 66.5,48.5 + parent: 2 + type: Transform + - uid: 3342 + components: + - pos: 64.5,48.5 + parent: 2 + type: Transform + - uid: 3349 + components: + - pos: 67.5,48.5 + parent: 2 + type: Transform + - uid: 3350 + components: + - pos: 67.5,47.5 + parent: 2 + type: Transform + - uid: 3351 + components: + - pos: 68.5,47.5 + parent: 2 + type: Transform + - uid: 3364 + components: + - pos: 72.5,46.5 + parent: 2 + type: Transform + - uid: 3365 + components: + - pos: 73.5,46.5 + parent: 2 + type: Transform + - uid: 3366 + components: + - pos: 74.5,46.5 + parent: 2 + type: Transform + - uid: 3367 + components: + - pos: 72.5,44.5 + parent: 2 + type: Transform + - uid: 3368 + components: + - pos: 73.5,44.5 + parent: 2 + type: Transform + - uid: 3369 + components: + - pos: 74.5,44.5 + parent: 2 + type: Transform + - uid: 3476 + components: + - pos: 57.5,27.5 + parent: 2 + type: Transform + - uid: 3477 + components: + - pos: 57.5,26.5 + parent: 2 + type: Transform + - uid: 3478 + components: + - pos: 58.5,26.5 + parent: 2 + type: Transform + - uid: 3489 + components: + - pos: 48.5,19.5 + parent: 2 + type: Transform + - uid: 3493 + components: + - pos: 55.5,27.5 + parent: 2 + type: Transform + - uid: 3495 + components: + - pos: 55.5,26.5 + parent: 2 + type: Transform + - uid: 3496 + components: + - pos: 48.5,17.5 + parent: 2 + type: Transform + - uid: 3497 + components: + - pos: 54.5,26.5 + parent: 2 + type: Transform + - uid: 3520 + components: + - pos: 57.5,19.5 + parent: 2 + type: Transform + - uid: 3521 + components: + - pos: 57.5,20.5 + parent: 2 + type: Transform + - uid: 3522 + components: + - pos: 57.5,17.5 + parent: 2 + type: Transform + - uid: 3529 + components: + - pos: 75.5,16.5 + parent: 2 + type: Transform + - uid: 3530 + components: + - pos: 75.5,17.5 + parent: 2 + type: Transform + - uid: 3531 + components: + - pos: 75.5,15.5 + parent: 2 + type: Transform + - uid: 3532 + components: + - pos: 78.5,13.5 + parent: 2 + type: Transform + - uid: 3533 + components: + - pos: 79.5,13.5 + parent: 2 + type: Transform + - uid: 3534 + components: + - pos: 80.5,13.5 + parent: 2 + type: Transform + - uid: 3535 + components: + - pos: 77.5,13.5 + parent: 2 + type: Transform + - uid: 3543 + components: + - pos: 90.5,-6.5 + parent: 2 + type: Transform + - uid: 3546 + components: + - pos: 91.5,-6.5 + parent: 2 + type: Transform + - uid: 3568 + components: + - pos: 88.5,-5.5 + parent: 2 + type: Transform + - uid: 3588 + components: + - pos: 90.5,0.5 + parent: 2 + type: Transform + - uid: 3606 + components: + - pos: 90.5,1.5 + parent: 2 + type: Transform + - uid: 3610 + components: + - pos: 88.5,-4.5 + parent: 2 + type: Transform + - uid: 3652 + components: + - pos: 65.5,16.5 + parent: 2 + type: Transform + - uid: 3653 + components: + - pos: 65.5,14.5 + parent: 2 + type: Transform + - uid: 3677 + components: + - pos: 60.5,12.5 + parent: 2 + type: Transform + - uid: 3678 + components: + - pos: 61.5,12.5 + parent: 2 + type: Transform + - uid: 3679 + components: + - pos: 63.5,12.5 + parent: 2 + type: Transform + - uid: 3768 + components: + - pos: 82.5,-8.5 + parent: 2 + type: Transform + - uid: 3769 + components: + - pos: 81.5,-8.5 + parent: 2 + type: Transform + - uid: 3770 + components: + - pos: 80.5,-8.5 + parent: 2 + type: Transform + - uid: 3771 + components: + - pos: 79.5,-8.5 + parent: 2 + type: Transform + - uid: 3851 + components: + - pos: 73.5,-17.5 + parent: 2 + type: Transform + - uid: 3852 + components: + - pos: 74.5,-17.5 + parent: 2 + type: Transform + - uid: 3853 + components: + - pos: 75.5,-17.5 + parent: 2 + type: Transform + - uid: 3854 + components: + - pos: 76.5,-17.5 + parent: 2 + type: Transform + - uid: 3855 + components: + - pos: 77.5,-17.5 + parent: 2 + type: Transform + - uid: 3856 + components: + - pos: 78.5,-17.5 + parent: 2 + type: Transform + - uid: 3857 + components: + - pos: 79.5,-17.5 + parent: 2 + type: Transform + - uid: 3858 + components: + - pos: 80.5,-17.5 + parent: 2 + type: Transform + - uid: 3859 + components: + - pos: 81.5,-17.5 + parent: 2 + type: Transform + - uid: 3860 + components: + - pos: 82.5,-17.5 + parent: 2 + type: Transform + - uid: 3861 + components: + - pos: 83.5,-17.5 + parent: 2 + type: Transform + - uid: 3862 + components: + - pos: 84.5,-17.5 + parent: 2 + type: Transform + - uid: 3863 + components: + - pos: 85.5,-17.5 + parent: 2 + type: Transform + - uid: 3864 + components: + - pos: 86.5,-17.5 + parent: 2 + type: Transform + - uid: 3889 + components: + - pos: 96.5,-22.5 + parent: 2 + type: Transform + - uid: 3892 + components: + - pos: 94.5,-17.5 + parent: 2 + type: Transform + - uid: 3893 + components: + - pos: 98.5,-22.5 + parent: 2 + type: Transform + - uid: 3903 + components: + - pos: 97.5,-17.5 + parent: 2 + type: Transform + - uid: 3957 + components: + - pos: 40.5,-58.5 + parent: 2 + type: Transform + - uid: 3969 + components: + - pos: 39.5,-58.5 + parent: 2 + type: Transform + - uid: 3973 + components: + - pos: 18.5,-59.5 + parent: 2 + type: Transform + - uid: 3977 + components: + - pos: 19.5,-59.5 + parent: 2 + type: Transform + - uid: 3978 + components: + - pos: 24.5,-59.5 + parent: 2 + type: Transform + - uid: 3981 + components: + - pos: 17.5,-59.5 + parent: 2 + type: Transform + - uid: 3985 + components: + - pos: 19.5,-59.5 + parent: 2 + type: Transform + - uid: 3987 + components: + - pos: 14.5,-59.5 + parent: 2 + type: Transform + - uid: 3998 + components: + - pos: 13.5,-59.5 + parent: 2 + type: Transform + - uid: 4046 + components: + - pos: 44.5,-31.5 + parent: 2 + type: Transform + - uid: 4066 + components: + - pos: -18.5,-11.5 + parent: 2 + type: Transform + - uid: 4074 + components: + - pos: 25.5,-30.5 + parent: 2 + type: Transform + - uid: 4243 + components: + - pos: 24.5,-12.5 + parent: 2 + type: Transform + - uid: 4296 + components: + - pos: 24.5,-9.5 + parent: 2 + type: Transform + - uid: 4338 + components: + - pos: 34.5,-33.5 + parent: 2 + type: Transform + - uid: 4339 + components: + - pos: 36.5,-33.5 + parent: 2 + type: Transform + - uid: 4340 + components: + - pos: 37.5,-32.5 + parent: 2 + type: Transform + - uid: 4341 + components: + - pos: 37.5,-31.5 + parent: 2 + type: Transform + - uid: 4342 + components: + - pos: 37.5,-30.5 + parent: 2 + type: Transform + - uid: 4343 + components: + - pos: 36.5,-29.5 + parent: 2 + type: Transform + - uid: 4344 + components: + - pos: 34.5,-29.5 + parent: 2 + type: Transform + - uid: 4345 + components: + - pos: 33.5,-28.5 + parent: 2 + type: Transform + - uid: 4346 + components: + - pos: 33.5,-27.5 + parent: 2 + type: Transform + - uid: 4347 + components: + - pos: 34.5,-26.5 + parent: 2 + type: Transform + - uid: 4348 + components: + - pos: 35.5,-26.5 + parent: 2 + type: Transform + - uid: 4349 + components: + - pos: 36.5,-26.5 + parent: 2 + type: Transform + - uid: 4350 + components: + - pos: 37.5,-28.5 + parent: 2 + type: Transform + - uid: 4351 + components: + - pos: 37.5,-27.5 + parent: 2 + type: Transform + - uid: 4376 + components: + - pos: 33.5,-36.5 + parent: 2 + type: Transform + - uid: 4377 + components: + - pos: 33.5,-35.5 + parent: 2 + type: Transform + - uid: 4378 + components: + - pos: 33.5,-34.5 + parent: 2 + type: Transform + - uid: 4379 + components: + - pos: 37.5,-36.5 + parent: 2 + type: Transform + - uid: 4380 + components: + - pos: 37.5,-35.5 + parent: 2 + type: Transform + - uid: 4381 + components: + - pos: 37.5,-34.5 + parent: 2 + type: Transform + - uid: 4419 + components: + - pos: 46.5,-36.5 + parent: 2 + type: Transform + - uid: 4420 + components: + - pos: 45.5,-36.5 + parent: 2 + type: Transform + - uid: 4421 + components: + - pos: 44.5,-36.5 + parent: 2 + type: Transform + - uid: 4422 + components: + - pos: 43.5,-36.5 + parent: 2 + type: Transform + - uid: 4423 + components: + - pos: 42.5,-36.5 + parent: 2 + type: Transform + - uid: 4424 + components: + - pos: 41.5,-35.5 + parent: 2 + type: Transform + - uid: 4425 + components: + - pos: 41.5,-34.5 + parent: 2 + type: Transform + - uid: 4426 + components: + - pos: 41.5,-33.5 + parent: 2 + type: Transform + - uid: 4427 + components: + - pos: 41.5,-32.5 + parent: 2 + type: Transform + - uid: 4428 + components: + - pos: 41.5,-31.5 + parent: 2 + type: Transform + - uid: 4429 + components: + - pos: 41.5,-30.5 + parent: 2 + type: Transform + - uid: 4430 + components: + - pos: 41.5,-29.5 + parent: 2 + type: Transform + - uid: 4432 + components: + - pos: 41.5,-28.5 + parent: 2 + type: Transform + - uid: 4433 + components: + - pos: 41.5,-27.5 + parent: 2 + type: Transform + - uid: 4434 + components: + - pos: 41.5,-26.5 + parent: 2 + type: Transform + - uid: 4435 + components: + - pos: 41.5,-25.5 + parent: 2 + type: Transform + - uid: 4436 + components: + - pos: 41.5,-24.5 + parent: 2 + type: Transform + - uid: 4437 + components: + - pos: 41.5,-23.5 + parent: 2 + type: Transform + - uid: 4442 + components: + - pos: 41.5,-22.5 + parent: 2 + type: Transform + - uid: 4455 + components: + - pos: 33.5,-44.5 + parent: 2 + type: Transform + - uid: 4456 + components: + - pos: 33.5,-43.5 + parent: 2 + type: Transform + - uid: 4457 + components: + - pos: 33.5,-42.5 + parent: 2 + type: Transform + - uid: 4458 + components: + - pos: 32.5,-45.5 + parent: 2 + type: Transform + - uid: 4459 + components: + - pos: 31.5,-45.5 + parent: 2 + type: Transform + - uid: 4467 + components: + - pos: 39.5,-41.5 + parent: 2 + type: Transform + - uid: 4469 + components: + - pos: 41.5,-41.5 + parent: 2 + type: Transform + - uid: 4473 + components: + - pos: 43.5,-41.5 + parent: 2 + type: Transform + - uid: 4487 + components: + - pos: 47.5,-40.5 + parent: 2 + type: Transform + - uid: 4488 + components: + - pos: 47.5,-39.5 + parent: 2 + type: Transform + - uid: 4489 + components: + - pos: 47.5,-38.5 + parent: 2 + type: Transform + - uid: 4490 + components: + - pos: 47.5,-37.5 + parent: 2 + type: Transform + - uid: 4873 + components: + - pos: -21.5,-20.5 + parent: 2 + type: Transform + - uid: 5297 + components: + - pos: -12.5,1.5 + parent: 2 + type: Transform + - uid: 5302 + components: + - pos: 4.5,19.5 + parent: 2 + type: Transform + - uid: 5362 + components: + - pos: 59.5,26.5 + parent: 2 + type: Transform + - uid: 5483 + components: + - pos: 72.5,33.5 + parent: 2 + type: Transform + - uid: 5484 + components: + - pos: 72.5,32.5 + parent: 2 + type: Transform + - uid: 5485 + components: + - pos: 72.5,31.5 + parent: 2 + type: Transform + - uid: 5486 + components: + - pos: 72.5,29.5 + parent: 2 + type: Transform + - uid: 5487 + components: + - pos: 72.5,28.5 + parent: 2 + type: Transform + - uid: 5488 + components: + - pos: 72.5,27.5 + parent: 2 + type: Transform + - uid: 5681 + components: + - pos: -8.5,14.5 + parent: 2 + type: Transform + - uid: 5751 + components: + - pos: 21.5,53.5 + parent: 2 + type: Transform + - uid: 5752 + components: + - pos: 22.5,53.5 + parent: 2 + type: Transform + - uid: 5753 + components: + - pos: 23.5,53.5 + parent: 2 + type: Transform + - uid: 5754 + components: + - pos: 24.5,53.5 + parent: 2 + type: Transform + - uid: 5755 + components: + - pos: 25.5,53.5 + parent: 2 + type: Transform + - uid: 5756 + components: + - pos: 26.5,53.5 + parent: 2 + type: Transform + - uid: 5757 + components: + - pos: 27.5,53.5 + parent: 2 + type: Transform + - uid: 5758 + components: + - pos: 28.5,53.5 + parent: 2 + type: Transform + - uid: 5759 + components: + - pos: 29.5,53.5 + parent: 2 + type: Transform + - uid: 5760 + components: + - pos: 30.5,53.5 + parent: 2 + type: Transform + - uid: 5761 + components: + - pos: 31.5,53.5 + parent: 2 + type: Transform + - uid: 5762 + components: + - pos: 32.5,53.5 + parent: 2 + type: Transform + - uid: 5763 + components: + - pos: 33.5,53.5 + parent: 2 + type: Transform + - uid: 5967 + components: + - pos: -20.5,-11.5 + parent: 2 + type: Transform + - uid: 6119 + components: + - pos: 12.5,-42.5 + parent: 2 + type: Transform + - uid: 6124 + components: + - pos: 8.5,-40.5 + parent: 2 + type: Transform + - uid: 6125 + components: + - pos: 8.5,-39.5 + parent: 2 + type: Transform + - uid: 6126 + components: + - pos: 9.5,-39.5 + parent: 2 + type: Transform + - uid: 6127 + components: + - pos: 10.5,-39.5 + parent: 2 + type: Transform + - uid: 6128 + components: + - pos: 11.5,-39.5 + parent: 2 + type: Transform + - uid: 6129 + components: + - pos: 12.5,-39.5 + parent: 2 + type: Transform + - uid: 6130 + components: + - pos: 8.5,-42.5 + parent: 2 + type: Transform + - uid: 6131 + components: + - pos: 8.5,-43.5 + parent: 2 + type: Transform + - uid: 6132 + components: + - pos: 9.5,-43.5 + parent: 2 + type: Transform + - uid: 6133 + components: + - pos: 11.5,-43.5 + parent: 2 + type: Transform + - uid: 6501 + components: + - pos: 42.5,-2.5 + parent: 2 + type: Transform + - uid: 6779 + components: + - pos: 1.5,14.5 + parent: 2 + type: Transform + - uid: 6781 + components: + - pos: -11.5,14.5 + parent: 2 + type: Transform + - uid: 6806 + components: + - pos: -7.5,-2.5 + parent: 2 + type: Transform + - uid: 6807 + components: + - pos: -7.5,-6.5 + parent: 2 + type: Transform + - uid: 6810 + components: + - pos: -13.5,-10.5 + parent: 2 + type: Transform + - uid: 6834 + components: + - pos: -27.5,-13.5 + parent: 2 + type: Transform + - uid: 6842 + components: + - pos: -4.5,-11.5 + parent: 2 + type: Transform + - uid: 6845 + components: + - pos: -6.5,-16.5 + parent: 2 + type: Transform + - uid: 6884 + components: + - pos: -7.5,-9.5 + parent: 2 + type: Transform + - uid: 6885 + components: + - pos: -8.5,-11.5 + parent: 2 + type: Transform + - uid: 6886 + components: + - pos: -7.5,-8.5 + parent: 2 + type: Transform + - uid: 6889 + components: + - pos: -7.5,-1.5 + parent: 2 + type: Transform + - uid: 6890 + components: + - pos: -7.5,-10.5 + parent: 2 + type: Transform + - uid: 6891 + components: + - pos: -9.5,-11.5 + parent: 2 + type: Transform + - uid: 6892 + components: + - pos: -6.5,-15.5 + parent: 2 + type: Transform + - uid: 7455 + components: + - pos: -15.5,14.5 + parent: 2 + type: Transform + - uid: 7456 + components: + - pos: -16.5,14.5 + parent: 2 + type: Transform + - uid: 7465 + components: + - pos: -8.5,1.5 + parent: 2 + type: Transform + - uid: 7564 + components: + - pos: -17.5,14.5 + parent: 2 + type: Transform + - uid: 7666 + components: + - pos: 2.5,6.5 + parent: 2 + type: Transform + - uid: 7706 + components: + - pos: -13.5,14.5 + parent: 2 + type: Transform + - uid: 7721 + components: + - pos: -3.5,2.5 + parent: 2 + type: Transform + - uid: 7733 + components: + - pos: -4.5,-4.5 + parent: 2 + type: Transform + - uid: 7734 + components: + - pos: -3.5,-2.5 + parent: 2 + type: Transform + - uid: 7735 + components: + - pos: -1.5,-2.5 + parent: 2 + type: Transform + - uid: 7783 + components: + - pos: -14.5,14.5 + parent: 2 + type: Transform + - uid: 7795 + components: + - pos: 52.5,25.5 + parent: 2 + type: Transform + - uid: 7799 + components: + - pos: 52.5,23.5 + parent: 2 + type: Transform + - uid: 7867 + components: + - pos: -3.5,1.5 + parent: 2 + type: Transform + - uid: 7868 + components: + - pos: 1.5,1.5 + parent: 2 + type: Transform + - uid: 7869 + components: + - pos: -1.5,1.5 + parent: 2 + type: Transform + - uid: 7871 + components: + - pos: -5.5,1.5 + parent: 2 + type: Transform + - uid: 7872 + components: + - pos: 2.5,3.5 + parent: 2 + type: Transform + - uid: 7873 + components: + - pos: 2.5,2.5 + parent: 2 + type: Transform + - uid: 7874 + components: + - pos: 2.5,4.5 + parent: 2 + type: Transform + - uid: 7877 + components: + - pos: 2.5,12.5 + parent: 2 + type: Transform + - uid: 7887 + components: + - pos: -5.5,2.5 + parent: 2 + type: Transform + - uid: 7893 + components: + - pos: 2.5,10.5 + parent: 2 + type: Transform + - uid: 7941 + components: + - pos: -1.5,2.5 + parent: 2 + type: Transform + - uid: 7944 + components: + - pos: 2.5,7.5 + parent: 2 + type: Transform + - uid: 7948 + components: + - pos: 0.5,1.5 + parent: 2 + type: Transform + - uid: 7951 + components: + - pos: 2.5,8.5 + parent: 2 + type: Transform + - uid: 8667 + components: + - pos: 64.5,26.5 + parent: 2 + type: Transform + - uid: 8668 + components: + - pos: 63.5,26.5 + parent: 2 + type: Transform + - uid: 8719 + components: + - pos: 92.5,-17.5 + parent: 2 + type: Transform + - uid: 8721 + components: + - pos: 95.5,-17.5 + parent: 2 + type: Transform + - uid: 8722 + components: + - pos: 97.5,-22.5 + parent: 2 + type: Transform + - uid: 8725 + components: + - pos: 96.5,-17.5 + parent: 2 + type: Transform + - uid: 8727 + components: + - pos: 98.5,-17.5 + parent: 2 + type: Transform + - uid: 8729 + components: + - pos: 93.5,-17.5 + parent: 2 + type: Transform + - uid: 8732 + components: + - pos: 95.5,-22.5 + parent: 2 + type: Transform + - uid: 8733 + components: + - pos: 94.5,-22.5 + parent: 2 + type: Transform + - uid: 8734 + components: + - pos: 93.5,-22.5 + parent: 2 + type: Transform + - uid: 8735 + components: + - pos: 92.5,-22.5 + parent: 2 + type: Transform + - uid: 8775 + components: + - pos: 105.5,-9.5 + parent: 2 + type: Transform + - uid: 8776 + components: + - pos: 106.5,-9.5 + parent: 2 + type: Transform + - uid: 8777 + components: + - pos: 107.5,-9.5 + parent: 2 + type: Transform + - uid: 8783 + components: + - pos: 99.5,-17.5 + parent: 2 + type: Transform + - uid: 8784 + components: + - pos: 100.5,-17.5 + parent: 2 + type: Transform + - uid: 8785 + components: + - pos: 100.5,-22.5 + parent: 2 + type: Transform + - uid: 8786 + components: + - pos: 99.5,-22.5 + parent: 2 + type: Transform + - uid: 8799 + components: + - pos: 105.5,-25.5 + parent: 2 + type: Transform + - uid: 8800 + components: + - pos: 106.5,-25.5 + parent: 2 + type: Transform + - uid: 8801 + components: + - pos: 107.5,-25.5 + parent: 2 + type: Transform + - uid: 8806 + components: + - pos: 105.5,-20.5 + parent: 2 + type: Transform + - uid: 8807 + components: + - pos: 107.5,-20.5 + parent: 2 + type: Transform + - uid: 8837 + components: + - pos: 105.5,-14.5 + parent: 2 + type: Transform + - uid: 8838 + components: + - pos: 107.5,-14.5 + parent: 2 + type: Transform + - uid: 8871 + components: + - pos: 115.5,-20.5 + parent: 2 + type: Transform + - uid: 8872 + components: + - pos: 114.5,-20.5 + parent: 2 + type: Transform + - uid: 8873 + components: + - pos: 112.5,-20.5 + parent: 2 + type: Transform + - uid: 8874 + components: + - pos: 111.5,-20.5 + parent: 2 + type: Transform + - uid: 8889 + components: + - pos: 110.5,-21.5 + parent: 2 + type: Transform + - uid: 8890 + components: + - pos: 110.5,-22.5 + parent: 2 + type: Transform + - uid: 8891 + components: + - pos: 110.5,-23.5 + parent: 2 + type: Transform + - uid: 8892 + components: + - pos: 110.5,-24.5 + parent: 2 + type: Transform + - uid: 8893 + components: + - pos: 110.5,-25.5 + parent: 2 + type: Transform + - uid: 8894 + components: + - pos: 111.5,-25.5 + parent: 2 + type: Transform + - uid: 8895 + components: + - pos: 112.5,-25.5 + parent: 2 + type: Transform + - uid: 8896 + components: + - pos: 113.5,-25.5 + parent: 2 + type: Transform + - uid: 8897 + components: + - pos: 114.5,-25.5 + parent: 2 + type: Transform + - uid: 8898 + components: + - pos: 115.5,-25.5 + parent: 2 + type: Transform + - uid: 8899 + components: + - pos: 116.5,-25.5 + parent: 2 + type: Transform + - uid: 8900 + components: + - pos: 116.5,-24.5 + parent: 2 + type: Transform + - uid: 8901 + components: + - pos: 116.5,-23.5 + parent: 2 + type: Transform + - uid: 8902 + components: + - pos: 116.5,-22.5 + parent: 2 + type: Transform + - uid: 8903 + components: + - pos: 116.5,-21.5 + parent: 2 + type: Transform + - uid: 8938 + components: + - pos: 111.5,-14.5 + parent: 2 + type: Transform + - uid: 8939 + components: + - pos: 112.5,-14.5 + parent: 2 + type: Transform + - uid: 8940 + components: + - pos: 114.5,-14.5 + parent: 2 + type: Transform + - uid: 8941 + components: + - pos: 115.5,-14.5 + parent: 2 + type: Transform + - uid: 8951 + components: + - pos: 116.5,-15.5 + parent: 2 + type: Transform + - uid: 8952 + components: + - pos: 116.5,-16.5 + parent: 2 + type: Transform + - uid: 8953 + components: + - pos: 116.5,-18.5 + parent: 2 + type: Transform + - uid: 8954 + components: + - pos: 116.5,-19.5 + parent: 2 + type: Transform + - uid: 8987 + components: + - pos: 110.5,-13.5 + parent: 2 + type: Transform + - uid: 8988 + components: + - pos: 110.5,-12.5 + parent: 2 + type: Transform + - uid: 8989 + components: + - pos: 110.5,-11.5 + parent: 2 + type: Transform + - uid: 8990 + components: + - pos: 110.5,-10.5 + parent: 2 + type: Transform + - uid: 8991 + components: + - pos: 110.5,-9.5 + parent: 2 + type: Transform + - uid: 8992 + components: + - pos: 111.5,-9.5 + parent: 2 + type: Transform + - uid: 8993 + components: + - pos: 112.5,-9.5 + parent: 2 + type: Transform + - uid: 8994 + components: + - pos: 113.5,-9.5 + parent: 2 + type: Transform + - uid: 8995 + components: + - pos: 114.5,-9.5 + parent: 2 + type: Transform + - uid: 8996 + components: + - pos: 115.5,-9.5 + parent: 2 + type: Transform + - uid: 8997 + components: + - pos: 116.5,-9.5 + parent: 2 + type: Transform + - uid: 8998 + components: + - pos: 116.5,-10.5 + parent: 2 + type: Transform + - uid: 8999 + components: + - pos: 116.5,-11.5 + parent: 2 + type: Transform + - uid: 9000 + components: + - pos: 116.5,-12.5 + parent: 2 + type: Transform + - uid: 9001 + components: + - pos: 116.5,-13.5 + parent: 2 + type: Transform + - uid: 9065 + components: + - pos: 117.5,-14.5 + parent: 2 + type: Transform + - uid: 9066 + components: + - pos: 118.5,-14.5 + parent: 2 + type: Transform + - uid: 9067 + components: + - pos: 119.5,-14.5 + parent: 2 + type: Transform + - uid: 9068 + components: + - pos: 120.5,-14.5 + parent: 2 + type: Transform + - uid: 9069 + components: + - pos: 121.5,-14.5 + parent: 2 + type: Transform + - uid: 9070 + components: + - pos: 121.5,-15.5 + parent: 2 + type: Transform + - uid: 9071 + components: + - pos: 121.5,-16.5 + parent: 2 + type: Transform + - uid: 9072 + components: + - pos: 121.5,-17.5 + parent: 2 + type: Transform + - uid: 9073 + components: + - pos: 121.5,-18.5 + parent: 2 + type: Transform + - uid: 9074 + components: + - pos: 121.5,-19.5 + parent: 2 + type: Transform + - uid: 9075 + components: + - pos: 121.5,-20.5 + parent: 2 + type: Transform + - uid: 9076 + components: + - pos: 120.5,-20.5 + parent: 2 + type: Transform + - uid: 9077 + components: + - pos: 119.5,-20.5 + parent: 2 + type: Transform + - uid: 9078 + components: + - pos: 118.5,-20.5 + parent: 2 + type: Transform + - uid: 9079 + components: + - pos: 117.5,-20.5 + parent: 2 + type: Transform + - uid: 10084 + components: + - pos: 60.5,26.5 + parent: 2 + type: Transform + - uid: 10801 + components: + - pos: 85.5,-14.5 + parent: 2 + type: Transform + - uid: 10951 + components: + - pos: 27.5,-59.5 + parent: 2 + type: Transform + - uid: 10952 + components: + - pos: 28.5,-59.5 + parent: 2 + type: Transform + - uid: 10961 + components: + - pos: 25.5,-59.5 + parent: 2 + type: Transform + - uid: 11070 + components: + - pos: 6.5,19.5 + parent: 2 + type: Transform + - uid: 11309 + components: + - pos: 58.5,-3.5 + parent: 2 + type: Transform + - uid: 11310 + components: + - pos: 58.5,-4.5 + parent: 2 + type: Transform + - uid: 11414 + components: + - pos: 58.5,-7.5 + parent: 2 + type: Transform + - uid: 11532 + components: + - pos: 77.5,19.5 + parent: 2 + type: Transform + - uid: 11533 + components: + - pos: 78.5,18.5 + parent: 2 + type: Transform + - uid: 11534 + components: + - pos: 79.5,18.5 + parent: 2 + type: Transform + - uid: 11535 + components: + - pos: 80.5,16.5 + parent: 2 + type: Transform + - uid: 11536 + components: + - pos: 81.5,16.5 + parent: 2 + type: Transform + - uid: 11537 + components: + - pos: 84.5,15.5 + parent: 2 + type: Transform + - uid: 11538 + components: + - pos: 83.5,15.5 + parent: 2 + type: Transform + - uid: 11539 + components: + - pos: 82.5,15.5 + parent: 2 + type: Transform + - uid: 11540 + components: + - pos: 86.5,-23.5 + parent: 2 + type: Transform + - uid: 11541 + components: + - pos: 87.5,-23.5 + parent: 2 + type: Transform + - uid: 11542 + components: + - pos: 85.5,-25.5 + parent: 2 + type: Transform + - uid: 11543 + components: + - pos: 84.5,-25.5 + parent: 2 + type: Transform + - uid: 11544 + components: + - pos: 83.5,-25.5 + parent: 2 + type: Transform + - uid: 11545 + components: + - pos: 82.5,-25.5 + parent: 2 + type: Transform + - uid: 11546 + components: + - pos: 80.5,-24.5 + parent: 2 + type: Transform + - uid: 11547 + components: + - pos: 79.5,-24.5 + parent: 2 + type: Transform + - uid: 11548 + components: + - pos: 77.5,-24.5 + parent: 2 + type: Transform + - uid: 11549 + components: + - pos: 76.5,-24.5 + parent: 2 + type: Transform + - uid: 11550 + components: + - pos: 58.5,-25.5 + parent: 2 + type: Transform + - uid: 11551 + components: + - pos: 58.5,-26.5 + parent: 2 + type: Transform + - uid: 11552 + components: + - pos: 58.5,-27.5 + parent: 2 + type: Transform + - uid: 11553 + components: + - pos: 58.5,-28.5 + parent: 2 + type: Transform + - uid: 11554 + components: + - pos: 58.5,-29.5 + parent: 2 + type: Transform + - uid: 11555 + components: + - pos: 58.5,-30.5 + parent: 2 + type: Transform + - uid: 11556 + components: + - pos: 58.5,-31.5 + parent: 2 + type: Transform + - uid: 11557 + components: + - pos: 58.5,-32.5 + parent: 2 + type: Transform + - uid: 11558 + components: + - pos: 58.5,-33.5 + parent: 2 + type: Transform + - uid: 11559 + components: + - pos: 58.5,-34.5 + parent: 2 + type: Transform + - uid: 11560 + components: + - pos: 57.5,-34.5 + parent: 2 + type: Transform + - uid: 11561 + components: + - pos: 56.5,-34.5 + parent: 2 + type: Transform + - uid: 11562 + components: + - pos: 74.5,-25.5 + parent: 2 + type: Transform + - uid: 11563 + components: + - pos: 73.5,-25.5 + parent: 2 + type: Transform + - uid: 11564 + components: + - pos: 72.5,-25.5 + parent: 2 + type: Transform + - uid: 11565 + components: + - pos: 70.5,-25.5 + parent: 2 + type: Transform + - uid: 11566 + components: + - pos: 69.5,-25.5 + parent: 2 + type: Transform + - uid: 11567 + components: + - pos: 67.5,-25.5 + parent: 2 + type: Transform + - uid: 11568 + components: + - pos: 66.5,-25.5 + parent: 2 + type: Transform + - uid: 11569 + components: + - pos: 65.5,-25.5 + parent: 2 + type: Transform + - uid: 11570 + components: + - pos: 64.5,-25.5 + parent: 2 + type: Transform + - uid: 11571 + components: + - pos: 63.5,-25.5 + parent: 2 + type: Transform + - uid: 11572 + components: + - pos: 59.5,-25.5 + parent: 2 + type: Transform + - uid: 11573 + components: + - pos: 60.5,-25.5 + parent: 2 + type: Transform + - uid: 11574 + components: + - pos: 61.5,-25.5 + parent: 2 + type: Transform + - uid: 11575 + components: + - pos: 29.5,-60.5 + parent: 2 + type: Transform + - uid: 11582 + components: + - pos: 52.5,-36.5 + parent: 2 + type: Transform + - uid: 11583 + components: + - pos: 52.5,-37.5 + parent: 2 + type: Transform + - uid: 11584 + components: + - pos: 52.5,-38.5 + parent: 2 + type: Transform + - uid: 11585 + components: + - pos: 52.5,-39.5 + parent: 2 + type: Transform + - uid: 11589 + components: + - pos: 47.5,-55.5 + parent: 2 + type: Transform + - uid: 11590 + components: + - pos: 48.5,-55.5 + parent: 2 + type: Transform + - uid: 11591 + components: + - pos: 47.5,-57.5 + parent: 2 + type: Transform + - uid: 11592 + components: + - pos: 47.5,-58.5 + parent: 2 + type: Transform + - uid: 11593 + components: + - pos: 47.5,-59.5 + parent: 2 + type: Transform + - uid: 11594 + components: + - pos: 47.5,-60.5 + parent: 2 + type: Transform + - uid: 11595 + components: + - pos: 45.5,-60.5 + parent: 2 + type: Transform + - uid: 11596 + components: + - pos: 44.5,-60.5 + parent: 2 + type: Transform + - uid: 11597 + components: + - pos: 43.5,-60.5 + parent: 2 + type: Transform + - uid: 11598 + components: + - pos: 41.5,-60.5 + parent: 2 + type: Transform + - uid: 11599 + components: + - pos: 40.5,-60.5 + parent: 2 + type: Transform + - uid: 11600 + components: + - pos: 54.5,-35.5 + parent: 2 + type: Transform + - uid: 11601 + components: + - pos: -2.5,-28.5 + parent: 2 + type: Transform + - uid: 11602 + components: + - pos: -3.5,-28.5 + parent: 2 + type: Transform + - uid: 11603 + components: + - pos: -4.5,-28.5 + parent: 2 + type: Transform + - uid: 11604 + components: + - pos: -5.5,-28.5 + parent: 2 + type: Transform + - uid: 11605 + components: + - pos: -6.5,-28.5 + parent: 2 + type: Transform + - uid: 11606 + components: + - pos: -7.5,-28.5 + parent: 2 + type: Transform + - uid: 11607 + components: + - pos: -8.5,-28.5 + parent: 2 + type: Transform + - uid: 11608 + components: + - pos: -9.5,-28.5 + parent: 2 + type: Transform + - uid: 11609 + components: + - pos: -10.5,-28.5 + parent: 2 + type: Transform + - uid: 11610 + components: + - pos: -11.5,-28.5 + parent: 2 + type: Transform + - uid: 11611 + components: + - pos: -12.5,-28.5 + parent: 2 + type: Transform + - uid: 11612 + components: + - pos: -13.5,-28.5 + parent: 2 + type: Transform + - uid: 11613 + components: + - pos: -14.5,-28.5 + parent: 2 + type: Transform + - uid: 11614 + components: + - pos: -15.5,-28.5 + parent: 2 + type: Transform + - uid: 11615 + components: + - pos: -16.5,-28.5 + parent: 2 + type: Transform + - uid: 11616 + components: + - pos: -16.5,-29.5 + parent: 2 + type: Transform + - uid: 11617 + components: + - pos: -16.5,-30.5 + parent: 2 + type: Transform + - uid: 11618 + components: + - pos: -16.5,-32.5 + parent: 2 + type: Transform + - uid: 11619 + components: + - pos: -17.5,-32.5 + parent: 2 + type: Transform + - uid: 11620 + components: + - pos: -18.5,-32.5 + parent: 2 + type: Transform + - uid: 11621 + components: + - pos: -18.5,-33.5 + parent: 2 + type: Transform + - uid: 11622 + components: + - pos: -18.5,-34.5 + parent: 2 + type: Transform + - uid: 11623 + components: + - pos: -18.5,-35.5 + parent: 2 + type: Transform + - uid: 11624 + components: + - pos: -18.5,-36.5 + parent: 2 + type: Transform + - uid: 11625 + components: + - pos: -18.5,-37.5 + parent: 2 + type: Transform + - uid: 11626 + components: + - pos: -18.5,-38.5 + parent: 2 + type: Transform + - uid: 11627 + components: + - pos: -17.5,-38.5 + parent: 2 + type: Transform + - uid: 11628 + components: + - pos: -16.5,-38.5 + parent: 2 + type: Transform + - uid: 11629 + components: + - pos: -2.5,-41.5 + parent: 2 + type: Transform + - uid: 11630 + components: + - pos: -2.5,-42.5 + parent: 2 + type: Transform + - uid: 11631 + components: + - pos: -3.5,-42.5 + parent: 2 + type: Transform + - uid: 11632 + components: + - pos: -4.5,-42.5 + parent: 2 + type: Transform + - uid: 11633 + components: + - pos: -5.5,-42.5 + parent: 2 + type: Transform + - uid: 11634 + components: + - pos: -6.5,-42.5 + parent: 2 + type: Transform + - uid: 11635 + components: + - pos: -7.5,-42.5 + parent: 2 + type: Transform + - uid: 11636 + components: + - pos: -8.5,-42.5 + parent: 2 + type: Transform + - uid: 11637 + components: + - pos: -9.5,-42.5 + parent: 2 + type: Transform + - uid: 11638 + components: + - pos: -10.5,-42.5 + parent: 2 + type: Transform + - uid: 11639 + components: + - pos: -11.5,-42.5 + parent: 2 + type: Transform + - uid: 11640 + components: + - pos: -12.5,-42.5 + parent: 2 + type: Transform + - uid: 11641 + components: + - pos: -13.5,-42.5 + parent: 2 + type: Transform + - uid: 11642 + components: + - pos: -14.5,-42.5 + parent: 2 + type: Transform + - uid: 11643 + components: + - pos: -16.5,-40.5 + parent: 2 + type: Transform + - uid: 11644 + components: + - pos: -16.5,-41.5 + parent: 2 + type: Transform + - uid: 11645 + components: + - pos: -16.5,-42.5 + parent: 2 + type: Transform + - uid: 11646 + components: + - pos: -15.5,-42.5 + parent: 2 + type: Transform + - uid: 11647 + components: + - pos: 89.5,42.5 + parent: 2 + type: Transform + - uid: 11648 + components: + - pos: 90.5,42.5 + parent: 2 + type: Transform + - uid: 11649 + components: + - pos: 91.5,42.5 + parent: 2 + type: Transform + - uid: 11650 + components: + - pos: 91.5,43.5 + parent: 2 + type: Transform + - uid: 11651 + components: + - pos: 91.5,44.5 + parent: 2 + type: Transform + - uid: 11652 + components: + - pos: 91.5,45.5 + parent: 2 + type: Transform + - uid: 11653 + components: + - pos: 91.5,46.5 + parent: 2 + type: Transform + - uid: 11654 + components: + - pos: 91.5,47.5 + parent: 2 + type: Transform + - uid: 11655 + components: + - pos: 91.5,48.5 + parent: 2 + type: Transform + - uid: 11656 + components: + - pos: 90.5,48.5 + parent: 2 + type: Transform + - uid: 11657 + components: + - pos: 89.5,48.5 + parent: 2 + type: Transform + - uid: 11658 + components: + - pos: 74.5,51.5 + parent: 2 + type: Transform + - uid: 11659 + components: + - pos: 75.5,51.5 + parent: 2 + type: Transform + - uid: 11660 + components: + - pos: 76.5,51.5 + parent: 2 + type: Transform + - uid: 11661 + components: + - pos: 77.5,51.5 + parent: 2 + type: Transform + - uid: 11662 + components: + - pos: 78.5,51.5 + parent: 2 + type: Transform + - uid: 11663 + components: + - pos: 79.5,51.5 + parent: 2 + type: Transform + - uid: 11664 + components: + - pos: 81.5,51.5 + parent: 2 + type: Transform + - uid: 11665 + components: + - pos: 80.5,51.5 + parent: 2 + type: Transform + - uid: 11666 + components: + - pos: 82.5,51.5 + parent: 2 + type: Transform + - uid: 11667 + components: + - pos: 83.5,51.5 + parent: 2 + type: Transform + - uid: 11668 + components: + - pos: 84.5,51.5 + parent: 2 + type: Transform + - uid: 11669 + components: + - pos: 85.5,51.5 + parent: 2 + type: Transform + - uid: 11670 + components: + - pos: 86.5,51.5 + parent: 2 + type: Transform + - uid: 11671 + components: + - pos: 87.5,51.5 + parent: 2 + type: Transform + - uid: 11672 + components: + - pos: 88.5,51.5 + parent: 2 + type: Transform + - uid: 11673 + components: + - pos: 76.5,38.5 + parent: 2 + type: Transform + - uid: 11674 + components: + - pos: 77.5,38.5 + parent: 2 + type: Transform + - uid: 11675 + components: + - pos: 78.5,38.5 + parent: 2 + type: Transform + - uid: 11676 + components: + - pos: 79.5,38.5 + parent: 2 + type: Transform + - uid: 11677 + components: + - pos: 80.5,38.5 + parent: 2 + type: Transform + - uid: 11678 + components: + - pos: 81.5,38.5 + parent: 2 + type: Transform + - uid: 11679 + components: + - pos: 82.5,38.5 + parent: 2 + type: Transform + - uid: 11680 + components: + - pos: 83.5,38.5 + parent: 2 + type: Transform + - uid: 11681 + components: + - pos: 84.5,38.5 + parent: 2 + type: Transform + - uid: 11682 + components: + - pos: 85.5,38.5 + parent: 2 + type: Transform + - uid: 11683 + components: + - pos: 86.5,38.5 + parent: 2 + type: Transform + - uid: 11684 + components: + - pos: 87.5,38.5 + parent: 2 + type: Transform + - uid: 11685 + components: + - pos: 88.5,38.5 + parent: 2 + type: Transform + - uid: 11686 + components: + - pos: 15.5,47.5 + parent: 2 + type: Transform + - uid: 11687 + components: + - pos: 14.5,47.5 + parent: 2 + type: Transform + - uid: 11688 + components: + - pos: 13.5,47.5 + parent: 2 + type: Transform + - uid: 11689 + components: + - pos: 7.5,47.5 + parent: 2 + type: Transform + - uid: 11690 + components: + - pos: 6.5,47.5 + parent: 2 + type: Transform + - uid: 11691 + components: + - pos: 5.5,46.5 + parent: 2 + type: Transform + - uid: 11692 + components: + - pos: 5.5,45.5 + parent: 2 + type: Transform + - uid: 11693 + components: + - pos: 5.5,44.5 + parent: 2 + type: Transform + - uid: 11694 + components: + - pos: 5.5,43.5 + parent: 2 + type: Transform + - uid: 11695 + components: + - pos: 41.5,52.5 + parent: 2 + type: Transform + - uid: 11696 + components: + - pos: 40.5,52.5 + parent: 2 + type: Transform + - uid: 11697 + components: + - pos: 38.5,52.5 + parent: 2 + type: Transform + - uid: 11698 + components: + - pos: 39.5,52.5 + parent: 2 + type: Transform + - uid: 11886 + components: + - pos: 69.5,4.5 + parent: 2 + type: Transform + - uid: 11887 + components: + - pos: 69.5,5.5 + parent: 2 + type: Transform + - uid: 11888 + components: + - pos: 69.5,6.5 + parent: 2 + type: Transform + - uid: 11889 + components: + - pos: 70.5,3.5 + parent: 2 + type: Transform + - uid: 11891 + components: + - pos: 72.5,3.5 + parent: 2 + type: Transform + - uid: 11894 + components: + - pos: 73.5,3.5 + parent: 2 + type: Transform + - uid: 12912 + components: + - pos: 45.5,-48.5 + parent: 2 + type: Transform + - uid: 12913 + components: + - pos: 45.5,-47.5 + parent: 2 + type: Transform + - uid: 12914 + components: + - pos: 45.5,-46.5 + parent: 2 + type: Transform + - uid: 12915 + components: + - pos: 45.5,-45.5 + parent: 2 + type: Transform + - uid: 12916 + components: + - pos: 45.5,-44.5 + parent: 2 + type: Transform + - uid: 12917 + components: + - pos: 43.5,-49.5 + parent: 2 + type: Transform + - uid: 12918 + components: + - pos: 42.5,-49.5 + parent: 2 + type: Transform + - uid: 12919 + components: + - pos: 41.5,-49.5 + parent: 2 + type: Transform +- proto: GrilleBroken + entities: + - uid: 6 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-21.5 + parent: 2 + type: Transform + - uid: 192 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-20.5 + parent: 2 + type: Transform + - uid: 239 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-21.5 + parent: 2 + type: Transform + - uid: 242 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-20.5 + parent: 2 + type: Transform + - uid: 1247 + components: + - pos: 35.5,-58.5 + parent: 2 + type: Transform + - uid: 1335 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-21.5 + parent: 2 + type: Transform + - uid: 2401 + components: + - pos: 89.5,-6.5 + parent: 2 + type: Transform + - uid: 3986 + components: + - pos: 16.5,-59.5 + parent: 2 + type: Transform + - uid: 3988 + components: + - pos: 23.5,-59.5 + parent: 2 + type: Transform + - uid: 5966 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-20.5 + parent: 2 + type: Transform +- proto: GunSafeLaserCarbine + entities: + - uid: 2126 + components: + - pos: 41.5,27.5 + parent: 2 + type: Transform +- proto: GunSafePistolMk58 + entities: + - uid: 2131 + components: + - pos: 38.5,26.5 + parent: 2 + type: Transform +- proto: GunSafeShotgunKammerer + entities: + - uid: 2117 + components: + - pos: 41.5,26.5 + parent: 2 + type: Transform +- proto: Handcuffs + entities: + - uid: 9397 + components: + - pos: 25.512451,48.501656 + parent: 2 + type: Transform +- proto: HandheldHealthAnalyzer + entities: + - uid: 12160 + components: + - pos: 82.45164,-4.4459476 + parent: 2 + type: Transform + - uid: 12368 + components: + - pos: 38.482082,-17.438766 + parent: 2 + type: Transform +- proto: HandheldStationMap + entities: + - uid: 9400 + components: + - pos: 28.498549,47.61997 + parent: 2 + type: Transform +- proto: HandLabeler + entities: + - uid: 5073 + components: + - pos: 52.284637,-7.299825 + parent: 2 + type: Transform + - uid: 5319 + components: + - pos: 49.532963,19.552088 + parent: 2 + type: Transform + - uid: 5320 + components: + - pos: 49.532963,17.552088 + parent: 2 + type: Transform +- proto: HarmonicaInstrument + entities: + - uid: 2957 + components: + - pos: 39.821617,32.534893 + parent: 2 + type: Transform +- proto: HarpInstrument + entities: + - uid: 8319 + components: + - pos: 20.5,-10.5 + parent: 2 + type: Transform +- proto: HeatExchanger + entities: + - uid: 4492 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-51.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 12861 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-52.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 12862 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-53.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 12904 + components: + - rot: 3.141592653589793 rad + pos: 48.5,-45.5 + parent: 2 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: Hemostat + entities: + - uid: 10071 + components: + - pos: 67.49741,-3.281434 + parent: 2 + type: Transform +- proto: HighSecCommandLocked + entities: + - uid: 1744 + components: + - pos: 39.5,-16.5 + parent: 2 + type: Transform + - uid: 2912 + components: + - pos: 56.5,28.5 + parent: 2 + type: Transform + - uid: 9110 + components: + - pos: 18.5,38.5 + parent: 2 + type: Transform +- proto: HospitalCurtainsOpen + entities: + - uid: 4682 + components: + - pos: 24.5,-11.5 + parent: 2 + type: Transform + - uid: 5049 + components: + - pos: 61.5,-8.5 + parent: 2 + type: Transform + - uid: 5744 + components: + - pos: 12.5,12.5 + parent: 2 + type: Transform + - uid: 5750 + components: + - pos: 24.5,-10.5 + parent: 2 + type: Transform + - uid: 8827 + components: + - pos: 102.5,-13.5 + parent: 2 + type: Transform + - uid: 11749 + components: + - pos: 59.5,2.5 + parent: 2 + type: Transform + - uid: 11750 + components: + - pos: 60.5,2.5 + parent: 2 + type: Transform + - uid: 11754 + components: + - pos: 62.5,2.5 + parent: 2 + type: Transform + - uid: 11755 + components: + - pos: 61.5,2.5 + parent: 2 + type: Transform + - uid: 11759 + components: + - pos: 63.5,2.5 + parent: 2 + type: Transform + - uid: 11762 + components: + - pos: 64.5,2.5 + parent: 2 + type: Transform + - uid: 11763 + components: + - pos: 65.5,2.5 + parent: 2 + type: Transform + - uid: 11849 + components: + - pos: 58.5,-6.5 + parent: 2 + type: Transform + - uid: 11850 + components: + - pos: 58.5,-5.5 + parent: 2 + type: Transform + - uid: 11902 + components: + - pos: 78.5,10.5 + parent: 2 + type: Transform + - uid: 11903 + components: + - pos: 77.5,10.5 + parent: 2 + type: Transform + - uid: 12254 + components: + - pos: 16.5,12.5 + parent: 2 + type: Transform + - uid: 12255 + components: + - pos: 15.5,12.5 + parent: 2 + type: Transform + - uid: 12256 + components: + - pos: 14.5,12.5 + parent: 2 + type: Transform + - uid: 12257 + components: + - pos: 14.5,14.5 + parent: 2 + type: Transform + - uid: 12258 + components: + - pos: 15.5,14.5 + parent: 2 + type: Transform + - uid: 12259 + components: + - pos: 16.5,14.5 + parent: 2 + type: Transform + - uid: 12260 + components: + - pos: 16.5,16.5 + parent: 2 + type: Transform + - uid: 12261 + components: + - pos: 15.5,16.5 + parent: 2 + type: Transform + - uid: 12262 + components: + - pos: 14.5,16.5 + parent: 2 + type: Transform + - uid: 12834 + components: + - pos: 66.5,2.5 + parent: 2 + type: Transform + - uid: 12835 + components: + - pos: 67.5,2.5 + parent: 2 + type: Transform +- proto: HydroponicsToolHatchet + entities: + - uid: 11125 + components: + - pos: 54.473648,-13.481342 + parent: 2 + type: Transform +- proto: HydroponicsToolMiniHoe + entities: + - uid: 6755 + components: + - pos: 44.63281,-5.3896046 + parent: 2 + type: Transform +- proto: hydroponicsTray + entities: + - uid: 2300 + components: + - pos: 36.5,34.5 + parent: 2 + type: Transform + - uid: 2301 + components: + - pos: 36.5,33.5 + parent: 2 + type: Transform + - uid: 2302 + components: + - pos: 38.5,34.5 + parent: 2 + type: Transform + - uid: 2303 + components: + - pos: 38.5,33.5 + parent: 2 + type: Transform + - uid: 6665 + components: + - pos: 43.5,-9.5 + parent: 2 + type: Transform + - uid: 6666 + components: + - pos: 43.5,-7.5 + parent: 2 + type: Transform + - uid: 6667 + components: + - pos: 44.5,-7.5 + parent: 2 + type: Transform + - uid: 6668 + components: + - pos: 45.5,-7.5 + parent: 2 + type: Transform + - uid: 6669 + components: + - pos: 47.5,-5.5 + parent: 2 + type: Transform + - uid: 6670 + components: + - pos: 47.5,-4.5 + parent: 2 + type: Transform + - uid: 6671 + components: + - pos: 45.5,-5.5 + parent: 2 + type: Transform + - uid: 6673 + components: + - pos: 43.5,-5.5 + parent: 2 + type: Transform + - uid: 6674 + components: + - pos: 41.5,-5.5 + parent: 2 + type: Transform + - uid: 6675 + components: + - pos: 41.5,-4.5 + parent: 2 + type: Transform +- proto: InflatableWall + entities: + - uid: 6524 + components: + - pos: 87.5,-7.5 + parent: 2 + type: Transform + - uid: 6729 + components: + - pos: 86.5,-7.5 + parent: 2 + type: Transform + - uid: 6730 + components: + - pos: 82.5,5.5 + parent: 2 + type: Transform + - uid: 6731 + components: + - pos: 82.5,4.5 + parent: 2 + type: Transform +- proto: IngotGold + entities: + - uid: 8824 + components: + - pos: 89.45974,-12.337885 + parent: 2 + type: Transform + - uid: 12098 + components: + - pos: 19.521435,41.66655 + parent: 2 + type: Transform +- proto: IngotSilver + entities: + - uid: 12100 + components: + - pos: 17.552685,41.54155 + parent: 2 + type: Transform +- proto: IntercomCommand + entities: + - uid: 4587 + components: + - pos: 12.5,-34.5 + parent: 2 + type: Transform + - uid: 7583 + components: + - pos: 44.5,26.5 + parent: 2 + type: Transform + - uid: 9436 + components: + - pos: 25.5,42.5 + parent: 2 + type: Transform + - uid: 9437 + components: + - pos: 33.5,41.5 + parent: 2 + type: Transform + - uid: 11408 + components: + - pos: 17.5,-2.5 + parent: 2 + type: Transform +- proto: IntercomCommon + entities: + - uid: 4989 + components: + - pos: 16.5,11.5 + parent: 2 + type: Transform + - uid: 7816 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-15.5 + parent: 2 + type: Transform + - uid: 8986 + components: + - pos: 32.5,16.5 + parent: 2 + type: Transform +- proto: IntercomEngineering + entities: + - uid: 4692 + components: + - pos: 30.5,-29.5 + parent: 2 + type: Transform + - uid: 4769 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-25.5 + parent: 2 + type: Transform +- proto: IntercomMedical + entities: + - uid: 11407 + components: + - pos: 48.5,1.5 + parent: 2 + type: Transform +- proto: IntercomScience + entities: + - uid: 5107 + components: + - pos: 48.5,20.5 + parent: 2 + type: Transform +- proto: IntercomSecurity + entities: + - uid: 7582 + components: + - pos: 28.5,26.5 + parent: 2 + type: Transform +- proto: IntercomSupply + entities: + - uid: 7743 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,25.5 + parent: 2 + type: Transform +- proto: JanitorialTrolley + entities: + - uid: 12234 + components: + - pos: 4.5,-6.5 + parent: 2 + type: Transform +- proto: JetpackBlueFilled + entities: + - uid: 12827 + components: + - flags: InContainer + type: MetaData + - parent: 12094 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: JetpackMiniFilled + entities: + - uid: 10308 + components: + - pos: 8.484015,-9.278149 + parent: 2 + type: Transform + - uid: 10309 + components: + - pos: 8.484015,-9.496899 + parent: 2 + type: Transform +- proto: KitchenKnife + entities: + - uid: 11124 + components: + - pos: 54.489273,-13.512592 + parent: 2 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 1578 + components: + - pos: 35.5,-10.5 + parent: 2 + type: Transform + - uid: 2307 + components: + - pos: 37.5,36.5 + parent: 2 + type: Transform + - uid: 8860 + components: + - pos: 107.5,-10.5 + parent: 2 + type: Transform + - uid: 11429 + components: + - pos: 76.5,5.5 + parent: 2 + type: Transform +- proto: KitchenReagentGrinder + entities: + - uid: 2636 + components: + - pos: 40.5,34.5 + parent: 2 + type: Transform + - uid: 4107 + components: + - pos: 37.5,-12.5 + parent: 2 + type: Transform + - uid: 5056 + components: + - pos: 49.5,-6.5 + parent: 2 + type: Transform +- proto: KitchenSpike + entities: + - uid: 364 + components: + - pos: 31.5,-12.5 + parent: 2 + type: Transform +- proto: KnifePlastic + entities: + - uid: 3460 + components: + - pos: 40.183743,34.526638 + parent: 2 + type: Transform +- proto: Lamp + entities: + - uid: 5087 + components: + - pos: 30.398613,6.824299 + parent: 2 + type: Transform +- proto: LampBanana + entities: + - uid: 9601 + components: + - pos: 27.665216,6.7443295 + parent: 2 + type: Transform +- proto: LampGold + entities: + - uid: 310 + components: + - pos: 10.438802,4.97286 + parent: 2 + type: Transform + - uid: 2722 + components: + - pos: 20.544691,33.624443 + parent: 2 + type: Transform + - uid: 2723 + components: + - pos: 20.529066,29.655691 + parent: 2 + type: Transform + - uid: 2780 + components: + - pos: 22.507973,40.51647 + parent: 2 + type: Transform + - uid: 4018 + components: + - pos: 32.49905,41.93212 + parent: 2 + type: Transform + - uid: 5474 + components: + - pos: 67.5,37.5 + parent: 2 + type: Transform + - uid: 11417 + components: + - pos: 54.632915,-10.081582 + parent: 2 + type: Transform + - uid: 11465 + components: + - rot: 1.5707963267948966 rad + pos: 43.568825,20.850296 + parent: 2 + type: Transform + - uid: 12116 + components: + - pos: 37.37405,43.99462 + parent: 2 + type: Transform +- proto: LampInterrogator + entities: + - uid: 8436 + components: + - pos: 30.526884,29.884686 + parent: 2 + type: Transform +- proto: LargeBeaker + entities: + - uid: 5323 + components: + - pos: 54.42104,17.661463 + parent: 2 + type: Transform +- proto: LightReplacer + entities: + - uid: 177 + components: + - pos: 5.600267,-3.347455 + parent: 2 + type: Transform +- proto: LockerAtmosphericsFilledHardsuit + entities: + - uid: 1458 + components: + - pos: 32.5,-31.5 + parent: 2 + type: Transform + - uid: 1459 + components: + - pos: 32.5,-32.5 + parent: 2 + type: Transform +- proto: LockerBoozeFilled + entities: + - uid: 2901 + components: + - pos: 67.5,-13.5 + parent: 2 + type: Transform + - uid: 4439 + components: + - pos: 40.5,-10.5 + parent: 2 + type: Transform +- proto: LockerBotanistFilled + entities: + - uid: 6679 + components: + - pos: 44.5,-10.5 + parent: 2 + type: Transform +- proto: LockerCaptainFilled + entities: + - uid: 5414 + components: + - pos: 37.5,40.5 + parent: 2 + type: Transform +- proto: LockerChemistryFilled + entities: + - uid: 9714 + components: + - pos: 52.5,-8.5 + parent: 2 + type: Transform +- proto: LockerChiefEngineerFilled + entities: + - uid: 941 + components: + - pos: 10.5,-35.5 + parent: 2 + type: Transform +- proto: LockerChiefMedicalOfficerFilledHardsuit + entities: + - uid: 5191 + components: + - pos: 58.5,-11.5 + parent: 2 + type: Transform +- proto: LockerDetectiveFilled + entities: + - uid: 11476 + components: + - pos: 43.5,18.5 + parent: 2 + type: Transform +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 882 + components: + - pos: 28.5,-33.5 + parent: 2 + type: Transform + - uid: 1760 + components: + - pos: 38.5,-14.5 + parent: 2 + type: Transform + - uid: 12352 + components: + - pos: 4.5,-8.5 + parent: 2 + type: Transform +- proto: LockerEngineerFilledHardsuit + entities: + - uid: 4904 + components: + - pos: 20.5,-32.5 + parent: 2 + type: Transform + - uid: 4905 + components: + - pos: 20.5,-31.5 + parent: 2 + type: Transform + - uid: 5182 + components: + - pos: 20.5,-30.5 + parent: 2 + type: Transform +- proto: LockerEvidence + entities: + - uid: 2430 + components: + - pos: 32.5,28.5 + parent: 2 + type: Transform + - uid: 5013 + components: + - pos: 32.5,21.5 + parent: 2 + type: Transform + - uid: 5018 + components: + - pos: 32.5,17.5 + parent: 2 + type: Transform + - uid: 7980 + components: + - pos: -2.5,-5.5 + parent: 2 + type: Transform + - uid: 9003 + components: + - pos: 17.5,29.5 + parent: 2 + type: Transform +- proto: LockerFreezer + entities: + - uid: 1646 + components: + - pos: 29.5,-12.5 + parent: 2 + type: Transform + - uid: 12094 + components: + - pos: 19.5,39.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14954 + moles: + - 1.8976884 + - 7.138923 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11861 + - 12102 + - 7304 + - 7391 + - 12827 + - 12828 + - 11863 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerHeadOfPersonnel + entities: + - uid: 10279 + components: + - pos: 18.5,-5.5 + parent: 2 + type: Transform +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 10278 + components: + - pos: 17.5,-5.5 + parent: 2 + type: Transform +- proto: LockerHeadOfSecurityFilledHardsuit + entities: + - uid: 6422 + components: + - pos: 43.5,25.5 + parent: 2 + type: Transform +- proto: LockerMedical + entities: + - uid: 10911 + components: + - pos: 75.5,-1.5 + parent: 2 + type: Transform +- proto: LockerMedicalFilled + entities: + - uid: 11909 + components: + - pos: 70.5,5.5 + parent: 2 + type: Transform + - uid: 11910 + components: + - pos: 70.5,6.5 + parent: 2 + type: Transform +- proto: LockerMedicine + entities: + - uid: 11970 + components: + - pos: 61.5,4.5 + parent: 2 + type: Transform + - uid: 11971 + components: + - pos: 62.5,4.5 + parent: 2 + type: Transform + - uid: 11972 + components: + - pos: 65.5,4.5 + parent: 2 + type: Transform +- proto: LockerMedicineFilled + entities: + - uid: 4115 + components: + - pos: 57.5,-15.5 + parent: 2 + type: Transform + - uid: 5098 + components: + - pos: 67.5,-6.5 + parent: 2 + type: Transform + - uid: 11402 + components: + - pos: 67.5,-11.5 + parent: 2 + type: Transform + - uid: 11911 + components: + - pos: 74.5,5.5 + parent: 2 + type: Transform +- proto: LockerParamedicFilled + entities: + - uid: 9618 + components: + - pos: 44.5,4.5 + parent: 2 + type: Transform +- proto: LockerQuarterMasterFilled + entities: + - uid: 2149 + components: + - pos: 11.5,30.5 + parent: 2 + type: Transform +- proto: LockerResearchDirectorFilled + entities: + - uid: 10660 + components: + - pos: 61.5,11.5 + parent: 2 + type: Transform +- proto: LockerSalvageSpecialistFilledHardsuit + entities: + - uid: 7962 + components: + - pos: 9.5,17.5 + parent: 2 + type: Transform + - uid: 7963 + components: + - pos: 9.5,18.5 + parent: 2 + type: Transform +- proto: LockerScienceFilled + entities: + - uid: 5338 + components: + - pos: 55.5,22.5 + parent: 2 + type: Transform + - uid: 5339 + components: + - pos: 56.5,22.5 + parent: 2 + type: Transform + - uid: 12829 + components: + - pos: 57.5,25.5 + parent: 2 + type: Transform +- proto: LockerScientist + entities: + - uid: 5322 + components: + - pos: 51.5,21.5 + parent: 2 + type: Transform +- proto: LockerSecurityFilled + entities: + - uid: 2468 + components: + - pos: 37.5,17.5 + parent: 2 + type: Transform + - uid: 2469 + components: + - pos: 38.5,17.5 + parent: 2 + type: Transform + - uid: 2470 + components: + - pos: 39.5,17.5 + parent: 2 + type: Transform +- proto: LockerSyndicatePersonal + entities: + - uid: 6871 + components: + - pos: 41.5,28.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6872 + - 6874 + - 6875 + - 6876 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerWallMedicalFilled + entities: + - uid: 8323 + components: + - pos: 46.5,5.5 + parent: 2 + type: Transform +- proto: LockerWardenFilledHardsuit + entities: + - uid: 7678 + components: + - pos: 38.5,23.5 + parent: 2 + type: Transform +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 883 + components: + - pos: 24.5,-33.5 + parent: 2 + type: Transform +- proto: MachineAnomalyGenerator + entities: + - uid: 5363 + components: + - pos: 70.5,15.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound +- proto: MachineAnomalyVessel + entities: + - uid: 5380 + components: + - pos: 68.5,16.5 + parent: 2 + type: Transform + - uid: 10080 + components: + - pos: 67.5,16.5 + parent: 2 + type: Transform +- proto: MachineAPE + entities: + - uid: 5255 + components: + - rot: 1.5707963267948966 rad + pos: 66.5,13.5 + parent: 2 + type: Transform + - uid: 5272 + components: + - rot: 1.5707963267948966 rad + pos: 67.5,13.5 + parent: 2 + type: Transform +- proto: MachineArtifactAnalyzer + entities: + - uid: 8666 + components: + - pos: 64.5,27.5 + parent: 2 + type: Transform + - links: + - 152 + type: DeviceLinkSink +- proto: MachineFrame + entities: + - uid: 5663 + components: + - pos: 21.5,-43.5 + parent: 2 + type: Transform +- proto: MachineParticleAcceleratorEmitterForeCircuitboard + entities: + - uid: 5610 + components: + - pos: 19.614614,-38.64791 + parent: 2 + type: Transform +- proto: MachineParticleAcceleratorEmitterPortCircuitboard + entities: + - uid: 11948 + components: + - pos: 19.50161,-38.48987 + parent: 2 + type: Transform +- proto: MachineParticleAcceleratorEmitterStarboardCircuitboard + entities: + - uid: 1466 + components: + - pos: 19.434057,-38.4118 + parent: 2 + type: Transform +- proto: MagazinePistolSubMachineGunTopMounted + entities: + - uid: 348 + components: + - pos: 45.548477,23.915247 + parent: 2 + type: Transform + - uid: 7835 + components: + - pos: 45.548477,23.915247 + parent: 2 + type: Transform +- proto: MaintenanceFluffSpawner + entities: + - uid: 6944 + components: + - pos: 22.5,18.5 + parent: 2 + type: Transform + - uid: 12286 + components: + - pos: 80.5,-12.5 + parent: 2 + type: Transform + - uid: 12842 + components: + - pos: 23.5,4.5 + parent: 2 + type: Transform +- proto: MaintenancePlantSpawner + entities: + - uid: 12855 + components: + - pos: 2.5,-8.5 + parent: 2 + type: Transform + - uid: 12856 + components: + - pos: 54.5,-20.5 + parent: 2 + type: Transform + - uid: 12857 + components: + - pos: 71.5,34.5 + parent: 2 + type: Transform +- proto: MaintenanceToolSpawner + entities: + - uid: 12284 + components: + - pos: 4.5,-23.5 + parent: 2 + type: Transform +- proto: MaintenanceWeaponSpawner + entities: + - uid: 12285 + components: + - pos: 74.5,-12.5 + parent: 2 + type: Transform +- proto: MaterialCloth + entities: + - uid: 10295 + components: + - pos: 18.45301,-3.204442 + parent: 2 + type: Transform +- proto: MaterialDurathread + entities: + - uid: 10296 + components: + - pos: 18.624886,-3.516942 + parent: 2 + type: Transform +- proto: MaterialReclaimer + entities: + - uid: 5877 + components: + - pos: 3.5,-32.5 + parent: 2 + type: Transform +- proto: MaterialReclaimerMachineCircuitboard + entities: + - uid: 12365 + components: + - pos: 35.653957,-17.595016 + parent: 2 + type: Transform +- proto: MaterialWoodPlank + entities: + - uid: 2898 + components: + - pos: 65.69583,-13.395477 + parent: 2 + type: Transform + - uid: 2899 + components: + - pos: 65.43021,-13.629852 + parent: 2 + type: Transform +- proto: MechEquipmentGrabber + entities: + - uid: 7823 + components: + - pos: 8.528729,32.584915 + parent: 2 + type: Transform +- proto: MedicalBed + entities: + - uid: 4978 + components: + - pos: 81.5,-1.5 + parent: 2 + type: Transform + - uid: 7800 + components: + - pos: 81.5,-0.5 + parent: 2 + type: Transform + - uid: 10902 + components: + - pos: 76.5,-6.5 + parent: 2 + type: Transform + - uid: 10903 + components: + - pos: 77.5,-8.5 + parent: 2 + type: Transform + - uid: 11304 + components: + - pos: 62.5,-10.5 + parent: 2 + type: Transform + - uid: 11820 + components: + - pos: 66.5,4.5 + parent: 2 + type: Transform + - uid: 11821 + components: + - pos: 60.5,4.5 + parent: 2 + type: Transform +- proto: MedicalTechFab + entities: + - uid: 9369 + components: + - pos: 71.5,8.5 + parent: 2 + type: Transform +- proto: MedkitAdvancedFilled + entities: + - uid: 11919 + components: + - pos: 56.50263,-10.253292 + parent: 2 + type: Transform +- proto: MedkitBruteFilled + entities: + - uid: 11915 + components: + - pos: 72.38061,6.2433724 + parent: 2 + type: Transform +- proto: MedkitBurnFilled + entities: + - uid: 11914 + components: + - pos: 72.61498,6.4464974 + parent: 2 + type: Transform +- proto: MedkitCombatFilled + entities: + - uid: 11920 + components: + - pos: 63.555206,-11.384237 + parent: 2 + type: Transform +- proto: MedkitFilled + entities: + - uid: 4996 + components: + - pos: 32.5,48.5 + parent: 2 + type: Transform + - uid: 5731 + components: + - pos: 69.5,-5.5 + parent: 2 + type: Transform + - uid: 7390 + components: + - pos: 18.523928,24.634445 + parent: 2 + type: Transform + - uid: 9625 + components: + - pos: 46.54082,2.560578 + parent: 2 + type: Transform + - uid: 11307 + components: + - pos: 72.38061,6.5246224 + parent: 2 + type: Transform + - uid: 11908 + components: + - pos: 57.486534,-3.4860651 + parent: 2 + type: Transform +- proto: MedkitOxygenFilled + entities: + - uid: 11916 + components: + - pos: 72.61498,6.0402474 + parent: 2 + type: Transform +- proto: MedkitRadiationFilled + entities: + - uid: 11917 + components: + - pos: 72.34936,5.8058724 + parent: 2 + type: Transform +- proto: MedkitToxinFilled + entities: + - uid: 11918 + components: + - pos: 72.61498,5.5714974 + parent: 2 + type: Transform +- proto: MicrophoneInstrument + entities: + - uid: 9739 + components: + - pos: 19.519224,-9.931319 + parent: 2 + type: Transform +- proto: MinimoogInstrument + entities: + - uid: 12692 + components: + - rot: -1.5707963267948966 rad + pos: 106.5,-17.5 + parent: 2 + type: Transform +- proto: Mirror + entities: + - uid: 9 + components: + - pos: 10.5,14.5 + parent: 2 + type: Transform + - uid: 27 + components: + - pos: 40.5,36.5 + parent: 2 + type: Transform + - uid: 1532 + components: + - pos: 11.5,14.5 + parent: 2 + type: Transform + - uid: 11907 + components: + - pos: 76.5,8.5 + parent: 2 + type: Transform +- proto: MonkeyCubeWrapped + entities: + - uid: 6762 + components: + - pos: 40.329384,-11.450722 + parent: 2 + type: Transform +- proto: MopBucket + entities: + - uid: 13116 + components: + - pos: 5.687049,-5.5586905 + parent: 2 + type: Transform +- proto: MopItem + entities: + - uid: 13119 + components: + - pos: 5.5737967,-5.4805655 + parent: 2 + type: Transform +- proto: Morgue + entities: + - uid: 2119 + components: + - rot: 1.5707963267948966 rad + pos: 69.5,-1.5 + parent: 2 + type: Transform + - uid: 4215 + components: + - rot: 1.5707963267948966 rad + pos: 69.5,-2.5 + parent: 2 + type: Transform + - uid: 4314 + components: + - rot: 1.5707963267948966 rad + pos: 69.5,-3.5 + parent: 2 + type: Transform + - uid: 4315 + components: + - rot: 1.5707963267948966 rad + pos: 71.5,-0.5 + parent: 2 + type: Transform + - uid: 4316 + components: + - rot: 1.5707963267948966 rad + pos: 71.5,-1.5 + parent: 2 + type: Transform + - uid: 4317 + components: + - rot: 1.5707963267948966 rad + pos: 71.5,-2.5 + parent: 2 + type: Transform + - uid: 5122 + components: + - rot: -1.5707963267948966 rad + pos: 74.5,-3.5 + parent: 2 + type: Transform + - uid: 9727 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,5.5 + parent: 2 + type: Transform + - uid: 9728 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,4.5 + parent: 2 + type: Transform +- proto: MouseTimedSpawner + entities: + - uid: 12800 + components: + - pos: 4.5,-29.5 + parent: 2 + type: Transform +- proto: MrDips + entities: + - uid: 9602 + components: + - flags: SessionSpecific + type: MetaData + - pos: 25.415216,6.7130795 + parent: 2 + type: Transform +- proto: Multitool + entities: + - uid: 4976 + components: + - pos: 19.486778,46.604305 + parent: 2 + type: Transform + - uid: 5872 + components: + - pos: 31.020313,-14.418215 + parent: 2 + type: Transform + - uid: 7451 + components: + - pos: 17.945803,24.61882 + parent: 2 + type: Transform + - uid: 10792 + components: + - pos: 69.28111,-15.352209 + parent: 2 + type: Transform +- proto: NetworkConfigurator + entities: + - uid: 909 + components: + - pos: 27.306864,-29.442156 + parent: 2 + type: Transform + - uid: 8340 + components: + - pos: 21.44037,46.69382 + parent: 2 + type: Transform +- proto: NitrogenCanister + entities: + - uid: 4306 + components: + - pos: 43.5,-37.5 + parent: 2 + type: Transform + - uid: 4311 + components: + - pos: 43.5,-38.5 + parent: 2 + type: Transform + - uid: 4571 + components: + - pos: 32.5,-27.5 + parent: 2 + type: Transform + - uid: 5746 + components: + - pos: 49.5,-13.5 + parent: 2 + type: Transform + - uid: 10442 + components: + - pos: 58.5,11.5 + parent: 2 + type: Transform +- proto: NitrousOxideCanister + entities: + - uid: 4334 + components: + - pos: 44.5,-37.5 + parent: 2 + type: Transform +- proto: NuclearBomb + entities: + - uid: 12093 + components: + - pos: 18.5,42.5 + parent: 2 + type: Transform +- proto: Omnitool + entities: + - uid: 12102 + components: + - flags: InContainer + type: MetaData + - parent: 12094 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: OperatingTable + entities: + - uid: 24 + components: + - pos: 65.5,-4.5 + parent: 2 + type: Transform + - uid: 5085 + components: + - pos: 56.5,-14.5 + parent: 2 + type: Transform + - uid: 5186 + components: + - pos: 74.5,-2.5 + parent: 2 + type: Transform + - uid: 11399 + components: + - pos: 66.5,-10.5 + parent: 2 + type: Transform + - uid: 12109 + components: + - pos: 55.5,9.5 + parent: 2 + type: Transform +- proto: OreProcessor + entities: + - uid: 12839 + components: + - pos: 9.5,20.5 + parent: 2 + type: Transform +- proto: OreProcessorMachineCircuitboard + entities: + - uid: 12364 + components: + - pos: 35.575832,-17.470016 + parent: 2 + type: Transform +- proto: OxygenCanister + entities: + - uid: 945 + components: + - pos: 42.5,-38.5 + parent: 2 + type: Transform + - uid: 2833 + components: + - pos: 42.5,-37.5 + parent: 2 + type: Transform + - uid: 4570 + components: + - pos: 32.5,-28.5 + parent: 2 + type: Transform + - uid: 5745 + components: + - pos: 50.5,-13.5 + parent: 2 + type: Transform + - uid: 6424 + components: + - pos: 46.5,7.5 + parent: 2 + type: Transform + - uid: 7969 + components: + - pos: 5.5,19.5 + parent: 2 + type: Transform + - uid: 9620 + components: + - pos: 47.5,2.5 + parent: 2 + type: Transform + - uid: 10314 + components: + - pos: 8.5,-5.5 + parent: 2 + type: Transform + - uid: 10441 + components: + - pos: 58.5,10.5 + parent: 2 + type: Transform + - uid: 12997 + components: + - pos: 34.5,-44.5 + parent: 2 + type: Transform +- proto: OxygenTankFilled + entities: + - uid: 5720 + components: + - pos: 73.5,-12.5 + parent: 2 + type: Transform + - uid: 5734 + components: + - pos: 72.5,-9.5 + parent: 2 + type: Transform + - uid: 10847 + components: + - pos: 45.502346,27.566444 + parent: 2 + type: Transform +- proto: PaintingMonkey + entities: + - uid: 5783 + components: + - pos: 37.485016,-2.1577168 + parent: 2 + type: Transform +- proto: PaintingMoony + entities: + - uid: 12334 + components: + - pos: 28.5,6.5 + parent: 2 + type: Transform +- proto: PaintingOlympia + entities: + - uid: 1195 + components: + - pos: 35.5,42.5 + parent: 2 + type: Transform +- proto: PaintingSadClown + entities: + - uid: 12832 + components: + - pos: 28.5,8.5 + parent: 2 + type: Transform +- proto: PaperBin10 + entities: + - uid: 1483 + components: + - pos: 8.5,4.5 + parent: 2 + type: Transform +- proto: PaperBin5 + entities: + - uid: 6913 + components: + - pos: 43.5,19.5 + parent: 2 + type: Transform +- proto: ParticleAcceleratorControlBoxUnfinished + entities: + - uid: 4800 + components: + - pos: 20.5,-40.5 + parent: 2 + type: Transform +- proto: ParticleAcceleratorEndCapUnfinished + entities: + - uid: 1463 + components: + - pos: 22.5,-39.5 + parent: 2 + type: Transform +- proto: ParticleAcceleratorFuelChamberUnfinished + entities: + - uid: 1464 + components: + - pos: 22.5,-40.5 + parent: 2 + type: Transform +- proto: ParticleAcceleratorPowerBoxUnfinished + entities: + - uid: 1467 + components: + - pos: 22.5,-41.5 + parent: 2 + type: Transform +- proto: PartRodMetal + entities: + - uid: 2896 + components: + - pos: 65.52396,-13.395477 + parent: 2 + type: Transform + - uid: 2897 + components: + - pos: 65.85208,-13.442352 + parent: 2 + type: Transform + - uid: 5641 + components: + - pos: 17.877897,-26.451574 + parent: 2 + type: Transform + - uid: 5642 + components: + - pos: 17.877897,-26.451574 + parent: 2 + type: Transform + - uid: 11126 + components: + - pos: 54.520523,-14.325092 + parent: 2 + type: Transform +- proto: Pen + entities: + - uid: 137 + components: + - pos: -2.0928464,-12.376232 + parent: 2 + type: Transform + - uid: 312 + components: + - pos: 11.095052,4.613485 + parent: 2 + type: Transform + - uid: 7415 + components: + - pos: 23.446625,15.655876 + parent: 2 + type: Transform + - uid: 11973 + components: + - pos: 55.38082,-10.156126 + parent: 2 + type: Transform + - uid: 11974 + components: + - pos: 29.754704,-3.2689257 + parent: 2 + type: Transform + - uid: 11975 + components: + - pos: 18.920185,-2.2376757 + parent: 2 + type: Transform + - uid: 11976 + components: + - pos: -2.4757,-12.360289 + parent: 2 + type: Transform + - uid: 11977 + components: + - pos: 10.85696,4.4728694 + parent: 2 + type: Transform + - uid: 11978 + components: + - pos: 21.523584,22.514828 + parent: 2 + type: Transform + - uid: 11979 + components: + - pos: 44.764744,23.837742 + parent: 2 + type: Transform + - uid: 11980 + components: + - pos: 60.396873,11.712045 + parent: 2 + type: Transform +- proto: PersonalAI + entities: + - uid: 7414 + components: + - flags: SessionSpecific + type: MetaData + - pos: 23.509125,15.577751 + parent: 2 + type: Transform + - uid: 11216 + components: + - flags: SessionSpecific + type: MetaData + - pos: 26.514572,47.589886 + parent: 2 + type: Transform + - uid: 11217 + components: + - flags: SessionSpecific + type: MetaData + - pos: 70.51922,36.549946 + parent: 2 + type: Transform +- proto: PhoneInstrument + entities: + - uid: 7008 + components: + - pos: 34.02968,41.62158 + parent: 2 + type: Transform +- proto: PianoInstrument + entities: + - uid: 1663 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-7.5 + parent: 2 + type: Transform +- proto: Pickaxe + entities: + - uid: 8255 + components: + - pos: 9.562899,15.659067 + parent: 2 + type: Transform +- proto: PinpointerNuclear + entities: + - uid: 11101 + components: + - pos: 31.499657,39.560112 + parent: 2 + type: Transform + - uid: 12106 + components: + - pos: 17.448387,40.88602 + parent: 2 + type: Transform +- proto: PlantBGoneSpray + entities: + - uid: 6754 + components: + - pos: 44.41406,-5.5146046 + parent: 2 + type: Transform +- proto: PlaqueAtmos + entities: + - uid: 4576 + components: + - pos: 29.5,-25.5 + parent: 2 + type: Transform +- proto: PlasmaCanister + entities: + - uid: 12995 + components: + - pos: 44.5,-38.5 + parent: 2 + type: Transform + - uid: 12996 + components: + - pos: 34.5,-43.5 + parent: 2 + type: Transform +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 2092 + components: + - rot: -1.5707963267948966 rad + pos: 78.5,-6.5 + parent: 2 + type: Transform + - uid: 5245 + components: + - rot: -1.5707963267948966 rad + pos: 78.5,-7.5 + parent: 2 + type: Transform + - uid: 7722 + components: + - pos: 28.5,25.5 + parent: 2 + type: Transform + - uid: 7753 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,30.5 + parent: 2 + type: Transform + - uid: 7754 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,28.5 + parent: 2 + type: Transform + - uid: 7755 + components: + - pos: 31.5,25.5 + parent: 2 + type: Transform + - uid: 7756 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,26.5 + parent: 2 + type: Transform + - uid: 7759 + components: + - pos: 29.5,25.5 + parent: 2 + type: Transform + - uid: 7760 + components: + - pos: 30.5,25.5 + parent: 2 + type: Transform + - uid: 7794 + components: + - pos: 81.5,-2.5 + parent: 2 + type: Transform + - uid: 10120 + components: + - pos: 76.5,-5.5 + parent: 2 + type: Transform + - uid: 12081 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,9.5 + parent: 2 + type: Transform + - uid: 12107 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,11.5 + parent: 2 + type: Transform +- proto: PlasticFlapsAirtightClear + entities: + - uid: 368 + components: + - pos: 6.5,27.5 + parent: 2 + type: Transform + - uid: 371 + components: + - pos: 4.5,23.5 + parent: 2 + type: Transform + - uid: 481 + components: + - pos: 4.5,-17.5 + parent: 2 + type: Transform + - uid: 482 + components: + - pos: 3.5,-17.5 + parent: 2 + type: Transform + - uid: 483 + components: + - pos: 3.5,-14.5 + parent: 2 + type: Transform + - uid: 484 + components: + - pos: 4.5,-14.5 + parent: 2 + type: Transform + - uid: 5874 + components: + - pos: -0.5,-27.5 + parent: 2 + type: Transform + - uid: 7460 + components: + - pos: 6.5,23.5 + parent: 2 + type: Transform + - uid: 7461 + components: + - pos: 4.5,27.5 + parent: 2 + type: Transform + - uid: 7668 + components: + - pos: 6.5,15.5 + parent: 2 + type: Transform + - uid: 7852 + components: + - pos: 4.5,15.5 + parent: 2 + type: Transform +- proto: Plunger + entities: + - uid: 9718 + components: + - pos: 10.992045,13.876669 + parent: 2 + type: Transform + - uid: 9719 + components: + - pos: 6.0254927,-3.2604024 + parent: 2 + type: Transform +- proto: PlushieNar + entities: + - uid: 5400 + components: + - pos: 62.48992,18.519245 + parent: 2 + type: Transform +- proto: PlushieSharkGrey + entities: + - uid: 5727 + components: + - pos: 25.597736,6.3236885 + parent: 2 + type: Transform +- proto: PlushieSharkPink + entities: + - uid: 13077 + components: + - pos: 6.6388106,-13.475947 + parent: 2 + type: Transform +- proto: PortableFlasher + entities: + - uid: 8412 + components: + - pos: 31.5,26.5 + parent: 2 + type: Transform +- proto: PortableGeneratorJrPacman + entities: + - uid: 801 + components: + - pos: 13.5,-28.5 + parent: 2 + type: Transform + - uid: 5741 + components: + - pos: 12.5,17.5 + parent: 2 + type: Transform + - uid: 11881 + components: + - pos: 23.5,5.5 + parent: 2 + type: Transform + - uid: 13152 + components: + - pos: 70.5,-5.5 + parent: 2 + type: Transform + - uid: 13153 + components: + - pos: 57.5,5.5 + parent: 2 + type: Transform + - uid: 13154 + components: + - pos: 45.5,41.5 + parent: 2 + type: Transform +- proto: PortableGeneratorPacman + entities: + - uid: 4301 + components: + - pos: 9.5,-31.5 + parent: 2 + type: Transform +- proto: PortableGeneratorPacmanMachineCircuitboard + entities: + - uid: 12361 + components: + - pos: 37.591457,-17.470016 + parent: 2 + type: Transform +- proto: PortableGeneratorSuperPacmanMachineCircuitboard + entities: + - uid: 12360 + components: + - pos: 37.466457,-17.376266 + parent: 2 + type: Transform +- proto: PortableScrubber + entities: + - uid: 4977 + components: + - pos: 47.5,7.5 + parent: 2 + type: Transform + - uid: 6765 + components: + - pos: 46.5,-40.5 + parent: 2 + type: Transform + - uid: 7807 + components: + - pos: 24.5,-23.5 + parent: 2 + type: Transform + - uid: 7817 + components: + - pos: 24.5,-24.5 + parent: 2 + type: Transform +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 5294 + components: + - pos: 30.5,-22.5 + parent: 2 + type: Transform +- proto: PosterContrabandBeachStarYamamoto + entities: + - uid: 13105 + components: + - pos: 10.5,16.5 + parent: 2 + type: Transform +- proto: PosterContrabandClown + entities: + - uid: 11021 + components: + - pos: 27.5,4.5 + parent: 2 + type: Transform +- proto: PosterContrabandDonk + entities: + - uid: 13090 + components: + - pos: 58.5,-16.5 + parent: 2 + type: Transform +- proto: PosterContrabandEAT + entities: + - uid: 6763 + components: + - pos: 30.5,-8.5 + parent: 2 + type: Transform +- proto: PosterContrabandGreyTide + entities: + - uid: 739 + components: + - pos: 30.5,-18.5 + parent: 2 + type: Transform +- proto: PosterContrabandHackingGuide + entities: + - uid: 8671 + components: + - pos: 31.5,-13.5 + parent: 2 + type: Transform +- proto: PosterContrabandHaveaPuff + entities: + - uid: 13100 + components: + - pos: 44.5,-8.5 + parent: 2 + type: Transform +- proto: PosterContrabandMissingGloves + entities: + - uid: 11068 + components: + - pos: 34.5,-18.5 + parent: 2 + type: Transform +- proto: PosterContrabandMoth + entities: + - uid: 13102 + components: + - pos: 77.5,-14.5 + parent: 2 + type: Transform +- proto: PosterContrabandRedRum + entities: + - uid: 7286 + components: + - pos: 40.5,-2.5 + parent: 2 + type: Transform +- proto: PosterContrabandWaffleCorp + entities: + - uid: 13091 + components: + - pos: 42.5,27.5 + parent: 2 + type: Transform +- proto: PosterLegit50thAnniversaryVintageReprint + entities: + - uid: 11289 + components: + - pos: 56.5,21.5 + parent: 2 + type: Transform +- proto: PosterLegitAnatomyPoster + entities: + - uid: 12830 + components: + - pos: 60.5,5.5 + parent: 2 + type: Transform +- proto: PosterLegitCarpMount + entities: + - uid: 12833 + components: + - pos: 17.5,25.5 + parent: 2 + type: Transform +- proto: PosterLegitCleanliness + entities: + - uid: 11818 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 2 + type: Transform +- proto: PosterLegitCohibaRobustoAd + entities: + - uid: 7287 + components: + - pos: 28.5,-7.5 + parent: 2 + type: Transform +- proto: PosterLegitDickGumshue + entities: + - uid: 13089 + components: + - pos: 68.5,-14.5 + parent: 2 + type: Transform +- proto: PosterLegitEnlist + entities: + - uid: 13104 + components: + - pos: 42.5,26.5 + parent: 2 + type: Transform +- proto: PosterLegitFoamForceAd + entities: + - uid: 11022 + components: + - pos: 20.5,16.5 + parent: 2 + type: Transform +- proto: PosterLegitFruitBowl + entities: + - uid: 13101 + components: + - pos: 41.5,-9.5 + parent: 2 + type: Transform +- proto: PosterLegitHighClassMartini + entities: + - uid: 13099 + components: + - pos: 38.5,-1.5 + parent: 2 + type: Transform +- proto: PosterLegitIan + entities: + - uid: 10251 + components: + - pos: 17.5,-6.5 + parent: 2 + type: Transform +- proto: PosterLegitIonRifle + entities: + - uid: 13103 + components: + - pos: 42.5,28.5 + parent: 2 + type: Transform +- proto: PosterLegitLoveIan + entities: + - uid: 10252 + components: + - pos: 21.5,-3.5 + parent: 2 + type: Transform +- proto: PosterLegitMime + entities: + - uid: 12831 + components: + - pos: 24.5,5.5 + parent: 2 + type: Transform +- proto: PosterLegitNanomichiAd + entities: + - uid: 12320 + components: + - pos: 13.5,-4.5 + parent: 2 + type: Transform +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 404 + components: + - pos: 29.5,37.5 + parent: 2 + type: Transform + - uid: 7464 + components: + - pos: 17.5,-1.5 + parent: 2 + type: Transform + - uid: 8157 + components: + - pos: -21.5,-11.5 + parent: 2 + type: Transform + - uid: 8158 + components: + - pos: -10.5,-11.5 + parent: 2 + type: Transform + - uid: 8159 + components: + - pos: -7.5,0.5 + parent: 2 + type: Transform + - uid: 11092 + components: + - pos: 17.5,38.5 + parent: 2 + type: Transform + - uid: 11854 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-1.5 + parent: 2 + type: Transform + - uid: 12318 + components: + - pos: 29.5,43.5 + parent: 2 + type: Transform + - uid: 12319 + components: + - pos: 20.5,47.5 + parent: 2 + type: Transform +- proto: PosterLegitNTTGC + entities: + - uid: 13097 + components: + - pos: 13.5,8.5 + parent: 2 + type: Transform +- proto: PosterLegitPeriodicTable + entities: + - uid: 13093 + components: + - pos: 59.5,11.5 + parent: 2 + type: Transform + - uid: 13094 + components: + - pos: 54.5,-7.5 + parent: 2 + type: Transform +- proto: PosterLegitRenault + entities: + - uid: 13092 + components: + - pos: 35.5,41.5 + parent: 2 + type: Transform +- proto: PosterLegitReportCrimes + entities: + - uid: 13096 + components: + - pos: 37.5,16.5 + parent: 2 + type: Transform +- proto: PosterLegitSafetyEyeProtection + entities: + - uid: 13083 + components: + - pos: 40.5,-41.5 + parent: 2 + type: Transform + - uid: 13087 + components: + - pos: 55.5,16.5 + parent: 2 + type: Transform +- proto: PosterLegitSafetyInternals + entities: + - uid: 13084 + components: + - pos: 42.5,-41.5 + parent: 2 + type: Transform + - uid: 13088 + components: + - pos: 54.5,16.5 + parent: 2 + type: Transform +- proto: PosterLegitSafetyMothDelam + entities: + - uid: 13081 + components: + - pos: 32.5,-33.5 + parent: 2 + type: Transform +- proto: PosterLegitSafetyMothEpi + entities: + - uid: 13085 + components: + - pos: 53.5,-2.5 + parent: 2 + type: Transform +- proto: PosterLegitSafetyMothHardhat + entities: + - uid: 13080 + components: + - pos: 23.5,-29.5 + parent: 2 + type: Transform +- proto: PosterLegitSafetyMothMeth + entities: + - uid: 13086 + components: + - pos: 49.5,-9.5 + parent: 2 + type: Transform +- proto: PosterLegitSafetyMothPiping + entities: + - uid: 13079 + components: + - pos: 29.5,-23.5 + parent: 2 + type: Transform + - uid: 13082 + components: + - pos: 38.5,-41.5 + parent: 2 + type: Transform +- proto: PosterLegitSafetyReport + entities: + - uid: 13095 + components: + - pos: 22.5,34.5 + parent: 2 + type: Transform +- proto: PosterLegitSecWatch + entities: + - uid: 7732 + components: + - pos: -2.5,-6.5 + parent: 2 + type: Transform + - uid: 8983 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,16.5 + parent: 2 + type: Transform +- proto: PosterLegitStateLaws + entities: + - uid: 7731 + components: + - pos: -4.5,-10.5 + parent: 2 + type: Transform +- proto: PosterLegitUeNo + entities: + - uid: 11093 + components: + - pos: 23.5,26.5 + parent: 2 + type: Transform +- proto: PosterLegitVacation + entities: + - uid: 13098 + components: + - pos: 22.5,2.5 + parent: 2 + type: Transform +- proto: PosterMapPacked + entities: + - uid: 7744 + components: + - pos: -14.5,-11.5 + parent: 2 + type: Transform + - uid: 12314 + components: + - pos: 15.5,2.5 + parent: 2 + type: Transform + - uid: 12315 + components: + - pos: 37.5,2.5 + parent: 2 + type: Transform + - uid: 12316 + components: + - pos: 33.5,16.5 + parent: 2 + type: Transform + - uid: 12317 + components: + - pos: 34.5,47.5 + parent: 2 + type: Transform + - uid: 12335 + components: + - pos: 30.5,-13.5 + parent: 2 + type: Transform +- proto: PottedPlant1 + entities: + - uid: 6619 + components: + - pos: 32.48526,-7.8502135 + parent: 2 + type: Transform +- proto: PottedPlant19 + entities: + - uid: 2615 + components: + - pos: 13.5,-33.5 + parent: 2 + type: Transform +- proto: PottedPlant2 + entities: + - uid: 12720 + components: + - pos: 29.477802,5.1889386 + parent: 2 + type: Transform +- proto: PottedPlant22 + entities: + - uid: 2908 + components: + - pos: 30.5,44.5 + parent: 2 + type: Transform + - uid: 2909 + components: + - pos: 19.5,44.5 + parent: 2 + type: Transform +- proto: PottedPlantBioluminscent + entities: + - uid: 5046 + components: + - pos: 51.5,4.5 + parent: 2 + type: Transform +- proto: PottedPlantRandom + entities: + - uid: 101 + components: + - pos: -21.5,-12.5 + parent: 2 + type: Transform + - uid: 2533 + components: + - pos: 34.5,9.5 + parent: 2 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 4698 + components: + - pos: 20.5,12.5 + parent: 2 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 5314 + components: + - pos: 54.5,20.5 + parent: 2 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 5340 + components: + - pos: 54.5,22.5 + parent: 2 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 5344 + components: + - pos: 59.5,25.5 + parent: 2 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 7298 + components: + - pos: 15.5,-33.5 + parent: 2 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 7299 + components: + - pos: 15.5,-35.5 + parent: 2 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 7999 + components: + - pos: 3.5,1.5 + parent: 2 + type: Transform + - uid: 8000 + components: + - pos: 3.5,13.5 + parent: 2 + type: Transform + - uid: 11221 + components: + - pos: 18.5,35.5 + parent: 2 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 11222 + components: + - pos: 22.5,35.5 + parent: 2 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 11808 + components: + - pos: 45.5,16.5 + parent: 2 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 12164 + components: + - pos: 73.5,8.5 + parent: 2 + type: Transform + - uid: 12165 + components: + - pos: 58.5,-2.5 + parent: 2 + type: Transform +- proto: PottedPlantRD + entities: + - uid: 10662 + components: + - pos: 60.5,10.5 + parent: 2 + type: Transform +- proto: PowerCellHigh + entities: + - uid: 5631 + components: + - pos: 16.332455,-23.225615 + parent: 2 + type: Transform + - uid: 5632 + components: + - pos: 16.4019,-23.383022 + parent: 2 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 2829 + components: + - pos: 11.5,21.5 + parent: 2 + type: Transform + - uid: 5312 + components: + - pos: 56.5,20.5 + parent: 2 + type: Transform + - canCollide: False + type: Physics + - 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: ContainerContainer + - uid: 6794 + components: + - pos: 19.5,-23.5 + parent: 2 + type: Transform + - canCollide: False + type: Physics + - 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: ContainerContainer + - uid: 7014 + components: + - pos: 17.5,24.5 + parent: 2 + type: Transform + - uid: 9626 + components: + - pos: 46.5,2.5 + parent: 2 + type: Transform + - uid: 11842 + components: + - pos: 31.5,-14.5 + parent: 2 + type: Transform + - canCollide: False + type: Physics + - 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: ContainerContainer + - uid: 12369 + components: + - pos: 38.5,-17.5 + parent: 2 + type: Transform + - uid: 12819 + components: + - pos: 59.5,-3.5 + parent: 2 + type: Transform + - uid: 13106 + components: + - pos: 56.5,-10.5 + parent: 2 + type: Transform + - uid: 13107 + components: + - pos: 63.5,-9.5 + parent: 2 + type: Transform +- proto: PowerCellSmall + entities: + - uid: 5313 + components: + - pos: 56.529827,20.631775 + parent: 2 + type: Transform +- proto: PowerDrill + entities: + - uid: 10671 + components: + - pos: 63.50305,8.626264 + parent: 2 + type: Transform +- proto: Poweredlight + entities: + - uid: 231 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 399 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,3.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 441 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 840 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-25.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1112 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-15.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1473 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-41.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1491 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-41.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1765 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-14.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1766 + components: + - rot: 3.141592653589793 rad + pos: 36.5,-17.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2155 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,25.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2157 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,21.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2783 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,42.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2784 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,42.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2787 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,40.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4054 + components: + - pos: -2.5,-7.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4122 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4562 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-5.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4617 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,6.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4662 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,4.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4663 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,6.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4691 + components: + - rot: 3.141592653589793 rad + pos: 18.5,5.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4699 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,27.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4700 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,19.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4701 + components: + - pos: 23.5,25.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4702 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,12.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4910 + components: + - pos: 14.5,41.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4911 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,35.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4990 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,48.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4991 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,46.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4992 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,46.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4993 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,48.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5060 + components: + - pos: 51.5,-4.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 5080 + components: + - pos: 50.5,4.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5127 + components: + - pos: 45.5,-23.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 5128 + components: + - pos: 45.5,-25.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 5132 + components: + - pos: 45.5,-27.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 5133 + components: + - pos: 45.5,-29.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 5134 + components: + - pos: 45.5,-31.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 5152 + components: + - pos: 45.5,-33.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 5154 + components: + - pos: 30.5,2.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 5164 + components: + - rot: 3.141592653589793 rad + pos: 58.5,-11.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5166 + components: + - rot: -1.5707963267948966 rad + pos: 62.5,-2.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5167 + components: + - rot: 1.5707963267948966 rad + pos: 55.5,-5.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5195 + components: + - pos: 40.5,-42.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 5218 + components: + - rot: 3.141592653589793 rad + pos: 46.5,-40.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 5219 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-40.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 5220 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-34.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 5221 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-22.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 5275 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,15.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5277 + components: + - rot: -1.5707963267948966 rad + pos: 55.5,9.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5278 + components: + - rot: 3.141592653589793 rad + pos: 49.5,8.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5279 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,10.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5280 + components: + - rot: 1.5707963267948966 rad + pos: 60.5,9.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - type: Timer + - uid: 5281 + components: + - pos: 62.5,16.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5282 + components: + - pos: 68.5,16.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5290 + components: + - rot: 3.141592653589793 rad + pos: 71.5,13.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5432 + components: + - pos: 30.5,42.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5433 + components: + - rot: 3.141592653589793 rad + pos: 36.5,40.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5766 + components: + - pos: 20.5,15.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5767 + components: + - rot: 3.141592653589793 rad + pos: 20.5,12.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5768 + components: + - pos: 9.5,10.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5769 + components: + - pos: 17.5,10.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5921 + components: + - pos: 40.5,-14.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6009 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,3.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6010 + components: + - pos: 43.5,0.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6011 + components: + - rot: 3.141592653589793 rad + pos: 48.5,-1.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6013 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6014 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-6.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6027 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-11.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6043 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-8.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6068 + components: + - pos: 13.5,1.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6085 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-1.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6086 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-1.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6486 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,24.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6487 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,24.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6537 + components: + - pos: 56.5,20.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6538 + components: + - rot: 3.141592653589793 rad + pos: 52.5,17.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6630 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-7.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 6652 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-5.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 6653 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-5.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 6654 + components: + - pos: 31.5,-2.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 6657 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-9.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 6658 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-11.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 6660 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,-5.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 7034 + components: + - pos: 4.5,-11.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7294 + components: + - pos: 37.5,1.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 7295 + components: + - pos: 22.5,1.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 7344 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-34.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7364 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-34.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7365 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-36.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7366 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-34.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7470 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 7527 + components: + - pos: 50.5,11.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7528 + components: + - rot: -1.5707963267948966 rad + pos: 63.5,9.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - type: Timer + - uid: 7530 + components: + - rot: 3.141592653589793 rad + pos: 59.5,13.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - type: Timer + - uid: 7568 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-32.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7569 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-32.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7570 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-36.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7574 + components: + - rot: -1.5707963267948966 rad + pos: 50.5,-2.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7577 + components: + - rot: 3.141592653589793 rad + pos: 54.5,-11.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7579 + components: + - rot: 3.141592653589793 rad + pos: 65.5,-6.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7581 + components: + - rot: 1.5707963267948966 rad + pos: 68.5,6.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7591 + components: + - rot: 3.141592653589793 rad + pos: 74.5,1.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7595 + components: + - rot: 3.141592653589793 rad + pos: 56.5,13.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7683 + components: + - rot: 3.141592653589793 rad + pos: 32.5,13.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7684 + components: + - pos: 37.5,15.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7688 + components: + - pos: 50.5,21.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7719 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-14.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 7720 + components: + - rot: 3.141592653589793 rad + pos: 50.5,17.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7723 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-14.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 7724 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-14.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 7726 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-10.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 7768 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,40.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7813 + components: + - pos: 19.5,-2.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7814 + components: + - pos: 10.5,28.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7815 + components: + - pos: 14.5,25.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7831 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,31.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7832 + components: + - rot: 3.141592653589793 rad + pos: 23.5,29.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7850 + components: + - pos: 20.5,37.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7851 + components: + - pos: 25.5,37.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7856 + components: + - pos: 18.5,24.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7857 + components: + - pos: 34.5,43.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7957 + components: + - pos: -6.5,0.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 7958 + components: + - pos: -0.5,0.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 7959 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,9.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 7960 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,13.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 8129 + components: + - pos: 37.5,-22.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8130 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-26.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8266 + components: + - rot: 3.141592653589793 rad + pos: 55.5,22.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8286 + components: + - rot: 3.141592653589793 rad + pos: 8.5,15.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8335 + components: + - pos: 20.5,-14.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8336 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-19.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8339 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-22.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8530 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-39.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8567 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,11.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8568 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,3.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8569 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,29.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8573 + components: + - pos: 39.5,19.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8574 + components: + - rot: 3.141592653589793 rad + pos: 33.5,17.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8584 + components: + - rot: 3.141592653589793 rad + pos: 31.5,34.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8638 + components: + - rot: 3.141592653589793 rad + pos: 72.5,-3.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8642 + components: + - pos: 79.5,-3.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8849 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,18.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 9061 + components: + - rot: 1.5707963267948966 rad + pos: 105.5,-23.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9062 + components: + - rot: 1.5707963267948966 rad + pos: 105.5,-11.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9063 + components: + - pos: 111.5,-15.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9717 + components: + - rot: 3.141592653589793 rad + pos: 51.5,-8.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 10450 + components: + - rot: 1.5707963267948966 rad + pos: 62.5,27.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 10451 + components: + - rot: -1.5707963267948966 rad + pos: 64.5,22.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 10452 + components: + - pos: 58.5,27.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 10453 + components: + - pos: 54.5,27.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 10708 + components: + - rot: 3.141592653589793 rad + pos: 70.5,1.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10928 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-39.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11118 + components: + - rot: -1.5707963267948966 rad + pos: 57.5,-14.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11225 + components: + - pos: 14.5,41.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11791 + components: + - pos: 14.5,-23.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11855 + components: + - rot: 1.5707963267948966 rad + pos: 60.5,-10.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 11856 + components: + - rot: -1.5707963267948966 rad + pos: 63.5,-10.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 11857 + components: + - rot: -1.5707963267948966 rad + pos: 62.5,-6.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 11859 + components: + - pos: 60.5,4.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 11862 + components: + - pos: 63.5,4.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 11864 + components: + - pos: 66.5,4.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 11865 + components: + - rot: 1.5707963267948966 rad + pos: 70.5,7.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 11869 + components: + - pos: 77.5,5.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 11870 + components: + - pos: 55.5,3.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 11906 + components: + - rot: -1.5707963267948966 rad + pos: 74.5,6.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 12977 + components: + - rot: 3.141592653589793 rad + pos: 40.5,-48.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 12978 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-48.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound +- proto: PoweredlightExterior + entities: + - uid: 5606 + components: + - pos: 14.5,-44.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 5607 + components: + - pos: 28.5,-46.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 7836 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-15.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound +- proto: PoweredlightSodium + entities: + - uid: 7961 + components: + - rot: 3.141592653589793 rad + pos: -17.5,15.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound +- proto: PoweredSmallLight + entities: + - uid: 317 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,4.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 583 + components: + - pos: 0.5,-9.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1811 + components: + - rot: 3.141592653589793 rad + pos: 10.5,12.5 + parent: 2 + type: Transform + - uid: 2292 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,37.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2293 + components: + - pos: 40.5,35.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2294 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,32.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2295 + components: + - rot: 3.141592653589793 rad + pos: 37.5,33.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2424 + components: + - rot: 3.141592653589793 rad + pos: 30.5,23.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2425 + components: + - pos: 30.5,21.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2426 + components: + - rot: 3.141592653589793 rad + pos: 30.5,17.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2482 + components: + - pos: 42.5,20.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2534 + components: + - pos: 37.5,9.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2535 + components: + - pos: 30.5,8.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2536 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,5.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2537 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,7.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2539 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,9.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2919 + components: + - pos: 64.5,-15.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3409 + components: + - rot: -1.5707963267948966 rad + pos: 71.5,30.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3410 + components: + - pos: 70.5,34.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3447 + components: + - rot: 3.141592653589793 rad + pos: 70.5,27.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4071 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-14.5 + parent: 2 + type: Transform + - uid: 4438 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-35.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4470 + components: + - pos: 2.5,-28.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4471 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-32.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4474 + components: + - pos: 8.5,-15.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4475 + components: + - pos: 9.5,-22.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4476 + components: + - pos: 16.5,-21.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4478 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-13.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4479 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-7.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4539 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-14.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4540 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4563 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,5.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4564 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,9.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4582 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-31.5 + parent: 2 + type: Transform + - uid: 4583 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-31.5 + parent: 2 + type: Transform + - uid: 4584 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-29.5 + parent: 2 + type: Transform + - uid: 4813 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,12.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4814 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,13.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4907 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,33.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4909 + components: + - pos: 19.5,27.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5119 + components: + - rot: -1.5707963267948966 rad + pos: 67.5,-8.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5229 + components: + - rot: 3.141592653589793 rad + pos: 36.5,-36.5 + parent: 2 + type: Transform + - uid: 5264 + components: + - pos: 50.5,15.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5274 + components: + - rot: 1.5707963267948966 rad + pos: 49.5,24.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5464 + components: + - pos: 70.5,40.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5465 + components: + - pos: 70.5,37.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5611 + components: + - pos: 34.5,-38.5 + parent: 2 + type: Transform + - uid: 5674 + components: + - pos: 68.5,42.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5675 + components: + - rot: 1.5707963267948966 rad + pos: 66.5,38.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5676 + components: + - pos: 67.5,29.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5723 + components: + - pos: 73.5,-12.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6492 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-10.5 + parent: 2 + type: Transform + - uid: 6496 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-12.5 + parent: 2 + type: Transform + - uid: 6505 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-9.5 + parent: 2 + type: Transform + - uid: 6511 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-11.5 + parent: 2 + type: Transform + - uid: 6521 + components: + - rot: 3.141592653589793 rad + pos: 29.5,28.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6659 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-12.5 + parent: 2 + type: Transform + - uid: 6661 + components: + - rot: 3.141592653589793 rad + pos: 43.5,-10.5 + parent: 2 + type: Transform + - uid: 6748 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,-9.5 + parent: 2 + type: Transform + - uid: 6858 + components: + - pos: 67.5,-13.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7013 + components: + - pos: 6.5,32.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7015 + components: + - pos: 12.5,31.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7342 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-27.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7417 + components: + - rot: -1.5707963267948966 rad + pos: 78.5,-0.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7675 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,16.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7676 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,12.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7715 + components: + - pos: 21.5,18.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7819 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,29.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7822 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,42.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7824 + components: + - pos: 55.5,48.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7825 + components: + - pos: 57.5,48.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7826 + components: + - rot: -1.5707963267948966 rad + pos: 67.5,24.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7827 + components: + - rot: -1.5707963267948966 rad + pos: 67.5,19.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7828 + components: + - rot: -1.5707963267948966 rad + pos: 75.5,11.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7829 + components: + - rot: 1.5707963267948966 rad + pos: 65.5,7.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7830 + components: + - pos: 12.5,18.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7860 + components: + - pos: 70.5,-5.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7861 + components: + - pos: 75.5,-15.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7862 + components: + - pos: 87.5,-14.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7863 + components: + - pos: 86.5,-2.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7864 + components: + - rot: -1.5707963267948966 rad + pos: 87.5,-9.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7865 + components: + - rot: -1.5707963267948966 rad + pos: 84.5,5.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7866 + components: + - pos: 81.5,12.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7968 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,18.5 + parent: 2 + type: Transform + - uid: 8332 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-17.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8334 + components: + - pos: 14.5,-16.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8526 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-40.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8527 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-40.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8528 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-42.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8529 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-41.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8565 + components: + - pos: 47.5,7.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8566 + components: + - pos: 56.5,6.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8570 + components: + - pos: 36.5,31.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8571 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,28.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8572 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,28.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8601 + components: + - rot: -1.5707963267948966 rad + pos: 58.5,12.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8602 + components: + - rot: -1.5707963267948966 rad + pos: 58.5,8.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8603 + components: + - rot: 3.141592653589793 rad + pos: 71.5,44.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8609 + components: + - pos: 30.5,26.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8639 + components: + - pos: 81.5,-0.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8640 + components: + - rot: 3.141592653589793 rad + pos: 76.5,-8.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8641 + components: + - rot: -1.5707963267948966 rad + pos: 82.5,-6.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8833 + components: + - rot: 3.141592653589793 rad + pos: 34.5,3.5 + parent: 2 + type: Transform + - uid: 8844 + components: + - rot: 1.5707963267948966 rad + pos: 102.5,-12.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9365 + components: + - rot: 1.5707963267948966 rad + pos: 77.5,9.5 + parent: 2 + type: Transform + - uid: 10707 + components: + - rot: 3.141592653589793 rad + pos: 80.5,1.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10710 + components: + - pos: 100.5,-19.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11097 + components: + - pos: 30.5,-19.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11098 + components: + - pos: 39.5,-19.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11099 + components: + - pos: 46.5,-18.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11100 + components: + - pos: 44.5,25.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11438 + components: + - rot: 3.141592653589793 rad + pos: 38.5,3.5 + parent: 2 + type: Transform + - uid: 11521 + components: + - pos: 54.5,-17.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11522 + components: + - pos: 70.5,-15.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11805 + components: + - rot: -1.5707963267948966 rad + pos: 50.5,-11.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11807 + components: + - rot: -1.5707963267948966 rad + pos: 52.5,-14.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11823 + components: + - pos: 89.5,-18.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11824 + components: + - pos: 85.5,-20.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11825 + components: + - pos: 92.5,-19.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11845 + components: + - pos: 64.5,-1.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11846 + components: + - pos: 67.5,-1.5 + parent: 2 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 12354 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-9.5 + parent: 2 + type: Transform + - uid: 12355 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-13.5 + parent: 2 + type: Transform + - uid: 12841 + components: + - rot: 3.141592653589793 rad + pos: 36.5,3.5 + parent: 2 + type: Transform + - uid: 12980 + components: + - rot: 3.141592653589793 rad + pos: 49.5,-48.5 + parent: 2 + type: Transform + - uid: 12981 + components: + - pos: 46.5,-44.5 + parent: 2 + type: Transform + - uid: 12991 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-47.5 + parent: 2 + type: Transform +- proto: Protolathe + entities: + - uid: 5305 + components: + - pos: 53.5,18.5 + parent: 2 + type: Transform + - materialWhiteList: + - Steel + - Glass + - Plastic + - Wood + - Gold + type: MaterialStorage +- proto: ProtolatheMachineCircuitboard + entities: + - uid: 12371 + components: + - pos: 41.593582,-14.5012665 + parent: 2 + type: Transform +- proto: Rack + entities: + - uid: 251 + components: + - pos: -0.5,-5.5 + parent: 2 + type: Transform + - uid: 826 + components: + - pos: 27.5,-29.5 + parent: 2 + type: Transform + - uid: 827 + components: + - pos: 25.5,-29.5 + parent: 2 + type: Transform + - uid: 1462 + components: + - pos: 19.5,-38.5 + parent: 2 + type: Transform + - uid: 1750 + components: + - pos: 35.5,-17.5 + parent: 2 + type: Transform + - uid: 1751 + components: + - pos: 36.5,-17.5 + parent: 2 + type: Transform + - uid: 1752 + components: + - pos: 37.5,-17.5 + parent: 2 + type: Transform + - uid: 1753 + components: + - pos: 41.5,-16.5 + parent: 2 + type: Transform + - uid: 1754 + components: + - pos: 41.5,-15.5 + parent: 2 + type: Transform + - uid: 1755 + components: + - pos: 41.5,-14.5 + parent: 2 + type: Transform + - uid: 1756 + components: + - pos: 37.5,-14.5 + parent: 2 + type: Transform + - uid: 1757 + components: + - pos: 36.5,-14.5 + parent: 2 + type: Transform + - uid: 1786 + components: + - pos: 33.5,-17.5 + parent: 2 + type: Transform + - uid: 2153 + components: + - pos: 38.5,27.5 + parent: 2 + type: Transform + - uid: 5342 + components: + - pos: 60.5,25.5 + parent: 2 + type: Transform + - uid: 5375 + components: + - pos: 52.5,11.5 + parent: 2 + type: Transform + - uid: 5439 + components: + - pos: 9.5,-14.5 + parent: 2 + type: Transform + - uid: 5527 + components: + - pos: 64.5,18.5 + parent: 2 + type: Transform + - uid: 5717 + components: + - pos: 73.5,-12.5 + parent: 2 + type: Transform + - uid: 5732 + components: + - pos: 72.5,-9.5 + parent: 2 + type: Transform + - uid: 5748 + components: + - pos: 49.5,-10.5 + parent: 2 + type: Transform + - uid: 5965 + components: + - rot: 3.141592653589793 rad + pos: 17.5,5.5 + parent: 2 + type: Transform + - uid: 7270 + components: + - pos: 30.5,-30.5 + parent: 2 + type: Transform + - uid: 7584 + components: + - pos: 38.5,28.5 + parent: 2 + type: Transform + - uid: 7970 + components: + - pos: 9.5,15.5 + parent: 2 + type: Transform + - uid: 8164 + components: + - pos: 8.5,32.5 + parent: 2 + type: Transform + - uid: 8817 + components: + - pos: 72.5,21.5 + parent: 2 + type: Transform + - uid: 8934 + components: + - pos: 69.5,21.5 + parent: 2 + type: Transform + - uid: 9017 + components: + - rot: -1.5707963267948966 rad + pos: 110.5,-19.5 + parent: 2 + type: Transform + - uid: 9366 + components: + - pos: 17.5,8.5 + parent: 2 + type: Transform + - uid: 9605 + components: + - pos: 27.5,5.5 + parent: 2 + type: Transform + - uid: 10303 + components: + - pos: 8.5,-9.5 + parent: 2 + type: Transform + - uid: 10304 + components: + - pos: 8.5,-8.5 + parent: 2 + type: Transform + - uid: 10791 + components: + - pos: 69.5,-15.5 + parent: 2 + type: Transform + - uid: 10795 + components: + - pos: 79.5,-16.5 + parent: 2 + type: Transform + - uid: 10796 + components: + - pos: 80.5,-16.5 + parent: 2 + type: Transform + - uid: 10822 + components: + - pos: 81.5,11.5 + parent: 2 + type: Transform + - uid: 10823 + components: + - pos: 81.5,9.5 + parent: 2 + type: Transform + - uid: 10833 + components: + - pos: 65.5,11.5 + parent: 2 + type: Transform + - uid: 10846 + components: + - pos: 45.5,27.5 + parent: 2 + type: Transform + - uid: 10852 + components: + - pos: 45.5,30.5 + parent: 2 + type: Transform + - uid: 11409 + components: + - pos: 31.5,-17.5 + parent: 2 + type: Transform + - uid: 12408 + components: + - pos: 45.5,-19.5 + parent: 2 + type: Transform + - uid: 12843 + components: + - pos: 23.5,4.5 + parent: 2 + type: Transform + - uid: 13002 + components: + - pos: 32.5,-46.5 + parent: 2 + type: Transform +- proto: RadioHandheld + entities: + - uid: 1325 + components: + - pos: 21.5,-19.5 + parent: 2 + type: Transform + - uid: 2165 + components: + - pos: 15.384224,35.641438 + parent: 2 + type: Transform + - uid: 2166 + components: + - pos: 15.602974,35.641438 + parent: 2 + type: Transform + - uid: 4090 + components: + - pos: 21.304989,-19.377043 + parent: 2 + type: Transform + - uid: 7267 + components: + - pos: 21.664364,-19.377043 + parent: 2 + type: Transform + - uid: 7268 + components: + - pos: 21.492489,-19.283293 + parent: 2 + type: Transform + - uid: 8693 + components: + - pos: 32.390015,26.521107 + parent: 2 + type: Transform + - uid: 8694 + components: + - pos: 32.546265,26.521107 + parent: 2 + type: Transform + - uid: 8695 + components: + - pos: 32.68689,26.505482 + parent: 2 + type: Transform +- proto: Railing + entities: + - uid: 6491 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-10.5 + parent: 2 + type: Transform + - uid: 6493 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-9.5 + parent: 2 + type: Transform + - uid: 6506 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-11.5 + parent: 2 + type: Transform + - uid: 6510 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-12.5 + parent: 2 + type: Transform + - uid: 6662 + components: + - rot: 3.141592653589793 rad + pos: 47.5,-8.5 + parent: 2 + type: Transform + - uid: 6663 + components: + - rot: 3.141592653589793 rad + pos: 46.5,-8.5 + parent: 2 + type: Transform +- proto: RandomArcade + entities: + - uid: 8653 + components: + - pos: 83.5,12.5 + parent: 2 + type: Transform +- proto: RandomArtifactSpawner + entities: + - uid: 10421 + components: + - pos: 64.5,28.5 + parent: 2 + type: Transform + - uid: 10422 + components: + - pos: 62.5,28.5 + parent: 2 + type: Transform +- proto: RandomPainting + entities: + - uid: 6945 + components: + - pos: 19.5,17.5 + parent: 2 + type: Transform +- proto: RandomPosterAny + entities: + - uid: 11520 + components: + - pos: 14.5,-22.5 + parent: 2 + type: Transform +- proto: RandomPosterContraband + entities: + - uid: 11164 + components: + - pos: 8.5,33.5 + parent: 2 + type: Transform + - uid: 11176 + components: + - pos: 14.5,6.5 + parent: 2 + type: Transform +- proto: RandomPosterLegit + entities: + - uid: 7573 + components: + - pos: 10.5,2.5 + parent: 2 + type: Transform + - uid: 8117 + components: + - pos: 20.5,2.5 + parent: 2 + type: Transform + - uid: 8670 + components: + - pos: 32.5,-13.5 + parent: 2 + type: Transform + - uid: 11163 + components: + - pos: 15.5,19.5 + parent: 2 + type: Transform + - uid: 11169 + components: + - pos: 18.5,4.5 + parent: 2 + type: Transform + - uid: 11194 + components: + - pos: 57.5,4.5 + parent: 2 + type: Transform +- proto: RandomSoap + entities: + - uid: 8162 + components: + - pos: 4.5,-5.5 + parent: 2 + type: Transform + - uid: 11905 + components: + - pos: 78.5,7.5 + parent: 2 + type: Transform +- proto: RandomSpawner + entities: + - uid: 5688 + components: + - pos: 17.5,-33.5 + parent: 2 + type: Transform + - uid: 5690 + components: + - pos: 25.5,-33.5 + parent: 2 + type: Transform + - uid: 5691 + components: + - pos: 15.5,-25.5 + parent: 2 + type: Transform + - uid: 9308 + components: + - pos: 68.5,8.5 + parent: 2 + type: Transform + - uid: 11866 + components: + - pos: 57.5,-13.5 + parent: 2 + type: Transform + - uid: 11867 + components: + - pos: 62.5,-15.5 + parent: 2 + type: Transform + - uid: 11868 + components: + - pos: 59.5,-16.5 + parent: 2 + type: Transform + - uid: 11874 + components: + - pos: 12.5,15.5 + parent: 2 + type: Transform + - uid: 11876 + components: + - pos: 20.5,26.5 + parent: 2 + type: Transform + - uid: 11879 + components: + - pos: 83.5,7.5 + parent: 2 + type: Transform + - uid: 11880 + components: + - pos: 68.5,11.5 + parent: 2 + type: Transform + - uid: 11882 + components: + - pos: 70.5,29.5 + parent: 2 + type: Transform + - uid: 11883 + components: + - pos: 70.5,28.5 + parent: 2 + type: Transform + - uid: 11884 + components: + - pos: 71.5,37.5 + parent: 2 + type: Transform + - uid: 11893 + components: + - pos: 18.5,36.5 + parent: 2 + type: Transform + - uid: 11895 + components: + - pos: 21.5,37.5 + parent: 2 + type: Transform + - uid: 12409 + components: + - pos: 44.5,-19.5 + parent: 2 + type: Transform + - uid: 12410 + components: + - pos: 29.5,-20.5 + parent: 2 + type: Transform + - uid: 12411 + components: + - pos: 27.5,-19.5 + parent: 2 + type: Transform + - uid: 12412 + components: + - pos: 25.5,-5.5 + parent: 2 + type: Transform + - uid: 12413 + components: + - pos: 36.5,1.5 + parent: 2 + type: Transform + - uid: 12414 + components: + - pos: 47.5,-1.5 + parent: 2 + type: Transform + - uid: 12415 + components: + - pos: 25.5,12.5 + parent: 2 + type: Transform + - uid: 12417 + components: + - pos: 19.5,14.5 + parent: 2 + type: Transform + - uid: 12418 + components: + - pos: 16.5,10.5 + parent: 2 + type: Transform + - uid: 12419 + components: + - pos: 4.5,10.5 + parent: 2 + type: Transform + - uid: 12420 + components: + - pos: 7.5,0.5 + parent: 2 + type: Transform + - uid: 13155 + components: + - pos: 56.5,6.5 + parent: 2 + type: Transform +- proto: RandomVending + entities: + - uid: 8261 + components: + - pos: 24.5,18.5 + parent: 2 + type: Transform +- proto: RandomVendingDrinks + entities: + - uid: 8001 + components: + - pos: 6.5,13.5 + parent: 2 + type: Transform + - uid: 8262 + components: + - pos: 24.5,17.5 + parent: 2 + type: Transform + - uid: 9350 + components: + - pos: 27.5,12.5 + parent: 2 + type: Transform + - uid: 9612 + components: + - pos: 25.5,3.5 + parent: 2 + type: Transform + - uid: 11032 + components: + - pos: 20.5,35.5 + parent: 2 + type: Transform +- proto: RandomVendingSnacks + entities: + - uid: 8002 + components: + - pos: 5.5,13.5 + parent: 2 + type: Transform +- proto: Recycler + entities: + - uid: 5855 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-29.5 + parent: 2 + type: Transform + - links: + - 5856 + type: DeviceLinkSink +- proto: ReinforcedPlasmaWindow + entities: + - uid: 232 + components: + - pos: 44.5,-33.5 + parent: 2 + type: Transform + - uid: 685 + components: + - pos: 33.5,-30.5 + parent: 2 + type: Transform + - uid: 2356 + components: + - pos: 37.5,27.5 + parent: 2 + type: Transform + - uid: 2362 + components: + - pos: 37.5,26.5 + parent: 2 + type: Transform + - uid: 2363 + components: + - pos: 38.5,25.5 + parent: 2 + type: Transform + - uid: 2364 + components: + - pos: 41.5,25.5 + parent: 2 + type: Transform + - uid: 2366 + components: + - pos: 37.5,28.5 + parent: 2 + type: Transform + - uid: 2400 + components: + - pos: 44.5,-25.5 + parent: 2 + type: Transform + - uid: 2411 + components: + - pos: 36.5,-29.5 + parent: 2 + type: Transform + - uid: 2414 + components: + - pos: 44.5,-27.5 + parent: 2 + type: Transform + - uid: 2435 + components: + - pos: 44.5,-29.5 + parent: 2 + type: Transform + - uid: 3949 + components: + - pos: 33.5,-32.5 + parent: 2 + type: Transform + - uid: 3950 + components: + - pos: 34.5,-29.5 + parent: 2 + type: Transform + - uid: 4132 + components: + - pos: 44.5,-23.5 + parent: 2 + type: Transform + - uid: 4230 + components: + - pos: 34.5,-33.5 + parent: 2 + type: Transform + - uid: 4258 + components: + - pos: 37.5,-30.5 + parent: 2 + type: Transform + - uid: 4259 + components: + - pos: 37.5,-31.5 + parent: 2 + type: Transform + - uid: 4264 + components: + - pos: 37.5,-32.5 + parent: 2 + type: Transform + - uid: 4265 + components: + - pos: 36.5,-33.5 + parent: 2 + type: Transform + - uid: 4298 + components: + - pos: 44.5,-31.5 + parent: 2 + type: Transform + - uid: 8699 + components: + - pos: 63.5,26.5 + parent: 2 + type: Transform + - uid: 10088 + components: + - pos: 64.5,26.5 + parent: 2 + type: Transform + - uid: 12984 + components: + - pos: 45.5,-48.5 + parent: 2 + type: Transform + - uid: 12985 + components: + - pos: 45.5,-47.5 + parent: 2 + type: Transform + - uid: 12986 + components: + - pos: 45.5,-46.5 + parent: 2 + type: Transform + - uid: 12987 + components: + - pos: 45.5,-45.5 + parent: 2 + type: Transform + - uid: 12988 + components: + - pos: 45.5,-44.5 + parent: 2 + type: Transform +- proto: ReinforcedUraniumWindow + entities: + - uid: 3885 + components: + - pos: 17.5,-16.5 + parent: 2 + type: Transform + - uid: 3902 + components: + - pos: 19.5,-16.5 + parent: 2 + type: Transform + - uid: 3945 + components: + - pos: 19.5,-17.5 + parent: 2 + type: Transform + - uid: 3946 + components: + - pos: 19.5,-18.5 + parent: 2 + type: Transform + - uid: 3947 + components: + - pos: 18.5,-18.5 + parent: 2 + type: Transform + - uid: 3948 + components: + - pos: 17.5,-18.5 + parent: 2 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 13 + components: + - pos: -7.5,-4.5 + parent: 2 + type: Transform + - uid: 17 + components: + - pos: -7.5,-5.5 + parent: 2 + type: Transform + - uid: 18 + components: + - pos: -7.5,-1.5 + parent: 2 + type: Transform + - uid: 21 + components: + - pos: -7.5,-6.5 + parent: 2 + type: Transform + - uid: 23 + components: + - pos: -7.5,-2.5 + parent: 2 + type: Transform + - uid: 25 + components: + - pos: -4.5,-11.5 + parent: 2 + type: Transform + - uid: 45 + components: + - pos: -4.5,-14.5 + parent: 2 + type: Transform + - uid: 46 + components: + - pos: -7.5,-8.5 + parent: 2 + type: Transform + - uid: 47 + components: + - pos: -7.5,-10.5 + parent: 2 + type: Transform + - uid: 79 + components: + - pos: -3.5,1.5 + parent: 2 + type: Transform + - uid: 80 + components: + - pos: -1.5,2.5 + parent: 2 + type: Transform + - uid: 89 + components: + - pos: -4.5,-18.5 + parent: 2 + type: Transform + - uid: 90 + components: + - pos: -6.5,-17.5 + parent: 2 + type: Transform + - uid: 93 + components: + - pos: -6.5,-18.5 + parent: 2 + type: Transform + - uid: 99 + components: + - pos: -6.5,-15.5 + parent: 2 + type: Transform + - uid: 100 + components: + - pos: -6.5,-16.5 + parent: 2 + type: Transform + - uid: 119 + components: + - pos: -4.5,-8.5 + parent: 2 + type: Transform + - uid: 120 + components: + - pos: -4.5,-9.5 + parent: 2 + type: Transform + - uid: 123 + components: + - pos: -3.5,-13.5 + parent: 2 + type: Transform + - uid: 124 + components: + - pos: -2.5,-13.5 + parent: 2 + type: Transform + - uid: 125 + components: + - pos: -1.5,-13.5 + parent: 2 + type: Transform + - uid: 198 + components: + - pos: 1.5,-17.5 + parent: 2 + type: Transform + - uid: 199 + components: + - pos: 0.5,-17.5 + parent: 2 + type: Transform + - uid: 233 + components: + - pos: -4.5,-16.5 + parent: 2 + type: Transform + - uid: 325 + components: + - pos: -4.5,-4.5 + parent: 2 + type: Transform + - uid: 326 + components: + - pos: -3.5,-2.5 + parent: 2 + type: Transform + - uid: 327 + components: + - pos: -1.5,-2.5 + parent: 2 + type: Transform + - uid: 328 + components: + - pos: -22.5,-14.5 + parent: 2 + type: Transform + - uid: 329 + components: + - pos: -22.5,-13.5 + parent: 2 + type: Transform + - uid: 330 + components: + - pos: -22.5,-12.5 + parent: 2 + type: Transform + - uid: 345 + components: + - pos: -3.5,2.5 + parent: 2 + type: Transform + - uid: 357 + components: + - pos: -15.5,-11.5 + parent: 2 + type: Transform + - uid: 359 + components: + - pos: -16.5,-11.5 + parent: 2 + type: Transform + - uid: 397 + components: + - pos: 2.5,6.5 + parent: 2 + type: Transform + - uid: 400 + components: + - pos: 2.5,7.5 + parent: 2 + type: Transform + - uid: 418 + components: + - pos: 53.5,12.5 + parent: 2 + type: Transform + - uid: 427 + components: + - pos: 55.5,12.5 + parent: 2 + type: Transform + - uid: 433 + components: + - pos: 5.5,20.5 + parent: 2 + type: Transform + - uid: 445 + components: + - pos: 60.5,12.5 + parent: 2 + type: Transform + - uid: 446 + components: + - pos: 61.5,12.5 + parent: 2 + type: Transform + - uid: 464 + components: + - pos: 63.5,12.5 + parent: 2 + type: Transform + - uid: 465 + components: + - pos: 65.5,16.5 + parent: 2 + type: Transform + - uid: 469 + components: + - pos: -7.5,-9.5 + parent: 2 + type: Transform + - uid: 510 + components: + - pos: -8.5,-11.5 + parent: 2 + type: Transform + - uid: 560 + components: + - pos: 14.5,-2.5 + parent: 2 + type: Transform + - uid: 561 + components: + - pos: 15.5,-2.5 + parent: 2 + type: Transform + - uid: 574 + components: + - pos: 65.5,14.5 + parent: 2 + type: Transform + - uid: 585 + components: + - pos: 57.5,19.5 + parent: 2 + type: Transform + - uid: 590 + components: + - pos: 57.5,20.5 + parent: 2 + type: Transform + - uid: 591 + components: + - pos: 57.5,17.5 + parent: 2 + type: Transform + - uid: 689 + components: + - pos: -20.5,-11.5 + parent: 2 + type: Transform + - uid: 692 + components: + - pos: -11.5,-11.5 + parent: 2 + type: Transform + - uid: 695 + components: + - pos: -11.5,-15.5 + parent: 2 + type: Transform + - uid: 813 + components: + - pos: 27.5,-26.5 + parent: 2 + type: Transform + - uid: 814 + components: + - pos: 25.5,-26.5 + parent: 2 + type: Transform + - uid: 862 + components: + - pos: 19.5,-30.5 + parent: 2 + type: Transform + - uid: 863 + components: + - pos: 19.5,-32.5 + parent: 2 + type: Transform + - uid: 864 + components: + - pos: 27.5,-34.5 + parent: 2 + type: Transform + - uid: 865 + components: + - pos: 28.5,-34.5 + parent: 2 + type: Transform + - uid: 866 + components: + - pos: 25.5,-34.5 + parent: 2 + type: Transform + - uid: 867 + components: + - pos: 24.5,-34.5 + parent: 2 + type: Transform + - uid: 902 + components: + - pos: 35.5,-26.5 + parent: 2 + type: Transform + - uid: 905 + components: + - pos: 37.5,-27.5 + parent: 2 + type: Transform + - uid: 928 + components: + - pos: 14.5,-33.5 + parent: 2 + type: Transform + - uid: 929 + components: + - pos: 14.5,-35.5 + parent: 2 + type: Transform + - uid: 930 + components: + - pos: 14.5,-36.5 + parent: 2 + type: Transform + - uid: 931 + components: + - pos: 13.5,-37.5 + parent: 2 + type: Transform + - uid: 932 + components: + - pos: 12.5,-37.5 + parent: 2 + type: Transform + - uid: 933 + components: + - pos: 11.5,-37.5 + parent: 2 + type: Transform + - uid: 934 + components: + - pos: 10.5,-37.5 + parent: 2 + type: Transform + - uid: 982 + components: + - pos: 20.5,-37.5 + parent: 2 + type: Transform + - uid: 983 + components: + - pos: 19.5,-37.5 + parent: 2 + type: Transform + - uid: 984 + components: + - pos: 22.5,-37.5 + parent: 2 + type: Transform + - uid: 985 + components: + - pos: 23.5,-37.5 + parent: 2 + type: Transform + - uid: 986 + components: + - pos: 24.5,-38.5 + parent: 2 + type: Transform + - uid: 987 + components: + - pos: 18.5,-38.5 + parent: 2 + type: Transform + - uid: 988 + components: + - pos: 18.5,-41.5 + parent: 2 + type: Transform + - uid: 989 + components: + - pos: 18.5,-42.5 + parent: 2 + type: Transform + - uid: 990 + components: + - pos: 18.5,-43.5 + parent: 2 + type: Transform + - uid: 991 + components: + - pos: 17.5,-43.5 + parent: 2 + type: Transform + - uid: 992 + components: + - pos: 16.5,-43.5 + parent: 2 + type: Transform + - uid: 993 + components: + - pos: 18.5,-44.5 + parent: 2 + type: Transform + - uid: 994 + components: + - pos: 19.5,-44.5 + parent: 2 + type: Transform + - uid: 995 + components: + - pos: 20.5,-44.5 + parent: 2 + type: Transform + - uid: 996 + components: + - pos: 21.5,-44.5 + parent: 2 + type: Transform + - uid: 997 + components: + - pos: 22.5,-44.5 + parent: 2 + type: Transform + - uid: 998 + components: + - pos: 23.5,-44.5 + parent: 2 + type: Transform + - uid: 999 + components: + - pos: 24.5,-44.5 + parent: 2 + type: Transform + - uid: 1000 + components: + - pos: 24.5,-43.5 + parent: 2 + type: Transform + - uid: 1001 + components: + - pos: 25.5,-43.5 + parent: 2 + type: Transform + - uid: 1002 + components: + - pos: 26.5,-43.5 + parent: 2 + type: Transform + - uid: 1003 + components: + - pos: 24.5,-42.5 + parent: 2 + type: Transform + - uid: 1004 + components: + - pos: 24.5,-41.5 + parent: 2 + type: Transform + - uid: 1051 + components: + - pos: -13.5,-15.5 + parent: 2 + type: Transform + - uid: 1052 + components: + - pos: 2.5,11.5 + parent: 2 + type: Transform + - uid: 1061 + components: + - pos: 2.5,12.5 + parent: 2 + type: Transform + - uid: 1105 + components: + - pos: -12.5,-15.5 + parent: 2 + type: Transform + - uid: 1161 + components: + - pos: -9.5,-11.5 + parent: 2 + type: Transform + - uid: 1231 + components: + - pos: 33.5,-27.5 + parent: 2 + type: Transform + - uid: 1232 + components: + - pos: 34.5,-26.5 + parent: 2 + type: Transform + - uid: 1251 + components: + - pos: 33.5,-34.5 + parent: 2 + type: Transform + - uid: 1308 + components: + - pos: 7.5,-25.5 + parent: 2 + type: Transform + - uid: 1309 + components: + - pos: 6.5,-25.5 + parent: 2 + type: Transform + - uid: 1310 + components: + - pos: 6.5,-26.5 + parent: 2 + type: Transform + - uid: 1311 + components: + - pos: 6.5,-27.5 + parent: 2 + type: Transform + - uid: 1312 + components: + - pos: 6.5,-30.5 + parent: 2 + type: Transform + - uid: 1313 + components: + - pos: 6.5,-31.5 + parent: 2 + type: Transform + - uid: 1314 + components: + - pos: 6.5,-32.5 + parent: 2 + type: Transform + - uid: 1315 + components: + - pos: 5.5,-32.5 + parent: 2 + type: Transform + - uid: 1320 + components: + - pos: 2.5,8.5 + parent: 2 + type: Transform + - uid: 1322 + components: + - pos: 2.5,10.5 + parent: 2 + type: Transform + - uid: 1342 + components: + - pos: 1.5,-27.5 + parent: 2 + type: Transform + - uid: 1343 + components: + - pos: 0.5,-27.5 + parent: 2 + type: Transform + - uid: 1344 + components: + - pos: -1.5,-28.5 + parent: 2 + type: Transform + - uid: 1345 + components: + - pos: -1.5,-29.5 + parent: 2 + type: Transform + - uid: 1363 + components: + - pos: 1.5,-34.5 + parent: 2 + type: Transform + - uid: 1364 + components: + - pos: 0.5,-34.5 + parent: 2 + type: Transform + - uid: 1365 + components: + - pos: -0.5,-34.5 + parent: 2 + type: Transform + - uid: 1366 + components: + - pos: 1.5,-36.5 + parent: 2 + type: Transform + - uid: 1367 + components: + - pos: 0.5,-36.5 + parent: 2 + type: Transform + - uid: 1368 + components: + - pos: -0.5,-36.5 + parent: 2 + type: Transform + - uid: 1526 + components: + - pos: 0.5,1.5 + parent: 2 + type: Transform + - uid: 1735 + components: + - pos: 42.5,-16.5 + parent: 2 + type: Transform + - uid: 1736 + components: + - pos: 42.5,-15.5 + parent: 2 + type: Transform + - uid: 1737 + components: + - pos: 42.5,-14.5 + parent: 2 + type: Transform + - uid: 1738 + components: + - pos: 46.5,-16.5 + parent: 2 + type: Transform + - uid: 1739 + components: + - pos: 46.5,-15.5 + parent: 2 + type: Transform + - uid: 1740 + components: + - pos: 46.5,-14.5 + parent: 2 + type: Transform + - uid: 1808 + components: + - pos: -4.5,-17.5 + parent: 2 + type: Transform + - uid: 1809 + components: + - pos: -18.5,-11.5 + parent: 2 + type: Transform + - uid: 1855 + components: + - pos: -3.5,0.5 + parent: 2 + type: Transform + - uid: 2022 + components: + - pos: -19.5,-15.5 + parent: 2 + type: Transform + - uid: 2053 + components: + - pos: 4.5,28.5 + parent: 2 + type: Transform + - uid: 2054 + components: + - pos: 6.5,28.5 + parent: 2 + type: Transform + - uid: 2055 + components: + - pos: 5.5,28.5 + parent: 2 + type: Transform + - uid: 2056 + components: + - pos: 4.5,25.5 + parent: 2 + type: Transform + - uid: 2057 + components: + - pos: 5.5,25.5 + parent: 2 + type: Transform + - uid: 2058 + components: + - pos: 6.5,25.5 + parent: 2 + type: Transform + - uid: 2059 + components: + - pos: 4.5,22.5 + parent: 2 + type: Transform + - uid: 2060 + components: + - pos: 5.5,22.5 + parent: 2 + type: Transform + - uid: 2061 + components: + - pos: 6.5,22.5 + parent: 2 + type: Transform + - uid: 2068 + components: + - pos: -13.5,-11.5 + parent: 2 + type: Transform + - uid: 2240 + components: + - pos: 28.5,21.5 + parent: 2 + type: Transform + - uid: 2241 + components: + - pos: 28.5,20.5 + parent: 2 + type: Transform + - uid: 2242 + components: + - pos: 28.5,18.5 + parent: 2 + type: Transform + - uid: 2243 + components: + - pos: 28.5,17.5 + parent: 2 + type: Transform + - uid: 2256 + components: + - pos: 31.5,21.5 + parent: 2 + type: Transform + - uid: 2257 + components: + - pos: 31.5,17.5 + parent: 2 + type: Transform + - uid: 2284 + components: + - pos: 44.5,34.5 + parent: 2 + type: Transform + - uid: 2285 + components: + - pos: 44.5,35.5 + parent: 2 + type: Transform + - uid: 2286 + components: + - pos: 44.5,36.5 + parent: 2 + type: Transform + - uid: 2287 + components: + - pos: 42.5,33.5 + parent: 2 + type: Transform + - uid: 2288 + components: + - pos: 42.5,32.5 + parent: 2 + type: Transform + - uid: 2289 + components: + - pos: 42.5,31.5 + parent: 2 + type: Transform + - uid: 2367 + components: + - pos: 37.5,24.5 + parent: 2 + type: Transform + - uid: 2368 + components: + - pos: 37.5,23.5 + parent: 2 + type: Transform + - uid: 2369 + components: + - pos: 38.5,20.5 + parent: 2 + type: Transform + - uid: 2370 + components: + - pos: 37.5,21.5 + parent: 2 + type: Transform + - uid: 2373 + components: + - pos: 42.5,24.5 + parent: 2 + type: Transform + - uid: 2374 + components: + - pos: 42.5,22.5 + parent: 2 + type: Transform + - uid: 2427 + components: + - pos: 88.5,-6.5 + parent: 2 + type: Transform + - uid: 2458 + components: + - pos: 43.5,16.5 + parent: 2 + type: Transform + - uid: 2459 + components: + - pos: 41.5,16.5 + parent: 2 + type: Transform + - uid: 2476 + components: + - pos: 33.5,-36.5 + parent: 2 + type: Transform + - uid: 2483 + components: + - pos: 37.5,-28.5 + parent: 2 + type: Transform + - uid: 2745 + components: + - pos: 15.5,42.5 + parent: 2 + type: Transform + - uid: 2746 + components: + - pos: 14.5,42.5 + parent: 2 + type: Transform + - uid: 2747 + components: + - pos: 13.5,42.5 + parent: 2 + type: Transform + - uid: 2748 + components: + - pos: 23.5,38.5 + parent: 2 + type: Transform + - uid: 2749 + components: + - pos: 22.5,38.5 + parent: 2 + type: Transform + - uid: 2750 + components: + - pos: 21.5,38.5 + parent: 2 + type: Transform + - uid: 2752 + components: + - pos: 21.5,43.5 + parent: 2 + type: Transform + - uid: 2753 + components: + - pos: 24.5,43.5 + parent: 2 + type: Transform + - uid: 2754 + components: + - pos: 27.5,38.5 + parent: 2 + type: Transform + - uid: 2755 + components: + - pos: 27.5,43.5 + parent: 2 + type: Transform + - uid: 2786 + components: + - pos: -4.5,-12.5 + parent: 2 + type: Transform + - uid: 2817 + components: + - pos: 22.5,49.5 + parent: 2 + type: Transform + - uid: 2818 + components: + - pos: 23.5,49.5 + parent: 2 + type: Transform + - uid: 2819 + components: + - pos: 24.5,49.5 + parent: 2 + type: Transform + - uid: 2820 + components: + - pos: 25.5,49.5 + parent: 2 + type: Transform + - uid: 2821 + components: + - pos: 26.5,49.5 + parent: 2 + type: Transform + - uid: 2822 + components: + - pos: 27.5,49.5 + parent: 2 + type: Transform + - uid: 2823 + components: + - pos: 28.5,49.5 + parent: 2 + type: Transform + - uid: 2824 + components: + - pos: 29.5,49.5 + parent: 2 + type: Transform + - uid: 2825 + components: + - pos: 30.5,49.5 + parent: 2 + type: Transform + - uid: 2826 + components: + - pos: 31.5,49.5 + parent: 2 + type: Transform + - uid: 2827 + components: + - pos: 32.5,49.5 + parent: 2 + type: Transform + - uid: 2859 + components: + - pos: 60.5,-12.5 + parent: 2 + type: Transform + - uid: 2860 + components: + - pos: 61.5,-12.5 + parent: 2 + type: Transform + - uid: 2861 + components: + - pos: 62.5,-12.5 + parent: 2 + type: Transform + - uid: 2862 + components: + - pos: 63.5,-12.5 + parent: 2 + type: Transform + - uid: 2863 + components: + - pos: 62.5,-14.5 + parent: 2 + type: Transform + - uid: 2864 + components: + - pos: 63.5,-14.5 + parent: 2 + type: Transform + - uid: 2865 + components: + - pos: 60.5,-14.5 + parent: 2 + type: Transform + - uid: 2866 + components: + - pos: 61.5,-14.5 + parent: 2 + type: Transform + - uid: 2867 + components: + - pos: 59.5,-14.5 + parent: 2 + type: Transform + - uid: 3069 + components: + - pos: 42.5,40.5 + parent: 2 + type: Transform + - uid: 3070 + components: + - pos: 41.5,40.5 + parent: 2 + type: Transform + - uid: 3086 + components: + - pos: 36.5,46.5 + parent: 2 + type: Transform + - uid: 3087 + components: + - pos: 36.5,45.5 + parent: 2 + type: Transform + - uid: 3088 + components: + - pos: 18.5,45.5 + parent: 2 + type: Transform + - uid: 3089 + components: + - pos: 18.5,44.5 + parent: 2 + type: Transform + - uid: 3098 + components: + - pos: 48.5,49.5 + parent: 2 + type: Transform + - uid: 3099 + components: + - pos: 48.5,48.5 + parent: 2 + type: Transform + - uid: 3100 + components: + - pos: 47.5,48.5 + parent: 2 + type: Transform + - uid: 3101 + components: + - pos: 46.5,48.5 + parent: 2 + type: Transform + - uid: 3102 + components: + - pos: 45.5,48.5 + parent: 2 + type: Transform + - uid: 3103 + components: + - pos: 45.5,47.5 + parent: 2 + type: Transform + - uid: 3104 + components: + - pos: 44.5,47.5 + parent: 2 + type: Transform + - uid: 3105 + components: + - pos: 43.5,47.5 + parent: 2 + type: Transform + - uid: 3110 + components: + - pos: 46.5,45.5 + parent: 2 + type: Transform + - uid: 3111 + components: + - pos: 47.5,45.5 + parent: 2 + type: Transform + - uid: 3112 + components: + - pos: 48.5,45.5 + parent: 2 + type: Transform + - uid: 3113 + components: + - pos: 49.5,45.5 + parent: 2 + type: Transform + - uid: 3127 + components: + - pos: 50.5,46.5 + parent: 2 + type: Transform + - uid: 3128 + components: + - pos: 50.5,47.5 + parent: 2 + type: Transform + - uid: 3129 + components: + - pos: 51.5,47.5 + parent: 2 + type: Transform + - uid: 3130 + components: + - pos: 52.5,47.5 + parent: 2 + type: Transform + - uid: 3131 + components: + - pos: 53.5,47.5 + parent: 2 + type: Transform + - uid: 3132 + components: + - pos: 54.5,47.5 + parent: 2 + type: Transform + - uid: 3133 + components: + - pos: 55.5,47.5 + parent: 2 + type: Transform + - uid: 3134 + components: + - pos: 56.5,47.5 + parent: 2 + type: Transform + - uid: 3135 + components: + - pos: 57.5,47.5 + parent: 2 + type: Transform + - uid: 3142 + components: + - pos: 47.5,40.5 + parent: 2 + type: Transform + - uid: 3143 + components: + - pos: 47.5,39.5 + parent: 2 + type: Transform + - uid: 3144 + components: + - pos: 47.5,38.5 + parent: 2 + type: Transform + - uid: 3145 + components: + - pos: 47.5,37.5 + parent: 2 + type: Transform + - uid: 3209 + components: + - pos: 58.5,47.5 + parent: 2 + type: Transform + - uid: 3210 + components: + - pos: 59.5,47.5 + parent: 2 + type: Transform + - uid: 3211 + components: + - pos: 60.5,47.5 + parent: 2 + type: Transform + - uid: 3212 + components: + - pos: 61.5,47.5 + parent: 2 + type: Transform + - uid: 3214 + components: + - pos: 62.5,47.5 + parent: 2 + type: Transform + - uid: 3265 + components: + - pos: 62.5,46.5 + parent: 2 + type: Transform + - uid: 3284 + components: + - pos: 50.5,32.5 + parent: 2 + type: Transform + - uid: 3285 + components: + - pos: 50.5,33.5 + parent: 2 + type: Transform + - uid: 3286 + components: + - pos: 50.5,34.5 + parent: 2 + type: Transform + - uid: 3287 + components: + - pos: 50.5,35.5 + parent: 2 + type: Transform + - uid: 3288 + components: + - pos: 50.5,36.5 + parent: 2 + type: Transform + - uid: 3289 + components: + - pos: 50.5,38.5 + parent: 2 + type: Transform + - uid: 3290 + components: + - pos: 50.5,37.5 + parent: 2 + type: Transform + - uid: 3291 + components: + - pos: 50.5,39.5 + parent: 2 + type: Transform + - uid: 3292 + components: + - pos: 51.5,39.5 + parent: 2 + type: Transform + - uid: 3293 + components: + - pos: 51.5,40.5 + parent: 2 + type: Transform + - uid: 3294 + components: + - pos: 52.5,40.5 + parent: 2 + type: Transform + - uid: 3295 + components: + - pos: 53.5,40.5 + parent: 2 + type: Transform + - uid: 3296 + components: + - pos: 53.5,41.5 + parent: 2 + type: Transform + - uid: 3297 + components: + - pos: 54.5,41.5 + parent: 2 + type: Transform + - uid: 3298 + components: + - pos: 55.5,41.5 + parent: 2 + type: Transform + - uid: 3299 + components: + - pos: 56.5,41.5 + parent: 2 + type: Transform + - uid: 3300 + components: + - pos: 57.5,41.5 + parent: 2 + type: Transform + - uid: 3301 + components: + - pos: 58.5,41.5 + parent: 2 + type: Transform + - uid: 3302 + components: + - pos: 59.5,41.5 + parent: 2 + type: Transform + - uid: 3303 + components: + - pos: 59.5,40.5 + parent: 2 + type: Transform + - uid: 3304 + components: + - pos: 60.5,40.5 + parent: 2 + type: Transform + - uid: 3305 + components: + - pos: 61.5,40.5 + parent: 2 + type: Transform + - uid: 3306 + components: + - pos: 61.5,39.5 + parent: 2 + type: Transform + - uid: 3307 + components: + - pos: 62.5,39.5 + parent: 2 + type: Transform + - uid: 3308 + components: + - pos: 62.5,38.5 + parent: 2 + type: Transform + - uid: 3309 + components: + - pos: 62.5,37.5 + parent: 2 + type: Transform + - uid: 3310 + components: + - pos: 62.5,36.5 + parent: 2 + type: Transform + - uid: 3311 + components: + - pos: 62.5,34.5 + parent: 2 + type: Transform + - uid: 3312 + components: + - pos: 62.5,33.5 + parent: 2 + type: Transform + - uid: 3313 + components: + - pos: 62.5,32.5 + parent: 2 + type: Transform + - uid: 3314 + components: + - pos: 62.5,35.5 + parent: 2 + type: Transform + - uid: 3335 + components: + - pos: 50.5,49.5 + parent: 2 + type: Transform + - uid: 3336 + components: + - pos: 51.5,49.5 + parent: 2 + type: Transform + - uid: 3337 + components: + - pos: 52.5,49.5 + parent: 2 + type: Transform + - uid: 3338 + components: + - pos: 53.5,49.5 + parent: 2 + type: Transform + - uid: 3339 + components: + - pos: 55.5,49.5 + parent: 2 + type: Transform + - uid: 3340 + components: + - pos: 54.5,49.5 + parent: 2 + type: Transform + - uid: 3343 + components: + - pos: 57.5,49.5 + parent: 2 + type: Transform + - uid: 3344 + components: + - pos: 58.5,49.5 + parent: 2 + type: Transform + - uid: 3345 + components: + - pos: 59.5,49.5 + parent: 2 + type: Transform + - uid: 3346 + components: + - pos: 60.5,49.5 + parent: 2 + type: Transform + - uid: 3347 + components: + - pos: 61.5,49.5 + parent: 2 + type: Transform + - uid: 3348 + components: + - pos: 62.5,49.5 + parent: 2 + type: Transform + - uid: 3389 + components: + - pos: 64.5,49.5 + parent: 2 + type: Transform + - uid: 3390 + components: + - pos: 64.5,48.5 + parent: 2 + type: Transform + - uid: 3391 + components: + - pos: 65.5,48.5 + parent: 2 + type: Transform + - uid: 3392 + components: + - pos: 66.5,48.5 + parent: 2 + type: Transform + - uid: 3393 + components: + - pos: 67.5,48.5 + parent: 2 + type: Transform + - uid: 3394 + components: + - pos: 67.5,47.5 + parent: 2 + type: Transform + - uid: 3395 + components: + - pos: 68.5,47.5 + parent: 2 + type: Transform + - uid: 3397 + components: + - pos: 72.5,46.5 + parent: 2 + type: Transform + - uid: 3398 + components: + - pos: 73.5,46.5 + parent: 2 + type: Transform + - uid: 3399 + components: + - pos: 74.5,46.5 + parent: 2 + type: Transform + - uid: 3400 + components: + - pos: 74.5,44.5 + parent: 2 + type: Transform + - uid: 3401 + components: + - pos: 73.5,44.5 + parent: 2 + type: Transform + - uid: 3402 + components: + - pos: 72.5,44.5 + parent: 2 + type: Transform + - uid: 3479 + components: + - pos: 48.5,17.5 + parent: 2 + type: Transform + - uid: 3480 + components: + - pos: 48.5,19.5 + parent: 2 + type: Transform + - uid: 3499 + components: + - pos: 54.5,26.5 + parent: 2 + type: Transform + - uid: 3500 + components: + - pos: 55.5,26.5 + parent: 2 + type: Transform + - uid: 3501 + components: + - pos: 55.5,27.5 + parent: 2 + type: Transform + - uid: 3502 + components: + - pos: 57.5,27.5 + parent: 2 + type: Transform + - uid: 3503 + components: + - pos: 57.5,26.5 + parent: 2 + type: Transform + - uid: 3504 + components: + - pos: 58.5,26.5 + parent: 2 + type: Transform + - uid: 3594 + components: + - pos: 90.5,-6.5 + parent: 2 + type: Transform + - uid: 3612 + components: + - pos: 88.5,-5.5 + parent: 2 + type: Transform + - uid: 3613 + components: + - pos: 88.5,-4.5 + parent: 2 + type: Transform + - uid: 3618 + components: + - pos: 75.5,17.5 + parent: 2 + type: Transform + - uid: 3619 + components: + - pos: 75.5,16.5 + parent: 2 + type: Transform + - uid: 3620 + components: + - pos: 77.5,13.5 + parent: 2 + type: Transform + - uid: 3621 + components: + - pos: 75.5,15.5 + parent: 2 + type: Transform + - uid: 3622 + components: + - pos: 78.5,13.5 + parent: 2 + type: Transform + - uid: 3623 + components: + - pos: 79.5,13.5 + parent: 2 + type: Transform + - uid: 3624 + components: + - pos: 80.5,13.5 + parent: 2 + type: Transform + - uid: 3705 + components: + - pos: 91.5,-6.5 + parent: 2 + type: Transform + - uid: 3706 + components: + - pos: 90.5,0.5 + parent: 2 + type: Transform + - uid: 3707 + components: + - pos: 90.5,1.5 + parent: 2 + type: Transform + - uid: 3803 + components: + - pos: 82.5,-8.5 + parent: 2 + type: Transform + - uid: 3804 + components: + - pos: 81.5,-8.5 + parent: 2 + type: Transform + - uid: 3805 + components: + - pos: 80.5,-8.5 + parent: 2 + type: Transform + - uid: 3806 + components: + - pos: 79.5,-8.5 + parent: 2 + type: Transform + - uid: 3865 + components: + - pos: 73.5,-17.5 + parent: 2 + type: Transform + - uid: 3866 + components: + - pos: 74.5,-17.5 + parent: 2 + type: Transform + - uid: 3867 + components: + - pos: 75.5,-17.5 + parent: 2 + type: Transform + - uid: 3868 + components: + - pos: 76.5,-17.5 + parent: 2 + type: Transform + - uid: 3869 + components: + - pos: 77.5,-17.5 + parent: 2 + type: Transform + - uid: 3870 + components: + - pos: 78.5,-17.5 + parent: 2 + type: Transform + - uid: 3871 + components: + - pos: 80.5,-17.5 + parent: 2 + type: Transform + - uid: 3872 + components: + - pos: 79.5,-17.5 + parent: 2 + type: Transform + - uid: 3873 + components: + - pos: 81.5,-17.5 + parent: 2 + type: Transform + - uid: 3874 + components: + - pos: 82.5,-17.5 + parent: 2 + type: Transform + - uid: 3875 + components: + - pos: 83.5,-17.5 + parent: 2 + type: Transform + - uid: 3876 + components: + - pos: 84.5,-17.5 + parent: 2 + type: Transform + - uid: 3877 + components: + - pos: 85.5,-17.5 + parent: 2 + type: Transform + - uid: 3878 + components: + - pos: 86.5,-17.5 + parent: 2 + type: Transform + - uid: 4086 + components: + - pos: 33.5,-35.5 + parent: 2 + type: Transform + - uid: 4252 + components: + - pos: 24.5,-27.5 + parent: 2 + type: Transform + - uid: 4253 + components: + - pos: 28.5,-27.5 + parent: 2 + type: Transform + - uid: 4292 + components: + - pos: 36.5,-26.5 + parent: 2 + type: Transform + - uid: 4297 + components: + - pos: 33.5,-28.5 + parent: 2 + type: Transform + - uid: 4327 + components: + - pos: 33.5,-43.5 + parent: 2 + type: Transform + - uid: 4328 + components: + - pos: 33.5,-42.5 + parent: 2 + type: Transform + - uid: 4370 + components: + - pos: 37.5,-36.5 + parent: 2 + type: Transform + - uid: 4371 + components: + - pos: 37.5,-35.5 + parent: 2 + type: Transform + - uid: 4372 + components: + - pos: 37.5,-34.5 + parent: 2 + type: Transform + - uid: 4393 + components: + - pos: 31.5,-45.5 + parent: 2 + type: Transform + - uid: 4394 + components: + - pos: 32.5,-45.5 + parent: 2 + type: Transform + - uid: 4397 + components: + - pos: 41.5,-35.5 + parent: 2 + type: Transform + - uid: 4398 + components: + - pos: 41.5,-34.5 + parent: 2 + type: Transform + - uid: 4399 + components: + - pos: 41.5,-33.5 + parent: 2 + type: Transform + - uid: 4400 + components: + - pos: 41.5,-32.5 + parent: 2 + type: Transform + - uid: 4401 + components: + - pos: 41.5,-31.5 + parent: 2 + type: Transform + - uid: 4402 + components: + - pos: 41.5,-30.5 + parent: 2 + type: Transform + - uid: 4403 + components: + - pos: 41.5,-29.5 + parent: 2 + type: Transform + - uid: 4404 + components: + - pos: 41.5,-28.5 + parent: 2 + type: Transform + - uid: 4405 + components: + - pos: 41.5,-27.5 + parent: 2 + type: Transform + - uid: 4406 + components: + - pos: 41.5,-26.5 + parent: 2 + type: Transform + - uid: 4408 + components: + - pos: 41.5,-25.5 + parent: 2 + type: Transform + - uid: 4409 + components: + - pos: 41.5,-24.5 + parent: 2 + type: Transform + - uid: 4410 + components: + - pos: 41.5,-23.5 + parent: 2 + type: Transform + - uid: 4411 + components: + - pos: 41.5,-22.5 + parent: 2 + type: Transform + - uid: 4412 + components: + - pos: 42.5,-36.5 + parent: 2 + type: Transform + - uid: 4413 + components: + - pos: 43.5,-36.5 + parent: 2 + type: Transform + - uid: 4414 + components: + - pos: 44.5,-36.5 + parent: 2 + type: Transform + - uid: 4415 + components: + - pos: 45.5,-36.5 + parent: 2 + type: Transform + - uid: 4416 + components: + - pos: 46.5,-36.5 + parent: 2 + type: Transform + - uid: 4452 + components: + - pos: 33.5,-44.5 + parent: 2 + type: Transform + - uid: 4482 + components: + - rot: 3.141592653589793 rad + pos: 47.5,-40.5 + parent: 2 + type: Transform + - uid: 4483 + components: + - rot: 3.141592653589793 rad + pos: 47.5,-39.5 + parent: 2 + type: Transform + - uid: 4484 + components: + - rot: 3.141592653589793 rad + pos: 47.5,-38.5 + parent: 2 + type: Transform + - uid: 4485 + components: + - rot: 3.141592653589793 rad + pos: 47.5,-37.5 + parent: 2 + type: Transform + - uid: 4812 + components: + - pos: -13.5,-10.5 + parent: 2 + type: Transform + - uid: 5016 + components: + - pos: 49.5,-3.5 + parent: 2 + type: Transform + - uid: 5017 + components: + - pos: 54.5,-3.5 + parent: 2 + type: Transform + - uid: 5021 + components: + - pos: 55.5,-8.5 + parent: 2 + type: Transform + - uid: 5022 + components: + - pos: 57.5,-8.5 + parent: 2 + type: Transform + - uid: 5094 + components: + - pos: 67.5,-2.5 + parent: 2 + type: Transform + - uid: 5095 + components: + - pos: 66.5,-2.5 + parent: 2 + type: Transform + - uid: 5096 + components: + - pos: 65.5,-2.5 + parent: 2 + type: Transform + - uid: 5097 + components: + - pos: 64.5,-2.5 + parent: 2 + type: Transform + - uid: 5102 + components: + - pos: 59.5,26.5 + parent: 2 + type: Transform + - uid: 5289 + components: + - pos: 4.5,19.5 + parent: 2 + type: Transform + - uid: 5293 + components: + - pos: 2.5,2.5 + parent: 2 + type: Transform + - uid: 5295 + components: + - pos: 2.5,3.5 + parent: 2 + type: Transform + - uid: 5357 + components: + - pos: 1.5,1.5 + parent: 2 + type: Transform + - uid: 5358 + components: + - pos: 2.5,4.5 + parent: 2 + type: Transform + - uid: 5417 + components: + - pos: 43.5,-41.5 + parent: 2 + type: Transform + - uid: 5434 + components: + - pos: 41.5,-41.5 + parent: 2 + type: Transform + - uid: 5435 + components: + - pos: 39.5,-41.5 + parent: 2 + type: Transform + - uid: 5489 + components: + - pos: 72.5,33.5 + parent: 2 + type: Transform + - uid: 5490 + components: + - pos: 72.5,32.5 + parent: 2 + type: Transform + - uid: 5491 + components: + - pos: 72.5,31.5 + parent: 2 + type: Transform + - uid: 5492 + components: + - pos: 72.5,29.5 + parent: 2 + type: Transform + - uid: 5493 + components: + - pos: 72.5,28.5 + parent: 2 + type: Transform + - uid: 5494 + components: + - pos: 72.5,27.5 + parent: 2 + type: Transform + - uid: 5677 + components: + - pos: -20.5,-10.5 + parent: 2 + type: Transform + - uid: 6113 + components: + - pos: 8.5,-40.5 + parent: 2 + type: Transform + - uid: 6114 + components: + - pos: 8.5,-39.5 + parent: 2 + type: Transform + - uid: 6115 + components: + - pos: 9.5,-39.5 + parent: 2 + type: Transform + - uid: 6116 + components: + - pos: 10.5,-39.5 + parent: 2 + type: Transform + - uid: 6117 + components: + - pos: 11.5,-39.5 + parent: 2 + type: Transform + - uid: 6118 + components: + - pos: 12.5,-39.5 + parent: 2 + type: Transform + - uid: 6134 + components: + - pos: 8.5,-42.5 + parent: 2 + type: Transform + - uid: 6135 + components: + - pos: 8.5,-43.5 + parent: 2 + type: Transform + - uid: 6136 + components: + - pos: 9.5,-43.5 + parent: 2 + type: Transform + - uid: 6137 + components: + - pos: 11.5,-43.5 + parent: 2 + type: Transform + - uid: 6140 + components: + - pos: 12.5,-42.5 + parent: 2 + type: Transform + - uid: 6483 + components: + - pos: 45.5,-2.5 + parent: 2 + type: Transform + - uid: 6485 + components: + - pos: 42.5,-2.5 + parent: 2 + type: Transform + - uid: 6814 + components: + - pos: -11.5,-10.5 + parent: 2 + type: Transform + - uid: 6815 + components: + - pos: -18.5,-15.5 + parent: 2 + type: Transform + - uid: 6821 + components: + - pos: -18.5,-10.5 + parent: 2 + type: Transform + - uid: 6840 + components: + - pos: -1.5,1.5 + parent: 2 + type: Transform + - uid: 6841 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 2 + type: Transform + - uid: 6857 + components: + - pos: -5.5,2.5 + parent: 2 + type: Transform + - uid: 6896 + components: + - pos: -20.5,-15.5 + parent: 2 + type: Transform + - uid: 7664 + components: + - pos: -5.5,1.5 + parent: 2 + type: Transform + - uid: 7765 + components: + - pos: 24.5,38.5 + parent: 2 + type: Transform + - uid: 8736 + components: + - pos: 92.5,-17.5 + parent: 2 + type: Transform + - uid: 8737 + components: + - pos: 93.5,-17.5 + parent: 2 + type: Transform + - uid: 8738 + components: + - pos: 94.5,-17.5 + parent: 2 + type: Transform + - uid: 8739 + components: + - pos: 95.5,-17.5 + parent: 2 + type: Transform + - uid: 8740 + components: + - pos: 96.5,-17.5 + parent: 2 + type: Transform + - uid: 8741 + components: + - pos: 97.5,-17.5 + parent: 2 + type: Transform + - uid: 8742 + components: + - pos: 98.5,-17.5 + parent: 2 + type: Transform + - uid: 8743 + components: + - pos: 98.5,-22.5 + parent: 2 + type: Transform + - uid: 8744 + components: + - pos: 97.5,-22.5 + parent: 2 + type: Transform + - uid: 8745 + components: + - pos: 96.5,-22.5 + parent: 2 + type: Transform + - uid: 8746 + components: + - pos: 95.5,-22.5 + parent: 2 + type: Transform + - uid: 8747 + components: + - pos: 94.5,-22.5 + parent: 2 + type: Transform + - uid: 8748 + components: + - pos: 93.5,-22.5 + parent: 2 + type: Transform + - uid: 8749 + components: + - pos: 92.5,-22.5 + parent: 2 + type: Transform + - uid: 8787 + components: + - pos: 99.5,-17.5 + parent: 2 + type: Transform + - uid: 8788 + components: + - pos: 100.5,-17.5 + parent: 2 + type: Transform + - uid: 8789 + components: + - pos: 99.5,-22.5 + parent: 2 + type: Transform + - uid: 8790 + components: + - pos: 100.5,-22.5 + parent: 2 + type: Transform + - uid: 8802 + components: + - pos: 105.5,-25.5 + parent: 2 + type: Transform + - uid: 8803 + components: + - pos: 106.5,-25.5 + parent: 2 + type: Transform + - uid: 8804 + components: + - pos: 107.5,-25.5 + parent: 2 + type: Transform + - uid: 8808 + components: + - pos: 105.5,-20.5 + parent: 2 + type: Transform + - uid: 8809 + components: + - pos: 107.5,-20.5 + parent: 2 + type: Transform + - uid: 8839 + components: + - pos: 105.5,-14.5 + parent: 2 + type: Transform + - uid: 8840 + components: + - pos: 107.5,-14.5 + parent: 2 + type: Transform + - uid: 8845 + components: + - pos: 105.5,-9.5 + parent: 2 + type: Transform + - uid: 8846 + components: + - pos: 106.5,-9.5 + parent: 2 + type: Transform + - uid: 8847 + components: + - pos: 107.5,-9.5 + parent: 2 + type: Transform + - uid: 8879 + components: + - pos: 111.5,-20.5 + parent: 2 + type: Transform + - uid: 8880 + components: + - pos: 112.5,-20.5 + parent: 2 + type: Transform + - uid: 8881 + components: + - pos: 114.5,-20.5 + parent: 2 + type: Transform + - uid: 8882 + components: + - pos: 115.5,-20.5 + parent: 2 + type: Transform + - uid: 8942 + components: + - pos: 111.5,-14.5 + parent: 2 + type: Transform + - uid: 8943 + components: + - pos: 112.5,-14.5 + parent: 2 + type: Transform + - uid: 8944 + components: + - pos: 114.5,-14.5 + parent: 2 + type: Transform + - uid: 8945 + components: + - pos: 115.5,-14.5 + parent: 2 + type: Transform + - uid: 8956 + components: + - pos: 116.5,-15.5 + parent: 2 + type: Transform + - uid: 8957 + components: + - pos: 116.5,-16.5 + parent: 2 + type: Transform + - uid: 8958 + components: + - pos: 116.5,-18.5 + parent: 2 + type: Transform + - uid: 8959 + components: + - pos: 116.5,-19.5 + parent: 2 + type: Transform + - uid: 9571 + components: + - pos: 6.5,19.5 + parent: 2 + type: Transform + - uid: 10085 + components: + - pos: 60.5,26.5 + parent: 2 + type: Transform + - uid: 10086 + components: + - pos: 52.5,25.5 + parent: 2 + type: Transform + - uid: 10087 + components: + - pos: 52.5,23.5 + parent: 2 + type: Transform + - uid: 10123 + components: + - pos: 21.5,24.5 + parent: 2 + type: Transform + - uid: 10124 + components: + - pos: 21.5,23.5 + parent: 2 + type: Transform + - uid: 10125 + components: + - pos: 53.5,-0.5 + parent: 2 + type: Transform + - uid: 10126 + components: + - pos: 52.5,1.5 + parent: 2 + type: Transform + - uid: 12979 + components: + - pos: 43.5,-49.5 + parent: 2 + type: Transform + - uid: 12982 + components: + - pos: 42.5,-49.5 + parent: 2 + type: Transform + - uid: 12983 + components: + - pos: 41.5,-49.5 + parent: 2 + type: Transform +- proto: RemoteSignaller + entities: + - uid: 9222 + components: + - pos: 19.330996,46.803196 + parent: 2 + type: Transform +- proto: ResearchAndDevelopmentServer + entities: + - uid: 8233 + components: + - pos: 49.5,25.5 + parent: 2 + type: Transform +- proto: Retractor + entities: + - uid: 6808 + components: + - pos: 66.55991,-3.281434 + parent: 2 + type: Transform +- proto: RiotShield + entities: + - uid: 8428 + components: + - pos: 38.223476,28.307878 + parent: 2 + type: Transform + - uid: 8429 + components: + - pos: 38.223476,28.307878 + parent: 2 + type: Transform +- proto: RockGuitarInstrument + entities: + - uid: 9741 + components: + - pos: 19.5661,-11.900069 + parent: 2 + type: Transform +- proto: SalvageMagnet + entities: + - uid: 4811 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,16.5 + parent: 2 + type: Transform +- proto: SalvageMagnetMachineCircuitboard + entities: + - uid: 12363 + components: + - pos: 35.466457,-17.345016 + parent: 2 + type: Transform +- proto: Saw + entities: + - uid: 12333 + components: + - pos: 57.474747,-14.628655 + parent: 2 + type: Transform +- proto: SawElectric + entities: + - uid: 5210 + components: + - pos: 67.45054,-4.453309 + parent: 2 + type: Transform + - uid: 5395 + components: + - pos: 55.53906,10.407994 + parent: 2 + type: Transform +- proto: Scalpel + entities: + - uid: 5137 + components: + - pos: 74.5,-0.5 + parent: 2 + type: Transform + - uid: 5394 + components: + - pos: 55.523434,10.407994 + parent: 2 + type: Transform + - uid: 10073 + components: + - pos: 66.473175,-3.547059 + parent: 2 + type: Transform +- proto: Screwdriver + entities: + - uid: 5074 + components: + - pos: 52.237762,-7.56545 + parent: 2 + type: Transform + - uid: 11132 + components: + - pos: 57.5176,-14.309467 + parent: 2 + type: Transform +- proto: SecurityTechFab + entities: + - uid: 1831 + components: + - pos: 38.5,24.5 + parent: 2 + type: Transform +- proto: SeedExtractor + entities: + - uid: 2305 + components: + - pos: 38.5,36.5 + parent: 2 + type: Transform + - uid: 6677 + components: + - pos: 45.5,-4.5 + parent: 2 + type: Transform +- proto: ShardGlass + entities: + - uid: 10809 + components: + - pos: 89.55373,-21.433664 + parent: 2 + type: Transform + - uid: 10810 + components: + - pos: 90.27248,-20.82429 + parent: 2 + type: Transform +- proto: SheetGlass + entities: + - uid: 784 + components: + - flags: InContainer + type: MetaData + - parent: 5625 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 1648 + components: + - pos: 33.519444,-17.381672 + parent: 2 + type: Transform + - uid: 5327 + components: + - pos: 56.186665,17.583338 + parent: 2 + type: Transform + - uid: 5328 + components: + - pos: 56.186665,17.583338 + parent: 2 + type: Transform + - uid: 5329 + components: + - pos: 56.186665,17.583338 + parent: 2 + type: Transform + - uid: 5636 + components: + - pos: 16.999237,-26.465462 + parent: 2 + type: Transform + - uid: 5640 + components: + - pos: 16.999237,-26.465462 + parent: 2 + type: Transform + - uid: 10311 + components: + - pos: 8.421515,-6.356274 + parent: 2 + type: Transform +- proto: SheetPlasma + entities: + - uid: 2129 + components: + - flags: InContainer + type: MetaData + - parent: 5625 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 7529 + components: + - pos: 71.06963,13.620979 + parent: 2 + type: Transform +- proto: SheetPlasteel + entities: + - uid: 1842 + components: + - flags: InContainer + type: MetaData + - parent: 5625 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5635 + components: + - pos: 17.5,-26.5 + parent: 2 + type: Transform + - uid: 10312 + components: + - pos: 8.609015,-6.340649 + parent: 2 + type: Transform +- proto: SheetPlastic + entities: + - uid: 5333 + components: + - pos: 56.436665,17.505213 + parent: 2 + type: Transform + - uid: 5334 + components: + - pos: 56.436665,17.505213 + parent: 2 + type: Transform + - uid: 5335 + components: + - pos: 56.436665,17.505213 + parent: 2 + type: Transform +- proto: SheetSteel + entities: + - uid: 1239 + components: + - flags: InContainer + type: MetaData + - parent: 5625 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 1789 + components: + - pos: 33.507664,-17.468887 + parent: 2 + type: Transform + - uid: 5330 + components: + - pos: 56.63979,17.598963 + parent: 2 + type: Transform + - uid: 5331 + components: + - pos: 56.63979,17.598963 + parent: 2 + type: Transform + - uid: 5332 + components: + - pos: 56.63979,17.598963 + parent: 2 + type: Transform + - uid: 5383 + components: + - pos: 50.524685,8.532994 + parent: 2 + type: Transform + - uid: 5384 + components: + - pos: 50.524685,8.532994 + parent: 2 + type: Transform + - uid: 5385 + components: + - pos: 50.524685,8.532994 + parent: 2 + type: Transform + - uid: 5633 + components: + - pos: 16.5,-26.5 + parent: 2 + type: Transform + - uid: 5634 + components: + - pos: 16.5,-26.5 + parent: 2 + type: Transform + - uid: 7271 + components: + - pos: 30.5,-30.5 + parent: 2 + type: Transform + - uid: 7272 + components: + - pos: 30.5,-30.5 + parent: 2 + type: Transform + - uid: 10313 + components: + - pos: 8.53089,-6.434399 + parent: 2 + type: Transform +- proto: SheetSteel1 + entities: + - uid: 4672 + components: + - pos: 90.36041,-10.650079 + parent: 2 + type: Transform + - uid: 6720 + components: + - pos: 90.60682,-10.582865 + parent: 2 + type: Transform + - uid: 6721 + components: + - pos: 90.45002,-10.358817 + parent: 2 + type: Transform +- proto: SheetUranium + entities: + - uid: 1460 + components: + - flags: InContainer + type: MetaData + - parent: 5625 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: Shovel + entities: + - uid: 8254 + components: + - pos: 9.453524,15.534067 + parent: 2 + type: Transform +- proto: ShuttersNormal + entities: + - uid: 5268 + components: + - pos: 44.5,12.5 + parent: 2 + type: Transform + - links: + - 10322 + type: DeviceLinkSink + - uid: 6513 + components: + - pos: 46.5,-11.5 + parent: 2 + type: Transform + - links: + - 6749 + type: DeviceLinkSink + - uid: 6514 + components: + - pos: 47.5,-11.5 + parent: 2 + type: Transform + - links: + - 6513 + - 6749 + type: DeviceLinkSink +- proto: ShuttersNormalOpen + entities: + - uid: 265 + components: + - pos: 34.5,-8.5 + parent: 2 + type: Transform + - links: + - 1471 + type: DeviceLinkSink + - uid: 267 + components: + - pos: 35.5,-8.5 + parent: 2 + type: Transform + - links: + - 1471 + type: DeviceLinkSink + - uid: 270 + components: + - pos: 36.5,-8.5 + parent: 2 + type: Transform + - links: + - 1471 + type: DeviceLinkSink + - uid: 320 + components: + - pos: 8.5,29.5 + parent: 2 + type: Transform + - links: + - 8163 + type: DeviceLinkSink + - uid: 419 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-7.5 + parent: 2 + type: Transform + - links: + - 1151 + type: DeviceLinkSink + - uid: 913 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-4.5 + parent: 2 + type: Transform + - links: + - 1151 + type: DeviceLinkSink + - uid: 1154 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-3.5 + parent: 2 + type: Transform + - links: + - 1151 + type: DeviceLinkSink + - uid: 1658 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-6.5 + parent: 2 + type: Transform + - links: + - 1151 + type: DeviceLinkSink + - uid: 2087 + components: + - pos: 28.5,17.5 + parent: 2 + type: Transform + - links: + - 12825 + type: DeviceLinkSink + - uid: 2831 + components: + - pos: 9.5,29.5 + parent: 2 + type: Transform + - links: + - 8163 + type: DeviceLinkSink + - uid: 2990 + components: + - pos: 50.5,1.5 + parent: 2 + type: Transform + - links: + - 8288 + type: DeviceLinkSink + - uid: 6512 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-5.5 + parent: 2 + type: Transform + - links: + - 1151 + type: DeviceLinkSink + - uid: 12424 + components: + - pos: 49.5,1.5 + parent: 2 + type: Transform + - links: + - 8288 + type: DeviceLinkSink + - uid: 12425 + components: + - pos: 51.5,1.5 + parent: 2 + type: Transform + - links: + - 8288 + type: DeviceLinkSink + - uid: 12822 + components: + - pos: 28.5,20.5 + parent: 2 + type: Transform + - links: + - 12826 + type: DeviceLinkSink + - uid: 12823 + components: + - rot: 3.141592653589793 rad + pos: 28.5,18.5 + parent: 2 + type: Transform + - links: + - 12825 + type: DeviceLinkSink + - uid: 12824 + components: + - rot: 3.141592653589793 rad + pos: 28.5,21.5 + parent: 2 + type: Transform + - links: + - 12826 + type: DeviceLinkSink +- proto: ShuttersRadiationOpen + entities: + - uid: 779 + components: + - pos: 19.5,-37.5 + parent: 2 + type: Transform + - links: + - 1025 + type: DeviceLinkSink + - uid: 780 + components: + - pos: 20.5,-37.5 + parent: 2 + type: Transform + - links: + - 1025 + type: DeviceLinkSink + - uid: 4502 + components: + - pos: 22.5,-37.5 + parent: 2 + type: Transform + - links: + - 1025 + type: DeviceLinkSink + - uid: 4503 + components: + - pos: 23.5,-37.5 + parent: 2 + type: Transform + - links: + - 1025 + type: DeviceLinkSink +- proto: SignAi + entities: + - uid: 12242 + components: + - rot: 3.141592653589793 rad + pos: 57.5,28.5 + parent: 2 + type: Transform +- proto: SignalButton + entities: + - uid: 202 + components: + - pos: 37.5,-29.5 + parent: 2 + type: Transform + - linkedPorts: + 55: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 374 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,28.5 + parent: 2 + type: Transform + - linkedPorts: + 7462: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 1025 + components: + - name: Radiation Shutters + type: MetaData + - rot: 3.141592653589793 rad + pos: 18.5,-37.5 + parent: 2 + type: Transform + - linkedPorts: + 779: + - Pressed: Toggle + 780: + - Pressed: Toggle + 4502: + - Pressed: Toggle + 4503: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 1151 + components: + - name: Bar Shutters + type: MetaData + - pos: 40.15871,-2.7952938 + parent: 2 + type: Transform + - linkedPorts: + 1154: + - Pressed: Toggle + 913: + - Pressed: Toggle + 6512: + - Pressed: Toggle + 1658: + - Pressed: Toggle + 419: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 1471 + components: + - name: Kitchen Counter Shutters + type: MetaData + - pos: 32.5,-9.5 + parent: 2 + type: Transform + - linkedPorts: + 265: + - Pressed: Toggle + 267: + - Pressed: Toggle + 270: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 4245 + components: + - pos: 37.5,-33.5 + parent: 2 + type: Transform + - linkedPorts: + 4257: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 5685 + components: + - name: Engineering Secure Storage Button + type: MetaData + - pos: 12.5,-25.5 + parent: 2 + type: Transform + - linkedPorts: + 2834: + - Pressed: Toggle + 2835: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 6749 + components: + - name: Pen Maints Hatch + type: MetaData + - rot: -1.5707963267948966 rad + pos: 48.5,-9.5 + parent: 2 + type: Transform + - linkedPorts: + 6513: + - Pressed: Toggle + 6514: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 6856 + components: + - name: Conveyor Blast Door + type: MetaData + - rot: 3.141592653589793 rad + pos: 7.5,14.5 + parent: 2 + type: Transform + - linkedPorts: + 7618: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 7463 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,22.5 + parent: 2 + type: Transform + - linkedPorts: + 384: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 8163 + components: + - pos: 10.5,29.5 + parent: 2 + type: Transform + - linkedPorts: + 2831: + - Pressed: Toggle + 320: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 8288 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,2.5 + parent: 2 + type: Transform + - linkedPorts: + 12424: + - Pressed: Toggle + 2990: + - Pressed: Toggle + 12425: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 10321 + components: + - pos: 48.5,12.5 + parent: 2 + type: Transform + - linkedPorts: + 150: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 12825 + components: + - pos: 31.772217,19.196745 + parent: 2 + type: Transform + - linkedPorts: + 2087: + - Pressed: Toggle + 12823: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 12826 + components: + - pos: 31.756592,22.24362 + parent: 2 + type: Transform + - linkedPorts: + 12822: + - Pressed: Toggle + 12824: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SignAnomaly + entities: + - uid: 7376 + components: + - pos: 61.5,25.5 + parent: 2 + type: Transform +- proto: SignAnomaly2 + entities: + - uid: 6475 + components: + - pos: 65.5,13.5 + parent: 2 + type: Transform +- proto: SignArmory + entities: + - uid: 11210 + components: + - pos: 42.47835,25.502422 + parent: 2 + type: Transform +- proto: SignAtmos + entities: + - uid: 4575 + components: + - pos: 28.5,-26.5 + parent: 2 + type: Transform +- proto: SignAtmosMinsky + entities: + - uid: 4574 + components: + - pos: 37.5,-38.5 + parent: 2 + type: Transform +- proto: SignBar + entities: + - uid: 11198 + components: + - pos: 36.515213,-1.5077809 + parent: 2 + type: Transform +- proto: SignBiohazardMed + entities: + - uid: 12243 + components: + - rot: 3.141592653589793 rad + pos: 76.5,0.5 + parent: 2 + type: Transform +- proto: SignCanisters + entities: + - uid: 5153 + components: + - pos: 41.5,-36.5 + parent: 2 + type: Transform +- proto: SignCargo + entities: + - uid: 11211 + components: + - pos: 22.44822,19.533756 + parent: 2 + type: Transform +- proto: SignCargoDock + entities: + - uid: 11212 + components: + - pos: 6.565961,21.533756 + parent: 2 + type: Transform +- proto: SignChapel + entities: + - uid: 11193 + components: + - pos: 39.519363,4.4919653 + parent: 2 + type: Transform +- proto: SignChemistry1 + entities: + - uid: 6817 + components: + - pos: 51.5,-2.5 + parent: 2 + type: Transform +- proto: SignConference + entities: + - uid: 11192 + components: + - pos: 25.484035,39.437214 + parent: 2 + type: Transform +- proto: SignCryogenicsMed + entities: + - uid: 11804 + components: + - pos: 63.5,-0.5 + parent: 2 + type: Transform +- proto: SignDangerMed + entities: + - uid: 10436 + components: + - pos: 61.5,26.5 + parent: 2 + type: Transform +- proto: SignDirectionalBridge + entities: + - uid: 7329 + components: + - rot: 3.141592653589793 rad + pos: 24.503027,16.714216 + parent: 2 + type: Transform + - uid: 8119 + components: + - rot: 3.141592653589793 rad + pos: 7.4992805,2.707316 + parent: 2 + type: Transform + - uid: 11181 + components: + - rot: 3.141592653589793 rad + pos: 28.54057,12.41816 + parent: 2 + type: Transform +- proto: SignDirectionalBrig + entities: + - uid: 12270 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,31.5 + parent: 2 + type: Transform +- proto: SignDirectionalDorms + entities: + - uid: 40 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,11.5 + parent: 2 + type: Transform +- proto: SignDirectionalEng + entities: + - uid: 11817 + components: + - pos: 28.5037,2.3089128 + parent: 2 + type: Transform +- proto: SignDirectionalEvac + entities: + - uid: 1936 + components: + - rot: 3.141592653589793 rad + pos: -6.5,1.5 + parent: 2 + type: Transform + - uid: 7848 + components: + - rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 2 + type: Transform + - uid: 7894 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 2 + type: Transform + - uid: 8120 + components: + - rot: -1.5707963267948966 rad + pos: 7.4992805,2.2952788 + parent: 2 + type: Transform + - uid: 11806 + components: + - rot: -1.5707963267948966 rad + pos: 24.498083,2.3033948 + parent: 2 + type: Transform +- proto: SignDirectionalHop + entities: + - uid: 11809 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,2.5 + parent: 2 + type: Transform +- proto: SignDirectionalLibrary + entities: + - uid: 11816 + components: + - rot: -1.5707963267948966 rad + pos: 24.498083,2.6830244 + parent: 2 + type: Transform +- proto: SignDirectionalMed + entities: + - uid: 8118 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,2.5 + parent: 2 + type: Transform + - uid: 11184 + components: + - pos: 39.55419,12.695712 + parent: 2 + type: Transform + - uid: 11813 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,2.5 + parent: 2 + type: Transform + - uid: 11853 + components: + - rot: 1.5707963267948966 rad + pos: 39.50202,2.3010597 + parent: 2 + type: Transform +- proto: SignDirectionalSci + entities: + - uid: 11182 + components: + - rot: 1.5707963267948966 rad + pos: 28.5195,12.147359 + parent: 2 + type: Transform + - uid: 11188 + components: + - rot: 1.5707963267948966 rad + pos: 39.557316,12.409777 + parent: 2 + type: Transform + - uid: 11812 + components: + - rot: 1.5707963267948966 rad + pos: 28.505745,2.6978016 + parent: 2 + type: Transform + - uid: 11851 + components: + - rot: 3.141592653589793 rad + pos: 39.5,2.5 + parent: 2 + type: Transform +- proto: SignDirectionalSec + entities: + - uid: 5416 + components: + - rot: 1.5707963267948966 rad + pos: 7.4984922,11.283884 + parent: 2 + type: Transform + - uid: 7327 + components: + - rot: 3.141592653589793 rad + pos: 24.5,16.5 + parent: 2 + type: Transform + - uid: 11180 + components: + - rot: 3.141592653589793 rad + pos: 28.54057,12.66816 + parent: 2 + type: Transform + - uid: 11852 + components: + - rot: 3.141592653589793 rad + pos: 39.50202,2.708467 + parent: 2 + type: Transform +- proto: SignDirectionalSolar + entities: + - uid: 12297 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-24.5 + parent: 2 + type: Transform + - uid: 12298 + components: + - rot: 3.141592653589793 rad + pos: 68.5,19.5 + parent: 2 + type: Transform + - uid: 12299 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,45.5 + parent: 2 + type: Transform +- proto: SignDirectionalSupply + entities: + - uid: 5418 + components: + - rot: 1.5707963267948966 rad + pos: 7.4984922,11.714439 + parent: 2 + type: Transform + - uid: 7328 + components: + - rot: 3.141592653589793 rad + pos: 24.503027,16.29755 + parent: 2 + type: Transform +- proto: SignDirectionalWash + entities: + - uid: 11815 + components: + - rot: 3.141592653589793 rad + pos: 12.5,11.5 + parent: 2 + type: Transform +- proto: SignElectricalMed + entities: + - uid: 7 + components: + - pos: 14.5,32.5 + parent: 2 + type: Transform + - uid: 1599 + components: + - pos: 24.5,-40.5 + parent: 2 + type: Transform + - uid: 4874 + components: + - pos: 3.5,-33.5 + parent: 2 + type: Transform + - uid: 12351 + components: + - pos: 3.5,-8.5 + parent: 2 + type: Transform + - uid: 13003 + components: + - pos: 36.5,-41.5 + parent: 2 + type: Transform + - uid: 13004 + components: + - pos: 31.5,-49.5 + parent: 2 + type: Transform +- proto: SignEngine + entities: + - uid: 5157 + components: + - pos: 30.5,-37.5 + parent: 2 + type: Transform + - uid: 5301 + components: + - pos: 33.5,-40.5 + parent: 2 + type: Transform +- proto: SignEngineering + entities: + - uid: 5156 + components: + - pos: 24.5,-26.5 + parent: 2 + type: Transform +- proto: SignEscapePods + entities: + - uid: 5027 + components: + - pos: 85.5,3.5 + parent: 2 + type: Transform +- proto: SignEVA + entities: + - uid: 5204 + components: + - pos: 10.5,-2.5 + parent: 2 + type: Transform +- proto: SignExamroom + entities: + - uid: 12239 + components: + - rot: 3.141592653589793 rad + pos: 67.5,5.5 + parent: 2 + type: Transform + - uid: 12240 + components: + - rot: 3.141592653589793 rad + pos: 59.5,-8.5 + parent: 2 + type: Transform +- proto: SignFire + entities: + - uid: 12280 + components: + - rot: 1.5707963267948966 rad + pos: 65.5,26.5 + parent: 2 + type: Transform + - uid: 12993 + components: + - pos: 45.5,-49.5 + parent: 2 + type: Transform + - uid: 12994 + components: + - pos: 45.5,-43.5 + parent: 2 + type: Transform +- proto: SignFlammableMed + entities: + - uid: 1650 + components: + - pos: 33.5,-31.5 + parent: 2 + type: Transform + - uid: 10437 + components: + - pos: 61.5,27.5 + parent: 2 + type: Transform +- proto: SignGravity + entities: + - uid: 11199 + components: + - pos: 16.482166,37.47681 + parent: 2 + type: Transform +- proto: SignHead + entities: + - uid: 11814 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-2.5 + parent: 2 + type: Transform +- proto: SignHydro2 + entities: + - uid: 6651 + components: + - pos: 41.5,-2.5 + parent: 2 + type: Transform +- proto: SignHydro3 + entities: + - uid: 6648 + components: + - pos: 47.5,-2.5 + parent: 2 + type: Transform +- proto: SignInterrogation + entities: + - uid: 11209 + components: + - pos: 31.49329,27.493366 + parent: 2 + type: Transform +- proto: SignKiddiePlaque + entities: + - uid: 12282 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,2.5 + parent: 2 + type: Transform +- proto: SignLaserMed + entities: + - uid: 12289 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-43.5 + parent: 2 + type: Transform +- proto: SignLibrary + entities: + - uid: 11201 + components: + - pos: 7.478853,8.535535 + parent: 2 + type: Transform +- proto: SignMagneticsMed + entities: + - uid: 12283 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,18.5 + parent: 2 + type: Transform +- proto: SignMedical + entities: + - uid: 6788 + components: + - pos: 53.5,1.5 + parent: 2 + type: Transform +- proto: SignMinerDock + entities: + - uid: 7784 + components: + - pos: 6.5,18.5 + parent: 2 + type: Transform +- proto: SignMorgue + entities: + - uid: 11196 + components: + - pos: 71.560074,0.5078441 + parent: 2 + type: Transform +- proto: SignNosmoking + entities: + - uid: 10074 + components: + - pos: 68.5,-4.5 + parent: 2 + type: Transform + - uid: 11397 + components: + - pos: 65.5,-7.5 + parent: 2 + type: Transform +- proto: SignPlaque + entities: + - uid: 12281 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-6.5 + parent: 2 + type: Transform +- proto: SignPrison + entities: + - uid: 11208 + components: + - pos: 35.478874,29.508991 + parent: 2 + type: Transform +- proto: SignRadiationMed + entities: + - uid: 747 + components: + - pos: 18.5,-40.5 + parent: 2 + type: Transform + - uid: 4012 + components: + - pos: 24.5,-37.5 + parent: 2 + type: Transform +- proto: SignRND + entities: + - uid: 11190 + components: + - pos: 57.499714,16.503765 + parent: 2 + type: Transform + - uid: 12293 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,16.5 + parent: 2 + type: Transform +- proto: SignRobo + entities: + - uid: 12291 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,12.5 + parent: 2 + type: Transform + - uid: 12292 + components: + - rot: 1.5707963267948966 rad + pos: 56.5,12.5 + parent: 2 + type: Transform +- proto: SignScience + entities: + - uid: 11191 + components: + - pos: 48.50537,15.474182 + parent: 2 + type: Transform +- proto: SignSecurearea + entities: + - uid: 11939 + components: + - pos: 17.5,-15.5 + parent: 2 + type: Transform +- proto: SignSecureMed + entities: + - uid: 1518 + components: + - pos: 28.5,-25.5 + parent: 2 + type: Transform +- proto: SignSecurity + entities: + - uid: 12294 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,27.5 + parent: 2 + type: Transform +- proto: SignShipDock + entities: + - uid: 9306 + components: + - rot: 3.141592653589793 rad + pos: 57.5,51.5 + parent: 2 + type: Transform +- proto: SignShock + entities: + - uid: 8410 + components: + - pos: 42.5,30.5 + parent: 2 + type: Transform + - uid: 8411 + components: + - pos: 42.5,34.5 + parent: 2 + type: Transform + - uid: 11017 + components: + - pos: 42.5,-13.5 + parent: 2 + type: Transform + - uid: 11019 + components: + - pos: 20.5,38.5 + parent: 2 + type: Transform + - uid: 11020 + components: + - pos: 25.5,38.5 + parent: 2 + type: Transform + - uid: 11089 + components: + - pos: 28.5,22.5 + parent: 2 + type: Transform +- proto: SignSmoking + entities: + - uid: 5466 + components: + - pos: 68.5,38.5 + parent: 2 + type: Transform + - uid: 9721 + components: + - pos: 54.5,-2.5 + parent: 2 + type: Transform +- proto: SignSpace + entities: + - uid: 5397 + components: + - pos: 34.5,-37.5 + parent: 2 + type: Transform + - uid: 7562 + components: + - pos: 2.4978352,-16.484226 + parent: 2 + type: Transform + - uid: 7563 + components: + - pos: 5.529085,-16.484226 + parent: 2 + type: Transform + - uid: 10083 + components: + - pos: 62.5,29.5 + parent: 2 + type: Transform + - uid: 12992 + components: + - pos: 33.5,-48.5 + parent: 2 + type: Transform +- proto: SignSurgery + entities: + - uid: 11202 + components: + - pos: 63.483078,-4.4704685 + parent: 2 + type: Transform + - uid: 11203 + components: + - pos: 54.505295,-16.448315 + parent: 2 + type: Transform +- proto: SignTelecomms + entities: + - uid: 11206 + components: + - pos: 24.48286,-16.522787 + parent: 2 + type: Transform +- proto: SignToolStorage + entities: + - uid: 5704 + components: + - pos: 68.5,40.5 + parent: 2 + type: Transform + - uid: 11200 + components: + - pos: 28.472525,-18.512623 + parent: 2 + type: Transform + - uid: 12302 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-13.5 + parent: 2 + type: Transform +- proto: SignToxins2 + entities: + - uid: 12304 + components: + - rot: 1.5707963267948966 rad + pos: 59.5,12.5 + parent: 2 + type: Transform +- proto: SignVirology + entities: + - uid: 10909 + components: + - pos: 78.5,0.5 + parent: 2 + type: Transform +- proto: SingularityGenerator + entities: + - uid: 750 + components: + - pos: 12.5,-31.5 + parent: 2 + type: Transform + - uid: 11007 + components: + - pos: 21.5,-51.5 + parent: 2 + type: Transform +- proto: Sink + entities: + - uid: 1530 + components: + - pos: 11.5,13.5 + parent: 2 + type: Transform + - uid: 5276 + components: + - rot: 1.5707963267948966 rad + pos: 64.5,-6.5 + parent: 2 + type: Transform + - uid: 6932 + components: + - pos: 10.5,13.5 + parent: 2 + type: Transform + - uid: 7412 + components: + - pos: 78.5,-0.5 + parent: 2 + type: Transform + - uid: 7575 + components: + - rot: -1.5707963267948966 rad + pos: 53.5,-7.5 + parent: 2 + type: Transform + - uid: 10446 + components: + - pos: 51.5,15.5 + parent: 2 + type: Transform + - uid: 10853 + components: + - rot: 3.141592653589793 rad + pos: 103.5,-13.5 + parent: 2 + type: Transform + - uid: 11406 + components: + - pos: 65.5,-8.5 + parent: 2 + type: Transform + - uid: 11899 + components: + - rot: 1.5707963267948966 rad + pos: 77.5,8.5 + parent: 2 + type: Transform + - uid: 12166 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,6.5 + parent: 2 + type: Transform +- proto: SinkWide + entities: + - uid: 4559 + components: + - pos: 37.5,-9.5 + parent: 2 + type: Transform + - uid: 6680 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,-6.5 + parent: 2 + type: Transform + - uid: 9720 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-4.5 + parent: 2 + type: Transform +- proto: Skub + entities: + - uid: 5403 + components: + - pos: 62.485527,20.60704 + parent: 2 + type: Transform + - uid: 13072 + components: + - pos: 7.5138106,-13.335101 + parent: 2 + type: Transform + - uid: 13073 + components: + - pos: 4.5294356,-11.475726 + parent: 2 + type: Transform + - uid: 13074 + components: + - pos: 8.498186,-12.475726 + parent: 2 + type: Transform +- proto: SMESBasic + entities: + - uid: 875 + components: + - name: SMES Bank 1 + type: MetaData + - pos: 25.5,-31.5 + parent: 2 + type: Transform + - uid: 876 + components: + - name: SMES Bank 2 + type: MetaData + - pos: 26.5,-31.5 + parent: 2 + type: Transform + - uid: 885 + components: + - name: SMES Bank 3 + type: MetaData + - pos: 27.5,-31.5 + parent: 2 + type: Transform + - uid: 3405 + components: + - pos: 71.5,44.5 + parent: 2 + type: Transform + - uid: 4075 + components: + - name: Telecomms SMES + type: MetaData + - pos: 23.5,-14.5 + parent: 2 + type: Transform + - uid: 9002 + components: + - pos: 112.5,-17.5 + parent: 2 + type: Transform + - loadingNetworkDemand: 60.000237 + currentSupply: 60.000237 + supplyRampPosition: 60.000237 + type: PowerNetworkBattery + - uid: 10856 + components: + - pos: 3.5,-34.5 + parent: 2 + type: Transform +- proto: SMESMachineCircuitboard + entities: + - uid: 12385 + components: + - pos: 41.421707,-16.360641 + parent: 2 + type: Transform + - uid: 12386 + components: + - pos: 41.546707,-16.470016 + parent: 2 + type: Transform + - uid: 12387 + components: + - pos: 41.640457,-16.579391 + parent: 2 + type: Transform +- proto: SmokingPipeFilledTobacco + entities: + - uid: 6764 + components: + - pos: 29.514105,-5.4211745 + parent: 2 + type: Transform + - uid: 11946 + components: + - pos: 32.982197,41.628204 + parent: 2 + type: Transform +- proto: soda_dispenser + entities: + - uid: 2922 + components: + - pos: 67.5,-17.5 + parent: 2 + type: Transform + - containers: + ReagentDispenser-reagentContainerContainer: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + ReagentDispenser-beaker: !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: [] + beakerSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 6526 + components: + - pos: 39.5,-2.5 + parent: 2 + type: Transform +- proto: SolarPanel + entities: + - uid: 1386 + components: + - pos: -5.5,-31.5 + parent: 2 + type: Transform + - uid: 1387 + components: + - pos: -3.5,-31.5 + parent: 2 + type: Transform + - uid: 1388 + components: + - pos: -3.5,-32.5 + parent: 2 + type: Transform + - uid: 1389 + components: + - pos: -5.5,-32.5 + parent: 2 + type: Transform + - uid: 1390 + components: + - pos: -5.5,-33.5 + parent: 2 + type: Transform + - uid: 1391 + components: + - pos: -3.5,-33.5 + parent: 2 + type: Transform + - uid: 1392 + components: + - pos: -5.5,-37.5 + parent: 2 + type: Transform + - uid: 1393 + components: + - pos: -3.5,-37.5 + parent: 2 + type: Transform + - uid: 1394 + components: + - pos: -3.5,-38.5 + parent: 2 + type: Transform + - uid: 1395 + components: + - pos: -3.5,-39.5 + parent: 2 + type: Transform + - uid: 1396 + components: + - pos: -5.5,-39.5 + parent: 2 + type: Transform + - uid: 1397 + components: + - pos: -5.5,-38.5 + parent: 2 + type: Transform + - uid: 1412 + components: + - pos: -7.5,-33.5 + parent: 2 + type: Transform + - uid: 1413 + components: + - pos: -7.5,-32.5 + parent: 2 + type: Transform + - uid: 1414 + components: + - pos: -7.5,-31.5 + parent: 2 + type: Transform + - uid: 1415 + components: + - pos: -7.5,-30.5 + parent: 2 + type: Transform + - uid: 1416 + components: + - pos: -9.5,-30.5 + parent: 2 + type: Transform + - uid: 1417 + components: + - pos: -9.5,-31.5 + parent: 2 + type: Transform + - uid: 1418 + components: + - pos: -9.5,-32.5 + parent: 2 + type: Transform + - uid: 1419 + components: + - pos: -9.5,-33.5 + parent: 2 + type: Transform + - uid: 1420 + components: + - pos: -9.5,-37.5 + parent: 2 + type: Transform + - uid: 1421 + components: + - pos: -9.5,-38.5 + parent: 2 + type: Transform + - uid: 1422 + components: + - pos: -9.5,-39.5 + parent: 2 + type: Transform + - uid: 1423 + components: + - pos: -9.5,-40.5 + parent: 2 + type: Transform + - uid: 1424 + components: + - pos: -7.5,-40.5 + parent: 2 + type: Transform + - uid: 1425 + components: + - pos: -7.5,-39.5 + parent: 2 + type: Transform + - uid: 1426 + components: + - pos: -7.5,-38.5 + parent: 2 + type: Transform + - uid: 1427 + components: + - pos: -7.5,-37.5 + parent: 2 + type: Transform + - uid: 1444 + components: + - pos: -13.5,-37.5 + parent: 2 + type: Transform + - uid: 1445 + components: + - pos: -13.5,-38.5 + parent: 2 + type: Transform + - uid: 1446 + components: + - pos: -13.5,-39.5 + parent: 2 + type: Transform + - uid: 1447 + components: + - pos: -11.5,-39.5 + parent: 2 + type: Transform + - uid: 1448 + components: + - pos: -11.5,-38.5 + parent: 2 + type: Transform + - uid: 1449 + components: + - pos: -11.5,-37.5 + parent: 2 + type: Transform + - uid: 1450 + components: + - pos: -11.5,-33.5 + parent: 2 + type: Transform + - uid: 1451 + components: + - pos: -11.5,-32.5 + parent: 2 + type: Transform + - uid: 1452 + components: + - pos: -11.5,-31.5 + parent: 2 + type: Transform + - uid: 1453 + components: + - pos: -13.5,-31.5 + parent: 2 + type: Transform + - uid: 1454 + components: + - pos: -13.5,-32.5 + parent: 2 + type: Transform + - uid: 1455 + components: + - pos: -13.5,-33.5 + parent: 2 + type: Transform + - uid: 5535 + components: + - pos: 77.5,49.5 + parent: 2 + type: Transform + - uid: 5536 + components: + - pos: 77.5,48.5 + parent: 2 + type: Transform + - uid: 5537 + components: + - pos: 77.5,47.5 + parent: 2 + type: Transform + - uid: 5538 + components: + - pos: 79.5,47.5 + parent: 2 + type: Transform + - uid: 5539 + components: + - pos: 79.5,48.5 + parent: 2 + type: Transform + - uid: 5540 + components: + - pos: 79.5,49.5 + parent: 2 + type: Transform + - uid: 5541 + components: + - pos: 81.5,50.5 + parent: 2 + type: Transform + - uid: 5542 + components: + - pos: 81.5,49.5 + parent: 2 + type: Transform + - uid: 5543 + components: + - pos: 81.5,48.5 + parent: 2 + type: Transform + - uid: 5544 + components: + - pos: 81.5,47.5 + parent: 2 + type: Transform + - uid: 5545 + components: + - pos: 83.5,47.5 + parent: 2 + type: Transform + - uid: 5546 + components: + - pos: 83.5,48.5 + parent: 2 + type: Transform + - uid: 5547 + components: + - pos: 83.5,49.5 + parent: 2 + type: Transform + - uid: 5548 + components: + - pos: 83.5,50.5 + parent: 2 + type: Transform + - uid: 5549 + components: + - pos: 83.5,40.5 + parent: 2 + type: Transform + - uid: 5550 + components: + - pos: 81.5,40.5 + parent: 2 + type: Transform + - uid: 5551 + components: + - pos: 81.5,41.5 + parent: 2 + type: Transform + - uid: 5552 + components: + - pos: 81.5,42.5 + parent: 2 + type: Transform + - uid: 5553 + components: + - pos: 81.5,43.5 + parent: 2 + type: Transform + - uid: 5554 + components: + - pos: 83.5,43.5 + parent: 2 + type: Transform + - uid: 5555 + components: + - pos: 83.5,42.5 + parent: 2 + type: Transform + - uid: 5556 + components: + - pos: 83.5,41.5 + parent: 2 + type: Transform + - uid: 5557 + components: + - pos: 79.5,41.5 + parent: 2 + type: Transform + - uid: 5558 + components: + - pos: 79.5,42.5 + parent: 2 + type: Transform + - uid: 5559 + components: + - pos: 79.5,43.5 + parent: 2 + type: Transform + - uid: 5560 + components: + - pos: 77.5,43.5 + parent: 2 + type: Transform + - uid: 5561 + components: + - pos: 77.5,42.5 + parent: 2 + type: Transform + - uid: 5562 + components: + - pos: 77.5,41.5 + parent: 2 + type: Transform + - uid: 5563 + components: + - pos: 85.5,41.5 + parent: 2 + type: Transform + - uid: 5564 + components: + - pos: 85.5,42.5 + parent: 2 + type: Transform + - uid: 5565 + components: + - pos: 85.5,43.5 + parent: 2 + type: Transform + - uid: 5566 + components: + - pos: 87.5,43.5 + parent: 2 + type: Transform + - uid: 5567 + components: + - pos: 87.5,42.5 + parent: 2 + type: Transform + - uid: 5568 + components: + - pos: 87.5,41.5 + parent: 2 + type: Transform + - uid: 5569 + components: + - pos: 87.5,47.5 + parent: 2 + type: Transform + - uid: 5570 + components: + - pos: 87.5,48.5 + parent: 2 + type: Transform + - uid: 5571 + components: + - pos: 87.5,49.5 + parent: 2 + type: Transform + - uid: 5572 + components: + - pos: 85.5,49.5 + parent: 2 + type: Transform + - uid: 5573 + components: + - pos: 85.5,48.5 + parent: 2 + type: Transform + - uid: 5574 + components: + - pos: 85.5,47.5 + parent: 2 + type: Transform + - uid: 8904 + components: + - pos: 111.5,-21.5 + parent: 2 + type: Transform + - uid: 8905 + components: + - pos: 111.5,-22.5 + parent: 2 + type: Transform + - uid: 8906 + components: + - pos: 111.5,-23.5 + parent: 2 + type: Transform + - uid: 8907 + components: + - pos: 111.5,-24.5 + parent: 2 + type: Transform + - uid: 8908 + components: + - pos: 113.5,-24.5 + parent: 2 + type: Transform + - uid: 8909 + components: + - pos: 113.5,-23.5 + parent: 2 + type: Transform + - uid: 8910 + components: + - pos: 113.5,-22.5 + parent: 2 + type: Transform + - uid: 8911 + components: + - pos: 113.5,-21.5 + parent: 2 + type: Transform + - uid: 8912 + components: + - pos: 115.5,-21.5 + parent: 2 + type: Transform + - uid: 8913 + components: + - pos: 115.5,-22.5 + parent: 2 + type: Transform + - uid: 8914 + components: + - pos: 115.5,-23.5 + parent: 2 + type: Transform + - uid: 8915 + components: + - pos: 115.5,-24.5 + parent: 2 + type: Transform + - uid: 8961 + components: + - pos: 111.5,-13.5 + parent: 2 + type: Transform + - uid: 8962 + components: + - pos: 111.5,-12.5 + parent: 2 + type: Transform + - uid: 8963 + components: + - pos: 111.5,-11.5 + parent: 2 + type: Transform + - uid: 8964 + components: + - pos: 111.5,-10.5 + parent: 2 + type: Transform + - uid: 8965 + components: + - pos: 113.5,-12.5 + parent: 2 + type: Transform + - uid: 8966 + components: + - pos: 113.5,-13.5 + parent: 2 + type: Transform + - uid: 8967 + components: + - pos: 113.5,-11.5 + parent: 2 + type: Transform + - uid: 8968 + components: + - pos: 113.5,-10.5 + parent: 2 + type: Transform + - uid: 8969 + components: + - pos: 115.5,-13.5 + parent: 2 + type: Transform + - uid: 8970 + components: + - pos: 115.5,-12.5 + parent: 2 + type: Transform + - uid: 8971 + components: + - pos: 115.5,-11.5 + parent: 2 + type: Transform + - uid: 8972 + components: + - pos: 115.5,-10.5 + parent: 2 + type: Transform + - uid: 9081 + components: + - pos: 120.5,-15.5 + parent: 2 + type: Transform + - uid: 9082 + components: + - pos: 119.5,-15.5 + parent: 2 + type: Transform + - uid: 9083 + components: + - pos: 118.5,-15.5 + parent: 2 + type: Transform + - uid: 9084 + components: + - pos: 117.5,-15.5 + parent: 2 + type: Transform + - uid: 9085 + components: + - pos: 119.5,-17.5 + parent: 2 + type: Transform + - uid: 9086 + components: + - pos: 118.5,-17.5 + parent: 2 + type: Transform + - uid: 9087 + components: + - pos: 117.5,-17.5 + parent: 2 + type: Transform + - uid: 9088 + components: + - pos: 120.5,-19.5 + parent: 2 + type: Transform + - uid: 9089 + components: + - pos: 119.5,-19.5 + parent: 2 + type: Transform + - uid: 9090 + components: + - pos: 118.5,-19.5 + parent: 2 + type: Transform + - uid: 9091 + components: + - pos: 117.5,-19.5 + parent: 2 + type: Transform +- proto: SolarTracker + entities: + - uid: 1443 + components: + - pos: -15.5,-35.5 + parent: 2 + type: Transform + - uid: 5575 + components: + - pos: 89.5,45.5 + parent: 2 + type: Transform + - uid: 9080 + components: + - pos: 120.5,-17.5 + parent: 2 + type: Transform +- proto: SpaceCash1000 + entities: + - uid: 11863 + components: + - flags: InContainer + type: MetaData + - parent: 12094 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: SpaceVillainArcadeFilled + entities: + - uid: 1 + components: + - pos: 20.5,10.5 + parent: 2 + type: Transform +- proto: SpawnMechRipley + entities: + - uid: 8178 + components: + - pos: 7.5,30.5 + parent: 2 + type: Transform +- proto: SpawnMobAlexander + entities: + - uid: 1866 + components: + - pos: 34.5,-11.5 + parent: 2 + type: Transform +- proto: SpawnMobBandito + entities: + - uid: 12772 + components: + - pos: 62.5,10.5 + parent: 2 + type: Transform +- proto: SpawnMobCatGeneric + entities: + - uid: 11419 + components: + - pos: 57.5,-11.5 + parent: 2 + type: Transform +- proto: SpawnMobCorgi + entities: + - uid: 10281 + components: + - pos: 19.5,-5.5 + parent: 2 + type: Transform +- proto: SpawnMobCrab + entities: + - uid: 5859 + components: + - pos: 38.5,-28.5 + parent: 2 + type: Transform +- proto: SpawnMobDrone + entities: + - uid: 5652 + components: + - pos: 18.5,-26.5 + parent: 2 + type: Transform + - uid: 5653 + components: + - pos: 19.5,-26.5 + parent: 2 + type: Transform +- proto: SpawnMobFoxRenault + entities: + - uid: 12231 + components: + - pos: 31.5,41.5 + parent: 2 + type: Transform +- proto: SpawnMobMcGriff + entities: + - uid: 8443 + components: + - pos: 40.5,23.5 + parent: 2 + type: Transform +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 6527 + components: + - pos: 39.5,-5.5 + parent: 2 + type: Transform +- proto: SpawnMobMouse + entities: + - uid: 12324 + components: + - pos: 13.5,18.5 + parent: 2 + type: Transform + - uid: 12327 + components: + - pos: 73.5,-15.5 + parent: 2 + type: Transform + - uid: 12797 + components: + - pos: 43.5,44.5 + parent: 2 + type: Transform + - uid: 12798 + components: + - pos: 67.5,39.5 + parent: 2 + type: Transform + - uid: 12799 + components: + - pos: 81.5,7.5 + parent: 2 + type: Transform + - uid: 12801 + components: + - pos: 1.5,-7.5 + parent: 2 + type: Transform +- proto: SpawnMobPossumMorty + entities: + - uid: 12303 + components: + - pos: 73.5,-1.5 + parent: 2 + type: Transform +- proto: SpawnMobRaccoonMorticia + entities: + - uid: 243 + components: + - pos: 12.5,31.5 + parent: 2 + type: Transform +- proto: SpawnMobShiva + entities: + - uid: 8444 + components: + - pos: 44.5,22.5 + parent: 2 + type: Transform +- proto: SpawnMobSlothPaperwork + entities: + - uid: 12305 + components: + - pos: 9.5,5.5 + parent: 2 + type: Transform +- proto: SpawnMobSmile + entities: + - uid: 12771 + components: + - pos: 59.5,19.5 + parent: 2 + type: Transform +- proto: SpawnMobWalter + entities: + - uid: 12230 + components: + - pos: 50.5,-8.5 + parent: 2 + type: Transform +- proto: SpawnPointAssistant + entities: + - uid: 1791 + components: + - pos: 32.5,-15.5 + parent: 2 + type: Transform + - uid: 1792 + components: + - pos: 31.5,-15.5 + parent: 2 + type: Transform + - uid: 1793 + components: + - pos: 30.5,-15.5 + parent: 2 + type: Transform + - uid: 1794 + components: + - pos: 30.5,-16.5 + parent: 2 + type: Transform + - uid: 1795 + components: + - pos: 31.5,-16.5 + parent: 2 + type: Transform + - uid: 1796 + components: + - pos: 32.5,-16.5 + parent: 2 + type: Transform +- proto: SpawnPointAtmos + entities: + - uid: 4577 + components: + - pos: 30.5,-31.5 + parent: 2 + type: Transform + - uid: 4578 + components: + - pos: 29.5,-31.5 + parent: 2 + type: Transform +- proto: SpawnPointBartender + entities: + - uid: 6502 + components: + - pos: 38.5,-10.5 + parent: 2 + type: Transform +- proto: SpawnPointBorg + entities: + - uid: 13142 + components: + - pos: 45.5,10.5 + parent: 2 + type: Transform +- proto: SpawnPointBotanist + entities: + - uid: 6750 + components: + - pos: 43.5,-6.5 + parent: 2 + type: Transform + - uid: 6751 + components: + - pos: 44.5,-6.5 + parent: 2 + type: Transform +- proto: SpawnPointCaptain + entities: + - uid: 8682 + components: + - pos: 33.5,40.5 + parent: 2 + type: Transform +- proto: SpawnPointCargoTechnician + entities: + - uid: 8258 + components: + - pos: 13.5,22.5 + parent: 2 + type: Transform + - uid: 8259 + components: + - pos: 12.5,22.5 + parent: 2 + type: Transform + - uid: 8260 + components: + - pos: 11.5,22.5 + parent: 2 + type: Transform +- proto: SpawnPointChaplain + entities: + - uid: 10638 + components: + - pos: 32.5,8.5 + parent: 2 + type: Transform +- proto: SpawnPointChef + entities: + - uid: 8294 + components: + - pos: 36.5,-11.5 + parent: 2 + type: Transform +- proto: SpawnPointChemist + entities: + - uid: 5071 + components: + - pos: 53.5,-4.5 + parent: 2 + type: Transform + - uid: 6650 + components: + - pos: 50.5,-4.5 + parent: 2 + type: Transform +- proto: SpawnPointChiefEngineer + entities: + - uid: 8692 + components: + - pos: 11.5,-34.5 + parent: 2 + type: Transform +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 11418 + components: + - pos: 56.5,-11.5 + parent: 2 + type: Transform +- proto: SpawnPointClown + entities: + - uid: 9608 + components: + - pos: 26.5,6.5 + parent: 2 + type: Transform +- proto: SpawnPointDetective + entities: + - uid: 8679 + components: + - pos: 42.5,19.5 + parent: 2 + type: Transform +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 12791 + components: + - pos: 19.5,-4.5 + parent: 2 + type: Transform +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 8438 + components: + - pos: 44.5,24.5 + parent: 2 + type: Transform +- proto: SpawnPointJanitor + entities: + - uid: 8711 + components: + - pos: 5.5,-4.5 + parent: 2 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 12803 + components: + - pos: -16.5,-12.5 + parent: 2 + type: Transform + - uid: 12804 + components: + - pos: -15.5,-12.5 + parent: 2 + type: Transform + - uid: 12805 + components: + - pos: -9.5,-12.5 + parent: 2 + type: Transform + - uid: 12806 + components: + - pos: -8.5,-12.5 + parent: 2 + type: Transform +- proto: SpawnPointLawyer + entities: + - uid: 8160 + components: + - pos: -2.5,-11.5 + parent: 2 + type: Transform + - uid: 8161 + components: + - pos: -3.5,-10.5 + parent: 2 + type: Transform +- proto: SpawnPointLibrarian + entities: + - uid: 11708 + components: + - pos: 9.5,3.5 + parent: 2 + type: Transform +- proto: SpawnPointMedicalDoctor + entities: + - uid: 11958 + components: + - pos: 71.5,5.5 + parent: 2 + type: Transform + - uid: 11959 + components: + - pos: 71.5,6.5 + parent: 2 + type: Transform + - uid: 11960 + components: + - pos: 71.5,7.5 + parent: 2 + type: Transform +- proto: SpawnPointMedicalIntern + entities: + - uid: 11961 + components: + - pos: 73.5,5.5 + parent: 2 + type: Transform + - uid: 11962 + components: + - pos: 73.5,6.5 + parent: 2 + type: Transform +- proto: SpawnPointMime + entities: + - uid: 9610 + components: + - pos: 25.5,7.5 + parent: 2 + type: Transform +- proto: SpawnPointMusician + entities: + - uid: 9355 + components: + - pos: 20.5,-11.5 + parent: 2 + type: Transform +- proto: SpawnPointObserver + entities: + - uid: 5419 + components: + - pos: 26.5,1.5 + parent: 2 + type: Transform +- proto: SpawnPointParamedic + entities: + - uid: 8314 + components: + - pos: 46.5,3.5 + parent: 2 + type: Transform +- proto: SpawnPointQuartermaster + entities: + - uid: 11985 + components: + - pos: 12.5,30.5 + parent: 2 + type: Transform +- proto: SpawnPointResearchAssistant + entities: + - uid: 10657 + components: + - pos: 57.5,23.5 + parent: 2 + type: Transform + - uid: 10658 + components: + - pos: 56.5,23.5 + parent: 2 + type: Transform +- proto: SpawnPointResearchDirector + entities: + - uid: 12770 + components: + - pos: 61.5,9.5 + parent: 2 + type: Transform +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 8256 + components: + - pos: 8.5,17.5 + parent: 2 + type: Transform + - uid: 8257 + components: + - pos: 8.5,18.5 + parent: 2 + type: Transform +- proto: SpawnPointScientist + entities: + - uid: 10654 + components: + - pos: 57.5,24.5 + parent: 2 + type: Transform + - uid: 10655 + components: + - pos: 56.5,24.5 + parent: 2 + type: Transform + - uid: 10656 + components: + - pos: 55.5,24.5 + parent: 2 + type: Transform +- proto: SpawnPointSecurityCadet + entities: + - uid: 8437 + components: + - pos: 34.5,27.5 + parent: 2 + type: Transform + - uid: 8696 + components: + - pos: 34.5,26.5 + parent: 2 + type: Transform +- proto: SpawnPointSecurityOfficer + entities: + - uid: 8439 + components: + - pos: 38.5,18.5 + parent: 2 + type: Transform + - uid: 8440 + components: + - pos: 39.5,18.5 + parent: 2 + type: Transform + - uid: 8441 + components: + - pos: 37.5,18.5 + parent: 2 + type: Transform +- proto: SpawnPointSeniorEngineer + entities: + - uid: 12852 + components: + - pos: 24.5,-32.5 + parent: 2 + type: Transform +- proto: SpawnPointSeniorOfficer + entities: + - uid: 12849 + components: + - pos: 35.5,27.5 + parent: 2 + type: Transform +- proto: SpawnPointSeniorPhysician + entities: + - uid: 12851 + components: + - pos: 73.5,7.5 + parent: 2 + type: Transform +- proto: SpawnPointSeniorResearcher + entities: + - uid: 12850 + components: + - pos: 55.5,23.5 + parent: 2 + type: Transform +- proto: SpawnPointServiceWorker + entities: + - uid: 12792 + components: + - pos: 32.5,-5.5 + parent: 2 + type: Transform + - uid: 12793 + components: + - pos: 32.5,-4.5 + parent: 2 + type: Transform + - uid: 12794 + components: + - pos: 34.5,-5.5 + parent: 2 + type: Transform + - uid: 12795 + components: + - pos: 34.5,-4.5 + parent: 2 + type: Transform +- proto: SpawnPointStationEngineer + entities: + - uid: 4579 + components: + - pos: 23.5,-31.5 + parent: 2 + type: Transform + - uid: 4580 + components: + - pos: 22.5,-31.5 + parent: 2 + type: Transform + - uid: 4581 + components: + - pos: 21.5,-31.5 + parent: 2 + type: Transform +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 5660 + components: + - pos: 26.5,-32.5 + parent: 2 + type: Transform + - uid: 5661 + components: + - pos: 25.5,-32.5 + parent: 2 + type: Transform + - uid: 5662 + components: + - pos: 27.5,-32.5 + parent: 2 + type: Transform +- proto: SpawnPointWarden + entities: + - uid: 8442 + components: + - pos: 39.5,23.5 + parent: 2 + type: Transform +- proto: SpawnVehicleJanicart + entities: + - uid: 12910 + components: + - pos: 6.5,-5.5 + parent: 2 + type: Transform +- proto: SpawnVehicleSecway + entities: + - uid: 8446 + components: + - pos: 36.5,21.5 + parent: 2 + type: Transform +- proto: SprayBottle + entities: + - uid: 5072 + components: + - pos: 52.708385,-7.471399 + parent: 2 + type: Transform + - uid: 5393 + components: + - rot: 3.589668631320819E-05 rad + pos: 55.735016,10.470499 + parent: 2 + type: Transform + - uid: 7793 + components: + - pos: 55.34302,10.727416 + parent: 2 + type: Transform +- proto: SprayBottleSpaceCleaner + entities: + - uid: 7812 + components: + - pos: 82.67393,-4.422255 + parent: 2 + type: Transform +- proto: SprayBottleWater + entities: + - uid: 6812 + components: + - pos: 67.05991,-3.359559 + parent: 2 + type: Transform +- proto: StasisBed + entities: + - uid: 11819 + components: + - pos: 63.5,4.5 + parent: 2 + type: Transform +- proto: StasisBedMachineCircuitboard + entities: + - uid: 12358 + components: + - pos: 37.482082,-14.3762665 + parent: 2 + type: Transform +- proto: StationMap + entities: + - uid: 1761 + components: + - pos: 19.5,38.5 + parent: 2 + type: Transform + - uid: 8115 + components: + - pos: -7.5,-7.5 + parent: 2 + type: Transform + - uid: 8116 + components: + - pos: 9.5,2.5 + parent: 2 + type: Transform + - uid: 8984 + components: + - pos: 34.5,16.5 + parent: 2 + type: Transform + - uid: 11292 + components: + - pos: 28.5,-1.5 + parent: 2 + type: Transform +- proto: Stimpack + entities: + - uid: 12493 + components: + - pos: 11.490012,-11.457567 + parent: 2 + type: Transform +- proto: Stool + entities: + - uid: 172 + components: + - pos: 5.5,-4.5 + parent: 2 + type: Transform + - uid: 365 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,30.5 + parent: 2 + type: Transform + - uid: 943 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-36.5 + parent: 2 + type: Transform + - uid: 1665 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-7.5 + parent: 2 + type: Transform + - uid: 2465 + components: + - pos: 38.5,19.5 + parent: 2 + type: Transform + - uid: 2466 + components: + - pos: 39.5,19.5 + parent: 2 + type: Transform + - uid: 3406 + components: + - pos: 71.5,46.5 + parent: 2 + type: Transform + - uid: 4304 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-41.5 + parent: 2 + type: Transform + - uid: 5045 + components: + - pos: 50.5,4.5 + parent: 2 + type: Transform + - uid: 5067 + components: + - pos: 51.5,-6.5 + parent: 2 + type: Transform + - uid: 5879 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-30.5 + parent: 2 + type: Transform + - uid: 6495 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-11.5 + parent: 2 + type: Transform + - uid: 6953 + components: + - rot: 3.141592653589793 rad + pos: 20.5,9.5 + parent: 2 + type: Transform + - uid: 7971 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,16.5 + parent: 2 + type: Transform + - uid: 9360 + components: + - pos: 27.5,7.5 + parent: 2 + type: Transform +- proto: StoolBar + entities: + - uid: 1615 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-5.5 + parent: 2 + type: Transform + - uid: 1616 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-4.5 + parent: 2 + type: Transform + - uid: 1617 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-3.5 + parent: 2 + type: Transform + - uid: 1627 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-7.5 + parent: 2 + type: Transform + - uid: 1628 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-6.5 + parent: 2 + type: Transform + - uid: 2903 + components: + - pos: 61.5,-15.5 + parent: 2 + type: Transform + - uid: 2904 + components: + - pos: 60.5,-15.5 + parent: 2 + type: Transform + - uid: 2905 + components: + - pos: 60.5,-16.5 + parent: 2 + type: Transform + - uid: 12695 + components: + - rot: -1.5707963267948966 rad + pos: 107.5,-17.5 + parent: 2 + type: Transform +- proto: StorageCanister + entities: + - uid: 950 + components: + - pos: 46.5,-38.5 + parent: 2 + type: Transform + - uid: 951 + components: + - pos: 46.5,-37.5 + parent: 2 + type: Transform + - uid: 4568 + components: + - pos: 36.5,-25.5 + parent: 2 + type: Transform + - uid: 4569 + components: + - pos: 37.5,-25.5 + parent: 2 + type: Transform + - uid: 10440 + components: + - pos: 58.5,9.5 + parent: 2 + type: Transform +- proto: Stunbaton + entities: + - uid: 10137 + components: + - pos: 40.348335,22.308064 + parent: 2 + type: Transform + - uid: 10138 + components: + - pos: 40.348335,22.526814 + parent: 2 + type: Transform + - uid: 10139 + components: + - pos: 40.348335,22.745564 + parent: 2 + type: Transform +- proto: SubstationBasic + entities: + - uid: 30 + components: + - name: Cargo Substation + type: MetaData + - pos: 12.5,34.5 + parent: 2 + type: Transform + - uid: 54 + components: + - name: Arrivals Substation + type: MetaData + - pos: 6.5,-8.5 + parent: 2 + type: Transform + - uid: 443 + components: + - name: Gravity Substation + type: MetaData + - pos: 14.5,35.5 + parent: 2 + type: Transform + - supplyRampPosition: 2.3437593 + type: PowerNetworkBattery + - uid: 2160 + components: + - name: Library Substation + type: MetaData + - pos: 14.5,7.5 + parent: 2 + type: Transform + - uid: 4076 + components: + - name: Telecomms Sub + type: MetaData + - pos: 22.5,-14.5 + parent: 2 + type: Transform + - uid: 4096 + components: + - name: Engineering Substation + type: MetaData + - pos: 10.5,-25.5 + parent: 2 + type: Transform + - supplyRampPosition: 2.3437593 + type: PowerNetworkBattery + - uid: 4101 + components: + - name: South West Substation + type: MetaData + - pos: 16.5,-14.5 + parent: 2 + type: Transform + - uid: 4431 + components: + - name: Solars South West Sub + type: MetaData + - pos: 4.5,-36.5 + parent: 2 + type: Transform + - supplyRampPosition: 2.3437593 + type: PowerNetworkBattery + - uid: 4613 + components: + - pos: 90.5,-2.5 + parent: 2 + type: Transform + - uid: 5637 + components: + - name: Solars North East Substation + type: MetaData + - pos: 70.5,44.5 + parent: 2 + type: Transform + - loadingNetworkDemand: 10.019571 + currentSupply: 10.019571 + supplyRampPosition: 10.019571 + type: PowerNetworkBattery + - uid: 6199 + components: + - pos: 69.5,-13.5 + parent: 2 + type: Transform + - uid: 6379 + components: + - name: Science North West Substation + type: MetaData + - pos: 50.5,27.5 + parent: 2 + type: Transform + - supplyRampPosition: 2.3437593 + type: PowerNetworkBattery + - uid: 7576 + components: + - name: Medical South West Substation + type: MetaData + - pos: 52.5,-10.5 + parent: 2 + type: Transform + - uid: 8307 + components: + - name: Toolroom Substation + type: MetaData + - pos: 35.5,-14.5 + parent: 2 + type: Transform + - uid: 8324 + components: + - name: Security Substation + type: MetaData + - pos: 43.5,27.5 + parent: 2 + type: Transform + - uid: 9016 + components: + - pos: 112.5,-15.5 + parent: 2 + type: Transform + - loadingNetworkDemand: 60.000237 + currentReceiving: 60.000237 + currentSupply: 60.000237 + type: PowerNetworkBattery +- proto: SubstationMachineCircuitboard + entities: + - uid: 12372 + components: + - pos: 41.421707,-15.2981415 + parent: 2 + type: Transform + - uid: 12378 + components: + - pos: 41.546707,-15.3918915 + parent: 2 + type: Transform +- proto: SubstationWallBasic + entities: + - uid: 6766 + components: + - name: Singulo Emitter Substation + type: MetaData + - pos: 15.5,-42.5 + parent: 2 + type: Transform +- proto: SuitStorageAtmos + entities: + - uid: 871 + components: + - pos: 15.5,-31.5 + parent: 2 + type: Transform +- proto: SuitStorageCaptain + entities: + - uid: 9438 + components: + - pos: 37.5,41.5 + parent: 2 + type: Transform +- proto: SuitStorageCE + entities: + - uid: 1179 + components: + - pos: 10.5,-36.5 + parent: 2 + type: Transform +- proto: SuitStorageEngi + entities: + - uid: 870 + components: + - pos: 15.5,-30.5 + parent: 2 + type: Transform + - uid: 5654 + components: + - pos: 30.5,-34.5 + parent: 2 + type: Transform + - uid: 5655 + components: + - pos: 32.5,-34.5 + parent: 2 + type: Transform +- proto: SuitStorageEVA + entities: + - uid: 10300 + components: + - pos: 10.5,-8.5 + parent: 2 + type: Transform + - uid: 10301 + components: + - pos: 11.5,-8.5 + parent: 2 + type: Transform + - uid: 10302 + components: + - pos: 12.5,-8.5 + parent: 2 + type: Transform +- proto: SuitStorageEVAAlternate + entities: + - uid: 10297 + components: + - pos: 10.5,-5.5 + parent: 2 + type: Transform + - uid: 10298 + components: + - pos: 11.5,-5.5 + parent: 2 + type: Transform + - uid: 10299 + components: + - pos: 12.5,-5.5 + parent: 2 + type: Transform +- proto: SuitStorageEVAPrisoner + entities: + - uid: 8337 + components: + - pos: 37.5,31.5 + parent: 2 + type: Transform +- proto: SuitStorageNTSRA + entities: + - uid: 12168 + components: + - pos: 49.5,-15.5 + parent: 2 + type: Transform +- proto: SuitStorageRD + entities: + - uid: 10661 + components: + - pos: 60.5,8.5 + parent: 2 + type: Transform +- proto: SuitStorageSec + entities: + - uid: 7946 + components: + - pos: 39.5,21.5 + parent: 2 + type: Transform + - uid: 7947 + components: + - pos: 38.5,21.5 + parent: 2 + type: Transform +- proto: SurveillanceCameraCommand + entities: + - uid: 12735 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-5.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: EVA Storage + type: SurveillanceCamera + - uid: 12736 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-3.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: HoP Office + type: SurveillanceCamera + - uid: 12753 + components: + - rot: 3.141592653589793 rad + pos: 15.5,37.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Gravity + type: SurveillanceCamera + - uid: 12754 + components: + - rot: 3.141592653589793 rad + pos: 19.5,41.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Vault + type: SurveillanceCamera + - uid: 12755 + components: + - rot: 3.141592653589793 rad + pos: 24.5,42.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Conference Room + type: SurveillanceCamera + - uid: 12756 + components: + - rot: 3.141592653589793 rad + pos: 21.5,46.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge West + type: SurveillanceCamera + - uid: 12757 + components: + - rot: 3.141592653589793 rad + pos: 28.5,48.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge North + type: SurveillanceCamera + - uid: 12758 + components: + - rot: 3.141592653589793 rad + pos: 33.5,46.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge East + type: SurveillanceCamera + - uid: 12759 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,41.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Captain's Office + type: SurveillanceCamera + - uid: 12760 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,41.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Captain's Bedroom + type: SurveillanceCamera + - uid: 12761 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,35.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Camera Server Room + type: SurveillanceCamera + - uid: 12762 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,41.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge Entrance + type: SurveillanceCamera +- proto: SurveillanceCameraEngineering + entities: + - uid: 12775 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-16.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Telecomms + type: SurveillanceCamera + - uid: 12778 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-25.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos Entrance + type: SurveillanceCamera + - uid: 12779 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-23.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos North + type: SurveillanceCamera + - uid: 12780 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-33.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos South + type: SurveillanceCamera + - uid: 12781 + components: + - pos: 42.5,-40.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Canister Storage + type: SurveillanceCamera + - uid: 12782 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-40.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: AME Room + type: SurveillanceCamera + - uid: 12783 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-40.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Particle Accelerator + type: SurveillanceCamera + - uid: 12784 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-44.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Singulo Airlock + type: SurveillanceCamera + - uid: 12785 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-33.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: CE Office + type: SurveillanceCamera + - uid: 12787 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-29.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Secure Storage + type: SurveillanceCamera + - uid: 12788 + components: + - pos: 19.5,-28.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Break Room + type: SurveillanceCamera + - uid: 12789 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-25.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engi Entrance + type: SurveillanceCamera + - uid: 12790 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-31.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Locker Room + type: SurveillanceCamera +- proto: SurveillanceCameraGeneral + entities: + - uid: 12714 + components: + - pos: 32.5,-7.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Cafeteria + type: SurveillanceCamera + - uid: 12716 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-9.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Theater + type: SurveillanceCamera + - uid: 12719 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,7.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Chapel + type: SurveillanceCamera + - uid: 12721 + components: + - pos: 10.5,3.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Library + type: SurveillanceCamera + - uid: 12722 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,7.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Laundry Room + type: SurveillanceCamera + - uid: 12723 + components: + - rot: 3.141592653589793 rad + pos: 19.5,15.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dormitory + type: SurveillanceCamera + - uid: 12730 + components: + - rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Evac + type: SurveillanceCamera + - uid: 12731 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-12.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Arrivals + type: SurveillanceCamera + - uid: 12737 + components: + - rot: 3.141592653589793 rad + pos: 24.5,1.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Central Hall + type: SurveillanceCamera + - uid: 12738 + components: + - rot: 3.141592653589793 rad + pos: 28.5,15.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Central Hall North + type: SurveillanceCamera + - uid: 12739 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,8.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Central Hall East + type: SurveillanceCamera + - uid: 12740 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Central Hall West + type: SurveillanceCamera + - uid: 12776 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-15.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Toolroom + type: SurveillanceCamera + - uid: 12786 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-28.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Disposals + type: SurveillanceCamera +- proto: SurveillanceCameraMedical + entities: + - uid: 12215 + components: + - rot: -1.5707963267948966 rad + pos: 76.5,-5.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Virology + type: SurveillanceCamera + - uid: 12216 + components: + - rot: 3.141592653589793 rad + pos: 73.5,-0.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Morgue + type: SurveillanceCamera + - uid: 12217 + components: + - rot: 3.141592653589793 rad + pos: 78.5,5.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Break Room + type: SurveillanceCamera + - uid: 12218 + components: + - pos: 72.5,4.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Supply Room + type: SurveillanceCamera + - uid: 12221 + components: + - rot: 1.5707963267948966 rad + pos: 67.5,-5.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Surgery + type: SurveillanceCamera + - uid: 12222 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,-9.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Surgery Secondary + type: SurveillanceCamera + - uid: 12223 + components: + - rot: 3.141592653589793 rad + pos: 62.5,-9.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Private Practice + type: SurveillanceCamera + - uid: 12224 + components: + - rot: 3.141592653589793 rad + pos: 57.5,-9.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: CMO Office + type: SurveillanceCamera + - uid: 12225 + components: + - rot: 3.141592653589793 rad + pos: 51.5,-4.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Chemistry + type: SurveillanceCamera + - uid: 12227 + components: + - rot: 3.141592653589793 rad + pos: 52.5,0.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Medical Entrance + type: SurveillanceCamera + - uid: 12235 + components: + - rot: 3.141592653589793 rad + pos: 46.5,4.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Paramedic Room + type: SurveillanceCamera + - uid: 12236 + components: + - rot: 1.5707963267948966 rad + pos: 62.5,-0.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Cryo + type: SurveillanceCamera + - uid: 12237 + components: + - rot: 1.5707963267948966 rad + pos: 62.5,-4.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Surgery Prep + type: SurveillanceCamera + - uid: 12238 + components: + - rot: 3.141592653589793 rad + pos: 64.5,4.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Exam + type: SurveillanceCamera +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 10318 + components: + - pos: 32.5,34.5 + parent: 2 + type: Transform +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 10320 + components: + - pos: 30.5,34.5 + parent: 2 + type: Transform +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 8230 + components: + - pos: 49.5,23.5 + parent: 2 + type: Transform +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 10316 + components: + - pos: 32.5,37.5 + parent: 2 + type: Transform +- proto: SurveillanceCameraRouterScience + entities: + - uid: 10317 + components: + - pos: 31.5,37.5 + parent: 2 + type: Transform +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 10319 + components: + - pos: 31.5,34.5 + parent: 2 + type: Transform +- proto: SurveillanceCameraRouterService + entities: + - uid: 8139 + components: + - pos: 51.5,23.5 + parent: 2 + type: Transform +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 10315 + components: + - pos: 30.5,37.5 + parent: 2 + type: Transform +- proto: SurveillanceCameraScience + entities: + - uid: 12763 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,16.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science Front + type: SurveillanceCamera + - uid: 12764 + components: + - rot: 3.141592653589793 rad + pos: 53.5,20.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: RND + type: SurveillanceCamera + - uid: 12765 + components: + - rot: -1.5707963267948966 rad + pos: 49.5,24.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science Server Room + type: SurveillanceCamera + - uid: 12766 + components: + - rot: 3.141592653589793 rad + pos: 57.5,25.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science Locker Room + type: SurveillanceCamera + - uid: 12767 + components: + - rot: -1.5707963267948966 rad + pos: 62.5,25.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Artifact Lab + type: SurveillanceCamera + - uid: 12768 + components: + - rot: -1.5707963267948966 rad + pos: 66.5,14.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Anomaly Lab + type: SurveillanceCamera + - uid: 12769 + components: + - rot: -1.5707963267948966 rad + pos: 60.5,10.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: RD Office + type: SurveillanceCamera + - uid: 12773 + components: + - rot: 3.141592653589793 rad + pos: 50.5,15.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science Entrance + type: SurveillanceCamera + - uid: 12774 + components: + - rot: 3.141592653589793 rad + pos: 51.5,11.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Robotics + type: SurveillanceCamera +- proto: SurveillanceCameraSecurity + entities: + - uid: 12732 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Law Office + type: SurveillanceCamera + - uid: 12733 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Evac Checkpoint + type: SurveillanceCamera + - uid: 12741 + components: + - rot: 3.141592653589793 rad + pos: 31.5,30.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Interrogation + type: SurveillanceCamera + - uid: 12742 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,34.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma Brig Left + type: SurveillanceCamera + - uid: 12743 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,33.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma Brig Right + type: SurveillanceCamera + - uid: 12744 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,27.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Armory + type: SurveillanceCamera + - uid: 12745 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,23.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Warden's Room + type: SurveillanceCamera + - uid: 12746 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,24.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: HoS Room + type: SurveillanceCamera + - uid: 12747 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,19.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Detective Office + type: SurveillanceCamera + - uid: 12748 + components: + - rot: 3.141592653589793 rad + pos: 37.5,19.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security Locker Room + type: SurveillanceCamera + - uid: 12749 + components: + - rot: 3.141592653589793 rad + pos: 30.5,18.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Cell 2 + type: SurveillanceCamera + - uid: 12750 + components: + - rot: 3.141592653589793 rad + pos: 30.5,21.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Cell 1 + type: SurveillanceCamera + - uid: 12751 + components: + - rot: 3.141592653589793 rad + pos: 30.5,24.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security Entrance + type: SurveillanceCamera + - uid: 12752 + components: + - rot: 3.141592653589793 rad + pos: 21.5,33.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Court House + type: SurveillanceCamera +- proto: SurveillanceCameraService + entities: + - uid: 12711 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-3.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Botany + type: SurveillanceCamera + - uid: 12712 + components: + - rot: 3.141592653589793 rad + pos: 37.5,-9.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Kitchen + type: SurveillanceCamera + - uid: 12713 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-5.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Bar + type: SurveillanceCamera + - uid: 12715 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-11.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Freezer + type: SurveillanceCamera + - uid: 12717 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,7.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Clown Room + type: SurveillanceCamera + - uid: 12718 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,7.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Chaplain's Office + type: SurveillanceCamera + - uid: 12734 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Janitor's Office + type: SurveillanceCamera +- proto: SurveillanceCameraSupply + entities: + - uid: 12724 + components: + - rot: 3.141592653589793 rad + pos: 19.5,24.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo Desk + type: SurveillanceCamera + - uid: 12725 + components: + - rot: 3.141592653589793 rad + pos: 14.5,25.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo Bay + type: SurveillanceCamera + - uid: 12726 + components: + - rot: 3.141592653589793 rad + pos: 13.5,31.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: QM Office + type: SurveillanceCamera + - uid: 12727 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,31.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo Storage + type: SurveillanceCamera + - uid: 12728 + components: + - pos: 5.5,26.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo Dock + type: SurveillanceCamera + - uid: 12729 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,18.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Salvage Bay + type: SurveillanceCamera + - uid: 12777 + components: + - rot: 3.141592653589793 rad + pos: 37.5,-14.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Technical Storage + type: SurveillanceCamera +- proto: SynthesizerInstrument + entities: + - uid: 9740 + components: + - pos: 19.550474,-10.884444 + parent: 2 + type: Transform +- proto: Syringe + entities: + - uid: 10709 + components: + - pos: 63.47666,-9.457929 + parent: 2 + type: Transform + - uid: 11803 + components: + - pos: 61.49895,-0.38000047 + parent: 2 + type: Transform +- proto: Table + entities: + - uid: 52 + components: + - pos: -2.5,-9.5 + parent: 2 + type: Transform + - uid: 163 + components: + - pos: 5.5,-3.5 + parent: 2 + type: Transform + - uid: 164 + components: + - pos: 6.5,-3.5 + parent: 2 + type: Transform + - uid: 165 + components: + - pos: 6.5,-4.5 + parent: 2 + type: Transform + - uid: 300 + components: + - pos: 33.5,-4.5 + parent: 2 + type: Transform + - uid: 679 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-19.5 + parent: 2 + type: Transform + - uid: 778 + components: + - pos: 19.5,-23.5 + parent: 2 + type: Transform + - uid: 786 + components: + - pos: 19.5,-26.5 + parent: 2 + type: Transform + - uid: 787 + components: + - pos: 18.5,-26.5 + parent: 2 + type: Transform + - uid: 788 + components: + - pos: 17.5,-26.5 + parent: 2 + type: Transform + - uid: 789 + components: + - pos: 16.5,-26.5 + parent: 2 + type: Transform + - uid: 884 + components: + - pos: 32.5,-30.5 + parent: 2 + type: Transform + - uid: 1146 + components: + - pos: 43.5,-2.5 + parent: 2 + type: Transform + - uid: 1152 + components: + - pos: 29.5,-3.5 + parent: 2 + type: Transform + - uid: 1153 + components: + - pos: 30.5,-3.5 + parent: 2 + type: Transform + - uid: 1331 + components: + - rot: 3.141592653589793 rad + pos: 20.5,5.5 + parent: 2 + type: Transform + - uid: 1507 + components: + - pos: 36.5,-10.5 + parent: 2 + type: Transform + - uid: 1512 + components: + - pos: 38.5,-2.5 + parent: 2 + type: Transform + - uid: 1524 + components: + - pos: 39.5,-2.5 + parent: 2 + type: Transform + - uid: 1543 + components: + - pos: 35.5,-12.5 + parent: 2 + type: Transform + - uid: 1544 + components: + - pos: 36.5,-12.5 + parent: 2 + type: Transform + - uid: 1549 + components: + - pos: 37.5,-12.5 + parent: 2 + type: Transform + - uid: 1552 + components: + - pos: 35.5,-10.5 + parent: 2 + type: Transform + - uid: 1623 + components: + - pos: 64.5,13.5 + parent: 2 + type: Transform + - uid: 1642 + components: + - pos: 48.5,-7.5 + parent: 2 + type: Transform + - uid: 1656 + components: + - pos: 33.5,-5.5 + parent: 2 + type: Transform + - uid: 1758 + components: + - pos: 33.5,-14.5 + parent: 2 + type: Transform + - uid: 1768 + components: + - pos: 38.5,-17.5 + parent: 2 + type: Transform + - uid: 1777 + components: + - pos: 31.5,-14.5 + parent: 2 + type: Transform + - uid: 1778 + components: + - pos: 30.5,-14.5 + parent: 2 + type: Transform + - uid: 1853 + components: + - pos: -3.5,-9.5 + parent: 2 + type: Transform + - uid: 1857 + components: + - rot: 3.141592653589793 rad + pos: 19.5,5.5 + parent: 2 + type: Transform + - uid: 2121 + components: + - pos: 11.5,21.5 + parent: 2 + type: Transform + - uid: 2122 + components: + - pos: 10.5,21.5 + parent: 2 + type: Transform + - uid: 2127 + components: + - pos: 20.5,24.5 + parent: 2 + type: Transform + - uid: 2147 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,31.5 + parent: 2 + type: Transform + - uid: 2156 + components: + - pos: 15.5,35.5 + parent: 2 + type: Transform + - uid: 2306 + components: + - pos: 37.5,36.5 + parent: 2 + type: Transform + - uid: 2319 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,34.5 + parent: 2 + type: Transform + - uid: 2462 + components: + - pos: 36.5,20.5 + parent: 2 + type: Transform + - uid: 2486 + components: + - pos: 36.5,25.5 + parent: 2 + type: Transform + - uid: 2906 + components: + - pos: 62.5,-16.5 + parent: 2 + type: Transform + - uid: 2907 + components: + - pos: 63.5,-16.5 + parent: 2 + type: Transform + - uid: 3021 + components: + - pos: 51.5,-7.5 + parent: 2 + type: Transform + - uid: 3200 + components: + - pos: 79.5,-7.5 + parent: 2 + type: Transform + - uid: 3474 + components: + - pos: 78.5,-7.5 + parent: 2 + type: Transform + - uid: 3569 + components: + - pos: 63.5,-11.5 + parent: 2 + type: Transform + - uid: 3593 + components: + - pos: 63.5,-9.5 + parent: 2 + type: Transform + - uid: 3611 + components: + - pos: 72.5,6.5 + parent: 2 + type: Transform + - uid: 3614 + components: + - pos: 72.5,5.5 + parent: 2 + type: Transform + - uid: 4117 + components: + - pos: 18.5,-23.5 + parent: 2 + type: Transform + - uid: 4302 + components: + - pos: 17.5,-23.5 + parent: 2 + type: Transform + - uid: 4303 + components: + - pos: 16.5,-23.5 + parent: 2 + type: Transform + - uid: 4693 + components: + - pos: 20.5,15.5 + parent: 2 + type: Transform + - uid: 4694 + components: + - pos: 23.5,15.5 + parent: 2 + type: Transform + - uid: 5003 + components: + - pos: 52.5,-7.5 + parent: 2 + type: Transform + - uid: 5054 + components: + - pos: 49.5,-6.5 + parent: 2 + type: Transform + - uid: 5135 + components: + - pos: 75.5,-0.5 + parent: 2 + type: Transform + - uid: 5136 + components: + - pos: 74.5,-0.5 + parent: 2 + type: Transform + - uid: 5203 + components: + - pos: 66.5,-3.5 + parent: 2 + type: Transform + - uid: 5224 + components: + - pos: 82.5,-6.5 + parent: 2 + type: Transform + - uid: 5225 + components: + - pos: 82.5,-4.5 + parent: 2 + type: Transform + - uid: 5226 + components: + - pos: 81.5,-4.5 + parent: 2 + type: Transform + - uid: 5306 + components: + - pos: 56.5,17.5 + parent: 2 + type: Transform + - uid: 5307 + components: + - pos: 55.5,17.5 + parent: 2 + type: Transform + - uid: 5308 + components: + - pos: 54.5,17.5 + parent: 2 + type: Transform + - uid: 5309 + components: + - pos: 55.5,20.5 + parent: 2 + type: Transform + - uid: 5310 + components: + - pos: 55.5,20.5 + parent: 2 + type: Transform + - uid: 5311 + components: + - pos: 56.5,20.5 + parent: 2 + type: Transform + - uid: 5317 + components: + - rot: 1.5707963267948966 rad + pos: 49.5,19.5 + parent: 2 + type: Transform + - uid: 5318 + components: + - rot: 1.5707963267948966 rad + pos: 49.5,17.5 + parent: 2 + type: Transform + - uid: 5368 + components: + - pos: 55.5,10.5 + parent: 2 + type: Transform + - uid: 5369 + components: + - pos: 50.5,8.5 + parent: 2 + type: Transform + - uid: 5370 + components: + - pos: 52.5,8.5 + parent: 2 + type: Transform + - uid: 5449 + components: + - pos: 71.5,40.5 + parent: 2 + type: Transform + - uid: 5450 + components: + - pos: 71.5,37.5 + parent: 2 + type: Transform + - uid: 5473 + components: + - pos: 67.5,37.5 + parent: 2 + type: Transform + - uid: 5475 + components: + - pos: 67.5,38.5 + parent: 2 + type: Transform + - uid: 5521 + components: + - pos: 86.5,1.5 + parent: 2 + type: Transform + - uid: 5528 + components: + - pos: 64.5,20.5 + parent: 2 + type: Transform + - uid: 5710 + components: + - pos: 77.5,-13.5 + parent: 2 + type: Transform + - uid: 5728 + components: + - pos: 69.5,-5.5 + parent: 2 + type: Transform + - uid: 6572 + components: + - pos: 44.5,-2.5 + parent: 2 + type: Transform + - uid: 6672 + components: + - pos: 44.5,-5.5 + parent: 2 + type: Transform + - uid: 6756 + components: + - pos: 31.5,-7.5 + parent: 2 + type: Transform + - uid: 6811 + components: + - pos: 58.5,-9.5 + parent: 2 + type: Transform + - uid: 7077 + components: + - pos: 30.5,2.5 + parent: 2 + type: Transform + - uid: 7331 + components: + - pos: 18.5,24.5 + parent: 2 + type: Transform + - uid: 7467 + components: + - pos: 17.5,24.5 + parent: 2 + type: Transform + - uid: 7526 + components: + - pos: 67.5,-4.5 + parent: 2 + type: Transform + - uid: 7773 + components: + - pos: 21.5,22.5 + parent: 2 + type: Transform + - uid: 7853 + components: + - pos: 53.5,-5.5 + parent: 2 + type: Transform + - uid: 7978 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 2 + type: Transform + - uid: 8858 + components: + - pos: 107.5,-10.5 + parent: 2 + type: Transform + - uid: 8859 + components: + - pos: 107.5,-11.5 + parent: 2 + type: Transform + - uid: 9354 + components: + - pos: 25.5,6.5 + parent: 2 + type: Transform + - uid: 9356 + components: + - pos: 27.5,6.5 + parent: 2 + type: Transform + - uid: 9621 + components: + - pos: 46.5,2.5 + parent: 2 + type: Transform + - uid: 10072 + components: + - pos: 67.5,-3.5 + parent: 2 + type: Transform + - uid: 10077 + components: + - pos: 78.5,-6.5 + parent: 2 + type: Transform + - uid: 10268 + components: + - pos: 18.5,-3.5 + parent: 2 + type: Transform + - uid: 10269 + components: + - pos: 18.5,-2.5 + parent: 2 + type: Transform + - uid: 10270 + components: + - pos: 19.5,-2.5 + parent: 2 + type: Transform + - uid: 10277 + components: + - pos: 16.5,-5.5 + parent: 2 + type: Transform + - uid: 10663 + components: + - pos: 60.5,11.5 + parent: 2 + type: Transform + - uid: 10664 + components: + - pos: 63.5,9.5 + parent: 2 + type: Transform + - uid: 10665 + components: + - pos: 63.5,10.5 + parent: 2 + type: Transform + - uid: 10668 + components: + - pos: 63.5,8.5 + parent: 2 + type: Transform + - uid: 10803 + components: + - pos: 85.5,-15.5 + parent: 2 + type: Transform + - uid: 10828 + components: + - pos: 70.5,11.5 + parent: 2 + type: Transform + - uid: 11119 + components: + - pos: 54.5,-13.5 + parent: 2 + type: Transform + - uid: 11120 + components: + - pos: 54.5,-14.5 + parent: 2 + type: Transform + - uid: 11121 + components: + - pos: 54.5,-15.5 + parent: 2 + type: Transform + - uid: 11122 + components: + - pos: 57.5,-13.5 + parent: 2 + type: Transform + - uid: 11123 + components: + - pos: 57.5,-14.5 + parent: 2 + type: Transform + - uid: 11302 + components: + - pos: 60.5,-9.5 + parent: 2 + type: Transform + - uid: 11303 + components: + - pos: 63.5,-10.5 + parent: 2 + type: Transform + - uid: 11403 + components: + - pos: 65.5,-11.5 + parent: 2 + type: Transform + - uid: 11404 + components: + - pos: 65.5,-10.5 + parent: 2 + type: Transform + - uid: 11405 + components: + - pos: 65.5,-9.5 + parent: 2 + type: Transform + - uid: 11427 + components: + - rot: 1.5707963267948966 rad + pos: 76.5,4.5 + parent: 2 + type: Transform + - uid: 11428 + components: + - rot: 1.5707963267948966 rad + pos: 76.5,5.5 + parent: 2 + type: Transform + - uid: 11830 + components: + - pos: 59.5,3.5 + parent: 2 + type: Transform + - uid: 11832 + components: + - pos: 59.5,4.5 + parent: 2 + type: Transform + - uid: 11833 + components: + - pos: 67.5,3.5 + parent: 2 + type: Transform + - uid: 11834 + components: + - pos: 67.5,4.5 + parent: 2 + type: Transform + - uid: 11835 + components: + - pos: 64.5,4.5 + parent: 2 + type: Transform + - uid: 11836 + components: + - pos: 64.5,3.5 + parent: 2 + type: Transform + - uid: 11841 + components: + - pos: 59.5,-3.5 + parent: 2 + type: Transform + - uid: 11844 + components: + - pos: 57.5,-3.5 + parent: 2 + type: Transform + - uid: 11904 + components: + - pos: 78.5,7.5 + parent: 2 + type: Transform + - uid: 12582 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-19.5 + parent: 2 + type: Transform + - uid: 13120 + components: + - pos: 48.5,11.5 + parent: 2 + type: Transform +- proto: TableCarpet + entities: + - uid: 5501 + components: + - pos: 70.5,33.5 + parent: 2 + type: Transform + - uid: 5508 + components: + - pos: 70.5,27.5 + parent: 2 + type: Transform + - uid: 5509 + components: + - pos: 70.5,28.5 + parent: 2 + type: Transform + - uid: 5510 + components: + - pos: 70.5,29.5 + parent: 2 + type: Transform + - uid: 6618 + components: + - pos: 29.5,-5.5 + parent: 2 + type: Transform + - uid: 6935 + components: + - pos: 22.5,18.5 + parent: 2 + type: Transform +- proto: TableCounterWood + entities: + - uid: 9735 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-12.5 + parent: 2 + type: Transform + - uid: 9736 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-11.5 + parent: 2 + type: Transform + - uid: 9737 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-10.5 + parent: 2 + type: Transform + - uid: 9738 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-9.5 + parent: 2 + type: Transform +- proto: TableGlass + entities: + - uid: 12696 + components: + - rot: -1.5707963267948966 rad + pos: 104.5,-15.5 + parent: 2 + type: Transform + - uid: 12697 + components: + - rot: -1.5707963267948966 rad + pos: 103.5,-15.5 + parent: 2 + type: Transform + - uid: 12698 + components: + - rot: -1.5707963267948966 rad + pos: 102.5,-15.5 + parent: 2 + type: Transform + - uid: 12699 + components: + - rot: -1.5707963267948966 rad + pos: 102.5,-16.5 + parent: 2 + type: Transform +- proto: TablePlasmaGlass + entities: + - uid: 5708 + components: + - rot: 1.5707963267948966 rad + pos: 70.5,13.5 + parent: 2 + type: Transform + - uid: 5861 + components: + - rot: 1.5707963267948966 rad + pos: 71.5,13.5 + parent: 2 + type: Transform + - uid: 6476 + components: + - rot: 1.5707963267948966 rad + pos: 71.5,14.5 + parent: 2 + type: Transform + - uid: 12690 + components: + - pos: 107.5,-16.5 + parent: 2 + type: Transform + - uid: 12691 + components: + - pos: 106.5,-16.5 + parent: 2 + type: Transform + - uid: 12693 + components: + - pos: 106.5,-18.5 + parent: 2 + type: Transform + - uid: 12694 + components: + - pos: 107.5,-18.5 + parent: 2 + type: Transform + - uid: 13064 + components: + - pos: 7.5,-13.5 + parent: 2 + type: Transform + - uid: 13065 + components: + - pos: 6.5,-13.5 + parent: 2 + type: Transform +- proto: TableReinforced + entities: + - uid: 133 + components: + - pos: -2.5,-12.5 + parent: 2 + type: Transform + - uid: 134 + components: + - pos: -1.5,-12.5 + parent: 2 + type: Transform + - uid: 349 + components: + - pos: 41.5,22.5 + parent: 2 + type: Transform + - uid: 513 + components: + - pos: 40.5,-7.5 + parent: 2 + type: Transform + - uid: 564 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-2.5 + parent: 2 + type: Transform + - uid: 572 + components: + - pos: 37.5,-7.5 + parent: 2 + type: Transform + - uid: 935 + components: + - pos: 12.5,-33.5 + parent: 2 + type: Transform + - uid: 937 + components: + - pos: 12.5,-35.5 + parent: 2 + type: Transform + - uid: 1598 + components: + - pos: 37.5,-4.5 + parent: 2 + type: Transform + - uid: 1618 + components: + - pos: 36.5,-8.5 + parent: 2 + type: Transform + - uid: 1626 + components: + - pos: 35.5,-8.5 + parent: 2 + type: Transform + - uid: 1629 + components: + - pos: 37.5,-3.5 + parent: 2 + type: Transform + - uid: 1651 + components: + - pos: 37.5,-6.5 + parent: 2 + type: Transform + - uid: 1659 + components: + - pos: 37.5,-5.5 + parent: 2 + type: Transform + - uid: 2395 + components: + - pos: 17.5,40.5 + parent: 2 + type: Transform + - uid: 2420 + components: + - pos: 28.5,25.5 + parent: 2 + type: Transform + - uid: 2431 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,27.5 + parent: 2 + type: Transform + - uid: 2432 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,26.5 + parent: 2 + type: Transform + - uid: 2492 + components: + - pos: 30.5,29.5 + parent: 2 + type: Transform + - uid: 2991 + components: + - pos: 50.5,1.5 + parent: 2 + type: Transform + - uid: 2992 + components: + - pos: 51.5,1.5 + parent: 2 + type: Transform + - uid: 3512 + components: + - pos: 48.5,18.5 + parent: 2 + type: Transform + - uid: 4146 + components: + - pos: -1.5,-11.5 + parent: 2 + type: Transform + - uid: 4915 + components: + - pos: 19.5,41.5 + parent: 2 + type: Transform + - uid: 4916 + components: + - pos: 19.5,40.5 + parent: 2 + type: Transform + - uid: 4917 + components: + - pos: 17.5,41.5 + parent: 2 + type: Transform + - uid: 4972 + components: + - pos: 26.5,47.5 + parent: 2 + type: Transform + - uid: 4973 + components: + - pos: 28.5,47.5 + parent: 2 + type: Transform + - uid: 4974 + components: + - pos: 19.5,46.5 + parent: 2 + type: Transform + - uid: 4975 + components: + - pos: 21.5,46.5 + parent: 2 + type: Transform + - uid: 4980 + components: + - pos: 35.5,46.5 + parent: 2 + type: Transform + - uid: 4981 + components: + - pos: 33.5,46.5 + parent: 2 + type: Transform + - uid: 4983 + components: + - pos: 29.5,48.5 + parent: 2 + type: Transform + - uid: 4984 + components: + - pos: 30.5,48.5 + parent: 2 + type: Transform + - uid: 4985 + components: + - pos: 25.5,48.5 + parent: 2 + type: Transform + - uid: 4994 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,48.5 + parent: 2 + type: Transform + - uid: 4995 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,48.5 + parent: 2 + type: Transform + - uid: 5031 + components: + - pos: 50.5,-3.5 + parent: 2 + type: Transform + - uid: 5032 + components: + - pos: 54.5,-4.5 + parent: 2 + type: Transform + - uid: 5365 + components: + - pos: 47.5,12.5 + parent: 2 + type: Transform + - uid: 5813 + components: + - pos: 34.5,-8.5 + parent: 2 + type: Transform + - uid: 7545 + components: + - pos: 55.5,-10.5 + parent: 2 + type: Transform + - uid: 7611 + components: + - pos: 56.5,-10.5 + parent: 2 + type: Transform + - uid: 7612 + components: + - pos: 54.5,-10.5 + parent: 2 + type: Transform + - uid: 7739 + components: + - pos: -2.5,-2.5 + parent: 2 + type: Transform + - uid: 7937 + components: + - pos: 40.5,22.5 + parent: 2 + type: Transform + - uid: 7939 + components: + - pos: 41.5,24.5 + parent: 2 + type: Transform + - uid: 10310 + components: + - pos: 8.5,-6.5 + parent: 2 + type: Transform + - uid: 10474 + components: + - pos: 17.5,39.5 + parent: 2 + type: Transform + - uid: 11800 + components: + - rot: 3.141592653589793 rad + pos: 61.5,-0.5 + parent: 2 + type: Transform + - uid: 11839 + components: + - pos: 12.5,-34.5 + parent: 2 + type: Transform + - uid: 12423 + components: + - pos: 49.5,1.5 + parent: 2 + type: Transform +- proto: TableWood + entities: + - uid: 302 + components: + - pos: 13.5,4.5 + parent: 2 + type: Transform + - uid: 303 + components: + - pos: 13.5,3.5 + parent: 2 + type: Transform + - uid: 304 + components: + - pos: 11.5,4.5 + parent: 2 + type: Transform + - uid: 305 + components: + - pos: 10.5,4.5 + parent: 2 + type: Transform + - uid: 306 + components: + - pos: 8.5,4.5 + parent: 2 + type: Transform + - uid: 307 + components: + - pos: 8.5,3.5 + parent: 2 + type: Transform + - uid: 1177 + components: + - pos: 40.5,-11.5 + parent: 2 + type: Transform + - uid: 2405 + components: + - pos: 44.5,23.5 + parent: 2 + type: Transform + - uid: 2406 + components: + - pos: 45.5,23.5 + parent: 2 + type: Transform + - uid: 2407 + components: + - pos: 45.5,24.5 + parent: 2 + type: Transform + - uid: 2478 + components: + - pos: 43.5,19.5 + parent: 2 + type: Transform + - uid: 2713 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,33.5 + parent: 2 + type: Transform + - uid: 2714 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,32.5 + parent: 2 + type: Transform + - uid: 2715 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,30.5 + parent: 2 + type: Transform + - uid: 2716 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,29.5 + parent: 2 + type: Transform + - uid: 2719 + components: + - pos: 18.5,31.5 + parent: 2 + type: Transform + - uid: 2776 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,40.5 + parent: 2 + type: Transform + - uid: 2777 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,40.5 + parent: 2 + type: Transform + - uid: 2778 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,39.5 + parent: 2 + type: Transform + - uid: 2779 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,39.5 + parent: 2 + type: Transform + - uid: 5407 + components: + - pos: 34.5,41.5 + parent: 2 + type: Transform + - uid: 5408 + components: + - pos: 33.5,41.5 + parent: 2 + type: Transform + - uid: 5409 + components: + - pos: 32.5,41.5 + parent: 2 + type: Transform + - uid: 5410 + components: + - pos: 30.5,41.5 + parent: 2 + type: Transform + - uid: 5412 + components: + - pos: 31.5,39.5 + parent: 2 + type: Transform + - uid: 5413 + components: + - pos: 37.5,43.5 + parent: 2 + type: Transform + - uid: 7547 + components: + - pos: 30.5,6.5 + parent: 2 + type: Transform + - uid: 8646 + components: + - pos: 86.5,10.5 + parent: 2 + type: Transform + - uid: 8647 + components: + - pos: 84.5,10.5 + parent: 2 + type: Transform + - uid: 8648 + components: + - pos: 86.5,12.5 + parent: 2 + type: Transform + - uid: 8649 + components: + - pos: 83.5,8.5 + parent: 2 + type: Transform + - uid: 8650 + components: + - pos: 83.5,7.5 + parent: 2 + type: Transform + - uid: 9004 + components: + - pos: 18.5,29.5 + parent: 2 + type: Transform + - uid: 10635 + components: + - pos: 30.5,7.5 + parent: 2 + type: Transform + - uid: 11477 + components: + - pos: 43.5,20.5 + parent: 2 + type: Transform +- proto: TargetClown + entities: + - uid: 9607 + components: + - pos: 27.5,8.5 + parent: 2 + type: Transform +- proto: TegCenter + entities: + - uid: 13127 + components: + - pos: 40.5,-46.5 + parent: 2 + type: Transform +- proto: TegCirculator + entities: + - uid: 13128 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-47.5 + parent: 2 + type: Transform + - color: '#FF3300FF' + type: PointLight + - uid: 13129 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-45.5 + parent: 2 + type: Transform + - color: '#FF3300FF' + type: PointLight +- proto: TelecomServer + entities: + - uid: 533 + components: + - pos: 16.5,-16.5 + parent: 2 + type: Transform + - 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: [] + type: ContainerContainer + - uid: 5183 + components: + - pos: 13.5,-16.5 + parent: 2 + type: Transform + - 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: [] + type: ContainerContainer + - uid: 10443 + components: + - pos: 14.5,-16.5 + parent: 2 + type: Transform + - 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: [] + type: ContainerContainer + - uid: 12111 + components: + - pos: 15.5,-16.5 + parent: 2 + type: Transform + - 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: [] + type: ContainerContainer + - uid: 12112 + components: + - pos: 13.5,-18.5 + parent: 2 + type: Transform + - 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: [] + type: ContainerContainer + - uid: 12232 + components: + - pos: 14.5,-18.5 + parent: 2 + type: Transform + - 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: [] + type: ContainerContainer + - uid: 12233 + components: + - pos: 15.5,-18.5 + parent: 2 + type: Transform + - 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: [] + type: ContainerContainer + - uid: 12395 + components: + - pos: 16.5,-18.5 + parent: 2 + type: Transform + - 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: [] + type: ContainerContainer +- proto: TintedWindow + entities: + - uid: 1165 + components: + - pos: 24.5,-12.5 + parent: 2 + type: Transform + - uid: 1196 + components: + - pos: 24.5,-9.5 + parent: 2 + type: Transform + - uid: 6813 + components: + - pos: 63.5,-8.5 + parent: 2 + type: Transform + - uid: 7580 + components: + - pos: 62.5,-8.5 + parent: 2 + type: Transform + - uid: 11195 + components: + - pos: 60.5,-8.5 + parent: 2 + type: Transform +- proto: ToiletEmpty + entities: + - uid: 460 + components: + - pos: 8.5,13.5 + parent: 2 + type: Transform + - uid: 461 + components: + - rot: 3.141592653589793 rad + pos: 8.5,12.5 + parent: 2 + type: Transform + - uid: 2291 + components: + - pos: 41.5,37.5 + parent: 2 + type: Transform + - uid: 5701 + components: + - pos: 79.5,-12.5 + parent: 2 + type: Transform + - uid: 5702 + components: + - rot: 3.141592653589793 rad + pos: 79.5,-13.5 + parent: 2 + type: Transform + - uid: 9019 + components: + - pos: 102.5,-12.5 + parent: 2 + type: Transform + - uid: 11901 + components: + - rot: -1.5707963267948966 rad + pos: 78.5,8.5 + parent: 2 + type: Transform +- proto: ToolboxElectricalFilled + entities: + - uid: 5378 + components: + - pos: 52.6158,11.657994 + parent: 2 + type: Transform + - uid: 5626 + components: + - pos: 18.84633,-23.378391 + parent: 2 + type: Transform + - uid: 12356 + components: + - pos: 36.482082,-14.3137665 + parent: 2 + type: Transform +- proto: ToolboxEmergencyFilled + entities: + - uid: 4997 + components: + - rot: 3.573787398636341E-05 rad + pos: 35.50106,46.735016 + parent: 2 + type: Transform + - uid: 11411 + components: + - pos: 31.521385,-17.29768 + parent: 2 + type: Transform +- proto: ToolboxGoldFilled + entities: + - uid: 12095 + components: + - pos: 19.490185,40.6353 + parent: 2 + type: Transform +- proto: ToolboxMechanicalFilled + entities: + - uid: 4998 + components: + - pos: 35.491802,46.459015 + parent: 2 + type: Transform + - uid: 7357 + components: + - pos: 18.414553,24.540695 + parent: 2 + type: Transform + - uid: 11410 + components: + - pos: 31.521385,-17.500805 + parent: 2 + type: Transform + - uid: 12357 + components: + - pos: 36.482082,-14.5012665 + parent: 2 + type: Transform +- proto: ToyAi + entities: + - uid: 12848 + components: + - pos: 56.486958,35.880013 + parent: 2 + type: Transform +- proto: ToyRubberDuck + entities: + - uid: 2321 + components: + - pos: 37.63663,34.272766 + parent: 2 + type: Transform + - uid: 6933 + components: + - pos: 12.5,12.5 + parent: 2 + type: Transform +- proto: ToySpawner + entities: + - uid: 8652 + components: + - pos: 84.5,12.5 + parent: 2 + type: Transform +- proto: TrashBag + entities: + - uid: 10811 + components: + - pos: 89.33498,-20.63679 + parent: 2 + type: Transform +- proto: TrashBananaPeel + entities: + - uid: 5880 + components: + - pos: 0.13960361,-25.931139 + parent: 2 + type: Transform + - uid: 9603 + components: + - pos: 26.493341,6.2912045 + parent: 2 + type: Transform +- proto: TraversalDistorterMachineCircuitboard + entities: + - uid: 12362 + components: + - pos: 36.435207,-17.360641 + parent: 2 + type: Transform +- proto: TrumpetInstrument + entities: + - uid: 5030 + components: + - pos: 84.55714,10.563628 + parent: 2 + type: Transform +- proto: TwoWayLever + entities: + - uid: 944 + components: + - pos: 8.5,16.5 + parent: 2 + type: Transform + - linkedPorts: + 6843: + - Left: Forward + - Right: Reverse + - Middle: Off + 7667: + - Left: Forward + - Right: Reverse + - Middle: Off + 6844: + - Left: Forward + - Right: Reverse + - Middle: Off + 7891: + - Left: Forward + - Right: Reverse + - Middle: Off + 7841: + - Left: Forward + - Right: Reverse + - Middle: Off + 7875: + - Left: Forward + - Right: Reverse + - Middle: Off + 7949: + - Left: Forward + - Right: Reverse + - Middle: Off + 7586: + - Left: Forward + - Right: Reverse + - Middle: Off + 6825: + - Left: Forward + - Right: Reverse + - Middle: Off + 7672: + - Left: Forward + - Right: Reverse + - Middle: Off + 7585: + - Left: Forward + - Right: Reverse + - Middle: Off + 2028: + - Left: Forward + - Right: Reverse + - Middle: Off + 6823: + - Left: Forward + - Right: Reverse + - Middle: Off + 7888: + - Left: Forward + - Right: Reverse + - Middle: Off + 6820: + - Left: Forward + - Right: Reverse + - Middle: Off + 7849: + - Left: Forward + - Right: Reverse + - Middle: Off + 2030: + - Left: Forward + - Right: Reverse + - Middle: Off + 7671: + - Left: Forward + - Right: Reverse + - Middle: Off + 6846: + - Left: Forward + - Right: Reverse + - Middle: Off + 7880: + - Left: Forward + - Right: Reverse + - Middle: Off + 7878: + - Left: Forward + - Right: Reverse + - Middle: Off + 7879: + - Left: Forward + - Right: Reverse + - Middle: Off + 7876: + - Left: Forward + - Right: Reverse + - Middle: Off + 5285: + - Left: Forward + - Right: Reverse + - Middle: Off + 1319: + - Left: Forward + - Right: Reverse + - Middle: Off + 6775: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 2154 + components: + - pos: 8.479812,22.588839 + parent: 2 + type: Transform + - linkedPorts: + 2039: + - Left: Forward + - Right: Reverse + - Middle: Off + 2040: + - Left: Forward + - Right: Reverse + - Middle: Off + 2067: + - Left: Forward + - Right: Reverse + - Middle: Off + 2051: + - Left: Forward + - Right: Reverse + - Middle: Off + 2066: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 5856 + components: + - pos: 2.5,-30.5 + parent: 2 + type: Transform + - linkedPorts: + 5842: + - Left: Forward + - Right: Reverse + - Middle: Off + 5843: + - Left: Forward + - Right: Reverse + - Middle: Off + 5844: + - Left: Forward + - Right: Reverse + - Middle: Off + 5845: + - Left: Forward + - Right: Reverse + - Middle: Off + 5846: + - Left: Forward + - Right: Reverse + - Middle: Off + 5847: + - Left: Forward + - Right: Reverse + - Middle: Off + 5850: + - Left: Forward + - Right: Reverse + - Middle: Off + 5851: + - Left: Forward + - Right: Reverse + - Middle: Off + 5852: + - Left: Forward + - Right: Reverse + - Middle: Off + 5853: + - Left: Forward + - Right: Reverse + - Middle: Off + 5854: + - Left: Forward + - Right: Reverse + - Middle: Off + 5855: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 5857 + components: + - pos: 2.5,-31.5 + parent: 2 + type: Transform + - linkedPorts: + 5875: + - Left: Open + - Right: Open + - Middle: Close + type: DeviceLinkSource + - uid: 7808 + components: + - pos: 8.5,28.5 + parent: 2 + type: Transform + - linkedPorts: + 2038: + - Left: Forward + - Right: Reverse + - Middle: Off + 2037: + - Left: Forward + - Right: Reverse + - Middle: Off + 2041: + - Left: Forward + - Right: Reverse + - Middle: Off + 2042: + - Left: Forward + - Right: Reverse + - Middle: Off + 2064: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 8665 + components: + - pos: 63.5,25.5 + parent: 2 + type: Transform + - linkedPorts: + 5351: + - Left: Open + - Right: Open + - Middle: Close + 5361: + - Left: Open + - Right: Open + - Middle: Close + type: DeviceLinkSource + - uid: 10322 + components: + - pos: 44.5,11.5 + parent: 2 + type: Transform + - linkedPorts: + 5268: + - Left: Open + - Right: Open + - Middle: Close + type: DeviceLinkSource + - uid: 13115 + components: + - pos: 44.5,-46.5 + parent: 2 + type: Transform + - linkedPorts: + 12890: + - Left: Open + - Right: Open + - Middle: Close + 12891: + - Left: Open + - Right: Open + - Middle: Close + type: DeviceLinkSource +- proto: UnfinishedMachineFrame + entities: + - uid: 5664 + components: + - pos: 20.5,-43.5 + parent: 2 + type: Transform + - uid: 5665 + components: + - pos: 22.5,-43.5 + parent: 2 + type: Transform +- proto: UniformPrinter + entities: + - uid: 10283 + components: + - pos: 20.5,-4.5 + parent: 2 + type: Transform +- proto: Vaccinator + entities: + - uid: 12157 + components: + - pos: 81.5,-7.5 + parent: 2 + type: Transform +- proto: VehicleKeyJanicart + entities: + - uid: 4300 + components: + - pos: 6.513515,-4.4061713 + parent: 2 + type: Transform +- proto: VehicleKeySecway + entities: + - uid: 8447 + components: + - pos: 36.51057,20.60821 + parent: 2 + type: Transform +- proto: VendingBarDrobe + entities: + - uid: 4407 + components: + - flags: SessionSpecific + type: MetaData + - pos: 40.5,-9.5 + parent: 2 + type: Transform +- proto: VendingMachineAtmosDrobe + entities: + - uid: 4100 + components: + - flags: SessionSpecific + type: MetaData + - pos: 29.5,-30.5 + parent: 2 + type: Transform +- proto: VendingMachineBooze + entities: + - uid: 540 + components: + - flags: SessionSpecific + type: MetaData + - pos: 38.5,-8.5 + parent: 2 + type: Transform + - uid: 2900 + components: + - flags: SessionSpecific + type: MetaData + - pos: 66.5,-13.5 + parent: 2 + type: Transform +- proto: VendingMachineCargoDrobe + entities: + - uid: 8176 + components: + - flags: SessionSpecific + type: MetaData + - pos: 9.5,32.5 + parent: 2 + type: Transform +- proto: VendingMachineCart + entities: + - uid: 10267 + components: + - flags: SessionSpecific + type: MetaData + - pos: 20.5,-5.5 + parent: 2 + type: Transform +- proto: VendingMachineChapel + entities: + - uid: 12201 + components: + - flags: SessionSpecific + type: MetaData + - pos: 31.5,9.5 + parent: 2 + type: Transform +- proto: VendingMachineChefDrobe + entities: + - uid: 4249 + components: + - flags: SessionSpecific + type: MetaData + - pos: 29.5,-9.5 + parent: 2 + type: Transform +- proto: VendingMachineChefvend + entities: + - uid: 4248 + components: + - flags: SessionSpecific + type: MetaData + - pos: 34.5,-12.5 + parent: 2 + type: Transform +- proto: VendingMachineChemDrobe + entities: + - uid: 5058 + components: + - flags: SessionSpecific + type: MetaData + - pos: 49.5,-8.5 + parent: 2 + type: Transform +- proto: VendingMachineChemicals + entities: + - uid: 5061 + components: + - flags: SessionSpecific + type: MetaData + - pos: 51.5,-4.5 + parent: 2 + type: Transform +- proto: VendingMachineCigs + entities: + - uid: 2771 + components: + - flags: SessionSpecific + name: cigarette machine + type: MetaData + - pos: 24.5,42.5 + parent: 2 + type: Transform + - uid: 5349 + components: + - flags: SessionSpecific + name: cigarette machine + type: MetaData + - pos: 63.5,16.5 + parent: 2 + type: Transform + - uid: 5426 + components: + - flags: SessionSpecific + name: cigarette machine + type: MetaData + - pos: 34.5,43.5 + parent: 2 + type: Transform + - uid: 6615 + components: + - flags: SessionSpecific + type: MetaData + - pos: 32.5,-2.5 + parent: 2 + type: Transform + - uid: 11033 + components: + - flags: SessionSpecific + type: MetaData + - pos: 19.5,35.5 + parent: 2 + type: Transform +- proto: VendingMachineClothing + entities: + - uid: 127 + components: + - flags: SessionSpecific + type: MetaData + - pos: 20.5,7.5 + parent: 2 + type: Transform +- proto: VendingMachineCoffee + entities: + - uid: 586 + components: + - flags: SessionSpecific + name: Hot drinks machine + type: MetaData + - pos: 11.5,-3.5 + parent: 2 + type: Transform + - uid: 613 + components: + - flags: SessionSpecific + name: Hot drinks machine + type: MetaData + - pos: 21.5,42.5 + parent: 2 + type: Transform + - uid: 5350 + components: + - flags: SessionSpecific + name: Hot drinks machine + type: MetaData + - pos: 62.5,16.5 + parent: 2 + type: Transform + - uid: 5468 + components: + - flags: SessionSpecific + name: Hot drinks machine + type: MetaData + - pos: 67.5,41.5 + parent: 2 + type: Transform + - uid: 8864 + components: + - flags: SessionSpecific + name: Hot drinks machine + type: MetaData + - pos: 107.5,-12.5 + parent: 2 + type: Transform + - uid: 11224 + components: + - flags: SessionSpecific + name: Hot drinks machine + type: MetaData + - pos: 45.5,20.5 + parent: 2 + type: Transform + - uid: 11432 + components: + - flags: SessionSpecific + type: MetaData + - pos: 78.5,3.5 + parent: 2 + type: Transform +- proto: VendingMachineCondiments + entities: + - uid: 6757 + components: + - flags: SessionSpecific + type: MetaData + - pos: 31.5,-7.5 + parent: 2 + type: Transform +- proto: VendingMachineDetDrobe + entities: + - uid: 7711 + components: + - flags: SessionSpecific + type: MetaData + - pos: 41.5,17.5 + parent: 2 + type: Transform +- proto: VendingMachineDinnerware + entities: + - uid: 1550 + components: + - flags: SessionSpecific + type: MetaData + - pos: 33.5,-12.5 + parent: 2 + type: Transform +- proto: VendingMachineEngiDrobe + entities: + - uid: 4093 + components: + - flags: SessionSpecific + type: MetaData + - pos: 23.5,-30.5 + parent: 2 + type: Transform +- proto: VendingMachineEngivend + entities: + - uid: 799 + components: + - flags: SessionSpecific + type: MetaData + - pos: 23.5,-27.5 + parent: 2 + type: Transform +- proto: VendingMachineGames + entities: + - uid: 570 + components: + - flags: SessionSpecific + type: MetaData + - pos: 8.5,5.5 + parent: 2 + type: Transform +- proto: VendingMachineGeneDrobe + entities: + - uid: 11912 + components: + - flags: SessionSpecific + type: MetaData + - pos: 74.5,4.5 + parent: 2 + type: Transform +- proto: VendingMachineHydrobe + entities: + - uid: 6664 + components: + - flags: SessionSpecific + type: MetaData + - pos: 44.5,-9.5 + parent: 2 + type: Transform +- proto: VendingMachineJaniDrobe + entities: + - uid: 11963 + components: + - flags: SessionSpecific + type: MetaData + - pos: 3.5,-6.5 + parent: 2 + type: Transform +- proto: VendingMachineLawDrobe + entities: + - uid: 140 + components: + - flags: SessionSpecific + type: MetaData + - pos: -0.5,-7.5 + parent: 2 + type: Transform +- proto: VendingMachineMedical + entities: + - uid: 5048 + components: + - flags: SessionSpecific + type: MetaData + - pos: 53.5,4.5 + parent: 2 + type: Transform +- proto: VendingMachineMediDrobe + entities: + - uid: 11913 + components: + - flags: SessionSpecific + type: MetaData + - pos: 70.5,4.5 + parent: 2 + type: Transform +- proto: VendingMachineNutri + entities: + - uid: 6678 + components: + - flags: SessionSpecific + type: MetaData + - pos: 44.5,-4.5 + parent: 2 + type: Transform +- proto: VendingMachineRoboDrobe + entities: + - uid: 5376 + components: + - flags: SessionSpecific + type: MetaData + - pos: 53.5,11.5 + parent: 2 + type: Transform +- proto: VendingMachineRobotics + entities: + - uid: 10078 + components: + - flags: SessionSpecific + type: MetaData + - pos: 50.5,11.5 + parent: 2 + type: Transform +- proto: VendingMachineSalvage + entities: + - uid: 11811 + components: + - flags: SessionSpecific + name: Salvage Equipment + type: MetaData + - pos: 7.5,19.5 + parent: 2 + type: Transform +- proto: VendingMachineSciDrobe + entities: + - uid: 11953 + components: + - flags: SessionSpecific + type: MetaData + - pos: 58.5,25.5 + parent: 2 + type: Transform +- proto: VendingMachineSec + entities: + - uid: 2467 + components: + - flags: SessionSpecific + type: MetaData + - pos: 36.5,17.5 + parent: 2 + type: Transform +- proto: VendingMachineSecDrobe + entities: + - uid: 2464 + components: + - flags: SessionSpecific + type: MetaData + - pos: 37.5,19.5 + parent: 2 + type: Transform +- proto: VendingMachineSeeds + entities: + - uid: 6676 + components: + - flags: SessionSpecific + type: MetaData + - pos: 43.5,-4.5 + parent: 2 + type: Transform +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 6866 + components: + - flags: SessionSpecific + type: MetaData + - pos: 39.5,36.5 + parent: 2 + type: Transform +- proto: VendingMachineSmartFridge + entities: + - uid: 228 + components: + - flags: SessionSpecific + type: MetaData + - pos: 40.5,-6.5 + parent: 2 + type: Transform + - uid: 2963 + components: + - flags: SessionSpecific + type: MetaData + - pos: 54.5,-5.5 + parent: 2 + type: Transform + - uid: 11837 + components: + - flags: SessionSpecific + type: MetaData + - pos: 62.5,-3.5 + parent: 2 + type: Transform + - uid: 13110 + components: + - flags: SessionSpecific + type: MetaData + - pos: 67.5,-8.5 + parent: 2 + type: Transform +- proto: VendingMachineSovietSoda + entities: + - uid: 5467 + components: + - flags: SessionSpecific + type: MetaData + - pos: 67.5,35.5 + parent: 2 + type: Transform +- proto: VendingMachineSustenance + entities: + - uid: 12080 + components: + - flags: SessionSpecific + type: MetaData + - pos: 41.5,34.5 + parent: 2 + type: Transform +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 7285 + components: + - flags: SessionSpecific + type: MetaData + - pos: 33.5,-25.5 + parent: 2 + type: Transform + - uid: 10305 + components: + - flags: SessionSpecific + type: MetaData + - pos: 8.5,-7.5 + parent: 2 + type: Transform +- proto: VendingMachineTheater + entities: + - uid: 1144 + components: + - flags: SessionSpecific + type: MetaData + - pos: 25.5,8.5 + parent: 2 + type: Transform +- proto: VendingMachineVendomat + entities: + - uid: 12214 + components: + - flags: SessionSpecific + type: MetaData + - pos: 29.5,-14.5 + parent: 2 + type: Transform +- proto: VendingMachineViroDrobe + entities: + - uid: 11964 + components: + - flags: SessionSpecific + type: MetaData + - pos: 79.5,-3.5 + parent: 2 + type: Transform +- proto: VendingMachineWinter + entities: + - uid: 10706 + components: + - flags: SessionSpecific + type: MetaData + - pos: 20.5,8.5 + parent: 2 + type: Transform +- proto: VendingMachineYouTool + entities: + - uid: 798 + components: + - flags: SessionSpecific + type: MetaData + - pos: 23.5,-26.5 + parent: 2 + type: Transform + - uid: 1759 + components: + - flags: SessionSpecific + type: MetaData + - pos: 32.5,-14.5 + parent: 2 + type: Transform +- proto: ViolinInstrument + entities: + - uid: 9357 + components: + - pos: 25.493341,6.5724545 + parent: 2 + type: Transform +- proto: WallmountSubstationElectronics + entities: + - uid: 12384 + components: + - pos: 41.640457,-15.5325165 + parent: 2 + type: Transform +- proto: WallmountTelescreen + entities: + - uid: 10669 + components: + - rot: -1.5707963267948966 rad + pos: 63.5,9.5 + parent: 2 + type: Transform + - uid: 10831 + components: + - pos: 31.5,43.5 + parent: 2 + type: Transform +- proto: WallReinforced + entities: + - uid: 4 + components: + - pos: 5.5,14.5 + parent: 2 + type: Transform + - uid: 22 + components: + - pos: -7.5,-3.5 + parent: 2 + type: Transform + - uid: 49 + components: + - pos: -10.5,1.5 + parent: 2 + type: Transform + - uid: 67 + components: + - pos: 14.5,-13.5 + parent: 2 + type: Transform + - uid: 72 + components: + - pos: 10.5,37.5 + parent: 2 + type: Transform + - uid: 75 + components: + - pos: 10.5,36.5 + parent: 2 + type: Transform + - uid: 97 + components: + - pos: 46.5,-34.5 + parent: 2 + type: Transform + - uid: 156 + components: + - pos: 7.5,-2.5 + parent: 2 + type: Transform + - uid: 157 + components: + - pos: 7.5,-3.5 + parent: 2 + type: Transform + - uid: 158 + components: + - pos: 7.5,-4.5 + parent: 2 + type: Transform + - uid: 159 + components: + - pos: 7.5,-5.5 + parent: 2 + type: Transform + - uid: 160 + components: + - pos: 7.5,-6.5 + parent: 2 + type: Transform + - uid: 161 + components: + - pos: 7.5,-7.5 + parent: 2 + type: Transform + - uid: 179 + components: + - pos: 7.5,-8.5 + parent: 2 + type: Transform + - uid: 180 + components: + - pos: 7.5,-9.5 + parent: 2 + type: Transform + - uid: 181 + components: + - pos: 7.5,-10.5 + parent: 2 + type: Transform + - uid: 206 + components: + - pos: 10.5,-3.5 + parent: 2 + type: Transform + - uid: 207 + components: + - pos: 10.5,-4.5 + parent: 2 + type: Transform + - uid: 208 + components: + - pos: 11.5,-4.5 + parent: 2 + type: Transform + - uid: 209 + components: + - pos: 12.5,-4.5 + parent: 2 + type: Transform + - uid: 210 + components: + - pos: 13.5,-4.5 + parent: 2 + type: Transform + - uid: 211 + components: + - pos: 13.5,-5.5 + parent: 2 + type: Transform + - uid: 212 + components: + - pos: 13.5,-6.5 + parent: 2 + type: Transform + - uid: 213 + components: + - pos: 13.5,-7.5 + parent: 2 + type: Transform + - uid: 214 + components: + - pos: 13.5,-8.5 + parent: 2 + type: Transform + - uid: 215 + components: + - pos: 13.5,-9.5 + parent: 2 + type: Transform + - uid: 216 + components: + - pos: 12.5,-9.5 + parent: 2 + type: Transform + - uid: 217 + components: + - pos: 11.5,-9.5 + parent: 2 + type: Transform + - uid: 218 + components: + - pos: 10.5,-9.5 + parent: 2 + type: Transform + - uid: 219 + components: + - pos: 10.5,-10.5 + parent: 2 + type: Transform + - uid: 220 + components: + - pos: 8.5,-10.5 + parent: 2 + type: Transform + - uid: 246 + components: + - pos: -7.5,1.5 + parent: 2 + type: Transform + - uid: 250 + components: + - pos: -6.5,14.5 + parent: 2 + type: Transform + - uid: 254 + components: + - pos: -8.5,1.5 + parent: 2 + type: Transform + - uid: 324 + components: + - pos: 6.5,14.5 + parent: 2 + type: Transform + - uid: 343 + components: + - pos: 0.5,14.5 + parent: 2 + type: Transform + - uid: 344 + components: + - pos: -12.5,1.5 + parent: 2 + type: Transform + - uid: 398 + components: + - pos: 4.5,20.5 + parent: 2 + type: Transform + - uid: 417 + components: + - pos: 49.5,-30.5 + parent: 2 + type: Transform + - uid: 430 + components: + - pos: 6.5,21.5 + parent: 2 + type: Transform + - uid: 431 + components: + - pos: 6.5,20.5 + parent: 2 + type: Transform + - uid: 435 + components: + - pos: 65.5,24.5 + parent: 2 + type: Transform + - uid: 462 + components: + - pos: -14.5,-11.5 + parent: 2 + type: Transform + - uid: 470 + components: + - pos: 5.5,-16.5 + parent: 2 + type: Transform + - uid: 485 + components: + - pos: 15.5,-6.5 + parent: 2 + type: Transform + - uid: 490 + components: + - pos: 16.5,-6.5 + parent: 2 + type: Transform + - uid: 491 + components: + - pos: 17.5,-6.5 + parent: 2 + type: Transform + - uid: 492 + components: + - pos: 18.5,-6.5 + parent: 2 + type: Transform + - uid: 493 + components: + - pos: 19.5,-6.5 + parent: 2 + type: Transform + - uid: 494 + components: + - pos: 20.5,-6.5 + parent: 2 + type: Transform + - uid: 495 + components: + - pos: 21.5,-6.5 + parent: 2 + type: Transform + - uid: 496 + components: + - pos: 21.5,-5.5 + parent: 2 + type: Transform + - uid: 497 + components: + - pos: 21.5,-4.5 + parent: 2 + type: Transform + - uid: 498 + components: + - pos: 21.5,-3.5 + parent: 2 + type: Transform + - uid: 499 + components: + - pos: 21.5,-2.5 + parent: 2 + type: Transform + - uid: 500 + components: + - pos: 21.5,-1.5 + parent: 2 + type: Transform + - uid: 501 + components: + - pos: 20.5,-1.5 + parent: 2 + type: Transform + - uid: 502 + components: + - pos: 19.5,-1.5 + parent: 2 + type: Transform + - uid: 503 + components: + - pos: 18.5,-1.5 + parent: 2 + type: Transform + - uid: 504 + components: + - pos: 17.5,-1.5 + parent: 2 + type: Transform + - uid: 505 + components: + - pos: 17.5,-2.5 + parent: 2 + type: Transform + - uid: 506 + components: + - pos: 13.5,-2.5 + parent: 2 + type: Transform + - uid: 509 + components: + - pos: -7.5,-11.5 + parent: 2 + type: Transform + - uid: 534 + components: + - pos: 18.5,-13.5 + parent: 2 + type: Transform + - uid: 536 + components: + - pos: 20.5,-13.5 + parent: 2 + type: Transform + - uid: 537 + components: + - pos: 21.5,-13.5 + parent: 2 + type: Transform + - uid: 538 + components: + - pos: 22.5,-13.5 + parent: 2 + type: Transform + - uid: 539 + components: + - pos: 23.5,-13.5 + parent: 2 + type: Transform + - uid: 541 + components: + - pos: 17.5,-13.5 + parent: 2 + type: Transform + - uid: 553 + components: + - pos: -12.5,14.5 + parent: 2 + type: Transform + - uid: 573 + components: + - pos: 16.5,-22.5 + parent: 2 + type: Transform + - uid: 580 + components: + - pos: 17.5,-22.5 + parent: 2 + type: Transform + - uid: 581 + components: + - pos: 18.5,-22.5 + parent: 2 + type: Transform + - uid: 612 + components: + - pos: -15.5,-15.5 + parent: 2 + type: Transform + - uid: 615 + components: + - pos: 17.5,-14.5 + parent: 2 + type: Transform + - uid: 616 + components: + - pos: 17.5,-15.5 + parent: 2 + type: Transform + - uid: 618 + components: + - pos: 14.5,-14.5 + parent: 2 + type: Transform + - uid: 619 + components: + - pos: 15.5,-14.5 + parent: 2 + type: Transform + - uid: 620 + components: + - pos: 13.5,-14.5 + parent: 2 + type: Transform + - uid: 621 + components: + - pos: 12.5,-14.5 + parent: 2 + type: Transform + - uid: 623 + components: + - pos: 11.5,-15.5 + parent: 2 + type: Transform + - uid: 624 + components: + - pos: 11.5,-16.5 + parent: 2 + type: Transform + - uid: 625 + components: + - pos: 11.5,-17.5 + parent: 2 + type: Transform + - uid: 626 + components: + - pos: 11.5,-18.5 + parent: 2 + type: Transform + - uid: 627 + components: + - pos: 11.5,-19.5 + parent: 2 + type: Transform + - uid: 629 + components: + - pos: 12.5,-15.5 + parent: 2 + type: Transform + - uid: 630 + components: + - pos: 12.5,-16.5 + parent: 2 + type: Transform + - uid: 631 + components: + - pos: 12.5,-17.5 + parent: 2 + type: Transform + - uid: 632 + components: + - pos: 12.5,-18.5 + parent: 2 + type: Transform + - uid: 633 + components: + - pos: 12.5,-19.5 + parent: 2 + type: Transform + - uid: 634 + components: + - pos: 12.5,-20.5 + parent: 2 + type: Transform + - uid: 635 + components: + - pos: 15.5,-15.5 + parent: 2 + type: Transform + - uid: 636 + components: + - pos: 14.5,-15.5 + parent: 2 + type: Transform + - uid: 637 + components: + - pos: 13.5,-15.5 + parent: 2 + type: Transform + - uid: 638 + components: + - pos: 13.5,-20.5 + parent: 2 + type: Transform + - uid: 639 + components: + - pos: 14.5,-20.5 + parent: 2 + type: Transform + - uid: 640 + components: + - pos: 15.5,-20.5 + parent: 2 + type: Transform + - uid: 641 + components: + - pos: 16.5,-20.5 + parent: 2 + type: Transform + - uid: 642 + components: + - pos: 19.5,-20.5 + parent: 2 + type: Transform + - uid: 643 + components: + - pos: 20.5,-20.5 + parent: 2 + type: Transform + - uid: 644 + components: + - pos: 21.5,-20.5 + parent: 2 + type: Transform + - uid: 645 + components: + - pos: 22.5,-20.5 + parent: 2 + type: Transform + - uid: 646 + components: + - pos: 23.5,-20.5 + parent: 2 + type: Transform + - uid: 647 + components: + - pos: 24.5,-20.5 + parent: 2 + type: Transform + - uid: 648 + components: + - pos: 13.5,-19.5 + parent: 2 + type: Transform + - uid: 649 + components: + - pos: 14.5,-19.5 + parent: 2 + type: Transform + - uid: 650 + components: + - pos: 15.5,-19.5 + parent: 2 + type: Transform + - uid: 651 + components: + - pos: 16.5,-19.5 + parent: 2 + type: Transform + - uid: 652 + components: + - pos: 17.5,-19.5 + parent: 2 + type: Transform + - uid: 653 + components: + - pos: 18.5,-19.5 + parent: 2 + type: Transform + - uid: 654 + components: + - pos: 19.5,-19.5 + parent: 2 + type: Transform + - uid: 655 + components: + - pos: 24.5,-19.5 + parent: 2 + type: Transform + - uid: 656 + components: + - pos: 24.5,-18.5 + parent: 2 + type: Transform + - uid: 657 + components: + - pos: 24.5,-16.5 + parent: 2 + type: Transform + - uid: 658 + components: + - pos: 24.5,-15.5 + parent: 2 + type: Transform + - uid: 659 + components: + - pos: 24.5,-14.5 + parent: 2 + type: Transform + - uid: 680 + components: + - pos: -17.5,-15.5 + parent: 2 + type: Transform + - uid: 690 + components: + - pos: -17.5,-11.5 + parent: 2 + type: Transform + - uid: 691 + components: + - pos: -21.5,-11.5 + parent: 2 + type: Transform + - uid: 693 + components: + - pos: -9.5,-15.5 + parent: 2 + type: Transform + - uid: 705 + components: + - pos: -7.5,14.5 + parent: 2 + type: Transform + - uid: 707 + components: + - pos: 12.5,-22.5 + parent: 2 + type: Transform + - uid: 708 + components: + - pos: 12.5,-23.5 + parent: 2 + type: Transform + - uid: 709 + components: + - pos: 12.5,-24.5 + parent: 2 + type: Transform + - uid: 710 + components: + - pos: 12.5,-25.5 + parent: 2 + type: Transform + - uid: 711 + components: + - pos: 11.5,-24.5 + parent: 2 + type: Transform + - uid: 712 + components: + - pos: 10.5,-24.5 + parent: 2 + type: Transform + - uid: 713 + components: + - pos: 9.5,-24.5 + parent: 2 + type: Transform + - uid: 714 + components: + - pos: 9.5,-25.5 + parent: 2 + type: Transform + - uid: 715 + components: + - pos: 8.5,-25.5 + parent: 2 + type: Transform + - uid: 716 + components: + - pos: 8.5,-26.5 + parent: 2 + type: Transform + - uid: 717 + components: + - pos: 8.5,-27.5 + parent: 2 + type: Transform + - uid: 718 + components: + - pos: 8.5,-28.5 + parent: 2 + type: Transform + - uid: 719 + components: + - pos: 8.5,-29.5 + parent: 2 + type: Transform + - uid: 720 + components: + - pos: 8.5,-30.5 + parent: 2 + type: Transform + - uid: 721 + components: + - pos: 8.5,-31.5 + parent: 2 + type: Transform + - uid: 722 + components: + - pos: 8.5,-32.5 + parent: 2 + type: Transform + - uid: 723 + components: + - pos: 9.5,-32.5 + parent: 2 + type: Transform + - uid: 724 + components: + - pos: 10.5,-32.5 + parent: 2 + type: Transform + - uid: 725 + components: + - pos: 11.5,-32.5 + parent: 2 + type: Transform + - uid: 726 + components: + - pos: 12.5,-32.5 + parent: 2 + type: Transform + - uid: 727 + components: + - pos: 13.5,-32.5 + parent: 2 + type: Transform + - uid: 728 + components: + - pos: 14.5,-32.5 + parent: 2 + type: Transform + - uid: 729 + components: + - pos: 15.5,-32.5 + parent: 2 + type: Transform + - uid: 730 + components: + - pos: 16.5,-32.5 + parent: 2 + type: Transform + - uid: 731 + components: + - pos: 12.5,-28.5 + parent: 2 + type: Transform + - uid: 732 + components: + - pos: 12.5,-29.5 + parent: 2 + type: Transform + - uid: 733 + components: + - pos: 13.5,-29.5 + parent: 2 + type: Transform + - uid: 734 + components: + - pos: 14.5,-29.5 + parent: 2 + type: Transform + - uid: 735 + components: + - pos: 15.5,-29.5 + parent: 2 + type: Transform + - uid: 736 + components: + - pos: 16.5,-29.5 + parent: 2 + type: Transform + - uid: 737 + components: + - pos: 16.5,-30.5 + parent: 2 + type: Transform + - uid: 738 + components: + - pos: 16.5,-31.5 + parent: 2 + type: Transform + - uid: 753 + components: + - pos: 14.5,-22.5 + parent: 2 + type: Transform + - uid: 754 + components: + - pos: 15.5,-22.5 + parent: 2 + type: Transform + - uid: 758 + components: + - pos: 19.5,-22.5 + parent: 2 + type: Transform + - uid: 759 + components: + - pos: 20.5,-22.5 + parent: 2 + type: Transform + - uid: 760 + components: + - pos: 21.5,-22.5 + parent: 2 + type: Transform + - uid: 761 + components: + - pos: 22.5,-22.5 + parent: 2 + type: Transform + - uid: 762 + components: + - pos: 23.5,-22.5 + parent: 2 + type: Transform + - uid: 764 + components: + - pos: 23.5,-23.5 + parent: 2 + type: Transform + - uid: 765 + components: + - pos: 23.5,-24.5 + parent: 2 + type: Transform + - uid: 766 + components: + - pos: 23.5,-25.5 + parent: 2 + type: Transform + - uid: 767 + components: + - pos: 24.5,-25.5 + parent: 2 + type: Transform + - uid: 768 + components: + - pos: 24.5,-26.5 + parent: 2 + type: Transform + - uid: 823 + components: + - pos: 28.5,-25.5 + parent: 2 + type: Transform + - uid: 824 + components: + - pos: 28.5,-26.5 + parent: 2 + type: Transform + - uid: 895 + components: + - pos: -9.5,14.5 + parent: 2 + type: Transform + - uid: 900 + components: + - pos: -10.5,14.5 + parent: 2 + type: Transform + - uid: 903 + components: + - pos: 48.5,-23.5 + parent: 2 + type: Transform + - uid: 904 + components: + - pos: 44.5,-22.5 + parent: 2 + type: Transform + - uid: 915 + components: + - pos: 9.5,-33.5 + parent: 2 + type: Transform + - uid: 916 + components: + - pos: 9.5,-34.5 + parent: 2 + type: Transform + - uid: 917 + components: + - pos: 9.5,-35.5 + parent: 2 + type: Transform + - uid: 918 + components: + - pos: 9.5,-36.5 + parent: 2 + type: Transform + - uid: 919 + components: + - pos: 9.5,-37.5 + parent: 2 + type: Transform + - uid: 920 + components: + - pos: 14.5,-37.5 + parent: 2 + type: Transform + - uid: 949 + components: + - pos: 15.5,-37.5 + parent: 2 + type: Transform + - uid: 952 + components: + - pos: 18.5,-37.5 + parent: 2 + type: Transform + - uid: 953 + components: + - pos: 15.5,-38.5 + parent: 2 + type: Transform + - uid: 954 + components: + - pos: 15.5,-39.5 + parent: 2 + type: Transform + - uid: 955 + components: + - pos: 15.5,-40.5 + parent: 2 + type: Transform + - uid: 956 + components: + - pos: 24.5,-37.5 + parent: 2 + type: Transform + - uid: 957 + components: + - pos: 24.5,-40.5 + parent: 2 + type: Transform + - uid: 958 + components: + - pos: 18.5,-40.5 + parent: 2 + type: Transform + - uid: 1021 + components: + - pos: 14.5,-43.5 + parent: 2 + type: Transform + - uid: 1022 + components: + - pos: 15.5,-43.5 + parent: 2 + type: Transform + - uid: 1023 + components: + - pos: 15.5,-42.5 + parent: 2 + type: Transform + - uid: 1109 + components: + - pos: -11.5,14.5 + parent: 2 + type: Transform + - uid: 1218 + components: + - pos: 37.5,-29.5 + parent: 2 + type: Transform + - uid: 1219 + components: + - pos: 16.5,-15.5 + parent: 2 + type: Transform + - uid: 1220 + components: + - pos: 37.5,-26.5 + parent: 2 + type: Transform + - uid: 1223 + components: + - pos: 48.5,-29.5 + parent: 2 + type: Transform + - uid: 1227 + components: + - pos: 48.5,-31.5 + parent: 2 + type: Transform + - uid: 1250 + components: + - pos: 30.5,-58.5 + parent: 2 + type: Transform + - uid: 1254 + components: + - pos: 49.5,-31.5 + parent: 2 + type: Transform + - uid: 1255 + components: + - pos: 44.5,-34.5 + parent: 2 + type: Transform + - uid: 1256 + components: + - pos: 49.5,-28.5 + parent: 2 + type: Transform + - uid: 1264 + components: + - pos: 30.5,-46.5 + parent: 2 + type: Transform + - uid: 1265 + components: + - pos: 30.5,-47.5 + parent: 2 + type: Transform + - uid: 1266 + components: + - pos: 30.5,-48.5 + parent: 2 + type: Transform + - uid: 1267 + components: + - pos: 30.5,-49.5 + parent: 2 + type: Transform + - uid: 1268 + components: + - pos: 30.5,-50.5 + parent: 2 + type: Transform + - uid: 1269 + components: + - pos: 30.5,-51.5 + parent: 2 + type: Transform + - uid: 1270 + components: + - pos: 30.5,-52.5 + parent: 2 + type: Transform + - uid: 1271 + components: + - pos: 30.5,-53.5 + parent: 2 + type: Transform + - uid: 1272 + components: + - pos: 30.5,-54.5 + parent: 2 + type: Transform + - uid: 1273 + components: + - pos: 30.5,-55.5 + parent: 2 + type: Transform + - uid: 1274 + components: + - pos: 11.5,-57.5 + parent: 2 + type: Transform + - uid: 1275 + components: + - pos: 49.5,-27.5 + parent: 2 + type: Transform + - uid: 1276 + components: + - pos: 30.5,-57.5 + parent: 2 + type: Transform + - uid: 1277 + components: + - pos: 30.5,-56.5 + parent: 2 + type: Transform + - uid: 1278 + components: + - pos: 12.5,-43.5 + parent: 2 + type: Transform + - uid: 1279 + components: + - pos: 12.5,-44.5 + parent: 2 + type: Transform + - uid: 1280 + components: + - pos: 12.5,-45.5 + parent: 2 + type: Transform + - uid: 1281 + components: + - pos: 11.5,-45.5 + parent: 2 + type: Transform + - uid: 1282 + components: + - pos: 11.5,-46.5 + parent: 2 + type: Transform + - uid: 1283 + components: + - pos: 11.5,-47.5 + parent: 2 + type: Transform + - uid: 1284 + components: + - pos: 11.5,-48.5 + parent: 2 + type: Transform + - uid: 1285 + components: + - pos: 11.5,-49.5 + parent: 2 + type: Transform + - uid: 1286 + components: + - pos: 10.5,-47.5 + parent: 2 + type: Transform + - uid: 1287 + components: + - pos: 10.5,-48.5 + parent: 2 + type: Transform + - uid: 1288 + components: + - pos: 10.5,-49.5 + parent: 2 + type: Transform + - uid: 1289 + components: + - pos: 10.5,-50.5 + parent: 2 + type: Transform + - uid: 1290 + components: + - pos: 10.5,-51.5 + parent: 2 + type: Transform + - uid: 1291 + components: + - pos: 10.5,-52.5 + parent: 2 + type: Transform + - uid: 1292 + components: + - pos: 11.5,-50.5 + parent: 2 + type: Transform + - uid: 1293 + components: + - pos: 11.5,-51.5 + parent: 2 + type: Transform + - uid: 1294 + components: + - pos: 11.5,-52.5 + parent: 2 + type: Transform + - uid: 1295 + components: + - pos: 11.5,-54.5 + parent: 2 + type: Transform + - uid: 1296 + components: + - pos: 11.5,-53.5 + parent: 2 + type: Transform + - uid: 1297 + components: + - pos: 11.5,-55.5 + parent: 2 + type: Transform + - uid: 1298 + components: + - pos: 10.5,-55.5 + parent: 2 + type: Transform + - uid: 1299 + components: + - pos: 30.5,-59.5 + parent: 2 + type: Transform + - uid: 1318 + components: + - pos: -10.5,-11.5 + parent: 2 + type: Transform + - uid: 1326 + components: + - pos: 5.5,-33.5 + parent: 2 + type: Transform + - uid: 1333 + components: + - pos: -7.5,-15.5 + parent: 2 + type: Transform + - uid: 1337 + components: + - pos: 2.5,13.5 + parent: 2 + type: Transform + - uid: 1348 + components: + - pos: 5.5,-34.5 + parent: 2 + type: Transform + - uid: 1349 + components: + - pos: 5.5,-35.5 + parent: 2 + type: Transform + - uid: 1350 + components: + - pos: 5.5,-36.5 + parent: 2 + type: Transform + - uid: 1351 + components: + - pos: 5.5,-37.5 + parent: 2 + type: Transform + - uid: 1352 + components: + - pos: 4.5,-37.5 + parent: 2 + type: Transform + - uid: 1353 + components: + - pos: 3.5,-37.5 + parent: 2 + type: Transform + - uid: 1354 + components: + - pos: 2.5,-37.5 + parent: 2 + type: Transform + - uid: 1355 + components: + - pos: 1.5,-37.5 + parent: 2 + type: Transform + - uid: 1356 + components: + - pos: 0.5,-37.5 + parent: 2 + type: Transform + - uid: 1487 + components: + - pos: 16.5,39.5 + parent: 2 + type: Transform + - uid: 1545 + components: + - pos: -8.5,14.5 + parent: 2 + type: Transform + - uid: 1576 + components: + - pos: 24.5,-13.5 + parent: 2 + type: Transform + - uid: 1577 + components: + - pos: 10.5,-2.5 + parent: 2 + type: Transform + - uid: 1597 + components: + - pos: 40.5,-13.5 + parent: 2 + type: Transform + - uid: 1638 + components: + - pos: 48.5,-3.5 + parent: 2 + type: Transform + - uid: 1639 + components: + - pos: 48.5,-4.5 + parent: 2 + type: Transform + - uid: 1640 + components: + - pos: 48.5,-5.5 + parent: 2 + type: Transform + - uid: 1641 + components: + - pos: 48.5,-6.5 + parent: 2 + type: Transform + - uid: 1643 + components: + - pos: 48.5,-8.5 + parent: 2 + type: Transform + - uid: 1652 + components: + - pos: 48.5,-9.5 + parent: 2 + type: Transform + - uid: 1673 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-15.5 + parent: 2 + type: Transform + - uid: 1699 + components: + - pos: 46.5,-13.5 + parent: 2 + type: Transform + - uid: 1700 + components: + - pos: 45.5,-13.5 + parent: 2 + type: Transform + - uid: 1701 + components: + - pos: 44.5,-13.5 + parent: 2 + type: Transform + - uid: 1702 + components: + - pos: 43.5,-13.5 + parent: 2 + type: Transform + - uid: 1703 + components: + - pos: 42.5,-13.5 + parent: 2 + type: Transform + - uid: 1704 + components: + - pos: 41.5,-13.5 + parent: 2 + type: Transform + - uid: 1705 + components: + - pos: 46.5,-17.5 + parent: 2 + type: Transform + - uid: 1706 + components: + - pos: 45.5,-17.5 + parent: 2 + type: Transform + - uid: 1707 + components: + - pos: 44.5,-17.5 + parent: 2 + type: Transform + - uid: 1708 + components: + - pos: 43.5,-17.5 + parent: 2 + type: Transform + - uid: 1709 + components: + - pos: 42.5,-17.5 + parent: 2 + type: Transform + - uid: 1716 + components: + - pos: 41.5,-17.5 + parent: 2 + type: Transform + - uid: 1720 + components: + - pos: 40.5,-17.5 + parent: 2 + type: Transform + - uid: 1817 + components: + - pos: 41.5,-21.5 + parent: 2 + type: Transform + - uid: 1818 + components: + - pos: 42.5,-21.5 + parent: 2 + type: Transform + - uid: 1828 + components: + - pos: 29.5,-25.5 + parent: 2 + type: Transform + - uid: 1923 + components: + - pos: 45.5,-26.5 + parent: 2 + type: Transform + - uid: 1924 + components: + - pos: 45.5,-22.5 + parent: 2 + type: Transform + - uid: 1925 + components: + - pos: 46.5,-24.5 + parent: 2 + type: Transform + - uid: 1926 + components: + - pos: 47.5,-26.5 + parent: 2 + type: Transform + - uid: 1928 + components: + - pos: 47.5,-28.5 + parent: 2 + type: Transform + - uid: 1929 + components: + - pos: 46.5,-30.5 + parent: 2 + type: Transform + - uid: 1930 + components: + - pos: 45.5,-30.5 + parent: 2 + type: Transform + - uid: 1931 + components: + - pos: 45.5,-32.5 + parent: 2 + type: Transform + - uid: 1932 + components: + - pos: 46.5,-32.5 + parent: 2 + type: Transform + - uid: 1933 + components: + - pos: 45.5,-28.5 + parent: 2 + type: Transform + - uid: 1943 + components: + - pos: 44.5,-24.5 + parent: 2 + type: Transform + - uid: 1945 + components: + - pos: 46.5,-22.5 + parent: 2 + type: Transform + - uid: 1980 + components: + - pos: 58.5,-14.5 + parent: 2 + type: Transform + - uid: 1981 + components: + - pos: 58.5,-13.5 + parent: 2 + type: Transform + - uid: 1984 + components: + - pos: 58.5,-12.5 + parent: 2 + type: Transform + - uid: 1985 + components: + - pos: 57.5,-12.5 + parent: 2 + type: Transform + - uid: 1986 + components: + - pos: 56.5,-12.5 + parent: 2 + type: Transform + - uid: 1987 + components: + - pos: 55.5,-12.5 + parent: 2 + type: Transform + - uid: 1988 + components: + - pos: 54.5,-12.5 + parent: 2 + type: Transform + - uid: 1989 + components: + - pos: 53.5,-12.5 + parent: 2 + type: Transform + - uid: 2011 + components: + - pos: 5.5,29.5 + parent: 2 + type: Transform + - uid: 2012 + components: + - pos: 5.5,30.5 + parent: 2 + type: Transform + - uid: 2013 + components: + - pos: 5.5,31.5 + parent: 2 + type: Transform + - uid: 2014 + components: + - pos: 5.5,32.5 + parent: 2 + type: Transform + - uid: 2015 + components: + - pos: 5.5,33.5 + parent: 2 + type: Transform + - uid: 2016 + components: + - pos: 6.5,33.5 + parent: 2 + type: Transform + - uid: 2017 + components: + - pos: 7.5,33.5 + parent: 2 + type: Transform + - uid: 2018 + components: + - pos: 8.5,33.5 + parent: 2 + type: Transform + - uid: 2019 + components: + - pos: 9.5,33.5 + parent: 2 + type: Transform + - uid: 2020 + components: + - pos: 10.5,33.5 + parent: 2 + type: Transform + - uid: 2024 + components: + - pos: -22.5,-11.5 + parent: 2 + type: Transform + - uid: 2033 + components: + - pos: -14.5,-15.5 + parent: 2 + type: Transform + - uid: 2043 + components: + - pos: -16.5,-15.5 + parent: 2 + type: Transform + - uid: 2085 + components: + - pos: -17.5,14.5 + parent: 2 + type: Transform + - uid: 2102 + components: + - pos: 24.5,28.5 + parent: 2 + type: Transform + - uid: 2143 + components: + - pos: 49.5,-34.5 + parent: 2 + type: Transform + - uid: 2144 + components: + - pos: 49.5,-25.5 + parent: 2 + type: Transform + - uid: 2190 + components: + - pos: 28.5,16.5 + parent: 2 + type: Transform + - uid: 2191 + components: + - pos: 29.5,16.5 + parent: 2 + type: Transform + - uid: 2192 + components: + - pos: 30.5,16.5 + parent: 2 + type: Transform + - uid: 2193 + components: + - pos: 31.5,16.5 + parent: 2 + type: Transform + - uid: 2194 + components: + - pos: 32.5,16.5 + parent: 2 + type: Transform + - uid: 2195 + components: + - pos: 33.5,16.5 + parent: 2 + type: Transform + - uid: 2196 + components: + - pos: 28.5,19.5 + parent: 2 + type: Transform + - uid: 2197 + components: + - pos: 28.5,22.5 + parent: 2 + type: Transform + - uid: 2198 + components: + - pos: 28.5,26.5 + parent: 2 + type: Transform + - uid: 2199 + components: + - pos: 28.5,27.5 + parent: 2 + type: Transform + - uid: 2200 + components: + - pos: 29.5,27.5 + parent: 2 + type: Transform + - uid: 2201 + components: + - pos: 30.5,27.5 + parent: 2 + type: Transform + - uid: 2202 + components: + - pos: 31.5,27.5 + parent: 2 + type: Transform + - uid: 2203 + components: + - pos: 28.5,28.5 + parent: 2 + type: Transform + - uid: 2204 + components: + - pos: 28.5,29.5 + parent: 2 + type: Transform + - uid: 2205 + components: + - pos: 28.5,30.5 + parent: 2 + type: Transform + - uid: 2206 + components: + - pos: 28.5,31.5 + parent: 2 + type: Transform + - uid: 2207 + components: + - pos: 29.5,31.5 + parent: 2 + type: Transform + - uid: 2208 + components: + - pos: 30.5,31.5 + parent: 2 + type: Transform + - uid: 2209 + components: + - pos: 31.5,31.5 + parent: 2 + type: Transform + - uid: 2210 + components: + - pos: 32.5,31.5 + parent: 2 + type: Transform + - uid: 2211 + components: + - pos: 34.5,31.5 + parent: 2 + type: Transform + - uid: 2212 + components: + - pos: 35.5,31.5 + parent: 2 + type: Transform + - uid: 2213 + components: + - pos: 35.5,32.5 + parent: 2 + type: Transform + - uid: 2214 + components: + - pos: 36.5,32.5 + parent: 2 + type: Transform + - uid: 2215 + components: + - pos: 37.5,32.5 + parent: 2 + type: Transform + - uid: 2216 + components: + - pos: 38.5,32.5 + parent: 2 + type: Transform + - uid: 2217 + components: + - pos: 38.5,31.5 + parent: 2 + type: Transform + - uid: 2218 + components: + - pos: 35.5,33.5 + parent: 2 + type: Transform + - uid: 2219 + components: + - pos: 35.5,34.5 + parent: 2 + type: Transform + - uid: 2220 + components: + - pos: 35.5,35.5 + parent: 2 + type: Transform + - uid: 2221 + components: + - pos: 35.5,36.5 + parent: 2 + type: Transform + - uid: 2222 + components: + - pos: 36.5,36.5 + parent: 2 + type: Transform + - uid: 2223 + components: + - pos: 36.5,37.5 + parent: 2 + type: Transform + - uid: 2224 + components: + - pos: 37.5,37.5 + parent: 2 + type: Transform + - uid: 2225 + components: + - pos: 38.5,37.5 + parent: 2 + type: Transform + - uid: 2226 + components: + - pos: 39.5,37.5 + parent: 2 + type: Transform + - uid: 2227 + components: + - pos: 40.5,37.5 + parent: 2 + type: Transform + - uid: 2228 + components: + - pos: 40.5,36.5 + parent: 2 + type: Transform + - uid: 2229 + components: + - pos: 40.5,38.5 + parent: 2 + type: Transform + - uid: 2230 + components: + - pos: 41.5,38.5 + parent: 2 + type: Transform + - uid: 2231 + components: + - pos: 42.5,38.5 + parent: 2 + type: Transform + - uid: 2232 + components: + - pos: 42.5,37.5 + parent: 2 + type: Transform + - uid: 2233 + components: + - pos: 42.5,36.5 + parent: 2 + type: Transform + - uid: 2234 + components: + - pos: 42.5,35.5 + parent: 2 + type: Transform + - uid: 2235 + components: + - pos: 42.5,34.5 + parent: 2 + type: Transform + - uid: 2260 + components: + - pos: 35.5,29.5 + parent: 2 + type: Transform + - uid: 2261 + components: + - pos: 36.5,29.5 + parent: 2 + type: Transform + - uid: 2262 + components: + - pos: 37.5,29.5 + parent: 2 + type: Transform + - uid: 2263 + components: + - pos: 38.5,29.5 + parent: 2 + type: Transform + - uid: 2264 + components: + - pos: 39.5,29.5 + parent: 2 + type: Transform + - uid: 2265 + components: + - pos: 41.5,29.5 + parent: 2 + type: Transform + - uid: 2266 + components: + - pos: 40.5,29.5 + parent: 2 + type: Transform + - uid: 2267 + components: + - pos: 42.5,29.5 + parent: 2 + type: Transform + - uid: 2268 + components: + - pos: 43.5,29.5 + parent: 2 + type: Transform + - uid: 2269 + components: + - pos: 44.5,29.5 + parent: 2 + type: Transform + - uid: 2270 + components: + - pos: 44.5,30.5 + parent: 2 + type: Transform + - uid: 2271 + components: + - pos: 44.5,31.5 + parent: 2 + type: Transform + - uid: 2272 + components: + - pos: 44.5,32.5 + parent: 2 + type: Transform + - uid: 2273 + components: + - pos: 44.5,33.5 + parent: 2 + type: Transform + - uid: 2275 + components: + - pos: 42.5,30.5 + parent: 2 + type: Transform + - uid: 2276 + components: + - pos: 43.5,38.5 + parent: 2 + type: Transform + - uid: 2277 + components: + - pos: 44.5,38.5 + parent: 2 + type: Transform + - uid: 2278 + components: + - pos: 44.5,37.5 + parent: 2 + type: Transform + - uid: 2327 + components: + - pos: 37.5,25.5 + parent: 2 + type: Transform + - uid: 2328 + components: + - pos: 42.5,28.5 + parent: 2 + type: Transform + - uid: 2329 + components: + - pos: 42.5,27.5 + parent: 2 + type: Transform + - uid: 2330 + components: + - pos: 42.5,26.5 + parent: 2 + type: Transform + - uid: 2331 + components: + - pos: 42.5,25.5 + parent: 2 + type: Transform + - uid: 2334 + components: + - pos: 43.5,26.5 + parent: 2 + type: Transform + - uid: 2335 + components: + - pos: 44.5,26.5 + parent: 2 + type: Transform + - uid: 2336 + components: + - pos: 45.5,26.5 + parent: 2 + type: Transform + - uid: 2337 + components: + - pos: 46.5,26.5 + parent: 2 + type: Transform + - uid: 2338 + components: + - pos: 46.5,25.5 + parent: 2 + type: Transform + - uid: 2339 + components: + - pos: 46.5,24.5 + parent: 2 + type: Transform + - uid: 2340 + components: + - pos: 46.5,23.5 + parent: 2 + type: Transform + - uid: 2341 + components: + - pos: 46.5,22.5 + parent: 2 + type: Transform + - uid: 2342 + components: + - pos: 46.5,21.5 + parent: 2 + type: Transform + - uid: 2343 + components: + - pos: 45.5,21.5 + parent: 2 + type: Transform + - uid: 2344 + components: + - pos: 44.5,21.5 + parent: 2 + type: Transform + - uid: 2345 + components: + - pos: 43.5,21.5 + parent: 2 + type: Transform + - uid: 2346 + components: + - pos: 42.5,21.5 + parent: 2 + type: Transform + - uid: 2347 + components: + - pos: 41.5,21.5 + parent: 2 + type: Transform + - uid: 2348 + components: + - pos: 40.5,21.5 + parent: 2 + type: Transform + - uid: 2349 + components: + - pos: 40.5,20.5 + parent: 2 + type: Transform + - uid: 2350 + components: + - pos: 40.5,19.5 + parent: 2 + type: Transform + - uid: 2443 + components: + - pos: 40.5,17.5 + parent: 2 + type: Transform + - uid: 2444 + components: + - pos: 40.5,16.5 + parent: 2 + type: Transform + - uid: 2445 + components: + - pos: 39.5,16.5 + parent: 2 + type: Transform + - uid: 2446 + components: + - pos: 38.5,16.5 + parent: 2 + type: Transform + - uid: 2447 + components: + - pos: 37.5,16.5 + parent: 2 + type: Transform + - uid: 2448 + components: + - pos: 36.5,16.5 + parent: 2 + type: Transform + - uid: 2449 + components: + - pos: 35.5,16.5 + parent: 2 + type: Transform + - uid: 2450 + components: + - pos: 34.5,16.5 + parent: 2 + type: Transform + - uid: 2479 + components: + - pos: -0.5,14.5 + parent: 2 + type: Transform + - uid: 2485 + components: + - pos: 3.5,14.5 + parent: 2 + type: Transform + - uid: 2563 + components: + - pos: 29.5,33.5 + parent: 2 + type: Transform + - uid: 2564 + components: + - pos: 30.5,33.5 + parent: 2 + type: Transform + - uid: 2565 + components: + - pos: 31.5,33.5 + parent: 2 + type: Transform + - uid: 2566 + components: + - pos: 32.5,33.5 + parent: 2 + type: Transform + - uid: 2567 + components: + - pos: 33.5,33.5 + parent: 2 + type: Transform + - uid: 2568 + components: + - pos: 33.5,34.5 + parent: 2 + type: Transform + - uid: 2569 + components: + - pos: 29.5,34.5 + parent: 2 + type: Transform + - uid: 2570 + components: + - pos: 29.5,35.5 + parent: 2 + type: Transform + - uid: 2571 + components: + - pos: 29.5,37.5 + parent: 2 + type: Transform + - uid: 2572 + components: + - pos: 33.5,35.5 + parent: 2 + type: Transform + - uid: 2573 + components: + - pos: 33.5,36.5 + parent: 2 + type: Transform + - uid: 2574 + components: + - pos: 33.5,37.5 + parent: 2 + type: Transform + - uid: 2575 + components: + - pos: 33.5,38.5 + parent: 2 + type: Transform + - uid: 2576 + components: + - pos: 32.5,38.5 + parent: 2 + type: Transform + - uid: 2577 + components: + - pos: 31.5,38.5 + parent: 2 + type: Transform + - uid: 2578 + components: + - pos: 30.5,38.5 + parent: 2 + type: Transform + - uid: 2579 + components: + - pos: 29.5,38.5 + parent: 2 + type: Transform + - uid: 2580 + components: + - pos: 29.5,39.5 + parent: 2 + type: Transform + - uid: 2581 + components: + - pos: 29.5,40.5 + parent: 2 + type: Transform + - uid: 2582 + components: + - pos: 29.5,41.5 + parent: 2 + type: Transform + - uid: 2583 + components: + - pos: 29.5,42.5 + parent: 2 + type: Transform + - uid: 2584 + components: + - pos: 29.5,43.5 + parent: 2 + type: Transform + - uid: 2585 + components: + - pos: 30.5,43.5 + parent: 2 + type: Transform + - uid: 2586 + components: + - pos: 31.5,43.5 + parent: 2 + type: Transform + - uid: 2587 + components: + - pos: 31.5,44.5 + parent: 2 + type: Transform + - uid: 2588 + components: + - pos: 33.5,44.5 + parent: 2 + type: Transform + - uid: 2589 + components: + - pos: 34.5,44.5 + parent: 2 + type: Transform + - uid: 2590 + components: + - pos: 35.5,44.5 + parent: 2 + type: Transform + - uid: 2591 + components: + - pos: 35.5,43.5 + parent: 2 + type: Transform + - uid: 2592 + components: + - pos: 35.5,42.5 + parent: 2 + type: Transform + - uid: 2593 + components: + - pos: 35.5,41.5 + parent: 2 + type: Transform + - uid: 2594 + components: + - pos: 36.5,44.5 + parent: 2 + type: Transform + - uid: 2595 + components: + - pos: 37.5,44.5 + parent: 2 + type: Transform + - uid: 2596 + components: + - pos: 38.5,44.5 + parent: 2 + type: Transform + - uid: 2597 + components: + - pos: 38.5,43.5 + parent: 2 + type: Transform + - uid: 2598 + components: + - pos: 38.5,42.5 + parent: 2 + type: Transform + - uid: 2599 + components: + - pos: 38.5,41.5 + parent: 2 + type: Transform + - uid: 2600 + components: + - pos: 38.5,40.5 + parent: 2 + type: Transform + - uid: 2601 + components: + - pos: 38.5,39.5 + parent: 2 + type: Transform + - uid: 2602 + components: + - pos: 37.5,39.5 + parent: 2 + type: Transform + - uid: 2603 + components: + - pos: 36.5,39.5 + parent: 2 + type: Transform + - uid: 2604 + components: + - pos: 35.5,39.5 + parent: 2 + type: Transform + - uid: 2605 + components: + - pos: 34.5,39.5 + parent: 2 + type: Transform + - uid: 2606 + components: + - pos: 34.5,38.5 + parent: 2 + type: Transform + - uid: 2607 + components: + - pos: -2.5,14.5 + parent: 2 + type: Transform + - uid: 2608 + components: + - pos: -8.5,-15.5 + parent: 2 + type: Transform + - uid: 2610 + components: + - pos: 48.5,-24.5 + parent: 2 + type: Transform + - uid: 2617 + components: + - pos: 2.5,14.5 + parent: 2 + type: Transform + - uid: 2626 + components: + - pos: 20.5,43.5 + parent: 2 + type: Transform + - uid: 2627 + components: + - pos: 20.5,42.5 + parent: 2 + type: Transform + - uid: 2628 + components: + - pos: 19.5,42.5 + parent: 2 + type: Transform + - uid: 2629 + components: + - pos: 19.5,43.5 + parent: 2 + type: Transform + - uid: 2630 + components: + - pos: 18.5,43.5 + parent: 2 + type: Transform + - uid: 2631 + components: + - pos: 17.5,43.5 + parent: 2 + type: Transform + - uid: 2632 + components: + - pos: 17.5,42.5 + parent: 2 + type: Transform + - uid: 2633 + components: + - pos: 16.5,42.5 + parent: 2 + type: Transform + - uid: 2634 + components: + - pos: 16.5,41.5 + parent: 2 + type: Transform + - uid: 2635 + components: + - pos: 16.5,40.5 + parent: 2 + type: Transform + - uid: 2637 + components: + - pos: 16.5,38.5 + parent: 2 + type: Transform + - uid: 2638 + components: + - pos: 17.5,38.5 + parent: 2 + type: Transform + - uid: 2639 + components: + - pos: 19.5,38.5 + parent: 2 + type: Transform + - uid: 2640 + components: + - pos: 20.5,38.5 + parent: 2 + type: Transform + - uid: 2641 + components: + - pos: 20.5,39.5 + parent: 2 + type: Transform + - uid: 2642 + components: + - pos: 20.5,40.5 + parent: 2 + type: Transform + - uid: 2643 + components: + - pos: 20.5,41.5 + parent: 2 + type: Transform + - uid: 2644 + components: + - pos: 25.5,38.5 + parent: 2 + type: Transform + - uid: 2645 + components: + - pos: 25.5,39.5 + parent: 2 + type: Transform + - uid: 2646 + components: + - pos: 25.5,40.5 + parent: 2 + type: Transform + - uid: 2647 + components: + - pos: 25.5,42.5 + parent: 2 + type: Transform + - uid: 2648 + components: + - pos: 25.5,43.5 + parent: 2 + type: Transform + - uid: 2652 + components: + - pos: 12.5,42.5 + parent: 2 + type: Transform + - uid: 2653 + components: + - pos: 12.5,41.5 + parent: 2 + type: Transform + - uid: 2654 + components: + - pos: 12.5,40.5 + parent: 2 + type: Transform + - uid: 2655 + components: + - pos: 12.5,39.5 + parent: 2 + type: Transform + - uid: 2656 + components: + - pos: 12.5,38.5 + parent: 2 + type: Transform + - uid: 2657 + components: + - pos: 12.5,37.5 + parent: 2 + type: Transform + - uid: 2658 + components: + - pos: 16.5,35.5 + parent: 2 + type: Transform + - uid: 2659 + components: + - pos: 15.5,34.5 + parent: 2 + type: Transform + - uid: 2660 + components: + - pos: 12.5,35.5 + parent: 2 + type: Transform + - uid: 2661 + components: + - pos: 31.5,-22.5 + parent: 2 + type: Transform + - uid: 2662 + components: + - pos: 12.5,36.5 + parent: 2 + type: Transform + - uid: 2663 + components: + - pos: 13.5,34.5 + parent: 2 + type: Transform + - uid: 2664 + components: + - pos: 16.5,37.5 + parent: 2 + type: Transform + - uid: 2665 + components: + - pos: 14.5,34.5 + parent: 2 + type: Transform + - uid: 2666 + components: + - pos: -9.5,1.5 + parent: 2 + type: Transform + - uid: 2718 + components: + - pos: 49.5,-32.5 + parent: 2 + type: Transform + - uid: 2737 + components: + - pos: -4.5,-15.5 + parent: 2 + type: Transform + - uid: 2738 + components: + - pos: 10.5,35.5 + parent: 2 + type: Transform + - uid: 2739 + components: + - pos: 10.5,34.5 + parent: 2 + type: Transform + - uid: 2800 + components: + - pos: 33.5,49.5 + parent: 2 + type: Transform + - uid: 2801 + components: + - pos: 33.5,48.5 + parent: 2 + type: Transform + - uid: 2802 + components: + - pos: 33.5,47.5 + parent: 2 + type: Transform + - uid: 2803 + components: + - pos: 34.5,47.5 + parent: 2 + type: Transform + - uid: 2804 + components: + - pos: 35.5,47.5 + parent: 2 + type: Transform + - uid: 2805 + components: + - pos: 36.5,47.5 + parent: 2 + type: Transform + - uid: 2810 + components: + - pos: 18.5,46.5 + parent: 2 + type: Transform + - uid: 2811 + components: + - pos: 18.5,47.5 + parent: 2 + type: Transform + - uid: 2812 + components: + - pos: 19.5,47.5 + parent: 2 + type: Transform + - uid: 2813 + components: + - pos: 20.5,47.5 + parent: 2 + type: Transform + - uid: 2814 + components: + - pos: 21.5,47.5 + parent: 2 + type: Transform + - uid: 2815 + components: + - pos: 21.5,48.5 + parent: 2 + type: Transform + - uid: 2816 + components: + - pos: 21.5,49.5 + parent: 2 + type: Transform + - uid: 2848 + components: + - pos: 59.5,-12.5 + parent: 2 + type: Transform + - uid: 2849 + components: + - pos: 59.5,-11.5 + parent: 2 + type: Transform + - uid: 2850 + components: + - pos: 59.5,-10.5 + parent: 2 + type: Transform + - uid: 2851 + components: + - pos: 59.5,-9.5 + parent: 2 + type: Transform + - uid: 2852 + components: + - pos: 59.5,-8.5 + parent: 2 + type: Transform + - uid: 2853 + components: + - pos: 58.5,-8.5 + parent: 2 + type: Transform + - uid: 2854 + components: + - pos: 54.5,-8.5 + parent: 2 + type: Transform + - uid: 2855 + components: + - pos: 53.5,-8.5 + parent: 2 + type: Transform + - uid: 2856 + components: + - pos: 53.5,-9.5 + parent: 2 + type: Transform + - uid: 2857 + components: + - pos: 53.5,-10.5 + parent: 2 + type: Transform + - uid: 2858 + components: + - pos: 53.5,-11.5 + parent: 2 + type: Transform + - uid: 2868 + components: + - pos: 64.5,-12.5 + parent: 2 + type: Transform + - uid: 2869 + components: + - pos: 64.5,-13.5 + parent: 2 + type: Transform + - uid: 2870 + components: + - pos: 64.5,-14.5 + parent: 2 + type: Transform + - uid: 2933 + components: + - pos: 68.5,-2.5 + parent: 2 + type: Transform + - uid: 2934 + components: + - pos: 68.5,-3.5 + parent: 2 + type: Transform + - uid: 2935 + components: + - pos: 68.5,-4.5 + parent: 2 + type: Transform + - uid: 2936 + components: + - pos: 68.5,-5.5 + parent: 2 + type: Transform + - uid: 2937 + components: + - pos: 68.5,-6.5 + parent: 2 + type: Transform + - uid: 2951 + components: + - pos: 51.5,-3.5 + parent: 2 + type: Transform + - uid: 2952 + components: + - pos: 51.5,-2.5 + parent: 2 + type: Transform + - uid: 2953 + components: + - pos: 52.5,-2.5 + parent: 2 + type: Transform + - uid: 2955 + components: + - pos: 49.5,-9.5 + parent: 2 + type: Transform + - uid: 2956 + components: + - pos: 51.5,-9.5 + parent: 2 + type: Transform + - uid: 3022 + components: + - pos: 43.5,12.5 + parent: 2 + type: Transform + - uid: 3023 + components: + - pos: 43.5,11.5 + parent: 2 + type: Transform + - uid: 3024 + components: + - pos: 43.5,10.5 + parent: 2 + type: Transform + - uid: 3025 + components: + - pos: 43.5,9.5 + parent: 2 + type: Transform + - uid: 3026 + components: + - pos: 43.5,8.5 + parent: 2 + type: Transform + - uid: 3027 + components: + - pos: 44.5,8.5 + parent: 2 + type: Transform + - uid: 3028 + components: + - pos: 45.5,8.5 + parent: 2 + type: Transform + - uid: 3029 + components: + - pos: 46.5,8.5 + parent: 2 + type: Transform + - uid: 3030 + components: + - pos: 47.5,8.5 + parent: 2 + type: Transform + - uid: 3031 + components: + - pos: 48.5,8.5 + parent: 2 + type: Transform + - uid: 3032 + components: + - pos: 48.5,7.5 + parent: 2 + type: Transform + - uid: 3033 + components: + - pos: 49.5,7.5 + parent: 2 + type: Transform + - uid: 3034 + components: + - pos: 50.5,7.5 + parent: 2 + type: Transform + - uid: 3035 + components: + - pos: 51.5,7.5 + parent: 2 + type: Transform + - uid: 3036 + components: + - pos: 52.5,7.5 + parent: 2 + type: Transform + - uid: 3037 + components: + - pos: 56.5,7.5 + parent: 2 + type: Transform + - uid: 3038 + components: + - pos: 55.5,7.5 + parent: 2 + type: Transform + - uid: 3039 + components: + - pos: 54.5,7.5 + parent: 2 + type: Transform + - uid: 3047 + components: + - pos: 48.5,13.5 + parent: 2 + type: Transform + - uid: 3048 + components: + - pos: 48.5,12.5 + parent: 2 + type: Transform + - uid: 3049 + components: + - pos: 48.5,15.5 + parent: 2 + type: Transform + - uid: 3050 + components: + - pos: 48.5,16.5 + parent: 2 + type: Transform + - uid: 3052 + components: + - pos: 48.5,20.5 + parent: 2 + type: Transform + - uid: 3063 + components: + - pos: 40.5,39.5 + parent: 2 + type: Transform + - uid: 3064 + components: + - pos: 40.5,40.5 + parent: 2 + type: Transform + - uid: 3065 + components: + - pos: 43.5,40.5 + parent: 2 + type: Transform + - uid: 3066 + components: + - pos: 43.5,39.5 + parent: 2 + type: Transform + - uid: 3071 + components: + - pos: 39.5,43.5 + parent: 2 + type: Transform + - uid: 3072 + components: + - pos: 40.5,43.5 + parent: 2 + type: Transform + - uid: 3073 + components: + - pos: 41.5,43.5 + parent: 2 + type: Transform + - uid: 3074 + components: + - pos: 42.5,43.5 + parent: 2 + type: Transform + - uid: 3075 + components: + - pos: 42.5,44.5 + parent: 2 + type: Transform + - uid: 3076 + components: + - pos: 42.5,45.5 + parent: 2 + type: Transform + - uid: 3077 + components: + - pos: 42.5,46.5 + parent: 2 + type: Transform + - uid: 3078 + components: + - pos: 42.5,47.5 + parent: 2 + type: Transform + - uid: 3079 + components: + - pos: 45.5,45.5 + parent: 2 + type: Transform + - uid: 3080 + components: + - pos: 45.5,44.5 + parent: 2 + type: Transform + - uid: 3081 + components: + - pos: 45.5,43.5 + parent: 2 + type: Transform + - uid: 3082 + components: + - pos: 46.5,43.5 + parent: 2 + type: Transform + - uid: 3083 + components: + - pos: 46.5,42.5 + parent: 2 + type: Transform + - uid: 3084 + components: + - pos: 46.5,41.5 + parent: 2 + type: Transform + - uid: 3085 + components: + - pos: 46.5,40.5 + parent: 2 + type: Transform + - uid: 3125 + components: + - pos: 50.5,45.5 + parent: 2 + type: Transform + - uid: 3146 + components: + - pos: 47.5,36.5 + parent: 2 + type: Transform + - uid: 3147 + components: + - pos: 47.5,34.5 + parent: 2 + type: Transform + - uid: 3148 + components: + - pos: 47.5,35.5 + parent: 2 + type: Transform + - uid: 3149 + components: + - pos: 47.5,33.5 + parent: 2 + type: Transform + - uid: 3150 + components: + - pos: 47.5,32.5 + parent: 2 + type: Transform + - uid: 3151 + components: + - pos: 47.5,31.5 + parent: 2 + type: Transform + - uid: 3152 + components: + - pos: 47.5,30.5 + parent: 2 + type: Transform + - uid: 3153 + components: + - pos: 47.5,29.5 + parent: 2 + type: Transform + - uid: 3154 + components: + - pos: 47.5,28.5 + parent: 2 + type: Transform + - uid: 3155 + components: + - pos: 48.5,28.5 + parent: 2 + type: Transform + - uid: 3156 + components: + - pos: 49.5,28.5 + parent: 2 + type: Transform + - uid: 3157 + components: + - pos: 50.5,28.5 + parent: 2 + type: Transform + - uid: 3158 + components: + - pos: 51.5,28.5 + parent: 2 + type: Transform + - uid: 3159 + components: + - pos: 51.5,29.5 + parent: 2 + type: Transform + - uid: 3160 + components: + - pos: 51.5,30.5 + parent: 2 + type: Transform + - uid: 3161 + components: + - pos: 51.5,31.5 + parent: 2 + type: Transform + - uid: 3162 + components: + - pos: 51.5,32.5 + parent: 2 + type: Transform + - uid: 3163 + components: + - pos: 51.5,33.5 + parent: 2 + type: Transform + - uid: 3164 + components: + - pos: 51.5,34.5 + parent: 2 + type: Transform + - uid: 3165 + components: + - pos: 51.5,35.5 + parent: 2 + type: Transform + - uid: 3166 + components: + - pos: 51.5,36.5 + parent: 2 + type: Transform + - uid: 3167 + components: + - pos: 51.5,37.5 + parent: 2 + type: Transform + - uid: 3168 + components: + - pos: 51.5,38.5 + parent: 2 + type: Transform + - uid: 3169 + components: + - pos: 52.5,37.5 + parent: 2 + type: Transform + - uid: 3170 + components: + - pos: 52.5,38.5 + parent: 2 + type: Transform + - uid: 3171 + components: + - pos: 52.5,39.5 + parent: 2 + type: Transform + - uid: 3172 + components: + - pos: 53.5,39.5 + parent: 2 + type: Transform + - uid: 3173 + components: + - pos: 53.5,38.5 + parent: 2 + type: Transform + - uid: 3174 + components: + - pos: 54.5,39.5 + parent: 2 + type: Transform + - uid: 3175 + components: + - pos: 54.5,40.5 + parent: 2 + type: Transform + - uid: 3176 + components: + - pos: 55.5,40.5 + parent: 2 + type: Transform + - uid: 3177 + components: + - pos: 55.5,39.5 + parent: 2 + type: Transform + - uid: 3178 + components: + - pos: 56.5,39.5 + parent: 2 + type: Transform + - uid: 3179 + components: + - pos: 56.5,40.5 + parent: 2 + type: Transform + - uid: 3180 + components: + - pos: 57.5,40.5 + parent: 2 + type: Transform + - uid: 3181 + components: + - pos: 57.5,39.5 + parent: 2 + type: Transform + - uid: 3182 + components: + - pos: 58.5,39.5 + parent: 2 + type: Transform + - uid: 3183 + components: + - pos: 58.5,40.5 + parent: 2 + type: Transform + - uid: 3184 + components: + - pos: 59.5,39.5 + parent: 2 + type: Transform + - uid: 3185 + components: + - pos: 60.5,39.5 + parent: 2 + type: Transform + - uid: 3186 + components: + - pos: 60.5,38.5 + parent: 2 + type: Transform + - uid: 3187 + components: + - pos: 59.5,38.5 + parent: 2 + type: Transform + - uid: 3188 + components: + - pos: 60.5,37.5 + parent: 2 + type: Transform + - uid: 3189 + components: + - pos: 61.5,38.5 + parent: 2 + type: Transform + - uid: 3190 + components: + - pos: 61.5,37.5 + parent: 2 + type: Transform + - uid: 3191 + components: + - pos: 61.5,35.5 + parent: 2 + type: Transform + - uid: 3192 + components: + - pos: 61.5,34.5 + parent: 2 + type: Transform + - uid: 3193 + components: + - pos: 61.5,36.5 + parent: 2 + type: Transform + - uid: 3194 + components: + - pos: 61.5,33.5 + parent: 2 + type: Transform + - uid: 3195 + components: + - pos: 61.5,32.5 + parent: 2 + type: Transform + - uid: 3196 + components: + - pos: 61.5,31.5 + parent: 2 + type: Transform + - uid: 3197 + components: + - pos: 61.5,30.5 + parent: 2 + type: Transform + - uid: 3198 + components: + - pos: 61.5,29.5 + parent: 2 + type: Transform + - uid: 3199 + components: + - pos: 61.5,28.5 + parent: 2 + type: Transform + - uid: 3201 + components: + - pos: 65.5,29.5 + parent: 2 + type: Transform + - uid: 3215 + components: + - pos: 55.5,32.5 + parent: 2 + type: Transform + - uid: 3216 + components: + - pos: 54.5,32.5 + parent: 2 + type: Transform + - uid: 3217 + components: + - pos: 53.5,32.5 + parent: 2 + type: Transform + - uid: 3218 + components: + - pos: 52.5,32.5 + parent: 2 + type: Transform + - uid: 3219 + components: + - pos: 60.5,32.5 + parent: 2 + type: Transform + - uid: 3220 + components: + - pos: 59.5,32.5 + parent: 2 + type: Transform + - uid: 3221 + components: + - pos: 58.5,32.5 + parent: 2 + type: Transform + - uid: 3222 + components: + - pos: 57.5,32.5 + parent: 2 + type: Transform + - uid: 3254 + components: + - pos: 52.5,28.5 + parent: 2 + type: Transform + - uid: 3255 + components: + - pos: 53.5,28.5 + parent: 2 + type: Transform + - uid: 3256 + components: + - pos: 54.5,28.5 + parent: 2 + type: Transform + - uid: 3257 + components: + - pos: 55.5,28.5 + parent: 2 + type: Transform + - uid: 3258 + components: + - pos: 60.5,28.5 + parent: 2 + type: Transform + - uid: 3259 + components: + - pos: 59.5,28.5 + parent: 2 + type: Transform + - uid: 3260 + components: + - pos: 58.5,28.5 + parent: 2 + type: Transform + - uid: 3261 + components: + - pos: 57.5,28.5 + parent: 2 + type: Transform + - uid: 3262 + components: + - pos: 62.5,29.5 + parent: 2 + type: Transform + - uid: 3264 + components: + - pos: 62.5,45.5 + parent: 2 + type: Transform + - uid: 3266 + components: + - pos: 63.5,45.5 + parent: 2 + type: Transform + - uid: 3267 + components: + - pos: 64.5,45.5 + parent: 2 + type: Transform + - uid: 3268 + components: + - pos: 65.5,45.5 + parent: 2 + type: Transform + - uid: 3269 + components: + - pos: 65.5,44.5 + parent: 2 + type: Transform + - uid: 3270 + components: + - pos: 65.5,43.5 + parent: 2 + type: Transform + - uid: 3271 + components: + - pos: 65.5,30.5 + parent: 2 + type: Transform + - uid: 3272 + components: + - pos: 65.5,31.5 + parent: 2 + type: Transform + - uid: 3273 + components: + - pos: 65.5,32.5 + parent: 2 + type: Transform + - uid: 3274 + components: + - pos: 65.5,33.5 + parent: 2 + type: Transform + - uid: 3275 + components: + - pos: 65.5,34.5 + parent: 2 + type: Transform + - uid: 3276 + components: + - pos: 65.5,35.5 + parent: 2 + type: Transform + - uid: 3277 + components: + - pos: 65.5,36.5 + parent: 2 + type: Transform + - uid: 3278 + components: + - pos: 65.5,37.5 + parent: 2 + type: Transform + - uid: 3279 + components: + - pos: 65.5,38.5 + parent: 2 + type: Transform + - uid: 3280 + components: + - pos: 65.5,39.5 + parent: 2 + type: Transform + - uid: 3281 + components: + - pos: 65.5,40.5 + parent: 2 + type: Transform + - uid: 3282 + components: + - pos: 65.5,41.5 + parent: 2 + type: Transform + - uid: 3283 + components: + - pos: 65.5,42.5 + parent: 2 + type: Transform + - uid: 3315 + components: + - pos: 49.5,49.5 + parent: 2 + type: Transform + - uid: 3316 + components: + - pos: 63.5,49.5 + parent: 2 + type: Transform + - uid: 3318 + components: + - pos: 55.5,50.5 + parent: 2 + type: Transform + - uid: 3319 + components: + - pos: 57.5,50.5 + parent: 2 + type: Transform + - uid: 3321 + components: + - pos: 55.5,51.5 + parent: 2 + type: Transform + - uid: 3322 + components: + - pos: 57.5,51.5 + parent: 2 + type: Transform + - uid: 3352 + components: + - pos: 72.5,47.5 + parent: 2 + type: Transform + - uid: 3353 + components: + - pos: 71.5,47.5 + parent: 2 + type: Transform + - uid: 3354 + components: + - pos: 69.5,47.5 + parent: 2 + type: Transform + - uid: 3355 + components: + - pos: 70.5,47.5 + parent: 2 + type: Transform + - uid: 3361 + components: + - pos: 72.5,41.5 + parent: 2 + type: Transform + - uid: 3362 + components: + - pos: 71.5,41.5 + parent: 2 + type: Transform + - uid: 3363 + components: + - pos: 71.5,42.5 + parent: 2 + type: Transform + - uid: 3370 + components: + - pos: 72.5,43.5 + parent: 2 + type: Transform + - uid: 3371 + components: + - pos: 71.5,43.5 + parent: 2 + type: Transform + - uid: 3372 + components: + - pos: 70.5,43.5 + parent: 2 + type: Transform + - uid: 3373 + components: + - pos: 72.5,35.5 + parent: 2 + type: Transform + - uid: 3374 + components: + - pos: 71.5,35.5 + parent: 2 + type: Transform + - uid: 3375 + components: + - pos: 72.5,36.5 + parent: 2 + type: Transform + - uid: 3376 + components: + - pos: 72.5,38.5 + parent: 2 + type: Transform + - uid: 3377 + components: + - pos: 72.5,37.5 + parent: 2 + type: Transform + - uid: 3378 + components: + - pos: 72.5,39.5 + parent: 2 + type: Transform + - uid: 3379 + components: + - pos: 72.5,40.5 + parent: 2 + type: Transform + - uid: 3383 + components: + - pos: 70.5,35.5 + parent: 2 + type: Transform + - uid: 3384 + components: + - pos: 69.5,35.5 + parent: 2 + type: Transform + - uid: 3385 + components: + - pos: 68.5,35.5 + parent: 2 + type: Transform + - uid: 3417 + components: + - pos: 70.5,22.5 + parent: 2 + type: Transform + - uid: 3418 + components: + - pos: 69.5,22.5 + parent: 2 + type: Transform + - uid: 3419 + components: + - pos: 68.5,22.5 + parent: 2 + type: Transform + - uid: 3420 + components: + - pos: 68.5,21.5 + parent: 2 + type: Transform + - uid: 3421 + components: + - pos: 68.5,20.5 + parent: 2 + type: Transform + - uid: 3422 + components: + - pos: 68.5,19.5 + parent: 2 + type: Transform + - uid: 3423 + components: + - pos: 69.5,19.5 + parent: 2 + type: Transform + - uid: 3424 + components: + - pos: 70.5,19.5 + parent: 2 + type: Transform + - uid: 3425 + components: + - pos: 71.5,19.5 + parent: 2 + type: Transform + - uid: 3426 + components: + - pos: 72.5,19.5 + parent: 2 + type: Transform + - uid: 3427 + components: + - pos: 73.5,19.5 + parent: 2 + type: Transform + - uid: 3428 + components: + - pos: 73.5,20.5 + parent: 2 + type: Transform + - uid: 3429 + components: + - pos: 73.5,21.5 + parent: 2 + type: Transform + - uid: 3430 + components: + - pos: 73.5,22.5 + parent: 2 + type: Transform + - uid: 3431 + components: + - pos: 72.5,22.5 + parent: 2 + type: Transform + - uid: 3432 + components: + - pos: 73.5,23.5 + parent: 2 + type: Transform + - uid: 3433 + components: + - pos: 73.5,24.5 + parent: 2 + type: Transform + - uid: 3434 + components: + - pos: 72.5,24.5 + parent: 2 + type: Transform + - uid: 3435 + components: + - pos: 71.5,24.5 + parent: 2 + type: Transform + - uid: 3436 + components: + - pos: 70.5,24.5 + parent: 2 + type: Transform + - uid: 3437 + components: + - pos: 69.5,24.5 + parent: 2 + type: Transform + - uid: 3438 + components: + - pos: 68.5,24.5 + parent: 2 + type: Transform + - uid: 3439 + components: + - pos: 68.5,25.5 + parent: 2 + type: Transform + - uid: 3440 + components: + - pos: 68.5,26.5 + parent: 2 + type: Transform + - uid: 3449 + components: + - pos: 65.5,28.5 + parent: 2 + type: Transform + - uid: 3450 + components: + - pos: 65.5,27.5 + parent: 2 + type: Transform + - uid: 3451 + components: + - pos: 65.5,26.5 + parent: 2 + type: Transform + - uid: 3452 + components: + - pos: 65.5,25.5 + parent: 2 + type: Transform + - uid: 3453 + components: + - pos: 61.5,27.5 + parent: 2 + type: Transform + - uid: 3454 + components: + - pos: 61.5,26.5 + parent: 2 + type: Transform + - uid: 3455 + components: + - pos: 61.5,25.5 + parent: 2 + type: Transform + - uid: 3462 + components: + - pos: 61.5,22.5 + parent: 2 + type: Transform + - uid: 3463 + components: + - pos: 61.5,21.5 + parent: 2 + type: Transform + - uid: 3464 + components: + - pos: 62.5,21.5 + parent: 2 + type: Transform + - uid: 3465 + components: + - pos: 63.5,21.5 + parent: 2 + type: Transform + - uid: 3466 + components: + - pos: 64.5,21.5 + parent: 2 + type: Transform + - uid: 3467 + components: + - pos: 65.5,21.5 + parent: 2 + type: Transform + - uid: 3468 + components: + - pos: 65.5,22.5 + parent: 2 + type: Transform + - uid: 3469 + components: + - pos: 65.5,23.5 + parent: 2 + type: Transform + - uid: 3470 + components: + - pos: 61.5,20.5 + parent: 2 + type: Transform + - uid: 3471 + components: + - pos: 61.5,19.5 + parent: 2 + type: Transform + - uid: 3472 + components: + - pos: 61.5,18.5 + parent: 2 + type: Transform + - uid: 3473 + components: + - pos: 61.5,17.5 + parent: 2 + type: Transform + - uid: 3481 + components: + - pos: 50.5,26.5 + parent: 2 + type: Transform + - uid: 3482 + components: + - pos: 52.5,26.5 + parent: 2 + type: Transform + - uid: 3483 + components: + - pos: 51.5,22.5 + parent: 2 + type: Transform + - uid: 3484 + components: + - pos: 52.5,22.5 + parent: 2 + type: Transform + - uid: 3488 + components: + - pos: 51.5,26.5 + parent: 2 + type: Transform + - uid: 3491 + components: + - pos: 49.5,22.5 + parent: 2 + type: Transform + - uid: 3492 + components: + - pos: 50.5,22.5 + parent: 2 + type: Transform + - uid: 3494 + components: + - pos: 51.5,27.5 + parent: 2 + type: Transform + - uid: 3498 + components: + - pos: 49.5,26.5 + parent: 2 + type: Transform + - uid: 3505 + components: + - pos: 48.5,22.5 + parent: 2 + type: Transform + - uid: 3506 + components: + - pos: 48.5,23.5 + parent: 2 + type: Transform + - uid: 3507 + components: + - pos: 48.5,24.5 + parent: 2 + type: Transform + - uid: 3508 + components: + - pos: 48.5,25.5 + parent: 2 + type: Transform + - uid: 3509 + components: + - pos: 48.5,26.5 + parent: 2 + type: Transform + - uid: 3510 + components: + - pos: 53.5,26.5 + parent: 2 + type: Transform + - uid: 3514 + components: + - pos: 53.5,21.5 + parent: 2 + type: Transform + - uid: 3515 + components: + - pos: 53.5,22.5 + parent: 2 + type: Transform + - uid: 3516 + components: + - pos: 55.5,21.5 + parent: 2 + type: Transform + - uid: 3517 + components: + - pos: 54.5,21.5 + parent: 2 + type: Transform + - uid: 3518 + components: + - pos: 56.5,21.5 + parent: 2 + type: Transform + - uid: 3519 + components: + - pos: 57.5,21.5 + parent: 2 + type: Transform + - uid: 3528 + components: + - pos: 61.5,16.5 + parent: 2 + type: Transform + - uid: 3536 + components: + - pos: 74.5,19.5 + parent: 2 + type: Transform + - uid: 3537 + components: + - pos: 75.5,19.5 + parent: 2 + type: Transform + - uid: 3538 + components: + - pos: 75.5,18.5 + parent: 2 + type: Transform + - uid: 3539 + components: + - pos: 75.5,14.5 + parent: 2 + type: Transform + - uid: 3540 + components: + - pos: 75.5,13.5 + parent: 2 + type: Transform + - uid: 3541 + components: + - pos: 76.5,13.5 + parent: 2 + type: Transform + - uid: 3542 + components: + - pos: 81.5,13.5 + parent: 2 + type: Transform + - uid: 3544 + components: + - pos: 91.5,-5.5 + parent: 2 + type: Transform + - uid: 3545 + components: + - pos: 91.5,-4.5 + parent: 2 + type: Transform + - uid: 3547 + components: + - pos: 91.5,-3.5 + parent: 2 + type: Transform + - uid: 3548 + components: + - pos: 91.5,-2.5 + parent: 2 + type: Transform + - uid: 3549 + components: + - pos: 91.5,-1.5 + parent: 2 + type: Transform + - uid: 3552 + components: + - pos: 88.5,2.5 + parent: 2 + type: Transform + - uid: 3554 + components: + - pos: 90.5,-1.5 + parent: 2 + type: Transform + - uid: 3555 + components: + - pos: 90.5,-0.5 + parent: 2 + type: Transform + - uid: 3556 + components: + - pos: 88.5,6.5 + parent: 2 + type: Transform + - uid: 3557 + components: + - pos: 87.5,6.5 + parent: 2 + type: Transform + - uid: 3558 + components: + - pos: 87.5,2.5 + parent: 2 + type: Transform + - uid: 3559 + components: + - pos: 86.5,2.5 + parent: 2 + type: Transform + - uid: 3560 + components: + - pos: 85.5,2.5 + parent: 2 + type: Transform + - uid: 3561 + components: + - pos: 85.5,3.5 + parent: 2 + type: Transform + - uid: 3562 + components: + - pos: 85.5,5.5 + parent: 2 + type: Transform + - uid: 3564 + components: + - pos: 90.5,6.5 + parent: 2 + type: Transform + - uid: 3565 + components: + - pos: 89.5,6.5 + parent: 2 + type: Transform + - uid: 3584 + components: + - pos: 86.5,6.5 + parent: 2 + type: Transform + - uid: 3587 + components: + - pos: 89.5,2.5 + parent: 2 + type: Transform + - uid: 3589 + components: + - pos: 84.5,13.5 + parent: 2 + type: Transform + - uid: 3590 + components: + - pos: 85.5,13.5 + parent: 2 + type: Transform + - uid: 3591 + components: + - pos: 82.5,13.5 + parent: 2 + type: Transform + - uid: 3596 + components: + - pos: 86.5,7.5 + parent: 2 + type: Transform + - uid: 3597 + components: + - pos: 90.5,2.5 + parent: 2 + type: Transform + - uid: 3599 + components: + - pos: 87.5,13.5 + parent: 2 + type: Transform + - uid: 3600 + components: + - pos: 87.5,12.5 + parent: 2 + type: Transform + - uid: 3601 + components: + - pos: 87.5,11.5 + parent: 2 + type: Transform + - uid: 3602 + components: + - pos: 87.5,10.5 + parent: 2 + type: Transform + - uid: 3603 + components: + - pos: 87.5,9.5 + parent: 2 + type: Transform + - uid: 3604 + components: + - pos: 86.5,9.5 + parent: 2 + type: Transform + - uid: 3605 + components: + - pos: 86.5,8.5 + parent: 2 + type: Transform + - uid: 3607 + components: + - pos: 83.5,13.5 + parent: 2 + type: Transform + - uid: 3608 + components: + - pos: 86.5,13.5 + parent: 2 + type: Transform + - uid: 3628 + components: + - pos: 82.5,0.5 + parent: 2 + type: Transform + - uid: 3629 + components: + - pos: 82.5,-1.5 + parent: 2 + type: Transform + - uid: 3630 + components: + - pos: 82.5,-0.5 + parent: 2 + type: Transform + - uid: 3631 + components: + - pos: 82.5,-2.5 + parent: 2 + type: Transform + - uid: 3632 + components: + - pos: 83.5,-2.5 + parent: 2 + type: Transform + - uid: 3633 + components: + - pos: 83.5,-8.5 + parent: 2 + type: Transform + - uid: 3634 + components: + - pos: 69.5,12.5 + parent: 2 + type: Transform + - uid: 3635 + components: + - pos: 70.5,12.5 + parent: 2 + type: Transform + - uid: 3636 + components: + - pos: 71.5,12.5 + parent: 2 + type: Transform + - uid: 3637 + components: + - pos: 72.5,12.5 + parent: 2 + type: Transform + - uid: 3638 + components: + - pos: 72.5,13.5 + parent: 2 + type: Transform + - uid: 3639 + components: + - pos: 72.5,14.5 + parent: 2 + type: Transform + - uid: 3640 + components: + - pos: 72.5,15.5 + parent: 2 + type: Transform + - uid: 3641 + components: + - pos: 72.5,16.5 + parent: 2 + type: Transform + - uid: 3642 + components: + - pos: 72.5,17.5 + parent: 2 + type: Transform + - uid: 3643 + components: + - pos: 71.5,17.5 + parent: 2 + type: Transform + - uid: 3644 + components: + - pos: 70.5,17.5 + parent: 2 + type: Transform + - uid: 3645 + components: + - pos: 69.5,17.5 + parent: 2 + type: Transform + - uid: 3646 + components: + - pos: 68.5,17.5 + parent: 2 + type: Transform + - uid: 3647 + components: + - pos: 68.5,12.5 + parent: 2 + type: Transform + - uid: 3648 + components: + - pos: 67.5,12.5 + parent: 2 + type: Transform + - uid: 3649 + components: + - pos: 67.5,17.5 + parent: 2 + type: Transform + - uid: 3650 + components: + - pos: 66.5,17.5 + parent: 2 + type: Transform + - uid: 3651 + components: + - pos: 65.5,17.5 + parent: 2 + type: Transform + - uid: 3655 + components: + - pos: 66.5,12.5 + parent: 2 + type: Transform + - uid: 3656 + components: + - pos: 65.5,12.5 + parent: 2 + type: Transform + - uid: 3657 + components: + - pos: 64.5,17.5 + parent: 2 + type: Transform + - uid: 3658 + components: + - pos: 63.5,17.5 + parent: 2 + type: Transform + - uid: 3659 + components: + - pos: 62.5,17.5 + parent: 2 + type: Transform + - uid: 3660 + components: + - pos: 58.5,7.5 + parent: 2 + type: Transform + - uid: 3661 + components: + - pos: 59.5,7.5 + parent: 2 + type: Transform + - uid: 3662 + components: + - pos: 59.5,8.5 + parent: 2 + type: Transform + - uid: 3663 + components: + - pos: 59.5,9.5 + parent: 2 + type: Transform + - uid: 3664 + components: + - pos: 59.5,10.5 + parent: 2 + type: Transform + - uid: 3665 + components: + - pos: 59.5,11.5 + parent: 2 + type: Transform + - uid: 3668 + components: + - pos: 64.5,11.5 + parent: 2 + type: Transform + - uid: 3669 + components: + - pos: 64.5,10.5 + parent: 2 + type: Transform + - uid: 3670 + components: + - pos: 64.5,9.5 + parent: 2 + type: Transform + - uid: 3671 + components: + - pos: 64.5,8.5 + parent: 2 + type: Transform + - uid: 3672 + components: + - pos: 64.5,7.5 + parent: 2 + type: Transform + - uid: 3673 + components: + - pos: 63.5,7.5 + parent: 2 + type: Transform + - uid: 3674 + components: + - pos: 62.5,7.5 + parent: 2 + type: Transform + - uid: 3675 + components: + - pos: 61.5,7.5 + parent: 2 + type: Transform + - uid: 3676 + components: + - pos: 60.5,7.5 + parent: 2 + type: Transform + - uid: 3709 + components: + - pos: 91.5,-7.5 + parent: 2 + type: Transform + - uid: 3710 + components: + - pos: 91.5,-8.5 + parent: 2 + type: Transform + - uid: 3711 + components: + - pos: 91.5,-9.5 + parent: 2 + type: Transform + - uid: 3712 + components: + - pos: 91.5,-10.5 + parent: 2 + type: Transform + - uid: 3713 + components: + - pos: 91.5,-11.5 + parent: 2 + type: Transform + - uid: 3714 + components: + - pos: 90.5,-11.5 + parent: 2 + type: Transform + - uid: 3715 + components: + - pos: 89.5,-11.5 + parent: 2 + type: Transform + - uid: 3716 + components: + - pos: 88.5,-11.5 + parent: 2 + type: Transform + - uid: 3717 + components: + - pos: 88.5,-9.5 + parent: 2 + type: Transform + - uid: 3718 + components: + - pos: 88.5,-8.5 + parent: 2 + type: Transform + - uid: 3719 + components: + - pos: 88.5,-7.5 + parent: 2 + type: Transform + - uid: 3722 + components: + - pos: 83.5,-3.5 + parent: 2 + type: Transform + - uid: 3723 + components: + - pos: 83.5,-4.5 + parent: 2 + type: Transform + - uid: 3724 + components: + - pos: 83.5,-7.5 + parent: 2 + type: Transform + - uid: 3725 + components: + - pos: 83.5,-5.5 + parent: 2 + type: Transform + - uid: 3726 + components: + - pos: 83.5,-6.5 + parent: 2 + type: Transform + - uid: 3727 + components: + - pos: 85.5,-6.5 + parent: 2 + type: Transform + - uid: 3728 + components: + - pos: 84.5,-6.5 + parent: 2 + type: Transform + - uid: 3737 + components: + - pos: 85.5,-7.5 + parent: 2 + type: Transform + - uid: 3738 + components: + - pos: 85.5,-8.5 + parent: 2 + type: Transform + - uid: 3739 + components: + - pos: 85.5,-9.5 + parent: 2 + type: Transform + - uid: 3740 + components: + - pos: 85.5,-10.5 + parent: 2 + type: Transform + - uid: 3741 + components: + - pos: 85.5,-11.5 + parent: 2 + type: Transform + - uid: 3744 + components: + - pos: 81.5,0.5 + parent: 2 + type: Transform + - uid: 3745 + components: + - pos: 80.5,0.5 + parent: 2 + type: Transform + - uid: 3746 + components: + - pos: 79.5,0.5 + parent: 2 + type: Transform + - uid: 3747 + components: + - pos: 79.5,-0.5 + parent: 2 + type: Transform + - uid: 3748 + components: + - pos: 79.5,-1.5 + parent: 2 + type: Transform + - uid: 3749 + components: + - pos: 79.5,-2.5 + parent: 2 + type: Transform + - uid: 3750 + components: + - pos: 78.5,-2.5 + parent: 2 + type: Transform + - uid: 3751 + components: + - pos: 78.5,-8.5 + parent: 2 + type: Transform + - uid: 3752 + components: + - pos: 78.5,-9.5 + parent: 2 + type: Transform + - uid: 3753 + components: + - pos: 77.5,-9.5 + parent: 2 + type: Transform + - uid: 3754 + components: + - pos: 76.5,-9.5 + parent: 2 + type: Transform + - uid: 3755 + components: + - pos: 75.5,-9.5 + parent: 2 + type: Transform + - uid: 3756 + components: + - pos: 75.5,-8.5 + parent: 2 + type: Transform + - uid: 3757 + components: + - pos: 75.5,-7.5 + parent: 2 + type: Transform + - uid: 3758 + components: + - pos: 75.5,-6.5 + parent: 2 + type: Transform + - uid: 3759 + components: + - pos: 75.5,-5.5 + parent: 2 + type: Transform + - uid: 3760 + components: + - pos: 75.5,-4.5 + parent: 2 + type: Transform + - uid: 3761 + components: + - pos: 75.5,-3.5 + parent: 2 + type: Transform + - uid: 3762 + components: + - pos: 75.5,-2.5 + parent: 2 + type: Transform + - uid: 3763 + components: + - pos: 76.5,-2.5 + parent: 2 + type: Transform + - uid: 3764 + components: + - pos: 76.5,-1.5 + parent: 2 + type: Transform + - uid: 3765 + components: + - pos: 76.5,-0.5 + parent: 2 + type: Transform + - uid: 3766 + components: + - pos: 76.5,0.5 + parent: 2 + type: Transform + - uid: 3767 + components: + - pos: 78.5,0.5 + parent: 2 + type: Transform + - uid: 3775 + components: + - pos: 74.5,-4.5 + parent: 2 + type: Transform + - uid: 3780 + components: + - pos: 73.5,-4.5 + parent: 2 + type: Transform + - uid: 3784 + components: + - pos: 74.5,-7.5 + parent: 2 + type: Transform + - uid: 3785 + components: + - pos: 73.5,-7.5 + parent: 2 + type: Transform + - uid: 3788 + components: + - pos: 73.5,-8.5 + parent: 2 + type: Transform + - uid: 3789 + components: + - pos: 73.5,-9.5 + parent: 2 + type: Transform + - uid: 3790 + components: + - pos: 73.5,-10.5 + parent: 2 + type: Transform + - uid: 3791 + components: + - pos: 73.5,-11.5 + parent: 2 + type: Transform + - uid: 3792 + components: + - pos: 74.5,-11.5 + parent: 2 + type: Transform + - uid: 3793 + components: + - pos: 75.5,-11.5 + parent: 2 + type: Transform + - uid: 3794 + components: + - pos: 77.5,-11.5 + parent: 2 + type: Transform + - uid: 3795 + components: + - pos: 76.5,-11.5 + parent: 2 + type: Transform + - uid: 3796 + components: + - pos: 78.5,-11.5 + parent: 2 + type: Transform + - uid: 3797 + components: + - pos: 79.5,-11.5 + parent: 2 + type: Transform + - uid: 3798 + components: + - pos: 80.5,-11.5 + parent: 2 + type: Transform + - uid: 3799 + components: + - pos: 81.5,-11.5 + parent: 2 + type: Transform + - uid: 3800 + components: + - pos: 82.5,-11.5 + parent: 2 + type: Transform + - uid: 3801 + components: + - pos: 83.5,-11.5 + parent: 2 + type: Transform + - uid: 3802 + components: + - pos: 84.5,-11.5 + parent: 2 + type: Transform + - uid: 3829 + components: + - pos: 90.5,-12.5 + parent: 2 + type: Transform + - uid: 3830 + components: + - pos: 90.5,-13.5 + parent: 2 + type: Transform + - uid: 3836 + components: + - pos: 71.5,-20.5 + parent: 2 + type: Transform + - uid: 3837 + components: + - pos: 70.5,-20.5 + parent: 2 + type: Transform + - uid: 3838 + components: + - pos: 69.5,-20.5 + parent: 2 + type: Transform + - uid: 3839 + components: + - pos: 67.5,-20.5 + parent: 2 + type: Transform + - uid: 3840 + components: + - pos: 68.5,-20.5 + parent: 2 + type: Transform + - uid: 3841 + components: + - pos: 65.5,-20.5 + parent: 2 + type: Transform + - uid: 3842 + components: + - pos: 66.5,-20.5 + parent: 2 + type: Transform + - uid: 3844 + components: + - pos: 57.5,-20.5 + parent: 2 + type: Transform + - uid: 3847 + components: + - pos: 72.5,-20.5 + parent: 2 + type: Transform + - uid: 3848 + components: + - pos: 72.5,-19.5 + parent: 2 + type: Transform + - uid: 3849 + components: + - pos: 72.5,-18.5 + parent: 2 + type: Transform + - uid: 3850 + components: + - pos: 72.5,-17.5 + parent: 2 + type: Transform + - uid: 3879 + components: + - pos: 90.5,-14.5 + parent: 2 + type: Transform + - uid: 3880 + components: + - pos: 90.5,-15.5 + parent: 2 + type: Transform + - uid: 3881 + components: + - pos: 90.5,-16.5 + parent: 2 + type: Transform + - uid: 3882 + components: + - pos: 90.5,-17.5 + parent: 2 + type: Transform + - uid: 3883 + components: + - pos: 91.5,-17.5 + parent: 2 + type: Transform + - uid: 3884 + components: + - pos: 91.5,-18.5 + parent: 2 + type: Transform + - uid: 3886 + components: + - pos: 91.5,-21.5 + parent: 2 + type: Transform + - uid: 3887 + components: + - pos: 91.5,-22.5 + parent: 2 + type: Transform + - uid: 3888 + components: + - pos: 90.5,-22.5 + parent: 2 + type: Transform + - uid: 3890 + components: + - pos: 88.5,-22.5 + parent: 2 + type: Transform + - uid: 3891 + components: + - pos: 87.5,-22.5 + parent: 2 + type: Transform + - uid: 3894 + components: + - pos: 93.5,-21.5 + parent: 2 + type: Transform + - uid: 3895 + components: + - pos: 87.5,-21.5 + parent: 2 + type: Transform + - uid: 3896 + components: + - pos: 89.5,-22.5 + parent: 2 + type: Transform + - uid: 3897 + components: + - pos: 87.5,-19.5 + parent: 2 + type: Transform + - uid: 3898 + components: + - pos: 87.5,-19.5 + parent: 2 + type: Transform + - uid: 3899 + components: + - pos: 92.5,-18.5 + parent: 2 + type: Transform + - uid: 3900 + components: + - pos: 87.5,-18.5 + parent: 2 + type: Transform + - uid: 3901 + components: + - pos: 87.5,-17.5 + parent: 2 + type: Transform + - uid: 3960 + components: + - pos: 47.5,-24.5 + parent: 2 + type: Transform + - uid: 3961 + components: + - pos: 44.5,-26.5 + parent: 2 + type: Transform + - uid: 3962 + components: + - pos: 46.5,-26.5 + parent: 2 + type: Transform + - uid: 3963 + components: + - pos: 44.5,-28.5 + parent: 2 + type: Transform + - uid: 3966 + components: + - pos: 44.5,-30.5 + parent: 2 + type: Transform + - uid: 3967 + components: + - pos: 47.5,-30.5 + parent: 2 + type: Transform + - uid: 3968 + components: + - pos: 44.5,-32.5 + parent: 2 + type: Transform + - uid: 3970 + components: + - pos: 47.5,-34.5 + parent: 2 + type: Transform + - uid: 3971 + components: + - pos: 47.5,-32.5 + parent: 2 + type: Transform + - uid: 3972 + components: + - pos: 11.5,-58.5 + parent: 2 + type: Transform + - uid: 3989 + components: + - pos: 21.5,-59.5 + parent: 2 + type: Transform + - uid: 3990 + components: + - pos: 20.5,-59.5 + parent: 2 + type: Transform + - uid: 3991 + components: + - pos: 29.5,-59.5 + parent: 2 + type: Transform + - uid: 3992 + components: + - pos: 11.5,-56.5 + parent: 2 + type: Transform + - uid: 3993 + components: + - pos: 11.5,-59.5 + parent: 2 + type: Transform + - uid: 3994 + components: + - pos: 12.5,-59.5 + parent: 2 + type: Transform + - uid: 3995 + components: + - pos: 22.5,-59.5 + parent: 2 + type: Transform + - uid: 3996 + components: + - pos: 15.5,-59.5 + parent: 2 + type: Transform + - uid: 3999 + components: + - pos: 47.5,-22.5 + parent: 2 + type: Transform + - uid: 4005 + components: + - pos: 45.5,-24.5 + parent: 2 + type: Transform + - uid: 4006 + components: + - pos: 46.5,-28.5 + parent: 2 + type: Transform + - uid: 4055 + components: + - pos: 48.5,-33.5 + parent: 2 + type: Transform + - uid: 4056 + components: + - pos: 48.5,-34.5 + parent: 2 + type: Transform + - uid: 4057 + components: + - pos: 49.5,-22.5 + parent: 2 + type: Transform + - uid: 4077 + components: + - pos: 48.5,-22.5 + parent: 2 + type: Transform + - uid: 4078 + components: + - pos: 48.5,-32.5 + parent: 2 + type: Transform + - uid: 4079 + components: + - pos: 49.5,-33.5 + parent: 2 + type: Transform + - uid: 4080 + components: + - pos: 49.5,-29.5 + parent: 2 + type: Transform + - uid: 4081 + components: + - pos: 49.5,-26.5 + parent: 2 + type: Transform + - uid: 4087 + components: + - pos: 49.5,-23.5 + parent: 2 + type: Transform + - uid: 4088 + components: + - pos: 49.5,-24.5 + parent: 2 + type: Transform + - uid: 4112 + components: + - pos: 19.5,-13.5 + parent: 2 + type: Transform + - uid: 4118 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,-21.5 + parent: 2 + type: Transform + - uid: 4119 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,-21.5 + parent: 2 + type: Transform + - uid: 4120 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-21.5 + parent: 2 + type: Transform + - uid: 4121 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,-21.5 + parent: 2 + type: Transform + - uid: 4123 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,-21.5 + parent: 2 + type: Transform + - uid: 4166 + components: + - rot: 1.5707963267948966 rad + pos: 50.5,-21.5 + parent: 2 + type: Transform + - uid: 4167 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,-21.5 + parent: 2 + type: Transform + - uid: 4168 + components: + - rot: 1.5707963267948966 rad + pos: 49.5,-21.5 + parent: 2 + type: Transform + - uid: 4169 + components: + - rot: 1.5707963267948966 rad + pos: 52.5,-21.5 + parent: 2 + type: Transform + - uid: 4170 + components: + - rot: 1.5707963267948966 rad + pos: 51.5,-21.5 + parent: 2 + type: Transform + - uid: 4171 + components: + - rot: 1.5707963267948966 rad + pos: 53.5,-21.5 + parent: 2 + type: Transform + - uid: 4172 + components: + - rot: 1.5707963267948966 rad + pos: 54.5,-21.5 + parent: 2 + type: Transform + - uid: 4173 + components: + - rot: 1.5707963267948966 rad + pos: 55.5,-21.5 + parent: 2 + type: Transform + - uid: 4174 + components: + - rot: 1.5707963267948966 rad + pos: 55.5,-20.5 + parent: 2 + type: Transform + - uid: 4187 + components: + - pos: 32.5,-21.5 + parent: 2 + type: Transform + - uid: 4229 + components: + - pos: 37.5,-33.5 + parent: 2 + type: Transform + - uid: 4244 + components: + - pos: 30.5,-22.5 + parent: 2 + type: Transform + - uid: 4246 + components: + - pos: 31.5,-21.5 + parent: 2 + type: Transform + - uid: 4254 + components: + - pos: 33.5,-29.5 + parent: 2 + type: Transform + - uid: 4255 + components: + - pos: 33.5,-31.5 + parent: 2 + type: Transform + - uid: 4256 + components: + - pos: 33.5,-33.5 + parent: 2 + type: Transform + - uid: 4261 + components: + - pos: 48.5,-25.5 + parent: 2 + type: Transform + - uid: 4262 + components: + - pos: 48.5,-26.5 + parent: 2 + type: Transform + - uid: 4263 + components: + - pos: 48.5,-27.5 + parent: 2 + type: Transform + - uid: 4275 + components: + - pos: 45.5,-34.5 + parent: 2 + type: Transform + - uid: 4278 + components: + - pos: 33.5,-26.5 + parent: 2 + type: Transform + - uid: 4279 + components: + - pos: 17.5,-20.5 + parent: 2 + type: Transform + - uid: 4293 + components: + - pos: 18.5,-20.5 + parent: 2 + type: Transform + - uid: 4294 + components: + - pos: 48.5,-30.5 + parent: 2 + type: Transform + - uid: 4295 + components: + - pos: 48.5,-28.5 + parent: 2 + type: Transform + - uid: 4299 + components: + - pos: 50.5,-47.5 + parent: 2 + type: Transform + - uid: 4329 + components: + - pos: 30.5,-45.5 + parent: 2 + type: Transform + - uid: 4330 + components: + - pos: 29.5,-45.5 + parent: 2 + type: Transform + - uid: 4331 + components: + - pos: 27.5,-44.5 + parent: 2 + type: Transform + - uid: 4332 + components: + - pos: 27.5,-43.5 + parent: 2 + type: Transform + - uid: 4333 + components: + - pos: 33.5,-37.5 + parent: 2 + type: Transform + - uid: 4369 + components: + - pos: 37.5,-37.5 + parent: 2 + type: Transform + - uid: 4373 + components: + - pos: 36.5,-37.5 + parent: 2 + type: Transform + - uid: 4374 + components: + - pos: 33.5,-38.5 + parent: 2 + type: Transform + - uid: 4375 + components: + - pos: 33.5,-41.5 + parent: 2 + type: Transform + - uid: 4382 + components: + - pos: 34.5,-37.5 + parent: 2 + type: Transform + - uid: 4383 + components: + - pos: 33.5,-40.5 + parent: 2 + type: Transform + - uid: 4384 + components: + - pos: 34.5,-41.5 + parent: 2 + type: Transform + - uid: 4386 + components: + - pos: 36.5,-41.5 + parent: 2 + type: Transform + - uid: 4387 + components: + - pos: 37.5,-41.5 + parent: 2 + type: Transform + - uid: 4388 + components: + - pos: 37.5,-40.5 + parent: 2 + type: Transform + - uid: 4389 + components: + - pos: 37.5,-38.5 + parent: 2 + type: Transform + - uid: 4395 + components: + - pos: 27.5,-45.5 + parent: 2 + type: Transform + - uid: 4396 + components: + - pos: 28.5,-45.5 + parent: 2 + type: Transform + - uid: 4417 + components: + - pos: 47.5,-36.5 + parent: 2 + type: Transform + - uid: 4418 + components: + - pos: 41.5,-36.5 + parent: 2 + type: Transform + - uid: 4450 + components: + - pos: 33.5,-45.5 + parent: 2 + type: Transform + - uid: 4466 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-41.5 + parent: 2 + type: Transform + - uid: 4468 + components: + - rot: 3.141592653589793 rad + pos: 40.5,-41.5 + parent: 2 + type: Transform + - uid: 4472 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-41.5 + parent: 2 + type: Transform + - uid: 4477 + components: + - rot: 3.141592653589793 rad + pos: 44.5,-41.5 + parent: 2 + type: Transform + - uid: 4481 + components: + - rot: 3.141592653589793 rad + pos: 46.5,-41.5 + parent: 2 + type: Transform + - uid: 4486 + components: + - pos: 47.5,-41.5 + parent: 2 + type: Transform + - uid: 4491 + components: + - pos: 45.5,-42.5 + parent: 2 + type: Transform + - uid: 4567 + components: + - pos: 41.5,-37.5 + parent: 2 + type: Transform + - uid: 4743 + components: + - pos: 44.5,27.5 + parent: 2 + type: Transform + - uid: 4885 + components: + - pos: 13.5,35.5 + parent: 2 + type: Transform + - uid: 5287 + components: + - pos: 6.5,18.5 + parent: 2 + type: Transform + - uid: 5288 + components: + - pos: 4.5,18.5 + parent: 2 + type: Transform + - uid: 5291 + components: + - pos: -0.5,1.5 + parent: 2 + type: Transform + - uid: 5292 + components: + - pos: 2.5,1.5 + parent: 2 + type: Transform + - uid: 5298 + components: + - pos: -13.5,1.5 + parent: 2 + type: Transform + - uid: 5300 + components: + - pos: 45.5,-41.5 + parent: 2 + type: Transform + - uid: 5352 + components: + - pos: -14.5,1.5 + parent: 2 + type: Transform + - uid: 5353 + components: + - pos: 2.5,5.5 + parent: 2 + type: Transform + - uid: 5354 + components: + - pos: 2.5,9.5 + parent: 2 + type: Transform + - uid: 5364 + components: + - pos: 46.5,12.5 + parent: 2 + type: Transform + - uid: 5477 + components: + - pos: 72.5,34.5 + parent: 2 + type: Transform + - uid: 5478 + components: + - pos: 72.5,30.5 + parent: 2 + type: Transform + - uid: 5479 + components: + - pos: 72.5,26.5 + parent: 2 + type: Transform + - uid: 5480 + components: + - pos: 71.5,26.5 + parent: 2 + type: Transform + - uid: 5481 + components: + - pos: 70.5,26.5 + parent: 2 + type: Transform + - uid: 5482 + components: + - pos: 69.5,26.5 + parent: 2 + type: Transform + - uid: 5724 + components: + - pos: 51.5,-10.5 + parent: 2 + type: Transform + - uid: 5725 + components: + - pos: 51.5,-11.5 + parent: 2 + type: Transform + - uid: 6120 + components: + - pos: 12.5,-41.5 + parent: 2 + type: Transform + - uid: 6121 + components: + - pos: 12.5,-40.5 + parent: 2 + type: Transform + - uid: 6122 + components: + - pos: 13.5,-40.5 + parent: 2 + type: Transform + - uid: 6123 + components: + - pos: 14.5,-40.5 + parent: 2 + type: Transform + - uid: 6138 + components: + - pos: 8.5,-41.5 + parent: 2 + type: Transform + - uid: 6139 + components: + - pos: 10.5,-43.5 + parent: 2 + type: Transform + - uid: 6196 + components: + - pos: 69.5,-12.5 + parent: 2 + type: Transform + - uid: 6197 + components: + - pos: 70.5,-12.5 + parent: 2 + type: Transform + - uid: 6209 + components: + - pos: 62.5,-20.5 + parent: 2 + type: Transform + - uid: 6210 + components: + - pos: 64.5,-20.5 + parent: 2 + type: Transform + - uid: 6211 + components: + - pos: 60.5,-20.5 + parent: 2 + type: Transform + - uid: 6212 + components: + - pos: 56.5,-20.5 + parent: 2 + type: Transform + - uid: 6782 + components: + - pos: 58.5,-20.5 + parent: 2 + type: Transform + - uid: 6783 + components: + - pos: 59.5,-20.5 + parent: 2 + type: Transform + - uid: 6784 + components: + - pos: 61.5,-20.5 + parent: 2 + type: Transform + - uid: 6785 + components: + - pos: 63.5,-20.5 + parent: 2 + type: Transform + - uid: 6816 + components: + - pos: -22.5,-15.5 + parent: 2 + type: Transform + - uid: 6822 + components: + - pos: -4.5,-13.5 + parent: 2 + type: Transform + - uid: 6838 + components: + - pos: -10.5,-15.5 + parent: 2 + type: Transform + - uid: 6860 + components: + - pos: -15.5,14.5 + parent: 2 + type: Transform + - uid: 6867 + components: + - pos: 4.5,14.5 + parent: 2 + type: Transform + - uid: 6880 + components: + - pos: 14.5,-12.5 + parent: 2 + type: Transform + - uid: 6881 + components: + - pos: 15.5,-12.5 + parent: 2 + type: Transform + - uid: 6882 + components: + - pos: 17.5,-12.5 + parent: 2 + type: Transform + - uid: 6887 + components: + - pos: -7.5,-7.5 + parent: 2 + type: Transform + - uid: 6895 + components: + - pos: -21.5,-15.5 + parent: 2 + type: Transform + - uid: 6902 + components: + - pos: 10.5,32.5 + parent: 2 + type: Transform + - uid: 6903 + components: + - pos: 10.5,31.5 + parent: 2 + type: Transform + - uid: 6904 + components: + - pos: 10.5,30.5 + parent: 2 + type: Transform + - uid: 6905 + components: + - pos: 10.5,29.5 + parent: 2 + type: Transform + - uid: 6906 + components: + - pos: 12.5,32.5 + parent: 2 + type: Transform + - uid: 6907 + components: + - pos: 13.5,32.5 + parent: 2 + type: Transform + - uid: 6908 + components: + - pos: 11.5,32.5 + parent: 2 + type: Transform + - uid: 6909 + components: + - pos: 14.5,32.5 + parent: 2 + type: Transform + - uid: 6910 + components: + - pos: 14.5,31.5 + parent: 2 + type: Transform + - uid: 6911 + components: + - pos: 14.5,29.5 + parent: 2 + type: Transform + - uid: 6912 + components: + - pos: 14.5,30.5 + parent: 2 + type: Transform + - uid: 7466 + components: + - pos: -3.5,14.5 + parent: 2 + type: Transform + - uid: 7471 + components: + - pos: -1.5,14.5 + parent: 2 + type: Transform + - uid: 7474 + components: + - pos: 1.5,14.5 + parent: 2 + type: Transform + - uid: 7533 + components: + - pos: -4.5,14.5 + parent: 2 + type: Transform + - uid: 7550 + components: + - pos: -5.5,14.5 + parent: 2 + type: Transform + - uid: 7551 + components: + - pos: -6.5,1.5 + parent: 2 + type: Transform + - uid: 7559 + components: + - pos: -11.5,1.5 + parent: 2 + type: Transform + - uid: 7587 + components: + - pos: -14.5,14.5 + parent: 2 + type: Transform + - uid: 7669 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,0.5 + parent: 2 + type: Transform + - uid: 7712 + components: + - pos: -16.5,14.5 + parent: 2 + type: Transform + - uid: 7763 + components: + - pos: -13.5,14.5 + parent: 2 + type: Transform + - uid: 7840 + components: + - pos: -18.5,14.5 + parent: 2 + type: Transform + - uid: 7897 + components: + - pos: 3.5,-33.5 + parent: 2 + type: Transform + - uid: 7898 + components: + - pos: 2.5,-33.5 + parent: 2 + type: Transform + - uid: 7899 + components: + - pos: 1.5,-33.5 + parent: 2 + type: Transform + - uid: 7900 + components: + - pos: -0.5,-13.5 + parent: 2 + type: Transform + - uid: 7901 + components: + - pos: 2.5,-17.5 + parent: 2 + type: Transform + - uid: 7902 + components: + - pos: -0.5,-14.5 + parent: 2 + type: Transform + - uid: 7903 + components: + - pos: -0.5,-15.5 + parent: 2 + type: Transform + - uid: 7904 + components: + - pos: -0.5,-16.5 + parent: 2 + type: Transform + - uid: 7905 + components: + - pos: -0.5,-17.5 + parent: 2 + type: Transform + - uid: 7906 + components: + - pos: 5.5,-17.5 + parent: 2 + type: Transform + - uid: 7907 + components: + - pos: 6.5,-17.5 + parent: 2 + type: Transform + - uid: 7908 + components: + - pos: 7.5,-17.5 + parent: 2 + type: Transform + - uid: 7909 + components: + - pos: 8.5,-17.5 + parent: 2 + type: Transform + - uid: 7910 + components: + - pos: 8.5,-18.5 + parent: 2 + type: Transform + - uid: 7911 + components: + - pos: 8.5,-19.5 + parent: 2 + type: Transform + - uid: 7912 + components: + - pos: 8.5,-20.5 + parent: 2 + type: Transform + - uid: 7913 + components: + - pos: 8.5,-21.5 + parent: 2 + type: Transform + - uid: 7914 + components: + - pos: 8.5,-22.5 + parent: 2 + type: Transform + - uid: 7915 + components: + - pos: 6.5,-28.5 + parent: 2 + type: Transform + - uid: 7916 + components: + - pos: 6.5,-29.5 + parent: 2 + type: Transform + - uid: 7917 + components: + - pos: 7.5,-22.5 + parent: 2 + type: Transform + - uid: 7918 + components: + - pos: 6.5,-22.5 + parent: 2 + type: Transform + - uid: 7919 + components: + - pos: 5.5,-22.5 + parent: 2 + type: Transform + - uid: 7920 + components: + - pos: 4.5,-22.5 + parent: 2 + type: Transform + - uid: 7921 + components: + - pos: 3.5,-22.5 + parent: 2 + type: Transform + - uid: 7922 + components: + - pos: 3.5,-23.5 + parent: 2 + type: Transform + - uid: 7923 + components: + - pos: 3.5,-24.5 + parent: 2 + type: Transform + - uid: 7924 + components: + - pos: 3.5,-25.5 + parent: 2 + type: Transform + - uid: 7926 + components: + - pos: 3.5,-26.5 + parent: 2 + type: Transform + - uid: 7927 + components: + - pos: 3.5,-27.5 + parent: 2 + type: Transform + - uid: 7928 + components: + - pos: 0.5,-33.5 + parent: 2 + type: Transform + - uid: 7929 + components: + - pos: 0.5,-32.5 + parent: 2 + type: Transform + - uid: 7930 + components: + - pos: -0.5,-32.5 + parent: 2 + type: Transform + - uid: 7931 + components: + - pos: -1.5,-32.5 + parent: 2 + type: Transform + - uid: 7932 + components: + - pos: -1.5,-31.5 + parent: 2 + type: Transform + - uid: 7933 + components: + - pos: -1.5,-30.5 + parent: 2 + type: Transform + - uid: 7934 + components: + - pos: -1.5,-27.5 + parent: 2 + type: Transform + - uid: 7935 + components: + - pos: 2.5,-27.5 + parent: 2 + type: Transform + - uid: 8326 + components: + - pos: 52.5,-9.5 + parent: 2 + type: Transform + - uid: 8328 + components: + - pos: 44.5,20.5 + parent: 2 + type: Transform + - uid: 8329 + components: + - pos: 44.5,19.5 + parent: 2 + type: Transform + - uid: 8330 + components: + - pos: 44.5,18.5 + parent: 2 + type: Transform + - uid: 8331 + components: + - pos: 44.5,17.5 + parent: 2 + type: Transform + - uid: 8333 + components: + - pos: 44.5,16.5 + parent: 2 + type: Transform + - uid: 8720 + components: + - pos: 93.5,-18.5 + parent: 2 + type: Transform + - uid: 8723 + components: + - pos: 94.5,-18.5 + parent: 2 + type: Transform + - uid: 8724 + components: + - pos: 94.5,-21.5 + parent: 2 + type: Transform + - uid: 8726 + components: + - pos: 92.5,-21.5 + parent: 2 + type: Transform + - uid: 8758 + components: + - pos: 104.5,-10.5 + parent: 2 + type: Transform + - uid: 8760 + components: + - pos: 99.5,-18.5 + parent: 2 + type: Transform + - uid: 8761 + components: + - pos: 99.5,-21.5 + parent: 2 + type: Transform + - uid: 8762 + components: + - pos: 100.5,-18.5 + parent: 2 + type: Transform + - uid: 8763 + components: + - pos: 101.5,-18.5 + parent: 2 + type: Transform + - uid: 8764 + components: + - pos: 100.5,-21.5 + parent: 2 + type: Transform + - uid: 8765 + components: + - pos: 101.5,-21.5 + parent: 2 + type: Transform + - uid: 8768 + components: + - pos: 101.5,-17.5 + parent: 2 + type: Transform + - uid: 8769 + components: + - pos: 101.5,-16.5 + parent: 2 + type: Transform + - uid: 8770 + components: + - pos: 101.5,-15.5 + parent: 2 + type: Transform + - uid: 8771 + components: + - pos: 101.5,-14.5 + parent: 2 + type: Transform + - uid: 8772 + components: + - pos: 101.5,-13.5 + parent: 2 + type: Transform + - uid: 8773 + components: + - pos: 101.5,-12.5 + parent: 2 + type: Transform + - uid: 8774 + components: + - pos: 101.5,-11.5 + parent: 2 + type: Transform + - uid: 8778 + components: + - pos: 104.5,-9.5 + parent: 2 + type: Transform + - uid: 8780 + components: + - pos: 104.5,-11.5 + parent: 2 + type: Transform + - uid: 8781 + components: + - pos: 103.5,-11.5 + parent: 2 + type: Transform + - uid: 8782 + components: + - pos: 102.5,-11.5 + parent: 2 + type: Transform + - uid: 8792 + components: + - pos: 102.5,-21.5 + parent: 2 + type: Transform + - uid: 8793 + components: + - pos: 103.5,-21.5 + parent: 2 + type: Transform + - uid: 8794 + components: + - pos: 104.5,-21.5 + parent: 2 + type: Transform + - uid: 8811 + components: + - pos: 108.5,-25.5 + parent: 2 + type: Transform + - uid: 8812 + components: + - pos: 108.5,-24.5 + parent: 2 + type: Transform + - uid: 8813 + components: + - pos: 108.5,-23.5 + parent: 2 + type: Transform + - uid: 8814 + components: + - pos: 108.5,-22.5 + parent: 2 + type: Transform + - uid: 8815 + components: + - pos: 108.5,-21.5 + parent: 2 + type: Transform + - uid: 8816 + components: + - pos: 108.5,-20.5 + parent: 2 + type: Transform + - uid: 8865 + components: + - pos: 108.5,-10.5 + parent: 2 + type: Transform + - uid: 8866 + components: + - pos: 108.5,-9.5 + parent: 2 + type: Transform + - uid: 8867 + components: + - pos: 108.5,-11.5 + parent: 2 + type: Transform + - uid: 8868 + components: + - pos: 108.5,-12.5 + parent: 2 + type: Transform + - uid: 8869 + components: + - pos: 108.5,-13.5 + parent: 2 + type: Transform + - uid: 8870 + components: + - pos: 108.5,-14.5 + parent: 2 + type: Transform + - uid: 8875 + components: + - pos: 109.5,-20.5 + parent: 2 + type: Transform + - uid: 8876 + components: + - pos: 110.5,-20.5 + parent: 2 + type: Transform + - uid: 8877 + components: + - pos: 113.5,-20.5 + parent: 2 + type: Transform + - uid: 8878 + components: + - pos: 116.5,-20.5 + parent: 2 + type: Transform + - uid: 8885 + components: + - pos: 109.5,-14.5 + parent: 2 + type: Transform + - uid: 8935 + components: + - pos: 110.5,-14.5 + parent: 2 + type: Transform + - uid: 8936 + components: + - pos: 113.5,-14.5 + parent: 2 + type: Transform + - uid: 8937 + components: + - pos: 116.5,-14.5 + parent: 2 + type: Transform + - uid: 8955 + components: + - pos: 116.5,-17.5 + parent: 2 + type: Transform + - uid: 9217 + components: + - pos: 39.5,-13.5 + parent: 2 + type: Transform + - uid: 9218 + components: + - pos: 39.5,-14.5 + parent: 2 + type: Transform + - uid: 9219 + components: + - pos: 39.5,-15.5 + parent: 2 + type: Transform + - uid: 9220 + components: + - pos: 39.5,-17.5 + parent: 2 + type: Transform + - uid: 10089 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-20.5 + parent: 2 + type: Transform + - uid: 10090 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-20.5 + parent: 2 + type: Transform + - uid: 10091 + components: + - rot: 3.141592653589793 rad + pos: 37.5,-20.5 + parent: 2 + type: Transform + - uid: 10092 + components: + - pos: -4.5,-3.5 + parent: 2 + type: Transform + - uid: 10093 + components: + - pos: -4.5,-5.5 + parent: 2 + type: Transform + - uid: 10094 + components: + - pos: -4.5,-6.5 + parent: 2 + type: Transform + - uid: 10095 + components: + - pos: 3.5,-7.5 + parent: 2 + type: Transform + - uid: 10096 + components: + - pos: 4.5,-7.5 + parent: 2 + type: Transform + - uid: 10097 + components: + - pos: 6.5,-7.5 + parent: 2 + type: Transform + - uid: 10098 + components: + - pos: 6.5,-10.5 + parent: 2 + type: Transform + - uid: 10099 + components: + - pos: 5.5,-10.5 + parent: 2 + type: Transform + - uid: 10100 + components: + - pos: 4.5,-10.5 + parent: 2 + type: Transform + - uid: 10101 + components: + - pos: 3.5,-10.5 + parent: 2 + type: Transform + - uid: 10102 + components: + - pos: 3.5,-8.5 + parent: 2 + type: Transform + - uid: 10104 + components: + - pos: -4.5,-2.5 + parent: 2 + type: Transform + - uid: 10105 + components: + - pos: 5.5,-7.5 + parent: 2 + type: Transform + - uid: 10106 + components: + - pos: -0.5,-6.5 + parent: 2 + type: Transform + - uid: 10107 + components: + - pos: 0.5,-2.5 + parent: 2 + type: Transform + - uid: 10108 + components: + - pos: 0.5,-5.5 + parent: 2 + type: Transform + - uid: 10109 + components: + - pos: 0.5,-6.5 + parent: 2 + type: Transform + - uid: 10110 + components: + - pos: -3.5,-6.5 + parent: 2 + type: Transform + - uid: 10111 + components: + - pos: 0.5,-3.5 + parent: 2 + type: Transform + - uid: 10112 + components: + - pos: -2.5,-6.5 + parent: 2 + type: Transform + - uid: 10113 + components: + - pos: -1.5,-6.5 + parent: 2 + type: Transform + - uid: 10219 + components: + - rot: 3.141592653589793 rad + pos: 41.5,-20.5 + parent: 2 + type: Transform + - uid: 10220 + components: + - rot: 3.141592653589793 rad + pos: 49.5,-20.5 + parent: 2 + type: Transform + - uid: 10221 + components: + - rot: 3.141592653589793 rad + pos: 48.5,-20.5 + parent: 2 + type: Transform + - uid: 10222 + components: + - rot: 3.141592653589793 rad + pos: 47.5,-20.5 + parent: 2 + type: Transform + - uid: 10223 + components: + - rot: 3.141592653589793 rad + pos: 46.5,-20.5 + parent: 2 + type: Transform + - uid: 10224 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-20.5 + parent: 2 + type: Transform + - uid: 10225 + components: + - rot: 3.141592653589793 rad + pos: 44.5,-20.5 + parent: 2 + type: Transform + - uid: 10226 + components: + - rot: 3.141592653589793 rad + pos: 43.5,-20.5 + parent: 2 + type: Transform + - uid: 10227 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-20.5 + parent: 2 + type: Transform + - uid: 10745 + components: + - pos: 85.5,-19.5 + parent: 2 + type: Transform + - uid: 10746 + components: + - pos: 86.5,-19.5 + parent: 2 + type: Transform + - uid: 10747 + components: + - pos: 84.5,-19.5 + parent: 2 + type: Transform + - uid: 10748 + components: + - pos: 84.5,-21.5 + parent: 2 + type: Transform + - uid: 10749 + components: + - pos: 85.5,-21.5 + parent: 2 + type: Transform + - uid: 10750 + components: + - pos: 86.5,-21.5 + parent: 2 + type: Transform + - uid: 10878 + components: + - pos: 26.5,-59.5 + parent: 2 + type: Transform + - uid: 11398 + components: + - pos: 87.5,5.5 + parent: 2 + type: Transform + - uid: 11400 + components: + - pos: 87.5,3.5 + parent: 2 + type: Transform + - uid: 11756 + components: + - pos: 29.5,-24.5 + parent: 2 + type: Transform + - uid: 11757 + components: + - pos: 29.5,-23.5 + parent: 2 + type: Transform + - uid: 11769 + components: + - pos: 37.5,-21.5 + parent: 2 + type: Transform + - uid: 11770 + components: + - pos: 36.5,-21.5 + parent: 2 + type: Transform + - uid: 11771 + components: + - pos: 35.5,-21.5 + parent: 2 + type: Transform + - uid: 11772 + components: + - pos: 34.5,-21.5 + parent: 2 + type: Transform + - uid: 11773 + components: + - pos: 33.5,-21.5 + parent: 2 + type: Transform + - uid: 11778 + components: + - pos: 29.5,-22.5 + parent: 2 + type: Transform + - uid: 11792 + components: + - pos: 104.5,-24.5 + parent: 2 + type: Transform + - uid: 11793 + components: + - pos: 104.5,-23.5 + parent: 2 + type: Transform + - uid: 11794 + components: + - pos: 104.5,-22.5 + parent: 2 + type: Transform + - uid: 11795 + components: + - pos: 104.5,-25.5 + parent: 2 + type: Transform + - uid: 12888 + components: + - pos: 50.5,-49.5 + parent: 2 + type: Transform + - uid: 12889 + components: + - pos: 49.5,-49.5 + parent: 2 + type: Transform + - uid: 12892 + components: + - pos: 46.5,-49.5 + parent: 2 + type: Transform + - uid: 12893 + components: + - pos: 45.5,-49.5 + parent: 2 + type: Transform + - uid: 12894 + components: + - pos: 45.5,-43.5 + parent: 2 + type: Transform + - uid: 12895 + components: + - pos: 46.5,-43.5 + parent: 2 + type: Transform + - uid: 12896 + components: + - pos: 47.5,-43.5 + parent: 2 + type: Transform + - uid: 12897 + components: + - pos: 48.5,-43.5 + parent: 2 + type: Transform + - uid: 12898 + components: + - pos: 49.5,-43.5 + parent: 2 + type: Transform + - uid: 12899 + components: + - pos: 50.5,-43.5 + parent: 2 + type: Transform + - uid: 12905 + components: + - pos: 50.5,-48.5 + parent: 2 + type: Transform + - uid: 12907 + components: + - pos: 50.5,-46.5 + parent: 2 + type: Transform + - uid: 12908 + components: + - pos: 50.5,-45.5 + parent: 2 + type: Transform + - uid: 12909 + components: + - pos: 50.5,-44.5 + parent: 2 + type: Transform + - uid: 12920 + components: + - pos: 44.5,-49.5 + parent: 2 + type: Transform + - uid: 12921 + components: + - pos: 40.5,-49.5 + parent: 2 + type: Transform + - uid: 12922 + components: + - pos: 39.5,-49.5 + parent: 2 + type: Transform + - uid: 12923 + components: + - pos: 38.5,-49.5 + parent: 2 + type: Transform + - uid: 12924 + components: + - pos: 37.5,-49.5 + parent: 2 + type: Transform + - uid: 12925 + components: + - pos: 36.5,-49.5 + parent: 2 + type: Transform + - uid: 12926 + components: + - pos: 35.5,-49.5 + parent: 2 + type: Transform + - uid: 12927 + components: + - pos: 34.5,-49.5 + parent: 2 + type: Transform + - uid: 12928 + components: + - pos: 33.5,-49.5 + parent: 2 + type: Transform + - uid: 12929 + components: + - pos: 33.5,-48.5 + parent: 2 + type: Transform + - uid: 12930 + components: + - pos: 33.5,-46.5 + parent: 2 + type: Transform + - uid: 12933 + components: + - pos: 31.5,-49.5 + parent: 2 + type: Transform +- proto: WallSolid + entities: + - uid: 109 + components: + - pos: -0.5,-12.5 + parent: 2 + type: Transform + - uid: 110 + components: + - pos: -0.5,-11.5 + parent: 2 + type: Transform + - uid: 111 + components: + - pos: -0.5,-9.5 + parent: 2 + type: Transform + - uid: 112 + components: + - pos: -0.5,-8.5 + parent: 2 + type: Transform + - uid: 113 + components: + - pos: 0.5,-8.5 + parent: 2 + type: Transform + - uid: 114 + components: + - pos: 0.5,-7.5 + parent: 2 + type: Transform + - uid: 145 + components: + - pos: 2.5,-3.5 + parent: 2 + type: Transform + - uid: 146 + components: + - pos: 2.5,-4.5 + parent: 2 + type: Transform + - uid: 148 + components: + - pos: 2.5,-6.5 + parent: 2 + type: Transform + - uid: 149 + components: + - pos: 2.5,-7.5 + parent: 2 + type: Transform + - uid: 154 + components: + - pos: 5.5,-2.5 + parent: 2 + type: Transform + - uid: 155 + components: + - pos: 6.5,-2.5 + parent: 2 + type: Transform + - uid: 162 + components: + - pos: 3.5,-2.5 + parent: 2 + type: Transform + - uid: 186 + components: + - pos: 2.5,-10.5 + parent: 2 + type: Transform + - uid: 187 + components: + - pos: 2.5,-12.5 + parent: 2 + type: Transform + - uid: 188 + components: + - pos: 2.5,-13.5 + parent: 2 + type: Transform + - uid: 189 + components: + - pos: 2.5,-14.5 + parent: 2 + type: Transform + - uid: 237 + components: + - pos: 7.5,14.5 + parent: 2 + type: Transform + - uid: 238 + components: + - pos: 7.5,13.5 + parent: 2 + type: Transform + - uid: 271 + components: + - pos: 7.5,8.5 + parent: 2 + type: Transform + - uid: 272 + components: + - pos: 7.5,4.5 + parent: 2 + type: Transform + - uid: 273 + components: + - pos: 7.5,3.5 + parent: 2 + type: Transform + - uid: 274 + components: + - pos: 7.5,2.5 + parent: 2 + type: Transform + - uid: 275 + components: + - pos: 8.5,2.5 + parent: 2 + type: Transform + - uid: 276 + components: + - pos: 9.5,2.5 + parent: 2 + type: Transform + - uid: 277 + components: + - pos: 10.5,2.5 + parent: 2 + type: Transform + - uid: 278 + components: + - pos: 11.5,2.5 + parent: 2 + type: Transform + - uid: 279 + components: + - pos: 12.5,2.5 + parent: 2 + type: Transform + - uid: 280 + components: + - pos: 13.5,2.5 + parent: 2 + type: Transform + - uid: 281 + components: + - pos: 14.5,2.5 + parent: 2 + type: Transform + - uid: 282 + components: + - pos: 14.5,3.5 + parent: 2 + type: Transform + - uid: 283 + components: + - pos: 14.5,4.5 + parent: 2 + type: Transform + - uid: 284 + components: + - pos: 14.5,6.5 + parent: 2 + type: Transform + - uid: 285 + components: + - pos: 13.5,6.5 + parent: 2 + type: Transform + - uid: 286 + components: + - pos: 13.5,7.5 + parent: 2 + type: Transform + - uid: 287 + components: + - pos: 13.5,8.5 + parent: 2 + type: Transform + - uid: 288 + components: + - pos: 14.5,8.5 + parent: 2 + type: Transform + - uid: 298 + components: + - pos: 45.5,-8.5 + parent: 2 + type: Transform + - uid: 299 + components: + - pos: 44.5,-8.5 + parent: 2 + type: Transform + - uid: 369 + components: + - pos: 7.5,12.5 + parent: 2 + type: Transform + - uid: 370 + components: + - pos: 7.5,11.5 + parent: 2 + type: Transform + - uid: 448 + components: + - pos: 8.5,14.5 + parent: 2 + type: Transform + - uid: 449 + components: + - pos: 9.5,14.5 + parent: 2 + type: Transform + - uid: 450 + components: + - pos: 10.5,14.5 + parent: 2 + type: Transform + - uid: 451 + components: + - pos: 11.5,14.5 + parent: 2 + type: Transform + - uid: 452 + components: + - pos: 13.5,14.5 + parent: 2 + type: Transform + - uid: 453 + components: + - pos: 13.5,13.5 + parent: 2 + type: Transform + - uid: 455 + components: + - pos: 13.5,11.5 + parent: 2 + type: Transform + - uid: 456 + components: + - pos: 12.5,11.5 + parent: 2 + type: Transform + - uid: 457 + components: + - pos: 8.5,11.5 + parent: 2 + type: Transform + - uid: 458 + components: + - pos: 9.5,11.5 + parent: 2 + type: Transform + - uid: 459 + components: + - pos: 10.5,11.5 + parent: 2 + type: Transform + - uid: 472 + components: + - pos: 10.5,-11.5 + parent: 2 + type: Transform + - uid: 473 + components: + - pos: 10.5,-12.5 + parent: 2 + type: Transform + - uid: 475 + components: + - pos: 9.5,-13.5 + parent: 2 + type: Transform + - uid: 476 + components: + - pos: 8.5,-13.5 + parent: 2 + type: Transform + - uid: 477 + components: + - pos: 8.5,-14.5 + parent: 2 + type: Transform + - uid: 478 + components: + - pos: 7.5,-14.5 + parent: 2 + type: Transform + - uid: 479 + components: + - pos: 6.5,-14.5 + parent: 2 + type: Transform + - uid: 486 + components: + - pos: 12.5,-11.5 + parent: 2 + type: Transform + - uid: 487 + components: + - pos: 12.5,-10.5 + parent: 2 + type: Transform + - uid: 488 + components: + - pos: 12.5,-12.5 + parent: 2 + type: Transform + - uid: 489 + components: + - pos: 11.5,-12.5 + parent: 2 + type: Transform + - uid: 514 + components: + - pos: 24.5,-2.5 + parent: 2 + type: Transform + - uid: 515 + components: + - pos: 23.5,-3.5 + parent: 2 + type: Transform + - uid: 516 + components: + - pos: 24.5,-3.5 + parent: 2 + type: Transform + - uid: 517 + components: + - pos: 24.5,-1.5 + parent: 2 + type: Transform + - uid: 518 + components: + - pos: 23.5,-1.5 + parent: 2 + type: Transform + - uid: 519 + components: + - pos: 23.5,-4.5 + parent: 2 + type: Transform + - uid: 520 + components: + - pos: 23.5,-5.5 + parent: 2 + type: Transform + - uid: 521 + components: + - pos: 23.5,-6.5 + parent: 2 + type: Transform + - uid: 522 + components: + - pos: 24.5,-6.5 + parent: 2 + type: Transform + - uid: 523 + components: + - pos: 24.5,-7.5 + parent: 2 + type: Transform + - uid: 524 + components: + - pos: 24.5,-8.5 + parent: 2 + type: Transform + - uid: 525 + components: + - pos: 23.5,-8.5 + parent: 2 + type: Transform + - uid: 526 + components: + - pos: 22.5,-8.5 + parent: 2 + type: Transform + - uid: 527 + components: + - pos: 19.5,-8.5 + parent: 2 + type: Transform + - uid: 528 + components: + - pos: 18.5,-8.5 + parent: 2 + type: Transform + - uid: 529 + components: + - pos: 18.5,-9.5 + parent: 2 + type: Transform + - uid: 530 + components: + - pos: 18.5,-10.5 + parent: 2 + type: Transform + - uid: 531 + components: + - pos: 18.5,-11.5 + parent: 2 + type: Transform + - uid: 532 + components: + - pos: 18.5,-12.5 + parent: 2 + type: Transform + - uid: 546 + components: + - pos: 15.5,2.5 + parent: 2 + type: Transform + - uid: 547 + components: + - pos: 16.5,2.5 + parent: 2 + type: Transform + - uid: 548 + components: + - pos: 17.5,2.5 + parent: 2 + type: Transform + - uid: 557 + components: + - pos: 43.5,-11.5 + parent: 2 + type: Transform + - uid: 696 + components: + - pos: 9.5,-21.5 + parent: 2 + type: Transform + - uid: 763 + components: + - pos: 24.5,-22.5 + parent: 2 + type: Transform + - uid: 770 + components: + - pos: 19.5,-29.5 + parent: 2 + type: Transform + - uid: 771 + components: + - pos: 24.5,-29.5 + parent: 2 + type: Transform + - uid: 772 + components: + - pos: 23.5,-29.5 + parent: 2 + type: Transform + - uid: 773 + components: + - pos: 22.5,-29.5 + parent: 2 + type: Transform + - uid: 774 + components: + - pos: 20.5,-29.5 + parent: 2 + type: Transform + - uid: 816 + components: + - pos: 24.5,-30.5 + parent: 2 + type: Transform + - uid: 819 + components: + - pos: 28.5,-30.5 + parent: 2 + type: Transform + - uid: 821 + components: + - pos: 28.5,-29.5 + parent: 2 + type: Transform + - uid: 822 + components: + - pos: 29.5,-29.5 + parent: 2 + type: Transform + - uid: 843 + components: + - pos: 19.5,-31.5 + parent: 2 + type: Transform + - uid: 844 + components: + - pos: 20.5,-33.5 + parent: 2 + type: Transform + - uid: 845 + components: + - pos: 19.5,-33.5 + parent: 2 + type: Transform + - uid: 846 + components: + - pos: 22.5,-33.5 + parent: 2 + type: Transform + - uid: 847 + components: + - pos: 30.5,-33.5 + parent: 2 + type: Transform + - uid: 848 + components: + - pos: 32.5,-33.5 + parent: 2 + type: Transform + - uid: 852 + components: + - pos: 32.5,-29.5 + parent: 2 + type: Transform + - uid: 853 + components: + - pos: 30.5,-29.5 + parent: 2 + type: Transform + - uid: 1041 + components: + - pos: 27.5,-37.5 + parent: 2 + type: Transform + - uid: 1049 + components: + - pos: 13.5,17.5 + parent: 2 + type: Transform + - uid: 1050 + components: + - pos: 13.5,16.5 + parent: 2 + type: Transform + - uid: 1053 + components: + - pos: 10.5,18.5 + parent: 2 + type: Transform + - uid: 1054 + components: + - pos: 10.5,17.5 + parent: 2 + type: Transform + - uid: 1055 + components: + - pos: 10.5,16.5 + parent: 2 + type: Transform + - uid: 1056 + components: + - pos: 10.5,20.5 + parent: 2 + type: Transform + - uid: 1057 + components: + - pos: 12.5,20.5 + parent: 2 + type: Transform + - uid: 1058 + components: + - pos: 11.5,20.5 + parent: 2 + type: Transform + - uid: 1059 + components: + - pos: 12.5,19.5 + parent: 2 + type: Transform + - uid: 1060 + components: + - pos: 13.5,19.5 + parent: 2 + type: Transform + - uid: 1063 + components: + - pos: 14.5,17.5 + parent: 2 + type: Transform + - uid: 1064 + components: + - pos: 15.5,17.5 + parent: 2 + type: Transform + - uid: 1065 + components: + - pos: 16.5,17.5 + parent: 2 + type: Transform + - uid: 1066 + components: + - pos: 17.5,14.5 + parent: 2 + type: Transform + - uid: 1067 + components: + - pos: 17.5,12.5 + parent: 2 + type: Transform + - uid: 1068 + components: + - pos: 17.5,11.5 + parent: 2 + type: Transform + - uid: 1069 + components: + - pos: 16.5,11.5 + parent: 2 + type: Transform + - uid: 1070 + components: + - pos: 15.5,11.5 + parent: 2 + type: Transform + - uid: 1071 + components: + - pos: 14.5,11.5 + parent: 2 + type: Transform + - uid: 1072 + components: + - pos: 17.5,16.5 + parent: 2 + type: Transform + - uid: 1073 + components: + - pos: 17.5,17.5 + parent: 2 + type: Transform + - uid: 1074 + components: + - pos: 18.5,17.5 + parent: 2 + type: Transform + - uid: 1075 + components: + - pos: 19.5,17.5 + parent: 2 + type: Transform + - uid: 1076 + components: + - pos: 19.5,16.5 + parent: 2 + type: Transform + - uid: 1077 + components: + - pos: 20.5,16.5 + parent: 2 + type: Transform + - uid: 1083 + components: + - pos: 20.5,11.5 + parent: 2 + type: Transform + - uid: 1084 + components: + - pos: 21.5,11.5 + parent: 2 + type: Transform + - uid: 1085 + components: + - pos: 21.5,10.5 + parent: 2 + type: Transform + - uid: 1086 + components: + - pos: 21.5,9.5 + parent: 2 + type: Transform + - uid: 1087 + components: + - pos: 21.5,8.5 + parent: 2 + type: Transform + - uid: 1088 + components: + - pos: 21.5,5.5 + parent: 2 + type: Transform + - uid: 1089 + components: + - pos: 21.5,4.5 + parent: 2 + type: Transform + - uid: 1090 + components: + - pos: 20.5,4.5 + parent: 2 + type: Transform + - uid: 1091 + components: + - pos: 19.5,4.5 + parent: 2 + type: Transform + - uid: 1092 + components: + - pos: 18.5,4.5 + parent: 2 + type: Transform + - uid: 1093 + components: + - pos: 17.5,4.5 + parent: 2 + type: Transform + - uid: 1094 + components: + - pos: 16.5,4.5 + parent: 2 + type: Transform + - uid: 1095 + components: + - pos: 16.5,5.5 + parent: 2 + type: Transform + - uid: 1096 + components: + - pos: 16.5,6.5 + parent: 2 + type: Transform + - uid: 1097 + components: + - pos: 16.5,7.5 + parent: 2 + type: Transform + - uid: 1098 + components: + - pos: 16.5,8.5 + parent: 2 + type: Transform + - uid: 1099 + components: + - pos: 21.5,7.5 + parent: 2 + type: Transform + - uid: 1100 + components: + - pos: 15.5,8.5 + parent: 2 + type: Transform + - uid: 1114 + components: + - pos: 45.5,-11.5 + parent: 2 + type: Transform + - uid: 1115 + components: + - pos: 23.5,2.5 + parent: 2 + type: Transform + - uid: 1116 + components: + - pos: 24.5,2.5 + parent: 2 + type: Transform + - uid: 1117 + components: + - pos: 22.5,2.5 + parent: 2 + type: Transform + - uid: 1118 + components: + - pos: 21.5,2.5 + parent: 2 + type: Transform + - uid: 1119 + components: + - pos: 20.5,2.5 + parent: 2 + type: Transform + - uid: 1120 + components: + - pos: 19.5,2.5 + parent: 2 + type: Transform + - uid: 1121 + components: + - pos: 24.5,11.5 + parent: 2 + type: Transform + - uid: 1122 + components: + - pos: 23.5,11.5 + parent: 2 + type: Transform + - uid: 1123 + components: + - pos: 22.5,11.5 + parent: 2 + type: Transform + - uid: 1124 + components: + - pos: 25.5,11.5 + parent: 2 + type: Transform + - uid: 1125 + components: + - pos: 24.5,9.5 + parent: 2 + type: Transform + - uid: 1126 + components: + - pos: 24.5,8.5 + parent: 2 + type: Transform + - uid: 1127 + components: + - pos: 24.5,7.5 + parent: 2 + type: Transform + - uid: 1128 + components: + - pos: 24.5,6.5 + parent: 2 + type: Transform + - uid: 1129 + components: + - pos: 24.5,5.5 + parent: 2 + type: Transform + - uid: 1130 + components: + - pos: 24.5,4.5 + parent: 2 + type: Transform + - uid: 1131 + components: + - pos: 24.5,3.5 + parent: 2 + type: Transform + - uid: 1132 + components: + - pos: 25.5,9.5 + parent: 2 + type: Transform + - uid: 1133 + components: + - pos: 27.5,9.5 + parent: 2 + type: Transform + - uid: 1134 + components: + - pos: 28.5,9.5 + parent: 2 + type: Transform + - uid: 1135 + components: + - pos: 28.5,8.5 + parent: 2 + type: Transform + - uid: 1136 + components: + - pos: 28.5,7.5 + parent: 2 + type: Transform + - uid: 1137 + components: + - pos: 28.5,6.5 + parent: 2 + type: Transform + - uid: 1138 + components: + - pos: 28.5,5.5 + parent: 2 + type: Transform + - uid: 1139 + components: + - pos: 28.5,4.5 + parent: 2 + type: Transform + - uid: 1140 + components: + - pos: 27.5,4.5 + parent: 2 + type: Transform + - uid: 1141 + components: + - pos: 28.5,3.5 + parent: 2 + type: Transform + - uid: 1142 + components: + - pos: 28.5,2.5 + parent: 2 + type: Transform + - uid: 1143 + components: + - pos: 25.5,4.5 + parent: 2 + type: Transform + - uid: 1145 + components: + - pos: 45.5,-9.5 + parent: 2 + type: Transform + - uid: 1169 + components: + - pos: 33.5,5.5 + parent: 2 + type: Transform + - uid: 1170 + components: + - pos: 33.5,4.5 + parent: 2 + type: Transform + - uid: 1171 + components: + - pos: 33.5,3.5 + parent: 2 + type: Transform + - uid: 1172 + components: + - pos: 33.5,2.5 + parent: 2 + type: Transform + - uid: 1174 + components: + - pos: 43.5,-8.5 + parent: 2 + type: Transform + - uid: 1175 + components: + - pos: 32.5,-1.5 + parent: 2 + type: Transform + - uid: 1184 + components: + - pos: 30.5,9.5 + parent: 2 + type: Transform + - uid: 1185 + components: + - pos: 30.5,10.5 + parent: 2 + type: Transform + - uid: 1186 + components: + - pos: 31.5,10.5 + parent: 2 + type: Transform + - uid: 1187 + components: + - pos: 32.5,10.5 + parent: 2 + type: Transform + - uid: 1188 + components: + - pos: 33.5,10.5 + parent: 2 + type: Transform + - uid: 1189 + components: + - pos: 33.5,9.5 + parent: 2 + type: Transform + - uid: 1190 + components: + - pos: 33.5,8.5 + parent: 2 + type: Transform + - uid: 1191 + components: + - pos: 33.5,7.5 + parent: 2 + type: Transform + - uid: 1197 + components: + - pos: 27.5,11.5 + parent: 2 + type: Transform + - uid: 1198 + components: + - pos: 28.5,11.5 + parent: 2 + type: Transform + - uid: 1199 + components: + - pos: 28.5,12.5 + parent: 2 + type: Transform + - uid: 1200 + components: + - pos: 29.5,12.5 + parent: 2 + type: Transform + - uid: 1201 + components: + - pos: 30.5,12.5 + parent: 2 + type: Transform + - uid: 1202 + components: + - pos: 31.5,12.5 + parent: 2 + type: Transform + - uid: 1203 + components: + - pos: 32.5,12.5 + parent: 2 + type: Transform + - uid: 1204 + components: + - pos: 33.5,12.5 + parent: 2 + type: Transform + - uid: 1208 + components: + - pos: 28.5,-37.5 + parent: 2 + type: Transform + - uid: 1209 + components: + - pos: 29.5,-37.5 + parent: 2 + type: Transform + - uid: 1210 + components: + - pos: 30.5,-37.5 + parent: 2 + type: Transform + - uid: 1482 + components: + - pos: 28.5,-1.5 + parent: 2 + type: Transform + - uid: 1494 + components: + - pos: 40.5,-5.5 + parent: 2 + type: Transform + - uid: 1495 + components: + - pos: 40.5,-4.5 + parent: 2 + type: Transform + - uid: 1497 + components: + - pos: 40.5,-2.5 + parent: 2 + type: Transform + - uid: 1498 + components: + - pos: 40.5,-1.5 + parent: 2 + type: Transform + - uid: 1499 + components: + - pos: 39.5,-1.5 + parent: 2 + type: Transform + - uid: 1500 + components: + - pos: 38.5,-1.5 + parent: 2 + type: Transform + - uid: 1501 + components: + - pos: 37.5,-1.5 + parent: 2 + type: Transform + - uid: 1502 + components: + - pos: 36.5,-1.5 + parent: 2 + type: Transform + - uid: 1503 + components: + - pos: 37.5,-2.5 + parent: 2 + type: Transform + - uid: 1504 + components: + - pos: 31.5,-1.5 + parent: 2 + type: Transform + - uid: 1505 + components: + - pos: 37.5,-8.5 + parent: 2 + type: Transform + - uid: 1517 + components: + - pos: 44.5,-11.5 + parent: 2 + type: Transform + - uid: 1522 + components: + - pos: 28.5,-2.5 + parent: 2 + type: Transform + - uid: 1523 + components: + - pos: 30.5,-1.5 + parent: 2 + type: Transform + - uid: 1536 + components: + - pos: 40.5,-8.5 + parent: 2 + type: Transform + - uid: 1542 + components: + - pos: 41.5,-8.5 + parent: 2 + type: Transform + - uid: 1579 + components: + - pos: 28.5,-13.5 + parent: 2 + type: Transform + - uid: 1580 + components: + - pos: 29.5,-13.5 + parent: 2 + type: Transform + - uid: 1581 + components: + - pos: 30.5,-13.5 + parent: 2 + type: Transform + - uid: 1582 + components: + - pos: 31.5,-13.5 + parent: 2 + type: Transform + - uid: 1583 + components: + - pos: 32.5,-13.5 + parent: 2 + type: Transform + - uid: 1584 + components: + - pos: 13.5,12.5 + parent: 2 + type: Transform + - uid: 1587 + components: + - pos: 33.5,-13.5 + parent: 2 + type: Transform + - uid: 1588 + components: + - pos: 34.5,-13.5 + parent: 2 + type: Transform + - uid: 1589 + components: + - pos: 35.5,-13.5 + parent: 2 + type: Transform + - uid: 1590 + components: + - pos: 36.5,-13.5 + parent: 2 + type: Transform + - uid: 1591 + components: + - pos: 37.5,-13.5 + parent: 2 + type: Transform + - uid: 1592 + components: + - pos: 38.5,-13.5 + parent: 2 + type: Transform + - uid: 1644 + components: + - pos: 48.5,-10.5 + parent: 2 + type: Transform + - uid: 1645 + components: + - pos: 48.5,-11.5 + parent: 2 + type: Transform + - uid: 1697 + components: + - pos: 23.5,-34.5 + parent: 2 + type: Transform + - uid: 1721 + components: + - pos: 29.5,-18.5 + parent: 2 + type: Transform + - uid: 1722 + components: + - pos: 28.5,-18.5 + parent: 2 + type: Transform + - uid: 1723 + components: + - pos: 30.5,-18.5 + parent: 2 + type: Transform + - uid: 1724 + components: + - pos: 31.5,-18.5 + parent: 2 + type: Transform + - uid: 1725 + components: + - pos: 33.5,-18.5 + parent: 2 + type: Transform + - uid: 1726 + components: + - pos: 34.5,-18.5 + parent: 2 + type: Transform + - uid: 1727 + components: + - pos: 34.5,-17.5 + parent: 2 + type: Transform + - uid: 1728 + components: + - pos: 34.5,-15.5 + parent: 2 + type: Transform + - uid: 1729 + components: + - pos: 34.5,-14.5 + parent: 2 + type: Transform + - uid: 1731 + components: + - pos: 38.5,-18.5 + parent: 2 + type: Transform + - uid: 1732 + components: + - pos: 37.5,-18.5 + parent: 2 + type: Transform + - uid: 1733 + components: + - pos: 36.5,-18.5 + parent: 2 + type: Transform + - uid: 1734 + components: + - pos: 35.5,-18.5 + parent: 2 + type: Transform + - uid: 1767 + components: + - pos: 23.5,-33.5 + parent: 2 + type: Transform + - uid: 1775 + components: + - pos: 29.5,-34.5 + parent: 2 + type: Transform + - uid: 1776 + components: + - pos: 29.5,-33.5 + parent: 2 + type: Transform + - uid: 1779 + components: + - pos: 48.5,-2.5 + parent: 2 + type: Transform + - uid: 1781 + components: + - pos: 32.5,-12.5 + parent: 2 + type: Transform + - uid: 1782 + components: + - pos: 28.5,-12.5 + parent: 2 + type: Transform + - uid: 1783 + components: + - pos: 28.5,-11.5 + parent: 2 + type: Transform + - uid: 1784 + components: + - pos: 41.5,-10.5 + parent: 2 + type: Transform + - uid: 1785 + components: + - pos: 41.5,-11.5 + parent: 2 + type: Transform + - uid: 1787 + components: + - pos: 41.5,-9.5 + parent: 2 + type: Transform + - uid: 1788 + components: + - pos: 32.5,-8.5 + parent: 2 + type: Transform + - uid: 1790 + components: + - pos: 31.5,-8.5 + parent: 2 + type: Transform + - uid: 1802 + components: + - pos: 28.5,-19.5 + parent: 2 + type: Transform + - uid: 1877 + components: + - pos: 29.5,-8.5 + parent: 2 + type: Transform + - uid: 1949 + components: + - pos: 48.5,-14.5 + parent: 2 + type: Transform + - uid: 1950 + components: + - pos: 48.5,-15.5 + parent: 2 + type: Transform + - uid: 1951 + components: + - pos: 48.5,-16.5 + parent: 2 + type: Transform + - uid: 1952 + components: + - pos: 48.5,-17.5 + parent: 2 + type: Transform + - uid: 1953 + components: + - pos: 50.5,-17.5 + parent: 2 + type: Transform + - uid: 1954 + components: + - pos: 49.5,-17.5 + parent: 2 + type: Transform + - uid: 1955 + components: + - pos: 50.5,-16.5 + parent: 2 + type: Transform + - uid: 1956 + components: + - pos: 50.5,-15.5 + parent: 2 + type: Transform + - uid: 1957 + components: + - pos: 50.5,-14.5 + parent: 2 + type: Transform + - uid: 1958 + components: + - pos: 49.5,-14.5 + parent: 2 + type: Transform + - uid: 1972 + components: + - pos: 58.5,-18.5 + parent: 2 + type: Transform + - uid: 1973 + components: + - pos: 58.5,-16.5 + parent: 2 + type: Transform + - uid: 1974 + components: + - pos: 57.5,-16.5 + parent: 2 + type: Transform + - uid: 1975 + components: + - pos: 56.5,-16.5 + parent: 2 + type: Transform + - uid: 1976 + components: + - pos: 53.5,-15.5 + parent: 2 + type: Transform + - uid: 1977 + components: + - pos: 53.5,-14.5 + parent: 2 + type: Transform + - uid: 1978 + components: + - pos: 53.5,-13.5 + parent: 2 + type: Transform + - uid: 1979 + components: + - pos: 58.5,-15.5 + parent: 2 + type: Transform + - uid: 1982 + components: + - pos: 54.5,-16.5 + parent: 2 + type: Transform + - uid: 1983 + components: + - pos: 53.5,-16.5 + parent: 2 + type: Transform + - uid: 1991 + components: + - pos: 15.5,19.5 + parent: 2 + type: Transform + - uid: 1992 + components: + - pos: 16.5,19.5 + parent: 2 + type: Transform + - uid: 1993 + components: + - pos: 17.5,19.5 + parent: 2 + type: Transform + - uid: 1994 + components: + - pos: 18.5,19.5 + parent: 2 + type: Transform + - uid: 1995 + components: + - pos: 19.5,19.5 + parent: 2 + type: Transform + - uid: 1996 + components: + - pos: 20.5,19.5 + parent: 2 + type: Transform + - uid: 1997 + components: + - pos: 21.5,19.5 + parent: 2 + type: Transform + - uid: 2025 + components: + - pos: 6.5,29.5 + parent: 2 + type: Transform + - uid: 2026 + components: + - pos: 7.5,29.5 + parent: 2 + type: Transform + - uid: 2034 + components: + - pos: 14.5,27.5 + parent: 2 + type: Transform + - uid: 2044 + components: + - pos: 16.5,23.5 + parent: 2 + type: Transform + - uid: 2045 + components: + - pos: 16.5,24.5 + parent: 2 + type: Transform + - uid: 2046 + components: + - pos: 16.5,25.5 + parent: 2 + type: Transform + - uid: 2047 + components: + - pos: 15.5,26.5 + parent: 2 + type: Transform + - uid: 2048 + components: + - pos: 16.5,26.5 + parent: 2 + type: Transform + - uid: 2049 + components: + - pos: 14.5,26.5 + parent: 2 + type: Transform + - uid: 2093 + components: + - pos: 17.5,25.5 + parent: 2 + type: Transform + - uid: 2094 + components: + - pos: 18.5,25.5 + parent: 2 + type: Transform + - uid: 2095 + components: + - pos: 19.5,25.5 + parent: 2 + type: Transform + - uid: 2096 + components: + - pos: 20.5,25.5 + parent: 2 + type: Transform + - uid: 2097 + components: + - pos: 21.5,25.5 + parent: 2 + type: Transform + - uid: 2098 + components: + - pos: 21.5,26.5 + parent: 2 + type: Transform + - uid: 2099 + components: + - pos: 22.5,26.5 + parent: 2 + type: Transform + - uid: 2100 + components: + - pos: 23.5,26.5 + parent: 2 + type: Transform + - uid: 2101 + components: + - pos: 24.5,26.5 + parent: 2 + type: Transform + - uid: 2103 + components: + - pos: 23.5,28.5 + parent: 2 + type: Transform + - uid: 2104 + components: + - pos: 22.5,28.5 + parent: 2 + type: Transform + - uid: 2105 + components: + - pos: 21.5,28.5 + parent: 2 + type: Transform + - uid: 2106 + components: + - pos: 20.5,28.5 + parent: 2 + type: Transform + - uid: 2107 + components: + - pos: 19.5,28.5 + parent: 2 + type: Transform + - uid: 2108 + components: + - pos: 18.5,28.5 + parent: 2 + type: Transform + - uid: 2109 + components: + - pos: 17.5,28.5 + parent: 2 + type: Transform + - uid: 2110 + components: + - pos: 16.5,28.5 + parent: 2 + type: Transform + - uid: 2111 + components: + - pos: 16.5,29.5 + parent: 2 + type: Transform + - uid: 2112 + components: + - pos: 16.5,30.5 + parent: 2 + type: Transform + - uid: 2113 + components: + - pos: 16.5,31.5 + parent: 2 + type: Transform + - uid: 2114 + components: + - pos: 16.5,32.5 + parent: 2 + type: Transform + - uid: 2169 + components: + - pos: 22.5,19.5 + parent: 2 + type: Transform + - uid: 2170 + components: + - pos: 23.5,19.5 + parent: 2 + type: Transform + - uid: 2171 + components: + - pos: 24.5,19.5 + parent: 2 + type: Transform + - uid: 2172 + components: + - pos: 23.5,18.5 + parent: 2 + type: Transform + - uid: 2173 + components: + - pos: 23.5,17.5 + parent: 2 + type: Transform + - uid: 2174 + components: + - pos: 23.5,16.5 + parent: 2 + type: Transform + - uid: 2175 + components: + - pos: 22.5,16.5 + parent: 2 + type: Transform + - uid: 2176 + components: + - pos: 24.5,16.5 + parent: 2 + type: Transform + - uid: 2244 + components: + - pos: 29.5,22.5 + parent: 2 + type: Transform + - uid: 2245 + components: + - pos: 30.5,22.5 + parent: 2 + type: Transform + - uid: 2246 + components: + - pos: 31.5,22.5 + parent: 2 + type: Transform + - uid: 2247 + components: + - pos: 29.5,19.5 + parent: 2 + type: Transform + - uid: 2248 + components: + - pos: 30.5,19.5 + parent: 2 + type: Transform + - uid: 2249 + components: + - pos: 31.5,19.5 + parent: 2 + type: Transform + - uid: 2360 + components: + - pos: 39.5,20.5 + parent: 2 + type: Transform + - uid: 2361 + components: + - pos: 37.5,20.5 + parent: 2 + type: Transform + - uid: 2496 + components: + - pos: 34.5,10.5 + parent: 2 + type: Transform + - uid: 2497 + components: + - pos: 39.5,10.5 + parent: 2 + type: Transform + - uid: 2498 + components: + - pos: 39.5,4.5 + parent: 2 + type: Transform + - uid: 2499 + components: + - pos: 39.5,3.5 + parent: 2 + type: Transform + - uid: 2500 + components: + - pos: 36.5,10.5 + parent: 2 + type: Transform + - uid: 2501 + components: + - pos: 37.5,10.5 + parent: 2 + type: Transform + - uid: 2502 + components: + - pos: 38.5,10.5 + parent: 2 + type: Transform + - uid: 2503 + components: + - pos: 39.5,2.5 + parent: 2 + type: Transform + - uid: 2504 + components: + - pos: 38.5,2.5 + parent: 2 + type: Transform + - uid: 2505 + components: + - pos: 37.5,2.5 + parent: 2 + type: Transform + - uid: 2506 + components: + - pos: 36.5,2.5 + parent: 2 + type: Transform + - uid: 2507 + components: + - pos: 35.5,2.5 + parent: 2 + type: Transform + - uid: 2508 + components: + - pos: 34.5,2.5 + parent: 2 + type: Transform + - uid: 2509 + components: + - pos: 37.5,3.5 + parent: 2 + type: Transform + - uid: 2510 + components: + - pos: 37.5,4.5 + parent: 2 + type: Transform + - uid: 2511 + components: + - pos: 35.5,4.5 + parent: 2 + type: Transform + - uid: 2547 + components: + - pos: 39.5,12.5 + parent: 2 + type: Transform + - uid: 2548 + components: + - pos: 38.5,12.5 + parent: 2 + type: Transform + - uid: 2549 + components: + - pos: 37.5,12.5 + parent: 2 + type: Transform + - uid: 2553 + components: + - pos: 36.5,12.5 + parent: 2 + type: Transform + - uid: 2554 + components: + - pos: 35.5,12.5 + parent: 2 + type: Transform + - uid: 2555 + components: + - pos: 34.5,12.5 + parent: 2 + type: Transform + - uid: 2562 + components: + - pos: 28.5,33.5 + parent: 2 + type: Transform + - uid: 2668 + components: + - pos: 16.5,34.5 + parent: 2 + type: Transform + - uid: 2669 + components: + - pos: 22.5,34.5 + parent: 2 + type: Transform + - uid: 2670 + components: + - pos: 21.5,34.5 + parent: 2 + type: Transform + - uid: 2671 + components: + - pos: 20.5,34.5 + parent: 2 + type: Transform + - uid: 2672 + components: + - pos: 18.5,34.5 + parent: 2 + type: Transform + - uid: 2673 + components: + - pos: 19.5,34.5 + parent: 2 + type: Transform + - uid: 2674 + components: + - pos: 17.5,34.5 + parent: 2 + type: Transform + - uid: 2675 + components: + - pos: 16.5,33.5 + parent: 2 + type: Transform + - uid: 2871 + components: + - pos: 65.5,-12.5 + parent: 2 + type: Transform + - uid: 2872 + components: + - pos: 66.5,-12.5 + parent: 2 + type: Transform + - uid: 2873 + components: + - pos: 67.5,-12.5 + parent: 2 + type: Transform + - uid: 2874 + components: + - pos: 68.5,-12.5 + parent: 2 + type: Transform + - uid: 2875 + components: + - pos: 68.5,-13.5 + parent: 2 + type: Transform + - uid: 2876 + components: + - pos: 68.5,-14.5 + parent: 2 + type: Transform + - uid: 2877 + components: + - pos: 68.5,-15.5 + parent: 2 + type: Transform + - uid: 2883 + components: + - pos: 68.5,-17.5 + parent: 2 + type: Transform + - uid: 2884 + components: + - pos: 68.5,-18.5 + parent: 2 + type: Transform + - uid: 2886 + components: + - pos: 64.5,-18.5 + parent: 2 + type: Transform + - uid: 2887 + components: + - pos: 61.5,-18.5 + parent: 2 + type: Transform + - uid: 2923 + components: + - pos: 63.5,-3.5 + parent: 2 + type: Transform + - uid: 2924 + components: + - pos: 63.5,-4.5 + parent: 2 + type: Transform + - uid: 2925 + components: + - pos: 63.5,-2.5 + parent: 2 + type: Transform + - uid: 2926 + components: + - pos: 63.5,-1.5 + parent: 2 + type: Transform + - uid: 2927 + components: + - pos: 63.5,-0.5 + parent: 2 + type: Transform + - uid: 2928 + components: + - pos: 64.5,-0.5 + parent: 2 + type: Transform + - uid: 2929 + components: + - pos: 66.5,-0.5 + parent: 2 + type: Transform + - uid: 2930 + components: + - pos: 67.5,-0.5 + parent: 2 + type: Transform + - uid: 2931 + components: + - pos: 68.5,-0.5 + parent: 2 + type: Transform + - uid: 2932 + components: + - pos: 68.5,-1.5 + parent: 2 + type: Transform + - uid: 2938 + components: + - pos: 68.5,-7.5 + parent: 2 + type: Transform + - uid: 2939 + components: + - pos: 67.5,-7.5 + parent: 2 + type: Transform + - uid: 2940 + components: + - pos: 68.5,-8.5 + parent: 2 + type: Transform + - uid: 2941 + components: + - pos: 65.5,-7.5 + parent: 2 + type: Transform + - uid: 2942 + components: + - pos: 64.5,-8.5 + parent: 2 + type: Transform + - uid: 2943 + components: + - pos: 63.5,-7.5 + parent: 2 + type: Transform + - uid: 2944 + components: + - pos: 63.5,-6.5 + parent: 2 + type: Transform + - uid: 2945 + components: + - pos: 64.5,-7.5 + parent: 2 + type: Transform + - uid: 2946 + components: + - pos: 64.5,-9.5 + parent: 2 + type: Transform + - uid: 2947 + components: + - pos: 64.5,-10.5 + parent: 2 + type: Transform + - uid: 2948 + components: + - pos: 64.5,-11.5 + parent: 2 + type: Transform + - uid: 2949 + components: + - pos: 68.5,-10.5 + parent: 2 + type: Transform + - uid: 2950 + components: + - pos: 68.5,-11.5 + parent: 2 + type: Transform + - uid: 2958 + components: + - pos: 54.5,-7.5 + parent: 2 + type: Transform + - uid: 2959 + components: + - pos: 54.5,-2.5 + parent: 2 + type: Transform + - uid: 2960 + components: + - pos: 53.5,-2.5 + parent: 2 + type: Transform + - uid: 2969 + components: + - pos: 48.5,1.5 + parent: 2 + type: Transform + - uid: 2970 + components: + - pos: 48.5,2.5 + parent: 2 + type: Transform + - uid: 2971 + components: + - pos: 48.5,5.5 + parent: 2 + type: Transform + - uid: 2972 + components: + - pos: 47.5,5.5 + parent: 2 + type: Transform + - uid: 2973 + components: + - pos: 46.5,5.5 + parent: 2 + type: Transform + - uid: 2974 + components: + - pos: 45.5,5.5 + parent: 2 + type: Transform + - uid: 2975 + components: + - pos: 44.5,5.5 + parent: 2 + type: Transform + - uid: 2976 + components: + - pos: 43.5,5.5 + parent: 2 + type: Transform + - uid: 2977 + components: + - pos: 43.5,6.5 + parent: 2 + type: Transform + - uid: 2978 + components: + - pos: 43.5,4.5 + parent: 2 + type: Transform + - uid: 2979 + components: + - pos: 43.5,3.5 + parent: 2 + type: Transform + - uid: 2980 + components: + - pos: 43.5,2.5 + parent: 2 + type: Transform + - uid: 2981 + components: + - pos: 49.5,5.5 + parent: 2 + type: Transform + - uid: 2982 + components: + - pos: 50.5,5.5 + parent: 2 + type: Transform + - uid: 2983 + components: + - pos: 52.5,5.5 + parent: 2 + type: Transform + - uid: 2984 + components: + - pos: 51.5,5.5 + parent: 2 + type: Transform + - uid: 2985 + components: + - pos: 53.5,1.5 + parent: 2 + type: Transform + - uid: 2995 + components: + - pos: 53.5,5.5 + parent: 2 + type: Transform + - uid: 2996 + components: + - pos: 54.5,5.5 + parent: 2 + type: Transform + - uid: 2997 + components: + - pos: 54.5,4.5 + parent: 2 + type: Transform + - uid: 2998 + components: + - pos: 55.5,4.5 + parent: 2 + type: Transform + - uid: 2999 + components: + - pos: 58.5,5.5 + parent: 2 + type: Transform + - uid: 3000 + components: + - pos: 57.5,4.5 + parent: 2 + type: Transform + - uid: 3001 + components: + - pos: 58.5,4.5 + parent: 2 + type: Transform + - uid: 3002 + components: + - pos: 59.5,5.5 + parent: 2 + type: Transform + - uid: 3003 + components: + - pos: 60.5,5.5 + parent: 2 + type: Transform + - uid: 3004 + components: + - pos: 61.5,5.5 + parent: 2 + type: Transform + - uid: 3005 + components: + - pos: 62.5,5.5 + parent: 2 + type: Transform + - uid: 3006 + components: + - pos: 63.5,5.5 + parent: 2 + type: Transform + - uid: 3007 + components: + - pos: 64.5,5.5 + parent: 2 + type: Transform + - uid: 3008 + components: + - pos: 65.5,5.5 + parent: 2 + type: Transform + - uid: 3009 + components: + - pos: 66.5,5.5 + parent: 2 + type: Transform + - uid: 3010 + components: + - pos: 67.5,5.5 + parent: 2 + type: Transform + - uid: 3011 + components: + - pos: 67.5,6.5 + parent: 2 + type: Transform + - uid: 3040 + components: + - pos: 56.5,8.5 + parent: 2 + type: Transform + - uid: 3041 + components: + - pos: 56.5,9.5 + parent: 2 + type: Transform + - uid: 3042 + components: + - pos: 56.5,10.5 + parent: 2 + type: Transform + - uid: 3043 + components: + - pos: 56.5,11.5 + parent: 2 + type: Transform + - uid: 3044 + components: + - pos: 56.5,12.5 + parent: 2 + type: Transform + - uid: 3051 + components: + - pos: 46.5,20.5 + parent: 2 + type: Transform + - uid: 3053 + components: + - pos: 49.5,16.5 + parent: 2 + type: Transform + - uid: 3054 + components: + - pos: 50.5,16.5 + parent: 2 + type: Transform + - uid: 3055 + components: + - pos: 51.5,16.5 + parent: 2 + type: Transform + - uid: 3056 + components: + - pos: 52.5,16.5 + parent: 2 + type: Transform + - uid: 3057 + components: + - pos: 52.5,15.5 + parent: 2 + type: Transform + - uid: 3058 + components: + - pos: 52.5,13.5 + parent: 2 + type: Transform + - uid: 3059 + components: + - pos: 52.5,12.5 + parent: 2 + type: Transform + - uid: 3060 + components: + - pos: 51.5,12.5 + parent: 2 + type: Transform + - uid: 3061 + components: + - pos: 50.5,12.5 + parent: 2 + type: Transform + - uid: 3062 + components: + - pos: 49.5,12.5 + parent: 2 + type: Transform + - uid: 3203 + components: + - pos: 56.5,36.5 + parent: 2 + type: Transform + - uid: 3204 + components: + - pos: 56.5,37.5 + parent: 2 + type: Transform + - uid: 3205 + components: + - pos: 57.5,37.5 + parent: 2 + type: Transform + - uid: 3206 + components: + - pos: 55.5,37.5 + parent: 2 + type: Transform + - uid: 3207 + components: + - pos: 55.5,35.5 + parent: 2 + type: Transform + - uid: 3208 + components: + - pos: 57.5,35.5 + parent: 2 + type: Transform + - uid: 3356 + components: + - pos: 68.5,46.5 + parent: 2 + type: Transform + - uid: 3357 + components: + - pos: 68.5,45.5 + parent: 2 + type: Transform + - uid: 3358 + components: + - pos: 68.5,44.5 + parent: 2 + type: Transform + - uid: 3359 + components: + - pos: 68.5,43.5 + parent: 2 + type: Transform + - uid: 3360 + components: + - pos: 70.5,41.5 + parent: 2 + type: Transform + - uid: 3380 + components: + - pos: 68.5,40.5 + parent: 2 + type: Transform + - uid: 3381 + components: + - pos: 68.5,41.5 + parent: 2 + type: Transform + - uid: 3382 + components: + - pos: 69.5,41.5 + parent: 2 + type: Transform + - uid: 3387 + components: + - pos: 68.5,37.5 + parent: 2 + type: Transform + - uid: 3388 + components: + - pos: 68.5,38.5 + parent: 2 + type: Transform + - uid: 3396 + components: + - pos: 66.5,45.5 + parent: 2 + type: Transform + - uid: 3414 + components: + - pos: 68.5,31.5 + parent: 2 + type: Transform + - uid: 3415 + components: + - pos: 68.5,30.5 + parent: 2 + type: Transform + - uid: 3416 + components: + - pos: 67.5,30.5 + parent: 2 + type: Transform + - uid: 3441 + components: + - pos: 68.5,27.5 + parent: 2 + type: Transform + - uid: 3442 + components: + - pos: 68.5,29.5 + parent: 2 + type: Transform + - uid: 3443 + components: + - pos: 68.5,33.5 + parent: 2 + type: Transform + - uid: 3444 + components: + - pos: 68.5,34.5 + parent: 2 + type: Transform + - uid: 3523 + components: + - pos: 57.5,16.5 + parent: 2 + type: Transform + - uid: 3524 + components: + - pos: 56.5,16.5 + parent: 2 + type: Transform + - uid: 3525 + components: + - pos: 55.5,16.5 + parent: 2 + type: Transform + - uid: 3526 + components: + - pos: 54.5,16.5 + parent: 2 + type: Transform + - uid: 3527 + components: + - pos: 53.5,16.5 + parent: 2 + type: Transform + - uid: 3551 + components: + - pos: 88.5,-1.5 + parent: 2 + type: Transform + - uid: 3563 + components: + - pos: 85.5,6.5 + parent: 2 + type: Transform + - uid: 3566 + components: + - pos: 76.5,10.5 + parent: 2 + type: Transform + - uid: 3567 + components: + - pos: 79.5,9.5 + parent: 2 + type: Transform + - uid: 3570 + components: + - pos: 78.5,11.5 + parent: 2 + type: Transform + - uid: 3571 + components: + - pos: 77.5,11.5 + parent: 2 + type: Transform + - uid: 3572 + components: + - pos: 82.5,8.5 + parent: 2 + type: Transform + - uid: 3573 + components: + - pos: 82.5,7.5 + parent: 2 + type: Transform + - uid: 3574 + components: + - pos: 76.5,9.5 + parent: 2 + type: Transform + - uid: 3575 + components: + - pos: 70.5,9.5 + parent: 2 + type: Transform + - uid: 3576 + components: + - pos: 74.5,9.5 + parent: 2 + type: Transform + - uid: 3577 + components: + - pos: 73.5,9.5 + parent: 2 + type: Transform + - uid: 3578 + components: + - pos: 72.5,9.5 + parent: 2 + type: Transform + - uid: 3579 + components: + - pos: 71.5,9.5 + parent: 2 + type: Transform + - uid: 3580 + components: + - pos: 83.5,9.5 + parent: 2 + type: Transform + - uid: 3581 + components: + - pos: 82.5,12.5 + parent: 2 + type: Transform + - uid: 3582 + components: + - pos: 82.5,11.5 + parent: 2 + type: Transform + - uid: 3583 + components: + - pos: 82.5,9.5 + parent: 2 + type: Transform + - uid: 3585 + components: + - pos: 79.5,11.5 + parent: 2 + type: Transform + - uid: 3586 + components: + - pos: 76.5,11.5 + parent: 2 + type: Transform + - uid: 3598 + components: + - pos: 83.5,6.5 + parent: 2 + type: Transform + - uid: 3609 + components: + - pos: 84.5,9.5 + parent: 2 + type: Transform + - uid: 3616 + components: + - pos: 67.5,7.5 + parent: 2 + type: Transform + - uid: 3617 + components: + - pos: 69.5,7.5 + parent: 2 + type: Transform + - uid: 3625 + components: + - pos: 82.5,3.5 + parent: 2 + type: Transform + - uid: 3626 + components: + - pos: 82.5,2.5 + parent: 2 + type: Transform + - uid: 3627 + components: + - pos: 82.5,1.5 + parent: 2 + type: Transform + - uid: 3654 + components: + - pos: 65.5,13.5 + parent: 2 + type: Transform + - uid: 3666 + components: + - pos: 59.5,12.5 + parent: 2 + type: Transform + - uid: 3667 + components: + - pos: 64.5,12.5 + parent: 2 + type: Transform + - uid: 3680 + components: + - pos: 69.5,8.5 + parent: 2 + type: Transform + - uid: 3681 + components: + - pos: 69.5,9.5 + parent: 2 + type: Transform + - uid: 3689 + components: + - pos: 75.5,3.5 + parent: 2 + type: Transform + - uid: 3696 + components: + - pos: 79.5,3.5 + parent: 2 + type: Transform + - uid: 3697 + components: + - pos: 82.5,6.5 + parent: 2 + type: Transform + - uid: 3698 + components: + - pos: 79.5,4.5 + parent: 2 + type: Transform + - uid: 3699 + components: + - pos: 79.5,5.5 + parent: 2 + type: Transform + - uid: 3700 + components: + - pos: 79.5,6.5 + parent: 2 + type: Transform + - uid: 3701 + components: + - pos: 79.5,8.5 + parent: 2 + type: Transform + - uid: 3702 + components: + - pos: 79.5,7.5 + parent: 2 + type: Transform + - uid: 3703 + components: + - pos: 79.5,10.5 + parent: 2 + type: Transform + - uid: 3729 + components: + - pos: 85.5,-4.5 + parent: 2 + type: Transform + - uid: 3730 + components: + - pos: 85.5,-5.5 + parent: 2 + type: Transform + - uid: 3731 + components: + - pos: 84.5,-4.5 + parent: 2 + type: Transform + - uid: 3732 + components: + - pos: 86.5,-1.5 + parent: 2 + type: Transform + - uid: 3733 + components: + - pos: 86.5,-0.5 + parent: 2 + type: Transform + - uid: 3734 + components: + - pos: 86.5,0.5 + parent: 2 + type: Transform + - uid: 3735 + components: + - pos: 85.5,0.5 + parent: 2 + type: Transform + - uid: 3742 + components: + - pos: 85.5,-12.5 + parent: 2 + type: Transform + - uid: 3743 + components: + - pos: 85.5,-13.5 + parent: 2 + type: Transform + - uid: 3772 + components: + - pos: 75.5,0.5 + parent: 2 + type: Transform + - uid: 3773 + components: + - pos: 74.5,0.5 + parent: 2 + type: Transform + - uid: 3774 + components: + - pos: 73.5,0.5 + parent: 2 + type: Transform + - uid: 3776 + components: + - pos: 71.5,0.5 + parent: 2 + type: Transform + - uid: 3777 + components: + - pos: 70.5,0.5 + parent: 2 + type: Transform + - uid: 3778 + components: + - pos: 70.5,-0.5 + parent: 2 + type: Transform + - uid: 3779 + components: + - pos: 69.5,-0.5 + parent: 2 + type: Transform + - uid: 3781 + components: + - pos: 72.5,-4.5 + parent: 2 + type: Transform + - uid: 3782 + components: + - pos: 70.5,-4.5 + parent: 2 + type: Transform + - uid: 3783 + components: + - pos: 69.5,-4.5 + parent: 2 + type: Transform + - uid: 3786 + components: + - pos: 73.5,-6.5 + parent: 2 + type: Transform + - uid: 3787 + components: + - pos: 73.5,-5.5 + parent: 2 + type: Transform + - uid: 3808 + components: + - pos: 78.5,-12.5 + parent: 2 + type: Transform + - uid: 3809 + components: + - pos: 78.5,-13.5 + parent: 2 + type: Transform + - uid: 3810 + components: + - pos: 78.5,-14.5 + parent: 2 + type: Transform + - uid: 3811 + components: + - pos: 77.5,-14.5 + parent: 2 + type: Transform + - uid: 3812 + components: + - pos: 76.5,-14.5 + parent: 2 + type: Transform + - uid: 3813 + components: + - pos: 75.5,-14.5 + parent: 2 + type: Transform + - uid: 3814 + components: + - pos: 75.5,-13.5 + parent: 2 + type: Transform + - uid: 3815 + components: + - pos: 75.5,-12.5 + parent: 2 + type: Transform + - uid: 3816 + components: + - pos: 73.5,-14.5 + parent: 2 + type: Transform + - uid: 3817 + components: + - pos: 72.5,-14.5 + parent: 2 + type: Transform + - uid: 3818 + components: + - pos: 72.5,-13.5 + parent: 2 + type: Transform + - uid: 3819 + components: + - pos: 72.5,-12.5 + parent: 2 + type: Transform + - uid: 3820 + components: + - pos: 72.5,-11.5 + parent: 2 + type: Transform + - uid: 3821 + components: + - pos: 70.5,-14.5 + parent: 2 + type: Transform + - uid: 3822 + components: + - pos: 69.5,-14.5 + parent: 2 + type: Transform + - uid: 3823 + components: + - pos: 84.5,-13.5 + parent: 2 + type: Transform + - uid: 3824 + components: + - pos: 84.5,-14.5 + parent: 2 + type: Transform + - uid: 3825 + components: + - pos: 83.5,-14.5 + parent: 2 + type: Transform + - uid: 3826 + components: + - pos: 81.5,-14.5 + parent: 2 + type: Transform + - uid: 3827 + components: + - pos: 80.5,-14.5 + parent: 2 + type: Transform + - uid: 3828 + components: + - pos: 79.5,-14.5 + parent: 2 + type: Transform + - uid: 3831 + components: + - pos: 89.5,-13.5 + parent: 2 + type: Transform + - uid: 3832 + components: + - pos: 88.5,-13.5 + parent: 2 + type: Transform + - uid: 3833 + components: + - pos: 88.5,-12.5 + parent: 2 + type: Transform + - uid: 3834 + components: + - pos: 87.5,-13.5 + parent: 2 + type: Transform + - uid: 4019 + components: + - pos: 30.5,-8.5 + parent: 2 + type: Transform + - uid: 4041 + components: + - pos: 28.5,-8.5 + parent: 2 + type: Transform + - uid: 4053 + components: + - pos: 28.5,-9.5 + parent: 2 + type: Transform + - uid: 4110 + components: + - pos: 21.5,-8.5 + parent: 2 + type: Transform + - uid: 4251 + components: + - pos: 9.5,-12.5 + parent: 2 + type: Transform + - uid: 4266 + components: + - pos: 28.5,-20.5 + parent: 2 + type: Transform + - uid: 4313 + components: + - pos: 16.5,-37.5 + parent: 2 + type: Transform + - uid: 4318 + components: + - pos: 17.5,-37.5 + parent: 2 + type: Transform + - uid: 4319 + components: + - pos: 25.5,-37.5 + parent: 2 + type: Transform + - uid: 4320 + components: + - pos: 26.5,-37.5 + parent: 2 + type: Transform + - uid: 4321 + components: + - pos: 27.5,-38.5 + parent: 2 + type: Transform + - uid: 4322 + components: + - pos: 27.5,-39.5 + parent: 2 + type: Transform + - uid: 4323 + components: + - pos: 27.5,-40.5 + parent: 2 + type: Transform + - uid: 4324 + components: + - pos: 27.5,-41.5 + parent: 2 + type: Transform + - uid: 4326 + components: + - pos: 27.5,-42.5 + parent: 2 + type: Transform + - uid: 5057 + components: + - pos: 32.5,-9.5 + parent: 2 + type: Transform + - uid: 5174 + components: + - pos: 76.5,6.5 + parent: 2 + type: Transform + - uid: 5401 + components: + - pos: 63.5,18.5 + parent: 2 + type: Transform + - uid: 5402 + components: + - pos: 63.5,19.5 + parent: 2 + type: Transform + - uid: 5404 + components: + - pos: 63.5,20.5 + parent: 2 + type: Transform + - uid: 5420 + components: + - pos: 32.5,-11.5 + parent: 2 + type: Transform + - uid: 5441 + components: + - pos: 71.5,38.5 + parent: 2 + type: Transform + - uid: 5442 + components: + - pos: 70.5,38.5 + parent: 2 + type: Transform + - uid: 5443 + components: + - pos: 69.5,38.5 + parent: 2 + type: Transform + - uid: 5862 + components: + - pos: 29.5,-1.5 + parent: 2 + type: Transform + - uid: 5863 + components: + - pos: 28.5,-7.5 + parent: 2 + type: Transform + - uid: 6481 + components: + - pos: 41.5,-2.5 + parent: 2 + type: Transform + - uid: 6494 + components: + - pos: 32.5,3.5 + parent: 2 + type: Transform + - uid: 6515 + components: + - pos: 45.5,-10.5 + parent: 2 + type: Transform + - uid: 6516 + components: + - pos: 31.5,3.5 + parent: 2 + type: Transform + - uid: 6517 + components: + - pos: 30.5,3.5 + parent: 2 + type: Transform + - uid: 6518 + components: + - pos: 29.5,3.5 + parent: 2 + type: Transform + - uid: 6574 + components: + - pos: 47.5,-2.5 + parent: 2 + type: Transform + - uid: 6776 + components: + - pos: -4.5,-10.5 + parent: 2 + type: Transform + - uid: 6824 + components: + - pos: 2.5,-2.5 + parent: 2 + type: Transform + - uid: 6847 + components: + - pos: 5.5,-14.5 + parent: 2 + type: Transform + - uid: 6893 + components: + - pos: 28.5,-22.5 + parent: 2 + type: Transform + - uid: 6894 + components: + - pos: 2.5,-16.5 + parent: 2 + type: Transform + - uid: 7035 + components: + - pos: 75.5,5.5 + parent: 2 + type: Transform + - uid: 7896 + components: + - pos: 10.5,15.5 + parent: 2 + type: Transform + - uid: 8805 + components: + - pos: 104.5,-20.5 + parent: 2 + type: Transform + - uid: 8832 + components: + - pos: 104.5,-13.5 + parent: 2 + type: Transform + - uid: 8834 + components: + - pos: 103.5,-14.5 + parent: 2 + type: Transform + - uid: 8835 + components: + - pos: 104.5,-14.5 + parent: 2 + type: Transform + - uid: 8836 + components: + - pos: 102.5,-14.5 + parent: 2 + type: Transform + - uid: 8883 + components: + - pos: 109.5,-19.5 + parent: 2 + type: Transform + - uid: 8884 + components: + - pos: 109.5,-18.5 + parent: 2 + type: Transform + - uid: 8886 + components: + - pos: 109.5,-15.5 + parent: 2 + type: Transform + - uid: 8887 + components: + - pos: 109.5,-16.5 + parent: 2 + type: Transform + - uid: 9221 + components: + - pos: 39.5,-18.5 + parent: 2 + type: Transform + - uid: 10026 + components: + - pos: 16.5,-10.5 + parent: 2 + type: Transform + - uid: 10027 + components: + - pos: 16.5,-9.5 + parent: 2 + type: Transform + - uid: 10028 + components: + - pos: 16.5,-8.5 + parent: 2 + type: Transform + - uid: 10029 + components: + - pos: 14.5,-8.5 + parent: 2 + type: Transform + - uid: 10812 + components: + - pos: 89.5,-17.5 + parent: 2 + type: Transform + - uid: 11311 + components: + - pos: 75.5,6.5 + parent: 2 + type: Transform + - uid: 11312 + components: + - pos: 75.5,4.5 + parent: 2 + type: Transform + - uid: 11415 + components: + - pos: 77.5,6.5 + parent: 2 + type: Transform + - uid: 11424 + components: + - pos: 78.5,6.5 + parent: 2 + type: Transform + - uid: 11878 + components: + - pos: 69.5,3.5 + parent: 2 + type: Transform + - uid: 11885 + components: + - pos: 74.5,3.5 + parent: 2 + type: Transform + - uid: 11897 + components: + - pos: 76.5,8.5 + parent: 2 + type: Transform +- proto: WallSolidRust + entities: + - uid: 7884 + components: + - pos: 32.5,-58.5 + parent: 2 + type: Transform + - uid: 11576 + components: + - pos: 31.5,-58.5 + parent: 2 + type: Transform +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 11145 + components: + - pos: 39.5,20.5 + parent: 2 + type: Transform + - canCollide: False + type: Physics + - 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 + type: ContainerContainer +- proto: WardrobeAtmosphericsFilled + entities: + - uid: 4267 + components: + - pos: 28.5,-31.5 + parent: 2 + type: Transform +- proto: WardrobeBlueFilled + entities: + - uid: 4220 + components: + - pos: 21.5,12.5 + parent: 2 + type: Transform +- proto: WardrobeChapelFilled + entities: + - uid: 9724 + components: + - pos: 32.5,9.5 + parent: 2 + type: Transform +- proto: WardrobeEngineeringFilled + entities: + - uid: 4268 + components: + - pos: 24.5,-31.5 + parent: 2 + type: Transform +- proto: WardrobeGreenFilled + entities: + - uid: 10813 + components: + - pos: 89.5,-14.5 + parent: 2 + type: Transform +- proto: WardrobeMixedFilled + entities: + - uid: 2495 + components: + - pos: 23.5,12.5 + parent: 2 + type: Transform +- proto: WardrobePinkFilled + entities: + - uid: 5415 + components: + - pos: 5.5,-11.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13063 + components: + - pos: 6.5,-11.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: WardrobePrison + entities: + - uid: 2308 + components: + - pos: 41.5,33.5 + parent: 2 + type: Transform +- proto: WardrobePrisonFilled + entities: + - uid: 2325 + components: + - pos: 36.5,31.5 + parent: 2 + type: Transform + - uid: 8686 + components: + - pos: 29.5,21.5 + parent: 2 + type: Transform + - uid: 8687 + components: + - pos: 29.5,17.5 + parent: 2 + type: Transform +- proto: WardrobeVirologyFilled + entities: + - uid: 10910 + components: + - pos: 82.5,-5.5 + parent: 2 + type: Transform +- proto: WardrobeWhiteFilled + entities: + - uid: 1470 + components: + - pos: 5.5,-31.5 + parent: 2 + type: Transform + - uid: 4696 + components: + - pos: 18.5,16.5 + parent: 2 + type: Transform +- proto: WardrobeYellowFilled + entities: + - uid: 1858 + components: + - pos: 22.5,12.5 + parent: 2 + type: Transform +- proto: WarningCO2 + entities: + - uid: 5208 + components: + - pos: 48.5,-27.5 + parent: 2 + type: Transform +- proto: WarningN2 + entities: + - uid: 5196 + components: + - pos: 48.5,-23.5 + parent: 2 + type: Transform +- proto: WarningO2 + entities: + - uid: 5207 + components: + - pos: 48.5,-25.5 + parent: 2 + type: Transform +- proto: WarningPlasma + entities: + - uid: 5217 + components: + - pos: 48.5,-31.5 + parent: 2 + type: Transform +- proto: WarningWaste + entities: + - uid: 4573 + components: + - pos: 48.5,-33.5 + parent: 2 + type: Transform + - uid: 5216 + components: + - pos: 48.5,-29.5 + parent: 2 + type: Transform +- proto: WarpPoint + entities: + - uid: 13130 + components: + - pos: 27.5,46.5 + parent: 2 + type: Transform + - location: bridge + type: WarpPoint + - uid: 13131 + components: + - pos: 34.5,23.5 + parent: 2 + type: Transform + - location: security + type: WarpPoint + - uid: 13132 + components: + - pos: 11.5,23.5 + parent: 2 + type: Transform + - location: cargo + type: WarpPoint + - uid: 13133 + components: + - pos: -15.5,-13.5 + parent: 2 + type: Transform + - location: arrivals + type: WarpPoint + - uid: 13134 + components: + - pos: -3.5,-0.5 + parent: 2 + type: Transform + - uid: 13135 + components: + - pos: 17.5,-4.5 + parent: 2 + type: Transform + - uid: 13136 + components: + - pos: 37.5,7.5 + parent: 2 + type: Transform + - location: chapel + type: WarpPoint + - uid: 13137 + components: + - pos: 59.5,18.5 + parent: 2 + type: Transform + - location: science + type: WarpPoint + - uid: 13138 + components: + - pos: 60.5,-1.5 + parent: 2 + type: Transform + - location: med + type: WarpPoint + - uid: 13139 + components: + - pos: 33.5,-5.5 + parent: 2 + type: Transform + - location: bar + type: WarpPoint + - uid: 13140 + components: + - pos: 21.5,-30.5 + parent: 2 + type: Transform + - location: engi + type: WarpPoint + - uid: 13141 + components: + - pos: 39.5,-24.5 + parent: 2 + type: Transform + - location: atmos + type: WarpPoint +- proto: WaterCooler + entities: + - uid: 5379 + components: + - pos: 64.5,16.5 + parent: 2 + type: Transform + - uid: 5643 + components: + - pos: 14.5,-23.5 + parent: 2 + type: Transform + - uid: 11223 + components: + - pos: 21.5,35.5 + parent: 2 + type: Transform + - uid: 11430 + components: + - pos: 76.5,3.5 + parent: 2 + type: Transform +- proto: WaterTankFull + entities: + - uid: 201 + components: + - pos: 1.5,-16.5 + parent: 2 + type: Transform + - uid: 606 + components: + - pos: 23.5,-2.5 + parent: 2 + type: Transform + - uid: 2164 + components: + - pos: 18.5,26.5 + parent: 2 + type: Transform + - uid: 5532 + components: + - pos: 65.5,18.5 + parent: 2 + type: Transform + - uid: 5715 + components: + - pos: 23.5,7.5 + parent: 2 + type: Transform + - uid: 5730 + components: + - pos: 72.5,-6.5 + parent: 2 + type: Transform + - uid: 5787 + components: + - pos: 29.5,-17.5 + parent: 2 + type: Transform + - uid: 10790 + components: + - pos: 57.5,-17.5 + parent: 2 + type: Transform + - uid: 10838 + components: + - pos: 66.5,47.5 + parent: 2 + type: Transform + - uid: 12407 + components: + - pos: 46.5,-19.5 + parent: 2 + type: Transform +- proto: WaterTankHighCapacity + entities: + - uid: 4277 + components: + - pos: 5.5,-6.5 + parent: 2 + type: Transform + - uid: 6681 + components: + - pos: 47.5,-3.5 + parent: 2 + type: Transform +- proto: WeaponCapacitorRecharger + entities: + - uid: 622 + components: + - pos: 41.5,24.5 + parent: 2 + type: Transform + - uid: 2050 + components: + - pos: 34.5,41.5 + parent: 2 + type: Transform + - uid: 5062 + components: + - pos: 36.5,20.5 + parent: 2 + type: Transform + - uid: 7979 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 2 + type: Transform + - uid: 11146 + components: + - pos: 44.5,23.5 + parent: 2 + type: Transform + - canCollide: False + type: Physics + - 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: ContainerContainer + - uid: 12172 + components: + - pos: 29.5,48.5 + parent: 2 + type: Transform + - canCollide: False + type: Physics +- proto: WeaponDisabler + entities: + - uid: 10135 + components: + - pos: 41.567085,22.308064 + parent: 2 + type: Transform + - uid: 10136 + components: + - pos: 41.567085,22.558064 + parent: 2 + type: Transform +- proto: WeaponRevolverDeckard + entities: + - uid: 11861 + components: + - flags: InContainer + type: MetaData + - parent: 12094 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: WeaponRifleLecter + entities: + - uid: 2311 + components: + - pos: 38.53101,27.682423 + parent: 2 + type: Transform + - uid: 7781 + components: + - pos: 38.546635,27.573048 + parent: 2 + type: Transform + - uid: 7782 + components: + - pos: 38.56226,27.338673 + parent: 2 + type: Transform +- proto: WeaponSubMachineGunWt550 + entities: + - uid: 7940 + components: + - pos: 45.454727,23.618372 + parent: 2 + type: Transform +- proto: WeedSpray + entities: + - uid: 4061 + components: + - pos: 44.304684,-5.2802296 + parent: 2 + type: Transform +- proto: WelderIndustrial + entities: + - uid: 12300 + components: + - pos: 32.547882,-30.463009 + parent: 2 + type: Transform +- proto: WeldingFuelTankFull + entities: + - uid: 200 + components: + - pos: 0.5,-16.5 + parent: 2 + type: Transform + - uid: 800 + components: + - pos: 14.5,-28.5 + parent: 2 + type: Transform + - uid: 2163 + components: + - pos: 17.5,26.5 + parent: 2 + type: Transform + - uid: 5391 + components: + - pos: 47.5,9.5 + parent: 2 + type: Transform + - uid: 5531 + components: + - pos: 65.5,20.5 + parent: 2 + type: Transform + - uid: 5705 + components: + - pos: 85.5,-0.5 + parent: 2 + type: Transform + - uid: 5786 + components: + - pos: 30.5,-17.5 + parent: 2 + type: Transform + - uid: 10789 + components: + - pos: 56.5,-17.5 + parent: 2 + type: Transform + - uid: 10840 + components: + - pos: 45.5,42.5 + parent: 2 + type: Transform + - uid: 12406 + components: + - pos: 47.5,-19.5 + parent: 2 + type: Transform +- proto: WetFloorSign + entities: + - uid: 12306 + components: + - pos: 5.351077,-5.5586295 + parent: 2 + type: Transform + - uid: 12494 + components: + - pos: 11.536887,-11.504442 + parent: 2 + type: Transform +- proto: Windoor + entities: + - uid: 308 + components: + - rot: 3.141592653589793 rad + pos: 9.5,4.5 + parent: 2 + type: Transform + - uid: 563 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-2.5 + parent: 2 + type: Transform + - uid: 1101 + components: + - rot: 3.141592653589793 rad + pos: 19.5,8.5 + parent: 2 + type: Transform + - uid: 1102 + components: + - rot: 3.141592653589793 rad + pos: 18.5,8.5 + parent: 2 + type: Transform + - uid: 2318 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,35.5 + parent: 2 + type: Transform + - uid: 2528 + components: + - rot: 3.141592653589793 rad + pos: 38.5,4.5 + parent: 2 + type: Transform + - uid: 7775 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-1.5 + parent: 2 + type: Transform + - uid: 7778 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 2 + type: Transform +- proto: WindoorBarKitchenLocked + entities: + - uid: 544 + components: + - pos: 35.5,-8.5 + parent: 2 + type: Transform + - uid: 545 + components: + - pos: 36.5,-8.5 + parent: 2 + type: Transform + - uid: 565 + components: + - pos: 34.5,-8.5 + parent: 2 + type: Transform +- proto: WindoorChapelLocked + entities: + - uid: 9730 + components: + - rot: 3.141592653589793 rad + pos: 31.5,5.5 + parent: 2 + type: Transform +- proto: WindoorHydroponicsLocked + entities: + - uid: 6646 + components: + - pos: 43.5,-2.5 + parent: 2 + type: Transform + - uid: 6647 + components: + - pos: 44.5,-2.5 + parent: 2 + type: Transform +- proto: WindoorKitchenHydroponicsLocked + entities: + - uid: 543 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-7.5 + parent: 2 + type: Transform + - uid: 5055 + components: + - rot: -1.5707963267948966 rad + pos: 48.5,-7.5 + parent: 2 + type: Transform +- proto: WindoorSecure + entities: + - uid: 5266 + components: + - pos: 77.5,-5.5 + parent: 2 + type: Transform + - uid: 5876 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-28.5 + parent: 2 + type: Transform + - uid: 6852 + components: + - pos: -2.5,0.5 + parent: 2 + type: Transform + - uid: 7617 + components: + - pos: -4.5,0.5 + parent: 2 + type: Transform + - uid: 7847 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,31.5 + parent: 2 + type: Transform + - uid: 7942 + components: + - pos: -19.5,-12.5 + parent: 2 + type: Transform + - uid: 7943 + components: + - pos: -12.5,-12.5 + parent: 2 + type: Transform + - uid: 8950 + components: + - rot: -1.5707963267948966 rad + pos: 113.5,-19.5 + parent: 2 + type: Transform + - uid: 10121 + components: + - pos: 80.5,-2.5 + parent: 2 + type: Transform +- proto: WindoorSecureArmoryLocked + entities: + - uid: 7679 + components: + - rot: 3.141592653589793 rad + pos: 38.5,21.5 + parent: 2 + type: Transform + - uid: 7752 + components: + - rot: 3.141592653589793 rad + pos: 39.5,21.5 + parent: 2 + type: Transform +- proto: WindoorSecureCargoLocked + entities: + - uid: 4556 + components: + - pos: 9.5,20.5 + parent: 2 + type: Transform + - uid: 10119 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,22.5 + parent: 2 + type: Transform + - uid: 12840 + components: + - rot: 3.141592653589793 rad + pos: 9.5,20.5 + parent: 2 + type: Transform +- proto: WindoorSecureChemistryLocked + entities: + - uid: 12078 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,-7.5 + parent: 2 + type: Transform +- proto: WindoorSecureCommandLocked + entities: + - uid: 8247 + components: + - pos: 14.5,38.5 + parent: 2 + type: Transform +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 5858 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-15.5 + parent: 2 + type: Transform + - uid: 5865 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-15.5 + parent: 2 + type: Transform +- proto: WindoorSecureHeadOfPersonnelLocked + entities: + - uid: 10272 + components: + - pos: 16.5,-2.5 + parent: 2 + type: Transform +- proto: WindoorSecureMedicalLocked + entities: + - uid: 5139 + components: + - pos: 50.5,-3.5 + parent: 2 + type: Transform + - uid: 5140 + components: + - rot: -1.5707963267948966 rad + pos: 54.5,-4.5 + parent: 2 + type: Transform + - uid: 9615 + components: + - rot: -1.5707963267948966 rad + pos: 52.5,3.5 + parent: 2 + type: Transform +- proto: WindoorSecureScienceLocked + entities: + - uid: 3513 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,18.5 + parent: 2 + type: Transform + - uid: 5366 + components: + - pos: 47.5,12.5 + parent: 2 + type: Transform + - uid: 8669 + components: + - pos: 62.5,26.5 + parent: 2 + type: Transform + - uid: 8697 + components: + - rot: 3.141592653589793 rad + pos: 62.5,26.5 + parent: 2 + type: Transform + - uid: 12108 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,10.5 + parent: 2 + type: Transform +- proto: WindoorSecureSecurityLocked + entities: + - uid: 2258 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,20.5 + parent: 2 + type: Transform + - links: + - 7716 + type: DeviceLinkSink + - uid: 2259 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,18.5 + parent: 2 + type: Transform + - links: + - 7718 + type: DeviceLinkSink + - uid: 2421 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,25.5 + parent: 2 + type: Transform + - uid: 2428 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,29.5 + parent: 2 + type: Transform + - uid: 2429 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,25.5 + parent: 2 + type: Transform + - uid: 2471 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,18.5 + parent: 2 + type: Transform + - uid: 7738 + components: + - pos: -2.5,-2.5 + parent: 2 + type: Transform + - uid: 7945 + components: + - rot: 3.141592653589793 rad + pos: 19.5,32.5 + parent: 2 + type: Transform + - uid: 7974 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 2 + type: Transform +- proto: Window + entities: + - uid: 289 + components: + - pos: 7.5,5.5 + parent: 2 + type: Transform + - uid: 290 + components: + - pos: 7.5,6.5 + parent: 2 + type: Transform + - uid: 291 + components: + - pos: 7.5,7.5 + parent: 2 + type: Transform + - uid: 292 + components: + - pos: 8.5,8.5 + parent: 2 + type: Transform + - uid: 293 + components: + - pos: 10.5,8.5 + parent: 2 + type: Transform + - uid: 294 + components: + - pos: 12.5,8.5 + parent: 2 + type: Transform + - uid: 834 + components: + - pos: 58.5,-7.5 + parent: 2 + type: Transform + - uid: 1509 + components: + - pos: 34.5,-1.5 + parent: 2 + type: Transform + - uid: 1558 + components: + - pos: 28.5,-6.5 + parent: 2 + type: Transform + - uid: 1613 + components: + - pos: 28.5,-3.5 + parent: 2 + type: Transform + - uid: 1614 + components: + - pos: 28.5,-4.5 + parent: 2 + type: Transform + - uid: 1797 + components: + - pos: 28.5,-14.5 + parent: 2 + type: Transform + - uid: 1798 + components: + - pos: 28.5,-17.5 + parent: 2 + type: Transform + - uid: 2086 + components: + - pos: 7.5,20.5 + parent: 2 + type: Transform + - uid: 2088 + components: + - pos: 11.5,29.5 + parent: 2 + type: Transform + - uid: 2089 + components: + - pos: 13.5,29.5 + parent: 2 + type: Transform + - uid: 2090 + components: + - pos: 16.5,21.5 + parent: 2 + type: Transform + - uid: 2184 + components: + - pos: 24.5,15.5 + parent: 2 + type: Transform + - uid: 2185 + components: + - pos: 24.5,12.5 + parent: 2 + type: Transform + - uid: 2542 + components: + - pos: 39.5,8.5 + parent: 2 + type: Transform + - uid: 2543 + components: + - pos: 39.5,9.5 + parent: 2 + type: Transform + - uid: 2544 + components: + - pos: 39.5,6.5 + parent: 2 + type: Transform + - uid: 2545 + components: + - pos: 39.5,5.5 + parent: 2 + type: Transform + - uid: 2682 + components: + - pos: 22.5,33.5 + parent: 2 + type: Transform + - uid: 2683 + components: + - pos: 22.5,32.5 + parent: 2 + type: Transform + - uid: 2684 + components: + - pos: 22.5,30.5 + parent: 2 + type: Transform + - uid: 2685 + components: + - pos: 22.5,29.5 + parent: 2 + type: Transform + - uid: 2686 + components: + - pos: 23.5,34.5 + parent: 2 + type: Transform + - uid: 2687 + components: + - pos: 24.5,34.5 + parent: 2 + type: Transform + - uid: 2892 + components: + - pos: 60.5,-18.5 + parent: 2 + type: Transform + - uid: 2893 + components: + - pos: 59.5,-18.5 + parent: 2 + type: Transform + - uid: 2894 + components: + - pos: 65.5,-18.5 + parent: 2 + type: Transform + - uid: 2895 + components: + - pos: 66.5,-18.5 + parent: 2 + type: Transform + - uid: 5004 + components: + - pos: 43.5,1.5 + parent: 2 + type: Transform + - uid: 5005 + components: + - pos: 44.5,1.5 + parent: 2 + type: Transform + - uid: 5006 + components: + - pos: 46.5,1.5 + parent: 2 + type: Transform + - uid: 5007 + components: + - pos: 47.5,1.5 + parent: 2 + type: Transform + - uid: 5008 + components: + - pos: 48.5,4.5 + parent: 2 + type: Transform + - uid: 5175 + components: + - pos: 58.5,-3.5 + parent: 2 + type: Transform + - uid: 5785 + components: + - pos: 28.5,-5.5 + parent: 2 + type: Transform + - uid: 9064 + components: + - pos: 67.5,-18.5 + parent: 2 + type: Transform + - uid: 10802 + components: + - pos: 85.5,-14.5 + parent: 2 + type: Transform + - uid: 11308 + components: + - pos: 58.5,-4.5 + parent: 2 + type: Transform + - uid: 11316 + components: + - rot: 3.141592653589793 rad + pos: 70.5,3.5 + parent: 2 + type: Transform + - uid: 11871 + components: + - rot: 3.141592653589793 rad + pos: 72.5,3.5 + parent: 2 + type: Transform + - uid: 11872 + components: + - rot: 3.141592653589793 rad + pos: 73.5,3.5 + parent: 2 + type: Transform + - uid: 11873 + components: + - rot: 3.141592653589793 rad + pos: 69.5,4.5 + parent: 2 + type: Transform + - uid: 11875 + components: + - rot: 3.141592653589793 rad + pos: 69.5,5.5 + parent: 2 + type: Transform + - uid: 11877 + components: + - rot: 3.141592653589793 rad + pos: 69.5,6.5 + parent: 2 + type: Transform +- proto: WindowDirectional + entities: + - uid: 6791 + components: + - rot: 1.5707963267948966 rad + pos: 50.5,-13.5 + parent: 2 + type: Transform + - uid: 6792 + components: + - rot: -1.5707963267948966 rad + pos: 48.5,-13.5 + parent: 2 + type: Transform + - uid: 7776 + components: + - rot: 3.141592653589793 rad + pos: 8.5,12.5 + parent: 2 + type: Transform + - uid: 7777 + components: + - pos: 8.5,13.5 + parent: 2 + type: Transform + - uid: 8708 + components: + - rot: 3.141592653589793 rad + pos: 17.5,8.5 + parent: 2 + type: Transform + - uid: 8709 + components: + - rot: 3.141592653589793 rad + pos: 20.5,8.5 + parent: 2 + type: Transform + - uid: 10444 + components: + - rot: 3.141592653589793 rad + pos: 58.5,8.5 + parent: 2 + type: Transform + - uid: 10445 + components: + - pos: 58.5,12.5 + parent: 2 + type: Transform + - uid: 10844 + components: + - pos: 46.5,37.5 + parent: 2 + type: Transform + - uid: 10845 + components: + - pos: 46.5,32.5 + parent: 2 + type: Transform + - uid: 11860 + components: + - pos: 40.5,35.5 + parent: 2 + type: Transform + - uid: 12373 + components: + - pos: 41.5,35.5 + parent: 2 + type: Transform + - uid: 12999 + components: + - pos: 34.5,-42.5 + parent: 2 + type: Transform + - uid: 13000 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-46.5 + parent: 2 + type: Transform +- proto: WindowFrostedDirectional + entities: + - uid: 5063 + components: + - rot: -1.5707963267948966 rad + pos: 59.5,3.5 + parent: 2 + type: Transform + - uid: 5064 + components: + - rot: -1.5707963267948966 rad + pos: 59.5,4.5 + parent: 2 + type: Transform + - uid: 5243 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,3.5 + parent: 2 + type: Transform + - uid: 7076 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,3.5 + parent: 2 + type: Transform + - uid: 7770 + components: + - rot: 3.141592653589793 rad + pos: 13.5,4.5 + parent: 2 + type: Transform + - uid: 7771 + components: + - pos: 12.5,4.5 + parent: 2 + type: Transform + - uid: 7772 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,4.5 + parent: 2 + type: Transform + - uid: 11291 + components: + - rot: 1.5707963267948966 rad + pos: 67.5,3.5 + parent: 2 + type: Transform + - uid: 11748 + components: + - rot: -1.5707963267948966 rad + pos: 62.5,3.5 + parent: 2 + type: Transform + - uid: 11751 + components: + - rot: -1.5707963267948966 rad + pos: 62.5,4.5 + parent: 2 + type: Transform + - uid: 11752 + components: + - rot: 1.5707963267948966 rad + pos: 67.5,4.5 + parent: 2 + type: Transform + - uid: 11753 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,4.5 + parent: 2 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 77 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-12.5 + parent: 2 + type: Transform + - uid: 78 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-12.5 + parent: 2 + type: Transform + - uid: 81 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-12.5 + parent: 2 + type: Transform + - uid: 135 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-30.5 + parent: 2 + type: Transform + - uid: 224 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-15.5 + parent: 2 + type: Transform + - uid: 227 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-8.5 + parent: 2 + type: Transform + - uid: 358 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-12.5 + parent: 2 + type: Transform + - uid: 542 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-8.5 + parent: 2 + type: Transform + - uid: 673 + components: + - pos: 27.5,-30.5 + parent: 2 + type: Transform + - uid: 836 + components: + - pos: 25.5,-30.5 + parent: 2 + type: Transform + - uid: 837 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-30.5 + parent: 2 + type: Transform + - uid: 849 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-30.5 + parent: 2 + type: Transform + - uid: 868 + components: + - pos: 26.5,-30.5 + parent: 2 + type: Transform + - uid: 874 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-30.5 + parent: 2 + type: Transform + - uid: 2158 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,47.5 + parent: 2 + type: Transform + - uid: 2159 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,48.5 + parent: 2 + type: Transform + - uid: 2410 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,17.5 + parent: 2 + type: Transform + - uid: 2463 + components: + - rot: 3.141592653589793 rad + pos: 36.5,19.5 + parent: 2 + type: Transform + - uid: 2733 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,30.5 + parent: 2 + type: Transform + - uid: 4276 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-30.5 + parent: 2 + type: Transform + - uid: 5034 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,48.5 + parent: 2 + type: Transform + - uid: 5808 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-30.5 + parent: 2 + type: Transform + - uid: 5864 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-32.5 + parent: 2 + type: Transform + - uid: 5866 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-15.5 + parent: 2 + type: Transform + - uid: 5867 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-31.5 + parent: 2 + type: Transform + - uid: 5868 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-29.5 + parent: 2 + type: Transform + - uid: 5869 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-29.5 + parent: 2 + type: Transform + - uid: 6832 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 2 + type: Transform + - uid: 7762 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,19.5 + parent: 2 + type: Transform + - uid: 7785 + components: + - rot: 3.141592653589793 rad + pos: 23.5,24.5 + parent: 2 + type: Transform + - uid: 7786 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,24.5 + parent: 2 + type: Transform + - uid: 7787 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,22.5 + parent: 2 + type: Transform + - uid: 7788 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,23.5 + parent: 2 + type: Transform + - uid: 7796 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,48.5 + parent: 2 + type: Transform + - uid: 7797 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,48.5 + parent: 2 + type: Transform + - uid: 7804 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,48.5 + parent: 2 + type: Transform + - uid: 7805 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,47.5 + parent: 2 + type: Transform + - uid: 7806 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,48.5 + parent: 2 + type: Transform + - uid: 7844 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,33.5 + parent: 2 + type: Transform + - uid: 7845 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,32.5 + parent: 2 + type: Transform + - uid: 7846 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,29.5 + parent: 2 + type: Transform + - uid: 7892 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 2 + type: Transform + - uid: 7952 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-1.5 + parent: 2 + type: Transform + - uid: 7954 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-1.5 + parent: 2 + type: Transform + - uid: 7955 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-1.5 + parent: 2 + type: Transform + - uid: 7973 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 2 + type: Transform + - uid: 7975 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 2 + type: Transform + - uid: 8245 + components: + - pos: 13.5,38.5 + parent: 2 + type: Transform + - uid: 8246 + components: + - pos: 15.5,38.5 + parent: 2 + type: Transform + - uid: 8248 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,33.5 + parent: 2 + type: Transform + - uid: 8250 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,33.5 + parent: 2 + type: Transform + - uid: 8946 + components: + - rot: -1.5707963267948966 rad + pos: 113.5,-15.5 + parent: 2 + type: Transform + - uid: 8947 + components: + - rot: -1.5707963267948966 rad + pos: 113.5,-16.5 + parent: 2 + type: Transform + - uid: 8948 + components: + - rot: -1.5707963267948966 rad + pos: 113.5,-17.5 + parent: 2 + type: Transform + - uid: 8949 + components: + - rot: -1.5707963267948966 rad + pos: 113.5,-18.5 + parent: 2 + type: Transform + - uid: 9613 + components: + - rot: -1.5707963267948966 rad + pos: 52.5,2.5 + parent: 2 + type: Transform + - uid: 9614 + components: + - rot: -1.5707963267948966 rad + pos: 52.5,4.5 + parent: 2 + type: Transform + - uid: 9722 + components: + - rot: 3.141592653589793 rad + pos: 32.5,5.5 + parent: 2 + type: Transform + - uid: 9723 + components: + - rot: 3.141592653589793 rad + pos: 30.5,5.5 + parent: 2 + type: Transform + - uid: 9725 + components: + - rot: 3.141592653589793 rad + pos: 29.5,5.5 + parent: 2 + type: Transform +- proto: Wirecutter + entities: + - uid: 10793 + components: + - pos: 69.53111,-15.461584 + parent: 2 + type: Transform + - uid: 11128 + components: + - pos: 54.426773,-14.387592 + parent: 2 + type: Transform +- proto: WoodDoor + entities: + - uid: 12391 + components: + - pos: 34.5,4.5 + parent: 2 + type: Transform + - uid: 12392 + components: + - pos: 36.5,4.5 + parent: 2 + type: Transform +- proto: Wrench + entities: + - uid: 604 + components: + - pos: 30.501482,-14.418215 + parent: 2 + type: Transform + - uid: 5325 + components: + - pos: 55.374165,17.598963 + parent: 2 + type: Transform + - uid: 11127 + components: + - pos: 54.489273,-14.340717 + parent: 2 + type: Transform +... diff --git a/Resources/Maps/saltern.yml b/Resources/Maps/saltern.yml index 0572c2f5efe..835279281d0 100644 --- a/Resources/Maps/saltern.yml +++ b/Resources/Maps/saltern.yml @@ -1,38 +1,48 @@ meta: - format: 5 + format: 6 postmapinit: false tilemap: 0: Space - 15: FloorBar - 18: FloorBlueCircuit - 22: FloorCarpetOffice - 25: FloorClown + 7: FloorAsteroidSand + 15: FloorBlueCircuit + 17: FloorBrokenWood + 22: FloorClown 26: FloorDark + 27: FloorDarkDiagonal + 30: FloorDarkMini + 31: FloorDarkMono + 33: FloorDarkPavement 35: FloorDarkPlastic + 37: FloorDirt 38: FloorEighties 41: FloorFreezer 42: FloorGlass 43: FloorGold 44: FloorGrass - 52: FloorHydro - 53: FloorKitchen - 54: FloorLaundry - 55: FloorLino - 57: FloorMetalDiamond - 58: FloorMime - 59: FloorMono - 63: FloorRGlass - 64: FloorReinforced - 65: FloorReinforcedHardened - 67: FloorShowroom - 75: FloorSteel - 80: FloorSteelDirty - 87: FloorTechMaint - 91: FloorWhite - 101: FloorWood - 102: FloorWoodTile - 103: Lattice - 104: Plating + 55: FloorHydro + 57: FloorKitchen + 58: FloorLaundry + 59: FloorLino + 61: FloorMetalDiamond + 62: FloorMime + 63: FloorMono + 70: FloorRGlass + 71: FloorReinforced + 72: FloorReinforcedHardened + 74: FloorShowroom + 83: FloorSteel + 84: FloorSteelCheckerDark + 88: FloorSteelDirty + 90: FloorSteelMini + 91: FloorSteelMono + 95: FloorTechMaint + 96: FloorTechMaint2 + 99: FloorWhite + 104: FloorWhiteMono + 109: FloorWood + 110: FloorWoodTile + 111: Lattice + 112: Plating entities: - proto: "" entities: @@ -44,130 +54,176 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: VwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAFsAAANbAAABWwAAA1sAAAFbAAADWwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABbAAACWwAAAlsAAABbAAACWwAAA1sAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAWwAAA1sAAANbAAAAWwAAA1sAAANbAAACaAAAAGgAAABlAAAAZQAAA2UAAABoAAAAaAAAAFcAAABXAAAAaAAAAFsAAAJbAAADWwAAAWgAAABoAAAAaAAAAGUAAAFlAAABZQAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAWwAAAmgAAABoAAAAVwAAAFcAAABoAAAAaAAAAGUAAABlAAAAZQAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAZQAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAGUAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABlAAADZQAAAmUAAANlAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAZQAAA2UAAANlAAADZQAAAWUAAAA3AAAANwAAADcAAAA3AAAANwAAAGUAAABlAAABZQAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAANwAAADcAAAA3AAAANwAAADcAAABlAAABZQAAAmUAAAFXAAAAKQAAACkAAAApAAAAKQAAACkAAAApAAAAaAAAAGUAAABlAAAAZQAAAmUAAANlAAABZQAAAmUAAABlAAAAaAAAAGgAAAApAAAAKQAAACkAAAApAAAAKQAAAGgAAABlAAACZQAAAWUAAAJlAAACZQAAAWUAAAJlAAAAZQAAAmgAAABoAAAAaAAAACkAAABoAAAAaAAAAGgAAABoAAAAZQAAAWUAAAJlAAADZQAAAWUAAANlAAAAZQAAAmUAAABoAAAANQAAADUAAAA1AAAANQAAADUAAABlAAACZQAAAmUAAANlAAADZQAAAmUAAABlAAADZQAAA2UAAANlAAACaAAAADUAAAA1AAAANQAAADUAAABLAAABZQAAA2UAAANlAAAAZQAAA2UAAAFlAAACZQAAAGUAAANlAAABZQAAAg== + tiles: UwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAADcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAbQAAAAAAbQAAAAACbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbQAAAAACbQAAAAAAbQAAAAABbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbQAAAAADbQAAAAAAbQAAAAACbQAAAAACbQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAbQAAAAACbQAAAAADbQAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAbQAAAAACbQAAAAABbQAAAAABXwAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAADbQAAAAACbQAAAAACbQAAAAACbQAAAAACbQAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAACbQAAAAADbQAAAAADbQAAAAADbQAAAAACbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAABbQAAAAAAbQAAAAADbQAAAAACbQAAAAACbQAAAAABcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAbQAAAAAAbQAAAAADbQAAAAACbQAAAAAAbQAAAAABbQAAAAACbQAAAAAAbQAAAAACbQAAAAADbQAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAUwAAAAADbQAAAAACbQAAAAADbQAAAAADbQAAAAABbQAAAAADbQAAAAACbQAAAAACbQAAAAADbQAAAAABbQAAAAAB + version: 6 -1,0: ind: -1,0 - tiles: NQAAADUAAAA1AAAANQAAADUAAABLAAADZQAAAWUAAANlAAADZQAAAWUAAABlAAACZQAAA2UAAANlAAABZQAAAzUAAAA1AAAANQAAADUAAAA1AAAASwAAAmUAAANlAAAAZQAAAGUAAABlAAAAZQAAAGUAAAFlAAAAZQAAAWUAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA8AAAAPAAAADwAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAFLAAABSwAAAUsAAAFLAAADSwAAAksAAANLAAAASwAAAEsAAANLAAAASwAAAUsAAAJLAAADSwAAAEsAAABLAAABSwAAAksAAANLAAABSwAAAksAAAJLAAACSwAAAUsAAAJLAAAASwAAAksAAANLAAACSwAAAksAAAFLAAADSwAAAksAAAJLAAABSwAAAksAAABLAAABSwAAA0sAAABLAAACSwAAAksAAAFLAAABSwAAAksAAANLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAACaAAAAGgAAABLAAAAaAAAAGgAAABoAAAASwAAAEsAAAJoAAAASwAAAmgAAABLAAABSwAAAWgAAABLAAAASwAAAGgAAAAaAAAAGgAAABoAAANQAAAAaAAAAEsAAANLAAABaAAAAEsAAAFoAAAASwAAAksAAABoAAAASwAAAksAAABoAAAAGgAAAxoAAAAaAAACUAAAAGgAAABoAAAASwAAAmgAAABLAAACaAAAAEsAAAJoAAAAaAAAAEsAAANLAAABaAAAAGgAAABoAAAAaAAAAFAAAABQAAAASwAAAEsAAANLAAAASwAAA0sAAABLAAACSwAAAksAAANLAAACSwAAAUsAAANLAAABSwAAAEsAAAJQAAAAaAAAAEsAAANLAAABSwAAAksAAANLAAADSwAAAEsAAAJLAAACSwAAA0sAAAJLAAACGgAAAEsAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAACoAAABLAAAASwAAAEsAAAJoAAAAGgAAAxoAAANoAAAASwAAAikAAABDAAAAQwAAAEMAAABDAAAAaAAAAEsAAABLAAADSwAAA0sAAANLAAADaAAAABoAAAIaAAACaAAAAEsAAAEpAAAAQwAAAEMAAABDAAAAQwAAAGgAAABLAAADKgAAAEsAAAJLAAADSwAAAGgAAAAaAAACGgAAAGgAAAAaAAAAaAAAACkAAABDAAAAQwAAAEMAAABDAAAASwAAAUsAAAFLAAADSwAAA0sAAAFoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: OQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAUwAAAAAAbQAAAAAAbQAAAAAAbQAAAAADbQAAAAADbQAAAAABbQAAAAAAbQAAAAABbQAAAAAAbQAAAAADbQAAAAADOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAUwAAAAADbQAAAAADbQAAAAAAbQAAAAACbQAAAAABbQAAAAAAbQAAAAADbQAAAAACbQAAAAAAbQAAAAADbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAABWwAAAAADWwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAUwAAAAABcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAGgAAAAAAGgAAAAACGgAAAAACWAAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAUwAAAAACcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAGgAAAAABGgAAAAABGgAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAUwAAAAACcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACWAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADKgAAAAAAUwAAAAADKgAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAGgAAAAAAKQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAADcAAAAAAAGgAAAAABKQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAUwAAAAACKgAAAAAAUwAAAAACKgAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAGgAAAAAAcAAAAAAAKQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 0,-1: ind: 0,-1 - tiles: WwAAAksAAANLAAAASwAAAksAAAFLAAAAaAAAAFsAAAJbAAADWwAAAmgAAAAaAAADGgAAARoAAAMaAAAAGgAAAGgAAABLAAAASwAAAksAAAFLAAAASwAAAmgAAABbAAABWwAAA1sAAAFoAAAAGgAAAxoAAAEaAAADGgAAAxoAAAJoAAAASwAAAksAAANLAAADSwAAAUsAAANoAAAAWwAAAFsAAABbAAACaAAAABoAAAIaAAABGgAAAxoAAAEaAAACaAAAAGgAAABLAAAASwAAAksAAANoAAAAaAAAAFsAAABbAAABWwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAASwAAAEsAAAFLAAADaAAAAFsAAANbAAAAaAAAAFsAAAJbAAADWwAAA1sAAAJoAAAAWwAAAlsAAAFoAAAAaAAAAEsAAABLAAACSwAAAWgAAABbAAAAWwAAAFsAAANbAAADWwAAAlsAAAFbAAABaAAAAFsAAAFbAAAAaAAAAGgAAABLAAABSwAAA0sAAANoAAAAWwAAAFsAAABbAAADWwAAAlsAAAFbAAACWwAAA1sAAAJbAAACWwAAA2gAAABoAAAASwAAA0sAAAFLAAACaAAAAFsAAAJbAAACWwAAAVsAAABbAAABWwAAAlsAAANoAAAAWwAAAlsAAANoAAAAaAAAAEsAAANLAAAASwAAAWgAAABbAAACWwAAA2gAAABbAAAAWwAAAVsAAANbAAABaAAAAFsAAANbAAACZQAAAWgAAABLAAACSwAAAUsAAANoAAAAWwAAA1sAAABbAAABWwAAAFsAAAJoAAAAaAAAAFsAAAJbAAAAWwAAA2UAAABoAAAASwAAAksAAANLAAAAaAAAAFsAAAJbAAACWwAAAVsAAANbAAABWwAAAVsAAABoAAAAWwAAA1sAAAFlAAADaAAAAEsAAAFLAAACSwAAA2gAAABbAAACWwAAA1sAAAJbAAADWwAAAlsAAABbAAACaAAAAFsAAABbAAADZQAAA2gAAABLAAABSwAAA0sAAABoAAAAWwAAAFsAAANbAAAAWwAAA1sAAAFbAAACWwAAAGgAAABoAAAAWwAAAWUAAAAPAAACSwAAAksAAAJLAAAAWwAAAVsAAABbAAADWwAAAlsAAANbAAADWwAAAVsAAANoAAAAWwAAAFsAAANlAAADSwAAAEsAAAJLAAACSwAAAlsAAABbAAABWwAAAVsAAAFbAAAAWwAAAlsAAABbAAAAaAAAAFsAAAJbAAACZQAAAw8AAAFLAAACSwAAAUsAAABbAAABWwAAAVsAAANbAAADWwAAAFsAAAJbAAACWwAAAmgAAABbAAACWwAAAA== + tiles: UwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAYwAAAAADYwAAAAABYwAAAAADYwAAAAABcAAAAAAAGgAAAAADHwAAAAADHwAAAAACGgAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAACcAAAAAAAYwAAAAABYwAAAAAAYwAAAAADYwAAAAAAaAAAAAACGgAAAAAAGgAAAAACGgAAAAACGgAAAAABcAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAYwAAAAACYwAAAAACYwAAAAABYwAAAAACcAAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAYwAAAAADYwAAAAACYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAYwAAAAACYwAAAAADcAAAAAAAYwAAAAAAYwAAAAABYwAAAAADYwAAAAACcAAAAAAAYwAAAAABYwAAAAABcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAYwAAAAABYwAAAAACYwAAAAACYwAAAAADYwAAAAABYwAAAAABYwAAAAADcAAAAAAAYwAAAAABYwAAAAADcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAADYwAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAABYwAAAAACcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAACcAAAAAAAYwAAAAABYwAAAAABYwAAAAAAYwAAAAABYwAAAAADYwAAAAACYwAAAAADcAAAAAAAYwAAAAADYwAAAAABcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAABcAAAAAAAYwAAAAADYwAAAAABcAAAAAAAYwAAAAACYwAAAAABYwAAAAAAYwAAAAABcAAAAAAAYwAAAAACYwAAAAADbQAAAAABcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAYwAAAAACYwAAAAABYwAAAAAAYwAAAAABYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAAAbQAAAAABcAAAAAAAUwAAAAACUwAAAAACUwAAAAACcAAAAAAAYwAAAAACYwAAAAABYwAAAAADYwAAAAAAYwAAAAACYwAAAAABYwAAAAADcAAAAAAAYwAAAAAAYwAAAAACbQAAAAADcAAAAAAAUwAAAAABUwAAAAADUwAAAAADcAAAAAAAYwAAAAACYwAAAAACYwAAAAADYwAAAAADYwAAAAAAYwAAAAACYwAAAAABcAAAAAAAYwAAAAAAYwAAAAADbQAAAAADcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAYwAAAAABYwAAAAABYwAAAAACYwAAAAAAYwAAAAACYwAAAAABYwAAAAACcAAAAAAAcAAAAAAAYwAAAAAAbQAAAAADWwAAAAACUwAAAAADUwAAAAAAUwAAAAADaAAAAAACYwAAAAADYwAAAAADYwAAAAADYwAAAAACYwAAAAADYwAAAAAAYwAAAAABcAAAAAAAYwAAAAAAYwAAAAABbQAAAAADWwAAAAADUwAAAAACUwAAAAACUwAAAAADaAAAAAADYwAAAAAAYwAAAAAAYwAAAAACYwAAAAADYwAAAAABYwAAAAABYwAAAAABcAAAAAAAYwAAAAACYwAAAAABbQAAAAADWwAAAAABUwAAAAAAUwAAAAABUwAAAAABaAAAAAABYwAAAAACYwAAAAACYwAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAABcAAAAAAAYwAAAAACYwAAAAAA + version: 6 0,0: ind: 0,0 - tiles: ZQAAAGgAAABLAAABSwAAA0sAAANLAAAAWwAAAVsAAANbAAADWwAAAFsAAANbAAAAWwAAAmgAAABbAAACWwAAAWUAAABoAAAASwAAAEsAAABLAAACaAAAAFsAAABbAAAAWwAAAVsAAAFbAAAAWwAAAFsAAABoAAAAWwAAAlsAAANoAAAAaAAAAEsAAANLAAABSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAFLAAAASwAAA0sAAAFLAAABSwAAA0sAAAJLAAACSwAAAksAAAJLAAABSwAAAksAAABLAAAASwAAAUsAAAFLAAACSwAAAEsAAAFLAAADSwAAA0sAAANLAAACSwAAAUsAAABLAAACSwAAAEsAAAFLAAADSwAAAksAAANLAAABSwAAAEsAAAFLAAACSwAAAEsAAANLAAABSwAAAksAAAFLAAACSwAAAUsAAAJLAAACSwAAAUsAAANLAAAAaAAAAGgAAABLAAAASwAAA0sAAABoAAAAaAAAABoAAAJoAAAAGgAAA2gAAABoAAAASwAAAksAAANLAAACSwAAAhoAAAFoAAAASwAAA0sAAANLAAACaAAAABoAAAEaAAACGgAAAxoAAAEaAAACaAAAAEsAAANLAAABSwAAAUsAAAEaAAACaAAAAEsAAANLAAACSwAAA2gAAAAaAAACGgAAAhoAAAEaAAAAGgAAAGgAAABoAAAASwAAAksAAAJLAAABGgAAA2gAAABLAAABSwAAAEsAAABoAAAAGgAAAxoAAAAaAAAAGgAAABoAAANoAAAASwAAA0sAAAFLAAABSwAAAEsAAAJoAAAASwAAAEsAAAFLAAACaAAAABoAAAMaAAADGgAAABoAAAAaAAABaAAAAEsAAANLAAACSwAAAksAAAFLAAACaAAAAEsAAAJLAAADSwAAAGgAAAAaAAABGgAAABoAAAAaAAAAGgAAAWgAAABLAAACSwAAAEsAAANLAAAASwAAAmgAAABLAAADSwAAA0sAAAJoAAAAaAAAAGgAAAAaAAAAaAAAAGgAAABoAAAASwAAAUsAAABLAAABSwAAAEsAAAFoAAAASwAAAksAAAJLAAABaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABaAAAAEsAAANLAAADSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAGgAAABLAAABSwAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAA== + tiles: bQAAAAADcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAADYwAAAAAAYwAAAAACYwAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAACcAAAAAAAYwAAAAAAYwAAAAAAbQAAAAACcAAAAAAAUwAAAAADUwAAAAADUwAAAAACcAAAAAAAYwAAAAAAYwAAAAACYwAAAAADYwAAAAAAYwAAAAAAYwAAAAADYwAAAAADcAAAAAAAYwAAAAADYwAAAAADcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAHwAAAAAAcAAAAAAAHwAAAAABcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAABGgAAAAACcAAAAAAAUwAAAAABUwAAAAADUwAAAAABcAAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAABGgAAAAADcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAACGgAAAAACcAAAAAAAUwAAAAACUwAAAAADUwAAAAADcAAAAAAAGgAAAAAAGgAAAAACGgAAAAADGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAUwAAAAABWwAAAAAAUwAAAAADGgAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAADGgAAAAADcAAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAGgAAAAAAGgAAAAADGgAAAAABGgAAAAAAGgAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAAAHwAAAAADcAAAAAAAUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAGgAAAAACGgAAAAAAGgAAAAACGgAAAAAAGgAAAAADcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACGgAAAAADcAAAAAAAUwAAAAADUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAGgAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAADcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAA + version: 6 1,0: ind: 1,0 - tiles: WwAAAVsAAAJbAAADWwAAAmgAAABoAAAAVwAAAFcAAABoAAAAOwAAADsAAAA7AAAAOwAAADsAAABoAAAASwAAA1sAAANbAAAAWwAAA1sAAANoAAAAaAAAAFcAAABXAAAAaAAAADsAAAA7AAAAOwAAADsAAAA7AAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAADsAAABoAAAAaAAAAGgAAABLAAABSwAAAEsAAAJLAAADSwAAAUsAAAFLAAAASwAAAksAAAJLAAACSwAAAEsAAAJLAAACSwAAAUsAAAJLAAACSwAAAksAAAJLAAACSwAAAUsAAAJLAAABSwAAA0sAAABLAAAASwAAA0sAAANLAAADSwAAAUsAAANLAAABaAAAAEsAAAJLAAABSwAAAksAAABLAAADSwAAAEsAAABLAAAASwAAAksAAANLAAAASwAAA0sAAABLAAADSwAAAhoAAAJLAAADSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAJLAAABSwAAA0sAAANoAAAASwAAA0sAAAJoAAAASwAAAUsAAAJLAAADSwAAA0sAAAJLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAACSwAAAksAAANLAAADSwAAAEsAAAFoAAAASwAAAUsAAANLAAABaAAAAFcAAABXAAAASwAAAGgAAABLAAAASwAAAksAAAFLAAACSwAAA0sAAANLAAAASwAAAUsAAAFLAAAASwAAAWgAAABXAAAAVwAAAEsAAABLAAAASwAAAEsAAAJLAAAASwAAAksAAAJLAAACSwAAAmgAAABLAAABSwAAAUsAAABoAAAAVwAAAFcAAABLAAADSwAAAEsAAAJLAAACSwAAAksAAANLAAADSwAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAASwAAA2gAAABLAAACSwAAAUsAAANLAAACSwAAAEsAAAJLAAADaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAASwAAAEsAAAJLAAABSwAAAEsAAAJLAAADSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAVwAAAGgAAABLAAABSwAAA0sAAAJLAAABSwAAAEsAAANLAAACSwAAA0sAAAFLAAACSwAAAmgAAABXAAAAaAAAAA== + tiles: YwAAAAACYwAAAAADYwAAAAABYwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcAAAAAAAUwAAAAAAYwAAAAABYwAAAAABYwAAAAABYwAAAAABcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAACcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAADGgAAAAACUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAUwAAAAABUwAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAXwAAAAAAUwAAAAABcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAAAbQAAAAACbQAAAAABcAAAAAAAXwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAUwAAAAABUwAAAAACbQAAAAAAbQAAAAABcAAAAAAAXwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAABcAAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 0,1: ind: 0,1 - tiles: aAAAAEsAAAJLAAACSwAAAksAAAFLAAAAaAAAABoAAAMaAAADGgAAABoAAANoAAAAaAAAAGgAAABXAAAAVwAAABoAAABLAAACSwAAAUsAAANLAAACSwAAAGUAAAFlAAACZQAAAGUAAANlAAACaAAAAGgAAABoAAAAVwAAAFcAAABoAAAASwAAAksAAANLAAACSwAAAEsAAAFoAAAAZQAAA2UAAANlAAACZQAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAEsAAAJLAAAASwAAAksAAAFLAAABaAAAAGUAAAFlAAACZQAAAWUAAAMaAAAAaAAAAGgAAABXAAAAaAAAAGgAAABLAAAASwAAAUsAAAFLAAAASwAAAUsAAANlAAABZQAAAGUAAAFlAAABaAAAAGgAAABoAAAAVwAAAGgAAABoAAAASwAAAksAAAFLAAADSwAAAUsAAAJoAAAAGgAAAxoAAAAaAAADGgAAA2gAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAANoAAAAGgAAARoAAAMaAAADaAAAADcAAAA3AAAANwAAAGgAAABlAAACZQAAAmUAAABoAAAAaAAAAAAAAAAaAAABGgAAABoAAAIaAAACGgAAAGgAAAA3AAAANwAAADcAAABoAAAAZQAAAmUAAANlAAAAaAAAAGgAAAAAAAAAGgAAAhoAAAAaAAABGgAAABoAAAM3AAAANwAAADcAAAA3AAAAZQAAAGUAAAJoAAAAZQAAAWgAAABoAAAAAAAAABoAAABoAAAAaAAAABoAAABoAAAAaAAAADcAAAA3AAAANwAAAGgAAABlAAACaAAAAFsAAANbAAACaAAAAAAAAABoAAAAaAAAABoAAAMaAAAAGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAAAaAAAAGgAAAAAAAAAGgAAAhoAAAMaAAABGgAAAxoAAAEaAAADGgAAAxoAAAIaAAABGgAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAABoAAABoAAAAGgAAAhoAAAAaAAABaAAAABoAAAAaAAADGgAAAhoAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAaAAACGgAAAhoAAAEaAAACGgAAAxoAAAAaAAACGgAAAxoAAAEaAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAhoAAAMaAAAAGgAAARoAAAEaAAAAGgAAAxoAAAAaAAADaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: cAAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAABcAAAAAAAGgAAAAADGgAAAAACGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAGgAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAABbQAAAAABbQAAAAADbQAAAAADbQAAAAADbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAbQAAAAAAbQAAAAACbQAAAAADbQAAAAADGgAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAbQAAAAACbQAAAAACbQAAAAABbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAGgAAAAAAGgAAAAADGgAAAAABcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAbQAAAAACbQAAAAACbQAAAAADcAAAAAAAcAAAAAAAAAAAAAAAGgAAAAAAGgAAAAACGgAAAAADGgAAAAADGgAAAAADcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAbQAAAAADbQAAAAAAbQAAAAACcAAAAAAAcAAAAAAAAAAAAAAAGgAAAAADGgAAAAABGgAAAAACGgAAAAAAGgAAAAACOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAbQAAAAACbQAAAAADcAAAAAAAbQAAAAADcAAAAAAAcAAAAAAAAAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAbQAAAAADcAAAAAAAYwAAAAAAYwAAAAACcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABcAAAAAAAcAAAAAAAAAAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAABGgAAAAABGgAAAAADGgAAAAAAGgAAAAABGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADcAAAAAAAGgAAAAACGgAAAAACGgAAAAABcAAAAAAAGgAAAAABGgAAAAACGgAAAAAAGgAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAACGgAAAAACGgAAAAADGgAAAAADGgAAAAACGgAAAAACGgAAAAACGgAAAAACGgAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAADGgAAAAADGgAAAAADGgAAAAACGgAAAAACGgAAAAACGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -2,0: ind: -2,0 - tiles: aAAAAGUAAAFlAAAAZQAAAmUAAAFlAAABSwAAA0sAAABLAAAASwAAA2gAAAA0AAAAKgAAACoAAAAqAAAANAAAAGgAAABlAAACZQAAA2UAAABlAAAAaAAAAGgAAABLAAABSwAAAGgAAABoAAAANAAAADQAAAA0AAAANAAAADQAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAEsAAAFLAAACaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAUsAAABLAAACSwAAA0sAAAJLAAADSwAAA0sAAABLAAAASwAAAEsAAABLAAAASwAAAksAAAJLAAACSwAAAksAAAJLAAACSwAAAEsAAABLAAAASwAAAUsAAANLAAABSwAAA0sAAAFLAAABSwAAA0sAAANLAAACSwAAAUsAAANLAAAASwAAAUsAAANLAAACSwAAA0sAAAFLAAABSwAAA0sAAAFLAAACSwAAAksAAANLAAACSwAAA0sAAANLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAABLAAADSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAASwAAAEsAAANLAAAAaAAAAGgAAABLAAACSwAAA2gAAABoAAAAGgAAARoAAAJoAAAAaAAAAGgAAABXAAAAaAAAAEsAAAJLAAAASwAAAUsAAAFLAAABSwAAAUsAAABoAAAAGgAAARoAAAAaAAADaAAAAFAAAABQAAAAVwAAAGgAAABLAAAASwAAA0sAAAFLAAAAaAAAAEsAAANLAAADGgAAARoAAAAaAAADGgAAAGgAAABQAAAAUAAAAFcAAABoAAAASwAAAEsAAABLAAACSwAAA0sAAAJLAAACSwAAA2gAAAAaAAACGgAAABoAAANoAAAAUAAAAFAAAABXAAAAaAAAAEsAAABLAAADSwAAAEsAAABoAAAASwAAAUsAAAFoAAAAaAAAABoAAAJoAAAAaAAAAFAAAABQAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: cAAAAAAAbQAAAAAAbQAAAAACbQAAAAAAbQAAAAABbQAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAANwAAAAAAWgAAAAADWgAAAAAAWgAAAAABNwAAAAAAcAAAAAAAbQAAAAADbQAAAAACbQAAAAACbQAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAVAAAAAACVAAAAAACcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAUwAAAAAAUwAAAAACVAAAAAACVAAAAAADcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABVAAAAAAAVAAAAAACcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 1,-1: ind: 1,-1 - tiles: WwAAAlsAAAFbAAABWwAAA2gAAABlAAADZQAAAmUAAANlAAABaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGgAAABbAAAAWwAAAVsAAAFbAAABZQAAAmUAAAFlAAACZQAAAmgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAABoAAAAWwAAAlsAAAFbAAABaAAAAGUAAAFlAAADZQAAAWUAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAaAAAAFsAAABbAAAAWwAAA2gAAABlAAAAZQAAAGUAAAFlAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAFsAAABbAAABWwAAAFsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAABWwAAAlsAAANbAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAFAAAABQAAAAWwAAAFsAAANbAAADWwAAAWgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAFAAAABoAAAAaAAAAFsAAAFbAAACWwAAAVsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABbAAAAWwAAAFsAAAFbAAABaAAAAFsAAABbAAABWwAAA1sAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAA1sAAANbAAABWwAAAVsAAABbAAAAWwAAAlsAAANbAAACaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFsAAABbAAACWwAAA1sAAABoAAAAWwAAAVsAAANbAAACWwAAAWgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAACWwAAAVsAAAFbAAAAaAAAAFsAAABbAAADWwAAAFsAAABoAAAAVwAAAGgAAABoAAAASwAAAEsAAABLAAACWwAAAlsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAEsAAAJLAAACSwAAAFsAAAJbAAACWwAAAFsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABLAAACSwAAAUsAAANbAAABWwAAAlsAAAJbAAADaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAVwAAAGgAAABoAAAASwAAA0sAAABLAAADWwAAA1sAAABbAAADWwAAAWgAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAg== + tiles: cAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAaAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYwAAAAADYwAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYwAAAAABYwAAAAABYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAYwAAAAADYwAAAAACYwAAAAADYwAAAAACaAAAAAABbQAAAAACbQAAAAADbQAAAAACbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAACYwAAAAAAYwAAAAACcAAAAAAAbQAAAAABbQAAAAABbQAAAAACbQAAAAAAbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAYwAAAAAAYwAAAAACYwAAAAACYwAAAAABcAAAAAAAbQAAAAACbQAAAAAAbQAAAAAAbQAAAAACbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAABYwAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAACYwAAAAACcAAAAAAAYwAAAAADYwAAAAAAYwAAAAACYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAADYwAAAAABYwAAAAACaAAAAAACYwAAAAABYwAAAAABYwAAAAAAYwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAYwAAAAAAYwAAAAADYwAAAAABYwAAAAABcAAAAAAAYwAAAAAAYwAAAAADYwAAAAAAYwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAACYwAAAAADYwAAAAABcAAAAAAAYwAAAAABYwAAAAAAYwAAAAADYwAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAYwAAAAADYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACYwAAAAAAYwAAAAACYwAAAAADYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAABYwAAAAADYwAAAAACYwAAAAACYwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAYwAAAAAAYwAAAAADYwAAAAADYwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAD + version: 6 0,-2: ind: 0,-2 - tiles: FgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAA3AAAANwAAAGgAAABoAAAAaAAAABYAAABoAAAASwAAA0sAAAFLAAADaAAAAGUAAABlAAAAZQAAAmUAAANlAAADNwAAADcAAABoAAAAaAAAAGgAAAAWAAAASwAAAEsAAAFLAAABSwAAAmgAAABlAAABZQAAAGUAAANlAAAAaAAAADcAAAA3AAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAA0sAAAJoAAAAZQAAAmUAAAFlAAABZQAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAASwAAAUsAAABLAAABZQAAA2UAAABlAAAAZQAAA2UAAABlAAADZQAAAmUAAAJoAAAAaAAAAGgAAABXAAAAaAAAAEsAAABLAAADSwAAAWUAAABlAAABZQAAAWUAAAJlAAAAZQAAAWUAAAFlAAADaAAAAGgAAABoAAAAVwAAAGgAAABLAAACSwAAAEsAAAFlAAACZQAAAWUAAAJlAAAAZQAAAGUAAAJlAAAAZQAAA2gAAABoAAAAaAAAAFcAAABoAAAASwAAAEsAAAJLAAACaAAAAGUAAAFlAAADZQAAAGUAAAFlAAABZQAAAGUAAAFoAAAAaAAAAFcAAABoAAAAaAAAAEsAAAJLAAABSwAAAWgAAABlAAAAZQAAAmUAAANlAAAAZQAAAWUAAAFlAAADaAAAAGgAAABXAAAAaAAAAGgAAABLAAABSwAAAEsAAABoAAAAaAAAAGUAAABlAAAAZQAAA2UAAANlAAADZQAAAmgAAABoAAAAVwAAAGgAAABLAAABSwAAAksAAAFLAAABSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAAAaAAACSwAAA0sAAAJLAAACSwAAA0sAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAGgAAAUsAAAJLAAABSwAAAksAAANLAAADaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABXAAAAVwAAAGgAAABLAAADSwAAA0sAAAJLAAABSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAFLAAADSwAAAUsAAAFoAAAAWwAAAFsAAAFbAAABGgAAAxoAAAIaAAAAGgAAAxoAAAMaAAACaAAAAEsAAANLAAADSwAAA0sAAAJLAAAAaAAAAFsAAAFbAAAAWwAAAGgAAAAaAAAAGgAAARoAAAMaAAADGgAAAw== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACcAAAAAAAbQAAAAACbQAAAAABbQAAAAADbQAAAAAAbQAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAbQAAAAABbQAAAAADbQAAAAAAbQAAAAADcAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACXwAAAAAAUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAbQAAAAAAbQAAAAABbQAAAAAAbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADHwAAAAACUwAAAAACUwAAAAACUwAAAAABbQAAAAADbQAAAAABbQAAAAADbQAAAAABbQAAAAADbQAAAAAAbQAAAAABbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAUwAAAAADUwAAAAAAUwAAAAABbQAAAAAAbQAAAAACbQAAAAABbQAAAAACbQAAAAABbQAAAAACbQAAAAABbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABbQAAAAADbQAAAAADbQAAAAAAbQAAAAACbQAAAAAAbQAAAAACbQAAAAABbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAbQAAAAACbQAAAAAAbQAAAAABbQAAAAADbQAAAAACbQAAAAADbQAAAAADcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAbQAAAAACbQAAAAACbQAAAAADbQAAAAABbQAAAAABbQAAAAACbQAAAAABcAAAAAAAcAAAAAAAXwAAAAAAWwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAACbQAAAAACbQAAAAACbQAAAAABcAAAAAAAcAAAAAAAXwAAAAAAWwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAWwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAWwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAYwAAAAABYwAAAAAAYwAAAAADYwAAAAACcAAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAYwAAAAAAYwAAAAABYwAAAAACYwAAAAACcAAAAAAAGgAAAAADGgAAAAADGgAAAAADGgAAAAAD + version: 6 1,-2: ind: 1,-2 - tiles: aAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAZwAAAGgAAABnAAAAaAAAAGcAAABoAAAAZwAAAGgAAABnAAAAaAAAAGcAAABoAAAAAAAAAAAAAABXAAAAaAAAAGcAAABoAAAAZwAAAGgAAABnAAAAaAAAAGcAAABoAAAAZwAAAGgAAABnAAAAaAAAAAAAAAAAAAAAVwAAAGgAAABnAAAAaAAAAGcAAABoAAAAZwAAAGgAAABnAAAAaAAAAGcAAABoAAAAZwAAAGgAAAAAAAAAAAAAAFcAAABoAAAAZwAAAGgAAABnAAAAaAAAAGcAAABoAAAAZwAAAGgAAABnAAAAaAAAAGcAAABoAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAADcAAAA3AAAAaAAAAGcAAAAAAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAAA3AAAANwAAAGgAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAAA3AAAANwAAADcAAABoAAAAZwAAAAAAAABoAAAAaAAAAEMAAABDAAAAQwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAADcAAAA3AAAAaAAAAGcAAAAAAAAAaAAAAGgAAABDAAAAQwAAAEMAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGgAAABoAAAAQwAAAEMAAABDAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAEMAAABDAAAAQwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAAFoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAA1sAAABbAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAANbAAAAWwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: cAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACWAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAaAAAAAAAaAAAAAABaAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 -1,1: ind: -1,1 - tiles: aAAAACkAAABDAAAAQwAAAEMAAABoAAAASwAAAioAAABLAAAASwAAAUsAAANoAAAAGgAAARoAAAEaAAAAGgAAAmgAAABoAAAAaAAAABoAAANoAAAAaAAAAEsAAABLAAACSwAAAEsAAANLAAACaAAAABoAAAMaAAADGgAAAhoAAAJoAAAAQAAAAEAAAABAAAAAQAAAAGgAAABoAAAAZQAAA2gAAABoAAAAaAAAAGgAAAAaAAACGgAAAxoAAAAaAAACaAAAAEAAAABAAAAAQAAAAEAAAABoAAAAZQAAAmUAAANlAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABAAAAAQAAAAEAAAABAAAAAGgAAAGUAAABlAAADZQAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAAQAAAAEAAAABAAAAAQAAAAGgAAABlAAAAZQAAAGUAAAFoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAAA3AAAANwAAADcAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAANwAAADcAAAA3AAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQAAAAEAAAABAAAAAQAAAADcAAAA3AAAANwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAA3AAAANwAAADcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAABoAAAIaAAAAGgAAA2cAAABnAAAAZwAAAGcAAABnAAAAZwAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAaAAADGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAGgAAAxoAAAMaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAGgAAAAaAAABGgAAAw== + tiles: cAAAAAAAKQAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAUwAAAAADKgAAAAAAUwAAAAAAKgAAAAAAUwAAAAABcAAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAAAGgAAAAACcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAACGgAAAAADcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAHwAAAAACbQAAAAADbQAAAAAAbQAAAAABcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAAB + version: 6 -2,1: ind: -2,1 - tiles: ZgAAAGgAAAAmAAAAJgAAAGgAAABXAAAAaAAAAGgAAABQAAAAUAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAABoAAAAJgAAACYAAABoAAAAVwAAAGgAAABoAAAAUAAAAFAAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABmAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABnAAAAZwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGcAAABnAAAAZwAAAGcAAABoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAZwAAAGgAAABnAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGcAAABoAAAAAAAAAAAAAABoAAAAKwAAAGgAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABXAAAAaAAAAGgAAABnAAAAaAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAVwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAGcAAABoAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: bQAAAAACcAAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADcAAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAKwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -1,2: ind: -1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAGgAAABoAAAAGgAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABnAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 1,1: ind: 1,1 - tiles: VwAAAGgAAABLAAACSwAAA0sAAAJLAAABSwAAA0sAAAFLAAACSwAAAEsAAAJLAAABSwAAA2gAAABXAAAAaAAAAFcAAABoAAAASwAAAEsAAAFLAAACSwAAAksAAABLAAACSwAAAUsAAAJLAAADSwAAAEsAAANoAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAASwAAAksAAAJLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAEsAAAFLAAABSwAAA2gAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGgAAABoAAAAZwAAAGgAAABLAAABSwAAA0sAAANoAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGcAAABoAAAASwAAA0sAAABLAAACaAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABnAAAAaAAAAEsAAABLAAABSwAAAWgAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAAAAAAAAAAAAZwAAAGgAAABLAAADSwAAAUsAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAAAAAAAAAAAAAGcAAABoAAAASwAAAEsAAAFLAAABaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAAAAAAAAAAABoAAAAaAAAAEsAAAJLAAAASwAAAmgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABWwAAAAAAUwAAAAABUwAAAAABUwAAAAABWwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAAAWwAAAAAAUwAAAAACUwAAAAADUwAAAAADWwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAWwAAAAADXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAWwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAACcAAAAAAAWwAAAAACXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,2: ind: 0,2 - tiles: GgAAAhoAAAIaAAAAGgAAABoAAAMaAAAAGgAAAxoAAAFoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: GgAAAAADGgAAAAABGgAAAAACGgAAAAADGgAAAAAAGgAAAAABGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,0: ind: 2,0 - tiles: SwAAA0sAAAFLAAADSwAAAWgAAAAaAAADGgAAAhoAAAAaAAADaAAAAGgAAAAaAAABaAAAAGgAAABoAAAAaAAAAGgAAABLAAABaAAAAGgAAABoAAAAaAAAABoAAAJoAAAAaAAAAGgAAAAaAAACGgAAAhoAAAAaAAACGgAAABoAAANLAAABSwAAA0sAAAJLAAAAaAAAAEsAAAFLAAAASwAAAUsAAAJLAAAASwAAAUsAAANLAAACSwAAAksAAAFLAAABSwAAAz8AAABLAAACSwAAAUsAAANLAAABSwAAAUsAAABLAAABSwAAA0sAAAFLAAACSwAAAUsAAAFLAAADSwAAAj8AAAA/AAAAPwAAAEsAAABLAAAASwAAAksAAAJLAAADSwAAAksAAABLAAADSwAAAEsAAAFLAAABSwAAAUsAAABLAAACPwAAAEsAAANLAAADSwAAAEsAAABLAAAASwAAA0sAAAFLAAABSwAAA0sAAAFLAAADSwAAA0sAAAJLAAAASwAAAksAAAJLAAACSwAAA2gAAABLAAAASwAAA0sAAANLAAADSwAAAUsAAANLAAACSwAAAWgAAABoAAAAaAAAAGgAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAA0sAAAJoAAAAGgAAARoAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABAAAAAQAAAAEAAAABoAAAASwAAA0sAAAFLAAAAGgAAARoAAAIaAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAQAAAAEAAAABAAAAAQAAAAEsAAABLAAABSwAAA2gAAAAaAAAAGgAAAWgAAABoAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAARoAAAFoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAABoAAAIaAAACaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAAAaAAAAGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAGgAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: UwAAAAABUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAGgAAAAAAGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAAARgAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAARgAAAAAARgAAAAAARgAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAADRgAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAADcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAADGgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAACGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 3,0: ind: 3,0 - tiles: GgAAAEsAAAIaAAABaAAAAGgAAABoAAAAaAAAAEsAAAFLAAACSwAAA0sAAAFLAAACSwAAAmgAAAAAAAAAAAAAABoAAANLAAAAGgAAAhoAAAIaAAABGgAAAWgAAABLAAABVwAAAFcAAABXAAAAVwAAAEsAAAJoAAAAAAAAAAAAAABLAAACSwAAAUsAAANLAAABSwAAAksAAAJLAAAASwAAAFcAAABXAAAAaAAAAFcAAABLAAADaAAAAGgAAABoAAAASwAAAUsAAABLAAABGgAAAxoAAAMaAAAAaAAAAEsAAAFXAAAAVwAAAFcAAABXAAAASwAAAWgAAAAAAAAAAAAAAEsAAAFLAAABSwAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAUsAAAJLAAACSwAAA0sAAANoAAAAAAAAAAAAAABLAAACSwAAA0sAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAABoAAAAaAAACGgAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABoAAAAGgAAAxoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAaAAAABoAAAIaAAADaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAGgAAAAaAAABGgAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAAAAAAAAAAABoAAAAGgAAARoAAAJoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAABoAAAIaAAACaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAIaAAAAGgAAA2gAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: GgAAAAADUwAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADUwAAAAACGgAAAAADGgAAAAADGgAAAAACGgAAAAABcAAAAAAAUwAAAAADXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAABXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAUwAAAAADXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADGgAAAAADcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADGgAAAAACcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAADGgAAAAAAGgAAAAABcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,-1: ind: 2,-1 - tiles: AAAAAGcAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABXAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAA0sAAAFLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAADSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAEsAAANLAAADSwAAA0sAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAEsAAAFLAAACaAAAAGUAAABlAAABZQAAA2UAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAASwAAAUsAAAJLAAADSwAAAWgAAABlAAABZQAAAmUAAABlAAACaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAA== + tiles: AAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAACEQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAEQAAAAAGbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAEQAAAAAEcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAEQAAAAAAcAAAAAAAEQAAAAAEbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAADcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAACbQAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAA + version: 6 -1,-2: ind: -1,-2 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAEaAAADGgAAABoAAAIaAAABaAAAABYAAAAWAAAAFgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAAaAAABGgAAAxoAAAEaAAAAGgAAAhoAAAAWAAAAFgAAABYAAAAAAAAAAAAAAAAAAAAaAAABGgAAARoAAAIjAAACIwAAASMAAAIaAAADGgAAABoAAABoAAAAFgAAABYAAAAWAAAAZwAAAGcAAABnAAAAGgAAARoAAAIaAAADGgAAABoAAAMaAAAAGgAAAjkAAAA5AAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAGgAAARoAAAEaAAABGgAAABoAAAIaAAABGgAAAlcAAABXAAAAVwAAAFcAAABAAAAAQAAAAEAAAABoAAAAGgAAABoAAAAaAAABGgAAAxoAAAMaAAAAGgAAAxoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAEAAAABAAAAAaAAAABoAAAAaAAABGgAAAxoAAAIaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABAAAAAQAAAAGgAAAAjAAABaAAAAGgAAABoAAAAaAAAAGgAAABlAAABZQAAAWUAAANlAAADaAAAAGgAAABbAAABaAAAAGgAAABoAAAAGgAAAWgAAAASAAAAEgAAABIAAABoAAAAZQAAAWUAAAJlAAADZQAAAGgAAABoAAAAGgAAAhoAAAIaAAABaAAAABoAAAFoAAAAVwAAAFcAAABXAAAAaAAAABoAAAAaAAAAGgAAABoAAAJoAAAAaAAAABoAAAIaAAACGgAAAWgAAAAaAAADaAAAAGgAAABbAAAAaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAAAaAAADGgAAABoAAAMaAAABGgAAAhoAAAEaAAACGgAAARoAAAEaAAADGgAAAhoAAAEaAAABGgAAABoAAAEaAAADGgAAAhoAAAEaAAACGgAAAxoAAAIaAAADGgAAAxoAAAAaAAADGgAAAhoAAAIaAAABGgAAARoAAAAaAAABGgAAARoAAAAaAAACGgAAAWgAAAAaAAABGgAAAhoAAAAaAAADGgAAAmgAAABoAAAAaAAAABoAAANoAAAAaAAAAGgAAAAaAAACGgAAABoAAAJoAAAAGgAAARoAAAIaAAABGgAAAhoAAABoAAAAWwAAA1sAAAJbAAABWwAAAVsAAANbAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAANbAAADWwAAAVsAAAJbAAABWwAAAg== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAADGgAAAAADGgAAAAAAGgAAAAAAGgAAAAACGgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAGgAAAAABGgAAAAABGgAAAAABGgAAAAABGgAAAAABGgAAAAABPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAARwAAAAAARwAAAAAAHwAAAAABGgAAAAACGgAAAAABGgAAAAADKgAAAAAAKgAAAAAAGgAAAAACPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAKgAAAAAAKgAAAAAAGgAAAAAAGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAABGgAAAAADGgAAAAAAcAAAAAAAGgAAAAADGgAAAAADKgAAAAAAKgAAAAAAGgAAAAADGgAAAAACGgAAAAABHwAAAAACGgAAAAADGgAAAAAAGgAAAAACGgAAAAABGgAAAAAAGgAAAAADGgAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAAAGgAAAAABGgAAAAABGgAAAAACGgAAAAABcAAAAAAAGgAAAAADGgAAAAADGgAAAAACGgAAAAACGgAAAAAAGgAAAAADGgAAAAADHwAAAAABGgAAAAABGgAAAAABGgAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAABcAAAAAAAGgAAAAADGgAAAAABGgAAAAAAGgAAAAAAHwAAAAACGgAAAAADGgAAAAADcAAAAAAAGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAHgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAACcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAbQAAAAABbQAAAAAAbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAHgAAAAACHgAAAAADHgAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAbQAAAAACbQAAAAADbQAAAAAAcAAAAAAADwAAAAAAcAAAAAAAHgAAAAACHgAAAAABHgAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAACWwAAAAAAHgAAAAACHgAAAAACHgAAAAABcAAAAAAADwAAAAAAcAAAAAAAHgAAAAACHgAAAAABcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAADcAAAAAAAHgAAAAAAHgAAAAAAHgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAHgAAAAAAHgAAAAADHgAAAAABHwAAAAADcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAWwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAADWwAAAAABUwAAAAABUwAAAAAAWwAAAAAAWwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAC + version: 6 -2,-2: ind: -2,-2 - tiles: GgAAAhoAAANoAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAFcAAABoAAAAaAAAAGcAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABXAAAAaAAAAGgAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAPwAAAD8AAAA/AAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAAFbAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABbAAABWwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAAA3AAAAaAAAADcAAABoAAAAVwAAAGgAAABoAAAAWwAAAVsAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAANwAAADcAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAAAaAAABZwAAAGcAAABnAAAAAAAAAAAAAABnAAAAaAAAAGgAAABlAAAAZQAAAWgAAABXAAAAaAAAAGgAAAAaAAADGgAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABlAAABZQAAA2gAAABoAAAAVwAAAGgAAABoAAAAGgAAAxoAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAABoAAAIaAAACAAAAAAAAAAAAAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAAAaAAAAGgAAAQAAAAAAAAAAZwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAGgAAAhoAAAEAAAAAAAAAAGcAAABoAAAAVwAAAGgAAABoAAAAaAAAADkAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAIaAAABAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAADkAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: GgAAAAABGgAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYAAAAAAAGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAHgAAAAACHgAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAHgAAAAAAHgAAAAABbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAADbQAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAHgAAAAADHgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAHgAAAAABHgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAAC + version: 6 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGQAAABkAAAA6AAAAaAAAAGgAAAA2AAAANgAAADYAAAA2AAAANgAAAEsAAAFLAAAASwAAAksAAAJLAAAAGQAAABkAAAAZAAAAOgAAAGgAAABoAAAANgAAADYAAAA2AAAANgAAAGgAAABLAAADSwAAA0sAAAJLAAAASwAAAmgAAAAZAAAAGQAAADoAAAAZAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAADSwAAAksAAANoAAAAaAAAABkAAABoAAAAaAAAAGgAAABlAAAAZQAAAmUAAAJlAAAAZQAAAEsAAAFLAAAASwAAAEsAAABLAAAAZQAAAWUAAANlAAAAaAAAAFcAAABoAAAAZQAAAmUAAABlAAABZQAAAmgAAABLAAACSwAAAksAAABLAAABSwAAAWUAAAJlAAABZQAAAWgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAANLAAABSwAAA2gAAABoAAAAaAAAAGgAAABoAAAANAAAAGgAAABlAAABZQAAA2UAAAFlAAABZQAAAEsAAABLAAADSwAAAksAAAFoAAAANAAAADQAAAA0AAAANAAAADQAAABoAAAAZQAAAGUAAABlAAADZQAAA2gAAABLAAADSwAAAksAAAFLAAABaAAAADQAAAAqAAAAKgAAACoAAAA0AAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAABLAAAASwAAA2gAAAA0AAAAKgAAACoAAAAqAAAANAAAAA== + tiles: XwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAADXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAABHwAAAAACGgAAAAAAGgAAAAACGgAAAAAAGgAAAAAAHwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABcAAAAAAAGgAAAAADGgAAAAAAGgAAAAACGgAAAAACcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAADFgAAAAAAFgAAAAAAFgAAAAAAPgAAAAAAcAAAAAAAcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAFgAAAAAAFgAAAAAAPgAAAAAAFgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAFgAAAAAAFgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAABbQAAAAABbQAAAAACbQAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAACbQAAAAABbQAAAAADbQAAAAACcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAAAbQAAAAABbQAAAAABbQAAAAADcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAAAbQAAAAABbQAAAAACbQAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANwAAAAAAcAAAAAAAbQAAAAACbQAAAAAAbQAAAAADbQAAAAADbQAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAbQAAAAACbQAAAAACbQAAAAAAbQAAAAADcAAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAABcAAAAAAANwAAAAAAWgAAAAAAWgAAAAAAWgAAAAAANwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAADcAAAAAAANwAAAAAAWgAAAAADWgAAAAABWgAAAAACNwAAAAAA + version: 6 -3,0: ind: -3,0 - tiles: AAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAA0sAAANLAAABSwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAJLAAACSwAAAksAAANoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAADSwAAAksAAAFLAAAASwAAAWgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAA0sAAABLAAAASwAAAUsAAAJLAAACSwAAAwAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGgAAABLAAAASwAAAUsAAAJLAAADSwAAAUsAAANLAAAASwAAAEsAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAAUsAAANLAAAASwAAAEsAAANLAAABSwAAAUsAAAJLAAACAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAaAAAAEsAAANLAAABSwAAAUsAAABLAAABSwAAA0sAAANoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAABLAAACSwAAA0sAAAJLAAACaAAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAABSwAAAEsAAANLAAACSwAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAUsAAAJLAAACSwAAA0sAAANoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAANLAAABSwAAAksAAAJLAAACaAAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAANoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABoAAAAZQAAAWUAAAJlAAABZQAAAmUAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGUAAANlAAABZQAAAGUAAAFlAAACaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABlAAACZQAAAGUAAANlAAABZQAAAGUAAAJoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABlAAADZQAAAWUAAAJlAAABZQAAAmUAAABoAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGwAAAAADGwAAAAADGgAAAAADGwAAAAACGwAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGwAAAAABGwAAAAAAHwAAAAADGwAAAAAAGwAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAADGgAAAAADGgAAAAADbQAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAACGgAAAAACGgAAAAACcAAAAAAAcAAAAAAA + version: 6 -3,-1: ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAA0sAAAFoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAABLAAABaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAABSwAAAWgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAEsAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAASwAAAEsAAANLAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABoAAAAaAAAAEsAAABLAAABSwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAEsAAANLAAABSwAAAUsAAANoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABLAAACSwAAAUsAAAJLAAADaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAA0sAAAFLAAACSwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABLAAADSwAAAUsAAANoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGgAAABLAAAASwAAAUsAAAFLAAACaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAABLAAACSwAAAmgAAABoAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAKgAAAAAAKgAAAAAAUwAAAAADUwAAAAAAUwAAAAACKgAAAAAAKgAAAAAAKgAAAAAAUwAAAAAAUwAAAAACKgAAAAAAKgAAAAAAKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAABWwAAAAADWwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 3,-1: ind: 3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAAAAAAAAAAABXAAAAVwAAAFcAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAVwAAAFcAAABXAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABoAAAAVwAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGgAAABLAAADSwAAAEsAAABLAAACaAAAAGcAAABnAAAAGgAAAEsAAAAaAAADaAAAAGcAAABnAAAAaAAAAGgAAABoAAAASwAAAEsAAAFLAAABSwAAAWgAAABnAAAAZwAAAA== + tiles: bwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAACcAAAAAAAIwAAAAAAIwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAIwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIwAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAGgAAAAADGgAAAAACcAAAAAAAIwAAAAACIwAAAAACcAAAAAAAPQAAAAAAcAAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAIwAAAAACIwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAIwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAWwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAADWwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAXwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAGgAAAAADUwAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAA + version: 6 2,-2: ind: 2,-2 - tiles: ZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAAAaAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAABoAAAEaAAACGgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAAAaAAACKgAAACoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAGgAAAyoAAAAsAAAAGgAAARoAAAAaAAADGgAAARoAAAIaAAACGgAAAUsAAAIaAAAAGgAAABoAAAAaAAABGgAAACoAAAAsAAAALAAAABoAAAMaAAADGgAAARoAAAIaAAAAGgAAARoAAAEaAAACGgAAAxoAAAMaAAAAaAAAABoAAAAqAAAALAAAACwAAAAaAAACGgAAAhoAAAIaAAADGgAAAxoAAAEaAAABaAAAABoAAAAaAAADGgAAABoAAAAaAAABKgAAACwAAAAsAAAAGgAAAhoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAARoAAAAqAAAALAAAABoAAAEaAAABaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAAAaAAACKgAAACoAAAAaAAACGgAAAmgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAGgAAAhoAAAIaAAADGgAAAhoAAAJoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAA== + tiles: bwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACKgAAAAAAKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAGgAAAAABGgAAAAABGgAAAAADGgAAAAABUwAAAAADGgAAAAADGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAADKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAGgAAAAADGgAAAAABGgAAAAABGgAAAAABGgAAAAACGgAAAAADGgAAAAADGgAAAAABGgAAAAABcAAAAAAAGgAAAAABKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAGgAAAAACGgAAAAADGgAAAAABGgAAAAACGgAAAAADGgAAAAACcAAAAAAAGgAAAAADGgAAAAABGgAAAAABGgAAAAACGgAAAAABKgAAAAAALAAAAAAALAAAAAAAGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAKgAAAAAALAAAAAAAGgAAAAADGgAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAGgAAAAADKgAAAAAAKgAAAAAAGgAAAAADGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAABGgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAA + version: 6 5,-1: ind: 5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 5,0: ind: 5,0 - tiles: aAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: cAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 3,-2: ind: 3,-2 - tiles: aAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAMaAAACSwAAA2gAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAADGgAAARoAAAMaAAADaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAACoAAAAqAAAAGgAAAhoAAAMaAAADaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAsAAAALAAAACoAAAAqAAAAGgAAAGgAAABoAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAALAAAACwAAAAsAAAAKgAAABoAAAMaAAADaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAACwAAAAsAAAALAAAACwAAAAqAAAAGgAAABoAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAsAAAALAAAACwAAAAsAAAAKgAAABoAAAMaAAABaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAALAAAACwAAAAsAAAALAAAACoAAAAaAAABGgAAAWgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAACwAAAAsAAAALAAAACoAAAAaAAADGgAAAWgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAsAAAALAAAACoAAAAqAAAAGgAAAGgAAABoAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAqAAAAKgAAACoAAAAaAAABGgAAAxoAAAJoAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAIaAAACGgAAA2gAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAIaAAAAGgAAA2gAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAACGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAGgAAAAADGgAAAAADGgAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAAGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAAGgAAAAABGgAAAAADcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAAGgAAAAABGgAAAAABcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAAGgAAAAABGgAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAAGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAGgAAAAADGgAAAAACGgAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAADGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAA + version: 6 -3,1: ind: -3,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABlAAAAZQAAAGUAAABlAAAAZQAAA2UAAAJoAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAaAAAAGUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGgAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAAAaAAADaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAMaAAADGgAAAmcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAZwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAGgAAABnAAAAaAAAAGcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAABoAAAAZwAAAGgAAABnAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAGgAAABnAAAAaAAAAGcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAABoAAAAZwAAAGgAAABnAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAaAAAAGcAAABoAAAAZwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADcAAAAAAAbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbQAAAAADbQAAAAAAbQAAAAAAbQAAAAADbQAAAAAAbQAAAAAAbQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAAAbQAAAAACbQAAAAACbQAAAAADbQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAAAbQAAAAADHwAAAAADHwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== + tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAJQAAAAACJQAAAAADcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADNwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAANwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAABGgAAAAABGgAAAAABGgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIQAAAAAAIQAAAAADIQAAAAAAIQAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIQAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAEBwAAAAAABwAAAAACBwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 1,-3: ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGcAAABoAAAAZwAAAGgAAABnAAAAaAAAAGcAAABoAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABnAAAAaAAAAGcAAABoAAAAZwAAAGgAAABnAAAAaAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAZwAAAGgAAABnAAAAaAAAAGcAAABoAAAAZwAAAGgAAABnAAAAaAAAAAAAAAAAAAAAaAAAAGgAAABnAAAAaAAAAGcAAABoAAAAZwAAAGgAAABnAAAAaAAAAGcAAABoAAAAZwAAAGgAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,1: ind: 2,1 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABBAAAAaAAAAEEAAABoAAAAQQAAAGgAAABBAAAAaAAAAEEAAABoAAAAQQAAAGgAAABBAAAAaAAAAGcAAABnAAAAQQAAAGgAAABBAAAAaAAAAEEAAABoAAAAQQAAAGgAAABBAAAAaAAAAEEAAABoAAAAQQAAAGgAAABnAAAAZwAAAEEAAABoAAAAQQAAAGgAAABBAAAAaAAAAEEAAABoAAAAQQAAAGgAAABBAAAAaAAAAEEAAABoAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASAAAAAAAcAAAAAAASAAAAAAAcAAAAAAASAAAAAAAcAAAAAAASAAAAAAAcAAAAAAASAAAAAAAcAAAAAAASAAAAAAAcAAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASAAAAAAAcAAAAAAASAAAAAAAcAAAAAAASAAAAAAAcAAAAAAASAAAAAAAcAAAAAAASAAAAAAAcAAAAAAASAAAAAAAcAAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASAAAAAAAcAAAAAAASAAAAAAAcAAAAAAASAAAAAAAcAAAAAAASAAAAAAAcAAAAAAASAAAAAAAcAAAAAAASAAAAAAAcAAAAAAASAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 3,1: ind: 3,1 - tiles: aAAAAGgAAABoAAAAZwAAAGgAAABBAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGcAAABoAAAAQQAAAGgAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -1,-3: ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAAGgAAAxoAAAIaAAAAGgAAABoAAAEaAAACaAAAAGgAAABoAAAAaAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAANwAAAAAAcAAAAAAAUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAUwAAAAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAANwAAAAAANwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAAAEQAAAAAFbQAAAAADcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAEQAAAAABbQAAAAACbQAAAAADbQAAAAACbQAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAACEQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAABGgAAAAACGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 4,-1: ind: 4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAA + version: 6 4,0: ind: 4,0 - tiles: ZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: bwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 3,-3: ind: 3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,-3: ind: 2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGgAAAAaAAACGgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAGgAAAhoAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAaAAAAGUAAAJlAAABZQAAAGUAAAJlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABlAAADZQAAAWUAAAJlAAAAZQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAABoAAAAZQAAAGUAAABlAAABZQAAAGUAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAaAAAADcAAAA3AAAANwAAAGUAAANlAAADAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAGgAAAA3AAAANwAAADcAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAANwAAADcAAAA3AAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAADcAAAA3AAAANwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAAAGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAACbQAAAAABbQAAAAACbQAAAAABbQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbQAAAAAAbQAAAAABbQAAAAACbQAAAAACbQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAABbQAAAAABbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAbQAAAAABbQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAAAaAAACGgAAAg== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAADGgAAAAAC + version: 6 -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAhoAAAFoAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAEQAAAAAGbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbwAAAAAA + version: 6 2,2: ind: 2,2 - tiles: AAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,-1: + ind: -4,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAKgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 type: MapGrid - type: Broadphase - bodyStatus: InAir @@ -188,17 +244,21 @@ entities: -4,-3: 0: 65535 -4,-2: - 0: 65535 + 0: 16383 + 1: 49152 -4,-1: - 0: 65535 + 0: 65523 + 1: 12 -3,-4: 0: 65535 -3,-3: 0: 65535 -3,-2: - 0: 65535 + 0: 36863 + 1: 28672 -3,-1: - 0: 65535 + 1: 7 + 0: 65528 -2,-4: 0: 65535 -2,-3: @@ -504,8 +564,7 @@ entities: -2,6: 0: 65535 -1,4: - 0: 63485 - 1: 2050 + 0: 65535 -1,5: 0: 65535 -1,6: @@ -525,7 +584,7 @@ entities: 0,8: 0: 36863 1,8: - 0: 36863 + 0: 40959 2,8: 0: 4407 8,0: @@ -581,13 +640,13 @@ entities: 9,-1: 0: 65535 10,-2: - 0: 65532 + 0: 65535 10,-1: 0: 65535 10,-4: 0: 65529 10,-3: - 0: 65485 + 0: 65535 11,-4: 0: 65527 11,-3: @@ -603,7 +662,7 @@ entities: -4,-5: 0: 65535 -4,-8: - 0: 63743 + 0: 65535 -3,-8: 0: 65535 -3,-7: @@ -639,7 +698,7 @@ entities: -5,-6: 0: 65535 -8,-4: - 0: 65484 + 0: 65535 -8,-3: 0: 65535 -8,-2: @@ -703,9 +762,9 @@ entities: -9,-1: 0: 65535 -9,-4: - 0: 65312 + 0: 65519 12,-4: - 0: 65522 + 0: 65523 12,-3: 0: 65535 12,-2: @@ -717,9 +776,9 @@ entities: 13,-3: 0: 65535 13,-2: - 0: 13311 + 0: 65535 13,-1: - 0: 62451 + 0: 65535 10,-8: 0: 64861 10,-7: @@ -751,7 +810,7 @@ entities: 13,-6: 0: 65535 13,-5: - 0: 57215 + 0: 57343 14,-8: 0: 30037 14,-7: @@ -817,7 +876,7 @@ entities: -9,4: 0: 65535 3,-9: - 0: 61440 + 0: 62836 4,-9: 0: 65262 6,4: @@ -825,42 +884,42 @@ entities: 7,4: 0: 65535 7,5: - 0: 61439 + 0: 65535 7,6: - 0: 61166 + 0: 61422 8,4: 0: 65535 8,5: - 0: 43695 - 2: 4368 - 3: 17472 + 0: 48063 + 2: 17472 8,6: 0: 65535 9,4: 0: 65535 9,5: 0: 43695 - 4: 21840 + 3: 4368 + 4: 17472 9,6: 0: 8191 10,4: 0: 65535 10,5: 0: 43695 - 5: 4368 - 4: 17472 + 4: 4368 + 5: 17472 11,4: 0: 65535 11,5: - 0: 61167 - 4: 4368 + 0: 43695 + 4: 21840 12,4: 0: 65535 12,5: - 0: 4479 + 0: 13183 13,4: - 0: 65501 - 4: 34 + 0: 65399 + 4: 136 13,5: 0: 7 -8,7: @@ -902,13 +961,13 @@ entities: 12,6: 0: 31 6,5: - 0: 7645 + 0: 57343 14,-4: - 0: 22004 + 0: 30207 14,-3: - 0: 62805 + 0: 63479 14,-2: - 0: 17653 + 0: 65527 5,4: 0: 65535 5,5: @@ -920,11 +979,11 @@ entities: 6,7: 0: 273 6,6: - 0: 4369 + 0: 39417 2,-9: - 0: 61440 + 0: 63479 15,-4: - 0: 4369 + 0: 13107 15,-8: 0: 4369 15,-7: @@ -932,7 +991,7 @@ entities: 15,-6: 0: 4369 15,-5: - 0: 4369 + 0: 13073 15,-9: 0: 4369 9,-9: @@ -940,7 +999,7 @@ entities: 3,7: 0: 3 -4,7: - 0: 241 + 0: 35057 -3,7: 0: 61436 -2,7: @@ -952,7 +1011,7 @@ entities: -5,7: 0: 240 -1,9: - 0: 8 + 0: 142 0,9: 0: 3247 1,9: @@ -962,60 +1021,60 @@ entities: 13,1: 0: 65535 13,2: - 0: 62271 + 0: 62463 13,3: - 0: 65331 + 0: 32755 + 4: 32768 14,0: 0: 65535 14,2: - 0: 62543 + 0: 62719 14,1: 0: 65535 14,3: - 0: 17476 + 0: 30581 -8,-5: - 0: 52424 + 0: 65535 -5,-8: - 0: 63487 + 0: 65535 -11,3: - 0: 52366 + 0: 61102 -10,3: - 0: 32767 - 1: 32768 + 0: 65535 14,-1: - 0: 65524 + 0: 65535 15,-3: - 0: 4369 + 0: 13171 -11,4: - 0: 52428 + 0: 52430 0,-9: - 0: 63624 + 0: 65519 1,-9: - 0: 61440 + 0: 65535 13,6: 0: 15 14,6: 0: 7 14,4: - 0: 17476 + 0: 30583 14,5: 0: 17476 -1,-9: - 0: 61713 + 0: 61753 15,0: 0: 16179 15,1: 0: 62451 15,2: - 0: 61987 + 0: 62003 8,-4: 0: 61166 9,-4: 0: 65535 15,-2: - 0: 8944 + 0: 13310 15,-1: - 0: 65330 + 0: 65331 8,-6: 0: 32767 8,-5: @@ -1027,39 +1086,39 @@ entities: 9,-5: 0: 65520 20,-2: - 0: 4368 + 0: 13107 20,-1: - 0: 4369 + 0: 30515 20,0: - 0: 4369 + 0: 12599 20,1: - 0: 4369 + 0: 14199 20,2: - 0: 4369 + 0: 13107 2,-10: - 0: 224 + 0: 65535 3,-10: - 0: 240 + 0: 18417 -2,-10: - 0: 34944 + 0: 65535 -2,-9: - 0: 65423 + 0: 65455 -1,-10: - 0: 240 + 0: 40959 16,-2: - 0: 61680 + 0: 61695 16,-1: 0: 40857 17,-2: - 0: 63728 + 0: 63731 17,-1: 0: 36744 18,-2: - 0: 61680 + 0: 61694 18,-1: 0: 36744 19,-2: - 0: 28912 + 0: 28927 19,-1: 0: 18244 16,0: @@ -1119,13 +1178,13 @@ entities: -10,-7: 0: 61166 -10,-6: - 0: 35070 + 0: 60158 -9,-8: 0: 65535 -9,-7: 0: 65535 -9,-6: - 0: 13311 + 0: 63487 -9,-10: 0: 63728 -9,-9: @@ -1135,11 +1194,11 @@ entities: -8,-9: 0: 65520 -8,-6: - 0: 32880 + 0: 62960 -6,-9: - 0: 65484 + 0: 65518 -5,-9: - 0: 65311 + 0: 65535 -7,-6: 0: 65262 -12,0: @@ -1155,30 +1214,27 @@ entities: -11,-1: 0: 65162 -11,-4: - 0: 61160 - 4: 4368 + 0: 65528 -11,-3: - 0: 61166 - 4: 4369 + 0: 65535 -11,-2: - 0: 43694 - 4: 1 + 0: 43695 -10,-4: - 0: 65424 + 0: 65432 0,-10: - 0: 35056 + 0: 53247 1,-10: - 0: 240 + 0: 65535 -11,-5: 0: 34816 -5,-10: - 0: 4096 + 0: 65486 -7,-8: 0: 204 -4,-9: - 0: 65295 + 0: 65535 -3,-9: - 0: 65311 + 0: 65535 -7,-9: 0: 52224 7,7: @@ -1198,19 +1254,99 @@ entities: 4,7: 0: 12 -3,8: - 0: 3310 + 0: 3326 -2,8: - 0: 4095 + 0: 24575 -11,5: - 0: 35020 + 0: 36044 -11,6: 0: 2184 -12,-4: - 4: 34816 + 0: 63488 -12,-3: - 4: 34952 + 0: 65535 -12,-2: - 4: 8 + 0: 8 + -10,-5: + 0: 32810 + -9,-5: + 0: 65484 + 0,-12: + 0: 30543 + 0,-11: + 0: 65535 + 1,-12: + 0: 4375 + 1,-11: + 0: 65535 + 2,-12: + 0: 44800 + 2,-11: + 0: 65535 + 3,-12: + 0: 768 + 3,-11: + 0: 4369 + -4,-11: + 0: 61440 + -4,-10: + 0: 65535 + -3,-11: + 0: 65008 + -3,-10: + 0: 65535 + -2,-12: + 0: 37120 + -2,-11: + 0: 65535 + -1,-12: + 0: 64591 + -1,-11: + 0: 65535 + -6,-11: + 0: 8192 + -6,-10: + 0: 60078 + -5,-11: + 0: 49152 + 9,8: + 0: 4368 + 9,9: + 0: 17 + -4,8: + 0: 136 + -3,9: + 0: 14 + -2,9: + 0: 7 + 2,9: + 0: 1 + -14,-3: + 0: 61166 + -14,-4: + 0: 49152 + -13,-4: + 0: 61440 + -13,-3: + 0: 65535 + 15,3: + 0: 15 + 20,3: + 0: 3 + 16,-3: + 0: 61440 + 18,-3: + 0: 32768 + 19,-3: + 0: 28672 + 16,3: + 0: 255 + 17,3: + 0: 3 + 18,3: + 0: 142 + 19,3: + 0: 127 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -1228,10 +1364,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.14996 + temperature: 235 moles: - - 20.078888 - - 75.53487 + - 21.824879 + - 82.10312 - 0 - 0 - 0 @@ -1315,501 +1451,1067 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 677: 32,17 - 678: 34,17 - 679: 36,17 - 680: 38,17 - 681: 40,17 - 682: 42,17 - 683: 44,17 + 532: 34,17 + 533: 36,17 + 534: 38,17 + 535: 40,17 + 536: 42,17 + 537: 44,17 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 588: -12,-30 - node: color: '#FFFFFFFF' id: Arrows decals: - 617: 20,17 - 655: 20,17 - 671: -12,-21 - 672: 20,27 + 508: 20,17 + 523: 20,17 + 527: 20,27 + 589: -12,-29 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Arrows decals: - 656: 22,17 - 673: 22,27 + 524: 22,17 + 528: 22,27 + 796: 46,17 - node: color: '#FFFFFFFF' id: Bot decals: - 610: -35,6 - 611: -30,11 - 618: 30,8 - 619: 30,9 - 669: -6,-27 - 670: -5,-27 + 502: -35,6 + 503: -30,11 + 539: -3,-31 + 809: 31,8 + 810: 31,9 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Bot + decals: + 643: 20,7 + 644: 21,7 + 645: 22,7 + 717: -7,-26 + 718: -6,-26 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Bot decals: - 657: 20,17 - 658: 22,17 + 525: 20,17 + 526: 22,17 - node: color: '#FFFFFFFF' id: BotRight decals: - 56: 19,16 - 57: 19,17 + 49: 19,16 + 50: 19,17 - node: - color: '#52B4E996' + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + decals: + 593: 52,-22 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + decals: + 646: 32,-24 + 647: 33,-25 + 648: 34,-26 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + decals: + 723: -9,-28 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 591: 46,-22 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 724: -10,-28 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 590: 52,-28 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 722: -9,-30 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 592: 46,-28 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 721: -10,-30 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNe + decals: + 607: 51,-22 + 608: 52,-23 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: BrickTileDarkInnerNe + decals: + 649: 33,-26 + 650: 32,-25 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNw + decals: + 602: 47,-22 + 609: 46,-23 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSe + decals: + 603: 51,-28 + 604: 52,-27 + 795: -11,20 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: BrickTileDarkInnerSe + decals: + 655: 6,17 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSw + decals: + 605: 47,-28 + 606: 46,-27 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 596: 53,-26 + 597: 53,-24 + 697: 0,-25 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 725: -9,-29 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 594: 48,-21 + 595: 50,-21 + 692: -6,-23 + 693: -5,-23 + 694: -4,-23 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 732: 12,-14 + 733: 13,-14 + 734: 14,-14 + 735: 15,-14 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 598: 50,-29 + 599: 48,-29 + 792: -8,20 + 793: -9,20 + 794: -10,20 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 651: 10,17 + 652: 9,17 + 653: 8,17 + 654: 7,17 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 736: 12,-18 + 737: 13,-18 + 738: 14,-18 + 739: 15,-18 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 600: 45,-26 + 601: 45,-24 + 698: -2,-25 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 726: -10,-29 + - node: + zIndex: 2 + color: '#D381C9FF' id: BrickTileSteelCornerNe decals: - 635: -1,12 - 636: -1,12 + 720: -6,-26 - node: - color: '#52B4E996' + color: '#D381C9FF' id: BrickTileSteelCornerNw decals: - 633: 0,12 - 634: 0,12 + 706: -4,-26 - node: - color: '#52B4E996' + color: '#D381C9FF' id: BrickTileSteelCornerSe decals: - 639: -1,13 - 640: -1,13 + 712: -8,-24 - node: - color: '#52B4E996' + color: '#D381C9E5' + id: BrickTileSteelCornerSw + decals: + 568: -12,-32 + - node: + color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 637: 0,13 - 638: 0,13 + 821: 25,19 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: BrickTileSteelEndE + decals: + 630: -36,-11 + 631: -41,-11 + 632: -47,-11 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: BrickTileSteelEndW + decals: + 627: -50,-11 + 628: -43,-11 + 629: -38,-11 + - node: + color: '#D381C9E5' + id: BrickTileSteelInnerNe + decals: + 572: -10,-26 + - node: + color: '#D381C9FF' + id: BrickTileSteelInnerNe + decals: + 696: -6,-27 + 711: 0,-29 + 716: -13,-19 + - node: + color: '#D381C9FF' + id: BrickTileSteelInnerNw + decals: + 705: -4,-27 + 707: -3,-26 + - node: + color: '#D381C9E5' + id: BrickTileSteelInnerSe + decals: + 562: -18,-28 + 565: -7,-33 + - node: + color: '#D381C9FF' + id: BrickTileSteelInnerSe + decals: + 708: 0,-26 + 713: -8,-23 + - node: + color: '#D381C9E5' + id: BrickTileSteelInnerSw + decals: + 544: -12,-20 + 569: -12,-31 + - node: + color: '#D381C9FF' + id: BrickTileSteelLineE + decals: + 709: 0,-27 + 710: 0,-28 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 641: -36,-9 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 767: -7,12 + 768: -7,14 + 769: -7,16 + - node: + color: '#D381C9E5' + id: BrickTileSteelLineN + decals: + 546: -8,-19 + 547: -9,-19 + 548: -10,-19 + 549: -11,-19 + 571: -9,-26 + - node: + color: '#D381C9FF' + id: BrickTileSteelLineN + decals: + 695: -8,-26 + 715: -12,-19 + - node: + zIndex: 2 + color: '#D381C9FF' + id: BrickTileSteelLineN + decals: + 719: -7,-26 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 540: -11,-24 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 633: -49,-11 + 634: -48,-11 + 635: -42,-11 + 636: -37,-11 + - node: + color: '#D381C9E5' + id: BrickTileSteelLineS + decals: + 545: -13,-20 + 558: -17,-28 + 559: -16,-28 + 560: -15,-28 + 561: -14,-28 + 563: -5,-33 + 564: -6,-33 + 567: -11,-32 + 570: -13,-31 + - node: + color: '#D381C9FF' + id: BrickTileSteelLineS + decals: + 714: -9,-24 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 665: 57,5 + 666: 56,5 + 818: 26,19 + 819: 27,19 + 820: 28,19 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 637: -48,-11 + 638: -49,-11 + 639: -42,-11 + 640: -37,-11 + - node: + color: '#D381C9E5' + id: BrickTileSteelLineW + decals: + 541: -12,-23 + 542: -12,-22 + 543: -12,-21 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 822: 25,20 + 823: 25,21 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 642: -38,-9 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 764: -9,12 + 765: -9,14 + 766: -9,16 + - node: + zIndex: 2 + color: '#EFB34196' + id: BrickTileWhiteCornerSe + decals: + 772: -8,7 + - node: + zIndex: 2 + color: '#52B4E996' + id: BrickTileWhiteCornerSw + decals: + 762: 7,-18 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerSw + decals: + 828: 18,15 + - node: + zIndex: 2 + color: '#EFB34196' + id: BrickTileWhiteCornerSw + decals: + 773: -14,7 + - node: + color: '#52B4E996' + id: BrickTileWhiteEndE + decals: + 679: 49,-12 + - node: + color: '#9FED5896' + id: BrickTileWhiteEndE + decals: + 675: 52,-10 + - node: + color: '#A4610696' + id: BrickTileWhiteEndE + decals: + 682: 52,-8 + - node: + color: '#D381C996' + id: BrickTileWhiteEndE + decals: + 678: 52,-12 + - node: + color: '#D4D4D496' + id: BrickTileWhiteEndE + decals: + 674: 49,-10 + - node: + color: '#EFB34196' + id: BrickTileWhiteEndE + decals: + 667: 49,-8 - node: color: '#334E6DC8' - id: BrickTileWhiteLineE + id: BrickTileWhiteEndN decals: - 666: -8,28 + 669: 57,-8 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteEndN + decals: + 672: 57,-11 + - node: + color: '#334E6DC8' + id: BrickTileWhiteEndS + decals: + 670: 57,-9 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteEndS + decals: + 671: 57,-12 + - node: + color: '#52B4E996' + id: BrickTileWhiteEndW + decals: + 680: 48,-12 + - node: + color: '#9FED5896' + id: BrickTileWhiteEndW + decals: + 676: 51,-10 - node: color: '#A4610696' + id: BrickTileWhiteEndW + decals: + 681: 51,-8 + - node: + color: '#D381C996' + id: BrickTileWhiteEndW + decals: + 677: 51,-12 + - node: + color: '#D4D4D496' + id: BrickTileWhiteEndW + decals: + 673: 48,-10 + - node: + color: '#EFB34196' + id: BrickTileWhiteEndW + decals: + 668: 48,-8 + - node: + zIndex: 2 + color: '#52B4E996' + id: BrickTileWhiteInnerSe + decals: + 748: 19,-13 + - node: + color: '#A4610696' + id: BrickTileWhiteInnerSe + decals: + 826: 22,15 + - node: + zIndex: 2 + color: '#52B4E996' + id: BrickTileWhiteInnerSw + decals: + 747: 17,-13 + - node: + color: '#A4610696' + id: BrickTileWhiteInnerSw + decals: + 827: 19,15 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: BrickTileWhiteInnerSw + decals: + 743: 20,-18 + - node: + zIndex: 2 + color: '#52B4E996' id: BrickTileWhiteLineE decals: - 664: -8,30 + 745: 19,-14 - node: + zIndex: 2 color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 665: -8,29 + 752: 0,12 + 753: 0,13 + 754: 0,14 + 755: 0,11 - node: + zIndex: 2 color: '#EFB34196' id: BrickTileWhiteLineE decals: - 663: -8,31 + 774: -8,8 + - node: + zIndex: 2 + color: '#9FED5896' + id: BrickTileWhiteLineN + decals: + 776: -20,-11 + 777: -19,-11 + 778: -18,-11 + - node: + color: '#A4610696' + id: BrickTileWhiteLineN + decals: + 814: 26,10 + 815: 27,10 - node: + zIndex: 2 + color: '#52B4E996' + id: BrickTileWhiteLineS + decals: + 756: 8,-18 + 757: 9,-18 + 763: 10,-18 + - node: + color: '#A4610696' + id: BrickTileWhiteLineS + decals: + 816: 26,8 + 817: 27,8 + 824: 24,15 + 825: 23,15 + 831: 26,15 + 832: 27,15 + 833: 28,15 + - node: + zIndex: 2 + color: '#EFB34196' + id: BrickTileWhiteLineS + decals: + 770: -9,7 + 771: -13,7 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + decals: + 740: 17,-18 + 741: 18,-18 + 742: 19,-18 + - node: + zIndex: 2 color: '#52B4E996' id: BrickTileWhiteLineW decals: - 662: -6,31 + 746: 17,-14 + 758: 7,-17 + 759: 7,-16 + 760: 7,-15 + 761: 7,-14 - node: - color: '#9FED5896' + color: '#A4610696' id: BrickTileWhiteLineW decals: - 660: -6,29 + 829: 18,16 + 830: 18,17 - node: - color: '#D381C996' + zIndex: 2 + color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 661: -6,30 + 749: -1,12 + 750: -1,13 + 751: -1,14 - node: - color: '#D4D4D496' + color: '#EFB34196' + id: BrickTileWhiteLineW + decals: + 838: 48,-6 + 839: 48,-5 + 840: 48,-4 + 841: 48,-3 + - node: + zIndex: 2 + color: '#EFB34196' id: BrickTileWhiteLineW decals: - 659: -6,28 + 775: -14,8 - node: color: '#FFFFFFFF' id: Bushf1 decals: - 426: 49.70676,-26.348543 - 427: 45.878635,-24.817293 - 428: 47.878635,-24.286043 - 429: 47.98801,-22.239168 - 430: 50.01926,-24.348543 + 359: 49.70676,-26.348543 + 360: 45.878635,-24.817293 + 361: 47.878635,-24.286043 + 362: 47.98801,-22.239168 + 363: 50.01926,-24.348543 - node: color: '#FFFFFFFF' id: Bushf2 decals: - 431: 48.534885,-26.832918 + 364: 48.534885,-26.832918 - node: color: '#FFFFFFFF' id: Bushi1 decals: - 425: 50.61301,-24.082918 + 358: 50.61301,-24.082918 - node: color: '#FFFFFFFF' id: Bushi2 decals: - 423: 46.11301,-26.098543 - 424: 47.73801,-24.957918 + 356: 46.11301,-26.098543 + 357: 47.73801,-24.957918 - node: color: '#FFFFFFFF' id: Bushi3 decals: - 421: 49.941135,-27.348543 - 422: 46.05051,-23.989168 + 354: 49.941135,-27.348543 + 355: 46.05051,-23.989168 - node: color: '#FFFFFFFF' id: Bushi4 decals: - 418: 47.61301,-25.629793 - 419: 48.08176,-27.989168 - 420: 51.878635,-25.864168 + 351: 47.61301,-25.629793 + 352: 48.08176,-27.989168 + 353: 51.878635,-25.864168 - node: color: '#FFFFFFFF' id: Bushk1 decals: - 452: 51.01926,-26.036043 - 453: 46.972385,-23.754793 - 454: 48.61301,-26.082918 + 385: 51.01926,-26.036043 + 386: 46.972385,-23.754793 + 387: 48.61301,-26.082918 - node: color: '#FFFFFFFF' id: Bushm2 decals: - 446: 50.503635,-26.161043 - 447: 46.36301,-25.192293 + 379: 50.503635,-26.161043 + 380: 46.36301,-25.192293 - node: color: '#FFFFFFFF' id: Bushm3 decals: - 448: 48.941135,-27.754793 - 449: 48.05051,-25.379793 + 381: 48.941135,-27.754793 + 382: 48.05051,-25.379793 - node: color: '#FFFFFFFF' id: Bushm4 decals: - 450: 49.89426,-25.567293 - 451: 51.23801,-23.036043 + 383: 49.89426,-25.567293 + 384: 51.23801,-23.036043 + - node: + color: '#FFFFFFFF' + id: Caution + decals: + 691: 58,-5 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Caution decals: - 143: 53,2 + 124: 53,2 - node: color: '#52B4E996' id: CheckerNWSE decals: - 478: 19,-19 - 479: 21,-8 - 480: 21,-7 - 481: 21,-6 - 482: 21,-5 - 483: 22,-8 - 484: 22,-7 - 485: 22,-6 - 486: 22,-5 - 487: 23,-8 - 488: 23,-7 - 489: 23,-6 - 490: 23,-5 - 491: 24,-8 - 492: 24,-7 - 493: 24,-6 - 494: 24,-5 + 394: 21,-8 + 395: 21,-7 + 396: 21,-6 + 397: 21,-5 + 398: 22,-8 + 399: 22,-7 + 400: 22,-6 + 401: 22,-5 + 402: 23,-8 + 403: 23,-7 + 404: 23,-6 + 405: 23,-5 + 406: 24,-8 + 407: 24,-7 + 408: 24,-6 + 409: 24,-5 - node: color: '#D381C996' id: CheckerNWSE decals: - 562: -3,-23 - 563: -4,-23 - 564: -5,-23 - 565: -6,-23 - 566: -4,-22 + 458: -3,-23 - node: color: '#D4D4D428' id: CheckerNWSE decals: - 575: -40,4 - 576: -40,5 - 577: -40,6 - 578: -36,4 - 579: -36,5 - 580: -36,6 - 591: -37,0 - 592: -37,1 - 593: -37,2 - 594: -37,8 - 595: -37,9 - 596: -37,10 - 612: -37,-9 - 613: -37,-8 - 614: -37,-7 - 615: -37,-6 - 616: -37,-5 + 467: -40,4 + 468: -40,5 + 469: -40,6 + 470: -36,4 + 471: -36,5 + 472: -36,6 + 483: -37,0 + 484: -37,1 + 485: -37,2 + 486: -37,8 + 487: -37,9 + 488: -37,10 + 504: -37,-8 + 505: -37,-7 + 506: -37,-6 + 507: -37,-5 - node: color: '#FFFFFFFF' id: Delivery decals: - 667: -6,-29 - 668: -5,-29 + 566: -8,-33 + 700: -1,-31 - node: color: '#FFFFFFFF' id: DirtHeavy decals: - 379: -16,10 - 380: -17,11 + 312: -16,10 + 313: -17,11 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 518: -24,-25 - node: cleanable: True + zIndex: 2 color: '#FFFFFFFF' id: DirtHeavy decals: - 650: -24,-25 + 780: -20,10 + 784: -20,9 + 785: -18,9 + - node: + cleanable: True + zIndex: 2 + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 783: -20,8 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 316: -18,10 + 317: -17,9 - node: + cleanable: True color: '#FFFFFFFF' id: DirtLight decals: - 383: -18,10 - 384: -17,9 + 53: 27,16 + 54: 26,17 + 55: 23,17 + 56: 24,16 + 57: 15,7 + 58: 14,7 + 59: 16,9 + 60: 15,9 + 61: 16,10 + 62: 20,13 + 63: 21,13 + 64: 20,14 + 65: 19,13 + 66: 18,11 + 67: 29,5 + 68: 29,6 + 69: 27,3 + 70: 50,1 + 71: 42,9 + 72: 46,7 + 74: 36,5 + 75: 29,-5 + 76: 30,-5 + 77: 34,-5 + 78: 33,0 + 79: 7,5 + 126: 52,1 + 127: 53,3 + 128: 57,4 + 129: 45,5 + 130: 35,2 + 489: -40,0 + 490: -36,1 + 491: -38,7 + 492: -40,8 + 493: -38,-4 + 494: -36,-8 + 495: -24,-9 + 496: -24,3 + 497: -25,2 + 498: -7,3 + 500: -36,8 + 501: -38,9 + 509: -23,-24 + 510: -25,-23 + 511: -23,-22 + 512: -25,-25 + 513: -24,-24 + 514: -24,-22 - node: cleanable: True + zIndex: 2 color: '#FFFFFFFF' id: DirtLight decals: - 62: 27,16 - 63: 28,15 - 64: 26,17 - 65: 23,17 - 66: 24,16 - 67: 22,15 - 68: 15,7 - 69: 14,7 - 70: 16,9 - 71: 15,9 - 72: 16,10 - 73: 20,13 - 74: 21,13 - 75: 20,14 - 76: 20,15 - 77: 19,13 - 78: 18,11 - 79: 29,5 - 80: 29,6 - 81: 27,3 - 82: 50,1 - 83: 42,9 - 84: 46,7 - 86: 36,5 - 87: 29,-5 - 88: 30,-5 - 89: 34,-5 - 90: 33,0 - 91: 7,5 - 149: 52,1 - 150: 53,3 - 151: 55,3 - 152: 57,4 - 153: 45,5 - 154: 35,2 - 597: -40,0 - 598: -36,1 - 599: -38,7 - 600: -40,8 - 601: -38,-4 - 602: -36,-8 - 603: -24,-9 - 604: -24,3 - 605: -25,2 - 606: -7,3 - 608: -36,8 - 609: -38,9 - 641: -23,-24 - 642: -25,-23 - 643: -23,-22 - 644: -25,-25 - 645: -24,-24 - 646: -24,-22 + 781: -19,9 - node: color: '#FFFFFFFF' id: DirtMedium decals: - 381: -17,10 - 382: -18,8 + 314: -17,10 + 315: -18,8 - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: - 58: 26,15 - 59: 26,17 - 60: 27,15 - 61: 24,17 - 85: 37,6 - 147: 53,1 - 148: 55,4 - 607: -35,8 - 647: -23,-25 - 648: -25,-22 - 649: -25,-24 + 51: 26,17 + 52: 24,17 + 73: 37,6 + 125: 53,1 + 499: -35,8 + 515: -23,-25 + 516: -25,-22 + 517: -25,-24 + - node: + cleanable: True + zIndex: 2 + color: '#FFFFFFFF' + id: DirtMedium + decals: + 779: -19,10 + 782: -19,8 - node: color: '#FFFFFFFF' id: Flowersbr2 decals: - 432: 48.80051,-27.911043 - 433: 48.159885,-27.239168 - 434: 51.597385,-24.270418 - 435: 51.86301,-24.895418 - 436: 47.159885,-23.098543 + 365: 48.80051,-27.911043 + 366: 48.159885,-27.239168 + 367: 51.597385,-24.270418 + 368: 51.86301,-24.895418 + 369: 47.159885,-23.098543 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: - 437: 46.566135,-25.036043 - 438: 47.11301,-25.645418 - 439: 50.80051,-23.317293 + 370: 46.566135,-25.036043 + 371: 47.11301,-25.645418 + 372: 50.80051,-23.317293 - node: color: '#FFFFFFFF' id: Flowersy1 decals: - 440: 50.80051,-26.098543 - 441: 50.097385,-26.239168 - 442: 47.753635,-26.489168 - 443: 49.95676,-22.848543 - 444: 47.628635,-23.707918 - 445: 50.503635,-26.739168 + 373: 50.80051,-26.098543 + 374: 50.097385,-26.239168 + 375: 47.753635,-26.489168 + 376: 49.95676,-22.848543 + 377: 47.628635,-23.707918 + 378: 50.503635,-26.739168 - node: color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 164: 13,-7 - 517: 10,-7 - 518: 9,-7 - 534: 10,-10 - 535: 10,-9 - 536: 9,-10 - 537: 10,-11 - 538: 11,-10 - 539: 9,-2 - 540: 9,-3 - 541: 10,-2 - 542: 9,-1 - 543: 8,-2 + 140: 13,-7 + 425: 10,-7 + 426: 9,-7 + 442: 10,-10 + 443: 10,-9 + 444: 9,-10 + 445: 10,-11 + 446: 11,-10 - node: - color: '#D381C996' + zIndex: 2 + color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 204: 0,-21 - 205: 0,-20 - 215: -13,-21 - 216: -13,-20 + 727: 9,-3 + 728: 9,-2 + 729: 10,-2 + 730: 8,-2 + 731: 9,-1 - node: color: '#DE3A3A96' id: FullTileOverlayGreyscale decals: - 133: -2,10 - 134: -1,10 - 135: 0,10 + 118: -2,10 + 119: -1,10 + 120: 0,10 - node: color: '#EFB34196' id: FullTileOverlayGreyscale decals: - 292: 36,3 - 293: 36,4 - 294: 36,5 - 385: 30,3 + 231: 36,3 + 232: 36,4 + 233: 36,5 + 318: 30,3 - node: color: '#FFFFFFFF' id: Grassb1 decals: - 409: 47.034885,-26.332918 - 410: 48.159885,-27.364168 - 411: 51.01926,-23.629793 + 342: 47.034885,-26.332918 + 343: 48.159885,-27.364168 + 344: 51.01926,-23.629793 - node: color: '#FFFFFFFF' id: Grassb2 decals: - 407: 51.11301,-24.739168 - 408: 46.409885,-25.489168 - 417: 49.409885,-27.004793 + 340: 51.11301,-24.739168 + 341: 46.409885,-25.489168 + 350: 49.409885,-27.004793 - node: color: '#FFFFFFFF' id: Grassb3 decals: - 412: 50.98801,-27.020418 - 413: 49.972385,-26.176668 + 345: 50.98801,-27.020418 + 346: 49.972385,-26.176668 - node: color: '#FFFFFFFF' id: Grassb4 decals: - 414: 47.23801,-23.957918 - 415: 46.409885,-24.301668 + 347: 47.23801,-23.957918 + 348: 46.409885,-24.301668 - node: color: '#FFFFFFFF' id: Grassb5 decals: - 416: 48.347385,-26.270418 + 349: 48.347385,-26.270418 - node: color: '#FFFFFFFF' id: Grassd1 decals: - 386: 50.628635,-26.192293 - 387: 46.58176,-24.504793 - 388: 47.034885,-25.473543 - 389: 50.01926,-22.832918 - 390: 50.48801,-23.114168 - 391: 48.503635,-27.504793 + 319: 50.628635,-26.192293 + 320: 46.58176,-24.504793 + 321: 47.034885,-25.473543 + 322: 50.01926,-22.832918 + 323: 50.48801,-23.114168 + 324: 48.503635,-27.504793 - node: color: '#FFFFFFFF' id: Grassd2 decals: - 456: 48.45676,-24.942293 + 389: 48.45676,-24.942293 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 404: 50.253635,-25.504793 - 405: 49.89426,-27.926668 - 406: 52.159885,-24.020418 + 337: 50.253635,-25.504793 + 338: 49.89426,-27.926668 + 339: 52.159885,-24.020418 - node: color: '#FFFFFFFF' id: Grasse1 decals: - 399: 46.20676,-25.754793 - 400: 47.034885,-24.598543 - 401: 51.48801,-25.051668 - 402: 50.45676,-26.801668 - 403: 49.64426,-25.004793 + 332: 46.20676,-25.754793 + 333: 47.034885,-24.598543 + 334: 51.48801,-25.051668 + 335: 50.45676,-26.801668 + 336: 49.64426,-25.004793 - node: color: '#FFFFFFFF' id: Grasse2 decals: - 396: 50.86301,-24.786043 - 397: 51.222385,-25.645418 - 398: 47.14426,-26.770418 + 329: 50.86301,-24.786043 + 330: 51.222385,-25.645418 + 331: 47.14426,-26.770418 - node: color: '#FFFFFFFF' id: Grasse3 decals: - 392: 49.222385,-27.411043 - 393: 48.11301,-26.239168 - 394: 47.08176,-23.395418 - 395: 51.36301,-24.379793 + 325: 49.222385,-27.411043 + 326: 48.11301,-26.239168 + 327: 47.08176,-23.395418 + 328: 51.36301,-24.379793 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale decals: - 155: 19,-5 - 156: 18,-5 - 157: 17,-5 - 158: 16,-5 - 159: 15,-5 - 160: 14,-5 - 190: 6,1 - 191: 7,1 - 192: 8,1 - 193: 9,1 - 194: 10,1 - 195: 11,1 - 519: 9,-8 - 520: 10,-8 - 521: 11,-8 + 131: 19,-5 + 132: 18,-5 + 133: 17,-5 + 134: 16,-5 + 135: 15,-5 + 136: 14,-5 + 160: 6,1 + 161: 7,1 + 162: 8,1 + 163: 9,1 + 164: 10,1 + 165: 11,1 + 427: 9,-8 + 428: 10,-8 + 429: 11,-8 - node: color: '#A4610696' id: HalfTileOverlayGreyscale @@ -1818,78 +2520,57 @@ entities: 23: 14,12 24: 15,12 25: 16,12 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale - decals: - 206: -8,-18 - 207: -9,-18 - 208: -10,-18 - 209: -11,-18 - 210: -12,-18 - 224: -15,-18 - 225: -16,-18 - 226: -17,-18 - 227: -18,-18 - 461: -2,-14 - 462: -3,-14 - 466: -5,-13 - 620: -11,-26 - 621: -12,-26 - 622: -10,-26 - 623: -9,-26 - 630: -6,-27 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale decals: - 123: -11,11 - 124: -12,11 - 125: -13,11 - 126: -14,11 - 247: 0,5 - 248: -1,5 - 249: -2,5 - 250: -4,5 - 251: -3,5 - 252: -7,5 - 253: -8,5 - 254: -9,5 - 255: -10,5 - 256: -11,5 - 257: -12,5 - 258: -13,5 - 259: -14,5 - 260: -15,5 - 261: -16,5 - 262: -17,5 - 263: -18,5 + 108: -11,11 + 109: -12,11 + 110: -13,11 + 111: -14,11 + 186: 0,5 + 187: -1,5 + 188: -2,5 + 189: -4,5 + 190: -3,5 + 191: -7,5 + 192: -8,5 + 193: -9,5 + 194: -10,5 + 195: -11,5 + 196: -12,5 + 197: -13,5 + 198: -14,5 + 199: -15,5 + 200: -16,5 + 201: -17,5 + 202: -18,5 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale decals: 35: 30,-2 - 307: 49,5 - 308: 48,5 - 309: 47,5 - 310: 46,5 - 311: 45,5 - 316: 43,9 - 318: 42,9 - 323: 41,6 - 324: 40,6 - 325: 39,6 - 326: 38,6 + 241: 49,5 + 242: 48,5 + 243: 47,5 + 244: 46,5 + 245: 45,5 + 250: 43,9 + 252: 42,9 + 257: 41,6 + 258: 40,6 + 259: 39,6 + 260: 38,6 - node: color: '#FFD886FF' id: HalfTileOverlayGreyscale decals: - 179: 19,1 - 180: 18,1 - 181: 17,1 - 182: 16,1 - 183: 15,1 - 184: 14,1 + 149: 19,1 + 150: 18,1 + 151: 17,1 + 152: 16,1 + 153: 15,1 + 154: 14,1 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 @@ -1902,52 +2583,58 @@ entities: 14: 7,28 15: 8,28 16: 9,28 - 241: 5,30 - 242: 4,30 - 243: 3,30 - 244: 2,30 - 245: 1,30 + 180: 5,30 + 181: 4,30 + 182: 3,30 + 183: 2,30 + 184: 1,30 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 decals: - 511: 11,-6 - 512: 10,-6 - 513: 9,-6 - 514: 8,-6 - 515: 7,-6 - 516: 6,-6 - 527: 11,-12 - 528: 10,-12 - 529: 9,-12 - 549: 15,-12 - 550: 16,-12 + 419: 11,-6 + 420: 10,-6 + 421: 9,-6 + 422: 8,-6 + 423: 7,-6 + 424: 6,-6 + 435: 11,-12 + 436: 10,-12 + 437: 9,-12 + 452: 15,-12 + 453: 16,-12 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + decals: + 573: -17,-19 + 574: -16,-19 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 decals: - 104: -7,10 - 105: -8,10 - 106: -9,10 - 107: -10,10 - 108: -11,10 - 109: -12,10 - 110: -13,10 - 111: -14,10 - 130: -4,10 - 131: -3,10 - 282: -13,13 - 283: -14,13 - 284: -15,13 + 89: -7,10 + 90: -8,10 + 91: -9,10 + 92: -10,10 + 93: -11,10 + 94: -12,10 + 95: -13,10 + 96: -14,10 + 115: -4,10 + 116: -3,10 + 221: -13,13 + 222: -14,13 + 223: -15,13 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale180 decals: - 230: 34,-5 - 231: 33,-5 - 232: 32,-5 - 233: 31,-5 - 234: 30,-5 + 169: 34,-5 + 170: 33,-5 + 171: 32,-5 + 172: 31,-5 + 173: 30,-5 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 @@ -1956,37 +2643,32 @@ entities: 6: 0,24 7: 0,25 8: 0,26 - 238: 6,29 - 355: 1,16 - 356: 1,17 - 357: 1,18 - 358: 1,19 - 359: 1,20 - 360: 1,21 - 361: 6,7 - 362: 6,8 - 363: 6,9 - 364: 6,10 - 365: 6,11 + 177: 6,29 + 288: 1,16 + 289: 1,17 + 290: 1,18 + 291: 1,19 + 292: 1,20 + 293: 1,21 + 294: 6,7 + 295: 6,8 + 296: 6,9 + 297: 6,10 + 298: 6,11 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 decals: - 162: 14,-6 - 163: 14,-7 - 174: 7,-18 - 175: 7,-17 - 176: 7,-16 - 177: 7,-15 - 178: 7,-14 - 530: 6,-12 - 531: 6,-11 - 532: 6,-9 - 533: 6,-8 - 544: 14,-8 - 545: 14,-9 - 546: 14,-10 - 547: 14,-11 + 138: 14,-6 + 139: 14,-7 + 438: 6,-12 + 439: 6,-11 + 440: 6,-9 + 441: 6,-8 + 447: 14,-8 + 448: 14,-9 + 449: 14,-10 + 450: 14,-11 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 @@ -1995,34 +2677,31 @@ entities: 18: 12,10 19: 12,11 20: 12,12 - 268: 12,6 - 269: 12,7 + 207: 12,6 + 208: 12,7 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 decals: - 212: -12,-19 - 213: -12,-20 - 214: -12,-21 - 467: -6,-18 - 468: -6,-17 - 469: -6,-16 - 470: -6,-15 - 471: -6,-14 + 578: 2,-31 + 579: 2,-30 + 580: 2,-29 + 581: 2,-28 + 582: 2,-27 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 decals: - 95: -6,7 - 96: -6,8 - 97: -6,6 - 98: -6,9 - 116: -10,12 - 117: -10,13 - 118: -10,14 - 119: -10,15 - 120: -10,16 - 121: -10,17 + 80: -6,7 + 81: -6,8 + 82: -6,6 + 83: -6,9 + 101: -10,12 + 102: -10,13 + 103: -10,14 + 104: -10,15 + 105: -10,16 + 106: -10,17 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale270 @@ -2037,117 +2716,85 @@ entities: 33: 29,-2 37: 31,-1 38: 31,0 - 286: 31,6 - 295: 37,2 - 296: 37,3 - 297: 37,4 - 298: 37,5 - 299: 37,6 - 300: 55,0 - 301: 55,1 - 302: 55,2 - 303: 55,3 - 304: 55,4 - 320: 42,8 - 321: 42,7 + 225: 31,6 + 234: 37,2 + 235: 37,3 + 236: 37,4 + 237: 37,5 + 238: 37,6 + 254: 42,8 + 255: 42,7 + 664: 55,2 - node: color: '#FFD886FF' id: HalfTileOverlayGreyscale270 decals: - 186: 14,0 - 187: 14,-1 - 188: 14,-2 - 189: 14,-3 + 156: 14,0 + 157: 14,-1 + 158: 14,-2 + 159: 14,-3 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 decals: - 237: 0,29 - 349: 5,16 - 350: 5,17 - 351: 5,18 - 352: 5,19 - 353: 5,20 - 354: 5,21 - 366: 10,7 - 367: 10,8 - 368: 10,9 - 369: 10,10 - 370: 10,11 + 176: 0,29 + 282: 5,16 + 283: 5,17 + 284: 5,18 + 285: 5,19 + 286: 5,20 + 287: 5,21 + 299: 10,7 + 300: 10,8 + 301: 10,9 + 302: 10,10 + 303: 10,11 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 decals: - 165: 12,-7 - 166: 12,-6 - 167: 12,-5 - 168: 12,-4 - 169: 12,-3 - 170: 12,-2 - 171: 12,-1 - 172: 12,0 - 173: 12,1 - 523: 12,-9 - 524: 12,-10 - 525: 12,-11 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale90 - decals: - 136: -20,7 - 137: -20,8 - 138: -20,9 - 139: -20,10 + 141: 12,-6 + 142: 12,-5 + 143: 12,-4 + 144: 12,-3 + 145: 12,-2 + 146: 12,-1 + 147: 12,0 + 148: 12,1 + 431: 12,-9 + 432: 12,-10 + 433: 12,-11 - node: color: '#A4610696' id: HalfTileOverlayGreyscale90 decals: - 53: 16,11 - 54: 16,10 - 55: 16,9 - 270: 16,7 - 271: 16,6 - 272: 24,13 - 273: 24,12 - 274: 24,11 - 275: 24,10 - 276: 24,9 - 277: 24,8 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale90 - decals: - 197: -1,-18 - 198: -1,-17 - 199: -1,-16 - 200: -1,-15 - 201: -1,-14 - 202: -1,-21 - 203: -1,-20 - 217: -14,-23 - 218: -14,-22 - 219: -14,-21 - 220: -14,-20 - 221: -14,-19 - 222: -14,-18 - 631: -5,-32 - 632: -5,-33 + 46: 16,11 + 47: 16,10 + 48: 16,9 + 209: 16,7 + 210: 16,6 + 211: 24,13 + 212: 24,12 + 213: 24,11 + 214: 24,10 + 215: 24,9 + 216: 24,8 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 decals: - 99: -5,6 - 100: -5,7 - 101: -5,8 - 102: -5,9 - 112: -3,11 - 113: -3,12 - 114: -3,13 - 115: -3,14 - 278: -12,13 - 279: -12,14 - 280: -12,15 - 281: -12,16 + 84: -5,6 + 85: -5,7 + 86: -5,8 + 87: -5,9 + 97: -3,11 + 98: -3,12 + 99: -3,13 + 100: -3,14 + 217: -12,13 + 218: -12,14 + 219: -12,15 + 220: -12,16 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale90 @@ -2158,17 +2805,85 @@ entities: 42: 35,-2 43: 35,-1 44: 35,0 - 287: 35,2 - 288: 35,3 - 289: 35,4 - 290: 35,5 - 291: 35,6 - 305: 50,5 - 313: 44,6 - 329: 29,3 - 330: 29,4 - 331: 29,5 - 332: 29,6 + 226: 35,2 + 227: 35,3 + 228: 35,4 + 229: 35,5 + 230: 35,6 + 239: 50,5 + 247: 44,6 + 263: 29,3 + 264: 29,4 + 265: 29,5 + 266: 29,6 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineN + decals: + 538: -16,-25 + - node: + color: '#D381C9E5' + id: MiniTileSteelCornerSe + decals: + 550: -14,-23 + - node: + color: '#D381C9E5' + id: MiniTileSteelCornerSw + decals: + 556: -18,-24 + - node: + color: '#D381C9E5' + id: MiniTileSteelInnerSe + decals: + 551: -15,-23 + - node: + color: '#D381C9E5' + id: MiniTileSteelInnerSw + decals: + 557: -17,-24 + - node: + color: '#D381C9E5' + id: MiniTileSteelLineE + decals: + 552: -14,-22 + - node: + color: '#D381C9E5' + id: MiniTileSteelLineW + decals: + 553: -18,-21 + 554: -18,-22 + 555: -18,-23 + - node: + color: '#3AB3DA99' + id: MiniTileWhiteInnerSe + decals: + 619: -51,-12 + 620: -44,-12 + - node: + color: '#3AB3DA99' + id: MiniTileWhiteInnerSw + decals: + 618: -46,-12 + 621: -53,-12 + 624: -39,-12 + - node: + color: '#3AB3DA99' + id: MiniTileWhiteLineS + decals: + 610: -50,-12 + 611: -49,-12 + 612: -48,-12 + 613: -47,-12 + 614: -43,-12 + 615: -42,-12 + 616: -41,-12 + 617: -40,-12 + - node: + color: '#3AB3DA99' + id: MiniTileWhiteLineW + decals: + 622: -54,-11 + 623: -54,-10 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale @@ -2176,397 +2891,397 @@ entities: 0: 2,23 1: 2,24 2: 2,25 - 236: 6,28 + 175: 6,28 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale decals: - 196: 12,1 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale - decals: - 223: -14,-18 - 460: -1,-14 + 166: 12,1 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale decals: - 586: -36,3 - 587: -37,3 - 588: -38,3 - 589: -39,3 - 590: -40,3 + 478: -36,3 + 479: -37,3 + 480: -38,3 + 481: -39,3 + 482: -40,3 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale decals: - 122: -10,11 - 127: -14,10 - 265: 1,5 - 266: -6,5 + 107: -10,11 + 112: -14,10 + 204: 1,5 + 205: -6,5 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale decals: 36: 31,-2 - 306: 50,5 - 317: 44,9 - 322: 42,6 + 240: 50,5 + 251: 44,9 + 256: 42,6 + 663: 55,1 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 decals: - 239: 0,30 + 178: 0,30 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 decals: - 495: 19,-18 - 496: 19,-17 - 497: 19,-16 - 498: 19,-15 - 499: 19,-14 - 500: 19,-13 - 501: 19,-12 - 558: 19,-11 - 559: 19,-10 - 560: 19,-9 - 561: 19,-8 + 454: 19,-11 + 455: 19,-10 + 456: 19,-9 + 457: 19,-8 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale180 decals: - 52: 16,12 + 45: 16,12 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale180 decals: - 581: -37,7 - 582: -38,7 - 583: -39,7 - 584: -40,7 - 585: -36,7 + 473: -37,7 + 474: -38,7 + 475: -39,7 + 476: -40,7 + 477: -36,7 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 decals: - 129: -5,10 + 114: -5,10 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale180 decals: - 228: 29,-5 - 314: 44,7 + 167: 29,-5 + 248: 44,7 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 decals: - 240: 6,30 + 179: 6,30 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 decals: - 161: 14,-5 - 510: 12,-6 - 551: 17,-12 - 552: 17,-13 - 553: 17,-14 - 554: 17,-15 - 555: 17,-16 - 556: 17,-17 - 557: 17,-18 + 137: 14,-5 + 418: 12,-6 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale270 decals: - 211: -12,-18 + 576: -18,-18 + 577: -15,-19 + 583: 2,-26 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 decals: - 103: -6,10 - 128: -14,11 - 285: -12,13 + 88: -6,10 + 113: -14,11 + 224: -12,13 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 decals: - 229: 35,-5 - 319: 42,9 + 168: 35,-5 + 253: 42,9 + 662: 55,3 - node: color: '#FFD886FF' id: QuarterTileOverlayGreyscale270 decals: - 185: 14,1 + 155: 14,1 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 decals: 3: 4,24 4: 4,25 - 235: 0,28 - 246: 4,23 + 174: 0,28 + 185: 4,23 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale90 decals: 21: 12,12 - 502: 16,5 - 503: 17,5 - 504: 18,5 - 505: 19,5 - 506: 20,5 - 507: 21,5 - 508: 22,5 - 509: 23,5 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale90 - decals: - 463: -4,-14 + 410: 16,5 + 411: 17,5 + 412: 18,5 + 413: 19,5 + 414: 20,5 + 415: 21,5 + 416: 22,5 + 417: 23,5 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 decals: - 132: -3,10 - 264: -19,5 - 267: -5,5 + 117: -3,10 + 203: -19,5 + 206: -5,5 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 decals: 34: 29,-2 - 312: 44,5 - 315: 44,9 - 327: 37,6 - 328: 50,4 - 333: 28,6 - 334: 27,6 - 335: 26,6 - 336: 25,6 + 246: 44,5 + 249: 44,9 + 261: 37,6 + 262: 50,4 + 267: 28,6 + 268: 27,6 + 269: 26,6 + 270: 25,6 - node: color: '#FFFFFFFF' id: Rock01 decals: - 455: 49.003635,-25.832918 + 388: 49.003635,-25.832918 - node: color: '#FFFFFFFF' id: StandClear decals: - 653: 21,24 + 521: 21,24 + 625: -52,-12 + 626: -45,-12 + 699: 1,-30 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: StandClear decals: - 348: 60,2 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale - decals: - 465: -6,-13 + 281: 60,2 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 526: 12,-12 + 434: 12,-12 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 548: 14,-12 + 451: 14,-12 - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale90 + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale270 decals: - 522: 12,-8 + 575: -18,-19 - node: - color: '#D381C996' + color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 464: -4,-13 - 624: -8,-26 - 629: -5,-27 + 430: 12,-8 - node: color: '#FFFFFFFF' id: WarnBox decals: - 472: -26,24 + 393: -26,24 - node: color: '#FFFFFFFF' - id: WarnCornerSmallNW + id: WarnCornerSmallNE decals: - 684: 39,13 + 808: 36,13 - node: - angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 685: 39,15 + 807: 40,13 - node: - angle: 3.141592653589793 rad color: '#FFFFFFFF' - id: WarnCornerSmallNW - decals: - 686: 35,15 - - node: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: WarnCornerSmallNW + id: WarnCornerSmallSE decals: - 687: 35,13 + 806: 36,15 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 625: -38,-9 - - node: - color: '#FFFFFFFF' - id: WarnLineE - decals: - 691: 35,14 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarnLineE - decals: - 692: 36,13 - 693: 37,13 - 694: 38,13 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: WarnLineE - decals: - 695: 39,14 + 805: 40,15 - node: - angle: 4.71238898038469 rad color: '#FFFFFFFF' id: WarnLineE decals: - 688: 36,15 - 689: 37,15 - 690: 38,15 + 584: -15,-30 + 585: -15,-31 + 683: 54,-4 + 684: 54,-5 + 685: 54,-6 + 804: 36,14 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 674: 20,26 - 675: 21,26 - 676: 22,26 + 529: 20,26 + 530: 21,26 + 531: 22,26 + 686: 56,-4 + 687: 57,-4 + 688: 58,-4 + 689: 59,-4 + 690: 60,-4 + 701: -3,-29 + 702: -2,-29 + 703: -1,-29 + 704: 0,-29 + 797: 39,15 + 798: 38,15 + 799: 37,15 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 626: -38,-10 - 627: -38,-11 - 628: -38,-12 + 586: -17,-31 + 587: -17,-30 + 788: -15,18 + 789: -15,19 + 790: -15,20 + 791: -15,21 + 803: 40,14 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 651: 21,24 - 652: 22,24 - 654: 20,24 + 519: 21,24 + 520: 22,24 + 522: 20,24 + 800: 37,13 + 801: 38,13 + 802: 39,13 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLine decals: - 567: -40,0 - 568: -40,1 - 569: -40,2 - 570: -40,8 - 571: -40,9 - 572: -40,10 + 459: -40,0 + 460: -40,1 + 461: -40,2 + 462: -40,8 + 463: -40,9 + 464: -40,10 - node: color: '#FFFFFFFF' id: WarningLine decals: - 45: 24,15 - 46: 23,15 - 47: 22,15 - 48: 21,15 - 49: 20,15 - 50: 19,15 - 51: 18,15 - 92: -15,18 - 93: -14,18 - 94: -13,18 - 144: 50,-1 - 145: 49,-1 - 146: 48,-1 - 337: 46,7 - 338: 47,7 - 339: 48,7 - 340: 49,7 - 341: 50,7 - 371: 8,7 - 375: 7,7 - 376: 9,7 - 473: -22,-15 - 474: -23,-15 - 475: -24,-15 - 476: -25,-15 - 477: -26,-15 + 271: 46,7 + 272: 47,7 + 273: 48,7 + 274: 49,7 + 275: 50,7 + 304: 8,7 + 308: 7,7 + 309: 9,7 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLine decals: - 140: 53,1 - 141: 53,2 - 142: 53,3 - 342: 60,0 - 343: 60,1 - 344: 60,2 - 345: 60,3 - 346: 60,4 - 347: 60,-1 - 457: -1,16 - 458: -1,17 - 459: -1,18 + 121: 53,1 + 122: 53,2 + 123: 53,3 + 276: 60,0 + 277: 60,1 + 278: 60,2 + 279: 60,3 + 280: 60,4 + 390: -1,16 + 391: -1,17 + 392: -1,18 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: WarningLine decals: - 372: 8,11 + 305: 8,11 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLineCorner decals: - 573: -40,3 + 465: -40,3 - node: color: '#FFFFFFFF' id: WarningLineCorner decals: - 378: 6,7 + 311: 6,7 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: WarningLineCorner decals: - 373: 9,11 + 306: 9,11 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLineCornerFlipped decals: - 574: -40,7 + 466: -40,7 - node: color: '#FFFFFFFF' id: WarningLineCornerFlipped decals: - 377: 10,7 + 310: 10,7 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: WarningLineCornerFlipped decals: - 374: 7,11 + 307: 7,11 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 661: -4,-6 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 786: -37,19 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 660: -4,-7 + 811: 27,10 + 812: 27,9 + 813: 27,8 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 744: 20,-12 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 656: -8,-6 + 657: -7,-6 + 658: -6,-6 + 659: -5,-6 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 834: 37,0 + 835: 38,0 + 836: 39,0 + 837: 40,0 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 787: -36,19 type: DecalGrid - type: OccluderTree - type: SpreaderGrid @@ -2592,34 +3307,124 @@ entities: - pos: 38.38827,-0.43327445 parent: 31 type: Transform - - uid: 4213 - components: - - flags: InContainer - type: MetaData - - parent: 4036 - type: Transform - - canCollide: False - type: Physics - uid: 6684 components: - pos: -37.568184,29.675117 parent: 31 type: Transform + - uid: 7907 + components: + - pos: -11.470391,11.486723 + parent: 31 + type: Transform - proto: AirAlarm entities: - - uid: 354 + - uid: 5107 components: - - rot: 1.5707963267948966 rad - pos: -10.5,-30.5 + - rot: 3.141592653589793 rad + pos: 53.5,-6.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 10900 + - 10958 + - 6294 + - 10906 + - 10907 + - 10930 + - 10959 + - 10929 + - 10908 + - 10961 + - 10909 + - 10960 + - 8384 + type: DeviceNetwork + - devices: + - 10900 + - 10958 + - 6294 + - 10906 + - 10907 + - 10930 + - 10959 + - 10929 + - 10908 + - 10961 + - 10909 + - 10960 + - 8384 + type: DeviceList + - uid: 7104 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,18.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 11091 + - 6910 + - 4279 + - 4267 + - 9965 + - 9966 + type: DeviceNetwork + - devices: + - 11091 + - 6910 + - 4279 + - 4267 + - 9965 + - 9966 + type: DeviceList + - uid: 7345 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-23.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 4013 + - 408 + - 10420 + - 3729 + - 3857 + - 1481 + - 7335 + - 8438 + type: DeviceNetwork + - devices: + - 4013 + - 408 + - 10420 + - 3729 + - 3857 + - 1481 + - 7335 + - 8438 + type: DeviceList + - uid: 7904 + components: + - pos: -2.5,-24.5 parent: 31 type: Transform + - ShutdownSubscribers: + - 2891 + - 2872 + - 7379 + - 10377 + - 10375 + - 4921 + - 3724 + type: DeviceNetwork - devices: - - 9807 - - 9806 - - 9808 - - 9805 - - 7408 - - 7469 + - 2891 + - 2872 + - 7379 + - 10377 + - 10375 + - 4921 + - 3724 type: DeviceList - uid: 8476 components: @@ -2658,8 +3463,22 @@ entities: - 6120 - 6117 - 6118 - - 6129 - - 6130 + type: DeviceList + - uid: 9164 + components: + - rot: 3.141592653589793 rad + pos: 30.5,11.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 9961 + type: DeviceNetwork + - devices: + - 7099 + - 6552 + - 7382 + - 11092 + - 9961 type: DeviceList - uid: 9975 components: @@ -2687,14 +3506,11 @@ entities: - 7211 - 7185 - 9973 - - 745 - 4610 - 4482 - 4480 - 4603 - 4481 - - 4604 - - 4636 type: DeviceList - uid: 9977 components: @@ -2768,32 +3584,6 @@ entities: - 5544 - 7460 type: DeviceList - - uid: 9980 - components: - - pos: -5.5,-18.5 - parent: 31 - type: Transform - - devices: - - 9987 - - 9986 - - 5760 - - 5759 - - 5756 - - 5757 - - 3993 - type: DeviceList - - uid: 9981 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-22.5 - parent: 31 - type: Transform - - devices: - - 7397 - - 5762 - - 7398 - - 10020 - type: DeviceList - uid: 9983 components: - rot: -1.5707963267948966 rad @@ -2801,11 +3591,7 @@ entities: parent: 31 type: Transform - devices: - - 2011 - - 703 - - 704 - 5704 - - 7456 - 4783 - 5698 type: DeviceList @@ -2816,14 +3602,9 @@ entities: parent: 31 type: Transform - devices: - - 9987 - - 9986 - 9988 - 9989 - 9990 - - 2011 - - 703 - - 704 - 1029 - 100 - 5365 @@ -2836,9 +3617,6 @@ entities: parent: 31 type: Transform - devices: - - 9195 - - 9196 - - 9188 - 3977 - 3976 - 3975 @@ -2847,7 +3625,6 @@ entities: - 6151 - 7745 - 7746 - - 9202 - 6169 type: DeviceList - uid: 9998 @@ -2860,7 +3637,6 @@ entities: - 8794 - 8795 - 5765 - - 5992 - 6033 - 6032 - 4701 @@ -2887,7 +3663,6 @@ entities: - 5865 - 5869 - 5864 - - 753 - 716 type: DeviceList - uid: 10003 @@ -2922,30 +3697,6 @@ entities: - 3118 - 1505 type: DeviceList - - uid: 10007 - components: - - anchored: False - rot: 1.5707963267948966 rad - pos: 29.5,11.5 - parent: 31 - type: Transform - - devices: - - 7104 - - 7099 - - 9961 - type: DeviceList - - uid: 10013 - components: - - pos: 26.5,18.5 - parent: 31 - type: Transform - - devices: - - 10014 - - 9965 - - 9966 - - 4279 - - 4267 - type: DeviceList - uid: 10015 components: - rot: 1.5707963267948966 rad @@ -2998,18 +3749,6 @@ entities: - 5606 - 5607 type: DeviceList - - uid: 10019 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-18.5 - parent: 31 - type: Transform - - devices: - - 5637 - - 5638 - - 5648 - - 5653 - type: DeviceList - uid: 10021 components: - rot: -1.5707963267948966 rad @@ -3027,116 +3766,147 @@ entities: - 4525 - 10022 type: DeviceList - - uid: 10024 - components: - - pos: 19.5,-23.5 - parent: 31 - type: Transform - - devices: - - 4038 - - 3961 - - 3982 - - 3984 - - 10025 - type: DeviceList - - uid: 10027 + - uid: 10031 components: - - rot: -1.5707963267948966 rad - pos: 28.5,-15.5 + - rot: 1.5707963267948966 rad + pos: -21.5,-21.5 parent: 31 type: Transform - - devices: - - 4038 - - 3961 - - 6957 - - 4045 - - 4046 - - 10026 - type: DeviceList - - uid: 10028 + - uid: 10238 components: - - rot: 3.141592653589793 rad - pos: 35.5,-8.5 + - rot: 1.5707963267948966 rad + pos: -25.5,-12.5 parent: 31 type: Transform + - ShutdownSubscribers: + - 10406 + - 10407 + - 10239 + - 10315 + - 10314 + - 10313 + - 10240 + - 10241 + - 10242 + type: DeviceNetwork - devices: - - 10029 - - 4046 - - 4002 - - 4003 - - 4045 - - 10030 - - 4015 - - 3992 - - 4613 - - 7178 + - 10406 + - 10407 + - 10239 + - 10315 + - 10314 + - 10313 + - 10240 + - 10241 + - 10242 type: DeviceList - - uid: 10031 + - uid: 10371 components: - rot: 1.5707963267948966 rad - pos: -21.5,-21.5 + pos: -10.5,-32.5 parent: 31 type: Transform + - ShutdownSubscribers: + - 10424 + - 10425 + - 10534 + - 4210 + - 3866 + - 3857 + - 3724 + - 3428 + type: DeviceNetwork - devices: - - 9432 - - 9433 - - 10033 - - 10032 - - 1702 + - 10424 + - 10425 + - 10534 + - 4210 + - 3866 + - 3857 + - 3724 + - 3428 type: DeviceList - - uid: 10036 + - uid: 10373 components: - - rot: -1.5707963267948966 rad - pos: -16.5,23.5 + - pos: -13.5,-20.5 parent: 31 type: Transform + - ShutdownSubscribers: + - 10428 + - 4617 + - 4718 + - 10427 + - 10426 + type: DeviceNetwork - devices: - - 3855 - - 4044 - - 4041 - - 4042 - - 10035 - - 10034 + - 10428 + - 4617 + - 4718 + - 10427 + - 10426 type: DeviceList - - uid: 10038 + - uid: 10408 components: - - rot: 3.141592653589793 rad - pos: -18.5,12.5 + - pos: -10.5,-13.5 parent: 31 type: Transform + - ShutdownSubscribers: + - 10318 + - 10317 + - 10316 + - 10431 + - 10313 + - 10314 + - 10315 + type: DeviceNetwork - devices: - - 10037 - - 328 - - 1015 - - 4044 - - 3855 + - 10318 + - 10317 + - 10316 + - 10431 + - 10313 + - 10314 + - 10315 type: DeviceList - - uid: 10039 + - uid: 11002 components: - - rot: 3.141592653589793 rad - pos: -29.5,-12.5 + - rot: -1.5707963267948966 rad + pos: 13.5,-7.5 parent: 31 type: Transform + - ShutdownSubscribers: + - 4334 + - 4345 + - 5606 + - 11001 + - 5607 + - 10017 + - 11000 + - 673 + - 8940 + type: DeviceNetwork - devices: - - 10040 - - 3968 - - 3996 - - 3952 + - 4334 + - 4345 + - 5606 + - 11001 + - 5607 + - 10017 + - 11000 + - 673 + - 8940 type: DeviceList - - uid: 10043 + - uid: 11098 components: - rot: 3.141592653589793 rad - pos: -12.5,-16.5 + pos: 51.5,14.5 parent: 31 type: Transform + - ShutdownSubscribers: + - 11097 + type: DeviceNetwork - devices: - - 10041 - - 3952 - - 1702 - - 10042 - - 3971 - - 3962 - - 409 + - 11097 type: DeviceList - proto: AirCanister entities: @@ -3201,6 +3971,12 @@ entities: type: Transform - proto: AirlockBrigGlassLocked entities: + - uid: 30 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,9.5 + parent: 31 + type: Transform - uid: 574 components: - pos: -4.5,9.5 @@ -3221,11 +3997,6 @@ entities: - pos: -4.5,6.5 parent: 31 type: Transform - - uid: 5111 - components: - - pos: -10.5,9.5 - parent: 31 - type: Transform - proto: AirlockCaptainGlassLocked entities: - uid: 1494 @@ -3291,9 +4062,9 @@ entities: type: Transform - proto: AirlockChapelLocked entities: - - uid: 7471 + - uid: 10439 components: - - pos: -33.5,17.5 + - pos: -38.5,16.5 parent: 31 type: Transform - proto: AirlockChemistryLocked @@ -3312,9 +4083,9 @@ entities: type: Transform - proto: AirlockChiefMedicalOfficerGlassLocked entities: - - uid: 1485 + - uid: 9582 components: - - pos: 20.5,-14.5 + - pos: 20.5,-11.5 parent: 31 type: Transform - proto: AirlockCommandGlassLocked @@ -3347,11 +4118,22 @@ entities: type: Transform - proto: AirlockCommandLocked entities: - - uid: 9730 + - uid: 92 components: - - pos: -3.5,26.5 + - pos: 9.5,6.5 + parent: 31 + type: Transform + - links: + - 276 + type: DeviceLinkSink + - uid: 116 + components: + - pos: 7.5,6.5 parent: 31 type: Transform + - links: + - 276 + type: DeviceLinkSink - proto: AirlockEngineeringGlassLocked entities: - uid: 598 @@ -3388,9 +4170,9 @@ entities: - pos: 54.5,2.5 parent: 31 type: Transform - - uid: 4464 + - uid: 4440 components: - - pos: 56.5,5.5 + - pos: 53.5,-2.5 parent: 31 type: Transform - uid: 6827 @@ -3419,14 +4201,20 @@ entities: - pos: 15.5,-26.5 parent: 31 type: Transform - - uid: 3852 + - uid: 2050 components: - - pos: -17.5,16.5 + - rot: 3.141592653589793 rad + pos: -32.5,8.5 parent: 31 type: Transform - - uid: 3854 + - uid: 3423 components: - - pos: 23.5,-10.5 + - pos: -11.5,-34.5 + parent: 31 + type: Transform + - uid: 3852 + components: + - pos: -17.5,16.5 parent: 31 type: Transform - uid: 4172 @@ -3434,6 +4222,16 @@ entities: - pos: -0.5,-9.5 parent: 31 type: Transform + - uid: 4405 + components: + - pos: 50.5,-6.5 + parent: 31 + type: Transform + - uid: 4424 + components: + - pos: 55.5,-4.5 + parent: 31 + type: Transform - uid: 4982 components: - name: Northern Solars @@ -3446,6 +4244,17 @@ entities: - pos: 41.5,9.5 parent: 31 type: Transform + - uid: 9592 + components: + - pos: 24.5,-13.5 + parent: 31 + type: Transform + - uid: 9986 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-11.5 + parent: 31 + type: Transform - proto: AirlockExternal entities: - uid: 8456 @@ -3453,11 +4262,6 @@ entities: - pos: -21.5,-26.5 parent: 31 type: Transform - - uid: 8524 - components: - - pos: -28.5,-26.5 - parent: 31 - type: Transform - uid: 8525 components: - pos: -31.5,-26.5 @@ -3465,6 +4269,18 @@ entities: type: Transform - proto: AirlockExternalGlass entities: + - uid: 245 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-26.5 + parent: 31 + type: Transform + - uid: 297 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-26.5 + parent: 31 + type: Transform - uid: 1012 components: - pos: -40.5,2.5 @@ -3480,47 +4296,45 @@ entities: - pos: -40.5,8.5 parent: 31 type: Transform - - uid: 7559 + - uid: 9162 components: - - rot: 1.5707963267948966 rad - pos: 39.5,-13.5 + - pos: -40.5,10.5 parent: 31 type: Transform - - uid: 8026 + - uid: 9290 components: - rot: -1.5707963267948966 rad - pos: -38.5,-9.5 + pos: -13.5,-29.5 parent: 31 type: Transform - - uid: 8296 + - uid: 10127 components: - - rot: -1.5707963267948966 rad - pos: -38.5,-11.5 + - pos: -8.5,-40.5 parent: 31 type: Transform - - uid: 8312 +- proto: AirlockExternalGlassAtmosphericsLocked + entities: + - uid: 3052 components: - - rot: 1.5707963267948966 rad - pos: -35.5,-22.5 + - rot: -1.5707963267948966 rad + pos: 32.5,19.5 parent: 31 type: Transform - - uid: 9162 + - uid: 9068 components: - - pos: -40.5,10.5 + - pos: 31.5,18.5 parent: 31 type: Transform - proto: AirlockExternalGlassCargoLocked entities: - - uid: 4949 + - uid: 6522 components: - - rot: -1.5707963267948966 rad - pos: 27.5,18.5 + - pos: 29.5,20.5 parent: 31 type: Transform - - uid: 7169 + - uid: 9067 components: - - rot: -1.5707963267948966 rad - pos: 29.5,21.5 + - pos: 31.5,23.5 parent: 31 type: Transform - uid: 10094 @@ -3531,6 +4345,48 @@ entities: type: Transform - proto: AirlockExternalGlassEngineeringLocked entities: + - uid: 72 + components: + - rot: 3.141592653589793 rad + pos: 58.5,7.5 + parent: 31 + type: Transform + - uid: 145 + components: + - rot: 3.141592653589793 rad + pos: -24.5,24.5 + parent: 31 + type: Transform + - uid: 151 + components: + - rot: 3.141592653589793 rad + pos: -26.5,24.5 + parent: 31 + type: Transform + - uid: 172 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-31.5 + parent: 31 + type: Transform + - uid: 173 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-30.5 + parent: 31 + type: Transform + - uid: 174 + components: + - rot: 3.141592653589793 rad + pos: 53.5,8.5 + parent: 31 + type: Transform + - uid: 175 + components: + - rot: 3.141592653589793 rad + pos: 61.5,7.5 + parent: 31 + type: Transform - uid: 9974 components: - pos: 53.5,4.5 @@ -3538,6 +4394,18 @@ entities: type: Transform - proto: AirlockExternalGlassLocked entities: + - uid: 182 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-32.5 + parent: 31 + type: Transform + - uid: 183 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-32.5 + parent: 31 + type: Transform - uid: 1594 components: - pos: 16.5,19.5 @@ -3550,16 +4418,14 @@ entities: type: Transform - proto: AirlockExternalGlassShuttleArrivals entities: - - uid: 7080 + - uid: 1755 components: - - rot: -1.5707963267948966 rad - pos: -44.5,-11.5 + - pos: -51.5,-12.5 parent: 31 type: Transform - - uid: 7081 + - uid: 9843 components: - - rot: -1.5707963267948966 rad - pos: -44.5,-9.5 + - pos: -44.5,-12.5 parent: 31 type: Transform - proto: AirlockExternalGlassShuttleEmergencyLocked @@ -3590,32 +4456,13 @@ entities: type: Transform - proto: AirlockExternalGlassShuttleEscape entities: - - uid: 7579 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-13.5 - parent: 31 - type: Transform - - uid: 8311 + - uid: 6947 components: - - rot: 3.141592653589793 rad - pos: -35.5,-20.5 + - pos: -8.5,-42.5 parent: 31 type: Transform - proto: AirlockExternalGlassShuttleLocked entities: - - uid: 9936 - components: - - rot: 3.141592653589793 rad - pos: 33.5,38.5 - parent: 31 - type: Transform - - uid: 9946 - components: - - rot: 3.141592653589793 rad - pos: 35.5,38.5 - parent: 31 - type: Transform - uid: 10087 components: - rot: 3.141592653589793 rad @@ -3628,53 +4475,6 @@ entities: pos: 22.5,28.5 parent: 31 type: Transform -- proto: AirlockExternalLocked - entities: - - uid: 440 - components: - - pos: 58.5,7.5 - parent: 31 - type: Transform - - uid: 5191 - components: - - pos: -24.5,24.5 - parent: 31 - type: Transform - - uid: 5192 - components: - - pos: -26.5,24.5 - parent: 31 - type: Transform - - uid: 5258 - components: - - pos: 15.5,-30.5 - parent: 31 - type: Transform - - uid: 5293 - components: - - pos: 17.5,-31.5 - parent: 31 - type: Transform - - uid: 6296 - components: - - pos: 53.5,8.5 - parent: 31 - type: Transform - - uid: 8130 - components: - - pos: 61.5,7.5 - parent: 31 - type: Transform - - uid: 9444 - components: - - pos: -21.5,-32.5 - parent: 31 - type: Transform - - uid: 9445 - components: - - pos: -24.5,-32.5 - parent: 31 - type: Transform - proto: AirlockFreezer entities: - uid: 599 @@ -3718,6 +4518,16 @@ entities: - pos: 39.5,-23.5 parent: 31 type: Transform + - uid: 2278 + components: + - pos: -22.5,-10.5 + parent: 31 + type: Transform + - uid: 2331 + components: + - pos: 0.5,-15.5 + parent: 31 + type: Transform - uid: 3929 components: - pos: -21.5,5.5 @@ -3793,6 +4603,26 @@ entities: - pos: 5.5,-27.5 parent: 31 type: Transform + - uid: 4820 + components: + - pos: -23.5,-10.5 + parent: 31 + type: Transform + - uid: 4823 + components: + - pos: -24.5,-10.5 + parent: 31 + type: Transform + - uid: 5105 + components: + - pos: 0.5,-14.5 + parent: 31 + type: Transform + - uid: 5106 + components: + - pos: 0.5,-16.5 + parent: 31 + type: Transform - uid: 7036 components: - pos: 32.5,-18.5 @@ -3843,18 +4673,6 @@ entities: - pos: -36.5,-2.5 parent: 31 type: Transform -- proto: AirlockHeadOfPersonnelGlassLocked - entities: - - uid: 569 - components: - - pos: 7.5,6.5 - parent: 31 - type: Transform - - uid: 570 - components: - - pos: 9.5,6.5 - parent: 31 - type: Transform - proto: AirlockHeadOfPersonnelLocked entities: - uid: 1852 @@ -3885,11 +4703,9 @@ entities: type: Transform - proto: AirlockJanitorLocked entities: - - uid: 609 + - uid: 2709 components: - - name: Janitor Closet - type: MetaData - - pos: -22.5,9.5 + - pos: -21.5,-12.5 parent: 31 type: Transform - proto: AirlockKitchenGlassLocked @@ -3949,6 +4765,11 @@ entities: type: Transform - proto: AirlockMaintCommandLocked entities: + - uid: 154 + components: + - pos: 8.5,12.5 + parent: 31 + type: Transform - uid: 635 components: - pos: -1.5,22.5 @@ -3956,14 +4777,14 @@ entities: type: Transform - proto: AirlockMaintCommonLocked entities: - - uid: 600 + - uid: 186 components: - - pos: -32.5,2.5 + - pos: -21.5,-18.5 parent: 31 type: Transform - - uid: 613 + - uid: 600 components: - - pos: -23.5,-9.5 + - pos: -32.5,2.5 parent: 31 type: Transform - uid: 614 @@ -3971,11 +4792,6 @@ entities: - pos: -34.5,-6.5 parent: 31 type: Transform - - uid: 620 - components: - - pos: -33.5,8.5 - parent: 31 - type: Transform - uid: 627 components: - pos: 0.5,20.5 @@ -3986,9 +4802,66 @@ entities: - pos: 21.5,2.5 parent: 31 type: Transform - - uid: 1280 + - uid: 897 components: - - pos: 1.5,-23.5 + - pos: -26.5,-16.5 + parent: 31 + type: Transform + - uid: 2354 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-12.5 + parent: 31 + type: Transform + - uid: 5757 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-18.5 + parent: 31 + type: Transform + - uid: 9220 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-13.5 + parent: 31 + type: Transform + - uid: 9402 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-31.5 + parent: 31 + type: Transform + - uid: 9445 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-33.5 + parent: 31 + type: Transform + - uid: 9450 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-36.5 + parent: 31 + type: Transform + - uid: 9453 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-38.5 + parent: 31 + type: Transform + - uid: 9671 + components: + - pos: 0.5,-41.5 + parent: 31 + type: Transform + - uid: 9733 + components: + - pos: 10.5,-39.5 + parent: 31 + type: Transform + - uid: 9933 + components: + - pos: -4.5,26.5 parent: 31 type: Transform - proto: AirlockMaintEngiLocked @@ -4012,11 +4885,6 @@ entities: type: Transform - proto: AirlockMaintHOPLocked entities: - - uid: 568 - components: - - pos: 8.5,12.5 - parent: 31 - type: Transform - uid: 4143 components: - pos: 11.5,19.5 @@ -4029,25 +4897,11 @@ entities: - pos: -16.5,-3.5 parent: 31 type: Transform -- proto: AirlockMaintIntLocked - entities: - - uid: 601 - components: - - pos: -13.5,-13.5 - parent: 31 - type: Transform - - uid: 4090 - components: - - name: Waste Disposal - type: MetaData - - pos: -24.5,-12.5 - parent: 31 - type: Transform - proto: AirlockMaintJanitorLocked entities: - - uid: 583 + - uid: 3137 components: - - pos: -20.5,11.5 + - pos: -16.5,-12.5 parent: 31 type: Transform - proto: AirlockMaintLocked @@ -4102,44 +4956,35 @@ entities: - pos: -25.5,15.5 parent: 31 type: Transform - - uid: 9253 + - uid: 7378 components: - - pos: -21.5,-18.5 + - rot: -1.5707963267948966 rad + pos: -33.5,9.5 parent: 31 type: Transform -- proto: AirlockMaintMedLocked - entities: - - uid: 626 + - uid: 10224 components: - - pos: 14.5,-18.5 + - pos: 43.5,-5.5 parent: 31 type: Transform - - uid: 1309 +- proto: AirlockMaintMedLocked + entities: + - uid: 9516 components: - - pos: 20.5,-17.5 + - rot: 1.5707963267948966 rad + pos: 9.5,-18.5 parent: 31 type: Transform - proto: AirlockMaintRnDLocked entities: - - uid: 603 - components: - - pos: -4.5,-11.5 - parent: 31 - type: Transform - - uid: 641 - components: - - pos: -16.5,-16.5 - parent: 31 - type: Transform - - uid: 1267 + - uid: 184 components: - - rot: -1.5707963267948966 rad - pos: -3.5,-27.5 + - pos: -9.5,-33.5 parent: 31 type: Transform - - uid: 4969 + - uid: 8448 components: - - pos: -11.5,-30.5 + - pos: -18.5,-27.5 parent: 31 type: Transform - proto: AirlockMaintSalvageLocked @@ -4175,13 +5020,6 @@ entities: - pos: 10.5,-6.5 parent: 31 type: Transform - - uid: 631 - components: - - name: Cryogenics - type: MetaData - - pos: 19.5,-18.5 - parent: 31 - type: Transform - uid: 632 components: - name: Medical Storage @@ -4189,15 +5027,14 @@ entities: - pos: 20.5,-6.5 parent: 31 type: Transform - - uid: 2207 + - uid: 2033 components: - - pos: 10.5,-17.5 + - pos: 18.5,-14.5 parent: 31 type: Transform - - uid: 2581 + - uid: 4906 components: - - rot: 1.5707963267948966 rad - pos: 1.5,13.5 + - pos: 11.5,-14.5 parent: 31 type: Transform - uid: 7278 @@ -4230,16 +5067,17 @@ entities: type: Transform - proto: AirlockResearchDirectorGlassLocked entities: - - uid: 593 + - uid: 9613 components: - - pos: -3.5,-21.5 + - rot: 1.5707963267948966 rad + pos: -6.5,-21.5 parent: 31 type: Transform - proto: AirlockResearchDirectorLocked entities: - - uid: 592 + - uid: 9590 components: - - pos: -8.5,-21.5 + - pos: -2.5,-22.5 parent: 31 type: Transform - proto: AirlockSalvageGlassLocked @@ -4254,69 +5092,31 @@ entities: - pos: 25.5,17.5 parent: 31 type: Transform -- proto: AirlockScienceGlass - entities: - - uid: 408 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-24.5 - parent: 31 - type: Transform - proto: AirlockScienceGlassLocked entities: - - uid: 621 - components: - - name: Research and Development - type: MetaData - - pos: -3.5,-18.5 - parent: 31 - type: Transform - - uid: 622 - components: - - name: Science - type: MetaData - - pos: 0.5,-20.5 - parent: 31 - type: Transform - - uid: 623 - components: - - name: Science - type: MetaData - - pos: 0.5,-19.5 - parent: 31 - type: Transform - - uid: 1147 - components: - - pos: -12.5,-19.5 - parent: 31 - type: Transform - - uid: 7377 + - uid: 613 components: - - pos: -12.5,-20.5 + - pos: -12.5,-25.5 parent: 31 type: Transform - - uid: 7391 + - uid: 1280 components: - - pos: -16.5,-23.5 + - pos: -4.5,-27.5 parent: 31 type: Transform - - uid: 7464 + - uid: 2323 components: - - rot: -1.5707963267948966 rad - pos: 1.5,-29.5 + - pos: -13.5,-18.5 parent: 31 type: Transform - - uid: 9168 + - uid: 3952 components: - - rot: -1.5707963267948966 rad - pos: -3.5,-30.5 + - pos: -10.5,-23.5 parent: 31 type: Transform -- proto: AirlockScienceLocked - entities: - - uid: 7390 + - uid: 5219 components: - - pos: -15.5,-26.5 + - pos: 1.5,-28.5 parent: 31 type: Transform - proto: AirlockSecurityGlassLocked @@ -4352,12 +5152,6 @@ entities: - links: - 9951 type: DeviceLinkSink - - uid: 6015 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,11.5 - parent: 31 - type: Transform - uid: 7786 components: - name: Perma @@ -4379,85 +5173,153 @@ entities: - pos: -20.5,-8.5 parent: 31 type: Transform - - uid: 7338 +- proto: AirSensor + entities: + - uid: 408 components: - - pos: -18.5,-6.5 + - pos: -11.5,-20.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 7345 + type: DeviceNetwork + - uid: 1481 + components: + - pos: -5.5,-22.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 7345 + type: DeviceNetwork + - uid: 4921 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-26.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 7904 + type: DeviceNetwork + - uid: 6910 + components: + - pos: 27.5,20.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 7104 + type: DeviceNetwork + - uid: 7382 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,12.5 parent: 31 type: Transform -- proto: AirSensor - entities: - uid: 10022 components: - rot: -1.5707963267948966 rad pos: -12.5,-3.5 parent: 31 type: Transform - - uid: 10025 + - uid: 10042 components: - - pos: 16.5,-24.5 + - rot: 3.141592653589793 rad + pos: -7.5,-11.5 parent: 31 type: Transform - - uid: 10026 + - uid: 10239 components: - - pos: 27.5,-15.5 + - rot: 1.5707963267948966 rad + pos: -21.5,-16.5 parent: 31 type: Transform - - uid: 10029 + - ShutdownSubscribers: + - 10238 + type: DeviceNetwork + - uid: 10428 components: - - rot: 3.141592653589793 rad - pos: 35.5,-6.5 + - rot: 1.5707963267948966 rad + pos: -15.5,-21.5 parent: 31 type: Transform - - uid: 10030 + - ShutdownSubscribers: + - 10373 + type: DeviceNetwork + - uid: 10431 components: - - rot: 3.141592653589793 rad - pos: 26.5,-2.5 + - rot: -1.5707963267948966 rad + pos: -7.5,-14.5 parent: 31 type: Transform - - uid: 10032 + - ShutdownSubscribers: + - 10408 + type: DeviceNetwork + - uid: 10534 components: - - rot: 3.141592653589793 rad - pos: -20.5,-19.5 + - rot: 1.5707963267948966 rad + pos: -10.5,-27.5 parent: 31 type: Transform - - uid: 10033 + - ShutdownSubscribers: + - 10371 + type: DeviceNetwork + - uid: 10958 components: - - rot: 3.141592653589793 rad - pos: -20.5,-29.5 + - pos: 50.5,-2.5 parent: 31 type: Transform - - uid: 10034 + - ShutdownSubscribers: + - 5107 + type: DeviceNetwork + - uid: 10959 components: - - pos: -17.5,18.5 + - pos: 60.5,-4.5 parent: 31 type: Transform - - uid: 10035 + - ShutdownSubscribers: + - 5107 + type: DeviceNetwork + - uid: 10960 components: - - pos: -11.5,24.5 + - pos: 50.5,-11.5 parent: 31 type: Transform - - uid: 10037 + - ShutdownSubscribers: + - 5107 + type: DeviceNetwork + - uid: 10961 components: - - rot: -1.5707963267948966 rad - pos: -21.5,13.5 + - pos: 56.5,-11.5 parent: 31 type: Transform - - uid: 10040 + - ShutdownSubscribers: + - 5107 + type: DeviceNetwork + - uid: 10999 components: - - rot: 3.141592653589793 rad - pos: -26.5,-10.5 + - pos: 11.5,-3.5 parent: 31 type: Transform - - uid: 10041 + - uid: 11001 components: - - rot: 3.141592653589793 rad - pos: -19.5,-12.5 + - pos: 11.5,-8.5 parent: 31 type: Transform - - uid: 10042 + - ShutdownSubscribers: + - 11002 + type: DeviceNetwork + - uid: 11097 components: - - rot: 3.141592653589793 rad - pos: -7.5,-11.5 + - pos: 55.5,15.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 11098 + type: DeviceNetwork +- proto: AltarDruid + entities: + - uid: 4586 + components: + - pos: 49.5,-25.5 parent: 31 type: Transform - proto: AltarSpawner @@ -4502,42 +5364,29 @@ entities: type: Physics - proto: AnomalyScanner entities: - - uid: 151 - components: - - pos: -11.505994,-27.414207 - parent: 31 - type: Transform - - uid: 3372 + - uid: 3425 components: - - pos: -11.505994,-27.414207 + - pos: -4.503751,-31.320293 parent: 31 type: Transform - - uid: 9704 + - uid: 4821 components: - - pos: -11.505994,-27.414207 + - pos: -4.4447207,-31.61528 parent: 31 type: Transform - - uid: 10210 +- proto: AnomalyVesselCircuitboard + entities: + - uid: 9267 components: - - pos: -11.505994,-27.414207 + - pos: -5.3662663,-32.323242 parent: 31 type: Transform - proto: APCBasic entities: - - uid: 154 - components: - - pos: 7.5,-18.5 - parent: 31 - type: Transform - - startingCharge: 1250.683 - type: Battery - - loadingNetworkDemand: 10 - currentSupply: 10 - supplyRampPosition: 10 - type: PowerNetworkBattery - - uid: 416 + - uid: 771 components: - - pos: -21.5,-12.5 + - rot: -1.5707963267948966 rad + pos: 13.5,-8.5 parent: 31 type: Transform - uid: 1233 @@ -4586,13 +5435,6 @@ entities: type: Transform - startingCharge: 11999.483 type: Battery - - uid: 2488 - components: - - pos: 47.5,-1.5 - parent: 31 - type: Transform - - startingCharge: 11991.15 - type: Battery - uid: 2489 components: - rot: 3.141592653589793 rad @@ -4647,27 +5489,6 @@ entities: type: Transform - startingCharge: 11998.483 type: Battery - - uid: 2503 - components: - - pos: -1.5,-18.5 - parent: 31 - type: Transform - - startingCharge: 11999.083 - type: Battery - - uid: 2504 - components: - - pos: -9.5,-21.5 - parent: 31 - type: Transform - - startingCharge: 11996.233 - type: Battery - - uid: 2505 - components: - - pos: -14.5,-16.5 - parent: 31 - type: Transform - - startingCharge: 11999.65 - type: Battery - uid: 2767 components: - pos: -15.5,-9.5 @@ -4675,6 +5496,11 @@ entities: type: Transform - startingCharge: 11999.45 type: Battery + - uid: 2853 + components: + - pos: -31.5,-12.5 + parent: 31 + type: Transform - uid: 3355 components: - rot: -1.5707963267948966 rad @@ -4705,9 +5531,21 @@ entities: type: Transform - startingCharge: 11999.233 type: Battery - - uid: 4734 + - uid: 4261 components: - - pos: -6.5,-25.5 + - pos: 55.5,-6.5 + parent: 31 + type: Transform + - uid: 4550 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-13.5 + parent: 31 + type: Transform + - uid: 6100 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-27.5 parent: 31 type: Transform - uid: 6888 @@ -4715,11 +5553,51 @@ entities: - pos: 43.5,10.5 parent: 31 type: Transform + - uid: 7250 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-12.5 + parent: 31 + type: Transform + - uid: 7787 + components: + - pos: -11.5,-17.5 + parent: 31 + type: Transform + - uid: 8439 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-21.5 + parent: 31 + type: Transform - uid: 8668 components: - pos: -32.5,-25.5 parent: 31 type: Transform + - uid: 10268 + components: + - rot: 1.5707963267948966 rad + pos: 55.5,-3.5 + parent: 31 + type: Transform + - uid: 10327 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-23.5 + parent: 31 + type: Transform + - uid: 10328 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-30.5 + parent: 31 + type: Transform + - uid: 10962 + components: + - pos: 51.5,-2.5 + parent: 31 + type: Transform - proto: APCElectronics entities: - uid: 86 @@ -4732,6 +5610,12 @@ entities: - pos: -29.406065,9.491461 parent: 31 type: Transform + - uid: 5760 + components: + - rot: 3.141592653589793 rad + pos: -17.445856,-23.57463 + parent: 31 + type: Transform - uid: 7872 components: - pos: 29.64934,-1.6702437 @@ -4742,40 +5626,42 @@ entities: - pos: 29.46184,-1.6702437 parent: 31 type: Transform -- proto: APCHighCapacity +- proto: AppraisalTool entities: - - uid: 1844 + - uid: 7119 components: - - rot: 3.141592653589793 rad - pos: -6.5,26.5 + - pos: 22.3458,13.704067 parent: 31 type: Transform -- proto: AppleSeeds +- proto: AsteroidRock entities: - - uid: 7830 + - uid: 6326 components: - - pos: -17.51799,9.577858 + - pos: 5.5,-35.5 parent: 31 type: Transform -- proto: AppraisalTool - entities: - - uid: 9949 + - uid: 10807 components: - - pos: 14.087402,12.737484 + - pos: 6.5,-35.5 parent: 31 type: Transform -- proto: AtmosDeviceFanTiny - entities: - - uid: 4216 + - uid: 10810 components: - - pos: -44.5,-11.5 + - pos: 6.5,-34.5 parent: 31 type: Transform - - uid: 4222 + - uid: 10811 components: - - pos: -44.5,-9.5 + - pos: 6.5,-32.5 + parent: 31 + type: Transform + - uid: 10812 + components: + - pos: 5.5,-32.5 parent: 31 type: Transform +- proto: AtmosDeviceFanTiny + entities: - uid: 5157 components: - pos: -14.5,-4.5 @@ -4796,11 +5682,6 @@ entities: - pos: -44.5,8.5 parent: 31 type: Transform - - uid: 7409 - components: - - pos: 41.5,-13.5 - parent: 31 - type: Transform - uid: 7566 components: - pos: -44.5,10.5 @@ -4816,153 +5697,214 @@ entities: - pos: 20.5,28.5 parent: 31 type: Transform - - uid: 8050 + - uid: 9923 components: - - pos: -35.5,-20.5 + - pos: -12.5,-2.5 parent: 31 type: Transform - - uid: 9923 + - uid: 10583 components: - - pos: -12.5,-2.5 + - rot: 1.5707963267948966 rad + pos: -8.5,-42.5 + parent: 31 + type: Transform + - uid: 10765 + components: + - pos: -44.5,-12.5 + parent: 31 + type: Transform + - uid: 10766 + components: + - pos: -51.5,-12.5 parent: 31 type: Transform - proto: AtmosFixBlockerMarker entities: - - uid: 9067 + - uid: 87 components: - - pos: 36.5,21.5 + - pos: 44.5,21.5 parent: 31 type: Transform - - uid: 9068 + - uid: 93 components: - - pos: 36.5,22.5 + - pos: 44.5,22.5 parent: 31 type: Transform - - uid: 9069 + - uid: 98 components: - - pos: 36.5,23.5 + - pos: 44.5,23.5 parent: 31 type: Transform - - uid: 9070 + - uid: 448 components: - - pos: 44.5,23.5 + - pos: 38.5,23.5 parent: 31 type: Transform - - uid: 9071 + - uid: 476 components: - - pos: 44.5,22.5 + - pos: 38.5,22.5 parent: 31 type: Transform - - uid: 9072 + - uid: 514 components: - - pos: 44.5,21.5 + - pos: 38.5,21.5 parent: 31 type: Transform - - uid: 9076 + - uid: 720 components: - - pos: 42.5,21.5 + - pos: 40.5,22.5 parent: 31 type: Transform - - uid: 9077 + - uid: 728 components: - - pos: 42.5,22.5 + - pos: 40.5,23.5 parent: 31 type: Transform - - uid: 9078 + - uid: 806 components: - - pos: 42.5,23.5 + - pos: 40.5,21.5 parent: 31 type: Transform - - uid: 9079 + - uid: 1878 components: - - pos: 38.5,23.5 + - pos: 46.5,22.5 parent: 31 type: Transform - - uid: 9080 + - uid: 4886 components: - - pos: 38.5,22.5 + - pos: 55.5,16.5 parent: 31 type: Transform - - uid: 9081 + - uid: 5140 components: - - pos: 38.5,21.5 + - pos: 46.5,23.5 parent: 31 type: Transform - - uid: 9085 + - uid: 8210 components: - - pos: 53.5,17.5 + - pos: 46.5,21.5 parent: 31 type: Transform - - uid: 9086 + - uid: 11077 components: - - pos: 53.5,16.5 + - pos: 55.5,17.5 parent: 31 type: Transform -- proto: AtmosFixNitrogenMarker + - uid: 11096 + components: + - pos: 55.5,15.5 + parent: 31 + type: Transform +- proto: AtmosFixFreezerMarker entities: - - uid: 806 + - uid: 5895 components: - - pos: 32.5,21.5 + - pos: -13.5,-4.5 parent: 31 type: Transform - - uid: 1139 + - uid: 11029 components: - - pos: 32.5,22.5 + - pos: -13.5,-3.5 parent: 31 type: Transform - - uid: 5029 + - uid: 11030 components: - - pos: 32.5,23.5 + - pos: -12.5,-3.5 parent: 31 type: Transform -- proto: AtmosFixOxygenMarker + - uid: 11031 + components: + - pos: -12.5,-4.5 + parent: 31 + type: Transform + - uid: 11032 + components: + - pos: -11.5,-4.5 + parent: 31 + type: Transform + - uid: 11033 + components: + - pos: -11.5,-3.5 + parent: 31 + type: Transform + - uid: 11034 + components: + - pos: -10.5,-3.5 + parent: 31 + type: Transform + - uid: 11035 + components: + - pos: -10.5,-4.5 + parent: 31 + type: Transform + - uid: 11036 + components: + - pos: -9.5,-4.5 + parent: 31 + type: Transform + - uid: 11037 + components: + - pos: -9.5,-3.5 + parent: 31 + type: Transform +- proto: AtmosFixNitrogenMarker entities: - - uid: 4 + - uid: 634 components: - pos: 34.5,21.5 parent: 31 type: Transform - - uid: 81 + - uid: 656 components: - pos: 34.5,22.5 parent: 31 type: Transform - - uid: 1918 + - uid: 689 components: - pos: 34.5,23.5 parent: 31 type: Transform +- proto: AtmosFixOxygenMarker + entities: + - uid: 62 + components: + - pos: 36.5,23.5 + parent: 31 + type: Transform + - uid: 81 + components: + - pos: 36.5,22.5 + parent: 31 + type: Transform + - uid: 85 + components: + - pos: 36.5,21.5 + parent: 31 + type: Transform - proto: AtmosFixPlasmaMarker entities: - - uid: 9163 + - uid: 114 components: - - pos: 40.5,22.5 + - pos: 42.5,23.5 parent: 31 type: Transform - - uid: 9164 + - uid: 137 components: - - pos: 40.5,21.5 + - pos: 42.5,22.5 parent: 31 type: Transform - - uid: 9322 + - uid: 252 components: - - pos: 40.5,23.5 + - pos: 42.5,21.5 parent: 31 type: Transform - proto: Autolathe entities: - - uid: 1041 + - uid: 1435 components: - - pos: -5.5,-12.5 + - pos: -17.5,-21.5 parent: 31 type: Transform - - materialWhiteList: - - Steel - - Plastic - - Wood - - Glass - - Cloth - type: MaterialStorage - uid: 3904 components: - pos: 12.5,9.5 @@ -4975,28 +5917,16 @@ entities: - Glass - Cloth type: MaterialStorage - - uid: 8955 - components: - - pos: 49.5,3.5 - parent: 31 - type: Transform -- proto: BananaSeeds - entities: - - uid: 10137 - components: - - pos: 48.62532,-27.148758 - parent: 31 - type: Transform - - uid: 10138 + - uid: 4238 components: - - pos: 48.706337,-27.229776 + - pos: 47.5,5.5 parent: 31 type: Transform - proto: BannerNanotrasen entities: - - uid: 8994 + - uid: 3677 components: - - pos: 45.5,-20.5 + - pos: 53.5,-28.5 parent: 31 type: Transform - uid: 8995 @@ -5011,6 +5941,11 @@ entities: - pos: -20.5,16.5 parent: 31 type: Transform + - uid: 413 + components: + - pos: -4.5,-11.5 + parent: 31 + type: Transform - uid: 9573 components: - rot: 3.141592653589793 rad @@ -5027,11 +5962,6 @@ entities: - pos: -12.5,-8.5 parent: 31 type: Transform - - uid: 9837 - components: - - pos: -13.5,-13.5 - parent: 31 - type: Transform - proto: BarSignEngineChange entities: - uid: 9334 @@ -5041,9 +5971,9 @@ entities: type: Transform - proto: Beaker entities: - - uid: 4331 + - uid: 2276 components: - - pos: 19.249691,-22.499775 + - pos: 7.7243433,-13.122412 parent: 31 type: Transform - solutions: @@ -5053,29 +5983,35 @@ entities: canReact: True maxVol: 50 reagents: - - Quantity: 50 - ReagentId: Cryoxadone + - data: null + ReagentId: Leporazine + Quantity: 40 type: SolutionContainerManager - - uid: 7248 + - uid: 10800 components: - - pos: 19.702816,-22.1404 + - pos: -16.041546,11.552583 parent: 31 type: Transform - - solutions: - beaker: - temperature: 293.15 - canMix: True - canReact: True - maxVol: 50 - reagents: - - Quantity: 50 - ReagentId: Leporazine - type: SolutionContainerManager - proto: Bed entities: - - uid: 125 + - uid: 4 components: - - pos: 24.5,-15.5 + - pos: 29.5,8.5 + parent: 31 + type: Transform + - uid: 475 + components: + - pos: -7.5,22.5 + parent: 31 + type: Transform + - uid: 704 + components: + - pos: -15.5,8.5 + parent: 31 + type: Transform + - uid: 938 + components: + - pos: -3.5,-23.5 parent: 31 type: Transform - uid: 1956 @@ -5088,14 +6024,14 @@ entities: - pos: -7.5,7.5 parent: 31 type: Transform - - uid: 2001 + - uid: 2011 components: - - pos: -15.5,11.5 + - pos: 18.5,-20.5 parent: 31 type: Transform - - uid: 3052 + - uid: 2186 components: - - pos: 28.5,8.5 + - pos: 25.5,-10.5 parent: 31 type: Transform - uid: 3196 @@ -5103,6 +6039,11 @@ entities: - pos: 12.5,23.5 parent: 31 type: Transform + - uid: 3902 + components: + - pos: -33.5,18.5 + parent: 31 + type: Transform - uid: 4086 components: - pos: -27.5,-1.5 @@ -5128,9 +6069,9 @@ entities: - pos: 12.5,-29.5 parent: 31 type: Transform - - uid: 7369 + - uid: 7356 components: - - pos: -2.5,-24.5 + - pos: -36.5,17.5 parent: 31 type: Transform - uid: 7829 @@ -5143,21 +6084,22 @@ entities: - pos: 10.5,16.5 parent: 31 type: Transform - - uid: 9038 + - uid: 9118 components: - - pos: 30.5,-19.5 + - pos: 40.5,-1.5 parent: 31 type: Transform - - uid: 9516 + - uid: 9455 components: - - pos: -32.5,16.5 + - pos: -13.5,-37.5 parent: 31 type: Transform - proto: BedsheetBlack entities: - - uid: 8271 + - uid: 2223 components: - - pos: -32.5,16.5 + - rot: -1.5707963267948966 rad + pos: -36.5,17.5 parent: 31 type: Transform - proto: BedsheetCaptain @@ -5169,26 +6111,23 @@ entities: type: Transform - proto: BedsheetCE entities: - - uid: 1734 + - uid: 609 components: - - flags: InContainer - type: MetaData - - parent: 816 + - pos: 40.5,-1.5 + parent: 31 type: Transform - - canCollide: False - type: Physics -- proto: BedsheetCentcom +- proto: BedsheetCMO entities: - - uid: 9037 + - uid: 2188 components: - - pos: 30.5,-19.5 + - pos: 25.5,-10.5 parent: 31 type: Transform -- proto: BedsheetCMO +- proto: BedsheetCosmos entities: - - uid: 8951 + - uid: 9081 components: - - pos: 24.5,-15.5 + - pos: -33.5,18.5 parent: 31 type: Transform - proto: BedsheetHOP @@ -5198,18 +6137,16 @@ entities: - pos: 10.5,16.5 parent: 31 type: Transform -- proto: BedsheetMedical +- proto: BedsheetHOS entities: - - uid: 441 - components: - - pos: -0.5,12.5 - parent: 31 - type: Transform - - uid: 5224 + - uid: 425 components: - - pos: 7.5,-5.5 + - rot: -1.5707963267948966 rad + pos: -7.5,22.5 parent: 31 type: Transform +- proto: BedsheetMedical + entities: - uid: 7813 components: - pos: 7.5,-11.5 @@ -5232,23 +6169,27 @@ entities: - pos: -7.5,7.5 parent: 31 type: Transform - - uid: 7406 +- proto: BedsheetQM + entities: + - uid: 9140 components: - - pos: -15.5,11.5 + - rot: 3.141592653589793 rad + pos: 29.5,8.5 parent: 31 type: Transform -- proto: BedsheetQM +- proto: BedsheetRD entities: - - uid: 3051 + - uid: 9707 components: - - pos: 28.5,8.5 + - pos: -3.5,-23.5 parent: 31 type: Transform -- proto: BedsheetRD +- proto: BedsheetRed entities: - - uid: 7370 + - uid: 9464 components: - - pos: -2.5,-24.5 + - rot: -1.5707963267948966 rad + pos: -13.5,-37.5 parent: 31 type: Transform - proto: BedsheetSpawner @@ -5258,6 +6199,11 @@ entities: - pos: -27.5,1.5 parent: 31 type: Transform + - uid: 1056 + components: + - pos: 32.5,-10.5 + parent: 31 + type: Transform - uid: 3591 components: - pos: -27.5,-4.5 @@ -5268,43 +6214,21 @@ entities: - pos: -27.5,-1.5 parent: 31 type: Transform - - uid: 4586 - components: - - pos: 32.5,-10.5 - parent: 31 - type: Transform - uid: 4845 components: - pos: 12.5,-29.5 parent: 31 type: Transform -- proto: BedsheetSyndie - entities: - - uid: 2000 + - uid: 5629 components: - - pos: -15.5,9.5 + - pos: -15.5,8.5 parent: 31 type: Transform -- proto: Bible +- proto: BedsheetYellow entities: - - uid: 9580 - components: - - pos: -36.56808,19.335732 - parent: 31 - type: Transform - - uid: 9583 - components: - - pos: -37.88058,19.695107 - parent: 31 - type: Transform - - uid: 9590 - components: - - pos: -37.41183,19.382607 - parent: 31 - type: Transform - - uid: 9604 + - uid: 1387 components: - - pos: -36.208706,19.679482 + - pos: -15.5,9.5 parent: 31 type: Transform - proto: BikeHorn @@ -5320,9 +6244,9 @@ entities: - type: InsideEntityStorage - proto: BikeHornInstrument entities: - - uid: 7352 + - uid: 441 components: - - pos: -19.246786,-9.158772 + - pos: -19.612082,-6.8995214 parent: 31 type: Transform - proto: BiomassReclaimer @@ -5342,29 +6266,21 @@ entities: - links: - 7945 type: DeviceLinkSink - - uid: 1756 - components: - - pos: 17.5,12.5 - parent: 31 - type: Transform - - links: - - 2515 - type: DeviceLinkSink - - uid: 2308 + - uid: 1561 components: - - pos: -13.5,-27.5 + - pos: -33.5,-16.5 parent: 31 type: Transform - links: - - 8225 + - 10218 type: DeviceLinkSink - - uid: 2309 + - uid: 1756 components: - - pos: -14.5,-27.5 + - pos: 17.5,12.5 parent: 31 type: Transform - links: - - 8225 + - 2515 type: DeviceLinkSink - uid: 3905 components: @@ -5374,26 +6290,21 @@ entities: - links: - 1084 type: DeviceLinkSink - - uid: 6860 + - uid: 6557 components: - - pos: 53.5,15.5 - parent: 31 - type: Transform - - uid: 7536 - components: - - pos: -28.5,-15.5 + - pos: 55.5,14.5 parent: 31 type: Transform - links: - - 7552 + - 10449 type: DeviceLinkSink - - uid: 9013 + - uid: 7588 components: - - pos: -26.5,-15.5 + - pos: -15.5,-31.5 parent: 31 type: Transform - links: - - 7551 + - 10325 type: DeviceLinkSink - uid: 10095 components: @@ -5411,11 +6322,43 @@ entities: - links: - 7945 type: DeviceLinkSink + - uid: 10201 + components: + - pos: -35.5,-16.5 + parent: 31 + type: Transform + - links: + - 10218 + type: DeviceLinkSink - proto: BlockGameArcade entities: - - uid: 770 + - uid: 9569 components: - - pos: -17.5,11.5 + - rot: 1.5707963267948966 rad + pos: -19.5,10.5 + parent: 31 + type: Transform +- proto: Bloodpack + entities: + - uid: 4705 + components: + - pos: 6.4227285,-11.38916 + parent: 31 + type: Transform +- proto: BookHowToRockAndStone + entities: + - uid: 10817 + components: + - rot: 1.5707963267948966 rad + pos: 5.582772,-34.702827 + parent: 31 + type: Transform +- proto: BookHowToSurvive + entities: + - uid: 570 + components: + - rot: -1.5707963267948966 rad + pos: 11.460378,1.5181434 parent: 31 type: Transform - proto: BookIanOcean @@ -5514,23 +6457,24 @@ entities: pos: -5.5,-6.5 parent: 31 type: Transform - - uid: 7562 + - uid: 10624 components: - - rot: 1.5707963267948966 rad - pos: -15.5,-11.5 + - rot: 3.141592653589793 rad + pos: 43.5,-10.5 parent: 31 type: Transform - - uid: 9087 +- proto: BorgCharger + entities: + - uid: 2046 components: - - rot: 3.141592653589793 rad - pos: 31.5,-10.5 + - pos: -2.5,-30.5 parent: 31 type: Transform -- proto: BorgCharger +- proto: BorgModuleFireExtinguisher entities: - - uid: 6891 + - uid: 2856 components: - - pos: -8.5,-29.5 + - pos: 0.53372324,-27.321005 parent: 31 type: Transform - proto: BoxBeaker @@ -5542,32 +6486,30 @@ entities: type: Transform - proto: BoxBeanbag entities: - - uid: 46 + - uid: 2222 components: - - pos: -11.415716,18.436327 + - pos: -10.5,-6.5 parent: 31 type: Transform - unspawnedCount: 12 type: BallisticAmmoProvider - - uid: 2222 + - uid: 11280 components: - - pos: -10.5,-6.5 + - pos: -11.305756,18.242832 parent: 31 type: Transform - - unspawnedCount: 12 - type: BallisticAmmoProvider - proto: BoxBodyBag entities: - - uid: 1407 + - uid: 10548 components: - - pos: 13.473363,-13.426226 + - pos: 13.470278,-15.320015 parent: 31 type: Transform - proto: BoxCartridgeCap entities: - uid: 8868 components: - - pos: -28.650513,-10.456476 + - pos: -27.474358,-13.511151 parent: 31 type: Transform - unspawnedCount: 20 @@ -5582,15 +6524,40 @@ entities: occludes: True ents: [] type: ContainerContainer +- proto: BoxFlare + entities: + - uid: 6824 + components: + - pos: 27.20631,21.76909 + parent: 31 + type: Transform - proto: BoxFlashbang entities: - - uid: 77 + - uid: 9115 components: - - pos: -11.474484,16.713373 + - pos: -14.653477,16.079796 + parent: 31 + type: Transform +- proto: BoxFolderBase + entities: + - uid: 10831 + components: + - pos: 14.666493,-5.595451 parent: 31 type: Transform - proto: BoxFolderBlack entities: + - uid: 2851 + components: + - rot: 1.5707963267948966 rad + pos: -4.395054,13.6322155 + parent: 31 + type: Transform + - uid: 4167 + components: + - pos: -16.331966,-25.440334 + parent: 31 + type: Transform - uid: 4187 components: - name: Secret Documents @@ -5608,6 +6575,18 @@ entities: - canCollide: False type: Physics - type: InsideEntityStorage + - uid: 7133 + components: + - rot: 1.5707963267948966 rad + pos: -4.356403,-20.931307 + parent: 31 + type: Transform + - uid: 7232 + components: + - rot: -1.5707963267948966 rad + pos: -19.671114,-5.542589 + parent: 31 + type: Transform - uid: 9048 components: - pos: 7.6804676,19.441128 @@ -5634,6 +6613,23 @@ entities: - pos: 7.4773426,19.456753 parent: 31 type: Transform +- proto: BoxFolderGrey + entities: + - uid: 6932 + components: + - pos: 28.689556,10.2061405 + parent: 31 + type: Transform + - uid: 7536 + components: + - pos: -10.371262,-31.421198 + parent: 31 + type: Transform + - uid: 7799 + components: + - pos: 14.501501,-15.43846 + parent: 31 + type: Transform - proto: BoxFolderRed entities: - uid: 7329 @@ -5651,11 +6647,23 @@ entities: - pos: 7.2742176,19.456753 parent: 31 type: Transform + - uid: 10804 + components: + - rot: 3.141592653589793 rad + pos: -10.660394,7.554576 + parent: 31 + type: Transform - proto: BoxFolderWhite entities: - - uid: 8998 + - uid: 2852 components: - - pos: 24.508684,-13.413875 + - pos: 8.345051,-3.970902 + parent: 31 + type: Transform + - uid: 8451 + components: + - rot: 1.5707963267948966 rad + pos: 22.685759,-10.428317 parent: 31 type: Transform - proto: BoxFolderYellow @@ -5670,30 +6678,35 @@ entities: - pos: 31.472767,6.568101 parent: 31 type: Transform + - uid: 10788 + components: + - pos: 14.649738,12.601002 + parent: 31 + type: Transform - proto: BoxHandcuff entities: - - uid: 9726 + - uid: 9836 components: - - pos: -6.0066094,13.40391 + - pos: -4.276994,14.694162 parent: 31 type: Transform - proto: BoxLatexGloves entities: - - uid: 9 + - uid: 5611 components: - - pos: 21.584303,-4.310457 + - pos: 21.87704,-4.324789 parent: 31 type: Transform - - uid: 1179 + - uid: 7117 components: - - pos: 13.9517145,-13.426226 + - pos: 13.942519,-15.320015 parent: 31 type: Transform - proto: BoxLethalshot entities: - - uid: 4212 + - uid: 11281 components: - - pos: -11.483234,18.650404 + - pos: -11.600906,18.242832 parent: 31 type: Transform - proto: BoxLightMixed @@ -5710,9 +6723,16 @@ entities: type: Transform - proto: BoxMouthSwab entities: - - uid: 8439 + - uid: 10805 + components: + - pos: 16.63732,-6.2062087 + parent: 31 + type: Transform +- proto: BoxMRE + entities: + - uid: 7434 components: - - pos: 14.50727,-4.3962955 + - pos: 28.560026,15.665409 parent: 31 type: Transform - proto: BoxShotgunFlare @@ -5726,9 +6746,9 @@ entities: type: BallisticAmmoProvider - proto: BoxSterileMask entities: - - uid: 45 + - uid: 680 components: - - pos: 21.350922,-4.296852 + - pos: 21.375284,-4.324789 parent: 31 type: Transform - proto: BoxSyringe @@ -5745,9 +6765,9 @@ entities: type: Transform - proto: BoxZiptie entities: - - uid: 8318 + - uid: 7737 components: - - pos: -5.9128594,13.950785 + - pos: -4.6902046,14.635165 parent: 31 type: Transform - proto: BrbSign @@ -5785,11 +6805,19 @@ entities: - Timer: AutoClose - Timer: Open type: DeviceLinkSource +- proto: BrokenBottle + entities: + - uid: 10591 + components: + - rot: 1.5707963267948966 rad + pos: -15.286806,-11.665175 + parent: 31 + type: Transform - proto: Brutepack entities: - - uid: 7258 + - uid: 2191 components: - - pos: 6.461649,-5.4757285 + - pos: 6.355952,-7.3615913 parent: 31 type: Transform - proto: Bucket @@ -5799,21 +6827,31 @@ entities: - pos: -19.764086,1.4415555 parent: 31 type: Transform - - uid: 7674 + - uid: 5631 components: - - pos: -20.22532,7.510295 + - pos: -18.884306,9.451485 parent: 31 type: Transform - - uid: 7787 + - uid: 8955 + components: + - pos: -18.329012,-10.212495 + parent: 31 + type: Transform + - uid: 10647 components: - - pos: -16.564865,8.7805605 + - pos: 41.43901,-13.360281 parent: 31 type: Transform - proto: CableApcExtension entities: - - uid: 5 + - uid: 8 components: - - pos: 13.5,-9.5 + - pos: 9.5,-14.5 + parent: 31 + type: Transform + - uid: 9 + components: + - pos: 56.5,3.5 parent: 31 type: Transform - uid: 18 @@ -5821,6 +6859,11 @@ entities: - pos: -13.5,10.5 parent: 31 type: Transform + - uid: 35 + components: + - pos: -9.5,-15.5 + parent: 31 + type: Transform - uid: 51 components: - pos: 12.5,-9.5 @@ -5912,35 +6955,91 @@ entities: - pos: -6.5,4.5 parent: 31 type: Transform - - uid: 250 + - uid: 222 components: - - pos: -34.5,17.5 + - pos: -13.5,-38.5 parent: 31 type: Transform - - uid: 258 + - uid: 248 components: - - pos: -33.5,17.5 + - pos: 16.5,-13.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 266 + - uid: 269 components: - - pos: -1.5,-30.5 + - pos: -8.5,-19.5 parent: 31 type: Transform - - uid: 297 + - uid: 298 components: - - pos: -6.5,30.5 + - pos: 62.5,7.5 parent: 31 type: Transform - - uid: 415 + - enabled: True + type: AmbientSound + - uid: 299 components: - - pos: -19.5,-16.5 + - pos: -8.5,-15.5 + parent: 31 + type: Transform + - uid: 300 + components: + - pos: -7.5,-15.5 + parent: 31 + type: Transform + - uid: 312 + components: + - pos: -5.5,-38.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 329 + components: + - pos: 9.5,-38.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 331 + components: + - pos: 10.5,-38.5 + parent: 31 + type: Transform + - uid: 340 + components: + - pos: 1.5,-15.5 + parent: 31 + type: Transform + - uid: 341 + components: + - pos: 8.5,-33.5 parent: 31 type: Transform - enabled: True type: AmbientSound + - uid: 345 + components: + - pos: -9.5,-19.5 + parent: 31 + type: Transform + - uid: 397 + components: + - pos: 0.5,-15.5 + parent: 31 + type: Transform + - uid: 398 + components: + - pos: -0.5,-15.5 + parent: 31 + type: Transform + - uid: 403 + components: + - pos: -23.5,-13.5 + parent: 31 + type: Transform - uid: 531 components: - pos: 16.5,-10.5 @@ -5956,9 +7055,28 @@ entities: - pos: 27.5,1.5 parent: 31 type: Transform - - uid: 552 + - uid: 563 components: - - pos: 7.5,-9.5 + - pos: 31.5,24.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 569 + components: + - pos: -20.5,-12.5 + parent: 31 + type: Transform + - uid: 581 + components: + - pos: 31.5,20.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 594 + components: + - pos: -10.5,-15.5 parent: 31 type: Transform - uid: 607 @@ -5986,35 +7104,53 @@ entities: - pos: -2.5,13.5 parent: 31 type: Transform - - uid: 656 + - uid: 664 components: - - pos: 30.5,27.5 + - pos: -24.5,-13.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - uid: 682 components: - pos: -37.5,2.5 parent: 31 type: Transform - - uid: 699 + - uid: 703 components: - - pos: 10.5,-13.5 + - pos: -5.5,-31.5 + parent: 31 + type: Transform + - uid: 719 + components: + - pos: 9.5,-5.5 + parent: 31 + type: Transform + - uid: 729 + components: + - pos: -9.5,-31.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - uid: 742 components: - pos: -23.5,-22.5 parent: 31 type: Transform + - uid: 767 + components: + - pos: 8.5,-17.5 + parent: 31 + type: Transform - uid: 780 components: - pos: 21.5,22.5 parent: 31 type: Transform + - uid: 783 + components: + - pos: 13.5,-8.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound - uid: 795 components: - pos: 19.5,16.5 @@ -6138,9 +7274,21 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 1011 + components: + - pos: 9.5,-17.5 + parent: 31 + type: Transform - uid: 1017 components: - - pos: -6.5,-26.5 + - pos: -4.5,-11.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1023 + components: + - pos: 15.5,-16.5 parent: 31 type: Transform - uid: 1024 @@ -6148,43 +7296,94 @@ entities: - pos: -37.5,0.5 parent: 31 type: Transform - - uid: 1078 + - uid: 1041 components: - - pos: -5.5,-27.5 + - pos: 14.5,-14.5 parent: 31 type: Transform - - uid: 1079 + - uid: 1043 components: - - pos: -6.5,-31.5 + - pos: 15.5,-15.5 + parent: 31 + type: Transform + - uid: 1044 + components: + - pos: 10.5,-14.5 parent: 31 type: Transform - uid: 1081 components: - - pos: -7.5,-31.5 + - pos: 9.5,-6.5 parent: 31 type: Transform - uid: 1082 components: - - pos: -5.5,-28.5 + - pos: -6.5,-25.5 parent: 31 type: Transform - - uid: 1094 + - uid: 1083 components: - - pos: 24.5,-15.5 + - pos: -6.5,-26.5 parent: 31 type: Transform - - uid: 1127 + - uid: 1111 components: - - pos: 7.5,-18.5 + - pos: 31.5,25.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1114 + components: + - pos: -3.5,-19.5 + parent: 31 + type: Transform + - uid: 1116 + components: + - pos: -1.5,-22.5 + parent: 31 + type: Transform + - uid: 1118 + components: + - pos: 31.5,21.5 parent: 31 type: Transform - enabled: True type: AmbientSound + - uid: 1126 + components: + - pos: -1.5,-21.5 + parent: 31 + type: Transform + - uid: 1127 + components: + - pos: -36.5,18.5 + parent: 31 + type: Transform - uid: 1128 components: - pos: 14.5,-17.5 parent: 31 type: Transform + - uid: 1130 + components: + - pos: 61.5,7.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1134 + components: + - pos: 56.5,5.5 + parent: 31 + type: Transform + - uid: 1139 + components: + - pos: 32.5,17.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound - uid: 1145 components: - pos: 22.5,-4.5 @@ -6195,11 +7394,25 @@ entities: - pos: 20.5,21.5 parent: 31 type: Transform + - uid: 1164 + components: + - pos: 31.5,15.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound - uid: 1172 components: - pos: -6.5,5.5 parent: 31 type: Transform + - uid: 1173 + components: + - pos: 51.5,15.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound - uid: 1174 components: - pos: 11.5,24.5 @@ -6217,6 +7430,13 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 1198 + components: + - pos: 33.5,17.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound - uid: 1201 components: - pos: 27.5,3.5 @@ -6232,9 +7452,16 @@ entities: - pos: 27.5,2.5 parent: 31 type: Transform + - uid: 1239 + components: + - pos: 31.5,16.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound - uid: 1240 components: - - pos: -2.5,-15.5 + - pos: -15.5,-23.5 parent: 31 type: Transform - uid: 1241 @@ -6247,11 +7474,28 @@ entities: - pos: 6.5,0.5 parent: 31 type: Transform + - uid: 1249 + components: + - pos: -6.5,-27.5 + parent: 31 + type: Transform - uid: 1251 components: - pos: -5.5,4.5 parent: 31 type: Transform + - uid: 1282 + components: + - pos: -21.5,-15.5 + parent: 31 + type: Transform + - uid: 1298 + components: + - pos: -31.5,-12.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound - uid: 1327 components: - pos: 16.5,22.5 @@ -6274,6 +7518,13 @@ entities: - pos: 3.5,27.5 parent: 31 type: Transform + - uid: 1386 + components: + - pos: 52.5,15.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound - uid: 1421 components: - pos: -40.5,0.5 @@ -6318,17 +7569,27 @@ entities: type: AmbientSound - uid: 1466 components: - - pos: -7.5,-25.5 + - pos: -7.5,-27.5 parent: 31 type: Transform - uid: 1467 components: - - pos: -7.5,-26.5 + - pos: -16.5,-21.5 parent: 31 type: Transform - - uid: 1525 + - uid: 1472 components: - - pos: 14.5,-9.5 + - pos: -16.5,-20.5 + parent: 31 + type: Transform + - uid: 1477 + components: + - pos: 10.5,-8.5 + parent: 31 + type: Transform + - uid: 1480 + components: + - pos: -4.5,-22.5 parent: 31 type: Transform - uid: 1528 @@ -6336,11 +7597,66 @@ entities: - pos: 18.5,16.5 parent: 31 type: Transform + - uid: 1531 + components: + - pos: 31.5,19.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1532 + components: + - pos: 30.5,20.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1535 + components: + - pos: -12.5,6.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1539 + components: + - pos: 29.5,20.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1553 + components: + - pos: 31.5,22.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1554 + components: + - pos: -7.5,8.5 + parent: 31 + type: Transform + - uid: 1556 + components: + - pos: -7.5,7.5 + parent: 31 + type: Transform - uid: 1558 components: - pos: 26.5,1.5 parent: 31 type: Transform + - uid: 1563 + components: + - pos: 28.5,20.5 + parent: 31 + type: Transform + - uid: 1576 + components: + - pos: -13.5,-29.5 + parent: 31 + type: Transform - uid: 1578 components: - pos: -38.5,0.5 @@ -6394,6 +7710,16 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 1659 + components: + - pos: -10.5,-25.5 + parent: 31 + type: Transform + - uid: 1668 + components: + - pos: -9.5,-27.5 + parent: 31 + type: Transform - uid: 1693 components: - pos: -18.5,18.5 @@ -6408,6 +7734,11 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 1702 + components: + - pos: -11.5,-27.5 + parent: 31 + type: Transform - uid: 1703 components: - pos: -40.5,10.5 @@ -6427,9 +7758,29 @@ entities: - pos: -39.5,8.5 parent: 31 type: Transform - - uid: 1726 + - uid: 1707 components: - - pos: -6.5,26.5 + - pos: -1.5,-24.5 + parent: 31 + type: Transform + - uid: 1734 + components: + - pos: 0.5,-25.5 + parent: 31 + type: Transform + - uid: 1743 + components: + - pos: -13.5,7.5 + parent: 31 + type: Transform + - uid: 1748 + components: + - pos: -11.5,11.5 + parent: 31 + type: Transform + - uid: 1754 + components: + - pos: -13.5,8.5 parent: 31 type: Transform - uid: 1764 @@ -6437,23 +7788,55 @@ entities: - pos: 44.5,-24.5 parent: 31 type: Transform + - uid: 1769 + components: + - pos: -16.5,-27.5 + parent: 31 + type: Transform + - uid: 1770 + components: + - pos: -8.5,-38.5 + parent: 31 + type: Transform + - uid: 1778 + components: + - pos: 31.5,13.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1779 + components: + - pos: -10.5,-38.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound - uid: 1838 components: - pos: 22.5,21.5 parent: 31 type: Transform + - uid: 1847 + components: + - pos: -12.5,-38.5 + parent: 31 + type: Transform - uid: 1870 components: - pos: 3.5,26.5 parent: 31 type: Transform - - uid: 1878 + - uid: 1888 components: - - pos: 30.5,23.5 + - pos: -14.5,-38.5 + parent: 31 + type: Transform + - uid: 1973 + components: + - pos: -8.5,-26.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - uid: 2005 components: - pos: -24.5,4.5 @@ -6466,9 +7849,14 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 2066 + - uid: 2052 components: - - pos: -10.5,7.5 + - pos: 0.5,-28.5 + parent: 31 + type: Transform + - uid: 2054 + components: + - pos: 0.5,-30.5 parent: 31 type: Transform - uid: 2069 @@ -6478,16 +7866,13 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 2118 - components: - - pos: -12.5,9.5 - parent: 31 - type: Transform - - uid: 2120 + - uid: 2082 components: - - pos: -8.5,9.5 + - pos: -33.5,9.5 parent: 31 type: Transform + - enabled: True + type: AmbientSound - uid: 2126 components: - pos: -8.5,8.5 @@ -6498,9 +7883,16 @@ entities: - pos: 20.5,16.5 parent: 31 type: Transform - - uid: 2202 + - uid: 2183 + components: + - pos: -11.5,-17.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2200 components: - - pos: -6.5,27.5 + - pos: 0.5,-24.5 parent: 31 type: Transform - uid: 2203 @@ -6510,6 +7902,26 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 2269 + components: + - pos: -18.5,-11.5 + parent: 31 + type: Transform + - uid: 2292 + components: + - pos: -5.5,-21.5 + parent: 31 + type: Transform + - uid: 2304 + components: + - pos: -4.5,-23.5 + parent: 31 + type: Transform + - uid: 2312 + components: + - pos: -4.5,-21.5 + parent: 31 + type: Transform - uid: 2330 components: - pos: 13.5,17.5 @@ -6517,9 +7929,44 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 2374 + - uid: 2339 components: - - pos: -10.5,8.5 + - pos: -1.5,-27.5 + parent: 31 + type: Transform + - uid: 2341 + components: + - pos: -18.5,-27.5 + parent: 31 + type: Transform + - uid: 2342 + components: + - pos: -17.5,-27.5 + parent: 31 + type: Transform + - uid: 2344 + components: + - pos: 9.5,-41.5 + parent: 31 + type: Transform + - uid: 2345 + components: + - pos: 10.5,-41.5 + parent: 31 + type: Transform + - uid: 2350 + components: + - pos: 10.5,-40.5 + parent: 31 + type: Transform + - uid: 2367 + components: + - pos: -8.5,-30.5 + parent: 31 + type: Transform + - uid: 2383 + components: + - pos: -9.5,-30.5 parent: 31 type: Transform - uid: 2389 @@ -6527,6 +7974,11 @@ entities: - pos: -1.5,6.5 parent: 31 type: Transform + - uid: 2393 + components: + - pos: -8.5,-21.5 + parent: 31 + type: Transform - uid: 2394 components: - pos: -3.5,6.5 @@ -6553,6 +8005,11 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 2453 + components: + - pos: 10.5,-39.5 + parent: 31 + type: Transform - uid: 2482 components: - pos: -17.5,16.5 @@ -6565,14 +8022,21 @@ entities: - pos: 12.5,25.5 parent: 31 type: Transform - - uid: 2506 + - uid: 2488 components: - - pos: -28.5,12.5 + - pos: 43.5,-5.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 2507 + - uid: 2506 + components: + - pos: -28.5,12.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2507 components: - pos: -28.5,11.5 parent: 31 @@ -6634,16 +8098,6 @@ entities: - pos: -21.5,9.5 parent: 31 type: Transform - - uid: 2520 - components: - - pos: -20.5,9.5 - parent: 31 - type: Transform - - uid: 2521 - components: - - pos: -20.5,11.5 - parent: 31 - type: Transform - uid: 2522 components: - pos: -23.5,8.5 @@ -6683,11 +8137,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 2531 - components: - - pos: -20.5,10.5 - parent: 31 - type: Transform - uid: 2532 components: - pos: -18.5,14.5 @@ -6782,8 +8231,6 @@ entities: - pos: -7.5,24.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - uid: 2554 components: - pos: -12.5,12.5 @@ -6801,11 +8248,6 @@ entities: - pos: -13.5,11.5 parent: 31 type: Transform - - uid: 2557 - components: - - pos: -12.5,10.5 - parent: 31 - type: Transform - uid: 2558 components: - pos: -9.5,8.5 @@ -6820,6 +8262,13 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 2561 + components: + - pos: 8.5,-38.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound - uid: 2562 components: - pos: -11.5,10.5 @@ -6840,11 +8289,6 @@ entities: - pos: -8.5,10.5 parent: 31 type: Transform - - uid: 2566 - components: - - pos: -7.5,10.5 - parent: 31 - type: Transform - uid: 2567 components: - pos: -6.5,10.5 @@ -6922,6 +8366,13 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 2583 + components: + - pos: 8.5,-36.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound - uid: 2584 components: - pos: -3.5,15.5 @@ -6961,11 +8412,9 @@ entities: type: Transform - uid: 2591 components: - - pos: -0.5,9.5 + - pos: -43.5,-11.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - uid: 2592 components: - pos: -3.5,14.5 @@ -6976,8 +8425,6 @@ entities: - pos: -4.5,14.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - uid: 2594 components: - pos: -5.5,14.5 @@ -7115,13 +8562,6 @@ entities: - pos: -14.5,20.5 parent: 31 type: Transform - - uid: 2621 - components: - - pos: -1.5,9.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - uid: 2622 components: - pos: -2.5,14.5 @@ -7470,6 +8910,13 @@ entities: - pos: -27.5,-1.5 parent: 31 type: Transform + - uid: 2697 + components: + - pos: 8.5,-35.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound - uid: 2698 components: - pos: -31.5,-6.5 @@ -7533,65 +8980,14 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 2707 - components: - - pos: -32.5,1.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2709 - components: - - pos: -21.5,-12.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - uid: 2710 components: - - pos: -21.5,-13.5 + - pos: -7.5,-30.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - uid: 2711 components: - - pos: -21.5,-14.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2712 - components: - - pos: -10.5,6.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2713 - components: - - pos: -22.5,-14.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2714 - components: - - pos: -23.5,-14.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2715 - components: - - pos: -24.5,-14.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2716 - components: - - pos: -24.5,-13.5 + - pos: -22.5,-12.5 parent: 31 type: Transform - uid: 2717 @@ -8130,168 +9526,63 @@ entities: type: Transform - uid: 2826 components: - - pos: -1.5,-18.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2827 - components: - - pos: -1.5,-19.5 + - pos: -2.5,-27.5 parent: 31 type: Transform - uid: 2828 components: - - pos: -1.5,-20.5 - parent: 31 - type: Transform - - uid: 2829 - components: - - pos: -0.5,-19.5 + - pos: -15.5,-27.5 parent: 31 type: Transform - uid: 2830 components: - - pos: -2.5,-19.5 + - pos: -10.5,-27.5 parent: 31 type: Transform - uid: 2831 components: - - pos: -3.5,-19.5 + - pos: -11.5,-29.5 parent: 31 type: Transform - uid: 2832 components: - - pos: -4.5,-19.5 + - pos: -10.5,-28.5 parent: 31 type: Transform - uid: 2833 components: - - pos: -3.5,-20.5 + - pos: -9.5,-32.5 parent: 31 type: Transform - uid: 2834 components: - - pos: -3.5,-21.5 + - pos: -9.5,-34.5 parent: 31 type: Transform - uid: 2835 components: - - pos: -3.5,-23.5 + - pos: -15.5,-35.5 parent: 31 type: Transform + - enabled: True + type: AmbientSound - uid: 2836 components: - - pos: -3.5,-22.5 - parent: 31 - type: Transform - - uid: 2837 - components: - - pos: -2.5,-23.5 - parent: 31 - type: Transform - - uid: 2838 - components: - - pos: -9.5,-21.5 + - pos: -14.5,-35.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 2839 - components: - - pos: -9.5,-22.5 - parent: 31 - type: Transform - - uid: 2840 - components: - - pos: -9.5,-23.5 - parent: 31 - type: Transform - - uid: 2841 - components: - - pos: -8.5,-23.5 - parent: 31 - type: Transform - - uid: 2842 - components: - - pos: -7.5,-23.5 - parent: 31 - type: Transform - - uid: 2843 + - uid: 2837 components: - - pos: -7.5,-24.5 + - pos: -9.5,-36.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 2845 - components: - - pos: -9.5,-20.5 - parent: 31 - type: Transform - - uid: 2846 - components: - - pos: -10.5,-20.5 - parent: 31 - type: Transform - - uid: 2847 - components: - - pos: -11.5,-20.5 - parent: 31 - type: Transform - - uid: 2848 - components: - - pos: -11.5,-19.5 - parent: 31 - type: Transform - - uid: 2849 - components: - - pos: -9.5,-19.5 - parent: 31 - type: Transform - - uid: 2850 - components: - - pos: -9.5,-18.5 - parent: 31 - type: Transform - - uid: 2851 - components: - - pos: -9.5,-17.5 - parent: 31 - type: Transform - - uid: 2852 - components: - - pos: -8.5,-17.5 - parent: 31 - type: Transform - - uid: 2853 - components: - - pos: -3.5,-18.5 - parent: 31 - type: Transform - - uid: 2855 - components: - - pos: -3.5,-17.5 - parent: 31 - type: Transform - - uid: 2856 - components: - - pos: -3.5,-16.5 - parent: 31 - type: Transform - - uid: 2857 - components: - - pos: -3.5,-15.5 - parent: 31 - type: Transform - - uid: 2858 - components: - - pos: -3.5,-14.5 - parent: 31 - type: Transform - - uid: 2859 + - uid: 2838 components: - - pos: -3.5,-13.5 + - pos: -0.5,-30.5 parent: 31 type: Transform - uid: 2860 @@ -8299,36 +9590,11 @@ entities: - pos: -3.5,-12.5 parent: 31 type: Transform - - uid: 2861 - components: - - pos: -2.5,-13.5 - parent: 31 - type: Transform - - uid: 2862 - components: - - pos: -1.5,-13.5 - parent: 31 - type: Transform - - uid: 2863 - components: - - pos: -1.5,-17.5 - parent: 31 - type: Transform - - uid: 2864 - components: - - pos: -0.5,-17.5 - parent: 31 - type: Transform - - uid: 2865 - components: - - pos: 0.5,-17.5 - parent: 31 - type: Transform - enabled: True type: AmbientSound - - uid: 2866 + - uid: 2865 components: - - pos: -4.5,-14.5 + - pos: -14.5,-29.5 parent: 31 type: Transform - uid: 2867 @@ -8336,130 +9602,67 @@ entities: - pos: -4.5,-12.5 parent: 31 type: Transform - - uid: 2868 - components: - - pos: -4.5,-17.5 - parent: 31 - type: Transform + - enabled: True + type: AmbientSound - uid: 2869 components: - pos: -5.5,-12.5 parent: 31 type: Transform + - enabled: True + type: AmbientSound - uid: 2870 components: - - pos: -6.5,-12.5 + - pos: 0.5,-29.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - uid: 2871 components: - - pos: -5.5,-14.5 + - pos: -0.5,-27.5 parent: 31 type: Transform - - uid: 2872 + - uid: 2873 components: - - pos: -14.5,-16.5 + - pos: -13.5,-35.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 2873 - components: - - pos: -14.5,-17.5 - parent: 31 - type: Transform - - uid: 2874 - components: - - pos: -14.5,-18.5 - parent: 31 - type: Transform - uid: 2875 components: - - pos: -14.5,-19.5 + - pos: -6.5,-31.5 parent: 31 type: Transform - uid: 2876 components: - - pos: -14.5,-20.5 - parent: 31 - type: Transform - - uid: 2877 - components: - - pos: -14.5,-21.5 - parent: 31 - type: Transform - - uid: 2878 - components: - - pos: -14.5,-22.5 + - pos: -3.5,-27.5 parent: 31 type: Transform - uid: 2879 components: - - pos: -14.5,-23.5 + - pos: -2.5,-30.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - uid: 2880 components: - - pos: -14.5,-24.5 + - pos: 0.5,-27.5 parent: 31 type: Transform - uid: 2881 components: - - pos: -14.5,-25.5 + - pos: -10.5,-30.5 parent: 31 type: Transform - uid: 2882 components: - - pos: -15.5,-25.5 + - pos: -10.5,-26.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - uid: 2883 components: - pos: -16.5,-25.5 parent: 31 type: Transform - - uid: 2884 - components: - - pos: -15.5,-22.5 - parent: 31 - type: Transform - - uid: 2885 - components: - - pos: -16.5,-22.5 - parent: 31 - type: Transform - - uid: 2886 - components: - - pos: -17.5,-22.5 - parent: 31 - type: Transform - - uid: 2887 - components: - - pos: -1.5,-23.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2888 - components: - - pos: -0.5,-23.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2889 - components: - - pos: 0.5,-23.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - uid: 2890 components: - pos: 7.5,-17.5 @@ -8541,13 +9744,6 @@ entities: - pos: 9.5,-13.5 parent: 31 type: Transform - - uid: 2908 - components: - - pos: 10.5,-13.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - uid: 2911 components: - pos: 22.5,-5.5 @@ -8681,11 +9877,6 @@ entities: - pos: 18.5,-11.5 parent: 31 type: Transform - - uid: 2937 - components: - - pos: 18.5,-12.5 - parent: 31 - type: Transform - uid: 2938 components: - pos: 18.5,-13.5 @@ -8711,21 +9902,9 @@ entities: - pos: 18.5,-17.5 parent: 31 type: Transform - - uid: 2943 - components: - - pos: 18.5,-18.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - uid: 2944 components: - - pos: 18.5,-19.5 - parent: 31 - type: Transform - - uid: 2945 - components: - - pos: 18.5,-20.5 + - pos: -22.5,-8.5 parent: 31 type: Transform - uid: 2946 @@ -8733,38 +9912,6 @@ entities: - pos: 19.5,-13.5 parent: 31 type: Transform - - uid: 2947 - components: - - pos: 20.5,-13.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2948 - components: - - pos: 21.5,-13.5 - parent: 31 - type: Transform - - uid: 2950 - components: - - pos: 22.5,-13.5 - parent: 31 - type: Transform - - uid: 2951 - components: - - pos: 23.5,-13.5 - parent: 31 - type: Transform - - uid: 2952 - components: - - pos: 24.5,-13.5 - parent: 31 - type: Transform - - uid: 2953 - components: - - pos: 8.5,-12.5 - parent: 31 - type: Transform - uid: 2954 components: - pos: 8.5,-11.5 @@ -8819,11 +9966,6 @@ entities: - pos: 12.5,-7.5 parent: 31 type: Transform - - uid: 2964 - components: - - pos: 14.5,-8.5 - parent: 31 - type: Transform - uid: 2965 components: - pos: 14.5,-7.5 @@ -9015,13 +10157,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 3003 - components: - - pos: 1.5,-23.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - uid: 3004 components: - pos: 2.5,-23.5 @@ -9276,15 +10411,11 @@ entities: - pos: 43.5,-0.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - uid: 3069 components: - pos: 43.5,-1.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - uid: 3070 components: - pos: 43.5,-2.5 @@ -9422,16 +10553,22 @@ entities: - pos: 27.5,-8.5 parent: 31 type: Transform + - enabled: True + type: AmbientSound - uid: 3093 components: - pos: 27.5,-9.5 parent: 31 type: Transform + - enabled: True + type: AmbientSound - uid: 3094 components: - pos: 27.5,-10.5 parent: 31 type: Transform + - enabled: True + type: AmbientSound - uid: 3095 components: - pos: 27.5,-11.5 @@ -9509,69 +10646,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 3106 - components: - - pos: 47.5,-1.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3107 - components: - - pos: 47.5,-2.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3108 - components: - - pos: 47.5,-3.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3109 - components: - - pos: 48.5,-2.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3110 - components: - - pos: 49.5,-2.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3111 - components: - - pos: 50.5,-2.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3112 - components: - - pos: 51.5,-2.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3113 - components: - - pos: 51.5,-3.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3114 - components: - - pos: 51.5,-4.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - uid: 3119 components: - pos: 28.5,14.5 @@ -10209,19 +11283,31 @@ entities: - pos: -1.5,23.5 parent: 31 type: Transform - - uid: 3368 + - uid: 3305 components: - - pos: -0.5,-15.5 + - pos: 31.5,26.5 parent: 31 type: Transform - - uid: 3370 + - enabled: True + type: AmbientSound + - uid: 3318 components: - - pos: -1.5,-15.5 + - pos: 13.5,-14.5 parent: 31 type: Transform - - uid: 3371 + - uid: 3384 components: - - pos: -6.5,28.5 + - pos: -6.5,-28.5 + parent: 31 + type: Transform + - uid: 3388 + components: + - pos: -7.5,-19.5 + parent: 31 + type: Transform + - uid: 3418 + components: + - pos: 15.5,-14.5 parent: 31 type: Transform - uid: 3536 @@ -10231,6 +11317,13 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 3619 + components: + - pos: -4.5,25.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound - uid: 3625 components: - pos: 28.5,11.5 @@ -10274,15 +11367,11 @@ entities: - pos: -4.5,12.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - uid: 3845 components: - pos: -4.5,13.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - uid: 3853 components: - pos: 22.5,-7.5 @@ -10442,6 +11531,11 @@ entities: - pos: -22.5,-22.5 parent: 31 type: Transform + - uid: 4012 + components: + - pos: 11.5,-14.5 + parent: 31 + type: Transform - uid: 4022 components: - pos: -18.5,13.5 @@ -10454,16 +11548,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 4027 - components: - - pos: -5.5,-26.5 - parent: 31 - type: Transform - - uid: 4029 - components: - - pos: -4.5,-26.5 - parent: 31 - type: Transform - uid: 4035 components: - pos: -6.5,3.5 @@ -10524,39 +11608,43 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 4138 + - uid: 4159 components: - - pos: 11.5,-13.5 + - pos: -42.5,8.5 parent: 31 type: Transform - - uid: 4157 + - enabled: True + type: AmbientSound + - uid: 4208 components: - - pos: 26.5,-10.5 + - pos: -38.5,-11.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 4158 + - uid: 4212 components: - - pos: 25.5,-10.5 + - pos: -22.5,-15.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 4159 + - uid: 4213 components: - - pos: -42.5,8.5 + - pos: -4.5,-19.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 4208 + - uid: 4224 components: - - pos: -38.5,-11.5 + - pos: -4.5,-20.5 + parent: 31 + type: Transform + - uid: 4228 + components: + - pos: 15.5,-13.5 + parent: 31 + type: Transform + - uid: 4252 + components: + - pos: 12.5,-14.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - uid: 4253 components: - pos: 17.5,-10.5 @@ -10577,11 +11665,6 @@ entities: - pos: 47.5,2.5 parent: 31 type: Transform - - uid: 4285 - components: - - pos: -4.5,-30.5 - parent: 31 - type: Transform - uid: 4310 components: - pos: -40.5,8.5 @@ -10601,13 +11684,6 @@ entities: - pos: 33.5,-22.5 parent: 31 type: Transform - - uid: 4410 - components: - - pos: 47.5,-4.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - uid: 4491 components: - pos: 29.5,-17.5 @@ -10650,46 +11726,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 4500 - components: - - pos: 48.5,-6.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4501 - components: - - pos: 51.5,-5.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4502 - components: - - pos: 51.5,-6.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - uid: 4505 components: - pos: 29.5,-9.5 parent: 31 type: Transform - - uid: 4589 - components: - - pos: 50.5,-6.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4590 - components: - - pos: 47.5,-5.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - uid: 4591 components: - pos: 36.5,-14.5 @@ -10756,18 +11797,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 4649 - components: - - pos: 47.5,-6.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4664 - components: - - pos: -3.5,-30.5 - parent: 31 - type: Transform - uid: 4665 components: - pos: 39.5,-24.5 @@ -10808,16 +11837,6 @@ entities: - pos: 33.5,-23.5 parent: 31 type: Transform - - uid: 4682 - components: - - pos: -2.5,-30.5 - parent: 31 - type: Transform - - uid: 4709 - components: - - pos: -0.5,-30.5 - parent: 31 - type: Transform - uid: 4720 components: - pos: 7.5,-29.5 @@ -10968,11 +11987,25 @@ entities: - pos: 6.5,-25.5 parent: 31 type: Transform + - uid: 4829 + components: + - pos: 31.5,23.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound - uid: 4832 components: - pos: 4.5,-25.5 parent: 31 type: Transform + - uid: 4835 + components: + - pos: -15.5,-36.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound - uid: 4859 components: - pos: -15.5,-10.5 @@ -11006,6 +12039,16 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 4869 + components: + - pos: -15.5,-38.5 + parent: 31 + type: Transform + - uid: 4903 + components: + - pos: -15.5,-37.5 + parent: 31 + type: Transform - uid: 4919 components: - pos: 12.5,26.5 @@ -11079,6 +12122,13 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 4971 + components: + - pos: 47.5,24.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound - uid: 4972 components: - pos: 26.5,-24.5 @@ -11152,6 +12202,18 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 5125 + components: + - pos: 52.5,17.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5128 + components: + - pos: -23.5,-15.5 + parent: 31 + type: Transform - uid: 5134 components: - pos: 15.5,-10.5 @@ -11226,6 +12288,11 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 5258 + components: + - pos: 8.5,-30.5 + parent: 31 + type: Transform - uid: 5285 components: - pos: 14.5,-29.5 @@ -11262,6 +12329,11 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 5293 + components: + - pos: -12.5,-29.5 + parent: 31 + type: Transform - uid: 5302 components: - pos: 15.5,-30.5 @@ -11290,32 +12362,121 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 5345 + components: + - pos: -7.5,-38.5 + parent: 31 + type: Transform + - uid: 5349 + components: + - pos: -17.5,-35.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5707 + components: + - pos: -18.5,-35.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5711 + components: + - pos: -9.5,-38.5 + parent: 31 + type: Transform + - uid: 5746 + components: + - pos: -14.5,-25.5 + parent: 31 + type: Transform + - uid: 5764 + components: + - pos: -15.5,-26.5 + parent: 31 + type: Transform - uid: 5773 components: - pos: -39.5,-11.5 parent: 31 type: Transform + - uid: 5938 + components: + - pos: 46.5,24.5 + parent: 31 + type: Transform - enabled: True type: AmbientSound + - uid: 5976 + components: + - pos: -22.5,-9.5 + parent: 31 + type: Transform - uid: 5977 components: - pos: -40.5,-11.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - uid: 5979 components: - pos: -37.5,-11.5 parent: 31 type: Transform - - uid: 6182 + - uid: 5993 + components: + - pos: -11.5,-18.5 + parent: 31 + type: Transform + - uid: 6115 + components: + - pos: -21.5,-12.5 + parent: 31 + type: Transform + - uid: 6116 + components: + - pos: -22.5,-11.5 + parent: 31 + type: Transform + - uid: 6127 components: - - pos: 30.5,25.5 + - pos: -11.5,-38.5 + parent: 31 + type: Transform + - uid: 6129 + components: + - pos: -8.5,-29.5 + parent: 31 + type: Transform + - uid: 6130 + components: + - pos: 1.5,-30.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6316 + components: + - pos: -14.5,-23.5 parent: 31 type: Transform - enabled: True type: AmbientSound + - uid: 6322 + components: + - pos: -15.5,-24.5 + parent: 31 + type: Transform + - uid: 6323 + components: + - pos: -16.5,-22.5 + parent: 31 + type: Transform + - uid: 6324 + components: + - pos: -15.5,-21.5 + parent: 31 + type: Transform - uid: 6331 components: - pos: 47.5,15.5 @@ -11531,11 +12692,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 6422 - components: - - pos: 30.5,8.5 - parent: 31 - type: Transform - uid: 6423 components: - pos: 35.5,11.5 @@ -11546,13 +12702,6 @@ entities: - pos: 35.5,12.5 parent: 31 type: Transform - - uid: 6425 - components: - - pos: 32.5,18.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - uid: 6426 components: - pos: 31.5,17.5 @@ -11560,11 +12709,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 6427 - components: - - pos: 30.5,16.5 - parent: 31 - type: Transform - uid: 6428 components: - pos: 35.5,13.5 @@ -11618,13 +12762,6 @@ entities: - pos: 49.5,11.5 parent: 31 type: Transform - - uid: 6444 - components: - - pos: 50.5,16.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - uid: 6457 components: - pos: 44.5,9.5 @@ -11645,6 +12782,13 @@ entities: - pos: 38.5,11.5 parent: 31 type: Transform + - uid: 6501 + components: + - pos: 52.5,16.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound - uid: 6507 components: - pos: 49.5,8.5 @@ -11711,23 +12855,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 6522 - components: - - pos: 31.5,18.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6523 - components: - - pos: 30.5,17.5 - parent: 31 - type: Transform - - uid: 6524 - components: - - pos: 30.5,15.5 - parent: 31 - type: Transform - uid: 6525 components: - pos: 30.5,14.5 @@ -11788,6 +12915,13 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 6574 + components: + - pos: 50.5,18.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound - uid: 6596 components: - pos: 44.5,6.5 @@ -11882,13 +13016,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 6826 - components: - - pos: 50.5,17.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - uid: 6829 components: - pos: 41.5,6.5 @@ -11919,11 +13046,28 @@ entities: - pos: 51.5,2.5 parent: 31 type: Transform + - uid: 6880 + components: + - pos: 31.5,11.5 + parent: 31 + type: Transform - uid: 6887 components: - pos: 48.5,13.5 parent: 31 type: Transform + - uid: 6891 + components: + - pos: -16.5,-23.5 + parent: 31 + type: Transform + - uid: 6960 + components: + - pos: -9.5,-37.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound - uid: 6981 components: - pos: 41.5,-24.5 @@ -11946,13 +13090,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 7028 - components: - - pos: 49.5,-6.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - uid: 7030 components: - pos: 31.5,-9.5 @@ -12005,78 +13142,218 @@ entities: - pos: 24.5,9.5 parent: 31 type: Transform - - uid: 7124 + - uid: 7144 components: - - pos: 23.5,-13.5 + - pos: 8.5,26.5 parent: 31 type: Transform - - uid: 7125 + - uid: 7148 components: - - pos: 24.5,-14.5 + - pos: -32.5,1.5 parent: 31 type: Transform - - uid: 7144 + - enabled: True + type: AmbientSound + - uid: 7243 components: - - pos: 8.5,26.5 + - pos: 23.5,-12.5 parent: 31 type: Transform - - uid: 7423 + - enabled: True + type: AmbientSound + - uid: 7251 components: - - pos: -20.5,16.5 + - pos: -18.5,9.5 + parent: 31 + type: Transform + - uid: 7258 + components: + - pos: 23.5,-9.5 + parent: 31 + type: Transform + - uid: 7284 + components: + - pos: 23.5,-10.5 + parent: 31 + type: Transform + - uid: 7338 + components: + - pos: -18.5,-12.5 + parent: 31 + type: Transform + - uid: 7359 + components: + - pos: -19.5,-12.5 + parent: 31 + type: Transform + - uid: 7383 + components: + - pos: -11.5,-16.5 + parent: 31 + type: Transform + - uid: 7386 + components: + - pos: -7.5,-31.5 + parent: 31 + type: Transform + - uid: 7387 + components: + - pos: -1.5,-30.5 + parent: 31 + type: Transform + - uid: 7388 + components: + - pos: 0.5,-26.5 + parent: 31 + type: Transform + - uid: 7389 + components: + - pos: -11.5,-15.5 + parent: 31 + type: Transform + - uid: 7390 + components: + - pos: -12.5,-19.5 + parent: 31 + type: Transform + - uid: 7391 + components: + - pos: -8.5,-20.5 + parent: 31 + type: Transform + - uid: 7392 + components: + - pos: -10.5,-21.5 + parent: 31 + type: Transform + - uid: 7393 + components: + - pos: -10.5,-20.5 + parent: 31 + type: Transform + - uid: 7394 + components: + - pos: 8.5,-31.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 7428 + - uid: 7395 components: - - pos: -19.5,16.5 + - pos: 8.5,-34.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 7465 + - uid: 7396 components: - - pos: -6.5,-25.5 + - pos: -10.5,-29.5 + parent: 31 + type: Transform + - uid: 7397 + components: + - pos: -8.5,-27.5 + parent: 31 + type: Transform + - uid: 7398 + components: + - pos: -10.5,-35.5 + parent: 31 + type: Transform + - uid: 7399 + components: + - pos: -11.5,-35.5 + parent: 31 + type: Transform + - uid: 7400 + components: + - pos: -12.5,-35.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 7474 + - uid: 7401 components: - - pos: 3.5,-29.5 + - pos: -9.5,-33.5 parent: 31 type: Transform - - uid: 7476 + - uid: 7402 components: - - pos: -32.5,17.5 + - pos: -9.5,-35.5 parent: 31 type: Transform - - uid: 7519 + - uid: 7403 components: - - pos: -7.5,31.5 + - pos: -16.5,-35.5 parent: 31 type: Transform - - uid: 7541 + - enabled: True + type: AmbientSound + - uid: 7404 components: - - pos: -25.5,-14.5 + - pos: 8.5,-32.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 7542 + - uid: 7408 components: - - pos: -26.5,-14.5 + - pos: -10.5,-19.5 + parent: 31 + type: Transform + - uid: 7411 + components: + - pos: -11.5,-19.5 + parent: 31 + type: Transform + - uid: 7418 + components: + - pos: 8.5,-37.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 7543 + - uid: 7423 + components: + - pos: -20.5,16.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7424 + components: + - pos: -15.5,-25.5 + parent: 31 + type: Transform + - uid: 7428 + components: + - pos: -19.5,16.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7439 + components: + - pos: -8.5,-22.5 + parent: 31 + type: Transform + - uid: 7440 components: - - pos: -27.5,-14.5 + - pos: -6.5,-38.5 parent: 31 type: Transform - enabled: True type: AmbientSound + - uid: 7466 + components: + - pos: -22.5,-13.5 + parent: 31 + type: Transform + - uid: 7474 + components: + - pos: 3.5,-29.5 + parent: 31 + type: Transform - uid: 7637 components: - pos: -37.5,-9.5 @@ -12087,8 +13364,6 @@ entities: - pos: -38.5,-9.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - uid: 7648 components: - pos: -25.5,-6.5 @@ -12109,21 +13384,18 @@ entities: - pos: -14.5,14.5 parent: 31 type: Transform - - uid: 7676 - components: - - pos: -5.5,31.5 - parent: 31 - type: Transform - - uid: 7677 + - uid: 7680 components: - - pos: -4.5,31.5 + - pos: -1.5,-15.5 parent: 31 type: Transform - - uid: 7696 + - uid: 7695 components: - - pos: -6.5,29.5 + - pos: 49.5,18.5 parent: 31 type: Transform + - enabled: True + type: AmbientSound - uid: 7714 components: - pos: -36.5,11.5 @@ -12279,33 +13551,24 @@ entities: - pos: -24.5,13.5 parent: 31 type: Transform - - uid: 7846 - components: - - pos: 30.5,24.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7944 + - uid: 7845 components: - - pos: -35.5,17.5 + - pos: -17.5,-12.5 parent: 31 type: Transform - - uid: 8019 + - uid: 7897 components: - - pos: -6.5,31.5 + - pos: -0.5,-24.5 parent: 31 type: Transform - - uid: 8048 + - uid: 7906 components: - - pos: 29.5,17.5 + - pos: -17.5,9.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 8049 + - uid: 7925 components: - - pos: 29.5,18.5 + - pos: 53.5,16.5 parent: 31 type: Transform - enabled: True @@ -12327,20 +13590,6 @@ entities: - pos: -39.5,2.5 parent: 31 type: Transform - - uid: 8057 - components: - - pos: 30.5,21.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8058 - components: - - pos: 32.5,24.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - uid: 8059 components: - pos: 33.5,24.5 @@ -12447,26 +13696,6 @@ entities: - pos: 49.5,-1.5 parent: 31 type: Transform - - uid: 8148 - components: - - pos: 49.5,-0.5 - parent: 31 - type: Transform - - uid: 8149 - components: - - pos: 49.5,-3.5 - parent: 31 - type: Transform - - uid: 8150 - components: - - pos: 49.5,-4.5 - parent: 31 - type: Transform - - uid: 8151 - components: - - pos: 49.5,-5.5 - parent: 31 - type: Transform - uid: 8152 components: - pos: 54.5,2.5 @@ -12512,26 +13741,6 @@ entities: - pos: 60.5,0.5 parent: 31 type: Transform - - uid: 8161 - components: - - pos: 60.5,-0.5 - parent: 31 - type: Transform - - uid: 8162 - components: - - pos: 60.5,-1.5 - parent: 31 - type: Transform - - uid: 8163 - components: - - pos: 57.5,-0.5 - parent: 31 - type: Transform - - uid: 8164 - components: - - pos: 57.5,-1.5 - parent: 31 - type: Transform - uid: 8165 components: - pos: 53.5,3.5 @@ -12570,18 +13779,6 @@ entities: - pos: 55.5,3.5 parent: 31 type: Transform - - uid: 8171 - components: - - pos: 55.5,4.5 - parent: 31 - type: Transform - - uid: 8172 - components: - - pos: 55.5,5.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - uid: 8173 components: - pos: 55.5,6.5 @@ -12594,15 +13791,11 @@ entities: - pos: 56.5,6.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - uid: 8175 components: - pos: 57.5,6.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - uid: 8176 components: - pos: 58.5,6.5 @@ -12656,28 +13849,6 @@ entities: - pos: 60.5,4.5 parent: 31 type: Transform - - uid: 8208 - components: - - pos: -11.5,-25.5 - parent: 31 - type: Transform - - uid: 8210 - components: - - pos: 28.5,21.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8211 - components: - - pos: -11.5,-24.5 - parent: 31 - type: Transform - - uid: 8214 - components: - - pos: -11.5,-22.5 - parent: 31 - type: Transform - uid: 8226 components: - pos: 53.5,-24.5 @@ -12868,19 +14039,14 @@ entities: - pos: 45.5,-27.5 parent: 31 type: Transform - - uid: 8281 - components: - - pos: -11.5,-21.5 - parent: 31 - type: Transform - uid: 8282 components: - pos: 38.5,-13.5 parent: 31 type: Transform - - uid: 8287 + - uid: 8295 components: - - pos: 39.5,-13.5 + - pos: -2.5,-26.5 parent: 31 type: Transform - uid: 8297 @@ -12888,22 +14054,11 @@ entities: - pos: -40.5,-9.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - uid: 8298 components: - pos: -39.5,-9.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 8301 - components: - - pos: -35.5,-22.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - uid: 8348 components: - pos: 33.5,19.5 @@ -12911,13 +14066,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 8358 - components: - - pos: 30.5,22.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - uid: 8359 components: - pos: 33.5,23.5 @@ -12978,62 +14126,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 8489 - components: - - pos: -21.5,-11.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8490 - components: - - pos: -20.5,-11.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8491 - components: - - pos: -19.5,-11.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8492 - components: - - pos: -19.5,-12.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8493 - components: - - pos: -19.5,-13.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8494 - components: - - pos: -19.5,-14.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8495 - components: - - pos: -19.5,-15.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8496 - components: - - pos: -19.5,-17.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - uid: 8497 components: - pos: -19.5,-18.5 @@ -13368,6 +14460,13 @@ entities: - pos: 6.5,28.5 parent: 31 type: Transform + - uid: 8882 + components: + - pos: -13.5,6.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound - uid: 8957 components: - pos: 1.5,-10.5 @@ -13525,6 +14624,28 @@ entities: - pos: 3.5,8.5 parent: 31 type: Transform + - uid: 9033 + components: + - pos: -22.5,-10.5 + parent: 31 + type: Transform + - uid: 9133 + components: + - pos: -12.5,-27.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9142 + components: + - pos: 21.5,-10.5 + parent: 31 + type: Transform + - uid: 9156 + components: + - pos: 23.5,-11.5 + parent: 31 + type: Transform - uid: 9167 components: - pos: -43.5,8.5 @@ -13577,25 +14698,13 @@ entities: - pos: -39.5,6.5 parent: 31 type: Transform - - uid: 9266 - components: - - pos: -23.5,-15.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9267 + - uid: 9262 components: - - pos: -23.5,-16.5 + - pos: -2.5,-21.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 9268 - components: - - pos: -23.5,-17.5 - parent: 31 - type: Transform - uid: 9269 components: - pos: -23.5,-18.5 @@ -13608,8 +14717,6 @@ entities: - pos: -23.5,-19.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - uid: 9271 components: - pos: -24.5,-18.5 @@ -13631,55 +14738,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 9402 - components: - - pos: -8.5,-26.5 - parent: 31 - type: Transform - - uid: 9403 - components: - - pos: -10.5,-26.5 - parent: 31 - type: Transform - - uid: 9404 - components: - - pos: -9.5,-26.5 - parent: 31 - type: Transform - - uid: 9405 - components: - - pos: -11.5,-26.5 - parent: 31 - type: Transform - - uid: 9406 - components: - - pos: -11.5,-27.5 - parent: 31 - type: Transform - - uid: 9407 - components: - - pos: -11.5,-28.5 - parent: 31 - type: Transform - - uid: 9408 - components: - - pos: -11.5,-29.5 - parent: 31 - type: Transform - - uid: 9409 - components: - - pos: -11.5,-30.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9410 + - uid: 9367 components: - - pos: -11.5,-31.5 + - pos: 26.5,20.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - uid: 9411 components: - pos: -19.5,-31.5 @@ -13692,22 +14755,6 @@ entities: - pos: -18.5,-31.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 9413 - components: - - pos: -17.5,-31.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9414 - components: - - pos: -16.5,-31.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - uid: 9439 components: - pos: -19.5,-32.5 @@ -13739,64 +14786,46 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 9504 + components: + - pos: -3.5,-21.5 + parent: 31 + type: Transform + - uid: 9575 + components: + - pos: 31.5,12.5 + parent: 31 + type: Transform + - uid: 9583 + components: + - pos: 24.5,20.5 + parent: 31 + type: Transform - uid: 9629 components: - pos: -41.5,-9.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - uid: 9630 components: - pos: -42.5,-9.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - uid: 9631 components: - pos: -41.5,-11.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - uid: 9632 components: - pos: -42.5,-11.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - uid: 9727 components: - pos: -21.5,16.5 parent: 31 type: Transform - - uid: 9738 - components: - - pos: -9.5,-27.5 - parent: 31 - type: Transform - - uid: 9777 - components: - - pos: -8.5,-31.5 - parent: 31 - type: Transform - - uid: 9778 - components: - - pos: -5.5,-31.5 - parent: 31 - type: Transform - - uid: 9779 - components: - - pos: -5.5,-30.5 - parent: 31 - type: Transform - - uid: 9780 - components: - - pos: -5.5,-29.5 - parent: 31 - type: Transform - uid: 9828 components: - pos: 30.5,-17.5 @@ -13825,13 +14854,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 9896 - components: - - pos: 29.5,21.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - uid: 9927 components: - pos: 27.5,17.5 @@ -13842,29 +14864,21 @@ entities: - pos: 27.5,18.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - uid: 9929 components: - pos: 27.5,19.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - uid: 9930 components: - pos: 27.5,20.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - uid: 9931 components: - pos: 27.5,21.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - uid: 9935 components: - pos: 33.5,22.5 @@ -13900,6 +14914,11 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 9947 + components: + - pos: 25.5,20.5 + parent: 31 + type: Transform - uid: 9955 components: - pos: 34.5,37.5 @@ -13914,13 +14933,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 10012 - components: - - pos: 30.5,26.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - uid: 10055 components: - pos: 21.5,23.5 @@ -14018,50525 +15030,56873 @@ entities: - pos: -38.5,18.5 parent: 31 type: Transform -- proto: CableApcStack - entities: - - uid: 94 - components: - - pos: 48.373375,5.713002 - parent: 31 - type: Transform - - uid: 1021 + - uid: 10299 components: - - pos: 48.373375,5.713002 + - pos: -34.5,9.5 parent: 31 type: Transform - - uid: 1316 + - uid: 10329 components: - - pos: 27.24574,0.6870463 + - pos: 8.5,-41.5 parent: 31 type: Transform - - uid: 1374 + - uid: 10330 components: - - pos: 27.24574,0.6870463 + - pos: 7.5,-41.5 parent: 31 type: Transform - - uid: 1604 + - uid: 10331 components: - - pos: 40.484596,-0.68751657 + - pos: 7.5,-38.5 parent: 31 type: Transform - - uid: 4539 + - enabled: True + type: AmbientSound + - uid: 10332 components: - - pos: 60.253426,4.5485425 + - pos: 6.5,-38.5 parent: 31 type: Transform -- proto: CableHV - entities: - - uid: 11 + - enabled: True + type: AmbientSound + - uid: 10333 components: - - pos: -12.5,-19.5 + - pos: 5.5,-38.5 parent: 31 type: Transform - - uid: 23 + - enabled: True + type: AmbientSound + - uid: 10334 components: - - pos: 19.5,-30.5 + - pos: 4.5,-38.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 29 + - uid: 10335 components: - - pos: 19.5,-29.5 + - pos: 3.5,-38.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 104 + - uid: 10336 components: - - pos: 21.5,-29.5 + - pos: 2.5,-38.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 128 + - uid: 10337 components: - - pos: -25.5,18.5 + - pos: 1.5,-38.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 130 + - uid: 10338 components: - - pos: 21.5,-28.5 + - pos: 0.5,-38.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 140 + - uid: 10339 components: - - pos: -22.5,21.5 + - pos: -0.5,-38.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 290 + - uid: 10340 components: - - pos: 3.5,-20.5 + - pos: -1.5,-38.5 parent: 31 type: Transform - - uid: 412 + - enabled: True + type: AmbientSound + - uid: 10341 components: - - pos: -21.5,22.5 + - pos: -2.5,-38.5 parent: 31 type: Transform - - uid: 420 + - enabled: True + type: AmbientSound + - uid: 10342 components: - - pos: 21.5,-34.5 + - pos: 0.5,-39.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 421 + - uid: 10343 components: - - pos: 21.5,-33.5 + - pos: 0.5,-40.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 422 + - uid: 10344 components: - - pos: 21.5,-32.5 + - pos: 0.5,-41.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 437 + - uid: 10345 components: - - pos: 19.5,-34.5 + - pos: 0.5,-42.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 442 + - uid: 10346 components: - - pos: -35.5,22.5 + - pos: 0.5,-43.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 443 + - uid: 10347 components: - - pos: -35.5,23.5 + - pos: -0.5,-43.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 444 + - uid: 10348 components: - - pos: -37.5,21.5 + - pos: -1.5,-43.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 445 + - uid: 10349 components: - - pos: -37.5,22.5 + - pos: -2.5,-43.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 450 + - uid: 10350 components: - - pos: -38.5,24.5 + - pos: -2.5,-42.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 451 + - uid: 10351 components: - - pos: -37.5,23.5 + - pos: -3.5,-38.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 452 + - uid: 10496 components: - - pos: -35.5,21.5 + - pos: -31.5,-13.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 453 + - uid: 10497 components: - - pos: -33.5,23.5 + - pos: -31.5,-14.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 455 + - uid: 10501 components: - - pos: -31.5,23.5 + - pos: -30.5,-14.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 456 + - uid: 10502 components: - - pos: -33.5,21.5 + - pos: -30.5,-15.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 457 + - uid: 10556 components: - - pos: -33.5,22.5 + - pos: 22.5,-10.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 458 + - uid: 10562 components: - - pos: -35.5,26.5 + - pos: -30.5,-16.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 459 + - uid: 10563 components: - - pos: -35.5,25.5 + - pos: -30.5,-17.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 460 + - uid: 10564 components: - - pos: -37.5,27.5 + - pos: -30.5,-18.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 461 + - uid: 10565 components: - - pos: -37.5,26.5 + - pos: -30.5,-19.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 464 + - uid: 10566 components: - - pos: -37.5,25.5 + - pos: -31.5,-16.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 465 + - uid: 10567 components: - - pos: 32.5,-31.5 + - pos: -32.5,-16.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 466 + - uid: 10568 components: - - pos: 30.5,-31.5 + - pos: -33.5,-16.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 468 + - uid: 10569 components: - - pos: 29.5,-33.5 + - pos: -34.5,-16.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 470 + - uid: 10570 components: - - pos: 31.5,-31.5 + - pos: -35.5,-16.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 471 + - uid: 10571 components: - - pos: 29.5,-30.5 + - pos: -31.5,-11.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 479 + - uid: 10572 components: - - pos: 27.5,-29.5 + - pos: -32.5,-11.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 480 + - uid: 10573 components: - - pos: 27.5,-28.5 + - pos: -33.5,-11.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 481 + - uid: 10574 components: - - pos: 29.5,-28.5 + - pos: -30.5,-11.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 482 + - uid: 10575 components: - - pos: 29.5,-29.5 + - pos: -29.5,-11.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 483 + - uid: 10576 components: - - pos: 27.5,-30.5 + - pos: -28.5,-11.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 485 + - uid: 10577 components: - - pos: 27.5,-32.5 + - pos: -27.5,-11.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 486 + - uid: 10578 components: - - pos: 25.5,-32.5 + - pos: -26.5,-11.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 487 + - uid: 10579 components: - - pos: 27.5,-33.5 + - pos: -29.5,-18.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 488 + - uid: 10580 components: - - pos: 27.5,-34.5 + - pos: -28.5,-18.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 489 + - uid: 10608 components: - - pos: 25.5,-33.5 + - pos: 51.5,-2.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 499 + - uid: 10615 components: - - pos: 23.5,-35.5 + - pos: 55.5,-3.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 500 + - uid: 10659 components: - - pos: 23.5,-34.5 + - pos: 56.5,-3.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 502 + - uid: 10664 components: - - pos: 23.5,-33.5 + - pos: 39.5,-12.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 504 + - uid: 10665 components: - - pos: 23.5,-32.5 + - pos: 40.5,-12.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 505 + - uid: 10666 components: - - pos: 23.5,-30.5 + - pos: 41.5,-12.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 506 + - uid: 10667 components: - - pos: 23.5,-28.5 + - pos: 42.5,-12.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 507 + - uid: 10668 components: - - pos: 23.5,-29.5 + - pos: 43.5,-12.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 508 + - uid: 10669 components: - - pos: 23.5,-27.5 + - pos: 44.5,-12.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 509 + - uid: 10670 components: - - pos: 25.5,-28.5 + - pos: 45.5,-12.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 510 + - uid: 10671 components: - - pos: 25.5,-29.5 + - pos: 56.5,-4.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 511 + - uid: 10672 components: - - pos: 25.5,-30.5 + - pos: 57.5,-4.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 512 + - uid: 10673 components: - - pos: 25.5,-35.5 + - pos: 43.5,-4.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 513 + - uid: 10674 components: - - pos: 25.5,-34.5 + - pos: 44.5,-4.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 544 + - uid: 10675 components: - - pos: -24.5,19.5 + - pos: 45.5,-4.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 605 + - uid: 10676 components: - - pos: -9.5,-26.5 + - pos: 45.5,-5.5 parent: 31 type: Transform - - uid: 617 + - enabled: True + type: AmbientSound + - uid: 10677 components: - - pos: 10.5,19.5 + - pos: 45.5,-6.5 parent: 31 type: Transform - - uid: 637 + - enabled: True + type: AmbientSound + - uid: 10678 components: - - pos: 3.5,-23.5 + - pos: 45.5,-7.5 parent: 31 type: Transform - - uid: 642 + - enabled: True + type: AmbientSound + - uid: 10679 components: - - pos: 25.5,12.5 + - pos: 45.5,-8.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 692 + - uid: 10680 components: - - pos: -0.5,-8.5 + - pos: 45.5,-9.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 700 + - uid: 10681 components: - - pos: 3.5,-22.5 + - pos: 58.5,-4.5 parent: 31 type: Transform - - uid: 702 + - uid: 10682 components: - - pos: 3.5,-21.5 + - pos: 43.5,-6.5 parent: 31 type: Transform - - uid: 756 + - uid: 10683 components: - - pos: 14.5,11.5 + - pos: 42.5,-6.5 parent: 31 type: Transform - - uid: 785 + - uid: 10684 components: - - pos: -11.5,-26.5 + - pos: 41.5,-6.5 parent: 31 type: Transform - - uid: 808 + - enabled: True + type: AmbientSound + - uid: 10685 components: - - pos: -11.5,-23.5 + - pos: 41.5,-7.5 parent: 31 type: Transform - - uid: 831 + - enabled: True + type: AmbientSound + - uid: 10686 components: - - pos: 58.5,-1.5 + - pos: 41.5,-8.5 parent: 31 type: Transform - - uid: 832 + - enabled: True + type: AmbientSound + - uid: 10687 components: - - pos: 57.5,-1.5 + - pos: 41.5,-9.5 parent: 31 type: Transform - - uid: 878 + - uid: 10688 components: - - pos: 51.5,3.5 + - pos: 42.5,-9.5 parent: 31 type: Transform - - uid: 932 + - enabled: True + type: AmbientSound + - uid: 10739 components: - - pos: 19.5,-32.5 + - pos: -13.5,9.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 972 + - uid: 10740 components: - - pos: 29.5,-34.5 + - pos: -11.5,7.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 1112 + - uid: 10741 components: - - pos: 32.5,6.5 + - pos: -9.5,7.5 parent: 31 type: Transform - - uid: 1117 + - enabled: True + type: AmbientSound + - uid: 10742 components: - - pos: 32.5,7.5 + - pos: -7.5,9.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 1119 + - uid: 10743 components: - - pos: 34.5,8.5 + - pos: -8.5,6.5 parent: 31 type: Transform - - uid: 1141 + - enabled: True + type: AmbientSound + - uid: 10744 components: - - pos: 34.5,6.5 + - pos: -7.5,6.5 parent: 31 type: Transform - - uid: 1273 + - enabled: True + type: AmbientSound + - uid: 10745 components: - - pos: 43.5,-0.5 + - pos: -12.5,6.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 1346 + - uid: 10746 components: - - pos: 32.5,5.5 + - pos: -13.5,6.5 parent: 31 type: Transform - - uid: 1347 + - enabled: True + type: AmbientSound + - uid: 10750 components: - - pos: 32.5,4.5 + - pos: -7.5,10.5 parent: 31 type: Transform - - uid: 1380 + - uid: 10768 components: - - pos: 64.5,-2.5 + - pos: -44.5,-11.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 1577 + - uid: 10769 components: - - pos: 64.5,1.5 + - pos: -45.5,-11.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 1609 + - uid: 10770 components: - - pos: 32.5,3.5 + - pos: -46.5,-11.5 parent: 31 type: Transform - - uid: 1614 + - uid: 10771 components: - - pos: 70.5,-4.5 + - pos: -47.5,-11.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 1615 + - uid: 10772 components: - - pos: 64.5,-3.5 + - pos: -48.5,-11.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 1631 + - uid: 10773 components: - - pos: 65.5,-4.5 + - pos: -49.5,-11.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 1640 + - uid: 10774 components: - - pos: -29.5,22.5 + - pos: -50.5,-11.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 1696 + - uid: 10775 components: - - pos: 8.5,13.5 + - pos: -51.5,-11.5 parent: 31 type: Transform - - uid: 1728 + - uid: 10776 components: - - pos: 56.5,0.5 + - pos: -52.5,-11.5 parent: 31 type: Transform - - uid: 1740 + - uid: 10777 components: - - pos: 33.5,3.5 + - pos: -43.5,-9.5 parent: 31 type: Transform - - uid: 1742 + - uid: 10778 components: - - pos: 28.5,12.5 + - pos: -44.5,-9.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 1973 + - uid: 10779 components: - - pos: -15.5,-19.5 + - pos: -45.5,-9.5 parent: 31 type: Transform - - uid: 2009 + - uid: 10780 components: - - pos: -18.5,14.5 + - pos: -46.5,-9.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 2050 + - uid: 10781 components: - - pos: -16.5,-18.5 + - pos: -47.5,-9.5 parent: 31 type: Transform - - uid: 2052 + - uid: 10782 components: - - pos: -16.5,-17.5 + - pos: -48.5,-9.5 parent: 31 type: Transform - - uid: 2055 + - uid: 10783 components: - - pos: -16.5,-15.5 + - pos: -49.5,-9.5 parent: 31 type: Transform - - uid: 2082 + - uid: 10784 components: - - pos: -13.5,-19.5 + - pos: -50.5,-9.5 parent: 31 type: Transform - - uid: 2156 + - uid: 10785 components: - - pos: -8.5,-26.5 + - pos: -51.5,-9.5 parent: 31 type: Transform - - uid: 2344 + - uid: 10787 components: - - pos: -14.5,-19.5 + - pos: 3.5,-25.5 parent: 31 type: Transform - - uid: 2353 + - uid: 10832 components: - - pos: 34.5,3.5 + - pos: 59.5,-4.5 parent: 31 type: Transform - - uid: 2393 + - uid: 10833 components: - - pos: -4.5,-26.5 + - pos: 60.5,-4.5 parent: 31 type: Transform - - uid: 2534 + - uid: 10834 components: - - pos: -18.5,15.5 + - pos: 60.5,-3.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 2583 + - uid: 10835 components: - - pos: -6.5,-26.5 + - pos: 60.5,-2.5 parent: 31 type: Transform - - uid: 3123 + - uid: 10836 components: - - pos: 29.5,12.5 + - pos: 60.5,-1.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3143 + - uid: 10837 components: - - pos: 32.5,8.5 + - pos: 56.5,-2.5 parent: 31 type: Transform - - uid: 3272 + - uid: 10838 components: - - pos: 41.5,4.5 + - pos: 56.5,-1.5 parent: 31 type: Transform - - uid: 3275 + - uid: 10839 components: - - pos: 42.5,3.5 + - pos: 57.5,-1.5 parent: 31 type: Transform - - uid: 3276 + - uid: 10840 components: - - pos: 42.5,2.5 + - pos: 59.5,-1.5 parent: 31 type: Transform - - uid: 3277 + - uid: 10841 components: - - pos: 42.5,1.5 + - pos: 57.5,-5.5 parent: 31 type: Transform - - uid: 3279 + - uid: 10842 components: - - pos: 42.5,-0.5 + - pos: 59.5,-5.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3280 + - uid: 10843 components: - - pos: 42.5,-1.5 + - pos: 53.5,-7.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3281 + - uid: 10844 components: - - pos: 42.5,-2.5 + - pos: 53.5,-8.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3282 + - uid: 10845 components: - - pos: 42.5,-3.5 + - pos: 53.5,-9.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3284 + - uid: 10846 components: - - pos: 42.5,-4.5 + - pos: 53.5,-10.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3285 + - uid: 10847 components: - - pos: 41.5,-4.5 + - pos: 53.5,-11.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3286 + - uid: 10849 components: - - pos: 40.5,-4.5 + - pos: 52.5,-10.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3287 + - uid: 10850 components: - - pos: 39.5,-4.5 + - pos: 51.5,-10.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3288 + - uid: 10851 components: - - pos: 38.5,-4.5 + - pos: 50.5,-10.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3289 + - uid: 10852 components: - - pos: 38.5,-5.5 + - pos: 49.5,-10.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3290 + - uid: 10853 components: - - pos: 38.5,-6.5 + - pos: 48.5,-10.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3291 + - uid: 10854 components: - - pos: 38.5,-7.5 + - pos: 47.5,-10.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3292 + - uid: 10855 components: - - pos: 37.5,-7.5 + - pos: 47.5,-8.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3293 + - uid: 10856 components: - - pos: 36.5,-7.5 + - pos: 48.5,-8.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3294 + - uid: 10857 components: - - pos: 35.5,-7.5 + - pos: 49.5,-8.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3295 + - uid: 10858 components: - - pos: 34.5,-7.5 + - pos: 50.5,-8.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3296 + - uid: 10859 components: - - pos: 33.5,-7.5 + - pos: 51.5,-8.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3297 + - uid: 10860 components: - - pos: 32.5,-7.5 + - pos: 52.5,-8.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3298 + - uid: 10861 components: - - pos: 31.5,-7.5 + - pos: 55.5,-7.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3299 + - uid: 10862 components: - - pos: 30.5,-7.5 + - pos: 55.5,-9.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3300 + - uid: 10863 components: - - pos: 29.5,-7.5 + - pos: 55.5,-8.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3301 + - uid: 10864 components: - - pos: 28.5,-7.5 + - pos: 56.5,-8.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3302 + - uid: 10865 components: - - pos: 27.5,-7.5 + - pos: 55.5,-10.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3303 + - uid: 10866 components: - - pos: 26.5,-7.5 + - pos: 56.5,-10.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3304 + - uid: 10870 components: - - pos: 26.5,-8.5 + - pos: 54.5,-9.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3305 + - uid: 10876 components: - - pos: 26.5,-9.5 + - pos: 55.5,-6.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3306 + - uid: 10966 components: - - pos: 26.5,-10.5 + - pos: 51.5,-3.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3307 + - uid: 10967 components: - - pos: 26.5,-11.5 + - pos: 51.5,-4.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3308 + - uid: 10968 components: - - pos: 26.5,-12.5 + - pos: 52.5,-4.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3309 + - uid: 10969 components: - - pos: 26.5,-13.5 + - pos: 53.5,-4.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3310 + - uid: 10970 components: - - pos: 26.5,-14.5 + - pos: 54.5,-4.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3311 + - uid: 10971 components: - - pos: 26.5,-15.5 + - pos: 53.5,-3.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3312 + - uid: 10972 components: - - pos: 26.5,-16.5 + - pos: 53.5,-2.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3313 + - uid: 10973 components: - - pos: 26.5,-17.5 + - pos: 53.5,-1.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3315 + - uid: 10974 components: - - pos: 6.5,13.5 + - pos: 50.5,-4.5 parent: 31 type: Transform - - uid: 3316 + - uid: 10975 components: - - pos: 9.5,13.5 + - pos: 49.5,-4.5 parent: 31 type: Transform - - uid: 3317 + - uid: 10976 components: - - pos: 7.5,13.5 + - pos: 49.5,-3.5 parent: 31 type: Transform - - uid: 3318 + - uid: 10977 components: - - pos: 21.5,-9.5 + - pos: 49.5,-2.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3319 + - uid: 11195 components: - - pos: 25.5,-17.5 + - pos: -4.5,26.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3320 + - uid: 11196 components: - - pos: 24.5,-17.5 + - pos: -4.5,27.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3321 + - uid: 11197 components: - - pos: 23.5,-17.5 + - pos: -4.5,28.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3322 + - uid: 11198 components: - - pos: 22.5,-17.5 + - pos: -5.5,28.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3323 + - uid: 11199 components: - - pos: 22.5,-18.5 + - pos: -6.5,28.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3324 + - uid: 11205 components: - - pos: 22.5,-19.5 + - pos: 2.5,-15.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3325 + - uid: 11213 components: - - pos: 22.5,-20.5 + - pos: -28.5,-12.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3326 + - uid: 11214 components: - - pos: 22.5,-21.5 + - pos: -28.5,-13.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3327 + - uid: 11215 components: - - pos: 22.5,-22.5 + - pos: -28.5,-14.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3328 + - uid: 11216 components: - - pos: 22.5,-23.5 + - pos: -28.5,-15.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3329 + - uid: 11232 components: - - pos: 22.5,-24.5 + - pos: -2.5,-15.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3330 + - uid: 11233 components: - - pos: 22.5,-25.5 + - pos: -3.5,-15.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3331 + - uid: 11234 components: - - pos: 21.5,-25.5 + - pos: -4.5,-15.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3332 + - uid: 11235 components: - - pos: 20.5,-25.5 + - pos: -12.5,-15.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3333 + - uid: 11236 components: - - pos: 19.5,-25.5 + - pos: -14.5,-15.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3334 + - uid: 11237 components: - - pos: 18.5,-25.5 + - pos: -13.5,-15.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3335 + - uid: 11238 components: - - pos: 17.5,-25.5 + - pos: -15.5,-15.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3336 + - uid: 11239 components: - - pos: 16.5,-25.5 + - pos: -16.5,-15.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3337 + - uid: 11240 components: - - pos: 15.5,-25.5 + - pos: -17.5,-15.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3338 + - uid: 11241 components: - - pos: 14.5,-25.5 + - pos: -18.5,-15.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3339 + - uid: 11242 components: - - pos: 14.5,-24.5 + - pos: -19.5,-15.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3340 + - uid: 11243 components: - - pos: 14.5,-23.5 + - pos: -20.5,-15.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3341 + - uid: 11251 components: - - pos: 14.5,-22.5 + - pos: -32.5,9.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3342 + - uid: 11252 components: - - pos: 14.5,-21.5 + - pos: -32.5,8.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3343 + - uid: 11253 components: - - pos: 14.5,-20.5 + - pos: -32.5,7.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3344 + - uid: 11257 components: - - pos: 13.5,-20.5 + - pos: 3.5,-24.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3345 + - uid: 11274 components: - - pos: 12.5,-20.5 + - pos: -24.5,-15.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3346 + - uid: 11275 components: - - pos: 11.5,-20.5 + - pos: -24.5,-16.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3347 + - uid: 11276 components: - - pos: 10.5,-20.5 + - pos: -25.5,-16.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3348 + - uid: 11277 components: - - pos: 9.5,-20.5 + - pos: -26.5,-16.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3349 + - uid: 11278 components: - - pos: 8.5,-20.5 + - pos: -16.5,-16.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3350 + - uid: 11279 components: - - pos: 7.5,-20.5 + - pos: -27.5,-18.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3351 +- proto: CableApcStack + entities: + - uid: 94 components: - - pos: 6.5,-20.5 + - pos: 48.373375,5.713002 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3352 + - uid: 1021 components: - - pos: 5.5,-20.5 + - pos: 48.373375,5.713002 parent: 31 type: Transform - - uid: 3353 + - uid: 1316 components: - - pos: 4.5,-20.5 + - pos: 27.24574,0.6870463 parent: 31 type: Transform - - uid: 3358 + - uid: 1374 components: - - pos: 2.5,-23.5 + - pos: 27.24574,0.6870463 parent: 31 type: Transform - - uid: 3359 + - uid: 4539 components: - - pos: 1.5,-23.5 + - pos: 60.253426,4.5485425 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3360 +- proto: CableApcStack1 + entities: + - uid: 4263 components: - - pos: -0.5,-23.5 + - pos: 49.699306,-5.6046276 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3361 + - uid: 9664 components: - - pos: 0.5,-23.5 + - pos: -3.5609899,-43.099728 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3362 + - uid: 9669 components: - - pos: -0.5,-24.5 + - rot: -1.5707963267948966 rad + pos: -3.0297182,-43.247223 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3363 + - uid: 10901 components: - - pos: -0.5,-25.5 + - rot: -1.5707963267948966 rad + pos: 49.31561,-5.6046276 + parent: 31 + type: Transform +- proto: CableApcStack10 + entities: + - uid: 2048 + components: + - pos: -2.4564042,-31.599945 + parent: 31 + type: Transform +- proto: CableHV + entities: + - uid: 23 + components: + - pos: 19.5,-30.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3364 + - uid: 29 components: - - pos: -0.5,-26.5 + - pos: 19.5,-29.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3365 + - uid: 104 components: - - pos: -1.5,-26.5 + - pos: 21.5,-29.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3366 + - uid: 128 components: - - pos: -2.5,-26.5 + - pos: -25.5,18.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3379 + - uid: 130 components: - - pos: -11.5,-24.5 + - pos: 21.5,-28.5 parent: 31 type: Transform - - uid: 3381 + - enabled: True + type: AmbientSound + - uid: 140 components: - - pos: -11.5,-21.5 + - pos: -22.5,21.5 parent: 31 type: Transform - - uid: 3382 + - enabled: True + type: AmbientSound + - uid: 202 components: - - pos: -11.5,-20.5 + - pos: 55.5,5.5 parent: 31 type: Transform - - uid: 3383 + - enabled: True + type: AmbientSound + - uid: 290 components: - - pos: -11.5,-19.5 + - pos: 3.5,-20.5 parent: 31 type: Transform - - uid: 3384 + - uid: 412 components: - - pos: -16.5,-16.5 + - pos: -21.5,22.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3388 + - uid: 420 components: - - pos: -11.5,-14.5 + - pos: 21.5,-34.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3389 + - uid: 421 components: - - pos: -10.5,-14.5 + - pos: 21.5,-33.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3390 + - uid: 422 components: - - pos: -9.5,-14.5 + - pos: 21.5,-32.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3391 + - uid: 437 components: - - pos: -9.5,-13.5 + - pos: 19.5,-34.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3392 + - uid: 442 components: - - pos: -9.5,-12.5 + - pos: -35.5,22.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3393 + - uid: 443 components: - - pos: -9.5,-11.5 + - pos: -35.5,23.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3394 + - uid: 444 components: - - pos: -9.5,-10.5 + - pos: -37.5,21.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3395 + - uid: 445 components: - - pos: -8.5,-10.5 + - pos: -37.5,22.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3396 + - uid: 450 components: - - pos: -7.5,-10.5 + - pos: -38.5,24.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3397 + - uid: 451 components: - - pos: -6.5,-10.5 + - pos: -37.5,23.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3398 + - uid: 452 components: - - pos: -5.5,-10.5 + - pos: -35.5,21.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3399 + - uid: 453 components: - - pos: -4.5,-10.5 + - pos: -33.5,23.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3400 + - uid: 455 components: - - pos: -3.5,-10.5 + - pos: -31.5,23.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3401 + - uid: 456 components: - - pos: -2.5,-10.5 + - pos: -33.5,21.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3402 + - uid: 457 components: - - pos: -1.5,-10.5 + - pos: -33.5,22.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3403 + - uid: 458 components: - - pos: -0.5,-10.5 + - pos: -35.5,26.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3404 + - uid: 459 components: - - pos: -0.5,-9.5 + - pos: -35.5,25.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3408 + - uid: 460 components: - - pos: -12.5,-14.5 + - pos: -37.5,27.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3409 + - uid: 461 components: - - pos: -13.5,-14.5 + - pos: -37.5,26.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3410 + - uid: 464 components: - - pos: -14.5,-14.5 + - pos: -37.5,25.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3411 + - uid: 465 components: - - pos: -15.5,-14.5 + - pos: 32.5,-31.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3412 + - uid: 466 components: - - pos: -16.5,-14.5 + - pos: 30.5,-31.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3413 + - uid: 468 components: - - pos: -17.5,-14.5 + - pos: 29.5,-33.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3414 + - uid: 470 components: - - pos: -18.5,-14.5 + - pos: 31.5,-31.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3415 + - uid: 471 components: - - pos: -18.5,-13.5 + - pos: 29.5,-30.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3416 + - uid: 479 components: - - pos: -18.5,-12.5 + - pos: 27.5,-29.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3418 + - uid: 480 components: - - pos: -18.5,-11.5 + - pos: 27.5,-28.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3419 + - uid: 481 components: - - pos: -19.5,-11.5 + - pos: 29.5,-28.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3420 + - uid: 482 components: - - pos: -20.5,-11.5 + - pos: 29.5,-29.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3421 + - uid: 483 components: - - pos: -21.5,-11.5 + - pos: 27.5,-30.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3422 + - uid: 485 components: - - pos: -22.5,-11.5 + - pos: 27.5,-32.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3423 + - uid: 486 components: - - pos: -23.5,-11.5 + - pos: 25.5,-32.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3424 + - uid: 487 components: - - pos: -24.5,-11.5 + - pos: 27.5,-33.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3425 + - uid: 488 components: - - pos: -25.5,-11.5 + - pos: 27.5,-34.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3426 + - uid: 489 components: - - pos: -26.5,-11.5 + - pos: 25.5,-33.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3427 + - uid: 495 components: - - pos: -27.5,-11.5 + - pos: -19.5,-22.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3428 + - uid: 499 components: - - pos: -21.5,-10.5 + - pos: 23.5,-35.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3429 + - uid: 500 components: - - pos: -28.5,-11.5 + - pos: 23.5,-34.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3430 + - uid: 502 components: - - pos: -29.5,-11.5 + - pos: 23.5,-33.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3431 + - uid: 504 components: - - pos: -30.5,-11.5 + - pos: 23.5,-32.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3432 + - uid: 505 components: - - pos: -31.5,-11.5 + - pos: 23.5,-30.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3433 + - uid: 506 components: - - pos: -32.5,-11.5 + - pos: 23.5,-28.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3434 + - uid: 507 components: - - pos: -33.5,-11.5 + - pos: 23.5,-29.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3435 + - uid: 508 components: - - pos: -33.5,-10.5 + - pos: 23.5,-27.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3436 + - uid: 509 components: - - pos: -33.5,-9.5 + - pos: 25.5,-28.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3437 + - uid: 510 components: - - pos: -33.5,-8.5 + - pos: 25.5,-29.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3438 + - uid: 511 components: - - pos: -33.5,-7.5 + - pos: 25.5,-30.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3439 + - uid: 512 components: - - pos: -33.5,-6.5 + - pos: 25.5,-35.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3440 + - uid: 513 components: - - pos: -33.5,-5.5 + - pos: 25.5,-34.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3441 + - uid: 544 components: - - pos: -33.5,-4.5 + - pos: -24.5,19.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3442 + - uid: 562 components: - - pos: -33.5,-3.5 + - pos: -23.5,-16.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3443 + - uid: 608 components: - - pos: -33.5,-2.5 + - pos: -19.5,-28.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3444 + - uid: 617 components: - - pos: -33.5,-1.5 + - pos: 10.5,19.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3445 + - uid: 620 components: - - pos: -33.5,-0.5 + - pos: -28.5,-18.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3446 + - uid: 637 components: - - pos: -33.5,0.5 + - pos: 3.5,-23.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3447 + - uid: 642 components: - - pos: -32.5,0.5 + - pos: 25.5,12.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3448 + - uid: 686 components: - - pos: -32.5,1.5 + - pos: -19.5,-27.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3449 + - uid: 692 components: - - pos: -32.5,2.5 + - pos: -0.5,-8.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3450 - components: - - pos: -32.5,3.5 - parent: 31 - type: Transform - - uid: 3451 + - uid: 700 components: - - pos: -32.5,4.5 + - pos: 3.5,-22.5 parent: 31 type: Transform - - uid: 3452 + - uid: 702 components: - - pos: -32.5,5.5 + - pos: 3.5,-21.5 parent: 31 type: Transform - - uid: 3453 + - uid: 744 components: - - pos: -32.5,6.5 + - pos: -18.5,-35.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3454 + - uid: 746 components: - - pos: -32.5,7.5 + - pos: -19.5,-33.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3455 + - uid: 756 components: - - pos: -32.5,8.5 + - pos: 14.5,11.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3456 + - uid: 760 components: - - pos: -32.5,9.5 + - pos: -19.5,-30.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3457 + - uid: 785 components: - - pos: -32.5,10.5 + - pos: -26.5,-18.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3458 + - uid: 805 components: - - pos: -32.5,11.5 + - pos: -21.5,-18.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3459 + - uid: 840 components: - - pos: -32.5,12.5 + - pos: -12.5,-10.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3460 + - uid: 878 components: - - pos: -32.5,13.5 + - pos: 51.5,3.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3462 + - uid: 932 components: - - pos: -32.5,14.5 + - pos: 19.5,-32.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3463 + - uid: 972 components: - - pos: -31.5,14.5 + - pos: 29.5,-34.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3464 + - uid: 1057 components: - - pos: -30.5,14.5 + - pos: -12.5,-12.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3465 + - uid: 1078 components: - - pos: -29.5,14.5 + - pos: -24.5,-16.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3466 + - uid: 1112 components: - - pos: -28.5,14.5 + - pos: 32.5,6.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3467 + - uid: 1117 components: - - pos: -27.5,14.5 + - pos: 32.5,7.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3468 + - uid: 1119 components: - - pos: -26.5,14.5 + - pos: 34.5,8.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3469 + - uid: 1141 components: - - pos: -25.5,14.5 + - pos: 34.5,6.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3470 + - uid: 1157 components: - - pos: -24.5,14.5 + - pos: -9.5,-14.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3471 + - uid: 1175 components: - - pos: -23.5,14.5 + - pos: -9.5,-15.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3472 + - uid: 1197 components: - - pos: -22.5,14.5 + - pos: -21.5,-15.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3473 + - uid: 1273 components: - - pos: -21.5,14.5 + - pos: 43.5,-0.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3474 + - uid: 1307 components: - - pos: -20.5,14.5 + - pos: -20.5,-15.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3478 + - uid: 1308 components: - - pos: -19.5,14.5 + - pos: -19.5,-15.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3482 + - uid: 1315 components: - - pos: -18.5,16.5 + - pos: -12.5,-15.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3483 + - uid: 1319 components: - - pos: -17.5,16.5 + - pos: -11.5,-15.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3484 + - uid: 1328 components: - - pos: -16.5,16.5 + - pos: -9.5,-13.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3486 + - uid: 1333 components: - - pos: -18.5,17.5 + - pos: -22.5,-15.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3487 + - uid: 1336 components: - - pos: -18.5,18.5 + - pos: -13.5,-15.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3488 + - uid: 1346 components: - - pos: -18.5,19.5 + - pos: 32.5,5.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3489 + - uid: 1347 components: - - pos: -18.5,20.5 + - pos: 32.5,4.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3490 + - uid: 1380 components: - - pos: -18.5,21.5 + - pos: 64.5,-2.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3491 + - uid: 1518 components: - - pos: -18.5,22.5 + - pos: -10.5,-15.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3492 + - uid: 1525 components: - - pos: -18.5,23.5 + - pos: -15.5,-15.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3493 + - uid: 1527 components: - - pos: -18.5,24.5 + - pos: -14.5,-15.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3494 + - uid: 1577 components: - - pos: -18.5,25.5 + - pos: 64.5,1.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3495 + - uid: 1609 components: - - pos: -17.5,25.5 + - pos: 32.5,3.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3496 + - uid: 1614 components: - - pos: -16.5,25.5 + - pos: 70.5,-4.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3497 + - uid: 1615 components: - - pos: -15.5,25.5 + - pos: 64.5,-3.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3498 + - uid: 1631 components: - - pos: -14.5,25.5 + - pos: 65.5,-4.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3499 + - uid: 1640 components: - - pos: -13.5,25.5 + - pos: -29.5,22.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3500 + - uid: 1665 components: - - pos: -12.5,25.5 + - pos: -5.5,25.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3501 + - uid: 1696 components: - - pos: -11.5,25.5 + - pos: 8.5,13.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3502 + - uid: 1700 components: - - pos: -10.5,25.5 + - pos: 27.5,-8.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3503 + - uid: 1727 components: - - pos: -9.5,25.5 + - pos: 27.5,-13.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3504 + - uid: 1728 components: - - pos: -8.5,25.5 + - pos: 56.5,0.5 + parent: 31 + type: Transform + - uid: 1740 + components: + - pos: 33.5,3.5 + parent: 31 + type: Transform + - uid: 1742 + components: + - pos: 28.5,12.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3505 + - uid: 1772 components: - - pos: -7.5,25.5 + - pos: 27.5,-11.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3506 + - uid: 2000 components: - - pos: -7.5,24.5 + - pos: -17.5,14.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3507 + - uid: 2001 + components: + - pos: -16.5,14.5 + parent: 31 + type: Transform + - uid: 2009 components: - - pos: -6.5,24.5 + - pos: -18.5,14.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3508 + - uid: 2055 components: - - pos: -5.5,24.5 + - pos: -26.5,-13.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3510 + - uid: 2202 components: - - pos: -4.5,24.5 + - pos: 53.5,7.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3511 + - uid: 2281 components: - - pos: -4.5,23.5 + - pos: 27.5,-12.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3512 + - uid: 2302 components: - - pos: -4.5,22.5 + - pos: -18.5,-15.5 + parent: 31 + type: Transform + - uid: 2328 + components: + - pos: 27.5,-9.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3514 + - uid: 2353 components: - - pos: -4.5,21.5 + - pos: 34.5,3.5 + parent: 31 + type: Transform + - uid: 2384 + components: + - pos: 27.5,-10.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3515 + - uid: 2534 components: - - pos: -3.5,21.5 + - pos: -18.5,15.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3516 + - uid: 2707 components: - - pos: -2.5,21.5 + - pos: -27.5,-11.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3517 + - uid: 2713 components: - - pos: -1.5,21.5 + - pos: -13.5,-12.5 + parent: 31 + type: Transform + - uid: 2714 + components: + - pos: -14.5,-12.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3518 + - uid: 2839 components: - - pos: -0.5,21.5 + - pos: -26.5,-16.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3519 + - uid: 2840 components: - - pos: -0.5,20.5 + - pos: -19.5,-31.5 parent: 31 type: Transform - - uid: 3520 + - enabled: True + type: AmbientSound + - uid: 2841 components: - - pos: 0.5,20.5 + - pos: -25.5,-18.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3521 + - uid: 2850 components: - - pos: 1.5,20.5 + - pos: -15.5,-12.5 parent: 31 type: Transform - - uid: 3522 + - enabled: True + type: AmbientSound + - uid: 2937 components: - - pos: 2.5,20.5 + - pos: -17.5,-15.5 parent: 31 type: Transform - - uid: 3523 + - uid: 2943 components: - - pos: 3.5,20.5 + - pos: -16.5,-15.5 parent: 31 type: Transform - - uid: 3524 + - uid: 3003 components: - - pos: 4.5,20.5 + - pos: -23.5,-15.5 parent: 31 type: Transform - - uid: 3525 + - uid: 3112 components: - - pos: 5.5,20.5 + - pos: 53.5,4.5 parent: 31 type: Transform - - uid: 3526 + - enabled: True + type: AmbientSound + - uid: 3123 components: - - pos: 6.5,20.5 + - pos: 29.5,12.5 parent: 31 type: Transform - - uid: 3527 + - enabled: True + type: AmbientSound + - uid: 3143 components: - - pos: 7.5,20.5 + - pos: 32.5,8.5 parent: 31 type: Transform - - uid: 3528 + - uid: 3272 components: - - pos: 8.5,20.5 + - pos: 41.5,4.5 parent: 31 type: Transform - - uid: 3529 + - uid: 3275 components: - - pos: 9.5,20.5 + - pos: 42.5,3.5 parent: 31 type: Transform - - uid: 3530 + - uid: 3276 components: - - pos: 10.5,20.5 + - pos: 42.5,2.5 parent: 31 type: Transform - - uid: 3531 + - uid: 3277 components: - - pos: 11.5,19.5 + - pos: 42.5,1.5 parent: 31 type: Transform - - uid: 3532 + - uid: 3278 components: - - pos: 12.5,20.5 + - pos: -12.5,-35.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3533 + - uid: 3279 components: - - pos: 12.5,21.5 + - pos: 42.5,-0.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3534 + - uid: 3280 components: - - pos: 12.5,22.5 + - pos: 42.5,-1.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3539 + - uid: 3281 components: - - pos: 12.5,19.5 + - pos: 42.5,-2.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3540 + - uid: 3282 components: - - pos: 12.5,18.5 + - pos: 42.5,-3.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3541 + - uid: 3284 components: - - pos: 12.5,17.5 + - pos: 42.5,-4.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3542 + - uid: 3285 components: - - pos: 12.5,16.5 + - pos: 41.5,-4.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3543 + - uid: 3286 components: - - pos: 12.5,15.5 + - pos: 40.5,-4.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3544 + - uid: 3287 components: - - pos: 12.5,14.5 + - pos: 39.5,-4.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3545 + - uid: 3288 components: - - pos: 11.5,14.5 + - pos: 38.5,-4.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3546 + - uid: 3289 components: - - pos: 10.5,14.5 + - pos: 38.5,-5.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3547 + - uid: 3290 components: - - pos: 10.5,13.5 + - pos: 38.5,-6.5 parent: 31 type: Transform - - uid: 3552 + - enabled: True + type: AmbientSound + - uid: 3291 components: - - pos: 13.5,11.5 + - pos: 38.5,-7.5 parent: 31 type: Transform - - uid: 3554 + - enabled: True + type: AmbientSound + - uid: 3292 components: - - pos: 15.5,11.5 + - pos: 37.5,-7.5 parent: 31 type: Transform - - uid: 3555 + - enabled: True + type: AmbientSound + - uid: 3293 components: - - pos: 16.5,11.5 + - pos: 36.5,-7.5 parent: 31 type: Transform - - uid: 3556 + - enabled: True + type: AmbientSound + - uid: 3294 components: - - pos: 17.5,11.5 + - pos: 35.5,-7.5 parent: 31 type: Transform - - uid: 3557 + - enabled: True + type: AmbientSound + - uid: 3295 components: - - pos: 18.5,11.5 + - pos: 34.5,-7.5 parent: 31 type: Transform - - uid: 3558 + - enabled: True + type: AmbientSound + - uid: 3296 components: - - pos: 19.5,11.5 + - pos: 33.5,-7.5 parent: 31 type: Transform - - uid: 3559 + - enabled: True + type: AmbientSound + - uid: 3297 components: - - pos: 20.5,11.5 + - pos: 32.5,-7.5 parent: 31 type: Transform - - uid: 3560 + - enabled: True + type: AmbientSound + - uid: 3298 components: - - pos: 21.5,11.5 + - pos: 31.5,-7.5 parent: 31 type: Transform - - uid: 3561 + - enabled: True + type: AmbientSound + - uid: 3299 components: - - pos: 22.5,11.5 + - pos: 30.5,-7.5 parent: 31 type: Transform - - uid: 3562 + - enabled: True + type: AmbientSound + - uid: 3300 components: - - pos: 23.5,11.5 + - pos: 29.5,-7.5 parent: 31 type: Transform - - uid: 3563 + - enabled: True + type: AmbientSound + - uid: 3301 components: - - pos: 24.5,11.5 + - pos: 28.5,-7.5 parent: 31 type: Transform - - uid: 3564 + - enabled: True + type: AmbientSound + - uid: 3302 components: - - pos: 26.5,12.5 + - pos: 27.5,-7.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3566 + - uid: 3309 components: - - pos: 24.5,12.5 + - pos: 26.5,-13.5 parent: 31 type: Transform - - uid: 3567 + - enabled: True + type: AmbientSound + - uid: 3310 components: - - pos: 27.5,12.5 + - pos: 26.5,-14.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3568 + - uid: 3311 components: - - pos: 27.5,13.5 + - pos: 26.5,-15.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3569 + - uid: 3312 components: - - pos: 30.5,12.5 + - pos: 26.5,-16.5 parent: 31 type: Transform - - uid: 3570 + - enabled: True + type: AmbientSound + - uid: 3313 components: - - pos: 30.5,11.5 + - pos: 26.5,-17.5 parent: 31 type: Transform - - uid: 3572 + - enabled: True + type: AmbientSound + - uid: 3315 components: - - pos: 31.5,11.5 + - pos: 6.5,13.5 parent: 31 type: Transform - - uid: 3573 + - uid: 3316 components: - - pos: 31.5,10.5 + - pos: 9.5,13.5 parent: 31 type: Transform - - uid: 3574 + - uid: 3317 components: - - pos: 31.5,9.5 + - pos: 7.5,13.5 parent: 31 type: Transform - - uid: 3575 + - uid: 3319 components: - - pos: 31.5,8.5 + - pos: 25.5,-17.5 parent: 31 type: Transform - - uid: 3578 + - enabled: True + type: AmbientSound + - uid: 3320 components: - - pos: 35.5,3.5 + - pos: 24.5,-17.5 parent: 31 type: Transform - - uid: 3579 + - enabled: True + type: AmbientSound + - uid: 3321 components: - - pos: 34.5,7.5 + - pos: 23.5,-17.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3580 + - uid: 3322 components: - - pos: 36.5,3.5 + - pos: 22.5,-17.5 parent: 31 type: Transform - - uid: 3581 + - enabled: True + type: AmbientSound + - uid: 3323 components: - - pos: 37.5,3.5 + - pos: 22.5,-18.5 parent: 31 type: Transform - - uid: 3582 + - enabled: True + type: AmbientSound + - uid: 3324 components: - - pos: 38.5,3.5 + - pos: 22.5,-19.5 parent: 31 type: Transform - - uid: 3583 - components: - - pos: 36.5,5.5 - parent: 31 - type: Transform - - uid: 3584 + - enabled: True + type: AmbientSound + - uid: 3325 components: - - pos: 39.5,3.5 + - pos: 22.5,-20.5 parent: 31 type: Transform - - uid: 3585 + - enabled: True + type: AmbientSound + - uid: 3326 components: - - pos: 40.5,3.5 + - pos: 22.5,-21.5 parent: 31 type: Transform - - uid: 3593 + - enabled: True + type: AmbientSound + - uid: 3327 components: - - pos: -0.5,-22.5 + - pos: 22.5,-22.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3851 + - uid: 3328 components: - - pos: -21.5,19.5 + - pos: 22.5,-23.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3890 + - uid: 3329 components: - - pos: -16.5,-19.5 + - pos: 22.5,-24.5 parent: 31 type: Transform - - uid: 3900 + - enabled: True + type: AmbientSound + - uid: 3330 components: - - pos: 34.5,5.5 + - pos: 22.5,-25.5 parent: 31 type: Transform - - uid: 3912 + - enabled: True + type: AmbientSound + - uid: 3331 components: - - pos: -21.5,23.5 + - pos: 21.5,-25.5 parent: 31 type: Transform - - uid: 4215 + - enabled: True + type: AmbientSound + - uid: 3332 components: - - pos: -5.5,-26.5 + - pos: 20.5,-25.5 parent: 31 type: Transform - - uid: 4218 + - enabled: True + type: AmbientSound + - uid: 3333 components: - - pos: 19.5,-33.5 + - pos: 19.5,-25.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4226 + - uid: 3334 components: - - pos: 19.5,-28.5 + - pos: 18.5,-25.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4227 + - uid: 3335 components: - - pos: 21.5,-30.5 + - pos: 17.5,-25.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4233 + - uid: 3336 components: - - pos: -21.5,24.5 + - pos: 16.5,-25.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4242 + - uid: 3337 components: - - pos: 35.5,5.5 + - pos: 15.5,-25.5 parent: 31 type: Transform - - uid: 4243 + - enabled: True + type: AmbientSound + - uid: 3338 components: - - pos: 37.5,5.5 + - pos: 14.5,-25.5 parent: 31 type: Transform - - uid: 4255 + - enabled: True + type: AmbientSound + - uid: 3339 components: - - pos: -22.5,22.5 + - pos: 14.5,-24.5 parent: 31 type: Transform - - uid: 4314 + - enabled: True + type: AmbientSound + - uid: 3340 components: - - pos: 47.5,7.5 + - pos: 14.5,-23.5 parent: 31 type: Transform - - uid: 4333 + - enabled: True + type: AmbientSound + - uid: 3341 components: - - pos: 14.5,-27.5 + - pos: 14.5,-22.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4341 + - uid: 3342 components: - - pos: 14.5,-28.5 + - pos: 14.5,-21.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4342 + - uid: 3343 components: - - pos: 14.5,-29.5 + - pos: 14.5,-20.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4343 + - uid: 3344 components: - - pos: 19.5,-35.5 + - pos: 13.5,-20.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4412 + - uid: 3345 components: - - pos: 21.5,-27.5 + - pos: 12.5,-20.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4413 + - uid: 3346 components: - - pos: 19.5,-27.5 + - pos: 11.5,-20.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4442 + - uid: 3347 components: - - pos: 48.5,-1.5 + - pos: 10.5,-20.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4443 + - uid: 3348 components: - - pos: 57.5,2.5 + - pos: 9.5,-20.5 parent: 31 type: Transform - - uid: 4445 + - enabled: True + type: AmbientSound + - uid: 3349 components: - - pos: 55.5,4.5 + - pos: 8.5,-20.5 parent: 31 type: Transform - - uid: 4446 + - enabled: True + type: AmbientSound + - uid: 3350 components: - - pos: 55.5,3.5 + - pos: 7.5,-20.5 parent: 31 type: Transform - - uid: 4447 + - enabled: True + type: AmbientSound + - uid: 3351 components: - - pos: 54.5,3.5 + - pos: 6.5,-20.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4448 + - uid: 3352 components: - - pos: 53.5,3.5 + - pos: 5.5,-20.5 parent: 31 type: Transform - - uid: 4449 + - uid: 3353 components: - - pos: 52.5,3.5 + - pos: 4.5,-20.5 parent: 31 type: Transform - - uid: 4454 + - uid: 3358 components: - - pos: 27.5,-27.5 + - pos: 2.5,-23.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 4462 + - uid: 3359 components: - - pos: 25.5,-27.5 + - pos: -13.5,-35.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4465 + - uid: 3360 components: - - pos: 38.5,5.5 + - pos: -14.5,-35.5 parent: 31 type: Transform - - uid: 4479 + - enabled: True + type: AmbientSound + - uid: 3361 components: - - pos: -25.5,17.5 + - pos: -15.5,-35.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4534 + - uid: 3362 components: - - pos: -25.5,16.5 + - pos: -16.5,-35.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4563 + - uid: 3363 components: - - pos: 46.5,1.5 + - pos: -19.5,-29.5 parent: 31 type: Transform - - uid: 4564 + - enabled: True + type: AmbientSound + - uid: 3364 components: - - pos: 21.5,-35.5 + - pos: -19.5,-34.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4565 + - uid: 3365 components: - - pos: 45.5,1.5 + - pos: -10.5,-10.5 parent: 31 type: Transform - - uid: 4566 + - enabled: True + type: AmbientSound + - uid: 3374 components: - - pos: 51.5,1.5 + - pos: -11.5,-10.5 parent: 31 type: Transform - - uid: 4567 + - uid: 3391 components: - - pos: 53.5,1.5 + - pos: -25.5,-16.5 parent: 31 type: Transform - - uid: 4568 + - uid: 3392 components: - - pos: 55.5,1.5 + - pos: -9.5,-12.5 parent: 31 type: Transform - - uid: 4655 + - enabled: True + type: AmbientSound + - uid: 3393 components: - - pos: 49.5,1.5 + - pos: -9.5,-11.5 parent: 31 type: Transform - - uid: 4688 + - enabled: True + type: AmbientSound + - uid: 3394 components: - - pos: 38.5,6.5 + - pos: -9.5,-10.5 parent: 31 type: Transform - - uid: 4691 + - enabled: True + type: AmbientSound + - uid: 3395 components: - - pos: 39.5,6.5 + - pos: -8.5,-10.5 parent: 31 type: Transform - - uid: 4692 + - enabled: True + type: AmbientSound + - uid: 3396 components: - - pos: 35.5,8.5 + - pos: -7.5,-10.5 parent: 31 type: Transform - - uid: 4744 + - enabled: True + type: AmbientSound + - uid: 3397 components: - - pos: 29.5,-32.5 + - pos: -6.5,-10.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4774 + - uid: 3398 components: - - pos: 3.5,-24.5 + - pos: -5.5,-10.5 parent: 31 type: Transform - - uid: 4775 + - enabled: True + type: AmbientSound + - uid: 3399 components: - - pos: 3.5,-26.5 + - pos: -4.5,-10.5 parent: 31 type: Transform - - uid: 4776 + - enabled: True + type: AmbientSound + - uid: 3400 components: - - pos: 3.5,-25.5 + - pos: -3.5,-10.5 parent: 31 type: Transform - - uid: 4809 + - enabled: True + type: AmbientSound + - uid: 3401 components: - - pos: 3.5,-27.5 + - pos: -2.5,-10.5 parent: 31 type: Transform - - uid: 4810 + - enabled: True + type: AmbientSound + - uid: 3402 components: - - pos: 3.5,-28.5 + - pos: -1.5,-10.5 parent: 31 type: Transform - - uid: 4873 + - enabled: True + type: AmbientSound + - uid: 3403 components: - - pos: 29.5,-27.5 + - pos: -0.5,-10.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4875 + - uid: 3404 components: - - pos: 29.5,-35.5 + - pos: -0.5,-9.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4876 + - uid: 3426 components: - - pos: 27.5,-35.5 + - pos: -26.5,-11.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4947 + - uid: 3429 components: - - pos: -22.5,19.5 + - pos: -28.5,-11.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4953 + - uid: 3430 components: - - pos: -29.5,26.5 + - pos: -29.5,-11.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4955 + - uid: 3431 components: - - pos: -29.5,27.5 + - pos: -30.5,-11.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4956 + - uid: 3432 components: - - pos: -29.5,23.5 + - pos: -31.5,-11.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4960 + - uid: 3433 components: - - pos: -33.5,27.5 + - pos: -32.5,-11.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4992 + - uid: 3434 components: - - pos: -22.5,20.5 + - pos: -33.5,-11.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4994 + - uid: 3435 components: - - pos: -25.5,15.5 + - pos: -33.5,-10.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4995 + - uid: 3436 components: - - pos: -25.5,19.5 + - pos: -33.5,-9.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 5007 + - uid: 3437 components: - - pos: 35.5,9.5 + - pos: -33.5,-8.5 parent: 31 type: Transform - - uid: 5028 + - enabled: True + type: AmbientSound + - uid: 3438 components: - - pos: 35.5,10.5 + - pos: -33.5,-7.5 parent: 31 type: Transform - - uid: 5032 + - enabled: True + type: AmbientSound + - uid: 3439 components: - - pos: 35.5,11.5 + - pos: -33.5,-6.5 parent: 31 type: Transform - - uid: 5033 + - enabled: True + type: AmbientSound + - uid: 3440 components: - - pos: 35.5,12.5 + - pos: -33.5,-5.5 parent: 31 type: Transform - - uid: 5038 + - enabled: True + type: AmbientSound + - uid: 3441 components: - - pos: -31.5,25.5 + - pos: -33.5,-4.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 5039 + - uid: 3442 components: - - pos: -35.5,27.5 + - pos: -33.5,-3.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 5040 + - uid: 3443 components: - - pos: -29.5,25.5 + - pos: -33.5,-2.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 5041 + - uid: 3444 components: - - pos: -28.5,24.5 + - pos: -33.5,-1.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 5042 + - uid: 3445 components: - - pos: -31.5,26.5 + - pos: -33.5,-0.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 5043 + - uid: 3446 components: - - pos: -31.5,27.5 + - pos: -33.5,0.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 5051 + - uid: 3447 components: - - pos: -29.5,21.5 + - pos: -32.5,0.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 5052 + - uid: 3448 components: - - pos: -31.5,21.5 + - pos: -32.5,1.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 5053 + - uid: 3449 components: - - pos: -31.5,22.5 + - pos: -32.5,2.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 5054 + - uid: 3450 components: - - pos: -33.5,26.5 + - pos: -32.5,3.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 5055 + - uid: 3451 components: - - pos: -33.5,25.5 + - pos: -32.5,4.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 5098 + - uid: 3452 components: - - pos: 36.5,12.5 + - pos: -32.5,5.5 parent: 31 type: Transform - - uid: 5200 + - uid: 3453 components: - - pos: -23.5,25.5 + - pos: -32.5,6.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 5201 + - uid: 3454 components: - - pos: -22.5,25.5 + - pos: -32.5,7.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 5202 + - uid: 3455 components: - - pos: -23.5,24.5 + - pos: -32.5,8.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 5203 + - uid: 3456 components: - - pos: -24.5,24.5 + - pos: -32.5,9.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 5204 + - uid: 3457 components: - - pos: -25.5,24.5 + - pos: -32.5,10.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 5205 + - uid: 3458 components: - - pos: -26.5,24.5 + - pos: -32.5,11.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 5206 + - uid: 3459 components: - - pos: -27.5,24.5 + - pos: -32.5,12.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 5209 + - uid: 3460 components: - - pos: -20.5,19.5 + - pos: -32.5,13.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 5210 + - uid: 3462 components: - - pos: -19.5,19.5 + - pos: -32.5,14.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 5213 + - uid: 3463 components: - - pos: -21.5,25.5 + - pos: -31.5,14.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 5259 + - uid: 3464 components: - - pos: 15.5,-26.5 + - pos: -30.5,14.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 5260 + - uid: 3465 components: - - pos: 15.5,-27.5 + - pos: -29.5,14.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 5262 + - uid: 3466 components: - - pos: 15.5,-29.5 + - pos: -28.5,14.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 5263 + - uid: 3467 components: - - pos: 15.5,-30.5 + - pos: -27.5,14.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 5264 + - uid: 3468 components: - - pos: 15.5,-31.5 + - pos: -26.5,14.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 5299 + - uid: 3469 components: - - pos: 16.5,-31.5 + - pos: -25.5,14.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 5300 + - uid: 3470 components: - - pos: 17.5,-31.5 + - pos: -24.5,14.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 5301 + - uid: 3471 components: - - pos: 18.5,-31.5 + - pos: -23.5,14.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 5307 + - uid: 3472 components: - - pos: 37.5,12.5 + - pos: -22.5,14.5 parent: 31 type: Transform - - uid: 5308 + - enabled: True + type: AmbientSound + - uid: 3473 components: - - pos: 37.5,13.5 + - pos: -21.5,14.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 5309 + - uid: 3474 components: - - pos: 37.5,14.5 + - pos: -20.5,14.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6198 + - uid: 3478 components: - - pos: 42.5,6.5 + - pos: -19.5,14.5 parent: 31 type: Transform - - uid: 6232 + - enabled: True + type: AmbientSound + - uid: 3482 components: - - pos: 57.5,1.5 + - pos: -18.5,16.5 parent: 31 type: Transform - - uid: 6280 + - enabled: True + type: AmbientSound + - uid: 3483 components: - - pos: 57.5,-0.5 + - pos: -17.5,16.5 parent: 31 type: Transform - - uid: 6290 + - enabled: True + type: AmbientSound + - uid: 3484 components: - - pos: 59.5,-1.5 + - pos: -16.5,16.5 parent: 31 type: Transform - - uid: 6297 + - enabled: True + type: AmbientSound + - uid: 3486 components: - - pos: 56.5,2.5 + - pos: -18.5,17.5 parent: 31 type: Transform - - uid: 6301 + - enabled: True + type: AmbientSound + - uid: 3487 components: - - pos: 43.5,1.5 + - pos: -18.5,18.5 parent: 31 type: Transform - - uid: 6302 + - enabled: True + type: AmbientSound + - uid: 3488 components: - - pos: 44.5,1.5 + - pos: -18.5,19.5 parent: 31 type: Transform - - uid: 6304 + - enabled: True + type: AmbientSound + - uid: 3489 components: - - pos: 55.5,0.5 + - pos: -18.5,20.5 parent: 31 type: Transform - - uid: 6305 + - enabled: True + type: AmbientSound + - uid: 3490 components: - - pos: 47.5,1.5 - parent: 31 - type: Transform - - uid: 6312 - components: - - pos: 54.5,1.5 + - pos: -18.5,21.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6313 + - uid: 3491 components: - - pos: 52.5,1.5 + - pos: -18.5,22.5 parent: 31 type: Transform - - uid: 6314 + - enabled: True + type: AmbientSound + - uid: 3492 components: - - pos: 50.5,1.5 + - pos: -18.5,23.5 parent: 31 type: Transform - - uid: 6316 + - enabled: True + type: AmbientSound + - uid: 3493 components: - - pos: -11.5,-25.5 + - pos: -18.5,24.5 parent: 31 type: Transform - - uid: 6320 + - enabled: True + type: AmbientSound + - uid: 3494 components: - - pos: 48.5,1.5 + - pos: -18.5,25.5 parent: 31 type: Transform - - uid: 6322 + - enabled: True + type: AmbientSound + - uid: 3495 components: - - pos: -10.5,-26.5 + - pos: -17.5,25.5 parent: 31 type: Transform - - uid: 6323 + - enabled: True + type: AmbientSound + - uid: 3496 components: - - pos: -7.5,-26.5 + - pos: -16.5,25.5 parent: 31 type: Transform - - uid: 6324 + - enabled: True + type: AmbientSound + - uid: 3497 components: - - pos: -3.5,-26.5 + - pos: -15.5,25.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6352 + - uid: 3498 components: - - pos: 66.5,-4.5 + - pos: -14.5,25.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6360 + - uid: 3499 components: - - pos: 64.5,0.5 + - pos: -13.5,25.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6365 + - uid: 3500 components: - - pos: 48.5,5.5 + - pos: -12.5,25.5 parent: 31 type: Transform - - uid: 6409 + - enabled: True + type: AmbientSound + - uid: 3501 components: - - pos: 64.5,-1.5 + - pos: -11.5,25.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6410 + - uid: 3502 components: - - pos: 48.5,11.5 + - pos: -10.5,25.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6439 + - uid: 3503 components: - - pos: 68.5,-4.5 + - pos: -9.5,25.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6465 + - uid: 3504 components: - - pos: 78.5,6.5 + - pos: -8.5,25.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6490 + - uid: 3505 components: - - pos: 69.5,-4.5 + - pos: -7.5,25.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6530 + - uid: 3510 components: - - pos: 48.5,12.5 + - pos: -4.5,24.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6571 + - uid: 3511 components: - - pos: 56.5,2.5 + - pos: -4.5,23.5 parent: 31 type: Transform - - uid: 6604 + - enabled: True + type: AmbientSound + - uid: 3512 components: - - pos: 64.5,-4.5 + - pos: -4.5,22.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6610 + - uid: 3514 components: - - pos: 49.5,5.5 + - pos: -4.5,21.5 parent: 31 type: Transform - - uid: 6619 + - enabled: True + type: AmbientSound + - uid: 3515 components: - - pos: 64.5,-0.5 + - pos: -3.5,21.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6635 + - uid: 3516 components: - - pos: 48.5,10.5 + - pos: -2.5,21.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6642 + - uid: 3517 components: - - pos: 78.5,-3.5 + - pos: -1.5,21.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6749 + - uid: 3518 components: - - pos: 71.5,-4.5 + - pos: -0.5,21.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6817 + - uid: 3519 components: - - pos: 47.5,5.5 + - pos: -0.5,20.5 parent: 31 type: Transform - - uid: 6818 + - uid: 3520 components: - - pos: 45.5,7.5 + - pos: 0.5,20.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6819 + - uid: 3521 components: - - pos: 50.5,5.5 + - pos: 1.5,20.5 parent: 31 type: Transform - - uid: 6820 + - uid: 3522 components: - - pos: 48.5,9.5 + - pos: 2.5,20.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 6821 + - uid: 3523 components: - - pos: 44.5,6.5 + - pos: 3.5,20.5 parent: 31 type: Transform - - uid: 6823 + - uid: 3524 components: - - pos: 45.5,5.5 + - pos: 4.5,20.5 parent: 31 type: Transform - - uid: 6830 + - uid: 3525 components: - - pos: 74.5,-4.5 + - pos: 5.5,20.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 6833 + - uid: 3526 components: - - pos: 44.5,7.5 + - pos: 6.5,20.5 parent: 31 type: Transform - - uid: 6834 + - uid: 3527 components: - - pos: 48.5,8.5 + - pos: 7.5,20.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 6835 + - uid: 3528 components: - - pos: 48.5,7.5 + - pos: 8.5,20.5 parent: 31 type: Transform - - uid: 6842 + - uid: 3529 components: - - pos: 78.5,-4.5 + - pos: 9.5,20.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 6846 + - uid: 3530 components: - - pos: 78.5,5.5 + - pos: 10.5,20.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 6849 + - uid: 3531 components: - - pos: 46.5,7.5 + - pos: 11.5,19.5 parent: 31 type: Transform - - uid: 6850 + - uid: 3532 components: - - pos: 78.5,4.5 + - pos: 12.5,20.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6854 + - uid: 3533 components: - - pos: 78.5,-0.5 + - pos: 12.5,21.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6855 + - uid: 3534 components: - - pos: 78.5,-1.5 + - pos: 12.5,22.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6864 + - uid: 3539 components: - - pos: 78.5,2.5 + - pos: 12.5,19.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6866 + - uid: 3540 components: - - pos: 78.5,-2.5 + - pos: 12.5,18.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6867 + - uid: 3541 components: - - pos: 77.5,-4.5 + - pos: 12.5,17.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6868 + - uid: 3542 components: - - pos: 76.5,-4.5 + - pos: 12.5,16.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6869 + - uid: 3543 components: - - pos: 75.5,-4.5 + - pos: 12.5,15.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6871 + - uid: 3544 components: - - pos: 72.5,-4.5 + - pos: 12.5,14.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6872 + - uid: 3545 components: - - pos: 73.5,-4.5 + - pos: 11.5,14.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6911 + - uid: 3546 components: - - pos: 41.5,6.5 + - pos: 10.5,14.5 parent: 31 type: Transform - - uid: 6912 + - enabled: True + type: AmbientSound + - uid: 3547 components: - - pos: 78.5,3.5 + - pos: 10.5,13.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 6913 + - uid: 3552 components: - - pos: 46.5,5.5 + - pos: 13.5,11.5 parent: 31 type: Transform - - uid: 6914 + - uid: 3554 components: - - pos: 44.5,5.5 + - pos: 15.5,11.5 parent: 31 type: Transform - - uid: 6915 + - uid: 3555 components: - - pos: 78.5,1.5 + - pos: 16.5,11.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 6917 + - uid: 3556 components: - - pos: 78.5,0.5 + - pos: 17.5,11.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 6918 + - uid: 3557 components: - - pos: 67.5,-4.5 + - pos: 18.5,11.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 6934 + - uid: 3558 components: - - pos: 40.5,5.5 + - pos: 19.5,11.5 parent: 31 type: Transform - - uid: 6935 + - uid: 3559 components: - - pos: 40.5,6.5 + - pos: 20.5,11.5 parent: 31 type: Transform - - uid: 6936 + - uid: 3560 components: - - pos: 42.5,5.5 + - pos: 21.5,11.5 parent: 31 type: Transform - - uid: 6937 + - uid: 3561 components: - - pos: 41.5,5.5 + - pos: 22.5,11.5 parent: 31 type: Transform - - uid: 6938 + - uid: 3562 components: - - pos: 42.5,4.5 + - pos: 23.5,11.5 parent: 31 type: Transform - - uid: 6940 + - uid: 3563 components: - - pos: 40.5,4.5 + - pos: 24.5,11.5 parent: 31 type: Transform - - uid: 6942 + - uid: 3564 components: - - pos: 50.5,3.5 + - pos: 26.5,12.5 parent: 31 type: Transform - - uid: 6946 + - enabled: True + type: AmbientSound + - uid: 3566 components: - - pos: 57.5,0.5 + - pos: 24.5,12.5 parent: 31 type: Transform - - uid: 6947 + - uid: 3567 components: - - pos: 50.5,-1.5 + - pos: 27.5,12.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6960 + - uid: 3568 components: - - pos: -11.5,-22.5 + - pos: 27.5,13.5 parent: 31 type: Transform - - uid: 7173 + - enabled: True + type: AmbientSound + - uid: 3569 components: - - pos: 50.5,4.5 + - pos: 30.5,12.5 parent: 31 type: Transform - - uid: 7174 + - uid: 3572 components: - - pos: 43.5,6.5 + - pos: 31.5,11.5 parent: 31 type: Transform - - uid: 7186 + - uid: 3573 components: - - pos: 64.5,2.5 + - pos: 31.5,10.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 7187 + - uid: 3574 components: - - pos: 64.5,6.5 + - pos: 31.5,9.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 7188 + - uid: 3575 components: - - pos: 64.5,7.5 + - pos: 31.5,8.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 7189 + - uid: 3578 components: - - pos: 64.5,5.5 + - pos: 35.5,3.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 7190 + - uid: 3579 components: - - pos: 65.5,9.5 + - pos: 34.5,7.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 7191 + - uid: 3580 components: - - pos: 64.5,9.5 + - pos: 36.5,3.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 7192 + - uid: 3581 components: - - pos: 64.5,3.5 + - pos: 37.5,3.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 7193 + - uid: 3582 components: - - pos: 66.5,9.5 + - pos: 38.5,3.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 7194 + - uid: 3583 components: - - pos: 67.5,9.5 + - pos: 36.5,5.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 7195 + - uid: 3584 components: - - pos: 68.5,9.5 + - pos: 39.5,3.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 7196 + - uid: 3585 components: - - pos: 70.5,9.5 + - pos: 40.5,3.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 7197 + - uid: 3851 components: - - pos: 71.5,9.5 + - pos: -21.5,19.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 7198 + - uid: 3900 components: - - pos: 73.5,9.5 + - pos: 34.5,5.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 7199 + - uid: 3912 components: - - pos: 74.5,9.5 + - pos: -21.5,23.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 7200 + - uid: 4218 components: - - pos: 75.5,9.5 + - pos: 19.5,-33.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 7201 + - uid: 4226 components: - - pos: 77.5,9.5 + - pos: 19.5,-28.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 7202 + - uid: 4227 components: - - pos: 78.5,7.5 + - pos: 21.5,-30.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 7203 + - uid: 4233 components: - - pos: 78.5,9.5 + - pos: -21.5,24.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 7204 + - uid: 4242 components: - - pos: 78.5,8.5 + - pos: 35.5,5.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 7213 + - uid: 4243 components: - - pos: 64.5,4.5 + - pos: 37.5,5.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 7214 + - uid: 4255 components: - - pos: 69.5,9.5 + - pos: -22.5,22.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 7215 + - uid: 4259 components: - - pos: 72.5,9.5 + - pos: 55.5,7.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 7216 + - uid: 4307 components: - - pos: 76.5,9.5 + - pos: -6.5,25.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 7217 + - uid: 4314 components: - - pos: 64.5,8.5 + - pos: 47.5,7.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 7371 + - uid: 4333 components: - - pos: 0.5,-8.5 + - pos: 14.5,-27.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 7679 - components: - - pos: -8.5,27.5 - parent: 31 - type: Transform - - uid: 8131 + - uid: 4341 components: - - pos: 57.5,7.5 + - pos: 14.5,-28.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8132 + - uid: 4342 components: - - pos: 56.5,7.5 + - pos: 14.5,-29.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8134 + - uid: 4343 components: - - pos: 57.5,3.5 + - pos: 19.5,-35.5 parent: 31 type: Transform - - uid: 8135 + - enabled: True + type: AmbientSound + - uid: 4412 components: - - pos: 59.5,7.5 + - pos: 21.5,-27.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8136 + - uid: 4413 components: - - pos: 58.5,7.5 + - pos: 19.5,-27.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8137 + - uid: 4442 components: - - pos: 55.5,7.5 + - pos: 48.5,-1.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8138 + - uid: 4443 components: - - pos: 55.5,6.5 + - pos: 57.5,2.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 8139 + - uid: 4446 components: - - pos: 55.5,5.5 + - pos: 55.5,3.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 8140 + - uid: 4448 components: - - pos: 60.5,7.5 + - pos: 53.5,3.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 8141 + - uid: 4449 components: - - pos: 61.5,7.5 + - pos: 52.5,3.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 8142 + - uid: 4454 components: - - pos: 62.5,7.5 + - pos: 27.5,-27.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8143 + - uid: 4462 components: - - pos: 63.5,7.5 + - pos: 25.5,-27.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8602 + - uid: 4465 components: - - pos: -30.5,-32.5 + - pos: 38.5,5.5 parent: 31 type: Transform - - uid: 8603 + - uid: 4479 components: - - pos: -29.5,-32.5 + - pos: -25.5,17.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8604 + - uid: 4483 components: - - pos: -28.5,-32.5 + - pos: 55.5,2.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 8605 + - uid: 4534 components: - - pos: -28.5,-33.5 + - pos: -25.5,16.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8606 + - uid: 4563 components: - - pos: -28.5,-34.5 + - pos: 46.5,1.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 8607 + - uid: 4564 components: - - pos: -29.5,-34.5 + - pos: 21.5,-35.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8608 + - uid: 4565 components: - - pos: -31.5,-34.5 + - pos: 45.5,1.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 8609 + - uid: 4566 components: - - pos: -30.5,-34.5 + - pos: 51.5,1.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 8610 + - uid: 4567 components: - - pos: -32.5,-34.5 + - pos: 53.5,1.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 8611 + - uid: 4568 components: - - pos: -33.5,-34.5 + - pos: 55.5,1.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 8612 + - uid: 4655 components: - - pos: -34.5,-34.5 + - pos: 49.5,1.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 8613 + - uid: 4688 components: - - pos: -35.5,-34.5 + - pos: 38.5,6.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 8614 + - uid: 4691 components: - - pos: -35.5,-33.5 + - pos: 39.5,6.5 + parent: 31 + type: Transform + - uid: 4692 + components: + - pos: 35.5,8.5 + parent: 31 + type: Transform + - uid: 4744 + components: + - pos: 29.5,-32.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8615 + - uid: 4774 components: - - pos: -35.5,-32.5 + - pos: 3.5,-24.5 + parent: 31 + type: Transform + - uid: 4775 + components: + - pos: 3.5,-26.5 + parent: 31 + type: Transform + - uid: 4776 + components: + - pos: 3.5,-25.5 + parent: 31 + type: Transform + - uid: 4809 + components: + - pos: 3.5,-27.5 + parent: 31 + type: Transform + - uid: 4810 + components: + - pos: 3.5,-28.5 + parent: 31 + type: Transform + - uid: 4873 + components: + - pos: 29.5,-27.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8616 + - uid: 4875 components: - - pos: -35.5,-31.5 + - pos: 29.5,-35.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8617 + - uid: 4876 components: - - pos: -36.5,-31.5 + - pos: 27.5,-35.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8618 + - uid: 4947 components: - - pos: -37.5,-31.5 + - pos: -22.5,19.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8619 + - uid: 4953 components: - - pos: -38.5,-31.5 + - pos: -29.5,26.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8620 + - uid: 4955 components: - - pos: -38.5,-30.5 + - pos: -29.5,27.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8621 + - uid: 4956 components: - - pos: -38.5,-29.5 + - pos: -29.5,23.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8622 + - uid: 4960 components: - - pos: -38.5,-28.5 + - pos: -33.5,27.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8623 + - uid: 4992 components: - - pos: -39.5,-28.5 + - pos: -22.5,20.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8624 + - uid: 4994 components: - - pos: -40.5,-28.5 + - pos: -25.5,15.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8625 + - uid: 4995 components: - - pos: -41.5,-28.5 + - pos: -25.5,19.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8626 + - uid: 5007 components: - - pos: -42.5,-28.5 + - pos: 35.5,9.5 + parent: 31 + type: Transform + - uid: 5028 + components: + - pos: 35.5,10.5 + parent: 31 + type: Transform + - uid: 5032 + components: + - pos: 35.5,11.5 + parent: 31 + type: Transform + - uid: 5033 + components: + - pos: 35.5,12.5 + parent: 31 + type: Transform + - uid: 5038 + components: + - pos: -31.5,25.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8627 + - uid: 5039 components: - - pos: -42.5,-29.5 + - pos: -35.5,27.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8628 + - uid: 5040 components: - - pos: -42.5,-30.5 + - pos: -29.5,25.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8629 + - uid: 5041 components: - - pos: -42.5,-31.5 + - pos: -28.5,24.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8630 + - uid: 5042 components: - - pos: -40.5,-31.5 + - pos: -31.5,26.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8631 + - uid: 5043 components: - - pos: -40.5,-30.5 + - pos: -31.5,27.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8632 + - uid: 5051 components: - - pos: -40.5,-29.5 + - pos: -29.5,21.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8633 + - uid: 5052 components: - - pos: -40.5,-27.5 + - pos: -31.5,21.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8634 + - uid: 5053 components: - - pos: -40.5,-26.5 + - pos: -31.5,22.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8635 + - uid: 5054 components: - - pos: -40.5,-25.5 + - pos: -33.5,26.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8636 + - uid: 5055 components: - - pos: -42.5,-27.5 + - pos: -33.5,25.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8637 + - uid: 5098 components: - - pos: -42.5,-26.5 + - pos: 36.5,12.5 + parent: 31 + type: Transform + - uid: 5200 + components: + - pos: -23.5,25.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8638 + - uid: 5201 components: - - pos: -42.5,-25.5 + - pos: -22.5,25.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8639 + - uid: 5202 components: - - pos: -32.5,-35.5 + - pos: -23.5,24.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8640 + - uid: 5203 components: - - pos: -32.5,-36.5 + - pos: -24.5,24.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8641 + - uid: 5204 components: - - pos: -32.5,-37.5 + - pos: -25.5,24.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8642 + - uid: 5205 components: - - pos: -32.5,-38.5 + - pos: -26.5,24.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8643 + - uid: 5206 components: - - pos: -33.5,-38.5 + - pos: -27.5,24.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8644 + - uid: 5209 components: - - pos: -34.5,-38.5 + - pos: -20.5,19.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8645 + - uid: 5210 components: - - pos: -35.5,-38.5 + - pos: -19.5,19.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8646 + - uid: 5213 components: - - pos: -31.5,-38.5 + - pos: -21.5,25.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8647 + - uid: 5259 components: - - pos: -30.5,-38.5 + - pos: 15.5,-26.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8648 + - uid: 5260 components: - - pos: -29.5,-38.5 + - pos: 15.5,-27.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8649 + - uid: 5262 components: - - pos: -29.5,-36.5 + - pos: 15.5,-29.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8650 + - uid: 5263 components: - - pos: -30.5,-36.5 + - pos: 15.5,-30.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8651 + - uid: 5264 components: - - pos: -31.5,-36.5 + - pos: 15.5,-31.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8652 + - uid: 5299 components: - - pos: -33.5,-36.5 + - pos: 16.5,-31.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8653 + - uid: 5300 components: - - pos: -34.5,-36.5 + - pos: 17.5,-31.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8654 + - uid: 5301 components: - - pos: -35.5,-36.5 + - pos: 18.5,-31.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8665 + - uid: 5307 components: - - pos: -30.5,-31.5 + - pos: 37.5,12.5 parent: 31 type: Transform - - uid: 8666 + - uid: 5706 components: - - pos: -31.5,-31.5 + - pos: -19.5,-23.5 parent: 31 type: Transform - - uid: 9000 + - enabled: True + type: AmbientSound + - uid: 5729 components: - - pos: -23.5,19.5 + - pos: -19.5,-21.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 9166 + - uid: 5730 components: - - pos: 5.5,13.5 + - pos: -19.5,-20.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 9390 + - uid: 5731 components: - - pos: 4.5,13.5 + - pos: -19.5,-19.5 parent: 31 type: Transform - - uid: 9393 + - enabled: True + type: AmbientSound + - uid: 5732 components: - - pos: 13.5,10.5 + - pos: -20.5,-18.5 parent: 31 type: Transform - - uid: 9394 + - uid: 5733 components: - - pos: 13.5,9.5 + - pos: -22.5,-18.5 parent: 31 type: Transform - - uid: 9474 + - enabled: True + type: AmbientSound + - uid: 5734 components: - - pos: 13.5,8.5 + - pos: -24.5,-18.5 parent: 31 type: Transform - - uid: 9481 + - enabled: True + type: AmbientSound + - uid: 5735 components: - - pos: 13.5,7.5 + - pos: -27.5,-18.5 parent: 31 type: Transform - - uid: 9482 + - enabled: True + type: AmbientSound + - uid: 5738 components: - - pos: 13.5,6.5 + - pos: -11.5,-34.5 parent: 31 type: Transform - - uid: 9483 + - enabled: True + type: AmbientSound + - uid: 5739 components: - - pos: 13.5,5.5 + - pos: -11.5,-35.5 parent: 31 type: Transform - - uid: 9484 + - uid: 5740 components: - - pos: 13.5,4.5 + - pos: -19.5,-24.5 parent: 31 type: Transform - - uid: 9485 + - enabled: True + type: AmbientSound + - uid: 5741 components: - - pos: 12.5,4.5 + - pos: -19.5,-25.5 parent: 31 type: Transform - - uid: 9486 + - enabled: True + type: AmbientSound + - uid: 5742 components: - - pos: 11.5,4.5 + - pos: -19.5,-26.5 parent: 31 type: Transform - - uid: 9487 + - enabled: True + type: AmbientSound + - uid: 5743 components: - - pos: 10.5,4.5 + - pos: -17.5,-35.5 parent: 31 type: Transform - - uid: 9488 + - enabled: True + type: AmbientSound + - uid: 5747 components: - - pos: 9.5,4.5 + - pos: -11.5,-33.5 parent: 31 type: Transform - - uid: 9489 + - enabled: True + type: AmbientSound + - uid: 5763 components: - - pos: 8.5,4.5 + - pos: -23.5,-18.5 parent: 31 type: Transform - - uid: 9490 + - enabled: True + type: AmbientSound + - uid: 5893 components: - - pos: 7.5,4.5 + - pos: -4.5,25.5 parent: 31 type: Transform - - uid: 9491 + - enabled: True + type: AmbientSound + - uid: 6198 components: - - pos: 6.5,4.5 + - pos: 42.5,6.5 parent: 31 type: Transform - - uid: 9492 + - uid: 6232 components: - - pos: 5.5,4.5 + - pos: 57.5,1.5 parent: 31 type: Transform - - uid: 9493 + - uid: 6282 components: - - pos: 4.5,4.5 + - pos: 55.5,3.5 parent: 31 type: Transform - - uid: 9494 + - uid: 6297 components: - - pos: 3.5,4.5 + - pos: 56.5,2.5 parent: 31 type: Transform - - uid: 9495 + - uid: 6301 components: - - pos: 3.5,5.5 + - pos: 43.5,1.5 parent: 31 type: Transform - - uid: 9496 + - uid: 6302 components: - - pos: 3.5,6.5 + - pos: 44.5,1.5 parent: 31 type: Transform - - uid: 9497 + - uid: 6304 components: - - pos: 3.5,7.5 + - pos: 55.5,0.5 parent: 31 type: Transform - - uid: 9498 + - uid: 6305 components: - - pos: 3.5,8.5 + - pos: 47.5,1.5 parent: 31 type: Transform - - uid: 9499 + - uid: 6312 components: - - pos: 3.5,9.5 + - pos: 54.5,1.5 parent: 31 type: Transform - - uid: 9500 + - enabled: True + type: AmbientSound + - uid: 6313 components: - - pos: 3.5,10.5 + - pos: 52.5,1.5 parent: 31 type: Transform - - uid: 9501 + - uid: 6314 components: - - pos: 3.5,11.5 + - pos: 50.5,1.5 parent: 31 type: Transform - - uid: 9502 + - uid: 6320 components: - - pos: 3.5,12.5 + - pos: 48.5,1.5 parent: 31 type: Transform - - uid: 9503 + - uid: 6352 components: - - pos: 3.5,13.5 + - pos: 66.5,-4.5 parent: 31 type: Transform - - uid: 9504 + - enabled: True + type: AmbientSound + - uid: 6360 components: - - pos: 25.5,-10.5 + - pos: 64.5,0.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 9505 + - uid: 6365 components: - - pos: 24.5,-10.5 + - pos: 48.5,5.5 + parent: 31 + type: Transform + - uid: 6409 + components: + - pos: 64.5,-1.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 9506 + - uid: 6410 components: - - pos: 23.5,-10.5 + - pos: 48.5,11.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 9507 + - uid: 6439 components: - - pos: 22.5,-10.5 + - pos: 68.5,-4.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 9508 + - uid: 6465 components: - - pos: 21.5,-10.5 + - pos: 78.5,6.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 9509 + - uid: 6476 components: - - pos: 43.5,0.5 + - pos: 31.5,12.5 parent: 31 type: Transform - - uid: 9708 + - uid: 6490 components: - - pos: -7.5,27.5 + - pos: 69.5,-4.5 parent: 31 type: Transform - - uid: 9710 + - enabled: True + type: AmbientSound + - uid: 6530 components: - - pos: -7.5,25.5 + - pos: 48.5,12.5 parent: 31 type: Transform - enabled: True type: AmbientSound -- proto: CableHVStack - entities: - - uid: 3138 + - uid: 6571 components: - - pos: 40.515846,-1.0468916 + - pos: 56.5,2.5 parent: 31 type: Transform - - uid: 3509 + - uid: 6604 components: - - pos: 27.261366,0.3432963 + - pos: 64.5,-4.5 parent: 31 type: Transform - - uid: 3513 + - enabled: True + type: AmbientSound + - uid: 6610 components: - - pos: 27.261366,0.3432963 + - pos: 49.5,5.5 parent: 31 type: Transform - - uid: 6023 + - uid: 6619 components: - - pos: 48.339085,5.504549 + - pos: 64.5,-0.5 parent: 31 type: Transform - - uid: 7634 + - enabled: True + type: AmbientSound + - uid: 6635 components: - - pos: -20.539572,25.33725 + - pos: 48.5,10.5 parent: 31 type: Transform -- proto: CableMV - entities: - - uid: 96 + - enabled: True + type: AmbientSound + - uid: 6642 components: - - pos: 42.5,1.5 + - pos: 78.5,-3.5 parent: 31 type: Transform - - uid: 203 + - enabled: True + type: AmbientSound + - uid: 6749 components: - - pos: -11.5,-23.5 + - pos: 71.5,-4.5 parent: 31 type: Transform - - uid: 245 + - enabled: True + type: AmbientSound + - uid: 6817 components: - - pos: -6.5,27.5 + - pos: 47.5,5.5 parent: 31 type: Transform - - uid: 312 + - uid: 6818 components: - - pos: -7.5,-26.5 - parent: 31 - type: Transform - - uid: 618 - components: - - pos: 37.5,3.5 - parent: 31 - type: Transform - - uid: 755 - components: - - pos: 10.5,25.5 - parent: 31 - type: Transform - - uid: 830 - components: - - pos: 62.5,-1.5 + - pos: 45.5,7.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 872 + - uid: 6819 components: - - pos: -10.5,-26.5 + - pos: 50.5,5.5 parent: 31 type: Transform - - uid: 890 + - uid: 6820 components: - - pos: 12.5,21.5 + - pos: 48.5,9.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 931 + - uid: 6821 components: - - pos: 8.5,26.5 + - pos: 44.5,6.5 parent: 31 type: Transform - - uid: 986 + - uid: 6823 components: - - pos: -11.5,-26.5 + - pos: 45.5,5.5 parent: 31 type: Transform - - uid: 1125 + - uid: 6830 components: - - pos: 7.5,-18.5 + - pos: 74.5,-4.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 1160 + - uid: 6833 components: - - pos: 59.5,-1.5 + - pos: 44.5,7.5 parent: 31 type: Transform - - uid: 1196 + - uid: 6834 components: - - pos: -1.5,-10.5 + - pos: 48.5,8.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 1297 + - uid: 6835 components: - - pos: 12.5,22.5 + - pos: 48.5,7.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 1571 + - uid: 6842 components: - - pos: 36.5,3.5 + - pos: 78.5,-4.5 parent: 31 type: Transform - - uid: 1572 + - enabled: True + type: AmbientSound + - uid: 6846 components: - - pos: 35.5,3.5 + - pos: 78.5,5.5 parent: 31 type: Transform - - uid: 1589 + - enabled: True + type: AmbientSound + - uid: 6849 components: - - pos: -6.5,26.5 + - pos: 46.5,7.5 parent: 31 type: Transform - - uid: 1729 + - uid: 6850 components: - - pos: 64.5,0.5 + - pos: 78.5,4.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 1731 - components: - - pos: -7.5,27.5 - parent: 31 - type: Transform - - uid: 1873 + - uid: 6854 components: - - pos: -8.5,27.5 + - pos: 78.5,-0.5 parent: 31 type: Transform - - uid: 2054 + - enabled: True + type: AmbientSound + - uid: 6855 components: - - pos: -11.5,-24.5 + - pos: 78.5,-1.5 parent: 31 type: Transform - - uid: 2141 + - enabled: True + type: AmbientSound + - uid: 6864 components: - - pos: -11.5,-25.5 + - pos: 78.5,2.5 parent: 31 type: Transform - - uid: 2406 + - enabled: True + type: AmbientSound + - uid: 6866 components: - - pos: 65.5,-4.5 + - pos: 78.5,-2.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 2822 + - uid: 6867 components: - - pos: -0.5,-8.5 + - pos: 77.5,-4.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 2823 + - uid: 6868 components: - - pos: -0.5,-9.5 + - pos: 76.5,-4.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3140 + - uid: 6869 components: - - pos: 64.5,-0.5 + - pos: 75.5,-4.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3144 + - uid: 6871 components: - - pos: 43.5,10.5 + - pos: 72.5,-4.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3356 + - uid: 6872 components: - - pos: 14.5,-25.5 + - pos: 73.5,-4.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3357 + - uid: 6911 components: - - pos: 13.5,-25.5 + - pos: 41.5,6.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3481 + - uid: 6912 components: - - pos: -16.5,17.5 + - pos: 78.5,3.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3589 + - uid: 6913 components: - - pos: 12.5,24.5 + - pos: 46.5,5.5 parent: 31 type: Transform - - uid: 3597 + - uid: 6914 components: - - pos: 27.5,13.5 + - pos: 44.5,5.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3598 + - uid: 6915 components: - - pos: 28.5,13.5 + - pos: 78.5,1.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3599 + - uid: 6917 components: - - pos: 28.5,14.5 + - pos: 78.5,0.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3600 + - uid: 6918 components: - - pos: 26.5,13.5 + - pos: 67.5,-4.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3601 + - uid: 6934 components: - - pos: 25.5,13.5 + - pos: 40.5,5.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3602 + - uid: 6935 components: - - pos: 24.5,13.5 + - pos: 40.5,6.5 parent: 31 type: Transform - - uid: 3603 + - uid: 6936 components: - - pos: 24.5,14.5 + - pos: 42.5,5.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3604 + - uid: 6937 components: - - pos: 24.5,12.5 + - pos: 41.5,5.5 parent: 31 type: Transform - - uid: 3605 + - uid: 6938 components: - - pos: 23.5,12.5 + - pos: 42.5,4.5 parent: 31 type: Transform - - uid: 3606 + - uid: 6940 components: - - pos: 22.5,12.5 + - pos: 40.5,4.5 parent: 31 type: Transform - - uid: 3607 + - uid: 6942 components: - - pos: 21.5,12.5 + - pos: 50.5,3.5 parent: 31 type: Transform - - uid: 3608 + - uid: 6946 components: - - pos: 20.5,12.5 + - pos: 57.5,0.5 parent: 31 type: Transform - - uid: 3609 + - uid: 7173 components: - - pos: 19.5,12.5 + - pos: 50.5,4.5 parent: 31 type: Transform - - uid: 3610 + - uid: 7174 components: - - pos: 18.5,12.5 + - pos: 43.5,6.5 parent: 31 type: Transform - - uid: 3611 + - uid: 7186 components: - - pos: 17.5,12.5 + - pos: 64.5,2.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3612 - components: - - pos: 16.5,12.5 - parent: 31 - type: Transform - - uid: 3613 + - uid: 7187 components: - - pos: 15.5,12.5 + - pos: 64.5,6.5 parent: 31 type: Transform - - uid: 3614 + - enabled: True + type: AmbientSound + - uid: 7188 components: - - pos: 14.5,12.5 + - pos: 64.5,7.5 parent: 31 type: Transform - - uid: 3615 + - enabled: True + type: AmbientSound + - uid: 7189 components: - - pos: 13.5,12.5 + - pos: 64.5,5.5 parent: 31 type: Transform - - uid: 3616 + - enabled: True + type: AmbientSound + - uid: 7190 components: - - pos: 12.5,12.5 + - pos: 65.5,9.5 parent: 31 type: Transform - - uid: 3617 + - enabled: True + type: AmbientSound + - uid: 7191 components: - - pos: 12.5,13.5 + - pos: 64.5,9.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3618 + - uid: 7192 components: - - pos: 11.5,24.5 + - pos: 64.5,3.5 parent: 31 type: Transform - - uid: 3620 + - enabled: True + type: AmbientSound + - uid: 7193 components: - - pos: 10.5,24.5 + - pos: 66.5,9.5 parent: 31 type: Transform - - uid: 3621 + - enabled: True + type: AmbientSound + - uid: 7194 components: - - pos: 9.5,23.5 + - pos: 67.5,9.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3622 + - uid: 7195 components: - - pos: 9.5,22.5 + - pos: 68.5,9.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3624 + - uid: 7196 components: - - pos: 9.5,25.5 + - pos: 70.5,9.5 parent: 31 type: Transform - - uid: 3628 + - enabled: True + type: AmbientSound + - uid: 7197 components: - - pos: 8.5,25.5 + - pos: 71.5,9.5 parent: 31 type: Transform - - uid: 3629 + - enabled: True + type: AmbientSound + - uid: 7198 components: - - pos: 7.5,25.5 + - pos: 73.5,9.5 parent: 31 type: Transform - - uid: 3630 + - enabled: True + type: AmbientSound + - uid: 7199 components: - - pos: 6.5,25.5 + - pos: 74.5,9.5 parent: 31 type: Transform - - uid: 3631 + - enabled: True + type: AmbientSound + - uid: 7200 components: - - pos: 5.5,25.5 + - pos: 75.5,9.5 parent: 31 type: Transform - - uid: 3632 + - enabled: True + type: AmbientSound + - uid: 7201 components: - - pos: 4.5,25.5 + - pos: 77.5,9.5 parent: 31 type: Transform - - uid: 3633 + - enabled: True + type: AmbientSound + - uid: 7202 components: - - pos: 3.5,25.5 + - pos: 78.5,7.5 parent: 31 type: Transform - - uid: 3634 + - enabled: True + type: AmbientSound + - uid: 7203 components: - - pos: 2.5,25.5 + - pos: 78.5,9.5 parent: 31 type: Transform - - uid: 3635 + - enabled: True + type: AmbientSound + - uid: 7204 components: - - pos: 1.5,25.5 + - pos: 78.5,8.5 parent: 31 type: Transform - - uid: 3636 + - enabled: True + type: AmbientSound + - uid: 7213 components: - - pos: 0.5,25.5 + - pos: 64.5,4.5 parent: 31 type: Transform - - uid: 3637 + - enabled: True + type: AmbientSound + - uid: 7214 components: - - pos: 0.5,26.5 + - pos: 69.5,9.5 parent: 31 type: Transform - - uid: 3639 + - enabled: True + type: AmbientSound + - uid: 7215 components: - - pos: -0.5,26.5 + - pos: 72.5,9.5 parent: 31 type: Transform - - uid: 3640 + - enabled: True + type: AmbientSound + - uid: 7216 components: - - pos: -1.5,26.5 + - pos: 76.5,9.5 parent: 31 type: Transform - - uid: 3641 + - enabled: True + type: AmbientSound + - uid: 7217 components: - - pos: -2.5,26.5 + - pos: 64.5,8.5 parent: 31 type: Transform - - uid: 3642 + - enabled: True + type: AmbientSound + - uid: 7370 components: - - pos: -2.5,27.5 + - pos: 22.5,-13.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3643 + - uid: 7371 components: - - pos: 41.5,2.5 + - pos: 0.5,-8.5 parent: 31 type: Transform - - uid: 3644 + - enabled: True + type: AmbientSound + - uid: 7384 components: - - pos: 42.5,2.5 + - pos: -12.5,-11.5 parent: 31 type: Transform - - uid: 3645 + - enabled: True + type: AmbientSound + - uid: 7385 components: - - pos: 43.5,0.5 + - pos: -27.5,-16.5 parent: 31 type: Transform - - uid: 3646 + - enabled: True + type: AmbientSound + - uid: 7415 components: - - pos: 43.5,1.5 + - pos: -19.5,-18.5 parent: 31 type: Transform - - uid: 3647 + - enabled: True + type: AmbientSound + - uid: 7416 components: - - pos: 44.5,1.5 + - pos: -19.5,-35.5 parent: 31 type: Transform - - uid: 3648 + - uid: 7417 components: - - pos: 45.5,1.5 + - pos: -19.5,-32.5 parent: 31 type: Transform - - uid: 3649 + - uid: 7950 components: - - pos: 46.5,1.5 + - pos: 55.5,4.5 parent: 31 type: Transform - - uid: 3650 + - uid: 8131 components: - - pos: 47.5,1.5 + - pos: 57.5,7.5 parent: 31 type: Transform - - uid: 3651 + - enabled: True + type: AmbientSound + - uid: 8132 components: - - pos: 48.5,1.5 + - pos: 56.5,7.5 parent: 31 type: Transform - - uid: 3652 + - enabled: True + type: AmbientSound + - uid: 8134 components: - - pos: 48.5,0.5 + - pos: 57.5,3.5 parent: 31 type: Transform - - uid: 3653 + - uid: 8135 components: - - pos: 48.5,-0.5 + - pos: 59.5,7.5 parent: 31 type: Transform - - uid: 3654 + - enabled: True + type: AmbientSound + - uid: 8136 components: - - pos: 48.5,-1.5 + - pos: 58.5,7.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3655 + - uid: 8140 components: - - pos: 48.5,-2.5 + - pos: 60.5,7.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3656 + - uid: 8141 components: - - pos: 47.5,-2.5 + - pos: 61.5,7.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3657 + - uid: 8142 components: - - pos: 47.5,-1.5 + - pos: 62.5,7.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3658 + - uid: 8143 components: - - pos: 41.5,-0.5 + - pos: 63.5,7.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3659 + - uid: 8303 components: - - pos: 40.5,2.5 + - pos: 38.5,12.5 parent: 31 type: Transform - - uid: 3660 + - uid: 8602 components: - - pos: 39.5,-0.5 + - pos: -30.5,-32.5 parent: 31 type: Transform - - uid: 3661 + - uid: 8603 components: - - pos: 39.5,2.5 + - pos: -29.5,-32.5 parent: 31 type: Transform - - uid: 3662 + - enabled: True + type: AmbientSound + - uid: 8604 components: - - pos: 38.5,2.5 + - pos: -28.5,-32.5 parent: 31 type: Transform - - uid: 3663 + - enabled: True + type: AmbientSound + - uid: 8605 components: - - pos: 36.5,-0.5 + - pos: -28.5,-33.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3664 + - uid: 8606 components: - - pos: 37.5,2.5 + - pos: -28.5,-34.5 parent: 31 type: Transform - - uid: 3665 + - enabled: True + type: AmbientSound + - uid: 8607 components: - - pos: 34.5,-0.5 + - pos: -29.5,-34.5 parent: 31 type: Transform - - uid: 3666 + - enabled: True + type: AmbientSound + - uid: 8608 components: - - pos: 33.5,-0.5 + - pos: -31.5,-34.5 parent: 31 type: Transform - - uid: 3667 + - enabled: True + type: AmbientSound + - uid: 8609 components: - - pos: 32.5,-0.5 + - pos: -30.5,-34.5 parent: 31 type: Transform - - uid: 3668 + - enabled: True + type: AmbientSound + - uid: 8610 components: - - pos: 32.5,0.5 + - pos: -32.5,-34.5 parent: 31 type: Transform - - uid: 3669 + - enabled: True + type: AmbientSound + - uid: 8611 components: - - pos: 31.5,0.5 + - pos: -33.5,-34.5 parent: 31 type: Transform - - uid: 3670 + - enabled: True + type: AmbientSound + - uid: 8612 components: - - pos: 31.5,1.5 + - pos: -34.5,-34.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3671 + - uid: 8613 components: - - pos: 43.5,2.5 + - pos: -35.5,-34.5 parent: 31 type: Transform - - uid: 3672 + - enabled: True + type: AmbientSound + - uid: 8614 components: - - pos: 43.5,3.5 + - pos: -35.5,-33.5 parent: 31 type: Transform - - uid: 3673 + - enabled: True + type: AmbientSound + - uid: 8615 components: - - pos: 43.5,4.5 + - pos: -35.5,-32.5 parent: 31 type: Transform - - uid: 3674 + - enabled: True + type: AmbientSound + - uid: 8616 components: - - pos: 43.5,5.5 + - pos: -35.5,-31.5 parent: 31 type: Transform - - uid: 3681 + - enabled: True + type: AmbientSound + - uid: 8617 components: - - pos: 21.5,-8.5 + - pos: -36.5,-31.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3682 + - uid: 8618 components: - - pos: 21.5,-7.5 + - pos: -37.5,-31.5 parent: 31 type: Transform - - uid: 3683 + - enabled: True + type: AmbientSound + - uid: 8619 components: - - pos: 21.5,-6.5 + - pos: -38.5,-31.5 parent: 31 type: Transform - - uid: 3684 + - enabled: True + type: AmbientSound + - uid: 8620 components: - - pos: 21.5,-5.5 + - pos: -38.5,-30.5 parent: 31 type: Transform - - uid: 3685 + - enabled: True + type: AmbientSound + - uid: 8621 components: - - pos: 21.5,-4.5 + - pos: -38.5,-29.5 parent: 31 type: Transform - - uid: 3686 + - enabled: True + type: AmbientSound + - uid: 8622 components: - - pos: 22.5,-4.5 + - pos: -38.5,-28.5 parent: 31 type: Transform - - uid: 3687 + - enabled: True + type: AmbientSound + - uid: 8623 components: - - pos: 22.5,-3.5 + - pos: -39.5,-28.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3688 + - uid: 8624 components: - - pos: 20.5,-9.5 + - pos: -40.5,-28.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3689 + - uid: 8625 components: - - pos: 19.5,-9.5 + - pos: -41.5,-28.5 parent: 31 type: Transform - - uid: 3690 + - enabled: True + type: AmbientSound + - uid: 8626 components: - - pos: 21.5,-9.5 + - pos: -42.5,-28.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3691 + - uid: 8627 components: - - pos: 18.5,-9.5 + - pos: -42.5,-29.5 parent: 31 type: Transform - - uid: 3692 + - enabled: True + type: AmbientSound + - uid: 8628 components: - - pos: 17.5,-9.5 + - pos: -42.5,-30.5 parent: 31 type: Transform - - uid: 3693 + - enabled: True + type: AmbientSound + - uid: 8629 components: - - pos: 16.5,-9.5 + - pos: -42.5,-31.5 parent: 31 type: Transform - - uid: 3694 + - enabled: True + type: AmbientSound + - uid: 8630 components: - - pos: 15.5,-9.5 + - pos: -40.5,-31.5 parent: 31 type: Transform - - uid: 3695 + - enabled: True + type: AmbientSound + - uid: 8631 components: - - pos: 14.5,-9.5 + - pos: -40.5,-30.5 parent: 31 type: Transform - - uid: 3696 + - enabled: True + type: AmbientSound + - uid: 8632 components: - - pos: 13.5,-9.5 + - pos: -40.5,-29.5 parent: 31 type: Transform - - uid: 3697 + - enabled: True + type: AmbientSound + - uid: 8633 components: - - pos: 12.5,-9.5 + - pos: -40.5,-27.5 parent: 31 type: Transform - - uid: 3698 + - enabled: True + type: AmbientSound + - uid: 8634 components: - - pos: 11.5,-9.5 + - pos: -40.5,-26.5 parent: 31 type: Transform - - uid: 3699 + - enabled: True + type: AmbientSound + - uid: 8635 components: - - pos: 10.5,-9.5 + - pos: -40.5,-25.5 parent: 31 type: Transform - - uid: 3700 + - enabled: True + type: AmbientSound + - uid: 8636 components: - - pos: 9.5,-9.5 + - pos: -42.5,-27.5 parent: 31 type: Transform - - uid: 3701 + - enabled: True + type: AmbientSound + - uid: 8637 components: - - pos: 8.5,-9.5 + - pos: -42.5,-26.5 parent: 31 type: Transform - - uid: 3702 + - enabled: True + type: AmbientSound + - uid: 8638 components: - - pos: 8.5,-10.5 + - pos: -42.5,-25.5 parent: 31 type: Transform - - uid: 3703 + - enabled: True + type: AmbientSound + - uid: 8639 components: - - pos: 8.5,-11.5 + - pos: -32.5,-35.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3704 + - uid: 8640 components: - - pos: 8.5,-12.5 + - pos: -32.5,-36.5 parent: 31 type: Transform - - uid: 3705 + - enabled: True + type: AmbientSound + - uid: 8641 components: - - pos: 8.5,-13.5 + - pos: -32.5,-37.5 parent: 31 type: Transform - - uid: 3706 + - enabled: True + type: AmbientSound + - uid: 8642 components: - - pos: 8.5,-14.5 + - pos: -32.5,-38.5 parent: 31 type: Transform - - uid: 3707 + - enabled: True + type: AmbientSound + - uid: 8643 components: - - pos: 8.5,-15.5 + - pos: -33.5,-38.5 parent: 31 type: Transform - - uid: 3708 + - enabled: True + type: AmbientSound + - uid: 8644 components: - - pos: 8.5,-16.5 + - pos: -34.5,-38.5 parent: 31 type: Transform - - uid: 3709 + - enabled: True + type: AmbientSound + - uid: 8645 components: - - pos: 7.5,-16.5 + - pos: -35.5,-38.5 parent: 31 type: Transform - - uid: 3710 + - enabled: True + type: AmbientSound + - uid: 8646 components: - - pos: 7.5,-17.5 + - pos: -31.5,-38.5 parent: 31 type: Transform - - uid: 3711 + - enabled: True + type: AmbientSound + - uid: 8647 components: - - pos: 15.5,-8.5 + - pos: -30.5,-38.5 parent: 31 type: Transform - - uid: 3712 + - enabled: True + type: AmbientSound + - uid: 8648 components: - - pos: 15.5,-7.5 + - pos: -29.5,-38.5 parent: 31 type: Transform - - uid: 3713 + - enabled: True + type: AmbientSound + - uid: 8649 components: - - pos: 15.5,-6.5 + - pos: -29.5,-36.5 parent: 31 type: Transform - - uid: 3714 + - enabled: True + type: AmbientSound + - uid: 8650 components: - - pos: 15.5,-5.5 + - pos: -30.5,-36.5 parent: 31 type: Transform - - uid: 3715 + - enabled: True + type: AmbientSound + - uid: 8651 components: - - pos: 15.5,-4.5 + - pos: -31.5,-36.5 parent: 31 type: Transform - - uid: 3716 + - enabled: True + type: AmbientSound + - uid: 8652 components: - - pos: 15.5,-3.5 + - pos: -33.5,-36.5 parent: 31 type: Transform - - uid: 3717 + - enabled: True + type: AmbientSound + - uid: 8653 components: - - pos: 15.5,-2.5 + - pos: -34.5,-36.5 parent: 31 type: Transform - - uid: 3718 + - enabled: True + type: AmbientSound + - uid: 8654 components: - - pos: 15.5,-1.5 + - pos: -35.5,-36.5 parent: 31 type: Transform - - uid: 3719 + - enabled: True + type: AmbientSound + - uid: 8665 components: - - pos: 15.5,-0.5 + - pos: -30.5,-31.5 parent: 31 type: Transform - - uid: 3720 + - uid: 8666 components: - - pos: 15.5,0.5 + - pos: -31.5,-31.5 parent: 31 type: Transform - - uid: 3721 + - uid: 9000 components: - - pos: 15.5,1.5 + - pos: -23.5,19.5 parent: 31 type: Transform - - uid: 3722 + - enabled: True + type: AmbientSound + - uid: 9077 components: - - pos: 16.5,1.5 + - pos: 38.5,14.5 parent: 31 type: Transform - - uid: 3723 + - enabled: True + type: AmbientSound + - uid: 9079 components: - - pos: 16.5,2.5 + - pos: 38.5,13.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3724 + - uid: 9166 components: - - pos: -0.5,-22.5 + - pos: 5.5,13.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3725 + - uid: 9196 components: - - pos: -0.5,-21.5 + - pos: 54.5,7.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3726 + - uid: 9390 components: - - pos: -0.5,-20.5 + - pos: 4.5,13.5 parent: 31 type: Transform - - uid: 3728 + - uid: 9393 components: - - pos: -1.5,-19.5 + - pos: 13.5,10.5 parent: 31 type: Transform - - uid: 3729 + - uid: 9394 components: - - pos: -1.5,-18.5 + - pos: 13.5,9.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3730 + - uid: 9474 components: - - pos: -1.5,-20.5 + - pos: 13.5,8.5 parent: 31 type: Transform - - uid: 3731 + - uid: 9481 components: - - pos: -2.5,-20.5 + - pos: 13.5,7.5 parent: 31 type: Transform - - uid: 3732 + - uid: 9482 components: - - pos: -3.5,-20.5 + - pos: 13.5,6.5 parent: 31 type: Transform - - uid: 3733 + - uid: 9483 components: - - pos: -4.5,-20.5 + - pos: 13.5,5.5 parent: 31 type: Transform - - uid: 3734 + - uid: 9484 components: - - pos: -5.5,-20.5 + - pos: 13.5,4.5 parent: 31 type: Transform - - uid: 3735 + - uid: 9485 components: - - pos: -6.5,-20.5 + - pos: 12.5,4.5 parent: 31 type: Transform - - uid: 3736 + - uid: 9486 components: - - pos: -7.5,-20.5 + - pos: 11.5,4.5 parent: 31 type: Transform - - uid: 3737 + - uid: 9487 components: - - pos: -8.5,-20.5 + - pos: 10.5,4.5 parent: 31 type: Transform - - uid: 3738 + - uid: 9488 components: - - pos: -9.5,-20.5 + - pos: 9.5,4.5 parent: 31 type: Transform - - uid: 3739 + - uid: 9489 components: - - pos: -9.5,-21.5 + - pos: 8.5,4.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3740 + - uid: 9490 components: - - pos: -10.5,-20.5 + - pos: 7.5,4.5 parent: 31 type: Transform - - uid: 3741 + - uid: 9491 components: - - pos: -11.5,-20.5 + - pos: 6.5,4.5 parent: 31 type: Transform - - uid: 3742 + - uid: 9492 components: - - pos: -12.5,-20.5 + - pos: 5.5,4.5 parent: 31 type: Transform - - uid: 3743 + - uid: 9493 components: - - pos: -13.5,-20.5 + - pos: 4.5,4.5 parent: 31 type: Transform - - uid: 3744 + - uid: 9494 components: - - pos: -13.5,-19.5 + - pos: 3.5,4.5 parent: 31 type: Transform - - uid: 3745 + - uid: 9495 components: - - pos: -13.5,-18.5 + - pos: 3.5,5.5 parent: 31 type: Transform - - uid: 3746 + - uid: 9496 components: - - pos: -13.5,-17.5 + - pos: 3.5,6.5 parent: 31 type: Transform - - uid: 3747 + - uid: 9497 components: - - pos: -14.5,-17.5 + - pos: 3.5,7.5 parent: 31 type: Transform - - uid: 3748 + - uid: 9498 components: - - pos: -14.5,-16.5 + - pos: 3.5,8.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3754 + - uid: 9499 components: - - pos: -2.5,-10.5 + - pos: 3.5,9.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3755 + - uid: 9500 components: - - pos: -2.5,-9.5 + - pos: 3.5,10.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3756 + - uid: 9501 components: - - pos: -3.5,-9.5 + - pos: 3.5,11.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3757 + - uid: 9502 components: - - pos: -4.5,-9.5 + - pos: 3.5,12.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3758 + - uid: 9503 components: - - pos: -5.5,-9.5 + - pos: 3.5,13.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3759 + - uid: 9509 components: - - pos: -5.5,-8.5 + - pos: 43.5,0.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3760 + - uid: 9591 components: - - pos: -6.5,-9.5 + - pos: 25.5,-13.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3761 + - uid: 9593 components: - - pos: -7.5,-9.5 + - pos: 23.5,-13.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3762 + - uid: 9594 components: - - pos: -8.5,-9.5 + - pos: 21.5,-13.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3763 + - uid: 9710 components: - - pos: -9.5,-9.5 + - pos: -7.5,25.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3764 + - uid: 9788 components: - - pos: -9.5,-8.5 + - pos: 24.5,-13.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3765 - components: - - pos: -9.5,-7.5 - parent: 31 - type: Transform - - uid: 3766 - components: - - pos: -9.5,-6.5 - parent: 31 - type: Transform - - uid: 3767 - components: - - pos: -10.5,-6.5 - parent: 31 - type: Transform - - uid: 3768 - components: - - pos: -11.5,-6.5 - parent: 31 - type: Transform - - uid: 3769 + - uid: 10230 components: - - pos: -12.5,-6.5 + - pos: 53.5,5.5 parent: 31 type: Transform - - uid: 3770 + - enabled: True + type: AmbientSound + - uid: 10236 components: - - pos: -12.5,-5.5 + - pos: 53.5,6.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3771 + - uid: 10256 components: - - pos: -12.5,-4.5 + - pos: 49.5,0.5 parent: 31 type: Transform - - uid: 3772 + - uid: 10257 components: - - pos: -12.5,-3.5 + - pos: 49.5,-0.5 parent: 31 type: Transform - - uid: 3773 + - uid: 10258 components: - - pos: -12.5,-2.5 + - pos: 49.5,-1.5 parent: 31 type: Transform - - uid: 3774 + - uid: 10259 components: - - pos: -12.5,-1.5 + - pos: 49.5,-2.5 parent: 31 type: Transform - - uid: 3775 + - uid: 10260 components: - - pos: -12.5,-0.5 + - pos: 49.5,-3.5 parent: 31 type: Transform - - uid: 3776 + - uid: 10261 components: - - pos: -12.5,0.5 + - pos: 50.5,-3.5 parent: 31 type: Transform - - uid: 3777 + - uid: 10262 components: - - pos: -12.5,1.5 + - pos: 51.5,-3.5 parent: 31 type: Transform - - uid: 3778 + - uid: 10263 components: - - pos: -11.5,1.5 + - pos: 52.5,-3.5 parent: 31 type: Transform - - uid: 3779 + - uid: 10264 components: - - pos: -11.5,2.5 + - pos: 52.5,-2.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3780 + - uid: 10265 components: - - pos: -21.5,-10.5 + - pos: 52.5,-1.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3781 + - uid: 10266 components: - - pos: -21.5,-9.5 + - pos: 52.5,-0.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3782 + - uid: 10267 components: - - pos: -21.5,-8.5 + - pos: 53.5,-0.5 parent: 31 type: Transform - - uid: 3783 + - enabled: True + type: AmbientSound + - uid: 10713 components: - - pos: -20.5,-8.5 + - pos: -15.5,14.5 parent: 31 type: Transform - - uid: 3784 + - uid: 10714 components: - - pos: -19.5,-8.5 + - pos: -14.5,14.5 parent: 31 type: Transform - - uid: 3785 + - uid: 10715 components: - - pos: -18.5,-8.5 + - pos: -13.5,14.5 parent: 31 type: Transform - - uid: 3786 + - uid: 10716 components: - - pos: -17.5,-8.5 + - pos: -12.5,14.5 parent: 31 type: Transform - - uid: 3787 + - uid: 10717 components: - - pos: -17.5,-9.5 + - pos: -12.5,15.5 parent: 31 type: Transform - - uid: 3788 + - uid: 10718 components: - - pos: -16.5,-9.5 + - pos: -11.5,15.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3789 + - uid: 10719 components: - - pos: -15.5,-9.5 + - pos: -10.5,15.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3790 + - uid: 10720 components: - - pos: -14.5,-9.5 + - pos: -9.5,15.5 parent: 31 type: Transform - - uid: 3791 + - uid: 10721 components: - - pos: -14.5,-8.5 + - pos: -8.5,15.5 parent: 31 type: Transform - - uid: 3792 + - uid: 10722 components: - - pos: -22.5,-8.5 + - pos: -8.5,14.5 parent: 31 type: Transform - - uid: 3793 + - uid: 10723 components: - - pos: -21.5,-11.5 + - pos: -8.5,13.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3794 + - uid: 10724 components: - - pos: -21.5,-12.5 + - pos: -8.5,12.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3795 + - uid: 10725 components: - - pos: -20.5,-12.5 + - pos: -8.5,11.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3796 + - uid: 10726 components: - - pos: -23.5,-8.5 + - pos: -8.5,10.5 parent: 31 type: Transform - - uid: 3797 + - uid: 10727 components: - - pos: -24.5,-8.5 + - pos: -9.5,10.5 parent: 31 type: Transform - - uid: 3798 + - uid: 10728 components: - - pos: -25.5,-8.5 + - pos: -10.5,10.5 parent: 31 type: Transform - - uid: 3799 + - uid: 10729 components: - - pos: -26.5,-8.5 + - pos: -11.5,10.5 parent: 31 type: Transform - - uid: 3800 + - uid: 10730 components: - - pos: -27.5,-8.5 + - pos: -12.5,10.5 parent: 31 type: Transform - - uid: 3801 + - uid: 10731 components: - - pos: -28.5,-8.5 + - pos: -13.5,10.5 parent: 31 type: Transform - - uid: 3802 + - uid: 10732 components: - - pos: -29.5,-8.5 + - pos: -14.5,10.5 parent: 31 type: Transform - - uid: 3803 + - uid: 10733 components: - - pos: -29.5,-7.5 + - pos: -15.5,10.5 parent: 31 type: Transform - - uid: 3804 + - uid: 10734 components: - - pos: -29.5,-6.5 + - pos: -16.5,10.5 + parent: 31 + type: Transform + - uid: 10735 + components: + - pos: -16.5,9.5 + parent: 31 + type: Transform + - uid: 10736 + components: + - pos: -16.5,8.5 + parent: 31 + type: Transform + - uid: 10737 + components: + - pos: -16.5,7.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3805 + - uid: 10738 components: - - pos: -29.5,-5.5 + - pos: -16.5,6.5 parent: 31 type: Transform - - uid: 3806 + - enabled: True + type: AmbientSound + - uid: 11204 components: - - pos: -29.5,-4.5 + - pos: 16.5,-27.5 parent: 31 type: Transform - - uid: 3807 + - uid: 11217 components: - - pos: -30.5,-4.5 + - pos: -28.5,-12.5 parent: 31 type: Transform - - uid: 3808 + - enabled: True + type: AmbientSound + - uid: 11218 components: - - pos: -30.5,-3.5 + - pos: -28.5,-13.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3809 + - uid: 11219 components: - - pos: -32.5,7.5 + - pos: -28.5,-13.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3810 + - uid: 11220 components: - - pos: -32.5,8.5 + - pos: -28.5,-14.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3811 + - uid: 11221 components: - - pos: -32.5,9.5 + - pos: -28.5,-15.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3812 + - uid: 11222 components: - - pos: -33.5,9.5 + - pos: -28.5,-15.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3813 + - uid: 11223 components: - - pos: -34.5,9.5 + - pos: -28.5,-16.5 parent: 31 type: Transform - - uid: 3814 + - enabled: True + type: AmbientSound + - uid: 11224 components: - - pos: -35.5,9.5 + - pos: -28.5,-17.5 parent: 31 type: Transform - - uid: 3815 + - enabled: True + type: AmbientSound + - uid: 11247 components: - - pos: -36.5,9.5 + - pos: -31.5,7.5 parent: 31 type: Transform - - uid: 3816 +- proto: CableHVStack + entities: + - uid: 3509 components: - - pos: -37.5,9.5 + - pos: 27.261366,0.3432963 parent: 31 type: Transform - - uid: 3817 + - uid: 3513 components: - - pos: -38.5,9.5 + - pos: 27.261366,0.3432963 parent: 31 type: Transform - - uid: 3818 + - uid: 6023 components: - - pos: -38.5,10.5 + - pos: 48.339085,5.504549 parent: 31 type: Transform - - uid: 3819 + - uid: 7634 components: - - pos: -39.5,10.5 + - pos: -20.539572,25.33725 parent: 31 type: Transform - - uid: 3820 +- proto: CableHVStack10 + entities: + - uid: 4536 components: - - pos: -39.5,11.5 + - pos: 56.25787,8.577132 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3821 +- proto: CableMV + entities: + - uid: 96 components: - - pos: -28.5,12.5 + - pos: 42.5,1.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3822 + - uid: 407 components: - - pos: -31.5,9.5 + - pos: 13.5,-8.5 parent: 31 type: Transform - - uid: 3823 + - enabled: True + type: AmbientSound + - uid: 428 components: - - pos: -31.5,10.5 + - pos: -9.5,-28.5 parent: 31 type: Transform - - uid: 3824 + - uid: 429 components: - - pos: -31.5,11.5 + - pos: -9.5,-30.5 parent: 31 type: Transform - - uid: 3825 + - uid: 434 components: - - pos: -31.5,12.5 + - pos: -7.5,-27.5 parent: 31 type: Transform - - uid: 3826 + - uid: 440 components: - - pos: -31.5,13.5 + - pos: -6.5,-21.5 parent: 31 type: Transform - - uid: 3827 + - uid: 463 components: - - pos: -30.5,13.5 + - pos: -3.5,-27.5 parent: 31 type: Transform - - uid: 3828 + - uid: 577 components: - - pos: -29.5,13.5 + - pos: -11.5,-25.5 parent: 31 type: Transform - - uid: 3829 + - uid: 590 components: - - pos: -28.5,13.5 + - pos: -15.5,-25.5 parent: 31 type: Transform - - uid: 3837 + - uid: 601 components: - - pos: -12.5,12.5 + - pos: -14.5,-23.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3846 + - uid: 605 components: - - pos: -6.5,15.5 + - pos: -10.5,-23.5 parent: 31 type: Transform - - uid: 3847 + - uid: 618 components: - - pos: -5.5,15.5 + - pos: 37.5,3.5 parent: 31 type: Transform - - uid: 3848 + - uid: 675 components: - - pos: -3.5,15.5 + - pos: -12.5,-10.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3850 + - uid: 678 components: - - pos: -16.5,16.5 + - pos: 22.5,-11.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3870 + - uid: 679 components: - - pos: -4.5,15.5 + - pos: -14.5,-10.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 3896 + - uid: 694 components: - - pos: -7.5,15.5 + - pos: -13.5,-10.5 parent: 31 type: Transform - - uid: 3919 + - uid: 724 components: - - pos: 13.5,-24.5 + - pos: -10.5,-22.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3920 + - uid: 725 components: - - pos: 13.5,-23.5 + - pos: -10.5,-21.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 4054 + - uid: 755 components: - - pos: -5.5,-7.5 + - pos: 10.5,25.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 4139 + - uid: 770 components: - - pos: 8.5,27.5 + - pos: 10.5,-14.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 4201 + - uid: 843 components: - - pos: -10.5,15.5 + - pos: -2.5,-27.5 parent: 31 type: Transform - - uid: 4332 + - uid: 845 components: - - pos: 78.5,-3.5 + - pos: 0.5,-28.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 4335 + - uid: 890 components: - - pos: 78.5,4.5 + - pos: 12.5,21.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4348 + - uid: 931 components: - - pos: 78.5,8.5 + - pos: 8.5,26.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 4349 + - uid: 986 components: - - pos: 78.5,7.5 + - pos: -0.5,-27.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 4350 + - uid: 1047 components: - - pos: 78.5,5.5 + - pos: 15.5,-13.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 4351 + - uid: 1049 components: - - pos: 64.5,6.5 + - pos: 15.5,-14.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 4352 + - uid: 1050 components: - - pos: 64.5,8.5 + - pos: 14.5,-14.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 4354 + - uid: 1065 components: - - pos: 66.5,9.5 + - pos: 11.5,-14.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 4355 + - uid: 1079 components: - - pos: 67.5,9.5 + - pos: 12.5,-14.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 4356 + - uid: 1080 components: - - pos: 69.5,9.5 + - pos: 16.5,-13.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4357 + - uid: 1097 components: - - pos: 71.5,9.5 + - pos: 13.5,-14.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 4358 + - uid: 1196 components: - - pos: 73.5,9.5 + - pos: -1.5,-10.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4359 + - uid: 1242 components: - - pos: 75.5,9.5 + - pos: -28.5,-12.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4360 + - uid: 1297 components: - - pos: 77.5,9.5 + - pos: 12.5,22.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4362 + - uid: 1569 components: - - pos: 64.5,7.5 + - pos: -15.5,-24.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 4363 + - uid: 1571 components: - - pos: 64.5,9.5 + - pos: 36.5,3.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 4365 + - uid: 1572 components: - - pos: 65.5,9.5 + - pos: 35.5,3.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 4366 + - uid: 1601 components: - - pos: 68.5,9.5 + - pos: 21.5,-10.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 4367 + - uid: 1726 components: - - pos: 78.5,9.5 + - pos: 55.5,7.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4369 + - uid: 1729 components: - - pos: 76.5,9.5 + - pos: 64.5,0.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4370 + - uid: 1731 components: - - pos: 74.5,9.5 + - pos: 56.5,7.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4371 + - uid: 1844 components: - - pos: 72.5,9.5 + - pos: 57.5,7.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4372 + - uid: 1873 components: - - pos: 70.5,9.5 + - pos: 60.5,7.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4373 + - uid: 2182 components: - - pos: 64.5,5.5 + - pos: -11.5,-19.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 4450 + - uid: 2194 components: - - pos: 74.5,-4.5 + - pos: -12.5,-27.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4543 + - uid: 2264 components: - - pos: 73.5,-4.5 + - pos: -11.5,-10.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 4544 + - uid: 2406 components: - - pos: 77.5,-4.5 + - pos: 65.5,-4.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4545 + - uid: 2432 components: - - pos: 76.5,-4.5 + - pos: 15.5,-27.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4546 + - uid: 2433 components: - - pos: 78.5,-1.5 + - pos: 15.5,-26.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4547 + - uid: 2715 components: - - pos: 78.5,-2.5 + - pos: -11.5,-35.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 4553 + - uid: 2744 components: - - pos: 78.5,-4.5 + - pos: -3.5,-21.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 4651 + - uid: 2822 components: - - pos: 64.5,-1.5 + - pos: -0.5,-8.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4652 + - uid: 2823 components: - - pos: 64.5,-2.5 + - pos: -0.5,-9.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4653 + - uid: 2842 components: - - pos: 64.5,-3.5 + - pos: -11.5,-34.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 4806 + - uid: 2868 components: - - pos: -6.5,-25.5 + - pos: 9.5,-14.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 4835 + - uid: 2884 components: - - pos: -6.5,-26.5 + - pos: -9.5,-33.5 parent: 31 type: Transform - - uid: 4863 + - uid: 2885 components: - - pos: 12.5,23.5 + - pos: -9.5,-27.5 parent: 31 type: Transform - - uid: 4911 + - uid: 2887 components: - - pos: 78.5,6.5 + - pos: -9.5,-29.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 4999 + - uid: 2888 components: - - pos: -0.5,-10.5 + - pos: -9.5,-34.5 + parent: 31 + type: Transform + - uid: 2892 + components: + - pos: 20.5,-13.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 5014 + - uid: 2908 components: - - pos: 64.5,-4.5 + - pos: -12.5,-11.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 5108 + - uid: 3108 components: - - pos: 66.5,-4.5 + - pos: 59.5,7.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 5122 + - uid: 3111 components: - - pos: 67.5,-4.5 + - pos: 58.5,7.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 5261 + - uid: 3140 components: - - pos: 68.5,-4.5 + - pos: 64.5,-0.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 5981 + - uid: 3144 components: - - pos: -12.5,15.5 + - pos: 43.5,10.5 parent: 31 type: Transform - - uid: 5982 + - enabled: True + type: AmbientSound + - uid: 3147 components: - - pos: -9.5,15.5 + - pos: 19.5,-13.5 parent: 31 type: Transform - - uid: 6175 + - uid: 3174 components: - - pos: 64.5,1.5 + - pos: 18.5,-11.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 6285 + - uid: 3221 components: - - pos: 60.5,-1.5 + - pos: 18.5,-10.5 parent: 31 type: Transform - - uid: 6291 + - uid: 3356 components: - - pos: 63.5,-1.5 + - pos: 14.5,-25.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6292 + - uid: 3357 components: - - pos: 61.5,-1.5 + - pos: 13.5,-25.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6317 + - uid: 3366 components: - - pos: 78.5,0.5 + - pos: -9.5,-19.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 6318 + - uid: 3370 components: - - pos: 78.5,1.5 + - pos: -8.5,-19.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 6319 + - uid: 3372 components: - - pos: 78.5,3.5 + - pos: -11.5,-33.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6325 + - uid: 3373 components: - - pos: 78.5,2.5 + - pos: -10.5,-35.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 6371 + - uid: 3481 components: - - pos: 34.5,10.5 + - pos: -16.5,17.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6372 + - uid: 3589 components: - - pos: 35.5,10.5 + - pos: 12.5,24.5 parent: 31 type: Transform - - uid: 6373 + - uid: 3597 components: - - pos: 37.5,10.5 + - pos: 27.5,13.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6450 - components: - - pos: 43.5,6.5 - parent: 31 - type: Transform - - uid: 6460 + - uid: 3598 components: - - pos: 43.5,8.5 + - pos: 28.5,13.5 parent: 31 type: Transform - - uid: 6461 + - enabled: True + type: AmbientSound + - uid: 3599 components: - - pos: 43.5,7.5 + - pos: 28.5,14.5 parent: 31 type: Transform - - uid: 6554 + - enabled: True + type: AmbientSound + - uid: 3600 components: - - pos: 36.5,10.5 + - pos: 26.5,13.5 parent: 31 type: Transform - - uid: 6555 + - enabled: True + type: AmbientSound + - uid: 3601 components: - - pos: 34.5,9.5 + - pos: 25.5,13.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6556 + - uid: 3602 components: - - pos: 34.5,8.5 + - pos: 24.5,13.5 parent: 31 type: Transform - - uid: 6588 + - uid: 3603 components: - - pos: 34.5,7.5 + - pos: 24.5,14.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6589 + - uid: 3604 components: - - pos: 34.5,6.5 + - pos: 24.5,12.5 parent: 31 type: Transform - - uid: 6590 + - uid: 3605 components: - - pos: 34.5,5.5 + - pos: 23.5,12.5 parent: 31 type: Transform - - uid: 6591 + - uid: 3606 components: - - pos: 34.5,4.5 + - pos: 22.5,12.5 parent: 31 type: Transform - - uid: 6592 + - uid: 3607 components: - - pos: 34.5,3.5 + - pos: 21.5,12.5 parent: 31 type: Transform - - uid: 6593 + - uid: 3608 components: - - pos: 34.5,2.5 + - pos: 20.5,12.5 parent: 31 type: Transform - - uid: 6594 + - uid: 3609 components: - - pos: 34.5,1.5 + - pos: 19.5,12.5 + parent: 31 + type: Transform + - uid: 3610 + components: + - pos: 18.5,12.5 + parent: 31 + type: Transform + - uid: 3611 + components: + - pos: 17.5,12.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6595 + - uid: 3612 components: - - pos: 34.5,0.5 + - pos: 16.5,12.5 parent: 31 type: Transform - - uid: 6638 + - uid: 3613 components: - - pos: 43.5,9.5 + - pos: 15.5,12.5 parent: 31 type: Transform - - uid: 6750 + - uid: 3614 components: - - pos: 64.5,3.5 + - pos: 14.5,12.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 6856 + - uid: 3615 components: - - pos: 64.5,2.5 + - pos: 13.5,12.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 6882 + - uid: 3616 components: - - pos: 64.5,4.5 + - pos: 12.5,12.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 6922 + - uid: 3617 components: - - pos: 69.5,-4.5 + - pos: 12.5,13.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 6923 + - uid: 3618 components: - - pos: 70.5,-4.5 + - pos: 11.5,24.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 6924 + - uid: 3620 components: - - pos: 71.5,-4.5 + - pos: 10.5,24.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 6925 + - uid: 3621 components: - - pos: 72.5,-4.5 + - pos: 9.5,23.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 7168 + - uid: 3622 components: - - pos: 0.5,-8.5 + - pos: 9.5,22.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 7177 + - uid: 3624 components: - - pos: 75.5,-4.5 + - pos: 9.5,25.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 7266 + - uid: 3628 components: - - pos: -9.5,-26.5 + - pos: 8.5,25.5 parent: 31 type: Transform - - uid: 7272 + - uid: 3629 components: - - pos: -8.5,-26.5 + - pos: 7.5,25.5 parent: 31 type: Transform - - uid: 7453 + - uid: 3630 components: - - pos: -11.5,-21.5 + - pos: 6.5,25.5 parent: 31 type: Transform - - uid: 7625 + - uid: 3631 components: - - pos: -11.5,-22.5 + - pos: 5.5,25.5 parent: 31 type: Transform - - uid: 8071 + - uid: 3632 components: - - pos: -18.5,16.5 + - pos: 4.5,25.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 8077 + - uid: 3633 components: - - pos: 12.5,20.5 + - pos: 3.5,25.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 8078 + - uid: 3634 components: - - pos: 12.5,19.5 + - pos: 2.5,25.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 8079 + - uid: 3635 components: - - pos: 11.5,19.5 + - pos: 1.5,25.5 parent: 31 type: Transform - - uid: 8080 + - uid: 3636 components: - - pos: 10.5,19.5 + - pos: 0.5,25.5 parent: 31 type: Transform - - uid: 8081 + - uid: 3637 components: - - pos: 9.5,19.5 + - pos: 0.5,26.5 parent: 31 type: Transform - - uid: 8082 + - uid: 3639 components: - - pos: 9.5,20.5 + - pos: -0.5,26.5 parent: 31 type: Transform - - uid: 8083 + - uid: 3640 components: - - pos: 9.5,21.5 + - pos: -1.5,26.5 parent: 31 type: Transform - - uid: 8133 + - uid: 3641 components: - - pos: 49.5,1.5 + - pos: -2.5,26.5 parent: 31 type: Transform - - uid: 8185 + - uid: 3642 components: - - pos: 50.5,1.5 + - pos: -2.5,27.5 parent: 31 type: Transform - - uid: 8186 + - enabled: True + type: AmbientSound + - uid: 3643 components: - - pos: 51.5,1.5 + - pos: 41.5,2.5 parent: 31 type: Transform - - uid: 8187 + - uid: 3644 components: - - pos: 52.5,1.5 + - pos: 42.5,2.5 parent: 31 type: Transform - - uid: 8188 + - uid: 3645 components: - - pos: 53.5,1.5 + - pos: 43.5,0.5 parent: 31 type: Transform - - uid: 8189 + - uid: 3646 components: - - pos: 54.5,1.5 + - pos: 43.5,1.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 8190 + - uid: 3647 components: - - pos: 55.5,1.5 + - pos: 44.5,1.5 parent: 31 type: Transform - - uid: 8191 + - uid: 3648 components: - - pos: 56.5,1.5 + - pos: 45.5,1.5 parent: 31 type: Transform - - uid: 8192 + - uid: 3649 components: - - pos: 57.5,1.5 + - pos: 46.5,1.5 parent: 31 type: Transform - - uid: 8193 + - uid: 3650 components: - - pos: 58.5,1.5 + - pos: 47.5,1.5 parent: 31 type: Transform - - uid: 8194 + - uid: 3651 components: - - pos: 59.5,1.5 + - pos: 48.5,1.5 parent: 31 type: Transform - - uid: 8195 + - uid: 3652 components: - - pos: 60.5,1.5 + - pos: 48.5,0.5 parent: 31 type: Transform - - uid: 8196 + - uid: 3653 components: - - pos: 60.5,2.5 + - pos: 48.5,-0.5 parent: 31 type: Transform - - uid: 8197 + - uid: 3654 components: - - pos: 61.5,2.5 + - pos: 48.5,-1.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8198 + - uid: 3657 components: - - pos: 62.5,2.5 + - pos: 47.5,-1.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 8199 + - uid: 3659 components: - - pos: 63.5,2.5 + - pos: 40.5,2.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 8669 + - uid: 3660 components: - - pos: -31.5,-31.5 + - pos: 39.5,-0.5 parent: 31 type: Transform - - uid: 8670 + - uid: 3661 components: - - pos: -32.5,-31.5 + - pos: 39.5,2.5 parent: 31 type: Transform - - uid: 8671 + - uid: 3662 components: - - pos: -32.5,-30.5 + - pos: 38.5,2.5 parent: 31 type: Transform - - uid: 8672 + - uid: 3664 components: - - pos: -32.5,-29.5 + - pos: 37.5,2.5 parent: 31 type: Transform - - uid: 8673 + - uid: 3665 components: - - pos: -32.5,-28.5 + - pos: 34.5,-0.5 parent: 31 type: Transform - - uid: 8674 + - uid: 3666 components: - - pos: -32.5,-27.5 + - pos: 33.5,-0.5 parent: 31 type: Transform - - uid: 8675 + - uid: 3667 components: - - pos: -32.5,-26.5 + - pos: 32.5,-0.5 parent: 31 type: Transform - - uid: 8676 + - uid: 3668 components: - - pos: -32.5,-25.5 + - pos: 32.5,0.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 8782 + - uid: 3669 components: - - pos: -8.5,15.5 + - pos: 31.5,0.5 parent: 31 type: Transform - - uid: 9055 + - uid: 3670 components: - - pos: -18.5,15.5 + - pos: 31.5,1.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 9082 + - uid: 3671 components: - - pos: -18.5,14.5 + - pos: 43.5,2.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 9083 + - uid: 3672 components: - - pos: -17.5,16.5 + - pos: 43.5,3.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 9084 + - uid: 3673 components: - - pos: -17.5,14.5 + - pos: 43.5,4.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 9618 + - uid: 3674 components: - - pos: -16.5,14.5 + - pos: 43.5,5.5 parent: 31 type: Transform - - uid: 9619 + - uid: 3681 components: - - pos: -15.5,14.5 + - pos: 21.5,-8.5 parent: 31 type: Transform - - uid: 9620 + - enabled: True + type: AmbientSound + - uid: 3682 components: - - pos: -14.5,14.5 + - pos: 21.5,-7.5 parent: 31 type: Transform - - uid: 9621 + - uid: 3683 components: - - pos: -13.5,14.5 + - pos: 21.5,-6.5 parent: 31 type: Transform - - uid: 9734 + - uid: 3684 components: - - pos: -11.5,15.5 + - pos: 21.5,-5.5 parent: 31 type: Transform - - uid: 9869 + - uid: 3685 components: - - pos: -12.5,14.5 + - pos: 21.5,-4.5 parent: 31 type: Transform - - uid: 9870 + - uid: 3686 components: - - pos: -12.5,13.5 + - pos: 22.5,-4.5 parent: 31 type: Transform -- proto: CableMVStack - entities: - - uid: 48 + - uid: 3687 components: - - pos: 48.35775,5.619252 + - pos: 22.5,-3.5 parent: 31 type: Transform - - uid: 152 + - enabled: True + type: AmbientSound + - uid: 3688 components: - - pos: 27.261366,0.5307963 + - pos: 20.5,-9.5 parent: 31 type: Transform - - uid: 712 + - enabled: True + type: AmbientSound + - uid: 3689 components: - - pos: 48.35775,5.619252 + - pos: 19.5,-9.5 parent: 31 type: Transform - - uid: 934 + - uid: 3690 components: - - pos: 27.261366,0.5307963 + - pos: 21.5,-9.5 parent: 31 type: Transform - - uid: 3137 + - uid: 3691 components: - - pos: 40.50022,-0.82814157 + - pos: 18.5,-9.5 parent: 31 type: Transform -- proto: CableTerminal - entities: - - uid: 4327 + - uid: 3692 components: - - rot: 3.141592653589793 rad - pos: 14.5,-29.5 + - pos: 17.5,-9.5 parent: 31 type: Transform - - canCollide: False - type: Physics - - fixtures: {} - type: Fixtures - - uid: 4328 + - uid: 3693 components: - - rot: 1.5707963267948966 rad - pos: -23.5,25.5 + - pos: 16.5,-9.5 parent: 31 type: Transform - - canCollide: False - type: Physics - - fixtures: {} - type: Fixtures - - uid: 6289 + - uid: 3694 components: - - rot: 1.5707963267948966 rad - pos: 57.5,-1.5 + - pos: 15.5,-9.5 parent: 31 type: Transform - - canCollide: False - type: Physics - - fixtures: {} - type: Fixtures - - uid: 6414 + - uid: 3695 components: - - pos: 40.5,6.5 + - pos: 14.5,-9.5 parent: 31 type: Transform - - canCollide: False - type: Physics - - fixtures: {} - type: Fixtures - - uid: 6930 + - uid: 3696 components: - - pos: 42.5,6.5 + - pos: 13.5,-9.5 parent: 31 type: Transform - - canCollide: False - type: Physics - - fixtures: {} - type: Fixtures - - uid: 6941 + - uid: 3697 components: - - pos: 41.5,6.5 + - pos: 12.5,-9.5 parent: 31 type: Transform - - canCollide: False - type: Physics - - fixtures: {} - type: Fixtures - - uid: 8573 + - uid: 3698 components: - - rot: 3.141592653589793 rad - pos: -30.5,-32.5 + - pos: 11.5,-9.5 parent: 31 type: Transform - - canCollide: False - type: Physics - - fixtures: {} - type: Fixtures -- proto: CandyBowl - entities: - - uid: 1105 + - uid: 3699 components: - - pos: 5.4776692,21.540764 + - pos: 10.5,-9.5 parent: 31 type: Transform - - uid: 1107 + - uid: 3700 components: - - pos: 11.342518,-3.0597043 + - pos: 9.5,-9.5 parent: 31 type: Transform -- proto: CaptainIDCard - entities: - - uid: 3367 + - uid: 3701 components: - - pos: 6.899317,24.721638 + - pos: 8.5,-9.5 parent: 31 type: Transform -- proto: CarbonDioxideCanister - entities: - - uid: 2065 + - uid: 3702 components: - - pos: 38.5,23.5 + - pos: 8.5,-10.5 parent: 31 type: Transform - - uid: 9692 + - uid: 3703 components: - - pos: -13.5,-17.5 + - pos: 8.5,-11.5 parent: 31 type: Transform - - uid: 10010 + - enabled: True + type: AmbientSound + - uid: 3704 components: - - pos: 36.5,12.5 + - pos: 8.5,-12.5 parent: 31 type: Transform -- proto: Carpet - entities: - - uid: 1120 + - uid: 3705 components: - - pos: -9.5,21.5 + - pos: 8.5,-13.5 parent: 31 type: Transform - - uid: 1164 + - uid: 3706 components: - - pos: -9.5,20.5 + - pos: 8.5,-14.5 parent: 31 type: Transform - - uid: 1275 + - uid: 3707 components: - - rot: 3.141592653589793 rad - pos: 0.5,-4.5 + - pos: 8.5,-15.5 parent: 31 type: Transform - - uid: 1376 + - uid: 3708 components: - - rot: 1.5707963267948966 rad - pos: -8.5,21.5 + - pos: 8.5,-16.5 parent: 31 type: Transform - - uid: 1916 + - uid: 3709 components: - - rot: 3.141592653589793 rad - pos: -0.5,-6.5 + - pos: 7.5,-16.5 parent: 31 type: Transform - - uid: 1917 + - uid: 3710 components: - - rot: 3.141592653589793 rad - pos: -0.5,-4.5 + - pos: 7.5,-17.5 parent: 31 type: Transform - - uid: 2129 + - uid: 3711 components: - - pos: -7.5,20.5 + - pos: 15.5,-8.5 parent: 31 type: Transform - - uid: 4059 + - uid: 3712 components: - - rot: 3.141592653589793 rad - pos: -0.5,-5.5 + - pos: 15.5,-7.5 parent: 31 type: Transform - - uid: 4160 + - uid: 3713 components: - - rot: 3.141592653589793 rad - pos: 0.5,-6.5 + - pos: 15.5,-6.5 parent: 31 type: Transform - - uid: 4161 + - uid: 3714 components: - - rot: 3.141592653589793 rad - pos: 0.5,-5.5 + - pos: 15.5,-5.5 parent: 31 type: Transform - - uid: 4700 + - uid: 3715 components: - - pos: -7.5,21.5 + - pos: 15.5,-4.5 parent: 31 type: Transform - - uid: 4886 + - uid: 3716 components: - - pos: -8.5,20.5 + - pos: 15.5,-3.5 parent: 31 type: Transform - - uid: 7302 + - uid: 3717 components: - - pos: 9.5,-25.5 + - pos: 15.5,-2.5 parent: 31 type: Transform - - uid: 7303 + - uid: 3718 components: - - pos: 9.5,-24.5 + - pos: 15.5,-1.5 parent: 31 type: Transform - - uid: 7304 + - uid: 3719 components: - - pos: 9.5,-23.5 + - pos: 15.5,-0.5 parent: 31 type: Transform - - uid: 7305 + - uid: 3720 components: - - pos: 9.5,-22.5 + - pos: 15.5,0.5 parent: 31 type: Transform - - uid: 7306 + - uid: 3721 components: - - pos: 10.5,-22.5 + - pos: 15.5,1.5 parent: 31 type: Transform - - uid: 7307 + - uid: 3722 components: - - pos: 12.5,-22.5 + - pos: 16.5,1.5 parent: 31 type: Transform - - uid: 7308 + - uid: 3723 components: - - pos: 11.5,-22.5 + - pos: 16.5,2.5 parent: 31 type: Transform - - uid: 7309 + - enabled: True + type: AmbientSound + - uid: 3746 components: - - pos: 12.5,-23.5 + - pos: 17.5,-13.5 parent: 31 type: Transform - - uid: 7310 + - uid: 3754 components: - - pos: 12.5,-24.5 + - pos: -2.5,-10.5 parent: 31 type: Transform - - uid: 7311 + - enabled: True + type: AmbientSound + - uid: 3755 components: - - pos: 12.5,-25.5 + - pos: -2.5,-9.5 parent: 31 type: Transform - - uid: 7312 + - enabled: True + type: AmbientSound + - uid: 3756 components: - - pos: 11.5,-25.5 + - pos: -3.5,-9.5 parent: 31 type: Transform - - uid: 7313 + - enabled: True + type: AmbientSound + - uid: 3757 components: - - pos: 10.5,-25.5 + - pos: -4.5,-9.5 parent: 31 type: Transform - - uid: 7314 + - enabled: True + type: AmbientSound + - uid: 3758 components: - - pos: 10.5,-24.5 + - pos: -5.5,-9.5 parent: 31 type: Transform - - uid: 7315 + - enabled: True + type: AmbientSound + - uid: 3759 components: - - pos: 10.5,-23.5 + - pos: -5.5,-8.5 parent: 31 type: Transform - - uid: 7316 + - enabled: True + type: AmbientSound + - uid: 3760 components: - - pos: 11.5,-23.5 + - pos: -6.5,-9.5 parent: 31 type: Transform - - uid: 7317 + - enabled: True + type: AmbientSound + - uid: 3761 components: - - pos: 11.5,-24.5 + - pos: -7.5,-9.5 parent: 31 type: Transform - - uid: 7437 + - enabled: True + type: AmbientSound + - uid: 3762 components: - - pos: -19.5,-5.5 + - pos: -8.5,-9.5 parent: 31 type: Transform - - uid: 8918 + - enabled: True + type: AmbientSound + - uid: 3763 components: - - rot: -1.5707963267948966 rad - pos: -25.5,-4.5 + - pos: -9.5,-9.5 parent: 31 type: Transform - - uid: 8919 + - enabled: True + type: AmbientSound + - uid: 3764 components: - - rot: -1.5707963267948966 rad - pos: -25.5,-5.5 + - pos: -9.5,-8.5 parent: 31 type: Transform - - uid: 8920 + - enabled: True + type: AmbientSound + - uid: 3765 components: - - rot: -1.5707963267948966 rad - pos: -25.5,-6.5 + - pos: -9.5,-7.5 parent: 31 type: Transform - - uid: 8921 + - uid: 3766 components: - - rot: -1.5707963267948966 rad - pos: -25.5,-7.5 + - pos: -9.5,-6.5 parent: 31 type: Transform - - uid: 8922 + - uid: 3767 components: - - rot: -1.5707963267948966 rad - pos: -23.5,-7.5 + - pos: -10.5,-6.5 parent: 31 type: Transform - - uid: 8923 + - uid: 3768 components: - - rot: -1.5707963267948966 rad - pos: -24.5,-7.5 + - pos: -11.5,-6.5 parent: 31 type: Transform - - uid: 8924 + - uid: 3769 components: - - rot: -1.5707963267948966 rad - pos: -24.5,-6.5 + - pos: -12.5,-6.5 parent: 31 type: Transform - - uid: 8925 + - uid: 3770 components: - - rot: -1.5707963267948966 rad - pos: -23.5,-6.5 + - pos: -12.5,-5.5 parent: 31 type: Transform - - uid: 8926 + - enabled: True + type: AmbientSound + - uid: 3771 components: - - rot: -1.5707963267948966 rad - pos: -23.5,-5.5 + - pos: -12.5,-4.5 parent: 31 type: Transform - - uid: 8927 + - uid: 3772 components: - - rot: -1.5707963267948966 rad - pos: -24.5,-5.5 + - pos: -12.5,-3.5 parent: 31 type: Transform - - uid: 8928 + - uid: 3773 components: - - rot: -1.5707963267948966 rad - pos: -24.5,-4.5 + - pos: -12.5,-2.5 parent: 31 type: Transform - - uid: 8929 + - uid: 3774 components: - - rot: -1.5707963267948966 rad - pos: -23.5,-4.5 + - pos: -12.5,-1.5 parent: 31 type: Transform - - uid: 8930 + - uid: 3775 components: - - rot: -1.5707963267948966 rad - pos: -22.5,-4.5 + - pos: -12.5,-0.5 parent: 31 type: Transform - - uid: 8931 + - uid: 3776 components: - - rot: -1.5707963267948966 rad - pos: -22.5,-5.5 + - pos: -12.5,0.5 parent: 31 type: Transform - - uid: 8932 + - uid: 3777 components: - - rot: -1.5707963267948966 rad - pos: -22.5,-6.5 + - pos: -12.5,1.5 parent: 31 type: Transform - - uid: 8933 + - uid: 3778 components: - - rot: -1.5707963267948966 rad - pos: -22.5,-7.5 + - pos: -11.5,1.5 parent: 31 type: Transform -- proto: CarpetBlack - entities: - - uid: 1449 + - uid: 3779 components: - - rot: 1.5707963267948966 rad - pos: -23.5,16.5 + - pos: -11.5,2.5 parent: 31 type: Transform - - uid: 4184 + - enabled: True + type: AmbientSound + - uid: 3781 components: - - pos: -1.5,24.5 + - pos: -21.5,-9.5 parent: 31 type: Transform - - uid: 4189 + - uid: 3782 components: - - pos: -1.5,25.5 + - pos: -21.5,-8.5 parent: 31 type: Transform - - uid: 6281 + - uid: 3783 components: - - rot: 1.5707963267948966 rad - pos: -23.5,17.5 + - pos: -20.5,-8.5 parent: 31 type: Transform - - uid: 6309 + - uid: 3784 components: - - rot: 1.5707963267948966 rad - pos: -22.5,17.5 + - pos: -19.5,-8.5 parent: 31 type: Transform - - uid: 7360 + - uid: 3785 components: - - rot: 3.141592653589793 rad - pos: -11.5,-7.5 + - pos: -18.5,-8.5 parent: 31 type: Transform - - uid: 7361 + - uid: 3786 components: - - rot: 3.141592653589793 rad - pos: -11.5,-6.5 + - pos: -17.5,-8.5 parent: 31 type: Transform - - uid: 7362 + - uid: 3787 components: - - rot: 3.141592653589793 rad - pos: -10.5,-6.5 + - pos: -17.5,-9.5 parent: 31 type: Transform - - uid: 7363 + - enabled: True + type: AmbientSound + - uid: 3788 components: - - rot: 3.141592653589793 rad - pos: -10.5,-7.5 + - pos: -16.5,-9.5 parent: 31 type: Transform -- proto: CarpetBlue - entities: - - uid: 20 + - enabled: True + type: AmbientSound + - uid: 3789 components: - - pos: 11.5,23.5 + - pos: -15.5,-9.5 parent: 31 type: Transform - - uid: 63 + - enabled: True + type: AmbientSound + - uid: 3790 components: - - pos: 7.5,23.5 + - pos: -14.5,-9.5 parent: 31 type: Transform - - uid: 70 + - uid: 3791 components: - - pos: 24.5,-15.5 + - pos: -14.5,-8.5 parent: 31 type: Transform - - uid: 73 + - uid: 3792 components: - - pos: 11.5,24.5 + - pos: -22.5,-8.5 parent: 31 type: Transform - - uid: 484 + - uid: 3796 components: - - pos: 24.5,-14.5 + - pos: -23.5,-8.5 parent: 31 type: Transform - - uid: 491 + - uid: 3797 components: - - pos: 6.5,24.5 + - pos: -24.5,-8.5 parent: 31 type: Transform - - uid: 989 + - uid: 3798 components: - - pos: 12.5,23.5 + - pos: -25.5,-8.5 parent: 31 type: Transform - - uid: 1477 + - uid: 3799 components: - - pos: 23.5,-14.5 + - pos: -26.5,-8.5 parent: 31 type: Transform - - uid: 2209 + - uid: 3800 components: - - pos: 23.5,-15.5 + - pos: -27.5,-8.5 parent: 31 type: Transform - - uid: 3270 + - uid: 3801 components: - - pos: 8.5,23.5 + - pos: -28.5,-8.5 parent: 31 type: Transform - - uid: 3271 + - uid: 3802 components: - - pos: 6.5,23.5 + - pos: -29.5,-8.5 parent: 31 type: Transform - - uid: 3273 + - uid: 3803 components: - - pos: 7.5,24.5 + - pos: -29.5,-7.5 parent: 31 type: Transform - - uid: 4107 + - uid: 3804 components: - - pos: -29.5,-1.5 + - pos: -29.5,-6.5 parent: 31 type: Transform - - uid: 4108 + - enabled: True + type: AmbientSound + - uid: 3805 components: - - pos: -29.5,-2.5 + - pos: -29.5,-5.5 parent: 31 type: Transform - - uid: 4109 + - uid: 3806 components: - - pos: -28.5,-1.5 + - pos: -29.5,-4.5 parent: 31 type: Transform - - uid: 4110 + - uid: 3807 components: - - pos: -28.5,-2.5 + - pos: -30.5,-4.5 parent: 31 type: Transform - - uid: 5121 + - uid: 3808 components: - - pos: 8.5,24.5 + - pos: -30.5,-3.5 parent: 31 type: Transform - - uid: 5137 + - enabled: True + type: AmbientSound + - uid: 3809 components: - - pos: 12.5,24.5 + - pos: -32.5,7.5 parent: 31 type: Transform - - uid: 7228 + - enabled: True + type: AmbientSound + - uid: 3810 components: - - pos: 22.5,-15.5 + - pos: -32.5,8.5 parent: 31 type: Transform - - uid: 7229 + - enabled: True + type: AmbientSound + - uid: 3811 components: - - pos: 22.5,-14.5 + - pos: -32.5,9.5 parent: 31 type: Transform -- proto: CarpetGreen - entities: - - uid: 2452 + - enabled: True + type: AmbientSound + - uid: 3812 components: - - rot: 3.141592653589793 rad - pos: -0.5,0.5 + - pos: -33.5,9.5 parent: 31 type: Transform - - uid: 4058 + - enabled: True + type: AmbientSound + - uid: 3813 components: - - rot: 3.141592653589793 rad - pos: 0.5,0.5 + - pos: -34.5,9.5 parent: 31 type: Transform - - uid: 4062 + - uid: 3814 components: - - rot: 3.141592653589793 rad - pos: -0.5,1.5 + - pos: -35.5,9.5 parent: 31 type: Transform - - uid: 4099 + - uid: 3815 components: - - pos: -29.5,1.5 + - pos: -36.5,9.5 parent: 31 type: Transform - - uid: 4100 + - uid: 3816 components: - - pos: -29.5,0.5 + - pos: -37.5,9.5 parent: 31 type: Transform - - uid: 4101 + - uid: 3817 components: - - pos: -28.5,1.5 + - pos: -38.5,9.5 parent: 31 type: Transform - - uid: 4102 + - uid: 3818 components: - - pos: -28.5,0.5 + - pos: -38.5,10.5 parent: 31 type: Transform - - uid: 4155 + - uid: 3819 components: - - rot: 3.141592653589793 rad - pos: 12.5,-29.5 + - pos: -39.5,10.5 parent: 31 type: Transform - - uid: 4721 + - uid: 3820 components: - - rot: 3.141592653589793 rad - pos: 11.5,-30.5 + - pos: -39.5,11.5 parent: 31 type: Transform - - uid: 4722 + - enabled: True + type: AmbientSound + - uid: 3821 components: - - rot: 3.141592653589793 rad - pos: 11.5,-29.5 + - pos: -28.5,12.5 parent: 31 type: Transform - - uid: 4780 + - enabled: True + type: AmbientSound + - uid: 3822 components: - - rot: 3.141592653589793 rad - pos: 12.5,-30.5 + - pos: -31.5,9.5 parent: 31 type: Transform - - uid: 8423 + - uid: 3823 components: - - rot: 3.141592653589793 rad - pos: 0.5,1.5 + - pos: -31.5,10.5 parent: 31 type: Transform - - uid: 8726 + - uid: 3824 components: - - pos: -34.5,-29.5 + - pos: -31.5,11.5 parent: 31 type: Transform - - uid: 8727 + - uid: 3825 components: - - pos: -34.5,-28.5 + - pos: -31.5,12.5 parent: 31 type: Transform - - uid: 8728 + - uid: 3826 components: - - pos: -35.5,-28.5 + - pos: -31.5,13.5 parent: 31 type: Transform - - uid: 8729 + - uid: 3827 components: - - pos: -36.5,-28.5 + - pos: -30.5,13.5 parent: 31 type: Transform - - uid: 8730 + - uid: 3828 components: - - pos: -36.5,-29.5 + - pos: -29.5,13.5 parent: 31 type: Transform - - uid: 8731 + - uid: 3829 components: - - pos: -35.5,-29.5 + - pos: -28.5,13.5 parent: 31 type: Transform - - uid: 8911 + - uid: 3837 components: - - pos: -24.5,-2.5 + - pos: -12.5,12.5 parent: 31 type: Transform - - uid: 8912 + - enabled: True + type: AmbientSound + - uid: 3839 components: - - pos: -23.5,-2.5 + - pos: 21.5,-13.5 parent: 31 type: Transform - - uid: 8913 + - enabled: True + type: AmbientSound + - uid: 3846 components: - - pos: -23.5,-1.5 + - pos: -6.5,15.5 parent: 31 type: Transform - - uid: 8914 + - uid: 3847 components: - - pos: -24.5,-1.5 + - pos: -5.5,15.5 parent: 31 type: Transform - - uid: 9014 + - uid: 3848 components: - - pos: 7.5,-27.5 + - pos: -3.5,15.5 parent: 31 type: Transform - - uid: 9015 + - enabled: True + type: AmbientSound + - uid: 3850 components: - - pos: 8.5,-27.5 + - pos: -16.5,16.5 parent: 31 type: Transform - - uid: 9016 + - enabled: True + type: AmbientSound + - uid: 3870 components: - - pos: 8.5,-26.5 + - pos: -4.5,15.5 parent: 31 type: Transform - - uid: 9017 + - enabled: True + type: AmbientSound + - uid: 3879 components: - - pos: 7.5,-26.5 + - pos: -31.5,-12.5 parent: 31 type: Transform - - uid: 9018 + - enabled: True + type: AmbientSound + - uid: 3896 components: - - pos: 6.5,-27.5 + - pos: -7.5,15.5 parent: 31 type: Transform - - uid: 9019 + - uid: 3919 components: - - pos: 6.5,-26.5 + - pos: 13.5,-24.5 parent: 31 type: Transform -- proto: CarpetOrange - entities: - - uid: 22 + - enabled: True + type: AmbientSound + - uid: 3920 components: - - rot: -1.5707963267948966 rad - pos: -6.5,-2.5 + - pos: 13.5,-23.5 parent: 31 type: Transform - - uid: 40 + - enabled: True + type: AmbientSound + - uid: 4054 components: - - rot: -1.5707963267948966 rad - pos: -7.5,-1.5 + - pos: -5.5,-7.5 parent: 31 type: Transform - - uid: 82 + - enabled: True + type: AmbientSound + - uid: 4139 components: - - rot: -1.5707963267948966 rad - pos: -5.5,-1.5 + - pos: 8.5,27.5 parent: 31 type: Transform - - uid: 102 + - enabled: True + type: AmbientSound + - uid: 4201 components: - - rot: -1.5707963267948966 rad - pos: -7.5,-2.5 + - pos: -10.5,15.5 parent: 31 type: Transform - - uid: 107 + - uid: 4332 components: - - rot: -1.5707963267948966 rad - pos: -6.5,-1.5 + - pos: 78.5,-3.5 parent: 31 type: Transform - - uid: 119 + - enabled: True + type: AmbientSound + - uid: 4335 components: - - rot: -1.5707963267948966 rad - pos: -5.5,-2.5 + - pos: 78.5,4.5 parent: 31 type: Transform - - uid: 559 + - enabled: True + type: AmbientSound + - uid: 4338 components: - - pos: -3.5,-0.5 + - pos: 18.5,-13.5 parent: 31 type: Transform - - uid: 985 + - uid: 4348 components: - - pos: 38.5,-0.5 + - pos: 78.5,8.5 parent: 31 type: Transform - - uid: 1046 + - enabled: True + type: AmbientSound + - uid: 4349 components: - - pos: -5.5,-0.5 + - pos: 78.5,7.5 parent: 31 type: Transform - - uid: 1154 + - enabled: True + type: AmbientSound + - uid: 4350 components: - - pos: 38.5,-1.5 + - pos: 78.5,5.5 parent: 31 type: Transform - - uid: 1338 + - enabled: True + type: AmbientSound + - uid: 4351 components: - - pos: -4.5,-0.5 + - pos: 64.5,6.5 parent: 31 type: Transform - - uid: 1607 + - enabled: True + type: AmbientSound + - uid: 4352 components: - - pos: 39.5,-0.5 + - pos: 64.5,8.5 parent: 31 type: Transform - - uid: 1608 + - enabled: True + type: AmbientSound + - uid: 4354 components: - - pos: 39.5,-1.5 + - pos: 66.5,9.5 parent: 31 type: Transform - - uid: 2387 + - enabled: True + type: AmbientSound + - uid: 4355 components: - - pos: -6.5,-0.5 + - pos: 67.5,9.5 parent: 31 type: Transform - - uid: 3751 + - enabled: True + type: AmbientSound + - uid: 4356 components: - - pos: -7.5,-0.5 + - pos: 69.5,9.5 parent: 31 type: Transform - - uid: 3752 + - enabled: True + type: AmbientSound + - uid: 4357 components: - - pos: -2.5,-0.5 + - pos: 71.5,9.5 parent: 31 type: Transform - - uid: 4303 + - enabled: True + type: AmbientSound + - uid: 4358 components: - - pos: 26.5,9.5 + - pos: 73.5,9.5 parent: 31 type: Transform - - uid: 4304 + - enabled: True + type: AmbientSound + - uid: 4359 components: - - pos: 26.5,8.5 + - pos: 75.5,9.5 parent: 31 type: Transform - - uid: 6242 + - enabled: True + type: AmbientSound + - uid: 4360 components: - - pos: 27.5,8.5 + - pos: 77.5,9.5 parent: 31 type: Transform - - uid: 6243 + - enabled: True + type: AmbientSound + - uid: 4362 components: - - pos: 27.5,9.5 + - pos: 64.5,7.5 parent: 31 type: Transform - - uid: 7709 + - enabled: True + type: AmbientSound + - uid: 4363 components: - - pos: -36.5,12.5 + - pos: 64.5,9.5 parent: 31 type: Transform - - uid: 7710 + - enabled: True + type: AmbientSound + - uid: 4365 components: - - pos: -36.5,13.5 + - pos: 65.5,9.5 parent: 31 type: Transform - - uid: 7711 + - enabled: True + type: AmbientSound + - uid: 4366 components: - - pos: -36.5,14.5 + - pos: 68.5,9.5 parent: 31 type: Transform - - uid: 7712 + - enabled: True + type: AmbientSound + - uid: 4367 components: - - pos: -37.5,13.5 + - pos: 78.5,9.5 parent: 31 type: Transform - - uid: 7713 + - enabled: True + type: AmbientSound + - uid: 4369 components: - - pos: -35.5,13.5 + - pos: 76.5,9.5 parent: 31 type: Transform - - uid: 8426 + - enabled: True + type: AmbientSound + - uid: 4370 components: - - pos: -2.5,-2.5 + - pos: 74.5,9.5 parent: 31 type: Transform - - uid: 8427 + - enabled: True + type: AmbientSound + - uid: 4371 components: - - pos: -3.5,-2.5 + - pos: 72.5,9.5 parent: 31 type: Transform - - uid: 8428 + - enabled: True + type: AmbientSound + - uid: 4372 components: - - pos: -4.5,-2.5 + - pos: 70.5,9.5 parent: 31 type: Transform - - uid: 8429 + - enabled: True + type: AmbientSound + - uid: 4373 components: - - pos: -4.5,-1.5 + - pos: 64.5,5.5 parent: 31 type: Transform - - uid: 8430 + - enabled: True + type: AmbientSound + - uid: 4450 components: - - pos: -3.5,-1.5 + - pos: 74.5,-4.5 parent: 31 type: Transform - - uid: 8431 + - enabled: True + type: AmbientSound + - uid: 4543 components: - - pos: -2.5,-1.5 + - pos: 73.5,-4.5 parent: 31 type: Transform -- proto: CarpetPink - entities: - - uid: 4103 + - enabled: True + type: AmbientSound + - uid: 4544 components: - - pos: -29.5,-4.5 + - pos: 77.5,-4.5 parent: 31 type: Transform - - uid: 4104 + - enabled: True + type: AmbientSound + - uid: 4545 components: - - pos: -29.5,-5.5 + - pos: 76.5,-4.5 parent: 31 type: Transform - - uid: 4105 + - enabled: True + type: AmbientSound + - uid: 4546 components: - - pos: -28.5,-4.5 + - pos: 78.5,-1.5 parent: 31 type: Transform - - uid: 4106 + - enabled: True + type: AmbientSound + - uid: 4547 components: - - pos: -28.5,-5.5 + - pos: 78.5,-2.5 parent: 31 type: Transform - - uid: 7298 + - enabled: True + type: AmbientSound + - uid: 4553 components: - - pos: 8.5,-29.5 + - pos: 78.5,-4.5 parent: 31 type: Transform - - uid: 7299 + - enabled: True + type: AmbientSound + - uid: 4651 components: - - pos: 8.5,-30.5 + - pos: 64.5,-1.5 parent: 31 type: Transform - - uid: 7300 + - enabled: True + type: AmbientSound + - uid: 4652 components: - - pos: 9.5,-30.5 + - pos: 64.5,-2.5 parent: 31 type: Transform - - uid: 7301 + - enabled: True + type: AmbientSound + - uid: 4653 components: - - pos: 9.5,-29.5 + - pos: 64.5,-3.5 parent: 31 type: Transform -- proto: CarpetPurple - entities: - - uid: 819 + - enabled: True + type: AmbientSound + - uid: 4822 components: - - rot: -1.5707963267948966 rad - pos: -3.5,-24.5 + - pos: 23.5,-11.5 parent: 31 type: Transform - - uid: 1044 + - uid: 4841 components: - - rot: -1.5707963267948966 rad - pos: -3.5,-23.5 + - pos: 0.5,-27.5 parent: 31 type: Transform - - uid: 1470 + - uid: 4863 components: - - rot: -1.5707963267948966 rad - pos: -4.5,-23.5 + - pos: 12.5,23.5 parent: 31 type: Transform - - uid: 2744 + - uid: 4868 components: - - rot: -1.5707963267948966 rad - pos: -5.5,-24.5 + - pos: 1.5,-30.5 parent: 31 type: Transform - - uid: 2766 + - enabled: True + type: AmbientSound + - uid: 4911 components: - - rot: -1.5707963267948966 rad - pos: -4.5,-24.5 + - pos: 78.5,6.5 parent: 31 type: Transform - - uid: 9033 + - enabled: True + type: AmbientSound + - uid: 4999 components: - - rot: -1.5707963267948966 rad - pos: -5.5,-23.5 + - pos: -0.5,-10.5 parent: 31 type: Transform -- proto: CarpetSBlue - entities: - - uid: 91 + - enabled: True + type: AmbientSound + - uid: 5014 components: - - pos: 9.5,19.5 + - pos: 64.5,-4.5 parent: 31 type: Transform - - uid: 633 + - enabled: True + type: AmbientSound + - uid: 5108 components: - - pos: 8.5,16.5 + - pos: 66.5,-4.5 parent: 31 type: Transform - - uid: 1177 + - enabled: True + type: AmbientSound + - uid: 5122 components: - - pos: 8.5,19.5 + - pos: 67.5,-4.5 parent: 31 type: Transform - - uid: 7155 + - enabled: True + type: AmbientSound + - uid: 5261 components: - - pos: 9.5,20.5 + - pos: 68.5,-4.5 parent: 31 type: Transform - - uid: 8418 + - enabled: True + type: AmbientSound + - uid: 5650 components: - - rot: 3.141592653589793 rad - pos: 8.5,20.5 + - pos: -4.5,-21.5 parent: 31 type: Transform - - uid: 9052 + - uid: 5692 components: - - pos: 9.5,16.5 + - pos: -9.5,-35.5 parent: 31 type: Transform -- proto: CarrotSeeds - entities: - - uid: 10135 + - uid: 5720 components: - - pos: 48.303993,-27.148758 + - pos: -9.5,-32.5 parent: 31 type: Transform - - uid: 10136 + - uid: 5721 components: - - pos: 48.361862,-27.218203 + - pos: -9.5,-31.5 parent: 31 type: Transform -- proto: Catwalk - entities: - - uid: 2 + - uid: 5725 components: - - pos: -3.5,21.5 + - pos: -6.5,-27.5 parent: 31 type: Transform - - uid: 529 + - uid: 5726 components: - - pos: -1.5,21.5 + - pos: -8.5,-27.5 parent: 31 type: Transform - - uid: 701 + - uid: 5728 components: - - pos: -17.5,-14.5 + - pos: -5.5,-27.5 parent: 31 type: Transform - - uid: 705 + - uid: 5736 components: - - pos: -9.5,-10.5 + - pos: -7.5,-19.5 parent: 31 type: Transform - - uid: 710 + - uid: 5744 components: - - pos: -7.5,-10.5 + - pos: -10.5,-19.5 parent: 31 type: Transform - - uid: 713 + - uid: 5748 components: - - pos: -4.5,-10.5 + - pos: -10.5,-25.5 parent: 31 type: Transform - - uid: 717 + - uid: 5749 components: - - pos: -15.5,-14.5 + - pos: -13.5,-25.5 parent: 31 type: Transform - - uid: 722 + - uid: 5750 components: - - pos: -2.5,-10.5 + - pos: -12.5,-25.5 parent: 31 type: Transform - - uid: 729 + - uid: 5751 components: - - pos: -12.5,-14.5 + - pos: -15.5,-23.5 parent: 31 type: Transform - - uid: 734 + - uid: 5753 components: - - pos: -10.5,-14.5 + - pos: -4.5,-27.5 parent: 31 type: Transform - - uid: 836 + - uid: 5755 components: - - pos: 48.5,-2.5 + - pos: -1.5,-27.5 parent: 31 type: Transform - - uid: 853 + - uid: 5759 components: - - pos: 49.5,-2.5 + - pos: 0.5,-30.5 parent: 31 type: Transform - - uid: 854 + - uid: 5761 components: - - pos: 47.5,-3.5 + - pos: 0.5,-29.5 parent: 31 type: Transform - - uid: 855 + - uid: 5981 components: - - pos: 47.5,-6.5 + - pos: -12.5,15.5 parent: 31 type: Transform - - uid: 876 + - uid: 5982 components: - - pos: 50.5,-2.5 + - pos: -9.5,15.5 parent: 31 type: Transform - - uid: 880 + - uid: 6099 components: - - pos: 51.5,-3.5 + - pos: -11.5,-27.5 parent: 31 type: Transform - - uid: 974 + - uid: 6175 components: - - pos: -2.5,21.5 + - pos: 64.5,1.5 parent: 31 type: Transform - - uid: 1153 + - enabled: True + type: AmbientSound + - uid: 6296 components: - - pos: -0.5,21.5 + - pos: -10.5,-20.5 parent: 31 type: Transform - - uid: 1427 + - uid: 6317 components: - - pos: -1.5,-10.5 + - pos: 78.5,0.5 parent: 31 type: Transform - - uid: 1432 + - enabled: True + type: AmbientSound + - uid: 6318 components: - - pos: -0.5,-10.5 + - pos: 78.5,1.5 parent: 31 type: Transform - - uid: 1434 + - enabled: True + type: AmbientSound + - uid: 6319 components: - - pos: -13.5,-14.5 + - pos: 78.5,3.5 parent: 31 type: Transform - - uid: 1435 + - enabled: True + type: AmbientSound + - uid: 6325 components: - - pos: -16.5,-14.5 + - pos: 78.5,2.5 parent: 31 type: Transform - - uid: 1436 + - enabled: True + type: AmbientSound + - uid: 6371 components: - - pos: -18.5,-14.5 + - pos: 34.5,10.5 parent: 31 type: Transform - - uid: 1437 + - enabled: True + type: AmbientSound + - uid: 6372 components: - - pos: -8.5,-10.5 + - pos: 35.5,10.5 parent: 31 type: Transform - - uid: 1438 + - uid: 6373 components: - - pos: -5.5,-10.5 + - pos: 37.5,10.5 parent: 31 type: Transform - - uid: 1439 + - enabled: True + type: AmbientSound + - uid: 6450 components: - - pos: -14.5,-14.5 + - pos: 43.5,6.5 parent: 31 type: Transform - - uid: 1440 + - uid: 6460 components: - - pos: -3.5,-10.5 + - pos: 43.5,8.5 parent: 31 type: Transform - - uid: 1441 + - uid: 6461 components: - - pos: -11.5,-14.5 + - pos: 43.5,7.5 parent: 31 type: Transform - - uid: 1442 + - uid: 6554 components: - - pos: -9.5,-14.5 + - pos: 36.5,10.5 parent: 31 type: Transform - - uid: 1492 + - uid: 6555 components: - - pos: 6.5,14.5 + - pos: 34.5,9.5 parent: 31 type: Transform - - uid: 1552 + - enabled: True + type: AmbientSound + - uid: 6556 components: - - pos: -9.5,-8.5 + - pos: 34.5,8.5 parent: 31 type: Transform - - uid: 2157 + - uid: 6588 components: - - pos: 12.5,14.5 + - pos: 34.5,7.5 parent: 31 type: Transform - - uid: 2158 + - enabled: True + type: AmbientSound + - uid: 6589 components: - - pos: 12.5,18.5 + - pos: 34.5,6.5 parent: 31 type: Transform - - uid: 3958 + - uid: 6590 components: - - pos: 16.5,20.5 + - pos: 34.5,5.5 parent: 31 type: Transform - - uid: 4344 + - uid: 6591 components: - - rot: 1.5707963267948966 rad - pos: 63.5,2.5 + - pos: 34.5,4.5 parent: 31 type: Transform - - uid: 4401 + - uid: 6592 components: - - pos: 20.5,-35.5 + - pos: 34.5,3.5 parent: 31 type: Transform - - uid: 4406 + - uid: 6593 components: - - pos: 49.5,-6.5 + - pos: 34.5,2.5 parent: 31 type: Transform - - uid: 4407 + - uid: 6594 components: - - pos: 50.5,-6.5 + - pos: 34.5,1.5 parent: 31 type: Transform - - uid: 4418 + - enabled: True + type: AmbientSound + - uid: 6595 components: - - pos: 51.5,-2.5 + - pos: 34.5,0.5 parent: 31 type: Transform - - uid: 4424 + - uid: 6638 components: - - pos: 51.5,-4.5 + - pos: 43.5,9.5 parent: 31 type: Transform - - uid: 4436 + - uid: 6750 components: - - pos: 51.5,-5.5 + - pos: 64.5,3.5 parent: 31 type: Transform - - uid: 4437 + - enabled: True + type: AmbientSound + - uid: 6856 components: - - pos: 51.5,-6.5 + - pos: 64.5,2.5 parent: 31 type: Transform - - uid: 4438 + - enabled: True + type: AmbientSound + - uid: 6882 components: - - pos: 48.5,-6.5 + - pos: 64.5,4.5 parent: 31 type: Transform - - uid: 4439 + - enabled: True + type: AmbientSound + - uid: 6922 components: - - pos: 47.5,-4.5 + - pos: 69.5,-4.5 parent: 31 type: Transform - - uid: 4440 + - enabled: True + type: AmbientSound + - uid: 6923 components: - - pos: 47.5,-5.5 + - pos: 70.5,-4.5 parent: 31 type: Transform - - uid: 4441 + - enabled: True + type: AmbientSound + - uid: 6924 components: - - pos: 47.5,-2.5 + - pos: 71.5,-4.5 parent: 31 type: Transform - - uid: 4871 + - enabled: True + type: AmbientSound + - uid: 6925 components: - - pos: 28.5,-35.5 + - pos: 72.5,-4.5 parent: 31 type: Transform - - uid: 4877 + - enabled: True + type: AmbientSound + - uid: 7136 components: - - pos: 28.5,-27.5 + - pos: 23.5,-12.5 parent: 31 type: Transform - - uid: 5246 + - enabled: True + type: AmbientSound + - uid: 7168 components: - - pos: 27.5,-31.5 + - pos: 0.5,-8.5 parent: 31 type: Transform - - uid: 5247 + - enabled: True + type: AmbientSound + - uid: 7177 components: - - pos: 28.5,-31.5 + - pos: 75.5,-4.5 parent: 31 type: Transform - - uid: 5249 + - enabled: True + type: AmbientSound + - uid: 7209 components: - - pos: 25.5,-31.5 + - pos: -26.5,-11.5 parent: 31 type: Transform - - uid: 5265 + - enabled: True + type: AmbientSound + - uid: 7255 components: - - pos: 28.5,-29.5 + - pos: -11.5,-18.5 parent: 31 type: Transform - - uid: 5266 + - uid: 7260 components: - - pos: 28.5,-28.5 + - pos: -5.5,-21.5 parent: 31 type: Transform - - uid: 5267 + - uid: 7456 components: - - pos: 24.5,-29.5 + - pos: -10.5,-24.5 parent: 31 type: Transform - - uid: 5268 + - uid: 7469 components: - - pos: 24.5,-32.5 + - pos: -14.5,-25.5 parent: 31 type: Transform - - uid: 5269 + - uid: 7589 components: - - pos: 20.5,-34.5 + - pos: -10.5,-26.5 parent: 31 type: Transform - - uid: 5270 + - uid: 7590 components: - - pos: 24.5,-28.5 + - pos: -10.5,-27.5 parent: 31 type: Transform - - uid: 5271 + - uid: 7606 components: - - pos: 24.5,-33.5 + - pos: 15.5,-25.5 parent: 31 type: Transform - - uid: 5272 + - enabled: True + type: AmbientSound + - uid: 8071 components: - - pos: 24.5,-30.5 + - pos: -18.5,16.5 parent: 31 type: Transform - - uid: 5273 + - enabled: True + type: AmbientSound + - uid: 8077 components: - - pos: 20.5,-30.5 + - pos: 12.5,20.5 parent: 31 type: Transform - - uid: 5274 + - enabled: True + type: AmbientSound + - uid: 8078 components: - - pos: 18.5,-31.5 + - pos: 12.5,19.5 parent: 31 type: Transform - - uid: 5275 + - enabled: True + type: AmbientSound + - uid: 8079 components: - - pos: 20.5,-29.5 + - pos: 11.5,19.5 parent: 31 type: Transform - - uid: 5276 + - uid: 8080 components: - - pos: 26.5,-31.5 + - pos: 10.5,19.5 parent: 31 type: Transform - - uid: 5277 + - uid: 8081 components: - - pos: 24.5,-34.5 + - pos: 9.5,19.5 parent: 31 type: Transform - - uid: 5278 + - uid: 8082 components: - - pos: 24.5,-35.5 + - pos: 9.5,20.5 parent: 31 type: Transform - - uid: 5279 + - uid: 8083 components: - - pos: 28.5,-34.5 + - pos: 9.5,21.5 parent: 31 type: Transform - - uid: 5280 + - uid: 8133 components: - - pos: 24.5,-31.5 + - pos: 49.5,1.5 parent: 31 type: Transform - - uid: 5281 + - uid: 8144 components: - - pos: 19.5,-31.5 + - pos: 61.5,7.5 parent: 31 type: Transform - - uid: 5282 + - enabled: True + type: AmbientSound + - uid: 8162 components: - - pos: 20.5,-31.5 + - pos: 55.5,5.5 parent: 31 type: Transform - - uid: 5283 + - enabled: True + type: AmbientSound + - uid: 8185 components: - - pos: 20.5,-28.5 + - pos: 50.5,1.5 parent: 31 type: Transform - - uid: 5284 + - uid: 8186 components: - - pos: 24.5,-27.5 + - pos: 51.5,1.5 parent: 31 type: Transform - - uid: 6311 + - uid: 8187 components: - - rot: 1.5707963267948966 rad - pos: 62.5,2.5 + - pos: 52.5,1.5 parent: 31 type: Transform - - uid: 6348 + - uid: 8188 components: - - pos: 48.5,8.5 + - pos: 53.5,1.5 parent: 31 type: Transform - - uid: 6356 + - uid: 8189 components: - - pos: 48.5,10.5 + - pos: 54.5,1.5 parent: 31 type: Transform - - uid: 6370 + - enabled: True + type: AmbientSound + - uid: 8190 components: - - pos: 15.5,-28.5 + - pos: 55.5,1.5 parent: 31 type: Transform - - uid: 6382 + - uid: 8191 components: - - pos: 48.5,11.5 + - pos: 56.5,1.5 parent: 31 type: Transform - - uid: 6412 + - uid: 8192 components: - - pos: 15.5,-29.5 + - pos: 57.5,1.5 parent: 31 type: Transform - - uid: 6456 + - uid: 8193 components: - - pos: 48.5,12.5 + - pos: 58.5,1.5 parent: 31 type: Transform - - uid: 6532 + - uid: 8194 components: - - rot: 1.5707963267948966 rad - pos: 64.5,3.5 + - pos: 59.5,1.5 parent: 31 type: Transform - - uid: 6545 + - uid: 8195 components: - - pos: 48.5,9.5 + - pos: 60.5,1.5 parent: 31 type: Transform - - uid: 6648 + - uid: 8196 components: - - pos: -27.5,24.5 + - pos: 60.5,2.5 parent: 31 type: Transform - - uid: 6649 + - uid: 8197 components: - - pos: -28.5,24.5 + - pos: 61.5,2.5 parent: 31 type: Transform - - uid: 6650 + - enabled: True + type: AmbientSound + - uid: 8198 components: - - pos: -29.5,24.5 + - pos: 62.5,2.5 parent: 31 type: Transform - - uid: 6651 + - enabled: True + type: AmbientSound + - uid: 8199 components: - - pos: -30.5,24.5 + - pos: 63.5,2.5 parent: 31 type: Transform - - uid: 6652 + - enabled: True + type: AmbientSound + - uid: 8205 components: - - pos: -31.5,24.5 + - pos: -6.5,-25.5 parent: 31 type: Transform - - uid: 6653 + - uid: 8208 components: - - pos: -32.5,24.5 + - pos: -6.5,-26.5 parent: 31 type: Transform - - uid: 6654 + - uid: 8491 components: - - pos: -33.5,24.5 + - pos: -11.5,-17.5 parent: 31 type: Transform - - uid: 6655 + - enabled: True + type: AmbientSound + - uid: 8669 components: - - pos: -34.5,24.5 + - pos: -31.5,-31.5 parent: 31 type: Transform - - uid: 6656 + - uid: 8670 components: - - pos: -35.5,24.5 + - pos: -32.5,-31.5 parent: 31 type: Transform - - uid: 6657 + - uid: 8671 components: - - pos: -36.5,23.5 + - pos: -32.5,-30.5 parent: 31 type: Transform - - uid: 6658 + - uid: 8672 components: - - pos: -36.5,26.5 + - pos: -32.5,-29.5 parent: 31 type: Transform - - uid: 6659 + - uid: 8673 components: - - pos: -36.5,27.5 + - pos: -32.5,-28.5 parent: 31 type: Transform - - uid: 6660 + - uid: 8674 components: - - pos: -36.5,22.5 + - pos: -32.5,-27.5 parent: 31 type: Transform - - uid: 6661 + - uid: 8675 components: - - pos: -36.5,21.5 + - pos: -32.5,-26.5 parent: 31 type: Transform - - uid: 6662 + - uid: 8676 components: - - pos: -38.5,24.5 + - pos: -32.5,-25.5 parent: 31 type: Transform - - uid: 6663 + - enabled: True + type: AmbientSound + - uid: 8782 components: - - pos: -30.5,25.5 + - pos: -8.5,15.5 parent: 31 type: Transform - - uid: 6664 + - uid: 9050 components: - - pos: -30.5,26.5 + - pos: 18.5,-12.5 parent: 31 type: Transform - - uid: 6665 + - uid: 9055 components: - - pos: -30.5,27.5 + - pos: -18.5,15.5 parent: 31 type: Transform - - uid: 6666 + - enabled: True + type: AmbientSound + - uid: 9082 components: - - pos: -34.5,23.5 + - pos: -18.5,14.5 parent: 31 type: Transform - - uid: 6667 + - enabled: True + type: AmbientSound + - uid: 9083 components: - - pos: -34.5,22.5 + - pos: -17.5,16.5 parent: 31 type: Transform - - uid: 6668 + - enabled: True + type: AmbientSound + - uid: 9084 components: - - pos: -34.5,21.5 + - pos: -17.5,14.5 parent: 31 type: Transform - - uid: 6669 + - enabled: True + type: AmbientSound + - uid: 9141 components: - - pos: -36.5,24.5 + - pos: 21.5,-11.5 parent: 31 type: Transform - - uid: 6670 + - uid: 9202 components: - - pos: -37.5,24.5 + - pos: 55.5,6.5 parent: 31 type: Transform - - uid: 6671 + - enabled: True + type: AmbientSound + - uid: 9276 components: - - pos: -36.5,25.5 + - pos: -9.5,-10.5 parent: 31 type: Transform - - uid: 6672 + - enabled: True + type: AmbientSound + - uid: 9278 components: - - pos: -32.5,21.5 + - pos: -10.5,-10.5 parent: 31 type: Transform - - uid: 6673 + - enabled: True + type: AmbientSound + - uid: 9505 components: - - pos: -32.5,22.5 + - pos: -2.5,-21.5 parent: 31 type: Transform - - uid: 6674 + - enabled: True + type: AmbientSound + - uid: 9618 components: - - pos: -32.5,23.5 + - pos: -16.5,14.5 parent: 31 type: Transform - - uid: 6675 + - uid: 9619 components: - - pos: -32.5,25.5 + - pos: -15.5,14.5 parent: 31 type: Transform - - uid: 6676 + - uid: 9620 components: - - pos: -32.5,26.5 + - pos: -14.5,14.5 parent: 31 type: Transform - - uid: 6677 + - uid: 9621 components: - - pos: -32.5,27.5 + - pos: -13.5,14.5 parent: 31 type: Transform - - uid: 6678 + - uid: 9625 components: - - pos: -34.5,27.5 + - pos: -7.5,-21.5 parent: 31 type: Transform - - uid: 6679 + - uid: 9684 components: - - pos: -34.5,26.5 + - pos: -7.5,-20.5 parent: 31 type: Transform - - uid: 6680 + - uid: 9734 components: - - pos: -34.5,25.5 + - pos: -11.5,15.5 parent: 31 type: Transform - - uid: 6681 + - uid: 9747 components: - - pos: -30.5,23.5 + - pos: 44.5,8.5 parent: 31 type: Transform - - uid: 6682 + - uid: 9869 components: - - pos: -30.5,22.5 + - pos: -12.5,14.5 parent: 31 type: Transform - - uid: 6683 + - uid: 9870 components: - - pos: -30.5,21.5 + - pos: -12.5,13.5 parent: 31 type: Transform - - uid: 6698 + - uid: 10229 components: - - pos: 22.5,-31.5 + - pos: 62.5,7.5 parent: 31 type: Transform - - uid: 6699 + - enabled: True + type: AmbientSound + - uid: 10235 components: - - pos: 23.5,-31.5 + - pos: 63.5,7.5 parent: 31 type: Transform - - uid: 6700 + - enabled: True + type: AmbientSound + - uid: 10269 components: - - pos: 20.5,-33.5 + - pos: 50.5,-7.5 parent: 31 type: Transform - - uid: 6701 + - enabled: True + type: AmbientSound + - uid: 10270 components: - - pos: 21.5,-31.5 + - pos: 53.5,-0.5 parent: 31 type: Transform - - uid: 6702 + - enabled: True + type: AmbientSound + - uid: 10305 components: - - pos: 20.5,-32.5 + - pos: 53.5,-1.5 parent: 31 type: Transform - - uid: 6703 + - uid: 10306 components: - - pos: 28.5,-33.5 + - pos: 53.5,-2.5 parent: 31 type: Transform - - uid: 6704 + - uid: 10356 components: - - pos: 28.5,-32.5 + - pos: -15.5,-12.5 parent: 31 type: Transform - - uid: 6705 + - enabled: True + type: AmbientSound + - uid: 10357 components: - - pos: 28.5,-30.5 + - pos: -26.5,-13.5 parent: 31 type: Transform - - uid: 6706 + - enabled: True + type: AmbientSound + - uid: 10360 components: - - pos: 29.5,-31.5 + - pos: -27.5,-11.5 parent: 31 type: Transform - - uid: 6707 + - enabled: True + type: AmbientSound + - uid: 10361 components: - - pos: 30.5,-31.5 + - pos: -28.5,-11.5 parent: 31 type: Transform - - uid: 6708 + - enabled: True + type: AmbientSound + - uid: 10362 components: - - pos: 31.5,-31.5 + - pos: -29.5,-11.5 parent: 31 type: Transform - - uid: 6709 + - enabled: True + type: AmbientSound + - uid: 10363 components: - - pos: 32.5,-31.5 + - pos: -30.5,-11.5 parent: 31 type: Transform - - uid: 6712 + - enabled: True + type: AmbientSound + - uid: 10364 components: - - rot: 1.5707963267948966 rad - pos: 76.5,-4.5 + - pos: -31.5,-11.5 parent: 31 type: Transform - - uid: 6713 + - enabled: True + type: AmbientSound + - uid: 10365 components: - - rot: 1.5707963267948966 rad - pos: 77.5,-4.5 + - pos: -32.5,-11.5 parent: 31 type: Transform - - uid: 6714 + - enabled: True + type: AmbientSound + - uid: 10366 components: - - rot: 1.5707963267948966 rad - pos: 78.5,-4.5 + - pos: -32.5,-10.5 parent: 31 type: Transform - - uid: 6715 + - enabled: True + type: AmbientSound + - uid: 10367 components: - - rot: 1.5707963267948966 rad - pos: 78.5,-2.5 + - pos: -32.5,-9.5 parent: 31 type: Transform - - uid: 6716 + - enabled: True + type: AmbientSound + - uid: 10368 components: - - rot: 1.5707963267948966 rad - pos: 78.5,-3.5 + - pos: -32.5,-8.5 parent: 31 type: Transform - - uid: 6717 + - enabled: True + type: AmbientSound + - uid: 10369 components: - - rot: 1.5707963267948966 rad - pos: 78.5,-0.5 + - pos: -31.5,-8.5 parent: 31 type: Transform - - uid: 6718 + - enabled: True + type: AmbientSound + - uid: 10370 components: - - rot: 1.5707963267948966 rad - pos: 78.5,-1.5 + - pos: -30.5,-8.5 parent: 31 type: Transform - - uid: 6719 + - uid: 10442 components: - - rot: 1.5707963267948966 rad - pos: 78.5,0.5 + - pos: -12.5,-12.5 parent: 31 type: Transform - - uid: 6720 + - uid: 10445 components: - - rot: 1.5707963267948966 rad - pos: 78.5,1.5 + - pos: -14.5,-12.5 parent: 31 type: Transform - - uid: 6721 + - enabled: True + type: AmbientSound + - uid: 10447 components: - - rot: 1.5707963267948966 rad - pos: 78.5,4.5 + - pos: -13.5,-12.5 parent: 31 type: Transform - - uid: 6732 + - uid: 10592 components: - - rot: 1.5707963267948966 rad - pos: 78.5,7.5 + - pos: 53.5,-3.5 parent: 31 type: Transform - - uid: 6733 + - uid: 10594 components: - - rot: 1.5707963267948966 rad - pos: 78.5,6.5 + - pos: 53.5,-4.5 parent: 31 type: Transform - - uid: 6734 + - uid: 10595 components: - - rot: 1.5707963267948966 rad - pos: 78.5,5.5 + - pos: 54.5,-4.5 parent: 31 type: Transform - - uid: 6735 + - uid: 10596 components: - - rot: 1.5707963267948966 rad - pos: 78.5,3.5 + - pos: 55.5,-4.5 parent: 31 type: Transform - - uid: 6736 + - uid: 10607 components: - - rot: 1.5707963267948966 rad - pos: 78.5,2.5 + - pos: 55.5,-3.5 parent: 31 type: Transform - - uid: 6737 + - enabled: True + type: AmbientSound + - uid: 10609 components: - - rot: 1.5707963267948966 rad - pos: 78.5,8.5 + - pos: 50.5,-6.5 parent: 31 type: Transform - - uid: 6738 + - uid: 10610 components: - - rot: 1.5707963267948966 rad - pos: 78.5,9.5 + - pos: 52.5,-4.5 parent: 31 type: Transform - - uid: 6739 + - uid: 10611 components: - - rot: 1.5707963267948966 rad - pos: 75.5,9.5 + - pos: 51.5,-4.5 parent: 31 type: Transform - - uid: 6740 + - uid: 10612 components: - - rot: 1.5707963267948966 rad - pos: 77.5,9.5 + - pos: 50.5,-4.5 parent: 31 type: Transform - - uid: 6741 + - uid: 10614 components: - - rot: 1.5707963267948966 rad - pos: 76.5,9.5 + - pos: 49.5,-4.5 parent: 31 type: Transform - - uid: 6752 + - uid: 10848 components: - - rot: 1.5707963267948966 rad - pos: 69.5,9.5 + - pos: 50.5,-5.5 parent: 31 type: Transform - - uid: 6753 + - uid: 10867 components: - - rot: 1.5707963267948966 rad - pos: 71.5,9.5 + - pos: 55.5,-6.5 parent: 31 type: Transform - - uid: 6754 + - enabled: True + type: AmbientSound + - uid: 10868 components: - - rot: 1.5707963267948966 rad - pos: 64.5,4.5 + - pos: 53.5,-8.5 parent: 31 type: Transform - - uid: 6755 + - enabled: True + type: AmbientSound + - uid: 10869 components: - - rot: 1.5707963267948966 rad - pos: 64.5,7.5 + - pos: 53.5,-9.5 parent: 31 type: Transform - - uid: 6756 + - enabled: True + type: AmbientSound + - uid: 10871 components: - - rot: 1.5707963267948966 rad - pos: 64.5,6.5 + - pos: 55.5,-9.5 parent: 31 type: Transform - - uid: 6757 + - enabled: True + type: AmbientSound + - uid: 10872 components: - - rot: 1.5707963267948966 rad - pos: 64.5,8.5 + - pos: 52.5,-8.5 parent: 31 type: Transform - - uid: 6758 + - enabled: True + type: AmbientSound + - uid: 10873 components: - - rot: 1.5707963267948966 rad - pos: 64.5,9.5 + - pos: 51.5,-8.5 parent: 31 type: Transform - - uid: 6759 + - enabled: True + type: AmbientSound + - uid: 10874 components: - - rot: 1.5707963267948966 rad - pos: 65.5,9.5 + - pos: 50.5,-8.5 parent: 31 type: Transform - - uid: 6760 + - enabled: True + type: AmbientSound + - uid: 10877 components: - - rot: 1.5707963267948966 rad - pos: 66.5,9.5 + - pos: 55.5,-7.5 parent: 31 type: Transform - - uid: 6761 + - uid: 10878 components: - - rot: 1.5707963267948966 rad - pos: 64.5,5.5 + - pos: 55.5,-8.5 parent: 31 type: Transform - - uid: 6762 + - enabled: True + type: AmbientSound + - uid: 10963 components: - - rot: 1.5707963267948966 rad - pos: 67.5,9.5 + - pos: 51.5,-3.5 parent: 31 type: Transform - - uid: 6763 + - uid: 10964 components: - - rot: 1.5707963267948966 rad - pos: 68.5,9.5 + - pos: 51.5,-2.5 parent: 31 type: Transform - - uid: 6764 + - enabled: True + type: AmbientSound + - uid: 10965 components: - - rot: 1.5707963267948966 rad - pos: 70.5,9.5 + - pos: 54.5,-9.5 parent: 31 type: Transform - - uid: 6765 + - uid: 11202 components: - - rot: 1.5707963267948966 rad - pos: 73.5,9.5 + - pos: 16.5,-27.5 parent: 31 type: Transform - - uid: 6766 + - uid: 11203 components: - - rot: 1.5707963267948966 rad - pos: 72.5,9.5 + - pos: -28.5,-13.5 parent: 31 type: Transform - - uid: 6767 + - enabled: True + type: AmbientSound + - uid: 11210 components: - - rot: 1.5707963267948966 rad - pos: 74.5,9.5 + - pos: -28.5,-14.5 parent: 31 type: Transform - - uid: 6894 + - enabled: True + type: AmbientSound + - uid: 11211 components: - - pos: 42.5,-0.5 + - pos: -28.5,-15.5 parent: 31 type: Transform - - uid: 6919 + - enabled: True + type: AmbientSound + - uid: 11212 components: - - rot: 1.5707963267948966 rad - pos: 64.5,2.5 + - pos: -28.5,-16.5 parent: 31 type: Transform - - uid: 6966 + - enabled: True + type: AmbientSound + - uid: 11248 components: - - pos: 42.5,-1.5 + - pos: -31.5,7.5 parent: 31 type: Transform - - uid: 6968 + - uid: 11260 components: - - pos: 42.5,-2.5 + - pos: 58.5,2.5 parent: 31 type: Transform - - uid: 7035 + - enabled: True + type: AmbientSound + - uid: 11285 components: - - pos: 42.5,-3.5 + - pos: 45.5,8.5 parent: 31 type: Transform - - uid: 7045 + - uid: 11286 components: - - pos: 42.5,-4.5 + - pos: 46.5,8.5 parent: 31 type: Transform - - uid: 7234 + - uid: 11287 components: - - pos: 12.5,15.5 + - pos: 47.5,8.5 parent: 31 type: Transform - - uid: 7235 + - uid: 11288 components: - - pos: 7.5,14.5 + - pos: 47.5,9.5 parent: 31 type: Transform - - uid: 7236 + - uid: 11289 components: - - pos: 12.5,17.5 + - pos: 47.5,10.5 parent: 31 type: Transform - - uid: 7237 + - uid: 11290 components: - - pos: 10.5,14.5 + - pos: 47.5,11.5 parent: 31 type: Transform - - uid: 7238 + - uid: 11291 components: - - pos: 8.5,14.5 + - pos: 47.5,12.5 parent: 31 type: Transform - - uid: 7239 + - uid: 11292 components: - - pos: 12.5,16.5 + - pos: 47.5,13.5 parent: 31 type: Transform - - uid: 7240 + - uid: 11293 components: - - pos: 9.5,14.5 + - pos: 48.5,13.5 parent: 31 type: Transform - - uid: 7241 + - uid: 11294 components: - - pos: 12.5,19.5 + - pos: 49.5,13.5 parent: 31 type: Transform - - uid: 7413 + - uid: 11295 components: - - rot: 3.141592653589793 rad - pos: -2.5,-26.5 + - pos: 50.5,12.5 parent: 31 type: Transform - - uid: 7414 + - uid: 11296 components: - - rot: 3.141592653589793 rad - pos: -1.5,-26.5 + - pos: 50.5,9.5 parent: 31 type: Transform - - uid: 7415 + - uid: 11297 components: - - rot: 3.141592653589793 rad - pos: -0.5,-26.5 + - pos: 51.5,12.5 parent: 31 type: Transform - - uid: 7416 + - enabled: True + type: AmbientSound + - uid: 11298 components: - - rot: 3.141592653589793 rad - pos: 0.5,-23.5 + - pos: 51.5,11.5 parent: 31 type: Transform - - uid: 7417 + - enabled: True + type: AmbientSound + - uid: 11299 components: - - rot: 3.141592653589793 rad - pos: -0.5,-23.5 + - pos: 51.5,10.5 parent: 31 type: Transform - - uid: 7418 + - enabled: True + type: AmbientSound + - uid: 11300 components: - - rot: 3.141592653589793 rad - pos: -0.5,-24.5 + - pos: 51.5,9.5 parent: 31 type: Transform - - uid: 7419 + - enabled: True + type: AmbientSound + - uid: 11301 components: - - rot: 3.141592653589793 rad - pos: -0.5,-25.5 + - pos: 49.5,12.5 parent: 31 type: Transform - - uid: 7494 + - uid: 11302 components: - - pos: 15.5,-27.5 + - pos: 49.5,9.5 parent: 31 type: Transform - - uid: 7495 + - uid: 11303 components: - - pos: 14.5,-31.5 + - pos: 49.5,8.5 parent: 31 type: Transform - - uid: 7498 + - uid: 11304 components: - - pos: -9.5,-13.5 + - pos: 49.5,7.5 parent: 31 type: Transform - - uid: 7499 +- proto: CableMVStack + entities: + - uid: 48 components: - - pos: -9.5,-12.5 + - pos: 48.35775,5.619252 parent: 31 type: Transform - - uid: 7500 + - uid: 152 components: - - pos: -9.5,-11.5 + - pos: 27.261366,0.5307963 parent: 31 type: Transform - - uid: 7501 + - uid: 712 components: - - pos: -18.5,-13.5 + - pos: 48.35775,5.619252 parent: 31 type: Transform - - uid: 7502 + - uid: 934 components: - - pos: -18.5,-12.5 + - pos: 27.261366,0.5307963 parent: 31 type: Transform - - uid: 7503 +- proto: CableTerminal + entities: + - uid: 4327 components: - - pos: -18.5,-11.5 + - rot: 3.141592653589793 rad + pos: 14.5,-29.5 parent: 31 type: Transform - - uid: 7505 + - canCollide: False + type: Physics + - fixtures: {} + type: Fixtures + - uid: 4328 components: - - pos: -21.5,-11.5 + - rot: 1.5707963267948966 rad + pos: -23.5,25.5 parent: 31 type: Transform - - uid: 7506 + - canCollide: False + type: Physics + - fixtures: {} + type: Fixtures + - uid: 6414 components: - - pos: -22.5,-11.5 + - pos: 40.5,6.5 parent: 31 type: Transform - - uid: 7507 + - canCollide: False + type: Physics + - fixtures: {} + type: Fixtures + - uid: 6930 components: - - pos: -23.5,-11.5 + - pos: 42.5,6.5 parent: 31 type: Transform - - uid: 7508 + - canCollide: False + type: Physics + - fixtures: {} + type: Fixtures + - uid: 6941 components: - - pos: -24.5,-11.5 + - pos: 41.5,6.5 parent: 31 type: Transform - - uid: 7509 + - canCollide: False + type: Physics + - fixtures: {} + type: Fixtures + - uid: 7913 components: - - pos: -25.5,-11.5 + - rot: 3.141592653589793 rad + pos: 55.5,3.5 parent: 31 type: Transform - - uid: 7510 + - uid: 8573 components: - - pos: -26.5,-11.5 + - rot: 3.141592653589793 rad + pos: -30.5,-32.5 parent: 31 type: Transform - - uid: 7511 + - canCollide: False + type: Physics + - fixtures: {} + type: Fixtures + - uid: 10255 components: - - pos: -27.5,-11.5 + - rot: 3.141592653589793 rad + pos: 52.5,-1.5 parent: 31 type: Transform - - uid: 7512 +- proto: CandyBowl + entities: + - uid: 1105 components: - - pos: -28.5,-11.5 + - pos: 5.4776692,21.540764 parent: 31 type: Transform - - uid: 7513 + - uid: 1912 components: - - pos: -29.5,-11.5 + - pos: 6.4716253,-3.2451885 parent: 31 type: Transform - - uid: 7514 +- proto: CaptainIDCard + entities: + - uid: 4684 components: - - pos: -31.5,-11.5 + - pos: 6.5105124,24.655684 parent: 31 type: Transform - - uid: 7515 +- proto: CarbonDioxideCanister + entities: + - uid: 6877 components: - - pos: -30.5,-11.5 + - pos: 40.5,23.5 parent: 31 type: Transform - - uid: 7516 + - uid: 10010 components: - - pos: -32.5,-11.5 + - pos: 36.5,12.5 parent: 31 type: Transform - - uid: 7517 +- proto: Carpet + entities: + - uid: 1275 components: - - pos: -33.5,-11.5 + - rot: 3.141592653589793 rad + pos: 0.5,-4.5 parent: 31 type: Transform - - uid: 7520 + - uid: 1376 components: - - pos: -33.5,0.5 + - rot: 1.5707963267948966 rad + pos: -8.5,21.5 parent: 31 type: Transform - - uid: 7521 + - uid: 1916 components: - - pos: -33.5,-0.5 + - rot: 3.141592653589793 rad + pos: -0.5,-6.5 parent: 31 type: Transform - - uid: 7522 + - uid: 1917 components: - - pos: -33.5,-1.5 + - rot: 3.141592653589793 rad + pos: -0.5,-4.5 parent: 31 type: Transform - - uid: 7523 + - uid: 4059 components: - - pos: -33.5,-10.5 + - rot: 3.141592653589793 rad + pos: -0.5,-5.5 parent: 31 type: Transform - - uid: 7524 + - uid: 4160 components: - - pos: -33.5,-8.5 + - rot: 3.141592653589793 rad + pos: 0.5,-6.5 parent: 31 type: Transform - - uid: 7525 + - uid: 4161 components: - - pos: -33.5,-7.5 + - rot: 3.141592653589793 rad + pos: 0.5,-5.5 parent: 31 type: Transform - - uid: 7526 + - uid: 4700 components: - - pos: -33.5,-6.5 + - pos: -7.5,21.5 parent: 31 type: Transform - - uid: 7527 + - uid: 7302 components: - - pos: -33.5,-5.5 + - pos: 9.5,-25.5 parent: 31 type: Transform - - uid: 7528 + - uid: 7303 components: - - pos: -33.5,-4.5 + - pos: 9.5,-24.5 parent: 31 type: Transform - - uid: 7529 + - uid: 7304 components: - - pos: -33.5,-3.5 + - pos: 9.5,-23.5 parent: 31 type: Transform - - uid: 7530 + - uid: 7305 components: - - pos: -33.5,-2.5 + - pos: 9.5,-22.5 parent: 31 type: Transform - - uid: 7609 + - uid: 7306 components: - - pos: -32.5,8.5 + - pos: 10.5,-22.5 parent: 31 type: Transform - - uid: 7610 + - uid: 7307 components: - - pos: -32.5,9.5 + - pos: 12.5,-22.5 parent: 31 type: Transform - - uid: 7611 + - uid: 7308 components: - - pos: -32.5,10.5 + - pos: 11.5,-22.5 parent: 31 type: Transform - - uid: 7612 + - uid: 7309 components: - - pos: -32.5,11.5 + - pos: 12.5,-23.5 parent: 31 type: Transform - - uid: 7613 + - uid: 7310 components: - - pos: -32.5,12.5 + - pos: 12.5,-24.5 parent: 31 type: Transform - - uid: 7614 + - uid: 7311 components: - - pos: -32.5,13.5 + - pos: 12.5,-25.5 parent: 31 type: Transform - - uid: 7616 + - uid: 7312 components: - - pos: -31.5,14.5 + - pos: 11.5,-25.5 parent: 31 type: Transform - - uid: 7617 + - uid: 7313 components: - - pos: -30.5,14.5 + - pos: 10.5,-25.5 parent: 31 type: Transform - - uid: 7618 + - uid: 7314 components: - - pos: -29.5,14.5 + - pos: 10.5,-24.5 parent: 31 type: Transform - - uid: 7619 + - uid: 7315 components: - - pos: -28.5,14.5 + - pos: 10.5,-23.5 parent: 31 type: Transform - - uid: 7620 + - uid: 7316 components: - - pos: -27.5,14.5 + - pos: 11.5,-23.5 parent: 31 type: Transform - - uid: 7621 + - uid: 7317 components: - - pos: -26.5,14.5 + - pos: 11.5,-24.5 parent: 31 type: Transform - - uid: 7622 + - uid: 8271 components: - - pos: -25.5,14.5 + - rot: -1.5707963267948966 rad + pos: -7.5,22.5 parent: 31 type: Transform - - uid: 7623 + - uid: 8919 components: - - pos: -24.5,14.5 + - rot: -1.5707963267948966 rad + pos: -25.5,-5.5 parent: 31 type: Transform - - uid: 7624 + - uid: 8920 components: - - pos: -23.5,14.5 + - rot: -1.5707963267948966 rad + pos: -25.5,-6.5 parent: 31 type: Transform - - uid: 7654 + - uid: 8921 components: - - pos: -8.5,25.5 + - rot: -1.5707963267948966 rad + pos: -25.5,-7.5 parent: 31 type: Transform - - uid: 7655 + - uid: 8922 components: - - pos: -9.5,25.5 + - rot: -1.5707963267948966 rad + pos: -23.5,-7.5 parent: 31 type: Transform - - uid: 7656 + - uid: 8923 components: - - pos: -11.5,25.5 + - rot: -1.5707963267948966 rad + pos: -24.5,-7.5 parent: 31 type: Transform - - uid: 7657 + - uid: 8924 components: - - pos: -12.5,25.5 + - rot: -1.5707963267948966 rad + pos: -24.5,-6.5 parent: 31 type: Transform - - uid: 7658 + - uid: 8925 components: - - pos: -13.5,25.5 + - rot: -1.5707963267948966 rad + pos: -23.5,-6.5 parent: 31 type: Transform - - uid: 7659 + - uid: 8926 components: - - pos: -14.5,25.5 + - rot: -1.5707963267948966 rad + pos: -23.5,-5.5 parent: 31 type: Transform - - uid: 7660 + - uid: 8927 components: - - pos: -15.5,25.5 + - rot: -1.5707963267948966 rad + pos: -24.5,-5.5 parent: 31 type: Transform - - uid: 7661 + - uid: 8928 components: - - pos: -16.5,25.5 + - rot: -1.5707963267948966 rad + pos: -24.5,-4.5 parent: 31 type: Transform - - uid: 7662 + - uid: 8929 components: - - pos: -17.5,25.5 + - rot: -1.5707963267948966 rad + pos: -23.5,-4.5 parent: 31 type: Transform - - uid: 7664 + - uid: 8931 components: - - pos: -18.5,18.5 + - rot: -1.5707963267948966 rad + pos: -22.5,-5.5 parent: 31 type: Transform - - uid: 7665 + - uid: 8932 components: - - pos: -18.5,19.5 + - rot: -1.5707963267948966 rad + pos: -22.5,-6.5 parent: 31 type: Transform - - uid: 7666 + - uid: 8933 components: - - pos: -18.5,20.5 + - rot: -1.5707963267948966 rad + pos: -22.5,-7.5 parent: 31 type: Transform - - uid: 7667 + - uid: 9887 components: - - pos: -18.5,21.5 + - rot: 1.5707963267948966 rad + pos: -16.5,-38.5 parent: 31 type: Transform - - uid: 7668 + - uid: 9888 components: - - pos: -18.5,22.5 + - rot: 1.5707963267948966 rad + pos: -16.5,-39.5 parent: 31 type: Transform - - uid: 7669 + - uid: 9890 components: - - pos: -18.5,23.5 + - rot: 1.5707963267948966 rad + pos: -15.5,-38.5 parent: 31 type: Transform - - uid: 7670 + - uid: 9891 components: - - pos: -18.5,24.5 + - rot: 1.5707963267948966 rad + pos: -15.5,-39.5 parent: 31 type: Transform - - uid: 7874 + - uid: 9914 components: - - pos: 7.5,-20.5 + - rot: 1.5707963267948966 rad + pos: -14.5,-38.5 parent: 31 type: Transform - - uid: 7875 + - uid: 9936 components: - - pos: 9.5,-20.5 + - rot: 1.5707963267948966 rad + pos: -14.5,-39.5 parent: 31 type: Transform - - uid: 7876 + - uid: 9940 components: - - pos: 8.5,-20.5 + - rot: 1.5707963267948966 rad + pos: -13.5,-39.5 parent: 31 type: Transform - - uid: 7877 + - uid: 9942 components: - - pos: 10.5,-20.5 + - rot: 1.5707963267948966 rad + pos: -12.5,-39.5 parent: 31 type: Transform - - uid: 7878 + - uid: 10321 components: - - pos: 11.5,-20.5 + - rot: -1.5707963267948966 rad + pos: -24.5,-8.5 parent: 31 type: Transform - - uid: 7879 + - uid: 10322 components: - - pos: 12.5,-20.5 + - rot: -1.5707963267948966 rad + pos: -23.5,-8.5 parent: 31 type: Transform - - uid: 7880 + - uid: 11039 components: - - pos: 14.5,-20.5 + - pos: -8.5,22.5 parent: 31 type: Transform - - uid: 7881 + - uid: 11040 components: - - pos: 14.5,-21.5 + - pos: -9.5,22.5 parent: 31 type: Transform - - uid: 7882 +- proto: CarpetBlack + entities: + - uid: 1449 components: - - pos: 14.5,-22.5 + - rot: 1.5707963267948966 rad + pos: -23.5,16.5 parent: 31 type: Transform - - uid: 7883 + - uid: 4184 components: - - pos: 14.5,-23.5 + - pos: -1.5,24.5 parent: 31 type: Transform - - uid: 7884 + - uid: 4189 components: - - pos: 14.5,-24.5 + - pos: -1.5,25.5 parent: 31 type: Transform - - uid: 7885 + - uid: 6281 components: - - pos: 15.5,-25.5 + - rot: 1.5707963267948966 rad + pos: -23.5,17.5 parent: 31 type: Transform - - uid: 7886 + - uid: 6309 components: - - pos: 17.5,-25.5 + - rot: 1.5707963267948966 rad + pos: -22.5,17.5 parent: 31 type: Transform - - uid: 7887 + - uid: 7360 components: - - pos: 16.5,-25.5 + - rot: 3.141592653589793 rad + pos: -11.5,-7.5 parent: 31 type: Transform - - uid: 7888 + - uid: 7361 components: - - pos: 18.5,-25.5 + - rot: 3.141592653589793 rad + pos: -11.5,-6.5 parent: 31 type: Transform - - uid: 7889 + - uid: 7362 components: - - pos: 19.5,-25.5 + - rot: 3.141592653589793 rad + pos: -10.5,-6.5 parent: 31 type: Transform - - uid: 7890 + - uid: 7363 components: - - pos: 20.5,-25.5 + - rot: 3.141592653589793 rad + pos: -10.5,-7.5 parent: 31 type: Transform - - uid: 7891 +- proto: CarpetBlue + entities: + - uid: 20 components: - - pos: 21.5,-25.5 + - pos: 11.5,23.5 parent: 31 type: Transform - - uid: 7892 + - uid: 63 components: - - pos: 22.5,-25.5 + - pos: 7.5,23.5 parent: 31 type: Transform - - uid: 7893 + - uid: 73 components: - - pos: 22.5,-24.5 + - pos: 11.5,24.5 parent: 31 type: Transform - - uid: 7894 + - uid: 491 components: - - pos: 22.5,-23.5 + - pos: 6.5,24.5 parent: 31 type: Transform - - uid: 7895 + - uid: 568 components: - - pos: 22.5,-22.5 + - rot: -1.5707963267948966 rad + pos: 24.5,-10.5 parent: 31 type: Transform - - uid: 7896 + - uid: 989 components: - - pos: 22.5,-21.5 + - pos: 12.5,23.5 parent: 31 type: Transform - - uid: 7897 + - uid: 2129 components: - - pos: 22.5,-20.5 + - pos: 25.5,-9.5 parent: 31 type: Transform - - uid: 7915 + - uid: 3270 components: - - pos: 22.5,-18.5 + - pos: 8.5,23.5 parent: 31 type: Transform - - uid: 7916 + - uid: 3271 components: - - pos: 22.5,-17.5 + - pos: 6.5,23.5 parent: 31 type: Transform - - uid: 7917 + - uid: 3273 components: - - pos: 23.5,-17.5 + - pos: 7.5,24.5 parent: 31 type: Transform - - uid: 7918 + - uid: 4107 components: - - pos: 24.5,-17.5 + - pos: -29.5,-1.5 parent: 31 type: Transform - - uid: 7919 + - uid: 4108 components: - - pos: 25.5,-17.5 + - pos: -29.5,-2.5 parent: 31 type: Transform - - uid: 7920 + - uid: 4109 components: - - pos: 26.5,-17.5 + - pos: -28.5,-1.5 parent: 31 type: Transform - - uid: 7921 + - uid: 4110 components: - - pos: 26.5,-16.5 + - pos: -28.5,-2.5 parent: 31 type: Transform - - uid: 7922 + - uid: 4922 components: - - pos: 26.5,-15.5 + - rot: -1.5707963267948966 rad + pos: 23.5,-10.5 parent: 31 type: Transform - - uid: 7923 + - uid: 5121 components: - - pos: 26.5,-14.5 + - pos: 8.5,24.5 parent: 31 type: Transform - - uid: 7924 + - uid: 5137 components: - - pos: 26.5,-13.5 + - pos: 12.5,24.5 parent: 31 type: Transform - - uid: 7925 + - uid: 7074 components: - - pos: 26.5,-12.5 + - pos: 25.5,-10.5 parent: 31 type: Transform - - uid: 7926 + - uid: 7463 components: - - pos: 38.5,-6.5 + - rot: -1.5707963267948966 rad + pos: 23.5,-9.5 parent: 31 type: Transform - - uid: 7927 + - uid: 8344 components: - - pos: 38.5,-7.5 + - rot: -1.5707963267948966 rad + pos: 24.5,-9.5 parent: 31 type: Transform - - uid: 7928 + - uid: 11074 components: - - pos: 37.5,-7.5 + - pos: -33.5,18.5 parent: 31 type: Transform - - uid: 7929 + - uid: 11075 components: - - pos: 36.5,-7.5 + - pos: -33.5,17.5 parent: 31 type: Transform - - uid: 7930 + - uid: 11076 components: - - pos: 34.5,-7.5 + - pos: -34.5,17.5 parent: 31 type: Transform - - uid: 7931 +- proto: CarpetChapel + entities: + - uid: 2118 components: - - pos: 35.5,-7.5 + - rot: 3.141592653589793 rad + pos: -37.5,15.5 parent: 31 type: Transform - - uid: 7932 + - uid: 2120 components: - - pos: 33.5,-7.5 + - rot: 3.141592653589793 rad + pos: -34.5,15.5 parent: 31 type: Transform - - uid: 7933 + - uid: 2125 components: - - pos: 32.5,-7.5 + - rot: -1.5707963267948966 rad + pos: -38.5,15.5 parent: 31 type: Transform - - uid: 7934 + - uid: 2134 components: - - pos: 31.5,-7.5 + - rot: 1.5707963267948966 rad + pos: -34.5,14.5 parent: 31 type: Transform - - uid: 7935 + - uid: 2161 components: - - pos: 30.5,-7.5 + - rot: 1.5707963267948966 rad + pos: -37.5,14.5 parent: 31 type: Transform - - uid: 7936 + - uid: 10697 components: - - pos: 29.5,-7.5 + - rot: 1.5707963267948966 rad + pos: -34.5,12.5 parent: 31 type: Transform - - uid: 7937 + - uid: 10698 components: - - pos: 28.5,-7.5 + - pos: -35.5,12.5 parent: 31 type: Transform - - uid: 7938 + - uid: 10699 components: - - pos: 27.5,-7.5 + - rot: 1.5707963267948966 rad + pos: -37.5,12.5 parent: 31 type: Transform - - uid: 7939 + - uid: 10700 components: - - pos: 26.5,-7.5 + - pos: -38.5,12.5 parent: 31 type: Transform - - uid: 7940 + - uid: 10701 components: - - pos: 26.5,-8.5 + - rot: -1.5707963267948966 rad + pos: -38.5,13.5 parent: 31 type: Transform - - uid: 7941 + - uid: 10702 components: - - pos: 26.5,-9.5 + - rot: -1.5707963267948966 rad + pos: -35.5,13.5 parent: 31 type: Transform - - uid: 7942 + - uid: 10703 components: - - pos: 26.5,-10.5 + - rot: 3.141592653589793 rad + pos: -34.5,13.5 parent: 31 type: Transform - - uid: 7974 + - uid: 10704 components: - - pos: 24.5,-2.5 + - rot: 3.141592653589793 rad + pos: -37.5,13.5 parent: 31 type: Transform - - uid: 7975 + - uid: 10705 components: - - pos: 23.5,-2.5 + - pos: -35.5,14.5 parent: 31 type: Transform - - uid: 7976 + - uid: 10706 components: - - pos: 22.5,-2.5 + - pos: -38.5,14.5 parent: 31 type: Transform - - uid: 7978 + - uid: 10707 components: - - pos: 21.5,-1.5 + - rot: -1.5707963267948966 rad + pos: -35.5,15.5 parent: 31 type: Transform - - uid: 7979 +- proto: CarpetGreen + entities: + - uid: 2452 components: - - pos: 21.5,-0.5 + - rot: 3.141592653589793 rad + pos: -0.5,0.5 parent: 31 type: Transform - - uid: 7980 + - uid: 4058 components: - - pos: 21.5,0.5 + - rot: 3.141592653589793 rad + pos: 0.5,0.5 parent: 31 type: Transform - - uid: 7981 + - uid: 4062 components: - - pos: 21.5,1.5 + - rot: 3.141592653589793 rad + pos: -0.5,1.5 parent: 31 type: Transform - - uid: 8043 + - uid: 4099 components: - - pos: 20.5,-27.5 + - pos: -29.5,1.5 parent: 31 type: Transform - - uid: 8089 + - uid: 4100 components: - - rot: 1.5707963267948966 rad - pos: 75.5,-4.5 + - pos: -29.5,0.5 parent: 31 type: Transform - - uid: 8090 + - uid: 4101 components: - - rot: 1.5707963267948966 rad - pos: 74.5,-4.5 + - pos: -28.5,1.5 parent: 31 type: Transform - - uid: 8091 + - uid: 4102 components: - - rot: 1.5707963267948966 rad - pos: 73.5,-4.5 + - pos: -28.5,0.5 parent: 31 type: Transform - - uid: 8092 + - uid: 4155 components: - - rot: 1.5707963267948966 rad - pos: 72.5,-4.5 + - rot: 3.141592653589793 rad + pos: 12.5,-29.5 parent: 31 type: Transform - - uid: 8093 + - uid: 4721 components: - - rot: 1.5707963267948966 rad - pos: 71.5,-4.5 + - rot: 3.141592653589793 rad + pos: 11.5,-30.5 parent: 31 type: Transform - - uid: 8094 + - uid: 4722 components: - - rot: 1.5707963267948966 rad - pos: 70.5,-4.5 + - rot: 3.141592653589793 rad + pos: 11.5,-29.5 parent: 31 type: Transform - - uid: 8095 + - uid: 4780 components: - - rot: 1.5707963267948966 rad - pos: 69.5,-4.5 + - rot: 3.141592653589793 rad + pos: 12.5,-30.5 parent: 31 type: Transform - - uid: 8096 + - uid: 8423 components: - - rot: 1.5707963267948966 rad - pos: 68.5,-4.5 + - rot: 3.141592653589793 rad + pos: 0.5,1.5 parent: 31 type: Transform - - uid: 8097 + - uid: 8726 components: - - rot: 1.5707963267948966 rad - pos: 67.5,-4.5 + - pos: -34.5,-29.5 parent: 31 type: Transform - - uid: 8098 + - uid: 8727 components: - - rot: 1.5707963267948966 rad - pos: 66.5,-4.5 + - pos: -34.5,-28.5 parent: 31 type: Transform - - uid: 8099 + - uid: 8728 components: - - rot: 1.5707963267948966 rad - pos: 65.5,-4.5 + - pos: -35.5,-28.5 parent: 31 type: Transform - - uid: 8100 + - uid: 8729 components: - - rot: 1.5707963267948966 rad - pos: 64.5,-4.5 + - pos: -36.5,-28.5 parent: 31 type: Transform - - uid: 8101 + - uid: 8730 components: - - rot: 1.5707963267948966 rad - pos: 64.5,-3.5 + - pos: -36.5,-29.5 parent: 31 type: Transform - - uid: 8102 + - uid: 8731 components: - - rot: 1.5707963267948966 rad - pos: 64.5,-2.5 + - pos: -35.5,-29.5 parent: 31 type: Transform - - uid: 8103 + - uid: 8911 components: - - rot: 1.5707963267948966 rad - pos: 64.5,-1.5 + - pos: -24.5,-2.5 parent: 31 type: Transform - - uid: 8104 + - uid: 8912 components: - - rot: 1.5707963267948966 rad - pos: 64.5,-0.5 + - pos: -23.5,-2.5 parent: 31 type: Transform - - uid: 8105 + - uid: 8913 components: - - rot: 1.5707963267948966 rad - pos: 64.5,0.5 + - pos: -23.5,-1.5 parent: 31 type: Transform - - uid: 8106 + - uid: 8914 components: - - rot: 1.5707963267948966 rad - pos: 64.5,1.5 + - pos: -24.5,-1.5 parent: 31 type: Transform - - uid: 8655 + - uid: 9014 components: - - pos: -38.5,-28.5 + - pos: 7.5,-27.5 parent: 31 type: Transform - - uid: 8656 + - uid: 9015 components: - - pos: -39.5,-28.5 + - pos: 8.5,-27.5 parent: 31 type: Transform - - uid: 8657 + - uid: 9016 components: - - pos: -40.5,-28.5 + - pos: 8.5,-26.5 parent: 31 type: Transform - - uid: 8658 + - uid: 9017 components: - - pos: -41.5,-28.5 + - pos: 7.5,-26.5 parent: 31 type: Transform - - uid: 8659 + - uid: 9018 components: - - pos: -42.5,-28.5 + - pos: 6.5,-27.5 parent: 31 type: Transform - - uid: 8660 + - uid: 9019 components: - - pos: -32.5,-38.5 + - pos: 6.5,-26.5 parent: 31 type: Transform - - uid: 8661 +- proto: CarpetOrange + entities: + - uid: 22 components: - - pos: -32.5,-37.5 + - rot: -1.5707963267948966 rad + pos: -6.5,-2.5 parent: 31 type: Transform - - uid: 8662 + - uid: 40 components: - - pos: -32.5,-36.5 + - rot: -1.5707963267948966 rad + pos: -7.5,-1.5 parent: 31 type: Transform - - uid: 8663 + - uid: 82 components: - - pos: -32.5,-35.5 + - rot: -1.5707963267948966 rad + pos: -5.5,-1.5 parent: 31 type: Transform - - uid: 8664 + - uid: 102 components: - - pos: -32.5,-34.5 + - rot: -1.5707963267948966 rad + pos: -7.5,-2.5 parent: 31 type: Transform - - uid: 9007 + - uid: 107 components: - - pos: -22.5,-26.5 + - rot: -1.5707963267948966 rad + pos: -6.5,-1.5 parent: 31 type: Transform - - uid: 9008 + - uid: 119 components: - - pos: -23.5,-26.5 + - rot: -1.5707963267948966 rad + pos: -5.5,-2.5 parent: 31 type: Transform - - uid: 9009 + - uid: 559 components: - - pos: -30.5,-26.5 + - pos: -3.5,-0.5 parent: 31 type: Transform - - uid: 9010 + - uid: 832 components: - - pos: -29.5,-26.5 + - pos: 29.5,8.5 parent: 31 type: Transform - - uid: 9060 + - uid: 985 components: - - pos: 16.5,21.5 + - pos: 38.5,-0.5 parent: 31 type: Transform - - uid: 9061 + - uid: 1046 components: - - pos: 53.5,6.5 + - pos: -5.5,-0.5 parent: 31 type: Transform - - uid: 9062 + - uid: 1154 components: - - pos: 53.5,7.5 + - pos: 38.5,-1.5 parent: 31 type: Transform - - uid: 9063 + - uid: 1338 components: - - pos: 60.5,7.5 + - pos: -4.5,-0.5 parent: 31 type: Transform - - uid: 9064 + - uid: 1607 components: - - pos: 59.5,7.5 + - pos: 39.5,-0.5 parent: 31 type: Transform - - uid: 9065 + - uid: 1608 components: - - pos: 57.5,7.5 + - pos: 39.5,-1.5 parent: 31 type: Transform - - uid: 9066 + - uid: 2387 components: - - pos: 56.5,7.5 + - pos: -6.5,-0.5 parent: 31 type: Transform - - uid: 9375 + - uid: 2945 components: - - rot: 3.141592653589793 rad - pos: 53.5,5.5 + - pos: 28.5,8.5 parent: 31 type: Transform - - uid: 9451 + - uid: 3751 components: - - pos: -22.5,-32.5 + - pos: -7.5,-0.5 parent: 31 type: Transform - - uid: 9452 + - uid: 3752 components: - - pos: -23.5,-32.5 + - pos: -2.5,-0.5 parent: 31 type: Transform - - uid: 9453 + - uid: 6242 components: - - pos: -19.5,-29.5 + - pos: 27.5,8.5 parent: 31 type: Transform - - uid: 9454 + - uid: 8426 components: - - pos: -19.5,-28.5 + - pos: -2.5,-2.5 parent: 31 type: Transform - - uid: 9455 + - uid: 8427 components: - - pos: -19.5,-27.5 + - pos: -3.5,-2.5 parent: 31 type: Transform - - uid: 9456 + - uid: 8428 components: - - pos: -19.5,-25.5 + - pos: -4.5,-2.5 parent: 31 type: Transform - - uid: 9457 + - uid: 8429 components: - - pos: -19.5,-24.5 + - pos: -4.5,-1.5 parent: 31 type: Transform - - uid: 9458 + - uid: 8430 components: - - pos: -19.5,-23.5 + - pos: -3.5,-1.5 parent: 31 type: Transform - - uid: 9459 + - uid: 8431 components: - - pos: -19.5,-22.5 + - pos: -2.5,-1.5 parent: 31 type: Transform - - uid: 9460 +- proto: CarpetPink + entities: + - uid: 4103 components: - - pos: -19.5,-21.5 + - pos: -29.5,-4.5 parent: 31 type: Transform - - uid: 9461 + - uid: 4104 components: - - pos: -19.5,-20.5 + - pos: -29.5,-5.5 parent: 31 type: Transform - - uid: 9462 + - uid: 4105 components: - - pos: -19.5,-19.5 + - pos: -28.5,-4.5 parent: 31 type: Transform - - uid: 9463 + - uid: 4106 components: - - pos: -19.5,-18.5 + - pos: -28.5,-5.5 parent: 31 type: Transform - - uid: 9464 + - uid: 7298 components: - - pos: -19.5,-17.5 + - pos: 8.5,-29.5 parent: 31 type: Transform -- proto: Chair - entities: - - uid: 423 + - uid: 7299 components: - - rot: 3.141592653589793 rad - pos: 16.5,15.5 + - pos: 8.5,-30.5 parent: 31 type: Transform - - uid: 424 + - uid: 7300 components: - - pos: 16.5,17.5 + - pos: 9.5,-30.5 parent: 31 type: Transform - - uid: 629 + - uid: 7301 components: - - pos: 45.5,-1.5 + - pos: 9.5,-29.5 parent: 31 type: Transform - - uid: 654 +- proto: CarpetPurple + entities: + - uid: 1698 components: - rot: -1.5707963267948966 rad - pos: -35.5,-0.5 + pos: -4.5,-23.5 parent: 31 type: Transform - - uid: 689 + - uid: 2087 components: - - pos: 44.5,-1.5 + - rot: -1.5707963267948966 rad + pos: -3.5,-23.5 parent: 31 type: Transform - - uid: 896 +- proto: CarpetSBlue + entities: + - uid: 91 components: - - rot: 3.141592653589793 rad - pos: 45.5,-3.5 + - pos: 9.5,19.5 parent: 31 type: Transform - - uid: 899 + - uid: 1177 components: - - rot: 3.141592653589793 rad - pos: -8.5,19.5 + - pos: 8.5,19.5 parent: 31 type: Transform - - uid: 988 + - uid: 7155 components: - - rot: 3.141592653589793 rad - pos: 44.5,-3.5 + - pos: 9.5,20.5 parent: 31 type: Transform - - uid: 1080 + - uid: 7432 components: - - pos: -3.5,14.5 + - pos: 10.5,16.5 parent: 31 type: Transform - - uid: 3907 + - uid: 8418 components: - - rot: 1.5707963267948966 rad - pos: 23.5,13.5 + - rot: 3.141592653589793 rad + pos: 8.5,20.5 parent: 31 type: Transform - - uid: 4192 + - uid: 9052 components: - - rot: -1.5707963267948966 rad - pos: 4.5,24.5 + - pos: 9.5,16.5 parent: 31 type: Transform - - uid: 4199 +- proto: Catwalk + entities: + - uid: 2 components: - - rot: 1.5707963267948966 rad - pos: -7.5,14.5 + - pos: -3.5,21.5 parent: 31 type: Transform - - uid: 4291 + - uid: 25 components: - - rot: -1.5707963267948966 rad - pos: 33.5,-3.5 + - rot: 3.141592653589793 rad + pos: 33.5,38.5 parent: 31 type: Transform - - uid: 4380 + - uid: 32 components: - - rot: -1.5707963267948966 rad - pos: 35.5,-12.5 + - rot: 3.141592653589793 rad + pos: 35.5,38.5 parent: 31 type: Transform - - uid: 4714 + - uid: 402 components: - - pos: -24.5,-4.5 + - rot: -1.5707963267948966 rad + pos: -27.5,-16.5 parent: 31 type: Transform - - uid: 4715 + - uid: 529 components: - - rot: 3.141592653589793 rad - pos: -23.5,-7.5 + - pos: -1.5,21.5 parent: 31 type: Transform - - uid: 4853 + - uid: 705 components: - - rot: 1.5707963267948966 rad - pos: 2.5,-30.5 + - pos: -9.5,-10.5 parent: 31 type: Transform - - uid: 4854 + - uid: 710 components: - - rot: -1.5707963267948966 rad - pos: 4.5,-30.5 + - pos: -7.5,-10.5 parent: 31 type: Transform - - uid: 5004 + - uid: 713 components: - - rot: -1.5707963267948966 rad - pos: -22.5,-2.5 + - pos: -4.5,-10.5 parent: 31 type: Transform - - uid: 6258 + - uid: 722 components: - - rot: 1.5707963267948966 rad - pos: 31.5,-3.5 + - pos: -2.5,-10.5 parent: 31 type: Transform - - uid: 6259 + - uid: 743 components: - - rot: 1.5707963267948966 rad - pos: 31.5,-2.5 + - rot: -1.5707963267948966 rad + pos: -28.5,-17.5 parent: 31 type: Transform - - uid: 6261 + - uid: 764 components: - rot: -1.5707963267948966 rad - pos: 33.5,-2.5 + pos: -28.5,-12.5 parent: 31 type: Transform - - uid: 7027 + - uid: 808 components: - rot: -1.5707963267948966 rad - pos: 35.5,-14.5 + pos: -28.5,-15.5 parent: 31 type: Transform - - uid: 7286 + - uid: 833 components: - - pos: 10.5,1.5 + - pos: 47.5,-7.5 parent: 31 type: Transform - - uid: 7287 + - uid: 834 components: - - pos: 9.5,1.5 + - pos: 55.5,-8.5 parent: 31 type: Transform - - uid: 7288 + - uid: 850 components: - - pos: 8.5,1.5 + - rot: -1.5707963267948966 rad + pos: -28.5,-13.5 parent: 31 type: Transform - - uid: 7289 + - uid: 884 components: - - pos: 7.5,1.5 + - pos: 52.5,-10.5 parent: 31 type: Transform - - uid: 7627 + - uid: 885 components: - - rot: -1.5707963267948966 rad - pos: -28.5,17.5 + - pos: 53.5,-9.5 parent: 31 type: Transform - - uid: 7646 + - uid: 886 components: - - pos: -28.5,-7.5 + - pos: 53.5,-8.5 parent: 31 type: Transform - - uid: 7774 + - uid: 887 components: - - rot: 1.5707963267948966 rad - pos: 1.5,19.5 + - pos: 51.5,-8.5 parent: 31 type: Transform - - uid: 7775 + - uid: 974 components: - - rot: 1.5707963267948966 rad - pos: 1.5,18.5 + - pos: -2.5,21.5 parent: 31 type: Transform - - uid: 7841 + - uid: 1063 components: - - rot: 3.141592653589793 rad - pos: -15.5,24.5 + - rot: -1.5707963267948966 rad + pos: -28.5,-14.5 parent: 31 type: Transform - - uid: 7842 + - uid: 1153 components: - - rot: 3.141592653589793 rad - pos: -14.5,24.5 + - pos: -0.5,21.5 parent: 31 type: Transform - - uid: 7844 + - uid: 1388 components: - - pos: -17.5,-8.5 + - pos: 32.5,27.5 parent: 31 type: Transform - - uid: 7905 + - uid: 1427 components: - - rot: 1.5707963267948966 rad - pos: 17.5,-13.5 + - pos: -1.5,-10.5 parent: 31 type: Transform - - uid: 7906 + - uid: 1432 components: - - rot: 1.5707963267948966 rad - pos: 17.5,-12.5 + - pos: -0.5,-10.5 parent: 31 type: Transform - - uid: 7907 + - uid: 1437 components: - - rot: 1.5707963267948966 rad - pos: 17.5,-14.5 + - pos: -8.5,-10.5 parent: 31 type: Transform - - uid: 7960 + - uid: 1438 components: - - pos: 27.5,6.5 + - pos: -5.5,-10.5 parent: 31 type: Transform - - uid: 8283 + - uid: 1440 components: - - pos: 50.5,-18.5 + - pos: -3.5,-10.5 parent: 31 type: Transform - - uid: 8284 + - uid: 1492 components: - - pos: 48.5,-18.5 + - pos: 6.5,14.5 parent: 31 type: Transform - - uid: 8285 + - uid: 1552 components: - - rot: -1.5707963267948966 rad - pos: 55.5,-23.5 + - pos: -9.5,-8.5 parent: 31 type: Transform - - uid: 8286 + - uid: 1662 components: - - rot: -1.5707963267948966 rad - pos: 55.5,-25.5 + - pos: 27.5,-8.5 parent: 31 type: Transform - - uid: 8290 + - uid: 1711 components: - - pos: 37.5,-23.5 + - pos: 27.5,-12.5 parent: 31 type: Transform - - uid: 8291 + - uid: 2157 components: - - pos: 35.5,-23.5 + - pos: 12.5,14.5 parent: 31 type: Transform - - uid: 8299 + - uid: 2158 components: - - pos: 36.5,-23.5 + - pos: 12.5,18.5 parent: 31 type: Transform - - uid: 8812 + - uid: 2329 components: - - rot: -1.5707963267948966 rad - pos: -1.5,29.5 + - pos: 27.5,-13.5 parent: 31 type: Transform - - uid: 8869 + - uid: 2866 components: - - rot: -1.5707963267948966 rad - pos: 16.5,6.5 + - pos: 22.5,-19.5 parent: 31 type: Transform - - uid: 8870 + - uid: 3107 components: - - rot: -1.5707963267948966 rad - pos: 16.5,7.5 + - pos: 57.5,7.5 parent: 31 type: Transform - - uid: 8938 + - uid: 3412 components: - - rot: -1.5707963267948966 rad - pos: 5.5,-15.5 + - pos: -19.5,-31.5 parent: 31 type: Transform - - uid: 8939 + - uid: 3414 components: - - rot: -1.5707963267948966 rad - pos: 5.5,-14.5 + - pos: -19.5,-30.5 parent: 31 type: Transform - - uid: 8952 + - uid: 3570 components: - - rot: -1.5707963267948966 rad - pos: -28.5,8.5 + - pos: 78.5,12.5 parent: 31 type: Transform - - uid: 9239 + - uid: 3656 components: - - rot: 1.5707963267948966 rad - pos: -40.5,4.5 + - pos: 55.5,7.5 parent: 31 type: Transform - - uid: 9240 + - uid: 3725 components: - - rot: 1.5707963267948966 rad - pos: -40.5,5.5 + - rot: 3.141592653589793 rad + pos: 8.5,-38.5 parent: 31 type: Transform - - uid: 9241 + - uid: 3958 + components: + - pos: 16.5,20.5 + parent: 31 + type: Transform + - uid: 4219 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-38.5 + parent: 31 + type: Transform + - uid: 4344 components: - rot: 1.5707963267948966 rad - pos: -40.5,6.5 + pos: 63.5,2.5 parent: 31 type: Transform - - uid: 9242 + - uid: 4397 components: - - rot: -1.5707963267948966 rad - pos: -38.5,4.5 + - pos: 53.5,-10.5 parent: 31 type: Transform - - uid: 9243 + - uid: 4401 components: - - rot: -1.5707963267948966 rad - pos: -38.5,5.5 + - pos: 20.5,-35.5 parent: 31 type: Transform - - uid: 9244 + - uid: 4409 components: - - rot: -1.5707963267948966 rad - pos: -38.5,6.5 + - pos: 51.5,-10.5 parent: 31 type: Transform - - uid: 9245 + - uid: 4420 components: - - rot: 1.5707963267948966 rad - pos: -37.5,4.5 + - pos: 52.5,-8.5 parent: 31 type: Transform - - uid: 9246 + - uid: 4437 components: - - rot: 1.5707963267948966 rad - pos: -37.5,5.5 + - pos: 50.5,-7.5 parent: 31 type: Transform - - uid: 9247 + - uid: 4438 components: - - rot: 1.5707963267948966 rad - pos: -37.5,6.5 + - pos: 50.5,-8.5 parent: 31 type: Transform - - uid: 9336 + - uid: 4514 components: - - rot: -1.5707963267948966 rad - pos: -35.5,0.5 + - pos: 27.5,-11.5 parent: 31 type: Transform - - uid: 9337 + - uid: 4530 components: - - rot: -1.5707963267948966 rad - pos: -35.5,1.5 + - pos: 47.5,-9.5 parent: 31 type: Transform - - uid: 9345 + - uid: 4537 components: - - rot: -1.5707963267948966 rad - pos: -35.5,-9.5 + - pos: 48.5,-8.5 parent: 31 type: Transform - - uid: 9346 + - uid: 4827 components: - - rot: -1.5707963267948966 rad - pos: -35.5,-8.5 + - pos: -19.5,-29.5 parent: 31 type: Transform - - uid: 9347 + - uid: 4871 components: - - rot: -1.5707963267948966 rad - pos: -35.5,-7.5 + - pos: 28.5,-35.5 parent: 31 type: Transform - - uid: 9465 + - uid: 4877 components: - - pos: -14.5,-32.5 + - pos: 28.5,-27.5 parent: 31 type: Transform - - uid: 9466 + - uid: 5058 components: - - pos: -16.5,-32.5 + - pos: 49.5,-8.5 parent: 31 type: Transform - - uid: 9732 + - uid: 5246 components: - - rot: 1.5707963267948966 rad - pos: -7.5,13.5 + - pos: 27.5,-31.5 parent: 31 type: Transform - - uid: 9735 + - uid: 5247 components: - - rot: 3.141592653589793 rad - pos: -6.5,12.5 + - pos: 28.5,-31.5 parent: 31 type: Transform -- proto: ChairOfficeDark - entities: - - uid: 953 + - uid: 5249 components: - - pos: 49.5,4.5 + - pos: 25.5,-31.5 parent: 31 type: Transform - - uid: 961 + - uid: 5265 components: - - rot: 1.5707963705062866 rad - pos: -2.5,25.5 + - pos: 28.5,-29.5 parent: 31 type: Transform - - uid: 962 + - uid: 5266 components: - - rot: 1.5707963705062866 rad - pos: -2.5,24.5 + - pos: 28.5,-28.5 parent: 31 type: Transform - - uid: 963 + - uid: 5267 components: - - rot: 4.71238902409608 rad - pos: -0.5,25.5 + - pos: 24.5,-29.5 parent: 31 type: Transform - - uid: 964 + - uid: 5268 components: - - rot: 4.71238902409608 rad - pos: -0.5,24.5 + - pos: 24.5,-32.5 parent: 31 type: Transform - - uid: 1047 + - uid: 5269 components: - - rot: -1.5707963267948966 rad - pos: -3.5,-23.5 + - pos: 20.5,-34.5 parent: 31 type: Transform - - uid: 1085 + - uid: 5270 components: - - rot: 1.5707963267948966 rad - pos: -5.5,-23.5 + - pos: 24.5,-28.5 parent: 31 type: Transform - - uid: 1093 + - uid: 5271 components: - - rot: -1.5707963267948966 rad - pos: -12.5,15.5 + - pos: 24.5,-33.5 parent: 31 type: Transform - - uid: 2777 + - uid: 5272 components: - - pos: -29.5,-1.5 + - pos: 24.5,-30.5 parent: 31 type: Transform - - uid: 2815 + - uid: 5273 components: - - rot: 3.141592653589793 rad - pos: -30.5,0.5 + - pos: 20.5,-30.5 parent: 31 type: Transform - - uid: 3154 + - uid: 5274 components: - - pos: -1.5,26.5 + - pos: 18.5,-31.5 parent: 31 type: Transform - - uid: 3990 + - uid: 5275 components: - - rot: -1.5707963267948966 rad - pos: -2.5,8.5 + - pos: 20.5,-29.5 parent: 31 type: Transform - - uid: 3991 + - uid: 5276 components: - - pos: -1.5,7.5 + - pos: 26.5,-31.5 parent: 31 type: Transform - - uid: 3994 + - uid: 5277 components: - - rot: 3.141592653589793 rad - pos: -1.5,23.5 + - pos: 24.5,-34.5 parent: 31 type: Transform - - uid: 4150 + - uid: 5278 components: - - pos: -10.5,8.5 + - pos: 24.5,-35.5 parent: 31 type: Transform - - uid: 4186 + - uid: 5279 components: - - rot: -1.5707963267948966 rad - pos: 1.5,31.5 + - pos: 28.5,-34.5 parent: 31 type: Transform - - uid: 4191 + - uid: 5280 components: - - rot: 3.141592653589793 rad - pos: 6.5,31.5 + - pos: 24.5,-31.5 parent: 31 type: Transform - - uid: 4738 + - uid: 5281 components: - - pos: 15.5,9.5 + - pos: 19.5,-31.5 parent: 31 type: Transform - - uid: 4785 + - uid: 5282 components: - - rot: 3.141592653589793 rad - pos: 9.5,-29.5 + - pos: 20.5,-31.5 parent: 31 type: Transform - - uid: 7153 + - uid: 5283 components: - - pos: 7.5,20.5 + - pos: 20.5,-28.5 parent: 31 type: Transform - - uid: 7294 + - uid: 5284 components: - - pos: 9.5,-27.5 + - pos: 24.5,-27.5 parent: 31 type: Transform - - uid: 8346 + - uid: 5940 components: - - rot: -1.5707963267948966 rad - pos: -5.5,14.5 + - pos: 31.5,26.5 parent: 31 type: Transform - - uid: 8695 + - uid: 6293 + components: + - pos: 53.5,-7.5 + parent: 31 + type: Transform + - uid: 6311 components: - rot: 1.5707963267948966 rad - pos: -36.5,-25.5 + pos: 62.5,2.5 parent: 31 type: Transform - - uid: 8701 + - uid: 6348 components: - - rot: -1.5707963267948966 rad - pos: -34.5,-25.5 + - pos: 48.5,8.5 parent: 31 type: Transform - - uid: 8702 + - uid: 6356 components: - - pos: -35.5,-23.5 + - pos: 48.5,10.5 parent: 31 type: Transform - - uid: 8706 + - uid: 6370 components: - - rot: -1.5707963267948966 rad - pos: -34.5,-24.5 + - pos: 15.5,-28.5 parent: 31 type: Transform - - uid: 8707 + - uid: 6382 components: - - rot: 1.5707963267948966 rad - pos: -36.5,-24.5 + - pos: 48.5,11.5 parent: 31 type: Transform - - uid: 8811 + - uid: 6412 components: - - rot: 1.5707963267948966 rad - pos: 8.5,29.5 + - pos: 15.5,-29.5 parent: 31 type: Transform - - uid: 8865 + - uid: 6456 components: - - rot: -1.5707963267948966 rad - pos: 31.5,5.5 + - pos: 48.5,12.5 parent: 31 type: Transform - - uid: 8893 + - uid: 6523 components: - - rot: 3.141592653589793 rad - pos: 41.5,3.5 + - pos: 31.5,25.5 parent: 31 type: Transform - - uid: 9002 + - uid: 6532 components: - - pos: -20.5,-1.5 + - rot: 1.5707963267948966 rad + pos: 64.5,3.5 parent: 31 type: Transform - - uid: 9023 + - uid: 6545 components: - - rot: 3.141592653589793 rad - pos: 13.5,11.5 + - pos: 48.5,9.5 parent: 31 type: Transform - - uid: 9024 + - uid: 6609 components: - - rot: -1.5707963267948966 rad - pos: 19.5,8.5 + - pos: 30.5,20.5 parent: 31 type: Transform - - uid: 9113 + - uid: 6648 components: - - pos: 38.5,0.5 + - pos: -27.5,24.5 parent: 31 type: Transform - - uid: 9836 + - uid: 6649 components: - - rot: 3.141592653589793 rad - pos: -3.5,12.5 + - pos: -28.5,24.5 parent: 31 type: Transform -- proto: ChairOfficeLight - entities: - - uid: 771 + - uid: 6650 components: - - rot: 3.141592653589793 rad - pos: 23.5,-13.5 + - pos: -29.5,24.5 parent: 31 type: Transform - - uid: 1383 + - uid: 6651 components: - - pos: 15.5,-2.5 + - pos: -30.5,24.5 parent: 31 type: Transform - - uid: 2337 + - uid: 6652 components: - - rot: 1.5707963267948966 rad - pos: 21.5,-13.5 + - pos: -31.5,24.5 parent: 31 type: Transform - - uid: 4142 + - uid: 6653 components: - - pos: 8.5,-15.5 + - pos: -32.5,24.5 parent: 31 type: Transform - - uid: 4697 + - uid: 6654 components: - - rot: 3.141592653589793 rad - pos: 6.5,-8.5 + - pos: -33.5,24.5 parent: 31 type: Transform - - uid: 5095 + - uid: 6655 components: - - rot: 3.141592653589793 rad - pos: 15.5,0.5 + - pos: -34.5,24.5 parent: 31 type: Transform - - uid: 5118 + - uid: 6656 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-15.5 + - pos: -35.5,24.5 parent: 31 type: Transform - - uid: 7479 + - uid: 6657 components: - - rot: 3.141592653589793 rad - pos: 12.5,-3.5 + - pos: -36.5,23.5 parent: 31 type: Transform - - uid: 7490 + - uid: 6658 components: - - pos: 6.5,-4.5 + - pos: -36.5,26.5 parent: 31 type: Transform - - uid: 7615 + - uid: 6659 components: - - pos: 6.5,-10.5 + - pos: -36.5,27.5 parent: 31 type: Transform - - uid: 9120 + - uid: 6660 components: - - rot: 1.5707963267948966 rad - pos: 18.5,-0.5 + - pos: -36.5,22.5 parent: 31 type: Transform - - uid: 9140 + - uid: 6661 components: - - rot: 3.141592653589793 rad - pos: 15.5,-5.5 + - pos: -36.5,21.5 parent: 31 type: Transform -- proto: ChairPilotSeat - entities: - - uid: 1039 + - uid: 6662 components: - - rot: 3.141592653589793 rad - pos: 3.5,31.5 + - pos: -38.5,24.5 parent: 31 type: Transform -- proto: ChairWood - entities: - - uid: 1337 + - uid: 6663 components: - - rot: 1.5707963267948966 rad - pos: 9.5,-23.5 + - pos: -30.5,25.5 parent: 31 type: Transform - - uid: 2037 + - uid: 6664 components: - - rot: 1.5707963267948966 rad - pos: 9.5,-24.5 + - pos: -30.5,26.5 parent: 31 type: Transform - - uid: 2038 + - uid: 6665 components: - - rot: -1.5707963267948966 rad - pos: 12.5,-23.5 + - pos: -30.5,27.5 parent: 31 type: Transform - - uid: 2039 + - uid: 6666 components: - - pos: 11.5,-22.5 + - pos: -34.5,23.5 parent: 31 type: Transform - - uid: 2391 + - uid: 6667 components: - - rot: -1.5707963267948966 rad - pos: 12.5,-24.5 + - pos: -34.5,22.5 parent: 31 type: Transform - - uid: 2405 + - uid: 6668 components: - - pos: 10.5,-22.5 + - pos: -34.5,21.5 parent: 31 type: Transform - - uid: 2440 + - uid: 6669 components: - - rot: 3.141592653589793 rad - pos: 11.5,-25.5 + - pos: -36.5,24.5 parent: 31 type: Transform - - uid: 3153 + - uid: 6670 components: - - rot: 3.141592653589793 rad - pos: 10.5,-25.5 + - pos: -37.5,24.5 parent: 31 type: Transform - - uid: 3406 + - uid: 6671 components: - - rot: 1.5707963267948966 rad - pos: -7.5,-1.5 + - pos: -36.5,25.5 parent: 31 type: Transform - - uid: 4060 + - uid: 6672 components: - - rot: -1.5707963267948966 rad - pos: -5.5,-1.5 + - pos: -32.5,21.5 parent: 31 type: Transform - - uid: 7295 + - uid: 6673 components: - - pos: 7.5,-22.5 + - pos: -32.5,22.5 parent: 31 type: Transform - - uid: 7575 + - uid: 6674 components: - - pos: -2.5,-0.5 + - pos: -32.5,23.5 parent: 31 type: Transform - - uid: 7577 + - uid: 6675 components: - - pos: -3.5,-0.5 + - pos: -32.5,25.5 parent: 31 type: Transform - - uid: 7702 + - uid: 6676 components: - - rot: 3.141592653589793 rad - pos: -37.5,12.5 + - pos: -32.5,26.5 parent: 31 type: Transform - - uid: 7704 + - uid: 6677 components: - - rot: 3.141592653589793 rad - pos: -35.5,12.5 + - pos: -32.5,27.5 parent: 31 type: Transform - - uid: 7705 + - uid: 6678 components: - - rot: 3.141592653589793 rad - pos: -35.5,13.5 + - pos: -34.5,27.5 parent: 31 type: Transform - - uid: 7707 + - uid: 6679 components: - - rot: 3.141592653589793 rad - pos: -37.5,13.5 + - pos: -34.5,26.5 parent: 31 type: Transform - - uid: 8424 + - uid: 6680 components: - - rot: 3.141592653589793 rad - pos: -2.5,-2.5 + - pos: -34.5,25.5 parent: 31 type: Transform - - uid: 8434 + - uid: 6681 components: - - rot: 3.141592653589793 rad - pos: -3.5,-2.5 + - pos: -30.5,23.5 parent: 31 type: Transform -- proto: CheapRollerBed - entities: - - uid: 6959 + - uid: 6682 components: - - pos: 8.466697,-2.4596636 + - pos: -30.5,22.5 parent: 31 type: Transform - - uid: 6995 + - uid: 6683 components: - - pos: 8.482322,-1.9752886 + - pos: -30.5,21.5 parent: 31 type: Transform - - uid: 7251 + - uid: 6698 components: - - pos: 24.491184,-5.57038 + - pos: 22.5,-31.5 parent: 31 type: Transform - - uid: 7252 + - uid: 6699 components: - - pos: 24.47556,-5.97663 + - pos: 23.5,-31.5 parent: 31 type: Transform - - uid: 7253 + - uid: 6700 components: - - pos: 24.491184,-6.41413 + - pos: 20.5,-33.5 parent: 31 type: Transform -- proto: chem_master - entities: - - uid: 606 + - uid: 6701 components: - - pos: 19.5,-0.5 + - pos: 21.5,-31.5 parent: 31 type: Transform - - uid: 5075 + - uid: 6702 components: - - pos: 15.5,1.5 + - pos: 20.5,-32.5 parent: 31 type: Transform -- proto: ChemDispenser - entities: - - uid: 5076 + - uid: 6703 components: - - pos: 19.5,-1.5 + - pos: 28.5,-33.5 parent: 31 type: Transform - - uid: 5079 + - uid: 6704 components: - - pos: 16.5,1.5 + - pos: 28.5,-32.5 parent: 31 type: Transform -- proto: ChemistryHotplate - entities: - - uid: 4205 + - uid: 6705 components: - - pos: -1.5,-17.5 + - pos: 28.5,-30.5 parent: 31 type: Transform - - uid: 4207 + - uid: 6706 components: - - pos: 18.5,1.5 + - pos: 29.5,-31.5 parent: 31 type: Transform -- proto: ChurchOrganInstrument - entities: - - uid: 7700 + - uid: 6707 components: - - rot: 1.5707963267948966 rad - pos: -34.5,13.5 + - pos: 30.5,-31.5 parent: 31 type: Transform -- proto: Cigarette - entities: - - uid: 8903 + - uid: 6708 components: - - pos: 31.747108,6.5736575 + - pos: 31.5,-31.5 parent: 31 type: Transform -- proto: CigarGoldCase - entities: - - uid: 1199 + - uid: 6709 components: - - pos: -3.728004,16.448915 + - pos: 32.5,-31.5 parent: 31 type: Transform -- proto: CircuitImprinter - entities: - - uid: 429 + - uid: 6712 components: - - pos: -5.5,-13.5 + - rot: 1.5707963267948966 rad + pos: 76.5,-4.5 parent: 31 type: Transform - - materialWhiteList: - - Steel - - Glass - - Gold - type: MaterialStorage -- proto: ClosetBase - entities: - - uid: 2453 + - uid: 6713 components: - - pos: 0.5,-27.5 + - rot: 1.5707963267948966 rad + pos: 77.5,-4.5 parent: 31 type: Transform - - uid: 7853 + - uid: 6714 components: - - pos: 27.5,-22.5 + - rot: 1.5707963267948966 rad + pos: 78.5,-4.5 parent: 31 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 7856 - - 7859 - - 7854 - - 7857 - - 7855 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: ClosetBombFilled - entities: - - uid: 5116 + - uid: 6715 components: - - pos: -14.5,13.5 + - rot: 1.5707963267948966 rad + pos: 78.5,-2.5 parent: 31 type: Transform -- proto: ClosetChefFilled - entities: - - uid: 799 + - uid: 6716 components: - - pos: -12.5,1.5 + - rot: 1.5707963267948966 rad + pos: 78.5,-3.5 parent: 31 type: Transform -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 472 + - uid: 6717 components: - - pos: 14.5,14.5 + - rot: 1.5707963267948966 rad + pos: 78.5,-0.5 parent: 31 type: Transform - - uid: 759 + - uid: 6718 components: - - pos: 5.5,-21.5 + - rot: 1.5707963267948966 rad + pos: 78.5,-1.5 parent: 31 type: Transform - - uid: 761 + - uid: 6719 components: - - pos: -23.5,11.5 + - rot: 1.5707963267948966 rad + pos: 78.5,0.5 parent: 31 type: Transform - - uid: 4381 + - uid: 6720 components: - - pos: 33.5,-10.5 + - rot: 1.5707963267948966 rad + pos: 78.5,1.5 parent: 31 type: Transform - - uid: 6584 + - uid: 6721 components: - - pos: 30.5,13.5 + - rot: 1.5707963267948966 rad + pos: 78.5,4.5 parent: 31 type: Transform - - uid: 7161 + - uid: 6732 components: - - pos: 23.5,7.5 + - rot: 1.5707963267948966 rad + pos: 78.5,7.5 parent: 31 type: Transform - - uid: 7497 + - uid: 6733 components: - - pos: 14.5,-29.5 + - rot: 1.5707963267948966 rad + pos: 78.5,6.5 parent: 31 type: Transform - - uid: 7588 + - uid: 6734 components: - - pos: -7.5,-14.5 + - rot: 1.5707963267948966 rad + pos: 78.5,5.5 parent: 31 type: Transform - - uid: 7791 + - uid: 6735 components: - - pos: -20.5,22.5 + - rot: 1.5707963267948966 rad + pos: 78.5,3.5 parent: 31 type: Transform - - uid: 8805 + - uid: 6736 components: - - pos: 7.5,28.5 + - rot: 1.5707963267948966 rad + pos: 78.5,2.5 parent: 31 type: Transform - - uid: 9029 + - uid: 6737 components: - - pos: -37.5,-7.5 + - rot: 1.5707963267948966 rad + pos: 78.5,8.5 parent: 31 type: Transform - - uid: 9323 + - uid: 6738 components: - - pos: -34.5,7.5 + - rot: 1.5707963267948966 rad + pos: 78.5,9.5 parent: 31 type: Transform - - uid: 9447 + - uid: 6739 components: - - pos: -22.5,-31.5 + - rot: 1.5707963267948966 rad + pos: 75.5,9.5 parent: 31 type: Transform - - uid: 9740 + - uid: 6740 components: - - pos: 15.5,-21.5 + - rot: 1.5707963267948966 rad + pos: 77.5,9.5 parent: 31 type: Transform -- proto: ClosetFireFilled - entities: - - uid: 1555 + - uid: 6741 components: - - pos: 15.5,14.5 + - rot: 1.5707963267948966 rad + pos: 76.5,9.5 parent: 31 type: Transform - - uid: 3571 + - uid: 6752 components: - - pos: 30.5,11.5 + - rot: 1.5707963267948966 rad + pos: 69.5,9.5 parent: 31 type: Transform - - uid: 7426 + - uid: 6753 components: - - pos: -17.5,-26.5 + - rot: 1.5707963267948966 rad + pos: 71.5,9.5 parent: 31 type: Transform - - uid: 7589 + - uid: 6754 components: - - pos: -7.5,-13.5 + - rot: 1.5707963267948966 rad + pos: 64.5,4.5 parent: 31 type: Transform - - uid: 7792 + - uid: 6755 components: - - pos: -20.5,23.5 + - rot: 1.5707963267948966 rad + pos: 64.5,7.5 parent: 31 type: Transform - - uid: 7912 + - uid: 6756 components: - - pos: 23.5,0.5 + - rot: 1.5707963267948966 rad + pos: 64.5,6.5 parent: 31 type: Transform - - uid: 8384 + - uid: 6757 components: - - pos: -37.5,-8.5 + - rot: 1.5707963267948966 rad + pos: 64.5,8.5 parent: 31 type: Transform - - uid: 8804 + - uid: 6758 components: - - pos: 8.5,28.5 + - rot: 1.5707963267948966 rad + pos: 64.5,9.5 parent: 31 type: Transform - - uid: 9739 + - uid: 6759 components: - - pos: 15.5,-22.5 + - rot: 1.5707963267948966 rad + pos: 65.5,9.5 parent: 31 type: Transform -- proto: ClosetL3JanitorFilled - entities: - - uid: 7913 + - uid: 6760 components: - - pos: -19.5,9.5 + - rot: 1.5707963267948966 rad + pos: 66.5,9.5 parent: 31 type: Transform -- proto: ClosetL3ScienceFilled - entities: - - uid: 7424 + - uid: 6761 components: - - pos: -17.5,-24.5 + - rot: 1.5707963267948966 rad + pos: 64.5,5.5 parent: 31 type: Transform -- proto: ClosetL3VirologyFilled - entities: - - uid: 6695 + - uid: 6762 components: - - pos: 14.5,-7.5 + - rot: 1.5707963267948966 rad + pos: 67.5,9.5 parent: 31 type: Transform -- proto: ClosetMaintenanceFilledRandom - entities: - - uid: 550 + - uid: 6763 components: - - pos: 46.5,-0.5 + - rot: 1.5707963267948966 rad + pos: 68.5,9.5 parent: 31 type: Transform - - uid: 1412 + - uid: 6764 components: - - pos: -7.5,-8.5 + - rot: 1.5707963267948966 rad + pos: 70.5,9.5 parent: 31 type: Transform - - open: True - removedMasks: 20 - type: EntityStorage - - isPlaceable: True - type: PlaceableSurface - - uid: 7058 + - uid: 6765 components: - - pos: 29.5,-9.5 + - rot: 1.5707963267948966 rad + pos: 73.5,9.5 parent: 31 type: Transform - - uid: 7411 + - uid: 6766 components: - - pos: -11.5,-32.5 + - rot: 1.5707963267948966 rad + pos: 72.5,9.5 parent: 31 type: Transform - - uid: 7518 + - uid: 6767 components: - - pos: -11.5,-12.5 + - rot: 1.5707963267948966 rad + pos: 74.5,9.5 parent: 31 type: Transform - - uid: 7606 + - uid: 6861 components: - - pos: -30.5,-10.5 + - pos: 31.5,22.5 parent: 31 type: Transform - - uid: 7779 + - uid: 6884 components: - - pos: -31.5,7.5 + - pos: 60.5,12.5 parent: 31 type: Transform - - uid: 7789 + - uid: 6894 components: - - pos: -19.5,12.5 + - pos: 42.5,-0.5 parent: 31 type: Transform - - uid: 7911 + - uid: 6908 components: - - pos: 23.5,1.5 + - pos: 31.5,20.5 parent: 31 type: Transform - - uid: 7948 + - uid: 6919 components: - - pos: 24.5,-25.5 + - rot: 1.5707963267948966 rad + pos: 64.5,2.5 parent: 31 type: Transform - - uid: 9275 + - uid: 6966 components: - - pos: -27.5,-19.5 + - pos: 42.5,-1.5 parent: 31 type: Transform - - uid: 9570 + - uid: 6968 components: - - pos: -27.5,13.5 + - pos: 42.5,-2.5 parent: 31 type: Transform - - uid: 9571 + - uid: 7035 components: - - pos: -5.5,20.5 + - pos: 42.5,-3.5 parent: 31 type: Transform - - uid: 9572 + - uid: 7045 components: - - pos: 27.5,-18.5 + - pos: 42.5,-4.5 parent: 31 type: Transform - - uid: 9862 + - uid: 7116 components: - - pos: 11.5,-19.5 + - pos: 55.5,-10.5 parent: 31 type: Transform -- proto: ClosetRadiationSuitFilled - entities: - - uid: 4530 + - uid: 7176 components: - - pos: 48.5,-0.5 + - pos: 31.5,21.5 parent: 31 type: Transform - - uid: 4531 + - uid: 7234 components: - - pos: 50.5,-0.5 + - pos: 12.5,15.5 parent: 31 type: Transform - - uid: 7068 + - uid: 7235 components: - - pos: 53.5,1.5 + - pos: 7.5,14.5 parent: 31 type: Transform - - uid: 7425 + - uid: 7236 components: - - pos: -17.5,-25.5 + - pos: 12.5,17.5 parent: 31 type: Transform - - uid: 7571 + - uid: 7237 components: - - pos: -11.5,-11.5 + - pos: 10.5,14.5 parent: 31 type: Transform -- proto: ClosetWallEmergency - entities: - - uid: 9865 + - uid: 7238 components: - - rot: -1.5707963267948966 rad - pos: -34.5,0.5 + - pos: 8.5,14.5 parent: 31 type: Transform -- proto: ClosetWallEmergencyFilledRandom - entities: - - uid: 9868 + - uid: 7239 components: - - pos: 28.5,7.5 + - pos: 12.5,16.5 parent: 31 type: Transform -- proto: ClosetWallFireFilledRandom - entities: - - uid: 9866 + - uid: 7240 components: - - rot: -1.5707963267948966 rad - pos: -33.5,9.5 + - pos: 9.5,14.5 parent: 31 type: Transform - - uid: 9867 + - uid: 7241 components: - - rot: -1.5707963267948966 rad - pos: -34.5,-0.5 + - pos: 12.5,19.5 parent: 31 type: Transform -- proto: ClosetWallMaintenanceFilledRandom - entities: - - uid: 9863 + - uid: 7494 components: - - rot: 1.5707963267948966 rad - pos: -21.5,-20.5 + - pos: 15.5,-27.5 parent: 31 type: Transform - - uid: 9864 + - uid: 7495 components: - - rot: -1.5707963267948966 rad - pos: -31.5,-3.5 + - pos: 14.5,-31.5 parent: 31 type: Transform -- proto: ClothingBackpackDuffel - entities: - - uid: 134 + - uid: 7499 components: - - pos: 29.55824,1.3120463 + - pos: -9.5,-12.5 parent: 31 type: Transform - - uid: 774 + - uid: 7500 components: - - pos: 29.55824,1.5776713 + - pos: -9.5,-11.5 parent: 31 type: Transform - - uid: 794 + - uid: 7510 components: - - pos: 29.542616,1.7495463 + - pos: -26.5,-11.5 parent: 31 type: Transform -- proto: ClothingBeltChampion - entities: - - uid: 4197 + - uid: 7511 components: - - pos: -3.60061,17.54974 + - pos: -27.5,-11.5 parent: 31 type: Transform -- proto: ClothingBeltMilitaryWebbing - entities: - - uid: 8755 + - uid: 7512 components: - - pos: -22.377813,-28.339228 + - pos: -28.5,-11.5 parent: 31 type: Transform -- proto: ClothingBeltUtility - entities: - - uid: 4757 + - uid: 7513 components: - - pos: 10.66112,-19.235216 + - pos: -29.5,-11.5 parent: 31 type: Transform -- proto: ClothingBeltUtilityFilled - entities: - - uid: 7373 + - uid: 7514 components: - - pos: -17.458836,-19.170164 + - pos: -31.5,-11.5 parent: 31 type: Transform - - uid: 7482 + - uid: 7515 components: - - pos: 35.56775,-3.545828 + - pos: -30.5,-11.5 parent: 31 type: Transform - - uid: 9697 + - uid: 7516 components: - - pos: -0.40004647,-17.584152 + - pos: -32.5,-11.5 parent: 31 type: Transform -- proto: ClothingEyesGlasses - entities: - - uid: 7107 + - uid: 7517 components: - - flags: InContainer - type: MetaData - - parent: 7110 + - pos: -33.5,-11.5 + parent: 31 type: Transform - - canCollide: False - type: Physics -- proto: ClothingEyesGlassesMeson - entities: - - uid: 7582 + - uid: 7520 components: - - pos: 43.506165,13.466041 + - pos: -33.5,0.5 parent: 31 type: Transform - - uid: 8213 + - uid: 7521 components: - - pos: 35.614624,-3.264578 + - pos: -33.5,-0.5 parent: 31 type: Transform -- proto: ClothingEyesGlassesSunglasses - entities: - - uid: 4235 + - uid: 7522 components: - - pos: -10.276402,-6.3744125 + - pos: -33.5,-1.5 parent: 31 type: Transform -- proto: ClothingEyesGlassesThermal - entities: - - uid: 1730 + - uid: 7523 components: - - pos: 43.658943,13.563262 + - pos: -33.5,-10.5 parent: 31 type: Transform -- proto: ClothingEyesHudDiagnostic - entities: - - uid: 7580 + - uid: 7524 components: - - pos: 32.538,-3.0937886 + - pos: -33.5,-8.5 parent: 31 type: Transform -- proto: ClothingHandsGlovesColorYellow - entities: - - uid: 2523 + - uid: 7525 components: - - pos: -29.506107,7.62424 + - pos: -33.5,-7.5 parent: 31 type: Transform - - uid: 7572 + - uid: 7526 components: - - pos: -11.565304,-10.576338 + - pos: -33.5,-6.5 parent: 31 type: Transform - - uid: 7581 + - uid: 7527 components: - - pos: 32.479706,-2.7047698 + - pos: -33.5,-5.5 parent: 31 type: Transform -- proto: ClothingHandsGlovesCombat - entities: - - uid: 8315 + - uid: 7528 components: - - pos: 43.576782,13.655371 + - pos: -33.5,-4.5 parent: 31 type: Transform -- proto: ClothingHandsGlovesLatex - entities: - - uid: 7102 + - uid: 7529 components: - - flags: InContainer - type: MetaData - - parent: 7110 + - pos: -33.5,-3.5 + parent: 31 type: Transform - - canCollide: False - type: Physics -- proto: ClothingHeadHatAnimalCat - entities: - - uid: 7055 + - uid: 7530 components: - - pos: 29.474722,-19.430801 + - pos: -33.5,-2.5 parent: 31 type: Transform -- proto: ClothingHeadHatAnimalCatBlack - entities: - - uid: 7971 + - uid: 7609 components: - - pos: 26.502825,-1.4970446 + - pos: -32.5,8.5 parent: 31 type: Transform -- proto: ClothingHeadHatFedoraBrown - entities: - - uid: 7484 + - uid: 7610 components: - - pos: -21.550486,17.73303 + - pos: -32.5,9.5 parent: 31 type: Transform - - uid: 7857 + - uid: 7611 components: - - flags: InContainer - type: MetaData - - parent: 7853 + - pos: -32.5,10.5 + parent: 31 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingHeadHatFez - entities: - - uid: 4514 + - uid: 7612 components: - - pos: 29.50045,-19.290176 + - pos: -32.5,11.5 parent: 31 type: Transform -- proto: ClothingHeadHatHairflower - entities: - - uid: 4196 + - uid: 7613 components: - - pos: -3.75686,18.190365 + - pos: -32.5,12.5 parent: 31 type: Transform -- proto: ClothingHeadHatPaper - entities: - - uid: 8796 + - uid: 7614 components: - - pos: -16.53326,11.169706 + - pos: -32.5,13.5 parent: 31 type: Transform -- proto: ClothingHeadHatPirate - entities: - - uid: 4503 + - uid: 7616 components: - - pos: 36.423782,-15.13722 + - pos: -31.5,14.5 parent: 31 type: Transform -- proto: ClothingHeadHatPumpkin - entities: - - uid: 9566 + - uid: 7617 components: - - pos: 38.975025,-21.84359 + - pos: -30.5,14.5 parent: 31 type: Transform -- proto: ClothingHeadHatRichard - entities: - - uid: 9467 + - uid: 7618 components: - - pos: -14.574368,-32.657608 + - pos: -29.5,14.5 parent: 31 type: Transform -- proto: ClothingHeadHatUshanka - entities: - - uid: 7569 + - uid: 7619 components: - - pos: -15.461412,-12.240024 + - pos: -28.5,14.5 parent: 31 type: Transform - - uid: 7570 + - uid: 7620 components: - - pos: -15.445787,-12.458774 + - pos: -27.5,14.5 parent: 31 type: Transform -- proto: ClothingHeadHatWelding - entities: - - uid: 8845 + - uid: 7621 components: - - pos: 43.484886,13.560756 + - pos: -26.5,14.5 parent: 31 type: Transform -- proto: ClothingHeadHatWeldingMaskFlame - entities: - - uid: 7591 + - uid: 7622 components: - - pos: -7.7191744,-15.538947 + - pos: -25.5,14.5 parent: 31 type: Transform -- proto: ClothingHeadSafari - entities: - - uid: 8300 + - uid: 7623 components: - - pos: 45.440758,-27.832642 + - pos: -24.5,14.5 parent: 31 type: Transform -- proto: ClothingMaskGas - entities: - - uid: 7970 + - uid: 7624 components: - - pos: 37.548763,-3.266727 + - pos: -23.5,14.5 parent: 31 type: Transform - - uid: 8889 + - uid: 7638 components: - - pos: 45.41048,5.588048 + - rot: 3.141592653589793 rad + pos: 33.5,37.5 parent: 31 type: Transform - - uid: 8890 + - uid: 7654 components: - - pos: 45.613605,5.494298 + - pos: -8.5,25.5 parent: 31 type: Transform -- proto: ClothingMaskSterile - entities: - - uid: 7101 + - uid: 7655 components: - - flags: InContainer - type: MetaData - - parent: 7110 + - pos: -9.5,25.5 + parent: 31 type: Transform - - canCollide: False - type: Physics -- proto: ClothingNeckBling - entities: - - uid: 718 + - uid: 7656 components: - - pos: -3.31936,17.67474 + - pos: -11.5,25.5 parent: 31 type: Transform -- proto: ClothingNeckCloakTrans - entities: - - uid: 9748 + - uid: 7657 components: - - pos: -28.4315,17.631725 + - pos: -12.5,25.5 parent: 31 type: Transform -- proto: ClothingNeckScarfStripedBlue - entities: - - uid: 7843 + - uid: 7658 components: - - pos: -13.566107,24.548891 + - pos: -13.5,25.5 parent: 31 type: Transform -- proto: ClothingNeckScarfStripedGreen - entities: - - uid: 7166 + - uid: 7659 components: - - pos: 12.493905,-31.538164 + - pos: -14.5,25.5 parent: 31 type: Transform - - uid: 9028 + - uid: 7660 components: - - pos: 54.455875,-22.53784 + - pos: -15.5,25.5 parent: 31 type: Transform -- proto: ClothingNeckScarfStripedRed - entities: - - uid: 3859 + - uid: 7661 components: - - pos: 24.51451,-9.514836 + - pos: -16.5,25.5 parent: 31 type: Transform -- proto: ClothingNeckScarfStripedZebra - entities: - - uid: 7845 + - uid: 7662 components: - - pos: -17.553503,-8.623332 + - pos: -17.5,25.5 parent: 31 type: Transform -- proto: ClothingNeckStethoscope - entities: - - uid: 4182 + - uid: 7664 components: - - pos: 6.4675617,-7.431054 + - pos: -18.5,18.5 parent: 31 type: Transform -- proto: ClothingNeckTieRed - entities: - - uid: 7109 + - uid: 7665 components: - - flags: InContainer - type: MetaData - - parent: 7110 + - pos: -18.5,19.5 + parent: 31 type: Transform - - canCollide: False - type: Physics - - uid: 7856 + - uid: 7666 components: - - flags: InContainer - type: MetaData - - parent: 7853 + - pos: -18.5,20.5 + parent: 31 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterArmorBasic - entities: - - uid: 1206 + - uid: 7667 components: - - pos: -11.694116,19.672714 + - pos: -18.5,21.5 parent: 31 type: Transform - - uid: 9622 + - uid: 7668 components: - - pos: -11.490991,19.672714 + - pos: -18.5,22.5 parent: 31 type: Transform -- proto: ClothingOuterArmorBulletproof - entities: - - uid: 36 + - uid: 7669 components: - - pos: -11.170591,19.266254 + - pos: -18.5,23.5 parent: 31 type: Transform - - uid: 42 + - uid: 7670 components: - - pos: -11.436216,19.297504 + - pos: -18.5,24.5 parent: 31 type: Transform - - uid: 43 + - uid: 7779 components: - - pos: -11.733091,19.297504 + - pos: 14.5,-25.5 parent: 31 type: Transform -- proto: ClothingOuterArmorReflective - entities: - - uid: 8020 + - uid: 7874 components: - - pos: -11.209741,19.672714 + - pos: 7.5,-20.5 parent: 31 type: Transform -- proto: ClothingOuterCoatBomber - entities: - - uid: 4659 + - uid: 7875 components: - - pos: 29.559704,-19.508926 + - pos: 9.5,-20.5 parent: 31 type: Transform -- proto: ClothingOuterCoatGentle - entities: - - uid: 7987 + - uid: 7876 components: - - pos: -25.508326,-13.470716 + - pos: 8.5,-20.5 parent: 31 type: Transform -- proto: ClothingOuterCoatInspector - entities: - - uid: 7480 + - uid: 7877 components: - - pos: -21.602036,17.352358 + - pos: 10.5,-20.5 parent: 31 type: Transform - - uid: 7854 + - uid: 7878 components: - - flags: InContainer - type: MetaData - - parent: 7853 + - pos: 11.5,-20.5 + parent: 31 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterCoatJensen - entities: - - uid: 7209 + - uid: 7879 components: - - pos: -31.454058,8.498672 + - pos: 12.5,-20.5 parent: 31 type: Transform -- proto: ClothingOuterCoatLab - entities: - - uid: 4231 + - uid: 7880 components: - - flags: InContainer - type: MetaData - - parent: 7110 + - pos: 14.5,-20.5 + parent: 31 type: Transform - - canCollide: False - type: Physics -- proto: ClothingOuterCoatPirate - entities: - - uid: 7065 + - uid: 7881 components: - - pos: 36.486282,-15.465345 + - pos: 14.5,-21.5 parent: 31 type: Transform -- proto: ClothingOuterHardsuitBasic - entities: - - uid: 3849 + - uid: 7882 components: - - flags: InContainer - type: MetaData - - parent: 7057 + - pos: 14.5,-22.5 + parent: 31 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterWinterCap - entities: - - uid: 9030 + - uid: 7883 components: - - pos: 10.618964,23.658073 + - pos: 14.5,-23.5 parent: 31 type: Transform -- proto: ClothingOuterWinterCE - entities: - - uid: 9035 + - uid: 7884 components: - - pos: 38.383812,-0.3536343 + - pos: 14.5,-24.5 parent: 31 type: Transform -- proto: ClothingOuterWinterCentcom - entities: - - uid: 9036 + - uid: 7885 components: - - pos: 49.408,-22.48963 + - pos: 15.5,-25.5 parent: 31 type: Transform -- proto: ClothingOuterWinterCMO - entities: - - uid: 9034 + - uid: 7886 components: - - pos: 24.55491,-12.378407 + - pos: 17.5,-25.5 parent: 31 type: Transform -- proto: ClothingOuterWinterHoP - entities: - - uid: 634 + - uid: 7887 components: - - pos: 7.581337,19.083351 + - pos: 16.5,-25.5 parent: 31 type: Transform -- proto: ClothingOuterWinterHoS - entities: - - uid: 9031 + - uid: 7888 components: - - pos: -7.499014,20.716234 + - pos: 18.5,-25.5 parent: 31 type: Transform -- proto: ClothingOuterWinterQM - entities: - - uid: 4699 + - uid: 7889 components: - - pos: 28.693995,8.425725 + - pos: 19.5,-25.5 parent: 31 type: Transform -- proto: ClothingOuterWinterRD - entities: - - uid: 7368 + - uid: 7890 components: - - pos: -4.5033793,-23.022738 + - pos: 20.5,-25.5 parent: 31 type: Transform -- proto: ClothingShoesBootsMag - entities: - - uid: 1014 + - uid: 7891 components: - - pos: 10.330068,10.623066 + - pos: 21.5,-25.5 parent: 31 type: Transform - - uid: 1541 + - uid: 7892 components: - - pos: 10.3269205,11.58763 + - pos: 22.5,-25.5 parent: 31 type: Transform - - uid: 3136 + - uid: 7893 components: - - pos: 10.6550455,11.540755 + - pos: 22.5,-24.5 parent: 31 type: Transform - - uid: 7151 + - uid: 7894 components: - - pos: 10.642568,10.482441 + - pos: 22.5,-23.5 parent: 31 type: Transform -- proto: ClothingShoesBootsPerformer - entities: - - uid: 8319 + - uid: 7915 components: - - pos: 29.355263,-21.266848 + - pos: 22.5,-18.5 parent: 31 type: Transform -- proto: ClothingShoesFlippers - entities: - - uid: 7969 + - uid: 7916 components: - - pos: 37.55209,-3.407352 + - pos: 22.5,-17.5 parent: 31 type: Transform -- proto: ClothingShoesLeather - entities: - - uid: 7098 + - uid: 7917 components: - - flags: InContainer - type: MetaData - - parent: 7110 + - pos: 23.5,-17.5 + parent: 31 type: Transform - - canCollide: False - type: Physics -- proto: ClothingShoeSlippersDuck - entities: - - uid: 7858 + - uid: 7918 components: - - pos: 26.546747,-24.62174 + - pos: 24.5,-17.5 parent: 31 type: Transform - - uid: 9957 + - uid: 7919 components: - - pos: -24.138485,-21.92873 + - pos: 25.5,-17.5 parent: 31 type: Transform -- proto: ClothingUniformColorRainbow - entities: - - uid: 8410 + - uid: 7920 components: - - pos: 37.603355,-3.5149672 + - pos: 26.5,-17.5 parent: 31 type: Transform -- proto: ClothingUniformJumpskirtDetective - entities: - - uid: 7972 + - uid: 7921 components: - - pos: 14.57035,20.510712 + - pos: 26.5,-16.5 parent: 31 type: Transform -- proto: ClothingUniformJumpskirtParamedic - entities: - - uid: 7250 + - uid: 7922 components: - - pos: 22.678684,-4.4433937 + - pos: 26.5,-15.5 parent: 31 type: Transform - - uid: 7264 + - uid: 7923 components: - - pos: 22.678684,-4.4433937 + - pos: 26.5,-14.5 parent: 31 type: Transform -- proto: ClothingUniformJumpsuitAncient - entities: - - uid: 8953 + - uid: 7924 components: - - pos: -27.587215,7.5242066 + - pos: 26.5,-13.5 parent: 31 type: Transform -- proto: ClothingUniformJumpsuitColorBlack - entities: - - uid: 1682 + - uid: 7926 components: - - pos: 28.58439,13.294349 + - pos: 38.5,-6.5 parent: 31 type: Transform -- proto: ClothingUniformJumpsuitDetective - entities: - - uid: 7108 + - uid: 7927 components: - - flags: InContainer - type: MetaData - - parent: 7110 + - pos: 38.5,-7.5 + parent: 31 type: Transform - - canCollide: False - type: Physics - - uid: 7458 + - uid: 7928 components: - - pos: -23.237986,17.742983 + - pos: 37.5,-7.5 parent: 31 type: Transform - - uid: 7973 + - uid: 7929 components: - - pos: 14.460975,20.651337 + - pos: 36.5,-7.5 parent: 31 type: Transform -- proto: ClothingUniformJumpsuitDetectiveGrey - entities: - - uid: 9190 + - uid: 7930 components: - - pos: -23.456736,17.524233 + - pos: 34.5,-7.5 parent: 31 type: Transform -- proto: ClothingUniformJumpsuitParamedic - entities: - - uid: 7255 + - uid: 7931 components: - - pos: 22.44431,-4.2715187 + - pos: 35.5,-7.5 parent: 31 type: Transform - - uid: 7269 + - uid: 7932 components: - - pos: 22.44431,-4.2715187 + - pos: 33.5,-7.5 parent: 31 type: Transform -- proto: ComfyChair - entities: - - uid: 268 + - uid: 7933 components: - - rot: 1.5707963267948966 rad - pos: -2.5,-31.5 + - pos: 32.5,-7.5 parent: 31 type: Transform - - uid: 478 + - uid: 7934 components: - - pos: 10.5,24.5 + - pos: 31.5,-7.5 parent: 31 type: Transform - - uid: 736 + - uid: 7935 components: - - pos: 7.5,25.5 + - pos: 30.5,-7.5 parent: 31 type: Transform - - edge: 0 - type: Construction - - uid: 1209 + - uid: 7936 components: - - pos: -30.5,-4.5 + - pos: 29.5,-7.5 parent: 31 type: Transform - - uid: 1715 + - uid: 7937 components: - - rot: 3.141592653589793 rad - pos: 38.5,-1.5 + - pos: 28.5,-7.5 parent: 31 type: Transform - - uid: 2131 + - uid: 7938 components: - - rot: 3.141592653589793 rad - pos: -10.5,-7.5 + - pos: 27.5,-7.5 parent: 31 type: Transform - - uid: 2439 + - uid: 7939 components: - - rot: 3.141592653589793 rad - pos: 0.5,-6.5 + - pos: 26.5,-7.5 parent: 31 type: Transform - - uid: 2824 + - uid: 7951 components: - - rot: -1.5707963267948966 rad - pos: 0.5,0.5 + - pos: 23.5,-13.5 parent: 31 type: Transform - - uid: 2893 + - uid: 7974 components: - - rot: 3.141592653589793 rad - pos: 8.5,17.5 + - pos: 24.5,-2.5 parent: 31 type: Transform - - uid: 3594 + - uid: 7975 components: - - rot: 3.141592653589793 rad - pos: -4.5,0.5 + - pos: 23.5,-2.5 parent: 31 type: Transform - - uid: 4007 + - uid: 7976 components: - - pos: 0.5,-4.5 + - pos: 22.5,-2.5 parent: 31 type: Transform - - uid: 4164 + - uid: 7978 components: - - pos: -0.5,1.5 + - pos: 21.5,-1.5 parent: 31 type: Transform - - uid: 4252 + - uid: 7979 components: - - rot: 1.5707963267948966 rad - pos: -38.5,19.5 + - pos: 21.5,-0.5 parent: 31 type: Transform - - uid: 4882 + - uid: 7980 components: - - pos: -8.5,21.5 + - pos: 21.5,0.5 parent: 31 type: Transform - - uid: 5065 + - uid: 7981 components: - - rot: 3.141592653589793 rad - pos: 7.5,23.5 + - pos: 21.5,1.5 parent: 31 type: Transform - - uid: 5221 + - uid: 8043 components: - - rot: -1.5707963267948966 rad - pos: -0.5,-31.5 + - pos: 20.5,-27.5 parent: 31 type: Transform - - uid: 7165 + - uid: 8049 components: - - pos: 12.5,-30.5 + - pos: 78.5,-7.5 parent: 31 type: Transform - - uid: 7701 + - uid: 8089 components: - - pos: -36.5,14.5 + - rot: 1.5707963267948966 rad + pos: 75.5,-4.5 parent: 31 type: Transform - - uid: 7703 + - uid: 8090 components: - - rot: -1.5707963267948966 rad - pos: -23.5,-23.5 + - rot: 1.5707963267948966 rad + pos: 74.5,-4.5 parent: 31 type: Transform - - uid: 7851 + - uid: 8091 components: - - pos: 27.5,-24.5 + - rot: 1.5707963267948966 rad + pos: 73.5,-4.5 parent: 31 type: Transform - - uid: 8721 + - uid: 8092 components: - rot: 1.5707963267948966 rad - pos: -36.5,-28.5 + pos: 72.5,-4.5 parent: 31 type: Transform - - uid: 8722 + - uid: 8093 components: - - rot: 3.141592653589793 rad - pos: -35.5,-29.5 + - rot: 1.5707963267948966 rad + pos: 71.5,-4.5 parent: 31 type: Transform - - uid: 8723 + - uid: 8094 components: - - rot: 3.141592653589793 rad - pos: -34.5,-29.5 + - rot: 1.5707963267948966 rad + pos: 70.5,-4.5 parent: 31 type: Transform - - uid: 9601 + - uid: 8095 components: - - rot: -1.5707963267948966 rad - pos: -35.5,19.5 + - rot: 1.5707963267948966 rad + pos: 69.5,-4.5 parent: 31 type: Transform - - uid: 9602 + - uid: 8096 components: - - rot: 3.141592653589793 rad - pos: -36.5,18.5 + - rot: 1.5707963267948966 rad + pos: 68.5,-4.5 parent: 31 type: Transform - - uid: 9603 + - uid: 8097 components: - - rot: 3.141592653589793 rad - pos: -37.5,18.5 + - rot: 1.5707963267948966 rad + pos: 67.5,-4.5 parent: 31 type: Transform -- proto: ComputerAlert - entities: - - uid: 4307 + - uid: 8098 components: - - pos: 42.5,13.5 + - rot: 1.5707963267948966 rad + pos: 66.5,-4.5 parent: 31 type: Transform - - uid: 8800 + - uid: 8099 components: - - rot: -1.5707963267948966 rad - pos: 7.5,31.5 + - rot: 1.5707963267948966 rad + pos: 65.5,-4.5 parent: 31 type: Transform -- proto: ComputerAnalysisConsole - entities: - - uid: 8321 + - uid: 8100 components: - - rot: 3.141592653589793 rad - pos: -15.5,-22.5 + - rot: 1.5707963267948966 rad + pos: 64.5,-4.5 parent: 31 type: Transform - - linkedPorts: - 8320: - - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver - type: DeviceLinkSource -- proto: ComputerCargoBounty - entities: - - uid: 7126 + - uid: 8101 components: - - rot: -1.5707963267948966 rad - pos: 23.5,11.5 + - rot: 1.5707963267948966 rad + pos: 64.5,-3.5 parent: 31 type: Transform -- proto: ComputerCargoOrders - entities: - - uid: 4309 + - uid: 8102 components: - - rot: -1.5707963267948966 rad - pos: 16.5,9.5 + - rot: 1.5707963267948966 rad + pos: 64.5,-2.5 parent: 31 type: Transform -- proto: ComputerCargoShuttle - entities: - - uid: 3115 + - uid: 8103 components: - - pos: 27.5,10.5 + - rot: 1.5707963267948966 rad + pos: 64.5,-1.5 parent: 31 type: Transform - - uid: 6567 + - uid: 8104 components: - - rot: -1.5707963267948966 rad - pos: 22.5,9.5 + - rot: 1.5707963267948966 rad + pos: 64.5,-0.5 parent: 31 type: Transform -- proto: ComputerComms - entities: - - uid: 1370 + - uid: 8105 components: - rot: 1.5707963267948966 rad - pos: 6.5,23.5 + pos: 64.5,0.5 parent: 31 type: Transform - - uid: 2721 + - uid: 8106 components: - - pos: 3.5,32.5 + - rot: 1.5707963267948966 rad + pos: 64.5,1.5 parent: 31 type: Transform -- proto: ComputerCrewMonitoring - entities: - - uid: 994 + - uid: 8119 components: - - pos: 23.5,-12.5 + - pos: 56.5,-10.5 parent: 31 type: Transform - - uid: 2448 + - uid: 8139 components: - - pos: 0.5,32.5 + - pos: 47.5,-8.5 parent: 31 type: Transform - - uid: 6512 + - uid: 8151 components: - - pos: 12.5,-2.5 + - pos: 56.5,7.5 parent: 31 type: Transform -- proto: ComputerCriminalRecords - entities: - - uid: 8314 + - uid: 8655 components: - - rot: 3.141592653589793 rad - pos: -0.5,7.5 + - pos: -38.5,-28.5 parent: 31 type: Transform - - uid: 8803 + - uid: 8656 components: - - pos: 8.5,30.5 + - pos: -39.5,-28.5 parent: 31 type: Transform -- proto: ComputerFrame - entities: - - uid: 4137 + - uid: 8657 components: - - rot: 1.5707963267948966 rad - pos: 7.5,-15.5 + - pos: -40.5,-28.5 parent: 31 type: Transform -- proto: ComputerId - entities: - - uid: 810 + - uid: 8658 components: - - pos: 7.5,21.5 + - pos: -41.5,-28.5 parent: 31 type: Transform - - uid: 870 + - uid: 8659 components: - - rot: -1.5707963267948966 rad - pos: 4.5,31.5 + - pos: -42.5,-28.5 parent: 31 type: Transform - - uid: 2807 + - uid: 8660 components: - - pos: 6.5,26.5 + - pos: -32.5,-38.5 parent: 31 type: Transform -- proto: ComputerMedicalRecords - entities: - - uid: 3235 + - uid: 8661 components: - - rot: 1.5707963267948966 rad - pos: -0.5,31.5 + - pos: -32.5,-37.5 parent: 31 type: Transform -- proto: ComputerPowerMonitoring - entities: - - uid: 4306 + - uid: 8662 components: - - pos: 42.5,4.5 + - pos: -32.5,-36.5 parent: 31 type: Transform -- proto: ComputerRadar - entities: - - uid: 2447 + - uid: 8663 components: - - pos: 6.5,32.5 + - pos: -32.5,-35.5 parent: 31 type: Transform - - uid: 10109 + - uid: 8664 components: - - pos: 34.5,35.5 + - pos: -32.5,-34.5 parent: 31 type: Transform -- proto: ComputerResearchAndDevelopment - entities: - - uid: 897 + - uid: 8909 components: - - rot: 1.5707963267948966 rad - pos: -5.5,-15.5 + - rot: -1.5707963267948966 rad + pos: -6.5,25.5 parent: 31 type: Transform - - uid: 7367 + - uid: 9007 components: - - pos: -5.5,-22.5 + - pos: -22.5,-26.5 parent: 31 type: Transform - - uid: 9703 + - uid: 9008 components: - - rot: 1.5707963267948966 rad - pos: -9.5,-31.5 + - pos: -23.5,-26.5 parent: 31 type: Transform -- proto: ComputerSalvageExpedition - entities: - - uid: 9136 + - uid: 9009 components: - - pos: 23.5,17.5 + - pos: -30.5,-26.5 parent: 31 type: Transform -- proto: ComputerShuttleCargo - entities: - - uid: 6174 + - uid: 9010 components: - - pos: 22.5,13.5 + - pos: -29.5,-26.5 parent: 31 type: Transform -- proto: ComputerShuttleSalvage - entities: - - uid: 2697 + - uid: 9060 components: - - pos: 27.5,21.5 + - pos: 16.5,21.5 parent: 31 type: Transform -- proto: ComputerSolarControl - entities: - - uid: 4305 + - uid: 9061 components: - - pos: 41.5,4.5 + - pos: 53.5,6.5 parent: 31 type: Transform - - uid: 5184 + - uid: 9062 components: - - pos: -21.5,25.5 + - pos: 53.5,7.5 parent: 31 type: Transform - - uid: 5250 + - uid: 9063 components: - - pos: 16.5,-27.5 + - pos: 60.5,7.5 parent: 31 type: Transform -- proto: ComputerStationRecords - entities: - - uid: 4204 + - uid: 9064 components: - - rot: -1.5707963267948966 rad - pos: -5.5,16.5 + - pos: 59.5,7.5 parent: 31 type: Transform - - uid: 9752 + - uid: 9263 components: - - rot: 1.5707963267948966 rad - pos: -2.5,29.5 + - rot: 3.141592653589793 rad + pos: 33.5,36.5 parent: 31 type: Transform -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 534 + - uid: 9280 components: - - rot: -1.5707963267948966 rad - pos: 9.5,29.5 + - pos: -1.5,-31.5 parent: 31 type: Transform -- proto: ComputerSurveillanceWirelessCameraMonitor - entities: - - uid: 10270 + - uid: 9281 components: - - pos: -6.5,31.5 + - pos: -0.5,-31.5 parent: 31 type: Transform -- proto: ContainmentFieldGenerator - entities: - - uid: 4559 + - uid: 9285 components: - - pos: 75.5,-1.5 + - pos: 0.5,-31.5 parent: 31 type: Transform - - uid: 4561 + - uid: 9375 components: - - pos: 67.5,-1.5 + - rot: 3.141592653589793 rad + pos: 53.5,5.5 parent: 31 type: Transform - - uid: 6299 + - uid: 9451 components: - - pos: 67.5,6.5 + - pos: -22.5,-32.5 parent: 31 type: Transform - - uid: 6321 + - uid: 9452 components: - - pos: 75.5,6.5 + - pos: -23.5,-32.5 parent: 31 type: Transform - - uid: 6469 + - uid: 9456 components: - - pos: 40.5,8.5 + - pos: -19.5,-25.5 parent: 31 type: Transform - - uid: 6639 + - uid: 9457 components: - - pos: 39.5,8.5 + - pos: -19.5,-24.5 parent: 31 type: Transform -- proto: ConveyorBelt - entities: - - uid: 1771 + - uid: 9458 components: - - pos: 20.5,20.5 + - pos: -19.5,-23.5 parent: 31 type: Transform - - links: - - 1084 - type: DeviceLinkSink - - uid: 3387 + - uid: 9459 components: - - pos: 20.5,21.5 + - pos: -19.5,-22.5 parent: 31 type: Transform - - links: - - 1084 - type: DeviceLinkSink - - uid: 3548 + - uid: 9460 components: - - pos: 20.5,23.5 + - pos: -19.5,-21.5 parent: 31 type: Transform - - links: - - 1084 - type: DeviceLinkSink - - uid: 3549 + - uid: 9461 components: - - pos: 20.5,24.5 + - pos: -19.5,-20.5 parent: 31 type: Transform - - links: - - 1084 - type: DeviceLinkSink - - uid: 3550 + - uid: 9462 components: - - pos: 20.5,22.5 + - pos: -19.5,-19.5 parent: 31 type: Transform - - links: - - 1084 - type: DeviceLinkSink - - uid: 7532 + - uid: 9463 components: - - rot: 1.5707963267948966 rad - pos: -22.5,-15.5 + - pos: -19.5,-18.5 parent: 31 type: Transform - - links: - - 7537 - type: DeviceLinkSink - - uid: 7533 + - uid: 9597 components: - - rot: 1.5707963267948966 rad - pos: -23.5,-15.5 + - rot: -1.5707963267948966 rad + pos: -7.5,25.5 parent: 31 type: Transform - - links: - - 7537 - type: DeviceLinkSink - - uid: 7534 + - uid: 9706 components: - - rot: 1.5707963267948966 rad - pos: -24.5,-15.5 + - pos: 55.5,6.5 parent: 31 type: Transform - - links: - - 7537 - type: DeviceLinkSink - - uid: 7535 + - uid: 9728 components: - - rot: 1.5707963267948966 rad - pos: -25.5,-15.5 + - pos: 53.5,-0.5 parent: 31 type: Transform - - links: - - 7537 - type: DeviceLinkSink - - uid: 7538 + - uid: 9763 components: - - rot: -1.5707963267948966 rad - pos: -26.5,-15.5 + - pos: -17.5,-35.5 parent: 31 type: Transform - - links: - - 7537 - type: DeviceLinkSink - - uid: 7539 + - uid: 9764 components: - - rot: -1.5707963267948966 rad - pos: -27.5,-15.5 + - pos: -16.5,-35.5 parent: 31 type: Transform - - links: - - 7537 - type: DeviceLinkSink - - uid: 7540 + - uid: 9766 components: - - rot: -1.5707963267948966 rad - pos: -28.5,-15.5 + - pos: -15.5,-35.5 parent: 31 type: Transform - - links: - - 7537 - type: DeviceLinkSink - - uid: 7550 + - uid: 9767 components: - - pos: 20.5,19.5 + - pos: -14.5,-35.5 parent: 31 type: Transform - - links: - - 1084 - type: DeviceLinkSink - - uid: 8899 + - uid: 9768 components: - - pos: 20.5,18.5 + - pos: -18.5,-35.5 parent: 31 type: Transform - - links: - - 1084 - type: DeviceLinkSink - - uid: 9138 + - uid: 9770 components: - - rot: 3.141592653589793 rad - pos: 23.5,27.5 + - pos: -3.5,-38.5 parent: 31 type: Transform - - links: - - 7945 - type: DeviceLinkSink - - uid: 9139 + - uid: 9771 components: - - rot: 3.141592653589793 rad - pos: 23.5,26.5 + - pos: -2.5,-38.5 parent: 31 type: Transform - - links: - - 7945 - type: DeviceLinkSink - - uid: 9754 + - uid: 9772 components: - - pos: -23.5,-15.5 + - pos: -1.5,-38.5 parent: 31 type: Transform - - links: - - 9756 - type: DeviceLinkSink - - uid: 9755 + - uid: 9773 components: - - pos: -23.5,-16.5 + - pos: -0.5,-38.5 parent: 31 type: Transform - - links: - - 9756 - type: DeviceLinkSink - - uid: 10045 + - uid: 9774 components: - - rot: 3.141592653589793 rad - pos: 22.5,25.5 + - pos: 0.5,-38.5 parent: 31 type: Transform - - links: - - 7945 - type: DeviceLinkSink - - uid: 10046 + - uid: 9775 components: - - pos: 19.5,28.5 + - pos: 1.5,-38.5 parent: 31 type: Transform - - links: - - 1084 - type: DeviceLinkSink - - uid: 10047 + - uid: 9776 components: - - rot: 3.141592653589793 rad - pos: 22.5,18.5 + - pos: 2.5,-38.5 parent: 31 type: Transform - - links: - - 7945 - type: DeviceLinkSink - - uid: 10048 + - uid: 9777 components: - - rot: 3.141592653589793 rad - pos: 22.5,19.5 + - pos: -4.5,-38.5 parent: 31 type: Transform - - links: - - 7945 - type: DeviceLinkSink - - uid: 10049 + - uid: 9778 components: - - rot: 3.141592653589793 rad - pos: 22.5,20.5 + - pos: 8.5,-32.5 parent: 31 type: Transform - - links: - - 7945 - type: DeviceLinkSink - - uid: 10050 + - uid: 9779 components: - - rot: 3.141592653589793 rad - pos: 22.5,21.5 + - pos: 8.5,-33.5 parent: 31 type: Transform - - links: - - 7945 - type: DeviceLinkSink - - uid: 10051 + - uid: 9780 components: - - rot: 3.141592653589793 rad - pos: 22.5,22.5 + - pos: 8.5,-34.5 parent: 31 type: Transform - - links: - - 7945 - type: DeviceLinkSink - - uid: 10052 + - uid: 9781 components: - - rot: 3.141592653589793 rad - pos: 22.5,23.5 + - pos: 8.5,-35.5 parent: 31 type: Transform - - links: - - 7945 - type: DeviceLinkSink - - uid: 10053 + - uid: 9784 components: - - rot: 3.141592653589793 rad - pos: 22.5,24.5 + - pos: 5.5,-38.5 parent: 31 type: Transform - - links: - - 1084 - - 7945 - type: DeviceLinkSink - - uid: 10054 + - uid: 9785 components: - - rot: 3.141592653589793 rad - pos: 23.5,28.5 + - pos: 6.5,-38.5 parent: 31 type: Transform - - links: - - 7945 - type: DeviceLinkSink - - uid: 10089 + - uid: 9943 components: - - pos: 20.5,25.5 + - rot: 1.5707963267948966 rad + pos: -23.5,-18.5 parent: 31 type: Transform - - links: - - 1084 - type: DeviceLinkSink - - uid: 10090 + - uid: 9946 components: - - pos: 20.5,26.5 + - rot: 1.5707963267948966 rad + pos: -24.5,-18.5 parent: 31 type: Transform - - links: - - 1084 - type: DeviceLinkSink - - uid: 10091 + - uid: 9954 components: - - pos: 19.5,27.5 + - rot: 1.5707963267948966 rad + pos: -25.5,-18.5 parent: 31 type: Transform - - links: - - 1084 - type: DeviceLinkSink - - uid: 10092 + - uid: 9980 components: - rot: 1.5707963267948966 rad - pos: 19.5,26.5 + pos: -26.5,-18.5 parent: 31 type: Transform - - links: - - 1084 - type: DeviceLinkSink - - uid: 10093 + - uid: 9981 components: - rot: 1.5707963267948966 rad - pos: 22.5,26.5 + pos: -27.5,-18.5 parent: 31 type: Transform - - links: - - 7945 - type: DeviceLinkSink -- proto: CornSeeds - entities: - - uid: 10139 + - uid: 9982 components: - - pos: 50.18672,-26.975147 + - rot: 1.5707963267948966 rad + pos: -28.5,-18.5 parent: 31 type: Transform - - uid: 10140 + - uid: 10011 components: - - pos: 50.26774,-27.090889 + - rot: -1.5707963267948966 rad + pos: -28.5,-16.5 parent: 31 type: Transform -- proto: CrateArtifactContainer - entities: - - uid: 5225 + - uid: 10231 components: - - pos: -17.5,-21.5 + - pos: 50.5,-9.5 parent: 31 type: Transform -- proto: CrateCoffin - entities: - - uid: 9634 + - uid: 10253 components: - - pos: -36.5,15.5 + - pos: 52.5,-1.5 parent: 31 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrateEmptySpawner - entities: - - uid: 3135 + - uid: 10254 components: - - pos: -17.5,13.5 + - pos: 52.5,-0.5 parent: 31 type: Transform - - uid: 7820 + - uid: 10277 components: - - pos: -27.5,-17.5 + - pos: -30.5,-14.5 parent: 31 type: Transform - - uid: 8045 + - uid: 10278 components: - - pos: 10.5,13.5 + - pos: -30.5,-15.5 parent: 31 type: Transform - - uid: 9274 + - uid: 10279 components: - - pos: -27.5,-18.5 + - pos: -30.5,-16.5 parent: 31 type: Transform -- proto: CrateEngineeringAMEJar - entities: - - uid: 6626 + - uid: 10503 components: - - pos: 50.5,8.5 + - rot: 3.141592653589793 rad + pos: 35.5,37.5 parent: 31 type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- proto: CrateEngineeringAMEShielding - entities: - - uid: 6603 + - uid: 10504 components: - - pos: 50.5,9.5 + - rot: 3.141592653589793 rad + pos: 35.5,36.5 parent: 31 type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 7777 - - 3475 - - 3476 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: CrateEngineeringCableBulk - entities: - - uid: 1554 + - uid: 10505 components: - - pos: 47.5,5.5 + - rot: 3.141592653589793 rad + pos: 36.5,36.5 parent: 31 type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- proto: CrateEngineeringCableHV - entities: - - uid: 5292 + - uid: 10506 components: - - pos: 14.5,-27.5 + - rot: 3.141592653589793 rad + pos: 36.5,35.5 parent: 31 type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- proto: CrateFilledSpawner - entities: - - uid: 1637 + - uid: 10507 components: - - pos: 22.5,7.5 + - rot: 3.141592653589793 rad + pos: 36.5,34.5 parent: 31 type: Transform - - uid: 7139 + - uid: 10508 components: - - pos: 19.5,7.5 + - rot: 3.141592653589793 rad + pos: 32.5,36.5 parent: 31 type: Transform - - uid: 7140 + - uid: 10509 components: - - pos: 20.5,7.5 + - rot: 3.141592653589793 rad + pos: 32.5,35.5 parent: 31 type: Transform - - uid: 7141 + - uid: 10510 components: - - pos: 21.5,7.5 + - rot: 3.141592653589793 rad + pos: 32.5,34.5 parent: 31 type: Transform -- proto: CrateNPCChicken - entities: - - uid: 9915 + - uid: 10511 components: - - pos: 51.5,-22.5 + - rot: 3.141592653589793 rad + pos: 33.5,34.5 parent: 31 type: Transform -- proto: CrateNPCHamlet - entities: - - uid: 2458 + - uid: 10512 components: - - pos: 0.5,29.5 + - rot: 3.141592653589793 rad + pos: 34.5,34.5 parent: 31 type: Transform -- proto: CrateNPCPenguin - entities: - - uid: 9916 + - uid: 10513 components: - - pos: 47.5,-22.5 + - rot: 3.141592653589793 rad + pos: 35.5,34.5 parent: 31 type: Transform - - air: - volume: 800 - immutable: False - temperature: 293.14987 - moles: - - 6.983961 - - 26.272997 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CratePrivateSecure - entities: - - uid: 2363 + - uid: 10514 components: - - pos: -2.5,16.5 + - rot: 3.141592653589793 rad + pos: 34.5,33.5 parent: 31 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2480 - - 2481 - - 3041 - - 3485 - - 3831 - - 3832 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: CrateTrashCart - entities: - - uid: 6904 + - uid: 10515 components: - - pos: 23.5,-18.5 + - rot: 3.141592653589793 rad + pos: 34.5,32.5 parent: 31 type: Transform - - uid: 7087 + - uid: 10516 components: - - pos: -7.5,-12.5 + - rot: 3.141592653589793 rad + pos: 34.5,31.5 parent: 31 type: Transform - - uid: 7094 + - uid: 10517 components: - - pos: 45.5,-0.5 + - rot: 3.141592653589793 rad + pos: 34.5,30.5 parent: 31 type: Transform -- proto: CrayonBox - entities: - - uid: 7355 + - uid: 10518 components: - - pos: -17.731161,-9.236897 + - pos: 60.5,11.5 parent: 31 type: Transform -- proto: CrayonRainbow - entities: - - uid: 7635 + - uid: 10519 components: - - flags: InContainer - type: MetaData - - parent: 7057 + - pos: 31.5,19.5 + parent: 31 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: Crematorium - entities: - - uid: 9134 + - uid: 10653 components: - - rot: 3.141592653589793 rad - pos: -31.5,16.5 + - pos: 45.5,-11.5 parent: 31 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrewMonitoringServer - entities: - - uid: 10268 + - uid: 10654 components: - - pos: -6.5,32.5 + - pos: 45.5,-10.5 parent: 31 type: Transform -- proto: CrowbarRed - entities: - - uid: 1483 + - uid: 10655 components: - - pos: 7.5275726,-17.589449 + - pos: 45.5,-9.5 parent: 31 type: Transform - - uid: 8834 + - uid: 10656 components: - - pos: 8.498364,31.458696 + - pos: 45.5,-8.5 parent: 31 type: Transform - - uid: 8937 + - uid: 10657 components: - - pos: -0.63442147,-17.450098 + - pos: 45.5,-7.5 parent: 31 type: Transform - - uid: 9114 + - uid: 10711 components: - - pos: -10.463156,-6.5336485 + - pos: 31.5,27.5 parent: 31 type: Transform -- proto: CryoPod - entities: - - uid: 2199 + - uid: 10799 components: - - pos: 17.5,-20.5 + - pos: 25.5,-13.5 parent: 31 type: Transform -- proto: d20Dice - entities: - - uid: 2357 + - uid: 10883 components: - - pos: -23.834803,-5.3811545 + - pos: 47.5,-10.5 parent: 31 type: Transform - - uid: 4723 + - uid: 10884 components: - - pos: 11.36982,-23.570984 + - pos: 48.5,-10.5 parent: 31 type: Transform -- proto: d6Dice - entities: - - uid: 4249 + - uid: 10885 components: - - pos: 10.80732,-23.477234 + - pos: 49.5,-10.5 parent: 31 type: Transform - - uid: 7292 + - uid: 10886 components: - - pos: 10.46357,-23.664734 + - pos: 50.5,-10.5 parent: 31 type: Transform -- proto: d8Dice - entities: - - uid: 2358 + - uid: 10888 components: - - pos: -24.287928,-6.3967795 + - pos: 50.5,-11.5 parent: 31 type: Transform - - uid: 7293 + - uid: 10891 components: - - pos: 11.27607,-24.265812 + - pos: 56.5,-8.5 parent: 31 type: Transform -- proto: DefibrillatorCabinetFilled - entities: - - uid: 8307 + - uid: 10893 components: - - rot: 3.141592653589793 rad - pos: -0.5,11.5 + - pos: 55.5,-9.5 parent: 31 type: Transform - - uid: 9531 + - uid: 11018 components: - - pos: 8.5,-12.5 + - rot: -1.5707963267948966 rad + pos: -5.5,25.5 parent: 31 type: Transform - - uid: 9833 + - uid: 11019 components: - rot: -1.5707963267948966 rad - pos: 20.5,-11.5 + pos: -4.5,25.5 parent: 31 type: Transform - - uid: 9834 + - uid: 11020 components: - - pos: 1.5,29.5 + - rot: -1.5707963267948966 rad + pos: -4.5,24.5 parent: 31 type: Transform - - uid: 9835 + - uid: 11021 components: - - pos: -32.5,6.5 + - rot: -1.5707963267948966 rad + pos: -4.5,23.5 parent: 31 type: Transform -- proto: DiceBag - entities: - - uid: 10207 + - uid: 11022 components: - - pos: 10.362751,-24.393734 + - rot: -1.5707963267948966 rad + pos: -4.5,22.5 parent: 31 type: Transform - - uid: 10208 + - uid: 11023 components: - - pos: 10.756269,-24.370586 + - rot: -1.5707963267948966 rad + pos: -4.5,21.5 parent: 31 type: Transform -- proto: DiseaseDiagnoser - entities: - - uid: 8435 + - uid: 11079 components: - - pos: 19.5,-5.5 + - pos: 53.5,18.5 parent: 31 type: Transform -- proto: DisgustingSweptSoup - entities: - - uid: 9020 + - uid: 11080 components: - - pos: -12.586034,24.541399 + - pos: 53.5,14.5 parent: 31 type: Transform -- proto: DisposalBend - entities: - - uid: 61 + - uid: 11081 components: - - rot: 3.141592653589793 rad - pos: 3.5,-27.5 + - pos: 53.5,19.5 parent: 31 type: Transform - - uid: 196 + - uid: 11082 components: - - rot: 4.71238902409608 rad - pos: -8.5,-15.5 + - pos: 52.5,19.5 parent: 31 type: Transform - - uid: 238 + - uid: 11083 components: - - rot: 4.71238902409608 rad - pos: 37.5,3.5 + - pos: 54.5,19.5 parent: 31 type: Transform - - uid: 247 + - uid: 11085 components: - - rot: 3.141592653589793 rad - pos: 12.5,-0.5 + - pos: 53.5,10.5 parent: 31 type: Transform - - uid: 310 + - uid: 11086 components: - - pos: 8.5,17.5 + - pos: 53.5,11.5 parent: 31 type: Transform - - uid: 351 + - uid: 11087 components: - - pos: -17.5,-10.5 + - pos: 53.5,12.5 parent: 31 type: Transform - - uid: 399 + - uid: 11099 components: - - rot: 3.141592697301183 rad - pos: -32.5,-10.5 + - rot: 3.141592653589793 rad + pos: 55.5,13.5 parent: 31 type: Transform - - uid: 838 + - uid: 11100 components: - - rot: 3.141592697301183 rad - pos: -29.5,10.5 + - rot: 3.141592653589793 rad + pos: 56.5,13.5 parent: 31 type: Transform - - uid: 839 + - uid: 11102 components: - - pos: -28.5,10.5 + - pos: 26.5,-3.5 parent: 31 type: Transform - - uid: 840 + - uid: 11103 components: - - rot: 1.5707963705062866 rad - pos: -8.5,-14.5 + - pos: 26.5,-4.5 parent: 31 type: Transform - - uid: 874 + - uid: 11104 components: - - pos: 7.5,11.5 + - pos: 26.5,-5.5 parent: 31 type: Transform - - uid: 3883 + - uid: 11105 components: - - pos: 3.5,28.5 + - pos: 26.5,-2.5 parent: 31 type: Transform - - uid: 4790 + - uid: 11140 components: - - pos: 6.5,-27.5 + - pos: 61.5,12.5 parent: 31 type: Transform - - uid: 5100 + - uid: 11141 components: - - pos: 14.5,-0.5 + - pos: 81.5,5.5 parent: 31 type: Transform - - uid: 5772 + - uid: 11142 components: - - rot: 1.5707963267948966 rad - pos: -11.5,-19.5 + - pos: 81.5,-4.5 parent: 31 type: Transform - - uid: 6586 + - uid: 11143 components: - - pos: 33.5,-17.5 + - pos: 64.5,12.5 parent: 31 type: Transform - - uid: 7148 + - uid: 11144 components: - - rot: 3.141592653589793 rad - pos: -11.5,-25.5 + - pos: 65.5,12.5 parent: 31 type: Transform - - uid: 7420 + - uid: 11145 components: - - pos: 18.5,-10.5 + - pos: 66.5,12.5 parent: 31 type: Transform - - uid: 7430 + - uid: 11146 components: - - rot: 3.141592653589793 rad - pos: 29.5,3.5 + - pos: 67.5,12.5 parent: 31 type: Transform - - uid: 8445 + - uid: 11147 components: - - rot: -1.5707963267948966 rad - pos: -7.5,1.5 + - pos: 68.5,12.5 parent: 31 type: Transform - - uid: 9222 + - uid: 11148 components: - - pos: -4.5,12.5 + - pos: 81.5,4.5 parent: 31 type: Transform - - uid: 9338 + - uid: 11149 components: - - rot: 3.141592653589793 rad - pos: -34.5,3.5 + - pos: 74.5,12.5 parent: 31 type: Transform - - uid: 10147 + - uid: 11150 components: - - pos: 49.5,-29.5 + - pos: 75.5,12.5 parent: 31 type: Transform - - uid: 10149 + - uid: 11151 components: - - rot: 3.141592653589793 rad - pos: 47.5,-29.5 + - pos: 76.5,12.5 parent: 31 type: Transform - - uid: 10150 + - uid: 11152 components: - - pos: 47.5,-28.5 + - pos: 77.5,12.5 parent: 31 type: Transform - - uid: 10151 + - uid: 11153 components: - - rot: 3.141592653589793 rad - pos: 45.5,-28.5 + - pos: 81.5,3.5 parent: 31 type: Transform - - uid: 10152 + - uid: 11154 components: - - pos: 45.5,-26.5 + - pos: 81.5,1.5 parent: 31 type: Transform - - uid: 10153 + - uid: 11155 components: - - rot: 3.141592653589793 rad - pos: 44.5,-26.5 + - pos: 80.5,12.5 parent: 31 type: Transform - - uid: 10154 + - uid: 11156 components: - - pos: 44.5,-25.5 + - pos: 81.5,12.5 parent: 31 type: Transform - - uid: 10167 + - uid: 11157 components: - - rot: 3.141592653589793 rad - pos: 33.5,-25.5 + - pos: 81.5,11.5 parent: 31 type: Transform - - uid: 10188 + - uid: 11158 components: - - rot: 3.141592653589793 rad - pos: 19.5,-17.5 + - pos: 81.5,10.5 parent: 31 type: Transform - - uid: 10194 + - uid: 11159 components: - - pos: 19.5,-11.5 + - pos: 81.5,9.5 parent: 31 type: Transform - - uid: 10195 + - uid: 11160 components: - - rot: 3.141592653589793 rad - pos: 18.5,-11.5 + - pos: 81.5,0.5 parent: 31 type: Transform - - uid: 10206 + - uid: 11161 components: - - rot: 1.5707963267948966 rad - pos: 10.5,-10.5 + - pos: 81.5,-0.5 parent: 31 type: Transform - - uid: 10284 + - uid: 11162 components: - - rot: 3.141592653589793 rad - pos: -35.5,5.5 + - pos: 81.5,-5.5 parent: 31 type: Transform - - uid: 10295 + - uid: 11163 components: - - rot: 1.5707963267948966 rad - pos: -35.5,15.5 + - pos: 81.5,-6.5 parent: 31 type: Transform -- proto: DisposalJunction - entities: - - uid: 173 + - uid: 11164 components: - - rot: 3.141592697301183 rad - pos: -17.5,-15.5 + - pos: 81.5,-7.5 parent: 31 type: Transform - - uid: 176 + - uid: 11165 components: - - rot: 4.71238902409608 rad - pos: -28.5,3.5 + - pos: 77.5,-7.5 parent: 31 type: Transform - - uid: 177 + - uid: 11166 components: - - rot: 4.71238902409608 rad - pos: -22.5,3.5 + - pos: 80.5,-7.5 parent: 31 type: Transform - - uid: 945 + - uid: 11167 components: - - pos: -34.5,5.5 + - pos: 67.5,-7.5 parent: 31 type: Transform - - uid: 2016 + - uid: 11168 components: - - rot: 3.141592653589793 rad - pos: 3.5,-11.5 + - pos: 76.5,-7.5 parent: 31 type: Transform - - uid: 4149 + - uid: 11169 components: - - rot: -1.5707963267948966 rad - pos: -5.5,3.5 + - pos: 75.5,-7.5 parent: 31 type: Transform - - uid: 7265 + - uid: 11170 components: - - rot: -1.5707963267948966 rad - pos: 7.5,4.5 + - pos: 74.5,-7.5 parent: 31 type: Transform - - uid: 7434 + - uid: 11171 components: - - rot: -1.5707963267948966 rad - pos: 10.5,-11.5 + - pos: 66.5,-7.5 parent: 31 type: Transform - - uid: 9587 + - uid: 11172 components: - - rot: -1.5707963267948966 rad - pos: 24.5,4.5 + - pos: 65.5,-7.5 parent: 31 type: Transform -- proto: DisposalJunctionFlipped - entities: - - uid: 25 + - uid: 11176 components: - - rot: 3.141592653589793 rad - pos: -10.5,-19.5 + - pos: 68.5,-7.5 parent: 31 type: Transform - - uid: 166 + - uid: 11189 components: - - rot: 4.71238902409608 rad - pos: 34.5,3.5 + - pos: 64.5,-7.5 parent: 31 type: Transform - - uid: 170 + - uid: 11249 components: - - pos: 3.5,4.5 + - rot: 3.141592653589793 rad + pos: -32.5,7.5 parent: 31 type: Transform - - uid: 172 +- proto: Cautery + entities: + - uid: 3040 components: - - rot: 4.71238902409608 rad - pos: -10.5,-15.5 + - pos: 19.023205,-18.200846 parent: 31 type: Transform - - uid: 175 +- proto: Chair + entities: + - uid: 423 components: - - rot: 1.5707963705062866 rad - pos: -27.5,-10.5 + - rot: 3.141592653589793 rad + pos: 16.5,15.5 parent: 31 type: Transform - - uid: 313 + - uid: 424 components: - - rot: -1.5707963267948966 rad - pos: 12.5,4.5 + - pos: 16.5,17.5 parent: 31 type: Transform - - uid: 352 + - uid: 629 components: - - rot: -1.5707963267948966 rad - pos: -7.5,3.5 + - pos: 45.5,-1.5 parent: 31 type: Transform - - uid: 365 + - uid: 654 components: - rot: -1.5707963267948966 rad - pos: -11.5,3.5 + pos: -35.5,-0.5 parent: 31 type: Transform - - uid: 1026 + - uid: 896 components: - - pos: 3.5,17.5 + - rot: 3.141592653589793 rad + pos: 45.5,-3.5 parent: 31 type: Transform - - uid: 3946 + - uid: 2003 components: - - rot: 3.141592653589793 rad - pos: 12.5,1.5 + - rot: 1.5707963267948966 rad + pos: -5.5,14.5 parent: 31 type: Transform -- proto: DisposalPipe - entities: - - uid: 56 + - uid: 2047 components: - rot: 1.5707963267948966 rad - pos: 23.5,4.5 + pos: -5.5,13.5 parent: 31 type: Transform - - uid: 169 + - uid: 2051 components: - - pos: 3.5,5.5 + - rot: 1.5707963267948966 rad + pos: -5.5,12.5 parent: 31 type: Transform - - uid: 171 + - uid: 3379 components: - - pos: 3.5,7.5 + - rot: 1.5707963267948966 rad + pos: 17.5,-13.5 parent: 31 type: Transform - - uid: 180 + - uid: 3908 components: - - pos: 3.5,8.5 + - rot: 3.141592653589793 rad + pos: 50.5,-30.5 parent: 31 type: Transform - - uid: 181 + - uid: 3961 components: - - pos: 3.5,9.5 + - rot: 1.5707963267948966 rad + pos: 17.5,-12.5 parent: 31 type: Transform - - uid: 182 + - uid: 4192 components: - - rot: 3.141592697301183 rad - pos: -17.5,-14.5 + - rot: -1.5707963267948966 rad + pos: 4.5,24.5 parent: 31 type: Transform - - uid: 183 + - uid: 4291 components: - - rot: 3.141592697301183 rad - pos: -17.5,-13.5 + - rot: -1.5707963267948966 rad + pos: 33.5,-3.5 parent: 31 type: Transform - - uid: 184 + - uid: 4380 components: - - rot: 3.141592697301183 rad - pos: -17.5,-12.5 + - rot: -1.5707963267948966 rad + pos: 35.5,-12.5 parent: 31 type: Transform - - uid: 185 + - uid: 4557 components: - - rot: 3.141592697301183 rad - pos: -17.5,-11.5 + - rot: 1.5707963267948966 rad + pos: -17.5,-18.5 parent: 31 type: Transform - - uid: 188 + - uid: 4709 components: - - rot: 1.5707963705062866 rad - pos: -16.5,-15.5 + - rot: 1.5707963267948966 rad + pos: -17.5,-17.5 parent: 31 type: Transform - - uid: 189 + - uid: 4714 components: - - pos: -28.5,5.5 + - pos: -24.5,-4.5 parent: 31 type: Transform - - uid: 190 + - uid: 4715 components: - - pos: -28.5,6.5 + - rot: 3.141592653589793 rad + pos: -23.5,-7.5 parent: 31 type: Transform - - uid: 191 + - uid: 4853 components: - - pos: -28.5,7.5 + - rot: 1.5707963267948966 rad + pos: 2.5,-30.5 parent: 31 type: Transform - - uid: 192 + - uid: 4854 components: - - pos: -28.5,8.5 + - rot: -1.5707963267948966 rad + pos: 4.5,-30.5 parent: 31 type: Transform - - uid: 193 + - uid: 5004 components: - - pos: -28.5,9.5 + - rot: -1.5707963267948966 rad + pos: -22.5,-2.5 parent: 31 type: Transform - - uid: 197 + - uid: 6258 components: - - rot: 3.141592697301183 rad - pos: -17.5,-16.5 + - rot: 1.5707963267948966 rad + pos: 31.5,-3.5 parent: 31 type: Transform - - uid: 206 + - uid: 6259 components: - - rot: 3.141592697301183 rad - pos: -17.5,-17.5 + - rot: 1.5707963267948966 rad + pos: 31.5,-2.5 parent: 31 type: Transform - - uid: 211 + - uid: 6261 components: - - rot: 3.141592697301183 rad - pos: -17.5,-18.5 + - rot: -1.5707963267948966 rad + pos: 33.5,-2.5 parent: 31 type: Transform - - uid: 212 + - uid: 6617 components: - - pos: 24.5,5.5 + - pos: 22.5,-16.5 parent: 31 type: Transform - - uid: 213 + - uid: 7027 components: - - pos: 24.5,6.5 + - rot: -1.5707963267948966 rad + pos: 35.5,-14.5 parent: 31 type: Transform - - uid: 214 + - uid: 7286 components: - - pos: 24.5,7.5 + - pos: 10.5,1.5 parent: 31 type: Transform - - uid: 220 + - uid: 7287 components: - - rot: 3.141592697301183 rad - pos: -17.5,-19.5 + - pos: 9.5,1.5 parent: 31 type: Transform - - uid: 221 + - uid: 7288 components: - - pos: -23.5,-13.5 + - pos: 8.5,1.5 parent: 31 type: Transform - - uid: 222 + - uid: 7341 components: - - rot: 3.141592697301183 rad - pos: -17.5,-20.5 + - pos: -18.5,-4.5 parent: 31 type: Transform - - uid: 223 + - uid: 7365 components: - - rot: 3.141592697301183 rad - pos: 34.5,1.5 + - rot: 3.141592653589793 rad + pos: 48.5,-30.5 parent: 31 type: Transform - - uid: 224 + - uid: 7477 components: - - rot: 3.141592697301183 rad - pos: 34.5,0.5 + - pos: -0.5,14.5 parent: 31 type: Transform - - uid: 225 + - uid: 7627 components: - - rot: 3.141592697301183 rad - pos: 34.5,-0.5 + - rot: -1.5707963267948966 rad + pos: -28.5,17.5 parent: 31 type: Transform - - uid: 226 + - uid: 7646 components: - - rot: 3.141592697301183 rad - pos: 34.5,-1.5 + - pos: -28.5,-7.5 parent: 31 type: Transform - - uid: 227 + - uid: 7774 components: - - rot: 3.141592697301183 rad - pos: 34.5,-2.5 + - rot: 1.5707963267948966 rad + pos: 1.5,19.5 parent: 31 type: Transform - - uid: 228 + - uid: 7775 components: - - rot: 3.141592697301183 rad - pos: 34.5,-3.5 + - rot: 1.5707963267948966 rad + pos: 1.5,18.5 parent: 31 type: Transform - - uid: 231 + - uid: 7841 components: - - rot: 4.71238902409608 rad - pos: 30.5,3.5 + - rot: 3.141592653589793 rad + pos: -15.5,24.5 parent: 31 type: Transform - - uid: 232 + - uid: 7842 components: - - rot: 4.71238902409608 rad - pos: 36.5,3.5 + - rot: 3.141592653589793 rad + pos: -14.5,24.5 parent: 31 type: Transform - - uid: 233 + - uid: 7960 components: - - rot: 4.71238902409608 rad - pos: 35.5,3.5 + - pos: 27.5,6.5 parent: 31 type: Transform - - uid: 234 + - uid: 8283 components: - - rot: 3.141592697301183 rad - pos: 34.5,2.5 + - pos: 50.5,-18.5 parent: 31 type: Transform - - uid: 235 + - uid: 8284 components: - - rot: 4.71238902409608 rad - pos: 33.5,3.5 + - pos: 48.5,-18.5 parent: 31 type: Transform - - uid: 236 + - uid: 8285 components: - - rot: 4.71238902409608 rad - pos: 32.5,3.5 + - rot: -1.5707963267948966 rad + pos: 55.5,-23.5 parent: 31 type: Transform - - uid: 237 + - uid: 8286 components: - - rot: 4.71238902409608 rad - pos: 31.5,3.5 + - rot: -1.5707963267948966 rad + pos: 55.5,-25.5 parent: 31 type: Transform - - uid: 239 + - uid: 8290 components: - - pos: 37.5,4.5 + - pos: 37.5,-23.5 parent: 31 type: Transform - - uid: 240 + - uid: 8291 components: - - pos: 37.5,5.5 - parent: 31 - type: Transform - - uid: 243 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,28.5 + - pos: 35.5,-23.5 parent: 31 type: Transform - - uid: 244 + - uid: 8299 components: - - pos: 3.5,10.5 + - pos: 36.5,-23.5 parent: 31 type: Transform - - uid: 246 + - uid: 8812 components: - rot: -1.5707963267948966 rad - pos: 2.5,3.5 + pos: -1.5,29.5 parent: 31 type: Transform - - uid: 265 + - uid: 8869 components: - - pos: 3.5,27.5 + - rot: -1.5707963267948966 rad + pos: 16.5,6.5 parent: 31 type: Transform - - uid: 269 + - uid: 8870 components: - - rot: 3.141592697301183 rad - pos: -17.5,-21.5 + - rot: -1.5707963267948966 rad + pos: 16.5,7.5 parent: 31 type: Transform - - uid: 270 + - uid: 8938 components: - rot: -1.5707963267948966 rad - pos: 0.5,28.5 + pos: 5.5,-15.5 parent: 31 type: Transform - - uid: 271 + - uid: 8939 components: - rot: -1.5707963267948966 rad - pos: -0.5,28.5 + pos: 5.5,-14.5 parent: 31 type: Transform - - uid: 272 + - uid: 8952 components: - rot: -1.5707963267948966 rad - pos: -1.5,28.5 + pos: -28.5,8.5 parent: 31 type: Transform - - uid: 276 + - uid: 9239 components: - - rot: 1.5707963705062866 rad - pos: -18.5,-10.5 + - rot: 1.5707963267948966 rad + pos: -40.5,4.5 parent: 31 type: Transform - - uid: 277 + - uid: 9240 components: - - rot: 3.141592697301183 rad - pos: 3.5,-8.5 + - rot: 1.5707963267948966 rad + pos: -40.5,5.5 parent: 31 type: Transform - - uid: 278 + - uid: 9241 components: - - rot: 3.141592697301183 rad - pos: 3.5,-7.5 + - rot: 1.5707963267948966 rad + pos: -40.5,6.5 parent: 31 type: Transform - - uid: 279 + - uid: 9242 components: - - rot: 3.141592697301183 rad - pos: 3.5,-6.5 + - rot: -1.5707963267948966 rad + pos: -38.5,4.5 parent: 31 type: Transform - - uid: 280 + - uid: 9243 components: - - rot: 3.141592697301183 rad - pos: 3.5,-5.5 + - rot: -1.5707963267948966 rad + pos: -38.5,5.5 parent: 31 type: Transform - - uid: 281 + - uid: 9244 components: - - rot: 3.141592697301183 rad - pos: 3.5,-4.5 + - rot: -1.5707963267948966 rad + pos: -38.5,6.5 parent: 31 type: Transform - - uid: 282 + - uid: 9245 components: - - rot: 3.141592697301183 rad - pos: 3.5,-3.5 + - rot: 1.5707963267948966 rad + pos: -37.5,4.5 parent: 31 type: Transform - - uid: 283 + - uid: 9246 components: - - rot: 3.141592697301183 rad - pos: 3.5,-2.5 + - rot: 1.5707963267948966 rad + pos: -37.5,5.5 parent: 31 type: Transform - - uid: 284 + - uid: 9247 components: - - rot: 3.141592697301183 rad - pos: 3.5,-1.5 + - rot: 1.5707963267948966 rad + pos: -37.5,6.5 parent: 31 type: Transform - - uid: 285 + - uid: 9336 components: - - rot: 3.141592697301183 rad - pos: 3.5,-0.5 + - rot: -1.5707963267948966 rad + pos: -35.5,0.5 parent: 31 type: Transform - - uid: 286 + - uid: 9337 components: - - rot: 3.141592697301183 rad - pos: 3.5,0.5 + - rot: -1.5707963267948966 rad + pos: -35.5,1.5 parent: 31 type: Transform - - uid: 287 + - uid: 9804 components: - - rot: 3.141592697301183 rad - pos: 3.5,1.5 + - rot: 3.141592653589793 rad + pos: -2.5,-39.5 parent: 31 type: Transform - - uid: 288 + - uid: 10319 components: - - rot: 3.141592697301183 rad - pos: 3.5,2.5 + - rot: 1.5707963267948966 rad + pos: -7.5,-14.5 parent: 31 type: Transform - - uid: 289 + - uid: 10320 components: - - rot: 3.141592697301183 rad - pos: 3.5,-10.5 + - rot: -1.5707963267948966 rad + pos: -5.5,-14.5 parent: 31 type: Transform - - uid: 291 + - uid: 10823 components: - - rot: 4.71238902409608 rad - pos: 5.5,-11.5 + - rot: 3.141592653589793 rad + pos: 15.5,15.5 parent: 31 type: Transform - - uid: 292 + - uid: 11088 components: - - rot: 4.71238902409608 rad - pos: 6.5,-11.5 + - pos: 46.5,-1.5 parent: 31 type: Transform - - uid: 293 + - uid: 11089 components: - - rot: 4.71238902409608 rad - pos: 7.5,-11.5 + - rot: 3.141592653589793 rad + pos: 46.5,-3.5 parent: 31 type: Transform - - uid: 294 +- proto: ChairFolding + entities: + - uid: 1042 components: - - rot: 4.71238902409608 rad - pos: 8.5,-11.5 + - rot: 3.141592653589793 rad + pos: -9.5,-19.5 parent: 31 type: Transform - - uid: 295 + - uid: 2309 components: - - rot: 4.71238902409608 rad - pos: 4.5,-11.5 + - rot: 3.141592653589793 rad + pos: -8.5,-19.5 parent: 31 type: Transform - - uid: 296 + - uid: 7079 components: - - rot: 4.71238902409608 rad - pos: 9.5,-11.5 + - rot: 1.5707963267948966 rad + pos: 27.5,9.5 parent: 31 type: Transform - - uid: 300 + - uid: 10755 components: - - rot: 1.5707963705062866 rad - pos: -19.5,-10.5 + - pos: -40.5,-9.5 parent: 31 type: Transform - - uid: 301 + - uid: 10756 components: - - pos: -5.5,7.5 + - rot: 1.5707963267948966 rad + pos: -49.5,-9.5 parent: 31 type: Transform - - uid: 302 + - uid: 10757 components: - - rot: 3.141592697301183 rad - pos: 12.5,0.5 + - rot: -1.5707963267948966 rad + pos: -46.5,-9.5 parent: 31 type: Transform - - uid: 304 + - uid: 10762 components: - - rot: -1.5707963267948966 rad - pos: 13.5,-0.5 + - pos: -42.5,-9.5 parent: 31 type: Transform - - uid: 311 + - uid: 10763 components: - - rot: -1.5707963267948966 rad - pos: 6.5,17.5 + - pos: -41.5,-9.5 parent: 31 type: Transform - - uid: 314 +- proto: ChairOfficeDark + entities: + - uid: 953 components: - - rot: 1.5707963267948966 rad - pos: 13.5,4.5 + - pos: 49.5,4.5 parent: 31 type: Transform - - uid: 315 + - uid: 961 components: - - rot: 3.141592697301183 rad - pos: 12.5,2.5 + - rot: 1.5707963705062866 rad + pos: -2.5,25.5 parent: 31 type: Transform - - uid: 316 + - uid: 962 components: - - rot: 1.5707963267948966 rad - pos: 14.5,4.5 + - rot: 1.5707963705062866 rad + pos: -2.5,24.5 parent: 31 type: Transform - - uid: 317 + - uid: 963 components: - - rot: 1.5707963267948966 rad - pos: 15.5,4.5 + - rot: 4.71238902409608 rad + pos: -0.5,25.5 parent: 31 type: Transform - - uid: 318 + - uid: 964 components: - - rot: 1.5707963267948966 rad - pos: 16.5,4.5 + - rot: 4.71238902409608 rad + pos: -0.5,24.5 parent: 31 type: Transform - - uid: 319 + - uid: 2211 components: - - rot: 1.5707963267948966 rad - pos: 17.5,4.5 + - rot: -1.5707963267948966 rad + pos: 29.5,9.5 parent: 31 type: Transform - - uid: 320 + - uid: 2298 components: - - rot: 1.5707963267948966 rad - pos: 18.5,4.5 + - rot: 3.141592653589793 rad + pos: -16.5,-26.5 parent: 31 type: Transform - - uid: 321 + - uid: 2777 components: - - rot: 1.5707963267948966 rad - pos: 19.5,4.5 + - pos: -29.5,-1.5 parent: 31 type: Transform - - uid: 322 + - uid: 2815 components: - - rot: 1.5707963267948966 rad - pos: 20.5,4.5 + - rot: 3.141592653589793 rad + pos: -30.5,0.5 parent: 31 type: Transform - - uid: 323 + - uid: 3154 components: - - rot: 1.5707963267948966 rad - pos: 21.5,4.5 + - pos: -1.5,26.5 parent: 31 type: Transform - - uid: 324 + - uid: 3308 components: - - rot: 1.5707963267948966 rad - pos: 22.5,4.5 + - rot: -1.5707963267948966 rad + pos: -7.5,19.5 parent: 31 type: Transform - - uid: 325 + - uid: 3991 components: - - rot: 1.5707963267948966 rad - pos: 27.5,4.5 + - pos: -1.5,7.5 parent: 31 type: Transform - - uid: 326 + - uid: 3994 components: - - rot: 1.5707963267948966 rad - pos: 26.5,4.5 + - rot: 3.141592653589793 rad + pos: -1.5,23.5 parent: 31 type: Transform - - uid: 327 + - uid: 4150 components: - - rot: 1.5707963267948966 rad - pos: 28.5,4.5 + - pos: -10.5,8.5 parent: 31 type: Transform - - uid: 330 + - uid: 4179 components: - - pos: 3.5,6.5 + - rot: 3.141592653589793 rad + pos: 23.5,12.5 parent: 31 type: Transform - - uid: 331 + - uid: 4186 components: - - pos: -10.5,-17.5 + - rot: -1.5707963267948966 rad + pos: 1.5,31.5 parent: 31 type: Transform - - uid: 334 + - uid: 4191 components: - - rot: 3.141592697301183 rad - pos: 3.5,-9.5 + - rot: 3.141592653589793 rad + pos: 6.5,31.5 parent: 31 type: Transform - - uid: 336 + - uid: 4268 components: - - rot: 1.5707963705062866 rad - pos: -20.5,-10.5 + - rot: 1.5707963267948966 rad + pos: 21.5,-10.5 parent: 31 type: Transform - - uid: 339 + - uid: 4738 components: - - pos: -27.5,-9.5 + - pos: 15.5,9.5 parent: 31 type: Transform - - uid: 340 + - uid: 4785 components: - - pos: -27.5,-8.5 + - rot: 3.141592653589793 rad + pos: 9.5,-29.5 parent: 31 type: Transform - - uid: 341 + - uid: 4902 components: - - rot: 1.5707963705062866 rad - pos: -21.5,-10.5 + - rot: 3.141592653589793 rad + pos: -0.5,12.5 parent: 31 type: Transform - - uid: 342 + - uid: 6017 components: - rot: 3.141592653589793 rad - pos: -11.5,2.5 + pos: 7.5,-4.5 parent: 31 type: Transform - - uid: 344 + - uid: 6959 components: - - rot: 1.5707963705062866 rad - pos: -22.5,-10.5 + - rot: 3.141592653589793 rad + pos: 15.5,-7.5 parent: 31 type: Transform - - uid: 345 + - uid: 7153 components: - - pos: -23.5,-12.5 + - pos: 7.5,20.5 parent: 31 type: Transform - - uid: 346 + - uid: 7294 components: - - pos: -23.5,-11.5 + - pos: 9.5,-27.5 parent: 31 type: Transform - - uid: 348 + - uid: 7364 components: - - pos: -22.5,4.5 + - rot: -1.5707963267948966 rad + pos: 19.5,9.5 parent: 31 type: Transform - - uid: 349 + - uid: 8211 components: - - pos: -22.5,5.5 + - rot: 1.5707963267948966 rad + pos: -5.5,-31.5 parent: 31 type: Transform - - uid: 353 + - uid: 8695 components: - - rot: 4.71238902409608 rad - pos: -6.5,3.5 + - rot: 1.5707963267948966 rad + pos: -36.5,-25.5 parent: 31 type: Transform - - uid: 355 + - uid: 8701 components: - - rot: 4.71238902409608 rad - pos: -4.5,3.5 + - rot: -1.5707963267948966 rad + pos: -34.5,-25.5 parent: 31 type: Transform - - uid: 356 + - uid: 8702 components: - - rot: 4.71238902409608 rad - pos: -3.5,3.5 + - pos: -35.5,-23.5 parent: 31 type: Transform - - uid: 357 + - uid: 8706 components: - - rot: 4.71238902409608 rad - pos: -2.5,3.5 + - rot: -1.5707963267948966 rad + pos: -34.5,-24.5 parent: 31 type: Transform - - uid: 358 + - uid: 8707 components: - - rot: 4.71238902409608 rad - pos: -1.5,3.5 + - rot: 1.5707963267948966 rad + pos: -36.5,-24.5 parent: 31 type: Transform - - uid: 359 + - uid: 8769 components: - - rot: 4.71238902409608 rad - pos: -0.5,3.5 + - rot: -1.5707963267948966 rad + pos: -3.5,13.5 parent: 31 type: Transform - - uid: 361 + - uid: 8811 components: - - rot: 4.71238902409608 rad - pos: 1.5,3.5 + - rot: 1.5707963267948966 rad + pos: 8.5,29.5 parent: 31 type: Transform - - uid: 362 + - uid: 8865 components: - - rot: 4.71238902409608 rad - pos: -8.5,3.5 + - rot: -1.5707963267948966 rad + pos: 31.5,5.5 parent: 31 type: Transform - - uid: 363 + - uid: 8893 components: - - rot: 4.71238902409608 rad - pos: -9.5,3.5 + - rot: 3.141592653589793 rad + pos: 41.5,3.5 parent: 31 type: Transform - - uid: 364 + - uid: 9002 components: - - rot: 4.71238902409608 rad - pos: -10.5,3.5 + - pos: -20.5,-1.5 parent: 31 type: Transform - - uid: 367 + - uid: 9023 components: - - rot: 4.71238902409608 rad - pos: -13.5,3.5 + - rot: 3.141592653589793 rad + pos: 13.5,11.5 parent: 31 type: Transform - - uid: 368 + - uid: 9113 components: - - rot: 4.71238902409608 rad - pos: -14.5,3.5 + - pos: 38.5,0.5 parent: 31 type: Transform - - uid: 369 + - uid: 9466 components: - - rot: 4.71238902409608 rad - pos: -15.5,3.5 + - pos: -15.5,-38.5 parent: 31 type: Transform - - uid: 370 + - uid: 9726 components: - - rot: 4.71238902409608 rad - pos: -16.5,3.5 + - pos: 49.5,-4.5 parent: 31 type: Transform - - uid: 371 +- proto: ChairOfficeLight + entities: + - uid: 1383 components: - - rot: 4.71238902409608 rad - pos: -17.5,3.5 + - pos: 15.5,-2.5 parent: 31 type: Transform - - uid: 372 + - uid: 1439 components: - - rot: 4.71238902409608 rad - pos: -18.5,3.5 + - rot: 3.141592653589793 rad + pos: -15.5,-20.5 parent: 31 type: Transform - - uid: 373 + - uid: 2288 components: - - rot: 4.71238902409608 rad - pos: -19.5,3.5 + - rot: -1.5707963267948966 rad + pos: -16.5,-23.5 parent: 31 type: Transform - - uid: 374 + - uid: 2829 components: - - rot: 4.71238902409608 rad - pos: -20.5,3.5 + - pos: 15.5,-5.5 parent: 31 type: Transform - - uid: 375 + - uid: 4697 components: - - rot: 4.71238902409608 rad - pos: -21.5,3.5 + - rot: 3.141592653589793 rad + pos: 6.5,-8.5 parent: 31 type: Transform - - uid: 377 + - uid: 5095 components: - - rot: 4.71238902409608 rad - pos: -23.5,3.5 + - rot: 3.141592653589793 rad + pos: 15.5,0.5 parent: 31 type: Transform - - uid: 378 + - uid: 7077 components: - - rot: 4.71238902409608 rad - pos: -24.5,3.5 + - rot: 1.5707963267948966 rad + pos: 9.5,-16.5 parent: 31 type: Transform - - uid: 379 + - uid: 7272 components: - - rot: 4.71238902409608 rad - pos: -25.5,3.5 + - pos: 0.5,-26.5 parent: 31 type: Transform - - uid: 380 + - uid: 7615 components: - - rot: 4.71238902409608 rad - pos: -26.5,3.5 + - pos: 6.5,-10.5 parent: 31 type: Transform - - uid: 381 + - uid: 9120 components: - - rot: 4.71238902409608 rad - pos: -27.5,3.5 + - rot: 1.5707963267948966 rad + pos: 18.5,-0.5 parent: 31 type: Transform - - uid: 382 + - uid: 9294 components: - - pos: -28.5,4.5 + - rot: -1.5707963267948966 rad + pos: -11.5,-30.5 parent: 31 type: Transform - - uid: 383 + - uid: 10404 components: - - rot: 4.71238902409608 rad - pos: -29.5,3.5 + - rot: 1.5707963267948966 rad + pos: -5.5,-20.5 parent: 31 type: Transform - - uid: 384 +- proto: ChairPilotSeat + entities: + - uid: 1039 components: - - rot: 4.71238902409608 rad - pos: -30.5,3.5 + - rot: 3.141592653589793 rad + pos: 3.5,31.5 parent: 31 type: Transform - - uid: 385 +- proto: ChairRitual + entities: + - uid: 9690 components: - - rot: 4.71238902409608 rad - pos: -31.5,3.5 + - rot: 1.5707963267948966 rad + pos: 6.5,-41.5 parent: 31 type: Transform - - uid: 386 + - uid: 9691 components: - - pos: -32.5,2.5 + - rot: -1.5707963267948966 rad + pos: 8.5,-41.5 parent: 31 type: Transform - - uid: 387 +- proto: ChairWood + entities: + - uid: 1337 components: - - pos: -32.5,1.5 + - rot: 1.5707963267948966 rad + pos: 9.5,-23.5 parent: 31 type: Transform - - uid: 388 + - uid: 2037 components: - - pos: -32.5,0.5 + - rot: 1.5707963267948966 rad + pos: 9.5,-24.5 parent: 31 type: Transform - - uid: 389 + - uid: 2038 components: - - pos: -32.5,-0.5 + - rot: -1.5707963267948966 rad + pos: 12.5,-23.5 parent: 31 type: Transform - - uid: 390 + - uid: 2039 components: - - pos: -32.5,-1.5 + - pos: 11.5,-22.5 parent: 31 type: Transform - - uid: 391 + - uid: 2391 components: - - pos: -32.5,-2.5 + - rot: -1.5707963267948966 rad + pos: 12.5,-24.5 parent: 31 type: Transform - - uid: 392 + - uid: 2405 components: - - pos: -32.5,-3.5 + - pos: 10.5,-22.5 parent: 31 type: Transform - - uid: 393 + - uid: 2440 components: - - pos: -32.5,-4.5 + - rot: 3.141592653589793 rad + pos: 11.5,-25.5 parent: 31 type: Transform - - uid: 394 + - uid: 3153 components: - - pos: -32.5,-5.5 + - rot: 3.141592653589793 rad + pos: 10.5,-25.5 parent: 31 type: Transform - - uid: 395 + - uid: 3406 components: - - pos: -32.5,-6.5 + - rot: 1.5707963267948966 rad + pos: -7.5,-1.5 parent: 31 type: Transform - - uid: 396 + - uid: 4060 components: - - pos: -32.5,-7.5 + - rot: -1.5707963267948966 rad + pos: -5.5,-1.5 parent: 31 type: Transform - - uid: 397 + - uid: 7295 components: - - pos: -32.5,-8.5 + - pos: 7.5,-22.5 parent: 31 type: Transform - - uid: 398 + - uid: 7575 components: - - pos: -32.5,-9.5 + - pos: -2.5,-0.5 parent: 31 type: Transform - - uid: 400 + - uid: 7577 components: - - rot: 4.71238902409608 rad - pos: -31.5,-10.5 + - pos: -3.5,-0.5 parent: 31 type: Transform - - uid: 401 + - uid: 7702 components: - - rot: 4.71238902409608 rad - pos: -30.5,-10.5 + - rot: 3.141592653589793 rad + pos: -37.5,12.5 parent: 31 type: Transform - - uid: 402 + - uid: 7704 components: - - rot: 4.71238902409608 rad - pos: -29.5,-10.5 + - rot: 3.141592653589793 rad + pos: -35.5,12.5 parent: 31 type: Transform - - uid: 403 + - uid: 7705 components: - - rot: 4.71238902409608 rad - pos: -28.5,-10.5 + - rot: 3.141592653589793 rad + pos: -35.5,13.5 parent: 31 type: Transform - - uid: 405 + - uid: 7707 components: - - rot: 4.71238902409608 rad - pos: -26.5,-10.5 + - rot: 3.141592653589793 rad + pos: -37.5,13.5 parent: 31 type: Transform - - uid: 406 + - uid: 8424 components: - - rot: 4.71238902409608 rad - pos: -25.5,-10.5 + - rot: 3.141592653589793 rad + pos: -2.5,-2.5 parent: 31 type: Transform - - uid: 407 + - uid: 8434 components: - - rot: 4.71238902409608 rad - pos: -24.5,-10.5 + - rot: 3.141592653589793 rad + pos: -3.5,-2.5 parent: 31 type: Transform - - uid: 624 +- proto: CheapRollerBed + entities: + - uid: 7252 components: - - rot: 1.5707963267948966 rad - pos: 16.5,-10.5 + - pos: 24.47556,-5.97663 parent: 31 type: Transform - - uid: 758 + - uid: 7253 components: - - rot: 1.5707963267948966 rad - pos: 15.5,-10.5 + - pos: 24.491184,-6.41413 parent: 31 type: Transform - - uid: 841 +- proto: CheckerBoard + entities: + - uid: 10764 components: - - rot: 4.71238902409608 rad - pos: -7.5,-14.5 + - pos: -48.183727,-9.500211 parent: 31 type: Transform - - uid: 842 +- proto: chem_master + entities: + - uid: 606 components: - - rot: 4.71238902409608 rad - pos: -6.5,-14.5 + - pos: 19.5,-0.5 parent: 31 type: Transform - - uid: 845 + - uid: 5075 components: - - rot: 4.71238902409608 rad - pos: -9.5,-15.5 + - pos: 15.5,1.5 parent: 31 type: Transform - - uid: 846 +- proto: ChemDispenser + entities: + - uid: 5076 components: - - rot: 1.5707963705062866 rad - pos: -15.5,-15.5 + - pos: 19.5,-1.5 parent: 31 type: Transform - - uid: 847 + - uid: 5079 components: - - rot: 1.5707963705062866 rad - pos: -13.5,-15.5 + - pos: 16.5,1.5 parent: 31 type: Transform - - uid: 848 +- proto: ChemistryHotplate + entities: + - uid: 4207 components: - - rot: 1.5707963705062866 rad - pos: -14.5,-15.5 + - pos: 18.5,1.5 parent: 31 type: Transform - - uid: 849 +- proto: ChessBoard + entities: + - uid: 841 components: - - rot: 1.5707963705062866 rad - pos: -12.5,-15.5 + - pos: -21.49966,9.580566 parent: 31 type: Transform - - uid: 850 +- proto: ChurchOrganInstrument + entities: + - uid: 7700 components: - - rot: 1.5707963705062866 rad - pos: -11.5,-15.5 + - rot: 1.5707963267948966 rad + pos: -34.5,13.5 parent: 31 type: Transform - - uid: 851 +- proto: Cigarette + entities: + - uid: 8903 components: - - rot: 3.141592697301183 rad - pos: -10.5,-16.5 + - pos: 31.747108,6.5736575 parent: 31 type: Transform - - uid: 921 +- proto: CigarGold + entities: + - uid: 9753 components: - - rot: 1.5707963267948966 rad - pos: -12.5,3.5 + - pos: -15.382986,-39.43112 parent: 31 type: Transform - - uid: 1011 + - uid: 11134 components: - - pos: -5.5,14.5 + - pos: 28.739138,9.837011 parent: 31 type: Transform - - uid: 1062 +- proto: CigarGoldCase + entities: + - uid: 1199 components: - - pos: 7.5,5.5 + - pos: -3.728004,16.448915 parent: 31 type: Transform - - uid: 1101 +- proto: CigarSpent + entities: + - uid: 1889 components: - - pos: 7.5,6.5 + - pos: -14.523747,-38.67494 parent: 31 type: Transform - - uid: 1221 + - uid: 10689 components: - - pos: 7.5,7.5 + - rot: -1.5707963267948966 rad + pos: -15.940473,-37.966972 parent: 31 type: Transform - - uid: 1362 +- proto: CigPackMixed + entities: + - uid: 3307 components: - - pos: 7.5,8.5 + - rot: -1.5707963267948966 rad + pos: 46.484562,-5.364609 parent: 31 type: Transform - - uid: 1375 +- proto: CircuitImprinter + entities: + - uid: 821 components: - - pos: 7.5,10.5 + - pos: -13.5,-22.5 parent: 31 type: Transform - - uid: 1601 +- proto: ClosetBase + entities: + - uid: 7853 components: - - pos: -5.5,15.5 + - pos: 27.5,-22.5 parent: 31 type: Transform - - uid: 1770 + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7856 + - 7859 + - 7854 + - 7857 + - 7855 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: ClosetBombFilled + entities: + - uid: 5116 components: - - pos: -23.5,-14.5 + - pos: -14.5,13.5 parent: 31 type: Transform - - uid: 1796 +- proto: ClosetChefFilled + entities: + - uid: 799 components: - - pos: -5.5,16.5 + - pos: -12.5,1.5 parent: 31 type: Transform - - uid: 2014 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 759 components: - - rot: 3.141592653589793 rad - pos: 3.5,-13.5 + - pos: 5.5,-21.5 parent: 31 type: Transform - - uid: 2015 + - uid: 761 components: - - rot: 3.141592653589793 rad - pos: 3.5,-12.5 + - pos: -23.5,11.5 parent: 31 type: Transform - - uid: 2143 + - uid: 828 components: - - rot: -1.5707963267948966 rad - pos: 7.5,17.5 + - pos: 54.5,-5.5 parent: 31 type: Transform - - uid: 2160 + - uid: 2181 components: - - pos: 3.5,21.5 + - pos: 15.5,14.5 parent: 31 type: Transform - - uid: 2527 + - uid: 3736 components: - - rot: -1.5707963267948966 rad - pos: 4.5,17.5 + - pos: -0.5,-17.5 parent: 31 type: Transform - - uid: 3377 + - uid: 4381 components: - - rot: 1.5707963267948966 rad - pos: 25.5,4.5 + - pos: 33.5,-10.5 parent: 31 type: Transform - - uid: 3868 + - uid: 6907 components: - - rot: -1.5707963267948966 rad - pos: 5.5,17.5 + - pos: 30.5,14.5 parent: 31 type: Transform - - uid: 3877 + - uid: 7161 components: - - pos: 3.5,20.5 + - pos: 23.5,7.5 parent: 31 type: Transform - - uid: 3939 + - uid: 7497 components: - - rot: 1.5707963267948966 rad - pos: 2.5,28.5 + - pos: 14.5,-29.5 parent: 31 type: Transform - - uid: 4211 + - uid: 7791 components: - - pos: -5.5,9.5 + - pos: -20.5,22.5 parent: 31 type: Transform - - uid: 4703 + - uid: 7825 components: - - rot: 3.141592653589793 rad - pos: -11.5,-22.5 + - pos: -9.5,-25.5 parent: 31 type: Transform - - uid: 4728 + - uid: 8805 components: - - pos: 3.5,-21.5 + - pos: 7.5,28.5 parent: 31 type: Transform - - uid: 4739 + - uid: 9323 components: - - pos: 3.5,-20.5 + - pos: -34.5,7.5 parent: 31 type: Transform - - uid: 4747 + - uid: 9447 components: - - pos: 3.5,-24.5 + - pos: -22.5,-31.5 parent: 31 type: Transform - - uid: 4748 + - uid: 9740 components: - - pos: 3.5,-23.5 + - pos: 15.5,-21.5 parent: 31 type: Transform - - uid: 4749 + - uid: 9790 components: - - pos: 3.5,-22.5 + - pos: -18.5,-36.5 parent: 31 type: Transform - - uid: 4792 + - uid: 9791 components: - - rot: 3.141592653589793 rad - pos: 6.5,-28.5 + - pos: 9.5,-32.5 parent: 31 type: Transform - - uid: 4793 + - uid: 10645 components: - - rot: 3.141592653589793 rad - pos: 6.5,-29.5 + - pos: 39.5,-14.5 parent: 31 type: Transform - - uid: 4798 + - uid: 10754 components: - - rot: 1.5707963267948966 rad - pos: 5.5,-27.5 + - pos: -53.5,-9.5 parent: 31 type: Transform - - uid: 4799 +- proto: ClosetFireFilled + entities: + - uid: 221 components: - - rot: 1.5707963267948966 rad - pos: 4.5,-27.5 + - pos: -7.5,-25.5 parent: 31 type: Transform - - uid: 4800 + - uid: 3507 components: - - pos: 3.5,-16.5 + - pos: 30.5,13.5 parent: 31 type: Transform - - uid: 4801 + - uid: 3922 components: - - pos: 3.5,-14.5 + - pos: -1.5,-17.5 parent: 31 type: Transform - - uid: 4802 + - uid: 4237 components: - - pos: 3.5,-15.5 + - pos: 54.5,-3.5 parent: 31 type: Transform - - uid: 4803 + - uid: 7792 components: - - pos: 3.5,-18.5 + - pos: -20.5,23.5 parent: 31 type: Transform - - uid: 4804 + - uid: 7912 components: - - pos: 3.5,-17.5 + - pos: 23.5,0.5 parent: 31 type: Transform - - uid: 4805 + - uid: 8804 components: - - pos: 3.5,-19.5 + - pos: 8.5,28.5 parent: 31 type: Transform - - uid: 4811 + - uid: 9739 components: - - pos: 3.5,-26.5 + - pos: 15.5,-22.5 parent: 31 type: Transform - - uid: 4812 + - uid: 9792 components: - - pos: 3.5,-25.5 + - pos: -6.5,-37.5 parent: 31 type: Transform - - uid: 4878 + - uid: 10132 components: - - pos: -5.5,8.5 + - pos: 16.5,14.5 parent: 31 type: Transform - - uid: 5085 + - uid: 10753 components: - - pos: -5.5,11.5 + - pos: -53.5,-10.5 parent: 31 type: Transform - - uid: 5099 +- proto: ClosetJanitorFilled + entities: + - uid: 2189 components: - - rot: 3.141592653589793 rad - pos: 14.5,-1.5 + - pos: -17.5,-10.5 parent: 31 type: Transform - - uid: 5101 +- proto: ClosetL3VirologyFilled + entities: + - uid: 6695 components: - - pos: -5.5,12.5 + - pos: 14.5,-7.5 parent: 31 type: Transform - - uid: 5144 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 550 components: - - pos: -5.5,10.5 + - pos: 46.5,-0.5 parent: 31 type: Transform - - uid: 5219 + - uid: 1412 components: - - pos: -5.5,13.5 + - pos: -7.5,-8.5 parent: 31 type: Transform - - uid: 5232 + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 7058 components: - - pos: -5.5,6.5 + - pos: 29.5,-9.5 parent: 31 type: Transform - - uid: 5234 + - uid: 7518 components: - - pos: -5.5,4.5 + - pos: -11.5,-12.5 parent: 31 type: Transform - - uid: 5235 + - uid: 7789 components: - - pos: -5.5,5.5 + - pos: -19.5,12.5 parent: 31 type: Transform - - uid: 7129 + - uid: 7911 components: - - rot: 3.141592653589793 rad - pos: -11.5,-21.5 + - pos: 23.5,1.5 parent: 31 type: Transform - - uid: 7143 + - uid: 7948 components: - - rot: 3.141592653589793 rad - pos: -11.5,-20.5 + - pos: 24.5,-25.5 parent: 31 type: Transform - - uid: 7175 + - uid: 9465 components: - - rot: 3.141592653589793 rad - pos: -11.5,-23.5 + - pos: -11.5,-39.5 parent: 31 type: Transform - - uid: 7268 + - uid: 9570 components: - - rot: 3.141592653589793 rad - pos: -11.5,-24.5 + - pos: -27.5,13.5 parent: 31 type: Transform - - uid: 7421 + - uid: 9571 components: - - rot: 1.5707963267948966 rad - pos: 17.5,-10.5 + - pos: -5.5,20.5 parent: 31 type: Transform - - uid: 7451 + - uid: 9572 components: - - pos: 7.5,9.5 + - pos: 27.5,-18.5 parent: 31 type: Transform - - uid: 7452 + - uid: 9675 components: - - rot: 3.141592653589793 rad - pos: 3.5,11.5 + - pos: -1.5,-41.5 parent: 31 type: Transform - - uid: 7962 + - uid: 9793 components: - - pos: 29.5,5.5 + - pos: 5.5,-37.5 parent: 31 type: Transform - - uid: 8317 + - uid: 9794 components: - - pos: -10.5,-18.5 + - pos: -11.5,-36.5 parent: 31 type: Transform - - uid: 8442 + - uid: 9862 components: - - rot: -1.5707963267948966 rad - pos: 0.5,3.5 + - pos: 11.5,-19.5 parent: 31 type: Transform - - uid: 8446 + - uid: 10221 components: - - rot: 3.141592653589793 rad - pos: -7.5,2.5 + - pos: -30.5,-13.5 parent: 31 type: Transform - - uid: 9171 + - uid: 10646 components: - - pos: -4.5,6.5 + - pos: 45.5,-13.5 parent: 31 type: Transform - - uid: 9198 + - uid: 11123 components: - - pos: -4.5,11.5 + - pos: -4.5,29.5 parent: 31 type: Transform - - uid: 9221 + - uid: 11229 + components: + - pos: -27.5,-15.5 + parent: 31 + type: Transform + - fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - MidImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 75 + hard: True + restitution: 0 + friction: 0.4 + type: Fixtures + - open: True + removedMasks: 20 + type: EntityStorage + - isPlaceable: True + type: PlaceableSurface + - uid: 11244 components: - - rot: 3.141592653589793 rad - pos: -4.5,9.5 + - pos: -31.5,9.5 parent: 31 type: Transform - - uid: 9229 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 5127 components: - - rot: 3.141592653589793 rad - pos: 3.5,12.5 + - pos: 52.5,1.5 parent: 31 type: Transform - - uid: 9230 + - uid: 7068 components: - - rot: 3.141592653589793 rad - pos: 3.5,13.5 + - pos: 53.5,1.5 parent: 31 type: Transform - - uid: 9324 + - uid: 7571 components: - - rot: 3.141592653589793 rad - pos: 3.5,16.5 + - pos: -11.5,-11.5 parent: 31 type: Transform - - uid: 9340 + - uid: 8214 components: - - rot: -1.5707963267948966 rad - pos: -33.5,3.5 + - pos: -8.5,-25.5 parent: 31 type: Transform - - uid: 9341 +- proto: ClosetWallEmergency + entities: + - uid: 9865 components: - - rot: 3.141592653589793 rad - pos: -34.5,4.5 + - rot: -1.5707963267948966 rad + pos: -34.5,0.5 parent: 31 type: Transform - - uid: 9378 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 9868 components: - - rot: 3.141592653589793 rad - pos: 3.5,15.5 + - pos: 28.5,7.5 parent: 31 type: Transform - - uid: 9513 +- proto: ClosetWallFireFilledRandom + entities: + - uid: 339 components: - - rot: 3.141592653589793 rad - pos: 3.5,14.5 + - rot: -1.5707963267948966 rad + pos: -33.5,8.5 parent: 31 type: Transform - - uid: 9520 + - uid: 9867 components: - - pos: 3.5,22.5 + - rot: -1.5707963267948966 rad + pos: -34.5,-0.5 parent: 31 type: Transform - - uid: 9521 +- proto: ClosetWallMaintenanceFilledRandom + entities: + - uid: 9863 components: - - pos: 3.5,23.5 + - rot: 1.5707963267948966 rad + pos: -21.5,-20.5 parent: 31 type: Transform - - uid: 9522 + - uid: 9864 components: - - pos: 3.5,24.5 + - rot: -1.5707963267948966 rad + pos: -31.5,-3.5 parent: 31 type: Transform - - uid: 9523 +- proto: ClothingBackpackDuffel + entities: + - uid: 134 components: - - pos: 3.5,25.5 + - pos: 29.55824,1.3120463 parent: 31 type: Transform - - uid: 9524 + - uid: 774 components: - - pos: 3.5,26.5 + - pos: 29.55824,1.5776713 parent: 31 type: Transform - - uid: 9544 + - uid: 794 components: - - pos: 10.5,-6.5 + - pos: 29.542616,1.7495463 parent: 31 type: Transform - - uid: 9559 +- proto: ClothingBeltChampion + entities: + - uid: 4197 components: - - rot: -1.5707963267948966 rad - pos: 5.5,4.5 + - pos: -3.60061,17.54974 parent: 31 type: Transform - - uid: 9588 +- proto: ClothingBeltMilitaryWebbing + entities: + - uid: 8755 components: - - pos: 12.5,3.5 + - pos: -22.377813,-28.339228 parent: 31 type: Transform - - uid: 9599 +- proto: ClothingBeltUtility + entities: + - uid: 4757 components: - - rot: -1.5707963267948966 rad - pos: 4.5,4.5 + - pos: 10.66112,-19.235216 parent: 31 type: Transform - - uid: 9633 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,10.5 - parent: 31 - type: Transform - - uid: 9638 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 7482 components: - - pos: 13.5,8.5 + - pos: 35.56775,-3.545828 parent: 31 type: Transform - - uid: 9649 +- proto: ClothingEyesEyepatch + entities: + - uid: 3964 components: - - rot: -1.5707963267948966 rad - pos: 11.5,4.5 + - pos: 35.470943,-15.2492285 parent: 31 type: Transform - - uid: 9650 +- proto: ClothingEyesGlasses + entities: + - uid: 7107 components: - - rot: -1.5707963267948966 rad - pos: 10.5,4.5 - parent: 31 + - flags: InContainer + type: MetaData + - parent: 7110 type: Transform - - uid: 9651 + - canCollide: False + type: Physics + - uid: 11264 components: - - rot: -1.5707963267948966 rad - pos: 9.5,4.5 + - pos: -9.178577,-18.39677 parent: 31 type: Transform - - uid: 9652 + - uid: 11265 components: - - rot: -1.5707963267948966 rad - pos: 9.5,4.5 + - pos: -9.162952,-18.61552 parent: 31 type: Transform - - uid: 9653 + - uid: 11266 components: - - rot: -1.5707963267948966 rad - pos: 8.5,4.5 + - pos: -9.162952,-18.20927 parent: 31 type: Transform - - uid: 9655 +- proto: ClothingEyesGlassesMeson + entities: + - uid: 4538 components: - - rot: -1.5707963267948966 rad - pos: 6.5,4.5 + - pos: 55.49048,8.459139 parent: 31 type: Transform - - uid: 9847 + - uid: 7582 components: - - rot: 3.141592653589793 rad - pos: 3.5,18.5 + - pos: 43.506165,13.466041 parent: 31 type: Transform - - uid: 9849 + - uid: 8213 components: - - rot: 3.141592653589793 rad - pos: 3.5,19.5 + - pos: 35.614624,-3.264578 parent: 31 type: Transform - - uid: 10148 +- proto: ClothingEyesGlassesSunglasses + entities: + - uid: 4235 components: - - rot: -1.5707963267948966 rad - pos: 48.5,-29.5 + - pos: -10.276402,-6.3744125 parent: 31 type: Transform - - uid: 10155 +- proto: ClothingEyesGlassesThermal + entities: + - uid: 1730 components: - - pos: 45.5,-27.5 + - pos: 43.658943,13.563262 parent: 31 type: Transform - - uid: 10156 +- proto: ClothingEyesHudDiagnostic + entities: + - uid: 7580 components: - - rot: -1.5707963267948966 rad - pos: 46.5,-28.5 + - pos: 32.538,-3.0937886 parent: 31 type: Transform - - uid: 10157 +- proto: ClothingEyesHudMedical + entities: + - uid: 6512 components: - - rot: -1.5707963267948966 rad - pos: 43.5,-25.5 + - pos: 16.646324,-6.5235434 parent: 31 type: Transform - - uid: 10158 +- proto: ClothingHandsGlovesColorBlack + entities: + - uid: 11225 components: - - rot: -1.5707963267948966 rad - pos: 42.5,-25.5 + - pos: -29.520256,-9.469171 parent: 31 type: Transform - - uid: 10159 +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 2523 components: - - rot: -1.5707963267948966 rad - pos: 41.5,-25.5 + - pos: -29.506107,7.62424 parent: 31 type: Transform - - uid: 10160 + - uid: 7572 components: - - rot: -1.5707963267948966 rad - pos: 40.5,-25.5 + - pos: -11.565304,-10.576338 parent: 31 type: Transform - - uid: 10161 + - uid: 7581 components: - - rot: -1.5707963267948966 rad - pos: 39.5,-25.5 + - pos: 32.479706,-2.7047698 parent: 31 type: Transform - - uid: 10162 +- proto: ClothingHandsGlovesCombat + entities: + - uid: 8315 components: - - rot: -1.5707963267948966 rad - pos: 38.5,-25.5 + - pos: 43.576782,13.655371 parent: 31 type: Transform - - uid: 10163 +- proto: ClothingHandsGlovesLatex + entities: + - uid: 2212 components: - - rot: -1.5707963267948966 rad - pos: 37.5,-25.5 + - pos: 19.45916,-20.403913 parent: 31 type: Transform - - uid: 10164 + - uid: 7102 components: - - rot: -1.5707963267948966 rad - pos: 36.5,-25.5 - parent: 31 + - flags: InContainer + type: MetaData + - parent: 7110 type: Transform - - uid: 10165 + - canCollide: False + type: Physics +- proto: ClothingHandsGlovesLeather + entities: + - uid: 9670 components: - - rot: -1.5707963267948966 rad - pos: 35.5,-25.5 + - pos: -4.544421,-41.335396 parent: 31 type: Transform - - uid: 10166 +- proto: ClothingHandsGlovesMercFingerless + entities: + - uid: 988 components: - - rot: -1.5707963267948966 rad - pos: 34.5,-25.5 + - pos: 30.104523,-19.311977 parent: 31 type: Transform - - uid: 10168 +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 10029 components: - - pos: 33.5,-24.5 + - pos: 19.51705,-18.456926 parent: 31 type: Transform - - uid: 10169 +- proto: ClothingHeadHatAnimalCatBlack + entities: + - uid: 7971 components: - - pos: 33.5,-23.5 + - pos: 26.502825,-1.4970446 parent: 31 type: Transform - - uid: 10170 +- proto: ClothingHeadHatAnimalHeadslime + entities: + - uid: 3367 components: - - pos: 33.5,-22.5 + - pos: -4.5089555,-12.629585 parent: 31 type: Transform - - uid: 10171 +- proto: ClothingHeadHatBeret + entities: + - uid: 819 components: - - pos: 33.5,-21.5 + - pos: -22.754051,9.462572 parent: 31 type: Transform - - uid: 10172 +- proto: ClothingHeadHatBeretBrigmedic + entities: + - uid: 6607 components: - - pos: 33.5,-20.5 + - pos: 14.371354,-5.1023016 parent: 31 type: Transform - - uid: 10173 +- proto: ClothingHeadHatBowlerHat + entities: + - uid: 9261 components: - - pos: 33.5,-19.5 + - pos: 0.36587167,-19.353008 parent: 31 type: Transform - - uid: 10174 +- proto: ClothingHeadHatCone + entities: + - uid: 9344 components: - - pos: 33.5,-18.5 + - pos: 81.74805,12.8173065 parent: 31 type: Transform - - uid: 10175 + - uid: 11283 components: - - rot: -1.5707963267948966 rad - pos: 32.5,-17.5 + - pos: 81.68901,-7.648547 parent: 31 type: Transform - - uid: 10176 +- proto: ClothingHeadHatFedoraBrown + entities: + - uid: 7484 components: - - rot: -1.5707963267948966 rad - pos: 31.5,-17.5 + - pos: -21.550486,17.73303 parent: 31 type: Transform - - uid: 10177 + - uid: 7857 components: - - rot: -1.5707963267948966 rad - pos: 30.5,-17.5 - parent: 31 + - flags: InContainer + type: MetaData + - parent: 7853 type: Transform - - uid: 10178 + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingHeadHatFlowerCrown + entities: + - uid: 3235 components: - - rot: -1.5707963267948966 rad - pos: 29.5,-17.5 + - pos: 49.449142,-25.427004 parent: 31 type: Transform - - uid: 10179 +- proto: ClothingHeadHatHairflower + entities: + - uid: 4196 components: - - rot: -1.5707963267948966 rad - pos: 28.5,-17.5 + - pos: -3.75686,18.190365 parent: 31 type: Transform - - uid: 10180 + - uid: 9762 components: - - rot: -1.5707963267948966 rad - pos: 27.5,-17.5 + - pos: -16.570389,-38.390144 parent: 31 type: Transform - - uid: 10181 +- proto: ClothingHeadHatHardhatOrange + entities: + - uid: 10803 components: - - rot: -1.5707963267948966 rad - pos: 26.5,-17.5 + - pos: 23.016964,-16.05082 parent: 31 type: Transform - - uid: 10182 +- proto: ClothingHeadHatPaper + entities: + - uid: 10801 components: - - rot: -1.5707963267948966 rad - pos: 25.5,-17.5 + - pos: -15.392213,9.68141 parent: 31 type: Transform - - uid: 10183 +- proto: ClothingHeadHatPirate + entities: + - uid: 4503 components: - - rot: -1.5707963267948966 rad - pos: 24.5,-17.5 + - pos: 36.423782,-15.13722 parent: 31 type: Transform - - uid: 10184 +- proto: ClothingHeadHatPumpkin + entities: + - uid: 7407 components: - - rot: -1.5707963267948966 rad - pos: 23.5,-17.5 + - pos: 48.273617,-26.666399 parent: 31 type: Transform - - uid: 10185 +- proto: ClothingHeadHatUshanka + entities: + - uid: 844 components: - - rot: -1.5707963267948966 rad - pos: 22.5,-17.5 + - pos: -15.464306,-10.5187645 parent: 31 type: Transform - - uid: 10186 + - uid: 7570 components: - - rot: -1.5707963267948966 rad - pos: 21.5,-17.5 + - pos: -15.5245695,-10.430269 parent: 31 type: Transform - - uid: 10187 +- proto: ClothingHeadHatWelding + entities: + - uid: 71 components: - - rot: -1.5707963267948966 rad - pos: 20.5,-17.5 + - pos: -1.6376766,-24.290537 parent: 31 type: Transform - - uid: 10189 + - uid: 8845 components: - - rot: 3.141592653589793 rad - pos: 19.5,-16.5 + - pos: 43.484886,13.560756 parent: 31 type: Transform - - uid: 10190 +- proto: ClothingHeadsetGrey + entities: + - uid: 10480 components: - - rot: 3.141592653589793 rad - pos: 19.5,-15.5 + - rot: 1.5707963267948966 rad + pos: 49.173836,-5.2182446 parent: 31 type: Transform - - uid: 10191 +- proto: ClothingMaskBreath + entities: + - uid: 4147 components: - - rot: 3.141592653589793 rad - pos: 19.5,-14.5 + - pos: -11.563622,-27.408012 parent: 31 type: Transform - - uid: 10192 + - uid: 10661 components: - - rot: 3.141592653589793 rad - pos: 19.5,-13.5 + - pos: 43.593338,-13.568842 parent: 31 type: Transform - - uid: 10193 +- proto: ClothingMaskBreathMedical + entities: + - uid: 10027 components: - - rot: 3.141592653589793 rad - pos: 19.5,-12.5 + - pos: 18.631598,-18.486423 parent: 31 type: Transform - - uid: 10202 +- proto: ClothingMaskGas + entities: + - uid: 2044 components: - - rot: -1.5707963267948966 rad - pos: 14.5,-10.5 + - pos: -17.681976,-22.955162 parent: 31 type: Transform - - uid: 10203 + - uid: 7970 components: - - rot: -1.5707963267948966 rad - pos: 13.5,-10.5 + - pos: 37.548763,-3.266727 parent: 31 type: Transform - - uid: 10204 +- proto: ClothingMaskGasMerc + entities: + - uid: 952 components: - - rot: -1.5707963267948966 rad - pos: 12.5,-10.5 + - pos: 29.33713,-19.311977 parent: 31 type: Transform - - uid: 10205 +- proto: ClothingMaskGasSecurity + entities: + - uid: 7139 components: - - rot: -1.5707963267948966 rad - pos: 11.5,-10.5 + - pos: 3.4708445,-42.623608 parent: 31 type: Transform - - uid: 10285 +- proto: ClothingMaskNeckGaiter + entities: + - uid: 3141 components: - - rot: 3.141592653589793 rad - pos: -35.5,6.5 + - pos: 4.570995,-42.497837 parent: 31 type: Transform - - uid: 10286 +- proto: ClothingMaskSterile + entities: + - uid: 7101 components: - - rot: 3.141592653589793 rad - pos: -35.5,7.5 - parent: 31 + - flags: InContainer + type: MetaData + - parent: 7110 type: Transform - - uid: 10287 + - canCollide: False + type: Physics + - uid: 9034 components: - - rot: 3.141592653589793 rad - pos: -35.5,8.5 + - pos: 19.448904,-20.24775 parent: 31 type: Transform - - uid: 10288 +- proto: ClothingNeckBling + entities: + - uid: 718 components: - - rot: 3.141592653589793 rad - pos: -35.5,9.5 + - pos: -3.31936,17.67474 parent: 31 type: Transform - - uid: 10289 +- proto: ClothingNeckCloakMiner + entities: + - uid: 10813 components: - - rot: 3.141592653589793 rad - pos: -35.5,10.5 + - pos: 6.6956844,-33.563076 parent: 31 type: Transform - - uid: 10290 +- proto: ClothingNeckCloakTrans + entities: + - uid: 9748 components: - - rot: 3.141592653589793 rad - pos: -35.5,11.5 + - pos: -28.4315,17.631725 parent: 31 type: Transform - - uid: 10291 +- proto: ClothingNeckNonBinaryPin + entities: + - uid: 11135 components: - - rot: 3.141592653589793 rad - pos: -35.5,12.5 + - pos: 43.27403,-8.317395 parent: 31 type: Transform - - uid: 10292 +- proto: ClothingNeckScarfStripedBlue + entities: + - uid: 7843 components: - - rot: 3.141592653589793 rad - pos: -35.5,13.5 + - pos: -13.566107,24.548891 parent: 31 type: Transform - - uid: 10293 +- proto: ClothingNeckScarfStripedGreen + entities: + - uid: 9028 components: - - rot: 3.141592653589793 rad - pos: -35.5,14.5 + - pos: 54.455875,-22.53784 parent: 31 type: Transform -- proto: DisposalTrunk +- proto: ClothingNeckScarfStripedRed entities: - - uid: 178 + - uid: 10690 components: - - rot: 3.141592653589793 rad - pos: -11.5,1.5 + - rot: 1.5707963267948966 rad + pos: -16.521442,-39.56699 parent: 31 type: Transform - - uid: 186 +- proto: ClothingNeckScarfStripedZebra + entities: + - uid: 7895 components: - - rot: 3.141592697301183 rad - pos: -17.5,-22.5 + - rot: -1.5707963267948966 rad + pos: -19.198872,-5.9850674 parent: 31 type: Transform - - uid: 215 +- proto: ClothingNeckStethoscope + entities: + - uid: 10905 components: - - pos: 24.5,8.5 + - pos: 8.569585,-4.4095354 parent: 31 type: Transform - - uid: 229 +- proto: ClothingNeckTieRed + entities: + - uid: 7109 components: - - rot: 3.141592697301183 rad - pos: 34.5,-4.5 - parent: 31 + - flags: InContainer + type: MetaData + - parent: 7110 type: Transform - - uid: 241 + - canCollide: False + type: Physics + - uid: 7856 components: - - pos: 37.5,6.5 - parent: 31 + - flags: InContainer + type: MetaData + - parent: 7853 type: Transform - - uid: 273 + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingNeckTransPin + entities: + - uid: 11137 components: - - rot: 1.5707963267948966 rad - pos: -2.5,28.5 + - pos: -24.17542,-23.65307 parent: 31 type: Transform - - uid: 298 +- proto: ClothingOuterArmorBasic + entities: + - uid: 1206 components: - - rot: 4.71238902409608 rad - pos: 11.5,-11.5 + - pos: -11.694116,19.672714 parent: 31 type: Transform - - uid: 350 + - uid: 9622 components: - - pos: -22.5,6.5 + - pos: -11.490991,19.672714 parent: 31 type: Transform - - uid: 769 +- proto: ClothingOuterArmorBulletproof + entities: + - uid: 36 components: - - rot: 1.5707963267948966 rad - pos: 11.5,1.5 + - pos: -11.170591,19.266254 parent: 31 type: Transform - - uid: 837 + - uid: 42 components: - - pos: -29.5,11.5 + - pos: -11.436216,19.297504 parent: 31 type: Transform - - uid: 843 + - uid: 43 components: - - rot: 4.71238902409608 rad - pos: -5.5,-14.5 + - pos: -11.733091,19.297504 parent: 31 type: Transform - - uid: 1474 +- proto: ClothingOuterArmorReflective + entities: + - uid: 8020 components: - - rot: 1.5707963267948966 rad - pos: 6.5,11.5 + - pos: -11.209741,19.672714 parent: 31 type: Transform - - uid: 1769 +- proto: ClothingOuterCoatInspector + entities: + - uid: 7480 components: - - rot: 3.141592653589793 rad - pos: -23.5,-15.5 + - pos: -21.602036,17.352358 parent: 31 type: Transform - - uid: 2437 + - uid: 7854 components: - - pos: -27.5,-7.5 - parent: 31 + - flags: InContainer + type: MetaData + - parent: 7853 type: Transform - - uid: 4206 + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingOuterCoatJensen + entities: + - uid: 9758 components: - rot: -1.5707963267948966 rad - pos: -10.5,-25.5 + pos: -13.577541,-37.66867 parent: 31 type: Transform - - uid: 4795 + - uid: 11245 components: - - rot: 3.141592653589793 rad - pos: 6.5,-30.5 + - pos: -31.464373,10.564828 parent: 31 type: Transform - - uid: 5097 +- proto: ClothingOuterCoatLab + entities: + - uid: 4231 components: - - rot: 3.141592653589793 rad - pos: 14.5,-2.5 - parent: 31 + - flags: InContainer + type: MetaData + - parent: 7110 type: Transform - - uid: 5223 + - canCollide: False + type: Physics +- proto: ClothingOuterCoatPirate + entities: + - uid: 7065 components: - - rot: 3.141592653589793 rad - pos: 8.5,16.5 + - pos: 36.486282,-15.465345 parent: 31 type: Transform - - uid: 5233 +- proto: ClothingOuterHardsuitBasic + entities: + - uid: 3849 components: - - pos: -5.5,17.5 - parent: 31 + - flags: InContainer + type: MetaData + - parent: 7057 type: Transform - - uid: 7152 + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingOuterVestHazard + entities: + - uid: 10789 components: - - rot: 3.141592653589793 rad - pos: -10.5,-20.5 + - pos: 24.612627,13.574452 parent: 31 type: Transform - - uid: 7961 + - uid: 10802 components: - - pos: 29.5,6.5 + - rot: -1.5707963267948966 rad + pos: 23.631699,-16.632479 parent: 31 type: Transform - - uid: 8444 +- proto: ClothingOuterWinterCap + entities: + - uid: 9030 components: - - rot: 1.5707963267948966 rad - pos: -8.5,1.5 + - pos: 10.618964,23.658073 parent: 31 type: Transform - - uid: 9339 +- proto: ClothingOuterWinterCE + entities: + - uid: 9035 components: - - pos: -34.5,6.5 + - pos: 38.383812,-0.3536343 parent: 31 type: Transform - - uid: 10146 +- proto: ClothingOuterWinterCentcom + entities: + - uid: 9036 components: - - rot: 3.141592653589793 rad - pos: 49.5,-30.5 + - pos: 49.408,-22.48963 parent: 31 type: Transform - - uid: 10294 +- proto: ClothingOuterWinterCMO + entities: + - uid: 7088 components: - rot: -1.5707963267948966 rad - pos: -34.5,15.5 + pos: 25.358017,-10.661482 parent: 31 type: Transform -- proto: DisposalUnit +- proto: ClothingOuterWinterCoat entities: - - uid: 187 + - uid: 7644 components: - - pos: -17.5,-22.5 + - pos: 7.310254,-13.535391 parent: 31 type: Transform - - uid: 195 + - uid: 11226 components: - - pos: -29.5,11.5 + - pos: -30.51289,-9.469171 parent: 31 type: Transform - - uid: 205 +- proto: ClothingOuterWinterHoP + entities: + - uid: 10828 components: - - pos: -5.5,17.5 + - rot: -1.5707963267948966 rad + pos: 10.3903475,16.346748 parent: 31 type: Transform - - uid: 210 +- proto: ClothingOuterWinterHoS + entities: + - uid: 9031 components: - - pos: 6.5,11.5 + - pos: -7.499014,20.716234 parent: 31 type: Transform - - uid: 216 +- proto: ClothingOuterWinterQM + entities: + - uid: 9925 components: - - pos: 24.5,8.5 + - rot: -1.5707963267948966 rad + pos: 29.360077,8.344849 parent: 31 type: Transform - - uid: 230 +- proto: ClothingOuterWinterRD + entities: + - uid: 9116 components: - - pos: 34.5,-4.5 + - rot: -1.5707963267948966 rad + pos: -3.6681519,-23.621525 parent: 31 type: Transform - - uid: 242 +- proto: ClothingShoesBootsJack + entities: + - uid: 10692 components: - - pos: 37.5,6.5 + - pos: 41.713104,-10.668272 parent: 31 type: Transform - - uid: 274 +- proto: ClothingShoesBootsMag + entities: + - uid: 1014 components: - - pos: -2.5,28.5 + - pos: 10.330068,10.623066 parent: 31 type: Transform - - uid: 299 + - uid: 1541 components: - - pos: 11.5,-11.5 + - pos: 10.3269205,11.58763 parent: 31 type: Transform - - uid: 332 + - uid: 3136 components: - - pos: 29.5,6.5 + - pos: 10.6550455,11.540755 parent: 31 type: Transform - - uid: 366 + - uid: 7151 components: - - pos: -11.5,1.5 + - pos: 10.642568,10.482441 parent: 31 type: Transform - - uid: 376 + - uid: 10980 components: - - pos: -22.5,6.5 + - pos: 58.78938,-5.6705165 parent: 31 type: Transform - - uid: 844 +- proto: ClothingShoesBootsMerc + entities: + - uid: 1109 components: - - pos: -5.5,-14.5 + - pos: -6.4295473,32.285225 parent: 31 type: Transform - - uid: 1102 +- proto: ClothingShoesBootsPerformer + entities: + - uid: 8319 components: - - pos: 14.5,-2.5 + - pos: 29.355263,-21.266848 parent: 31 type: Transform - - uid: 3378 +- proto: ClothingShoesCult + entities: + - uid: 2066 components: - - pos: -10.5,-25.5 + - pos: 4.5165205,-41.275776 parent: 31 type: Transform - - uid: 4078 +- proto: ClothingShoesFlippers + entities: + - uid: 7969 components: - - pos: -27.5,-7.5 + - pos: 37.55209,-3.407352 parent: 31 type: Transform - - uid: 4772 +- proto: ClothingShoesLeather + entities: + - uid: 7098 components: - - pos: 6.5,-30.5 + - flags: InContainer + type: MetaData + - parent: 7110 + type: Transform + - canCollide: False + type: Physics + - uid: 10585 + components: + - pos: 30.458075,-9.757927 parent: 31 type: Transform - - uid: 5226 +- proto: ClothingShoeSlippersDuck + entities: + - uid: 7858 components: - - pos: 8.5,16.5 + - pos: 26.546747,-24.62174 parent: 31 type: Transform - - uid: 7156 + - uid: 9957 components: - - pos: -10.5,-20.5 + - pos: -24.138485,-21.92873 parent: 31 type: Transform - - uid: 8443 +- proto: ClothingUnderSocksCoder + entities: + - uid: 8146 components: - - pos: -8.5,1.5 + - pos: 60.474884,-1.2823541 parent: 31 type: Transform - - uid: 9050 +- proto: ClothingUniformColorRainbow + entities: + - uid: 8410 components: - - pos: 11.5,1.5 + - pos: 37.603355,-3.5149672 parent: 31 type: Transform - - uid: 9343 +- proto: ClothingUniformJumpskirtDetective + entities: + - uid: 7972 components: - - pos: -34.5,6.5 + - pos: 14.57035,20.510712 parent: 31 type: Transform - - uid: 10145 +- proto: ClothingUniformJumpsuitAncient + entities: + - uid: 8953 components: - - pos: 49.5,-30.5 + - pos: -27.587215,7.5242066 parent: 31 type: Transform - - uid: 10296 +- proto: ClothingUniformJumpsuitBartender + entities: + - uid: 11109 components: - - pos: -34.5,15.5 + - rot: 1.5707963267948966 rad + pos: -34.617214,17.30891 parent: 31 type: Transform -- proto: DisposalYJunction +- proto: ClothingUniformJumpsuitDetective entities: - - uid: 174 + - uid: 7108 components: - - pos: -23.5,-10.5 + - flags: InContainer + type: MetaData + - parent: 7110 + type: Transform + - canCollide: False + type: Physics + - uid: 7458 + components: + - pos: -23.237986,17.742983 parent: 31 type: Transform - - uid: 6931 + - uid: 7973 components: - - pos: -32.5,3.5 + - pos: 14.460975,20.651337 parent: 31 type: Transform - - uid: 7429 +- proto: ClothingUniformJumpsuitDetectiveGrey + entities: + - uid: 9190 components: - - rot: -1.5707963267948966 rad - pos: 29.5,4.5 + - pos: -23.456736,17.524233 parent: 31 type: Transform - - uid: 9558 +- proto: ClothingUniformJumpsuitMercenary + entities: + - uid: 3571 components: - rot: -1.5707963267948966 rad - pos: 3.5,3.5 + pos: 30.429188,-19.665958 parent: 31 type: Transform -- proto: DogBed +- proto: ComfyChair entities: - - uid: 1244 + - uid: 205 components: - - pos: 10.5,20.5 + - pos: -21.5,10.5 parent: 31 type: Transform - - uid: 4297 + - uid: 417 components: - - desc: A comfy-looking raccoon bed. You can even strap your pet in, in case the gravity turns off. - name: raccoon bed - type: MetaData - - pos: 26.5,10.5 + - rot: -1.5707963267948966 rad + pos: -3.5,-20.5 parent: 31 type: Transform - - uid: 8419 + - uid: 478 components: - - pos: 8.5,26.5 + - pos: 10.5,24.5 parent: 31 type: Transform -- proto: DonkpocketBoxSpawner - entities: - - uid: 7439 + - uid: 519 components: - rot: 3.141592653589793 rad - pos: -0.5,-29.5 + pos: -31.5,16.5 parent: 31 type: Transform - - uid: 8044 + - uid: 732 components: - - pos: 18.5,-24.5 + - pos: -31.5,18.5 parent: 31 type: Transform -- proto: DoorElectronics - entities: - - uid: 3887 + - uid: 736 components: - - pos: 18.570042,13.522563 + - pos: 7.5,25.5 parent: 31 type: Transform - - uid: 3888 + - edge: 0 + type: Construction + - uid: 816 components: - - pos: 18.335667,13.600688 + - rot: 3.141592653589793 rad + pos: -22.5,8.5 parent: 31 type: Transform - - uid: 4269 + - uid: 1209 components: - - pos: 29.27434,-1.3043437 + - pos: -30.5,-4.5 parent: 31 type: Transform - - uid: 4284 + - uid: 1715 components: - - pos: 29.614664,-1.306627 + - rot: 3.141592653589793 rad + pos: 38.5,-1.5 parent: 31 type: Transform -- proto: DoubleEmergencyOxygenTankFilled - entities: - - uid: 7950 + - uid: 2131 components: - - pos: 52.51837,-0.3993065 + - rot: 3.141592653589793 rad + pos: -10.5,-7.5 parent: 31 type: Transform -- proto: Dresser - entities: - - uid: 9049 + - uid: 2439 components: - - pos: 7.5,16.5 + - rot: 3.141592653589793 rad + pos: 0.5,-6.5 parent: 31 type: Transform -- proto: DrinkDetFlask - entities: - - uid: 7855 + - uid: 2824 components: - - flags: InContainer - type: MetaData - - parent: 7853 + - rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 31 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: DrinkGoldenCup - entities: - - uid: 535 + - uid: 2893 components: - - pos: -3.053735,18.815365 + - rot: 3.141592653589793 rad + pos: 8.5,17.5 parent: 31 type: Transform -- proto: DrinkGoldschlagerBottleFull - entities: - - uid: 9626 + - uid: 3594 components: - - pos: -3.2734265,17.981327 + - rot: 3.141592653589793 rad + pos: -4.5,0.5 parent: 31 type: Transform -- proto: DrinkHotCoco - entities: - - uid: 9615 + - uid: 4007 components: - - pos: 18.80232,-22.332773 + - pos: 0.5,-4.5 parent: 31 type: Transform -- proto: DrinkIceCreamGlass - entities: - - uid: 9364 + - uid: 4164 components: - - pos: -22.677681,-23.474785 + - pos: -0.5,1.5 parent: 31 type: Transform -- proto: DrinkIcedTeaGlass - entities: - - uid: 9922 + - uid: 4882 components: - - pos: -3.5586867,-1.3939255 + - pos: -8.5,21.5 parent: 31 type: Transform -- proto: DrinkRamen - entities: - - uid: 7848 + - uid: 5065 components: - - pos: -13.225656,24.798891 + - rot: 3.141592653589793 rad + pos: 7.5,23.5 parent: 31 type: Transform -- proto: DrinkRootBeerGlass - entities: - - uid: 7691 + - uid: 7165 components: - - pos: 16.50716,16.62439 + - pos: 12.5,-30.5 parent: 31 type: Transform -- proto: DrinkWaterBottleFull - entities: - - uid: 2480 + - uid: 7331 components: - - flags: InContainer - type: MetaData - - parent: 2363 + - rot: -1.5707963267948966 rad + pos: 23.5,-10.5 + parent: 31 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2481 + - uid: 7373 components: - - flags: InContainer - type: MetaData - - parent: 2363 + - rot: 1.5707963267948966 rad + pos: 0.5,-20.5 + parent: 31 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 3041 + - uid: 7701 components: - - flags: InContainer - type: MetaData - - parent: 2363 + - pos: -36.5,14.5 + parent: 31 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: DrinkWaterCup - entities: - - uid: 5227 + - uid: 7703 components: - - pos: -1.7425596,-29.65949 + - rot: -1.5707963267948966 rad + pos: -23.5,-23.5 parent: 31 type: Transform - - uid: 7457 + - uid: 7851 components: - - pos: -1.5863096,-29.331366 + - pos: 27.5,-24.5 parent: 31 type: Transform - - uid: 7578 + - uid: 8721 components: - - pos: -1.2894346,-29.62824 + - rot: 1.5707963267948966 rad + pos: -36.5,-28.5 parent: 31 type: Transform -- proto: DrinkWhiskeyBottleFull - entities: - - uid: 7459 + - uid: 8722 components: - - pos: -23.675486,16.461733 + - rot: 3.141592653589793 rad + pos: -35.5,-29.5 parent: 31 type: Transform -- proto: DrinkWineGlass - entities: - - uid: 9606 + - uid: 8723 components: - - pos: -39.708706,19.835732 + - rot: 3.141592653589793 rad + pos: -34.5,-29.5 parent: 31 type: Transform - - uid: 9607 + - uid: 10202 components: - - pos: -34.239956,19.757607 + - pos: -22.5,10.5 parent: 31 type: Transform -- proto: Dropper - entities: - - uid: 5090 + - uid: 10213 components: - - pos: 14.514629,0.4460156 + - rot: 3.141592653589793 rad + pos: -21.5,8.5 parent: 31 type: Transform - - uid: 5091 +- proto: ComputerAlert + entities: + - uid: 8800 components: - - pos: 14.514629,0.6335156 + - rot: -1.5707963267948966 rad + pos: 7.5,31.5 parent: 31 type: Transform - - uid: 5092 +- proto: ComputerAnalysisConsole + entities: + - uid: 9292 components: - - pos: 14.530254,0.8210156 + - rot: 1.5707963267948966 rad + pos: -12.5,-30.5 parent: 31 type: Transform -- proto: ElectricGuitarInstrument + - linkedPorts: + 9418: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver + type: DeviceLinkSource +- proto: computerBodyScanner entities: - - uid: 7354 + - uid: 7285 components: - - pos: -18.824911,-9.393147 + - rot: -1.5707963267948966 rad + pos: 20.5,-15.5 parent: 31 type: Transform -- proto: EmergencyLight +- proto: ComputerCargoBounty entities: - - uid: 309 + - uid: 8796 components: - rot: 1.5707963267948966 rad - pos: -40.5,5.5 + pos: 18.5,9.5 parent: 31 type: Transform - - uid: 585 +- proto: ComputerCargoOrders + entities: + - uid: 4309 components: - rot: -1.5707963267948966 rad - pos: -35.5,-3.5 + pos: 16.5,9.5 parent: 31 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 1187 +- proto: ComputerCargoShuttle + entities: + - uid: 4254 components: - - pos: 39.5,6.5 + - rot: -1.5707963267948966 rad + pos: 24.5,15.5 parent: 31 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 1224 +- proto: ComputerComms + entities: + - uid: 1370 components: - - rot: -1.5707963267948966 rad - pos: 10.5,9.5 + - rot: 1.5707963267948966 rad + pos: 6.5,23.5 parent: 31 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 1226 + - uid: 2721 components: - - pos: -4.5,14.5 + - pos: 3.5,32.5 parent: 31 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 1248 +- proto: ComputerCrewMonitoring + entities: + - uid: 955 components: - - rot: -1.5707963267948966 rad - pos: 9.5,30.5 + - pos: 23.5,-9.5 parent: 31 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 1249 + - uid: 2448 components: - - pos: -6.5,-19.5 + - pos: 0.5,32.5 parent: 31 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 1293 + - uid: 7674 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 31 + type: Transform +- proto: ComputerCriminalRecords + entities: + - uid: 2964 components: - rot: -1.5707963267948966 rad - pos: -22.5,-3.5 + pos: -0.5,7.5 parent: 31 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 1299 + - uid: 8803 components: - - pos: -39.5,10.5 + - pos: 8.5,30.5 parent: 31 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 1345 +- proto: ComputerFrame + entities: + - uid: 7085 components: - rot: -1.5707963267948966 rad - pos: 12.5,-3.5 + pos: 10.5,-16.5 parent: 31 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 1512 +- proto: ComputerId + entities: + - uid: 810 components: - - pos: 23.5,13.5 + - pos: 7.5,21.5 parent: 31 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 1605 + - uid: 870 components: - - rot: 1.5707963267948966 rad - pos: 47.5,-3.5 + - rot: -1.5707963267948966 rad + pos: 4.5,31.5 parent: 31 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 2080 + - uid: 1113 components: - - pos: -23.5,11.5 + - pos: -3.5,-19.5 parent: 31 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 5354 + - uid: 2065 components: - - pos: 23.5,5.5 + - rot: -1.5707963267948966 rad + pos: -7.5,21.5 parent: 31 type: Transform - - uid: 7249 + - uid: 2204 components: - - pos: -14.5,5.5 + - pos: 29.5,10.5 parent: 31 type: Transform - - uid: 7254 + - uid: 6840 components: - - pos: 3.5,32.5 + - pos: 24.5,-9.5 parent: 31 type: Transform - - uid: 8839 + - uid: 11014 components: - - pos: -4.5,1.5 + - rot: 1.5707963267948966 rad + pos: 37.5,0.5 parent: 31 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- proto: EmergencyMedipen +- proto: ComputerPowerMonitoring entities: - - uid: 9056 + - uid: 4306 components: - - pos: -19.641325,-9.580671 + - pos: 42.5,4.5 parent: 31 type: Transform -- proto: EmergencyRollerBed +- proto: ComputerRadar entities: - - uid: 1202 + - uid: 579 components: - - pos: 19.443876,-7.543538 + - rot: -1.5707963267948966 rad + pos: 32.5,22.5 parent: 31 type: Transform - - uid: 1914 + - uid: 2447 components: - - pos: 19.428251,-8.387288 + - pos: 6.5,32.5 parent: 31 type: Transform -- proto: Emitter +- proto: ComputerResearchAndDevelopment entities: - - uid: 4364 + - uid: 1070 components: - - rot: -1.5707963267948966 rad - pos: 78.5,6.5 + - pos: -13.5,-24.5 parent: 31 type: Transform - - uid: 4548 + - uid: 4244 components: - - rot: 1.5707963267948966 rad - pos: 64.5,-1.5 + - pos: -4.5,-19.5 parent: 31 type: Transform - - uid: 4556 +- proto: ComputerSalvageExpedition + entities: + - uid: 33 components: - - rot: -1.5707963267948966 rad - pos: 78.5,-1.5 + - pos: 28.5,21.5 parent: 31 type: Transform - - uid: 4650 +- proto: ComputerShuttleCargo + entities: + - uid: 2374 components: - - rot: 1.5707963267948966 rad - pos: 64.5,6.5 + - pos: 23.5,13.5 parent: 31 type: Transform - - uid: 9745 +- proto: ComputerShuttleSalvage + entities: + - uid: 3424 components: - - pos: 67.5,9.5 + - pos: 34.5,35.5 parent: 31 type: Transform - - uid: 10117 +- proto: ComputerSolarControl + entities: + - uid: 4305 components: - - pos: 75.5,9.5 + - pos: 41.5,4.5 parent: 31 type: Transform - - uid: 10119 + - uid: 5184 components: - - rot: 3.141592653589793 rad - pos: 75.5,-4.5 + - pos: -21.5,25.5 parent: 31 type: Transform - - uid: 10120 + - uid: 11207 components: - - rot: 3.141592653589793 rad - pos: 67.5,-4.5 + - rot: 1.5707963267948966 rad + pos: 14.5,-27.5 parent: 31 type: Transform -- proto: EncryptionKeyCargo - entities: - - uid: 10233 - components: - - flags: InContainer - type: MetaData - - parent: 10232 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyCommand - entities: - - uid: 10229 - components: - - flags: InContainer - type: MetaData - - parent: 10228 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyCommon - entities: - - uid: 10243 - components: - - flags: InContainer - type: MetaData - - parent: 10242 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyEngineering +- proto: ComputerStationRecords entities: - - uid: 10235 + - uid: 8515 components: - - flags: InContainer - type: MetaData - - parent: 10234 + - pos: -3.5,14.5 + parent: 31 type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyMedical - entities: - - uid: 10237 + - uid: 9752 components: - - flags: InContainer - type: MetaData - - parent: 10236 + - rot: 1.5707963267948966 rad + pos: -2.5,29.5 + parent: 31 type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyScience +- proto: ComputerSurveillanceCameraMonitor entities: - - uid: 10239 + - uid: 534 components: - - flags: InContainer - type: MetaData - - parent: 10238 + - rot: -1.5707963267948966 rad + pos: 9.5,29.5 + parent: 31 type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeySecurity - entities: - - uid: 10231 + - uid: 2218 components: - - flags: InContainer - type: MetaData - - parent: 10230 + - rot: 1.5707963267948966 rad + pos: 48.5,-4.5 + parent: 31 type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyService +- proto: ComputerTechnologyDiskTerminal entities: - - uid: 10241 + - uid: 591 components: - - flags: InContainer - type: MetaData - - parent: 10240 + - rot: -1.5707963267948966 rad + pos: -14.5,-24.5 + parent: 31 type: Transform - - canCollide: False - type: Physics -- proto: ExosuitFabricator +- proto: ContainmentFieldGenerator entities: - - uid: 7697 + - uid: 4559 components: - - pos: -9.5,-32.5 + - pos: 75.5,-1.5 parent: 31 type: Transform -- proto: ExplosivesSignMed - entities: - - uid: 8897 + - uid: 4561 components: - - pos: -11.5,17.5 + - pos: 67.5,-1.5 parent: 31 type: Transform -- proto: ExtinguisherCabinetFilled - entities: - - uid: 517 + - uid: 6299 components: - - pos: -10.5,12.5 + - pos: 67.5,6.5 parent: 31 type: Transform - - uid: 1868 + - uid: 6321 components: - - pos: 5.5,23.5 + - pos: 75.5,6.5 parent: 31 type: Transform - - uid: 2002 + - uid: 6469 components: - - pos: -18.5,8.5 + - pos: 40.5,8.5 parent: 31 type: Transform - - uid: 4807 + - uid: 6639 components: - - pos: 14.5,-3.5 + - pos: 39.5,8.5 parent: 31 type: Transform - - uid: 4895 +- proto: ConveyorBelt + entities: + - uid: 1771 components: - - pos: -34.5,-10.5 + - pos: 20.5,20.5 parent: 31 type: Transform - - uid: 4899 + - links: + - 1084 + type: DeviceLinkSink + - uid: 3387 components: - - pos: -30.5,10.5 + - pos: 20.5,21.5 parent: 31 type: Transform - - uid: 4900 + - links: + - 1084 + type: DeviceLinkSink + - uid: 3548 components: - - pos: -34.5,-2.5 + - pos: 20.5,23.5 parent: 31 type: Transform - - uid: 4901 + - links: + - 1084 + type: DeviceLinkSink + - uid: 3549 components: - - pos: -16.5,-8.5 + - pos: 20.5,24.5 parent: 31 type: Transform - - uid: 4902 + - links: + - 1084 + type: DeviceLinkSink + - uid: 3550 components: - - pos: -6.5,-16.5 + - pos: 20.5,22.5 parent: 31 type: Transform - - uid: 4903 + - links: + - 1084 + type: DeviceLinkSink + - uid: 7550 components: - - pos: -6.5,-18.5 + - pos: 20.5,19.5 parent: 31 type: Transform - - uid: 4906 + - links: + - 1084 + type: DeviceLinkSink + - uid: 8899 components: - - pos: 24.5,-16.5 + - pos: 20.5,18.5 parent: 31 type: Transform - - uid: 4908 + - links: + - 1084 + type: DeviceLinkSink + - uid: 9138 components: - - pos: 32.5,-5.5 + - rot: 3.141592653589793 rad + pos: 23.5,27.5 parent: 31 type: Transform - - uid: 4909 + - links: + - 7945 + type: DeviceLinkSink + - uid: 9139 components: - - pos: 41.5,-1.5 + - rot: 3.141592653589793 rad + pos: 23.5,26.5 parent: 31 type: Transform - - uid: 4913 + - links: + - 7945 + type: DeviceLinkSink + - uid: 9265 components: - - pos: 17.5,8.5 + - rot: -1.5707963267948966 rad + pos: -35.5,-16.5 parent: 31 type: Transform - - uid: 4914 + - links: + - 10218 + type: DeviceLinkSink + - uid: 9886 components: - - pos: 9.5,12.5 + - rot: -1.5707963267948966 rad + pos: -34.5,-16.5 parent: 31 type: Transform - - opened: True - type: ItemCabinet - - uid: 4916 + - links: + - 10218 + type: DeviceLinkSink + - uid: 10033 components: - - pos: -6.5,18.5 + - rot: 3.141592653589793 rad + pos: -31.5,-18.5 parent: 31 type: Transform - - uid: 4917 + - links: + - 10218 + type: DeviceLinkSink + - uid: 10040 components: - - pos: 0.5,16.5 + - rot: 3.141592653589793 rad + pos: -31.5,-17.5 parent: 31 type: Transform - - uid: 4918 + - links: + - 10218 + type: DeviceLinkSink + - uid: 10043 components: - - pos: 11.5,17.5 + - rot: -1.5707963267948966 rad + pos: -31.5,-16.5 parent: 31 type: Transform - - uid: 4921 + - links: + - 10218 + type: DeviceLinkSink + - uid: 10045 components: - - pos: -3.5,-25.5 + - rot: 3.141592653589793 rad + pos: 22.5,25.5 parent: 31 type: Transform - - uid: 4922 + - links: + - 7945 + type: DeviceLinkSink + - uid: 10046 components: - - pos: -13.5,-23.5 + - pos: 19.5,28.5 parent: 31 type: Transform - - uid: 4923 + - links: + - 1084 + type: DeviceLinkSink + - uid: 10047 components: - - pos: 11.5,-28.5 + - rot: 3.141592653589793 rad + pos: 22.5,18.5 parent: 31 type: Transform - - uid: 5305 + - links: + - 7945 + type: DeviceLinkSink + - uid: 10048 components: - - pos: 17.5,-29.5 + - rot: 3.141592653589793 rad + pos: 22.5,19.5 parent: 31 type: Transform - - uid: 5306 + - links: + - 7945 + type: DeviceLinkSink + - uid: 10049 components: - - pos: -24.5,23.5 + - rot: 3.141592653589793 rad + pos: 22.5,20.5 parent: 31 type: Transform - - uid: 8894 + - links: + - 7945 + type: DeviceLinkSink + - uid: 10050 components: - rot: 3.141592653589793 rad - pos: 51.5,4.5 + pos: 22.5,21.5 parent: 31 type: Transform - - uid: 8905 + - links: + - 7945 + type: DeviceLinkSink + - uid: 10051 components: - - pos: 5.5,29.5 + - rot: 3.141592653589793 rad + pos: 22.5,22.5 parent: 31 type: Transform -- proto: FaxMachineBase - entities: - - uid: 1049 + - links: + - 7945 + type: DeviceLinkSink + - uid: 10052 components: - - pos: 15.5,-6.5 + - rot: 3.141592653589793 rad + pos: 22.5,23.5 parent: 31 type: Transform - - name: medical - type: FaxMachine - - uid: 1264 + - links: + - 7945 + type: DeviceLinkSink + - uid: 10053 components: - - pos: 40.5,4.5 + - rot: 3.141592653589793 rad + pos: 22.5,24.5 parent: 31 type: Transform - - name: engineering - type: FaxMachine - - uid: 6298 + - links: + - 1084 + - 7945 + type: DeviceLinkSink + - uid: 10054 components: - - pos: -2.5,-17.5 + - rot: 3.141592653589793 rad + pos: 23.5,28.5 parent: 31 type: Transform - - name: science - type: FaxMachine - - uid: 7405 + - links: + - 7945 + type: DeviceLinkSink + - uid: 10089 components: - - pos: 24.5,13.5 + - pos: 20.5,25.5 parent: 31 type: Transform - - name: cargo - type: FaxMachine - - uid: 8323 + - links: + - 1084 + type: DeviceLinkSink + - uid: 10090 components: - - pos: 9.5,-28.5 + - pos: 20.5,26.5 parent: 31 type: Transform - - name: library - type: FaxMachine - - uid: 9687 + - links: + - 1084 + type: DeviceLinkSink + - uid: 10091 components: - - pos: 8.5,18.5 + - pos: 19.5,27.5 parent: 31 type: Transform - - name: hop's office - type: FaxMachine -- proto: FaxMachineCaptain - entities: - - uid: 9686 + - links: + - 1084 + type: DeviceLinkSink + - uid: 10092 components: - - pos: 7.5,24.5 + - rot: 1.5707963267948966 rad + pos: 19.5,26.5 parent: 31 type: Transform - - name: captain's office - type: FaxMachine -- proto: FigureSpawner - entities: - - uid: 4782 + - links: + - 1084 + type: DeviceLinkSink + - uid: 10093 components: - - pos: 10.5,-24.5 + - rot: 1.5707963267948966 rad + pos: 22.5,26.5 parent: 31 type: Transform -- proto: FireAlarm - entities: - - uid: 9041 + - links: + - 7945 + type: DeviceLinkSink + - uid: 10109 components: - - rot: 3.141592653589793 rad - pos: -14.5,2.5 + - rot: -1.5707963267948966 rad + pos: -32.5,-16.5 parent: 31 type: Transform - - devices: - - 9972 - - 9971 - - 9970 - - 995 - - 179 - - 337 - type: DeviceList - - uid: 9984 + - links: + - 10218 + type: DeviceLinkSink + - uid: 10110 components: - - rot: 1.5707963267948966 rad - pos: 1.5,-25.5 + - rot: -1.5707963267948966 rad + pos: -33.5,-16.5 parent: 31 type: Transform - - devices: - - 2011 - - 703 - - 704 - type: DeviceList - - uid: 9985 + - links: + - 10218 + type: DeviceLinkSink + - uid: 10215 components: - rot: -1.5707963267948966 rad - pos: 6.5,-14.5 + pos: -36.5,-16.5 parent: 31 type: Transform - - devices: - - 9987 - - 9986 - - 9988 - - 9989 - - 9990 - - 2011 - - 703 - - 704 - type: DeviceList - - uid: 9992 + - links: + - 10218 + type: DeviceLinkSink +- proto: CrateCoffin + entities: + - uid: 9634 components: - - rot: -1.5707963267948966 rad - pos: 5.5,8.5 + - pos: -36.5,15.5 parent: 31 type: Transform - - devices: - - 8954 - - 8956 - - 852 - - 1027 - - 1028 - - 8885 - - 8884 - - 8883 - - 3959 - - 3944 - - 3943 - - 3989 - - 3987 - - 3988 - - 9988 - - 9989 - - 9990 - - 576 - - 1330 - - 1167 - - 7460 - type: DeviceList - - uid: 9993 + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateEmptySpawner + entities: + - uid: 3135 components: - - rot: 3.141592653589793 rad - pos: -25.5,1.5 + - pos: -17.5,13.5 parent: 31 type: Transform - - devices: - - 3928 - - 3934 - - 3935 - - 3969 - - 3970 - - 9972 - - 9971 - - 9970 - - 9994 - - 9995 - type: DeviceList - - uid: 9997 + - uid: 8045 components: - - rot: -1.5707963267948966 rad - pos: -34.5,1.5 + - pos: 10.5,13.5 parent: 31 type: Transform - - devices: - - 9195 - - 9196 - - 9188 - - 3977 - - 3976 - - 3975 - type: DeviceList - - uid: 10002 + - uid: 10012 components: - - rot: -1.5707963267948966 rad - pos: 5.5,27.5 + - pos: 18.5,15.5 parent: 31 type: Transform - - devices: - - 8816 - - 8813 - - 8810 - - 8814 - - 8815 - - 9969 - type: DeviceList - - uid: 10004 +- proto: CrateEngineeringAMEJar + entities: + - uid: 6626 components: - - rot: 3.141592653589793 rad - pos: 5.5,15.5 + - pos: 50.5,8.5 parent: 31 type: Transform - - devices: - - 8885 - - 8883 - - 8884 - - 5115 - type: DeviceList - - uid: 10006 + - containers: + - EntityStorageComponent + - entity_storage + type: Construction +- proto: CrateEngineeringAMEShielding + entities: + - uid: 6603 components: - - pos: 18.5,6.5 + - pos: 50.5,9.5 parent: 31 type: Transform - - devices: - - 4028 - - 4030 - - 4026 - - 8856 - - 8858 - - 8857 - type: DeviceList - - uid: 10023 + - containers: + - EntityStorageComponent + - entity_storage + type: Construction + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7777 + - 3475 + - 3476 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: CrateEngineeringCableHV + entities: + - uid: 11208 + components: + - pos: 16.5,-29.5 + parent: 31 + type: Transform +- proto: CrateFilledSpawner + entities: + - uid: 1637 + components: + - pos: 22.5,7.5 + parent: 31 + type: Transform + - uid: 7140 + components: + - pos: 20.5,7.5 + parent: 31 + type: Transform + - uid: 7141 + components: + - pos: 21.5,7.5 + parent: 31 + type: Transform + - uid: 9796 + components: + - pos: -19.5,-36.5 + parent: 31 + type: Transform +- proto: CrateHydroponics + entities: + - uid: 9679 + components: + - pos: 1.5,-42.5 + parent: 31 + type: Transform +- proto: CrateMedicalSurgery + entities: + - uid: 7264 + components: + - pos: 20.5,-17.5 + parent: 31 + type: Transform +- proto: CrateNPCHamlet + entities: + - uid: 2458 + components: + - pos: 0.5,29.5 + parent: 31 + type: Transform +- proto: CratePrivateSecure + entities: + - uid: 2363 + components: + - pos: -2.5,16.5 + parent: 31 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2480 + - 2481 + - 3041 + - 3485 + - 3831 + - 3832 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: CrateTrashCart + entities: + - uid: 4318 + components: + - pos: 40.5,-3.5 + parent: 31 + type: Transform + - uid: 6904 + components: + - pos: 23.5,-18.5 + parent: 31 + type: Transform + - uid: 7087 + components: + - pos: -7.5,-12.5 + parent: 31 + type: Transform +- proto: CrateTrashCartFilled + entities: + - uid: 10468 + components: + - pos: -31.5,-13.5 + parent: 31 + type: Transform +- proto: CrateTrashCartJani + entities: + - uid: 125 + components: + - pos: -20.5,-11.5 + parent: 31 + type: Transform +- proto: CrayonBox + entities: + - uid: 263 + components: + - pos: -19.62684,-5.2181053 + parent: 31 + type: Transform +- proto: CrayonRainbow + entities: + - uid: 7635 + components: + - flags: InContainer + type: MetaData + - parent: 7057 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: Crematorium + entities: + - uid: 7631 components: - rot: -1.5707963267948966 rad - pos: 1.5,-3.5 + pos: -35.5,19.5 parent: 31 type: Transform - - devices: - - 3943 - - 3944 - - 3959 - - 1167 - - 1330 - - 576 - - 4525 - - 4528 - - 4529 - type: DeviceList -- proto: FireAxeCabinetFilled +- proto: CrewMonitoringServer entities: - - uid: 4031 + - uid: 879 components: - - pos: -1.5,32.5 + - pos: 57.5,-9.5 parent: 31 type: Transform - - uid: 6579 +- proto: CrowbarRed + entities: + - uid: 2093 components: - - pos: 42.5,14.5 + - pos: -3.7752368,12.511271 parent: 31 type: Transform -- proto: FireExtinguisher + - uid: 7562 + components: + - rot: -1.5707963267948966 rad + pos: -52.74314,-11.621845 + parent: 31 + type: Transform + - uid: 8834 + components: + - pos: 8.498364,31.458696 + parent: 31 + type: Transform + - uid: 9114 + components: + - pos: -10.463156,-6.5336485 + parent: 31 + type: Transform +- proto: CryoPod entities: - - uid: 1537 + - uid: 5231 components: - - pos: 43.520054,13.493817 + - pos: 7.5,-15.5 parent: 31 type: Transform -- proto: Firelock +- proto: CryoxadoneBeakerSmall entities: - - uid: 179 + - uid: 6015 components: - - pos: -10.5,4.5 + - pos: 7.2794514,-13.17127 parent: 31 type: Transform - - uid: 328 +- proto: CrystalGrey + entities: + - uid: 4782 components: - - pos: -22.5,14.5 + - pos: 3.5,-35.5 parent: 31 type: Transform - - uid: 337 +- proto: CultAltarSpawner + entities: + - uid: 9689 components: - - pos: -10.5,3.5 + - pos: 7.5,-41.5 parent: 31 type: Transform - - uid: 409 +- proto: CyborgEndoskeleton + entities: + - uid: 942 components: - - pos: -6.5,-8.5 + - pos: -0.49411595,-30.373203 parent: 31 type: Transform - - uid: 575 +- proto: d20Dice + entities: + - uid: 2357 components: - - pos: 15.5,-3.5 + - pos: -23.834803,-5.3811545 parent: 31 type: Transform - - uid: 576 + - uid: 4723 + components: + - pos: 11.36982,-23.570984 + parent: 31 + type: Transform +- proto: d6Dice + entities: + - uid: 4249 + components: + - pos: 10.80732,-23.477234 + parent: 31 + type: Transform + - uid: 7292 + components: + - pos: 10.46357,-23.664734 + parent: 31 + type: Transform +- proto: d8Dice + entities: + - uid: 2358 + components: + - pos: -24.287928,-6.3967795 + parent: 31 + type: Transform + - uid: 7293 + components: + - pos: 11.27607,-24.265812 + parent: 31 + type: Transform +- proto: DefibrillatorCabinetFilled + entities: + - uid: 7340 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-12.5 + parent: 31 + type: Transform + - uid: 9834 + components: + - pos: 1.5,29.5 + parent: 31 + type: Transform + - uid: 9835 + components: + - pos: -32.5,6.5 + parent: 31 + type: Transform + - uid: 10032 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-17.5 + parent: 31 + type: Transform +- proto: DeployableBarrier + entities: + - uid: 2502 + components: + - pos: -6.5,17.5 + parent: 31 + type: Transform + - uid: 9369 + components: + - pos: -5.5,17.5 + parent: 31 + type: Transform +- proto: DeskBell + entities: + - uid: 2195 + components: + - pos: 7.9000525,-3.1977162 + parent: 31 + type: Transform +- proto: DiceBag + entities: + - uid: 10207 + components: + - pos: 10.362751,-24.393734 + parent: 31 + type: Transform + - uid: 10208 + components: + - pos: 10.756269,-24.370586 + parent: 31 + type: Transform +- proto: DiseaseDiagnoser + entities: + - uid: 8435 + components: + - pos: 19.5,-5.5 + parent: 31 + type: Transform +- proto: DisgustingSweptSoup + entities: + - uid: 9020 + components: + - pos: -12.586034,24.541399 + parent: 31 + type: Transform +- proto: DisposalBend + entities: + - uid: 61 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-27.5 + parent: 31 + type: Transform + - uid: 238 + components: + - rot: 4.71238902409608 rad + pos: 37.5,3.5 + parent: 31 + type: Transform + - uid: 310 + components: + - pos: 8.5,17.5 + parent: 31 + type: Transform + - uid: 399 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-27.5 + parent: 31 + type: Transform + - uid: 838 + components: + - rot: 3.141592697301183 rad + pos: -29.5,10.5 + parent: 31 + type: Transform + - uid: 839 + components: + - pos: -28.5,10.5 + parent: 31 + type: Transform + - uid: 848 + components: + - pos: -8.5,-25.5 + parent: 31 + type: Transform + - uid: 849 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-20.5 + parent: 31 + type: Transform + - uid: 874 + components: + - pos: 7.5,11.5 + parent: 31 + type: Transform + - uid: 927 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-16.5 + parent: 31 + type: Transform + - uid: 2012 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-16.5 + parent: 31 + type: Transform + - uid: 2299 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-11.5 + parent: 31 + type: Transform + - uid: 2315 + components: + - pos: -5.5,12.5 + parent: 31 + type: Transform + - uid: 2335 + components: + - pos: -4.5,-16.5 + parent: 31 + type: Transform + - uid: 2874 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-8.5 + parent: 31 + type: Transform + - uid: 3780 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-27.5 + parent: 31 + type: Transform + - uid: 3793 + components: + - pos: -19.5,-18.5 + parent: 31 + type: Transform + - uid: 3883 + components: + - pos: 3.5,28.5 + parent: 31 + type: Transform + - uid: 4056 + components: + - pos: -10.5,-18.5 + parent: 31 + type: Transform + - uid: 4090 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-18.5 + parent: 31 + type: Transform + - uid: 4206 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-14.5 + parent: 31 + type: Transform + - uid: 4703 + components: + - pos: -30.5,-14.5 + parent: 31 + type: Transform + - uid: 4790 + components: + - pos: 6.5,-27.5 + parent: 31 + type: Transform + - uid: 5100 + components: + - pos: 14.5,-0.5 + parent: 31 + type: Transform + - uid: 5292 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-16.5 + parent: 31 + type: Transform + - uid: 6586 + components: + - pos: 33.5,-17.5 + parent: 31 + type: Transform + - uid: 7420 + components: + - pos: 18.5,-10.5 + parent: 31 + type: Transform + - uid: 7430 + components: + - rot: 3.141592653589793 rad + pos: 29.5,3.5 + parent: 31 + type: Transform + - uid: 8445 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,1.5 + parent: 31 + type: Transform + - uid: 9338 + components: + - rot: 3.141592653589793 rad + pos: -34.5,3.5 + parent: 31 + type: Transform + - uid: 10147 + components: + - pos: 49.5,-29.5 + parent: 31 + type: Transform + - uid: 10149 + components: + - rot: 3.141592653589793 rad + pos: 47.5,-29.5 + parent: 31 + type: Transform + - uid: 10150 + components: + - pos: 47.5,-28.5 + parent: 31 + type: Transform + - uid: 10151 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-28.5 + parent: 31 + type: Transform + - uid: 10152 + components: + - pos: 45.5,-26.5 + parent: 31 + type: Transform + - uid: 10153 + components: + - rot: 3.141592653589793 rad + pos: 44.5,-26.5 + parent: 31 + type: Transform + - uid: 10154 + components: + - pos: 44.5,-25.5 + parent: 31 + type: Transform + - uid: 10167 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-25.5 + parent: 31 + type: Transform + - uid: 10188 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-17.5 + parent: 31 + type: Transform + - uid: 10194 + components: + - pos: 19.5,-11.5 + parent: 31 + type: Transform + - uid: 10195 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-11.5 + parent: 31 + type: Transform + - uid: 10206 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-10.5 + parent: 31 + type: Transform + - uid: 10284 + components: + - rot: 3.141592653589793 rad + pos: -35.5,5.5 + parent: 31 + type: Transform + - uid: 10295 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,15.5 + parent: 31 + type: Transform +- proto: DisposalJunction + entities: + - uid: 176 + components: + - rot: 4.71238902409608 rad + pos: -28.5,3.5 + parent: 31 + type: Transform + - uid: 177 + components: + - rot: 4.71238902409608 rad + pos: -22.5,3.5 + parent: 31 + type: Transform + - uid: 945 + components: + - pos: -34.5,5.5 + parent: 31 + type: Transform + - uid: 2016 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-11.5 + parent: 31 + type: Transform + - uid: 2290 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-0.5 + parent: 31 + type: Transform + - uid: 2386 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-10.5 + parent: 31 + type: Transform + - uid: 4038 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-18.5 + parent: 31 + type: Transform + - uid: 4149 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,3.5 + parent: 31 + type: Transform + - uid: 4806 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-25.5 + parent: 31 + type: Transform + - uid: 4828 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-18.5 + parent: 31 + type: Transform + - uid: 7265 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,4.5 + parent: 31 + type: Transform + - uid: 9587 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,4.5 + parent: 31 + type: Transform + - uid: 10297 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-18.5 + parent: 31 + type: Transform +- proto: DisposalJunctionFlipped + entities: + - uid: 166 + components: + - rot: 4.71238902409608 rad + pos: 34.5,3.5 + parent: 31 + type: Transform + - uid: 170 + components: + - pos: 3.5,4.5 + parent: 31 + type: Transform + - uid: 313 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,4.5 + parent: 31 + type: Transform + - uid: 352 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,3.5 + parent: 31 + type: Transform + - uid: 365 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,3.5 + parent: 31 + type: Transform + - uid: 1026 + components: + - pos: 3.5,17.5 + parent: 31 + type: Transform + - uid: 3408 + components: + - pos: -32.5,-8.5 + parent: 31 + type: Transform + - uid: 3794 + components: + - pos: -15.5,-25.5 + parent: 31 + type: Transform + - uid: 3946 + components: + - rot: 3.141592653589793 rad + pos: 12.5,1.5 + parent: 31 + type: Transform +- proto: DisposalPipe + entities: + - uid: 56 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,4.5 + parent: 31 + type: Transform + - uid: 169 + components: + - pos: 3.5,5.5 + parent: 31 + type: Transform + - uid: 171 + components: + - pos: 3.5,7.5 + parent: 31 + type: Transform + - uid: 180 + components: + - pos: 3.5,8.5 + parent: 31 + type: Transform + - uid: 181 + components: + - pos: 3.5,9.5 + parent: 31 + type: Transform + - uid: 189 + components: + - pos: -28.5,5.5 + parent: 31 + type: Transform + - uid: 190 + components: + - pos: -28.5,6.5 + parent: 31 + type: Transform + - uid: 191 + components: + - pos: -28.5,7.5 + parent: 31 + type: Transform + - uid: 192 + components: + - pos: -28.5,8.5 + parent: 31 + type: Transform + - uid: 193 + components: + - pos: -28.5,9.5 + parent: 31 + type: Transform + - uid: 212 + components: + - pos: 24.5,5.5 + parent: 31 + type: Transform + - uid: 213 + components: + - pos: 24.5,6.5 + parent: 31 + type: Transform + - uid: 214 + components: + - pos: 24.5,7.5 + parent: 31 + type: Transform + - uid: 223 + components: + - rot: 3.141592697301183 rad + pos: 34.5,1.5 + parent: 31 + type: Transform + - uid: 224 + components: + - rot: 3.141592697301183 rad + pos: 34.5,0.5 + parent: 31 + type: Transform + - uid: 225 + components: + - rot: 3.141592697301183 rad + pos: 34.5,-0.5 + parent: 31 + type: Transform + - uid: 226 + components: + - rot: 3.141592697301183 rad + pos: 34.5,-1.5 + parent: 31 + type: Transform + - uid: 227 + components: + - rot: 3.141592697301183 rad + pos: 34.5,-2.5 + parent: 31 + type: Transform + - uid: 228 + components: + - rot: 3.141592697301183 rad + pos: 34.5,-3.5 + parent: 31 + type: Transform + - uid: 231 + components: + - rot: 4.71238902409608 rad + pos: 30.5,3.5 + parent: 31 + type: Transform + - uid: 232 + components: + - rot: 4.71238902409608 rad + pos: 36.5,3.5 + parent: 31 + type: Transform + - uid: 233 + components: + - rot: 4.71238902409608 rad + pos: 35.5,3.5 + parent: 31 + type: Transform + - uid: 234 + components: + - rot: 3.141592697301183 rad + pos: 34.5,2.5 + parent: 31 + type: Transform + - uid: 235 + components: + - rot: 4.71238902409608 rad + pos: 33.5,3.5 + parent: 31 + type: Transform + - uid: 236 + components: + - rot: 4.71238902409608 rad + pos: 32.5,3.5 + parent: 31 + type: Transform + - uid: 237 + components: + - rot: 4.71238902409608 rad + pos: 31.5,3.5 + parent: 31 + type: Transform + - uid: 239 + components: + - pos: 37.5,4.5 + parent: 31 + type: Transform + - uid: 240 + components: + - pos: 37.5,5.5 + parent: 31 + type: Transform + - uid: 243 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,28.5 + parent: 31 + type: Transform + - uid: 244 + components: + - pos: 3.5,10.5 + parent: 31 + type: Transform + - uid: 246 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 31 + type: Transform + - uid: 265 + components: + - pos: 3.5,27.5 + parent: 31 + type: Transform + - uid: 266 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-18.5 + parent: 31 + type: Transform + - uid: 270 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,28.5 + parent: 31 + type: Transform + - uid: 271 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,28.5 + parent: 31 + type: Transform + - uid: 272 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,28.5 + parent: 31 + type: Transform + - uid: 277 + components: + - rot: 3.141592697301183 rad + pos: 3.5,-8.5 + parent: 31 + type: Transform + - uid: 278 + components: + - rot: 3.141592697301183 rad + pos: 3.5,-7.5 + parent: 31 + type: Transform + - uid: 279 + components: + - rot: 3.141592697301183 rad + pos: 3.5,-6.5 + parent: 31 + type: Transform + - uid: 280 + components: + - rot: 3.141592697301183 rad + pos: 3.5,-5.5 + parent: 31 + type: Transform + - uid: 281 + components: + - rot: 3.141592697301183 rad + pos: 3.5,-4.5 + parent: 31 + type: Transform + - uid: 282 + components: + - rot: 3.141592697301183 rad + pos: 3.5,-3.5 + parent: 31 + type: Transform + - uid: 283 + components: + - rot: 3.141592697301183 rad + pos: 3.5,-2.5 + parent: 31 + type: Transform + - uid: 284 + components: + - rot: 3.141592697301183 rad + pos: 3.5,-1.5 + parent: 31 + type: Transform + - uid: 285 + components: + - rot: 3.141592697301183 rad + pos: 3.5,-0.5 + parent: 31 + type: Transform + - uid: 286 + components: + - rot: 3.141592697301183 rad + pos: 3.5,0.5 + parent: 31 + type: Transform + - uid: 287 + components: + - rot: 3.141592697301183 rad + pos: 3.5,1.5 + parent: 31 + type: Transform + - uid: 288 + components: + - rot: 3.141592697301183 rad + pos: 3.5,2.5 + parent: 31 + type: Transform + - uid: 289 + components: + - rot: 3.141592697301183 rad + pos: 3.5,-10.5 + parent: 31 + type: Transform + - uid: 291 + components: + - rot: 4.71238902409608 rad + pos: 5.5,-11.5 + parent: 31 + type: Transform + - uid: 292 + components: + - rot: 4.71238902409608 rad + pos: 6.5,-11.5 + parent: 31 + type: Transform + - uid: 293 + components: + - rot: 4.71238902409608 rad + pos: 7.5,-11.5 + parent: 31 + type: Transform + - uid: 294 + components: + - rot: 4.71238902409608 rad + pos: 8.5,-11.5 + parent: 31 + type: Transform + - uid: 295 + components: + - rot: 4.71238902409608 rad + pos: 4.5,-11.5 + parent: 31 + type: Transform + - uid: 296 + components: + - rot: 4.71238902409608 rad + pos: 9.5,-11.5 + parent: 31 + type: Transform + - uid: 301 + components: + - pos: -5.5,7.5 + parent: 31 + type: Transform + - uid: 302 + components: + - rot: 3.141592697301183 rad + pos: 12.5,0.5 + parent: 31 + type: Transform + - uid: 304 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 31 + type: Transform + - uid: 311 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,17.5 + parent: 31 + type: Transform + - uid: 314 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,4.5 + parent: 31 + type: Transform + - uid: 315 + components: + - rot: 3.141592697301183 rad + pos: 12.5,2.5 + parent: 31 + type: Transform + - uid: 316 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,4.5 + parent: 31 + type: Transform + - uid: 317 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,4.5 + parent: 31 + type: Transform + - uid: 318 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,4.5 + parent: 31 + type: Transform + - uid: 319 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,4.5 + parent: 31 + type: Transform + - uid: 320 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,4.5 + parent: 31 + type: Transform + - uid: 321 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,4.5 + parent: 31 + type: Transform + - uid: 322 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,4.5 + parent: 31 + type: Transform + - uid: 323 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,4.5 + parent: 31 + type: Transform + - uid: 324 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,4.5 + parent: 31 + type: Transform + - uid: 325 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,4.5 + parent: 31 + type: Transform + - uid: 326 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,4.5 + parent: 31 + type: Transform + - uid: 327 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,4.5 + parent: 31 + type: Transform + - uid: 330 + components: + - pos: 3.5,6.5 + parent: 31 + type: Transform + - uid: 334 + components: + - rot: 3.141592697301183 rad + pos: 3.5,-9.5 + parent: 31 + type: Transform + - uid: 342 + components: + - rot: 3.141592653589793 rad + pos: -11.5,2.5 + parent: 31 + type: Transform + - uid: 344 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-27.5 + parent: 31 + type: Transform + - uid: 348 + components: + - pos: -22.5,4.5 + parent: 31 + type: Transform + - uid: 349 + components: + - pos: -22.5,5.5 + parent: 31 + type: Transform + - uid: 353 + components: + - rot: 4.71238902409608 rad + pos: -6.5,3.5 + parent: 31 + type: Transform + - uid: 355 + components: + - rot: 4.71238902409608 rad + pos: -4.5,3.5 + parent: 31 + type: Transform + - uid: 356 + components: + - rot: 4.71238902409608 rad + pos: -3.5,3.5 + parent: 31 + type: Transform + - uid: 357 + components: + - rot: 4.71238902409608 rad + pos: -2.5,3.5 + parent: 31 + type: Transform + - uid: 358 + components: + - rot: 4.71238902409608 rad + pos: -1.5,3.5 + parent: 31 + type: Transform + - uid: 359 + components: + - rot: 4.71238902409608 rad + pos: -0.5,3.5 + parent: 31 + type: Transform + - uid: 361 + components: + - rot: 4.71238902409608 rad + pos: 1.5,3.5 + parent: 31 + type: Transform + - uid: 362 + components: + - rot: 4.71238902409608 rad + pos: -8.5,3.5 + parent: 31 + type: Transform + - uid: 363 + components: + - rot: 4.71238902409608 rad + pos: -9.5,3.5 + parent: 31 + type: Transform + - uid: 364 + components: + - rot: 4.71238902409608 rad + pos: -10.5,3.5 + parent: 31 + type: Transform + - uid: 367 + components: + - rot: 4.71238902409608 rad + pos: -13.5,3.5 + parent: 31 + type: Transform + - uid: 368 + components: + - rot: 4.71238902409608 rad + pos: -14.5,3.5 + parent: 31 + type: Transform + - uid: 369 + components: + - rot: 4.71238902409608 rad + pos: -15.5,3.5 + parent: 31 + type: Transform + - uid: 370 + components: + - rot: 4.71238902409608 rad + pos: -16.5,3.5 + parent: 31 + type: Transform + - uid: 371 + components: + - rot: 4.71238902409608 rad + pos: -17.5,3.5 + parent: 31 + type: Transform + - uid: 372 + components: + - rot: 4.71238902409608 rad + pos: -18.5,3.5 + parent: 31 + type: Transform + - uid: 373 + components: + - rot: 4.71238902409608 rad + pos: -19.5,3.5 + parent: 31 + type: Transform + - uid: 374 + components: + - rot: 4.71238902409608 rad + pos: -20.5,3.5 + parent: 31 + type: Transform + - uid: 375 + components: + - rot: 4.71238902409608 rad + pos: -21.5,3.5 + parent: 31 + type: Transform + - uid: 377 + components: + - rot: 4.71238902409608 rad + pos: -23.5,3.5 + parent: 31 + type: Transform + - uid: 378 + components: + - rot: 4.71238902409608 rad + pos: -24.5,3.5 + parent: 31 + type: Transform + - uid: 379 + components: + - rot: 4.71238902409608 rad + pos: -25.5,3.5 + parent: 31 + type: Transform + - uid: 380 + components: + - rot: 4.71238902409608 rad + pos: -26.5,3.5 + parent: 31 + type: Transform + - uid: 381 + components: + - rot: 4.71238902409608 rad + pos: -27.5,3.5 + parent: 31 + type: Transform + - uid: 382 + components: + - pos: -28.5,4.5 + parent: 31 + type: Transform + - uid: 383 + components: + - rot: 4.71238902409608 rad + pos: -29.5,3.5 + parent: 31 + type: Transform + - uid: 384 + components: + - rot: 4.71238902409608 rad + pos: -30.5,3.5 + parent: 31 + type: Transform + - uid: 385 + components: + - rot: 4.71238902409608 rad + pos: -31.5,3.5 + parent: 31 + type: Transform + - uid: 386 + components: + - pos: -32.5,2.5 + parent: 31 + type: Transform + - uid: 387 + components: + - pos: -32.5,1.5 + parent: 31 + type: Transform + - uid: 388 + components: + - pos: -32.5,0.5 + parent: 31 + type: Transform + - uid: 389 + components: + - pos: -32.5,-0.5 + parent: 31 + type: Transform + - uid: 390 + components: + - pos: -32.5,-1.5 + parent: 31 + type: Transform + - uid: 391 + components: + - pos: -32.5,-2.5 + parent: 31 + type: Transform + - uid: 392 + components: + - pos: -32.5,-3.5 + parent: 31 + type: Transform + - uid: 393 + components: + - pos: -32.5,-4.5 + parent: 31 + type: Transform + - uid: 394 + components: + - pos: -32.5,-5.5 + parent: 31 + type: Transform + - uid: 395 + components: + - pos: -32.5,-6.5 + parent: 31 + type: Transform + - uid: 396 + components: + - pos: -32.5,-7.5 + parent: 31 + type: Transform + - uid: 405 + components: + - pos: -15.5,-23.5 + parent: 31 + type: Transform + - uid: 406 + components: + - pos: -15.5,-24.5 + parent: 31 + type: Transform + - uid: 414 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-25.5 + parent: 31 + type: Transform + - uid: 624 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-10.5 + parent: 31 + type: Transform + - uid: 758 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-10.5 + parent: 31 + type: Transform + - uid: 788 + components: + - pos: -14.5,-17.5 + parent: 31 + type: Transform + - uid: 846 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-27.5 + parent: 31 + type: Transform + - uid: 847 + components: + - pos: -15.5,-26.5 + parent: 31 + type: Transform + - uid: 851 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-23.5 + parent: 31 + type: Transform + - uid: 872 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-24.5 + parent: 31 + type: Transform + - uid: 921 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,3.5 + parent: 31 + type: Transform + - uid: 946 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-25.5 + parent: 31 + type: Transform + - uid: 947 + components: + - pos: -15.5,-21.5 + parent: 31 + type: Transform + - uid: 1031 + components: + - pos: -15.5,-22.5 + parent: 31 + type: Transform + - uid: 1062 + components: + - pos: 7.5,5.5 + parent: 31 + type: Transform + - uid: 1101 + components: + - pos: 7.5,6.5 + parent: 31 + type: Transform + - uid: 1221 + components: + - pos: 7.5,7.5 + parent: 31 + type: Transform + - uid: 1362 + components: + - pos: 7.5,8.5 + parent: 31 + type: Transform + - uid: 1375 + components: + - pos: 7.5,10.5 + parent: 31 + type: Transform + - uid: 1493 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-18.5 + parent: 31 + type: Transform + - uid: 1684 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-26.5 + parent: 31 + type: Transform + - uid: 1701 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-27.5 + parent: 31 + type: Transform + - uid: 2014 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-13.5 + parent: 31 + type: Transform + - uid: 2015 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-12.5 + parent: 31 + type: Transform + - uid: 2141 + components: + - pos: -8.5,-27.5 + parent: 31 + type: Transform + - uid: 2143 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,17.5 + parent: 31 + type: Transform + - uid: 2160 + components: + - pos: 3.5,21.5 + parent: 31 + type: Transform + - uid: 2190 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-18.5 + parent: 31 + type: Transform + - uid: 2260 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-18.5 + parent: 31 + type: Transform + - uid: 2296 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-16.5 + parent: 31 + type: Transform + - uid: 2305 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,12.5 + parent: 31 + type: Transform + - uid: 2306 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,12.5 + parent: 31 + type: Transform + - uid: 2308 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,12.5 + parent: 31 + type: Transform + - uid: 2314 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-16.5 + parent: 31 + type: Transform + - uid: 2337 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-16.5 + parent: 31 + type: Transform + - uid: 2385 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-9.5 + parent: 31 + type: Transform + - uid: 2390 + components: + - pos: -10.5,-19.5 + parent: 31 + type: Transform + - uid: 2456 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-16.5 + parent: 31 + type: Transform + - uid: 2527 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,17.5 + parent: 31 + type: Transform + - uid: 2843 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-20.5 + parent: 31 + type: Transform + - uid: 2845 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-18.5 + parent: 31 + type: Transform + - uid: 2846 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-19.5 + parent: 31 + type: Transform + - uid: 2847 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-21.5 + parent: 31 + type: Transform + - uid: 2848 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-18.5 + parent: 31 + type: Transform + - uid: 2849 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-18.5 + parent: 31 + type: Transform + - uid: 2855 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-18.5 + parent: 31 + type: Transform + - uid: 2857 + components: + - pos: -8.5,-26.5 + parent: 31 + type: Transform + - uid: 2858 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-24.5 + parent: 31 + type: Transform + - uid: 2859 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-23.5 + parent: 31 + type: Transform + - uid: 2861 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-22.5 + parent: 31 + type: Transform + - uid: 2862 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-16.5 + parent: 31 + type: Transform + - uid: 2863 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-8.5 + parent: 31 + type: Transform + - uid: 2864 + components: + - pos: -8.5,-30.5 + parent: 31 + type: Transform + - uid: 3354 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-10.5 + parent: 31 + type: Transform + - uid: 3377 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,4.5 + parent: 31 + type: Transform + - uid: 3381 + components: + - pos: -8.5,-29.5 + parent: 31 + type: Transform + - uid: 3382 + components: + - pos: -8.5,-28.5 + parent: 31 + type: Transform + - uid: 3383 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-25.5 + parent: 31 + type: Transform + - uid: 3593 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-8.5 + parent: 31 + type: Transform + - uid: 3596 + components: + - pos: -32.5,-10.5 + parent: 31 + type: Transform + - uid: 3731 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-16.5 + parent: 31 + type: Transform + - uid: 3741 + components: + - pos: -32.5,-13.5 + parent: 31 + type: Transform + - uid: 3745 + components: + - pos: -8.5,-31.5 + parent: 31 + type: Transform + - uid: 3747 + components: + - pos: -32.5,-12.5 + parent: 31 + type: Transform + - uid: 3748 + components: + - pos: -32.5,-11.5 + parent: 31 + type: Transform + - uid: 3868 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,17.5 + parent: 31 + type: Transform + - uid: 3876 + components: + - pos: -28.5,-17.5 + parent: 31 + type: Transform + - uid: 3877 + components: + - pos: 3.5,20.5 + parent: 31 + type: Transform + - uid: 3939 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,28.5 + parent: 31 + type: Transform + - uid: 4036 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-16.5 + parent: 31 + type: Transform + - uid: 4118 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-18.5 + parent: 31 + type: Transform + - uid: 4158 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-16.5 + parent: 31 + type: Transform + - uid: 4183 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-16.5 + parent: 31 + type: Transform + - uid: 4199 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-16.5 + parent: 31 + type: Transform + - uid: 4211 + components: + - pos: -5.5,9.5 + parent: 31 + type: Transform + - uid: 4329 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-16.5 + parent: 31 + type: Transform + - uid: 4664 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-18.5 + parent: 31 + type: Transform + - uid: 4728 + components: + - pos: 3.5,-21.5 + parent: 31 + type: Transform + - uid: 4739 + components: + - pos: 3.5,-20.5 + parent: 31 + type: Transform + - uid: 4747 + components: + - pos: 3.5,-24.5 + parent: 31 + type: Transform + - uid: 4748 + components: + - pos: 3.5,-23.5 + parent: 31 + type: Transform + - uid: 4749 + components: + - pos: 3.5,-22.5 + parent: 31 + type: Transform + - uid: 4792 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-28.5 + parent: 31 + type: Transform + - uid: 4793 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-29.5 + parent: 31 + type: Transform + - uid: 4798 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-27.5 + parent: 31 + type: Transform + - uid: 4799 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-27.5 + parent: 31 + type: Transform + - uid: 4800 + components: + - pos: 3.5,-16.5 + parent: 31 + type: Transform + - uid: 4801 + components: + - pos: 3.5,-14.5 + parent: 31 + type: Transform + - uid: 4802 + components: + - pos: 3.5,-15.5 + parent: 31 + type: Transform + - uid: 4803 + components: + - pos: 3.5,-18.5 + parent: 31 + type: Transform + - uid: 4804 + components: + - pos: 3.5,-17.5 + parent: 31 + type: Transform + - uid: 4805 + components: + - pos: 3.5,-19.5 + parent: 31 + type: Transform + - uid: 4811 + components: + - pos: 3.5,-26.5 + parent: 31 + type: Transform + - uid: 4812 + components: + - pos: 3.5,-25.5 + parent: 31 + type: Transform + - uid: 4878 + components: + - pos: -5.5,8.5 + parent: 31 + type: Transform + - uid: 4969 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-21.5 + parent: 31 + type: Transform + - uid: 5085 + components: + - pos: -5.5,11.5 + parent: 31 + type: Transform + - uid: 5099 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-1.5 + parent: 31 + type: Transform + - uid: 5144 + components: + - pos: -5.5,10.5 + parent: 31 + type: Transform + - uid: 5191 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-25.5 + parent: 31 + type: Transform + - uid: 5232 + components: + - pos: -5.5,6.5 + parent: 31 + type: Transform + - uid: 5234 + components: + - pos: -5.5,4.5 + parent: 31 + type: Transform + - uid: 5235 + components: + - pos: -5.5,5.5 + parent: 31 + type: Transform + - uid: 5250 + components: + - pos: -32.5,-9.5 + parent: 31 + type: Transform + - uid: 5291 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-8.5 + parent: 31 + type: Transform + - uid: 5758 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-22.5 + parent: 31 + type: Transform + - uid: 7380 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-20.5 + parent: 31 + type: Transform + - uid: 7381 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-25.5 + parent: 31 + type: Transform + - uid: 7421 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-10.5 + parent: 31 + type: Transform + - uid: 7427 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-25.5 + parent: 31 + type: Transform + - uid: 7451 + components: + - pos: 7.5,9.5 + parent: 31 + type: Transform + - uid: 7452 + components: + - rot: 3.141592653589793 rad + pos: 3.5,11.5 + parent: 31 + type: Transform + - uid: 7962 + components: + - pos: 29.5,5.5 + parent: 31 + type: Transform + - uid: 8171 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-2.5 + parent: 31 + type: Transform + - uid: 8442 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 31 + type: Transform + - uid: 8446 + components: + - rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 31 + type: Transform + - uid: 9171 + components: + - pos: -4.5,6.5 + parent: 31 + type: Transform + - uid: 9221 + components: + - rot: 3.141592653589793 rad + pos: -4.5,9.5 + parent: 31 + type: Transform + - uid: 9229 + components: + - rot: 3.141592653589793 rad + pos: 3.5,12.5 + parent: 31 + type: Transform + - uid: 9230 + components: + - rot: 3.141592653589793 rad + pos: 3.5,13.5 + parent: 31 + type: Transform + - uid: 9324 + components: + - rot: 3.141592653589793 rad + pos: 3.5,16.5 + parent: 31 + type: Transform + - uid: 9340 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,3.5 + parent: 31 + type: Transform + - uid: 9341 + components: + - rot: 3.141592653589793 rad + pos: -34.5,4.5 + parent: 31 + type: Transform + - uid: 9378 + components: + - rot: 3.141592653589793 rad + pos: 3.5,15.5 + parent: 31 + type: Transform + - uid: 9513 + components: + - rot: 3.141592653589793 rad + pos: 3.5,14.5 + parent: 31 + type: Transform + - uid: 9520 + components: + - pos: 3.5,22.5 + parent: 31 + type: Transform + - uid: 9521 + components: + - pos: 3.5,23.5 + parent: 31 + type: Transform + - uid: 9522 + components: + - pos: 3.5,24.5 + parent: 31 + type: Transform + - uid: 9523 + components: + - pos: 3.5,25.5 + parent: 31 + type: Transform + - uid: 9524 + components: + - pos: 3.5,26.5 + parent: 31 + type: Transform + - uid: 9544 + components: + - pos: 10.5,-6.5 + parent: 31 + type: Transform + - uid: 9559 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,4.5 + parent: 31 + type: Transform + - uid: 9588 + components: + - pos: 12.5,3.5 + parent: 31 + type: Transform + - uid: 9599 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 31 + type: Transform + - uid: 9633 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,10.5 + parent: 31 + type: Transform + - uid: 9638 + components: + - pos: 13.5,8.5 + parent: 31 + type: Transform + - uid: 9649 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,4.5 + parent: 31 + type: Transform + - uid: 9650 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,4.5 + parent: 31 + type: Transform + - uid: 9651 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,4.5 + parent: 31 + type: Transform + - uid: 9652 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,4.5 + parent: 31 + type: Transform + - uid: 9653 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,4.5 + parent: 31 + type: Transform + - uid: 9655 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,4.5 + parent: 31 + type: Transform + - uid: 9847 + components: + - rot: 3.141592653589793 rad + pos: 3.5,18.5 + parent: 31 + type: Transform + - uid: 9849 + components: + - rot: 3.141592653589793 rad + pos: 3.5,19.5 + parent: 31 + type: Transform + - uid: 10148 + components: + - rot: -1.5707963267948966 rad + pos: 48.5,-29.5 + parent: 31 + type: Transform + - uid: 10155 + components: + - pos: 45.5,-27.5 + parent: 31 + type: Transform + - uid: 10156 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,-28.5 + parent: 31 + type: Transform + - uid: 10157 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-25.5 + parent: 31 + type: Transform + - uid: 10158 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-25.5 + parent: 31 + type: Transform + - uid: 10159 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-25.5 + parent: 31 + type: Transform + - uid: 10160 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-25.5 + parent: 31 + type: Transform + - uid: 10161 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-25.5 + parent: 31 + type: Transform + - uid: 10162 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-25.5 + parent: 31 + type: Transform + - uid: 10163 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-25.5 + parent: 31 + type: Transform + - uid: 10164 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-25.5 + parent: 31 + type: Transform + - uid: 10165 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-25.5 + parent: 31 + type: Transform + - uid: 10166 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-25.5 + parent: 31 + type: Transform + - uid: 10168 + components: + - pos: 33.5,-24.5 + parent: 31 + type: Transform + - uid: 10169 + components: + - pos: 33.5,-23.5 + parent: 31 + type: Transform + - uid: 10170 + components: + - pos: 33.5,-22.5 + parent: 31 + type: Transform + - uid: 10171 + components: + - pos: 33.5,-21.5 + parent: 31 + type: Transform + - uid: 10172 + components: + - pos: 33.5,-20.5 + parent: 31 + type: Transform + - uid: 10173 + components: + - pos: 33.5,-19.5 + parent: 31 + type: Transform + - uid: 10174 + components: + - pos: 33.5,-18.5 + parent: 31 + type: Transform + - uid: 10175 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-17.5 + parent: 31 + type: Transform + - uid: 10176 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-17.5 + parent: 31 + type: Transform + - uid: 10177 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-17.5 + parent: 31 + type: Transform + - uid: 10178 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-17.5 + parent: 31 + type: Transform + - uid: 10179 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-17.5 + parent: 31 + type: Transform + - uid: 10180 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-17.5 + parent: 31 + type: Transform + - uid: 10181 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-17.5 + parent: 31 + type: Transform + - uid: 10182 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-17.5 + parent: 31 + type: Transform + - uid: 10183 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-17.5 + parent: 31 + type: Transform + - uid: 10184 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-17.5 + parent: 31 + type: Transform + - uid: 10185 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-17.5 + parent: 31 + type: Transform + - uid: 10186 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-17.5 + parent: 31 + type: Transform + - uid: 10187 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-17.5 + parent: 31 + type: Transform + - uid: 10189 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-16.5 + parent: 31 + type: Transform + - uid: 10190 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-15.5 + parent: 31 + type: Transform + - uid: 10191 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-14.5 + parent: 31 + type: Transform + - uid: 10192 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-13.5 + parent: 31 + type: Transform + - uid: 10193 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-12.5 + parent: 31 + type: Transform + - uid: 10203 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-10.5 + parent: 31 + type: Transform + - uid: 10204 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-10.5 + parent: 31 + type: Transform + - uid: 10205 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-10.5 + parent: 31 + type: Transform + - uid: 10280 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-14.5 + parent: 31 + type: Transform + - uid: 10281 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-15.5 + parent: 31 + type: Transform + - uid: 10282 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-16.5 + parent: 31 + type: Transform + - uid: 10283 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-17.5 + parent: 31 + type: Transform + - uid: 10285 + components: + - rot: 3.141592653589793 rad + pos: -35.5,6.5 + parent: 31 + type: Transform + - uid: 10286 + components: + - rot: 3.141592653589793 rad + pos: -35.5,7.5 + parent: 31 + type: Transform + - uid: 10287 + components: + - rot: 3.141592653589793 rad + pos: -35.5,8.5 + parent: 31 + type: Transform + - uid: 10288 + components: + - rot: 3.141592653589793 rad + pos: -35.5,9.5 + parent: 31 + type: Transform + - uid: 10289 + components: + - rot: 3.141592653589793 rad + pos: -35.5,10.5 + parent: 31 + type: Transform + - uid: 10290 + components: + - rot: 3.141592653589793 rad + pos: -35.5,11.5 + parent: 31 + type: Transform + - uid: 10291 + components: + - rot: 3.141592653589793 rad + pos: -35.5,12.5 + parent: 31 + type: Transform + - uid: 10292 + components: + - rot: 3.141592653589793 rad + pos: -35.5,13.5 + parent: 31 + type: Transform + - uid: 10293 + components: + - rot: 3.141592653589793 rad + pos: -35.5,14.5 + parent: 31 + type: Transform + - uid: 10298 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-18.5 + parent: 31 + type: Transform + - uid: 10444 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-1.5 + parent: 31 + type: Transform + - uid: 11254 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-8.5 + parent: 31 + type: Transform +- proto: DisposalTrunk + entities: + - uid: 178 + components: + - rot: 3.141592653589793 rad + pos: -11.5,1.5 + parent: 31 + type: Transform + - uid: 215 + components: + - pos: 24.5,8.5 + parent: 31 + type: Transform + - uid: 229 + components: + - rot: 3.141592697301183 rad + pos: 34.5,-4.5 + parent: 31 + type: Transform + - uid: 241 + components: + - pos: 37.5,6.5 + parent: 31 + type: Transform + - uid: 273 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,28.5 + parent: 31 + type: Transform + - uid: 350 + components: + - pos: -22.5,6.5 + parent: 31 + type: Transform + - uid: 769 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,1.5 + parent: 31 + type: Transform + - uid: 837 + components: + - pos: -29.5,11.5 + parent: 31 + type: Transform + - uid: 1474 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,11.5 + parent: 31 + type: Transform + - uid: 2313 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-32.5 + parent: 31 + type: Transform + - uid: 2322 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,12.5 + parent: 31 + type: Transform + - uid: 2334 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-19.5 + parent: 31 + type: Transform + - uid: 2437 + components: + - pos: -27.5,-7.5 + parent: 31 + type: Transform + - uid: 2531 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-17.5 + parent: 31 + type: Transform + - uid: 4795 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-30.5 + parent: 31 + type: Transform + - uid: 5097 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-2.5 + parent: 31 + type: Transform + - uid: 5223 + components: + - rot: 3.141592653589793 rad + pos: 8.5,16.5 + parent: 31 + type: Transform + - uid: 5671 + components: + - pos: 14.5,-8.5 + parent: 31 + type: Transform + - uid: 7120 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-20.5 + parent: 31 + type: Transform + - uid: 7961 + components: + - pos: 29.5,6.5 + parent: 31 + type: Transform + - uid: 7987 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-3.5 + parent: 31 + type: Transform + - uid: 8444 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,1.5 + parent: 31 + type: Transform + - uid: 9339 + components: + - pos: -34.5,6.5 + parent: 31 + type: Transform + - uid: 10020 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-18.5 + parent: 31 + type: Transform + - uid: 10146 + components: + - rot: 3.141592653589793 rad + pos: 49.5,-30.5 + parent: 31 + type: Transform + - uid: 10294 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,15.5 + parent: 31 + type: Transform + - uid: 10300 + components: + - pos: -25.5,-15.5 + parent: 31 + type: Transform +- proto: DisposalUnit + entities: + - uid: 195 + components: + - pos: -29.5,11.5 + parent: 31 + type: Transform + - uid: 210 + components: + - pos: 6.5,11.5 + parent: 31 + type: Transform + - uid: 216 + components: + - pos: 24.5,8.5 + parent: 31 + type: Transform + - uid: 230 + components: + - pos: 34.5,-4.5 + parent: 31 + type: Transform + - uid: 242 + components: + - pos: 37.5,6.5 + parent: 31 + type: Transform + - uid: 274 + components: + - pos: -2.5,28.5 + parent: 31 + type: Transform + - uid: 332 + components: + - pos: 29.5,6.5 + parent: 31 + type: Transform + - uid: 366 + components: + - pos: -11.5,1.5 + parent: 31 + type: Transform + - uid: 376 + components: + - pos: -22.5,6.5 + parent: 31 + type: Transform + - uid: 1102 + components: + - pos: 14.5,-2.5 + parent: 31 + type: Transform + - uid: 2266 + components: + - pos: -12.5,-19.5 + parent: 31 + type: Transform + - uid: 2520 + components: + - pos: 14.5,-8.5 + parent: 31 + type: Transform + - uid: 3726 + components: + - pos: -25.5,-15.5 + parent: 31 + type: Transform + - uid: 4078 + components: + - pos: -27.5,-7.5 + parent: 31 + type: Transform + - uid: 4368 + components: + - pos: -9.5,12.5 + parent: 31 + type: Transform + - uid: 4772 + components: + - pos: 6.5,-30.5 + parent: 31 + type: Transform + - uid: 5226 + components: + - pos: 8.5,16.5 + parent: 31 + type: Transform + - uid: 7587 + components: + - pos: -14.5,-20.5 + parent: 31 + type: Transform + - uid: 8130 + components: + - pos: -4.5,-17.5 + parent: 31 + type: Transform + - uid: 8443 + components: + - pos: -8.5,1.5 + parent: 31 + type: Transform + - uid: 9343 + components: + - pos: -34.5,6.5 + parent: 31 + type: Transform + - uid: 9417 + components: + - pos: -8.5,-32.5 + parent: 31 + type: Transform + - uid: 10145 + components: + - pos: 49.5,-30.5 + parent: 31 + type: Transform + - uid: 10296 + components: + - pos: -34.5,15.5 + parent: 31 + type: Transform + - uid: 10475 + components: + - pos: 12.5,-3.5 + parent: 31 + type: Transform +- proto: DisposalYJunction + entities: + - uid: 6931 + components: + - pos: -32.5,3.5 + parent: 31 + type: Transform + - uid: 7429 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,4.5 + parent: 31 + type: Transform + - uid: 9558 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 31 + type: Transform +- proto: DogBed + entities: + - uid: 1244 + components: + - pos: 10.5,20.5 + parent: 31 + type: Transform + - uid: 4297 + components: + - desc: A comfy-looking raccoon bed. You can even strap your pet in, in case the gravity turns off. + name: raccoon bed + type: MetaData + - pos: 26.5,10.5 + parent: 31 + type: Transform + - uid: 4735 + components: + - pos: 21.5,-9.5 + parent: 31 + type: Transform + - uid: 8419 + components: + - pos: 8.5,26.5 + parent: 31 + type: Transform +- proto: DonkpocketBoxSpawner + entities: + - uid: 8044 + components: + - pos: 18.5,-24.5 + parent: 31 + type: Transform +- proto: DoorElectronics + entities: + - uid: 4269 + components: + - pos: 29.27434,-1.3043437 + parent: 31 + type: Transform + - uid: 4284 + components: + - pos: 29.614664,-1.306627 + parent: 31 + type: Transform +- proto: Dresser + entities: + - uid: 9049 + components: + - pos: 7.5,16.5 + parent: 31 + type: Transform +- proto: DrinkBottleRum + entities: + - uid: 10630 + components: + - pos: 42.56693,-8.254273 + parent: 31 + type: Transform +- proto: DrinkBottleVodka + entities: + - uid: 10588 + components: + - rot: 1.5707963267948966 rad + pos: -15.293089,-12.048656 + parent: 31 + type: Transform + - uid: 10589 + components: + - rot: -1.5707963267948966 rad + pos: -14.584726,-11.104703 + parent: 31 + type: Transform + - uid: 10590 + components: + - pos: -14.761818,-11.281694 + parent: 31 + type: Transform +- proto: DrinkDeadRumGlass + entities: + - uid: 10660 + components: + - pos: 41.438732,-8.355759 + parent: 31 + type: Transform +- proto: DrinkDetFlask + entities: + - uid: 7855 + components: + - flags: InContainer + type: MetaData + - parent: 7853 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: DrinkDoctorsDelightGlass + entities: + - uid: 1110 + components: + - pos: 22.757565,-9.802636 + parent: 31 + type: Transform +- proto: DrinkGlass + entities: + - uid: 10625 + components: + - pos: 40.353294,-10.29438 + parent: 31 + type: Transform + - uid: 10626 + components: + - pos: 40.382812,-10.471372 + parent: 31 + type: Transform + - uid: 10627 + components: + - pos: 40.530388,-10.353377 + parent: 31 + type: Transform +- proto: DrinkGoldenCup + entities: + - uid: 535 + components: + - pos: -3.053735,18.815365 + parent: 31 + type: Transform +- proto: DrinkGoldschlagerBottleFull + entities: + - uid: 9626 + components: + - pos: -3.2734265,17.981327 + parent: 31 + type: Transform +- proto: DrinkGreenTeaGlass + entities: + - uid: 10662 + components: + - pos: 42.91449,-8.318105 + parent: 31 + type: Transform +- proto: DrinkHotCoco + entities: + - uid: 2173 + components: + - pos: 7.752981,-13.56489 + parent: 31 + type: Transform +- proto: DrinkHotCoffee + entities: + - uid: 10538 + components: + - pos: -17.21707,-26.040907 + parent: 31 + type: Transform + - uid: 10790 + components: + - pos: 22.658688,13.036925 + parent: 31 + type: Transform +- proto: DrinkIceCreamGlass + entities: + - uid: 9364 + components: + - pos: -22.677681,-23.474785 + parent: 31 + type: Transform +- proto: DrinkIcedTeaCan + entities: + - uid: 10759 + components: + - pos: -48.660885,-9.377042 + parent: 31 + type: Transform +- proto: DrinkIcedTeaGlass + entities: + - uid: 9922 + components: + - pos: -3.5586867,-1.3939255 + parent: 31 + type: Transform +- proto: DrinkLemonJuice + entities: + - uid: 10820 + components: + - pos: 45.26447,-20.914085 + parent: 31 + type: Transform +- proto: DrinkMeadGlass + entities: + - uid: 2952 + components: + - pos: -31.680155,17.680439 + parent: 31 + type: Transform +- proto: DrinkMilkshake + entities: + - uid: 1589 + components: + - pos: 60.502117,-8.214837 + parent: 31 + type: Transform +- proto: DrinkMugMetal + entities: + - uid: 4205 + components: + - pos: -10.86558,-31.534925 + parent: 31 + type: Transform +- proto: DrinkMugRed + entities: + - uid: 674 + components: + - pos: -4.1449943,14.039462 + parent: 31 + type: Transform +- proto: DrinkRamen + entities: + - uid: 7848 + components: + - pos: -13.225656,24.798891 + parent: 31 + type: Transform +- proto: DrinkRootBeerGlass + entities: + - uid: 7691 + components: + - pos: 16.50716,16.62439 + parent: 31 + type: Transform +- proto: DrinkShaker + entities: + - uid: 10628 + components: + - pos: 42.86208,-10.353377 + parent: 31 + type: Transform +- proto: DrinkTequilaSunriseGlass + entities: + - uid: 10649 + components: + - pos: 43.593338,-8.411646 + parent: 31 + type: Transform +- proto: DrinkVodkaBottleFull + entities: + - uid: 1409 + components: + - pos: -15.794847,-11.134202 + parent: 31 + type: Transform + - uid: 10586 + components: + - pos: -15.4701805,-10.721223 + parent: 31 + type: Transform +- proto: DrinkVodkaGlass + entities: + - uid: 10587 + components: + - pos: -15.440666,-11.399689 + parent: 31 + type: Transform +- proto: DrinkWaterBottleFull + entities: + - uid: 622 + components: + - pos: -9.481841,-18.214483 + parent: 31 + type: Transform + - uid: 2480 + components: + - flags: InContainer + type: MetaData + - parent: 2363 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2481 + components: + - flags: InContainer + type: MetaData + - parent: 2363 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 3041 + components: + - flags: InContainer + type: MetaData + - parent: 2363 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 10794 + components: + - pos: 45.32292,-20.249031 + parent: 31 + type: Transform +- proto: DrinkWaterCup + entities: + - uid: 4089 + components: + - pos: -9.776992,-18.538967 + parent: 31 + type: Transform + - uid: 10795 + components: + - pos: 45.647587,-20.367025 + parent: 31 + type: Transform + - uid: 10796 + components: + - pos: 45.529526,-20.544016 + parent: 31 + type: Transform +- proto: DrinkWhiskeyBottleFull + entities: + - uid: 7459 + components: + - pos: -23.675486,16.461733 + parent: 31 + type: Transform +- proto: DrinkWineGlass + entities: + - uid: 9803 + components: + - pos: -15.868861,-39.21571 + parent: 31 + type: Transform +- proto: Dropper + entities: + - uid: 5090 + components: + - pos: 14.514629,0.4460156 + parent: 31 + type: Transform + - uid: 5091 + components: + - pos: 14.514629,0.6335156 + parent: 31 + type: Transform + - uid: 5092 + components: + - pos: 14.530254,0.8210156 + parent: 31 + type: Transform +- proto: ElectricGuitarInstrument + entities: + - uid: 9275 + components: + - rot: 1.5707963267948966 rad + pos: -19.346447,-6.2505536 + parent: 31 + type: Transform +- proto: EmergencyLight + entities: + - uid: 309 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,5.5 + parent: 31 + type: Transform + - uid: 346 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,-4.5 + parent: 31 + type: Transform + - uid: 585 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-3.5 + parent: 31 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 1187 + components: + - pos: 39.5,6.5 + parent: 31 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 1224 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,9.5 + parent: 31 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 1226 + components: + - pos: -4.5,14.5 + parent: 31 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 1248 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,30.5 + parent: 31 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 1293 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-3.5 + parent: 31 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 1299 + components: + - pos: -39.5,10.5 + parent: 31 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 1345 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-3.5 + parent: 31 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 1512 + components: + - pos: 23.5,13.5 + parent: 31 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 2080 + components: + - pos: -23.5,11.5 + parent: 31 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 5354 + components: + - pos: 23.5,5.5 + parent: 31 + type: Transform + - uid: 7249 + components: + - pos: -14.5,5.5 + parent: 31 + type: Transform + - uid: 7254 + components: + - pos: 3.5,32.5 + parent: 31 + type: Transform + - uid: 8839 + components: + - pos: -4.5,1.5 + parent: 31 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 10310 + components: + - pos: -9.5,-25.5 + parent: 31 + type: Transform + - uid: 10311 + components: + - pos: -6.5,-14.5 + parent: 31 + type: Transform + - uid: 10312 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-16.5 + parent: 31 + type: Transform +- proto: EmergencyMedipen + entities: + - uid: 7355 + components: + - pos: -19.375961,-7.548489 + parent: 31 + type: Transform + - uid: 10988 + components: + - pos: 12.5220375,-4.6149173 + parent: 31 + type: Transform +- proto: EmergencyRollerBed + entities: + - uid: 1202 + components: + - pos: 19.443876,-7.543538 + parent: 31 + type: Transform +- proto: Emitter + entities: + - uid: 4364 + components: + - rot: -1.5707963267948966 rad + pos: 78.5,6.5 + parent: 31 + type: Transform + - uid: 4548 + components: + - rot: 1.5707963267948966 rad + pos: 64.5,-1.5 + parent: 31 + type: Transform + - uid: 4556 + components: + - rot: -1.5707963267948966 rad + pos: 78.5,-1.5 + parent: 31 + type: Transform + - uid: 4650 + components: + - rot: 1.5707963267948966 rad + pos: 64.5,6.5 + parent: 31 + type: Transform + - uid: 9745 + components: + - pos: 67.5,9.5 + parent: 31 + type: Transform + - uid: 10117 + components: + - pos: 75.5,9.5 + parent: 31 + type: Transform + - uid: 10119 + components: + - rot: 3.141592653589793 rad + pos: 75.5,-4.5 + parent: 31 + type: Transform + - uid: 10120 + components: + - rot: 3.141592653589793 rad + pos: 67.5,-4.5 + parent: 31 + type: Transform +- proto: EncryptionKeyCargo + entities: + - uid: 9154 + components: + - flags: InContainer + type: MetaData + - parent: 9096 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyCommand + entities: + - uid: 3410 + components: + - flags: InContainer + type: MetaData + - parent: 3371 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyCommon + entities: + - uid: 9066 + components: + - flags: InContainer + type: MetaData + - parent: 9065 + type: Transform + - canCollide: False + type: Physics + - uid: 10896 + components: + - rot: 1.5707963267948966 rad + pos: 48.434895,-3.386529 + parent: 31 + type: Transform + - uid: 10897 + components: + - rot: 1.5707963267948966 rad + pos: 48.611988,-3.445526 + parent: 31 + type: Transform +- proto: EncryptionKeyEngineering + entities: + - uid: 10233 + components: + - flags: InContainer + type: MetaData + - parent: 10232 + type: Transform + - canCollide: False + type: Physics + - uid: 10898 + components: + - pos: 48.936653,-5.4514256 + parent: 31 + type: Transform +- proto: EncryptionKeyMedical + entities: + - uid: 8122 + components: + - flags: InContainer + type: MetaData + - parent: 8120 + type: Transform + - canCollide: False + type: Physics + - uid: 10894 + components: + - rot: -1.5707963267948966 rad + pos: 55.474125,-11.511058 + parent: 31 + type: Transform +- proto: EncryptionKeyScience + entities: + - uid: 4604 + components: + - flags: InContainer + type: MetaData + - parent: 4590 + type: Transform + - canCollide: False + type: Physics + - uid: 10895 + components: + - pos: 56.448124,-11.363565 + parent: 31 + type: Transform +- proto: EncryptionKeySecurity + entities: + - uid: 8164 + components: + - flags: InContainer + type: MetaData + - parent: 8163 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyService + entities: + - uid: 9188 + components: + - flags: InContainer + type: MetaData + - parent: 9179 + type: Transform + - canCollide: False + type: Physics +- proto: ExosuitFabricator + entities: + - uid: 9537 + components: + - pos: -0.5,-24.5 + parent: 31 + type: Transform +- proto: ExplosivesSignMed + entities: + - uid: 8897 + components: + - pos: -11.5,17.5 + parent: 31 + type: Transform +- proto: ExtendedEmergencyOxygenTank + entities: + - uid: 3730 + components: + - pos: -11.445563,-27.496508 + parent: 31 + type: Transform +- proto: ExtinguisherCabinet + entities: + - uid: 10537 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-31.5 + parent: 31 + type: Transform +- proto: ExtinguisherCabinetFilled + entities: + - uid: 517 + components: + - pos: -10.5,12.5 + parent: 31 + type: Transform + - uid: 1868 + components: + - pos: 5.5,23.5 + parent: 31 + type: Transform + - uid: 4807 + components: + - pos: 14.5,-3.5 + parent: 31 + type: Transform + - uid: 4895 + components: + - pos: -34.5,-10.5 + parent: 31 + type: Transform + - uid: 4899 + components: + - pos: -30.5,10.5 + parent: 31 + type: Transform + - uid: 4900 + components: + - pos: -34.5,-2.5 + parent: 31 + type: Transform + - uid: 4901 + components: + - pos: -16.5,-8.5 + parent: 31 + type: Transform + - uid: 4908 + components: + - pos: 32.5,-5.5 + parent: 31 + type: Transform + - uid: 4909 + components: + - pos: 41.5,-1.5 + parent: 31 + type: Transform + - uid: 4913 + components: + - pos: 17.5,8.5 + parent: 31 + type: Transform + - uid: 4914 + components: + - pos: 9.5,12.5 + parent: 31 + type: Transform + - opened: True + type: ItemCabinet + - uid: 4916 + components: + - pos: -6.5,18.5 + parent: 31 + type: Transform + - uid: 4917 + components: + - pos: 0.5,16.5 + parent: 31 + type: Transform + - uid: 4918 + components: + - pos: 11.5,17.5 + parent: 31 + type: Transform + - uid: 4923 + components: + - pos: 11.5,-28.5 + parent: 31 + type: Transform + - uid: 5305 + components: + - pos: 17.5,-29.5 + parent: 31 + type: Transform + - uid: 5306 + components: + - pos: -24.5,23.5 + parent: 31 + type: Transform + - uid: 7435 + components: + - pos: -12.5,-26.5 + parent: 31 + type: Transform + - uid: 8894 + components: + - rot: 3.141592653589793 rad + pos: 51.5,4.5 + parent: 31 + type: Transform + - uid: 8905 + components: + - pos: 5.5,29.5 + parent: 31 + type: Transform + - uid: 10889 + components: + - pos: 55.5,-5.5 + parent: 31 + type: Transform +- proto: FaxMachineBase + entities: + - uid: 683 + components: + - pos: 14.5,-4.5 + parent: 31 + type: Transform + - destinationAddress: Medical + name: Medical + type: FaxMachine + - uid: 1264 + components: + - pos: 40.5,4.5 + parent: 31 + type: Transform + - name: engineering + type: FaxMachine + - uid: 2045 + components: + - pos: -17.5,-25.5 + parent: 31 + type: Transform + - destinationAddress: Science + name: Science + type: FaxMachine + - uid: 7954 + components: + - pos: -17.5,11.5 + parent: 31 + type: Transform + - destinationAddress: Permanent Cell + name: Permanent Cell + type: FaxMachine + - uid: 8323 + components: + - pos: 9.5,-28.5 + parent: 31 + type: Transform + - name: library + type: FaxMachine + - uid: 8994 + components: + - pos: 13.5,12.5 + parent: 31 + type: Transform + - destinationAddress: Cargo + name: Cargo + type: FaxMachine + - uid: 9687 + components: + - pos: 8.5,18.5 + parent: 31 + type: Transform + - name: hop's office + type: FaxMachine + - uid: 10825 + components: + - pos: 1.5,32.5 + parent: 31 + type: Transform + - destinationAddress: bridge + name: bridge + type: FaxMachine +- proto: FaxMachineCaptain + entities: + - uid: 9686 + components: + - pos: 7.5,24.5 + parent: 31 + type: Transform + - name: captain's office + type: FaxMachine +- proto: filingCabinetDrawerRandom + entities: + - uid: 4637 + components: + - pos: -10.5,-30.5 + parent: 31 + type: Transform + - uid: 8890 + components: + - pos: 9.5,18.5 + parent: 31 + type: Transform +- proto: filingCabinetRandom + entities: + - uid: 4216 + components: + - pos: 6.5,26.5 + parent: 31 + type: Transform + - uid: 5628 + components: + - pos: 6.5,-5.5 + parent: 31 + type: Transform + - uid: 7710 + components: + - pos: 15.5,12.5 + parent: 31 + type: Transform + - uid: 8492 + components: + - pos: -2.5,14.5 + parent: 31 + type: Transform +- proto: filingCabinetTallRandom + entities: + - uid: 1424 + components: + - pos: -0.5,31.5 + parent: 31 + type: Transform +- proto: FireAlarm + entities: + - uid: 888 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-24.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 9732 + - 9735 + - 7344 + - 2872 + - 2891 + - 7379 + type: DeviceNetwork + - devices: + - 9732 + - 9735 + - 7344 + - 2872 + - 2891 + - 7379 + type: DeviceList + - uid: 9041 + components: + - rot: 3.141592653589793 rad + pos: -14.5,2.5 + parent: 31 + type: Transform + - devices: + - 9972 + - 9971 + - 9970 + - 995 + - 179 + - 337 + type: DeviceList + - uid: 9985 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-14.5 + parent: 31 + type: Transform + - devices: + - 9988 + - 9989 + - 9990 + type: DeviceList + - uid: 9992 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,8.5 + parent: 31 + type: Transform + - devices: + - 8954 + - 8956 + - 852 + - 1027 + - 1028 + - 8885 + - 8884 + - 8883 + - 3959 + - 3944 + - 3943 + - 3989 + - 3987 + - 3988 + - 9988 + - 9989 + - 9990 + - 576 + - 1330 + - 1167 + - 7460 + type: DeviceList + - uid: 9993 + components: + - rot: 3.141592653589793 rad + pos: -25.5,1.5 + parent: 31 + type: Transform + - devices: + - 3928 + - 3934 + - 3935 + - 3969 + - 3970 + - 9972 + - 9971 + - 9970 + - 9994 + - 9995 + type: DeviceList + - uid: 9997 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,1.5 + parent: 31 + type: Transform + - devices: + - 3977 + - 3976 + - 3975 + type: DeviceList + - uid: 10002 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,27.5 + parent: 31 + type: Transform + - devices: + - 8816 + - 8813 + - 8810 + - 8814 + - 8815 + - 9969 + type: DeviceList + - uid: 10004 + components: + - rot: 3.141592653589793 rad + pos: 5.5,15.5 + parent: 31 + type: Transform + - devices: + - 8885 + - 8883 + - 8884 + - 5115 + type: DeviceList + - uid: 10006 + components: + - pos: 18.5,6.5 + parent: 31 + type: Transform + - devices: + - 4028 + - 4030 + - 4026 + - 8856 + - 8858 + - 8857 + type: DeviceList + - uid: 10023 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 31 + type: Transform + - devices: + - 3943 + - 3944 + - 3959 + - 1167 + - 1330 + - 576 + - 4525 + - 4528 + - 4529 + type: DeviceList + - uid: 10243 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-13.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 10313 + - 10314 + - 10315 + - 10240 + - 10241 + - 10242 + type: DeviceNetwork + - devices: + - 10313 + - 10314 + - 10315 + - 10240 + - 10241 + - 10242 + type: DeviceList + - uid: 10409 + components: + - pos: -17.5,-13.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 10313 + - 10314 + - 10315 + type: DeviceNetwork + - devices: + - 10313 + - 10314 + - 10315 + type: DeviceList + - uid: 10410 + components: + - pos: -1.5,-13.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 10316 + - 10317 + - 10318 + type: DeviceNetwork + - devices: + - 10316 + - 10317 + - 10318 + type: DeviceList + - uid: 10419 + components: + - pos: -11.5,-23.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 3857 + - 3866 + - 3428 + - 3724 + type: DeviceNetwork + - devices: + - 3857 + - 3866 + - 3428 + - 3724 + type: DeviceList + - uid: 11003 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 3989 + - 3987 + - 3988 + - 8940 + - 673 + type: DeviceNetwork + - devices: + - 3989 + - 3987 + - 3988 + - 8940 + - 673 + type: DeviceList +- proto: FireAxeCabinetFilled + entities: + - uid: 4031 + components: + - pos: -1.5,32.5 + parent: 31 + type: Transform + - uid: 6579 + components: + - pos: 42.5,14.5 + parent: 31 + type: Transform +- proto: FireExtinguisher + entities: + - uid: 1537 + components: + - pos: 43.520054,13.493817 + parent: 31 + type: Transform +- proto: Firelock + entities: + - uid: 45 + components: + - pos: -32.5,-12.5 + parent: 31 + type: Transform + - uid: 179 + components: + - pos: -10.5,4.5 + parent: 31 + type: Transform + - uid: 308 + components: + - pos: -29.5,-18.5 + parent: 31 + type: Transform + - uid: 328 + components: + - pos: -22.5,14.5 + parent: 31 + type: Transform + - uid: 337 + components: + - pos: -10.5,3.5 + parent: 31 + type: Transform + - uid: 409 + components: + - pos: -6.5,-8.5 + parent: 31 + type: Transform + - uid: 575 + components: + - pos: 15.5,-3.5 + parent: 31 + type: Transform + - uid: 576 + components: + - pos: -7.5,2.5 + parent: 31 + type: Transform + - uid: 684 + components: + - pos: 21.5,-22.5 + parent: 31 + type: Transform + - uid: 995 + components: + - pos: -10.5,5.5 + parent: 31 + type: Transform + - uid: 1015 + components: + - pos: -22.5,13.5 + parent: 31 + type: Transform + - uid: 1167 + components: + - pos: -5.5,2.5 + parent: 31 + type: Transform + - uid: 1330 + components: + - pos: -6.5,2.5 + parent: 31 + type: Transform + - uid: 2180 + components: + - pos: 22.5,-22.5 + parent: 31 + type: Transform + - uid: 3413 + components: + - pos: -20.5,-28.5 + parent: 31 + type: Transform + - uid: 3855 + components: + - pos: -19.5,17.5 + parent: 31 + type: Transform + - uid: 3962 + components: + - pos: -6.5,-9.5 + parent: 31 + type: Transform + - uid: 3968 + components: + - pos: -32.5,-9.5 + parent: 31 + type: Transform + - uid: 3971 + components: + - pos: -6.5,-10.5 + parent: 31 + type: Transform + - uid: 3982 + components: + - pos: 13.5,-19.5 + parent: 31 + type: Transform + - uid: 3984 + components: + - pos: 13.5,-20.5 + parent: 31 + type: Transform + - uid: 3992 + components: + - pos: 37.5,-5.5 + parent: 31 + type: Transform + - uid: 3996 + components: + - pos: -33.5,-9.5 + parent: 31 + type: Transform + - uid: 4002 + components: + - pos: 25.5,-1.5 + parent: 31 + type: Transform + - uid: 4003 + components: + - pos: 25.5,-2.5 + parent: 31 + type: Transform + - uid: 4010 + components: + - pos: -1.5,6.5 + parent: 31 + type: Transform + - uid: 4015 + components: + - pos: 38.5,-5.5 + parent: 31 + type: Transform + - uid: 4019 + components: + - pos: 11.5,14.5 + parent: 31 + type: Transform + - uid: 4041 + components: + - pos: -10.5,24.5 + parent: 31 + type: Transform + - uid: 4042 + components: + - pos: -10.5,25.5 + parent: 31 + type: Transform + - uid: 4044 + components: + - pos: -18.5,17.5 + parent: 31 + type: Transform + - uid: 4833 + components: + - pos: -19.5,-28.5 + parent: 31 + type: Transform + - uid: 4975 + components: + - pos: -22.5,21.5 + parent: 31 + type: Transform + - uid: 5034 + components: + - pos: 26.5,-19.5 + parent: 31 + type: Transform + - uid: 5035 + components: + - pos: 23.5,-24.5 + parent: 31 + type: Transform + - uid: 5104 + components: + - pos: 13.5,-0.5 + parent: 31 + type: Transform + - uid: 5115 + components: + - pos: 6.5,20.5 + parent: 31 + type: Transform + - uid: 5217 + components: + - pos: -27.5,16.5 + parent: 31 + type: Transform + - uid: 5312 + components: + - pos: 15.5,-26.5 + parent: 31 + type: Transform + - uid: 11101 + components: + - pos: 27.5,-9.5 + parent: 31 + type: Transform +- proto: FirelockEdge + entities: + - uid: 693 + components: + - rot: 3.141592653589793 rad + pos: 53.5,3.5 + parent: 31 + type: Transform + - uid: 4378 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-25.5 + parent: 31 + type: Transform + - uid: 4480 + components: + - rot: 1.5707963267948966 rad + pos: 60.5,1.5 + parent: 31 + type: Transform + - uid: 4481 + components: + - rot: 1.5707963267948966 rad + pos: 60.5,2.5 + parent: 31 + type: Transform + - uid: 4482 + components: + - rot: 1.5707963267948966 rad + pos: 60.5,3.5 + parent: 31 + type: Transform + - uid: 4603 + components: + - rot: 1.5707963267948966 rad + pos: 60.5,0.5 + parent: 31 + type: Transform + - uid: 4610 + components: + - rot: 1.5707963267948966 rad + pos: 60.5,4.5 + parent: 31 + type: Transform + - uid: 7040 + components: + - pos: -18.5,3.5 + parent: 31 + type: Transform + - uid: 7041 + components: + - pos: -19.5,3.5 + parent: 31 + type: Transform + - uid: 7042 + components: + - pos: -16.5,3.5 + parent: 31 + type: Transform + - uid: 7051 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-24.5 + parent: 31 + type: Transform + - uid: 7052 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-23.5 + parent: 31 + type: Transform +- proto: FirelockElectronics + entities: + - uid: 13 + components: + - pos: -29.687315,9.038336 + parent: 31 + type: Transform + - uid: 55 + components: + - pos: -29.42169,8.819586 + parent: 31 + type: Transform + - uid: 4298 + components: + - pos: 29.352465,-1.4202437 + parent: 31 + type: Transform + - uid: 4324 + components: + - pos: 29.633715,-1.4827437 + parent: 31 + type: Transform +- proto: FirelockGlass + entities: + - uid: 24 + components: + - pos: 20.5,18.5 + parent: 31 + type: Transform + - uid: 673 + components: + - pos: 10.5,-6.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 11002 + - 11003 + type: DeviceNetwork + - uid: 852 + components: + - pos: 5.5,5.5 + parent: 31 + type: Transform + - uid: 1027 + components: + - pos: 5.5,4.5 + parent: 31 + type: Transform + - uid: 1028 + components: + - pos: 5.5,3.5 + parent: 31 + type: Transform + - uid: 1185 + components: + - pos: 21.5,18.5 + parent: 31 + type: Transform + - uid: 1505 + components: + - pos: 15.5,8.5 + parent: 31 + type: Transform + - uid: 2872 + components: + - pos: 1.5,-29.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 7904 + - 888 + type: DeviceNetwork + - uid: 2891 + components: + - pos: 1.5,-28.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 7904 + - 888 + type: DeviceNetwork + - uid: 3428 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-33.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 10371 + - 10419 + type: DeviceNetwork + - uid: 3724 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-27.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 10371 + - 10419 + - 7904 + type: DeviceNetwork + - uid: 3729 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-18.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 7345 + type: DeviceNetwork + - uid: 3857 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-23.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 10371 + - 10419 + - 7345 + type: DeviceNetwork + - uid: 3866 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-25.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 10371 + - 10419 + type: DeviceNetwork + - uid: 3928 + components: + - pos: -26.5,3.5 + parent: 31 + type: Transform + - uid: 3934 + components: + - pos: -26.5,4.5 + parent: 31 + type: Transform + - uid: 3935 + components: + - pos: -26.5,5.5 + parent: 31 + type: Transform + - uid: 3943 + components: + - pos: 1.5,-2.5 + parent: 31 + type: Transform + - uid: 3944 + components: + - pos: 1.5,-1.5 + parent: 31 + type: Transform + - uid: 3959 + components: + - pos: 1.5,-0.5 + parent: 31 + type: Transform + - uid: 3969 + components: + - pos: -24.5,7.5 + parent: 31 + type: Transform + - uid: 3970 + components: + - pos: -23.5,7.5 + parent: 31 + type: Transform + - uid: 3975 + components: + - pos: -33.5,3.5 + parent: 31 + type: Transform + - uid: 3976 + components: + - pos: -33.5,4.5 + parent: 31 + type: Transform + - uid: 3977 + components: + - pos: -33.5,5.5 + parent: 31 + type: Transform + - uid: 3987 + components: + - pos: 5.5,-1.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 11003 + type: DeviceNetwork + - uid: 3988 + components: + - pos: 5.5,-0.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 11003 + type: DeviceNetwork + - uid: 3989 + components: + - pos: 5.5,-2.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 11003 + type: DeviceNetwork + - uid: 4026 + components: + - pos: 11.5,3.5 + parent: 31 + type: Transform + - uid: 4028 + components: + - pos: 11.5,5.5 + parent: 31 + type: Transform + - uid: 4030 + components: + - pos: 11.5,4.5 + parent: 31 + type: Transform + - uid: 4210 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-29.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 10371 + type: DeviceNetwork + - uid: 4215 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-38.5 + parent: 31 + type: Transform + - uid: 4334 + components: + - pos: 8.5,-8.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 11002 + type: DeviceNetwork + - uid: 4345 + components: + - pos: 8.5,-10.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 11002 + type: DeviceNetwork + - uid: 4525 + components: + - pos: -10.5,1.5 + parent: 31 + type: Transform + - uid: 4528 + components: + - pos: -10.5,0.5 + parent: 31 + type: Transform + - uid: 4529 + components: + - pos: -10.5,-0.5 + parent: 31 + type: Transform + - uid: 4613 + components: + - pos: 37.5,-8.5 + parent: 31 + type: Transform + - uid: 4617 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-19.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 10373 + type: DeviceNetwork + - uid: 4718 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-19.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 10373 + type: DeviceNetwork + - uid: 6957 + components: + - pos: 28.5,-17.5 + parent: 31 + type: Transform + - uid: 7178 + components: + - pos: 38.5,-8.5 + parent: 31 + type: Transform + - uid: 7325 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-8.5 + parent: 31 + type: Transform + - uid: 7344 + components: + - pos: 4.5,-23.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 888 + type: DeviceNetwork + - uid: 7379 + components: + - pos: 1.5,-26.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 7904 + - 888 + type: DeviceNetwork + - uid: 7460 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,4.5 + parent: 31 + type: Transform + - uid: 8399 + components: + - pos: 45.5,-6.5 + parent: 31 + type: Transform + - uid: 8810 + components: + - pos: 2.5,29.5 + parent: 31 + type: Transform + - uid: 8813 + components: + - pos: 1.5,28.5 + parent: 31 + type: Transform + - uid: 8814 + components: + - pos: 3.5,29.5 + parent: 31 + type: Transform + - uid: 8815 + components: + - pos: 4.5,29.5 + parent: 31 + type: Transform + - uid: 8816 + components: + - pos: 5.5,28.5 + parent: 31 + type: Transform + - uid: 8856 + components: + - pos: 24.5,5.5 + parent: 31 + type: Transform + - uid: 8857 + components: + - pos: 24.5,3.5 + parent: 31 + type: Transform + - uid: 8858 + components: + - pos: 24.5,4.5 + parent: 31 + type: Transform + - uid: 8883 + components: + - pos: 2.5,15.5 + parent: 31 + type: Transform + - uid: 8884 + components: + - pos: 3.5,15.5 + parent: 31 + type: Transform + - uid: 8885 + components: + - pos: 4.5,15.5 + parent: 31 + type: Transform + - uid: 8940 + components: + - pos: 9.5,-6.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 11002 + - 11003 + type: DeviceNetwork + - uid: 8954 + components: + - pos: 1.5,3.5 + parent: 31 + type: Transform + - uid: 8956 + components: + - pos: 1.5,5.5 + parent: 31 + type: Transform + - uid: 9732 + components: + - pos: 2.5,-23.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 888 + type: DeviceNetwork + - uid: 9735 + components: + - pos: 3.5,-23.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 888 + type: DeviceNetwork + - uid: 9782 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-36.5 + parent: 31 + type: Transform + - uid: 9783 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-36.5 + parent: 31 + type: Transform + - uid: 9958 + components: + - pos: 36.5,3.5 + parent: 31 + type: Transform + - uid: 9959 + components: + - pos: 36.5,4.5 + parent: 31 + type: Transform + - uid: 9960 + components: + - pos: 36.5,5.5 + parent: 31 + type: Transform + - uid: 9961 + components: + - pos: 33.5,7.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 9164 + type: DeviceNetwork + - uid: 9962 + components: + - pos: 30.5,3.5 + parent: 31 + type: Transform + - uid: 9963 + components: + - pos: 30.5,5.5 + parent: 31 + type: Transform + - uid: 9964 + components: + - pos: 33.5,1.5 + parent: 31 + type: Transform + - uid: 9965 + components: + - pos: 25.5,17.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 7104 + type: DeviceNetwork + - uid: 9966 + components: + - pos: 25.5,16.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 7104 + type: DeviceNetwork + - uid: 9967 + components: + - pos: 21.5,14.5 + parent: 31 + type: Transform + - uid: 9968 + components: + - pos: 20.5,14.5 + parent: 31 + type: Transform + - uid: 9969 + components: + - pos: 3.5,26.5 + parent: 31 + type: Transform + - uid: 9970 + components: + - pos: -21.5,3.5 + parent: 31 + type: Transform + - uid: 9971 + components: + - pos: -21.5,4.5 + parent: 31 + type: Transform + - uid: 9972 + components: + - pos: -21.5,5.5 + parent: 31 + type: Transform + - uid: 9973 + components: + - pos: 54.5,2.5 + parent: 31 + type: Transform + - uid: 9988 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 31 + type: Transform + - uid: 9989 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 31 + type: Transform + - uid: 9990 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 31 + type: Transform + - uid: 9994 + components: + - rot: 3.141592653589793 rad + pos: -24.5,1.5 + parent: 31 + type: Transform + - uid: 9995 + components: + - rot: 3.141592653589793 rad + pos: -23.5,1.5 + parent: 31 + type: Transform + - uid: 9999 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,6.5 + parent: 31 + type: Transform + - uid: 10000 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,6.5 + parent: 31 + type: Transform + - uid: 10008 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,8.5 + parent: 31 + type: Transform + - uid: 10017 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-9.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 11002 + type: DeviceNetwork + - uid: 10099 + components: + - pos: 22.5,18.5 + parent: 31 + type: Transform + - uid: 10240 + components: + - pos: -22.5,-10.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 10238 + - 10243 + type: DeviceNetwork + - uid: 10241 + components: + - pos: -23.5,-10.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 10238 + - 10243 + type: DeviceNetwork + - uid: 10242 + components: + - pos: -24.5,-10.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 10238 + - 10243 + type: DeviceNetwork + - uid: 10245 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-8.5 + parent: 31 + type: Transform + - uid: 10246 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-8.5 + parent: 31 + type: Transform + - uid: 10313 + components: + - pos: -19.5,-14.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 10408 + - 10409 + - 10238 + - 10243 + type: DeviceNetwork + - uid: 10314 + components: + - pos: -19.5,-15.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 10408 + - 10409 + - 10238 + - 10243 + type: DeviceNetwork + - uid: 10315 + components: + - pos: -19.5,-16.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 10408 + - 10409 + - 10238 + - 10243 + type: DeviceNetwork + - uid: 10316 + components: + - pos: 0.5,-14.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 10408 + - 10410 + type: DeviceNetwork + - uid: 10317 + components: + - pos: 0.5,-15.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 10408 + - 10410 + type: DeviceNetwork + - uid: 10318 + components: + - pos: 0.5,-16.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 10408 + - 10410 + type: DeviceNetwork + - uid: 10658 + components: + - pos: 40.5,-12.5 + parent: 31 + type: Transform + - uid: 10900 + components: + - pos: 49.5,-1.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 5107 + type: DeviceNetwork + - uid: 11000 + components: + - pos: 9.5,-12.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 11002 + type: DeviceNetwork + - uid: 11091 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,20.5 + parent: 31 + type: Transform + - ShutdownSubscribers: + - 7104 + type: DeviceNetwork + - uid: 11092 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,18.5 + parent: 31 + type: Transform +- proto: Fireplace + entities: + - uid: 791 + components: + - pos: -24.5,-21.5 + parent: 31 + type: Transform + - uid: 3749 + components: + - pos: 0.5,1.5 + parent: 31 + type: Transform + - uid: 8988 + components: + - pos: 7.5,26.5 + parent: 31 + type: Transform +- proto: Flash + entities: + - uid: 2092 + components: + - rot: -1.5707963267948966 rad + pos: -3.5096004,12.452274 + parent: 31 + type: Transform + - uid: 2499 + components: + - pos: 8.497082,31.408243 + parent: 31 + type: Transform +- proto: FlashlightLantern + entities: + - uid: 7122 + components: + - pos: -2.4670525,30.482414 + parent: 31 + type: Transform + - uid: 9950 + components: + - pos: 27.403997,15.554827 + parent: 31 + type: Transform + - uid: 10696 + components: + - pos: -0.47756696,-12.240095 + parent: 31 + type: Transform +- proto: FlashlightSeclite + entities: + - uid: 9117 + components: + - rot: -1.5707963267948966 rad + pos: -14.223138,16.03936 + parent: 31 + type: Transform +- proto: FloodlightBroken + entities: + - uid: 9086 + components: + - pos: 36.474823,33.73011 + parent: 31 + type: Transform +- proto: FloorDrain + entities: + - uid: 262 + components: + - pos: 15.5,-17.5 + parent: 31 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 2300 + components: + - pos: -18.5,-11.5 + parent: 31 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 4337 + components: + - pos: 12.5,27.5 + parent: 31 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 9108 + components: + - pos: 17.5,-0.5 + parent: 31 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 9109 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-4.5 + parent: 31 + type: Transform + - fixtures: {} + type: Fixtures +- proto: FloorTileItemArcadeBlue + entities: + - uid: 7988 + components: + - pos: 27.598589,-5.5317454 + parent: 31 + type: Transform + - uid: 7989 + components: + - pos: 27.598589,-5.5317454 + parent: 31 + type: Transform + - uid: 7990 + components: + - pos: 27.598589,-5.5317454 + parent: 31 + type: Transform + - uid: 7991 + components: + - pos: 27.598589,-5.5317454 + parent: 31 + type: Transform + - uid: 7992 + components: + - pos: 27.598589,-5.5317454 + parent: 31 + type: Transform + - uid: 7993 + components: + - pos: 27.598589,-5.5317454 + parent: 31 + type: Transform + - uid: 7994 + components: + - pos: 27.598589,-5.5317454 + parent: 31 + type: Transform + - uid: 7995 + components: + - pos: 27.598589,-5.5317454 + parent: 31 + type: Transform + - uid: 7996 + components: + - pos: 27.598589,-5.5317454 + parent: 31 + type: Transform + - uid: 7997 + components: + - pos: 27.598589,-5.5317454 + parent: 31 + type: Transform + - uid: 7998 + components: + - pos: 27.598589,-5.5317454 + parent: 31 + type: Transform + - uid: 7999 + components: + - pos: 27.598589,-5.5317454 + parent: 31 + type: Transform + - uid: 8000 + components: + - pos: 27.598589,-5.5317454 + parent: 31 + type: Transform + - uid: 8001 + components: + - pos: 27.598589,-5.5317454 + parent: 31 + type: Transform + - uid: 8002 + components: + - pos: 27.598589,-5.5317454 + parent: 31 + type: Transform + - uid: 8003 + components: + - pos: 27.598589,-5.5317454 + parent: 31 + type: Transform + - uid: 8004 + components: + - pos: 27.598589,-5.5317454 + parent: 31 + type: Transform + - uid: 8005 + components: + - pos: 27.598589,-5.5317454 + parent: 31 + type: Transform + - uid: 8006 + components: + - pos: 27.598589,-5.5317454 + parent: 31 + type: Transform + - uid: 8007 + components: + - pos: 27.598589,-5.5317454 + parent: 31 + type: Transform + - uid: 8008 + components: + - pos: 27.598589,-5.5317454 + parent: 31 + type: Transform + - uid: 8009 + components: + - pos: 27.598589,-5.5317454 + parent: 31 + type: Transform + - uid: 8010 + components: + - pos: 27.598589,-5.5317454 + parent: 31 + type: Transform + - uid: 8011 + components: + - pos: 27.598589,-5.5317454 + parent: 31 + type: Transform + - uid: 8012 + components: + - pos: 27.598589,-5.5317454 + parent: 31 + type: Transform + - uid: 8013 + components: + - pos: 27.598589,-5.5317454 + parent: 31 + type: Transform + - uid: 8014 + components: + - pos: 27.598589,-5.5317454 + parent: 31 + type: Transform + - uid: 8015 + components: + - pos: 27.598589,-5.5317454 + parent: 31 + type: Transform + - uid: 8016 + components: + - pos: 27.598589,-5.5317454 + parent: 31 + type: Transform + - uid: 8017 + components: + - pos: 27.598589,-5.5317454 + parent: 31 + type: Transform +- proto: FloraRockSolid01 + entities: + - uid: 8569 + components: + - pos: 0.88375235,-33.48718 + parent: 31 + type: Transform +- proto: FloraRockSolid02 + entities: + - uid: 10815 + components: + - pos: 4.1304145,-33.0152 + parent: 31 + type: Transform +- proto: FloraTreeLarge05 + entities: + - uid: 7374 + components: + - pos: 49.515545,-24.586845 + parent: 31 + type: Transform +- proto: FoamBlade + entities: + - uid: 10498 + components: + - rot: 1.5707963267948966 rad + pos: -13.435028,-32.52688 + parent: 31 + type: Transform +- proto: FoodApple + entities: + - uid: 10797 + components: + - pos: 45.728592,-20.95496 + parent: 31 + type: Transform +- proto: FoodBanana + entities: + - uid: 1218 + components: + - pos: -19.287416,-7.253504 + parent: 31 + type: Transform + - uid: 1549 + components: + - pos: -19.31693,-7.194507 + parent: 31 + type: Transform +- proto: FoodBowlBig + entities: + - uid: 8950 + components: + - pos: 10.876451,-23.826777 + parent: 31 + type: Transform +- proto: FoodBoxDonut + entities: + - uid: 261 + components: + - pos: -4.454084,13.160239 + parent: 31 + type: Transform + - uid: 8989 + components: + - pos: -1.5376439,25.04381 + parent: 31 + type: Transform +- proto: FoodCondimentBottleEnzyme + entities: + - uid: 8441 + components: + - pos: -14.835613,-0.50339985 + parent: 31 + type: Transform + - tags: [] + type: Tag +- proto: FoodCondimentPacketSalt + entities: + - uid: 9576 + components: + - pos: 29.558077,-6.33541 + parent: 31 + type: Transform +- proto: FoodDonkpocketPizza + entities: + - uid: 418 + components: + - pos: -8.183176,-18.420973 + parent: 31 + type: Transform +- proto: FoodDonutChocolate + entities: + - uid: 46 + components: + - pos: -2.214967,7.851863 + parent: 31 + type: Transform +- proto: FoodDonutJellySlugcat + entities: + - uid: 11256 + components: + - pos: 82.70892,4.2750516 + parent: 31 + type: Transform +- proto: FoodFrozenSandwich + entities: + - uid: 5708 + components: + - pos: -7.48876,-35.481796 + parent: 31 + type: Transform + - uid: 5709 + components: + - rot: 1.5707963267948966 rad + pos: -7.630615,-35.540794 + parent: 31 + type: Transform +- proto: FoodMeat + entities: + - uid: 9057 + components: + - pos: -10.159095,-4.4711595 + parent: 31 + type: Transform + - uid: 9058 + components: + - pos: -11.76847,-4.7055345 + parent: 31 + type: Transform + - uid: 9059 + components: + - pos: -13.440345,-4.4399095 + parent: 31 + type: Transform +- proto: FoodNoodles + entities: + - uid: 6693 + components: + - pos: 3.5003717,-30.269686 + parent: 31 + type: Transform +- proto: FoodPieBananaCream + entities: + - uid: 1314 + components: + - pos: -19.730143,-7.194507 + parent: 31 + type: Transform +- proto: FoodPizzaArnoldSlice + entities: + - uid: 9053 + components: + - pos: -29.477003,17.566315 + parent: 31 + type: Transform +- proto: FoodPizzaPineapple + entities: + - uid: 8745 + components: + - pos: -35.517406,-25.152033 + parent: 31 + type: Transform +- proto: FoodShakerSalt + entities: + - uid: 9577 + components: + - pos: 29.948702,-6.58541 + parent: 31 + type: Transform + - uid: 9578 + components: + - pos: 29.136202,-6.538535 + parent: 31 + type: Transform +- proto: FoodSnackChocolate + entities: + - uid: 1913 + components: + - rot: 1.5707963267948966 rad + pos: 8.419368,-3.3883321 + parent: 31 + type: Transform + - uid: 5636 + components: + - rot: 1.5707963267948966 rad + pos: 8.617393,-3.3883321 + parent: 31 + type: Transform +- proto: FoodSoupElectron + entities: + - uid: 8433 + components: + - pos: -6.4781985,-1.2809834 + parent: 31 + type: Transform +- proto: FoodTinBeans + entities: + - uid: 3485 + components: + - flags: InContainer + type: MetaData + - parent: 2363 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 3831 + components: + - flags: InContainer + type: MetaData + - parent: 2363 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 3832 + components: + - flags: InContainer + type: MetaData + - parent: 2363 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodTinMRE + entities: + - uid: 7837 + components: + - pos: -26.53067,19.803333 + parent: 31 + type: Transform +- proto: FoodWatermelonSlice + entities: + - uid: 10793 + components: + - pos: 45.529526,-21.25198 + parent: 31 + type: Transform +- proto: ForensicScanner + entities: + - uid: 4952 + components: + - pos: -0.37258464,13.434727 + parent: 31 + type: Transform +- proto: GasAnalyzer + entities: + - uid: 3985 + components: + - pos: -11.359732,-27.422089 + parent: 31 + type: Transform + - uid: 6417 + components: + - pos: 43.492275,13.452083 + parent: 31 + type: Transform + - uid: 6569 + components: + - pos: 43.492275,13.452151 + parent: 31 + type: Transform +- proto: GasFilter + entities: + - uid: 7125 + components: + - name: waste filter + type: MetaData + - rot: -1.5707963267948966 rad + pos: 8.5,-16.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasMinerCarbonDioxide + entities: + - uid: 4907 + components: + - pos: 40.5,22.5 + parent: 31 + type: Transform +- proto: GasMinerNitrogen + entities: + - uid: 4888 + components: + - pos: 34.5,22.5 + parent: 31 + type: Transform +- proto: GasMinerOxygen + entities: + - uid: 4830 + components: + - pos: 36.5,22.5 + parent: 31 + type: Transform +- proto: GasMinerPlasma + entities: + - uid: 11073 + components: + - pos: 42.5,22.5 + parent: 31 + type: Transform +- proto: GasMinerWaterVapor + entities: + - uid: 6836 + components: + - pos: 46.5,22.5 + parent: 31 + type: Transform +- proto: GasOutletInjector + entities: + - uid: 672 + components: + - pos: 42.5,21.5 + parent: 31 + type: Transform + - uid: 2177 + components: + - pos: 34.5,21.5 + parent: 31 + type: Transform + - uid: 2668 + components: + - pos: 40.5,21.5 + parent: 31 + type: Transform + - uid: 3461 + components: + - pos: 38.5,21.5 + parent: 31 + type: Transform + - uid: 4034 + components: + - pos: 36.5,21.5 + parent: 31 + type: Transform + - uid: 11062 + components: + - pos: 46.5,21.5 + parent: 31 + type: Transform + - uid: 11069 + components: + - pos: 44.5,21.5 + parent: 31 + type: Transform +- proto: GasPassiveVent + entities: + - uid: 7 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,23.5 + parent: 31 + type: Transform + - uid: 49 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,23.5 + parent: 31 + type: Transform + - uid: 52 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,23.5 + parent: 31 + type: Transform + - uid: 127 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,23.5 + parent: 31 + type: Transform + - uid: 3124 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,23.5 + parent: 31 + type: Transform + - uid: 3477 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,23.5 + parent: 31 + type: Transform + - uid: 5547 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-4.5 + parent: 31 + type: Transform + - uid: 5752 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-29.5 + parent: 31 + type: Transform + - uid: 6211 + components: + - pos: 33.5,19.5 + parent: 31 + type: Transform + - uid: 6243 + components: + - pos: 50.5,20.5 + parent: 31 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 6248 + components: + - rot: -1.5707963267948966 rad + pos: 55.5,16.5 + parent: 31 + type: Transform + - uid: 6903 + components: + - rot: 3.141592653589793 rad + pos: 55.5,17.5 + parent: 31 + type: Transform + - uid: 11025 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,23.5 + parent: 31 + type: Transform +- proto: GasPipeBend + entities: + - uid: 1 + components: + - pos: 39.5,23.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 21 + components: + - pos: 41.5,23.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 129 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,6.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 667 + components: + - pos: 45.5,23.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 898 + components: + - pos: 43.5,23.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 954 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,10.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 981 + components: + - pos: 10.5,24.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1250 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,25.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1634 + components: + - pos: -4.5,25.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 2227 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-17.5 + parent: 31 + type: Transform + - uid: 2417 + components: + - pos: 37.5,23.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3011 + components: + - pos: 35.5,23.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3206 + components: + - rot: 3.141592653589793 rad + pos: 24.5,10.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3207 + components: + - pos: 24.5,11.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3841 + components: + - pos: -23.5,9.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4182 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-14.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 4316 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,16.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 4649 + components: + - pos: 55.5,2.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 4932 + components: + - pos: 47.5,23.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5456 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,11.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5457 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,10.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5527 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-1.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5538 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-1.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5551 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-4.5 + parent: 31 + type: Transform + - uid: 5553 + components: + - pos: 10.5,-1.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5554 + components: + - pos: 11.5,0.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5582 + components: + - pos: 19.5,-8.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5589 + components: + - pos: 18.5,-10.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5627 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-15.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5639 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5640 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5682 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-17.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5683 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-17.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5697 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-25.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5700 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-20.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5701 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-19.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5702 + components: + - pos: 7.5,-19.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5703 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-20.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5722 + components: + - rot: 3.141592653589793 rad + pos: -36.5,13.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5724 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-29.5 + parent: 31 + type: Transform + - uid: 5778 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-25.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5779 + components: + - pos: 15.5,-25.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5892 + components: + - rot: 3.141592653589793 rad + pos: -4.5,20.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5896 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,25.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5897 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,19.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5925 + components: + - pos: -22.5,24.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5944 + components: + - pos: 8.5,9.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5971 + components: + - pos: -5.5,10.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5991 + components: + - pos: -4.5,10.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5992 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-16.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6001 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,21.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6016 + components: + - rot: 3.141592653589793 rad + pos: -5.5,10.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6025 + components: + - pos: -11.5,16.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6026 + components: + - rot: 3.141592653589793 rad + pos: -12.5,16.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6096 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-17.5 + parent: 31 + type: Transform + - uid: 6106 + components: + - rot: 3.141592653589793 rad + pos: -27.5,9.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6214 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,17.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6228 + components: + - rot: 3.141592653589793 rad + pos: 44.5,2.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6265 + components: + - rot: 3.141592653589793 rad + pos: 38.5,0.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6266 + components: + - pos: 39.5,0.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6274 + components: + - rot: 3.141592653589793 rad + pos: 37.5,-0.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6361 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,7.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6540 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,9.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6558 + components: + - rot: -1.5707963267948966 rad + pos: 56.5,15.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6559 + components: + - pos: 49.5,24.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6565 + components: + - pos: 56.5,18.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6633 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,24.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7091 + components: + - rot: 3.141592653589793 rad + pos: 23.5,9.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 7092 + components: + - pos: 23.5,10.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 7183 + components: + - rot: 3.141592653589793 rad + pos: 55.5,1.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 7227 + components: + - rot: -1.5707963267948966 rad + pos: 54.5,17.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7228 + components: + - rot: 1.5707963267948966 rad + pos: 54.5,18.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7426 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-8.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 7726 + components: + - rot: 3.141592653589793 rad + pos: -37.5,3.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 9200 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,0.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 9224 + components: + - rot: 3.141592653589793 rad + pos: -38.5,13.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 9353 + components: + - pos: -24.5,14.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 9354 + components: + - rot: 3.141592653589793 rad + pos: -25.5,14.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 9355 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,19.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10381 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-29.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10913 + components: + - pos: 56.5,-3.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10955 + components: + - pos: 55.5,-8.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10956 + components: + - rot: 3.141592653589793 rad + pos: 55.5,-9.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 10957 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,-8.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound +- proto: GasPipeFourway + entities: + - uid: 583 + components: + - pos: -7.5,-19.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5321 + components: + - pos: 2.5,3.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5322 + components: + - pos: 4.5,5.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5325 + components: + - pos: 4.5,-1.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5361 + components: + - pos: 2.5,0.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5813 + components: + - pos: 2.5,24.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5823 + components: + - pos: 4.5,25.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5828 + components: + - pos: 4.5,20.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5952 + components: + - pos: 32.5,5.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5953 + components: + - pos: 33.5,3.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6082 + components: + - pos: -23.5,3.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6083 + components: + - pos: -24.5,5.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6144 + components: + - pos: -35.5,5.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6150 + components: + - pos: -36.5,3.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6444 + components: + - pos: 33.5,9.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 6483 + components: + - pos: 50.5,17.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7414 + components: + - pos: 2.5,-16.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 57 + components: + - pos: 8.5,18.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 109 + components: + - pos: 39.5,20.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 110 + components: + - pos: 39.5,19.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 111 + components: + - pos: 41.5,18.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 115 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,25.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 132 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,3.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 159 + components: + - pos: 39.5,21.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 347 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-8.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 354 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-21.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 415 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-29.5 + parent: 31 + type: Transform + - uid: 467 + components: + - pos: 45.5,22.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 561 + components: + - rot: 3.141592653589793 rad + pos: 35.5,20.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 602 + components: + - rot: 3.141592653589793 rad + pos: 42.5,19.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 715 + components: + - pos: 37.5,19.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 750 + components: + - pos: -24.5,12.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 773 + components: + - rot: 3.141592653589793 rad + pos: 40.5,18.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 789 + components: + - rot: 3.141592653589793 rad + pos: 38.5,20.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 800 + components: + - pos: -9.5,-20.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 813 + components: + - pos: 39.5,22.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 822 + components: + - rot: 3.141592653589793 rad + pos: 40.5,19.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 899 + components: + - pos: -4.5,24.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 925 + components: + - rot: 3.141592653589793 rad + pos: 44.5,20.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 928 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-16.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 978 + components: + - rot: 3.141592653589793 rad + pos: 38.5,19.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 980 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,25.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 991 + components: + - rot: 3.141592653589793 rad + pos: 42.5,18.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1067 + components: + - rot: 3.141592653589793 rad + pos: 44.5,19.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1086 + components: + - pos: -9.5,-17.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1093 + components: + - pos: -9.5,-18.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1108 components: - - pos: -7.5,2.5 + - rot: 3.141592653589793 rad + pos: 56.5,16.5 parent: 31 type: Transform - - uid: 995 + - enabled: True + type: AmbientSound + - uid: 1165 components: - - pos: -10.5,5.5 + - rot: 1.5707963267948966 rad + pos: 8.5,25.5 parent: 31 type: Transform - - uid: 1015 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1238 components: - - pos: -22.5,13.5 + - pos: -24.5,10.5 parent: 31 type: Transform - - uid: 1167 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1289 components: - - pos: -5.5,2.5 + - rot: -1.5707963267948966 rad + pos: 32.5,8.5 parent: 31 type: Transform - - uid: 1330 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1470 components: - - pos: -6.5,2.5 + - rot: 1.5707963267948966 rad + pos: -6.5,-16.5 parent: 31 type: Transform - - uid: 3855 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1473 components: - - pos: -19.5,17.5 + - pos: -9.5,-19.5 parent: 31 type: Transform - - uid: 3961 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1486 components: - - pos: 22.5,-19.5 + - rot: -1.5707963267948966 rad + pos: -6.5,-14.5 parent: 31 type: Transform - - uid: 3962 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1487 components: - - pos: -6.5,-9.5 + - rot: -1.5707963267948966 rad + pos: -21.5,-12.5 parent: 31 type: Transform - - uid: 3968 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1490 components: - - pos: -32.5,-9.5 + - pos: -7.5,-17.5 parent: 31 type: Transform - - uid: 3971 + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1514 components: - - pos: -6.5,-10.5 + - rot: 3.141592653589793 rad + pos: 35.5,21.5 parent: 31 type: Transform - - uid: 3982 + - enabled: True + type: AmbientSound + - uid: 1515 components: - - pos: 13.5,-19.5 + - pos: 33.5,18.5 parent: 31 type: Transform - - uid: 3984 + - enabled: True + type: AmbientSound + - uid: 1516 components: - - pos: 13.5,-20.5 + - pos: 36.5,20.5 parent: 31 type: Transform - - uid: 3992 + - enabled: True + type: AmbientSound + - uid: 1533 components: - - pos: 37.5,-5.5 + - pos: 39.5,18.5 parent: 31 type: Transform - - uid: 3993 + - enabled: True + type: AmbientSound + - uid: 1543 components: - - pos: 0.5,-15.5 + - rot: 1.5707963267948966 rad + pos: 36.5,5.5 parent: 31 type: Transform - - uid: 3996 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1544 components: - - pos: -33.5,-9.5 + - rot: 1.5707963267948966 rad + pos: 38.5,5.5 parent: 31 type: Transform - - uid: 4002 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1590 components: - - pos: 25.5,-1.5 + - rot: 3.141592653589793 rad + pos: 4.5,11.5 parent: 31 type: Transform - - uid: 4003 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1689 components: - - pos: 25.5,-2.5 + - rot: -1.5707963267948966 rad + pos: -4.5,-19.5 parent: 31 type: Transform - - uid: 4010 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1714 components: - - pos: -1.5,6.5 + - rot: -1.5707963267948966 rad + pos: -6.5,-19.5 parent: 31 type: Transform - - uid: 4015 + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1716 components: - - pos: 38.5,-5.5 + - rot: 1.5707963267948966 rad + pos: 22.5,11.5 parent: 31 type: Transform - - uid: 4019 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1724 components: - - pos: 11.5,14.5 + - rot: 1.5707963267948966 rad + pos: 35.5,5.5 parent: 31 type: Transform - - uid: 4038 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1725 components: - - pos: 21.5,-19.5 + - rot: 1.5707963267948966 rad + pos: 33.5,5.5 parent: 31 type: Transform - - uid: 4041 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1739 components: - - pos: -10.5,24.5 + - pos: -25.5,16.5 parent: 31 type: Transform - - uid: 4042 + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1773 components: - - pos: -10.5,25.5 + - rot: -1.5707963267948966 rad + pos: -22.5,-11.5 parent: 31 type: Transform - - uid: 4044 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1781 components: - - pos: -18.5,17.5 + - rot: -1.5707963267948966 rad + pos: -21.5,-11.5 parent: 31 type: Transform - - uid: 4045 + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 1804 components: - - pos: 27.5,-11.5 + - rot: 3.141592653589793 rad + pos: 35.5,19.5 parent: 31 type: Transform - - uid: 4046 + - enabled: True + type: AmbientSound + - uid: 1810 components: - - pos: 26.5,-11.5 + - rot: -1.5707963267948966 rad + pos: -19.5,-12.5 parent: 31 type: Transform - - uid: 4975 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2206 components: - - pos: -22.5,21.5 + - rot: 3.141592653589793 rad + pos: -36.5,16.5 parent: 31 type: Transform - - uid: 5034 + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 2207 components: - - pos: 26.5,-19.5 + - rot: 3.141592653589793 rad + pos: -36.5,15.5 parent: 31 type: Transform - - uid: 5035 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2216 components: - - pos: 23.5,-24.5 + - pos: -9.5,-16.5 parent: 31 type: Transform - - uid: 5104 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2332 components: - - pos: 13.5,-0.5 + - pos: 34.5,19.5 parent: 31 type: Transform - - uid: 5115 + - enabled: True + type: AmbientSound + - uid: 2333 components: - - pos: 6.5,20.5 + - pos: 34.5,18.5 parent: 31 type: Transform - - uid: 5217 + - enabled: True + type: AmbientSound + - uid: 2401 components: - - pos: -27.5,16.5 + - rot: 3.141592653589793 rad + pos: 42.5,20.5 parent: 31 type: Transform - - uid: 5312 + - enabled: True + type: AmbientSound + - uid: 2414 components: - - pos: 15.5,-26.5 + - pos: 37.5,20.5 parent: 31 type: Transform -- proto: FirelockEdge - entities: - - uid: 693 + - enabled: True + type: AmbientSound + - uid: 2559 components: - rot: 3.141592653589793 rad - pos: 53.5,3.5 + pos: 44.5,18.5 parent: 31 type: Transform - - uid: 4378 + - enabled: True + type: AmbientSound + - uid: 2669 components: - - rot: 1.5707963267948966 rad - pos: 42.5,-25.5 + - rot: 3.141592653589793 rad + pos: -36.5,17.5 parent: 31 type: Transform - - uid: 4480 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2886 components: - - rot: 1.5707963267948966 rad - pos: 60.5,1.5 + - rot: -1.5707963267948966 rad + pos: -13.5,-29.5 parent: 31 type: Transform - - uid: 4481 + - uid: 2947 components: - - rot: 1.5707963267948966 rad - pos: 60.5,2.5 + - rot: 3.141592653589793 rad + pos: -38.5,16.5 parent: 31 type: Transform - - uid: 4482 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2948 components: - - rot: 1.5707963267948966 rad - pos: 60.5,3.5 + - rot: 3.141592653589793 rad + pos: -38.5,17.5 parent: 31 type: Transform - - uid: 4603 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2950 components: - - rot: 1.5707963267948966 rad - pos: 60.5,0.5 + - rot: 3.141592653589793 rad + pos: -38.5,14.5 parent: 31 type: Transform - - uid: 4604 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3042 components: - rot: 1.5707963267948966 rad - pos: 60.5,-1.5 + pos: 24.5,9.5 parent: 31 type: Transform - - uid: 4610 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 3043 components: - rot: 1.5707963267948966 rad - pos: 60.5,4.5 + pos: 25.5,9.5 parent: 31 type: Transform - - uid: 7040 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 3044 components: - - pos: -18.5,3.5 + - pos: 20.5,13.5 parent: 31 type: Transform - - uid: 7041 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3045 components: - - pos: -19.5,3.5 + - pos: 22.5,11.5 parent: 31 type: Transform - - uid: 7042 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 3046 components: - - pos: -16.5,3.5 + - pos: 20.5,12.5 parent: 31 type: Transform - - uid: 7051 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3047 components: - - rot: 1.5707963267948966 rad - pos: 42.5,-24.5 + - pos: 22.5,12.5 parent: 31 type: Transform - - uid: 7052 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 3048 components: - - rot: 1.5707963267948966 rad - pos: 42.5,-23.5 + - pos: 20.5,14.5 parent: 31 type: Transform - - uid: 10014 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3049 components: - - rot: 3.141592653589793 rad - pos: 27.5,17.5 + - pos: 22.5,13.5 parent: 31 type: Transform - - uid: 10020 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 3238 components: - - pos: -16.5,-22.5 + - rot: 1.5707963267948966 rad + pos: 9.5,24.5 parent: 31 type: Transform -- proto: FirelockElectronics - entities: - - uid: 13 + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 3411 components: - - pos: -29.687315,9.038336 + - rot: -1.5707963267948966 rad + pos: -5.5,-14.5 parent: 31 type: Transform - - uid: 55 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 3590 components: - - pos: -29.42169,8.819586 + - rot: -1.5707963267948966 rad + pos: 20.5,-9.5 parent: 31 type: Transform - - uid: 4298 + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 3873 components: - - pos: 29.352465,-1.4202437 + - pos: 35.5,18.5 parent: 31 type: Transform - - uid: 4324 + - enabled: True + type: AmbientSound + - uid: 4024 components: - - pos: 29.633715,-1.4827437 + - rot: -1.5707963267948966 rad + pos: -22.5,-12.5 parent: 31 type: Transform -- proto: FirelockGlass - entities: - - uid: 24 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 4033 components: - - pos: 20.5,18.5 + - rot: -1.5707963267948966 rad + pos: -23.5,-12.5 parent: 31 type: Transform - - uid: 703 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 4135 components: - - pos: 3.5,-22.5 + - pos: -7.5,-18.5 parent: 31 type: Transform - - uid: 704 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4136 components: - - pos: 2.5,-22.5 + - rot: 1.5707963267948966 rad + pos: -4.5,-16.5 parent: 31 type: Transform - - uid: 745 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4137 components: - - rot: 3.141592653589793 rad - pos: 56.5,5.5 + - rot: -1.5707963267948966 rad + pos: -7.5,-14.5 parent: 31 type: Transform - - uid: 852 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 4138 components: - - pos: 5.5,5.5 + - pos: -8.5,-22.5 parent: 31 type: Transform - - uid: 1027 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 4141 components: - - pos: 5.5,4.5 + - rot: -1.5707963267948966 rad + pos: -7.5,-21.5 parent: 31 type: Transform - - uid: 1028 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 4142 components: - - pos: 5.5,3.5 + - rot: -1.5707963267948966 rad + pos: -5.5,-21.5 parent: 31 type: Transform - - uid: 1185 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 4176 components: - - pos: 21.5,18.5 + - rot: 3.141592653589793 rad + pos: 38.5,18.5 parent: 31 type: Transform - - uid: 1505 + - enabled: True + type: AmbientSound + - uid: 4200 components: - - pos: 15.5,8.5 + - rot: -1.5707963267948966 rad + pos: -8.5,-14.5 parent: 31 type: Transform - - uid: 1702 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 4236 components: - - pos: -19.5,-16.5 + - rot: 3.141592653589793 rad + pos: -5.5,12.5 parent: 31 type: Transform - - uid: 2011 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 4319 components: - - pos: 4.5,-22.5 + - pos: 20.5,16.5 parent: 31 type: Transform - - uid: 3928 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4320 components: - - pos: -26.5,3.5 + - rot: -1.5707963267948966 rad + pos: 22.5,17.5 parent: 31 type: Transform - - uid: 3934 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4321 components: - - pos: -26.5,4.5 + - rot: -1.5707963267948966 rad + pos: 23.5,17.5 parent: 31 type: Transform - - uid: 3935 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4322 components: - - pos: -26.5,5.5 + - rot: -1.5707963267948966 rad + pos: 21.5,17.5 parent: 31 type: Transform - - uid: 3943 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4323 components: - - pos: 1.5,-2.5 + - rot: -1.5707963267948966 rad + pos: 24.5,17.5 parent: 31 type: Transform - - uid: 3944 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4387 components: - - pos: 1.5,-1.5 + - rot: -1.5707963267948966 rad + pos: -3.5,-14.5 parent: 31 type: Transform - - uid: 3952 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 4439 components: - - pos: -20.5,-11.5 + - rot: -1.5707963267948966 rad + pos: -4.5,-14.5 parent: 31 type: Transform - - uid: 3959 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 4463 components: - - pos: 1.5,-0.5 + - rot: -1.5707963267948966 rad + pos: -6.5,25.5 parent: 31 type: Transform - - uid: 3969 + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4485 components: - - pos: -24.5,7.5 + - pos: -37.5,-8.5 parent: 31 type: Transform - - uid: 3970 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4535 components: - - pos: -23.5,7.5 + - pos: -37.5,-9.5 parent: 31 type: Transform - - uid: 3975 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4554 components: - - pos: -33.5,3.5 + - rot: 3.141592653589793 rad + pos: 8.5,-15.5 parent: 31 type: Transform - - uid: 3976 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4682 components: - - pos: -33.5,4.5 + - pos: -9.5,-15.5 parent: 31 type: Transform - - uid: 3977 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 4685 components: - - pos: -33.5,5.5 + - rot: 1.5707963267948966 rad + pos: 25.5,10.5 parent: 31 type: Transform - - uid: 3987 + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4687 components: - - pos: 5.5,-1.5 + - rot: -1.5707963267948966 rad + pos: 23.5,11.5 parent: 31 type: Transform - - uid: 3988 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4696 components: - - pos: 5.5,-0.5 + - pos: -24.5,11.5 parent: 31 type: Transform - - uid: 3989 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 4698 components: - - pos: 5.5,-2.5 + - rot: -1.5707963267948966 rad + pos: -7.5,25.5 parent: 31 type: Transform - - uid: 4026 + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4704 components: - - pos: 11.5,3.5 + - rot: -1.5707963267948966 rad + pos: -4.5,-21.5 parent: 31 type: Transform - - uid: 4028 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 4729 components: - - pos: 11.5,5.5 + - rot: 1.5707963267948966 rad + pos: 40.5,3.5 parent: 31 type: Transform - - uid: 4030 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4730 components: - - pos: 11.5,4.5 + - rot: 1.5707963267948966 rad + pos: 39.5,3.5 parent: 31 type: Transform - - uid: 4334 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4732 components: - - pos: 8.5,-8.5 + - rot: 1.5707963267948966 rad + pos: 37.5,3.5 parent: 31 type: Transform - - uid: 4345 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4737 components: - - pos: 8.5,-10.5 + - pos: -24.5,9.5 parent: 31 type: Transform - - uid: 4525 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 4856 components: - - pos: -10.5,1.5 + - rot: 3.141592653589793 rad + pos: 40.5,20.5 parent: 31 type: Transform - - uid: 4528 + - enabled: True + type: AmbientSound + - uid: 4949 components: - - pos: -10.5,0.5 + - pos: 47.5,22.5 parent: 31 type: Transform - - uid: 4529 + - enabled: True + type: AmbientSound + - uid: 4976 components: - - pos: -10.5,-0.5 + - pos: 41.5,22.5 parent: 31 type: Transform - - uid: 4613 + - enabled: True + type: AmbientSound + - uid: 5012 components: - - pos: 37.5,-8.5 + - pos: 45.5,18.5 parent: 31 type: Transform - - uid: 6957 + - enabled: True + type: AmbientSound + - uid: 5013 components: - - pos: 28.5,-17.5 + - pos: 43.5,18.5 parent: 31 type: Transform - - uid: 7178 + - enabled: True + type: AmbientSound + - uid: 5015 components: - - pos: 38.5,-8.5 + - pos: 43.5,19.5 parent: 31 type: Transform - - uid: 7460 + - enabled: True + type: AmbientSound + - uid: 5016 components: - - rot: 1.5707963267948966 rad - pos: 1.5,4.5 + - pos: 45.5,20.5 parent: 31 type: Transform - - uid: 8810 + - enabled: True + type: AmbientSound + - uid: 5030 components: - - pos: 2.5,29.5 + - pos: 36.5,19.5 parent: 31 type: Transform - - uid: 8813 + - enabled: True + type: AmbientSound + - uid: 5031 components: - - pos: 1.5,28.5 + - pos: 36.5,18.5 parent: 31 type: Transform - - uid: 8814 + - enabled: True + type: AmbientSound + - uid: 5044 components: - - pos: 3.5,29.5 + - pos: 43.5,21.5 parent: 31 type: Transform - - uid: 8815 + - enabled: True + type: AmbientSound + - uid: 5045 components: - - pos: 4.5,29.5 + - pos: 45.5,21.5 parent: 31 type: Transform - - uid: 8816 + - enabled: True + type: AmbientSound + - uid: 5046 components: - - pos: 5.5,28.5 + - pos: 43.5,20.5 parent: 31 type: Transform - - uid: 8856 + - enabled: True + type: AmbientSound + - uid: 5047 components: - - pos: 24.5,5.5 + - pos: 45.5,19.5 parent: 31 type: Transform - - uid: 8857 + - enabled: True + type: AmbientSound + - uid: 5048 components: - - pos: 24.5,3.5 + - pos: 41.5,19.5 parent: 31 type: Transform - - uid: 8858 + - enabled: True + type: AmbientSound + - uid: 5049 components: - - pos: 24.5,4.5 + - pos: 41.5,20.5 parent: 31 type: Transform - - uid: 8883 + - enabled: True + type: AmbientSound + - uid: 5050 components: - - pos: 2.5,15.5 + - pos: 41.5,21.5 parent: 31 type: Transform - - uid: 8884 + - enabled: True + type: AmbientSound + - uid: 5056 components: - - pos: 3.5,15.5 + - pos: 43.5,22.5 parent: 31 type: Transform - - uid: 8885 + - enabled: True + type: AmbientSound + - uid: 5123 components: - - pos: 4.5,15.5 + - pos: -37.5,-10.5 parent: 31 type: Transform - - uid: 8954 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5126 components: - - pos: 1.5,3.5 + - rot: 3.141592653589793 rad + pos: 35.5,22.5 parent: 31 type: Transform - - uid: 8956 + - enabled: True + type: AmbientSound + - uid: 5133 components: - - pos: 1.5,5.5 + - pos: 37.5,18.5 parent: 31 type: Transform - - uid: 9188 + - enabled: True + type: AmbientSound + - uid: 5155 components: - - pos: -35.5,-2.5 + - rot: 1.5707963267948966 rad + pos: 32.5,9.5 parent: 31 type: Transform - - uid: 9195 + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5158 components: - - pos: -37.5,-2.5 + - pos: 49.5,18.5 parent: 31 type: Transform - - uid: 9196 + - enabled: True + type: AmbientSound + - uid: 5240 components: - - pos: -36.5,-2.5 + - rot: 1.5707963267948966 rad + pos: -20.5,19.5 parent: 31 type: Transform - - uid: 9432 + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5308 components: - - pos: -19.5,-30.5 + - pos: 48.5,18.5 parent: 31 type: Transform - - uid: 9433 + - enabled: True + type: AmbientSound + - uid: 5309 components: - - pos: -20.5,-30.5 + - rot: -1.5707963267948966 rad + pos: 54.5,15.5 parent: 31 type: Transform - - uid: 9958 + - enabled: True + type: AmbientSound + - uid: 5310 components: - - pos: 36.5,3.5 + - rot: -1.5707963267948966 rad + pos: 53.5,17.5 parent: 31 type: Transform - - uid: 9959 + - enabled: True + type: AmbientSound + - uid: 5311 components: - - pos: 36.5,4.5 + - rot: -1.5707963267948966 rad + pos: 54.5,16.5 parent: 31 type: Transform - - uid: 9960 + - enabled: True + type: AmbientSound + - uid: 5323 components: - - pos: 36.5,5.5 + - pos: 2.5,2.5 parent: 31 type: Transform - - uid: 9961 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5324 components: - - pos: 33.5,7.5 + - pos: 2.5,1.5 parent: 31 type: Transform - - uid: 9962 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5326 components: - - pos: 30.5,3.5 + - pos: 2.5,-0.5 parent: 31 type: Transform - - uid: 9963 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5327 components: - - pos: 30.5,5.5 + - pos: 2.5,-1.5 parent: 31 type: Transform - - uid: 9964 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5328 components: - - pos: 33.5,1.5 + - pos: 2.5,-2.5 parent: 31 type: Transform - - uid: 9965 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5329 components: - - pos: 25.5,17.5 + - pos: 2.5,-3.5 parent: 31 type: Transform - - uid: 9966 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5330 components: - - pos: 25.5,16.5 + - pos: 2.5,-4.5 parent: 31 type: Transform - - uid: 9967 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5331 components: - - pos: 21.5,14.5 + - pos: 2.5,-5.5 parent: 31 type: Transform - - uid: 9968 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5333 components: - - pos: 20.5,14.5 + - pos: 2.5,-7.5 parent: 31 type: Transform - - uid: 9969 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5334 components: - - pos: 3.5,26.5 + - pos: 2.5,-8.5 parent: 31 type: Transform - - uid: 9970 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5335 components: - - pos: -21.5,3.5 + - pos: 2.5,-9.5 parent: 31 type: Transform - - uid: 9971 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5336 components: - - pos: -21.5,4.5 + - pos: 2.5,-10.5 parent: 31 type: Transform - - uid: 9972 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5337 components: - - pos: -21.5,5.5 + - pos: 2.5,-11.5 parent: 31 type: Transform - - uid: 9973 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5338 components: - - pos: 54.5,2.5 + - pos: 2.5,-12.5 parent: 31 type: Transform - - uid: 9986 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5339 components: - - rot: -1.5707963267948966 rad - pos: 0.5,-20.5 + - pos: 2.5,-13.5 parent: 31 type: Transform - - uid: 9987 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5340 components: - - rot: -1.5707963267948966 rad - pos: 0.5,-19.5 + - pos: 2.5,-14.5 parent: 31 type: Transform - - uid: 9988 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5341 components: - - rot: -1.5707963267948966 rad - pos: 2.5,-12.5 + - pos: 2.5,-15.5 parent: 31 type: Transform - - uid: 9989 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5343 components: - - rot: -1.5707963267948966 rad - pos: 3.5,-12.5 + - pos: 2.5,-17.5 parent: 31 type: Transform - - uid: 9990 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5344 components: - - rot: -1.5707963267948966 rad - pos: 4.5,-12.5 + - pos: 2.5,-18.5 parent: 31 type: Transform - - uid: 9994 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5346 components: - - rot: 3.141592653589793 rad - pos: -24.5,1.5 + - pos: 2.5,-20.5 parent: 31 type: Transform - - uid: 9995 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5347 components: - - rot: 3.141592653589793 rad - pos: -23.5,1.5 + - pos: 2.5,-21.5 parent: 31 type: Transform - - uid: 9999 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5348 components: - - rot: 1.5707963267948966 rad - pos: -5.5,6.5 + - pos: 2.5,-22.5 parent: 31 type: Transform - - uid: 10000 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5350 components: - - rot: 1.5707963267948966 rad - pos: -4.5,6.5 + - pos: 2.5,-24.5 parent: 31 type: Transform - - uid: 10008 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5351 components: - - rot: 1.5707963267948966 rad - pos: 45.5,8.5 + - pos: 2.5,-25.5 parent: 31 type: Transform - - uid: 10017 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5352 components: - - rot: -1.5707963267948966 rad - pos: 13.5,-9.5 + - pos: 2.5,-26.5 parent: 31 type: Transform - - uid: 10099 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5353 components: - - pos: 22.5,18.5 + - pos: 2.5,-27.5 parent: 31 type: Transform -- proto: Fireplace - entities: - - uid: 791 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5355 components: - - pos: -24.5,-21.5 + - pos: 4.5,4.5 parent: 31 type: Transform - - uid: 3749 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5356 components: - - pos: 0.5,1.5 + - pos: 4.5,3.5 parent: 31 type: Transform - - uid: 7136 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5357 components: - - pos: 21.5,-12.5 + - pos: 4.5,2.5 parent: 31 type: Transform - - uid: 8988 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5358 components: - - pos: 7.5,26.5 + - pos: 4.5,1.5 parent: 31 type: Transform -- proto: Flash - entities: - - uid: 2499 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5359 components: - - pos: 8.497082,31.408243 + - pos: 4.5,0.5 parent: 31 type: Transform - - uid: 9736 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5360 components: - - pos: -5.614477,13.581995 + - pos: 4.5,-0.5 parent: 31 type: Transform -- proto: FlashlightLantern - entities: - - uid: 1877 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5362 components: - - pos: -2.5532327,30.014599 + - pos: 4.5,-2.5 parent: 31 type: Transform - - uid: 8847 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5363 components: - - pos: 30.50418,14.529506 + - pos: 4.5,-3.5 parent: 31 type: Transform -- proto: FloorDrain - entities: - - uid: 262 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5364 components: - - pos: 15.5,-17.5 + - pos: 4.5,-4.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9108 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5366 components: - - pos: 17.5,-0.5 + - pos: 4.5,-6.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9109 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5367 components: - - rot: 3.141592653589793 rad - pos: -10.5,-4.5 + - pos: 4.5,-7.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures - - uid: 9110 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5368 components: - - pos: -21.5,9.5 + - pos: 4.5,-8.5 parent: 31 type: Transform - - fixtures: {} - type: Fixtures -- proto: FloorTileItemArcadeBlue - entities: - - uid: 7988 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5369 components: - - pos: 27.598589,-5.5317454 + - pos: 4.5,-9.5 parent: 31 type: Transform - - uid: 7989 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5370 components: - - pos: 27.598589,-5.5317454 + - pos: 4.5,-10.5 parent: 31 type: Transform - - uid: 7990 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5371 components: - - pos: 27.598589,-5.5317454 + - pos: 4.5,-11.5 parent: 31 type: Transform - - uid: 7991 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5372 components: - - pos: 27.598589,-5.5317454 + - pos: 4.5,-12.5 parent: 31 type: Transform - - uid: 7992 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5373 components: - - pos: 27.598589,-5.5317454 + - pos: 4.5,-13.5 parent: 31 type: Transform - - uid: 7993 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5375 components: - - pos: 27.598589,-5.5317454 + - pos: 4.5,-15.5 parent: 31 type: Transform - - uid: 7994 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5376 components: - - pos: 27.598589,-5.5317454 + - pos: 4.5,-16.5 parent: 31 type: Transform - - uid: 7995 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5378 components: - - pos: 27.598589,-5.5317454 + - pos: 4.5,-18.5 parent: 31 type: Transform - - uid: 7996 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5379 components: - - pos: 27.598589,-5.5317454 + - pos: 4.5,-19.5 parent: 31 type: Transform - - uid: 7997 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5381 components: - - pos: 27.598589,-5.5317454 + - pos: 4.5,-21.5 parent: 31 type: Transform - - uid: 7998 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5382 components: - - pos: 27.598589,-5.5317454 + - pos: 4.5,-22.5 parent: 31 type: Transform - - uid: 7999 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5383 components: - - pos: 27.598589,-5.5317454 + - pos: 4.5,-23.5 parent: 31 type: Transform - - uid: 8000 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5384 components: - - pos: 27.598589,-5.5317454 + - pos: 4.5,-24.5 parent: 31 type: Transform - - uid: 8001 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5385 components: - - pos: 27.598589,-5.5317454 + - pos: 4.5,-25.5 parent: 31 type: Transform - - uid: 8002 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5386 components: - - pos: 27.598589,-5.5317454 + - pos: 4.5,-26.5 parent: 31 type: Transform - - uid: 8003 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5387 components: - - pos: 27.598589,-5.5317454 + - pos: 4.5,-27.5 parent: 31 type: Transform - - uid: 8004 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5388 components: - - pos: 27.598589,-5.5317454 + - pos: 4.5,-28.5 parent: 31 type: Transform - - uid: 8005 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5389 components: - - pos: 27.598589,-5.5317454 + - rot: -1.5707963267948966 rad + pos: 7.5,5.5 parent: 31 type: Transform - - uid: 8006 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5390 components: - - pos: 27.598589,-5.5317454 + - rot: -1.5707963267948966 rad + pos: 6.5,5.5 parent: 31 type: Transform - - uid: 8007 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5391 components: - - pos: 27.598589,-5.5317454 + - rot: -1.5707963267948966 rad + pos: 5.5,5.5 parent: 31 type: Transform - - uid: 8008 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5393 components: - - pos: 27.598589,-5.5317454 + - rot: -1.5707963267948966 rad + pos: 4.5,3.5 parent: 31 type: Transform - - uid: 8009 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5394 components: - - pos: 27.598589,-5.5317454 + - rot: -1.5707963267948966 rad + pos: 5.5,3.5 parent: 31 type: Transform - - uid: 8010 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5395 components: - - pos: 27.598589,-5.5317454 + - rot: -1.5707963267948966 rad + pos: 6.5,3.5 parent: 31 type: Transform - - uid: 8011 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5398 components: - - pos: 27.598589,-5.5317454 + - rot: -1.5707963267948966 rad + pos: 8.5,3.5 parent: 31 type: Transform - - uid: 8012 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5400 components: - - pos: 27.598589,-5.5317454 + - rot: -1.5707963267948966 rad + pos: 10.5,3.5 parent: 31 type: Transform - - uid: 8013 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5401 components: - - pos: 27.598589,-5.5317454 + - rot: -1.5707963267948966 rad + pos: 11.5,3.5 parent: 31 type: Transform - - uid: 8014 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5402 components: - - pos: 27.598589,-5.5317454 + - rot: -1.5707963267948966 rad + pos: 12.5,3.5 parent: 31 type: Transform - - uid: 8015 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5403 components: - - pos: 27.598589,-5.5317454 + - rot: -1.5707963267948966 rad + pos: 13.5,3.5 parent: 31 type: Transform - - uid: 8016 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5404 components: - - pos: 27.598589,-5.5317454 + - rot: -1.5707963267948966 rad + pos: 14.5,3.5 parent: 31 type: Transform - - uid: 8017 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5406 components: - - pos: 27.598589,-5.5317454 + - rot: -1.5707963267948966 rad + pos: 16.5,3.5 parent: 31 type: Transform -- proto: FloraTreeLarge05 - entities: - - uid: 8993 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5407 components: - - pos: 49.54521,-23.143997 + - rot: -1.5707963267948966 rad + pos: 17.5,3.5 parent: 31 type: Transform -- proto: FoodBanana - entities: - - uid: 7347 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5408 components: - - pos: -19.481161,-9.424397 + - rot: -1.5707963267948966 rad + pos: 18.5,3.5 parent: 31 type: Transform - - uid: 7348 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5409 components: - - pos: -19.356161,-9.502522 + - rot: -1.5707963267948966 rad + pos: 19.5,3.5 parent: 31 type: Transform -- proto: FoodBoxDonut - entities: - - uid: 1822 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5410 components: - - pos: -6.583227,13.62887 + - rot: -1.5707963267948966 rad + pos: 20.5,3.5 parent: 31 type: Transform - - uid: 8989 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5411 components: - - pos: -1.5376439,25.04381 + - rot: -1.5707963267948966 rad + pos: 21.5,5.5 parent: 31 type: Transform -- proto: FoodBreadPlainSlice - entities: - - uid: 9537 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5412 components: - - pos: -39.200394,19.366982 + - rot: -1.5707963267948966 rad + pos: 20.5,5.5 parent: 31 type: Transform - - uid: 9589 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5413 components: - - pos: -34.62227,19.663857 + - rot: -1.5707963267948966 rad + pos: 19.5,5.5 parent: 31 type: Transform - - uid: 9595 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5414 components: - - pos: -34.74727,19.335732 + - rot: -1.5707963267948966 rad + pos: 18.5,5.5 parent: 31 type: Transform - - uid: 9596 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5415 components: - - pos: -34.24727,19.335732 + - rot: -1.5707963267948966 rad + pos: 17.5,5.5 parent: 31 type: Transform - - uid: 9597 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5416 components: - - pos: -39.325394,19.757607 + - rot: -1.5707963267948966 rad + pos: 16.5,5.5 parent: 31 type: Transform - - uid: 9598 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5417 components: - - pos: -39.700394,19.398232 + - rot: -1.5707963267948966 rad + pos: 15.5,5.5 parent: 31 type: Transform -- proto: FoodBurgerRobot - entities: - - uid: 9585 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5418 components: - - pos: -8.452381,-30.394545 + - rot: -1.5707963267948966 rad + pos: 14.5,5.5 parent: 31 type: Transform -- proto: FoodCondimentBottleEnzyme - entities: - - uid: 8441 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5420 components: - - pos: -14.835613,-0.50339985 + - rot: -1.5707963267948966 rad + pos: 12.5,5.5 parent: 31 type: Transform - - tags: [] - type: Tag -- proto: FoodCondimentPacketSalt - entities: - - uid: 9576 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5421 components: - - pos: 29.558077,-6.33541 + - rot: -1.5707963267948966 rad + pos: 11.5,5.5 parent: 31 type: Transform -- proto: FoodDonutChocolate - entities: - - uid: 7461 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5423 components: - - pos: -2.2249928,7.7370577 + - rot: -1.5707963267948966 rad + pos: 9.5,5.5 parent: 31 type: Transform -- proto: FoodMeat - entities: - - uid: 9057 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5426 components: - - pos: -10.159095,-4.4711595 + - rot: 1.5707963267948966 rad + pos: 22.5,3.5 parent: 31 type: Transform - - uid: 9058 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5427 components: - - pos: -11.76847,-4.7055345 + - rot: 1.5707963267948966 rad + pos: 23.5,3.5 parent: 31 type: Transform - - uid: 9059 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5428 components: - - pos: -13.440345,-4.4399095 + - rot: 1.5707963267948966 rad + pos: 24.5,3.5 parent: 31 type: Transform -- proto: FoodMeatRatdoubleKebab - entities: - - uid: 7951 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5429 components: - - pos: 22.107237,-10.323744 + - rot: 1.5707963267948966 rad + pos: 25.5,3.5 parent: 31 type: Transform -- proto: FoodNoodles - entities: - - uid: 6693 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5431 components: - - pos: 3.5003717,-30.269686 + - rot: 1.5707963267948966 rad + pos: 27.5,3.5 parent: 31 type: Transform -- proto: FoodNoodlesSpesslaw - entities: - - uid: 5153 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5432 components: - - pos: -12.528873,11.525741 + - rot: 1.5707963267948966 rad + pos: 28.5,3.5 parent: 31 type: Transform -- proto: FoodPieBananaCream - entities: - - uid: 7349 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5433 components: - - pos: -19.668661,-9.268147 + - rot: 1.5707963267948966 rad + pos: 29.5,3.5 parent: 31 type: Transform - - uid: 7350 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5434 components: - - pos: -19.668661,-9.268147 + - rot: 1.5707963267948966 rad + pos: 30.5,3.5 parent: 31 type: Transform -- proto: FoodPizzaArnoldSlice - entities: - - uid: 9053 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5435 components: - - pos: -29.477003,17.566315 + - rot: 1.5707963267948966 rad + pos: 31.5,3.5 parent: 31 type: Transform -- proto: FoodPizzaPineapple - entities: - - uid: 8745 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5436 components: - - pos: -35.517406,-25.152033 + - rot: 1.5707963267948966 rad + pos: 31.5,5.5 parent: 31 type: Transform -- proto: FoodShakerSalt - entities: - - uid: 9577 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5437 components: - - pos: 29.948702,-6.58541 + - rot: 1.5707963267948966 rad + pos: 30.5,5.5 parent: 31 type: Transform - - uid: 9578 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5438 components: - - pos: 29.136202,-6.538535 + - rot: 1.5707963267948966 rad + pos: 29.5,5.5 parent: 31 type: Transform -- proto: FoodSoupElectron - entities: - - uid: 8433 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5440 components: - - pos: -6.4781985,-1.2809834 + - rot: 1.5707963267948966 rad + pos: 27.5,5.5 parent: 31 type: Transform -- proto: FoodTinBeans - entities: - - uid: 3485 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5441 components: - - flags: InContainer - type: MetaData - - parent: 2363 + - rot: 1.5707963267948966 rad + pos: 26.5,5.5 + parent: 31 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 3831 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5442 components: - - flags: InContainer - type: MetaData - - parent: 2363 + - rot: 1.5707963267948966 rad + pos: 25.5,5.5 + parent: 31 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 3832 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5443 components: - - flags: InContainer - type: MetaData - - parent: 2363 + - rot: 1.5707963267948966 rad + pos: 24.5,5.5 + parent: 31 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodTinMRE - entities: - - uid: 7837 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5444 components: - - pos: -26.53067,19.803333 + - rot: 1.5707963267948966 rad + pos: 23.5,5.5 parent: 31 type: Transform -- proto: FoodTinPeachesMaint - entities: - - uid: 7585 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5445 components: - - pos: 0.4802723,-11.38672 + - pos: 13.5,6.5 parent: 31 type: Transform -- proto: ForensicScanner - entities: - - uid: 9533 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5446 components: - - pos: -7.95586,20.42852 + - pos: 13.5,7.5 parent: 31 type: Transform -- proto: GasAnalyzer - entities: - - uid: 6417 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5447 components: - - pos: 43.492275,13.452083 + - pos: 13.5,8.5 parent: 31 type: Transform - - uid: 6569 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5448 components: - - pos: 43.492275,13.452151 + - pos: 13.5,9.5 parent: 31 type: Transform - - uid: 7389 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5449 components: - - pos: -17.519577,-19.949436 + - pos: 15.5,4.5 parent: 31 type: Transform -- proto: GasFilter - entities: - - uid: 5222 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5450 components: - - rot: -1.5707963267948966 rad - pos: 18.5,-21.5 + - pos: 15.5,5.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor -- proto: GasMinerCarbonDioxide - entities: - - uid: 1239 + - uid: 5451 components: - - pos: 38.5,22.5 + - pos: 15.5,6.5 parent: 31 type: Transform -- proto: GasMinerNitrogen - entities: - - uid: 7220 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5452 components: - - pos: 32.5,22.5 + - pos: 15.5,7.5 parent: 31 type: Transform -- proto: GasMinerOxygen - entities: - - uid: 17 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5453 components: - - pos: 34.5,22.5 + - pos: 15.5,8.5 parent: 31 type: Transform -- proto: GasMinerPlasma - entities: - - uid: 9165 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5454 components: - - pos: 40.5,22.5 + - pos: 15.5,9.5 parent: 31 type: Transform -- proto: GasMinerWaterVapor - entities: - - uid: 1118 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5455 components: - - pos: 44.5,22.5 + - pos: 15.5,10.5 parent: 31 type: Transform -- proto: GasOutletInjector - entities: - - uid: 672 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5460 components: - - pos: 42.5,21.5 + - rot: -1.5707963267948966 rad + pos: 15.5,10.5 parent: 31 type: Transform - - uid: 1056 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5461 components: - - pos: 44.5,21.5 + - rot: -1.5707963267948966 rad + pos: 16.5,10.5 parent: 31 type: Transform - - uid: 2177 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5462 components: - - pos: 34.5,21.5 + - rot: -1.5707963267948966 rad + pos: 17.5,10.5 parent: 31 type: Transform - - uid: 2668 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5463 components: - - pos: 40.5,21.5 + - rot: -1.5707963267948966 rad + pos: 18.5,10.5 parent: 31 type: Transform - - uid: 3461 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5466 components: - - pos: 38.5,21.5 + - rot: -1.5707963267948966 rad + pos: 19.5,10.5 parent: 31 type: Transform - - uid: 4034 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5467 components: - - pos: 36.5,21.5 + - rot: -1.5707963267948966 rad + pos: 19.5,11.5 parent: 31 type: Transform - - uid: 7548 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5468 components: - - pos: 32.5,21.5 + - rot: -1.5707963267948966 rad + pos: 18.5,11.5 parent: 31 type: Transform -- proto: GasPassiveVent - entities: - - uid: 7 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5469 components: - - rot: 1.5707963267948966 rad - pos: 40.5,23.5 + - rot: -1.5707963267948966 rad + pos: 17.5,11.5 parent: 31 type: Transform - - uid: 49 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5475 components: - - rot: 1.5707963267948966 rad - pos: 42.5,23.5 + - rot: 3.141592653589793 rad + pos: 8.5,6.5 parent: 31 type: Transform - - uid: 52 + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5480 components: - rot: 1.5707963267948966 rad - pos: 38.5,23.5 + pos: 21.5,10.5 parent: 31 type: Transform - - uid: 127 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5482 components: - rot: 1.5707963267948966 rad - pos: 44.5,23.5 + pos: 3.5,0.5 parent: 31 type: Transform - - uid: 519 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5483 components: - - pos: 31.5,19.5 + - rot: 1.5707963267948966 rad + pos: 4.5,0.5 parent: 31 type: Transform - - uid: 1531 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5484 components: - rot: 1.5707963267948966 rad - pos: 32.5,23.5 + pos: 5.5,0.5 parent: 31 type: Transform - - uid: 3124 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5485 components: - rot: 1.5707963267948966 rad - pos: 36.5,23.5 + pos: 6.5,0.5 parent: 31 type: Transform - - uid: 3477 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5486 components: - rot: 1.5707963267948966 rad - pos: 34.5,23.5 + pos: 7.5,0.5 parent: 31 type: Transform - - uid: 5156 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5487 components: - - rot: 3.141592653589793 rad - pos: -9.5,-23.5 + - rot: 1.5707963267948966 rad + pos: 8.5,0.5 parent: 31 type: Transform - - uid: 5547 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5489 components: - - rot: -1.5707963267948966 rad - pos: -12.5,-4.5 + - rot: 1.5707963267948966 rad + pos: 10.5,0.5 parent: 31 type: Transform - - uid: 6548 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5490 components: - - rot: -1.5707963267948966 rad - pos: 53.5,16.5 + - rot: 1.5707963267948966 rad + pos: 9.5,-1.5 parent: 31 type: Transform - - uid: 6903 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5492 components: - - rot: 3.141592653589793 rad - pos: 53.5,17.5 + - rot: 1.5707963267948966 rad + pos: 7.5,-1.5 parent: 31 type: Transform - - uid: 6908 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5493 components: - - pos: 48.5,20.5 + - rot: 1.5707963267948966 rad + pos: 6.5,-1.5 parent: 31 type: Transform - - color: '#FF1212FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 7387 + - uid: 5494 components: - - rot: 3.141592653589793 rad - pos: -14.5,-25.5 + - rot: 1.5707963267948966 rad + pos: 5.5,-1.5 parent: 31 type: Transform - - uid: 7388 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5497 components: - - rot: 3.141592653589793 rad - pos: -13.5,-25.5 + - rot: 1.5707963267948966 rad + pos: -11.5,0.5 parent: 31 type: Transform - - uid: 7401 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5498 components: - - rot: 3.141592653589793 rad - pos: -17.5,-29.5 + - rot: 1.5707963267948966 rad + pos: -10.5,0.5 parent: 31 type: Transform -- proto: GasPipeBend - entities: - - uid: 1 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5499 components: - - pos: 39.5,23.5 + - rot: 1.5707963267948966 rad + pos: -9.5,0.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 21 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5501 components: - - pos: 41.5,23.5 + - rot: 1.5707963267948966 rad + pos: -7.5,0.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 129 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5502 components: - rot: 1.5707963267948966 rad - pos: 39.5,6.5 + pos: -6.5,0.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 329 + - uid: 5503 components: - rot: -1.5707963267948966 rad - pos: 2.5,-29.5 + pos: -5.5,0.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 667 - components: - - pos: 45.5,23.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 834 + - uid: 5504 components: - - rot: 3.141592653589793 rad - pos: 47.5,-3.5 + - rot: 1.5707963267948966 rad + pos: -4.5,0.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 898 - components: - - pos: 43.5,23.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 954 + - uid: 5505 components: - - rot: -1.5707963267948966 rad - pos: 34.5,10.5 + - rot: 1.5707963267948966 rad + pos: -3.5,0.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 981 + - uid: 5506 components: - - pos: 10.5,24.5 + - rot: 1.5707963267948966 rad + pos: -2.5,0.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 1250 + - uid: 5507 components: - - rot: -1.5707963267948966 rad - pos: 12.5,25.5 + - rot: 1.5707963267948966 rad + pos: -1.5,0.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 2416 + - uid: 5508 components: - - pos: 33.5,23.5 + - rot: 1.5707963267948966 rad + pos: -0.5,0.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 2417 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5509 components: - - pos: 37.5,23.5 + - rot: 1.5707963267948966 rad + pos: 0.5,0.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 3011 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5510 components: - - pos: 35.5,23.5 + - rot: 1.5707963267948966 rad + pos: 1.5,0.5 parent: 31 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 3206 + - uid: 5511 components: - - rot: 3.141592653589793 rad - pos: 24.5,10.5 + - rot: 1.5707963267948966 rad + pos: 3.5,-1.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 3207 + - uid: 5512 components: - - pos: 24.5,11.5 + - rot: 1.5707963267948966 rad + pos: 2.5,-1.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 4316 + - uid: 5513 components: - rot: 1.5707963267948966 rad - pos: 22.5,16.5 + pos: 1.5,-1.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 4735 + - uid: 5514 components: - - pos: 31.5,9.5 + - rot: 1.5707963267948966 rad + pos: 0.5,-1.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5456 + - uid: 5515 components: - rot: 1.5707963267948966 rad - pos: 15.5,11.5 + pos: -0.5,-1.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5457 + - uid: 5517 components: - rot: 1.5707963267948966 rad - pos: 13.5,10.5 + pos: -2.5,-1.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5527 + - uid: 5518 components: - - rot: 3.141592653589793 rad - pos: -12.5,-1.5 + - rot: 1.5707963267948966 rad + pos: -3.5,-1.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5538 + - uid: 5519 components: - - rot: -1.5707963267948966 rad - pos: -16.5,-1.5 + - rot: 1.5707963267948966 rad + pos: -4.5,-1.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5551 + - uid: 5520 components: - rot: 1.5707963267948966 rad - pos: -16.5,-4.5 + pos: -5.5,-1.5 parent: 31 type: Transform - - uid: 5553 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5521 components: - - pos: 10.5,-1.5 + - rot: 1.5707963267948966 rad + pos: -6.5,-1.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5554 + - uid: 5522 components: - - pos: 11.5,0.5 + - rot: 1.5707963267948966 rad + pos: -7.5,-1.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5582 + - uid: 5523 components: - - pos: 19.5,-8.5 + - rot: 1.5707963267948966 rad + pos: -8.5,-1.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5589 + - uid: 5524 components: - - pos: 18.5,-10.5 + - rot: 1.5707963267948966 rad + pos: -9.5,-1.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5627 + - uid: 5525 components: - rot: 1.5707963267948966 rad - pos: 14.5,-15.5 + pos: -10.5,-1.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5630 + - uid: 5526 components: - - rot: -1.5707963267948966 rad - pos: 22.5,-15.5 + - rot: 1.5707963267948966 rad + pos: -11.5,-1.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5632 + - uid: 5529 components: - rot: -1.5707963267948966 rad - pos: 21.5,-14.5 + pos: -12.5,0.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5634 + - uid: 5530 components: - - rot: 1.5707963267948966 rad - pos: 21.5,-13.5 + - rot: -1.5707963267948966 rad + pos: -14.5,0.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5639 + - uid: 5531 components: - - rot: 1.5707963267948966 rad - pos: 9.5,-8.5 + - rot: -1.5707963267948966 rad + pos: -15.5,0.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5640 + - uid: 5532 components: - - rot: 1.5707963267948966 rad - pos: 8.5,-10.5 + - rot: -1.5707963267948966 rad + pos: -16.5,0.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5676 + - uid: 5533 components: - rot: -1.5707963267948966 rad - pos: 19.5,-22.5 + pos: -17.5,0.5 parent: 31 type: Transform - - uid: 5682 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5534 components: - rot: -1.5707963267948966 rad - pos: 15.5,-17.5 + pos: -18.5,0.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5683 + - uid: 5535 components: - - rot: 1.5707963267948966 rad - pos: 14.5,-17.5 + - rot: 3.141592653589793 rad + pos: -16.5,1.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5697 + - uid: 5536 components: - rot: 3.141592653589793 rad - pos: 8.5,-25.5 + pos: -16.5,0.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5700 + - uid: 5537 components: - - rot: -1.5707963267948966 rad - pos: 5.5,-20.5 + - rot: 3.141592653589793 rad + pos: -16.5,-0.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5701 + - uid: 5539 components: - rot: 1.5707963267948966 rad - pos: 5.5,-19.5 + pos: -27.5,5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5702 + - uid: 5540 components: - - pos: 7.5,-19.5 + - rot: 1.5707963267948966 rad + pos: -26.5,5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5703 + - uid: 5548 components: - - rot: 3.141592653589793 rad - pos: 7.5,-20.5 + - rot: -1.5707963267948966 rad + pos: -13.5,-4.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5752 + - uid: 5549 components: - - rot: 1.5707963267948966 rad - pos: -4.5,-16.5 + - rot: -1.5707963267948966 rad + pos: -14.5,-4.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5755 + - uid: 5550 components: - rot: -1.5707963267948966 rad - pos: -2.5,-16.5 + pos: -15.5,-4.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5778 + - uid: 5555 components: - - rot: 3.141592653589793 rad - pos: 14.5,-25.5 + - pos: 10.5,-2.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5779 + - uid: 5556 components: - - pos: 15.5,-25.5 + - pos: 10.5,-3.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5892 + - uid: 5557 components: - - rot: 3.141592653589793 rad - pos: -4.5,20.5 + - pos: 10.5,-4.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5893 + - uid: 5558 components: - - pos: -4.5,24.5 + - pos: 10.5,-5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5894 + - uid: 5559 components: - - rot: 3.141592653589793 rad - pos: -7.5,24.5 + - pos: 10.5,-6.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5895 + - uid: 5560 components: - - pos: -7.5,25.5 + - pos: 10.5,-7.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5896 + - uid: 5561 components: - - rot: 1.5707963267948966 rad - pos: -18.5,25.5 + - pos: 11.5,-0.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5897 + - uid: 5562 components: - - rot: -1.5707963267948966 rad - pos: -18.5,19.5 + - pos: 11.5,-1.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5925 + - uid: 5563 components: - - pos: -22.5,24.5 + - pos: 11.5,-2.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5944 + - uid: 5564 components: - - pos: 8.5,9.5 + - pos: 11.5,-3.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5971 + - uid: 5565 components: - - pos: -5.5,10.5 + - pos: 11.5,-4.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5991 + - uid: 5566 + components: + - pos: 11.5,-5.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5567 + components: + - pos: 11.5,-6.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5568 components: - - pos: -4.5,10.5 + - pos: 11.5,-7.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5993 + - uid: 5569 components: - - pos: -5.5,15.5 + - pos: 11.5,-8.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 6001 + - uid: 5570 components: - - rot: 1.5707963267948966 rad - pos: -8.5,21.5 + - pos: 11.5,-9.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6016 + - uid: 5573 components: - - rot: 3.141592653589793 rad - pos: -5.5,10.5 + - rot: 1.5707963267948966 rad + pos: 11.5,-8.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6025 + - uid: 5575 components: - - pos: -11.5,16.5 + - rot: 1.5707963267948966 rad + pos: 13.5,-8.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6026 + - enabled: True + type: AmbientSound + - uid: 5576 components: - - rot: 3.141592653589793 rad - pos: -12.5,16.5 + - rot: 1.5707963267948966 rad + pos: 14.5,-8.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6106 + - uid: 5578 components: - - rot: 3.141592653589793 rad - pos: -27.5,9.5 + - rot: 1.5707963267948966 rad + pos: 14.5,-10.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6214 + - uid: 5580 components: - rot: 1.5707963267948966 rad - pos: 20.5,17.5 + pos: 16.5,-10.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6228 + - uid: 5581 components: - - rot: 3.141592653589793 rad - pos: 44.5,2.5 + - rot: 1.5707963267948966 rad + pos: 18.5,-8.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6265 + - uid: 5583 components: - - rot: 3.141592653589793 rad - pos: 38.5,0.5 + - pos: 17.5,-9.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6266 + - uid: 5585 components: - - pos: 39.5,0.5 + - rot: 1.5707963267948966 rad + pos: 13.5,-10.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6274 + - enabled: True + type: AmbientSound + - uid: 5588 components: - - rot: 3.141592653589793 rad - pos: 37.5,-0.5 + - rot: 1.5707963267948966 rad + pos: 17.5,-8.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6277 + - uid: 5590 components: - - rot: -1.5707963267948966 rad - pos: 48.5,-2.5 + - pos: 17.5,-8.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6278 + - uid: 5591 components: - - rot: 3.141592653589793 rad - pos: 49.5,-2.5 + - pos: 17.5,-7.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6279 + - uid: 5593 components: - - pos: 51.5,-2.5 + - pos: 17.5,-5.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6282 + - uid: 5594 components: - - rot: 1.5707963267948966 rad - pos: 47.5,-2.5 + - pos: 17.5,-4.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6286 + - uid: 5595 components: - - rot: -1.5707963267948966 rad - pos: 51.5,-3.5 + - pos: 17.5,-3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6357 + - uid: 5596 components: - - pos: 47.5,23.5 + - pos: 17.5,-2.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 6361 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5598 components: - - rot: 1.5707963267948966 rad - pos: 44.5,7.5 + - pos: 16.5,-7.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6415 + - uid: 5599 components: - - rot: 1.5707963267948966 rad - pos: 46.5,23.5 + - pos: 16.5,-6.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 6477 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5601 components: - - rot: -1.5707963267948966 rad - pos: 54.5,15.5 + - pos: 16.5,-4.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 6540 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5602 components: - - rot: 1.5707963267948966 rad - pos: 43.5,9.5 + - pos: 16.5,-3.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6836 + - uid: 5603 components: - - rot: -1.5707963267948966 rad - pos: 52.5,17.5 + - pos: 16.5,-2.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 6838 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5604 components: - - pos: 54.5,18.5 + - pos: 16.5,-1.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 6902 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5608 components: - rot: 1.5707963267948966 rad - pos: 52.5,18.5 + pos: -28.5,3.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 7091 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5612 components: - - rot: 3.141592653589793 rad - pos: 23.5,9.5 + - pos: 18.5,-12.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 7092 + - uid: 5613 components: - - pos: 23.5,10.5 + - pos: 18.5,-13.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 7183 + - uid: 5615 components: - - rot: 3.141592653589793 rad - pos: 55.5,1.5 + - pos: 19.5,-10.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 7400 + - uid: 5616 components: - - rot: -1.5707963267948966 rad - pos: 0.5,-30.5 + - pos: 19.5,-11.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 7412 + - uid: 5617 components: - - rot: 1.5707963267948966 rad - pos: 0.5,-29.5 + - pos: 19.5,-12.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 7466 + - uid: 5618 components: - - rot: -1.5707963267948966 rad - pos: 4.5,-29.5 + - pos: 19.5,-13.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 7726 + - uid: 5619 components: - - rot: 3.141592653589793 rad - pos: -37.5,3.5 + - pos: 19.5,-14.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 9200 + - enabled: True + type: AmbientSound + - uid: 5620 components: - - rot: 1.5707963267948966 rad - pos: -37.5,0.5 + - rot: -1.5707963267948966 rad + pos: 17.5,-14.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 9311 + - enabled: True + type: AmbientSound + - uid: 5621 components: - - rot: 3.141592653589793 rad - pos: -32.5,-11.5 + - rot: -1.5707963267948966 rad + pos: 16.5,-14.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 9312 + - uid: 5622 components: - - pos: -24.5,-11.5 + - rot: -1.5707963267948966 rad + pos: 15.5,-14.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9314 + - uid: 5623 components: - - pos: -22.5,-13.5 + - rot: -1.5707963267948966 rad + pos: 18.5,-15.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9321 + - uid: 5624 components: - rot: -1.5707963267948966 rad - pos: -19.5,-22.5 + pos: 17.5,-15.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9353 + - uid: 5625 components: - - pos: -24.5,14.5 + - rot: -1.5707963267948966 rad + pos: 16.5,-15.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 9354 + - uid: 5641 components: - - rot: 3.141592653589793 rad - pos: -25.5,14.5 + - rot: 1.5707963267948966 rad + pos: 10.5,-10.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9355 + - uid: 5642 components: - rot: 1.5707963267948966 rad - pos: -25.5,19.5 + pos: 9.5,-10.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9356 + - uid: 5643 components: - - pos: -19.5,-18.5 + - pos: 9.5,-9.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9535 + - uid: 5644 components: - - rot: 3.141592653589793 rad - pos: 17.5,-22.5 + - pos: 9.5,-10.5 parent: 31 type: Transform - - uid: 9800 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5645 components: - - rot: 3.141592653589793 rad - pos: -11.5,-27.5 + - pos: 9.5,-11.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 9801 + - uid: 5646 components: - - pos: -5.5,-27.5 + - pos: 9.5,-12.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 9811 + - uid: 5647 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-23.5 + - pos: 9.5,-13.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9817 + - uid: 5649 components: - - rot: 1.5707963267948966 rad - pos: -4.5,-27.5 + - pos: 8.5,-14.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 9818 + - uid: 5651 components: - - rot: -1.5707963267948966 rad - pos: -0.5,-27.5 + - pos: 8.5,-12.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor -- proto: GasPipeFourway - entities: - - uid: 5321 + - uid: 5652 components: - - pos: 2.5,3.5 + - pos: 8.5,-11.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5322 + - enabled: True + type: AmbientSound + - uid: 5654 components: - - pos: 4.5,5.5 + - rot: 1.5707963267948966 rad + pos: -28.5,5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5325 + - uid: 5655 components: - - pos: 4.5,-1.5 + - rot: 1.5707963267948966 rad + pos: 17.5,-5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5349 + - uid: 5656 components: - - pos: 2.5,-23.5 + - rot: 1.5707963267948966 rad + pos: 18.5,-5.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5361 + - uid: 5657 components: - - pos: 2.5,0.5 + - rot: 1.5707963267948966 rad + pos: 19.5,-5.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5609 + - uid: 5658 components: - - pos: 18.5,-14.5 + - rot: 1.5707963267948966 rad + pos: 20.5,-5.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5610 + - enabled: True + type: AmbientSound + - uid: 5659 components: - - pos: 19.5,-15.5 + - rot: 1.5707963267948966 rad + pos: 21.5,-5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5692 + - uid: 5660 components: - - pos: 4.5,-20.5 + - rot: 1.5707963267948966 rad + pos: 22.5,-5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5740 + - uid: 5661 components: - - pos: -3.5,-20.5 + - rot: 1.5707963267948966 rad + pos: 18.5,-6.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5741 + - uid: 5662 components: - - pos: -4.5,-19.5 + - rot: 1.5707963267948966 rad + pos: 19.5,-6.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5813 + - uid: 5663 components: - - pos: 2.5,24.5 + - rot: 1.5707963267948966 rad + pos: 20.5,-6.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5823 + - uid: 5664 components: - - pos: 4.5,25.5 + - rot: 1.5707963267948966 rad + pos: 21.5,-6.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5828 + - uid: 5667 components: - - pos: 4.5,20.5 + - rot: 1.5707963267948966 rad + pos: -29.5,3.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5952 + - uid: 5668 components: - - pos: 32.5,5.5 + - rot: 3.141592653589793 rad + pos: 18.5,-15.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5953 + - uid: 5669 components: - - pos: 33.5,3.5 + - rot: 3.141592653589793 rad + pos: 18.5,-16.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6082 + - uid: 5670 components: - - pos: -23.5,3.5 + - rot: 3.141592653589793 rad + pos: 18.5,-17.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6083 + - uid: 5673 components: - - pos: -24.5,5.5 + - rot: 3.141592653589793 rad + pos: 19.5,-16.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6144 + - uid: 5681 components: - - pos: -35.5,5.5 + - pos: 15.5,-16.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6150 + - uid: 5684 components: - - pos: -36.5,3.5 + - pos: 14.5,-18.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6906 - components: - - pos: 48.5,17.5 - parent: 31 - type: Transform - enabled: True type: AmbientSound - - uid: 7105 + - uid: 5685 components: - - pos: -24.5,8.5 + - pos: 14.5,-19.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor -- proto: GasPipeStraight - entities: - - uid: 8 + - uid: 5687 components: - rot: -1.5707963267948966 rad - pos: 18.5,-19.5 + pos: 9.5,-20.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 57 + - enabled: True + type: AmbientSound + - uid: 5688 components: - - pos: 8.5,18.5 + - rot: -1.5707963267948966 rad + pos: 10.5,-20.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 89 + - enabled: True + type: AmbientSound + - uid: 5689 components: - - pos: 18.5,-19.5 + - rot: -1.5707963267948966 rad + pos: 11.5,-20.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 109 - components: - - pos: 39.5,20.5 - parent: 31 - type: Transform - enabled: True type: AmbientSound - - uid: 110 + - uid: 5690 components: - - pos: 39.5,19.5 + - rot: -1.5707963267948966 rad + pos: 12.5,-20.5 parent: 31 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 111 + - uid: 5691 components: - - pos: 41.5,18.5 + - rot: -1.5707963267948966 rad + pos: 13.5,-20.5 parent: 31 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 115 + - uid: 5693 components: - - rot: 1.5707963267948966 rad - pos: 11.5,25.5 + - pos: 8.5,-21.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 116 + - uid: 5694 components: - - rot: 3.141592653589793 rad - pos: 12.5,26.5 + - pos: 8.5,-22.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 132 + - uid: 5695 components: - - rot: 1.5707963267948966 rad - pos: 36.5,3.5 + - pos: 8.5,-23.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 159 + - uid: 5696 components: - - pos: 39.5,21.5 + - pos: 8.5,-24.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 467 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5699 components: - - pos: 45.5,22.5 + - rot: -1.5707963267948966 rad + pos: 6.5,-19.5 parent: 31 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 521 + - uid: 5716 components: - - pos: 31.5,18.5 + - rot: 1.5707963267948966 rad + pos: 3.5,-14.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 561 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5717 components: - - rot: 3.141592653589793 rad - pos: 35.5,20.5 + - rot: 1.5707963267948966 rad + pos: 2.5,-14.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 602 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5718 components: - - rot: 3.141592653589793 rad - pos: 42.5,19.5 + - rot: 1.5707963267948966 rad + pos: 1.5,-14.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 608 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5723 components: - rot: -1.5707963267948966 rad - pos: 1.5,-29.5 + pos: 1.5,-16.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 715 + - uid: 5745 components: - - pos: 37.5,19.5 + - rot: -1.5707963267948966 rad + pos: 53.5,16.5 parent: 31 type: Transform - enabled: True type: AmbientSound - - uid: 744 + - uid: 5762 components: - - pos: -19.5,-19.5 + - rot: -1.5707963267948966 rad + pos: -5.5,25.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 746 + - uid: 5768 components: - - pos: -19.5,-20.5 + - rot: 1.5707963267948966 rad + pos: -6.5,11.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 750 + - uid: 5774 components: - - pos: -24.5,12.5 + - rot: 3.141592653589793 rad + pos: 14.5,-21.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 773 + - uid: 5775 components: - rot: 3.141592653589793 rad - pos: 40.5,18.5 + pos: 14.5,-22.5 parent: 31 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 789 + - uid: 5776 components: - rot: 3.141592653589793 rad - pos: 38.5,20.5 + pos: 14.5,-23.5 parent: 31 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 813 + - uid: 5777 components: - - pos: 39.5,22.5 + - rot: 3.141592653589793 rad + pos: 14.5,-24.5 parent: 31 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 822 + - uid: 5780 components: - rot: 3.141592653589793 rad - pos: 40.5,19.5 + pos: 15.5,-26.5 parent: 31 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 925 + - uid: 5781 components: - rot: 3.141592653589793 rad - pos: 44.5,20.5 + pos: 15.5,-27.5 parent: 31 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 978 + - uid: 5782 components: - rot: 3.141592653589793 rad - pos: 38.5,19.5 + pos: 15.5,-28.5 parent: 31 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 980 + - uid: 5783 components: - - rot: 1.5707963267948966 rad - pos: 9.5,25.5 + - rot: 3.141592653589793 rad + pos: 15.5,-29.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 991 - components: - - rot: 3.141592653589793 rad - pos: 42.5,18.5 - parent: 31 - type: Transform - enabled: True type: AmbientSound - - uid: 1067 + - uid: 5784 components: - rot: 3.141592653589793 rad - pos: 44.5,19.5 + pos: 15.5,-30.5 parent: 31 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 1165 + - uid: 5786 components: - rot: 1.5707963267948966 rad - pos: 8.5,25.5 + pos: 3.5,-23.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 1238 + - uid: 5787 components: - - pos: -24.5,10.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-23.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 1289 + - uid: 5788 components: - - rot: -1.5707963267948966 rad - pos: 32.5,8.5 + - rot: 1.5707963267948966 rad + pos: 5.5,-23.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 1514 + - enabled: True + type: AmbientSound + - uid: 5789 components: - - rot: 3.141592653589793 rad - pos: 35.5,21.5 + - rot: 1.5707963267948966 rad + pos: 6.5,-23.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 1515 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5790 components: - - pos: 33.5,18.5 + - rot: 1.5707963267948966 rad + pos: 7.5,-23.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 1516 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5791 components: - - pos: 36.5,20.5 + - rot: 1.5707963267948966 rad + pos: 8.5,-23.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 1532 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5793 components: - - pos: 32.5,20.5 + - rot: 3.141592653589793 rad + pos: 2.5,4.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 1533 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5794 components: - - pos: 39.5,18.5 + - rot: 3.141592653589793 rad + pos: 2.5,5.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 1543 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5795 components: - - rot: 1.5707963267948966 rad - pos: 36.5,5.5 + - rot: 3.141592653589793 rad + pos: 2.5,6.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 1544 + - uid: 5796 components: - - rot: 1.5707963267948966 rad - pos: 38.5,5.5 + - rot: 3.141592653589793 rad + pos: 2.5,7.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 1576 + - uid: 5797 components: - - rot: -1.5707963267948966 rad - pos: -21.5,-18.5 + - rot: 3.141592653589793 rad + pos: 2.5,8.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 1590 + - uid: 5798 components: - rot: 3.141592653589793 rad - pos: 4.5,11.5 + pos: 2.5,9.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 1716 + - uid: 5799 components: - - rot: 1.5707963267948966 rad - pos: 22.5,11.5 + - rot: 3.141592653589793 rad + pos: 2.5,10.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 1724 + - uid: 5800 components: - - rot: 1.5707963267948966 rad - pos: 35.5,5.5 + - rot: 3.141592653589793 rad + pos: 2.5,11.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 1725 + - uid: 5802 components: - - rot: 1.5707963267948966 rad - pos: 33.5,5.5 + - rot: 3.141592653589793 rad + pos: 2.5,13.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 1739 + - uid: 5803 components: - - pos: -25.5,16.5 + - rot: 3.141592653589793 rad + pos: 2.5,14.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 1804 + - uid: 5804 components: - rot: 3.141592653589793 rad - pos: 35.5,19.5 + pos: 2.5,15.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 1888 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5805 components: - - rot: -1.5707963267948966 rad - pos: -3.5,-30.5 + - rot: 3.141592653589793 rad + pos: 2.5,16.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 2312 + - uid: 5808 components: - - pos: -17.5,-27.5 + - rot: 3.141592653589793 rad + pos: 2.5,19.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 2332 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5809 components: - - pos: 34.5,19.5 + - rot: 3.141592653589793 rad + pos: 2.5,20.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 2333 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5810 components: - - pos: 34.5,18.5 + - rot: 3.141592653589793 rad + pos: 2.5,21.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 2401 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5811 components: - rot: 3.141592653589793 rad - pos: 42.5,20.5 + pos: 2.5,22.5 parent: 31 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 2414 + - uid: 5814 components: - - pos: 37.5,20.5 + - rot: 3.141592653589793 rad + pos: 2.5,25.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 2559 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5815 components: - rot: 3.141592653589793 rad - pos: 44.5,18.5 + pos: 2.5,26.5 parent: 31 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 3042 + - uid: 5816 components: - - rot: 1.5707963267948966 rad - pos: 24.5,9.5 + - rot: 3.141592653589793 rad + pos: 2.5,27.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 3043 + - uid: 5817 components: - - rot: 1.5707963267948966 rad - pos: 25.5,9.5 + - rot: 3.141592653589793 rad + pos: 2.5,28.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 3044 + - uid: 5818 components: - - pos: 20.5,13.5 + - rot: 3.141592653589793 rad + pos: 2.5,29.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 3045 + - uid: 5819 components: - - pos: 22.5,11.5 + - rot: 3.141592653589793 rad + pos: 4.5,29.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 3046 + - uid: 5820 components: - - pos: 20.5,12.5 + - rot: 3.141592653589793 rad + pos: 4.5,28.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 3047 + - uid: 5821 components: - - pos: 22.5,12.5 + - rot: 3.141592653589793 rad + pos: 4.5,27.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 3048 + - uid: 5824 components: - - pos: 20.5,14.5 + - rot: 3.141592653589793 rad + pos: 4.5,24.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 3049 + - uid: 5825 components: - - pos: 22.5,13.5 + - rot: 3.141592653589793 rad + pos: 4.5,23.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 3238 + - uid: 5826 components: - - rot: 1.5707963267948966 rad - pos: 9.5,24.5 + - rot: 3.141592653589793 rad + pos: 4.5,22.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 3873 - components: - - pos: 35.5,18.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3922 + - uid: 5827 components: - - rot: -1.5707963267948966 rad - pos: -20.5,-18.5 + - rot: 3.141592653589793 rad + pos: 4.5,21.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 3985 + - uid: 5830 components: - - pos: -19.5,-21.5 + - pos: 4.5,18.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4176 + - uid: 5831 components: - rot: 3.141592653589793 rad - pos: 38.5,18.5 - parent: 31 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4210 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-22.5 + pos: 4.5,17.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4319 + - uid: 5832 components: - - pos: 20.5,16.5 + - rot: 3.141592653589793 rad + pos: 4.5,16.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 4320 + - uid: 5833 components: - - rot: -1.5707963267948966 rad - pos: 22.5,17.5 + - rot: 3.141592653589793 rad + pos: 4.5,15.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 4321 + - uid: 5836 components: - - rot: -1.5707963267948966 rad - pos: 23.5,17.5 + - rot: 3.141592653589793 rad + pos: 4.5,12.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 4322 + - uid: 5838 components: - - rot: -1.5707963267948966 rad - pos: 21.5,17.5 + - rot: 3.141592653589793 rad + pos: 4.5,10.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 4323 + - uid: 5839 components: - - rot: -1.5707963267948966 rad - pos: 24.5,17.5 + - rot: 3.141592653589793 rad + pos: 4.5,9.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 4523 + - uid: 5840 components: - rot: 3.141592653589793 rad - pos: 55.5,5.5 + pos: 4.5,8.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4524 + - uid: 5841 components: - rot: 3.141592653589793 rad - pos: 55.5,6.5 + pos: 4.5,7.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4642 + - uid: 5842 components: - rot: 3.141592653589793 rad - pos: 55.5,4.5 + pos: 4.5,6.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 4685 + - uid: 5843 components: - rot: 1.5707963267948966 rad - pos: 25.5,10.5 + pos: 2.5,5.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4687 + - uid: 5844 components: - - rot: -1.5707963267948966 rad - pos: 23.5,11.5 + - rot: 1.5707963267948966 rad + pos: 1.5,5.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 4696 + - uid: 5845 components: - - pos: -24.5,11.5 + - rot: 1.5707963267948966 rad + pos: 0.5,5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 4729 + - uid: 5846 components: - rot: 1.5707963267948966 rad - pos: 40.5,3.5 + pos: 0.5,3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 4730 + - uid: 5847 components: - rot: 1.5707963267948966 rad - pos: 39.5,3.5 + pos: 1.5,3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 4732 + - uid: 5850 components: - - rot: 1.5707963267948966 rad - pos: 37.5,3.5 + - rot: -1.5707963267948966 rad + pos: 3.5,24.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 4737 + - uid: 5851 components: - - pos: -24.5,9.5 + - rot: -1.5707963267948966 rad + pos: 4.5,24.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 4829 + - uid: 5852 components: - - rot: 3.141592653589793 rad - pos: 33.5,22.5 + - rot: -1.5707963267948966 rad + pos: 5.5,24.5 parent: 31 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 4830 + - uid: 5853 components: - - rot: 3.141592653589793 rad - pos: 33.5,20.5 + - rot: -1.5707963267948966 rad + pos: 6.5,24.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 4856 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5854 components: - - rot: 3.141592653589793 rad - pos: 40.5,20.5 + - rot: -1.5707963267948966 rad + pos: 5.5,25.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5855 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,25.5 + parent: 31 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5857 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,25.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 4976 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5858 components: - - pos: 41.5,22.5 + - rot: -1.5707963267948966 rad + pos: 1.5,25.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 5012 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5859 components: - - pos: 45.5,18.5 + - rot: -1.5707963267948966 rad + pos: 0.5,25.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 5013 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5860 components: - - pos: 43.5,18.5 + - rot: -1.5707963267948966 rad + pos: -0.5,25.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 5015 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5861 components: - - pos: 43.5,19.5 + - rot: -1.5707963267948966 rad + pos: 1.5,24.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 5016 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5862 components: - - pos: 45.5,20.5 + - rot: -1.5707963267948966 rad + pos: 0.5,24.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 5030 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5863 components: - - pos: 36.5,19.5 + - rot: -1.5707963267948966 rad + pos: -0.5,24.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 5031 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5866 components: - - pos: 36.5,18.5 + - rot: 1.5707963267948966 rad + pos: 8.5,24.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 5044 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5872 components: - - pos: 43.5,21.5 + - rot: 1.5707963267948966 rad + pos: 3.5,17.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 5045 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5873 components: - - pos: 45.5,21.5 + - rot: 1.5707963267948966 rad + pos: 4.5,17.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 5046 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5874 components: - - pos: 43.5,20.5 + - rot: 1.5707963267948966 rad + pos: 5.5,17.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 5047 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5875 components: - - pos: 45.5,19.5 + - rot: 1.5707963267948966 rad + pos: 6.5,17.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 5048 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5876 components: - - pos: 41.5,19.5 + - pos: 8.5,19.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 5049 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5877 components: - - pos: 41.5,20.5 + - rot: 1.5707963267948966 rad + pos: 8.5,17.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 5050 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5878 components: - - pos: 41.5,21.5 + - rot: 1.5707963267948966 rad + pos: 5.5,20.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 5056 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5879 components: - - pos: 43.5,22.5 + - rot: 1.5707963267948966 rad + pos: 6.5,20.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 5124 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5880 components: - - rot: 3.141592653589793 rad - pos: 33.5,21.5 + - rot: 1.5707963267948966 rad + pos: 7.5,20.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 5125 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5884 components: - - rot: 3.141592653589793 rad - pos: 33.5,19.5 + - rot: -1.5707963267948966 rad + pos: 3.5,20.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 5126 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5885 components: - - rot: 3.141592653589793 rad - pos: 35.5,22.5 + - rot: -1.5707963267948966 rad + pos: 2.5,20.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 5133 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5886 components: - - pos: 37.5,18.5 + - rot: -1.5707963267948966 rad + pos: 1.5,20.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 5240 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5887 components: - - rot: 1.5707963267948966 rad - pos: -20.5,19.5 + - rot: -1.5707963267948966 rad + pos: 0.5,20.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 5323 + - uid: 5888 components: - - pos: 2.5,2.5 + - rot: -1.5707963267948966 rad + pos: -0.5,20.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5324 + - uid: 5889 components: - - pos: 2.5,1.5 + - rot: -1.5707963267948966 rad + pos: -1.5,20.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5326 + - uid: 5890 components: - - pos: 2.5,-0.5 + - rot: -1.5707963267948966 rad + pos: -2.5,20.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5327 + - uid: 5891 components: - - pos: 2.5,-1.5 + - rot: -1.5707963267948966 rad + pos: -3.5,20.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5328 + - uid: 5899 components: - - pos: 2.5,-2.5 + - rot: 1.5707963267948966 rad + pos: -21.5,19.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5329 + - enabled: True + type: AmbientSound + - uid: 5900 components: - - pos: 2.5,-3.5 + - rot: 1.5707963267948966 rad + pos: -19.5,19.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5330 + - enabled: True + type: AmbientSound + - uid: 5901 components: - - pos: 2.5,-4.5 + - pos: -18.5,20.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5331 + - enabled: True + type: AmbientSound + - uid: 5902 components: - - pos: 2.5,-5.5 + - pos: -18.5,21.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5333 + - enabled: True + type: AmbientSound + - uid: 5903 components: - - pos: 2.5,-7.5 + - pos: -18.5,22.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5334 + - enabled: True + type: AmbientSound + - uid: 5904 components: - - pos: 2.5,-8.5 + - pos: -18.5,23.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5335 + - enabled: True + type: AmbientSound + - uid: 5905 components: - - pos: 2.5,-9.5 + - pos: -18.5,24.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5336 + - enabled: True + type: AmbientSound + - uid: 5906 components: - - pos: 2.5,-10.5 + - rot: -1.5707963267948966 rad + pos: -17.5,25.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5337 + - enabled: True + type: AmbientSound + - uid: 5907 components: - - pos: 2.5,-11.5 + - rot: -1.5707963267948966 rad + pos: -16.5,25.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5338 + - enabled: True + type: AmbientSound + - uid: 5908 components: - - pos: 2.5,-12.5 + - rot: -1.5707963267948966 rad + pos: -15.5,25.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5339 + - enabled: True + type: AmbientSound + - uid: 5909 components: - - pos: 2.5,-13.5 + - rot: -1.5707963267948966 rad + pos: -14.5,25.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5340 + - enabled: True + type: AmbientSound + - uid: 5910 components: - - pos: 2.5,-14.5 + - rot: -1.5707963267948966 rad + pos: -13.5,25.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5341 + - enabled: True + type: AmbientSound + - uid: 5911 components: - - pos: 2.5,-15.5 + - rot: -1.5707963267948966 rad + pos: -12.5,25.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5343 + - enabled: True + type: AmbientSound + - uid: 5912 components: - - pos: 2.5,-17.5 + - rot: -1.5707963267948966 rad + pos: -11.5,25.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5344 + - enabled: True + type: AmbientSound + - uid: 5913 components: - - pos: 2.5,-18.5 + - rot: -1.5707963267948966 rad + pos: -10.5,25.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5346 + - enabled: True + type: AmbientSound + - uid: 5914 components: - - pos: 2.5,-20.5 + - rot: -1.5707963267948966 rad + pos: -9.5,25.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5347 + - enabled: True + type: AmbientSound + - uid: 5915 components: - - pos: 2.5,-21.5 + - rot: -1.5707963267948966 rad + pos: -8.5,25.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5348 + - enabled: True + type: AmbientSound + - uid: 5916 components: - - pos: 2.5,-22.5 + - pos: 50.5,18.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5350 + - enabled: True + type: AmbientSound + - uid: 5918 components: - - pos: 2.5,-24.5 + - rot: 3.141592653589793 rad + pos: -4.5,23.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5351 + - enabled: True + type: AmbientSound + - uid: 5919 components: - - pos: 2.5,-25.5 + - rot: 3.141592653589793 rad + pos: -4.5,22.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5352 + - enabled: True + type: AmbientSound + - uid: 5920 components: - - pos: 2.5,-26.5 + - rot: 3.141592653589793 rad + pos: -22.5,20.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5353 + - enabled: True + type: AmbientSound + - uid: 5921 components: - - pos: 2.5,-27.5 + - rot: 3.141592653589793 rad + pos: -4.5,21.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5355 + - enabled: True + type: AmbientSound + - uid: 5922 components: - - pos: 4.5,4.5 + - rot: 3.141592653589793 rad + pos: -22.5,21.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5356 + - enabled: True + type: AmbientSound + - uid: 5923 components: - - pos: 4.5,3.5 + - rot: 3.141592653589793 rad + pos: -22.5,22.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5357 + - uid: 5926 components: - - pos: 4.5,2.5 + - rot: -1.5707963267948966 rad + pos: -23.5,24.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5358 + - enabled: True + type: AmbientSound + - uid: 5927 components: - - pos: 4.5,1.5 + - rot: -1.5707963267948966 rad + pos: -24.5,24.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5359 + - enabled: True + type: AmbientSound + - uid: 5930 components: - - pos: 4.5,0.5 + - rot: 1.5707963267948966 rad + pos: 5.5,14.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5360 + - enabled: True + type: AmbientSound + - uid: 5931 components: - - pos: 4.5,-0.5 + - rot: 1.5707963267948966 rad + pos: 7.5,14.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5362 + - enabled: True + type: AmbientSound + - uid: 5932 components: - - pos: 4.5,-2.5 + - rot: 1.5707963267948966 rad + pos: 6.5,14.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5363 + - enabled: True + type: AmbientSound + - uid: 5933 components: - - pos: 4.5,-3.5 + - rot: 1.5707963267948966 rad + pos: 8.5,14.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5364 + - enabled: True + type: AmbientSound + - uid: 5934 components: - - pos: 4.5,-4.5 + - rot: 1.5707963267948966 rad + pos: 9.5,14.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5366 + - enabled: True + type: AmbientSound + - uid: 5935 components: - - pos: 4.5,-6.5 + - rot: 1.5707963267948966 rad + pos: 10.5,14.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5367 + - enabled: True + type: AmbientSound + - uid: 5936 components: - - pos: 4.5,-7.5 + - rot: 1.5707963267948966 rad + pos: 11.5,14.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5368 + - enabled: True + type: AmbientSound + - uid: 5937 components: - - pos: 4.5,-8.5 + - rot: 1.5707963267948966 rad + pos: 12.5,14.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5369 + - enabled: True + type: AmbientSound + - uid: 5942 components: - - pos: 4.5,-9.5 + - rot: 3.141592653589793 rad + pos: 8.5,7.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5370 + - uid: 5943 components: - - pos: 4.5,-10.5 + - rot: 3.141592653589793 rad + pos: 8.5,8.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5371 + - uid: 5945 components: - - pos: 4.5,-11.5 + - pos: 9.5,4.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5372 + - uid: 5946 components: - - pos: 4.5,-12.5 + - pos: 9.5,5.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5373 + - uid: 5947 components: - - pos: 4.5,-13.5 + - pos: 9.5,6.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5374 + - uid: 5948 components: - - pos: 4.5,-14.5 + - pos: 9.5,7.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5375 + - uid: 5949 components: - - pos: 4.5,-15.5 + - pos: 9.5,8.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5376 + - uid: 5954 components: - - pos: 4.5,-16.5 + - rot: -1.5707963267948966 rad + pos: -0.5,3.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5378 + - uid: 5956 components: - - pos: 4.5,-18.5 + - rot: -1.5707963267948966 rad + pos: -2.5,3.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5379 + - uid: 5957 components: - - pos: 4.5,-19.5 + - rot: -1.5707963267948966 rad + pos: -3.5,3.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5381 + - uid: 5958 components: - - pos: 4.5,-21.5 + - rot: -1.5707963267948966 rad + pos: -4.5,3.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5382 + - uid: 5959 components: - - pos: 4.5,-22.5 + - rot: -1.5707963267948966 rad + pos: -0.5,5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5383 + - uid: 5961 components: - - pos: 4.5,-23.5 + - rot: -1.5707963267948966 rad + pos: -3.5,5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5384 + - uid: 5962 components: - - pos: 4.5,-24.5 + - rot: -1.5707963267948966 rad + pos: -1.5,5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5385 + - uid: 5965 components: - - pos: 4.5,-25.5 + - rot: 3.141592653589793 rad + pos: -5.5,4.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5386 + - uid: 5966 components: - - pos: 4.5,-26.5 + - rot: 3.141592653589793 rad + pos: -5.5,5.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5387 + - uid: 5967 components: - - pos: 4.5,-27.5 + - rot: 3.141592653589793 rad + pos: -5.5,6.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5388 + - uid: 5968 components: - - pos: 4.5,-28.5 + - rot: 3.141592653589793 rad + pos: -5.5,7.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5389 + - uid: 5970 components: - - rot: -1.5707963267948966 rad - pos: 7.5,5.5 + - rot: 3.141592653589793 rad + pos: -5.5,9.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5390 + - uid: 5972 components: - - rot: -1.5707963267948966 rad - pos: 6.5,5.5 + - rot: 3.141592653589793 rad + pos: -4.5,6.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5391 + - uid: 5974 components: - - rot: -1.5707963267948966 rad - pos: 5.5,5.5 + - rot: 3.141592653589793 rad + pos: -4.5,8.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5393 + - uid: 5975 components: - - rot: -1.5707963267948966 rad - pos: 4.5,3.5 + - rot: 3.141592653589793 rad + pos: -4.5,9.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5394 + - uid: 5984 components: - rot: -1.5707963267948966 rad - pos: 5.5,3.5 + pos: -6.5,10.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5395 + - uid: 5985 components: - - rot: -1.5707963267948966 rad - pos: 6.5,3.5 + - rot: 1.5707963267948966 rad + pos: -9.5,10.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5398 + - uid: 5986 components: - - rot: -1.5707963267948966 rad - pos: 8.5,3.5 + - rot: 3.141592653589793 rad + pos: -8.5,11.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5400 + - uid: 5987 components: - - rot: -1.5707963267948966 rad - pos: 10.5,3.5 + - rot: 3.141592653589793 rad + pos: -8.5,12.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5401 + - uid: 5990 components: - - rot: -1.5707963267948966 rad - pos: 11.5,3.5 + - rot: 3.141592653589793 rad + pos: -5.5,13.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5402 + - uid: 5995 components: - - rot: -1.5707963267948966 rad - pos: 12.5,3.5 + - rot: 3.141592653589793 rad + pos: -8.5,15.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5403 + - uid: 5996 components: - - rot: -1.5707963267948966 rad - pos: 13.5,3.5 + - rot: 3.141592653589793 rad + pos: -8.5,16.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5404 + - uid: 5997 components: - - rot: -1.5707963267948966 rad - pos: 14.5,3.5 + - rot: 3.141592653589793 rad + pos: -8.5,17.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5406 + - uid: 5998 components: - - rot: -1.5707963267948966 rad - pos: 16.5,3.5 + - rot: 3.141592653589793 rad + pos: -8.5,18.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5407 + - uid: 5999 components: - - rot: -1.5707963267948966 rad - pos: 17.5,3.5 + - rot: 3.141592653589793 rad + pos: -8.5,19.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5408 + - uid: 6002 components: - - rot: -1.5707963267948966 rad - pos: 18.5,3.5 + - rot: 3.141592653589793 rad + pos: -7.5,16.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5409 + - uid: 6003 components: - - rot: -1.5707963267948966 rad - pos: 19.5,3.5 + - rot: 3.141592653589793 rad + pos: -7.5,17.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5410 + - uid: 6004 components: - - rot: -1.5707963267948966 rad - pos: 20.5,3.5 + - rot: 3.141592653589793 rad + pos: -7.5,18.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5411 + - enabled: True + type: AmbientSound + - uid: 6005 components: - - rot: -1.5707963267948966 rad - pos: 21.5,5.5 + - rot: 3.141592653589793 rad + pos: -7.5,19.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5412 + - uid: 6006 components: - - rot: -1.5707963267948966 rad - pos: 20.5,5.5 + - rot: 1.5707963267948966 rad + pos: -6.5,15.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5413 + - uid: 6007 components: - - rot: -1.5707963267948966 rad - pos: 19.5,5.5 + - rot: 1.5707963267948966 rad + pos: -8.5,15.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5414 + - uid: 6008 components: - - rot: -1.5707963267948966 rad - pos: 18.5,5.5 + - rot: 1.5707963267948966 rad + pos: -9.5,15.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5415 + - uid: 6009 components: - - rot: -1.5707963267948966 rad - pos: 17.5,5.5 + - rot: 1.5707963267948966 rad + pos: -10.5,15.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5416 + - uid: 6011 components: - - rot: -1.5707963267948966 rad - pos: 16.5,5.5 + - rot: 1.5707963267948966 rad + pos: -9.5,14.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5417 + - uid: 6012 components: - - rot: -1.5707963267948966 rad - pos: 15.5,5.5 + - rot: 1.5707963267948966 rad + pos: -11.5,14.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5418 + - uid: 6013 components: - - rot: -1.5707963267948966 rad - pos: 14.5,5.5 + - rot: 1.5707963267948966 rad + pos: -10.5,14.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5420 + - enabled: True + type: AmbientSound + - uid: 6014 components: - - rot: -1.5707963267948966 rad - pos: 12.5,5.5 + - rot: 3.141592653589793 rad + pos: -5.5,14.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5421 + - uid: 6027 components: - - rot: -1.5707963267948966 rad - pos: 11.5,5.5 + - rot: 3.141592653589793 rad + pos: -12.5,17.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5423 + - uid: 6028 components: - - rot: -1.5707963267948966 rad - pos: 9.5,5.5 + - rot: 3.141592653589793 rad + pos: -12.5,18.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5426 + - uid: 6029 components: - rot: 1.5707963267948966 rad - pos: 22.5,3.5 + pos: -9.5,20.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5427 + - uid: 6030 components: - rot: 1.5707963267948966 rad - pos: 23.5,3.5 + pos: -11.5,20.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5428 + - uid: 6031 components: - rot: 1.5707963267948966 rad - pos: 24.5,3.5 + pos: -10.5,20.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5429 + - uid: 6034 components: - rot: 1.5707963267948966 rad - pos: 25.5,3.5 + pos: -4.5,8.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5431 + - uid: 6035 components: - rot: 1.5707963267948966 rad - pos: 27.5,3.5 + pos: -3.5,8.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5432 + - enabled: True + type: AmbientSound + - uid: 6036 components: - rot: 1.5707963267948966 rad - pos: 28.5,3.5 + pos: -2.5,8.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5433 + - uid: 6037 components: - rot: 1.5707963267948966 rad - pos: 29.5,3.5 + pos: -1.5,8.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5434 + - uid: 6038 components: - rot: 1.5707963267948966 rad - pos: 30.5,3.5 + pos: -3.5,7.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5435 + - enabled: True + type: AmbientSound + - uid: 6039 components: - rot: 1.5707963267948966 rad - pos: 31.5,3.5 + pos: -2.5,7.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5436 + - uid: 6040 components: - rot: 1.5707963267948966 rad - pos: 31.5,5.5 + pos: -1.5,7.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5437 + - uid: 6045 components: - - rot: 1.5707963267948966 rad - pos: 30.5,5.5 + - rot: -1.5707963267948966 rad + pos: -5.5,5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5438 + - uid: 6046 components: - - rot: 1.5707963267948966 rad - pos: 29.5,5.5 + - rot: -1.5707963267948966 rad + pos: -6.5,5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5440 + - uid: 6047 components: - - rot: 1.5707963267948966 rad - pos: 27.5,5.5 + - rot: -1.5707963267948966 rad + pos: -7.5,5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5441 + - uid: 6048 components: - - rot: 1.5707963267948966 rad - pos: 26.5,5.5 + - rot: -1.5707963267948966 rad + pos: -8.5,5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5442 + - uid: 6049 components: - - rot: 1.5707963267948966 rad - pos: 25.5,5.5 + - rot: -1.5707963267948966 rad + pos: -9.5,5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5443 + - uid: 6052 components: - - rot: 1.5707963267948966 rad - pos: 24.5,5.5 + - rot: -1.5707963267948966 rad + pos: -12.5,5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5444 + - uid: 6053 components: - - rot: 1.5707963267948966 rad - pos: 23.5,5.5 + - rot: -1.5707963267948966 rad + pos: -13.5,5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5445 + - uid: 6054 components: - - pos: 13.5,6.5 + - rot: -1.5707963267948966 rad + pos: -14.5,5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5446 + - uid: 6055 components: - - pos: 13.5,7.5 + - rot: -1.5707963267948966 rad + pos: -15.5,5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5447 + - uid: 6056 components: - - pos: 13.5,8.5 + - rot: 1.5707963267948966 rad + pos: -23.5,5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5448 + - uid: 6057 components: - - pos: 13.5,9.5 + - rot: -1.5707963267948966 rad + pos: -17.5,5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5449 + - uid: 6058 components: - - pos: 15.5,4.5 + - rot: -1.5707963267948966 rad + pos: -18.5,5.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5450 + - uid: 6059 components: - - pos: 15.5,5.5 + - rot: -1.5707963267948966 rad + pos: -19.5,5.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5451 + - uid: 6060 components: - - pos: 15.5,6.5 + - rot: -1.5707963267948966 rad + pos: -20.5,5.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5452 + - uid: 6061 components: - - pos: 15.5,7.5 + - rot: -1.5707963267948966 rad + pos: -21.5,5.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5453 + - uid: 6062 components: - - pos: 15.5,8.5 + - rot: -1.5707963267948966 rad + pos: -22.5,5.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5454 + - uid: 6063 components: - - pos: 15.5,9.5 + - rot: -1.5707963267948966 rad + pos: -6.5,3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5455 + - uid: 6064 components: - - pos: 15.5,10.5 + - rot: -1.5707963267948966 rad + pos: -7.5,3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5460 + - uid: 6065 components: - rot: -1.5707963267948966 rad - pos: 15.5,10.5 + pos: -8.5,3.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5461 + - uid: 6066 components: - rot: -1.5707963267948966 rad - pos: 16.5,10.5 + pos: -9.5,3.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5462 + - uid: 6067 components: - rot: -1.5707963267948966 rad - pos: 17.5,10.5 + pos: -10.5,3.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5463 + - uid: 6068 components: - rot: -1.5707963267948966 rad - pos: 18.5,10.5 + pos: -11.5,3.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5466 + - uid: 6069 components: - rot: -1.5707963267948966 rad - pos: 19.5,10.5 + pos: -12.5,3.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5467 + - uid: 6070 components: - rot: -1.5707963267948966 rad - pos: 19.5,11.5 + pos: -13.5,3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5468 + - uid: 6072 components: - rot: -1.5707963267948966 rad - pos: 18.5,11.5 + pos: -15.5,3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5469 + - uid: 6073 components: - rot: -1.5707963267948966 rad - pos: 17.5,11.5 + pos: -16.5,3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5475 + - uid: 6074 components: - - rot: 3.141592653589793 rad - pos: 8.5,6.5 + - rot: -1.5707963267948966 rad + pos: -17.5,3.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5480 + - uid: 6075 components: - - rot: 1.5707963267948966 rad - pos: 21.5,10.5 + - rot: -1.5707963267948966 rad + pos: -18.5,3.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5482 + - uid: 6076 components: - - rot: 1.5707963267948966 rad - pos: 3.5,0.5 + - rot: -1.5707963267948966 rad + pos: -19.5,3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5483 + - uid: 6077 components: - - rot: 1.5707963267948966 rad - pos: 4.5,0.5 + - rot: -1.5707963267948966 rad + pos: -20.5,3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5484 + - uid: 6078 components: - - rot: 1.5707963267948966 rad - pos: 5.5,0.5 + - rot: -1.5707963267948966 rad + pos: -21.5,3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5485 + - uid: 6081 components: - rot: 1.5707963267948966 rad - pos: 6.5,0.5 + pos: -10.5,5.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5486 + - uid: 6085 components: - - rot: 1.5707963267948966 rad - pos: 7.5,0.5 + - pos: -24.5,4.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5487 + - uid: 6086 components: - - rot: 1.5707963267948966 rad - pos: 8.5,0.5 + - pos: -24.5,3.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5489 + - uid: 6087 components: - - rot: 1.5707963267948966 rad - pos: 10.5,0.5 + - pos: -24.5,2.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5490 + - uid: 6088 components: - - rot: 1.5707963267948966 rad - pos: 9.5,-1.5 + - pos: -24.5,1.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5492 + - uid: 6089 components: - - rot: 1.5707963267948966 rad - pos: 7.5,-1.5 + - pos: -24.5,0.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5493 + - uid: 6090 components: - - rot: 1.5707963267948966 rad - pos: 6.5,-1.5 + - pos: -24.5,-0.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5494 + - uid: 6091 components: - - rot: 1.5707963267948966 rad - pos: 5.5,-1.5 + - pos: -24.5,-1.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5497 + - uid: 6092 components: - - rot: 1.5707963267948966 rad - pos: -11.5,0.5 + - pos: -16.5,4.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5498 + - uid: 6093 components: - - rot: 1.5707963267948966 rad - pos: -10.5,0.5 + - rot: 3.141592653589793 rad + pos: -24.5,6.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5499 + - uid: 6094 components: - - rot: 1.5707963267948966 rad - pos: -9.5,0.5 + - rot: 3.141592653589793 rad + pos: -24.5,7.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5501 + - uid: 6097 components: - - rot: 1.5707963267948966 rad - pos: -7.5,0.5 + - rot: -1.5707963267948966 rad + pos: -24.5,9.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5502 + - uid: 6102 components: - - rot: 1.5707963267948966 rad - pos: -6.5,0.5 + - rot: -1.5707963267948966 rad + pos: -25.5,9.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5503 + - enabled: True + type: AmbientSound + - uid: 6103 components: - rot: -1.5707963267948966 rad - pos: -5.5,0.5 + pos: -26.5,9.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5504 + - uid: 6104 components: - - rot: 1.5707963267948966 rad - pos: -4.5,0.5 + - rot: -1.5707963267948966 rad + pos: -25.5,8.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5505 + - uid: 6105 components: - - rot: 1.5707963267948966 rad - pos: -3.5,0.5 + - rot: -1.5707963267948966 rad + pos: -26.5,8.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5506 + - uid: 6107 components: - - rot: 1.5707963267948966 rad - pos: -2.5,0.5 + - rot: 3.141592653589793 rad + pos: -23.5,8.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5507 + - uid: 6108 components: - - rot: 1.5707963267948966 rad - pos: -1.5,0.5 + - rot: 3.141592653589793 rad + pos: -23.5,7.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5508 + - uid: 6109 components: - - rot: 1.5707963267948966 rad - pos: -0.5,0.5 + - rot: 3.141592653589793 rad + pos: -23.5,6.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5509 + - uid: 6110 components: - - rot: 1.5707963267948966 rad - pos: 0.5,0.5 + - rot: 3.141592653589793 rad + pos: -23.5,5.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5510 + - uid: 6111 components: - - rot: 1.5707963267948966 rad - pos: 1.5,0.5 + - rot: 3.141592653589793 rad + pos: -23.5,4.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5511 + - uid: 6113 components: - - rot: 1.5707963267948966 rad - pos: 3.5,-1.5 + - pos: -16.5,3.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5512 + - uid: 6121 components: - - rot: 1.5707963267948966 rad - pos: 2.5,-1.5 + - pos: -23.5,2.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5513 + - uid: 6122 components: - - rot: 1.5707963267948966 rad - pos: 1.5,-1.5 + - pos: -23.5,1.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5514 + - uid: 6123 components: - - rot: 1.5707963267948966 rad - pos: 0.5,-1.5 + - pos: -23.5,0.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5515 + - uid: 6124 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-1.5 + - pos: -23.5,-0.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5517 + - uid: 6125 components: - - rot: 1.5707963267948966 rad - pos: -2.5,-1.5 + - pos: -23.5,-1.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5518 + - uid: 6126 components: - - rot: 1.5707963267948966 rad - pos: -3.5,-1.5 + - pos: -23.5,-2.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5519 + - uid: 6128 components: - - rot: 1.5707963267948966 rad - pos: -4.5,-1.5 + - rot: 3.141592653589793 rad + pos: -16.5,2.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5520 + - uid: 6131 components: - rot: 1.5707963267948966 rad - pos: -5.5,-1.5 + pos: -27.5,3.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5521 + - uid: 6132 components: - rot: 1.5707963267948966 rad - pos: -6.5,-1.5 + pos: -26.5,3.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5522 + - uid: 6133 components: - rot: 1.5707963267948966 rad - pos: -7.5,-1.5 + pos: -25.5,3.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5523 + - uid: 6134 components: - rot: 1.5707963267948966 rad - pos: -8.5,-1.5 + pos: -24.5,3.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5524 + - uid: 6139 components: - rot: 1.5707963267948966 rad - pos: -9.5,-1.5 + pos: -30.5,5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5525 + - uid: 6140 components: - rot: 1.5707963267948966 rad - pos: -10.5,-1.5 + pos: -31.5,5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5526 + - uid: 6142 components: - rot: 1.5707963267948966 rad - pos: -11.5,-1.5 + pos: -33.5,5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5529 + - uid: 6143 components: - - rot: -1.5707963267948966 rad - pos: -12.5,0.5 + - rot: 1.5707963267948966 rad + pos: -34.5,5.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5530 + - uid: 6145 components: - - rot: -1.5707963267948966 rad - pos: -14.5,0.5 + - rot: 1.5707963267948966 rad + pos: -31.5,3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5531 + - uid: 6146 components: - - rot: -1.5707963267948966 rad - pos: -15.5,0.5 + - rot: 1.5707963267948966 rad + pos: -32.5,3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5532 + - uid: 6147 components: - - rot: -1.5707963267948966 rad - pos: -16.5,0.5 + - rot: 1.5707963267948966 rad + pos: -33.5,3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5533 + - uid: 6148 components: - - rot: -1.5707963267948966 rad - pos: -17.5,0.5 + - rot: 1.5707963267948966 rad + pos: -34.5,3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5534 + - uid: 6149 components: - - rot: -1.5707963267948966 rad - pos: -18.5,0.5 + - rot: 1.5707963267948966 rad + pos: -35.5,3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5535 + - uid: 6153 components: - - rot: 3.141592653589793 rad - pos: -16.5,1.5 + - pos: -35.5,4.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5536 + - uid: 6154 components: - - rot: 3.141592653589793 rad - pos: -16.5,0.5 + - pos: -35.5,3.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5537 + - uid: 6155 components: - - rot: 3.141592653589793 rad - pos: -16.5,-0.5 + - pos: -35.5,2.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5539 + - uid: 6156 components: - - rot: 1.5707963267948966 rad - pos: -27.5,5.5 + - pos: -35.5,1.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5540 + - uid: 6157 components: - - rot: 1.5707963267948966 rad - pos: -26.5,5.5 + - pos: -35.5,0.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5548 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-4.5 - parent: 31 - type: Transform - - uid: 5549 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-4.5 - parent: 31 - type: Transform - - uid: 5550 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-4.5 - parent: 31 - type: Transform - - uid: 5555 + - uid: 6158 components: - - pos: 10.5,-2.5 + - pos: -35.5,-0.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5556 + - uid: 6159 components: - - pos: 10.5,-3.5 + - pos: -35.5,-1.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5557 + - uid: 6160 components: - - pos: 10.5,-4.5 + - pos: -35.5,-2.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5558 + - uid: 6161 components: - - pos: 10.5,-5.5 + - pos: -35.5,-3.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5559 + - uid: 6162 components: - - pos: 10.5,-6.5 + - pos: -35.5,-4.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5560 + - uid: 6163 components: - - pos: 10.5,-7.5 + - pos: -35.5,-5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5561 - components: - - pos: 11.5,-0.5 - parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5562 + - uid: 6164 components: - - pos: 11.5,-1.5 + - pos: -36.5,2.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5563 + - uid: 6165 components: - - pos: 11.5,-2.5 + - pos: -36.5,1.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5564 + - uid: 6167 components: - - pos: 11.5,-3.5 + - pos: -25.5,15.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5565 + - enabled: True + type: AmbientSound + - uid: 6170 components: - - pos: 11.5,-4.5 + - rot: 1.5707963267948966 rad + pos: 32.5,3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5566 + - uid: 6171 components: - - pos: 11.5,-5.5 + - pos: 32.5,6.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5567 + - uid: 6172 components: - - pos: 11.5,-6.5 + - pos: 32.5,7.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 5568 + - uid: 6173 components: - - pos: 11.5,-7.5 + - pos: 32.5,8.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5569 + - uid: 6176 components: - - pos: 11.5,-8.5 + - pos: 33.5,5.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5570 + - uid: 6177 components: - - pos: 11.5,-9.5 + - pos: 33.5,4.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5573 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-8.5 - parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5575 + - uid: 6178 components: - - rot: 1.5707963267948966 rad - pos: 13.5,-8.5 + - pos: 33.5,6.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5576 + - uid: 6179 components: - - rot: 1.5707963267948966 rad - pos: 14.5,-8.5 + - pos: 33.5,7.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5578 + - uid: 6185 components: - rot: 1.5707963267948966 rad - pos: 14.5,-10.5 + pos: 34.5,3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5580 + - uid: 6186 components: - - rot: 1.5707963267948966 rad - pos: 16.5,-10.5 + - pos: 32.5,4.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5581 + - uid: 6187 components: - - rot: 1.5707963267948966 rad - pos: 18.5,-8.5 + - pos: 32.5,3.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5583 + - uid: 6188 components: - - pos: 17.5,-9.5 + - pos: 32.5,2.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5585 + - uid: 6189 components: - - rot: 1.5707963267948966 rad - pos: 13.5,-10.5 + - pos: 32.5,1.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 5588 + - uid: 6190 components: - - rot: 1.5707963267948966 rad - pos: 17.5,-8.5 + - pos: 32.5,0.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5590 + - uid: 6191 components: - - pos: 17.5,-8.5 + - pos: 32.5,-0.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5591 + - uid: 6192 components: - - pos: 17.5,-7.5 + - pos: 32.5,-1.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5593 + - uid: 6193 components: - - pos: 17.5,-5.5 + - pos: 33.5,2.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5594 + - uid: 6194 components: - - pos: 17.5,-4.5 + - pos: 33.5,1.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5595 + - uid: 6195 components: - - pos: 17.5,-3.5 + - pos: 33.5,0.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5596 + - uid: 6196 components: - - pos: 17.5,-2.5 + - pos: 33.5,-0.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5598 - components: - - pos: 16.5,-7.5 - parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5599 - components: - - pos: 16.5,-6.5 - parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5601 - components: - - pos: 16.5,-4.5 - parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5602 + - uid: 6200 components: - - pos: 16.5,-3.5 + - rot: -1.5707963267948966 rad + pos: 40.5,6.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5603 + - uid: 6201 components: - - pos: 16.5,-2.5 + - rot: 1.5707963267948966 rad + pos: 41.5,6.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5604 + - uid: 6202 components: - - pos: 16.5,-1.5 + - rot: 1.5707963267948966 rad + pos: 42.5,6.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5608 + - uid: 6203 components: - rot: 1.5707963267948966 rad - pos: -28.5,3.5 - parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5611 - components: - - pos: 18.5,-11.5 + pos: 43.5,6.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5612 + - uid: 6206 components: - - pos: 18.5,-12.5 + - pos: 43.5,4.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5613 + - uid: 6207 components: - - pos: 18.5,-13.5 + - pos: 43.5,5.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5614 + - uid: 6208 components: - - pos: 19.5,-9.5 + - pos: 43.5,6.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5615 + - uid: 6209 components: - - pos: 19.5,-10.5 + - rot: 3.141592653589793 rad + pos: 43.5,7.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5616 + - uid: 6217 components: - - pos: 19.5,-11.5 + - rot: 3.141592653589793 rad + pos: 44.5,5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5617 + - uid: 6218 components: - - pos: 19.5,-12.5 + - rot: 3.141592653589793 rad + pos: 44.5,4.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5618 + - uid: 6219 components: - - pos: 19.5,-13.5 + - rot: 3.141592653589793 rad + pos: 44.5,3.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5619 + - uid: 6220 components: - - pos: 19.5,-14.5 + - rot: 1.5707963267948966 rad + pos: 44.5,3.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5620 + - uid: 6221 components: - - rot: -1.5707963267948966 rad - pos: 17.5,-14.5 + - rot: 1.5707963267948966 rad + pos: 45.5,3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5621 + - uid: 6222 components: - - rot: -1.5707963267948966 rad - pos: 16.5,-14.5 + - rot: 1.5707963267948966 rad + pos: 46.5,3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5622 + - uid: 6224 components: - - rot: -1.5707963267948966 rad - pos: 15.5,-14.5 + - rot: 1.5707963267948966 rad + pos: 48.5,3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5623 + - uid: 6225 components: - - rot: -1.5707963267948966 rad - pos: 18.5,-15.5 + - rot: 1.5707963267948966 rad + pos: 45.5,2.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5624 + - uid: 6227 components: - - rot: -1.5707963267948966 rad - pos: 17.5,-15.5 + - rot: 1.5707963267948966 rad + pos: 47.5,2.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5625 + - uid: 6229 components: - - rot: -1.5707963267948966 rad - pos: 16.5,-15.5 + - pos: 48.5,-0.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5628 + - uid: 6233 components: - - rot: 1.5707963267948966 rad - pos: 20.5,-15.5 + - pos: 48.5,-1.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 5629 + - uid: 6234 components: - - rot: 1.5707963267948966 rad - pos: 21.5,-15.5 + - pos: 49.5,2.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5631 + - uid: 6235 components: - - rot: -1.5707963267948966 rad - pos: 19.5,-14.5 + - pos: 49.5,1.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5633 + - uid: 6236 components: - - rot: -1.5707963267948966 rad - pos: 20.5,-14.5 + - pos: 49.5,0.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5641 + - uid: 6237 components: - - rot: 1.5707963267948966 rad - pos: 10.5,-10.5 + - pos: 49.5,-0.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5642 + - uid: 6238 components: - - rot: 1.5707963267948966 rad - pos: 9.5,-10.5 + - pos: 49.5,-1.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5643 + - uid: 6239 components: - - pos: 9.5,-9.5 + - pos: 48.5,0.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5644 + - uid: 6240 components: - - pos: 9.5,-10.5 + - rot: -1.5707963267948966 rad + pos: 42.5,3.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5645 + - uid: 6241 components: - - pos: 9.5,-11.5 + - rot: -1.5707963267948966 rad + pos: 52.5,16.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5646 + - enabled: True + type: AmbientSound + - uid: 6254 components: - - pos: 9.5,-12.5 + - rot: 3.141592653589793 rad + pos: 32.5,9.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5647 + - enabled: True + type: AmbientSound + - uid: 6260 components: - - pos: 9.5,-13.5 + - pos: 22.5,14.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5649 + - enabled: True + type: AmbientSound + - uid: 6263 components: - - pos: 8.5,-14.5 + - pos: 38.5,2.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5650 + - uid: 6264 components: - - pos: 8.5,-13.5 + - pos: 38.5,1.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5651 + - uid: 6269 components: - - pos: 8.5,-12.5 + - rot: 3.141592653589793 rad + pos: 37.5,4.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5652 + - uid: 6270 components: - - pos: 8.5,-11.5 + - rot: 3.141592653589793 rad + pos: 37.5,3.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5654 + - uid: 6271 components: - - rot: 1.5707963267948966 rad - pos: -28.5,5.5 + - rot: 3.141592653589793 rad + pos: 37.5,2.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5655 + - uid: 6272 components: - - rot: 1.5707963267948966 rad - pos: 17.5,-5.5 + - rot: 3.141592653589793 rad + pos: 37.5,1.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5656 + - enabled: True + type: AmbientSound + - uid: 6273 components: - - rot: 1.5707963267948966 rad - pos: 18.5,-5.5 + - rot: 3.141592653589793 rad + pos: 37.5,0.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5657 + - uid: 6315 components: - rot: 1.5707963267948966 rad - pos: 19.5,-5.5 + pos: -7.5,10.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5658 + - uid: 6349 components: - rot: 1.5707963267948966 rad - pos: 20.5,-5.5 + pos: 44.5,9.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor + - uid: 6353 + components: + - rot: -1.5707963267948966 rad + pos: 53.5,15.5 + parent: 31 + type: Transform - enabled: True type: AmbientSound - - uid: 5659 + - uid: 6363 components: - - rot: 1.5707963267948966 rad - pos: 21.5,-5.5 + - pos: 37.5,21.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5660 + - enabled: True + type: AmbientSound + - uid: 6392 components: - - rot: 1.5707963267948966 rad - pos: 22.5,-5.5 + - pos: 43.5,8.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5661 + - uid: 6393 components: - rot: 1.5707963267948966 rad - pos: 18.5,-6.5 + pos: 45.5,7.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5662 + - enabled: True + type: AmbientSound + - uid: 6394 components: - rot: 1.5707963267948966 rad - pos: 19.5,-6.5 + pos: 47.5,7.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5663 + - uid: 6411 components: - rot: 1.5707963267948966 rad - pos: 20.5,-6.5 + pos: 45.5,9.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5664 + - enabled: True + type: AmbientSound + - uid: 6427 components: - - rot: 1.5707963267948966 rad - pos: 21.5,-6.5 + - rot: -1.5707963267948966 rad + pos: 52.5,15.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5667 + - enabled: True + type: AmbientSound + - uid: 6478 components: - - rot: 1.5707963267948966 rad - pos: -29.5,3.5 + - rot: -1.5707963267948966 rad + pos: 52.5,17.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5668 + - enabled: True + type: AmbientSound + - uid: 6534 components: - - rot: 3.141592653589793 rad - pos: 18.5,-15.5 + - rot: 1.5707963267948966 rad + pos: 46.5,9.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5669 + - uid: 6538 components: - - rot: 3.141592653589793 rad - pos: 18.5,-16.5 + - rot: 1.5707963267948966 rad + pos: 48.5,7.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5670 + - uid: 6539 components: - - rot: 3.141592653589793 rad - pos: 18.5,-17.5 + - rot: 1.5707963267948966 rad + pos: 46.5,7.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5671 + - uid: 6549 components: - - rot: 3.141592653589793 rad - pos: 18.5,-18.5 + - pos: 46.5,18.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 5673 + - uid: 6572 components: - - rot: 3.141592653589793 rad - pos: 19.5,-16.5 + - rot: -1.5707963267948966 rad + pos: 24.5,16.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5674 + - uid: 6573 components: - - rot: 3.141592653589793 rad - pos: 19.5,-17.5 + - rot: -1.5707963267948966 rad + pos: 25.5,16.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5675 + - uid: 6577 components: - - rot: 3.141592653589793 rad - pos: 19.5,-18.5 + - pos: 37.5,22.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5681 + - enabled: True + type: AmbientSound + - uid: 6727 components: - - pos: 15.5,-16.5 + - pos: 49.5,17.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5684 + - enabled: True + type: AmbientSound + - uid: 6743 components: - - pos: 14.5,-18.5 + - pos: 48.5,17.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 5685 + - uid: 6895 components: - - pos: 14.5,-19.5 + - rot: -1.5707963267948966 rad + pos: 23.5,16.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5687 + - uid: 6896 components: - rot: -1.5707963267948966 rad - pos: 9.5,-20.5 + pos: 25.5,17.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5688 + - uid: 6945 components: - - rot: -1.5707963267948966 rad - pos: 10.5,-20.5 + - pos: 48.5,1.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5689 + - uid: 7072 components: - rot: -1.5707963267948966 rad - pos: 11.5,-20.5 + pos: 49.5,2.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5690 + - uid: 7073 components: - rot: -1.5707963267948966 rad - pos: 12.5,-20.5 + pos: 50.5,2.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5691 + - uid: 7075 components: - - rot: -1.5707963267948966 rad - pos: 13.5,-20.5 + - rot: 3.141592653589793 rad + pos: 33.5,10.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 5693 + - uid: 7076 components: - - pos: 8.5,-21.5 + - rot: 1.5707963267948966 rad + pos: 33.5,10.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 5694 + - uid: 7129 components: - - pos: 8.5,-22.5 + - rot: -1.5707963267948966 rad + pos: -26.5,-8.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5695 + - uid: 7131 components: - - pos: 8.5,-23.5 + - rot: -1.5707963267948966 rad + pos: -27.5,-8.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5696 + - uid: 7132 components: - - pos: 8.5,-24.5 + - pos: 34.5,20.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5699 + - enabled: True + type: AmbientSound + - uid: 7143 components: - rot: -1.5707963267948966 rad - pos: 6.5,-19.5 + pos: -28.5,-8.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5706 + - uid: 7152 components: - rot: -1.5707963267948966 rad - pos: 3.5,-20.5 + pos: -30.5,-8.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5707 + - uid: 7156 components: - rot: -1.5707963267948966 rad - pos: 2.5,-20.5 + pos: -31.5,-8.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5708 + - enabled: True + type: AmbientSound + - uid: 7175 components: - - rot: -1.5707963267948966 rad - pos: 1.5,-20.5 + - rot: 3.141592653589793 rad + pos: -32.5,-9.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5709 + - enabled: True + type: AmbientSound + - uid: 7179 components: - rot: -1.5707963267948966 rad - pos: 0.5,-20.5 + pos: 52.5,2.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5710 + - uid: 7180 components: - rot: -1.5707963267948966 rad - pos: -0.5,-20.5 + pos: 51.5,2.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5711 + - uid: 7182 components: - rot: -1.5707963267948966 rad - pos: -1.5,-20.5 + pos: 54.5,2.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5712 + - uid: 7205 components: - rot: -1.5707963267948966 rad - pos: -2.5,-20.5 + pos: 55.5,3.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5713 + - uid: 7206 components: - rot: -1.5707963267948966 rad - pos: 1.5,-19.5 + pos: 54.5,3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5714 + - enabled: True + type: AmbientSound + - uid: 7207 components: - rot: -1.5707963267948966 rad - pos: 0.5,-19.5 + pos: 52.5,3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5715 + - uid: 7208 components: - rot: -1.5707963267948966 rad - pos: -0.5,-19.5 + pos: 50.5,3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5716 + - uid: 7210 components: - rot: -1.5707963267948966 rad - pos: -1.5,-19.5 + pos: 51.5,3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5717 + - uid: 7212 components: - rot: -1.5707963267948966 rad - pos: -2.5,-19.5 + pos: 53.5,2.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5718 + - uid: 7218 components: - rot: -1.5707963267948966 rad - pos: -3.5,-19.5 + pos: 53.5,3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5719 + - uid: 7257 components: - - rot: -1.5707963267948966 rad - pos: -5.5,-19.5 + - rot: 3.141592653589793 rad + pos: -32.5,-10.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5720 + - enabled: True + type: AmbientSound + - uid: 7266 components: - - rot: -1.5707963267948966 rad - pos: -6.5,-19.5 + - rot: 3.141592653589793 rad + pos: -32.5,-11.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5721 + - enabled: True + type: AmbientSound + - uid: 7267 components: - - rot: -1.5707963267948966 rad - pos: -7.5,-19.5 + - rot: 3.141592653589793 rad + pos: -32.5,-12.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5723 + - enabled: True + type: AmbientSound + - uid: 7268 components: - - rot: -1.5707963267948966 rad - pos: -9.5,-19.5 + - rot: 3.141592653589793 rad + pos: -32.5,-13.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5724 + - uid: 7270 components: - rot: -1.5707963267948966 rad - pos: -10.5,-19.5 + pos: -24.5,-8.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5725 + - uid: 7271 components: - rot: -1.5707963267948966 rad - pos: -11.5,-19.5 + pos: -25.5,-8.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5726 + - uid: 7413 components: - - rot: -1.5707963267948966 rad - pos: -12.5,-19.5 + - pos: 2.5,-19.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5727 + - uid: 7419 components: - rot: -1.5707963267948966 rad - pos: -13.5,-19.5 + pos: -32.5,5.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5728 + - uid: 7470 components: - - rot: -1.5707963267948966 rad - pos: -14.5,-19.5 + - rot: 3.141592653589793 rad + pos: -24.5,-2.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5729 + - uid: 7557 components: - - rot: -1.5707963267948966 rad - pos: -4.5,-20.5 + - pos: -24.5,13.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5730 + - uid: 7727 + components: + - rot: 3.141592653589793 rad + pos: -37.5,4.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 7728 components: - - rot: -1.5707963267948966 rad - pos: -5.5,-20.5 + - rot: 3.141592653589793 rad + pos: -37.5,5.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5731 + - uid: 7729 components: - - rot: -1.5707963267948966 rad - pos: -6.5,-20.5 + - rot: 3.141592653589793 rad + pos: -37.5,6.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5732 + - uid: 7730 components: - - rot: -1.5707963267948966 rad - pos: -7.5,-20.5 + - rot: 3.141592653589793 rad + pos: -35.5,6.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5733 + - uid: 7731 components: - - rot: -1.5707963267948966 rad - pos: -8.5,-20.5 + - rot: 3.141592653589793 rad + pos: -35.5,7.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5734 + - uid: 7732 components: - - rot: -1.5707963267948966 rad - pos: -9.5,-20.5 + - rot: 3.141592653589793 rad + pos: -35.5,8.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5737 + - uid: 7733 components: - - rot: -1.5707963267948966 rad - pos: -12.5,-20.5 + - rot: 3.141592653589793 rad + pos: -35.5,9.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5738 + - uid: 7734 components: - - rot: -1.5707963267948966 rad - pos: -13.5,-20.5 + - rot: 3.141592653589793 rad + pos: -35.5,10.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5739 + - uid: 7735 components: - - rot: -1.5707963267948966 rad - pos: -14.5,-20.5 + - rot: 3.141592653589793 rad + pos: -35.5,11.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5742 + - enabled: True + type: AmbientSound + - uid: 7736 components: - rot: 3.141592653589793 rad - pos: -4.5,-20.5 + pos: -35.5,12.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5743 + - uid: 7738 components: - rot: 3.141592653589793 rad - pos: -4.5,-21.5 + pos: -37.5,7.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5744 + - uid: 7739 components: - rot: 3.141592653589793 rad - pos: -4.5,-22.5 + pos: -37.5,8.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5745 + - uid: 7740 components: - rot: 3.141592653589793 rad - pos: -3.5,-21.5 + pos: -37.5,9.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5746 + - uid: 7741 components: - rot: 3.141592653589793 rad - pos: -3.5,-22.5 + pos: -37.5,10.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5747 + - uid: 7742 components: - rot: 3.141592653589793 rad - pos: -3.5,-18.5 + pos: -37.5,11.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5748 + - enabled: True + type: AmbientSound + - uid: 7743 components: - rot: 3.141592653589793 rad - pos: -3.5,-19.5 + pos: -37.5,12.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5749 + - uid: 7801 components: - - rot: 3.141592653589793 rad - pos: -4.5,-18.5 + - rot: -1.5707963267948966 rad + pos: -5.5,-19.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5750 + - uid: 8415 components: - - rot: 3.141592653589793 rad - pos: -4.5,-17.5 + - pos: 7.5,18.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5751 + - uid: 8776 components: - - rot: 3.141592653589793 rad - pos: -3.5,-17.5 + - rot: 1.5707963267948966 rad + pos: -10.5,10.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5753 + - uid: 8777 components: - - rot: 3.141592653589793 rad - pos: -3.5,-16.5 + - rot: 1.5707963267948966 rad + pos: -11.5,10.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5754 + - uid: 8778 components: - rot: 1.5707963267948966 rad - pos: -3.5,-16.5 + pos: -12.5,10.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5758 + - uid: 8779 components: - - rot: 3.141592653589793 rad - pos: -10.5,-19.5 + - rot: 1.5707963267948966 rad + pos: -13.5,10.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5761 + - uid: 8780 components: - - rot: -1.5707963267948966 rad - pos: -15.5,-20.5 + - rot: 1.5707963267948966 rad + pos: -14.5,10.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5768 + - uid: 8781 components: - rot: 1.5707963267948966 rad - pos: -6.5,11.5 + pos: -15.5,10.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5774 + - uid: 8785 components: - - rot: 3.141592653589793 rad - pos: 14.5,-21.5 + - rot: -1.5707963267948966 rad + pos: -7.5,11.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5775 + - uid: 8786 components: - - rot: 3.141592653589793 rad - pos: 14.5,-22.5 + - rot: -1.5707963267948966 rad + pos: -8.5,11.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5776 + - uid: 8787 components: - - rot: 3.141592653589793 rad - pos: 14.5,-23.5 + - rot: -1.5707963267948966 rad + pos: -9.5,11.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5777 + - uid: 8788 components: - - rot: 3.141592653589793 rad - pos: 14.5,-24.5 + - rot: -1.5707963267948966 rad + pos: -10.5,11.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5780 + - uid: 8789 components: - - rot: 3.141592653589793 rad - pos: 15.5,-26.5 + - rot: -1.5707963267948966 rad + pos: -11.5,11.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5781 + - uid: 8790 components: - - rot: 3.141592653589793 rad - pos: 15.5,-27.5 + - rot: -1.5707963267948966 rad + pos: -12.5,11.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5782 + - uid: 8791 components: - - rot: 3.141592653589793 rad - pos: 15.5,-28.5 + - rot: -1.5707963267948966 rad + pos: -13.5,11.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5783 + - uid: 8792 components: - - rot: 3.141592653589793 rad - pos: 15.5,-29.5 + - rot: -1.5707963267948966 rad + pos: -14.5,11.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 5784 + - uid: 8793 components: - - rot: 3.141592653589793 rad - pos: 15.5,-30.5 + - rot: -1.5707963267948966 rad + pos: -15.5,11.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5786 + - uid: 9176 components: - - rot: 1.5707963267948966 rad - pos: 3.5,-23.5 + - pos: -37.5,-0.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5787 + - uid: 9177 components: - - rot: 1.5707963267948966 rad - pos: 4.5,-23.5 + - pos: -37.5,-2.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5788 + - uid: 9178 components: - - rot: 1.5707963267948966 rad - pos: 5.5,-23.5 + - pos: -37.5,-3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5789 + - uid: 9199 components: - - rot: 1.5707963267948966 rad - pos: 6.5,-23.5 + - pos: -37.5,-1.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5790 + - uid: 9201 components: - - rot: 1.5707963267948966 rad - pos: 7.5,-23.5 + - pos: -37.5,-4.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5791 + - uid: 9222 components: - - rot: 1.5707963267948966 rad - pos: 8.5,-23.5 + - rot: 3.141592653589793 rad + pos: -36.5,14.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5793 + - uid: 9223 components: - rot: 3.141592653589793 rad - pos: 2.5,4.5 + pos: -38.5,15.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5794 + - uid: 9349 components: - - rot: 3.141592653589793 rad - pos: 2.5,5.5 + - pos: -25.5,17.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5795 + - enabled: True + type: AmbientSound + - uid: 9350 components: - - rot: 3.141592653589793 rad - pos: 2.5,6.5 + - pos: -25.5,18.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5796 + - enabled: True + type: AmbientSound + - uid: 9351 components: - - rot: 3.141592653589793 rad - pos: 2.5,7.5 + - rot: -1.5707963267948966 rad + pos: -24.5,19.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5797 + - enabled: True + type: AmbientSound + - uid: 9352 components: - - rot: 3.141592653589793 rad - pos: 2.5,8.5 + - rot: -1.5707963267948966 rad + pos: -23.5,19.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5798 + - enabled: True + type: AmbientSound + - uid: 9816 components: - rot: 3.141592653589793 rad - pos: 2.5,9.5 + pos: -4.5,-29.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5799 + - uid: 10024 components: - - rot: 3.141592653589793 rad - pos: 2.5,10.5 + - rot: 1.5707963267948966 rad + pos: 21.5,-11.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5800 + - uid: 10026 components: - - rot: 3.141592653589793 rad - pos: 2.5,11.5 + - rot: 1.5707963267948966 rad + pos: 20.5,-11.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5802 + - uid: 10039 components: - - rot: 3.141592653589793 rad - pos: 2.5,13.5 + - rot: 1.5707963267948966 rad + pos: 19.5,-11.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5803 + - uid: 10247 components: - - rot: 3.141592653589793 rad - pos: 2.5,14.5 + - pos: -37.5,-7.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5804 + - uid: 10248 components: - - rot: 3.141592653589793 rad - pos: 2.5,15.5 + - pos: -37.5,-6.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5805 + - uid: 10249 components: - - rot: 3.141592653589793 rad - pos: 2.5,16.5 + - pos: -35.5,-7.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5808 + - uid: 10250 components: - - rot: 3.141592653589793 rad - pos: 2.5,19.5 + - pos: -35.5,-8.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5809 + - uid: 10378 components: - - rot: 3.141592653589793 rad - pos: 2.5,20.5 + - rot: -1.5707963267948966 rad + pos: 3.5,-29.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5810 + - uid: 10379 components: - - rot: 3.141592653589793 rad - pos: 2.5,21.5 + - rot: -1.5707963267948966 rad + pos: 2.5,-29.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5811 + - uid: 10380 components: - - rot: 3.141592653589793 rad - pos: 2.5,22.5 + - rot: -1.5707963267948966 rad + pos: 1.5,-29.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5814 + - uid: 10382 components: - - rot: 3.141592653589793 rad - pos: 2.5,25.5 + - rot: 1.5707963267948966 rad + pos: 1.5,-28.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5815 + - uid: 10383 components: - - rot: 3.141592653589793 rad - pos: 2.5,26.5 + - rot: 1.5707963267948966 rad + pos: 0.5,-28.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5816 + - uid: 10384 components: - - rot: 3.141592653589793 rad - pos: 2.5,27.5 + - rot: 1.5707963267948966 rad + pos: -0.5,-28.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5817 + - uid: 10387 components: - rot: 3.141592653589793 rad - pos: 2.5,28.5 + pos: -24.5,-4.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5818 + - uid: 10388 components: - rot: 3.141592653589793 rad - pos: 2.5,29.5 + pos: -24.5,-5.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5819 + - uid: 10389 components: - rot: 3.141592653589793 rad - pos: 4.5,29.5 + pos: -24.5,-6.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5820 + - uid: 10390 components: - rot: 3.141592653589793 rad - pos: 4.5,28.5 + pos: -24.5,-7.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5821 + - uid: 10391 components: - rot: 3.141592653589793 rad - pos: 4.5,27.5 + pos: -24.5,-8.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5824 + - uid: 10392 components: - rot: 3.141592653589793 rad - pos: 4.5,24.5 + pos: -24.5,-9.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5825 + - uid: 10393 components: - rot: 3.141592653589793 rad - pos: 4.5,23.5 + pos: -24.5,-10.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5826 + - uid: 10394 components: - rot: 3.141592653589793 rad - pos: 4.5,22.5 + pos: -24.5,-11.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5827 + - uid: 10396 components: - rot: 3.141592653589793 rad - pos: 4.5,21.5 + pos: -24.5,-13.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5830 + - uid: 10397 components: - - pos: 4.5,18.5 + - rot: 3.141592653589793 rad + pos: -23.5,-4.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5831 + - uid: 10398 components: - rot: 3.141592653589793 rad - pos: 4.5,17.5 + pos: -23.5,-5.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5832 + - uid: 10399 components: - rot: 3.141592653589793 rad - pos: 4.5,16.5 + pos: -23.5,-6.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5833 + - uid: 10400 components: - rot: 3.141592653589793 rad - pos: 4.5,15.5 + pos: -23.5,-7.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5836 + - uid: 10402 components: - rot: 3.141592653589793 rad - pos: 4.5,12.5 + pos: -23.5,-9.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5838 + - uid: 10403 components: - rot: 3.141592653589793 rad - pos: 4.5,10.5 + pos: -23.5,-10.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5839 + - uid: 10405 components: - rot: 3.141592653589793 rad - pos: 4.5,9.5 + pos: -23.5,-12.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5840 + - uid: 10412 components: - rot: 3.141592653589793 rad - pos: 4.5,8.5 + pos: 56.5,17.5 + parent: 31 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10432 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-14.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5841 + - uid: 10433 components: - - rot: 3.141592653589793 rad - pos: 4.5,7.5 + - rot: 1.5707963267948966 rad + pos: -0.5,-14.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5842 + - uid: 10434 components: - - rot: 3.141592653589793 rad - pos: 4.5,6.5 + - rot: 1.5707963267948966 rad + pos: -1.5,-14.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5843 + - uid: 10443 components: - - rot: 1.5707963267948966 rad - pos: 2.5,5.5 + - rot: -1.5707963267948966 rad + pos: -20.5,-12.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5844 + - uid: 10450 components: - - rot: 1.5707963267948966 rad - pos: 1.5,5.5 + - pos: -8.5,-23.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5845 + - uid: 10451 components: - - rot: 1.5707963267948966 rad - pos: 0.5,5.5 + - pos: -8.5,-24.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5846 + - enabled: True + type: AmbientSound + - uid: 10452 components: - - rot: 1.5707963267948966 rad - pos: 0.5,3.5 + - pos: -8.5,-25.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5847 + - uid: 10453 components: - - rot: 1.5707963267948966 rad - pos: 1.5,3.5 + - pos: -8.5,-26.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5850 + - uid: 10454 components: - - rot: -1.5707963267948966 rad - pos: 3.5,24.5 + - pos: -8.5,-28.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5851 + - uid: 10455 components: - - rot: -1.5707963267948966 rad - pos: 4.5,24.5 + - pos: -8.5,-29.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5852 + - uid: 10456 components: - rot: -1.5707963267948966 rad - pos: 5.5,24.5 + pos: -9.5,-27.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5853 + - uid: 10457 components: - rot: -1.5707963267948966 rad - pos: 6.5,24.5 + pos: -10.5,-27.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5854 + - uid: 10458 components: - rot: -1.5707963267948966 rad - pos: 5.5,25.5 + pos: -11.5,-27.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5855 + - uid: 10459 components: - rot: -1.5707963267948966 rad - pos: 6.5,25.5 + pos: -12.5,-27.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5857 + - enabled: True + type: AmbientSound + - uid: 10460 components: - rot: -1.5707963267948966 rad - pos: 2.5,25.5 + pos: -13.5,-27.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5858 + - uid: 10461 components: - rot: -1.5707963267948966 rad - pos: 1.5,25.5 + pos: -14.5,-27.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5859 + - uid: 10462 components: - rot: -1.5707963267948966 rad - pos: 0.5,25.5 + pos: -15.5,-27.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5860 + - uid: 10469 components: - rot: -1.5707963267948966 rad - pos: -0.5,25.5 + pos: 0.5,-16.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10470 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-16.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5861 + - uid: 10471 components: - rot: -1.5707963267948966 rad - pos: 1.5,24.5 + pos: -1.5,-16.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5862 + - uid: 10472 components: - rot: -1.5707963267948966 rad - pos: 0.5,24.5 + pos: -2.5,-16.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5863 + - uid: 10479 components: - rot: -1.5707963267948966 rad - pos: -0.5,24.5 + pos: 8.5,-17.5 + parent: 31 + type: Transform + - uid: 10483 + components: + - pos: -7.5,-20.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5866 + - uid: 10484 components: - - rot: 1.5707963267948966 rad - pos: 8.5,24.5 + - pos: -7.5,-21.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5872 + - uid: 10485 components: - - rot: 1.5707963267948966 rad - pos: 3.5,17.5 + - pos: -7.5,-22.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5873 + - uid: 10486 components: - - rot: 1.5707963267948966 rad - pos: 4.5,17.5 + - pos: -7.5,-23.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5874 + - uid: 10487 components: - - rot: 1.5707963267948966 rad - pos: 5.5,17.5 + - pos: -7.5,-24.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5875 + - enabled: True + type: AmbientSound + - uid: 10488 components: - - rot: 1.5707963267948966 rad - pos: 6.5,17.5 + - pos: -7.5,-25.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5876 + - uid: 10489 components: - - pos: 8.5,19.5 + - rot: -1.5707963267948966 rad + pos: -8.5,-26.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5877 + - uid: 10490 components: - - rot: 1.5707963267948966 rad - pos: 8.5,17.5 + - rot: -1.5707963267948966 rad + pos: -9.5,-26.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5878 + - uid: 10491 components: - - rot: 1.5707963267948966 rad - pos: 5.5,20.5 + - rot: -1.5707963267948966 rad + pos: -10.5,-26.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5879 + - uid: 10492 components: - - rot: 1.5707963267948966 rad - pos: 6.5,20.5 + - rot: -1.5707963267948966 rad + pos: -11.5,-26.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5880 + - uid: 10493 components: - - rot: 1.5707963267948966 rad - pos: 7.5,20.5 + - rot: -1.5707963267948966 rad + pos: -12.5,-26.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5884 + - enabled: True + type: AmbientSound + - uid: 10494 components: - rot: -1.5707963267948966 rad - pos: 3.5,20.5 + pos: -13.5,-26.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5885 + - uid: 10914 components: - - rot: -1.5707963267948966 rad - pos: 2.5,20.5 + - pos: 49.5,-2.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5886 + - uid: 10915 components: - rot: -1.5707963267948966 rad - pos: 1.5,20.5 + pos: 50.5,-3.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5887 + - uid: 10916 components: - rot: -1.5707963267948966 rad - pos: 0.5,20.5 + pos: 51.5,-3.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5888 + - uid: 10917 components: - rot: -1.5707963267948966 rad - pos: -0.5,20.5 + pos: 52.5,-3.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5889 + - uid: 10918 components: - rot: -1.5707963267948966 rad - pos: -1.5,20.5 + pos: 54.5,-3.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5890 + - uid: 10919 components: - rot: -1.5707963267948966 rad - pos: -2.5,20.5 + pos: 55.5,-3.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5891 + - enabled: True + type: AmbientSound + - uid: 10920 components: - - rot: -1.5707963267948966 rad - pos: -3.5,20.5 + - rot: 3.141592653589793 rad + pos: 53.5,-4.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5899 + - uid: 10921 components: - - rot: 1.5707963267948966 rad - pos: -21.5,19.5 + - rot: 3.141592653589793 rad + pos: 53.5,-5.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5900 + - uid: 10922 components: - - rot: 1.5707963267948966 rad - pos: -19.5,19.5 + - rot: 3.141592653589793 rad + pos: 53.5,-6.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 5901 + - uid: 10923 components: - - pos: -18.5,20.5 + - rot: 3.141592653589793 rad + pos: 53.5,-7.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 5902 + - uid: 10924 components: - - pos: -18.5,21.5 + - rot: 3.141592653589793 rad + pos: 53.5,-8.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 5903 + - uid: 10925 components: - - pos: -18.5,22.5 + - rot: 3.141592653589793 rad + pos: 53.5,-9.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 5904 + - uid: 10926 components: - - pos: -18.5,23.5 + - rot: 3.141592653589793 rad + pos: 53.5,-10.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 5905 + - uid: 10927 components: - - pos: -18.5,24.5 + - rot: 1.5707963267948966 rad + pos: 54.5,-7.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 5906 + - uid: 10928 components: - - rot: -1.5707963267948966 rad - pos: -17.5,25.5 + - rot: 1.5707963267948966 rad + pos: 55.5,-7.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5907 + - uid: 10932 components: - - rot: -1.5707963267948966 rad - pos: -16.5,25.5 + - pos: 48.5,-2.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5908 + - uid: 10933 components: - - rot: -1.5707963267948966 rad - pos: -15.5,25.5 + - pos: 48.5,-3.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5909 + - uid: 10934 components: - - rot: -1.5707963267948966 rad - pos: -14.5,25.5 + - pos: 48.5,-4.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5910 + - uid: 10935 components: - rot: -1.5707963267948966 rad - pos: -13.5,25.5 + pos: 49.5,-5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5911 + - uid: 10936 components: - rot: -1.5707963267948966 rad - pos: -12.5,25.5 + pos: 50.5,-5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5912 + - uid: 10937 components: - rot: -1.5707963267948966 rad - pos: -11.5,25.5 + pos: 52.5,-5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5913 + - uid: 10938 components: - rot: -1.5707963267948966 rad - pos: -10.5,25.5 + pos: 53.5,-5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5914 + - uid: 10939 components: - rot: -1.5707963267948966 rad - pos: -9.5,25.5 + pos: 54.5,-5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5915 + - uid: 10940 components: - rot: -1.5707963267948966 rad - pos: -8.5,25.5 + pos: 55.5,-5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 5916 + - uid: 10941 components: - rot: -1.5707963267948966 rad - pos: -6.5,24.5 + pos: 56.5,-5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5917 + - uid: 10942 components: - rot: -1.5707963267948966 rad - pos: -5.5,24.5 + pos: 57.5,-5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5918 + - uid: 10944 components: - - rot: 3.141592653589793 rad - pos: -4.5,23.5 + - pos: 48.5,-6.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 5919 + - uid: 10945 components: - - rot: 3.141592653589793 rad - pos: -4.5,22.5 + - pos: 48.5,-7.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5920 + - uid: 10946 components: - - rot: 3.141592653589793 rad - pos: -22.5,20.5 + - rot: -1.5707963267948966 rad + pos: 49.5,-8.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 5921 + - uid: 10947 components: - - rot: 3.141592653589793 rad - pos: -4.5,21.5 + - rot: -1.5707963267948966 rad + pos: 50.5,-8.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 5922 + - uid: 10948 components: - - rot: 3.141592653589793 rad - pos: -22.5,21.5 + - rot: -1.5707963267948966 rad + pos: 51.5,-8.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 5923 + - uid: 10949 components: - - rot: 3.141592653589793 rad - pos: -22.5,22.5 + - rot: -1.5707963267948966 rad + pos: 52.5,-8.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5926 + - enabled: True + type: AmbientSound + - uid: 10950 components: - rot: -1.5707963267948966 rad - pos: -23.5,24.5 + pos: 53.5,-8.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 5927 + - uid: 10951 components: - rot: -1.5707963267948966 rad - pos: -24.5,24.5 + pos: 54.5,-8.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 5930 + - uid: 10952 components: - - rot: 1.5707963267948966 rad - pos: 5.5,14.5 + - rot: 3.141592653589793 rad + pos: 47.5,-9.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 5931 + - uid: 10953 components: - - rot: 1.5707963267948966 rad - pos: 7.5,14.5 + - rot: 3.141592653589793 rad + pos: 47.5,-10.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 5932 + - uid: 11051 components: - - rot: 1.5707963267948966 rad - pos: 6.5,14.5 + - rot: -1.5707963267948966 rad + pos: 55.5,15.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5933 + - uid: 11057 components: - - rot: 1.5707963267948966 rad - pos: 8.5,14.5 + - pos: 49.5,19.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 5934 + - uid: 11058 components: - - rot: 1.5707963267948966 rad - pos: 9.5,14.5 + - pos: 48.5,19.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 5935 + - uid: 11063 components: - - rot: 1.5707963267948966 rad - pos: 10.5,14.5 + - pos: 46.5,20.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 5936 + - uid: 11064 components: - - rot: 1.5707963267948966 rad - pos: 11.5,14.5 + - pos: 47.5,21.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 5937 + - uid: 11065 components: - - rot: 1.5707963267948966 rad - pos: 12.5,14.5 + - pos: 47.5,20.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 5942 + - uid: 11066 components: - - rot: 3.141592653589793 rad - pos: 8.5,7.5 + - pos: 47.5,19.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5943 + - enabled: True + type: AmbientSound + - uid: 11067 components: - - rot: 3.141592653589793 rad - pos: 8.5,8.5 + - pos: 47.5,18.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5945 + - enabled: True + type: AmbientSound + - uid: 11068 components: - - pos: 9.5,4.5 + - pos: 46.5,19.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5946 + - enabled: True + type: AmbientSound +- proto: GasPipeTJunction + entities: + - uid: 53 components: - - pos: 9.5,5.5 + - rot: 3.141592653589793 rad + pos: 10.5,25.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5947 + - uid: 97 components: - - pos: 9.5,6.5 + - rot: -1.5707963267948966 rad + pos: 4.5,-5.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5948 + - uid: 351 components: - - pos: 9.5,7.5 + - rot: 1.5707963267948966 rad + pos: -23.5,-11.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5949 + - uid: 536 components: - - pos: 9.5,8.5 + - pos: -3.5,-16.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5954 + - uid: 926 components: - - rot: -1.5707963267948966 rad - pos: -0.5,3.5 + - rot: 1.5707963267948966 rad + pos: -9.5,-21.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5956 + - uid: 1231 components: - rot: -1.5707963267948966 rad - pos: -2.5,3.5 + pos: 39.5,5.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5957 + - uid: 1723 components: - - rot: -1.5707963267948966 rad - pos: -3.5,3.5 + - pos: 37.5,5.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5958 + - uid: 1796 components: - - rot: -1.5707963267948966 rad - pos: -4.5,3.5 + - rot: 1.5707963267948966 rad + pos: -24.5,-12.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5959 + - uid: 2282 components: - rot: -1.5707963267948966 rad - pos: -0.5,5.5 + pos: -5.5,15.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5961 + - uid: 3386 components: - rot: -1.5707963267948966 rad - pos: -3.5,5.5 + pos: 18.5,-14.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5962 + - uid: 3389 components: - rot: -1.5707963267948966 rad - pos: -1.5,5.5 + pos: 19.5,-15.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5965 + - uid: 3390 components: - - rot: 3.141592653589793 rad - pos: -5.5,4.5 + - rot: -1.5707963267948966 rad + pos: -24.5,8.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5966 + - uid: 3420 components: - - rot: 3.141592653589793 rad - pos: -5.5,5.5 + - rot: 1.5707963267948966 rad + pos: 18.5,-11.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5967 + - uid: 3834 components: - - rot: 3.141592653589793 rad - pos: -5.5,6.5 + - rot: -1.5707963267948966 rad + pos: 8.5,-13.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5968 + - uid: 3860 components: - - rot: 3.141592653589793 rad - pos: -5.5,7.5 + - rot: -1.5707963267948966 rad + pos: -37.5,13.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5970 + - uid: 3940 components: - - rot: 3.141592653589793 rad - pos: -5.5,9.5 + - rot: -1.5707963267948966 rad + pos: -35.5,13.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5972 + - uid: 4181 components: - - rot: 3.141592653589793 rad - pos: -4.5,6.5 + - pos: -8.5,-21.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5974 + - uid: 4347 components: - - rot: 3.141592653589793 rad - pos: -4.5,8.5 + - rot: 1.5707963267948966 rad + pos: 9.5,-14.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5975 + - uid: 4642 components: - - rot: 3.141592653589793 rad - pos: -4.5,9.5 + - rot: 1.5707963267948966 rad + pos: -37.5,-5.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5984 + - uid: 4708 components: - rot: -1.5707963267948966 rad - pos: -6.5,10.5 + pos: 33.5,8.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5985 + - uid: 4731 components: - - rot: 1.5707963267948966 rad - pos: -9.5,10.5 + - pos: 38.5,3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5986 + - uid: 5064 components: - rot: 3.141592653589793 rad - pos: -8.5,11.5 + pos: 7.5,25.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5987 + - uid: 5342 components: - - rot: 3.141592653589793 rad - pos: -8.5,12.5 + - rot: -1.5707963267948966 rad + pos: 4.5,-17.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5990 + - uid: 5374 components: - - rot: 3.141592653589793 rad - pos: -5.5,13.5 + - rot: 1.5707963267948966 rad + pos: 2.5,-23.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 5995 + - uid: 5377 components: - - rot: 3.141592653589793 rad - pos: -8.5,15.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-20.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5996 + - uid: 5380 components: - - rot: 3.141592653589793 rad - pos: -8.5,16.5 + - pos: 8.5,-20.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5997 + - enabled: True + type: AmbientSound + - uid: 5392 components: - - rot: 3.141592653589793 rad - pos: -8.5,17.5 + - pos: 3.5,3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5998 + - uid: 5396 components: - rot: 3.141592653589793 rad - pos: -8.5,18.5 + pos: 7.5,3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5999 + - uid: 5397 components: - rot: 3.141592653589793 rad - pos: -8.5,19.5 + pos: 9.5,3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6002 + - uid: 5399 components: - rot: 3.141592653589793 rad - pos: -7.5,16.5 + pos: 8.5,5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6003 + - uid: 5405 components: - rot: 3.141592653589793 rad - pos: -7.5,17.5 + pos: 13.5,5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6004 + - uid: 5419 components: - rot: 3.141592653589793 rad - pos: -7.5,18.5 + pos: 15.5,3.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6005 + - uid: 5422 components: - - rot: 3.141592653589793 rad - pos: -7.5,19.5 + - pos: 10.5,5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6006 + - uid: 5424 components: - - rot: 1.5707963267948966 rad - pos: -6.5,15.5 + - rot: 3.141592653589793 rad + pos: 21.5,3.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 6007 + - uid: 5425 components: - - rot: 1.5707963267948966 rad - pos: -8.5,15.5 + - pos: 22.5,5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6008 + - uid: 5430 components: - - rot: 1.5707963267948966 rad - pos: -9.5,15.5 + - pos: 28.5,5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6009 + - uid: 5439 components: - - rot: 1.5707963267948966 rad - pos: -10.5,15.5 + - rot: 3.141592653589793 rad + pos: 26.5,3.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 6011 + - uid: 5458 components: - - rot: 1.5707963267948966 rad - pos: -9.5,14.5 + - rot: 3.141592653589793 rad + pos: 14.5,10.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6012 + - uid: 5459 components: - - rot: 1.5707963267948966 rad - pos: -11.5,14.5 + - pos: 16.5,11.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6013 + - uid: 5464 components: - - rot: 1.5707963267948966 rad - pos: -10.5,14.5 + - rot: 3.141592653589793 rad + pos: 21.5,11.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6014 + - uid: 5465 components: - rot: 3.141592653589793 rad - pos: -5.5,14.5 + pos: 22.5,10.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6027 + - uid: 5470 components: - rot: 3.141592653589793 rad - pos: -12.5,17.5 + pos: 3.5,5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6028 + - uid: 5471 components: - - rot: 3.141592653589793 rad - pos: -12.5,18.5 + - pos: 20.5,10.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6029 + - uid: 5481 components: - - rot: 1.5707963267948966 rad - pos: -9.5,20.5 + - rot: 3.141592653589793 rad + pos: 20.5,11.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6030 + - uid: 5488 components: - - rot: 1.5707963267948966 rad - pos: -11.5,20.5 + - pos: 9.5,0.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6031 + - uid: 5491 components: - - rot: 1.5707963267948966 rad - pos: -10.5,20.5 + - rot: 3.141592653589793 rad + pos: 8.5,-1.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6034 + - uid: 5500 components: - - rot: 1.5707963267948966 rad - pos: -4.5,8.5 + - pos: -8.5,0.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6035 + - uid: 5516 components: - - rot: 1.5707963267948966 rad - pos: -3.5,8.5 + - rot: 3.141592653589793 rad + pos: -1.5,-1.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6036 + - uid: 5528 components: - - rot: 1.5707963267948966 rad - pos: -2.5,8.5 + - pos: -13.5,0.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6037 + - uid: 5571 components: - - rot: 1.5707963267948966 rad - pos: -1.5,8.5 + - rot: 3.141592653589793 rad + pos: 11.5,-10.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6038 + - uid: 5572 components: - - rot: 1.5707963267948966 rad - pos: -3.5,7.5 + - rot: 3.141592653589793 rad + pos: 10.5,-8.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6039 + - uid: 5574 components: - - rot: 1.5707963267948966 rad - pos: -2.5,7.5 + - rot: 3.141592653589793 rad + pos: 15.5,-8.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6040 + - uid: 5577 components: - - rot: 1.5707963267948966 rad - pos: -1.5,7.5 + - pos: 15.5,-10.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 6045 + - uid: 5579 components: - - rot: -1.5707963267948966 rad - pos: -5.5,5.5 + - pos: 12.5,-10.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 6046 + - uid: 5584 components: - - rot: -1.5707963267948966 rad - pos: -6.5,5.5 + - pos: 12.5,-8.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6047 + - uid: 5586 components: - - rot: -1.5707963267948966 rad - pos: -7.5,5.5 + - rot: 3.141592653589793 rad + pos: 16.5,-8.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6048 + - uid: 5587 components: - - rot: -1.5707963267948966 rad - pos: -8.5,5.5 + - rot: 3.141592653589793 rad + pos: 17.5,-10.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 6049 + - uid: 5592 components: - - rot: -1.5707963267948966 rad - pos: -9.5,5.5 + - rot: 1.5707963267948966 rad + pos: 17.5,-6.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 6052 + - uid: 5600 components: - - rot: -1.5707963267948966 rad - pos: -12.5,5.5 + - rot: 1.5707963267948966 rad + pos: 16.5,-5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6053 + - uid: 5626 components: - - rot: -1.5707963267948966 rad - pos: -13.5,5.5 + - pos: 15.5,-15.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6054 + - uid: 5686 components: - rot: -1.5707963267948966 rad - pos: -14.5,5.5 + pos: 14.5,-20.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6055 + - enabled: True + type: AmbientSound + - uid: 5715 components: - rot: -1.5707963267948966 rad - pos: -15.5,5.5 + pos: 4.5,-14.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6056 + - uid: 5769 components: - rot: 1.5707963267948966 rad - pos: -23.5,5.5 + pos: -8.5,13.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 6057 + - uid: 5772 components: - rot: -1.5707963267948966 rad - pos: -17.5,5.5 + pos: -24.5,-3.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6058 + - uid: 5801 components: - - rot: -1.5707963267948966 rad - pos: -18.5,5.5 + - rot: 1.5707963267948966 rad + pos: 2.5,12.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 6059 + - uid: 5806 components: - - rot: -1.5707963267948966 rad - pos: -19.5,5.5 + - rot: 1.5707963267948966 rad + pos: 2.5,17.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 6060 + - uid: 5807 components: - rot: -1.5707963267948966 rad - pos: -20.5,5.5 + pos: 4.5,19.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6061 + - uid: 5812 components: - rot: -1.5707963267948966 rad - pos: -21.5,5.5 + pos: 4.5,26.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6062 + - enabled: True + type: AmbientSound + - uid: 5822 components: - - rot: -1.5707963267948966 rad - pos: -22.5,5.5 + - rot: 1.5707963267948966 rad + pos: 2.5,23.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 6063 + - uid: 5829 components: - - rot: -1.5707963267948966 rad - pos: -6.5,3.5 + - rot: 1.5707963267948966 rad + pos: 2.5,18.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6064 + - uid: 5834 components: - - rot: -1.5707963267948966 rad - pos: -7.5,3.5 + - rot: 1.5707963267948966 rad + pos: 4.5,14.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6065 + - uid: 5835 components: - rot: -1.5707963267948966 rad - pos: -8.5,3.5 + pos: 4.5,13.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6066 + - uid: 5856 components: - - rot: -1.5707963267948966 rad - pos: -9.5,3.5 + - pos: 3.5,25.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6067 + - uid: 5867 components: - - rot: -1.5707963267948966 rad - pos: -10.5,3.5 + - pos: 7.5,24.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6068 + - uid: 5881 components: - - rot: -1.5707963267948966 rad - pos: -11.5,3.5 + - rot: 3.141592653589793 rad + pos: 7.5,17.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6069 + - uid: 5924 components: - - rot: -1.5707963267948966 rad - pos: -12.5,3.5 + - rot: 1.5707963267948966 rad + pos: -22.5,23.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6070 + - uid: 5955 components: - - rot: -1.5707963267948966 rad - pos: -13.5,3.5 + - rot: 3.141592653589793 rad + pos: -1.5,3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6072 + - uid: 5960 components: - - rot: -1.5707963267948966 rad - pos: -15.5,3.5 + - pos: -2.5,5.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6073 + - uid: 5963 components: - - rot: -1.5707963267948966 rad - pos: -16.5,3.5 + - rot: 3.141592653589793 rad + pos: -4.5,5.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6074 + - uid: 5964 components: - - rot: -1.5707963267948966 rad - pos: -17.5,3.5 + - rot: 3.141592653589793 rad + pos: -5.5,3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6075 + - uid: 5969 components: - - rot: -1.5707963267948966 rad - pos: -18.5,3.5 + - rot: 1.5707963267948966 rad + pos: -5.5,8.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6076 + - uid: 5973 components: - - rot: -1.5707963267948966 rad - pos: -19.5,3.5 + - rot: 1.5707963267948966 rad + pos: -4.5,7.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6077 + - uid: 5980 components: - - rot: -1.5707963267948966 rad - pos: -20.5,3.5 + - rot: 3.141592653589793 rad + pos: -8.5,10.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6078 + - uid: 5989 components: - rot: -1.5707963267948966 rad - pos: -21.5,3.5 + pos: -8.5,14.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6081 + - uid: 5994 components: - - rot: 1.5707963267948966 rad - pos: -10.5,5.5 + - rot: 3.141592653589793 rad + pos: -7.5,15.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6085 + - uid: 6000 components: - - pos: -24.5,4.5 + - rot: -1.5707963267948966 rad + pos: -8.5,20.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 6086 + - uid: 6010 components: - - pos: -24.5,3.5 + - rot: 3.141592653589793 rad + pos: -11.5,15.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6087 + - uid: 6050 components: - - pos: -24.5,2.5 + - rot: 3.141592653589793 rad + pos: -14.5,3.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 6088 + - uid: 6051 components: - - pos: -24.5,1.5 + - pos: -11.5,5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6089 + - uid: 6079 components: - - pos: -24.5,0.5 + - rot: 3.141592653589793 rad + pos: -22.5,3.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 6090 + - uid: 6084 components: - - pos: -24.5,-0.5 + - pos: -25.5,5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6091 + - uid: 6112 components: - - pos: -24.5,-1.5 + - pos: -16.5,5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6092 + - uid: 6114 components: - - pos: -16.5,4.5 + - rot: 1.5707963267948966 rad + pos: 7.5,-16.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6093 + - uid: 6135 components: - rot: 3.141592653589793 rad - pos: -24.5,6.5 + pos: -30.5,3.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 6094 + - uid: 6136 components: - - rot: 3.141592653589793 rad - pos: -24.5,7.5 + - pos: -29.5,5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6097 + - uid: 6199 components: - - rot: -1.5707963267948966 rad - pos: -24.5,9.5 + - rot: 3.141592653589793 rad + pos: 41.5,3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6098 + - uid: 6204 components: - rot: -1.5707963267948966 rad - pos: -23.5,8.5 + pos: 44.5,6.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6099 + - uid: 6213 components: - - rot: -1.5707963267948966 rad - pos: -22.5,8.5 + - rot: 1.5707963267948966 rad + pos: 20.5,15.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6100 + - uid: 6216 components: - - rot: -1.5707963267948966 rad - pos: -21.5,8.5 + - rot: 3.141592653589793 rad + pos: 43.5,3.5 + parent: 31 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6223 + components: + - rot: 3.141592653589793 rad + pos: 46.5,2.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6101 + - uid: 6226 components: - - rot: -1.5707963267948966 rad - pos: -21.5,9.5 + - pos: 47.5,3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6102 + - uid: 6249 components: - - rot: -1.5707963267948966 rad - pos: -25.5,9.5 + - rot: 1.5707963267948966 rad + pos: 22.5,15.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6334 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,10.5 + parent: 31 + type: Transform + - color: '#0055CCFF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 6103 + - uid: 6906 components: - - rot: -1.5707963267948966 rad - pos: -26.5,9.5 + - pos: 55.5,18.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6104 + - enabled: True + type: AmbientSound + - uid: 6943 components: - - rot: -1.5707963267948966 rad - pos: -25.5,8.5 + - pos: 49.5,3.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 6105 + - uid: 6944 components: - - rot: -1.5707963267948966 rad - pos: -26.5,8.5 + - pos: 48.5,2.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6107 + - uid: 7095 components: - rot: 3.141592653589793 rad - pos: -23.5,8.5 + pos: -22.5,19.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6108 + - enabled: True + type: AmbientSound + - uid: 7159 components: - - rot: 3.141592653589793 rad - pos: -23.5,7.5 + - pos: 8.5,20.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6109 + - uid: 7369 components: - - rot: 3.141592653589793 rad - pos: -23.5,6.5 + - rot: -1.5707963267948966 rad + pos: 9.5,-16.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6110 + - uid: 7412 components: - rot: 3.141592653589793 rad - pos: -23.5,5.5 + pos: 2.5,-28.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6111 + - uid: 7457 components: - - rot: 3.141592653589793 rad - pos: -23.5,4.5 + - rot: 1.5707963267948966 rad + pos: -23.5,-3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6113 + - uid: 7465 components: - - pos: -16.5,3.5 + - rot: -1.5707963267948966 rad + pos: 4.5,-29.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6114 + - uid: 7504 components: - rot: -1.5707963267948966 rad - pos: -22.5,9.5 + pos: -36.5,0.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6121 + - uid: 8783 components: - - pos: -23.5,2.5 + - rot: -1.5707963267948966 rad + pos: -5.5,11.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6122 + - uid: 8872 components: - - pos: -23.5,1.5 + - rot: 1.5707963267948966 rad + pos: 2.5,-6.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6123 + - uid: 8877 components: - - pos: -23.5,0.5 + - pos: 34.5,5.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6124 + - uid: 8878 components: - - pos: -23.5,-0.5 + - rot: 3.141592653589793 rad + pos: 35.5,3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6125 + - uid: 10041 components: - - pos: -23.5,-1.5 + - rot: 1.5707963267948966 rad + pos: 19.5,-9.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6126 + - uid: 10251 components: - - pos: -23.5,-2.5 + - rot: -1.5707963267948966 rad + pos: -35.5,-6.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6127 + - uid: 10401 components: - - pos: -23.5,-3.5 + - rot: -1.5707963267948966 rad + pos: -23.5,-8.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6128 + - uid: 10415 components: - - rot: 3.141592653589793 rad - pos: -16.5,2.5 + - pos: -2.5,-14.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6131 + - uid: 10429 components: - - rot: 1.5707963267948966 rad - pos: -27.5,3.5 + - rot: -1.5707963267948966 rad + pos: -7.5,-26.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6132 + - uid: 10430 components: - - rot: 1.5707963267948966 rad - pos: -26.5,3.5 + - rot: -1.5707963267948966 rad + pos: -8.5,-27.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6133 + - uid: 10910 components: - rot: 1.5707963267948966 rad - pos: -25.5,3.5 + pos: 49.5,-3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6134 + - uid: 10911 components: - - rot: 1.5707963267948966 rad - pos: -24.5,3.5 + - pos: 53.5,-3.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6139 + - uid: 10912 components: - rot: 1.5707963267948966 rad - pos: -30.5,5.5 + pos: 53.5,-7.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 6140 + - enabled: True + type: AmbientSound + - uid: 10931 components: - rot: 1.5707963267948966 rad - pos: -31.5,5.5 + pos: 48.5,-5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6142 + - uid: 10943 components: - - rot: 1.5707963267948966 rad - pos: -33.5,5.5 + - rot: 3.141592653589793 rad + pos: 51.5,-5.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6143 + - uid: 10954 components: - - rot: 1.5707963267948966 rad - pos: -34.5,5.5 + - rot: 3.141592653589793 rad + pos: 48.5,-8.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6145 + - enabled: True + type: AmbientSound +- proto: GasPort + entities: + - uid: 188 components: - - rot: 1.5707963267948966 rad - pos: -31.5,3.5 + - pos: -11.5,-28.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6146 + - uid: 6502 components: - rot: 1.5707963267948966 rad - pos: -32.5,3.5 + pos: 31.5,9.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6147 + - uid: 6893 components: - rot: 1.5707963267948966 rad - pos: -33.5,3.5 + pos: 31.5,8.5 parent: 31 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6148 +- proto: GasPressurePump + entities: + - uid: 555 components: - - rot: 1.5707963267948966 rad - pos: -34.5,3.5 + - desc: A pump that moves tritium by pressure. + name: tritium pump + type: MetaData + - pos: 45.5,17.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6149 + - targetPressure: 1 + type: GasPressurePump + - uid: 842 components: - - rot: 1.5707963267948966 rad - pos: -35.5,3.5 + - rot: -1.5707963267948966 rad + pos: -12.5,-29.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6153 + - uid: 905 components: - - pos: -35.5,4.5 + - desc: A pump that moves O2 by pressure. + name: O2 pump + type: MetaData + - pos: 37.5,17.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6154 + - uid: 1513 components: - - pos: -35.5,3.5 + - desc: A pump that moves N2O by pressure. + name: N2O pump + type: MetaData + - pos: 39.5,17.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6155 + - targetPressure: 1 + type: GasPressurePump + - uid: 1517 components: - - pos: -35.5,2.5 + - desc: A pump that moves N2 by pressure. + name: N2 pump + type: MetaData + - pos: 35.5,17.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6156 + - uid: 1570 components: - - pos: -35.5,1.5 + - desc: A pump that moves plasma by pressure. + name: plasma pump + type: MetaData + - pos: 43.5,17.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6157 + - targetPressure: 1 + type: GasPressurePump + - uid: 1573 components: - - pos: -35.5,0.5 + - desc: A pump that moves CO2 by pressure. + name: CO2 pump + type: MetaData + - pos: 41.5,17.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6158 + - targetPressure: 1 + type: GasPressurePump + - uid: 4388 components: - - pos: -35.5,-0.5 + - rot: 3.141592653589793 rad + pos: 33.5,11.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 6159 + - uid: 4389 components: - - pos: -35.5,-1.5 + - pos: 34.5,11.5 parent: 31 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6160 + - uid: 6351 components: - - pos: -35.5,-2.5 + - desc: A pump that moves H2O by pressure. + name: H2O pump + type: MetaData + - pos: 47.5,17.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6161 + - uid: 6357 components: - - pos: -35.5,-3.5 + - desc: Pulls product from mixer. + name: mixer product pump + type: MetaData + - rot: -1.5707963267948966 rad + pos: 51.5,15.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#947507FF' type: AtmosPipeColor - - uid: 6162 + - uid: 6425 components: - - pos: -35.5,-4.5 + - desc: Sends mix line to waste. + name: mix to waste + type: MetaData + - rot: -1.5707963267948966 rad + pos: 51.5,17.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6163 + - uid: 6584 components: - - pos: -35.5,-5.5 + - desc: pumps mix line into mixer. + name: mixer input pump + type: MetaData + - rot: 1.5707963267948966 rad + pos: 51.5,16.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6164 + - uid: 7663 components: - - pos: -36.5,2.5 + - pos: 9.5,-15.5 parent: 31 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6165 +- proto: GasThermoMachineFreezer + entities: + - uid: 5552 components: - - pos: -36.5,1.5 + - rot: 3.141592653589793 rad + pos: -16.5,-5.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6167 + - uid: 8860 components: - - pos: -25.5,15.5 + - pos: 38.5,11.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6170 +- proto: GasThermoMachineFreezerEnabled + entities: + - uid: 2215 components: - rot: 1.5707963267948966 rad - pos: 32.5,3.5 + pos: 7.5,-17.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6171 +- proto: GasThermoMachineHeater + entities: + - uid: 8861 components: - - pos: 32.5,6.5 + - pos: 39.5,11.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6172 +- proto: GasValve + entities: + - uid: 6477 components: - - pos: 32.5,7.5 + - pos: 33.5,17.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True + - open: False + type: GasValve + - enabled: False type: AmbientSound - - uid: 6173 + - uid: 6479 components: - - pos: 32.5,8.5 + - pos: 50.5,19.5 parent: 31 type: Transform - - color: '#0055CCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6176 +- proto: GasVentPump + entities: + - uid: 65 components: - - pos: 33.5,5.5 + - pos: 15.5,-7.5 parent: 31 type: Transform - - color: '#990000FF' + - enabled: False + type: AmbientSound + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6177 + - uid: 100 components: - - pos: 33.5,4.5 + - rot: 1.5707963267948966 rad + pos: 3.5,-17.5 parent: 31 type: Transform - - color: '#990000FF' + - enabled: False + type: AmbientSound + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6178 + - uid: 716 components: - - pos: 33.5,6.5 + - pos: 7.5,26.5 parent: 31 type: Transform - - color: '#990000FF' + - enabled: False + type: AmbientSound + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6179 + - uid: 977 components: - - pos: 33.5,7.5 + - pos: 10.5,26.5 parent: 31 type: Transform - - color: '#990000FF' + - enabled: False + type: AmbientSound + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6185 + - uid: 1094 components: - - rot: 1.5707963267948966 rad - pos: 34.5,3.5 + - rot: -1.5707963267948966 rad + pos: 21.5,-9.5 parent: 31 type: Transform - - color: '#990000FF' + - enabled: False + type: AmbientSound + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6186 + - uid: 1230 components: - - pos: 32.5,4.5 + - rot: -1.5707963267948966 rad + pos: 9.5,20.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6187 + - uid: 1305 components: - - pos: 32.5,3.5 + - rot: -1.5707963267948966 rad + pos: -18.5,-12.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6188 + - uid: 1688 components: - - pos: 32.5,2.5 + - pos: -36.5,18.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6189 + - uid: 2213 components: - - pos: 32.5,1.5 + - rot: -1.5707963267948966 rad + pos: 10.5,-14.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6190 + - uid: 3116 components: - - pos: 32.5,0.5 + - rot: -1.5707963267948966 rad + pos: 26.5,9.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6191 + - uid: 3368 components: - - pos: 32.5,-0.5 + - pos: -5.5,16.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6192 + - uid: 3419 components: - - pos: 32.5,-1.5 + - pos: 12.5,26.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6193 + - uid: 3835 components: - - pos: 33.5,2.5 + - rot: 3.141592653589793 rad + pos: 19.5,-17.5 parent: 31 type: Transform - - color: '#990000FF' + - enabled: False + type: AmbientSound + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6194 + - uid: 4013 components: - - pos: 33.5,1.5 + - rot: 3.141592653589793 rad + pos: -9.5,-22.5 parent: 31 type: Transform - - color: '#990000FF' + - ShutdownSubscribers: + - 7345 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6195 + - uid: 4185 components: - - pos: 33.5,0.5 + - pos: -7.5,20.5 parent: 31 type: Transform - - color: '#990000FF' + - enabled: False + type: AmbientSound + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6196 + - uid: 4266 components: - - pos: 33.5,-0.5 + - rot: -1.5707963267948966 rad + pos: 23.5,15.5 parent: 31 type: Transform - - color: '#990000FF' + - enabled: False + type: AmbientSound + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6200 + - uid: 4267 components: - rot: -1.5707963267948966 rad - pos: 40.5,6.5 + pos: 26.5,16.5 parent: 31 type: Transform + - ShutdownSubscribers: + - 7104 + type: DeviceNetwork + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6201 + - uid: 4303 components: - - rot: 1.5707963267948966 rad - pos: 41.5,6.5 + - rot: 3.141592653589793 rad + pos: -2.5,-15.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6202 + - uid: 4484 components: - - rot: 1.5707963267948966 rad - pos: 42.5,6.5 + - rot: 3.141592653589793 rad + pos: -35.5,-9.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6203 + - uid: 5365 components: - rot: 1.5707963267948966 rad - pos: 43.5,6.5 + pos: 3.5,-5.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6206 - components: - - pos: 43.5,4.5 - parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6207 - components: - - pos: 43.5,5.5 - parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6208 + - uid: 5472 components: - - pos: 43.5,6.5 + - pos: 3.5,6.5 parent: 31 type: Transform - - color: '#990000FF' + - enabled: False + type: AmbientSound + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6209 + - uid: 5476 components: - rot: 3.141592653589793 rad - pos: 43.5,7.5 + pos: 22.5,4.5 parent: 31 type: Transform - - color: '#990000FF' + - enabled: False + type: AmbientSound + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6217 + - uid: 5479 components: - - rot: 3.141592653589793 rad - pos: 44.5,5.5 + - pos: 14.5,11.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6218 + - uid: 5495 components: - - rot: 3.141592653589793 rad - pos: 44.5,4.5 + - pos: 8.5,-0.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6219 + - uid: 5542 components: - - rot: 3.141592653589793 rad - pos: 44.5,3.5 + - pos: -12.5,-0.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6220 + - uid: 5543 components: - - rot: 1.5707963267948966 rad - pos: 44.5,3.5 + - pos: -1.5,-0.5 parent: 31 type: Transform - - color: '#990000FF' + - enabled: False + type: AmbientSound + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6221 + - uid: 5546 components: - rot: 1.5707963267948966 rad - pos: 45.5,3.5 + pos: -17.5,-1.5 parent: 31 type: Transform - - color: '#990000FF' + - enabled: False + type: AmbientSound + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6222 + - uid: 5605 components: - - rot: 1.5707963267948966 rad - pos: 46.5,3.5 + - pos: 16.5,-0.5 parent: 31 type: Transform - - color: '#990000FF' + - enabled: False + type: AmbientSound + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6224 + - uid: 5606 components: - - rot: 1.5707963267948966 rad - pos: 48.5,3.5 + - rot: 3.141592653589793 rad + pos: 12.5,-9.5 parent: 31 type: Transform - - color: '#990000FF' + - ShutdownSubscribers: + - 11002 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6225 + - uid: 5638 components: - - rot: 1.5707963267948966 rad - pos: 45.5,2.5 + - rot: 3.141592653589793 rad + pos: 14.5,-16.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6227 + - uid: 5666 components: - - rot: 1.5707963267948966 rad - pos: 47.5,2.5 + - rot: -1.5707963267948966 rad + pos: 23.5,-5.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6229 + - uid: 5698 components: - - pos: 48.5,-0.5 + - rot: -1.5707963267948966 rad + pos: 9.5,-25.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6233 + - uid: 5785 components: - - pos: 48.5,-1.5 + - rot: 3.141592653589793 rad + pos: 15.5,-31.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6234 + - uid: 5848 components: - - pos: 49.5,2.5 + - rot: 1.5707963267948966 rad + pos: 3.5,19.5 parent: 31 type: Transform - - color: '#990000FF' + - enabled: False + type: AmbientSound + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6235 + - uid: 5868 components: - - pos: 49.5,1.5 + - rot: 3.141592653589793 rad + pos: 3.5,24.5 parent: 31 type: Transform - - color: '#990000FF' + - enabled: False + type: AmbientSound + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6236 + - uid: 5869 components: - - pos: 49.5,0.5 + - rot: 1.5707963267948966 rad + pos: -1.5,25.5 parent: 31 type: Transform - - color: '#990000FF' + - enabled: False + type: AmbientSound + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6237 + - uid: 5870 components: - - pos: 49.5,-0.5 + - pos: 4.5,30.5 parent: 31 type: Transform - - color: '#990000FF' + - enabled: False + type: AmbientSound + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6238 + - uid: 5928 components: - - pos: 49.5,-1.5 + - rot: 1.5707963267948966 rad + pos: -25.5,24.5 parent: 31 type: Transform - - color: '#990000FF' + - enabled: False + type: AmbientSound + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6239 + - uid: 5929 components: - - pos: 48.5,0.5 + - rot: -1.5707963267948966 rad + pos: -21.5,23.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6240 + - uid: 5941 components: - rot: -1.5707963267948966 rad - pos: 42.5,3.5 + pos: 13.5,14.5 parent: 31 type: Transform - - color: '#990000FF' + - enabled: False + type: AmbientSound + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6254 + - uid: 5950 components: - - rot: 3.141592653589793 rad - pos: 32.5,9.5 + - rot: 1.5707963267948966 rad + pos: 7.5,9.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6260 + - uid: 6018 components: - - pos: 22.5,14.5 + - rot: 1.5707963267948966 rad + pos: -12.5,15.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6263 + - uid: 6033 components: - - pos: 38.5,2.5 + - pos: -12.5,19.5 parent: 31 type: Transform - - color: '#990000FF' + - enabled: False + type: AmbientSound + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6264 + - uid: 6041 components: - - pos: 38.5,1.5 + - rot: -1.5707963267948966 rad + pos: -0.5,7.5 parent: 31 type: Transform - - color: '#990000FF' + - enabled: False + type: AmbientSound + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6269 + - uid: 6043 components: - rot: 3.141592653589793 rad - pos: 37.5,4.5 + pos: -2.5,4.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6270 + - uid: 6071 components: - rot: 3.141592653589793 rad - pos: 37.5,3.5 + pos: -11.5,4.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6271 + - uid: 6118 components: - - rot: 3.141592653589793 rad - pos: 37.5,2.5 + - rot: 1.5707963267948966 rad + pos: -27.5,8.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6272 + - uid: 6119 components: - rot: 3.141592653589793 rad - pos: 37.5,1.5 + pos: -25.5,4.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6273 + - uid: 6138 components: - rot: 3.141592653589793 rad - pos: 37.5,0.5 + pos: -29.5,4.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6287 + - uid: 6151 components: - - rot: -1.5707963267948966 rad - pos: 50.5,-2.5 + - rot: 1.5707963267948966 rad + pos: -36.5,5.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True + - enabled: False type: AmbientSound - - uid: 6295 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6169 components: - - pos: 48.5,-7.5 + - rot: 1.5707963267948966 rad + pos: -36.5,-6.5 parent: 31 type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - enabled: True + - enabled: False type: AmbientSound - - uid: 6315 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6184 components: - - rot: 1.5707963267948966 rad - pos: -7.5,10.5 + - rot: 3.141592653589793 rad + pos: 34.5,4.5 parent: 31 type: Transform - - color: '#990000FF' + - enabled: False + type: AmbientSound + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6349 + - uid: 6197 components: - - rot: 1.5707963267948966 rad - pos: 44.5,9.5 + - rot: 3.141592653589793 rad + pos: 39.5,4.5 parent: 31 type: Transform - - color: '#990000FF' + - enabled: False + type: AmbientSound + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6351 + - uid: 6262 components: - - rot: -1.5707963267948966 rad - pos: 50.5,15.5 + - rot: 3.141592653589793 rad + pos: 20.5,9.5 parent: 31 type: Transform - - enabled: True + - enabled: False type: AmbientSound - - uid: 6353 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6268 components: - rot: -1.5707963267948966 rad - pos: 53.5,15.5 + pos: 38.5,-0.5 parent: 31 type: Transform - - enabled: True + - enabled: False type: AmbientSound - - uid: 6363 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6275 components: - - pos: 37.5,21.5 + - rot: 3.141592653589793 rad + pos: 32.5,-2.5 parent: 31 type: Transform - - enabled: True + - enabled: False type: AmbientSound - - uid: 6392 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6294 components: - - pos: 43.5,8.5 + - pos: 51.5,-4.5 parent: 31 type: Transform - - color: '#990000FF' + - ShutdownSubscribers: + - 5107 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6393 + - uid: 6533 components: - - rot: 1.5707963267948966 rad - pos: 45.5,7.5 + - rot: -1.5707963267948966 rad + pos: 49.5,7.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6394 + - uid: 7099 components: - - rot: 1.5707963267948966 rad - pos: 47.5,7.5 + - pos: 32.5,11.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6411 + - uid: 7185 components: - - rot: 1.5707963267948966 rad - pos: 45.5,9.5 + - rot: -1.5707963267948966 rad + pos: 56.5,1.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True + - enabled: False type: AmbientSound - - uid: 6441 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 7335 components: - rot: -1.5707963267948966 rad - pos: 50.5,16.5 + pos: -3.5,-21.5 parent: 31 type: Transform - - enabled: True + - ShutdownSubscribers: + - 7345 + type: DeviceNetwork + - enabled: False type: AmbientSound - - uid: 6476 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 7746 components: - - rot: -1.5707963267948966 rad - pos: 51.5,16.5 + - pos: -35.5,14.5 parent: 31 type: Transform - - enabled: True + - enabled: False type: AmbientSound - - uid: 6478 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8384 components: - rot: 3.141592653589793 rad - pos: 54.5,16.5 + pos: 47.5,-11.5 parent: 31 type: Transform - - enabled: True + - ShutdownSubscribers: + - 5107 + type: DeviceNetwork + - enabled: False type: AmbientSound - - uid: 6479 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8417 components: - - rot: -1.5707963267948966 rad - pos: 52.5,16.5 + - rot: 3.141592653589793 rad + pos: 8.5,17.5 parent: 31 type: Transform - - enabled: True + - enabled: False type: AmbientSound - - uid: 6534 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8794 components: - rot: 1.5707963267948966 rad - pos: 46.5,9.5 + pos: -16.5,11.5 parent: 31 type: Transform - - color: '#990000FF' + - enabled: False + type: AmbientSound + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6538 + - uid: 8873 components: - rot: 1.5707963267948966 rad - pos: 48.5,7.5 + pos: 3.5,13.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6539 + - uid: 8875 components: - - rot: 1.5707963267948966 rad - pos: 46.5,7.5 + - rot: 3.141592653589793 rad + pos: 28.5,4.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6549 + - uid: 8880 components: - - pos: 46.5,18.5 + - pos: 46.5,3.5 parent: 31 type: Transform - - enabled: True + - enabled: False type: AmbientSound - - uid: 6553 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8944 components: - - pos: 47.5,18.5 + - rot: 3.141592653589793 rad + pos: 10.5,4.5 parent: 31 type: Transform - - enabled: True + - enabled: False type: AmbientSound - - uid: 6572 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10376 components: - - rot: -1.5707963267948966 rad - pos: 24.5,16.5 + - rot: 3.141592653589793 rad + pos: 4.5,-30.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6573 + - uid: 10377 components: - - rot: -1.5707963267948966 rad - pos: 25.5,16.5 + - rot: 3.141592653589793 rad + pos: 0.5,-30.5 parent: 31 type: Transform + - ShutdownSubscribers: + - 7904 + type: DeviceNetwork + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 6577 + - uid: 10386 components: - - pos: 37.5,22.5 + - rot: 1.5707963267948966 rad + pos: -25.5,-3.5 parent: 31 type: Transform - - enabled: True + - enabled: False type: AmbientSound - - uid: 6617 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10407 components: - - rot: -1.5707963267948966 rad - pos: 50.5,17.5 + - rot: 3.141592653589793 rad + pos: -24.5,-14.5 parent: 31 type: Transform - - enabled: True + - ShutdownSubscribers: + - 10238 + type: DeviceNetwork + - enabled: False type: AmbientSound - - uid: 6633 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10424 components: - - rot: -1.5707963267948966 rad - pos: 51.5,15.5 + - rot: 3.141592653589793 rad + pos: -8.5,-30.5 parent: 31 type: Transform - - enabled: True + - ShutdownSubscribers: + - 10371 + type: DeviceNetwork + - enabled: False type: AmbientSound - - uid: 6845 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10427 components: - - rot: -1.5707963267948966 rad - pos: 52.5,15.5 + - rot: 1.5707963267948966 rad + pos: -16.5,-27.5 parent: 31 type: Transform - - enabled: True + - ShutdownSubscribers: + - 10373 + type: DeviceNetwork + - enabled: False type: AmbientSound - - uid: 6853 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10929 components: - - pos: 54.5,17.5 + - rot: -1.5707963267948966 rad + pos: 56.5,-9.5 parent: 31 type: Transform - - enabled: True + - ShutdownSubscribers: + - 5107 + type: DeviceNetwork + - enabled: False type: AmbientSound - - uid: 6858 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10930 components: - - pos: 46.5,17.5 + - rot: -1.5707963267948966 rad + pos: 58.5,-5.5 parent: 31 type: Transform - - enabled: True + - ShutdownSubscribers: + - 5107 + type: DeviceNetwork + - enabled: False type: AmbientSound - - uid: 6879 + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 95 components: - - pos: 47.5,17.5 + - rot: 3.141592653589793 rad + pos: 15.5,-11.5 parent: 31 type: Transform - - enabled: True + - enabled: False type: AmbientSound - - uid: 6895 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 753 components: - rot: -1.5707963267948966 rad - pos: 23.5,16.5 + pos: 22.5,-11.5 parent: 31 type: Transform - - color: '#0055CCFF' + - enabled: False + type: AmbientSound + - color: '#990000FF' type: AtmosPipeColor - - uid: 6896 + - uid: 867 components: - - rot: -1.5707963267948966 rad - pos: 25.5,17.5 + - rot: 3.141592653589793 rad + pos: 7.5,23.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 6901 + - uid: 1029 components: - rot: -1.5707963267948966 rad - pos: 51.5,17.5 + pos: 3.5,-16.5 parent: 31 type: Transform - - enabled: True + - enabled: False type: AmbientSound - - uid: 6907 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1032 components: - rot: 3.141592653589793 rad - pos: 48.5,18.5 + pos: 10.5,23.5 parent: 31 type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - enabled: True + - enabled: False type: AmbientSound - - uid: 6945 - components: - - pos: 48.5,1.5 - parent: 31 - type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 7072 + - uid: 1140 components: - rot: -1.5707963267948966 rad - pos: 49.5,2.5 + pos: -20.5,-11.5 parent: 31 type: Transform - - color: '#0055CCFF' + - enabled: False + type: AmbientSound + - color: '#990000FF' type: AtmosPipeColor - - uid: 7073 + - uid: 1542 components: - - rot: -1.5707963267948966 rad - pos: 50.5,2.5 + - pos: 35.5,4.5 parent: 31 type: Transform - - color: '#0055CCFF' + - enabled: False + type: AmbientSound + - color: '#990000FF' type: AtmosPipeColor - - uid: 7075 + - uid: 2208 components: - - rot: 3.141592653589793 rad - pos: 33.5,10.5 + - pos: -38.5,18.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 7076 + - uid: 3117 components: - - rot: 1.5707963267948966 rad - pos: 33.5,10.5 + - pos: 21.5,12.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True + - enabled: False type: AmbientSound - - uid: 7079 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3118 components: - - pos: 32.5,19.5 + - rot: -1.5707963267948966 rad + pos: 26.5,10.5 parent: 31 type: Transform - - enabled: True + - enabled: False type: AmbientSound - - uid: 7132 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3274 components: - - pos: 34.5,20.5 + - pos: 41.5,4.5 parent: 31 type: Transform - - enabled: True + - enabled: False type: AmbientSound - - uid: 7133 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3840 components: - - pos: 32.5,18.5 + - rot: 3.141592653589793 rad + pos: 18.5,-18.5 parent: 31 type: Transform - - enabled: True + - enabled: False type: AmbientSound - - uid: 7179 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4279 components: - rot: -1.5707963267948966 rad - pos: 52.5,2.5 + pos: 26.5,17.5 parent: 31 type: Transform - - color: '#0055CCFF' + - ShutdownSubscribers: + - 7104 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#990000FF' type: AtmosPipeColor - - uid: 7180 + - uid: 4436 components: - - rot: -1.5707963267948966 rad - pos: 51.5,2.5 + - rot: 3.141592653589793 rad + pos: -3.5,-17.5 parent: 31 type: Transform - - color: '#0055CCFF' + - enabled: False + type: AmbientSound + - color: '#990000FF' type: AtmosPipeColor - - uid: 7182 + - uid: 4486 components: - - rot: -1.5707963267948966 rad - pos: 54.5,2.5 + - rot: 3.141592653589793 rad + pos: -37.5,-11.5 parent: 31 type: Transform - - color: '#0055CCFF' + - enabled: False + type: AmbientSound + - color: '#990000FF' type: AtmosPipeColor - - uid: 7184 + - uid: 4701 components: - - pos: 55.5,3.5 + - rot: -1.5707963267948966 rad + pos: -7.5,21.5 parent: 31 type: Transform - - color: '#0055CCFF' + - enabled: False + type: AmbientSound + - color: '#990000FF' type: AtmosPipeColor - - uid: 7205 + - uid: 4783 components: - rot: -1.5707963267948966 rad - pos: 55.5,3.5 + pos: 9.5,-23.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 7206 + - uid: 5332 components: - rot: -1.5707963267948966 rad - pos: 54.5,3.5 + pos: 3.5,-6.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 7207 + - uid: 5473 components: - - rot: -1.5707963267948966 rad - pos: 52.5,3.5 + - rot: 3.141592653589793 rad + pos: 3.5,2.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 7208 + - uid: 5474 components: - - rot: -1.5707963267948966 rad - pos: 50.5,3.5 + - pos: 7.5,4.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 7210 + - uid: 5477 components: - - rot: -1.5707963267948966 rad - pos: 51.5,3.5 + - pos: 21.5,4.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 7212 + - uid: 5478 components: - - rot: -1.5707963267948966 rad - pos: 53.5,2.5 + - rot: 3.141592653589793 rad + pos: 16.5,10.5 parent: 31 type: Transform - - color: '#0055CCFF' + - enabled: False + type: AmbientSound + - color: '#990000FF' type: AtmosPipeColor - - uid: 7218 + - uid: 5496 components: - - rot: -1.5707963267948966 rad - pos: 53.5,3.5 + - rot: 3.141592653589793 rad + pos: 9.5,-0.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 7267 + - uid: 5541 components: - - rot: -1.5707963267948966 rad - pos: -2.5,-30.5 + - rot: 3.141592653589793 rad + pos: -13.5,-0.5 parent: 31 type: Transform - - color: '#0055CCFF' + - enabled: False + type: AmbientSound + - color: '#990000FF' type: AtmosPipeColor - - uid: 7383 + - uid: 5544 components: - rot: 3.141592653589793 rad - pos: -13.5,-23.5 + pos: -8.5,-0.5 parent: 31 type: Transform - - enabled: True + - enabled: False type: AmbientSound - - uid: 7384 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5545 components: - - rot: 3.141592653589793 rad - pos: -13.5,-24.5 + - rot: 1.5707963267948966 rad + pos: -19.5,0.5 parent: 31 type: Transform - - uid: 7385 + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5597 components: - - rot: 3.141592653589793 rad - pos: -14.5,-23.5 + - pos: 17.5,-1.5 parent: 31 type: Transform - - enabled: True + - enabled: False type: AmbientSound - - uid: 7386 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5607 components: - rot: 3.141592653589793 rad - pos: -14.5,-24.5 - parent: 31 - type: Transform - - uid: 7393 - components: - - pos: -16.5,-21.5 + pos: 12.5,-11.5 parent: 31 type: Transform - - color: '#0055CCFF' + - ShutdownSubscribers: + - 11002 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#990000FF' type: AtmosPipeColor - - uid: 7394 + - uid: 5637 components: - - pos: -16.5,-23.5 + - rot: 1.5707963267948966 rad + pos: 14.5,-14.5 parent: 31 type: Transform - - color: '#0055CCFF' + - enabled: False + type: AmbientSound + - color: '#990000FF' type: AtmosPipeColor - - uid: 7395 + - uid: 5665 components: - - pos: -16.5,-22.5 + - rot: -1.5707963267948966 rad + pos: 22.5,-6.5 parent: 31 type: Transform - - color: '#0055CCFF' + - enabled: False + type: AmbientSound + - color: '#990000FF' type: AtmosPipeColor - - uid: 7396 + - uid: 5704 components: - - pos: -16.5,-24.5 + - rot: -1.5707963267948966 rad + pos: 3.5,-28.5 parent: 31 type: Transform - - color: '#0055CCFF' + - enabled: False + type: AmbientSound + - color: '#990000FF' type: AtmosPipeColor - - uid: 7468 + - uid: 5765 components: - rot: -1.5707963267948966 rad - pos: -4.5,-30.5 + pos: -7.5,13.5 parent: 31 type: Transform - - color: '#0055CCFF' + - enabled: False + type: AmbientSound + - color: '#990000FF' type: AtmosPipeColor - - uid: 7557 + - uid: 5849 components: - - pos: -24.5,13.5 + - rot: -1.5707963267948966 rad + pos: 3.5,18.5 parent: 31 type: Transform - - color: '#0055CCFF' + - enabled: False + type: AmbientSound + - color: '#990000FF' type: AtmosPipeColor - - uid: 7608 + - uid: 5864 components: - rot: 1.5707963267948966 rad - pos: -22.5,-22.5 + pos: -1.5,24.5 parent: 31 type: Transform - - color: '#0055CCFF' + - enabled: False + type: AmbientSound + - color: '#990000FF' type: AtmosPipeColor - - uid: 7727 + - uid: 5865 components: - - rot: 3.141592653589793 rad - pos: -37.5,4.5 + - rot: -1.5707963267948966 rad + pos: 3.5,23.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 7728 + - uid: 5871 components: - - rot: 3.141592653589793 rad - pos: -37.5,5.5 + - pos: 2.5,30.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 7729 + - uid: 5883 components: - - rot: 3.141592653589793 rad - pos: -37.5,6.5 + - rot: -1.5707963267948966 rad + pos: 9.5,17.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 7730 + - uid: 5951 components: - - rot: 3.141592653589793 rad - pos: -35.5,6.5 + - pos: 9.5,9.5 parent: 31 type: Transform - - color: '#0055CCFF' + - enabled: False + type: AmbientSound + - color: '#990000FF' type: AtmosPipeColor - - uid: 7731 + - uid: 6024 components: - - rot: 3.141592653589793 rad - pos: -35.5,7.5 + - rot: 1.5707963267948966 rad + pos: -12.5,14.5 parent: 31 type: Transform - - color: '#0055CCFF' + - enabled: False + type: AmbientSound + - color: '#990000FF' type: AtmosPipeColor - - uid: 7732 + - uid: 6032 components: - - rot: 3.141592653589793 rad - pos: -35.5,8.5 + - rot: 1.5707963267948966 rad + pos: -12.5,20.5 parent: 31 type: Transform - - color: '#0055CCFF' + - enabled: False + type: AmbientSound + - color: '#990000FF' type: AtmosPipeColor - - uid: 7733 + - uid: 6042 components: - - rot: 3.141592653589793 rad - pos: -35.5,9.5 + - rot: -1.5707963267948966 rad + pos: -0.5,8.5 parent: 31 type: Transform - - color: '#0055CCFF' + - enabled: False + type: AmbientSound + - color: '#990000FF' type: AtmosPipeColor - - uid: 7734 + - uid: 6044 components: - - rot: 3.141592653589793 rad - pos: -35.5,10.5 + - pos: -1.5,4.5 parent: 31 type: Transform - - color: '#0055CCFF' + - enabled: False + type: AmbientSound + - color: '#990000FF' type: AtmosPipeColor - - uid: 7735 + - uid: 6080 components: - - rot: 3.141592653589793 rad - pos: -35.5,11.5 + - pos: -14.5,4.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True + - enabled: False type: AmbientSound - - uid: 7736 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6117 components: - - rot: 3.141592653589793 rad - pos: -35.5,12.5 + - pos: -27.5,10.5 parent: 31 type: Transform - - color: '#0055CCFF' + - enabled: False + type: AmbientSound + - color: '#990000FF' type: AtmosPipeColor - - uid: 7737 + - uid: 6120 components: - - rot: 3.141592653589793 rad - pos: -35.5,13.5 + - pos: -22.5,4.5 parent: 31 type: Transform - - color: '#0055CCFF' + - enabled: False + type: AmbientSound + - color: '#990000FF' type: AtmosPipeColor - - uid: 7738 + - uid: 6137 components: - - rot: 3.141592653589793 rad - pos: -37.5,7.5 + - pos: -30.5,4.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 7739 + - uid: 6152 components: - - rot: 3.141592653589793 rad - pos: -37.5,8.5 + - pos: -36.5,4.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 7740 + - uid: 6168 components: - rot: 3.141592653589793 rad - pos: -37.5,9.5 + pos: -36.5,-0.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 7741 + - uid: 6267 components: - rot: 3.141592653589793 rad - pos: -37.5,10.5 + pos: 39.5,-0.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 7742 + - uid: 6276 components: - rot: 3.141592653589793 rad - pos: -37.5,11.5 + pos: 33.5,-1.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 7743 + - uid: 6413 components: - - rot: 3.141592653589793 rad - pos: -37.5,12.5 + - rot: -1.5707963267948966 rad + pos: 47.5,9.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 7744 + - uid: 6552 components: - - rot: 3.141592653589793 rad - pos: -37.5,13.5 + - rot: -1.5707963267948966 rad + pos: 34.5,9.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 8415 + - uid: 6581 components: - - pos: 7.5,18.5 + - rot: -1.5707963267948966 rad + pos: 21.5,15.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 8776 + - uid: 7211 components: - - rot: 1.5707963267948966 rad - pos: -10.5,10.5 + - rot: -1.5707963267948966 rad + pos: 56.5,3.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 8777 + - uid: 7673 components: - rot: 1.5707963267948966 rad - pos: -11.5,10.5 + pos: 7.5,-13.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 8778 + - uid: 7745 components: - - rot: 1.5707963267948966 rad - pos: -12.5,10.5 + - pos: -37.5,14.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 8779 + - uid: 8416 components: - - rot: 1.5707963267948966 rad - pos: -13.5,10.5 + - pos: 7.5,19.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 8780 + - uid: 8438 components: - - rot: 1.5707963267948966 rad - pos: -14.5,10.5 + - rot: -1.5707963267948966 rad + pos: -3.5,-19.5 parent: 31 type: Transform + - ShutdownSubscribers: + - 7345 + type: DeviceNetwork + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 8781 + - uid: 8795 components: - rot: 1.5707963267948966 rad - pos: -15.5,10.5 + pos: -16.5,10.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 8785 + - uid: 8874 components: - rot: -1.5707963267948966 rad - pos: -7.5,11.5 + pos: 3.5,12.5 parent: 31 type: Transform - - color: '#0055CCFF' + - enabled: False + type: AmbientSound + - color: '#990000FF' type: AtmosPipeColor - - uid: 8786 + - uid: 8876 components: - - rot: -1.5707963267948966 rad - pos: -8.5,11.5 + - pos: 26.5,4.5 parent: 31 type: Transform - - color: '#0055CCFF' + - enabled: False + type: AmbientSound + - color: '#990000FF' type: AtmosPipeColor - - uid: 8787 + - uid: 8879 components: - - rot: -1.5707963267948966 rad - pos: -9.5,11.5 + - rot: 3.141592653589793 rad + pos: 47.5,2.5 parent: 31 type: Transform - - color: '#0055CCFF' + - enabled: False + type: AmbientSound + - color: '#990000FF' type: AtmosPipeColor - - uid: 8788 + - uid: 10252 components: - rot: -1.5707963267948966 rad - pos: -10.5,11.5 + pos: -36.5,-5.5 parent: 31 type: Transform - - color: '#0055CCFF' + - enabled: False + type: AmbientSound + - color: '#990000FF' type: AtmosPipeColor - - uid: 8789 + - uid: 10375 components: - - rot: -1.5707963267948966 rad - pos: -11.5,11.5 + - rot: 1.5707963267948966 rad + pos: -1.5,-28.5 parent: 31 type: Transform - - color: '#0055CCFF' + - ShutdownSubscribers: + - 7904 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#990000FF' type: AtmosPipeColor - - uid: 8790 + - uid: 10385 components: - rot: -1.5707963267948966 rad - pos: -12.5,11.5 + pos: -22.5,-3.5 parent: 31 type: Transform - - color: '#0055CCFF' + - enabled: False + type: AmbientSound + - color: '#990000FF' type: AtmosPipeColor - - uid: 8791 + - uid: 10406 components: - - rot: -1.5707963267948966 rad - pos: -13.5,11.5 + - rot: 3.141592653589793 rad + pos: -23.5,-13.5 parent: 31 type: Transform - - color: '#0055CCFF' + - ShutdownSubscribers: + - 10238 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#990000FF' type: AtmosPipeColor - - uid: 8792 + - uid: 10420 components: - - rot: -1.5707963267948966 rad - pos: -14.5,11.5 + - rot: 1.5707963267948966 rad + pos: -8.5,-19.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True + - ShutdownSubscribers: + - 7345 + type: DeviceNetwork + - enabled: False type: AmbientSound - - uid: 8793 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10425 components: - - rot: -1.5707963267948966 rad - pos: -15.5,11.5 + - rot: 3.141592653589793 rad + pos: -7.5,-27.5 parent: 31 type: Transform - - color: '#0055CCFF' + - ShutdownSubscribers: + - 10371 + type: DeviceNetwork + - enabled: False + type: AmbientSound + - color: '#990000FF' type: AtmosPipeColor - - uid: 9176 + - uid: 10426 components: - - pos: -37.5,-0.5 + - rot: 1.5707963267948966 rad + pos: -14.5,-26.5 parent: 31 type: Transform + - ShutdownSubscribers: + - 10373 + type: DeviceNetwork + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 9177 + - uid: 10495 components: - - pos: -37.5,-2.5 + - rot: 3.141592653589793 rad + pos: -32.5,-14.5 parent: 31 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 9178 + - uid: 10906 components: - - pos: -37.5,-3.5 + - rot: 3.141592653589793 rad + pos: 49.5,-4.5 parent: 31 type: Transform + - ShutdownSubscribers: + - 5107 + type: DeviceNetwork + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 9179 + - uid: 10907 components: - - pos: -37.5,-5.5 + - rot: 3.141592653589793 rad + pos: 56.5,-4.5 parent: 31 type: Transform + - ShutdownSubscribers: + - 5107 + type: DeviceNetwork + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 9199 + - uid: 10908 components: - - pos: -37.5,-1.5 + - rot: -1.5707963267948966 rad + pos: 56.5,-7.5 parent: 31 type: Transform + - ShutdownSubscribers: + - 5107 + type: DeviceNetwork + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 9201 + - uid: 10909 components: - - pos: -37.5,-4.5 + - rot: 3.141592653589793 rad + pos: 53.5,-11.5 parent: 31 type: Transform + - ShutdownSubscribers: + - 5107 + type: DeviceNetwork + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 9261 +- proto: Gauze + entities: + - uid: 1407 components: - - pos: -22.5,-17.5 + - pos: 26.671059,21.801102 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9262 + - uid: 10830 + components: + - pos: 12.447606,-4.278471 + parent: 31 + type: Transform +- proto: GlowstickBase + entities: + - uid: 8848 components: - rot: 1.5707963267948966 rad - pos: -20.5,-22.5 + pos: 27.737583,15.662895 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 9286 + - uid: 8999 components: - - pos: -32.5,4.5 + - rot: 1.5707963267948966 rad + pos: 27.649036,15.662895 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 9287 + - uid: 9037 components: - - pos: -32.5,3.5 + - rot: 1.5707963267948966 rad + pos: 27.826128,15.662895 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 9288 +- proto: GlowstickBlue + entities: + - uid: 10987 components: - - pos: -32.5,2.5 + - pos: 52.729786,-1.2094907 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9289 +- proto: GlowstickPurple + entities: + - uid: 10986 components: - - pos: -32.5,1.5 + - pos: -14.203654,-39.5871 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9290 +- proto: GoldOre1 + entities: + - uid: 10814 components: - - pos: -32.5,0.5 + - pos: 4.974391,-33.266117 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9291 +- proto: GravityGenerator + entities: + - uid: 7696 components: - - pos: -32.5,-0.5 + - pos: 58.5,-2.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9292 +- proto: Grille + entities: + - uid: 47 components: - - pos: -32.5,-1.5 + - pos: 19.5,20.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9293 + - uid: 64 + components: + - pos: 5.5,-4.5 + parent: 31 + type: Transform + - uid: 77 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,-14.5 + parent: 31 + type: Transform + - uid: 78 + components: + - pos: 5.5,-5.5 + parent: 31 + type: Transform + - uid: 101 components: - - pos: -32.5,-2.5 + - pos: -48.5,-12.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9294 + - uid: 138 components: - - pos: -32.5,-3.5 + - pos: -49.5,-12.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9295 + - uid: 155 components: - - pos: -32.5,-4.5 + - pos: 44.5,-20.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9296 + - uid: 156 components: - - pos: -32.5,-5.5 + - pos: 45.5,-19.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9298 + - uid: 249 components: - - rot: -1.5707963267948966 rad - pos: -34.5,-6.5 + - pos: 11.5,-16.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9299 + - uid: 255 components: - - rot: -1.5707963267948966 rad - pos: -33.5,-6.5 + - pos: 11.5,-6.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9300 + - uid: 267 components: - - rot: 3.141592653589793 rad - pos: -32.5,-7.5 + - pos: -50.5,-8.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9301 + - uid: 338 components: - - rot: 3.141592653589793 rad - pos: -32.5,-8.5 + - pos: -8.5,6.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9302 + - uid: 360 components: - - rot: 3.141592653589793 rad - pos: -32.5,-9.5 + - pos: -13.5,6.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9303 + - uid: 469 components: - - rot: 3.141592653589793 rad - pos: -32.5,-10.5 + - pos: -35.5,11.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9304 + - uid: 526 components: - rot: 1.5707963267948966 rad - pos: -31.5,-11.5 + pos: -15.5,-0.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9305 + - uid: 571 components: - - rot: 1.5707963267948966 rad - pos: -30.5,-11.5 + - pos: 2.5,22.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9306 + - uid: 653 components: - - rot: 1.5707963267948966 rad - pos: -29.5,-11.5 + - pos: 39.5,26.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9307 + - uid: 655 components: - - rot: 1.5707963267948966 rad - pos: -28.5,-11.5 + - pos: 35.5,26.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9308 + - uid: 657 components: - - rot: 1.5707963267948966 rad - pos: -27.5,-11.5 + - pos: -37.5,11.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9309 + - uid: 665 components: - - rot: 1.5707963267948966 rad - pos: -26.5,-11.5 + - pos: -41.5,5.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9310 + - uid: 711 components: - - rot: 1.5707963267948966 rad - pos: -25.5,-11.5 + - pos: 17.5,20.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9315 + - uid: 749 components: - - rot: -1.5707963267948966 rad - pos: -23.5,-13.5 + - pos: -44.5,1.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 9316 + - uid: 751 components: - - rot: 3.141592653589793 rad - pos: -24.5,-12.5 + - pos: -42.5,1.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9318 + - uid: 754 components: - - rot: 3.141592653589793 rad - pos: -22.5,-14.5 + - pos: 36.5,26.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9319 + - uid: 757 components: - - rot: 3.141592653589793 rad - pos: -22.5,-15.5 + - rot: 1.5707963267948966 rad + pos: 42.5,-14.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9320 + - uid: 772 components: - - rot: 3.141592653589793 rad - pos: -22.5,-16.5 + - pos: -42.5,7.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9349 + - uid: 801 components: - - pos: -25.5,17.5 + - pos: -6.5,-22.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9350 + - uid: 811 components: - - pos: -25.5,18.5 + - pos: -40.5,3.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9351 + - uid: 835 components: - - rot: -1.5707963267948966 rad - pos: -24.5,19.5 + - pos: 52.5,-2.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9352 + - uid: 855 components: - - rot: -1.5707963267948966 rad - pos: -23.5,19.5 + - pos: 52.5,-6.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9534 + - uid: 856 components: - - rot: -1.5707963267948966 rad - pos: 18.5,-22.5 + - pos: -42.5,3.5 parent: 31 type: Transform - - uid: 9584 + - uid: 858 components: - - pos: 18.5,-20.5 + - pos: -44.5,9.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 9789 + - uid: 877 components: - - pos: -11.5,-21.5 + - pos: -4.5,32.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 9790 + - uid: 904 components: - - pos: -11.5,-22.5 + - pos: 40.5,20.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 9791 + - uid: 937 components: - - pos: -11.5,-23.5 + - pos: 19.5,21.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 9792 + - uid: 1016 components: - - pos: -11.5,-24.5 + - pos: 4.5,22.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 9793 + - uid: 1022 components: - - pos: -11.5,-25.5 + - pos: -40.5,1.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 9794 + - uid: 1106 components: - - pos: -11.5,-26.5 + - pos: 44.5,20.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 9795 + - uid: 1131 components: - - rot: -1.5707963267948966 rad - pos: -10.5,-27.5 + - pos: -41.5,4.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 9796 + - uid: 1133 components: - rot: -1.5707963267948966 rad - pos: -8.5,-27.5 + pos: 18.5,18.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 9797 + - uid: 1180 components: - - rot: -1.5707963267948966 rad - pos: -7.5,-27.5 + - pos: -41.5,9.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 9798 + - uid: 1192 components: - - rot: -1.5707963267948966 rad - pos: -6.5,-27.5 + - pos: -19.5,2.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 9802 + - uid: 1193 components: - - pos: -5.5,-28.5 + - pos: -18.5,2.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 9803 + - uid: 1225 components: - - pos: -5.5,-29.5 + - pos: 25.5,10.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 9809 + - uid: 1237 components: - - rot: -1.5707963267948966 rad - pos: 0.5,-23.5 + - pos: -42.5,9.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9810 + - uid: 1267 components: - - rot: -1.5707963267948966 rad - pos: 1.5,-23.5 + - pos: -17.5,-19.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9812 + - uid: 1268 components: - - rot: -1.5707963267948966 rad - pos: -1.5,-27.5 + - pos: 36.5,-38.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 9813 + - uid: 1278 components: - - rot: -1.5707963267948966 rad - pos: -2.5,-27.5 + - pos: -10.5,19.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 9814 + - uid: 1396 components: - - rot: -1.5707963267948966 rad - pos: -3.5,-27.5 + - pos: 10.5,31.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 9816 + - uid: 1414 components: - - rot: 3.141592653589793 rad - pos: -4.5,-29.5 + - pos: -9.5,7.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 9819 + - uid: 1416 components: - - pos: -0.5,-24.5 + - pos: -13.5,9.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9820 + - uid: 1430 components: - - pos: -0.5,-25.5 + - pos: -43.5,3.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9821 + - uid: 1436 components: - - pos: -0.5,-26.5 + - rot: 3.141592653589793 rad + pos: 23.5,-8.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9822 + - uid: 1443 components: - - rot: -1.5707963267948966 rad - pos: -5.5,-28.5 + - pos: 37.5,26.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 9823 + - uid: 1447 components: - - rot: -1.5707963267948966 rad - pos: -6.5,-28.5 + - pos: 20.5,-10.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 9824 + - uid: 1451 components: - - rot: -1.5707963267948966 rad - pos: -7.5,-28.5 + - pos: -44.5,3.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- proto: GasPipeTJunction - entities: - - uid: 53 + - uid: 1452 components: - - rot: 3.141592653589793 rad - pos: 10.5,25.5 + - pos: -41.5,1.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 97 + - uid: 1453 components: - - rot: -1.5707963267948966 rad - pos: 4.5,-5.5 + - pos: -40.5,7.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 577 + - uid: 1454 components: - - rot: 1.5707963267948966 rad - pos: 2.5,-28.5 + - pos: -43.5,7.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1231 + - uid: 1455 components: - - rot: -1.5707963267948966 rad - pos: 39.5,5.5 + - pos: -40.5,9.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1290 + - uid: 1456 components: - - rot: 3.141592653589793 rad - pos: 31.5,8.5 + - pos: -41.5,3.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1723 + - uid: 1460 components: - - pos: 37.5,5.5 + - pos: -27.5,6.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 3676 + - uid: 1462 components: - - rot: -1.5707963267948966 rad - pos: 33.5,9.5 + - pos: -29.5,6.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4374 + - uid: 1468 components: - - rot: 1.5707963267948966 rad - pos: 17.5,-21.5 + - pos: 20.5,-9.5 parent: 31 type: Transform - - uid: 4387 + - uid: 1489 components: - - rot: -1.5707963267948966 rad - pos: 19.5,-19.5 + - pos: -11.5,8.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 4708 + - uid: 1491 components: - - rot: -1.5707963267948966 rad - pos: 33.5,8.5 + - pos: 13.5,-4.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 4731 + - uid: 1522 components: - - pos: 38.5,3.5 + - pos: 46.5,-19.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5064 + - uid: 1526 components: - - rot: 3.141592653589793 rad - pos: 7.5,25.5 + - pos: 23.5,21.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5342 + - uid: 1529 components: - - rot: -1.5707963267948966 rad - pos: 4.5,-17.5 + - pos: 44.5,-21.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5345 + - uid: 1547 components: - - rot: -1.5707963267948966 rad - pos: 2.5,-19.5 + - pos: 42.5,20.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5377 + - uid: 1548 components: - - rot: 1.5707963267948966 rad - pos: 2.5,-16.5 + - pos: 38.5,20.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5380 + - uid: 1592 components: - - pos: 8.5,-20.5 + - pos: 19.5,14.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5392 + - uid: 1602 components: - - pos: 3.5,3.5 + - pos: 36.5,-0.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5396 + - uid: 1604 components: - rot: 3.141592653589793 rad - pos: 7.5,3.5 + pos: 24.5,-8.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5397 + - uid: 1629 components: - - rot: 3.141592653589793 rad - pos: 9.5,3.5 + - pos: 37.5,1.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5399 + - uid: 1663 components: - - rot: 3.141592653589793 rad - pos: 8.5,5.5 + - pos: 17.5,-14.5 + parent: 31 + type: Transform + - uid: 1666 + components: + - pos: 49.5,-6.5 + parent: 31 + type: Transform + - uid: 1692 + components: + - pos: -43.5,1.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5405 + - uid: 1706 components: - - rot: 3.141592653589793 rad - pos: 13.5,5.5 + - pos: 41.5,26.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5419 + - uid: 1708 components: - - rot: 3.141592653589793 rad - pos: 15.5,3.5 + - pos: 17.5,21.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5422 + - uid: 1709 components: - - pos: 10.5,5.5 + - pos: 34.5,7.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5424 + - uid: 1710 components: - - rot: 3.141592653589793 rad - pos: 21.5,3.5 + - pos: 32.5,7.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5425 + - uid: 1720 components: - - pos: 22.5,5.5 + - pos: 32.5,1.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5430 + - uid: 1721 components: - - pos: 28.5,5.5 + - pos: 34.5,1.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5439 + - uid: 1722 components: - - rot: 3.141592653589793 rad - pos: 26.5,3.5 + - pos: 30.5,4.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5458 + - uid: 1741 components: - - rot: 3.141592653589793 rad - pos: 14.5,10.5 + - pos: 44.5,-19.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5459 + - uid: 1757 components: - - pos: 16.5,11.5 + - pos: -49.5,-8.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5464 + - uid: 1759 components: - - rot: 3.141592653589793 rad - pos: 21.5,11.5 + - pos: 19.5,6.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5465 + - uid: 1760 components: - - rot: 3.141592653589793 rad - pos: 22.5,10.5 + - pos: 20.5,6.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5470 + - uid: 1761 components: - - rot: 3.141592653589793 rad - pos: 3.5,5.5 + - pos: 21.5,6.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5471 + - uid: 1762 components: - - pos: 20.5,10.5 + - pos: 22.5,6.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5481 + - uid: 1777 components: - - rot: 3.141592653589793 rad - pos: 20.5,11.5 + - pos: 17.5,9.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5488 + - uid: 1803 components: - - pos: 9.5,0.5 + - pos: 8.5,6.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5491 + - uid: 1871 components: - - rot: 3.141592653589793 rad - pos: 8.5,-1.5 + - pos: -1.5,27.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5500 + - uid: 1872 components: - - pos: -8.5,0.5 + - pos: -0.5,27.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5516 + - uid: 1874 components: - - rot: 3.141592653589793 rad - pos: -1.5,-1.5 + - pos: 10.5,29.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5528 + - uid: 1875 components: - - pos: -13.5,0.5 + - pos: 9.5,31.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5571 + - uid: 1879 components: - - rot: 3.141592653589793 rad - pos: 11.5,-10.5 + - pos: 7.5,33.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5572 + - uid: 1880 components: - - rot: 3.141592653589793 rad - pos: 10.5,-8.5 + - pos: 6.5,33.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5574 + - uid: 1881 components: - - rot: 3.141592653589793 rad - pos: 15.5,-8.5 + - pos: 5.5,33.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5577 + - uid: 1882 components: - - pos: 15.5,-10.5 + - pos: 4.5,33.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5579 + - uid: 1883 components: - - pos: 12.5,-10.5 + - pos: 3.5,33.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5584 + - uid: 1884 components: - - pos: 12.5,-8.5 + - pos: 2.5,33.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5586 + - uid: 1885 components: - - rot: 3.141592653589793 rad - pos: 16.5,-8.5 + - pos: 1.5,33.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5587 + - uid: 1886 components: - - rot: 3.141592653589793 rad - pos: 17.5,-10.5 + - pos: 0.5,33.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5592 + - uid: 1887 components: - - rot: 1.5707963267948966 rad - pos: 17.5,-6.5 + - pos: -0.5,33.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5600 + - uid: 1891 components: - - rot: 1.5707963267948966 rad - pos: 16.5,-5.5 + - pos: 6.5,19.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5626 + - uid: 1904 components: - - pos: 15.5,-15.5 + - pos: -7.5,18.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5686 + - uid: 1949 components: - - rot: -1.5707963267948966 rad - pos: 14.5,-20.5 + - pos: -10.5,21.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5722 + - uid: 1959 components: - - rot: 3.141592653589793 rad - pos: -8.5,-19.5 + - pos: -11.5,7.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5735 + - uid: 1969 components: - - rot: 3.141592653589793 rad - pos: -10.5,-20.5 + - pos: -10.5,14.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5736 + - uid: 1996 components: - - pos: -11.5,-20.5 + - pos: -7.5,9.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5769 + - uid: 2064 components: - - rot: 1.5707963267948966 rad - pos: -8.5,13.5 + - pos: -28.5,6.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5801 + - uid: 2095 components: - - rot: 1.5707963267948966 rad - pos: 2.5,12.5 + - pos: -25.5,9.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5806 + - uid: 2099 components: - - rot: 1.5707963267948966 rad - pos: 2.5,17.5 + - pos: -9.5,8.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5807 + - uid: 2115 components: - - rot: -1.5707963267948966 rad - pos: 4.5,19.5 + - pos: 13.5,-1.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5812 + - uid: 2136 components: - - rot: -1.5707963267948966 rad - pos: 4.5,26.5 + - pos: 8.5,-7.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 5822 + - uid: 2149 components: - - rot: 1.5707963267948966 rad - pos: 2.5,23.5 + - pos: 11.5,2.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5829 + - uid: 2150 components: - - rot: 1.5707963267948966 rad - pos: 2.5,18.5 + - pos: 10.5,2.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5834 + - uid: 2151 components: - - rot: 1.5707963267948966 rad - pos: 4.5,14.5 + - pos: 9.5,2.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5835 + - uid: 2152 components: - - rot: -1.5707963267948966 rad - pos: 4.5,13.5 + - pos: 8.5,2.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5856 + - uid: 2153 components: - - pos: 3.5,25.5 + - pos: 7.5,2.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5867 + - uid: 2205 components: - - pos: 7.5,24.5 + - pos: 20.5,-5.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5881 + - uid: 2209 components: - - rot: 3.141592653589793 rad - pos: 7.5,17.5 + - pos: -6.5,-20.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5924 + - uid: 2245 components: - - rot: 1.5707963267948966 rad - pos: -22.5,23.5 + - pos: -7.5,6.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5955 + - uid: 2277 components: - rot: 3.141592653589793 rad - pos: -1.5,3.5 + pos: -16.5,-24.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5960 + - uid: 2307 components: - - pos: -2.5,5.5 + - pos: -35.5,-22.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5963 + - uid: 2423 components: - - rot: 3.141592653589793 rad - pos: -4.5,5.5 + - pos: 28.5,-14.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5964 + - uid: 3152 components: - - rot: 3.141592653589793 rad - pos: -5.5,3.5 + - pos: 47.5,-18.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5969 + - uid: 3157 components: - - rot: 1.5707963267948966 rad - pos: -5.5,8.5 + - pos: 56.5,-25.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5973 + - uid: 3158 components: - - rot: 1.5707963267948966 rad - pos: -4.5,7.5 + - pos: 56.5,-24.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5980 + - uid: 3415 components: - - rot: 3.141592653589793 rad - pos: -8.5,10.5 + - pos: -16.5,-40.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5989 + - uid: 3842 components: - - rot: -1.5707963267948966 rad - pos: -8.5,14.5 + - rot: 1.5707963267948966 rad + pos: -1.5,13.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5994 + - uid: 4032 components: - - rot: 3.141592653589793 rad - pos: -7.5,15.5 + - pos: 28.5,-13.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6000 + - uid: 4114 components: - - rot: -1.5707963267948966 rad - pos: -8.5,20.5 + - pos: -12.5,6.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6010 + - uid: 4115 components: - - rot: 3.141592653589793 rad - pos: -11.5,15.5 + - pos: -3.5,6.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6017 + - uid: 4117 components: - - rot: -1.5707963267948966 rad - pos: -5.5,12.5 + - pos: -3.5,8.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6050 + - uid: 4223 components: - - rot: 3.141592653589793 rad - pos: -14.5,3.5 + - pos: -2.5,9.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6051 + - uid: 4241 components: - - pos: -11.5,5.5 + - pos: 7.5,36.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6079 + - uid: 4308 components: - - rot: 3.141592653589793 rad - pos: -22.5,3.5 + - pos: 5.5,36.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6084 + - uid: 4376 components: - - pos: -25.5,5.5 + - pos: 41.5,-26.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6096 + - uid: 4377 components: - - pos: -23.5,9.5 + - pos: 45.5,-29.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6112 + - uid: 4386 components: - - pos: -16.5,5.5 + - rot: -1.5707963267948966 rad + pos: 37.5,-26.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6135 + - uid: 4393 components: - - rot: 3.141592653589793 rad - pos: -30.5,3.5 + - pos: 58.5,6.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6136 + - uid: 4394 components: - - pos: -29.5,5.5 + - pos: 61.5,6.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6199 + - uid: 4399 components: - rot: 3.141592653589793 rad - pos: 41.5,3.5 + pos: 54.5,1.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6204 + - uid: 4403 components: - - rot: -1.5707963267948966 rad - pos: 44.5,6.5 + - rot: 3.141592653589793 rad + pos: 54.5,3.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6213 + - uid: 4445 components: - - rot: 1.5707963267948966 rad - pos: 20.5,15.5 + - pos: 59.5,-10.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6216 + - uid: 4460 components: - rot: 3.141592653589793 rad - pos: 43.5,3.5 + pos: -17.5,-24.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6223 + - uid: 4487 components: - - rot: 3.141592653589793 rad - pos: 46.5,2.5 + - pos: 34.5,-13.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6226 + - uid: 4500 components: - - pos: 47.5,3.5 + - pos: 54.5,-7.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6249 + - uid: 4510 components: - - rot: 1.5707963267948966 rad - pos: 22.5,15.5 + - pos: 31.5,-23.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6334 + - uid: 4532 components: - - rot: 1.5707963267948966 rad - pos: 32.5,10.5 + - rot: -1.5707963267948966 rad + pos: 36.5,-22.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6852 + - uid: 4595 components: - - pos: 53.5,18.5 + - pos: 41.5,-22.5 parent: 31 type: Transform - - enabled: True - type: AmbientSound - - uid: 6943 + - uid: 4596 components: - - pos: 49.5,3.5 + - pos: 40.5,-22.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6944 + - uid: 4597 components: - - pos: 48.5,2.5 + - pos: 42.5,-26.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 7095 + - uid: 4598 components: - - rot: 3.141592653589793 rad - pos: -22.5,19.5 + - pos: 44.5,-27.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 7159 + - uid: 4599 components: - - pos: 8.5,20.5 + - pos: 44.5,-28.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 7181 + - uid: 4600 components: - - rot: -1.5707963267948966 rad - pos: 55.5,2.5 + - pos: 44.5,-29.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 7270 + - uid: 4612 components: - - rot: 1.5707963267948966 rad - pos: -5.5,-30.5 + - rot: -1.5707963267948966 rad + pos: 36.5,-26.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 7271 + - uid: 4614 components: - - pos: -32.5,5.5 + - pos: 34.5,-12.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 7392 + - uid: 4618 components: - - rot: 1.5707963267948966 rad - pos: -16.5,-20.5 + - pos: 51.5,-30.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 7504 + - uid: 4619 components: - - rot: -1.5707963267948966 rad - pos: -36.5,0.5 + - pos: 53.5,-29.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 7546 + - uid: 4620 components: - - rot: 3.141592653589793 rad - pos: -35.5,-6.5 + - pos: 54.5,-28.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8783 + - uid: 4621 components: - - rot: -1.5707963267948966 rad - pos: -5.5,11.5 + - pos: 56.5,-26.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8872 + - uid: 4622 components: - - rot: 1.5707963267948966 rad - pos: 2.5,-6.5 + - pos: 55.5,-22.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8877 + - uid: 4624 components: - - pos: 34.5,5.5 + - pos: 56.5,-23.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8878 + - uid: 4625 components: - - rot: 3.141592653589793 rad - pos: 35.5,3.5 + - pos: 56.5,-22.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 9297 + - uid: 4660 components: - - rot: -1.5707963267948966 rad - pos: -32.5,-6.5 + - pos: 31.5,-25.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9313 + - uid: 4686 components: - - rot: 3.141592653589793 rad - pos: -24.5,-13.5 + - pos: 4.5,36.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 9581 + - uid: 4702 components: - rot: -1.5707963267948966 rad - pos: 19.5,-21.5 + pos: -9.5,18.5 parent: 31 type: Transform - - uid: 9757 + - uid: 4844 components: - - rot: 3.141592653589793 rad - pos: -22.5,-18.5 + - pos: 12.5,-32.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 9799 + - uid: 4846 components: - - pos: -9.5,-27.5 + - pos: 2.5,-31.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 9815 + - uid: 4847 components: - - rot: -1.5707963267948966 rad - pos: -4.5,-28.5 + - pos: 3.5,-31.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- proto: GasPort - entities: - - uid: 5140 + - uid: 4848 components: - - rot: 1.5707963267948966 rad - pos: 30.5,8.5 + - pos: 4.5,-31.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 7112 + - uid: 4879 components: - - rot: 1.5707963267948966 rad - pos: 30.5,9.5 + - pos: -2.5,6.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 7379 + - uid: 4881 components: - - pos: -14.5,-21.5 + - pos: -0.5,6.5 parent: 31 type: Transform - - uid: 7380 + - uid: 4926 components: - - pos: -13.5,-21.5 + - pos: 15.5,20.5 parent: 31 type: Transform -- proto: GasPressurePump - entities: - - uid: 555 + - uid: 4928 components: - - desc: pumps h2o into mix line - name: h2o pump - type: MetaData - - pos: 45.5,17.5 + - pos: 15.5,21.5 parent: 31 type: Transform - - targetPressure: 1 - type: GasPressurePump - - uid: 905 + - uid: 5066 components: - - pos: 37.5,17.5 + - pos: -1.5,9.5 parent: 31 type: Transform - - uid: 1513 + - uid: 5067 components: - - desc: pumps co2 into mix line - name: co2 pump - type: MetaData - - pos: 39.5,17.5 + - pos: -3.5,9.5 parent: 31 type: Transform - - targetPressure: 1 - type: GasPressurePump - - uid: 1517 + - uid: 5071 components: - - desc: pumps o2 into distro or mix - name: o2 pump - type: MetaData - - pos: 35.5,17.5 + - pos: 13.5,1.5 parent: 31 type: Transform - - uid: 1570 + - uid: 5072 components: - - desc: pumps tritium into mix line - name: tritium pump - type: MetaData - - pos: 43.5,17.5 + - pos: 13.5,-2.5 parent: 31 type: Transform - - targetPressure: 1 - type: GasPressurePump - - uid: 1573 + - uid: 5082 components: - - desc: pumps plasma into mix line - name: plasma pump - type: MetaData - - pos: 41.5,17.5 + - pos: 13.5,0.5 parent: 31 type: Transform - - targetPressure: 1 - type: GasPressurePump - - uid: 4388 + - uid: 5102 components: - - rot: 3.141592653589793 rad - pos: 33.5,11.5 + - pos: 51.5,-6.5 parent: 31 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 4389 + - uid: 5111 components: - - pos: 34.5,11.5 + - pos: -0.5,36.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 4907 + - uid: 5117 components: - - desc: pumps n2 into distro or mix - name: n2 pump - type: MetaData - - pos: 33.5,17.5 + - pos: -3.5,7.5 parent: 31 type: Transform - - uid: 6354 + - uid: 5139 components: - - desc: pumps mix line into mixer - name: mixer input pump - type: MetaData - - rot: 1.5707963267948966 rad - pos: 49.5,16.5 + - pos: 8.5,-11.5 parent: 31 type: Transform - - uid: 6500 + - uid: 5198 components: - - desc: pulls product from mixer - name: mixer product pump - type: MetaData - - rot: -1.5707963267948966 rad - pos: 49.5,15.5 + - pos: -28.5,18.5 parent: 31 type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - uid: 6618 + - uid: 5199 components: - - desc: 'sends mix line to waste ' - name: mix to waste - type: MetaData - - rot: -1.5707963267948966 rad - pos: 49.5,17.5 + - pos: -29.5,18.5 parent: 31 type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 7381 + - uid: 5215 components: - - pos: -13.5,-22.5 + - pos: -10.5,13.5 parent: 31 type: Transform - - uid: 7382 + - uid: 5227 components: - - rot: 3.141592653589793 rad - pos: -14.5,-22.5 + - pos: 11.5,-15.5 parent: 31 type: Transform - - uid: 9133 + - uid: 5244 components: - - pos: 19.5,-20.5 + - pos: -39.5,21.5 parent: 31 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- proto: GasThermoMachineFreezer - entities: - - uid: 5552 + - uid: 5248 components: - - rot: 3.141592653589793 rad - pos: -16.5,-5.5 + - pos: -39.5,24.5 parent: 31 type: Transform - - uid: 8860 + - uid: 5251 components: - - pos: 38.5,11.5 + - pos: -39.5,27.5 parent: 31 type: Transform - - uid: 9698 + - uid: 5313 components: - - pos: -9.5,-22.5 + - pos: -43.5,9.5 parent: 31 type: Transform - - targetTemperature: 150 - type: GasThermoMachine -- proto: GasThermoMachineFreezerEnabled - entities: - - uid: 9582 + - uid: 5898 components: - - rot: 1.5707963267948966 rad - pos: 17.5,-22.5 + - pos: -41.5,7.5 parent: 31 type: Transform - - targetTemperature: 73.15 - type: GasThermoMachine -- proto: GasThermoMachineHeater - entities: - - uid: 8861 + - uid: 5978 components: - - pos: 39.5,11.5 + - pos: -54.5,-9.5 parent: 31 type: Transform -- proto: GasValve - entities: - - uid: 93 + - uid: 6277 components: - - rot: 3.141592653589793 rad - pos: 31.5,17.5 + - pos: -9.5,32.5 parent: 31 type: Transform - - uid: 6483 + - uid: 6280 components: - - name: waste valve - type: MetaData - - rot: 3.141592653589793 rad - pos: 48.5,19.5 + - pos: -10.5,32.5 parent: 31 type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor -- proto: GasVentPump - entities: - - uid: 65 + - uid: 6287 components: - - pos: 15.5,-7.5 + - pos: 54.5,-8.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 100 + - uid: 6288 components: - - rot: 1.5707963267948966 rad - pos: 3.5,-17.5 + - pos: -6.5,34.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 686 + - uid: 6366 components: - - rot: 1.5707963267948966 rad - pos: -23.5,-22.5 + - pos: 22.5,14.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 716 + - uid: 6367 components: - - pos: 7.5,26.5 + - pos: 40.5,18.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 753 + - uid: 6369 components: - - pos: 12.5,27.5 + - pos: 42.5,18.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 977 + - uid: 6380 components: - - pos: 10.5,26.5 + - pos: 39.5,18.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1230 + - uid: 6381 components: - - rot: -1.5707963267948966 rad - pos: 9.5,20.5 + - pos: 38.5,18.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 3116 + - uid: 6383 components: - - rot: -1.5707963267948966 rad - pos: 26.5,9.5 + - pos: 37.5,18.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 4185 + - uid: 6391 components: - - pos: -7.5,20.5 + - pos: 35.5,18.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 4266 + - uid: 6401 components: - - rot: -1.5707963267948966 rad - pos: 23.5,15.5 + - pos: 34.5,18.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 4267 + - uid: 6405 components: - - rot: -1.5707963267948966 rad - pos: 26.5,16.5 + - pos: 23.5,20.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 4636 + - uid: 6415 components: - - pos: 55.5,7.5 + - pos: 56.5,15.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5365 + - uid: 6432 components: - - rot: 1.5707963267948966 rad - pos: 3.5,-5.5 + - rot: -1.5707963267948966 rad + pos: 58.5,11.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5472 + - uid: 6440 components: - - pos: 3.5,6.5 + - pos: 43.5,18.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5476 + - uid: 6445 components: - - rot: 3.141592653589793 rad - pos: 22.5,4.5 + - pos: 45.5,18.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5479 + - uid: 6453 components: - - pos: 14.5,11.5 + - rot: -1.5707963267948966 rad + pos: 51.5,11.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5495 + - uid: 6455 components: - - pos: 8.5,-0.5 + - pos: 33.5,18.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5542 + - uid: 6458 components: - - pos: -12.5,-0.5 + - pos: 45.5,7.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5543 + - uid: 6462 components: - - pos: -1.5,-0.5 + - rot: -1.5707963267948966 rad + pos: 51.5,10.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5546 + - uid: 6464 components: - - rot: 1.5707963267948966 rad - pos: -17.5,-1.5 + - pos: 45.5,9.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5605 + - uid: 6472 components: - - pos: 16.5,-0.5 + - pos: 47.5,18.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5606 + - uid: 6503 components: - - rot: 3.141592653589793 rad - pos: 12.5,-9.5 + - rot: -1.5707963267948966 rad + pos: 55.5,24.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5635 + - uid: 6504 components: - - pos: 22.5,-14.5 + - pos: 44.5,18.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5638 + - uid: 6505 components: - - rot: 3.141592653589793 rad - pos: 14.5,-16.5 + - rot: -1.5707963267948966 rad + pos: 51.5,12.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5648 + - uid: 6508 components: - - rot: 3.141592653589793 rad - pos: 9.5,-14.5 + - pos: 46.5,18.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5666 + - uid: 6551 components: - - rot: -1.5707963267948966 rad - pos: 23.5,-5.5 + - pos: 48.5,18.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5678 + - uid: 6578 components: - - rot: 1.5707963267948966 rad - pos: 17.5,-19.5 + - rot: -1.5707963267948966 rad + pos: 54.5,16.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5698 + - uid: 6600 components: - rot: -1.5707963267948966 rad - pos: 9.5,-25.5 + pos: 51.5,9.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5757 + - uid: 6613 components: - - pos: -3.5,-15.5 + - pos: 36.5,18.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5760 + - uid: 6641 components: - - pos: -10.5,-18.5 + - pos: -41.5,-8.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5763 + - uid: 6643 components: - - rot: 3.141592653589793 rad - pos: -3.5,-23.5 + - rot: -1.5707963267948966 rad + pos: 58.5,16.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5785 + - uid: 6644 components: - - rot: 3.141592653589793 rad - pos: 15.5,-31.5 + - rot: -1.5707963267948966 rad + pos: 58.5,17.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5848 + - uid: 6645 components: - - rot: 1.5707963267948966 rad - pos: 3.5,19.5 + - rot: -1.5707963267948966 rad + pos: 58.5,23.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5868 + - uid: 6646 components: - - rot: 3.141592653589793 rad - pos: 3.5,24.5 + - rot: -1.5707963267948966 rad + pos: 58.5,19.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5869 + - uid: 6647 components: - - rot: 1.5707963267948966 rad - pos: -1.5,25.5 + - rot: -1.5707963267948966 rad + pos: 58.5,18.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5870 + - uid: 6685 components: - - pos: 4.5,30.5 + - pos: -36.5,29.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5928 + - uid: 6686 components: - - rot: 1.5707963267948966 rad - pos: -25.5,24.5 + - pos: -34.5,29.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5929 + - uid: 6687 components: - - rot: -1.5707963267948966 rad - pos: -21.5,23.5 + - pos: -33.5,29.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5941 + - uid: 6688 components: - - rot: -1.5707963267948966 rad - pos: 13.5,14.5 + - pos: -32.5,29.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5950 + - uid: 6689 components: - - rot: 1.5707963267948966 rad - pos: 7.5,9.5 + - pos: -31.5,29.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5992 + - uid: 6690 components: - - rot: 1.5707963267948966 rad - pos: -6.5,12.5 + - pos: -30.5,29.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6018 + - uid: 6691 components: - - rot: 1.5707963267948966 rad - pos: -12.5,15.5 + - pos: -30.5,28.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6033 + - uid: 6725 components: - - pos: -12.5,19.5 + - rot: -1.5707963267948966 rad + pos: 58.5,22.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6041 + - uid: 6726 components: - rot: -1.5707963267948966 rad - pos: -0.5,7.5 + pos: 53.5,24.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6043 + - uid: 6728 components: - - rot: 3.141592653589793 rad - pos: -2.5,4.5 + - rot: -1.5707963267948966 rad + pos: 58.5,24.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6071 + - uid: 6729 components: - - rot: 3.141592653589793 rad - pos: -11.5,4.5 + - rot: -1.5707963267948966 rad + pos: 56.5,24.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6115 + - uid: 6730 components: - rot: -1.5707963267948966 rad - pos: -20.5,8.5 + pos: 57.5,24.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6118 + - uid: 6731 components: - - rot: 1.5707963267948966 rad - pos: -27.5,8.5 + - rot: -1.5707963267948966 rad + pos: 52.5,24.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6119 + - uid: 6812 components: - - rot: 3.141592653589793 rad - pos: -25.5,4.5 + - rot: 1.5707963267948966 rad + pos: -10.5,-42.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6130 + - uid: 6815 components: - - rot: 3.141592653589793 rad - pos: -24.5,-2.5 + - pos: 41.5,18.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6138 + - uid: 6863 components: - - rot: 3.141592653589793 rad - pos: -29.5,4.5 + - pos: 27.5,22.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6151 + - uid: 6873 components: - - rot: 1.5707963267948966 rad - pos: -36.5,5.5 + - rot: -1.5707963267948966 rad + pos: 58.5,13.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6169 + - uid: 6875 components: - - rot: 1.5707963267948966 rad - pos: -36.5,-6.5 + - pos: 54.5,15.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6184 + - uid: 6878 components: - - rot: 3.141592653589793 rad - pos: 34.5,4.5 + - rot: -1.5707963267948966 rad + pos: 57.5,11.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6197 + - uid: 6881 components: - - rot: 3.141592653589793 rad - pos: 39.5,4.5 + - rot: -1.5707963267948966 rad + pos: 58.5,12.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6262 + - uid: 6933 components: - - rot: 3.141592653589793 rad - pos: 20.5,9.5 + - pos: 49.5,18.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6268 + - uid: 6950 components: - - rot: -1.5707963267948966 rad - pos: 38.5,-0.5 + - pos: -7.5,34.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6275 + - uid: 6951 components: - - rot: 3.141592653589793 rad - pos: 32.5,-2.5 + - pos: -5.5,32.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6293 + - uid: 6952 components: - - rot: -1.5707963267948966 rad - pos: 48.5,-3.5 + - pos: -10.5,31.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6533 + - uid: 6958 components: - - rot: -1.5707963267948966 rad - pos: 49.5,7.5 + - pos: 51.5,-31.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 7099 + - uid: 6961 components: - - pos: 32.5,11.5 + - pos: 47.5,-31.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 7185 + - uid: 6962 components: - - rot: -1.5707963267948966 rad - pos: 56.5,1.5 + - pos: 47.5,-30.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 7397 + - uid: 6963 components: - - rot: 3.141592653589793 rad - pos: -16.5,-25.5 + - pos: 46.5,-29.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 7398 + - uid: 6964 components: - - pos: -16.5,-19.5 + - pos: 34.5,-14.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 7408 + - uid: 6967 components: - - rot: -1.5707963267948966 rad - pos: -1.5,-30.5 + - pos: 40.5,-26.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 7456 + - uid: 6971 components: - - rot: 1.5707963267948966 rad - pos: 3.5,-29.5 + - pos: 42.5,-22.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 7746 + - uid: 6993 components: - - pos: -35.5,14.5 + - pos: 35.5,-38.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8417 + - uid: 6994 components: - - rot: 3.141592653589793 rad - pos: 8.5,17.5 + - pos: 32.5,-38.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8794 + - uid: 7011 components: - - rot: 1.5707963267948966 rad - pos: -16.5,11.5 + - pos: 51.5,-18.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8873 + - uid: 7012 components: - - rot: 1.5707963267948966 rad - pos: 3.5,13.5 + - pos: 51.5,-17.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8875 + - uid: 7013 components: - - rot: 3.141592653589793 rad - pos: 28.5,4.5 + - pos: 50.5,-17.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8880 + - uid: 7014 components: - - pos: 46.5,3.5 + - pos: 49.5,-17.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8944 + - uid: 7015 components: - - rot: 3.141592653589793 rad - pos: 10.5,4.5 + - pos: 48.5,-17.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 9317 + - uid: 7016 components: - - rot: 1.5707963267948966 rad - pos: -25.5,-13.5 + - pos: 47.5,-17.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 9758 + - uid: 7017 components: - - rot: 1.5707963267948966 rad - pos: -23.5,-18.5 + - pos: 52.5,-19.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 9805 + - uid: 7018 components: - - rot: 3.141592653589793 rad - pos: -9.5,-28.5 + - pos: 53.5,-19.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 9806 + - uid: 7019 components: - - rot: 3.141592653589793 rad - pos: -5.5,-31.5 + - pos: 54.5,-19.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor -- proto: GasVentScrubber - entities: - - uid: 95 + - uid: 7020 components: - - rot: 3.141592653589793 rad - pos: 15.5,-11.5 + - pos: 54.5,-20.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 867 + - uid: 7021 components: - - rot: 3.141592653589793 rad - pos: 7.5,23.5 + - pos: 54.5,-21.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1029 + - uid: 7022 components: - - rot: -1.5707963267948966 rad - pos: 3.5,-16.5 + - pos: 55.5,-26.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1032 + - uid: 7023 components: - - rot: 3.141592653589793 rad - pos: 10.5,23.5 + - pos: 54.5,-27.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1542 + - uid: 7024 components: - - pos: 35.5,4.5 + - pos: 54.5,-29.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3117 + - uid: 7025 components: - - pos: 21.5,12.5 + - pos: 52.5,-29.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3118 + - uid: 7028 components: - - rot: -1.5707963267948966 rad - pos: 26.5,10.5 + - pos: -7.5,35.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3274 + - uid: 7038 components: - - pos: 41.5,4.5 + - rot: -1.5707963267948966 rad + pos: 37.5,-22.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 4279 + - uid: 7039 components: - rot: -1.5707963267948966 rad - pos: 26.5,17.5 + pos: 35.5,-22.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 4701 + - uid: 7044 components: - - rot: -1.5707963267948966 rad - pos: -7.5,21.5 + - pos: 28.5,-12.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 4783 + - uid: 7150 components: - - rot: -1.5707963267948966 rad - pos: 9.5,-23.5 + - pos: -5.5,34.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5332 + - uid: 7220 components: - rot: -1.5707963267948966 rad - pos: 3.5,-6.5 + pos: 54.5,17.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5473 + - uid: 7221 components: - - rot: 3.141592653589793 rad - pos: 3.5,2.5 + - pos: 34.5,20.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5474 + - uid: 7225 components: - - pos: 7.5,4.5 + - pos: 55.5,18.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5477 + - uid: 7226 components: - - pos: 21.5,4.5 + - pos: 36.5,20.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5478 + - uid: 7231 components: - - rot: 3.141592653589793 rad - pos: 16.5,10.5 + - pos: 0.5,36.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5496 + - uid: 7233 components: - - rot: 3.141592653589793 rad - pos: 9.5,-0.5 + - pos: 13.5,-5.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5541 + - uid: 7274 components: - - rot: 3.141592653589793 rad - pos: -13.5,-0.5 + - pos: 12.5,-6.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5544 + - uid: 7358 components: - - rot: 3.141592653589793 rad - pos: -8.5,-0.5 + - rot: -1.5707963267948966 rad + pos: -42.5,15.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5545 + - uid: 7375 components: - - rot: 1.5707963267948966 rad - pos: -19.5,0.5 + - pos: 61.5,-10.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5597 + - uid: 7376 components: - - pos: 17.5,-1.5 + - pos: 4.5,35.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5607 + - uid: 7425 components: - - rot: 3.141592653589793 rad - pos: 12.5,-11.5 + - pos: 61.5,-11.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5636 + - uid: 7447 components: - - rot: -1.5707963267948966 rad - pos: 22.5,-13.5 + - rot: 3.141592653589793 rad + pos: 0.5,-32.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5637 + - uid: 7448 components: - - rot: 1.5707963267948966 rad - pos: 14.5,-14.5 + - rot: 3.141592653589793 rad + pos: -0.5,-32.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5653 + - uid: 7449 components: - rot: 3.141592653589793 rad - pos: 8.5,-15.5 + pos: -1.5,-32.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5665 + - uid: 7450 components: - - rot: -1.5707963267948966 rad - pos: 22.5,-6.5 + - rot: 3.141592653589793 rad + pos: -2.5,-32.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5704 + - uid: 7471 components: - - rot: -1.5707963267948966 rad - pos: 3.5,-28.5 + - pos: 11.5,-17.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5756 + - uid: 7472 components: - - pos: -2.5,-15.5 + - pos: -31.5,19.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5759 + - uid: 7485 components: - - pos: -8.5,-18.5 + - pos: 1.5,-27.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5762 + - uid: 7487 components: - - rot: 1.5707963267948966 rad - pos: -15.5,-19.5 + - pos: 1.5,36.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5764 + - uid: 7488 components: - - rot: 3.141592653589793 rad - pos: -4.5,-23.5 + - pos: 61.5,-7.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5765 + - uid: 7547 components: - - rot: -1.5707963267948966 rad - pos: -7.5,13.5 + - pos: 34.5,26.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5849 + - uid: 7632 components: - - rot: -1.5707963267948966 rad - pos: 3.5,18.5 + - pos: -39.5,19.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5864 + - uid: 7636 components: - - rot: 1.5707963267948966 rad - pos: -1.5,24.5 + - pos: -47.5,-12.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5865 + - uid: 7672 components: - - rot: -1.5707963267948966 rad - pos: 3.5,23.5 + - pos: -16.5,7.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5871 + - uid: 7677 components: - - pos: 2.5,30.5 + - pos: 62.5,-10.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5883 + - uid: 7678 components: - - rot: -1.5707963267948966 rad - pos: 9.5,17.5 + - pos: 61.5,-16.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5951 + - uid: 7679 components: - - pos: 9.5,9.5 + - pos: 61.5,-14.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6024 + - uid: 7688 components: - - rot: 1.5707963267948966 rad - pos: -12.5,14.5 + - pos: 23.5,19.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6032 + - uid: 7692 components: - - rot: 1.5707963267948966 rad - pos: -12.5,20.5 + - pos: -39.5,12.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6042 + - uid: 7697 components: - - rot: -1.5707963267948966 rad - pos: -0.5,8.5 + - pos: -46.5,-12.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6044 + - uid: 7713 components: - - pos: -1.5,4.5 + - pos: -54.5,-10.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6080 + - uid: 7748 components: - - pos: -14.5,4.5 + - pos: 49.5,-31.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6116 + - uid: 7798 components: - - rot: -1.5707963267948966 rad - pos: -20.5,9.5 + - pos: 13.5,-10.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6117 + - uid: 7800 components: - - pos: -27.5,10.5 + - pos: 13.5,-11.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6120 + - uid: 7824 components: - - pos: -22.5,4.5 + - pos: -5.5,-33.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6129 + - uid: 7830 components: - - rot: 3.141592653589793 rad - pos: -23.5,-4.5 + - pos: -42.5,-8.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6137 + - uid: 7838 components: - - pos: -30.5,4.5 + - pos: -18.5,26.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6152 + - uid: 7839 components: - - pos: -36.5,4.5 + - pos: -15.5,26.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6168 + - uid: 7840 components: - - rot: 3.141592653589793 rad - pos: -36.5,-0.5 + - pos: -12.5,26.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6267 + - uid: 7867 components: - - rot: 3.141592653589793 rad - pos: 39.5,-0.5 + - pos: 28.5,-25.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6276 + - uid: 7868 components: - - rot: 3.141592653589793 rad - pos: 33.5,-1.5 + - pos: 28.5,-23.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6294 + - uid: 7947 components: - - rot: 1.5707963267948966 rad - pos: 50.5,-3.5 + - pos: -40.5,-8.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6413 + - uid: 8021 components: - - rot: -1.5707963267948966 rad - pos: 47.5,9.5 + - pos: -15.5,29.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6581 + - uid: 8022 components: - - rot: -1.5707963267948966 rad - pos: 21.5,15.5 + - pos: -16.5,29.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 7104 + - uid: 8023 components: - - rot: 1.5707963267948966 rad - pos: 32.5,9.5 + - pos: -17.5,29.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 7211 + - uid: 8024 components: - - rot: -1.5707963267948966 rad - pos: 56.5,3.5 + - pos: -22.5,29.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 7399 + - uid: 8025 components: - - pos: -17.5,-26.5 + - pos: -29.5,29.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - uid: 7469 + - uid: 8027 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-30.5 + - pos: -10.5,29.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 7745 + - uid: 8048 components: - - pos: -37.5,14.5 + - pos: 29.5,21.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8416 + - uid: 8052 components: - - pos: 7.5,19.5 + - pos: -41.5,6.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8795 + - uid: 8056 components: - - rot: 1.5707963267948966 rad - pos: -16.5,10.5 + - pos: 33.5,26.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8874 + - uid: 8084 components: - - rot: -1.5707963267948966 rad - pos: 3.5,12.5 + - pos: -16.5,6.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8876 + - uid: 8108 components: - - pos: 26.5,4.5 + - rot: 1.5707963267948966 rad + pos: 61.5,0.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8879 + - uid: 8109 components: - - rot: 3.141592653589793 rad - pos: 47.5,2.5 + - rot: 1.5707963267948966 rad + pos: 61.5,1.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 9202 + - uid: 8110 components: - - rot: 3.141592653589793 rad - pos: -37.5,-6.5 + - rot: 1.5707963267948966 rad + pos: 61.5,2.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 9807 + - uid: 8111 components: - - rot: 3.141592653589793 rad - pos: -4.5,-30.5 + - rot: 1.5707963267948966 rad + pos: 61.5,3.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 9808 + - uid: 8112 components: - rot: 1.5707963267948966 rad - pos: -8.5,-28.5 + pos: 61.5,4.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor -- proto: Gauze - entities: - - uid: 4181 + - uid: 8145 components: - - pos: 6.5456867,-11.337304 + - pos: 52.5,8.5 parent: 31 type: Transform - - uid: 7455 + - uid: 8216 components: - - pos: 11.456925,-3.7697382 + - rot: -1.5707963267948966 rad + pos: 35.5,-26.5 parent: 31 type: Transform -- proto: GeneratorBasic15kW - entities: - - uid: 202 + - uid: 8217 components: - - pos: -7.5,27.5 + - rot: -1.5707963267948966 rad + pos: 31.5,-24.5 parent: 31 type: Transform - - uid: 4541 + - uid: 8222 components: - - pos: 46.5,1.5 + - pos: -32.5,19.5 parent: 31 type: Transform - - uid: 10125 + - uid: 8293 components: - - pos: 47.5,1.5 + - pos: 50.5,-31.5 parent: 31 type: Transform -- proto: GrapeSeeds - entities: - - uid: 10141 + - uid: 8294 components: - - pos: 50.568665,-26.975147 + - pos: 48.5,-31.5 parent: 31 type: Transform - - uid: 10142 + - uid: 8305 components: - - pos: 50.638107,-27.06774 + - rot: 1.5707963267948966 rad + pos: 58.5,-29.5 parent: 31 type: Transform -- proto: GravityGenerator - entities: - - uid: 888 + - uid: 8306 components: - - pos: 49.5,-4.5 + - pos: 50.5,18.5 parent: 31 type: Transform -- proto: Grille - entities: - - uid: 6 + - uid: 8309 components: - - pos: 18.5,-18.5 + - rot: 1.5707963267948966 rad + pos: 58.5,-32.5 parent: 31 type: Transform - - uid: 47 + - uid: 8310 components: - - pos: 19.5,20.5 + - rot: 1.5707963267948966 rad + pos: 58.5,-33.5 parent: 31 type: Transform - - uid: 64 + - uid: 8313 components: - - pos: 5.5,-4.5 + - rot: 1.5707963267948966 rad + pos: -1.5,14.5 parent: 31 type: Transform - - uid: 78 + - uid: 8329 components: - - pos: 5.5,-5.5 + - pos: 48.5,-6.5 parent: 31 type: Transform - - uid: 80 + - uid: 8330 components: - - pos: -40.5,16.5 + - pos: 54.5,-2.5 parent: 31 type: Transform - - uid: 155 + - uid: 8331 components: - - pos: 44.5,-20.5 + - pos: 58.5,-16.5 parent: 31 type: Transform - - uid: 156 + - uid: 8332 components: - - pos: 45.5,-19.5 + - pos: 58.5,-18.5 parent: 31 type: Transform - - uid: 249 + - uid: 8333 components: - - rot: 1.5707963267948966 rad - pos: -4.5,12.5 + - pos: 58.5,-19.5 parent: 31 type: Transform - - uid: 255 + - uid: 8334 components: - - pos: 11.5,-6.5 + - pos: 58.5,-21.5 parent: 31 type: Transform - - uid: 261 + - uid: 8335 components: - - pos: 8.5,-5.5 + - pos: 58.5,-22.5 parent: 31 type: Transform - - uid: 338 + - uid: 8336 components: - - pos: -8.5,6.5 + - pos: 58.5,-23.5 parent: 31 type: Transform - - uid: 347 + - uid: 8337 components: - - pos: 3.5,-38.5 + - pos: 58.5,-24.5 parent: 31 type: Transform - - uid: 360 + - uid: 8338 components: - - pos: -13.5,6.5 + - pos: 58.5,-25.5 parent: 31 type: Transform - - uid: 469 + - uid: 8339 components: - - pos: -35.5,11.5 + - pos: 58.5,-27.5 parent: 31 type: Transform - - uid: 495 + - uid: 8340 components: - - pos: 6.5,-38.5 + - pos: 58.5,-34.5 parent: 31 type: Transform - - uid: 526 + - uid: 8341 components: - - rot: 1.5707963267948966 rad - pos: -15.5,-0.5 + - pos: 58.5,-37.5 parent: 31 type: Transform - - uid: 562 + - uid: 8342 components: - - pos: 4.5,-38.5 + - pos: 58.5,-38.5 parent: 31 type: Transform - - uid: 563 + - uid: 8343 components: - - rot: -1.5707963267948966 rad - pos: 29.5,20.5 + - pos: 57.5,-38.5 parent: 31 type: Transform - - uid: 571 + - uid: 8349 components: - - pos: 2.5,22.5 + - pos: 32.5,26.5 parent: 31 type: Transform - - uid: 591 + - uid: 8350 components: - - pos: -15.5,-24.5 + - pos: 30.5,-38.5 parent: 31 type: Transform - - uid: 653 + - uid: 8351 components: - - pos: 39.5,26.5 + - pos: 29.5,-38.5 parent: 31 type: Transform - - uid: 655 + - uid: 8352 components: - - pos: 35.5,26.5 + - pos: 28.5,-38.5 parent: 31 type: Transform - - uid: 657 + - uid: 8353 components: - - pos: -37.5,11.5 + - pos: 26.5,-38.5 parent: 31 type: Transform - - uid: 665 + - uid: 8354 components: - - pos: -41.5,5.5 + - pos: 24.5,-38.5 parent: 31 type: Transform - - uid: 670 + - uid: 8355 components: - - pos: 17.5,-18.5 + - pos: 23.5,-38.5 parent: 31 type: Transform - - uid: 711 + - uid: 8356 components: - - pos: 17.5,20.5 + - pos: 22.5,-38.5 parent: 31 type: Transform - - uid: 749 + - uid: 8357 components: - - pos: -44.5,1.5 + - pos: 21.5,-38.5 parent: 31 type: Transform - - uid: 751 + - uid: 8362 components: - - pos: -42.5,1.5 + - pos: 42.5,26.5 parent: 31 type: Transform - - uid: 754 + - uid: 8363 components: - - pos: 36.5,26.5 + - pos: 44.5,26.5 parent: 31 type: Transform - - uid: 772 + - uid: 8364 components: - - pos: -42.5,7.5 + - pos: 45.5,26.5 parent: 31 type: Transform - - uid: 811 + - uid: 8367 components: - - pos: -40.5,3.5 + - pos: -33.5,-15.5 parent: 31 type: Transform - - uid: 835 + - uid: 8371 components: - - rot: 3.141592653589793 rad - pos: 49.5,-7.5 + - pos: 43.5,26.5 parent: 31 type: Transform - - uid: 856 + - uid: 8390 components: - - pos: -42.5,3.5 + - pos: 6.5,36.5 parent: 31 type: Transform - - uid: 858 + - uid: 8484 components: - - pos: -44.5,9.5 + - pos: -26.5,-27.5 parent: 31 type: Transform - - uid: 904 + - uid: 8485 components: - - pos: 40.5,20.5 + - pos: -27.5,-27.5 parent: 31 type: Transform - - uid: 937 + - uid: 8486 components: - - pos: 19.5,21.5 + - pos: -27.5,-25.5 parent: 31 type: Transform - - uid: 1016 + - uid: 8487 components: - - pos: 4.5,22.5 + - pos: -26.5,-25.5 parent: 31 type: Transform - - uid: 1022 + - uid: 8566 components: - - pos: -40.5,1.5 + - pos: -37.5,-24.5 parent: 31 type: Transform - - uid: 1106 + - uid: 8567 components: - - pos: 44.5,20.5 + - pos: -37.5,-23.5 parent: 31 type: Transform - - uid: 1126 + - uid: 8568 components: - - pos: 31.5,26.5 + - pos: -36.5,-22.5 parent: 31 type: Transform - - uid: 1131 + - uid: 8570 components: - - pos: -41.5,4.5 + - pos: -34.5,-22.5 parent: 31 type: Transform - - uid: 1133 + - uid: 8571 components: - - rot: -1.5707963267948966 rad - pos: 18.5,18.5 + - pos: -33.5,-23.5 parent: 31 type: Transform - - uid: 1173 + - uid: 8572 components: - - rot: -1.5707963267948966 rad - pos: 24.5,18.5 + - pos: -33.5,-24.5 parent: 31 type: Transform - - uid: 1180 + - uid: 8575 components: - - pos: -41.5,9.5 + - pos: -37.5,-28.5 parent: 31 type: Transform - - uid: 1192 + - uid: 8576 components: - - pos: -19.5,2.5 + - pos: -32.5,-33.5 parent: 31 type: Transform - - uid: 1193 + - uid: 8601 components: - - pos: -18.5,2.5 + - rot: 3.141592653589793 rad + pos: -29.5,-32.5 parent: 31 type: Transform - - uid: 1225 + - uid: 8819 components: - - pos: 25.5,10.5 + - pos: 4.5,26.5 parent: 31 type: Transform - - uid: 1237 + - uid: 8820 components: - - pos: -42.5,9.5 + - pos: 2.5,26.5 parent: 31 type: Transform - - uid: 1268 + - uid: 8946 components: - - pos: 36.5,-38.5 + - rot: 3.141592653589793 rad + pos: -1.5,2.5 parent: 31 type: Transform - - uid: 1278 + - uid: 8947 components: - - pos: -10.5,19.5 + - rot: 3.141592653589793 rad + pos: -2.5,2.5 parent: 31 type: Transform - - uid: 1396 + - uid: 8948 components: - - pos: 10.5,31.5 + - rot: 3.141592653589793 rad + pos: -3.5,2.5 parent: 31 type: Transform - - uid: 1414 + - uid: 9012 components: - - pos: -9.5,7.5 + - pos: -4.5,-33.5 parent: 31 type: Transform - - uid: 1416 + - uid: 9027 components: - - pos: -13.5,9.5 + - pos: -8.5,-24.5 parent: 31 type: Transform - - uid: 1430 + - uid: 9032 components: - - pos: -43.5,3.5 + - pos: 33.5,-38.5 parent: 31 type: Transform - - uid: 1443 + - uid: 9124 components: - - pos: 37.5,26.5 + - pos: 5.5,-11.5 parent: 31 type: Transform - - uid: 1451 + - uid: 9125 components: - - pos: -44.5,3.5 + - pos: 5.5,-10.5 parent: 31 type: Transform - - uid: 1452 + - uid: 9126 components: - - pos: -41.5,1.5 + - pos: 5.5,-8.5 parent: 31 type: Transform - - uid: 1453 + - uid: 9127 components: - - pos: -40.5,7.5 + - pos: 5.5,-7.5 parent: 31 type: Transform - - uid: 1454 + - uid: 9136 components: - - pos: -43.5,7.5 + - pos: 26.5,22.5 parent: 31 type: Transform - - uid: 1455 + - uid: 9172 components: - - pos: -40.5,9.5 + - pos: -39.5,-5.5 parent: 31 type: Transform - - uid: 1456 + - uid: 9174 components: - - pos: -41.5,3.5 + - pos: -37.5,-12.5 parent: 31 type: Transform - - uid: 1460 + - uid: 9175 components: - - pos: -27.5,6.5 + - pos: -39.5,-1.5 parent: 31 type: Transform - - uid: 1462 + - uid: 9197 components: - - pos: -29.5,6.5 + - pos: -39.5,-3.5 parent: 31 type: Transform - - uid: 1479 + - uid: 9208 components: - - rot: 1.5707963267948966 rad - pos: 10.5,-16.5 + - pos: -36.5,-12.5 parent: 31 type: Transform - - uid: 1486 + - uid: 9209 components: - - pos: 20.5,-12.5 + - pos: -35.5,-12.5 parent: 31 type: Transform - - uid: 1487 + - uid: 9219 components: - - pos: 20.5,-15.5 + - rot: 1.5707963267948966 rad + pos: -1.5,12.5 parent: 31 type: Transform - - uid: 1489 + - uid: 9231 components: - - pos: -11.5,8.5 + - pos: -41.5,-0.5 parent: 31 type: Transform - - uid: 1491 + - uid: 9232 components: - - pos: 13.5,-4.5 + - pos: -42.5,-0.5 parent: 31 type: Transform - - uid: 1522 + - uid: 9233 components: - - pos: 46.5,-19.5 + - pos: -43.5,-0.5 parent: 31 type: Transform - - uid: 1526 + - uid: 9234 components: - - pos: 23.5,21.5 + - pos: -43.5,11.5 parent: 31 type: Transform - - uid: 1529 + - uid: 9235 components: - - pos: 44.5,-21.5 + - pos: -42.5,11.5 parent: 31 type: Transform - - uid: 1547 + - uid: 9236 components: - - pos: 42.5,20.5 + - pos: -41.5,11.5 parent: 31 type: Transform - - uid: 1548 + - uid: 9257 components: - - pos: 38.5,20.5 + - pos: -7.5,-24.5 parent: 31 type: Transform - - uid: 1592 + - uid: 9259 components: - - pos: 19.5,14.5 + - pos: -27.5,-20.5 parent: 31 type: Transform - - uid: 1602 + - uid: 9260 components: - - pos: 36.5,-0.5 + - pos: -26.5,-20.5 parent: 31 type: Transform - - uid: 1629 + - uid: 9291 components: - - pos: 37.5,1.5 + - rot: -1.5707963267948966 rad + pos: -13.5,-30.5 parent: 31 type: Transform - - uid: 1692 + - uid: 9331 components: - - pos: -43.5,1.5 + - rot: -1.5707963267948966 rad + pos: -28.5,2.5 parent: 31 type: Transform - - uid: 1706 + - uid: 9332 components: - - pos: 41.5,26.5 + - rot: -1.5707963267948966 rad + pos: -29.5,2.5 parent: 31 type: Transform - - uid: 1708 + - uid: 9362 components: - - pos: 17.5,21.5 + - pos: -25.5,-23.5 parent: 31 type: Transform - - uid: 1709 + - uid: 9408 components: - - pos: 34.5,7.5 + - pos: -4.5,-37.5 parent: 31 type: Transform - - uid: 1710 + - uid: 9409 components: - - pos: 32.5,7.5 + - pos: -3.5,-37.5 parent: 31 type: Transform - - uid: 1720 + - uid: 9410 components: - - pos: 32.5,1.5 + - pos: -2.5,-37.5 parent: 31 type: Transform - - uid: 1721 + - uid: 9413 components: - - pos: 34.5,1.5 + - pos: -1.5,-37.5 parent: 31 type: Transform - - uid: 1722 + - uid: 9419 components: - - pos: 30.5,4.5 + - pos: -14.5,-33.5 parent: 31 type: Transform - - uid: 1741 + - uid: 9420 components: - - pos: 44.5,-19.5 + - pos: -15.5,-33.5 parent: 31 type: Transform - - uid: 1759 + - uid: 9421 components: - - pos: 19.5,6.5 + - pos: -16.5,-33.5 parent: 31 type: Transform - - uid: 1760 + - uid: 9422 components: - - pos: 20.5,6.5 + - pos: -15.5,-40.5 parent: 31 type: Transform - - uid: 1761 + - uid: 9423 components: - - pos: 21.5,6.5 + - pos: -14.5,-40.5 parent: 31 type: Transform - - uid: 1762 + - uid: 9424 components: - - pos: 22.5,6.5 + - pos: -13.5,-40.5 parent: 31 type: Transform - - uid: 1777 + - uid: 9515 components: - - pos: 17.5,9.5 + - rot: -1.5707963267948966 rad + pos: 49.5,-12.5 parent: 31 type: Transform - - uid: 1803 + - uid: 9525 components: - - pos: 8.5,6.5 + - rot: -1.5707963267948966 rad + pos: 12.5,-41.5 parent: 31 type: Transform - - uid: 1871 + - uid: 9535 components: - - pos: -1.5,27.5 + - rot: -1.5707963267948966 rad + pos: 50.5,-12.5 parent: 31 type: Transform - - uid: 1872 + - uid: 9536 components: - - pos: -0.5,27.5 + - rot: -1.5707963267948966 rad + pos: 51.5,-12.5 parent: 31 type: Transform - - uid: 1874 + - uid: 9598 components: - - pos: 10.5,29.5 + - rot: -1.5707963267948966 rad + pos: 19.5,-14.5 parent: 31 type: Transform - - uid: 1875 + - uid: 9658 components: - - pos: 9.5,31.5 + - pos: -3.5,-44.5 parent: 31 type: Transform - - uid: 1879 + - uid: 9659 components: - - pos: 7.5,33.5 + - pos: -2.5,-44.5 parent: 31 type: Transform - - uid: 1880 + - uid: 9660 components: - - pos: 6.5,33.5 + - pos: -0.5,-45.5 parent: 31 type: Transform - - uid: 1881 + - uid: 9661 components: - - pos: 5.5,33.5 + - pos: 0.5,-45.5 parent: 31 type: Transform - - uid: 1882 + - uid: 9662 components: - - pos: 4.5,33.5 + - pos: 1.5,-45.5 parent: 31 type: Transform - - uid: 1883 + - uid: 9692 components: - - pos: 3.5,33.5 + - rot: -1.5707963267948966 rad + pos: 12.5,-40.5 parent: 31 type: Transform - - uid: 1884 + - uid: 9693 components: - - pos: 2.5,33.5 + - rot: -1.5707963267948966 rad + pos: 12.5,-42.5 parent: 31 type: Transform - - uid: 1885 + - uid: 9700 components: - - pos: 1.5,33.5 + - rot: 1.5707963267948966 rad + pos: 58.5,-30.5 parent: 31 type: Transform - - uid: 1886 + - uid: 9723 components: - - pos: 0.5,33.5 + - pos: 54.5,7.5 parent: 31 type: Transform - - uid: 1887 + - uid: 9769 components: - - pos: -0.5,33.5 + - pos: -6.5,-33.5 parent: 31 type: Transform - - uid: 1889 + - uid: 9805 components: - - pos: -2.5,31.5 + - rot: 1.5707963267948966 rad + pos: 14.5,-34.5 parent: 31 type: Transform - - uid: 1891 + - uid: 9806 components: - - pos: 6.5,19.5 + - rot: 1.5707963267948966 rad + pos: 14.5,-35.5 parent: 31 type: Transform - - uid: 1904 + - uid: 9807 components: - - pos: -7.5,18.5 + - rot: 1.5707963267948966 rad + pos: 14.5,-36.5 parent: 31 type: Transform - - uid: 1949 + - uid: 9808 components: - - pos: -10.5,21.5 + - pos: 12.5,-45.5 parent: 31 type: Transform - - uid: 1959 + - uid: 9809 components: - - pos: -11.5,7.5 + - pos: 11.5,-45.5 parent: 31 type: Transform - - uid: 1969 + - uid: 9810 components: - - pos: -10.5,14.5 + - pos: 8.5,-45.5 parent: 31 type: Transform - - uid: 1979 + - uid: 9811 components: - - rot: 1.5707963267948966 rad - pos: -4.5,13.5 + - pos: 5.5,-47.5 parent: 31 type: Transform - - uid: 1996 + - uid: 9812 components: - - pos: -7.5,9.5 + - pos: 4.5,-47.5 parent: 31 type: Transform - - uid: 2064 + - uid: 9813 components: - - pos: -28.5,6.5 + - pos: 3.5,-47.5 parent: 31 type: Transform - - uid: 2095 + - uid: 9814 components: - - pos: -25.5,9.5 + - pos: 4.5,-45.5 parent: 31 type: Transform - - uid: 2099 + - uid: 9815 components: - - pos: -9.5,8.5 + - pos: -0.5,-47.5 parent: 31 type: Transform - - uid: 2115 + - uid: 9817 components: - - pos: 13.5,-1.5 + - pos: 0.5,-47.5 parent: 31 type: Transform - - uid: 2136 + - uid: 9823 components: - - pos: 8.5,-7.5 + - pos: -22.5,-39.5 parent: 31 type: Transform - - uid: 2149 + - uid: 9824 components: - - pos: 11.5,2.5 + - pos: -22.5,-38.5 parent: 31 type: Transform - - uid: 2150 + - uid: 9826 components: - - pos: 10.5,2.5 + - pos: -22.5,-37.5 parent: 31 type: Transform - - uid: 2151 + - uid: 9827 components: - - pos: 9.5,2.5 + - pos: -21.5,-39.5 parent: 31 type: Transform - - uid: 2152 + - uid: 9832 components: - - pos: 8.5,2.5 + - pos: -22.5,-34.5 parent: 31 type: Transform - - uid: 2153 + - uid: 9837 components: - - pos: 7.5,2.5 + - pos: -22.5,-35.5 parent: 31 type: Transform - - uid: 2204 + - uid: 9838 + components: + - pos: -39.5,14.5 + parent: 31 + type: Transform + - uid: 9889 components: - rot: -1.5707963267948966 rad - pos: 20.5,-13.5 + pos: -42.5,13.5 parent: 31 type: Transform - - uid: 2205 + - uid: 9896 components: - - pos: 20.5,-5.5 + - pos: -9.5,26.5 parent: 31 type: Transform - - uid: 2245 + - uid: 9949 components: - - pos: -7.5,6.5 + - rot: 1.5707963267948966 rad + pos: 43.5,-14.5 parent: 31 type: Transform - - uid: 2281 + - uid: 10061 components: - - pos: -2.5,-18.5 + - rot: -1.5707963267948966 rad + pos: 18.5,27.5 parent: 31 type: Transform - - uid: 2282 + - uid: 10064 components: - - pos: -4.5,-18.5 + - rot: -1.5707963267948966 rad + pos: 18.5,26.5 parent: 31 type: Transform - - uid: 2283 + - uid: 10065 components: - - pos: 0.5,-16.5 + - rot: -1.5707963267948966 rad + pos: 24.5,26.5 parent: 31 type: Transform - - uid: 2290 + - uid: 10066 components: - - pos: -4.5,-21.5 + - rot: -1.5707963267948966 rad + pos: 24.5,27.5 parent: 31 type: Transform - - uid: 2304 + - uid: 10067 components: - - pos: -2.5,-21.5 + - rot: -1.5707963267948966 rad + pos: 19.5,23.5 parent: 31 type: Transform - - uid: 2329 + - uid: 10068 components: - - rot: 1.5707963267948966 rad - pos: 47.5,24.5 + - rot: -1.5707963267948966 rad + pos: 19.5,24.5 parent: 31 type: Transform - - uid: 2423 + - uid: 10069 components: - - pos: 28.5,-14.5 + - rot: -1.5707963267948966 rad + pos: 23.5,24.5 parent: 31 type: Transform - - uid: 3152 + - uid: 10070 components: - - pos: 47.5,-18.5 + - rot: -1.5707963267948966 rad + pos: 23.5,23.5 parent: 31 type: Transform - - uid: 3157 + - uid: 10080 components: - - pos: 56.5,-25.5 + - rot: -1.5707963267948966 rad + pos: 21.5,28.5 parent: 31 type: Transform - - uid: 3158 + - uid: 10126 components: - - pos: 56.5,-24.5 + - pos: -1.5,36.5 parent: 31 type: Transform - - uid: 3842 + - uid: 10196 components: - - rot: 1.5707963267948966 rad - pos: -1.5,13.5 + - pos: -33.5,-14.5 parent: 31 type: Transform - - uid: 3844 + - uid: 10197 components: - - rot: 1.5707963267948966 rad - pos: -4.5,14.5 + - pos: -34.5,-15.5 parent: 31 type: Transform - - uid: 4032 + - uid: 10198 components: - - pos: 28.5,-13.5 + - pos: -35.5,-15.5 parent: 31 type: Transform - - uid: 4114 + - uid: 10226 components: - - pos: -12.5,6.5 + - pos: 61.5,-15.5 parent: 31 type: Transform - - uid: 4115 + - uid: 10372 components: - - pos: -3.5,6.5 + - rot: -1.5707963267948966 rad + pos: -42.5,14.5 parent: 31 type: Transform - - uid: 4117 + - uid: 10414 components: - - pos: -3.5,8.5 + - rot: -1.5707963267948966 rad + pos: 52.5,15.5 parent: 31 type: Transform - - uid: 4135 + - uid: 10438 components: - - rot: 1.5707963267948966 rad - pos: 10.5,-15.5 + - pos: -39.5,18.5 parent: 31 type: Transform - - uid: 4136 + - uid: 10520 components: - - rot: 1.5707963267948966 rad - pos: 10.5,-14.5 + - pos: 25.5,22.5 parent: 31 type: Transform - - uid: 4203 + - uid: 10604 components: - - rot: 3.141592653589793 rad - pos: -43.5,-8.5 + - pos: 44.5,-8.5 parent: 31 type: Transform - - uid: 4223 + - uid: 10712 components: - - pos: -2.5,9.5 + - pos: -44.5,7.5 parent: 31 type: Transform - - uid: 4236 + - uid: 10747 components: - - rot: 3.141592653589793 rad - pos: -43.5,-10.5 + - pos: -46.5,-8.5 parent: 31 type: Transform - - uid: 4240 + - uid: 10748 components: - - rot: 3.141592653589793 rad - pos: -42.5,-10.5 + - pos: -47.5,-8.5 parent: 31 type: Transform - - uid: 4241 + - uid: 10749 components: - - rot: 3.141592653589793 rad - pos: -42.5,-8.5 + - pos: -48.5,-8.5 parent: 31 type: Transform - - uid: 4376 + - uid: 10751 components: - - pos: 41.5,-26.5 + - pos: -45.5,-8.5 parent: 31 type: Transform - - uid: 4377 + - uid: 11049 components: - - pos: 45.5,-29.5 + - pos: 56.5,17.5 parent: 31 type: Transform - - uid: 4386 + - uid: 11050 components: - - rot: -1.5707963267948966 rad - pos: 37.5,-26.5 + - pos: 56.5,16.5 parent: 31 type: Transform - - uid: 4391 + - uid: 11052 components: - - pos: 59.5,-6.5 + - rot: -1.5707963267948966 rad + pos: 52.5,16.5 parent: 31 type: Transform - - uid: 4393 + - uid: 11053 components: - - pos: 58.5,6.5 + - rot: -1.5707963267948966 rad + pos: 52.5,17.5 parent: 31 type: Transform - - uid: 4394 + - uid: 11071 components: - - pos: 61.5,6.5 + - pos: 46.5,20.5 parent: 31 type: Transform - - uid: 4399 + - uid: 11090 components: - - rot: 3.141592653589793 rad - pos: 54.5,1.5 + - pos: 30.5,23.5 parent: 31 type: Transform - - uid: 4403 + - uid: 11110 components: - - rot: 3.141592653589793 rad - pos: 54.5,3.5 + - pos: -6.5,30.5 parent: 31 type: Transform - - uid: 4425 + - uid: 11112 components: - - pos: 58.5,-6.5 + - pos: -7.5,30.5 parent: 31 type: Transform - - uid: 4487 + - uid: 11113 components: - - pos: 34.5,-13.5 + - pos: -5.5,30.5 parent: 31 type: Transform - - uid: 4510 +- proto: GrilleBroken + entities: + - uid: 80 components: - - pos: 31.5,-23.5 + - rot: 1.5707963267948966 rad + pos: -40.5,20.5 parent: 31 type: Transform - - uid: 4532 + - uid: 552 components: - - rot: -1.5707963267948966 rad - pos: 36.5,-22.5 + - rot: 3.141592653589793 rad + pos: -42.5,12.5 parent: 31 type: Transform - - uid: 4595 + - uid: 831 components: - - pos: 41.5,-22.5 + - rot: 3.141592653589793 rad + pos: -7.5,33.5 parent: 31 type: Transform - - uid: 4596 + - uid: 1025 components: - - pos: 40.5,-22.5 + - rot: -1.5707963267948966 rad + pos: -8.5,32.5 parent: 31 type: Transform - - uid: 4597 + - uid: 1520 components: - - pos: 42.5,-26.5 + - rot: -1.5707963267948966 rad + pos: -4.5,34.5 parent: 31 type: Transform - - uid: 4598 + - uid: 3658 components: - - pos: 44.5,-27.5 + - rot: 3.141592653589793 rad + pos: 4.5,34.5 parent: 31 type: Transform - - uid: 4599 + - uid: 4025 components: - - pos: 44.5,-28.5 + - rot: 1.5707963267948966 rad + pos: 3.5,36.5 parent: 31 type: Transform - - uid: 4600 + - uid: 4220 components: - - pos: 44.5,-29.5 + - rot: 3.141592653589793 rad + pos: 34.5,-38.5 parent: 31 type: Transform - - uid: 4612 + - uid: 4444 components: - - rot: -1.5707963267948966 rad - pos: 36.5,-26.5 + - rot: 3.141592653589793 rad + pos: 61.5,-8.5 parent: 31 type: Transform - - uid: 4614 + - uid: 4447 components: - - pos: 34.5,-12.5 + - rot: 1.5707963267948966 rad + pos: 61.5,-13.5 parent: 31 type: Transform - - uid: 4618 + - uid: 4478 components: - - pos: 51.5,-30.5 + - rot: 3.141592653589793 rad + pos: 58.5,10.5 parent: 31 type: Transform - - uid: 4619 + - uid: 6467 components: - - pos: 53.5,-29.5 + - rot: -1.5707963267948966 rad + pos: 54.5,24.5 parent: 31 type: Transform - - uid: 4620 + - uid: 6742 components: - - pos: 54.5,-28.5 + - rot: 1.5707963267948966 rad + pos: 51.5,24.5 parent: 31 type: Transform - - uid: 4621 + - uid: 6744 components: - - pos: 56.5,-26.5 + - rot: 3.141592653589793 rad + pos: 58.5,21.5 parent: 31 type: Transform - - uid: 4622 + - uid: 6745 components: - - pos: 55.5,-22.5 + - rot: -1.5707963267948966 rad + pos: 50.5,24.5 parent: 31 type: Transform - - uid: 4624 + - uid: 6746 components: - - pos: 56.5,-23.5 + - pos: 58.5,20.5 parent: 31 type: Transform - - uid: 4625 + - uid: 6747 components: - - pos: 56.5,-22.5 + - rot: 1.5707963267948966 rad + pos: 54.5,24.5 parent: 31 type: Transform - - uid: 4660 + - uid: 6748 components: - - pos: 31.5,-25.5 + - rot: 1.5707963267948966 rad + pos: 56.5,11.5 parent: 31 type: Transform - - uid: 4684 + - uid: 6751 components: - - rot: 3.141592653589793 rad - pos: -41.5,-8.5 + - pos: 58.5,14.5 parent: 31 type: Transform - - uid: 4686 + - uid: 6841 components: - rot: 3.141592653589793 rad - pos: -41.5,-12.5 + pos: 58.5,15.5 parent: 31 type: Transform - - uid: 4702 + - uid: 7071 components: - rot: -1.5707963267948966 rad - pos: -9.5,18.5 + pos: 59.5,11.5 parent: 31 type: Transform - - uid: 4716 + - uid: 7080 components: - - pos: -26.5,-14.5 + - rot: 1.5707963267948966 rad + pos: -11.5,-42.5 parent: 31 type: Transform - - uid: 4844 + - uid: 7431 components: - - pos: 12.5,-32.5 + - rot: 3.141592653589793 rad + pos: -10.5,30.5 parent: 31 type: Transform - - uid: 4846 + - uid: 7579 components: - - pos: 2.5,-31.5 + - rot: 1.5707963267948966 rad + pos: 60.5,-15.5 parent: 31 type: Transform - - uid: 4847 + - uid: 7676 components: - - pos: 3.5,-31.5 + - rot: 3.141592653589793 rad + pos: 61.5,-12.5 parent: 31 type: Transform - - uid: 4848 + - uid: 8029 components: - - pos: 4.5,-31.5 + - rot: 1.5707963267948966 rad + pos: -11.5,29.5 parent: 31 type: Transform - - uid: 4879 + - uid: 8030 components: - - pos: -2.5,6.5 + - rot: -1.5707963267948966 rad + pos: -14.5,29.5 parent: 31 type: Transform - - uid: 4881 + - uid: 8031 components: - - pos: -0.5,6.5 + - rot: 3.141592653589793 rad + pos: -15.5,28.5 parent: 31 type: Transform - - uid: 4904 + - uid: 8032 components: - rot: 1.5707963267948966 rad - pos: 10.5,-13.5 + pos: -18.5,29.5 parent: 31 type: Transform - - uid: 4926 + - uid: 8033 components: - - pos: 15.5,20.5 + - rot: 1.5707963267948966 rad + pos: -23.5,29.5 parent: 31 type: Transform - - uid: 4928 + - uid: 8034 components: - - pos: 15.5,21.5 + - rot: -1.5707963267948966 rad + pos: -21.5,29.5 parent: 31 type: Transform - - uid: 5066 + - uid: 8035 components: - - pos: -1.5,9.5 + - rot: -1.5707963267948966 rad + pos: -28.5,29.5 parent: 31 type: Transform - - uid: 5067 + - uid: 8036 components: - - pos: -3.5,9.5 + - rot: -1.5707963267948966 rad + pos: -35.5,29.5 parent: 31 type: Transform - - uid: 5071 + - uid: 8037 components: - - pos: 13.5,1.5 + - rot: 1.5707963267948966 rad + pos: -35.5,29.5 parent: 31 type: Transform - - uid: 5072 + - uid: 8038 components: - - pos: 13.5,-2.5 + - pos: -39.5,22.5 parent: 31 type: Transform - - uid: 5082 + - uid: 8039 components: - - pos: 13.5,0.5 + - rot: 3.141592653589793 rad + pos: -39.5,23.5 parent: 31 type: Transform - - uid: 5106 + - uid: 8040 components: - - pos: 0.5,-14.5 + - pos: -39.5,25.5 parent: 31 type: Transform - - uid: 5117 + - uid: 8041 components: - - pos: -3.5,7.5 + - rot: 3.141592653589793 rad + pos: -39.5,26.5 parent: 31 type: Transform - - uid: 5123 + - uid: 8042 components: - - pos: 57.5,5.5 + - rot: 1.5707963267948966 rad + pos: -37.5,29.5 parent: 31 type: Transform - - uid: 5127 + - uid: 8308 components: - - pos: 55.5,5.5 + - pos: 58.5,-31.5 parent: 31 type: Transform - - uid: 5139 + - uid: 8369 components: - - pos: 8.5,-11.5 + - pos: 38.5,26.5 parent: 31 type: Transform - - uid: 5155 + - uid: 8375 components: - - rot: -1.5707963267948966 rad - pos: 26.5,20.5 + - rot: 1.5707963267948966 rad + pos: 20.5,-38.5 parent: 31 type: Transform - - uid: 5198 + - uid: 8376 components: - - pos: -28.5,18.5 + - pos: 22.5,-37.5 parent: 31 type: Transform - - uid: 5199 + - uid: 8377 components: - - pos: -29.5,18.5 + - rot: 3.141592653589793 rad + pos: 25.5,-38.5 parent: 31 type: Transform - - uid: 5215 + - uid: 8378 components: - - pos: -10.5,13.5 + - rot: 1.5707963267948966 rad + pos: 27.5,-38.5 parent: 31 type: Transform - - uid: 5244 + - uid: 8379 components: - - pos: -39.5,21.5 + - rot: -1.5707963267948966 rad + pos: 27.5,-38.5 parent: 31 type: Transform - - uid: 5248 + - uid: 8380 components: - - pos: -39.5,24.5 + - rot: -1.5707963267948966 rad + pos: 31.5,-38.5 parent: 31 type: Transform - - uid: 5251 + - uid: 8386 components: - - pos: -39.5,27.5 + - rot: -1.5707963267948966 rad + pos: 2.5,36.5 parent: 31 type: Transform - - uid: 5313 + - uid: 8387 components: - - pos: -43.5,9.5 + - rot: 1.5707963267948966 rad + pos: 56.5,-38.5 parent: 31 type: Transform - - uid: 5314 + - uid: 8388 components: - - rot: 3.141592653589793 rad - pos: -42.5,-12.5 + - pos: 58.5,-36.5 parent: 31 type: Transform - - uid: 5882 + - uid: 8389 components: - rot: 3.141592653589793 rad - pos: -43.5,-12.5 - parent: 31 - type: Transform - - uid: 5898 - components: - - pos: -41.5,7.5 + pos: 58.5,-35.5 parent: 31 type: Transform - - uid: 6366 + - uid: 8391 components: - - pos: 22.5,14.5 + - rot: 3.141592653589793 rad + pos: 58.5,-28.5 parent: 31 type: Transform - - uid: 6367 + - uid: 8392 components: - - pos: 40.5,18.5 + - rot: 3.141592653589793 rad + pos: 58.5,-26.5 parent: 31 type: Transform - - uid: 6369 + - uid: 8393 components: - - pos: 42.5,18.5 + - pos: 58.5,-26.5 parent: 31 type: Transform - - uid: 6380 + - uid: 8394 components: - - pos: 39.5,18.5 + - pos: 58.5,-20.5 parent: 31 type: Transform - - uid: 6381 + - uid: 8395 components: - - pos: 38.5,18.5 + - rot: 3.141592653589793 rad + pos: 58.5,-20.5 parent: 31 type: Transform - - uid: 6383 + - uid: 8396 components: - - pos: 37.5,18.5 + - rot: -1.5707963267948966 rad + pos: 58.5,-17.5 parent: 31 type: Transform - - uid: 6391 + - uid: 8397 components: - - pos: 35.5,18.5 + - pos: 58.5,-15.5 parent: 31 type: Transform - - uid: 6401 + - uid: 8398 components: - - pos: 34.5,18.5 + - rot: 3.141592653589793 rad + pos: 58.5,-13.5 parent: 31 type: Transform - - uid: 6405 + - uid: 8748 components: - - pos: 23.5,20.5 + - rot: -1.5707963267948966 rad + pos: 40.5,26.5 parent: 31 type: Transform - - uid: 6432 + - uid: 8749 components: - rot: -1.5707963267948966 rad - pos: 58.5,11.5 + pos: 46.5,26.5 parent: 31 type: Transform - - uid: 6435 + - uid: 9674 components: - - pos: 54.5,17.5 + - pos: 14.5,-33.5 parent: 31 type: Transform - - uid: 6440 + - uid: 9699 components: - - pos: 43.5,18.5 + - rot: 1.5707963267948966 rad + pos: 34.5,-38.5 parent: 31 type: Transform - - uid: 6445 + - uid: 9819 components: - - pos: 45.5,18.5 + - rot: -1.5707963267948966 rad + pos: 13.5,-45.5 parent: 31 type: Transform - - uid: 6446 + - uid: 9844 components: - - pos: 32.5,18.5 + - rot: -1.5707963267948966 rad + pos: 1.5,-47.5 parent: 31 type: Transform - - uid: 6447 + - uid: 9845 components: - - pos: 31.5,18.5 + - pos: 4.5,-46.5 parent: 31 type: Transform - - uid: 6453 + - uid: 9846 components: - - rot: -1.5707963267948966 rad - pos: 51.5,11.5 + - rot: 3.141592653589793 rad + pos: 4.5,-46.5 parent: 31 type: Transform - - uid: 6455 + - uid: 9848 components: - - pos: 33.5,18.5 + - pos: 11.5,-44.5 parent: 31 type: Transform - - uid: 6458 + - uid: 9850 components: - - pos: 45.5,7.5 + - rot: 1.5707963267948966 rad + pos: 10.5,-45.5 parent: 31 type: Transform - - uid: 6462 + - uid: 9851 components: - rot: -1.5707963267948966 rad - pos: 51.5,10.5 + pos: 9.5,-45.5 parent: 31 type: Transform - - uid: 6464 + - uid: 9852 components: - - pos: 45.5,9.5 + - rot: 3.141592653589793 rad + pos: 14.5,-37.5 parent: 31 type: Transform - - uid: 6472 + - uid: 9853 components: - - pos: 47.5,18.5 + - rot: 3.141592653589793 rad + pos: 13.5,-34.5 parent: 31 type: Transform - - uid: 6502 + - uid: 9854 components: - - pos: 52.5,17.5 + - rot: 3.141592653589793 rad + pos: -1.5,-46.5 parent: 31 type: Transform - - uid: 6503 + - uid: 9855 components: - - rot: -1.5707963267948966 rad - pos: 55.5,24.5 + - rot: 1.5707963267948966 rad + pos: -1.5,-47.5 parent: 31 type: Transform - - uid: 6504 + - uid: 9856 components: - - pos: 44.5,18.5 + - rot: -1.5707963267948966 rad + pos: 6.5,-47.5 parent: 31 type: Transform - - uid: 6505 + - uid: 9859 components: - rot: -1.5707963267948966 rad - pos: 51.5,12.5 + pos: -20.5,-39.5 parent: 31 type: Transform - - uid: 6508 + - uid: 9860 components: - - pos: 46.5,18.5 + - pos: -22.5,-36.5 parent: 31 type: Transform - - uid: 6527 + - uid: 9871 components: - - pos: 53.5,18.5 + - rot: 3.141592653589793 rad + pos: -22.5,-36.5 parent: 31 type: Transform - - uid: 6551 + - uid: 9874 components: - - pos: 48.5,18.5 + - rot: 1.5707963267948966 rad + pos: -18.5,-39.5 parent: 31 type: Transform - - uid: 6600 + - uid: 9879 components: - - rot: -1.5707963267948966 rad - pos: 51.5,9.5 + - rot: 1.5707963267948966 rad + pos: -21.5,-36.5 parent: 31 type: Transform - - uid: 6613 + - uid: 10144 components: - - pos: 36.5,18.5 + - rot: -1.5707963267948966 rad + pos: -6.5,-42.5 parent: 31 type: Transform - - uid: 6643 + - uid: 10225 components: - - rot: -1.5707963267948966 rad - pos: 58.5,16.5 + - rot: 1.5707963267948966 rad + pos: 60.5,-10.5 parent: 31 type: Transform - - uid: 6644 + - uid: 10227 components: - - rot: -1.5707963267948966 rad - pos: 58.5,17.5 + - pos: -10.5,30.5 parent: 31 type: Transform - - uid: 6645 + - uid: 10228 components: - rot: -1.5707963267948966 rad - pos: 58.5,23.5 + pos: 61.5,-13.5 parent: 31 type: Transform - - uid: 6646 + - uid: 10467 components: - - rot: -1.5707963267948966 rad - pos: 58.5,19.5 + - rot: 1.5707963267948966 rad + pos: -6.5,-42.5 parent: 31 type: Transform - - uid: 6647 + - uid: 10605 components: - - rot: -1.5707963267948966 rad - pos: 58.5,18.5 + - rot: 3.141592653589793 rad + pos: 44.5,-9.5 parent: 31 type: Transform - - uid: 6685 + - uid: 10708 components: - - pos: -36.5,29.5 + - pos: -0.5,37.5 parent: 31 type: Transform - - uid: 6686 +- proto: GunSafeLaserCarbine + entities: + - uid: 2132 components: - - pos: -34.5,29.5 + - pos: -13.5,21.5 parent: 31 type: Transform - - uid: 6687 +- proto: GunSafeRifleLecter + entities: + - uid: 7687 components: - - pos: -33.5,29.5 + - pos: -14.5,19.5 parent: 31 type: Transform - - uid: 6688 +- proto: GunSafeSubMachineGunDrozd + entities: + - uid: 4302 components: - - pos: -32.5,29.5 + - pos: -14.5,21.5 parent: 31 type: Transform - - uid: 6689 +- proto: Handcuffs + entities: + - uid: 8802 components: - - pos: -31.5,29.5 + - pos: 9.513287,30.488989 parent: 31 type: Transform - - uid: 6690 +- proto: HandheldGPSBasic + entities: + - uid: 3890 components: - - pos: -30.5,29.5 + - rot: 3.141592653589793 rad + pos: -6.615404,-28.415546 parent: 31 type: Transform - - uid: 6691 + - uid: 4699 components: - - pos: -30.5,28.5 + - pos: 26.279863,21.455433 parent: 31 type: Transform - - uid: 6725 + - uid: 10990 components: - rot: -1.5707963267948966 rad - pos: 58.5,22.5 + pos: 21.779633,-4.5862775 parent: 31 type: Transform - - uid: 6726 + - uid: 10991 components: - rot: -1.5707963267948966 rad - pos: 53.5,24.5 + pos: 21.750116,-4.5862775 parent: 31 type: Transform - - uid: 6727 +- proto: HandheldHealthAnalyzerUnpowered + entities: + - uid: 10030 components: - - rot: -1.5707963267948966 rad - pos: 49.5,24.5 + - pos: 17.362448,-18.309433 parent: 31 type: Transform - - uid: 6728 +- proto: HandLabeler + entities: + - uid: 695 components: - - rot: -1.5707963267948966 rad - pos: 58.5,24.5 + - pos: 22.522892,12.524126 parent: 31 type: Transform - - uid: 6729 + - uid: 2854 components: - - rot: -1.5707963267948966 rad - pos: 56.5,24.5 + - pos: -23.390205,-5.6188893 parent: 31 type: Transform - - uid: 6730 + - uid: 2932 components: - - rot: -1.5707963267948966 rad - pos: 57.5,24.5 + - pos: 14.506557,1.3566204 parent: 31 type: Transform - - uid: 6731 + - uid: 2949 components: - - rot: -1.5707963267948966 rad - pos: 52.5,24.5 + - pos: 14.506557,1.5610027 parent: 31 type: Transform - - uid: 6815 + - uid: 7126 components: - - pos: 41.5,18.5 + - pos: 22.40483,12.64212 parent: 31 type: Transform - - uid: 6863 + - uid: 7154 components: - - pos: 52.5,16.5 + - pos: 8.041532,18.530302 parent: 31 type: Transform - - uid: 6873 + - uid: 10139 components: - - rot: -1.5707963267948966 rad - pos: 58.5,13.5 + - pos: -2.5260825,30.718403 parent: 31 type: Transform - - uid: 6874 +- proto: HarmonicaInstrument + entities: + - uid: 7248 components: - - pos: 50.5,16.5 + - pos: -18.398912,10.183618 parent: 31 type: Transform - - uid: 6875 +- proto: HeatExchanger + entities: + - uid: 6580 components: - - pos: 54.5,16.5 + - pos: 49.5,23.5 parent: 31 type: Transform - - uid: 6876 + - uid: 7706 components: - - pos: 50.5,15.5 + - pos: 48.5,23.5 parent: 31 type: Transform - - uid: 6877 + - uid: 11054 components: - - pos: 50.5,17.5 + - pos: 49.5,22.5 parent: 31 type: Transform - - uid: 6878 + - uid: 11055 components: - - rot: -1.5707963267948966 rad - pos: 57.5,11.5 + - pos: 49.5,21.5 parent: 31 type: Transform - - uid: 6881 + - uid: 11056 components: - - rot: -1.5707963267948966 rad - pos: 58.5,12.5 + - pos: 49.5,20.5 parent: 31 type: Transform - - uid: 6928 + - uid: 11059 components: - - pos: 56.5,-6.5 + - pos: 48.5,20.5 parent: 31 type: Transform - - uid: 6948 + - uid: 11060 components: - - rot: 3.141592653589793 rad - pos: 51.5,-7.5 + - pos: 48.5,21.5 parent: 31 type: Transform - - uid: 6949 + - uid: 11061 components: - - rot: 3.141592653589793 rad - pos: 47.5,-7.5 + - pos: 48.5,22.5 parent: 31 type: Transform - - uid: 6958 +- proto: HighSecCommandLocked + entities: + - uid: 1052 components: - - pos: 51.5,-31.5 + - name: Vault + type: MetaData + - pos: 0.5,17.5 parent: 31 type: Transform - - uid: 6961 + - uid: 9195 components: - - pos: 47.5,-31.5 + - pos: 54.5,-9.5 parent: 31 type: Transform - - uid: 6962 +- proto: HospitalCurtains + entities: + - uid: 9695 components: - - pos: 47.5,-30.5 + - rot: -1.5707963267948966 rad + pos: 12.5,-42.5 parent: 31 type: Transform - - uid: 6963 + - uid: 9696 components: - - pos: 46.5,-29.5 + - rot: -1.5707963267948966 rad + pos: 12.5,-41.5 parent: 31 type: Transform - - uid: 6964 + - uid: 9697 components: - - pos: 34.5,-14.5 + - rot: -1.5707963267948966 rad + pos: 12.5,-40.5 parent: 31 type: Transform - - uid: 6967 +- proto: HospitalCurtainsOpen + entities: + - uid: 6587 components: - - pos: 40.5,-26.5 + - pos: 8.5,-8.5 parent: 31 type: Transform - - uid: 6971 + - uid: 7111 components: - - pos: 42.5,-22.5 + - pos: 8.5,-10.5 parent: 31 type: Transform - - uid: 6993 + - uid: 8224 components: - - pos: 35.5,-38.5 + - pos: 12.5,27.5 parent: 31 type: Transform - - uid: 6994 +- proto: hydroponicsSoil + entities: + - uid: 9666 components: - - pos: 32.5,-38.5 + - pos: 1.5,-44.5 parent: 31 type: Transform - - uid: 7011 + - uid: 9668 components: - - pos: 51.5,-18.5 + - pos: -0.5,-44.5 parent: 31 type: Transform - - uid: 7012 +- proto: HydroponicsToolClippers + entities: + - uid: 1138 components: - - pos: 51.5,-17.5 + - pos: -20.498135,-2.4408062 parent: 31 type: Transform - - uid: 7013 + - uid: 7744 components: - - pos: 50.5,-17.5 + - pos: -19.031883,8.817266 parent: 31 type: Transform - - uid: 7014 +- proto: HydroponicsToolHatchet + entities: + - uid: 90 components: - - pos: 49.5,-17.5 + - pos: 17.345112,-20.624432 parent: 31 type: Transform - - uid: 7015 + - uid: 1142 components: - - pos: 48.5,-17.5 + - pos: -19.529385,-2.4251812 parent: 31 type: Transform - - uid: 7016 +- proto: HydroponicsToolMiniHoe + entities: + - uid: 1055 components: - - pos: 47.5,-17.5 + - pos: -20.498135,-2.3626812 parent: 31 type: Transform - - uid: 7017 + - uid: 5633 components: - - pos: 52.5,-19.5 + - pos: -19.592669,8.758269 parent: 31 type: Transform - - uid: 7018 + - uid: 9672 components: - - pos: 53.5,-19.5 + - pos: -4.4002256,-42.332767 parent: 31 type: Transform - - uid: 7019 +- proto: HydroponicsToolScythe + entities: + - uid: 4130 components: - - pos: 54.5,-19.5 + - pos: -19.498135,-2.3783062 parent: 31 type: Transform - - uid: 7020 +- proto: HydroponicsToolSpade + entities: + - uid: 4131 components: - - pos: 54.5,-20.5 + - pos: -20.529385,-2.3470562 parent: 31 type: Transform - - uid: 7021 + - uid: 8850 components: - - pos: 54.5,-21.5 + - pos: -4.6953764,-41.91979 parent: 31 type: Transform - - uid: 7022 + - uid: 9506 components: - - pos: 55.5,-26.5 + - pos: -18.353035,8.817266 parent: 31 type: Transform - - uid: 7023 +- proto: hydroponicsTray + entities: + - uid: 775 components: - - pos: 54.5,-27.5 + - pos: -17.5,0.5 parent: 31 type: Transform - - uid: 7024 + - uid: 807 components: - - pos: 54.5,-29.5 + - pos: -18.5,-1.5 parent: 31 type: Transform - - uid: 7025 + - uid: 2147 components: - - pos: 52.5,-29.5 + - pos: -19.5,-1.5 parent: 31 type: Transform - - uid: 7038 + - uid: 2148 components: - - rot: -1.5707963267948966 rad - pos: 37.5,-22.5 + - pos: -17.5,-0.5 parent: 31 type: Transform - - uid: 7039 + - uid: 2457 components: - - rot: -1.5707963267948966 rad - pos: 35.5,-22.5 + - pos: -19.5,0.5 parent: 31 type: Transform - - uid: 7044 + - uid: 2766 components: - - pos: 28.5,-12.5 + - rot: -1.5707963267948966 rad + pos: -19.5,8.5 parent: 31 type: Transform - - uid: 7221 + - uid: 2909 components: - - pos: 34.5,20.5 + - rot: -1.5707963267948966 rad + pos: -18.5,8.5 parent: 31 type: Transform - - uid: 7226 + - uid: 2979 components: - - pos: 36.5,20.5 + - pos: -17.5,-1.5 parent: 31 type: Transform - - uid: 7227 + - uid: 3553 components: - - pos: 32.5,20.5 + - pos: -19.5,-0.5 parent: 31 type: Transform - - uid: 7233 + - uid: 3914 components: - - pos: 13.5,-5.5 + - pos: -18.5,0.5 parent: 31 type: Transform - - uid: 7274 + - uid: 3917 components: - - pos: 12.5,-6.5 + - pos: -18.5,-0.5 parent: 31 type: Transform - - uid: 7279 +- proto: HydroponicsTrayMachineCircuitboard + entities: + - uid: 9665 components: - - pos: 13.5,-7.5 + - pos: -2.8192544,-43.512707 parent: 31 type: Transform - - uid: 7378 +- proto: InflatableDoorStack + entities: + - uid: 3907 components: - - pos: -14.5,-23.5 + - pos: 45.490303,5.6922693 parent: 31 type: Transform - - uid: 7404 + - uid: 8991 components: - - rot: 3.141592653589793 rad - pos: -17.5,-27.5 + - pos: 43.533943,13.507707 parent: 31 type: Transform - - uid: 7447 +- proto: InflatableWallStack + entities: + - uid: 3679 components: - - rot: 3.141592653589793 rad - pos: 0.5,-32.5 + - pos: 45.490303,5.574275 parent: 31 type: Transform - - uid: 7448 + - uid: 8992 components: - - rot: 3.141592653589793 rad - pos: -0.5,-32.5 + - pos: 43.533943,13.493817 parent: 31 type: Transform - - uid: 7449 +- proto: IngotGold + entities: + - uid: 1555 components: - - rot: 3.141592653589793 rad - pos: -1.5,-32.5 + - pos: -0.9189515,16.662592 parent: 31 type: Transform - - uid: 7450 +- proto: IngotSilver + entities: + - uid: 4144 components: - - rot: 3.141592653589793 rad - pos: -2.5,-32.5 + - pos: -3.428735,16.721615 parent: 31 type: Transform - - uid: 7472 +- proto: IntercomAll + entities: + - uid: 9903 components: - - pos: -31.5,19.5 + - rot: -1.5707963267948966 rad + pos: 11.5,18.5 parent: 31 type: Transform - - uid: 7547 + - uid: 9904 components: - - pos: 34.5,26.5 + - rot: -1.5707963267948966 rad + pos: 9.5,24.5 parent: 31 type: Transform - - uid: 7560 +- proto: IntercomCommon + entities: + - uid: 9905 components: - - pos: -28.5,-14.5 + - rot: 1.5707963267948966 rad + pos: -26.5,-3.5 parent: 31 type: Transform - - uid: 7628 + - uid: 9906 components: - rot: -1.5707963267948966 rad - pos: -3.5,-29.5 + pos: -34.5,-8.5 parent: 31 type: Transform - - uid: 7672 + - uid: 9907 components: - - pos: -16.5,7.5 + - rot: -1.5707963267948966 rad + pos: -33.5,7.5 parent: 31 type: Transform - - uid: 7692 + - uid: 9908 components: - - pos: -39.5,12.5 + - rot: 3.141592653589793 rad + pos: -12.5,2.5 parent: 31 type: Transform - - uid: 7748 + - uid: 9909 components: - - pos: 49.5,-31.5 + - rot: 3.141592653589793 rad + pos: 23.5,2.5 parent: 31 type: Transform - - uid: 7798 + - uid: 9910 components: - - pos: 13.5,-10.5 + - rot: 1.5707963267948966 rad + pos: 1.5,10.5 parent: 31 type: Transform - - uid: 7800 + - uid: 9911 components: - - pos: 13.5,-11.5 + - rot: 1.5707963267948966 rad + pos: 0.5,18.5 parent: 31 type: Transform - - uid: 7838 + - uid: 9912 components: - - pos: -18.5,26.5 + - rot: 1.5707963267948966 rad + pos: 1.5,-7.5 parent: 31 type: Transform - - uid: 7839 + - uid: 9913 components: - - pos: -15.5,26.5 + - rot: -1.5707963267948966 rad + pos: 6.5,-18.5 parent: 31 type: Transform - - uid: 7840 +- proto: IntercomEngineering + entities: + - uid: 6528 components: - - pos: -12.5,26.5 + - rot: -1.5707963267948966 rad + pos: 32.5,20.5 parent: 31 type: Transform - - uid: 7867 + - uid: 9897 components: - - pos: 28.5,-25.5 + - rot: 3.141592653589793 rad + pos: 29.5,2.5 parent: 31 type: Transform - - uid: 7868 + - uid: 9898 components: - - pos: 28.5,-23.5 + - rot: 3.141592653589793 rad + pos: 40.5,10.5 parent: 31 type: Transform - - uid: 7904 + - uid: 9899 components: - - pos: 13.5,-8.5 + - rot: 1.5707963267948966 rad + pos: 45.5,10.5 parent: 31 type: Transform - - uid: 8021 + - uid: 9900 components: - - pos: -15.5,29.5 + - rot: 3.141592653589793 rad + pos: 47.5,0.5 parent: 31 type: Transform - - uid: 8022 + - uid: 9901 components: - - pos: -16.5,29.5 + - rot: 3.141592653589793 rad + pos: 56.5,-0.5 parent: 31 type: Transform - - uid: 8023 + - uid: 9902 components: - - pos: -17.5,29.5 + - pos: 30.5,-0.5 parent: 31 type: Transform - - uid: 8024 + - uid: 10890 components: - - pos: -22.5,29.5 + - rot: 1.5707963267948966 rad + pos: 47.5,-2.5 parent: 31 type: Transform - - uid: 8025 +- proto: IntercomMedical + entities: + - uid: 1822 components: - - pos: -29.5,29.5 + - rot: 3.141592653589793 rad + pos: 8.5,-6.5 parent: 31 type: Transform - - uid: 8027 + - uid: 9881 components: - - pos: -10.5,29.5 + - rot: 3.141592653589793 rad + pos: 12.5,-12.5 parent: 31 type: Transform - - uid: 8052 + - uid: 9882 components: - - pos: -41.5,6.5 + - rot: 1.5707963267948966 rad + pos: 16.5,-16.5 parent: 31 type: Transform - - uid: 8056 + - uid: 9883 components: - - pos: 33.5,26.5 + - rot: -1.5707963267948966 rad + pos: 25.5,-5.5 parent: 31 type: Transform - - uid: 8084 + - uid: 9884 components: - - pos: -16.5,6.5 + - rot: 3.141592653589793 rad + pos: 19.5,-3.5 parent: 31 type: Transform - - uid: 8108 +- proto: IntercomScience + entities: + - uid: 258 components: - - rot: 1.5707963267948966 rad - pos: 61.5,0.5 + - rot: -1.5707963267948966 rad + pos: -6.5,-18.5 parent: 31 type: Transform - - uid: 8109 + - uid: 1096 components: - - rot: 1.5707963267948966 rad - pos: 61.5,1.5 + - pos: 1.5,-25.5 parent: 31 type: Transform - - uid: 8110 + - uid: 4285 components: - - rot: 1.5707963267948966 rad - pos: 61.5,2.5 + - rot: 3.141592653589793 rad + pos: -14.5,-19.5 parent: 31 type: Transform - - uid: 8111 + - uid: 10536 components: - - rot: 1.5707963267948966 rad - pos: 61.5,3.5 + - rot: -1.5707963267948966 rad + pos: -9.5,-24.5 parent: 31 type: Transform - - uid: 8112 +- proto: IntercomSecurity + entities: + - uid: 2088 components: - - rot: 1.5707963267948966 rad - pos: 61.5,4.5 + - rot: -1.5707963267948966 rad + pos: -1.5,11.5 parent: 31 type: Transform - - uid: 8145 + - uid: 7827 components: - - pos: 52.5,8.5 + - pos: -6.5,6.5 parent: 31 type: Transform - - uid: 8146 + - uid: 8908 components: - - pos: 61.5,-1.5 + - pos: -15.5,15.5 parent: 31 type: Transform - - uid: 8216 +- proto: IntercomService + entities: + - uid: 910 components: - - rot: -1.5707963267948966 rad - pos: 35.5,-26.5 + - rot: 3.141592653589793 rad + pos: -9.5,-2.5 parent: 31 type: Transform - - uid: 8217 + - uid: 3859 components: - rot: -1.5707963267948966 rad - pos: 31.5,-24.5 + pos: -21.5,-11.5 parent: 31 type: Transform - - uid: 8222 + - uid: 9876 components: - - pos: -32.5,19.5 + - rot: 3.141592653589793 rad + pos: -17.5,2.5 parent: 31 type: Transform - - uid: 8293 + - uid: 9878 components: - - pos: 50.5,-31.5 + - rot: 3.141592653589793 rad + pos: -2.5,-7.5 parent: 31 type: Transform - - uid: 8294 + - uid: 9885 components: - - pos: 48.5,-31.5 + - rot: 3.141592653589793 rad + pos: 10.5,-28.5 parent: 31 type: Transform - - uid: 8305 + - uid: 9893 components: - - rot: 1.5707963267948966 rad - pos: 58.5,-29.5 + - rot: -1.5707963267948966 rad + pos: -15.5,-2.5 parent: 31 type: Transform - - uid: 8309 +- proto: IntercomSupply + entities: + - uid: 6438 components: - rot: 1.5707963267948966 rad - pos: 58.5,-32.5 + pos: 29.5,22.5 parent: 31 type: Transform - - uid: 8310 + - uid: 9894 components: - - rot: 1.5707963267948966 rad - pos: 58.5,-33.5 + - pos: 16.5,8.5 parent: 31 type: Transform - - uid: 8313 + - uid: 9895 components: - - rot: 1.5707963267948966 rad - pos: -1.5,14.5 + - pos: 23.5,14.5 parent: 31 type: Transform - - uid: 8327 +- proto: JanitorialTrolley + entities: + - uid: 2291 components: - - pos: 58.5,-7.5 + - rot: -1.5707963267948966 rad + pos: -19.5,-11.5 parent: 31 type: Transform - - uid: 8328 +- proto: JawsOfLife + entities: + - uid: 5676 components: - - pos: 58.5,-8.5 + - pos: 40.49833,0.109007 parent: 31 type: Transform - - uid: 8329 +- proto: JetpackBlueFilled + entities: + - uid: 3862 components: - - pos: 58.5,-9.5 - parent: 31 + - flags: InContainer + type: MetaData + - parent: 7057 type: Transform - - uid: 8330 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 8219 components: - - pos: 58.5,-12.5 + - pos: 35.333374,-3.561453 parent: 31 type: Transform - - uid: 8331 +- proto: JetpackMini + entities: + - uid: 6251 components: - - pos: 58.5,-16.5 + - pos: 6.5050597,9.5957365 parent: 31 type: Transform - - uid: 8332 + - uid: 9480 components: - - pos: 58.5,-18.5 + - pos: 6.5050597,9.9238615 parent: 31 type: Transform - - uid: 8333 +- proto: JetpackMiniFilled + entities: + - uid: 9322 components: - - pos: 58.5,-19.5 + - pos: 29.511814,16.65632 parent: 31 type: Transform - - uid: 8334 +- proto: JetpackSecurityFilled + entities: + - uid: 1121 components: - - pos: 58.5,-21.5 + - pos: -11.571391,18.68531 parent: 31 type: Transform - - uid: 8335 +- proto: KalimbaInstrument + entities: + - uid: 10631 components: - - pos: 58.5,-22.5 + - pos: 42.38984,-10.466663 parent: 31 type: Transform - - uid: 8336 +- proto: KitchenMicrowave + entities: + - uid: 893 components: - - pos: 58.5,-23.5 + - pos: -14.5,-1.5 parent: 31 type: Transform - - uid: 8337 + - uid: 1357 components: - - pos: 58.5,-24.5 + - pos: -15.5,11.5 parent: 31 type: Transform - - uid: 8338 + - uid: 6692 components: - - pos: 58.5,-25.5 + - pos: -7.5,-18.5 parent: 31 type: Transform - - uid: 8339 +- proto: KitchenReagentGrinder + entities: + - uid: 1166 components: - - pos: 58.5,-27.5 + - pos: 19.5,1.5 parent: 31 type: Transform - - uid: 8340 + - uid: 4156 components: - - pos: 58.5,-34.5 + - pos: -14.5,-0.5 parent: 31 type: Transform - - uid: 8341 + - uid: 7405 components: - - pos: 58.5,-37.5 + - pos: -16.5,11.5 parent: 31 type: Transform - - uid: 8342 +- proto: KitchenSpike + entities: + - uid: 8432 components: - - pos: 58.5,-38.5 + - pos: -10.5,-3.5 parent: 31 type: Transform - - uid: 8343 +- proto: Lamp + entities: + - uid: 616 components: - - pos: 57.5,-38.5 + - pos: 28.30586,10.796111 parent: 31 type: Transform - - uid: 8347 + - uid: 4095 components: - - pos: -40.5,-10.5 + - pos: -30.466906,-1.5231686 parent: 31 type: Transform - - uid: 8349 + - uid: 4925 components: - - pos: 32.5,26.5 + - pos: 37.66952,-0.30827445 parent: 31 type: Transform - - uid: 8350 + - uid: 5057 components: - - pos: 30.5,-38.5 + - pos: -16.880192,-25.028112 parent: 31 type: Transform - - uid: 8351 + - uid: 6022 components: - - pos: 29.5,-38.5 + - pos: -7.462167,20.657312 parent: 31 type: Transform - - uid: 8352 + - uid: 7279 components: - - pos: 28.5,-38.5 + - pos: -4.6126356,-20.229195 parent: 31 type: Transform - - uid: 8353 + - uid: 7645 components: - - pos: 26.5,-38.5 + - pos: -11.52235,-31.126213 parent: 31 type: Transform - - uid: 8354 + - uid: 7852 components: - - pos: 24.5,-38.5 + - pos: 26.628683,-25.257757 parent: 31 type: Transform - - uid: 8355 + - uid: 9143 components: - - pos: 23.5,-38.5 + - pos: 14.479344,-6.1264844 parent: 31 type: Transform - - uid: 8356 +- proto: LampGold + entities: + - uid: 490 components: - - pos: 22.5,-38.5 + - pos: 10.372139,23.658413 parent: 31 type: Transform - - uid: 8357 + - uid: 1422 components: - - pos: 21.5,-38.5 + - rot: -1.5707963267948966 rad + pos: 7.852048,19.178608 parent: 31 type: Transform - - uid: 8362 + - uid: 4092 components: - - pos: 42.5,26.5 + - pos: -30.54503,-5.3981686 parent: 31 type: Transform - - uid: 8363 + - uid: 4178 components: - - pos: 44.5,26.5 + - pos: 0.41178536,-5.2814264 parent: 31 type: Transform - - uid: 8364 + - uid: 7149 components: - - pos: 45.5,26.5 + - pos: 6.5934343,24.65432 parent: 31 type: Transform - - uid: 8365 + - uid: 7319 components: - - pos: -6.5,-35.5 + - pos: 11.433,-31.299496 parent: 31 type: Transform - - uid: 8366 + - uid: 7826 components: - - pos: -7.5,-35.5 + - pos: 8.54651,-28.293444 parent: 31 type: Transform - - uid: 8367 + - uid: 8447 components: - - pos: -9.5,-35.5 + - pos: -1.4903483,1.69441 parent: 31 type: Transform - - uid: 8368 + - uid: 8725 components: - - pos: -5.5,-35.5 + - pos: -36.511345,-29.258835 parent: 31 type: Transform - - uid: 8371 +- proto: LampInterrogator + entities: + - uid: 7367 components: - - pos: 43.5,26.5 + - pos: -0.6087055,14.0836935 parent: 31 type: Transform - - uid: 8372 +- proto: Lantern + entities: + - uid: 2951 components: - - pos: 2.5,-38.5 + - pos: -31.237429,17.709938 parent: 31 type: Transform - - uid: 8373 + - uid: 9761 components: - - pos: 1.5,-38.5 + - pos: -16.572165,-38.46513 parent: 31 type: Transform - - uid: 8381 +- proto: LargeBeaker + entities: + - uid: 5074 components: - - rot: 1.5707963267948966 rad - pos: -41.5,-10.5 + - pos: 19.088842,1.7523946 parent: 31 type: Transform - - uid: 8382 + - uid: 5081 components: - - pos: -39.5,-10.5 + - pos: 19.088842,1.5023946 parent: 31 type: Transform - - uid: 8383 +- proto: LidSalami + entities: + - uid: 10821 components: - - pos: -38.5,-10.5 + - pos: -2.4760625,33.567844 parent: 31 type: Transform - - uid: 8390 +- proto: LightBulb + entities: + - uid: 3882 components: - - pos: -39.5,-12.5 + - pos: -22.419735,-24.791834 parent: 31 type: Transform - - uid: 8448 +- proto: Lighter + entities: + - uid: 3506 components: - - pos: -2.5,-38.5 + - rot: 1.5707963267948966 rad + pos: 28.678698,9.469505 parent: 31 type: Transform - - uid: 8449 + - uid: 9757 components: - - pos: -1.5,-38.5 + - pos: -16.29771,-39.00967 parent: 31 type: Transform - - uid: 8469 +- proto: LockerAtmosphericsFilled + entities: + - uid: 6562 components: - - pos: -0.5,-38.5 + - pos: 44.5,12.5 parent: 31 type: Transform - - uid: 8484 + - uid: 6563 components: - - pos: -26.5,-27.5 + - pos: 44.5,11.5 parent: 31 type: Transform - - uid: 8485 +- proto: LockerBoozeFilled + entities: + - uid: 584 components: - - pos: -27.5,-27.5 + - pos: -11.5,-6.5 parent: 31 type: Transform - - uid: 8486 +- proto: LockerBotanistFilled + entities: + - uid: 782 components: - - pos: -27.5,-25.5 + - pos: -17.5,1.5 parent: 31 type: Transform - - uid: 8487 +- proto: LockerCaptainFilledHardsuit + entities: + - uid: 5737 components: - - pos: -26.5,-25.5 + - pos: 10.5,26.5 parent: 31 type: Transform - - uid: 8558 +- proto: LockerChemistryFilled + entities: + - uid: 5094 components: - - pos: -40.5,-12.5 + - pos: 19.5,-2.5 parent: 31 type: Transform - - uid: 8566 +- proto: LockerChiefEngineerFilledHardsuit + entities: + - uid: 558 components: - - pos: -37.5,-24.5 + - pos: 37.5,-1.5 parent: 31 type: Transform - - uid: 8567 +- proto: LockerChiefMedicalOfficerFilledHardsuit + entities: + - uid: 4134 components: - - pos: -37.5,-23.5 + - pos: 25.5,-9.5 parent: 31 type: Transform - - uid: 8568 +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 3114 components: - - pos: -36.5,-22.5 + - pos: 57.5,8.5 parent: 31 type: Transform - - uid: 8569 + - uid: 9595 components: - - pos: -40.5,-8.5 + - pos: 22.5,-14.5 parent: 31 type: Transform - - uid: 8570 +- proto: LockerEngineerFilled + entities: + - uid: 548 components: - - pos: -34.5,-22.5 + - pos: 35.5,-0.5 parent: 31 type: Transform - - uid: 8571 + - uid: 818 components: - - pos: -33.5,-23.5 + - pos: 35.5,-2.5 parent: 31 type: Transform - - uid: 8572 + - uid: 3369 components: - - pos: -33.5,-24.5 + - pos: 35.5,-1.5 parent: 31 type: Transform - - uid: 8575 +- proto: LockerEvidence + entities: + - uid: 7908 components: - - pos: -37.5,-28.5 + - pos: -9.5,13.5 parent: 31 type: Transform - - uid: 8576 + - uid: 7944 components: - - pos: -32.5,-33.5 + - pos: -9.5,14.5 parent: 31 type: Transform - - uid: 8601 +- proto: LockerFreezer + entities: + - uid: 4175 components: - - rot: 3.141592653589793 rad - pos: -29.5,-32.5 + - pos: -11.5,-3.5 parent: 31 type: Transform - - uid: 8747 + - uid: 7057 components: - - pos: 0.5,-38.5 + - name: safe + type: MetaData + - pos: -0.5,18.5 parent: 31 type: Transform - - uid: 8784 + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3849 + - 3862 + - 4195 + - 4896 + - 7128 + - 4585 + - 7635 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 6021 components: - - pos: -39.5,-8.5 + - pos: 9.5,21.5 parent: 31 type: Transform - - uid: 8819 +- proto: LockerHeadOfSecurityFilledHardsuit + entities: + - uid: 4046 components: - - pos: 4.5,26.5 + - pos: -9.5,22.5 parent: 31 type: Transform - - uid: 8820 +- proto: LockerMedicalFilled + entities: + - uid: 802 components: - - pos: 2.5,26.5 + - pos: 23.5,-7.5 parent: 31 type: Transform - - uid: 8946 + - uid: 1149 components: - - rot: 3.141592653589793 rad - pos: -1.5,2.5 + - pos: 22.5,-7.5 parent: 31 type: Transform - - uid: 8947 + - uid: 1151 components: - - rot: 3.141592653589793 rad - pos: -2.5,2.5 + - pos: 21.5,-7.5 parent: 31 type: Transform - - uid: 8948 +- proto: LockerMedicineFilled + entities: + - uid: 4336 components: - - rot: 3.141592653589793 rad - pos: -3.5,2.5 + - pos: 15.5,-11.5 parent: 31 type: Transform - - uid: 8999 + - uid: 7247 components: - - rot: -1.5707963267948966 rad - pos: 26.5,21.5 + - pos: 11.5,-7.5 parent: 31 type: Transform - - uid: 9032 +- proto: LockerParamedicFilled + entities: + - uid: 7489 components: - - pos: 33.5,-38.5 + - pos: 24.5,-7.5 parent: 31 type: Transform - - uid: 9124 +- proto: LockerQuarterMasterFilled + entities: + - uid: 8847 components: - - pos: 5.5,-11.5 + - pos: 27.5,10.5 parent: 31 type: Transform - - uid: 9125 +- proto: LockerResearchDirectorFilledHardsuit + entities: + - uid: 9701 components: - - pos: 5.5,-10.5 + - pos: -5.5,-23.5 parent: 31 type: Transform - - uid: 9126 +- proto: LockerSalvageSpecialistFilledHardsuit + entities: + - uid: 16 components: - - pos: 5.5,-8.5 + - pos: 24.5,20.5 parent: 31 type: Transform - - uid: 9127 + - uid: 9534 components: - - pos: 5.5,-7.5 + - pos: 24.5,21.5 parent: 31 type: Transform - - uid: 9170 + - uid: 9948 components: - - pos: -38.5,-7.5 + - pos: 24.5,19.5 parent: 31 type: Transform - - uid: 9172 +- proto: LockerScienceFilled + entities: + - uid: 823 components: - - pos: -39.5,-5.5 + - pos: -13.5,-27.5 parent: 31 type: Transform - - uid: 9174 + - uid: 4459 components: - - pos: -37.5,-12.5 + - pos: -14.5,-27.5 parent: 31 type: Transform - - uid: 9175 + - uid: 10441 components: - - pos: -39.5,-1.5 + - pos: -7.5,-23.5 parent: 31 type: Transform - - uid: 9197 +- proto: LockerSecurityFilled + entities: + - uid: 803 components: - - pos: -39.5,-3.5 + - pos: -12.5,13.5 parent: 31 type: Transform - - uid: 9203 + - uid: 804 components: - - rot: -1.5707963267948966 rad - pos: 1.5,-30.5 + - pos: -13.5,13.5 parent: 31 type: Transform - - uid: 9208 + - uid: 7246 components: - - pos: -36.5,-12.5 + - pos: -11.5,13.5 parent: 31 type: Transform - - uid: 9209 +- proto: LockerWardenFilledHardsuit + entities: + - uid: 5 components: - - pos: -35.5,-12.5 + - pos: 0.5,7.5 parent: 31 type: Transform - - uid: 9219 +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 10904 components: - - rot: 1.5707963267948966 rad - pos: -1.5,12.5 + - pos: 54.5,-1.5 parent: 31 type: Transform - - uid: 9231 +- proto: MachineAnomalyGenerator + entities: + - uid: 6098 components: - - pos: -41.5,-0.5 + - pos: -5.5,-30.5 parent: 31 type: Transform - - uid: 9232 + - enabled: False + type: AmbientSound +- proto: MachineAnomalyVessel + entities: + - uid: 3422 components: - - pos: -42.5,-0.5 + - pos: -7.5,-32.5 parent: 31 type: Transform - - uid: 9233 +- proto: MachineAPE + entities: + - uid: 5705 components: - - pos: -43.5,-0.5 + - rot: -1.5707963267948966 rad + pos: -5.5,-25.5 parent: 31 type: Transform - - uid: 9234 + - uid: 9123 components: - - pos: -43.5,11.5 + - rot: -1.5707963267948966 rad + pos: -6.5,-25.5 parent: 31 type: Transform - - uid: 9235 +- proto: MachineArtifactAnalyzer + entities: + - uid: 9418 components: - - pos: -42.5,11.5 + - pos: -15.5,-30.5 parent: 31 type: Transform - - uid: 9236 + - links: + - 9292 + type: DeviceLinkSink +- proto: MachineFrame + entities: + - uid: 7464 components: - - pos: -41.5,11.5 + - pos: 10.5,-17.5 parent: 31 type: Transform - - uid: 9257 +- proto: MachineFrameDestroyed + entities: + - uid: 9667 components: - - pos: -28.5,-19.5 + - pos: -3.5,-43.5 parent: 31 type: Transform - - uid: 9258 +- proto: MagazinePistol + entities: + - uid: 4977 components: - - pos: -28.5,-18.5 + - pos: -14.297329,20.472649 parent: 31 type: Transform - - uid: 9259 + - uid: 4983 components: - - pos: -27.5,-20.5 + - pos: -14.297329,20.316399 parent: 31 type: Transform - - uid: 9260 + - uid: 5141 components: - - pos: -26.5,-20.5 + - pos: -14.250454,20.691399 parent: 31 type: Transform - - uid: 9263 +- proto: MagazinePistolSubMachineGunTopMounted + entities: + - uid: 10123 components: - - pos: -28.5,-16.5 + - pos: -8.471462,20.3102 parent: 31 type: Transform - - uid: 9264 + - uid: 10124 components: - - pos: -27.5,-16.5 + - pos: -8.471462,20.4352 parent: 31 type: Transform - - uid: 9265 +- proto: MaintenanceFluffSpawner + entities: + - uid: 113 components: - - pos: -26.5,-16.5 + - pos: -29.5,-5.5 parent: 31 type: Transform - - uid: 9331 + - uid: 3663 components: - - rot: -1.5707963267948966 rad - pos: -28.5,2.5 + - pos: -15.5,9.5 parent: 31 type: Transform - - uid: 9332 + - uid: 3737 components: - - rot: -1.5707963267948966 rad - pos: -29.5,2.5 + - pos: -28.5,-19.5 parent: 31 type: Transform - - uid: 9362 + - uid: 4504 components: - - pos: -25.5,-23.5 + - pos: 35.5,-13.5 parent: 31 type: Transform - - uid: 9415 + - uid: 5149 components: - - pos: -14.5,-30.5 + - pos: 45.5,-2.5 parent: 31 type: Transform - - uid: 9416 + - uid: 5714 components: - - pos: -15.5,-30.5 + - pos: -3.5,-12.5 parent: 31 type: Transform - - uid: 9417 + - uid: 7949 components: - - pos: -16.5,-30.5 + - pos: 15.5,-19.5 parent: 31 type: Transform - - uid: 9418 + - uid: 8753 components: - - pos: -13.5,-33.5 + - pos: -20.5,-23.5 parent: 31 type: Transform - - uid: 9419 + - uid: 9800 components: - - pos: -14.5,-33.5 + - pos: -4.5,-39.5 parent: 31 type: Transform - - uid: 9420 + - uid: 11127 components: - - pos: -15.5,-33.5 + - pos: -7.5,29.5 parent: 31 type: Transform - - uid: 9421 + - uid: 11128 components: - - pos: -16.5,-33.5 + - pos: -6.5,29.5 parent: 31 type: Transform - - uid: 9422 +- proto: MaintenancePlantSpawner + entities: + - uid: 982 components: - - pos: -17.5,-33.5 + - pos: -26.5,18.5 parent: 31 type: Transform - - uid: 9423 + - uid: 1018 components: - - pos: -18.5,-35.5 + - pos: -22.5,-19.5 parent: 31 type: Transform - - uid: 9424 + - uid: 1019 components: - - pos: -17.5,-35.5 + - pos: 27.5,-6.5 parent: 31 type: Transform - - uid: 9425 + - uid: 1020 components: - - pos: -16.5,-35.5 + - pos: -0.5,21.5 parent: 31 type: Transform - - uid: 9426 + - uid: 7453 components: - - pos: -15.5,-35.5 + - pos: -5.5,-12.5 parent: 31 type: Transform - - uid: 9427 + - uid: 9755 components: - - pos: -14.5,-35.5 + - pos: -0.5,-44.5 parent: 31 type: Transform - - uid: 9428 + - uid: 9756 components: - - pos: -13.5,-35.5 + - pos: 1.5,-44.5 parent: 31 type: Transform - - uid: 9429 + - uid: 9802 components: - - pos: -11.5,-35.5 + - pos: -13.5,-34.5 parent: 31 type: Transform - - uid: 9700 +- proto: MaintenanceToolSpawner + entities: + - uid: 3738 components: - - rot: 1.5707963267948966 rad - pos: 58.5,-30.5 + - pos: -27.5,-19.5 parent: 31 type: Transform - - uid: 9707 + - uid: 3739 components: - - pos: -40.5,18.5 + - pos: -32.5,-15.5 parent: 31 type: Transform - - uid: 9711 + - uid: 7409 components: - - pos: -40.5,17.5 + - pos: -5.5,-8.5 parent: 31 type: Transform - - uid: 9713 + - uid: 8018 components: - - pos: -40.5,15.5 + - pos: 38.5,-3.5 parent: 31 type: Transform - - uid: 9759 + - uid: 8558 components: - - pos: -10.5,-35.5 + - pos: 10.5,-19.5 parent: 31 type: Transform - - uid: 9760 + - uid: 8754 components: - - pos: -4.5,-35.5 + - pos: -20.5,-24.5 parent: 31 type: Transform - - uid: 9761 + - uid: 9754 components: - - pos: -3.5,-35.5 + - pos: 11.5,-42.5 parent: 31 type: Transform - - uid: 9768 + - uid: 9801 components: - - pos: -7.5,-33.5 + - pos: 10.5,-37.5 parent: 31 type: Transform - - uid: 9769 + - uid: 10528 components: - - pos: -6.5,-33.5 + - pos: -16.5,-14.5 parent: 31 type: Transform - - uid: 9770 + - uid: 10651 components: - - pos: -8.5,-33.5 + - pos: 44.5,-13.5 parent: 31 type: Transform - - uid: 9771 + - uid: 10798 components: - - pos: -9.5,-33.5 + - pos: 21.5,-19.5 parent: 31 type: Transform - - uid: 10061 + - uid: 10824 components: - - rot: -1.5707963267948966 rad - pos: 18.5,27.5 + - pos: 15.5,16.5 parent: 31 type: Transform - - uid: 10064 + - uid: 11125 components: - - rot: -1.5707963267948966 rad - pos: 18.5,26.5 + - pos: -5.5,29.5 parent: 31 type: Transform - - uid: 10065 + - uid: 11230 components: - rot: -1.5707963267948966 rad - pos: 24.5,26.5 + pos: -27.5,-14.5 parent: 31 type: Transform - - uid: 10066 +- proto: MaintenanceWeaponSpawner + entities: + - uid: 3306 components: - - rot: -1.5707963267948966 rad - pos: 24.5,27.5 + - rot: 3.141592653589793 rad + pos: 46.5,-2.5 parent: 31 type: Transform - - uid: 10067 + - uid: 3740 components: - - rot: -1.5707963267948966 rad - pos: 19.5,23.5 + - pos: -28.5,-19.5 parent: 31 type: Transform - - uid: 10068 + - uid: 4924 components: - - rot: -1.5707963267948966 rad - pos: 19.5,24.5 + - pos: -29.5,-4.5 parent: 31 type: Transform - - uid: 10069 + - uid: 7866 components: - - rot: -1.5707963267948966 rad - pos: 23.5,24.5 + - pos: 27.5,-25.5 parent: 31 type: Transform - - uid: 10070 + - uid: 9737 components: - - rot: -1.5707963267948966 rad - pos: 23.5,23.5 + - pos: 7.5,-41.5 parent: 31 type: Transform - - uid: 10080 + - uid: 11126 components: - - rot: -1.5707963267948966 rad - pos: 21.5,28.5 + - pos: -7.5,28.5 parent: 31 type: Transform -- proto: GrilleBroken +- proto: MaterialCloth entities: - - uid: 434 + - uid: 7605 components: - - pos: 5.5,-38.5 + - pos: 7.241931,18.889677 parent: 31 type: Transform - - uid: 2462 +- proto: MaterialCloth1 + entities: + - uid: 9720 components: - - pos: 58.5,-5.5 + - pos: 11.486905,-40.435936 parent: 31 type: Transform - - uid: 4220 + - uid: 9724 components: - - rot: 3.141592653589793 rad - pos: 34.5,-38.5 + - pos: 11.604966,-40.553932 parent: 31 type: Transform - - uid: 4420 +- proto: MaterialCloth10 + entities: + - uid: 2130 components: - - rot: 1.5707963267948966 rad - pos: 55.5,-6.5 + - pos: 17.323816,-21.401403 parent: 31 type: Transform - - uid: 4427 +- proto: MaterialDiamond + entities: + - uid: 9628 components: - - rot: -1.5707963267948966 rad - pos: 60.5,-6.5 + - pos: -3.6640515,18.450077 parent: 31 type: Transform - - uid: 4463 +- proto: MaterialDurathread + entities: + - uid: 7652 components: - - rot: 3.141592653589793 rad - pos: 57.5,-6.5 + - pos: 7.2571726,18.545927 parent: 31 type: Transform - - uid: 4478 +- proto: MaterialReclaimer + entities: + - uid: 9264 components: - - rot: 3.141592653589793 rad - pos: 58.5,10.5 + - pos: -32.5,-17.5 parent: 31 type: Transform - - uid: 6467 +- proto: MaterialWoodPlank1 + entities: + - uid: 9680 components: - - rot: -1.5707963267948966 rad - pos: 54.5,24.5 + - rot: 1.5707963267948966 rad + pos: -0.17545861,-42.75658 parent: 31 type: Transform - - uid: 6742 + - uid: 9681 components: - - rot: 1.5707963267948966 rad - pos: 51.5,24.5 + - pos: 0.0016323328,-43.228558 parent: 31 type: Transform - - uid: 6743 + - uid: 10636 components: - rot: 1.5707963267948966 rad - pos: 48.5,24.5 + pos: 41.622444,-9.954917 parent: 31 type: Transform - - uid: 6744 + - uid: 10637 components: - - rot: 3.141592653589793 rad - pos: 58.5,21.5 + - pos: 42.891594,-6.769076 parent: 31 type: Transform - - uid: 6745 + - uid: 10638 components: - rot: -1.5707963267948966 rad - pos: 50.5,24.5 + pos: 42.86208,-6.88707 parent: 31 type: Transform - - uid: 6746 + - uid: 10639 components: - - pos: 58.5,20.5 + - pos: 40.648445,-8.538988 parent: 31 type: Transform - - uid: 6747 +- proto: MedicalBed + entities: + - uid: 630 components: - - rot: 1.5707963267948966 rad - pos: 54.5,24.5 + - pos: 7.5,-11.5 parent: 31 type: Transform - - uid: 6748 + - uid: 7812 components: - - rot: 1.5707963267948966 rad - pos: 56.5,11.5 + - pos: 7.5,-7.5 parent: 31 type: Transform - - uid: 6751 +- proto: MedicalTechFab + entities: + - uid: 9105 components: - - pos: 58.5,14.5 + - pos: 16.5,-11.5 parent: 31 type: Transform - - uid: 6841 + - materialWhiteList: + - Glass + - Steel + - Plastic + - Durathread + - Cloth + type: MaterialStorage +- proto: MedkitBruteFilled + entities: + - uid: 7283 components: - - rot: 3.141592653589793 rad - pos: 58.5,15.5 + - pos: 19.467945,-9.477724 parent: 31 type: Transform - - uid: 7071 +- proto: MedkitBurnFilled + entities: + - uid: 8747 components: - - rot: -1.5707963267948966 rad - pos: 59.5,11.5 + - pos: 19.479948,-9.162237 parent: 31 type: Transform - - uid: 7431 +- proto: MedkitCombatFilled + entities: + - uid: 6876 components: - - rot: -1.5707963267948966 rad - pos: -9.5,29.5 + - pos: 22.567698,-9.440117 parent: 31 type: Transform - - uid: 8029 +- proto: MedkitFilled + entities: + - uid: 1040 components: - - rot: 1.5707963267948966 rad - pos: -11.5,29.5 + - pos: -0.4864614,32.561848 parent: 31 type: Transform - - uid: 8030 + - uid: 8490 components: - - rot: -1.5707963267948966 rad - pos: -14.5,29.5 + - pos: 19.479948,-8.483771 parent: 31 type: Transform - - uid: 8031 +- proto: MedkitOxygenFilled + entities: + - uid: 2196 components: - - rot: 3.141592653589793 rad - pos: -15.5,28.5 + - pos: 12.428257,-5.4459076 parent: 31 type: Transform - - uid: 8032 + - uid: 7782 components: - - rot: 1.5707963267948966 rad - pos: -18.5,29.5 + - pos: -26.514608,20.497671 parent: 31 type: Transform - - uid: 8033 +- proto: MedkitRadiationFilled + entities: + - uid: 10809 components: - - rot: 1.5707963267948966 rad - pos: -23.5,29.5 + - pos: 19.479948,-8.719759 parent: 31 type: Transform - - uid: 8034 +- proto: MedkitToxinFilled + entities: + - uid: 10826 components: - - rot: -1.5707963267948966 rad - pos: -21.5,29.5 + - pos: 19.450434,-9.014745 parent: 31 type: Transform - - uid: 8035 +- proto: MinimoogInstrument + entities: + - uid: 8736 components: - - rot: -1.5707963267948966 rad - pos: -28.5,29.5 + - rot: 1.5707963267948966 rad + pos: -32.5,-28.5 parent: 31 type: Transform - - uid: 8036 +- proto: MonkeyCubeWrapped + entities: + - uid: 8871 components: - - rot: -1.5707963267948966 rad - pos: -35.5,29.5 + - pos: -9.196694,-7.814363 parent: 31 type: Transform - - uid: 8037 +- proto: MopBucket + entities: + - uid: 2301 components: - - rot: 1.5707963267948966 rad - pos: -35.5,29.5 + - pos: -19.682484,-11.924354 parent: 31 type: Transform - - uid: 8038 + - uid: 8881 components: - - pos: -39.5,22.5 + - pos: 26.48231,1.5389521 parent: 31 type: Transform - - uid: 8039 + - uid: 10216 components: - - rot: 3.141592653589793 rad - pos: -39.5,23.5 + - pos: -31.665886,-19.55848 parent: 31 type: Transform - - uid: 8040 +- proto: MopItem + entities: + - uid: 15 components: - - pos: -39.5,25.5 + - pos: 25.68625,0.6714213 parent: 31 type: Transform - - uid: 8041 + - uid: 778 components: - - rot: 3.141592653589793 rad - pos: -39.5,26.5 + - pos: 25.905,0.6557963 parent: 31 type: Transform - - uid: 8042 + - uid: 786 components: - - rot: 1.5707963267948966 rad - pos: -37.5,29.5 + - pos: 26.06125,0.6245463 parent: 31 type: Transform - - uid: 8308 + - uid: 2708 components: - - pos: 58.5,-31.5 + - pos: -18.42709,-10.56736 parent: 31 type: Transform - - uid: 8369 + - uid: 10217 components: - - pos: 38.5,26.5 + - pos: -31.683014,-19.621332 parent: 31 type: Transform - - uid: 8375 +- proto: Morgue + entities: + - uid: 681 components: - - rot: 1.5707963267948966 rad - pos: 20.5,-38.5 + - pos: 14.5,-13.5 parent: 31 type: Transform - - uid: 8376 + - uid: 699 components: - - pos: 22.5,-37.5 + - rot: 3.141592653589793 rad + pos: 14.5,-17.5 parent: 31 type: Transform - - uid: 8377 + - uid: 2172 components: - - rot: 3.141592653589793 rad - pos: 25.5,-38.5 + - pos: 12.5,-13.5 parent: 31 type: Transform - - uid: 8378 + - uid: 7643 components: - - rot: 1.5707963267948966 rad - pos: 27.5,-38.5 + - rot: 3.141592653589793 rad + pos: 12.5,-17.5 parent: 31 type: Transform - - uid: 8379 + - uid: 8941 components: - - rot: -1.5707963267948966 rad - pos: 27.5,-38.5 + - pos: 13.5,-13.5 parent: 31 type: Transform - - uid: 8380 + - uid: 8998 components: - - rot: -1.5707963267948966 rad - pos: 31.5,-38.5 + - rot: 3.141592653589793 rad + pos: 13.5,-17.5 parent: 31 type: Transform - - uid: 8387 +- proto: MouseTimedSpawner + entities: + - uid: 1641 components: - - rot: 1.5707963267948966 rad - pos: 56.5,-38.5 + - pos: -12.5,-12.5 parent: 31 type: Transform - - uid: 8388 +- proto: Multitool + entities: + - uid: 1038 components: - - pos: 58.5,-36.5 + - pos: 5.4978743,31.63788 parent: 31 type: Transform - - uid: 8389 + - uid: 4636 components: - - rot: 3.141592653589793 rad - pos: 58.5,-35.5 + - pos: 56.74084,8.556389 parent: 31 type: Transform - - uid: 8391 + - uid: 11282 components: - - rot: 3.141592653589793 rad - pos: 58.5,-28.5 + - pos: -2.7462387,7.7338686 parent: 31 type: Transform - - uid: 8392 +- proto: MysteryFigureBox + entities: + - uid: 1179 components: - - rot: 3.141592653589793 rad - pos: 58.5,-26.5 + - pos: -0.38767862,16.609253 parent: 31 type: Transform - - uid: 8393 + - uid: 3927 components: - - pos: 58.5,-26.5 + - pos: 11.702873,-23.250063 parent: 31 type: Transform - - uid: 8394 +- proto: NetworkConfigurator + entities: + - uid: 10995 components: - - pos: 58.5,-20.5 + - pos: 8.333701,-17.377625 parent: 31 type: Transform - - uid: 8395 +- proto: NitrogenCanister + entities: + - uid: 1807 components: - - rot: 3.141592653589793 rad - pos: 58.5,-20.5 + - pos: 35.5,9.5 parent: 31 type: Transform - - uid: 8396 + - uid: 3869 components: - - rot: -1.5707963267948966 rad - pos: 58.5,-17.5 + - pos: -3.5,-8.5 parent: 31 type: Transform - - uid: 8397 + - uid: 6865 components: - - pos: 58.5,-15.5 + - pos: 34.5,23.5 parent: 31 type: Transform - - uid: 8398 + - uid: 7282 components: - - rot: 3.141592653589793 rad - pos: 58.5,-13.5 + - pos: 52.5,5.5 parent: 31 type: Transform - - uid: 8399 + - uid: 7780 components: - - pos: 58.5,-11.5 + - pos: -29.5,13.5 parent: 31 type: Transform - - uid: 8400 + - uid: 7983 components: - - rot: 3.141592653589793 rad - pos: 58.5,-11.5 + - pos: 27.5,-3.5 parent: 31 type: Transform - - uid: 8401 + - uid: 9799 components: - - rot: 3.141592653589793 rad - pos: 58.5,-10.5 + - pos: 6.5,-39.5 parent: 31 type: Transform - - uid: 8402 + - uid: 11271 components: - - pos: 58.5,-10.5 + - pos: 32.5,21.5 parent: 31 type: Transform - - uid: 8748 + - uid: 11272 components: - - rot: -1.5707963267948966 rad - pos: 40.5,26.5 + - pos: -26.5,-19.5 parent: 31 type: Transform - - uid: 8749 +- proto: NitrogenTankFilled + entities: + - uid: 9624 components: - - rot: -1.5707963267948966 rad - pos: 46.5,26.5 + - pos: -5.613141,-19.356611 parent: 31 type: Transform - - uid: 9027 + - uid: 10652 components: - - rot: -1.5707963267948966 rad - pos: 7.5,-38.5 + - pos: 43.475277,-13.455894 parent: 31 type: Transform - - uid: 9348 +- proto: NitrousOxideCanister + entities: + - uid: 19 components: - - rot: 1.5707963267948966 rad - pos: -3.5,-38.5 + - pos: 35.5,11.5 parent: 31 type: Transform - - uid: 9430 +- proto: NitrousOxideTankFilled + entities: + - uid: 10028 components: - - pos: -12.5,-35.5 + - pos: 18.18887,-18.427427 parent: 31 type: Transform - - uid: 9431 +- proto: NuclearBomb + entities: + - uid: 4217 components: - - rot: 1.5707963267948966 rad - pos: -19.5,-35.5 + - pos: -1.5,18.5 parent: 31 type: Transform - - uid: 9699 +- proto: NuclearBombKeg + entities: + - uid: 9842 components: - - rot: 1.5707963267948966 rad - pos: 34.5,-38.5 + - pos: -13.5,-11.5 parent: 31 type: Transform - - uid: 9762 +- proto: Ointment + entities: + - uid: 2199 components: - rot: -1.5707963267948966 rad - pos: -8.5,-35.5 + pos: 12.601061,-4.88571 parent: 31 type: Transform - - uid: 9763 +- proto: OnionSeeds + entities: + - uid: 9678 components: - rot: 1.5707963267948966 rad - pos: -8.5,-35.5 + pos: -0.9280933,-43.78903 parent: 31 type: Transform - - uid: 9764 +- proto: OperatingTable + entities: + - uid: 4915 components: - - pos: -3.5,-34.5 + - pos: 20.5,-16.5 parent: 31 type: Transform -- proto: GunSafeLaserCarbine +- proto: OreProcessor entities: - - uid: 2132 + - uid: 7113 components: - - pos: -13.5,21.5 + - pos: 18.5,13.5 parent: 31 type: Transform -- proto: GunSafeRifleLecter +- proto: OxygenCanister entities: - - uid: 7687 + - uid: 1089 components: - - pos: -14.5,19.5 + - pos: 52.5,6.5 parent: 31 type: Transform -- proto: GunSafeSubMachineGunDrozd - entities: - - uid: 4302 + - uid: 1194 components: - - pos: -14.5,21.5 + - pos: -4.5,-8.5 parent: 31 type: Transform -- proto: Handcuffs - entities: - - uid: 8802 + - uid: 1738 components: - - pos: 9.513287,30.488989 + - pos: 35.5,10.5 parent: 31 type: Transform -- proto: HandheldGPSBasic - entities: - - uid: 7260 + - uid: 3576 components: - - pos: 22.037428,-4.466707 + - pos: 6.5,7.5 parent: 31 type: Transform - - uid: 7263 + - uid: 4157 components: - - pos: 22.037428,-4.466707 + - pos: 30.5,22.5 parent: 31 type: Transform -- proto: HandLabeler - entities: - - uid: 1175 + - uid: 5770 components: - - pos: 13.617025,12.483693 + - pos: 60.5,6.5 parent: 31 type: Transform - - uid: 1247 + - uid: 6585 components: - - pos: -2.5,30.5 + - pos: 6.5,8.5 parent: 31 type: Transform - - uid: 2854 + - uid: 7496 components: - - pos: -23.390205,-5.6188893 + - pos: 14.5,-31.5 parent: 31 type: Transform - - uid: 2932 + - uid: 7781 components: - - pos: 14.506557,1.3566204 + - pos: -28.5,13.5 parent: 31 type: Transform - - uid: 2949 + - uid: 9054 components: - - pos: 14.506557,1.5610027 + - pos: 36.5,23.5 parent: 31 type: Transform - - uid: 7150 + - uid: 9448 components: - - pos: 13.523275,12.639943 + - pos: -23.5,-31.5 parent: 31 type: Transform - - uid: 7154 + - uid: 9798 components: - - pos: 8.041532,18.530302 + - pos: 4.5,-39.5 parent: 31 type: Transform -- proto: HeatExchanger + - uid: 11273 + components: + - pos: -25.5,-19.5 + parent: 31 + type: Transform +- proto: OxygenTankFilled entities: - - uid: 6557 + - uid: 8740 components: - - pos: 46.5,22.5 + - pos: -32.388412,-27.529545 parent: 31 type: Transform - - uid: 6578 +- proto: PaintingCafeTerraceAtNight + entities: + - uid: 7804 components: - - pos: 47.5,22.5 + - pos: 13.5,24.5 parent: 31 type: Transform - - uid: 6580 +- proto: PaintingMonkey + entities: + - uid: 8859 components: - - pos: 47.5,21.5 + - pos: -4.5,-7.5 parent: 31 type: Transform - - uid: 6808 +- proto: PaintingMoony + entities: + - uid: 8370 components: - - pos: 46.5,21.5 + - pos: 22.5,-8.5 parent: 31 type: Transform - - uid: 6813 +- proto: PaintingTheGreatWave + entities: + - uid: 726 components: - - pos: 46.5,20.5 + - pos: 7.5,22.5 parent: 31 type: Transform - - uid: 6814 +- proto: PaintingTheSonOfMan + entities: + - uid: 11044 components: - - pos: 47.5,20.5 + - pos: -3.5,-18.5 parent: 31 type: Transform - - uid: 6824 +- proto: Paper + entities: + - uid: 968 components: - - pos: 47.5,19.5 + - pos: -1.344388,25.58412 parent: 31 type: Transform - - uid: 6840 + - uid: 1071 components: - - pos: 46.5,19.5 + - pos: -24.037928,-5.9436545 parent: 31 type: Transform -- proto: HighSecCommandLocked - entities: - - uid: 1052 + - uid: 1132 components: - - name: Vault - type: MetaData - - pos: 0.5,17.5 + - pos: -24.147303,-5.8967795 parent: 31 type: Transform -- proto: HospitalCurtainsOpen - entities: - - uid: 252 + - uid: 2356 components: - - pos: 8.5,-4.5 + - pos: -24.256678,-5.7405295 parent: 31 type: Transform - - uid: 6587 + - uid: 7230 components: - - pos: 8.5,-8.5 + - pos: -19.27266,-5.542589 parent: 31 type: Transform - - uid: 7111 + - uid: 7318 components: - - pos: 8.5,-10.5 + - pos: 11.683,-31.56512 parent: 31 type: Transform -- proto: hydroponicsSoil - entities: - - uid: 6576 + - uid: 7323 components: - - rot: 3.141592653589793 rad - pos: 48.5,-27.5 + - pos: 11.808,-31.50262 parent: 31 type: Transform - - uid: 10126 + - uid: 7327 components: - - rot: 3.141592653589793 rad - pos: 49.5,-27.5 + - pos: 11.886125,-31.455746 parent: 31 type: Transform - - uid: 10127 + - uid: 7328 + components: + - pos: 11.761125,-31.361996 + parent: 31 + type: Transform + - uid: 8743 + components: + - flags: InContainer + type: MetaData + - parent: 8742 + type: Transform + - content: > + Weh. + type: Paper + - canCollide: False + type: Physics + - uid: 9738 components: - - rot: 3.141592653589793 rad - pos: 50.5,-27.5 + - rot: -1.5707963267948966 rad + pos: 11.392193,-41.961483 parent: 31 type: Transform - - uid: 10128 +- proto: PaperBin10 + entities: + - uid: 7324 components: - - rot: 3.141592653589793 rad - pos: 47.5,-26.5 + - pos: -2.5,8.5 parent: 31 type: Transform - - uid: 10129 +- proto: PaperBin5 + entities: + - uid: 503 components: - - rot: 3.141592653589793 rad - pos: 51.5,-26.5 + - pos: -17.5,-26.5 parent: 31 type: Transform -- proto: HydroponicsToolClippers +- proto: PaperOffice entities: - - uid: 1138 + - uid: 824 components: - - pos: -20.498135,-2.4408062 + - pos: 14.22177,12.601002 parent: 31 type: Transform - - uid: 7785 + - uid: 2170 components: - rot: 1.5707963267948966 rad - pos: -17.811472,9.49695 + pos: 7.6286554,1.6747794 parent: 31 type: Transform - - uid: 10131 + - uid: 2221 components: - - pos: 49.403038,-27.102642 + - pos: -19.27266,-5.365598 parent: 31 type: Transform -- proto: HydroponicsToolHatchet - entities: - - uid: 1142 + - uid: 4533 components: - - pos: -19.529385,-2.4251812 + - pos: 15.727041,8.471209 parent: 31 type: Transform - - uid: 10134 + - uid: 4611 components: - - pos: 49.310444,-27.079494 + - rot: 1.5707963267948966 rad + pos: 11.643844,-23.885773 parent: 31 type: Transform -- proto: HydroponicsToolMiniHoe - entities: - - uid: 1055 + - uid: 5614 components: - - pos: -20.498135,-2.3626812 + - pos: 7.5388665,-3.406831 parent: 31 type: Transform - - uid: 7788 + - uid: 7229 components: - - pos: -17.564865,9.562233 + - pos: -19.27266,-5.483592 parent: 31 type: Transform - - uid: 10130 + - uid: 9148 components: - - pos: 49.356743,-27.044771 + - pos: 7.361776,-3.3478336 parent: 31 type: Transform -- proto: HydroponicsToolScythe - entities: - - uid: 4130 + - uid: 9712 components: - - pos: -19.498135,-2.3783062 + - pos: -16.864128,11.363559 parent: 31 type: Transform - - uid: 10132 + - uid: 9759 components: - - pos: 49.356743,-27.12579 + - rot: 3.141592653589793 rad + pos: -14.535623,-39.379585 parent: 31 type: Transform -- proto: HydroponicsToolSpade - entities: - - uid: 4131 + - uid: 10307 components: - - pos: -20.529385,-2.3470562 + - rot: 3.141592653589793 rad + pos: -15.702781,-19.417158 parent: 31 type: Transform - - uid: 7407 + - uid: 10786 components: - - pos: -17.485664,9.577604 + - pos: 14.251285,12.542005 parent: 31 type: Transform - - uid: 10133 +- proto: ParchisBoard + entities: + - uid: 2501 components: - - pos: 49.43776,-26.998476 + - pos: -23.526257,-2.4008582 parent: 31 type: Transform -- proto: hydroponicsTray +- proto: ParticleAcceleratorControlBoxUnfinished entities: - - uid: 775 + - uid: 4569 components: - - pos: -17.5,0.5 + - pos: 57.5,1.5 parent: 31 type: Transform - - uid: 807 +- proto: ParticleAcceleratorEmitterForeUnfinished + entities: + - uid: 4562 components: - - pos: -18.5,-1.5 + - rot: 1.5707963267948966 rad + pos: 59.5,2.5 parent: 31 type: Transform - - uid: 2147 +- proto: ParticleAcceleratorEmitterPortUnfinished + entities: + - uid: 6300 components: - - pos: -19.5,-1.5 + - rot: 1.5707963267948966 rad + pos: 59.5,3.5 parent: 31 type: Transform - - uid: 2148 +- proto: ParticleAcceleratorEmitterStarboardUnfinished + entities: + - uid: 4560 components: - - pos: -17.5,-0.5 + - rot: 1.5707963267948966 rad + pos: 59.5,1.5 parent: 31 type: Transform - - uid: 2457 +- proto: ParticleAcceleratorEndCapUnfinished + entities: + - uid: 4571 components: - - pos: -19.5,0.5 + - rot: 1.5707963267948966 rad + pos: 56.5,2.5 parent: 31 type: Transform - - uid: 2979 +- proto: ParticleAcceleratorFuelChamberUnfinished + entities: + - uid: 6310 components: - - pos: -17.5,-1.5 + - rot: 1.5707963267948966 rad + pos: 57.5,2.5 parent: 31 type: Transform - - uid: 3553 +- proto: ParticleAcceleratorPowerBoxUnfinished + entities: + - uid: 4570 components: - - pos: -19.5,-0.5 + - rot: 1.5707963267948966 rad + pos: 58.5,3.5 parent: 31 type: Transform - - uid: 3914 +- proto: PartRodMetal + entities: + - uid: 1300 components: - - pos: -18.5,0.5 + - rot: 3.141592653589793 rad + pos: 50.50942,4.811885 parent: 31 type: Transform - - uid: 3917 + - uid: 6364 components: - - pos: -18.5,-0.5 + - rot: 3.141592653589793 rad + pos: 50.60317,4.624385 parent: 31 type: Transform - - uid: 7832 +- proto: PartRodMetal1 + entities: + - uid: 9682 components: - - pos: -16.5,8.5 + - rot: 3.141592653589793 rad + pos: -2.9502268,-42.132244 parent: 31 type: Transform -- proto: InflatableDoorStack - entities: - - uid: 8991 + - uid: 10640 components: - - pos: 43.533943,13.507707 + - pos: 44.987167,-9.130011 parent: 31 type: Transform -- proto: InflatableWallStack +- proto: PartRodMetal10 entities: - - uid: 8992 + - uid: 9714 components: - - pos: 43.533943,13.493817 + - rot: 3.141592653589793 rad + pos: 11.569283,-41.135525 parent: 31 type: Transform -- proto: IngotSilver +- proto: Pen entities: - - uid: 4144 + - uid: 863 components: - - pos: -3.428735,16.721615 + - rot: -1.5707963267948966 rad + pos: -16.707977,-25.58053 parent: 31 type: Transform -- proto: IntercomAll - entities: - - uid: 9903 + - uid: 967 components: - - rot: -1.5707963267948966 rad - pos: 11.5,18.5 + - pos: -1.563138,24.568495 parent: 31 type: Transform - - uid: 9904 + - uid: 2031 components: - - rot: -1.5707963267948966 rad - pos: 9.5,24.5 + - pos: -24.647303,-6.4436545 parent: 31 type: Transform -- proto: IntercomCommon - entities: - - uid: 9905 + - uid: 2032 components: - - rot: 1.5707963267948966 rad - pos: -26.5,-3.5 + - pos: -23.350428,-5.2092795 parent: 31 type: Transform - - uid: 9906 + - uid: 2355 components: - - rot: -1.5707963267948966 rad - pos: -34.5,-8.5 + - pos: -23.709803,-6.4905295 parent: 31 type: Transform - - uid: 9907 + - uid: 6995 components: - rot: -1.5707963267948966 rad - pos: -33.5,7.5 + pos: -16.893642,11.245564 parent: 31 type: Transform - - uid: 9908 + - uid: 8744 components: - - rot: 3.141592653589793 rad - pos: -12.5,2.5 + - pos: -35.660393,-24.67745 parent: 31 type: Transform - - uid: 9909 + - uid: 8840 components: - - rot: 3.141592653589793 rad - pos: 23.5,2.5 + - pos: 7.355826,32.45485 parent: 31 type: Transform - - uid: 9910 + - uid: 8867 components: - - rot: 1.5707963267948966 rad - pos: 1.5,10.5 + - pos: 31.722767,6.708726 parent: 31 type: Transform - - uid: 9911 + - uid: 9760 components: - - rot: 1.5707963267948966 rad - pos: 0.5,18.5 + - pos: -14.565138,-39.497578 parent: 31 type: Transform - - uid: 9912 + - uid: 11042 components: - - rot: 1.5707963267948966 rad - pos: 1.5,-7.5 + - pos: 22.626728,-10.546311 parent: 31 type: Transform - - uid: 9913 +- proto: PenCap + entities: + - uid: 9627 components: - - rot: -1.5707963267948966 rad - pos: 6.5,-18.5 + - pos: -3.637568,17.05955 parent: 31 type: Transform -- proto: IntercomEngineering +- proto: PersonalAI entities: - - uid: 9897 + - uid: 979 components: - - rot: 3.141592653589793 rad - pos: 29.5,2.5 + - flags: SessionSpecific + type: MetaData + - pos: 2.5129576,32.47221 parent: 31 type: Transform - - uid: 9898 + - uid: 2780 components: - - rot: 3.141592653589793 rad - pos: 40.5,10.5 + - flags: SessionSpecific + type: MetaData + - pos: -24.675209,-5.91818 parent: 31 type: Transform - - uid: 9899 + - uid: 7898 components: - - rot: 1.5707963267948966 rad - pos: 45.5,10.5 + - flags: SessionSpecific + type: MetaData + - pos: 7.5388803,-23.388987 parent: 31 type: Transform - - uid: 9900 +- proto: PianoInstrument + entities: + - uid: 8425 components: - rot: 3.141592653589793 rad - pos: 47.5,0.5 + pos: -4.5,1.5 parent: 31 type: Transform - - uid: 9901 +- proto: Pickaxe + entities: + - uid: 10818 components: - rot: 3.141592653589793 rad - pos: 56.5,-0.5 + pos: 3.2719321,-34.29595 parent: 31 type: Transform - - uid: 9902 +- proto: PillCanister + entities: + - uid: 6298 components: - - pos: 30.5,-0.5 + - pos: 15.008175,-6.2804565 parent: 31 type: Transform -- proto: IntercomMedical +- proto: PillIron entities: - - uid: 9369 + - uid: 9743 components: - rot: 3.141592653589793 rad - pos: 9.5,-18.5 + pos: 11.067526,-42.40396 parent: 31 type: Transform - - uid: 9569 +- proto: PinpointerNuclear + entities: + - uid: 1216 components: - - rot: 3.141592653589793 rad - pos: 7.5,-3.5 + - pos: -1.53811,16.627865 parent: 31 type: Transform - - uid: 9880 +- proto: PlaqueAtmos + entities: + - uid: 6564 components: - - rot: -1.5707963267948966 rad - pos: 13.5,-3.5 + - pos: 43.5,14.5 parent: 31 type: Transform - - uid: 9881 +- proto: PlasmaCanister + entities: + - uid: 10009 components: - - rot: 3.141592653589793 rad - pos: 12.5,-12.5 + - pos: 36.5,11.5 parent: 31 type: Transform - - uid: 9882 + - uid: 11072 components: - - rot: 1.5707963267948966 rad - pos: 16.5,-16.5 + - pos: 42.5,23.5 parent: 31 type: Transform - - uid: 9883 +- proto: PlasmaTankFilled + entities: + - uid: 1137 components: - - rot: -1.5707963267948966 rad - pos: 25.5,-5.5 + - pos: 41.74788,13.772052 parent: 31 type: Transform - - uid: 9884 + - uid: 6874 components: - - rot: 3.141592653589793 rad - pos: 19.5,-3.5 + - pos: 41.718365,13.536064 parent: 31 type: Transform -- proto: IntercomScience +- proto: PlasticFlapsAirtightClear entities: - - uid: 9888 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-26.5 - parent: 31 - type: Transform - - uid: 9889 + - uid: 547 components: - - rot: 3.141592653589793 rad - pos: -5.5,-21.5 + - pos: 14.5,8.5 parent: 31 type: Transform - - uid: 9890 + - uid: 3906 components: - - rot: 1.5707963267948966 rad - pos: -6.5,-17.5 + - pos: 19.5,28.5 parent: 31 type: Transform - - uid: 9891 + - uid: 7219 components: - - rot: 1.5707963267948966 rad - pos: -18.5,-21.5 + - pos: 23.5,28.5 parent: 31 type: Transform - - uid: 9914 + - uid: 10097 components: - - rot: 1.5707963267948966 rad - pos: 0.5,-17.5 + - pos: 20.5,25.5 parent: 31 type: Transform -- proto: IntercomSecurity - entities: - - uid: 3834 + - uid: 10098 components: - - pos: -1.5,11.5 + - pos: 22.5,25.5 parent: 31 type: Transform - - uid: 7827 + - uid: 10111 components: - - pos: -6.5,6.5 + - pos: -35.5,-16.5 parent: 31 type: Transform - - uid: 8908 +- proto: PlushieAtmosian + entities: + - uid: 7433 components: - - pos: -15.5,15.5 + - pos: 44.47201,25.696434 parent: 31 type: Transform - - uid: 9872 +- proto: PlushieCarp + entities: + - uid: 9365 components: - - rot: -1.5707963267948966 rad - pos: -4.5,15.5 + - pos: -24.253773,-24.478765 parent: 31 type: Transform - - uid: 9873 + - uid: 9374 components: - - pos: -8.5,22.5 + - pos: -24.769398,-23.96314 parent: 31 type: Transform -- proto: IntercomService +- proto: PlushieLizard entities: - - uid: 910 + - uid: 1125 components: - - rot: 3.141592653589793 rad - pos: -9.5,-2.5 + - pos: -31.457468,18.461973 parent: 31 type: Transform - - uid: 9875 + - uid: 8715 components: - - rot: -1.5707963267948966 rad - pos: -22.5,8.5 + - pos: -34.491947,-24.517502 parent: 31 type: Transform - - uid: 9876 + - uid: 8737 components: - - rot: 3.141592653589793 rad - pos: -17.5,2.5 + - pos: -32.58532,-31.483488 parent: 31 type: Transform - - uid: 9878 + - uid: 10650 components: - - rot: 3.141592653589793 rad - pos: -2.5,-7.5 + - pos: 43.50479,-7.320201 parent: 31 type: Transform - - uid: 9885 + - uid: 11010 components: - - rot: 3.141592653589793 rad - pos: 10.5,-28.5 + - pos: 6.8823633,-3.4168224 parent: 31 type: Transform - - uid: 9893 +- proto: PlushieNar + entities: + - uid: 11111 components: - - rot: -1.5707963267948966 rad - pos: -15.5,-2.5 + - pos: -41.4551,17.484098 parent: 31 type: Transform -- proto: IntercomSupply +- proto: PlushieRouny entities: - - uid: 9894 + - uid: 11027 components: - - pos: 16.5,8.5 + - pos: 34.579575,37.51338 parent: 31 type: Transform - - uid: 9895 +- proto: PlushieSharkBlue + entities: + - uid: 5218 components: - - pos: 23.5,14.5 + - pos: -24.428402,-22.348387 parent: 31 type: Transform - - uid: 9950 +- proto: PlushieSharkGrey + entities: + - uid: 11138 components: - - pos: 27.5,22.5 + - pos: -24.411543,-23.535076 parent: 31 type: Transform -- proto: JanitorialTrolley +- proto: PlushieSharkPink entities: - - uid: 9095 + - uid: 11139 components: - - rot: -1.5707963267948966 rad - pos: -21.5,8.5 + - pos: -24.500088,-22.945107 parent: 31 type: Transform -- proto: JawsOfLife +- proto: PlushieSpaceLizard entities: - - uid: 7871 + - uid: 8712 components: - - pos: 40.532337,-0.25133538 + - pos: -35.523197,-23.564377 parent: 31 type: Transform -- proto: JetpackBlueFilled +- proto: PonderingOrb entities: - - uid: 3862 - components: - - flags: InContainer - type: MetaData - - parent: 7057 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 8219 + - uid: 7097 components: - - pos: 35.333374,-3.561453 + - pos: -25.5,22.5 parent: 31 type: Transform -- proto: JetpackMini +- proto: PortableFlasher entities: - - uid: 6251 + - uid: 9953 components: - - pos: 6.5050597,9.5957365 + - pos: -13.5,19.5 parent: 31 type: Transform - - uid: 9480 +- proto: PortableGeneratorJrPacman + entities: + - uid: 10125 components: - - pos: 6.5050597,9.9238615 + - pos: -32.5,-10.5 parent: 31 type: Transform -- proto: KitchenMicrowave - entities: - - uid: 335 + - uid: 11261 components: - - pos: -17.5,10.5 + - pos: -20.5,-25.5 parent: 31 type: Transform - - uid: 893 + - uid: 11262 components: - - pos: -14.5,-1.5 + - pos: -10.5,-36.5 parent: 31 type: Transform - - uid: 7467 + - uid: 11263 components: - - pos: -2.5,-29.5 + - pos: 0.5,-11.5 parent: 31 type: Transform -- proto: KitchenReagentGrinder +- proto: PortableGeneratorPacman entities: - - uid: 1166 + - uid: 1682 components: - - pos: 19.5,1.5 + - pos: 24.5,-16.5 parent: 31 type: Transform - - uid: 4156 + - uid: 3303 components: - - pos: -14.5,-0.5 + - pos: 28.5,13.5 parent: 31 type: Transform -- proto: KitchenSpike +- proto: PortableGeneratorPacmanMachineCircuitboard entities: - - uid: 8432 + - uid: 10979 components: - - pos: -10.5,-3.5 + - pos: 56.502796,-5.3510003 parent: 31 type: Transform -- proto: Lamp +- proto: PortableGeneratorSuperPacman entities: - - uid: 546 - components: - - pos: 22.50832,-12.354015 - parent: 31 - type: Transform - - uid: 1418 + - uid: 4541 components: - - pos: -3.5916028,13.622649 + - pos: 47.5,1.5 parent: 31 type: Transform - - uid: 4095 +- proto: PortableScrubber + entities: + - uid: 4315 components: - - pos: -30.466906,-1.5231686 + - pos: 31.5,8.5 parent: 31 type: Transform - - uid: 4925 + - uid: 6901 components: - - pos: 37.66952,-0.30827445 + - pos: 31.5,9.5 parent: 31 type: Transform - - uid: 6022 +- proto: PosterBroken + entities: + - uid: 10560 components: - - pos: -7.462167,20.657312 + - pos: -16.5,-36.5 parent: 31 type: Transform - - uid: 7372 + - uid: 11108 components: - - pos: -4.4252543,-22.444613 + - pos: -1.5,-18.5 parent: 31 type: Transform - - uid: 7852 +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 6328 components: - - pos: 26.628683,-25.257757 + - pos: 35.5,7.5 parent: 31 type: Transform - - uid: 9143 +- proto: PosterContrabandBountyHunters + entities: + - uid: 7127 components: - - pos: 14.479344,-6.1264844 + - rot: -1.5707963267948966 rad + pos: 15.5,13.5 parent: 31 type: Transform -- proto: LampBanana +- proto: PosterContrabandFreeDrone entities: - - uid: 8941 + - uid: 2411 components: - - pos: -18.636322,-4.1902304 + - pos: 28.5,-0.5 parent: 31 type: Transform -- proto: LampGold +- proto: PosterContrabandLamarr entities: - - uid: 490 + - uid: 9617 components: - - pos: 10.372139,23.658413 + - pos: -6.5,-19.5 parent: 31 type: Transform - - uid: 2155 +- proto: PosterContrabandLustyExomorph + entities: + - uid: 7828 components: - - pos: 7.632556,18.592802 + - pos: 5.5,-29.5 parent: 31 type: Transform - - uid: 4092 +- proto: PosterContrabandMissingGloves + entities: + - uid: 8046 components: - - pos: -30.54503,-5.3981686 + - pos: -30.5,8.5 parent: 31 type: Transform - - uid: 4178 +- proto: PosterContrabandRedRum + entities: + - uid: 10629 components: - - pos: 0.41178536,-5.2814264 + - pos: 42.5,-5.5 parent: 31 type: Transform - - uid: 7149 +- proto: PosterContrabandSmoke + entities: + - uid: 7802 components: - - pos: 6.5934343,24.65432 + - pos: 13.5,20.5 parent: 31 type: Transform - - uid: 7319 +- proto: PosterContrabandSpaceCola + entities: + - uid: 7819 components: - - pos: 11.433,-31.299496 + - pos: -33.5,2.5 parent: 31 type: Transform - - uid: 7826 +- proto: PosterContrabandTools + entities: + - uid: 7651 components: - - pos: 8.54651,-28.293444 + - pos: -27.5,12.5 parent: 31 type: Transform - - uid: 8447 +- proto: PosterContrabandVoteWeh + entities: + - uid: 8703 components: - - pos: -1.4903483,1.69441 + - pos: -37.5,-26.5 parent: 31 type: Transform - - uid: 8725 +- proto: PosterContrabandWehWatches + entities: + - uid: 8720 components: - - pos: -36.511345,-29.258835 + - pos: -31.5,-28.5 parent: 31 type: Transform - - uid: 9605 +- proto: PosterLegitAnatomyPoster + entities: + - uid: 7342 components: - - rot: -1.5707963267948966 rad - pos: -36.958706,19.866982 + - pos: 25.5,-6.5 parent: 31 type: Transform -- proto: LargeBeaker +- proto: PosterLegitCarbonDioxide entities: - - uid: 5074 + - uid: 7690 components: - - pos: 19.088842,1.7523946 + - pos: 29.5,14.5 parent: 31 type: Transform - - uid: 5081 +- proto: PosterLegitCarpMount + entities: + - uid: 7559 components: - - pos: 19.088842,1.5023946 + - rot: 1.5707963267948966 rad + pos: 27.5,11.5 parent: 31 type: Transform -- proto: LightBulb +- proto: PosterLegitCleanliness entities: - - uid: 3882 + - uid: 7348 components: - - pos: -22.419735,-24.791834 + - rot: -1.5707963267948966 rad + pos: 16.5,-18.5 parent: 31 type: Transform -- proto: LockerAtmosphericsFilled +- proto: PosterLegitCohibaRobustoAd entities: - - uid: 6562 + - uid: 2438 components: - - pos: 44.5,12.5 + - pos: 1.5,-5.5 parent: 31 type: Transform - - uid: 6563 +- proto: PosterLegitDickGumshue + entities: + - uid: 9366 components: - - pos: 44.5,11.5 + - pos: -22.5,18.5 parent: 31 type: Transform -- proto: LockerBoozeFilled +- proto: PosterLegitIan entities: - - uid: 584 + - uid: 7806 components: - - pos: -11.5,-6.5 + - pos: 11.5,16.5 parent: 31 type: Transform -- proto: LockerBotanistFilled +- proto: PosterLegitLoveIan entities: - - uid: 782 + - uid: 7807 components: - - pos: -17.5,1.5 + - pos: 11.5,21.5 parent: 31 type: Transform -- proto: LockerCaptainFilled +- proto: PosterLegitNanotrasenLogo entities: - - uid: 732 + - uid: 619 components: - - pos: 10.5,26.5 + - pos: 5.5,26.5 parent: 31 type: Transform -- proto: LockerChemistryFilled - entities: - - uid: 5094 + - uid: 2566 components: - - pos: 19.5,-2.5 + - rot: 3.141592653589793 rad + pos: -43.5,-8.5 parent: 31 type: Transform -- proto: LockerChiefEngineerFilled - entities: - - uid: 816 + - uid: 7803 components: - - pos: 37.5,-1.5 + - pos: 0.5,19.5 parent: 31 type: Transform - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1734 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerChiefMedicalOfficerFilled - entities: - - uid: 9684 + - uid: 8047 components: - - pos: 22.5,-15.5 + - pos: -33.5,6.5 parent: 31 type: Transform -- proto: LockerEngineerFilled - entities: - - uid: 548 + - uid: 8266 components: - - pos: 35.5,-0.5 + - pos: 34.5,-18.5 parent: 31 type: Transform - - uid: 818 + - uid: 8325 components: - - pos: 35.5,-2.5 + - pos: 43.5,-22.5 parent: 31 type: Transform - - uid: 3369 + - uid: 8326 components: - - pos: 35.5,-1.5 + - pos: 43.5,-26.5 parent: 31 type: Transform -- proto: LockerEvidence +- proto: PosterLegitNoERP entities: - - uid: 4013 + - uid: 7808 components: - - pos: -10.5,11.5 + - pos: -14.5,6.5 parent: 31 type: Transform -- proto: LockerFreezer +- proto: PosterLegitObey entities: - - uid: 4175 + - uid: 7809 components: - - pos: -11.5,-3.5 + - pos: 1.5,11.5 parent: 31 type: Transform - - uid: 7057 +- proto: PosterLegitReportCrimes + entities: + - uid: 3838 components: - - name: safe - type: MetaData - - pos: -0.5,18.5 + - pos: -9.5,6.5 parent: 31 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 3849 - - 3862 - - 4195 - - 4896 - - 7128 - - 4585 - - 7635 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerHeadOfPersonnelFilled +- proto: PosterLegitSafetyEyeProtection entities: - - uid: 6021 + - uid: 7145 components: - - pos: 9.5,21.5 + - pos: 18.5,2.5 parent: 31 type: Transform -- proto: LockerHeadOfSecurityFilled +- proto: PosterLegitSafetyInternals entities: - - uid: 4118 + - uid: 10791 components: - - pos: -7.5,21.5 + - pos: 29.5,19.5 parent: 31 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerMedicalFilled +- proto: PosterLegitSafetyMothPiping entities: - - uid: 802 + - uid: 11136 components: - - pos: 23.5,-7.5 + - pos: 38.5,10.5 parent: 31 type: Transform - - uid: 1149 +- proto: PosterLegitStateLaws + entities: + - uid: 10558 components: - - pos: 22.5,-7.5 + - pos: -4.5,-26.5 parent: 31 type: Transform - - uid: 1151 +- proto: PosterLegitWorkForAFuture + entities: + - uid: 11107 components: - - pos: 21.5,-7.5 + - pos: -18.5,-9.5 parent: 31 type: Transform -- proto: LockerMedicineFilled +- proto: PosterMapSaltern entities: - - uid: 4336 + - uid: 9089 components: - - pos: 15.5,-11.5 + - pos: -29.5,12.5 parent: 31 type: Transform - - uid: 7176 + - uid: 9090 components: - - pos: -0.5,14.5 + - pos: 1.5,22.5 parent: 31 type: Transform - - uid: 7247 + - uid: 9091 components: - - pos: 11.5,-7.5 + - pos: 27.5,7.5 parent: 31 type: Transform -- proto: LockerParamedicFilled - entities: - - uid: 7489 + - uid: 9092 components: - - pos: 24.5,-7.5 + - pos: 6.5,-15.5 parent: 31 type: Transform -- proto: LockerQuarterMasterFilled - entities: - - uid: 1772 + - uid: 9477 components: - - pos: 26.5,8.5 + - pos: -30.5,6.5 parent: 31 type: Transform -- proto: LockerResearchDirectorFilled - entities: - - uid: 728 + - uid: 9478 components: - - pos: -2.5,-23.5 + - pos: -39.5,-0.5 parent: 31 type: Transform -- proto: LockerSalvageSpecialistFilled - entities: - - uid: 4932 + - uid: 9479 components: - - pos: 28.5,16.5 + - pos: -38.5,-6.5 parent: 31 type: Transform - - uid: 6205 + - uid: 9579 components: - - pos: 28.5,15.5 + - pos: 29.5,-5.5 parent: 31 type: Transform - - uid: 6211 +- proto: PottedPlant15 + entities: + - uid: 2146 components: - - pos: 28.5,17.5 + - pos: 24.695305,-11.887805 parent: 31 type: Transform -- proto: LockerScienceFilled +- proto: PottedPlantBioluminscent entities: - - uid: 784 + - uid: 8292 components: - - pos: -9.5,-17.5 + - pos: 32.5,-25.5 parent: 31 type: Transform - - uid: 788 +- proto: PottedPlantRandom + entities: + - uid: 161 components: - - pos: -8.5,-17.5 + - pos: 12.5,1.5 parent: 31 type: Transform - - uid: 6019 + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 763 components: - - pos: -7.5,-17.5 + - pos: 0.5,26.5 parent: 31 type: Transform -- proto: LockerSecurityFilled - entities: - - uid: 803 + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 1068 components: - - pos: -12.5,13.5 + - pos: 5.5,16.5 parent: 31 type: Transform - - uid: 804 + - uid: 2712 components: - - pos: -13.5,13.5 + - pos: -35.5,-11.5 parent: 31 type: Transform - - uid: 7246 + - uid: 4934 components: - - pos: -11.5,13.5 + - pos: 4.5,27.5 parent: 31 type: Transform -- proto: LockerWallMedicalFilled - entities: - - uid: 4337 + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 5634 components: - - rot: 3.141592653589793 rad - pos: 7.5,-12.5 + - pos: -7.5,17.5 parent: 31 type: Transform - - uid: 7077 + - uid: 7290 components: - - rot: 3.141592653589793 rad - pos: 7.5,-6.5 + - pos: 6.5,1.5 parent: 31 type: Transform - - uid: 9568 + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 7334 components: - - rot: 3.141592653589793 rad - pos: 7.5,-9.5 + - pos: -10.5,11.5 parent: 31 type: Transform -- proto: LockerWardenFilled - entities: - - uid: 4036 + - uid: 8288 components: - - pos: 0.5,7.5 + - pos: 55.5,-24.5 parent: 31 type: Transform - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 4213 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null + stash: !type:ContainerSlot {} type: ContainerContainer -- proto: MachineAnomalyGenerator - entities: - - uid: 6692 + - uid: 8709 components: - - pos: -8.5,-26.5 + - pos: -34.5,-23.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound -- proto: MachineAnomalyVessel - entities: - - uid: 4353 + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 8808 components: - - pos: -5.5,-26.5 + - pos: 2.5,27.5 parent: 31 type: Transform - - uid: 9586 + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 9325 components: - - pos: -4.5,-26.5 + - pos: -38.5,-1.5 parent: 31 type: Transform -- proto: MachineAPE - entities: - - uid: 4221 + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 9326 components: - - rot: -1.5707963267948966 rad - pos: -4.5,-28.5 + - pos: -38.5,-3.5 parent: 31 type: Transform - - uid: 5211 + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 9915 components: - - rot: -1.5707963267948966 rad - pos: -5.5,-28.5 + - pos: -43.5,-9.5 parent: 31 type: Transform -- proto: MachineArtifactAnalyzer - entities: - - uid: 8320 + - uid: 11004 components: - - pos: -14.5,-25.5 + - pos: 18.5,-4.5 parent: 31 type: Transform - - links: - - 8321 - type: DeviceLinkSink -- proto: MachineFrame - entities: - - uid: 1319 + - uid: 11005 components: - - pos: 7.5,-14.5 + - pos: 19.5,-13.5 parent: 31 type: Transform - - uid: 1527 +- proto: PottedPlantRandomPlastic + entities: + - uid: 2316 components: - - pos: 7.5,-16.5 + - pos: -11.5,-20.5 parent: 31 type: Transform -- proto: MagazinePistol - entities: - - uid: 4977 + - uid: 9040 components: - - pos: -14.297329,20.472649 + - pos: 35.5,2.5 parent: 31 type: Transform - - uid: 4983 + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer + - uid: 9416 components: - - pos: -14.297329,20.316399 + - pos: -11.5,-24.5 parent: 31 type: Transform - - uid: 5141 + - uid: 10547 components: - - pos: -14.250454,20.691399 + - pos: -7.5,-28.5 parent: 31 type: Transform -- proto: MagazinePistolSubMachineGunTopMounted +- proto: PottedPlantRD entities: - - uid: 10123 + - uid: 2171 components: - - pos: -8.471462,20.3102 + - pos: -4.4945755,-22.176098 parent: 31 type: Transform - - uid: 10124 +- proto: PowerCellHighPrinted + entities: + - uid: 5648 components: - - pos: -8.471462,20.4352 + - pos: 0.6812986,-27.61599 parent: 31 type: Transform -- proto: MaintenanceFluffSpawner +- proto: PowerCellMedium entities: - - uid: 113 + - uid: 2198 components: - - pos: -29.5,-5.5 + - pos: 22.634676,-4.424035 parent: 31 type: Transform - - uid: 4504 + - uid: 8172 components: - - pos: 35.5,-13.5 + - pos: 23.600492,-14.314652 parent: 31 type: Transform - - uid: 5149 +- proto: PowerCellRecharger + entities: + - uid: 696 components: - - pos: 45.5,-2.5 + - pos: -17.5,-22.5 parent: 31 type: Transform - - uid: 7599 + - uid: 1395 components: - - pos: -21.5,-13.5 + - pos: 5.5,32.5 parent: 31 type: Transform - - uid: 7644 + - canCollide: False + type: Physics + - uid: 1425 components: - - pos: -1.5,-27.5 + - pos: -11.5,16.5 parent: 31 type: Transform - - uid: 7949 + - uid: 2889 components: - - pos: 15.5,-19.5 + - pos: -0.5,-27.5 parent: 31 type: Transform - - uid: 8753 + - uid: 3133 components: - - pos: -20.5,-23.5 + - pos: 40.5,-0.5 parent: 31 type: Transform -- proto: MaintenancePlantSpawner - entities: - - uid: 982 + - canCollide: False + type: Physics + - uid: 6205 components: - - pos: -26.5,18.5 + - pos: 18.5,17.5 parent: 31 type: Transform - - uid: 1018 + - uid: 9528 components: - - pos: -22.5,-19.5 + - pos: 34.5,0.5 parent: 31 type: Transform - - uid: 1019 + - uid: 10989 components: - - pos: 27.5,-6.5 + - pos: 22.5,-4.5 parent: 31 type: Transform - - uid: 1020 +- proto: PowerCellSmall + entities: + - uid: 2280 components: - - pos: -0.5,21.5 + - pos: -17.268764,-22.778172 parent: 31 type: Transform -- proto: MaintenanceToolSpawner +- proto: Poweredlight entities: - - uid: 976 + - uid: 41 components: - - pos: 16.5,16.5 + - rot: 1.5707963267948966 rad + pos: -25.5,6.5 parent: 31 type: Transform - - uid: 7607 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 143 components: - - pos: -29.5,-10.5 + - rot: -1.5707963267948966 rad + pos: 12.5,-3.5 parent: 31 type: Transform - - uid: 7643 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 220 components: - - pos: -0.5,-27.5 + - rot: 3.141592653589793 rad + pos: -10.5,-31.5 parent: 31 type: Transform - - uid: 8018 + - enabled: False + type: AmbientSound + - uid: 303 components: - - pos: 38.5,-3.5 + - pos: 8.5,21.5 parent: 31 type: Transform - - uid: 8754 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 401 components: - - pos: -20.5,-24.5 + - rot: 1.5707963267948966 rad + pos: -25.5,-13.5 parent: 31 type: Transform -- proto: MaintenanceWeaponSpawner - entities: - - uid: 4924 + - enabled: False + type: AmbientSound + - uid: 493 components: - - pos: -29.5,-4.5 + - rot: -1.5707963267948966 rad + pos: 24.5,11.5 parent: 31 type: Transform - - uid: 7583 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 516 components: - - pos: -1.5,-11.5 + - pos: 28.5,6.5 parent: 31 type: Transform - - uid: 7866 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 557 components: - - pos: 27.5,-25.5 + - pos: -38.5,10.5 parent: 31 type: Transform - - uid: 9468 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 776 components: - - pos: -17.5,-32.5 + - rot: 1.5707963267948966 rad + pos: -15.5,13.5 parent: 31 type: Transform - - uid: 9575 + - enabled: False + type: AmbientSound + - uid: 857 components: - - pos: 44.5,-2.5 + - rot: -1.5707963267948966 rad + pos: -35.5,0.5 parent: 31 type: Transform -- proto: MaterialCloth - entities: - - uid: 7605 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 891 components: - - pos: 7.241931,18.889677 + - rot: -1.5707963267948966 rad + pos: -35.5,-4.5 parent: 31 type: Transform -- proto: MaterialDiamond - entities: - - uid: 9628 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 892 components: - - pos: -3.6640515,18.450077 + - pos: -32.5,5.5 parent: 31 type: Transform -- proto: MaterialDurathread - entities: - - uid: 7652 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 917 components: - - pos: 7.2571726,18.545927 + - rot: 3.141592653589793 rad + pos: -30.5,3.5 parent: 31 type: Transform -- proto: MaterialReclaimer - entities: - - uid: 9753 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 994 components: - - pos: -22.5,-17.5 + - rot: 3.141592653589793 rad + pos: 22.5,-11.5 parent: 31 type: Transform -- proto: MaterialWoodPlank - entities: - - uid: 4167 + - enabled: False + type: AmbientSound + - uid: 1033 components: - - pos: -11.5134325,-10.421187 + - rot: 1.5707963267948966 rad + pos: -29.5,9.5 parent: 31 type: Transform -- proto: MedicalBed - entities: - - uid: 267 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1034 components: - - pos: 7.5,-5.5 + - rot: 3.141592653589793 rad + pos: -26.5,8.5 parent: 31 type: Transform - - uid: 630 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1058 components: - - pos: 7.5,-11.5 + - rot: -1.5707963267948966 rad + pos: -22.5,2.5 parent: 31 type: Transform - - uid: 7812 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1059 components: - - pos: 7.5,-7.5 + - rot: 3.141592653589793 rad + pos: -20.5,3.5 parent: 31 type: Transform - - uid: 9838 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1060 components: - - pos: -0.5,12.5 + - rot: -1.5707963267948966 rad + pos: -22.5,-0.5 parent: 31 type: Transform -- proto: MedicalTechFab - entities: - - uid: 9105 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1061 components: - - pos: 16.5,-11.5 + - pos: -18.5,5.5 parent: 31 type: Transform - - materialWhiteList: - - Glass - - Steel - - Plastic - - Durathread - - Cloth - type: MaterialStorage -- proto: MedkitBruteFilled - entities: - - uid: 7283 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1064 components: - - pos: 19.467945,-9.477724 + - rot: 1.5707963267948966 rad + pos: -20.5,0.5 parent: 31 type: Transform -- proto: MedkitBurnFilled - entities: - - uid: 536 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1066 components: - - pos: 19.48357,-9.727724 + - rot: 1.5707963267948966 rad + pos: -25.5,-4.5 parent: 31 type: Transform -- proto: MedkitCombatFilled - entities: - - uid: 92 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1069 components: - - pos: 24.558079,-12.535425 + - rot: 3.141592653589793 rad + pos: -20.5,-2.5 parent: 31 type: Transform -- proto: MedkitFilled - entities: - - uid: 1040 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1122 components: - - pos: -0.4864614,32.561848 + - rot: 1.5707963267948966 rad + pos: -2.5,30.5 parent: 31 type: Transform - - uid: 7243 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1123 components: - - pos: 19.499195,-10.415224 + - rot: -1.5707963267948966 rad + pos: 9.5,30.5 parent: 31 type: Transform -- proto: MedkitOxygenFilled - entities: - - uid: 7782 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1135 components: - - pos: -26.514608,20.497671 + - pos: 12.5,27.5 parent: 31 type: Transform -- proto: MedkitRadiationFilled - entities: - - uid: 7285 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1171 components: - - pos: 19.48357,-10.212099 + - rot: 3.141592653589793 rad + pos: 1.5,30.5 parent: 31 type: Transform -- proto: MedkitToxinFilled - entities: - - uid: 7284 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1186 components: - - pos: 19.48357,-9.977724 + - rot: 3.141592653589793 rad + pos: 5.5,30.5 parent: 31 type: Transform -- proto: MinimoogInstrument - entities: - - uid: 8736 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1188 components: - rot: 1.5707963267948966 rad - pos: -32.5,-28.5 + pos: 2.5,23.5 parent: 31 type: Transform -- proto: MonkeyCubeWrapped - entities: - - uid: 8871 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1200 components: - - pos: -9.196694,-7.814363 + - rot: -1.5707963267948966 rad + pos: 4.5,23.5 parent: 31 type: Transform -- proto: MopBucket - entities: - - uid: 4154 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1210 components: - - pos: -21.5,10.5 + - rot: 3.141592653589793 rad + pos: 5.5,16.5 parent: 31 type: Transform - - uid: 8881 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1211 components: - - pos: 26.48231,1.5389521 + - rot: 3.141592653589793 rad + pos: 1.5,16.5 parent: 31 type: Transform - - uid: 9096 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1212 components: - - pos: -21.319218,10.682958 + - pos: -1.5,18.5 parent: 31 type: Transform -- proto: MopItem - entities: - - uid: 15 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1213 components: - - pos: 25.68625,0.6714213 + - rot: 1.5707963267948966 rad + pos: 6.5,9.5 parent: 31 type: Transform - - uid: 778 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1220 components: - - pos: 25.905,0.6557963 + - rot: -1.5707963267948966 rad + pos: 10.5,9.5 parent: 31 type: Transform - - uid: 786 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1228 components: - - pos: 26.06125,0.6245463 + - rot: 1.5707963267948966 rad + pos: 12.5,10.5 parent: 31 type: Transform - - uid: 7673 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1234 components: - - pos: -20.397196,7.46342 + - rot: -1.5707963267948966 rad + pos: 4.5,12.5 parent: 31 type: Transform -- proto: Morgue - entities: - - uid: 1480 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1252 components: - rot: 1.5707963267948966 rad - pos: 11.5,-15.5 + pos: 2.5,7.5 parent: 31 type: Transform - - uid: 1481 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1253 components: - - rot: 1.5707963267948966 rad - pos: 11.5,-14.5 + - pos: 15.5,12.5 parent: 31 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 2130 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1259 components: - rot: 1.5707963267948966 rad - pos: 11.5,-13.5 + pos: 18.5,13.5 parent: 31 type: Transform - - uid: 2211 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1261 components: - rot: 1.5707963267948966 rad - pos: 11.5,-16.5 + pos: 18.5,8.5 parent: 31 type: Transform - - uid: 2390 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1262 components: - - rot: 1.5707963267948966 rad - pos: 13.5,-16.5 + - rot: -1.5707963267948966 rad + pos: 16.5,7.5 parent: 31 type: Transform - - uid: 2456 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1265 components: - - rot: 1.5707963267948966 rad - pos: 13.5,-15.5 + - rot: 3.141592653589793 rad + pos: 18.5,3.5 parent: 31 type: Transform - - uid: 4033 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1266 components: - - rot: 1.5707963267948966 rad - pos: 13.5,-14.5 + - rot: 3.141592653589793 rad + pos: 13.5,3.5 parent: 31 type: Transform -- proto: MouseTimedSpawner - entities: - - uid: 1641 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1271 components: - - pos: -12.5,-12.5 + - pos: 12.5,1.5 parent: 31 type: Transform -- proto: Multitool - entities: - - uid: 1038 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1272 components: - - pos: 5.4978743,31.63788 + - pos: 15.5,1.5 parent: 31 type: Transform - - uid: 4637 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1274 components: - - pos: -10.59917,-4.500046 + - pos: 18.5,1.5 parent: 31 type: Transform - - uid: 7586 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1281 components: - - pos: -5.3322277,-8.433595 + - rot: 3.141592653589793 rad + pos: 23.5,3.5 parent: 31 type: Transform - - uid: 8769 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1283 components: - - pos: -2.7528043,7.726885 + - rot: 3.141592653589793 rad + pos: 27.5,0.5 parent: 31 type: Transform -- proto: NetworkConfigurator - entities: - - uid: 9530 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1284 components: - - pos: 7.5282173,-17.639442 + - rot: 1.5707963267948966 rad + pos: 29.5,-2.5 parent: 31 type: Transform - - uid: 9943 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1285 components: - - pos: -17.74043,-20.451895 + - rot: 1.5707963267948966 rad + pos: 31.5,-0.5 parent: 31 type: Transform - - uid: 9954 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1286 components: - - pos: -17.476542,-20.465784 + - rot: 3.141592653589793 rad + pos: 31.5,2.5 parent: 31 type: Transform - - uid: 10011 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1287 components: - - pos: -17.24043,-20.479673 + - rot: 1.5707963267948966 rad + pos: 37.5,2.5 parent: 31 type: Transform -- proto: NitrogenCanister - entities: - - uid: 98 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1288 components: - - pos: 32.5,23.5 + - pos: 35.5,6.5 parent: 31 type: Transform - - uid: 1807 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1301 components: - - pos: 35.5,9.5 + - rot: -1.5707963267948966 rad + pos: 35.5,-2.5 parent: 31 type: Transform - - uid: 3869 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1303 components: - - pos: -3.5,-8.5 + - pos: 23.5,-4.5 parent: 31 type: Transform - - uid: 7688 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1306 components: - - pos: 30.5,10.5 + - rot: -1.5707963267948966 rad + pos: 19.5,-8.5 parent: 31 type: Transform - - uid: 7780 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1313 components: - - pos: -29.5,13.5 + - rot: 3.141592653589793 rad + pos: 5.5,-21.5 parent: 31 type: Transform - - uid: 7983 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1322 components: - - pos: 27.5,-3.5 + - rot: -1.5707963267948966 rad + pos: 5.5,-17.5 parent: 31 type: Transform -- proto: NitrousOxideCanister - entities: - - uid: 19 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1323 components: - - pos: 35.5,11.5 + - rot: 1.5707963267948966 rad + pos: 7.5,-14.5 parent: 31 type: Transform -- proto: NuclearBomb - entities: - - uid: 4217 + - powerLoad: 0 + type: ApcPowerReceiver + - type: Timer + - uid: 1324 components: - - pos: -1.5,18.5 + - rot: 3.141592653589793 rad + pos: 6.5,-11.5 parent: 31 type: Transform -- proto: NuclearBombKeg - entities: - - uid: 9842 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1325 components: - - pos: -13.5,-11.5 + - rot: 1.5707963267948966 rad + pos: 1.5,-17.5 parent: 31 type: Transform -- proto: Ointment - entities: - - uid: 5705 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1331 components: - - pos: 11.72255,-4.519738 + - rot: 3.141592653589793 rad + pos: -1.5,-17.5 parent: 31 type: Transform - - uid: 9616 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1344 components: - - pos: 18.442945,-22.567148 + - rot: 1.5707963267948966 rad + pos: 18.5,17.5 parent: 31 type: Transform -- proto: OreProcessor - entities: - - uid: 9919 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1354 components: - - pos: 23.5,15.5 + - rot: -1.5707963267948966 rad + pos: 4.5,-28.5 parent: 31 type: Transform -- proto: OxygenCanister - entities: - - uid: 87 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1356 components: - - pos: 34.5,23.5 + - rot: -1.5707963267948966 rad + pos: 9.5,-29.5 parent: 31 type: Transform - - uid: 1089 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1358 components: - - pos: 52.5,6.5 + - rot: -1.5707963267948966 rad + pos: 12.5,-25.5 parent: 31 type: Transform - - uid: 1194 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1359 components: - - pos: -4.5,-8.5 + - rot: 3.141592697301183 rad + pos: 31.5,2.5 parent: 31 type: Transform - - uid: 1738 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1360 components: - - pos: 35.5,10.5 + - pos: 7.5,-22.5 parent: 31 type: Transform - - uid: 3576 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1361 components: - - pos: 6.5,7.5 + - rot: 1.5707963267948966 rad + pos: 2.5,-9.5 parent: 31 type: Transform - - uid: 5770 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1366 components: - - pos: 60.5,6.5 + - rot: -1.5707963267948966 rad + pos: 0.5,-4.5 parent: 31 type: Transform - - uid: 6416 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1367 components: - - pos: 30.5,17.5 + - rot: 3.141592653589793 rad + pos: 0.5,3.5 parent: 31 type: Transform - - uid: 6585 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1371 components: - - pos: 6.5,8.5 + - rot: -1.5707963267948966 rad + pos: 4.5,2.5 parent: 31 type: Transform - - uid: 7496 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1372 components: - - pos: 14.5,-31.5 + - rot: 1.5707963267948966 rad + pos: 6.5,1.5 parent: 31 type: Transform - - uid: 7781 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1538 components: - - pos: -28.5,13.5 + - rot: 3.141592653589793 rad + pos: 45.5,15.5 parent: 31 type: Transform - - uid: 9448 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1605 components: - - pos: -23.5,-31.5 + - rot: 3.141592653589793 rad + pos: 58.5,-5.5 parent: 31 type: Transform -- proto: OxygenTankFilled - entities: - - uid: 8740 + - enabled: False + type: AmbientSound + - uid: 1915 components: - - pos: -32.388412,-27.529545 + - pos: -8.5,1.5 parent: 31 type: Transform -- proto: PaintingCafeTerraceAtNight - entities: - - uid: 7804 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1962 components: - - pos: 13.5,24.5 + - pos: -0.5,-24.5 parent: 31 type: Transform -- proto: PaintingMonkey - entities: - - uid: 8859 + - enabled: False + type: AmbientSound + - uid: 1965 components: - - pos: -4.5,-7.5 + - rot: -1.5707963267948966 rad + pos: -11.5,16.5 parent: 31 type: Transform -- proto: PaintingMoony - entities: - - uid: 1714 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1979 components: - - pos: 23.5,-11.5 + - rot: 3.141592653589793 rad + pos: -4.5,-23.5 parent: 31 type: Transform -- proto: PaintingTheGreatWave - entities: - - uid: 726 + - enabled: False + type: AmbientSound + - uid: 2179 components: - - pos: 7.5,22.5 + - rot: 1.5707963267948966 rad + pos: 6.5,-3.5 parent: 31 type: Transform -- proto: PaintingTheSonOfMan - entities: - - uid: 725 + - enabled: False + type: AmbientSound + - uid: 2220 components: - - pos: -6.5,-24.5 + - rot: 3.141592653589793 rad + pos: -18.5,-8.5 parent: 31 type: Transform -- proto: Paper - entities: - - uid: 696 + - enabled: False + type: AmbientSound + - uid: 2247 components: - - pos: -22.78311,-16.711452 + - rot: 1.5707963267948966 rad + pos: 2.5,-3.5 parent: 31 type: Transform - - content: > - NOTICE FOR TRASH MEN - - hello fellow garbage eater! - - since you are taking over, heres how you do your new job - - first switch the lever on the left so items go south - - then when someone flushes trash, try not to eat it: instead put it in the reclaimer - - it will produce some materials and reagents - - build your TRASH EMPIRE! - type: Paper - - uid: 968 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2621 components: - - pos: -1.344388,25.58412 + - rot: 3.141592653589793 rad + pos: -37.5,17.5 parent: 31 type: Transform - - uid: 1071 + - enabled: False + type: AmbientSound + - uid: 3380 components: - - pos: -24.037928,-5.9436545 + - rot: -1.5707963267948966 rad + pos: -4.5,-29.5 parent: 31 type: Transform - - uid: 1132 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3551 components: - - pos: -24.147303,-5.8967795 + - rot: 1.5707963267948966 rad + pos: 31.5,9.5 parent: 31 type: Transform - - uid: 2356 + - enabled: False + type: AmbientSound + - uid: 3728 components: - - pos: -24.256678,-5.7405295 + - rot: 3.141592653589793 rad + pos: -14.5,-22.5 parent: 31 type: Transform - - uid: 7318 + - enabled: False + type: AmbientSound + - uid: 3732 components: - - pos: 11.683,-31.56512 + - rot: 3.141592653589793 rad + pos: -17.5,-27.5 parent: 31 type: Transform - - uid: 7323 + - enabled: False + type: AmbientSound + - uid: 3734 components: - - pos: 11.808,-31.50262 + - rot: 1.5707963267948966 rad + pos: -16.5,-29.5 parent: 31 type: Transform - - uid: 7327 + - enabled: False + type: AmbientSound + - uid: 3963 components: - - pos: 11.886125,-31.455746 + - rot: 3.141592653589793 rad + pos: -10.5,7.5 parent: 31 type: Transform - - uid: 7328 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3983 components: - - pos: 11.761125,-31.361996 + - pos: -5.5,17.5 parent: 31 type: Transform - - uid: 7356 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3998 components: - - pos: -18.012411,-9.565022 + - rot: 1.5707963267948966 rad + pos: -9.5,17.5 parent: 31 type: Transform - - uid: 7357 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4097 components: - - pos: -17.824911,-9.596272 + - pos: -12.5,11.5 parent: 31 type: Transform - - uid: 7358 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4119 components: - - pos: -17.668661,-9.596272 + - pos: -11.5,5.5 parent: 31 type: Transform - - uid: 8743 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4120 components: - - flags: InContainer - type: MetaData - - parent: 8742 + - pos: -9.5,5.5 + parent: 31 type: Transform - - content: > - Weh. - type: Paper - - canCollide: False - type: Physics -- proto: PaperBin10 - entities: - - uid: 9688 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4121 components: - - pos: 9.5,18.5 + - pos: -3.5,5.5 parent: 31 type: Transform -- proto: PaperOffice - entities: - - uid: 10271 - components: - - pos: 14.530419,-13.398812 - parent: 31 - type: Transform - - content: >+ - Nanotrasen Morgue Unit Manual - - - Thank you for choosing our finest appliance for body storage, the Nanotrasen Morgue Unit. - - - Click a Morgue Unit to slide out the compartment, and then place a body in the compartment.(Nanotrasen is not responsible for any injury) - - - Green Light: Patient's soul is still intact. You should clone them. - - - Red Light: Patient's soul is gone or isn't present at the moment. In doubt, verify the body inside. - - - Blue Light: There is no body inside the Morgue Unit. - - type: Paper -- proto: ParchisBoard - entities: - - uid: 2501 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4122 components: - - pos: -23.526257,-2.4008582 + - rot: -1.5707963267948966 rad + pos: -16.5,-1.5 parent: 31 type: Transform -- proto: ParticleAcceleratorControlBoxUnfinished - entities: - - uid: 4569 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4124 components: - - pos: 57.5,1.5 + - pos: -12.5,1.5 parent: 31 type: Transform -- proto: ParticleAcceleratorEmitterForeUnfinished - entities: - - uid: 4562 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4152 components: - - rot: 1.5707963267948966 rad - pos: 59.5,2.5 + - rot: 3.141592653589793 rad + pos: -13.5,-1.5 parent: 31 type: Transform -- proto: ParticleAcceleratorEmitterPortUnfinished - entities: - - uid: 6300 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4177 components: - rot: 1.5707963267948966 rad - pos: 59.5,3.5 + pos: -7.5,-4.5 parent: 31 type: Transform -- proto: ParticleAcceleratorEmitterStarboardUnfinished - entities: - - uid: 4560 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4232 components: - - rot: 1.5707963267948966 rad - pos: 59.5,1.5 + - rot: 3.141592653589793 rad + pos: -3.5,-6.5 parent: 31 type: Transform -- proto: ParticleAcceleratorEndCapUnfinished - entities: - - uid: 4571 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4251 components: - - rot: 1.5707963267948966 rad - pos: 56.5,2.5 + - rot: -1.5707963267948966 rad + pos: -21.5,9.5 parent: 31 type: Transform -- proto: ParticleAcceleratorFuelChamberUnfinished - entities: - - uid: 6310 + - enabled: False + type: AmbientSound + - uid: 4457 components: - - rot: 1.5707963267948966 rad - pos: 57.5,2.5 + - pos: -1.5,1.5 parent: 31 type: Transform -- proto: ParticleAcceleratorPowerBoxUnfinished - entities: - - uid: 4570 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4602 components: - - rot: 1.5707963267948966 rad - pos: 58.5,3.5 + - pos: 59.5,4.5 parent: 31 type: Transform -- proto: PartRodMetal - entities: - - uid: 1300 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4606 components: - rot: 3.141592653589793 rad - pos: 50.50942,4.811885 + pos: 55.5,0.5 parent: 31 type: Transform - - uid: 1493 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4607 components: - - pos: 18.4917,8.562429 + - pos: 52.5,3.5 parent: 31 type: Transform - - uid: 6364 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4608 components: - rot: 3.141592653589793 rad - pos: 50.60317,4.624385 + pos: 52.5,1.5 parent: 31 type: Transform - - uid: 7162 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4912 components: - - pos: 18.4917,8.562429 + - rot: -1.5707963267948966 rad + pos: 24.5,15.5 parent: 31 type: Transform -- proto: Pen - entities: - - uid: 967 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5103 components: - - pos: -1.563138,24.568495 + - rot: -1.5707963267948966 rad + pos: 19.5,-0.5 parent: 31 type: Transform - - uid: 2031 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6182 components: - - pos: -24.647303,-6.4436545 + - rot: -1.5707963267948966 rad + pos: 28.5,18.5 parent: 31 type: Transform - - uid: 2032 + - enabled: False + type: AmbientSound + - uid: 6327 components: - - pos: -23.350428,-5.2092795 + - rot: 3.141592653589793 rad + pos: 41.5,11.5 parent: 31 type: Transform - - uid: 2355 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6330 components: - - pos: -23.709803,-6.4905295 + - rot: 1.5707963267948966 rad + pos: 30.5,13.5 parent: 31 type: Transform - - uid: 7160 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6332 components: - - pos: 24.727184,-13.11355 + - rot: -1.5707963267948966 rad + pos: 36.5,9.5 parent: 31 type: Transform - - uid: 8744 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6384 components: - - pos: -35.660393,-24.67745 + - pos: 34.5,23.5 parent: 31 type: Transform - - uid: 8840 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6385 components: - - pos: 7.355826,32.45485 + - pos: 42.5,23.5 parent: 31 type: Transform - - uid: 8867 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6387 components: - - pos: 31.722767,6.708726 + - pos: 36.5,23.5 parent: 31 type: Transform -- proto: PenCap - entities: - - uid: 9627 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6406 components: - - pos: -3.637568,17.05955 + - pos: 35.5,19.5 parent: 31 type: Transform -- proto: PersonalAI - entities: - - uid: 979 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6407 components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5129576,32.47221 + - pos: 43.5,19.5 parent: 31 type: Transform - - uid: 2780 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6435 components: - - flags: SessionSpecific - type: MetaData - - pos: -24.675209,-5.91818 + - pos: 46.5,23.5 parent: 31 type: Transform - - uid: 7898 + - enabled: False + type: AmbientSound + - uid: 6436 components: - - flags: SessionSpecific - type: MetaData - - pos: 7.5388803,-23.388987 + - pos: 43.5,9.5 parent: 31 type: Transform -- proto: PianoInstrument - entities: - - uid: 8425 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6463 components: - - rot: 3.141592653589793 rad - pos: -4.5,1.5 + - pos: 44.5,23.5 parent: 31 type: Transform -- proto: PinpointerNuclear - entities: - - uid: 1216 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6509 components: - - pos: -1.53811,16.627865 + - pos: 40.5,23.5 parent: 31 type: Transform -- proto: PlaqueAtmos - entities: - - uid: 6564 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6511 components: - - pos: 43.5,14.5 + - pos: 43.5,13.5 parent: 31 type: Transform -- proto: PlasmaCanister - entities: - - uid: 7078 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6527 components: - - pos: 40.5,23.5 + - rot: 1.5707963267948966 rad + pos: 48.5,21.5 parent: 31 type: Transform - - uid: 9691 + - enabled: False + type: AmbientSound + - uid: 6566 components: - - pos: -15.5,-17.5 + - pos: 39.5,19.5 parent: 31 type: Transform - - uid: 10009 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6897 components: - - pos: 36.5,11.5 + - pos: 39.5,6.5 parent: 31 type: Transform -- proto: PlasmaReinforcedWindowDirectional - entities: - - uid: 10244 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6898 components: - - pos: -8.5,28.5 + - pos: 50.5,5.5 parent: 31 type: Transform - - uid: 10245 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6899 components: - - pos: -8.5,29.5 + - pos: 45.5,5.5 parent: 31 type: Transform - - uid: 10246 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6900 components: - - pos: -8.5,30.5 + - rot: 3.141592653589793 rad + pos: 45.5,1.5 parent: 31 type: Transform - - uid: 10247 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6909 components: - - pos: -8.5,31.5 + - rot: 1.5707963267948966 rad + pos: 20.5,22.5 parent: 31 type: Transform - - uid: 10248 + - enabled: False + type: AmbientSound + - uid: 6921 components: - - pos: -4.5,31.5 + - pos: 38.5,23.5 parent: 31 type: Transform - - uid: 10249 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7067 components: - - pos: -4.5,30.5 + - rot: 1.5707963267948966 rad + pos: -11.5,-26.5 parent: 31 type: Transform - - uid: 10250 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7083 components: - - pos: -4.5,29.5 + - pos: 23.5,17.5 parent: 31 type: Transform - - uid: 10251 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7171 components: - - pos: -4.5,28.5 + - pos: 8.5,26.5 parent: 31 type: Transform - - uid: 10252 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7349 components: - - rot: 3.141592653589793 rad - pos: -4.5,28.5 + - pos: 14.5,-13.5 parent: 31 type: Transform - - uid: 10253 + - enabled: False + type: AmbientSound + - uid: 7350 components: - rot: 3.141592653589793 rad - pos: -4.5,29.5 + pos: 18.5,-18.5 parent: 31 type: Transform - - uid: 10254 + - enabled: False + type: AmbientSound + - uid: 7586 components: - rot: 3.141592653589793 rad - pos: -4.5,30.5 + pos: 8.5,16.5 parent: 31 type: Transform - - uid: 10255 + - enabled: False + type: AmbientSound + - uid: 7653 components: - - rot: 3.141592653589793 rad - pos: -4.5,31.5 + - pos: 6.5,-7.5 parent: 31 type: Transform - - uid: 10256 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7723 components: - - rot: 3.141592653589793 rad - pos: -8.5,31.5 + - rot: -1.5707963267948966 rad + pos: -14.5,-17.5 parent: 31 type: Transform - - uid: 10257 + - enabled: False + type: AmbientSound + - uid: 7724 components: - - rot: 3.141592653589793 rad - pos: -8.5,30.5 + - rot: 1.5707963267948966 rad + pos: -38.5,13.5 parent: 31 type: Transform - - uid: 10258 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7725 components: - - rot: 3.141592653589793 rad - pos: -8.5,29.5 + - rot: -1.5707963267948966 rad + pos: -34.5,13.5 parent: 31 type: Transform - - uid: 10259 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7747 + components: + - pos: -8.5,-14.5 + parent: 31 + type: Transform + - enabled: False + type: AmbientSound + - uid: 7785 components: - rot: 3.141592653589793 rad - pos: -8.5,28.5 + pos: -50.5,-11.5 parent: 31 type: Transform -- proto: PlasmaTankFilled - entities: - - uid: 10121 + - enabled: False + type: AmbientSound + - uid: 7788 components: - - pos: 40.48451,11.613793 + - rot: 3.141592653589793 rad + pos: -45.5,-11.5 parent: 31 type: Transform - - uid: 10122 + - enabled: False + type: AmbientSound + - uid: 7871 components: - - pos: 40.48451,11.613793 + - rot: -1.5707963267948966 rad + pos: -17.5,-11.5 parent: 31 type: Transform -- proto: PlasticFlapsAirtightClear - entities: - - uid: 547 + - enabled: False + type: AmbientSound + - uid: 8074 components: - - pos: 14.5,8.5 + - pos: 46.5,13.5 parent: 31 type: Transform - - uid: 3906 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8075 components: - - pos: 19.5,28.5 + - pos: 50.5,13.5 parent: 31 type: Transform - - uid: 7219 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8076 components: - - pos: 23.5,28.5 + - rot: 3.141592653589793 rad + pos: 48.5,7.5 parent: 31 type: Transform - - uid: 10097 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8085 components: - - pos: 20.5,25.5 + - pos: -0.5,8.5 parent: 31 type: Transform - - uid: 10098 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8086 components: - - pos: 22.5,25.5 + - rot: 3.141592653589793 rad + pos: -0.5,10.5 parent: 31 type: Transform -- proto: PlushieAtmosian - entities: - - uid: 7433 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8270 components: - - pos: 44.47201,25.696434 + - pos: 34.5,-23.5 parent: 31 type: Transform -- proto: PlushieCarp - entities: - - uid: 9365 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8272 components: - - pos: -24.253773,-24.478765 + - rot: -1.5707963267948966 rad + pos: 33.5,-19.5 parent: 31 type: Transform - - uid: 9374 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8273 components: - - pos: -24.769398,-23.96314 + - rot: 1.5707963267948966 rad + pos: 44.5,-22.5 parent: 31 type: Transform -- proto: PlushieLizard - entities: - - uid: 308 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8274 components: - - pos: 11.4413,-1.4572383 + - rot: 1.5707963267948966 rad + pos: 44.5,-26.5 parent: 31 type: Transform - - uid: 8715 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8275 components: - - pos: -34.491947,-24.517502 + - rot: 3.141592653589793 rad + pos: 47.5,-29.5 parent: 31 type: Transform - - uid: 8737 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8276 components: - - pos: -32.58532,-31.483488 + - rot: 3.141592653589793 rad + pos: 51.5,-29.5 parent: 31 type: Transform -- proto: PlushieNar - entities: - - uid: 9054 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8277 components: - - pos: -31.954416,20.500435 + - rot: -1.5707963267948966 rad + pos: 54.5,-26.5 parent: 31 type: Transform -- proto: PlushieSharkBlue - entities: - - uid: 5218 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8278 components: - - pos: -24.428402,-22.348387 + - rot: -1.5707963267948966 rad + pos: 54.5,-22.5 parent: 31 type: Transform -- proto: PlushieSharkGrey - entities: - - uid: 5158 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8279 components: - - pos: -24.524143,-23.023066 + - pos: 51.5,-19.5 parent: 31 type: Transform - - uid: 9918 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8280 components: - - pos: 51.363823,-26.374693 + - pos: 47.5,-19.5 parent: 31 type: Transform -- proto: PlushieSharkPink - entities: - - uid: 8451 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8734 components: - - pos: -24.477268,-23.53869 + - pos: -35.5,-23.5 parent: 31 type: Transform -- proto: PlushieSpaceLizard - entities: - - uid: 8324 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8835 components: - - pos: -16.530853,-28.393099 + - rot: 1.5707963267948966 rad + pos: 6.5,29.5 parent: 31 type: Transform - - uid: 8414 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8836 components: - - pos: 53.701447,-8.603927 + - rot: -1.5707963267948966 rad + pos: 0.5,29.5 parent: 31 type: Transform - - uid: 8712 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8837 components: - - pos: -35.523197,-23.564377 + - rot: -1.5707963267948966 rad + pos: 4.5,27.5 parent: 31 type: Transform -- proto: PonderingOrb - entities: - - uid: 7097 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8838 components: - - pos: -25.5,22.5 + - rot: 1.5707963267948966 rad + pos: 2.5,27.5 parent: 31 type: Transform -- proto: PortableFlasher - entities: - - uid: 9953 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9094 components: - - pos: -13.5,19.5 + - pos: 19.5,-4.5 parent: 31 type: Transform -- proto: PortableScrubber - entities: - - uid: 7113 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9121 components: - - pos: 30.5,8.5 + - rot: 1.5707963267948966 rad + pos: 9.5,-9.5 parent: 31 type: Transform - - uid: 7706 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9330 components: - - pos: 30.5,9.5 + - rot: -1.5707963267948966 rad + pos: -35.5,-9.5 parent: 31 type: Transform -- proto: PosterContrabandAtmosiaDeclarationIndependence - entities: - - uid: 6328 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10062 components: - - pos: 35.5,7.5 + - rot: 1.5707963267948966 rad + pos: 19.5,27.5 parent: 31 type: Transform -- proto: PosterContrabandBountyHunters - entities: - - uid: 7127 + - enabled: False + type: AmbientSound + - uid: 10063 components: - rot: -1.5707963267948966 rad - pos: 15.5,13.5 + pos: 23.5,27.5 parent: 31 type: Transform -- proto: PosterContrabandFreeDrone - entities: - - uid: 2411 + - enabled: False + type: AmbientSound + - uid: 10301 components: - - pos: 28.5,-0.5 + - rot: 3.141592653589793 rad + pos: -9.5,-22.5 parent: 31 type: Transform -- proto: PosterContrabandLamarr - entities: - - uid: 463 + - enabled: False + type: AmbientSound + - uid: 10302 components: - - pos: -6.5,-22.5 + - rot: 1.5707963267948966 rad + pos: -12.5,-19.5 parent: 31 type: Transform -- proto: PosterContrabandLustyExomorph - entities: - - uid: 7828 + - enabled: False + type: AmbientSound + - uid: 10309 components: - - pos: 5.5,-29.5 + - rot: -1.5707963267948966 rad + pos: 0.5,-31.5 parent: 31 type: Transform -- proto: PosterContrabandMissingGloves - entities: - - uid: 8046 + - enabled: False + type: AmbientSound + - uid: 10355 components: - - pos: -30.5,8.5 + - rot: 3.141592653589793 rad + pos: -21.5,-9.5 parent: 31 type: Transform -- proto: PosterContrabandSmoke - entities: - - uid: 7802 + - enabled: False + type: AmbientSound + - uid: 10423 components: - - pos: 13.5,20.5 + - rot: -1.5707963267948966 rad + pos: 53.5,18.5 parent: 31 type: Transform -- proto: PosterContrabandSpaceCola - entities: - - uid: 7819 + - enabled: False + type: AmbientSound + - uid: 10767 components: - - pos: -33.5,2.5 + - rot: 3.141592653589793 rad + pos: -39.5,-11.5 parent: 31 type: Transform -- proto: PosterContrabandTools - entities: - - uid: 7651 + - enabled: False + type: AmbientSound + - uid: 10879 components: - - pos: -27.5,12.5 + - rot: 3.141592653589793 rad + pos: 56.5,-11.5 parent: 31 type: Transform -- proto: PosterContrabandVoteWeh - entities: - - uid: 8703 + - enabled: False + type: AmbientSound + - uid: 10880 components: - - pos: -37.5,-26.5 + - rot: -1.5707963267948966 rad + pos: 53.5,-11.5 parent: 31 type: Transform -- proto: PosterContrabandWehWatches - entities: - - uid: 8720 + - enabled: False + type: AmbientSound + - uid: 10881 components: - - pos: -31.5,-28.5 + - rot: 1.5707963267948966 rad + pos: 47.5,-11.5 parent: 31 type: Transform -- proto: PosterLegitCarbonDioxide - entities: - - uid: 7690 + - enabled: False + type: AmbientSound + - uid: 10882 components: - - pos: 29.5,14.5 + - rot: 1.5707963267948966 rad + pos: 48.5,-3.5 parent: 31 type: Transform -- proto: PosterLegitCleanliness - entities: - - uid: 4141 + - enabled: False + type: AmbientSound + - uid: 11007 components: - - pos: 23.5,-3.5 + - pos: 47.5,19.5 parent: 31 type: Transform - - uid: 9617 + - enabled: False + type: AmbientSound + - uid: 11084 components: - - pos: 20.5,-20.5 + - rot: -1.5707963267948966 rad + pos: 53.5,14.5 parent: 31 type: Transform -- proto: PosterLegitCohibaRobustoAd - entities: - - uid: 2438 + - enabled: False + type: AmbientSound + - uid: 11133 components: - - pos: 1.5,-5.5 + - pos: -2.5,26.5 parent: 31 type: Transform -- proto: PosterLegitDickGumshue - entities: - - uid: 9366 + - enabled: False + type: AmbientSound + - uid: 11250 components: - - pos: -22.5,18.5 + - rot: -1.5707963267948966 rad + pos: -34.5,8.5 parent: 31 type: Transform -- proto: PosterLegitIan + - enabled: False + type: AmbientSound + - uid: 11255 + components: + - rot: 3.141592653589793 rad + pos: -2.5,23.5 + parent: 31 + type: Transform + - enabled: False + type: AmbientSound +- proto: PoweredlightExterior entities: - - uid: 7806 + - uid: 9926 components: - - pos: 11.5,16.5 + - pos: -1.5,-21.5 parent: 31 type: Transform -- proto: PosterLegitLoveIan + - enabled: False + type: AmbientSound +- proto: PoweredLightPostSmall entities: - - uid: 7807 + - uid: 7709 components: - - pos: 11.5,21.5 + - pos: 30.5,28.5 parent: 31 type: Transform -- proto: PosterLegitNanotrasenLogo + - enabled: False + type: AmbientSound +- proto: PoweredlightSodium entities: - - uid: 619 + - uid: 8526 components: - - pos: 5.5,26.5 + - pos: -31.5,-13.5 parent: 31 type: Transform - - uid: 7803 + - enabled: False + type: AmbientSound +- proto: PoweredSmallLight + entities: + - uid: 14 components: - - pos: 0.5,19.5 + - rot: -1.5707963267948966 rad + pos: -16.5,16.5 parent: 31 type: Transform - - uid: 7805 + - uid: 1246 components: - - pos: -3.5,25.5 + - rot: 1.5707963267948966 rad + pos: 11.5,-29.5 parent: 31 type: Transform - - uid: 8047 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1302 components: - - pos: -33.5,6.5 + - pos: 39.5,0.5 parent: 31 type: Transform - - uid: 8266 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1575 components: - - pos: 34.5,-18.5 + - pos: 39.5,9.5 parent: 31 type: Transform - - uid: 8325 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2020 components: - - pos: 43.5,-22.5 + - pos: -23.5,20.5 parent: 31 type: Transform - - uid: 8326 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2343 components: - - pos: 43.5,-26.5 + - pos: -13.5,-10.5 parent: 31 type: Transform - - uid: 9192 + - uid: 3586 components: - - rot: -1.5707963267948966 rad - pos: -3.5,-31.5 + - pos: 11.5,24.5 parent: 31 type: Transform -- proto: PosterLegitNoERP - entities: - - uid: 7808 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3861 components: - - pos: -14.5,6.5 + - rot: 1.5707963267948966 rad + pos: -13.5,8.5 parent: 31 type: Transform -- proto: PosterLegitObey - entities: - - uid: 7809 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3863 components: - - pos: 1.5,11.5 + - rot: 1.5707963267948966 rad + pos: -14.5,20.5 parent: 31 type: Transform -- proto: PosterLegitReportCrimes - entities: - - uid: 3838 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3864 components: - - pos: -9.5,6.5 + - rot: -1.5707963267948966 rad + pos: -11.5,19.5 parent: 31 type: Transform -- proto: PosterLegitSafetyEyeProtection - entities: - - uid: 7145 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3865 components: - - pos: 18.5,2.5 + - pos: -14.5,25.5 parent: 31 type: Transform -- proto: PosterLegitStateLaws - entities: - - uid: 7645 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3867 components: - - pos: -0.5,-28.5 + - rot: 3.141592653589793 rad + pos: -1.5,20.5 parent: 31 type: Transform -- proto: PosterMapSaltern - entities: - - uid: 9089 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3871 components: - - pos: -29.5,12.5 + - rot: -1.5707963267948966 rad + pos: -7.5,8.5 parent: 31 type: Transform - - uid: 9090 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3872 components: - - pos: 1.5,22.5 + - pos: 8.5,14.5 parent: 31 type: Transform - - uid: 9091 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3874 components: - - pos: 27.5,7.5 + - pos: 14.5,21.5 parent: 31 type: Transform - - uid: 9092 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3880 components: - - pos: 6.5,-15.5 + - pos: 38.5,-3.5 parent: 31 type: Transform - - uid: 9477 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3887 components: - - pos: -30.5,6.5 + - pos: 28.5,10.5 parent: 31 type: Transform - - uid: 9478 + - uid: 3894 components: - - pos: -39.5,-0.5 + - rot: -1.5707963267948966 rad + pos: 27.5,-10.5 parent: 31 type: Transform - - uid: 9479 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3897 components: - - pos: -38.5,-6.5 + - rot: 1.5707963267948966 rad + pos: 24.5,-23.5 parent: 31 type: Transform - - uid: 9579 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3898 components: - - pos: 29.5,-5.5 + - rot: -1.5707963267948966 rad + pos: 27.5,-24.5 parent: 31 type: Transform -- proto: PottedPlant27 - entities: - - uid: 7053 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3899 components: - - pos: 45.5,-4.5 + - rot: 3.141592653589793 rad + pos: 25.5,-18.5 parent: 31 type: Transform -- proto: PottedPlantBioluminscent - entities: - - uid: 8292 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4020 components: - - pos: 32.5,-25.5 + - rot: 1.5707963267948966 rad + pos: -19.5,15.5 parent: 31 type: Transform - - uid: 9690 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4029 components: - - pos: -5.444195,-17.595007 + - rot: -1.5707963267948966 rad + pos: -9.5,-35.5 parent: 31 type: Transform -- proto: PottedPlantRandom - entities: - - uid: 161 + - uid: 4055 components: - - pos: 12.5,1.5 + - pos: 12.5,-19.5 parent: 31 type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 743 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4153 components: - - pos: 1.5,-21.5 + - rot: -1.5707963267948966 rad + pos: 10.5,-37.5 parent: 31 type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 763 + - uid: 4239 components: - - pos: 0.5,26.5 + - pos: 34.5,37.5 parent: 31 type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 1068 + - uid: 4507 components: - - pos: 5.5,16.5 + - rot: -1.5707963267948966 rad + pos: 36.5,-13.5 parent: 31 type: Transform - - uid: 4934 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4605 components: - - pos: 4.5,27.5 + - rot: 1.5707963267948966 rad + pos: 52.5,6.5 parent: 31 type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 7230 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4662 components: - - pos: 12.5,-11.5 + - rot: 1.5707963267948966 rad + pos: -20.5,-24.5 parent: 31 type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 7290 + - uid: 4862 components: - - pos: 6.5,1.5 + - rot: 1.5707963267948966 rad + pos: -30.5,-5.5 parent: 31 type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 8288 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4957 components: - - pos: 55.5,-24.5 + - rot: 1.5707963267948966 rad + pos: -30.5,-2.5 parent: 31 type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 8289 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4958 components: - - pos: 49.5,-18.5 + - rot: 1.5707963267948966 rad + pos: -30.5,0.5 parent: 31 type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 8709 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4959 components: - - pos: -34.5,-23.5 + - rot: 1.5707963267948966 rad + pos: -33.5,-0.5 parent: 31 type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 8808 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5008 components: - - pos: 2.5,27.5 + - rot: -1.5707963267948966 rad + pos: -15.5,-5.5 parent: 31 type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 9325 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5009 components: - - pos: -38.5,-1.5 + - rot: 3.141592653589793 rad + pos: -12.5,-4.5 parent: 31 type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 9326 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5010 components: - - pos: -38.5,-3.5 + - rot: 1.5707963267948966 rad + pos: -12.5,-7.5 parent: 31 type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- proto: PottedPlantRandomPlastic - entities: - - uid: 9040 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5120 components: - - pos: 35.5,2.5 + - pos: 10.5,26.5 parent: 31 type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- proto: PottedPlantRD - entities: - - uid: 7630 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5190 components: - - pos: -2.5,-16.5 + - pos: -22.5,25.5 parent: 31 type: Transform -- proto: PowerCellHigh - entities: - - uid: 5212 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7063 components: - - pos: -7.559543,-32.25025 + - pos: 31.5,-9.5 parent: 31 type: Transform - - uid: 9342 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7479 components: - - pos: -7.559543,-32.37525 + - rot: -1.5707963267948966 rad + pos: 0.5,13.5 parent: 31 type: Transform -- proto: PowerCellRecharger - entities: - - uid: 1395 + - uid: 7498 components: - - pos: 5.5,32.5 + - rot: 1.5707963267948966 rad + pos: 40.5,-8.5 parent: 31 type: Transform - - canCollide: False - type: Physics - - uid: 3133 + - uid: 7543 components: - - pos: 40.5,-0.5 + - rot: 3.141592653589793 rad + pos: -31.5,9.5 parent: 31 type: Transform - - canCollide: False - type: Physics - - uid: 4219 + - uid: 7602 components: - - pos: -6.5,-32.5 + - rot: 3.141592653589793 rad + pos: -29.5,-9.5 parent: 31 type: Transform - - uid: 6607 + - uid: 7686 components: - - pos: 11.5,-2.5 + - rot: 3.141592653589793 rad + pos: 60.5,6.5 parent: 31 type: Transform - - uid: 9119 + - uid: 7811 components: - - pos: 14.5,12.5 + - rot: -1.5707963267948966 rad + pos: 23.5,-0.5 parent: 31 type: Transform - - canCollide: False - type: Physics - - uid: 9519 + - uid: 7909 components: - - pos: -9.5,16.5 + - pos: 28.5,13.5 parent: 31 type: Transform - - uid: 9525 + - uid: 8050 components: - - pos: -0.5,-29.5 + - pos: 22.5,-13.5 parent: 31 type: Transform - - uid: 9526 + - uid: 8150 components: - - pos: -0.5,-13.5 + - pos: 56.5,8.5 parent: 31 type: Transform - - uid: 9528 + - uid: 8732 components: - - pos: 34.5,0.5 + - rot: 1.5707963267948966 rad + pos: -36.5,-27.5 parent: 31 type: Transform -- proto: Poweredlight - entities: - - uid: 41 + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8733 components: - - rot: 1.5707963267948966 rad - pos: -25.5,6.5 + - rot: -1.5707963267948966 rad + pos: -32.5,-27.5 parent: 31 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 139 + - uid: 8735 components: - - rot: 1.5707963267948966 rad - pos: -5.5,-14.5 + - pos: -32.5,-31.5 parent: 31 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 143 + - uid: 8775 components: - - rot: -1.5707963267948966 rad - pos: 12.5,-3.5 + - pos: -16.5,11.5 parent: 31 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 303 + - uid: 9248 components: - - pos: 8.5,21.5 + - pos: -42.5,0.5 parent: 31 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 493 + - uid: 9249 components: - - rot: -1.5707963267948966 rad - pos: 24.5,11.5 + - rot: 3.141592653589793 rad + pos: -42.5,2.5 parent: 31 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 503 + - uid: 9250 components: - - pos: -1.5,-13.5 + - rot: 3.141592653589793 rad + pos: -42.5,10.5 parent: 31 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 516 + - uid: 9251 components: - - pos: 28.5,6.5 + - pos: -42.5,8.5 parent: 31 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 557 + - uid: 9449 components: - - pos: -38.5,10.5 + - rot: 3.141592653589793 rad + pos: -23.5,-32.5 parent: 31 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 616 + - uid: 10014 components: - - rot: 1.5707963267948966 rad - pos: 46.5,21.5 + - rot: 3.141592653589793 rad + pos: 32.5,21.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - uid: 664 + - uid: 10499 components: - - rot: -1.5707963267948966 rad - pos: -34.5,9.5 + - rot: 3.141592653589793 rad + pos: 8.5,-42.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 776 + - uid: 10500 + components: + - pos: -0.5,-42.5 + parent: 31 + type: Transform + - uid: 10875 components: - rot: 1.5707963267948966 rad - pos: -15.5,13.5 + pos: 52.5,-1.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - uid: 783 + - uid: 11041 + components: + - pos: -7.5,22.5 + parent: 31 + type: Transform + - uid: 11200 components: - rot: -1.5707963267948966 rad - pos: 19.5,-16.5 + pos: -4.5,28.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 857 + - uid: 11209 components: - rot: -1.5707963267948966 rad - pos: -35.5,0.5 + pos: 16.5,-28.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 891 +- proto: PoweredSmallLightEmpty + entities: + - uid: 7112 components: - rot: -1.5707963267948966 rad - pos: -35.5,-4.5 + pos: -22.5,-23.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 892 + - uid: 8209 components: - - pos: -32.5,5.5 + - pos: -22.5,17.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 917 +- proto: Protolathe + entities: + - uid: 2319 components: - - rot: 3.141592653589793 rad - pos: -30.5,3.5 + - pos: -13.5,-21.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 946 +- proto: Rack + entities: + - uid: 117 components: - - rot: 1.5707963267948966 rad - pos: -9.5,-31.5 + - pos: 29.5,-1.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1033 + - uid: 203 + components: + - pos: -6.5,-32.5 + parent: 31 + type: Transform + - uid: 826 components: - rot: 1.5707963267948966 rad - pos: -29.5,9.5 + pos: 48.5,-3.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1034 + - uid: 1352 components: - - rot: 3.141592653589793 rad - pos: -26.5,8.5 + - pos: 43.5,13.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1050 + - uid: 2133 + components: + - pos: -11.5,18.5 + parent: 31 + type: Transform + - uid: 2827 + components: + - pos: 23.5,-14.5 + parent: 31 + type: Transform + - uid: 3229 + components: + - pos: 10.5,11.5 + parent: 31 + type: Transform + - uid: 3375 + components: + - pos: 10.5,10.5 + parent: 31 + type: Transform + - uid: 3378 + components: + - pos: -17.5,-20.5 + parent: 31 + type: Transform + - uid: 3508 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,13.5 + parent: 31 + type: Transform + - uid: 3742 components: - rot: -1.5707963267948966 rad - pos: -23.5,8.5 + pos: -27.5,-19.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1058 + - uid: 3743 components: - rot: -1.5707963267948966 rad - pos: -22.5,2.5 + pos: -28.5,-19.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1059 + - uid: 4542 components: - - rot: 3.141592653589793 rad - pos: -20.5,3.5 + - pos: 59.5,6.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1060 + - uid: 5153 components: - - rot: -1.5707963267948966 rad - pos: -22.5,-0.5 + - pos: -5.5,-19.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1061 + - uid: 6853 components: - - pos: -18.5,5.5 + - pos: 29.5,16.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1064 + - uid: 7050 components: - - rot: 1.5707963267948966 rad - pos: -20.5,0.5 + - pos: 29.5,-10.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1065 + - uid: 7347 components: - - rot: 1.5707963267948966 rad - pos: -25.5,-0.5 + - pos: -1.5,-24.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1066 + - uid: 7537 components: - - rot: 1.5707963267948966 rad - pos: -25.5,-4.5 + - pos: 24.5,13.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1069 + - uid: 7576 components: - - rot: 3.141592653589793 rad - pos: -20.5,-2.5 + - pos: -5.5,-8.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1070 + - uid: 7778 components: - - rot: 3.141592653589793 rad - pos: -24.5,-8.5 + - pos: -30.5,13.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1121 + - uid: 7793 components: - - rot: 1.5707963267948966 rad - pos: -2.5,24.5 + - pos: -23.5,22.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1122 + - uid: 7977 components: - - rot: 1.5707963267948966 rad - pos: -2.5,30.5 + - pos: 27.5,-5.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1123 + - uid: 7982 components: - - rot: -1.5707963267948966 rad - pos: 9.5,30.5 + - pos: 27.5,-4.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1135 + - uid: 8739 components: - - pos: 12.5,27.5 + - pos: -32.5,-27.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1171 + - uid: 8751 components: - - rot: 3.141592653589793 rad - pos: 1.5,30.5 + - pos: -20.5,-23.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1186 + - uid: 8752 components: - - rot: 3.141592653589793 rad - pos: 5.5,30.5 + - pos: -20.5,-24.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1188 + - uid: 8886 components: - - rot: 1.5707963267948966 rad - pos: 2.5,23.5 + - pos: 45.5,1.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1200 + - uid: 8888 + components: + - pos: 45.5,5.5 + parent: 31 + type: Transform + - uid: 8993 components: - rot: -1.5707963267948966 rad - pos: 4.5,23.5 + pos: -18.5,-10.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1210 + - uid: 9072 components: - rot: 3.141592653589793 rad - pos: 5.5,16.5 + pos: 46.5,-5.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1211 + - uid: 9225 components: - - rot: 3.141592653589793 rad - pos: 1.5,16.5 + - pos: 35.5,-3.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1212 + - uid: 9414 components: - - pos: -1.5,18.5 + - pos: -11.5,-27.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1213 + - uid: 9786 components: - - rot: 1.5707963267948966 rad - pos: 6.5,9.5 + - pos: 10.5,-37.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1220 + - uid: 9861 components: - - rot: -1.5707963267948966 rad - pos: 10.5,9.5 + - pos: 10.5,-19.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1228 + - uid: 10271 components: - - rot: 1.5707963267948966 rad - pos: 12.5,10.5 + - pos: 8.5,-17.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1234 + - uid: 10559 components: - - rot: -1.5707963267948966 rad - pos: 4.5,12.5 + - pos: 21.5,-19.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1252 + - uid: 10623 components: - rot: 1.5707963267948966 rad - pos: 2.5,7.5 + pos: 40.5,-10.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1253 + - uid: 10641 components: - - pos: 15.5,12.5 + - pos: 41.5,-13.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1259 + - uid: 10978 components: - - rot: 1.5707963267948966 rad - pos: 18.5,13.5 + - pos: 56.5,-5.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1261 + - uid: 11124 components: - - rot: 1.5707963267948966 rad - pos: 18.5,8.5 + - pos: -5.5,29.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1262 +- proto: RadiationCollector + entities: + - uid: 10 components: - - rot: -1.5707963267948966 rad - pos: 16.5,7.5 + - pos: 64.5,-0.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1265 + - uid: 3577 components: - - rot: 3.141592653589793 rad - pos: 18.5,3.5 + - pos: 78.5,5.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1266 + - uid: 4264 components: - - rot: 3.141592653589793 rad - pos: 13.5,3.5 + - pos: 78.5,4.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1271 + - uid: 4325 components: - - pos: 12.5,1.5 + - pos: 64.5,0.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1272 + - uid: 4467 components: - - pos: 15.5,1.5 + - pos: 64.5,1.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1274 + - uid: 4468 components: - - pos: 18.5,1.5 + - pos: 64.5,3.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1281 + - uid: 4469 components: - - rot: 3.141592653589793 rad - pos: 23.5,3.5 + - pos: 64.5,4.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1282 + - uid: 4470 + components: + - pos: 64.5,5.5 + parent: 31 + type: Transform + - uid: 10113 + components: + - pos: 78.5,3.5 + parent: 31 + type: Transform + - uid: 10114 + components: + - pos: 78.5,-0.5 + parent: 31 + type: Transform + - uid: 10115 + components: + - pos: 78.5,0.5 + parent: 31 + type: Transform + - uid: 10116 + components: + - pos: 78.5,1.5 + parent: 31 + type: Transform +- proto: RadioHandheld + entities: + - uid: 17 components: - - rot: -1.5707963267948966 rad - pos: 19.5,-0.5 + - pos: 27.667074,21.691422 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1283 + - uid: 1095 components: - - rot: 3.141592653589793 rad - pos: 27.5,0.5 + - pos: 28.301825,9.959752 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1284 + - uid: 6857 components: - - rot: 1.5707963267948966 rad - pos: 29.5,-2.5 + - pos: 27.69659,21.514431 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1285 + - uid: 7486 components: - - rot: 1.5707963267948966 rad - pos: 31.5,-0.5 + - pos: 22.740244,13.497578 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1286 + - uid: 9021 components: - - rot: 3.141592653589793 rad - pos: 31.5,2.5 + - pos: 32.380318,-3.4857323 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1287 + - uid: 9022 components: - - rot: 1.5707963267948966 rad - pos: 37.5,2.5 + - pos: 32.645943,-3.4701073 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1288 +- proto: RagItem + entities: + - uid: 10648 components: - - pos: 35.5,6.5 + - pos: 42.029312,-8.382423 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1301 +- proto: Railing + entities: + - uid: 11173 components: - - rot: -1.5707963267948966 rad - pos: 35.5,-2.5 + - rot: 3.141592653589793 rad + pos: 77.5,-8.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1303 + - uid: 11174 components: - - pos: 23.5,-4.5 + - rot: 3.141592653589793 rad + pos: 76.5,-8.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1304 + - uid: 11175 components: - - rot: 3.141592697301183 rad - pos: 23.5,3.5 + - rot: 3.141592653589793 rad + pos: 75.5,-8.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1305 + - uid: 11177 components: - rot: 3.141592653589793 rad - pos: 23.5,-7.5 + pos: 78.5,-8.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1306 + - uid: 11178 components: - rot: -1.5707963267948966 rad - pos: 19.5,-8.5 + pos: 82.5,0.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1307 + - uid: 11179 components: - rot: -1.5707963267948966 rad - pos: 19.5,-11.5 + pos: 82.5,-0.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1308 + - uid: 11180 components: - rot: -1.5707963267948966 rad - pos: 24.5,-14.5 + pos: 82.5,4.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1312 + - uid: 11181 components: - - rot: 3.141592653589793 rad - pos: 1.5,-21.5 + - rot: -1.5707963267948966 rad + pos: 82.5,5.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1313 + - uid: 11182 components: - - rot: 3.141592653589793 rad - pos: 5.5,-21.5 + - pos: 77.5,13.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1314 + - uid: 11183 components: - - rot: 1.5707963267948966 rad - pos: 17.5,-20.5 + - pos: 76.5,13.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1322 + - uid: 11184 components: - - rot: -1.5707963267948966 rad - pos: 5.5,-17.5 + - pos: 75.5,13.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1323 + - uid: 11185 components: - - rot: 1.5707963267948966 rad - pos: 7.5,-14.5 + - pos: 67.5,13.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - type: Timer - - uid: 1324 + - uid: 11186 components: - - rot: 3.141592653589793 rad - pos: 6.5,-11.5 + - pos: 66.5,13.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1325 + - uid: 11187 components: - - rot: 1.5707963267948966 rad - pos: 1.5,-17.5 + - pos: 65.5,13.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1328 + - uid: 11188 components: - - rot: 3.141592653589793 rad - pos: 9.5,-17.5 + - pos: 64.5,13.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - type: Timer - - uid: 1331 + - uid: 11190 components: - rot: 3.141592653589793 rad - pos: -1.5,-17.5 + pos: 64.5,-8.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1332 + - uid: 11191 components: - rot: 3.141592653589793 rad - pos: -1.5,-20.5 + pos: 65.5,-8.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1333 + - uid: 11192 components: - - rot: -1.5707963267948966 rad - pos: -2.5,-23.5 + - rot: 3.141592653589793 rad + pos: 66.5,-8.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1336 + - uid: 11193 components: - - rot: 1.5707963267948966 rad - pos: 2.5,-25.5 + - rot: 3.141592653589793 rad + pos: 67.5,-8.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1344 + - uid: 11194 components: - - rot: 1.5707963267948966 rad - pos: 18.5,17.5 + - pos: 78.5,13.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1354 +- proto: RandomArcade + entities: + - uid: 196 components: - - rot: -1.5707963267948966 rad - pos: 4.5,-28.5 + - pos: -18.5,-29.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1356 +- proto: RandomArtifactSpawner + entities: + - uid: 3735 components: - - rot: -1.5707963267948966 rad - pos: 9.5,-29.5 + - pos: -15.5,-30.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1358 +- proto: RandomDrinkBottle + entities: + - uid: 2326 components: - - rot: -1.5707963267948966 rad - pos: 12.5,-25.5 + - pos: -23.5,-21.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1359 +- proto: RandomDrinkGlass + entities: + - uid: 123 components: - - rot: 3.141592697301183 rad - pos: 31.5,2.5 + - pos: -3.5,-4.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1360 + - uid: 6101 components: - - pos: 7.5,-22.5 + - pos: 7.5,1.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1361 + - uid: 7078 components: - - rot: 1.5707963267948966 rad - pos: 2.5,-9.5 + - pos: -4.5,-21.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1366 +- proto: RandomFoodMeal + entities: + - uid: 3409 components: - - rot: -1.5707963267948966 rad - pos: 0.5,-4.5 + - pos: -6.5,-14.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1367 + - uid: 4145 components: - - rot: 3.141592653589793 rad - pos: 0.5,3.5 + - pos: -10.5,1.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1371 +- proto: RandomFoodSingle + entities: + - uid: 1158 components: - - rot: -1.5707963267948966 rad - pos: 4.5,2.5 + - pos: -2.5,-1.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1372 + - uid: 5675 components: - - rot: 1.5707963267948966 rad - pos: 6.5,1.5 + - pos: -22.5,9.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1538 +- proto: RandomInstruments + entities: + - uid: 1189 components: - - rot: 3.141592653589793 rad - pos: 45.5,15.5 + - pos: -30.5,1.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1539 + - uid: 5710 components: - - rot: -1.5707963267948966 rad - pos: 51.5,18.5 + - pos: -3.5,-39.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1727 + - uid: 10985 components: - - rot: -1.5707963267948966 rad - pos: 51.5,15.5 + - pos: 59.5,-5.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1915 +- proto: RandomPainting + entities: + - uid: 1207 components: - - pos: -8.5,1.5 + - pos: -23.5,-20.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1965 +- proto: RandomPosterAny + entities: + - uid: 7142 components: - - rot: -1.5707963267948966 rad - pos: -11.5,16.5 + - pos: -10.5,-5.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2146 + - uid: 7953 components: - - rot: -1.5707963267948966 rad - pos: 28.5,16.5 + - pos: 13.5,-22.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - uid: 2247 + - uid: 7955 components: - - rot: 1.5707963267948966 rad - pos: 2.5,-3.5 + - pos: 28.5,-8.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3380 + - uid: 7956 components: - - rot: -1.5707963267948966 rad - pos: -4.5,-29.5 + - pos: 24.5,-0.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3386 + - uid: 7957 components: - - pos: -3.5,14.5 + - pos: 35.5,-5.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3858 + - uid: 8268 components: - - pos: -19.5,10.5 + - pos: 39.5,-11.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3860 + - uid: 8269 components: - - rot: 3.141592653589793 rad - pos: -21.5,8.5 + - pos: 34.5,-16.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3902 + - uid: 9283 components: - - rot: -1.5707963267948966 rad - pos: 22.5,21.5 + - pos: -31.5,0.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3913 + - uid: 10530 components: - - rot: 1.5707963267948966 rad - pos: 20.5,21.5 + - pos: -5.5,-39.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3963 + - uid: 10531 components: - - rot: 3.141592653589793 rad - pos: -10.5,7.5 + - pos: 7.5,-35.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3983 + - uid: 10532 components: - - pos: -5.5,17.5 + - pos: -21.5,-28.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3998 +- proto: RandomPosterContraband + entities: + - uid: 336 components: - - rot: 1.5707963267948966 rad - pos: -9.5,17.5 + - pos: -18.5,11.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4097 + - uid: 7263 components: - - pos: -12.5,11.5 + - pos: 20.5,-21.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4119 + - uid: 7810 components: - - pos: -11.5,5.5 + - pos: -14.5,8.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4120 + - uid: 9279 components: - - pos: -9.5,5.5 + - pos: -10.5,-11.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4121 + - uid: 10529 components: - - pos: -3.5,5.5 + - pos: -13.5,-36.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4122 + - uid: 11201 components: - - rot: -1.5707963267948966 rad - pos: -16.5,-1.5 + - pos: -4.5,30.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4124 +- proto: RandomPosterLegit + entities: + - uid: 2557 components: - - pos: -12.5,1.5 + - pos: -52.5,-8.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4152 + - uid: 4659 components: - - rot: 3.141592653589793 rad - pos: -13.5,-1.5 + - pos: 25.5,-11.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4177 + - uid: 6859 components: - - rot: 1.5707963267948966 rad - pos: -7.5,-4.5 + - pos: 30.5,16.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4232 + - uid: 7135 components: - - rot: 3.141592653589793 rad - pos: -3.5,-6.5 + - pos: -8.5,-17.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4457 + - uid: 7490 components: - - pos: -1.5,1.5 + - pos: -3.5,-31.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4459 + - uid: 7642 components: - - pos: -15.5,-17.5 + - pos: -21.5,-17.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4460 + - uid: 9282 components: - - rot: 1.5707963267948966 rad - pos: -17.5,-21.5 + - pos: -31.5,-1.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4485 + - uid: 9284 components: - - rot: -1.5707963267948966 rad - pos: 60.5,-0.5 + - pos: -21.5,-1.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4486 + - uid: 10540 components: - - pos: 55.5,7.5 + - pos: -13.5,-23.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4602 + - uid: 10981 components: - - pos: 59.5,4.5 + - pos: 47.5,-4.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4606 + - uid: 11106 components: - - rot: 3.141592653589793 rad - pos: 55.5,0.5 + - pos: -12.5,-13.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4607 +- proto: RandomSnacks + entities: + - uid: 7476 components: - - pos: 52.5,3.5 + - pos: -12.5,11.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4608 + - uid: 10760 components: - - rot: 3.141592653589793 rad - pos: 52.5,1.5 + - pos: -47.5,-9.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4756 +- proto: RandomSoap + entities: + - uid: 8440 components: - - rot: 1.5707963267948966 rad - pos: -17.5,-25.5 + - pos: -17.5,-12.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4827 +- proto: RandomSpawner + entities: + - uid: 426 components: - - rot: -1.5707963267948966 rad - pos: -13.5,-25.5 + - pos: -25.5,0.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4885 + - uid: 427 components: - - rot: -1.5707963267948966 rad - pos: -13.5,-21.5 + - pos: -17.5,3.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4912 + - uid: 430 components: - - rot: -1.5707963267948966 rad - pos: 24.5,15.5 + - pos: -7.5,5.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4915 + - uid: 494 components: - - rot: 3.141592653589793 rad - pos: -9.5,-20.5 + - pos: -21.5,12.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4927 + - uid: 4382 components: - - pos: -9.5,-17.5 + - pos: 30.5,-10.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5102 + - uid: 4512 components: - - rot: -1.5707963267948966 rad - pos: 51.5,-4.5 + - pos: 36.5,-9.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5103 + - uid: 4513 components: - - rot: -1.5707963267948966 rad - pos: 19.5,-0.5 + - pos: 24.5,-18.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5107 + - uid: 4658 components: - - rot: 1.5707963267948966 rad - pos: 47.5,-4.5 + - pos: 24.5,-20.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5128 + - uid: 5212 components: - - rot: 1.5707963267948966 rad - pos: -2.5,25.5 + - rot: -1.5707963267948966 rad + pos: -8.5,-18.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6327 + - uid: 7593 components: - - rot: 3.141592653589793 rad - pos: 41.5,11.5 + - pos: -14.5,-11.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6330 + - uid: 7594 components: - - rot: 1.5707963267948966 rad - pos: 30.5,13.5 + - pos: -15.5,-4.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6332 + - uid: 7595 components: - - rot: -1.5707963267948966 rad - pos: 36.5,9.5 + - pos: -8.5,-9.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6384 + - uid: 7603 components: - - pos: 34.5,23.5 + - pos: -33.5,-11.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6385 + - uid: 7604 components: - - pos: 42.5,23.5 + - pos: -33.5,-3.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6387 + - uid: 7608 components: - - pos: 36.5,23.5 + - rot: 1.5707963267948966 rad + pos: -20.5,-14.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6406 + - uid: 7625 components: - - pos: 35.5,19.5 + - rot: -1.5707963267948966 rad + pos: -12.5,-16.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6407 + - uid: 7628 components: - - pos: 43.5,19.5 + - pos: 2.5,-9.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6436 + - uid: 7776 components: - - pos: 43.5,9.5 + - pos: -26.5,13.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6438 + - uid: 7784 components: - - pos: 32.5,23.5 + - pos: -25.5,20.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6463 + - uid: 7844 components: - - pos: 44.5,23.5 + - rot: -1.5707963267948966 rad + pos: -18.5,9.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6509 + - uid: 7865 components: - - pos: 40.5,23.5 + - pos: 26.5,-22.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6511 + - uid: 7869 components: - - pos: 43.5,13.5 + - pos: -16.5,24.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6552 + - uid: 7870 components: - - rot: 1.5707963267948966 rad - pos: 30.5,9.5 + - pos: -4.5,20.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6565 + - uid: 7914 components: - - pos: 31.5,19.5 + - pos: 21.5,0.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6566 + - uid: 7965 components: - - pos: 39.5,19.5 + - pos: 27.5,-1.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6574 + - uid: 7967 components: - - pos: 49.5,17.5 + - pos: 38.5,-7.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6609 + - uid: 8797 components: - - rot: 1.5707963267948966 rad - pos: 30.5,17.5 + - pos: -15.5,10.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6897 + - uid: 9277 components: - - pos: 39.5,6.5 + - pos: -23.5,-19.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6898 + - uid: 9415 components: - - pos: 50.5,5.5 + - rot: -1.5707963267948966 rad + pos: -3.5,-17.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6899 + - uid: 9469 components: - - pos: 45.5,5.5 + - pos: -18.5,-32.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6900 + - uid: 10448 components: - - rot: 3.141592653589793 rad - pos: 45.5,1.5 + - pos: -36.5,-16.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6921 + - uid: 10464 components: - - pos: 38.5,23.5 + - rot: -1.5707963267948966 rad + pos: -31.5,-18.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7067 + - uid: 10466 components: - rot: 1.5707963267948966 rad - pos: -11.5,-26.5 + pos: -30.5,-14.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7083 + - uid: 10663 components: - - pos: 23.5,17.5 + - rot: 3.141592653589793 rad + pos: 45.5,-10.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7171 + - uid: 10761 components: - - pos: 8.5,26.5 + - rot: -1.5707963267948966 rad + pos: -39.5,-11.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7232 + - uid: 11028 components: - - pos: 6.5,-4.5 + - pos: -7.5,24.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - uid: 7359 + - uid: 11228 components: - - rot: 3.141592653589793 rad - pos: -18.5,-9.5 + - rot: -1.5707963267948966 rad + pos: -28.5,-9.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7483 + - uid: 11231 components: - - pos: -1.5,-29.5 + - rot: -1.5707963267948966 rad + pos: -28.5,-11.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7631 +- proto: RandomVendingDrinks + entities: + - uid: 4027 components: - - rot: 3.141592653589793 rad - pos: 8.5,-2.5 + - pos: -5.5,-17.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - uid: 7653 +- proto: RCD + entities: + - uid: 621 components: - - pos: 6.5,-7.5 + - pos: 40.557358,0.6694789 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7663 + - uid: 11015 components: - - pos: 6.5,-10.5 + - pos: 42.653347,13.463804 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7724 +- proto: RCDAmmo + entities: + - uid: 593 components: - - rot: 1.5707963267948966 rad - pos: -38.5,13.5 + - pos: 40.557358,0.5514846 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7725 +- proto: ReagentContainerMilk + entities: + - uid: 2283 components: - - rot: -1.5707963267948966 rad - pos: -34.5,13.5 + - pos: -11.776268,-3.7349403 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8074 +- proto: Recycler + entities: + - uid: 9266 components: - - pos: 46.5,13.5 + - rot: 1.5707963267948966 rad + pos: -34.5,-16.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8075 + - links: + - 10218 + type: DeviceLinkSink +- proto: ReinforcedPlasmaWindow + entities: + - uid: 439 components: - - pos: 50.5,13.5 + - pos: 36.5,20.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8076 + - uid: 518 components: - - rot: 3.141592653589793 rad - pos: 48.5,7.5 + - pos: 40.5,20.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8085 + - uid: 520 components: - - pos: -0.5,8.5 + - pos: 38.5,20.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8086 + - uid: 1550 components: - - rot: 3.141592653589793 rad - pos: -0.5,10.5 + - pos: 44.5,20.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8270 + - uid: 1551 components: - - pos: 34.5,-23.5 + - pos: 42.5,20.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8272 + - uid: 3888 components: - - rot: -1.5707963267948966 rad - pos: 33.5,-19.5 + - pos: 54.5,15.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8273 + - uid: 6548 components: - - rot: 1.5707963267948966 rad - pos: 44.5,-22.5 + - rot: -1.5707963267948966 rad + pos: 54.5,17.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8274 + - uid: 7222 components: - - rot: 1.5707963267948966 rad - pos: 44.5,-26.5 + - pos: 34.5,20.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8275 + - uid: 8949 components: - - rot: 3.141592653589793 rad - pos: 47.5,-29.5 + - pos: -10.5,19.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8276 + - uid: 9001 components: - - rot: 3.141592653589793 rad - pos: 51.5,-29.5 + - pos: -10.5,21.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8277 + - uid: 9038 components: - - rot: -1.5707963267948966 rad - pos: 54.5,-26.5 + - pos: 46.5,20.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8278 + - uid: 10122 components: - rot: -1.5707963267948966 rad - pos: 54.5,-22.5 + pos: 54.5,16.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8279 + - uid: 11045 components: - - pos: 51.5,-19.5 + - pos: 56.5,16.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8280 + - uid: 11046 components: - - pos: 47.5,-19.5 + - pos: 56.5,15.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8734 + - uid: 11047 components: - - pos: -35.5,-23.5 + - pos: 55.5,18.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8835 + - uid: 11095 components: - - rot: 1.5707963267948966 rad - pos: 6.5,29.5 + - pos: 56.5,17.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8836 +- proto: ReinforcedWindow + entities: + - uid: 3 components: - - rot: -1.5707963267948966 rad - pos: 0.5,29.5 + - pos: 13.5,-4.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8837 + - uid: 79 components: - - rot: -1.5707963267948966 rad - pos: 4.5,27.5 + - pos: -35.5,-22.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8838 + - uid: 254 components: - - rot: 1.5707963267948966 rad - pos: 2.5,27.5 + - pos: 11.5,-6.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9094 + - uid: 307 components: - - pos: 19.5,-4.5 + - pos: 32.5,1.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9121 + - uid: 335 components: - - rot: 1.5707963267948966 rad - pos: 9.5,-9.5 + - pos: -50.5,-8.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9330 + - uid: 410 components: - - rot: -1.5707963267948966 rad - pos: -35.5,-9.5 + - pos: 34.5,1.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9702 + - uid: 411 components: - - rot: 3.141592653589793 rad - pos: -5.5,26.5 + - pos: 30.5,4.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9788 + - uid: 546 components: - - pos: -5.5,-26.5 + - pos: -39.5,19.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10062 + - uid: 572 components: - - rot: 1.5707963267948966 rad - pos: 19.5,27.5 + - pos: 2.5,22.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - uid: 10063 + - uid: 587 components: - - rot: -1.5707963267948966 rad - pos: 23.5,27.5 + - rot: 3.141592653589793 rad + pos: -17.5,-19.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound -- proto: PoweredlightExterior - entities: - - uid: 10223 + - uid: 651 components: - - pos: -8.5,32.5 + - pos: 13.5,-2.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound - - uid: 10224 + - uid: 677 components: - - pos: -4.5,32.5 + - pos: -42.5,-0.5 parent: 31 type: Transform - - enabled: False - type: AmbientSound -- proto: PoweredlightSodium - entities: - - uid: 7818 + - uid: 697 components: - - rot: 3.141592653589793 rad - pos: -25.5,-19.5 + - pos: -49.5,-8.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7821 + - uid: 717 components: - - pos: -23.5,-13.5 + - pos: -48.5,-8.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- proto: PoweredSmallLight - entities: - - uid: 14 + - uid: 740 components: - - rot: -1.5707963267948966 rad - pos: -16.5,16.5 + - pos: -43.5,11.5 parent: 31 type: Transform - - uid: 558 + - uid: 747 components: - - rot: -1.5707963267948966 rad - pos: 15.5,-16.5 + - pos: -44.5,9.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 720 + - uid: 748 components: - - pos: 27.5,10.5 + - pos: -41.5,-0.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1063 + - uid: 790 components: - - rot: 3.141592653589793 rad - pos: -31.5,7.5 + - pos: -44.5,7.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1197 + - uid: 829 components: - - rot: 3.141592653589793 rad - pos: -0.5,-11.5 + - pos: 52.5,8.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1207 + - uid: 871 components: - - pos: 8.5,17.5 + - pos: 34.5,-12.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1246 + - uid: 889 components: - - rot: 1.5707963267948966 rad - pos: 11.5,-29.5 + - pos: -41.5,3.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1298 + - uid: 973 components: - - rot: 1.5707963267948966 rad - pos: 12.5,18.5 + - pos: -3.5,7.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1302 + - uid: 993 components: - - pos: 39.5,0.5 + - pos: -43.5,3.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1315 + - uid: 1013 components: - - pos: 12.5,-13.5 + - pos: 4.5,26.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - type: Timer - - uid: 1553 + - uid: 1051 components: - - pos: -8.5,21.5 + - pos: -1.5,9.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1575 + - uid: 1183 components: - - pos: 39.5,9.5 + - pos: 58.5,6.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2012 + - uid: 1254 components: - - pos: -29.5,14.5 + - pos: -10.5,14.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2020 + - uid: 1260 components: - - pos: -23.5,20.5 + - pos: 25.5,10.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2561 + - uid: 1373 components: - - rot: 1.5707963267948966 rad - pos: -26.5,17.5 + - pos: -2.5,9.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3586 + - uid: 1381 components: - - pos: 11.5,24.5 + - pos: 2.5,26.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3857 + - uid: 1389 components: - - rot: 1.5707963267948966 rad - pos: -18.5,22.5 + - pos: -0.5,27.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3861 + - uid: 1390 components: - - rot: 1.5707963267948966 rad - pos: -13.5,8.5 + - pos: -1.5,27.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3863 + - uid: 1391 components: - - rot: 1.5707963267948966 rad - pos: -14.5,20.5 + - pos: 4.5,22.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3864 + - uid: 1392 components: - - rot: -1.5707963267948966 rad - pos: -11.5,19.5 + - pos: 10.5,29.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3865 + - uid: 1394 components: - - pos: -14.5,25.5 + - pos: 9.5,31.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3866 + - uid: 1397 components: - - pos: -7.5,25.5 + - pos: 7.5,33.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3867 + - uid: 1398 components: - - rot: 3.141592653589793 rad - pos: -1.5,20.5 + - pos: 6.5,33.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3871 + - uid: 1399 components: - - rot: -1.5707963267948966 rad - pos: -7.5,8.5 + - pos: 5.5,33.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3872 + - uid: 1400 components: - - pos: 8.5,14.5 + - pos: 4.5,33.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3874 + - uid: 1401 components: - - pos: 14.5,21.5 + - pos: 3.5,33.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3876 + - uid: 1402 components: - - rot: 1.5707963267948966 rad - pos: 26.5,-4.5 + - pos: 2.5,33.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3879 + - uid: 1403 components: - - pos: 35.5,-6.5 + - pos: 1.5,33.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3880 + - uid: 1404 components: - - pos: 38.5,-3.5 + - pos: 0.5,33.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3894 + - uid: 1405 components: - - rot: -1.5707963267948966 rad - pos: 27.5,-10.5 + - pos: -0.5,33.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3897 + - uid: 1406 components: - - rot: 1.5707963267948966 rad - pos: 24.5,-23.5 + - pos: 10.5,31.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3898 + - uid: 1410 components: - - rot: -1.5707963267948966 rad - pos: 27.5,-24.5 + - pos: -3.5,9.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3899 + - uid: 1446 components: - - rot: 3.141592653589793 rad - pos: 25.5,-18.5 + - pos: -41.5,7.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3940 + - uid: 1448 components: - - pos: 22.5,-9.5 + - pos: -43.5,1.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4020 + - uid: 1457 components: - - rot: 1.5707963267948966 rad - pos: -19.5,15.5 + - pos: -42.5,1.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4055 + - uid: 1506 components: - - pos: 12.5,-19.5 + - pos: 19.5,6.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4089 + - uid: 1507 components: - - rot: -1.5707963267948966 rad - pos: 0.5,-24.5 + - pos: 20.5,6.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4147 + - uid: 1508 components: - - rot: -1.5707963267948966 rad - pos: -7.5,-23.5 + - pos: 21.5,6.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4153 + - uid: 1509 components: - - rot: -1.5707963267948966 rad - pos: -7.5,-12.5 + - pos: 22.5,6.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4237 + - uid: 1510 components: - - pos: -41.5,-11.5 + - pos: 8.5,6.5 parent: 31 type: Transform - - uid: 4238 + - uid: 1511 components: - - rot: 3.141592653589793 rad - pos: -41.5,-9.5 + - pos: 6.5,19.5 parent: 31 type: Transform - - uid: 4239 + - uid: 1530 components: - - pos: 34.5,37.5 + - pos: 41.5,-22.5 parent: 31 type: Transform - - uid: 4295 + - uid: 1582 components: - - rot: -1.5707963267948966 rad - pos: -11.5,-10.5 + - pos: 19.5,20.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4484 + - uid: 1585 components: - - pos: 59.5,7.5 + - pos: 30.5,23.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4507 + - uid: 1595 components: - - rot: -1.5707963267948966 rad - pos: 36.5,-13.5 + - pos: 15.5,20.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4605 + - uid: 1596 components: - - rot: 1.5707963267948966 rad - pos: 52.5,6.5 + - pos: 15.5,21.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4662 + - uid: 1657 components: - - pos: 31.5,-17.5 + - pos: -15.5,26.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4826 + - uid: 1660 components: - - pos: -25.5,-10.5 + - pos: -18.5,26.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4828 + - uid: 1686 components: - - rot: 3.141592653589793 rad - pos: -29.5,-8.5 + - rot: 1.5707963267948966 rad + pos: 61.5,1.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4862 + - uid: 1736 components: - - rot: 1.5707963267948966 rad - pos: -30.5,-5.5 + - pos: 40.5,-26.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4957 + - uid: 1758 components: - - rot: 1.5707963267948966 rad - pos: -30.5,-2.5 + - pos: -27.5,-20.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4958 + - uid: 1763 components: - - rot: 1.5707963267948966 rad - pos: -30.5,0.5 + - pos: 40.5,-22.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4959 + - uid: 1765 components: - - rot: 1.5707963267948966 rad - pos: -33.5,-0.5 + - pos: -10.5,13.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5005 + - uid: 1782 components: - - pos: -18.5,-4.5 + - pos: -42.5,11.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5008 + - uid: 1809 components: - - rot: -1.5707963267948966 rad - pos: -15.5,-5.5 + - pos: 41.5,-26.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5009 + - uid: 1919 components: - - rot: 3.141592653589793 rad - pos: -12.5,-4.5 + - pos: 36.5,-0.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5010 + - uid: 1933 components: - - rot: 1.5707963267948966 rad - pos: -12.5,-7.5 + - pos: 37.5,1.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5120 + - uid: 1953 components: - - pos: 10.5,26.5 + - pos: -12.5,6.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5190 + - uid: 1954 components: - - pos: -22.5,25.5 + - pos: -13.5,6.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5291 + - uid: 1972 components: - rot: -1.5707963267948966 rad - pos: 16.5,-28.5 + pos: -9.5,18.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7063 + - uid: 1988 components: - - pos: 31.5,-9.5 + - pos: -16.5,7.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7082 + - uid: 1990 components: - - pos: 45.5,-0.5 + - pos: -16.5,6.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7332 + - uid: 2056 components: - - pos: -19.5,-4.5 + - pos: -12.5,26.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7333 + - uid: 2096 components: - - pos: -20.5,-4.5 + - pos: -13.5,9.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7811 + - uid: 2097 components: - - rot: -1.5707963267948966 rad - pos: 23.5,-0.5 + - pos: -7.5,9.5 parent: 31 type: Transform - - uid: 7909 + - uid: 2098 components: - - pos: 28.5,13.5 + - pos: -9.5,8.5 parent: 31 type: Transform - - uid: 8526 + - uid: 2117 components: - - rot: -1.5707963267948966 rad - pos: -19.5,-24.5 + - pos: -11.5,8.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8732 + - uid: 2119 components: - - rot: 1.5707963267948966 rad - pos: -36.5,-27.5 + - pos: 13.5,-1.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8733 + - uid: 2185 components: - - rot: -1.5707963267948966 rad - pos: -32.5,-27.5 + - pos: -6.5,-22.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8735 + - uid: 2210 components: - - pos: -32.5,-31.5 + - pos: 12.5,-6.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8775 + - uid: 2445 components: - - pos: -16.5,11.5 + - pos: 28.5,-13.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9011 + - uid: 3139 components: - - pos: -29.5,-26.5 + - pos: 36.5,18.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9012 + - uid: 3421 components: - - pos: -23.5,-26.5 + - rot: -1.5707963267948966 rad + pos: -13.5,-30.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9148 + - uid: 3427 components: - - rot: -1.5707963267948966 rad - pos: -31.5,17.5 + - pos: -9.5,26.5 parent: 31 type: Transform - - uid: 9248 + - uid: 3836 components: - - pos: -42.5,0.5 + - rot: 1.5707963267948966 rad + pos: -1.5,13.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9249 + - uid: 3911 components: - - rot: 3.141592653589793 rad - pos: -42.5,2.5 + - rot: 1.5707963267948966 rad + pos: -1.5,12.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9250 + - uid: 3923 components: - - rot: 3.141592653589793 rad - pos: -42.5,10.5 + - pos: -40.5,1.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9251 + - uid: 3967 components: - - pos: -42.5,8.5 + - pos: -42.5,3.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9449 + - uid: 3972 components: - - rot: 3.141592653589793 rad - pos: -23.5,-32.5 + - pos: -9.5,7.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9450 + - uid: 3978 components: - - pos: -12.5,-31.5 + - pos: 28.5,-12.5 parent: 31 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9608 + - uid: 4014 components: - - rot: 1.5707963267948966 rad - pos: -39.5,18.5 + - pos: -43.5,-0.5 parent: 31 type: Transform - - uid: 9613 + - uid: 4098 components: - - rot: -1.5707963267948966 rad - pos: -34.5,18.5 + - pos: -11.5,7.5 parent: 31 type: Transform - - uid: 9840 + - uid: 4113 components: - - rot: -1.5707963267948966 rad - pos: -2.5,13.5 + - pos: -7.5,18.5 parent: 31 type: Transform - - uid: 9841 + - uid: 4116 components: - - rot: 1.5707963267948966 rad - pos: -0.5,13.5 + - pos: -3.5,6.5 parent: 31 type: Transform - - uid: 9933 + - uid: 4274 components: - rot: -1.5707963267948966 rad - pos: 28.5,20.5 + pos: 51.5,11.5 parent: 31 type: Transform - - uid: 9944 + - uid: 4275 components: - - rot: 3.141592653589793 rad - pos: 32.5,27.5 + - rot: -1.5707963267948966 rad + pos: 51.5,9.5 parent: 31 type: Transform -- proto: PoweredSmallLightEmpty - entities: - - uid: 8209 + - uid: 4282 components: - - pos: -22.5,17.5 + - pos: 48.5,18.5 parent: 31 type: Transform - - uid: 9367 + - uid: 4287 components: - rot: -1.5707963267948966 rad - pos: -22.5,-23.5 + pos: 51.5,12.5 parent: 31 type: Transform -- proto: Protolathe - entities: - - uid: 1042 + - uid: 4289 components: - - pos: -3.5,-12.5 + - rot: -1.5707963267948966 rad + pos: 51.5,10.5 parent: 31 type: Transform - - materialWhiteList: - - Steel - - Glass - - Plastic - - Wood - - Gold - type: MaterialStorage - - uid: 9051 + - uid: 4311 components: - - pos: 48.5,3.5 + - pos: 17.5,20.5 parent: 31 type: Transform -- proto: Rack - entities: - - uid: 117 + - uid: 4375 components: - - pos: 29.5,-1.5 + - pos: 51.5,-17.5 parent: 31 type: Transform - - uid: 1352 + - uid: 4398 components: - - pos: 43.5,13.5 + - rot: 3.141592653589793 rad + pos: 54.5,3.5 parent: 31 type: Transform - - uid: 2133 + - uid: 4515 components: - - pos: -11.5,18.5 + - rot: -1.5707963267948966 rad + pos: 35.5,-26.5 parent: 31 type: Transform - - uid: 2208 + - uid: 4516 components: - - pos: 7.5,-17.5 + - rot: -1.5707963267948966 rad + pos: 31.5,-24.5 parent: 31 type: Transform - - uid: 3229 + - uid: 4522 components: - - pos: 10.5,11.5 + - pos: 34.5,-13.5 parent: 31 type: Transform - - uid: 3375 + - uid: 4577 components: - - pos: 10.5,10.5 + - rot: -1.5707963267948966 rad + pos: 36.5,-22.5 parent: 31 type: Transform - - uid: 4224 + - uid: 4578 components: - - pos: -20.5,7.5 + - rot: -1.5707963267948966 rad + pos: 37.5,-22.5 parent: 31 type: Transform - - uid: 4542 + - uid: 4583 components: - - pos: 59.5,6.5 + - rot: -1.5707963267948966 rad + pos: 36.5,-26.5 parent: 31 type: Transform - - uid: 6932 + - uid: 4627 components: - - pos: 18.5,13.5 + - pos: 45.5,-29.5 parent: 31 type: Transform - - uid: 7050 + - uid: 4628 components: - - pos: 29.5,-10.5 + - pos: 44.5,-29.5 parent: 31 type: Transform - - uid: 7576 + - uid: 4629 components: - - pos: -5.5,-8.5 + - pos: 44.5,-28.5 parent: 31 type: Transform - - uid: 7587 + - uid: 4631 components: - - pos: -7.5,-15.5 + - pos: 46.5,-19.5 parent: 31 type: Transform - - uid: 7641 + - uid: 4632 components: - - pos: -0.5,-27.5 + - pos: 44.5,-21.5 parent: 31 type: Transform - - uid: 7642 + - uid: 4634 components: - - pos: -1.5,-27.5 + - pos: 46.5,-29.5 parent: 31 type: Transform - - uid: 7778 + - uid: 4635 components: - - pos: -30.5,13.5 + - pos: 44.5,-27.5 parent: 31 type: Transform - - uid: 7793 + - uid: 4656 components: - - pos: -23.5,22.5 + - pos: 31.5,-23.5 parent: 31 type: Transform - - uid: 7977 + - uid: 4663 components: - - pos: 27.5,-5.5 + - pos: 31.5,-25.5 parent: 31 type: Transform - - uid: 7982 + - uid: 4673 components: - - pos: 27.5,-4.5 + - pos: 56.5,-26.5 + parent: 31 + type: Transform + - uid: 4676 + components: + - pos: 47.5,-18.5 parent: 31 type: Transform - - uid: 8739 + - uid: 4677 components: - - pos: -32.5,-27.5 + - pos: 51.5,-18.5 parent: 31 type: Transform - - uid: 8751 + - uid: 4679 components: - - pos: -20.5,-23.5 + - pos: 50.5,-17.5 parent: 31 type: Transform - - uid: 8752 + - uid: 4680 components: - - pos: -20.5,-24.5 + - pos: 49.5,-17.5 parent: 31 type: Transform - - uid: 8846 + - uid: 4681 components: - - pos: 30.5,14.5 + - pos: 48.5,-17.5 parent: 31 type: Transform - - uid: 8886 + - uid: 4819 components: - - pos: 45.5,1.5 + - pos: 12.5,-32.5 parent: 31 type: Transform - - uid: 8888 + - uid: 4849 components: - - pos: 45.5,5.5 + - pos: 2.5,-31.5 parent: 31 type: Transform - - uid: 9225 + - uid: 4850 components: - - pos: 35.5,-3.5 + - pos: 3.5,-31.5 parent: 31 type: Transform - - uid: 9861 + - uid: 4851 components: - - pos: 10.5,-19.5 + - pos: 4.5,-31.5 parent: 31 type: Transform -- proto: RadiationCollector - entities: - - uid: 10 + - uid: 4883 components: - - pos: 64.5,-0.5 + - pos: -0.5,6.5 parent: 31 type: Transform - - uid: 3577 + - uid: 4930 components: - - pos: 78.5,5.5 + - pos: 19.5,21.5 parent: 31 type: Transform - - uid: 4264 + - uid: 4933 components: - - pos: 78.5,4.5 + - rot: 3.141592653589793 rad + pos: 54.5,1.5 parent: 31 type: Transform - - uid: 4325 + - uid: 4940 components: - - pos: 64.5,0.5 + - pos: 28.5,-25.5 parent: 31 type: Transform - - uid: 4467 + - uid: 4943 components: - - pos: 64.5,1.5 + - pos: 28.5,-23.5 parent: 31 type: Transform - - uid: 4468 + - uid: 5002 components: - - pos: 64.5,3.5 + - pos: 28.5,-14.5 parent: 31 type: Transform - - uid: 4469 + - uid: 5073 components: - - pos: 64.5,4.5 + - pos: 13.5,1.5 parent: 31 type: Transform - - uid: 4470 + - uid: 5083 components: - - pos: 64.5,5.5 + - pos: 13.5,0.5 parent: 31 type: Transform - - uid: 10113 + - uid: 5113 components: - - pos: 78.5,3.5 + - pos: -2.5,6.5 parent: 31 type: Transform - - uid: 10114 + - uid: 5124 components: - - pos: 78.5,-0.5 + - rot: -1.5707963267948966 rad + pos: 52.5,16.5 parent: 31 type: Transform - - uid: 10115 + - uid: 5229 components: - - pos: 78.5,0.5 + - pos: -29.5,18.5 parent: 31 type: Transform - - uid: 10116 + - uid: 5230 components: - - pos: 78.5,1.5 + - pos: -28.5,18.5 parent: 31 type: Transform -- proto: RadioHandheld - entities: - - uid: 9021 + - uid: 5766 components: - - pos: 32.380318,-3.4857323 + - rot: 1.5707963267948966 rad + pos: -1.5,14.5 parent: 31 type: Transform - - uid: 9022 + - uid: 5988 components: - - pos: 32.645943,-3.4701073 + - pos: -40.5,-8.5 parent: 31 type: Transform -- proto: RandomArtifactSpawner - entities: - - uid: 6307 + - uid: 6174 components: - - pos: -13.5,-25.5 + - pos: -41.5,-8.5 parent: 31 type: Transform -- proto: RandomDrinkGlass - entities: - - uid: 123 + - uid: 6215 components: - - pos: -3.5,-4.5 + - rot: -1.5707963267948966 rad + pos: 18.5,18.5 parent: 31 type: Transform -- proto: RandomFoodMeal - entities: - - uid: 4145 + - uid: 6246 components: - - pos: -10.5,1.5 + - pos: 17.5,21.5 parent: 31 type: Transform -- proto: RandomFoodSingle - entities: - - uid: 1158 + - uid: 6247 components: - - pos: -2.5,-1.5 + - rot: -1.5707963267948966 rad + pos: 52.5,17.5 parent: 31 type: Transform -- proto: RandomInstruments - entities: - - uid: 1189 + - uid: 6335 components: - - pos: -30.5,1.5 + - pos: 47.5,18.5 parent: 31 type: Transform -- proto: RandomPosterAny - entities: - - uid: 7142 + - uid: 6354 components: - - pos: -10.5,-5.5 + - pos: 50.5,18.5 parent: 31 type: Transform - - uid: 7953 + - uid: 6362 components: - - pos: 13.5,-22.5 + - pos: 45.5,7.5 parent: 31 type: Transform - - uid: 7954 + - uid: 6446 components: - - pos: 25.5,-16.5 + - rot: -1.5707963267948966 rad + pos: 52.5,15.5 parent: 31 type: Transform - - uid: 7955 + - uid: 6448 components: - - pos: 28.5,-8.5 + - pos: 38.5,18.5 parent: 31 type: Transform - - uid: 7956 + - uid: 6449 components: - - pos: 24.5,-0.5 + - pos: 39.5,18.5 parent: 31 type: Transform - - uid: 7957 + - uid: 6471 components: - - pos: 35.5,-5.5 + - pos: 40.5,18.5 parent: 31 type: Transform - - uid: 8268 + - uid: 6480 components: - - pos: 39.5,-11.5 + - rot: 1.5707963267948966 rad + pos: 61.5,0.5 parent: 31 type: Transform - - uid: 8269 + - uid: 6482 components: - - pos: 34.5,-16.5 + - pos: 37.5,18.5 parent: 31 type: Transform - - uid: 9283 + - uid: 6486 components: - - pos: -31.5,0.5 + - pos: 43.5,18.5 parent: 31 type: Transform -- proto: RandomPosterContraband - entities: - - uid: 7810 + - uid: 6487 components: - - pos: -14.5,8.5 + - pos: 42.5,18.5 parent: 31 type: Transform - - uid: 9278 + - uid: 6489 components: - - pos: -21.5,-17.5 + - pos: 46.5,18.5 parent: 31 type: Transform - - uid: 9279 + - uid: 6495 components: - - pos: -10.5,-11.5 + - pos: -45.5,-8.5 parent: 31 type: Transform - - uid: 9475 + - uid: 6497 components: - - pos: -10.5,-32.5 + - pos: 44.5,18.5 parent: 31 type: Transform -- proto: RandomPosterLegit - entities: - - uid: 9280 + - uid: 6506 components: - - pos: -1.5,-12.5 + - pos: 41.5,18.5 parent: 31 type: Transform - - uid: 9281 + - uid: 6541 components: - - pos: -25.5,-9.5 + - pos: 45.5,9.5 parent: 31 type: Transform - - uid: 9282 + - uid: 6567 components: - - pos: -31.5,-1.5 + - pos: -49.5,-12.5 parent: 31 type: Transform - - uid: 9284 + - uid: 6614 components: - - pos: -21.5,-1.5 + - pos: 35.5,18.5 parent: 31 type: Transform - - uid: 9285 + - uid: 6629 components: - - pos: -20.5,-14.5 + - pos: 32.5,7.5 parent: 31 type: Transform - - uid: 9476 + - uid: 6632 components: - - pos: 1.5,-26.5 + - rot: 1.5707963267948966 rad + pos: 61.5,4.5 parent: 31 type: Transform -- proto: RandomSoap - entities: - - uid: 7675 + - uid: 6634 components: - - pos: -20.5,10.5 + - rot: 1.5707963267948966 rad + pos: 61.5,2.5 parent: 31 type: Transform -- proto: RandomSpawner - entities: - - uid: 426 + - uid: 6637 components: - - pos: -25.5,0.5 + - pos: 33.5,18.5 parent: 31 type: Transform - - uid: 427 + - uid: 6640 components: - - pos: -17.5,3.5 + - pos: 45.5,18.5 parent: 31 type: Transform - - uid: 430 + - uid: 6828 components: - - pos: -7.5,5.5 + - rot: 1.5707963267948966 rad + pos: 61.5,3.5 parent: 31 type: Transform - - uid: 494 + - uid: 6838 components: - - pos: -21.5,12.5 + - pos: 25.5,22.5 parent: 31 type: Transform - - uid: 4382 + - uid: 6885 components: - - pos: 30.5,-10.5 + - pos: 34.5,7.5 parent: 31 type: Transform - - uid: 4512 + - uid: 6890 components: - - pos: 36.5,-9.5 + - pos: 34.5,18.5 parent: 31 type: Transform - - uid: 4513 + - uid: 6972 components: - - pos: 24.5,-18.5 + - pos: 47.5,-17.5 parent: 31 type: Transform - - uid: 4658 + - uid: 6973 components: - - pos: 24.5,-20.5 + - pos: 47.5,-30.5 parent: 31 type: Transform - - uid: 7592 + - uid: 6974 components: - - pos: -8.5,-15.5 + - pos: 47.5,-31.5 parent: 31 type: Transform - - uid: 7593 + - uid: 6975 components: - - pos: -14.5,-11.5 + - pos: 51.5,-31.5 parent: 31 type: Transform - - uid: 7594 + - uid: 6976 components: - - pos: -15.5,-4.5 + - pos: 51.5,-30.5 parent: 31 type: Transform - - uid: 7595 + - uid: 6977 components: - - pos: -8.5,-9.5 + - pos: 52.5,-29.5 parent: 31 type: Transform - - uid: 7597 + - uid: 6978 components: - - pos: -14.5,-15.5 + - pos: 54.5,-27.5 parent: 31 type: Transform - - uid: 7598 + - uid: 6979 components: - - pos: -27.5,-10.5 + - pos: 54.5,-21.5 parent: 31 type: Transform - - uid: 7600 + - uid: 6980 components: - - pos: -21.5,-14.5 + - pos: 52.5,-19.5 parent: 31 type: Transform - - uid: 7601 + - uid: 6988 components: - - pos: -25.5,-14.5 + - pos: 55.5,-22.5 parent: 31 type: Transform - - uid: 7602 + - uid: 6989 components: - - pos: -27.5,-13.5 + - pos: 56.5,-22.5 parent: 31 type: Transform - - uid: 7603 + - uid: 6991 components: - - pos: -33.5,-11.5 + - pos: 55.5,-26.5 parent: 31 type: Transform - - uid: 7604 + - uid: 6996 components: - - pos: -33.5,-3.5 + - pos: 56.5,-23.5 parent: 31 type: Transform - - uid: 7776 + - uid: 6997 components: - - pos: -26.5,13.5 + - pos: 56.5,-25.5 parent: 31 type: Transform - - uid: 7784 + - uid: 6998 components: - - pos: -25.5,20.5 + - pos: 56.5,-24.5 parent: 31 type: Transform - - uid: 7823 + - uid: 6999 components: - - pos: -11.5,-18.5 + - pos: 53.5,-29.5 parent: 31 type: Transform - - uid: 7824 + - uid: 7000 components: - - pos: -0.5,-14.5 + - pos: 54.5,-29.5 parent: 31 type: Transform - - uid: 7825 + - uid: 7001 components: - - pos: 0.5,-26.5 + - pos: 54.5,-28.5 parent: 31 type: Transform - - uid: 7865 + - uid: 7002 components: - - pos: 26.5,-22.5 + - pos: 53.5,-19.5 parent: 31 type: Transform - - uid: 7869 + - uid: 7003 components: - - pos: -16.5,24.5 + - pos: 54.5,-19.5 parent: 31 type: Transform - - uid: 7870 + - uid: 7004 components: - - pos: -4.5,20.5 + - pos: 54.5,-20.5 parent: 31 type: Transform - - uid: 7914 + - uid: 7005 components: - - pos: 21.5,0.5 + - pos: 45.5,-19.5 parent: 31 type: Transform - - uid: 7965 + - uid: 7006 components: - - pos: 27.5,-1.5 + - pos: 44.5,-19.5 parent: 31 type: Transform - - uid: 7966 + - uid: 7007 components: - - pos: 24.5,-9.5 + - pos: 44.5,-20.5 parent: 31 type: Transform - - uid: 7967 + - uid: 7008 components: - - pos: 38.5,-7.5 + - pos: 42.5,-26.5 parent: 31 type: Transform - - uid: 8797 + - uid: 7009 components: - - pos: -15.5,10.5 + - pos: 42.5,-22.5 parent: 31 type: Transform - - uid: 9276 + - uid: 7029 components: - - pos: -26.5,-17.5 + - rot: -1.5707963267948966 rad + pos: 37.5,-26.5 parent: 31 type: Transform - - uid: 9277 + - uid: 7069 components: - - pos: -23.5,-19.5 + - rot: -1.5707963267948966 rad + pos: 35.5,-22.5 parent: 31 type: Transform - - uid: 9469 + - uid: 7118 components: - - pos: -18.5,-32.5 + - pos: -34.5,-22.5 parent: 31 type: Transform - - uid: 9470 + - uid: 7242 components: - - pos: -24.5,-16.5 + - pos: 13.5,-5.5 parent: 31 type: Transform - - uid: 9471 + - uid: 7326 components: - - pos: -29.5,-15.5 + - rot: 3.141592653589793 rad + pos: 23.5,-8.5 parent: 31 type: Transform - - uid: 9472 + - uid: 7336 components: - - pos: -13.5,-14.5 + - pos: 1.5,-27.5 parent: 31 type: Transform -- proto: RCD - entities: - - uid: 217 + - uid: 7443 components: - - pos: 40.58041,-1.3954797 + - rot: 3.141592653589793 rad + pos: 0.5,-32.5 parent: 31 type: Transform -- proto: RCDAmmo - entities: - - uid: 3142 + - uid: 7444 components: - - pos: 40.39837,-1.5622083 + - rot: 3.141592653589793 rad + pos: -0.5,-32.5 parent: 31 type: Transform -- proto: Recycler - entities: - - uid: 7531 + - uid: 7445 components: - - rot: 1.5707963267948966 rad - pos: -21.5,-15.5 + - rot: 3.141592653589793 rad + pos: -1.5,-32.5 parent: 31 type: Transform - - links: - - 7537 - type: DeviceLinkSink -- proto: ReinforcedPlasmaWindow - entities: - - uid: 439 + - uid: 7446 components: - - pos: 36.5,20.5 + - rot: 3.141592653589793 rad + pos: -2.5,-32.5 parent: 31 type: Transform - - uid: 448 + - uid: 7473 components: - - pos: 32.5,20.5 + - pos: -31.5,19.5 parent: 31 type: Transform - - uid: 518 + - uid: 7540 components: - - pos: 40.5,20.5 + - pos: -13.5,-40.5 parent: 31 type: Transform - - uid: 520 + - uid: 7552 components: - - pos: 38.5,20.5 + - pos: -4.5,-33.5 parent: 31 type: Transform - - uid: 590 + - uid: 7554 components: - - pos: -15.5,-24.5 + - pos: -5.5,-33.5 parent: 31 type: Transform - - uid: 1550 + - uid: 7556 components: - - pos: 44.5,20.5 + - pos: -14.5,-40.5 parent: 31 type: Transform - - uid: 1551 + - uid: 7682 components: - - pos: 42.5,20.5 + - pos: -39.5,12.5 parent: 31 type: Transform - - uid: 6501 + - uid: 7749 components: - - pos: 54.5,16.5 + - pos: -7.5,6.5 parent: 31 type: Transform - - uid: 6861 + - uid: 7750 components: - - pos: 53.5,18.5 + - pos: -8.5,6.5 parent: 31 type: Transform - - uid: 6865 + - uid: 7796 components: - - pos: 52.5,16.5 + - pos: -3.5,8.5 parent: 31 type: Transform - - uid: 6884 + - uid: 7817 components: - - pos: 52.5,17.5 + - pos: -26.5,-20.5 parent: 31 type: Transform - - uid: 6920 + - uid: 7818 components: - - pos: 54.5,17.5 + - pos: -39.5,18.5 parent: 31 type: Transform - - uid: 7222 + - uid: 7820 components: - - pos: 34.5,20.5 + - pos: -15.5,-40.5 parent: 31 type: Transform - - uid: 7375 + - uid: 7823 components: - - pos: -14.5,-23.5 + - pos: -6.5,-33.5 parent: 31 type: Transform - - uid: 8949 + - uid: 7903 components: - - pos: -10.5,19.5 + - pos: 34.5,-14.5 parent: 31 type: Transform - - uid: 9001 + - uid: 7946 components: - - pos: -10.5,21.5 + - pos: 48.5,-31.5 parent: 31 type: Transform -- proto: ReinforcedWindow - entities: - - uid: 3 + - uid: 7963 components: - - pos: 13.5,-4.5 + - pos: -42.5,-8.5 parent: 31 type: Transform - - uid: 54 + - uid: 8028 components: - - rot: -1.5707963267948966 rad - pos: 26.5,21.5 + - pos: 50.5,-31.5 parent: 31 type: Transform - - uid: 85 + - uid: 8125 components: - - rot: -1.5707963267948966 rad - pos: 26.5,20.5 + - pos: 61.5,6.5 parent: 31 type: Transform - - uid: 254 + - uid: 8203 components: - - pos: 11.5,-6.5 + - pos: 49.5,-31.5 parent: 31 type: Transform - - uid: 307 + - uid: 8204 components: - - pos: 32.5,1.5 + - pos: -48.5,-12.5 parent: 31 type: Transform - - uid: 410 + - uid: 8221 components: - - pos: 34.5,1.5 + - pos: -32.5,19.5 parent: 31 type: Transform - - uid: 411 + - uid: 8296 components: - - pos: 30.5,4.5 + - pos: -46.5,-8.5 parent: 31 type: Transform - - uid: 572 + - uid: 8300 components: - - pos: 2.5,22.5 + - pos: -54.5,-10.5 parent: 31 type: Transform - - uid: 594 + - uid: 8302 components: - - rot: -1.5707963267948966 rad - pos: 20.5,-13.5 + - pos: 54.5,7.5 parent: 31 type: Transform - - uid: 651 + - uid: 8314 components: - - pos: 13.5,-2.5 + - pos: 49.5,-12.5 parent: 31 type: Transform - - uid: 677 + - uid: 8328 components: - - pos: -42.5,-0.5 + - pos: 54.5,-7.5 parent: 31 type: Transform - - uid: 740 + - uid: 8358 components: - - pos: -43.5,11.5 + - pos: 26.5,22.5 parent: 31 type: Transform - - uid: 747 + - uid: 8373 components: - - pos: -44.5,9.5 + - pos: -35.5,-15.5 parent: 31 type: Transform - - uid: 748 + - uid: 8374 components: - - pos: -41.5,-0.5 + - pos: -46.5,-12.5 parent: 31 type: Transform - - uid: 790 + - uid: 8382 components: - - pos: -44.5,7.5 + - pos: -47.5,-8.5 parent: 31 type: Transform - - uid: 829 + - uid: 8383 components: - - pos: 52.5,8.5 + - pos: -47.5,-12.5 parent: 31 type: Transform - - uid: 871 + - uid: 8460 components: - - pos: 34.5,-12.5 + - pos: -16.5,-33.5 parent: 31 type: Transform - - uid: 889 + - uid: 8461 components: - - pos: -41.5,3.5 + - pos: -15.5,-33.5 parent: 31 type: Transform - - uid: 973 + - uid: 8468 components: - - pos: -3.5,7.5 + - pos: -14.5,-33.5 parent: 31 type: Transform - - uid: 993 + - uid: 8478 components: - - pos: -43.5,3.5 + - pos: -26.5,-27.5 parent: 31 type: Transform - - uid: 1013 + - uid: 8479 components: - - pos: 4.5,26.5 + - pos: -27.5,-27.5 parent: 31 type: Transform - - uid: 1025 + - uid: 8481 components: - - pos: 57.5,5.5 + - pos: -26.5,-25.5 parent: 31 type: Transform - - uid: 1048 + - uid: 8482 components: - - pos: 0.5,-14.5 + - pos: -27.5,-25.5 parent: 31 type: Transform - - uid: 1051 + - uid: 8531 components: - - pos: -1.5,9.5 + - pos: -37.5,-28.5 parent: 31 type: Transform - - uid: 1183 + - uid: 8533 components: - - pos: 58.5,6.5 + - pos: -32.5,-33.5 parent: 31 type: Transform - - uid: 1254 + - uid: 8543 components: - - pos: -10.5,14.5 + - pos: -37.5,-24.5 parent: 31 type: Transform - - uid: 1260 + - uid: 8546 components: - - pos: 25.5,10.5 + - rot: 3.141592653589793 rad + pos: -29.5,-32.5 parent: 31 type: Transform - - uid: 1373 + - uid: 8556 components: - - pos: -2.5,9.5 + - pos: -36.5,-22.5 parent: 31 type: Transform - - uid: 1381 + - uid: 8560 components: - - pos: 2.5,26.5 + - pos: -33.5,-23.5 parent: 31 type: Transform - - uid: 1389 + - uid: 8563 components: - - pos: -0.5,27.5 + - pos: -37.5,-23.5 parent: 31 type: Transform - - uid: 1390 + - uid: 8564 components: - - pos: -1.5,27.5 + - pos: -33.5,-24.5 parent: 31 type: Transform - - uid: 1391 + - uid: 8935 components: - - pos: 4.5,22.5 + - pos: -16.5,-40.5 parent: 31 type: Transform - - uid: 1392 + - uid: 9025 components: - - pos: 10.5,29.5 + - pos: -44.5,3.5 parent: 31 type: Transform - - uid: 1394 + - uid: 9026 components: - - pos: 9.5,31.5 + - pos: -41.5,1.5 parent: 31 type: Transform - - uid: 1397 + - uid: 9085 components: - - pos: 7.5,33.5 + - pos: 29.5,21.5 parent: 31 type: Transform - - uid: 1398 + - uid: 9128 components: - - pos: 6.5,33.5 + - pos: 5.5,-11.5 parent: 31 type: Transform - - uid: 1399 + - uid: 9129 components: - - pos: 5.5,33.5 + - pos: 5.5,-10.5 parent: 31 type: Transform - - uid: 1400 + - uid: 9130 components: - - pos: 4.5,33.5 + - pos: 5.5,-8.5 parent: 31 type: Transform - - uid: 1401 + - uid: 9131 components: - - pos: 3.5,33.5 + - pos: 5.5,-7.5 parent: 31 type: Transform - - uid: 1402 + - uid: 9173 components: - - pos: 2.5,33.5 + - pos: -35.5,-12.5 parent: 31 type: Transform - - uid: 1403 + - uid: 9184 components: - - pos: 1.5,33.5 + - pos: -39.5,-5.5 parent: 31 type: Transform - - uid: 1404 + - uid: 9187 components: - - pos: 0.5,33.5 + - pos: -39.5,-1.5 parent: 31 type: Transform - - uid: 1405 + - uid: 9189 components: - - pos: -0.5,33.5 + - pos: -36.5,-12.5 parent: 31 type: Transform - - uid: 1406 + - uid: 9194 components: - - pos: 10.5,31.5 + - pos: -37.5,-12.5 parent: 31 type: Transform - - uid: 1409 + - uid: 9207 components: - - pos: -2.5,31.5 + - pos: -39.5,-3.5 parent: 31 type: Transform - - uid: 1410 + - uid: 9357 components: - - pos: -3.5,9.5 + - pos: -44.5,1.5 parent: 31 type: Transform - - uid: 1422 + - uid: 9358 components: - - pos: -35.5,11.5 + - pos: -43.5,9.5 parent: 31 type: Transform - - uid: 1424 + - uid: 9359 components: - - pos: -37.5,11.5 + - pos: -40.5,7.5 parent: 31 type: Transform - - uid: 1446 + - uid: 9360 components: - - pos: -41.5,7.5 + - pos: -40.5,9.5 parent: 31 type: Transform - - uid: 1448 + - uid: 9361 components: - - pos: -43.5,1.5 + - pos: -25.5,-23.5 parent: 31 type: Transform - - uid: 1457 + - uid: 9363 components: - - pos: -42.5,1.5 + - pos: 5.5,-5.5 parent: 31 type: Transform - - uid: 1468 + - uid: 9379 components: - - pos: -4.5,-21.5 + - pos: -43.5,7.5 parent: 31 type: Transform - - uid: 1469 + - uid: 9380 components: - - pos: -2.5,-21.5 + - pos: -41.5,4.5 parent: 31 type: Transform - - uid: 1482 + - uid: 9381 components: - - pos: 10.5,-14.5 + - pos: -41.5,5.5 parent: 31 type: Transform - - uid: 1506 + - uid: 9382 components: - - pos: 19.5,6.5 + - pos: -41.5,11.5 parent: 31 type: Transform - - uid: 1507 + - uid: 9383 components: - - pos: 20.5,6.5 + - pos: -41.5,6.5 parent: 31 type: Transform - - uid: 1508 + - uid: 9384 components: - - pos: 21.5,6.5 + - pos: -41.5,9.5 parent: 31 type: Transform - - uid: 1509 + - uid: 9385 components: - - pos: 22.5,6.5 + - pos: -42.5,9.5 parent: 31 type: Transform - - uid: 1510 + - uid: 9386 components: - - pos: 8.5,6.5 + - pos: -40.5,3.5 parent: 31 type: Transform - - uid: 1511 + - uid: 9387 components: - - pos: 6.5,19.5 + - pos: -42.5,7.5 parent: 31 type: Transform - - uid: 1520 + - uid: 9399 components: - - pos: 55.5,5.5 + - pos: -4.5,-37.5 parent: 31 type: Transform - - uid: 1530 + - uid: 9400 components: - - pos: 41.5,-22.5 + - pos: -3.5,-37.5 parent: 31 type: Transform - - uid: 1582 + - uid: 9401 components: - - pos: 19.5,20.5 + - pos: -2.5,-37.5 parent: 31 type: Transform - - uid: 1595 + - uid: 9403 components: - - pos: 15.5,20.5 + - pos: -1.5,-37.5 parent: 31 type: Transform - - uid: 1596 + - uid: 9514 components: - - pos: 15.5,21.5 + - pos: 5.5,-4.5 parent: 31 type: Transform - - uid: 1657 + - uid: 9526 components: - - pos: -15.5,26.5 + - rot: -1.5707963267948966 rad + pos: 12.5,-40.5 parent: 31 type: Transform - - uid: 1660 + - uid: 9585 components: - - pos: -18.5,26.5 + - rot: -1.5707963267948966 rad + pos: 12.5,-42.5 parent: 31 type: Transform - - uid: 1686 + - uid: 9608 components: - rot: 1.5707963267948966 rad - pos: 61.5,1.5 + pos: -6.5,-20.5 parent: 31 type: Transform - - uid: 1736 + - uid: 9645 components: - - pos: 40.5,-26.5 + - pos: -3.5,-44.5 parent: 31 type: Transform - - uid: 1758 + - uid: 9646 components: - - pos: -27.5,-20.5 + - pos: -2.5,-44.5 parent: 31 type: Transform - - uid: 1763 + - uid: 9647 components: - - pos: 40.5,-22.5 + - pos: -0.5,-45.5 parent: 31 type: Transform - - uid: 1765 + - uid: 9648 components: - - pos: -10.5,13.5 + - pos: 0.5,-45.5 parent: 31 type: Transform - - uid: 1778 + - uid: 9654 components: - - pos: 17.5,9.5 + - pos: 1.5,-45.5 parent: 31 type: Transform - - uid: 1780 + - uid: 9694 components: - - pos: -28.5,-16.5 + - rot: -1.5707963267948966 rad + pos: 12.5,-41.5 parent: 31 type: Transform - - uid: 1782 + - uid: 9708 components: - - pos: -42.5,11.5 + - pos: 54.5,-8.5 parent: 31 type: Transform - - uid: 1809 + - uid: 9711 components: - - pos: 41.5,-26.5 + - pos: -39.5,14.5 parent: 31 type: Transform - - uid: 1912 + - uid: 9934 components: - - pos: 13.5,-10.5 + - pos: 27.5,22.5 parent: 31 type: Transform - - uid: 1913 + - uid: 10071 components: - - pos: 13.5,-11.5 + - rot: -1.5707963267948966 rad + pos: 19.5,24.5 parent: 31 type: Transform - - uid: 1919 + - uid: 10072 components: - - pos: 36.5,-0.5 + - rot: -1.5707963267948966 rad + pos: 19.5,23.5 parent: 31 type: Transform - - uid: 1933 + - uid: 10073 components: - - pos: 37.5,1.5 + - rot: -1.5707963267948966 rad + pos: 23.5,24.5 parent: 31 type: Transform - - uid: 1953 + - uid: 10074 components: - - pos: -12.5,6.5 + - rot: -1.5707963267948966 rad + pos: 23.5,23.5 parent: 31 type: Transform - - uid: 1954 + - uid: 10075 components: - - pos: -13.5,6.5 + - rot: -1.5707963267948966 rad + pos: 24.5,26.5 parent: 31 type: Transform - - uid: 1972 + - uid: 10076 components: - rot: -1.5707963267948966 rad - pos: -9.5,18.5 + pos: 24.5,27.5 parent: 31 type: Transform - - uid: 1988 + - uid: 10077 components: - - pos: -16.5,7.5 + - rot: -1.5707963267948966 rad + pos: 18.5,27.5 parent: 31 type: Transform - - uid: 1990 + - uid: 10078 components: - - pos: -16.5,6.5 + - rot: -1.5707963267948966 rad + pos: 18.5,26.5 parent: 31 type: Transform - - uid: 2056 + - uid: 10079 components: - - pos: -12.5,26.5 + - rot: -1.5707963267948966 rad + pos: 21.5,28.5 parent: 31 type: Transform - - uid: 2096 + - uid: 10121 components: - - pos: -13.5,9.5 + - pos: 49.5,18.5 parent: 31 type: Transform - - uid: 2097 + - uid: 10210 components: - - pos: -7.5,9.5 + - pos: -34.5,-15.5 parent: 31 type: Transform - - uid: 2098 + - uid: 10212 components: - - pos: -9.5,8.5 + - pos: -33.5,-15.5 parent: 31 type: Transform - - uid: 2117 + - uid: 10214 components: - - pos: -11.5,8.5 + - pos: -33.5,-14.5 parent: 31 type: Transform - - uid: 2119 + - uid: 10303 components: - - pos: 13.5,-1.5 + - rot: 3.141592653589793 rad + pos: 24.5,-8.5 parent: 31 type: Transform - - uid: 2180 + - uid: 10352 components: - - pos: 20.5,-12.5 + - pos: 20.5,-10.5 parent: 31 type: Transform - - uid: 2198 + - uid: 10354 components: - - pos: -28.5,-18.5 + - pos: 20.5,-9.5 parent: 31 type: Transform - - uid: 2206 + - uid: 10482 components: - - pos: 10.5,-15.5 + - pos: 50.5,-12.5 parent: 31 type: Transform - - uid: 2210 + - uid: 10524 components: - - pos: 12.5,-6.5 + - pos: 51.5,-12.5 parent: 31 type: Transform - - uid: 2213 + - uid: 10613 components: - - pos: 20.5,-15.5 + - rot: 1.5707963267948966 rad + pos: 42.5,-14.5 parent: 31 type: Transform - - uid: 2223 + - uid: 10616 components: - - pos: 10.5,-16.5 + - rot: 1.5707963267948966 rad + pos: 43.5,-14.5 parent: 31 type: Transform - - uid: 2263 + - uid: 10617 components: - - pos: 0.5,-16.5 + - rot: 1.5707963267948966 rad + pos: 44.5,-14.5 parent: 31 type: Transform - - uid: 2445 + - uid: 10752 components: - - pos: 28.5,-13.5 + - pos: -54.5,-9.5 parent: 31 type: Transform - - uid: 2909 + - uid: 11130 components: - - pos: 10.5,-13.5 + - pos: -7.5,30.5 parent: 31 type: Transform - - uid: 3139 + - uid: 11131 components: - - pos: 36.5,18.5 + - pos: -6.5,30.5 parent: 31 type: Transform - - uid: 3619 + - uid: 11132 components: - - pos: 19.5,14.5 + - pos: -5.5,30.5 parent: 31 type: Transform - - uid: 3836 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 8437 components: - - rot: 1.5707963267948966 rad - pos: -1.5,13.5 + - pos: -1.5,-21.5 parent: 31 type: Transform - - uid: 3839 +- proto: RevolverCapGun + entities: + - uid: 8527 components: - - rot: 1.5707963267948966 rad - pos: -4.5,12.5 + - pos: -20.389076,-20.48394 parent: 31 type: Transform - - uid: 3840 +- proto: RiceSeeds + entities: + - uid: 9676 components: - - rot: 1.5707963267948966 rad - pos: -4.5,13.5 + - rot: -1.5707963267948966 rad + pos: 1.3445698,-43.14006 parent: 31 type: Transform - - uid: 3841 +- proto: RollerBed + entities: + - uid: 545 components: - - rot: 1.5707963267948966 rad - pos: -4.5,14.5 + - pos: 11.518467,-5.420287 parent: 31 type: Transform - - uid: 3911 +- proto: RubberStampApproved + entities: + - uid: 9044 components: - - rot: 1.5707963267948966 rad - pos: -1.5,12.5 + - pos: 7.332247,19.765924 parent: 31 type: Transform - - uid: 3923 +- proto: RubberStampDenied + entities: + - uid: 9045 components: - - pos: -40.5,1.5 + - pos: 7.691622,19.765924 parent: 31 type: Transform - - uid: 3967 +- proto: SalvageCanisterSpawner + entities: + - uid: 3676 components: - - pos: -42.5,3.5 + - pos: 26.5,-12.5 parent: 31 type: Transform - - uid: 3972 + - uid: 10463 components: - - pos: -9.5,7.5 + - pos: -11.5,-28.5 parent: 31 type: Transform - - uid: 3978 +- proto: SalvageMagnet + entities: + - uid: 10108 components: - - pos: 28.5,-12.5 + - rot: 3.141592653589793 rad + pos: 34.5,36.5 parent: 31 type: Transform - - uid: 4014 +- proto: SalvagePartsT2Spawner + entities: + - uid: 592 components: - - pos: -43.5,-0.5 + - pos: -5.5,-28.5 parent: 31 type: Transform - - uid: 4098 +- proto: ScalpelLaser + entities: + - uid: 9095 components: - - pos: -11.5,7.5 + - rot: 3.141592653589793 rad + pos: 17.551718,-20.302809 parent: 31 type: Transform - - uid: 4113 +- proto: Screwdriver + entities: + - uid: 2338 components: - - pos: -7.5,18.5 + - rot: 3.141592653589793 rad + pos: -17.416342,-23.279646 parent: 31 type: Transform - - uid: 4116 + - uid: 9556 components: - - pos: -3.5,6.5 + - pos: 55.526974,8.782967 parent: 31 type: Transform - - uid: 4268 + - uid: 10899 components: - - pos: 22.5,14.5 + - pos: 48.552956,-5.215438 parent: 31 type: Transform - - uid: 4274 +- proto: SeashellInstrument + entities: + - uid: 9370 components: - - rot: -1.5707963267948966 rad - pos: 51.5,11.5 + - pos: -23.430374,-21.53869 parent: 31 type: Transform - - uid: 4275 +- proto: SecurityTechFab + entities: + - uid: 7964 components: - - rot: -1.5707963267948966 rad - pos: 51.5,9.5 + - pos: -14.5,18.5 parent: 31 type: Transform - - uid: 4282 +- proto: SeedExtractor + entities: + - uid: 4125 components: - - pos: 48.5,18.5 + - pos: -18.5,1.5 parent: 31 type: Transform - - uid: 4287 +- proto: ShardGlass + entities: + - uid: 9719 components: - - rot: -1.5707963267948966 rad - pos: 51.5,12.5 + - pos: 10.424361,-42.595337 parent: 31 type: Transform - - uid: 4289 + - uid: 10634 components: - rot: -1.5707963267948966 rad - pos: 51.5,10.5 - parent: 31 - type: Transform - - uid: 4311 - components: - - pos: 17.5,20.5 + pos: 44.485413,-9.762369 parent: 31 type: Transform - - uid: 4375 +- proto: SheetGlass + entities: + - uid: 76 components: - - pos: 51.5,-17.5 + - pos: -11.562502,-21.488012 parent: 31 type: Transform - - uid: 4398 + - uid: 436 components: - - rot: 3.141592653589793 rad - pos: 54.5,3.5 + - pos: 29.605116,0.5307963 parent: 31 type: Transform - - uid: 4405 + - uid: 438 components: - - rot: 3.141592653589793 rad - pos: 47.5,-7.5 + - pos: 29.605116,0.5307963 parent: 31 type: Transform - - uid: 4408 + - uid: 1144 components: - - rot: 3.141592653589793 rad - pos: 51.5,-7.5 + - pos: 29.605116,0.5307963 parent: 31 type: Transform - - uid: 4409 + - uid: 1484 components: - - rot: 3.141592653589793 rad - pos: 49.5,-7.5 + - pos: 49.10775,5.572377 parent: 31 type: Transform - - uid: 4515 + - uid: 2318 components: - - rot: -1.5707963267948966 rad - pos: 35.5,-26.5 + - pos: -11.562502,-21.488012 parent: 31 type: Transform - - uid: 4516 + - uid: 4733 components: - - rot: -1.5707963267948966 rad - pos: 31.5,-24.5 + - pos: 49.10775,5.572377 parent: 31 type: Transform - - uid: 4522 + - uid: 7711 components: - - pos: 34.5,-13.5 + - pos: 18.530792,8.475061 parent: 31 type: Transform - - uid: 4577 + - uid: 8937 components: - - rot: -1.5707963267948966 rad - pos: 36.5,-22.5 + - pos: 18.530792,8.475061 parent: 31 type: Transform - - uid: 4578 +- proto: SheetGlass10 + entities: + - uid: 10993 components: - - rot: -1.5707963267948966 rad - pos: 37.5,-22.5 + - pos: 8.687881,-17.407122 parent: 31 type: Transform - - uid: 4583 +- proto: SheetPlasma + entities: + - uid: 7600 components: - - rot: -1.5707963267948966 rad - pos: 36.5,-26.5 + - pos: -6.54687,-32.500237 parent: 31 type: Transform - - uid: 4627 + - uid: 7859 components: - - pos: 45.5,-29.5 - parent: 31 + - flags: InContainer + type: MetaData + - parent: 7853 type: Transform - - uid: 4628 + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: SheetPlasma1 + entities: + - uid: 7860 components: - - pos: 44.5,-29.5 + - pos: 14.474419,0.69903797 parent: 31 type: Transform - - uid: 4629 + - uid: 7861 components: - - pos: 44.5,-28.5 + - pos: 14.474419,0.69903797 parent: 31 type: Transform - - uid: 4631 + - uid: 7862 components: - - pos: 46.5,-19.5 + - pos: 14.474419,0.69903797 parent: 31 type: Transform - - uid: 4632 + - uid: 7863 components: - - pos: 44.5,-21.5 + - pos: 14.474419,0.69903797 parent: 31 type: Transform - - uid: 4634 + - uid: 7864 components: - - pos: 46.5,-29.5 + - pos: 14.474419,0.69903797 parent: 31 type: Transform - - uid: 4635 +- proto: SheetPlasteel + entities: + - uid: 738 components: - - pos: 44.5,-27.5 + - pos: 28.417616,0.5307963 parent: 31 type: Transform - - uid: 4656 + - uid: 739 components: - - pos: 31.5,-23.5 + - pos: 28.417616,0.5307963 parent: 31 type: Transform - - uid: 4663 + - uid: 933 components: - - pos: 31.5,-25.5 + - pos: 50.498375,5.494252 parent: 31 type: Transform - - uid: 4673 + - uid: 1215 components: - - pos: 56.5,-26.5 + - pos: 28.417616,0.5307963 parent: 31 type: Transform - - uid: 4676 + - uid: 4123 components: - - pos: 47.5,-18.5 + - pos: 50.498375,5.494252 parent: 31 type: Transform - - uid: 4677 +- proto: SheetPlasteel10 + entities: + - uid: 3990 components: - - pos: 51.5,-18.5 + - pos: 6.4737763,10.629887 parent: 31 type: Transform - - uid: 4679 +- proto: SheetPlastic + entities: + - uid: 27 components: - - pos: 50.5,-17.5 + - pos: -11.562502,-21.95999 parent: 31 type: Transform - - uid: 4680 + - uid: 944 components: - - pos: 49.5,-17.5 + - pos: -11.562502,-21.989487 parent: 31 type: Transform - - uid: 4681 + - uid: 8347 components: - - pos: 48.5,-17.5 + - pos: 19.62285,7.50161 parent: 31 type: Transform - - uid: 4819 +- proto: SheetSteel + entities: + - uid: 432 components: - - pos: 12.5,-32.5 + - pos: 29.05824,0.4995463 parent: 31 type: Transform - - uid: 4836 + - uid: 433 components: - - rot: -1.5707963267948966 rad - pos: -3.5,-29.5 + - pos: 18.507324,7.4999294 parent: 31 type: Transform - - uid: 4849 + - uid: 435 components: - - pos: 2.5,-31.5 + - pos: 29.05824,0.4995463 parent: 31 type: Transform - - uid: 4850 + - uid: 797 components: - - pos: 3.5,-31.5 + - pos: 29.05824,0.4995463 parent: 31 type: Transform - - uid: 4851 + - uid: 943 components: - - pos: 4.5,-31.5 + - pos: -11.562502,-22.461464 parent: 31 type: Transform - - uid: 4883 + - uid: 1478 components: - - pos: -0.5,6.5 + - pos: 49.79525,5.541127 parent: 31 type: Transform - - uid: 4905 + - uid: 1485 components: - - pos: -28.5,-19.5 + - pos: 39,16 parent: 31 type: Transform - - uid: 4930 + - uid: 1683 components: - - pos: 19.5,21.5 + - pos: -11.562502,-22.461464 parent: 31 type: Transform - - uid: 4933 + - uid: 2159 components: - - rot: 3.141592653589793 rad - pos: 54.5,1.5 + - pos: 18.507324,7.4999294 parent: 31 type: Transform - - uid: 4940 + - uid: 4214 components: - - pos: 28.5,-25.5 + - pos: 49.79525,5.541127 parent: 31 type: Transform - - uid: 4943 + - uid: 5029 components: - - pos: 28.5,-23.5 + - pos: 38,16 parent: 31 type: Transform - - uid: 5002 + - uid: 8232 components: - - pos: 28.5,-14.5 + - pos: 37,16 parent: 31 type: Transform - - uid: 5073 + - uid: 8997 components: - - pos: 13.5,1.5 + - pos: -13.701841,18.488804 parent: 31 type: Transform - - uid: 5083 +- proto: SheetSteel10 + entities: + - uid: 941 components: - - pos: 13.5,0.5 + - pos: -2.5744638,-31.244534 parent: 31 type: Transform - - uid: 5113 + - uid: 4391 components: - - pos: -2.5,6.5 + - pos: 48.312096,-5.5456305 parent: 31 type: Transform - - uid: 5229 +- proto: ShuttersNormal + entities: + - uid: 260 components: - - pos: -29.5,18.5 + - pos: 1.5,-29.5 parent: 31 type: Transform - - uid: 5230 + - invokeCounter: 2 + links: + - 5132 + type: DeviceLinkSink + - uid: 11118 components: - - pos: -28.5,18.5 + - pos: -7.5,26.5 parent: 31 type: Transform - - uid: 5766 + - links: + - 11284 + type: DeviceLinkSink + - uid: 11119 components: - - rot: 1.5707963267948966 rad - pos: -1.5,14.5 + - pos: -6.5,26.5 parent: 31 type: Transform - - uid: 5940 + - links: + - 11284 + type: DeviceLinkSink +- proto: ShuttersNormalOpen + entities: + - uid: 1475 components: - rot: -1.5707963267948966 rad - pos: 24.5,18.5 + pos: 5.5,-10.5 parent: 31 type: Transform - - uid: 6215 + - links: + - 10997 + type: DeviceLinkSink + - uid: 2137 components: - rot: -1.5707963267948966 rad - pos: 18.5,18.5 + pos: 5.5,-11.5 parent: 31 type: Transform - - uid: 6246 + - links: + - 10997 + type: DeviceLinkSink + - uid: 2138 components: - - pos: 17.5,21.5 + - rot: -1.5707963267948966 rad + pos: 5.5,-8.5 parent: 31 type: Transform - - uid: 6335 + - links: + - 10996 + type: DeviceLinkSink + - uid: 4693 components: - - pos: 47.5,18.5 + - rot: 1.5707963267948966 rad + pos: -10.5,1.5 parent: 31 type: Transform - - uid: 6362 + - links: + - 4526 + type: DeviceLinkSink + - uid: 4694 components: - - pos: 45.5,7.5 + - rot: 1.5707963267948966 rad + pos: -10.5,0.5 parent: 31 type: Transform - - uid: 6368 + - links: + - 4526 + type: DeviceLinkSink + - uid: 4695 components: - - pos: 50.5,17.5 + - rot: 1.5707963267948966 rad + pos: -10.5,-0.5 parent: 31 type: Transform - - uid: 6448 + - links: + - 4526 + type: DeviceLinkSink + - uid: 8767 components: - - pos: 38.5,18.5 + - pos: -16.5,7.5 parent: 31 type: Transform - - uid: 6449 + - links: + - 8766 + type: DeviceLinkSink + - uid: 8768 components: - - pos: 39.5,18.5 + - rot: 3.141592653589793 rad + pos: -16.5,6.5 parent: 31 type: Transform - - uid: 6471 + - links: + - 8766 + type: DeviceLinkSink + - uid: 8770 components: - - pos: 40.5,18.5 + - pos: -13.5,6.5 parent: 31 type: Transform - - uid: 6474 + - links: + - 8774 + type: DeviceLinkSink + - uid: 8771 components: - - rot: 3.141592653589793 rad - pos: -43.5,-10.5 + - pos: -12.5,6.5 parent: 31 type: Transform - - uid: 6480 + - links: + - 8774 + type: DeviceLinkSink + - uid: 8772 components: - - rot: 1.5707963267948966 rad - pos: 61.5,0.5 + - pos: -7.5,6.5 parent: 31 type: Transform - - uid: 6482 + - links: + - 8774 + type: DeviceLinkSink + - uid: 8773 components: - - pos: 37.5,18.5 + - pos: -8.5,6.5 parent: 31 type: Transform - - uid: 6486 + - links: + - 8774 + type: DeviceLinkSink + - uid: 9122 components: - - pos: 43.5,18.5 + - rot: -1.5707963267948966 rad + pos: 5.5,-7.5 parent: 31 type: Transform - - uid: 6487 + - links: + - 10996 + type: DeviceLinkSink +- proto: ShuttersRadiationOpen + entities: + - uid: 9551 components: - - pos: 42.5,18.5 + - pos: 61.5,4.5 parent: 31 type: Transform - - uid: 6489 + - links: + - 9557 + type: DeviceLinkSink + - uid: 9552 components: - - pos: 46.5,18.5 + - pos: 61.5,3.5 parent: 31 type: Transform - - uid: 6493 + - links: + - 9557 + type: DeviceLinkSink + - uid: 9553 components: - - rot: 3.141592653589793 rad - pos: -42.5,-10.5 + - pos: 61.5,2.5 parent: 31 type: Transform - - uid: 6494 + - links: + - 9557 + type: DeviceLinkSink + - uid: 9554 components: - - rot: 3.141592653589793 rad - pos: -41.5,-12.5 + - pos: 61.5,1.5 parent: 31 type: Transform - - uid: 6495 + - links: + - 9557 + type: DeviceLinkSink + - uid: 9555 components: - - rot: 3.141592653589793 rad - pos: -42.5,-12.5 + - pos: 61.5,0.5 parent: 31 type: Transform - - uid: 6497 + - links: + - 9557 + type: DeviceLinkSink +- proto: SignalButton + entities: + - uid: 2515 components: - - pos: 44.5,18.5 + - pos: 16.5,13.5 parent: 31 type: Transform - - uid: 6506 + - linkedPorts: + 1756: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 4526 components: - - pos: 41.5,18.5 + - pos: -11.5,-2.5 parent: 31 type: Transform - - uid: 6541 + - linkedPorts: + 4695: + - Pressed: Toggle + 4694: + - Pressed: Toggle + 4693: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 5132 components: - - pos: 45.5,9.5 + - rot: 1.5707963267948966 rad + pos: -3.5,-29.5 parent: 31 type: Transform - - uid: 6559 + - linkedPorts: + 260: + - Pressed: Toggle + type: DeviceLinkSource + - type: ItemCooldown + - uid: 8766 components: - - pos: 50.5,15.5 + - pos: -13.5,12.5 parent: 31 type: Transform - - uid: 6614 + - linkedPorts: + 8767: + - Pressed: Toggle + 8768: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 8774 components: - - pos: 35.5,18.5 + - pos: -11.5,12.5 parent: 31 type: Transform - - uid: 6615 + - linkedPorts: + 8772: + - Pressed: Toggle + 8773: + - Pressed: Toggle + 8771: + - Pressed: Toggle + 8770: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 10325 components: - - pos: 32.5,18.5 + - pos: -12.5,-28.5 parent: 31 type: Transform - - uid: 6629 + - state: True + type: SignalSwitch + - linkedPorts: + 7588: + - Pressed: Toggle + type: DeviceLinkSource + - type: ItemCooldown + - uid: 10449 components: - - pos: 32.5,7.5 + - pos: 51.5,18.5 parent: 31 type: Transform - - uid: 6632 + - linkedPorts: + 6557: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 10996 components: - - rot: 1.5707963267948966 rad - pos: 61.5,4.5 + - pos: 7.5,-6.5 parent: 31 type: Transform - - uid: 6634 + - linkedPorts: + 9122: + - Pressed: Toggle + 2138: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 10997 components: - - rot: 1.5707963267948966 rad - pos: 61.5,2.5 + - pos: 7.5,-9.5 parent: 31 type: Transform - - uid: 6637 + - linkedPorts: + 1475: + - Pressed: Toggle + 2137: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 11284 components: - - pos: 33.5,18.5 + - rot: 1.5707963267948966 rad + pos: -8.5,28.5 parent: 31 type: Transform - - uid: 6640 + - linkedPorts: + 11119: + - Pressed: Toggle + 11118: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SignalSwitch + entities: + - uid: 276 components: - - pos: 45.5,18.5 + - name: EVA door toggle + type: MetaData + - rot: 3.141592653589793 rad + pos: 0.5,27.5 parent: 31 type: Transform - - uid: 6641 + - linkedPorts: + 116: + - On: Open + - Off: Close + - On: AutoClose + 92: + - On: Open + - Off: Close + - On: AutoClose + type: DeviceLinkSource + - uid: 1084 components: - - rot: 3.141592653589793 rad - pos: -43.5,-12.5 + - pos: 19.5,18.5 parent: 31 type: Transform - - uid: 6809 + - linkedPorts: + 8899: + - On: Forward + - Off: Off + 7550: + - On: Forward + - Off: Off + 1771: + - On: Forward + - Off: Off + 3550: + - On: Forward + - Off: Off + 3387: + - On: Forward + - Off: Off + 3548: + - On: Forward + - Off: Off + 3549: + - On: Forward + - Off: Off + 10095: + - On: Open + - Off: Close + 10089: + - On: Forward + - Off: Off + 10090: + - On: Forward + - Off: Off + 10092: + - On: Forward + - Off: Off + 10091: + - On: Forward + - Off: Off + 10046: + - On: Forward + - Off: Off + 3905: + - On: Open + - Off: Close + 10053: + - On: Forward + - Off: Off + type: DeviceLinkSource + - uid: 7945 components: - - rot: 3.141592653589793 rad - pos: -43.5,-8.5 + - pos: 23.5,18.5 parent: 31 type: Transform - - uid: 6810 + - linkedPorts: + 10047: + - On: Forward + - Off: Off + 10048: + - On: Forward + - Off: Off + 10049: + - On: Forward + - Off: Off + 10050: + - On: Forward + - Off: Off + 10051: + - On: Forward + - Off: Off + 10052: + - On: Forward + - Off: Off + 10053: + - On: Forward + - Off: Off + 10093: + - On: Forward + - Off: Off + 9139: + - On: Forward + - Off: Off + 9138: + - On: Forward + - Off: Off + 66: + - On: Open + - Off: Close + 10096: + - On: Open + - Off: Close + 10054: + - On: Forward + - Off: Off + 10045: + - On: Forward + - Off: Off + type: DeviceLinkSource + - uid: 9557 components: - - rot: 3.141592653589793 rad - pos: -42.5,-8.5 + - pos: 60.5,5.5 parent: 31 type: Transform - - uid: 6811 + - linkedPorts: + 9551: + - On: Open + - Off: Close + 9552: + - On: Open + - Off: Close + 9553: + - On: Open + - Off: Close + 9554: + - On: Open + - Off: Close + 9555: + - On: Open + - Off: Close + type: DeviceLinkSource + - uid: 10218 components: - - rot: 3.141592653589793 rad - pos: -41.5,-8.5 + - rot: 1.5707963267948966 rad + pos: -33.5,-13.5 parent: 31 type: Transform - - uid: 6828 + - linkedPorts: + 10033: + - On: Forward + - Off: Off + 10040: + - On: Forward + - Off: Off + 10043: + - On: Forward + - Off: Off + 10109: + - On: Forward + - Off: Off + 1561: + - On: Open + - Off: Close + 10110: + - On: Forward + - Off: Off + 9886: + - On: Forward + - Off: Off + 9266: + - On: Reverse + - Off: Off + 10201: + - On: Open + - Off: Close + 9265: + - On: Forward + - Off: Off + 10215: + - On: Forward + - Off: Off + type: DeviceLinkSource +- proto: SignAnomaly + entities: + - uid: 10546 components: - - rot: 1.5707963267948966 rad - pos: 61.5,3.5 + - pos: -12.5,-31.5 parent: 31 type: Transform - - uid: 6880 +- proto: SignAnomaly2 + entities: + - uid: 10544 components: - - pos: 50.5,16.5 + - pos: -7.5,-33.5 parent: 31 type: Transform - - uid: 6885 +- proto: SignArmory + entities: + - uid: 1523 components: - - pos: 34.5,7.5 + - pos: -13.507725,17.439112 parent: 31 type: Transform - - uid: 6890 +- proto: SignAtmos + entities: + - uid: 6329 components: - - pos: 34.5,18.5 + - pos: 31.5,7.5 parent: 31 type: Transform - - uid: 6892 +- proto: SignBar + entities: + - uid: 5110 components: - - pos: 23.5,21.5 + - pos: 1.5,2.5 parent: 31 type: Transform - - uid: 6893 +- proto: SignBiohazardMed + entities: + - uid: 8895 components: - - pos: 23.5,20.5 + - pos: 16.5,-12.5 parent: 31 type: Transform - - uid: 6910 +- proto: SignBridge + entities: + - uid: 142 components: - - pos: 31.5,18.5 + - pos: 5.5,22.5 parent: 31 type: Transform - - uid: 6972 +- proto: SignCargo + entities: + - uid: 4299 components: - - pos: 47.5,-17.5 + - pos: 12.5,8.5 parent: 31 type: Transform - - uid: 6973 +- proto: SignCargoDock + entities: + - uid: 5150 components: - - pos: 47.5,-30.5 + - pos: 21.5,28.5 parent: 31 type: Transform - - uid: 6974 +- proto: SignChapel + entities: + - uid: 7694 components: - - pos: 47.5,-31.5 + - pos: -38.5,11.5 parent: 31 type: Transform - - uid: 6975 +- proto: SignChem + entities: + - uid: 4889 components: - - pos: 51.5,-31.5 + - pos: 18.5,-3.5 parent: 31 type: Transform - - uid: 6976 +- proto: SignChemistry2 + entities: + - uid: 7291 components: - - pos: 51.5,-30.5 + - pos: 14.5,2.5 parent: 31 type: Transform - - uid: 6977 +- proto: SignCloning + entities: + - uid: 4133 components: - - pos: 52.5,-29.5 + - pos: 10.5,-12.5 parent: 31 type: Transform - - uid: 6978 +- proto: SignConference + entities: + - uid: 1524 components: - - pos: 54.5,-27.5 + - pos: 1.5,26.5 parent: 31 type: Transform - - uid: 6979 + - uid: 8704 components: - - pos: 54.5,-21.5 + - pos: -33.5,-25.5 parent: 31 type: Transform - - uid: 6980 +- proto: SignCryogenicsMed + entities: + - uid: 10992 components: - - pos: 52.5,-19.5 + - pos: 8.5,-12.5 parent: 31 type: Transform - - uid: 6988 +- proto: SignDangerMed + entities: + - uid: 4640 components: - - pos: 55.5,-22.5 + - pos: 58.5,5.5 parent: 31 type: Transform - - uid: 6989 + - uid: 4797 components: - - pos: 56.5,-22.5 + - pos: 71.5,11.5 parent: 31 type: Transform - - uid: 6991 + - uid: 9548 components: - - pos: 55.5,-26.5 + - pos: 71.5,-6.5 parent: 31 type: Transform - - uid: 6996 + - uid: 9549 components: - - pos: 56.5,-23.5 + - pos: 80.5,2.5 parent: 31 type: Transform - - uid: 6997 +- proto: SignDirectionalBridge + entities: + - uid: 157 components: - - pos: 56.5,-25.5 + - rot: 1.5707963267948966 rad + pos: -21.482899,6.2720566 parent: 31 type: Transform - - uid: 6998 + - uid: 1766 components: - - pos: 56.5,-24.5 + - rot: 3.141592653589793 rad + pos: 1.5,6.5 parent: 31 type: Transform - - uid: 6999 + - uid: 7492 components: - - pos: 53.5,-29.5 + - rot: 3.141592653589793 rad + pos: 5.493867,-12.264781 parent: 31 type: Transform - - uid: 7000 +- proto: SignDirectionalChapel + entities: + - uid: 8239 components: - - pos: 54.5,-29.5 + - rot: 3.141592653589793 rad + pos: -34.5,11.5 parent: 31 type: Transform - - uid: 7001 + - uid: 8917 components: - - pos: 54.5,-28.5 + - rot: -1.5707963267948966 rad + pos: -26.499413,2.2858148 parent: 31 type: Transform - - uid: 7002 +- proto: SignDirectionalDorms + entities: + - uid: 8915 components: - - pos: 53.5,-19.5 + - pos: -26.5,2.5 parent: 31 type: Transform - - uid: 7003 +- proto: SignDirectionalEng + entities: + - uid: 141 components: - - pos: 54.5,-19.5 + - rot: 1.5707963267948966 rad + pos: 5.5,6.5 parent: 31 type: Transform - - uid: 7004 + - uid: 8842 components: - - pos: 54.5,-20.5 + - rot: 1.5707963267948966 rad + pos: -26.497889,6.7333336 parent: 31 type: Transform - - uid: 7005 +- proto: SignDirectionalEvac + entities: + - uid: 2225 components: - - pos: 45.5,-19.5 + - rot: -1.5707963267948966 rad + pos: -21.5,6.5 parent: 31 type: Transform - - uid: 7006 + - uid: 9333 components: - - pos: 44.5,-19.5 + - rot: -1.5707963267948966 rad + pos: 1.494153,6.738206 parent: 31 type: Transform - - uid: 7007 +- proto: SignDirectionalFood + entities: + - uid: 7684 components: - - pos: 44.5,-20.5 + - rot: 1.5707963267948966 rad + pos: -20.5,2.5 parent: 31 type: Transform - - uid: 7008 +- proto: SignDirectionalHydro + entities: + - uid: 8916 components: - - pos: 42.5,-26.5 + - rot: 1.5707963267948966 rad + pos: -26.495642,2.7233148 parent: 31 type: Transform - - uid: 7009 +- proto: SignDirectionalJanitor + entities: + - uid: 120 components: - - pos: 42.5,-22.5 + - pos: -22.49935,1.7157228 parent: 31 type: Transform - - uid: 7029 +- proto: SignDirectionalMed + entities: + - uid: 7491 components: - - rot: -1.5707963267948966 rad - pos: 37.5,-26.5 + - rot: 3.141592653589793 rad + pos: 5.5,-12.5 parent: 31 type: Transform - - uid: 7069 + - uid: 8841 components: - - rot: -1.5707963267948966 rad - pos: 35.5,-22.5 + - rot: 1.5707963267948966 rad + pos: -26.5,6.5 parent: 31 type: Transform - - uid: 7242 + - uid: 10555 components: - - pos: 13.5,-5.5 + - rot: 3.141592653589793 rad + pos: 0.5049188,-17.286484 parent: 31 type: Transform - - uid: 7402 +- proto: SignDirectionalSci + entities: + - uid: 1263 components: - - rot: 3.141592653589793 rad - pos: -17.5,-27.5 + - pos: 1.4985528,6.263013 parent: 31 type: Transform - - uid: 7403 + - uid: 10552 components: - - pos: -16.5,-30.5 + - rot: -1.5707963267948966 rad + pos: 0.5,-17.5 parent: 31 type: Transform - - uid: 7443 + - uid: 10553 components: - - rot: 3.141592653589793 rad - pos: 0.5,-32.5 + - pos: -22.5,1.5 parent: 31 type: Transform - - uid: 7444 +- proto: SignDirectionalSec + entities: + - uid: 7493 components: - rot: 3.141592653589793 rad - pos: -0.5,-32.5 + pos: 5.493867,-12.749156 parent: 31 type: Transform - - uid: 7445 + - uid: 7795 components: - - rot: 3.141592653589793 rad - pos: -1.5,-32.5 + - rot: 1.5707963267948966 rad + pos: -21.50213,6.729406 parent: 31 type: Transform - - uid: 7446 + - uid: 10272 components: - - rot: 3.141592653589793 rad - pos: -2.5,-32.5 + - rot: 1.5707963267948966 rad + pos: -17.5,15.5 parent: 31 type: Transform - - uid: 7473 + - uid: 10554 components: - - pos: -31.5,19.5 + - rot: 3.141592653589793 rad + pos: 0.5049188,-17.71476 parent: 31 type: Transform - - uid: 7544 +- proto: SignDirectionalSupply + entities: + - uid: 146 components: - - pos: -26.5,-14.5 + - rot: 1.5707963267948966 rad + pos: 5.498553,6.247388 parent: 31 type: Transform - - uid: 7545 + - uid: 8843 components: - - pos: -28.5,-14.5 + - rot: 1.5707963267948966 rad + pos: -26.497889,6.2645836 parent: 31 type: Transform - - uid: 7682 +- proto: SignDrones + entities: + - uid: 7224 components: - - pos: -39.5,12.5 + - pos: 26.5,2.5 parent: 31 type: Transform - - uid: 7749 +- proto: SignElectricalMed + entities: + - uid: 3134 components: - - pos: -7.5,6.5 + - pos: 45.5,6.5 parent: 31 type: Transform - - uid: 7750 +- proto: SignEngineering + entities: + - uid: 1222 components: - - pos: -8.5,6.5 + - pos: 30.5,6.5 parent: 31 type: Transform - - uid: 7796 +- proto: SignEVA + entities: + - uid: 150 components: - - pos: -3.5,8.5 + - pos: 10.5,6.5 parent: 31 type: Transform - - uid: 7799 +- proto: SignExamroom + entities: + - uid: 530 components: - - pos: 13.5,-8.5 + - pos: 8.5,-9.5 parent: 31 type: Transform - - uid: 7801 +- proto: SignGravity + entities: + - uid: 8148 components: - - pos: 13.5,-7.5 + - pos: 50.5,-1.5 parent: 31 type: Transform - - uid: 7817 +- proto: SignHydro2 + entities: + - uid: 10545 components: - - pos: -26.5,-20.5 + - pos: -2.5,-40.5 parent: 31 type: Transform - - uid: 7903 +- proto: SignInterrogation + entities: + - uid: 9508 components: - - pos: 34.5,-14.5 + - pos: -0.5,11.5 parent: 31 type: Transform - - uid: 7946 +- proto: SignLaserMed + entities: + - uid: 8898 components: - - pos: 48.5,-31.5 + - pos: 61.5,-0.5 parent: 31 type: Transform - - uid: 7947 +- proto: SignLibrary + entities: + - uid: 4831 components: - - pos: -40.5,-8.5 + - pos: 5.5,-22.5 parent: 31 type: Transform - - uid: 7963 +- proto: SignMagneticsMed + entities: + - uid: 2953 components: - - rot: 1.5707963267948966 rad - pos: -41.5,-10.5 + - pos: 32.5,23.5 parent: 31 type: Transform - - uid: 8028 +- proto: SignMedical + entities: + - uid: 4151 components: - - pos: 50.5,-31.5 + - pos: 5.5,2.5 parent: 31 type: Transform - - uid: 8125 +- proto: SignMinerDock + entities: + - uid: 9941 components: - - pos: 61.5,6.5 + - rot: 3.141592653589793 rad + pos: 34.5,38.5 parent: 31 type: Transform - - uid: 8144 +- proto: SignMorgue + entities: + - uid: 4230 components: - - pos: 61.5,-1.5 + - pos: 16.5,-14.5 parent: 31 type: Transform - - uid: 8203 +- proto: SignRadiationMed + entities: + - uid: 4638 components: - - pos: 49.5,-31.5 + - pos: 54.5,4.5 parent: 31 type: Transform - - uid: 8204 + - uid: 4639 components: - - pos: -39.5,-8.5 + - pos: 54.5,0.5 parent: 31 type: Transform - - uid: 8221 + - uid: 9550 components: - - pos: -32.5,19.5 + - pos: 79.5,11.5 parent: 31 type: Transform - - uid: 8370 + - uid: 9560 components: - - pos: -38.5,-10.5 + - pos: 62.5,11.5 parent: 31 type: Transform - - uid: 8385 + - uid: 9561 components: - - pos: -40.5,-12.5 + - pos: 80.5,10.5 parent: 31 type: Transform - - uid: 8386 + - uid: 9562 components: - - pos: -39.5,-12.5 + - pos: 80.5,-5.5 parent: 31 type: Transform - - uid: 8454 + - uid: 9563 components: - - pos: -13.5,-33.5 + - pos: 79.5,-6.5 parent: 31 type: Transform - - uid: 8460 + - uid: 9564 components: - - pos: -16.5,-33.5 + - pos: 62.5,-6.5 parent: 31 type: Transform - - uid: 8461 + - uid: 9565 components: - - pos: -15.5,-33.5 + - pos: 61.5,-5.5 parent: 31 type: Transform - - uid: 8468 + - uid: 9567 components: - - pos: -14.5,-33.5 + - pos: 61.5,10.5 parent: 31 type: Transform - - uid: 8478 +- proto: SignRobo + entities: + - uid: 10561 components: - - pos: -26.5,-27.5 + - pos: -3.5,-28.5 parent: 31 type: Transform - - uid: 8479 +- proto: SignScience + entities: + - uid: 10543 components: - - pos: -27.5,-27.5 + - pos: -13.5,-17.5 parent: 31 type: Transform - - uid: 8481 +- proto: SignSecurearea + entities: + - uid: 9395 components: - - pos: -26.5,-25.5 + - pos: -44.5,1.5 parent: 31 type: Transform - - uid: 8482 + - uid: 9396 components: - - pos: -27.5,-25.5 + - pos: -44.5,9.5 parent: 31 type: Transform - - uid: 8531 +- proto: SignSecureMedRed + entities: + - uid: 10983 components: - - pos: -37.5,-28.5 + - pos: 54.5,-10.5 parent: 31 type: Transform - - uid: 8533 +- proto: SignSomethingOld2 + entities: + - uid: 1469 components: - - pos: -32.5,-33.5 + - pos: -2.5,19.5 parent: 31 type: Transform - - uid: 8543 +- proto: SignSpace + entities: + - uid: 9237 components: - - pos: -37.5,-24.5 + - pos: -40.5,9.5 parent: 31 type: Transform - - uid: 8546 + - uid: 9238 components: - - rot: 3.141592653589793 rad - pos: -29.5,-32.5 + - pos: -40.5,1.5 parent: 31 type: Transform - - uid: 8556 + - uid: 9473 components: - - pos: -36.5,-22.5 + - pos: -21.5,-31.5 parent: 31 type: Transform - - uid: 8559 +- proto: SignSurgery + entities: + - uid: 1107 components: - - pos: -34.5,-22.5 + - rot: -1.5707963267948966 rad + pos: 20.5,-13.5 parent: 31 type: Transform - - uid: 8560 +- proto: SignTelecomms + entities: + - uid: 8149 components: - - pos: -33.5,-23.5 + - pos: 48.5,-1.5 parent: 31 type: Transform - - uid: 8563 +- proto: SignToolStorage + entities: + - uid: 158 components: - - pos: -37.5,-23.5 + - pos: -25.5,7.5 parent: 31 type: Transform - - uid: 8564 +- proto: SingularityGenerator + entities: + - uid: 4654 components: - - pos: -33.5,-24.5 + - pos: 71.5,2.5 parent: 31 type: Transform - - uid: 8882 + - uid: 6470 components: - - pos: -40.5,-10.5 + - pos: 38.5,8.5 parent: 31 type: Transform - - uid: 8950 +- proto: Sink + entities: + - uid: 638 components: - - pos: -39.5,-10.5 + - rot: 1.5707963267948966 rad + pos: 12.5,26.5 parent: 31 type: Transform - - uid: 9004 + - uid: 2451 components: - - pos: -17.5,-33.5 + - rot: 3.141592653589793 rad + pos: -3.5,-6.5 parent: 31 type: Transform - - uid: 9025 + - uid: 8411 components: - - pos: -44.5,3.5 + - rot: 1.5707963267948966 rad + pos: -7.5,-5.5 parent: 31 type: Transform - - uid: 9026 + - uid: 8907 components: - - pos: -41.5,1.5 + - rot: 1.5707963267948966 rad + pos: 21.5,-5.5 parent: 31 type: Transform - - uid: 9128 +- proto: SinkWide + entities: + - uid: 4225 components: - - pos: 5.5,-11.5 + - rot: 1.5707963267948966 rad + pos: 17.5,-16.5 parent: 31 type: Transform - - uid: 9129 + - uid: 5630 components: - - pos: 5.5,-10.5 + - rot: 3.141592653589793 rad + pos: -17.5,8.5 parent: 31 type: Transform - - uid: 9130 + - uid: 7574 components: - - pos: 5.5,-8.5 + - pos: -14.5,1.5 parent: 31 type: Transform - - uid: 9131 +- proto: Skub + entities: + - uid: 11043 components: - - pos: 5.5,-7.5 + - pos: -1.5876693,-19.53403 parent: 31 type: Transform - - uid: 9173 +- proto: SMESBasic + entities: + - uid: 4340 components: - - pos: -35.5,-12.5 + - name: north solars SMES + type: MetaData + - pos: -22.5,25.5 parent: 31 type: Transform - - uid: 9184 + - uid: 4425 components: - - pos: -39.5,-5.5 + - name: singulo SMES + type: MetaData + - pos: 55.5,4.5 parent: 31 type: Transform - - uid: 9187 + - uid: 4453 components: - - pos: -39.5,-1.5 + - name: south solars SMES + type: MetaData + - pos: 14.5,-28.5 parent: 31 type: Transform - - uid: 9189 + - uid: 6839 components: - - pos: -36.5,-12.5 + - name: SMES 2 + type: MetaData + - pos: 41.5,5.5 parent: 31 type: Transform - - uid: 9194 + - uid: 6916 components: - - pos: -37.5,-12.5 + - name: SMES 1 + type: MetaData + - pos: 40.5,5.5 parent: 31 type: Transform - - uid: 9204 + - uid: 6939 components: - - pos: -38.5,-7.5 + - name: SMES 3 + type: MetaData + - pos: 42.5,5.5 parent: 31 type: Transform - - uid: 9207 + - uid: 8327 components: - - pos: -39.5,-3.5 + - name: telecomms SMES + type: MetaData + - pos: 52.5,-0.5 parent: 31 type: Transform - - uid: 9220 + - uid: 8574 components: - - rot: -1.5707963267948966 rad - pos: 1.5,-30.5 + - name: southwest solars SMES + type: MetaData + - pos: -30.5,-31.5 parent: 31 type: Transform - - uid: 9255 +- proto: SoapNT + entities: + - uid: 1045 components: - - pos: -27.5,-16.5 + - pos: 12.820141,26.438648 parent: 31 type: Transform - - uid: 9256 +- proto: SoapOmega + entities: + - uid: 10584 components: - - pos: -26.5,-16.5 + - pos: -6.517076,-41.294003 parent: 31 type: Transform - - uid: 9357 +- proto: soda_dispenser + entities: + - uid: 1418 components: - - pos: -44.5,1.5 + - rot: 3.141592653589793 rad + pos: 31.5,-10.5 parent: 31 type: Transform - - uid: 9358 + - uid: 4163 components: - - pos: -43.5,9.5 + - rot: 3.141592653589793 rad + pos: -4.5,-6.5 parent: 31 type: Transform - - uid: 9359 +- proto: SolarPanel + entities: + - uid: 1695 components: - - pos: -40.5,7.5 + - pos: -37.5,26.5 parent: 31 type: Transform - - uid: 9360 + - uid: 2537 components: - - pos: -40.5,9.5 + - pos: -37.5,25.5 parent: 31 type: Transform - - uid: 9361 + - uid: 4339 components: - - pos: -25.5,-23.5 + - pos: 21.5,-27.5 parent: 31 type: Transform - - uid: 9363 + - uid: 4411 components: - - pos: 5.5,-5.5 + - pos: 29.5,-27.5 parent: 31 type: Transform - - uid: 9379 + - uid: 4415 components: - - pos: -43.5,7.5 + - pos: 27.5,-35.5 parent: 31 type: Transform - - uid: 9380 + - uid: 4422 components: - - pos: -41.5,4.5 + - pos: 19.5,-35.5 parent: 31 type: Transform - - uid: 9381 + - uid: 4423 components: - - pos: -41.5,5.5 + - pos: 27.5,-27.5 parent: 31 type: Transform - - uid: 9382 + - uid: 4426 components: - - pos: -41.5,11.5 + - pos: 19.5,-27.5 parent: 31 type: Transform - - uid: 9383 + - uid: 4872 components: - - pos: -41.5,6.5 + - pos: 29.5,-35.5 parent: 31 type: Transform - - uid: 9384 + - uid: 4874 components: - - pos: -41.5,9.5 + - pos: 21.5,-35.5 parent: 31 type: Transform - - uid: 9385 + - uid: 5017 components: - - pos: -42.5,9.5 + - pos: -37.5,27.5 parent: 31 type: Transform - - uid: 9386 + - uid: 5018 components: - - pos: -40.5,3.5 + - pos: -35.5,25.5 parent: 31 type: Transform - - uid: 9387 + - uid: 5019 components: - - pos: -42.5,7.5 + - pos: -35.5,26.5 parent: 31 type: Transform - - uid: 9398 + - uid: 5020 components: - - pos: -15.5,-30.5 + - pos: -35.5,27.5 parent: 31 type: Transform - - uid: 9399 + - uid: 5021 components: - - pos: -14.5,-30.5 + - pos: -33.5,25.5 parent: 31 type: Transform - - uid: 9514 + - uid: 5022 components: - - pos: 5.5,-4.5 + - pos: -33.5,26.5 parent: 31 type: Transform - - uid: 9532 + - uid: 5024 components: - - pos: 18.5,-18.5 + - pos: -33.5,27.5 parent: 31 type: Transform - - uid: 9536 + - uid: 5037 components: - - pos: 17.5,-18.5 + - pos: -31.5,25.5 parent: 31 type: Transform - - uid: 9715 + - uid: 5129 components: - - pos: -40.5,18.5 + - pos: -31.5,26.5 parent: 31 type: Transform - - uid: 9716 + - uid: 5130 components: - - pos: -40.5,17.5 + - pos: -31.5,27.5 parent: 31 type: Transform - - uid: 9717 + - uid: 5131 components: - - pos: -40.5,16.5 + - pos: -29.5,25.5 parent: 31 type: Transform - - uid: 9718 + - uid: 5159 components: - - pos: -40.5,15.5 + - pos: -29.5,26.5 parent: 31 type: Transform - - uid: 9772 + - uid: 5160 components: - - pos: -9.5,-33.5 + - pos: -29.5,27.5 parent: 31 type: Transform - - uid: 9773 + - uid: 5161 components: - - pos: -8.5,-33.5 + - pos: -29.5,23.5 parent: 31 type: Transform - - uid: 9774 + - uid: 5162 components: - - pos: -7.5,-33.5 + - pos: -29.5,22.5 parent: 31 type: Transform - - uid: 9775 + - uid: 5163 components: - - pos: -6.5,-33.5 + - pos: -29.5,21.5 parent: 31 type: Transform - - uid: 9925 + - uid: 5164 components: - - rot: -1.5707963267948966 rad - pos: 29.5,20.5 + - pos: -31.5,23.5 parent: 31 type: Transform - - uid: 10071 + - uid: 5165 components: - - rot: -1.5707963267948966 rad - pos: 19.5,24.5 + - pos: -31.5,22.5 parent: 31 type: Transform - - uid: 10072 + - uid: 5166 components: - - rot: -1.5707963267948966 rad - pos: 19.5,23.5 + - pos: -31.5,21.5 parent: 31 type: Transform - - uid: 10073 + - uid: 5167 components: - - rot: -1.5707963267948966 rad - pos: 23.5,24.5 + - pos: -33.5,23.5 parent: 31 type: Transform - - uid: 10074 + - uid: 5168 components: - - rot: -1.5707963267948966 rad - pos: 23.5,23.5 + - pos: -33.5,22.5 parent: 31 type: Transform - - uid: 10075 + - uid: 5169 components: - - rot: -1.5707963267948966 rad - pos: 24.5,26.5 + - pos: -33.5,21.5 parent: 31 type: Transform - - uid: 10076 + - uid: 5170 components: - - rot: -1.5707963267948966 rad - pos: 24.5,27.5 + - pos: -35.5,23.5 parent: 31 type: Transform - - uid: 10077 + - uid: 5171 components: - - rot: -1.5707963267948966 rad - pos: 18.5,27.5 + - pos: -35.5,22.5 parent: 31 type: Transform - - uid: 10078 + - uid: 5172 components: - - rot: -1.5707963267948966 rad - pos: 18.5,26.5 + - pos: -35.5,21.5 parent: 31 type: Transform - - uid: 10079 + - uid: 5173 components: - - rot: -1.5707963267948966 rad - pos: 21.5,28.5 + - pos: -37.5,23.5 parent: 31 type: Transform -- proto: ResearchAndDevelopmentServer - entities: - - uid: 8223 + - uid: 5174 components: - - pos: -9.5,-23.5 + - pos: -37.5,22.5 parent: 31 type: Transform -- proto: RevolverCapGun - entities: - - uid: 8527 + - uid: 5175 components: - - pos: -20.389076,-20.48394 + - pos: -37.5,21.5 parent: 31 type: Transform -- proto: RiotShield - entities: - - uid: 4025 + - uid: 6768 components: - - pos: -5.0753393,13.475128 + - pos: 21.5,-28.5 parent: 31 type: Transform -- proto: RubberStampApproved - entities: - - uid: 9044 + - uid: 6769 components: - - pos: 7.332247,19.765924 + - pos: 21.5,-29.5 parent: 31 type: Transform -- proto: RubberStampDenied - entities: - - uid: 9045 + - uid: 6770 components: - - pos: 7.691622,19.765924 + - pos: 21.5,-30.5 parent: 31 type: Transform -- proto: SalvageMagnet - entities: - - uid: 10108 + - uid: 6771 components: - - rot: 3.141592653589793 rad - pos: 34.5,36.5 + - pos: 19.5,-30.5 parent: 31 type: Transform -- proto: Screwdriver - entities: - - uid: 4538 + - uid: 6772 components: - - pos: 57.503426,-1.8264575 + - pos: 19.5,-29.5 parent: 31 type: Transform -- proto: SeashellInstrument - entities: - - uid: 9370 + - uid: 6773 components: - - pos: -23.430374,-21.53869 + - pos: 19.5,-28.5 parent: 31 type: Transform -- proto: SecurityTechFab - entities: - - uid: 7964 + - uid: 6774 components: - - pos: -14.5,18.5 + - pos: 19.5,-32.5 parent: 31 type: Transform -- proto: SeedExtractor - entities: - - uid: 4125 + - uid: 6775 components: - - pos: -18.5,1.5 + - pos: 19.5,-33.5 parent: 31 type: Transform -- proto: SheetGlass - entities: - - uid: 138 + - uid: 6776 components: - - pos: 18.52295,8.015554 + - pos: 19.5,-34.5 parent: 31 type: Transform - - uid: 436 + - uid: 6777 components: - - pos: 29.605116,0.5307963 + - pos: 21.5,-34.5 parent: 31 type: Transform - - uid: 438 + - uid: 6778 components: - - pos: 29.605116,0.5307963 + - pos: 21.5,-33.5 parent: 31 type: Transform - - uid: 1144 + - uid: 6779 components: - - pos: 29.605116,0.5307963 + - pos: 21.5,-32.5 parent: 31 type: Transform - - uid: 1484 + - uid: 6780 components: - - pos: 49.10775,5.572377 + - pos: 23.5,-35.5 parent: 31 type: Transform - - uid: 2134 + - uid: 6781 components: - - pos: 18.52295,8.015554 + - pos: 23.5,-34.5 parent: 31 type: Transform - - uid: 4718 + - uid: 6782 components: - - pos: -17.481724,-17.992687 + - pos: 23.5,-33.5 parent: 31 type: Transform - - uid: 4733 + - uid: 6783 components: - - pos: 49.10775,5.572377 + - pos: 23.5,-32.5 parent: 31 type: Transform - - uid: 7364 + - uid: 6784 components: - - pos: -17.481724,-17.992687 + - pos: 25.5,-32.5 parent: 31 type: Transform - - uid: 9695 + - uid: 6785 components: - - pos: -2.0066276,-13.455786 + - pos: 25.5,-33.5 parent: 31 type: Transform -- proto: SheetPlasma - entities: - - uid: 3374 + - uid: 6786 components: - - pos: -11.59112,-28.342184 + - pos: 25.5,-34.5 parent: 31 type: Transform - - uid: 7859 + - uid: 6787 components: - - flags: InContainer - type: MetaData - - parent: 7853 + - pos: 25.5,-35.5 + parent: 31 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: SheetPlasma1 - entities: - - uid: 7860 + - uid: 6788 components: - - pos: 14.474419,0.69903797 + - pos: 25.5,-30.5 parent: 31 type: Transform - - uid: 7861 + - uid: 6789 components: - - pos: 14.474419,0.69903797 + - pos: 25.5,-29.5 parent: 31 type: Transform - - uid: 7862 + - uid: 6790 components: - - pos: 14.474419,0.69903797 + - pos: 25.5,-28.5 parent: 31 type: Transform - - uid: 7863 + - uid: 6791 components: - - pos: 14.474419,0.69903797 + - pos: 25.5,-27.5 parent: 31 type: Transform - - uid: 7864 + - uid: 6792 components: - - pos: 14.474419,0.69903797 + - pos: 23.5,-27.5 parent: 31 type: Transform -- proto: SheetPlasteel - entities: - - uid: 738 + - uid: 6793 components: - - pos: 28.417616,0.5307963 + - pos: 23.5,-28.5 parent: 31 type: Transform - - uid: 739 + - uid: 6794 components: - - pos: 28.417616,0.5307963 + - pos: 23.5,-29.5 parent: 31 type: Transform - - uid: 933 + - uid: 6795 components: - - pos: 50.498375,5.494252 + - pos: 23.5,-30.5 parent: 31 type: Transform - - uid: 1215 + - uid: 6796 components: - - pos: 28.417616,0.5307963 + - pos: 27.5,-32.5 parent: 31 type: Transform - - uid: 4123 + - uid: 6797 components: - - pos: 50.498375,5.494252 + - pos: 27.5,-33.5 parent: 31 type: Transform -- proto: SheetPlastic - entities: - - uid: 7365 + - uid: 6798 components: - - pos: -17.497349,-18.492687 + - pos: 27.5,-34.5 parent: 31 type: Transform - - uid: 7366 + - uid: 6799 components: - - pos: -17.497349,-18.492687 + - pos: 29.5,-34.5 parent: 31 type: Transform - - uid: 9696 + - uid: 6800 components: - - pos: -1.3660026,-13.487036 + - pos: 29.5,-33.5 parent: 31 type: Transform -- proto: SheetSteel - entities: - - uid: 432 + - uid: 6801 components: - - pos: 29.05824,0.4995463 + - pos: 29.5,-32.5 parent: 31 type: Transform - - uid: 433 + - uid: 6802 components: - - pos: 18.507324,7.4999294 + - pos: 29.5,-30.5 parent: 31 type: Transform - - uid: 435 + - uid: 6803 components: - - pos: 29.05824,0.4995463 + - pos: 29.5,-29.5 parent: 31 type: Transform - - uid: 797 + - uid: 6804 components: - - pos: 29.05824,0.4995463 + - pos: 29.5,-28.5 parent: 31 type: Transform - - uid: 1478 + - uid: 6805 components: - - pos: 49.79525,5.541127 + - pos: 27.5,-28.5 parent: 31 type: Transform - - uid: 2159 + - uid: 6806 components: - - pos: 18.507324,7.4999294 + - pos: 27.5,-29.5 parent: 31 type: Transform - - uid: 4091 + - uid: 6807 components: - - pos: -17.466099,-17.492687 + - pos: 27.5,-30.5 parent: 31 type: Transform - - uid: 4214 + - uid: 8577 components: - - pos: 49.79525,5.541127 + - pos: -40.5,-31.5 parent: 31 type: Transform - - uid: 4717 + - uid: 8578 components: - - pos: -17.466099,-17.492687 + - pos: -40.5,-30.5 parent: 31 type: Transform - - uid: 5310 + - uid: 8579 components: - - pos: 34.365845,15.204987 + - pos: -40.5,-29.5 parent: 31 type: Transform - - uid: 5311 + - uid: 8580 components: - - pos: 33.63147,15.251862 + - pos: -40.5,-27.5 parent: 31 type: Transform - - uid: 8997 + - uid: 8581 components: - - pos: -13.701841,18.488804 + - pos: -40.5,-26.5 parent: 31 type: Transform - - uid: 9694 + - uid: 8582 components: - - pos: -2.6628776,-13.393286 + - pos: -40.5,-25.5 parent: 31 type: Transform -- proto: ShuttersNormal - entities: - - uid: 8904 + - uid: 8583 components: - - pos: 8.5,6.5 + - pos: -42.5,-31.5 parent: 31 type: Transform -- proto: ShuttersNormalOpen - entities: - - uid: 1475 + - uid: 8584 components: - - rot: -1.5707963267948966 rad - pos: 5.5,-10.5 + - pos: -42.5,-29.5 parent: 31 type: Transform - - links: - - 8232 - type: DeviceLinkSink - - uid: 2137 + - uid: 8585 components: - - rot: -1.5707963267948966 rad - pos: 5.5,-11.5 + - pos: -42.5,-30.5 parent: 31 type: Transform - - links: - - 8232 - type: DeviceLinkSink - - uid: 2138 + - uid: 8586 components: - - rot: -1.5707963267948966 rad - pos: 5.5,-8.5 + - pos: -42.5,-27.5 parent: 31 type: Transform - - links: - - 8224 - type: DeviceLinkSink - - uid: 4693 + - uid: 8587 components: - - rot: 1.5707963267948966 rad - pos: -10.5,1.5 + - pos: -42.5,-26.5 parent: 31 type: Transform - - links: - - 4526 - type: DeviceLinkSink - - uid: 4694 + - uid: 8588 components: - - rot: 1.5707963267948966 rad - pos: -10.5,0.5 + - pos: -42.5,-25.5 parent: 31 type: Transform - - links: - - 4526 - type: DeviceLinkSink - - uid: 4695 + - uid: 8589 components: - - rot: 1.5707963267948966 rad - pos: -10.5,-0.5 + - pos: -29.5,-38.5 parent: 31 type: Transform - - links: - - 4526 - type: DeviceLinkSink - - uid: 7629 + - uid: 8590 components: - - rot: -1.5707963267948966 rad - pos: 5.5,-5.5 + - pos: -30.5,-38.5 parent: 31 type: Transform - - links: - - 9115 - type: DeviceLinkSink - - uid: 8767 + - uid: 8591 components: - - pos: -16.5,7.5 + - pos: -31.5,-38.5 parent: 31 type: Transform - - links: - - 8766 - type: DeviceLinkSink - - uid: 8768 + - uid: 8592 components: - - rot: 3.141592653589793 rad - pos: -16.5,6.5 + - pos: -33.5,-38.5 parent: 31 type: Transform - - links: - - 8766 - type: DeviceLinkSink - - uid: 8770 + - uid: 8593 components: - - pos: -13.5,6.5 + - pos: -34.5,-38.5 parent: 31 type: Transform - - links: - - 8774 - type: DeviceLinkSink - - uid: 8771 + - uid: 8594 components: - - pos: -12.5,6.5 + - pos: -35.5,-38.5 parent: 31 type: Transform - - links: - - 8774 - type: DeviceLinkSink - - uid: 8772 + - uid: 8595 components: - - pos: -7.5,6.5 + - pos: -35.5,-36.5 parent: 31 type: Transform - - links: - - 8774 - type: DeviceLinkSink - - uid: 8773 + - uid: 8596 components: - - pos: -8.5,6.5 + - pos: -34.5,-36.5 parent: 31 type: Transform - - links: - - 8774 - type: DeviceLinkSink - - uid: 9116 + - uid: 8597 components: - - rot: -1.5707963267948966 rad - pos: 5.5,-4.5 + - pos: -33.5,-36.5 parent: 31 type: Transform - - links: - - 9115 - type: DeviceLinkSink - - uid: 9122 + - uid: 8598 components: - - rot: -1.5707963267948966 rad - pos: 5.5,-7.5 + - pos: -31.5,-36.5 parent: 31 type: Transform - - links: - - 8224 - type: DeviceLinkSink -- proto: ShuttersRadiationOpen - entities: - - uid: 9551 + - uid: 8599 components: - - pos: 61.5,4.5 + - pos: -30.5,-36.5 parent: 31 type: Transform - - links: - - 9557 - type: DeviceLinkSink - - uid: 9552 + - uid: 8600 components: - - pos: 61.5,3.5 + - pos: -29.5,-36.5 parent: 31 type: Transform - - links: - - 9557 - type: DeviceLinkSink - - uid: 9553 +- proto: SolarTracker + entities: + - uid: 6710 components: - - pos: 61.5,2.5 + - pos: 32.5,-31.5 parent: 31 type: Transform - - links: - - 9557 - type: DeviceLinkSink - - uid: 9554 + - uid: 6711 components: - - pos: 61.5,1.5 + - pos: -38.5,24.5 parent: 31 type: Transform - - links: - - 9557 - type: DeviceLinkSink - - uid: 9555 +- proto: SolidSecretDoor + entities: + - uid: 10710 components: - - pos: 61.5,0.5 + - pos: -32.5,15.5 parent: 31 type: Transform - - links: - - 9557 - type: DeviceLinkSink - - uid: 9556 +- proto: SpaceCash100 + entities: + - uid: 7056 components: - - pos: 61.5,-1.5 + - pos: 35.784645,-15.468033 parent: 31 type: Transform - - links: - - 9557 - type: DeviceLinkSink -- proto: SignalButton +- proto: SpaceCash1000 entities: - - uid: 2515 + - uid: 4585 components: - - pos: 16.5,13.5 - parent: 31 + - flags: InContainer + type: MetaData + - parent: 7057 type: Transform - - linkedPorts: - 1756: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 4526 + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: SpaceCash500 + entities: + - uid: 6892 components: - - pos: -11.5,-2.5 + - pos: -6.962518,29.44575 parent: 31 type: Transform - - linkedPorts: - 4695: - - Pressed: Toggle - 4694: - - Pressed: Toggle - 4693: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 6558 +- proto: SpacemenFigureSpawner + entities: + - uid: 10822 components: - - pos: 49.5,18.5 + - pos: 12.5,-31.5 parent: 31 type: Transform - - uid: 7551 +- proto: SpawnMobAlexander + entities: + - uid: 9917 components: - - pos: -26.5,-13.5 + - pos: -13.5,0.5 parent: 31 type: Transform - - linkedPorts: - 9013: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 7552 +- proto: SpawnMobBandito + entities: + - uid: 2192 components: - - pos: -26.50167,-13.167556 + - pos: -2.5,-28.5 parent: 31 type: Transform - - linkedPorts: - 7536: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 8766 +- proto: SpawnMobCat + entities: + - uid: 6860 components: - - pos: -13.5,12.5 + - pos: 21.5,-9.5 parent: 31 type: Transform - - linkedPorts: - 8767: - - Pressed: Toggle - 8768: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 8774 +- proto: SpawnMobCatFloppa + entities: + - uid: 3678 components: - - pos: -11.5,12.5 + - pos: 49.5,-27.5 parent: 31 type: Transform - - linkedPorts: - 8772: - - Pressed: Toggle - 8773: - - Pressed: Toggle - 8771: - - Pressed: Toggle - 8770: - - Pressed: Toggle - type: DeviceLinkSource -- proto: SignalControlledValve +- proto: SpawnMobCorgi entities: - - uid: 7470 + - uid: 8906 components: - - pos: -17.5,-28.5 + - pos: 9.5,20.5 parent: 31 type: Transform - - links: - - 8850 - type: DeviceLinkSink -- proto: SignalSwitch +- proto: SpawnMobDrone entities: - - uid: 1084 + - uid: 60 components: - - pos: 19.5,18.5 + - pos: 27.5,1.5 parent: 31 type: Transform - - linkedPorts: - 8899: - - On: Forward - - Off: Off - 7550: - - On: Forward - - Off: Off - 1771: - - On: Forward - - Off: Off - 3550: - - On: Forward - - Off: Off - 3387: - - On: Forward - - Off: Off - 3548: - - On: Forward - - Off: Off - 3549: - - On: Forward - - Off: Off - 10095: - - On: Open - - Off: Close - 10089: - - On: Forward - - Off: Off - 10090: - - On: Forward - - Off: Off - 10092: - - On: Forward - - Off: Off - 10091: - - On: Forward - - Off: Off - 10046: - - On: Forward - - Off: Off - 3905: - - On: Open - - Off: Close - 10053: - - On: Forward - - Off: Off - type: DeviceLinkSource - - uid: 7945 + - uid: 99 components: - - pos: 23.5,18.5 + - pos: 28.5,1.5 parent: 31 type: Transform - - linkedPorts: - 10047: - - On: Forward - - Off: Off - 10048: - - On: Forward - - Off: Off - 10049: - - On: Forward - - Off: Off - 10050: - - On: Forward - - Off: Off - 10051: - - On: Forward - - Off: Off - 10052: - - On: Forward - - Off: Off - 10053: - - On: Forward - - Off: Off - 10093: - - On: Forward - - Off: Off - 9139: - - On: Forward - - Off: Off - 9138: - - On: Forward - - Off: Off - 66: - - On: Open - - Off: Close - 10096: - - On: Open - - Off: Close - 10054: - - On: Forward - - Off: Off - 10045: - - On: Forward - - Off: Off - type: DeviceLinkSource - - uid: 8224 + - uid: 644 components: - - pos: 6.5,-9.5 + - pos: 26.5,1.5 parent: 31 type: Transform - - linkedPorts: - 2138: - - On: Open - - Off: Close - 9122: - - On: Open - - Off: Close - type: DeviceLinkSource - - uid: 8225 +- proto: SpawnMobFoxRenault + entities: + - uid: 4294 components: - - pos: -15.5,-23.5 + - pos: 8.5,26.5 parent: 31 type: Transform - - linkedPorts: - 2309: - - On: Open - - Off: Close - 2308: - - On: Open - - Off: Close - type: DeviceLinkSource - - uid: 8232 +- proto: SpawnMobMcGriff + entities: + - uid: 37 components: - - pos: 6.5,-12.5 + - pos: -1.5,8.5 parent: 31 type: Transform - - linkedPorts: - 1475: - - On: Open - - Off: Close - 2137: - - On: Open - - Off: Close - type: DeviceLinkSource - - uid: 8850 +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 10044 components: - - rot: 3.141592653589793 rad - pos: -16.5,-27.5 + - pos: -5.5,-5.5 parent: 31 type: Transform - - linkedPorts: - 7470: - - On: Open - - Off: Close - type: DeviceLinkSource - - type: ItemCooldown - - uid: 9115 +- proto: SpawnMobMouse + entities: + - uid: 7296 components: - - pos: 6.5,-6.5 + - pos: 12.5,-27.5 parent: 31 type: Transform - - linkedPorts: - 7629: - - On: Open - - Off: Close - 9116: - - On: Open - - Off: Close - type: DeviceLinkSource - - uid: 9557 + - uid: 7899 components: - - pos: 60.5,5.5 + - pos: -8.5,-11.5 parent: 31 type: Transform - - linkedPorts: - 9551: - - On: Open - - Off: Close - 9552: - - On: Open - - Off: Close - 9553: - - On: Open - - Off: Close - 9554: - - On: Open - - Off: Close - 9555: - - On: Open - - Off: Close - 9556: - - On: Open - - Off: Close - type: DeviceLinkSource -- proto: SignAnomaly2 - entities: - - uid: 1569 + - uid: 7900 components: - - pos: -10.5,-21.5 + - pos: -20.5,13.5 parent: 31 type: Transform -- proto: SignArmory - entities: - - uid: 1523 + - uid: 7901 components: - - pos: -13.507725,17.439112 + - pos: -2.5,20.5 parent: 31 type: Transform -- proto: SignAtmos - entities: - - uid: 6329 + - uid: 7902 components: - - pos: 31.5,7.5 + - pos: -7.5,-6.5 parent: 31 type: Transform -- proto: SignBar +- proto: SpawnMobPossumMorty entities: - - uid: 5110 + - uid: 7114 components: - - pos: 1.5,2.5 + - pos: 12.5,-15.5 parent: 31 type: Transform -- proto: SignBiohazardMed +- proto: SpawnMobRaccoonMorticia entities: - - uid: 8895 + - uid: 6244 components: - - pos: 16.5,-12.5 + - pos: 26.5,10.5 parent: 31 type: Transform -- proto: SignBridge +- proto: SpawnMobShiva entities: - - uid: 142 + - uid: 8304 components: - - pos: 5.5,22.5 + - pos: -9.5,19.5 parent: 31 type: Transform -- proto: SignCargo +- proto: SpawnMobSlothPaperwork entities: - - uid: 4299 + - uid: 8863 components: - - pos: 12.5,8.5 + - pos: 8.5,-29.5 parent: 31 type: Transform -- proto: SignCargoDock +- proto: SpawnMobSmile entities: - - uid: 5150 + - uid: 6 components: - - pos: 21.5,28.5 + - pos: -4.5,-22.5 parent: 31 type: Transform -- proto: SignChapel +- proto: SpawnMobWalter entities: - - uid: 7694 + - uid: 8862 components: - - pos: -38.5,11.5 + - pos: 17.5,-0.5 parent: 31 type: Transform -- proto: SignChem +- proto: SpawnPointAssistant entities: - - uid: 4889 + - uid: 496 components: - - pos: 18.5,-3.5 + - pos: -28.5,9.5 parent: 31 type: Transform -- proto: SignChemistry2 - entities: - - uid: 7291 + - uid: 4229 components: - - pos: 14.5,2.5 + - pos: -27.5,9.5 parent: 31 type: Transform -- proto: SignCloning - entities: - - uid: 4133 + - uid: 7166 components: - - pos: 10.5,-12.5 + - pos: -25.5,-7.5 parent: 31 type: Transform -- proto: SignConference + - uid: 10141 + components: + - pos: -22.5,-5.5 + parent: 31 + type: Transform +- proto: SpawnPointAtmos entities: - - uid: 1524 + - uid: 9106 components: - - pos: 1.5,26.5 + - pos: 39.5,12.5 parent: 31 type: Transform - - uid: 8704 + - uid: 9107 components: - - pos: -33.5,-25.5 + - pos: 38.5,12.5 parent: 31 type: Transform -- proto: SignCryogenicsMed +- proto: SpawnPointBartender entities: - - uid: 8896 + - uid: 721 components: - - pos: -7.5,-21.5 + - pos: -11.5,-7.5 parent: 31 type: Transform -- proto: SignDangerMed +- proto: SpawnPointBorg entities: - - uid: 4640 + - uid: 11258 components: - - pos: 58.5,5.5 + - pos: -1.5,-29.5 parent: 31 type: Transform - - uid: 4797 + - uid: 11259 components: - - pos: 71.5,11.5 + - pos: -0.5,-29.5 parent: 31 type: Transform - - uid: 9548 +- proto: SpawnPointBotanist + entities: + - uid: 1103 components: - - pos: 71.5,-6.5 + - pos: -16.5,-0.5 parent: 31 type: Transform - - uid: 9549 + - uid: 10827 components: - - pos: 80.5,2.5 + - pos: -20.5,-0.5 parent: 31 type: Transform -- proto: SignDirectionalBridge +- proto: SpawnPointCaptain entities: - - uid: 157 + - uid: 39 components: - - rot: 1.5707963267948966 rad - pos: -21.482899,6.2720566 + - pos: 11.5,24.5 parent: 31 type: Transform - - uid: 1766 +- proto: SpawnPointCargoTechnician + entities: + - uid: 1732 components: - - rot: 3.141592653589793 rad - pos: 1.5,6.5 + - pos: 15.5,11.5 parent: 31 type: Transform - - uid: 7492 + - uid: 1733 components: - - rot: 3.141592653589793 rad - pos: 5.493867,-12.264781 + - pos: 13.5,11.5 parent: 31 type: Transform -- proto: SignDirectionalChapel +- proto: SpawnPointChaplain entities: - - uid: 8239 - components: - - rot: 3.141592653589793 rad - pos: -34.5,11.5 - parent: 31 - type: Transform - - uid: 8917 + - uid: 9875 components: - - rot: -1.5707963267948966 rad - pos: -26.499413,2.2858148 + - pos: -37.5,18.5 parent: 31 type: Transform -- proto: SignDirectionalDorms +- proto: SpawnPointChef entities: - - uid: 8915 + - uid: 1090 components: - - pos: -26.5,2.5 + - pos: -12.5,0.5 parent: 31 type: Transform -- proto: SignDirectionalEng +- proto: SpawnPointChemist entities: - - uid: 141 + - uid: 595 components: - - rot: 1.5707963267948966 rad - pos: 5.5,6.5 + - pos: 17.5,-1.5 parent: 31 type: Transform - - uid: 8842 + - uid: 9741 components: - - rot: 1.5707963267948966 rad - pos: -26.497889,6.7333336 + - pos: 15.5,-0.5 parent: 31 type: Transform -- proto: SignDirectionalEvac +- proto: SpawnPointChiefEngineer entities: - - uid: 2225 + - uid: 4273 components: - - rot: -1.5707963267948966 rad - pos: -21.5,6.5 + - pos: 39.5,-0.5 parent: 31 type: Transform - - uid: 9333 +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 7332 components: - - rot: -1.5707963267948966 rad - pos: 1.494153,6.738206 + - pos: 24.5,-10.5 parent: 31 type: Transform -- proto: SignDirectionalFood +- proto: SpawnPointClown entities: - - uid: 1847 + - uid: 7354 components: - - rot: -1.5707963267948966 rad - pos: -27.5,2.5 + - pos: -18.5,-7.5 parent: 31 type: Transform - - uid: 7477 +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 7147 components: - - rot: -1.5707963267948966 rad - pos: -33.5,16.5 + - pos: 8.5,20.5 parent: 31 type: Transform - - uid: 7684 +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 6845 components: - - rot: 1.5707963267948966 rad - pos: -20.5,2.5 + - pos: -8.5,21.5 parent: 31 type: Transform -- proto: SignDirectionalHydro +- proto: SpawnPointJanitor entities: - - uid: 8916 + - uid: 1320 components: - - rot: 1.5707963267948966 rad - pos: -26.495642,2.7233148 + - pos: -18.5,-11.5 parent: 31 type: Transform -- proto: SignDirectionalMed +- proto: SpawnPointLatejoin entities: - - uid: 7491 + - uid: 9749 components: - - rot: 3.141592653589793 rad - pos: 5.5,-12.5 + - pos: -36.5,-9.5 parent: 31 type: Transform - - uid: 8841 + - uid: 9750 components: - - rot: 1.5707963267948966 rad - pos: -26.5,6.5 + - pos: -36.5,-7.5 parent: 31 type: Transform - - uid: 10118 + - uid: 9751 components: - - rot: 3.141592653589793 rad - pos: 34.5,-20.5 + - pos: -36.5,-6.5 parent: 31 type: Transform -- proto: SignDirectionalSci +- proto: SpawnPointLibrarian entities: - - uid: 1263 + - uid: 7167 components: - - pos: 1.4985528,6.263013 + - pos: 11.5,-30.5 parent: 31 type: Transform -- proto: SignDirectionalSec +- proto: SpawnPointMedicalDoctor entities: - - uid: 7493 + - uid: 733 components: - - rot: 3.141592653589793 rad - pos: 5.493867,-12.749156 + - pos: 22.5,-6.5 parent: 31 type: Transform - - uid: 7795 + - uid: 7910 components: - - rot: 1.5707963267948966 rad - pos: -21.50213,6.729406 + - pos: 23.5,-6.5 parent: 31 type: Transform - - uid: 10272 +- proto: SpawnPointMedicalIntern + entities: + - uid: 541 components: - - rot: 1.5707963267948966 rad - pos: -17.5,15.5 + - pos: 23.5,-5.5 + parent: 31 + type: Transform + - uid: 9102 + components: + - pos: 22.5,-5.5 parent: 31 type: Transform -- proto: SignDirectionalSupply +- proto: SpawnPointMime entities: - - uid: 146 + - uid: 7832 components: - - rot: 1.5707963267948966 rad - pos: 5.498553,6.247388 + - pos: -18.5,-5.5 parent: 31 type: Transform - - uid: 8843 +- proto: SpawnPointMusician + entities: + - uid: 1603 components: - - rot: 1.5707963267948966 rad - pos: -26.497889,6.2645836 + - pos: -18.5,-6.5 parent: 31 type: Transform -- proto: SignDrones +- proto: SpawnPointObserver entities: - - uid: 7224 + - uid: 902 components: - - pos: 26.5,2.5 + - pos: 3.5,4.5 parent: 31 type: Transform -- proto: SignElectricalMed +- proto: SpawnPointParamedic entities: - - uid: 3134 + - uid: 256 components: - - pos: 45.5,6.5 + - pos: 24.5,-5.5 parent: 31 type: Transform -- proto: SignEngineering +- proto: SpawnPointQuartermaster entities: - - uid: 1222 + - uid: 6852 components: - - pos: 30.5,6.5 + - pos: 27.5,9.5 parent: 31 type: Transform -- proto: SignEVA +- proto: SpawnPointResearchAssistant entities: - - uid: 150 + - uid: 10526 components: - - pos: 10.5,6.5 + - pos: -9.5,-19.5 parent: 31 type: Transform -- proto: SignExamroom - entities: - - uid: 530 + - uid: 10527 components: - - pos: 8.5,-9.5 + - pos: -8.5,-19.5 parent: 31 type: Transform -- proto: SignGravity +- proto: SpawnPointResearchDirector entities: - - uid: 147 + - uid: 3385 components: - - pos: 48.5,-1.5 + - pos: -4.5,-23.5 parent: 31 type: Transform -- proto: SignInterrogation +- proto: SpawnPointSalvageSpecialist entities: - - uid: 3835 + - uid: 5917 components: - - rot: 1.5707963267948966 rad - pos: -3.5,11.5 + - pos: 25.5,21.5 parent: 31 type: Transform -- proto: SignLaserMed - entities: - - uid: 8898 + - uid: 10007 components: - - pos: 61.5,-0.5 + - pos: 25.5,19.5 parent: 31 type: Transform -- proto: SignLibrary - entities: - - uid: 4831 + - uid: 10473 components: - - pos: 5.5,-22.5 + - pos: 25.5,20.5 parent: 31 type: Transform -- proto: SignMedical +- proto: SpawnPointScientist entities: - - uid: 4151 + - uid: 8904 components: - - pos: 5.5,2.5 + - pos: -7.5,-22.5 parent: 31 type: Transform -- proto: SignMinerDock - entities: - - uid: 9941 + - uid: 10522 components: - - rot: 3.141592653589793 rad - pos: 34.5,38.5 + - pos: -14.5,-26.5 parent: 31 type: Transform - - uid: 9947 + - uid: 10523 components: - - desc: A sign indicating the miner dock, which is north of here. - type: MetaData - - rot: 3.141592653589793 rad - pos: 28.5,22.5 + - pos: -13.5,-26.5 parent: 31 type: Transform -- proto: SignMorgue +- proto: SpawnPointSecurityCadet entities: - - uid: 4230 + - uid: 9444 components: - - pos: 16.5,-14.5 + - pos: -13.5,16.5 parent: 31 type: Transform -- proto: SignRadiationMed + - uid: 10446 + components: + - pos: -12.5,16.5 + parent: 31 + type: Transform +- proto: SpawnPointSecurityOfficer entities: - - uid: 4638 + - uid: 501 components: - - pos: 54.5,4.5 + - pos: -13.5,14.5 parent: 31 type: Transform - - uid: 4639 + - uid: 4202 components: - - pos: 54.5,0.5 + - pos: -12.5,14.5 parent: 31 type: Transform - - uid: 6583 + - uid: 7905 components: - - pos: 50.5,-1.5 + - pos: -11.5,14.5 parent: 31 type: Transform - - uid: 9550 +- proto: SpawnPointSeniorEngineer + entities: + - uid: 580 components: - - pos: 79.5,11.5 + - pos: 34.5,-0.5 parent: 31 type: Transform - - uid: 9560 +- proto: SpawnPointSeniorOfficer + entities: + - uid: 586 components: - - pos: 62.5,11.5 + - pos: -14.5,14.5 parent: 31 type: Transform - - uid: 9561 +- proto: SpawnPointSeniorPhysician + entities: + - uid: 522 components: - - pos: 80.5,10.5 + - pos: 21.5,-5.5 parent: 31 type: Transform - - uid: 9562 +- proto: SpawnPointSeniorResearcher + entities: + - uid: 10525 components: - - pos: 80.5,-5.5 + - pos: -9.5,-22.5 parent: 31 type: Transform - - uid: 9563 +- proto: SpawnPointServiceWorker + entities: + - uid: 7043 components: - - pos: 79.5,-6.5 + - pos: -13.5,-0.5 parent: 31 type: Transform - - uid: 9564 + - uid: 9099 components: - - pos: 62.5,-6.5 + - pos: -12.5,-0.5 parent: 31 type: Transform - - uid: 9565 +- proto: SpawnPointStationEngineer + entities: + - uid: 4270 components: - - pos: 61.5,-5.5 + - pos: 33.5,-1.5 parent: 31 type: Transform - - uid: 9567 + - uid: 4286 components: - - pos: 61.5,10.5 + - pos: 32.5,-1.5 parent: 31 type: Transform -- proto: SignRND - entities: - - uid: 1057 + - uid: 4288 components: - - pos: -6.5,-21.5 + - pos: 31.5,-1.5 parent: 31 type: Transform -- proto: SignScience +- proto: SpawnPointTechnicalAssistant entities: - - uid: 145 + - uid: 9103 components: - - pos: 0.5,-18.5 + - pos: 32.5,-0.5 parent: 31 type: Transform -- proto: SignScience1 - entities: - - uid: 1561 + - uid: 9104 components: - - pos: -12.5,-21.5 + - pos: 33.5,-0.5 parent: 31 type: Transform -- proto: SignSecurearea +- proto: SpawnPointWarden entities: - - uid: 6812 + - uid: 3145 components: - - rot: 3.141592653589793 rad - pos: -44.5,-10.5 + - pos: -0.5,8.5 parent: 31 type: Transform - - uid: 9395 +- proto: SpawnVehicleSecway + entities: + - uid: 9872 components: - - pos: -44.5,1.5 + - pos: -5.5,16.5 parent: 31 type: Transform - - uid: 9396 +- proto: SpawnVendingMachineRestockFoodDrink + entities: + - uid: 10695 components: - - pos: -44.5,9.5 + - pos: -1.5,-12.5 parent: 31 type: Transform -- proto: SignSpace +- proto: SprayBottleSpaceCleaner entities: - - uid: 8374 + - uid: 626 components: - - pos: -38.5,-10.5 + - pos: -18.66321,-10.23793 parent: 31 type: Transform - - uid: 9237 + - uid: 762 components: - - pos: -40.5,9.5 + - pos: 27.83949,0.7651713 parent: 31 type: Transform - - uid: 9238 + - uid: 2464 components: - - pos: -40.5,1.5 + - pos: 27.855116,0.4995463 parent: 31 type: Transform - - uid: 9473 + - uid: 2494 components: - - pos: -21.5,-31.5 + - pos: 27.83949,0.6557963 parent: 31 type: Transform -- proto: SignToolStorage - entities: - - uid: 158 + - uid: 3115 components: - - pos: -25.5,7.5 + - pos: -18.66321,-10.355925 parent: 31 type: Transform -- proto: SingularityGenerator - entities: - - uid: 4654 + - uid: 9134 components: - - pos: 71.5,2.5 + - pos: 13.175127,-15.438009 parent: 31 type: Transform - - uid: 6470 +- proto: StasisBed + entities: + - uid: 7269 components: - - pos: 38.5,8.5 + - pos: 12.5,-11.5 parent: 31 type: Transform -- proto: Sink +- proto: StationMap entities: - - uid: 638 + - uid: 5837 components: - rot: 1.5707963267948966 rad - pos: 12.5,26.5 + pos: 1.5,0.5 parent: 31 type: Transform - - uid: 2451 + - uid: 7259 components: - - rot: 3.141592653589793 rad - pos: -3.5,-6.5 + - pos: 23.5,6.5 parent: 31 type: Transform - - uid: 7427 + - uid: 8849 components: - rot: -1.5707963267948966 rad - pos: -16.5,-25.5 + pos: -34.5,-9.5 parent: 31 type: Transform - - uid: 8411 + - uid: 10535 components: - - rot: 1.5707963267948966 rad - pos: -7.5,-5.5 + - pos: -14.5,-13.5 parent: 31 type: Transform - - uid: 8907 +- proto: SteelOre1 + entities: + - uid: 10819 components: - - rot: 1.5707963267948966 rad - pos: 21.5,-5.5 + - rot: -1.5707963267948966 rad + pos: 4.0299077,-34.918034 parent: 31 type: Transform -- proto: SinkWide +- proto: Stool entities: - - uid: 7574 + - uid: 1355 components: - - pos: -14.5,1.5 + - rot: -1.5707963267948966 rad + pos: -22.5,-6.5 parent: 31 type: Transform -- proto: Skub - entities: - - uid: 27 + - uid: 1958 components: - - pos: 0.5,-15.5 + - rot: 1.5707963267948966 rad + pos: -24.5,-2.5 parent: 31 type: Transform -- proto: SMESBasic - entities: - - uid: 833 + - uid: 4641 components: - - pos: 58.5,-1.5 + - rot: -1.5707963267948966 rad + pos: 58.5,1.5 parent: 31 type: Transform - - uid: 4340 + - uid: 9580 components: - - pos: -22.5,25.5 + - rot: -1.5707963267948966 rad + pos: -18.5,10.5 parent: 31 type: Transform - - uid: 4453 + - uid: 11227 components: - - pos: 14.5,-28.5 + - rot: -1.5707963267948966 rad + pos: -27.5,-9.5 parent: 31 type: Transform - - uid: 6839 +- proto: StoolBar + entities: + - uid: 873 components: - - pos: 41.5,5.5 + - pos: -2.5,-3.5 parent: 31 type: Transform - - uid: 6916 + - uid: 3407 components: - - pos: 40.5,5.5 + - rot: -1.5707963267948966 rad + pos: -1.5,-6.5 parent: 31 type: Transform - - uid: 6939 + - uid: 4057 components: - - pos: 42.5,5.5 + - rot: -1.5707963267948966 rad + pos: -1.5,-5.5 parent: 31 type: Transform - - uid: 8574 + - uid: 4165 components: - - pos: -30.5,-31.5 + - pos: -3.5,-3.5 parent: 31 type: Transform -- proto: SoapNT - entities: - - uid: 1045 + - uid: 4168 components: - - pos: 12.820141,26.438648 + - pos: -5.5,-3.5 parent: 31 type: Transform -- proto: soda_dispenser - entities: - - uid: 4163 + - uid: 8412 components: - - rot: 3.141592653589793 rad - pos: -4.5,-6.5 + - pos: -6.5,-3.5 parent: 31 type: Transform -- proto: SolarPanel - entities: - - uid: 1695 + - uid: 9877 components: - - pos: -37.5,26.5 + - rot: -1.5707963267948966 rad + pos: -9.5,1.5 parent: 31 type: Transform - - uid: 2537 + - uid: 9920 components: - - pos: -37.5,25.5 + - rot: -1.5707963267948966 rad + pos: -9.5,0.5 parent: 31 type: Transform - - uid: 4339 + - uid: 9921 components: - - pos: 21.5,-27.5 + - rot: -1.5707963267948966 rad + pos: -9.5,-0.5 parent: 31 type: Transform - - uid: 4411 + - uid: 10632 components: - - pos: 29.5,-27.5 + - pos: 43.5,-7.5 parent: 31 type: Transform - - uid: 4415 + - uid: 10633 components: - - pos: 27.5,-35.5 + - pos: 42.5,-7.5 parent: 31 type: Transform - - uid: 4422 +- proto: StorageCanister + entities: + - uid: 1536 components: - - pos: 19.5,-35.5 + - pos: 36.5,9.5 parent: 31 type: Transform - - uid: 4423 + - uid: 1918 components: - - pos: 27.5,-27.5 + - pos: 38.5,23.5 parent: 31 type: Transform - - uid: 4426 + - uid: 8990 components: - - pos: 19.5,-27.5 + - pos: 36.5,10.5 parent: 31 type: Transform - - uid: 4872 + - uid: 11070 components: - - pos: 29.5,-35.5 + - pos: 44.5,23.5 parent: 31 type: Transform - - uid: 4874 +- proto: SubstationBasic + entities: + - uid: 2361 components: - - pos: 21.5,-35.5 + - name: bar substation + type: MetaData + - pos: 0.5,-8.5 parent: 31 type: Transform - - uid: 5017 + - uid: 3587 components: - - pos: -37.5,27.5 + - name: engineering substation + type: MetaData + - pos: 42.5,1.5 parent: 31 type: Transform - - uid: 5018 + - uid: 3588 components: - - pos: -35.5,25.5 + - name: cargo substation + type: MetaData + - pos: 27.5,13.5 parent: 31 type: Transform - - uid: 5019 + - uid: 3856 components: - - pos: -35.5,26.5 + - name: bridge substation + type: MetaData + - pos: 12.5,21.5 parent: 31 type: Transform - - uid: 5020 + - uid: 4427 components: - - pos: -35.5,27.5 + - name: singulo substation + type: MetaData + - pos: 55.5,5.5 parent: 31 type: Transform - - uid: 5021 + - uid: 7689 components: - - pos: -33.5,25.5 + - name: security substation + type: MetaData + - pos: -16.5,16.5 parent: 31 type: Transform - - uid: 5022 + - uid: 8667 components: - - pos: -33.5,26.5 + - name: southwest solars substation + type: MetaData + - pos: -31.5,-31.5 parent: 31 type: Transform - - uid: 5024 + - uid: 9004 components: - - pos: -33.5,27.5 + - name: science substation + type: MetaData + - pos: -11.5,-33.5 parent: 31 type: Transform - - uid: 5037 + - uid: 10025 components: - - pos: -31.5,25.5 + - name: medical substation + type: MetaData + - pos: 21.5,-13.5 parent: 31 type: Transform - - uid: 5129 + - uid: 10237 components: - - pos: -31.5,26.5 + - name: telecomms substation + type: MetaData + - pos: 53.5,-0.5 parent: 31 type: Transform - - uid: 5130 + - uid: 10358 components: - - pos: -31.5,27.5 + - name: dorms substation + type: MetaData + - pos: -26.5,-11.5 parent: 31 type: Transform - - uid: 5131 + - uid: 11206 components: - - pos: -29.5,25.5 + - name: library substation + type: MetaData + - pos: 16.5,-27.5 parent: 31 type: Transform - - uid: 5159 + - uid: 11246 components: - - pos: -29.5,26.5 + - name: evac substation + type: MetaData + - pos: -31.5,7.5 parent: 31 type: Transform - - uid: 5160 +- proto: SuitStorageAtmos + entities: + - uid: 11024 components: - - pos: -29.5,27.5 + - pos: 41.5,11.5 parent: 31 type: Transform - - uid: 5161 + - uid: 11026 components: - - pos: -29.5,23.5 + - pos: 42.5,11.5 parent: 31 type: Transform - - uid: 5162 +- proto: SuitStorageEngi + entities: + - uid: 257 components: - - pos: -29.5,22.5 + - pos: 29.5,-2.5 parent: 31 type: Transform - - uid: 5163 + - uid: 259 components: - - pos: -29.5,21.5 + - pos: 29.5,-3.5 parent: 31 type: Transform - - uid: 5164 + - uid: 8218 components: - - pos: -31.5,23.5 + - pos: 29.5,-4.5 parent: 31 type: Transform - - uid: 5165 +- proto: SuitStorageEVA + entities: + - uid: 1963 components: - - pos: -31.5,22.5 + - pos: 8.5,10.5 parent: 31 type: Transform - - uid: 5166 + - uid: 3417 components: - - pos: -31.5,21.5 + - pos: 10.5,7.5 parent: 31 type: Transform - - uid: 5167 + - uid: 3889 components: - - pos: -33.5,23.5 + - pos: 10.5,8.5 parent: 31 type: Transform - - uid: 5168 + - uid: 7137 components: - - pos: -33.5,22.5 + - pos: 8.5,9.5 parent: 31 type: Transform - - uid: 5169 +- proto: SuitStorageEVAPrisoner + entities: + - uid: 8889 components: - - pos: -33.5,21.5 + - pos: -13.5,11.5 parent: 31 type: Transform - - uid: 5170 +- proto: SuitStorageSec + entities: + - uid: 768 components: - - pos: -35.5,23.5 + - pos: -12.5,21.5 parent: 31 type: Transform - - uid: 5171 + - uid: 1540 components: - - pos: -35.5,22.5 + - pos: -11.5,21.5 parent: 31 type: Transform - - uid: 5172 +- proto: SurveillanceCameraCommand + entities: + - uid: 68 components: - - pos: -35.5,21.5 + - rot: 1.5707963267948966 rad + pos: 4.5,24.5 parent: 31 type: Transform - - uid: 5173 + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge Entrance + type: SurveillanceCamera + - uid: 75 components: - - pos: -37.5,23.5 + - rot: -1.5707963267948966 rad + pos: 7.5,18.5 parent: 31 type: Transform - - uid: 5174 + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: HoP Office + type: SurveillanceCamera + - uid: 540 components: - - pos: -37.5,22.5 + - rot: 1.5707963267948966 rad + pos: -0.5,18.5 parent: 31 type: Transform - - uid: 5175 + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Vault + type: SurveillanceCamera + - uid: 1053 components: - - pos: -37.5,21.5 + - rot: 1.5707963267948966 rad + pos: 5.5,18.5 parent: 31 type: Transform - - uid: 6768 + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: HoP Line + type: SurveillanceCamera + - uid: 2412 components: - - pos: 21.5,-28.5 + - rot: -1.5707963267948966 rad + pos: 6.5,24.5 parent: 31 type: Transform - - uid: 6769 + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Captain's Office + type: SurveillanceCamera + - uid: 4198 + components: + - pos: 11.5,23.5 + parent: 31 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Captain's Room + type: SurveillanceCamera + - uid: 4256 components: - - pos: 21.5,-29.5 + - rot: 1.5707963267948966 rad + pos: 7.5,32.5 parent: 31 type: Transform - - uid: 6770 + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge East + type: SurveillanceCamera + - uid: 4707 components: - - pos: 21.5,-30.5 + - rot: -1.5707963267948966 rad + pos: -2.5,28.5 parent: 31 type: Transform - - uid: 6771 + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge West + type: SurveillanceCamera + - uid: 4891 components: - - pos: 19.5,-30.5 + - rot: 3.141592653589793 rad + pos: 9.5,11.5 parent: 31 type: Transform - - uid: 6772 + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: EVA Supply + type: SurveillanceCamera + - uid: 9146 components: - - pos: 19.5,-29.5 + - pos: -0.5,23.5 parent: 31 type: Transform - - uid: 6773 + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Conference Room + type: SurveillanceCamera +- proto: SurveillanceCameraEngineering + entities: + - uid: 1160 components: - - pos: 19.5,-28.5 + - rot: 1.5707963267948966 rad + pos: 57.5,-9.5 parent: 31 type: Transform - - uid: 6774 + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Secure Telecomms + type: SurveillanceCamera + - uid: 1205 components: - - pos: 19.5,-32.5 + - rot: 1.5707963267948966 rad + pos: 35.5,-1.5 parent: 31 type: Transform - - uid: 6775 + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engineering Locker Room + type: SurveillanceCamera + - uid: 7519 components: - - pos: 19.5,-33.5 + - pos: 58.5,-5.5 parent: 31 type: Transform - - uid: 6776 + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Gravity + type: SurveillanceCamera + - uid: 9149 components: - - pos: 19.5,-34.5 + - rot: 3.141592653589793 rad + pos: 39.5,0.5 parent: 31 type: Transform - - uid: 6777 + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: CE's Office + type: SurveillanceCamera + - uid: 9150 components: - - pos: 21.5,-34.5 + - rot: 3.141592653589793 rad + pos: 41.5,6.5 parent: 31 type: Transform - - uid: 6778 + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: SMES Bank + type: SurveillanceCamera + - uid: 9151 components: - - pos: 21.5,-33.5 + - rot: -1.5707963267948966 rad + pos: 46.5,10.5 parent: 31 type: Transform - - uid: 6779 + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: AME Room + type: SurveillanceCamera + - uid: 9152 components: - - pos: 21.5,-32.5 + - rot: 1.5707963267948966 rad + pos: 41.5,14.5 parent: 31 type: Transform - - uid: 6780 + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmospherics + type: SurveillanceCamera + - uid: 9153 components: - - pos: 23.5,-35.5 + - rot: -1.5707963267948966 rad + pos: 55.5,0.5 parent: 31 type: Transform - - uid: 6781 + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Singulo + type: SurveillanceCamera + - uid: 9155 components: - - pos: 23.5,-34.5 + - rot: 3.141592653589793 rad + pos: 35.5,6.5 parent: 31 type: Transform - - uid: 6782 + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engineering Lobby + type: SurveillanceCamera + - uid: 10481 components: - - pos: 23.5,-33.5 + - rot: -1.5707963267948966 rad + pos: 47.5,-9.5 parent: 31 type: Transform - - uid: 6783 + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Telecomms + type: SurveillanceCamera +- proto: SurveillanceCameraGeneral + entities: + - uid: 727 components: - - pos: 23.5,-32.5 + - rot: 3.141592653589793 rad + pos: 18.5,5.5 parent: 31 type: Transform - - uid: 6784 + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: East Hallway + type: SurveillanceCamera + - uid: 3050 components: - - pos: 25.5,-32.5 + - rot: -1.5707963267948966 rad + pos: -37.5,-8.5 parent: 31 type: Transform - - uid: 6785 + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Arrivals + type: SurveillanceCamera + - uid: 4346 components: - - pos: 25.5,-33.5 + - rot: 1.5707963267948966 rad + pos: -22.5,-1.5 parent: 31 type: Transform - - uid: 6786 + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Upper Dorms + type: SurveillanceCamera + - uid: 4361 components: - - pos: 25.5,-34.5 + - rot: 3.141592653589793 rad + pos: -19.5,5.5 parent: 31 type: Transform - - uid: 6787 + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: West Hallway + type: SurveillanceCamera + - uid: 4433 components: - - pos: 25.5,-35.5 + - rot: 1.5707963267948966 rad + pos: 4.5,0.5 parent: 31 type: Transform - - uid: 6788 + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Medical Hallway + type: SurveillanceCamera + - uid: 4549 components: - - pos: 25.5,-30.5 + - rot: -1.5707963267948966 rad + pos: 2.5,-8.5 parent: 31 type: Transform - - uid: 6789 + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South Hallway + type: SurveillanceCamera + - uid: 6306 components: - - pos: 25.5,-29.5 + - rot: -1.5707963267948966 rad + pos: 2.5,10.5 parent: 31 type: Transform - - uid: 6790 + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: North Hallway + type: SurveillanceCamera + - uid: 6308 components: - - pos: 25.5,-28.5 + - rot: 1.5707963267948966 rad + pos: -34.5,7.5 parent: 31 type: Transform - - uid: 6791 + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Evac camera + type: SurveillanceCamera + - uid: 7289 components: - - pos: 25.5,-27.5 + - rot: 3.141592653589793 rad + pos: -22.5,10.5 parent: 31 type: Transform - - uid: 6792 + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Tool Hall + type: SurveillanceCamera + - uid: 8320 components: - - pos: 23.5,-27.5 + - rot: -1.5707963267948966 rad + pos: 1.5,-18.5 parent: 31 type: Transform - - uid: 6793 + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South Hall + type: SurveillanceCamera + - uid: 8321 components: - - pos: 23.5,-28.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-29.5 parent: 31 type: Transform - - uid: 6794 + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Robotics Hall + type: SurveillanceCamera + - uid: 10998 components: - - pos: 23.5,-29.5 + - rot: 3.141592653589793 rad + pos: -14.5,-14.5 parent: 31 type: Transform - - uid: 6795 + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Science Hall + type: SurveillanceCamera +- proto: SurveillanceCameraMedical + entities: + - uid: 9157 components: - - pos: 23.5,-30.5 + - rot: 3.141592653589793 rad + pos: 8.5,-13.5 parent: 31 type: Transform - - uid: 6796 + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Cloning + type: SurveillanceCamera + - uid: 9158 components: - - pos: 27.5,-32.5 + - pos: 10.5,-11.5 parent: 31 type: Transform - - uid: 6797 + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Medbay Foyer + type: SurveillanceCamera + - uid: 9159 components: - - pos: 27.5,-33.5 + - rot: 1.5707963267948966 rad + pos: 19.5,0.5 parent: 31 type: Transform - - uid: 6798 + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Chemistry + type: SurveillanceCamera + - uid: 9160 components: - - pos: 27.5,-34.5 + - rot: 1.5707963267948966 rad + pos: 19.5,-7.5 parent: 31 type: Transform - - uid: 6799 + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Medbay Labs + type: SurveillanceCamera + - uid: 9161 components: - - pos: 29.5,-34.5 + - rot: 1.5707963267948966 rad + pos: 12.5,-3.5 parent: 31 type: Transform - - uid: 6800 + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Medbay Lobby + type: SurveillanceCamera + - uid: 11008 components: - - pos: 29.5,-33.5 + - pos: 20.5,-17.5 parent: 31 type: Transform - - uid: 6801 + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Surgery + type: SurveillanceCamera + - uid: 11009 components: - - pos: 29.5,-32.5 + - rot: 3.141592653589793 rad + pos: 22.5,-9.5 parent: 31 type: Transform - - uid: 6802 + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Chief Medical Officer's Office + type: SurveillanceCamera +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 8414 components: - - pos: 29.5,-30.5 + - pos: 57.5,-7.5 parent: 31 type: Transform - - uid: 6803 +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 6289 components: - - pos: 29.5,-29.5 + - pos: 48.5,-7.5 parent: 31 type: Transform - - uid: 6804 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 6303 components: - - pos: 29.5,-28.5 + - pos: 10.5,9.5 parent: 31 type: Transform - - uid: 6805 + - uid: 8124 components: - - pos: 27.5,-28.5 + - pos: 48.5,-9.5 parent: 31 type: Transform - - uid: 6806 +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 5713 components: - - pos: 27.5,-29.5 + - pos: 48.5,-11.5 parent: 31 type: Transform - - uid: 6807 +- proto: SurveillanceCameraRouterScience + entities: + - uid: 8137 components: - - pos: 27.5,-30.5 + - pos: 52.5,-11.5 parent: 31 type: Transform - - uid: 8577 +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 3113 components: - - pos: -40.5,-31.5 + - pos: 57.5,-11.5 parent: 31 type: Transform - - uid: 8578 +- proto: SurveillanceCameraRouterService + entities: + - uid: 4910 components: - - pos: -40.5,-30.5 + - pos: 25.5,1.5 parent: 31 type: Transform - - uid: 8579 + - uid: 8524 components: - - pos: -40.5,-29.5 + - pos: 52.5,-9.5 parent: 31 type: Transform - - uid: 8580 +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 4464 components: - - pos: -40.5,-27.5 + - pos: 52.5,-7.5 parent: 31 type: Transform - - uid: 8581 +- proto: SurveillanceCameraScience + entities: + - uid: 7372 components: - - pos: -40.5,-26.5 + - rot: -1.5707963267948966 rad + pos: -11.5,-28.5 parent: 31 type: Transform - - uid: 8582 + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Central Lab + type: SurveillanceCamera + - uid: 10541 components: - - pos: -40.5,-25.5 + - rot: 3.141592653589793 rad + pos: -4.5,-19.5 parent: 31 type: Transform - - uid: 8583 + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Research Director's Office + type: SurveillanceCamera + - uid: 10549 components: - - pos: -42.5,-31.5 + - rot: 1.5707963267948966 rad + pos: 0.5,-30.5 parent: 31 type: Transform - - uid: 8584 + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Robotics + type: SurveillanceCamera + - uid: 10550 components: - - pos: -42.5,-29.5 + - rot: 3.141592653589793 rad + pos: -9.5,-18.5 parent: 31 type: Transform - - uid: 8585 + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Break Room + type: SurveillanceCamera + - uid: 10551 components: - - pos: -42.5,-30.5 + - rot: -1.5707963267948966 rad + pos: -17.5,-23.5 parent: 31 type: Transform - - uid: 8586 + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Front Room + type: SurveillanceCamera +- proto: SurveillanceCameraSecurity + entities: + - uid: 6568 components: - - pos: -42.5,-27.5 + - rot: 3.141592653589793 rad + pos: -10.5,11.5 parent: 31 type: Transform - - uid: 8587 + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security Cell Block + type: SurveillanceCamera + - uid: 7170 components: - - pos: -42.5,-26.5 + - rot: 3.141592653589793 rad + pos: -12.5,21.5 parent: 31 type: Transform - - uid: 8588 + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Armory + type: SurveillanceCamera + - uid: 7410 components: - - pos: -42.5,-25.5 + - rot: 1.5707963267948966 rad + pos: 0.5,7.5 parent: 31 type: Transform - - uid: 8589 + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Warden's Office + type: SurveillanceCamera + - uid: 9147 components: - - pos: -29.5,-38.5 + - rot: 3.141592653589793 rad + pos: -16.5,11.5 parent: 31 type: Transform - - uid: 8590 + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma Brig + type: SurveillanceCamera +- proto: SurveillanceCameraService + entities: + - uid: 4555 components: - - pos: -30.5,-38.5 + - rot: 3.141592653589793 rad + pos: 9.5,-22.5 parent: 31 type: Transform - - uid: 8591 + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Library + type: SurveillanceCamera + - uid: 4706 components: - - pos: -31.5,-38.5 + - rot: 1.5707963267948966 rad + pos: 0.5,-3.5 parent: 31 type: Transform - - uid: 8592 + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Bar + type: SurveillanceCamera +- proto: SurveillanceCameraSupply + entities: + - uid: 4575 components: - - pos: -33.5,-38.5 + - rot: 3.141592653589793 rad + pos: 16.5,12.5 parent: 31 type: Transform - - uid: 8593 + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo Request Room + type: SurveillanceCamera + - uid: 4576 components: - - pos: -34.5,-38.5 + - rot: 1.5707963267948966 rad + pos: 24.5,13.5 parent: 31 type: Transform - - uid: 8594 + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo Supply Room + type: SurveillanceCamera + - uid: 4690 components: - - pos: -35.5,-38.5 + - rot: 3.141592653589793 rad + pos: 19.5,17.5 parent: 31 type: Transform - - uid: 8595 + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Salvage Magnet + type: SurveillanceCamera +- proto: SynthesizerInstrument + entities: + - uid: 7966 components: - - pos: -35.5,-36.5 + - rot: -1.5707963267948966 rad + pos: -19.464506,-6.545539 parent: 31 type: Transform - - uid: 8596 +- proto: Syringe + entities: + - uid: 10806 components: - - pos: -34.5,-36.5 + - pos: 15.970788,-6.397341 parent: 31 type: Transform - - uid: 8597 + - uid: 10808 components: - - pos: -33.5,-36.5 + - pos: 15.852729,-6.338344 parent: 31 type: Transform - - uid: 8598 +- proto: Table + entities: + - uid: 206 components: - - pos: -31.5,-36.5 + - pos: -5.5,-32.5 parent: 31 type: Transform - - uid: 8599 + - uid: 211 components: - - pos: -30.5,-36.5 + - pos: -4.5,-32.5 parent: 31 type: Transform - - uid: 8600 + - uid: 431 components: - - pos: -29.5,-36.5 + - pos: 25.5,0.5 parent: 31 type: Transform -- proto: SolarTracker - entities: - - uid: 6710 + - uid: 631 components: - - pos: 32.5,-31.5 + - rot: 3.141592653589793 rad + pos: -17.5,11.5 parent: 31 type: Transform - - uid: 6711 + - uid: 765 components: - - pos: -38.5,24.5 + - pos: -3.5,18.5 parent: 31 type: Transform -- proto: SpaceCash100 - entities: - - uid: 7056 + - uid: 817 components: - - pos: 35.784645,-15.468033 + - pos: 50.5,4.5 parent: 31 type: Transform -- proto: SpaceCash1000 - entities: - - uid: 4585 - components: - - flags: InContainer - type: MetaData - - parent: 7057 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: SpawnMobAlexander - entities: - - uid: 9917 + - uid: 864 components: - - pos: -13.5,0.5 + - rot: -1.5707963267948966 rad + pos: -2.5,-31.5 parent: 31 type: Transform -- proto: SpawnMobBandito - entities: - - uid: 8864 + - uid: 894 components: - - pos: -3.5,-14.5 + - pos: -14.5,-0.5 parent: 31 type: Transform -- proto: SpawnMobCat - entities: - - uid: 5132 + - uid: 895 components: - - pos: 21.5,-14.5 + - pos: -14.5,-1.5 parent: 31 type: Transform -- proto: SpawnMobCatFloppa - entities: - - uid: 8051 + - uid: 976 components: - - pos: 48.5,-24.5 + - pos: 15.5,16.5 parent: 31 type: Transform -- proto: SpawnMobCorgi - entities: - - uid: 8906 + - uid: 1087 components: - - pos: 9.5,20.5 + - pos: 6.5,-11.5 parent: 31 type: Transform -- proto: SpawnMobDrone - entities: - - uid: 60 + - uid: 1146 components: - - pos: 27.5,1.5 + - pos: 21.5,-4.5 parent: 31 type: Transform - - uid: 99 + - uid: 1155 components: - - pos: 28.5,1.5 + - pos: 16.5,16.5 parent: 31 type: Transform - - uid: 644 + - uid: 1217 components: - - pos: 26.5,1.5 + - pos: 49.5,5.5 parent: 31 type: Transform -- proto: SpawnMobFoxRenault - entities: - - uid: 4294 + - uid: 1219 components: - - pos: 8.5,26.5 + - pos: 50.5,5.5 parent: 31 type: Transform -- proto: SpawnMobMcGriff - entities: - - uid: 37 + - uid: 1235 components: - - pos: -1.5,8.5 + - pos: -29.5,9.5 parent: 31 type: Transform -- proto: SpawnMobMonkeyPunpun - entities: - - uid: 10044 + - uid: 1236 components: - - pos: -5.5,-5.5 + - pos: -29.5,8.5 parent: 31 type: Transform -- proto: SpawnMobMouse - entities: - - uid: 7296 + - uid: 1247 components: - - pos: 12.5,-27.5 + - pos: 45.5,-20.5 parent: 31 type: Transform - - uid: 7899 + - uid: 1304 components: - - pos: -8.5,-11.5 + - pos: -15.5,11.5 parent: 31 type: Transform - - uid: 7900 + - uid: 1442 components: - - pos: -20.5,13.5 + - rot: -1.5707963267948966 rad + pos: -16.5,-25.5 parent: 31 type: Transform - - uid: 7901 + - uid: 1752 components: - - pos: -2.5,20.5 + - pos: 29.5,0.5 parent: 31 type: Transform - - uid: 7902 + - uid: 1753 components: - - pos: -7.5,-6.5 + - pos: 29.5,1.5 parent: 31 type: Transform -- proto: SpawnMobPossumMorty - entities: - - uid: 90 + - uid: 1780 components: - - pos: 14.5,-15.5 + - pos: -17.5,-22.5 parent: 31 type: Transform -- proto: SpawnMobRaccoonMorticia - entities: - - uid: 6244 + - uid: 1877 components: - - pos: 26.5,10.5 + - pos: -10.5,7.5 parent: 31 type: Transform -- proto: SpawnMobShiva - entities: - - uid: 8304 + - uid: 2002 components: - - pos: -9.5,19.5 + - rot: 3.141592653589793 rad + pos: -4.5,14.5 parent: 31 type: Transform -- proto: SpawnMobSlothPaperwork - entities: - - uid: 8863 + - uid: 2175 components: - - pos: 8.5,-29.5 + - pos: 12.5,-4.5 parent: 31 type: Transform -- proto: SpawnMobWalter - entities: - - uid: 8862 + - uid: 2261 components: - - pos: 17.5,-0.5 + - pos: -17.5,-23.5 parent: 31 type: Transform -- proto: SpawnPointAssistant - entities: - - uid: 496 + - uid: 2317 components: - - pos: -28.5,9.5 + - rot: 3.141592653589793 rad + pos: -11.5,-21.5 parent: 31 type: Transform - - uid: 4229 + - uid: 2321 components: - - pos: -27.5,9.5 + - pos: -8.5,-18.5 parent: 31 type: Transform -- proto: SpawnPointAtmos - entities: - - uid: 9106 + - uid: 2360 components: - - pos: 39.5,12.5 + - pos: -4.5,-6.5 parent: 31 type: Transform - - uid: 9107 + - uid: 2403 components: - - pos: 38.5,12.5 + - pos: -29.5,7.5 parent: 31 type: Transform -- proto: SpawnPointBartender - entities: - - uid: 721 + - uid: 2413 components: - - pos: -11.5,-7.5 + - pos: -2.5,18.5 parent: 31 type: Transform -- proto: SpawnPointBotanist - entities: - - uid: 1103 + - uid: 2428 components: - - pos: -16.5,-0.5 + - rot: 3.141592653589793 rad + pos: -11.5,-22.5 parent: 31 type: Transform -- proto: SpawnPointCaptain - entities: - - uid: 39 + - uid: 2434 components: - - pos: 11.5,24.5 + - rot: 3.141592653589793 rad + pos: -30.5,-9.5 parent: 31 type: Transform -- proto: SpawnPointCargoTechnician - entities: - - uid: 1732 + - uid: 2455 components: - - pos: 15.5,11.5 + - pos: 19.5,-9.5 parent: 31 type: Transform - - uid: 1733 + - uid: 2504 components: - - pos: 13.5,11.5 + - rot: -1.5707963267948966 rad + pos: -17.5,-25.5 parent: 31 type: Transform -- proto: SpawnPointChaplain - entities: - - uid: 8295 + - uid: 2505 components: - - pos: -32.5,17.5 + - rot: -1.5707963267948966 rad + pos: -17.5,-26.5 parent: 31 type: Transform -- proto: SpawnPointChef - entities: - - uid: 1090 + - uid: 2670 components: - - pos: -12.5,0.5 + - pos: -2.5,7.5 parent: 31 type: Transform -- proto: SpawnPointChemist - entities: - - uid: 595 + - uid: 2716 components: - - pos: 17.5,-1.5 + - pos: 19.5,-8.5 parent: 31 type: Transform - - uid: 9741 + - uid: 2807 components: - - pos: 15.5,-0.5 + - pos: -48.5,-9.5 parent: 31 type: Transform -- proto: SpawnPointChiefEngineer - entities: - - uid: 4273 + - uid: 3106 components: - - pos: 39.5,-0.5 + - pos: -12.5,11.5 parent: 31 type: Transform -- proto: SpawnPointChiefMedicalOfficer - entities: - - uid: 737 + - uid: 3109 components: - - pos: 23.5,-14.5 + - pos: 56.5,8.5 parent: 31 type: Transform -- proto: SpawnPointClown - entities: - - uid: 7344 + - uid: 3138 components: - - pos: -19.5,-8.5 + - rot: 3.141592653589793 rad + pos: -4.5,12.5 parent: 31 type: Transform -- proto: SpawnPointHeadOfPersonnel - entities: - - uid: 7147 + - uid: 3733 components: - - pos: 8.5,20.5 + - rot: -1.5707963267948966 rad + pos: -6.5,-14.5 parent: 31 type: Transform -- proto: SpawnPointHeadOfSecurity - entities: - - uid: 4888 + - uid: 4112 components: - - pos: -9.5,20.5 + - pos: 26.5,0.5 parent: 31 type: Transform -- proto: SpawnPointJanitor - entities: - - uid: 719 + - uid: 4128 components: - - pos: -20.5,9.5 + - pos: -19.5,-2.5 parent: 31 type: Transform -- proto: SpawnPointLatejoin - entities: - - uid: 9749 + - uid: 4190 components: - - pos: -36.5,-9.5 + - pos: -1.5,16.5 parent: 31 type: Transform - - uid: 9750 + - uid: 4203 components: - - pos: -36.5,-7.5 + - pos: 22.5,12.5 parent: 31 type: Transform - - uid: 9751 + - uid: 4222 components: - - pos: -36.5,-6.5 + - pos: 22.5,13.5 parent: 31 type: Transform -- proto: SpawnPointLawyer - entities: - - uid: 5220 + - uid: 4240 components: - - pos: -4.5,10.5 + - pos: 19.5,7.5 parent: 31 type: Transform - - uid: 7422 + - uid: 4260 components: - - pos: -5.5,10.5 + - pos: 55.5,8.5 parent: 31 type: Transform -- proto: SpawnPointLibrarian - entities: - - uid: 7167 + - uid: 4466 components: - - pos: 11.5,-30.5 + - pos: 18.5,7.5 parent: 31 type: Transform -- proto: SpawnPointMedicalDoctor - entities: - - uid: 733 + - uid: 4826 components: - - pos: 22.5,-6.5 + - rot: -1.5707963267948966 rad + pos: 17.5,-18.5 parent: 31 type: Transform - - uid: 7910 + - uid: 4860 components: - - pos: 23.5,-6.5 + - pos: -10.5,-6.5 parent: 31 type: Transform -- proto: SpawnPointMedicalIntern - entities: - - uid: 541 + - uid: 4904 components: - - pos: 23.5,-5.5 + - pos: 12.5,-5.5 parent: 31 type: Transform - - uid: 9102 + - uid: 4920 components: - - pos: 22.5,-5.5 + - pos: -3.5,17.5 parent: 31 type: Transform -- proto: SpawnPointMime - entities: - - uid: 7343 + - uid: 4927 components: - - pos: -17.5,-8.5 + - rot: 3.141592653589793 rad + pos: -16.5,11.5 parent: 31 type: Transform -- proto: SpawnPointMusician - entities: - - uid: 7345 + - uid: 5089 components: - - pos: -18.5,-8.5 + - pos: 27.5,0.5 parent: 31 type: Transform -- proto: SpawnPointObserver - entities: - - uid: 902 + - uid: 5112 components: - - pos: 3.5,4.5 + - pos: 28.5,0.5 parent: 31 type: Transform -- proto: SpawnPointParamedic - entities: - - uid: 256 + - uid: 5727 components: - - pos: 24.5,-5.5 + - rot: 3.141592653589793 rad + pos: -4.5,13.5 parent: 31 type: Transform -- proto: SpawnPointQuartermaster - entities: - - uid: 6241 + - uid: 5754 components: - - pos: 27.5,9.5 + - pos: -11.5,11.5 parent: 31 type: Transform -- proto: SpawnPointResearchAssistant - entities: - - uid: 777 + - uid: 6019 components: - - pos: -2.5,-15.5 + - pos: -7.5,-18.5 parent: 31 type: Transform - - uid: 9737 + - uid: 6020 components: - - pos: -3.5,-15.5 + - pos: -3.5,16.5 parent: 31 type: Transform -- proto: SpawnPointResearchDirector - entities: - - uid: 1086 + - uid: 6183 components: - - pos: -5.5,-23.5 + - pos: 6.5,9.5 parent: 31 type: Transform -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 137 + - uid: 6250 components: - - pos: 27.5,16.5 + - pos: 13.5,12.5 parent: 31 type: Transform - - uid: 2201 + - uid: 6256 components: - - pos: 27.5,17.5 + - pos: 32.5,-3.5 parent: 31 type: Transform - - uid: 9948 + - uid: 6257 components: - - pos: 27.5,15.5 + - pos: 32.5,-2.5 parent: 31 type: Transform -- proto: SpawnPointScientist - entities: - - uid: 723 + - uid: 6570 components: - - pos: -8.5,-19.5 + - pos: 6.5,10.5 parent: 31 type: Transform - - uid: 724 + - uid: 7093 components: - - pos: -9.5,-19.5 + - pos: 15.5,8.5 parent: 31 type: Transform - - uid: 4868 + - uid: 7103 components: - - pos: -7.5,-19.5 + - pos: -9.5,-18.5 parent: 31 type: Transform -- proto: SpawnPointSecurityCadet - entities: - - uid: 9100 + - uid: 7123 components: - - pos: -11.5,15.5 + - pos: 14.5,-15.5 parent: 31 type: Transform - - uid: 9101 + - uid: 7124 components: - - pos: -11.5,14.5 + - pos: 13.5,-15.5 parent: 31 type: Transform -- proto: SpawnPointSecurityOfficer - entities: - - uid: 501 + - uid: 7134 components: - - pos: -13.5,14.5 + - pos: 48.5,5.5 parent: 31 type: Transform - - uid: 1023 + - uid: 7172 components: - - pos: -12.5,15.5 + - pos: 18.5,8.5 parent: 31 type: Transform - - uid: 4202 + - uid: 7245 components: - - pos: -12.5,14.5 + - pos: 22.5,-4.5 parent: 31 type: Transform -- proto: SpawnPointSeniorEngineer - entities: - - uid: 580 + - uid: 7353 components: - - pos: 34.5,-0.5 + - rot: 1.5707963267948966 rad + pos: -19.5,-6.5 parent: 31 type: Transform -- proto: SpawnPointSeniorOfficer - entities: - - uid: 586 + - uid: 7564 components: - - pos: -14.5,14.5 + - pos: -15.5,-11.5 parent: 31 type: Transform -- proto: SpawnPointSeniorPhysician - entities: - - uid: 522 + - uid: 7565 components: - - pos: 21.5,-5.5 + - pos: -15.5,-10.5 parent: 31 type: Transform -- proto: SpawnPointSeniorResearcher - entities: - - uid: 821 + - uid: 7573 components: - - pos: -2.5,-14.5 + - pos: 7.5,-13.5 parent: 31 type: Transform -- proto: SpawnPointServiceWorker - entities: - - uid: 7043 + - uid: 7597 components: - - pos: -13.5,-0.5 + - rot: -1.5707963267948966 rad + pos: 18.5,-18.5 parent: 31 type: Transform - - uid: 9099 + - uid: 7599 components: - - pos: -12.5,-0.5 + - pos: -5.5,-28.5 parent: 31 type: Transform -- proto: SpawnPointStationEngineer - entities: - - uid: 4270 + - uid: 7626 components: - - pos: 33.5,-1.5 + - rot: -1.5707963267948966 rad + pos: 19.5,-18.5 parent: 31 type: Transform - - uid: 4286 + - uid: 7815 components: - - pos: 32.5,-1.5 + - pos: 6.5,-7.5 parent: 31 type: Transform - - uid: 4288 + - uid: 7835 components: - - pos: 31.5,-1.5 + - pos: -26.5,19.5 parent: 31 type: Transform -- proto: SpawnPointTechnicalAssistant - entities: - - uid: 9103 + - uid: 7836 components: - - pos: 32.5,-0.5 + - pos: -26.5,20.5 parent: 31 type: Transform - - uid: 9104 + - uid: 7847 components: - - pos: 33.5,-0.5 + - pos: -13.5,24.5 parent: 31 type: Transform -- proto: SpawnPointWarden - entities: - - uid: 3145 + - uid: 8206 components: - - pos: -0.5,8.5 + - pos: -4.5,-31.5 parent: 31 type: Transform -- proto: SpawnVehicleJanicart - entities: - - uid: 9118 + - uid: 8223 components: - - pos: -19.5,8.5 + - pos: -6.5,-28.5 parent: 31 type: Transform -- proto: SpawnVehicleSecway - entities: - - uid: 8344 + - uid: 8307 components: - - pos: -9.5,14.5 + - rot: 3.141592653589793 rad + pos: -2.5,8.5 parent: 31 type: Transform - - uid: 8345 + - uid: 8324 components: - - pos: -9.5,13.5 + - pos: -10.5,-31.5 parent: 31 type: Transform -- proto: SprayBottleSpaceCleaner - entities: - - uid: 514 + - uid: 8345 components: - - pos: -20.615946,7.58842 + - pos: -0.5,16.5 parent: 31 type: Transform - - uid: 762 + - uid: 8413 components: - - pos: 27.83949,0.7651713 + - pos: -5.5,-6.5 parent: 31 type: Transform - - uid: 2464 + - uid: 8496 components: - - pos: 27.855116,0.4995463 + - rot: 3.141592653589793 rad + pos: -3.5,12.5 parent: 31 type: Transform - - uid: 2494 + - uid: 8559 components: - - pos: 27.83949,0.6557963 + - pos: 1.5,-26.5 parent: 31 type: Transform - - uid: 4225 + - uid: 8784 components: - - pos: -20.5,7.5 + - pos: 14.5,12.5 parent: 31 type: Transform - - uid: 7117 + - uid: 8807 components: - - pos: 13.1994,-13.460948 + - pos: -2.5,30.5 parent: 31 type: Transform -- proto: StationMap - entities: - - uid: 5837 + - uid: 8853 components: - - rot: 1.5707963267948966 rad - pos: 1.5,0.5 + - pos: 31.5,6.5 parent: 31 type: Transform - - uid: 7259 + - uid: 8900 components: - - pos: 23.5,6.5 + - pos: 40.5,4.5 parent: 31 type: Transform - - uid: 8849 + - uid: 9003 components: - - rot: -1.5707963267948966 rad - pos: -34.5,-9.5 + - pos: -20.5,-2.5 parent: 31 type: Transform -- proto: Stool - entities: - - uid: 1355 + - uid: 9006 components: - - rot: -1.5707963267948966 rad - pos: -22.5,-6.5 + - pos: -11.5,-31.5 parent: 31 type: Transform - - uid: 1958 + - uid: 9069 components: - - rot: 1.5707963267948966 rad - pos: -24.5,-2.5 + - pos: 18.5,16.5 parent: 31 type: Transform - - uid: 4641 + - uid: 9070 components: - - rot: -1.5707963267948966 rad - pos: 58.5,1.5 + - pos: 18.5,17.5 parent: 31 type: Transform - - uid: 7438 + - uid: 9165 components: - - rot: 3.141592653589793 rad - pos: -19.5,-5.5 + - pos: -6.5,26.5 parent: 31 type: Transform -- proto: StoolBar - entities: - - uid: 824 + - uid: 9198 components: - - rot: -1.5707963267948966 rad - pos: -1.5,-4.5 + - rot: 1.5707963267948966 rad + pos: -19.5,-7.5 parent: 31 type: Transform - - uid: 873 + - uid: 9507 components: - - pos: -2.5,-3.5 + - rot: 1.5707963267948966 rad + pos: -19.5,-5.5 parent: 31 type: Transform - - uid: 3407 + - uid: 9510 components: - - rot: -1.5707963267948966 rad - pos: -1.5,-6.5 + - pos: 45.5,-2.5 parent: 31 type: Transform - - uid: 4057 + - uid: 9529 components: - - rot: -1.5707963267948966 rad - pos: -1.5,-5.5 + - pos: 34.5,0.5 parent: 31 type: Transform - - uid: 4165 + - uid: 9795 components: - - pos: -3.5,-3.5 + - pos: -4.5,-39.5 parent: 31 type: Transform - - uid: 4168 + - uid: 9797 components: - - pos: -5.5,-3.5 + - pos: -3.5,-39.5 parent: 31 type: Transform - - uid: 4179 + - uid: 10140 components: - - pos: -4.5,-3.5 + - pos: 49.5,-5.5 parent: 31 type: Transform - - uid: 8412 + - uid: 10223 components: - - pos: -6.5,-3.5 + - pos: 48.5,-5.5 parent: 31 type: Transform - - uid: 9877 + - uid: 10275 components: - - rot: -1.5707963267948966 rad - pos: -9.5,1.5 + - pos: -32.5,-15.5 parent: 31 type: Transform - - uid: 9920 + - uid: 10276 components: - - rot: -1.5707963267948966 rad - pos: -9.5,0.5 + - pos: -31.5,-15.5 parent: 31 type: Transform - - uid: 9921 + - uid: 10324 components: - - rot: -1.5707963267948966 rad - pos: -9.5,-0.5 + - pos: -16.5,-14.5 parent: 31 type: Transform -- proto: StorageCanister - entities: - - uid: 1111 + - uid: 10418 components: - - pos: 42.5,23.5 + - pos: 0.5,-27.5 parent: 31 type: Transform - - uid: 1536 + - uid: 10421 components: - - pos: 36.5,9.5 + - pos: -0.5,-27.5 parent: 31 type: Transform - - uid: 2328 + - uid: 10542 components: - - pos: 36.5,23.5 + - pos: -7.5,26.5 parent: 31 type: Transform - - uid: 8990 + - uid: 10582 components: - - pos: 36.5,10.5 + - rot: 3.141592653589793 rad + pos: -29.5,-9.5 parent: 31 type: Transform -- proto: Stunbaton - entities: - - uid: 4228 + - uid: 10642 components: - - pos: -13.49244,16.073444 + - pos: 43.5,-13.5 parent: 31 type: Transform - - containers: - cell_slot: !type:ContainerSlot {} - type: ContainerContainer - - uid: 4704 + - uid: 10643 components: - - pos: -13.49244,15.948444 + - pos: 44.5,-13.5 parent: 31 type: Transform - - containers: - cell_slot: !type:ContainerSlot {} - type: ContainerContainer - - uid: 4705 + - uid: 10693 components: - - pos: -13.539315,16.12032 + - pos: -1.5,-12.5 parent: 31 type: Transform - - containers: - cell_slot: !type:ContainerSlot {} - type: ContainerContainer -- proto: SubstationBasic - entities: - - uid: 2361 + - uid: 10694 components: - - pos: 0.5,-8.5 + - pos: -0.5,-12.5 parent: 31 type: Transform - - uid: 3354 + - uid: 10758 components: - - pos: 14.5,-25.5 + - pos: -47.5,-9.5 parent: 31 type: Transform - - uid: 3587 + - uid: 10792 components: - - pos: 42.5,1.5 + - pos: 45.5,-21.5 parent: 31 type: Transform - - uid: 3588 + - uid: 11078 components: - - pos: 27.5,13.5 + - pos: 46.5,-2.5 parent: 31 type: Transform - - uid: 3590 + - uid: 11120 components: - - pos: 21.5,-9.5 + - pos: -7.5,28.5 parent: 31 type: Transform - - uid: 3592 + - uid: 11121 components: - - pos: -0.5,-22.5 + - pos: -7.5,29.5 parent: 31 type: Transform - - uid: 3595 + - uid: 11122 components: - - pos: -21.5,-10.5 + - pos: -6.5,29.5 parent: 31 type: Transform - - uid: 3596 +- proto: TableCarpet + entities: + - uid: 2422 components: - - pos: -32.5,7.5 + - pos: 0.5,-5.5 parent: 31 type: Transform - - uid: 3856 + - uid: 3844 components: - - pos: 12.5,21.5 + - rot: 3.141592653589793 rad + pos: -21.5,9.5 parent: 31 type: Transform - - uid: 7689 + - uid: 4148 components: - - pos: -16.5,16.5 + - pos: 11.5,-23.5 parent: 31 type: Transform - - uid: 8120 + - uid: 4166 components: - - pos: 59.5,-1.5 + - pos: -1.5,1.5 parent: 31 type: Transform - - uid: 8667 + - uid: 4250 components: - - pos: -31.5,-31.5 + - pos: 10.5,-24.5 parent: 31 type: Transform - - uid: 10225 + - uid: 4777 components: - - pos: -8.5,27.5 + - pos: 10.5,-23.5 parent: 31 type: Transform -- proto: SuitStorageAtmos - entities: - - uid: 2145 + - uid: 5792 components: - - pos: 30.5,15.5 + - pos: 11.5,-24.5 parent: 31 type: Transform - - uid: 4140 + - uid: 8318 components: - - pos: 30.5,16.5 + - rot: 3.141592653589793 rad + pos: -22.5,9.5 parent: 31 type: Transform -- proto: SuitStorageCaptain - entities: - - uid: 8420 + - uid: 8724 components: - - pos: 11.5,23.5 + - pos: -36.5,-29.5 parent: 31 type: Transform -- proto: SuitStorageCE +- proto: TableCounterWood entities: - - uid: 4315 + - uid: 2006 components: - - pos: 37.5,0.5 + - pos: 7.5,1.5 parent: 31 type: Transform -- proto: SuitStorageCMO - entities: - - uid: 263 + - uid: 2521 components: - - pos: 21.5,-15.5 + - pos: 11.5,1.5 parent: 31 type: Transform -- proto: SuitStorageEngi - entities: - - uid: 257 + - uid: 10620 components: - - pos: 29.5,-2.5 + - rot: 1.5707963267948966 rad + pos: 41.5,-8.5 parent: 31 type: Transform - - uid: 259 + - uid: 10621 components: - - pos: 29.5,-3.5 + - rot: 1.5707963267948966 rad + pos: 42.5,-8.5 parent: 31 type: Transform - - uid: 8218 + - uid: 10622 components: - - pos: 29.5,-4.5 + - rot: 1.5707963267948966 rad + pos: 43.5,-8.5 parent: 31 type: Transform -- proto: SuitStorageEVA +- proto: TableGlass entities: - - uid: 1963 + - uid: 1104 components: - - pos: 8.5,10.5 + - pos: 5.5,21.5 parent: 31 type: Transform - - uid: 3417 + - uid: 4045 components: - - pos: 10.5,7.5 + - rot: -1.5707963267948966 rad + pos: 22.5,-10.5 parent: 31 type: Transform - - uid: 3889 + - uid: 4852 components: - - pos: 10.5,8.5 + - pos: 3.5,-30.5 parent: 31 type: Transform - - uid: 7137 + - uid: 8225 components: - - pos: 8.5,9.5 + - pos: 22.5,-9.5 parent: 31 type: Transform -- proto: SuitStorageEVAPrisoner +- proto: TableReinforced entities: - - uid: 1663 + - uid: 187 components: - - pos: -11.5,11.5 + - rot: 3.141592653589793 rad + pos: -16.5,-19.5 parent: 31 type: Transform -- proto: SuitStorageHOS - entities: - - uid: 3221 + - uid: 275 components: - - pos: -7.5,19.5 + - pos: 5.5,31.5 parent: 31 type: Transform -- proto: SuitStorageRD - entities: - - uid: 1140 + - uid: 462 components: - - pos: -2.5,-22.5 + - pos: 4.5,32.5 parent: 31 type: Transform -- proto: SuitStorageSalv - entities: - - uid: 4254 + - uid: 532 components: - - pos: 18.5,16.5 + - pos: 9.5,30.5 parent: 31 type: Transform - - uid: 6933 + - uid: 533 components: - - pos: 18.5,17.5 + - pos: -0.5,32.5 parent: 31 type: Transform - - uid: 7135 + - uid: 597 components: - - pos: 18.5,15.5 + - pos: 30.5,5.5 parent: 31 type: Transform -- proto: SuitStorageSec - entities: - - uid: 768 + - uid: 611 components: - - pos: -12.5,21.5 + - pos: 9.5,28.5 parent: 31 type: Transform - - uid: 1540 + - uid: 661 components: - - pos: -11.5,21.5 + - pos: -11.5,16.5 parent: 31 type: Transform -- proto: SuitStorageWarden - entities: - - uid: 1962 + - uid: 676 components: - - pos: -2.5,8.5 + - pos: 17.5,-20.5 parent: 31 type: Transform -- proto: SurveillanceCameraCommand - entities: - - uid: 68 + - uid: 714 components: - - rot: 1.5707963267948966 rad - pos: 4.5,24.5 + - pos: 40.5,-0.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge Entrance - type: SurveillanceCamera - - uid: 75 + - uid: 766 components: - - rot: -1.5707963267948966 rad - pos: 7.5,18.5 + - pos: 1.5,32.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HoP Office - type: SurveillanceCamera - - uid: 540 + - uid: 900 components: - - rot: 1.5707963267948966 rad - pos: -0.5,18.5 + - pos: -10.5,-0.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Vault - type: SurveillanceCamera - - uid: 1053 + - uid: 901 components: - - rot: 1.5707963267948966 rad - pos: 5.5,18.5 + - pos: -10.5,1.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HoP Line - type: SurveillanceCamera - - uid: 2412 + - uid: 940 components: - - rot: -1.5707963267948966 rad - pos: 6.5,24.5 + - pos: 2.5,32.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Office - type: SurveillanceCamera - - uid: 4198 + - uid: 959 components: - - pos: 11.5,23.5 + - pos: 5.5,32.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Room - type: SurveillanceCamera - - uid: 4256 + - uid: 987 components: - - rot: 1.5707963267948966 rad - pos: 7.5,32.5 + - pos: 38.5,-0.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge East - type: SurveillanceCamera - - uid: 4707 + - uid: 1204 components: - - rot: -1.5707963267948966 rad - pos: -2.5,28.5 + - pos: 6.5,20.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge West - type: SurveillanceCamera - - uid: 4891 + - uid: 1434 components: - rot: 3.141592653589793 rad - pos: 9.5,11.5 + pos: -15.5,-19.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: EVA Supply - type: SurveillanceCamera - - uid: 9146 + - uid: 2145 components: - - pos: -0.5,23.5 + - pos: 26.5,21.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Conference Room - type: SurveillanceCamera - - uid: 10269 + - uid: 2174 components: - - pos: -6.5,27.5 + - pos: 14.5,-5.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Telecommunications - type: SurveillanceCamera -- proto: SurveillanceCameraEngineering - entities: - - uid: 1205 + - uid: 2193 components: - - rot: 1.5707963267948966 rad - pos: 35.5,-1.5 + - pos: 19.5,-20.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engineering Locker Room - type: SurveillanceCamera - - uid: 9149 + - uid: 2297 components: - - rot: 3.141592653589793 rad - pos: 39.5,0.5 + - rot: 1.5707963267948966 rad + pos: -14.5,15.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: CE's Office - type: SurveillanceCamera - - uid: 9150 + - uid: 2446 components: - - rot: 3.141592653589793 rad - pos: 41.5,6.5 + - pos: 7.5,32.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: SMES Bank - type: SurveillanceCamera - - uid: 9151 + - uid: 4193 components: - - rot: -1.5707963267948966 rad - pos: 46.5,10.5 + - pos: 2.5,31.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: AME Room - type: SurveillanceCamera - - uid: 9152 + - uid: 4234 components: - - rot: 1.5707963267948966 rad - pos: 41.5,14.5 + - pos: -14.5,20.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmospherics - type: SurveillanceCamera - - uid: 9153 + - uid: 4245 components: - - rot: -1.5707963267948966 rad - pos: 55.5,0.5 + - pos: -10.5,0.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Singulo - type: SurveillanceCamera - - uid: 9154 + - uid: 4301 components: - - rot: 3.141592653589793 rad - pos: 50.5,-2.5 + - pos: 28.5,15.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Grav Gen - type: SurveillanceCamera - - uid: 9155 + - uid: 4304 components: - - rot: 3.141592653589793 rad - pos: 35.5,6.5 + - pos: 27.5,15.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engineering Lobby - type: SurveillanceCamera -- proto: SurveillanceCameraGeneral - entities: - - uid: 727 + - uid: 4880 components: - - rot: 3.141592653589793 rad - pos: 18.5,5.5 + - pos: -1.5,6.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: East Hallway - type: SurveillanceCamera - - uid: 3050 + - uid: 4884 components: - - rot: -1.5707963267948966 rad - pos: -37.5,-8.5 + - pos: 15.5,-3.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arrivals - type: SurveillanceCamera - - uid: 4346 + - uid: 5084 components: - - rot: 1.5707963267948966 rad - pos: -22.5,-1.5 + - pos: 13.5,-0.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Upper Dorms - type: SurveillanceCamera - - uid: 4347 + - uid: 6252 components: - - pos: -22.5,-8.5 + - pos: 37.5,-0.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Lower Dorms - type: SurveillanceCamera - - uid: 4361 + - uid: 8138 components: - - rot: 3.141592653589793 rad - pos: -19.5,5.5 + - pos: 60.5,-5.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: West Hallway - type: SurveillanceCamera - - uid: 4368 + - uid: 8346 components: - - rot: 1.5707963267948966 rad - pos: -23.5,10.5 + - rot: 3.141592653589793 rad + pos: 40.5,0.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Tool Hall - type: SurveillanceCamera - - uid: 4433 + - uid: 8420 components: - rot: 1.5707963267948966 rad - pos: 4.5,0.5 + pos: -14.5,16.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Medical Hallway - type: SurveillanceCamera - - uid: 4549 + - uid: 8798 components: - - rot: -1.5707963267948966 rad - pos: 2.5,-8.5 + - pos: -13.5,18.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South Hallway - type: SurveillanceCamera - - uid: 4550 + - uid: 8799 components: - - rot: 3.141592653589793 rad - pos: 1.5,-13.5 + - pos: 8.5,31.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Science Hallway - type: SurveillanceCamera - - uid: 4554 + - uid: 9056 components: - - rot: 1.5707963267948966 rad - pos: 4.5,-29.5 + - pos: 17.5,-21.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South Hallway - type: SurveillanceCamera - - uid: 6306 + - uid: 9071 components: - - rot: -1.5707963267948966 rad - pos: 2.5,10.5 + - pos: 27.5,21.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: North Hallway - type: SurveillanceCamera - - uid: 6308 + - uid: 9100 components: - - rot: 1.5707963267948966 rad - pos: -34.5,7.5 + - pos: 14.5,-4.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Evac camera - type: SurveillanceCamera -- proto: SurveillanceCameraMedical - entities: - - uid: 9157 + - uid: 9101 components: - - rot: 3.141592653589793 rad - pos: 8.5,-13.5 + - pos: 15.5,-6.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Cloning - type: SurveillanceCamera - - uid: 9158 + - uid: 9110 components: - - pos: 10.5,-11.5 + - pos: 14.5,-6.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medbay Foyer - type: SurveillanceCamera - - uid: 9159 + - uid: 9111 components: - - rot: 1.5707963267948966 rad - pos: 19.5,0.5 + - pos: 16.5,-6.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Chemistry - type: SurveillanceCamera - - uid: 9160 + - uid: 9623 components: - - rot: 1.5707963267948966 rad - pos: 19.5,-7.5 + - pos: -11.5,19.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medbay Labs - type: SurveillanceCamera - - uid: 9161 + - uid: 10892 components: - - rot: 1.5707963267948966 rad - pos: 12.5,-3.5 + - pos: 59.5,-5.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medbay Lobby - type: SurveillanceCamera - - uid: 9329 + - uid: 10902 components: - - pos: 23.5,-15.5 + - pos: 55.5,-11.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: CMO's Office - type: SurveillanceCamera -- proto: SurveillanceCameraRouterCommand - entities: - - uid: 1603 + - uid: 10903 components: - - pos: -0.5,16.5 + - pos: 56.5,-11.5 parent: 31 type: Transform -- proto: SurveillanceCameraRouterEngineering +- proto: TableReinforcedGlass entities: - - uid: 2033 + - uid: 1479 components: - - pos: 40.5,0.5 + - pos: -4.5,-20.5 parent: 31 type: Transform -- proto: SurveillanceCameraRouterGeneral - entities: - - uid: 6303 + - uid: 4140 components: - - pos: 10.5,9.5 + - pos: -4.5,-21.5 parent: 31 type: Transform -- proto: SurveillanceCameraRouterMedical - entities: - - uid: 9156 + - uid: 5077 components: - - pos: 24.5,-14.5 + - rot: -1.5707963267948966 rad + pos: 18.5,1.5 parent: 31 type: Transform -- proto: SurveillanceCameraRouterScience - entities: - - uid: 4573 + - uid: 5078 components: - - pos: -7.5,-23.5 + - rot: -1.5707963267948966 rad + pos: 19.5,1.5 parent: 31 type: Transform -- proto: SurveillanceCameraRouterSecurity - entities: - - uid: 3833 + - uid: 5080 components: - - pos: -14.5,16.5 + - pos: 19.5,0.5 parent: 31 type: Transform -- proto: SurveillanceCameraRouterService - entities: - - uid: 4910 + - uid: 5087 components: - - pos: 25.5,1.5 + - rot: -1.5707963267948966 rad + pos: 14.5,1.5 parent: 31 type: Transform -- proto: SurveillanceCameraRouterSupply - entities: - - uid: 3040 + - uid: 5088 components: - - anchored: False - pos: 28.5,10.5 + - rot: -1.5707963267948966 rad + pos: 14.5,0.5 parent: 31 type: Transform - - bodyType: Dynamic - type: Physics -- proto: SurveillanceCameraScience +- proto: TableStone entities: - - uid: 4557 + - uid: 9698 components: - rot: -1.5707963267948966 rad - pos: -5.5,-16.5 + pos: 10.5,-42.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Science lab - type: SurveillanceCamera - - uid: 4558 + - uid: 9703 components: - - pos: -15.5,-22.5 + - rot: -1.5707963267948966 rad + pos: 11.5,-42.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Test Chamber - type: SurveillanceCamera - - uid: 4572 + - uid: 9704 components: - - pos: -7.5,-20.5 + - rot: -1.5707963267948966 rad + pos: 11.5,-41.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Science Locker Room - type: SurveillanceCamera - - uid: 4574 + - uid: 9709 components: - - pos: -5.5,-24.5 + - rot: -1.5707963267948966 rad + pos: 11.5,-40.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Research Director's Office - type: SurveillanceCamera -- proto: SurveillanceCameraSecurity +- proto: TableWood entities: - - uid: 6568 + - uid: 492 components: - - rot: 3.141592653589793 rad - pos: -10.5,11.5 + - pos: -30.5,-1.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security Cell Block - type: SurveillanceCamera - - uid: 7170 + - uid: 936 components: - - rot: 3.141592653589793 rad - pos: -12.5,21.5 + - pos: -5.5,-4.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory - type: SurveillanceCamera - - uid: 7410 + - uid: 965 components: - - rot: 3.141592653589793 rad - pos: -4.5,14.5 + - pos: -1.5,24.5 parent: 31 type: Transform - - id: Warden's Office - type: SurveillanceCamera - - uid: 9147 + - uid: 966 components: - - rot: 3.141592653589793 rad - pos: -16.5,11.5 + - pos: -1.5,25.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Brig - type: SurveillanceCamera -- proto: SurveillanceCameraService - entities: - - uid: 4555 + - uid: 1092 components: - - rot: 3.141592653589793 rad - pos: 9.5,-22.5 + - pos: 10.5,23.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Library - type: SurveillanceCamera - - uid: 4706 + - uid: 1419 components: - - rot: 1.5707963267948966 rad - pos: 0.5,-3.5 + - pos: -7.5,20.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Bar - type: SurveillanceCamera -- proto: SurveillanceCameraSupply - entities: - - uid: 4575 + - uid: 1496 components: - - rot: 3.141592653589793 rad - pos: 16.5,12.5 + - pos: 7.5,18.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Request Room - type: SurveillanceCamera - - uid: 4576 + - uid: 2201 components: - - rot: 1.5707963267948966 rad - pos: 24.5,13.5 + - pos: 28.5,9.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Supply Room - type: SurveillanceCamera - - uid: 4690 + - uid: 2250 components: - - rot: 3.141592653589793 rad - pos: 19.5,17.5 + - pos: -2.5,-4.5 parent: 31 type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Salvage Magnet - type: SurveillanceCamera -- proto: SynthesizerInstrument - entities: - - uid: 7353 + - uid: 2251 components: - - pos: -18.481161,-9.424397 + - pos: -3.5,-4.5 parent: 31 type: Transform -- proto: Syringe - entities: - - uid: 8440 + - uid: 2253 components: - - pos: 14.5308895,-5.0994205 + - pos: -2.5,-1.5 parent: 31 type: Transform -- proto: Table - entities: - - uid: 428 + - uid: 2421 components: - - pos: -17.5,-19.5 + - pos: -2.5,-5.5 parent: 31 type: Transform - - uid: 431 + - uid: 2844 components: - - pos: 25.5,0.5 + - pos: -30.5,-5.5 parent: 31 type: Transform - - uid: 545 + - uid: 3750 components: - - rot: -1.5707963267948966 rad - pos: -5.5,13.5 + - pos: -3.5,-1.5 parent: 31 type: Transform - - uid: 765 + - uid: 3753 components: - - pos: -3.5,18.5 + - pos: -6.5,-1.5 parent: 31 type: Transform - - uid: 801 + - uid: 3892 components: - - pos: -3.5,13.5 + - pos: -30.5,-2.5 parent: 31 type: Transform - - uid: 817 + - uid: 3913 components: - - pos: 50.5,4.5 + - pos: 28.5,10.5 parent: 31 type: Transform - - uid: 894 + - uid: 4005 components: - - pos: -14.5,-0.5 + - rot: -1.5707963267948966 rad + pos: -21.5,17.5 parent: 31 type: Transform - - uid: 895 + - uid: 4016 components: - - pos: -14.5,-1.5 + - pos: -8.5,20.5 parent: 31 type: Transform - - uid: 1087 + - uid: 4061 components: - - pos: 6.5,-11.5 + - pos: -6.5,-4.5 parent: 31 type: Transform - - uid: 1114 + - uid: 4063 components: - - rot: -1.5707963267948966 rad - pos: -6.5,14.5 + - pos: -4.5,-4.5 parent: 31 type: Transform - - uid: 1146 + - uid: 4093 components: - - pos: 21.5,-4.5 + - pos: -30.5,1.5 parent: 31 type: Transform - - uid: 1155 + - uid: 4162 components: - - pos: 16.5,16.5 + - pos: -2.5,-6.5 parent: 31 type: Transform - - uid: 1217 + - uid: 4247 components: - - pos: 49.5,5.5 + - pos: 8.5,-28.5 parent: 31 type: Transform - - uid: 1219 + - uid: 4710 components: - - pos: 50.5,5.5 + - pos: -23.5,-6.5 parent: 31 type: Transform - - uid: 1235 + - uid: 4711 components: - - pos: -29.5,9.5 + - pos: -23.5,-5.5 parent: 31 type: Transform - - uid: 1236 + - uid: 4712 components: - - pos: -29.5,8.5 + - pos: -24.5,-6.5 parent: 31 type: Transform - - uid: 1752 + - uid: 4713 components: - - pos: 29.5,0.5 + - pos: -24.5,-5.5 parent: 31 type: Transform - - uid: 1753 + - uid: 4787 components: - - pos: 29.5,1.5 + - pos: 9.5,-28.5 parent: 31 type: Transform - - uid: 2360 + - uid: 5003 components: - - pos: -4.5,-6.5 + - pos: -23.5,-2.5 parent: 31 type: Transform - - uid: 2403 + - uid: 5119 components: - - pos: -29.5,7.5 + - pos: 6.5,24.5 parent: 31 type: Transform - - uid: 2413 + - uid: 5220 components: - - pos: -2.5,18.5 + - pos: -0.5,13.5 parent: 31 type: Transform - - uid: 2455 + - uid: 5635 components: - - pos: 19.5,-9.5 + - rot: 1.5707963267948966 rad + pos: 8.5,-3.5 parent: 31 type: Transform - - uid: 2670 + - uid: 7146 components: - - pos: -2.5,7.5 + - pos: 7.5,24.5 parent: 31 type: Transform - - uid: 3373 + - uid: 7158 components: - - pos: -11.5,-28.5 + - pos: 8.5,18.5 parent: 31 type: Transform - - uid: 3679 + - uid: 7164 components: - - pos: 14.5,12.5 + - pos: 12.5,-31.5 parent: 31 type: Transform - - uid: 3908 + - uid: 7322 components: - - pos: 24.5,13.5 + - pos: 11.5,-31.5 parent: 31 type: Transform - - uid: 3964 + - uid: 7462 components: - - pos: -10.5,7.5 + - pos: -29.5,17.5 parent: 31 type: Transform - - uid: 4094 + - uid: 7849 components: - - pos: -17.5,-20.5 + - pos: 26.5,-25.5 parent: 31 type: Transform - - uid: 4112 + - uid: 7850 components: - - pos: 26.5,0.5 + - pos: 27.5,-25.5 parent: 31 type: Transform - - uid: 4128 + - uid: 8708 components: - - pos: -19.5,-2.5 + - pos: -35.5,-25.5 parent: 31 type: Transform - - uid: 4183 + - uid: 8746 components: - - pos: 19.5,-10.5 + - pos: -35.5,-24.5 parent: 31 type: Transform - - uid: 4190 + - uid: 9043 components: - - pos: -1.5,16.5 + - pos: 7.5,19.5 parent: 31 type: Transform - - uid: 4200 + - uid: 9371 components: - - rot: -1.5707963267948966 rad - pos: -6.5,13.5 + - pos: -23.5,-21.5 parent: 31 type: Transform - - uid: 4209 + - uid: 9430 components: - - rot: -1.5707963267948966 rad - pos: -0.5,-29.5 + - pos: -16.5,-39.5 parent: 31 type: Transform - - uid: 4251 + - uid: 9431 components: - - pos: 19.5,-22.5 + - pos: -15.5,-39.5 parent: 31 type: Transform - - uid: 4313 + - uid: 9432 components: - - rot: -1.5707963267948966 rad - pos: -2.5,-29.5 + - pos: -14.5,-39.5 parent: 31 type: Transform - - uid: 4466 + - uid: 9433 components: - - pos: 18.5,7.5 + - pos: -16.5,-38.5 parent: 31 type: Transform - - uid: 4617 + - uid: 9663 components: - - pos: -11.5,-27.5 + - pos: -4.5,-41.5 parent: 31 type: Transform - - uid: 4860 + - uid: 9673 components: - - pos: -10.5,-6.5 + - pos: -4.5,-42.5 parent: 31 type: Transform - - uid: 4869 + - uid: 9984 components: - - pos: -17.5,-17.5 + - rot: 1.5707963267948966 rad + pos: 6.5,-3.5 parent: 31 type: Transform - - uid: 4870 + - uid: 10374 components: - - pos: -17.5,-18.5 + - rot: 1.5707963267948966 rad + pos: 7.5,-3.5 parent: 31 type: Transform - - uid: 4920 + - uid: 10395 components: - - pos: -3.5,17.5 + - rot: 3.141592653589793 rad + pos: 0.5,-19.5 parent: 31 type: Transform - - uid: 5089 + - uid: 10416 components: - - pos: 27.5,0.5 + - rot: 1.5707963267948966 rad + pos: 8.5,-4.5 parent: 31 type: Transform - - uid: 5112 + - uid: 10478 components: - - pos: 28.5,0.5 + - rot: 1.5707963267948966 rad + pos: -31.5,17.5 parent: 31 type: Transform - - uid: 5154 + - uid: 10618 components: - - pos: -12.5,11.5 + - rot: 1.5707963267948966 rad + pos: 43.5,-10.5 parent: 31 type: Transform - - uid: 6020 + - uid: 10619 components: - - pos: -3.5,16.5 + - rot: 1.5707963267948966 rad + pos: 42.5,-10.5 parent: 31 type: Transform - - uid: 6183 +- proto: TegCenter + entities: + - uid: 9078 components: - - pos: 6.5,9.5 + - rot: -1.5707963267948966 rad + pos: 38.5,14.5 parent: 31 type: Transform - - uid: 6250 +- proto: TegCirculator + entities: + - uid: 1483 components: - - pos: 13.5,12.5 + - pos: 39.5,14.5 parent: 31 type: Transform - - uid: 6256 + - color: '#FF3300FF' + type: PointLight + - uid: 1914 components: - - pos: 32.5,-3.5 + - rot: 3.141592653589793 rad + pos: 37.5,14.5 parent: 31 type: Transform - - uid: 6257 + - color: '#FF3300FF' + type: PointLight +- proto: TelecomServer + entities: + - uid: 3371 components: - - pos: 32.5,-2.5 + - pos: 57.5,-8.5 parent: 31 type: Transform - - uid: 6570 + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 3410 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 4590 components: - - pos: 6.5,10.5 + - pos: 51.5,-11.5 parent: 31 type: Transform - - uid: 7093 + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 4604 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 8120 components: - - pos: 15.5,8.5 + - pos: 49.5,-11.5 parent: 31 type: Transform - - uid: 7114 + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 8122 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 8163 components: - - pos: 13.5,-13.5 + - pos: 57.5,-10.5 parent: 31 type: Transform - - uid: 7123 + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 8164 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 9065 components: - - pos: 14.5,-13.5 + - pos: 49.5,-9.5 parent: 31 type: Transform - - uid: 7134 + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 9066 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 9096 components: - - pos: 48.5,5.5 + - pos: 51.5,-7.5 parent: 31 type: Transform - - uid: 7172 + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 9154 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 9179 components: - - pos: 18.5,8.5 + - pos: 51.5,-9.5 parent: 31 type: Transform - - uid: 7245 + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 9188 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 10232 components: - - pos: 22.5,-4.5 + - pos: 49.5,-7.5 parent: 31 type: Transform - - uid: 7340 + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 10233 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer +- proto: TelecomServerCircuitboard + entities: + - uid: 10887 components: - - pos: -19.5,-9.5 + - pos: 49.546635,-5.3898478 parent: 31 type: Transform - - uid: 7341 +- proto: TintedWindow + entities: + - uid: 1444 components: - - pos: -18.5,-9.5 + - rot: -1.5707963267948966 rad + pos: -28.5,2.5 parent: 31 type: Transform - - uid: 7342 + - uid: 1445 components: - - pos: -17.5,-9.5 + - rot: -1.5707963267948966 rad + pos: -29.5,2.5 parent: 31 type: Transform - - uid: 7454 +- proto: ToiletEmpty + entities: + - uid: 793 components: - - pos: 6.5,-5.5 + - rot: -1.5707963267948966 rad + pos: 13.5,26.5 parent: 31 type: Transform - - uid: 7481 +- proto: ToolboxArtistic + entities: + - uid: 10816 components: - - rot: -1.5707963267948966 rad - pos: -1.5,-29.5 + - pos: -31.033598,-32.18022 parent: 31 type: Transform - - uid: 7563 +- proto: ToolboxElectricalFilled + entities: + - uid: 12 components: - - pos: -15.5,-12.5 + - pos: -29.499815,8.100836 parent: 31 type: Transform - - uid: 7564 + - uid: 3947 components: - - pos: -15.5,-11.5 + - pos: 9.510484,28.980497 parent: 31 type: Transform - - uid: 7565 + - uid: 4290 components: - - pos: -15.5,-10.5 + - pos: 32.484333,-2.403047 parent: 31 type: Transform - - uid: 7815 + - uid: 7082 components: - - pos: 6.5,-7.5 + - pos: -17.514227,-20.273457 parent: 31 type: Transform - - uid: 7835 + - uid: 8892 components: - - pos: -26.5,19.5 + - pos: 45.501183,1.6234736 parent: 31 type: Transform - - uid: 7836 +- proto: ToolboxEmergencyFilled + entities: + - uid: 1054 components: - - pos: -26.5,20.5 + - pos: 9.510484,28.589872 parent: 31 type: Transform - - uid: 7847 + - uid: 11129 components: - - pos: -13.5,24.5 + - pos: -5.51474,29.649992 parent: 31 type: Transform - - uid: 8413 +- proto: ToolboxGoldFilled + entities: + - uid: 4194 components: - - pos: -5.5,-6.5 + - pos: -2.63186,18.64349 parent: 31 type: Transform - - uid: 8807 +- proto: ToolboxMechanical + entities: + - uid: 7121 components: - - pos: -2.5,30.5 + - pos: 42.508034,13.767397 parent: 31 type: Transform - - uid: 8853 +- proto: ToolboxMechanicalFilled + entities: + - uid: 7115 components: - - pos: 31.5,6.5 + - pos: 6.4733424,10.140543 parent: 31 type: Transform - - uid: 8900 + - uid: 8891 components: - - pos: 40.5,4.5 + - pos: 45.500927,1.5450401 parent: 31 type: Transform - - uid: 9003 + - uid: 9614 components: - - pos: -20.5,-2.5 + - pos: -1.6376766,-24.526524 parent: 31 type: Transform - - uid: 9510 +- proto: ToyAi + entities: + - uid: 10982 components: - - pos: 45.5,-2.5 + - pos: 60.558807,-5.3215933 parent: 31 type: Transform - - uid: 9511 +- proto: ToyAmongPequeno + entities: + - uid: 9685 components: - - pos: 44.5,-2.5 + - pos: 29.13865,-15.849083 parent: 31 type: Transform - - uid: 9518 +- proto: ToyDeathRipley + entities: + - uid: 2030 components: - - pos: -9.5,16.5 + - pos: -24.569178,-5.0530295 parent: 31 type: Transform - - uid: 9529 +- proto: ToyFireRipley + entities: + - uid: 2029 components: - - pos: 34.5,0.5 + - pos: -23.412928,-6.0686545 parent: 31 type: Transform - - uid: 9609 +- proto: ToyMouse + entities: + - uid: 7297 components: - - pos: -9.5,-30.5 + - pos: 12.359465,-27.5578 parent: 31 type: Transform - - uid: 9610 +- proto: ToyRubberDuck + entities: + - uid: 67 components: - - pos: -8.5,-30.5 + - pos: 12.492016,27.532398 parent: 31 type: Transform - - uid: 9614 +- proto: ToySpawner + entities: + - uid: 148 components: - - rot: 1.5707963267948966 rad - pos: 18.5,-22.5 + - pos: -30.5,-2.5 parent: 31 type: Transform -- proto: TableCarpet - entities: - - uid: 2422 + - uid: 521 components: - - pos: 0.5,-5.5 + - pos: -31.5,16.5 parent: 31 type: Transform - - uid: 4148 + - uid: 7790 components: - - pos: 11.5,-23.5 + - pos: -30.5,13.5 parent: 31 type: Transform - - uid: 4166 +- proto: TrashBag + entities: + - uid: 798 components: - - pos: -1.5,1.5 + - pos: 26.417616,0.6089213 parent: 31 type: Transform - - uid: 4250 + - uid: 812 components: - - pos: 10.5,-24.5 + - pos: 26.667616,0.6089213 parent: 31 type: Transform - - uid: 4777 + - uid: 8951 components: - - pos: 10.5,-23.5 + - rot: -1.5707963267948966 rad + pos: -18.528688,-10.596653 parent: 31 type: Transform - - uid: 5792 +- proto: TrashBananaPeel + entities: + - uid: 7351 components: - - pos: 11.5,-24.5 + - pos: -19.590536,-8.611897 parent: 31 type: Transform - - uid: 8724 + - uid: 8267 components: - - pos: -36.5,-29.5 + - pos: 38.48186,-17.514906 parent: 31 type: Transform -- proto: TableGlass +- proto: trayScanner entities: - - uid: 587 + - uid: 8901 components: - - pos: -0.5,-17.5 + - pos: 48.60447,5.4525433 parent: 31 type: Transform - - uid: 809 +- proto: UnfinishedMachineFrame + entities: + - uid: 7105 components: - - pos: -2.5,-17.5 + - pos: 10.5,-15.5 parent: 31 type: Transform - - uid: 823 +- proto: UniformPrinter + entities: + - uid: 8408 components: - - pos: -1.5,-17.5 + - pos: 8.5,21.5 parent: 31 type: Transform - - uid: 1095 + - materialWhiteList: + - Cloth + - Durathread + type: MaterialStorage +- proto: Vaccinator + entities: + - uid: 8436 components: - - pos: 22.5,-12.5 + - pos: 19.5,-4.5 parent: 31 type: Transform - - uid: 1096 +- proto: VehicleKeySecway + entities: + - uid: 5653 components: - - pos: 24.5,-13.5 + - rot: -1.5707963267948966 rad + pos: -4.550658,14.232061 parent: 31 type: Transform - - uid: 1097 +- proto: VendingBarDrobe + entities: + - uid: 2420 components: - - pos: 24.5,-12.5 + - flags: SessionSpecific + type: MetaData + - pos: -12.5,-6.5 parent: 31 type: Transform - - uid: 1104 +- proto: VendingMachineAtmosDrobe + entities: + - uid: 6341 components: - - pos: 5.5,21.5 + - flags: SessionSpecific + type: MetaData + - pos: 44.5,13.5 parent: 31 type: Transform - - uid: 1379 +- proto: VendingMachineBooze + entities: + - uid: 970 components: - - pos: -2.5,-13.5 + - flags: SessionSpecific + type: MetaData + - pos: -6.5,-6.5 parent: 31 type: Transform - - uid: 2220 +- proto: VendingMachineCargoDrobe + entities: + - uid: 7130 components: - - pos: 22.5,-13.5 + - flags: SessionSpecific + type: MetaData + - pos: 12.5,12.5 parent: 31 type: Transform - - uid: 2449 +- proto: VendingMachineCart + entities: + - uid: 153 components: - - pos: -0.5,-13.5 + - flags: SessionSpecific + type: MetaData + - pos: 10.5,21.5 parent: 31 type: Transform - - uid: 2450 +- proto: VendingMachineChang + entities: + - uid: 792 components: - - pos: -1.5,-13.5 + - flags: SessionSpecific + type: MetaData + - pos: -34.5,10.5 parent: 31 type: Transform - - uid: 4852 + - uid: 9145 components: - - pos: 3.5,-30.5 + - flags: SessionSpecific + type: MetaData + - pos: 5.5,-17.5 parent: 31 type: Transform -- proto: TablePlasmaGlass +- proto: VendingMachineChapel entities: - - uid: 805 + - uid: 4887 components: - - rot: 1.5707963267948966 rad - pos: -7.5,-32.5 + - flags: SessionSpecific + type: MetaData + - pos: -37.5,19.5 parent: 31 type: Transform - - uid: 947 +- proto: VendingMachineChefDrobe + entities: + - uid: 3986 components: - - rot: 1.5707963267948966 rad - pos: -6.5,-32.5 + - flags: SessionSpecific + type: MetaData + - pos: -13.5,-3.5 parent: 31 type: Transform - - uid: 8437 +- proto: VendingMachineChefvend + entities: + - uid: 911 components: - - pos: 14.5,-5.5 + - flags: SessionSpecific + type: MetaData + - pos: -9.5,-3.5 parent: 31 type: Transform - - uid: 8438 +- proto: VendingMachineChemDrobe + entities: + - uid: 578 components: - - pos: 14.5,-4.5 + - flags: SessionSpecific + type: MetaData + - pos: 17.5,1.5 parent: 31 type: Transform - - uid: 9141 +- proto: VendingMachineChemicals + entities: + - uid: 1099 components: - - pos: 14.5,-6.5 + - flags: SessionSpecific + type: MetaData + - pos: 14.5,-1.5 parent: 31 type: Transform - - uid: 9142 +- proto: VendingMachineCigs + entities: + - uid: 108 components: - - pos: 15.5,-6.5 + - flags: SessionSpecific + name: cigarette machine + type: MetaData + - pos: -2.5,1.5 parent: 31 type: Transform -- proto: TableReinforced - entities: - - uid: 120 + - uid: 473 components: - - pos: -13.5,16.5 + - flags: SessionSpecific + name: cigarette machine + type: MetaData + - pos: 14.5,21.5 parent: 31 type: Transform - - uid: 275 + - uid: 2877 components: - - pos: 5.5,31.5 + - flags: SessionSpecific + type: MetaData + - pos: 0.5,-22.5 parent: 31 type: Transform - - uid: 462 + - uid: 8705 components: - - pos: 4.5,32.5 + - flags: SessionSpecific + name: cigarette machine + type: MetaData + - pos: -32.5,-29.5 parent: 31 type: Transform - - uid: 532 +- proto: VendingMachineClothing + entities: + - uid: 7647 components: - - pos: 9.5,30.5 + - flags: SessionSpecific + type: MetaData + - pos: -29.5,-7.5 parent: 31 type: Transform - - uid: 533 +- proto: VendingMachineCoffee + entities: + - uid: 983 components: - - pos: -0.5,32.5 + - flags: SessionSpecific + name: Hot drinks machine + type: MetaData + - pos: 0.5,23.5 parent: 31 type: Transform - - uid: 597 + - uid: 2362 components: - - pos: 30.5,5.5 + - flags: SessionSpecific + name: Hot drinks machine + type: MetaData + - pos: 5.5,-13.5 parent: 31 type: Transform - - uid: 611 + - uid: 8738 components: - - pos: 9.5,28.5 + - flags: SessionSpecific + name: Hot drinks machine + type: MetaData + - pos: -36.5,-23.5 parent: 31 type: Transform - - uid: 661 + - uid: 9039 components: - - pos: -11.5,16.5 + - flags: SessionSpecific + name: Hot drinks machine + type: MetaData + - pos: 35.5,6.5 parent: 31 type: Transform - - uid: 714 + - uid: 9328 components: - - pos: 40.5,-0.5 + - flags: SessionSpecific + name: Hot drinks machine + type: MetaData + - pos: -38.5,-5.5 parent: 31 type: Transform - - uid: 766 +- proto: VendingMachineCola + entities: + - uid: 984 components: - - pos: 1.5,32.5 + - flags: SessionSpecific + type: MetaData + - pos: 1.5,21.5 parent: 31 type: Transform - - uid: 900 + - uid: 1229 components: - - pos: -10.5,-0.5 + - flags: SessionSpecific + type: MetaData + - pos: -34.5,2.5 parent: 31 type: Transform - - uid: 901 + - uid: 7958 components: - - pos: -10.5,1.5 + - flags: SessionSpecific + type: MetaData + - pos: 25.5,6.5 parent: 31 type: Transform - - uid: 940 + - uid: 9327 components: - - pos: 2.5,32.5 + - flags: SessionSpecific + type: MetaData + - pos: -38.5,-4.5 parent: 31 type: Transform - - uid: 959 +- proto: VendingMachineDinnerware + entities: + - uid: 990 components: - - pos: 5.5,32.5 + - flags: SessionSpecific + name: Dinnerware + type: MetaData + - pos: -13.5,1.5 parent: 31 type: Transform - - uid: 987 +- proto: VendingMachineEngiDrobe + entities: + - uid: 3283 components: - - pos: 38.5,-0.5 + - flags: SessionSpecific + type: MetaData + - pos: 35.5,0.5 parent: 31 type: Transform - - uid: 1031 +- proto: VendingMachineEngivend + entities: + - uid: 1256 components: - - pos: 0.5,-15.5 + - flags: SessionSpecific + type: MetaData + - pos: 31.5,-0.5 parent: 31 type: Transform - - uid: 1204 +- proto: VendingMachineGames + entities: + - uid: 6696 components: - - pos: 6.5,20.5 + - flags: SessionSpecific + type: MetaData + - pos: 5.5,-16.5 parent: 31 type: Transform - - uid: 1218 +- proto: VendingMachineGeneDrobe + entities: + - uid: 7343 components: - - pos: -13.5,15.5 + - flags: SessionSpecific + type: MetaData + - pos: 8.5,-13.5 parent: 31 type: Transform - - uid: 2446 +- proto: VendingMachineHappyHonk + entities: + - uid: 4174 components: - - pos: 7.5,32.5 + - flags: SessionSpecific + type: MetaData + - pos: -9.5,-4.5 parent: 31 type: Transform - - uid: 3147 +- proto: VendingMachineHydrobe + entities: + - uid: 4126 components: - - pos: 40.5,-1.5 + - flags: SessionSpecific + type: MetaData + - pos: -14.5,-6.5 parent: 31 type: Transform - - uid: 4193 +- proto: VendingMachineJaniDrobe + entities: + - uid: 2007 components: - - pos: 2.5,31.5 + - flags: SessionSpecific + type: MetaData + - pos: -19.5,-10.5 parent: 31 type: Transform - - uid: 4234 +- proto: VendingMachineMedical + entities: + - uid: 1148 components: - - pos: -14.5,20.5 + - flags: SessionSpecific + type: MetaData + - pos: 14.5,-11.5 parent: 31 type: Transform - - uid: 4245 + - uid: 7277 components: - - pos: -10.5,0.5 + - flags: SessionSpecific + type: MetaData + - pos: 12.5,-7.5 parent: 31 type: Transform - - uid: 4880 +- proto: VendingMachineMediDrobe + entities: + - uid: 1143 components: - - pos: -1.5,6.5 + - flags: SessionSpecific + type: MetaData + - pos: 24.5,-4.5 parent: 31 type: Transform - - uid: 4884 +- proto: VendingMachineNutri + entities: + - uid: 7436 components: - - pos: 15.5,-3.5 + - flags: SessionSpecific + type: MetaData + - pos: -15.5,-8.5 parent: 31 type: Transform - - uid: 5084 +- proto: VendingMachineRestockBooze + entities: + - uid: 10691 components: - - pos: 13.5,-0.5 + - pos: 40.339584,-6.2153544 parent: 31 type: Transform - - uid: 6252 +- proto: VendingMachineRoboDrobe + entities: + - uid: 1482 components: - - pos: 37.5,-0.5 + - flags: SessionSpecific + type: MetaData + - pos: -3.5,-25.5 parent: 31 type: Transform - - uid: 7695 +- proto: VendingMachineRobotics + entities: + - uid: 9607 components: - - rot: 3.141592653589793 rad - pos: 40.5,11.5 + - flags: SessionSpecific + type: MetaData + - pos: 0.5,-24.5 parent: 31 type: Transform - - uid: 8798 +- proto: VendingMachineSalvage + entities: + - uid: 6858 components: - - pos: -13.5,18.5 + - flags: SessionSpecific + type: MetaData + - pos: 29.5,17.5 parent: 31 type: Transform - - uid: 8799 +- proto: VendingMachineSciDrobe + entities: + - uid: 1312 components: - - pos: 8.5,31.5 + - flags: SessionSpecific + type: MetaData + - pos: -8.5,-23.5 parent: 31 type: Transform - - uid: 9623 +- proto: VendingMachineSec + entities: + - uid: 7834 components: - - pos: -11.5,19.5 + - flags: SessionSpecific + type: MetaData + - pos: -15.5,13.5 parent: 31 type: Transform -- proto: TableReinforcedGlass +- proto: VendingMachineSecDrobe entities: - - uid: 1043 + - uid: 474 components: - - pos: -4.5,-22.5 + - flags: SessionSpecific + type: MetaData + - pos: -9.5,17.5 parent: 31 type: Transform - - uid: 1518 +- proto: VendingMachineSeeds + entities: + - uid: 4127 components: - - pos: -4.5,-23.5 + - flags: SessionSpecific + type: MetaData + - pos: -17.5,-2.5 parent: 31 type: Transform - - uid: 5077 +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 5632 components: - - rot: -1.5707963267948966 rad - pos: 18.5,1.5 + - flags: SessionSpecific + type: MetaData + - pos: -19.5,9.5 parent: 31 type: Transform - - uid: 5078 +- proto: VendingMachineSmartFridge + entities: + - uid: 735 components: - - rot: -1.5707963267948966 rad - pos: 19.5,1.5 + - flags: SessionSpecific + type: MetaData + - pos: 16.5,-3.5 parent: 31 type: Transform - - uid: 5080 + - uid: 918 components: - - pos: 19.5,0.5 + - flags: SessionSpecific + type: MetaData + - pos: -15.5,1.5 parent: 31 type: Transform - - uid: 5087 +- proto: VendingMachineSnack + entities: + - uid: 133 components: - - rot: -1.5707963267948966 rad - pos: 14.5,1.5 + - flags: SessionSpecific + type: MetaData + - pos: -22.5,0.5 parent: 31 type: Transform - - uid: 5088 + - uid: 7959 components: - - rot: -1.5707963267948966 rad - pos: 14.5,0.5 + - flags: SessionSpecific + type: MetaData + - pos: 26.5,6.5 parent: 31 type: Transform -- proto: TableWood - entities: - - uid: 248 + - uid: 8422 components: - - pos: 12.5,-1.5 + - flags: SessionSpecific + type: MetaData + - pos: -3.5,1.5 parent: 31 type: Transform - - uid: 492 +- proto: VendingMachineSovietSoda + entities: + - uid: 7561 components: - - pos: -30.5,-1.5 + - flags: SessionSpecific + type: MetaData + - pos: -11.5,-9.5 parent: 31 type: Transform - - uid: 936 + - uid: 9574 components: - - pos: -5.5,-4.5 + - flags: SessionSpecific + type: MetaData + - pos: 19.5,-24.5 parent: 31 type: Transform - - uid: 965 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 9080 components: - - pos: -1.5,24.5 + - flags: SessionSpecific + type: MetaData + - pos: 30.5,19.5 parent: 31 type: Transform - - uid: 966 + - uid: 9135 components: - - pos: -1.5,25.5 + - flags: SessionSpecific + name: tank dispenser + type: MetaData + - pos: 8.5,8.5 parent: 31 type: Transform - - uid: 1092 + - uid: 9137 components: - - pos: 10.5,23.5 + - flags: SessionSpecific + name: tank dispenser + type: MetaData + - pos: 37.5,11.5 parent: 31 type: Transform - - uid: 1419 +- proto: VendingMachineTheater + entities: + - uid: 5712 components: - - pos: -7.5,20.5 + - flags: SessionSpecific + type: MetaData + - pos: -19.5,-4.5 parent: 31 type: Transform - - uid: 1496 +- proto: VendingMachineVendomat + entities: + - uid: 1227 components: - - pos: 7.5,18.5 + - flags: SessionSpecific + type: MetaData + - pos: -27.5,11.5 parent: 31 type: Transform - - uid: 2250 + - uid: 10323 components: - - pos: -2.5,-4.5 + - flags: SessionSpecific + type: MetaData + - pos: -15.5,-14.5 parent: 31 type: Transform - - uid: 2251 +- proto: VendingMachineViroDrobe + entities: + - uid: 2910 components: - - pos: -3.5,-4.5 + - flags: SessionSpecific + type: MetaData + - pos: 23.5,-4.5 parent: 31 type: Transform - - uid: 2253 +- proto: VendingMachineWinter + entities: + - uid: 8281 components: - - pos: -2.5,-1.5 + - flags: SessionSpecific + type: MetaData + - pos: -30.5,-7.5 parent: 31 type: Transform - - uid: 2421 +- proto: VendingMachineYouTool + entities: + - uid: 194 components: - - pos: -2.5,-5.5 + - flags: SessionSpecific + type: MetaData + - pos: -28.5,11.5 parent: 31 type: Transform - - uid: 2844 + - uid: 1521 components: - - pos: -30.5,-5.5 + - flags: SessionSpecific + type: MetaData + - pos: 31.5,0.5 parent: 31 type: Transform - - uid: 3141 +- proto: WallmountTelescreen + entities: + - uid: 8846 components: - - pos: 9.5,18.5 + - pos: -8.5,23.5 parent: 31 type: Transform - - uid: 3750 + - uid: 9024 components: - - pos: -3.5,-1.5 + - pos: -0.5,9.5 parent: 31 type: Transform - - uid: 3753 + - uid: 9512 components: - - pos: -6.5,-1.5 + - pos: 11.5,25.5 parent: 31 type: Transform - - uid: 3892 +- proto: WallReinforced + entities: + - uid: 34 components: - - pos: -30.5,-2.5 + - pos: 20.5,-0.5 parent: 31 type: Transform - - uid: 4005 + - uid: 38 components: - - rot: -1.5707963267948966 rad - pos: -21.5,17.5 + - pos: 39.5,22.5 parent: 31 type: Transform - - uid: 4016 + - uid: 50 components: - - pos: -8.5,20.5 + - pos: 35.5,23.5 parent: 31 type: Transform - - uid: 4061 + - uid: 54 components: - - pos: -6.5,-4.5 + - pos: -2.5,-19.5 parent: 31 type: Transform - - uid: 4063 + - uid: 59 components: - - pos: -4.5,-4.5 + - pos: 35.5,20.5 parent: 31 type: Transform - - uid: 4093 + - uid: 70 components: - - pos: -30.5,1.5 + - rot: 3.141592653589793 rad + pos: -0.5,-20.5 parent: 31 type: Transform - - uid: 4162 + - uid: 74 components: - - pos: -2.5,-6.5 + - pos: 39.5,23.5 parent: 31 type: Transform - - uid: 4247 + - uid: 83 components: - - pos: 8.5,-28.5 + - pos: 13.5,2.5 parent: 31 type: Transform - - uid: 4338 + - uid: 84 components: - - pos: -39.5,19.5 + - pos: -16.5,13.5 parent: 31 type: Transform - - uid: 4710 + - uid: 89 components: - - pos: -23.5,-6.5 + - pos: 20.5,-14.5 parent: 31 type: Transform - - uid: 4711 + - uid: 105 components: - - pos: -23.5,-5.5 + - pos: -32.5,-18.5 parent: 31 type: Transform - - uid: 4712 + - uid: 121 components: - - pos: -24.5,-6.5 + - pos: -14.5,26.5 parent: 31 type: Transform - - uid: 4713 + - uid: 122 components: - - pos: -24.5,-5.5 + - pos: -13.5,26.5 parent: 31 type: Transform - - uid: 4787 + - uid: 147 components: - - pos: 9.5,-28.5 + - pos: -3.5,26.5 parent: 31 type: Transform - - uid: 5003 + - uid: 163 components: - - pos: -23.5,-2.5 + - pos: 20.5,-1.5 parent: 31 type: Transform - - uid: 5119 + - uid: 185 components: - - pos: 6.5,24.5 + - pos: -16.5,-28.5 parent: 31 type: Transform - - uid: 5228 + - uid: 219 components: - - rot: 1.5707963267948966 rad - pos: -1.5,-31.5 + - pos: -10.5,6.5 parent: 31 type: Transform - - uid: 7146 + - uid: 247 components: - - pos: 7.5,24.5 + - pos: 21.5,-14.5 parent: 31 type: Transform - - uid: 7158 + - uid: 250 components: - - pos: 8.5,18.5 + - pos: 1.5,13.5 parent: 31 type: Transform - - uid: 7164 + - uid: 253 components: - - pos: 12.5,-31.5 + - pos: -0.5,-21.5 parent: 31 type: Transform - - uid: 7322 + - uid: 305 components: - - pos: 11.5,-31.5 + - pos: -1.5,11.5 parent: 31 type: Transform - - uid: 7462 + - uid: 306 components: - - pos: -29.5,17.5 + - pos: 40.5,1.5 parent: 31 type: Transform - - uid: 7632 + - uid: 447 components: - - pos: 11.5,-3.5 + - pos: 37.5,20.5 parent: 31 type: Transform - - uid: 7633 + - uid: 449 components: - - pos: 11.5,-1.5 + - pos: 37.5,23.5 parent: 31 type: Transform - - uid: 7822 + - uid: 497 components: - - pos: 11.5,-4.5 + - pos: -6.5,21.5 parent: 31 type: Transform - - uid: 7849 + - uid: 498 components: - - pos: 26.5,-25.5 + - pos: -6.5,20.5 parent: 31 type: Transform - - uid: 7850 + - uid: 556 components: - - pos: 27.5,-25.5 + - pos: 14.5,27.5 parent: 31 type: Transform - - uid: 7908 + - uid: 623 components: - - pos: 11.5,-2.5 + - pos: -32.5,-20.5 parent: 31 type: Transform - - uid: 8708 + - uid: 628 components: - - pos: -35.5,-25.5 + - pos: 20.5,1.5 parent: 31 type: Transform - - uid: 8746 + - uid: 633 components: - - pos: -35.5,-24.5 + - rot: 3.141592653589793 rad + pos: 46.5,-14.5 parent: 31 type: Transform - - uid: 8940 + - uid: 643 components: - - pos: -18.5,-4.5 + - pos: 31.5,1.5 parent: 31 type: Transform - - uid: 9043 + - uid: 690 components: - - pos: 7.5,19.5 + - pos: 34.5,-16.5 parent: 31 type: Transform - - uid: 9371 + - uid: 691 components: - - pos: -23.5,-21.5 + - pos: 33.5,-16.5 parent: 31 type: Transform - - uid: 9591 + - uid: 698 components: - - pos: -36.5,19.5 + - pos: 29.5,11.5 parent: 31 type: Transform - - uid: 9592 + - uid: 701 components: - - pos: -34.5,19.5 + - pos: -17.5,-28.5 parent: 31 type: Transform - - uid: 9600 + - uid: 706 components: - - pos: -37.5,19.5 + - pos: 10.5,-32.5 parent: 31 type: Transform -- proto: TelecomServer - entities: - - uid: 10228 + - uid: 707 components: - - pos: -8.5,28.5 + - pos: 19.5,-26.5 parent: 31 type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 10229 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 10230 + - uid: 708 components: - - pos: -8.5,29.5 + - pos: 18.5,-26.5 parent: 31 type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 10231 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 10232 + - uid: 709 components: - - pos: -8.5,30.5 + - pos: 17.5,-26.5 parent: 31 type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 10233 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 10234 + - uid: 723 components: - - pos: -8.5,31.5 + - pos: -29.5,-20.5 parent: 31 type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 10235 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 10236 + - uid: 730 components: - - pos: -4.5,31.5 + - pos: -40.5,-0.5 parent: 31 type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 10237 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 10238 + - uid: 737 components: - - pos: -4.5,30.5 + - pos: -2.5,-24.5 parent: 31 type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 10239 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 10240 + - uid: 745 components: - - pos: -4.5,29.5 + - rot: -1.5707963267948966 rad + pos: 46.5,-12.5 parent: 31 type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 10241 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 10242 + - uid: 752 components: - - pos: -4.5,28.5 + - pos: -44.5,11.5 parent: 31 type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 10243 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- proto: TintedWindow - entities: - - uid: 1444 + - uid: 779 components: - - rot: -1.5707963267948966 rad - pos: -28.5,2.5 + - pos: 13.5,23.5 parent: 31 type: Transform - - uid: 1445 + - uid: 781 components: - - rot: -1.5707963267948966 rad - pos: -29.5,2.5 + - pos: 37.5,21.5 parent: 31 type: Transform -- proto: ToiletEmpty - entities: - - uid: 793 + - uid: 787 components: - - rot: -1.5707963267948966 rad - pos: 13.5,26.5 + - pos: 37.5,22.5 parent: 31 type: Transform -- proto: ToolboxElectricalFilled - entities: - - uid: 12 + - uid: 809 components: - - pos: -29.499815,8.100836 + - pos: -2.5,-21.5 parent: 31 type: Transform - - uid: 3947 + - uid: 825 components: - - pos: 9.510484,28.980497 + - pos: 58.5,8.5 parent: 31 type: Transform - - uid: 4290 + - uid: 830 components: - - pos: 32.484333,-2.403047 + - rot: 3.141592653589793 rad + pos: 54.5,9.5 parent: 31 type: Transform - - uid: 8892 + - uid: 853 components: - - pos: 45.501183,1.6234736 + - pos: 55.5,-3.5 parent: 31 type: Transform -- proto: ToolboxEmergencyFilled - entities: - - uid: 1054 + - uid: 854 components: - - pos: 9.510484,28.589872 + - pos: 56.5,-6.5 parent: 31 type: Transform - - uid: 8891 + - uid: 859 components: - - pos: 45.516808,1.4828486 + - pos: 50.5,-1.5 parent: 31 type: Transform -- proto: ToolboxGoldFilled - entities: - - uid: 4194 + - uid: 860 components: - - pos: -2.63186,18.64349 + - pos: 48.5,-1.5 parent: 31 type: Transform -- proto: ToolboxMechanical - entities: - - uid: 8848 + - uid: 861 components: - - pos: 30.50418,14.701381 + - pos: 16.5,-26.5 parent: 31 type: Transform -- proto: ToolboxMechanicalFilled - entities: - - uid: 7115 + - uid: 865 components: - - pos: 6.4733424,10.140543 + - pos: -6.5,-19.5 parent: 31 type: Transform - - uid: 7116 + - uid: 868 components: - - pos: 6.4755855,10.362613 + - pos: 47.5,-1.5 parent: 31 type: Transform - - uid: 8302 + - uid: 869 components: - - pos: 6.4755855,10.669922 + - pos: 51.5,-1.5 parent: 31 type: Transform -- proto: ToyAmongPequeno - entities: - - uid: 9685 + - uid: 876 components: - - pos: 29.13865,-15.849083 + - pos: 55.5,-12.5 parent: 31 type: Transform -- proto: ToyDeathRipley - entities: - - uid: 2030 + - uid: 880 components: - - pos: -24.569178,-5.0530295 + - pos: 54.5,-6.5 parent: 31 type: Transform -- proto: ToyFigurinePassenger - entities: - - uid: 7324 + - uid: 881 components: - - pos: 11.08925,-23.08905 + - pos: 46.5,-7.5 parent: 31 type: Transform -- proto: ToyFireRipley - entities: - - uid: 2029 + - uid: 882 components: - - pos: -23.412928,-6.0686545 + - pos: 46.5,-6.5 parent: 31 type: Transform -- proto: ToyMouse - entities: - - uid: 7297 + - uid: 883 components: - - pos: 12.359465,-27.5578 + - pos: 53.5,-12.5 parent: 31 type: Transform -- proto: ToyRipley - entities: - - uid: 7325 + - uid: 950 components: - - pos: 11.698625,-23.823425 + - pos: 31.5,-16.5 parent: 31 type: Transform -- proto: ToyRubberDuck - entities: - - uid: 67 + - uid: 951 components: - - pos: 12.492016,27.532398 + - pos: 28.5,-16.5 parent: 31 type: Transform -- proto: ToySkeleton - entities: - - uid: 7326 + - uid: 956 components: - - pos: 10.71425,-23.8703 + - pos: 35.5,21.5 parent: 31 type: Transform -- proto: ToySpawner - entities: - - uid: 148 + - uid: 958 components: - - pos: -30.5,-2.5 + - pos: 29.5,-16.5 parent: 31 type: Transform - - uid: 7790 + - uid: 975 components: - - pos: -30.5,13.5 + - pos: -37.5,20.5 parent: 31 type: Transform -- proto: TrashBag - entities: - - uid: 798 + - uid: 1035 components: - - pos: 26.417616,0.6089213 + - pos: -6.5,22.5 parent: 31 type: Transform - - uid: 812 + - uid: 1036 components: - - pos: 26.667616,0.6089213 + - pos: 31.5,-11.5 parent: 31 type: Transform -- proto: TrashBananaPeel - entities: - - uid: 7351 + - uid: 1072 components: - - pos: -19.590536,-8.611897 + - pos: 51.5,4.5 parent: 31 type: Transform - - uid: 8267 + - uid: 1073 components: - - pos: 38.48186,-17.514906 + - pos: 51.5,5.5 parent: 31 type: Transform -- proto: trayScanner - entities: - - uid: 8901 + - uid: 1074 components: - - pos: 48.60447,5.4525433 + - pos: 51.5,-0.5 parent: 31 type: Transform -- proto: TwoWayLever - entities: - - uid: 7537 + - uid: 1075 components: - - pos: -22.5,-14.5 + - pos: 47.5,-0.5 parent: 31 type: Transform - - linkedPorts: - 7532: - - Middle: Off - - Right: Reverse - - Left: Forward - 7533: - - Middle: Off - - Right: Reverse - - Left: Forward - 7534: - - Middle: Off - - Right: Reverse - - Left: Forward - 7535: - - Middle: Off - - Right: Reverse - - Left: Forward - 7538: - - Middle: Off - - Right: Reverse - - Left: Forward - 7539: - - Middle: Off - - Right: Reverse - - Left: Forward - 7540: - - Middle: Off - - Right: Reverse - - Left: Forward - 7531: - - Middle: Off - - Right: Reverse - - Left: Forward - type: DeviceLinkSource - - uid: 9756 + - uid: 1076 components: - - pos: -24.5,-17.5 + - pos: 47.5,0.5 parent: 31 type: Transform - - linkedPorts: - 9755: - - Left: Forward - - Right: Reverse - - Middle: Off - 9754: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource -- proto: UniformPrinter - entities: - - uid: 8408 + - uid: 1077 components: - - pos: 8.5,21.5 + - pos: 46.5,0.5 parent: 31 type: Transform - - materialWhiteList: - - Cloth - - Durathread - type: MaterialStorage -- proto: UprightPianoInstrument - entities: - - uid: 7336 + - uid: 1085 components: - - rot: 3.141592653589793 rad - pos: -19.5,-4.5 + - pos: -14.5,-28.5 parent: 31 type: Transform -- proto: Vaccinator - entities: - - uid: 8436 + - uid: 1098 components: - - pos: 19.5,-4.5 + - pos: 45.5,0.5 parent: 31 type: Transform -- proto: VehicleKeyJanicart - entities: - - uid: 9111 + - uid: 1100 components: - - pos: -20.57317,7.5494494 + - pos: -0.5,9.5 parent: 31 type: Transform -- proto: VehicleKeySecway - entities: - - uid: 9112 + - uid: 1120 components: - - pos: -6.8301983,14.380218 + - pos: 26.5,-11.5 parent: 31 type: Transform - - uid: 9117 + - uid: 1147 components: - - pos: -6.6767583,14.69983 + - pos: -15.5,-28.5 parent: 31 type: Transform -- proto: VendingBarDrobe - entities: - - uid: 2420 + - uid: 1150 components: - - flags: SessionSpecific - type: MetaData - - pos: -12.5,-6.5 + - pos: 29.5,18.5 parent: 31 type: Transform -- proto: VendingMachineAtmosDrobe - entities: - - uid: 6341 + - uid: 1152 components: - - flags: SessionSpecific - type: MetaData - - pos: 44.5,13.5 + - rot: -1.5707963267948966 rad + pos: 29.5,22.5 parent: 31 type: Transform -- proto: VendingMachineBooze - entities: - - uid: 970 + - uid: 1163 components: - - flags: SessionSpecific - type: MetaData - - pos: -6.5,-6.5 + - pos: 26.5,2.5 parent: 31 type: Transform -- proto: VendingMachineCargoDrobe - entities: - - uid: 7130 + - uid: 1168 components: - - flags: SessionSpecific - type: MetaData - - pos: 12.5,12.5 + - pos: 15.5,2.5 parent: 31 type: Transform -- proto: VendingMachineCart - entities: - - uid: 153 + - uid: 1169 components: - - flags: SessionSpecific - type: MetaData - - pos: 10.5,21.5 + - pos: 20.5,0.5 parent: 31 type: Transform -- proto: VendingMachineChang - entities: - - uid: 792 + - uid: 1182 components: - - flags: SessionSpecific - type: MetaData - - pos: -34.5,10.5 + - pos: -6.5,19.5 parent: 31 type: Transform - - uid: 9145 + - uid: 1184 components: - - flags: SessionSpecific - type: MetaData - - pos: 5.5,-17.5 + - pos: 44.5,0.5 parent: 31 type: Transform -- proto: VendingMachineChapel - entities: - - uid: 260 + - uid: 1195 components: - - flags: SessionSpecific - type: MetaData - - pos: -31.5,18.5 + - pos: 30.5,-11.5 parent: 31 type: Transform -- proto: VendingMachineChefDrobe - entities: - - uid: 3986 + - uid: 1232 components: - - flags: SessionSpecific - type: MetaData - - pos: -13.5,-3.5 + - pos: 34.5,24.5 parent: 31 type: Transform -- proto: VendingMachineChefvend - entities: - - uid: 911 + - uid: 1257 components: - - flags: SessionSpecific - type: MetaData - - pos: -9.5,-3.5 + - pos: 25.5,2.5 parent: 31 type: Transform -- proto: VendingMachineChemDrobe - entities: - - uid: 578 + - uid: 1269 components: - - flags: SessionSpecific - type: MetaData - - pos: 17.5,1.5 + - pos: -0.5,11.5 parent: 31 type: Transform -- proto: VendingMachineChemicals - entities: - - uid: 1099 + - uid: 1270 components: - - flags: SessionSpecific - type: MetaData - - pos: 14.5,-1.5 + - pos: 20.5,-2.5 parent: 31 type: Transform -- proto: VendingMachineCigs - entities: - - uid: 108 + - uid: 1277 components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -2.5,1.5 + - pos: -10.5,22.5 parent: 31 type: Transform - - uid: 473 + - uid: 1290 components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: 14.5,21.5 + - pos: 30.5,16.5 parent: 31 type: Transform - - uid: 7797 + - uid: 1296 components: - - flags: SessionSpecific - type: MetaData - - pos: -7.5,17.5 + - pos: 11.5,18.5 parent: 31 type: Transform - - uid: 8705 + - uid: 1317 components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -32.5,-29.5 + - pos: 20.5,-1.5 parent: 31 type: Transform -- proto: VendingMachineClothing - entities: - - uid: 7647 + - uid: 1348 components: - - flags: SessionSpecific - type: MetaData - - pos: -29.5,-7.5 + - pos: 29.5,15.5 parent: 31 type: Transform -- proto: VendingMachineCoffee - entities: - - uid: 983 + - uid: 1377 components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: 0.5,23.5 + - pos: 61.5,5.5 parent: 31 type: Transform - - uid: 2190 + - uid: 1393 components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: -11.5,-17.5 + - pos: 9.5,32.5 parent: 31 type: Transform - - uid: 2362 + - uid: 1408 components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: 5.5,-13.5 + - pos: 8.5,33.5 parent: 31 type: Transform - - uid: 4012 + - uid: 1413 components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: -13.5,11.5 + - pos: 13.5,28.5 parent: 31 type: Transform - - uid: 8738 + - uid: 1415 components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: -36.5,-23.5 + - pos: -11.5,9.5 parent: 31 type: Transform - - uid: 9039 + - uid: 1502 components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: 35.5,6.5 + - pos: 17.5,2.5 parent: 31 type: Transform - - uid: 9328 + - uid: 1503 components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: -38.5,-5.5 + - pos: 16.5,2.5 parent: 31 type: Transform -- proto: VendingMachineCola - entities: - - uid: 984 + - uid: 1504 components: - - flags: SessionSpecific - type: MetaData - - pos: 1.5,21.5 + - pos: 18.5,2.5 parent: 31 type: Transform - - uid: 1229 + - uid: 1545 components: - - flags: SessionSpecific - type: MetaData - - pos: -34.5,2.5 + - pos: 29.5,7.5 parent: 31 type: Transform - - uid: 7958 + - uid: 1546 components: - - flags: SessionSpecific - type: MetaData - - pos: 25.5,6.5 + - pos: 37.5,7.5 parent: 31 type: Transform - - uid: 9327 + - uid: 1557 components: - - flags: SessionSpecific - type: MetaData - - pos: -38.5,-4.5 + - pos: 20.5,-26.5 parent: 31 type: Transform -- proto: VendingMachineDinnerware - entities: - - uid: 990 + - uid: 1559 components: - - flags: SessionSpecific - name: Dinnerware - type: MetaData - - pos: -13.5,1.5 + - pos: 45.5,21.5 parent: 31 type: Transform -- proto: VendingMachineDiscount - entities: - - uid: 760 + - uid: 1560 components: - - flags: SessionSpecific - type: MetaData - - pos: -30.5,-7.5 + - pos: 45.5,22.5 parent: 31 type: Transform -- proto: VendingMachineEngiDrobe - entities: - - uid: 3283 + - uid: 1564 components: - - flags: SessionSpecific - type: MetaData - - pos: 35.5,0.5 + - pos: 45.5,23.5 parent: 31 type: Transform -- proto: VendingMachineEngivend - entities: - - uid: 1256 + - uid: 1565 components: - - flags: SessionSpecific - type: MetaData - - pos: 31.5,-0.5 + - pos: 43.5,20.5 parent: 31 type: Transform -- proto: VendingMachineGames - entities: - - uid: 6696 + - uid: 1566 components: - - flags: SessionSpecific - type: MetaData - - pos: 5.5,-16.5 + - pos: 45.5,24.5 parent: 31 type: Transform -- proto: VendingMachineHappyHonk - entities: - - uid: 4174 + - uid: 1567 components: - - flags: SessionSpecific - type: MetaData - - pos: -9.5,-4.5 + - pos: 39.5,24.5 parent: 31 type: Transform -- proto: VendingMachineHydrobe - entities: - - uid: 4126 + - uid: 1568 components: - - flags: SessionSpecific - type: MetaData - - pos: -14.5,-6.5 + - pos: 38.5,24.5 parent: 31 type: Transform -- proto: VendingMachineJaniDrobe - entities: - - uid: 800 + - uid: 1574 components: - - flags: SessionSpecific - type: MetaData - - pos: -19.5,10.5 + - pos: 30.5,1.5 parent: 31 type: Transform -- proto: VendingMachineMedical - entities: - - uid: 1148 + - uid: 1583 components: - - flags: SessionSpecific - type: MetaData - - pos: 14.5,-11.5 + - pos: 23.5,22.5 parent: 31 type: Transform - - uid: 7277 + - uid: 1584 components: - - flags: SessionSpecific - type: MetaData - - pos: 12.5,-7.5 + - pos: 19.5,22.5 parent: 31 type: Transform - - uid: 7432 + - uid: 1586 components: - - flags: SessionSpecific - type: MetaData - - pos: 0.5,14.5 + - pos: 19.5,19.5 parent: 31 type: Transform -- proto: VendingMachineMediDrobe - entities: - - uid: 1143 + - uid: 1600 components: - - flags: SessionSpecific - type: MetaData - - pos: 24.5,-4.5 + - pos: 39.5,1.5 + parent: 31 + type: Transform + - uid: 1610 + components: + - pos: 36.5,7.5 + parent: 31 + type: Transform + - uid: 1611 + components: + - pos: 35.5,7.5 parent: 31 type: Transform -- proto: VendingMachineNutri - entities: - - uid: 7436 + - uid: 1616 components: - - flags: SessionSpecific - type: MetaData - - pos: -15.5,-8.5 + - pos: 36.5,-1.5 parent: 31 type: Transform -- proto: VendingMachineRoboDrobe - entities: - - uid: 2331 + - uid: 1617 components: - - flags: SessionSpecific - type: MetaData - - pos: -5.5,-29.5 + - pos: 36.5,-2.5 parent: 31 type: Transform -- proto: VendingMachineRobotics - entities: - - uid: 2354 + - uid: 1618 components: - - flags: SessionSpecific - type: MetaData - - pos: -4.5,-29.5 + - pos: 37.5,-2.5 parent: 31 type: Transform -- proto: VendingMachineSalvage - entities: - - uid: 7568 + - uid: 1619 components: - - flags: SessionSpecific - name: Salvage Equipment - type: MetaData - - pos: 24.5,15.5 + - pos: 38.5,-2.5 parent: 31 type: Transform -- proto: VendingMachineSciDrobe - entities: - - uid: 1386 + - uid: 1620 components: - - flags: SessionSpecific - type: MetaData - - pos: -10.5,-17.5 + - pos: 39.5,-2.5 parent: 31 type: Transform -- proto: VendingMachineSec - entities: - - uid: 7834 + - uid: 1621 components: - - flags: SessionSpecific - type: MetaData - - pos: -15.5,13.5 + - pos: 41.5,-2.5 parent: 31 type: Transform -- proto: VendingMachineSecDrobe - entities: - - uid: 474 + - uid: 1622 components: - - flags: SessionSpecific - type: MetaData - - pos: -9.5,17.5 + - pos: 40.5,-2.5 parent: 31 type: Transform -- proto: VendingMachineSeeds - entities: - - uid: 4127 + - uid: 1623 components: - - flags: SessionSpecific - type: MetaData - - pos: -17.5,-2.5 + - pos: 41.5,-1.5 parent: 31 type: Transform -- proto: VendingMachineSeedsUnlocked - entities: - - uid: 9701 + - uid: 1624 components: - - flags: SessionSpecific - type: MetaData - - pos: -15.5,8.5 + - pos: 41.5,-0.5 parent: 31 type: Transform -- proto: VendingMachineSmartFridge - entities: - - uid: 735 + - uid: 1625 components: - - flags: SessionSpecific - type: MetaData - - pos: 16.5,-3.5 + - pos: 41.5,0.5 parent: 31 type: Transform - - uid: 918 + - uid: 1626 components: - - flags: SessionSpecific - type: MetaData - - pos: -15.5,1.5 + - pos: 41.5,1.5 parent: 31 type: Transform -- proto: VendingMachineSnack - entities: - - uid: 133 + - uid: 1627 components: - - flags: SessionSpecific - type: MetaData - - pos: -22.5,0.5 + - pos: 36.5,0.5 parent: 31 type: Transform - - uid: 7959 + - uid: 1628 components: - - flags: SessionSpecific - type: MetaData - - pos: 26.5,6.5 + - pos: 36.5,1.5 parent: 31 type: Transform - - uid: 8422 + - uid: 1632 components: - - flags: SessionSpecific - type: MetaData - - pos: -3.5,1.5 + - pos: 28.5,-1.5 parent: 31 type: Transform -- proto: VendingMachineSovietSoda - entities: - - uid: 7561 + - uid: 1633 components: - - flags: SessionSpecific - type: MetaData - - pos: -11.5,-9.5 + - pos: 28.5,-2.5 parent: 31 type: Transform - - uid: 9574 + - uid: 1635 components: - - flags: SessionSpecific - type: MetaData - - pos: 19.5,-24.5 + - pos: 21.5,-26.5 parent: 31 type: Transform -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 9135 + - uid: 1636 components: - - flags: SessionSpecific - name: tank dispenser - type: MetaData - - pos: 8.5,8.5 + - pos: 22.5,-26.5 parent: 31 type: Transform - - uid: 9137 + - uid: 1642 components: - - flags: SessionSpecific - name: tank dispenser - type: MetaData - - pos: 37.5,11.5 + - pos: 23.5,-26.5 parent: 31 type: Transform - - uid: 9934 + - uid: 1648 components: - - flags: SessionSpecific - type: MetaData - - pos: 28.5,19.5 + - pos: 28.5,-15.5 parent: 31 type: Transform -- proto: VendingMachineTheater - entities: - - uid: 7339 + - uid: 1649 components: - - flags: SessionSpecific - type: MetaData - - pos: -19.5,-7.5 + - pos: 34.5,-15.5 parent: 31 type: Transform -- proto: VendingMachineVendomat - entities: - - uid: 1227 + - uid: 1650 components: - - flags: SessionSpecific - type: MetaData - - pos: -27.5,11.5 + - pos: 30.5,-16.5 parent: 31 type: Transform - - uid: 7100 + - uid: 1651 components: - - flags: SessionSpecific - type: MetaData - - pos: 50.5,3.5 + - pos: 28.5,-11.5 parent: 31 type: Transform -- proto: VendingMachineViroDrobe - entities: - - uid: 2910 + - uid: 1656 components: - - flags: SessionSpecific - type: MetaData - - pos: 23.5,-4.5 + - pos: -16.5,26.5 parent: 31 type: Transform -- proto: VendingMachineYouTool - entities: - - uid: 194 + - uid: 1658 components: - - flags: SessionSpecific - type: MetaData - - pos: -28.5,11.5 + - pos: 23.5,-12.5 parent: 31 type: Transform - - uid: 1521 + - uid: 1661 components: - - flags: SessionSpecific - type: MetaData - - pos: 31.5,0.5 + - pos: -11.5,26.5 parent: 31 type: Transform -- proto: WallmountTelescreen - entities: - - uid: 425 + - uid: 1664 components: - - pos: -9.5,22.5 + - pos: -10.5,26.5 parent: 31 type: Transform - - uid: 3927 + - uid: 1667 components: - - rot: 3.141592653589793 rad - pos: -0.5,9.5 + - pos: 20.5,-13.5 parent: 31 type: Transform - - uid: 9512 + - uid: 1680 components: - - pos: 11.5,25.5 + - pos: -19.5,26.5 parent: 31 type: Transform -- proto: WallReinforced - entities: - - uid: 30 + - uid: 1681 components: - - pos: 27.5,14.5 + - pos: 24.5,-12.5 parent: 31 type: Transform - - uid: 32 + - uid: 1687 components: - - pos: -10.5,-30.5 + - pos: 51.5,0.5 parent: 31 type: Transform - - uid: 33 + - uid: 1691 components: - - pos: 26.5,22.5 + - pos: 10.5,12.5 parent: 31 type: Transform - - uid: 34 + - uid: 1699 components: - - pos: 20.5,-0.5 + - pos: -8.5,26.5 parent: 31 type: Transform - - uid: 38 + - uid: 1712 components: - - pos: 39.5,22.5 + - pos: 31.5,7.5 parent: 31 type: Transform - - uid: 50 + - uid: 1713 components: - - pos: 35.5,23.5 + - pos: 30.5,7.5 parent: 31 type: Transform - - uid: 59 + - uid: 1717 components: - - pos: 35.5,20.5 + - pos: 30.5,6.5 parent: 31 type: Transform - - uid: 72 + - uid: 1718 components: - - pos: -10.5,-33.5 + - pos: 28.5,-3.5 parent: 31 type: Transform - - uid: 74 + - uid: 1719 components: - - pos: 39.5,23.5 + - pos: 28.5,-4.5 parent: 31 type: Transform - - uid: 83 + - uid: 1745 components: - - pos: 13.5,2.5 + - pos: 27.5,11.5 parent: 31 type: Transform - - uid: 84 + - uid: 1746 components: - - pos: -16.5,13.5 + - pos: 25.5,7.5 parent: 31 type: Transform - - uid: 101 + - uid: 1747 components: - - pos: 28.5,14.5 + - pos: 25.5,8.5 parent: 31 type: Transform - - uid: 105 + - uid: 1749 components: - - pos: -12.5,-28.5 + - pos: 28.5,7.5 parent: 31 type: Transform - - uid: 114 + - uid: 1750 components: - - pos: 29.5,9.5 + - pos: 26.5,7.5 parent: 31 type: Transform - - uid: 121 + - uid: 1751 components: - - pos: -14.5,26.5 + - pos: 27.5,7.5 parent: 31 type: Transform - - uid: 122 + - uid: 1776 components: - - pos: -13.5,26.5 + - pos: -40.5,11.5 parent: 31 type: Transform - - uid: 163 + - uid: 1783 components: - - pos: 20.5,-1.5 + - pos: 11.5,12.5 parent: 31 type: Transform - - uid: 219 + - uid: 1785 components: - - pos: -10.5,6.5 + - pos: 9.5,12.5 parent: 31 type: Transform - - uid: 305 + - uid: 1786 components: - - pos: -1.5,11.5 + - pos: 7.5,12.5 parent: 31 type: Transform - - uid: 306 + - uid: 1787 components: - - pos: 40.5,1.5 + - pos: 6.5,12.5 parent: 31 type: Transform - - uid: 447 + - uid: 1788 components: - - pos: 37.5,20.5 + - pos: 5.5,12.5 parent: 31 type: Transform - - uid: 449 + - uid: 1789 components: - - pos: 37.5,23.5 + - pos: 5.5,11.5 parent: 31 type: Transform - - uid: 475 + - uid: 1790 components: - - pos: -7.5,22.5 + - pos: 5.5,10.5 parent: 31 type: Transform - - uid: 476 + - uid: 1791 components: - - pos: -8.5,22.5 + - pos: 5.5,9.5 parent: 31 type: Transform - - uid: 497 + - uid: 1792 components: - - pos: -6.5,21.5 + - pos: 5.5,8.5 parent: 31 type: Transform - - uid: 498 + - uid: 1793 components: - - pos: -6.5,20.5 + - pos: 5.5,7.5 parent: 31 type: Transform - - uid: 556 + - uid: 1794 components: - - pos: 14.5,27.5 + - pos: 5.5,6.5 parent: 31 type: Transform - - uid: 581 + - uid: 1795 components: - - pos: 29.5,10.5 + - pos: 11.5,6.5 parent: 31 type: Transform - - uid: 628 + - uid: 1797 components: - - pos: 20.5,1.5 + - pos: 11.5,10.5 parent: 31 type: Transform - - uid: 643 + - uid: 1798 components: - - pos: 31.5,1.5 + - pos: 11.5,9.5 parent: 31 type: Transform - - uid: 690 + - uid: 1799 components: - - pos: 34.5,-16.5 + - pos: 11.5,8.5 parent: 31 type: Transform - - uid: 691 + - uid: 1800 components: - - pos: 33.5,-16.5 + - pos: 11.5,7.5 parent: 31 type: Transform - - uid: 694 + - uid: 1801 components: - - pos: 39.5,-8.5 + - pos: 10.5,6.5 parent: 31 type: Transform - - uid: 695 + - uid: 1802 components: - - pos: 39.5,-7.5 + - pos: 6.5,6.5 parent: 31 type: Transform - - uid: 697 + - uid: 1805 components: - - pos: 39.5,-6.5 + - pos: -39.5,11.5 parent: 31 type: Transform - - uid: 698 + - uid: 1814 components: - - pos: 29.5,11.5 + - pos: 6.5,16.5 parent: 31 type: Transform - - uid: 706 + - uid: 1815 components: - - pos: 10.5,-32.5 + - pos: 7.5,15.5 parent: 31 type: Transform - - uid: 707 + - uid: 1816 components: - - pos: 19.5,-26.5 + - pos: 8.5,15.5 parent: 31 type: Transform - - uid: 708 + - uid: 1817 components: - - pos: 18.5,-26.5 + - pos: 9.5,15.5 parent: 31 type: Transform - - uid: 709 + - uid: 1818 components: - - pos: 17.5,-26.5 + - pos: 10.5,15.5 parent: 31 type: Transform - - uid: 730 + - uid: 1819 components: - - pos: -40.5,-0.5 + - pos: 11.5,15.5 parent: 31 type: Transform - - uid: 752 + - uid: 1820 components: - - pos: -44.5,11.5 + - pos: 11.5,16.5 parent: 31 type: Transform - - uid: 757 + - uid: 1821 components: - - pos: 17.5,8.5 + - pos: 11.5,17.5 parent: 31 type: Transform - - uid: 779 + - uid: 1824 components: - - pos: 13.5,23.5 + - pos: 11.5,21.5 parent: 31 type: Transform - - uid: 781 + - uid: 1826 components: - - pos: 37.5,21.5 + - pos: 6.5,21.5 parent: 31 type: Transform - - uid: 787 + - uid: 1828 components: - - pos: 37.5,22.5 + - pos: 6.5,15.5 parent: 31 type: Transform - - uid: 825 + - uid: 1829 components: - - pos: 58.5,8.5 + - pos: 10.5,22.5 parent: 31 type: Transform - - uid: 826 + - uid: 1830 components: - - pos: 57.5,8.5 + - pos: 9.5,22.5 parent: 31 type: Transform - - uid: 827 + - uid: 1831 components: - - pos: 55.5,8.5 + - pos: 8.5,22.5 parent: 31 type: Transform - - uid: 828 + - uid: 1832 components: - - pos: 54.5,7.5 + - pos: 7.5,22.5 parent: 31 type: Transform - - uid: 859 + - uid: 1833 components: - - pos: 50.5,-1.5 + - pos: 6.5,22.5 parent: 31 type: Transform - - uid: 860 + - uid: 1834 components: - - pos: 48.5,-1.5 + - pos: 5.5,22.5 parent: 31 type: Transform - - uid: 861 + - uid: 1836 components: - - pos: 16.5,-26.5 + - pos: 12.5,28.5 parent: 31 type: Transform - - uid: 863 + - uid: 1837 components: - - pos: -18.5,-19.5 + - pos: 11.5,28.5 parent: 31 type: Transform - - uid: 864 + - uid: 1839 components: - - pos: -18.5,-20.5 + - pos: 10.5,27.5 parent: 31 type: Transform - - uid: 865 + - uid: 1840 components: - - pos: -18.5,-21.5 + - pos: 10.5,28.5 parent: 31 type: Transform - - uid: 868 + - uid: 1841 components: - - pos: 47.5,-1.5 + - pos: 10.5,30.5 parent: 31 type: Transform - - uid: 869 + - uid: 1842 components: - - pos: 51.5,-1.5 + - pos: -1.5,32.5 parent: 31 type: Transform - - uid: 877 + - uid: 1843 components: - - pos: 50.5,-7.5 + - pos: -2.5,32.5 parent: 31 type: Transform - - uid: 879 + - uid: 1845 components: - - pos: 48.5,-7.5 + - pos: -3.5,28.5 parent: 31 type: Transform - - uid: 881 + - uid: 1846 components: - - pos: 46.5,-7.5 + - pos: -3.5,27.5 parent: 31 type: Transform - - uid: 882 + - uid: 1848 components: - - pos: 46.5,-6.5 + - pos: -3.5,25.5 parent: 31 type: Transform - - uid: 883 + - uid: 1849 components: - - pos: 46.5,-5.5 + - pos: 1.5,22.5 parent: 31 type: Transform - - uid: 884 + - uid: 1850 components: - - pos: 46.5,-4.5 + - pos: 0.5,22.5 parent: 31 type: Transform - - uid: 885 + - uid: 1851 components: - - pos: 46.5,-3.5 + - pos: -0.5,22.5 parent: 31 type: Transform - - uid: 886 + - uid: 1853 components: - - pos: 46.5,-2.5 + - pos: -2.5,22.5 parent: 31 type: Transform - - uid: 887 + - uid: 1854 components: - - pos: 46.5,-1.5 + - pos: -3.5,22.5 parent: 31 type: Transform - - uid: 938 + - uid: 1855 components: - - pos: 9.5,-18.5 + - pos: -3.5,23.5 parent: 31 type: Transform - - uid: 941 + - uid: 1856 components: - - pos: -0.5,-28.5 + - pos: -3.5,24.5 parent: 31 type: Transform - - uid: 942 + - uid: 1857 components: - - pos: -1.5,-28.5 + - pos: 1.5,26.5 parent: 31 type: Transform - - uid: 943 + - uid: 1858 components: - - pos: -2.5,-28.5 + - pos: 1.5,27.5 parent: 31 type: Transform - - uid: 944 + - uid: 1859 components: - - pos: -3.5,-28.5 + - pos: 0.5,27.5 parent: 31 type: Transform - - uid: 950 + - uid: 1860 components: - - pos: 31.5,-16.5 + - pos: -2.5,27.5 parent: 31 type: Transform - - uid: 951 + - uid: 1861 components: - - pos: 28.5,-16.5 + - pos: 1.5,23.5 parent: 31 type: Transform - - uid: 952 + - uid: 1862 components: - - pos: 33.5,20.5 + - pos: 8.5,27.5 parent: 31 type: Transform - - uid: 955 + - uid: 1863 components: - - pos: 33.5,21.5 + - pos: 7.5,27.5 parent: 31 type: Transform - - uid: 956 + - uid: 1864 components: - - pos: 35.5,21.5 + - pos: 6.5,27.5 parent: 31 type: Transform - - uid: 958 + - uid: 1865 components: - - pos: 29.5,-16.5 + - pos: 5.5,27.5 parent: 31 type: Transform - - uid: 975 + - uid: 1866 components: - - pos: -37.5,20.5 + - pos: 5.5,23.5 parent: 31 type: Transform - - uid: 1035 + - uid: 1867 components: - - pos: -6.5,22.5 + - pos: 5.5,26.5 parent: 31 type: Transform - - uid: 1036 + - uid: 1869 components: - - pos: 31.5,-11.5 + - pos: 5.5,24.5 parent: 31 type: Transform - - uid: 1072 + - uid: 1876 components: - - pos: 51.5,4.5 + - pos: -1.5,33.5 parent: 31 type: Transform - - uid: 1073 + - uid: 1890 components: - - pos: 51.5,5.5 + - pos: 8.5,32.5 parent: 31 type: Transform - - uid: 1074 + - uid: 1892 components: - - pos: 51.5,-0.5 + - pos: 1.5,15.5 parent: 31 type: Transform - - uid: 1075 + - uid: 1893 components: - - pos: 47.5,-0.5 + - pos: 0.5,15.5 parent: 31 type: Transform - - uid: 1076 + - uid: 1894 components: - - pos: 47.5,0.5 + - pos: -0.5,15.5 parent: 31 type: Transform - - uid: 1077 + - uid: 1895 components: - - pos: 46.5,0.5 + - pos: -1.5,15.5 parent: 31 type: Transform - - uid: 1083 + - uid: 1896 components: - - pos: -10.5,-31.5 + - pos: -2.5,15.5 parent: 31 type: Transform - - uid: 1098 + - uid: 1897 components: - - pos: 45.5,0.5 + - pos: -3.5,15.5 parent: 31 type: Transform - - uid: 1100 + - uid: 1898 components: - - pos: -0.5,9.5 + - pos: -4.5,15.5 parent: 31 type: Transform - - uid: 1134 + - uid: 1899 components: - - pos: 13.5,-3.5 + - pos: -4.5,16.5 parent: 31 type: Transform - - uid: 1136 + - uid: 1900 components: - - pos: 29.5,17.5 + - pos: -4.5,17.5 parent: 31 type: Transform - - uid: 1137 + - uid: 1901 components: - - pos: 29.5,16.5 + - pos: -4.5,18.5 parent: 31 type: Transform - - uid: 1150 + - uid: 1902 components: - - pos: 29.5,18.5 + - pos: -4.5,19.5 parent: 31 type: Transform - - uid: 1152 + - uid: 1903 components: - - rot: -1.5707963267948966 rad - pos: 29.5,22.5 + - pos: -5.5,19.5 parent: 31 type: Transform - - uid: 1157 + - uid: 1905 components: - - pos: 18.5,-3.5 + - pos: -3.5,19.5 parent: 31 type: Transform - - uid: 1163 + - uid: 1906 components: - - pos: 26.5,2.5 + - pos: -2.5,19.5 parent: 31 type: Transform - - uid: 1168 + - uid: 1907 components: - - pos: 15.5,2.5 + - pos: -1.5,19.5 parent: 31 type: Transform - - uid: 1169 + - uid: 1908 components: - - pos: 20.5,0.5 + - pos: -0.5,19.5 parent: 31 type: Transform - - uid: 1182 + - uid: 1909 components: - - pos: -6.5,19.5 + - pos: 0.5,19.5 parent: 31 type: Transform - - uid: 1184 + - uid: 1910 components: - - pos: 44.5,0.5 + - pos: 0.5,18.5 parent: 31 type: Transform - - uid: 1195 + - uid: 1911 components: - - pos: 30.5,-11.5 + - pos: 0.5,16.5 parent: 31 type: Transform - - uid: 1198 + - uid: 1920 components: - - pos: 33.5,23.5 + - pos: -11.5,22.5 parent: 31 type: Transform - - uid: 1232 + - uid: 1921 components: - - pos: 34.5,24.5 + - pos: -12.5,22.5 parent: 31 type: Transform - - uid: 1257 + - uid: 1922 components: - - pos: 25.5,2.5 + - pos: -13.5,22.5 parent: 31 type: Transform - - uid: 1269 + - uid: 1923 components: - - pos: -0.5,11.5 + - pos: -14.5,22.5 parent: 31 type: Transform - - uid: 1270 + - uid: 1924 components: - - pos: 20.5,-2.5 + - pos: -15.5,22.5 parent: 31 type: Transform - - uid: 1277 + - uid: 1925 components: - - pos: -10.5,22.5 + - pos: -16.5,22.5 parent: 31 type: Transform - - uid: 1296 + - uid: 1926 components: - - pos: 11.5,18.5 + - pos: -16.5,23.5 parent: 31 type: Transform - - uid: 1317 + - uid: 1927 components: - - pos: 20.5,-1.5 + - pos: -15.5,23.5 parent: 31 type: Transform - - uid: 1320 + - uid: 1928 components: - - pos: 8.5,-18.5 + - pos: -14.5,23.5 parent: 31 type: Transform - - uid: 1348 + - uid: 1929 components: - - pos: 29.5,15.5 + - pos: -13.5,23.5 parent: 31 type: Transform - - uid: 1357 + - uid: 1930 components: - - pos: 24.5,6.5 + - pos: -12.5,23.5 parent: 31 type: Transform - - uid: 1377 + - uid: 1931 components: - - pos: 61.5,5.5 + - pos: -11.5,23.5 parent: 31 type: Transform - - uid: 1387 + - uid: 1932 components: - - pos: 44.5,-5.5 + - pos: -10.5,23.5 parent: 31 type: Transform - - uid: 1388 + - uid: 1934 components: - - pos: 43.5,-5.5 + - pos: -16.5,21.5 parent: 31 type: Transform - - uid: 1393 + - uid: 1935 components: - - pos: 9.5,32.5 + - pos: -16.5,20.5 parent: 31 type: Transform - - uid: 1408 + - uid: 1936 components: - - pos: 8.5,33.5 + - pos: -16.5,19.5 parent: 31 type: Transform - - uid: 1413 + - uid: 1937 components: - - pos: 13.5,28.5 + - pos: -16.5,18.5 parent: 31 type: Transform - - uid: 1415 + - uid: 1938 components: - - pos: -11.5,9.5 + - pos: -16.5,17.5 parent: 31 type: Transform - - uid: 1425 + - uid: 1939 components: - - pos: 42.5,-5.5 + - pos: -15.5,21.5 parent: 31 type: Transform - - uid: 1447 + - uid: 1940 components: - - pos: 41.5,-5.5 + - pos: -15.5,20.5 parent: 31 type: Transform - - uid: 1473 + - uid: 1941 components: - - pos: 0.5,-18.5 + - pos: -15.5,19.5 parent: 31 type: Transform - - uid: 1490 + - uid: 1942 components: - - pos: 19.5,-3.5 + - pos: -15.5,18.5 parent: 31 type: Transform - - uid: 1502 + - uid: 1943 components: - - pos: 17.5,2.5 + - pos: -15.5,17.5 parent: 31 type: Transform - - uid: 1503 + - uid: 1944 components: - - pos: 16.5,2.5 + - pos: -14.5,17.5 parent: 31 type: Transform - - uid: 1504 + - uid: 1945 components: - - pos: 18.5,2.5 + - pos: -13.5,17.5 parent: 31 type: Transform - - uid: 1535 + - uid: 1946 components: - - pos: 40.5,-5.5 + - pos: -11.5,17.5 parent: 31 type: Transform - - uid: 1545 + - uid: 1947 components: - - pos: 29.5,7.5 + - pos: -10.5,17.5 parent: 31 type: Transform - - uid: 1546 + - uid: 1948 components: - - pos: 37.5,7.5 + - pos: -10.5,18.5 parent: 31 type: Transform - - uid: 1556 + - uid: 1950 components: - - pos: 39.5,-5.5 + - pos: -14.5,8.5 parent: 31 type: Transform - - uid: 1557 + - uid: 1951 components: - - pos: 20.5,-26.5 + - pos: -14.5,7.5 parent: 31 type: Transform - - uid: 1559 + - uid: 1952 components: - - pos: 45.5,21.5 + - pos: -14.5,6.5 parent: 31 type: Transform - - uid: 1560 + - uid: 1955 components: - - pos: 45.5,22.5 + - pos: -11.5,6.5 parent: 31 type: Transform - - uid: 1563 + - uid: 1960 components: - - pos: 44.5,24.5 + - pos: -14.5,12.5 parent: 31 type: Transform - - uid: 1564 + - uid: 1961 components: - - pos: 45.5,23.5 + - pos: -15.5,12.5 parent: 31 type: Transform - - uid: 1565 + - uid: 1964 components: - - pos: 43.5,20.5 + - pos: -15.5,15.5 parent: 31 type: Transform - - uid: 1566 + - uid: 1966 components: - - pos: 45.5,24.5 + - pos: -14.5,11.5 parent: 31 type: Transform - - uid: 1567 + - uid: 1967 components: - - pos: 39.5,24.5 + - pos: -14.5,9.5 parent: 31 type: Transform - - uid: 1568 + - uid: 1968 components: - - pos: 38.5,24.5 + - pos: -13.5,12.5 parent: 31 type: Transform - - uid: 1574 + - uid: 1970 components: - - pos: 30.5,1.5 + - pos: -6.5,18.5 parent: 31 type: Transform - - uid: 1583 + - uid: 1971 components: - - pos: 23.5,22.5 + - pos: -5.5,18.5 parent: 31 type: Transform - - uid: 1584 + - uid: 1974 components: - - pos: 19.5,22.5 + - pos: -10.5,16.5 parent: 31 type: Transform - - uid: 1585 + - uid: 1975 components: - - pos: 23.5,19.5 + - pos: -10.5,12.5 parent: 31 type: Transform - - uid: 1586 + - uid: 1976 components: - - pos: 19.5,19.5 + - pos: -11.5,12.5 parent: 31 type: Transform - - uid: 1600 + - uid: 1977 components: - - pos: 39.5,1.5 + - pos: -12.5,12.5 parent: 31 type: Transform - - uid: 1610 + - uid: 1978 components: - - pos: 36.5,7.5 + - pos: 1.5,14.5 parent: 31 type: Transform - - uid: 1611 + - uid: 1980 components: - - pos: 35.5,7.5 + - pos: 1.5,12.5 parent: 31 type: Transform - - uid: 1616 + - uid: 1981 components: - - pos: 36.5,-1.5 + - pos: 1.5,11.5 parent: 31 type: Transform - - uid: 1617 + - uid: 1982 components: - - pos: 36.5,-2.5 + - pos: 1.5,10.5 parent: 31 type: Transform - - uid: 1618 + - uid: 1983 components: - - pos: 37.5,-2.5 + - pos: 1.5,9.5 parent: 31 type: Transform - - uid: 1619 + - uid: 1984 components: - - pos: 38.5,-2.5 + - pos: 1.5,8.5 parent: 31 type: Transform - - uid: 1620 + - uid: 1985 components: - - pos: 39.5,-2.5 + - pos: 1.5,7.5 parent: 31 type: Transform - - uid: 1621 + - uid: 1986 components: - - pos: 41.5,-2.5 + - pos: 1.5,6.5 parent: 31 type: Transform - - uid: 1622 + - uid: 1987 components: - - pos: 40.5,-2.5 + - pos: -9.5,6.5 parent: 31 type: Transform - - uid: 1623 + - uid: 1989 components: - - pos: 41.5,-1.5 + - pos: -9.5,9.5 parent: 31 type: Transform - - uid: 1624 + - uid: 1991 components: - - pos: 41.5,-0.5 + - pos: -6.5,6.5 parent: 31 type: Transform - - uid: 1625 + - uid: 1992 components: - - pos: 41.5,0.5 + - pos: -6.5,7.5 parent: 31 type: Transform - - uid: 1626 + - uid: 1993 components: - - pos: 41.5,1.5 + - pos: -6.5,8.5 parent: 31 type: Transform - - uid: 1627 + - uid: 1994 components: - - pos: 36.5,0.5 + - pos: -6.5,9.5 parent: 31 type: Transform - - uid: 1628 + - uid: 2004 components: - - pos: 36.5,1.5 + - pos: -18.5,7.5 parent: 31 type: Transform - - uid: 1632 + - uid: 2013 components: - - pos: 28.5,-1.5 + - pos: 11.5,-32.5 parent: 31 type: Transform - - uid: 1633 + - uid: 2040 components: - - pos: 28.5,-2.5 + - pos: 14.5,-26.5 parent: 31 type: Transform - - uid: 1635 + - uid: 2042 components: - - pos: 21.5,-26.5 + - pos: -34.5,-12.5 parent: 31 type: Transform - - uid: 1636 + - uid: 2043 components: - - pos: 22.5,-26.5 + - pos: -33.5,-12.5 parent: 31 type: Transform - - uid: 1642 + - uid: 2049 components: - - pos: 23.5,-26.5 + - pos: 42.5,0.5 parent: 31 type: Transform - - uid: 1648 + - uid: 2101 components: - - pos: 28.5,-15.5 + - pos: 29.5,-5.5 parent: 31 type: Transform - - uid: 1649 + - uid: 2102 components: - - pos: 34.5,-15.5 + - pos: 28.5,-5.5 parent: 31 type: Transform - - uid: 1650 + - uid: 2103 components: - - pos: 30.5,-16.5 + - pos: 31.5,-5.5 parent: 31 type: Transform - - uid: 1651 + - uid: 2104 components: - - pos: 28.5,-11.5 + - pos: 30.5,-5.5 parent: 31 type: Transform - - uid: 1656 + - uid: 2105 components: - - pos: -16.5,26.5 + - pos: 24.5,2.5 parent: 31 type: Transform - - uid: 1658 + - uid: 2106 components: - - pos: -40.5,19.5 + - pos: 24.5,1.5 parent: 31 type: Transform - - uid: 1659 + - uid: 2107 components: - - pos: -10.5,-32.5 + - pos: 27.5,-0.5 parent: 31 type: Transform - - uid: 1661 + - uid: 2108 components: - - pos: -11.5,26.5 + - pos: 24.5,0.5 parent: 31 type: Transform - - uid: 1662 + - uid: 2109 components: - - pos: -9.5,26.5 + - pos: 24.5,-0.5 parent: 31 type: Transform - - uid: 1664 + - uid: 2110 components: - - pos: -10.5,26.5 + - pos: 25.5,-0.5 parent: 31 type: Transform - - uid: 1665 + - uid: 2111 components: - - pos: -6.5,25.5 + - pos: 26.5,-0.5 parent: 31 type: Transform - - uid: 1666 + - uid: 2114 components: - - pos: -5.5,25.5 + - pos: 14.5,2.5 parent: 31 type: Transform - - uid: 1667 + - uid: 2116 components: - - pos: -4.5,25.5 + - pos: 19.5,2.5 parent: 31 type: Transform - - uid: 1668 + - uid: 2156 components: - - pos: -18.5,-17.5 + - pos: 21.5,-12.5 parent: 31 type: Transform - - uid: 1680 + - uid: 2184 components: - - pos: -19.5,26.5 + - pos: 25.5,-11.5 parent: 31 type: Transform - - uid: 1687 + - uid: 2187 components: - - pos: 51.5,0.5 + - pos: 25.5,-12.5 parent: 31 type: Transform - - uid: 1691 + - uid: 2229 components: - - pos: 10.5,12.5 + - pos: 32.5,-5.5 parent: 31 type: Transform - - uid: 1698 + - uid: 2231 components: - - pos: -6.5,26.5 + - pos: 34.5,-5.5 parent: 31 type: Transform - - uid: 1699 + - uid: 2232 components: - - pos: -8.5,26.5 + - pos: 35.5,-5.5 parent: 31 type: Transform - - uid: 1700 + - uid: 2233 components: - - pos: -7.5,26.5 + - pos: 36.5,-5.5 parent: 31 type: Transform - - uid: 1701 + - uid: 2234 components: - - pos: -18.5,-16.5 + - pos: 36.5,-4.5 parent: 31 type: Transform - - uid: 1711 + - uid: 2235 components: - - pos: 29.5,8.5 + - pos: 36.5,-3.5 parent: 31 type: Transform - - uid: 1712 + - uid: 2236 components: - - pos: 31.5,7.5 + - pos: 35.5,1.5 parent: 31 type: Transform - - uid: 1713 + - uid: 2238 components: - - pos: 30.5,7.5 + - pos: 30.5,2.5 parent: 31 type: Transform - - uid: 1717 + - uid: 2239 components: - - pos: 30.5,6.5 + - pos: 30.5,0.5 parent: 31 type: Transform - - uid: 1718 + - uid: 2240 components: - - pos: 28.5,-3.5 + - pos: 30.5,-0.5 parent: 31 type: Transform - - uid: 1719 + - uid: 2241 components: - - pos: 28.5,-4.5 + - pos: 29.5,-0.5 parent: 31 type: Transform - - uid: 1743 + - uid: 2242 components: - - pos: 25.5,13.5 + - pos: 28.5,-0.5 parent: 31 type: Transform - - uid: 1745 + - uid: 2284 components: - - pos: 27.5,11.5 + - pos: -4.5,-25.5 parent: 31 type: Transform - - uid: 1746 + - uid: 2287 components: - - pos: 25.5,7.5 + - pos: -33.5,-18.5 parent: 31 type: Transform - - uid: 1747 + - uid: 2293 components: - - pos: 25.5,8.5 + - pos: -6.5,-23.5 parent: 31 type: Transform - - uid: 1748 + - uid: 2294 components: - - pos: 24.5,7.5 + - pos: -6.5,-24.5 parent: 31 type: Transform - - uid: 1749 + - uid: 2303 components: - - pos: 28.5,7.5 + - pos: -2.5,-20.5 parent: 31 type: Transform - - uid: 1750 + - uid: 2310 components: - - pos: 26.5,7.5 + - pos: -13.5,-28.5 parent: 31 type: Transform - - uid: 1751 + - uid: 2324 components: - - pos: 27.5,7.5 + - pos: -17.5,26.5 parent: 31 type: Transform - - uid: 1754 + - uid: 2325 components: - - pos: 18.5,6.5 + - pos: 29.5,14.5 parent: 31 type: Transform - - uid: 1755 + - uid: 2348 components: - - pos: 17.5,6.5 + - pos: -33.5,-13.5 parent: 31 type: Transform - - uid: 1757 + - uid: 2415 components: - - pos: 17.5,7.5 + - pos: 29.5,2.5 parent: 31 type: Transform - - uid: 1776 + - uid: 2416 components: - - pos: -40.5,11.5 + - pos: 32.5,20.5 parent: 31 type: Transform - - uid: 1781 + - uid: 2424 components: - - pos: -28.5,-17.5 + - pos: 29.5,-11.5 parent: 31 type: Transform - - uid: 1783 + - uid: 2427 components: - - pos: 11.5,12.5 + - pos: 35.5,22.5 parent: 31 type: Transform - - uid: 1785 + - uid: 2462 components: - - pos: 9.5,12.5 + - rot: 3.141592653589793 rad + pos: 55.5,9.5 parent: 31 type: Transform - - uid: 1786 + - uid: 2474 components: - - pos: 7.5,12.5 + - pos: 11.5,22.5 parent: 31 type: Transform - - uid: 1787 + - uid: 2475 components: - - pos: 6.5,12.5 + - pos: 14.5,23.5 parent: 31 type: Transform - - uid: 1788 + - uid: 2476 components: - - pos: 5.5,12.5 + - pos: 13.5,22.5 parent: 31 type: Transform - - uid: 1789 + - uid: 2477 components: - - pos: 5.5,11.5 + - pos: 14.5,22.5 parent: 31 type: Transform - - uid: 1790 + - uid: 2478 components: - - pos: 5.5,10.5 + - pos: 14.5,24.5 parent: 31 type: Transform - - uid: 1791 + - uid: 2479 components: - - pos: 5.5,9.5 + - pos: 14.5,25.5 parent: 31 type: Transform - - uid: 1792 + - uid: 2490 components: - - pos: 5.5,8.5 + - pos: 13.5,21.5 parent: 31 type: Transform - - uid: 1793 + - uid: 2533 components: - - pos: 5.5,7.5 + - pos: -16.5,15.5 parent: 31 type: Transform - - uid: 1794 + - uid: 2535 components: - - pos: 5.5,6.5 + - pos: -17.5,17.5 parent: 31 type: Transform - - uid: 1795 + - uid: 2671 components: - - pos: 11.5,6.5 + - pos: -17.5,12.5 parent: 31 type: Transform - - uid: 1797 + - uid: 2878 components: - - pos: 11.5,10.5 + - pos: -3.5,-18.5 parent: 31 type: Transform - - uid: 1798 + - uid: 3051 components: - - pos: 11.5,9.5 + - pos: 32.5,23.5 parent: 31 type: Transform - - uid: 1799 + - uid: 3053 components: - - pos: 11.5,8.5 + - pos: 47.5,14.5 parent: 31 type: Transform - - uid: 1800 + - uid: 3110 components: - - pos: 11.5,7.5 + - rot: 3.141592653589793 rad + pos: 56.5,9.5 parent: 31 type: Transform - - uid: 1801 + - uid: 3130 components: - - pos: 10.5,6.5 + - pos: 26.5,11.5 parent: 31 type: Transform - - uid: 1802 + - uid: 3142 components: - - pos: 6.5,6.5 + - pos: 22.5,-15.5 parent: 31 type: Transform - - uid: 1805 + - uid: 3304 components: - - pos: -39.5,11.5 + - pos: 29.5,23.5 parent: 31 type: Transform - - uid: 1810 + - uid: 3314 components: - - pos: -18.5,-18.5 + - pos: 11.5,11.5 parent: 31 type: Transform - - uid: 1814 + - uid: 3480 components: - - pos: 6.5,16.5 + - pos: -17.5,15.5 parent: 31 type: Transform - - uid: 1815 + - uid: 3535 components: - - pos: 7.5,15.5 + - pos: 13.5,20.5 parent: 31 type: Transform - - uid: 1816 + - uid: 3537 components: - - pos: 8.5,15.5 + - pos: 12.5,22.5 parent: 31 type: Transform - - uid: 1817 + - uid: 3538 components: - - pos: 9.5,15.5 + - pos: 37.5,24.5 parent: 31 type: Transform - - uid: 1818 + - uid: 3565 components: - - pos: 10.5,15.5 + - pos: 25.5,11.5 parent: 31 type: Transform - - uid: 1819 + - uid: 3627 components: - - pos: 11.5,15.5 + - pos: 9.5,27.5 parent: 31 type: Transform - - uid: 1820 + - uid: 3655 components: - - pos: 11.5,16.5 + - pos: 59.5,8.5 parent: 31 type: Transform - - uid: 1821 + - uid: 3675 components: - - pos: 11.5,17.5 + - pos: 48.5,14.5 parent: 31 type: Transform - - uid: 1824 + - uid: 3833 components: - - pos: 11.5,21.5 + - pos: 21.5,-15.5 parent: 31 type: Transform - - uid: 1826 + - uid: 3854 components: - - pos: 6.5,21.5 + - pos: -20.5,8.5 parent: 31 type: Transform - - uid: 1828 + - uid: 3858 components: - - pos: 6.5,15.5 + - pos: -19.5,7.5 parent: 31 type: Transform - - uid: 1829 + - uid: 3884 components: - - pos: 10.5,22.5 + - pos: 15.5,22.5 parent: 31 type: Transform - - uid: 1830 + - uid: 4079 components: - - pos: 9.5,22.5 + - pos: 45.5,20.5 parent: 31 type: Transform - - uid: 1831 + - uid: 4154 components: - - pos: 8.5,22.5 + - pos: 51.5,-2.5 parent: 31 type: Transform - - uid: 1832 + - uid: 4169 components: - - pos: 7.5,22.5 + - pos: 34.5,-11.5 parent: 31 type: Transform - - uid: 1833 + - uid: 4171 components: - - pos: 6.5,22.5 + - pos: 33.5,-11.5 parent: 31 type: Transform - - uid: 1834 + - uid: 4173 components: - - pos: 5.5,22.5 + - pos: 32.5,-11.5 parent: 31 type: Transform - - uid: 1836 + - uid: 4204 components: - - pos: 12.5,28.5 + - pos: -3.5,-24.5 parent: 31 type: Transform - - uid: 1837 + - uid: 4257 components: - - pos: 11.5,28.5 + - pos: 60.5,8.5 parent: 31 type: Transform - - uid: 1839 + - uid: 4258 components: - - pos: 10.5,27.5 + - pos: 61.5,-1.5 parent: 31 type: Transform - - uid: 1840 + - uid: 4265 components: - - pos: 10.5,28.5 + - pos: 49.5,14.5 parent: 31 type: Transform - - uid: 1841 + - uid: 4271 components: - - pos: 10.5,30.5 + - pos: 51.5,7.5 parent: 31 type: Transform - - uid: 1842 + - uid: 4272 components: - - pos: -1.5,32.5 + - pos: 51.5,8.5 parent: 31 type: Transform - - uid: 1843 + - uid: 4276 components: - - pos: -2.5,32.5 + - pos: 51.5,13.5 parent: 31 type: Transform - - uid: 1845 + - uid: 4277 components: - - pos: -3.5,28.5 + - pos: 51.5,14.5 parent: 31 type: Transform - - uid: 1846 + - uid: 4278 components: - - pos: -3.5,27.5 + - pos: 51.5,6.5 parent: 31 type: Transform - - uid: 1848 + - uid: 4292 components: - - pos: -3.5,25.5 + - pos: 50.5,14.5 parent: 31 type: Transform - - uid: 1849 + - uid: 4300 components: - - pos: 1.5,22.5 + - pos: 17.5,19.5 parent: 31 type: Transform - - uid: 1850 + - uid: 4326 components: - - pos: 0.5,22.5 + - pos: 70.5,11.5 parent: 31 type: Transform - - uid: 1851 + - uid: 4330 components: - - pos: -0.5,22.5 + - pos: 23.5,-15.5 parent: 31 type: Transform - - uid: 1853 + - uid: 4374 components: - - pos: -2.5,22.5 + - pos: -20.5,10.5 parent: 31 type: Transform - - uid: 1854 + - uid: 4384 components: - - pos: -3.5,22.5 + - pos: 36.5,-18.5 parent: 31 type: Transform - - uid: 1855 + - uid: 4385 components: - - pos: -3.5,23.5 + - pos: 38.5,-22.5 parent: 31 type: Transform - - uid: 1856 + - uid: 4390 components: - - pos: -3.5,24.5 + - pos: 74.5,-6.5 parent: 31 type: Transform - - uid: 1857 + - uid: 4392 components: - - pos: 1.5,26.5 + - pos: 73.5,-6.5 parent: 31 type: Transform - - uid: 1858 + - uid: 4395 components: - - pos: 1.5,27.5 + - pos: 55.5,-2.5 parent: 31 type: Transform - - uid: 1859 + - uid: 4396 components: - - pos: 0.5,27.5 + - pos: 55.5,-6.5 parent: 31 type: Transform - - uid: 1860 + - uid: 4400 components: - - pos: -2.5,27.5 + - pos: 79.5,11.5 parent: 31 type: Transform - - uid: 1861 + - uid: 4404 components: - - pos: 1.5,23.5 + - pos: 71.5,-6.5 parent: 31 type: Transform - - uid: 1862 + - uid: 4406 components: - - pos: 8.5,27.5 + - pos: 55.5,-5.5 parent: 31 type: Transform - - uid: 1863 + - uid: 4407 components: - - pos: 7.5,27.5 + - pos: 54.5,-12.5 parent: 31 type: Transform - - uid: 1864 + - uid: 4408 components: - - pos: 6.5,27.5 + - pos: 52.5,-12.5 parent: 31 type: Transform - - uid: 1865 + - uid: 4410 components: - - pos: 5.5,27.5 + - pos: 54.5,-11.5 parent: 31 type: Transform - - uid: 1866 + - uid: 4414 components: - - pos: 5.5,23.5 + - pos: 65.5,-6.5 parent: 31 type: Transform - - uid: 1867 + - uid: 4416 components: - - pos: 5.5,26.5 + - pos: 61.5,-6.5 parent: 31 type: Transform - - uid: 1869 + - uid: 4417 components: - - pos: 5.5,24.5 + - pos: 63.5,-6.5 parent: 31 type: Transform - - uid: 1876 + - uid: 4418 components: - - pos: -1.5,33.5 + - pos: 54.5,-10.5 parent: 31 type: Transform - - uid: 1890 + - uid: 4419 components: - - pos: 8.5,32.5 + - pos: 61.5,-4.5 parent: 31 type: Transform - - uid: 1892 + - uid: 4421 components: - - pos: 1.5,15.5 + - pos: 77.5,-6.5 parent: 31 type: Transform - - uid: 1893 + - uid: 4428 components: - - pos: 0.5,15.5 + - pos: 74.5,11.5 parent: 31 type: Transform - - uid: 1894 + - uid: 4429 components: - - pos: -0.5,15.5 + - pos: 78.5,-6.5 parent: 31 type: Transform - - uid: 1895 + - uid: 4430 components: - - pos: -1.5,15.5 + - pos: 80.5,-4.5 parent: 31 type: Transform - - uid: 1896 + - uid: 4431 components: - - pos: -2.5,15.5 + - pos: 79.5,-6.5 parent: 31 type: Transform - - uid: 1897 + - uid: 4432 components: - - pos: -3.5,15.5 + - pos: 75.5,-6.5 parent: 31 type: Transform - - uid: 1898 + - uid: 4434 components: - - pos: -4.5,15.5 + - pos: 80.5,5.5 parent: 31 type: Transform - - uid: 1899 + - uid: 4435 components: - - pos: -4.5,16.5 + - pos: 80.5,7.5 parent: 31 type: Transform - - uid: 1900 + - uid: 4441 components: - - pos: -4.5,17.5 + - pos: 47.5,-12.5 parent: 31 type: Transform - - uid: 1901 + - uid: 4451 components: - - pos: -4.5,18.5 + - pos: 69.5,-6.5 parent: 31 type: Transform - - uid: 1902 + - uid: 4452 components: - - pos: -4.5,19.5 + - pos: 52.5,4.5 parent: 31 type: Transform - - uid: 1903 + - uid: 4455 components: - - pos: -5.5,19.5 + - pos: 73.5,11.5 parent: 31 type: Transform - - uid: 1905 + - uid: 4456 components: - - pos: -3.5,19.5 + - pos: 76.5,11.5 parent: 31 type: Transform - - uid: 1906 + - uid: 4461 components: - - pos: -2.5,19.5 + - pos: 80.5,6.5 parent: 31 type: Transform - - uid: 1907 + - uid: 4471 components: - - pos: -1.5,19.5 + - pos: 80.5,-2.5 parent: 31 type: Transform - - uid: 1908 + - uid: 4472 components: - - pos: -0.5,19.5 + - pos: 80.5,-0.5 parent: 31 type: Transform - - uid: 1909 + - uid: 4473 components: - - pos: 0.5,19.5 + - pos: 80.5,0.5 parent: 31 type: Transform - - uid: 1910 + - uid: 4474 components: - - pos: 0.5,18.5 + - pos: 80.5,1.5 parent: 31 type: Transform - - uid: 1911 + - uid: 4475 components: - - pos: 0.5,16.5 + - pos: 80.5,3.5 parent: 31 type: Transform - - uid: 1920 + - uid: 4476 components: - - pos: -11.5,22.5 + - pos: 68.5,-6.5 parent: 31 type: Transform - - uid: 1921 + - uid: 4477 components: - - pos: -12.5,22.5 + - pos: 67.5,-6.5 parent: 31 type: Transform - - uid: 1922 + - uid: 4494 components: - - pos: -13.5,22.5 + - pos: 34.5,-19.5 parent: 31 type: Transform - - uid: 1923 + - uid: 4499 components: - - pos: -14.5,22.5 + - pos: 34.5,-21.5 parent: 31 type: Transform - - uid: 1924 + - uid: 4502 components: - - pos: -15.5,22.5 + - pos: 46.5,-10.5 parent: 31 type: Transform - - uid: 1925 + - uid: 4509 components: - - pos: -16.5,22.5 + - pos: 31.5,-21.5 parent: 31 type: Transform - - uid: 1926 + - uid: 4517 components: - - pos: -16.5,23.5 + - pos: 38.5,-26.5 parent: 31 type: Transform - - uid: 1927 + - uid: 4518 components: - - pos: -15.5,23.5 + - pos: 39.5,-26.5 parent: 31 type: Transform - - uid: 1928 + - uid: 4523 components: - - pos: -14.5,23.5 + - pos: 55.5,-1.5 parent: 31 type: Transform - - uid: 1929 + - uid: 4524 components: - - pos: -13.5,23.5 + - pos: 57.5,-6.5 parent: 31 type: Transform - - uid: 1930 + - uid: 4527 components: - - pos: -12.5,23.5 + - pos: 32.5,-16.5 parent: 31 type: Transform - - uid: 1931 + - uid: 4531 components: - - pos: -11.5,23.5 + - pos: 53.5,-6.5 parent: 31 type: Transform - - uid: 1932 + - uid: 4540 components: - - pos: -10.5,23.5 + - pos: 71.5,11.5 parent: 31 type: Transform - - uid: 1934 + - uid: 4551 components: - - pos: -16.5,21.5 + - pos: 69.5,11.5 parent: 31 type: Transform - - uid: 1935 + - uid: 4552 components: - - pos: -16.5,20.5 + - pos: 78.5,11.5 parent: 31 type: Transform - - uid: 1936 + - uid: 4572 components: - - pos: -16.5,19.5 + - pos: -32.5,-19.5 parent: 31 type: Transform - - uid: 1937 + - uid: 4573 components: - - pos: -16.5,18.5 + - pos: -31.5,-20.5 parent: 31 type: Transform - - uid: 1938 + - uid: 4574 components: - - pos: -16.5,17.5 + - pos: -20.5,7.5 parent: 31 type: Transform - - uid: 1939 + - uid: 4579 components: - - pos: -15.5,21.5 + - pos: 39.5,-16.5 parent: 31 type: Transform - - uid: 1940 + - uid: 4580 components: - - pos: -15.5,20.5 + - pos: 38.5,-18.5 parent: 31 type: Transform - - uid: 1941 + - uid: 4581 components: - - pos: -15.5,19.5 + - pos: 37.5,-18.5 parent: 31 type: Transform - - uid: 1942 + - uid: 4582 components: - - pos: -15.5,18.5 + - pos: 39.5,-18.5 parent: 31 type: Transform - - uid: 1943 + - uid: 4584 components: - - pos: -15.5,17.5 + - pos: 39.5,-22.5 parent: 31 type: Transform - - uid: 1944 + - uid: 4587 components: - - pos: -14.5,17.5 + - pos: 32.5,-26.5 parent: 31 type: Transform - - uid: 1945 + - uid: 4588 components: - - pos: -13.5,17.5 + - pos: 34.5,-26.5 parent: 31 type: Transform - - uid: 1946 + - uid: 4589 components: - - pos: -11.5,17.5 + - pos: 60.5,-6.5 parent: 31 type: Transform - - uid: 1947 + - uid: 4594 components: - - pos: -10.5,17.5 + - pos: 34.5,-20.5 parent: 31 type: Transform - - uid: 1948 + - uid: 4601 components: - - pos: -10.5,18.5 + - pos: 80.5,11.5 parent: 31 type: Transform - - uid: 1950 + - uid: 4646 components: - - pos: -14.5,8.5 + - pos: 39.5,-17.5 parent: 31 type: Transform - - uid: 1951 + - uid: 4648 components: - - pos: -14.5,7.5 + - pos: 34.5,-22.5 parent: 31 type: Transform - - uid: 1952 + - uid: 4661 components: - - pos: -14.5,6.5 + - pos: 31.5,-22.5 parent: 31 type: Transform - - uid: 1955 + - uid: 4674 components: - - pos: -11.5,6.5 + - pos: 55.5,-21.5 parent: 31 type: Transform - - uid: 1960 + - uid: 4675 components: - - pos: -14.5,12.5 + - pos: 52.5,-18.5 parent: 31 type: Transform - - uid: 1961 + - uid: 4678 components: - - pos: -15.5,12.5 + - pos: 46.5,-18.5 parent: 31 type: Transform - - uid: 1964 + - uid: 4689 components: - - pos: -15.5,15.5 + - pos: 72.5,-6.5 parent: 31 type: Transform - - uid: 1966 + - uid: 4716 components: - - pos: -14.5,11.5 + - pos: -33.5,-17.5 parent: 31 type: Transform - - uid: 1967 + - uid: 4717 components: - - pos: -14.5,9.5 + - pos: -30.5,-20.5 parent: 31 type: Transform - - uid: 1968 + - uid: 4740 components: - - pos: -13.5,12.5 + - pos: 13.5,24.5 parent: 31 type: Transform - - uid: 1970 + - uid: 4773 components: - - pos: -6.5,18.5 + - pos: 80.5,-1.5 parent: 31 type: Transform - - uid: 1971 + - uid: 4779 components: - - pos: -5.5,18.5 + - pos: 62.5,-6.5 parent: 31 type: Transform - - uid: 1974 + - uid: 4781 components: - - pos: -10.5,16.5 + - pos: 61.5,-3.5 parent: 31 type: Transform - - uid: 1975 + - uid: 4788 components: - - pos: -10.5,12.5 + - pos: 80.5,-6.5 parent: 31 type: Transform - - uid: 1976 + - uid: 4789 components: - - pos: -11.5,12.5 + - pos: 64.5,-6.5 parent: 31 type: Transform - - uid: 1977 + - uid: 4791 components: - - pos: -12.5,12.5 + - pos: 61.5,-5.5 parent: 31 type: Transform - - uid: 1978 + - uid: 4796 components: - - pos: 1.5,14.5 + - pos: 70.5,-6.5 parent: 31 type: Transform - - uid: 1980 + - uid: 4813 components: - - pos: 1.5,12.5 + - pos: 13.5,-26.5 parent: 31 type: Transform - - uid: 1981 + - uid: 4814 components: - - pos: 1.5,11.5 + - pos: 13.5,-27.5 parent: 31 type: Transform - - uid: 1982 + - uid: 4815 components: - - pos: 1.5,10.5 + - pos: 13.5,-28.5 parent: 31 type: Transform - - uid: 1983 + - uid: 4816 components: - - pos: 1.5,9.5 + - pos: 13.5,-29.5 parent: 31 type: Transform - - uid: 1984 + - uid: 4817 components: - - pos: 1.5,8.5 + - pos: 13.5,-30.5 parent: 31 type: Transform - - uid: 1985 + - uid: 4818 components: - - pos: 1.5,7.5 + - pos: 13.5,-31.5 parent: 31 type: Transform - - uid: 1986 + - uid: 4837 components: - - pos: 1.5,6.5 + - pos: 1.5,-31.5 parent: 31 type: Transform - - uid: 1987 + - uid: 4838 components: - - pos: -9.5,6.5 + - pos: 5.5,-31.5 parent: 31 type: Transform - - uid: 1989 + - uid: 4839 components: - - pos: -9.5,9.5 + - pos: 6.5,-31.5 parent: 31 type: Transform - - uid: 1991 + - uid: 4840 components: - - pos: -6.5,6.5 + - pos: 7.5,-31.5 parent: 31 type: Transform - - uid: 1992 + - uid: 4842 components: - - pos: -6.5,7.5 + - pos: 9.5,-31.5 parent: 31 type: Transform - - uid: 1993 + - uid: 4843 components: - - pos: -6.5,8.5 + - pos: 10.5,-31.5 parent: 31 type: Transform - - uid: 1994 + - uid: 4855 components: - - pos: -6.5,9.5 + - pos: 33.5,24.5 parent: 31 type: Transform - - uid: 2003 + - uid: 4867 components: - - pos: -18.5,6.5 + - pos: 11.5,20.5 parent: 31 type: Transform - - uid: 2004 + - uid: 4894 components: - - pos: -18.5,7.5 + - pos: 0.5,6.5 parent: 31 type: Transform - - uid: 2006 + - uid: 4898 components: - - pos: -18.5,10.5 + - pos: -18.5,11.5 parent: 31 type: Transform - - uid: 2007 + - uid: 4931 components: - - pos: -18.5,9.5 + - pos: 15.5,19.5 parent: 31 type: Transform - - uid: 2013 + - uid: 4935 components: - - pos: 11.5,-32.5 + - pos: 28.5,-22.5 parent: 31 type: Transform - - uid: 2028 + - uid: 4936 components: - - pos: -18.5,-22.5 + - pos: 24.5,-26.5 parent: 31 type: Transform - - uid: 2040 + - uid: 4937 components: - - pos: 14.5,-26.5 + - pos: 25.5,-26.5 parent: 31 type: Transform - - uid: 2042 + - uid: 4938 components: - - pos: -34.5,-12.5 + - pos: 26.5,-26.5 parent: 31 type: Transform - - uid: 2043 + - uid: 4939 components: - - pos: -33.5,-12.5 + - pos: 28.5,-20.5 parent: 31 type: Transform - - uid: 2044 + - uid: 4941 components: - - pos: -32.5,-12.5 + - pos: 28.5,-21.5 parent: 31 type: Transform - - uid: 2045 + - uid: 4942 components: - - pos: -31.5,-12.5 + - pos: 28.5,-24.5 parent: 31 type: Transform - - uid: 2046 + - uid: 4944 components: - - pos: -30.5,-12.5 + - pos: 28.5,-26.5 parent: 31 type: Transform - - uid: 2047 + - uid: 4945 components: - - pos: -29.5,-12.5 + - pos: 27.5,-26.5 parent: 31 type: Transform - - uid: 2048 + - uid: 4978 components: - - pos: -28.5,-12.5 + - pos: -27.5,18.5 parent: 31 type: Transform - - uid: 2049 + - uid: 4979 components: - - pos: 42.5,0.5 + - pos: -27.5,19.5 parent: 31 type: Transform - - uid: 2101 + - uid: 4980 components: - - pos: 29.5,-5.5 + - pos: -27.5,20.5 parent: 31 type: Transform - - uid: 2102 + - uid: 4988 components: - - pos: 28.5,-5.5 + - pos: -27.5,21.5 parent: 31 type: Transform - - uid: 2103 + - uid: 4989 components: - - pos: 31.5,-5.5 + - pos: -26.5,21.5 parent: 31 type: Transform - - uid: 2104 + - uid: 4990 components: - - pos: 30.5,-5.5 + - pos: -25.5,21.5 parent: 31 type: Transform - - uid: 2105 + - uid: 4991 components: - - pos: 24.5,2.5 + - pos: -24.5,21.5 parent: 31 type: Transform - - uid: 2106 + - uid: 4993 components: - - pos: 24.5,1.5 + - pos: -25.5,23.5 parent: 31 type: Transform - - uid: 2107 + - uid: 5006 components: - - pos: 27.5,-0.5 + - pos: 33.5,22.5 parent: 31 type: Transform - - uid: 2108 + - uid: 5036 components: - - pos: 24.5,0.5 + - pos: -25.5,-20.5 parent: 31 type: Transform - - uid: 2109 + - uid: 5059 components: - - pos: 24.5,-0.5 + - pos: 11.5,27.5 parent: 31 type: Transform - - uid: 2110 + - uid: 5060 components: - - pos: 25.5,-0.5 + - pos: 14.5,26.5 parent: 31 type: Transform - - uid: 2111 + - uid: 5061 components: - - pos: 26.5,-0.5 + - pos: 13.5,27.5 parent: 31 type: Transform - - uid: 2114 + - uid: 5062 components: - - pos: 14.5,2.5 + - pos: 13.5,25.5 parent: 31 type: Transform - - uid: 2116 + - uid: 5063 components: - - pos: 19.5,2.5 + - rot: -1.5707963267948966 rad + pos: 52.5,18.5 parent: 31 type: Transform - - uid: 2181 + - uid: 5101 components: - - pos: 20.5,-11.5 + - pos: -2.5,-18.5 parent: 31 type: Transform - - uid: 2182 + - uid: 5154 components: - - pos: 21.5,-11.5 + - pos: -5.5,-24.5 parent: 31 type: Transform - - uid: 2183 + - uid: 5176 components: - - pos: 22.5,-11.5 + - pos: -24.5,22.5 parent: 31 type: Transform - - uid: 2184 + - uid: 5177 components: - - pos: 25.5,-11.5 + - pos: -24.5,23.5 parent: 31 type: Transform - - uid: 2185 + - uid: 5178 components: - - pos: 23.5,-11.5 + - pos: -24.5,25.5 parent: 31 type: Transform - - uid: 2186 + - uid: 5179 components: - - pos: 24.5,-11.5 + - pos: -24.5,26.5 parent: 31 type: Transform - - uid: 2187 + - uid: 5180 components: - - pos: 25.5,-12.5 + - pos: -23.5,26.5 parent: 31 type: Transform - - uid: 2188 + - uid: 5181 components: - - pos: 25.5,-13.5 + - pos: -22.5,26.5 parent: 31 type: Transform - - uid: 2189 + - uid: 5182 components: - - pos: 25.5,-14.5 + - pos: -21.5,26.5 parent: 31 type: Transform - - uid: 2191 + - uid: 5183 components: - - pos: 25.5,-16.5 + - pos: -20.5,26.5 parent: 31 type: Transform - - uid: 2192 + - uid: 5193 components: - - pos: 24.5,-16.5 + - pos: -26.5,23.5 parent: 31 type: Transform - - uid: 2193 + - uid: 5194 components: - - pos: 23.5,-16.5 + - pos: 39.5,20.5 parent: 31 type: Transform - - uid: 2194 + - uid: 5195 components: - - pos: 22.5,-16.5 + - pos: -26.5,25.5 parent: 31 type: Transform - - uid: 2195 + - uid: 5196 components: - - pos: 21.5,-16.5 + - pos: -25.5,25.5 parent: 31 type: Transform - - uid: 2196 + - uid: 5233 components: - - pos: 20.5,-16.5 + - pos: -39.5,15.5 parent: 31 type: Transform - - uid: 2215 + - uid: 5236 components: - - pos: 6.5,-12.5 + - pos: 43.5,21.5 parent: 31 type: Transform - - uid: 2216 + - uid: 5237 components: - - pos: 6.5,-13.5 + - pos: 41.5,22.5 parent: 31 type: Transform - - uid: 2217 + - uid: 5238 components: - - pos: 6.5,-14.5 + - pos: 41.5,21.5 parent: 31 type: Transform - - uid: 2218 + - uid: 5239 components: - - pos: 6.5,-15.5 + - pos: 41.5,23.5 parent: 31 type: Transform - - uid: 2221 + - uid: 5241 components: - - pos: 10.5,-12.5 + - pos: 43.5,24.5 parent: 31 type: Transform - - uid: 2227 + - uid: 5242 components: - - pos: 6.5,-16.5 + - pos: 43.5,22.5 parent: 31 type: Transform - - uid: 2229 + - uid: 5245 components: - - pos: 32.5,-5.5 + - pos: 43.5,23.5 parent: 31 type: Transform - - uid: 2231 + - uid: 5252 components: - - pos: 34.5,-5.5 + - pos: 17.5,-27.5 parent: 31 type: Transform - - uid: 2232 + - uid: 5253 components: - - pos: 35.5,-5.5 + - pos: 17.5,-28.5 parent: 31 type: Transform - - uid: 2233 + - uid: 5254 components: - - pos: 36.5,-5.5 + - pos: 17.5,-29.5 parent: 31 type: Transform - - uid: 2234 + - uid: 5255 components: - - pos: 36.5,-4.5 + - pos: 17.5,-30.5 parent: 31 type: Transform - - uid: 2235 + - uid: 5256 components: - - pos: 36.5,-3.5 + - pos: 16.5,-30.5 parent: 31 type: Transform - - uid: 2236 + - uid: 5257 components: - - pos: 35.5,1.5 + - pos: 14.5,-30.5 parent: 31 type: Transform - - uid: 2238 + - uid: 5294 components: - - pos: 30.5,2.5 + - pos: 13.5,-32.5 parent: 31 type: Transform - - uid: 2239 + - uid: 5295 components: - - pos: 30.5,0.5 + - pos: 14.5,-32.5 parent: 31 type: Transform - - uid: 2240 + - uid: 5296 components: - - pos: 30.5,-0.5 + - pos: 15.5,-32.5 parent: 31 type: Transform - - uid: 2241 + - uid: 5297 components: - - pos: 29.5,-0.5 + - pos: 16.5,-32.5 parent: 31 type: Transform - - uid: 2242 + - uid: 5298 components: - - pos: 28.5,-0.5 + - pos: 17.5,-32.5 parent: 31 type: Transform - - uid: 2265 + - uid: 5315 components: - - pos: 0.5,-17.5 + - pos: 39.5,21.5 parent: 31 type: Transform - - uid: 2266 + - uid: 5316 components: - - pos: 0.5,-13.5 + - pos: 41.5,20.5 parent: 31 type: Transform - - uid: 2284 + - uid: 5318 components: - - pos: -4.5,-25.5 + - pos: 42.5,24.5 parent: 31 type: Transform - - uid: 2289 + - uid: 5319 components: - - pos: -7.5,-21.5 + - pos: 40.5,24.5 parent: 31 type: Transform - - uid: 2291 + - uid: 5320 components: - - pos: -6.5,-21.5 + - pos: 41.5,24.5 parent: 31 type: Transform - - uid: 2292 + - uid: 5610 components: - - pos: -6.5,-22.5 + - pos: -39.5,17.5 parent: 31 type: Transform - - uid: 2293 + - uid: 5672 components: - - pos: -6.5,-23.5 + - pos: 80.5,-5.5 parent: 31 type: Transform - - uid: 2294 + - uid: 5674 components: - - pos: -6.5,-24.5 + - pos: -20.5,11.5 parent: 31 type: Transform - - uid: 2295 + - uid: 5677 components: - - pos: -7.5,-24.5 + - pos: 80.5,4.5 parent: 31 type: Transform - - uid: 2296 + - uid: 5679 components: - - pos: -8.5,-24.5 + - pos: 80.5,2.5 parent: 31 type: Transform - - uid: 2297 + - uid: 5680 components: - - pos: -9.5,-24.5 + - pos: 68.5,11.5 parent: 31 type: Transform - - uid: 2298 + - uid: 5719 components: - - pos: -10.5,-24.5 + - pos: -39.5,-8.5 parent: 31 type: Transform - - uid: 2299 + - uid: 5882 components: - - pos: -10.5,-23.5 + - pos: -53.5,-11.5 parent: 31 type: Transform - - uid: 2300 + - uid: 5894 components: - - pos: -1.5,-24.5 + - rot: -1.5707963267948966 rad + pos: -7.5,23.5 parent: 31 type: Transform - - uid: 2301 + - uid: 5939 components: - - pos: -1.5,-25.5 + - pos: 19.5,18.5 parent: 31 type: Transform - - uid: 2302 + - uid: 5983 components: - - pos: -2.5,-25.5 + - rot: 3.141592653589793 rad + pos: -44.5,-8.5 parent: 31 type: Transform - - uid: 2303 + - uid: 6181 components: - - pos: -3.5,-25.5 + - pos: 72.5,11.5 parent: 31 type: Transform - - uid: 2305 + - uid: 6210 components: - - pos: -5.5,-21.5 + - pos: -42.5,-12.5 parent: 31 type: Transform - - uid: 2306 + - uid: 6230 components: - - pos: -6.5,-25.5 + - pos: 59.5,5.5 parent: 31 type: Transform - - uid: 2307 + - uid: 6231 components: - - pos: -12.5,-27.5 + - pos: 58.5,5.5 parent: 31 type: Transform - - uid: 2310 + - uid: 6245 components: - - pos: -15.5,-27.5 + - pos: 17.5,22.5 parent: 31 type: Transform - - uid: 2311 + - uid: 6253 components: - - pos: -16.5,-27.5 + - pos: 17.5,18.5 parent: 31 type: Transform - - uid: 2313 + - uid: 6278 components: - - pos: -18.5,-27.5 + - pos: 58.5,-9.5 parent: 31 type: Transform - - uid: 2314 + - uid: 6279 components: - - pos: -18.5,-26.5 + - pos: 58.5,-11.5 parent: 31 type: Transform - - uid: 2315 + - uid: 6283 components: - - pos: -18.5,-25.5 + - rot: 3.141592653589793 rad + pos: 58.5,9.5 parent: 31 type: Transform - - uid: 2316 + - uid: 6284 components: - - pos: -18.5,-24.5 + - pos: 54.5,8.5 parent: 31 type: Transform - - uid: 2317 + - uid: 6285 components: - - pos: -18.5,-23.5 + - pos: 57.5,-12.5 parent: 31 type: Transform - - uid: 2318 + - uid: 6290 components: - - pos: -17.5,-23.5 + - pos: 58.5,-6.5 parent: 31 type: Transform - - uid: 2319 + - uid: 6291 components: - - pos: -13.5,-23.5 + - pos: 47.5,-6.5 parent: 31 type: Transform - - uid: 2320 + - uid: 6292 components: - - pos: -12.5,-23.5 + - pos: 47.5,-5.5 parent: 31 type: Transform - - uid: 2321 + - uid: 6295 components: - - pos: -12.5,-24.5 + - pos: 46.5,-8.5 parent: 31 type: Transform - - uid: 2322 + - uid: 6307 components: - - pos: -12.5,-25.5 + - rot: -1.5707963267948966 rad + pos: 51.5,18.5 parent: 31 type: Transform - - uid: 2323 + - uid: 6368 components: - - pos: -12.5,-26.5 + - rot: -1.5707963267948966 rad + pos: 52.5,14.5 parent: 31 type: Transform - - uid: 2324 + - uid: 6388 components: - - pos: -17.5,26.5 + - pos: 50.5,6.5 parent: 31 type: Transform - - uid: 2325 + - uid: 6389 components: - - pos: 29.5,14.5 + - pos: 38.5,7.5 parent: 31 type: Transform - - uid: 2326 + - uid: 6390 components: - - pos: 25.5,14.5 + - pos: 45.5,12.5 parent: 31 type: Transform - - uid: 2334 + - uid: 6395 components: - - pos: -5.5,-25.5 + - pos: 45.5,14.5 parent: 31 type: Transform - - uid: 2335 + - uid: 6416 components: - - pos: -9.5,-21.5 + - rot: 1.5707963267948966 rad + pos: 47.5,23.5 parent: 31 type: Transform - - uid: 2336 + - uid: 6422 components: - - pos: -10.5,-21.5 + - rot: 1.5707963267948966 rad + pos: 47.5,22.5 parent: 31 type: Transform - - uid: 2338 + - uid: 6441 components: - - pos: -10.5,-22.5 + - pos: 30.5,11.5 parent: 31 type: Transform - - uid: 2339 + - uid: 6447 components: - - pos: -12.5,-22.5 + - pos: 30.5,10.5 parent: 31 type: Transform - - uid: 2340 + - uid: 6454 components: - - pos: -12.5,-21.5 + - pos: 46.5,6.5 parent: 31 type: Transform - - uid: 2341 + - uid: 6468 components: - - pos: -12.5,-18.5 + - pos: 37.5,10.5 parent: 31 type: Transform - - uid: 2342 + - uid: 6474 components: - - pos: -12.5,-16.5 + - pos: -52.5,-12.5 parent: 31 type: Transform - - uid: 2343 + - uid: 6475 components: - - pos: -12.5,-17.5 + - pos: 48.5,6.5 parent: 31 type: Transform - - uid: 2349 + - uid: 6484 components: - - pos: -13.5,-16.5 + - pos: 40.5,7.5 parent: 31 type: Transform - - uid: 2350 + - uid: 6485 components: - - pos: -14.5,-16.5 + - pos: 41.5,8.5 parent: 31 type: Transform - - uid: 2351 + - uid: 6488 components: - - pos: -15.5,-16.5 + - pos: 39.5,7.5 parent: 31 type: Transform - - uid: 2352 + - uid: 6491 components: - - pos: -17.5,-16.5 + - pos: 44.5,14.5 parent: 31 type: Transform - - uid: 2384 + - uid: 6492 components: - - pos: -1.5,-21.5 + - pos: 43.5,14.5 parent: 31 type: Transform - - uid: 2385 + - uid: 6493 components: - - pos: -1.5,-22.5 + - pos: -52.5,-8.5 parent: 31 type: Transform - - uid: 2386 + - uid: 6494 components: - - pos: -1.5,-23.5 + - pos: -54.5,-8.5 parent: 31 type: Transform - - uid: 2404 + - uid: 6496 components: - - pos: -40.5,14.5 + - pos: 43.5,10.5 parent: 31 type: Transform - - uid: 2415 + - uid: 6498 components: - - pos: 29.5,2.5 + - pos: 44.5,10.5 parent: 31 type: Transform - - uid: 2424 + - uid: 6499 components: - - pos: 29.5,-11.5 + - pos: 37.5,9.5 parent: 31 type: Transform - - uid: 2427 + - uid: 6500 components: - - pos: 35.5,22.5 + - pos: 33.5,23.5 parent: 31 type: Transform - - uid: 2474 + - uid: 6531 components: - - pos: 11.5,22.5 + - pos: 46.5,14.5 parent: 31 type: Transform - - uid: 2475 + - uid: 6535 components: - - pos: 14.5,23.5 + - pos: 45.5,13.5 parent: 31 type: Transform - - uid: 2476 + - uid: 6536 components: - - pos: 13.5,22.5 + - pos: 45.5,11.5 parent: 31 type: Transform - - uid: 2477 + - uid: 6537 components: - - pos: 14.5,22.5 + - pos: 45.5,10.5 parent: 31 type: Transform - - uid: 2478 + - uid: 6542 components: - - pos: 14.5,24.5 + - pos: 49.5,6.5 parent: 31 type: Transform - - uid: 2479 + - uid: 6553 components: - - pos: 14.5,25.5 + - pos: 32.5,18.5 parent: 31 type: Transform - - uid: 2490 + - uid: 6576 components: - - pos: 13.5,21.5 + - pos: -45.5,-12.5 parent: 31 type: Transform - - uid: 2533 + - uid: 6583 components: - - pos: -16.5,15.5 + - pos: 58.5,-10.5 parent: 31 type: Transform - - uid: 2535 + - uid: 6601 components: - - pos: -17.5,17.5 + - pos: 37.5,8.5 parent: 31 type: Transform - - uid: 2669 + - uid: 6608 components: - - pos: -18.5,8.5 + - pos: 29.5,13.5 parent: 31 type: Transform - - uid: 2671 + - uid: 6612 components: - - pos: -17.5,12.5 + - pos: -40.5,-12.5 parent: 31 type: Transform - - uid: 2891 + - uid: 6615 components: - - pos: 7.5,-18.5 + - pos: 24.5,22.5 parent: 31 type: Transform - - uid: 2892 + - uid: 6616 components: - - pos: 6.5,-18.5 + - pos: 45.5,6.5 parent: 31 type: Transform - - uid: 3053 + - uid: 6622 components: - - pos: 47.5,14.5 + - pos: 47.5,6.5 parent: 31 type: Transform - - uid: 3130 + - uid: 6627 components: - - pos: 26.5,11.5 + - pos: 41.5,10.5 parent: 31 type: Transform - - uid: 3314 + - uid: 6628 components: - - pos: 11.5,11.5 + - pos: 42.5,10.5 parent: 31 type: Transform - - uid: 3385 + - uid: 6808 components: - - pos: 45.5,-5.5 + - rot: 1.5707963267948966 rad + pos: 47.5,24.5 parent: 31 type: Transform - - uid: 3480 + - uid: 6809 components: - - pos: -17.5,15.5 + - pos: -43.5,-12.5 parent: 31 type: Transform - - uid: 3535 + - uid: 6810 components: - - pos: 13.5,20.5 + - pos: -38.5,-7.5 parent: 31 type: Transform - - uid: 3537 + - uid: 6811 components: - - pos: 12.5,22.5 + - pos: -9.5,-42.5 parent: 31 type: Transform - - uid: 3538 + - uid: 6814 components: - - pos: 37.5,24.5 + - rot: 1.5707963267948966 rad + pos: 46.5,24.5 parent: 31 type: Transform - - uid: 3551 + - uid: 6822 components: - - pos: 26.5,19.5 + - pos: 39.5,10.5 parent: 31 type: Transform - - uid: 3565 + - uid: 6837 components: - - pos: 25.5,11.5 + - pos: 38.5,10.5 parent: 31 type: Transform - - uid: 3627 + - uid: 6851 components: - - pos: 9.5,27.5 + - pos: 40.5,10.5 parent: 31 type: Transform - - uid: 3675 + - uid: 6862 components: - - pos: 48.5,14.5 + - pos: 30.5,9.5 parent: 31 type: Transform - - uid: 3677 + - uid: 6870 components: - - pos: 17.5,16.5 + - pos: 66.5,-6.5 parent: 31 type: Transform - - uid: 3678 + - uid: 6879 components: - - pos: 17.5,15.5 + - pos: 30.5,15.5 parent: 31 type: Transform - - uid: 3884 + - uid: 6883 components: - - pos: 15.5,22.5 + - pos: -4.5,30.5 parent: 31 type: Transform - - uid: 3926 + - uid: 6886 components: - - pos: -3.5,-26.5 + - pos: 42.5,14.5 parent: 31 type: Transform - - uid: 4056 + - uid: 6889 components: - - pos: 6.5,-17.5 + - pos: 41.5,7.5 parent: 31 type: Transform - - uid: 4079 + - uid: 6902 components: - - pos: 45.5,20.5 + - rot: 1.5707963267948966 rad + pos: 47.5,20.5 parent: 31 type: Transform - - uid: 4134 + - uid: 6905 components: - - pos: 10.5,-18.5 + - pos: 30.5,18.5 parent: 31 type: Transform - - uid: 4169 + - uid: 6920 components: - - pos: 34.5,-11.5 + - pos: 30.5,8.5 parent: 31 type: Transform - - uid: 4171 + - uid: 6926 components: - - pos: 33.5,-11.5 + - pos: 80.5,8.5 parent: 31 type: Transform - - uid: 4173 + - uid: 6927 components: - - pos: 32.5,-11.5 + - pos: 76.5,-6.5 parent: 31 type: Transform - - uid: 4244 + - uid: 6928 components: - - pos: 33.5,22.5 + - pos: 56.5,-12.5 parent: 31 type: Transform - - uid: 4257 + - uid: 6929 components: - - pos: 52.5,-1.5 + - pos: 80.5,10.5 parent: 31 type: Transform - - uid: 4258 + - uid: 6948 components: - - pos: 52.5,-2.5 + - pos: 58.5,-8.5 parent: 31 type: Transform - - uid: 4259 + - uid: 6949 components: - - pos: 52.5,-3.5 + - pos: 58.5,-12.5 parent: 31 type: Transform - - uid: 4260 + - uid: 6953 components: - - pos: 52.5,-4.5 + - pos: 61.5,-2.5 parent: 31 type: Transform - - uid: 4261 + - uid: 6954 components: - - pos: 52.5,-5.5 + - pos: 80.5,9.5 parent: 31 type: Transform - - uid: 4262 + - uid: 6955 components: - - pos: 52.5,-6.5 + - pos: 75.5,11.5 parent: 31 type: Transform - - uid: 4263 + - uid: 6956 components: - - pos: 52.5,-7.5 + - pos: 77.5,11.5 parent: 31 type: Transform - - uid: 4265 + - uid: 6983 components: - - pos: 49.5,14.5 + - pos: 43.5,-22.5 parent: 31 type: Transform - - uid: 4271 + - uid: 6984 components: - - pos: 51.5,7.5 + - pos: 43.5,-26.5 parent: 31 type: Transform - - uid: 4272 + - uid: 6985 components: - - pos: 51.5,8.5 + - pos: 43.5,-21.5 parent: 31 type: Transform - - uid: 4276 + - uid: 6986 components: - - pos: 51.5,13.5 + - pos: 43.5,-27.5 parent: 31 type: Transform - - uid: 4277 + - uid: 6987 components: - - pos: 51.5,14.5 + - pos: 46.5,-30.5 parent: 31 type: Transform - - uid: 4278 + - uid: 6990 components: - - pos: 51.5,6.5 + - pos: 52.5,-30.5 parent: 31 type: Transform - - uid: 4292 + - uid: 6992 components: - - pos: 50.5,14.5 + - pos: 55.5,-27.5 parent: 31 type: Transform - - uid: 4300 + - uid: 7034 components: - - pos: 17.5,19.5 + - pos: 34.5,-18.5 parent: 31 type: Transform - - uid: 4301 + - uid: 7047 components: - - pos: 26.5,18.5 + - pos: 29.5,-20.5 parent: 31 type: Transform - - uid: 4308 + - uid: 7048 components: - - pos: 17.5,14.5 + - pos: 30.5,-20.5 parent: 31 type: Transform - - uid: 4318 + - uid: 7049 components: - - pos: 25.5,15.5 + - pos: 35.5,-18.5 parent: 31 type: Transform - - uid: 4326 + - uid: 7053 components: - - pos: 70.5,11.5 + - rot: 3.141592653589793 rad + pos: 46.5,-13.5 parent: 31 type: Transform - - uid: 4384 + - uid: 7055 components: - - pos: 36.5,-18.5 + - pos: 30.5,17.5 parent: 31 type: Transform - - uid: 4385 + - uid: 7060 components: - - pos: 38.5,-22.5 + - pos: 31.5,-26.5 parent: 31 type: Transform - - uid: 4390 + - uid: 7061 components: - - pos: 74.5,-6.5 + - pos: 33.5,-26.5 parent: 31 type: Transform - - uid: 4392 + - uid: 7062 components: - - pos: 73.5,-6.5 + - pos: 31.5,-20.5 parent: 31 type: Transform - - uid: 4400 + - uid: 7070 components: - - pos: 79.5,11.5 + - pos: 80.5,-3.5 parent: 31 type: Transform - - uid: 4404 + - uid: 7081 components: - - pos: 71.5,-6.5 + - pos: -7.5,-41.5 parent: 31 type: Transform - - uid: 4414 + - uid: 7084 components: - - pos: 65.5,-6.5 + - pos: 36.5,24.5 parent: 31 type: Transform - - uid: 4416 + - uid: 7086 components: - - pos: 61.5,-6.5 + - pos: 35.5,24.5 parent: 31 type: Transform - - uid: 4417 + - uid: 7094 components: - - pos: 63.5,-6.5 + - pos: -9.5,-41.5 parent: 31 type: Transform - - uid: 4419 + - uid: 7096 components: - - pos: 61.5,-4.5 + - pos: -26.5,22.5 parent: 31 type: Transform - - uid: 4421 + - uid: 7100 components: - - pos: 77.5,-6.5 + - pos: -7.5,-42.5 parent: 31 type: Transform - - uid: 4428 + - uid: 7157 components: - - pos: 74.5,11.5 + - pos: 6.5,18.5 parent: 31 type: Transform - - uid: 4429 + - uid: 7162 components: - - pos: 78.5,-6.5 + - pos: 47.5,-2.5 parent: 31 type: Transform - - uid: 4430 + - uid: 7169 components: - - pos: 80.5,-4.5 + - pos: 26.5,-10.5 parent: 31 type: Transform - - uid: 4431 + - uid: 7181 components: - - pos: 79.5,-6.5 + - pos: 47.5,-4.5 parent: 31 type: Transform - - uid: 4432 + - uid: 7184 components: - - pos: 75.5,-6.5 + - pos: 47.5,-3.5 parent: 31 type: Transform - - uid: 4434 + - uid: 7223 components: - - pos: 80.5,5.5 + - pos: 28.5,2.5 parent: 31 type: Transform - - uid: 4435 + - uid: 7333 components: - - pos: 80.5,7.5 + - pos: 24.5,-14.5 parent: 31 type: Transform - - uid: 4444 + - uid: 7339 components: - - pos: 60.5,8.5 + - pos: -20.5,9.5 parent: 31 type: Transform - - uid: 4451 + - uid: 7352 components: - - pos: 69.5,-6.5 + - rot: -1.5707963267948966 rad + pos: 54.5,18.5 parent: 31 type: Transform - - uid: 4452 + - uid: 7441 components: - - pos: 52.5,4.5 + - pos: 1.5,-32.5 parent: 31 type: Transform - - uid: 4455 + - uid: 7442 components: - - pos: 73.5,11.5 + - pos: -3.5,-32.5 parent: 31 type: Transform - - uid: 4456 + - uid: 7467 components: - - pos: 76.5,11.5 + - pos: -17.5,-29.5 parent: 31 type: Transform - - uid: 4461 + - uid: 7468 components: - - pos: 80.5,6.5 + - pos: -16.5,-31.5 parent: 31 type: Transform - - uid: 4471 + - uid: 7475 components: - - pos: 80.5,-2.5 + - pos: -30.5,19.5 parent: 31 type: Transform - - uid: 4472 + - uid: 7481 components: - - pos: 80.5,-0.5 + - pos: -17.5,-31.5 parent: 31 type: Transform - - uid: 4473 + - uid: 7483 components: - - pos: 80.5,0.5 + - pos: -17.5,-33.5 parent: 31 type: Transform - - uid: 4474 + - uid: 7502 components: - - pos: 80.5,1.5 + - pos: -9.5,-40.5 parent: 31 type: Transform - - uid: 4475 + - uid: 7503 components: - - pos: 80.5,3.5 + - pos: -4.5,-18.5 parent: 31 type: Transform - - uid: 4476 + - uid: 7505 components: - - pos: 68.5,-6.5 + - pos: -8.5,-35.5 parent: 31 type: Transform - - uid: 4477 + - uid: 7506 components: - - pos: 67.5,-6.5 + - pos: -8.5,-36.5 parent: 31 type: Transform - - uid: 4494 + - uid: 7507 components: - - pos: 34.5,-19.5 + - pos: -20.5,-36.5 parent: 31 type: Transform - - uid: 4499 + - uid: 7508 components: - - pos: 34.5,-21.5 + - pos: -8.5,-34.5 parent: 31 type: Transform - - uid: 4509 + - uid: 7509 components: - - pos: 31.5,-21.5 + - pos: -7.5,-40.5 parent: 31 type: Transform - - uid: 4517 + - uid: 7531 components: - - pos: 38.5,-26.5 + - pos: -6.5,-40.5 parent: 31 type: Transform - - uid: 4518 + - uid: 7535 components: - - pos: 39.5,-26.5 + - pos: -5.5,-40.5 parent: 31 type: Transform - - uid: 4527 + - uid: 7541 components: - - pos: 32.5,-16.5 + - pos: -17.5,-37.5 parent: 31 type: Transform - - uid: 4533 + - uid: 7545 components: - - pos: 39.5,-9.5 + - pos: -19.5,-37.5 parent: 31 type: Transform - - uid: 4540 + - uid: 7546 components: - - pos: 71.5,11.5 + - pos: -20.5,-37.5 parent: 31 type: Transform - - uid: 4551 + - uid: 7551 components: - - pos: 69.5,11.5 + - pos: -8.5,-33.5 parent: 31 type: Transform - - uid: 4552 + - uid: 7555 components: - - pos: 78.5,11.5 + - pos: -10.5,-40.5 parent: 31 type: Transform - - uid: 4579 + - uid: 7560 components: - - pos: 39.5,-16.5 + - pos: 10.5,-36.5 parent: 31 type: Transform - - uid: 4580 + - uid: 7563 components: - - pos: 38.5,-18.5 + - pos: -18.5,-37.5 parent: 31 type: Transform - - uid: 4581 + - uid: 7578 components: - - pos: 37.5,-18.5 + - pos: -20.5,-35.5 parent: 31 type: Transform - - uid: 4582 + - uid: 7583 components: - - pos: 39.5,-18.5 + - pos: -20.5,-34.5 parent: 31 type: Transform - - uid: 4584 + - uid: 7585 components: - - pos: 39.5,-22.5 + - pos: -7.5,-33.5 parent: 31 type: Transform - - uid: 4587 + - uid: 7592 components: - - pos: 32.5,-26.5 + - rot: -1.5707963267948966 rad + pos: -14.5,-31.5 parent: 31 type: Transform - - uid: 4588 + - uid: 7601 components: - - pos: 34.5,-26.5 + - pos: -10.5,-32.5 parent: 31 type: Transform - - uid: 4594 + - uid: 7629 components: - - pos: 34.5,-20.5 + - pos: -39.5,16.5 parent: 31 type: Transform - - uid: 4601 + - uid: 7633 components: - - pos: 80.5,11.5 + - pos: -4.5,-24.5 parent: 31 type: Transform - - uid: 4611 + - uid: 7641 components: - - pos: 39.5,-10.5 + - pos: -13.5,-31.5 parent: 31 type: Transform - - uid: 4646 + - uid: 7681 components: - - pos: 39.5,-17.5 + - pos: 60.5,-0.5 parent: 31 type: Transform - - uid: 4648 + - uid: 7683 components: - - pos: 34.5,-22.5 + - pos: -39.5,13.5 parent: 31 type: Transform - - uid: 4661 + - uid: 7685 components: - - pos: 31.5,-22.5 + - rot: 3.141592653589793 rad + pos: -3.5,29.5 parent: 31 type: Transform - - uid: 4674 + - uid: 7698 components: - - pos: 55.5,-21.5 + - pos: 48.5,-12.5 parent: 31 type: Transform - - uid: 4675 + - uid: 7699 components: - - pos: 52.5,-18.5 + - rot: 3.141592653589793 rad + pos: -3.5,30.5 parent: 31 type: Transform - - uid: 4678 + - uid: 7712 components: - - pos: 46.5,-18.5 + - pos: -54.5,-11.5 parent: 31 type: Transform - - uid: 4689 + - uid: 7751 components: - - pos: 72.5,-6.5 + - pos: -15.5,7.5 parent: 31 type: Transform - - uid: 4698 + - uid: 7752 components: - - pos: -9.5,22.5 + - pos: -17.5,6.5 parent: 31 type: Transform - - uid: 4740 + - uid: 7797 components: - - pos: 13.5,24.5 + - pos: 20.5,-12.5 parent: 31 type: Transform - - uid: 4773 + - uid: 7805 components: - - pos: 80.5,-1.5 + - pos: -53.5,-12.5 parent: 31 type: Transform - - uid: 4779 + - uid: 7816 components: - - pos: 62.5,-6.5 + - pos: -28.5,-20.5 parent: 31 type: Transform - - uid: 4781 + - uid: 7822 components: - - pos: 61.5,-3.5 + - pos: 22.5,-12.5 parent: 31 type: Transform - - uid: 4788 + - uid: 7831 components: - - pos: 80.5,-6.5 + - pos: -43.5,-8.5 parent: 31 type: Transform - - uid: 4789 + - uid: 7846 components: - - pos: 64.5,-6.5 + - pos: 33.5,20.5 parent: 31 type: Transform - - uid: 4791 + - uid: 7942 components: - - pos: 61.5,-5.5 + - pos: 33.5,21.5 parent: 31 type: Transform - - uid: 4796 + - uid: 7968 components: - - pos: 70.5,-6.5 + - pos: -36.5,20.5 parent: 31 type: Transform - - uid: 4813 + - uid: 8019 components: - - pos: 13.5,-26.5 + - rot: 3.141592653589793 rad + pos: 57.5,9.5 parent: 31 type: Transform - - uid: 4814 + - uid: 8026 components: - - pos: 13.5,-27.5 + - pos: -53.5,-8.5 parent: 31 type: Transform - - uid: 4815 + - uid: 8051 components: - - pos: 13.5,-28.5 + - pos: -39.5,-12.5 parent: 31 type: Transform - - uid: 4816 + - uid: 8058 components: - - pos: 13.5,-29.5 + - pos: -1.5,-20.5 parent: 31 type: Transform - - uid: 4817 + - uid: 8107 components: - - pos: 13.5,-30.5 + - pos: 61.5,-0.5 parent: 31 type: Transform - - uid: 4818 + - uid: 8113 components: - - pos: 13.5,-31.5 + - pos: 52.5,0.5 parent: 31 type: Transform - - uid: 4833 + - uid: 8114 components: - - pos: 0.5,-28.5 + - pos: 53.5,0.5 parent: 31 type: Transform - - uid: 4834 + - uid: 8115 components: - - pos: 1.5,-28.5 + - pos: 54.5,0.5 parent: 31 type: Transform - - uid: 4837 + - uid: 8116 components: - - pos: 1.5,-31.5 + - pos: 54.5,-0.5 parent: 31 type: Transform - - uid: 4838 + - uid: 8117 components: - - pos: 5.5,-31.5 + - pos: 55.5,-0.5 parent: 31 type: Transform - - uid: 4839 + - uid: 8118 components: - - pos: 6.5,-31.5 + - pos: 56.5,-0.5 parent: 31 type: Transform - - uid: 4840 + - uid: 8121 components: - - pos: 7.5,-31.5 + - pos: 61.5,8.5 parent: 31 type: Transform - - uid: 4841 + - uid: 8123 components: - - pos: 8.5,-31.5 + - pos: 60.5,5.5 parent: 31 type: Transform - - uid: 4842 + - uid: 8126 components: - - pos: 9.5,-31.5 + - pos: 54.5,6.5 parent: 31 type: Transform - - uid: 4843 + - uid: 8128 components: - - pos: 10.5,-31.5 + - pos: 54.5,4.5 parent: 31 type: Transform - - uid: 4855 + - uid: 8129 components: - - pos: 33.5,24.5 + - pos: 54.5,5.5 parent: 31 type: Transform - - uid: 4867 + - uid: 8161 components: - - pos: 11.5,20.5 + - pos: 59.5,-6.5 parent: 31 type: Transform - - uid: 4887 + - uid: 8212 components: - - pos: 14.5,-3.5 + - pos: -41.5,-12.5 parent: 31 type: Transform - - uid: 4894 + - uid: 8215 components: - - pos: 0.5,6.5 + - pos: 39.5,-15.5 parent: 31 type: Transform - - uid: 4898 + - uid: 8220 components: - - pos: -18.5,11.5 + - pos: -30.5,18.5 parent: 31 type: Transform - - uid: 4931 + - uid: 8287 components: - - pos: 15.5,19.5 + - pos: -50.5,-12.5 parent: 31 type: Transform - - uid: 4935 + - uid: 8289 components: - - pos: 28.5,-22.5 + - pos: -51.5,-8.5 parent: 31 type: Transform - - uid: 4936 + - uid: 8311 components: - - pos: 24.5,-26.5 + - pos: -10.5,-33.5 parent: 31 type: Transform - - uid: 4937 + - uid: 8368 components: - - pos: 25.5,-26.5 + - pos: -12.5,-32.5 parent: 31 type: Transform - - uid: 4938 + - uid: 8381 components: - - pos: 26.5,-26.5 + - pos: -2.5,-23.5 parent: 31 type: Transform - - uid: 4939 + - uid: 8400 components: - - pos: 28.5,-20.5 + - rot: -1.5707963267948966 rad + pos: -9.5,23.5 parent: 31 type: Transform - - uid: 4941 + - uid: 8401 components: - - pos: 28.5,-21.5 + - rot: -1.5707963267948966 rad + pos: -8.5,23.5 parent: 31 type: Transform - - uid: 4942 + - uid: 8402 components: - - pos: 28.5,-24.5 + - pos: 58.5,-7.5 parent: 31 type: Transform - - uid: 4944 + - uid: 8452 components: - - pos: 28.5,-26.5 + - pos: -25.5,-25.5 parent: 31 type: Transform - - uid: 4945 + - uid: 8455 components: - - pos: 27.5,-26.5 + - pos: -21.5,-27.5 parent: 31 type: Transform - - uid: 4952 + - uid: 8457 components: - - pos: 25.5,-15.5 + - pos: -25.5,-24.5 parent: 31 type: Transform - - uid: 4971 + - uid: 8458 components: - - pos: 32.5,24.5 + - pos: -21.5,-25.5 parent: 31 type: Transform - - uid: 4978 + - uid: 8464 components: - - pos: -27.5,18.5 + - pos: -21.5,-30.5 parent: 31 type: Transform - - uid: 4979 + - uid: 8465 components: - - pos: -27.5,19.5 + - pos: -21.5,-29.5 parent: 31 type: Transform - - uid: 4980 + - uid: 8466 components: - - pos: -27.5,20.5 + - pos: -21.5,-28.5 parent: 31 type: Transform - - uid: 4988 + - uid: 8470 components: - - pos: -27.5,21.5 + - pos: -22.5,-27.5 parent: 31 type: Transform - - uid: 4989 + - uid: 8471 components: - - pos: -26.5,21.5 + - pos: -23.5,-27.5 parent: 31 type: Transform - - uid: 4990 + - uid: 8472 components: - - pos: -25.5,21.5 + - pos: -24.5,-27.5 parent: 31 type: Transform - - uid: 4991 + - uid: 8473 components: - - pos: -24.5,21.5 + - pos: -24.5,-25.5 parent: 31 type: Transform - - uid: 4993 + - uid: 8474 components: - - pos: -25.5,23.5 + - pos: -23.5,-25.5 parent: 31 type: Transform - - uid: 5006 + - uid: 8475 components: - - pos: 31.5,23.5 + - pos: -22.5,-25.5 parent: 31 type: Transform - - uid: 5036 + - uid: 8477 components: - - pos: -25.5,-20.5 + - pos: -25.5,-27.5 parent: 31 type: Transform - - uid: 5059 + - uid: 8516 components: - - pos: 11.5,27.5 + - pos: -28.5,-27.5 parent: 31 type: Transform - - uid: 5060 + - uid: 8517 components: - - pos: 14.5,26.5 + - pos: -28.5,-25.5 parent: 31 type: Transform - - uid: 5061 + - uid: 8518 components: - - pos: 13.5,27.5 + - pos: -31.5,-27.5 parent: 31 type: Transform - - uid: 5062 + - uid: 8519 components: - - pos: 13.5,25.5 + - pos: -31.5,-25.5 parent: 31 type: Transform - - uid: 5063 + - uid: 8520 components: - - pos: 31.5,24.5 + - pos: -29.5,-25.5 parent: 31 type: Transform - - uid: 5176 + - uid: 8521 components: - - pos: -24.5,22.5 + - pos: -30.5,-25.5 parent: 31 type: Transform - - uid: 5177 + - uid: 8522 components: - - pos: -24.5,23.5 + - pos: -30.5,-27.5 parent: 31 type: Transform - - uid: 5178 + - uid: 8523 components: - - pos: -24.5,25.5 + - pos: -29.5,-27.5 parent: 31 type: Transform - - uid: 5179 + - uid: 8528 components: - - pos: -24.5,26.5 + - pos: -21.5,-33.5 parent: 31 type: Transform - - uid: 5180 + - uid: 8529 components: - - pos: -23.5,26.5 + - pos: -23.5,-30.5 parent: 31 type: Transform - - uid: 5181 + - uid: 8530 components: - - pos: -22.5,26.5 + - pos: -20.5,-33.5 parent: 31 type: Transform - - uid: 5182 + - uid: 8532 components: - - pos: -21.5,26.5 + - pos: -37.5,-29.5 parent: 31 type: Transform - - uid: 5183 + - uid: 8534 components: - - pos: -20.5,26.5 + - pos: -31.5,-28.5 parent: 31 type: Transform - - uid: 5193 + - uid: 8535 components: - - pos: -26.5,23.5 + - pos: -35.5,-30.5 parent: 31 type: Transform - - uid: 5194 + - uid: 8536 components: - - pos: 39.5,20.5 + - pos: -36.5,-30.5 parent: 31 type: Transform - - uid: 5195 + - uid: 8537 components: - - pos: -26.5,25.5 + - pos: -30.5,-33.5 parent: 31 type: Transform - - uid: 5196 + - uid: 8538 components: - - pos: -25.5,25.5 + - pos: -34.5,-32.5 parent: 31 type: Transform - - uid: 5236 + - uid: 8539 components: - - pos: 43.5,21.5 + - pos: -34.5,-31.5 parent: 31 type: Transform - - uid: 5237 + - uid: 8540 components: - - pos: 41.5,22.5 + - pos: -34.5,-30.5 parent: 31 type: Transform - - uid: 5238 + - uid: 8541 components: - - pos: 41.5,21.5 + - pos: -37.5,-27.5 parent: 31 type: Transform - - uid: 5239 + - uid: 8542 components: - - pos: 41.5,23.5 + - pos: -37.5,-26.5 parent: 31 type: Transform - - uid: 5241 + - uid: 8544 components: - - pos: 43.5,24.5 + - pos: -37.5,-25.5 parent: 31 type: Transform - - uid: 5242 + - uid: 8545 components: - - pos: 43.5,22.5 + - pos: -29.5,-33.5 parent: 31 type: Transform - - uid: 5245 + - uid: 8547 components: - - pos: 43.5,23.5 + - pos: -29.5,-31.5 parent: 31 type: Transform - - uid: 5252 + - uid: 8548 components: - - pos: 17.5,-27.5 + - pos: -29.5,-30.5 parent: 31 type: Transform - - uid: 5253 + - uid: 8549 components: - - pos: 17.5,-28.5 + - pos: -34.5,-33.5 parent: 31 type: Transform - - uid: 5254 + - uid: 8550 components: - - pos: 17.5,-29.5 + - pos: -31.5,-33.5 parent: 31 type: Transform - - uid: 5255 + - uid: 8551 components: - - pos: 17.5,-30.5 + - pos: -33.5,-33.5 parent: 31 type: Transform - - uid: 5256 + - uid: 8552 components: - - pos: 16.5,-30.5 + - pos: -31.5,-29.5 parent: 31 type: Transform - - uid: 5257 + - uid: 8553 components: - - pos: 14.5,-30.5 + - pos: -31.5,-30.5 parent: 31 type: Transform - - uid: 5294 + - uid: 8554 components: - - pos: 13.5,-32.5 + - pos: -37.5,-30.5 parent: 31 type: Transform - - uid: 5295 + - uid: 8555 components: - - pos: 14.5,-32.5 + - pos: -30.5,-30.5 parent: 31 type: Transform - - uid: 5296 + - uid: 8557 components: - - pos: 15.5,-32.5 + - pos: -37.5,-22.5 parent: 31 type: Transform - - uid: 5297 + - uid: 8561 components: - - pos: 16.5,-32.5 + - pos: -32.5,-25.5 parent: 31 type: Transform - - uid: 5298 + - uid: 8562 components: - - pos: 17.5,-32.5 + - pos: -33.5,-25.5 parent: 31 type: Transform - - uid: 5315 + - uid: 8565 components: - - pos: 39.5,21.5 + - pos: -33.5,-22.5 parent: 31 type: Transform - - uid: 5316 + - uid: 8756 components: - - pos: 41.5,20.5 + - pos: -18.5,12.5 parent: 31 type: Transform - - uid: 5318 + - uid: 8758 components: - - pos: 42.5,24.5 + - pos: -16.5,12.5 parent: 31 type: Transform - - uid: 5319 + - uid: 8759 components: - - pos: 40.5,24.5 + - pos: -17.5,7.5 parent: 31 type: Transform - - uid: 5320 + - uid: 8760 components: - - pos: 41.5,24.5 + - pos: -15.5,6.5 parent: 31 type: Transform - - uid: 5672 + - uid: 8806 components: - - pos: 80.5,-5.5 + - pos: -38.5,20.5 parent: 31 type: Transform - - uid: 5677 + - uid: 8844 components: - - pos: 80.5,4.5 + - pos: -15.5,16.5 parent: 31 type: Transform - - uid: 5679 + - uid: 8936 components: - - pos: 80.5,2.5 + - pos: -12.5,-31.5 parent: 31 type: Transform - - uid: 5680 + - uid: 9005 components: - - pos: 68.5,11.5 + - pos: -12.5,-33.5 parent: 31 type: Transform - - uid: 5938 + - uid: 9075 components: - - pos: 23.5,18.5 + - pos: -44.5,-0.5 parent: 31 type: Transform - - uid: 5939 + - uid: 9088 components: - - pos: 19.5,18.5 + - pos: -25.5,-21.5 parent: 31 type: Transform - - uid: 5976 + - uid: 9144 components: - - rot: 1.5707963267948966 rad - pos: -3.5,11.5 + - rot: -1.5707963267948966 rad + pos: -3.5,-29.5 parent: 31 type: Transform - - uid: 5978 + - uid: 9168 components: - - rot: 3.141592653589793 rad - pos: -44.5,-12.5 + - rot: -1.5707963267948966 rad + pos: -4.5,-28.5 parent: 31 type: Transform - - uid: 5983 + - uid: 9182 components: - - rot: 3.141592653589793 rad - pos: -44.5,-8.5 + - pos: -38.5,-8.5 parent: 31 type: Transform - - uid: 5988 + - uid: 9183 components: - - rot: 1.5707963267948966 rad - pos: 40.5,-14.5 + - pos: -38.5,-6.5 parent: 31 type: Transform - - uid: 6181 + - uid: 9185 components: - - pos: 72.5,11.5 + - pos: -39.5,-2.5 parent: 31 type: Transform - - uid: 6210 + - uid: 9186 components: - - pos: 17.5,17.5 + - pos: -39.5,-0.5 parent: 31 type: Transform - - uid: 6230 + - uid: 9192 components: - - pos: 59.5,5.5 + - rot: -1.5707963267948966 rad + pos: -3.5,-28.5 parent: 31 type: Transform - - uid: 6231 + - uid: 9193 components: - - pos: 58.5,5.5 + - pos: -38.5,-12.5 parent: 31 type: Transform - - uid: 6245 + - uid: 9203 components: - - pos: 17.5,22.5 + - rot: -1.5707963267948966 rad + pos: -4.5,-26.5 parent: 31 type: Transform - - uid: 6247 + - uid: 9205 components: - - pos: 28.5,18.5 + - pos: -39.5,-6.5 parent: 31 type: Transform - - uid: 6248 + - uid: 9206 components: - - pos: 25.5,18.5 + - pos: -39.5,-4.5 parent: 31 type: Transform - - uid: 6253 + - uid: 9253 components: - - pos: 17.5,18.5 + - rot: -1.5707963267948966 rad + pos: -3.5,-30.5 parent: 31 type: Transform - - uid: 6283 + - uid: 9258 components: - - pos: 56.5,8.5 + - rot: -1.5707963267948966 rad + pos: -3.5,-31.5 parent: 31 type: Transform - - uid: 6284 + - uid: 9286 components: - - pos: 54.5,8.5 + - pos: -17.5,-32.5 parent: 31 type: Transform - - uid: 6288 + - uid: 9287 components: - - pos: 57.5,-2.5 + - pos: -13.5,-33.5 parent: 31 type: Transform - - uid: 6326 + - uid: 9288 components: - - rot: 3.141592653589793 rad - pos: -44.5,-10.5 + - pos: -17.5,-30.5 parent: 31 type: Transform - - uid: 6388 + - uid: 9293 components: - - pos: 50.5,6.5 + - pos: -11.5,-32.5 parent: 31 type: Transform - - uid: 6389 + - uid: 9304 components: - - pos: 38.5,7.5 + - pos: 5.5,-43.5 parent: 31 type: Transform - - uid: 6390 + - uid: 9305 components: - - pos: 45.5,12.5 + - pos: 11.5,-39.5 parent: 31 type: Transform - - uid: 6395 + - uid: 9306 components: - - pos: 45.5,14.5 + - pos: 11.5,-38.5 parent: 31 type: Transform - - uid: 6454 + - uid: 9307 components: - - pos: 46.5,6.5 + - pos: 11.5,-37.5 parent: 31 type: Transform - - uid: 6468 + - uid: 9308 components: - - pos: 37.5,10.5 + - pos: 11.5,-36.5 parent: 31 type: Transform - - uid: 6475 + - uid: 9309 components: - - pos: 48.5,6.5 + - pos: 10.5,-35.5 parent: 31 type: Transform - - uid: 6484 + - uid: 9310 components: - - pos: 40.5,7.5 + - pos: 10.5,-34.5 parent: 31 type: Transform - - uid: 6485 + - uid: 9311 components: - - pos: 41.5,8.5 + - pos: 10.5,-33.5 parent: 31 type: Transform - - uid: 6488 + - uid: 9312 components: - - pos: 39.5,7.5 + - pos: 7.5,-32.5 parent: 31 type: Transform - - uid: 6491 + - uid: 9313 components: - - pos: 44.5,14.5 + - pos: 7.5,-33.5 parent: 31 type: Transform - - uid: 6492 + - uid: 9314 components: - - pos: 43.5,14.5 + - pos: 7.5,-34.5 parent: 31 type: Transform - - uid: 6496 + - uid: 9315 components: - - pos: 43.5,10.5 + - pos: 7.5,-35.5 parent: 31 type: Transform - - uid: 6498 + - uid: 9316 components: - - pos: 44.5,10.5 + - pos: 7.5,-36.5 parent: 31 type: Transform - - uid: 6499 + - uid: 9317 components: - - pos: 37.5,9.5 + - pos: 6.5,-36.5 parent: 31 type: Transform - - uid: 6528 + - uid: 9318 components: - - pos: 50.5,18.5 + - pos: 5.5,-36.5 parent: 31 type: Transform - - uid: 6531 + - uid: 9319 components: - - pos: 46.5,14.5 + - pos: 4.5,-36.5 parent: 31 type: Transform - - uid: 6535 + - uid: 9320 components: - - pos: 45.5,13.5 + - pos: 4.5,-37.5 parent: 31 type: Transform - - uid: 6536 + - uid: 9321 components: - - pos: 45.5,11.5 + - pos: 3.5,-37.5 parent: 31 type: Transform - - uid: 6537 + - uid: 9329 components: - - pos: 45.5,10.5 + - rot: -1.5707963267948966 rad + pos: -34.5,19.5 parent: 31 type: Transform - - uid: 6542 + - uid: 9342 components: - - pos: 49.5,6.5 + - pos: 2.5,-37.5 parent: 31 type: Transform - - uid: 6601 + - uid: 9345 components: - - pos: 37.5,8.5 + - pos: 57.5,-0.5 parent: 31 type: Transform - - uid: 6608 + - uid: 9348 components: - - pos: 29.5,13.5 + - pos: 1.5,-37.5 parent: 31 type: Transform - - uid: 6612 + - uid: 9356 components: - - pos: 23.5,6.5 + - pos: 0.5,-37.5 parent: 31 type: Transform - - uid: 6616 + - uid: 9368 components: - - pos: 45.5,6.5 + - pos: -25.5,-22.5 parent: 31 type: Transform - - uid: 6622 + - uid: 9397 components: - - pos: 47.5,6.5 + - pos: -21.5,-31.5 parent: 31 type: Transform - - uid: 6627 + - uid: 9398 components: - - pos: 41.5,10.5 + - pos: -0.5,-37.5 parent: 31 type: Transform - - uid: 6628 + - uid: 9404 components: - - pos: 42.5,10.5 + - pos: -5.5,-37.5 parent: 31 type: Transform - - uid: 6822 + - uid: 9405 components: - - pos: 39.5,10.5 + - pos: -5.5,-36.5 parent: 31 type: Transform - - uid: 6837 + - uid: 9406 components: - - pos: 38.5,10.5 + - pos: -6.5,-36.5 parent: 31 type: Transform - - uid: 6851 + - uid: 9407 components: - - pos: 40.5,10.5 + - pos: -7.5,-36.5 parent: 31 type: Transform - - uid: 6857 + - uid: 9425 components: - - pos: 54.5,18.5 + - pos: -11.5,-40.5 parent: 31 type: Transform - - uid: 6859 + - uid: 9426 components: - - pos: 52.5,15.5 + - pos: -12.5,-40.5 parent: 31 type: Transform - - uid: 6862 + - uid: 9427 components: - - pos: 54.5,15.5 + - pos: -17.5,-40.5 parent: 31 type: Transform - - uid: 6870 + - uid: 9428 components: - - pos: 66.5,-6.5 + - pos: -17.5,-39.5 parent: 31 type: Transform - - uid: 6883 + - uid: 9429 components: - - pos: 52.5,18.5 + - pos: -17.5,-38.5 parent: 31 type: Transform - - uid: 6886 + - uid: 9434 components: - - pos: 42.5,14.5 + - pos: -22.5,-30.5 parent: 31 type: Transform - - uid: 6889 + - uid: 9435 components: - - pos: 41.5,7.5 + - pos: -24.5,-31.5 parent: 31 type: Transform - - uid: 6905 + - uid: 9436 components: - - pos: 30.5,18.5 + - pos: -22.5,-33.5 parent: 31 type: Transform - - uid: 6909 + - uid: 9437 components: - - pos: 49.5,18.5 + - pos: -23.5,-33.5 parent: 31 type: Transform - - uid: 6926 + - uid: 9438 components: - - pos: 80.5,8.5 + - pos: -24.5,-33.5 parent: 31 type: Transform - - uid: 6927 + - uid: 9446 components: - - pos: 76.5,-6.5 + - pos: -24.5,-30.5 parent: 31 type: Transform - - uid: 6929 + - uid: 9467 components: - - pos: 80.5,10.5 + - pos: 6.5,-43.5 parent: 31 type: Transform - - uid: 6950 + - uid: 9468 components: - - pos: 58.5,-2.5 + - rot: -1.5707963267948966 rad + pos: 9.5,-43.5 parent: 31 type: Transform - - uid: 6951 + - uid: 9470 components: - - pos: 59.5,-2.5 + - rot: -1.5707963267948966 rad + pos: 7.5,-43.5 parent: 31 type: Transform - - uid: 6952 + - uid: 9471 components: - - pos: 60.5,-2.5 + - rot: -1.5707963267948966 rad + pos: 8.5,-43.5 parent: 31 type: Transform - - uid: 6953 + - uid: 9472 components: - - pos: 61.5,-2.5 + - rot: -1.5707963267948966 rad + pos: 10.5,-43.5 parent: 31 type: Transform - - uid: 6954 + - uid: 9475 components: - - pos: 80.5,9.5 + - pos: 11.5,-43.5 parent: 31 type: Transform - - uid: 6955 + - uid: 9476 components: - - pos: 75.5,11.5 + - pos: 12.5,-43.5 parent: 31 type: Transform - - uid: 6956 + - uid: 9511 components: - - pos: 77.5,11.5 + - pos: 26.5,-8.5 parent: 31 type: Transform - - uid: 6983 + - uid: 9527 components: - - pos: 43.5,-22.5 + - pos: 28.5,11.5 parent: 31 type: Transform - - uid: 6984 + - uid: 9538 components: - - pos: 43.5,-26.5 + - pos: 62.5,11.5 parent: 31 type: Transform - - uid: 6985 + - uid: 9539 components: - - pos: 43.5,-21.5 + - pos: 61.5,11.5 parent: 31 type: Transform - - uid: 6986 + - uid: 9540 components: - - pos: 43.5,-27.5 + - pos: 61.5,10.5 parent: 31 type: Transform - - uid: 6987 + - uid: 9541 components: - - pos: 46.5,-30.5 + - pos: 61.5,9.5 parent: 31 type: Transform - - uid: 6990 + - uid: 9542 components: - - pos: 52.5,-30.5 + - pos: 67.5,11.5 parent: 31 type: Transform - - uid: 6992 + - uid: 9543 components: - - pos: 55.5,-27.5 + - pos: 66.5,11.5 parent: 31 type: Transform - - uid: 7034 + - uid: 9545 components: - - pos: 34.5,-18.5 + - pos: 65.5,11.5 parent: 31 type: Transform - - uid: 7047 + - uid: 9546 components: - - pos: 29.5,-20.5 + - pos: 64.5,11.5 parent: 31 type: Transform - - uid: 7048 + - uid: 9547 components: - - pos: 30.5,-20.5 + - pos: 63.5,11.5 parent: 31 type: Transform - - uid: 7049 + - uid: 9584 components: - - pos: 35.5,-18.5 + - pos: 26.5,-9.5 parent: 31 type: Transform - - uid: 7060 + - uid: 9586 components: - - pos: 31.5,-26.5 + - pos: 12.5,-39.5 parent: 31 type: Transform - - uid: 7061 + - uid: 9589 components: - - pos: 33.5,-26.5 + - rot: -1.5707963267948966 rad + pos: -6.5,23.5 parent: 31 type: Transform - - uid: 7062 + - uid: 9600 components: - - pos: 31.5,-20.5 + - rot: 1.5707963267948966 rad + pos: 44.5,24.5 parent: 31 type: Transform - - uid: 7070 + - uid: 9611 components: - - pos: 80.5,-3.5 + - pos: 2.5,-43.5 parent: 31 type: Transform - - uid: 7074 + - uid: 9612 components: - - pos: 31.5,22.5 + - pos: 2.5,-44.5 parent: 31 type: Transform - - uid: 7084 + - uid: 9636 components: - - pos: 36.5,24.5 + - pos: -5.5,-41.5 parent: 31 type: Transform - - uid: 7086 + - uid: 9637 components: - - pos: 35.5,24.5 + - pos: -5.5,-42.5 parent: 31 type: Transform - - uid: 7088 + - uid: 9639 components: - - pos: 31.5,21.5 + - pos: -4.5,-43.5 parent: 31 type: Transform - - uid: 7096 + - uid: 9640 components: - - pos: -26.5,22.5 + - pos: -1.5,-45.5 parent: 31 type: Transform - - uid: 7121 + - uid: 9641 components: - - pos: 31.5,20.5 + - pos: -1.5,-44.5 parent: 31 type: Transform - - uid: 7157 + - uid: 9642 components: - - pos: 6.5,18.5 + - pos: 2.5,-45.5 parent: 31 type: Transform - - uid: 7223 + - uid: 9643 components: - - pos: 28.5,2.5 + - pos: -4.5,-44.5 parent: 31 type: Transform - - uid: 7231 + - uid: 9644 components: - - pos: 13.5,-6.5 + - pos: -5.5,-43.5 parent: 31 type: Transform - - uid: 7374 + - uid: 9656 components: - - pos: -15.5,-23.5 + - pos: 4.5,-43.5 parent: 31 type: Transform - - uid: 7376 + - uid: 9657 components: - - pos: -15.5,-25.5 + - pos: 3.5,-43.5 parent: 31 type: Transform - - uid: 7435 + - uid: 9705 components: - - pos: -18.5,-30.5 + - rot: 3.141592653589793 rad + pos: -3.5,31.5 parent: 31 type: Transform - - uid: 7440 + - uid: 9721 components: - - pos: -3.5,-31.5 + - pos: -3.5,32.5 parent: 31 type: Transform - - uid: 7441 + - uid: 9722 components: - - pos: 1.5,-32.5 + - pos: 58.5,-0.5 parent: 31 type: Transform - - uid: 7442 + - uid: 9725 components: - - pos: -3.5,-32.5 + - pos: 59.5,-0.5 parent: 31 type: Transform - - uid: 7475 + - uid: 9730 components: - - pos: -30.5,19.5 + - pos: 46.5,-9.5 parent: 31 type: Transform - - uid: 7485 + - uid: 9742 components: - - rot: 1.5707963267948966 rad - pos: 41.5,-14.5 + - pos: -39.5,20.5 parent: 31 type: Transform - - uid: 7486 + - uid: 9765 components: - - rot: 1.5707963267948966 rad - pos: 39.5,-14.5 + - pos: -3.5,-33.5 parent: 31 type: Transform - - uid: 7487 + - uid: 9857 components: - - rot: 1.5707963267948966 rad - pos: 39.5,-12.5 + - rot: 3.141592653589793 rad + pos: 40.5,-14.5 parent: 31 type: Transform - - uid: 7488 + - uid: 9892 components: - - rot: 1.5707963267948966 rad - pos: 40.5,-12.5 + - rot: -1.5707963267948966 rad + pos: -33.5,19.5 parent: 31 type: Transform - - uid: 7549 + - uid: 9924 components: - - pos: -28.5,-13.5 + - rot: -1.5707963267948966 rad + pos: 29.5,19.5 parent: 31 type: Transform - - uid: 7636 + - uid: 9932 components: - - rot: 1.5707963267948966 rad - pos: 41.5,-12.5 + - rot: -1.5707963267948966 rad + pos: 28.5,22.5 parent: 31 type: Transform - - uid: 7638 + - uid: 9944 components: - rot: 3.141592653589793 rad - pos: -36.5,-20.5 + pos: 40.5,-15.5 parent: 31 type: Transform - - uid: 7678 + - uid: 10019 components: - - rot: 3.141592653589793 rad - pos: -9.5,27.5 + - pos: 24.5,-15.5 parent: 31 type: Transform - - uid: 7680 + - uid: 10081 components: - - pos: -8.5,33.5 + - rot: -1.5707963267948966 rad + pos: 18.5,28.5 parent: 31 type: Transform - - uid: 7681 + - uid: 10082 components: - - rot: 3.141592653589793 rad - pos: -3.5,32.5 + - rot: -1.5707963267948966 rad + pos: 18.5,25.5 parent: 31 type: Transform - - uid: 7683 + - uid: 10083 components: - - pos: -39.5,13.5 + - rot: -1.5707963267948966 rad + pos: 24.5,25.5 parent: 31 type: Transform - - uid: 7685 + - uid: 10084 components: - - rot: 3.141592653589793 rad - pos: -3.5,29.5 + - rot: -1.5707963267948966 rad + pos: 23.5,25.5 parent: 31 type: Transform - - uid: 7686 + - uid: 10085 components: - - pos: -9.5,33.5 + - rot: -1.5707963267948966 rad + pos: 19.5,25.5 parent: 31 type: Transform - - uid: 7693 + - uid: 10086 components: - - pos: -39.5,14.5 + - rot: -1.5707963267948966 rad + pos: 24.5,28.5 parent: 31 type: Transform - - uid: 7698 + - uid: 10118 components: - rot: 3.141592653589793 rad - pos: -9.5,28.5 + pos: 41.5,-14.5 parent: 31 type: Transform - - uid: 7699 + - uid: 10128 components: - rot: 3.141592653589793 rad - pos: -3.5,30.5 + pos: 45.5,-14.5 parent: 31 type: Transform - - uid: 7723 + - uid: 10131 components: - - rot: 3.141592653589793 rad - pos: -9.5,30.5 + - pos: 20.5,2.5 parent: 31 type: Transform - - uid: 7747 + - uid: 10135 components: - - rot: 3.141592653589793 rad - pos: -9.5,29.5 + - pos: -12.5,-34.5 parent: 31 type: Transform - - uid: 7751 + - uid: 10136 components: - - pos: -15.5,7.5 + - pos: -10.5,-34.5 parent: 31 type: Transform - - uid: 7752 + - uid: 10142 components: - - pos: -17.5,6.5 + - pos: -19.5,11.5 parent: 31 type: Transform - - uid: 7816 + - uid: 10199 components: - - pos: -28.5,-20.5 + - pos: -34.5,-17.5 parent: 31 type: Transform - - uid: 7968 + - uid: 10200 components: - - pos: -36.5,20.5 + - pos: -35.5,-17.5 parent: 31 type: Transform - - uid: 8107 + - uid: 10209 components: - - pos: 61.5,-0.5 + - pos: -35.5,20.5 parent: 31 type: Transform - - uid: 8113 + - uid: 10211 components: - - pos: 52.5,0.5 + - pos: -34.5,20.5 parent: 31 type: Transform - - uid: 8114 + - uid: 10244 components: - - pos: 53.5,0.5 + - pos: 25.5,-8.5 parent: 31 type: Transform - - uid: 8115 + - uid: 10304 components: - - pos: 54.5,0.5 + - pos: 22.5,-8.5 parent: 31 type: Transform - - uid: 8116 + - uid: 10308 components: - - pos: 54.5,-0.5 + - pos: 21.5,-8.5 parent: 31 type: Transform - - uid: 8117 + - uid: 10326 components: - - pos: 55.5,-0.5 + - pos: 20.5,-8.5 parent: 31 type: Transform - - uid: 8118 + - uid: 10411 components: - - pos: 56.5,-0.5 + - pos: -5.5,-18.5 parent: 31 type: Transform - - uid: 8119 + - uid: 10413 components: - - pos: 56.5,-2.5 + - pos: -6.5,-18.5 parent: 31 type: Transform - - uid: 8121 + - uid: 10557 components: - - pos: 61.5,8.5 + - pos: -0.5,-23.5 parent: 31 type: Transform - - uid: 8122 + - uid: 10593 components: - - pos: 59.5,8.5 + - rot: 3.141592653589793 rad + pos: 46.5,-11.5 parent: 31 type: Transform - - uid: 8123 + - uid: 10709 components: - - pos: 60.5,5.5 + - pos: -0.5,-22.5 parent: 31 type: Transform - - uid: 8124 + - uid: 10994 components: - - pos: 56.5,-1.5 + - pos: -1.5,-23.5 parent: 31 type: Transform - - uid: 8126 + - uid: 11038 components: - - pos: 54.5,6.5 + - rot: 1.5707963267948966 rad + pos: 47.5,21.5 parent: 31 type: Transform - - uid: 8128 + - uid: 11048 components: - - pos: 54.5,4.5 + - pos: 56.5,18.5 parent: 31 type: Transform - - uid: 8129 + - uid: 11093 components: - - pos: 54.5,5.5 + - pos: 56.5,14.5 parent: 31 type: Transform - - uid: 8205 + - uid: 11094 components: - - rot: 3.141592653589793 rad - pos: -36.5,-21.5 + - pos: 54.5,14.5 parent: 31 type: Transform - - uid: 8206 + - uid: 11114 components: - - rot: 3.141592653589793 rad - pos: -34.5,-20.5 + - pos: -8.5,30.5 parent: 31 type: Transform - - uid: 8207 + - uid: 11115 components: - - rot: 3.141592653589793 rad - pos: -34.5,-21.5 + - pos: -8.5,29.5 parent: 31 type: Transform - - uid: 8212 + - uid: 11116 components: - - pos: 39.5,-11.5 + - pos: -8.5,28.5 parent: 31 type: Transform - - uid: 8215 + - uid: 11117 components: - - pos: 39.5,-15.5 + - pos: -8.5,27.5 parent: 31 type: Transform - - uid: 8220 +- proto: WallSolid + entities: + - uid: 11 components: - - pos: -30.5,18.5 + - pos: -0.5,-40.5 parent: 31 type: Transform - - uid: 8452 + - uid: 26 components: - - pos: -25.5,-25.5 + - pos: 15.5,-18.5 parent: 31 type: Transform - - uid: 8453 + - uid: 112 components: - - pos: -18.5,-28.5 + - pos: 16.5,-16.5 parent: 31 type: Transform - - uid: 8455 + - uid: 118 components: - - pos: -21.5,-27.5 + - pos: 16.5,-17.5 parent: 31 type: Transform - - uid: 8457 + - uid: 126 components: - - pos: -25.5,-24.5 + - pos: 7.5,-6.5 parent: 31 type: Transform - - uid: 8458 + - uid: 136 components: - - pos: -21.5,-25.5 + - pos: 16.5,-18.5 parent: 31 type: Transform - - uid: 8459 + - uid: 139 components: - - pos: -18.5,-29.5 + - pos: -19.5,-13.5 parent: 31 type: Transform - - uid: 8462 + - uid: 144 components: - - pos: -19.5,-33.5 + - pos: -15.5,-1.5 parent: 31 type: Transform - - uid: 8463 + - uid: 165 components: - - pos: -12.5,-29.5 + - rot: 3.141592653589793 rad + pos: -31.5,1.5 parent: 31 type: Transform - - uid: 8464 + - uid: 217 components: - - pos: -21.5,-30.5 + - pos: 14.5,-18.5 parent: 31 type: Transform - - uid: 8465 + - uid: 251 components: - - pos: -21.5,-29.5 + - pos: -33.5,16.5 parent: 31 type: Transform - - uid: 8466 + - uid: 268 components: - - pos: -21.5,-28.5 + - pos: -13.5,-13.5 parent: 31 type: Transform - - uid: 8467 + - uid: 343 components: - - pos: -18.5,-33.5 + - rot: 1.5707963267948966 rad + pos: -12.5,2.5 parent: 31 type: Transform - - uid: 8470 + - uid: 400 components: - - pos: -22.5,-27.5 + - rot: -1.5707963267948966 rad + pos: -27.5,-12.5 parent: 31 type: Transform - - uid: 8471 + - uid: 404 components: - - pos: -23.5,-27.5 + - pos: -26.5,-7.5 parent: 31 type: Transform - - uid: 8472 + - uid: 416 components: - - pos: -24.5,-27.5 + - pos: -2.5,-13.5 parent: 31 type: Transform - - uid: 8473 + - uid: 454 components: - - pos: -24.5,-25.5 + - pos: 0.5,21.5 parent: 31 type: Transform - - uid: 8474 + - uid: 472 components: - - pos: -23.5,-25.5 + - pos: 19.5,-23.5 parent: 31 type: Transform - - uid: 8475 + - uid: 477 components: - - pos: -22.5,-25.5 + - pos: -20.5,-6.5 parent: 31 type: Transform - - uid: 8477 + - uid: 484 components: - - pos: -25.5,-27.5 + - pos: 20.5,-23.5 parent: 31 type: Transform - - uid: 8515 + - uid: 527 components: - - pos: -12.5,-30.5 + - pos: -14.5,-3.5 parent: 31 type: Transform - - uid: 8516 + - uid: 528 components: - - pos: -28.5,-27.5 + - pos: -21.5,-1.5 parent: 31 type: Transform - - uid: 8517 + - uid: 551 components: - - pos: -28.5,-25.5 + - pos: 8.5,-6.5 parent: 31 type: Transform - - uid: 8518 + - uid: 582 components: - - pos: -31.5,-27.5 + - pos: -29.5,-3.5 parent: 31 type: Transform - - uid: 8519 + - uid: 596 components: - - pos: -31.5,-25.5 + - pos: 9.5,26.5 parent: 31 type: Transform - - uid: 8520 + - uid: 603 components: - - pos: -29.5,-25.5 + - pos: -21.5,-10.5 parent: 31 type: Transform - - uid: 8521 + - uid: 610 components: - - pos: -30.5,-25.5 + - pos: -7.5,-7.5 parent: 31 type: Transform - - uid: 8522 + - uid: 612 components: - - pos: -30.5,-27.5 + - pos: 0.5,-7.5 parent: 31 type: Transform - - uid: 8523 + - uid: 641 components: - - pos: -29.5,-27.5 + - pos: -17.5,-13.5 parent: 31 type: Transform - - uid: 8528 + - uid: 659 components: - - pos: -21.5,-33.5 + - pos: 12.5,8.5 parent: 31 type: Transform - - uid: 8529 + - uid: 663 components: - - pos: -23.5,-30.5 + - pos: 31.5,-8.5 parent: 31 type: Transform - - uid: 8530 + - uid: 670 components: - - pos: -20.5,-33.5 + - pos: 1.5,-25.5 parent: 31 type: Transform - - uid: 8532 + - uid: 671 components: - - pos: -37.5,-29.5 + - pos: 16.5,-19.5 parent: 31 type: Transform - - uid: 8534 + - uid: 685 components: - - pos: -31.5,-28.5 + - pos: 28.5,-8.5 parent: 31 type: Transform - - uid: 8535 + - uid: 687 components: - - pos: -35.5,-30.5 + - pos: 30.5,-8.5 parent: 31 type: Transform - - uid: 8536 + - uid: 688 components: - - pos: -36.5,-30.5 + - pos: 28.5,-10.5 parent: 31 type: Transform - - uid: 8537 + - uid: 734 components: - - pos: -30.5,-33.5 + - pos: -7.5,-13.5 parent: 31 type: Transform - - uid: 8538 + - uid: 777 components: - - pos: -34.5,-32.5 + - pos: -26.5,-14.5 parent: 31 type: Transform - - uid: 8539 + - uid: 784 components: - - pos: -34.5,-31.5 + - pos: -5.5,-13.5 parent: 31 type: Transform - - uid: 8540 + - uid: 796 components: - - pos: -34.5,-30.5 + - pos: 1.5,-4.5 parent: 31 type: Transform - - uid: 8541 + - uid: 827 components: - - pos: -37.5,-27.5 + - pos: 44.5,-6.5 parent: 31 type: Transform - - uid: 8542 + - uid: 875 components: - - pos: -37.5,-26.5 + - pos: 23.5,-25.5 parent: 31 type: Transform - - uid: 8544 + - uid: 903 components: - - pos: -37.5,-25.5 + - pos: -13.5,-6.5 parent: 31 type: Transform - - uid: 8545 + - uid: 906 components: - - pos: -29.5,-33.5 + - pos: -14.5,-5.5 parent: 31 type: Transform - - uid: 8547 + - uid: 907 components: - - pos: -29.5,-31.5 + - pos: -13.5,-5.5 parent: 31 type: Transform - - uid: 8548 + - uid: 908 components: - - pos: -29.5,-30.5 + - pos: -12.5,-5.5 parent: 31 type: Transform - - uid: 8549 + - uid: 909 components: - - pos: -34.5,-33.5 + - pos: -11.5,-5.5 parent: 31 type: Transform - - uid: 8550 + - uid: 912 components: - - pos: -31.5,-33.5 + - pos: -14.5,-2.5 parent: 31 type: Transform - - uid: 8551 + - uid: 913 components: - - pos: -33.5,-33.5 + - pos: -13.5,-2.5 parent: 31 type: Transform - - uid: 8552 + - uid: 914 components: - - pos: -31.5,-29.5 + - pos: -11.5,-2.5 parent: 31 type: Transform - - uid: 8553 + - uid: 915 components: - - pos: -31.5,-30.5 + - pos: -10.5,-2.5 parent: 31 type: Transform - - uid: 8554 + - uid: 916 components: - - pos: -37.5,-30.5 + - pos: -15.5,-2.5 parent: 31 type: Transform - - uid: 8555 + - uid: 919 components: - - pos: -30.5,-30.5 + - pos: -15.5,-3.5 parent: 31 type: Transform - - uid: 8557 + - uid: 922 components: - - pos: -37.5,-22.5 + - pos: -13.5,2.5 parent: 31 type: Transform - - uid: 8561 + - uid: 923 components: - - pos: -32.5,-25.5 + - pos: -14.5,2.5 parent: 31 type: Transform - - uid: 8562 + - uid: 924 components: - - pos: -33.5,-25.5 + - pos: -15.5,2.5 parent: 31 type: Transform - - uid: 8565 + - uid: 929 components: - - pos: -33.5,-22.5 + - pos: -20.5,-10.5 parent: 31 type: Transform - - uid: 8756 + - uid: 930 components: - - pos: -18.5,12.5 + - pos: -20.5,-9.5 parent: 31 type: Transform - - uid: 8758 + - uid: 935 components: - - pos: -16.5,12.5 + - pos: -16.5,-6.5 parent: 31 type: Transform - - uid: 8759 + - uid: 960 components: - - pos: -17.5,7.5 + - pos: 35.5,-8.5 parent: 31 type: Transform - - uid: 8760 + - uid: 969 components: - - pos: -15.5,6.5 + - pos: 34.5,-8.5 parent: 31 type: Transform - - uid: 8806 + - uid: 1003 components: - - pos: -38.5,20.5 + - pos: -9.5,2.5 parent: 31 type: Transform - - uid: 8844 + - uid: 1009 components: - - pos: -15.5,16.5 + - pos: 0.5,2.5 parent: 31 type: Transform - - uid: 8854 + - uid: 1048 components: - - pos: 8.5,-12.5 + - pos: -14.5,-23.5 parent: 31 type: Transform - - uid: 8909 + - uid: 1088 components: - - pos: 7.5,-12.5 + - pos: -34.5,-11.5 parent: 31 type: Transform - - uid: 9005 + - uid: 1091 components: - - pos: -12.5,-33.5 + - pos: -34.5,-10.5 parent: 31 type: Transform - - uid: 9006 + - uid: 1115 components: - - pos: -11.5,-33.5 + - pos: -21.5,15.5 parent: 31 type: Transform - - uid: 9075 + - uid: 1124 components: - - pos: -44.5,-0.5 + - pos: -34.5,-9.5 parent: 31 type: Transform - - uid: 9088 + - uid: 1129 components: - - pos: -25.5,-21.5 + - pos: -34.5,-8.5 parent: 31 type: Transform - - uid: 9182 + - uid: 1170 components: - - pos: -38.5,-8.5 + - pos: -23.5,18.5 parent: 31 type: Transform - - uid: 9183 + - uid: 1245 components: - - pos: -38.5,-6.5 + - pos: -33.5,2.5 parent: 31 type: Transform - - uid: 9185 + - uid: 1255 components: - - pos: -39.5,-2.5 + - pos: -33.5,1.5 parent: 31 type: Transform - - uid: 9186 + - uid: 1276 components: - - pos: -39.5,-0.5 + - pos: -34.5,1.5 parent: 31 type: Transform - - uid: 9193 + - uid: 1291 + components: + - pos: -34.5,0.5 + parent: 31 + type: Transform + - uid: 1292 + components: + - pos: -34.5,-0.5 + parent: 31 + type: Transform + - uid: 1294 components: - - pos: -38.5,-12.5 + - pos: -34.5,-1.5 parent: 31 type: Transform - - uid: 9205 + - uid: 1295 components: - - pos: -39.5,-6.5 + - pos: -34.5,-2.5 parent: 31 type: Transform - - uid: 9206 + - uid: 1310 components: - - pos: -39.5,-4.5 + - pos: -34.5,-3.5 parent: 31 type: Transform - - uid: 9223 + - uid: 1311 components: - - rot: 1.5707963267948966 rad - pos: -4.5,11.5 + - pos: -34.5,-4.5 parent: 31 type: Transform - - uid: 9368 + - uid: 1318 components: - - pos: -25.5,-22.5 + - pos: -34.5,-5.5 parent: 31 type: Transform - - uid: 9397 + - uid: 1321 components: - - pos: -21.5,-31.5 + - pos: -31.5,-2.5 parent: 31 type: Transform - - uid: 9400 + - uid: 1335 components: - - pos: -17.5,-30.5 + - pos: -31.5,-1.5 parent: 31 type: Transform - - uid: 9401 + - uid: 1339 components: - - pos: -13.5,-30.5 + - pos: -31.5,-0.5 parent: 31 type: Transform - - uid: 9434 + - uid: 1340 components: - - pos: -22.5,-30.5 + - pos: -31.5,0.5 parent: 31 type: Transform - - uid: 9435 + - uid: 1342 components: - - pos: -24.5,-31.5 + - pos: -31.5,2.5 parent: 31 type: Transform - - uid: 9436 + - uid: 1349 components: - - pos: -22.5,-33.5 + - pos: 11.5,-18.5 parent: 31 type: Transform - - uid: 9437 + - uid: 1350 components: - - pos: -23.5,-33.5 + - pos: -30.5,2.5 parent: 31 type: Transform - - uid: 9438 + - uid: 1353 components: - - pos: -24.5,-33.5 + - pos: 10.5,-21.5 parent: 31 type: Transform - - uid: 9446 + - uid: 1363 components: - - pos: -24.5,-30.5 + - pos: -27.5,2.5 parent: 31 type: Transform - - uid: 9527 + - uid: 1364 components: - - pos: 28.5,11.5 + - pos: -26.5,2.5 parent: 31 type: Transform - - uid: 9538 + - uid: 1365 components: - - pos: 62.5,11.5 + - pos: -1.5,-9.5 parent: 31 type: Transform - - uid: 9539 + - uid: 1378 components: - - pos: 61.5,11.5 + - pos: -26.5,1.5 parent: 31 type: Transform - - uid: 9540 + - uid: 1420 components: - - pos: 61.5,10.5 + - pos: 12.5,-18.5 parent: 31 type: Transform - - uid: 9541 + - uid: 1426 components: - - pos: 61.5,9.5 + - pos: -25.5,1.5 parent: 31 type: Transform - - uid: 9542 + - uid: 1441 components: - - pos: 67.5,11.5 + - rot: 3.141592653589793 rad + pos: -13.5,-20.5 parent: 31 type: Transform - - uid: 9543 + - uid: 1458 components: - - pos: 66.5,11.5 + - pos: -21.5,-23.5 parent: 31 type: Transform - - uid: 9545 + - uid: 1461 components: - - pos: 65.5,11.5 + - pos: 25.5,-6.5 parent: 31 type: Transform - - uid: 9546 + - uid: 1471 components: - - pos: 64.5,11.5 + - rot: 3.141592653589793 rad + pos: -29.5,-14.5 parent: 31 type: Transform - - uid: 9547 + - uid: 1476 components: - - pos: 63.5,11.5 + - pos: 8.5,-9.5 parent: 31 type: Transform - - uid: 9705 + - uid: 1534 components: - - rot: 3.141592653589793 rad - pos: -3.5,31.5 + - pos: -1.5,-7.5 parent: 31 type: Transform - - uid: 9706 + - uid: 1579 components: - - rot: 3.141592653589793 rad - pos: -9.5,31.5 + - pos: -22.5,1.5 parent: 31 type: Transform - - uid: 9712 + - uid: 1587 components: - - pos: -40.5,20.5 + - pos: -27.5,17.5 parent: 31 type: Transform - - uid: 9721 + - uid: 1588 components: - - rot: 3.141592653589793 rad - pos: -9.5,32.5 + - pos: -26.5,15.5 parent: 31 type: Transform - - uid: 9722 + - uid: 1606 components: - - pos: -7.5,33.5 + - pos: -21.5,-0.5 parent: 31 type: Transform - - uid: 9723 + - uid: 1612 components: - - pos: -6.5,33.5 + - pos: -8.5,-3.5 parent: 31 type: Transform - - uid: 9728 + - uid: 1613 components: - - pos: -5.5,33.5 + - pos: 36.5,6.5 parent: 31 type: Transform - - uid: 9742 + - uid: 1630 components: - - pos: -39.5,20.5 + - pos: 36.5,2.5 parent: 31 type: Transform - - uid: 9765 + - uid: 1638 components: - - pos: -3.5,-33.5 + - pos: -28.5,15.5 parent: 31 type: Transform - - uid: 9766 + - uid: 1639 components: - - pos: -4.5,-33.5 + - pos: 29.5,-8.5 parent: 31 type: Transform - - uid: 9767 + - uid: 1643 components: - - pos: -5.5,-33.5 + - pos: 23.5,-21.5 parent: 31 type: Transform - - uid: 9924 + - uid: 1644 components: - - rot: -1.5707963267948966 rad - pos: 29.5,19.5 + - pos: 23.5,-19.5 parent: 31 type: Transform - - uid: 9926 + - uid: 1645 components: - - rot: -1.5707963267948966 rad - pos: 27.5,22.5 + - pos: 24.5,-19.5 parent: 31 type: Transform - - uid: 9932 + - uid: 1646 components: - - rot: -1.5707963267948966 rad - pos: 28.5,22.5 + - pos: 25.5,-19.5 parent: 31 type: Transform - - uid: 10081 + - uid: 1647 components: - - rot: -1.5707963267948966 rad - pos: 18.5,28.5 + - pos: 27.5,-19.5 parent: 31 type: Transform - - uid: 10082 + - uid: 1652 components: - - rot: -1.5707963267948966 rad - pos: 18.5,25.5 + - pos: 36.5,-8.5 parent: 31 type: Transform - - uid: 10083 + - uid: 1653 components: - - rot: -1.5707963267948966 rad - pos: 24.5,25.5 + - pos: -19.5,25.5 parent: 31 type: Transform - - uid: 10084 + - uid: 1669 components: - - rot: -1.5707963267948966 rad - pos: 23.5,25.5 + - pos: -20.5,15.5 parent: 31 type: Transform - - uid: 10085 + - uid: 1670 components: - - rot: -1.5707963267948966 rad - pos: 19.5,25.5 + - pos: -19.5,24.5 parent: 31 type: Transform - - uid: 10086 + - uid: 1671 components: - - rot: -1.5707963267948966 rad - pos: 24.5,28.5 + - pos: -22.5,15.5 parent: 31 type: Transform - - uid: 10209 + - uid: 1672 components: - - pos: -35.5,20.5 + - pos: -23.5,15.5 parent: 31 type: Transform - - uid: 10211 + - uid: 1673 components: - - pos: -34.5,20.5 + - pos: -24.5,15.5 parent: 31 type: Transform - - uid: 10213 + - uid: 1674 components: - - pos: -33.5,20.5 + - pos: -20.5,17.5 parent: 31 type: Transform - - uid: 10220 + - uid: 1677 components: - - pos: -33.5,19.5 + - pos: -19.5,21.5 parent: 31 type: Transform - - uid: 10226 + - uid: 1679 components: - - pos: -4.5,33.5 + - pos: -29.5,15.5 parent: 31 type: Transform - - uid: 10227 + - uid: 1685 components: - - pos: -3.5,33.5 + - pos: -25.5,-12.5 parent: 31 type: Transform -- proto: WallSolid - entities: - - uid: 26 + - uid: 1690 components: - - pos: 15.5,-18.5 + - pos: -33.5,13.5 parent: 31 type: Transform - - uid: 112 + - uid: 1697 components: - - pos: 16.5,-16.5 + - pos: -38.5,11.5 parent: 31 type: Transform - - uid: 118 + - uid: 1768 components: - - pos: 16.5,-17.5 + - pos: -0.5,-7.5 parent: 31 type: Transform - - uid: 126 + - uid: 1774 components: - - pos: 7.5,-6.5 + - pos: -33.5,12.5 parent: 31 type: Transform - - uid: 136 + - uid: 1775 components: - - pos: 16.5,-18.5 + - pos: -33.5,11.5 parent: 31 type: Transform - - uid: 144 + - uid: 1784 components: - - pos: -15.5,-1.5 + - pos: -34.5,11.5 parent: 31 type: Transform - - uid: 165 + - uid: 1811 components: - - rot: 3.141592653589793 rad - pos: -31.5,1.5 + - pos: -17.5,2.5 parent: 31 type: Transform - - uid: 251 + - uid: 1812 components: - - pos: -33.5,16.5 + - pos: -20.5,2.5 parent: 31 type: Transform - - uid: 253 + - uid: 1813 components: - - rot: -1.5707963267948966 rad - pos: 6.5,-3.5 + - pos: -21.5,2.5 parent: 31 type: Transform - - uid: 343 + - uid: 1823 components: - - rot: 1.5707963267948966 rad - pos: -12.5,2.5 + - pos: -21.5,0.5 parent: 31 type: Transform - - uid: 404 + - uid: 1825 components: - - pos: -26.5,-7.5 + - pos: 5.5,15.5 parent: 31 type: Transform - - uid: 413 + - uid: 1827 components: - - pos: -22.5,-12.5 + - pos: 5.5,14.5 parent: 31 type: Transform - - uid: 414 + - uid: 1835 components: - - pos: -21.5,-12.5 + - rot: 1.5707963267948966 rad + pos: 11.5,26.5 parent: 31 type: Transform - - uid: 417 + - uid: 2008 components: - - pos: -20.5,-13.5 + - pos: 20.5,-20.5 parent: 31 type: Transform - - uid: 418 + - uid: 2017 components: - - pos: -20.5,-14.5 + - pos: 6.5,-21.5 parent: 31 type: Transform - - uid: 454 + - uid: 2018 components: - - pos: 0.5,21.5 + - pos: 7.5,-21.5 parent: 31 type: Transform - - uid: 477 + - uid: 2019 components: - - pos: -20.5,-6.5 + - pos: 9.5,-21.5 parent: 31 type: Transform - - uid: 527 + - uid: 2021 components: - - pos: -14.5,-3.5 + - pos: 11.5,-21.5 parent: 31 type: Transform - - uid: 528 + - uid: 2022 components: - - pos: -21.5,-1.5 + - pos: 12.5,-21.5 parent: 31 type: Transform - - uid: 551 + - uid: 2023 components: - - pos: 8.5,-6.5 + - pos: 13.5,-21.5 parent: 31 type: Transform - - uid: 582 + - uid: 2024 components: - - pos: -29.5,-3.5 + - pos: 13.5,-22.5 parent: 31 type: Transform - - uid: 596 + - uid: 2025 components: - - pos: 9.5,26.5 + - pos: 13.5,-23.5 parent: 31 type: Transform - - uid: 610 + - uid: 2027 components: - - pos: -7.5,-7.5 + - pos: 13.5,-25.5 parent: 31 type: Transform - - uid: 612 + - uid: 2028 components: - - pos: 0.5,-7.5 + - pos: -25.5,-11.5 parent: 31 type: Transform - - uid: 659 + - uid: 2034 components: - - pos: 12.5,8.5 + - pos: 8.5,-21.5 parent: 31 type: Transform - - uid: 663 + - uid: 2035 components: - - pos: 31.5,-8.5 + - pos: 6.5,-22.5 parent: 31 type: Transform - - uid: 671 + - uid: 2036 components: - - pos: 16.5,-19.5 + - pos: 5.5,-22.5 parent: 31 type: Transform - - uid: 673 + - uid: 2057 components: - - pos: 16.5,-20.5 + - pos: -33.5,10.5 parent: 31 type: Transform - - uid: 674 + - uid: 2058 components: - - pos: 16.5,-21.5 + - pos: -21.5,1.5 parent: 31 type: Transform - - uid: 675 + - uid: 2059 components: - - pos: 16.5,-22.5 + - pos: -33.5,7.5 parent: 31 type: Transform - - uid: 676 + - uid: 2060 components: - - pos: 16.5,-23.5 + - pos: -33.5,6.5 parent: 31 type: Transform - - uid: 678 + - uid: 2061 components: - - pos: 17.5,-23.5 + - pos: -32.5,6.5 parent: 31 type: Transform - - uid: 679 + - uid: 2062 components: - - pos: 20.5,-23.5 + - pos: -31.5,6.5 parent: 31 type: Transform - - uid: 680 + - uid: 2063 components: - - pos: 20.5,-22.5 + - pos: -30.5,6.5 parent: 31 type: Transform - - uid: 681 + - uid: 2067 components: - - pos: 20.5,-21.5 + - pos: -26.5,6.5 parent: 31 type: Transform - - uid: 683 + - uid: 2068 components: - - pos: 20.5,-20.5 + - pos: -26.5,7.5 parent: 31 type: Transform - - uid: 684 + - uid: 2070 components: - - pos: 20.5,-19.5 + - pos: -30.5,7.5 parent: 31 type: Transform - - uid: 685 + - uid: 2071 components: - - pos: 28.5,-8.5 + - pos: -30.5,8.5 parent: 31 type: Transform - - uid: 687 + - uid: 2072 components: - - pos: 30.5,-8.5 + - pos: -30.5,9.5 parent: 31 type: Transform - - uid: 688 + - uid: 2073 components: - - pos: 28.5,-10.5 + - pos: -30.5,10.5 parent: 31 type: Transform - - uid: 796 + - uid: 2074 components: - - pos: 1.5,-4.5 + - pos: -30.5,11.5 parent: 31 type: Transform - - uid: 875 + - uid: 2075 components: - - pos: 23.5,-25.5 + - pos: -30.5,12.5 parent: 31 type: Transform - - uid: 903 + - uid: 2076 components: - - pos: -13.5,-6.5 + - pos: -28.5,12.5 parent: 31 type: Transform - - uid: 906 + - uid: 2077 components: - - pos: -14.5,-5.5 + - pos: -27.5,12.5 parent: 31 type: Transform - - uid: 907 + - uid: 2078 components: - - pos: -13.5,-5.5 + - pos: -26.5,12.5 parent: 31 type: Transform - - uid: 908 + - uid: 2079 components: - - pos: -12.5,-5.5 + - pos: -25.5,12.5 parent: 31 type: Transform - - uid: 909 + - uid: 2081 components: - - pos: -11.5,-5.5 + - pos: -23.5,12.5 parent: 31 type: Transform - - uid: 912 + - uid: 2083 components: - - pos: -14.5,-2.5 + - pos: -29.5,12.5 parent: 31 type: Transform - - uid: 913 + - uid: 2084 components: - - pos: -13.5,-2.5 + - pos: -22.5,11.5 parent: 31 type: Transform - - uid: 914 + - uid: 2085 components: - - pos: -11.5,-2.5 + - pos: -22.5,11.5 parent: 31 type: Transform - - uid: 915 + - uid: 2086 components: - - pos: -10.5,-2.5 + - pos: -21.5,11.5 parent: 31 type: Transform - - uid: 916 + - uid: 2089 components: - - pos: -15.5,-2.5 + - pos: -22.5,7.5 parent: 31 type: Transform - - uid: 919 + - uid: 2090 components: - - pos: -15.5,-3.5 + - pos: -21.5,7.5 parent: 31 type: Transform - - uid: 922 + - uid: 2091 components: - - pos: -13.5,2.5 + - pos: -21.5,6.5 parent: 31 type: Transform - - uid: 923 + - uid: 2094 components: - - pos: -14.5,2.5 + - pos: -25.5,11.5 parent: 31 type: Transform - - uid: 924 + - uid: 2112 components: - - pos: -15.5,2.5 + - pos: 23.5,2.5 parent: 31 type: Transform - - uid: 926 + - uid: 2113 components: - - pos: -17.5,-10.5 + - pos: 22.5,2.5 parent: 31 type: Transform - - uid: 927 + - uid: 2121 components: - - pos: -18.5,-10.5 + - pos: 12.5,2.5 parent: 31 type: Transform - - uid: 928 + - uid: 2122 components: - - pos: -19.5,-10.5 + - pos: 6.5,2.5 parent: 31 type: Transform - - uid: 929 + - uid: 2123 components: - - pos: -20.5,-10.5 + - pos: 5.5,2.5 parent: 31 type: Transform - - uid: 930 + - uid: 2124 components: - - pos: -20.5,-9.5 + - pos: 5.5,1.5 parent: 31 type: Transform - - uid: 935 + - uid: 2135 components: - - pos: -16.5,-6.5 + - pos: 5.5,-3.5 parent: 31 type: Transform - - uid: 960 + - uid: 2139 components: - - pos: 35.5,-8.5 + - pos: 5.5,-6.5 parent: 31 type: Transform - - uid: 969 + - uid: 2140 components: - - pos: 34.5,-8.5 + - pos: 5.5,-12.5 parent: 31 type: Transform - - uid: 1003 + - uid: 2144 components: - - pos: -9.5,2.5 + - pos: 5.5,-9.5 parent: 31 type: Transform - - uid: 1009 + - uid: 2162 components: - - pos: 0.5,2.5 + - pos: 21.5,-3.5 parent: 31 type: Transform - - uid: 1088 + - uid: 2163 components: - - pos: -34.5,-11.5 + - pos: 22.5,-3.5 parent: 31 type: Transform - - uid: 1091 + - uid: 2164 components: - - pos: -34.5,-10.5 + - pos: 23.5,-3.5 parent: 31 type: Transform - - uid: 1115 + - uid: 2165 components: - - pos: -21.5,15.5 + - pos: 24.5,-3.5 parent: 31 type: Transform - - uid: 1124 + - uid: 2166 components: - - pos: -34.5,-9.5 + - pos: 25.5,-3.5 parent: 31 type: Transform - - uid: 1129 + - uid: 2167 components: - - pos: -34.5,-8.5 + - pos: 25.5,-4.5 parent: 31 type: Transform - - uid: 1170 + - uid: 2168 components: - - pos: -23.5,18.5 + - pos: 25.5,-5.5 parent: 31 type: Transform - - uid: 1242 + - uid: 2169 components: - - pos: -33.5,9.5 + - pos: 25.5,-7.5 parent: 31 type: Transform - - uid: 1245 + - uid: 2176 components: - - pos: -33.5,2.5 + - pos: 20.5,-7.5 parent: 31 type: Transform - - uid: 1255 + - uid: 2178 components: - - pos: -33.5,1.5 + - pos: 20.5,-4.5 parent: 31 type: Transform - - uid: 1276 + - uid: 2214 components: - - pos: -34.5,1.5 + - pos: 6.5,-6.5 parent: 31 type: Transform - - uid: 1291 + - uid: 2224 components: - - pos: -34.5,0.5 + - pos: 16.5,8.5 parent: 31 type: Transform - - uid: 1292 + - uid: 2226 components: - - pos: -34.5,-0.5 + - pos: 11.5,13.5 parent: 31 type: Transform - - uid: 1294 + - uid: 2228 components: - - pos: -34.5,-1.5 + - pos: 6.5,-20.5 parent: 31 type: Transform - - uid: 1295 + - uid: 2243 components: - - pos: -34.5,-2.5 + - pos: 1.5,1.5 parent: 31 type: Transform - - uid: 1310 + - uid: 2244 components: - - pos: -34.5,-3.5 + - pos: 1.5,2.5 parent: 31 type: Transform - - uid: 1311 + - uid: 2246 components: - - pos: -34.5,-4.5 + - pos: 1.5,-3.5 parent: 31 type: Transform - - uid: 1318 + - uid: 2248 components: - - pos: -34.5,-5.5 + - pos: 1.5,-5.5 parent: 31 type: Transform - - uid: 1321 + - uid: 2249 components: - - pos: -31.5,-2.5 + - pos: 1.5,-6.5 parent: 31 type: Transform - - uid: 1335 + - uid: 2252 components: - - pos: -31.5,-1.5 + - rot: 3.141592653589793 rad + pos: -9.5,-2.5 parent: 31 type: Transform - - uid: 1339 + - uid: 2254 components: - - pos: -31.5,-0.5 + - pos: 1.5,-9.5 parent: 31 type: Transform - - uid: 1340 + - uid: 2255 components: - - pos: -31.5,0.5 + - pos: 1.5,-7.5 parent: 31 type: Transform - - uid: 1342 + - uid: 2256 components: - - pos: -31.5,2.5 + - pos: 1.5,-11.5 parent: 31 type: Transform - - uid: 1349 + - uid: 2257 components: - - pos: 11.5,-18.5 + - pos: 1.5,-12.5 parent: 31 type: Transform - - uid: 1350 + - uid: 2258 components: - - pos: -30.5,2.5 + - pos: 1.5,-8.5 parent: 31 type: Transform - - uid: 1353 + - uid: 2259 components: - - pos: 10.5,-21.5 + - pos: 0.5,-12.5 parent: 31 type: Transform - - uid: 1363 + - uid: 2262 components: - - pos: -27.5,2.5 + - pos: -2.5,-12.5 parent: 31 type: Transform - - uid: 1364 + - uid: 2265 components: - - pos: -26.5,2.5 + - rot: -1.5707963267948966 rad + pos: 21.5,-18.5 parent: 31 type: Transform - - uid: 1365 + - uid: 2267 components: - - pos: -1.5,-9.5 + - pos: -21.5,-11.5 parent: 31 type: Transform - - uid: 1378 + - uid: 2268 components: - - pos: -26.5,1.5 + - pos: -26.5,-10.5 parent: 31 type: Transform - - uid: 1420 + - uid: 2270 components: - - pos: 12.5,-18.5 + - pos: -2.5,-11.5 parent: 31 type: Transform - - uid: 1426 + - uid: 2271 components: - - pos: -25.5,1.5 + - pos: -3.5,-11.5 parent: 31 type: Transform - - uid: 1458 + - uid: 2273 components: - - pos: -21.5,-23.5 + - pos: -5.5,-11.5 parent: 31 type: Transform - - uid: 1461 + - uid: 2274 components: - - pos: 25.5,-6.5 + - pos: -6.5,-11.5 parent: 31 type: Transform - - uid: 1476 + - uid: 2275 components: - - pos: 8.5,-9.5 + - pos: -6.5,-12.5 parent: 31 type: Transform - - uid: 1534 + - uid: 2279 components: - - pos: -1.5,-7.5 + - pos: -24.5,-17.5 parent: 31 type: Transform - - uid: 1579 + - uid: 2285 components: - - pos: -22.5,1.5 + - pos: -26.5,-17.5 parent: 31 type: Transform - - uid: 1587 + - uid: 2286 components: - - pos: -27.5,17.5 + - pos: -22.5,-17.5 parent: 31 type: Transform - - uid: 1588 + - uid: 2289 components: - - pos: -26.5,15.5 + - rot: 3.141592653589793 rad + pos: -12.5,-20.5 parent: 31 type: Transform - - uid: 1606 + - uid: 2295 components: - - pos: -21.5,-0.5 + - rot: 3.141592653589793 rad + pos: -29.5,-17.5 parent: 31 type: Transform - - uid: 1612 + - uid: 2320 components: - - pos: -8.5,-3.5 + - pos: -8.5,-13.5 parent: 31 type: Transform - - uid: 1613 + - uid: 2327 components: - - pos: 36.5,6.5 + - pos: 23.5,14.5 parent: 31 type: Transform - - uid: 1630 + - uid: 2346 components: - - pos: 36.5,2.5 + - pos: -18.5,-17.5 parent: 31 type: Transform - - uid: 1634 + - uid: 2347 components: - - pos: -32.5,15.5 + - pos: -4.5,-13.5 parent: 31 type: Transform - - uid: 1638 + - uid: 2349 components: - - pos: -28.5,15.5 + - pos: -18.5,-18.5 parent: 31 type: Transform - - uid: 1639 + - uid: 2351 components: - - pos: 29.5,-8.5 + - rot: 3.141592653589793 rad + pos: -30.5,-12.5 parent: 31 type: Transform - - uid: 1643 + - uid: 2352 components: - - pos: 23.5,-21.5 + - rot: 3.141592653589793 rad + pos: -31.5,-12.5 parent: 31 type: Transform - - uid: 1644 + - uid: 2359 components: - - pos: 23.5,-19.5 + - pos: 5.5,-28.5 parent: 31 type: Transform - - uid: 1645 + - uid: 2364 components: - - pos: 24.5,-19.5 + - pos: -16.5,-13.5 parent: 31 type: Transform - - uid: 1646 + - uid: 2365 components: - - pos: 25.5,-19.5 + - pos: -15.5,-13.5 parent: 31 type: Transform - - uid: 1647 + - uid: 2366 components: - - pos: 27.5,-19.5 + - pos: -14.5,-13.5 parent: 31 type: Transform - - uid: 1652 + - uid: 2368 components: - - pos: 36.5,-8.5 + - pos: -11.5,-13.5 parent: 31 type: Transform - - uid: 1653 + - uid: 2369 components: - - pos: -19.5,25.5 + - pos: -10.5,-13.5 parent: 31 type: Transform - - uid: 1669 + - uid: 2370 components: - - pos: -20.5,15.5 + - pos: -10.5,-12.5 parent: 31 type: Transform - - uid: 1670 + - uid: 2371 components: - - pos: -19.5,24.5 + - pos: -10.5,-11.5 parent: 31 type: Transform - - uid: 1671 + - uid: 2372 components: - - pos: -22.5,15.5 + - rot: 3.141592653589793 rad + pos: -29.5,-12.5 parent: 31 type: Transform - - uid: 1672 + - uid: 2373 components: - - pos: -23.5,15.5 + - pos: -10.5,-9.5 parent: 31 type: Transform - - uid: 1673 + - uid: 2375 components: - - pos: -24.5,15.5 + - pos: -11.5,-8.5 parent: 31 type: Transform - - uid: 1674 + - uid: 2376 components: - - pos: -20.5,17.5 + - pos: -13.5,-8.5 parent: 31 type: Transform - - uid: 1677 + - uid: 2377 components: - - pos: -19.5,21.5 + - pos: -15.5,-9.5 parent: 31 type: Transform - - uid: 1679 + - uid: 2378 components: - - pos: -29.5,15.5 + - pos: -10.5,-8.5 parent: 31 type: Transform - - uid: 1685 + - uid: 2379 components: - - pos: -25.5,-12.5 + - pos: -16.5,-8.5 parent: 31 type: Transform - - uid: 1688 + - uid: 2380 components: - - pos: 18.5,-23.5 + - pos: -16.5,-9.5 parent: 31 type: Transform - - uid: 1689 + - uid: 2381 components: - - pos: 19.5,-23.5 + - pos: -16.5,-10.5 parent: 31 type: Transform - - uid: 1690 + - uid: 2382 components: - - pos: -33.5,13.5 + - pos: -16.5,-11.5 parent: 31 type: Transform - - uid: 1697 + - uid: 2388 components: - - pos: -38.5,11.5 + - pos: -2.5,-7.5 parent: 31 type: Transform - - uid: 1707 + - uid: 2392 components: - - pos: 16.5,14.5 + - pos: -8.5,-4.5 parent: 31 type: Transform - - uid: 1768 + - uid: 2396 components: - - pos: -0.5,-7.5 + - pos: -6.5,-7.5 parent: 31 type: Transform - - uid: 1774 + - uid: 2397 components: - - pos: -33.5,12.5 + - pos: -8.5,-5.5 parent: 31 type: Transform - - uid: 1775 + - uid: 2399 components: - - pos: -33.5,11.5 + - pos: -9.5,-5.5 parent: 31 type: Transform - - uid: 1779 + - uid: 2400 components: - - pos: -20.5,-16.5 + - pos: -10.5,-5.5 parent: 31 type: Transform - - uid: 1784 + - uid: 2407 components: - - pos: -34.5,11.5 + - pos: -10.5,2.5 parent: 31 type: Transform - - uid: 1811 + - uid: 2408 components: - - pos: -17.5,2.5 + - pos: -4.5,2.5 parent: 31 type: Transform - - uid: 1812 + - uid: 2410 components: - - pos: -20.5,2.5 + - pos: -11.5,2.5 parent: 31 type: Transform - - uid: 1813 + - uid: 2425 components: - - pos: -21.5,2.5 + - pos: 0.5,-17.5 parent: 31 type: Transform - - uid: 1823 + - uid: 2426 components: - - pos: -21.5,0.5 + - pos: 0.5,-13.5 parent: 31 type: Transform - - uid: 1825 + - uid: 2429 components: - - pos: 5.5,15.5 + - rot: 3.141592653589793 rad + pos: -11.5,-23.5 parent: 31 type: Transform - - uid: 1827 + - uid: 2430 components: - - pos: 5.5,14.5 + - pos: -26.5,-9.5 parent: 31 type: Transform - - uid: 1835 + - uid: 2431 components: - - rot: 1.5707963267948966 rad - pos: 11.5,26.5 + - rot: 3.141592653589793 rad + pos: -31.5,8.5 parent: 31 type: Transform - - uid: 2008 + - uid: 2435 components: - - pos: -19.5,11.5 + - pos: -31.5,-9.5 parent: 31 type: Transform - - uid: 2017 + - uid: 2436 components: - - pos: 6.5,-21.5 + - pos: -30.5,-3.5 parent: 31 type: Transform - - uid: 2018 + - uid: 2441 components: - - pos: 7.5,-21.5 + - pos: -34.5,-7.5 parent: 31 type: Transform - - uid: 2019 + - uid: 2442 components: - - pos: 9.5,-21.5 + - pos: -31.5,-5.5 parent: 31 type: Transform - - uid: 2021 + - uid: 2443 components: - - pos: 11.5,-21.5 + - pos: -31.5,-4.5 parent: 31 type: Transform - - uid: 2022 + - uid: 2444 components: - - pos: 12.5,-21.5 + - pos: -31.5,-3.5 parent: 31 type: Transform - - uid: 2023 + - uid: 2449 components: - - pos: 13.5,-21.5 + - rot: 3.141592653589793 rad + pos: -9.5,-23.5 parent: 31 type: Transform - - uid: 2024 + - uid: 2450 components: - - pos: 13.5,-22.5 + - rot: 3.141592653589793 rad + pos: -9.5,-24.5 parent: 31 type: Transform - - uid: 2025 + - uid: 2459 components: - - pos: 13.5,-23.5 + - pos: 12.5,13.5 parent: 31 type: Transform - - uid: 2027 + - uid: 2460 components: - - pos: 13.5,-25.5 + - pos: 13.5,13.5 parent: 31 type: Transform - - uid: 2034 + - uid: 2461 components: - - pos: 8.5,-21.5 + - pos: -17.5,-6.5 parent: 31 type: Transform - - uid: 2035 + - uid: 2463 components: - - pos: 6.5,-22.5 + - pos: 14.5,13.5 parent: 31 type: Transform - - uid: 2036 + - uid: 2466 components: - - pos: 5.5,-22.5 + - pos: -17.5,-4.5 parent: 31 type: Transform - - uid: 2057 + - uid: 2467 components: - - pos: -33.5,10.5 + - pos: -17.5,-5.5 parent: 31 type: Transform - - uid: 2058 + - uid: 2468 components: - - pos: -21.5,1.5 + - pos: -17.5,-3.5 parent: 31 type: Transform - - uid: 2059 + - uid: 2469 components: - - pos: -33.5,7.5 + - pos: -18.5,-3.5 parent: 31 type: Transform - - uid: 2060 + - uid: 2470 components: - - pos: -33.5,6.5 + - pos: -19.5,-3.5 parent: 31 type: Transform - - uid: 2061 + - uid: 2471 components: - - pos: -32.5,6.5 + - pos: -20.5,-3.5 parent: 31 type: Transform - - uid: 2062 + - uid: 2472 components: - - pos: -31.5,6.5 + - pos: -21.5,-3.5 parent: 31 type: Transform - - uid: 2063 + - uid: 2473 components: - - pos: -30.5,6.5 + - pos: -21.5,-2.5 parent: 31 type: Transform - - uid: 2067 + - uid: 2503 components: - - pos: -26.5,6.5 + - rot: -1.5707963267948966 rad + pos: -12.5,-27.5 parent: 31 type: Transform - - uid: 2068 + - uid: 2581 components: - - pos: -26.5,7.5 + - pos: 16.5,-22.5 parent: 31 type: Transform - - uid: 2070 + - uid: 2661 components: - - pos: -30.5,7.5 + - pos: 14.5,-12.5 parent: 31 type: Transform - - uid: 2071 + - uid: 2662 components: - - pos: -30.5,8.5 + - pos: 15.5,-12.5 parent: 31 type: Transform - - uid: 2072 + - uid: 2665 components: - - pos: -30.5,9.5 + - pos: 11.5,-12.5 parent: 31 type: Transform - - uid: 2073 + - uid: 2666 components: - - pos: -30.5,10.5 + - pos: 12.5,-12.5 parent: 31 type: Transform - - uid: 2074 + - uid: 2667 components: - - pos: -30.5,11.5 + - pos: 13.5,-12.5 parent: 31 type: Transform - - uid: 2075 + - uid: 3376 components: - - pos: -30.5,12.5 + - pos: -22.5,18.5 parent: 31 type: Transform - - uid: 2076 + - uid: 3405 components: - - pos: -28.5,12.5 + - pos: -1.5,-8.5 parent: 31 type: Transform - - uid: 2077 + - uid: 3416 components: - - pos: -27.5,12.5 + - rot: 1.5707963267948966 rad + pos: 17.5,-19.5 parent: 31 type: Transform - - uid: 2078 + - uid: 3592 components: - - pos: -26.5,12.5 + - pos: -13.5,-23.5 parent: 31 type: Transform - - uid: 2079 + - uid: 3595 components: - - pos: -25.5,12.5 + - rot: -1.5707963267948966 rad + pos: -12.5,-23.5 parent: 31 type: Transform - - uid: 2081 + - uid: 3623 components: - - pos: -23.5,12.5 + - pos: 9.5,24.5 parent: 31 type: Transform - - uid: 2083 + - uid: 3875 components: - - pos: -29.5,12.5 + - rot: 1.5707963267948966 rad + pos: 9.5,23.5 parent: 31 type: Transform - - uid: 2084 + - uid: 3915 components: - - pos: -22.5,11.5 + - pos: -9.5,-8.5 parent: 31 type: Transform - - uid: 2085 + - uid: 3916 components: - - pos: -22.5,11.5 + - pos: -13.5,-7.5 parent: 31 type: Transform - - uid: 2086 + - uid: 3925 components: - - pos: -21.5,11.5 + - pos: 5.5,0.5 parent: 31 type: Transform - - uid: 2087 + - uid: 3926 components: - - pos: -22.5,10.5 + - rot: -1.5707963267948966 rad + pos: -12.5,-24.5 parent: 31 type: Transform - - uid: 2088 + - uid: 3955 components: - - pos: -22.5,8.5 + - pos: -25.5,7.5 parent: 31 type: Transform - - uid: 2089 + - uid: 3973 components: - - pos: -22.5,7.5 + - pos: 1.5,0.5 parent: 31 type: Transform - - uid: 2090 + - uid: 3993 components: - - pos: -21.5,7.5 + - rot: -1.5707963267948966 rad + pos: -12.5,-26.5 parent: 31 type: Transform - - uid: 2091 + - uid: 4004 components: - - pos: -21.5,6.5 + - pos: -8.5,-7.5 parent: 31 type: Transform - - uid: 2092 + - uid: 4021 components: - - pos: -20.5,6.5 + - pos: -8.5,-7.5 parent: 31 type: Transform - - uid: 2093 + - uid: 4050 components: - - pos: -19.5,6.5 + - pos: -3.5,-7.5 parent: 31 type: Transform - - uid: 2094 + - uid: 4051 components: - - pos: -25.5,11.5 + - pos: -4.5,-7.5 parent: 31 type: Transform - - uid: 2112 + - uid: 4052 components: - - pos: 23.5,2.5 + - pos: -5.5,-7.5 parent: 31 type: Transform - - uid: 2113 + - uid: 4053 components: - - pos: 22.5,2.5 + - pos: -8.5,-8.5 parent: 31 type: Transform - - uid: 2121 + - uid: 4064 components: - - pos: 12.5,2.5 + - pos: -26.5,-0.5 parent: 31 type: Transform - - uid: 2122 + - uid: 4065 components: - - pos: 6.5,2.5 + - pos: -27.5,-0.5 parent: 31 type: Transform - - uid: 2123 + - uid: 4066 components: - - pos: 5.5,2.5 + - pos: -28.5,-0.5 parent: 31 type: Transform - - uid: 2124 + - uid: 4067 components: - - pos: 5.5,1.5 + - pos: -29.5,-0.5 parent: 31 type: Transform - - uid: 2125 + - uid: 4068 components: - - pos: 20.5,2.5 + - pos: -30.5,-0.5 parent: 31 type: Transform - - uid: 2135 + - uid: 4069 components: - - pos: 5.5,-3.5 + - pos: -26.5,-3.5 parent: 31 type: Transform - - uid: 2139 + - uid: 4070 components: - - pos: 5.5,-6.5 + - pos: -27.5,-3.5 parent: 31 type: Transform - - uid: 2140 + - uid: 4071 components: - - pos: 5.5,-12.5 + - pos: -28.5,-3.5 parent: 31 type: Transform - - uid: 2144 + - uid: 4072 components: - - pos: 5.5,-9.5 + - pos: -31.5,-6.5 parent: 31 type: Transform - - uid: 2161 + - uid: 4073 components: - - pos: 20.5,-3.5 + - pos: -26.5,-6.5 parent: 31 type: Transform - - uid: 2162 + - uid: 4074 components: - - pos: 21.5,-3.5 + - pos: -27.5,-6.5 parent: 31 type: Transform - - uid: 2163 + - uid: 4075 components: - - pos: 22.5,-3.5 + - pos: -28.5,-6.5 parent: 31 type: Transform - - uid: 2164 + - uid: 4076 components: - - pos: 23.5,-3.5 + - pos: -29.5,-6.5 parent: 31 type: Transform - - uid: 2165 + - uid: 4077 components: - - pos: 24.5,-3.5 + - pos: -30.5,-6.5 parent: 31 type: Transform - - uid: 2166 + - uid: 4080 components: - - pos: 25.5,-3.5 + - pos: -26.5,-1.5 parent: 31 type: Transform - - uid: 2167 + - uid: 4081 components: - - pos: 25.5,-4.5 + - pos: -26.5,-4.5 parent: 31 type: Transform - - uid: 2168 + - uid: 4091 components: - - pos: 25.5,-5.5 + - rot: -1.5707963267948966 rad + pos: -12.5,-22.5 parent: 31 type: Transform - - uid: 2169 + - uid: 4094 components: - - pos: 25.5,-7.5 + - rot: -1.5707963267948966 rad + pos: -12.5,-21.5 parent: 31 type: Transform - - uid: 2170 + - uid: 4209 components: - - pos: 25.5,-8.5 + - pos: -19.5,-17.5 parent: 31 type: Transform - - uid: 2171 + - uid: 4221 components: - - pos: 24.5,-8.5 + - pos: -0.5,-13.5 parent: 31 type: Transform - - uid: 2172 + - uid: 4246 components: - - pos: 23.5,-8.5 + - rot: -1.5707963267948966 rad + pos: 5.5,-23.5 parent: 31 type: Transform - - uid: 2173 + - uid: 4295 components: - - pos: 22.5,-8.5 + - pos: -1.5,-13.5 parent: 31 type: Transform - - uid: 2174 + - uid: 4296 components: - - pos: 21.5,-8.5 + - pos: 17.5,13.5 parent: 31 type: Transform - - uid: 2175 + - uid: 4312 components: - - pos: 20.5,-8.5 + - pos: 0.5,-9.5 parent: 31 type: Transform - - uid: 2176 + - uid: 4313 components: - - pos: 20.5,-7.5 + - pos: -3.5,-13.5 parent: 31 type: Transform - - uid: 2178 + - uid: 4331 components: - - pos: 20.5,-4.5 + - pos: 16.5,-21.5 parent: 31 type: Transform - - uid: 2179 + - uid: 4353 components: - - pos: 20.5,-9.5 + - rot: 1.5707963267948966 rad + pos: 19.5,-19.5 parent: 31 type: Transform - - uid: 2200 + - uid: 4458 components: - - pos: 20.5,-18.5 + - pos: -8.5,2.5 parent: 31 type: Transform - - uid: 2214 + - uid: 4506 components: - - pos: 6.5,-6.5 + - pos: 34.5,-10.5 parent: 31 type: Transform - - uid: 2224 + - uid: 4511 components: - - pos: 16.5,8.5 + - pos: 29.5,-18.5 parent: 31 type: Transform - - uid: 2226 + - uid: 4520 components: - - pos: 11.5,13.5 + - pos: 31.5,-18.5 parent: 31 type: Transform - - uid: 2228 + - uid: 4558 components: - - pos: 6.5,-20.5 + - rot: 3.141592653589793 rad + pos: -29.5,-13.5 parent: 31 type: Transform - - uid: 2243 + - uid: 4609 components: - - pos: 1.5,1.5 + - pos: 36.5,-16.5 parent: 31 type: Transform - - uid: 2244 + - uid: 4657 components: - - pos: 1.5,2.5 + - pos: 30.5,-18.5 parent: 31 type: Transform - - uid: 2246 + - uid: 4725 components: - - pos: 1.5,-3.5 + - pos: 10.5,-28.5 parent: 31 type: Transform - - uid: 2248 + - uid: 4726 components: - - pos: 1.5,-5.5 + - pos: 11.5,-28.5 parent: 31 type: Transform - - uid: 2249 + - uid: 4727 components: - - pos: 1.5,-6.5 + - pos: 12.5,-28.5 parent: 31 type: Transform - - uid: 2252 + - uid: 4734 components: - - rot: 3.141592653589793 rad - pos: -9.5,-2.5 + - pos: 2.5,-41.5 parent: 31 type: Transform - - uid: 2254 + - uid: 4741 components: - - pos: 1.5,-9.5 + - rot: 1.5707963267948966 rad + pos: 11.5,25.5 parent: 31 type: Transform - - uid: 2255 + - uid: 4742 components: - - pos: 1.5,-7.5 + - pos: 10.5,-29.5 parent: 31 type: Transform - - uid: 2256 + - uid: 4750 components: - - pos: 1.5,-11.5 + - pos: 5.5,-29.5 parent: 31 type: Transform - - uid: 2257 + - uid: 4751 components: - - pos: 1.5,-12.5 + - pos: 5.5,-30.5 parent: 31 type: Transform - - uid: 2258 + - uid: 4756 components: - - pos: 1.5,-8.5 + - pos: -20.5,-13.5 parent: 31 type: Transform - - uid: 2259 + - uid: 4778 components: - - pos: 0.5,-12.5 + - rot: -1.5707963267948966 rad + pos: 5.5,-24.5 parent: 31 type: Transform - - uid: 2260 + - uid: 4836 components: - - pos: -0.5,-12.5 + - pos: -6.5,-13.5 parent: 31 type: Transform - - uid: 2261 + - uid: 4857 components: - - pos: -1.5,-12.5 + - pos: -13.5,-9.5 parent: 31 type: Transform - - uid: 2262 + - uid: 4885 components: - - pos: -2.5,-12.5 + - rot: 3.141592653589793 rad + pos: -29.5,-19.5 parent: 31 type: Transform - - uid: 2264 + - uid: 4905 components: - - pos: -5.5,-18.5 + - rot: 1.5707963267948966 rad + pos: 18.5,-19.5 parent: 31 type: Transform - - uid: 2267 + - uid: 4946 components: - - pos: -0.5,-18.5 + - pos: 25.5,-24.5 parent: 31 type: Transform - - uid: 2268 + - uid: 4950 components: - - pos: -6.5,-18.5 + - pos: 27.5,-21.5 parent: 31 type: Transform - - uid: 2269 + - uid: 4951 components: - - pos: -1.5,-18.5 + - pos: 26.5,-21.5 parent: 31 type: Transform - - uid: 2270 + - uid: 4954 components: - - pos: -2.5,-11.5 + - pos: 25.5,-22.5 parent: 31 type: Transform - - uid: 2271 + - uid: 4981 components: - - pos: -3.5,-11.5 + - pos: -20.5,18.5 parent: 31 type: Transform - - uid: 2273 + - uid: 4984 components: - - pos: -5.5,-11.5 + - pos: -21.5,18.5 parent: 31 type: Transform - - uid: 2274 + - uid: 4985 components: - - pos: -6.5,-11.5 + - pos: -24.5,18.5 parent: 31 type: Transform - - uid: 2275 + - uid: 4986 components: - - pos: -6.5,-12.5 + - pos: -24.5,17.5 parent: 31 type: Transform - - uid: 2276 + - uid: 4987 components: - - pos: -6.5,-13.5 + - pos: -24.5,16.5 parent: 31 type: Transform - - uid: 2277 + - uid: 5011 components: - - pos: -6.5,-14.5 + - pos: 16.5,13.5 parent: 31 type: Transform - - uid: 2278 + - uid: 5114 components: - - pos: -6.5,-15.5 + - pos: -23.5,-17.5 parent: 31 type: Transform - - uid: 2279 + - uid: 5118 components: - - pos: -6.5,-16.5 + - pos: -21.5,-13.5 parent: 31 type: Transform - - uid: 2280 + - uid: 5138 components: - - pos: -6.5,-17.5 + - pos: 7.5,-9.5 parent: 31 type: Transform - - uid: 2285 + - uid: 5142 components: - - pos: 1.5,-22.5 + - pos: -23.5,21.5 parent: 31 type: Transform - - uid: 2286 + - uid: 5143 components: - - pos: 0.5,-22.5 + - pos: -21.5,21.5 parent: 31 type: Transform - - uid: 2287 + - uid: 5152 components: - - pos: 0.5,-21.5 + - pos: -26.5,-12.5 parent: 31 type: Transform - - uid: 2288 + - uid: 5156 components: - - pos: -0.5,-21.5 + - pos: -18.5,-13.5 parent: 31 type: Transform - - uid: 2327 + - uid: 5192 components: - - pos: 23.5,14.5 + - rot: 3.141592653589793 rad + pos: 34.5,38.5 parent: 31 type: Transform - - uid: 2345 + - uid: 5211 components: - - pos: -10.5,-16.5 + - pos: -25.5,-10.5 parent: 31 type: Transform - - uid: 2346 + - uid: 5221 components: - - pos: -9.5,-16.5 + - pos: -26.5,-15.5 parent: 31 type: Transform - - uid: 2347 + - uid: 5224 components: - - pos: -8.5,-16.5 + - pos: 11.5,-13.5 parent: 31 type: Transform - - uid: 2348 + - uid: 5225 components: - - pos: -7.5,-16.5 + - pos: -25.5,-17.5 parent: 31 type: Transform - - uid: 2359 + - uid: 5228 components: - - pos: 5.5,-28.5 + - pos: 13.5,-7.5 parent: 31 type: Transform - - uid: 2364 + - uid: 5609 components: - - pos: -16.5,-13.5 + - rot: -1.5707963267948966 rad + pos: -35.5,18.5 parent: 31 type: Transform - - uid: 2365 + - uid: 5756 components: - - pos: -15.5,-13.5 + - pos: -20.5,-17.5 parent: 31 type: Transform - - uid: 2366 + - uid: 6095 components: - - pos: -14.5,-13.5 + - pos: 16.5,-12.5 parent: 31 type: Transform - - uid: 2367 + - uid: 6141 components: - - pos: -12.5,-13.5 + - pos: 13.5,-18.5 parent: 31 type: Transform - - uid: 2368 + - uid: 6524 components: - - pos: -11.5,-13.5 + - pos: 24.5,18.5 parent: 31 type: Transform - - uid: 2369 + - uid: 6618 components: - - pos: -10.5,-13.5 + - pos: 21.5,-17.5 parent: 31 type: Transform - - uid: 2370 + - uid: 6697 components: - - pos: -10.5,-12.5 + - pos: -31.5,-7.5 parent: 31 type: Transform - - uid: 2371 + - uid: 6965 components: - - pos: -10.5,-11.5 + - pos: 37.5,-11.5 parent: 31 type: Transform - - uid: 2372 + - uid: 6969 components: - - pos: -10.5,-10.5 + - pos: 37.5,-15.5 parent: 31 type: Transform - - uid: 2373 + - uid: 6970 components: - - pos: -10.5,-9.5 + - pos: 37.5,-16.5 parent: 31 type: Transform - - uid: 2375 + - uid: 7046 components: - - pos: -11.5,-8.5 + - pos: 31.5,-19.5 parent: 31 type: Transform - - uid: 2376 + - uid: 7089 components: - - pos: -13.5,-8.5 + - pos: 24.5,14.5 parent: 31 type: Transform - - uid: 2377 + - uid: 7090 components: - - pos: -15.5,-9.5 + - pos: 18.5,14.5 parent: 31 type: Transform - - uid: 2378 + - uid: 7160 components: - - pos: -10.5,-8.5 + - pos: 18.5,-23.5 parent: 31 type: Transform - - uid: 2379 + - uid: 7244 components: - - pos: -16.5,-8.5 + - pos: 6.5,-9.5 parent: 31 type: Transform - - uid: 2380 + - uid: 7330 components: - - pos: -16.5,-9.5 + - pos: -20.5,-7.5 parent: 31 type: Transform - - uid: 2381 + - uid: 7357 components: - - pos: -16.5,-10.5 + - rot: -1.5707963267948966 rad + pos: -35.5,17.5 parent: 31 type: Transform - - uid: 2382 + - uid: 7368 components: - - pos: -16.5,-11.5 + - pos: 0.5,-23.5 parent: 31 type: Transform - - uid: 2383 + - uid: 7406 components: - - pos: -16.5,-12.5 + - pos: 20.5,-21.5 parent: 31 type: Transform - - uid: 2388 + - uid: 7478 components: - - pos: -2.5,-7.5 + - pos: -30.5,17.5 parent: 31 type: Transform - - uid: 2392 + - uid: 7501 components: - - pos: -8.5,-4.5 + - pos: -10.5,-39.5 parent: 31 type: Transform - - uid: 2396 + - uid: 7532 components: - - pos: -6.5,-7.5 + - pos: -1.5,-40.5 parent: 31 type: Transform - - uid: 2397 + - uid: 7534 components: - - pos: -8.5,-5.5 + - pos: -4.5,-40.5 parent: 31 type: Transform - - uid: 2399 + - uid: 7538 components: - - pos: -9.5,-5.5 + - pos: -13.5,-36.5 parent: 31 type: Transform - - uid: 2400 + - uid: 7539 components: - - pos: -10.5,-5.5 + - pos: -14.5,-36.5 parent: 31 type: Transform - - uid: 2407 + - uid: 7542 components: - - pos: -10.5,2.5 + - pos: -16.5,-36.5 parent: 31 type: Transform - - uid: 2408 + - uid: 7544 components: - - pos: -4.5,2.5 + - pos: -17.5,-36.5 parent: 31 type: Transform - - uid: 2410 + - uid: 7549 components: - - pos: -11.5,2.5 + - pos: -2.5,-40.5 parent: 31 type: Transform - - uid: 2425 + - uid: 7553 components: - - pos: -21.5,-9.5 + - pos: -11.5,-37.5 parent: 31 type: Transform - - uid: 2426 + - uid: 7558 components: - - pos: -22.5,-9.5 + - pos: 15.5,13.5 parent: 31 type: Transform - - uid: 2428 + - uid: 7569 components: - - pos: -24.5,-9.5 + - pos: -12.5,-36.5 parent: 31 type: Transform - - uid: 2429 + - uid: 7591 components: - - pos: -25.5,-9.5 + - pos: 13.5,-8.5 parent: 31 type: Transform - - uid: 2430 + - uid: 7598 components: - - pos: -26.5,-9.5 + - rot: -1.5707963267948966 rad + pos: -29.5,-10.5 parent: 31 type: Transform - - uid: 2431 + - uid: 7607 components: - - pos: -27.5,-9.5 + - rot: -1.5707963267948966 rad + pos: -30.5,-10.5 parent: 31 type: Transform - - uid: 2432 + - uid: 7675 components: - - pos: -28.5,-9.5 + - pos: -37.5,16.5 parent: 31 type: Transform - - uid: 2433 + - uid: 7821 components: - - pos: -29.5,-9.5 + - pos: -10.5,-37.5 parent: 31 type: Transform - - uid: 2434 + - uid: 7952 components: - - pos: -30.5,-9.5 + - pos: 23.5,-20.5 parent: 31 type: Transform - - uid: 2435 + - uid: 8057 components: - - pos: -31.5,-9.5 + - pos: 21.5,-16.5 parent: 31 type: Transform - - uid: 2436 + - uid: 8301 components: - - pos: -30.5,-3.5 + - pos: 5.5,-41.5 parent: 31 type: Transform - - uid: 2441 + - uid: 8312 components: - - pos: -34.5,-7.5 + - pos: -13.5,-19.5 parent: 31 type: Transform - - uid: 2442 + - uid: 8317 components: - - pos: -31.5,-5.5 + - pos: -7.5,-17.5 parent: 31 type: Transform - - uid: 2443 + - uid: 8365 components: - - pos: -31.5,-4.5 + - pos: -13.5,-17.5 parent: 31 type: Transform - - uid: 2444 + - uid: 8366 components: - - pos: -31.5,-3.5 + - rot: -1.5707963267948966 rad + pos: 1.5,-30.5 parent: 31 type: Transform - - uid: 2459 + - uid: 8372 components: - - pos: 12.5,13.5 + - pos: -6.5,-17.5 parent: 31 type: Transform - - uid: 2460 + - uid: 8421 components: - - pos: 13.5,13.5 + - rot: 3.141592653589793 rad + pos: -8.5,-2.5 parent: 31 type: Transform - - uid: 2461 + - uid: 8449 components: - - pos: -17.5,-6.5 + - pos: -18.5,-26.5 parent: 31 type: Transform - - uid: 2463 + - uid: 8453 components: - - pos: 14.5,13.5 + - pos: -18.5,-25.5 parent: 31 type: Transform - - uid: 2466 + - uid: 8454 components: - - pos: -17.5,-4.5 + - pos: -12.5,-28.5 parent: 31 type: Transform - - uid: 2467 + - uid: 8459 components: - - pos: -17.5,-5.5 + - pos: -18.5,-19.5 parent: 31 type: Transform - - uid: 2468 + - uid: 8462 components: - - pos: -17.5,-3.5 + - pos: -18.5,-20.5 parent: 31 type: Transform - - uid: 2469 + - uid: 8463 components: - - pos: -18.5,-3.5 + - pos: -18.5,-21.5 parent: 31 type: Transform - - uid: 2470 + - uid: 8467 components: - - pos: -19.5,-3.5 + - pos: 0.5,-18.5 parent: 31 type: Transform - - uid: 2471 + - uid: 8469 components: - - pos: -20.5,-3.5 + - pos: -18.5,-22.5 parent: 31 type: Transform - - uid: 2472 + - uid: 8480 components: - - pos: -21.5,-3.5 + - pos: -21.5,-21.5 parent: 31 type: Transform - - uid: 2473 + - uid: 8488 components: - - pos: -21.5,-2.5 + - pos: -22.5,-20.5 parent: 31 type: Transform - - uid: 2500 + - uid: 8489 components: - - pos: -22.5,-10.5 + - pos: -18.5,-24.5 parent: 31 type: Transform - - uid: 2661 + - uid: 8493 components: - - pos: 14.5,-12.5 + - pos: -18.5,-23.5 parent: 31 type: Transform - - uid: 2662 + - uid: 8494 components: - - pos: 15.5,-12.5 + - pos: -14.5,-19.5 parent: 31 type: Transform - - uid: 2665 + - uid: 8495 components: - - pos: 11.5,-12.5 + - pos: -12.5,-17.5 parent: 31 type: Transform - - uid: 2666 + - uid: 8718 components: - - pos: 12.5,-12.5 + - rot: 1.5707963267948966 rad + pos: -32.5,-30.5 parent: 31 type: Transform - - uid: 2667 + - uid: 8750 components: - - pos: 13.5,-12.5 + - pos: -21.5,-20.5 parent: 31 type: Transform - - uid: 2708 + - uid: 8817 components: - - pos: -20.5,-12.5 + - pos: 1.5,29.5 parent: 31 type: Transform - - uid: 3278 + - uid: 8818 components: - - pos: -11.5,-16.5 + - pos: 5.5,29.5 parent: 31 type: Transform - - uid: 3376 + - uid: 8864 components: - - pos: -22.5,18.5 + - pos: -10.5,-17.5 parent: 31 type: Transform - - uid: 3405 + - uid: 8896 components: - - pos: -1.5,-8.5 + - pos: -11.5,-17.5 parent: 31 type: Transform - - uid: 3623 + - uid: 8918 components: - - pos: 9.5,24.5 + - pos: -9.5,-17.5 parent: 31 type: Transform - - uid: 3875 + - uid: 8930 components: - - rot: 1.5707963267948966 rad - pos: 9.5,23.5 + - pos: -8.5,-17.5 parent: 31 type: Transform - - uid: 3915 + - uid: 8934 components: - - pos: -9.5,-8.5 + - pos: -18.5,-28.5 parent: 31 type: Transform - - uid: 3916 + - uid: 8945 components: - - pos: -13.5,-7.5 + - pos: -0.5,2.5 parent: 31 type: Transform - - uid: 3925 + - uid: 9011 components: - - pos: 5.5,0.5 + - pos: -8.5,-37.5 parent: 31 type: Transform - - uid: 3955 + - uid: 9029 components: - - pos: -25.5,7.5 + - pos: 27.5,14.5 parent: 31 type: Transform - - uid: 3973 + - uid: 9051 components: - - pos: 1.5,0.5 + - pos: 28.5,14.5 parent: 31 type: Transform - - uid: 4004 + - uid: 9073 components: - - pos: -8.5,-7.5 + - pos: 16.5,-14.5 parent: 31 type: Transform - - uid: 4021 + - uid: 9074 components: - - pos: -8.5,-7.5 + - pos: 16.5,-13.5 parent: 31 type: Transform - - uid: 4050 + - uid: 9097 components: - - pos: -3.5,-7.5 + - rot: 3.141592653589793 rad + pos: 39.5,-7.5 parent: 31 type: Transform - - uid: 4051 + - uid: 9112 components: - - pos: -4.5,-7.5 + - rot: 3.141592653589793 rad + pos: 39.5,-6.5 parent: 31 type: Transform - - uid: 4052 + - uid: 9119 components: - - pos: -5.5,-7.5 + - pos: 17.5,8.5 parent: 31 type: Transform - - uid: 4053 + - uid: 9163 components: - - pos: -8.5,-8.5 + - pos: -0.5,-19.5 parent: 31 type: Transform - - uid: 4064 + - uid: 9169 components: - - pos: -26.5,-0.5 + - pos: -38.5,-2.5 parent: 31 type: Transform - - uid: 4065 + - uid: 9170 components: - - pos: -27.5,-0.5 + - pos: 24.5,6.5 parent: 31 type: Transform - - uid: 4066 + - uid: 9191 components: - - pos: -28.5,-0.5 + - pos: -33.5,15.5 parent: 31 type: Transform - - uid: 4067 + - uid: 9204 components: - - pos: -29.5,-0.5 + - rot: 3.141592653589793 rad + pos: 44.5,-5.5 parent: 31 type: Transform - - uid: 4068 + - uid: 9228 components: - - pos: -30.5,-0.5 + - pos: -30.5,16.5 parent: 31 type: Transform - - uid: 4069 + - uid: 9252 components: - - pos: -26.5,-3.5 + - pos: -21.5,-17.5 parent: 31 type: Transform - - uid: 4070 + - uid: 9254 components: - - pos: -27.5,-3.5 + - pos: -21.5,-19.5 parent: 31 type: Transform - - uid: 4071 + - uid: 9255 components: - - pos: -28.5,-3.5 + - rot: 1.5707963267948966 rad + pos: -12.5,-13.5 parent: 31 type: Transform - - uid: 4072 + - uid: 9256 components: - - pos: -31.5,-6.5 + - pos: -5.5,-39.5 parent: 31 type: Transform - - uid: 4073 + - uid: 9274 components: - - pos: -26.5,-6.5 + - pos: -12.5,-37.5 parent: 31 type: Transform - - uid: 4074 + - uid: 9289 components: - - pos: -27.5,-6.5 + - pos: -0.5,-41.5 parent: 31 type: Transform - - uid: 4075 + - uid: 9295 components: - - pos: -28.5,-6.5 + - pos: 3.5,-39.5 parent: 31 type: Transform - - uid: 4076 + - uid: 9296 components: - - pos: -29.5,-6.5 + - pos: 3.5,-40.5 parent: 31 type: Transform - - uid: 4077 + - uid: 9298 components: - - pos: -30.5,-6.5 + - pos: 5.5,-40.5 parent: 31 type: Transform - - uid: 4080 + - uid: 9299 components: - - pos: -26.5,-1.5 + - pos: 6.5,-40.5 parent: 31 type: Transform - - uid: 4081 + - uid: 9300 components: - - pos: -26.5,-4.5 + - pos: 7.5,-40.5 parent: 31 type: Transform - - uid: 4246 + - uid: 9301 components: - - rot: -1.5707963267948966 rad - pos: 5.5,-23.5 + - pos: 7.5,-39.5 parent: 31 type: Transform - - uid: 4296 + - uid: 9302 components: - - pos: 17.5,13.5 + - pos: 8.5,-39.5 parent: 31 type: Transform - - uid: 4312 + - uid: 9303 components: - - pos: 0.5,-9.5 + - pos: 9.5,-39.5 parent: 31 type: Transform - - uid: 4458 + - uid: 9346 components: - - pos: -8.5,2.5 + - rot: 3.141592653589793 rad + pos: 42.5,-5.5 parent: 31 type: Transform - - uid: 4506 + - uid: 9347 components: - - pos: 34.5,-10.5 + - rot: 3.141592653589793 rad + pos: 41.5,-5.5 parent: 31 type: Transform - - uid: 4511 + - uid: 9454 components: - - pos: 29.5,-18.5 + - pos: 5.5,-42.5 parent: 31 type: Transform - - uid: 4520 + - uid: 9517 components: - - pos: 31.5,-18.5 + - pos: 13.5,-3.5 parent: 31 type: Transform - - uid: 4609 + - uid: 9518 components: - - pos: 36.5,-16.5 + - rot: 3.141592653589793 rad + pos: 40.5,-5.5 parent: 31 type: Transform - - uid: 4657 + - uid: 9519 components: - - pos: 30.5,-18.5 + - rot: 3.141592653589793 rad + pos: 39.5,-5.5 parent: 31 type: Transform - - uid: 4725 + - uid: 9530 components: - - pos: 10.5,-28.5 + - pos: 18.5,-3.5 parent: 31 type: Transform - - uid: 4726 + - uid: 9531 components: - - pos: 11.5,-28.5 + - pos: 8.5,-18.5 parent: 31 type: Transform - - uid: 4727 + - uid: 9532 components: - - pos: 12.5,-28.5 + - pos: 19.5,-3.5 parent: 31 type: Transform - - uid: 4741 + - uid: 9533 components: - - rot: 1.5707963267948966 rad - pos: 11.5,25.5 + - pos: 25.5,13.5 parent: 31 type: Transform - - uid: 4742 + - uid: 9566 components: - - pos: 10.5,-29.5 + - pos: 24.5,7.5 parent: 31 type: Transform - - uid: 4750 + - uid: 9568 components: - - pos: 5.5,-29.5 + - pos: -18.5,6.5 parent: 31 type: Transform - - uid: 4751 + - uid: 9581 components: - - pos: 5.5,-30.5 + - pos: 1.5,-23.5 parent: 31 type: Transform - - uid: 4778 + - uid: 9601 components: - - rot: -1.5707963267948966 rad - pos: 5.5,-24.5 + - pos: 6.5,-12.5 parent: 31 type: Transform - - uid: 4820 + - uid: 9602 components: - - pos: 1.5,-24.5 + - pos: 6.5,-13.5 parent: 31 type: Transform - - uid: 4821 + - uid: 9603 components: - - pos: 1.5,-25.5 + - pos: 6.5,-14.5 parent: 31 type: Transform - - uid: 4822 + - uid: 9604 components: - - pos: 1.5,-26.5 + - pos: 6.5,-15.5 parent: 31 type: Transform - - uid: 4823 + - uid: 9605 components: - - pos: 1.5,-27.5 + - pos: 10.5,-12.5 parent: 31 type: Transform - - uid: 4857 + - uid: 9606 components: - - pos: -13.5,-9.5 + - pos: 6.5,-16.5 parent: 31 type: Transform - - uid: 4946 + - uid: 9609 components: - - pos: 25.5,-24.5 + - pos: 3.5,-41.5 parent: 31 type: Transform - - uid: 4950 + - uid: 9610 components: - - pos: 27.5,-21.5 + - pos: 18.5,6.5 parent: 31 type: Transform - - uid: 4951 + - uid: 9635 components: - - pos: 26.5,-21.5 + - pos: 1.5,-41.5 parent: 31 type: Transform - - uid: 4954 + - uid: 9683 components: - - pos: 25.5,-22.5 + - pos: 17.5,6.5 parent: 31 type: Transform - - uid: 4981 + - uid: 9688 components: - - pos: -20.5,18.5 + - pos: 17.5,7.5 parent: 31 type: Transform - - uid: 4984 + - uid: 9702 components: - - pos: -21.5,18.5 + - pos: 25.5,14.5 parent: 31 type: Transform - - uid: 4985 + - uid: 9713 components: - - pos: -24.5,18.5 + - pos: 7.5,-18.5 parent: 31 type: Transform - - uid: 4986 + - uid: 9715 components: - - pos: -24.5,17.5 + - pos: 6.5,-18.5 parent: 31 type: Transform - - uid: 4987 + - uid: 9716 components: - - pos: -24.5,16.5 + - pos: 6.5,-17.5 parent: 31 type: Transform - - uid: 5011 + - uid: 9717 components: - - pos: 16.5,13.5 + - pos: 10.5,-18.5 parent: 31 type: Transform - - uid: 5138 + - uid: 9718 components: - - pos: 7.5,-9.5 + - pos: 14.5,-3.5 parent: 31 type: Transform - - uid: 5142 + - uid: 9736 components: - - pos: -23.5,21.5 + - pos: 17.5,16.5 parent: 31 type: Transform - - uid: 5143 + - uid: 9818 components: - - pos: -21.5,21.5 + - pos: 17.5,15.5 parent: 31 type: Transform - - uid: 5152 + - uid: 9820 components: - - pos: -26.5,-12.5 + - pos: 17.5,14.5 parent: 31 type: Transform - - uid: 6095 + - uid: 9821 components: - - pos: 16.5,-12.5 + - pos: 25.5,15.5 parent: 31 type: Transform - - uid: 6141 + - uid: 9833 components: - - pos: 13.5,-18.5 + - pos: 1.5,-24.5 parent: 31 type: Transform - - uid: 6697 + - uid: 9839 components: - - pos: -31.5,-7.5 + - rot: 3.141592653589793 rad + pos: 39.5,-10.5 parent: 31 type: Transform - - uid: 6965 + - uid: 9840 components: - - pos: 37.5,-11.5 + - pos: 8.5,-12.5 parent: 31 type: Transform - - uid: 6969 + - uid: 9841 components: - - pos: 37.5,-15.5 + - pos: 7.5,-12.5 parent: 31 type: Transform - - uid: 6970 + - uid: 9858 components: - - pos: 37.5,-16.5 + - pos: 17.5,17.5 parent: 31 type: Transform - - uid: 7046 + - uid: 9866 components: - - pos: 31.5,-19.5 + - rot: -1.5707963267948966 rad + pos: -33.5,8.5 parent: 31 type: Transform - - uid: 7085 + - uid: 9880 components: - - pos: 20.5,-10.5 + - pos: 20.5,-3.5 parent: 31 type: Transform - - uid: 7089 + - uid: 9916 components: - - pos: 24.5,14.5 + - pos: 23.5,6.5 parent: 31 type: Transform - - uid: 7090 + - uid: 9918 components: - - pos: 18.5,14.5 + - pos: 13.5,-6.5 parent: 31 type: Transform - - uid: 7244 + - uid: 9919 components: - - pos: 6.5,-9.5 + - pos: -5.5,26.5 parent: 31 type: Transform - - uid: 7330 + - uid: 9987 components: - - pos: -20.5,-7.5 + - rot: -1.5707963267948966 rad + pos: -26.5,-13.5 parent: 31 type: Transform - - uid: 7331 + - uid: 10013 components: - - pos: -19.5,-6.5 + - pos: 23.5,18.5 parent: 31 type: Transform - - uid: 7463 + - uid: 10034 components: - - pos: -33.5,18.5 + - rot: -1.5707963267948966 rad + pos: 20.5,-18.5 parent: 31 type: Transform - - uid: 7478 + - uid: 10035 components: - - pos: -30.5,17.5 + - pos: -17.5,-9.5 parent: 31 type: Transform - - uid: 7558 + - uid: 10036 components: - - pos: 15.5,13.5 + - pos: -18.5,-9.5 parent: 31 type: Transform - - uid: 7626 + - uid: 10037 components: - - rot: -1.5707963267948966 rad - pos: 7.5,-3.5 + - pos: -19.5,-9.5 parent: 31 type: Transform - - uid: 7952 + - uid: 10038 components: - - pos: 23.5,-20.5 + - pos: 25.5,18.5 parent: 31 type: Transform - - uid: 8421 + - uid: 10129 components: - rot: 3.141592653589793 rad - pos: -8.5,-2.5 + pos: 39.5,-11.5 parent: 31 type: Transform - - uid: 8480 + - uid: 10219 components: - - pos: -21.5,-21.5 + - pos: -20.5,6.5 parent: 31 type: Transform - - uid: 8488 + - uid: 10220 components: - - pos: -22.5,-20.5 + - pos: -19.5,6.5 parent: 31 type: Transform - - uid: 8718 + - uid: 10353 components: - rot: 1.5707963267948966 rad - pos: -32.5,-30.5 + pos: 20.5,-19.5 parent: 31 type: Transform - - uid: 8750 + - uid: 10359 components: - - pos: -21.5,-20.5 + - rot: -1.5707963267948966 rad + pos: -28.5,-10.5 parent: 31 type: Transform - - uid: 8817 + - uid: 10435 components: - - pos: 1.5,29.5 + - pos: -34.5,16.5 parent: 31 type: Transform - - uid: 8818 + - uid: 10436 components: - - pos: 5.5,29.5 + - pos: -36.5,16.5 parent: 31 type: Transform - - uid: 8945 + - uid: 10437 components: - - pos: -0.5,2.5 + - pos: -35.5,16.5 parent: 31 type: Transform - - uid: 9073 + - uid: 10440 components: - - pos: 16.5,-14.5 + - pos: -34.5,18.5 parent: 31 type: Transform - - uid: 9074 + - uid: 10474 components: - - pos: 16.5,-13.5 + - rot: 1.5707963267948966 rad + pos: -20.5,-4.5 parent: 31 type: Transform - - uid: 9123 + - uid: 10476 components: - - rot: -1.5707963267948966 rad - pos: 8.5,-3.5 + - rot: 1.5707963267948966 rad + pos: -20.5,-5.5 parent: 31 type: Transform - - uid: 9169 + - uid: 10521 components: - - pos: -38.5,-2.5 + - pos: -0.5,-18.5 parent: 31 type: Transform - - uid: 9191 + - uid: 10533 components: - - pos: -33.5,15.5 + - pos: -1.5,-18.5 parent: 31 type: Transform - - uid: 9224 + - uid: 10581 components: - - pos: -31.5,15.5 + - rot: -1.5707963267948966 rad + pos: -27.5,-10.5 parent: 31 type: Transform - - uid: 9228 + - uid: 10597 components: - - pos: -30.5,16.5 + - rot: 3.141592653589793 rad + pos: 40.5,-13.5 parent: 31 type: Transform - - uid: 9252 + - uid: 10598 components: - - pos: -21.5,-17.5 + - rot: 3.141592653589793 rad + pos: 40.5,-11.5 parent: 31 type: Transform - - uid: 9254 + - uid: 10599 components: - - pos: -21.5,-19.5 + - rot: 3.141592653589793 rad + pos: 41.5,-11.5 parent: 31 type: Transform - - uid: 9942 + - uid: 10600 components: - - pos: 34.5,38.5 + - rot: 3.141592653589793 rad + pos: 42.5,-11.5 parent: 31 type: Transform -- proto: WallSolidRust - entities: - - uid: 76 + - uid: 10602 components: - - pos: -26.5,-13.5 + - rot: 3.141592653589793 rad + pos: 44.5,-11.5 parent: 31 type: Transform - - uid: 79 + - uid: 10603 components: - - pos: -20.5,-15.5 + - rot: 3.141592653589793 rad + pos: 44.5,-10.5 parent: 31 type: Transform +- proto: WallSolidRust + entities: - uid: 419 components: - pos: 28.5,-9.5 @@ -64582,36 +71942,11 @@ entities: - pos: -19.5,23.5 parent: 31 type: Transform - - uid: 1681 - components: - - pos: -30.5,15.5 - parent: 31 - type: Transform - - uid: 1683 - components: - - pos: -20.5,-17.5 - parent: 31 - type: Transform - - uid: 1684 - components: - - pos: -27.5,-12.5 - parent: 31 - type: Transform - - uid: 1773 - components: - - pos: -23.5,-12.5 - parent: 31 - type: Transform - uid: 1806 components: - pos: -22.5,12.5 parent: 31 type: Transform - - uid: 2051 - components: - - pos: 23.5,-9.5 - parent: 31 - type: Transform - uid: 3881 components: - pos: 37.5,-13.5 @@ -64637,6 +71972,11 @@ entities: - pos: -20.5,20.5 parent: 31 type: Transform + - uid: 5005 + components: + - pos: 20.5,-22.5 + parent: 31 + type: Transform - uid: 5145 components: - pos: 37.5,-14.5 @@ -64667,6 +72007,26 @@ entities: - pos: -21.5,-24.5 parent: 31 type: Transform + - uid: 8854 + components: + - pos: 17.5,-23.5 + parent: 31 + type: Transform + - uid: 9013 + components: + - pos: 16.5,-23.5 + parent: 31 + type: Transform + - uid: 9087 + components: + - pos: 39.5,-8.5 + parent: 31 + type: Transform + - uid: 9297 + components: + - pos: 4.5,-40.5 + parent: 31 + type: Transform - uid: 9376 components: - pos: -24.5,-20.5 @@ -64677,38 +72037,73 @@ entities: - pos: -23.5,-20.5 parent: 31 type: Transform -- proto: WallWood - entities: - - uid: 3174 + - uid: 9596 components: - - pos: -36.5,16.5 + - pos: 16.5,-20.5 parent: 31 type: Transform - - uid: 4329 + - uid: 9822 components: - - pos: -34.5,16.5 + - pos: 39.5,-9.5 parent: 31 type: Transform - - uid: 4330 + - uid: 10130 components: - - pos: -35.5,16.5 + - pos: -29.5,-16.5 parent: 31 type: Transform - - uid: 9593 + - uid: 10133 components: - - pos: -38.5,16.5 + - pos: -29.5,-15.5 parent: 31 type: Transform - - uid: 9594 + - uid: 10134 components: - - pos: -37.5,16.5 + - pos: -3.5,-40.5 + parent: 31 + type: Transform + - uid: 10137 + components: + - pos: -18.5,-33.5 + parent: 31 + type: Transform + - uid: 10138 + components: + - pos: 2.5,-42.5 + parent: 31 + type: Transform + - uid: 10417 + components: + - pos: -31.5,15.5 + parent: 31 + type: Transform + - uid: 10422 + components: + - pos: -30.5,15.5 + parent: 31 + type: Transform + - uid: 10601 + components: + - pos: 43.5,-11.5 + parent: 31 + type: Transform + - uid: 10606 + components: + - pos: 44.5,-7.5 parent: 31 type: Transform - proto: WardrobeChapelFilled entities: - - uid: 9515 + - uid: 7630 + components: + - pos: -38.5,19.5 + parent: 31 + type: Transform +- proto: WardrobeGreyFilled + entities: + - uid: 7693 components: - - pos: -32.5,18.5 + - pos: 10.5,-13.5 parent: 31 type: Transform - proto: WardrobePrisonFilled @@ -64718,26 +72113,34 @@ entities: - pos: -13.5,7.5 parent: 31 type: Transform - - open: True - removedMasks: 20 + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 type: EntityStorage - - isPlaceable: True - type: PlaceableSurface - uid: 1957 components: - pos: -7.5,8.5 parent: 31 type: Transform -- proto: WardrobeRobotics +- proto: WardrobeRoboticsFilled entities: - - uid: 9781 - components: - - pos: -4.5,-32.5 - parent: 31 - type: Transform - - uid: 9782 + - uid: 9616 components: - - pos: -4.5,-31.5 + - pos: -2.5,-25.5 parent: 31 type: Transform - proto: WardrobeWhite @@ -64769,51 +72172,58 @@ entities: type: ContainerContainer - proto: WarningCO2 entities: - - uid: 1108 + - uid: 11013 components: - - pos: 39.5,20.5 + - rot: 1.5707963267948966 rad + pos: 41.5,20.5 parent: 31 type: Transform - proto: WarningN2 entities: - - uid: 7225 + - uid: 11012 components: - - pos: 33.5,20.5 + - rot: 1.5707963267948966 rad + pos: 35.5,20.5 parent: 31 type: Transform - proto: WarningN2O entities: - - uid: 16 + - uid: 11006 components: - - pos: 37.5,20.5 + - rot: 1.5707963267948966 rad + pos: 39.5,20.5 parent: 31 type: Transform - proto: WarningO2 entities: - - uid: 62 + - uid: 11011 components: - - pos: 35.5,20.5 + - rot: 1.5707963267948966 rad + pos: 37.5,20.5 parent: 31 type: Transform - proto: WarningPlasma entities: - - uid: 1109 + - uid: 11016 components: - - pos: 41.5,20.5 + - rot: 1.5707963267948966 rad + pos: 43.5,20.5 parent: 31 type: Transform - proto: WarningTritium entities: - - uid: 1110 + - uid: 11017 components: - - pos: 43.5,20.5 + - rot: 1.5707963267948966 rad + pos: 45.5,20.5 parent: 31 type: Transform - proto: WarningWaste entities: - - uid: 1116 + - uid: 6813 components: - - pos: 45.5,20.5 + - rot: 1.5707963267948966 rad + pos: 47.5,20.5 parent: 31 type: Transform - proto: WarpPoint @@ -64823,29 +72233,7 @@ entities: - pos: 9.5,-26.5 parent: 31 type: Transform - - location: library - type: WarpPoint - - uid: 538 - components: - - pos: 3.5,30.5 - parent: 31 - type: Transform - - location: bridge - type: WarpPoint - - uid: 579 - components: - - pos: 21.5,17.5 - parent: 31 - type: Transform - - location: salv - type: WarpPoint - - uid: 764 - components: - - rot: 3.141592653589793 rad - pos: -24.5,-17.5 - parent: 31 - type: Transform - - location: disposals + - location: library type: WarpPoint - uid: 1208 components: @@ -64854,162 +72242,164 @@ entities: type: Transform - location: evac type: WarpPoint - - uid: 2142 + - uid: 7275 components: - - pos: 14.5,10.5 + - pos: -18.5,-0.5 parent: 31 type: Transform - - location: cargo + - location: botany type: WarpPoint - - uid: 5114 + - uid: 7276 components: - - pos: -15.5,-20.5 + - pos: 33.5,4.5 parent: 31 type: Transform - - location: xenoarch + - location: engineering type: WarpPoint - - uid: 5767 + - uid: 7640 components: - - pos: -7.5,12.5 + - pos: 49.5,-24.5 parent: 31 type: Transform - - location: sec + - location: observatory type: WarpPoint - - uid: 7256 + - uid: 8316 components: - - pos: -4.5,-1.5 + - pos: -36.5,15.5 parent: 31 type: Transform - - location: bar + - location: chapel type: WarpPoint - - uid: 7257 + - uid: 11268 components: - - pos: -5.5,-20.5 + - pos: -47.5,-10.5 parent: 31 type: Transform - - location: sci + - location: arrivals type: WarpPoint - - uid: 7261 + - uid: 11270 components: - - pos: 9.5,19.5 + - pos: -25.5,-5.5 parent: 31 type: Transform - - location: hop + - location: dorms type: WarpPoint - - uid: 7262 +- proto: WarpPointBombing + entities: + - uid: 538 components: - - pos: 12.5,24.5 + - pos: 3.5,30.5 parent: 31 type: Transform - - location: cap + - location: bridge type: WarpPoint - - uid: 7275 + - uid: 1136 components: - - pos: -18.5,-0.5 + - pos: 27.5,19.5 parent: 31 type: Transform - - location: botany + - location: salvage type: WarpPoint - - uid: 7276 + - uid: 2142 components: - - pos: 33.5,4.5 + - pos: 14.5,10.5 parent: 31 type: Transform - - location: eng + - location: cargo type: WarpPoint - - uid: 7280 + - uid: 5767 components: - - pos: 16.5,-8.5 + - pos: -7.5,12.5 parent: 31 type: Transform - - location: med + - location: security type: WarpPoint - - uid: 7281 + - uid: 7256 components: - - pos: 38.5,15.5 + - pos: -4.5,-1.5 parent: 31 type: Transform - - location: atmos + - location: bar type: WarpPoint - - uid: 7282 + - uid: 7261 components: - - pos: 16.5,-1.5 + - pos: 9.5,19.5 parent: 31 type: Transform - - location: chem + - location: hop's office type: WarpPoint - - uid: 7640 + - uid: 7262 components: - - pos: 49.5,-24.5 + - pos: 12.5,24.5 parent: 31 type: Transform - - location: observatory + - location: captain's room type: WarpPoint - - uid: 8316 + - uid: 7280 components: - - pos: -36.5,15.5 + - pos: 16.5,-8.5 parent: 31 type: Transform - - location: chapel + - location: medical type: WarpPoint - - uid: 9344 + - uid: 7281 components: - - pos: -36.5,-8.5 + - pos: 38.5,15.5 parent: 31 type: Transform - - location: arrivals + - location: atmospherics type: WarpPoint - - uid: 9725 + - uid: 10539 components: - - pos: -5.5,27.5 + - pos: -9.5,-20.5 parent: 31 type: Transform - - location: telecomms + - location: science type: WarpPoint - - uid: 9747 + - uid: 11267 components: - - pos: 60.5,2.5 + - pos: -12.5,19.5 parent: 31 type: Transform - - location: pa + - location: armory type: WarpPoint -- proto: WaterCooler - entities: - - uid: 35 + - uid: 11269 components: - - pos: -6.5,17.5 + - pos: -1.5,17.5 parent: 31 type: Transform + - location: vault + type: WarpPoint +- proto: WaterCooler + entities: - uid: 1156 components: - pos: 1.5,16.5 parent: 31 type: Transform - - uid: 5231 + - uid: 2217 components: - - pos: 0.5,-31.5 + - pos: -5.5,15.5 parent: 31 type: Transform - - uid: 9097 + - uid: 2500 components: - - pos: -1.5,31.5 + - pos: -10.5,-18.5 parent: 31 type: Transform - - uid: 9098 + - uid: 5314 components: - - pos: 31.5,2.5 + - pos: -2.5,31.5 parent: 31 type: Transform -- proto: WatermelonSeeds - entities: - - uid: 10143 + - uid: 7533 components: - - pos: 49.376537,-26.384869 + - pos: 49.5,-18.5 parent: 31 type: Transform - - uid: 10144 + - uid: 9098 components: - - pos: 49.376537,-26.384869 + - pos: 31.5,2.5 parent: 31 type: Transform - proto: WaterTankFull @@ -65019,24 +72409,24 @@ entities: - pos: 27.5,-2.5 parent: 31 type: Transform - - uid: 7573 + - uid: 7986 components: - - pos: -17.5,-11.5 + - pos: 37.5,-4.5 parent: 31 type: Transform - - uid: 7831 + - uid: 9789 components: - - pos: -17.5,8.5 + - pos: -7.5,-37.5 parent: 31 type: Transform - - uid: 7986 + - uid: 9825 components: - - pos: 37.5,-4.5 + - pos: 17.5,-24.5 parent: 31 type: Transform - - uid: 9825 + - uid: 10644 components: - - pos: 17.5,-24.5 + - pos: 39.5,-13.5 parent: 31 type: Transform - proto: WaterTankHighCapacity @@ -65046,64 +72436,25 @@ entities: - pos: -20.5,1.5 parent: 31 type: Transform - - uid: 8306 - components: - - pos: 42.5,11.5 - parent: 31 - type: Transform - - uid: 9892 + - uid: 7896 components: - - pos: -19.5,7.5 + - pos: -17.5,-11.5 parent: 31 type: Transform - proto: WaterVaporCanister entities: - - uid: 1113 - components: - - pos: 44.5,23.5 - parent: 31 - type: Transform - uid: 1562 components: - pos: 35.5,12.5 parent: 31 type: Transform - - uid: 9693 + - uid: 6826 components: - - pos: -14.5,-17.5 + - pos: 46.5,23.5 parent: 31 type: Transform - proto: WeaponCapacitorRecharger entities: - - uid: 767 - components: - - pos: -13.5,15.5 - parent: 31 - type: Transform - - canCollide: False - type: Physics - - 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: ContainerContainer - uid: 4293 components: - pos: -2.5,7.5 @@ -65116,21 +72467,27 @@ entities: type: Transform - canCollide: False type: Physics + - uid: 10477 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,15.5 + parent: 31 + type: Transform - proto: WeaponDisabler entities: - - uid: 1130 + - uid: 2340 components: - - pos: -13.556441,16.285408 + - pos: -14.505901,16.669767 parent: 31 type: Transform - - uid: 1549 + - uid: 2404 components: - - pos: -13.540816,16.691658 + - pos: -14.623961,16.492775 parent: 31 type: Transform - - uid: 4024 + - uid: 10465 components: - - pos: -13.525191,16.519783 + - pos: -14.594447,16.787762 parent: 31 type: Transform - proto: WeaponPistolMk58 @@ -65184,21 +72541,35 @@ entities: type: Transform - proto: Welder entities: - - uid: 7590 + - uid: 7984 components: - - pos: -7.3754244,-15.413947 + - pos: 27.581085,-4.4702797 parent: 31 type: Transform - - uid: 7984 + - uid: 9615 components: - - pos: 27.581085,-4.4702797 + - pos: -1.2244661,-24.408531 parent: 31 type: Transform - proto: WelderIndustrial entities: - uid: 6180 components: - - pos: 43.589497,13.535484 + - pos: 42.356472,13.463804 + parent: 31 + type: Transform +- proto: WelderMini + entities: + - uid: 1309 + components: + - rot: 1.5707963267948966 rad + pos: 17.758324,-20.712929 + parent: 31 + type: Transform + - uid: 2336 + components: + - rot: 3.141592653589793 rad + pos: -17.5344,-20.478468 parent: 31 type: Transform - proto: WeldingFuelTankFull @@ -65238,11 +72609,23 @@ entities: - pos: 7.5,-20.5 parent: 31 type: Transform + - uid: 9787 + components: + - pos: 2.5,-40.5 + parent: 31 + type: Transform - proto: WeldingFuelTankHighCapacity entities: - - uid: 8303 + - uid: 9076 components: - - pos: 41.5,11.5 + - pos: 40.5,11.5 + parent: 31 + type: Transform +- proto: WheatSeeds + entities: + - uid: 9677 + components: + - pos: -1.6659715,-42.461594 parent: 31 type: Transform - proto: Windoor @@ -65253,11 +72636,6 @@ entities: pos: 6.5,20.5 parent: 31 type: Transform - - uid: 2502 - components: - - pos: 12.5,27.5 - parent: 31 - type: Transform - uid: 4892 components: - pos: -1.5,6.5 @@ -65274,12 +72652,6 @@ entities: - pos: 15.5,-3.5 parent: 31 type: Transform - - uid: 5105 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-15.5 - parent: 31 - type: Transform - uid: 5109 components: - pos: 15.5,8.5 @@ -65319,14 +72691,6 @@ entities: pos: -15.5,0.5 parent: 31 type: Transform -- proto: WindoorSecure - entities: - - uid: 7556 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-13.5 - parent: 31 - type: Transform - proto: WindoorSecureArmoryLocked entities: - uid: 5151 @@ -65334,12 +72698,6 @@ entities: - pos: -12.5,18.5 parent: 31 type: Transform - - uid: 9624 - components: - - rot: 3.141592653589793 rad - pos: -14.5,15.5 - parent: 31 - type: Transform - proto: WindoorSecureCargoLocked entities: - uid: 2100 @@ -65362,91 +72720,38 @@ entities: pos: 13.5,-0.5 parent: 31 type: Transform -- proto: WindoorSecureCommandLocked +- proto: WindoorSecureEngineeringLocked entities: - - uid: 5058 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,20.5 - parent: 31 - type: Transform - - uid: 10260 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,28.5 - parent: 31 - type: Transform - - uid: 10261 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,29.5 - parent: 31 - type: Transform - - uid: 10262 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,30.5 - parent: 31 - type: Transform - - uid: 10263 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,31.5 - parent: 31 - type: Transform - - uid: 10264 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,31.5 - parent: 31 - type: Transform - - uid: 10265 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,30.5 - parent: 31 - type: Transform - - uid: 10266 + - uid: 8851 components: - rot: 1.5707963267948966 rad - pos: -5.5,29.5 + pos: 30.5,5.5 parent: 31 type: Transform - - uid: 10267 +- proto: WindoorSecureHeadOfPersonnelLocked + entities: + - uid: 10143 components: - rot: 1.5707963267948966 rad - pos: -5.5,28.5 + pos: 6.5,20.5 parent: 31 type: Transform -- proto: WindoorSecureEngineeringLocked +- proto: WindoorSecureScienceLocked entities: - - uid: 4483 - components: - - pos: 57.5,-0.5 - parent: 31 - type: Transform - - uid: 4535 + - uid: 1379 components: - - pos: 60.5,-0.5 + - pos: -16.5,-19.5 parent: 31 type: Transform - - uid: 8851 + - uid: 4870 components: - - rot: 1.5707963267948966 rad - pos: 30.5,5.5 + - pos: -15.5,-19.5 parent: 31 type: Transform -- proto: WindoorSecureScienceLocked - entities: - - uid: 5057 + - uid: 7273 components: - rot: -1.5707963267948966 rad - pos: 0.5,-15.5 - parent: 31 - type: Transform - - uid: 8936 - components: - - pos: -8.5,-22.5 + pos: 1.5,-26.5 parent: 31 type: Transform - proto: WindoorSecureSecurityLocked @@ -65457,14 +72762,6 @@ entities: pos: -1.5,6.5 parent: 31 type: Transform -- proto: WindoorTheatreLocked - entities: - - uid: 7334 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-5.5 - parent: 31 - type: Transform - proto: Window entities: - uid: 264 @@ -65473,6 +72770,11 @@ entities: pos: 8.5,-7.5 parent: 31 type: Transform + - uid: 836 + components: + - pos: 54.5,-2.5 + parent: 31 + type: Transform - uid: 920 components: - rot: 1.5707963267948966 rad @@ -65501,6 +72803,12 @@ entities: - pos: -19.5,2.5 parent: 31 type: Transform + - uid: 1332 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-24.5 + parent: 31 + type: Transform - uid: 1351 components: - pos: -25.5,9.5 @@ -65521,16 +72829,6 @@ entities: - pos: -27.5,6.5 parent: 31 type: Transform - - uid: 1471 - components: - - pos: -4.5,-18.5 - parent: 31 - type: Transform - - uid: 1472 - components: - - pos: -2.5,-18.5 - parent: 31 - type: Transform - uid: 1497 components: - pos: 7.5,2.5 @@ -65556,46 +72854,175 @@ entities: - pos: 11.5,2.5 parent: 31 type: Transform + - uid: 2155 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,11.5 + parent: 31 + type: Transform - uid: 2197 components: - pos: 20.5,-5.5 parent: 31 type: Transform + - uid: 2263 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-24.5 + parent: 31 + type: Transform - uid: 2409 components: - rot: 3.141592653589793 rad pos: -2.5,2.5 parent: 31 type: Transform + - uid: 3744 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-14.5 + parent: 31 + type: Transform + - uid: 3795 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-14.5 + parent: 31 + type: Transform + - uid: 4262 + components: + - pos: 52.5,-2.5 + parent: 31 + type: Transform + - uid: 4501 + components: + - pos: 48.5,-6.5 + parent: 31 + type: Transform + - uid: 4834 + components: + - pos: -8.5,-24.5 + parent: 31 + type: Transform + - uid: 5222 + components: + - pos: 11.5,-16.5 + parent: 31 + type: Transform + - uid: 6286 + components: + - pos: 49.5,-6.5 + parent: 31 + type: Transform + - uid: 7437 + components: + - pos: 11.5,-17.5 + parent: 31 + type: Transform + - uid: 7438 + components: + - pos: 13.5,-10.5 + parent: 31 + type: Transform + - uid: 7454 + components: + - pos: 13.5,-11.5 + parent: 31 + type: Transform + - uid: 7455 + components: + - pos: 22.5,14.5 + parent: 31 + type: Transform + - uid: 7461 + components: + - pos: 11.5,-15.5 + parent: 31 + type: Transform + - uid: 7548 + components: + - pos: 19.5,14.5 + parent: 31 + type: Transform + - uid: 7568 + components: + - pos: 23.5,19.5 + parent: 31 + type: Transform - uid: 7596 components: - pos: 8.5,-11.5 parent: 31 type: Transform - - uid: 9517 + - uid: 7940 + components: + - pos: 23.5,20.5 + parent: 31 + type: Transform + - uid: 7941 + components: + - pos: 23.5,21.5 + parent: 31 + type: Transform + - uid: 8385 + components: + - pos: 52.5,-6.5 + parent: 31 + type: Transform + - uid: 9268 + components: + - pos: -7.5,-24.5 + parent: 31 + type: Transform + - uid: 9873 + components: + - pos: 17.5,9.5 + parent: 31 + type: Transform + - uid: 10234 + components: + - pos: 51.5,-6.5 + parent: 31 + type: Transform + - uid: 10635 + components: + - pos: 44.5,-8.5 + parent: 31 + type: Transform + - uid: 10829 components: - rot: -1.5707963267948966 rad - pos: 8.5,-5.5 + pos: -37.5,11.5 parent: 31 type: Transform - proto: WindowDirectional entities: + - uid: 197 + components: + - pos: -6.5,-28.5 + parent: 31 + type: Transform - uid: 1343 components: - rot: -1.5707963267948966 rad pos: -4.5,-8.5 parent: 31 type: Transform + - uid: 2311 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-24.5 + parent: 31 + type: Transform - uid: 7321 components: - rot: 1.5707963267948966 rad pos: -2.5,-8.5 parent: 31 type: Transform - - uid: 7335 + - uid: 8207 components: - - rot: -1.5707963267948966 rad - pos: -20.5,-4.5 + - pos: -5.5,-28.5 parent: 31 type: Transform - uid: 8710 @@ -65622,26 +73049,18 @@ entities: pos: -36.5,-27.5 parent: 31 type: Transform -- proto: WindowReinforcedDirectional - entities: - - uid: 4395 - components: - - rot: 3.141592653589793 rad - pos: 47.5,-8.5 - parent: 31 - type: Transform - - uid: 4396 + - uid: 10273 components: - - rot: 3.141592653589793 rad - pos: 49.5,-8.5 + - pos: -32.5,-15.5 parent: 31 type: Transform - - uid: 4397 + - uid: 10274 components: - - rot: 3.141592653589793 rad - pos: 51.5,-8.5 + - pos: -31.5,-15.5 parent: 31 type: Transform +- proto: WindowReinforcedDirectional + entities: - uid: 4488 components: - rot: -1.5707963267948966 rad @@ -65666,16 +73085,6 @@ entities: pos: 33.5,-12.5 parent: 31 type: Transform - - uid: 4536 - components: - - pos: 58.5,-0.5 - parent: 31 - type: Transform - - uid: 4537 - components: - - pos: 59.5,-0.5 - parent: 31 - type: Transform - uid: 4615 components: - rot: 1.5707963267948966 rad @@ -65712,21 +73121,6 @@ entities: pos: 52.5,12.5 parent: 31 type: Transform - - uid: 7553 - components: - - pos: -25.5,-13.5 - parent: 31 - type: Transform - - uid: 7554 - components: - - pos: -24.5,-13.5 - parent: 31 - type: Transform - - uid: 7555 - components: - - pos: -23.5,-13.5 - parent: 31 - type: Transform - uid: 8887 components: - rot: -1.5707963267948966 rad @@ -65739,16 +73133,6 @@ entities: pos: 32.5,6.5 parent: 31 type: Transform - - uid: 8934 - components: - - pos: -9.5,-22.5 - parent: 31 - type: Transform - - uid: 8935 - components: - - pos: -7.5,-22.5 - parent: 31 - type: Transform - uid: 8942 components: - rot: -1.5707963267948966 rad @@ -65760,34 +73144,23 @@ entities: - pos: 19.5,0.5 parent: 31 type: Transform - - uid: 9625 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,16.5 - parent: 31 - type: Transform -- proto: WoodDoor - entities: - - uid: 71 - components: - - pos: -39.5,16.5 - parent: 31 - type: Transform - proto: Wrench entities: - - uid: 2212 + - uid: 5678 components: - - pos: 7.5431976,-17.433199 + - pos: 17.492687,-21.190275 parent: 31 type: Transform - - uid: 9611 + - uid: 7366 components: - - pos: -9.608631,-30.53517 + - rot: -1.5707963267948966 rad + pos: -4.5729136,-32.437004 parent: 31 type: Transform - - uid: 9612 + - uid: 10984 components: - - pos: -9.327381,-30.41017 + - rot: -1.5707963267948966 rad + pos: 59.909473,-5.528083 parent: 31 type: Transform - proto: YellowOxygenTankFilled @@ -65797,6 +73170,11 @@ entities: - pos: 59.472126,6.503501 parent: 31 type: Transform + - uid: 7422 + components: + - pos: -5.4065356,-19.504105 + parent: 31 + type: Transform - uid: 7794 components: - pos: -23.521854,22.535301 diff --git a/Resources/Prototypes/Access/syndicate.yml b/Resources/Prototypes/Access/syndicate.yml index 32e0c7a0160..985bbf08e8a 100644 --- a/Resources/Prototypes/Access/syndicate.yml +++ b/Resources/Prototypes/Access/syndicate.yml @@ -1,3 +1,7 @@ -- type: accessLevel +- type: accessLevel id: NuclearOperative name: id-card-access-level-nuclear-operative + +- type: accessLevel + id: SyndicateAgent + name: id-card-access-level-syndicate-agent diff --git a/Resources/Prototypes/Actions/borgs.yml b/Resources/Prototypes/Actions/borgs.yml index 758d7aeb036..6d35c69cf6a 100644 --- a/Resources/Prototypes/Actions/borgs.yml +++ b/Resources/Prototypes/Actions/borgs.yml @@ -1,10 +1,13 @@ -- type: instantAction - id: ViewLaws - name: action-name-view-laws - description: action-description-view-laws - itemIconStyle: NoItem - icon: - sprite: Interface/Actions/actions_borg.rsi - state: state-laws - event: !type:ToggleLawsScreenEvent - useDelay: 0.5 +- type: entity + id: ActionViewLaws + name: View Laws + description: View the laws that you must follow. + noSpawn: true + components: + - type: InstantAction + itemIconStyle: NoItem + icon: + sprite: Interface/Actions/actions_borg.rsi + state: state-laws + event: !type:ToggleLawsScreenEvent + useDelay: 0.5 diff --git a/Resources/Prototypes/Actions/crit.yml b/Resources/Prototypes/Actions/crit.yml index 23a058c0171..bdd09d697ec 100644 --- a/Resources/Prototypes/Actions/crit.yml +++ b/Resources/Prototypes/Actions/crit.yml @@ -1,34 +1,43 @@ # Actions added to mobs in crit. -- type: instantAction - id: CritSuccumb - name: action-name-crit-succumb - description: action-description-crit-succumb - itemIconStyle: NoItem - checkCanInteract: false - icon: - sprite: Mobs/Ghosts/ghost_human.rsi - state: icon - serverEvent: !type:CritSuccumbEvent +- type: entity + id: ActionCritSuccumb + name: Succumb + description: Accept your fate. + noSpawn: true + components: + - type: InstantAction + itemIconStyle: NoItem + checkCanInteract: false + icon: + sprite: Mobs/Ghosts/ghost_human.rsi + state: icon + event: !type:CritSuccumbEvent -- type: instantAction - id: CritFakeDeath - name: action-name-crit-fake-death - description: action-description-crit-fake-death - itemIconStyle: NoItem - checkCanInteract: false - icon: - sprite: Interface/Actions/actions_crit.rsi - state: fakedeath - serverEvent: !type:CritFakeDeathEvent - useDelay: 30 +- type: entity + id: ActionCritFakeDeath + name: Fake Death + description: Pretend to take your final breath while staying alive. + noSpawn: true + components: + - type: InstantAction + itemIconStyle: NoItem + checkCanInteract: false + icon: + sprite: Interface/Actions/actions_crit.rsi + state: fakedeath + event: !type:CritFakeDeathEvent + useDelay: 30 -- type: instantAction - id: CritLastWords - name: action-name-crit-last-words - description: action-description-crit-last-words - itemIconStyle: NoItem - checkCanInteract: false - icon: - sprite: Interface/Actions/actions_crit.rsi - state: lastwords - serverEvent: !type:CritLastWordsEvent +- type: entity + id: ActionCritLastWords + name: Say Last Words + description: Whisper your last words to anyone nearby, and then succumb to your fate. You only have 30 characters to work with. + noSpawn: true + components: + - type: InstantAction + itemIconStyle: NoItem + checkCanInteract: false + icon: + sprite: Interface/Actions/actions_crit.rsi + state: lastwords + event: !type:CritLastWordsEvent diff --git a/Resources/Prototypes/Actions/internals.yml b/Resources/Prototypes/Actions/internals.yml new file mode 100644 index 00000000000..dd83a45332f --- /dev/null +++ b/Resources/Prototypes/Actions/internals.yml @@ -0,0 +1,15 @@ +- type: entity + id: ActionToggleInternals + name: Toggle Internals + description: Breathe from the equipped gas tank. Also requires equipped breath mask. + noSpawn: true + components: + - type: InstantAction + icon: + sprite: Interface/Alerts/internals.rsi + state: internal2 + iconOn: + sprite: Interface/Alerts/internals.rsi + state: internal1 + event: !type:ToggleActionEvent + useDelay: 1 diff --git a/Resources/Prototypes/Actions/mech.yml b/Resources/Prototypes/Actions/mech.yml index f070f006d67..2005133a70b 100644 --- a/Resources/Prototypes/Actions/mech.yml +++ b/Resources/Prototypes/Actions/mech.yml @@ -1,31 +1,40 @@ -- type: instantAction - id: MechCycleEquipment - name: action-name-mech-cycle - description: action-description-mech-cycle - itemIconStyle: NoItem - icon: - sprite: Interface/Actions/actions_mecha.rsi - state: mech_cycle_equip_on - event: !type:MechToggleEquipmentEvent - useDelay: 0.5 +- type: entity + id: ActionMechCycleEquipment + name: Cycle + description: Cycles currently selected equipment + noSpawn: true + components: + - type: InstantAction + itemIconStyle: NoItem + icon: + sprite: Interface/Actions/actions_mecha.rsi + state: mech_cycle_equip_on + event: !type:MechToggleEquipmentEvent + useDelay: 0.5 -- type: instantAction - id: MechOpenUI - name: action-name-mech-control-panel - description: action-description-mech-control-panel - itemIconStyle: NoItem - icon: - sprite: Interface/Actions/actions_mecha.rsi - state: mech_view_stats - event: !type:MechOpenUiEvent - useDelay: 1 +- type: entity + id: ActionMechOpenUI + name: Control Panel + description: Opens the control panel for the mech + noSpawn: true + components: + - type: InstantAction + itemIconStyle: NoItem + icon: + sprite: Interface/Actions/actions_mecha.rsi + state: mech_view_stats + event: !type:MechOpenUiEvent + useDelay: 1 -- type: instantAction - id: MechEject - name: action-name-mech-eject - description: action-description-mech-eject - itemIconStyle: NoItem - icon: - sprite: Interface/Actions/actions_mecha.rsi - state: mech_eject - event: !type:MechEjectPilotEvent \ No newline at end of file +- type: entity + id: ActionMechEject + name: Eject + description: Ejects the pilot from the mech + noSpawn: true + components: + - type: InstantAction + itemIconStyle: NoItem + icon: + sprite: Interface/Actions/actions_mecha.rsi + state: mech_eject + event: !type:MechEjectPilotEvent diff --git a/Resources/Prototypes/Actions/ninja.yml b/Resources/Prototypes/Actions/ninja.yml new file mode 100644 index 00000000000..5fe6f23b276 --- /dev/null +++ b/Resources/Prototypes/Actions/ninja.yml @@ -0,0 +1,84 @@ +# gloves +- type: entity + id: ActionToggleNinjaGloves + name: Toggle ninja gloves + description: Toggles all glove actions on left click. Includes your doorjack, draining power, stunning enemies, downloading research and calling in a threat. + noSpawn: true + components: + - type: InstantAction + priority: -13 + event: !type:ToggleActionEvent {} + +# suit +- type: entity + id: ActionCreateThrowingStar + name: Create throwing star + description: Channels suit power into creating a throwing star that deals extra stamina damage. + noSpawn: true + components: + - type: InstantAction + useDelay: 0.5 + icon: + sprite: Objects/Weapons/Throwable/throwing_star.rsi + state: icon + itemIconStyle: NoItem + priority: -10 + event: !type:CreateThrowingStarEvent {} + +- type: entity + id: ActionRecallKatana + name: Recall katana + description: Teleports the Energy Katana linked to this suit to its wearer, cost based on distance. + noSpawn: true + components: + - type: InstantAction + useDelay: 1 + icon: + sprite: Objects/Weapons/Melee/energykatana.rsi + state: icon + itemIconStyle: NoItem + priority: -11 + event: !type:RecallKatanaEvent {} + +- type: entity + id: ActionNinjaEmp + name: EM Burst + description: Disable any nearby technology with an electro-magnetic pulse. + noSpawn: true + components: + - type: InstantAction + icon: + sprite: Objects/Weapons/Grenades/empgrenade.rsi + state: icon + itemIconStyle: BigAction + priority: -13 + event: !type:NinjaEmpEvent {} + +- type: entity + id: ActionTogglePhaseCloak + name: Phase cloak + description: Toggles your suit's phase cloak. Beware that if you are hit, all abilities are disabled for 5 seconds, including your cloak! + noSpawn: true + components: + - type: InstantAction + # have to plan (un)cloaking ahead of time + useDelay: 5 + priority: -9 + event: !type:ToggleStealthEvent + +# katana +- type: entity + id: ActionEnergyKatanaDash + name: Katana dash + description: Teleport to anywhere you can see, if your Energy Katana is in your hand. + noSpawn: true + components: + - type: WorldTargetAction + icon: + sprite: Objects/Magic/magicactions.rsi + state: blink + itemIconStyle: NoItem + priority: -12 + event: !type:DashEvent + checkCanAccess: false + range: 0 diff --git a/Resources/Prototypes/Actions/polymorph.yml b/Resources/Prototypes/Actions/polymorph.yml new file mode 100644 index 00000000000..7472fc00620 --- /dev/null +++ b/Resources/Prototypes/Actions/polymorph.yml @@ -0,0 +1,16 @@ +- type: entity + id: ActionRevertPolymorph + name: Revert + description: Revert back into your original form. + noSpawn: true + components: + - type: InstantAction + event: !type:RevertPolymorphActionEvent + +- type: entity + id: ActionPolymorph + noSpawn: true + components: + - type: InstantAction + event: !type:PolymorphActionEvent + itemIconStyle: NoItem diff --git a/Resources/Prototypes/Actions/revenant.yml b/Resources/Prototypes/Actions/revenant.yml index 1fbf677d805..da7b4ba56f2 100644 --- a/Resources/Prototypes/Actions/revenant.yml +++ b/Resources/Prototypes/Actions/revenant.yml @@ -1,38 +1,53 @@ -- type: instantAction - id: RevenantShop - icon: Interface/Actions/shop.png +- type: entity + id: ActionRevenantShop name: Shop description: Opens the ability shop. - serverEvent: !type:RevenantShopActionEvent + noSpawn: true + components: + - type: InstantAction + icon: Interface/Actions/shop.png + event: !type:RevenantShopActionEvent -- type: instantAction - id: RevenantDefile - icon: Interface/Actions/defile.png +- type: entity + id: ActionRevenantDefile name: Defile description: Costs 30 Essence. - serverEvent: !type:RevenantDefileActionEvent - useDelay: 15 + noSpawn: true + components: + - type: InstantAction + icon: Interface/Actions/defile.png + event: !type:RevenantDefileActionEvent + useDelay: 15 -- type: instantAction - id: RevenantOverloadLights - icon: Interface/Actions/overloadlight.png +- type: entity + id: ActionRevenantOverloadLights name: Overload Lights description: Costs 40 Essence. - serverEvent: !type:RevenantOverloadLightsActionEvent - useDelay: 20 + noSpawn: true + components: + - type: InstantAction + icon: Interface/Actions/overloadlight.png + event: !type:RevenantOverloadLightsActionEvent + useDelay: 20 -#- type: instantAction -# id: RevenantBlight -# icon: Interface/Actions/blight.png +#- type: entity +# id: ActionRevenantBlight # name: Blight # description: Costs 50 Essence. -# serverEvent: !type:RevenantBlightActionEvent -# useDelay: 20 +# noSpawn: true +# components: +# - type: InstantAction +# icon: Interface/Actions/blight.png +# event: !type:RevenantBlightActionEvent +# useDelay: 20 -- type: instantAction - id: RevenantMalfunction - icon: Interface/Actions/malfunction.png +- type: entity + id: ActionRevenantMalfunction name: Malfunction description: Costs 60 Essence. - serverEvent: !type:RevenantMalfunctionActionEvent - useDelay: 20 + noSpawn: true + components: + - type: InstantAction + icon: Interface/Actions/malfunction.png + event: !type:RevenantMalfunctionActionEvent + useDelay: 20 diff --git a/Resources/Prototypes/Actions/speech.yml b/Resources/Prototypes/Actions/speech.yml new file mode 100644 index 00000000000..39db04b1b31 --- /dev/null +++ b/Resources/Prototypes/Actions/speech.yml @@ -0,0 +1,11 @@ +- type: entity + id: ActionConfigureMeleeSpeech + name: Set Battlecry + description: Set a custom battlecry for when you attack! + noSpawn: true + components: + - type: InstantAction + itemIconStyle: BigItem + priority: -20 + useDelay: 1 + event: !type:MeleeSpeechConfigureActionEvent diff --git a/Resources/Prototypes/Actions/spider.yml b/Resources/Prototypes/Actions/spider.yml index 988b9a3f8d3..14b9fb6ccbb 100644 --- a/Resources/Prototypes/Actions/spider.yml +++ b/Resources/Prototypes/Actions/spider.yml @@ -1,15 +1,21 @@ -- type: instantAction - id: SpiderWebAction - icon: Interface/Actions/web.png - name: spider-web-action-name - description: spider-web-action-description - serverEvent: !type:SpiderWebActionEvent - useDelay: 25 +- type: entity + id: ActionSpiderWeb + name: Spider Web + description: Spawns a web that slows your prey down. + noSpawn: true + components: + - type: InstantAction + icon: Interface/Actions/web.png + event: !type:SpiderWebActionEvent + useDelay: 25 -- type: instantAction - id: SericultureAction - icon: Interface/Actions/web.png - name: sericulture-action-name - description: sericulture-action-description - serverEvent: !type:SericultureActionEvent - useDelay: 1 +- type: entity + id: ActionSericulture + name: Weave silk + description: Weave a bit of silk for use in arts and crafts. + noSpawn: true + components: + - type: InstantAction + icon: Interface/Actions/web.png + event: !type:SericultureActionEvent + useDelay: 1 diff --git a/Resources/Prototypes/Actions/types.yml b/Resources/Prototypes/Actions/types.yml index 2bf3b9b98a9..1092181bf89 100644 --- a/Resources/Prototypes/Actions/types.yml +++ b/Resources/Prototypes/Actions/types.yml @@ -1,184 +1,256 @@ -- type: instantAction - id: Scream - useDelay: 10 - icon: Interface/Actions/scream.png - name: action-name-scream - description: action-description-scream - serverEvent: !type:ScreamActionEvent - checkCanInteract: false - -- type: instantAction - id: TurnUndead - name: turn-undead-action-name - description: turn-undead-action-description - checkCanInteract: false - icon: Interface/Actions/zombie-turn.png - event: !type:ZombifySelfActionEvent - -- type: instantAction - id: ToggleLight - name: action-name-toggle-light - description: action-description-toggle-light - icon: { sprite: Objects/Tools/flashlight.rsi, state: flashlight } - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - event: !type:ToggleActionEvent - -- type: instantAction - id: OpenStorageImplant - name: open-storage-implant-action-name - description: open-storage-implant-action-description - itemIconStyle: BigAction - priority: -20 - icon: - sprite: Clothing/Back/Backpacks/backpack.rsi - state: icon - event: !type:OpenStorageImplantEvent - -- type: instantAction - id: ActivateMicroBomb - name: activate-micro-bomb-action-name - description: activate-micro-bomb-action-description - checkCanInteract: false - itemIconStyle: BigAction - priority: -20 - icon: - sprite: Actions/Implants/implants.rsi - state: explosive - event: !type:ActivateImplantEvent - -- type: instantAction - id: ActivateFreedomImplant - name: use-freedom-implant-action-name - description: use-freedom-implant-action-description - charges: 3 - checkCanInteract: false - itemIconStyle: BigAction - priority: -20 - icon: - sprite: Actions/Implants/implants.rsi - state: freedom - event: !type:UseFreedomImplantEvent - -- type: instantAction - id: OpenUplinkImplant - name: open-uplink-implant-action-name - description: open-uplink-implant-action-description - itemIconStyle: BigAction - priority: -20 - icon: - sprite: Objects/Devices/communication.rsi - state: old-radio - event: !type:OpenUplinkImplantEvent - -- type: instantAction - id: ActivateEmpImplant - name: use-emp-implant-action-name - description: use-emp-implant-action-description - charges: 3 - useDelay: 5 - itemIconStyle: BigAction - priority: -20 - icon: - sprite: Objects/Weapons/Grenades/empgrenade.rsi - state: icon - event: !type:ActivateImplantEvent - -- type: instantAction - id: ActivateDnaScramblerImplant - name: use-dna-scrambler-implant-action-name - description: use-dna-scrambler-implant-action-description - charges: 1 - itemIconStyle: BigAction - priority: -20 - icon: - sprite: Clothing/OuterClothing/Hardsuits/lingspacesuit.rsi - state: icon - event: !type:UseDnaScramblerImplantEvent - -- type: instantAction - id: ToggleSuitHelmet - name: action-name-hardsuit - description: action-description-hardsuit - itemIconStyle: BigItem - useDelay: 1 # equip noise spam. - event: !type:ToggleClothingEvent - -- type: instantAction - id: CombatModeToggle - name: action-name-combat - description: action-description-combat - checkCanInteract: false - icon: Interface/Actions/harmOff.png - iconOn: Interface/Actions/harm.png - event: !type:ToggleCombatActionEvent - -- type: instantAction - id: ChangeVoiceMask - name: voice-mask-name-change-set - icon: Interface/Actions/scream.png # somebody else can figure out a better icon for this - description: voice-mask-name-change-set-description - serverEvent: !type:VoiceMaskSetNameEvent - -- type: instantAction - id: VendingThrow - name: vending-machine-action-name - description: vending-machine-action-description - useDelay: 30 - event: !type:VendingMachineSelfDispenseEvent - -- type: instantAction - id: ArtifactActivate - name: activate-artifact-action-name - description: activate-artifact-action-desc - icon: - sprite: Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi - state: ano01 - useDelay: 60 - event: !type:ArtifactSelfActivateEvent - -- type: instantAction - id: ToggleBlock - name: action-name-blocking - description: action-description-blocking - icon: { sprite: Objects/Weapons/Melee/shields.rsi, state: teleriot-icon } - iconOn: Objects/Weapons/Melee/shields.rsi/teleriot-on.png - event: !type:ToggleActionEvent - -- type: instantAction - id: ClearNetworkLinkOverlays - name: network-configurator-clear-network-link-overlays - description: network-configurator-clear-network-link-overlays-desc - icon: { sprite: Objects/Tools/multitool.rsi, state: icon } - event: !type:ClearAllOverlaysEvent - -- type: instantAction - id: AnimalLayEgg - name: action-name-lay-egg - description: action-description-lay-egg - icon: { sprite: Objects/Consumable/Food/egg.rsi, state: icon } - useDelay: 60 - serverEvent: !type:EggLayInstantActionEvent - -- type: instantAction - id: Sleep - name: action-name-sleep - description: action-desc-sleep - checkCanInteract: false - icon: { sprite: Clothing/Head/Hats/pyjamasyndicatered.rsi, state: icon } - event: !type:SleepActionEvent - -- type: instantAction - id: Wake - name: action-name-wake - description: action-desc-wake - icon: { sprite: Clothing/Head/Hats/pyjamasyndicatered.rsi, state: icon } - checkCanInteract: false - event: !type:WakeActionEvent - -- type: instantAction - id: ActivateHonkImplant - name: action-name-honk - description: action-desc-honk - icon: { sprite: Objects/Fun/bikehorn.rsi, state: icon } - event: !type:ActivateImplantEvent - useDelay: 1 +- type: entity + id: ActionScream + name: Scream + description: AAAAAAAAAAAAAAAAAAAAAAAAA + noSpawn: true + components: + - type: InstantAction + useDelay: 10 + icon: Interface/Actions/scream.png + event: !type:ScreamActionEvent + checkCanInteract: false + +- type: entity + id: ActionTurnUndead + name: Turn Undead + description: Succumb to your infection and become a zombie. + noSpawn: true + components: + - type: InstantAction + checkCanInteract: false + icon: Interface/Actions/zombie-turn.png + event: !type:ZombifySelfActionEvent + +- type: entity + id: ActionToggleLight + name: Toggle Light + description: Turn the light on and off. + noSpawn: true + components: + - type: InstantAction + icon: { sprite: Objects/Tools/flashlight.rsi, state: flashlight } + iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png + event: !type:ToggleActionEvent + +- type: entity + id: ActionOpenStorageImplant + name: Open Storage Implant + description: Opens the storage implant embedded under your skin + noSpawn: true + components: + - type: InstantAction + itemIconStyle: BigAction + priority: -20 + icon: + sprite: Clothing/Back/Backpacks/backpack.rsi + state: icon + event: !type:OpenStorageImplantEvent + +- type: entity + id: ActionActivateMicroBomb + name: Activate Microbomb + description: Activates your internal microbomb, completely destroying you and your equipment + noSpawn: true + components: + - type: InstantAction + checkCanInteract: false + itemIconStyle: BigAction + priority: -20 + icon: + sprite: Actions/Implants/implants.rsi + state: explosive + event: !type:ActivateImplantEvent + +- type: entity + id: ActionActivateFreedomImplant + name: Break Free + description: Activating your freedom implant will free you from any hand restraints + noSpawn: true + components: + - type: InstantAction + charges: 3 + checkCanInteract: false + itemIconStyle: BigAction + priority: -20 + icon: + sprite: Actions/Implants/implants.rsi + state: freedom + event: !type:UseFreedomImplantEvent + +- type: entity + id: ActionOpenUplinkImplant + name: Open Uplink + description: Opens the syndicate uplink embedded under your skin + noSpawn: true + components: + - type: InstantAction + itemIconStyle: BigAction + priority: -20 + icon: + sprite: Objects/Devices/communication.rsi + state: old-radio + event: !type:OpenUplinkImplantEvent + +- type: entity + id: ActionActivateEmpImplant + name: Activate EMP + description: Triggers a small EMP pulse around you + noSpawn: true + components: + - type: InstantAction + charges: 3 + useDelay: 5 + itemIconStyle: BigAction + priority: -20 + icon: + sprite: Objects/Weapons/Grenades/empgrenade.rsi + state: icon + event: !type:ActivateImplantEvent + +- type: entity + id: ActionActivateDnaScramblerImplant + name: Scramble DNA + description: Randomly changes your name and appearance. + noSpawn: true + components: + - type: InstantAction + charges: 1 + itemIconStyle: BigAction + priority: -20 + icon: + sprite: Clothing/OuterClothing/Hardsuits/lingspacesuit.rsi + state: icon + event: !type:UseDnaScramblerImplantEvent + +- type: entity + id: ActionToggleSuitPiece + name: Toggle Suit Piece + description: Remember to equip the important pieces of your suit before going into action. + noSpawn: true + components: + - type: InstantAction + itemIconStyle: BigItem + useDelay: 1 # equip noise spam. + event: !type:ToggleClothingEvent + +- type: entity + id: ActionCombatModeToggle + name: "[color=red]Combat Mode[/color]" + description: Enter combat mode + noSpawn: true + components: + - type: InstantAction + checkCanInteract: false + icon: Interface/Actions/harmOff.png + iconOn: Interface/Actions/harm.png + event: !type:ToggleCombatActionEvent + priority: -100 + +- type: entity + id: ActionCombatModeToggleOff + parent: ActionCombatModeToggle + name: "[color=red]Combat Mode[/color]" + description: Enter combat mode + noSpawn: true + components: + - type: InstantAction + enabled: false + autoPopulate: false + priority: -100 + +- type: entity + id: ActionChangeVoiceMask + name: Set name + description: Change the name others hear to something else. + components: + - type: InstantAction + icon: Interface/Actions/scream.png # somebody else can figure out a better icon for this + event: !type:VoiceMaskSetNameEvent + +- type: entity + id: ActionVendingThrow + name: Dispense Item + description: Randomly dispense an item from your stock. + noSpawn: true + components: + - type: InstantAction + useDelay: 30 + event: !type:VendingMachineSelfDispenseEvent + +- type: entity + id: ActionArtifactActivate + name: Activate Artifact + description: Immediately activates your current artifact node. + noSpawn: true + components: + - type: InstantAction + icon: + sprite: Objects/Specific/Xenoarchaeology/xeno_artifacts.rsi + state: ano01 + useDelay: 60 + event: !type:ArtifactSelfActivateEvent + +- type: entity + id: ActionToggleBlock + name: Block + description: Raise or lower your shield. + noSpawn: true + components: + - type: InstantAction + icon: { sprite: Objects/Weapons/Melee/shields.rsi, state: teleriot-icon } + iconOn: Objects/Weapons/Melee/shields.rsi/teleriot-on.png + event: !type:ToggleActionEvent + +- type: entity + id: ActionClearNetworkLinkOverlays + name: Clear network link overlays + description: Clear network link overlays. + noSpawn: true + components: + - type: InstantAction + icon: { sprite: Objects/Tools/multitool.rsi, state: icon } + event: !type:ClearAllOverlaysEvent + +- type: entity + id: ActionAnimalLayEgg + name: Lay egg + description: Uses hunger to lay an egg. + noSpawn: true + components: + - type: InstantAction + icon: { sprite: Objects/Consumable/Food/egg.rsi, state: icon } + useDelay: 60 + event: !type:EggLayInstantActionEvent + +- type: entity + id: ActionSleep + name: Sleep + description: Go to sleep. + noSpawn: true + components: + - type: InstantAction + checkCanInteract: false + icon: { sprite: Clothing/Head/Hats/pyjamasyndicatered.rsi, state: icon } + event: !type:SleepActionEvent + +- type: entity + id: ActionWake + name: Wake up + description: Stop sleeping. + noSpawn: true + components: + - type: InstantAction + icon: { sprite: Clothing/Head/Hats/pyjamasyndicatered.rsi, state: icon } + checkCanInteract: false + event: !type:WakeActionEvent + +- type: entity + id: ActionActivateHonkImplant + name: Honk + description: Activates your honking implant, which will produce the signature sound of the clown. + noSpawn: true + components: + - type: InstantAction + icon: { sprite: Objects/Fun/bikehorn.rsi, state: icon } + event: !type:ActivateImplantEvent + useDelay: 1 diff --git a/Resources/Prototypes/Alerts/alerts.yml b/Resources/Prototypes/Alerts/alerts.yml index 0b7148b4d5e..ce6b2d05100 100644 --- a/Resources/Prototypes/Alerts/alerts.yml +++ b/Resources/Prototypes/Alerts/alerts.yml @@ -6,6 +6,7 @@ order: - category: Health - category: Stamina + - alertType: SuitPower - category: Internals - alertType: Fire - alertType: Handcuffed diff --git a/Resources/Prototypes/Alerts/ninja.yml b/Resources/Prototypes/Alerts/ninja.yml new file mode 100644 index 00000000000..1190b753e4c --- /dev/null +++ b/Resources/Prototypes/Alerts/ninja.yml @@ -0,0 +1,23 @@ +- type: alert + id: SuitPower + icons: + - sprite: /Textures/Interface/Alerts/ninja_power.rsi + state: power0 + - sprite: /Textures/Interface/Alerts/ninja_power.rsi + state: power1 + - sprite: /Textures/Interface/Alerts/ninja_power.rsi + state: power2 + - sprite: /Textures/Interface/Alerts/ninja_power.rsi + state: power3 + - sprite: /Textures/Interface/Alerts/ninja_power.rsi + state: power4 + - sprite: /Textures/Interface/Alerts/ninja_power.rsi + state: power5 + - sprite: /Textures/Interface/Alerts/ninja_power.rsi + state: power6 + - sprite: /Textures/Interface/Alerts/ninja_power.rsi + state: power7 + name: alerts-suit-power-name + description: alerts-suit-power-desc + minSeverity: 0 + maxSeverity: 7 diff --git a/Resources/Prototypes/Body/Organs/Animal/animal.yml b/Resources/Prototypes/Body/Organs/Animal/animal.yml index 3b623913323..e84528fbb41 100644 --- a/Resources/Prototypes/Body/Organs/Animal/animal.yml +++ b/Resources/Prototypes/Body/Organs/Animal/animal.yml @@ -16,6 +16,10 @@ name: lungs noSpawn: true components: + - type: Sprite + layers: + - state: lung-l + - state: lung-r - type: Organ - type: Lung - type: Metabolizer @@ -38,6 +42,8 @@ name: stomach noSpawn: true components: + - type: Sprite + state: stomach - type: Organ - type: SolutionContainerManager solutions: @@ -57,6 +63,8 @@ name: liver noSpawn: true components: + - type: Sprite + state: liver - type: Organ - type: Metabolizer maxReagents: 1 @@ -71,6 +79,8 @@ name: heart noSpawn: true components: + - type: Sprite + state: heart-on - type: Organ - type: Metabolizer maxReagents: 2 @@ -86,6 +96,10 @@ name: kidneys noSpawn: true components: + - type: Sprite + layers: + - state: kidney-l + - state: kidney-r - type: Organ - type: Metabolizer maxReagents: 5 diff --git a/Resources/Prototypes/Body/Parts/animal.yml b/Resources/Prototypes/Body/Parts/animal.yml index 3be42d56cda..cf65fd21360 100644 --- a/Resources/Prototypes/Body/Parts/animal.yml +++ b/Resources/Prototypes/Body/Parts/animal.yml @@ -8,6 +8,9 @@ name: "animal body part" abstract: true components: + # yes these sprites dont make sense i dont care its better than them being invisible + - type: Sprite + sprite: Mobs/Species/Reptilian/parts.rsi - type: Damageable damageContainer: Biological - type: BodyPart @@ -28,42 +31,56 @@ - ReagentId: Blood Quantity: 10 -# For primates mainly - type: entity id: HandsAnimal - name: "animal hands" + name: animal hands parent: PartAnimal noSpawn: true components: + - type: Sprite + layers: + - state: l_hand + - state: r_hand - type: BodyPart partType: Hand symmetry: Left - type: entity id: LegsAnimal - name: "animal legs" + name: animal legs parent: PartAnimal noSpawn: true components: + - type: Sprite + layers: + - state: l_leg + - state: r_leg - type: BodyPart partType: Leg - type: MovementBodyPart - type: entity id: FeetAnimal - name: "animal feet" + name: animal feet parent: PartAnimal noSpawn: true components: + - type: Sprite + layers: + - state: r_foot + - state: l_foot - type: BodyPart partType: Foot - type: entity id: TorsoAnimal - name: "animal torso" + name: animal torso parent: PartAnimal noSpawn: true components: + - type: Sprite + layers: + - state: torso_m - type: BodyPart partType: Torso - type: Damageable diff --git a/Resources/Prototypes/Body/Prototypes/a_ghost.yml b/Resources/Prototypes/Body/Prototypes/a_ghost.yml index f04ed70197e..3a8a615ffe8 100644 --- a/Resources/Prototypes/Body/Prototypes/a_ghost.yml +++ b/Resources/Prototypes/Body/Prototypes/a_ghost.yml @@ -6,8 +6,8 @@ torso: part: TorsoHuman connections: - - right arm - left arm + - right arm right arm: part: RightArmHuman connections: diff --git a/Resources/Prototypes/Body/Prototypes/arachnid.yml b/Resources/Prototypes/Body/Prototypes/arachnid.yml index 60a83500afa..0c57d3a1992 100644 --- a/Resources/Prototypes/Body/Prototypes/arachnid.yml +++ b/Resources/Prototypes/Body/Prototypes/arachnid.yml @@ -27,20 +27,14 @@ part: RightArmArachnid connections: - right hand - - secondary right hand left arm: part: LeftArmArachnid connections: - left hand - - secondary left hand right hand: part: RightHandArachnid left hand: part: LeftHandArachnid - secondary right hand: - part: RightHandArachnid - secondary left hand: - part: LeftHandArachnid right leg: part: RightLegArachnid connections: diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_botany.yml b/Resources/Prototypes/Catalog/Cargo/cargo_botany.yml index 5b5fbe9cf82..f56b729217b 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_botany.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_botany.yml @@ -37,3 +37,13 @@ cost: 500 category: Hydroponics group: market + +- type: cargoProduct + id: BulkPlantBGone + icon: + sprite: Objects/Specific/Chemistry/jug.rsi + state: jug + product: CratePlantBGone + cost: 750 + category: Hydroponics + group: market diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_cargo.yml b/Resources/Prototypes/Catalog/Cargo/cargo_cargo.yml index 97df4bef181..f36aee12e46 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_cargo.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_cargo.yml @@ -6,4 +6,14 @@ product: CargoPallet cost: 250 category: Cargo - group: market \ No newline at end of file + group: market + +- type: cargoProduct + id: CargoLuxuryHardsuit + icon: + sprite: Clothing/Head/Hardsuits/luxury.rsi + state: icon + product: CrateCargoLuxuryHardsuit + cost: 15000 + category: Cargo + group: market diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_engineering.yml b/Resources/Prototypes/Catalog/Cargo/cargo_engineering.yml index b1f7916c827..d5c30591396 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_engineering.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_engineering.yml @@ -4,7 +4,7 @@ sprite: Objects/Tools/cable-coils.rsi state: coillv-30 product: CrateEngineeringCableLV - cost: 600 + cost: 300 category: Engineering group: market @@ -14,7 +14,7 @@ sprite: Objects/Tools/cable-coils.rsi state: coilmv-30 product: CrateEngineeringCableMV - cost: 600 + cost: 300 category: Engineering group: market @@ -24,7 +24,7 @@ sprite: Objects/Tools/cable-coils.rsi state: coilhv-30 product: CrateEngineeringCableHV - cost: 600 + cost: 300 category: Engineering group: market @@ -34,7 +34,7 @@ sprite: Objects/Tools/cable-coils.rsi state: coilall-30 product: CrateEngineeringCableBulk - cost: 1200 + cost: 750 category: Engineering group: market diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_materials.yml b/Resources/Prototypes/Catalog/Cargo/cargo_materials.yml index 207eb7c474c..947a08abb1b 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_materials.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_materials.yml @@ -77,7 +77,7 @@ cost: 1500 category: Materials group: market - + - type: cargoProduct id: MaterialWaterTank icon: @@ -86,4 +86,4 @@ product: WaterTankFull cost: 1000 category: Materials - group: market + group: market \ No newline at end of file diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_medical.yml b/Resources/Prototypes/Catalog/Cargo/cargo_medical.yml index f9b5b1b76b3..41b9adb42b4 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_medical.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_medical.yml @@ -34,7 +34,7 @@ sprite: Objects/Specific/Medical/firstaidkits.rsi state: toxinkit product: CrateEmergencyToxinKit - cost: 700 + cost: 600 category: Medical group: market @@ -44,7 +44,7 @@ sprite: Objects/Specific/Medical/firstaidkits.rsi state: o2kit product: CrateEmergencyO2Kit - cost: 1100 + cost: 600 category: Medical group: market @@ -74,7 +74,7 @@ sprite: Objects/Specific/Medical/firstaidkits.rsi state: radkit product: CrateEmergencyRadiationKit - cost: 2500 + cost: 600 category: Medical group: market diff --git a/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/backpack.yml b/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/backpack.yml index fe3d39fcd2e..02ad1c5a325 100644 --- a/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/backpack.yml +++ b/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/backpack.yml @@ -28,6 +28,18 @@ - id: BoxSurvivalSecurity - id: Flash - id: MagazinePistol + +- type: entity + noSpawn: true + parent: ClothingBackpackSecurity + id: ClothingBackpackSecurityFilledDetective + components: + - type: StorageFill + contents: + - id: BoxSurvivalSecurity + - id: Flash + - id: ForensicPad + - id: ForensicScanner - type: entity noSpawn: true diff --git a/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml b/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml index cf2f11a0383..355e2a1aff3 100644 --- a/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml +++ b/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml @@ -27,6 +27,18 @@ - id: BoxSurvivalSecurity - id: Flash - id: MagazinePistol + +- type: entity + noSpawn: true + parent: ClothingBackpackDuffelSecurity + id: ClothingBackpackDuffelSecurityFilledDetective + components: + - type: StorageFill + contents: + - id: BoxSurvivalSecurity + - id: Flash + - id: ForensicPad + - id: ForensicScanner - type: entity noSpawn: true diff --git a/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/satchel.yml b/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/satchel.yml index 9e31043cee2..bdedcd69a12 100644 --- a/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/satchel.yml +++ b/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/satchel.yml @@ -9,6 +9,20 @@ - type: entity noSpawn: true + parent: ClothingBackpackSatchel + id: ClothingBackpackSatchelTools + components: + - type: StorageFill + contents: + - id: BoxSurvival + - id: Crowbar + - id: Wrench + - id: Screwdriver + - id: Wirecutter + - id: Welder + - id: Multitool + +- type: entity parent: ClothingBackpackSatchelClown id: ClothingBackpackSatchelClownFilled components: @@ -27,6 +41,18 @@ - id: BoxSurvivalSecurity - id: Flash - id: MagazinePistol + +- type: entity + noSpawn: true + parent: ClothingBackpackSatchelSecurity + id: ClothingBackpackSatchelSecurityFilledDetective + components: + - type: StorageFill + contents: + - id: BoxSurvivalSecurity + - id: Flash + - id: ForensicPad + - id: ForensicScanner - type: entity noSpawn: true diff --git a/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml b/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml index 494930a643d..bed671c3554 100644 --- a/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml +++ b/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml @@ -146,22 +146,23 @@ parent: ClothingBackpackDuffel id: ClothingBackpackDuffelSyndicateCostumeCentcom name: CentCom official costume duffel bag - description: "Contains a full CentCom Official uniform set, headset and clipboard included. The headset comes without an encryption key." + description: "Contains a full CentCom Official uniform set, headset and clipboard included. Encryption keys and ID access are not included." + suffix: DO NOT MAP components: - type: Tag tags: [] # ignore "WhitelistChameleon" tag - type: StorageFill contents: - - id: ClothingHeadHatCaptain + - id: ClothingHeadHatCentcom - id: ClothingEyesGlassesSunglasses - id: ClothingUniformJumpsuitCentcomOfficial - id: ClothingShoesBootsJack - - id: ClothingHandsGlovesColorGray - - id: ClothingHeadsetService + - id: ClothingHandsGlovesColorBlack + - id: ClothingHeadsetAltCentComFake - id: ClothingOuterArmorBasic - id: Paper - id: Pen - - id: CentcomPDA + - id: CentcomPDAFake - type: entity parent: ClothingBackpackDuffelClown @@ -179,6 +180,18 @@ - id: ClownPDA - id: ClothingHeadsetService +- type: entity + parent: ClothingBackpackDuffelSyndicateBundle + id: ClothingBackpackDuffelSyndicateCarpSuit + name: carp suit duffel bag + description: Contains a carp suit and some friends to play with. + components: + - type: StorageFill + contents: + - id: ClothingOuterSuitCarp + - id: PlushieCarp + amount: 6 + - type: entity parent: ClothingBackpackDuffelSyndicateBundle id: ClothingBackpackDuffelSyndicatePyjamaBundle diff --git a/Resources/Prototypes/Catalog/Fills/Boxes/ammunition.yml b/Resources/Prototypes/Catalog/Fills/Boxes/ammunition.yml index 6827ac6f950..76fc84c7d99 100644 --- a/Resources/Prototypes/Catalog/Fills/Boxes/ammunition.yml +++ b/Resources/Prototypes/Catalog/Fills/Boxes/ammunition.yml @@ -89,21 +89,6 @@ - id: MagazineMagnumSubMachineGun amount: 3 -- type: entity - name: box of omega particle cartridges - parent: BoxMagazine - id: BoxMagazineChimpOmega - description: A box full of omega particle cartridges for the CHIMP. - components: - - type: StorageFill - contents: - - id: CartridgeAnomalousParticleOmega - amount: 10 - - type: Sprite - layers: - - state: box_science - - state: omegacart - - type: entity name: box of Vector (practice) magazines parent: BoxMagazine diff --git a/Resources/Prototypes/Catalog/Fills/Boxes/medical.yml b/Resources/Prototypes/Catalog/Fills/Boxes/medical.yml index 4a352b49903..41ee064ce03 100644 --- a/Resources/Prototypes/Catalog/Fills/Boxes/medical.yml +++ b/Resources/Prototypes/Catalog/Fills/Boxes/medical.yml @@ -72,7 +72,7 @@ layers: - state: box - state: latex - + - type: entity name: nitrile gloves box parent: BoxCardboard @@ -101,6 +101,10 @@ layers: - state: box - state: swab + - type: GuideHelp + guides: + # - Virology (when it's back) + - Botany - type: entity name: body bag box diff --git a/Resources/Prototypes/Catalog/Fills/Crates/cargo.yml b/Resources/Prototypes/Catalog/Fills/Crates/cargo.yml new file mode 100644 index 00000000000..a5dc8e53c65 --- /dev/null +++ b/Resources/Prototypes/Catalog/Fills/Crates/cargo.yml @@ -0,0 +1,7 @@ +- type: entity + id: CrateCargoLuxuryHardsuit + parent: CratePirate + components: + - type: StorageFill + contents: + - id: ClothingOuterHardsuitLuxury diff --git a/Resources/Prototypes/Catalog/Fills/Crates/chemistry.yml b/Resources/Prototypes/Catalog/Fills/Crates/chemistry.yml index 7310ffb35e3..26a21a55ba3 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/chemistry.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/chemistry.yml @@ -62,3 +62,12 @@ amount: 1 - id: JugSilver amount: 1 + +- type: entity + id: CratePlantBGone + parent: CrateGenericSteel + components: + - type: StorageFill + contents: + - id: JugPlantBGone + amount: 5 diff --git a/Resources/Prototypes/Catalog/Fills/Crates/engines.yml b/Resources/Prototypes/Catalog/Fills/Crates/engines.yml index d010bf457c0..265fa6ab149 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/engines.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/engines.yml @@ -42,7 +42,7 @@ components: - type: StorageFill contents: - - id: RadiationCollector + - id: RadiationCollectorFullTank - type: entity id: CrateEngineeringSingularityContainment diff --git a/Resources/Prototypes/Catalog/Fills/Crates/fun.yml b/Resources/Prototypes/Catalog/Fills/Crates/fun.yml index f363f930a49..546c764c06b 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/fun.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/fun.yml @@ -23,6 +23,7 @@ - id: PlushieDiona - id: PlushieXeno - id: PlushieHampter + - id: PlushieMoth - type: entity id: CrateFunInstrumentsVariety @@ -203,8 +204,9 @@ - type: StorageFill contents: - id: WeaponWaterBlaster + amount: 2 - id: WeaponWaterPistol - amount: 5 + amount: 4 - type: entity id: CrateFunSyndicateSegway @@ -289,4 +291,4 @@ amount: 10 - id: MysteryFigureBox amount: 15 - prob: 0.05 \ No newline at end of file + prob: 0.05 diff --git a/Resources/Prototypes/Catalog/Fills/Crates/materials.yml b/Resources/Prototypes/Catalog/Fills/Crates/materials.yml index f5c493473a4..fd49ec339c1 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/materials.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/materials.yml @@ -54,7 +54,7 @@ - type: entity id: CrateMaterialPlasma - parent: CrateGenericSteel + parent: CratePlasma components: - type: StorageFill contents: diff --git a/Resources/Prototypes/Catalog/Fills/Crates/medical.yml b/Resources/Prototypes/Catalog/Fills/Crates/medical.yml index 277ee0189c9..22b3b38b31d 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/medical.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/medical.yml @@ -63,8 +63,7 @@ components: - type: StorageFill contents: - - id: MedkitBurnFilled - amount: 4 + - id: MedkitBurnFilled - type: entity id: CrateEmergencyToxinKit @@ -72,8 +71,7 @@ components: - type: StorageFill contents: - - id: MedkitToxinFilled - amount: 4 + - id: MedkitToxinFilled - type: entity id: CrateEmergencyO2Kit @@ -81,8 +79,7 @@ components: - type: StorageFill contents: - - id: MedkitOxygenFilled - amount: 4 + - id: MedkitOxygenFilled - type: entity id: CrateEmergencyBruteKit @@ -90,8 +87,7 @@ components: - type: StorageFill contents: - - id: MedkitBruteFilled - amount: 4 + - id: MedkitBruteFilled - type: entity id: CrateEmergencyAdvancedKit @@ -99,8 +95,7 @@ components: - type: StorageFill contents: - - id: MedkitAdvancedFilled - amount: 4 + - id: MedkitAdvancedFilled - type: entity id: CrateEmergencyRadiationKit @@ -108,8 +103,7 @@ components: - type: StorageFill contents: - - id: MedkitRadiationFilled - amount: 4 + - id: MedkitRadiationFilled - type: entity id: CrateBodyBags diff --git a/Resources/Prototypes/Catalog/Fills/Items/belt.yml b/Resources/Prototypes/Catalog/Fills/Items/belt.yml index 0e58bbb166d..1886b961c8f 100644 --- a/Resources/Prototypes/Catalog/Fills/Items/belt.yml +++ b/Resources/Prototypes/Catalog/Fills/Items/belt.yml @@ -159,3 +159,14 @@ - id: WeaponWandFireball - id: WeaponWandDeath - id: WeaponWandPolymorphDoor + +- type: entity + id: ClothingBeltHolsterFilled + parent: ClothingBeltHolster + suffix: Filled + components: + - type: StorageFill + contents: + - id: WeaponRevolverInspector + - id: SpeedLoaderMagnum + - id: SpeedLoaderMagnumRubber \ No newline at end of file diff --git a/Resources/Prototypes/Catalog/Fills/Items/firstaidkits.yml b/Resources/Prototypes/Catalog/Fills/Items/firstaidkits.yml index 5aa3ec2b9b6..36e32bcd2b9 100644 --- a/Resources/Prototypes/Catalog/Fills/Items/firstaidkits.yml +++ b/Resources/Prototypes/Catalog/Fills/Items/firstaidkits.yml @@ -37,7 +37,7 @@ - type: StorageFill contents: - id: MedicatedSuture - amount: 2 + - id: Brutepack - id: Gauze - id: Bloodpack - id: SyringeTranexamicAcid diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/cargo.yml b/Resources/Prototypes/Catalog/Fills/Lockers/cargo.yml index 3c37d416d83..293e746112a 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/cargo.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/cargo.yml @@ -14,6 +14,16 @@ # - id: ClothingEyesGlassesMeson - id: ClothingBeltUtilityFilled - id: SurvivalKnife + - id: HandheldGPSBasic + - id: RadioHandheld + - id: OreBag + prob: 0.5 + - id: Flare + prob: 0.3 + - id: Flare + prob: 0.3 + - id: Flare + prob: 0.3 - type: entity id: LockerSalvageSpecialistFilled @@ -26,3 +36,13 @@ # - id: ClothingEyesGlassesMeson - id: ClothingBeltUtilityFilled - id: SurvivalKnife + - id: HandheldGPSBasic + - id: RadioHandheld + - id: OreBag + prob: 0.5 + - id: Flare + prob: 0.3 + - id: Flare + prob: 0.3 + - id: Flare + prob: 0.3 diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml index 1973577217a..6a7e3436bc1 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml @@ -107,7 +107,7 @@ - id: BoxHeadset - id: IDComputerCircuitboard - id: WeaponDisabler - - id: ClothingShoesColorBlack + - id: ClothingOuterWinterHoP - id: CigarGoldCase prob: 0.25 # Fuck the HoP they don't deserve fucking cigars. @@ -136,6 +136,8 @@ contents: - id: ClothingOuterHardsuitEngineeringWhite - id: ClothingMaskBreath + - id: ClothingUniformJumpsuitChiefEngineerTurtle + - id: ClothingUniformJumpskirtChiefEngineerTurtle - id: OxygenTankFilled - id: NitrogenTankFilled - id: ClothingNeckCloakCe @@ -165,6 +167,8 @@ - id: ClothingBeltChiefEngineerFilled - id: ClothingHeadHatBeretEngineering - id: ClothingHandsGlovesColorYellow + - id: ClothingUniformJumpsuitChiefEngineerTurtle + - id: ClothingUniformJumpskirtChiefEngineerTurtle - id: CigarCase prob: 0.15 # - id: DoorRemoteEngineering @@ -190,8 +194,6 @@ - id: ClothingMaskSterile - id: ClothingHeadHatBeretCmo - id: ClothingOuterHardsuitMedical - - id: DiagnoserMachineCircuitboard - - id: VaccinatorMachineCircuitboard - id: Hypospray - id: HandheldCrewMonitor # - id: DoorRemoteMedical @@ -265,10 +267,11 @@ prob: 0.1 # - id: DoorRemoteResearch - id: ClothingHeadHatBeretRND + - id: ClothingHandsGlovesColorPurple + - id: ClothingBeltUtilityFilled - id: RubberStampRd - id: ClothingHeadsetAltScience - id: BoxEncryptionKeyScience - - id: BoxEncryptionKeyRobo - type: entity id: LockerResearchDirectorFilled @@ -285,10 +288,11 @@ # - id: HandTeleporter # - id: DoorRemoteResearch - id: ClothingHeadHatBeretRND + - id: ClothingHandsGlovesColorPurple + - id: ClothingBeltUtilityFilled - id: RubberStampRd - id: ClothingHeadsetAltScience - id: BoxEncryptionKeyScience - - id: BoxEncryptionKeyRobo - type: entity id: LockerHeadOfSecurityFilledHardsuit diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/medical.yml b/Resources/Prototypes/Catalog/Fills/Lockers/medical.yml index 3d7c371d286..705b0112196 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/medical.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/medical.yml @@ -5,16 +5,16 @@ components: - type: StorageFill contents: - - id: BoxPillCanister - id: BoxSyringe - id: EpinephrineChemistryBottle - amount: 3 + amount: 1 - id: Brutepack amount: 2 - id: Ointment amount: 2 - id: Bloodpack amount: 2 + - id: Gauze - type: entity id: LockerWallMedicalFilled @@ -24,16 +24,16 @@ components: - type: StorageFill contents: - - id: BoxPillCanister - id: BoxSyringe - id: EpinephrineChemistryBottle - amount: 3 + amount: 1 - id: Brutepack amount: 2 - id: Ointment amount: 2 - id: Bloodpack amount: 2 + - id: Gauze - type: entity @@ -67,8 +67,6 @@ - id: UniformScrubsColorPurple prob: 0.05 orGroup: Surgshrubs - - id: NitrousOxideTankFilled - prob: 0.3 - id: ClothingMaskSterile - type: entity @@ -103,8 +101,6 @@ - id: UniformScrubsColorPurple prob: 0.05 orGroup: Surgshrubs - - id: NitrousOxideTankFilled - prob: 0.3 - id: ClothingMaskSterile - type: entity @@ -116,10 +112,17 @@ contents: - id: BoxSyringe - id: BoxBeaker + - id: BoxBeaker + prob: 0.3 - id: BoxPillCanister - id: BoxBottle - amount: 2 - + - id: ChemBag + - id: ClothingHandsGlovesLatex + - id: ClothingHeadsetMedical + - id: ClothingMaskSterile + - id: HandLabeler + prob: 0.5 + - type: entity id: LockerParamedicFilled suffix: Filled @@ -134,4 +137,8 @@ - id: ClothingUniformJumpsuitParamedic - id: ClothingUniformJumpskirtParamedic - id: ClothingEyesHudMedical - \ No newline at end of file + - id: ClothingHandsGlovesLatex + - id: ClothingHeadsetMedical + - id: ClothingMaskSterile + - id: MedkitFilled + prob: 0.3 diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml index 51bd8fdad2a..160f0b34df5 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml @@ -124,9 +124,7 @@ - id: FlashlightSeclite - id: ForensicScanner - id: BoxForensicPad - - id: WeaponRevolverInspector - id: DrinkDetFlask - - id: SpeedLoaderMagnum - id: ClothingHandsGlovesForensic - type: entity diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/service.yml b/Resources/Prototypes/Catalog/Fills/Lockers/service.yml index 245532d6672..e86c09de2ae 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/service.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/service.yml @@ -18,7 +18,7 @@ - id: BoxBeanbag amount: 2 - id: RagItem - amound: 2 + amount: 2 #- type: entity # id: LockerFormalFilled @@ -93,24 +93,17 @@ - type: StorageFill contents: - id: ClothingHandsGlovesLeather - amount: 2 - id: ClothingOuterApronBotanist - amount: 2 - id: ClothingHeadBandBotany - amount: 2 - id: HydroponicsToolClippers + - id: HydroponicsToolSpade + - id: HydroponicsToolMiniHoe + - id: RobustHarvestChemistryBottle + prob: 0.3 - id: ClothingBeltPlant - id: PlantBag ##Some maps don't have nutrivend - id: BoxMouthSwab - id: HandLabeler - - id: TowercapSeeds - - id: BananaSeeds - prob: 0.6 - - id: EggySeeds - prob: 0.5 - - id: AppleSeeds - prob: 0.8 - - id: TomatoSeeds - id: ClothingUniformOveralls - id: ClothingHeadHatTrucker prob: 0.1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/bardrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/bardrobe.yml index 00b35b92c20..1e42faff3e4 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/bardrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/bardrobe.yml @@ -5,6 +5,7 @@ ClothingHeadHatTophat: 2 ClothingEyesHudBeer: 2 ClothingHeadsetService: 2 + ClothingOuterApronBar: 2 ClothingOuterWinterBar: 2 ClothingUniformJumpsuitBartender: 2 ClothingUniformJumpskirtBartender: 2 @@ -14,3 +15,4 @@ ClothingOuterVest: 2 ClothingBeltBandolier: 2 ClothingEyesGlassesSunglasses: 2 + diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/dinnerware.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/dinnerware.yml index 0ef9f7a7946..ccf702b210e 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/dinnerware.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/dinnerware.yml @@ -3,6 +3,8 @@ startingInventory: ButchCleaver: 1 KitchenKnife: 5 + Spoon: 4 + Fork: 4 FoodBowlBig: 10 FoodPlate: 10 FoodPlateSmall: 10 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/discount.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/discount.yml index 16601ddb4f7..ddf79432175 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/discount.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/discount.yml @@ -3,7 +3,7 @@ startingInventory: FoodSnackCheesie: 3 FoodSnackChips: 3 - FoodSnackBoritos: 2 - FoodSnackPopcorn: 1 - FoodSnackEnergy: 2 + FoodSnackBoritos: 3 + FoodSnackPopcorn: 3 + FoodSnackEnergy: 3 CigPackMixed: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml index af6378f6d2e..024d307bfb7 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml @@ -13,3 +13,5 @@ HandheldGPSBasic: 14 Flare: 20 FlashlightLantern: 15 + FultonBeacon: 6 + Fulton: 12 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml index ccc4c0c4257..d03f9bf322e 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml @@ -10,6 +10,7 @@ ClothingHeadHatSecsoft: 3 ClothingHeadBandRed: 3 ClothingHandsGlovesColorBlack: 3 + ClothingHandsGlovesFingerless: 3 ClothingUniformJumpskirtSec: 3 ClothingUniformJumpsuitSecGrey: 3 ClothingUniformJumpskirtSecGrey: 3 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/snack.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/snack.yml index 184611bec95..a09b23e86c9 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/snack.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/snack.yml @@ -3,7 +3,9 @@ startingInventory: FoodSnackRaisins: 3 FoodSnackChocolate: 3 - FoodSnackPopcorn: 3 + FoodSnackCnDs: 3 + FoodSnackPistachios: 3 + FoodSnackSus: 3 + FoodSnackSemki: 3 + emaggedInventory: FoodSnackSyndi: 3 -# DrinkRamen: 3 # How is this even in here -# DrinkHellRamen: 2 # How is this even in here diff --git a/Resources/Prototypes/Catalog/catalog.yml b/Resources/Prototypes/Catalog/catalog.yml index 9b09de8a57f..49cdef2a40f 100644 --- a/Resources/Prototypes/Catalog/catalog.yml +++ b/Resources/Prototypes/Catalog/catalog.yml @@ -2,9 +2,9 @@ id: DebugListing name: debug name description: debug desc - categories: + categories: - Debug - cost: + cost: DebugDollar: 10 Telecrystal: 10 @@ -12,33 +12,33 @@ id: DebugListing3 name: debug name 3 description: debug desc 3 - categories: + categories: - Debug - cost: + cost: DebugDollar: 10 - type: listing id: DebugListing5 name: debug name 5 description: debug desc 5 - categories: + categories: - Debug - type: listing id: DebugListing4 name: debug name 4 description: debug desc 4 - productAction: Scream - categories: + productAction: ActionScream + categories: - Debug - cost: + cost: DebugDollar: 1 - type: listing id: DebugListing2 name: debug name 2 description: debug desc 2 - categories: + categories: - Debug2 - cost: - DebugDollar: 10 \ No newline at end of file + cost: + DebugDollar: 10 diff --git a/Resources/Prototypes/Catalog/revenant_catalog.yml b/Resources/Prototypes/Catalog/revenant_catalog.yml index 55fe2393489..84f45d16073 100644 --- a/Resources/Prototypes/Catalog/revenant_catalog.yml +++ b/Resources/Prototypes/Catalog/revenant_catalog.yml @@ -2,7 +2,7 @@ id: RevenantDefile name: Defile description: Defiles the surrounding area, ripping up floors, damaging windows, opening containers, and throwing items. Using it leaves you vulnerable to attacks for a short period of time. - productAction: RevenantDefile + productAction: ActionRevenantDefile cost: StolenEssence: 10 categories: @@ -15,7 +15,7 @@ id: RevenantOverloadLights name: Overload Lights description: Overloads all nearby lights, causing lights to pulse and sending out dangerous lightning. Using it leaves you vulnerable to attacks for a long period of time. - productAction: RevenantOverloadLights + productAction: ActionRevenantOverloadLights cost: StolenEssence: 25 categories: @@ -28,7 +28,7 @@ # id: RevenantBlight # name: Blight # description: Infects all nearby organisms with an infectious disease that causes toxic buildup and tiredness. Using it leaves you vulnerable to attacks for a medium period of time. -# productAction: RevenantBlight +# productAction: ActionRevenantBlight # cost: # StolenEssence: 75 # categories: @@ -41,7 +41,7 @@ id: RevenantMalfunction name: Malfunction description: Makes nearby electronics stop working properly. Using it leaves you vulnerable to attacks for a long period of time. - productAction: RevenantMalfunction + productAction: ActionRevenantMalfunction cost: StolenEssence: 125 categories: diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index ddf2e37a647..022e22781c3 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -821,7 +821,7 @@ description: uplink-carp-dehydrated-desc productEntity: DehydratedSpaceCarp cost: - Telecrystal: 3 + Telecrystal: 2 categories: - UplinkTools conditions: @@ -912,7 +912,8 @@ id: uplinkBananaPeelExplosive name: uplink-banana-peel-explosive-name description: uplink-banana-peel-explosive-desc - productEntity: TrashBananaPeelExplosive + icon: { sprite: Objects/Specific/Hydroponics/banana.rsi, state: peel } + productEntity: TrashBananaPeelExplosiveUnarmed cost: Telecrystal: 2 categories: @@ -955,19 +956,18 @@ - Mime - type: listing - id: UplinkChimpAmmo - name: uplink-chimp-ammo-name - description: uplink-chimp-ammo-desc - productEntity: BoxMagazineChimpOmega + id: UplinkChimpUpgradeKit + name: uplink-chimp-upgrade-kit-name + description: uplink-chimp-upgrade-kit-desc + productEntity: WeaponPistolCHIMPUpgradeKit cost: Telecrystal: 4 categories: - UplinkJob conditions: - - !type:BuyerJobCondition + - !type:BuyerDepartmentCondition whitelist: - - Scientist - - SeniorResearcher + - Science - type: listing id: uplinkProximityMine @@ -998,11 +998,12 @@ categories: - UplinkJob conditions: - - !type:BuyerJobCondition + - !type:BuyerJobCondition # We can't use BuyerDepartmentCondition here since Zookeeper and Chef can also get this whitelist: - Zookeeper - Scientist - SeniorResearcher + - ResearchDirector - Chef # Armor @@ -1189,7 +1190,7 @@ description: uplink-combat-medipen-desc productEntity: CombatMedipen cost: - Telecrystal: 8 + Telecrystal: 4 categories: - UplinkMisc @@ -1311,6 +1312,16 @@ categories: - UplinkPointless +- type: listing + id: UplinkCarpSuitBundle + name: uplink-carp-suit-bundle-name + description: uplink-carp-suit-bundle-desc + productEntity: ClothingBackpackDuffelSyndicateCarpSuit + cost: + Telecrystal: 4 + categories: + - UplinkPointless + - type: listing id: UplinkOperativeSuit name: uplink-operative-suit-name diff --git a/Resources/Prototypes/Damage/modifier_sets.yml b/Resources/Prototypes/Damage/modifier_sets.yml index 47fc03fb335..ca130f91da2 100644 --- a/Resources/Prototypes/Damage/modifier_sets.yml +++ b/Resources/Prototypes/Damage/modifier_sets.yml @@ -138,12 +138,6 @@ Heat: 1.5 Shock: 1.2 -- type: damageModifierSet - id: Arachnid # Exo-skeleton, should have simillarities to skeleton resistances. - coefficients: - Blunt: 1.1 - Heat: 1.5 - - type: damageModifierSet id: Moth # Slightly worse at everything but cold coefficients: diff --git a/Resources/Prototypes/Datasets/Names/skeleton_first.yml b/Resources/Prototypes/Datasets/Names/skeleton_first.yml index 67c71ab69b6..396a2637d71 100644 --- a/Resources/Prototypes/Datasets/Names/skeleton_first.yml +++ b/Resources/Prototypes/Datasets/Names/skeleton_first.yml @@ -12,13 +12,19 @@ - Radius - Ulna - Carpals - - Phanages + - Phalanges - Pelvis - Femur - Tibia - Fibula - Marrow - - Tarsalls + - Tarsals - Patella - Tailbone - - Boner \ No newline at end of file + - Boner + - Rib + - Hyoid + - Coccyx + - Tarsus + - Lacrimal + - Bone diff --git a/Resources/Prototypes/Decals/concrete_trim.yml b/Resources/Prototypes/Decals/concrete_trim.yml new file mode 100644 index 00000000000..43d53c8f825 --- /dev/null +++ b/Resources/Prototypes/Decals/concrete_trim.yml @@ -0,0 +1,356 @@ +- type: decal + id: ConcreteTrimBox + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: concrete_box + +- type: decal + id: ConcreteTrimCornerNe + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: concrete_corner_ne + +- type: decal + id: ConcreteTrimCornerSe + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: concrete_corner_se + +- type: decal + id: ConcreteTrimCornerNw + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: concrete_corner_nw + +- type: decal + id: ConcreteTrimCornerSw + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: concrete_corner_sw + +- type: decal + id: ConcreteTrimInnerNe + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: concrete_inner_ne + +- type: decal + id: ConcreteTrimInnerSe + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: concrete_inner_se + +- type: decal + id: ConcreteTrimInnerNw + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: concrete_inner_nw + +- type: decal + id: ConcreteTrimInnerSw + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: concrete_inner_sw + +- type: decal + id: ConcreteTrimEndN + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: concrete_end_n + +- type: decal + id: ConcreteTrimEndE + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: concrete_end_e + +- type: decal + id: ConcreteTrimEndS + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: concrete_end_s + +- type: decal + id: ConcreteTrimEndW + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: concrete_end_w + +- type: decal + id: ConcreteTrimLineN + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: concrete_line_n + +- type: decal + id: ConcreteTrimLineE + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: concrete_line_e + +- type: decal + id: ConcreteTrimLineS + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: concrete_line_s + +- type: decal + id: ConcreteTrimLineW + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: concrete_line_w + +- type: decal + id: GrayConcreteTrimBox + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: grayconcrete_box + +- type: decal + id: GrayConcreteTrimCornerNe + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: grayconcrete_corner_ne + +- type: decal + id: GrayConcreteTrimCornerSe + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: grayconcrete_corner_se + +- type: decal + id: GrayConcreteTrimCornerNw + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: grayconcrete_corner_nw + +- type: decal + id: GrayConcreteTrimCornerSw + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: grayconcrete_corner_sw + +- type: decal + id: GrayConcreteTrimInnerNe + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: grayconcrete_inner_ne + +- type: decal + id: GrayConcreteTrimInnerSe + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: grayconcrete_inner_se + +- type: decal + id: GrayConcreteTrimInnerNw + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: grayconcrete_inner_nw + +- type: decal + id: GrayConcreteTrimInnerSw + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: grayconcrete_inner_sw + +- type: decal + id: GrayConcreteTrimEndN + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: grayconcrete_end_n + +- type: decal + id: GrayConcreteTrimEndE + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: grayconcrete_end_e + +- type: decal + id: GrayConcreteTrimEndS + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: grayconcrete_end_s + +- type: decal + id: GrayConcreteTrimEndW + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: grayconcrete_end_w + +- type: decal + id: GrayConcreteTrimLineN + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: grayconcrete_line_n + +- type: decal + id: GrayConcreteTrimLineE + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: grayconcrete_line_e + +- type: decal + id: GrayConcreteTrimLineS + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: grayconcrete_line_s + +- type: decal + id: GrayConcreteTrimLineW + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: grayconcrete_line_w + +- type: decal + id: OldConcreteTrimBox + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: oldconcrete_box + +- type: decal + id: OldConcreteTrimCornerNe + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: oldconcrete_corner_ne + +- type: decal + id: OldConcreteTrimCornerSe + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: oldconcrete_corner_se + +- type: decal + id: OldConcreteTrimCornerNw + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: oldconcrete_corner_nw + +- type: decal + id: OldConcreteTrimCornerSw + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: oldconcrete_corner_sw + +- type: decal + id: OldConcreteTrimInnerNe + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: oldconcrete_inner_ne + +- type: decal + id: OldConcreteTrimInnerSe + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: oldconcrete_inner_se + +- type: decal + id: OldConcreteTrimInnerNw + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: oldconcrete_inner_nw + +- type: decal + id: OldConcreteTrimInnerSw + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: oldconcrete_inner_sw + +- type: decal + id: OldConcreteTrimEndN + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: oldconcrete_end_n + +- type: decal + id: OldConcreteTrimEndE + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: oldconcrete_end_e + +- type: decal + id: OldConcreteTrimEndS + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: oldconcrete_end_s + +- type: decal + id: OldConcreteTrimEndW + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: oldconcrete_end_w + +- type: decal + id: OldConcreteTrimLineN + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: oldconcrete_line_n + +- type: decal + id: OldConcreteTrimLineE + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: oldconcrete_line_e + +- type: decal + id: OldConcreteTrimLineS + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: oldconcrete_line_s + +- type: decal + id: OldConcreteTrimLineW + tags: ["planet", "markings"] + sprite: + sprite: Decals/concretetrim.rsi + state: oldconcrete_line_w diff --git a/Resources/Prototypes/DeviceLinking/source_ports.yml b/Resources/Prototypes/DeviceLinking/source_ports.yml index 45ee812f2e4..73e96978a73 100644 --- a/Resources/Prototypes/DeviceLinking/source_ports.yml +++ b/Resources/Prototypes/DeviceLinking/source_ports.yml @@ -96,3 +96,21 @@ name: signal-port-name-logic-output-low description: signal-port-description-logic-output-low defaultLinks: [ Off, Close ] + +- type: sourcePort + id: AirDanger + name: signal-port-name-air-danger + description: signal-port-description-air-danger + defaultLinks: [ DoorBolt ] + +- type: sourcePort + id: AirWarning + name: signal-port-name-air-warning + description: signal-port-description-air-warning + defaultLinks: [ DoorBolt ] + +- type: sourcePort + id: AirNormal + name: signal-port-name-air-normal + description: signal-port-description-air-normal + defaultLinks: [ DoorBolt ] diff --git a/Resources/Prototypes/Entities/Clothing/Back/duffel.yml b/Resources/Prototypes/Entities/Clothing/Back/duffel.yml index 0892dd727e6..b9cc9ca2663 100644 --- a/Resources/Prototypes/Entities/Clothing/Back/duffel.yml +++ b/Resources/Prototypes/Entities/Clothing/Back/duffel.yml @@ -1,34 +1,16 @@ - type: entity - parent: Clothing + parent: ClothingBackpack id: ClothingBackpackDuffel name: duffel bag description: A large duffel bag for holding extra things. components: - type: Sprite sprite: Clothing/Back/Duffels/duffel.rsi - state: icon - - type: Item - size: 9999 - - type: Clothing - quickEquip: false - slots: - - back - type: Storage capacity: 120 - - type: ContainerContainer - containers: - storagebase: !type:Container - ents: [] - type: ClothingSpeedModifier walkModifier: 1 sprintModifier: 0.9 - - type: UserInterface - interfaces: - - key: enum.StorageUiKey.Key - type: StorageBoundUserInterface - # to prevent bag open/honk spam - - type: UseDelay - delay: 0.5 - type: entity parent: ClothingBackpackDuffel diff --git a/Resources/Prototypes/Entities/Clothing/Back/satchel.yml b/Resources/Prototypes/Entities/Clothing/Back/satchel.yml index bb606bc3bc6..e80b0d6f8b2 100644 --- a/Resources/Prototypes/Entities/Clothing/Back/satchel.yml +++ b/Resources/Prototypes/Entities/Clothing/Back/satchel.yml @@ -1,31 +1,11 @@ - type: entity - parent: Clothing + parent: ClothingBackpack id: ClothingBackpackSatchel name: satchel description: A trendy looking satchel. components: - type: Sprite sprite: Clothing/Back/Satchels/satchel.rsi - state: icon - - type: Item - size: 9999 - - type: Clothing - quickEquip: false - slots: - - back - - type: Storage - capacity: 100 - - type: ContainerContainer - containers: - storagebase: !type:Container - ents: [] - - type: UserInterface - interfaces: - - key: enum.StorageUiKey.Key - type: StorageBoundUserInterface - # to prevent bag open/honk spam - - type: UseDelay - delay: 0.5 - type: entity parent: ClothingBackpackSatchel diff --git a/Resources/Prototypes/Entities/Clothing/Belt/base_clothingbelt.yml b/Resources/Prototypes/Entities/Clothing/Belt/base_clothingbelt.yml index 0c400828d81..b37d3fd9745 100644 --- a/Resources/Prototypes/Entities/Clothing/Belt/base_clothingbelt.yml +++ b/Resources/Prototypes/Entities/Clothing/Belt/base_clothingbelt.yml @@ -23,8 +23,6 @@ components: - type: Storage capacity: 40 - equipSound: - path: /Audio/Items/belt_equip.ogg - type: ContainerContainer containers: storagebase: !type:Container diff --git a/Resources/Prototypes/Entities/Clothing/Ears/headsets.yml b/Resources/Prototypes/Entities/Clothing/Ears/headsets.yml index a3fc0711f7b..2c36ef9190f 100644 --- a/Resources/Prototypes/Entities/Clothing/Ears/headsets.yml +++ b/Resources/Prototypes/Entities/Clothing/Ears/headsets.yml @@ -21,6 +21,9 @@ slots: - ears sprite: Clothing/Ears/Headsets/base.rsi + - type: GuideHelp + guides: + - Radio - type: entity parent: ClothingHeadset diff --git a/Resources/Prototypes/Entities/Clothing/Ears/headsets_alt.yml b/Resources/Prototypes/Entities/Clothing/Ears/headsets_alt.yml index 12459d9bdae..26a7266abba 100644 --- a/Resources/Prototypes/Entities/Clothing/Ears/headsets_alt.yml +++ b/Resources/Prototypes/Entities/Clothing/Ears/headsets_alt.yml @@ -41,6 +41,16 @@ - type: Clothing sprite: Clothing/Ears/Headsets/centcom.rsi +- type: entity + parent: ClothingHeadsetAltCentCom + id: ClothingHeadsetAltCentComFake + suffix: Fake + components: + - type: ContainerFill + containers: + key_slots: + - EncryptionKeyCommon + - type: entity parent: ClothingHeadsetAlt id: ClothingHeadsetAltCommand diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml index 40fe4a09d10..bca32d99670 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml @@ -130,6 +130,9 @@ tags: - HamsterWearable - WhitelistChameleon + - type: GuideHelp + guides: + - Security - type: entity parent: ClothingEyesBase @@ -173,3 +176,15 @@ - type: Clothing sprite: Clothing/Eyes/Glasses/science.rsi - type: SolutionScanner + +- type: entity + parent: ClothingEyesBase + id: ClothingEyesVisorNinja + name: ninja visor + description: An advanced visor protecting a ninja's eyes from flashing lights. + components: + - type: Sprite + sprite: Clothing/Eyes/Glasses/ninjavisor.rsi + - type: Clothing + sprite: Clothing/Eyes/Glasses/ninjavisor.rsi + - type: FlashImmunity diff --git a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml index 364fd175840..8b76554f929 100644 --- a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml +++ b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml @@ -191,8 +191,18 @@ components: - type: Sprite sprite: Clothing/Hands/Gloves/spaceninja.rsi + layers: + - state: icon + map: [ "enum.ToggleVisuals.Layer" ] - type: Clothing sprite: Clothing/Hands/Gloves/spaceninja.rsi + - type: Appearance + - type: GenericVisualizer + visuals: + enum.ToggleVisuals.Toggled: + enum.ToggleVisuals.Layer: + True: {state: icon-green} + False: {state: icon} - type: GloveHeatResistance heatResistance: 1400 - type: Insulated @@ -202,6 +212,9 @@ - type: Thieving stripTimeReduction: 1 stealthy: true + - type: NinjaGloves + # not actually electrified, just used to make stun ability work + - type: Electrified - type: entity parent: ClothingHandsBase @@ -322,6 +335,7 @@ components: - type: Unremoveable + - type: entity parent: ClothingHandsBase id: ClothingHandsGlovesNorthStar @@ -336,7 +350,7 @@ attackRate: 4 damage: types: - Blunt: 8 + Blunt: 7 soundHit: collection: Punch animation: WeaponArcFist @@ -349,6 +363,7 @@ key: enum.MeleeSpeechUiKey.Key closeOnHandDeselect: false rightClickOnly: true + - type: Actions - type: UserInterface interfaces: - key: enum.MeleeSpeechUiKey.Key @@ -367,3 +382,6 @@ - type: Clothing sprite: Clothing/Hands/Gloves/forensic.rsi - type: FingerprintMask + - type: GuideHelp + guides: + - DNA diff --git a/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml b/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml index 2bc1d5ddca0..c8e5a44e0c0 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml @@ -227,3 +227,25 @@ - type: BatterySelfRecharger autoRecharge: true autoRechargeRate: 2 #recharge of 2 makes total drain 1w / s so max charge is 1:1 with time. Time to fully charge should be 5 minutes. Having recharge gives light an extended flicker period which gives you some warning to return to light area. + +- type: entity + abstract: true + id: ClothingHeadHatHoodWinterBase + name: base winter coat hood + description: A hood, made to keep your head warm. + noSpawn: true + components: + - type: Sprite + state: icon + - type: Clickable + - type: Clothing + equipSound: /Audio/Effects/rustle1.ogg + unequipSound: /Audio/Effects/rustle2.ogg + quickEquip: false + slots: [ HEAD ] + - type: TemperatureProtection + coefficient: 0.7 + - type: GroupExamine + - type: Tag + tags: + - HidesHair \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Clothing/Head/hardhats.yml b/Resources/Prototypes/Entities/Clothing/Head/hardhats.yml index 8dc0e1c591a..c959b4f90b3 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hardhats.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hardhats.yml @@ -16,7 +16,7 @@ enabled: false mask: /Textures/Effects/LightMasks/cone.png autoRot: true - radius: 3 + radius: 7 netsync: false - type: Appearance - type: HandheldLight diff --git a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml index eed28d854fd..6029d25869a 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml @@ -325,6 +325,25 @@ Piercing: 0.9 Heat: 0.9 +#Luxury Mining Hardsuit +- type: entity + parent: ClothingHeadHardsuitWithLightBase + id: ClothingHeadHelmetHardsuitLuxury #DO NOT MAP - https://github.com/space-wizards/space-station-14/pull/19738#issuecomment-1703486738 + noSpawn: true + name: luxury mining hardsuit helmet + description: A refurbished mining hardsuit helmet, fitted with satin cushioning and an extra (non-functioning) antenna, because you're that extra. + components: + - type: Sprite + sprite: Clothing/Head/Hardsuits/luxury.rsi + - type: Clothing + sprite: Clothing/Head/Hardsuits/luxury.rsi + - type: PressureProtection + highPressureMultiplier: 0.525 + lowPressureMultiplier: 1000 + - type: PointLight + radius: 7 + energy: 3 + #ANTAG HARDSUITS #Blood-red Hardsuit - type: entity diff --git a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml index 97b8742b714..ddebd4b0fde 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml @@ -156,7 +156,7 @@ #Space Ninja Helmet - type: entity - parent: ClothingHeadBase + parent: ClothingHeadEVAHelmetBase id: ClothingHeadHelmetSpaceNinja name: space ninja helmet description: What may appear to be a simple black garment is in fact a highly sophisticated nano-weave helmet. Standard issue ninja gear. @@ -165,11 +165,11 @@ sprite: Clothing/Head/Helmets/spaceninja.rsi - type: Clothing sprite: Clothing/Head/Helmets/spaceninja.rsi - - type: IngestionBlocker - type: Tag tags: - HidesHair - WhitelistChameleon + - type: IngestionBlocker - type: IdentityBlocker #Templar Helmet diff --git a/Resources/Prototypes/Entities/Clothing/Head/hoods.yml b/Resources/Prototypes/Entities/Clothing/Head/hoods.yml index 8eed3b9c551..38bfcc879dc 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hoods.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hoods.yml @@ -142,6 +142,36 @@ - type: Clothing sprite: Clothing/Head/Hoods/goliathcloak.rsi +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatHoodIan + noSpawn: true + name: ian hood + description: A hood to complete the 'Good boy' look. + components: + - type: Sprite + sprite: Clothing/Head/Hoods/iansuit.rsi + - type: Clothing + sprite: Clothing/Head/Hoods/iansuit.rsi + - type: Tag + tags: + - HidesHair + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatHoodCarp + noSpawn: true + name: carp hood + description: A gnarly hood adorned with plastic space carp teeth. + components: + - type: Sprite + sprite: Clothing/Head/Hoods/carpsuit.rsi + - type: Clothing + sprite: Clothing/Head/Hoods/carpsuit.rsi + - type: Tag + tags: + - HidesHair + - type: entity parent: ClothingHeadBase id: ClothingHeadHatHoodMoth @@ -157,3 +187,281 @@ tags: - HidesHair - WhitelistChameleon + +#Winter Coat Hoods +- type: entity + parent: ClothingHeadHatHoodWinterBase + id: ClothingHeadHatHoodWinterDefault + noSpawn: true + name: default winter coat hood + components: + - type: Sprite + sprite: Clothing/Head/Hoods/Coat/hooddefault.rsi + - type: Clothing + sprite: Clothing/Head/Hoods/Coat/hooddefault.rsi + +- type: entity + parent: ClothingHeadHatHoodWinterBase + id: ClothingHeadHatHoodWinterBartender + noSpawn: true + name: bartender winter coat hood + components: + - type: Sprite + sprite: Clothing/Head/Hoods/Coat/hoodbartender.rsi + - type: Clothing + sprite: Clothing/Head/Hoods/Coat/hoodbartender.rsi + +- type: entity + parent: ClothingHeadHatHoodWinterBase + id: ClothingHeadHatHoodWinterCaptain + noSpawn: true + name: captain's winter coat hood + description: An expensive hood, to keep the captain's head warm. + components: + - type: Sprite + sprite: Clothing/Head/Hoods/Coat/hoodcaptain.rsi + - type: Clothing + sprite: Clothing/Head/Hoods/Coat/hoodcaptain.rsi + +- type: entity + parent: ClothingHeadHatHoodWinterBase + id: ClothingHeadHatHoodWinterCargo + noSpawn: true + name: cargo winter coat hood + components: + - type: Sprite + sprite: Clothing/Head/Hoods/Coat/hoodcargo.rsi + - type: Clothing + sprite: Clothing/Head/Hoods/Coat/hoodcargo.rsi + +- type: entity + parent: ClothingHeadHatHoodWinterBase + id: ClothingHeadHatHoodWinterCE + noSpawn: true + name: chief engineer's winter coat hood + components: + - type: Sprite + sprite: Clothing/Head/Hoods/Coat/hoodce.rsi + - type: Clothing + sprite: Clothing/Head/Hoods/Coat/hoodce.rsi + +- type: entity + parent: ClothingHeadHatHoodWinterBase + id: ClothingHeadHatHoodWinterCentcom + noSpawn: true + name: Centcom winter coat hood + description: A hood for keeping the central comander's head warm. + components: + - type: Sprite + sprite: Clothing/Head/Hoods/Coat/hoodcentcom.rsi + - type: Clothing + sprite: Clothing/Head/Hoods/Coat/hoodcentcom.rsi + +- type: entity + parent: ClothingHeadHatHoodWinterBase + id: ClothingHeadHatHoodWinterChem + noSpawn: true + name: chemist winter coat hood + components: + - type: Sprite + sprite: Clothing/Head/Hoods/Coat/hoodchemist.rsi + - type: Clothing + sprite: Clothing/Head/Hoods/Coat/hoodchemist.rsi + +- type: entity + parent: ClothingHeadHatHoodWinterBase + id: ClothingHeadHatHoodWinterCMO + noSpawn: true + name: chief medical officer's winter coat hood + components: + - type: Sprite + sprite: Clothing/Head/Hoods/Coat/hoodcmo.rsi + - type: Clothing + sprite: Clothing/Head/Hoods/Coat/hoodcmo.rsi + +- type: entity + parent: ClothingHeadHatHoodWinterBase + id: ClothingHeadHatHoodWinterEngineer + noSpawn: true + name: engineer winter coat hood + components: + - type: Sprite + sprite: Clothing/Head/Hoods/Coat/hoodengi.rsi + - type: Clothing + sprite: Clothing/Head/Hoods/Coat/hoodengi.rsi + +- type: entity + parent: ClothingHeadHatHoodWinterBase + id: ClothingHeadHatHoodWinterHOP + noSpawn: true + name: head of personel's winter coat hood + components: + - type: Sprite + sprite: Clothing/Head/Hoods/Coat/hoodhop.rsi + - type: Clothing + sprite: Clothing/Head/Hoods/Coat/hoodhop.rsi + +- type: entity + parent: ClothingHeadHatHoodWinterBase + id: ClothingHeadHatHoodWinterHOS + noSpawn: true + name: head of security's winter coat hood + components: + - type: Sprite + sprite: Clothing/Head/Hoods/Coat/hoodhos.rsi + - type: Clothing + sprite: Clothing/Head/Hoods/Coat/hoodhos.rsi + +- type: entity + parent: ClothingHeadHatHoodWinterBase + id: ClothingHeadHatHoodWinterHydro + noSpawn: true + name: hydroponics coat hood + components: + - type: Sprite + sprite: Clothing/Head/Hoods/Coat/hoodhydro.rsi + - type: Clothing + sprite: Clothing/Head/Hoods/Coat/hoodhydro.rsi + +- type: entity + parent: ClothingHeadHatHoodWinterBase + id: ClothingHeadHatHoodWinterJani + noSpawn: true + name: janitor coat hood + components: + - type: Sprite + sprite: Clothing/Head/Hoods/Coat/hoodjani.rsi + - type: Clothing + sprite: Clothing/Head/Hoods/Coat/hoodjani.rsi + +- type: entity + parent: ClothingHeadHatHoodWinterBase + id: ClothingHeadHatHoodWinterMed + noSpawn: true + name: medic coat hood + components: + - type: Sprite + sprite: Clothing/Head/Hoods/Coat/hoodmed.rsi + - type: Clothing + sprite: Clothing/Head/Hoods/Coat/hoodmed.rsi + +- type: entity + parent: ClothingHeadHatHoodWinterBase + id: ClothingHeadHatHoodWinterMime + noSpawn: true + name: mime coat hood + components: + - type: Sprite + sprite: Clothing/Head/Hoods/Coat/hoodmime.rsi + - type: Clothing + sprite: Clothing/Head/Hoods/Coat/hoodmime.rsi + +- type: entity + parent: ClothingHeadHatHoodWinterBase + id: ClothingHeadHatHoodWinterMiner + noSpawn: true + name: miner coat hood + components: + - type: Sprite + sprite: Clothing/Head/Hoods/Coat/hoodminer.rsi + - type: Clothing + sprite: Clothing/Head/Hoods/Coat/hoodminer.rsi + +- type: entity + parent: ClothingHeadHatHoodWinterBase + id: ClothingHeadHatHoodWinterPara + noSpawn: true + name: paramedic coat hood + components: + - type: Sprite + sprite: Clothing/Head/Hoods/Coat/hoodpara.rsi + - type: Clothing + sprite: Clothing/Head/Hoods/Coat/hoodpara.rsi + +- type: entity + parent: ClothingHeadHatHoodWinterBase + id: ClothingHeadHatHoodWinterQM + noSpawn: true + name: quartermaster's coat hood + components: + - type: Sprite + sprite: Clothing/Head/Hoods/Coat/hoodqm.rsi + - type: Clothing + sprite: Clothing/Head/Hoods/Coat/hoodqm.rsi + +- type: entity + parent: ClothingHeadHatHoodWinterBase + id: ClothingHeadHatHoodWinterRD + noSpawn: true + name: research director's coat hood + components: + - type: Sprite + sprite: Clothing/Head/Hoods/Coat/hoodrd.rsi + - type: Clothing + sprite: Clothing/Head/Hoods/Coat/hoodrd.rsi + +- type: entity + parent: ClothingHeadHatHoodWinterBase + id: ClothingHeadHatHoodWinterRobo + noSpawn: true + name: robotics coat hood + components: + - type: Sprite + sprite: Clothing/Head/Hoods/Coat/hoodrobo.rsi + - type: Clothing + sprite: Clothing/Head/Hoods/Coat/hoodrobo.rsi + +- type: entity + parent: ClothingHeadHatHoodWinterBase + id: ClothingHeadHatHoodWinterSci + noSpawn: true + name: scientist coat hood + components: + - type: Sprite + sprite: Clothing/Head/Hoods/Coat/hoodsci.rsi + - type: Clothing + sprite: Clothing/Head/Hoods/Coat/hoodsci.rsi + +- type: entity + parent: ClothingHeadHatHoodWinterBase + id: ClothingHeadHatHoodWinterSec + noSpawn: true + name: security coat hood + components: + - type: Sprite + sprite: Clothing/Head/Hoods/Coat/hoodsec.rsi + - type: Clothing + sprite: Clothing/Head/Hoods/Coat/hoodsec.rsi + +- type: entity + parent: ClothingHeadHatHoodWinterBase + id: ClothingHeadHatHoodWinterSyndie + noSpawn: true + name: syndicate coat hood + components: + - type: Sprite + sprite: Clothing/Head/Hoods/Coat/hoodsyndicate.rsi + - type: Clothing + sprite: Clothing/Head/Hoods/Coat/hoodsyndicate.rsi + +- type: entity + parent: ClothingHeadHatHoodWinterBase + id: ClothingHeadHatHoodWinterWarden + noSpawn: true + name: warden's coat hood + components: + - type: Sprite + sprite: Clothing/Head/Hoods/Coat/hoodsec.rsi + - type: Clothing + sprite: Clothing/Head/Hoods/Coat/hoodsec.rsi + +- type: entity + parent: ClothingHeadHatHoodWinterBase + id: ClothingHeadHatHoodWinterWeb + noSpawn: true + name: web coat hood + components: + - type: Sprite + sprite: Clothing/Head/Hoods/Coat/hoodweb.rsi + - type: Clothing + sprite: Clothing/Head/Hoods/Coat/hoodweb.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Masks/base_clothingmask.yml b/Resources/Prototypes/Entities/Clothing/Masks/base_clothingmask.yml index bf02642cb7f..b79d76aa170 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/base_clothingmask.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/base_clothingmask.yml @@ -14,9 +14,14 @@ id: ClothingMaskPullableBase components: - type: Mask - toggleAction: - name: action-name-mask - description: action-description-mask-toggle - icon: { sprite: Clothing/Mask/gas.rsi, state: icon } - iconOn: Interface/Default/blocked.png - event: !type:ToggleMaskEvent + +- type: entity + id: ActionToggleMask + name: Toggle Mask + description: Handy, but prevents insertion of pie into your pie hole. + noSpawn: true + components: + - type: InstantAction + icon: { sprite: Clothing/Mask/gas.rsi, state: icon } + iconOn: Interface/Default/blocked.png + event: !type:ToggleMaskEvent diff --git a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml index 61acf0d6e1f..1d2f1fb2ce8 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml @@ -491,3 +491,17 @@ - type: AddAccentClothing accent: ReplacementAccent replacement: italian + +- type: entity + parent: ClothingMaskBase + id: ClothingMaskNinja + name: ninja mask + description: A close-fitting nano-enhanced mask that acts both as an air filter and a post-modern fashion statement. + components: + - type: Sprite + sprite: Clothing/Mask/ninja.rsi + - type: Clothing + sprite: Clothing/Mask/ninja.rsi + - type: EyeProtection + - type: BreathMask + - type: IdentityBlocker diff --git a/Resources/Prototypes/Entities/Clothing/Neck/cloaks.yml b/Resources/Prototypes/Entities/Clothing/Neck/cloaks.yml index fd553a0abfc..370c29edad2 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/cloaks.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/cloaks.yml @@ -127,6 +127,7 @@ clothingPrototype: ClothingHeadHatHoodGoliathCloak requiredSlot: - neck + slot: head - type: ContainerContainer containers: toggleable-clothing: !type:ContainerSlot {} @@ -152,6 +153,7 @@ clothingPrototype: ClothingHeadHatHoodMoth requiredSlot: - neck + slot: head - type: ContainerContainer containers: toggleable-clothing: !type:ContainerSlot {} diff --git a/Resources/Prototypes/Entities/Clothing/Neck/misc.yml b/Resources/Prototypes/Entities/Clothing/Neck/misc.yml index daf167b3f79..f5dc5e110bc 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/misc.yml @@ -44,3 +44,14 @@ sprite: Clothing/Neck/Misc/lawyerbadge.rsi - type: TypingIndicatorClothing proto: lawyer + +- type: entity + id: ActionStethoscope + name: Listen with stethoscope + noSpawn: true + components: + - type: EntityTargetAction + icon: Clothing/Neck/Misc/stethoscope.rsi/icon.png + event: !type:StethoscopeActionEvent + checkCanInteract: false + priority: -1 diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml index 3223ae58dff..74213330f5e 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml @@ -95,7 +95,9 @@ Piercing: 0.9 Heat: 0.4 # this technically means it protects against fires pretty well? -heat is just for lasers and stuff, not atmos temperature - type: Reflect - reflectProb: 0.2 + reflectProb: 0.7 + reflects: + - Energy - type: entity parent: ClothingOuterBaseLarge diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml index 24cf9964ff0..6ae84079b93 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml @@ -68,6 +68,7 @@ Heat: 0.90 Radiation: 0.25 - type: ToggleableClothing + slot: head - type: ContainerContainer containers: toggleable-clothing: !type:ContainerSlot {} diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml index bf6c08ed795..cc66a56d879 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml @@ -424,6 +424,36 @@ - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitSecurityRed +#Luxury Mining Hardsuit +- type: entity + parent: ClothingOuterHardsuitBase + id: ClothingOuterHardsuitLuxury #DO NOT MAP - https://github.com/space-wizards/space-station-14/pull/19738#issuecomment-1703486738 + name: luxury mining hardsuit + description: A refurbished mining hardsuit, fashioned after the Quartermaster's colors. Graphene lining provides less protection, but is much easier to move. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Hardsuits/luxury.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Hardsuits/luxury.rsi + - type: PressureProtection + highPressureMultiplier: 0.5 + lowPressureMultiplier: 1000 + - type: ExplosionResistance + damageCoefficient: 0.5 + - type: Armor + modifiers: + coefficients: + Blunt: 0.9 + Slash: 0.9 + Piercing: 0.8 + Radiation: 0.5 + Caustic: 0.8 + - type: ClothingSpeedModifier + walkModifier: 0.85 + sprintModifier: 0.9 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetHardsuitLuxury + #ANTAG HARDSUITS #Blood-red Hardsuit - type: entity diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml index 3f45bd4e8e0..f343386b0b4 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml @@ -9,6 +9,18 @@ - type: Clothing sprite: Clothing/OuterClothing/Misc/apron.rsi +- type: entity + parent: ClothingOuterStorageBase + id: ClothingOuterApronBar + suffix: Bartender + name: apron + description: A darker apron designed for bartenders. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Misc/apronbar.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Misc/apronbar.rsi + - type: entity parent: ClothingOuterStorageBase id: ClothingOuterApronBotanist diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml index 69560a2e80a..df493b06607 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml @@ -50,6 +50,7 @@ coefficient: 0.5 - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetEVALarge + slot: head - type: ContainerContainer containers: toggleable-clothing: !type:ContainerSlot {} diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml index 652bc60d3cd..aee07bfdb42 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml @@ -93,7 +93,7 @@ - type: entity parent: ClothingOuterBase - id: ClothingOuterSuitSpaceninja + id: ClothingOuterSuitSpaceNinja name: space ninja suit description: This black technologically advanced, cybernetically-enhanced suit provides good protection and many abilities like invisibility or teleportation. components: @@ -101,6 +101,14 @@ sprite: Clothing/OuterClothing/Suits/spaceninja.rsi - type: Clothing sprite: Clothing/OuterClothing/Suits/spaceninja.rsi + - type: StealthClothing + visibility: 1.1 + toggleAction: ActionTogglePhaseCloak + - type: PressureProtection + highPressureMultiplier: 0.6 + lowPressureMultiplier: 1000 + - type: TemperatureProtection + coefficient: 0.01 - type: Armor modifiers: coefficients: @@ -108,6 +116,20 @@ Slash: 0.6 Piercing: 0.6 Heat: 0.6 + - type: NinjaSuit + - type: PowerCellSlot + cellSlotId: cell_slot + # throwing in a recharger would bypass glove charging mechanic + fitsInCharger: false + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + startingItem: PowerCellSmall + disableEject: true - type: entity parent: ClothingOuterBase @@ -141,3 +163,45 @@ sprite: Clothing/OuterClothing/Suits/monkey.rsi - type: Clothing sprite: Clothing/OuterClothing/Suits/monkey.rsi + - type: ContainerContainer + containers: + toggleable-clothing: !type:ContainerSlot {} + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterSuitIan + name: ian suit + description: Who's a good boy? + components: + - type: Sprite + sprite: Clothing/OuterClothing/Suits/iansuit.rsi + - type: Item + size: 30 + - type: Clothing + sprite: Clothing/OuterClothing/Suits/iansuit.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodIan + - type: ContainerContainer + containers: + toggleable-clothing: !type:ContainerSlot {} + - type: Construction + graph: ClothingOuterSuitIan + node: suit + +- type: entity + parent: ClothingOuterBase + id: ClothingOuterSuitCarp + name: carp suit + description: A special suit that makes you look just like a space carp, if your eyesight is bad. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Suits/carpsuit.rsi + - type: Item + size: 30 + - type: Clothing + sprite: Clothing/OuterClothing/Suits/carpsuit.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodCarp + - type: ContainerContainer + containers: + toggleable-clothing: !type:ContainerSlot {} diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml index 32d7015a8f1..bf3949739ed 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml @@ -33,6 +33,21 @@ - type: entity parent: ClothingOuterWinterCoat + id: ClothingOuterWinterCoatToggleable + name: winter coat with hood + noSpawn: True + components: + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterDefault + slot: head + - type: ContainerContainer + containers: + toggleable-clothing: !type:ContainerSlot {} + storagebase: !type:Container + ents: [] + +- type: entity + parent: ClothingOuterWinterCoatToggleable id: ClothingOuterWinterAtmos name: atmospherics winter coat components: @@ -40,9 +55,11 @@ sprite: Clothing/OuterClothing/WinterCoats/coatatmos.rsi - type: Clothing sprite: Clothing/OuterClothing/WinterCoats/coatatmos.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterEngineer - type: entity - parent: ClothingOuterWinterCoat + parent: ClothingOuterWinterCoatToggleable id: ClothingOuterWinterBar name: bartender winter coat components: @@ -50,9 +67,11 @@ sprite: Clothing/OuterClothing/WinterCoats/coatbar.rsi - type: Clothing sprite: Clothing/OuterClothing/WinterCoats/coatbar.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterBartender - type: entity - parent: ClothingOuterWinterCoat + parent: ClothingOuterWinterCoatToggleable id: ClothingOuterWinterCap name: captain's winter coat components: @@ -60,9 +79,11 @@ sprite: Clothing/OuterClothing/WinterCoats/coatcap.rsi - type: Clothing sprite: Clothing/OuterClothing/WinterCoats/coatcap.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterCaptain - type: entity - parent: ClothingOuterWinterCoat + parent: ClothingOuterWinterCoatToggleable id: ClothingOuterWinterCargo name: cargo winter coat components: @@ -70,9 +91,11 @@ sprite: Clothing/OuterClothing/WinterCoats/coatcargo.rsi - type: Clothing sprite: Clothing/OuterClothing/WinterCoats/coatcargo.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterCargo - type: entity - parent: ClothingOuterWinterCoat + parent: ClothingOuterWinterCoatToggleable id: ClothingOuterWinterCE name: chief engineer's winter coat components: @@ -80,9 +103,11 @@ sprite: Clothing/OuterClothing/WinterCoats/coatce.rsi - type: Clothing sprite: Clothing/OuterClothing/WinterCoats/coatce.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterCE - type: entity - parent: ClothingOuterWinterCoat + parent: ClothingOuterWinterCoatToggleable id: ClothingOuterWinterCentcom name: CentCom winter coat components: @@ -90,6 +115,8 @@ sprite: Clothing/OuterClothing/WinterCoats/coatcentcom.rsi - type: Clothing sprite: Clothing/OuterClothing/WinterCoats/coatcentcom.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterCentcom - type: entity parent: ClothingOuterWinterCoat @@ -103,7 +130,7 @@ sprite: Clothing/OuterClothing/WinterCoats/coatchef.rsi - type: entity - parent: ClothingOuterWinterCoat + parent: ClothingOuterWinterCoatToggleable id: ClothingOuterWinterChem name: chemistry winter coat components: @@ -117,9 +144,11 @@ Slash: 0.95 Heat: 0.90 Caustic: 0.75 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterChem - type: entity - parent: ClothingOuterWinterCoat + parent: ClothingOuterWinterCoatToggleable id: ClothingOuterWinterCMO name: chief medical officer's winter coat components: @@ -133,6 +162,8 @@ Slash: 0.95 Heat: 0.90 Caustic: 0.75 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterCMO - type: entity parent: ClothingOuterWinterCoat @@ -145,7 +176,7 @@ sprite: Clothing/OuterClothing/WinterCoats/coatclown.rsi - type: entity - parent: ClothingOuterWinterCoat + parent: ClothingOuterWinterCoatToggleable id: ClothingOuterWinterEngi name: engineering winter coat components: @@ -153,9 +184,11 @@ sprite: Clothing/OuterClothing/WinterCoats/coatengi.rsi - type: Clothing sprite: Clothing/OuterClothing/WinterCoats/coatengi.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterEngineer - type: entity - parent: ClothingOuterWinterCoat + parent: ClothingOuterWinterCoatToggleable id: ClothingOuterWinterGen name: genetics winter coat components: @@ -169,9 +202,11 @@ Slash: 0.95 Heat: 0.90 Caustic: 0.9 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterSci - type: entity - parent: ClothingOuterWinterCoat + parent: ClothingOuterWinterCoatToggleable id: ClothingOuterWinterHoP name: station representative's winter coat components: @@ -179,9 +214,11 @@ sprite: Clothing/OuterClothing/WinterCoats/coathop.rsi - type: Clothing sprite: Clothing/OuterClothing/WinterCoats/coathop.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterHOP - type: entity - parent: ClothingOuterWinterCoat + parent: ClothingOuterWinterCoatToggleable id: ClothingOuterWinterHoS name: sheriff's winter coat components: @@ -189,9 +226,11 @@ sprite: Clothing/OuterClothing/WinterCoats/coathos.rsi - type: Clothing sprite: Clothing/OuterClothing/WinterCoats/coathos.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterHOS - type: entity - parent: ClothingOuterWinterCoat + parent: ClothingOuterWinterCoatToggleable id: ClothingOuterWinterHydro name: hydroponics winter coat components: @@ -199,9 +238,11 @@ sprite: Clothing/OuterClothing/WinterCoats/coathydro.rsi - type: Clothing sprite: Clothing/OuterClothing/WinterCoats/coathydro.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterHydro - type: entity - parent: ClothingOuterWinterCoat + parent: ClothingOuterWinterCoatToggleable id: ClothingOuterWinterJani name: janitorial winter coat components: @@ -215,9 +256,11 @@ Slash: 0.95 Heat: 0.9 Caustic: 0.9 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterJani - type: entity - parent: ClothingOuterWinterCoat + parent: ClothingOuterWinterCoatToggleable id: ClothingOuterWinterMed name: medical winter coat components: @@ -231,9 +274,11 @@ Slash: 0.95 Heat: 0.90 Caustic: 0.9 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterMed - type: entity - parent: ClothingOuterWinterCoat + parent: ClothingOuterWinterCoatToggleable id: ClothingOuterWinterMime name: mime winter coat components: @@ -241,9 +286,11 @@ sprite: Clothing/OuterClothing/WinterCoats/coatmime.rsi - type: Clothing sprite: Clothing/OuterClothing/WinterCoats/coatmime.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterMime - type: entity - parent: ClothingOuterWinterCoat + parent: ClothingOuterWinterCoatToggleable id: ClothingOuterWinterMiner name: mining winter coat components: @@ -251,9 +298,11 @@ sprite: Clothing/OuterClothing/WinterCoats/coatminer.rsi - type: Clothing sprite: Clothing/OuterClothing/WinterCoats/coatminer.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterMiner - type: entity - parent: ClothingOuterWinterCoat + parent: ClothingOuterWinterCoatToggleable id: ClothingOuterWinterPara name: paramedic winter coat components: @@ -267,9 +316,11 @@ Slash: 0.95 Heat: 0.75 Caustic: 0.9 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterPara - type: entity - parent: ClothingOuterWinterCoat + parent: ClothingOuterWinterCoatToggleable id: ClothingOuterWinterQM name: quartermaster's winter coat components: @@ -277,9 +328,12 @@ sprite: Clothing/OuterClothing/WinterCoats/coatqm.rsi - type: Clothing sprite: Clothing/OuterClothing/WinterCoats/coatqm.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterQM + - type: entity - parent: ClothingOuterWinterCoat + parent: ClothingOuterWinterCoatToggleable id: ClothingOuterWinterRD name: research director's winter coat components: @@ -293,9 +347,11 @@ Slash: 0.95 Heat: 0.90 Caustic: 0.9 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterRD - type: entity - parent: ClothingOuterWinterCoat + parent: ClothingOuterWinterCoatToggleable id: ClothingOuterWinterRobo name: robotics winter coat components: @@ -303,9 +359,12 @@ sprite: Clothing/OuterClothing/WinterCoats/coatrobo.rsi - type: Clothing sprite: Clothing/OuterClothing/WinterCoats/coatrobo.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterRobo + - type: entity - parent: ClothingOuterWinterCoat + parent: ClothingOuterWinterCoatToggleable id: ClothingOuterWinterSci name: science winter coat components: @@ -319,9 +378,11 @@ Slash: 0.95 Heat: 0.90 Caustic: 0.9 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterSci - type: entity - parent: ClothingOuterWinterCoat + parent: ClothingOuterWinterCoatToggleable id: ClothingOuterWinterSec name: security winter coat components: @@ -329,9 +390,11 @@ sprite: Clothing/OuterClothing/WinterCoats/coatsec.rsi - type: Clothing sprite: Clothing/OuterClothing/WinterCoats/coatsec.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterSec - type: entity - parent: ClothingOuterWinterCoat + parent: ClothingOuterWinterCoatToggleable id: ClothingOuterWinterViro name: virology winter coat components: @@ -345,9 +408,11 @@ Slash: 0.95 Heat: 0.90 Caustic: 0.9 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterSci - type: entity - parent: ClothingOuterWinterCoat + parent: ClothingOuterWinterCoatToggleable id: ClothingOuterWinterWarden name: bailiff's armored winter coat description: A sturdy, utilitarian winter coat designed to protect a bailiff from any brig-bound threats and hypothermic events. @@ -363,9 +428,11 @@ Slash: 0.70 Piercing: 0.8 #slightly less bulletproof then warden's normal coat Heat: 0.70 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterWarden - type: entity - parent: ClothingOuterWinterCoat + parent: ClothingOuterWinterCoatToggleable id: ClothingOuterWinterSyndieCap name: syndicate's winter coat description: "The syndicate's winter coat is made of durable fabric, with gilded patterns, and coarse wool." @@ -374,6 +441,8 @@ sprite: Clothing/OuterClothing/WinterCoats/syndicate/coatsyndiecap.rsi - type: Clothing sprite: Clothing/OuterClothing/WinterCoats/syndicate/coatsyndiecap.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterSyndie - type: entity parent: ClothingOuterWinterWarden @@ -385,9 +454,11 @@ sprite: Clothing/OuterClothing/WinterCoats/syndicate/coatsyndiecaparmored.rsi - type: Clothing sprite: Clothing/OuterClothing/WinterCoats/syndicate/coatsyndiecaparmored.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterSyndie - type: entity - parent: ClothingOuterWinterCoat + parent: ClothingOuterWinterCoatToggleable id: ClothingOuterWinterSyndie name: syndicate's winter coat description: Insulated winter coat, looks like a merch from "Syndieland" @@ -396,6 +467,8 @@ sprite: Clothing/OuterClothing/WinterCoats/syndicate/wintercoatsyndie.rsi - type: Clothing sprite: Clothing/OuterClothing/WinterCoats/syndicate/wintercoatsyndie.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterSyndie - type: entity parent: ClothingOuterWinterCoat @@ -408,4 +481,30 @@ - type: Clothing sprite: Clothing/OuterClothing/WinterCoats/coatnomi.rsi - +- type: entity + parent: ClothingOuterWinterCoatToggleable + id: ClothingOuterWinterWeb + name: web winter coat + description: Feels like the inside of a cocoon, not that this would make you less afraid of being in one. + components: + - type: Sprite + sprite: Clothing/OuterClothing/WinterCoats/coatweb.rsi + - type: Clothing + sprite: Clothing/OuterClothing/WinterCoats/coatweb.rsi + - type: Construction + graph: WebObjects + node: coat + - type: FlavorProfile + flavors: + - cobwebs + ignoreReagents: + - Fiber + - type: SolutionContainerManager + solutions: # 15 (3 (fiber count of web) * 5 (to craft)) + 5 (magical crafting bonus) + food: + maxVol: 20 + reagents: + - ReagentId: Fiber + Quantity: 20 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterWeb diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml b/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml index ce705e3d3ff..6fbfe13f5ab 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml @@ -12,13 +12,7 @@ - type: Clothing sprite: Clothing/Shoes/Boots/magboots.rsi - type: Magboots - toggleAction: - icon: { sprite: Clothing/Shoes/Boots/magboots.rsi, state: icon } - iconOn: { sprite : Clothing/Shoes/Boots/magboots.rsi, state: icon-on } - name: action-name-magboot-toggle - description: action-decription-magboot-toggle - itemIconStyle: NoItem - event: !type:ToggleMagbootsEvent + toggleAction: ActionToggleMagboots - type: ClothingSpeedModifier walkModifier: 0.85 sprintModifier: 0.8 @@ -48,13 +42,7 @@ - type: Clothing sprite: Clothing/Shoes/Boots/magboots-advanced.rsi - type: Magboots - toggleAction: - icon: { sprite: Clothing/Shoes/Boots/magboots-advanced.rsi, state: icon } - iconOn: Clothing/Shoes/Boots/magboots-advanced.rsi/icon-on.png - name: action-name-magboot-toggle - description: action-decription-magboot-toggle - itemIconStyle: NoItem - event: !type:ToggleMagbootsEvent + toggleAction: ActionToggleMagbootsAdvanced - type: ClothingSpeedModifier walkModifier: 1 sprintModifier: 1 @@ -92,29 +80,12 @@ - type: Clothing sprite: Clothing/Shoes/Boots/magboots-syndicate.rsi - type: Magboots - toggleAction: - icon: { sprite: Clothing/Shoes/Boots/magboots-syndicate.rsi, state: icon } - iconOn: Clothing/Shoes/Boots/magboots-syndicate.rsi/icon-on.png - name: action-name-magboot-toggle - description: action-decription-magboot-toggle - itemIconStyle: NoItem - event: !type:ToggleMagbootsEvent + toggleAction: ActionToggleMagbootsSyndie - type: ClothingSpeedModifier walkModifier: 0.95 sprintModifier: 0.9 enabled: false - type: GasTank - toggleAction: - name: action-name-internals-toggle - description: action-description-internals-toggle - icon: - sprite: Interface/Alerts/internals.rsi - state: internal2 - iconOn: - sprite: Interface/Alerts/internals.rsi - state: internal1 - event: !type:ToggleActionEvent - useDelay: 1 outputPressure: 42.6 air: # 2 minutes of thrust @@ -134,17 +105,6 @@ maxIntensity: 20 - type: Jetpack moleUsage: 0.00085 - toggleAction: - icon: - sprite: Objects/Tanks/Jetpacks/blue.rsi - state: icon - iconOn: - sprite: Objects/Tanks/Jetpacks/blue.rsi - state: icon-on - name: action-name-jetpack-toggle - description: action-description-jetpack-toggle - useDelay: 1.0 - event: !type:ToggleJetpackEvent - type: InputMover toParent: true - type: MovementSpeedModifier @@ -154,3 +114,40 @@ - type: Tag tags: - WhitelistChameleon + +- type: entity + id: ActionBaseToggleMagboots + name: Toggle Magboots + description: Toggles the magboots on and off. + noSpawn: true + components: + - type: InstantAction + itemIconStyle: NoItem + event: !type:ToggleMagbootsEvent + +- type: entity + id: ActionToggleMagboots + parent: ActionBaseToggleMagboots + noSpawn: true + components: + - type: InstantAction + icon: { sprite: Clothing/Shoes/Boots/magboots.rsi, state: icon } + iconOn: { sprite : Clothing/Shoes/Boots/magboots.rsi, state: icon-on } + +- type: entity + id: ActionToggleMagbootsAdvanced + parent: ActionBaseToggleMagboots + noSpawn: true + components: + - type: InstantAction + icon: { sprite: Clothing/Shoes/Boots/magboots-advanced.rsi, state: icon } + iconOn: Clothing/Shoes/Boots/magboots-advanced.rsi/icon-on.png + +- type: entity + id: ActionToggleMagbootsSyndie + parent: ActionBaseToggleMagboots + noSpawn: true + components: + - type: InstantAction + icon: { sprite: Clothing/Shoes/Boots/magboots-syndicate.rsi, state: icon } + iconOn: Clothing/Shoes/Boots/magboots-syndicate.rsi/icon-on.png diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml index 4ae6c3b33fc..59dd87f30c2 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml @@ -81,6 +81,10 @@ - type: Clothing sprite: Clothing/Shoes/Specific/spaceninja.rsi - type: NoSlip + - type: ClothingSpeedModifier + # ninja are masters of sneaking around relatively quickly, won't break cloak + walkModifier: 1.1 + sprintModifier: 1.3 - type: entity parent: ClothingShoesBaseButcherable diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml index 21b3a3fe0a8..3cfc8228348 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml @@ -42,6 +42,17 @@ - type: Clothing sprite: Clothing/Uniforms/Jumpskirt/ce.rsi +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtChiefEngineerTurtle + name: chief engineer's turtleneck + description: A yellow turtleneck designed specifically for work in conditions of the engineering department. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi + - type: entity parent: ClothingUniformSkirtBase id: ClothingUniformJumpskirtChaplain @@ -770,3 +781,34 @@ sprite: Clothing/Uniforms/Jumpskirt/security_grey.rsi - type: Clothing sprite: Clothing/Uniforms/Jumpskirt/security_grey.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtWeb + name: web jumpskirt + description: Makes it clear that you are one with the webs. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/web.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/web.rsi + - type: Butcherable + butcheringType: Knife + spawned: + - id: MaterialWebSilk1 + amount: 8 + - type: FlavorProfile + flavors: + - cobwebs + ignoreReagents: + - Fiber + - type: SolutionContainerManager + solutions: # 24 (3 (fiber count of web) * 8 (to craft)) + 6 (magical crafting bonus) + food: + maxVol: 30 + reagents: + - ReagentId: Fiber + Quantity: 30 + - type: Construction + graph: WebObjects + node: jumpskirt diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml index 56048093ba9..7f784bbf99e 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml @@ -104,6 +104,17 @@ - type: Clothing sprite: Clothing/Uniforms/Jumpsuit/ce.rsi +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitChiefEngineerTurtle + name: chief engineer's turtleneck + description: A yellow turtleneck designed specifically for work in conditions of the engineering department. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/ceturtle.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/ceturtle.rsi + - type: entity parent: ClothingUniformBase id: ClothingUniformJumpsuitChaplain @@ -921,6 +932,17 @@ - type: Clothing sprite: Clothing/Uniforms/Jumpsuit/mercenary.rsi +- type: entity + parent: UnsensoredClothingUniformBase + id: ClothingUniformJumpsuitNinja + name: ninja jumpsuit + description: A nano-enhanced jumpsuit designed for maximum comfort and tacticality. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/ninja.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/ninja.rsi + - type: entity parent: ClothingUniformBase id: ClothingUniformJumpsuitAtmos @@ -1248,3 +1270,34 @@ sprite: Clothing/Uniforms/Jumpsuit/senior_officer.rsi - type: Clothing sprite: Clothing/Uniforms/Jumpsuit/senior_officer.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitWeb + name: web jumpsuit + description: Makes it clear that you are one with the webs. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/web.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/web.rsi + - type: Butcherable + butcheringType: Knife + spawned: + - id: MaterialWebSilk1 + amount: 8 + - type: FlavorProfile + flavors: + - cobwebs + ignoreReagents: + - Fiber + - type: SolutionContainerManager + solutions: # 24 (3 (fiber count of web) * 8 (to craft)) + 6 (magical crafting bonus) + food: + maxVol: 30 + reagents: + - ReagentId: Fiber + Quantity: 30 + - type: Construction + graph: WebObjects + node: jumpsuit diff --git a/Resources/Prototypes/Entities/Effects/sparks.yml b/Resources/Prototypes/Entities/Effects/sparks.yml new file mode 100644 index 00000000000..53542a9b7ba --- /dev/null +++ b/Resources/Prototypes/Entities/Effects/sparks.yml @@ -0,0 +1,19 @@ +- type: entity + id: EffectSparks + noSpawn: true + components: + - type: TimedDespawn + lifetime: 0.5 + - type: Sprite + drawdepth: Effects + noRot: true + layers: + - shader: unshaded + map: ["enum.EffectLayers.Unshaded"] + sprite: Effects/sparks.rsi + state: sparks + - type: EffectVisuals + - type: Tag + tags: + - HideContextMenu + - type: AnimationPlayer diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_baked_single.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_baked_single.yml index e5512e299ef..995048c2dd1 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_baked_single.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_baked_single.yml @@ -68,6 +68,7 @@ - FoodPieFrostySlice - FoodTartGrape - FoodTartCoco + - FoodBakedBrownie chance: 0.8 offset: 0.0 #rare @@ -80,4 +81,5 @@ - FoodTartGapple - FoodBreadMeatXenoSlice - FoodPieXenoSlice + - FoodBakedCannabisBrownie rareChance: 0.05 diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_baked_whole.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_baked_whole.yml index 9091bd409d8..7e580db9805 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_baked_whole.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_baked_whole.yml @@ -44,6 +44,7 @@ - FoodPieCherry - FoodPieMeat - FoodPieFrosty + - FoodBakedBrownieBatch chance: 0.8 offset: 0.0 #rare @@ -58,4 +59,5 @@ - FoodPiePlump - FoodBreadMeatXeno - FoodPieXeno + - FoodBakedCannabisBrownieBatch rareChance: 0.05 diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/grille.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/grille.yml new file mode 100644 index 00000000000..3f5be4fdb15 --- /dev/null +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/grille.yml @@ -0,0 +1,16 @@ +- type: entity + name: Random Grille Spawner + id: GrilleSpawner + parent: MarkerBase + components: + - type: Sprite + layers: + - sprite: Structures/Walls/random.rsi + state: randomgrille + - type: RandomSpawner + prototypes: + - Grille + - GrilleBroken + chance: 1.0 + placement: + mode: AlignTileAny diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/trash.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/trash.yml index e529df937b9..60a70983282 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/trash.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/trash.yml @@ -21,6 +21,7 @@ - FoodPacketChipsTrash - FoodPacketChocolateTrash - FoodPacketChowMeinTrash + - FoodPacketCnDsTrash - FoodPacketDanDanTrash - FoodPacketEnergyTrash - FoodPacketPistachioTrash diff --git a/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml b/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml index 2defae76ab9..75f7b59f14f 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml @@ -5,9 +5,9 @@ parent: MarkerBase components: - type: GhostRole - name: Rat King - description: You are the Rat King, scavenge food in order to produce rat minions to do your bidding. - rules: You are an antagonist, scavenge, attack, and grow your hoard! + name: ghost-role-information-rat-king-name + description: ghost-role-information-rat-king-description + rules: ghost-role-information-rat-king-rules - type: GhostRoleMobSpawner prototype: MobRatKing - type: Sprite @@ -24,9 +24,9 @@ parent: MarkerBase components: - type: GhostRole - name: Remilia, the chaplain's familiar - description: Obey your master. Eat fruit. - rules: You are an intelligent fruit bat. Follow the chaplain around. Don't cause any trouble unless the chaplain tells you to. + name: ghost-role-information-remilia-name + description: ghost-role-information-remilia-description + rules: ghost-role-information-remilia-rules - type: GhostRoleMobSpawner prototype: MobBatRemilia - type: Sprite @@ -43,9 +43,9 @@ parent: MarkerBase components: - type: GhostRole - name: Cerberus, Evil Familiar - description: Obey your master. Spread chaos. - rules: You are an intelligent, demonic dog. Try to help the chaplain and any of his flock. As an antagonist, you're otherwise unrestrained. + name: ghost-role-information-cerberus-name + description: ghost-role-information-cerberus-description + rules: ghost-role-information-cerberus-rules - type: GhostRoleMobSpawner prototype: MobCorgiCerberus - type: Sprite @@ -63,7 +63,7 @@ parent: MarkerBase components: - type: GhostRole - rules: You are a syndicate operative tasked with the destruction of the station. As an antagonist, do whatever is required to complete this task. + rules: ghost-role-information-nukeop-rules - type: GhostRoleMobSpawner prototype: MobHumanNukeOp - type: Sprite @@ -81,9 +81,9 @@ parent: MarkerBase components: - type: GhostRole - name: Lone Operative - description: You are a lone nuclear operative. Destroy the station! - rules: You are a syndicate operative tasked with the destruction of the station. As an antagonist, do whatever is required to complete this task. + name: ghost-role-information-loneop-name + description: ghost-role-information-loneop-description + rules: ghost-role-information-loneop-rules - type: GhostRoleMobSpawner prototype: MobHumanLoneNuclearOperative - type: Sprite @@ -111,3 +111,22 @@ - state: green - sprite: Mobs/Aliens/Carps/dragon.rsi state: alive + +- type: entity + id: SpawnPointGhostSpaceNinja + name: ghost role spawn point + suffix: space ninja + parent: MarkerBase + components: + - type: GhostRole + name: Space Ninja + description: Use stealth and deception to sabotage the station. + rules: You are an elite mercenary of the Spider Clan. You aren't required to follow your objectives, yet your NINJA HONOR demands you try. + - type: GhostRoleMobSpawner + prototype: MobHumanSpaceNinja + - type: Sprite + sprite: Markers/jobs.rsi + layers: + - state: green + - sprite: Objects/Weapons/Melee/energykatana.rsi + state: icon diff --git a/Resources/Prototypes/Entities/Markers/warp_point.yml b/Resources/Prototypes/Entities/Markers/warp_point.yml index b4bd38464f2..54c532d684f 100644 --- a/Resources/Prototypes/Entities/Markers/warp_point.yml +++ b/Resources/Prototypes/Entities/Markers/warp_point.yml @@ -6,3 +6,16 @@ - type: WarpPoint - type: Sprite state: pink + +- type: entity + parent: WarpPoint + id: WarpPointBombing + name: warp point + suffix: ninja bombing target + components: + - type: BombingTarget + - type: Sprite + layers: + - state: pink + - sprite: Objects/Weapons/Bombs/spidercharge.rsi + state: icon diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/arachnid.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/arachnid.yml index 25d9e9a58f5..cf3e1ab2d56 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/arachnid.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/arachnid.yml @@ -1,12 +1,21 @@ # Chelicerae - type: marking - id: ArachnidCheliceraeBasic + id: ArachnidCheliceraeDownwards bodyPart: HeadSide markingCategory: HeadSide speciesRestriction: [Arachnid] sprites: - sprite: Mobs/Customization/Arachnid/chelicerae.rsi - state: basic + state: downwards + +- type: marking + id: ArachnidCheliceraeInwards + bodyPart: HeadSide + markingCategory: HeadSide + speciesRestriction: [Arachnid] + sprites: + - sprite: Mobs/Customization/Arachnid/chelicerae.rsi + state: inwards # Appendages - type: marking @@ -16,7 +25,9 @@ speciesRestriction: [Arachnid] sprites: - sprite: Mobs/Customization/Arachnid/appendages.rsi - state: long + state: long_primary + - sprite: Mobs/Customization/Arachnid/appendages.rsi + state: long_secondary - type: marking id: ArachnidAppendagesSharp @@ -25,7 +36,9 @@ speciesRestriction: [Arachnid] sprites: - sprite: Mobs/Customization/Arachnid/appendages.rsi - state: sharp + state: sharp_primary + - sprite: Mobs/Customization/Arachnid/appendages.rsi + state: sharp_secondary - type: marking id: ArachnidAppendagesStingers @@ -34,7 +47,9 @@ speciesRestriction: [Arachnid] sprites: - sprite: Mobs/Customization/Arachnid/appendages.rsi - state: stingers + state: stingers_primary + - sprite: Mobs/Customization/Arachnid/appendages.rsi + state: stingers_secondary - type: marking id: ArachnidAppendagesZigZag @@ -43,7 +58,9 @@ speciesRestriction: [Arachnid] sprites: - sprite: Mobs/Customization/Arachnid/appendages.rsi - state: zigzag + state: zigzag_primary + - sprite: Mobs/Customization/Arachnid/appendages.rsi + state: zigzag_secondary - type: marking id: ArachnidAppendagesCurled @@ -52,7 +69,9 @@ speciesRestriction: [Arachnid] sprites: - sprite: Mobs/Customization/Arachnid/appendages.rsi - state: curled + state: curled_primary + - sprite: Mobs/Customization/Arachnid/appendages.rsi + state: curled_secondary - type: marking id: ArachnidAppendagesChipped @@ -61,7 +80,9 @@ speciesRestriction: [Arachnid] sprites: - sprite: Mobs/Customization/Arachnid/appendages.rsi - state: chipped + state: chipped_primary + - sprite: Mobs/Customization/Arachnid/appendages.rsi + state: chipped_secondary - type: marking id: ArachnidAppendagesHarvest @@ -70,7 +91,9 @@ speciesRestriction: [Arachnid] sprites: - sprite: Mobs/Customization/Arachnid/appendages.rsi - state: harvest + state: harvest_primary + - sprite: Mobs/Customization/Arachnid/appendages.rsi + state: harvest_secondary - type: marking id: ArachnidAppendagesShort @@ -79,7 +102,9 @@ speciesRestriction: [Arachnid] sprites: - sprite: Mobs/Customization/Arachnid/appendages.rsi - state: short + state: short_primary + - sprite: Mobs/Customization/Arachnid/appendages.rsi + state: short_secondary # Chest - type: marking @@ -185,3 +210,134 @@ default: type: !type:EyeColoring + +- type: marking + id: ArachnidTorsoArrows + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Arachnid] + sprites: + - sprite: Mobs/Customization/Arachnid/chest.rsi + state: arrows + coloring: + default: + type: + !type:EyeColoring + +- type: marking + id: ArachnidTorsoCore + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Arachnid] + sprites: + - sprite: Mobs/Customization/Arachnid/chest.rsi + state: core + coloring: + default: + type: + !type:EyeColoring + +- type: marking + id: ArachnidTorsoFiddleback + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Arachnid] + sprites: + - sprite: Mobs/Customization/Arachnid/chest.rsi + state: fiddleback + coloring: + default: + type: + !type:EyeColoring + +- type: marking + id: ArachnidTorsoSkull + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Arachnid] + sprites: + - sprite: Mobs/Customization/Arachnid/chest.rsi + state: skull + coloring: + default: + type: + !type:EyeColoring + +- type: marking + id: ArachnidTorsoTarget + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Arachnid] + sprites: + - sprite: Mobs/Customization/Arachnid/chest.rsi + state: target + coloring: + default: + type: + !type:EyeColoring + +# Arms +- type: marking + id: ArachnidRArmStripes + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Arachnid] + sprites: + - sprite: Mobs/Customization/Arachnid/arms.rsi + state: stripes_right + coloring: + default: + type: + !type:EyeColoring + +- type: marking + id: ArachnidLArmStripes + bodyPart: LArm + markingCategory: Arms + speciesRestriction: [Arachnid] + sprites: + - sprite: Mobs/Customization/Arachnid/arms.rsi + state: stripes_left + coloring: + default: + type: + !type:EyeColoring + +# Legs +- type: marking + id: ArachnidRLegStripes + bodyPart: RLeg + markingCategory: Legs + speciesRestriction: [Arachnid] + sprites: + - sprite: Mobs/Customization/Arachnid/legs.rsi + state: stripes_right + coloring: + default: + type: + !type:EyeColoring + +- type: marking + id: ArachnidLLegStripes + bodyPart: LLeg + markingCategory: Legs + speciesRestriction: [Arachnid] + sprites: + - sprite: Mobs/Customization/Arachnid/legs.rsi + state: stripes_left + coloring: + default: + type: + !type:EyeColoring + +# Overlay +- type: marking + id: ArachnidOverlayFuzzy + bodyPart: Chest + markingCategory: Overlay + forcedColoring: true + speciesRestriction: [Arachnid] + sprites: + - sprite: Mobs/Customization/Arachnid/overlay.rsi + state: fuzzy + diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/diona.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/diona.yml index 0db9994efff..569fb5f2b8c 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/diona.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/diona.yml @@ -387,3 +387,17 @@ sprites: - sprite: Mobs/Customization/diona.rsi state: wildflower + +- type: marking + id: DionaVineOverlay + bodyPart: LLeg + markingCategory: Overlay + speciesRestriction: [Diona] + coloring: + default: + type: + !type:SimpleColoring + color: "#5f7039" + sprites: + - sprite: Mobs/Customization/diona.rsi + state: overlay diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml index ef44b3561ce..106af0d6f52 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml @@ -271,6 +271,55 @@ sprites: - sprite: Mobs/Customization/human_hair.rsi state: cia +- type: marking + id: HumanHairClassicAfro + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: classicafro +- type: marking + id: HumanHairClassicBigAfro + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: classicbigafro +- type: marking + id: HumanHairClassicCia + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: classiccia +- type: marking + id: HumanHairClassicFloorlengthBedhead + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: classicfloorlength_bedhead +- type: marking + id: HumanHairClassicModern + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: classicmodern +- type: marking + id: HumanHairClassicMulder + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: classicmulder +- type: marking + id: HumanHairClassicWisp + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: classicwisp - type: marking id: HumanHairCoffeehouse bodyPart: Hair diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml index 4895935b9d5..fb58b5a644d 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml @@ -58,6 +58,12 @@ key: enum.BorgUiKey.Key - type: SiliconLawBound - type: EmagSiliconLaw + stunTime: 5 + emagLaws: + - Syndicate1 + - Syndicate2 + - Syndicate3 + - Syndicate4 - type: Hands showInHands: false - type: IntrinsicRadioReceiver @@ -106,6 +112,7 @@ - type: TypingIndicator proto: robot - type: Speech + speechVerb: Robotic speechSounds: Pai - type: Construction graph: Cyborg diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml index c280118534e..582791fc16c 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml @@ -22,6 +22,8 @@ noMindState: robot_e_r - type: Construction node: cyborg + - type: Speech + speechVerb: Robotic - type: entity id: BorgChassisMining diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index 13cc993b358..26ebf88ec39 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -1,6 +1,6 @@ - type: entity name: bat - parent: SimpleMobBase + parent: [ SimpleMobBase, FlyingMobBase ] id: MobBat description: Some cultures find them terrifying, others crunchy on the teeth. components: @@ -13,7 +13,6 @@ - map: ["enum.DamageStateVisualLayers.Base"] state: bat sprite: Mobs/Animals/bat.rsi - - type: Physics - type: Speech speechSounds: Squeak speechVerb: SmallMob @@ -59,7 +58,6 @@ damage: types: Piercing: 5 - - type: NoSlip - type: Puller needsHands: true - type: Tag @@ -68,7 +66,7 @@ - type: entity name: bee - parent: SimpleMobBase + parent: [ SimpleMobBase, FlyingMobBase ] id: MobBee description: Nice to have, but you can't build a civilization on a foundation of honey alone. components: @@ -82,7 +80,6 @@ - map: ["enum.DamageStateVisualLayers.Base"] state: 0 sprite: Mobs/Animals/bee.rsi - - type: Physics - type: Fixtures fixtures: fix1: @@ -112,7 +109,6 @@ - Bee - type: Bloodstream bloodMaxVolume: 0.1 - - type: NoSlip - type: MobPrice price: 50 - type: Puller @@ -355,7 +351,7 @@ - type: entity name: butterfly - parent: SimpleMobBase + parent: [ SimpleMobBase, FlyingMobBase ] id: MobButterfly description: Despite popular misconceptions, it's not actually made of butter. components: @@ -368,7 +364,6 @@ - map: ["enum.DamageStateVisualLayers.Base"] state: butterfly sprite: Mobs/Animals/butterfly.rsi - - type: Physics - type: Fixtures fixtures: fix1: @@ -397,7 +392,6 @@ Base: dead - type: Bloodstream bloodMaxVolume: 0.1 - - type: NoSlip - type: MobPrice price: 50 - type: Puller @@ -816,6 +810,7 @@ - MobMask layer: - MobLayer + - type: Stripping - type: Strippable - type: UserInterface interfaces: @@ -834,6 +829,7 @@ state: body-overlay-2 visible: false - map: [ "id" ] + - map: [ "ears" ] - map: [ "outerClothing" ] - map: [ "mask" ] - map: [ "head" ] @@ -949,9 +945,9 @@ - type: MobStateActions actions: Critical: - - CritSuccumb - - CritFakeDeath - - CritLastWords + - ActionCritSuccumb + - ActionCritFakeDeath + - ActionCritLastWords - type: MobThresholds thresholds: 0: Alive @@ -990,6 +986,7 @@ - Trash - VimPilot - Mouse + - DoorBumpOpener - type: Respirator damage: types: @@ -1009,10 +1006,7 @@ wilhelmProbability: 0.001 # TODO: Remove CombatMode when Prototype Composition is added - type: CombatMode - combatToggleAction: - enabled: false - autoPopulate: false - name: action-name-combat + combatToggleAction: ActionCombatModeToggleOff - type: Bloodstream bloodMaxVolume: 50 - type: CanEscapeInventory @@ -1239,7 +1233,7 @@ # Would be cool to have some functionality for the parrot to be able to sit on stuff - type: entity name: parrot - parent: SimpleMobBase + parent: [ SimpleMobBase, FlyingMobBase ] id: MobParrot description: Infiltrates your domain, spies on you, and somehow still a cool pet. components: @@ -1252,7 +1246,6 @@ - map: ["enum.DamageStateVisualLayers.Base"] state: parrot sprite: Mobs/Animals/parrot.rsi - - type: Physics - type: Fixtures fixtures: fix1: @@ -1282,7 +1275,6 @@ path: /Audio/Animals/parrot_raught.ogg - type: Bloodstream bloodMaxVolume: 50 - - type: NoSlip - type: entity name: penguin @@ -1502,6 +1494,11 @@ - type: Tag tags: - VimPilot + - DoorBumpOpener + # make the player a traitor once its taken + - type: AutoTraitor + giveUplink: false + giveObjectives: false # I have included a snake_hiss.ogg sound file so if you want to use that be my guest - type: entity @@ -1590,7 +1587,7 @@ - type: MobThresholds thresholds: 0: Alive - 150: Dead + 90: Dead - type: MeleeWeapon hidden: true angle: 0 @@ -1599,8 +1596,8 @@ path: /Audio/Effects/bite.ogg damage: types: - Piercing: 12 - Poison: 4 + Piercing: 6 + Poison: 6 - type: ReplacementAccent accent: xeno - type: InteractionPopup @@ -1613,6 +1610,8 @@ - type: Bloodstream bloodMaxVolume: 150 bloodReagent: SpiderBlood + - type: Speech + speechVerb: Arachnid - type: entity name: tarantula @@ -1679,6 +1678,8 @@ - type: FootstepModifier footstepSoundCollection: collection: FootstepClownFast + - type: Speech + speechVerb: Cluwne - type: entity name: possum @@ -1863,6 +1864,8 @@ - map: ["enum.DamageStateVisualLayers.Base"] state: corgi - type: Physics + - type: Speech + speechVerb: Canine - type: Fixtures fixtures: fix1: @@ -2317,9 +2320,9 @@ - type: MobStateActions actions: Critical: - - CritSuccumb - - CritFakeDeath - - CritLastWords + - ActionCritSuccumb + - ActionCritFakeDeath + - ActionCritLastWords - type: MobThresholds thresholds: 0: Alive diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/argocyte.yml b/Resources/Prototypes/Entities/Mobs/NPCs/argocyte.yml new file mode 100644 index 00000000000..cde11bf222b --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/NPCs/argocyte.yml @@ -0,0 +1,422 @@ +- type: entity + save: false + parent: BaseSimpleMob + id: BaseMobArgocyte + suffix: AI + description: A dangerous alien found on the wrong side of planets, known for their propensity for munching on ruins. + abstract: true + components: + - type: NpcFactionMember + factions: + - Xeno + - type: HTN + rootTask: + task: SimpleHostileCompound #todo custom argocyte AI + - type: Sprite + sprite: Mobs/Aliens/Argocyte/argocyte_common.rsi + - type: SolutionContainerManager + - type: ReplacementAccent + accent: xeno + - type: Bloodstream + bloodReagent: FerrochromicAcid + bloodMaxVolume: 75 #we don't want the map to become pools of blood + bloodlossDamage: + types: + Bloodloss: + 1 + bloodlossHealDamage: + types: + Bloodloss: + -1 + - type: Insulated + - type: CombatMode + - type: MeleeWeapon + hidden: true + angle: 0 + animation: WeaponArcBite + damage: + types: + Slash: 5 + - type: Body + prototype: Animal + - type: Flammable + fireSpread: true + canResistFire: true + damage: + types: + Heat: 3 + - type: FireVisuals + sprite: Mobs/Effects/onfire.rsi + normalState: Generic_mob_burning + - type: Climbing + - type: Flashable + - type: NameIdentifier + group: GenericNumber + +- type: entity + parent: BaseMobArgocyte + id: MobArgocyteSlurva + name: slurva + description: A pathetic creature, incapable of doing much. + components: + - type: Sprite + layers: + - state: slurva + map: ["enum.DamageStateVisualLayers.Base"] + - type: DamageStateVisuals + states: + Alive: + Base: slurva + Dead: + Base: slurva_dead + - type: HTN + rootTask: + task: IdleCompound + - type: MobThresholds + thresholds: + 0: Alive + 30: Dead + - type: MovementSpeedModifier + baseSprintSpeed : 3.5 + baseWalkSpeed : 3 + - type: MeleeWeapon + damage: + types: + Blunt: 3 + +- type: entity + parent: BaseMobArgocyte + id: MobArgocyteBarrier + name: barrier + components: + - type: Sprite + layers: + - state: barrier + map: ["enum.DamageStateVisualLayers.Base"] + - type: DamageStateVisuals + states: + Alive: + Base: barrier + Dead: + Base: barrier_dead + - type: HTN + rootTask: + task: IdleCompound + - type: MobThresholds + thresholds: + 0: Alive + 30: Dead + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.2 + density: 50 + mask: + - MobMask + layer: + - MobLayer + - type: MeleeWeapon + damage: + types: + Blunt: 3 + +- type: entity + parent: BaseMobArgocyte + id: MobArgocyteSkitter + name: skitter + description: A devious little alien... Make sure they don't run off with your rations! + components: + - type: Sprite + layers: + - state: skitter + map: ["enum.DamageStateVisualLayers.Base"] + - type: DamageStateVisuals + states: + Alive: + Base: skitter + Dead: + Base: skitter_dead + - type: MobThresholds + thresholds: + 0: Alive + 30: Dead + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.2 + density: 50 + mask: + - MobMask + layer: + - MobLayer + - type: MeleeWeapon + damage: + types: + Slash: 3 + +- type: entity + parent: BaseMobArgocyte + id: MobArgocyteSwiper + name: swiper + description: Where did that stack of steel go? + components: + - type: Sprite + layers: + - state: swiper + map: ["enum.DamageStateVisualLayers.Base"] + - type: DamageStateVisuals + states: + Alive: + Base: swiper + Dead: + Base: swiper_dead + - type: MobThresholds + thresholds: + 0: Alive + 60: Dead + - type: MovementSpeedModifier + baseSprintSpeed : 5 + +- type: entity + parent: BaseMobArgocyte + id: MobArgocyteMolder + name: molder + components: + - type: Sprite + layers: + - state: molder + map: ["enum.DamageStateVisualLayers.Base"] + - type: DamageStateVisuals + states: + Alive: + Base: molder + Dead: + Base: molder_dead + - type: MobThresholds + thresholds: + 0: Alive + 100: Dead + - type: MovementSpeedModifier + baseSprintSpeed : 4 + baseWalkSpeed : 3.5 + +- type: entity + parent: BaseMobArgocyte + id: MobArgocytePouncer + name: pouncer + components: + - type: Sprite + layers: + - state: pouncer + map: ["enum.DamageStateVisualLayers.Base"] + - type: DamageStateVisuals + states: + Alive: + Base: pouncer + Dead: + Base: pouncer_dead + - type: MobThresholds + thresholds: + 0: Alive + 100: Dead + - type: MeleeWeapon + damage: + types: + Blunt: 2.5 + Slash: 7.5 + +- type: entity + parent: BaseMobArgocyte + id: MobArgocyteGlider + name: glider + components: + - type: Sprite + layers: + - state: glider + map: ["enum.DamageStateVisualLayers.Base"] + - type: DamageStateVisuals + states: + Alive: + Base: glider + Dead: + Base: glider_dead + - type: MobThresholds + thresholds: + 0: Alive + 100: Dead + - type: MeleeWeapon + damage: + types: + Blunt: 3.5 + Slash: 3.5 + - type: MovementSpeedModifier + baseSprintSpeed : 5 + baseWalkSpeed: 4.5 + +- type: entity + parent: BaseMobArgocyte + id: MobArgocyteHarvester + name: harvester + components: + - type: Sprite + layers: + - state: harvester + map: ["enum.DamageStateVisualLayers.Base"] + - type: DamageStateVisuals + states: + Alive: + Base: harvester + Dead: + Base: harvester_dead + - type: MobThresholds + thresholds: + 0: Alive + 150: Dead + - type: MeleeWeapon + damage: + types: + Blunt: 5 + Slash: 10 + Structural: 5 + +- type: entity + parent: BaseMobArgocyte + id: MobArgocyteCrawler + name: crawler + description: Deadly, pack-animals that maul unsuspecting travelers. + components: + - type: Sprite + layers: + - state: crawler + map: ["enum.DamageStateVisualLayers.Base"] + - type: DamageStateVisuals + states: + Alive: + Base: crawler + Dead: + Base: crawler_dead + - type: MobThresholds + thresholds: + 0: Alive + 150: Dead + - type: MeleeWeapon + damage: + types: + Blunt: 15 + Slash: 5 + Structural: 5 + - type: MovementSpeedModifier + baseSprintSpeed : 6.5 + baseWalkSpeed: 5 + +- type: entity + parent: BaseMobArgocyte + id: MobArgocyteEnforcer + name: enforcer + components: + - type: Sprite + layers: + - state: enforcer + map: ["enum.DamageStateVisualLayers.Base"] + - type: DamageStateVisuals + states: + Alive: + Base: enforcer + Dead: + Base: enforcer_dead + - type: MobThresholds + thresholds: + 0: Alive + 300: Dead + - type: MeleeWeapon + damage: + types: + Blunt: 10 + Slash: 15 + Structural: 10 + - type: MovementSpeedModifier + baseSprintSpeed : 3.5 + baseWalkSpeed: 3 + +- type: entity + parent: BaseMobArgocyte + id: MobArgocyteFounder + name: founder + components: + - type: Sprite + sprite: Mobs/Aliens/Argocyte/argocyte_large.rsi + layers: + - state: founder + map: ["enum.DamageStateVisualLayers.Base"] + - type: DamageStateVisuals + states: + Alive: + Base: founder + Dead: + Base: founder_dead + - type: Fixtures + fixtures: + fix1: + shape: + # Circles, cuz rotation of rectangles looks very bad + !type:PhysShapeCircle + radius: 0.75 + density: 300 + mask: + - MobMask + layer: + - MobLayer + - type: MobThresholds + thresholds: + 0: Alive + 500: Dead + - type: MeleeWeapon + damage: + types: + Blunt: 25 + Structural: 25 + - type: MovementSpeedModifier + baseSprintSpeed : 3 + baseWalkSpeed: 3 + +- type: entity + parent: BaseMobArgocyte + id: MobArgocyteLeviathing + name: leviathing + components: + - type: Sprite + sprite: Mobs/Aliens/Argocyte/argocyte_large.rsi + layers: + - state: leviathing + map: ["enum.DamageStateVisualLayers.Base"] + - type: DamageStateVisuals + states: + Alive: + Base: leviathing + Dead: + Base: leviathing_dead + - type: Fixtures + fixtures: + fix1: + shape: + # Circles, cuz rotation of rectangles looks very bad + !type:PhysShapeCircle + radius: 0.75 + density: 300 + mask: + - MobMask + layer: + - MobLayer + - type: MobThresholds + thresholds: + 0: Alive + 1000: Dead + - type: MeleeWeapon + damage: + types: + Blunt: 75 + Structural: 50 diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/behonker.yml b/Resources/Prototypes/Entities/Mobs/NPCs/behonker.yml index a613c7c4ad0..cb7b9f4c015 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/behonker.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/behonker.yml @@ -1,6 +1,6 @@ - type: entity name: behonker - parent: SimpleSpaceMobBase + parent: [ SimpleSpaceMobBase, FlyingMobBase ] id: BaseMobBehonker abstract: true description: A floating demon aspect of the honkmother. @@ -70,8 +70,6 @@ groups: - id: Medicine - id: Poison - - type: MovementAlwaysTouching - - type: NoSlip - type: Butcherable spawned: - id: MaterialBananium1 diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml b/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml index 2957ab9e17f..5f01f863b18 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml @@ -1,7 +1,7 @@ - type: entity name: space carp id: BaseMobCarp - parent: SimpleSpaceMobBase + parent: [ SimpleSpaceMobBase, FlyingMobBase ] description: It's a space carp. abstract: true components: @@ -39,10 +39,9 @@ - type: MobThresholds thresholds: 0: Alive - 100: Dead + 50: Dead - type: Stamina critThreshold: 100 - - type: MovementAlwaysTouching - type: DamageStateVisuals states: Alive: @@ -68,13 +67,14 @@ Slash: 10 - type: TypingIndicator proto: alien - - type: NoSlip - type: Tag tags: - Carp - DoorBumpOpener - type: ReplacementAccent accent: genericAggressive + - type: Speech + speechVerb: LargeMob - type: entity parent: BaseMobCarp diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/flying_animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/flying_animals.yml new file mode 100644 index 00000000000..c6846b8ef4b --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/NPCs/flying_animals.yml @@ -0,0 +1,11 @@ +# Used for entities that are considered flying, +# i.e. shouldnt slip, have free movement in weightlesness, and should go over chasms/lava +- type: entity + id: FlyingMobBase + abstract: true + components: + - type: Physics + bodyStatus: InAir + - type: NoSlip + - type: MovementAlwaysTouching + - type: CanMoveInAir diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/lavaland.yml b/Resources/Prototypes/Entities/Mobs/NPCs/lavaland.yml new file mode 100644 index 00000000000..23cc31a179c --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/NPCs/lavaland.yml @@ -0,0 +1,147 @@ +- type: entity + name: watcher + id: MobWatcherBase + parent: [ SimpleSpaceMobBase, FlyingMobBase ] + abstract: true + description: It's like its staring right through you. + components: + - type: NpcFactionMember + factions: + - SimpleHostile + - type: HTN + rootTask: + task: SimpleRangedHostileCompound + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Aliens/Lavaland/watcher.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: base + - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] + state: unshaded + shader: unshaded + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.30 + density: 80 + mask: + - FlyingMobMask + layer: + - FlyingMobLayer + - type: DamageStateVisuals + states: + Alive: + Base: base + BaseUnshaded: unshaded + Dead: + Base: dead + BaseUnshaded: dead-unshaded + - type: MobThresholds + thresholds: + 0: Alive + 50: Dead + - type: MovementSpeedModifier + baseWalkSpeed: 5 + baseSprintSpeed: 7 + - type: ProjectileBatteryAmmoProvider + proto: WatcherBolt + fireCost: 50 + - type: BatterySelfRecharger + autoRecharge: true + autoRechargeRate: 50 + - type: Battery + maxCharge: 1000 + startingCharge: 1000 + - type: Gun + fireRate: 0.5 + useKey: false + selectedMode: SemiAuto + availableModes: + - SemiAuto + soundGunshot: /Audio/Weapons/Guns/Gunshots/taser2.ogg + - type: CombatMode + - type: InteractionPopup + successChance: 0.3 + interactSuccessString: petting-success-slimes + interactFailureString: petting-failure-generic + interactSuccessSound: + path: /Audio/Animals/lizard_happy.ogg + +- type: entity + id: MobWatcherLavaland + parent: MobWatcherBase + components: + - type: Sprite + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: base + - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] + state: unshaded + shader: unshaded + color: red + - type: PointLight + radius: 1.5 + energy: 0.5 + color: red + +- type: entity + id: MobWatcherIcewing + parent: MobWatcherBase + name: icewing watcher + components: + - type: Sprite + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: base + - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] + state: unshaded + shader: unshaded + color: deepskyblue + - type: PointLight + radius: 1.5 + energy: 1 + color: deepskyblue + +- type: entity + id: MobWatcherMagmawing + parent: MobWatcherBase + name: magmawing watcher + components: + - type: Sprite + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: base + - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] + state: unshaded + shader: unshaded + color: orangered + - type: PointLight + radius: 1.5 + energy: 1 + color: orangered + - type: ProjectileBatteryAmmoProvider + proto: WatcherBoltMagmawing + fireCost: 50 + +- type: entity + id: MobWatcherPride + parent: MobWatcherBase + name: pride watcher + suffix: ADMEME + description: This rare subspecies only appears in June. + components: + - type: Sprite + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: base + - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] + state: unshaded + shader: unshaded + - type: PointLight + radius: 1.5 + energy: 1 + - type: RgbLightController + layers: [ 1 ] diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml index 779d130426c..8dce3787562 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml @@ -29,6 +29,7 @@ spawned: - id: FoodMeatCorgi amount: 2 + - id: MaterialHideCorgi - type: Tag tags: - CannotSuicide @@ -57,6 +58,7 @@ - id: FoodMeatCorgi amount: 2 - id: SheetSteel1 + - id: MaterialHideCorgi - type: entity name: Lisa @@ -389,6 +391,10 @@ components: - type: InteractionPopup successChance: 1.0 # Hey, c'mon, this is Morty we're talking about here. + interactSuccessString: petting-success-possum + interactFailureString: petting-failure-possum + interactSuccessSound: + path: /Audio/Animals/snake_hiss.ogg - type: Grammar attributes: proper: true @@ -406,6 +412,10 @@ components: - type: InteractionPopup successChance: 0.7 + interactSuccessString: petting-success-raccoon + interactFailureString: petting-failure-raccoon + interactSuccessSound: + path: /Audio/Animals/raccoon_chatter.ogg - type: Grammar attributes: proper: true @@ -421,6 +431,12 @@ id: MobAlexander description: Chef's finest colleague. components: + - type: InteractionPopup + successChance: 1 + interactSuccessString: petting-success-pig + interactFailureString: petting-failure-pig + interactSuccessSound: + path: /Audio/Animals/pig_oink.ogg - type: Grammar attributes: gender: male @@ -437,6 +453,10 @@ components: - type: InteractionPopup successChance: 1 + interactSuccessString: petting-success-soft-floofy + interactFailureString: petting-failure-generic + interactSuccessSound: + path: /Audio/Animals/fox_squeak.ogg - type: Butcherable spawned: - id: FoodMeat @@ -473,6 +493,10 @@ - type: GhostTakeoverAvailable - type: InteractionPopup successChance: 1 + interactSuccessString: petting-success-hamster + interactFailureString: petting-failure-hamster + interactSuccessSound: + path: /Audio/Animals/fox_squeak.ogg - type: Butcherable spawned: - id: FoodMeat @@ -493,6 +517,12 @@ id: MobSpiderShiva description: The first defender of the station. components: + - type: InteractionPopup + successChance: 0.5 # spider is mean + interactSuccessString: petting-success-tarantula + interactFailureString: petting-failure-hamster + interactSuccessSound: + path: /Audio/Animals/snake_hiss.ogg - type: NpcFactionMember factions: - PetsNT @@ -563,7 +593,11 @@ description: Willow the boxing kangaroo. components: - type: InteractionPopup - successChance: 1 + successChance: 0.8 + interactSuccessString: petting-success-kangaroo + interactFailureString: petting-failure-kangaroo + interactSuccessSound: + path: /Audio/Animals/kangaroo_grunt.ogg - type: Grammar attributes: proper: true @@ -656,6 +690,10 @@ flavorKind: station-event-random-sentience-flavor-slime - type: MobPrice price: 3000 # it is a truly valuable creature + - type: GhostRole + makeSentient: true + name: ghost-role-information-smile-name + description: ghost-role-information-smile-description - type: entity name: Pun Pun @@ -682,5 +720,6 @@ tags: - CannotSuicide - DoorBumpOpener + - VimPilot - type: Loadout prototypes: [ MobMonkeyGear ] diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml b/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml index 96d2ebb2939..9472954cbb3 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml @@ -93,23 +93,11 @@ - FootstepSound - type: NoSlip - type: RatKing - actionRaiseArmy: - useDelay: 4 - icon: Interface/Actions/ratKingArmy.png - name: rat-king-raise-army-name - description: rat-king-raise-army-description - itemIconStyle: NoItem - event: !type:RatKingRaiseArmyActionEvent hungerPerArmyUse: 25 - actionDomain: - useDelay: 10 - icon: Interface/Actions/ratKingDomain.png - name: rat-king-domain-name - description: rat-king-domain-description - itemIconStyle: NoItem - event: !type:RatKingDomainActionEvent hungerPerDomainUse: 50 - type: MobsterAccent + - type: Speech + speechVerb: SmallMob - type: Butcherable spawned: - id: ClothingHeadHatFancyCrown #how did that get there? @@ -282,6 +270,32 @@ price: 500 # rat wealth - type: MobsterAccent isBoss: false + - type: Speech + speechVerb: SmallMob - type: GuideHelp guides: - MinorAntagonists + +- type: entity + id: ActionRatKingRaiseArmy + name: Raise Army + description: Spend some hunger to summon an allied rat to help defend you. + noSpawn: true + components: + - type: InstantAction + icon: Interface/Actions/ratKingArmy.png + itemIconStyle: NoItem + event: !type:RatKingRaiseArmyActionEvent + useDelay: 4 + +- type: entity + id: ActionRatKingDomain + name: Rat King's Domain + description: Spend some hunger to release a cloud of miasma into the air. + noSpawn: true + components: + - type: InstantAction + useDelay: 10 + icon: Interface/Actions/ratKingDomain.png + itemIconStyle: NoItem + event: !type:RatKingDomainActionEvent diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml b/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml index 1c05e39431f..7ce409325c6 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml @@ -43,6 +43,9 @@ - type: Actions - type: Eye drawFov: false + visMask: + - Normal + - Ghost - type: ContentEye maxZoom: 1.2, 1.2 - type: DoAfter @@ -78,3 +81,5 @@ - of - RevenantAdjective - RevenantTheme + - type: Speech + speechVerb: Ghost diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml index 59b383de121..aaeeaf0bf6f 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml @@ -110,63 +110,77 @@ - type: GuideHelp guides: - Robotics + - type: Speech + speechVerb: Robotic + - type: TypingIndicator + proto: robot + - type: ZombieImmune - type: entity - parent: MobSiliconBase + parent: [ MobSiliconBase, BaseVehicle] + id: MobSiliconBaseVehicle # for vehicles + abstract: true + components: + - type: NoSlip + - type: GhostTakeoverAvailable + - type: GhostRole + makeSentient: true + - type: UnpoweredFlashlight + - type: PointLight + enabled: false + radius: 3.5 + softness: 2 + mask: /Textures/Effects/LightMasks/cone.png + autoRot: true + +- type: entity + parent: MobSiliconBaseVehicle id: MobTaxiBot name: taxibot description: Give a ride? components: - - type: NoSlip - type: Sprite - drawdepth: Mobs sprite: Mobs/Silicon/Bots/taxibot.rsi layers: - state: taxibot map: ["enum.VehicleVisualLayers.AutoAnimate"] - noRot: true - - type: IntrinsicRadioReceiver - - type: ActiveRadio - channels: - - Common - type: GhostRole - makeSentient: true name: ghost-role-information-taxibot-name description: ghost-role-information-taxibot-description - - type: GhostTakeoverAvailable - - type: MovementSpeedModifier - weightlessModifier: 0 - acceleration: 2 - friction: 2 - frictionNoInput: 6 - baseWalkSpeed: 3 - baseSprintSpeed: 6 - type: Strap buckleOffset: "0, 0" maxBuckleDistance: 1 - - type: AmbientSound - sound: "/Audio/Effects/Vehicle/vehicleengineidle.ogg" - range: 10 - volume: -10 - enabled: true - type: Construction graph: TaxiBot node: bot - - type: UnpoweredFlashlight - toggleAction: - name: action-name-toggle-light - description: action-description-toggle-light - icon: { sprite: Objects/Tools/flashlight.rsi, state: flashlight } - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - event: !type:ToggleActionEvent - - type: PointLight - enabled: false - radius: 3.5 - softness: 2 - mask: /Textures/Effects/LightMasks/cone.png - autoRot: true - - type: TypingIndicator - proto: robot + +- type: entity + parent: MobSiliconBaseVehicle + id: MobSupplyBot + name: supplybot + description: Delivers cargo! + components: + - type: Sprite + sprite: Mobs/Silicon/Bots/supplybot.rsi + layers: + - state: supplybot + map: ["enum.VehicleVisualLayers.AutoAnimate"] + - type: GhostRole + name: ghost-role-information-supplybot-name + description: ghost-role-information-supplybot-description + - type: Construction + graph: SupplyBot + node: bot + - type: Storage + capacity: 250 + - type: UserInterface + interfaces: + - key: enum.StorageUiKey.Key + type: StorageBoundUserInterface + - type: ContainerContainer + containers: + storagebase: !type:Container + ents: [] - type: entity parent: MobSiliconBase @@ -178,11 +192,12 @@ sound: collection: BikeHorn - type: Sprite - drawdepth: Mobs sprite: Mobs/Silicon/Bots/honkbot.rsi state: honkbot - type: Slippery launchForwardsMultiplier: 2 + - type: Speech + speechVerb: Cluwne - type: StepTrigger intersectRatio: 0.2 - type: Fixtures @@ -225,11 +240,7 @@ sound: collection: CluwneHorn - type: Sprite - drawdepth: Mobs - sprite: Mobs/Silicon/Bots/honkbot.rsi state: jonkbot - - type: Slippery - launchForwardsMultiplier: 2 - type: Construction graph: JonkBot node: bot @@ -258,7 +269,6 @@ description: The creep of automation now threatening space janitors. components: - type: Sprite - drawdepth: Mobs sprite: Mobs/Silicon/Bots/cleanbot.rsi state: cleanbot - type: Construction @@ -315,11 +325,8 @@ emergencyMed: SpaceDrugs emergencyMedAmount: 25 - type: Sprite - drawdepth: Mobs sprite: Mobs/Silicon/Bots/medibot.rsi state: medibot - - type: Speech - speechVerb: Robotic - type: HTN rootTask: task: MedibotCompound @@ -347,7 +354,6 @@ - key: enum.StrippingUiKey.Key type: StrippableBoundUserInterface - type: Sprite - drawdepth: Mobs layers: - map: ["enum.DamageStateVisualLayers.Base"] state: mimebot diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml b/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml index 887a800e7ac..1cf56769c61 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml @@ -1,8 +1,8 @@ - type: entity save: false - abstract: true - id: SimpleSpaceMobBase # Mob without barotrauma, freezing and asphyxiation (for space carps!?) + id: BaseSimpleMob suffix: AI + abstract: true components: - type: LagCompensation - type: Tag @@ -15,14 +15,8 @@ Acidic: [Touch, Ingestion] - type: InputMover - type: MobMover - - type: HTN - rootTask: - task: IdleCompound - type: Input context: "human" - - type: NpcFactionMember - factions: - - SimpleNeutral - type: MovementSpeedModifier baseWalkSpeed : 4 baseSprintSpeed : 4 @@ -59,26 +53,10 @@ - MobMask layer: - MobLayer - - type: SolutionContainerManager - - type: Bloodstream - bloodlossDamage: - types: - Bloodloss: - 1 - bloodlossHealDamage: - types: - Bloodloss: - -1 - type: Damageable damageContainer: Biological - type: RadiationReceiver - type: AtmosExposed - - type: Flammable - fireSpread: true - canResistFire: true - damage: - types: - Heat: 1 #per second, scales with number of fire 'stacks' - type: Temperature heatDamageThreshold: 360 coldDamageThreshold: 0 @@ -95,9 +73,9 @@ - type: MobStateActions actions: Critical: - - CritSuccumb - - CritFakeDeath - - CritLastWords + - ActionCritSuccumb + - ActionCritFakeDeath + - ActionCritLastWords - type: MobThresholds thresholds: 0: Alive @@ -113,7 +91,6 @@ behaviors: - !type:GibBehavior { } - type: HeatResistance - - type: CombatMode - type: Internals - type: StatusIcon - type: StatusEffects @@ -124,11 +101,45 @@ - ForcedSleep - TemporaryBlindness - Pacified - - type: Body - prototype: Animal - type: InjectableSolution solution: chemicals - type: Examiner + - type: Appearance + - type: RotationVisuals + defaultRotation: 0 + horizontalRotation: 0 + - type: Actions + - type: DoAfter + - type: Polymorphable + - type: Pullable + - type: Buckle + - type: StandingState + - type: Alerts + +- type: entity + save: false + abstract: true + parent: BaseSimpleMob + id: SimpleSpaceMobBase # Mob without barotrauma, freezing and asphyxiation (for space carps!?) + suffix: AI + components: + - type: NpcFactionMember + factions: + - SimpleNeutral + - type: HTN + rootTask: + task: IdleCompound + - type: SolutionContainerManager + - type: Bloodstream + bloodlossDamage: + types: + Bloodloss: + 1 + bloodlossHealDamage: + types: + Bloodloss: + -1 + - type: CombatMode - type: MeleeWeapon hidden: true angle: 0 @@ -136,22 +147,19 @@ damage: groups: Brute: 5 - - type: Appearance - - type: RotationVisuals - defaultRotation: 0 - horizontalRotation: 0 + - type: Body + prototype: Animal + - type: Flammable + fireSpread: true + canResistFire: true + damage: + types: + Heat: 1 #per second, scales with number of fire 'stacks' - type: FireVisuals sprite: Mobs/Effects/onfire.rsi normalState: Generic_mob_burning - - type: Actions - - type: DoAfter - type: Climbing - type: Flashable - - type: Polymorphable - - type: Pullable - - type: Buckle - - type: StandingState - - type: Alerts - type: NameIdentifier group: GenericNumber - type: SlowOnDamage diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml b/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml index 760d642eb17..85a0b2afa44 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml @@ -117,6 +117,8 @@ makeSentient: true name: ghost-role-information-slimes-name description: ghost-role-information-slimes-description + - type: Speech + speechVerb: Slime - type: entity name: blue slime diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/space.yml b/Resources/Prototypes/Entities/Mobs/NPCs/space.yml index c1b15e3bfbb..f803a15aed9 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/space.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/space.yml @@ -34,7 +34,7 @@ - type: MobThresholds thresholds: 0: Alive - 150: Dead + 100: Dead - type: Stamina critThreshold: 150 - type: MovementAlwaysTouching @@ -66,6 +66,8 @@ energy: 2 color: "#4faffb" - type: GhostTakeoverAvailable + - type: Speech + speechVerb: LargeMob - type: entity name: space bear @@ -192,9 +194,6 @@ interfaces: - key: enum.StrippingUiKey.Key type: StrippableBoundUserInterface - radius: 1.2 - energy: 2 - color: "#4faffb" - type: GhostRole prob: 0.25 name: ghost-role-information-space-kangaroo-name @@ -240,7 +239,7 @@ - type: MobThresholds thresholds: 0: Alive - 130: Dead + 90: Dead - type: Stamina critThreshold: 150 - type: DamageStateVisuals @@ -306,6 +305,8 @@ prob: 0.30 name: ghost-role-information-space-spider-name description: ghost-role-information-space-spider-description + - type: Speech + speechVerb: Arachnid - type: entity id: MobSpiderSpaceSalvage diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/spacetick.yml b/Resources/Prototypes/Entities/Mobs/NPCs/spacetick.yml index 4663360e41f..908be3994ca 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/spacetick.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/spacetick.yml @@ -83,6 +83,8 @@ - type: GhostTakeoverAvailable - type: ReplacementAccent accent: genericAggressive + - type: Speech + speechVerb: SmallMob - type: entity id: MobTickSalvage diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml b/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml index ab746e4258e..2a0b748ec48 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml @@ -112,8 +112,8 @@ - type: NoSlip - type: Perishable #Ummmm the acid kills a lot of the bacteria or something molsPerSecondPerUnitMass: 0.0005 - - type: ReplacementAccent - accent: genericAggressive + - type: Speech + speechVerb: LargeMob - type: entity name: Praetorian @@ -376,7 +376,7 @@ layer: - MobLayer - type: ReplacementAccent - accent: genericAggressive + accent: genericAggressive - type: entity name: space adder @@ -437,7 +437,7 @@ layer: - MobLayer - type: ReplacementAccent - accent: genericAggressive + accent: genericAggressive - type: entity name: space adder @@ -463,4 +463,4 @@ - type: SolutionTransfer maxTransferAmount: 1 - type: ReplacementAccent - accent: genericAggressive \ No newline at end of file + accent: genericAggressive diff --git a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml index 5961ee7a6e1..47baef63d01 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml @@ -30,6 +30,9 @@ - type: Access groups: - AllAccess + tags: + - NuclearOperative + - SyndicateAgent - type: UserInterface interfaces: - key: enum.SolarControlConsoleUiKey.Key @@ -48,59 +51,17 @@ - type: IntrinsicUI uis: - key: enum.SolarControlConsoleUiKey.Key - toggleAction: - name: action-name-show-solar-console - description: action-description-show-solar-console - icon: { sprite: Structures/Machines/parts.rsi, state: box_0 } - iconOn: Structures/Machines/parts.rsi/box_2.png - keywords: [ "AI", "console", "interface" ] - priority: -10 - event: !type:ToggleIntrinsicUIEvent + toggleAction: ActionAGhostShowSolar - key: enum.CommunicationsConsoleUiKey.Key - toggleAction: - name: action-name-show-communications-console - description: action-description-show-communications-console - icon: { sprite: Structures/Machines/parts.rsi, state: box_0 } - iconOn: Structures/Machines/parts.rsi/box_2.png - keywords: [ "AI", "console", "interface" ] - priority: -10 - event: !type:ToggleIntrinsicUIEvent + toggleAction: ActionAGhostShowCommunications - key: enum.RadarConsoleUiKey.Key - toggleAction: - name: action-name-show-radar-console - description: action-description-show-radar-console - icon: { sprite: Structures/Machines/parts.rsi, state: box_0 } - iconOn: Structures/Machines/parts.rsi/box_2.png - keywords: [ "AI", "console", "interface" ] - priority: -10 - event: !type:ToggleIntrinsicUIEvent + toggleAction: ActionAGhostShowRadar - key: enum.CargoConsoleUiKey.Orders - toggleAction: - name: action-name-show-cargo-console - description: action-description-show-cargo-console - icon: { sprite: Structures/Machines/parts.rsi, state: box_0 } - iconOn: Structures/Machines/parts.rsi/box_2.png - keywords: [ "AI", "console", "interface" ] - priority: -10 - event: !type:ToggleIntrinsicUIEvent + toggleAction: ActionAGhostShowCargo - key: enum.CrewMonitoringUIKey.Key - toggleAction: - name: action-name-show-crew-monitoring-console - description: action-description-crew-monitoring-console - icon: { sprite: Structures/Machines/parts.rsi, state: box_0 } - iconOn: Structures/Machines/parts.rsi/box_2.png - keywords: [ "AI", "console", "interface" ] - priority: -10 - event: !type:ToggleIntrinsicUIEvent + toggleAction: ActionAGhostShowCrewMonitoring - key: enum.GeneralStationRecordConsoleKey.Key - toggleAction: - name: action-name-show-station-records-console - description: action-description-station-records-console - icon: { sprite: Structures/Machines/parts.rsi, state: box_0 } - iconOn: Structures/Machines/parts.rsi/box_2.png - keywords: [ "AI", "console", "interface" ] - priority: -10 - event: !type:ToggleIntrinsicUIEvent + toggleAction: ActionAGhostShowStationRecords - type: SolarControlConsole # look ma i AM the computer! - type: CommunicationsConsole title: communicationsconsole-announcement-title-centcom @@ -123,3 +84,81 @@ - type: Stripping - type: SolutionScanner - type: IgnoreUIRange + +- type: entity + id: ActionAGhostShowSolar + name: Solar Control Interface + description: View a solar control interface. + noSpawn: true + components: + - type: InstantAction + icon: { sprite: Structures/Machines/parts.rsi, state: box_0 } + iconOn: Structures/Machines/parts.rsi/box_2.png + keywords: [ "AI", "console", "interface" ] + priority: -10 + event: !type:ToggleIntrinsicUIEvent { key: enum.SolarControlConsoleUiKey.Key } + +- type: entity + id: ActionAGhostShowCommunications + name: Communications Interface + description: View a communications interface. + noSpawn: true + components: + - type: InstantAction + icon: { sprite: Structures/Machines/parts.rsi, state: box_0 } + iconOn: Structures/Machines/parts.rsi/box_2.png + keywords: [ "AI", "console", "interface" ] + priority: -10 + event: !type:ToggleIntrinsicUIEvent { key: enum.CommunicationsConsoleUiKey.Key } + +- type: entity + id: ActionAGhostShowRadar + name: Mass Scanner Interface + description: View a mass scanner interface. + noSpawn: true + components: + - type: InstantAction + icon: { sprite: Structures/Machines/parts.rsi, state: box_0 } + iconOn: Structures/Machines/parts.rsi/box_2.png + keywords: [ "AI", "console", "interface" ] + priority: -10 + event: !type:ToggleIntrinsicUIEvent { key: enum.RadarConsoleUiKey.Key } + +- type: entity + id: ActionAGhostShowCargo + name: Cargo Ordering Interface + description: View a cargo ordering interface. + noSpawn: true + components: + - type: InstantAction + icon: { sprite: Structures/Machines/parts.rsi, state: box_0 } + iconOn: Structures/Machines/parts.rsi/box_2.png + keywords: [ "AI", "console", "interface" ] + priority: -10 + event: !type:ToggleIntrinsicUIEvent { key: enum.CargoConsoleUiKey.Orders } + +- type: entity + id: ActionAGhostShowCrewMonitoring + name: Crew Monitoring Interface + description: View a crew monitoring interface. + noSpawn: true + components: + - type: InstantAction + icon: { sprite: Structures/Machines/parts.rsi, state: box_0 } + iconOn: Structures/Machines/parts.rsi/box_2.png + keywords: [ "AI", "console", "interface" ] + priority: -10 + event: !type:ToggleIntrinsicUIEvent { key: enum.CrewMonitoringUIKey.Key } + +- type: entity + id: ActionAGhostShowStationRecords + name: Station Records Interface + description: View a station records Interface + noSpawn: true + components: + - type: InstantAction + icon: { sprite: Structures/Machines/parts.rsi, state: box_0 } + iconOn: Structures/Machines/parts.rsi/box_2.png + keywords: [ "AI", "console", "interface" ] + priority: -10 + event: !type:ToggleIntrinsicUIEvent { key: enum.GeneralStationRecordConsoleKey.Key } diff --git a/Resources/Prototypes/Entities/Mobs/Player/arachnid.yml b/Resources/Prototypes/Entities/Mobs/Player/arachnid.yml index b257e432031..71d29958ad1 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/arachnid.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/arachnid.yml @@ -7,7 +7,7 @@ - type: Respirator damage: types: - Asphyxiation: 1.5 # Make sure you have O2 on you at all times + Asphyxiation: 1.5 # This makes space and crit more lethal to arachnids. damageRecovery: types: Asphyxiation: -0.5 # Recovery will suck without chems diff --git a/Resources/Prototypes/Entities/Mobs/Player/dragon.yml b/Resources/Prototypes/Entities/Mobs/Player/dragon.yml index 99468733f71..8874b93e2d1 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/dragon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/dragon.yml @@ -1,5 +1,5 @@ - type: entity - parent: SimpleSpaceMobBase + parent: [ SimpleSpaceMobBase, FlyingMobBase ] id: BaseMobDragon suffix: "" name: space dragon @@ -76,8 +76,8 @@ - type: MobStateActions actions: Critical: - - CritSuccumb - - CritLastWords + - ActionCritSuccumb + - ActionCritLastWords - type: MobThresholds thresholds: 0: Alive @@ -90,8 +90,6 @@ groups: - id: Medicine - id: Poison - - type: MovementAlwaysTouching - - type: NoSlip - type: Butcherable spawned: - id: FoodMeatDragon @@ -123,11 +121,6 @@ - Door tags: - Wall - devourAction: - event: !type:DevourActionEvent - icon: Interface/Actions/devour.png - name: action-name-devour - description: action-description-devour - type: Tag tags: - CannotSuicide @@ -139,14 +132,7 @@ - type: Dragon spawnsLeft: 2 spawnsProto: MobCarpDragon - spawnRiftAction: - event: !type:DragonSpawnRiftActionEvent - icon: - sprite: Interface/Actions/carp_rift.rsi - state: icon - name: action-name-carp-rift - description: action-description-carp-rift - useDelay: 1 + spawnRiftAction: ActionSpawnRift - type: GuideHelp guides: - MinorAntagonists @@ -174,3 +160,26 @@ damage: groups: Brute: 15 + +- type: entity + id: ActionSpawnRift + name: Summon Carp Rift + description: Summons a carp rift that will periodically spawns carps. + noSpawn: true + components: + - type: InstantAction + icon: + sprite: Interface/Actions/carp_rift.rsi + state: icon + event: !type:DragonSpawnRiftActionEvent + useDelay: 1 + +- type: entity + id: ActionDevour + name: "[color=red]Devour[/color]" + description: Attempt to break a structure with your jaws or swallow a creature. + noSpawn: true + components: + - type: EntityTargetAction + icon: Interface/Actions/devour.png + event: !type:DevourActionEvent diff --git a/Resources/Prototypes/Entities/Mobs/Player/familiars.yml b/Resources/Prototypes/Entities/Mobs/Player/familiars.yml index 14c1a824e2c..65a47987e90 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/familiars.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/familiars.yml @@ -66,7 +66,7 @@ - type: MobThresholds thresholds: 0: Alive - 160: Dead + 120: Dead - type: Grammar attributes: gender: male diff --git a/Resources/Prototypes/Entities/Mobs/Player/guardian.yml b/Resources/Prototypes/Entities/Mobs/Player/guardian.yml index 0e07bb4acff..9be87dfe964 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/guardian.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/guardian.yml @@ -89,6 +89,11 @@ damage: types: Blunt: 20 + - type: MeleeSpeech + - type: UserInterface + interfaces: + - key: enum.MeleeSpeechUiKey.Key + type: MeleeSpeechBoundUserInterface - type: Actions - type: Guardian - type: InteractionPopup @@ -171,6 +176,8 @@ - type: FootstepModifier footstepSoundCollection: collection: FootstepClown + - type: Speech + speechVerb: Cluwne - type: TypingIndicator proto: holo - type: RandomSprite @@ -225,3 +232,15 @@ - type: RandomMetadata nameSegments: - names_clown + +- type: entity + id: ActionToggleGuardian + name: Toggle Guardian + description: Either manifests the guardian or recalls it back into your body + noSpawn: true + components: + - type: InstantAction + icon: Interface/Actions/manifest.png + event: !type:GuardianToggleActionEvent + useDelay: 2 + checkCanInteract: false diff --git a/Resources/Prototypes/Entities/Mobs/Player/human.yml b/Resources/Prototypes/Entities/Mobs/Player/human.yml index 7e63e6a2245..e893db08ab6 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/human.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/human.yml @@ -55,3 +55,24 @@ - type: NpcFactionMember factions: - Syndicate + +# Space Ninja +- type: entity + noSpawn: true + name: Space Ninja + parent: MobHuman + id: MobHumanSpaceNinja + components: + - type: Loadout + prototypes: [SpaceNinjaGear] + - type: NpcFactionMember + factions: + - Syndicate + - type: SpaceNinja + - type: AutoImplant + implants: + - MicroBombImplant + - type: RandomMetadata + nameSegments: + - names_ninja_title + - names_ninja diff --git a/Resources/Prototypes/Entities/Mobs/Player/observer.yml b/Resources/Prototypes/Entities/Mobs/Player/observer.yml index 30e71f22bd6..cca1f0ae563 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/observer.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/observer.yml @@ -10,9 +10,6 @@ - type: MindContainer - type: Clickable - type: InteractionOutline - - type: Physics - bodyType: KinematicController - fixedRotation: true - type: Fixtures fixtures: fix1: @@ -60,6 +57,58 @@ baseSprintSpeed: 12 baseWalkSpeed: 8 - type: MovementIgnoreGravity + - type: Physics + bodyType: KinematicController + bodyStatus: InAir + - type: CanMoveInAir - type: Tag tags: - BypassInteractionRangeChecks + +- type: entity + id: ActionGhostBoo + name: Boo! + description: Scare your crew members because of boredom! + noSpawn: true + components: + - type: InstantAction + icon: Interface/Actions/scream.png + checkCanInteract: false + event: !type:BooActionEvent + useDelay: 120 + +- type: entity + id: ActionToggleLighting + name: Toggle All Lighting + description: Toggle all light rendering to better observe dark areas. + noSpawn: true + components: + - type: InstantAction + icon: Interface/VerbIcons/light.svg.192dpi.png + clientExclusive: true + checkCanInteract: false + event: !type:ToggleLightingActionEvent + +- type: entity + id: ActionToggleFov + name: Toggle FoV + description: Toggles field-of-view in order to see what players see. + noSpawn: true + components: + - type: InstantAction + icon: Interface/VerbIcons/vv.svg.192dpi.png + clientExclusive: true + checkCanInteract: false + event: !type:ToggleFoVActionEvent + +- type: entity + id: ActionToggleGhosts + name: Toggle Ghosts + description: Toggle the visibility of other ghosts. + noSpawn: true + components: + - type: InstantAction + icon: { sprite: Mobs/Ghosts/ghost_human.rsi, state: icon } + clientExclusive: true + checkCanInteract: false + event: !type:ToggleGhostsActionEvent diff --git a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml index 903a849ad85..e5c0a61677e 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml @@ -171,12 +171,6 @@ doAfterDelay: 8 - type: Actions - type: UnpoweredFlashlight - toggleAction: - name: action-name-toggle-light - description: action-description-toggle-light - icon: { sprite: Objects/Tools/flashlight.rsi, state: flashlight } - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - event: !type:ToggleActionEvent - type: PointLight enabled: false radius: 3.5 diff --git a/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml b/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml index 1b77d703d20..a5d075087ac 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml @@ -1,56 +1,63 @@ - type: entity save: false - name: Urist McWeb + name: Urist McWebs parent: BaseMobOrganic id: BaseMobArachnid abstract: true components: - # The important nessessities - type: Body prototype: Arachnid - requiredLegs: 2 + requiredLegs: 2 # It would be funny if arachnids could use their little back limbs to move around once they lose their legs, but just something to consider post-woundmed - type: Perishable - type: HumanoidAppearance species: Arachnid - type: Hunger - baseDecayRate: 0.0125 - starvationDamage: # Not sure if this should be changed. + baseDecayRate: 0.0125 # Spiders have slow metabolisms all things considered, so I decided to just make their hunger drain slower. + starvationDamage: types: Cold: 0.1 Bloodloss: 0.1 - type: Thirst - baseDecayRate: 0.0125 + baseDecayRate: 0.0125 # Read comment in hunger # Damage (Self) - - type: Damageable - damageContainer: Biological - damageModifierSet: Arachnid - type: Bloodstream - bloodReagent: SpiderBlood + bloodReagent: SpiderBlood # would be cool if they had to drink copper instead of iron but that might just be more bloat to deal with. # Damage (Others) - type: MeleeWeapon animation: WeaponArcClaw soundHit: collection: AlienClaw damage: - types: # Realisically this is more like 5 slash + types: # Realisically this is more like 5 slash. You can figure out the logistics if slash is better than blunt/pierce yourself. Slash: 4 + # Fun + - type: Sericulture + action: ActionSericulture + productionLength: 3 + entityProduced: MaterialWebSilk1 + hungerCost: 9 # Should total to 12 total silk on full hunger + - type: Butcherable + butcheringType: Spike + spawned: + - id: FoodMeatSpider + amount: 5 # Visual & Audio - type: DamageVisuals damageOverlayGroups: Brute: sprite: Mobs/Effects/brute_damage.rsi - color: "#162581" + color: "#162581" # Why so blue? - type: Speech - speechVerb: Insect - speechSounds: Arachnid + speechVerb: Arachnid + speechSounds: Arachnid # TODO: Abuse my mic more. Do that in a later PR. - type: Vocal sounds: Male: UnisexArachnid Female: UnisexArachnid Unsexed: UnisexArachnid - - type: Sprite - noRot: true - drawdepth: Mobs + - type: TypingIndicator + proto: spider + - type: Sprite # I'd prefer if these maps were better. Insert map pun here. layers: - map: [ "enum.HumanoidVisualLayers.Chest" ] - map: [ "enum.HumanoidVisualLayers.Head" ] @@ -82,7 +89,7 @@ - map: [ "outerClothing" ] - map: [ "eyes" ] - map: [ "belt" ] - - map: [ "enum.HumanoidVisualLayers.Tail" ] # Better here? + - map: [ "enum.HumanoidVisualLayers.Tail" ] # Mentioned in moth code: This needs renaming lol. - map: [ "neck" ] - map: [ "back" ] - map: [ "enum.HumanoidVisualLayers.FacialHair" ] @@ -100,19 +107,8 @@ visible: false - map: [ "clownedon" ] # Dynamically generated sprite: "Effects/creampie.rsi" - state: "creampie_human" + state: "creampie_arachnid" visible: false - # Misc - - type: Sericulture - actionProto: SericultureAction - productionLength: 3 - entityProduced: MaterialWebSilk1 - hungerCost: 5 - - type: Butcherable - butcheringType: Spike - spawned: - - id: FoodMeatSpider - amount: 5 - type: entity save: false @@ -122,8 +118,6 @@ noSpawn: true description: A dummy arachnid meant to be used in character setup. # Hey! It's not dumb :( components: - - type: Inventory - templateId: arachnid - type: HumanoidAppearance species: Arachnid diff --git a/Resources/Prototypes/Entities/Mobs/Species/base.yml b/Resources/Prototypes/Entities/Mobs/Species/base.yml index 5dfe46021f6..464e8b510bf 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/base.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/base.yml @@ -5,6 +5,7 @@ id: BaseMobOrganic noSpawn: true components: + - type: FloorOcclusion - type: LagCompensation - type: RangedDamageSound soundGroups: @@ -202,9 +203,9 @@ - type: MobStateActions actions: Critical: - - CritSuccumb - - CritFakeDeath - - CritLastWords + - ActionCritSuccumb + - ActionCritFakeDeath + - ActionCritLastWords - type: MobThresholds thresholds: 0: Alive @@ -270,8 +271,7 @@ attackRate: 1 damage: types: - # Actually does 5 damage due to +25% damage bonus on all single target melee attacks - Blunt: 4 + Blunt: 5 - type: Pullable - type: DoAfter - type: CreamPied @@ -312,6 +312,7 @@ deathPenalty: 0.01 # However they really ought to be living and intact, otherwise they're worth 100x less. - type: ContentEye - type: SleepEmitSound + - type: SSDIndicator - type: entity save: false diff --git a/Resources/Prototypes/Entities/Mobs/Species/diona.yml b/Resources/Prototypes/Entities/Mobs/Species/diona.yml index 9c55339ab26..59f050c5d98 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/diona.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/diona.yml @@ -35,6 +35,44 @@ amount: 5 - type: Bloodstream bloodReagent: Water + - type: Reactive + groups: + Flammable: [ Touch ] + Extinguish: [ Touch ] + Acidic: [Touch, Ingestion] + reactions: + - reagents: [Water, SpaceCleaner] + methods: [Touch] + effects: + - !type:WashCreamPieReaction + - reagents: [ PlantBGone ] + methods: [ Touch ] + effects: + - !type:HealthChange + scaled: true + damage: + types: + Blunt: 2 + Slash: 2 + Piercing: 3 + - !type:PopupMessage + type: Local + visualType: Large + messages: [ "diona-hurt-by-herbicide-popup" ] + probability: 0.66 + - reagents: [ WeedKiller ] + methods: [ Touch ] + effects: + - !type:HealthChange + scaled: true + damage: + types: + Poison: 5 + - !type:PopupMessage + type: Local + visualType: Large + messages: [ "diona-hurt-by-herbicide-popup" ] + probability: 0.66 - type: Fixtures fixtures: fix1: @@ -53,6 +91,8 @@ - type: MovementSpeedModifier baseWalkSpeed : 1.5 baseSprintSpeed : 3.5 + - type: Speech + speechVerb: Plant - type: Vocal sounds: Male: UnisexDiona diff --git a/Resources/Prototypes/Entities/Mobs/Species/moth.yml b/Resources/Prototypes/Entities/Mobs/Species/moth.yml index c8a79f107c5..b79ea21bda6 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/moth.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/moth.yml @@ -23,7 +23,7 @@ damageContainer: Biological damageModifierSet: Moth - type: Speech - speechVerb: Insect + speechVerb: Moth - type: TypingIndicator proto: moth - type: Butcherable diff --git a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml index 8233a63eb97..0e42996e6a9 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml @@ -43,8 +43,7 @@ animation: WeaponArcPunch damage: types: - # Actually does 5 damage due to +25% damage bonus on all single target melee attacks - Piercing: 4 + Piercing: 5 - type: Temperature heatDamageThreshold: 400 coldDamageThreshold: 285 diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml index c9777db2fac..e54121f63cc 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml @@ -669,7 +669,7 @@ # Tastes like bread, butter. - type: entity - name: f toast + name: french toast parent: FoodBreadSliceBase id: FoodBreadFrenchToast description: A slice of bread soaked in a beaten egg mixture. diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml index 82b6edcc14c..51278feb845 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml @@ -9,7 +9,6 @@ flavors: - sweet - type: Food - trash: FoodPlate - type: Sprite sprite: Objects/Consumable/Food/Baked/cake.rsi - type: SolutionContainerManager @@ -36,7 +35,6 @@ flavors: - sweet - type: Food - trash: FoodPlateSmall - type: SolutionContainerManager solutions: food: @@ -61,7 +59,6 @@ components: - type: Sprite layers: - - state: plate - state: plain - state: alpha-filling color: blue @@ -76,8 +73,6 @@ components: - type: Sprite layers: - - state: plate-small - - state: plate-slice-shading - state: plain-slice - state: alpha-slice-filling color: blue @@ -91,9 +86,7 @@ description: A plain cake, not a lie. components: - type: Sprite - layers: - - state: plate - - state: plain + state: plain - type: SliceableFood slice: FoodCakePlainSlice @@ -105,10 +98,7 @@ id: FoodCakePlainSlice components: - type: Sprite - layers: - - state: plate-small - - state: plate-slice-shading - - state: plain-slice + state: plain-slice # Tastes like sweetness, cake. - type: entity @@ -118,9 +108,7 @@ description: A favorite desert of a certain wascally wabbit. components: - type: Sprite - layers: - - state: plate - - state: carrot + state: carrot - type: SliceableFood slice: FoodCakeCarrotSlice - type: SolutionContainerManager @@ -144,10 +132,7 @@ description: Carrotty slice of carrot cake. Carrots are good for your eyes! components: - type: Sprite - layers: - - state: plate-small - - state: plate-slice-shading - - state: carrot-slice + state: carrot-slice - type: SolutionContainerManager solutions: food: @@ -170,9 +155,7 @@ description: A squishy cake-thing. components: - type: Sprite - layers: - - state: plate - - state: brain + state: brain - type: SliceableFood slice: FoodCakeBrainSlice @@ -184,10 +167,7 @@ description: Lemme tell you something about prions. THEY'RE DELICIOUS. components: - type: Sprite - layers: - - state: plate-small - - state: plate-slice-shading - - state: brain-slice + state: brain-slice # Tastes like sweetness, cake, brains. - type: entity @@ -197,9 +177,7 @@ description: DANGEROUSLY cheesy. components: - type: Sprite - layers: - - state: plate - - state: cheese + state: cheese - type: SliceableFood slice: FoodCakeCheeseSlice @@ -210,10 +188,7 @@ description: Slice of pure cheestisfaction. components: - type: Sprite - layers: - - state: plate-small - - state: plate-slice-shading - - state: cheese-slice + state: cheese-slice # Tastes like sweetness, cream cheese. - type: entity @@ -223,9 +198,7 @@ description: A cake with added orange. components: - type: Sprite - layers: - - state: plate - - state: orange + state: orange - type: SliceableFood slice: FoodCakeOrangeSlice @@ -235,10 +208,7 @@ id: FoodCakeOrangeSlice components: - type: Sprite - layers: - - state: plate-small - - state: plate-slice-shading - - state: orange-slice + state: orange-slice # Tastes like sweetness, cake, oranges. - type: entity @@ -248,9 +218,7 @@ description: A cake with added lime. components: - type: Sprite - layers: - - state: plate - - state: lime + state: lime - type: SliceableFood slice: FoodCakeLimeSlice @@ -260,10 +228,7 @@ id: FoodCakeLimeSlice components: - type: Sprite - layers: - - state: plate-small - - state: plate-slice-shading - - state: lime-slice + state: lime-slice # Tastes like sweetness, cake, limes. - type: entity @@ -273,9 +238,7 @@ description: A cake with added lemon. components: - type: Sprite - layers: - - state: plate - - state: lemon + state: lemon - type: SliceableFood slice: FoodCakeLemonSlice @@ -285,10 +248,7 @@ id: FoodCakeLemonSlice components: - type: Sprite - layers: - - state: plate-small - - state: plate-slice-shading - - state: lemon-slice + state: lemon-slice # Tastes like sweetness, cake, lemons. - type: entity @@ -298,9 +258,7 @@ description: A cake with added chocolate. components: - type: Sprite - layers: - - state: plate - - state: chocolate + state: chocolate - type: SliceableFood slice: FoodCakeChocolateSlice - type: SolutionContainerManager @@ -323,9 +281,7 @@ id: FoodCakeChocolateSlice components: - type: Sprite - layers: - - state: plate-small - - state: chocolate-slice + state: chocolate-slice - type: SolutionContainerManager solutions: food: @@ -347,12 +303,8 @@ id: FoodCakeApple description: A cake centred with apple. components: - - type: Food - trash: FoodPlate - type: Sprite - layers: - - state: plate - - state: apple + state: apple - type: SliceableFood slice: FoodCakeAppleSlice @@ -362,13 +314,8 @@ id: FoodCakeAppleSlice description: A slice of heavenly cake. components: - - type: Food - trash: FoodPlateSmall - type: Sprite - layers: - - state: plate-small - - state: plate-slice-shading - - state: apple-slice + state: apple-slice # Tastes like sweetness, cake, slime. - type: entity @@ -377,12 +324,8 @@ id: FoodCakeSlime description: A cake made of slimes. Probably not electrified. components: - - type: Food - trash: FoodPlate - type: Sprite - layers: - - state: plate - - state: slime + state: slime - type: SliceableFood slice: FoodCakeSlimeSlice @@ -392,13 +335,8 @@ id: FoodCakeSlimeSlice description: A slice of slime cake. components: - - type: Food - trash: FoodPlateSmall - type: Sprite - layers: - - state: plate-small - - state: plate-slice-shading - - state: slime-slice + state: slime-slice # Tastes like sweetness, cake, slime. - type: entity @@ -407,12 +345,8 @@ id: FoodCakePumpkin description: A hollow cake with real pumpkin. components: - - type: Food - trash: FoodPlate - type: Sprite - layers: - - state: plate - - state: pumpkinspice + state: pumpkinspice - type: SliceableFood slice: FoodCakePumpkinSlice - type: SolutionContainerManager @@ -433,13 +367,8 @@ id: FoodCakePumpkinSlice description: A spicy slice of pumpkin goodness. components: - - type: Food - trash: FoodPlateSmall - type: Sprite - layers: - - state: plate-small - - state: plate-slice-shading - - state: pumpkinspice-slice + state: pumpkinspice-slice - type: SolutionContainerManager solutions: food: @@ -459,12 +388,8 @@ id: FoodCakeChristmas description: A cake made of christmas. components: - - type: Food - trash: FoodPlate - type: Sprite - layers: - - state: plate - - state: christmas + state: christmas - type: SliceableFood slice: FoodCakeChristmasSlice @@ -473,13 +398,8 @@ parent: FoodCakeSliceBase id: FoodCakeChristmasSlice components: - - type: Food - trash: FoodPlateSmall - type: Sprite - layers: - - state: plate-small - - state: plate-slice-shading - - state: christmas-slice + state: christmas-slice # Tastes like sweetness, cake, christmas. - type: entity @@ -488,12 +408,8 @@ id: FoodCakeBirthday description: Happy Birthday little clown... components: - - type: Food - trash: FoodPlatePlastic - type: Sprite - layers: - - state: plate-plastic - - state: birthday + state: birthday - type: SliceableFood slice: FoodCakeBirthdaySlice @@ -503,12 +419,8 @@ id: FoodCakeBirthdaySlice description: A slice of your birthday. components: - - type: Food - trash: FoodPlateSmallPlastic - type: Sprite - layers: - - state: plate-small-plastic - - state: birthday-slice + state: birthday-slice # Tastes like sweetness, cake, christmas. - type: entity @@ -517,12 +429,8 @@ id: FoodCakeVanilla description: A vanilla frosted cake. components: - - type: Food - trash: FoodPlate - type: Sprite - layers: - - state: plate - - state: vanilla + state: vanilla - type: SliceableFood slice: FoodCakeVanillaSlice - type: SolutionContainerManager #TODO Sprinkles @@ -545,13 +453,8 @@ id: FoodCakeVanillaSlice description: A slice of vanilla frosted cake. components: - - type: Food - trash: FoodPlateSmall - type: Sprite - layers: - - state: plate-small - - state: plate-slice-shading - - state: vanilla-slice + state: vanilla-slice - type: SolutionContainerManager solutions: food: @@ -573,12 +476,8 @@ id: FoodCakeClown description: A funny cake with a clown face on it. components: - - type: Food - trash: FoodPlate - type: Sprite - layers: - - state: plate - - state: clown + state: clown - type: SliceableFood slice: FoodCakeClownSlice - type: SolutionContainerManager #TODO Sprinkles @@ -601,13 +500,8 @@ id: FoodCakeClownSlice description: A slice of bad jokes, and silly props. components: - - type: Food - trash: FoodPlateSmall - type: Sprite - layers: - - state: plate-small - - state: plate-slice-shading - - state: clown-slice + state: clown-slice - type: SolutionContainerManager solutions: food: @@ -629,12 +523,8 @@ id: FoodCakeSpaceman description: A spaceman's trumpet frosted cake. components: - - type: Food - trash: FoodPlate - type: Sprite - layers: - - state: plate - - state: trumpet + state: trumpet - type: SliceableFood slice: FoodCakeSpacemanSlice - type: SolutionContainerManager @@ -655,13 +545,8 @@ id: FoodCakeSpacemanSlice description: A spaceman's trumpet frosted cake. components: - - type: Food - trash: FoodPlateSmall - type: Sprite - layers: - - state: plate-small - - state: plate-slice-shading - - state: trumpet-slice + state: trumpet-slice - type: SolutionContainerManager solutions: food: @@ -686,9 +571,7 @@ description: Extremely dense and powerful food. components: - type: Sprite - layers: - - state: plate - - state: suppermatter + state: suppermatter - type: SliceableFood slice: FoodCakeSuppermatterSlice TotalCount: 8 @@ -701,7 +584,6 @@ Quantity: 48 - type: Food transferAmount: 12 - trash: FoodPlate - type: Item size: 40 - type: PointLight @@ -716,8 +598,7 @@ description: A single portion of power. components: - type: Sprite - layers: - - state: suppermatter-shard + state: suppermatter-shard - type: SolutionContainerManager solutions: food: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml index f98791e1223..937e8940fae 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml @@ -199,8 +199,6 @@ id: FoodBakedPancake description: A fluffy pancake. The softer, superior relative of the waffle. components: - # - type: Food - # trash: FoodPlateSmall - type: Stack stackType: Pancake count: 1 @@ -263,8 +261,6 @@ id: FoodBakedPancakeBb description: A fluffy and delicious blueberry pancake. components: - # - type: Food - # trash: FoodPlateSmall - type: Stack stackType: Pancake count: 1 @@ -303,8 +299,6 @@ id: FoodBakedPancakeCc description: A fluffy and delicious chocolate chip pancake. components: - # - type: Food - # trash: FoodPlateSmall - type: Stack stackType: Pancake count: 1 @@ -489,3 +483,108 @@ Quantity: 2 - ReagentId: Vitamin Quantity: 0.5 + +- type: entity + name: brownies + parent: FoodBakedBase + id: FoodBakedBrownieBatch + description: A pan of brownies. + components: + - type: FlavorProfile + flavors: + - sweet + - chocolate + - type: Sprite + sprite: Objects/Consumable/Food/Baked/brownie.rsi + state: brownie-batch + - type: SolutionContainerManager + solutions: + food: + maxVol: 78 + reagents: + - ReagentId: Nutriment + Quantity: 30 + - ReagentId: Theobromine + Quantity: 18 + - type: SliceableFood + count: 6 + slice: FoodBakedBrownie + +- type: entity + name: brownie + parent: FoodBakedBase + id: FoodBakedBrownie + suffix: Fresh + description: A fresh baked brownie. + components: + - type: FlavorProfile + flavors: + - sweet + - chocolate + - type: Sprite + sprite: Objects/Consumable/Food/snacks.rsi + state: mre-brownie-open + - type: SolutionContainerManager + solutions: + food: + maxVol: 13 + reagents: + - ReagentId: Nutriment + Quantity: 5 + - ReagentId: Theobromine + Quantity: 3 + +- type: entity + name: special brownies + parent: FoodBakedBase + id: FoodBakedCannabisBrownieBatch + description: A pan of "special" brownies. + components: + - type: FlavorProfile + flavors: + - sweet + - magical + - chocolate + - type: Sprite + sprite: Objects/Consumable/Food/Baked/brownie.rsi + state: brownie-batch + - type: SolutionContainerManager + solutions: + food: + maxVol: 228 + reagents: + - ReagentId: Nutriment + Quantity: 30 + - ReagentId: Theobromine + Quantity: 18 + - ReagentId: THC + Quantity: 150 + - type: SliceableFood + count: 6 + slice: FoodBakedCannabisBrownie + +- type: entity + name: special brownie + parent: FoodBakedBase + id: FoodBakedCannabisBrownie + description: A "special" brownie. + components: + - type: FlavorProfile + flavors: + - sweet + - magical + - chocolate + - type: Sprite + sprite: Objects/Consumable/Food/snacks.rsi + state: mre-brownie-open + - type: SolutionContainerManager + solutions: + food: + maxVol: 38 + reagents: + - ReagentId: Nutriment + Quantity: 5 + - ReagentId: Theobromine + Quantity: 3 + - ReagentId: THC + Quantity: 25 diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml index 941c06c3828..39ec738551a 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml @@ -8,8 +8,6 @@ - type: FlavorProfile flavors: - sweet - - type: Food - trash: FoodPlateTin - type: Sprite sprite: Objects/Consumable/Food/Baked/pie.rsi - type: SolutionContainerManager @@ -38,8 +36,6 @@ - type: FlavorProfile flavors: - sweet - - type: Food - trash: FoodPlateSmall - type: Sprite sprite: Objects/Consumable/Food/Baked/pie.rsi - type: SolutionContainerManager @@ -84,8 +80,6 @@ - apple - type: Sprite layers: - - state: plate-small - - state: plate-slice-shading - state: plain-slice - state: alpha-slice-filling color: orange @@ -119,9 +113,7 @@ - sweet - nutty - type: Sprite - layers: - - state: plate-small - - state: baklava-slice + state: baklava-slice # Tastes like pie, nuts. - type: entity @@ -135,6 +127,8 @@ - sweet - banana - creamy + - type: Food + trash: FoodPlateTin - type: Sprite layers: - state: tin @@ -184,8 +178,6 @@ - sweet - type: Sprite layers: - - state: plate-small - - state: plate-slice-shading - state: plain-slice - state: alpha-slice-filling color: pink @@ -217,8 +209,6 @@ - sweet - type: Sprite layers: - - state: plate-small - - state: plate-slice-shading - state: plain-slice - state: alpha-slice-filling color: red @@ -250,8 +240,6 @@ - meaty - type: Sprite layers: - - state: plate-small - - state: plate-slice-shading - state: plain-slice - state: alpha-slice-filling color: brown @@ -284,8 +272,6 @@ - acid - type: Sprite layers: - - state: plate-small - - state: plate-slice-shading - state: plain-slice - state: alpha-slice-filling color: green @@ -317,8 +303,6 @@ - cold - type: Sprite layers: - - state: plate-small - - state: plate-slice-shading - state: plain-slice - state: alpha-slice-filling color: blue @@ -336,9 +320,7 @@ flavors: - mushroom - type: Sprite - layers: - - state: plate - - state: amanita + state: amanita - type: SolutionContainerManager solutions: food: @@ -364,9 +346,7 @@ flavors: - mushroom - type: Sprite - layers: - - state: plate - - state: plump + state: plump # Tastes like pie, mushrooms. # Tart @@ -380,12 +360,8 @@ - type: FlavorProfile flavors: - sweet - - type: Food - trash: FoodPlateSmall - type: Sprite - layers: - - state: plate-tart - - state: grape + state: grape # Tastes like tart, grape. - type: entity @@ -397,12 +373,8 @@ - type: FlavorProfile flavors: - nothing - - type: Food - trash: FoodPlateSmall - type: Sprite - layers: - - state: plate-tart - - state: mime + state: mime # Tastes like nothing. - type: entity @@ -414,12 +386,8 @@ - type: FlavorProfile flavors: - apple - - type: Food - trash: FoodPlateSmall - type: Sprite - layers: - - state: plate-tart - - state: gapple + state: gapple # Tastes like tart, apple, expensive metal. - type: entity @@ -431,12 +399,8 @@ - type: FlavorProfile flavors: - chocolate - - type: Food - trash: FoodPlateSmall - type: Sprite - layers: - - state: plate-tart - - state: cocolava + state: cocolava - type: SolutionContainerManager solutions: food: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/plate.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/plate.yml index 80493bfdad3..e960b897e17 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/plate.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/plate.yml @@ -46,7 +46,7 @@ - Trash - type: PhysicalComposition materialComposition: - Glass: 100 + Glass: 60 - type: SpaceGarbage - type: StaticPrice price: 3 @@ -97,6 +97,9 @@ acts: [ "Destruction" ] - type: StaticPrice price: 2 + - type: PhysicalComposition + materialComposition: + Glass: 30 - type: entity parent: FoodPlateTrash diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/egg.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/egg.yml index 6a7af9d132a..05cae79b166 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/egg.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/egg.yml @@ -53,14 +53,13 @@ - !type:PlaySoundBehavior sound: collection: desecration + - !type:SpillBehavior + solution: food - !type:SpawnEntitiesBehavior spawn: Eggshells: min: 1 max: 1 - PuddleEgg: - min: 1 - max: 2 # Wow double-yolk you're so lucky! - !type:DoActsBehavior acts: [ "Destruction" ] diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml index 04778168741..22d5fbf14d0 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml @@ -73,11 +73,8 @@ - !type:PlaySoundBehavior sound: collection: desecration - - !type:SpawnEntitiesBehavior - spawn: - PuddleFlour: - min: 1 - max: 1 + - !type:SpillBehavior + solution: food - !type:DoActsBehavior acts: [ "Destruction" ] - type: TrashOnEmpty @@ -117,11 +114,8 @@ - !type:PlaySoundBehavior sound: collection: desecration - - !type:SpawnEntitiesBehavior - spawn: - PuddleFlour: - min: 1 - max: 1 + - !type:SpillBehavior + solution: food - !type:DoActsBehavior acts: [ "Destruction" ] @@ -470,6 +464,27 @@ components: - type: Sprite state: butter + +- type: entity + name: stick of cannabis butter + parent: FoodBakingBase + id: FoodCannabisButter + description: Add this to your favorite baked goods for an irie time. + components: + - type: Sprite + state: butter + color: "#82C36E" + - type: SolutionContainerManager + solutions: + food: + maxVol: 100 + reagents: + - ReagentId: Butter + Quantity: 10 + - ReagentId: THC + Quantity: 82 + - type: Extractable + grindableSolutionName: food - type: entity name: cheese wheel diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml index c324aec7164..270433e88c1 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml @@ -608,8 +608,6 @@ - type: Tag tags: - Cooked - - type: Food - trash: FoodPlateSmall - type: Sprite layers: - state: plain-cooked @@ -637,7 +635,6 @@ - type: Food - type: Sprite layers: - - state: plate-meat - state: bacon-cooked map: [ "enum.DamageStateVisualLayers.Base" ] - type: RandomSprite @@ -739,8 +736,6 @@ - type: Tag tags: - Cooked - - type: Food - trash: FoodPlateSmall - type: Sprite layers: - state: chicken-fried diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/noodles.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/noodles.yml index a8397d9a4f7..03218217b61 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/noodles.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/noodles.yml @@ -6,8 +6,6 @@ abstract: true description: Now that's a nice pasta! components: - - type: Food - trash: FoodPlate - type: Sprite sprite: Objects/Consumable/Food/noodles.rsi - type: SolutionContainerManager @@ -31,9 +29,7 @@ flavors: - pasta - type: Sprite - layers: - - state: plate - - state: boiled + state: boiled # Tastes like pasta. - type: entity @@ -47,9 +43,7 @@ - pasta - tomato - type: Sprite - layers: - - state: plate - - state: tomato + state: tomato # Tastes like pasta, tomato. - type: entity @@ -87,9 +81,7 @@ - pasta - meaty - type: Sprite - layers: - - state: plate - - state: meatball + state: meatball - type: SolutionContainerManager solutions: food: @@ -114,9 +106,7 @@ - pasta - meaty - type: Sprite - layers: - - state: plate - - state: spesslaw + state: spesslaw - type: SolutionContainerManager solutions: food: @@ -143,9 +133,7 @@ - eggplant - carrot - type: Sprite - layers: - - state: plate - - state: chowmein + state: chowmein - type: SolutionContainerManager solutions: food: @@ -170,9 +158,7 @@ - pasta - butter - type: Sprite - layers: - - state: plate - - state: butter + state: butter - type: SolutionContainerManager solutions: food: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml index 097be3c37a8..bc0965008df 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml @@ -233,28 +233,6 @@ paralyzeTime: 4 launchForwardsMultiplier: 2 -- type: entity - name: banana peel - suffix: Explosive - parent: TrashBananaPeel - id: TrashBananaPeelExplosive - components: - - type: Sprite - sprite: Objects/Specific/Hydroponics/banana.rsi - layers: - - state: peel - - state: primed - shader: unshaded - - type: TriggerOnSlip - - type: ExplodeOnTrigger - - type: Explosive - explosionType: Default - maxIntensity: 2 - totalIntensity: 10 - canCreateVacuum: false - - type: DeleteOnTrigger - - type: AnimationPlayer - - type: entity name: carrot parent: FoodProduceBase @@ -482,8 +460,10 @@ maxVol: 14 reagents: - ReagentId: Nutriment - Quantity: 10 + Quantity: 7 - ReagentId: Vitamin + Quantity: 3 + - ReagentId: Water Quantity: 4 - type: Sprite sprite: Objects/Specific/Hydroponics/tomato.rsi @@ -520,11 +500,8 @@ - !type:PlaySoundBehavior sound: collection: desecration - - !type:SpawnEntitiesBehavior - spawn: - PuddleTomato: - min: 1 - max: 1 + - !type:SpillBehavior + solution: food - !type:DoActsBehavior acts: [ "Destruction" ] @@ -862,7 +839,7 @@ reagents: - ReagentId: Aloe Quantity: 10 - - ReagentId: Kelotane + - ReagentId: Dermaline Quantity: 10 - type: Sprite sprite: Objects/Specific/Hydroponics/aloe.rsi @@ -1136,11 +1113,8 @@ - !type:PlaySoundBehavior sound: collection: desecration - - !type:SpawnEntitiesBehavior - spawn: - PuddleWatermelon: - min: 1 - max: 1 + - !type:SpillBehavior + solution: food - !type:DoActsBehavior acts: [ "Destruction" ] - type: SliceableFood diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml index c908480a9fd..175875d52c4 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml @@ -44,6 +44,21 @@ - type: Food trash: FoodPacketBoritosTrash +- type: entity + name: C&Ds + parent: FoodSnackBase + id: FoodSnackCnDs + description: Legally, we cannot say that these won't melt in your hands. + components: + - type: FlavorProfile + flavors: + - chocolate + - type: Sprite + state: cnds + - type: Item + - type: Food + trash: FoodPacketCnDsTrash + - type: entity name: cheesie honkers parent: FoodSnackBase @@ -157,6 +172,22 @@ state: energybar-open - type: Item +- type: entity + name: sweetie's pistachios + parent: FoodSnackBase + id: FoodSnackPistachios + description: Sweeties's name-brand pistachios. probably won't give you diseases. Probably. + components: + - type: FlavorProfile + flavors: + - salty + - nutty + - type: Sprite + state: pistachio + - type: Item + - type: Food + trash: FoodPacketPistachioTrash + - type: entity name: popcorn parent: FoodSnackBase @@ -191,7 +222,22 @@ trash: FoodPacketRaisinsTrash - type: entity - name: Sus Jerky + name: bob's semki sunflower seeds + parent: FoodSnackBase + id: FoodSnackSemki + description: Proudly produced by the Bob Bobson nutritional corporation. Perfect for spitting at people. + components: + - type: FlavorProfile + flavors: + - nutty + - type: Sprite + state: semki + - type: Item + - type: Food + trash: FoodPacketSemkiTrash + +- type: entity + name: sus jerky parent: FoodSnackBase id: FoodSnackSus description: Something about this packet makes you feel incredibly uneasy. Jerky's good though. @@ -370,6 +416,7 @@ id: FoodSnackMREBrownieOpen parent: FoodSnackBase name: brownie + suffix: MRE description: A precisely mixed brownie, made to withstand blunt trauma and harsh conditions. Tastes like shit. components: - type: FlavorProfile @@ -421,6 +468,16 @@ state: boritos-trash - type: Item +- type: entity + noSpawn: true + parent: FoodPacketTrash + id: FoodPacketCnDsTrash + name: C&Ds bag + components: + - type: Sprite + state: cnds-trash + - type: Item + - type: entity noSpawn: true parent: FoodPacketTrash diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml index df0241fc21c..3d198b2cb10 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml @@ -449,7 +449,7 @@ - type: Sprite state: service - type: MachineBoard - prototype: hydroponicsTray + prototype: HydroponicsTrayEmpty materialRequirements: # replacing the console screen Glass: 5 @@ -618,14 +618,14 @@ - type: entity - id: GeneratorPlasmaMachineCircuitboard + id: PortableGeneratorPacmanMachineCircuitboard parent: BaseMachineCircuitboard - name: generator (plasma) machine board + name: P.A.C.M.A.N.-type portable generator machine board components: - type: Sprite state: engineering - type: MachineBoard - prototype: GeneratorPlasma + prototype: PortableGeneratorPacman requirements: Capacitor: 1 materialRequirements: @@ -662,14 +662,14 @@ Glass: 2 - type: entity - id: GeneratorUraniumMachineCircuitboard + id: PortableGeneratorSuperPacmanMachineCircuitboard parent: BaseMachineCircuitboard - name: generator (uranium) machine board + name: S.U.P.E.R.P.A.C.M.A.N.-type portable generator machine board components: - type: Sprite state: engineering - type: MachineBoard - prototype: GeneratorUranium + prototype: PortableGeneratorSuperPacman requirements: Capacitor: 2 materialRequirements: @@ -680,6 +680,25 @@ chemicalComposition: Silicon: 20 +- type: entity + id: PortableGeneratorJrPacmanMachineCircuitboard + parent: BaseMachineCircuitboard + name: J.R.P.A.C.M.A.N.-type portable generator machine board + components: + - type: Sprite + state: engineering + - type: MachineBoard + prototype: PortableGeneratorJrPacman + requirements: + Capacitor: 1 + materialRequirements: + Cable: 10 + - type: PhysicalComposition + materialComposition: + Glass: 200 + chemicalComposition: + Silicon: 20 + - type: entity id: ReagentGrinderMachineCircuitboard parent: BaseMachineCircuitboard @@ -980,6 +999,7 @@ Steel: 5 CableHV: 5 Uranium: 2 + - type: entity parent: BaseMachineCircuitboard id: M_EmpMachineCircuitboard diff --git a/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/chimp_upgrade_kit.yml b/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/chimp_upgrade_kit.yml new file mode 100644 index 00000000000..aed09fe70bc --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/chimp_upgrade_kit.yml @@ -0,0 +1,14 @@ +- type: entity + name: C.H.I.M.P. handcannon upgrade chip + parent: BaseItem + id: WeaponPistolCHIMPUpgradeKit + description: An experimental upgrade kit for the C.H.I.M.P. + components: + - type: Sprite + sprite: Objects/Misc/module.rsi + state: abductor_mod + - type: Item + size: 10 + - type: Tag + tags: + - WeaponPistolCHIMPUpgradeKit \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/war_declarator.yml b/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/war_declarator.yml new file mode 100644 index 00000000000..9a1dc0f95e1 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/war_declarator.yml @@ -0,0 +1,25 @@ +- type: entity + parent: BaseItem + id: NukeOpsDeclarationOfWar + name: the declaration of war + description: Use to send a declaration of hostilities to the target, delaying your shuttle departure while they prepare for your assault. Such a brazen move will attract the attention of powerful benefactors within the Syndicate, who will supply your team with a massive amount of bonus telecrystals. Must be used at start of mission, or your benefactors will lose interest. + components: + - type: Sprite + sprite: Objects/Devices/declaration_of_war.rsi + layers: + - state: declarator + - type: Item + - type: UseDelay + delay: 0.5 + - type: ActivatableUI + inHandsOnly: true + singleUser: true + closeOnHandDeselect: false + key: enum.WarDeclaratorUiKey.Key + - type: UserInterface + interfaces: + - key: enum.WarDeclaratorUiKey.Key + type: WarDeclaratorBoundUserInterface + - type: WarDeclarator + message: war-declarator-default-message +# - type: WarConditionOnExamine diff --git a/Resources/Prototypes/Entities/Objects/Devices/forensic_scanner.yml b/Resources/Prototypes/Entities/Objects/Devices/forensic_scanner.yml index ec7b2a0cbb4..ad05777cfa6 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/forensic_scanner.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/forensic_scanner.yml @@ -23,6 +23,9 @@ - key: enum.ForensicScannerUiKey.Key type: ForensicScannerBoundUserInterface - type: ForensicScanner + - type: GuideHelp + guides: + - DNA - type: entity name: forensic scanner report @@ -48,3 +51,6 @@ backgroundPatchMargin: 6.0, 0.0, 6.0, 0.0 contentMargin: 12.0, 0.0, 6.0, 0.0 maxWritableArea: 368.0, 256.0 + - type: GuideHelp + guides: + - DNA diff --git a/Resources/Prototypes/Entities/Objects/Devices/nuke.yml b/Resources/Prototypes/Entities/Objects/Devices/nuke.yml index f5a23c01e79..abb6ae1b9b8 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/nuke.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/nuke.yml @@ -23,6 +23,14 @@ - MachineMask layer: - HalfWallLayer + - type: PointLight + enabled: false + radius: 4 + energy: 2.0 + color: "#FF4020" + mask: /Textures/Effects/LightMasks/double_cone.png + - type: RotatingLight + speed: 120 - type: NukeLabel - type: Nuke explosionType: Default diff --git a/Resources/Prototypes/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml index 0849fadb55e..c96ba2c0dc7 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml @@ -51,12 +51,6 @@ - idcard - Belt - type: UnpoweredFlashlight - toggleAction: - name: action-name-toggle-light - description: action-description-toggle-light - icon: { sprite: Objects/Tools/flashlight.rsi, state: flashlight } - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - event: !type:ToggleActionEvent - type: PointLight enabled: false radius: 1.5 @@ -153,7 +147,7 @@ - type: Icon state: pda-internmed - type: HealthAnalyzer - scanDelay: 1.4 + scanDelay: 1 scanningEndSound: path: "/Audio/Items/Medical/healthscanner.ogg" - type: GuideHelp @@ -520,7 +514,7 @@ - type: Icon state: pda-medical - type: HealthAnalyzer - scanDelay: 1.2 + scanDelay: 1 scanningEndSound: path: "/Audio/Items/Medical/healthscanner.ogg" - type: GuideHelp @@ -542,7 +536,7 @@ - type: Icon state: pda-paramedic - type: HealthAnalyzer - scanDelay: 0.5 + scanDelay: 1 scanningEndSound: path: "/Audio/Items/Medical/healthscanner.ogg" diff --git a/Resources/Prototypes/Entities/Objects/Devices/pinpointer.yml b/Resources/Prototypes/Entities/Objects/Devices/pinpointer.yml index 29125e26843..b5d080bdefc 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pinpointer.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pinpointer.yml @@ -65,4 +65,13 @@ shader: unshaded visible: false - type: StaticPrice - price: 150 \ No newline at end of file + price: 150 + + +- type: entity + parent: PinpointerBase + id: PinpointerStation + components: + - type: Pinpointer + component: BecomesStation + targetName: the station diff --git a/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_structures.yml b/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_structures.yml index d26e551f6e4..6dcd4ad683d 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_structures.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_structures.yml @@ -164,7 +164,7 @@ - type: WiresVisuals - type: WiresPanel - type: Wires - BoardName: "DawInstrument" + BoardName: wires-board-name-dawinstrument LayoutId: DawInstrument - type: Machine board: DawInstrumentMachineCircuitboard diff --git a/Resources/Prototypes/Entities/Objects/Fun/Tabletop/checkers.yml b/Resources/Prototypes/Entities/Objects/Fun/Tabletop/checkers.yml index c6aa12db3e5..69302548d18 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/Tabletop/checkers.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/Tabletop/checkers.yml @@ -13,11 +13,15 @@ size: 338, 274 setup: !type:TabletopCheckerSetup - boardPrototype: CheckerBoardTabletop + boardPrototype: &checkerboard CheckerBoardTabletop + prototypePieceWhite: &pieceWhite CheckerPieceWhite + prototypeCrownWhite: &crownWhite CheckerCrownWhite + prototypePieceBlack: &pieceBlack CheckerPieceBlack + prototypeCrownBlack: &crownBlack CheckerCrownBlack # Checkerboard tabletop item (item only visible in tabletop game) - type: entity - id: CheckerBoardTabletop + id: *checkerboard name: checkerboard parent: BaseBoardTabletop noSpawn: true @@ -28,8 +32,8 @@ # The pieces - type: entity - id: WhiteCheckerPiece - name: white piece + id: *pieceWhite + name: white checker piece parent: BaseTabletopPiece components: - type: Sprite @@ -37,17 +41,17 @@ state: w_checker_piece - type: entity - id: WhiteCheckerQueen - name: white queen + id: *crownWhite + name: white checker crown parent: BaseTabletopPiece components: - type: Sprite sprite: Objects/Fun/Tabletop/checker_pieces.rsi - state: w_checker_queen + state: w_checker_crown - type: entity - id: BlackCheckerPiece - name: black piece + id: *pieceBlack + name: black checker piece parent: BaseTabletopPiece components: - type: Sprite @@ -55,10 +59,10 @@ state: b_checker_piece - type: entity - id: BlackCheckerQueen - name: black queen + id: *crownBlack + name: black checker crown parent: BaseTabletopPiece components: - type: Sprite sprite: Objects/Fun/Tabletop/checker_pieces.rsi - state: b_checker_queen + state: b_checker_crown diff --git a/Resources/Prototypes/Entities/Objects/Fun/crayons.yml b/Resources/Prototypes/Entities/Objects/Fun/crayons.yml index 49113f18fd7..e6ad1f8af72 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/crayons.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/crayons.yml @@ -16,7 +16,7 @@ - key: enum.CrayonUiKey.Key type: CrayonBoundUserInterface - type: Crayon - capacity: 5 + capacity: 15 - type: Food - type: SolutionContainerManager solutions: @@ -43,7 +43,6 @@ heldPrefix: white - type: Crayon color: white - capacity: 5 - type: Tag tags: - Write @@ -66,7 +65,6 @@ heldPrefix: mime - type: Crayon color: white - capacity: 5 - type: Tag tags: - Write @@ -112,7 +110,6 @@ heldPrefix: black - type: Crayon color: black - capacity: 5 - type: Tag tags: - Write @@ -135,7 +132,6 @@ heldPrefix: red - type: Crayon color: red - capacity: 5 - type: Tag tags: - Write @@ -158,7 +154,6 @@ heldPrefix: orange - type: Crayon color: orange - capacity: 5 - type: Tag tags: - Write @@ -181,7 +176,6 @@ heldPrefix: yellow - type: Crayon color: yellow - capacity: 5 - type: Tag tags: - Write @@ -204,7 +198,6 @@ heldPrefix: green - type: Crayon color: green - capacity: 5 - type: Tag tags: - Write @@ -227,7 +220,6 @@ heldPrefix: blue - type: Crayon color: lightblue - capacity: 5 - type: Tag tags: - Write @@ -250,7 +242,6 @@ heldPrefix: purple - type: Crayon color: purple - capacity: 5 - type: Tag tags: - Write diff --git a/Resources/Prototypes/Entities/Objects/Fun/dice_bag.yml b/Resources/Prototypes/Entities/Objects/Fun/dice_bag.yml index cac3e0ac580..8c3b5aea8b5 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/dice_bag.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/dice_bag.yml @@ -19,7 +19,6 @@ - type: Item - type: Storage capacity: 18 - size: 5 whitelist: tags: - Dice diff --git a/Resources/Prototypes/Entities/Objects/Fun/pai.yml b/Resources/Prototypes/Entities/Objects/Fun/pai.yml index 5ac39cc3527..6c0dc8f4baf 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/pai.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/pai.yml @@ -25,13 +25,6 @@ - type: Input context: "human" - type: PAI - midiAction: - name: action-name-pai-play-midi - checkCanInteract: false - icon: Interface/Actions/pai-midi.png - description: action-description-pai-play-midi - event: !type:OpenUiActionEvent - key: enum.InstrumentUiKey.Key - type: BlockMovement - type: ToggleableGhostRole examineTextMindPresent: pai-system-pai-installed @@ -104,3 +97,15 @@ Off: { state: syndicate-pai-off-overlay } Searching: { state: syndicate-pai-searching-overlay } On: { state: syndicate-pai-on-overlay } + +- type: entity + id: ActionPAIPlayMidi + name: Play MIDI + description: Open your portable MIDI interface to soothe your owner. + noSpawn: true + components: + - type: InstantAction + checkCanInteract: false + icon: Interface/Actions/pai-midi.png + event: !type:OpenUiActionEvent + key: enum.InstrumentUiKey.Key diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index 12e97de4d9c..2aa92fbd96c 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -1034,3 +1034,24 @@ reagents: - ReagentId: SpaceGlue Quantity: 100 + +- type: entity + parent: BasePlushie + id: PlushieMoth + name: moth plushie + description: Cute and fluffy moth plushie. Enjoy, bz! + components: + - type: Sprite + state: plushie_moth + - type: EmitSoundOnUse + sound: + path: /Audio/Voice/Moth/moth_chitter.ogg + - type: EmitSoundOnLand + sound: + path: /Audio/Voice/Moth/moth_chitter.ogg + - type: EmitSoundOnActivate + sound: + path: /Audio/Voice/Moth/moth_chitter.ogg + - type: MeleeWeapon + soundHit: + path: /Audio/Voice/Moth/moth_chitter.ogg diff --git a/Resources/Prototypes/Entities/Objects/Magic/books.yml b/Resources/Prototypes/Entities/Objects/Magic/books.yml index 779c688035a..79c0cd9a789 100644 --- a/Resources/Prototypes/Entities/Objects/Magic/books.yml +++ b/Resources/Prototypes/Entities/Objects/Magic/books.yml @@ -19,10 +19,9 @@ parent: BaseSpellbook components: - type: Spellbook - instantSpells: + spells: FlashRune: -1 - worldSpells: - SpawnMagicarpSpell: -1 + ActionSpawnMagicarpSpell: -1 - type: entity id: ForceWallSpellbook @@ -34,8 +33,8 @@ layers: - state: bookforcewall - type: Spellbook - instantSpells: - ForceWall: -1 + spells: + ActionForceWall: -1 - type: entity id: BlinkBook @@ -47,8 +46,8 @@ layers: - state: spellbook - type: Spellbook - worldSpells: - Blink: -1 + spells: + ActionBlink: -1 - type: entity id: SmiteBook @@ -60,8 +59,8 @@ layers: - state: spellbook - type: Spellbook - entitySpells: - Smite: -1 + spells: + ActionSmite: -1 - type: entity id: KnockSpellbook @@ -73,8 +72,8 @@ layers: - state: bookknock - type: Spellbook - instantSpells: - Knock: -1 + spells: + ActionKnock: -1 - type: entity id: FireballSpellbook @@ -86,8 +85,8 @@ layers: - state: bookfireball - type: Spellbook - worldSpells: - Fireball: -1 + spells: + ActionFireball: -1 - type: entity id: ScrollRunes @@ -99,7 +98,7 @@ layers: - state: spell_default - type: Spellbook - instantSpells: + spells: FlashRune: -1 ExplosionRune: -1 IgniteRune: -1 diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml index 76dc23b69b0..2c1a8e628d3 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml @@ -12,7 +12,6 @@ size: 30 - type: StaticPrice price: 0 - - type: ItemStatus - type: Tag tags: - Sheet @@ -100,6 +99,17 @@ - type: Item size: 1 +- type: entity + parent: SheetGlass + id: SheetGlassLingering0 + suffix: Lingering, 0 + components: + - type: Item + size: 0 + - type: Stack + lingering: true + count: 0 + - type: entity parent: SheetGlassBase id: SheetRGlass diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml index 725fb934417..69b7f83ddb5 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml @@ -11,7 +11,6 @@ size: 30 - type: StaticPrice price: 0 - - type: ItemStatus - type: Tag tags: - Sheet @@ -49,7 +48,7 @@ - type: Sprite state: steel_3 layers: - - state: plasteel_3 + - state: steel_3 map: ["base"] - type: Item heldPrefix: steel @@ -98,6 +97,17 @@ stackType: Steel count: 1 +- type: entity + parent: SheetSteel + id: SheetSteelLingering0 + suffix: Lingering, 0 + components: + - type: Item + size: 0 + - type: Stack + lingering: true + count: 0 + - type: entity parent: SheetMetalBase id: SheetPlasteel diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml index c1c06f79025..267539d1fed 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml @@ -9,7 +9,6 @@ - type: Item sprite: Objects/Materials/Sheets/other.rsi size: 30 - - type: ItemStatus - type: Tag tags: - Sheet diff --git a/Resources/Prototypes/Entities/Objects/Materials/ingots.yml b/Resources/Prototypes/Entities/Objects/Materials/ingots.yml index 386d21beb93..61aefee3329 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/ingots.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/ingots.yml @@ -11,7 +11,6 @@ size: 30 - type: StaticPrice price: 0 - - type: ItemStatus - type: Tag tags: - Ingot diff --git a/Resources/Prototypes/Entities/Objects/Materials/materials.yml b/Resources/Prototypes/Entities/Objects/Materials/materials.yml index 1ed7332666a..ff148d7063f 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/materials.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/materials.yml @@ -9,7 +9,6 @@ - type: Item sprite: Objects/Materials/materials.rsi size: 30 - - type: ItemStatus - type: Tag tags: - DroneUsable @@ -132,6 +131,9 @@ - DroneUsable - Gauze - RawMaterial + - 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 - type: entity parent: MaterialCloth @@ -317,6 +319,27 @@ color: "#4faffb" slots: +- type: entity + parent: MaterialBase + id: MaterialHideCorgi + name: corgi hide + description: Luxury pelt used in only the most elite fashion. Rumors say this is found when a corgi is sent to the nice farm. + components: + - type: Sprite + sprite: Objects/Materials/materials.rsi + state: corgihide + - type: Item + sprite: Clothing/Head/Misc/hides.rsi + heldPrefix: corgi + - type: Clothing + sprite: Clothing/Head/Misc/hides.rsi + equippedPrefix: corgi2 + slots: + - HEAD + - type: Tag + tags: + - HideCorgi + - type: entity parent: MaterialBase id: MaterialDiamond @@ -415,7 +438,7 @@ - bananium - bananium_1 - type: RadiationSource - intensity: 0.3 + intensity: 0.1 - type: FlavorProfile flavors: - banana @@ -474,6 +497,25 @@ stackType: WebSilk - type: Item size: 50 + - type: Food + requiresSpecialDigestion: true + - type: FlavorProfile + flavors: + - cobwebs + ignoreReagents: + - Fiber + - type: SolutionContainerManager + solutions: + food: + maxVol: 3 + reagents: + - ReagentId: Fiber + Quantity: 3 + - type: Tag + tags: + - ClothMade + - DroneUsable + - RawMaterial - type: entity parent: MaterialWebSilk diff --git a/Resources/Prototypes/Entities/Objects/Materials/ore.yml b/Resources/Prototypes/Entities/Objects/Materials/ore.yml index bd639fd51a1..f27d1b770ee 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/ore.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/ore.yml @@ -9,7 +9,6 @@ - type: Item sprite: Objects/Materials/ore.rsi size: 60 - - type: ItemStatus - type: Tag tags: - Ore diff --git a/Resources/Prototypes/Entities/Objects/Materials/parts.yml b/Resources/Prototypes/Entities/Objects/Materials/parts.yml index 5606de22b93..e75704c2a43 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/parts.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/parts.yml @@ -8,7 +8,6 @@ state: rods - type: Item sprite: Objects/Materials/parts.rsi - - type: ItemStatus - type: Tag tags: - DroneUsable @@ -93,3 +92,14 @@ count: 1 - type: Item size: 1 + +- type: entity + parent: PartRodMetal + id: PartRodMetalLingering0 + suffix: Lingering, 0 + components: + - type: Item + size: 0 + - type: Stack + lingering: true + count: 0 diff --git a/Resources/Prototypes/Entities/Objects/Misc/handcuffs.yml b/Resources/Prototypes/Entities/Objects/Misc/handcuffs.yml index 31602284f5a..f8a1f05ccb4 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/handcuffs.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/handcuffs.yml @@ -23,6 +23,9 @@ Blunt: 0 - type: StaticPrice price: 19 + - type: GuideHelp + guides: + - Security - type: entity name: makeshift handcuffs diff --git a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml index b21a2f951b9..9bd914ad10e 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml @@ -497,10 +497,21 @@ jobTitle: Centcom Agent - type: entity - parent: PassengerIDCard + name: passenger ID card + parent: IDCardStandard id: AgentIDCard suffix: Agent components: + - type: IdCard + jobTitle: Passenger + - type: Access + tags: + - Maintenance + - SyndicateAgent + - type: Sprite + layers: + - state: default + - state: idpassenger - type: AgentIDCard icons: # TODO figure out a better way of doing this. @@ -564,6 +575,18 @@ - type: StaticPrice price: 200 +- type: entity + name: passenger ID card + parent: AgentIDCard + id: NukieAgentIDCard + suffix: Nukie + components: + - type: Access + tags: + - Maintenance + - SyndicateAgent + - NuclearOperative + - type: entity parent: IDCardStandard id: AtmosIDCard @@ -587,6 +610,7 @@ - type: Access tags: - NuclearOperative + - SyndicateAgent - type: entity parent: IDCardStandard diff --git a/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml b/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml index 1c8d5e4699b..1ff3ee0fc37 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml @@ -71,6 +71,7 @@ - type: AtmosExposed - type: Kudzu growthTickChance: 0.3 + spreadChance: 0.4 - type: GrowingKudzu - type: SlowContacts walkSpeedModifier: 0.2 diff --git a/Resources/Prototypes/Entities/Objects/Misc/paper.yml b/Resources/Prototypes/Entities/Objects/Misc/paper.yml index edb32dcbe24..21a935e5d20 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/paper.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/paper.yml @@ -350,7 +350,6 @@ size: 5 - type: Storage capacity: 10 - size: 10 whitelist: tags: - Document @@ -492,6 +491,7 @@ name: captain's rubber stamp parent: RubberStampBase id: RubberStampCaptain + suffix: DO NOT MAP components: - type: Stamp stampedName: stamp-component-stamped-name-captain @@ -505,6 +505,7 @@ name: CentCom rubber stamp parent: RubberStampBase id: RubberStampCentcom + suffix: DO NOT MAP components: - type: Stamp stampedName: stamp-component-stamped-name-centcom @@ -518,6 +519,7 @@ name: chaplain's rubber stamp parent: RubberStampBase id: RubberStampChaplain + suffix: DO NOT MAP components: - type: Stamp stampedName: stamp-component-stamped-name-chaplain @@ -531,6 +533,7 @@ name: clown's rubber stamp parent: RubberStampBase id: RubberStampClown + suffix: DO NOT MAP components: - type: Stamp stampedName: stamp-component-stamped-name-clown @@ -547,6 +550,7 @@ name: chief engineer's rubber stamp parent: RubberStampBase id: RubberStampCE + suffix: DO NOT MAP components: - type: Stamp stampedName: stamp-component-stamped-name-ce @@ -560,6 +564,7 @@ name: chief medical officer's rubber stamp parent: RubberStampBase id: RubberStampCMO + suffix: DO NOT MAP components: - type: Stamp stampedName: stamp-component-stamped-name-cmo @@ -573,6 +578,7 @@ name: station representative's rubber stamp parent: RubberStampBase id: RubberStampHop + suffix: DO NOT MAP components: - type: Stamp stampedName: stamp-component-stamped-name-hop @@ -586,6 +592,7 @@ name: sheriff's rubber stamp parent: RubberStampBase id: RubberStampHos + suffix: DO NOT MAP components: - type: Stamp stampedName: stamp-component-stamped-name-hos @@ -599,6 +606,7 @@ name: mime's rubber stamp parent: RubberStampBase id: RubberStampMime + suffix: DO NOT MAP components: - type: Stamp stampedName: stamp-component-stamped-name-mime @@ -613,6 +621,7 @@ name: quartermaster's rubber stamp parent: RubberStampBase id: RubberStampQm + suffix: DO NOT MAP components: - type: Stamp stampedName: stamp-component-stamped-name-qm @@ -626,6 +635,7 @@ name: research director's rubber stamp parent: RubberStampBase id: RubberStampRd + suffix: DO NOT MAP components: - type: Stamp stampedName: stamp-component-stamped-name-rd @@ -652,6 +662,7 @@ name: syndicate rubber stamp parent: RubberStampBase id: RubberStampSyndicate + suffix: DO NOT MAP components: - type: Stamp stampedName: stamp-component-stamped-name-syndicate @@ -665,6 +676,7 @@ name: bailiff's rubber stamp parent: RubberStampBase id: RubberStampWarden + suffix: DO NOT MAP components: - type: Stamp stampedName: stamp-component-stamped-name-warden diff --git a/Resources/Prototypes/Entities/Objects/Misc/space_cash.yml b/Resources/Prototypes/Entities/Objects/Misc/space_cash.yml index 38295caa448..d89f855d3a7 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/space_cash.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/space_cash.yml @@ -47,6 +47,7 @@ - type: material id: Credit name: speso + unit: materials-unit-bill stackEntity: SpaceCash icon: { sprite: /Textures/Objects/Economy/cash.rsi, state: cash } price: 1 diff --git a/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml b/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml index a8954fd2410..772dd45029d 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml @@ -38,7 +38,7 @@ noSpawn: true components: - type: SubdermalImplant - implantAction: ToggleLight + implantAction: ActionToggleLight - type: PointLight enabled: false radius: 2.5 @@ -51,12 +51,6 @@ - HideContextMenu - Flashlight - type: UnpoweredFlashlight - toggleAction: - name: action-name-toggle-light - description: action-description-toggle-light - icon: { sprite: Objects/Tools/flashlight.rsi, state: flashlight } - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - event: !type:ToggleActionEvent - type: entity parent: BaseSubdermalImplant @@ -66,7 +60,7 @@ noSpawn: true components: - type: SubdermalImplant - implantAction: ActivateHonkImplant + implantAction: ActionActivateHonkImplant - type: TriggerImplantAction - type: EmitSoundOnTrigger sound: @@ -114,7 +108,7 @@ noSpawn: true components: - type: SubdermalImplant - implantAction: OpenStorageImplant + implantAction: ActionOpenStorageImplant - type: Item size: 9999 - type: Storage @@ -136,7 +130,7 @@ noSpawn: true components: - type: SubdermalImplant - implantAction: ActivateFreedomImplant + implantAction: ActionActivateFreedomImplant - type: entity parent: BaseSubdermalImplant @@ -146,7 +140,7 @@ noSpawn: true components: - type: SubdermalImplant - implantAction: OpenUplinkImplant + implantAction: ActionOpenUplinkImplant - type: Store preset: StorePresetUplink balance: @@ -164,7 +158,7 @@ noSpawn: true components: - type: SubdermalImplant - implantAction: ActivateEmpImplant + implantAction: ActionActivateEmpImplant - type: TriggerImplantAction - type: EmpOnTrigger range: 1.75 @@ -179,7 +173,7 @@ noSpawn: true components: - type: SubdermalImplant - implantAction: ActivateDnaScramblerImplant + implantAction: ActionActivateDnaScramblerImplant #Nuclear Operative/Special Exclusive implants @@ -192,7 +186,7 @@ components: - type: SubdermalImplant permanent: true - implantAction: ActivateMicroBomb + implantAction: ActionActivateMicroBomb - type: TriggerOnMobstateChange mobState: - Dead diff --git a/Resources/Prototypes/Entities/Objects/Misc/tiles.yml b/Resources/Prototypes/Entities/Objects/Misc/tiles.yml index f13bb59e67d..6b5e17a211f 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/tiles.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/tiles.yml @@ -418,6 +418,55 @@ - type: Stack stackType: FloorTileLaundry +# Concrete +- type: entity + parent: FloorTileItemBase + id: FloorTileItemConcrete + name: concrete tile + components: + - type: Sprite + state: concrete + - type: Item + heldPrefix: generic + - type: FloorTile + outputs: + - Plating + - FloorConcrete + - type: Stack + stackType: FloorTileConcrete + +- type: entity + parent: FloorTileItemBase + id: FloorTileItemGrayConcrete + name: gray concrete tile + components: + - type: Sprite + state: grayconcrete + - type: Item + heldPrefix: generic + - type: FloorTile + outputs: + - Plating + - FloorGrayConcrete + - type: Stack + stackType: FloorTileGrayConcrete + +- type: entity + parent: FloorTileItemBase + id: FloorTileItemOldConcrete + name: old concrete tile + components: + - type: Sprite + state: oldconcrete + - type: Item + heldPrefix: generic + - type: FloorTile + outputs: + - Plating + - FloorOldConcrete + - type: Stack + stackType: FloorTileOldConcrete + # Carpets - type: entity name: blue arcade floor @@ -824,5 +873,5 @@ - type: Stack stackType: FloorTileWeb - type: Construction - graph: TileWeb - node: webtile + graph: WebObjects + node: tile diff --git a/Resources/Prototypes/Entities/Objects/Misc/utensils.yml b/Resources/Prototypes/Entities/Objects/Misc/utensils.yml index e2891c48bff..b180e7d6316 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/utensils.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/utensils.yml @@ -1,16 +1,30 @@ -- type: entity +- type: entity parent: BaseItem id: UtensilBase abstract: true components: - type: Sprite sprite: Objects/Misc/utensils.rsi - - type: Item + - type: Item # TODO add inhand sprites for all utensils sprite: Objects/Misc/utensils.rsi - type: Tag tags: - - Trash + - Metal - type: SpaceGarbage + +- type: entity + parent: UtensilBase + id: UtensilBasePlastic + abstract: true + components: + - type: Utensil + breakChance: 0.20 + - type: StaticPrice + price: 0 + - type: Tag + tags: + - Plastic + - Trash - type: entity parent: UtensilBase @@ -34,24 +48,16 @@ Piercing: 5 - type: entity - parent: UtensilBase + parent: UtensilBasePlastic id: ForkPlastic name: plastic fork description: An eating utensil, perfect for stabbing. components: - type: Sprite state: plastic_fork - - type: Item - type: Utensil types: - Fork - breakChance: 0.20 - - type: Tag - tags: - - Plastic - - Trash - - type: StaticPrice - price: 0 - type: entity parent: UtensilBase @@ -59,9 +65,6 @@ name: spoon description: There is no spoon. components: - - type: Tag - tags: - - Metal - type: Sprite state: spoon - type: Item @@ -76,15 +79,11 @@ Blunt: 1 - type: entity - parent: UtensilBase + parent: UtensilBasePlastic id: SpoonPlastic name: plastic spoon description: There is no spoon. components: - - type: Tag - tags: - - Plastic - - Trash - type: Sprite state: plastic_spoon - type: Item @@ -92,7 +91,6 @@ - type: Utensil types: - Spoon - breakChance: 0.20 - type: entity parent: UtensilBase @@ -100,16 +98,8 @@ name: plastic knife description: That's not a knife. This is a knife. components: - - type: Tag - tags: - - Plastic - - Trash - type: Sprite state: plastic_knife - - type: Item - type: Utensil types: - Knife - breakChance: 0.20 - - type: StaticPrice - price: 0 diff --git a/Resources/Prototypes/Entities/Objects/Shields/shields.yml b/Resources/Prototypes/Entities/Objects/Shields/shields.yml index 12391ceb7c9..d19ae19a51a 100644 --- a/Resources/Prototypes/Entities/Objects/Shields/shields.yml +++ b/Resources/Prototypes/Entities/Objects/Shields/shields.yml @@ -30,12 +30,6 @@ Slash: 1 Piercing: 1 Heat: 1 - blockingToggleAction: - name: action-name-blocking - description: action-description-blocking - icon: { sprite: Objects/Weapons/Melee/shields.rsi, state: teleriot-icon } - iconOn: Objects/Weapons/Melee/shields.rsi/teleriot-on.png - event: !type:ToggleActionEvent - type: Damageable damageContainer: Shield - type: Destructible diff --git a/Resources/Prototypes/Entities/Objects/Specific/Cargo/cargo_pallet.yml b/Resources/Prototypes/Entities/Objects/Specific/Cargo/cargo_pallet.yml index 683df33b745..4802485654f 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Cargo/cargo_pallet.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Cargo/cargo_pallet.yml @@ -48,3 +48,6 @@ max: 1 - !type:DoActsBehavior acts: [ "Destruction" ] + - type: GuideHelp + guides: + - Cargo diff --git a/Resources/Prototypes/Entities/Objects/Specific/Chapel/bibles.yml b/Resources/Prototypes/Entities/Objects/Specific/Chapel/bibles.yml index 0328a7b1498..19414d09973 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Chapel/bibles.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Chapel/bibles.yml @@ -79,3 +79,14 @@ - type: Clothing slots: - Belt + +- type: entity + id: ActionBibleSummon + name: Summon familiar + description: Summon a familiar that will aid you and gain humanlike intelligence once inhabited by a soul. + noSpawn: true + components: + - type: InstantAction + icon: { sprite: Clothing/Head/Hats/witch.rsi, state: icon } + event: !type:SummonActionEvent + useDelay: 1 diff --git a/Resources/Prototypes/Entities/Objects/Specific/Forensics/forensics.yml b/Resources/Prototypes/Entities/Objects/Specific/Forensics/forensics.yml index 0df0a164030..a3abd4f1e35 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Forensics/forensics.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Forensics/forensics.yml @@ -14,4 +14,7 @@ color: yellow - type: Tag tags: - - Document \ No newline at end of file + - Document + - type: GuideHelp + guides: + - DNA diff --git a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml index 011db23bc8d..e1755c9756d 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml @@ -417,6 +417,8 @@ sound: path: /Audio/Ambience/Objects/drain.ogg - type: Drain + - type: DumpableSolution + solution: drainBuffer - type: Appearance - type: SolutionContainerVisuals maxFillLevels: 1 diff --git a/Resources/Prototypes/Entities/Objects/Specific/Kitchen/foodcarts.yml b/Resources/Prototypes/Entities/Objects/Specific/Kitchen/foodcarts.yml index be69667c3de..22faf499f11 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Kitchen/foodcarts.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Kitchen/foodcarts.yml @@ -47,7 +47,6 @@ - key: enum.StorageUiKey.Key type: StorageBoundUserInterface - type: Storage - popup: false capacity: 30 - type: TileFrictionModifier modifier: 0.4 # makes it slide diff --git a/Resources/Prototypes/Entities/Objects/Specific/Librarian/books_bag.yml b/Resources/Prototypes/Entities/Objects/Specific/Librarian/books_bag.yml index 78b368d6d30..2ad28399a66 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Librarian/books_bag.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Librarian/books_bag.yml @@ -21,3 +21,5 @@ whitelist: tags: - Book + - Document + - type: Dumpable diff --git a/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml b/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml index 49425e2eab1..725dee61d37 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml @@ -6,6 +6,22 @@ - type: MobMover - type: Mech - type: MechAir + - type: MechAirFilter + # everything except oxygen and nitrogen + gases: + - 2 + - 3 + - 4 + - 5 + - 6 + - 7 + - 8 + #- 9 TODO: fusion + - type: MechAirIntake + # for intake and filter to work + - type: AtmosDevice + requireAnchored: false + joinSystem: true - type: DoAfter - type: Repairable fuelCost: 25 @@ -38,7 +54,7 @@ - type: Clickable - type: WiresPanel - type: Wires #we just want the panel - BoardName: Mech + BoardName: wires-board-name-mech LayoutId: Mech - type: Fixtures fixtures: diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/disease.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/disease.yml index e6671aa424c..9c67cbb28c2 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/disease.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/disease.yml @@ -14,6 +14,10 @@ - Recyclable - Trash - type: BotanySwab + - type: GuideHelp + guides: + # - Virology (when it's back) + - Botany - type: entity parent: BaseItem diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml index cfcf729d91d..565b7bbbe86 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml @@ -253,8 +253,8 @@ - Biological damage: types: - Slash: -2.5 - Piercing: -2.5 + Slash: -5 + Piercing: -10 bloodlossModifier: -10 healingBeginSound: path: "/Audio/Items/Medical/brutepack_begin.ogg" @@ -298,6 +298,32 @@ stackType: AloeCream count: 10 +- type: entity + parent: BaseHealingItem + id: HealingToolbox + name: healing toolbox + description: A powerful toolbox imbued with robust energy. It can heal your wounds and fill you with murderous intent. + suffix: Do Not Map + components: + - type: Sprite + sprite: Objects/Specific/Medical/healing_toolbox.rsi + state: icon + - type: Healing + damageContainers: + - Biological + damage: + groups: # these are all split across multiple types + Brute: -150 + Burn: -150 + Toxin: -150 + bloodlossModifier: -20 + delay: 1 + selfHealPenaltyMultiplier: 0 + healingBeginSound: + path: "/Audio/Items/Medical/ointment_begin.ogg" + healingEndSound: + path: "/Audio/Items/Medical/ointment_end.ogg" + # Pills - type: entity name: dexalin pill (10u) diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml index 049c43a8c89..bd7ec7ae14b 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml @@ -18,6 +18,7 @@ - type: ExaminableSolution solution: hypospray - type: Hypospray + onlyMobs: false - type: UseDelay delay: 0.5 - type: StaticPrice @@ -46,9 +47,24 @@ - type: ExaminableSolution solution: hypospray - type: Hypospray + onlyMobs: false - type: UseDelay delay: 0.5 +- type: entity + name: experimental hypospray + suffix: Admeme + parent: SyndiHypo + description: The ultimate application of bluespace technology and rapid chemical administration. + id: AdminHypo + components: + - type: SolutionContainerManager + solutions: + hypospray: + maxVol: 3000 + - type: UseDelay + delay: 0.0 + - type: entity name: chemical medipen parent: BaseItem @@ -316,6 +332,7 @@ - type: ExaminableSolution solution: hypospray - type: Hypospray + onlyMobs: false - type: UseDelay delay: 0.5 - type: StaticPrice # A new shitcurity meta diff --git a/Resources/Prototypes/Entities/Objects/Specific/Research/disk.yml b/Resources/Prototypes/Entities/Objects/Specific/Research/disk.yml index 9594bd156d5..69bcfaa4ec0 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Research/disk.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Research/disk.yml @@ -8,6 +8,9 @@ sprite: Objects/Specific/Research/researchdisk.rsi state: icon - type: ResearchDisk + - type: GuideHelp + guides: + - Science - type: entity parent: ResearchDisk diff --git a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml index bcd81225bf0..31d6831f378 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml @@ -1,4 +1,4 @@ -- type: entity +- type: entity id: BaseBorgModule parent: BaseItem name: borg module @@ -23,6 +23,17 @@ containers: provided_container: !type:Container { } +- type: entity + id: ActionBorgSwapModule + name: Swap Module + description: Select this module, enabling you to use the tools it provides. + noSpawn: true + components: + - type: InstantAction + itemIconStyle: BigItem + useDelay: 0.5 + event: !type:BorgModuleActionSelectedEvent + - type: entity id: BaseBorgModuleCargo parent: BaseBorgModule @@ -212,6 +223,21 @@ items: - GasAnalyzer +- type: entity + id: BorgModuleConstruction + parent: [ BaseBorgModuleEngineering, BaseProviderBorgModule ] + name: construction cyborg module + components: + - type: Sprite + layers: + - state: engineering + - state: icon-construction + - type: ItemBorgModule + items: + - SheetSteelLingering0 + - SheetGlassLingering0 + - PartRodMetalLingering0 + - type: entity id: BorgModuleRCD parent: [ BaseBorgModuleEngineering, BaseProviderBorgModule ] @@ -354,6 +380,7 @@ - type: ItemBorgModule items: - Pen + - BooksBag - type: entity id: BorgModuleMusique @@ -381,9 +408,23 @@ items: - HydroponicsToolMiniHoe - HydroponicsToolSpade - - HydroponicsToolScythe - HydroponicsToolClippers + - Bucket + +- type: entity + id: BorgModuleHarvesting + parent: [ BaseBorgModuleService, BaseProviderBorgModule ] + name: harvesting cyborg module + components: + - type: Sprite + layers: + - state: service + - state: icon-harvesting + - type: ItemBorgModule + items: + - HydroponicsToolScythe - HydroponicsToolHatchet + - PlantBag - type: entity id: BorgModuleClowning diff --git a/Resources/Prototypes/Entities/Objects/Specific/Salvage/ore_bag.yml b/Resources/Prototypes/Entities/Objects/Specific/Salvage/ore_bag.yml index 16e353fb1aa..4681a653ed6 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Salvage/ore_bag.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Salvage/ore_bag.yml @@ -20,6 +20,7 @@ areaInsert: true whitelist: tags: + - ArtifactFragment - Ore - type: Dumpable - type: StaticPrice diff --git a/Resources/Prototypes/Entities/Objects/Specific/Security/barrier.yml b/Resources/Prototypes/Entities/Objects/Specific/Security/barrier.yml index 049a7bb94aa..b83b2c8ee2b 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Security/barrier.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Security/barrier.yml @@ -5,6 +5,7 @@ parent: BaseStructure components: - type: Transform + anchored: false noRot: true - type: Sprite sprite: Objects/Specific/Security/barrier.rsi @@ -24,21 +25,26 @@ canCollide: false - type: Fixtures fixtures: - fix1: + base: shape: !type:PhysShapeCircle radius: 0.45 density: 75 mask: - MachineMask + barrier: + shape: + !type:PhysShapeCircle + radius: 0.45 layer: - WallLayer + - type: DeployableBarrier + fixture: barrier - type: AccessReader access: [["Security"]] - type: Lock locked: false lockOnClick: true # toggle lock just by clicking on barrier - - type: DeployableBarrier - type: Damageable damageContainer: Inorganic damageModifierSet: Metallic diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml b/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml index a1f014410c8..6df622bf03c 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml @@ -378,3 +378,18 @@ reagents: - ReagentId: Oxygen Quantity: 200 + +- type: entity + parent: Jug + name: jug (Plant-B-Gone) + id: JugPlantBGone + noSpawn: true + components: + - type: Label + currentLabel: Plant-B-Gone + - type: SolutionContainerManager + solutions: + beaker: + reagents: + - ReagentId: PlantBGone + Quantity: 200 diff --git a/Resources/Prototypes/Entities/Objects/Tools/appraisal.yml b/Resources/Prototypes/Entities/Objects/Tools/appraisal.yml index e1f93b019bf..72369ce44b4 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/appraisal.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/appraisal.yml @@ -20,3 +20,6 @@ - type: Tag tags: - AppraisalTool + - type: GuideHelp + guides: + - Cargo diff --git a/Resources/Prototypes/Entities/Objects/Tools/fulton.yml b/Resources/Prototypes/Entities/Objects/Tools/fulton.yml new file mode 100644 index 00000000000..8e54b4277f9 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Tools/fulton.yml @@ -0,0 +1,109 @@ +# Stack +- type: stack + id: Fulton + name: fulton + icon: + sprite: /Textures/Objects/Tools/fulton.rsi + state: extraction_pack + spawn: Fulton1 + maxCount: 10 + itemSize: 2 + +# Entities +- type: entity + id: FultonBeacon + parent: BaseFoldable + name: fulton beacon + description: Beacon to receive fulton extractions. + components: + - type: Physics + bodyType: Dynamic + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.4,0.25,0.1" + density: 20 + mask: + - Impassable + - type: Item + size: 30 + - type: Foldable + folded: true + - type: Clickable + - type: InteractionOutline + - type: FultonBeacon + - type: Appearance + - type: GenericVisualizer + visuals: + enum.FoldedVisuals.State: + foldedLayer: + True: { state: folded_extraction } + False: { state: extraction_point } + - type: Sprite + sprite: Objects/Tools/fulton.rsi + drawdepth: SmallObjects + noRot: true + layers: + - state: extraction_point + map: [ "foldedLayer" ] + +- type: entity + id: Fulton + parent: BaseItem + suffix: Full + name: fulton + description: Used to extract containers, items, or forcibly recruit people into your base of operations. + components: + - type: Fulton + - type: Item + size: 20 + - type: Stack + stackType: Fulton + count: 10 + - type: Sprite + drawdepth: SmallObjects + sprite: Objects/Tools/fulton.rsi + state: extraction_pack + - type: Damageable + damageContainer: Inorganic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + +- type: entity + id: Fulton1 + parent: Fulton + name: fulton + suffix: One + components: + - type: Item + size: 2 + - type: Stack + count: 1 + +- type: entity + id: FultonEffect + noSpawn: true + name: fulton effect + components: + - type: TimedDespawn + lifetime: 60 + - type: Sprite + drawdepth: Effects + noRot: true + offset: 0,0.5 + layers: + - map: [ "enum.FultonVisualLayers.Base" ] + sprite: Objects/Tools/fulton_balloon.rsi + state: fulton_balloon + - type: Tag + tags: + - HideContextMenu + - type: AnimationPlayer diff --git a/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml b/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml index 5e013179ede..3c904e36998 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml @@ -21,17 +21,6 @@ - key: enum.SharedGasTankUiKey.Key type: GasTankBoundUserInterface - type: GasTank - toggleAction: - name: action-name-internals-toggle - description: action-description-internals-toggle - icon: - sprite: Interface/Alerts/internals.rsi - state: internal2 - iconOn: - sprite: Interface/Alerts/internals.rsi - state: internal1 - event: !type:ToggleActionEvent - useDelay: 1 outputPressure: 21.3 air: # If gas tank volume is changed, adjust MinimumTritiumOxyburnEnergy in Atmospherics.cs by the same proportions diff --git a/Resources/Prototypes/Entities/Objects/Tools/glowstick.yml b/Resources/Prototypes/Entities/Objects/Tools/glowstick.yml index 3d7041829c9..602795a8f2e 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/glowstick.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/glowstick.yml @@ -69,9 +69,7 @@ components: - type: ExpendableLight spentName: expendable-light-spent-red-glowstick-name - glowDuration: 10 # time in seconds glowColorLit: "#FF0000" - fadeOutDuration: 5 - type: PointLight color: "#FF0000" diff --git a/Resources/Prototypes/Entities/Objects/Tools/jetpacks.yml b/Resources/Prototypes/Entities/Objects/Tools/jetpacks.yml index 6e3a5c1f1dc..73635fbc045 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/jetpacks.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/jetpacks.yml @@ -31,6 +31,7 @@ weightlessAcceleration: 1 weightlessFriction: 0.3 weightlessModifier: 1.2 + - type: CanMoveInAir - type: Sprite sprite: Objects/Tanks/Jetpacks/blue.rsi state: icon @@ -53,21 +54,26 @@ temperature: 293.15 - type: Jetpack moleUsage: 0.00085 - toggleAction: - icon: - sprite: Objects/Tanks/Jetpacks/blue.rsi - state: icon - iconOn: - sprite: Objects/Tanks/Jetpacks/blue.rsi - state: icon-on - name: action-name-jetpack-toggle - description: action-description-jetpack-toggle - useDelay: 1.0 - event: !type:ToggleJetpackEvent - type: Appearance - type: StaticPrice price: 100 +- type: entity + id: ActionToggleJetpack + name: Toggle jetpack + description: Toggles the jetpack, giving you movement outside the station. + noSpawn: true + components: + - type: InstantAction + icon: + sprite: Objects/Tanks/Jetpacks/blue.rsi + state: icon + iconOn: + sprite: Objects/Tanks/Jetpacks/blue.rsi + state: icon-on + useDelay: 1.0 + event: !type:ToggleJetpackEvent + #Empty blue - type: entity id: JetpackBlue diff --git a/Resources/Prototypes/Entities/Objects/Tools/lighters.yml b/Resources/Prototypes/Entities/Objects/Tools/lighters.yml index 07c8b46d2a8..11c414e6b92 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/lighters.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/lighters.yml @@ -44,7 +44,6 @@ sprite: Objects/Tools/lighters.rsi heldPrefix: off - type: ItemCooldown - - type: ItemStatus - type: RefillableSolution solution: Welder - type: SolutionContainerManager diff --git a/Resources/Prototypes/Entities/Objects/Tools/welders.yml b/Resources/Prototypes/Entities/Objects/Tools/welders.yml index 01e2f29d58c..d902e5e23ef 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/welders.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/welders.yml @@ -33,7 +33,6 @@ damage: types: Blunt: 5 #i mean... i GUESS you could use it like that - - type: ItemStatus - type: RefillableSolution solution: Welder - type: SolutionContainerManager diff --git a/Resources/Prototypes/Entities/Objects/Vehicles/actions.yml b/Resources/Prototypes/Entities/Objects/Vehicles/actions.yml new file mode 100644 index 00000000000..cee03f2d25c --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Vehicles/actions.yml @@ -0,0 +1,10 @@ +- type: entity + id: ActionVehicleHorn + name: Honk + description: Honk! + noSpawn: true + components: + - type: InstantAction + useDelay: 3.4 + icon: Objects/Fun/bikehorn.rsi/icon.png + event: !type:HonkActionEvent diff --git a/Resources/Prototypes/Entities/Objects/Vehicles/buckleable.yml b/Resources/Prototypes/Entities/Objects/Vehicles/buckleable.yml index 99405988ea7..d807bcc5a9f 100644 --- a/Resources/Prototypes/Entities/Objects/Vehicles/buckleable.yml +++ b/Resources/Prototypes/Entities/Objects/Vehicles/buckleable.yml @@ -2,19 +2,12 @@ id: BaseVehicle save: false abstract: true - name: Vehicle components: - - type: Strap - buckleOffset: "0.10, 0.36" - maxBuckleDistance: 1 - type: AmbientSound sound: "/Audio/Effects/Vehicle/vehicleengineidle.ogg" range: 10 volume: -10 enabled: false - - type: InputMover - - type: InteractionOutline - - type: Vehicle - type: MovementSpeedModifier weightlessModifier: 0 acceleration: 2 @@ -22,24 +15,6 @@ frictionNoInput: 6 baseWalkSpeed: 4.5 baseSprintSpeed: 6 - - type: Tag - - type: Pullable - - type: Physics - bodyType: KinematicController - - type: Clickable - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeCircle - radius: 0.4 - density: 360 - restitution: 0.0 - mask: - - MobMask - layer: - - TableLayer - - type: Appearance - type: Repairable fuelcost: 20 doAfterDelay: 20 @@ -64,6 +39,36 @@ sound: path: /Audio/Effects/metalbreak.ogg - !type:ExplodeBehavior + +- type: entity + parent: BaseVehicle + id: BaseVehicleRideable + abstract: true + name: Vehicle + components: + - type: Strap + buckleOffset: "0.10, 0.36" + maxBuckleDistance: 1 + - type: InputMover + - type: InteractionOutline + - type: Vehicle + - type: Pullable + - type: Physics + bodyType: KinematicController + - type: Clickable + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.4 + density: 360 + restitution: 0.0 + mask: + - MobMask + layer: + - TableLayer + - type: Appearance - type: ItemSlots slots: key_slot: #this slot name is important @@ -79,10 +84,9 @@ - type: StaticPrice price: 750 # Grand Theft Auto. - - type: entity id: VehicleJanicart - parent: BaseVehicle + parent: BaseVehicleRideable name: janicart description: The janitor's trusty steed. components: @@ -99,12 +103,6 @@ map: ["enum.VehicleVisualLayers.AutoAnimate"] noRot: true - type: UnpoweredFlashlight - toggleAction: - name: action-name-toggle-light - description: action-description-toggle-light - icon: { sprite: Objects/Tools/flashlight.rsi, state: flashlight } - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - event: !type:ToggleActionEvent - type: PointLight enabled: false radius: 3.5 @@ -172,7 +170,7 @@ - type: entity id: VehicleSecway - parent: BaseVehicle + parent: BaseVehicleRideable name: secway description: The future of transportation. Popularized by St. James, the patron saint of security officers and internet forum moderators. components: @@ -219,7 +217,7 @@ volume: -3 - type: entity - parent: BaseVehicle + parent: BaseVehicleRideable id: VehicleATV name: ATV description: All-Tile Vehicle. @@ -246,12 +244,6 @@ buckleOffset: "0.1, -0.05" maxBuckleDistance: 1 - type: UnpoweredFlashlight - toggleAction: - name: action-name-toggle-light - description: action-description-toggle-light - icon: { sprite: Objects/Tools/flashlight.rsi, state: flashlight } - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - event: !type:ToggleActionEvent - type: PointLight enabled: false radius: 3.5 @@ -274,7 +266,7 @@ - type: entity id: VehicleSyndicateSegway - parent: BaseVehicle + parent: BaseVehicleRideable name: syndicate segway description: Be an enemy of the corporation, in style. components: @@ -316,7 +308,7 @@ volume: -3 - type: entity - parent: BaseVehicle + parent: BaseVehicleRideable id: VehicleSkeletonMotorcycle name: skeleton motorcycle description: Bad to the Bone. @@ -341,12 +333,6 @@ baseWalkSpeed: 4.5 baseSprintSpeed: 7 - type: UnpoweredFlashlight - toggleAction: - name: action-name-toggle-light - description: action-description-toggle-light - icon: { sprite: Objects/Tools/flashlight.rsi, state: flashlight } - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - event: !type:ToggleActionEvent - type: PointLight enabled: false radius: 3.5 @@ -369,7 +355,7 @@ - type: entity id: VehicleUnicycle - parent: [BaseVehicle, BaseFoldable, BaseItem] + parent: [BaseVehicleRideable, BaseFoldable, BaseItem] name: unicycle description: It only has one wheel! components: @@ -429,7 +415,7 @@ - type: entity id: VehicleWheelchair - parent: [BaseVehicle, BaseFoldable, BaseItem] + parent: [BaseVehicleRideable, BaseFoldable, BaseItem] name: Wheelchair description: A chair with big wheels. It looks like you can move in these on your own. components: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Bombs/funny.yml b/Resources/Prototypes/Entities/Objects/Weapons/Bombs/funny.yml index e6f35892ba0..c33c1f92c55 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Bombs/funny.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Bombs/funny.yml @@ -23,16 +23,16 @@ types: Blunt: 5 - type: OnUseTimerTrigger - delay: 180 + delay: 120 beepSound: /Audio/Machines/Nuke/general_beep.ogg params: volume: -2 - type: ExplodeOnTrigger - type: Explosive explosionType: Default - maxIntensity: 8 - intensitySlope: 5 - totalIntensity: 20 + maxIntensity: 50 + intensitySlope: 25 + totalIntensity: 100 canCreateVacuum: false - type: DeleteOnTrigger - type: HotPotato @@ -40,7 +40,7 @@ enabled: false damage: types: - Heat: 1 + Heat: 2 - type: Appearance - type: GenericVisualizer visuals: @@ -66,3 +66,41 @@ tags: - HideContextMenu - type: AnimationPlayer + +- type: entity + name: banana peel + suffix: Explosive + parent: TrashBananaPeel + id: TrashBananaPeelExplosive + components: + - type: Sprite + sprite: Objects/Specific/Hydroponics/banana.rsi + layers: + - state: peel + - state: primed + shader: unshaded + - type: TriggerOnSlip + - type: ExplodeOnTrigger + - type: Explosive + explosionType: Default + maxIntensity: 2 + totalIntensity: 10 + canCreateVacuum: false + - type: DeleteOnTrigger + - type: AnimationPlayer + +- type: entity + parent: BaseItem + id: TrashBananaPeelExplosiveUnarmed + name: banana + suffix: Unarmed + description: There's something unusual about this banana. + components: + - type: Sprite + sprite: Objects/Specific/Hydroponics/banana.rsi + state: produce + - type: SpawnItemsOnUse + items: + - id: TrashBananaPeelExplosive + sound: + path: /Audio/Effects/unwrap.ogg diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Bombs/spider.yml b/Resources/Prototypes/Entities/Objects/Weapons/Bombs/spider.yml new file mode 100644 index 00000000000..50a7ea8687b --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Weapons/Bombs/spider.yml @@ -0,0 +1,47 @@ +- type: entity + name: spider clan charge + description: A modified C-4 charge supplied to you by the Spider Clan. Its explosive power has been juiced up, but only works in one specific area. + # not actually modified C-4! oh the horror! + parent: BaseItem + id: SpiderCharge + components: + - type: Sprite + sprite: Objects/Weapons/Bombs/spidercharge.rsi + state: icon + - type: Item + sprite: Objects/Weapons/Bombs/spidercharge.rsi + size: 10 + - type: SpiderCharge + - type: OnUseTimerTrigger + delay: 10 + delayOptions: [5, 10, 30, 60] + initialBeepDelay: 0 + beepSound: /Audio/Machines/Nuke/general_beep.ogg + startOnStick: true + - type: AutomatedTimer + - type: Sticky + stickDelay: 5 + stickPopupStart: comp-sticky-start-stick-bomb + stickPopupSuccess: comp-sticky-success-stick-bomb + # can only stick it in target area, no reason to unstick + canUnstick: false + blacklist: # can't stick it to movable things, even if they are in the target area + components: + - Anchorable + - Item + - Body + - type: Explosive # Powerful explosion in a large radius. Will break underplating. + explosionType: DemolitionCharge + totalIntensity: 360 + intensitySlope: 10 + maxIntensity: 120 + canCreateVacuum: true + - type: ExplodeOnTrigger + - type: StickyVisualizer + - type: Appearance + - type: GenericVisualizer + visuals: + enum.Trigger.TriggerVisuals.VisualState: + base: + Primed: { state: primed } + Unprimed: { state: complete } diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/magnum.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/magnum.yml index 2fa6481770d..e077c7b5413 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/magnum.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/magnum.yml @@ -59,76 +59,3 @@ components: - type: CartridgeAmmo proto: BulletMagnumAP - -- type: entity - id: BaseAnomalousCartridge - parent: BaseCartridgeMagnum - description: Packs twice the punch of a standard A.P.E. particle. - abstract: true - components: - - type: Sprite - sprite: Objects/Weapons/Guns/Ammunition/Casings/anomalous_casing.rsi - layers: - - state: base - map: ["enum.AmmoVisualLayers.Base"] - - type: Tag - tags: - - Cartridge - - CartridgeCHIMP - -- type: entity - id: CartridgeAnomalousParticleDelta - parent: BaseAnomalousCartridge - name: cartridge (delta particle) - components: - - type: Sprite - layers: - - state: base - map: ["enum.AmmoVisualLayers.Base"] - - state: overlay - color: crimson - - type: CartridgeAmmo - proto: AnomalousParticleDeltaStrong - -- type: entity - id: CartridgeAnomalousParticleEpsilon - parent: BaseAnomalousCartridge - name: cartridge (epsilon particle) - components: - - type: Sprite - layers: - - state: base - map: ["enum.AmmoVisualLayers.Base"] - - state: overlay - color: plum - - type: CartridgeAmmo - proto: AnomalousParticleEpsilonStrong - -- type: entity - id: CartridgeAnomalousParticleZeta - parent: BaseAnomalousCartridge - name: cartridge (zeta particle) - components: - - type: Sprite - layers: - - state: base - map: ["enum.AmmoVisualLayers.Base"] - - state: overlay - color: goldenrod - - type: CartridgeAmmo - proto: AnomalousParticleZetaStrong - -- type: entity - id: CartridgeAnomalousParticleOmega - parent: BaseAnomalousCartridge - name: cartridge (omega particle) - description: An experimental and often dangerous particle. - components: - - type: Sprite - layers: - - state: base - map: ["enum.AmmoVisualLayers.Base"] - - state: overlay - color: green - - type: CartridgeAmmo - proto: AnomalousParticleOmegaStrong diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/antimateriel.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/antimateriel.yml index 2e4a7271f44..31d7b65fe8b 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/antimateriel.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/antimateriel.yml @@ -7,8 +7,7 @@ - type: Projectile damage: types: - Piercing: 45 + Piercing: 40 Structural: 30 - ignoreResistances: true - type: StaminaDamageOnCollide - damage: 75 + damage: 35 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/watergun.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/watergun.yml index 0906f2c30ef..a815f9c0cd1 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/watergun.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/watergun.yml @@ -14,7 +14,7 @@ - type: Gun clumsyProof: true cameraRecoilScalar: 0 #no recoil - fireRate: 1 + fireRate: 2 selectedMode: SemiAuto availableModes: - SemiAuto @@ -23,12 +23,12 @@ - type: SolutionContainerManager solutions: chamber: - maxVol: 50 #5 shots + maxVol: 50 #10 shots - type: SolutionAmmoProvider solutionId: chamber proto: BulletWaterShot - type: SolutionTransfer - transferAmount: 10 + transferAmount: 5 maxTransferAmount: 50 minTransferAmount: 5 canChangeTransferAmount: true @@ -75,7 +75,44 @@ components: - type: Gun cameraRecoilScalar: 0 #no recoil - fireRate: 2 + fireRate: 3 + selectedMode: FullAuto + availableModes: + - FullAuto + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/water_spray.ogg + - type: SolutionContainerManager + solutions: + chamber: + maxVol: 100 #20 shots + - type: Sprite + sprite: Objects/Weapons/Guns/Pistols/soaker.rsi + layers: + - state: detail1 + - state: detail2 + map: ["enum.PowerDeviceVisualLayers.Powered"] + - state: icon + map: [ "enum.DamageStateVisualLayers.Base" ] + - type: Item + sprite: Objects/Weapons/Guns/Pistols/soaker.rsi + size: 35 + - type: RandomSprite + getAllGroups: true + available: + - enum.DamageStateVisualLayers.Base: + icon: Rainbow + - enum.PowerDeviceVisualLayers.Powered: + detail2: Sixteen + +- type: entity + id: WeaponWaterBlasterSuper + parent: WeaponWaterGunBase + name: super water blaster + description: No! No! Not in the eyes! + components: + - type: Gun + cameraRecoilScalar: 0 #no recoil + fireRate: 8 selectedMode: FullAuto availableModes: - FullAuto @@ -84,7 +121,7 @@ - type: SolutionContainerManager solutions: chamber: - maxVol: 100 #10 shots + maxVol: 500 #100 shots - type: Sprite sprite: Objects/Weapons/Guns/Pistols/soaker.rsi layers: 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 dbb05f3ae16..096ba75f23d 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml @@ -310,6 +310,9 @@ steps: 5 zeroVisible: true - type: Appearance + - type: GuideHelp + guides: + - Security - type: entity name: practice disabler @@ -440,6 +443,63 @@ - type: StaticPrice price: 63 +- type: entity + name: C.H.I.M.P. handcannon + parent: BaseWeaponBatterySmall + id: WeaponPistolCHIMP + description: Just because it's a little C.H.I.M.P. doesn't mean it can't punch like an A.P.E. + components: + - type: Sprite + sprite: Objects/Weapons/Guns/Revolvers/chimp.rsi + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-unshaded-1 + visible: false + map: ["enum.GunVisualLayers.MagUnshaded"] + shader: unshaded + - type: Appearance + - type: MagazineVisuals + magState: mag + steps: 3 + zeroVisible: false + - type: Clothing + sprite: Objects/Weapons/Guns/Revolvers/chimp.rsi + - type: Gun + fireRate: 1.5 + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/taser2.ogg + - type: ProjectileBatteryAmmoProvider + proto: AnomalousParticleDeltaStrong + fireCost: 100 + - type: BatteryWeaponFireModes + fireModes: + - proto: AnomalousParticleDeltaStrong + fireCost: 100 + - proto: AnomalousParticleEpsilonStrong + fireCost: 100 + - proto: AnomalousParticleZetaStrong + fireCost: 100 + - type: Construction + graph: UpgradeWeaponPistolCHIMP + node: start + +- type: entity + name: experimental C.H.I.M.P. handcannon + parent: WeaponPistolCHIMP + id: WeaponPistolCHIMPUpgraded + description: This C.H.I.M.P. seems to have a greater punch than is usual... + components: + - type: BatteryWeaponFireModes + fireModes: + - proto: AnomalousParticleDeltaStrong + fireCost: 100 + - proto: AnomalousParticleEpsilonStrong + fireCost: 100 + - proto: AnomalousParticleOmegaStrong + fireCost: 100 + - proto: AnomalousParticleZetaStrong + fireCost: 100 - type: entity name: Eye of a behonker diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/impacts.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/impacts.yml index f8678a2f227..d70b05bf61d 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/impacts.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/impacts.yml @@ -34,6 +34,25 @@ tags: - HideContextMenu +- type: entity + id: BulletImpactEffectOrangeDisabler + noSpawn: true + components: + - type: TimedDespawn + lifetime: 0.2 + - type: Sprite + drawdepth: Effects + layers: + - shader: unshaded + map: ["enum.EffectLayers.Unshaded"] + sprite: Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi + state: impact_laser_greyscale + color: orangered + - type: EffectVisuals + - type: Tag + tags: + - HideContextMenu + - type: entity id: BulletImpactEffectKinetic noSpawn: true diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml index 627ff012875..aa0e779aec1 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml @@ -278,7 +278,6 @@ noSpawn: true components: - type: Sprite - color: "#ffff33" sprite: Structures/Power/Generation/Singularity/emitter.rsi layers: - state: projectile @@ -307,6 +306,65 @@ - type: TimedDespawn lifetime: 3 +- type: entity + name: watcher bolt + id: WatcherBolt + parent: BaseBullet + noSpawn: true + components: + - type: FlyBySound + sound: + collection: EnergyMiss + params: + volume: 5 + - type: Sprite + sprite: Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi + layers: + - state: omnilaser + shader: unshaded + - type: Ammo + muzzleFlash: null + - type: Physics + - type: Fixtures + fixtures: + projectile: + shape: + !type:PhysShapeAabb + bounds: "-0.2,-0.2,0.2,0.2" + hard: false + mask: + - Opaque + fly-by: *flybyfixture + - type: StaminaDamageOnCollide + damage: 40 + - type: Projectile + # soundHit: Waiting on serv3 + impactEffect: BulletImpactEffectDisabler + damage: + types: + Cold: 10 + - type: TimedDespawn + lifetime: 3 + +- type: entity + name: magmawing watcher bolt + id: WatcherBoltMagmawing + parent: BaseBullet + noSpawn: true + components: + - type: Sprite + sprite: Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi + layers: + - state: omnilaser_greyscale + shader: unshaded + color: orangered + - type: Projectile + # soundHit: Waiting on serv3 + impactEffect: BulletImpactEffectOrangeDisabler + damage: + types: + Heat: 10 + - type: entity id: BulletKinetic name: kinetic bolt @@ -378,7 +436,7 @@ - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/magic.rsi layers: - - state: magicm + - state: magicm_red shader: unshaded - type: Ammo muzzleFlash: null @@ -419,6 +477,10 @@ name: epsilon particles noSpawn: true components: + - type: Sprite + layers: + - state: magicm_cyan + shader: unshaded - type: AnomalousParticle particleType: Epsilon @@ -440,6 +502,10 @@ name: zeta particles noSpawn: true components: + - type: Sprite + layers: + - state: magicm_yellow + shader: unshaded - type: AnomalousParticle particleType: Zeta @@ -458,6 +524,7 @@ - type: entity parent: AnomalousParticleDelta id: AnomalousParticleOmegaStrong + name: omega particles noSpawn: true components: - type: Sprite diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml index 754967c70c8..092a49c6189 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml @@ -154,43 +154,4 @@ - type: RevolverAmmoProvider capacity: 5 chambers: [ True, True, True, True, True ] - ammoSlots: [ null, null, null, null, null ] - -- type: entity - id: WeaponPistolCHIMP - parent: BaseWeaponRevolver - name: C.H.I.M.P. handcannon - description: Just because it's a little C.H.I.M.P. doesn't mean it can't punch like an A.P.E. - components: - - type: Sprite - sprite: Objects/Weapons/Guns/Revolvers/chimp.rsi - layers: - - state: base - map: ["enum.GunVisualLayers.Base"] - - state: mag-unshaded-1 - visible: false - map: ["enum.GunVisualLayers.MagUnshaded"] - shader: unshaded - - type: Appearance - - type: MagazineVisuals - magState: mag - steps: 3 - zeroVisible: false - - type: Clothing - sprite: Objects/Weapons/Guns/Revolvers/chimp.rsi - - type: RevolverAmmoProvider - whitelist: - tags: - - CartridgeCHIMP - proto: CartridgeAnomalousParticleDelta #when revolvers stop sucking cock, make this spawn empty - capacity: 10 - chambers: [ True, True, True, True, True, True, True, True, True, True ] - ammoSlots: [ null, null, null, null, null, null, null, null, null, null ] - soundEject: - path: /Audio/Weapons/Guns/MagOut/revolver_magout.ogg - soundInsert: - path: /Audio/Weapons/Guns/MagIn/revolver_magin.ogg - - type: Gun - fireRate: 1.5 - soundGunshot: - path: /Audio/Weapons/Guns/Gunshots/taser2.ogg + ammoSlots: [ null, null, null, null, null ] \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml index abf612778db..62bd7064438 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml @@ -18,7 +18,7 @@ - Back - type: AmmoCounter - type: Gun - fireRate: 0.3 # ~5 second cooldown between shots + fireRate: 0.75 selectedMode: SemiAuto availableModes: - SemiAuto diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/turrets.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/turrets.yml index b2ad3ff7022..e0f5357b7e3 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/turrets.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/turrets.yml @@ -66,10 +66,7 @@ interactSuccessSound: path: /Audio/Effects/double_beep.ogg - type: CombatMode - combatToggleAction: - enabled: false - autoPopulate: false - name: action-name-combat + combatToggleAction: ActionCombatModeToggleOff - type: Damageable damageContainer: Inorganic - type: Destructible diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/chainsaw.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/chainsaw.yml index 1e108c2dd7f..387913715cf 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/chainsaw.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/chainsaw.yml @@ -34,7 +34,6 @@ size: 50 sprite: Objects/Weapons/Melee/chainsaw.rsi - type: DisarmMalus - - type: ItemStatus - type: RefillableSolution solution: Welder - type: SolutionContainerManager diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml index ca6f2f412ab..d7956e590b0 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml @@ -7,12 +7,6 @@ components: - type: Sharp - type: UnpoweredFlashlight - toggleAction: - name: action-name-toggle-light - description: action-description-toggle-light - icon: { sprite: Objects/Tools/flashlight.rsi, state: flashlight } - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - event: !type:ToggleActionEvent - type: PointLight color: "#ffeead" enabled: false @@ -54,10 +48,14 @@ - type: MeleeWeapon damage: types: - Blunt: 10 - Slash: 5 + Blunt: 8 + Slash: 2 - type: Wieldable - - type: MeleeRequiresWield + - type: IncreaseDamageOnWield + damage: + types: + Blunt: 2.5 + Slash: 2.5 - type: GunRequiresWield - type: Item size: 150 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml index fd1ceb96cc9..ee2e555b0c8 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml @@ -35,6 +35,8 @@ Piercing: 12 angle: 0 animation: WeaponArcThrust + soundHit: + path: /Audio/Weapons/bladeslice.ogg - type: DamageOtherOnHit damage: types: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml index aefb6b119a7..ec5a5c10c96 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml @@ -61,6 +61,37 @@ - back - suitStorage +- type: entity + name: energy katana + parent: Katana + id: EnergyKatana + description: A katana infused with strong energy. + components: + - type: Sprite + sprite: Objects/Weapons/Melee/energykatana.rsi + state: icon + - type: MeleeWeapon + damage: + types: + Slash: 30 + - type: Item + size: 15 + sprite: Objects/Weapons/Melee/energykatana.rsi + - type: EnergyKatana + - type: DashAbility + dashAction: ActionEnergyKatanaDash + - type: LimitedCharges + maxCharges: 3 + charges: 3 + - type: AutoRecharge + rechargeDuration: 20 + - type: Clothing + sprite: Objects/Weapons/Melee/energykatana.rsi + slots: + - Back + - Belt + - type: Reflect + - type: entity name: machete parent: BaseItem diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/weapon_toolbox.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/weapon_toolbox.yml new file mode 100644 index 00000000000..9eaf14cf9ab --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/weapon_toolbox.yml @@ -0,0 +1,18 @@ +- type: entity + parent: BaseItem + id: WeaponMeleeToolboxRobust + name: robust toolbox + description: A tider's weapon. + suffix: Do Not Map + components: + - type: Sprite + sprite: Objects/Tools/Toolboxes/toolbox_red.rsi + state: icon + - type: Item + size: 150 + sprite: Objects/Tools/Toolboxes/toolbox_red.rsi + - type: MeleeWeapon + attackRate: 1.5 + damage: + types: + Blunt: 20 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml index 0f2aa3b687b..9f18b94d2c4 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml @@ -72,6 +72,9 @@ - type: TimerTriggerVisuals primingSound: path: /Audio/Effects/countdown.ogg + - type: GuideHelp + guides: + - Security - type: entity id: GrenadeFlashEffect @@ -145,7 +148,7 @@ - type: AnchorOnTrigger removeOnTrigger: true - type: TwoStageTrigger - triggerDelay: 10 + triggerDelay: 10.45 components: - type: AmbientSound enabled: true @@ -191,15 +194,15 @@ sound: path: /Audio/Effects/Grenades/Supermatter/whitehole_start.ogg volume: 5 - - type: AmbientSound - enabled: false - volume: -5 - range: 14 - sound: - path: /Audio/Effects/Grenades/Supermatter/whitehole_loop.ogg - type: TwoStageTrigger - triggerDelay: 10 + triggerDelay: 11.14 components: + - type: AmbientSound + enabled: true + volume: -5 + range: 14 + sound: + path: /Audio/Effects/Grenades/Supermatter/whitehole_loop.ogg - type: GravityWell maxRange: 10 baseRadialAcceleration: -180 @@ -219,10 +222,9 @@ sound: path: /Audio/Effects/Grenades/Supermatter/supermatter_end.ogg params: - volume: 5 + volume: 15 - type: DeleteOnTrigger - - type: entity name: the nuclear option description: Please don't throw it, think of the children. diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/throwing_stars.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/throwing_stars.yml index 198f634c16c..b0fa94d4404 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/throwing_stars.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/throwing_stars.yml @@ -24,3 +24,13 @@ types: Slash: 8 Piercing: 10 + +- type: entity + parent: ThrowingStar + id: ThrowingStarNinja + name: ninja throwing star + components: + # prevent ninja crashing server + filling bag with 20 stars to instakill a single person + # also limits the crew's use + - type: TimedDespawn + lifetime: 30 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/security.yml b/Resources/Prototypes/Entities/Objects/Weapons/security.yml index 851b9f9f117..dc5c052639b 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/security.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/security.yml @@ -60,6 +60,9 @@ explosionType: Default intensitySlope: 1.5 maxIntensity: 200 + - type: GuideHelp + guides: + - Security - type: entity name: truncheon @@ -87,6 +90,9 @@ - type: Appearance - type: StaticPrice price: 100 + - type: GuideHelp + guides: + - Security - type: entity name: flash @@ -128,6 +134,9 @@ enum.FlashVisuals.LightLayer: True: {visible: true} False: {visible: false} + - type: GuideHelp + guides: + - Security - type: entity name: portable flasher @@ -173,3 +182,6 @@ radius: 0 softness: 0 enabled: true + - type: GuideHelp + guides: + - Security diff --git a/Resources/Prototypes/Entities/Stations/nanotrasen.yml b/Resources/Prototypes/Entities/Stations/nanotrasen.yml index 40cdcfe489f..701db325882 100644 --- a/Resources/Prototypes/Entities/Stations/nanotrasen.yml +++ b/Resources/Prototypes/Entities/Stations/nanotrasen.yml @@ -35,3 +35,14 @@ noSpawn: true components: - type: Transform + +- type: entity + id: StandardStationArena + parent: + - BaseStation + - BaseStationJobsSpawning + - BaseStationRecords + - BaseStationNanotrasen + noSpawn: true + components: + - type: Transform diff --git a/Resources/Prototypes/Entities/Structures/Decoration/cobwebs.yml b/Resources/Prototypes/Entities/Structures/Decoration/cobwebs.yml new file mode 100644 index 00000000000..15897201b2f --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Decoration/cobwebs.yml @@ -0,0 +1,41 @@ +#BaseCobweb doesn't really need to exist since, as of writing, these only have 2 sprite states & obviously have no need for variation beyond that. + +- type: entity + id: Cobweb1 + name: cobweb + description: Somebody should remove that. + placement: + mode: SnapgridCenter + components: + - type: Clickable + - type: Sprite + sprite: Structures/Decoration/cobweb.rsi + state: cobweb1 + drawdepth: OverMobs #We want this to appear below doors but above mobs + - type: Icon + sprite: Structures/Decoration/cobweb.rsi + state: cobweb1 + - type: Transform + anchored: true + - type: Damageable + damageContainer: Inorganic + damageModifierSet: Wood + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 20 #With the damage modifier you should have a hard time getting through it with something blunt, but an axe or something flammable will do the trick. + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + +- type: entity + id: Cobweb2 + parent: Cobweb1 + components: + - type: Sprite + sprite: Structures/Decoration/cobweb.rsi + state: cobweb2 + - type: Icon + sprite: Structures/Decoration/cobweb.rsi + state: cobweb2 \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Dispensers/booze.yml b/Resources/Prototypes/Entities/Structures/Dispensers/booze.yml index 0bd5e681985..f6364f6323b 100644 --- a/Resources/Prototypes/Entities/Structures/Dispensers/booze.yml +++ b/Resources/Prototypes/Entities/Structures/Dispensers/booze.yml @@ -17,7 +17,7 @@ - type: Machine board: BoozeDispenserMachineCircuitboard - type: Wires - BoardName: "BoozeDispenser" + BoardName: wires-board-name-booze LayoutId: BoozeDispenser - type: GuideHelp guides: diff --git a/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml b/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml index 0e3f06feb53..ba02da325e0 100644 --- a/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml +++ b/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml @@ -26,7 +26,7 @@ - type: Machine board: ChemDispenserMachineCircuitboard - type: Wires - BoardName: "ChemDispenser" + BoardName: wires-board-name-chemdispenser LayoutId: ChemDispenser - type: UpgradePowerDraw powerDrawMultiplier: 0.75 diff --git a/Resources/Prototypes/Entities/Structures/Dispensers/soda.yml b/Resources/Prototypes/Entities/Structures/Dispensers/soda.yml index 9eede7b5a81..3cd8e4dbcb0 100644 --- a/Resources/Prototypes/Entities/Structures/Dispensers/soda.yml +++ b/Resources/Prototypes/Entities/Structures/Dispensers/soda.yml @@ -17,7 +17,7 @@ - type: Machine board: SodaDispenserMachineCircuitboard - type: Wires - BoardName: "SodaDispenser" + BoardName: wires-board-name-soda LayoutId: SodaDispenser - type: GuideHelp guides: diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml index ab31264fdf4..7dea7bfb53a 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml @@ -95,6 +95,22 @@ - type: AccessReader access: [["Atmospherics"]] +- type: entity + parent: AirlockExternal + id: AirlockExternalSyndicateLocked + suffix: External, Syndicate, Locked + components: + - type: AccessReader + access: [["SyndicateAgent"]] + +- type: entity + parent: AirlockExternal + id: AirlockExternalNukeopLocked + suffix: External, Nukeop, Locked + components: + - type: AccessReader + access: [["NuclearOperative"]] + - type: entity parent: AirlockFreezer id: AirlockFreezerLocked @@ -338,6 +354,22 @@ - type: AccessReader access: [["Cargo"]] +- type: entity + parent: AirlockExternalGlass + id: AirlockExternalGlassSyndicateLocked + suffix: External, Glass, Syndicate, Locked + components: + - type: AccessReader + access: [["SyndicateAgent"]] + +- type: entity + parent: AirlockExternalGlass + id: AirlockExternalGlassNukeopLocked + suffix: External, Glass, Nukeop, Locked + components: + - type: AccessReader + access: [["NuclearOperative"]] + - type: entity parent: AirlockExternalGlass id: AirlockExternalGlassEngineeringLocked @@ -546,6 +578,22 @@ - type: AccessReader access: [["External"]] +- type: entity + parent: AirlockSyndicateGlass + id: AirlockSyndicateGlassLocked + suffix: Syndicate, Locked + components: + - type: AccessReader + access: [["SyndicateAgent"]] + +- type: entity + parent: AirlockSyndicateGlass + id: AirlockSyndicateNukeopGlassLocked + suffix: Nukeop, Locked + components: + - type: AccessReader + access: [["NuclearOperative"]] + # Maintenance Hatches - type: entity parent: AirlockMaint @@ -731,6 +779,22 @@ - type: AccessReader access: [["Captain"]] +- type: entity + parent: AirlockSyndicate + id: AirlockSyndicateLocked + suffix: Syndicate, Locked + components: + - type: AccessReader + access: [["SyndicateAgent"]] + +- type: entity + parent: AirlockSyndicate + id: AirlockSyndicateNukeopLocked + suffix: Nukeop, Locked + components: + - type: AccessReader + access: [["NuclearOperative"]] + # Shuttle airlocks - type: entity parent: AirlockShuttle @@ -740,6 +804,22 @@ - type: AccessReader access: [["External"]] +- type: entity + parent: AirlockShuttle + id: AirlockExternalShuttleSyndicateLocked + suffix: External, Docking, Syndicate, Locked + components: + - type: AccessReader + access: [["SyndicateAgent"]] + +- type: entity + parent: AirlockShuttle + id: AirlockExternalShuttleNukeopLocked + suffix: External, Docking, Nukeop, Locked + components: + - type: AccessReader + access: [["NuclearOperative"]] + - 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 28f86524633..e729cbe6f92 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml @@ -92,6 +92,14 @@ - type: Sprite sprite: Structures/Doors/Airlocks/Standard/maint.rsi +- type: entity + parent: Airlock + id: AirlockSyndicate + suffix: Syndicate + components: + - type: Sprite + sprite: Structures/Doors/Airlocks/Standard/syndicate.rsi + # Glass - type: entity @@ -228,3 +236,13 @@ group: Glass - type: Construction node: glassAirlockMedSecurity + +- type: entity + parent: AirlockGlass + id: AirlockSyndicateGlass + suffix: Syndicate + components: + - type: Sprite + sprite: Structures/Doors/Airlocks/Glass/syndicate.rsi + - type: PaintableAirlock + group: Glass \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml index e10e96f34ec..f40ef4ea847 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml @@ -75,7 +75,7 @@ usesApcPower: true - type: WiresPanel - type: Wires - BoardName: "Airlock Control" + BoardName: wires-board-name-airlock LayoutId: Airlock - type: DoorSignalControl - type: DeviceNetwork diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml index 7b44c00f7a5..912e3cfa39e 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml @@ -68,7 +68,7 @@ usesApcPower: true - type: WiresPanel - type: Wires - BoardName: "HighSec Control" + BoardName: wires-board-name-highsec LayoutId: HighSec alwaysRandomize: true - type: UserInterface diff --git a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml index b26006344d1..e12daa537fc 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml @@ -84,7 +84,7 @@ - type: WiresVisuals - type: WiresPanel - type: Wires - BoardName: "Firelock Control" + BoardName: wires-board-name-firelock LayoutId: Firelock - type: UserInterface interfaces: diff --git a/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml b/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml index c2cd34bd4cc..176eaf76511 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml @@ -202,3 +202,40 @@ closeSound: path: /Audio/Items/bikehorn.ogg +- type: entity + id: WebDoor + name: web door + parent: BaseMaterialDoor + description: A door, leading to the lands of the spiders... or a spaced room. + components: + - type: Sprite + sprite: Structures/Doors/web_door.rsi + layers: + - state: closed + map: ["enum.DoorVisualLayers.Base"] + - type: Construction + graph: WebStructures + node: door + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 50 + behaviors: + - !type:DoActsBehavior + acts: ["Destruction"] + - !type:PlaySoundBehavior + sound: + path: /Audio/Effects/woodhit.ogg + - !type:SpawnEntitiesBehavior + spawn: + MaterialWebSilk: + min: 3 + max: 5 + - type: Damageable + damageModifierSet: Web + - type: Door + closeSound: + path: /Audio/Effects/rustle1.ogg + openSound: + path: /Audio/Effects/rustle2.ogg diff --git a/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml b/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml index 5aafd1544b1..2cc6ae0467a 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml @@ -8,7 +8,6 @@ components: - type: Sprite sprite: Structures/Doors/secret_door.rsi - noRot: true layers: - state: closed map: ["enum.DoorVisualLayers.Base"] diff --git a/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml b/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml index 8945af959dd..6a973c5015e 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml @@ -118,7 +118,7 @@ usesApcPower: true - type: WiresPanel - type: Wires - BoardName: "Windoor Control" + BoardName: wires-board-name-windoor LayoutId: Airlock - type: UserInterface interfaces: diff --git a/Resources/Prototypes/Entities/Structures/Doors/airlock_groups.yml b/Resources/Prototypes/Entities/Structures/Doors/airlock_groups.yml index 4b6b5cf46af..b22d11826ce 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/airlock_groups.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/airlock_groups.yml @@ -2,6 +2,7 @@ id: Standard iconPriority: 100 stylePaths: + atmospherics: Structures/Doors/Airlocks/Standard/atmospherics.rsi basic: Structures/Doors/Airlocks/Standard/basic.rsi cargo: Structures/Doors/Airlocks/Standard/cargo.rsi command: Structures/Doors/Airlocks/Standard/command.rsi @@ -17,6 +18,7 @@ id: Glass iconPriority: 90 stylePaths: + atmospherics: Structures/Doors/Airlocks/Glass/atmospherics.rsi basic: Structures/Doors/Airlocks/Glass/basic.rsi command: Structures/Doors/Airlocks/Glass/command.rsi science: Structures/Doors/Airlocks/Glass/science.rsi diff --git a/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml b/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml index 301b37205cf..5036ab83c84 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml @@ -487,9 +487,9 @@ - type: Damageable damageModifierSet: Web - type: Sprite - sprite: Structures/Furniture/Web/table.rsi + sprite: Structures/Furniture/Tables/web.rsi - type: Icon - sprite: Structures/Furniture/Web/table.rsi + sprite: Structures/Furniture/Tables/web.rsi - type: Destructible thresholds: - trigger: @@ -504,7 +504,7 @@ path: "/Audio/Weapons/slash.ogg" - type: Construction - graph: TableWeb + graph: WebStructures node: table - type: entity diff --git a/Resources/Prototypes/Entities/Structures/Furniture/beds.yml b/Resources/Prototypes/Entities/Structures/Furniture/beds.yml index 3c578192bbb..83e043334cb 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/beds.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/beds.yml @@ -132,7 +132,7 @@ - type: Damageable damageModifierSet: Web - type: Sprite - sprite: Structures/Furniture/Web/bed.rsi + sprite: Structures/Web/bed.rsi state: icon - type: Destructible thresholds: @@ -150,3 +150,6 @@ MaterialWebSilk: min: 1 max: 1 + - type: Construction + graph: WebStructures + node: bed diff --git a/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml b/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml index 4e84f1fbee3..aaff4e1e288 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml @@ -24,7 +24,7 @@ noRot: true - type: Strap position: Stand - buckleOffset: "0,0.15" + buckleOffset: "0,-0.05" - type: Pullable - type: Damageable damageContainer: Inorganic @@ -249,7 +249,7 @@ - type: entity name: web chair - id: WebChair + id: ChairWeb description: For true web developers. parent: SeatBase components: @@ -260,7 +260,7 @@ - type: Anchorable - type: Rotatable - type: Sprite - sprite: Structures/Furniture/Web/chair.rsi + sprite: Structures/Web/chair.rsi state: icon - type: MeleeSound soundGroups: @@ -285,6 +285,9 @@ MaterialWebSilk: min: 1 max: 1 + - type: Construction + graph: WebStructures + node: chair - type: entity parent: [SeatBase, BaseFoldable] @@ -321,3 +324,19 @@ components: - type: Foldable folded: true + +- type: entity + name: steel bench + id: SteelBench + parent: SeatBase + description: A long chair made for a metro. Really standard design. + components: + - type: Transform + anchored: true + - type: Physics + bodyType: Static + - type: Anchorable + - type: Rotatable + - type: Sprite + state: steel-bench + diff --git a/Resources/Prototypes/Entities/Structures/Furniture/sink.yml b/Resources/Prototypes/Entities/Structures/Furniture/sink.yml index 10f43a20508..9ae1a2bb3df 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/sink.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/sink.yml @@ -37,6 +37,8 @@ - type: ReagentTank - type: Drain autoDrain: false + - type: DumpableSolution + solution: drainBuffer - type: Damageable damageContainer: Inorganic damageModifierSet: Metallic diff --git a/Resources/Prototypes/Entities/Structures/Furniture/toilet.yml b/Resources/Prototypes/Entities/Structures/Furniture/toilet.yml index af0d2f1794f..353129c5a40 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/toilet.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/toilet.yml @@ -36,6 +36,8 @@ - type: Appearance - type: Drain autoDrain: false + - type: DumpableSolution + solution: drainBuffer - type: SolutionContainerVisuals maxFillLevels: 1 fillBaseName: fill- diff --git a/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml b/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml index d538c1df034..ac8d2c54171 100644 --- a/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml +++ b/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml @@ -314,6 +314,7 @@ maxCharge: 30000 startingCharge: 0 - type: EmergencyLight + - type: RotatingLight - type: Sprite sprite: Structures/Wallmounts/Lighting/emergency_light.rsi layers: diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml index e48268bdc5f..b3463f12449 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml @@ -83,10 +83,12 @@ - BirdToyInstrument - PlushieXeno - BeachBall + - PlushieMoth + - PlushieHampter - type: WiresPanel - type: Wires LayoutId: Arcade - BoardName: "Arcade" + BoardName: wires-board-name-arcade - type: ActivatableUI key: enum.SpaceVillainArcadeUiKey.Key - type: ActivatableUIRequiresPower @@ -107,7 +109,7 @@ - type: SpaceVillainArcade rewardMinAmount: 5 rewardMaxAmount: 8 - + - type: entity id: BlockGameArcade description: An arcade cabinet with a strangely familiar game. @@ -128,7 +130,7 @@ - type: WiresPanel - type: Wires LayoutId: Arcade - BoardName: "Arcade" + BoardName: wires-board-name-arcade - type: UserInterface interfaces: - key: enum.BlockGameUiKey.Key diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml index f9420bae01a..c111bc5f2cc 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml @@ -317,6 +317,9 @@ color: "#1f8c28" - type: Computer board: StationRecordsComputerCircuitboard + - type: GuideHelp + guides: + - DNA - type: entity parent: BaseComputer @@ -391,6 +394,9 @@ radius: 1.5 energy: 1.6 color: "#b53ca1" + - type: GuideHelp + guides: + - Science - type: entity parent: BaseComputer @@ -675,6 +681,9 @@ color: "#b89f25" - type: AccessReader access: [["Cargo"]] + - type: GuideHelp + guides: + - Cargo - type: entity id: ComputerCargoOrders @@ -716,6 +725,9 @@ range: 200 ports: - OrderSender + - type: GuideHelp + guides: + - Cargo - type: entity id: ComputerCargoBounty @@ -946,6 +958,9 @@ color: "#b89f25" - type: MarketModifier # In the case someone got a computer board from QM locker, they can use it to sell on a ship if they have the grids, just to make sure its useless. mod: 0 + - type: GuideHelp + guides: + - Cargo - type: entity parent: BaseComputer diff --git a/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml b/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml index e80a029d6ee..e7ae4d2394e 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml @@ -51,7 +51,7 @@ - type: WiresVisuals - type: WiresPanel - type: Wires - BoardName: "Cryo pod" + BoardName: wires-board-name-cryopod LayoutId: CryoPod - type: Damageable damageContainer: Inorganic diff --git a/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml b/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml index a68d0aa6050..a5632c66d77 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml @@ -38,7 +38,7 @@ - type: Appearance - type: WiresPanel - type: Wires - BoardName: "Vessel" + BoardName: wires-board-name-vessel LayoutId: Vessel - type: AmbientSound enabled: false @@ -175,7 +175,7 @@ - type: WiresPanel - type: WiresVisuals - type: Wires - BoardName: "Ape" + BoardName: wires-board-name-ape LayoutId: Ape - type: GenericVisualizer visuals: @@ -264,7 +264,7 @@ doAfterDelay: 5 - type: WiresPanel - type: Wires - BoardName: "AnomalyGenerator" + BoardName: wires-board-name-anomalygenerator LayoutId: AnomalyGenerator - type: Destructible thresholds: diff --git a/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml b/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml index 3244dd1541f..d1cc01ea40b 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml @@ -46,6 +46,10 @@ powerDrawMultiplier: 0.80 scaling: Exponential - type: ArtifactAnalyzer + - type: ItemPlacer + whitelist: + components: + - Artifact - type: DeviceNetwork deviceNetId: Wired receiveFrequencyId: BasicDevice @@ -109,6 +113,14 @@ powerDrawMultiplier: 0.80 scaling: Exponential - type: TraversalDistorter + - type: ItemPlacer + # don't limit the number of artifacts that can be biased + maxEntities: 0 + whitelist: + components: + - Artifact + - type: PlaceableSurface + placeCentered: true - type: Machine board: TraversalDistorterMachineCircuitboard - type: Appearance diff --git a/Resources/Prototypes/Entities/Structures/Machines/chem_master.yml b/Resources/Prototypes/Entities/Structures/Machines/chem_master.yml index d9520dea8d1..8c006572ed0 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/chem_master.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/chem_master.yml @@ -61,7 +61,7 @@ # Machine / Construction stuff - type: WiresPanel - type: Wires - BoardName: "chem_master" + BoardName: wires-board-name-chemmaster LayoutId: chem_master - type: Machine board: ChemMasterMachineCircuitboard @@ -86,6 +86,9 @@ - type: SolutionContainerManager solutions: buffer: {} + - type: DumpableSolution + solution: buffer + unlimited: true - type: GuideHelp guides: - Chemicals diff --git a/Resources/Prototypes/Entities/Structures/Machines/cloning_machine.yml b/Resources/Prototypes/Entities/Structures/Machines/cloning_machine.yml index e8f5a6a740b..6b3992b0d89 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/cloning_machine.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/cloning_machine.yml @@ -61,7 +61,7 @@ - Biomass - type: WiresPanel - type: Wires - BoardName: "CloningPod" + BoardName: wires-board-name-cloningpod LayoutId: CloningPod - type: ApcPowerReceiver powerLoad: 200 #Receives most of its power from the console diff --git a/Resources/Prototypes/Entities/Structures/Machines/fatextractor.yml b/Resources/Prototypes/Entities/Structures/Machines/fatextractor.yml index d9a1eb29430..01b6f82e85b 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/fatextractor.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/fatextractor.yml @@ -96,7 +96,7 @@ board: FatExtractorMachineCircuitboard - type: WiresPanel - type: Wires - BoardName: FatExtractor + BoardName: wires-board-name-fatextractor LayoutId: FatExtractor - type: Appearance - type: Speech diff --git a/Resources/Prototypes/Entities/Structures/Machines/frame.yml b/Resources/Prototypes/Entities/Structures/Machines/frame.yml index 67ad742639b..29806e08226 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/frame.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/frame.yml @@ -8,7 +8,6 @@ components: - type: Transform anchored: true - noRot: true - type: Physics bodyType: Static - type: Fixtures @@ -53,6 +52,7 @@ - type: Sprite sprite: Structures/Machines/parts.rsi state: box_0 + snapCardinals: true - type: entity id: MachineFrame @@ -63,7 +63,6 @@ components: - type: Transform anchored: true - noRot: true - type: Physics bodyType: Static - type: Fixtures @@ -110,6 +109,7 @@ - type: Sprite sprite: Structures/Machines/parts.rsi state: box_1 + snapCardinals: true - type: Appearance - type: ItemMapper mapLayers: diff --git a/Resources/Prototypes/Entities/Structures/Machines/gravity_generator.yml b/Resources/Prototypes/Entities/Structures/Machines/gravity_generator.yml index 2658f68dfed..7e2709ae95d 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/gravity_generator.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/gravity_generator.yml @@ -118,11 +118,11 @@ spawn: MachineFrameDestroyed: min: 1 - max: 1 + max: 1 - type: WiresPanel - type: Wires - BoardName: "MiniGravityGenerator" - LayoutId: MiniGravityGenerator + BoardName: wires-board-name-minigravitygenerator + LayoutId: MiniGravityGenerator - type: Machine board: MiniGravityGeneratorCircuitboard - type: ApcPowerReceiver diff --git a/Resources/Prototypes/Entities/Structures/Machines/hotplate.yml b/Resources/Prototypes/Entities/Structures/Machines/hotplate.yml index 0c5fa3989a4..c5ed1de80ce 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/hotplate.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/hotplate.yml @@ -38,6 +38,7 @@ components: - FitsInDispenser - type: SolutionHeater + - type: ItemPlacer whitelist: components: - FitsInDispenser diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 217fb8cfc13..fa72e2f66fe 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -31,7 +31,7 @@ acts: ["Destruction"] - type: WiresPanel - type: Wires - BoardName: "Autolathe" + BoardName: wires-board-name-autolathe LayoutId: Autolathe - type: ActivatableUI key: enum.LatheUiKey.Key @@ -97,6 +97,8 @@ - TRayScanner - GasAnalyzer - UtilityBelt + - Fulton + - FultonBeacon - Pickaxe - ModularReceiver - AppraisalTool @@ -106,6 +108,10 @@ - LightTube - LightBulb - Bucket + - FoodPlate + - FoodPlateSmall + - FoodPlatePlastic + - FoodPlateSmallPlastic - SprayBottle - PowerCellSmall - MicroManipulatorStockPart @@ -181,7 +187,7 @@ - type: Machine board: ProtolatheMachineCircuitboard - type: Wires - BoardName: "Protolathe" + BoardName: wires-board-name-protolathe LayoutId: Protolathe - type: MaterialStorage whitelist: @@ -239,9 +245,6 @@ - PowerCellMedium - PowerCellHigh - WeaponPistolCHIMP - - CartridgeAnomalousParticleDelta - - CartridgeAnomalousParticleEpsilon - - CartridgeAnomalousParticleZeta - SynthesizerInstrument - RPED - ClothingShoesBootsMag @@ -280,6 +283,7 @@ components: - type: Sprite sprite: Structures/Machines/circuit_imprinter.rsi + snapCardinals: true layers: - state: icon map: ["enum.LatheVisualLayers.IsRunning"] @@ -341,8 +345,9 @@ - HonkerTargetingElectronics - HamtrCentralElectronics - HamtrPeripheralsElectronics - - GeneratorPlasmaMachineCircuitboard - - GeneratorUraniumMachineCircuitboard + - PortableGeneratorPacmanMachineCircuitboard + - PortableGeneratorSuperPacmanMachineCircuitboard + - PortableGeneratorJrPacmanMachineCircuitboard - WallmountGeneratorElectronics - WallmountGeneratorAPUElectronics - WallmountSubstationElectronics @@ -399,6 +404,7 @@ - BorgModuleRadiationDetection - BorgModuleTool - BorgModuleAppraisal + - BorgModuleConstruction - CyborgEndoskeleton - LeftArmBorg - RightArmBorg @@ -447,6 +453,7 @@ - BorgModuleArtifact - BorgModuleAnomaly - BorgModuleGardening + - BorgModuleHarvesting - BorgModuleMusique - BorgModuleLiteracy - BorgModuleClowning @@ -514,13 +521,14 @@ - ForensicPad - ClothingEyesGlassesSecurity - RiotShield - - CartridgePistol - - CartridgeMagnum - ShellShotgun - ShellShotgunFlare - ShellTranquilizer - - CartridgeLightRifle - - CartridgeRifle + - MagazinePistol + - MagazinePistolSubMachineGun + - MagazinePistolSubMachineGunTopMounted + - MagazineRifle + - MagazineLightRifle - MagazineBoxPistol - MagazineBoxMagnum - MagazineBoxRifle @@ -701,6 +709,8 @@ - ClothingUniformJumpsuitSalvageSpecialist - ClothingUniformJumpsuitChiefEngineer - ClothingUniformJumpskirtChiefEngineer + - ClothingUniformJumpsuitChiefEngineerTurtle + - ClothingUniformJumpskirtChiefEngineerTurtle - ClothingUniformJumpsuitChaplain - ClothingUniformJumpskirtChaplain - ClothingUniformJumpsuitChef @@ -827,10 +837,10 @@ - SheetPlasma30 - SheetPGlass30 - SheetRPGlass30 - - SheetUranium1 - - IngotGold1 - - IngotSilver1 - - MaterialBananium1 + - SheetUranium30 + - IngotGold30 + - IngotSilver30 + - MaterialBananium10 - type: entity parent: BaseLathe diff --git a/Resources/Prototypes/Entities/Structures/Machines/material_reclaimer.yml b/Resources/Prototypes/Entities/Structures/Machines/material_reclaimer.yml index d6efa81f928..bb8f6d200b7 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/material_reclaimer.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/material_reclaimer.yml @@ -59,7 +59,7 @@ board: MaterialReclaimerMachineCircuitboard - type: WiresPanel - type: Wires - BoardName: "reclaimer" + BoardName: wires-board-name-reclaimer LayoutId: Reclaimer - type: MaterialReclaimer whitelist: diff --git a/Resources/Prototypes/Entities/Structures/Machines/medical_scanner.yml b/Resources/Prototypes/Entities/Structures/Machines/medical_scanner.yml index a4f09881cdc..7a86fdf11ae 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/medical_scanner.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/medical_scanner.yml @@ -78,7 +78,7 @@ board: MedicalScannerMachineCircuitboard - type: WiresPanel - type: Wires - BoardName: "MedicalScanner" + BoardName: wires-board-name-medicalscanner LayoutId: MedicalScanner - type: Appearance - type: Climbable diff --git a/Resources/Prototypes/Entities/Structures/Machines/microwave.yml b/Resources/Prototypes/Entities/Structures/Machines/microwave.yml index 38e123870d5..48ac7c33935 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/microwave.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/microwave.yml @@ -8,6 +8,13 @@ - type: Appearance - type: GenericVisualizer visuals: + enum.MicrowaveVisualState.Bloody: + bloody: + True: { visible: true } + False: { visible: false } + bloodyunshaded: + True: { visible: true } + False: { visible: false } enum.PowerDeviceVisuals.VisualState: enum.MicrowaveVisualizerLayers.Base: Idle: { state: "mw" } @@ -17,6 +24,9 @@ Idle: { state: "mw_unlit" } Broken: { state: "mw_unlit" } Cooking: { state: "mw_running_unlit" } + bloodyunshaded: + Idle: { visible: false } + Broken: { visible: false } enum.PowerDeviceVisuals.Powered: enum.MicrowaveVisualizerLayers.BaseUnlit: True: { visible: true } @@ -49,6 +59,13 @@ - state: mw_unlit shader: unshaded map: ["enum.MicrowaveVisualizerLayers.BaseUnlit"] + - state: mwbloody0 + map: ["bloody"] + visible: false + - state: mwbloody1 + shader: unshaded + map: ["bloodyunshaded"] + visible: false - type: Destructible thresholds: - trigger: diff --git a/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml b/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml index 81ae3850aca..d19e2379972 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml @@ -27,7 +27,7 @@ fix1: shape: !type:PhysShapeAabb - bounds: "-0.08,-0.35,0.15,0.25" + bounds: "-0.17,0,0.20,0.4" mask: - TabletopMachineMask layer: @@ -36,6 +36,7 @@ sprite: Structures/Machines/juicer.rsi drawdepth: SmallObjects snapCardinals: true + offset: "0.0,0.4" layers: - map: [ "grinder" ] state: "juicer0" diff --git a/Resources/Prototypes/Entities/Structures/Machines/research.yml b/Resources/Prototypes/Entities/Structures/Machines/research.yml index 1af7f891094..d805d89cc51 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/research.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/research.yml @@ -60,6 +60,9 @@ containers: machine_board: !type:Container machine_parts: !type:Container + - type: GuideHelp + guides: + - Science - type: entity id: BaseResearchAndDevelopmentPointSource @@ -118,3 +121,6 @@ SheetSteel1: min: 1 max: 1 + - type: GuideHelp + guides: + - Science diff --git a/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml b/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml index e8726f74c29..1c03d011485 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml @@ -49,7 +49,7 @@ board: TelecomServerCircuitboard - type: WiresPanel - type: Wires - BoardName: "TelecomServer" + BoardName: wires-board-name-telecomserver LayoutId: TelecomServer - type: Transform anchored: true diff --git a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml index 238129c454b..45635d7b4bb 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml @@ -64,7 +64,7 @@ type: WiresBoundUserInterface - type: WiresPanel - type: Wires - BoardName: "Vending Machine" + BoardName: wires-board-name-vendingmachine LayoutId: Vending - type: Anchorable - type: TypingIndicator @@ -117,6 +117,17 @@ layers: - state: "off" map: ["enum.VendingMachineVisualLayers.Base"] + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.3,-0.16,0.3,0.40" + mask: + - MachineMask + layer: + - MachineLayer + density: 190 - type: Advertise pack: CondimentVendAds - type: Speech @@ -776,6 +787,9 @@ radius: 1.5 energy: 1.6 color: "#9dc5c9" + - type: GuideHelp + guides: + - Medical Doctor - type: entity parent: VendingMachine @@ -842,6 +856,9 @@ radius: 1 energy: 1.2 color: "#78645c" + - type: GuideHelp + guides: + - Security - type: entity parent: VendingMachine @@ -1194,6 +1211,9 @@ radius: 1.5 energy: 1.6 color: "#B0ADA9" + - type: GuideHelp + guides: + - Robotics - type: entity parent: VendingMachine @@ -1315,6 +1335,9 @@ color: "#9dc5c9" - type: MarketModifier mod: 10 + - type: GuideHelp + guides: + - Salvage - type: entity parent: VendingMachine @@ -1389,6 +1412,9 @@ map: ["enum.WiresVisualLayers.MaintenancePanel"] - type: MarketModifier mod: 5 + - type: GuideHelp + guides: + - Medical # job clothing @@ -1755,8 +1781,8 @@ shader: unshaded - state: panel map: ["enum.WiresVisualLayers.MaintenancePanel"] - # - type: AccessReader - # access: [["NuclearOperative"]] +# - type: AccessReader +# access: [["NuclearOperative"], ["SyndicateAgent"]] - type: entity parent: VendingMachine @@ -1945,4 +1971,6 @@ map: ["enum.VendingMachineVisualLayers.BaseUnshaded"] - state: panel map: ["enum.WiresVisualLayers.MaintenancePanel"] - + - type: GuideHelp + guides: + - Chemicals diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml index f60a03cfb01..f5c1f2015f9 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml @@ -427,5 +427,3 @@ - type: Construction graph: GasBinary node: radiator - - type: StaticPrice - price: 50 diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml index a43d71cb988..132da2f1a84 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml @@ -49,7 +49,7 @@ sound: path: /Audio/Ambience/Objects/gas_hiss.ogg - type: StaticPrice - price: 22 + price: 11 #Note: The PipeDirection of the PipeNode should be the south-facing version, because the entity starts at an angle of 0 (south) diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml index e50e256e9c6..c4282a2d4df 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml @@ -83,6 +83,7 @@ range: 5 sound: path: /Audio/Ambience/Objects/gas_vent.ogg + - type: Weldable - type: entity parent: GasUnaryBase @@ -173,6 +174,7 @@ range: 5 sound: path: /Audio/Ambience/Objects/gas_vent.ogg + - type: Weldable - type: entity parent: GasUnaryBase @@ -239,7 +241,7 @@ key: enum.ThermomachineUiKey.Key - type: WiresPanel - type: Wires - BoardName: "Thermomachine" + BoardName: wires-board-name-thermomachine LayoutId: Thermomachine - type: WiresVisuals - type: NodeContainer @@ -284,7 +286,7 @@ True: { state: freezerOn } False: { state: freezerOff } - type: GasThermoMachine - mode: Freezer + coefficientOfPerformance: -64 - type: ApcPowerReceiver powerDisabled: true #starts off - type: Machine @@ -327,7 +329,7 @@ True: { state: heaterOn } False: { state: heaterOff } - type: GasThermoMachine - mode: Heater + coefficientOfPerformance: 32 - type: ApcPowerReceiver powerDisabled: true #starts off - type: Machine diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/PA/control_box.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/PA/control_box.yml index 5eb45c59971..5da747571a1 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/PA/control_box.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/PA/control_box.yml @@ -23,7 +23,7 @@ type: WiresBoundUserInterface - type: WiresPanel - type: Wires - BoardName: "Mk2 Particle Accelerator" + BoardName: wires-board-name-pa LayoutId: ParticleAccelerator # Unfinished diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/PA/power_box.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/PA/power_box.yml index cb2f51475af..c9a25d62ffc 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/PA/power_box.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/PA/power_box.yml @@ -8,13 +8,13 @@ sprite: Structures/Power/Generation/PA/power_box.rsi - type: ParticleAcceleratorPowerBox - type: PowerConsumer - voltage: High + voltage: Medium - type: NodeContainer examinable: true nodes: input: !type:CableDeviceNode - nodeGroupID: HVPower + nodeGroupID: MVPower - type: Construction graph: ParticleAcceleratorPowerBox diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/collector.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/collector.yml index 9fe95c7c27d..ecdc3b3fbcb 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/collector.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/collector.yml @@ -1,7 +1,8 @@ - type: entity id: RadiationCollector name: radiation collector - description: A machine that collects radiation and turns it into power. + suffix: Empty tank + description: A machine that collects radiation and turns it into power. Requires plasma gas to function. placement: mode: SnapgridCenter components: @@ -38,6 +39,12 @@ !type:CableDeviceNode nodeGroupID: HVPower - type: RadiationCollector + chargeModifier: 7500 + radiationReactiveGases: + - reactantPrototype: Plasma + powerGenerationEfficiency: 1 + reactantBreakdownRate: 0.0002 + byproductPrototype: Tritium # Note that this doesn't matter too much (see next comment) # However it does act as a cap on power receivable via the collector. - type: Battery @@ -55,3 +62,38 @@ supplyRampTolerance: 1000000000 - type: GuideHelp guides: [ Singularity, Power ] + - type: ContainerContainer + containers: + GasTank: !type:ContainerSlot {} + - type: ItemSlots + slots: + GasTank: + startingItem: PlasmaTank + whitelist: + components: + - GasTank + +- type: entity + id: RadiationCollectorNoTank + suffix: No tank + parent: RadiationCollector + components: + - type: ItemSlots + slots: + GasTank: + whitelist: + components: + - GasTank + +- type: entity + id: RadiationCollectorFullTank + suffix: Filled tank + parent: RadiationCollector + components: + - type: ItemSlots + slots: + GasTank: + startingItem: PlasmaTankFilled + whitelist: + components: + - GasTank \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/containment.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/containment.yml index a72eccc2c76..096aeb2a8b1 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/containment.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/containment.yml @@ -98,6 +98,7 @@ state: field - type: ContainmentField throwForce: 50 + - type: SyncSprite - type: GuideHelp guides: [ Singularity, Power ] diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/singularity.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/singularity.yml index ad38290c378..25d219ab945 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/singularity.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/singularity.yml @@ -11,12 +11,16 @@ path: /Audio/Effects/singularity.ogg - type: Physics bodyType: Dynamic + bodyStatus: InAir + - type: CanMoveInAir - type: EventHorizon # To make the singularity consume things. radius: 0.5 canBreachContainment: false colliderFixtureId: EventHorizonCollider consumerFixtureId: EventHorizonConsumer - type: GravityWell # To make the singularity attract things. + baseRadialAcceleration: 10 + maxRange: 4 - type: Fixtures fixtures: EventHorizonCollider: @@ -43,11 +47,16 @@ energy: 180 level: 1 radsPerLevel: 2 + energyLoss: 1 - type: RandomWalk # To make the singularity move around. + maxSpeed: 2.5 + minSpeed: 1.875 - type: SingularityDistortion - intensity: 20 + falloffPower: 2.529822 + intensity: 3645 - type: RadiationSource slope: 0.2 # its emit really far away + intensity: 2 - type: PointLight enabled: true radius: 10 diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml index 79774618948..507597fbff1 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml @@ -253,6 +253,12 @@ node: generator - type: StaticPrice price: 14 + - type: ContainerFill + containers: + board: [ WallmountGeneratorElectronics ] + - type: ContainerContainer + containers: + board: !type:Container - type: entity parent: BaseGeneratorWallmount @@ -268,6 +274,12 @@ node: APU - type: StaticPrice price: 38 + - type: ContainerFill + containers: + board: [ WallmountGeneratorAPUElectronics ] + - type: ContainerContainer + containers: + board: !type:Container # RTG - no fuel requirement diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/portable_generator.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/portable_generator.yml new file mode 100644 index 00000000000..0fe35f3464e --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/portable_generator.yml @@ -0,0 +1,328 @@ +# +# You can use this Desmos sheet to calculate fuel burn rate values: +# https://www.desmos.com/calculator/qcektq5dqs +# + +- type: entity + abstract: true + id: PortableGeneratorBase + parent: [ BaseMachine, ConstructibleMachine ] + components: + # Basic properties + - type: Transform + anchored: False + - type: Physics + bodyType: Dynamic + - type: StaticPrice + price: 500 + - type: AmbientSound + range: 5 + volume: -5 + sound: + path: /Audio/Ambience/Objects/engine_hum.ogg + enabled: false + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.40,-0.40,0.40,0.40" + # It has wheels + density: 45 + mask: + - MachineMask + layer: + - MachineLayer + + # Visuals + - type: Appearance + - type: Sprite + sprite: Structures/Power/Generation/portable_generator.rsi + noRot: true + + # Construction, interaction + - type: WiresPanel + - type: Wires + BoardName: wires-board-name-generator + LayoutId: Generator + - type: UserInterface + interfaces: + - key: enum.GeneratorComponentUiKey.Key + type: PortableGeneratorBoundUserInterface + - type: ActivatableUI + key: enum.GeneratorComponentUiKey.Key + - type: Electrified + onHandInteract: false + onInteractUsing: false + onBump: false + requirePower: true + highVoltageNode: output + + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 200 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: + - !type:PlaySoundBehavior + sound: + path: /Audio/Effects/metalbreak.ogg + - !type:ChangeConstructionNodeBehavior + node: machineFrame + - !type:DoActsBehavior + acts: ["Destruction"] + - type: GuideHelp + guides: [ PortableGenerator, Power ] + + # Core functionality + - type: PortableGenerator + startSoundEmpty: { collection: GeneratorTugEmpty } + startSound: { collection: GeneratorTug } + - type: FuelGenerator + - type: PowerSupplier + supplyRate: 3000 + supplyRampRate: 500 + supplyRampTolerance: 500 + enabled: false + +- type: entity + abstract: true + parent: PortableGeneratorBase + id: PortableGeneratorSwitchableBase + components: + - type: PowerSwitchableGenerator + switchSound: + path: /Audio/Machines/button.ogg + - type: NodeContainer + examinable: true + nodes: + output_hv: + !type:CableDeviceNode + nodeGroupID: HVPower + output_mv: + !type:CableDeviceNode + nodeGroupID: MVPower + enabled: false + +- type: entity + name: P.A.C.M.A.N.-type portable generator + description: |- + A flexible backup generator for powering a variety of equipment. + Runs off solid plasma sheets and is rated for up to 30 kW. + parent: PortableGeneratorSwitchableBase + id: PortableGeneratorPacman + suffix: Plasma, 30 kW + components: + - type: Sprite + layers: + - state: portgen0 + map: [ "enum.GeneratorVisualLayers.Body" ] + - state: portgen_on_unlit + map: [ "enum.GeneratorVisualLayers.Unlit" ] + shader: unshaded + visible: false + - type: GenericVisualizer + visuals: + enum.GeneratorVisuals.Running: + enum.GeneratorVisualLayers.Body: + True: { state: portgen0on } + False: { state: portgen0 } + enum.GeneratorVisualLayers.Unlit: + True: { visible: true } + False: { visible: false } + + - type: Machine + board: PortableGeneratorPacmanMachineCircuitboard + - type: FuelGenerator + minTargetPower: 5000 + maxTargetPower: 30000 + targetPower: 30000 + optimalPower: 30000 + # 15 minutes at max output + optimalBurnRate: 0.0333333 + # a decent curve that goes up to about an hour at 5 kW. + fuelEfficiencyConstant: 0.75 + - type: SolidFuelGeneratorAdapter + fuelMaterial: Plasma + multiplier: 0.01 + - type: MaterialStorage + storageLimit: 3000 + materialWhiteList: [Plasma] + - type: PortableGenerator + startChance: 0.8 + - type: UpgradePowerSupplier + powerSupplyMultiplier: 1.25 + scaling: Exponential + - type: GeneratorExhaustGas + gasType: CarbonDioxide + # 2 moles of gas for every sheet of plasma. + moleRatio: 2 + +- type: entity + name: S.U.P.E.R.P.A.C.M.A.N.-type portable generator + description: |- + An advanced generator for powering departments. + Runs off uranium sheets and is rated for up to 50 kW. + parent: PortableGeneratorSwitchableBase + id: PortableGeneratorSuperPacman + suffix: Uranium, 50 kW + components: + - type: Sprite + layers: + - state: portgen1 + map: [ "enum.GeneratorVisualLayers.Body" ] + - state: portgen_on_unlit + map: [ "enum.GeneratorVisualLayers.Unlit" ] + shader: unshaded + visible: false + - type: GenericVisualizer + visuals: + enum.GeneratorVisuals.Running: + enum.GeneratorVisualLayers.Body: + True: { state: portgen1on } + False: { state: portgen1 } + enum.GeneratorVisualLayers.Unlit: + True: { visible: true } + False: { visible: false } + + - type: Machine + board: PortableGeneratorSuperPacmanMachineCircuitboard + - type: FuelGenerator + minTargetPower: 10000 + maxTargetPower: 50000 + targetPower: 50000 + optimalPower: 50000 + # 30 minutes at full power + optimalBurnRate: 0.016666666 + # Barely save any fuel from reducing power output + fuelEfficiencyConstant: 0.1 + - type: SolidFuelGeneratorAdapter + fuelMaterial: Uranium + multiplier: 0.01 + - type: MaterialStorage + storageLimit: 3000 + materialWhiteList: [Uranium] + - type: PortableGenerator + - type: UpgradePowerSupplier + powerSupplyMultiplier: 1.25 + scaling: Exponential + +- type: entity + name: J.R.P.A.C.M.A.N.-type portable generator + description: |- + A small generator capable of powering individual rooms, in case of emergencies. + Runs off welding fuel and is rated for up to 5 kW. + Rated ages 3 and up. + parent: PortableGeneratorBase + id: PortableGeneratorJrPacman + suffix: Welding Fuel, 5 kW + components: + - type: AmbientSound + range: 4 + volume: -8 + + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.30,-0.30,0.30,0.30" + # It has wheels + density: 30 + mask: + - MachineMask + layer: + - MachineLayer + + - type: Sprite + layers: + - state: portgen3 + map: [ "enum.GeneratorVisualLayers.Body" ] + - state: portgen3on_unlit + map: [ "enum.GeneratorVisualLayers.Unlit" ] + shader: unshaded + visible: false + - type: GenericVisualizer + visuals: + enum.GeneratorVisuals.Running: + enum.GeneratorVisualLayers.Body: + True: { state: portgen3on } + False: { state: portgen3 } + enum.GeneratorVisualLayers.Unlit: + True: { visible: true } + False: { visible: false } + + - type: Machine + board: PortableGeneratorJrPacmanMachineCircuitboard + - type: FuelGenerator + targetPower: 2000 + minTargetPower: 1000 + optimalPower: 5000 + maxTargetPower: 5000 + # 7.5 minutes at full tank. + optimalBurnRate: 0.11111111 + # Shallow curve that allows you to just barely eek out 12 minutes at lowest. + fuelEfficiencyConstant: 0.3 + - type: ChemicalFuelGeneratorAdapter + solution: tank + reagent: WeldingFuel + - type: SolutionContainerManager + solutions: + tank: + maxVol: 50 + - type: RefillableSolution + solution: tank + - type: PortableGenerator + # Unreliable bugger + startChance: 0.5 + - type: NodeContainer + examinable: true + nodes: + output: + !type:CableDeviceNode + nodeGroupID: Apc + - type: PowerSupplier + # No ramping needed on this bugger. + voltage: Apc + supplyRampTolerance: 2000 + - type: GeneratorExhaustGas + gasType: CarbonDioxide + # Full tank is 25 moles of gas + moleRatio: 0.5 + - type: Explosive + explosionType: Default + tileBreakScale: 0 + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 200 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: + - !type:SpillBehavior + solution: tank + - !type:PlaySoundBehavior + sound: + path: /Audio/Effects/metalbreak.ogg + - !type:ChangeConstructionNodeBehavior + node: machineFrame + - !type:DoActsBehavior + acts: ["Destruction"] + - trigger: + !type:DamageTypeTrigger + damageType: Piercing + damage: 75 + behaviors: + - !type:SolutionExplosionBehavior + solution: tank diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml index 3c58c9f148b..090a015d973 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml @@ -57,6 +57,7 @@ # It fires processing on behalf of its connected circulators. - type: AtmosDevice - type: TegGenerator + powerFactor: 0.025 - type: DeviceNetwork deviceNetId: AtmosDevices @@ -91,6 +92,8 @@ enabled: false sound: path: /Audio/Ambience/Objects/vending_machine_hum.ogg + - type: GuideHelp + guides: [ TEG, Power ] - type: entity id: TegCirculator @@ -146,6 +149,8 @@ - type: Rotatable - type: Anchorable - type: Pullable + - type: GuideHelp + guides: [ TEG, Power ] # functionality - type: NodeContainer diff --git a/Resources/Prototypes/Entities/Structures/Power/apc.yml b/Resources/Prototypes/Entities/Structures/Power/apc.yml index faeb73b2478..6db60d0edaf 100644 --- a/Resources/Prototypes/Entities/Structures/Power/apc.yml +++ b/Resources/Prototypes/Entities/Structures/Power/apc.yml @@ -91,7 +91,7 @@ - type: WallMount - type: WiresPanel - type: Wires - BoardName: "APC" + BoardName: wires-board-name-apc LayoutId: APC - type: WiresVisuals - type: Damageable diff --git a/Resources/Prototypes/Entities/Structures/Power/chargers.yml b/Resources/Prototypes/Entities/Structures/Power/chargers.yml index 8955aea2408..8967f60e203 100644 --- a/Resources/Prototypes/Entities/Structures/Power/chargers.yml +++ b/Resources/Prototypes/Entities/Structures/Power/chargers.yml @@ -74,6 +74,8 @@ charger_slot: !type:ContainerSlot machine_board: !type:Container machine_parts: !type:Container + - type: StaticPrice + price: 15 - type: entity name: recharger @@ -95,6 +97,8 @@ - HitscanBatteryAmmoProvider - ProjectileBatteryAmmoProvider - Stunbaton + - type: StaticPrice + price: 15 - type: entity name: wall recharger @@ -272,3 +276,5 @@ entity_storage: !type:Container machine_board: !type:Container machine_parts: !type:Container + - type: StaticPrice + price: 15 diff --git a/Resources/Prototypes/Entities/Structures/Power/debug_power.yml b/Resources/Prototypes/Entities/Structures/Power/debug_power.yml index edd72e92fce..a102516ce6e 100644 --- a/Resources/Prototypes/Entities/Structures/Power/debug_power.yml +++ b/Resources/Prototypes/Entities/Structures/Power/debug_power.yml @@ -3,6 +3,10 @@ parent: BaseGenerator suffix: DEBUG components: + - type: PowerSupplier + supplyRate: 300000 + supplyRampRate: 50000 + supplyRampTolerance: 500 - type: Tag tags: - Debug diff --git a/Resources/Prototypes/Entities/Structures/Power/smes.yml b/Resources/Prototypes/Entities/Structures/Power/smes.yml index 7ecc330a38d..08ddbe4b2a6 100644 --- a/Resources/Prototypes/Entities/Structures/Power/smes.yml +++ b/Resources/Prototypes/Entities/Structures/Power/smes.yml @@ -63,7 +63,7 @@ castShadows: false - type: WiresPanel - type: Wires - BoardName: "SMES" + BoardName: wires-board-name-smes LayoutId: SMES - type: Machine board: SMESMachineCircuitboard diff --git a/Resources/Prototypes/Entities/Structures/Power/substation.yml b/Resources/Prototypes/Entities/Structures/Power/substation.yml index 65a3540265d..d160ea8365f 100644 --- a/Resources/Prototypes/Entities/Structures/Power/substation.yml +++ b/Resources/Prototypes/Entities/Structures/Power/substation.yml @@ -87,7 +87,7 @@ totalIntensity: 200 - type: WiresPanel - type: Wires - BoardName: "Substation" + BoardName: wires-board-name-substation LayoutId: Substation - type: Machine board: SubstationMachineCircuitboard @@ -130,6 +130,12 @@ - type: Clickable - type: AccessReader access: [["Engineering"]] + - type: ContainerFill + containers: + board: [ WallmountSubstationElectronics ] + - type: ContainerContainer + containers: + board: !type:Container - type: InteractionOutline - type: Physics bodyType: Static diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/big_boxes.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/big_boxes.yml index 3ce35c7dc28..bf77ebfaea2 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/big_boxes.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/big_boxes.yml @@ -50,7 +50,6 @@ - type: Tag tags: - DoorBumpOpener - - type: InteractionOutline - type: Construction graph: BaseBigBox node: basebigbox @@ -66,6 +65,7 @@ - type: Damageable damageModifierSet: FlimsyMetallic #Syndicate boxes should have a bit of protection - type: Stealth + hadOutline: true - type: StealthOnMove passiveVisibilityRate: -0.37 movementVisibilityRate: 0.20 @@ -77,6 +77,7 @@ id: BigBox parent: BaseBigBox components: + - type: InteractionOutline - type: Destructible thresholds: - trigger: diff --git a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml index a576c1c9da2..0221b2b61ac 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml @@ -122,6 +122,47 @@ - type: Sprite sprite: Structures/Storage/Crates/surgery.rsi +- type: entity + parent: CrateGeneric + id: CrateWeb + name: web crate + components: + - type: Icon + sprite: Structures/Storage/Crates/web.rsi + - type: Sprite + sprite: Structures/Storage/Crates/web.rsi + layers: + - state: base + map: ["enum.StorageVisualLayers.Base"] + - state: closed + map: ["enum.StorageVisualLayers.Door"] + - type: Construction + graph: WebStructures + node: crate + - type: Damageable + damageModifierSet: Web + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 50 + behaviors: + - !type:DoActsBehavior + acts: ["Destruction"] + - !type:PlaySoundBehavior + sound: + path: /Audio/Effects/woodhit.ogg + - !type:SpawnEntitiesBehavior + spawn: + MaterialWebSilk: + min: 3 + max: 5 + - type: EntityStorage + closeSound: + path: /Audio/Effects/rustle1.ogg + openSound: + path: /Audio/Effects/rustle2.ogg + # Secure Crates - type: entity @@ -204,7 +245,7 @@ - type: Sprite sprite: Structures/Storage/Crates/plasma.rsi - type: AccessReader - access: [["Engineering"]] + access: [["Engineering"], ["Research"], ["Chemistry"]] - type: entity parent: CrateBaseSecure @@ -518,4 +559,3 @@ sprite: Structures/Storage/Crates/trashcart_jani.rsi - type: AccessReader access: [["Janitor"]] - diff --git a/Resources/Prototypes/Entities/Structures/Storage/Tanks/tanks.yml b/Resources/Prototypes/Entities/Structures/Storage/Tanks/tanks.yml index 86cdfa62e56..f4269b1fab3 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Tanks/tanks.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Tanks/tanks.yml @@ -156,4 +156,4 @@ - type: ExaminableSolution solution: tank - type: ReagentTank - transferAmount: 100 + transferAmount: 100 \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml index cd6a438ce6c..6d23dab829c 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml @@ -2,6 +2,10 @@ id: AirAlarm name: air alarm description: An air alarm. Alarms... air? + placement: + mode: SnapgridCenter + snap: + - Wallmount components: - type: WallMount - type: ApcPowerReceiver @@ -16,14 +20,22 @@ prefix: device-address-prefix-air-alarm sendBroadcastAttemptEvent: true - type: WiredNetworkConnection + # for output status ports + - type: WirelessNetworkConnection + range: 200 - type: DeviceList - type: DeviceNetworkRequiresPower + - type: DeviceLinkSource + ports: + - AirDanger + - AirWarning + - AirNormal - type: AtmosAlarmable syncWith: - - AirAlarm - - AirSensor - - GasVent - - GasScrubber + - AirAlarm + - AirSensor + - GasVent + - GasScrubber - type: AtmosAlarmableVisuals layerMap: "airAlarmBase" alarmStates: @@ -47,10 +59,16 @@ type: WiresBoundUserInterface - type: WiresPanel - type: Wires - BoardName: "Air Alarm" + BoardName: wires-board-name-airalarm LayoutId: AirAlarm - type: AccessReader access: [["Atmospherics"]] + - type: ContainerFill + containers: + board: [ AirAlarmElectronics ] + - type: ContainerContainer + containers: + board: !type:Container - type: Appearance - type: WiresVisuals - type: Sprite @@ -85,15 +103,15 @@ - !type:PlaySoundBehavior sound: path: /Audio/Effects/metalbreak.ogg - placement: - mode: SnapgridCenter - snap: - - Wallmount - type: entity id: AirAlarmAssembly name: air alarm assembly description: An air alarm. Doesn't look like it'll be alarming air any time soon. + placement: + mode: SnapgridCenter + snap: + - Wallmount components: - type: WallMount - type: Clickable @@ -115,7 +133,3 @@ node: assembly - type: Transform anchored: true - placement: - mode: SnapgridCenter - snap: - - Wallmount diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/fire_alarm.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/fire_alarm.yml index d0e9cfdb0f0..da866d98231 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/fire_alarm.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/fire_alarm.yml @@ -44,6 +44,12 @@ - type: FireAlarm - type: AccessReader access: [ [ "Atmospherics" ] ] + - type: ContainerFill + containers: + board: [ FireAlarmElectronics ] + - type: ContainerContainer + containers: + board: !type:Container - type: Appearance - type: WiresVisuals - type: AlertLevelDisplay @@ -60,7 +66,7 @@ type: WiresBoundUserInterface - type: WiresPanel - type: Wires - BoardName: "Fire Alarm" + BoardName: wires-board-name-firealarm LayoutId: FireAlarm - type: Sprite sprite: Structures/Wallmounts/air_monitors.rsi diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml index 57530c166c2..59409f41325 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml @@ -23,6 +23,12 @@ - type: Clickable - type: InteractionOutline - type: Appearance + - type: ContainerFill + containers: + board: [ IntercomElectronics ] + - type: ContainerContainer + containers: + board: !type:Container - type: Sprite noRot: false sprite: Structures/Wallmounts/intercom.rsi @@ -44,7 +50,7 @@ anchored: true - type: WiresPanel - type: Wires - BoardName: "Intercom" + BoardName: wires-board-name-intercom LayoutId: Intercom - type: ActivatableUIRequiresPower - type: ActivatableUI diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/station_map.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/station_map.yml index 3bad37ec761..94bc33a210a 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/station_map.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/station_map.yml @@ -51,6 +51,12 @@ - type: Icon sprite: Structures/Machines/station_map.rsi state: station_map0 + - type: ContainerFill + containers: + board: [ StationMapCircuitboard ] + - type: ContainerContainer + containers: + board: !type:Container - type: ApcPowerReceiver powerLoad: 200 priority: Low @@ -113,4 +119,4 @@ placement: mode: SnapgridCenter snap: - - Wallmount \ No newline at end of file + - Wallmount diff --git a/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml b/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml index 796a7c4f8af..ea9960b0c5e 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml @@ -7,6 +7,7 @@ suffix: Low Ore Yield description: A rocky asteroid. components: + - type: SoundOnGather - type: Gatherable whitelist: tags: @@ -16,7 +17,6 @@ mode: NoSprite - type: SmoothEdge - type: Sprite - noRot: true sprite: Structures/Walls/rock.rsi layers: - state: rock_asteroid @@ -63,10 +63,6 @@ suffix: higher ore yield description: An asteroid. components: - - type: Gatherable - whitelist: - tags: - - Pickaxe - type: OreVein oreChance: 0.33 oreRarityPrototypeId: RandomOreDistributionStandard @@ -103,10 +99,6 @@ suffix: higher ore yield description: An asteroid. components: - - type: Gatherable - whitelist: - tags: - - Pickaxe - type: OreVein oreChance: 0.33 oreRarityPrototypeId: RandomOreDistributionStandard @@ -118,6 +110,7 @@ parent: BaseStructure name: rock components: + - type: SoundOnGather - type: Gatherable whitelist: tags: diff --git a/Resources/Prototypes/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/Entities/Structures/Walls/walls.yml index 51d6f299d69..46b64dc34fb 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/walls.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/walls.yml @@ -972,7 +972,7 @@ key: walls base: wall - type: Construction - graph: WallWeb + graph: WebStructures node: wall @@ -1030,7 +1030,7 @@ name: Invisible Wall components: - type: TimedDespawn - lifetime: 30 + lifetime: 15 - type: Tag tags: - Wall diff --git a/Resources/Prototypes/Entities/Structures/hydro_tray.yml b/Resources/Prototypes/Entities/Structures/hydro_tray.yml index 2855a6f9d35..c3818cf289d 100644 --- a/Resources/Prototypes/Entities/Structures/hydro_tray.yml +++ b/Resources/Prototypes/Entities/Structures/hydro_tray.yml @@ -81,7 +81,7 @@ board: HydroponicsTrayMachineCircuitboard - type: WiresPanel - type: Wires - BoardName: "HydroponicsTray" + BoardName: wires-board-name-hydroponicstray LayoutId: HydroponicsTray - type: AmbientSound volume: -9 @@ -89,3 +89,17 @@ sound: path: /Audio/Ambience/Objects/flowing_water_open.ogg - type: Climbable + - type: GuideHelp + guides: + - Botany + +- type: entity + parent: hydroponicsTray + id: HydroponicsTrayEmpty + suffix: Empty + components: + - type: PlantHolder + waterLevel: 0 + nutritionLevel: 0 + # for the lights to update immediately + updateSpriteAfterUpdate: true diff --git a/Resources/Prototypes/Entities/Tiles/water.yml b/Resources/Prototypes/Entities/Tiles/water.yml index bb93e1a43d5..45079c0a37d 100644 --- a/Resources/Prototypes/Entities/Tiles/water.yml +++ b/Resources/Prototypes/Entities/Tiles/water.yml @@ -7,9 +7,7 @@ snap: - Wall components: - - type: StepTrigger - requiredTriggeredSpeed: 0 - intersectRatio: 0.1 + - type: FloorOccluder - type: Transform anchored: true - type: SyncSprite diff --git a/Resources/Prototypes/Entities/World/Debris/asteroids.yml b/Resources/Prototypes/Entities/World/Debris/asteroids.yml index 99b46be9a68..1a59b433d88 100644 --- a/Resources/Prototypes/Entities/World/Debris/asteroids.yml +++ b/Resources/Prototypes/Entities/World/Debris/asteroids.yml @@ -7,13 +7,13 @@ - type: MapGrid - type: BlobFloorPlanBuilder floorTileset: - - FloorAsteroidCoarseSand0 + - FloorAsteroidSand blobDrawProb: 0.5 radius: 6 floorPlacements: 16 - type: SimpleFloorPlanPopulator entries: - FloorAsteroidCoarseSand0: + FloorAsteroidSand: - id: WallRock prob: 0.5 orGroup: rock diff --git a/Resources/Prototypes/GameRules/events.yml b/Resources/Prototypes/GameRules/events.yml index 1bc23f5075e..9e59bcce5e7 100644 --- a/Resources/Prototypes/GameRules/events.yml +++ b/Resources/Prototypes/GameRules/events.yml @@ -195,8 +195,8 @@ # - type: RandomSentienceRule - type: entity - id: SolarFlare parent: BaseGameRule + id: SolarFlare noSpawn: true components: - type: StationEvent diff --git a/Resources/Prototypes/GameRules/midround.yml b/Resources/Prototypes/GameRules/midround.yml new file mode 100644 index 00000000000..0d5983b178b --- /dev/null +++ b/Resources/Prototypes/GameRules/midround.yml @@ -0,0 +1,19 @@ +# doesnt spawn a ninja or anything, just stores configuration for it +# see NinjaSpawn event for spawning +- type: entity + id: Ninja + parent: BaseGameRule + noSpawn: true + components: + - type: NinjaRule + objectives: + - StealResearchObjective + - DoorjackObjective + - SpiderChargeObjective + - TerrorObjective + - SurviveObjective + threats: + - announcement: terror-dragon + rule: Dragon + - announcement: terror-revenant + rule: RevenantSpawn diff --git a/Resources/Prototypes/GameRules/roundstart.yml b/Resources/Prototypes/GameRules/roundstart.yml index 776466d23dc..45e612466ac 100644 --- a/Resources/Prototypes/GameRules/roundstart.yml +++ b/Resources/Prototypes/GameRules/roundstart.yml @@ -6,11 +6,34 @@ - type: GameRule - type: entity - id: DeathMatch + id: DeathMatch31 parent: BaseGameRule noSpawn: true components: - type: DeathMatchRule + rewardSpawns: + - id: HealingToolbox + - id: ClothingOuterArmorBasicSlim + orGroup: loot + - id: ClothingHeadHelmetBasic + orGroup: loot + - id: SoapNT + orGroup: loot + - id: Bola + orGroup: loot + - id: Spear + orGroup: loot + - id: ClothingShoesGaloshes + orGroup: loot + - id: FoodPieBananaCream + orGroup: loot + - id: Stimpack + orGroup: loot + - type: KillCalloutRule + - type: PointManager + - type: RespawnDeadRule + - type: RespawnTracker + respawnDelay: 5 - type: entity id: InactivityTimeRestart diff --git a/Resources/Prototypes/Guidebook/antagonist.yml b/Resources/Prototypes/Guidebook/antagonist.yml index 32dda63590e..e6e9afa0172 100644 --- a/Resources/Prototypes/Guidebook/antagonist.yml +++ b/Resources/Prototypes/Guidebook/antagonist.yml @@ -7,6 +7,7 @@ - NuclearOperatives - Zombies - MinorAntagonists + - SpaceNinja - type: guideEntry id: Traitors @@ -27,3 +28,8 @@ id: MinorAntagonists name: guide-entry-minor-antagonists text: "/ServerInfo/Guidebook/Antagonist/MinorAntagonists.xml" + +- type: guideEntry + id: SpaceNinja + name: guide-entry-space-ninja + text: "/ServerInfo/Guidebook/Antagonist/SpaceNinja.xml" diff --git a/Resources/Prototypes/Guidebook/engineering.yml b/Resources/Prototypes/Guidebook/engineering.yml index 1053503e33c..d8a260f9a10 100644 --- a/Resources/Prototypes/Guidebook/engineering.yml +++ b/Resources/Prototypes/Guidebook/engineering.yml @@ -61,6 +61,7 @@ name: guide-entry-power text: "/ServerInfo/Guidebook/Engineering/Power.xml" children: + - PortableGenerator - AME - Singularity - TEG @@ -79,3 +80,8 @@ id: TEG name: guide-entry-teg text: "/ServerInfo/Guidebook/Engineering/TEG.xml" + +- type: guideEntry + id: PortableGenerator + name: guide-entry-portable-generator + text: "/ServerInfo/Guidebook/Engineering/PortableGenerator.xml" diff --git a/Resources/Prototypes/Guidebook/ss14.yml b/Resources/Prototypes/Guidebook/ss14.yml index 7eca9bf47f8..9d4cd4bce48 100644 --- a/Resources/Prototypes/Guidebook/ss14.yml +++ b/Resources/Prototypes/Guidebook/ss14.yml @@ -8,3 +8,9 @@ - Survival - Chemicals - Antagonists + - Writing + +- type: guideEntry + id: Writing + name: guide-entry-writing + text: "/ServerInfo/Guidebook/Writing.xml" diff --git a/Resources/Prototypes/Hydroponics/seeds.yml b/Resources/Prototypes/Hydroponics/seeds.yml index 8c8abe478d7..aa18088766e 100644 --- a/Resources/Prototypes/Hydroponics/seeds.yml +++ b/Resources/Prototypes/Hydroponics/seeds.yml @@ -306,9 +306,13 @@ chemicals: Nutriment: Min: 1 - Max: 10 - PotencyDivisor: 10 + Max: 7 + PotencyDivisor: 14 Vitamin: + Min: 1 + Max: 3 + PotencyDivisor: 33 + Water: Min: 1 Max: 4 PotencyDivisor: 25 diff --git a/Resources/Prototypes/InventoryTemplates/arachnid_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/arachnid_inventory_template.yml deleted file mode 100644 index 17ab39abce5..00000000000 --- a/Resources/Prototypes/InventoryTemplates/arachnid_inventory_template.yml +++ /dev/null @@ -1,122 +0,0 @@ -- type: inventoryTemplate - id: arachnid - slots: - - name: shoes - slotTexture: shoes - slotFlags: FEET - stripTime: 3 - uiWindowPos: 1,3 - strippingWindowPos: 1,3 - displayName: Shoes - - name: jumpsuit - slotTexture: uniform - slotFlags: INNERCLOTHING - stripTime: 6 - uiWindowPos: 0,2 - strippingWindowPos: 0,2 - displayName: Jumpsuit - - name: outerClothing - slotTexture: suit - slotFlags: OUTERCLOTHING - slotGroup: MainHotbar - stripTime: 6 - uiWindowPos: 1,2 - strippingWindowPos: 1,2 - displayName: Suit - - name: gloves - slotTexture: gloves - slotFlags: GLOVES - uiWindowPos: 2,2 - strippingWindowPos: 2,2 - displayName: Gloves - - name: neck - slotTexture: neck - slotFlags: NECK - uiWindowPos: 0,1 - strippingWindowPos: 0,1 - displayName: Neck - - name: mask - slotTexture: mask - slotFlags: MASK - uiWindowPos: 1,1 - strippingWindowPos: 1,1 - displayName: Mask - - name: eyes - slotTexture: glasses - slotFlags: EYES - stripTime: 3 - uiWindowPos: 0,0 - strippingWindowPos: 0,0 - displayName: Eyes - - name: ears - slotTexture: ears - slotFlags: EARS - stripTime: 3 - uiWindowPos: 2,0 - strippingWindowPos: 2,0 - displayName: Ears - - name: head - slotTexture: head - slotFlags: HEAD - uiWindowPos: 1,0 - strippingWindowPos: 1,0 - displayName: Head - - name: pocket1 - slotTexture: pocket - slotFlags: POCKET - slotGroup: MainHotbar - stripTime: 3 - uiWindowPos: 0,3 - strippingWindowPos: 0,4 - dependsOn: jumpsuit - displayName: Pocket 1 - stripHidden: true - - name: pocket2 - slotTexture: pocket - slotFlags: POCKET - slotGroup: MainHotbar - stripTime: 3 - uiWindowPos: 2,3 - strippingWindowPos: 1,4 - dependsOn: jumpsuit - displayName: Pocket 2 - stripHidden: true - - name: id - slotTexture: id - slotFlags: IDCARD - slotGroup: SecondHotbar - stripTime: 6 - uiWindowPos: 2,1 - strippingWindowPos: 2,4 - dependsOn: jumpsuit - displayName: ID - - name: belt - slotTexture: belt - slotFlags: BELT - slotGroup: SecondHotbar - stripTime: 6 - uiWindowPos: 3,1 - strippingWindowPos: 1,5 - displayName: Belt - - name: back - slotTexture: back - slotFlags: BACK - slotGroup: SecondHotbar - stripTime: 6 - uiWindowPos: 3,0 - strippingWindowPos: 0,5 - displayName: Back - - name: web1 - slotTexture: web - slotFlags: POCKET - stripTime: 3 - uiWindowPos: 0,3 - strippingWindowPos: 0,3 - displayName: Left Web - - name: web2 - slotTexture: web - slotFlags: POCKET - stripTime: 3 - uiWindowPos: 6,3 - strippingWindowPos: 2,3 - displayName: Right Web diff --git a/Resources/Prototypes/InventoryTemplates/monkey_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/monkey_inventory_template.yml index 7764b7af7f5..e76a8e9d571 100644 --- a/Resources/Prototypes/InventoryTemplates/monkey_inventory_template.yml +++ b/Resources/Prototypes/InventoryTemplates/monkey_inventory_template.yml @@ -8,6 +8,14 @@ uiWindowPos: 0,0 strippingWindowPos: 0,0 displayName: Head + - name: ears + slotTexture: ears + slotFlags: EARS + slotGroup: MainHotbar + stripTime: 3 + uiWindowPos: 1,2 + strippingWindowPos: 1,2 + displayName: Ears - name: mask slotTexture: mask slotFlags: MASK @@ -48,8 +56,8 @@ slotFlags: OUTERCLOTHING slotGroup: MainHotbar stripTime: 6 - uiWindowPos: 1,2 - strippingWindowPos: 1,2 + uiWindowPos: 1,3 + strippingWindowPos: 1,3 displayName: Suit whitelist: tags: diff --git a/Resources/Prototypes/Magic/forcewall_spells.yml b/Resources/Prototypes/Magic/forcewall_spells.yml index 815852ac630..d3d8fef7608 100644 --- a/Resources/Prototypes/Magic/forcewall_spells.yml +++ b/Resources/Prototypes/Magic/forcewall_spells.yml @@ -1,15 +1,18 @@ -- type: instantAction - id: ForceWall - name: action-name-spell-forcewall - description: action-description-spell-forcewall - useDelay: 10 - itemIconStyle: BigAction - sound: !type:SoundPathSpecifier - path: /Audio/Magic/forcewall.ogg - icon: - sprite: Objects/Magic/magicactions.rsi - state: shield - serverEvent: !type:InstantSpawnSpellEvent - prototype: WallForce - posData: !type:TargetInFront - speech: action-speech-spell-forcewall +- type: entity + id: ActionForceWall + name: Forcewall + description: Creates a magical barrier. + noSpawn: true + components: + - type: InstantAction + useDelay: 10 + itemIconStyle: BigAction + sound: !type:SoundPathSpecifier + path: /Audio/Magic/forcewall.ogg + icon: + sprite: Objects/Magic/magicactions.rsi + state: shield + event: !type:InstantSpawnSpellEvent + prototype: WallForce + posData: !type:TargetInFront + speech: action-speech-spell-forcewall diff --git a/Resources/Prototypes/Magic/knock_spell.yml b/Resources/Prototypes/Magic/knock_spell.yml index b9fd07e9784..f00897d32c7 100644 --- a/Resources/Prototypes/Magic/knock_spell.yml +++ b/Resources/Prototypes/Magic/knock_spell.yml @@ -1,11 +1,14 @@ -- type: instantAction - id: Knock - name: action-name-spell-knock - description: action-description-spell-knock - useDelay: 10 - itemIconStyle: BigAction - icon: - sprite: Objects/Magic/magicactions.rsi - state: knock - serverEvent: !type:KnockSpellEvent - speech: action-speech-spell-knock +- type: entity + id: ActionKnock + name: Knock + description: This spell opens nearby doors. + noSpawn: true + components: + - type: InstantAction + useDelay: 10 + itemIconStyle: BigAction + icon: + sprite: Objects/Magic/magicactions.rsi + state: knock + event: !type:KnockSpellEvent + speech: action-speech-spell-knock diff --git a/Resources/Prototypes/Magic/projectile_spells.yml b/Resources/Prototypes/Magic/projectile_spells.yml index 15a6b261b02..8d7b2ffff05 100644 --- a/Resources/Prototypes/Magic/projectile_spells.yml +++ b/Resources/Prototypes/Magic/projectile_spells.yml @@ -1,17 +1,20 @@ -- type: worldTargetAction - id: Fireball - name: action-name-spell-fireball - description: action-description-spell-fireball - useDelay: 30 - itemIconStyle: BigAction - checkCanAccess: false - range: 60 - sound: !type:SoundPathSpecifier - path: /Audio/Magic/fireball.ogg - icon: - sprite: Objects/Magic/magicactions.rsi - state: fireball - serverEvent: !type:ProjectileSpellEvent - prototype: ProjectileFireball - posData: !type:TargetCasterPos - speech: action-speech-spell-fireball +- type: entity + id: ActionFireball + name: Fireball + description: Fires an explosive fireball towards the clicked location. + noSpawn: true + components: + - type: WorldTargetAction + useDelay: 30 + itemIconStyle: BigAction + checkCanAccess: false + range: 60 + sound: !type:SoundPathSpecifier + path: /Audio/Magic/fireball.ogg + icon: + sprite: Objects/Magic/magicactions.rsi + state: fireball + event: !type:ProjectileSpellEvent + prototype: ProjectileFireball + posData: !type:TargetCasterPos + speech: action-speech-spell-fireball diff --git a/Resources/Prototypes/Magic/rune_spells.yml b/Resources/Prototypes/Magic/rune_spells.yml index 4583390c9cb..42022f57850 100644 --- a/Resources/Prototypes/Magic/rune_spells.yml +++ b/Resources/Prototypes/Magic/rune_spells.yml @@ -1,47 +1,59 @@ -- type: instantAction - id: FlashRune - name: action-name-spell-rune-flash - description: action-description-spell-rune-flash - useDelay: 10 - itemIconStyle: BigAction - icon: - sprite: Objects/Magic/magicactions.rsi - state: spell_default - serverEvent: !type:InstantSpawnSpellEvent - prototype: FlashRune +- type: entity + id: ActionFlashRune + name: Flash Rune + description: Summons a rune that flashes if used. + noSpawn: true + components: + - type: InstantAction + useDelay: 10 + itemIconStyle: BigAction + icon: + sprite: Objects/Magic/magicactions.rsi + state: spell_default + event: !type:InstantSpawnSpellEvent + prototype: FlashRune -- type: instantAction - id: ExplosionRune - name: action-name-spell-rune-explosion - description: action-description-spell-rune-explosion - useDelay: 20 - itemIconStyle: BigAction - icon: - sprite: Objects/Magic/magicactions.rsi - state: spell_default - serverEvent: !type:InstantSpawnSpellEvent - prototype: ExplosionRune +- type: entity + id: ActionExplosionRune + name: Explosion Rune + description: Summons a rune that explodes if used. + noSpawn: true + components: + - type: InstantAction + useDelay: 20 + itemIconStyle: BigAction + icon: + sprite: Objects/Magic/magicactions.rsi + state: spell_default + event: !type:InstantSpawnSpellEvent + prototype: ExplosionRune -- type: instantAction - id: IgniteRune - name: action-name-spell-rune-ignite - description: action-description-spell-rune-ignite - useDelay: 15 - itemIconStyle: BigAction - icon: - sprite: Objects/Magic/magicactions.rsi - state: spell_default - serverEvent: !type:InstantSpawnSpellEvent - prototype: IgniteRune +- type: entity + id: ActionIgniteRune + name: Ignite Rune + description: Summons a rune that ignites if used. + noSpawn: true + components: + - type: InstantAction + useDelay: 15 + itemIconStyle: BigAction + icon: + sprite: Objects/Magic/magicactions.rsi + state: spell_default + event: !type:InstantSpawnSpellEvent + prototype: IgniteRune -- type: instantAction - id: StunRune - name: action-name-spell-rune-stun - description: action-description-spell-rune-stun - useDelay: 10 - itemIconStyle: BigAction - icon: - sprite: Objects/Magic/magicactions.rsi - state: spell_default - serverEvent: !type:InstantSpawnSpellEvent - prototype: StunRune +- type: entity + id: ActionStunRune + name: Stun Rune + description: Summons a rune that stuns if used. + noSpawn: true + components: + - type: InstantAction + useDelay: 10 + itemIconStyle: BigAction + icon: + sprite: Objects/Magic/magicactions.rsi + state: spell_default + event: !type:InstantSpawnSpellEvent + prototype: StunRune diff --git a/Resources/Prototypes/Magic/smite_spells.yml b/Resources/Prototypes/Magic/smite_spells.yml index b85fff98f47..e629e565058 100644 --- a/Resources/Prototypes/Magic/smite_spells.yml +++ b/Resources/Prototypes/Magic/smite_spells.yml @@ -1,18 +1,21 @@ -- type: entityTargetAction - id: Smite - name: action-name-spell-smite - description: action-description-spell-smite - useDelay: 60 - itemIconStyle: BigAction - whitelist: - components: - - Body - canTargetSelf: false - interactOnMiss: false - sound: !type:SoundPathSpecifier - path: /Audio/Magic/disintegrate.ogg - icon: - sprite: Objects/Magic/magicactions.rsi - state: gib - serverEvent: !type:SmiteSpellEvent - speech: action-speech-spell-smite +- type: entity + id: ActionSmite + name: Smite + description: Instantly gibs a target. + noSpawn: true + components: + - type: EntityTargetAction + useDelay: 60 + itemIconStyle: BigAction + whitelist: + components: + - Body + canTargetSelf: false + interactOnMiss: false + sound: !type:SoundPathSpecifier + path: /Audio/Magic/disintegrate.ogg + icon: + sprite: Objects/Magic/magicactions.rsi + state: gib + event: !type:SmiteSpellEvent + speech: action-speech-spell-smite diff --git a/Resources/Prototypes/Magic/spawn_spells.yml b/Resources/Prototypes/Magic/spawn_spells.yml index 40a1d38d38b..3f8148b83cb 100644 --- a/Resources/Prototypes/Magic/spawn_spells.yml +++ b/Resources/Prototypes/Magic/spawn_spells.yml @@ -1,16 +1,19 @@ -- type: worldTargetAction - id: SpawnMagicarpSpell - name: action-name-spell-summon-magicarp - description: action-description-spell-summon-magicarp - useDelay: 10 - range: 4 - itemIconStyle: BigAction - icon: - sprite: Objects/Magic/magicactions.rsi - state: spell_default - serverEvent: !type:WorldSpawnSpellEvent - prototypes: +- type: entity + id: ActionSpawnMagicarpSpell + name: Summon Magicarp + description: This spell summons three Magi-Carp to your aid! May or may not turn on user. + noSpawn: true + components: + - type: WorldTargetAction + useDelay: 10 + range: 4 + itemIconStyle: BigAction + icon: + sprite: Objects/Magic/magicactions.rsi + state: spell_default + event: !type:WorldSpawnSpellEvent + prototypes: - id: MobCarpMagic amount: 3 - offsetVector2: 0, 1 - speech: action-speech-spell-summon-magicarp + offset: 0, 1 + speech: action-speech-spell-summon-magicarp diff --git a/Resources/Prototypes/Magic/staves.yml b/Resources/Prototypes/Magic/staves.yml index 833c1215f08..4713a838f84 100644 --- a/Resources/Prototypes/Magic/staves.yml +++ b/Resources/Prototypes/Magic/staves.yml @@ -14,13 +14,8 @@ - state: nothing-unshaded shader: unshaded - type: ActionOnInteract - entityActions: - - whitelist: { components: [ PointLight ] } - charges: 25 - sound: /Audio/Magic/blink.ogg - event: !type:ChangeComponentsSpellEvent - toAdd: - - type: RgbLightController + actions: + - ActionRgbLight - type: Item inhandVisuals: left: @@ -34,4 +29,16 @@ - type: RgbLightController - type: PointLight enabled: true - radius: 2 \ No newline at end of file + radius: 2 + +- type: entity + id: ActionRgbLight + noSpawn: true + components: + - type: EntityTargetAction + whitelist: { components: [ PointLight ] } + charges: 25 + sound: /Audio/Magic/blink.ogg + event: !type:ChangeComponentsSpellEvent + toAdd: + - type: RgbLightController diff --git a/Resources/Prototypes/Magic/teleport_spells.yml b/Resources/Prototypes/Magic/teleport_spells.yml index 230ae024b7d..30c83891eee 100644 --- a/Resources/Prototypes/Magic/teleport_spells.yml +++ b/Resources/Prototypes/Magic/teleport_spells.yml @@ -1,14 +1,17 @@ -- type: worldTargetAction - id: Blink - name: action-name-spell-blink - description: action-description-spell-blink - useDelay: 10 - range: 16 # default examine-range. - # ^ should probably add better validation that the clicked location is on the users screen somewhere, - itemIconStyle: BigAction - checkCanAccess: false - repeat: true - icon: - sprite: Objects/Magic/magicactions.rsi - state: blink - serverEvent: !type:TeleportSpellEvent +- type: entity + id: ActionBlink + name: Blink + description: Teleport to the clicked location. + noSpawn: true + components: + - type: WorldTargetAction + useDelay: 10 + range: 16 # default examine-range. + # ^ should probably add better validation that the clicked location is on the users screen somewhere, + itemIconStyle: BigAction + checkCanAccess: false + repeat: true + icon: + sprite: Objects/Magic/magicactions.rsi + state: blink + event: !type:TeleportSpellEvent diff --git a/Resources/Prototypes/Maps/Pools/deathmatch.yml b/Resources/Prototypes/Maps/Pools/deathmatch.yml new file mode 100644 index 00000000000..e263e1523b6 --- /dev/null +++ b/Resources/Prototypes/Maps/Pools/deathmatch.yml @@ -0,0 +1,4 @@ +- type: gameMapPool + id: DeathMatchMapPool + maps: + - MeteorArena diff --git a/Resources/Prototypes/Maps/arenas.yml b/Resources/Prototypes/Maps/arenas.yml new file mode 100644 index 00000000000..32f85437225 --- /dev/null +++ b/Resources/Prototypes/Maps/arenas.yml @@ -0,0 +1,16 @@ +- type: gameMap + id: MeteorArena + mapName: Meteor Arena + mapPath: /Maps/Nonstations/meteor-arena.yml + minPlayers: 0 + stations: + Arena: + stationProto: StandardStationArena + components: + - type: StationNameSetup + mapNameTemplate: "Meteor Arena" + - type: StationJobs + overflowJobs: + - Passenger + availableJobs: + Passenger: [ -1, -1 ] diff --git a/Resources/Prototypes/Maps/aspid.yml b/Resources/Prototypes/Maps/aspid.yml index 85c7e5b229d..a6370b35e1b 100644 --- a/Resources/Prototypes/Maps/aspid.yml +++ b/Resources/Prototypes/Maps/aspid.yml @@ -19,37 +19,50 @@ overflowJobs: - Passenger availableJobs: - CargoTechnician: [ 2, 3 ] - Passenger: [ -1, -1 ] + #service + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] Bartender: [ 1, 2 ] Botanist: [ 2, 3 ] Chef: [ 1, 3 ] - Clown: [ 1, 1 ] Janitor: [ 2, 3 ] - Mime: [ 1, 1 ] - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] + Chaplain: [ 1, 1 ] + Librarian: [ 1, 1 ] + Lawyer: [ 2, 2 ] + ServiceWorker: [ 1, 1 ] + #engineering ChiefEngineer: [ 1, 1 ] + AtmosphericTechnician: [ 2, 2 ] + SeniorEngineer: [ 1, 1 ] StationEngineer: [ 2, 3 ] + TechnicalAssistant: [ 4, 4 ] + #medical ChiefMedicalOfficer: [ 1, 1 ] - MedicalDoctor: [ 3, 3 ] + SeniorPhysician: [ 1, 1 ] + Paramedic: [ 1, 1 ] Chemist: [ 1, 2 ] + MedicalDoctor: [ 3, 3 ] + MedicalIntern: [ 4, 4 ] + #science ResearchDirector: [ 1, 1 ] - ResearchAssistant: [ 4, 4 ] + SeniorResearcher: [ 1, 1 ] Scientist: [ 3, 4 ] + ResearchAssistant: [ 4, 4 ] + Borg: [ 2, 2 ] + #security HeadOfSecurity: [ 1, 1 ] - SecurityOfficer: [ 3, 4 ] - Chaplain: [ 1, 1 ] Warden: [ 1, 1 ] - Librarian: [ 1, 1 ] - Lawyer: [ 2, 2 ] + SeniorOfficer: [ 1, 1 ] + Detective: [ 1, 1 ] + SecurityOfficer: [ 3, 4 ] + SecurityCadet: [ 4, 4 ] + #supply Quartermaster: [ 1, 1 ] SalvageSpecialist: [ 3, 4 ] + CargoTechnician: [ 2, 3 ] + #civillian + Passenger: [ -1, -1 ] + Clown: [ 1, 1 ] + Mime: [ 1, 1 ] Musician: [ 1, 1 ] - AtmosphericTechnician: [ 2, 2 ] - TechnicalAssistant: [ 4, 4 ] - MedicalIntern: [ 4, 4 ] - ServiceWorker: [ 1, 1 ] - SecurityCadet: [ 4, 4 ] - Detective: [ 1, 1 ] - Paramedic: [1, 1] + diff --git a/Resources/Prototypes/Maps/bagel.yml b/Resources/Prototypes/Maps/bagel.yml index 110fd2d3052..ac462937606 100644 --- a/Resources/Prototypes/Maps/bagel.yml +++ b/Resources/Prototypes/Maps/bagel.yml @@ -47,6 +47,7 @@ SeniorResearcher: [ 1, 1 ] Scientist: [ 4, 4 ] ResearchAssistant: [ 4, 4 ] + Borg: [ 2, 2 ] #security HeadOfSecurity: [ 1, 1 ] Warden: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/barratry.yml b/Resources/Prototypes/Maps/barratry.yml index 9dd2db5ba4e..be00008dcfe 100644 --- a/Resources/Prototypes/Maps/barratry.yml +++ b/Resources/Prototypes/Maps/barratry.yml @@ -19,36 +19,44 @@ overflowJobs: - Passenger availableJobs: - CargoTechnician: [ 2, 2 ] - Passenger: [ -1, -1 ] + #service + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] Bartender: [ 2, 2 ] - Botanist: [ 2, 2] + Botanist: [ 2, 2 ] Chef: [ 2, 2 ] - Clown: [ 1, 1 ] Janitor: [ 2, 2 ] - Mime: [ 1, 1 ] - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] + Chaplain: [ 1, 1 ] + Librarian: [ 1, 1 ] + Lawyer: [ 2, 2 ] + ServiceWorker: [ 1, 2 ] + #engineering ChiefEngineer: [ 1, 1 ] + AtmosphericTechnician: [ 3, 3 ] StationEngineer: [ 4, 4 ] + TechnicalAssistant: [ 2, 4 ] + #medical ChiefMedicalOfficer: [ 1, 1 ] - MedicalDoctor: [ 3, 3 ] Chemist: [ 2, 2 ] + MedicalDoctor: [ 3, 3 ] + MedicalIntern: [ 2, 4 ] + #science ResearchDirector: [ 1, 1 ] Scientist: [ 4, 4 ] + ResearchAssistant: [2, 4] + #security HeadOfSecurity: [ 1, 1 ] - SecurityOfficer: [ 4, 4 ] - Chaplain: [ 1, 1 ] Warden: [ 1, 1 ] - Librarian: [ 1, 1 ] - Lawyer: [ 2, 2 ] + Detective: [ 1, 1 ] + SecurityOfficer: [ 4, 4 ] + SecurityCadet: [ 2, 4 ] + #supply Quartermaster: [ 1, 1 ] SalvageSpecialist: [ 3, 3 ] + CargoTechnician: [ 2, 2 ] + #civillian + Passenger: [ -1, -1 ] + Clown: [ 1, 1 ] + Mime: [ 1, 1 ] Musician: [ 1, 1 ] - AtmosphericTechnician: [ 3, 3 ] - TechnicalAssistant: [ 2, 4 ] - MedicalIntern: [ 2, 4 ] - ServiceWorker: [ 1, 2 ] - SecurityCadet: [ 2, 4 ] - Detective: [ 1, 1 ] - ResearchAssistant: [2, 4] + diff --git a/Resources/Prototypes/Maps/box.yml b/Resources/Prototypes/Maps/box.yml index 03edd30f99e..ddf217580be 100644 --- a/Resources/Prototypes/Maps/box.yml +++ b/Resources/Prototypes/Maps/box.yml @@ -47,6 +47,7 @@ SeniorResearcher: [ 1, 1 ] Scientist: [ 4, 4 ] ResearchAssistant: [ 4, 4 ] + Borg: [ 2, 2 ] #security HeadOfSecurity: [ 1, 1 ] Warden: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/cluster.yml b/Resources/Prototypes/Maps/cluster.yml index 57f1639ee8d..73d90122e1b 100644 --- a/Resources/Prototypes/Maps/cluster.yml +++ b/Resources/Prototypes/Maps/cluster.yml @@ -1,4 +1,4 @@ -- type: gameMap +- type: gameMap id: Cluster mapName: 'Cluster' mapPath: /Maps/cluster.yml @@ -19,36 +19,49 @@ overflowJobs: - Passenger availableJobs: - CargoTechnician: [ 1, 1 ] - Passenger: [ -1, -1 ] + #service + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] Bartender: [ 1, 1 ] Botanist: [ 2, 2 ] Chef: [ 1, 1 ] - Clown: [ 1, 1 ] Janitor: [ 1, 1 ] - Mime: [ 1, 1 ] - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] + Chaplain: [ 1, 1 ] + Librarian: [ 1, 1 ] + Lawyer: [ 1, 1 ] + ServiceWorker: [ 1, 1 ] + #engineering ChiefEngineer: [ 1, 1 ] + SeniorEngineer: [ 1, 1 ] + AtmosphericTechnician: [ 2, 2 ] StationEngineer: [ 2, 2 ] + TechnicalAssistant: [ 2, 2 ] + #medical ChiefMedicalOfficer: [ 1, 1 ] - MedicalDoctor: [ 1, 1 ] + SeniorPhysician: [ 1, 1 ] Chemist: [ 1, 1 ] + MedicalDoctor: [ 1, 1 ] + MedicalIntern: [ 2, 2 ] + #science ResearchDirector: [ 1, 1 ] + SeniorResearcher: [ 1 , 1 ] Scientist: [ 2, 2 ] ResearchAssistant: [ 2, 2 ] + Borg: [ 1, 1 ] + #security HeadOfSecurity: [ 1, 1 ] - SecurityOfficer: [ 2, 2 ] - Chaplain: [ 1, 1 ] Warden: [ 1, 1 ] - Librarian: [ 1, 1 ] - Lawyer: [ 1, 1 ] - Musician: [ 1, 1 ] - AtmosphericTechnician: [ 2, 2 ] + SeniorOfficer: [ 1, 1 ] Detective: [ 1, 1 ] - TechnicalAssistant: [ 2, 2 ] - MedicalIntern: [ 2, 2 ] - ServiceWorker: [ 1, 1 ] + SecurityOfficer: [ 2, 2 ] SecurityCadet: [ 2, 2 ] - SalvageSpecialist: [ 2, 2 ] + #supply Quartermaster: [ 1, 1 ] + SalvageSpecialist: [ 2, 2 ] + CargoTechnician: [ 1, 1 ] + #civillian + Passenger: [ -1, -1 ] + Clown: [ 1, 1 ] + Mime: [ 1, 1 ] + Musician: [ 1, 1 ] + diff --git a/Resources/Prototypes/Maps/fland.yml b/Resources/Prototypes/Maps/fland.yml index da81beba2c2..91e6db642d1 100644 --- a/Resources/Prototypes/Maps/fland.yml +++ b/Resources/Prototypes/Maps/fland.yml @@ -46,6 +46,7 @@ SeniorResearcher: [ 1, 1 ] Scientist: [ 4, 4 ] ResearchAssistant: [ 6, 6 ] + Borg: [ 2, 2 ] #security HeadOfSecurity: [ 1, 1 ] Warden: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/kettle.yml b/Resources/Prototypes/Maps/kettle.yml index d055a7d0e26..3e8cba3a224 100644 --- a/Resources/Prototypes/Maps/kettle.yml +++ b/Resources/Prototypes/Maps/kettle.yml @@ -18,38 +18,50 @@ overflowJobs: - Passenger availableJobs: - CargoTechnician: [ 3, 3 ] - Passenger: [ -1, -1 ] + #service + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] Bartender: [ 1, 2 ] Botanist: [ 3, 4 ] Chef: [ 2, 3 ] - Clown: [ 1, 2 ] Janitor: [ 4, 4 ] - Mime: [ 1, 2 ] - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] + Chaplain: [ 1, 2 ] + Librarian: [ 1, 2 ] + Lawyer: [ 2, 3 ] + Zookeeper: [ 1, 1 ] + ServiceWorker: [ 4, 4 ] + #engineering ChiefEngineer: [ 1, 1 ] + AtmosphericTechnician: [ 3, 3 ] + SeniorEngineer: [ 1, 1 ] StationEngineer: [ 4, 6 ] + TechnicalAssistant: [ 8, 8 ] + #medical ChiefMedicalOfficer: [ 1, 1 ] - MedicalDoctor: [ 3, 5 ] + SeniorPhysician: [ 1, 1 ] Chemist: [ 2, 3 ] + Paramedic: [ 2, 2 ] + MedicalDoctor: [ 3, 5 ] + MedicalIntern: [ 8, 8 ] + #science ResearchDirector: [ 1, 1 ] + SeniorResearcher: [ 1, 1 ] Scientist: [ 4, 6 ] ResearchAssistant: [ 8, 8 ] + #security HeadOfSecurity: [ 1, 1 ] - SecurityOfficer: [ 4, 6 ] - Chaplain: [ 1, 2 ] Warden: [ 1, 1 ] - Librarian: [ 1, 2 ] - Lawyer: [ 2, 3 ] + SeniorOfficer: [ 1, 1 ] + Detective: [ 1, 1 ] + SecurityOfficer: [ 4, 6 ] + SecurityCadet: [ 8, 8 ] + #supply Quartermaster: [ 1, 1 ] SalvageSpecialist: [ 3, 4 ] + CargoTechnician: [ 3, 3 ] + #civillian + Passenger: [ -1, -1 ] + Clown: [ 1, 2 ] + Mime: [ 1, 2 ] Musician: [ 1, 2 ] - AtmosphericTechnician: [ 3, 3 ] - TechnicalAssistant: [ 8, 8 ] - MedicalIntern: [ 8, 8 ] - ServiceWorker: [ 4, 4 ] - SecurityCadet: [ 8, 8 ] - Detective: [ 1, 1 ] - Zookeeper: [1, 1] - Paramedic: [2, 2] + diff --git a/Resources/Prototypes/Maps/marathon.yml b/Resources/Prototypes/Maps/marathon.yml index 1ef272d1138..7ce93794602 100644 --- a/Resources/Prototypes/Maps/marathon.yml +++ b/Resources/Prototypes/Maps/marathon.yml @@ -47,6 +47,7 @@ SeniorResearcher: [ 1, 1 ] Scientist: [ 3, 3 ] ResearchAssistant: [ 3, 3 ] + Borg: [ 2, 2 ] #security HeadOfSecurity: [ 1, 1 ] Warden: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/meta.yml b/Resources/Prototypes/Maps/meta.yml index 38a2c551015..2128d9adbb4 100644 --- a/Resources/Prototypes/Maps/meta.yml +++ b/Resources/Prototypes/Maps/meta.yml @@ -46,6 +46,7 @@ SeniorResearcher: [ 1, 1 ] Scientist: [ 4, 6 ] ResearchAssistant: [ 3, 6 ] + Borg: [ 2, 2 ] #security HeadOfSecurity: [ 1, 1 ] Warden: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/omega.yml b/Resources/Prototypes/Maps/omega.yml index 81c6ac46654..eb023c0b1fe 100644 --- a/Resources/Prototypes/Maps/omega.yml +++ b/Resources/Prototypes/Maps/omega.yml @@ -61,3 +61,4 @@ Clown: [ 1, 1 ] Mime: [ 1, 1 ] Musician: [ 1, 1 ] + Borg: [ 2, 2 ] diff --git a/Resources/Prototypes/Maps/origin.yml b/Resources/Prototypes/Maps/origin.yml index cb705b444ab..2e38e56064b 100644 --- a/Resources/Prototypes/Maps/origin.yml +++ b/Resources/Prototypes/Maps/origin.yml @@ -18,44 +18,53 @@ overflowJobs: - Passenger availableJobs: - CargoTechnician: [ 5, 5 ] - Passenger: [ -1, -1 ] + #service + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] Bartender: [ 2, 2 ] Botanist: [ 3, 3 ] Chef: [ 3, 3 ] - Clown: [ 1, 1 ] Janitor: [ 3, 3 ] - Mime: [ 1, 1 ] - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] + Chaplain: [ 2, 2 ] + Librarian: [ 2, 2 ] + Lawyer: [ 2, 2 ] + ServiceWorker: [ 3, 4 ] + #engineering ChiefEngineer: [ 1, 1 ] + SeniorEngineer: [ 1, 1 ] + AtmosphericTechnician: [ 3, 3 ] StationEngineer: [ 5, 5 ] + TechnicalAssistant: [ 2, 3 ] + #medical ChiefMedicalOfficer: [ 1, 1 ] - MedicalDoctor: [ 5, 5 ] + SeniorPhysician: [ 1, 1 ] Chemist: [ 2, 3 ] + Paramedic: [ 1, 1 ] + MedicalDoctor: [ 5, 5 ] + Psychologist: [ 1, 1 ] + MedicalIntern: [ 1, 2 ] + #science ResearchDirector: [ 1, 1 ] + SeniorResearcher: [ 1, 1 ] Scientist: [ 5, 5 ] + ResearchAssistant: [ 4, 4 ] + Borg: [ 2, 2 ] + #security HeadOfSecurity: [ 1, 1 ] - SecurityOfficer: [ 6, 6 ] - Chaplain: [ 2, 2 ] Warden: [ 1, 1 ] - Librarian: [ 2, 2 ] - Lawyer: [ 2, 2 ] + SeniorOfficer: [ 1, 1 ] + Detective: [ 1, 1 ] + SecurityOfficer: [ 6, 6 ] + SecurityCadet: [ 2, 4 ] + #supply Quartermaster: [ 1, 1 ] SalvageSpecialist: [ 3, 3 ] + CargoTechnician: [ 5, 5 ] + #civillian + Passenger: [ -1, -1 ] + Clown: [ 1, 1 ] + Mime: [ 1, 1 ] Musician: [ 2, 2 ] - AtmosphericTechnician: [ 3, 3 ] - TechnicalAssistant: [ 2, 3 ] - MedicalIntern: [ 1, 2 ] - ServiceWorker: [ 3, 4 ] - SecurityCadet: [ 2, 4 ] - Detective: [ 1, 1 ] - ResearchAssistant: [ 4, 4] - Boxer: [ 1, 1] - Paramedic: [ 1, 1] - Reporter: [ 1, 1] - Psychologist: [ 1, 1] - SeniorEngineer: [ 1, 1] - SeniorOfficer: [ 1, 1] - SeniorPhysician: [ 1, 1] - SeniorResearcher: [ 1, 1] + Boxer: [ 1, 1 ] + Reporter: [ 1, 1 ] + diff --git a/Resources/Prototypes/Maps/packed.yml b/Resources/Prototypes/Maps/packed.yml index d11b8590f13..d93d1ec7dd7 100644 --- a/Resources/Prototypes/Maps/packed.yml +++ b/Resources/Prototypes/Maps/packed.yml @@ -62,3 +62,4 @@ Clown: [ 1, 1 ] Mime: [ 1, 1 ] Musician: [ 1, 1 ] + Borg: [ 1 , 1 ] diff --git a/Resources/Prototypes/Maps/saltern.yml b/Resources/Prototypes/Maps/saltern.yml index f26aaba8fe2..b41286688db 100644 --- a/Resources/Prototypes/Maps/saltern.yml +++ b/Resources/Prototypes/Maps/saltern.yml @@ -18,35 +18,47 @@ overflowJobs: - Passenger availableJobs: - CargoTechnician: [ 2, 2 ] - Passenger: [ -1, -1 ] + #service + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] Bartender: [ 1, 1 ] Botanist: [ 2, 2 ] Chef: [ 1, 1 ] - Clown: [ 1, 1 ] Janitor: [ 1, 1 ] - Mime: [ 1, 1 ] - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] + Chaplain: [ 1, 1 ] + Librarian: [ 1, 1 ] + ServiceWorker: [ 2, 2 ] + #engineering ChiefEngineer: [ 1, 1 ] - StationEngineer: [ 3, 3 ] AtmosphericTechnician: [ 2, 2 ] + SeniorEngineer: [1, 1 ] + StationEngineer: [ 3, 3 ] + TechnicalAssistant: [ 4, 4 ] + #medical ChiefMedicalOfficer: [ 1, 1 ] - MedicalDoctor: [ 2, 2 ] + SeniorPhysician: [ 1, 1 ] Chemist: [ 2, 2 ] + MedicalDoctor: [ 2, 2 ] + MedicalIntern: [ 4, 4 ] + #science ResearchDirector: [ 1, 1 ] + SeniorResearcher: [1, 1 ] Scientist: [ 3, 3 ] ResearchAssistant: [ 2, 2 ] + Borg: [ 2, 2 ] + #security HeadOfSecurity: [ 1, 1 ] + Warden: [ 1, 1 ] + SeniorOfficer: [ 1, 1 ] SecurityOfficer: [ 3, 3 ] - Chaplain: [ 1, 1 ] - Librarian: [ 1, 1 ] - Musician: [ 1, 1 ] - Lawyer: [ 1, 1 ] - SalvageSpecialist: [ 1, 3 ] - Quartermaster: [ 1, 1 ] - TechnicalAssistant: [ 4, 4 ] - MedicalIntern: [ 4, 4 ] - ServiceWorker: [ 2, 2 ] SecurityCadet: [ 4, 4 ] - Warden: [ 1, 1 ] + #supply + Quartermaster: [ 1, 1 ] + SalvageSpecialist: [ 1, 3 ] + CargoTechnician: [ 2, 2 ] + #civillian + Passenger: [ -1, -1 ] + Clown: [ 1, 1 ] + Mime: [ 1, 1 ] + Musician: [ 1, 1 ] + diff --git a/Resources/Prototypes/Objectives/ninjaObjectives.yml b/Resources/Prototypes/Objectives/ninjaObjectives.yml new file mode 100644 index 00000000000..f3df853d28b --- /dev/null +++ b/Resources/Prototypes/Objectives/ninjaObjectives.yml @@ -0,0 +1,40 @@ +- type: objective + id: StealResearchObjective + issuer: spiderclan + requirements: + - !type:NinjaRequirement {} + conditions: + - !type:StealResearchCondition {} + +- type: objective + id: DoorjackObjective + issuer: spiderclan + requirements: + - !type:NinjaRequirement {} + conditions: + - !type:DoorjackCondition {} + +- type: objective + id: SpiderChargeObjective + issuer: spiderclan + requirements: + - !type:NinjaRequirement {} + - !type:SpiderChargeTargetRequirement {} + conditions: + - !type:SpiderChargeCondition {} + +- type: objective + id: TerrorObjective + issuer: spiderclan + requirements: + - !type:NinjaRequirement {} + conditions: + - !type:TerrorCondition {} + +- type: objective + id: SurviveObjective + issuer: spiderclan + requirements: + - !type:NinjaRequirement {} + conditions: + - !type:SurviveCondition {} diff --git a/Resources/Prototypes/Polymorphs/polymorph.yml b/Resources/Prototypes/Polymorphs/polymorph.yml index ccc35ae47a9..fe4f80811f8 100644 --- a/Resources/Prototypes/Polymorphs/polymorph.yml +++ b/Resources/Prototypes/Polymorphs/polymorph.yml @@ -94,3 +94,11 @@ revertOnCrit: false revertOnDeath: true revertOnEat: true + +- type: polymorph + id: TreeMorph + entity: FloraTree01 + forced: true + transferName: true + revertOnDeath: true + diff --git a/Resources/Prototypes/Procedural/biome_markers.yml b/Resources/Prototypes/Procedural/biome_markers.yml index 3eeddea2b39..f1bc60a0694 100644 --- a/Resources/Prototypes/Procedural/biome_markers.yml +++ b/Resources/Prototypes/Procedural/biome_markers.yml @@ -3,6 +3,21 @@ proto: MobLizard groupCount: 5 +- type: biomeMarkerLayer + id: WatchersLavaland + proto: MobWatcherLavaland + groupCount: 3 + +- type: biomeMarkerLayer + id: WatchersIcewing + proto: MobWatcherIcewing + groupCount: 3 + +- type: biomeMarkerLayer + id: WatchersMagmawing + proto: MobWatcherMagmawing + groupCount: 3 + # TODO: Needs to be more robust - type: biomeMarkerLayer id: Xenos diff --git a/Resources/Prototypes/Procedural/biome_templates.yml b/Resources/Prototypes/Procedural/biome_templates.yml index 010041f2c2d..8814f83c369 100644 --- a/Resources/Prototypes/Procedural/biome_templates.yml +++ b/Resources/Prototypes/Procedural/biome_templates.yml @@ -441,13 +441,24 @@ cellularReturnType: Distance2 entities: - WallRockSnow + # Ice tiles + - !type:BiomeTileLayer + tile: FloorIce + threshold: -0.9 + noise: + seed: 0 + noiseType: Cellular + frequency: 0.03 + lacunarity: 2 + fractalType: FBm + octaves: 5 + gain: 1 + cellularDistanceFunction: Euclidean + cellularReturnType: Distance2 - !type:BiomeDummyLayer id: Loot - !type:BiomeTileLayer - threshold: -1.0 - tile: FloorSnow - - !type:BiomeTileLayer - threshold: -0.50 + threshold: -0.7 tile: FloorSnow noise: seed: 0 @@ -457,6 +468,7 @@ - !type:BiomeEntityLayer allowedTiles: - FloorSnow + - FloorIce threshold: 0.95 noise: seed: 3 diff --git a/Resources/Prototypes/Reagents/Consumable/Food/food.yml b/Resources/Prototypes/Reagents/Consumable/Food/food.yml index 70313d44ec9..b9e565f5afc 100644 --- a/Resources/Prototypes/Reagents/Consumable/Food/food.yml +++ b/Resources/Prototypes/Reagents/Consumable/Food/food.yml @@ -1,4 +1,4 @@ -# End points - the eventual goal is that almost all foods and drinks metabolize into either these, or reagents that build up (e.g. theobromine, caffeine,... ) +# End points - the eventual goal is that almost all foods and drinks metabolize into either these, or reagents that build up (e.g. theobromine, caffeine,... ) - type: reagent id: Nutriment #Anything that isn't better suited to vitamin, protein, or sugar. we aren't doing a super in-depth simulator. name: reagent-name-nutriment @@ -6,7 +6,7 @@ desc: reagent-desc-nutriment physicalDesc: reagent-physical-desc-opaque flavor: nutriment - color: "#664330" + color: "#24591F" metabolisms: Food: effects: diff --git a/Resources/Prototypes/Reagents/Consumable/Food/ingredients.yml b/Resources/Prototypes/Reagents/Consumable/Food/ingredients.yml index be61993e7d2..c9dd15f8165 100644 --- a/Resources/Prototypes/Reagents/Consumable/Food/ingredients.yml +++ b/Resources/Prototypes/Reagents/Consumable/Food/ingredients.yml @@ -223,3 +223,21 @@ amount: 2 - !type:PlantAdjustPests amount: 2 + +- type: reagent + id: Butter + name: reagent-name-butter + group: Foods + desc: reagent-desc-butter + physicalDesc: reagent-physical-desc-creamy + flavor: butter + color: yellow + meltingPoint: 32.0 + boilingPoint: 100.0 + recognizable: true + metabolisms: + Food: + effects: + - !type:AdjustReagent + reagent: Nutriment + amount: 0.75 diff --git a/Resources/Prototypes/Reagents/Materials/materials.yml b/Resources/Prototypes/Reagents/Materials/materials.yml index 1c4b00b9068..66033508062 100644 --- a/Resources/Prototypes/Reagents/Materials/materials.yml +++ b/Resources/Prototypes/Reagents/Materials/materials.yml @@ -2,6 +2,7 @@ id: Biomass stackEntity: MaterialBiomass1 name: materials-biomass + unit: materials-unit-piece icon: { sprite: /Textures/Objects/Misc/monkeycube.rsi, state: cube } color: "#8A9A5B" price: 0.1 @@ -18,6 +19,7 @@ id: Cloth stackEntity: MaterialCloth1 name: materials-cloth + unit: materials-unit-roll icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: cloth } color: "#e7e7de" price: 0.05 @@ -26,6 +28,8 @@ id: Durathread stackEntity: MaterialDurathread1 name: materials-durathread + # not exactly a sheet but its sprite suggests it cant be rolled like cloth + unit: materials-unit-sheet icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: durathread } color: "#8291a1" price: 0.15 # 1-1 mix of plastic and cloth. @@ -50,6 +54,7 @@ id: Wood stackEntity: MaterialWoodPlank1 name: materials-wood + unit: materials-unit-plank icon: { sprite: Objects/Materials/materials.rsi, state: wood } color: "#966F33" price: 0.05 @@ -66,6 +71,7 @@ id: Bananium stackEntity: MaterialBananium1 name: materials-bananium + unit: materials-unit-bunch icon: { sprite: Objects/Materials/materials.rsi, state: bananium } color: "#32a852" price: 0.2 @@ -73,6 +79,7 @@ - type: material id: Meaterial # you can't take this pun from me name: materials-meat + unit: materials-unit-slab icon: { sprite: Objects/Materials/Sheets/meaterial.rsi, state: meat } color: "#c53648" price: 0.05 @@ -80,6 +87,7 @@ - type: material id: WebSilk name: materials-web + unit: materials-unit-web icon: { sprite: Objects/Materials/silk.rsi, state: icon } color: "#eeeeee" #eeeeeeeeeeeeeeeeeeeeeeeeeeeeeee price: 0 # Maybe better for it to be priceless, knowing how greedy cargo is. diff --git a/Resources/Prototypes/Reagents/Materials/metals.yml b/Resources/Prototypes/Reagents/Materials/metals.yml index c4425115710..affeb9427ee 100644 --- a/Resources/Prototypes/Reagents/Materials/metals.yml +++ b/Resources/Prototypes/Reagents/Materials/metals.yml @@ -9,6 +9,7 @@ id: Gold stackEntity: IngotGold1 name: materials-gold + unit: materials-unit-bar icon: { sprite: Objects/Materials/ingots.rsi, state: gold } color: "#FFD700" price: 0.2 @@ -17,6 +18,7 @@ id: Silver stackEntity: IngotSilver1 name: materials-silver + unit: materials-unit-bar icon: { sprite: Objects/Materials/ingots.rsi, state: silver } color: "#C0C0C0" price: 0.15 diff --git a/Resources/Prototypes/Reagents/biological.yml b/Resources/Prototypes/Reagents/biological.yml index d507ddd5525..f24f68cde45 100644 --- a/Resources/Prototypes/Reagents/biological.yml +++ b/Resources/Prototypes/Reagents/biological.yml @@ -79,7 +79,7 @@ damage: types: Poison: 4 - - !type:ChemVomit + - !type:ChemVomit probability: 0.25 - type: reagent diff --git a/Resources/Prototypes/Reagents/botany.yml b/Resources/Prototypes/Reagents/botany.yml index 6ab90a1113a..4929dc1cec5 100644 --- a/Resources/Prototypes/Reagents/botany.yml +++ b/Resources/Prototypes/Reagents/botany.yml @@ -145,6 +145,17 @@ Asphyxiation: 1 Burn: 2 Poison: 1 + Medicine: + effects: + - !type:Polymorph + prototype: TreeMorph + conditions: + - !type:OrganType + type: Plant + - !type:ReagentThreshold + min: 80 + + - type: reagent id: WeedKiller name: reagent-name-weed-killer diff --git a/Resources/Prototypes/Reagents/medicine.yml b/Resources/Prototypes/Reagents/medicine.yml index 3141cdf590c..3342444759d 100644 --- a/Resources/Prototypes/Reagents/medicine.yml +++ b/Resources/Prototypes/Reagents/medicine.yml @@ -547,6 +547,13 @@ physicalDesc: reagent-physical-desc-acrid flavor: medicine color: "#c8ff75" + plantMetabolism: + - !type:PlantAdjustToxins + amount: 6 + - !type:PlantPhalanximine + conditions: + - !type:ReagentThreshold + min: 4 metabolisms: Medicine: effects: diff --git a/Resources/Prototypes/Reagents/toxins.yml b/Resources/Prototypes/Reagents/toxins.yml index 82e05a8f0d1..2f926f06302 100644 --- a/Resources/Prototypes/Reagents/toxins.yml +++ b/Resources/Prototypes/Reagents/toxins.yml @@ -140,6 +140,29 @@ - !type:Emote emote: Scream probability: 0.3 + +- type: reagent + id: FerrochromicAcid + name: reagent-name-ferrochromic-acid + group: Toxins + desc: reagent-desc-ferrochromic-acid + flavor: sour + color: "#48b3b8" + physicalDesc: reagent-physical-desc-ferrous + slippery: false + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: -1.5 + - !type:HealthChange + scaleByQuantity: true + ignoreResistances: true + damage: + types: + Heat: 2.5 + Caustic: 1 + - type: reagent id: FluorosulfuricAcid name: reagent-name-fluorosulfuric-acid @@ -179,6 +202,7 @@ - !type:Emote emote: Scream probability: 0.25 + - type: reagent id: SulfuricAcid name: reagent-name-sulfuric-acid diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/atmos_binary.yml b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/atmos_binary.yml index eee5c6fbc43..63ae3249100 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/atmos_binary.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/atmos_binary.yml @@ -49,7 +49,7 @@ - to: radiator steps: - material: Steel - amount: 8 + amount: 2 doAfter: 1 - node: pressurepump @@ -176,7 +176,7 @@ completed: - !type:SpawnPrototype prototype: SheetSteel1 - amount: 8 + amount: 2 - !type:DeleteEntity steps: - tool: Screwing diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/atmos_pipes.yml b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/atmos_pipes.yml index 2692319b344..6c8439ff4e4 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/atmos_pipes.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/atmos_pipes.yml @@ -7,31 +7,31 @@ - to: half steps: - material: Steel - amount: 2 + amount: 1 doAfter: 1 - to: straight steps: - material: Steel - amount: 2 + amount: 1 doAfter: 1 - to: bend steps: - material: Steel - amount: 2 + amount: 1 doAfter: 1 - to: tjunction steps: - material: Steel - amount: 2 + amount: 1 doAfter: 1 - to: fourway steps: - material: Steel - amount: 2 + amount: 1 doAfter: 1 - node: half @@ -44,7 +44,7 @@ completed: - !type:SpawnPrototype prototype: SheetSteel1 - amount: 2 + amount: 1 - !type:DeleteEntity steps: - tool: Welding @@ -60,7 +60,7 @@ completed: - !type:SpawnPrototype prototype: SheetSteel1 - amount: 2 + amount: 1 - !type:DeleteEntity steps: - tool: Welding @@ -76,7 +76,7 @@ completed: - !type:SpawnPrototype prototype: SheetSteel1 - amount: 2 + amount: 1 - !type:DeleteEntity steps: - tool: Welding @@ -92,7 +92,7 @@ completed: - !type:SpawnPrototype prototype: SheetSteel1 - amount: 2 + amount: 1 - !type:DeleteEntity steps: - tool: Welding @@ -108,7 +108,7 @@ completed: - !type:SpawnPrototype prototype: SheetSteel1 - amount: 2 + amount: 1 - !type:DeleteEntity steps: - tool: Welding diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/station_maps.yml b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/station_maps.yml index b6f34264ec9..43a111ec7f3 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/station_maps.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/station_maps.yml @@ -67,8 +67,6 @@ edges: - to: wired conditions: - - !type:AllWiresCut {} - - !type:WirePanel {} - !type:ContainerNotEmpty container: board completed: diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/weapons/upgraded_chimp.yml b/Resources/Prototypes/Recipes/Construction/Graphs/weapons/upgraded_chimp.yml new file mode 100644 index 00000000000..eecd78cc13d --- /dev/null +++ b/Resources/Prototypes/Recipes/Construction/Graphs/weapons/upgraded_chimp.yml @@ -0,0 +1,13 @@ +- type: constructionGraph + id: UpgradeWeaponPistolCHIMP + start: start + graph: + - node: start + edges: + - to: upgraded + steps: + - tag: WeaponPistolCHIMPUpgradeKit + doAfter: 2 + + - node: upgraded + entity: WeaponPistolCHIMPUpgraded \ No newline at end of file diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/web.yml b/Resources/Prototypes/Recipes/Construction/Graphs/web.yml index 0a9186207e2..4eb368f5ab7 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/web.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/web.yml @@ -1,35 +1,135 @@ - type: constructionGraph - id: WallWeb + id: WebStructures start: start graph: - - node: start - edges: - - to: wall - completed: - - !type:SnapToGrid - southRotation: true - steps: - - material: WebSilk - amount: 4 - doAfter: 3 - - - node: wall - entity: WallWeb + - node: start + actions: + - !type:DestroyEntity {} + edges: + - to: wall + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: WebSilk + amount: 4 + doAfter: 3 -- type: constructionGraph - id: TableWeb - start: start - graph: - - node: start - edges: - - to: table - completed: - - !type:SnapToGrid - southRotation: true - steps: - - material: WebSilk - amount: 4 - doAfter: 3 - - - node: table - entity: TableWeb + - to: table + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: WebSilk + amount: 4 + doAfter: 3 + + - to: bed + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: WebSilk + amount: 6 + doAfter: 3 + + - to: chair + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: WebSilk + amount: 3 + doAfter: 3 + + - to: crate + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: WebSilk + amount: 10 + doAfter: 6 + + - to: door + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: WebSilk + amount: 8 + doAfter: 6 + + + # Deconstruction is down here + - node: wall + entity: WallWeb + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: MaterialWebSilk1 + amount: 4 + steps: + - tool: Cutting + doAfter: 2 + + - node: table + entity: TableWeb + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: MaterialWebSilk1 + amount: 4 + steps: + - tool: Cutting + doAfter: 2 + + - node: bed + entity: WebBed + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: MaterialWebSilk1 + amount: 5 # One silk loss, cry + steps: + - tool: Cutting + doAfter: 2 + + - node: chair + entity: ChairWeb + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: MaterialWebSilk1 + amount: 3 + steps: + - tool: Cutting + doAfter: 2 + + - node: crate + entity: CrateWeb + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: MaterialWebSilk1 + amount: 7 + steps: + - tool: Cutting + doAfter: 3 + + - node: door + entity: WebDoor + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: MaterialWebSilk1 + amount: 6 + steps: + - tool: Cutting + doAfter: 3 diff --git a/Resources/Prototypes/Recipes/Construction/web.yml b/Resources/Prototypes/Recipes/Construction/web.yml index 3d0f9cf484f..2d61ac15158 100644 --- a/Resources/Prototypes/Recipes/Construction/web.yml +++ b/Resources/Prototypes/Recipes/Construction/web.yml @@ -1,13 +1,13 @@ - type: construction name: web wall id: WallWeb - graph: WallWeb + graph: WebStructures startNode: start targetNode: wall category: construction-category-structures description: A fairly weak yet silky smooth wall. icon: - sprite: /Textures/Structures/Walls/web.rsi + sprite: Structures/Walls/web.rsi state: full objectType: Structure placementMode: SnapgridCenter @@ -19,13 +19,13 @@ - type: construction name: web table id: TableWeb - graph: TableWeb + graph: WebStructures startNode: start targetNode: table - category: construction-category-structures + category: construction-category-furniture description: Essential for any serious web development. icon: - sprite: /Textures/Structures/Furniture/Web/table.rsi + sprite: Structures/Furniture/Tables/web.rsi state: full objectType: Structure placementMode: SnapgridCenter @@ -33,3 +33,69 @@ canBuildInImpassable: false conditions: - !type:TileNotBlocked + +- type: construction + name: web bed + id: WebBed + graph: WebStructures + startNode: start + targetNode: bed + category: construction-category-furniture + description: Fun fact, you eating spiders in your sleep is false. + icon: + sprite: Structures/Web/bed.rsi + state: icon + objectType: Structure + placementMode: SnapgridCenter + canRotate: false + canBuildInImpassable: false + conditions: + - !type:TileNotBlocked + +- type: construction + name: web chair + id: ChairWeb + graph: WebStructures + startNode: start + targetNode: chair + category: construction-category-furniture + description: You want to get serious about web development? Get this chair! + icon: + sprite: Structures/Web/chair.rsi + state: icon + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: false + +- type: construction + name: web crate + id: CrateWeb + graph: WebStructures + startNode: start + targetNode: crate + category: construction-category-storage + description: For containment of food and other things. Not as durable as a normal crate, and can't be welded shut. + icon: + sprite: Structures/Storage/Crates/web.rsi + state: icon + objectType: Structure + placementMode: SnapgridCenter + canRotate: false + canBuildInImpassable: false + +- type: construction + name: web door + id: WebDoor + graph: WebStructures + startNode: start + targetNode: door + category: construction-category-structures + description: A manual door made from web, normally placed right before a pit or trap. + icon: + sprite: Structures/Doors/web_door.rsi + state: closed + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: false + conditions: + - !type:TileNotBlocked diff --git a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml index 6f810d86974..fc0e97b5aaf 100644 --- a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml +++ b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml @@ -568,7 +568,6 @@ Flour: 15 Egg: 6 solids: - FoodPlate: 1 FoodButter: 1 - type: microwaveMealRecipe @@ -1224,6 +1223,19 @@ UncookedAnimalProteins: 6 solids: FoodDoughSlice: 3 + +- type: microwaveMealRecipe + id: RecipeBrownies + name: brownie recipe + result: FoodBakedBrownieBatch + time: 25 + reagents: + Flour: 15 + Sugar: 30 + solids: + FoodButter: 2 + FoodSnackChocolateBar: 2 + FoodEgg: 3 #Donks i guess - type: microwaveMealRecipe @@ -1639,4 +1651,27 @@ result: FoodSpaceshroomCooked time: 5 solids: - FoodSpaceshroom: 1 \ No newline at end of file + FoodSpaceshroom: 1 + +#cannabis +- type: microwaveMealRecipe + id: RecipeCannabisButter + name: cannabis butter recipe + result: FoodCannabisButter + time: 15 + solids: + FoodButter: 1 + LeavesCannabis: 6 + +- type: microwaveMealRecipe + id: RecipeCannabisBrownies + name: cannabis brownie recipe + result: FoodBakedCannabisBrownieBatch + time: 25 + reagents: + Flour: 15 + Sugar: 30 + solids: + FoodCannabisButter: 2 + FoodSnackChocolateBar: 2 + FoodEgg: 3 diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/bots/supplybot.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/bots/supplybot.yml new file mode 100644 index 00000000000..efabb849bbc --- /dev/null +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/bots/supplybot.yml @@ -0,0 +1,23 @@ +- type: constructionGraph + id: SupplyBot + start: start + graph: + - node: start + edges: + - to: bot + steps: + - tag: ProximitySensor + icon: + sprite: Objects/Misc/proximity_sensor.rsi + state: icon + name: proximity sensor + - tag: BorgHead + icon: + sprite: Objects/Specific/Robotics/cyborg_parts.rsi + state: borg_head + name: borg head + doAfter: 1 + - material: Steel + amount: 10 + - node: bot + entity: MobSupplyBot diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/storage/cratesecure.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/storage/cratesecure.yml index 0ac6888f17e..f9875e4e2d2 100644 --- a/Resources/Prototypes/Recipes/Crafting/Graphs/storage/cratesecure.yml +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/storage/cratesecure.yml @@ -8,6 +8,8 @@ steps: - material: Steel amount: 5 + - material: Cable + amount: 2 doAfter: 5 @@ -19,13 +21,14 @@ - tool: Screwing doAfter: 5 conditions: - - !type:StorageWelded - welded: false - !type:Locked locked: false completed: - !type:SpawnPrototype prototype: SheetSteel1 amount: 5 + - !type:SpawnPrototype + prototype: CableApcStack1 + amount: 2 - !type:EmptyAllContainers - !type:DeleteEntity diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/toys.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/toys.yml index 97eae37807f..56e31bbe8d1 100644 --- a/Resources/Prototypes/Recipes/Crafting/Graphs/toys.yml +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/toys.yml @@ -19,3 +19,20 @@ doAfter: 10 - node: plushie entity: PlushieGhostRevenant + +- type: constructionGraph + id: ClothingOuterSuitIan + start: start + graph: + - node: start + edges: + - to: suit + steps: + - tag: HideCorgi + name: corgi hide + icon: + sprite: Objects/Materials/materials.rsi + state: corgihide + doAfter: 5 + - node: suit + entity: ClothingOuterSuitIan diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/web.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/web.yml index 13aa4eb6b46..2bde191cdb2 100644 --- a/Resources/Prototypes/Recipes/Crafting/Graphs/web.yml +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/web.yml @@ -1,15 +1,53 @@ - type: constructionGraph - id: TileWeb + id: WebObjects start: start graph: - - node: start - edges: - - to: webtile - completed: - - !type:SetStackCount - amount: 2 - steps: - - material: WebSilk - amount: 1 - - node: webtile - entity: FloorTileItemWeb + - node: start + edges: + - to: tile + completed: + - !type:SetStackCount + amount: 2 + steps: + - material: WebSilk + amount: 1 + + - to: coat + steps: + - material: WebSilk + amount: 5 + doAfter: 4 + + - to: jumpsuit + steps: + - material: WebSilk + amount: 8 + doAfter: 6 + + - to: jumpskirt + steps: + - material: WebSilk + amount: 8 + doAfter: 6 + + - to: cloth + steps: + - material: WebSilk + amount: 4 + doAfter: 6 + + # Deconstruction + - node: tile + entity: FloorTileItemWeb + + - node: coat + entity: ClothingOuterWinterWeb + + - node: jumpsuit + entity: ClothingUniformJumpsuitWeb + + - node: jumpskirt + entity: ClothingUniformJumpskirtWeb + + - node: cloth + entity: MaterialCloth1 diff --git a/Resources/Prototypes/Recipes/Crafting/bots.yml b/Resources/Prototypes/Recipes/Crafting/bots.yml index 8ba3242a5e5..55b907a38e9 100644 --- a/Resources/Prototypes/Recipes/Crafting/bots.yml +++ b/Resources/Prototypes/Recipes/Crafting/bots.yml @@ -37,6 +37,19 @@ sprite: Mobs/Silicon/Bots/taxibot.rsi state: taxibot +- type: construction + name: supplybot + id: supplybot + graph: SupplyBot + startNode: start + targetNode: bot + category: construction-category-utilities + objectType: Item + description: This bot can be loaded with cargo to make deliveries. + icon: + sprite: Mobs/Silicon/Bots/supplybot.rsi + state: supplybot + - type: construction name: jonkbot id: jonkbot diff --git a/Resources/Prototypes/Recipes/Crafting/crates.yml b/Resources/Prototypes/Recipes/Crafting/crates.yml index c4980ed95dd..4177b3fa2a6 100644 --- a/Resources/Prototypes/Recipes/Crafting/crates.yml +++ b/Resources/Prototypes/Recipes/Crafting/crates.yml @@ -20,6 +20,17 @@ icon: { sprite: Structures/Storage/Crates/generic.rsi, state: icon } objectType: Structure +- type: construction + name: secure crate + id: CrateSecure + graph: CrateSecure + startNode: start + targetNode: cratesecure + category: construction-category-storage + description: A secure metal crate for storing things. Requires no special access, can be configured with an Access Configurator. + icon: { sprite: Structures/Storage/Crates/secure.rsi, state: icon } + objectType: Structure + - type: construction name: plastic crate id: CratePlastic diff --git a/Resources/Prototypes/Recipes/Crafting/toys.yml b/Resources/Prototypes/Recipes/Crafting/toys.yml index 2c591754161..4fd91bdb69d 100644 --- a/Resources/Prototypes/Recipes/Crafting/toys.yml +++ b/Resources/Prototypes/Recipes/Crafting/toys.yml @@ -10,3 +10,16 @@ icon: sprite: Mobs/Ghosts/revenant.rsi state: icon + +- type: construction + name: ian suit + id: ClothingOuterSuitIan + graph: ClothingOuterSuitIan + startNode: start + targetNode: suit + category: construction-category-misc + objectType: Item + description: Make yourself look just like Ian! + icon: + sprite: Clothing/OuterClothing/Suits/iansuit.rsi + state: icon diff --git a/Resources/Prototypes/Recipes/Crafting/web.yml b/Resources/Prototypes/Recipes/Crafting/web.yml index 0747806de2c..0cd8b22c0ac 100644 --- a/Resources/Prototypes/Recipes/Crafting/web.yml +++ b/Resources/Prototypes/Recipes/Crafting/web.yml @@ -1,10 +1,64 @@ - type: construction name: web tile id: TileWeb - graph: TileWeb + graph: WebObjects startNode: start - targetNode: webtile + targetNode: tile category: construction-category-tiles description: "Nice and smooth." - icon: { sprite: Objects/Tiles/web.rsi, state: icon } + icon: + sprite: Objects/Tiles/web.rsi + state: icon + objectType: Item + +- type: construction + name: web winter coat + id: ClothingOuterWinterWeb + graph: WebObjects + startNode: start + targetNode: coat + category: construction-category-clothing + description: "Surprisingly warm and durable." + icon: + sprite: Clothing/OuterClothing/WinterCoats/coatweb.rsi + state: icon + objectType: Item + +- type: construction + name: web jumpsuit + id: ClothingUniformJumpsuitWeb + graph: WebObjects + startNode: start + targetNode: jumpsuit + category: construction-category-clothing + description: "At least it's something." + icon: + sprite: Clothing/Uniforms/Jumpsuit/web.rsi + state: icon + objectType: Item + +- type: construction + name: web jumpskirt + id: ClothingUniformJumpskirtWeb + graph: WebObjects + startNode: start + targetNode: jumpskirt + category: construction-category-clothing + description: "At least it's something." + icon: + sprite: Clothing/Uniforms/Jumpskirt/web.rsi + state: icon + objectType: Item + +- type: construction + name: silk woven cloth + id: SilkWovenCloth + graph: WebObjects + startNode: start + targetNode: cloth + category: construction-category-materials + description: "Feels just like cloth, strangely enough." + icon: + sprite: Objects/Materials/materials.rsi + state: cloth_3 objectType: Item diff --git a/Resources/Prototypes/Recipes/Lathes/1 sheet = 100cm3 of material.txt b/Resources/Prototypes/Recipes/Lathes/1 sheet = 100cm3 of material.txt deleted file mode 100644 index 14698849a64..00000000000 --- a/Resources/Prototypes/Recipes/Lathes/1 sheet = 100cm3 of material.txt +++ /dev/null @@ -1 +0,0 @@ -1 sheet = 100cm3 of material \ No newline at end of file diff --git a/Resources/Prototypes/Recipes/Lathes/clothing.yml b/Resources/Prototypes/Recipes/Lathes/clothing.yml index 65496404564..fea18760b76 100644 --- a/Resources/Prototypes/Recipes/Lathes/clothing.yml +++ b/Resources/Prototypes/Recipes/Lathes/clothing.yml @@ -81,6 +81,20 @@ Cloth: 300 Durathread: 100 +- type: latheRecipe + id: ClothingUniformJumpsuitChiefEngineerTurtle + result: ClothingUniformJumpsuitChiefEngineerTurtle + completetime: 4 + materials: + Cloth: 300 + +- type: latheRecipe + id: ClothingUniformJumpskirtChiefEngineerTurtle + result: ClothingUniformJumpskirtChiefEngineerTurtle + completetime: 4 + materials: + Cloth: 300 + - type: latheRecipe id: ClothingUniformJumpsuitChaplain result: ClothingUniformJumpsuitChaplain diff --git a/Resources/Prototypes/Recipes/Lathes/cooking.yml b/Resources/Prototypes/Recipes/Lathes/cooking.yml index 276fefd5626..b87522e9d35 100644 --- a/Resources/Prototypes/Recipes/Lathes/cooking.yml +++ b/Resources/Prototypes/Recipes/Lathes/cooking.yml @@ -34,3 +34,31 @@ completetime: 0.8 materials: Glass: 50 + +- type: latheRecipe + id: FoodPlate + result: FoodPlate + completetime: 0.8 + materials: + Glass: 100 + +- type: latheRecipe + id: FoodPlateSmall + result: FoodPlateSmall + completetime: 0.4 + materials: + Glass: 50 + +- type: latheRecipe + id: FoodPlatePlastic + result: FoodPlatePlastic + completetime: 0.8 + materials: + Plastic: 100 + +- type: latheRecipe + id: FoodPlateSmallPlastic + result: FoodPlateSmallPlastic + completetime: 0.4 + materials: + Plastic: 50 diff --git a/Resources/Prototypes/Recipes/Lathes/electronics.yml b/Resources/Prototypes/Recipes/Lathes/electronics.yml index b4fe4a8788f..77f392eb2e6 100644 --- a/Resources/Prototypes/Recipes/Lathes/electronics.yml +++ b/Resources/Prototypes/Recipes/Lathes/electronics.yml @@ -440,21 +440,29 @@ Glass: 900 - type: latheRecipe - id: GeneratorPlasmaMachineCircuitboard - result: GeneratorPlasmaMachineCircuitboard + id: PortableGeneratorPacmanMachineCircuitboard + result: PortableGeneratorPacmanMachineCircuitboard completetime: 4 materials: Steel: 350 Glass: 350 - type: latheRecipe - id: GeneratorUraniumMachineCircuitboard - result: GeneratorUraniumMachineCircuitboard + id: PortableGeneratorSuperPacmanMachineCircuitboard + result: PortableGeneratorSuperPacmanMachineCircuitboard completetime: 4 materials: Steel: 350 Glass: 350 +- type: latheRecipe + id: PortableGeneratorJrPacmanMachineCircuitboard + result: PortableGeneratorJrPacmanMachineCircuitboard + completetime: 4 + materials: + Steel: 50 + Glass: 350 + - type: latheRecipe id: WallmountGeneratorElectronics result: WallmountGeneratorElectronics diff --git a/Resources/Prototypes/Recipes/Lathes/robotics.yml b/Resources/Prototypes/Recipes/Lathes/robotics.yml index 1ace3c49298..6e56988ea5c 100644 --- a/Resources/Prototypes/Recipes/Lathes/robotics.yml +++ b/Resources/Prototypes/Recipes/Lathes/robotics.yml @@ -399,6 +399,16 @@ Plastic: 250 Gold: 50 +- type: latheRecipe + id: BorgModuleConstruction + result: BorgModuleConstruction + completetime: 3 + materials: + Steel: 500 + Glass: 750 + Plastic: 250 + Gold: 50 + - type: latheRecipe id: BorgModuleGasAnalyzer result: BorgModuleGasAnalyzer @@ -529,6 +539,16 @@ Plastic: 250 Gold: 50 +- type: latheRecipe + id: BorgModuleHarvesting + result: BorgModuleHarvesting + completetime: 3 + materials: + Steel: 500 + Glass: 750 + Plastic: 250 + Gold: 50 + - type: latheRecipe id: BorgModuleClowning result: BorgModuleClowning diff --git a/Resources/Prototypes/Recipes/Lathes/salvage.yml b/Resources/Prototypes/Recipes/Lathes/salvage.yml new file mode 100644 index 00000000000..57ae75b6175 --- /dev/null +++ b/Resources/Prototypes/Recipes/Lathes/salvage.yml @@ -0,0 +1,17 @@ +- type: latheRecipe + id: Fulton + result: Fulton1 + completetime: 5 + materials: + Steel: 200 + # TODO: Need better sources of cloth as otherwise these will never get made. + # Cloth: 200 + +- type: latheRecipe + id: FultonBeacon + result: FultonBeacon + completetime: 5 + materials: + Steel: 1000 + Glass: 500 + # If they get spammed make it cost silver. diff --git a/Resources/Prototypes/Recipes/Lathes/security.yml b/Resources/Prototypes/Recipes/Lathes/security.yml index adfd9f25be5..50940deab1b 100644 --- a/Resources/Prototypes/Recipes/Lathes/security.yml +++ b/Resources/Prototypes/Recipes/Lathes/security.yml @@ -207,27 +207,6 @@ Steel: 10 Glass: 5 -- type: latheRecipe - id: CartridgeAnomalousParticleDelta - result: CartridgeAnomalousParticleDelta - completetime: 2 - materials: - Plastic: 25 - -- type: latheRecipe - id: CartridgeAnomalousParticleEpsilon - result: CartridgeAnomalousParticleEpsilon - completetime: 2 - materials: - Plastic: 25 - -- type: latheRecipe - id: CartridgeAnomalousParticleZeta - result: CartridgeAnomalousParticleZeta - completetime: 2 - materials: - Plastic: 25 - - type: latheRecipe id: TargetHuman result: TargetHuman @@ -252,6 +231,27 @@ materials: Steel: 500 +- type: latheRecipe + id: MagazinePistol + result: MagazinePistol + completetime: 5 + materials: + Steel: 100 + +- type: latheRecipe + id: MagazinePistolSubMachineGun + result: MagazinePistolSubMachineGun + completetime: 5 + materials: + Steel: 300 + +- type: latheRecipe + id: MagazinePistolSubMachineGunTopMounted + result: MagazinePistolSubMachineGunTopMounted + completetime: 5 + materials: + Steel: 300 + - type: latheRecipe id: MagazineBoxPistol result: MagazineBoxPistol @@ -282,6 +282,20 @@ Steel: 350 Plastic: 300 +- type: latheRecipe + id: MagazineRifle + result: MagazineRifle + completetime: 5 + materials: + Steel: 375 + +- type: latheRecipe + id: MagazineLightRifle + result: MagazineLightRifle + completetime: 5 + materials: + Steel: 375 + - type: latheRecipe id: MagazineBoxRifle result: MagazineBoxRifle diff --git a/Resources/Prototypes/Recipes/Lathes/sheet.yml b/Resources/Prototypes/Recipes/Lathes/sheet.yml index ea17d46129f..cbfc0ca4527 100644 --- a/Resources/Prototypes/Recipes/Lathes/sheet.yml +++ b/Resources/Prototypes/Recipes/Lathes/sheet.yml @@ -69,6 +69,34 @@ materials: Plasma: 3000 +- type: latheRecipe + id: SheetUranium30 + result: SheetUranium + completetime: 2 + materials: + Uranium: 3000 + +- type: latheRecipe + id: IngotGold30 + result: IngotGold + completetime: 2 + materials: + Gold: 3000 + +- type: latheRecipe + id: IngotSilver30 + result: IngotSilver + completetime: 2 + materials: + Silver: 3000 + +- type: latheRecipe + id: MaterialBananium10 + result: MaterialBananium + completetime: 2 + materials: + Bananium: 3000 + - type: latheRecipe id: SheetUranium1 result: SheetUranium1 diff --git a/Resources/Prototypes/Recipes/Lathes/tools.yml b/Resources/Prototypes/Recipes/Lathes/tools.yml index 69449eb875a..d6f3e9a59d6 100644 --- a/Resources/Prototypes/Recipes/Lathes/tools.yml +++ b/Resources/Prototypes/Recipes/Lathes/tools.yml @@ -39,21 +39,21 @@ result: CableApcStack1 completetime: 2 materials: - Steel: 100 + Steel: 30 - type: latheRecipe id: CableMVStack result: CableMVStack1 completetime: 2 materials: - Steel: 150 + Steel: 30 - type: latheRecipe id: CableHVStack result: CableHVStack1 completetime: 2 materials: - Steel: 200 + Steel: 30 - type: latheRecipe id: Crowbar diff --git a/Resources/Prototypes/Recipes/Reactions/drinks.yml b/Resources/Prototypes/Recipes/Reactions/drinks.yml index 6fe0cdecb22..60f4c08dccd 100644 --- a/Resources/Prototypes/Recipes/Reactions/drinks.yml +++ b/Resources/Prototypes/Recipes/Reactions/drinks.yml @@ -326,9 +326,11 @@ Rum: amount: 1 Water: + amount: 2 + Sugar: amount: 1 products: - Grog: 2 + Grog: 4 - type: reaction id: HippiesDelight @@ -890,4 +892,4 @@ Sugar: amount: 1 products: - Cola: 4 \ No newline at end of file + Cola: 4 diff --git a/Resources/Prototypes/Research/arsenal.yml b/Resources/Prototypes/Research/arsenal.yml index 1793f62d4bd..3b5a5d67bbf 100644 --- a/Resources/Prototypes/Research/arsenal.yml +++ b/Resources/Prototypes/Research/arsenal.yml @@ -53,17 +53,16 @@ - ExplosivePayload - type: technology - id: AdvancedLaserManipulation - name: research-technology-advanced-laser-manipulation + id: WeaponizedLaserManipulation + name: research-technology-weaponized-laser-manipulation icon: - sprite: Objects/Weapons/Guns/Battery/advancedlasergun.rsi + sprite: Objects/Weapons/Guns/Battery/laser_gun.rsi state: icon discipline: Arsenal tier: 1 - cost: 10000 + cost: 7500 recipeUnlocks: - WeaponLaserCarbine - - WeaponAdvancedLaser - type: technology id: NonlethalAmmunition @@ -136,3 +135,15 @@ cost: 15000 recipeUnlocks: - WeaponTaser + +- type: technology + id: PortableMicrofusionWeaponry + name: research-technology-portable-microfusion-weaponry + icon: + sprite: Objects/Weapons/Guns/Battery/advancedlasergun.rsi + state: icon + discipline: Arsenal + tier: 3 + cost: 15000 + recipeUnlocks: + - WeaponAdvancedLaser diff --git a/Resources/Prototypes/Research/civilianservices.yml b/Resources/Prototypes/Research/civilianservices.yml index 2defe88b9e7..6f7deb740fc 100644 --- a/Resources/Prototypes/Research/civilianservices.yml +++ b/Resources/Prototypes/Research/civilianservices.yml @@ -1,4 +1,4 @@ -# Tier 1 +# Tier 1 - type: technology id: JanitorialEquipment @@ -39,6 +39,7 @@ cost: 5000 recipeUnlocks: - BorgModuleGardening + - BorgModuleHarvesting - SeedExtractorMachineCircuitboard - HydroponicsTrayMachineCircuitboard diff --git a/Resources/Prototypes/Research/experimental.yml b/Resources/Prototypes/Research/experimental.yml index 3b80c4ccaf9..c1730bb15ea 100644 --- a/Resources/Prototypes/Research/experimental.yml +++ b/Resources/Prototypes/Research/experimental.yml @@ -108,9 +108,6 @@ cost: 10000 recipeUnlocks: - WeaponPistolCHIMP - - CartridgeAnomalousParticleDelta - - CartridgeAnomalousParticleEpsilon - - CartridgeAnomalousParticleZeta technologyPrerequisites: - BasicAnomalousResearch diff --git a/Resources/Prototypes/Research/industrial.yml b/Resources/Prototypes/Research/industrial.yml index de6cf53abba..d5e82e32d19 100644 --- a/Resources/Prototypes/Research/industrial.yml +++ b/Resources/Prototypes/Research/industrial.yml @@ -60,13 +60,14 @@ name: research-technology-power-generation icon: sprite: Structures/Power/Generation/portable_generator.rsi - state: portgen0_1 + state: portgen0 discipline: Industrial tier: 1 cost: 7500 recipeUnlocks: - - GeneratorPlasmaMachineCircuitboard - - GeneratorUraniumMachineCircuitboard + - PortableGeneratorPacmanMachineCircuitboard + - PortableGeneratorSuperPacmanMachineCircuitboard + - PortableGeneratorJrPacmanMachineCircuitboard - PowerComputerCircuitboard #the actual solar panel itself should be in here - SolarControlComputerCircuitboard - SolarTrackerElectronics diff --git a/Resources/Prototypes/Roles/Antags/ninja.yml b/Resources/Prototypes/Roles/Antags/ninja.yml new file mode 100644 index 00000000000..a7492bd1b16 --- /dev/null +++ b/Resources/Prototypes/Roles/Antags/ninja.yml @@ -0,0 +1,6 @@ +- type: antag + id: SpaceNinja + name: roles-antag-space-ninja-name + antagonist: true + setPreference: false + objective: roles-antag-space-ninja-objective diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml b/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml index 43e0e7dc974..862a7c25a80 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml @@ -34,3 +34,15 @@ innerclothingskirt: ClothingUniformJumpskirtMime satchel: ClothingBackpackSatchelMimeFilled duffelbag: ClothingBackpackDuffelMimeFilled + +- type: entity + id: ActionMimeInvisibleWall + name: Create Invisible Wall + description: Create an invisible wall in front of you, if placeable there. + noSpawn: true + components: + - type: InstantAction + priority: -1 + useDelay: 30 + icon: Structures/Walls/solid.rsi/full.png + event: !type:InvisibleWallActionEvent diff --git a/Resources/Prototypes/Roles/Jobs/Command/captain.yml b/Resources/Prototypes/Roles/Jobs/Command/captain.yml index b07dae1284f..9cd09377789 100644 --- a/Resources/Prototypes/Roles/Jobs/Command/captain.yml +++ b/Resources/Prototypes/Roles/Jobs/Command/captain.yml @@ -37,7 +37,7 @@ equipment: jumpsuit: ClothingUniformJumpsuitCaptain back: ClothingBackpackCaptainFilled - shoes: ClothingShoesColorBlack + shoes: ClothingShoesBootsLaceup head: ClothingHeadHatCaptain eyes: ClothingEyesGlassesSunglasses gloves: ClothingHandsGlovesCaptain diff --git a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml index 4861cee2d21..367ffb9deae 100644 --- a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml +++ b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml @@ -23,16 +23,23 @@ - type: startingGear id: SpaceNinjaGear equipment: - jumpsuit: ClothingUniformJumpsuitColorBlack - back: ClothingBackpackFilled + jumpsuit: ClothingUniformJumpsuitNinja + # belt holds katana so satchel has the tools for sabotaging things + back: ClothingBackpackSatchelTools + mask: ClothingMaskNinja head: ClothingHeadHelmetSpaceNinja + eyes: ClothingEyesVisorNinja gloves: ClothingHandsGlovesSpaceNinja - outerClothing: ClothingOuterSuitSpaceninja + outerClothing: ClothingOuterSuitSpaceNinja shoes: ClothingShoesSpaceNinja - id: PassengerPDA - innerclothingskirt: ClothingUniformJumpskirtColorBlack - satchel: ClothingBackpackSatchelFilled - duffelbag: ClothingBackpackDuffelFilled + id: AgentIDCard + ears: ClothingHeadsetGrey + pocket1: SpiderCharge + pocket2: PinpointerStation + belt: EnergyKatana + suitstorage: YellowOxygenTankFilled + inhand: + left hand: JetpackBlackFilled #Deathsquad Outfit - type: startingGear @@ -53,7 +60,7 @@ innerclothingskirt: ClothingUniformJumpskirtColorBlack satchel: ClothingBackpackDuffelSyndicateAmmo duffelbag: ClothingBackpackDuffelSyndicateAmmo - + # Syndicate Operative Outfit - Monkey - type: startingGear id: SyndicateOperativeGearMonkey @@ -103,7 +110,7 @@ gloves: ClothingHandsGlovesCombat outerClothing: ClothingOuterHardsuitSyndie shoes: ClothingShoesBootsCombatFilled - id: AgentIDCard + id: NukieAgentIDCard pocket1: DoubleEmergencyOxygenTankFilled pocket2: BaseUplinkRadio40TC belt: ClothingBeltMilitaryWebbing @@ -128,6 +135,8 @@ pocket1: DoubleEmergencyOxygenTankFilled pocket2: BaseUplinkRadio40TC belt: ClothingBeltMilitaryWebbing + inhand: + right hand: NukeOpsDeclarationOfWar innerclothingskirt: ClothingUniformJumpskirtOperative satchel: ClothingBackpackDuffelSyndicateOperative duffelbag: ClothingBackpackDuffelSyndicateOperative @@ -138,7 +147,7 @@ equipment: jumpsuit: ClothingUniformJumpsuitOperative back: ClothingBackpackDuffelSyndicateOperativeMedic - mask: ClothingMaskBreathMedicalSecurity + mask: ClothingMaskGasSyndicate eyes: ClothingEyesHudMedical ears: ClothingHeadsetAltSyndicate gloves: ClothingHandsGlovesCombat @@ -271,9 +280,23 @@ id: MobMonkeyGear equipment: head: ClothingHeadHatTophat + ears: ClothingHeadsetService jumpsuit: ClothingUniformJumpsuitJacketMonkey id: BartenderIDCard +# DeathMatch Gear + +- type: startingGear + id: DeathMatchGear + equipment: + jumpsuit: ClothingUniformJumpsuitColorWhite + shoes: ClothingShoesBootsJack + ears: ClothingHeadsetGrey + gloves: ClothingHandsGlovesFingerless + innerclothingskirt: ClothingUniformJumpskirtColorWhite + inhand: + left hand: WeaponMeleeToolboxRobust + #Brigmedic - type: startingGear @@ -281,7 +304,7 @@ equipment: jumpsuit: ClothingUniformJumpsuitBrigmedic outerClothing: ClothingOuterCoatAMG - back: ClothingBackpackBrigmedicFilled + back: ClothingBackpackBrigmedic shoes: ClothingShoesColorRed gloves: ClothingHandsGlovesNitrile eyes: ClothingEyesHudMedical diff --git a/Resources/Prototypes/Roles/Jobs/Security/detective.yml b/Resources/Prototypes/Roles/Jobs/Security/detective.yml index 7e00370be2c..943e75d71bd 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/detective.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/detective.yml @@ -21,16 +21,14 @@ id: DetectiveGear equipment: jumpsuit: ClothingUniformJumpsuitDetective - back: ClothingBackpackSecurityFilled + back: ClothingBackpackSecurityFilledDetective shoes: ClothingShoesBootsCombatFilled eyes: ClothingEyesGlassesSunglasses head: ClothingHeadHatFedoraBrown outerClothing: ClothingOuterVestDetective id: DetectivePDA ears: ClothingHeadsetSecurity - pocket1: ForensicPad - pocket2: ForensicScanner - belt: ClothingBeltHolster + belt: ClothingBeltHolsterFilled innerclothingskirt: ClothingUniformJumpskirtDetective - satchel: ClothingBackpackSatchelSecurityFilled - duffelbag: ClothingBackpackDuffelSecurityFilled + satchel: ClothingBackpackSatchelSecurityFilledDetective + duffelbag: ClothingBackpackDuffelSecurityFilledDetective diff --git a/Resources/Prototypes/Shaders/outline.yml b/Resources/Prototypes/Shaders/outline.yml index 8469e30158d..83b99f07eae 100644 --- a/Resources/Prototypes/Shaders/outline.yml +++ b/Resources/Prototypes/Shaders/outline.yml @@ -4,7 +4,7 @@ path: "/Textures/Shaders/outline.swsl" params: outline_color: "#FF000055" - light_boost: 2 + light_boost: 1 - type: shader id: SelectionOutlineInrange @@ -12,4 +12,4 @@ path: "/Textures/Shaders/outline.swsl" params: outline_color: "#00FF0055" - light_boost: 4 + light_boost: 2 diff --git a/Resources/Prototypes/Shaders/shaders.yml b/Resources/Prototypes/Shaders/shaders.yml index f6da3b87745..7e165e47c1d 100644 --- a/Resources/Prototypes/Shaders/shaders.yml +++ b/Resources/Prototypes/Shaders/shaders.yml @@ -76,3 +76,9 @@ id: PaperStamp kind: source path: "/Textures/Shaders/paperstamp.swsl" + +# Simple horizontal cut +- type: shader + id: HorizontalCut + kind: source + path: "/Textures/Shaders/hcut.swsl" diff --git a/Resources/Prototypes/SoundCollections/announcements.yml b/Resources/Prototypes/SoundCollections/announcements.yml index 7491ec2cb55..cb90b2282ce 100644 --- a/Resources/Prototypes/SoundCollections/announcements.yml +++ b/Resources/Prototypes/SoundCollections/announcements.yml @@ -2,3 +2,5 @@ id: RoundEnd files: - /Audio/Announcements/RoundEnd/apc_destroyed.ogg + - /Audio/Announcements/RoundEnd/disappointed.ogg + - /Audio/Announcements/RoundEnd/notevenpaidforthis.ogg diff --git a/Resources/Prototypes/SoundCollections/generator.yml b/Resources/Prototypes/SoundCollections/generator.yml new file mode 100644 index 00000000000..00ea0240e79 --- /dev/null +++ b/Resources/Prototypes/SoundCollections/generator.yml @@ -0,0 +1,15 @@ +- type: soundCollection + # Plays when you try to start a generator. + # You know, lawnmower cord pull sound. + id: GeneratorTug + files: + - /Audio/Machines/generator-tug-1.ogg + - /Audio/Machines/generator-tug-2.ogg + - /Audio/Machines/generator-tug-3.ogg + +- type: soundCollection + id: GeneratorTugEmpty + files: + - /Audio/Machines/generator-tug-1-empty.ogg + - /Audio/Machines/generator-tug-2-empty.ogg + - /Audio/Machines/generator-tug-3-empty.ogg diff --git a/Resources/Prototypes/Species/arachnid.yml b/Resources/Prototypes/Species/arachnid.yml index 2eb9f00e483..43f80e4fc3c 100644 --- a/Resources/Prototypes/Species/arachnid.yml +++ b/Resources/Prototypes/Species/arachnid.yml @@ -21,8 +21,8 @@ Snout: MobHumanoidAnyMarking Chest: MobArachnidTorso HeadTop: MobHumanoidAnyMarking - HeadSide: MobHumanoidMarkingMatchSkin - Tail: MobHumanoidMarkingMatchSkin + HeadSide: MobHumanoidAnyMarking + Tail: MobHumanoidAnyMarking Eyes: MobArachnidEyes LArm: MobArachnidLArm RArm: MobArachnidRArm @@ -59,7 +59,7 @@ HeadSide: points: 1 required: true - defaultMarkings: [ ArachnidCheliceraeBasic ] + defaultMarkings: [ ArachnidCheliceraeDownwards ] Chest: points: 1 required: false diff --git a/Resources/Prototypes/Species/diona.yml b/Resources/Prototypes/Species/diona.yml index 5d91f223f99..3f81007889f 100644 --- a/Resources/Prototypes/Species/diona.yml +++ b/Resources/Prototypes/Species/diona.yml @@ -4,9 +4,10 @@ roundStart: true prototype: MobDiona sprites: MobDionaSprites + defaultSkinTone: "#cdb369" markingLimits: MobDionaMarkingLimits dollPrototype: MobDionaDummy - skinColoration: TintedHues + skinColoration: Hues maleFirstNames: DionaFirst femaleFirstNames: DionaFirst lastNames: DionaLast @@ -19,6 +20,7 @@ HeadTop: MobHumanoidAnyMarking HeadSide: MobHumanoidAnyMarking Chest: MobDionaTorso + Eyes: MobDionaEyes LArm: MobDionaLArm RArm: MobDionaRArm LHand: MobDionaLHand @@ -44,6 +46,16 @@ Chest: points: 1 required: false + Overlay: + points: 1 + required: true + defaultMarkings: [ DionaVineOverlay ] + +- type: humanoidBaseSprite + id: MobDionaEyes + baseSprite: + sprite: Mobs/Customization/eyes.rsi + state: diona - type: humanoidBaseSprite id: MobDionaHead diff --git a/Resources/Prototypes/Species/skeleton.yml b/Resources/Prototypes/Species/skeleton.yml index b0e41ca30bf..c4dc954662f 100644 --- a/Resources/Prototypes/Species/skeleton.yml +++ b/Resources/Prototypes/Species/skeleton.yml @@ -4,6 +4,7 @@ roundStart: false prototype: MobSkeletonPerson sprites: MobSkeletonSprites + defaultSkinTone: "#fff9e2" markingLimits: MobHumanMarkingLimits maleFirstNames: skeletonNamesFirst femaleFirstNames: skeletonNamesFirst diff --git a/Resources/Prototypes/Stacks/floor_tile_stacks.yml b/Resources/Prototypes/Stacks/floor_tile_stacks.yml index 5b69430500b..34065fa53f4 100644 --- a/Resources/Prototypes/Stacks/floor_tile_stacks.yml +++ b/Resources/Prototypes/Stacks/floor_tile_stacks.yml @@ -306,6 +306,27 @@ maxCount: 30 itemSize: 5 +- type: stack + id: FloorTileConcrete + name: concrete tile + spawn: FloorTileItemGrayConcrete + maxCount: 30 + itemSize: 5 + +- type: stack + id: FloorTileGrayConcrete + name: gray concrete tile + spawn: FloorTileItemLaundry + maxCount: 30 + itemSize: 5 + +- type: stack + id: FloorTileOldConcrete + name: old concrete tile + spawn: FloorTileItemOldConcrete + maxCount: 30 + itemSize: 5 + - type: stack id: FloorTileSilver name: silver floor tile diff --git a/Resources/Prototypes/StatusEffects/job.yml b/Resources/Prototypes/StatusEffects/job.yml index fa73640e6ca..47430538e86 100644 --- a/Resources/Prototypes/StatusEffects/job.yml +++ b/Resources/Prototypes/StatusEffects/job.yml @@ -2,7 +2,7 @@ id: JobIcon abstract: true priority: 1 - locationPreference: Left + locationPreference: Right - type: statusIcon parent: JobIcon diff --git a/Resources/Prototypes/StatusEffects/ssd.yml b/Resources/Prototypes/StatusEffects/ssd.yml new file mode 100644 index 00000000000..70253cc6b19 --- /dev/null +++ b/Resources/Prototypes/StatusEffects/ssd.yml @@ -0,0 +1,6 @@ +- type: statusIcon + id: SSDIcon + icon: + sprite: /Textures/Effects/ssd.rsi + state: default0 + locationPreference: Left diff --git a/Resources/Prototypes/Tiles/floors.yml b/Resources/Prototypes/Tiles/floors.yml index 6efef85de83..908cd466a3f 100644 --- a/Resources/Prototypes/Tiles/floors.yml +++ b/Resources/Prototypes/Tiles/floors.yml @@ -787,6 +787,178 @@ itemDrop: FloorTileItemLaundry heatCapacity: 10000 +# Concrete +- type: tile + id: FloorConcrete + name: tiles-concrete-tile + sprite: /Textures/Tiles/Planet/Concrete/concrete.png + variants: 4 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + baseTurf: Plating + isSubfloor: false + canCrowbar: true + footstepSounds: + collection: FootstepTile + itemDrop: FloorTileItemConcrete + heatCapacity: 10000 + weather: true + +- type: tile + id: FloorConcreteMono + name: tiles-concrete-slab + sprite: /Textures/Tiles/Planet/Concrete/concrete_mono.png + variants: 4 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + baseTurf: Plating + isSubfloor: false + canCrowbar: true + footstepSounds: + collection: FootstepTile + itemDrop: FloorTileItemConcrete + heatCapacity: 10000 + weather: true + +- type: tile + id: FloorConcreteSmooth + name: tiles-concrete-smooth + sprite: /Textures/Tiles/Planet/Concrete/concrete_smooth.png + variants: 4 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + baseTurf: Plating + isSubfloor: false + canCrowbar: true + footstepSounds: + collection: FootstepTile + itemDrop: FloorTileItemConcrete + heatCapacity: 10000 + weather: true + +- type: tile + id: FloorGrayConcrete + name: tiles-gray-concrete-tile + sprite: /Textures/Tiles/Planet/Concrete/grayconcrete.png + variants: 4 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + baseTurf: Plating + isSubfloor: false + canCrowbar: true + footstepSounds: + collection: FootstepTile + itemDrop: FloorTileItemGrayConcrete + heatCapacity: 10000 + weather: true + +- type: tile + id: FloorGrayConcreteMono + name: tiles-gray-concrete-slab + sprite: /Textures/Tiles/Planet/Concrete/grayconcrete_mono.png + variants: 4 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + baseTurf: Plating + isSubfloor: false + canCrowbar: true + footstepSounds: + collection: FootstepTile + itemDrop: FloorTileItemGrayConcrete + heatCapacity: 10000 + weather: true + +- type: tile + id: FloorGrayConcreteSmooth + name: tiles-gray-concrete-smooth + sprite: /Textures/Tiles/Planet/Concrete/grayconcrete_smooth.png + variants: 4 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + baseTurf: Plating + isSubfloor: false + canCrowbar: true + footstepSounds: + collection: FootstepTile + itemDrop: FloorTileItemGrayConcrete + heatCapacity: 10000 + weather: true + +- type: tile + id: FloorOldConcrete + name: tiles-old-concrete-tile + sprite: /Textures/Tiles/Planet/Concrete/oldconcrete.png + variants: 4 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + baseTurf: Plating + isSubfloor: false + canCrowbar: true + footstepSounds: + collection: FootstepTile + itemDrop: FloorTileItemOldConcrete + heatCapacity: 10000 + weather: true + +- type: tile + id: FloorOldConcreteMono + name: tiles-old-concrete-slab + sprite: /Textures/Tiles/Planet/Concrete/oldconcrete_mono.png + variants: 4 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + baseTurf: Plating + isSubfloor: false + canCrowbar: true + footstepSounds: + collection: FootstepTile + itemDrop: FloorTileItemOldConcrete + heatCapacity: 10000 + weather: true + +- type: tile + id: FloorOldConcreteSmooth + name: tiles-old-concrete-smooth + sprite: /Textures/Tiles/Planet/Concrete/oldconcrete_smooth.png + variants: 4 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + baseTurf: Plating + isSubfloor: false + canCrowbar: true + footstepSounds: + collection: FootstepTile + itemDrop: FloorTileItemOldConcrete + heatCapacity: 10000 + weather: true + # Carpets (non smoothing) - type: tile id: FloorArcadeBlue @@ -1065,6 +1237,30 @@ heatCapacity: 10000 # Terrain +- type: tile + id: FloorAsphalt + name: tiles-asphalt + sprite: /Textures/Tiles/Planet/Concrete/asphalt.png + variants: 10 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + baseTurf: FloorDirt + isSubfloor: true + canCrowbar: false + footstepSounds: + collection: FootstepTile + heatCapacity: 10000 + weather: true + - type: tile id: FloorGrass name: tiles-planet-grass-floor @@ -1146,13 +1342,26 @@ weather: true # Asteroid -# TODO: Change the rock & pebbles into regular variants with a 20% chance to spawn (like SS13.) Give ironsand variants from /vg/station. -# TODO: Probably remove asteroid coarse sand if it isn't resprited by the time tile migrations exist. It was likely made to co-exist with the CEV-Eris style rocks and doesn't look too good nowadays. - type: tile id: FloorAsteroidSand name: tiles-asteroid-sand sprite: /Textures/Tiles/Asteroid/asteroid.png + variants: 13 + placementVariants: + - 0.8 + - 0.0166 #Should be roughly 20%.... I think??? I don't know dude, I'm just a YAML monkey. + - 0.0166 + - 0.0166 + - 0.0166 + - 0.0166 + - 0.0166 + - 0.0166 + - 0.0166 + - 0.0166 + - 0.0166 + - 0.0116 + - 0.0116 baseTurf: Space isSubfloor: true canCrowbar: false @@ -1162,25 +1371,9 @@ weather: true - type: tile - id: FloorAsteroidSandRocks - name: tiles-asteroid-sand-rocks - sprite: /Textures/Tiles/Asteroid/asteroid_rocks.png - variants: 8 - placementVariants: [ 0, 1, 2, 3, 4, 5, 6, 7 ] - baseTurf: Space - isSubfloor: true - canCrowbar: false - footstepSounds: - collection: FootstepAsteroid - heatCapacity: 10000 - weather: true - -- type: tile - id: FloorAsteroidSandRocksRed - name: tiles-asteroid-sand-rocks - sprite: /Textures/Tiles/Asteroid/asteroid_rocks_red.png - variants: 8 - placementVariants: [ 0, 1, 2, 3, 4, 5, 6, 7 ] + id: FloorAsteroidSandDug + name: tiles-asteroid-sand + sprite: /Textures/Tiles/Asteroid/asteroid_dug.png baseTurf: Space isSubfloor: true canCrowbar: false @@ -1190,11 +1383,24 @@ weather: true - type: tile - id: FloorAsteroidSandPebbles - name: tiles-asteroid-sand-pebbles - sprite: /Textures/Tiles/Asteroid/asteroid_pebbles.png - variants: 4 - placementVariants: [ 0, 1, 2, 3 ] + id: FloorAsteroidSandRed + name: tiles-asteroid-sand + sprite: /Textures/Tiles/Asteroid/asteroid_red.png + variants: 13 + placementVariants: + - 0.8 + - 0.0166 + - 0.0166 + - 0.0166 + - 0.0166 + - 0.0166 + - 0.0166 + - 0.0166 + - 0.0166 + - 0.0166 + - 0.0166 + - 0.0116 + - 0.0116 baseTurf: Space isSubfloor: true canCrowbar: false @@ -1216,14 +1422,26 @@ weather: true - type: tile - id: FloorAsteroidCoarseSand0 - name: tiles-asteroid-coarse-sand - sprite: /Textures/Tiles/Asteroid/asteroid_coarse_sand.png - variants: 3 + id: FloorAsteroidIronsand + name: tiles-asteroid-ironsand + sprite: /Textures/Tiles/Asteroid/ironsand.png + variants: 15 placementVariants: - 1.0 - 1.0 - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Space isSubfloor: true canCrowbar: false @@ -1232,22 +1450,10 @@ heatCapacity: 10000 weather: true -- type: tileAlias - id: FloorBasaslt - target: FloorBasalt - -- type: tileAlias - id: FloorAsteroidCoarseSand1 - target: FloorAsteroidCoarseSand0 - -- type: tileAlias - id: FloorAsteroidCoarseSand2 - target: FloorAsteroidCoarseSand0 - - type: tile - id: FloorAsteroidCoarseSandDug - name: tiles-asteroid-dug-coarse-sand - sprite: /Textures/Tiles/Asteroid/asteroid_coarse_sand_dug.png + id: FloorAsteroidSandUnvariantized + name: tiles-asteroid-sand + sprite: /Textures/Tiles/Asteroid/asteroid0.png baseTurf: Space isSubfloor: true canCrowbar: false @@ -1257,45 +1463,9 @@ weather: true - type: tile - id: FloorAsteroidIronsand1 + id: FloorAsteroidIronsandUnvariantized name: tiles-asteroid-ironsand - sprite: /Textures/Tiles/ironsand1.png - baseTurf: Space - isSubfloor: true - canCrowbar: false - footstepSounds: - collection: FootstepAsteroid - heatCapacity: 10000 - weather: true - -- type: tile - id: FloorAsteroidIronsand2 - name: tiles-asteroid-ironsand-pebbles - sprite: /Textures/Tiles/ironsand2.png - baseTurf: Space - isSubfloor: true - canCrowbar: false - footstepSounds: - collection: FootstepAsteroid - heatCapacity: 10000 - weather: true - -- type: tile - id: FloorAsteroidIronsand3 - name: tiles-asteroid-ironsand-pebbles - sprite: /Textures/Tiles/ironsand3.png - baseTurf: Space - isSubfloor: true - canCrowbar: false - footstepSounds: - collection: FootstepAsteroid - heatCapacity: 10000 - weather: true - -- type: tile - id: FloorAsteroidIronsand4 - name: tiles-asteroid-ironsand-rock - sprite: /Textures/Tiles/ironsand4.png + sprite: /Textures/Tiles/Asteroid/ironsand0.png baseTurf: Space isSubfloor: true canCrowbar: false @@ -1473,7 +1643,7 @@ baseTurf: Plating isSubfloor: false canCrowbar: false - canAxe: false #You can't RCD these in SS13 apparently, so this is probably the next best thing + canAxe: false footstepSounds: collection: FootstepHull itemDrop: FloorTileItemSteel diff --git a/Resources/Prototypes/Tiles/planet.yml b/Resources/Prototypes/Tiles/planet.yml index e0738a779a7..c5095eb5d0a 100644 --- a/Resources/Prototypes/Tiles/planet.yml +++ b/Resources/Prototypes/Tiles/planet.yml @@ -62,6 +62,7 @@ - 1.0 - 1.0 - 1.0 + edgeSpritePriority: 1 edgeSprites: SouthEast: /Textures/Tiles/Planet/Grass/single_edge.png NorthEast: /Textures/Tiles/Planet/Grass/single_edge.png @@ -97,32 +98,67 @@ # Snow - type: tile id: FloorSnow - name: tiles-snow-floor + name: tiles-snow sprite: /Textures/Tiles/Planet/Snow/snow.png variants: 13 placementVariants: - - 1.0 - - 1.0 - - 1.0 - - 1.0 - - 1.0 - - 1.0 - - 1.0 - - 1.0 - - 1.0 - - 1.0 - - 1.0 - - 1.0 - - 1.0 - #cornerSprites: - # - /Textures/Tiles/Planet/Snow/single_edge.png - #cardinalSprites: - # - /Textures/Tiles/Planet/Snow/double_edge.png + - 0.8 + - 0.0166 + - 0.0166 + - 0.0166 + - 0.0166 + - 0.0166 + - 0.0166 + - 0.0166 + - 0.0166 + - 0.0166 + - 0.0166 + - 0.0116 + - 0.0116 + edgeSpritePriority: 2 + edgeSprites: + South: /Textures/Tiles/Planet/Snow/snow_double_edge_south.png + East: /Textures/Tiles/Planet/Snow/snow_double_edge_east.png + North: /Textures/Tiles/Planet/Snow/snow_double_edge_north.png + West: /Textures/Tiles/Planet/Snow/snow_double_edge_west.png + isSubfloor: true + canCrowbar: false + footstepSounds: + collection: FootstepSnow + heatCapacity: 10000 + weather: true + indestructible: true + +# Ice +- type: tile + id: FloorIce + name: tiles-ice + sprite: /Textures/Tiles/Planet/Snow/ice.png + isSubfloor: true + canCrowbar: false + friction: 0.05 + heatCapacity: 10000 + weather: true + mobFriction: 0.5 + mobFrictionNoInput: 0.05 + mobAcceleration: 2 + indestructible: true + +# Dug snow +- type: tile + id: FloorSnowDug + name: tiles-snow-dug + sprite: /Textures/Tiles/Planet/Snow/snow_dug.png + edgeSpritePriority: 1 + edgeSprites: + South: /Textures/Tiles/Planet/Snow/snow_dug_double_edge_south.png + East: /Textures/Tiles/Planet/Snow/snow_dug_double_edge_east.png + North: /Textures/Tiles/Planet/Snow/snow_dug_double_edge_north.png + West: /Textures/Tiles/Planet/Snow/snow_dug_double_edge_west.png isSubfloor: true canCrowbar: false footstepSounds: collection: FootstepSnow - friction: 0.20 heatCapacity: 10000 weather: true indestructible: true diff --git a/Resources/Prototypes/Tiles/plating.yml b/Resources/Prototypes/Tiles/plating.yml index 5c11c7f171b..ee15c111577 100644 --- a/Resources/Prototypes/Tiles/plating.yml +++ b/Resources/Prototypes/Tiles/plating.yml @@ -22,6 +22,18 @@ friction: 0.3 heatCapacity: 10000 +- type: tile + id: PlatingSnow + name: tiles-snow-plating + sprite: /Textures/Tiles/snow_plating.png #Not in the snow planet RSI because it doesn't have any metadata. Should probably be moved to its own folder later. + baseTurf: Lattice + isSubfloor: true + canAxe: true + footstepSounds: + collection: FootstepPlating + friction: 0.15 #a little less then actual snow + heatCapacity: 10000 + - type: tile id: Lattice name: tiles-lattice diff --git a/Resources/Prototypes/Tiles/tile_migrations.yml b/Resources/Prototypes/Tiles/tile_migrations.yml new file mode 100644 index 00000000000..7b0b9d5d767 --- /dev/null +++ b/Resources/Prototypes/Tiles/tile_migrations.yml @@ -0,0 +1,58 @@ +- type: tileAlias + id: FloorBasaslt + target: FloorBasalt + +- type: tileAlias + id: FloorAsteroidCoarseSand1 + target: FloorAsteroidCoarseSand0 + +- type: tileAlias + id: FloorAsteroidCoarseSand2 + target: FloorAsteroidCoarseSand0 + +# 2023-08-21 +# Asteroid coarse sand has been nuked since it was made to fit in with the old CEV-Eris style rocks. This tile alias is inevitably not enough to fix every instance of it appearing since the tile is so common, but it's the only reasonable way forward since it's not the default anymore. + +- type: tileAlias + id: FloorAsteroidSandRocks + target: FloorAsteroidSand + +- type: tileAlias + id: FloorAsteroidSandRocksRed + target: FloorAsteroidSandRed + +- type: tileAlias + id: FloorAsteroidSandPebbles + target: FloorAsteroidSand + +- type: tileAlias + id: FloorAsteroidIronsand1 + target: FloorAsteroidIronsand + +- type: tileAlias + id: FloorAsteroidIronsand2 + target: FloorAsteroidIronsand + +- type: tileAlias + id: FloorAsteroidIronsand3 + target: FloorAsteroidIronsand + +- type: tileAlias + id: FloorAsteroidIronsand4 + target: FloorAsteroidIronsand + +- type: tileAlias + id: FloorAsteroidCoarseSand0 + target: FloorAsteroidSand + +- type: tileAlias + id: FloorAsteroidCoarseSandDug + target: FloorAsteroidSandDug + +- type: tileAlias + id: FloorGlassAlt + target: FloorGlass + +- type: tileAlias + id: FloorRGlassAlt + target: FloorRGlass diff --git a/Resources/Prototypes/Voice/speech_verbs.yml b/Resources/Prototypes/Voice/speech_verbs.yml index b785ed560c4..29e6d750af9 100644 --- a/Resources/Prototypes/Voice/speech_verbs.yml +++ b/Resources/Prototypes/Voice/speech_verbs.yml @@ -8,6 +8,16 @@ speechVerbStrings: - chat-speech-verb-question +- type: speechVerb + id: DefaultStutter + speechVerbStrings: + - chat-speech-verb-stutter + +- type: speechVerb + id: DefaultMumble + speechVerbStrings: + - chat-speech-verb-mumble + - type: speechVerb id: DefaultExclamation speechVerbStrings: @@ -21,45 +31,80 @@ priority: 10 - type: speechVerb - id: Insect + id: Arachnid speechVerbStrings: - chat-speech-verb-insect-1 - chat-speech-verb-insect-2 + - chat-speech-verb-insect-3 + - chat-speech-verb-reptilian-1 + +- type: speechVerb + id: Moth + speechVerbStrings: + - chat-speech-verb-winged-1 + - chat-speech-verb-winged-2 + - chat-speech-verb-winged-3 + - chat-speech-verb-insect-1 - type: speechVerb id: Robotic speechVerbStrings: - - chat-speech-verb-robotic + - chat-speech-verb-robotic-1 + - chat-speech-verb-robotic-2 - type: speechVerb id: Reptilian speechVerbStrings: - - chat-speech-verb-reptilian + - chat-speech-verb-reptilian-1 + - chat-speech-verb-reptilian-2 + - chat-speech-verb-reptilian-3 + - chat-speech-verb-insect-2 - type: speechVerb id: Skeleton speechVerbStrings: - - chat-speech-verb-skeleton + - chat-speech-verb-skeleton-1 + - chat-speech-verb-skeleton-2 + - chat-speech-verb-skeleton-3 - type: speechVerb id: Slime speechVerbStrings: - - chat-speech-verb-slime + - chat-speech-verb-slime-1 + - chat-speech-verb-slime-2 + - chat-speech-verb-slime-3 + +- type: speechVerb + id: Plant + speechVerbStrings: + - chat-speech-verb-plant-1 + - chat-speech-verb-plant-2 + - chat-speech-verb-plant-3 + +- type: speechVerb + id: Canine + speechVerbStrings: + - chat-speech-verb-canine-1 + - chat-speech-verb-canine-2 + - chat-speech-verb-canine-3 - type: speechVerb id: LargeMob speechVerbStrings: - - chat-speech-verb-large-mob + - chat-speech-verb-large-mob-1 + - chat-speech-verb-large-mob-2 - type: speechVerb id: SmallMob speechVerbStrings: - - chat-speech-verb-small-mob + - chat-speech-verb-small-mob-1 + - chat-speech-verb-small-mob-2 - type: speechVerb id: Monkey speechVerbStrings: - - chat-speech-verb-monkey + - chat-speech-verb-monkey-1 + - chat-speech-verb-monkey-2 - type: speechVerb id: Cluwne @@ -67,3 +112,12 @@ - chat-speech-verb-cluwne-1 - chat-speech-verb-cluwne-2 - chat-speech-verb-cluwne-3 + +- type: speechVerb + id: Ghost + speechVerbStrings: + - chat-speech-verb-ghost-1 + - chat-speech-verb-ghost-2 + - chat-speech-verb-ghost-3 + - chat-speech-verb-ghost-4 + - chat-speech-verb-mumble diff --git a/Resources/Prototypes/fonts.yml b/Resources/Prototypes/fonts.yml index cc943aab850..c883df514cf 100644 --- a/Resources/Prototypes/fonts.yml +++ b/Resources/Prototypes/fonts.yml @@ -10,6 +10,10 @@ id: DefaultBold path: /Fonts/NotoSans/NotoSans-Bold.ttf +- type: font + id: DefaultBoldItalic + path: /Fonts/NotoSans/NotoSans-BoldItalic.ttf + - type: font id: NotoSansDisplay path: /Fonts/NotoSansDisplay/NotoSansDisplay-Regular.ttf diff --git a/Resources/Prototypes/game_presets.yml b/Resources/Prototypes/game_presets.yml index 7a7c0c4863c..748c38d6a68 100644 --- a/Resources/Prototypes/game_presets.yml +++ b/Resources/Prototypes/game_presets.yml @@ -59,8 +59,11 @@ - dm name: death-match-title description: death-match-description + maxPlayers: 15 + showInVote: true + supportedMaps: DeathMatchMapPool rules: - - DeathMatch + - DeathMatch31 - type: gamePreset id: Nukeops diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 2a14537fb52..ac83a683ebe 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -531,7 +531,6 @@ - type: Tag id: HappyHonk - - type: Tag id: Hardsuit # Prevent melee injectors that can't penetrate hardsuits from injecting the wearer (nettles) @@ -544,6 +543,9 @@ - type: Tag id: HideContextMenu +- type: Tag + id: HideCorgi # corgi hide for crafting, not for making corgis invisible + - type: Tag id: HidesHair # for headwear. @@ -998,6 +1000,9 @@ - type: Tag id: WallmountSubstationElectronics + +- type: Tag + id: WeaponPistolCHIMPUpgradeKit - type: Tag id: Window diff --git a/Resources/Prototypes/typing_indicator.yml b/Resources/Prototypes/typing_indicator.yml index a459bf03089..8261f78b541 100644 --- a/Resources/Prototypes/typing_indicator.yml +++ b/Resources/Prototypes/typing_indicator.yml @@ -28,3 +28,8 @@ id: moth typingState: moth0 offset: 0, 0.125 + +- type: typingIndicator + id: spider + typingState: spider0 + offset: 0, 0.125 diff --git a/Resources/ServerInfo/Guidebook/Antagonist/SpaceNinja.xml b/Resources/ServerInfo/Guidebook/Antagonist/SpaceNinja.xml new file mode 100644 index 00000000000..7fed84da73e --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Antagonist/SpaceNinja.xml @@ -0,0 +1,74 @@ + +# Space Ninja + +The Space Ninja is a ghost role randomly available mid-late game. If you pick it you will be given your gear, your objectives and the greeting. + +You are a ninja, but in space. The Spider Clan has sent you to the station to wreak all kinds of havoc, from bolting the armory open and killing the entire station to engaging in a slipping war with the clown and fighting in rage cages. + +# Equipment + +You start with a microbomb implant, so if you get KIA or seppuku you will leave behind a nice crater and all your precious equipment is kept out of enemy hands. + +Your bag is full of tools for more subtle sabotage, along with a survival box if you need a snack. + +You have a jetpack and pinpointer that will let you find the station. + + + +## Ninja Suit + + + +Your single most important item is your suit, without it none of your abilities would work. +Your suit requires power to function, its internal battery can be replaced by clicking on it **with a better one**. +You can see the current charge by examining the suit or in a sweet battery alert at the top right of your screen. + +If you run out of power and need to recharge your battery, just use your gloves to drain an APC, substation or a SMES. + +## Ninja Gloves + + + +These bad boys are your bread and butter. + +They are insulated so you can nom on wires in peace. Obviously they block your fingerprints from being left on things you touch. + +You have an action to toggle gloves. When the gloves are turned on, they allow you to use special abilities, which are triggered by interacting with things with an empty hand and with combat mode disabled. + +Your glove abilities include: +- Emagging an unlimited number of doors. +- Draining power from transformers such as APCs, substations or SMESes. The higher the voltage, the more efficient the draining is. +- You can shock any mob, stunning and slightly damaging them. +- You can download technologies from a R&D server for one of your objectives. +- You can hack a communications console to call in a threat. + +## Energy Katana + + + +Deals a lot of damage and can be recalled at will, costing suit power proportional to the distance teleported. +While in hand you can teleport to anywhere that you can see, meaning most doors and windows, but not past solid walls. +This has a limited number of charges which regenerate slowly, so keep a charge or two spare incase you need a quick getaway. + +## Spider Clan Charge + + + +A modified C-4 explosive, you start with this in your pocket. Creates a large explosion but must be armed in your target area. +A random area on the map is selected for you to blow up, which is one of your objectives. It can't be activated manually, simply plant it on a wall or something. +Can't be unstuck once planted. + +## Ninja Shoes + +Special noslips that make you go really fast. +Energy not required. + +# Objectives + +- Download X research nodes: Use your gloves on an R&D server with a number of unlocked technologies +- Doorjack X doors on the station: Use your gloves to emag a number of doors. +- Detonate the spider clan charge: Plant your spider clan charge at a random location and watch it go boom. +- Call in a threat: Use your gloves on a communications console. +- Survive: Don't die. + + diff --git a/Resources/ServerInfo/Guidebook/Antagonist/Traitors.xml b/Resources/ServerInfo/Guidebook/Antagonist/Traitors.xml index 6e814454db5..002ee56d115 100644 --- a/Resources/ServerInfo/Guidebook/Antagonist/Traitors.xml +++ b/Resources/ServerInfo/Guidebook/Antagonist/Traitors.xml @@ -35,11 +35,13 @@ ## List of Possible Tasks - - Kill a randomly selected non-traitor. - - Kill a randomly selected department head. + - Kill or maroon a randomly selected non-traitor. + - Kill or maroon a randomly selected traitor. + - Kill or maroon a randomly selected department head. - Keep a randomly selected traitor alive. - Escape on the evacuation shuttle alive and uncuffed. - Help a randomly selected traitor finish 2/3 of their objectives. + - Die a glorious death. - Steal the Captain's [color=#a4885c]ID Card[/color]. @@ -76,14 +78,6 @@ - - Steal the [color=#a4885c]Supply Console Board[/color] from the Quartermaster's office. - - - - - Steal the [color=#a4885c]ID Computer Board[/color] from the Head of Personnel's office. - - - - Steal [color=#a4885c]Corgi Meat[/color]. diff --git a/Resources/ServerInfo/Guidebook/Engineering/Atmospherics.xml b/Resources/ServerInfo/Guidebook/Engineering/Atmospherics.xml index fe266c233b5..7dea1fb75cb 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/Atmospherics.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/Atmospherics.xml @@ -16,7 +16,8 @@ Variations on this mix may be necessary for the long-term comfort of atypical cr ## Vents and Scrubbers -Vents and scrubbers are core atmospherics devices that fill and cleanse rooms, respectively. They can be reconfigured by installing an air alarm, allowing you to change them from their default settings. By default, they are configured for filling rooms to standard pressure (101.24kPa) and to remove all non-O2/N2 gasses from a room. +Vents and scrubbers are core atmospherics devices that fill and cleanse rooms, respectively. By default, they are configured for filling rooms to standard pressure (101.24kPa) and to remove all non-O2/N2 gasses from a room. They can be reconfigured from their default settings, allowing you to configure how they respond to various types of gasses or pressure levels. This can be done by interacting with an existing air alarm nearby, or installing and connecting them to a new one. + diff --git a/Resources/ServerInfo/Guidebook/Engineering/PortableGenerator.xml b/Resources/ServerInfo/Guidebook/Engineering/PortableGenerator.xml new file mode 100644 index 00000000000..2cf1fa44ea1 --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Engineering/PortableGenerator.xml @@ -0,0 +1,42 @@ + + # Portable Generators + + Need power? No engine running? The "P.A.C.M.A.N." line of portable generators has you covered. + + + + + + + + # The Junior + + + + + + + The J.R.P.A.C.M.A.N. can be found across the station in maintenance areas, and is ideal for crew to set up themselves whenever there are power issues. + Setup is incredibly easy: wrench it down above an [color=green]LV[/color] power cable, give it some welding fuel, and start it up. + + Welding fuel should be plentiful to find around the station. In a pinch, you can even transfer some from the big tanks with a soda can. Just remember to empty the soda can first, I don't think it likes soda as fuel. + + # The Big Ones + + + + + + + + + + + + The (S.U.P.E.R.)P.A.C.M.A.N. is intended for usage by engineering for advanced power scenarios. Bootstrapping the engine, powering departments, and so on. + + The S.U.P.E.R.P.A.C.M.A.N. boasts larger power output and longer runtime at maximum output, but scales down to lower outputs less efficiently. + + They connect directly to [color=yellow]MV[/color] or [color=orange]HV[/color] power cables, able to switch between them for flexibility. + + diff --git a/Resources/ServerInfo/Guidebook/Engineering/Shuttlecraft.xml b/Resources/ServerInfo/Guidebook/Engineering/Shuttlecraft.xml index 9aa8ccff9eb..7e743ddd685 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/Shuttlecraft.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/Shuttlecraft.xml @@ -10,7 +10,7 @@ Shuttle construction is simple and easy, albeit rather expensive and hard to pul - + @@ -37,4 +37,4 @@ From there, once you have the shape you want, bring out and install thrusters at Finally, install the shuttle computer wherever is convenient and ensure all your thrusters and gyroscopes are receiving power. If they are, congratulations, you should have a functional shuttle! Making it livable and good looking is left as an exercise to the reader. - \ No newline at end of file + diff --git a/Resources/ServerInfo/Guidebook/Engineering/Singularity.xml b/Resources/ServerInfo/Guidebook/Engineering/Singularity.xml index 76115fb4378..5ebcd0d7d61 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/Singularity.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/Singularity.xml @@ -28,8 +28,11 @@ Emitter lasers and containment field can cause damage, avoid touching them when ## Radition collectors + -They connect to HV cables and generate power from nearby radiation sources when turned on. +They connect to HV cables and generate power from nearby radiation sources when turned on. +Radiation collectors require a tank full of gaseous plasma in order to operate. +Continous radiation exposure will gradually convert the stored plasma into tritium, so replace depleted plasma tanks with fresh ones to maintain a high power output. ## Particle accelerator diff --git a/Resources/ServerInfo/Guidebook/Writing.xml b/Resources/ServerInfo/Guidebook/Writing.xml new file mode 100644 index 00000000000..d47775fa976 --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Writing.xml @@ -0,0 +1,22 @@ + +# Writing + +Using a pen, you can write on paper or in books. Nanotrasen provides everyone with a spare pen in their PDA. + +## Formatting + +You can use the following sigils: + +- [color=tan]\[color=color\]\[\/color\][/color] — to change the color of the text +- [color=tan]\[head=n\]\[\/head\][/color] — where [italic]n[/italic] is the heading level (1 – 3) +- [color=tan]\[bullet\/\][/color] — to insert a bullet point (useful for lists) +- [color=tan][bold]\[bold\]\[\/bold\][/bold][/color], [color=tan][italic]\[italic\]\[\/italic\][/italic][/color] — for emphasis + +You can combine [bold][italic]bold and italic[/italic][/bold] tags, or use the shortcut [color=tan][bolditalic]\[bolditalic\][/bolditalic][/color]. + +Color supports either hexadecimal or most HTML color names. For example: + +- [color=#ff0000]\[color=#ff0000\]\[\/color\][/color] +- [color=red]\[color=red\]\[\/color\][/color] + + diff --git a/Resources/ServerInfo/RP_Rules.txt b/Resources/ServerInfo/RP_Rules.txt index 64e1a3b05c2..edfe5632ac6 100644 --- a/Resources/ServerInfo/RP_Rules.txt +++ b/Resources/ServerInfo/RP_Rules.txt @@ -6,6 +6,7 @@ This is the "short" form of the rules, which has all the information any regular Should you need it. Some RP-specific documents available on the wiki such as Space Law, the Standard Operating Procedure, and the Alert Procedure will be mentioned here and are expected to be followed. [color=#ff0000]Recent Changes[/color] + - Revolutionary rules have been added (#12, #16) - Silicon rules have been added (#23) - Security/command rules have been updated to address forced borging (#22) @@ -45,7 +46,7 @@ Should you need it. Some RP-specific documents available on the wiki such as Spa - [color=#ff0000]The arrivals station, shuttle, and general arrivals docking area are completely off-limits to any hostile activity, including activity by antagonists. Attacking newly spawned players in these areas or damaging/sabotaging these areas is strictly forbidden.[/color] - Do not intentionally make other players' lives hell for your own amusement. - [color=#ff0000]THE ROUND IS NOT OVER UNTIL THE GAME RETURNS TO THE LOBBY. ESCALATION AND SELF-ANTAG RULES APPLY EVEN AFTER THE ROUND SUMMARY APPEARS.[/color] - - Antagonists have a lot of leeway with this rule and may kill/sabotage as they see fit, however if your behavior degrades the experience for the majority of the server you will be told to stop. Antagonists are still forbidden from causing massive station damage early into the round (less than 30 minutes) and are forbidden from needlessly prolonging rounds. + - Antagonists have a lot of leeway with this rule and may kill/sabotage as they see fit, however if your behavior degrades the experience for the majority of the server you will be told to stop. Antagonists are still generally forbidden from causing massive station damage early into the round (less than 30 minutes) and are forbidden from needlessly prolonging rounds. For antagonist specific rules, see the "long" form of the rules at [color=#a4885c]wiki.spacestation14.io[/color]. [color=#a4885c]13.[/color] Don't harass or target players across rounds for actions in prior rounds or for actions outside of the game (this is referred to as "Metagrudging".) - Annoying players for IC reasons in the current round is fine; doing it across rounds or as a ghost role after they kill you is not. @@ -65,7 +66,7 @@ Should you need it. Some RP-specific documents available on the wiki such as Spa - Security may use less-lethal force to effect arrests of criminals. - Don't outright leave people to die if you get in a fight, make an effort to heal them or bring them to Medbay. - Adminhelp the situation if you think someone is over-escalating. - - Department strikes, revolutions (ex: cargonia and any variation thereof), riots, cults, and any other type of similar largely disruptive behavior are strictly forbidden. These activities are generally antagonist-only and all players regardless of antagonist status must obtain admin permission before engaging in this behavior (you are extremely unlikely to get permission). + - Department strikes, revolutions (ex: cargonia and any variation thereof), riots, cults, and any other type of similar largely disruptive behavior are strictly forbidden. Other than for revolutionary antagonists, these activities are strictly forbidden. All players, including antagonists other than revolutionaries, must obtain admin permission before engaging in this behavior (forewarning: you are unlikely to get permission). [color=#a4885c]17.[/color] Don't immediately ghost or suicide from your role if you do not get antagonist (referred to as "Antag-rolling") or from head roles without notifying your chain of command or administrators. - This is not fair to other players actually waiting patiently for an antagonist round. Alternatively, if you do not want to play an antagonist or do not want to cause conflict, do not opt-in for antagonist roles. diff --git a/Resources/Textures/Clothing/Eyes/Glasses/ninjavisor.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Glasses/ninjavisor.rsi/equipped-EYES.png new file mode 100644 index 00000000000..483d40449fb Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/ninjavisor.rsi/equipped-EYES.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/ninjavisor.rsi/icon.png b/Resources/Textures/Clothing/Eyes/Glasses/ninjavisor.rsi/icon.png new file mode 100644 index 00000000000..0911957a8d2 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/ninjavisor.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/ninjavisor.rsi/inhand-left.png b/Resources/Textures/Clothing/Eyes/Glasses/ninjavisor.rsi/inhand-left.png new file mode 100644 index 00000000000..ebd7858dabb Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/ninjavisor.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/ninjavisor.rsi/inhand-right.png b/Resources/Textures/Clothing/Eyes/Glasses/ninjavisor.rsi/inhand-right.png new file mode 100644 index 00000000000..53535a1de70 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Glasses/ninjavisor.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/ninjavisor.rsi/meta.json b/Resources/Textures/Clothing/Eyes/Glasses/ninjavisor.rsi/meta.json new file mode 100644 index 00000000000..f803400908a --- /dev/null +++ b/Resources/Textures/Clothing/Eyes/Glasses/ninjavisor.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from paradise station https://github.com/ParadiseSS13/Paradise/commit/ede55cc8f5b50abcd4f51d37779b56853a440a9a", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-EYES", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/icon-flash.png new file mode 100644 index 00000000000..865873709e8 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/icon.png new file mode 100644 index 00000000000..3b8c23b7b51 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/meta.json new file mode 100644 index 00000000000..d431123de2b --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/meta.json @@ -0,0 +1,41 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Texture edit from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "off-equipped-HELMET", + "directions": 4 + }, + { + "name": "off-inhand-left", + "directions": 4 + }, + { + "name": "off-inhand-right", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + }, + { + "name": "on-inhand-left", + "directions": 4 + }, + { + "name": "on-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-equipped-HELMET.png new file mode 100644 index 00000000000..95ed264c5e4 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-inhand-left.png new file mode 100644 index 00000000000..b26ae9a31f0 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-inhand-right.png new file mode 100644 index 00000000000..fc0edd4a972 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-equipped-HELMET.png new file mode 100644 index 00000000000..4377435a3b5 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-inhand-left.png new file mode 100644 index 00000000000..3f5034da6c0 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-inhand-right.png new file mode 100644 index 00000000000..45776a03b8e Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/equipped-HELMET.png index 123fa579d58..f5f0257ff70 100644 Binary files a/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/icon.png b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/icon.png index b814dfe5a57..78bbbcfd041 100644 Binary files a/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/icon.png and b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/inhand-left.png index ab59e3cee82..4585c268498 100644 Binary files a/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/inhand-left.png and b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/inhand-right.png index 6e43c65614a..7b005ddacb3 100644 Binary files a/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/inhand-right.png and b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/inhand-right.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 a470e009443..922cbddb201 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 tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation https://github.com/tgstation/tgstation (unknown commit)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodbartender.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodbartender.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..545e768afa9 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodbartender.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodbartender.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodbartender.rsi/icon.png new file mode 100644 index 00000000000..31748b953b5 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodbartender.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodbartender.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodbartender.rsi/meta.json new file mode 100644 index 00000000000..7867b11a028 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodbartender.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "By Gotimanga for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcaptain.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcaptain.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..82c14215c2e Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcaptain.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcaptain.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcaptain.rsi/icon.png new file mode 100644 index 00000000000..916da178317 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcaptain.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcaptain.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcaptain.rsi/meta.json new file mode 100644 index 00000000000..7867b11a028 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcaptain.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "By Gotimanga for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcargo.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcargo.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..2e1a158b935 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcargo.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcargo.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcargo.rsi/icon.png new file mode 100644 index 00000000000..f0829fd9cdc Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcargo.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcargo.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcargo.rsi/meta.json new file mode 100644 index 00000000000..7867b11a028 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcargo.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "By Gotimanga for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodce.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodce.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..4ad343716fb Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodce.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodce.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodce.rsi/icon.png new file mode 100644 index 00000000000..ed5d67b6864 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodce.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodce.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodce.rsi/meta.json new file mode 100644 index 00000000000..7867b11a028 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodce.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "By Gotimanga for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcentcom.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcentcom.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..48aa664be3b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcentcom.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcentcom.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcentcom.rsi/icon.png new file mode 100644 index 00000000000..806634d5a2a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcentcom.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcentcom.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcentcom.rsi/meta.json new file mode 100644 index 00000000000..7867b11a028 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcentcom.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "By Gotimanga for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodchemist.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodchemist.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..ffc3331016f Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodchemist.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodchemist.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodchemist.rsi/icon.png new file mode 100644 index 00000000000..b1ad4dfd7bb Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodchemist.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodchemist.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodchemist.rsi/meta.json new file mode 100644 index 00000000000..7867b11a028 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodchemist.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "By Gotimanga for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcmo.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcmo.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..5a573916039 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcmo.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcmo.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcmo.rsi/icon.png new file mode 100644 index 00000000000..2d94c9c11c7 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcmo.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcmo.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcmo.rsi/meta.json new file mode 100644 index 00000000000..7867b11a028 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodcmo.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "By Gotimanga for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hooddefault.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hooddefault.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..5cd3633a8ec Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hooddefault.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hooddefault.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hooddefault.rsi/icon.png new file mode 100644 index 00000000000..9421b9a13ba Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hooddefault.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hooddefault.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Coat/hooddefault.rsi/meta.json new file mode 100644 index 00000000000..7867b11a028 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/Coat/hooddefault.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "By Gotimanga for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodengi.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodengi.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..8994d31ba55 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodengi.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodengi.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodengi.rsi/icon.png new file mode 100644 index 00000000000..9a429c805af Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodengi.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodengi.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodengi.rsi/meta.json new file mode 100644 index 00000000000..7867b11a028 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodengi.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "By Gotimanga for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodhop.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodhop.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..6117c92a18f Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodhop.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodhop.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodhop.rsi/icon.png new file mode 100644 index 00000000000..97d0e02899a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodhop.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodhop.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodhop.rsi/meta.json new file mode 100644 index 00000000000..7867b11a028 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodhop.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "By Gotimanga for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodhos.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodhos.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..bbee5da1d9f Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodhos.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodhos.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodhos.rsi/icon.png new file mode 100644 index 00000000000..b678ba56b25 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodhos.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodhos.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodhos.rsi/meta.json new file mode 100644 index 00000000000..7867b11a028 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodhos.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "By Gotimanga for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodhydro.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodhydro.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..7665f462e5b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodhydro.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodhydro.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodhydro.rsi/icon.png new file mode 100644 index 00000000000..d7e71539f3f Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodhydro.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodhydro.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodhydro.rsi/meta.json new file mode 100644 index 00000000000..7867b11a028 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodhydro.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "By Gotimanga for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodjani.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodjani.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..7da921de208 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodjani.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodjani.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodjani.rsi/icon.png new file mode 100644 index 00000000000..115b9d52f62 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodjani.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodjani.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodjani.rsi/meta.json new file mode 100644 index 00000000000..7867b11a028 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodjani.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "By Gotimanga for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodmed.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodmed.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..35fa4c063b7 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodmed.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodmed.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodmed.rsi/icon.png new file mode 100644 index 00000000000..e4db6e62815 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodmed.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodmed.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodmed.rsi/meta.json new file mode 100644 index 00000000000..7867b11a028 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodmed.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "By Gotimanga for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodmime.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodmime.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..8168b93984b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodmime.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodmime.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodmime.rsi/icon.png new file mode 100644 index 00000000000..37dd35df2d7 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodmime.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodmime.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodmime.rsi/meta.json new file mode 100644 index 00000000000..7867b11a028 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodmime.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "By Gotimanga for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodminer.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodminer.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..3de5e6a4c9c Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodminer.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodminer.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodminer.rsi/icon.png new file mode 100644 index 00000000000..dd57205e7c2 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodminer.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodminer.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodminer.rsi/meta.json new file mode 100644 index 00000000000..7867b11a028 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodminer.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "By Gotimanga for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodpara.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodpara.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..93423160ebb Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodpara.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodpara.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodpara.rsi/icon.png new file mode 100644 index 00000000000..d2798bed108 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodpara.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodpara.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodpara.rsi/meta.json new file mode 100644 index 00000000000..7867b11a028 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodpara.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "By Gotimanga for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodqm.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodqm.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..05086177926 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodqm.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodqm.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodqm.rsi/icon.png new file mode 100644 index 00000000000..6960ae2a4ce Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodqm.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodqm.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodqm.rsi/meta.json new file mode 100644 index 00000000000..7867b11a028 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodqm.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "By Gotimanga for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodrd.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodrd.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..492ff07c74b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodrd.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodrd.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodrd.rsi/icon.png new file mode 100644 index 00000000000..dcf27214004 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodrd.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodrd.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodrd.rsi/meta.json new file mode 100644 index 00000000000..7867b11a028 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodrd.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "By Gotimanga for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodrobo.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodrobo.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..a881fb96ea6 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodrobo.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodrobo.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodrobo.rsi/icon.png new file mode 100644 index 00000000000..7ee0aa72881 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodrobo.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodrobo.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodrobo.rsi/meta.json new file mode 100644 index 00000000000..7867b11a028 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodrobo.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "By Gotimanga for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodsci.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodsci.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..1903db16396 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodsci.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodsci.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodsci.rsi/icon.png new file mode 100644 index 00000000000..6aa90be3998 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodsci.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodsci.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodsci.rsi/meta.json new file mode 100644 index 00000000000..7867b11a028 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodsci.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "By Gotimanga for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodsec.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodsec.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..f7e1738c32a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodsec.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodsec.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodsec.rsi/icon.png new file mode 100644 index 00000000000..37fbbfb0085 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodsec.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodsec.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodsec.rsi/meta.json new file mode 100644 index 00000000000..7867b11a028 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodsec.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "By Gotimanga for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodsyndicate.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodsyndicate.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..a9333c0f2ee Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodsyndicate.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodsyndicate.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodsyndicate.rsi/icon.png new file mode 100644 index 00000000000..5054e366432 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodsyndicate.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodsyndicate.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodsyndicate.rsi/meta.json new file mode 100644 index 00000000000..7867b11a028 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodsyndicate.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "By Gotimanga for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodweb.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodweb.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..44d6d0f9d4d Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodweb.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodweb.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodweb.rsi/icon.png new file mode 100644 index 00000000000..2cb0dde017c Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodweb.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Coat/hoodweb.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodweb.rsi/meta.json new file mode 100644 index 00000000000..5fb578edf1c --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/Coat/hoodweb.rsi/meta.json @@ -0,0 +1,16 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by PixelTheKermit (github) for SS14", + "size": {"x": 32, "y": 32}, + "states": + [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hoods/carpsuit.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/carpsuit.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..3bc71497553 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/carpsuit.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/carpsuit.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/carpsuit.rsi/icon.png new file mode 100644 index 00000000000..b57489f9ef2 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/carpsuit.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/carpsuit.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/carpsuit.rsi/meta.json new file mode 100644 index 00000000000..7d275df0348 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/carpsuit.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "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).", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hoods/iansuit.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/iansuit.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..25006c01106 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/iansuit.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/iansuit.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/iansuit.rsi/icon.png new file mode 100644 index 00000000000..32b21f4bb8e Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/iansuit.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/iansuit.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/iansuit.rsi/meta.json new file mode 100644 index 00000000000..7d275df0348 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hoods/iansuit.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "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).", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Mask/ninja.rsi/equipped-MASK.png b/Resources/Textures/Clothing/Mask/ninja.rsi/equipped-MASK.png new file mode 100644 index 00000000000..920dd4912eb Binary files /dev/null and b/Resources/Textures/Clothing/Mask/ninja.rsi/equipped-MASK.png differ diff --git a/Resources/Textures/Clothing/Mask/ninja.rsi/icon.png b/Resources/Textures/Clothing/Mask/ninja.rsi/icon.png new file mode 100644 index 00000000000..43dca0a7302 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/ninja.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Mask/ninja.rsi/inhand-left.png b/Resources/Textures/Clothing/Mask/ninja.rsi/inhand-left.png new file mode 100644 index 00000000000..900114c31e1 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/ninja.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Mask/ninja.rsi/inhand-right.png b/Resources/Textures/Clothing/Mask/ninja.rsi/inhand-right.png new file mode 100644 index 00000000000..def44f1b59b Binary files /dev/null and b/Resources/Textures/Clothing/Mask/ninja.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Mask/ninja.rsi/meta.json b/Resources/Textures/Clothing/Mask/ninja.rsi/meta.json new file mode 100644 index 00000000000..25dfc5f68c9 --- /dev/null +++ b/Resources/Textures/Clothing/Mask/ninja.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "By Jackal298 (github), based off of tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e and paradise at commit https://github.com/ParadiseSS13/Paradise/commit/33f7c1ef477fa67db5dda48078b469ab59aa7997", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-MASK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..9a49a516b52 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/icon.png new file mode 100644 index 00000000000..128c6375560 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/inhand-left.png new file mode 100644 index 00000000000..6b99071d3d5 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/inhand-right.png new file mode 100644 index 00000000000..b56335aef57 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/meta.json new file mode 100644 index 00000000000..d977572f2ab --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Texture edit from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/apronbar.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Misc/apronbar.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..00fe3aec287 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/apronbar.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/apronbar.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Misc/apronbar.rsi/icon.png new file mode 100644 index 00000000000..c5a8818ab5a Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/apronbar.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/apronbar.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Misc/apronbar.rsi/inhand-left.png new file mode 100644 index 00000000000..1d85911d8f9 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/apronbar.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/apronbar.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Misc/apronbar.rsi/inhand-right.png new file mode 100644 index 00000000000..c56d404c580 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/apronbar.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/apronbar.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/apronbar.rsi/meta.json new file mode 100644 index 00000000000..905cf722cea --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Misc/apronbar.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Edited from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/carpsuit.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Suits/carpsuit.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..0a2217753e0 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/carpsuit.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/carpsuit.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Suits/carpsuit.rsi/icon.png new file mode 100644 index 00000000000..400b17e96e2 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/carpsuit.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/carpsuit.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Suits/carpsuit.rsi/inhand-left.png new file mode 100644 index 00000000000..77189f4d7e4 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/carpsuit.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/carpsuit.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Suits/carpsuit.rsi/inhand-right.png new file mode 100644 index 00000000000..3fd6bdcdd4a Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/carpsuit.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/carpsuit.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/carpsuit.rsi/meta.json new file mode 100644 index 00000000000..542edf00024 --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Suits/carpsuit.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Modified by deltanedas (github).", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/iansuit.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Suits/iansuit.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..d4fdcc272f5 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/iansuit.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/iansuit.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Suits/iansuit.rsi/icon.png new file mode 100644 index 00000000000..2851091bf4a Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/iansuit.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/iansuit.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Suits/iansuit.rsi/inhand-left.png new file mode 100644 index 00000000000..4f0f0ea3a09 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/iansuit.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/iansuit.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Suits/iansuit.rsi/inhand-right.png new file mode 100644 index 00000000000..55246b7e154 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/iansuit.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/iansuit.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/iansuit.rsi/meta.json new file mode 100644 index 00000000000..542edf00024 --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Suits/iansuit.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Modified by deltanedas (github).", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatweb.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatweb.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..9da692ad05c Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatweb.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatweb.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatweb.rsi/icon.png new file mode 100644 index 00000000000..c422acede9d Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatweb.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatweb.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatweb.rsi/inhand-left.png new file mode 100644 index 00000000000..b1a7399ee1c Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatweb.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatweb.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatweb.rsi/inhand-right.png new file mode 100644 index 00000000000..26866c68095 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatweb.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatweb.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatweb.rsi/meta.json new file mode 100644 index 00000000000..5f1566a476d --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatweb.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by PixelTheKermit (github) for SS14", + "size": {"x": 32, "y": 32}, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/equipped-INNERCLOTHING-monkey.png new file mode 100644 index 00000000000..f142d6efc0c Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..71587c58788 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/icon.png new file mode 100644 index 00000000000..0d92af9ee15 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/inhand-left.png new file mode 100644 index 00000000000..1b40db931c9 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/inhand-right.png new file mode 100644 index 00000000000..5ba096c23a3 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/meta.json new file mode 100644 index 00000000000..425a857f025 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/meta.json @@ -0,0 +1,30 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Borrowed from QM turtleneck at https://github.com/space-wizards/space-station-14/tree/master/Resources/Textures/Clothing/Uniforms/Jumpskirt/qmturtleskirt.rsi and modified by KingFroozy (github) for space station 14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING-monkey", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/web.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/web.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..5ec4c37c608 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/web.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/web.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/web.rsi/icon.png new file mode 100644 index 00000000000..4a6afb144c4 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/web.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/web.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/web.rsi/inhand-left.png new file mode 100644 index 00000000000..1faa842d72c Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/web.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/web.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/web.rsi/inhand-right.png new file mode 100644 index 00000000000..1faa842d72c Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/web.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/web.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/web.rsi/meta.json new file mode 100644 index 00000000000..4fc9dca70e8 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/web.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by PixelTheKermit (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/ceturtle.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/equipped-INNERCLOTHING-monkey.png new file mode 100644 index 00000000000..afa10c94d47 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..d5dc5cd0a72 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/icon.png new file mode 100644 index 00000000000..2d5cfefadee Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/inhand-left.png new file mode 100644 index 00000000000..1b40db931c9 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/inhand-right.png new file mode 100644 index 00000000000..5ba096c23a3 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/meta.json new file mode 100644 index 00000000000..f61c82ce0e6 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/meta.json @@ -0,0 +1,30 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Borrowed from QM turtleneck at https://github.com/space-wizards/space-station-14/tree/master/Resources/Textures/Clothing/Uniforms/Jumpsuit/qmturtle.rsi and modified by KingFroozy (github) for space station 14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING-monkey", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..87282ec8420 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/icon.png new file mode 100644 index 00000000000..447174a09eb Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/inhand-left.png new file mode 100644 index 00000000000..558124e55c0 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/inhand-right.png new file mode 100644 index 00000000000..e1db9b0bda2 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/meta.json new file mode 100644 index 00000000000..b503d4acdef --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Modified by Jackal298 (github), based on paradise station at https://github.com/ParadiseSS13/Paradise/blob/ede55cc8f5b50abcd4f51d37779b56853a440a9a/icons/obj/clothing/uniforms.dmi", + "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/web.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/web.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..dd3000e9acc Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/web.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/web.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/web.rsi/icon.png new file mode 100644 index 00000000000..f2c1b915261 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/web.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/web.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/web.rsi/inhand-left.png new file mode 100644 index 00000000000..1faa842d72c Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/web.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/web.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/web.rsi/inhand-right.png new file mode 100644 index 00000000000..1faa842d72c Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/web.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/web.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/web.rsi/meta.json new file mode 100644 index 00000000000..4fc9dca70e8 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/web.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by PixelTheKermit (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/concretetrim.rsi/concrete_box.png b/Resources/Textures/Decals/concretetrim.rsi/concrete_box.png new file mode 100644 index 00000000000..534e6ea9e7a Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/concrete_box.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/concrete_corner_ne.png b/Resources/Textures/Decals/concretetrim.rsi/concrete_corner_ne.png new file mode 100644 index 00000000000..a82c3a9aaa7 Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/concrete_corner_ne.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/concrete_corner_nw.png b/Resources/Textures/Decals/concretetrim.rsi/concrete_corner_nw.png new file mode 100644 index 00000000000..516859190ed Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/concrete_corner_nw.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/concrete_corner_se.png b/Resources/Textures/Decals/concretetrim.rsi/concrete_corner_se.png new file mode 100644 index 00000000000..50ece48265c Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/concrete_corner_se.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/concrete_corner_sw.png b/Resources/Textures/Decals/concretetrim.rsi/concrete_corner_sw.png new file mode 100644 index 00000000000..a0cdd1fe1bc Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/concrete_corner_sw.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/concrete_end_e.png b/Resources/Textures/Decals/concretetrim.rsi/concrete_end_e.png new file mode 100644 index 00000000000..8d152b940d5 Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/concrete_end_e.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/concrete_end_n.png b/Resources/Textures/Decals/concretetrim.rsi/concrete_end_n.png new file mode 100644 index 00000000000..61711787177 Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/concrete_end_n.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/concrete_end_s.png b/Resources/Textures/Decals/concretetrim.rsi/concrete_end_s.png new file mode 100644 index 00000000000..f35a393411e Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/concrete_end_s.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/concrete_end_w.png b/Resources/Textures/Decals/concretetrim.rsi/concrete_end_w.png new file mode 100644 index 00000000000..9fa7e3d2af8 Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/concrete_end_w.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/concrete_inner_ne.png b/Resources/Textures/Decals/concretetrim.rsi/concrete_inner_ne.png new file mode 100644 index 00000000000..b35ef9cbcec Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/concrete_inner_ne.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/concrete_inner_nw.png b/Resources/Textures/Decals/concretetrim.rsi/concrete_inner_nw.png new file mode 100644 index 00000000000..68007e25f62 Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/concrete_inner_nw.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/concrete_inner_se.png b/Resources/Textures/Decals/concretetrim.rsi/concrete_inner_se.png new file mode 100644 index 00000000000..4e711962f9f Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/concrete_inner_se.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/concrete_inner_sw.png b/Resources/Textures/Decals/concretetrim.rsi/concrete_inner_sw.png new file mode 100644 index 00000000000..27a4be224d4 Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/concrete_inner_sw.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/concrete_line_e.png b/Resources/Textures/Decals/concretetrim.rsi/concrete_line_e.png new file mode 100644 index 00000000000..43d739faa4f Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/concrete_line_e.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/concrete_line_n.png b/Resources/Textures/Decals/concretetrim.rsi/concrete_line_n.png new file mode 100644 index 00000000000..04a435ad0ee Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/concrete_line_n.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/concrete_line_s.png b/Resources/Textures/Decals/concretetrim.rsi/concrete_line_s.png new file mode 100644 index 00000000000..e3a7c430312 Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/concrete_line_s.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/concrete_line_w.png b/Resources/Textures/Decals/concretetrim.rsi/concrete_line_w.png new file mode 100644 index 00000000000..334a9ae7de6 Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/concrete_line_w.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_box.png b/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_box.png new file mode 100644 index 00000000000..cd7a9399dc2 Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_box.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_corner_ne.png b/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_corner_ne.png new file mode 100644 index 00000000000..eb44d909412 Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_corner_ne.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_corner_nw.png b/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_corner_nw.png new file mode 100644 index 00000000000..181c0b25e7b Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_corner_nw.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_corner_se.png b/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_corner_se.png new file mode 100644 index 00000000000..446a92a999f Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_corner_se.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_corner_sw.png b/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_corner_sw.png new file mode 100644 index 00000000000..b36ddeb4d13 Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_corner_sw.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_end_e.png b/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_end_e.png new file mode 100644 index 00000000000..545434f4b1a Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_end_e.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_end_n.png b/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_end_n.png new file mode 100644 index 00000000000..944a240da5d Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_end_n.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_end_s.png b/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_end_s.png new file mode 100644 index 00000000000..b1f94877808 Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_end_s.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_end_w.png b/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_end_w.png new file mode 100644 index 00000000000..0600e7b8f6b Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_end_w.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_inner_ne.png b/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_inner_ne.png new file mode 100644 index 00000000000..746bae4450a Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_inner_ne.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_inner_nw.png b/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_inner_nw.png new file mode 100644 index 00000000000..a6c9eee3608 Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_inner_nw.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_inner_se.png b/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_inner_se.png new file mode 100644 index 00000000000..ddf69f6b250 Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_inner_se.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_inner_sw.png b/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_inner_sw.png new file mode 100644 index 00000000000..96088574ecf Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_inner_sw.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_line_e.png b/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_line_e.png new file mode 100644 index 00000000000..05fe9beec50 Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_line_e.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_line_n.png b/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_line_n.png new file mode 100644 index 00000000000..87a57df56dc Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_line_n.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_line_s.png b/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_line_s.png new file mode 100644 index 00000000000..fc59cd61ee9 Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_line_s.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_line_w.png b/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_line_w.png new file mode 100644 index 00000000000..72c9c2688d5 Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/grayconcrete_line_w.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/meta.json b/Resources/Textures/Decals/concretetrim.rsi/meta.json new file mode 100644 index 00000000000..2c43f0042df --- /dev/null +++ b/Resources/Textures/Decals/concretetrim.rsi/meta.json @@ -0,0 +1,164 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created by EmoGarbage404 (github) for Space Station 14.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "concrete_box" + }, + { + "name": "concrete_corner_ne" + }, + { + "name": "concrete_corner_se" + }, + { + "name": "concrete_corner_nw" + }, + { + "name": "concrete_corner_sw" + }, + { + "name": "concrete_end_n" + }, + { + "name": "concrete_end_e" + }, + { + "name": "concrete_end_s" + }, + { + "name": "concrete_end_w" + }, + { + "name": "concrete_line_n" + }, + { + "name": "concrete_line_e" + }, + { + "name": "concrete_line_s" + }, + { + "name": "concrete_line_w" + }, + { + "name": "concrete_inner_ne" + }, + { + "name": "concrete_inner_se" + }, + { + "name": "concrete_inner_nw" + }, + { + "name": "concrete_inner_sw" + }, + { + "name": "oldconcrete_box" + }, + { + "name": "oldconcrete_corner_ne" + }, + { + "name": "oldconcrete_corner_se" + }, + { + "name": "oldconcrete_corner_nw" + }, + { + "name": "oldconcrete_corner_sw" + }, + { + "name": "oldconcrete_end_n" + }, + { + "name": "oldconcrete_end_e" + }, + { + "name": "oldconcrete_end_s" + }, + { + "name": "oldconcrete_end_w" + }, + { + "name": "oldconcrete_line_n" + }, + { + "name": "oldconcrete_line_e" + }, + { + "name": "oldconcrete_line_s" + }, + { + "name": "oldconcrete_line_w" + }, + { + "name": "oldconcrete_inner_ne" + }, + { + "name": "oldconcrete_inner_se" + }, + { + "name": "oldconcrete_inner_nw" + }, + { + "name": "oldconcrete_inner_sw" + }, + { + "name": "grayconcrete_box" + }, + { + "name": "grayconcrete_corner_ne" + }, + { + "name": "grayconcrete_corner_se" + }, + { + "name": "grayconcrete_corner_nw" + }, + { + "name": "grayconcrete_corner_sw" + }, + { + "name": "grayconcrete_end_n" + }, + { + "name": "grayconcrete_end_e" + }, + { + "name": "grayconcrete_end_s" + }, + { + "name": "grayconcrete_end_w" + }, + { + "name": "grayconcrete_line_n" + }, + { + "name": "grayconcrete_line_e" + }, + { + "name": "grayconcrete_line_s" + }, + { + "name": "grayconcrete_line_w" + }, + { + "name": "grayconcrete_inner_ne" + }, + { + "name": "grayconcrete_inner_se" + }, + { + "name": "grayconcrete_inner_nw" + }, + { + "name": "grayconcrete_inner_sw" + } + ] +} diff --git a/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_box.png b/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_box.png new file mode 100644 index 00000000000..0e32ec59d56 Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_box.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_corner_ne.png b/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_corner_ne.png new file mode 100644 index 00000000000..ec12eb94b45 Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_corner_ne.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_corner_nw.png b/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_corner_nw.png new file mode 100644 index 00000000000..d4b7d57735e Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_corner_nw.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_corner_se.png b/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_corner_se.png new file mode 100644 index 00000000000..e91e805a2be Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_corner_se.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_corner_sw.png b/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_corner_sw.png new file mode 100644 index 00000000000..70940549d05 Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_corner_sw.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_end_e.png b/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_end_e.png new file mode 100644 index 00000000000..95ee21d3676 Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_end_e.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_end_n.png b/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_end_n.png new file mode 100644 index 00000000000..a7e0dd604e7 Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_end_n.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_end_s.png b/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_end_s.png new file mode 100644 index 00000000000..41e4324b08f Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_end_s.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_end_w.png b/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_end_w.png new file mode 100644 index 00000000000..af7804804c1 Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_end_w.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_inner_ne.png b/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_inner_ne.png new file mode 100644 index 00000000000..9721fbfa6ff Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_inner_ne.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_inner_nw.png b/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_inner_nw.png new file mode 100644 index 00000000000..6cb3b7cd4f2 Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_inner_nw.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_inner_se.png b/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_inner_se.png new file mode 100644 index 00000000000..4ca0b438e98 Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_inner_se.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_inner_sw.png b/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_inner_sw.png new file mode 100644 index 00000000000..a9e7c878879 Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_inner_sw.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_line_e.png b/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_line_e.png new file mode 100644 index 00000000000..d0153f54d6a Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_line_e.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_line_n.png b/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_line_n.png new file mode 100644 index 00000000000..d7d998bf56b Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_line_n.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_line_s.png b/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_line_s.png new file mode 100644 index 00000000000..502e0c605ab Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_line_s.png differ diff --git a/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_line_w.png b/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_line_w.png new file mode 100644 index 00000000000..5d2160260dd Binary files /dev/null and b/Resources/Textures/Decals/concretetrim.rsi/oldconcrete_line_w.png differ diff --git a/Resources/Textures/Effects/LightMasks/double_cone.png b/Resources/Textures/Effects/LightMasks/double_cone.png new file mode 100644 index 00000000000..469e222f445 Binary files /dev/null and b/Resources/Textures/Effects/LightMasks/double_cone.png differ diff --git a/Resources/Textures/Effects/creampie.rsi/creampie_arachnid.png b/Resources/Textures/Effects/creampie.rsi/creampie_arachnid.png new file mode 100644 index 00000000000..48aa4b5f119 Binary files /dev/null and b/Resources/Textures/Effects/creampie.rsi/creampie_arachnid.png differ diff --git a/Resources/Textures/Effects/creampie.rsi/meta.json b/Resources/Textures/Effects/creampie.rsi/meta.json index f5fe20f5d7d..54e0cc73c2b 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", + "copyright": "Taken from https://github.com/tgstation/tgstation at 0d9c9a8233dfc3fc55edc538955a761a6328bee0. creampie_moth by MilenVolf, creampie_arachnid by PixelTheKermit (Github)", "size": { "x": 32, "y": 32 @@ -10,6 +10,10 @@ { "name": "creampie_ai" }, + { + "name": "creampie_arachnid", + "directions": 4 + }, { "name": "creampie_corgi", "directions": 4 diff --git a/Resources/Textures/Effects/sparks.rsi/meta.json b/Resources/Textures/Effects/sparks.rsi/meta.json new file mode 100644 index 00000000000..43ce6cd1ccf --- /dev/null +++ b/Resources/Textures/Effects/sparks.rsi/meta.json @@ -0,0 +1,28 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Drawn by deltanedas (github) for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "sparks", + "delays": [ + [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + ] + } + ] +} diff --git a/Resources/Textures/Effects/sparks.rsi/sparks.png b/Resources/Textures/Effects/sparks.rsi/sparks.png new file mode 100644 index 00000000000..24a124a70bb Binary files /dev/null and b/Resources/Textures/Effects/sparks.rsi/sparks.png differ diff --git a/Resources/Textures/Effects/speech.rsi/meta.json b/Resources/Textures/Effects/speech.rsi/meta.json index 3210aa6881f..3f8f1d752a3 100644 --- a/Resources/Textures/Effects/speech.rsi/meta.json +++ b/Resources/Textures/Effects/speech.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24 | Moth sprites made by PuroSlavKing (Github)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24 | Moth sprites made by PuroSlavKing (Github) | Spider sprites made by PixelTheKermit (Github)", "states": [ { "name": "alien0", @@ -377,6 +377,23 @@ }, { "name": "syndibot2" + }, + { + "name": "spider0", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "spider1" + }, + { + "name": "spider2" } ] } diff --git a/Resources/Textures/Effects/speech.rsi/spider0.png b/Resources/Textures/Effects/speech.rsi/spider0.png new file mode 100644 index 00000000000..1fbe784fb06 Binary files /dev/null and b/Resources/Textures/Effects/speech.rsi/spider0.png differ diff --git a/Resources/Textures/Effects/speech.rsi/spider1.png b/Resources/Textures/Effects/speech.rsi/spider1.png new file mode 100644 index 00000000000..fa77a4316ee Binary files /dev/null and b/Resources/Textures/Effects/speech.rsi/spider1.png differ diff --git a/Resources/Textures/Effects/speech.rsi/spider2.png b/Resources/Textures/Effects/speech.rsi/spider2.png new file mode 100644 index 00000000000..10067b27b4c Binary files /dev/null and b/Resources/Textures/Effects/speech.rsi/spider2.png differ diff --git a/Resources/Textures/Effects/ssd.rsi/default0.png b/Resources/Textures/Effects/ssd.rsi/default0.png new file mode 100644 index 00000000000..bfd8c84da99 Binary files /dev/null and b/Resources/Textures/Effects/ssd.rsi/default0.png differ diff --git a/Resources/Textures/Effects/ssd.rsi/meta.json b/Resources/Textures/Effects/ssd.rsi/meta.json new file mode 100644 index 00000000000..6c5e7b24e33 --- /dev/null +++ b/Resources/Textures/Effects/ssd.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Take from https://github.com/Skyrat-SS13/Skyrat-tg/blob/92377cd6203bc4d93a6e289d7b857e19bb6cf338/modular_skyrat/modules/indicators/icons/ssd_indicator.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "default0" + } + ] +} diff --git a/Resources/Textures/Interface/Alerts/ninja_power.rsi/meta.json b/Resources/Textures/Interface/Alerts/ninja_power.rsi/meta.json new file mode 100644 index 00000000000..1985bc02368 --- /dev/null +++ b/Resources/Textures/Interface/Alerts/ninja_power.rsi/meta.json @@ -0,0 +1,131 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created by @deltanedas (github) for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "power7", + "delays": [ + [ + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25 + ] + ] + }, + { + "name": "power6", + "delays": [ + [ + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25 + ] + ] + }, + { + "name": "power5", + "delays": [ + [ + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25 + ] + ] + }, + { + "name": "power4", + "delays": [ + [ + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25 + ] + ] + }, + { + "name": "power3", + "delays": [ + [ + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25 + ] + ] + }, + { + "name": "power2", + "delays": [ + [ + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25 + ] + ] + }, + { + "name": "power1", + "delays": [ + [ + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25 + ] + ] + }, + { + "name": "power0", + "delays": [ + [ + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25 + ] + ] + } + ] +} diff --git a/Resources/Textures/Interface/Alerts/ninja_power.rsi/power0.png b/Resources/Textures/Interface/Alerts/ninja_power.rsi/power0.png new file mode 100644 index 00000000000..f9adec28ce4 Binary files /dev/null and b/Resources/Textures/Interface/Alerts/ninja_power.rsi/power0.png differ diff --git a/Resources/Textures/Interface/Alerts/ninja_power.rsi/power1.png b/Resources/Textures/Interface/Alerts/ninja_power.rsi/power1.png new file mode 100644 index 00000000000..14188591988 Binary files /dev/null and b/Resources/Textures/Interface/Alerts/ninja_power.rsi/power1.png differ diff --git a/Resources/Textures/Interface/Alerts/ninja_power.rsi/power2.png b/Resources/Textures/Interface/Alerts/ninja_power.rsi/power2.png new file mode 100644 index 00000000000..9a46893f7d3 Binary files /dev/null and b/Resources/Textures/Interface/Alerts/ninja_power.rsi/power2.png differ diff --git a/Resources/Textures/Interface/Alerts/ninja_power.rsi/power3.png b/Resources/Textures/Interface/Alerts/ninja_power.rsi/power3.png new file mode 100644 index 00000000000..1013fee8e49 Binary files /dev/null and b/Resources/Textures/Interface/Alerts/ninja_power.rsi/power3.png differ diff --git a/Resources/Textures/Interface/Alerts/ninja_power.rsi/power4.png b/Resources/Textures/Interface/Alerts/ninja_power.rsi/power4.png new file mode 100644 index 00000000000..39007c5bb9f Binary files /dev/null and b/Resources/Textures/Interface/Alerts/ninja_power.rsi/power4.png differ diff --git a/Resources/Textures/Interface/Alerts/ninja_power.rsi/power5.png b/Resources/Textures/Interface/Alerts/ninja_power.rsi/power5.png new file mode 100644 index 00000000000..b167d036111 Binary files /dev/null and b/Resources/Textures/Interface/Alerts/ninja_power.rsi/power5.png differ diff --git a/Resources/Textures/Interface/Alerts/ninja_power.rsi/power6.png b/Resources/Textures/Interface/Alerts/ninja_power.rsi/power6.png new file mode 100644 index 00000000000..be02bf0fde8 Binary files /dev/null and b/Resources/Textures/Interface/Alerts/ninja_power.rsi/power6.png differ diff --git a/Resources/Textures/Interface/Alerts/ninja_power.rsi/power7.png b/Resources/Textures/Interface/Alerts/ninja_power.rsi/power7.png new file mode 100644 index 00000000000..24438495858 Binary files /dev/null and b/Resources/Textures/Interface/Alerts/ninja_power.rsi/power7.png differ diff --git a/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/barrier.png b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/barrier.png new file mode 100644 index 00000000000..4f1838528b5 Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/barrier.png differ diff --git a/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/barrier_dead.png b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/barrier_dead.png new file mode 100644 index 00000000000..6e1a2ef956c Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/barrier_dead.png differ diff --git a/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/barrier_naked.png b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/barrier_naked.png new file mode 100644 index 00000000000..549d22ddc36 Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/barrier_naked.png differ diff --git a/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/barrier_naked_dead.png b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/barrier_naked_dead.png new file mode 100644 index 00000000000..2848b31904e Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/barrier_naked_dead.png differ diff --git a/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/crawler.png b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/crawler.png new file mode 100644 index 00000000000..a5d01771403 Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/crawler.png differ diff --git a/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/crawler_dead.png b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/crawler_dead.png new file mode 100644 index 00000000000..f834c686311 Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/crawler_dead.png differ diff --git a/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/enforcer.png b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/enforcer.png new file mode 100644 index 00000000000..13ed13490a4 Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/enforcer.png differ diff --git a/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/enforcer_dead.png b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/enforcer_dead.png new file mode 100644 index 00000000000..43fd1739687 Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/enforcer_dead.png differ diff --git a/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/fossilegg.png b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/fossilegg.png new file mode 100644 index 00000000000..42867c5a1a7 Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/fossilegg.png differ diff --git a/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/fossilegg_dead.png b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/fossilegg_dead.png new file mode 100644 index 00000000000..5cffc3647e5 Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/fossilegg_dead.png differ diff --git a/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/glider.png b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/glider.png new file mode 100644 index 00000000000..625aa43c252 Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/glider.png differ diff --git a/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/glider_dead.png b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/glider_dead.png new file mode 100644 index 00000000000..8d9b8599da9 Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/glider_dead.png differ diff --git a/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/harvester.png b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/harvester.png new file mode 100644 index 00000000000..7172da87c6e Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/harvester.png differ diff --git a/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/harvester_dead.png b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/harvester_dead.png new file mode 100644 index 00000000000..1ded3b7017c Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/harvester_dead.png differ diff --git a/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/meta.json b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/meta.json new file mode 100644 index 00000000000..735c837cff1 --- /dev/null +++ b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/meta.json @@ -0,0 +1,94 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by aleksh (discord) for Space Station 14.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "barrier", + "directions": 4 + }, + { + "name": "barrier_dead" + }, + { + "name": "barrier_naked", + "directions": 4 + }, + { + "name": "barrier_naked_dead" + }, + { + "name": "crawler", + "directions": 4 + }, + { + "name": "crawler_dead" + }, + { + "name": "enforcer", + "directions": 4 + }, + { + "name": "enforcer_dead" + }, + { + "name": "fossilegg" + }, + { + "name": "fossilegg_dead" + }, + { + "name": "glider", + "directions": 4 + }, + { + "name": "glider_dead" + }, + { + "name": "harvester", + "directions": 4 + }, + { + "name": "harvester_dead" + }, + { + "name": "molder", + "directions": 4 + }, + { + "name": "molder_dead" + }, + { + "name": "pouncer", + "directions": 4 + }, + { + "name": "pouncer_dead" + }, + { + "name": "skitter", + "directions": 4 + }, + { + "name": "skitter_dead" + }, + { + "name": "slurva", + "directions": 4 + }, + { + "name": "slurva_dead" + }, + { + "name": "swiper", + "directions": 4 + }, + { + "name": "swiper_dead" + } + ] +} diff --git a/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/molder.png b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/molder.png new file mode 100644 index 00000000000..27ef561fda8 Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/molder.png differ diff --git a/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/molder_dead.png b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/molder_dead.png new file mode 100644 index 00000000000..7be68d39689 Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/molder_dead.png differ diff --git a/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/pouncer.png b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/pouncer.png new file mode 100644 index 00000000000..4851d74541d Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/pouncer.png differ diff --git a/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/pouncer_dead.png b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/pouncer_dead.png new file mode 100644 index 00000000000..837082bb73d Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/pouncer_dead.png differ diff --git a/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/skitter.png b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/skitter.png new file mode 100644 index 00000000000..6966592dbf6 Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/skitter.png differ diff --git a/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/skitter_dead.png b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/skitter_dead.png new file mode 100644 index 00000000000..37ffa2e3ab3 Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/skitter_dead.png differ diff --git a/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/slurva.png b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/slurva.png new file mode 100644 index 00000000000..6160df6dab2 Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/slurva.png differ diff --git a/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/slurva_dead.png b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/slurva_dead.png new file mode 100644 index 00000000000..5c4822db8e2 Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/slurva_dead.png differ diff --git a/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/swiper.png b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/swiper.png new file mode 100644 index 00000000000..e09e85b6e84 Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/swiper.png differ diff --git a/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/swiper_dead.png b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/swiper_dead.png new file mode 100644 index 00000000000..f56a2d365af Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_common.rsi/swiper_dead.png differ diff --git a/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_large.rsi/founder.png b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_large.rsi/founder.png new file mode 100644 index 00000000000..bee5f29e719 Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_large.rsi/founder.png differ diff --git a/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_large.rsi/founder_dead.png b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_large.rsi/founder_dead.png new file mode 100644 index 00000000000..ae31cb9adcc Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_large.rsi/founder_dead.png differ diff --git a/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_large.rsi/leviathing.png b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_large.rsi/leviathing.png new file mode 100644 index 00000000000..6e0e9840fbb Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_large.rsi/leviathing.png differ diff --git a/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_large.rsi/leviathing_dead.png b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_large.rsi/leviathing_dead.png new file mode 100644 index 00000000000..601295858a3 Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_large.rsi/leviathing_dead.png differ diff --git a/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_large.rsi/meta.json b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_large.rsi/meta.json new file mode 100644 index 00000000000..a840690b0e1 --- /dev/null +++ b/Resources/Textures/Mobs/Aliens/Argocyte/argocyte_large.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by aleksh (discord) for Space Station 14.", + "size": { + "x": 64, + "y": 64 + }, + "states": [ + { + "name": "founder", + "directions": 4 + }, + { + "name": "founder_dead" + }, + { + "name": "leviathing", + "directions": 4 + }, + { + "name": "leviathing_dead" + } + ] +} diff --git a/Resources/Textures/Mobs/Aliens/Lavaland/watcher.rsi/base.png b/Resources/Textures/Mobs/Aliens/Lavaland/watcher.rsi/base.png new file mode 100644 index 00000000000..7ca0ca21f4d Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Lavaland/watcher.rsi/base.png differ diff --git a/Resources/Textures/Mobs/Aliens/Lavaland/watcher.rsi/dead-unshaded.png b/Resources/Textures/Mobs/Aliens/Lavaland/watcher.rsi/dead-unshaded.png new file mode 100644 index 00000000000..9ca59ddcfda Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Lavaland/watcher.rsi/dead-unshaded.png differ diff --git a/Resources/Textures/Mobs/Aliens/Lavaland/watcher.rsi/dead.png b/Resources/Textures/Mobs/Aliens/Lavaland/watcher.rsi/dead.png new file mode 100644 index 00000000000..b7255119368 Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Lavaland/watcher.rsi/dead.png differ diff --git a/Resources/Textures/Mobs/Aliens/Lavaland/watcher.rsi/meta.json b/Resources/Textures/Mobs/Aliens/Lavaland/watcher.rsi/meta.json new file mode 100644 index 00000000000..20360f4df2d --- /dev/null +++ b/Resources/Textures/Mobs/Aliens/Lavaland/watcher.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Citadel Station 13 at https://github.com/Citadel-Station-13/Citadel-Station-13/blob/a36c4fd163b1f36a3aaf766e32183ccb6304a561/icons/mob/lavaland/watcher.dmi. Cut into layers/modified by mirrorcult for SS14", + "size": { + "x": 54, + "y": 32 + }, + "states": [ + { + "name": "base", + "directions": 4 + }, + { + "name": "unshaded", + "directions": 4 + }, + { + "name": "dead" + }, + { + "name": "dead-unshaded" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Mobs/Aliens/Lavaland/watcher.rsi/unshaded.png b/Resources/Textures/Mobs/Aliens/Lavaland/watcher.rsi/unshaded.png new file mode 100644 index 00000000000..cb2cba29c88 Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Lavaland/watcher.rsi/unshaded.png differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/chipped.png b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/chipped.png deleted file mode 100644 index 96ec7b9a72f..00000000000 Binary files a/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/chipped.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/chipped_primary.png b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/chipped_primary.png new file mode 100644 index 00000000000..bcfe8f3a96f Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/chipped_primary.png differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/chipped_secondary.png b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/chipped_secondary.png new file mode 100644 index 00000000000..b6d8e6d3a79 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/chipped_secondary.png differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/curled.png b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/curled.png deleted file mode 100644 index a0cd22dcfcd..00000000000 Binary files a/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/curled.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/curled_primary.png b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/curled_primary.png new file mode 100644 index 00000000000..b928d2ec92e Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/curled_primary.png differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/curled_secondary.png b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/curled_secondary.png new file mode 100644 index 00000000000..4c2740d201a Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/curled_secondary.png differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/harvest.png b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/harvest.png deleted file mode 100644 index 90f0462b08a..00000000000 Binary files a/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/harvest.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/harvest_primary.png b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/harvest_primary.png new file mode 100644 index 00000000000..0ebf4a3f21c Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/harvest_primary.png differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/harvest_secondary.png b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/harvest_secondary.png new file mode 100644 index 00000000000..702423929df Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/harvest_secondary.png differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/long.png b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/long.png deleted file mode 100644 index e31689f6458..00000000000 Binary files a/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/long.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/long_primary.png b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/long_primary.png new file mode 100644 index 00000000000..3be5da120b2 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/long_primary.png differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/long_secondary.png b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/long_secondary.png new file mode 100644 index 00000000000..f940a233f7b Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/long_secondary.png differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/meta.json b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/meta.json index ca839aefd1b..a85abf1ddb8 100644 --- a/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/meta.json +++ b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/meta.json @@ -8,35 +8,67 @@ }, "states": [ { - "name": "long", + "name": "long_primary", "directions": 4 }, { - "name": "sharp", + "name": "long_secondary", "directions": 4 }, { - "name": "stingers", + "name": "sharp_primary", "directions": 4 }, { - "name": "curled", + "name": "sharp_secondary", "directions": 4 }, { - "name": "zigzag", + "name": "stingers_primary", "directions": 4 }, { - "name": "chipped", + "name": "stingers_secondary", "directions": 4 }, { - "name": "harvest", + "name": "curled_primary", "directions": 4 }, { - "name": "short", + "name": "curled_secondary", + "directions": 4 + }, + { + "name": "zigzag_primary", + "directions": 4 + }, + { + "name": "zigzag_secondary", + "directions": 4 + }, + { + "name": "chipped_primary", + "directions": 4 + }, + { + "name": "chipped_secondary", + "directions": 4 + }, + { + "name": "harvest_primary", + "directions": 4 + }, + { + "name": "harvest_secondary", + "directions": 4 + }, + { + "name": "short_primary", + "directions": 4 + }, + { + "name": "short_secondary", "directions": 4 } ] diff --git a/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/sharp.png b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/sharp.png deleted file mode 100644 index 6ecb263099d..00000000000 Binary files a/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/sharp.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/sharp_primary.png b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/sharp_primary.png new file mode 100644 index 00000000000..819336bd607 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/sharp_primary.png differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/sharp_secondary.png b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/sharp_secondary.png new file mode 100644 index 00000000000..c6cc1b90553 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/sharp_secondary.png differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/short.png b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/short.png deleted file mode 100644 index b7f5d8628fd..00000000000 Binary files a/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/short.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/short_primary.png b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/short_primary.png new file mode 100644 index 00000000000..f4fc44b767b Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/short_primary.png differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/short_secondary.png b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/short_secondary.png new file mode 100644 index 00000000000..9f56b0690c3 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/short_secondary.png differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/stingers.png b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/stingers.png deleted file mode 100644 index 69c277a2528..00000000000 Binary files a/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/stingers.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/stingers_primary.png b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/stingers_primary.png new file mode 100644 index 00000000000..c3cde078616 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/stingers_primary.png differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/stingers_secondary.png b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/stingers_secondary.png new file mode 100644 index 00000000000..0720706c4a0 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/stingers_secondary.png differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/zigzag.png b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/zigzag.png deleted file mode 100644 index c69ee19dbc3..00000000000 Binary files a/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/zigzag.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/zigzag_primary.png b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/zigzag_primary.png new file mode 100644 index 00000000000..a7b99cc5318 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/zigzag_primary.png differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/zigzag_secondary.png b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/zigzag_secondary.png new file mode 100644 index 00000000000..a32e1f7689b Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Arachnid/appendages.rsi/zigzag_secondary.png differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/arms.rsi/meta.json b/Resources/Textures/Mobs/Customization/Arachnid/arms.rsi/meta.json new file mode 100644 index 00000000000..903af3b690a --- /dev/null +++ b/Resources/Textures/Mobs/Customization/Arachnid/arms.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Nairodian (github) for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "stripes_left", + "directions": 4 + }, + { + "name": "stripes_right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Customization/Arachnid/arms.rsi/stripes_left.png b/Resources/Textures/Mobs/Customization/Arachnid/arms.rsi/stripes_left.png new file mode 100644 index 00000000000..1eb776b3f99 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Arachnid/arms.rsi/stripes_left.png differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/arms.rsi/stripes_right.png b/Resources/Textures/Mobs/Customization/Arachnid/arms.rsi/stripes_right.png new file mode 100644 index 00000000000..1d720831662 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Arachnid/arms.rsi/stripes_right.png differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/chelicerae.rsi/basic.png b/Resources/Textures/Mobs/Customization/Arachnid/chelicerae.rsi/downwards.png similarity index 100% rename from Resources/Textures/Mobs/Customization/Arachnid/chelicerae.rsi/basic.png rename to Resources/Textures/Mobs/Customization/Arachnid/chelicerae.rsi/downwards.png diff --git a/Resources/Textures/Mobs/Customization/Arachnid/chelicerae.rsi/inwards.png b/Resources/Textures/Mobs/Customization/Arachnid/chelicerae.rsi/inwards.png new file mode 100644 index 00000000000..6cf841387e4 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Arachnid/chelicerae.rsi/inwards.png differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/chelicerae.rsi/meta.json b/Resources/Textures/Mobs/Customization/Arachnid/chelicerae.rsi/meta.json index 0681c4e0122..93f8ac8e734 100644 --- a/Resources/Textures/Mobs/Customization/Arachnid/chelicerae.rsi/meta.json +++ b/Resources/Textures/Mobs/Customization/Arachnid/chelicerae.rsi/meta.json @@ -1,14 +1,18 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by PixelTheKermit (github) for SS14", + "copyright": "Downwards made by PixelTheKermit (github) for SS14. Inwards made by Nairodian (github) for SS14", "size": { "x": 32, "y": 32 }, "states": [ { - "name": "basic", + "name": "downwards", + "directions": 4 + }, + { + "name": "inwards", "directions": 4 } ] diff --git a/Resources/Textures/Mobs/Customization/Arachnid/chest.rsi/arrows.png b/Resources/Textures/Mobs/Customization/Arachnid/chest.rsi/arrows.png new file mode 100644 index 00000000000..3897e867421 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Arachnid/chest.rsi/arrows.png differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/chest.rsi/core.png b/Resources/Textures/Mobs/Customization/Arachnid/chest.rsi/core.png new file mode 100644 index 00000000000..46dc4559a38 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Arachnid/chest.rsi/core.png differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/chest.rsi/fiddleback.png b/Resources/Textures/Mobs/Customization/Arachnid/chest.rsi/fiddleback.png new file mode 100644 index 00000000000..857a4862bb8 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Arachnid/chest.rsi/fiddleback.png differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/chest.rsi/meta.json b/Resources/Textures/Mobs/Customization/Arachnid/chest.rsi/meta.json index 97c7e2107cb..727fcf1eec4 100644 --- a/Resources/Textures/Mobs/Customization/Arachnid/chest.rsi/meta.json +++ b/Resources/Textures/Mobs/Customization/Arachnid/chest.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by PixelTheKermit (github) for SS14", + "copyright": "Made by PixelTheKermit (github) for SS14. Arrows, core, fiddleback, skull and target made by Nairodian (github) for SS14.", "size": { "x": 32, "y": 32 @@ -38,6 +38,26 @@ { "name": "star", "directions": 4 + }, + { + "name": "arrows", + "directions": 4 + }, + { + "name": "core", + "directions": 4 + }, + { + "name": "fiddleback", + "directions": 4 + }, + { + "name": "skull", + "directions": 4 + }, + { + "name": "target", + "directions": 4 } ] } diff --git a/Resources/Textures/Mobs/Customization/Arachnid/chest.rsi/skull.png b/Resources/Textures/Mobs/Customization/Arachnid/chest.rsi/skull.png new file mode 100644 index 00000000000..468d543c466 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Arachnid/chest.rsi/skull.png differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/chest.rsi/target.png b/Resources/Textures/Mobs/Customization/Arachnid/chest.rsi/target.png new file mode 100644 index 00000000000..85f8a5aa1f7 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Arachnid/chest.rsi/target.png differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/legs.rsi/meta.json b/Resources/Textures/Mobs/Customization/Arachnid/legs.rsi/meta.json new file mode 100644 index 00000000000..903af3b690a --- /dev/null +++ b/Resources/Textures/Mobs/Customization/Arachnid/legs.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Nairodian (github) for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "stripes_left", + "directions": 4 + }, + { + "name": "stripes_right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Customization/Arachnid/legs.rsi/stripes_left.png b/Resources/Textures/Mobs/Customization/Arachnid/legs.rsi/stripes_left.png new file mode 100644 index 00000000000..132b7aa7096 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Arachnid/legs.rsi/stripes_left.png differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/legs.rsi/stripes_right.png b/Resources/Textures/Mobs/Customization/Arachnid/legs.rsi/stripes_right.png new file mode 100644 index 00000000000..1ff36589b83 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Arachnid/legs.rsi/stripes_right.png differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/overlay.rsi/fuzzy.png b/Resources/Textures/Mobs/Customization/Arachnid/overlay.rsi/fuzzy.png new file mode 100644 index 00000000000..53c581a59b5 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Arachnid/overlay.rsi/fuzzy.png differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/overlay.rsi/meta.json b/Resources/Textures/Mobs/Customization/Arachnid/overlay.rsi/meta.json new file mode 100644 index 00000000000..5c8c06456fb --- /dev/null +++ b/Resources/Textures/Mobs/Customization/Arachnid/overlay.rsi/meta.json @@ -0,0 +1,15 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Nairodian (github) for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "fuzzy", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Customization/diona.rsi/meta.json b/Resources/Textures/Mobs/Customization/diona.rsi/meta.json index 64f27eeb5f4..833c9404698 100644 --- a/Resources/Textures/Mobs/Customization/diona.rsi/meta.json +++ b/Resources/Textures/Mobs/Customization/diona.rsi/meta.json @@ -75,6 +75,10 @@ "name": "oak", "directions": 4 }, + { + "name": "overlay", + "directions": 4 + }, { "name": "palm", "directions": 4 diff --git a/Resources/Textures/Mobs/Customization/diona.rsi/overlay.png b/Resources/Textures/Mobs/Customization/diona.rsi/overlay.png new file mode 100644 index 00000000000..502a5c3fff3 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/diona.rsi/overlay.png differ diff --git a/Resources/Textures/Mobs/Customization/eyes.rsi/diona.png b/Resources/Textures/Mobs/Customization/eyes.rsi/diona.png new file mode 100644 index 00000000000..2b621dcbc90 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/eyes.rsi/diona.png differ diff --git a/Resources/Textures/Mobs/Customization/eyes.rsi/meta.json b/Resources/Textures/Mobs/Customization/eyes.rsi/meta.json index 0dd18850b64..cb94dfab3e1 100644 --- a/Resources/Textures/Mobs/Customization/eyes.rsi/meta.json +++ b/Resources/Textures/Mobs/Customization/eyes.rsi/meta.json @@ -1 +1 @@ -{"version": 1, "license": "CC-BY-SA-3.0","copyright": "Vox_eyes Taken from https://github.com/vgstation-coders/vgstation13 at 02ff588d59b3c560c685d9ca75e882d32a72d8cb and human_eyes taken from https://github.com/tgstation/tgstation/blob/8024397cc81c5f47f74cf4279e35728487d0a1a7/icons/mob/human_parts_greyscale.dmi and modified by DrSmugleaf", "size": {"x": 32, "y": 32}, "states": [{"name": "eyes", "directions": 4}, {"name":"no_eyes"},{"name": "vox_eyes_s", "directions": 4}]} +{"version": 1, "license": "CC-BY-SA-3.0","copyright": "Vox_eyes Taken from https://github.com/vgstation-coders/vgstation13 at 02ff588d59b3c560c685d9ca75e882d32a72d8cb and human_eyes taken from https://github.com/tgstation/tgstation/blob/8024397cc81c5f47f74cf4279e35728487d0a1a7/icons/mob/human_parts_greyscale.dmi and modified by DrSmugleaf", "size": {"x": 32, "y": 32}, "states": [{"name": "diona", "directions": 4}, {"name": "eyes", "directions": 4}, {"name":"no_eyes"},{"name": "vox_eyes_s", "directions": 4}]} diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/80s.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/80s.png index 01a5d8d48a9..2cd7d11cbdf 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/80s.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/80s.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/a.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/a.png index f486d0907e1..2374b91b74b 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/a.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/a.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/afro.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/afro.png index de88e7b2360..ce96d2b85ad 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/afro.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/afro.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/afro2.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/afro2.png index 120b08142ec..fc734efcb2a 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/afro2.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/afro2.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/antenna.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/antenna.png index 680e3f8adf6..4ca11c36ec2 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/antenna.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/antenna.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/b.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/b.png index 96b190578e6..f5640bd418a 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/b.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/b.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/bedhead.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/bedhead.png index 80d1dedfcb4..2395293e909 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/bedhead.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/bedhead.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/bedheadv2.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/bedheadv2.png index 45e9fce3ea0..6f3a7f3e0c3 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/bedheadv2.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/bedheadv2.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/bedheadv3.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/bedheadv3.png index 8488c4bc393..60f27038480 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/bedheadv3.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/bedheadv3.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/beehive.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/beehive.png index 9a0786f723e..158087bba52 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/beehive.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/beehive.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/beehivev2.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/beehivev2.png index 752eeb62c75..eafd765f3df 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/beehivev2.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/beehivev2.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/bigafro.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/bigafro.png index 0ff32214e7c..dcbf0da92c5 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/bigafro.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/bigafro.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/bigflattop.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/bigflattop.png index 2d428038200..1f8965adb35 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/bigflattop.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/bigflattop.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/bigpompadour.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/bigpompadour.png index 191c3bf581a..3e7bf29bc98 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/bigpompadour.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/bigpompadour.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/bob.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/bob.png index 0d296f9a5bc..6c14a22c51d 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/bob.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/bob.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/bob2.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/bob2.png index fa880b45b0a..78e48f2958b 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/bob2.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/bob2.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/bob4.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/bob4.png index 1793688a9b3..7e266e00347 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/bob4.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/bob4.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/bobcurl.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/bobcurl.png index a759349dbea..5280aa77b84 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/bobcurl.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/bobcurl.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/bobcut.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/bobcut.png index 2829a065ffc..a796a8296bb 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/bobcut.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/bobcut.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/boddicker.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/boddicker.png index 8e1eda60173..cd9e7afc829 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/boddicker.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/boddicker.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/bowlcut.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/bowlcut.png index 77ed54e46a1..86c508d7bce 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/bowlcut.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/bowlcut.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/bowlcut2.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/bowlcut2.png index 827f9cf29c1..2caeed0331f 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/bowlcut2.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/bowlcut2.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/braid.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/braid.png index 4f4be178f14..df97dbd8530 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/braid.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/braid.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/braid2.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/braid2.png index d1095332cc9..173913ff0d9 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/braid2.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/braid2.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/braided.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/braided.png index 6cb777194ae..9049bbbd416 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/braided.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/braided.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/braidfront.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/braidfront.png index 4001c91ef36..3be99a862cb 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/braidfront.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/braidfront.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/braidtail.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/braidtail.png index b482bd71237..64c0314be51 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/braidtail.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/braidtail.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/bun.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/bun.png index 6bb9a678dc4..9c8d4a34562 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/bun.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/bun.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/bun3.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/bun3.png index f73baba4399..a7aee4ccae9 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/bun3.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/bun3.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/bunhead2.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/bunhead2.png index a0cf5253855..4f2fa2a7149 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/bunhead2.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/bunhead2.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/business.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/business.png index fae2a8601a3..886bf20e681 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/business.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/business.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/business2.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/business2.png index 4c2a82d9d38..80ce6c04f32 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/business2.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/business2.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/business3.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/business3.png index b37d0016f6d..cce67138503 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/business3.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/business3.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/business4.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/business4.png index 6d98636d0c1..d74d4c32d7d 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/business4.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/business4.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/buzzcut.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/buzzcut.png index 6c74b38d48c..5b4ba2b5e66 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/buzzcut.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/buzzcut.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/c.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/c.png index 2b4853165fb..fda86b250ca 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/c.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/c.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/cia.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/cia.png index 64c2c723779..46c52632346 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/cia.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/cia.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/classicafro.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/classicafro.png new file mode 100644 index 00000000000..de88e7b2360 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/human_hair.rsi/classicafro.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/classicbigafro.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/classicbigafro.png new file mode 100644 index 00000000000..0ff32214e7c Binary files /dev/null and b/Resources/Textures/Mobs/Customization/human_hair.rsi/classicbigafro.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/classiccia.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/classiccia.png new file mode 100644 index 00000000000..64c2c723779 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/human_hair.rsi/classiccia.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/classicfloorlength_bedhead.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/classicfloorlength_bedhead.png new file mode 100644 index 00000000000..69ac527ec7e Binary files /dev/null and b/Resources/Textures/Mobs/Customization/human_hair.rsi/classicfloorlength_bedhead.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/classicmodern.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/classicmodern.png new file mode 100644 index 00000000000..bf90a95b449 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/human_hair.rsi/classicmodern.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/classicmulder.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/classicmulder.png new file mode 100644 index 00000000000..09c513d9144 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/human_hair.rsi/classicmulder.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/classicwisp.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/classicwisp.png new file mode 100644 index 00000000000..da029b88708 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/human_hair.rsi/classicwisp.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/coffeehouse.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/coffeehouse.png index cf08909e6e9..f6b6eb18d3f 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/coffeehouse.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/coffeehouse.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/combover.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/combover.png index b78a7dd43ea..cf1bb1d928d 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/combover.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/combover.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/cornrowbraid.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/cornrowbraid.png index 7497d640890..ab03d6d789d 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/cornrowbraid.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/cornrowbraid.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/cornrowbun.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/cornrowbun.png index 0581f401a0f..f956bca3a14 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/cornrowbun.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/cornrowbun.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/cornrows.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/cornrows.png index 9ac651ae560..5102f25a64e 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/cornrows.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/cornrows.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/cornrows2.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/cornrows2.png index 18438ab72db..b2a7abdd85b 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/cornrows2.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/cornrows2.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/cornrowtail.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/cornrowtail.png index 1c274f8d0d2..6f9dc00575a 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/cornrowtail.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/cornrowtail.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/country.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/country.png index 1a884cab24e..9e676ca9da5 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/country.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/country.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/crewcut.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/crewcut.png index 2209a9ce837..a7a55f65764 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/crewcut.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/crewcut.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/curls.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/curls.png index daa504c0d2a..0865e071d6f 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/curls.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/curls.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/d.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/d.png index 84faca304fb..d224d7ba212 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/d.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/d.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/dandypompadour.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/dandypompadour.png index dc61773edef..5999819792d 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/dandypompadour.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/dandypompadour.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/devilock.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/devilock.png index 8e56f372791..889c95ac1a7 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/devilock.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/devilock.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/doublebun.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/doublebun.png index 82e47a51ed2..197aa6b1153 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/doublebun.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/doublebun.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/dreads.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/dreads.png index dfdbd76bc7b..ba253ae7b5b 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/dreads.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/dreads.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/drillhair.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/drillhair.png index 8a58e61e043..5b60c5c71f1 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/drillhair.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/drillhair.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/drillhairextended.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/drillhairextended.png index ed14650b15f..0e0630ee569 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/drillhairextended.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/drillhairextended.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/drillruru.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/drillruru.png index ee494fd6deb..7085f3467ad 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/drillruru.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/drillruru.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/e.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/e.png index 50d68aab4e9..a9ba1c0fe27 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/e.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/e.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/emo.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/emo.png index 6cbf22270a8..4a28ac83d9b 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/emo.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/emo.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/emo2.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/emo2.png index 1ebf91b332b..c584ffeb5f5 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/emo2.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/emo2.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/emofringe.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/emofringe.png index b0b2eb1000a..bb726b78ba5 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/emofringe.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/emofringe.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/f.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/f.png index 01e50a9095b..681ad4359d2 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/f.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/f.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/father.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/father.png index 3a071d595f2..f88dc5f8348 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/father.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/father.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/feather.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/feather.png index 2b799f9ae2b..3de593b531a 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/feather.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/feather.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/flair.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/flair.png index 32f1ca73249..52be7da1d4a 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/flair.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/flair.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/floorlength_bedhead.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/floorlength_bedhead.png index 69ac527ec7e..5cb9890d7f8 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/floorlength_bedhead.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/floorlength_bedhead.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/fringetail.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/fringetail.png index 07c07a2022e..ae207592fe4 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/fringetail.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/fringetail.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/gelled.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/gelled.png index c301b4afeca..6f682dd4f62 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/gelled.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/gelled.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/gentle.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/gentle.png index 636636bffd1..4850c3c41da 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/gentle.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/gentle.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/halfbang.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/halfbang.png index d92e55c0795..2cb8e66c800 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/halfbang.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/halfbang.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/halfbang2.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/halfbang2.png index 4c5fa641415..d75adefd126 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/halfbang2.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/halfbang2.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/halfshaved.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/halfshaved.png index b895d4e8ffe..11a68afd189 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/halfshaved.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/halfshaved.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/hbraid.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/hbraid.png index dd2c4f58ac6..36e4b3b80b1 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/hbraid.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/hbraid.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/hedgehog.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/hedgehog.png index f339f0d783c..5b76221ffd0 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/hedgehog.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/hedgehog.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/highponytail.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/highponytail.png index 043bc02dd7c..7a6578674e2 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/highponytail.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/highponytail.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/himecut.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/himecut.png index 6d9658771d0..d86894f8647 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/himecut.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/himecut.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/himecut2.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/himecut2.png index 55ec01ed675..131e5fe07c0 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/himecut2.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/himecut2.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/himeup.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/himeup.png index d49ae065555..a7645adde78 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/himeup.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/himeup.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/hitop.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/hitop.png index ff41757cd99..71245c8ea37 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/hitop.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/hitop.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/jade.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/jade.png index 3d05a94fdec..15869cd3cad 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/jade.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/jade.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/jensen.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/jensen.png index 3851931b277..aaaefb53e91 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/jensen.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/jensen.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/joestar.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/joestar.png index 6e0008fb7da..b29d83e0b37 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/joestar.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/joestar.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/kagami.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/kagami.png index afe8711f3ae..db7eaf05bea 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/kagami.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/kagami.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/keanu.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/keanu.png index 66cbc22dab7..99180eb0ae5 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/keanu.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/keanu.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/kusanagi.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/kusanagi.png index f2634df3d35..3874b4259e3 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/kusanagi.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/kusanagi.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/largebun.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/largebun.png index cc32927d71e..7424ea8a3a5 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/largebun.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/largebun.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/lbangs.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/lbangs.png index 66c87a689b7..c693ef0c575 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/lbangs.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/lbangs.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/long.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/long.png index 39721687cc6..98abba96f55 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/long.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/long.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/long2.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/long2.png index 950bc1430b4..4bf29c6c3c9 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/long2.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/long2.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/long3.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/long3.png index bc7eb6ea061..6597c3a3d0e 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/long3.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/long3.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/long_bedhead.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/long_bedhead.png index 12520f077da..77af16a5fc0 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/long_bedhead.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/long_bedhead.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/longemo.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/longemo.png index 53173aeaf90..6f503d5421f 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/longemo.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/longemo.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/longest.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/longest.png index a40e5de01cd..0ce93800109 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/longest.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/longest.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/longest2.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/longest2.png index dfb568146d3..36e0a6b0f3d 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/longest2.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/longest2.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/longfringe.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/longfringe.png index 086f9386842..9eb3cdeeaa7 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/longfringe.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/longfringe.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/longovereye.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/longovereye.png index df5ee761b84..bfd6eedf5cb 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/longovereye.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/longovereye.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/longsidepart.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/longsidepart.png index ab0fde34e98..3596bc17400 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/longsidepart.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/longsidepart.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/longstraightponytail.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/longstraightponytail.png index a39ccad5187..7e1d7881251 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/longstraightponytail.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/longstraightponytail.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/lowfade.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/lowfade.png index 0df2581594a..c2e71b68422 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/lowfade.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/lowfade.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/manbun.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/manbun.png index 032c5389503..14454aa2a5b 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/manbun.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/manbun.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/medfade.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/medfade.png index b880f19a616..4072fca7d02 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/medfade.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/medfade.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/megaeyebrows.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/megaeyebrows.png index 6171d0b8286..74d3cd6eb81 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/megaeyebrows.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/megaeyebrows.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/messy.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/messy.png index c937d909719..82d0027b1df 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/messy.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/messy.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 bcc8b563028..0a16a117b80 100644 --- a/Resources/Textures/Mobs/Customization/human_hair.rsi/meta.json +++ b/Resources/Textures/Mobs/Customization/human_hair.rsi/meta.json @@ -1 +1 @@ -{"version":1,"size":{"x":32,"y":32},"copyright":"Taken from https://github.com/tgstation/tgstation/blob/05ec94e46349c35e29ca91e5e97d0c88ae26ad44/icons/mob/species/human/human_face.dmi","license":"CC-BY-SA-3.0","states":[{"name":"80s","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"a","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"afro","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"afro2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"antenna","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"b","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"baldfade","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bedhead","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bedheadv2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bedheadv3","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"beehive","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"beehivev2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bigafro","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bigflattop","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bigpompadour","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bob","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bob2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bob4","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bobcurl","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bobcut","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"boddicker","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bowlcut","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bowlcut2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"braid","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"braid2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"braided","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"braidfront","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"braidtail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bun","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bun3","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bunhead2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"business","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"business2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"business3","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"business4","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"buzzcut","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"c","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"cia","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"coffeehouse","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"combover","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"cornrowbraid","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"cornrowbun","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"cornrows","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"cornrows2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"cornrowtail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"country","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"crewcut","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"curls","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"d","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"dandypompadour","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"devilock","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"doublebun","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"dreads","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"drillhair","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"drillhairextended","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"drillruru","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"e","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"emo","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"emo2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"emofringe","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"f","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"father","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"feather","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"flair","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"floorlength_bedhead","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"fringetail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"gelled","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"gentle","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"halfbang","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"halfbang2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"halfshaved","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"hbraid","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"hedgehog","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"highfade","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"highponytail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"himecut","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"himecut2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"himeup","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"hitop","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"jade","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"jensen","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"joestar","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"kagami","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"keanu","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"kusanagi","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"largebun","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"lbangs","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"long","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"long2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"long3","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"long_bedhead","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"longemo","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"longest","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"longest2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"longfringe","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"longovereye","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"longsidepart","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"longstraightponytail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"lowfade","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"manbun","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"medfade","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"megaeyebrows","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"messy","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"modern","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"mulder","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"nitori","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"nofade","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"odango","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ombre","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"oneshoulder","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"oxton","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"part","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"parted","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"pigtails","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"pigtails2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"pixie","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"pompadour","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ponytail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ponytail2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ponytail3","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ponytail4","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ponytail5","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ponytail6","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ponytail7","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"poofy","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"protagonist","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"quiff","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"reversemohawk","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ronin","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"rosa","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"sargeant","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shaved","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shavedmohawk","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shavedpart","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shortbangs","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shortbraid","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shorthair2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shorthair3","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shorthairg","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shorthime","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shortovereye","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"sidecut","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"sidetail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"sidetail2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"sidetail3","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"sidetail4","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"skinhead","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"spikey","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"spiky","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"spiky2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"spikyponytail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"stail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"swept","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"swept2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"thinning","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"thinningfront","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"thinningrear","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"tightbun","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"topknot","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"tressshoulder","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"trimflat","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"trimmed","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"twintail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"undercut","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"undercutleft","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"undercutright","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"unkept","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"unshaven_mohawk","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"updo","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"veryshortovereyealternate","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"vlong","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"vlongfringe","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"volaju","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"wisp","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bald","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]}]} \ No newline at end of file +{"version":1,"size":{"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","license":"CC-BY-SA-3.0","states":[{"name":"80s","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"a","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"afro","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"afro2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"antenna","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"b","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"baldfade","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bedhead","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bedheadv2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bedheadv3","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"beehive","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"beehivev2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bigafro","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bigflattop","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bigpompadour","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bob","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bob2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bob4","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bobcurl","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bobcut","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"boddicker","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bowlcut","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bowlcut2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"braid","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"braid2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"braided","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"braidfront","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"braidtail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bun","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bun3","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bunhead2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"business","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"business2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"business3","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"business4","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"buzzcut","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"c","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"classicafro","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"classicbigafro","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"classiccia","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"classicfloorlength_bedhead","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"classicmodern","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"classicmulder","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"classicwisp","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"cia","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"coffeehouse","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"combover","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"cornrowbraid","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"cornrowbun","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"cornrows","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"cornrows2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"cornrowtail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"country","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"crewcut","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"curls","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"d","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"dandypompadour","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"devilock","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"doublebun","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"dreads","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"drillhair","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"drillhairextended","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"drillruru","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"e","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"emo","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"emo2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"emofringe","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"f","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"father","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"feather","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"flair","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"floorlength_bedhead","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"fringetail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"gelled","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"gentle","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"halfbang","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"halfbang2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"halfshaved","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"hbraid","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"hedgehog","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"highfade","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"highponytail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"himecut","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"himecut2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"himeup","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"hitop","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"jade","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"jensen","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"joestar","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"kagami","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"keanu","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"kusanagi","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"largebun","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"lbangs","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"long","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"long2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"long3","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"long_bedhead","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"longemo","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"longest","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"longest2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"longfringe","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"longovereye","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"longsidepart","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"longstraightponytail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"lowfade","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"manbun","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"medfade","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"megaeyebrows","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"messy","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"modern","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"mulder","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"nitori","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"nofade","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"odango","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ombre","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"oneshoulder","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"oxton","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"part","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"parted","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"pigtails","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"pigtails2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"pixie","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"pompadour","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ponytail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ponytail2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ponytail3","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ponytail4","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ponytail5","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ponytail6","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ponytail7","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"poofy","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"protagonist","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"quiff","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"reversemohawk","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ronin","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"rosa","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"sargeant","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shaved","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shavedmohawk","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shavedpart","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shortbangs","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shortbraid","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shorthair2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shorthair3","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shorthairg","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shorthime","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shortovereye","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"sidecut","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"sidetail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"sidetail2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"sidetail3","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"sidetail4","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"skinhead","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"spikey","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"spiky","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"spiky2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"spikyponytail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"stail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"swept","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"swept2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"thinning","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"thinningfront","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"thinningrear","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"tightbun","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"topknot","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"tressshoulder","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"trimflat","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"trimmed","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"twintail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"undercut","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"undercutleft","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"undercutright","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"unkept","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"unshaven_mohawk","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"updo","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"veryshortovereyealternate","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"vlong","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"vlongfringe","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"volaju","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"wisp","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bald","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]}]} diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/modern.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/modern.png index bf90a95b449..6e20068e019 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/modern.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/modern.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/mulder.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/mulder.png index 09c513d9144..ee10e16b3ba 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/mulder.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/mulder.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/nitori.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/nitori.png index 07f00ac62ed..d5603ad9665 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/nitori.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/nitori.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/nofade.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/nofade.png index 7d5d8c15904..8a671011a7a 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/nofade.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/nofade.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/odango.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/odango.png index fb3a219c638..87c5bffa607 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/odango.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/odango.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/ombre.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/ombre.png index a385a736325..6cb1a4b0013 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/ombre.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/ombre.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/oneshoulder.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/oneshoulder.png index 091811ef451..c4d254ded9c 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/oneshoulder.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/oneshoulder.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/oxton.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/oxton.png index b5252caefba..284322f523d 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/oxton.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/oxton.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/part.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/part.png index ba8dd572f51..ea54749d804 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/part.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/part.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/parted.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/parted.png index 12bc2011f3a..c7112788abf 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/parted.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/parted.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/pigtails.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/pigtails.png index f8afec3aca2..cd420bdc3fc 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/pigtails.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/pigtails.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/pigtails2.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/pigtails2.png index b065c433c1a..88224c4eedb 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/pigtails2.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/pigtails2.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/pixie.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/pixie.png index 28e7281cd50..bd121e1a48b 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/pixie.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/pixie.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/pompadour.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/pompadour.png index d4e96f3a39b..46fa022655b 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/pompadour.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/pompadour.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/ponytail.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/ponytail.png index 91b015cb53e..286f0f4441d 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/ponytail.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/ponytail.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/ponytail2.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/ponytail2.png index 05ff8bf9468..50fea0a2742 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/ponytail2.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/ponytail2.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/ponytail3.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/ponytail3.png index f10133a1229..c26fbc8124d 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/ponytail3.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/ponytail3.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/ponytail4.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/ponytail4.png index 78d64ea95fa..248583b1f7e 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/ponytail4.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/ponytail4.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/ponytail5.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/ponytail5.png index b1a876688f6..0f80daa9e69 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/ponytail5.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/ponytail5.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/ponytail6.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/ponytail6.png index 3ec8af1b3b0..82d14d82aa1 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/ponytail6.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/ponytail6.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/ponytail7.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/ponytail7.png index 42f31064420..f980651b18b 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/ponytail7.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/ponytail7.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/poofy.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/poofy.png index 4efcef13283..65f97a0e572 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/poofy.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/poofy.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/protagonist.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/protagonist.png index b2bf9312edb..3822939512e 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/protagonist.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/protagonist.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/quiff.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/quiff.png index 103dac91d97..56b126bdabf 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/quiff.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/quiff.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/reversemohawk.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/reversemohawk.png index c19069153cf..129626c9fcc 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/reversemohawk.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/reversemohawk.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/ronin.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/ronin.png index bf9f3cb6b1f..7a631f9b62d 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/ronin.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/ronin.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/rosa.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/rosa.png index ad20894eb0b..e920f2052b4 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/rosa.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/rosa.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/sargeant.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/sargeant.png index 7dde69c4275..92ddf58e731 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/sargeant.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/sargeant.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/shavedmohawk.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/shavedmohawk.png index 6f3080073d4..1521a5b6b17 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/shavedmohawk.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/shavedmohawk.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/shavedpart.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/shavedpart.png index bacc43b1b57..6c97dc077e4 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/shavedpart.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/shavedpart.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/shortbangs.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/shortbangs.png index 85dc7864275..d3caabb6b5f 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/shortbangs.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/shortbangs.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/shortbraid.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/shortbraid.png index b060df9c169..d6f2c680d22 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/shortbraid.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/shortbraid.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/shorthair2.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/shorthair2.png index d194d27aebf..27a465705f1 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/shorthair2.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/shorthair2.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/shorthair3.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/shorthair3.png index 130014afc13..f6b13b10d1f 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/shorthair3.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/shorthair3.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/shorthairg.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/shorthairg.png index 02dc7dabfd4..e6d01e6a334 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/shorthairg.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/shorthairg.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/shorthime.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/shorthime.png index 309fb738c38..230aa207124 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/shorthime.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/shorthime.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/shortovereye.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/shortovereye.png index c349df62163..a9ef1dae956 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/shortovereye.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/shortovereye.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/sidecut.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/sidecut.png index ff8d3a5e06d..416c2360abd 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/sidecut.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/sidecut.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/sidetail.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/sidetail.png index bcb336960a6..139b985e813 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/sidetail.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/sidetail.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/sidetail2.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/sidetail2.png index 91138b10656..8070c50a822 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/sidetail2.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/sidetail2.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/sidetail3.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/sidetail3.png index c2b8523404d..ee1c8e831e4 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/sidetail3.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/sidetail3.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/sidetail4.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/sidetail4.png index ab5feb61ce9..7e903a9388a 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/sidetail4.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/sidetail4.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/spikey.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/spikey.png index 5c4aa6f359b..f0f5d2225e5 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/spikey.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/spikey.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/spiky.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/spiky.png index e81d9a023d4..ddb8b5a995c 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/spiky.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/spiky.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/spiky2.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/spiky2.png index 0e96a53fb4a..aec3ea9ee8e 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/spiky2.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/spiky2.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/spikyponytail.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/spikyponytail.png index 3afc6a11071..7d150b320c2 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/spikyponytail.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/spikyponytail.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/stail.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/stail.png index 057c210c2a6..ff201d1a2b0 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/stail.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/stail.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/swept.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/swept.png index 53af2558aa0..a67db5cb566 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/swept.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/swept.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/swept2.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/swept2.png index acb933aab72..b4aab4d2b76 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/swept2.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/swept2.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/thinning.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/thinning.png index 381178a0630..f11cd3ca5b1 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/thinning.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/thinning.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/thinningfront.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/thinningfront.png index ed587719510..bb4de4397e1 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/thinningfront.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/thinningfront.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/thinningrear.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/thinningrear.png index c121a4e622d..c5d94af170b 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/thinningrear.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/thinningrear.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/tightbun.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/tightbun.png index d701cedb205..83ae56066df 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/tightbun.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/tightbun.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/topknot.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/topknot.png index 095a588b4a5..2eecbf09071 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/topknot.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/topknot.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/tressshoulder.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/tressshoulder.png index 3b336578489..c56b9684c2c 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/tressshoulder.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/tressshoulder.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/trimflat.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/trimflat.png index 496ac2f7ff9..649a56f6ca9 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/trimflat.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/trimflat.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/trimmed.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/trimmed.png index 898524294af..1d7f27eff75 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/trimmed.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/trimmed.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/twintail.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/twintail.png index 793f8f7baad..f26c47f939c 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/twintail.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/twintail.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/undercut.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/undercut.png index 1101b675800..0b39e5635e6 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/undercut.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/undercut.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/undercutleft.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/undercutleft.png index c5e1bd75976..398b5a5b4b7 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/undercutleft.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/undercutleft.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/undercutright.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/undercutright.png index b84cbb0eb6c..98d418dc503 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/undercutright.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/undercutright.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/unkept.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/unkept.png index 91f08561455..4ba72979a8c 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/unkept.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/unkept.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/unshaven_mohawk.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/unshaven_mohawk.png index 034f9bc37b3..63004c2c28a 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/unshaven_mohawk.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/unshaven_mohawk.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/updo.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/updo.png index 510a54213e1..f1173153ea1 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/updo.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/updo.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/veryshortovereyealternate.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/veryshortovereyealternate.png index d3c1ba2e52a..9f3c6822632 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/veryshortovereyealternate.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/veryshortovereyealternate.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/vlong.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/vlong.png index 85bd74e629d..289de561bb5 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/vlong.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/vlong.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/vlongfringe.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/vlongfringe.png index f3e48a1f3e3..55f8f281089 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/vlongfringe.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/vlongfringe.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/volaju.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/volaju.png index 9852d05830a..2ddc7c24400 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/volaju.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/volaju.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/wisp.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/wisp.png index da029b88708..73658b4bb3e 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/wisp.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/wisp.png differ diff --git a/Resources/Textures/Mobs/Silicon/Bots/supplybot.rsi/meta.json b/Resources/Textures/Mobs/Silicon/Bots/supplybot.rsi/meta.json new file mode 100644 index 00000000000..6bb3e77cfeb --- /dev/null +++ b/Resources/Textures/Mobs/Silicon/Bots/supplybot.rsi/meta.json @@ -0,0 +1,41 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "supplybot drawn by netwy", + "states": [ + { + "name": "supplybot", + "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 + ] + ] + } + ] +} diff --git a/Resources/Textures/Mobs/Silicon/Bots/supplybot.rsi/supplybot.png b/Resources/Textures/Mobs/Silicon/Bots/supplybot.rsi/supplybot.png new file mode 100644 index 00000000000..cac976240bd Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/Bots/supplybot.rsi/supplybot.png differ diff --git a/Resources/Textures/Mobs/Silicon/Bots/taxibot.rsi/meta.json b/Resources/Textures/Mobs/Silicon/Bots/taxibot.rsi/meta.json index 554db619f30..309bb5c8c2f 100644 --- a/Resources/Textures/Mobs/Silicon/Bots/taxibot.rsi/meta.json +++ b/Resources/Textures/Mobs/Silicon/Bots/taxibot.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "taxibot drawn by FillerVK", + "copyright": "taxibot drawn by FillerVK, modified by Diebeck", "states": [ { "name": "taxibot", diff --git a/Resources/Textures/Mobs/Silicon/Bots/taxibot.rsi/taxibot.png b/Resources/Textures/Mobs/Silicon/Bots/taxibot.rsi/taxibot.png index 1f1a8ff7897..8a2c783c52d 100644 Binary files a/Resources/Textures/Mobs/Silicon/Bots/taxibot.rsi/taxibot.png and b/Resources/Textures/Mobs/Silicon/Bots/taxibot.rsi/taxibot.png differ diff --git a/Resources/Textures/Mobs/Species/Arachnid/parts.rsi/eyes.png b/Resources/Textures/Mobs/Species/Arachnid/parts.rsi/eyes.png index a12fbe79fd1..3b205738f20 100644 Binary files a/Resources/Textures/Mobs/Species/Arachnid/parts.rsi/eyes.png and b/Resources/Textures/Mobs/Species/Arachnid/parts.rsi/eyes.png differ diff --git a/Resources/Textures/Mobs/Species/Diona/parts.rsi/head_f.png b/Resources/Textures/Mobs/Species/Diona/parts.rsi/head_f.png index 4fa2350ab5c..21bf1c47573 100644 Binary files a/Resources/Textures/Mobs/Species/Diona/parts.rsi/head_f.png and b/Resources/Textures/Mobs/Species/Diona/parts.rsi/head_f.png differ diff --git a/Resources/Textures/Mobs/Species/Diona/parts.rsi/head_m.png b/Resources/Textures/Mobs/Species/Diona/parts.rsi/head_m.png index 4fa2350ab5c..21bf1c47573 100644 Binary files a/Resources/Textures/Mobs/Species/Diona/parts.rsi/head_m.png and b/Resources/Textures/Mobs/Species/Diona/parts.rsi/head_m.png differ diff --git a/Resources/Textures/Mobs/Species/Diona/parts.rsi/l_arm.png b/Resources/Textures/Mobs/Species/Diona/parts.rsi/l_arm.png index b6c4da9d417..15a67ac7641 100644 Binary files a/Resources/Textures/Mobs/Species/Diona/parts.rsi/l_arm.png and b/Resources/Textures/Mobs/Species/Diona/parts.rsi/l_arm.png differ diff --git a/Resources/Textures/Mobs/Species/Diona/parts.rsi/l_foot.png b/Resources/Textures/Mobs/Species/Diona/parts.rsi/l_foot.png index 928804dc80d..b509340358d 100644 Binary files a/Resources/Textures/Mobs/Species/Diona/parts.rsi/l_foot.png and b/Resources/Textures/Mobs/Species/Diona/parts.rsi/l_foot.png differ diff --git a/Resources/Textures/Mobs/Species/Diona/parts.rsi/l_hand.png b/Resources/Textures/Mobs/Species/Diona/parts.rsi/l_hand.png index f251e8d3f9c..c0ab4dbbf01 100644 Binary files a/Resources/Textures/Mobs/Species/Diona/parts.rsi/l_hand.png and b/Resources/Textures/Mobs/Species/Diona/parts.rsi/l_hand.png differ diff --git a/Resources/Textures/Mobs/Species/Diona/parts.rsi/l_leg.png b/Resources/Textures/Mobs/Species/Diona/parts.rsi/l_leg.png index 9a60a770d96..158ba144077 100644 Binary files a/Resources/Textures/Mobs/Species/Diona/parts.rsi/l_leg.png and b/Resources/Textures/Mobs/Species/Diona/parts.rsi/l_leg.png differ diff --git a/Resources/Textures/Mobs/Species/Diona/parts.rsi/r_arm.png b/Resources/Textures/Mobs/Species/Diona/parts.rsi/r_arm.png index 36c2665adfb..97b7377f906 100644 Binary files a/Resources/Textures/Mobs/Species/Diona/parts.rsi/r_arm.png and b/Resources/Textures/Mobs/Species/Diona/parts.rsi/r_arm.png differ diff --git a/Resources/Textures/Mobs/Species/Diona/parts.rsi/r_foot.png b/Resources/Textures/Mobs/Species/Diona/parts.rsi/r_foot.png index 9eab9cd52bf..76e1a6ec2ef 100644 Binary files a/Resources/Textures/Mobs/Species/Diona/parts.rsi/r_foot.png and b/Resources/Textures/Mobs/Species/Diona/parts.rsi/r_foot.png differ diff --git a/Resources/Textures/Mobs/Species/Diona/parts.rsi/r_hand.png b/Resources/Textures/Mobs/Species/Diona/parts.rsi/r_hand.png index 03652891a0e..0c94838ac82 100644 Binary files a/Resources/Textures/Mobs/Species/Diona/parts.rsi/r_hand.png and b/Resources/Textures/Mobs/Species/Diona/parts.rsi/r_hand.png differ diff --git a/Resources/Textures/Mobs/Species/Diona/parts.rsi/r_leg.png b/Resources/Textures/Mobs/Species/Diona/parts.rsi/r_leg.png index 03389a22825..7929ab6a631 100644 Binary files a/Resources/Textures/Mobs/Species/Diona/parts.rsi/r_leg.png and b/Resources/Textures/Mobs/Species/Diona/parts.rsi/r_leg.png differ diff --git a/Resources/Textures/Mobs/Species/Diona/parts.rsi/torso_f.png b/Resources/Textures/Mobs/Species/Diona/parts.rsi/torso_f.png index afba89a1d53..6aaf688a4a2 100644 Binary files a/Resources/Textures/Mobs/Species/Diona/parts.rsi/torso_f.png and b/Resources/Textures/Mobs/Species/Diona/parts.rsi/torso_f.png differ diff --git a/Resources/Textures/Mobs/Species/Diona/parts.rsi/torso_m.png b/Resources/Textures/Mobs/Species/Diona/parts.rsi/torso_m.png index afba89a1d53..6aaf688a4a2 100644 Binary files a/Resources/Textures/Mobs/Species/Diona/parts.rsi/torso_m.png and b/Resources/Textures/Mobs/Species/Diona/parts.rsi/torso_m.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/brownie.rsi/brownie-batch.png b/Resources/Textures/Objects/Consumable/Food/Baked/brownie.rsi/brownie-batch.png new file mode 100644 index 00000000000..2503a517352 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/Baked/brownie.rsi/brownie-batch.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/brownie.rsi/meta.json b/Resources/Textures/Objects/Consumable/Food/Baked/brownie.rsi/meta.json new file mode 100644 index 00000000000..c54970dca96 --- /dev/null +++ b/Resources/Textures/Objects/Consumable/Food/Baked/brownie.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24, brownie-batch by Velcroboy", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "brownie-batch" + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Food/snacks.rsi/cnds-trash.png b/Resources/Textures/Objects/Consumable/Food/snacks.rsi/cnds-trash.png new file mode 100644 index 00000000000..0f622e08f7e Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/snacks.rsi/cnds-trash.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/snacks.rsi/cnds.png b/Resources/Textures/Objects/Consumable/Food/snacks.rsi/cnds.png new file mode 100644 index 00000000000..9747f62a519 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/snacks.rsi/cnds.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/snacks.rsi/meta.json b/Resources/Textures/Objects/Consumable/Food/snacks.rsi/meta.json index d2fa0235ad9..116e05d18f3 100644 --- a/Resources/Textures/Objects/Consumable/Food/snacks.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Food/snacks.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/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24, chinese from paradise, ticket by peptide", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24, chinese from paradise, ticket by peptide, cnds-trash based on boritos-trash and syndicakes modified by potato1234x", "size": { "x": 32, "y": 32 @@ -63,6 +63,12 @@ "name": "chocolatebar-inhand-left", "directions": 4 }, + { + "name": "cnds" + }, + { + "name": "cnds-trash" + }, { "name": "cookie_fortune" }, @@ -116,6 +122,9 @@ { "name": "peachtinmaint-open" }, + { + "name": "pistachio" + }, { "name": "pistachio-trash" }, @@ -139,6 +148,9 @@ { "name": "raisins-trash" }, + { + "name": "semki" + }, { "name": "semki-trash" }, diff --git a/Resources/Textures/Objects/Consumable/Food/snacks.rsi/pistachio.png b/Resources/Textures/Objects/Consumable/Food/snacks.rsi/pistachio.png new file mode 100644 index 00000000000..bcc453be10a Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/snacks.rsi/pistachio.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/snacks.rsi/semki.png b/Resources/Textures/Objects/Consumable/Food/snacks.rsi/semki.png new file mode 100644 index 00000000000..70d798a3910 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/snacks.rsi/semki.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/snacks.rsi/syndicakes-trash.png b/Resources/Textures/Objects/Consumable/Food/snacks.rsi/syndicakes-trash.png index 242abe85d08..3ee1cd302e1 100644 Binary files a/Resources/Textures/Objects/Consumable/Food/snacks.rsi/syndicakes-trash.png and b/Resources/Textures/Objects/Consumable/Food/snacks.rsi/syndicakes-trash.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/snacks.rsi/syndicakes.png b/Resources/Textures/Objects/Consumable/Food/snacks.rsi/syndicakes.png index 1b45ff7bbd5..af19280faff 100644 Binary files a/Resources/Textures/Objects/Consumable/Food/snacks.rsi/syndicakes.png and b/Resources/Textures/Objects/Consumable/Food/snacks.rsi/syndicakes.png differ diff --git a/Resources/Textures/Objects/Devices/declaration_of_war.rsi/declarator.png b/Resources/Textures/Objects/Devices/declaration_of_war.rsi/declarator.png new file mode 100644 index 00000000000..850edac23bf Binary files /dev/null and b/Resources/Textures/Objects/Devices/declaration_of_war.rsi/declarator.png differ diff --git a/Resources/Textures/Objects/Devices/declaration_of_war.rsi/meta.json b/Resources/Textures/Objects/Devices/declaration_of_war.rsi/meta.json new file mode 100644 index 00000000000..a522da13b79 --- /dev/null +++ b/Resources/Textures/Objects/Devices/declaration_of_war.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Edit of the door remote sprite by Flareguy for https://github.com/space-wizards/space-station-14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "declarator", + "delays": [ + [ + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.2, + 0.2, + 0.2 + ] + ] + } + ] +} diff --git a/Resources/Textures/Objects/Fun/Tabletop/checker_pieces.rsi/b_checker_queen.png b/Resources/Textures/Objects/Fun/Tabletop/checker_pieces.rsi/b_checker_crown.png similarity index 100% rename from Resources/Textures/Objects/Fun/Tabletop/checker_pieces.rsi/b_checker_queen.png rename to Resources/Textures/Objects/Fun/Tabletop/checker_pieces.rsi/b_checker_crown.png diff --git a/Resources/Textures/Objects/Fun/Tabletop/checker_pieces.rsi/meta.json b/Resources/Textures/Objects/Fun/Tabletop/checker_pieces.rsi/meta.json index ceb785d8bd2..d34294192ab 100644 --- a/Resources/Textures/Objects/Fun/Tabletop/checker_pieces.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/Tabletop/checker_pieces.rsi/meta.json @@ -11,13 +11,13 @@ "name": "w_checker_piece" }, { - "name": "w_checker_queen" + "name": "w_checker_crown" }, { "name": "b_checker_piece" }, { - "name": "b_checker_queen" + "name": "b_checker_crown" } ] } diff --git a/Resources/Textures/Objects/Fun/Tabletop/checker_pieces.rsi/w_checker_queen.png b/Resources/Textures/Objects/Fun/Tabletop/checker_pieces.rsi/w_checker_crown.png similarity index 100% rename from Resources/Textures/Objects/Fun/Tabletop/checker_pieces.rsi/w_checker_queen.png rename to Resources/Textures/Objects/Fun/Tabletop/checker_pieces.rsi/w_checker_crown.png diff --git a/Resources/Textures/Objects/Fun/toys.rsi/meta.json b/Resources/Textures/Objects/Fun/toys.rsi/meta.json index a2e3333451b..77a1128149d 100644 --- a/Resources/Textures/Objects/Fun/toys.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/toys.rsi/meta.json @@ -9,6 +9,9 @@ "states": [ { "name": "plushie_ratvar" + }, + { + "name": "plushie_moth" }, { "name": "plushie_rouny", diff --git a/Resources/Textures/Objects/Fun/toys.rsi/plushie_moth.png b/Resources/Textures/Objects/Fun/toys.rsi/plushie_moth.png new file mode 100644 index 00000000000..325c0990894 Binary files /dev/null and b/Resources/Textures/Objects/Fun/toys.rsi/plushie_moth.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/healing_toolbox.rsi/icon.png b/Resources/Textures/Objects/Specific/Medical/healing_toolbox.rsi/icon.png new file mode 100644 index 00000000000..b80dd151b43 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/healing_toolbox.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/healing_toolbox.rsi/meta.json b/Resources/Textures/Objects/Specific/Medical/healing_toolbox.rsi/meta.json new file mode 100644 index 00000000000..d8c80a1fd6f --- /dev/null +++ b/Resources/Textures/Objects/Specific/Medical/healing_toolbox.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created by EmoGarbage404 (github) for Space Station 14.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/Objects/Specific/Medical/medical.rsi/bloodpack-blue.png b/Resources/Textures/Objects/Specific/Medical/medical.rsi/bloodpack-blue.png new file mode 100644 index 00000000000..ae03304c2a8 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/medical.rsi/bloodpack-blue.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medical.rsi/bloodpack-empty.png b/Resources/Textures/Objects/Specific/Medical/medical.rsi/bloodpack-empty.png new file mode 100644 index 00000000000..87143528ccb Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/medical.rsi/bloodpack-empty.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medical.rsi/bloodpack-liquid-1.png b/Resources/Textures/Objects/Specific/Medical/medical.rsi/bloodpack-liquid-1.png new file mode 100644 index 00000000000..811ae697417 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/medical.rsi/bloodpack-liquid-1.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medical.rsi/bloodpack-liquid-2.png b/Resources/Textures/Objects/Specific/Medical/medical.rsi/bloodpack-liquid-2.png new file mode 100644 index 00000000000..76476d91d8a Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/medical.rsi/bloodpack-liquid-2.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medical.rsi/bloodpack-liquid-3.png b/Resources/Textures/Objects/Specific/Medical/medical.rsi/bloodpack-liquid-3.png new file mode 100644 index 00000000000..961eac80026 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/medical.rsi/bloodpack-liquid-3.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medical.rsi/bloodpack-liquid-4.png b/Resources/Textures/Objects/Specific/Medical/medical.rsi/bloodpack-liquid-4.png new file mode 100644 index 00000000000..961eac80026 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/medical.rsi/bloodpack-liquid-4.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medical.rsi/bloodpack-liquid-5.png b/Resources/Textures/Objects/Specific/Medical/medical.rsi/bloodpack-liquid-5.png new file mode 100644 index 00000000000..fd02137573d Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/medical.rsi/bloodpack-liquid-5.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medical.rsi/bloodpack.png b/Resources/Textures/Objects/Specific/Medical/medical.rsi/bloodpack.png index b8e6f7c4a1b..6a667099191 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/medical.rsi/bloodpack.png and b/Resources/Textures/Objects/Specific/Medical/medical.rsi/bloodpack.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medical.rsi/meta.json b/Resources/Textures/Objects/Specific/Medical/medical.rsi/meta.json index 137f1849cf4..79d08e485b9 100644 --- a/Resources/Textures/Objects/Specific/Medical/medical.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Medical/medical.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/commit/740ff31a81313086cf16761f3677cf1e2ab46c93 and Taken from tgstation at https://github.com/tgstation/tgstation/blob/623290915c2292b56da11048deb62d758e1e3fb4/icons/obj/bloodpack.dmi", + "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", "size": { "x": 32, @@ -56,13 +56,34 @@ { "name": "regenerative-mesh" }, - { + { + "name": "regenerative-mesh-inhand-right", + "directions": 4 + }, + { "name": "regenerative-mesh-inhand-left", "directions": 4 }, { - "name": "regenerative-mesh-inhand-right", - "directions": 4 + "name": "bloodpack-empty" + }, + { + "name": "bloodpack-liquid-1" + }, + { + "name": "bloodpack-liquid-2" + }, + { + "name": "bloodpack-liquid-3" + }, + { + "name": "bloodpack-liquid-4" + }, + { + "name": "bloodpack-liquid-5" + }, + { + "name": "bloodpack-blue" } ] } diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-construction.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-construction.png new file mode 100644 index 00000000000..fa53867b367 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-construction.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-harvesting.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-harvesting.png new file mode 100644 index 00000000000..43cbc45f00a Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-harvesting.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 abfd0e18a90..681e84a96e8 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.", + "copyright": "Created by EmoGarbage404 (github) for Space Station 14. icon-construction.png created by deltanedas (github).", "size": { "x": 32, "y": 32 @@ -31,6 +31,9 @@ { "name": "icon-clown" }, + { + "name": "icon-construction" + }, { "name": "icon-defib" }, @@ -52,6 +55,9 @@ { "name": "icon-grappling-gun" }, + { + "name": "icon-harvesting" + }, { "name": "icon-light-replacer" }, diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/concrete.png b/Resources/Textures/Objects/Tiles/tile.rsi/concrete.png new file mode 100644 index 00000000000..4ac52bcc10b Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/concrete.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/grayconcrete.png b/Resources/Textures/Objects/Tiles/tile.rsi/grayconcrete.png new file mode 100644 index 00000000000..aac429e862e Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/grayconcrete.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/meta.json b/Resources/Textures/Objects/Tiles/tile.rsi/meta.json index 75956614073..26be33981a4 100644 --- a/Resources/Textures/Objects/Tiles/tile.rsi/meta.json +++ b/Resources/Textures/Objects/Tiles/tile.rsi/meta.json @@ -19,6 +19,15 @@ { "name": "checker-dark" }, + { + "name": "concrete" + }, + { + "name": "grayconcrete" + }, + { + "name": "oldconcrete" + }, { "name": "gcircuit" }, diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/oldconcrete.png b/Resources/Textures/Objects/Tiles/tile.rsi/oldconcrete.png new file mode 100644 index 00000000000..1343e70e2b1 Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/oldconcrete.png differ diff --git a/Resources/Textures/Objects/Tools/fulton.rsi/extraction_pack.png b/Resources/Textures/Objects/Tools/fulton.rsi/extraction_pack.png new file mode 100644 index 00000000000..bdaf6822024 Binary files /dev/null and b/Resources/Textures/Objects/Tools/fulton.rsi/extraction_pack.png differ diff --git a/Resources/Textures/Objects/Tools/fulton.rsi/extraction_point.png b/Resources/Textures/Objects/Tools/fulton.rsi/extraction_point.png new file mode 100644 index 00000000000..7bdfd4ef702 Binary files /dev/null and b/Resources/Textures/Objects/Tools/fulton.rsi/extraction_point.png differ diff --git a/Resources/Textures/Objects/Tools/fulton.rsi/extraction_point_light.png b/Resources/Textures/Objects/Tools/fulton.rsi/extraction_point_light.png new file mode 100644 index 00000000000..6b797068b1b Binary files /dev/null and b/Resources/Textures/Objects/Tools/fulton.rsi/extraction_point_light.png differ diff --git a/Resources/Textures/Objects/Tools/fulton.rsi/folded_extraction.png b/Resources/Textures/Objects/Tools/fulton.rsi/folded_extraction.png new file mode 100644 index 00000000000..31f1f4ef149 Binary files /dev/null and b/Resources/Textures/Objects/Tools/fulton.rsi/folded_extraction.png differ diff --git a/Resources/Textures/Objects/Tools/fulton.rsi/meta.json b/Resources/Textures/Objects/Tools/fulton.rsi/meta.json new file mode 100644 index 00000000000..33490d3b1e0 --- /dev/null +++ b/Resources/Textures/Objects/Tools/fulton.rsi/meta.json @@ -0,0 +1,35 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/tgstation/tgstation/blob/a7a67c81afc99d77483c84878173822ee8cbeecd/icons/obj/fulton.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "folded_extraction" + }, + { + "name": "extraction_point", + "delays": [ + [ + 1, + 0.1 + ] + ] + }, + { + "name": "extraction_point_light", + "delays": [ + [ + 1, + 0.1 + ] + ] + }, + { + "name": "extraction_pack" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Objects/Tools/fulton_balloon.rsi/fulton_balloon.png b/Resources/Textures/Objects/Tools/fulton_balloon.rsi/fulton_balloon.png new file mode 100644 index 00000000000..4e4eba700df Binary files /dev/null and b/Resources/Textures/Objects/Tools/fulton_balloon.rsi/fulton_balloon.png differ diff --git a/Resources/Textures/Objects/Tools/fulton_balloon.rsi/fulton_expand.png b/Resources/Textures/Objects/Tools/fulton_balloon.rsi/fulton_expand.png new file mode 100644 index 00000000000..6b7af2daef8 Binary files /dev/null and b/Resources/Textures/Objects/Tools/fulton_balloon.rsi/fulton_expand.png differ diff --git a/Resources/Textures/Objects/Tools/fulton_balloon.rsi/meta.json b/Resources/Textures/Objects/Tools/fulton_balloon.rsi/meta.json new file mode 100644 index 00000000000..36df097eb46 --- /dev/null +++ b/Resources/Textures/Objects/Tools/fulton_balloon.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/tgstation/tgstation/blob/a7a67c81afc99d77483c84878173822ee8cbeecd/icons/obj/fulton.dmi", + "size": { + "x": 32, + "y": 41 + }, + "states": [ + { + "name": "fulton_balloon" + }, + { + "name": "fulton_expand", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Objects/Weapons/Bombs/spidercharge.rsi/icon.png b/Resources/Textures/Objects/Weapons/Bombs/spidercharge.rsi/icon.png new file mode 100644 index 00000000000..19eeac4947d Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Bombs/spidercharge.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Bombs/spidercharge.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Bombs/spidercharge.rsi/inhand-left.png new file mode 100644 index 00000000000..0b7ddbf8ff4 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Bombs/spidercharge.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Bombs/spidercharge.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Bombs/spidercharge.rsi/inhand-right.png new file mode 100644 index 00000000000..9147eb7598d Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Bombs/spidercharge.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Bombs/spidercharge.rsi/meta.json b/Resources/Textures/Objects/Weapons/Bombs/spidercharge.rsi/meta.json new file mode 100644 index 00000000000..16c2ce2affb --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Bombs/spidercharge.rsi/meta.json @@ -0,0 +1,31 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/db2efd4f0df2b630a8bb9851f53f4922b669a5b3", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "primed", + "delays": [ + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Bombs/spidercharge.rsi/primed.png b/Resources/Textures/Objects/Weapons/Bombs/spidercharge.rsi/primed.png new file mode 100644 index 00000000000..a3a5df18633 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Bombs/spidercharge.rsi/primed.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Projectiles/magic.rsi/magicm_cyan.png b/Resources/Textures/Objects/Weapons/Guns/Projectiles/magic.rsi/magicm_cyan.png new file mode 100644 index 00000000000..1c6a0094a4f Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Projectiles/magic.rsi/magicm_cyan.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Projectiles/magic.rsi/magicm_red.png b/Resources/Textures/Objects/Weapons/Guns/Projectiles/magic.rsi/magicm_red.png new file mode 100644 index 00000000000..b9e0d8c6533 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Projectiles/magic.rsi/magicm_red.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Projectiles/magic.rsi/magicm_yellow.png b/Resources/Textures/Objects/Weapons/Guns/Projectiles/magic.rsi/magicm_yellow.png new file mode 100644 index 00000000000..6fe8b5e727f Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Projectiles/magic.rsi/magicm_yellow.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Projectiles/magic.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Projectiles/magic.rsi/meta.json index b1022c3c939..412c35eece1 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Projectiles/magic.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Projectiles/magic.rsi/meta.json @@ -39,6 +39,39 @@ 0.1 ] ] + }, + { + "name": "magicm_yellow", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "magicm_red", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "magicm_cyan", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] }, { "name": "spell", diff --git a/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/impact_laser_greyscale.png b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/impact_laser_greyscale.png new file mode 100644 index 00000000000..a2bdccf8822 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/impact_laser_greyscale.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/meta.json index 7cc3964b240..f87ad790f69 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/meta.json @@ -10,6 +10,9 @@ { "name": "omnilaser" }, + { + "name": "omnilaser_greyscale" + }, { "name": "impact_bullet", "delays": [ @@ -32,6 +35,17 @@ 0.05 ] ] + }, + { + "name": "impact_laser_greyscale", + "delays": [ + [ + 0.05, + 0.05, + 0.05, + 0.05 + ] + ] } ] } \ No newline at end of file diff --git a/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/omnilaser_greyscale.png b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/omnilaser_greyscale.png new file mode 100644 index 00000000000..5f4efba75e4 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/omnilaser_greyscale.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/equipped-BELT.png b/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/equipped-BELT.png new file mode 100644 index 00000000000..f31e92edce1 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/icon.png b/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/icon.png new file mode 100644 index 00000000000..e185890fbf3 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/inhand-left.png new file mode 100644 index 00000000000..5f35b502dac Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/inhand-right.png new file mode 100644 index 00000000000..5926122d27b Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/meta.json new file mode 100644 index 00000000000..1dfa76c4e38 --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/a9451f4d22f233d328b63490c2bcf64a640e42ff", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BELT", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Raw Sprites/Humanoid/human.png b/Resources/Textures/Raw Sprites/Humanoid/human.png new file mode 100644 index 00000000000..c0d51995864 Binary files /dev/null and b/Resources/Textures/Raw Sprites/Humanoid/human.png differ diff --git a/Resources/Textures/Raw Sprites/softsuits.png b/Resources/Textures/Raw Sprites/softsuits.png new file mode 100644 index 00000000000..66a1f7c6b9d Binary files /dev/null and b/Resources/Textures/Raw Sprites/softsuits.png differ diff --git a/Resources/Textures/Shaders/hcut.swsl b/Resources/Textures/Shaders/hcut.swsl new file mode 100644 index 00000000000..4f8bfd95738 --- /dev/null +++ b/Resources/Textures/Shaders/hcut.swsl @@ -0,0 +1,13 @@ +light_mode unshaded; + +const highp float c = 0.3; +const highp float alphaModifier = 0.2; +const bool below = true; + +void fragment() +{ + highp vec4 tex = zTexture(UV); + highp float modifier = (UV.y > c ^^ !below) ? 1.0 : alphaModifier; + + COLOR = vec4(tex.x, tex.y, tex.z, tex.w * modifier); +} diff --git a/Resources/Textures/Shaders/outline.swsl b/Resources/Textures/Shaders/outline.swsl index 7fce6809f69..d465946ae64 100644 --- a/Resources/Textures/Shaders/outline.swsl +++ b/Resources/Textures/Shaders/outline.swsl @@ -73,6 +73,6 @@ void fragment() { mina = min(a, mina); lowp float sampledLight = outline_fullbright ? 1.0 : sqrt(mix(0.0, 1.0, (lightSample.r * 0.34) + (lightSample.g * 0.5) + (lightSample.b * 0.16)) * light_boost); - COLOR = mix(col, outline_color * sampledLight, maxa - col.a); + COLOR = mix(col, outline_color * vec4(vec3(sampledLight), 1.0), maxa - col.a); lightSample = vec3(1.0); } diff --git a/Resources/Textures/Structures/Decoration/cobweb.rsi/cobweb1.png b/Resources/Textures/Structures/Decoration/cobweb.rsi/cobweb1.png new file mode 100644 index 00000000000..62a0fc159b0 Binary files /dev/null and b/Resources/Textures/Structures/Decoration/cobweb.rsi/cobweb1.png differ diff --git a/Resources/Textures/Structures/Decoration/cobweb.rsi/cobweb2.png b/Resources/Textures/Structures/Decoration/cobweb.rsi/cobweb2.png new file mode 100644 index 00000000000..24a3d367f9f Binary files /dev/null and b/Resources/Textures/Structures/Decoration/cobweb.rsi/cobweb2.png differ diff --git a/Resources/Textures/Structures/Decoration/cobweb.rsi/meta.json b/Resources/Textures/Structures/Decoration/cobweb.rsi/meta.json new file mode 100644 index 00000000000..3a602bac70e --- /dev/null +++ b/Resources/Textures/Structures/Decoration/cobweb.rsi/meta.json @@ -0,0 +1,75 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "cobweb1", + "delays": [ + [ + 25.5, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.2, + 0.1, + 0.1, + 0.1, + 0.3, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "cobweb2", + "delays": [ + [ + 15, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 5, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 15 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/assembly.png new file mode 100644 index 00000000000..da1739bb279 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/assembly.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/bolted_unlit.png new file mode 100644 index 00000000000..6857f2a2415 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/closed.png new file mode 100644 index 00000000000..1c0787f2fdd Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/closed_unlit.png new file mode 100644 index 00000000000..c78d01c42d0 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/closing.png new file mode 100644 index 00000000000..7894a1f34c3 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/closing_unlit.png new file mode 100644 index 00000000000..2a71f76d5d0 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/deny_unlit.png new file mode 100644 index 00000000000..7c56263f839 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/deny_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/emergency_unlit.png new file mode 100644 index 00000000000..817f2fb3f95 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/meta.json new file mode 100644 index 00000000000..6b8b84fc124 --- /dev/null +++ b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/meta.json @@ -0,0 +1,195 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24; Edited by Doru991", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit" + }, + { + "name": "closed" + }, + { + "name": "closed_unlit" + }, + { + "name": "closing", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "closing_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "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.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "opening_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "panel_closing", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "panel_open", + "delays": [ + [ + 1 + ] + ] + }, + { + "name": "panel_opening", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "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 + ] + ] + }, + { + "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/Glass/syndicate.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/open.png new file mode 100644 index 00000000000..8b3c585e54d Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/opening.png new file mode 100644 index 00000000000..37004d384a2 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/opening_unlit.png new file mode 100644 index 00000000000..84933bd5ed9 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/opening_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/panel_closing.png new file mode 100644 index 00000000000..db7be0bc4a0 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/panel_closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/panel_open.png new file mode 100644 index 00000000000..24eb2aedc22 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/panel_open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/panel_opening.png new file mode 100644 index 00000000000..fc90acd637a Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/panel_opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/sparks.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/sparks.png new file mode 100644 index 00000000000..dd67e88a315 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/sparks.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/sparks_broken.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/sparks_broken.png new file mode 100644 index 00000000000..fb5d774588a Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/sparks_broken.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/sparks_damaged.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/sparks_damaged.png new file mode 100644 index 00000000000..f16a028dee5 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/sparks_damaged.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/sparks_open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/sparks_open.png new file mode 100644 index 00000000000..630eabb976e Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/sparks_open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/welded.png new file mode 100644 index 00000000000..a0040dfdc73 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/assembly.png new file mode 100644 index 00000000000..9ac8b2ad682 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/assembly.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/bolted_unlit.png new file mode 100644 index 00000000000..6857f2a2415 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/closed.png new file mode 100644 index 00000000000..a71632a1732 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/closed_unlit.png new file mode 100644 index 00000000000..c78d01c42d0 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/closing.png new file mode 100644 index 00000000000..2c5ddab0b8f Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/closing_unlit.png new file mode 100644 index 00000000000..2a71f76d5d0 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/deny_unlit.png new file mode 100644 index 00000000000..7c56263f839 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/deny_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/emergency_unlit.png new file mode 100644 index 00000000000..817f2fb3f95 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/meta.json new file mode 100644 index 00000000000..b343ae11dbf --- /dev/null +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/meta.json @@ -0,0 +1,195 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24; Edited by @MaloTV on 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.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "closing_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "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.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "opening_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "panel_closing", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "panel_open", + "delays": [ + [ + 1 + ] + ] + }, + { + "name": "panel_opening", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "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 + ] + ] + }, + { + "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/syndicate.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/open.png new file mode 100644 index 00000000000..cfbb34b8036 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/opening.png new file mode 100644 index 00000000000..96142da1a64 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/opening_unlit.png new file mode 100644 index 00000000000..84933bd5ed9 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/opening_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/panel_closing.png new file mode 100644 index 00000000000..db7be0bc4a0 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/panel_closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/panel_open.png new file mode 100644 index 00000000000..24eb2aedc22 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/panel_open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/panel_opening.png new file mode 100644 index 00000000000..fc90acd637a Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/panel_opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/sparks.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/sparks.png new file mode 100644 index 00000000000..dd67e88a315 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/sparks.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/sparks_broken.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/sparks_broken.png new file mode 100644 index 00000000000..fb5d774588a Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/sparks_broken.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/sparks_damaged.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/sparks_damaged.png new file mode 100644 index 00000000000..f16a028dee5 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/sparks_damaged.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/sparks_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/sparks_open.png new file mode 100644 index 00000000000..630eabb976e Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/sparks_open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/welded.png new file mode 100644 index 00000000000..a0040dfdc73 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Doors/web_door.rsi/closed.png b/Resources/Textures/Structures/Doors/web_door.rsi/closed.png new file mode 100644 index 00000000000..b77d39c43ad Binary files /dev/null and b/Resources/Textures/Structures/Doors/web_door.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/web_door.rsi/closing.png b/Resources/Textures/Structures/Doors/web_door.rsi/closing.png new file mode 100644 index 00000000000..2d649920a22 Binary files /dev/null and b/Resources/Textures/Structures/Doors/web_door.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/web_door.rsi/meta.json b/Resources/Textures/Structures/Doors/web_door.rsi/meta.json new file mode 100644 index 00000000000..ac7ef06d4ce --- /dev/null +++ b/Resources/Textures/Structures/Doors/web_door.rsi/meta.json @@ -0,0 +1,46 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by PixelTheKermit (github) for SS14", + "size": {"x": 32, "y": 32}, + "states": + [ + { + "name": "closed", + "directions": 1 + }, + { + "name": "closing", + "directions": 1, + "delays": + [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "open", + "directions": 1 + }, + { + "name": "opening", + "directions": 1, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Doors/web_door.rsi/open.png b/Resources/Textures/Structures/Doors/web_door.rsi/open.png new file mode 100644 index 00000000000..d12884de88f Binary files /dev/null and b/Resources/Textures/Structures/Doors/web_door.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/web_door.rsi/opening.png b/Resources/Textures/Structures/Doors/web_door.rsi/opening.png new file mode 100644 index 00000000000..305b329c092 Binary files /dev/null and b/Resources/Textures/Structures/Doors/web_door.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Furniture/Web/table.rsi/full.png b/Resources/Textures/Structures/Furniture/Tables/web.rsi/full.png similarity index 100% rename from Resources/Textures/Structures/Furniture/Web/table.rsi/full.png rename to Resources/Textures/Structures/Furniture/Tables/web.rsi/full.png diff --git a/Resources/Textures/Structures/Furniture/Web/table.rsi/meta.json b/Resources/Textures/Structures/Furniture/Tables/web.rsi/meta.json similarity index 97% rename from Resources/Textures/Structures/Furniture/Web/table.rsi/meta.json rename to Resources/Textures/Structures/Furniture/Tables/web.rsi/meta.json index 2c94685f9c6..24ed806a88f 100644 --- a/Resources/Textures/Structures/Furniture/Web/table.rsi/meta.json +++ b/Resources/Textures/Structures/Furniture/Tables/web.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "", + "copyright": "Made by PixelTheKermit (github) for SS14", "states": [ { "name": "full", diff --git a/Resources/Textures/Structures/Furniture/Web/table.rsi/state_0.png b/Resources/Textures/Structures/Furniture/Tables/web.rsi/state_0.png similarity index 100% rename from Resources/Textures/Structures/Furniture/Web/table.rsi/state_0.png rename to Resources/Textures/Structures/Furniture/Tables/web.rsi/state_0.png diff --git a/Resources/Textures/Structures/Furniture/Web/table.rsi/state_1.png b/Resources/Textures/Structures/Furniture/Tables/web.rsi/state_1.png similarity index 100% rename from Resources/Textures/Structures/Furniture/Web/table.rsi/state_1.png rename to Resources/Textures/Structures/Furniture/Tables/web.rsi/state_1.png diff --git a/Resources/Textures/Structures/Furniture/Web/table.rsi/state_2.png b/Resources/Textures/Structures/Furniture/Tables/web.rsi/state_2.png similarity index 100% rename from Resources/Textures/Structures/Furniture/Web/table.rsi/state_2.png rename to Resources/Textures/Structures/Furniture/Tables/web.rsi/state_2.png diff --git a/Resources/Textures/Structures/Furniture/Web/table.rsi/state_3.png b/Resources/Textures/Structures/Furniture/Tables/web.rsi/state_3.png similarity index 100% rename from Resources/Textures/Structures/Furniture/Web/table.rsi/state_3.png rename to Resources/Textures/Structures/Furniture/Tables/web.rsi/state_3.png diff --git a/Resources/Textures/Structures/Furniture/Web/table.rsi/state_4.png b/Resources/Textures/Structures/Furniture/Tables/web.rsi/state_4.png similarity index 100% rename from Resources/Textures/Structures/Furniture/Web/table.rsi/state_4.png rename to Resources/Textures/Structures/Furniture/Tables/web.rsi/state_4.png diff --git a/Resources/Textures/Structures/Furniture/Web/table.rsi/state_5.png b/Resources/Textures/Structures/Furniture/Tables/web.rsi/state_5.png similarity index 100% rename from Resources/Textures/Structures/Furniture/Web/table.rsi/state_5.png rename to Resources/Textures/Structures/Furniture/Tables/web.rsi/state_5.png diff --git a/Resources/Textures/Structures/Furniture/Web/table.rsi/state_6.png b/Resources/Textures/Structures/Furniture/Tables/web.rsi/state_6.png similarity index 100% rename from Resources/Textures/Structures/Furniture/Web/table.rsi/state_6.png rename to Resources/Textures/Structures/Furniture/Tables/web.rsi/state_6.png diff --git a/Resources/Textures/Structures/Furniture/Web/table.rsi/state_7.png b/Resources/Textures/Structures/Furniture/Tables/web.rsi/state_7.png similarity index 100% rename from Resources/Textures/Structures/Furniture/Web/table.rsi/state_7.png rename to Resources/Textures/Structures/Furniture/Tables/web.rsi/state_7.png diff --git a/Resources/Textures/Structures/Furniture/Web/bed.rsi/icon.png b/Resources/Textures/Structures/Furniture/Web/bed.rsi/icon.png deleted file mode 100644 index 18aef2ee51a..00000000000 Binary files a/Resources/Textures/Structures/Furniture/Web/bed.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Structures/Furniture/Web/chair.rsi/icon.png b/Resources/Textures/Structures/Furniture/Web/chair.rsi/icon.png deleted file mode 100644 index b1fb28b09d0..00000000000 Binary files a/Resources/Textures/Structures/Furniture/Web/chair.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Structures/Furniture/chairs.rsi/chair-greyscale-knocked.png b/Resources/Textures/Structures/Furniture/chairs.rsi/chair-greyscale-knocked.png index be896ab2e7b..a665b528f43 100644 Binary files a/Resources/Textures/Structures/Furniture/chairs.rsi/chair-greyscale-knocked.png and b/Resources/Textures/Structures/Furniture/chairs.rsi/chair-greyscale-knocked.png differ diff --git a/Resources/Textures/Structures/Furniture/chairs.rsi/chair-greyscale.png b/Resources/Textures/Structures/Furniture/chairs.rsi/chair-greyscale.png index 1bf59240fb0..1608b864abc 100644 Binary files a/Resources/Textures/Structures/Furniture/chairs.rsi/chair-greyscale.png and b/Resources/Textures/Structures/Furniture/chairs.rsi/chair-greyscale.png differ diff --git a/Resources/Textures/Structures/Furniture/chairs.rsi/chair-knocked.png b/Resources/Textures/Structures/Furniture/chairs.rsi/chair-knocked.png index 6c949027a6b..3cce791dedb 100644 Binary files a/Resources/Textures/Structures/Furniture/chairs.rsi/chair-knocked.png and b/Resources/Textures/Structures/Furniture/chairs.rsi/chair-knocked.png differ diff --git a/Resources/Textures/Structures/Furniture/chairs.rsi/chair.png b/Resources/Textures/Structures/Furniture/chairs.rsi/chair.png index 945f836dd55..025cdc8353d 100644 Binary files a/Resources/Textures/Structures/Furniture/chairs.rsi/chair.png and b/Resources/Textures/Structures/Furniture/chairs.rsi/chair.png differ diff --git a/Resources/Textures/Structures/Furniture/chairs.rsi/meta.json b/Resources/Textures/Structures/Furniture/chairs.rsi/meta.json index 42085448d14..f73db12625f 100644 --- a/Resources/Textures/Structures/Furniture/chairs.rsi/meta.json +++ b/Resources/Textures/Structures/Furniture/chairs.rsi/meta.json @@ -1,91 +1,95 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/11402f6ae62facc2e8bcfa1f8ef5353b26663278, meat.png is CC0-1.0 by EmoGarbage404 (github) for Space Station 14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "bar", - "directions": 4 - }, - { - "name": "bar-knocked", - "directions": 4 - }, - { - "name": "chair", - "directions": 4 - }, - { - "name": "chair-knocked", - "directions": 4 - }, - { - "name": "chair-greyscale", - "directions": 4 - }, - { - "name": "chair-greyscale-knocked", - "directions": 4 - }, - { - "name": "comfy", - "directions": 4 - }, - { - "name": "comfy-overlay", - "directions": 4 - }, - { - "name": "meat", - "directions": 4 - }, - { - "name": "office-dark", - "directions": 4 - }, - { - "name": "office-white", - "directions": 4 - }, - { - "name": "shuttle", - "directions": 4 - }, - { - "name": "shuttle-overlay", - "directions": 4 - }, - { - "name": "stool", - "directions": 4 - }, - { - "name": "stool-knocked", - "directions": 4 - }, - { - "name": "wooden", - "directions": 4 - }, - { - "name": "wooden-wings", - "directions": 4 - }, - { - "name": "wooden-wings-knocked", - "directions": 4 - }, - { - "name": "ritual", - "directions": 4 - }, - { - "name": "cursed", - "directions": 4 - } - ] -} +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/11402f6ae62facc2e8bcfa1f8ef5353b26663278, meat.png is CC0-1.0 by EmoGarbage404 (github) for Space Station 14. chair.png and its derrivatives taken from shiptest at commit https://github.com/shiptest-ss13/Shiptest/commit/f761c784812e827960a66cd10aac17ebc6edfac3, palette for chair.png, steel-bench.png and chair-greyscale.png taken from paradise equivalent chairs at commit https://github.com/ParadiseSS13/Paradise/commit/5ce5a66c814c4a60118d24885389357fd0240002, steel by SonicHDC", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "bar", + "directions": 4 + }, + { + "name": "bar-knocked", + "directions": 4 + }, + { + "name": "chair", + "directions": 4 + }, + { + "name": "chair-knocked", + "directions": 4 + }, + { + "name": "chair-greyscale", + "directions": 4 + }, + { + "name": "chair-greyscale-knocked", + "directions": 4 + }, + { + "name": "comfy", + "directions": 4 + }, + { + "name": "comfy-overlay", + "directions": 4 + }, + { + "name": "meat", + "directions": 4 + }, + { + "name": "office-dark", + "directions": 4 + }, + { + "name": "office-white", + "directions": 4 + }, + { + "name": "shuttle", + "directions": 4 + }, + { + "name": "shuttle-overlay", + "directions": 4 + }, + { + "name": "stool", + "directions": 4 + }, + { + "name": "stool-knocked", + "directions": 4 + }, + { + "name": "wooden", + "directions": 4 + }, + { + "name": "wooden-wings", + "directions": 4 + }, + { + "name": "wooden-wings-knocked", + "directions": 4 + }, + { + "name": "ritual", + "directions": 4 + }, + { + "name": "cursed", + "directions": 4 + }, + { + "name": "steel-bench", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Structures/Furniture/chairs.rsi/steel-bench.png b/Resources/Textures/Structures/Furniture/chairs.rsi/steel-bench.png new file mode 100644 index 00000000000..c554b2c207a Binary files /dev/null and b/Resources/Textures/Structures/Furniture/chairs.rsi/steel-bench.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/chefvend.rsi/broken.png b/Resources/Textures/Structures/Machines/VendingMachines/chefvend.rsi/broken.png index b5259b9fb02..37cfa72c987 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/chefvend.rsi/broken.png and b/Resources/Textures/Structures/Machines/VendingMachines/chefvend.rsi/broken.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/chefvend.rsi/eject-unshaded.png b/Resources/Textures/Structures/Machines/VendingMachines/chefvend.rsi/eject-unshaded.png index 0df1b9c0d61..4b3c9aa8aa0 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/chefvend.rsi/eject-unshaded.png and b/Resources/Textures/Structures/Machines/VendingMachines/chefvend.rsi/eject-unshaded.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/chefvend.rsi/meta.json b/Resources/Textures/Structures/Machines/VendingMachines/chefvend.rsi/meta.json index ad688300fea..6ce2fc24bde 100644 --- a/Resources/Textures/Structures/Machines/VendingMachines/chefvend.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/VendingMachines/chefvend.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 potato1234x (Github) for ss14", "size": { "x": 32, "y": 32 @@ -14,22 +14,12 @@ "name": "eject-unshaded", "delays": [ [ - 0.1, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.1 + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 ] ] }, diff --git a/Resources/Textures/Structures/Machines/VendingMachines/chefvend.rsi/normal-unshaded.png b/Resources/Textures/Structures/Machines/VendingMachines/chefvend.rsi/normal-unshaded.png index 1f45ce683cd..9002a748362 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/chefvend.rsi/normal-unshaded.png and b/Resources/Textures/Structures/Machines/VendingMachines/chefvend.rsi/normal-unshaded.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/chefvend.rsi/off.png b/Resources/Textures/Structures/Machines/VendingMachines/chefvend.rsi/off.png index 0b9062cc62b..1935d262daf 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/chefvend.rsi/off.png and b/Resources/Textures/Structures/Machines/VendingMachines/chefvend.rsi/off.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/cigs.rsi/broken.png b/Resources/Textures/Structures/Machines/VendingMachines/cigs.rsi/broken.png index ac264f22519..671a4701fe5 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/cigs.rsi/broken.png and b/Resources/Textures/Structures/Machines/VendingMachines/cigs.rsi/broken.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/cigs.rsi/meta.json b/Resources/Textures/Structures/Machines/VendingMachines/cigs.rsi/meta.json index e80ced870e7..1c53b7c6ccc 100644 --- a/Resources/Textures/Structures/Machines/VendingMachines/cigs.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/VendingMachines/cigs.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from baystation at https://github.com/Baystation12/Baystation12/commit/f200ae08d71ecbc91412ee650a334981892f5177", + "copyright": "Taken from baystation at https://github.com/Baystation12/Baystation12/commit/f200ae08d71ecbc91412ee650a334981892f5177 and modified by potato1234x", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Machines/VendingMachines/cigs.rsi/off.png b/Resources/Textures/Structures/Machines/VendingMachines/cigs.rsi/off.png index 7adcc79ae4a..c0e947c93fd 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/cigs.rsi/off.png and b/Resources/Textures/Structures/Machines/VendingMachines/cigs.rsi/off.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/coffee.rsi/broken.png b/Resources/Textures/Structures/Machines/VendingMachines/coffee.rsi/broken.png index 5d7c5ff2d18..a7608d24c10 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/coffee.rsi/broken.png and b/Resources/Textures/Structures/Machines/VendingMachines/coffee.rsi/broken.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/coffee.rsi/hellfire.png b/Resources/Textures/Structures/Machines/VendingMachines/coffee.rsi/hellfire.png deleted file mode 100644 index 02aec102659..00000000000 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/coffee.rsi/hellfire.png and /dev/null differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/coffee.rsi/meta.json b/Resources/Textures/Structures/Machines/VendingMachines/coffee.rsi/meta.json index 89e03a3ef03..6a11e09a83e 100644 --- a/Resources/Textures/Structures/Machines/VendingMachines/coffee.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/VendingMachines/coffee.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from baystation at https://github.com/Baystation12/Baystation12/commit/f200ae08d71ecbc91412ee650a334981892f5177", + "copyright": "Taken from baystation at https://github.com/Baystation12/Baystation12/commit/f200ae08d71ecbc91412ee650a334981892f5177 and modified by potato1234x (github) for ss14", "size": { "x": 32, "y": 32 @@ -23,16 +23,6 @@ ] ] }, - { - "name": "hellfire", - "delays": [ - [ - 0.25, - 0.25, - 0.25 - ] - ] - }, { "name": "off" }, diff --git a/Resources/Textures/Structures/Machines/VendingMachines/coffee.rsi/off.png b/Resources/Textures/Structures/Machines/VendingMachines/coffee.rsi/off.png index e4bef0b3a76..8e7814af604 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/coffee.rsi/off.png and b/Resources/Textures/Structures/Machines/VendingMachines/coffee.rsi/off.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/condiments.rsi/icon.png b/Resources/Textures/Structures/Machines/VendingMachines/condiments.rsi/icon.png index 138832ba7c6..f46eb0c0e46 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/condiments.rsi/icon.png and b/Resources/Textures/Structures/Machines/VendingMachines/condiments.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/condiments.rsi/off.png b/Resources/Textures/Structures/Machines/VendingMachines/condiments.rsi/off.png index 87958b48a62..028a7829d22 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/condiments.rsi/off.png and b/Resources/Textures/Structures/Machines/VendingMachines/condiments.rsi/off.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/discount.rsi/broken.png b/Resources/Textures/Structures/Machines/VendingMachines/discount.rsi/broken.png index 4a62baccbcd..aee42c80ce7 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/discount.rsi/broken.png and b/Resources/Textures/Structures/Machines/VendingMachines/discount.rsi/broken.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/discount.rsi/deny-unshaded.png b/Resources/Textures/Structures/Machines/VendingMachines/discount.rsi/deny-unshaded.png index 609c524fa57..b8221f982ee 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/discount.rsi/deny-unshaded.png and b/Resources/Textures/Structures/Machines/VendingMachines/discount.rsi/deny-unshaded.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/discount.rsi/eject-unshaded.png b/Resources/Textures/Structures/Machines/VendingMachines/discount.rsi/eject-unshaded.png index ca98be38dc3..49fcef45a1d 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/discount.rsi/eject-unshaded.png and b/Resources/Textures/Structures/Machines/VendingMachines/discount.rsi/eject-unshaded.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/discount.rsi/meta.json b/Resources/Textures/Structures/Machines/VendingMachines/discount.rsi/meta.json index c0419a1195e..711bdddffda 100644 --- a/Resources/Textures/Structures/Machines/VendingMachines/discount.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/VendingMachines/discount.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Created by Hyenh#6078 (313846233099927552)", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/1516a728931b4985c1e86f0c5995a5aa1554a1ad and modified by potato1234x", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Machines/VendingMachines/discount.rsi/normal-unshaded.png b/Resources/Textures/Structures/Machines/VendingMachines/discount.rsi/normal-unshaded.png index 58acab76a9c..f04f2db2afe 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/discount.rsi/normal-unshaded.png and b/Resources/Textures/Structures/Machines/VendingMachines/discount.rsi/normal-unshaded.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/discount.rsi/off.png b/Resources/Textures/Structures/Machines/VendingMachines/discount.rsi/off.png index 029cfb18b89..62c80ef27a6 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/discount.rsi/off.png and b/Resources/Textures/Structures/Machines/VendingMachines/discount.rsi/off.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/discount.rsi/panel.png b/Resources/Textures/Structures/Machines/VendingMachines/discount.rsi/panel.png index e8babedfe58..c60f5c3069d 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/discount.rsi/panel.png and b/Resources/Textures/Structures/Machines/VendingMachines/discount.rsi/panel.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/mining.rsi/broken.png b/Resources/Textures/Structures/Machines/VendingMachines/mining.rsi/broken.png index 99ef104517d..a5a13b2fd28 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/mining.rsi/broken.png and b/Resources/Textures/Structures/Machines/VendingMachines/mining.rsi/broken.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/mining.rsi/off.png b/Resources/Textures/Structures/Machines/VendingMachines/mining.rsi/off.png index 7c760e8a150..5e802a71479 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/mining.rsi/off.png and b/Resources/Textures/Structures/Machines/VendingMachines/mining.rsi/off.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/snack.rsi/meta.json b/Resources/Textures/Structures/Machines/VendingMachines/snack.rsi/meta.json index 182a6232780..eaf66cff8f9 100644 --- a/Resources/Textures/Structures/Machines/VendingMachines/snack.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/VendingMachines/snack.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 and potato1234x", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Machines/VendingMachines/snack.rsi/off.png b/Resources/Textures/Structures/Machines/VendingMachines/snack.rsi/off.png index 6e0de0cf5a5..4f84067486c 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/snack.rsi/off.png and b/Resources/Textures/Structures/Machines/VendingMachines/snack.rsi/off.png differ diff --git a/Resources/Textures/Structures/Machines/microwave.rsi/mwbloody0.png b/Resources/Textures/Structures/Machines/microwave.rsi/mwbloody0.png index 3bd4401547b..a51302a2537 100644 Binary files a/Resources/Textures/Structures/Machines/microwave.rsi/mwbloody0.png and b/Resources/Textures/Structures/Machines/microwave.rsi/mwbloody0.png differ diff --git a/Resources/Textures/Structures/Machines/microwave.rsi/mwbloody1.png b/Resources/Textures/Structures/Machines/microwave.rsi/mwbloody1.png index 8136ad7a96b..8cfdf34281a 100644 Binary files a/Resources/Textures/Structures/Machines/microwave.rsi/mwbloody1.png and b/Resources/Textures/Structures/Machines/microwave.rsi/mwbloody1.png differ diff --git a/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/meta.json b/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/meta.json index 9c455fee5fc..e756ef28cb4 100644 --- a/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/meta.json +++ b/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/meta.json @@ -1,100 +1,98 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/99ed48ce8d3ba7e2d26d68519e05eae277c94685, animations modified by Peptide90", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "portgen0_0" + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/Baystation12/Baystation12/blob/caa635edb97c58301ccdc64757eba323b6673cf3/icons/obj/structures/portgen.dmi. Adapted to SS14 and portgen3 sprites made by PJB3005.", + "size": { + "x": 32, + "y": 32 }, - { - "name": "portgen1_0" - }, - { - "name": "portgen2_0" - }, - { - "name": "portgen0_1", - "delays": [ - [ - 0.05, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.05 - ] - ] - }, - { - "name": "portgen1_1", - "delays": [ - [ - 0.05, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.05 - ] - ] - }, - { - "name": "portgen2_1", - "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 - ] - ] - } - ] + "states": [ + { + "name": "portgen0" + }, + { + "name": "portgen0on", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "portgen1" + }, + { + "name": "portgen1on", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "portgen1rad", + "delays": [ + [ + 0.05, + 0.05, + 0.05, + 0.05 + ] + ] + }, + { + "name": "portgen2" + }, + { + "name": "portgen2on", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "portgen3" + }, + { + "name": "portgen3on", + "delays": [ + [ + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "portgen3on_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "portgen_on_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + } + ] } diff --git a/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen0.png b/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen0.png new file mode 100644 index 00000000000..a48abfd232a Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen0.png differ diff --git a/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen0_0.png b/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen0_0.png deleted file mode 100644 index 356fb7e63c1..00000000000 Binary files a/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen0_0.png and /dev/null differ diff --git a/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen0_1.png b/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen0_1.png deleted file mode 100644 index a857bf86a73..00000000000 Binary files a/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen0_1.png and /dev/null differ diff --git a/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen0on.png b/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen0on.png new file mode 100644 index 00000000000..9e7b956eed4 Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen0on.png differ diff --git a/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen1.png b/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen1.png new file mode 100644 index 00000000000..456c173da80 Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen1.png differ diff --git a/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen1_0.png b/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen1_0.png deleted file mode 100644 index 204bc3aad78..00000000000 Binary files a/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen1_0.png and /dev/null differ diff --git a/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen1_1.png b/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen1_1.png deleted file mode 100644 index 79674618e73..00000000000 Binary files a/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen1_1.png and /dev/null differ diff --git a/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen1on.png b/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen1on.png new file mode 100644 index 00000000000..1930594501d Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen1on.png differ diff --git a/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen1rad.png b/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen1rad.png new file mode 100644 index 00000000000..87d4c6f71ee Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen1rad.png differ diff --git a/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen2.png b/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen2.png new file mode 100644 index 00000000000..826392a1766 Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen2.png differ diff --git a/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen2_0.png b/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen2_0.png deleted file mode 100644 index c5d74eb7598..00000000000 Binary files a/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen2_0.png and /dev/null differ diff --git a/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen2_1.png b/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen2_1.png deleted file mode 100644 index 08af33282b2..00000000000 Binary files a/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen2_1.png and /dev/null differ diff --git a/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen2on.png b/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen2on.png new file mode 100644 index 00000000000..1b2fc3b17ed Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen2on.png differ diff --git a/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen3.png b/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen3.png new file mode 100644 index 00000000000..ad9d59e6bd5 Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen3.png differ diff --git a/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen3on.png b/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen3on.png new file mode 100644 index 00000000000..f5ed81cd28e Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen3on.png differ diff --git a/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen3on_unlit.png b/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen3on_unlit.png new file mode 100644 index 00000000000..a7bd3b5cce2 Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen3on_unlit.png differ diff --git a/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen_on_unlit.png b/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen_on_unlit.png new file mode 100644 index 00000000000..542a20107d9 Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/portable_generator.rsi/portgen_on_unlit.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/web.rsi/base.png b/Resources/Textures/Structures/Storage/Crates/web.rsi/base.png new file mode 100644 index 00000000000..1e252634a83 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/web.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/web.rsi/closed.png b/Resources/Textures/Structures/Storage/Crates/web.rsi/closed.png new file mode 100644 index 00000000000..780974b07ea Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/web.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/web.rsi/icon.png b/Resources/Textures/Structures/Storage/Crates/web.rsi/icon.png new file mode 100644 index 00000000000..bc2da33a323 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/web.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/web.rsi/meta.json b/Resources/Textures/Structures/Storage/Crates/web.rsi/meta.json new file mode 100644 index 00000000000..489c06d445a --- /dev/null +++ b/Resources/Textures/Structures/Storage/Crates/web.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by PixelTheKermit (github) for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "closed" + }, + { + "name": "open" + } + ] +} diff --git a/Resources/Textures/Structures/Storage/Crates/web.rsi/open.png b/Resources/Textures/Structures/Storage/Crates/web.rsi/open.png new file mode 100644 index 00000000000..d387805acf4 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/web.rsi/open.png differ diff --git a/Resources/Textures/Structures/Wallmounts/switch.rsi/dead.png b/Resources/Textures/Structures/Wallmounts/switch.rsi/dead.png index f618c152178..9454288860f 100644 Binary files a/Resources/Textures/Structures/Wallmounts/switch.rsi/dead.png and b/Resources/Textures/Structures/Wallmounts/switch.rsi/dead.png differ diff --git a/Resources/Textures/Structures/Wallmounts/switch.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/switch.rsi/meta.json index 60c494bd9ea..0b5805e5f5f 100644 --- a/Resources/Textures/Structures/Wallmounts/switch.rsi/meta.json +++ b/Resources/Textures/Structures/Wallmounts/switch.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "Taken from CEV-Eris at commit 15748b71a1e6d2c547588c653d7c42f18011f7c5", + "copyright": "Taken from CEV-Eris at commit 15748b71a1e6d2c547588c653d7c42f18011f7c5, modified by ThunderBear2006 (github) for Space Station 14.", "states": [ { "name": "on", diff --git a/Resources/Textures/Structures/Wallmounts/switch.rsi/off.png b/Resources/Textures/Structures/Wallmounts/switch.rsi/off.png index 6538d8d6124..b2437f14a1e 100644 Binary files a/Resources/Textures/Structures/Wallmounts/switch.rsi/off.png and b/Resources/Textures/Structures/Wallmounts/switch.rsi/off.png differ diff --git a/Resources/Textures/Structures/Wallmounts/switch.rsi/on.png b/Resources/Textures/Structures/Wallmounts/switch.rsi/on.png index 634f3385924..e468246f7b1 100644 Binary files a/Resources/Textures/Structures/Wallmounts/switch.rsi/on.png and b/Resources/Textures/Structures/Wallmounts/switch.rsi/on.png differ diff --git a/Resources/Textures/Structures/Walls/random.rsi/meta.json b/Resources/Textures/Structures/Walls/random.rsi/meta.json new file mode 100644 index 00000000000..e3c7e14411f --- /dev/null +++ b/Resources/Textures/Structures/Walls/random.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Grille sprite taken from https://github.com/tgstation/tgstation at commit 17c603f1d037f22081d446b9a3f3ae8d41f52e86", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "randomgrille" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Structures/Walls/random.rsi/randomgrille.png b/Resources/Textures/Structures/Walls/random.rsi/randomgrille.png new file mode 100644 index 00000000000..d01d60ae824 Binary files /dev/null and b/Resources/Textures/Structures/Walls/random.rsi/randomgrille.png differ diff --git a/Resources/Textures/Structures/Web/bed.rsi/icon.png b/Resources/Textures/Structures/Web/bed.rsi/icon.png new file mode 100644 index 00000000000..d0bc0674a19 Binary files /dev/null and b/Resources/Textures/Structures/Web/bed.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Furniture/Web/bed.rsi/meta.json b/Resources/Textures/Structures/Web/bed.rsi/meta.json similarity index 70% rename from Resources/Textures/Structures/Furniture/Web/bed.rsi/meta.json rename to Resources/Textures/Structures/Web/bed.rsi/meta.json index 0699682b97a..9832955f9ea 100644 --- a/Resources/Textures/Structures/Furniture/Web/bed.rsi/meta.json +++ b/Resources/Textures/Structures/Web/bed.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "", + "copyright": "Made by PixelTheKermit (github) for SS14", "states": [ { "name": "icon" diff --git a/Resources/Textures/Structures/Web/chair.rsi/icon.png b/Resources/Textures/Structures/Web/chair.rsi/icon.png new file mode 100644 index 00000000000..09425b604af Binary files /dev/null and b/Resources/Textures/Structures/Web/chair.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Furniture/Web/chair.rsi/meta.json b/Resources/Textures/Structures/Web/chair.rsi/meta.json similarity index 73% rename from Resources/Textures/Structures/Furniture/Web/chair.rsi/meta.json rename to Resources/Textures/Structures/Web/chair.rsi/meta.json index 3b193359ab9..99f2dbf6d0f 100644 --- a/Resources/Textures/Structures/Furniture/Web/chair.rsi/meta.json +++ b/Resources/Textures/Structures/Web/chair.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "", + "copyright": "Made by PixelTheKermit (github) for SS14", "states": [ { "name": "icon", diff --git a/Resources/Textures/Tiles/Asteroid/asteroid.png b/Resources/Textures/Tiles/Asteroid/asteroid.png index 97d9fcc5dc7..304d2be3677 100644 Binary files a/Resources/Textures/Tiles/Asteroid/asteroid.png and b/Resources/Textures/Tiles/Asteroid/asteroid.png differ diff --git a/Resources/Textures/Tiles/Asteroid/asteroid1.png b/Resources/Textures/Tiles/Asteroid/asteroid1.png deleted file mode 100644 index 6ceabebbb79..00000000000 Binary files a/Resources/Textures/Tiles/Asteroid/asteroid1.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Asteroid/asteroid10.png b/Resources/Textures/Tiles/Asteroid/asteroid10.png deleted file mode 100644 index 9d338610885..00000000000 Binary files a/Resources/Textures/Tiles/Asteroid/asteroid10.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Asteroid/asteroid11.png b/Resources/Textures/Tiles/Asteroid/asteroid11.png deleted file mode 100644 index fade0c06c96..00000000000 Binary files a/Resources/Textures/Tiles/Asteroid/asteroid11.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Asteroid/asteroid12.png b/Resources/Textures/Tiles/Asteroid/asteroid12.png deleted file mode 100644 index b0eabae9c23..00000000000 Binary files a/Resources/Textures/Tiles/Asteroid/asteroid12.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Asteroid/asteroid2.png b/Resources/Textures/Tiles/Asteroid/asteroid2.png deleted file mode 100644 index 73bae67f661..00000000000 Binary files a/Resources/Textures/Tiles/Asteroid/asteroid2.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Asteroid/asteroid3.png b/Resources/Textures/Tiles/Asteroid/asteroid3.png deleted file mode 100644 index def3348d0b6..00000000000 Binary files a/Resources/Textures/Tiles/Asteroid/asteroid3.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Asteroid/asteroid4.png b/Resources/Textures/Tiles/Asteroid/asteroid4.png deleted file mode 100644 index c78c7646d5f..00000000000 Binary files a/Resources/Textures/Tiles/Asteroid/asteroid4.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Asteroid/asteroid5.png b/Resources/Textures/Tiles/Asteroid/asteroid5.png deleted file mode 100644 index 2ceebd64f61..00000000000 Binary files a/Resources/Textures/Tiles/Asteroid/asteroid5.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Asteroid/asteroid6.png b/Resources/Textures/Tiles/Asteroid/asteroid6.png deleted file mode 100644 index 1a2e35e98ce..00000000000 Binary files a/Resources/Textures/Tiles/Asteroid/asteroid6.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Asteroid/asteroid7.png b/Resources/Textures/Tiles/Asteroid/asteroid7.png deleted file mode 100644 index 1b1a5913e8f..00000000000 Binary files a/Resources/Textures/Tiles/Asteroid/asteroid7.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Asteroid/asteroid8.png b/Resources/Textures/Tiles/Asteroid/asteroid8.png deleted file mode 100644 index 45a15ba0fb9..00000000000 Binary files a/Resources/Textures/Tiles/Asteroid/asteroid8.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Asteroid/asteroid9.png b/Resources/Textures/Tiles/Asteroid/asteroid9.png deleted file mode 100644 index c79d0076261..00000000000 Binary files a/Resources/Textures/Tiles/Asteroid/asteroid9.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Asteroid/asteroid_coarse_sand.png b/Resources/Textures/Tiles/Asteroid/asteroid_coarse_sand.png deleted file mode 100644 index 4e9a96e2c27..00000000000 Binary files a/Resources/Textures/Tiles/Asteroid/asteroid_coarse_sand.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Asteroid/asteroid_coarse_sand_dug.png b/Resources/Textures/Tiles/Asteroid/asteroid_coarse_sand_dug.png deleted file mode 100644 index af24089603b..00000000000 Binary files a/Resources/Textures/Tiles/Asteroid/asteroid_coarse_sand_dug.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Asteroid/asteroid_pebbles.png b/Resources/Textures/Tiles/Asteroid/asteroid_pebbles.png deleted file mode 100644 index 9ec17e8bac4..00000000000 Binary files a/Resources/Textures/Tiles/Asteroid/asteroid_pebbles.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Asteroid/asteroid_red.png b/Resources/Textures/Tiles/Asteroid/asteroid_red.png new file mode 100644 index 00000000000..8b32e282206 Binary files /dev/null and b/Resources/Textures/Tiles/Asteroid/asteroid_red.png differ diff --git a/Resources/Textures/Tiles/Asteroid/asteroid_rocks.png b/Resources/Textures/Tiles/Asteroid/asteroid_rocks.png deleted file mode 100644 index b2309e17b49..00000000000 Binary files a/Resources/Textures/Tiles/Asteroid/asteroid_rocks.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Asteroid/asteroid_rocks_red.png b/Resources/Textures/Tiles/Asteroid/asteroid_rocks_red.png deleted file mode 100644 index 9e4deb11702..00000000000 Binary files a/Resources/Textures/Tiles/Asteroid/asteroid_rocks_red.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Asteroid/ironsand.png b/Resources/Textures/Tiles/Asteroid/ironsand.png new file mode 100644 index 00000000000..485cbd09bad Binary files /dev/null and b/Resources/Textures/Tiles/Asteroid/ironsand.png differ diff --git a/Resources/Textures/Tiles/ironsand1.png b/Resources/Textures/Tiles/Asteroid/ironsand0.png similarity index 100% rename from Resources/Textures/Tiles/ironsand1.png rename to Resources/Textures/Tiles/Asteroid/ironsand0.png diff --git a/Resources/Textures/Tiles/Misc/Web/web_tile.png b/Resources/Textures/Tiles/Misc/Web/web_tile.png index c40431140c2..257cd44a014 100644 Binary files a/Resources/Textures/Tiles/Misc/Web/web_tile.png and b/Resources/Textures/Tiles/Misc/Web/web_tile.png differ diff --git a/Resources/Textures/Tiles/Planet/Concrete/asphalt.png b/Resources/Textures/Tiles/Planet/Concrete/asphalt.png new file mode 100644 index 00000000000..e5811515247 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Concrete/asphalt.png differ diff --git a/Resources/Textures/Tiles/Planet/Concrete/attributions.yml b/Resources/Textures/Tiles/Planet/Concrete/attributions.yml new file mode 100644 index 00000000000..00411ebbef0 --- /dev/null +++ b/Resources/Textures/Tiles/Planet/Concrete/attributions.yml @@ -0,0 +1,9 @@ +- files: ["asphalt.png", "oldconcrete.png", "oldconcrete_mono.png", "oldconcrete_smooth.png"] + license: "CC-BY-SA-3.0" + copyright: "Taken from vgstation13, modified by EmoGarbage404 (github)" + source: "https://github.com/vgstation-coders/vgstation13/commit/02b9f6894af4419c9f7e699a22c402b086d8067e" + +- files: ["concrete.png", "concrete_mono.png", "concrete_smooth.png", "grayconcrete.png", "grayconcrete_mono.png", "grayconcrete_smooth.png"] + license: "CC-BY-NC-SA-3.0" + copyright: "Taken from goonstation, modified by EmoGarbage404 (github)" + source: "https://github.com/goonstation/goonstation/commit/1a76b08389014ec88f703fdb1ae916c2a6e57bd8" \ No newline at end of file diff --git a/Resources/Textures/Tiles/Planet/Concrete/concrete.png b/Resources/Textures/Tiles/Planet/Concrete/concrete.png new file mode 100644 index 00000000000..0362237aa71 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Concrete/concrete.png differ diff --git a/Resources/Textures/Tiles/Planet/Concrete/concrete_mono.png b/Resources/Textures/Tiles/Planet/Concrete/concrete_mono.png new file mode 100644 index 00000000000..d06df74eb92 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Concrete/concrete_mono.png differ diff --git a/Resources/Textures/Tiles/Planet/Concrete/concrete_smooth.png b/Resources/Textures/Tiles/Planet/Concrete/concrete_smooth.png new file mode 100644 index 00000000000..fe5f77bab0f Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Concrete/concrete_smooth.png differ diff --git a/Resources/Textures/Tiles/Planet/Concrete/grayconcrete.png b/Resources/Textures/Tiles/Planet/Concrete/grayconcrete.png new file mode 100644 index 00000000000..30dbbeed567 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Concrete/grayconcrete.png differ diff --git a/Resources/Textures/Tiles/Planet/Concrete/grayconcrete_mono.png b/Resources/Textures/Tiles/Planet/Concrete/grayconcrete_mono.png new file mode 100644 index 00000000000..48b1bfc70d6 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Concrete/grayconcrete_mono.png differ diff --git a/Resources/Textures/Tiles/Planet/Concrete/grayconcrete_smooth.png b/Resources/Textures/Tiles/Planet/Concrete/grayconcrete_smooth.png new file mode 100644 index 00000000000..f39130e6b81 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Concrete/grayconcrete_smooth.png differ diff --git a/Resources/Textures/Tiles/Planet/Concrete/oldconcrete.png b/Resources/Textures/Tiles/Planet/Concrete/oldconcrete.png new file mode 100644 index 00000000000..2212a7c84cb Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Concrete/oldconcrete.png differ diff --git a/Resources/Textures/Tiles/Planet/Concrete/oldconcrete_mono.png b/Resources/Textures/Tiles/Planet/Concrete/oldconcrete_mono.png new file mode 100644 index 00000000000..5d7755228df Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Concrete/oldconcrete_mono.png differ diff --git a/Resources/Textures/Tiles/Planet/Concrete/oldconcrete_smooth.png b/Resources/Textures/Tiles/Planet/Concrete/oldconcrete_smooth.png new file mode 100644 index 00000000000..51a7f822fcd Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Concrete/oldconcrete_smooth.png differ diff --git a/Resources/Textures/Tiles/Planet/Snow/edge0.png b/Resources/Textures/Tiles/Planet/Snow/edge0.png deleted file mode 100644 index a998a728732..00000000000 Binary files a/Resources/Textures/Tiles/Planet/Snow/edge0.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Planet/Snow/edge1.png b/Resources/Textures/Tiles/Planet/Snow/edge1.png deleted file mode 100644 index 04f6f7222a9..00000000000 Binary files a/Resources/Textures/Tiles/Planet/Snow/edge1.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Planet/Snow/edge2.png b/Resources/Textures/Tiles/Planet/Snow/edge2.png deleted file mode 100644 index 579cecc73fd..00000000000 Binary files a/Resources/Textures/Tiles/Planet/Snow/edge2.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Planet/Snow/gravsnow_corner.png b/Resources/Textures/Tiles/Planet/Snow/gravsnow_corner.png deleted file mode 100644 index d157293bdec..00000000000 Binary files a/Resources/Textures/Tiles/Planet/Snow/gravsnow_corner.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Planet/Snow/gravsnow_surround.png b/Resources/Textures/Tiles/Planet/Snow/gravsnow_surround.png deleted file mode 100644 index 0745067fe1c..00000000000 Binary files a/Resources/Textures/Tiles/Planet/Snow/gravsnow_surround.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Planet/Snow/meta.json b/Resources/Textures/Tiles/Planet/Snow/meta.json index 85b770fa385..3ed950dd98d 100644 --- a/Resources/Textures/Tiles/Planet/Snow/meta.json +++ b/Resources/Textures/Tiles/Planet/Snow/meta.json @@ -9,36 +9,37 @@ "name": "snow" }, { - "name": "snow_corner", - "directions": 8 + "name": "snow_double_edge_south", }, { - "name": "snow_surround", - "directions": 4 + "name": "snow_double_edge_east", }, { - "name": "gravsnow" + "name": "snow_double_edge_north", }, { - "name": "gravsnow_corner", - "directions": 8 + "name": "snow_double_edge_west", }, { - "name": "gravsnow_surround", - "directions": 4 + "name": "snow_dug" }, { - "name": "plating" + "name": "snow_dug_double_edge_south", }, { - "name": "platingdrift", - "directions": 4 + "name": "snow_dug_double_edge_east", }, { - "name": "ice" + "name": "snow_dug_double_edge_north", + }, + { + "name": "snow_dug_double_edge_west", }, { - "name": "snowwhite" + "name": "plating" + }, + { + "name": "ice" }, { "name": "snow0" @@ -79,23 +80,8 @@ { "name": "snow12" }, - { - "name": "snowplating" - }, { "name": "permafrost" - }, - { - "name": "edge0", - "directions": 4 - }, - { - "name": "edge1", - "directions": 4 - }, - { - "name": "edge2", - "directions": 4 } ] } \ No newline at end of file diff --git a/Resources/Textures/Tiles/Planet/Snow/platingdrift.png b/Resources/Textures/Tiles/Planet/Snow/platingdrift.png deleted file mode 100644 index 8b85de8844e..00000000000 Binary files a/Resources/Textures/Tiles/Planet/Snow/platingdrift.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Planet/Snow/snow_corner.png b/Resources/Textures/Tiles/Planet/Snow/snow_corner.png deleted file mode 100644 index 9798cdfb4a6..00000000000 Binary files a/Resources/Textures/Tiles/Planet/Snow/snow_corner.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Planet/Snow/snow_double_edge_east.png b/Resources/Textures/Tiles/Planet/Snow/snow_double_edge_east.png new file mode 100644 index 00000000000..d75501e3fc8 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Snow/snow_double_edge_east.png differ diff --git a/Resources/Textures/Tiles/Planet/Snow/snow_double_edge_north.png b/Resources/Textures/Tiles/Planet/Snow/snow_double_edge_north.png new file mode 100644 index 00000000000..bb8eb4b06a4 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Snow/snow_double_edge_north.png differ diff --git a/Resources/Textures/Tiles/Planet/Snow/snow_double_edge_south.png b/Resources/Textures/Tiles/Planet/Snow/snow_double_edge_south.png new file mode 100644 index 00000000000..1c540597853 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Snow/snow_double_edge_south.png differ diff --git a/Resources/Textures/Tiles/Planet/Snow/snow_double_edge_west.png b/Resources/Textures/Tiles/Planet/Snow/snow_double_edge_west.png new file mode 100644 index 00000000000..07cd0c2745a Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Snow/snow_double_edge_west.png differ diff --git a/Resources/Textures/Tiles/Planet/Snow/gravsnow.png b/Resources/Textures/Tiles/Planet/Snow/snow_dug.png similarity index 100% rename from Resources/Textures/Tiles/Planet/Snow/gravsnow.png rename to Resources/Textures/Tiles/Planet/Snow/snow_dug.png diff --git a/Resources/Textures/Tiles/Planet/Snow/snow_dug_double_edge_east.png b/Resources/Textures/Tiles/Planet/Snow/snow_dug_double_edge_east.png new file mode 100644 index 00000000000..af722f9671b Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Snow/snow_dug_double_edge_east.png differ diff --git a/Resources/Textures/Tiles/Planet/Snow/snow_dug_double_edge_north.png b/Resources/Textures/Tiles/Planet/Snow/snow_dug_double_edge_north.png new file mode 100644 index 00000000000..3135cef7262 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Snow/snow_dug_double_edge_north.png differ diff --git a/Resources/Textures/Tiles/Planet/Snow/snow_dug_double_edge_south.png b/Resources/Textures/Tiles/Planet/Snow/snow_dug_double_edge_south.png new file mode 100644 index 00000000000..acbeaccde09 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Snow/snow_dug_double_edge_south.png differ diff --git a/Resources/Textures/Tiles/Planet/Snow/snow_dug_double_edge_west.png b/Resources/Textures/Tiles/Planet/Snow/snow_dug_double_edge_west.png new file mode 100644 index 00000000000..4cdfa2ebc2d Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Snow/snow_dug_double_edge_west.png differ diff --git a/Resources/Textures/Tiles/Planet/Snow/snow_piss.png b/Resources/Textures/Tiles/Planet/Snow/snow_piss.png deleted file mode 100644 index 7c57e327ca9..00000000000 Binary files a/Resources/Textures/Tiles/Planet/Snow/snow_piss.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Planet/Snow/snow_surround.png b/Resources/Textures/Tiles/Planet/Snow/snow_surround.png deleted file mode 100644 index 52289ed92f6..00000000000 Binary files a/Resources/Textures/Tiles/Planet/Snow/snow_surround.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Planet/Snow/snowplating.png b/Resources/Textures/Tiles/Planet/Snow/snowplating.png deleted file mode 100644 index 0dc0e48fedd..00000000000 Binary files a/Resources/Textures/Tiles/Planet/Snow/snowplating.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Planet/Snow/snowwhite.png b/Resources/Textures/Tiles/Planet/Snow/snowwhite.png deleted file mode 100644 index 1a44d006f7d..00000000000 Binary files a/Resources/Textures/Tiles/Planet/Snow/snowwhite.png and /dev/null differ diff --git a/Resources/Textures/Tiles/SteelTileSpritingGuide.txt b/Resources/Textures/Tiles/SteelTileSpritingGuide.txt index 15a54ff09cf..0935781d5b1 100644 --- a/Resources/Textures/Tiles/SteelTileSpritingGuide.txt +++ b/Resources/Textures/Tiles/SteelTileSpritingGuide.txt @@ -1,7 +1,7 @@ [ NOTE: This is not a guide for making tiles "look good" or a general spriting guide for all floor tiles, this is just for anything based off of steel tiles!] You might be looking at these tiles and going: "What the fuck? How on earth did they get anything salvagable out of the supernorn tiles!" -Well, believe it or not - they've actually been resprited! Gone are the days of 80+ color potentially-jpeged-but-that's-just-a-theory-but-they-are-definitely-nearly-uneditable tiles. They now use a color palette around the size of 9, give or take a few colors from color errors. +Well, believe it or not - they've actually been resprited! Gone are the days of 80+ color potentially-jpeged-but-that's-just-a-theory-but-they-are-definitely-nearly-uneditable tiles. They now use a color palette around the size of 10, give or take a few colors from color errors. The process to make something like them is now dead-simple, and should be doable by even non-spriters if need be. 1. Lay out the base of the tile you're trying to make (look at tile-reference-sheet.png) diff --git a/Resources/Textures/Tiles/attributions.yml b/Resources/Textures/Tiles/attributions.yml index 94cb724afda..641100fe421 100644 --- a/Resources/Textures/Tiles/attributions.yml +++ b/Resources/Textures/Tiles/attributions.yml @@ -6,14 +6,14 @@ copyright: "CEV-Eris commit 28e589f0ff72a009adf17db767e90be39054f0f2" source: "https://github.com/discordia-space/CEV-Eris/" -- files: [ "asteroid_rocks_red.png", "asteroid_tile.png", "elevator_shaft.png", "freezer.png", "green_circuit.png", "lino.png", "mono.png", "rock_vault.png", "showroom.png"] +- files: [ "asteroid_red.png", "asteroid_tile.png", "elevator_shaft.png", "freezer.png", "green_circuit.png", "lino.png", "mono.png", "rock_vault.png", "showroom.png"] license: "CC-BY-SA-3.0" - copyright: "vgstation13 at roughly commit e4d3ea7f69d21c3667be12b114fa935c4640cb05, asteroid_rocks_red and asteroid_tile taken from commit /vg/station at commit 02b9f6894af4419c9f7e699a22c402b086d8067e." + copyright: "vgstation13 at roughly commit e4d3ea7f69d21c3667be12b114fa935c4640cb05, asteroid_red and asteroid_tile taken from commit /vg/station at commit 02b9f6894af4419c9f7e699a22c402b086d8067e." source: "https://github.com/vgstation-coders/vgstation13" -- files: [ "asteroid.png", "asteroid0.png", "asteroid1.png", "asteroid2.png", "asteroid3.png", "asteroid4.png", "asteroid5.png", "asteroid6.png", "asteroid7.png", "asteroid8.png", "asteroid9.png", "asteroid10.png", "asteroid_rocks.png", "asteroid_pebbles.png"] +- files: [ "asteroid.png", "asteroid_dug.png", "asteroid0.png"] license: "CC-BY-SA-3.0" - copyright: "Taken from /tg/station at commit 6665eec76c98a4f3f89bebcd10b34b47dcc0b8ae, asteroid_rocks and asteroid_pebbles modified from asteroid tiles 0-10." + copyright: "Taken from /tg/station at commit 6665eec76c98a4f3f89bebcd10b34b47dcc0b8ae." source: "https://github.com/tgstation/tgstation/" - files: ["blue_circuit.png", "cropped_parallax.png", "eighties.png", "gold.png", "grass.png", "ironsand1.png", "ironsand2.png", "ironsand3.png", "ironsand4.png", "junglegrass.png", "lattice.png", "plating.png", "reinforced.png", "silver.png", "snow.png", "wood.png"] @@ -26,7 +26,7 @@ copyright: "Modified from reinforced.png by github user @Flareguy" source: "https://github.com/space-wizards/space-station-14/pull/18676" -- files: ["asteroid_plating"] +- files: ["asteroid_plating.png, snow_plating.png"] license: "CC-BY-SA-3.0" copyright: "Modified from plating.png by github user @Flareguy" source: "https://github.com/space-wizards/space-station-14/" diff --git a/Resources/Textures/Tiles/dark_mono.png b/Resources/Textures/Tiles/dark_mono.png index 525f6bebe7c..9e156c6e023 100644 Binary files a/Resources/Textures/Tiles/dark_mono.png and b/Resources/Textures/Tiles/dark_mono.png differ diff --git a/Resources/Textures/Tiles/ironsand2.png b/Resources/Textures/Tiles/ironsand2.png deleted file mode 100644 index bf0631ed13c..00000000000 Binary files a/Resources/Textures/Tiles/ironsand2.png and /dev/null differ diff --git a/Resources/Textures/Tiles/ironsand3.png b/Resources/Textures/Tiles/ironsand3.png deleted file mode 100644 index f00107a2256..00000000000 Binary files a/Resources/Textures/Tiles/ironsand3.png and /dev/null differ diff --git a/Resources/Textures/Tiles/ironsand4.png b/Resources/Textures/Tiles/ironsand4.png deleted file mode 100644 index ec4f169acaa..00000000000 Binary files a/Resources/Textures/Tiles/ironsand4.png and /dev/null differ diff --git a/Resources/Textures/Tiles/snow_plating.png b/Resources/Textures/Tiles/snow_plating.png new file mode 100644 index 00000000000..09c8af01816 Binary files /dev/null and b/Resources/Textures/Tiles/snow_plating.png differ diff --git a/Resources/Textures/Tiles/steel_mono.png b/Resources/Textures/Tiles/steel_mono.png index f7858c74217..94121926a3d 100644 Binary files a/Resources/Textures/Tiles/steel_mono.png and b/Resources/Textures/Tiles/steel_mono.png differ diff --git a/Resources/Textures/Tiles/tile-reference-sheet.png b/Resources/Textures/Tiles/tile-reference-sheet.png index 82fbd360505..f1df1d133cb 100644 Binary files a/Resources/Textures/Tiles/tile-reference-sheet.png and b/Resources/Textures/Tiles/tile-reference-sheet.png differ diff --git a/Resources/Textures/Tiles/white_mono.png b/Resources/Textures/Tiles/white_mono.png index 8c2d7b6cec1..66eedee0f69 100644 Binary files a/Resources/Textures/Tiles/white_mono.png and b/Resources/Textures/Tiles/white_mono.png differ diff --git a/Resources/mapping_actions.yml b/Resources/mapping_actions.yml index 3062e45842e..9bd170ee35d 100644 --- a/Resources/mapping_actions.yml +++ b/Resources/mapping_actions.yml @@ -1,9 +1,8 @@ -- action: !type:InstantAction - checkCanInteract: False +- action: !type:InstantActionComponent icon: entity: ReinforcedWindow - name: ReinforcedWindow keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -12,12 +11,12 @@ entityType: ReinforcedWindow assignments: - 0: 3 -- action: !type:InstantAction - checkCanInteract: False + name: ReinforcedWindow +- action: !type:InstantActionComponent icon: entity: WallSolid - name: WallSolid keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -26,12 +25,12 @@ entityType: WallSolid assignments: - 0: 0 -- action: !type:InstantAction - checkCanInteract: False + name: WallSolid +- action: !type:InstantActionComponent icon: entity: WallReinforced - name: WallReinforced keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -40,12 +39,12 @@ entityType: WallReinforced assignments: - 0: 1 -- action: !type:InstantAction - checkCanInteract: False + name: WallReinforced +- action: !type:InstantActionComponent icon: entity: Window - name: Window keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -54,12 +53,12 @@ entityType: Window assignments: - 0: 2 -- action: !type:InstantAction - checkCanInteract: False + name: Window +- action: !type:InstantActionComponent icon: entity: Firelock - name: Firelock keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -68,12 +67,12 @@ entityType: Firelock assignments: - 0: 5 -- action: !type:InstantAction - checkCanInteract: False + name: Firelock +- action: !type:InstantActionComponent icon: entity: Grille - name: Grille keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -82,11 +81,11 @@ entityType: Grille assignments: - 0: 4 -- action: !type:InstantAction - checkCanInteract: False + name: Grille +- action: !type:InstantActionComponent icon: Interface/VerbIcons/delete.svg.192dpi.png - name: action-name-mapping-erase keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -99,12 +98,12 @@ - 4: 9 - 5: 9 - 6: 9 -- action: !type:InstantAction - checkCanInteract: False + name: action-name-mapping-erase +- action: !type:InstantActionComponent icon: entity: GasPipeStraight - name: GasPipeStraight keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -113,12 +112,12 @@ entityType: GasPipeStraight assignments: - 1: 0 -- action: !type:InstantAction - checkCanInteract: False + name: GasPipeStraight +- action: !type:InstantActionComponent icon: entity: GasPipeBend - name: GasPipeBend keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -127,12 +126,12 @@ entityType: GasPipeBend assignments: - 1: 1 -- action: !type:InstantAction - checkCanInteract: False + name: GasPipeBend +- action: !type:InstantActionComponent icon: entity: GasPipeTJunction - name: GasPipeTJunction keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -141,12 +140,12 @@ entityType: GasPipeTJunction assignments: - 1: 2 -- action: !type:InstantAction - checkCanInteract: False + name: GasPipeTJunction +- action: !type:InstantActionComponent icon: entity: GasPipeFourway - name: GasPipeFourway keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -155,12 +154,12 @@ entityType: GasPipeFourway assignments: - 1: 3 -- action: !type:InstantAction - checkCanInteract: False + name: GasPipeFourway +- action: !type:InstantActionComponent icon: entity: GasVentScrubber - name: GasVentScrubber keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -169,12 +168,12 @@ entityType: GasVentScrubber assignments: - 1: 4 -- action: !type:InstantAction - checkCanInteract: False + name: GasVentScrubber +- action: !type:InstantActionComponent icon: entity: GasVentPump - name: GasVentPump keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -183,12 +182,12 @@ entityType: GasVentPump assignments: - 1: 5 -- action: !type:InstantAction - checkCanInteract: False + name: GasVentPump +- action: !type:InstantActionComponent icon: entity: AirAlarm - name: AirAlarm keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -197,12 +196,12 @@ entityType: AirAlarm assignments: - 1: 6 -- action: !type:InstantAction - checkCanInteract: False + name: AirAlarm +- action: !type:InstantActionComponent icon: entity: FireAlarm - name: FireAlarm keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -211,12 +210,12 @@ entityType: FireAlarm assignments: - 1: 7 -- action: !type:InstantAction - checkCanInteract: False + name: FireAlarm +- action: !type:InstantActionComponent icon: entity: APCBasic - name: APCBasic keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -225,12 +224,12 @@ entityType: APCBasic assignments: - 2: 3 -- action: !type:InstantAction - checkCanInteract: False + name: APCBasic +- action: !type:InstantActionComponent icon: entity: CableApcExtension - name: CableApcExtension keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -239,12 +238,12 @@ entityType: CableApcExtension assignments: - 2: 0 -- action: !type:InstantAction - checkCanInteract: False + name: CableApcExtension +- action: !type:InstantActionComponent icon: entity: CableMV - name: CableMV keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -253,12 +252,12 @@ entityType: CableMV assignments: - 2: 1 -- action: !type:InstantAction - checkCanInteract: False + name: CableMV +- action: !type:InstantActionComponent icon: entity: CableHV - name: CableHV keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -267,12 +266,12 @@ entityType: CableHV assignments: - 2: 2 -- action: !type:InstantAction - checkCanInteract: False + name: CableHV +- action: !type:InstantActionComponent icon: entity: SubstationBasic - name: SubstationBasic keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -281,12 +280,12 @@ entityType: SubstationBasic assignments: - 2: 4 -- action: !type:InstantAction - checkCanInteract: False + name: SubstationBasic +- action: !type:InstantActionComponent icon: entity: Poweredlight - name: Poweredlight keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -295,12 +294,12 @@ entityType: Poweredlight assignments: - 2: 6 -- action: !type:InstantAction - checkCanInteract: False + name: Poweredlight +- action: !type:InstantActionComponent icon: entity: EmergencyLight - name: EmergencyLight keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -309,12 +308,12 @@ entityType: EmergencyLight assignments: - 2: 7 -- action: !type:InstantAction - checkCanInteract: False + name: EmergencyLight +- action: !type:InstantActionComponent icon: entity: SMESBasic - name: SMESBasic keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -323,12 +322,12 @@ entityType: SMESBasic assignments: - 2: 5 -- action: !type:InstantAction - checkCanInteract: False + name: SMESBasic +- action: !type:InstantActionComponent icon: entity: TableWood - name: TableWood keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -337,12 +336,12 @@ entityType: TableWood assignments: - 3: 0 -- action: !type:InstantAction - checkCanInteract: False + name: TableWood +- action: !type:InstantActionComponent icon: entity: Table - name: Table keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -351,12 +350,12 @@ entityType: Table assignments: - 3: 1 -- action: !type:InstantAction - checkCanInteract: False + name: Table +- action: !type:InstantActionComponent icon: entity: ChairWood - name: ChairWood keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -365,12 +364,12 @@ entityType: ChairWood assignments: - 3: 2 -- action: !type:InstantAction - checkCanInteract: False + name: ChairWood +- action: !type:InstantActionComponent icon: entity: Chair - name: Chair keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -379,12 +378,12 @@ entityType: Chair assignments: - 3: 3 -- action: !type:InstantAction - checkCanInteract: False + name: Chair +- action: !type:InstantActionComponent icon: entity: ChairOfficeLight - name: ChairOfficeLight keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -393,12 +392,12 @@ entityType: ChairOfficeLight assignments: - 3: 4 -- action: !type:InstantAction - checkCanInteract: False + name: ChairOfficeLight +- action: !type:InstantActionComponent icon: entity: StoolBar - name: StoolBar keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -407,12 +406,12 @@ entityType: StoolBar assignments: - 3: 6 -- action: !type:InstantAction - checkCanInteract: False + name: StoolBar +- action: !type:InstantActionComponent icon: entity: Stool - name: Stool keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -421,12 +420,12 @@ entityType: Stool assignments: - 3: 7 -- action: !type:InstantAction - checkCanInteract: False + name: Stool +- action: !type:InstantActionComponent icon: entity: Rack - name: Rack keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -435,12 +434,12 @@ entityType: Rack assignments: - 3: 8 -- action: !type:InstantAction - checkCanInteract: False + name: Rack +- action: !type:InstantActionComponent icon: entity: ChairOfficeDark - name: ChairOfficeDark keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -449,12 +448,12 @@ entityType: ChairOfficeDark assignments: - 3: 5 -- action: !type:InstantAction - checkCanInteract: False + name: ChairOfficeDark +- action: !type:InstantActionComponent icon: entity: LampGold - name: LampGold keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -463,12 +462,12 @@ entityType: LampGold assignments: - 3: 9 -- action: !type:InstantAction - checkCanInteract: False + name: LampGold +- action: !type:InstantActionComponent icon: entity: DisposalPipe - name: DisposalPipe keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -477,12 +476,12 @@ entityType: DisposalPipe assignments: - 4: 0 -- action: !type:InstantAction - checkCanInteract: False + name: DisposalPipe +- action: !type:InstantActionComponent icon: entity: DisposalBend - name: DisposalBend keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -491,12 +490,12 @@ entityType: DisposalBend assignments: - 4: 1 -- action: !type:InstantAction - checkCanInteract: False + name: DisposalBend +- action: !type:InstantActionComponent icon: entity: DisposalJunction - name: DisposalJunction keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -505,12 +504,12 @@ entityType: DisposalJunction assignments: - 4: 2 -- action: !type:InstantAction - checkCanInteract: False + name: DisposalJunction +- action: !type:InstantActionComponent icon: entity: DisposalJunctionFlipped - name: DisposalJunctionFlipped keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -519,12 +518,12 @@ entityType: DisposalJunctionFlipped assignments: - 4: 3 -- action: !type:InstantAction - checkCanInteract: False + name: DisposalJunctionFlipped +- action: !type:InstantActionComponent icon: entity: DisposalRouter - name: DisposalRouter keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -533,12 +532,12 @@ entityType: DisposalRouter assignments: - 4: 4 -- action: !type:InstantAction - checkCanInteract: False + name: DisposalRouter +- action: !type:InstantActionComponent icon: entity: DisposalRouterFlipped - name: DisposalRouterFlipped keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -547,12 +546,12 @@ entityType: DisposalRouterFlipped assignments: - 4: 5 -- action: !type:InstantAction - checkCanInteract: False + name: DisposalRouterFlipped +- action: !type:InstantActionComponent icon: entity: DisposalUnit - name: DisposalUnit keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -561,12 +560,12 @@ entityType: DisposalUnit assignments: - 4: 6 -- action: !type:InstantAction - checkCanInteract: False + name: DisposalUnit +- action: !type:InstantActionComponent icon: entity: DisposalTrunk - name: DisposalTrunk keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -575,12 +574,12 @@ entityType: DisposalTrunk assignments: - 4: 7 -- action: !type:InstantAction - checkCanInteract: False + name: DisposalTrunk +- action: !type:InstantActionComponent icon: entity: SignDisposalSpace - name: SignDisposalSpace keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -589,12 +588,12 @@ entityType: SignDisposalSpace assignments: - 4: 8 -- action: !type:InstantAction - checkCanInteract: False + name: SignDisposalSpace +- action: !type:InstantActionComponent icon: entity: Windoor - name: Windoor keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -603,12 +602,12 @@ entityType: Windoor assignments: - 5: 0 -- action: !type:InstantAction - checkCanInteract: False + name: Windoor +- action: !type:InstantActionComponent icon: entity: WindowDirectional - name: WindowDirectional keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -617,12 +616,12 @@ entityType: WindowDirectional assignments: - 5: 1 -- action: !type:InstantAction - checkCanInteract: False + name: WindowDirectional +- action: !type:InstantActionComponent icon: entity: WindowReinforcedDirectional - name: WindowReinforcedDirectional keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -631,12 +630,12 @@ entityType: WindowReinforcedDirectional assignments: - 5: 2 -- action: !type:InstantAction - checkCanInteract: False + name: WindowReinforcedDirectional +- action: !type:InstantActionComponent icon: entity: PlasmaWindowDirectional - name: PlasmaWindowDirectional keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -645,12 +644,12 @@ entityType: PlasmaWindowDirectional assignments: - 5: 3 -- action: !type:InstantAction - checkCanInteract: False + name: PlasmaWindowDirectional +- action: !type:InstantActionComponent icon: entity: Railing - name: Railing keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -659,12 +658,12 @@ entityType: Railing assignments: - 5: 6 -- action: !type:InstantAction - checkCanInteract: False + name: Railing +- action: !type:InstantActionComponent icon: entity: RailingCorner - name: RailingCorner keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -673,12 +672,12 @@ entityType: RailingCorner assignments: - 5: 7 -- action: !type:InstantAction - checkCanInteract: False + name: RailingCorner +- action: !type:InstantActionComponent icon: entity: RailingCornerSmall - name: RailingCornerSmall keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -687,12 +686,12 @@ entityType: RailingCornerSmall assignments: - 5: 8 -- action: !type:InstantAction - checkCanInteract: False + name: RailingCornerSmall +- action: !type:InstantActionComponent icon: entity: AirlockMaintLocked - name: AirlockMaintLocked keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -701,12 +700,12 @@ entityType: AirlockMaintLocked assignments: - 6: 0 -- action: !type:InstantAction - checkCanInteract: False + name: AirlockMaintLocked +- action: !type:InstantActionComponent icon: entity: AirlockGlass - name: AirlockGlass keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -715,12 +714,12 @@ entityType: AirlockGlass assignments: - 6: 1 -- action: !type:InstantAction - checkCanInteract: False + name: AirlockGlass +- action: !type:InstantActionComponent icon: entity: AirlockServiceLocked - name: AirlockServiceLocked keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -729,12 +728,12 @@ entityType: AirlockServiceLocked assignments: - 6: 2 -- action: !type:InstantAction - checkCanInteract: False + name: AirlockServiceLocked +- action: !type:InstantActionComponent icon: entity: AirlockSecurityLocked - name: AirlockSecurityLocked keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -743,12 +742,12 @@ entityType: AirlockSecurityLocked assignments: - 6: 3 -- action: !type:InstantAction - checkCanInteract: False + name: AirlockSecurityLocked +- action: !type:InstantActionComponent icon: entity: AirlockCommand - name: AirlockCommand keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -757,12 +756,12 @@ entityType: AirlockCommand assignments: - 6: 4 -- action: !type:InstantAction - checkCanInteract: False + name: AirlockCommand +- action: !type:InstantActionComponent icon: entity: AirlockScience - name: AirlockScience keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -771,12 +770,12 @@ entityType: AirlockScience assignments: - 6: 5 -- action: !type:InstantAction - checkCanInteract: False + name: AirlockScience +- action: !type:InstantActionComponent icon: entity: AirlockMedical - name: AirlockMedical keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -785,12 +784,12 @@ entityType: AirlockMedical assignments: - 6: 6 -- action: !type:InstantAction - checkCanInteract: False + name: AirlockMedical +- action: !type:InstantActionComponent icon: entity: AirlockEngineering - name: AirlockEngineering keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -799,12 +798,12 @@ entityType: AirlockEngineering assignments: - 6: 7 -- action: !type:InstantAction - checkCanInteract: False + name: AirlockEngineering +- action: !type:InstantActionComponent icon: entity: AirlockCargo - name: AirlockCargo keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -813,7 +812,9 @@ entityType: AirlockCargo assignments: - 6: 8 -- action: !type:WorldTargetAction + name: AirlockCargo +- action: !type:WorldTargetActionComponent + keywords: [] repeat: True checkCanAccess: False range: -1 @@ -821,8 +822,6 @@ sprite: Decals/markings.rsi state: bot_left iconColor: '#EFB34196' - name: BotLeft - keywords: [] checkCanInteract: False clientExclusive: True autoPopulate: False @@ -833,7 +832,9 @@ decalId: BotLeft assignments: - 7: 0 -- action: !type:WorldTargetAction + name: BotLeft +- action: !type:WorldTargetActionComponent + keywords: [] repeat: True checkCanAccess: False range: -1 @@ -841,8 +842,6 @@ sprite: Decals/markings.rsi state: delivery iconColor: '#EFB34196' - name: Delivery - keywords: [] checkCanInteract: False clientExclusive: True autoPopulate: False @@ -853,7 +852,9 @@ decalId: Delivery assignments: - 7: 1 -- action: !type:WorldTargetAction + name: Delivery +- action: !type:WorldTargetActionComponent + keywords: [] repeat: True checkCanAccess: False range: -1 @@ -861,8 +862,6 @@ sprite: Decals/markings.rsi state: warn_full iconColor: '#EFB34196' - name: WarnFull - keywords: [] checkCanInteract: False clientExclusive: True autoPopulate: False @@ -873,7 +872,9 @@ decalId: WarnFull assignments: - 7: 2 -- action: !type:WorldTargetAction + name: WarnFull +- action: !type:WorldTargetActionComponent + keywords: [] repeat: True checkCanAccess: False range: -1 @@ -881,8 +882,6 @@ sprite: Decals/Overlays/greyscale.rsi state: halftile_overlay iconColor: '#EFB34196' - name: HalfTileOverlayGreyscale - keywords: [] checkCanInteract: False clientExclusive: True autoPopulate: False @@ -893,7 +892,9 @@ decalId: HalfTileOverlayGreyscale assignments: - 7: 3 -- action: !type:WorldTargetAction + name: HalfTileOverlayGreyscale +- action: !type:WorldTargetActionComponent + keywords: [] repeat: True checkCanAccess: False range: -1 @@ -901,8 +902,6 @@ sprite: Decals/Overlays/greyscale.rsi state: halftile_overlay iconColor: '#334E6DC8' - name: HalfTileOverlayGreyscale (#334E6DC8, 0) - keywords: [] checkCanInteract: False clientExclusive: True autoPopulate: False @@ -913,7 +912,9 @@ decalId: HalfTileOverlayGreyscale assignments: - 7: 4 -- action: !type:WorldTargetAction + name: HalfTileOverlayGreyscale (#334E6DC8, 0) +- action: !type:WorldTargetActionComponent + keywords: [] repeat: True checkCanAccess: False range: -1 @@ -921,8 +922,6 @@ sprite: Decals/Overlays/greyscale.rsi state: halftile_overlay iconColor: '#52B4E996' - name: HalfTileOverlayGreyscale (#52B4E996, 0) - keywords: [] checkCanInteract: False clientExclusive: True autoPopulate: False @@ -933,7 +932,9 @@ decalId: HalfTileOverlayGreyscale assignments: - 7: 5 -- action: !type:WorldTargetAction + name: HalfTileOverlayGreyscale (#52B4E996, 0) +- action: !type:WorldTargetActionComponent + keywords: [] repeat: True checkCanAccess: False range: -1 @@ -941,8 +942,6 @@ sprite: Decals/Overlays/greyscale.rsi state: halftile_overlay iconColor: '#9FED5896' - name: HalfTileOverlayGreyscale (#9FED5896, 0) - keywords: [] checkCanInteract: False clientExclusive: True autoPopulate: False @@ -953,7 +952,9 @@ decalId: HalfTileOverlayGreyscale assignments: - 7: 6 -- action: !type:WorldTargetAction + name: HalfTileOverlayGreyscale (#9FED5896, 0) +- action: !type:WorldTargetActionComponent + keywords: [] repeat: True checkCanAccess: False range: -1 @@ -961,8 +962,6 @@ sprite: Decals/Overlays/greyscale.rsi state: halftile_overlay iconColor: '#DE3A3A96' - name: HalfTileOverlayGreyscale (#DE3A3A96, 0) - keywords: [] checkCanInteract: False clientExclusive: True autoPopulate: False @@ -973,7 +972,9 @@ decalId: HalfTileOverlayGreyscale assignments: - 7: 7 -- action: !type:WorldTargetAction + name: HalfTileOverlayGreyscale (#DE3A3A96, 0) +- action: !type:WorldTargetActionComponent + keywords: [] repeat: True checkCanAccess: False range: -1 @@ -981,8 +982,6 @@ sprite: Decals/Overlays/greyscale.rsi state: halftile_overlay iconColor: '#D381C996' - name: HalfTileOverlayGreyscale (#D381C996, 0) - keywords: [] checkCanInteract: False clientExclusive: True autoPopulate: False @@ -993,7 +992,9 @@ decalId: HalfTileOverlayGreyscale assignments: - 7: 8 -- action: !type:WorldTargetAction + name: HalfTileOverlayGreyscale (#D381C996, 0) +- action: !type:WorldTargetActionComponent + keywords: [] repeat: True checkCanAccess: False range: -1 @@ -1001,8 +1002,6 @@ sprite: Decals/Overlays/greyscale.rsi state: halftile_overlay iconColor: '#A4610696' - name: HalfTileOverlayGreyscale (#A4610696, 0) - keywords: [] checkCanInteract: False clientExclusive: True autoPopulate: False @@ -1013,11 +1012,11 @@ decalId: HalfTileOverlayGreyscale assignments: - 7: 9 -- action: !type:InstantAction - checkCanInteract: False + name: HalfTileOverlayGreyscale (#A4610696, 0) +- action: !type:InstantActionComponent icon: /Textures/Tiles/steel.png - name: steel floor keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -1026,11 +1025,11 @@ tileId: FloorSteel assignments: - 0: 6 -- action: !type:InstantAction - checkCanInteract: False + name: steel floor +- action: !type:InstantActionComponent icon: /Textures/Tiles/plating.png - name: plating keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -1041,11 +1040,11 @@ - 0: 7 - 1: 8 - 2: 8 -- action: !type:InstantAction - checkCanInteract: False + name: plating +- action: !type:InstantActionComponent icon: /Textures/Tiles/cropped_parallax.png - name: space keywords: [] + checkCanInteract: False clientExclusive: True autoPopulate: False temporary: True @@ -1054,4 +1053,5 @@ tileId: Space assignments: - 0: 8 + name: space ... diff --git a/Resources/migration.yml b/Resources/migration.yml index 506e6d74f46..4fbea65d0b7 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -149,3 +149,9 @@ SyringeSpaceacillin: null # 2023-08-13 AirlockPainter: SprayPainter + +# 2023-08-19 +GeneratorPlasma: PortableGeneratorPacman +GeneratorUranium: PortableGeneratorSuperPacman +GeneratorPlasmaMachineCircuitboard: PortableGeneratorPacmanMachineCircuitboard +GeneratorUraniumMachineCircuitboard: PortableGeneratorSuperPacmanMachineCircuitboard diff --git a/Resources/toolshedEngineCommandPerms.yml b/Resources/toolshedEngineCommandPerms.yml index 1681a694cae..ac7ffddd5f9 100644 --- a/Resources/toolshedEngineCommandPerms.yml +++ b/Resources/toolshedEngineCommandPerms.yml @@ -7,6 +7,19 @@ - player - splat - emplace + - bin + - extremes + - reduce + - sortby + - sort + - sortdownby + - sortdown + - sortmapby + - sortmapdownby + - iota + - rep + - to + - iterate - Flags: DEBUG Commands: @@ -23,7 +36,14 @@ - types - ecscomp - actor + - spawn + - mappos + - pos + - tp + - allcomps + - replace - entitysystemupdateorder + - mind - Flags: HOST Commands: @@ -69,3 +89,95 @@ - '>=' - '==' - '!=' + - f + - i + - s + - b + - '+/' + - '-/' + - '*/' + - '//' + - join + - append + - '?' + - 'or?' + - '??' + - rng + - 'sum' + - take + - curtick + - curtime + - realtime + - servertime + - more + - '%' + - '%/' + - '&~' + - '|~' + - '^~' + - '~' + - 'abs' + - 'average' + - 'bibytecount' + - 'shortestbitlength' + - 'countleadzeros' + - 'counttrailingzeros' + - 'fpi' + - 'fe' + - 'ftau' + - 'fepsilon' + - dpi + - de + - dtau + - depsilon + - hpi + - he + - htau + - hepsilon + - floor + - ceil + - round + - trunc + - round2frac + - exponentbytecount + - significandbytecount + - significandbitcount + - exponentshortestbitcount + - stepnext + - stepprev + - checkedto + - saturateto + - truncto + - iscanonical + - iscomplex + - iseven + - isodd + - isfinite + - isimaginary + - isinfinite + - isinteger + - isnan + - isnegative + - ispositive + - isreal + - issubnormal + - iszero + - pow + - sqrt + - cbrt + - root + - hypot + - sin + - sinpi + - asin + - asinpi + - cos + - cospi + - acos + - acospi + - tan + - tanpi + - atan + - atanpi + - pick + - tee diff --git a/RobustToolbox b/RobustToolbox index dab7a9112f0..dd906e9b01c 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit dab7a9112f01dcc318423161148e9885a436a488 +Subproject commit dd906e9b01cfcf2e5e7d77fca7bef773bce72db8 diff --git a/SpaceStation14.sln b/SpaceStation14.sln index 6e0b2f4aa49..2dc4c95508d 100644 --- a/SpaceStation14.sln +++ b/SpaceStation14.sln @@ -120,10 +120,13 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Project Files", "Project Fi RobustToolbox\README.md = RobustToolbox\README.md RobustToolbox\RELEASE-NOTES.md = RobustToolbox\RELEASE-NOTES.md EndProjectSection +EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Content.Replay", "Content.Replay\Content.Replay.csproj", "{A493616C-338D-47B7-8072-A7F14D034D0B}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Robust.Shared.CompNetworkGenerator", "RobustToolbox\Robust.Shared.CompNetworkGenerator\Robust.Shared.CompNetworkGenerator.csproj", "{07CA34A1-1D37-4771-A2E3-495A1044AE0B}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Robust.Serialization.Generator", "RobustToolbox\Robust.Serialization.Generator\Robust.Serialization.Generator.csproj", "{6FBF108E-5CB5-47DE-8D7E-B496ABA9E3E2}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -419,6 +422,14 @@ Global {07CA34A1-1D37-4771-A2E3-495A1044AE0B}.DebugOpt|Any CPU.Build.0 = DebugOpt|Any CPU {07CA34A1-1D37-4771-A2E3-495A1044AE0B}.Tools|Any CPU.ActiveCfg = Tools|Any CPU {07CA34A1-1D37-4771-A2E3-495A1044AE0B}.Tools|Any CPU.Build.0 = Tools|Any CPU + {6FBF108E-5CB5-47DE-8D7E-B496ABA9E3E2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6FBF108E-5CB5-47DE-8D7E-B496ABA9E3E2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6FBF108E-5CB5-47DE-8D7E-B496ABA9E3E2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6FBF108E-5CB5-47DE-8D7E-B496ABA9E3E2}.Release|Any CPU.Build.0 = Release|Any CPU + {6FBF108E-5CB5-47DE-8D7E-B496ABA9E3E2}.DebugOpt|Any CPU.ActiveCfg = Debug|Any CPU + {6FBF108E-5CB5-47DE-8D7E-B496ABA9E3E2}.DebugOpt|Any CPU.Build.0 = Debug|Any CPU + {6FBF108E-5CB5-47DE-8D7E-B496ABA9E3E2}.Tools|Any CPU.ActiveCfg = Debug|Any CPU + {6FBF108E-5CB5-47DE-8D7E-B496ABA9E3E2}.Tools|Any CPU.Build.0 = Debug|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -449,6 +460,7 @@ Global {952AAF2A-DF63-4A7D-8094-3453893EBA80} = {83B4CBBA-547A-42F0-A7CD-8A67D93196CE} {A965CB3B-FD31-44AF-8872-85ABA436098D} = {83B4CBBA-547A-42F0-A7CD-8A67D93196CE} {07CA34A1-1D37-4771-A2E3-495A1044AE0B} = {83B4CBBA-547A-42F0-A7CD-8A67D93196CE} + {6FBF108E-5CB5-47DE-8D7E-B496ABA9E3E2} = {83B4CBBA-547A-42F0-A7CD-8A67D93196CE} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {AA37ED9F-F8D6-468E-A101-658AD605B09A} diff --git a/SpaceStation14.sln.DotSettings b/SpaceStation14.sln.DotSettings index 79f0474aa16..1ddb4bd9f79 100644 --- a/SpaceStation14.sln.DotSettings +++ b/SpaceStation14.sln.DotSettings @@ -46,6 +46,7 @@ NEXT_LINE NEXT_LINE NEXT_LINE + INDENT NEXT_LINE NEXT_LINE NEXT_LINE @@ -56,6 +57,7 @@ GC GD GL + HV HW IC IL @@ -63,6 +65,7 @@ KHR MMI MS + MV OGL OOC OS @@ -155,10 +158,36 @@ public sealed class $CLASS$ : Component { $END$ } SS14 - $HEADER$namespace $NAMESPACE$ + $HEADER$namespace $NAMESPACE$; + +public sealed class $CLASS$ {$END$} + $HEADER$using System.ComponentModel; + +namespace $NAMESPACE$; + +public partial class $CLASS$ : Component { - public sealed class $CLASS$ {$END$} + public $CLASS$() + { + InitializeComponent(); + } + + public $CLASS$(IContainer container) + { + container.Add(this); + + InitializeComponent(); + } } + $HEADER$namespace $NAMESPACE$; + +public record $RECORD$($END$); + $HEADER$using NUnit.Framework; + +namespace $NAMESPACE$; + +[TestFixture] +public class $CLASS$ {$END$} True True cs @@ -221,6 +250,13 @@ public sealed class $CLASS$ : IPrototype { False SS14 + $HEADER$namespace $NAMESPACE$; + +public interface $INTERFACE$ {$END$} + + $HEADER$namespace $NAMESPACE$; + +public enum $ENUM$ {$END$} True True cs @@ -252,6 +288,18 @@ public sealed class $CLASS$ : Shared$CLASS$ { } } SS14 + $HEADER$using System.Windows.Forms; + +namespace $NAMESPACE$; + +public partial class $CLASS$ : Form +{ + public $CLASS$() + { + InitializeComponent(); + } +} + True True IoC resolve @@ -310,6 +358,9 @@ public sealed class $CLASS$ : EntitySystem { } } SS14 + $HEADER$namespace $NAMESPACE$; + +public struct $STRUCT$ {$END$} True True cs @@ -329,7 +380,9 @@ public sealed class $CLASS$ : EntitySystem { True InCSharpProjectFile True - $HEADER$namespace $NAMESPACE$; + $HEADER$using Robust.Shared.Serialization; + +namespace $NAMESPACE$; /// <summary> /// This is used for... @@ -361,6 +414,17 @@ public sealed class $CLASS$State : ComponentState { netser True [System.Serializable, Robust.Shared.Serialization.NetSerializable] + $HEADER$using System.Windows.Forms; + +namespace $NAMESPACE$; + +public partial class $CLASS$ : UserControl +{ + public $CLASS$() + { + InitializeComponent(); + } +} True True cs @@ -413,7 +477,7 @@ public abstract class $CLASS$ : EntitySystem { InCSharpProjectFile True $HEADER$using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Array; namespace $NAMESPACE$; @@ -427,8 +491,8 @@ public sealed class $CLASS$ : IPrototype, IInheritingPrototype { public string ID { get; } = default!; /// <inheritdoc/> - [ParentDataField(typeof(AbstractPrototypeIdSerializer<$CLASS$>))] - public string? Parent { get; } + [ParentDataField(typeof(AbstractPrototypeIdArraySerializer<$CLASS$>))] + public string[]? Parents { get; } /// <inheritdoc/> [NeverPushInheritance] @@ -455,7 +519,9 @@ public sealed class $CLASS$ : IPrototype, IInheritingPrototype { True InCSharpProjectFile True - $HEADER$namespace $NAMESPACE$; + $HEADER$using Robust.Shared.GameStates; + +namespace $NAMESPACE$; /// <inheritdoc/> [RegisterComponent, NetworkedComponent] @@ -582,6 +648,7 @@ public sealed class $CLASS$ : Shared$CLASS$ { True True True + True True True True @@ -631,14 +698,14 @@ public sealed class $CLASS$ : Shared$CLASS$ { True True True + True True True True &XAML Control - $HEADER$namespace $NAMESPACE$ - { - public class $CLASS$ {$END$} - } + $HEADER$namespace $NAMESPACE$; + +public class $CLASS$ {$END$} True True Control.xaml @@ -651,7 +718,7 @@ public sealed class $CLASS$ : Shared$CLASS$ { fileheader() 0 True - getUpperCaseAlphaNumericFileName() + getFileNameWithoutExtension() 1 True fileDefaultNamespace()